commit 0c6bb6c6febda18595f76f2efbe3ad4bc587a6ed Author: tongminqi <1207210763@qq.com> Date: Sat Feb 28 15:23:39 2026 +0800 first commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5e82685 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ba3f25a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.jpg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.xml filter=lfs diff=lfs merge=lfs -text diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/TomatoDetection.iml b/.idea/TomatoDetection.iml new file mode 100644 index 0000000..5ed0139 --- /dev/null +++ b/.idea/TomatoDetection.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..230264e --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734fae2cbbbe12fa8a3c3dff08bf85710aca658a23d285cb8c75f744a19044d8 +size 236 diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..df90012 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e95e7776e7ea4def08de68410259c50c5a756ac461b14a2f5a7e3639ea2aaec +size 2249 diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..e47dc24 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6ef98e9fe05aee5915fefd5b27d733184c7745c53d0246d5116706b4fe85e2 +size 212 diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..94ed616 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb9547585a25ddc91b270e72b59e4b7aabf5fe87ad4996a7df15bac08923bd9 +size 185 diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1e785c5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363cdb24ce51af291dd1e1f780dbe6ddf57067c314d67683e6b02e5c052cd5aa +size 282 diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..512734e --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136f8b0a20e3e16f5b60e8505219c34746e1ec62c68433f4f8ec97eefe3aa038 +size 185 diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..8e85b7a --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,20 @@ +cff-version: 1.2.0 +preferred-citation: + type: software + message: If you use this software, please cite it as below. + authors: + - family-names: Jocher + given-names: Glenn + orcid: "https://orcid.org/0000-0001-5950-6979" + - family-names: Chaurasia + given-names: Ayush + orcid: "https://orcid.org/0000-0002-7603-6750" + - family-names: Qiu + given-names: Jing + orcid: "https://orcid.org/0000-0003-3783-7069" + title: "YOLO by Ultralytics" + version: 8.0.0 + # doi: 10.5281/zenodo.3908559 # TODO + date-released: 2023-1-10 + license: AGPL-3.0 + url: "https://github.com/ultralytics/ultralytics" diff --git a/CameraTest.py b/CameraTest.py new file mode 100644 index 0000000..5a4ccef --- /dev/null +++ b/CameraTest.py @@ -0,0 +1,48 @@ +#coding:utf-8 +import cv2 +from ultralytics import YOLO + +# 所需加载的模型目录 +path = 'models/best.pt' + +# Load the YOLOv8 model +model = YOLO(path) + +ID = 0 + +while(ID<10): + cap = cv2.VideoCapture(ID) + # get a frame + ret, frame = cap.read() + if ret == False: + ID += 1 + else: + print('摄像头ID:',ID) + break + + +# Loop through the video frames +while cap.isOpened(): + # Read a frame from the video + success, frame = cap.read() + + if success: + # Run YOLOv8 inference on the frame + results = model(frame) + + # Visualize the results on the frame + annotated_frame = results[0].plot() + + # Display the annotated frame + cv2.imshow("YOLOv8 Inference", annotated_frame) + + # Break the loop if 'q' is pressed + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + # Break the loop if the end of the video is reached + break + +# Release the video capture object and close the display window +cap.release() +cv2.destroyAllWindows() \ No newline at end of file diff --git a/Config.py b/Config.py new file mode 100644 index 0000000..f91f2ef --- /dev/null +++ b/Config.py @@ -0,0 +1,60 @@ +#coding:utf-8 + +# 图片及视频检测结果保存路径 +save_path = 'save_data' + +# 使用的模型路径 +# model_path = 'models/best.pt' + +# names = {0: 'Rescued', 1: 'Rescuing'} + +# CH_names = ['已救援', '救援中'] + + +# 猫和狗 +# 训练好的模型路径 +# model_path = 'runs/detect/train5/weights/best.pt' +# # 类别名称 +# names = {0: 'cat', 1: 'dog'} +# # 中文类别名称 +# CH_names = ['猫', '狗'] + + +# # 马甲 +# # 训练好的模型路径 +# model_path = 'runs/detect/train5/weights/best.pt' +# # # 类别名称 +# names = {0: 'vest', 1: 'novest'} +# # # 中文类别名称 +# CH_names = ['有马甲', '无马甲'] + +# # 仪表盘 +# # 训练好的模型路径 +# model_path = 'runs/detect/train6/weights/best.pt' +# # # 类别名称 +# names = {0: 'dashboard', 1: 'nodashboard'} +# # # 中文类别名称 +# CH_names = ['仪表盘', '无仪表盘'] + + +# # 搭电设备 +# # 训练好的模型路径 +# model_path = 'runs/detect/train9/weights/best.pt' +# # # 类别名称 +# names = {0: 'JumperCable', 1: 'NoJumperCable'} +# # # 中文类别名称 +# CH_names = ['有搭电设备', '无搭电设备'] + + +# 搭电测试 +# 训练好的模型路径 +model_path = 'runs/segment/train11/weights/best.pt' +# # 类别名称 +names = {0: 'da_dian_xian', 1: 'tuo_che_shang_you_che',2:'yi_biao_pan',3:'lun_tai',4:'ping_an_ma_jia',5:'jian_ce_yi'} + +# # 中文类别名称 +CH_names = ['搭电线','拖车上油车','仪表盘','轮台','平安马甲','检测仪'] + + + + diff --git a/Font/platech.ttf b/Font/platech.ttf new file mode 100644 index 0000000..d66a970 Binary files /dev/null and b/Font/platech.ttf differ diff --git a/MainProgram.py b/MainProgram.py new file mode 100644 index 0000000..20cfc6f --- /dev/null +++ b/MainProgram.py @@ -0,0 +1,625 @@ +# -*- coding: utf-8 -*- +import time +from PyQt5.QtWidgets import QApplication , QMainWindow, QFileDialog, \ + QMessageBox,QWidget,QHeaderView,QTableWidgetItem, QAbstractItemView +import sys +import os +from PIL import ImageFont +from ultralytics import YOLO +sys.path.append('UIProgram') +from UIProgram.UiMain import Ui_MainWindow +import sys +from PyQt5.QtCore import QTimer, Qt, QThread, pyqtSignal,QCoreApplication +import detect_tools as tools +import cv2 +import Config +from UIProgram.QssLoader import QSSLoader +from UIProgram.precess_bar import ProgressBar +import numpy as np +import torch + +class MainWindow(QMainWindow): + def __init__(self, parent=None): + super(QMainWindow, self).__init__(parent) + self.ui = Ui_MainWindow() + self.ui.setupUi(self) + self.initMain() + self.signalconnect() + + # 加载css渲染效果 + style_file = 'UIProgram/style.css' + qssStyleSheet = QSSLoader.read_qss_file(style_file) + self.setStyleSheet(qssStyleSheet) + + self.conf = 0.25 + self.iou = 0.7 + + def signalconnect(self): + self.ui.PicBtn.clicked.connect(self.open_img) + self.ui.comboBox.activated.connect(self.combox_change) + self.ui.VideoBtn.clicked.connect(self.vedio_show) + self.ui.CapBtn.clicked.connect(self.camera_show) + self.ui.SaveBtn.clicked.connect(self.save_detect_video) + self.ui.ExitBtn.clicked.connect(QCoreApplication.quit) + self.ui.FilesBtn.clicked.connect(self.detact_batch_imgs) + + def initMain(self): + self.show_width = 770 + self.show_height = 480 + + self.org_path = None + + self.is_camera_open = False + self.cap = None + + self.device = 0 if torch.cuda.is_available() else 'cpu' + + # 加载检测模型 + self.model = YOLO(Config.model_path, task='detect') + self.model(np.zeros((48, 48, 3)), device=self.device) #预先加载推理模型 + self.fontC = ImageFont.truetype("Font/platech.ttf", 25, 0) + + # 用于绘制不同颜色矩形框 + self.colors = tools.Colors() + + # 更新视频图像 + self.timer_camera = QTimer() + + # 更新检测信息表格 + # self.timer_info = QTimer() + # 保存视频 + self.timer_save_video = QTimer() + + # 表格 + self.ui.tableWidget.verticalHeader().setSectionResizeMode(QHeaderView.Fixed) + self.ui.tableWidget.verticalHeader().setDefaultSectionSize(40) + self.ui.tableWidget.setColumnWidth(0, 80) # 设置列宽 + self.ui.tableWidget.setColumnWidth(1, 200) + self.ui.tableWidget.setColumnWidth(2, 150) + self.ui.tableWidget.setColumnWidth(3, 90) + self.ui.tableWidget.setColumnWidth(4, 230) + # self.ui.tableWidget.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch) # 表格铺满 + # self.ui.tableWidget.horizontalHeader().setSectionResizeMode(0, QHeaderView.Interactive) + # self.ui.tableWidget.setEditTriggers(QAbstractItemView.NoEditTriggers) # 设置表格不可编辑 + self.ui.tableWidget.setSelectionBehavior(QAbstractItemView.SelectRows) # 设置表格整行选中 + self.ui.tableWidget.verticalHeader().setVisible(False) # 隐藏列标题 + self.ui.tableWidget.setAlternatingRowColors(True) # 表格背景交替 + + # 设置主页背景图片border-image: url(:/icons/ui_imgs/icons/camera.png) + # self.setStyleSheet("#MainWindow{background-image:url(:/bgs/ui_imgs/bg3.jpg)}") + + def open_img(self): + if self.cap: + # 打开图片前关闭摄像头 + self.video_stop() + self.is_camera_open = False + self.ui.CaplineEdit.setText('摄像头未开启') + self.cap = None + + # 弹出的窗口名称:'打开图片' + # 默认打开的目录:'./' + # 只能打开.jpg与.gif结尾的图片文件 + # file_path, _ = QFileDialog.getOpenFileName(self.ui.centralwidget, '打开图片', './', "Image files (*.jpg *.gif)") + file_path, _ = QFileDialog.getOpenFileName(None, '打开图片', './', "Image files (*.jpg *.jpeg *.png *.bmp)") + if not file_path: + return + + self.ui.comboBox.setDisabled(False) + self.org_path = file_path + self.org_img = tools.img_cvread(self.org_path) + + # 目标检测 + t1 = time.time() + self.results = self.model(self.org_path, conf=self.conf, iou=self.iou)[0] + t2 = time.time() + take_time_str = '{:.3f} s'.format(t2 - t1) + self.ui.time_lb.setText(take_time_str) + + location_list = self.results.boxes.xyxy.tolist() + self.location_list = [list(map(int, e)) for e in location_list] + cls_list = self.results.boxes.cls.tolist() + self.cls_list = [int(i) for i in cls_list] + self.conf_list = self.results.boxes.conf.tolist() + self.conf_list = ['%.2f %%' % (each*100) for each in self.conf_list] + + # now_img = self.cv_img.copy() + # for loacation, type_id, conf in zip(self.location_list, self.cls_list, self.conf_list): + # type_id = int(type_id) + # color = self.colors(int(type_id), True) + # # cv2.rectangle(now_img, (int(x1), int(y1)), (int(x2), int(y2)), colors(int(type_id), True), 3) + # now_img = tools.drawRectBox(now_img, loacation, Config.CH_names[type_id], self.fontC, color) + now_img = self.results.plot() + self.draw_img = now_img + # 获取缩放后的图片尺寸 + self.img_width, self.img_height = self.get_resize_size(now_img) + resize_cvimg = cv2.resize(now_img,(self.img_width, self.img_height)) + pix_img = tools.cvimg_to_qpiximg(resize_cvimg) + self.ui.label_show.setPixmap(pix_img) + self.ui.label_show.setAlignment(Qt.AlignCenter) + # 设置路径显示 + self.ui.PiclineEdit.setText(self.org_path) + + # 目标数目 + target_nums = len(self.cls_list) + self.ui.label_nums.setText(str(target_nums)) + + # 设置目标选择下拉框 + choose_list = ['全部'] + target_names = [Config.names[id]+ '_'+ str(index) for index,id in enumerate(self.cls_list)] + # object_list = sorted(set(self.cls_list)) + # for each in object_list: + # choose_list.append(Config.CH_names[each]) + choose_list = choose_list + target_names + + self.ui.comboBox.clear() + self.ui.comboBox.addItems(choose_list) + + if target_nums >= 1: + self.ui.type_lb.setText(Config.CH_names[self.cls_list[0]]) + self.ui.label_conf.setText(str(self.conf_list[0])) + # 默认显示第一个目标框坐标 + # 设置坐标位置值 + self.ui.label_xmin.setText(str(self.location_list[0][0])) + self.ui.label_ymin.setText(str(self.location_list[0][1])) + self.ui.label_xmax.setText(str(self.location_list[0][2])) + self.ui.label_ymax.setText(str(self.location_list[0][3])) + else: + self.ui.type_lb.setText('') + self.ui.label_conf.setText('') + self.ui.label_xmin.setText('') + self.ui.label_ymin.setText('') + self.ui.label_xmax.setText('') + self.ui.label_ymax.setText('') + + # # 删除表格所有行 + self.ui.tableWidget.setRowCount(0) + self.ui.tableWidget.clearContents() + self.tabel_info_show(self.location_list, self.cls_list, self.conf_list,path=self.org_path) + + + def detact_batch_imgs(self): + if self.cap: + # 打开图片前关闭摄像头 + self.video_stop() + self.is_camera_open = False + self.ui.CaplineEdit.setText('摄像头未开启') + self.cap = None + directory = QFileDialog.getExistingDirectory(self, + "选取文件夹", + "./") # 起始路径 + if not directory: + return + self.org_path = directory + img_suffix = ['jpg','png','jpeg','bmp'] + for file_name in os.listdir(directory): + full_path = os.path.join(directory,file_name) + if os.path.isfile(full_path) and file_name.split('.')[-1].lower() in img_suffix: + # self.ui.comboBox.setDisabled(False) + img_path = full_path + self.org_img = tools.img_cvread(img_path) + # 目标检测 + t1 = time.time() + self.results = self.model(img_path,conf=self.conf, iou=self.iou)[0] + t2 = time.time() + take_time_str = '{:.3f} s'.format(t2 - t1) + self.ui.time_lb.setText(take_time_str) + + location_list = self.results.boxes.xyxy.tolist() + self.location_list = [list(map(int, e)) for e in location_list] + cls_list = self.results.boxes.cls.tolist() + self.cls_list = [int(i) for i in cls_list] + self.conf_list = self.results.boxes.conf.tolist() + self.conf_list = ['%.2f %%' % (each * 100) for each in self.conf_list] + + now_img = self.results.plot() + + self.draw_img = now_img + # 获取缩放后的图片尺寸 + self.img_width, self.img_height = self.get_resize_size(now_img) + resize_cvimg = cv2.resize(now_img, (self.img_width, self.img_height)) + pix_img = tools.cvimg_to_qpiximg(resize_cvimg) + self.ui.label_show.setPixmap(pix_img) + self.ui.label_show.setAlignment(Qt.AlignCenter) + # 设置路径显示 + self.ui.PiclineEdit.setText(img_path) + + # 目标数目 + target_nums = len(self.cls_list) + self.ui.label_nums.setText(str(target_nums)) + + # 设置目标选择下拉框 + choose_list = ['全部'] + target_names = [Config.names[id] + '_' + str(index) for index, id in enumerate(self.cls_list)] + choose_list = choose_list + target_names + + self.ui.comboBox.clear() + self.ui.comboBox.addItems(choose_list) + + if target_nums >= 1: + self.ui.type_lb.setText(Config.CH_names[self.cls_list[0]]) + self.ui.label_conf.setText(str(self.conf_list[0])) + # 默认显示第一个目标框坐标 + # 设置坐标位置值 + self.ui.label_xmin.setText(str(self.location_list[0][0])) + self.ui.label_ymin.setText(str(self.location_list[0][1])) + self.ui.label_xmax.setText(str(self.location_list[0][2])) + self.ui.label_ymax.setText(str(self.location_list[0][3])) + else: + self.ui.type_lb.setText('') + self.ui.label_conf.setText('') + self.ui.label_xmin.setText('') + self.ui.label_ymin.setText('') + self.ui.label_xmax.setText('') + self.ui.label_ymax.setText('') + + # # 删除表格所有行 + # self.ui.tableWidget.setRowCount(0) + # self.ui.tableWidget.clearContents() + self.tabel_info_show(self.location_list, self.cls_list, self.conf_list, path=img_path) + self.ui.tableWidget.scrollToBottom() + QApplication.processEvents() #刷新页面 + + def draw_rect_and_tabel(self, results, img): + now_img = img.copy() + location_list = results.boxes.xyxy.tolist() + self.location_list = [list(map(int, e)) for e in location_list] + cls_list = results.boxes.cls.tolist() + self.cls_list = [int(i) for i in cls_list] + self.conf_list = results.boxes.conf.tolist() + self.conf_list = ['%.2f %%' % (each * 100) for each in self.conf_list] + + for loacation, type_id, conf in zip(self.location_list, self.cls_list, self.conf_list): + type_id = int(type_id) + color = self.colors(int(type_id), True) + # cv2.rectangle(now_img, (int(x1), int(y1)), (int(x2), int(y2)), colors(int(type_id), True), 3) + now_img = tools.drawRectBox(now_img, loacation, Config.CH_names[type_id], self.fontC, color) + + # 获取缩放后的图片尺寸 + self.img_width, self.img_height = self.get_resize_size(now_img) + resize_cvimg = cv2.resize(now_img, (self.img_width, self.img_height)) + pix_img = tools.cvimg_to_qpiximg(resize_cvimg) + self.ui.label_show.setPixmap(pix_img) + self.ui.label_show.setAlignment(Qt.AlignCenter) + # 设置路径显示 + self.ui.PiclineEdit.setText(self.org_path) + + # 目标数目 + target_nums = len(self.cls_list) + self.ui.label_nums.setText(str(target_nums)) + if target_nums >= 1: + self.ui.type_lb.setText(Config.CH_names[self.cls_list[0]]) + self.ui.label_conf.setText(str(self.conf_list[0])) + self.ui.label_xmin.setText(str(self.location_list[0][0])) + self.ui.label_ymin.setText(str(self.location_list[0][1])) + self.ui.label_xmax.setText(str(self.location_list[0][2])) + self.ui.label_ymax.setText(str(self.location_list[0][3])) + else: + self.ui.type_lb.setText('') + self.ui.label_conf.setText('') + self.ui.label_xmin.setText('') + self.ui.label_ymin.setText('') + self.ui.label_xmax.setText('') + self.ui.label_ymax.setText('') + + # 删除表格所有行 + self.ui.tableWidget.setRowCount(0) + self.ui.tableWidget.clearContents() + self.tabel_info_show(self.location_list, self.cls_list, self.conf_list, path=self.org_path) + return now_img + + def combox_change(self): + com_text = self.ui.comboBox.currentText() + if com_text == '全部': + cur_box = self.location_list + cur_img = self.results.plot() + self.ui.type_lb.setText(Config.CH_names[self.cls_list[0]]) + self.ui.label_conf.setText(str(self.conf_list[0])) + else: + index = int(com_text.split('_')[-1]) + cur_box = [self.location_list[index]] + cur_img = self.results[index].plot() + self.ui.type_lb.setText(Config.CH_names[self.cls_list[index]]) + self.ui.label_conf.setText(str(self.conf_list[index])) + + # 设置坐标位置值 + self.ui.label_xmin.setText(str(cur_box[0][0])) + self.ui.label_ymin.setText(str(cur_box[0][1])) + self.ui.label_xmax.setText(str(cur_box[0][2])) + self.ui.label_ymax.setText(str(cur_box[0][3])) + + resize_cvimg = cv2.resize(cur_img, (self.img_width, self.img_height)) + pix_img = tools.cvimg_to_qpiximg(resize_cvimg) + self.ui.label_show.clear() + self.ui.label_show.setPixmap(pix_img) + self.ui.label_show.setAlignment(Qt.AlignCenter) + + + def get_video_path(self): + file_path, _ = QFileDialog.getOpenFileName(None, '打开视频', './', "Image files (*.avi *.mp4 *.wmv *.mkv)") + if not file_path: + return None + self.org_path = file_path + self.ui.VideolineEdit.setText(file_path) + return file_path + + def video_start(self): + # 删除表格所有行 + self.ui.tableWidget.setRowCount(0) + self.ui.tableWidget.clearContents() + + # 清空下拉框 + self.ui.comboBox.clear() + + # 定时器开启,每隔一段时间,读取一帧 + self.timer_camera.start(1) + self.timer_camera.timeout.connect(self.open_frame) + + def tabel_info_show(self, locations, clses, confs, path=None): + path = path + for location, cls, conf in zip(locations, clses, confs): + row_count = self.ui.tableWidget.rowCount() # 返回当前行数(尾部) + self.ui.tableWidget.insertRow(row_count) # 尾部插入一行 + item_id = QTableWidgetItem(str(row_count+1)) # 序号 + item_id.setTextAlignment(Qt.AlignHCenter | Qt.AlignVCenter) # 设置文本居中 + item_path = QTableWidgetItem(str(path)) # 路径 + # item_path.setTextAlignment(Qt.AlignHCenter | Qt.AlignVCenter) + + item_cls = QTableWidgetItem(str(Config.CH_names[cls])) + item_cls.setTextAlignment(Qt.AlignHCenter | Qt.AlignVCenter) # 设置文本居中 + + item_conf = QTableWidgetItem(str(conf)) + item_conf.setTextAlignment(Qt.AlignHCenter | Qt.AlignVCenter) # 设置文本居中 + + item_location = QTableWidgetItem(str(location)) # 目标框位置 + # item_location.setTextAlignment(Qt.AlignHCenter | Qt.AlignVCenter) # 设置文本居中 + + self.ui.tableWidget.setItem(row_count, 0, item_id) + self.ui.tableWidget.setItem(row_count, 1, item_path) + self.ui.tableWidget.setItem(row_count, 2, item_cls) + self.ui.tableWidget.setItem(row_count, 3, item_conf) + self.ui.tableWidget.setItem(row_count, 4, item_location) + self.ui.tableWidget.scrollToBottom() + + def video_stop(self): + self.cap.release() + self.timer_camera.stop() + # self.timer_info.stop() + + def open_frame(self): + ret, now_img = self.cap.read() + if ret: + # 目标检测 + t1 = time.time() + results = self.model(now_img,conf=self.conf, iou=self.iou)[0] + t2 = time.time() + take_time_str = '{:.3f} s'.format(t2 - t1) + self.ui.time_lb.setText(take_time_str) + + location_list = results.boxes.xyxy.tolist() + self.location_list = [list(map(int, e)) for e in location_list] + cls_list = results.boxes.cls.tolist() + self.cls_list = [int(i) for i in cls_list] + self.conf_list = results.boxes.conf.tolist() + self.conf_list = ['%.2f %%' % (each * 100) for each in self.conf_list] + + now_img = results.plot() + + # 获取缩放后的图片尺寸 + self.img_width, self.img_height = self.get_resize_size(now_img) + resize_cvimg = cv2.resize(now_img, (self.img_width, self.img_height)) + pix_img = tools.cvimg_to_qpiximg(resize_cvimg) + self.ui.label_show.setPixmap(pix_img) + self.ui.label_show.setAlignment(Qt.AlignCenter) + + # 目标数目 + target_nums = len(self.cls_list) + self.ui.label_nums.setText(str(target_nums)) + + # 设置目标选择下拉框 + choose_list = ['全部'] + target_names = [Config.names[id] + '_' + str(index) for index, id in enumerate(self.cls_list)] + # object_list = sorted(set(self.cls_list)) + # for each in object_list: + # choose_list.append(Config.CH_names[each]) + choose_list = choose_list + target_names + + self.ui.comboBox.clear() + self.ui.comboBox.addItems(choose_list) + + if target_nums >= 1: + self.ui.type_lb.setText(Config.CH_names[self.cls_list[0]]) + self.ui.label_conf.setText(str(self.conf_list[0])) + # 默认显示第一个目标框坐标 + # 设置坐标位置值 + self.ui.label_xmin.setText(str(self.location_list[0][0])) + self.ui.label_ymin.setText(str(self.location_list[0][1])) + self.ui.label_xmax.setText(str(self.location_list[0][2])) + self.ui.label_ymax.setText(str(self.location_list[0][3])) + else: + self.ui.type_lb.setText('') + self.ui.label_conf.setText('') + self.ui.label_xmin.setText('') + self.ui.label_ymin.setText('') + self.ui.label_xmax.setText('') + self.ui.label_ymax.setText('') + + + # 删除表格所有行 + # self.ui.tableWidget.setRowCount(0) + # self.ui.tableWidget.clearContents() + self.tabel_info_show(self.location_list, self.cls_list, self.conf_list, path=self.org_path) + + else: + self.cap.release() + self.timer_camera.stop() + + def vedio_show(self): + if self.is_camera_open: + self.is_camera_open = False + self.ui.CaplineEdit.setText('摄像头未开启') + + video_path = self.get_video_path() + if not video_path: + return None + self.cap = cv2.VideoCapture(video_path) + self.video_start() + self.ui.comboBox.setDisabled(True) + + def camera_show(self): + self.is_camera_open = not self.is_camera_open + if self.is_camera_open: + self.ui.CaplineEdit.setText('摄像头开启') + self.cap = cv2.VideoCapture(0) + self.video_start() + self.ui.comboBox.setDisabled(True) + else: + self.ui.CaplineEdit.setText('摄像头未开启') + self.ui.label_show.setText('') + if self.cap: + self.cap.release() + cv2.destroyAllWindows() + self.ui.label_show.clear() + + def get_resize_size(self, img): + _img = img.copy() + img_height, img_width , depth= _img.shape + ratio = img_width / img_height + if ratio >= self.show_width / self.show_height: + self.img_width = self.show_width + self.img_height = int(self.img_width / ratio) + else: + self.img_height = self.show_height + self.img_width = int(self.img_height * ratio) + return self.img_width, self.img_height + + def save_detect_video(self): + if self.cap is None and not self.org_path: + QMessageBox.about(self, '提示', '当前没有可保存信息,请先打开图片或视频!') + return + + if self.is_camera_open: + QMessageBox.about(self, '提示', '摄像头视频无法保存!') + return + + if self.cap: + res = QMessageBox.information(self, '提示', '保存视频检测结果可能需要较长时间,请确认是否继续保存?',QMessageBox.Yes | QMessageBox.No , QMessageBox.Yes) + if res == QMessageBox.Yes: + self.video_stop() + com_text = self.ui.comboBox.currentText() + self.btn2Thread_object = btn2Thread(self.org_path, self.model, com_text,self.conf,self.iou) + self.btn2Thread_object.start() + self.btn2Thread_object.update_ui_signal.connect(self.update_process_bar) + else: + return + else: + if os.path.isfile(self.org_path): + fileName = os.path.basename(self.org_path) + name , end_name= fileName.rsplit(".",1) + save_name = name + '_detect_result.' + end_name + save_img_path = os.path.join(Config.save_path, save_name) + # 保存图片 + cv2.imwrite(save_img_path, self.draw_img) + QMessageBox.about(self, '提示', '图片保存成功!\n文件路径:{}'.format(save_img_path)) + else: + img_suffix = ['jpg', 'png', 'jpeg', 'bmp'] + for file_name in os.listdir(self.org_path): + full_path = os.path.join(self.org_path, file_name) + if os.path.isfile(full_path) and file_name.split('.')[-1].lower() in img_suffix: + name, end_name = file_name.rsplit(".",1) + save_name = name + '_detect_result.' + end_name + save_img_path = os.path.join(Config.save_path, save_name) + results = self.model(full_path,conf=self.conf, iou=self.iou)[0] + now_img = results.plot() + # 保存图片 + cv2.imwrite(save_img_path, now_img) + + QMessageBox.about(self, '提示', '图片保存成功!\n文件路径:{}'.format(Config.save_path)) + + + def update_process_bar(self,cur_num, total): + if cur_num == 1: + self.progress_bar = ProgressBar(self) + self.progress_bar.show() + if cur_num >= total: + self.progress_bar.close() + QMessageBox.about(self, '提示', '视频保存成功!\n文件在{}目录下'.format(Config.save_path)) + return + if self.progress_bar.isVisible() is False: + # 点击取消保存时,终止进程 + self.btn2Thread_object.stop() + return + value = int(cur_num / total *100) + self.progress_bar.setValue(cur_num, total, value) + QApplication.processEvents() + + +class btn2Thread(QThread): + """ + 进行检测后的视频保存 + """ + # 声明一个信号 + update_ui_signal = pyqtSignal(int,int) + + def __init__(self, path, model, com_text,conf,iou): + super(btn2Thread, self).__init__() + self.org_path = path + self.model = model + self.com_text = com_text + self.conf = conf + self.iou = iou + # 用于绘制不同颜色矩形框 + self.colors = tools.Colors() + self.is_running = True # 标志位,表示线程是否正在运行 + + def run(self): + # VideoCapture方法是cv2库提供的读取视频方法 + cap = cv2.VideoCapture(self.org_path) + # 设置需要保存视频的格式“xvid” + # 该参数是MPEG-4编码类型,文件名后缀为.avi + fourcc = cv2.VideoWriter_fourcc(*'XVID') + # 设置视频帧频 + fps = cap.get(cv2.CAP_PROP_FPS) + # 设置视频大小 + size = (int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)), int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))) + # VideoWriter方法是cv2库提供的保存视频方法 + # 按照设置的格式来out输出 + fileName = os.path.basename(self.org_path) + name, end_name = fileName.split('.') + save_name = name + '_detect_result.avi' + save_video_path = os.path.join(Config.save_path, save_name) + out = cv2.VideoWriter(save_video_path, fourcc, fps, size) + + prop = cv2.CAP_PROP_FRAME_COUNT + total = int(cap.get(prop)) + print("[INFO] 视频总帧数:{}".format(total)) + cur_num = 0 + + # 确定视频打开并循环读取 + while (cap.isOpened() and self.is_running): + cur_num += 1 + print('当前第{}帧,总帧数{}'.format(cur_num, total)) + # 逐帧读取,ret返回布尔值 + # 参数ret为True 或者False,代表有没有读取到图片 + # frame表示截取到一帧的图片 + ret, frame = cap.read() + if ret == True: + # 检测 + results = self.model(frame,conf=self.conf,iou=self.iou)[0] + frame = results.plot() + out.write(frame) + self.update_ui_signal.emit(cur_num, total) + else: + break + # 释放资源 + cap.release() + out.release() + + def stop(self): + self.is_running = False + + +if __name__ == "__main__": + app = QApplication(sys.argv) + win = MainWindow() + win.show() + sys.exit(app.exec_()) diff --git a/TestFiles/1.mp4 b/TestFiles/1.mp4 new file mode 100644 index 0000000..26933f2 Binary files /dev/null and b/TestFiles/1.mp4 differ diff --git a/TestFiles/Riped tomato_121.jpeg b/TestFiles/Riped tomato_121.jpeg new file mode 100644 index 0000000..66b558f Binary files /dev/null and b/TestFiles/Riped tomato_121.jpeg differ diff --git a/TestFiles/Riped tomato_123.jpeg b/TestFiles/Riped tomato_123.jpeg new file mode 100644 index 0000000..d9dc67b Binary files /dev/null and b/TestFiles/Riped tomato_123.jpeg differ diff --git a/TestFiles/Riped tomato_20.jpeg b/TestFiles/Riped tomato_20.jpeg new file mode 100644 index 0000000..fc640a1 Binary files /dev/null and b/TestFiles/Riped tomato_20.jpeg differ diff --git a/TestFiles/Riped tomato_29.jpeg b/TestFiles/Riped tomato_29.jpeg new file mode 100644 index 0000000..4876b05 Binary files /dev/null and b/TestFiles/Riped tomato_29.jpeg differ diff --git a/TestFiles/Riped tomato_31.jpeg b/TestFiles/Riped tomato_31.jpeg new file mode 100644 index 0000000..27fffba Binary files /dev/null and b/TestFiles/Riped tomato_31.jpeg differ diff --git a/TestFiles/Riped tomato_35.jpeg b/TestFiles/Riped tomato_35.jpeg new file mode 100644 index 0000000..4b36533 Binary files /dev/null and b/TestFiles/Riped tomato_35.jpeg differ diff --git a/TestFiles/Riped tomato_54.jpeg b/TestFiles/Riped tomato_54.jpeg new file mode 100644 index 0000000..ec6a7dc Binary files /dev/null and b/TestFiles/Riped tomato_54.jpeg differ diff --git a/TestFiles/Riped tomato_8.jpeg b/TestFiles/Riped tomato_8.jpeg new file mode 100644 index 0000000..0f61864 Binary files /dev/null and b/TestFiles/Riped tomato_8.jpeg differ diff --git a/TestFiles/unriped tomato_142.jpeg b/TestFiles/unriped tomato_142.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/TestFiles/unriped tomato_142.jpeg differ diff --git a/TestFiles/unriped tomato_294.jpeg b/TestFiles/unriped tomato_294.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/TestFiles/unriped tomato_294.jpeg differ diff --git a/TestFiles/unriped tomato_46.png b/TestFiles/unriped tomato_46.png new file mode 100644 index 0000000..2091568 --- /dev/null +++ b/TestFiles/unriped tomato_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1387f42db5121700f1910e28792f7db1a6f93b4f801232da2b4dbd914afdcf87 +size 598339 diff --git a/UIProgram/QssLoader.py b/UIProgram/QssLoader.py new file mode 100644 index 0000000..6589cd4 --- /dev/null +++ b/UIProgram/QssLoader.py @@ -0,0 +1,8 @@ +class QSSLoader: + def __init__(self): + pass + + @staticmethod + def read_qss_file(qss_file_name): + with open(qss_file_name, 'r', encoding='UTF-8') as file: + return file.read() \ No newline at end of file diff --git a/UIProgram/UiMain.py b/UIProgram/UiMain.py new file mode 100644 index 0000000..8db51ef --- /dev/null +++ b/UIProgram/UiMain.py @@ -0,0 +1,522 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'UiMain.ui' +# +# Created by: PyQt5 UI code generator 5.15.9 +# +# WARNING: Any manual changes made to this file will be lost when pyuic5 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt5 import QtCore, QtGui, QtWidgets + + +class Ui_MainWindow(object): + def setupUi(self, MainWindow): + MainWindow.setObjectName("MainWindow") + MainWindow.resize(1250, 830) + MainWindow.setMinimumSize(QtCore.QSize(1250, 830)) + MainWindow.setMaximumSize(QtCore.QSize(1250, 830)) + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/icons/ui_imgs/icons/目标检测.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + MainWindow.setWindowIcon(icon) + self.centralwidget = QtWidgets.QWidget(MainWindow) + self.centralwidget.setObjectName("centralwidget") + self.frame = QtWidgets.QFrame(self.centralwidget) + self.frame.setGeometry(QtCore.QRect(10, 100, 791, 711)) + self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame.setObjectName("frame") + self.frame_2 = QtWidgets.QFrame(self.frame) + self.frame_2.setGeometry(QtCore.QRect(10, 0, 771, 481)) + self.frame_2.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame_2.setObjectName("frame_2") + self.label_show = QtWidgets.QLabel(self.frame_2) + self.label_show.setGeometry(QtCore.QRect(0, 0, 770, 480)) + self.label_show.setMinimumSize(QtCore.QSize(770, 480)) + self.label_show.setMaximumSize(QtCore.QSize(770, 480)) + self.label_show.setStyleSheet("border-image: url(:/icons/ui_imgs/11.png);") + self.label_show.setText("") + self.label_show.setObjectName("label_show") + self.frame_3 = QtWidgets.QFrame(self.frame) + self.frame_3.setGeometry(QtCore.QRect(10, 480, 771, 221)) + self.frame_3.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame_3.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame_3.setObjectName("frame_3") + self.groupBox_3 = QtWidgets.QGroupBox(self.frame_3) + self.groupBox_3.setGeometry(QtCore.QRect(0, 10, 771, 221)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + self.groupBox_3.setFont(font) + self.groupBox_3.setObjectName("groupBox_3") + self.tableWidget = QtWidgets.QTableWidget(self.groupBox_3) + self.tableWidget.setGeometry(QtCore.QRect(10, 30, 751, 181)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(14) + self.tableWidget.setFont(font) + self.tableWidget.setObjectName("tableWidget") + self.tableWidget.setColumnCount(5) + self.tableWidget.setRowCount(0) + item = QtWidgets.QTableWidgetItem() + self.tableWidget.setHorizontalHeaderItem(0, item) + item = QtWidgets.QTableWidgetItem() + self.tableWidget.setHorizontalHeaderItem(1, item) + item = QtWidgets.QTableWidgetItem() + self.tableWidget.setHorizontalHeaderItem(2, item) + item = QtWidgets.QTableWidgetItem() + self.tableWidget.setHorizontalHeaderItem(3, item) + item = QtWidgets.QTableWidgetItem() + self.tableWidget.setHorizontalHeaderItem(4, item) + self.frame_4 = QtWidgets.QFrame(self.centralwidget) + self.frame_4.setGeometry(QtCore.QRect(810, 100, 431, 711)) + self.frame_4.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame_4.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame_4.setObjectName("frame_4") + self.groupBox = QtWidgets.QGroupBox(self.frame_4) + self.groupBox.setGeometry(QtCore.QRect(0, 0, 431, 171)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + self.groupBox.setFont(font) + self.groupBox.setObjectName("groupBox") + self.PiclineEdit = QtWidgets.QLineEdit(self.groupBox) + self.PiclineEdit.setGeometry(QtCore.QRect(70, 40, 311, 31)) + self.PiclineEdit.setInputMask("") + self.PiclineEdit.setObjectName("PiclineEdit") + self.VideolineEdit = QtWidgets.QLineEdit(self.groupBox) + self.VideolineEdit.setGeometry(QtCore.QRect(70, 80, 311, 31)) + self.VideolineEdit.setObjectName("VideolineEdit") + self.CapBtn = QtWidgets.QPushButton(self.groupBox) + self.CapBtn.setGeometry(QtCore.QRect(30, 120, 30, 30)) + self.CapBtn.setStyleSheet("border-image: url(:/icons/ui_imgs/icons/camera.png);") + self.CapBtn.setText("") + self.CapBtn.setObjectName("CapBtn") + self.PicBtn = QtWidgets.QPushButton(self.groupBox) + self.PicBtn.setGeometry(QtCore.QRect(30, 40, 30, 30)) + self.PicBtn.setStyleSheet("border-image: url(:/icons/ui_imgs/icons/img.png);") + self.PicBtn.setText("") + self.PicBtn.setObjectName("PicBtn") + self.VideoBtn = QtWidgets.QPushButton(self.groupBox) + self.VideoBtn.setGeometry(QtCore.QRect(30, 80, 30, 30)) + self.VideoBtn.setStyleSheet("border-image: url(:/icons/ui_imgs/icons/video.png);") + self.VideoBtn.setText("") + self.VideoBtn.setObjectName("VideoBtn") + self.CaplineEdit = QtWidgets.QLineEdit(self.groupBox) + self.CaplineEdit.setGeometry(QtCore.QRect(70, 120, 311, 31)) + self.CaplineEdit.setObjectName("CaplineEdit") + self.FilesBtn = QtWidgets.QPushButton(self.groupBox) + self.FilesBtn.setGeometry(QtCore.QRect(390, 40, 30, 30)) + self.FilesBtn.setStyleSheet("border-image: url(:/icons/ui_imgs/icons/folder.png);") + self.FilesBtn.setText("") + self.FilesBtn.setObjectName("FilesBtn") + self.groupBox_2 = QtWidgets.QGroupBox(self.frame_4) + self.groupBox_2.setGeometry(QtCore.QRect(0, 180, 431, 371)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + self.groupBox_2.setFont(font) + self.groupBox_2.setObjectName("groupBox_2") + self.frame_6 = QtWidgets.QFrame(self.groupBox_2) + self.frame_6.setGeometry(QtCore.QRect(0, 190, 431, 171)) + self.frame_6.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame_6.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame_6.setObjectName("frame_6") + self.label_4 = QtWidgets.QLabel(self.frame_6) + self.label_4.setGeometry(QtCore.QRect(10, 10, 131, 41)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + self.label_4.setFont(font) + self.label_4.setStyleSheet("") + self.label_4.setObjectName("label_4") + self.layoutWidget = QtWidgets.QWidget(self.frame_6) + self.layoutWidget.setGeometry(QtCore.QRect(20, 60, 161, 37)) + self.layoutWidget.setObjectName("layoutWidget") + self.horizontalLayout = QtWidgets.QHBoxLayout(self.layoutWidget) + self.horizontalLayout.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout.setObjectName("horizontalLayout") + self.label_6 = QtWidgets.QLabel(self.layoutWidget) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + font.setBold(False) + font.setWeight(50) + self.label_6.setFont(font) + self.label_6.setObjectName("label_6") + self.horizontalLayout.addWidget(self.label_6) + self.label_xmin = QtWidgets.QLabel(self.layoutWidget) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_xmin.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_xmin.setFont(font) + self.label_xmin.setText("") + self.label_xmin.setObjectName("label_xmin") + self.horizontalLayout.addWidget(self.label_xmin) + self.layoutWidget1 = QtWidgets.QWidget(self.frame_6) + self.layoutWidget1.setGeometry(QtCore.QRect(210, 60, 161, 37)) + self.layoutWidget1.setObjectName("layoutWidget1") + self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.layoutWidget1) + self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.label_8 = QtWidgets.QLabel(self.layoutWidget1) + self.label_8.setObjectName("label_8") + self.horizontalLayout_2.addWidget(self.label_8) + self.label_ymin = QtWidgets.QLabel(self.layoutWidget1) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_ymin.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_ymin.setFont(font) + self.label_ymin.setText("") + self.label_ymin.setObjectName("label_ymin") + self.horizontalLayout_2.addWidget(self.label_ymin) + self.layoutWidget2 = QtWidgets.QWidget(self.frame_6) + self.layoutWidget2.setGeometry(QtCore.QRect(20, 120, 161, 37)) + self.layoutWidget2.setObjectName("layoutWidget2") + self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.layoutWidget2) + self.horizontalLayout_3.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_3.setObjectName("horizontalLayout_3") + self.label_7 = QtWidgets.QLabel(self.layoutWidget2) + self.label_7.setObjectName("label_7") + self.horizontalLayout_3.addWidget(self.label_7) + self.label_xmax = QtWidgets.QLabel(self.layoutWidget2) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_xmax.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_xmax.setFont(font) + self.label_xmax.setText("") + self.label_xmax.setObjectName("label_xmax") + self.horizontalLayout_3.addWidget(self.label_xmax) + self.layoutWidget3 = QtWidgets.QWidget(self.frame_6) + self.layoutWidget3.setGeometry(QtCore.QRect(210, 120, 161, 37)) + self.layoutWidget3.setObjectName("layoutWidget3") + self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.layoutWidget3) + self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_4.setObjectName("horizontalLayout_4") + self.label_9 = QtWidgets.QLabel(self.layoutWidget3) + self.label_9.setObjectName("label_9") + self.horizontalLayout_4.addWidget(self.label_9) + self.label_ymax = QtWidgets.QLabel(self.layoutWidget3) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_ymax.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_ymax.setFont(font) + self.label_ymax.setText("") + self.label_ymax.setObjectName("label_ymax") + self.horizontalLayout_4.addWidget(self.label_ymax) + self.layoutWidget4 = QtWidgets.QWidget(self.groupBox_2) + self.layoutWidget4.setGeometry(QtCore.QRect(208, 40, 211, 37)) + self.layoutWidget4.setObjectName("layoutWidget4") + self.horizontalLayout_5 = QtWidgets.QHBoxLayout(self.layoutWidget4) + self.horizontalLayout_5.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_5.setObjectName("horizontalLayout_5") + self.label = QtWidgets.QLabel(self.layoutWidget4) + self.label.setObjectName("label") + self.horizontalLayout_5.addWidget(self.label) + self.label_nums = QtWidgets.QLabel(self.layoutWidget4) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.PlaceholderText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.PlaceholderText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.PlaceholderText, brush) + self.label_nums.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_nums.setFont(font) + self.label_nums.setText("") + self.label_nums.setObjectName("label_nums") + self.horizontalLayout_5.addWidget(self.label_nums) + self.layoutWidget5 = QtWidgets.QWidget(self.groupBox_2) + self.layoutWidget5.setGeometry(QtCore.QRect(10, 90, 291, 38)) + self.layoutWidget5.setObjectName("layoutWidget5") + self.horizontalLayout_6 = QtWidgets.QHBoxLayout(self.layoutWidget5) + self.horizontalLayout_6.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_6.setObjectName("horizontalLayout_6") + self.label_5 = QtWidgets.QLabel(self.layoutWidget5) + self.label_5.setObjectName("label_5") + self.horizontalLayout_6.addWidget(self.label_5) + self.comboBox = QtWidgets.QComboBox(self.layoutWidget5) + self.comboBox.setObjectName("comboBox") + self.horizontalLayout_6.addWidget(self.comboBox) + self.layoutWidget_2 = QtWidgets.QWidget(self.groupBox_2) + self.layoutWidget_2.setGeometry(QtCore.QRect(10, 40, 171, 37)) + self.layoutWidget_2.setObjectName("layoutWidget_2") + self.horizontalLayout_7 = QtWidgets.QHBoxLayout(self.layoutWidget_2) + self.horizontalLayout_7.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_7.setObjectName("horizontalLayout_7") + self.label_10 = QtWidgets.QLabel(self.layoutWidget_2) + self.label_10.setObjectName("label_10") + self.horizontalLayout_7.addWidget(self.label_10) + self.time_lb = QtWidgets.QLabel(self.layoutWidget_2) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.PlaceholderText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.PlaceholderText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Text, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0, 128)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.PlaceholderText, brush) + self.time_lb.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.time_lb.setFont(font) + self.time_lb.setText("") + self.time_lb.setObjectName("time_lb") + self.horizontalLayout_7.addWidget(self.time_lb) + self.layoutWidget6 = QtWidgets.QWidget(self.groupBox_2) + self.layoutWidget6.setGeometry(QtCore.QRect(210, 140, 191, 41)) + self.layoutWidget6.setObjectName("layoutWidget6") + self.horizontalLayout_8 = QtWidgets.QHBoxLayout(self.layoutWidget6) + self.horizontalLayout_8.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_8.setObjectName("horizontalLayout_8") + self.label_11 = QtWidgets.QLabel(self.layoutWidget6) + self.label_11.setObjectName("label_11") + self.horizontalLayout_8.addWidget(self.label_11) + self.label_conf = QtWidgets.QLabel(self.layoutWidget6) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_conf.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.label_conf.setFont(font) + self.label_conf.setText("") + self.label_conf.setObjectName("label_conf") + self.horizontalLayout_8.addWidget(self.label_conf) + self.layoutWidget_3 = QtWidgets.QWidget(self.groupBox_2) + self.layoutWidget_3.setGeometry(QtCore.QRect(10, 140, 191, 41)) + self.layoutWidget_3.setObjectName("layoutWidget_3") + self.horizontalLayout_9 = QtWidgets.QHBoxLayout(self.layoutWidget_3) + self.horizontalLayout_9.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_9.setObjectName("horizontalLayout_9") + self.label_13 = QtWidgets.QLabel(self.layoutWidget_3) + self.label_13.setMaximumSize(QtCore.QSize(60, 16777215)) + self.label_13.setObjectName("label_13") + self.horizontalLayout_9.addWidget(self.label_13) + self.type_lb = QtWidgets.QLabel(self.layoutWidget_3) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.type_lb.setPalette(palette) + font = QtGui.QFont() + font.setFamily("Arial") + font.setPointSize(16) + font.setBold(True) + font.setWeight(75) + self.type_lb.setFont(font) + self.type_lb.setText("") + self.type_lb.setObjectName("type_lb") + self.horizontalLayout_9.addWidget(self.type_lb) + self.groupBox_4 = QtWidgets.QGroupBox(self.frame_4) + self.groupBox_4.setGeometry(QtCore.QRect(0, 560, 431, 141)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(16) + self.groupBox_4.setFont(font) + self.groupBox_4.setObjectName("groupBox_4") + self.SaveBtn = QtWidgets.QPushButton(self.groupBox_4) + self.SaveBtn.setGeometry(QtCore.QRect(30, 50, 151, 51)) + icon1 = QtGui.QIcon() + icon1.addPixmap(QtGui.QPixmap(":/icons/ui_imgs/icons/保存.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.SaveBtn.setIcon(icon1) + self.SaveBtn.setIconSize(QtCore.QSize(30, 30)) + self.SaveBtn.setObjectName("SaveBtn") + self.ExitBtn = QtWidgets.QPushButton(self.groupBox_4) + self.ExitBtn.setGeometry(QtCore.QRect(250, 50, 151, 51)) + icon2 = QtGui.QIcon() + icon2.addPixmap(QtGui.QPixmap(":/icons/ui_imgs/icons/退出.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.ExitBtn.setIcon(icon2) + self.ExitBtn.setIconSize(QtCore.QSize(30, 30)) + self.ExitBtn.setObjectName("ExitBtn") + self.frame_5 = QtWidgets.QFrame(self.centralwidget) + self.frame_5.setGeometry(QtCore.QRect(10, 10, 1231, 91)) + self.frame_5.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.frame_5.setFrameShadow(QtWidgets.QFrame.Raised) + self.frame_5.setObjectName("frame_5") + self.label_3 = QtWidgets.QLabel(self.frame_5) + self.label_3.setGeometry(QtCore.QRect(280, 0, 811, 51)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(30) + self.label_3.setFont(font) + self.label_3.setObjectName("label_3") + self.label_2 = QtWidgets.QLabel(self.frame_5) + self.label_2.setGeometry(QtCore.QRect(20, 60, 311, 21)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(14) + font.setUnderline(True) + self.label_2.setFont(font) + self.label_2.setObjectName("label_2") + self.label_12 = QtWidgets.QLabel(self.frame_5) + self.label_12.setGeometry(QtCore.QRect(1070, 60, 131, 21)) + font = QtGui.QFont() + font.setFamily("华文楷体") + font.setPointSize(14) + font.setUnderline(True) + self.label_12.setFont(font) + self.label_12.setObjectName("label_12") + MainWindow.setCentralWidget(self.centralwidget) + self.statusbar = QtWidgets.QStatusBar(MainWindow) + self.statusbar.setObjectName("statusbar") + MainWindow.setStatusBar(self.statusbar) + + self.retranslateUi(MainWindow) + QtCore.QMetaObject.connectSlotsByName(MainWindow) + + def retranslateUi(self, MainWindow): + _translate = QtCore.QCoreApplication.translate + MainWindow.setWindowTitle(_translate("MainWindow", "基于深度学习的救援过程识别系统")) + self.groupBox_3.setTitle(_translate("MainWindow", "检测结果与位置信息")) + item = self.tableWidget.horizontalHeaderItem(0) + item.setText(_translate("MainWindow", "序号")) + item = self.tableWidget.horizontalHeaderItem(1) + item.setText(_translate("MainWindow", "文件路径")) + item = self.tableWidget.horizontalHeaderItem(2) + item.setText(_translate("MainWindow", "类别")) + item = self.tableWidget.horizontalHeaderItem(3) + item.setText(_translate("MainWindow", "置信度")) + item = self.tableWidget.horizontalHeaderItem(4) + item.setText(_translate("MainWindow", "坐标位置")) + self.groupBox.setTitle(_translate("MainWindow", "文件导入")) + self.PiclineEdit.setPlaceholderText(_translate("MainWindow", "请选择图片文件")) + self.VideolineEdit.setPlaceholderText(_translate("MainWindow", "请选择视频文件")) + self.CaplineEdit.setPlaceholderText(_translate("MainWindow", "摄像头未开启")) + self.groupBox_2.setTitle(_translate("MainWindow", "检测结果")) + self.label_4.setText(_translate("MainWindow", "

目标位置:

")) + self.label_6.setText(_translate("MainWindow", "

xmin:

")) + self.label_8.setText(_translate("MainWindow", "

ymin:

")) + self.label_7.setText(_translate("MainWindow", "

xmax:

")) + self.label_9.setText(_translate("MainWindow", "

ymax:

")) + self.label.setText(_translate("MainWindow", "

目标数目:

")) + self.label_5.setText(_translate("MainWindow", "

目标选择:

")) + self.label_10.setText(_translate("MainWindow", "

用时:

")) + self.label_11.setText(_translate("MainWindow", "

置信度:

")) + self.label_13.setText(_translate("MainWindow", "

类型:

")) + self.groupBox_4.setTitle(_translate("MainWindow", "操作")) + self.SaveBtn.setText(_translate("MainWindow", "保存")) + self.ExitBtn.setText(_translate("MainWindow", "退出")) + self.label_3.setText(_translate("MainWindow", "基于深度学习的救援过程识别系统")) + self.label_2.setText(_translate("MainWindow", "公众号:救援识别技术")) + self.label_12.setText(_translate("MainWindow", "作者:王海滨")) +import ui_sources_rc diff --git a/UIProgram/UiMain.ui b/UIProgram/UiMain.ui new file mode 100644 index 0000000..d6a65db --- /dev/null +++ b/UIProgram/UiMain.ui @@ -0,0 +1,1226 @@ + + + MainWindow + + + + 0 + 0 + 1250 + 830 + + + + + 1250 + 830 + + + + + 1250 + 830 + + + + 基于深度学习的西红柿成熟度检测系统 + + + + :/icons/ui_imgs/icons/目标检测.png:/icons/ui_imgs/icons/目标检测.png + + + + + + 10 + 100 + 791 + 711 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 0 + 771 + 481 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 0 + 0 + 770 + 480 + + + + + 770 + 480 + + + + + 770 + 480 + + + + border-image: url(:/icons/ui_imgs/11.png); + + + + + + + + + + 10 + 480 + 771 + 221 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 0 + 10 + 771 + 221 + + + + + 华文楷体 + 16 + + + + 检测结果与位置信息 + + + + + 10 + 30 + 751 + 181 + + + + + 华文楷体 + 14 + + + + + 序号 + + + + + 文件路径 + + + + + 类别 + + + + + 置信度 + + + + + 坐标位置 + + + + + + + + + + 810 + 100 + 431 + 711 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 0 + 0 + 431 + 171 + + + + + 华文楷体 + 16 + + + + 文件导入 + + + + + 70 + 40 + 311 + 31 + + + + + + + 请选择图片文件 + + + + + + 70 + 80 + 311 + 31 + + + + 请选择视频文件 + + + + + + 30 + 120 + 30 + 30 + + + + border-image: url(:/icons/ui_imgs/icons/camera.png); + + + + + + + + + 30 + 40 + 30 + 30 + + + + border-image: url(:/icons/ui_imgs/icons/img.png); + + + + + + + + + 30 + 80 + 30 + 30 + + + + border-image: url(:/icons/ui_imgs/icons/video.png); + + + + + + + + + 70 + 120 + 311 + 31 + + + + 摄像头未开启 + + + + + + 390 + 40 + 30 + 30 + + + + border-image: url(:/icons/ui_imgs/icons/folder.png); + + + + + + + + + + 0 + 180 + 431 + 371 + + + + + 华文楷体 + 16 + + + + 检测结果 + + + + + 0 + 190 + 431 + 171 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 10 + 131 + 41 + + + + + 华文楷体 + 16 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">目标位置:</span></p></body></html> + + + + + + 20 + 60 + 161 + 37 + + + + + + + + 华文楷体 + 16 + 50 + false + + + + <html><head/><body><p><span style=" font-weight:600;">xmin:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 210 + 60 + 161 + 37 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">ymin:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 20 + 120 + 161 + 37 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">xmax:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 210 + 120 + 161 + 37 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">ymax:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + + 208 + 40 + 211 + 37 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">目标数目:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + 120 + 120 + 120 + + + + + + + 0 + 0 + 0 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 10 + 90 + 291 + 38 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">目标选择:</span></p></body></html> + + + + + + + + + + + + 10 + 40 + 171 + 37 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">用时:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + 120 + 120 + 120 + + + + + + + 0 + 0 + 0 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 210 + 140 + 191 + 41 + + + + + + + <html><head/><body><p><span style=" font-weight:600;">置信度:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + 10 + 140 + 191 + 41 + + + + + + + + 60 + 16777215 + + + + <html><head/><body><p><span style=" font-weight:600;">类型:</span></p></body></html> + + + + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 255 + 0 + 0 + + + + + + + + + 120 + 120 + 120 + + + + + + + + + Arial + 16 + 75 + true + + + + + + + + + + + + + + 0 + 560 + 431 + 141 + + + + + 华文楷体 + 16 + + + + 操作 + + + + + 30 + 50 + 151 + 51 + + + + 保存 + + + + :/icons/ui_imgs/icons/保存.png:/icons/ui_imgs/icons/保存.png + + + + 30 + 30 + + + + + + + 250 + 50 + 151 + 51 + + + + 退出 + + + + :/icons/ui_imgs/icons/退出.png:/icons/ui_imgs/icons/退出.png + + + + 30 + 30 + + + + + + + + + 10 + 10 + 1231 + 91 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 280 + 0 + 811 + 51 + + + + + 华文楷体 + 30 + + + + 基于深度学习的西红柿成熟度检测系统 + + + + + + 20 + 60 + 311 + 21 + + + + + 华文楷体 + 14 + true + + + + 公众号:阿旭算法与机器学习 + + + + + + 1070 + 60 + 131 + 21 + + + + + 华文楷体 + 14 + true + + + + 作者:阿旭 + + + + + + + + + + + diff --git a/UIProgram/__init__.py b/UIProgram/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/UIProgram/precess_bar.py b/UIProgram/precess_bar.py new file mode 100644 index 0000000..c70876a --- /dev/null +++ b/UIProgram/precess_bar.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# 进度条 +from PyQt5.QtWidgets import QDialog, QLabel, QProgressBar, QPushButton, QVBoxLayout, QHBoxLayout + + +class ProgressBar(QDialog): + def __init__(self, parent=None): + super(ProgressBar, self).__init__(parent) + + self.resize(350, 100) + self.setWindowTitle(self.tr("视频保存进度信息")) + + self.TipLabel = QLabel(self.tr("当前帧/总帧数:0/0")) + self.FeatLabel = QLabel(self.tr("保存进度:")) + + self.FeatProgressBar = QProgressBar(self) + self.FeatProgressBar.setMinimum(0) + self.FeatProgressBar.setMaximum(100) # 总进程换算为100 + self.FeatProgressBar.setValue(0) # 进度条初始值为0 + + TipLayout = QHBoxLayout() + TipLayout.addWidget(self.TipLabel) + + FeatLayout = QHBoxLayout() + FeatLayout.addWidget(self.FeatLabel) + FeatLayout.addWidget(self.FeatProgressBar) + + self.cancelButton = QPushButton('取消保存', self) + + buttonlayout = QHBoxLayout() + buttonlayout.addStretch(1) + buttonlayout.addWidget(self.cancelButton) + + layout = QVBoxLayout() + layout.addLayout(FeatLayout) + layout.addLayout(TipLayout) + layout.addLayout(buttonlayout) + self.setLayout(layout) + self.cancelButton.clicked.connect(self.onCancel) + # self.show() + + def setValue(self, start, end, progress): + self.TipLabel.setText(self.tr("当前帧/总帧数:" + " " + str(start) + "/" + str(end))) + # 确保 progress 是整数类型,避免 TypeError + self.FeatProgressBar.setValue(int(progress)) + + def onCancel(self, event): + self.close() \ No newline at end of file diff --git a/UIProgram/style.css b/UIProgram/style.css new file mode 100644 index 0000000..7f4ccca --- /dev/null +++ b/UIProgram/style.css @@ -0,0 +1,16 @@ + +QGroupBox { + border: 2px solid gray; + } + +QPushButton#SaveBtn{color:black; + background-color:rgb(255, 215, 0); + border-radius:6px} +QPushButton#ExitBtn{color:black; + background-color:rgb(255, 215, 0); + border-radius:6px} +QPushButton:hover{color:red} +QPushButton:pressed{background-color:rgb(180,180,180);border: None;} + + +#MainWindow{border-image:url(UIProgram/ui_imgs/bg22.png)} \ No newline at end of file diff --git a/UIProgram/ui_imgs/11.png b/UIProgram/ui_imgs/11.png new file mode 100644 index 0000000..9ca5461 --- /dev/null +++ b/UIProgram/ui_imgs/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60daa44c1847c8406b5d384eba9fc9dc5d18268469fb1b32fcf0d36bd8189dbc +size 1064040 diff --git a/UIProgram/ui_imgs/bg22.png b/UIProgram/ui_imgs/bg22.png new file mode 100644 index 0000000..cdd3485 --- /dev/null +++ b/UIProgram/ui_imgs/bg22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffbf623c5cfb8213b66013e9289748cea6af6cfd357a1fc5b4776b699b8eac5 +size 40492 diff --git a/UIProgram/ui_imgs/icons/camera.png b/UIProgram/ui_imgs/icons/camera.png new file mode 100644 index 0000000..57a93c5 --- /dev/null +++ b/UIProgram/ui_imgs/icons/camera.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308e1cb798287a2f104631e501bf141b36099235107b2c7a58e0f4b7ed3046b4 +size 9437 diff --git a/UIProgram/ui_imgs/icons/folder.png b/UIProgram/ui_imgs/icons/folder.png new file mode 100644 index 0000000..c3a8fc6 --- /dev/null +++ b/UIProgram/ui_imgs/icons/folder.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4a2d9a0ebda849c83c6800823d0963b73a3fc9f2b1c55ab1bd0b8692ca597d +size 4576 diff --git a/UIProgram/ui_imgs/icons/img.png b/UIProgram/ui_imgs/icons/img.png new file mode 100644 index 0000000..24f0579 --- /dev/null +++ b/UIProgram/ui_imgs/icons/img.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac633edbacd4657ccc1ae7d26879b2ab17855a463d3a99a401ee67a92043e0b +size 6573 diff --git a/UIProgram/ui_imgs/icons/video.png b/UIProgram/ui_imgs/icons/video.png new file mode 100644 index 0000000..1f60b01 --- /dev/null +++ b/UIProgram/ui_imgs/icons/video.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552194a2dcdbb5d522ca9a6d11da2a5cbfa60c6fc7b568461396d9049d4de0b2 +size 10125 diff --git a/UIProgram/ui_imgs/icons/保存.png b/UIProgram/ui_imgs/icons/保存.png new file mode 100644 index 0000000..aabf20c --- /dev/null +++ b/UIProgram/ui_imgs/icons/保存.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b43f0201bd777582fa8d60904711c822cd6741d996fd7aa73b66bc41ce51d5 +size 2719 diff --git a/UIProgram/ui_imgs/icons/目标检测.png b/UIProgram/ui_imgs/icons/目标检测.png new file mode 100644 index 0000000..a9a9e7a --- /dev/null +++ b/UIProgram/ui_imgs/icons/目标检测.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10084bea7060ebf0c78b54c8413cd783322f960a08a05e7b587c5741529ca192 +size 15094 diff --git a/UIProgram/ui_imgs/icons/退出.png b/UIProgram/ui_imgs/icons/退出.png new file mode 100644 index 0000000..64b8cdd --- /dev/null +++ b/UIProgram/ui_imgs/icons/退出.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7f33dcf2f1d771378fcde6e61f445954792080eb0116b5345164b18d35b1c4 +size 7457 diff --git a/UIProgram/ui_sources.py b/UIProgram/ui_sources.py new file mode 100644 index 0000000..d83e626 --- /dev/null +++ b/UIProgram/ui_sources.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'ui_sources.qrc' +# +# Created by: PyQt5 UI code generator 5.15.9 +# +# WARNING: Any manual changes made to this file will be lost when pyuic5 is +# run again. Do not edit this file unless you know what you are doing. + + diff --git a/UIProgram/ui_sources.qrc b/UIProgram/ui_sources.qrc new file mode 100644 index 0000000..a74dafd --- /dev/null +++ b/UIProgram/ui_sources.qrc @@ -0,0 +1,13 @@ + + + ui_imgs/icons/目标检测.png + ui_imgs/icons/保存.png + ui_imgs/icons/退出.png + ui_imgs/icons/camera.png + ui_imgs/icons/folder.png + ui_imgs/icons/img.png + ui_imgs/icons/video.png + ui_imgs/11.png + + + diff --git a/UIProgram/ui_sources_rc.py b/UIProgram/ui_sources_rc.py new file mode 100644 index 0000000..77131f1 --- /dev/null +++ b/UIProgram/ui_sources_rc.py @@ -0,0 +1,70133 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2) +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore + +qt_resource_data = b"\ +\x00\x10\x3c\x68\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x06\xd4\x00\x00\x04\x88\x08\x06\x00\x00\x00\x83\x68\x2b\xc4\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\ +\x0e\x1b\x00\x00\x00\x54\x74\x45\x58\x74\x70\x6f\x73\x74\x70\x72\ +\x6f\x63\x65\x73\x73\x69\x6e\x67\x00\x50\x6f\x73\x74\x70\x72\x6f\ +\x63\x65\x73\x73\x20\x75\x70\x73\x63\x61\x6c\x65\x20\x62\x79\x3a\ +\x20\x34\x2c\x20\x50\x6f\x73\x74\x70\x72\x6f\x63\x65\x73\x73\x20\ +\x75\x70\x73\x63\x61\x6c\x65\x72\x3a\x20\x52\x2d\x45\x53\x52\x47\ +\x41\x4e\x20\x34\x78\x2b\x20\x41\x6e\x69\x6d\x65\x36\x42\x76\x52\ +\x69\xce\x00\x00\x00\x4c\x74\x45\x58\x74\x65\x78\x74\x72\x61\x73\ +\x00\x50\x6f\x73\x74\x70\x72\x6f\x63\x65\x73\x73\x20\x75\x70\x73\ +\x63\x61\x6c\x65\x20\x62\x79\x3a\x20\x34\x2c\x20\x50\x6f\x73\x74\ +\x70\x72\x6f\x63\x65\x73\x73\x20\x75\x70\x73\x63\x61\x6c\x65\x72\ +\x3a\x20\x52\x2d\x45\x53\x52\x47\x41\x4e\x20\x34\x78\x2b\x20\x41\ +\x6e\x69\x6d\x65\x36\x42\xd8\x93\xb2\xc2\x00\x00\xfe\xed\x49\x44\ +\x41\x54\x78\x5e\xec\xfd\x07\xbc\x2d\xc9\x55\xdf\x8b\xff\x3a\xec\ +\x74\xf2\x8d\x33\x77\xee\xe4\x9c\xa5\x51\x44\x11\x89\x20\x24\x04\ +\x42\x80\x41\xc6\x44\x93\x6c\xb0\xb1\xb1\xe5\x67\x30\x0e\xd8\xcf\ +\x7f\x3e\x98\x87\x1f\x36\xc6\xd8\xe6\x81\x8d\x09\xc2\x60\xd9\x06\ +\x84\x00\x21\x10\x8a\x48\x1a\x49\x23\x4d\xd6\xe4\xb9\x39\x9f\x7b\ +\xf2\x8e\x1d\xfe\xeb\xb7\xaa\xeb\x9c\x3e\x7b\xf6\x49\xf7\xee\x9b\ +\xd7\xf7\x9c\xde\x5d\x5d\x5d\xb5\x6a\x55\x75\xa8\xd5\x55\x5d\xd5\ +\x41\x2e\xc0\x30\x8c\x2b\x1e\x7f\x27\x08\x02\xba\xfd\x6d\x41\x36\ +\xdc\xff\x2a\x36\x7b\xd3\xf0\xf1\x2e\xd4\x4d\xa6\xac\xf7\xb0\x74\ +\x38\x17\x32\x37\xcb\xd9\xa6\xbd\x51\xfc\xcd\x1c\xaf\x41\x61\xe8\ +\xd7\x1f\xa7\x1c\x6e\xd0\xfe\x33\x61\x2b\x72\xfa\xc3\x96\xf5\xf1\ +\x0c\x4b\x2f\xe2\xe5\x93\x81\x32\xbd\x67\x39\xe0\xd9\xb0\x99\xcc\ +\x6d\x85\xcd\xe8\xd7\x2f\x9f\xdb\x67\x9a\x9f\xb3\x89\x7b\x26\x94\ +\x75\x2f\x53\xd6\xa1\x5f\xa7\x73\xa1\x63\x59\x8f\xfe\xb4\x88\xf7\ +\x5b\x4b\xdf\x33\xe5\x5c\xcb\xed\x67\xd8\xe9\xac\xc5\xb0\x8f\xcf\ +\x56\xe9\x3f\x6e\xe7\x81\xf2\xa1\xdc\x28\x59\x1f\xe6\x7c\x1d\x8e\ +\xf5\xb8\x58\xf4\xb8\xd8\xe9\x3f\xa6\xfd\x65\xb6\x95\xfd\x9b\x2d\ +\xef\x8d\x64\x5e\x09\x6c\xa5\x0c\x18\xb6\xbc\xbf\x3f\xae\xc7\x87\ +\xe9\x0f\x7f\x21\x28\xeb\xb0\x69\x7d\xca\x11\xfa\xe8\x97\xe1\x83\ +\xf4\xfb\xf5\x8b\xd8\x54\xba\x6b\x30\x40\x8d\xb3\x92\x37\x34\x06\ +\x15\xc4\x20\xd6\x52\x76\xbd\x38\x17\x02\xea\x59\xd6\xc9\x6f\x7b\ +\xfd\xcf\xb5\xbe\xfd\xe5\x74\xae\xd2\x1b\x74\x3c\x7c\x5a\x83\xf6\ +\x6d\xc4\x99\xe8\x39\xa8\x4c\xcf\x24\xed\x41\x9c\xeb\xe3\x74\x9e\ +\xe9\xcf\x0e\x8b\xa9\xbf\xd8\xfc\xf6\xb0\x8a\xf0\x6c\xb9\xd8\xf4\ +\xb9\x18\x59\xeb\x34\xf5\x65\xd6\x7f\x8c\x37\x62\x3d\x79\x6b\xed\ +\xdb\x2a\xc3\x94\xb5\x55\x86\x71\x2e\x5d\x28\xdd\x0d\xe3\x72\xc4\ +\x3a\xd4\x0c\xe3\x0a\x26\xcb\x72\x04\x61\xa0\x15\xeb\xf2\x8d\xc0\ +\x3b\xbc\x67\x51\xeb\xfa\xca\xd7\x6e\x18\x2b\x45\x63\x18\x5b\xa2\ +\x74\x3d\x0d\x85\x8d\x4e\xc2\xfe\x13\xb5\x3f\x6d\xaf\x4f\xbf\x1c\ +\x1f\x6e\x23\xf9\x9b\x61\x90\xfc\x7e\xfa\xf5\x5a\x0f\xaf\xf3\x56\ +\x39\xd3\xbc\x6c\x26\xad\xb2\xec\xf5\xc2\x0f\xa3\x3c\x37\x62\x33\ +\xe5\x7d\x36\x94\xe5\x6f\x54\x36\x5b\xd1\xc3\xcb\xea\x8f\xb3\xd9\ +\xfc\x6c\xa4\xcb\xb0\xe8\xcf\xfb\x20\x7d\x0d\xc3\x30\x2e\x65\xd6\ +\xba\xe7\x5e\x8a\xf7\x37\xe6\xc5\xd7\x23\xe7\x42\xff\x41\x75\xc0\ +\x5a\xe5\xb7\x1e\x9b\xd5\xcd\xcb\x2e\x87\x1f\xa4\x83\xa7\xbc\x6f\ +\xbd\x34\x18\xee\x4c\x75\xf7\xac\xa7\xd3\x5a\x6c\x36\xce\x5a\xba\ +\x6d\x26\x4f\x6b\x71\x36\x79\x1d\x44\x7f\x5e\xd6\x4b\x9b\x0c\x33\ +\x7d\x9f\xd6\x66\xd2\x35\x0c\x63\x15\xbc\x64\xd6\xba\x74\x36\xba\ +\x4c\x7d\xdc\x4b\x09\xbb\x45\x18\xc6\xf0\xb0\x0e\x35\xc3\xb8\x82\ +\xe1\xe5\x1f\x04\xc1\xb2\x11\x61\x37\x03\xc3\x30\x94\x61\xdc\x0c\ +\xb6\x72\x53\xd9\xac\x75\x5f\x96\xb7\xd5\x27\x82\xad\xe6\x69\x90\ +\x7c\x2f\xc3\xe7\xcd\x87\x29\xfb\x6f\xc4\x56\xf5\xd8\x0a\xeb\xe9\ +\xd3\xaf\xbb\x67\x23\x9d\xfb\xc3\x0e\x92\xbd\x19\x18\xcf\xc7\x29\ +\xbb\x0d\xc3\x30\x8c\x8b\x0b\xbb\x47\x9f\x19\xbe\xdc\x7c\x3d\xd9\ +\xcf\xc5\x5a\xa6\x6b\xe9\x4b\x06\xe5\x67\xab\xf9\x58\x4f\xfe\x66\ +\xf0\xe9\xf9\xf2\x1d\x26\x65\xdd\x06\xe5\x95\x94\xd3\xf7\x94\xc3\ +\x0e\x5b\xa7\x32\xfd\x79\xee\xd7\xef\x5c\xa6\x6d\x18\xc6\x65\x87\ +\xdd\x32\x0c\x63\x78\x58\x87\x9a\x61\x5c\xc1\xe8\xd5\x6f\xb5\xaa\ +\x61\x9c\x7b\xca\x35\xed\xd9\x5c\x73\x83\xe4\xac\xf5\x70\xbd\x96\ +\xbf\xa7\x7f\xff\xa5\x0a\xf3\xb5\x99\xf2\x3d\x93\xfc\xf6\xcb\x36\ +\xce\x0c\x5f\x8e\x6b\x1d\x1b\x4f\x39\x4c\xff\x31\xdd\x4c\xfc\xcd\ +\x32\x28\x9d\x61\xc9\x1e\x16\xc3\xcc\xaf\x61\x18\xc6\x66\x28\xdf\ +\x77\xfb\x39\xd7\xf7\xa3\xb3\xb9\xe7\x9d\xaf\xfb\xe5\xa0\xf2\xf1\ +\xe9\xae\x57\x76\x9e\x7e\x1d\x37\x13\x67\x3d\x28\xcf\xe7\xbd\x7f\ +\x5d\xe6\x6c\xd3\xd9\x2c\x3e\xdd\x61\xa7\xb7\x56\xbe\xce\x96\x7e\ +\x3d\x7d\x3a\xe7\x82\xcd\xea\xee\xd3\x5f\x2b\xcf\xeb\xe9\x37\xec\ +\xf2\x21\x83\x74\x30\x0c\xe3\x92\xc5\x2e\x67\xc3\x18\x1e\xd6\xa1\ +\x66\x18\x57\x38\x76\x03\x30\x8c\xf3\x40\xf9\x42\x3b\x1b\x4b\x76\ +\x90\x1c\xef\xd7\xbf\x5d\xa6\xbc\xaf\x3f\xfd\x7e\x99\x83\xe2\x9f\ +\x4f\xb6\xa2\x43\x7f\x9e\xd7\xda\x1e\xc4\xb9\xc8\xe7\xc5\x50\x7e\ +\xa4\xbf\x1c\x86\x49\x39\x8f\xe5\xf2\x1d\x94\xd6\x7a\xe5\xbf\x59\ +\x06\xa5\xe5\xe1\xbe\xb3\x4d\x63\x23\xf9\x83\x18\x46\xbe\x0c\xc3\ +\x30\x8c\xd5\xf4\xdf\xd3\x37\x7b\x8f\x3f\xdb\xba\x60\x33\xf1\xd7\ +\xaa\x0f\x36\xc3\x66\xf3\x70\xa6\x6c\x25\xef\x67\x93\xce\x85\x60\ +\x50\xde\x36\x3a\x5e\x6b\xe5\x71\xd8\xc7\xc1\xcb\x2b\xeb\xb3\x5e\ +\xfc\xcd\xa4\xbf\x59\xfa\xd3\x19\xa6\x6c\xc3\x30\x2e\x5b\xec\x56\ +\x61\x18\xc3\xc3\x3a\xd4\x0c\xe3\x0a\xc7\x46\xa9\x19\xc6\x26\x38\ +\xdb\xeb\xa4\x5c\xd3\x6e\x55\x8e\xd5\xd2\xc6\xc5\x0c\xcf\xe7\xb5\ +\xce\xd1\xfe\x7d\x7e\xfb\x4c\xae\x81\x72\x9c\xf5\xd2\xdb\x2c\x5e\ +\x46\x59\x47\x1f\x7f\x2d\xf9\x65\xb6\x9a\x07\xc3\x30\x0c\x63\x35\ +\x83\xee\xb5\xfd\xf7\x56\x86\x59\xeb\x7e\xbb\x99\x7b\xf5\x95\x4a\ +\xb9\xcc\xfa\xcb\xf0\x72\x2c\x37\xe6\xcf\xe7\xf3\x62\xcb\x5f\x59\ +\xb7\x61\x70\xb6\xf9\x1b\x96\x1e\x86\x61\x5c\x72\xd8\xe5\x6f\x18\ +\xc3\xc3\x3a\xd4\x0c\xe3\x0a\x66\xf9\xea\xb7\x9a\xd5\x30\x2e\x0d\ +\xd6\xab\xb1\xcb\xd7\xf1\x5a\xe1\x7c\x98\xad\xd4\xfc\x1b\xdd\x1f\ +\x86\x6d\x45\x9c\x89\x8e\xc3\x82\x69\xfb\x74\xfb\xf3\x7d\x21\xf4\ +\xb9\x14\xd8\xcc\xf9\xb1\x51\x98\xad\xb2\xde\xb1\xd8\x4c\x5a\xe5\ +\xf8\xc3\xd6\xcd\x30\x0c\xc3\x18\x4c\xb9\x3e\xe8\xbf\x8f\x6f\xf5\ +\x5e\xec\xe3\xaf\x25\xaf\x0c\xc3\x94\xd3\x2e\xb3\x15\x39\x97\x02\ +\x9b\x29\xc7\xfe\x3c\xf6\xe7\xbd\x5c\x5e\xe5\xb0\x67\x22\x7b\xd8\ +\x94\x75\xf0\x3a\xae\xc5\xa0\x3c\xac\xc7\x66\xc2\xfa\xf4\x36\x23\ +\x73\x3d\xdd\xce\x06\x9f\x76\xbf\x7c\x9f\xdf\x32\xfd\x7e\x83\xc2\ +\x18\x86\x71\xc5\x60\x97\xbf\x61\x0c\x0f\xeb\x50\x33\x8c\x2b\x18\ +\xbd\xf8\xcd\xb0\x36\x2e\x56\x2e\xb6\x73\xf3\x7c\xe9\x33\xcc\x74\ +\xd6\x93\xc5\x7d\xeb\xe1\xe3\x79\x19\xfd\xb2\x36\x8a\x3f\x88\xb2\ +\x9c\xfe\xf8\x65\xd9\xe4\x4c\xe4\x6f\x84\x4f\x63\x90\xec\xfe\xf4\ +\xd7\x63\x90\xee\xde\x6f\x50\xde\xce\x05\x5b\x49\xe7\x4c\x75\xea\ +\x8f\xe7\xb7\xb9\xde\x0c\x5b\x09\xbb\x55\xfa\xf3\x73\xae\xd2\x31\ +\x0c\xc3\x30\xce\x0d\xfe\x3e\x7e\x26\xf7\xef\xfe\xba\x89\x0c\xb3\ +\xce\x59\x4b\xb7\xb2\xff\x66\xf4\x2f\xeb\x39\x2c\x7c\xda\xe5\x74\ +\xfd\x76\xff\x7a\x10\x5e\xa7\xb5\xf6\x0f\x03\x9f\xc6\x30\x18\x94\ +\xcf\xad\xb2\x91\x3e\xfd\x69\xac\xc5\xb9\x2c\xb3\xad\x52\xd6\xf3\ +\x62\xd2\xcb\x30\x8c\x8b\x16\xbb\x55\x18\xc6\xf0\xb0\x0e\x35\xc3\ +\xb8\x82\xb1\x8b\xdf\x30\xb6\x80\xbf\x60\xfa\x2d\xd1\x61\x3c\xd0\ +\xae\x77\x31\x7a\x99\x0c\x43\xf7\x5a\x7a\xf4\x53\x0e\x3f\x28\xec\ +\x7a\x69\x0e\x83\x72\x9a\xfd\x3a\xac\x95\xb6\xd7\x97\xf4\xbb\xc9\ +\xa0\x7d\xe7\x1a\x9f\x96\xd7\xc1\xd3\x9f\xfe\xb0\x74\xea\xcf\x6b\ +\x99\x7e\x1d\xc8\xf9\x2a\x87\x7e\x06\xe9\x42\x06\x95\xd5\x7a\x6c\ +\x35\xfc\x7a\x0c\x53\x96\x61\x18\x86\xb1\x3e\x67\x7b\xcf\xf5\xf5\ +\xd7\x99\xc8\x18\x94\xf6\xf9\xa8\x4f\xbc\xce\x65\x18\xae\xdf\xbf\ +\xec\x37\x48\xcf\x4b\x81\x41\x7a\x7b\xbf\xb2\xbb\x9f\x8d\xf2\x57\ +\x2e\x9b\x32\x6b\xf9\x6f\xc4\x5a\x7a\x90\x33\x91\xb7\x1e\xeb\xa5\ +\xb5\x15\xbc\x5e\x67\x2a\xaf\x3f\x5f\xc3\xd2\xcb\x30\x8c\xcb\x1a\ +\xbb\x55\x18\xc6\xf0\xb0\x0e\x35\xc3\xb8\x82\xb1\x8b\xdf\x30\xb6\ +\x00\x2f\x98\xb5\xac\xd0\xad\x3e\x18\x97\x65\xad\x77\x21\x96\xe5\ +\x95\xd3\xf0\xf1\xcb\x72\xca\xf4\xcb\x1c\x14\x66\x10\xeb\xe9\xb2\ +\x55\xd6\x4b\x73\x33\xe9\xac\x15\x7f\x50\x9e\x87\xa9\xb7\x87\x69\ +\x6c\x24\xd7\x87\xf1\xfa\x9c\xad\x1e\xeb\xe5\xab\x7f\x9f\xe7\x5c\ +\xe4\xdd\x73\x26\xfa\x6c\x86\x72\x99\x19\x86\x61\x18\x57\x26\xbe\ +\x2e\xb8\x14\xeb\x84\xcd\xe8\xbc\xd9\x7c\xad\x15\x8e\xfe\x17\x3b\ +\x5e\xef\x8d\xf2\xb0\x99\x72\xf0\x9c\x49\xbe\x37\x9b\x76\x59\xcf\ +\xf2\xfe\xfe\x34\xfb\xfd\xd6\x0a\x73\x21\x29\xeb\x6f\x18\x86\xb1\ +\x09\xec\x76\x61\x18\xc3\xc3\x3a\xd4\x0c\xe3\x0a\xc6\x2e\x7e\xc3\ +\xb8\x00\xf0\xc2\xf3\x0f\xe6\xde\xaa\x2d\x3f\x14\xf7\x5f\x98\x65\ +\xbf\xfe\x78\x9e\x7e\x59\xfd\x72\xfa\xc3\xaf\x45\x39\xce\x66\x29\ +\xa7\xdb\x4f\xbf\x1e\x67\x8a\x97\xb3\x5e\x3e\x86\x91\xce\x5a\x6c\ +\x26\x8f\xe7\x22\xaf\x65\x79\x5e\x87\x7e\xfa\xd3\xf4\xe1\x86\xa1\ +\xcb\x20\xca\xfa\x9d\x4b\xbc\xfe\xe7\x3a\x1d\xc3\x30\x0c\xe3\xc2\ +\x71\xa9\xde\xeb\x87\x55\x0f\x6e\x45\x8e\x2f\xab\x41\x50\xc6\x7a\ +\xfb\x37\x8b\xd7\x65\x18\xb2\xfa\xd9\x4a\x79\x9d\x69\xfa\x1b\x95\ +\xc3\x66\xcb\x69\x90\xae\xfd\xf1\xb6\x92\x1f\xc3\x30\x8c\x8b\x00\ +\xbb\x6d\x19\xc6\xf0\xb0\x0e\x35\xc3\xb8\x82\xb1\x8b\xdf\x30\x2e\ +\x20\xfe\x02\x1c\x96\x65\xbb\xd6\x05\xbd\x56\xa3\xc0\x66\x1a\x0b\ +\xfa\x29\xc7\xf1\x32\xca\xeb\x73\xc9\x20\x7d\xcb\x6c\x36\xfd\x33\ +\xd5\x75\xab\xf1\xfa\xc3\xaf\xa7\xff\x20\xb9\x67\x9b\xde\x30\x59\ +\x4f\x77\xc3\x30\x0c\xc3\xb8\x14\x61\x9d\x59\xae\xdf\xfa\xeb\xec\ +\xfe\x6d\xe2\xe3\xf4\xc7\xdd\x88\xb2\x2c\xd2\x2f\x9f\x6c\x24\xcf\ +\x87\x2f\xa7\x3f\xc8\x6f\x33\x6c\x36\xec\xa0\x70\xe5\x34\x3d\x5b\ +\x49\x7b\x2d\xbc\xdc\xcd\xe2\xd3\xdb\x6a\xbc\x8d\x38\xdb\x7c\x9c\ +\x09\xfd\x79\xb8\x10\x3a\x18\x86\x71\xd9\x63\xb7\x16\xc3\x18\x1e\ +\xd6\xa1\x66\x18\x57\x30\x76\xf1\x1b\xc6\x39\x80\x17\xd6\x66\xac\ +\x55\x7f\x01\x0e\xcb\xb2\x5d\xeb\x82\xee\x97\xef\xf5\x2b\xaf\x37\ +\xcb\x20\x59\xe7\x93\xb2\xbe\x5e\x97\xf2\x76\xbf\x3e\x65\x7d\xcb\ +\xfb\xfa\xfd\x7d\xdc\x41\x32\xc8\x5a\xfe\x9b\xa5\x9c\x5e\x99\xb3\ +\x91\x79\x3e\x59\x4b\xff\x41\xf4\x97\x63\xbf\x9b\xf4\xef\xdb\x8a\ +\x7c\xc3\x30\x0c\xc3\x38\x5b\x7c\x3d\xe4\x29\xd7\x55\x1b\xb1\xd9\ +\x3a\xab\xbf\xae\xdb\x0a\xfd\x69\xac\x57\x57\x0e\xca\xcb\xc5\xc8\ +\xa0\x32\x38\x93\xb2\xf1\x0c\x2a\xa3\x61\xb2\x5e\x79\x6f\x54\xc6\ +\x1b\x1d\x93\xf5\x74\xdd\x48\xf6\x85\xc0\xeb\x7b\x31\xea\x66\x18\ +\xc6\xa6\xb1\x4b\xd8\x30\x86\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\ +\x86\x71\x01\xe0\x85\x77\xae\xac\xd9\x41\x17\xf5\x66\xd3\xda\xca\ +\x0d\x81\x32\xfb\xc3\xaf\x97\xce\x99\xdc\x6c\x06\xa5\xe1\x29\xef\ +\x2b\xa7\x7b\x26\xe9\x9c\x09\x6b\xe5\x75\xa3\xf4\xfb\x75\xbd\x10\ +\xba\x6f\x95\xb5\xf2\xba\x19\x7c\x1e\xd7\xca\x9b\xdf\x77\x36\x69\ +\x18\x86\x61\x18\x86\xc7\xd7\x37\x9b\xad\x57\x36\xaa\xa7\x06\x31\ +\xac\x3a\x6b\xb3\x69\x9e\x6d\x5d\x79\x2e\xe3\xfa\xfd\x83\xc2\xad\ +\x17\x97\xfb\xc8\xa0\xb8\x7e\xdf\x56\xf0\x72\xc8\x20\x99\xfd\xac\ +\x95\x86\x8f\x53\xde\xbf\x9e\x9c\xcd\xb0\x9e\x2e\x7e\xdf\x30\xd3\ +\x3b\x17\x78\xfd\x2e\x46\xdd\x0c\xc3\xd8\x34\x76\x09\x1b\xc6\xf0\ +\xb0\x0e\x35\xc3\xb8\x82\xb1\x8b\xdf\x30\x8c\x35\x1f\xe2\xfb\x6f\ +\x10\xeb\xed\xf3\xf8\x30\xfd\x32\xcf\xf5\xcd\xa6\x3f\x8d\x41\x7a\ +\x0c\x83\x72\x19\xf4\x73\xa6\x69\x6d\xb5\x7c\xca\x3a\x0c\x33\x7f\ +\x6b\x95\xd9\x5a\x79\x66\xb8\x8d\xca\x63\xd0\xfe\xb2\x7c\xee\xdf\ +\x48\x8e\x61\x18\x86\x61\x6c\x95\xb3\xa9\x5b\x7c\xdc\xf3\x51\x5f\ +\x95\xd3\xf0\x94\xd3\x3e\x93\xf4\x06\xe9\x4d\xd6\x92\xe5\xf3\x35\ +\x48\x17\xb2\xde\xbe\x7e\x7c\x1a\xfd\x69\x6e\xa4\x43\x3f\x9b\x4d\ +\xaf\x9f\xcd\xca\xf7\xf4\xa7\x53\xd6\x77\x23\x59\xe5\x30\x6b\x85\ +\x2f\xcb\xe7\xfe\xf5\xe4\xfa\xb0\x1b\xa5\x6b\x18\x86\x71\x86\xd8\ +\xed\xc5\x30\x86\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\x86\x71\x01\ +\x58\xef\x61\x7a\x23\xce\xc5\xc3\x76\xbf\xcc\x7e\xfd\xd6\x4a\x73\ +\xad\x7c\xf8\xf0\x5b\xa1\x9c\xb6\x87\x7e\x67\x22\x8b\x0c\xd2\x6b\ +\x33\xf4\xa7\x3f\x08\x9f\xef\xcd\xea\xea\xf7\x79\x79\x3e\xdc\x7a\ +\x71\xc8\xa0\xfd\x5e\x46\x99\xf5\x64\xac\xc5\x20\x5d\x36\x03\xc3\ +\xf7\xeb\x55\xde\xde\xac\x1c\xc3\x30\x0c\xc3\xb8\xdc\xf1\x75\xe6\ +\xf9\xa4\x5c\x3f\x97\x19\x54\x57\x0f\x23\xec\x20\xd6\xcb\x73\x59\ +\x6e\x59\x66\x7f\x9a\x6b\xa5\xbf\x5e\x3c\x8f\x8f\xb3\x11\xfd\xf1\ +\xc8\xa0\xf4\x06\xb1\x96\x0e\xe5\xf0\xeb\xc9\x37\x0c\xc3\xb8\x00\ +\xd8\x2d\xc8\x30\x86\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\x86\x71\ +\x0e\xe0\x85\x75\x2e\xac\xd5\xfe\x0b\xb6\xff\xa1\x9d\xdb\xeb\x85\ +\x19\x44\x39\xbc\x0f\xdb\x2f\xc3\x33\x48\x96\x4f\xb7\x9f\xb5\x64\ +\x94\x59\x4b\xb7\x41\x3a\xf5\xb3\x91\xfc\x72\xbc\xb5\xe4\xf5\xeb\ +\xbe\x51\xba\x3e\xbc\x0f\xe7\xdd\x6b\x85\xdd\x0a\x83\x64\xad\xb7\ +\xed\xe5\xf7\x6f\x9f\x29\xe5\x74\xd6\xa3\x3f\x9d\xb5\xf4\x31\x0c\ +\xc3\x30\x8c\x4b\x89\xb5\xea\xb7\x8d\x60\xbc\x61\xd5\x7d\x83\x64\ +\x9d\x49\xfd\xda\x9f\x97\x41\x50\x5e\x59\x76\x7f\x3a\x5b\x95\xe1\ +\xd9\x48\xcf\x8d\xe4\x0e\x8a\xcf\x38\x65\xff\xf5\x64\x9c\x69\x7c\ +\xee\xef\x0f\x57\xa6\xbc\xaf\xdf\x5d\x66\xbd\x74\xd6\x92\x7d\x31\ +\xb0\x5e\xde\xcb\x6c\x36\x9c\x61\x18\x17\x25\x76\xf9\x1a\xc6\xf0\ +\xb0\x0e\x35\xc3\xb8\x82\xb1\x8b\xdf\x30\xce\x11\xfe\xe2\x3a\x17\ +\x56\xeb\x7a\x17\x2e\xd3\x2b\xef\xf7\xe9\xd3\x6f\x90\x2e\x83\xf4\ +\xdc\x48\xfe\x99\xb0\x56\xfa\x6b\xb1\xd5\xf0\xa4\x9c\x97\xf5\xf2\ +\x30\x0c\x36\xa3\xdb\x30\xca\xb1\xbf\x1c\xd6\xdb\xf6\xe9\x95\xb7\ +\x07\xb9\xcb\x78\xff\xb5\xf6\x0f\x62\x2b\x61\xcf\x06\xa6\x43\xce\ +\x47\x5a\x86\x61\x18\xc6\xc5\xc1\x85\xbc\xf7\x9f\xab\xfa\xcd\xe7\ +\x89\x50\x7e\xff\x36\xd9\x28\xed\x33\xd1\xad\x1c\xe7\x6c\xe2\x73\ +\xed\xf1\xdb\x65\x59\xfd\xfb\xd7\x63\xab\x7a\x94\x65\x0f\x62\x33\ +\xe9\x6d\x96\x41\x79\x1b\xc4\xa0\xfc\xf6\xc7\xf3\x61\x36\x92\x75\ +\xa1\xd9\x4c\x7e\x0d\xc3\xb8\x6c\xb0\xcb\xdd\x30\x86\x87\x75\xa8\ +\x19\xc6\x15\x8c\x5d\xfc\x86\x71\x0e\x38\x57\x0f\xa7\x5e\xee\xa0\ +\x75\x3f\x3e\xfd\xf2\xbe\x7e\x9d\x7c\xfc\x7e\x06\xc9\xf3\x0c\x0a\ +\x3f\x6c\xd6\xd3\x79\x10\xeb\xe9\x7b\xae\xd9\x6c\x79\x0c\xd2\x71\ +\xb3\x79\xf3\xe1\xfa\x65\x94\xe3\x97\xc3\x6d\x84\x97\x33\x48\xee\ +\x46\x32\xfa\xe3\xf6\xb3\x15\x3d\x0c\xc3\x30\x0c\xa3\x9f\xb3\xa9\ +\x47\xca\xf5\x19\xb9\x58\xeb\xa3\x7e\x3d\x3d\xd4\xb7\xbc\xef\x42\ +\xea\xbf\x95\xe3\xb0\x15\x9d\xb7\x22\xd7\x73\xa6\xe5\xb5\x56\x3c\ +\x8f\x0f\xdf\x1f\xae\x2c\xb7\x3f\x0d\x32\x68\xbf\x97\x45\xfa\xc3\ +\x93\xf2\x7e\xc3\x30\x8c\x0b\x84\xdd\x8a\x0c\x63\x78\x58\x87\x9a\ +\x61\x5c\xc1\xd8\xc5\x6f\x18\x97\x39\xfd\x0f\xf9\x9b\x61\xb3\x37\ +\x86\x41\x8d\x08\x67\xcb\x56\x6e\x4a\xfd\xe9\x6f\x35\x2e\xd9\x4a\ +\x9c\x41\x6c\x36\xef\xfd\xe9\x94\xd3\x5f\x4f\x86\x8f\xc7\x30\x65\ +\x19\x7e\xbb\xbc\x3e\x5b\x36\x23\x67\xa3\x34\x87\xa5\x8b\x61\x18\ +\x86\x71\xe5\x72\x39\xd6\x25\xcc\xd3\x46\x5c\x4c\x79\x2e\xeb\xbb\ +\x5e\x7d\x3f\x28\x5f\xde\xbf\xbc\xbf\xec\x77\x26\x0c\x4a\x87\x6c\ +\x24\x6f\xad\x78\x6b\xe1\xe5\xf5\xeb\x4d\xca\xfb\xfa\xd3\x1d\x14\ +\x86\xf4\x87\x33\x0c\xc3\xb8\x80\xd8\x2d\xc9\x30\x86\x87\x75\xa8\ +\x19\xc6\x15\x8c\x5d\xfc\x86\x71\x09\x31\xe8\x01\x7e\xd8\xf8\x34\ +\xca\x69\x0d\xba\x51\xf4\x87\x39\x13\xbc\x5c\x2f\xeb\x4c\x58\x2f\ +\x7d\xaf\x5f\x59\xcf\x33\x4d\xa7\x4c\xbf\xbe\xeb\xe9\x30\x88\xb2\ +\x3e\x1e\x2f\x6f\x2d\xff\x7e\xb6\xa2\xc3\xa0\xf4\x06\xb1\x56\x5a\ +\x6b\xe1\x75\xd8\x8c\xec\xcd\xe0\x65\x0d\x53\xa6\x61\x18\x86\x61\ +\xf4\xe3\xeb\xbb\xf5\xea\x9a\xfe\x3a\x71\xad\xb0\x9b\xad\xb3\xca\ +\x75\x1c\x39\x5f\xf5\xdc\x66\xf5\x2b\xd3\x9f\x77\xb2\x5e\xfe\x07\ +\xd1\x1f\xbe\x1c\xee\x4c\xf3\xde\x2f\x63\x33\x79\x5b\x4b\xbf\xb3\ +\x61\x50\x9a\x3e\x9d\x33\xcd\x9b\x61\x18\xc6\x79\xc0\x6e\x51\x86\ +\x31\x3c\xc2\x62\x6d\x18\x86\x61\x18\xc6\xc5\x08\x1f\xd2\xfb\x1b\ +\x04\x06\xf9\x0d\x62\x33\x61\xca\x78\x2b\xbb\x6c\x6d\xf7\x5b\xde\ +\xdc\xf6\x72\xd7\x5a\xaf\x45\x39\x1c\xe5\x94\x65\x9d\x09\x9b\x49\ +\x6f\x50\x5e\xca\x7e\xc4\xeb\xd2\xef\xef\x29\xef\xef\x4f\xd3\x6f\ +\x9f\x4d\x3e\xd6\x62\x2d\x9d\xca\x69\x79\x9d\x36\xd2\x63\x3d\xff\ +\xb5\xf6\xad\x85\xd7\xa9\x9c\x76\x79\x21\x7e\xbd\x55\x06\xe5\xd7\ +\x30\x0c\xc3\x30\xce\x27\xac\x8b\xca\xcb\x5a\x70\x5f\xb9\xee\xdb\ +\x88\x8d\xe4\x6d\x86\xcd\xa4\x55\xd6\xa9\x7f\x5d\x66\x33\x61\x36\ +\xca\xff\xa0\xa5\x9f\xb5\xfc\x99\x9e\x5f\x36\xa2\x5f\x46\xbf\xbc\ +\xb5\x74\x2f\x2f\xa4\x3f\x9e\xa7\x1c\x66\x2b\x94\xd3\xdd\x4c\x3e\ +\xc8\xa0\x70\xf4\xdb\x6c\x7c\xc3\x30\x0c\xc3\x30\x2e\x28\x36\x42\ +\xcd\x30\xae\x60\xec\xe2\x37\x8c\x8b\x1c\x5e\xa4\x7c\xb8\x2f\xaf\ +\x3d\xe5\xed\x33\x69\x00\xf0\x6c\x45\x46\x39\x7d\xb2\x9e\x6e\x5b\ +\xa5\x5f\xf6\x20\xfa\xd3\xd9\x0c\x5b\xd1\xc5\xe7\xc5\xd3\xbf\x3d\ +\x08\x1f\x66\x33\x61\xcf\x96\x33\x49\x83\x71\x88\x8f\x57\xd6\xf7\ +\x4c\x29\xcb\x2a\xe3\xe5\x6e\x55\x47\x4f\xbf\xae\x86\x61\x18\xc6\ +\x95\x4d\xb9\x9e\xb9\x98\xeb\x86\xb3\xa9\xfb\xce\x15\xfd\x75\xf4\ +\x99\x50\xae\xd7\xcf\x55\x1d\x3d\xac\xb2\x2b\xeb\x39\x2c\x1d\xcb\ +\x79\x5e\x4b\xae\x0f\xe3\x19\x56\xda\x86\x61\x18\x43\xc6\x6e\x4f\ +\x86\x31\x3c\xac\x43\xcd\x30\xae\x60\xec\xe2\x37\x8c\x4b\x88\x41\ +\x0f\xf2\xe5\x8b\x78\xbd\x87\xfd\x41\xf4\xdf\x00\x06\xc9\x5e\x4b\ +\x96\x8f\xbb\x96\x3e\x9b\xd5\xa1\x4c\xbf\x3e\x84\x72\xd6\xd2\x63\ +\x23\x1d\x48\x79\xdf\x5a\x72\x86\xcd\x5a\xe9\x5f\x68\xca\x7a\x6d\ +\x16\xea\x7f\x26\xe5\x76\xbe\xca\xda\x30\x0c\xc3\xb8\x3c\x29\xd7\ +\x23\x97\x42\x9d\x52\xae\x63\x2f\x06\x5d\x7d\x99\x95\xf5\x1a\x06\ +\x67\x93\xb7\x33\x3d\x8e\x9b\x89\xe7\xf3\x59\xce\xb3\x8f\x73\xa6\ +\xe9\x6e\x05\x9f\x26\x39\xd7\x69\x19\x86\x61\x9c\x21\x76\x7b\x32\ +\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xbf\x61\x5c\x46\xf4\x37\ +\x20\x6c\x86\x41\x71\xca\x7e\x74\x97\xd7\xe7\x02\x9f\xde\x7a\x0c\ +\x4a\x7b\x90\xee\x65\xca\x3a\x97\xd3\x28\x87\x3f\x17\xf9\xf2\x32\ +\xd7\x93\xdd\xaf\xcf\x66\xe2\x9c\x0d\xe5\xf4\xd6\xe3\x5c\xa4\x6d\ +\x18\x86\x61\x18\xc6\xf9\x67\xb3\x75\xff\x56\x18\x64\x27\xf8\x74\ +\x36\x63\x43\x6c\x25\xec\x56\xf1\x36\xd4\xa0\x34\xfc\x3e\xc3\x30\ +\x8c\x2b\x18\xbb\x0d\x1a\xc6\xf0\xb0\x6f\xa8\x19\x86\x61\x18\xc6\ +\xe5\x00\x2d\xe4\xad\x5a\xc9\xeb\xc5\xf1\x0d\x12\xc3\x6e\x84\xa0\ +\xbc\xf2\xb2\x11\x4c\xdb\x87\x1b\x14\x7e\xb3\x32\xd6\xca\x6b\x7f\ +\x7c\x6e\xaf\x97\xde\x46\xf8\x34\x06\xa5\xd5\x0f\xc3\x30\x8d\xf2\ +\xfa\x5c\x40\xb9\x83\x64\x7b\xbf\xb5\xf6\x6f\x95\x72\x79\xad\xe5\ +\x36\x0c\xc3\x30\x0c\xe3\xdc\xe3\xeb\xf6\xb5\xea\xfa\xb5\xfc\xb7\ +\xca\x66\xe3\x9f\x6b\x5b\x60\x50\x7e\x06\xd9\x22\x66\x93\x18\x86\ +\x61\x18\x86\x71\x96\x58\x87\x9a\x61\x18\x86\x61\x5c\x8e\x0c\xa3\ +\xc1\x60\xb3\x8d\x24\xeb\xb1\x15\x3d\x06\xa5\xd5\xdf\x00\xc2\x75\ +\xbf\xcc\x41\x7e\x5b\xd1\xbb\x2c\x7b\x18\x79\xf6\x0c\xd2\x8b\xf8\ +\x34\xca\xe9\xfa\xf5\xa0\xf0\x6b\xb1\x5e\xd8\x41\xfb\xfa\xf3\xb5\ +\x95\xb4\x36\x4b\x59\x26\xdd\xe7\x22\x0d\xc3\x30\x0c\xc3\xb8\x92\ +\xd9\x6a\xdd\x5a\xae\xff\xbd\x0d\x42\xfa\xed\x82\x41\xf8\xf0\xe5\ +\xb0\x67\x5a\xb7\xf7\xcb\x39\x1f\x78\x5d\x7d\xba\xc3\x4e\xdf\xec\ +\x1c\xc3\x30\x0c\xc3\xb8\xe2\xb0\x29\x1f\x0d\xe3\x0a\xc6\x2e\x7e\ +\xc3\xb8\x44\xe1\xc5\xbb\x99\x06\x81\xf2\x45\xce\xf0\xfd\xf1\xfa\ +\x6f\x02\x3e\x8c\x67\x2b\x8d\x0e\x3e\x9e\x8f\xd3\xbf\xdd\x4f\x7f\ +\x3a\x83\x74\xf1\x0c\x92\xdd\x1f\x67\x50\x3a\x3e\x5c\x99\x7e\xbf\ +\x8d\x64\x9c\x29\x83\xd2\x1e\x44\x39\x7d\xcf\x5a\xf1\xca\x32\xd7\ +\xd3\xdb\xef\xa3\x7f\xd9\xed\x29\xcb\x19\x36\xe7\x52\x76\x3f\xe7\ +\x33\x2d\xc3\x30\x0c\xc3\xb8\x18\x18\x54\xaf\x0f\x13\x5f\xb7\xfa\ +\x74\x88\xd5\xb5\x86\x61\x18\x97\x3c\x76\x2b\x37\x8c\xe1\x61\x1d\ +\x6a\x86\x71\x05\x63\x17\xbf\x61\x18\xab\x38\xd3\xc6\x93\xfe\xc6\ +\x97\xad\xc6\x1d\x84\x97\xb7\x91\xdc\x72\xfc\x41\x71\xc8\xa0\xed\ +\x7e\xd6\x4b\xe3\x5c\xe2\xf5\x1d\xc4\x5a\x3a\xad\x97\x97\x7e\x79\ +\xeb\x85\x35\x0c\xc3\x30\x0c\xe3\xe2\x63\x50\xdd\xed\xeb\x77\xbf\ +\xef\x5c\xd5\xe9\xfd\x69\xfb\x74\x0d\xc3\x30\x8c\x4b\x1a\xbb\x95\ +\x1b\xc6\xf0\xb0\x0e\x35\xc3\xb8\x82\xb1\x8b\xdf\x30\x8c\x97\xd0\ +\xdf\x90\xb2\x55\x36\x6a\x78\x59\x6b\xbf\xf7\x2f\xef\xef\x0f\x3b\ +\x68\xbb\x1f\x2f\x83\x94\xdd\x9e\x72\xfc\x32\xe5\x70\x6b\x85\x39\ +\x9f\x0c\xca\xc3\x66\xf4\x62\xd8\x8b\x41\x7f\xc3\x30\x0c\xc3\x30\ +\xb6\xce\x66\xed\x16\x63\x7d\xce\xa7\x3d\x64\xb6\x97\x61\x18\x97\ +\x00\x76\x9b\x32\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xbf\x61\ +\x18\x6b\x72\x21\x1a\x07\xfc\x4d\x69\xa3\x74\x07\xdd\xbc\xca\x71\ +\xca\xba\x6f\x94\x0f\xbf\x7f\xb3\x69\x1b\x86\x61\x18\x86\x61\x0c\ +\x83\xf5\x6c\x94\x8d\xec\x97\xb3\xc5\xdb\x3d\xc4\x6c\x1f\xc3\x30\ +\x8c\xcb\x1e\xbb\xd5\x1b\xc6\xf0\x08\x8b\xb5\x61\x18\x86\x61\x18\ +\x97\x23\xe5\x06\x13\xd2\xbf\xbd\x16\xe7\xcb\xe2\xf6\xfa\x94\xf5\ +\xda\x48\x47\xea\xd6\xbf\x94\x29\x6f\xf7\xef\xeb\xa7\x3f\xec\x66\ +\xcb\xe7\x72\x81\xf9\xbd\xd2\xf2\x6c\x18\x86\x61\x18\x17\x03\xeb\ +\xd9\x28\x1b\xd9\x2f\x67\x03\xeb\x7d\x2f\xff\x5c\xa6\x63\x18\x86\ +\x61\x18\x86\x71\x19\x62\x1d\x6a\x86\x61\x18\x86\x71\x39\xd3\xdf\ +\x50\x72\xb1\x35\x9c\x50\x1f\xdf\xb0\xe3\x97\x7e\xd6\xeb\xf4\x19\ +\x56\x67\x50\x39\xdd\x61\xc9\xbc\x14\xb8\x52\xf3\x6d\x18\x86\x61\ +\x18\x57\x32\xac\xf3\x07\xd9\x5c\x86\x61\x18\x86\x61\x18\xc6\xba\ +\x58\x87\x9a\x61\x18\x86\x61\x18\x17\x96\xfe\x06\x9d\x8d\xb6\xfb\ +\x19\x66\x47\x10\xd3\xba\x1c\x1b\x98\xd6\x2b\x23\x9f\xdf\xcb\x31\ +\xdf\x86\x61\x18\x86\x61\xac\x66\x2b\xb6\x8e\xbd\x6c\x33\x7c\x58\ +\xa6\xfd\xe5\x6a\xe5\x6c\x18\x86\x61\x18\x97\x0c\xd6\xa1\x66\x18\ +\x86\x61\x18\xc6\xc5\xcf\x5a\x0d\x3f\xd6\x28\xb4\x39\x36\x5b\x46\ +\x86\x61\x18\x86\x61\x18\x1e\xb3\x1f\x86\xcf\x56\x6c\x57\xc3\x30\ +\x0c\xc3\x30\x2e\x3a\xac\x43\xcd\x30\x0c\xc3\x30\x8c\xf3\xc3\x85\ +\xee\xd0\xb2\xc6\x0b\xc3\x30\x0c\xc3\x30\x0c\xe3\x62\xc3\x6c\x54\ +\xc3\x30\x0c\xc3\xb8\x64\xb0\x0e\x35\xc3\x30\x0c\xc3\x30\xce\x0f\ +\xd6\x58\x60\x18\x86\x61\x18\x86\x71\xf1\x61\x53\x0e\x1a\x86\x61\ +\x18\x86\x61\x6c\x0a\xeb\x50\x33\x0c\xc3\x30\x0c\xc3\xb8\xd8\xb0\ +\x86\x2d\xc3\x30\x0c\xc3\x30\xce\x17\xf6\xd2\x93\x61\x18\x86\x61\ +\x18\xc6\xa6\xb0\x0e\x35\xc3\x30\x0c\xc3\x30\x2e\x1e\x72\xeb\x49\ +\x52\xac\x61\xcb\x30\x0c\xc3\x30\x8c\xf3\x85\x99\x5f\x86\x61\x18\ +\x86\x61\x18\x9b\xc2\x3a\xd4\x0c\xc3\x30\x0c\xc3\x38\x4f\xb0\xb5\ +\x66\x50\x8b\x8d\xf8\x69\x47\x9a\x2c\xd6\x91\x64\x18\x86\x61\x18\ +\x86\x71\x7e\xa1\xfd\x35\xc8\x44\x33\x0c\xc3\x30\x0c\xc3\x30\x56\ +\x61\x1d\x6a\x86\x61\x18\x86\x61\x9c\x27\xd8\x5a\xe3\x7b\xcc\xca\ +\xad\x36\xde\xaf\xbc\xff\x0c\x29\x8b\x2d\xfa\xe8\x0c\xc3\x30\x0c\ +\xc3\x30\xae\x28\xce\xc4\xfe\x39\x4b\x13\xcc\x30\x0c\xc3\x30\x0c\ +\xe3\x4a\xc0\x3a\xd4\x0c\xc3\x30\x0c\xc3\x18\x02\xeb\xb5\xdc\x0c\ +\xda\xc7\x56\x9b\x92\x7f\x30\xa4\x56\x9c\xb2\x18\xba\xad\x71\xc8\ +\x30\x0c\xc3\x30\x8c\x2b\x0d\xb3\x7f\x0c\xc3\x30\x0c\xc3\x30\xce\ +\x09\xd6\xa1\x66\x18\x86\x61\x18\xc6\x10\xd8\x6c\xcb\x8d\xef\x44\ +\xe3\xfa\x4c\x5b\x7b\xd6\xeb\xbc\x1b\x40\x39\xf8\x16\xa3\x1a\x86\ +\x61\x18\x86\x61\x18\x86\x61\x18\x86\x61\x18\x06\xb1\x0e\x35\xc3\ +\x30\x0c\xc3\x30\x5e\xca\x72\xbf\xd7\x30\x7a\xa0\xfa\x3b\xce\xfa\ +\x7b\xb8\xfc\x42\x06\xed\xeb\x67\x83\x8e\xb8\xfe\x28\xe5\xe0\x67\ +\xda\x87\x67\x18\x86\x61\x18\x86\x71\x49\x31\xc8\x86\x32\x0c\xc3\ +\x30\x0c\xc3\x30\xce\x86\x20\x17\x0a\xb7\x61\x18\x57\x18\x76\xf1\ +\x1b\x86\xa1\x37\x82\xf3\xd6\xc9\xe4\x13\xdb\xc2\xdd\xc7\x07\x1d\ +\xd6\x94\x90\x86\x61\x18\x86\x61\x18\x57\x14\xe7\xd5\xd8\x33\x0c\ +\xc3\x30\x2e\x42\xac\x16\x30\x8c\xe1\x61\x23\xd4\x0c\xc3\x30\x0c\ +\xe3\x4a\xe5\x6c\xda\x57\xce\xf8\x7d\x9c\x2d\xc6\xa3\x7e\xab\x74\ +\x3c\xd3\x74\x0d\xc3\x30\x0c\xc3\x30\x2e\x37\x36\x63\x17\x59\x33\ +\xaa\x61\x18\x86\x61\x18\xc6\xb0\xb0\x0e\x35\xc3\x30\x0c\xc3\xb8\ +\x52\x61\xfb\xca\x46\xed\x30\x2f\xd9\x4f\x0f\x59\xce\xa8\x6d\x66\ +\xa3\x48\xe5\xfd\xde\xdd\x17\x67\x90\xbe\x65\xbf\x41\xfb\x0d\xc3\ +\x30\x0c\xc3\x30\x2e\x4b\xb6\x62\x90\x99\x91\x64\x18\x86\x61\x18\ +\x86\x71\xb6\x58\x87\x9a\x61\x18\x86\x61\x5c\xc9\x94\xdb\x61\xd8\ +\xce\x52\x1e\x79\x26\xce\xbc\x68\x7c\xe1\x0c\xd1\x39\x32\x09\x2e\ +\x11\x72\x46\xf2\x11\x07\x35\xce\xa8\x20\xe7\x5c\xb5\x7f\x50\xd8\ +\x32\x7e\x3f\x65\x97\xc3\x96\x94\x54\x67\x9f\x9c\xd2\xee\x65\x7c\ +\x10\xcd\xcf\x46\x8b\x61\x18\x86\x61\x18\xc6\xc5\xc6\xd9\xd8\x28\ +\x83\xe2\x0e\x32\x98\x0c\xc3\x30\x0c\xc3\x30\x8c\xad\x60\xdf\x50\ +\x33\x8c\x2b\x18\xbb\xf8\x0d\xc3\x58\x17\x35\x11\x02\x64\xb2\xd6\ +\x26\x98\x50\xdc\x59\x8a\x28\x08\x8a\xfb\x87\x76\xaf\xc9\xaa\xbf\ +\x81\xc6\xc5\x5b\xbd\xde\x2a\xe5\x78\xfd\xf2\x37\x09\xf5\x57\xdd\ +\x36\x4a\xff\x0c\xe5\x1b\x86\x61\x18\x86\x61\x9c\x77\xbc\x7d\x35\ +\x88\x33\xdd\x67\x18\x86\x61\x5c\xce\xd8\xdd\xdf\x30\x86\x87\x8d\ +\x50\x33\x0c\xc3\x30\x8c\x2b\x05\xdf\xaf\xc4\xb5\x77\x93\xb2\xbb\ +\xc0\x8d\x48\x73\x9d\x69\x61\x20\xae\x20\xc0\xb1\xa3\x27\xf1\xdc\ +\xf3\xcf\xa2\xdb\x6b\x4b\x88\xa2\x33\x4d\xe9\x17\xe0\xf7\x70\xcd\ +\x7d\x67\x62\xbe\xaf\xa5\xa0\x77\x73\xbd\xfe\xe2\xfa\xf9\xe8\x5e\ +\x1f\x37\x0a\xcf\x2f\x86\x61\x18\x86\x61\x18\x17\x2b\xde\x56\x19\ +\x64\xb7\x94\xf7\x0d\xe2\x4c\xec\x31\xc3\x30\x0c\xc3\x30\x0c\xa3\ +\x8c\x75\xa8\x19\x86\x61\x18\xc6\x95\x42\xb9\x9f\xab\x8c\xdf\xf6\ +\x6d\x33\xb2\xb8\xa9\x1d\x73\x44\x1c\x95\x96\x87\x98\x9d\x3d\x85\ +\x5f\xfb\x2f\xff\x12\x47\x5f\x7c\x0a\x71\x75\x44\xfc\x32\x17\x4f\ +\xe3\x96\x05\x96\x84\x2c\x53\x76\x6f\x86\xb2\x3c\xd2\xbf\x5d\xc8\ +\x2b\x4f\x3d\x59\x4e\xb2\x70\xfb\xcd\x32\x1c\xb4\xa6\xfb\x4a\x4b\ +\x40\x3f\x95\x53\x4e\x47\x3d\x0d\xc3\x30\x0c\xc3\x30\x86\x0c\x6d\ +\x0c\xbf\xf4\x53\xf6\x1b\xb4\x7f\x0d\x9b\x48\xf1\xb6\x8c\x0f\x33\ +\x28\xfe\x16\xf1\x22\x86\x20\xca\x30\x0c\xc3\x30\x0c\xe3\x72\xc0\ +\x3a\xd4\x0c\xc3\x30\x0c\xe3\x72\x64\xad\x86\x8f\xb2\x3f\xdd\xab\ +\xc2\x71\xac\x96\xf3\x60\x5f\x55\x18\x06\xe8\xa6\x39\x92\x14\xf8\ +\xd4\x47\xff\x00\x8d\x74\x16\x77\xbf\xf6\x2d\x08\x8b\x8e\xb6\x95\ +\xa8\xde\xb5\x4a\x98\xd0\xbf\xbd\x59\x06\xc8\x59\xee\x09\xe3\x4a\ +\x94\xe3\xa2\x3d\x61\x5c\x04\x6d\x3b\x72\x6e\x97\x87\x4c\x1c\x5c\ +\x8a\x30\x12\x3e\xe0\xc2\xbf\xc2\x1d\x72\x61\xc4\x8c\xf2\xbc\xb8\ +\x5c\xd6\x74\x78\xbc\xbb\xec\x67\x18\x86\x61\x18\x86\x31\x80\xf5\ +\xcc\x05\xb1\x2f\xf4\x8b\x1b\x0c\xa3\xe1\x68\xbc\xac\x17\xa1\xbc\ +\xbf\x1c\x4e\x8d\x9e\x12\x6b\xc9\xd8\x48\xfe\x26\xf0\x49\xf5\x27\ +\x69\x18\x86\x61\x18\x86\x71\x85\x62\x1d\x6a\x86\x61\x18\x86\x71\ +\x39\x52\x6e\xf8\x18\xd4\x16\x43\x18\xc6\xb7\xb5\x70\x09\x5c\x87\ +\x53\x96\xe5\x6a\x20\x74\xb3\x0c\x71\x1e\xe0\xc0\xbe\x87\xf1\xb1\ +\x4f\xfc\x36\x5e\xfe\xd5\xdf\x84\x5d\x93\xe3\x48\xd2\x9e\x0b\x2e\ +\xcb\x79\xc3\xeb\x59\x52\x98\x6d\x52\xd4\x97\x68\xfb\x94\x38\x33\ +\x76\x8e\x51\xfb\x2c\x92\x3d\xb2\x04\xda\x65\x06\xa4\x09\x92\xbc\ +\x85\x6e\xba\x84\x76\xc2\x65\x5e\x96\xd3\x68\xf5\x16\xd1\xcb\x4f\ +\x4b\xdc\x96\x2c\x29\x32\x76\xc4\x71\xae\x48\xca\xd3\xc5\xa5\x55\ +\x52\xc0\x30\x0c\xc3\x30\x0c\x63\x30\x6a\x74\xac\x66\xd9\x9e\x90\ +\x7d\xa1\xd8\x18\x1c\xe5\xaf\x2f\xff\xe8\x8e\x22\xd0\x2a\xbc\x27\ +\xd7\x9b\xb5\x3f\xca\x61\xfa\xe3\x1b\x86\x61\x18\x86\x61\x18\xc3\ +\x22\x10\xc3\x6e\x33\xd6\x99\x61\x18\x97\x21\x76\xf1\x1b\xc6\x65\ +\x8c\xbf\xc0\xfb\xdb\x61\xfc\xb6\x6f\x5f\x29\xdc\xfe\x8d\xe9\x40\ +\x5f\xb5\x71\xa3\xd2\x42\xf9\x3b\x79\xea\x20\x7e\xea\x1f\xbf\x13\ +\xf7\xdf\x77\x2f\x7e\xf4\x1f\xfd\x36\x2a\x79\x80\xdc\xcd\x91\x28\ +\xd1\xd6\x6a\xa4\xe9\x4f\xf4\x2c\x28\xf4\xeb\x17\x97\x07\x19\x82\ +\x4c\x94\xe5\x48\x39\xea\x2d\x61\x54\x1b\x71\x27\x59\x82\xa4\xd7\ +\x45\x16\xc8\x92\x2f\xa1\x9b\xcc\x61\xa6\x75\x02\x8b\xdd\x05\x2c\ +\xb6\x67\xd0\xe9\x2c\x20\x0f\x33\xd4\xa3\x2a\xd2\x5e\x88\xf1\xd1\ +\x3d\xd8\xbd\x6d\x37\xea\xe1\x14\x1a\xf1\x36\x11\x19\xa1\x1a\x4d\ +\x20\x8f\x22\x40\xca\x21\x88\x24\x2d\x2d\x98\xb5\xf2\x6b\x18\x86\ +\x61\x18\xc6\x15\x83\xb7\x4d\x36\x89\x7f\x39\x27\xcf\x72\x34\x5b\ +\x2d\x8c\x8d\x36\x90\x8a\x1f\xed\x0d\xe2\xbe\xf9\x5a\x16\xe8\x13\ +\xe0\xba\x9f\xb5\xfc\xcb\xf8\x30\x5e\x66\x59\x9e\xf7\x1b\x44\x39\ +\xdc\x56\xe8\x97\xb9\x51\x3a\x86\x61\x18\xc6\xf9\xc6\xee\xca\x86\ +\x31\x3c\xac\x43\xcd\x30\xae\x60\xec\xe2\x37\x8c\xcb\x94\xfe\xf6\ +\x90\x0d\xdb\x46\x5c\x04\x9a\x04\xec\x68\x0a\xf2\x10\xcd\xa5\x14\ +\xdd\xee\x0c\x7e\xfa\x27\xbe\x1e\x37\xdf\xb3\x17\xef\xf8\xe6\xf7\ +\xe2\x8e\xeb\xde\x80\x54\xfe\xa2\x30\x96\x18\xb9\xc4\x38\x8f\x66\ +\x79\x49\xff\x8c\x8d\x50\xfa\x6d\x37\x8e\x41\x03\x52\xd9\x97\x65\ +\x6d\xd1\x77\x1e\xcd\xde\x31\x1c\x6d\x1d\xc3\xc2\xe2\x21\xcc\x2f\ +\xec\x43\x3b\x99\x46\x2f\x6d\xa3\x5a\xcf\x30\x36\x52\x45\xb5\x1a\ +\x23\x8e\x73\x34\xa2\x0a\x62\x71\xa3\xc7\x7c\x47\x68\x77\x7a\x08\ +\xd2\x11\x2c\xcd\xd4\x30\x5a\xb9\x07\xb7\xdf\xf9\x72\x8c\x44\xdb\ +\x10\x45\x53\x2e\x9f\xf6\x04\x62\x18\x86\x61\x18\xc6\x46\x38\x93\ +\x4a\xd7\xde\x74\x61\x87\x59\x22\xc6\x4a\xbb\xb9\x88\xff\xfd\x7b\ +\xff\x15\xef\xf9\xde\x1f\x46\xad\xd2\x90\x00\x85\x2d\xe5\x7a\xd4\ +\x0a\x4a\x02\xce\x8a\xb2\x4c\xe2\xe5\xae\xc7\x30\xd2\xdc\x4c\x3a\ +\x86\x61\x18\xc6\xf9\xc6\xee\xcc\x86\x31\x3c\xac\x43\xcd\x30\xae\ +\x60\xec\xe2\x37\x8c\xcb\x0c\xdf\x86\x51\x5e\xaf\x87\x86\x71\x81\ +\xf9\x9b\xb3\xb3\x4c\xfe\x12\xf1\x4b\x7b\x4d\xfc\x8b\x7f\xf1\x9d\ +\xb8\xe9\x8e\x10\xa7\x8e\x44\xf8\xa9\x7f\xf6\xbb\x12\x82\xdf\x24\ +\x8b\x69\x3d\x88\x9b\xb1\xce\x93\x59\x5e\xce\x87\xff\x6e\x5a\x16\ +\xa1\x2d\xc9\x37\x9b\x8b\x58\xe8\xed\xc3\xf4\xb1\x2f\xe0\xf8\x89\ +\x47\x91\xc4\x0b\xd8\x36\x5e\xc1\xd8\x94\x84\x09\x7b\xa8\xb0\xf3\ +\x2f\x0b\x24\x67\x1d\x17\x5f\xc8\x24\x1b\xa9\xfc\x64\x0c\x22\x32\ +\xc2\x30\x14\x89\x15\x1d\x85\xd6\xa8\x6c\x43\x14\x4c\xe2\xd4\x4c\ +\x0d\x7b\x82\x57\xe3\x9a\x1b\x5e\x81\x7a\xad\x51\x94\x0f\x1b\xbe\ +\x3c\xe7\x29\xef\x86\x61\x18\x86\x61\x5c\xdc\xd0\x48\x20\xde\x34\ +\x90\x6d\x7a\xf9\x7e\x32\x4e\xa5\xdd\x6e\x77\xf1\xa1\x3f\xfd\x5d\ +\x64\x9d\x05\x7c\xfd\xb7\xfe\x6d\x34\xaa\x62\x45\x69\x00\x1f\xa9\ +\x6c\x57\x94\x05\x7a\xf7\x59\xa2\x0a\xd1\xe1\xd3\xf1\x1e\xeb\xc9\ +\x5f\xd9\xe7\x5c\x2b\xdb\xce\x14\xe4\x0f\x5f\x4c\x62\x5e\xb8\x5d\ +\x4c\xb3\x2d\xfe\x9c\x86\x7b\x05\x9f\xce\x2a\x4f\xc3\x30\x0c\xe3\ +\x3c\x62\x77\x60\xc3\x18\x1e\xd6\xa1\x66\x18\x57\x30\x76\xf1\x1b\ +\xc6\x65\x46\x7f\x5b\x85\xbf\xc8\x7d\x3b\xc6\x5a\xd0\x14\x08\x5d\ +\x90\xb4\x17\x20\xae\xe4\xf8\xf5\xdf\xfc\x49\x1c\x3a\xf6\x49\xcc\ +\x9c\xee\xe1\x1f\xfd\xe3\x5f\xc6\x55\xdb\x5e\x86\x30\x08\x25\x68\ +\xa8\x1d\x4f\xe7\xcd\x20\x2f\xe9\xcd\x0e\x3f\xea\x90\x49\xea\xcd\ +\x66\x8a\x23\xcd\xc7\x71\xe8\xc0\x9f\xa1\xd9\xfb\x32\xaa\x23\x5d\ +\x6c\xdf\x51\x91\x0c\xf0\xbb\x69\x81\x36\xf4\xb0\x33\xcd\x35\x56\ +\x41\x47\xb3\x05\xa1\x17\x96\xeb\x28\xb7\x8c\x3d\x6b\xcc\x7a\xc4\ +\x7c\x31\x5c\x00\x7e\x82\x2d\x08\x23\xec\xde\x76\x1b\xf6\x7f\x79\ +\x09\xf5\xe0\x0d\x78\xe0\xfe\x37\x4b\x9a\x9c\xf2\x31\xd7\x06\x23\ +\x27\xd1\xfd\xae\x0f\xd3\xf3\xe1\xca\x6e\xc3\x30\x0c\xc3\x30\x2e\ +\x3b\xa4\xaa\x57\x73\x62\xf9\x65\xa5\x1c\x89\x98\x1a\xb5\x28\xc0\ +\x47\x3f\xfc\xfb\xf8\xcd\xf7\xfd\x1c\xfe\xc3\x7f\xf9\x38\xc6\x1b\ +\x15\x7d\xa9\xc7\xdb\x28\x0e\x8d\x58\x5a\x0f\x83\x35\x64\x96\xbd\ +\x8a\x35\x55\xf1\x21\x74\xad\x79\x90\x1c\xe8\x06\xbf\xf9\xa6\x73\ +\x82\x23\xd4\xce\x33\xda\x59\x12\x81\x71\x05\x17\x86\x6b\xda\x49\ +\x85\x27\xed\x4a\xf1\xa7\xed\xc5\xdd\x85\xaf\xb0\xe2\x32\x0c\xc3\ +\x30\xce\x1f\x76\xf7\x35\x8c\xe1\xe1\xac\x22\xc3\x30\x0c\xc3\x30\ +\x2e\x3f\x68\x35\x73\x29\x1a\x3a\x96\x51\x6b\x9a\x9e\xc5\x88\xab\ +\x90\x6b\x76\x53\x65\x40\x05\xf8\xe4\x23\xff\x1b\x5f\x7a\xfc\xff\ +\xa0\xd5\x4a\x71\xeb\x4d\x77\x63\xef\xf6\xd7\x20\x0a\xa2\xa2\x31\ +\xe5\x1c\x99\xe2\xfd\x3a\xbe\x04\x09\x90\xbb\xc6\xa9\x34\xeb\xe1\ +\xd8\xcc\x17\xf1\xe2\x73\xbf\x81\x5a\xe3\x11\x5c\x77\xe3\x22\xae\ +\xda\x95\xa0\x12\x76\x50\x8b\x22\x54\x82\x50\xb2\xe4\x3a\xff\x34\ +\x87\xb2\xad\x43\xd1\xa8\x7f\xc0\x37\xa9\xd9\x29\x18\x69\x9e\xd8\ +\xee\x93\xa6\x3d\xf1\x4f\x24\x58\x0a\x7e\x36\x2d\x8e\x2a\x58\x4c\ +\xf6\xa1\xb7\x73\x06\xc8\x8e\xa0\x9d\xb4\x9d\x7e\xda\x48\xb4\xa1\ +\xa2\x05\x1a\xc1\x39\x95\xb2\xbb\x9f\xcd\xca\x34\x0c\xc3\x30\x0c\ +\xe3\xbc\x53\xae\xa6\xd7\xab\xb2\x59\xd5\xb3\xa7\x4c\x1c\xb4\x57\ +\xd8\xb9\xc4\x0e\xa8\x43\xc7\x0f\xe3\x3f\xff\xf2\x3f\xc6\x77\x7c\ +\xe7\x3f\x44\x58\x0f\xf5\x85\x1e\x9a\x14\xae\xab\xa9\x9f\x61\xda\ +\x04\x5e\x96\xd3\x69\xa0\x2d\x22\xbb\xf8\x6d\x5c\xbe\x68\xa4\x3d\ +\x60\xf2\xcf\xd7\xa6\x44\x73\xf9\x13\x5b\x29\xa4\xbd\x54\x41\x2c\ +\x6b\x2e\x61\x94\x49\xf8\x04\x09\x5a\xe8\xe6\x4d\x74\xb1\x84\x24\ +\x9c\x47\x1a\xb5\x90\xc7\x73\xc8\xa3\x05\x40\xdc\x41\xd0\x15\xe1\ +\x99\x8e\xce\xa3\x79\xe9\x3a\xe5\x88\xfb\x35\x0c\xc3\x30\x0c\xc3\ +\xb8\x54\xb1\x11\x6a\x86\x71\x05\x63\x17\xbf\x61\x5c\x26\xf0\x62\ +\x66\x1b\x89\xbf\xa8\xcb\xed\x25\x03\x2f\xf4\x22\x02\x4d\x00\xbe\ +\x41\x8c\x14\x59\xc2\x6f\x8b\x01\xcf\x1e\xfb\x0c\x7e\xfe\xe7\xbe\ +\x07\x3b\xf7\x6c\x43\xd6\x0b\xf0\xde\x1f\xff\x45\x6c\x6b\xdc\x87\ +\x20\xa8\xca\x12\xb9\x28\xda\xb1\x74\x9e\x50\xfd\x5d\x26\xf2\x34\ +\x40\x16\xa5\x98\x39\xf5\x1c\x5e\x38\xfa\xbf\x90\x8f\x3e\x8b\xa8\ +\x91\x22\x66\x07\x1a\x6a\x40\x12\x01\x6c\xe8\xc9\xd8\x44\xe5\x1a\ +\x7e\xf8\x7d\xb5\x20\x67\x23\x8e\xfc\x89\xda\xee\xcd\x69\xca\x73\ +\x32\xb9\x66\x43\x92\xcb\x12\x03\x88\x0c\x89\x97\xe5\x11\x7a\x51\ +\x82\xd6\x0b\xb7\xe0\x81\xfb\xbe\x13\xa3\xf5\x5d\x12\x34\xd0\x7e\ +\x39\x0d\xba\xaa\x90\x37\x0b\xd3\xec\x8f\x37\xc8\xcf\x30\x0c\xc3\ +\x30\x8c\x8b\x86\x72\x55\xed\xcd\x87\x81\xb8\x80\xa9\xd8\x21\x7c\ +\x41\x87\x9d\x54\x8b\xed\x16\xfe\xf1\xdf\xfd\x7a\x5c\x77\xeb\x76\ +\xfc\xe8\x8f\xfd\x57\x6c\x1f\x9b\x72\xfd\x4b\x1a\x72\xe5\xf7\x9c\ +\x43\x23\x68\x39\x23\xb2\x16\xc3\x67\x79\x44\x19\x37\xb9\x8b\xef\ +\x4d\xe5\x09\xb2\x2c\x41\x37\xe9\x22\x49\xc5\x9d\xf7\x74\xc9\xf3\ +\x26\x9a\x41\x13\x9d\x64\x01\xf3\xc9\x2c\x92\x7c\x09\xdd\x6e\x5b\ +\x6c\xc5\x16\xea\xd5\x18\x95\xb0\x26\x76\x64\x1d\x23\x51\x43\xd6\ +\x31\x6a\xc1\x04\xea\xf1\x4e\x34\xaa\x7b\xc5\x1e\x6b\x88\x0c\xbe\ +\xcc\x54\xce\xed\x8a\xcb\x30\x0c\xc3\x38\xf7\xd8\x5d\xd7\x30\x86\ +\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\x86\x71\x09\xe3\x2f\x60\x5a\ +\xc6\xfd\xee\xfe\x75\x1f\x2b\xbb\xd9\x99\x94\xca\x3a\x04\xd2\x10\ +\xfb\x4e\x3d\x8c\x9f\xf9\xd7\x7f\x0d\xa3\x7b\xc6\x30\x5a\xcb\x71\ +\xdf\x2d\xaf\xc5\x5f\x7f\xf7\x2f\x23\x61\x98\x9c\xdf\x18\x93\x98\ +\x12\x71\x79\x3a\x9f\x73\x49\x49\x7f\xea\x99\x05\x19\x82\x24\x44\ +\x26\xaa\x7e\xfe\x91\x5f\x45\x38\xf9\x02\xb2\xd1\x23\x08\x83\x08\ +\x61\x5a\x95\x30\x01\x22\x86\x4f\x24\x2c\x38\xf2\xcc\xbd\x5f\xcd\ +\xd8\x61\xe0\xc6\xd6\xb1\x5b\x2d\x63\xe7\x99\xac\x5d\xb1\xb0\x49\ +\x8b\x2e\xb7\x8e\xf8\x86\x76\x18\x20\x91\xf8\x73\x8b\x1d\x24\x95\ +\x1c\x0b\x4f\xec\xc2\xab\x5f\xfd\x77\x71\xdd\x8e\x9b\x34\x14\xe3\ +\xae\xe4\x7e\xb3\xe5\xe0\x52\x73\x6c\x36\x8e\x61\x18\x86\x61\x18\ +\x17\x1d\xe5\x2a\x9d\xb0\x5a\x57\x3f\xfe\x88\x95\x20\xdb\xb4\x15\ +\x7a\x3d\x20\xac\x04\xf8\xb5\x5f\xfe\x29\x3c\x7f\xf8\xd3\x62\x57\ +\x5d\x8b\x9f\xfe\xe9\xdf\x40\xca\xe9\xab\x39\x1d\x80\x76\x66\x31\ +\xde\x39\xb4\x0b\x9c\x4a\xee\x47\x9b\x7d\x54\x39\x71\xa7\xa2\xa7\ +\x1b\x85\x46\xdf\x3c\x4d\xd1\x49\xdb\xe8\x76\x5b\xe8\xf6\x4e\xe1\ +\xe8\xcc\x3e\x9c\x98\xdf\x8f\xa5\x85\x69\xb4\x7a\x27\xd1\x4b\x96\ +\xc4\x06\x6a\x22\x88\x32\x84\xd5\x2e\x1a\x31\x50\xa9\x45\xa8\x4a\ +\x6c\x5a\x5b\x9c\xe3\x20\xa2\xfc\xa0\xa1\xf6\x62\xb5\x3a\x22\x96\ +\xd4\x76\xc9\xf3\x8d\xb8\xfd\xda\xd7\xa3\x3e\xb2\x17\x61\xde\xd0\ +\x70\x01\xed\x39\xf9\x2b\x14\x33\x0c\xc3\x30\xce\x13\x76\xd7\x35\ +\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xbf\x61\x5c\xe2\x14\x6d\ +\x23\x2f\xb9\x98\x07\xf9\x95\xf0\xc6\x74\x96\x73\xca\x21\xf7\xc6\ +\xf0\xc9\xd9\xc3\xf8\xe9\x7f\xf7\xcd\x68\x8c\x9e\x44\xa3\x32\x89\ +\x91\xfa\x38\xde\xf5\x4d\x3f\x8e\xbb\xf7\xbc\x03\x49\x1e\x22\x0c\ +\x2a\x88\xb4\xe5\xc7\xc7\x3e\x0f\x2c\xe7\xa1\xe8\x00\x4b\x72\xf4\ +\xb2\x16\x3e\xfd\xfc\x2f\x21\x9e\x38\x8e\xfa\x68\x53\xfc\xaa\x88\ +\xa3\x14\x69\x8f\x5f\x39\x8b\x90\xa7\xb9\xe8\x4a\x7d\xc5\x9d\x89\ +\x3b\x92\xd8\x3a\xfd\x92\x68\xae\x53\x5b\x16\x6b\x36\x26\x15\x7f\ +\x89\xec\xe7\x56\x96\xb4\xd1\xca\x7a\x98\x69\xc6\x68\x2f\xa5\x68\ +\x2e\xce\x23\x59\xd8\x8d\xb7\xdc\xf7\xa3\xb8\xfd\x86\xd7\x4a\x18\ +\xe6\xbe\xdc\xa1\x46\xb6\x52\x1e\xd4\xe3\x3c\x96\x9f\x61\x18\x86\ +\x61\x18\x67\x8f\xb7\x47\x58\x85\x0f\x72\xfb\xfa\x9d\x4d\x2b\x62\ +\x63\x88\xb9\xa2\x2f\x01\x3d\x7b\xe0\x0b\xf8\xd9\x9f\xff\x36\x4c\ +\x8c\x5d\x8d\x1f\xfd\x5b\xff\x0f\xee\xba\xed\x35\x62\x7b\xb9\x97\ +\x7e\x18\xe5\xbc\xbc\xa0\x44\x96\xf5\x14\x34\xc9\x00\x5d\x31\x6a\ +\xba\x69\x1b\x8b\x73\x47\x71\xb2\xfb\x1c\x8e\x9c\xfc\x32\xa6\x9b\ +\x07\xc4\x8e\x9a\x41\xad\xd2\xc5\xd4\x58\x15\xf5\x91\x10\x95\x4a\ +\x86\x7a\x94\x23\xe6\xcb\x49\x1c\xc4\x4f\x6b\x48\xf2\x99\x67\x99\ +\x76\x90\xd1\x96\xcc\xb3\x40\xf2\x1c\x20\x15\xff\x76\x3b\x43\x25\ +\xae\xa3\x1a\x4c\xa0\xd3\xac\x61\xb4\x7a\x37\xee\xb9\xe5\x5b\x25\ +\x62\x5d\xe2\xc5\x9a\x3e\x5f\x72\x2a\x14\x31\x0c\xc3\x30\xce\x13\ +\x76\xd7\x35\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xbf\x61\x5c\ +\xe2\x0c\xba\x88\x69\x29\xaf\x71\x71\x17\x6d\x28\x8a\xab\xfd\xf9\ +\x76\x74\x80\xf9\xc5\x59\xfc\xf3\xdf\xf9\x7e\xcc\xce\x7f\x16\x53\ +\xf9\x18\x6e\xdf\xbb\x17\xdd\xb4\x82\xef\xfc\xf6\x5f\xc1\xee\xda\ +\xb5\x48\xf4\xfd\x63\x36\x80\xb8\x26\x90\xf3\xc6\x72\x3e\xc4\x91\ +\xb1\xe3\x2f\xc7\xf3\x87\x1e\xc1\xa1\xf4\x0f\x81\xb1\x83\xa8\x87\ +\x23\x88\x45\x31\x7e\xdd\x4d\x0c\x1a\xed\x18\xcc\xd2\x4c\x82\xf3\ +\xdd\xe7\x00\x61\xc8\x29\x2a\xd9\xf0\x13\xe8\x3a\x0f\xd9\xe9\x06\ +\xa4\x92\xa3\x2c\xeb\xa1\x2b\x41\x5b\x9d\x1c\xbd\x04\xea\xee\xa4\ +\x39\xe6\x16\x32\xcc\xcf\x2f\x02\x89\x78\x44\x19\x26\xb3\xed\xb8\ +\xeb\xce\xef\xc0\xeb\x6e\xf8\xfa\xa2\x43\x8d\x4b\x7f\x01\x17\x85\ +\xba\x0a\x86\xd9\x8a\xbf\x61\x18\x86\x61\x18\x17\x35\xbe\xfa\x67\ +\x35\xee\xab\x73\x35\xa8\xc4\x21\xff\xce\xe6\x88\xc4\xfe\x00\x4e\ +\xcd\x1e\xc5\x0f\xfc\xad\x57\xe3\x81\x57\xde\x8c\x53\x07\x13\xfc\ +\xc7\x5f\xfa\x84\x4e\x9d\x88\xa0\x2a\xe1\x19\x8f\xa3\xb5\xfa\xed\ +\x01\x2f\x78\x88\x2c\x9b\x1d\xde\xe1\xa6\xa4\x9c\x99\x9d\xc1\x73\ +\x07\x3f\x8c\xe9\xb9\x07\x11\x56\x4f\x63\x6c\xa2\x87\x6d\x23\x29\ +\xaa\x63\xb1\x7e\x37\x8d\xb6\x12\x92\x58\x42\x4b\x9c\x30\x97\xbc\ +\x71\x0e\x4b\x67\x09\xb1\x3f\x10\xda\x91\x26\xab\x42\x2c\xa7\xb7\ +\xd4\x57\x95\x38\x95\x40\x40\x97\xd8\x61\xb5\x49\xb4\xa6\xb7\x61\ +\xcf\xf6\x6f\xc4\x35\x3b\x5f\xa3\x7e\x4e\x03\xb7\x38\x56\x5c\x86\ +\x61\x18\xc6\xb9\xc3\xee\xb6\x86\x31\x3c\xce\x73\xcb\x98\x61\x18\ +\x86\x61\x18\x43\xa5\xdf\x32\xde\xa8\x1d\x46\xf6\xbb\xc6\x0f\x4e\ +\x8d\x18\x60\x61\x76\x11\xff\xe1\xf7\x7e\x02\x73\xcd\xcf\x62\xbc\ +\x52\xc5\x8e\x89\x1a\xd2\x6a\x05\x57\x5d\x7b\x2f\x76\xd7\x6e\x2a\ +\x1a\x3f\xd8\xa1\xb6\x96\xc9\x70\x8e\x4c\xf3\x72\x3e\x24\x09\x4e\ +\xd7\xc8\xc6\xa7\xe3\x73\xfb\xb1\xb0\xc8\xef\x79\xd4\xd0\xc9\x33\ +\x24\x51\x00\x7e\xf6\x9e\xd3\x52\x76\x93\x96\xf8\xf5\xd0\x4a\x5b\ +\x58\xe8\x74\x30\x3d\xdf\xc2\xe1\x53\x3d\xec\x9b\x6e\x61\xdf\x89\ +\x0e\x5e\x38\xdc\xc6\xd3\x07\xe7\xf0\x85\xa7\xe6\xf0\xa9\xa7\x72\ +\x7c\xfa\xe9\x00\x0f\x3f\x95\xe1\xc9\xe7\x3b\x78\xf6\x60\x07\xa7\ +\xa6\x45\x46\xa7\x87\x46\xad\x81\x5a\xbd\x81\xb1\x5a\x8c\x4e\xda\ +\x43\xd2\x9c\xf3\x6a\xac\xc1\x46\x85\x4e\x18\x46\x0b\x5e\xb7\x0c\ +\xc3\x30\x0c\xc3\xb8\x08\x18\x54\x85\x97\xfd\xbc\xdb\xaf\x59\x8d\ +\x2f\xfb\xd1\x21\x1e\xba\xce\x75\x1a\xc5\x44\x8c\x92\x85\xc5\x79\ +\xfc\xfb\x5f\xfc\x6e\xdc\x71\xe7\x6e\x1c\x3f\x36\x83\x6f\xff\xc1\ +\x1f\x45\x9a\x35\xd1\xcb\x38\x2e\xbe\x88\xf3\x12\x73\xa0\x2c\x78\ +\x48\x14\x49\xe9\x3a\x17\x3b\x2e\xe3\x88\x32\x60\x6e\xfe\x24\xf6\ +\x1d\xf9\x73\xb1\xa1\x1e\xc4\xee\x5b\x5b\xb8\xe5\x0e\x60\xf7\x55\ +\x19\xe2\x49\xb1\xb6\x82\xb6\x76\x9c\x85\x49\x4d\x4c\xc5\x10\x19\ +\x3b\xc8\x92\x0a\xcd\x46\x21\x52\xdb\x91\xef\x2e\x25\x99\xb8\x03\ +\x2e\x1c\x99\xc6\x44\x38\xf5\x76\x84\x38\xe2\x88\xff\x1c\xdd\x76\ +\x2a\xf6\xd3\x22\xd2\x68\x06\xb3\xad\x7d\xfa\xe2\x93\x96\x91\xca\ +\x29\xf3\x12\x0f\xc3\x30\x0c\xc3\x30\x8c\x8b\x1a\x1b\xa1\x66\x18\ +\x57\x30\x76\xf1\x1b\xc6\x25\x0c\x2f\x60\xdf\x18\xe3\xdd\x6b\x5e\ +\xd4\x6e\x87\x36\x86\x68\x9b\x47\x8e\x2c\x13\x47\x2f\xc3\xcf\xbc\ +\xef\x9f\xe1\xcb\xa7\xde\x87\xdb\x76\x4e\x22\x88\x02\x54\xe2\x00\ +\x51\xb4\x0d\xdf\xf9\xce\x5f\xc0\xb5\x63\xf7\x20\x45\x05\xa1\xbe\ +\x41\xed\xdf\x2b\x2e\x28\xa7\x7f\x2e\x10\xf9\x2e\x55\x41\xf4\xcd\ +\x93\x00\xa1\xe8\xf6\xb1\x2f\xbd\x1f\x07\x3a\x1f\x43\x65\x7c\x1e\ +\x61\x35\xc6\x98\xf8\x2d\x2d\x65\x68\x76\x16\x30\x37\xdf\x41\xd2\ +\x95\xb0\x59\x03\x49\x56\xc1\xe2\x52\x80\x85\x66\x17\x09\x3f\x64\ +\x22\xf9\x08\x32\x8e\x62\x0b\x91\x45\x31\x6a\xa3\x15\xec\x6c\xe4\ +\xa8\x8d\xa4\x88\x23\xa0\x56\xcd\x50\x09\x25\x3d\x36\x1c\x89\x69\ +\xd4\xed\x75\x90\xa6\x09\xe2\xa4\x81\x9b\xae\xf9\x2a\xbc\xfd\x65\ +\x7f\x6b\x0b\x23\xd4\xfc\xfe\xb2\x7f\x39\xce\xb9\x2c\x38\xc3\x30\ +\x0c\xc3\x30\xce\x08\x56\xd5\xbe\x8a\xf6\xee\xfe\x2a\x9f\xa8\xbf\ +\xb3\x8b\x5c\x17\x19\xa7\x9b\xe6\x37\x58\x33\xb1\x1f\x32\xfc\x97\ +\xff\xf6\xf7\xf0\xcc\x97\xff\x04\x51\x38\x86\xb1\xf1\x3a\x7e\xe6\ +\x5f\x7d\x58\x42\x4e\x6a\x1c\x0e\xef\x62\xbc\x55\x36\xd5\x32\x6b\ +\x25\xb8\x49\x7c\xd4\x3e\xd1\xb4\xff\xd8\xe7\x95\xf7\xc4\x96\xaa\ +\x00\x5f\x7e\xf1\xd3\x88\x47\x1e\x41\x65\x6a\x1f\x3a\x38\x25\x7a\ +\xf7\x10\xf4\xc4\x3e\xea\x71\xcc\x7f\x86\x6a\x1a\x22\x12\x9b\x89\ +\xd6\x13\xf3\x16\xb3\x63\x4d\xdc\x7c\xb5\x8a\x63\xcf\xe8\xbb\x9c\ +\x84\x36\x27\x49\x28\x96\x87\x78\x72\xda\x47\x0e\x64\xe3\xf4\x90\ +\xdd\xbc\x87\x66\xb3\x2a\xf6\xd7\xfd\x78\xf9\x0d\x7f\x07\x95\x4a\ +\x4d\x94\x71\xdf\xbc\x5d\xad\xe2\xea\x2d\xc3\x30\x0c\x63\xf8\xd8\ +\x9d\xd6\x30\x86\x07\x6d\x22\xc3\x30\x0c\xc3\x30\x2e\x35\xbc\x45\ +\xec\x1b\x4f\xfc\xba\x1f\x0d\x17\x68\x63\x0a\xdf\x4a\x46\xc0\x26\ +\x91\x00\x61\x12\xe0\x0f\x3e\xfa\x3e\x3c\x3e\xfd\xeb\xb8\xfb\xd6\ +\x6b\x10\x8c\xc5\xa8\x8f\x4c\xa1\x32\x3a\x86\x91\x6d\xd7\xe1\xba\ +\xf1\xbb\x24\x98\xfb\x0e\x19\x45\x04\xfa\xf6\x71\x81\xca\xa1\xa3\ +\xe4\x37\x4c\x06\xe4\x45\xfb\xf4\x84\xd9\x85\x13\x58\x68\x9e\xc6\ +\xb3\x2f\x1c\xc7\x43\x9f\x7d\x16\x7f\xf9\x99\xe7\xf1\x99\xcf\x9d\ +\xc0\x67\xbf\xd8\xc4\xd3\xcf\x71\x4a\x48\x60\xff\x91\x04\x07\x8e\ +\x77\x31\xbd\xd4\x42\x92\x74\xd0\x95\xbf\x24\x5f\x42\x1a\xb6\xc4\ +\xb5\x88\x3c\x6d\x22\xee\xb5\x44\x68\x8a\x28\x65\x2e\x52\x64\x09\ +\x90\xa6\xa1\x36\x38\x31\x5b\xd5\xb8\xa2\x79\xaf\xc5\x0d\x2c\x2e\ +\x8f\x50\x5b\xab\x90\xe9\x5f\x5e\xfa\xf1\x7e\xe7\xa8\xbc\x0c\xc3\ +\x30\x0c\xc3\x38\x7b\x06\x55\xd3\x83\xfc\xb4\x5a\xe7\x0e\xd7\xa9\ +\x46\x23\x25\xe9\x05\x88\x11\xe1\xcf\xff\xea\x57\xf1\xe8\x0b\xff\ +\x13\x3d\x76\x3d\x55\x9a\xb8\xfb\xfe\xd7\x22\xca\xb6\x4b\x28\x1a\ +\x1c\xbe\xf9\x65\x2d\x7b\x60\x90\x0d\xb1\x05\x28\xb6\x5f\xb4\x8a\ +\xe4\x0f\xed\x3f\xae\x73\x34\x1a\x4d\xd4\x76\x76\xc5\xd8\xc9\x90\ +\x05\x63\xc8\x7b\xdb\xd0\xcb\x1a\xe0\x1b\x46\xb9\xe4\xa2\x23\xbf\ +\x2d\xbe\x5f\x24\xfa\x72\xd4\x19\xdf\xc1\xe2\xb4\xdb\xb9\xd8\x90\ +\xa1\x2c\x51\xe8\xbe\xa7\x56\x91\x25\x8e\x73\x59\x67\xa8\x55\xc4\ +\x5f\x8c\xaa\x98\xfb\xc5\xbe\xe2\x8b\x5b\x79\x56\x41\x6d\xa4\x8b\ +\x99\xb9\x93\x98\x9d\x3f\xa9\x3a\xb0\xff\xcd\x75\x41\x9e\x65\x5e\ +\x0d\xc3\x30\x0c\xc3\x30\x2e\x10\xd6\xa1\x66\x18\x86\x61\x18\x97\ +\x22\xae\x4d\x64\xed\x36\x19\x41\x3b\xa1\x24\x8c\x76\x04\xc9\x46\ +\x18\xf1\x7b\x17\x21\xf2\x4e\x80\x8f\x3f\xf2\x31\xbc\xef\x89\x7f\ +\x81\xbb\x6e\xde\xa1\xdf\x16\x4b\x93\x18\x79\x85\xdf\x11\x03\xde\ +\x7c\xf7\xf7\x68\x83\x47\x2a\x31\x7d\x47\xd6\xaa\x74\x0a\xb9\xc5\ +\xcf\x70\x28\x8b\x5a\x95\x66\xe9\x2d\x68\x71\x2f\x34\x4f\x21\xc9\ +\x7a\xa8\x57\xab\xd8\xb6\x7d\x27\x26\xab\x13\x98\x9c\x08\xb1\x7d\ +\x02\x18\x1f\xcd\x31\x51\x8f\xd1\xa8\x47\x68\x44\x39\x2a\x39\x1b\ +\x74\x72\x44\x59\x84\x90\x9d\x83\xec\x2d\x63\x03\x4f\x9e\x60\xa9\ +\xdd\x45\xda\x73\x0d\x43\xec\x6c\x74\xed\x4c\xe2\x70\xbd\x8e\xa8\ +\x8a\xfc\x5a\xa5\x26\x65\x93\x60\x61\xc9\x75\xa8\x65\x99\x6f\x8c\ +\x1a\xc4\x8a\x96\x2b\x30\x6c\x7f\xf8\x41\xe1\x0c\xc3\x30\x0c\xc3\ +\xb8\x68\x70\xa6\xc0\x4a\x35\xee\xab\x6e\xae\x65\x29\x56\xf2\xc3\ +\x0d\x9d\x04\x11\x71\x0c\x3c\x7f\xe8\xaf\xf0\xdf\xff\xe8\x9f\xa1\ +\x56\xdd\x89\x6a\xa3\x82\x54\x6c\x91\x77\xbc\xed\x87\x25\xa0\xd8\ +\x1c\x70\xdf\x23\xe3\x0b\x4a\x6b\xbf\xa0\x73\x96\x0c\x12\xab\x8a\ +\x92\x1c\x62\x01\x8a\xb9\xd3\x45\x16\x2d\xa1\xd3\xeb\xa2\x9d\xb4\ +\x11\x49\x80\x6a\x25\x45\x4d\x74\x0d\xc5\x20\xaa\x46\x29\xc6\x1a\ +\x21\xea\xb5\x40\xf2\x94\x21\x62\x87\x59\x2d\x44\x5c\x17\x7b\xac\ +\x26\x76\x55\xb5\x83\xb4\x22\x4b\xd4\x46\x2b\x6c\x63\x09\x3d\xcc\ +\x07\x29\x66\x93\x14\xad\x34\x17\xe9\x3d\x24\x68\x8a\x7f\x0b\xf3\ +\x0b\xb2\x2c\x8a\xcd\xd5\x3b\x8a\x23\x27\x0f\x41\x12\x10\x3d\x96\ +\x4b\xaf\xa0\xec\x36\x0c\xc3\x30\x0c\xc3\xb8\xf8\xb1\x0e\x35\xc3\ +\x30\x0c\xc3\xb8\x14\xf1\xed\x11\xeb\xb4\xc9\xb0\x7f\x88\x01\xf4\ +\x6d\x60\xbe\x59\xcc\x75\x12\xe0\xb3\x9f\xff\x34\x7e\xe9\x8f\xfe\ +\x16\x5e\x71\xe7\x6e\x74\x83\x71\xf4\xc4\xbf\x3a\x56\x41\x86\x36\ +\x46\x6a\xd7\xe2\xf6\xeb\x5e\x26\xb2\xab\x62\x24\x44\x12\x9f\xaf\ +\x28\x53\x4e\x1f\xe7\xb2\xfd\xc3\xa7\xb7\x9c\xae\x7f\x8f\x39\x41\ +\x7d\x24\x44\x85\xaf\x45\x4b\x66\x7a\xfc\xc6\x07\x5f\x8f\x46\x8c\ +\x7a\x3c\x82\x7a\xa5\x8e\x6a\x25\x46\x2d\x96\xdd\xb2\xaf\xdb\x4d\ +\xb4\x13\x4c\x67\xb7\xce\xc4\x2f\x95\x35\xff\xe9\x97\xe5\x3a\xa5\ +\x23\x1b\xb5\x74\xf4\x1e\x3b\xcb\xb4\x91\x8b\x53\x31\x09\x12\x27\ +\x93\xbf\x38\x8a\x30\xbb\xc8\xb7\xaa\x05\x06\x94\x7f\xf7\xa3\x8e\ +\xb3\x64\x18\x32\x0c\xc3\x30\x0c\xc3\x18\x2a\xfd\xf6\x95\x77\xf7\ +\x55\xff\x79\x2e\x96\x82\xda\x0e\x31\xf6\x1f\x7c\x12\x3f\xfd\xab\ +\x3f\x84\xd1\x6d\x0d\x8c\x8c\x46\x98\xda\xb5\x1d\xbb\x77\xdf\x88\ +\xdd\xe3\x2f\x47\x10\x8a\x61\xc2\x77\x72\x84\x40\xdf\x54\x1a\xb2\ +\x11\x35\x48\x57\x4f\x59\x5f\xb6\xfe\xa4\x29\x8e\xce\xcd\xe0\xe4\ +\xcc\x12\x8e\x9c\x5e\xc2\xf4\xfc\x1c\x16\x7b\x8b\x68\xe7\x09\xda\ +\x09\x47\xef\x2f\xa1\xd5\x9d\x17\x1b\x6b\x49\xac\xc2\x26\x4e\x75\ +\xdb\x38\x3c\xb7\x84\x17\x4e\xb6\xf1\xec\x09\x59\x8e\xa6\x78\xe2\ +\x40\x07\x8f\xec\x6b\xe3\xa1\x17\xdb\xf8\xec\x0b\x19\x3e\xfb\xa2\ +\xd8\x96\xfb\x42\x3c\xb4\x2f\xc6\xa3\xc7\x2a\x78\xea\x64\x80\x13\ +\xa7\x9b\x38\xb9\x90\x62\xbe\xd5\xc6\x62\xb7\x83\xf9\xa5\x23\xda\ +\xa5\xc8\x7f\x9a\x65\x2b\xf4\x2b\x6c\x18\x86\x61\x18\x86\x71\x71\ +\x63\xdf\x50\x33\x8c\x2b\x18\xbb\xf8\x0d\xe3\x32\x61\xe0\xc5\xec\ +\xa6\x21\xd2\x6a\x5e\x1b\x2f\x72\x84\x61\x88\x2f\x7f\xf9\x39\xfc\ +\x93\xdf\xfc\x0e\xbc\xfc\x75\x29\xc2\x5a\x80\x64\xa9\x8a\xa8\x96\ +\xa3\x12\x44\x58\x5a\x4a\xf1\xaa\x5b\xbf\x15\x6f\xbb\xf7\xbb\x50\ +\xad\xec\xd2\x0e\xb5\x20\x83\xc4\x5b\xeb\x7e\xc1\x06\xa1\x73\x70\ +\x27\xa1\x48\x6d\x73\x71\x1d\x69\xfa\x26\x77\x2e\xbf\xe2\xf7\x5b\ +\x7f\xf6\x93\x58\xaa\xee\xc7\x7c\x67\x11\x79\xaf\x82\x1e\x3b\xc7\ +\xba\x01\xe2\x4a\x0d\x9d\x6e\xaa\x03\xcc\x72\xd1\x79\x71\xb1\x87\ +\x6e\x92\x48\x64\x7e\x80\x9f\x52\x5c\x87\xa2\xbe\x4c\xce\x4e\xb3\ +\x20\xc6\x8e\x89\x08\xbb\x76\xc4\x5a\x2e\x8c\x18\x55\xf8\x2d\x35\ +\xf9\x09\x58\x76\x39\x92\xb4\x8b\xb8\x57\xc5\xd1\x53\x01\x7e\xea\ +\x3d\xbf\x85\x5e\xca\x69\x8e\xa4\x4c\xd8\xb1\xa6\x30\xff\x9e\xad\ +\x94\x85\x0f\x5b\x8e\x6f\x18\x86\x61\x18\xc6\x45\xc3\x9a\x55\xba\ +\xec\x28\xaa\xf0\x40\x8c\x24\xb1\x1e\x70\xfa\xf8\x09\xfc\xf0\xbf\ +\xff\x7a\xec\xda\xdd\x44\xb0\x74\x1a\x53\x53\x7b\x51\xab\xc4\x78\ +\xc7\x37\xfe\x04\x5e\xb1\xe7\xed\x88\xf2\xaa\x84\x13\xeb\x83\xf6\ +\x86\x8f\xbc\x8a\xad\xd8\x10\x6b\x50\x8e\xde\x27\x3e\x10\x03\x28\ +\x0f\x52\x20\x15\xcb\x30\x4b\xf0\xfe\x2f\xfc\x22\x66\xa3\x67\xc4\ +\xee\x3b\x88\xe9\xf6\x22\x46\xab\x55\x34\xe2\x31\x54\xc5\x16\x8c\ +\x2b\x39\x4e\x4c\xb7\x91\xf2\xc5\xa4\x34\x46\xbb\x13\xa0\x9d\x54\ +\x90\x27\x21\x12\xbe\x81\x05\xbe\xb5\x24\xb6\x50\x14\x89\xe0\x58\ +\xc2\x47\x18\xad\x47\xd8\x5e\x4d\x50\x1d\x4b\xd1\xa8\xa6\xa8\xf3\ +\x25\xae\xac\x8d\xb0\x1a\xa0\x2e\x76\x53\xbb\x1d\x62\x67\xf5\xab\ +\xf0\xce\xaf\xf8\x61\xb1\xdb\x22\xb5\x2b\xc5\x3a\xa3\x66\x85\xaa\ +\xfd\xe5\xe1\xf1\x99\x2a\x97\xcf\x5a\x61\x0d\xc3\x30\x8c\xf5\xb0\ +\xbb\xa7\x61\x0c\x0f\x5a\x74\x86\x61\x18\x86\x61\x5c\x2a\xb0\x3d\ +\xc1\xb7\x29\x14\xee\xe5\x69\x19\x97\x71\x01\x5c\x67\x9a\x6b\x84\ +\x60\x1f\xd0\xe9\x63\xf3\xf8\xf7\xbf\xf9\x4f\x70\xfb\x9b\x03\x24\ +\xb5\x3a\xe2\xbc\x0e\xd4\x32\x6d\x0c\xe1\xe8\xad\xd3\x8b\x33\x78\ +\xe5\x4d\xef\x44\xa3\x32\x2a\x51\x22\x89\x23\x71\x25\xbe\xf6\x47\ +\x0d\x64\xcd\x1d\x67\xc7\xa0\xfc\x68\x27\x56\x82\x48\xd6\x29\x3f\ +\x78\x96\x89\x57\x18\x20\x14\xef\x4a\x85\x6f\x7e\xcb\x3e\xf1\xe4\ +\x74\x46\xec\x51\xcb\xf3\x14\xa1\xec\xe7\xdb\xe3\x6e\x9b\x4d\x59\ +\xe2\xa4\x18\x91\xc1\xc6\xa5\x54\x47\xaf\xa5\x2a\x9f\xfb\x35\x6c\ +\xc0\x69\x20\xc5\x4b\xfc\x38\x6a\x4d\x3f\x77\x22\x61\x72\xf0\xad\ +\x6d\x36\x9c\xad\xc5\xda\x7b\x5e\x8a\x2a\x51\xac\x0d\xc3\x30\x0c\ +\xc3\xb8\xa8\xf0\xd5\x74\x99\x62\x9b\xb6\x91\xab\xbd\x69\x3f\x84\ +\x68\x36\x97\xf0\x73\xef\xfb\x31\xec\xbc\x7e\x06\x13\xa3\x11\x46\ +\xb6\x8d\xa2\x5e\x1f\x43\x4b\x6c\x88\x6b\xaf\xba\x07\x95\x80\xd3\ +\x47\xf3\x1b\xad\xde\x9e\x5a\x43\xf0\xd9\x42\x31\x7e\xe9\x43\x2c\ +\x1c\xf9\xe5\x0e\xb1\x73\xc2\x0c\xd3\x33\xf3\x58\x9c\x9d\xc7\xf4\ +\x74\x8a\xb9\x13\x01\x5e\x78\xae\x8b\xa7\x9e\x9f\xc7\x93\xcf\xb7\ +\xf1\x85\xc7\x12\xec\x3f\x14\xe3\xd9\x7d\x15\xec\xdb\x9f\xe1\xf8\ +\xa9\x08\x4b\xf3\x40\x6b\x29\x41\xaf\x9b\xca\xd2\x43\x96\x77\x65\ +\xdd\x41\xa7\xd9\x42\x7b\xa1\x89\xb0\xb3\x84\x38\xec\xa2\x9e\xf7\ +\xc4\xac\xec\x21\x0a\x39\x05\x66\x43\xcc\x26\x5a\x66\x35\x49\x9a\ +\x36\x65\x53\xac\xb8\xa5\xd2\x4b\x49\xfd\xf4\xfb\xf7\x6f\x0f\xa9\ +\x9c\x0c\xc3\x30\x0c\xc3\x30\xce\x12\xeb\x50\x33\x0c\xc3\x30\x8c\ +\x4b\x05\xdf\x1e\x42\x4a\x6e\xd7\x40\x23\x9b\xc5\xb6\xbe\xef\x5b\ +\xec\xd7\x8f\xe0\x27\x19\xba\xad\x04\xff\xf1\x77\x7f\x0e\xf9\xad\ +\x2f\x62\x24\xec\xa2\xc6\x37\x95\x2b\x31\xea\xf5\x48\x8c\x81\x0c\ +\x41\x35\xc0\xee\xc9\xbb\x71\xfd\xd4\xcd\xc8\xf2\x1a\x90\xb9\x8e\ +\x26\x6d\x36\xf2\x69\x5e\x10\x56\x32\x9a\x21\x41\x2f\xe9\x4a\x3e\ +\xb9\xcd\xa9\x19\x8b\x3f\xd9\xe6\x77\x3f\xc2\x88\x8d\x55\x39\x92\ +\x44\x74\x2f\x0a\xc3\xab\xce\x70\x45\x31\xe9\x74\x8f\xfa\x27\x1e\ +\xfc\xc6\x5a\xc6\x4e\x35\x0d\x28\x7e\x9a\x6f\x8e\x44\x73\xb2\xb3\ +\x40\xd2\x93\x32\x4c\xb3\x9e\xa4\xe8\xcd\x26\x2f\xb5\xcc\x20\xbf\ +\xb5\x28\x87\xa5\x56\x5e\x33\xc3\x30\x0c\xc3\x30\xce\x3b\xcb\x06\ +\x42\xb1\xb0\x9a\x2e\x55\xcd\x2b\xf6\x95\xd8\x09\x21\x47\xfc\x8b\ +\xad\x90\xc5\xe8\x2d\xa6\xf8\xcf\x7f\xf4\xff\xe2\x68\xe3\x41\xec\ +\x1e\x19\x41\x6d\x34\x43\x5c\xab\x60\x29\x5b\xc2\x35\xd7\xdc\x8d\ +\xc9\x6c\xa7\x58\x2e\xfc\x22\xad\xc4\xe5\xd4\x90\x2f\xe9\x4c\xf2\ +\x09\xf5\xfb\x0f\x11\x1a\x3b\x92\x8c\xea\xce\x17\xa5\xb2\x10\xdd\ +\x5e\x82\x38\x02\x1a\xa2\xeb\xce\xa9\x09\x5c\xbd\x6b\x1b\x76\x4e\ +\x4c\x60\x7c\x24\xc6\xb6\x89\x00\x23\xa3\x01\xea\xb5\x18\x95\x5a\ +\x15\x23\x95\x08\x55\xb1\x89\xe2\x30\x44\x25\x08\x65\x2d\x92\x52\ +\x91\x95\x26\x62\x7b\x25\x00\xdd\x9c\x82\x5b\x96\x98\x6f\x39\x85\ +\x9c\x42\xbc\xa2\x2f\x3d\x31\x57\x5d\xb1\x41\xf9\x22\x53\x8e\x05\ +\xa4\x69\x8b\x0a\xa9\x5a\xab\xb3\xbc\x6a\x43\xe8\xdf\xf6\x14\x07\ +\xc2\x30\x0c\xc3\x30\x0c\xe3\x02\x62\x1d\x6a\x86\x61\x18\x86\x71\ +\x29\x51\x6e\x63\xe8\x6b\x6f\xf0\x1d\x6b\x6c\xb6\x60\x27\x13\x9b\ +\x1d\x92\x34\x43\x90\xc5\x78\xdf\xef\xbe\x0f\x2f\x86\x7f\x84\xab\ +\xae\xcf\xd0\x88\xa6\x10\x45\x0d\x09\xd3\x43\x25\xae\x20\xae\x70\ +\x34\x57\x03\x5f\xf7\xba\xef\xd2\xb8\x69\x1e\x22\x08\x5d\x87\xd5\ +\x32\xcb\x69\x5d\x88\xc6\x0c\x26\xce\x6f\x9a\xf5\xd0\xe2\x77\xd1\ +\x96\x75\x91\x7c\xea\x70\x32\x8e\x24\xa3\xb6\x6c\xd4\xc9\x24\xcf\ +\x3e\xff\x65\x5d\xd9\x39\xe8\xb5\x77\x7b\x52\x29\x30\xed\x5c\xcb\ +\x53\x6d\x2c\x63\xde\xf9\x97\xa6\x52\x1e\x91\x84\x91\x32\x48\xf3\ +\x04\x49\xd6\x41\xbb\xdd\x76\x71\xfb\xca\x7c\x85\x35\x77\x0c\xc0\ +\xe5\x67\x05\xa7\x95\x63\x2b\x72\x0c\xc3\x30\x0c\xc3\x38\x6b\x58\ +\x0d\xb3\xfa\xf5\xd5\x71\x5f\x55\xac\xf6\x15\x6d\x06\x76\x8a\x89\ +\x93\x7d\x44\x79\x92\xe3\xf7\xfe\xec\xbf\xe2\x33\x2f\xfe\x2a\x6e\ +\x9e\x9c\x42\x87\x76\x43\x54\xc3\x48\x63\x1b\x2a\x23\x31\x5e\x7b\ +\xf7\xb7\xa2\x51\xa1\x65\x12\xcb\x22\xfb\x24\xa2\x76\x68\x2d\xe3\ +\x13\x3d\xc7\x14\x49\x6a\xf6\xc4\x9d\xb0\x13\x2c\xef\x88\xdd\xc7\ +\x69\x1b\x63\x54\xc3\x3a\xe2\xa8\x82\x4a\x54\x47\x18\x88\x3b\xa8\ +\x89\x5f\x8c\x28\x08\xd1\xe0\xc8\x32\xda\x49\x62\x4b\x72\x72\x00\ +\x59\xc9\x9a\xdb\x22\x4d\xec\x2d\x7a\xb0\x93\x90\xdf\xa4\x8d\xe3\ +\x50\xed\x2f\x31\xc9\xf4\xa5\x24\xda\x57\x01\x22\xf0\x1b\xbe\x55\ +\x7e\xef\x56\x6c\xa9\x5e\xde\x5d\x29\x63\x2a\xf3\x12\xd6\x2a\x8f\ +\xf3\x50\x4e\x86\x61\x18\x86\x61\x18\x9b\xc4\x3a\xd4\x0c\xc3\x30\ +\x0c\xe3\x52\x81\x6d\x0f\x7e\xe9\x63\xa5\x5d\x82\x8d\x19\x81\x36\ +\x60\x64\xf2\x17\xc7\x15\x7c\xf0\x23\x9f\xc0\x1f\x1e\xfa\x35\xbc\ +\xec\x81\x11\x8c\x85\x23\x88\xab\x1c\x6b\x95\xa1\x5a\xa9\x21\xeb\ +\xf1\x4d\xeb\x51\x24\x4b\x53\x78\xe5\x9e\xaf\x95\xe8\x31\x62\x7e\ +\x3c\x5f\xdb\x2e\xe4\x67\x50\x7b\xc7\x79\xc1\x35\x9e\xac\x24\x9f\ +\xa1\x8b\x9e\x58\x2e\x99\xe4\x2d\xd4\xc6\x2d\x7e\x1b\x6d\x25\xdf\ +\x81\xb6\xed\x64\x7c\x53\x5a\xf6\x31\xb6\x4e\x79\x29\xfe\xae\xf9\ +\x6b\x45\x92\xdb\x92\x70\x12\x81\x71\xfc\x54\x8f\x22\xb8\xe8\x60\ +\x73\x53\x44\xf2\xfb\x21\xb9\xf8\x07\x95\x0c\x33\x8b\xb3\x08\x75\ +\xfe\xc7\x15\x39\x5e\xc7\x61\xa2\x2a\x17\x88\x26\xfa\xeb\x18\x7e\ +\x5a\x86\x61\x18\x86\x71\x45\x53\xae\x66\x59\xbd\x0f\xac\x6a\xdd\ +\x0b\x39\x1a\x40\x6c\x02\x8e\x6c\x8f\x83\x18\x7f\xfc\x89\x3f\xc1\ +\x6f\x7f\xf1\xdf\xe0\xfe\x9b\x27\x11\x8e\x03\x63\xf5\x11\x44\xf5\ +\x18\x95\x46\x88\xf9\x4e\x80\xfb\x6f\x7b\xbd\xd8\x11\x75\x9d\x62\ +\xda\x0f\x4c\x1b\xd8\x87\x74\x1e\xe1\xc4\xd5\x09\x7b\xc6\xc4\x9e\ +\xca\xf8\x2d\x33\x36\x07\x89\x4e\x15\xf9\xa1\xd5\x18\x85\x92\xb7\ +\x58\x7c\xc5\x16\xa4\x7d\x28\x46\x91\xda\x43\xb4\x4d\xa8\x3a\xf3\ +\xe1\x16\xb1\x1d\x65\x5b\x5f\xbd\x62\x79\xe8\x5e\xb1\x97\x72\xf1\ +\x15\x5b\x2a\x65\xa7\x9b\x84\xd3\xef\xce\xca\x5f\x88\x84\xb3\x3e\ +\xea\xb7\x69\x57\x46\xfb\xaf\x85\x44\x1c\x88\xf7\x5f\x6b\xbf\x61\ +\x18\x86\x61\x18\xc6\xf9\x61\x23\x6b\xc6\x30\x0c\xc3\x30\x8c\x4b\ +\x80\xe5\xc6\x0e\x59\x32\xb6\x76\x64\x39\xc2\x20\xc2\xb3\x8f\xed\ +\xc7\xcf\x7f\xf8\xc7\xf1\xb2\x37\x85\x88\xa3\x2a\x2a\x68\x20\x49\ +\x53\xc4\xd5\x8a\x46\x8a\xab\x35\x64\x9d\x10\xbb\xc7\x6e\x46\x35\ +\x0b\xf5\x63\xf1\xec\x90\x0b\x8b\x56\x1f\xfd\x5d\x6e\xbb\xe0\xd6\ +\x39\x6a\xc8\x18\x28\x96\x5d\x4a\xdc\x91\xa9\xbb\xdd\x69\xa1\x97\ +\x76\x4b\x23\xd4\x48\x80\x20\xe4\x08\x35\x36\x13\x65\x48\x45\x77\ +\x6d\xec\x61\xc7\x58\x11\x82\x68\x63\x56\xb1\xac\x38\xd9\x69\x56\ +\xb8\x8a\x02\xf4\x6b\x7e\x5f\x8d\x45\x90\x85\x39\x82\x38\xc4\xc2\ +\xc2\xf4\xca\xfe\xb3\x86\xe5\x38\x00\x15\x1d\x68\x1a\x3a\x0d\x25\ +\xd7\xcb\x99\x65\x9c\x61\xa4\x6d\x18\x86\x61\x18\xc6\xaa\x2a\x95\ +\x6e\x59\x56\x75\x78\xa9\xdb\x05\xd2\x17\x6f\x94\x0c\x61\x18\xe2\ +\xa9\x27\x0f\xe0\x37\xfe\xe4\xff\xc6\x03\xaf\xdb\x89\x7c\x64\x0c\ +\x71\x3e\x82\xbc\x96\x21\x4b\x13\xb4\xbb\x09\xb6\x8d\xdf\x80\x91\ +\x7c\xa7\x84\xaf\x4a\xe4\x50\xe4\xba\x57\x7b\x94\x61\x56\xe5\x9b\ +\x91\xb5\x1c\x86\x1d\x5b\x40\x3b\xe9\xa2\x56\x61\x47\x19\xed\x0c\ +\x76\x80\x41\xf3\x54\x11\x05\x2b\x61\xa0\x6b\xe6\x03\x79\xa2\xf6\ +\x08\xbb\xda\xf8\x7d\xda\x40\x3b\xcc\x64\xa1\x9b\x32\xf9\x2e\x92\ +\xae\x39\x55\x36\x67\x37\xa0\x87\x38\x19\x42\x6c\x28\xda\x91\xfc\ +\x96\x6d\xc4\xb9\x25\x25\x5c\x96\xa4\xe8\xf6\x3a\xe2\xf4\x65\x79\ +\x26\x30\x41\x26\xc2\xb5\x61\x18\x86\x61\x18\xc6\x85\xc1\x3a\xd4\ +\x0c\xc3\x30\x0c\xe3\x52\xa0\xdc\x76\xe0\xdb\x13\x56\x41\x4f\x76\ +\x11\x05\x88\x02\x36\x57\x04\x38\x75\x60\x06\x3f\xf8\xff\xfe\x2d\ +\xbc\xfa\x4d\x39\xa6\xc4\xa7\xdd\x19\x45\x1a\x76\xd1\xa8\xd6\x10\ +\x8b\x09\x10\xea\x54\x3c\x29\x16\x5a\x19\xae\x1d\xbd\x0b\x79\x1e\ +\x69\xa3\x4f\xc8\x6f\x60\x14\x69\x94\x93\xed\xdf\x1a\x2a\x2f\xc9\ +\x8f\xb0\x2a\xb9\x00\x0b\xf3\x33\x88\xeb\x51\xd1\x09\xe6\x22\xb8\ +\x6e\x33\xc9\x35\x5b\x75\xf8\xcf\x4e\x28\xf5\x29\x42\xd0\xb1\x8a\ +\x22\xbc\x2c\xec\x1b\x73\x23\xd2\xdc\x1e\xdd\x27\xf9\xe7\xd4\x45\ +\x2c\x07\xc2\x15\x47\xfa\x2d\xb4\x67\x65\xcb\x4f\x83\x29\xcb\x4b\ +\xe4\x6e\x05\x46\x76\xf2\x57\x28\x04\x6a\x7a\xa2\x53\xca\x4e\x4d\ +\x49\xaf\x98\x5e\xca\xe5\xca\xb9\x0c\xc3\x30\x0c\xc3\x38\x0b\x7c\ +\x35\xec\xab\xe2\x62\xed\xed\x01\x35\x01\x7c\x75\xab\x6b\xf1\xc8\ +\x7b\x08\xd2\x10\xa7\x8f\xcd\xe0\x67\x7f\xfb\xef\xe1\x8e\x37\xa4\ +\x18\xaf\x65\xa8\xc4\x62\x77\xd5\x03\x34\x46\x62\xd4\xe2\x9a\x04\ +\xad\xe3\x1b\x5e\xff\xbd\x62\x5f\xf1\x1b\x63\x1c\xa1\x45\x19\x22\ +\xc4\xa7\xa5\xf8\x8d\x55\x9e\x5b\x67\x8b\xd1\x39\x3d\x76\x37\x69\ +\x21\xe2\xf4\x94\x1c\x75\x4f\x1b\x43\x17\xb1\x70\x24\xd3\xb4\x8d\ +\x08\xfb\xda\xe2\x50\x6c\x44\xdd\x60\x22\xdc\xe7\xd6\x2b\xd0\xcd\ +\x97\xb7\xc4\x6e\x91\x30\xb4\xa7\x38\x73\x80\xda\x30\xb2\xe6\xc2\ +\x91\xfe\x99\x2c\x51\x25\x42\x96\x76\x91\x70\xaa\xc9\x55\x32\xce\ +\x04\x6a\x75\xb6\x32\x0c\xc3\x30\x0c\xc3\x30\xce\x1c\xeb\x50\x33\ +\x0c\xc3\x30\x8c\x4b\x01\xdf\x76\xe0\xdb\x11\x5c\x9b\x47\x41\xd1\ +\x00\x22\x2b\x36\x86\x24\xfc\x50\x7c\x1a\xe0\xa7\x7e\xe1\xff\xc6\ +\xf5\xb7\x9e\xc0\x55\x13\x53\x48\xc3\x31\x54\x2b\x3d\xfd\x98\xbc\ +\x9b\x2a\x31\x40\xc0\xd1\x5c\x48\x31\x73\x22\xc6\x5d\xd7\x7d\x25\ +\x42\x7e\x3f\x43\x3b\x70\xd8\xa9\xa6\x22\x2f\x02\x24\x53\xcc\x98\ +\xe8\x74\xf8\xd8\xf3\xa8\x54\x63\x7d\xf3\x79\xb9\xc3\x4b\x7f\x72\ +\x09\xc5\x69\x98\xdc\x5b\xcf\xcb\xcd\x2c\x5a\x1e\x6e\xcd\x10\xea\ +\xf0\xdb\x6c\xfc\xc9\x33\xa4\xfc\x20\x88\xdf\x27\xff\x2e\x6e\xb8\ +\x3c\x32\x8c\x1d\x93\xb5\x4a\x05\xad\xee\xbc\x6e\xaf\x08\x27\xab\ +\x36\xb6\x88\x93\xbf\x82\x76\xf1\x2d\x4b\x64\x67\xda\x89\x93\x27\ +\xa0\xb3\x4c\x2a\x7c\x3f\x9c\x71\xce\x26\x4d\xc3\x30\x0c\xc3\x30\ +\x5e\x52\x95\xf6\x55\xc9\x6a\x76\xd0\x53\xfe\xfd\xb7\x5a\x33\xb1\ +\x19\x3a\x8b\x29\x7e\xe1\xd7\x7e\x16\xdb\xef\x7d\x16\x8d\xc9\x10\ +\x15\xb1\xad\xa2\xb8\x82\x4a\x2d\xd2\x17\x61\xea\xa3\x15\xb1\x9f\ +\x76\xe3\x95\xd7\xbe\x49\x64\x70\x22\x44\xf9\xd3\x8e\xaa\x22\xc9\ +\xe5\x74\xbc\x63\xd9\xe3\x3c\xa0\x99\xc1\xe2\xe2\xb4\x58\x7e\xe2\ +\xa4\xbd\xa7\xba\xf9\xc2\x70\xba\xd0\xbc\x4a\xf5\x5b\xb4\x74\xbb\ +\xd1\x75\xb4\x09\x75\x6f\x91\x09\xee\xa3\x1f\x37\xb5\x43\x4d\xec\ +\x30\xc6\xe1\x94\x98\xbe\x33\x4d\xff\x64\xcd\xd1\x6f\xec\x4c\xa3\ +\xad\xd6\x4b\x7b\x45\x7a\x45\x5a\xfa\x3b\x0c\x9c\x3c\xc3\x30\x0c\ +\xc3\x30\x8c\xf3\x81\x75\xa8\x19\x86\x61\x18\xc6\xa5\xc4\x4a\x3b\ +\x44\xd1\x12\xb1\xba\x11\x81\x53\x15\xc6\x71\x15\xbf\xfb\x07\x7f\ +\x8c\x87\x17\xfe\x14\x77\x3d\x70\x15\x1a\x8d\x14\xb5\x98\x0d\x1d\ +\xd0\x7d\x49\xe2\xa6\x13\x44\x18\x23\xcc\x46\x30\x8e\x1b\x70\xd3\ +\xb5\x37\x23\x67\x07\x1b\x5f\x53\xee\x6f\x98\x18\x5e\x8b\xc7\xd6\ +\xd0\x74\x7d\xe2\x01\x0e\x1f\x79\x5e\x54\x76\x0d\x34\xe5\x26\xa0\ +\x2c\xe3\x37\xd5\xb8\x04\x3a\xe5\x90\x8e\x3a\xcb\x18\x43\xf2\xc1\ +\x7c\xea\x22\x01\x97\x97\xa2\x13\x4d\xc2\xf5\x92\x52\xe3\x8f\xbe\ +\xa2\x9d\x2c\x4b\xe6\x9b\xe5\x6c\x30\x8a\xe3\x00\xb3\x4b\xd3\x1a\ +\x85\x83\xf7\xce\x05\x9a\x27\x49\x56\xb4\x40\x14\x48\x5e\x22\xe0\ +\x2f\x3f\xf2\x3e\xec\xdf\xbf\x4f\xf7\x6b\x5e\x14\xdf\x01\x68\x18\ +\x86\x61\x18\xc6\xf0\x70\x75\x2b\xeb\x62\x0f\xed\x01\x37\xe6\x2a\ +\x93\xba\xb9\x86\x5f\xf9\x3f\xbf\x8e\xe7\x1a\x7f\x89\xbd\x7b\x1b\ +\xb2\x2d\x36\x02\x47\xa7\x49\x7d\x1d\x45\xb1\xda\x57\xcd\xd6\x38\ +\x76\x05\x77\x89\xad\x10\x69\x27\x13\x3b\x9b\xb4\xfe\xd6\xfa\xbd\ +\x9f\x73\x5c\x97\xbb\x64\x8b\x1f\xe2\x1c\xf3\xf3\x33\xe2\x94\x1c\ +\xa9\x9d\xe4\xad\x8b\x22\x90\xac\xdc\xf7\xcf\x68\x93\xd0\x8f\xfb\ +\x25\x84\x76\xbe\xf1\x15\x23\xc1\xcb\x2d\x1c\xb4\x1b\xbd\x1d\xc5\ +\xd1\x68\x22\xa1\x78\xc1\x49\x64\x48\x01\x30\x6c\xb3\xd5\x41\x92\ +\xf7\xd0\xee\x2e\x30\xe2\x39\xc2\xe5\xc4\x30\x0c\xc3\x30\x0c\xe3\ +\x5c\x63\x1d\x6a\x86\x61\x18\x86\x71\x29\xc0\x76\x82\x72\x5b\x81\ +\x6b\xcd\x70\x68\x9b\x06\x3d\x72\x44\x51\x84\xc7\x3e\xf7\x14\x7e\ +\xee\xfd\xff\x12\xaf\x7e\xcd\x36\x54\xc6\x16\xd1\xed\x4d\x22\x0b\ +\x52\x0d\x43\x11\x95\x28\xd6\x38\x49\xda\x03\xba\x35\x5c\xbd\xed\ +\x5a\xe4\x79\x4f\xf7\xb1\xab\xca\x09\x2f\x12\x2b\x56\x17\x02\x97\ +\x34\x1b\x69\xb8\x0e\xd0\xe9\x2d\xca\x96\x6b\xa4\xa1\x1f\x1b\x7b\ +\xd8\xd0\xe3\x1a\x72\xd8\x84\x23\x3f\xfc\xe7\x3e\x86\x52\xb7\xfc\ +\x10\xae\x0a\xb7\xef\xb8\x62\x47\x1c\xa7\x23\xd2\xf0\xe2\xc7\xa9\ +\x2e\xd9\x29\x17\xc6\x69\x31\x72\x2d\x43\x22\x45\xc4\xd1\x62\xf3\ +\x0b\xa7\x65\x3b\x75\x82\x87\x0a\x95\x71\x9d\x69\x6c\x80\x62\x9f\ +\x5e\x92\xb7\x31\x9f\x2c\xe0\x85\x43\x9f\xc0\xa7\x1f\xfc\xcd\x22\ +\x9c\xe6\x4e\x17\xc3\x30\x0c\xc3\x30\x86\x8d\xab\xe0\xd5\x26\x90\ +\xda\x96\x36\x13\x3b\xc5\xf2\x24\x43\x98\x57\xf0\x81\xdf\xff\x53\ +\xfc\xce\x63\x3f\x87\x3b\x5e\x53\x45\xad\x3a\x8a\x6a\x3c\xae\xa3\ +\xd6\xf4\x9b\xb4\x62\x1e\x70\xda\xc7\xac\x55\xc5\x7d\xb7\xbf\x46\ +\xea\xf4\xaa\xce\x02\xe0\xf1\xa6\x88\xa2\xde\x2b\xfb\xb6\xcc\x46\ +\x86\x80\x37\x16\x7c\x12\x45\x78\x6e\xd2\xf6\xe9\xa6\x2d\x04\x34\ +\x03\xf5\xcd\x23\xc9\xa9\xcb\xf0\x72\x14\x86\x51\x38\x3a\x8d\x6b\ +\xb1\x8b\xe8\xeb\x6d\x27\x8d\xe3\xc3\x08\x7c\x19\xc9\x59\x97\x4e\ +\x16\xcb\xc4\x75\xae\xb9\xd9\x04\xb8\xae\x36\xaa\x12\x22\x45\xbb\ +\xdb\xd2\x38\x2a\xf7\xac\x60\x7a\x5e\x07\x97\xf6\x6a\xa9\x2b\xfa\ +\xad\x76\x1b\x86\x61\x18\x86\x61\x9c\x3d\xd6\xa1\x66\x18\x86\x61\ +\x18\x97\x02\xbe\xad\xc0\xb7\x1b\x94\xdb\x07\xd8\xca\x21\xff\x89\ +\x78\x9e\x38\x34\x8f\xef\xfb\xf7\xef\xc5\xad\xb7\x06\xb8\xee\x06\ +\x20\xca\x26\x11\xc4\xdd\xa2\x31\xc7\x7d\x03\x8c\x9f\x97\x0f\x11\ +\x23\x0a\x53\xb4\xe6\x2a\xb8\xef\xa6\x07\x44\x04\xbf\x9f\xc6\xce\ +\x23\x86\xf3\x89\x94\xe8\xdb\x3c\x1f\xf8\x24\xa9\x17\xdf\x0f\xef\ +\x24\x4b\x48\x33\xc9\xa5\x4e\x55\x59\xec\xd0\x8c\x71\x4b\x42\x70\ +\x8a\x22\xd9\xe4\x5b\xd4\x08\x38\xad\x10\x1b\x80\x5c\x58\x2e\xda\ +\x68\xa4\x8b\x6c\x48\x78\x86\xe5\xcb\xd4\x6e\xfa\xc7\x62\x2d\x7b\ +\x92\x34\xd3\x91\x7e\xda\x79\x97\x87\x52\x4e\x9c\x46\x73\x51\xf6\ +\x88\x4c\x4d\x78\x98\xa8\x32\x9a\x3e\xdf\xf2\x4e\x24\xcd\x4a\x50\ +\xc3\x27\x1f\xfc\x5f\x88\x76\xb7\xf1\xcc\xfe\x07\x71\xfc\xf4\x11\ +\xcd\x33\x27\x7d\x5c\x81\xee\xf2\xb6\x61\x18\x86\x61\x18\x5b\x62\ +\x60\x35\xea\xba\x8b\xb8\xa8\xc5\x14\xc5\xf8\xec\x47\xbf\x84\x9f\ +\xf8\xdd\x9f\xc4\x57\xbf\x6d\x02\x3b\xa5\x8e\x4e\xb2\x11\x04\x61\ +\x0f\x8d\x7a\x43\xbf\x49\x4b\xfb\x2a\x4c\x47\x30\x37\xdf\xc1\x03\ +\xb7\xbe\x5c\xb7\x59\xb1\x7b\xfb\xc3\xfd\x14\x68\x9a\x67\x51\x7f\ +\x6f\x64\x87\xf4\xa7\x25\xdb\xf4\xe2\x4c\xd6\xcc\xcf\x42\x8b\x53\ +\x58\xd3\xc6\xa1\x7e\xf2\x17\x72\x84\xbf\xd3\x95\x7e\xce\x1e\xa1\ +\x9d\x58\xb2\x9f\xf8\x9b\xf1\x7b\x70\xfc\x73\x61\x3d\x6a\x8a\x71\ +\xd1\x2d\xc6\x97\xfd\x62\x4c\x72\xad\xb2\x8a\x3d\xec\x68\xeb\x66\ +\x4d\x75\x0f\x17\xa7\xa1\xd7\xc0\xad\x9d\x86\x5e\x07\xe6\xcb\x53\ +\x76\x1b\x86\x61\x18\x86\x61\x9c\x09\xd6\xa1\x66\x18\x86\x61\x18\ +\x97\x12\xbe\x15\xa3\x58\x6b\x33\x42\x0e\x1d\x51\x55\x09\x23\xfc\ +\xe3\x5f\xfc\x77\x98\xac\xbf\x88\xab\xef\xae\xa1\x3e\x32\x8a\x4a\ +\x3d\x96\x10\x99\x4e\x5f\xc8\xc0\x49\x9a\xea\x5b\xd3\x69\x12\x22\ +\x8a\x23\x74\xe6\x63\xdc\xb8\xe7\x26\x09\xc3\x06\x15\x09\xe2\xe5\ +\x93\x0b\xd6\xe6\xe0\x12\x76\x8d\x1e\x5c\x02\xf4\x92\x36\xba\xc9\ +\x12\x7a\x69\xa2\xfb\xd8\xbd\xa4\x0a\x8b\x8b\x1d\x68\xfc\xe6\xd9\ +\xca\x5b\xd1\xb2\x4b\xdf\x0c\x97\xfd\xfc\x17\x3f\x6d\xe0\x59\xce\ +\x9c\x7a\xba\x38\x2c\x0b\x7e\xf7\x43\xe4\xb8\x30\xe2\x64\xa3\x91\ +\xb6\x10\xb1\x3c\x42\x04\x71\x0f\x79\xd0\x43\xd2\x6b\xbb\x17\xb5\ +\x85\xd5\xcd\x49\x67\x8a\x4b\x43\x5d\x5e\x5c\xd6\xc3\x42\x73\x16\ +\x0f\x3d\xfd\xdb\x08\xc3\x0a\xd2\xf1\x14\x1f\xff\xab\xf7\x89\x3b\ +\xd2\xe6\x2f\x62\x8d\x41\x86\x61\x18\x86\x71\x96\xbc\xa4\x2a\xa5\ +\x47\x51\xbb\x8b\x33\x28\x6c\x87\xd9\x13\x0b\x78\xef\x7f\x7e\x2f\ +\x5e\xff\x55\x75\x5c\x35\x35\x89\x0e\xea\x62\x3f\xf5\xc4\x36\xe0\ +\xe8\x2b\x57\x8f\xeb\xf4\x8f\xe2\xee\x2d\x8c\x61\x7c\x84\xa3\xfe\ +\x29\xc5\x57\xec\x12\xc0\x89\xbe\x30\x14\xc9\x3b\x3b\x83\x2f\x27\ +\x2d\x88\x2d\xc3\xd1\xf9\xb4\x9b\x56\x6c\x23\x71\x4a\x20\xbe\x9c\ +\xc4\xb0\x5e\x77\x17\x8f\x2f\x20\xf1\xa7\x94\xa3\x02\xef\xca\xf5\ +\x45\x24\x67\xd6\x38\xbf\xe5\x8e\x3a\x29\x8b\x54\xd6\xfc\x7e\x5a\ +\xa7\x18\xa1\xb6\x9a\x15\x69\x67\x86\x2a\xe7\x9c\x4c\x9d\x2f\x47\ +\x31\x6f\x85\xdc\x50\xf3\xe2\xf6\xf3\x97\xb9\x10\x4d\x0d\xc3\x30\ +\x0c\xc3\x30\xce\x18\xeb\x50\x33\x0c\xc3\x30\x8c\x4b\x05\xb6\x0d\ +\x94\xda\x1d\xb4\xb1\x27\x70\x23\x97\xd2\x00\x98\x3e\x30\x83\x4f\ +\x3d\xf8\xbf\x10\xef\xa9\xe2\xfa\x6d\x5d\x04\xf1\x18\xd2\xac\xa3\ +\x1f\x84\xe7\xdb\xc2\x69\x92\x01\x59\x80\x38\xe2\xb6\xc4\x4a\x27\ +\x90\x77\x73\x4c\xd5\x77\x38\x79\xda\xde\x70\x0e\xba\x6b\xd6\x13\ +\x38\x60\x9f\x6b\xf6\xe0\x9a\x2e\x59\x82\x1c\x0b\x8b\xb3\x08\x6b\ +\xe2\x66\x4b\x8f\xf8\x69\xc3\x8f\x86\xa0\x9f\x6b\xf4\x52\xcd\xd5\ +\x9f\x3f\x0c\xc3\xf7\xa2\x9d\x1f\xf7\xbb\x7d\x84\x71\x9c\x1f\xa7\ +\x22\xe2\xac\x47\xf4\xe0\x28\x3d\x7e\x7f\x8d\xe5\x95\x17\xe9\xe8\ +\x1e\x09\xd7\x4d\xda\xe8\x49\x59\xd2\x87\x62\x28\xf9\x8c\x61\x54\ +\x8d\xee\x64\x38\x99\xae\x33\x30\x4e\xeb\xf8\xd4\x53\x1f\xc0\xb5\ +\xf7\xdf\x88\x60\x2a\x40\x25\xcc\xf1\xf8\xa1\xbf\xc0\x89\xd9\xfd\ +\x72\x9c\x23\x09\xe9\xdf\x19\x3f\x8b\xf4\x0d\xc3\x30\x0c\xe3\x4a\ +\xc7\x55\xf1\x05\xe5\xfa\xd8\x91\xe6\x3d\xad\x77\x7f\xfa\x57\x7e\ +\x1e\x8d\x5b\x4f\xe0\x8e\xdb\xc7\xf8\x7a\x12\xaa\x91\xd8\x07\x62\ +\x53\x55\x2a\x35\x7d\x49\x89\xa3\xfe\xa3\xaa\xd8\x0f\xe9\x28\xee\ +\xbb\xee\xf5\x52\x97\x73\xac\xb9\x06\x11\x44\x9a\xf6\x48\xd1\x2d\ +\xf8\xf5\xb9\xae\xc2\x97\x33\xb2\x92\x2f\xe7\xe4\xf4\xd9\xf3\x6e\ +\x2a\x4b\xce\x53\x29\xbf\xce\x7e\x52\x97\xb8\x99\x6f\x17\x9e\x76\ +\x0e\x1b\x8b\x9c\x5b\x03\x68\x18\xa2\xdb\xe2\xf6\x59\x53\x19\xba\ +\x94\xdc\xdc\xcf\xb0\x12\x88\x36\x0e\x6d\xb9\xc1\x1d\x6a\x67\x83\ +\xd3\x87\xa8\x8b\x3f\x92\x28\xd3\xa7\x8d\xcc\xce\xb4\x23\x47\x4f\ +\x30\x69\xdd\xc9\x4e\x36\xb1\x86\xb9\x61\x18\x86\x61\x18\x86\x71\ +\xc6\x58\x87\x9a\x61\x18\x86\x61\x5c\x4a\x68\xcb\x05\x17\x36\x55\ +\x38\x77\x2f\xcf\x50\x0d\x43\xfc\x9b\xdf\xfa\x0d\x8c\x4f\xb5\x70\ +\xe7\xfd\xe3\xa8\x8f\xed\x40\x94\x77\xb5\xe1\x80\x0d\x0a\x41\x02\ +\xd9\x0e\x51\x8b\x63\xed\x34\x62\xfc\x9a\xac\xb2\xbc\x8a\x6a\x34\ +\xea\x64\xb2\x11\xc2\x49\x75\x30\xad\x61\xb0\x96\x9c\x52\x52\x65\ +\xb7\x3a\x97\x1b\x63\xdc\x8e\xd3\xb3\x27\x10\xe8\x67\x4a\x8a\x6f\ +\xc1\xb1\xb1\x44\xf7\x68\x50\x37\xca\x4c\x3b\xc6\xf8\xc3\x8c\xc8\ +\x76\xb1\x38\x39\x0e\x36\xaa\xb0\x91\xc5\x7b\xb0\x33\x8d\x6f\x4e\ +\x6b\x18\x8d\x26\xfb\x8a\x34\xf9\xcb\xb0\x51\x14\x8a\xd4\x04\x9d\ +\x9e\x9b\xaa\xc8\x45\xf5\x12\xcf\x80\xe5\xa8\xce\xe1\xd2\x09\xdc\ +\x9b\xe2\x55\xe0\xd4\xec\x01\xd4\xd3\x48\x8c\xb4\x1e\xb2\x7a\x0a\ +\xd4\x32\x7c\xf0\xa3\xbf\xbe\x1c\x6d\x25\x37\x97\x21\xbe\xf8\xcb\ +\x8b\x61\x18\x86\x61\x9c\x2b\xb4\x4a\x2d\xea\x63\xa9\x73\x7c\x07\ +\x50\x14\x56\xf1\xbf\xff\xf0\x2f\xf0\x17\x8f\xfe\x1e\x5e\xf9\x9a\ +\x29\xd4\xc6\xc4\x5e\xc8\x46\x91\x45\x62\x87\x70\xf4\xba\x84\x8d\ +\x23\x4e\xf8\x18\xa1\xdb\x49\xd1\x9c\x8d\x70\xc3\xde\x9b\x74\x1f\ +\x5f\x7f\x59\x55\x55\xf7\xd7\x65\x6b\x55\xe3\xc3\xaa\xf7\x5e\x22\ +\x83\x36\x0e\x3d\x53\x74\xf2\x45\xb1\x7b\x32\xb5\x7d\x68\x77\xf0\ +\xcf\x85\x28\xd6\xb2\xcf\xbd\xb8\xc3\x5f\x59\xd3\x5b\x77\xc9\x8f\ +\x0b\x22\x78\xc7\xca\x9a\x65\xe7\x6c\x28\x41\x0a\x20\xcd\xba\x9a\ +\x4f\xed\x4c\x13\x68\x47\x2d\xb5\x97\xd4\x3d\xbc\x31\x62\x83\x0b\ +\x32\x64\x6f\xa6\xd8\x55\x47\x4f\x1f\xc1\x1f\x7c\xf0\xb7\xf0\xd4\ +\x73\x0f\x8b\xaf\x1b\xb3\xe6\xe6\x39\xa0\xcb\x2f\x86\x61\x18\x86\ +\x61\x18\x5b\xc3\x3a\xd4\x0c\xc3\x30\x0c\xe3\x52\x82\xcf\xfe\xae\ +\x9d\x43\x61\x27\x90\x76\x26\x25\xc0\x6f\x7e\xe0\x3f\x61\xfb\xcd\ +\x15\xdc\xb6\xa7\x8d\x4a\x2d\x46\x28\xb5\x7c\x90\x25\x88\xd8\xf0\ +\xc3\x4e\xb5\x30\xd0\xd1\x57\x19\xbf\x35\x16\xa4\x98\x99\x6f\xa2\ +\xd2\x9e\x42\x25\x8a\xb5\x21\x44\xe5\xb9\x95\x63\x2b\xed\x0c\x0c\ +\xbb\x56\xf8\xf5\xe4\xf8\x04\xb9\x2e\xeb\x20\x3f\x6e\x97\xdb\x71\ +\xec\xd4\x01\x04\x11\xbf\x9f\xe6\x3a\xbe\x8a\x9d\xda\x78\xc3\x7c\ +\xb1\x8f\x90\x53\x59\xb2\x71\xc8\x37\x10\x2d\x37\xec\xf8\x95\xf7\ +\x77\x1b\xba\x9d\x4a\x44\x95\x21\xf2\xf4\x03\xfd\x79\xe4\xa6\x2d\ +\x92\x04\x58\x66\x94\xc5\x49\x33\x83\x28\xc7\x62\x6f\x81\x31\x5d\ +\xfc\x22\xfd\xb3\x41\x45\xf8\x7c\x88\x49\x56\x89\x22\x1c\x9b\x3e\ +\x8e\xe9\xd3\x4f\xa3\x75\x62\x1a\xf5\x68\x14\xf5\xfa\x28\x26\xa7\ +\xc6\xd1\xca\x8f\xe3\xf0\xe9\x67\x25\x94\xe4\x4f\xdb\xa1\x5c\x44\ +\xdf\xe1\x78\x49\xb3\x41\x16\x7c\x51\xf7\xaf\x0d\xc3\x30\x0c\xe3\ +\x8c\x61\xdd\xc3\x0a\xc5\xaf\x89\x1a\x03\xb2\x16\x5b\xe0\xa9\x2f\ +\x1c\xc2\x8f\xff\xda\x7b\xf1\xd6\xb7\xee\xc1\x9e\xab\x81\x6e\x32\ +\x8a\x30\xea\x88\x1d\xc2\x69\xa1\x43\xb5\x15\x02\xf0\xe5\x97\x8a\ +\x6c\x67\x68\x2f\x06\xb8\xe9\x9a\xeb\x25\x32\x47\xb9\x53\xe4\x1a\ +\x95\xdb\x7a\x95\xd8\xb0\x2a\xb8\xb2\x1c\x75\xd3\xd6\xa1\xa9\xd8\ +\x45\x2f\x63\xa7\x16\xbf\xba\x2b\xb6\x8f\xfc\x2d\xdb\x4a\x82\x66\ +\x9d\xdb\x39\xcb\x81\x6b\x46\x17\xa3\x43\x6c\xc6\xa2\x7b\x6d\x19\ +\xb7\x2d\x3e\x92\x77\xae\x39\x8d\x36\x6d\x19\x37\x3b\x40\x31\xfa\ +\x9f\xdf\xb4\x95\x2d\x95\x2b\x7f\x4b\xed\x39\x46\x95\xbd\x6a\xc8\ +\x0c\x01\x4a\x1e\x80\xe8\xde\x13\xdb\xf0\x8f\xff\xe4\x37\xf0\xdc\ +\x91\x4f\xe1\xff\xfc\xe9\x6f\x88\x86\x91\x78\xa7\x88\x44\xbf\xcb\ +\xc2\x76\x32\x0c\xc3\x30\x0c\xe3\x82\x61\x1d\x6a\x86\x61\x18\x86\ +\x71\x29\xe1\x5b\x33\xd8\x20\xa0\x3d\x4b\xd0\x0e\xb1\x27\xbe\xf4\ +\x1c\x10\x1f\xc7\x5d\xaf\xde\x83\x91\xda\x0e\xd7\x09\x84\x5c\xf6\ +\x55\x91\x27\x29\xa2\x30\xd2\x76\x87\x94\x6e\xa9\xfe\xe3\x30\xc0\ +\x52\xab\x8b\xa4\xd7\xd0\x6f\xaf\x15\xa2\x0a\x5c\xe3\xc7\x72\x5a\ +\x65\xd6\x6b\x83\x18\x14\xde\x33\x28\x5e\x39\x7c\xff\x7e\xd9\xf6\ +\x5e\xb9\x68\x3c\xbf\x74\x10\x41\x9c\xc9\x86\x44\x92\x1d\xfc\x5e\ +\x09\x71\x65\x20\xfa\xa6\xd0\xce\x2f\x17\xc9\xc5\xd4\x7d\x85\x10\ +\xee\xd2\xe4\xb8\x5d\xf8\x71\x4d\x7f\x95\xc9\x95\x6c\x2c\xef\x12\ +\x81\x8c\x1f\xb1\x57\x52\xca\x27\x0f\x3b\x98\x9f\x9f\x2d\xf6\x7a\ +\x7c\xe8\x4d\x50\x0e\x4a\x37\x55\x53\x7d\x5d\xda\xa1\xee\x8f\xf0\ +\xd0\x53\x1f\xc0\xf8\xb8\x1c\x9b\x30\x45\x92\x47\xa8\x8f\xc4\x60\ +\x56\x93\xe0\x34\x3e\xf4\xa9\xdf\x95\x30\xae\xf1\x8b\xcd\x60\x97\ +\x3c\xcc\xb3\x2f\x17\x59\xbb\x29\x99\xdc\x71\x2a\x2f\xcb\xfb\x8a\ +\xb5\x3b\x66\xa5\x85\xf8\xb5\x61\x18\x86\x61\x6c\x85\xa2\xa2\x71\ +\x75\x4e\x2e\x76\x91\x18\x14\xed\x1c\xdf\xf7\x0b\x3f\x89\x97\xdf\ +\x11\x60\xdb\x9d\xf4\xdf\x86\x7a\x23\x02\x27\x78\x64\x67\x5a\x4f\ +\xc2\x74\xbb\x5d\x37\x9d\x76\x16\x8a\x55\x55\x43\xd4\x9b\xc2\xd5\ +\x3b\xae\x29\x3a\x92\xbc\xdc\xa2\x7a\x2a\xdc\x9b\x62\x2b\x61\x07\ +\xd1\x5f\x1f\x6a\xa5\x29\x62\x83\x0c\x4b\xc9\x3c\x12\x74\x90\x8a\ +\x8d\xe3\xbc\x99\x1f\xe6\xda\x85\xf1\x6b\xed\x70\xa2\x53\x16\x37\ +\xb2\xad\xd8\x26\x6a\xbb\xa8\x43\x16\x76\xb4\xd1\x4b\x62\x72\xd3\ +\xfd\xe8\x8a\x72\xf5\x85\x2f\x29\x2f\xbe\xb0\x94\x49\x9a\xed\xe6\ +\xbc\x8b\xc7\x7f\x06\x75\x82\x86\x83\x13\xcb\x2e\x3d\x1d\x7d\xd7\ +\x4a\x3a\x38\x76\xf2\x19\x4c\x6d\x1f\x45\x2f\x3f\x84\xe3\x33\x2f\ +\x8a\xed\x28\x01\xb4\x7c\x35\x87\x86\x61\x18\x86\x61\x18\x67\x84\ +\x75\xa8\x19\x86\x61\x18\xc6\xc5\xc8\x3a\x4f\xfa\x45\x5b\xc0\x72\ +\x90\x28\x02\xfe\xd3\xfb\x7f\x07\xbb\x6f\x1c\xc5\xf5\x7b\xda\x08\ +\xa3\x51\xb8\x6f\x7f\x70\xd4\x93\x7b\x7f\x9a\x61\xf5\x9d\x5c\x1d\ +\x9d\x96\x21\xc8\x22\x4c\x8e\x8d\x22\x1c\x15\xbf\x9c\x8d\x1d\x45\ +\x63\xc8\x72\xc8\x35\xe8\xdf\xe1\x95\x58\x2b\x82\x13\xb7\x31\x0c\ +\xc3\x85\xe1\x8b\x38\xbe\xb9\x83\x6f\x47\xcf\xb6\x4f\xba\x06\x20\ +\x7d\xab\xd9\x05\x72\xfa\x02\x59\xc6\x3c\xb8\x0d\xf7\x4d\x39\x81\ +\x9d\x69\x0c\x57\x84\xd1\xad\xc2\xad\xe8\x2e\x27\x43\x67\x8b\x64\ +\x5f\x1d\xfd\x38\xd5\x11\x1b\x97\x72\x59\x74\x34\x1c\xb5\xc8\x11\ +\x86\x39\x8e\x9e\x3e\xb4\x1c\x77\xcb\x50\x81\x3e\xbc\x17\x55\xf5\ +\x6f\x6b\xef\x3f\xf8\x0c\xba\x41\x47\x3b\x3c\x81\x0e\x02\x49\x37\ +\x92\x25\x6e\x84\xd8\x7f\xea\x61\x2c\x9c\x9e\x47\x58\x74\xc2\xb9\ +\x1c\xb8\xf5\x25\xc9\x72\x01\xb8\x95\xcf\x05\xd7\xe5\x85\xf4\xaf\ +\x97\xe9\x93\x61\x18\x86\x61\x18\x1b\x52\xae\x4c\xa4\xf2\xe7\xb4\ +\xcb\xac\x8c\xe9\x9d\x8a\x8d\xf4\xb1\xcf\x7f\x09\xa7\x0f\x7e\x1e\ +\xe3\x37\xd4\xb0\x8d\x23\xfb\xab\x40\xaf\xd7\x44\xc8\x37\x5c\x24\ +\x5c\x9a\xe4\xa8\xd7\x1a\x12\x4f\xea\x6e\xa9\xa3\xd3\x84\xf3\x41\ +\x46\xa8\x86\x35\xb5\x25\xb4\x4e\x92\xf5\x72\x32\xde\xb1\xec\xb1\ +\x0e\x9b\x09\xb3\x1e\xfd\xf5\x61\xa1\x0b\x99\x9e\x3b\x8e\x28\xe6\ +\xe8\xfb\x44\xf4\x14\x4f\xb5\x77\x68\x0b\xb9\x00\x1a\x95\x7e\xda\ +\x89\xc6\x32\xe1\xf7\x5d\x69\x13\x3a\x5b\xc8\x87\x53\x0a\xb7\xfa\ +\xe9\xbf\xfc\x15\x23\xd2\x96\xe5\xc8\x3e\x75\xd3\xc6\x0a\x12\x2c\ +\xb5\x16\x65\x23\x95\xf4\xb9\xbf\x24\x8b\x02\xce\x1a\xf7\xa2\x19\ +\xd5\xe1\x77\x82\x1f\x7a\xe4\xcf\x91\x4e\x25\x68\x6c\x1f\x01\x46\ +\x96\xf0\x91\x07\xdf\x27\x21\xf8\xba\x99\x4f\x6b\x18\x69\x1a\x86\ +\x61\x18\x86\x71\x25\x62\x1d\x6a\x86\x61\x18\x86\x71\x31\xa2\x2d\ +\x10\x83\x61\x13\x00\x77\x73\xf1\x9f\x56\x3f\x7a\xe4\x59\xbc\xfa\ +\x55\x37\x62\xdb\x68\x80\x34\x8f\x10\xea\x34\x8f\x12\x96\x53\x13\ +\x85\x01\xa2\x3c\x45\x24\x1e\xd5\xb8\xa2\xa3\xae\x22\xc4\x18\x1d\ +\x03\xe2\x91\x1e\x3a\xdd\x9e\x04\x74\x09\xb2\xe9\x43\xa7\xf7\x29\ +\xa3\x6d\x0e\x1b\x28\x54\x6e\x97\x28\xbb\x7d\x34\xae\xcb\xfe\x83\ +\x28\xf6\xeb\x4a\x7e\xd8\x38\xc3\xdf\x4e\xbe\x80\x5e\xb8\x20\xf9\ +\xe2\x14\x45\xec\xf0\x62\x07\x61\xd1\x48\xc3\x10\x9c\xea\x51\x0a\ +\x42\xdf\x0a\xcf\xf8\x16\xb4\x6f\xf4\xe1\x22\xa1\x28\x8b\x4e\xe2\ +\xbd\x4b\x4b\x96\xb2\xc1\x88\x1b\xb2\x29\x2b\xbe\xd9\xcc\x46\x19\ +\xa7\xb4\xc8\xeb\x49\x19\x46\x19\x8e\xce\xec\xd3\x30\x9a\xae\x84\ +\x73\xe9\xbb\x78\x5b\x66\x39\x1a\x1d\x39\x52\xd1\x61\x66\x69\x06\ +\xdd\xf4\x88\xc8\x4d\xe4\xf8\x15\xdf\x6e\x53\x5d\x38\xb5\x54\x82\ +\xb1\xc9\x1a\x3e\xfc\xa9\xf7\xeb\x54\x9e\xfa\x1d\xbc\x42\x83\x4b\ +\x1a\xc9\x02\x73\xa1\xc5\xed\x36\x97\x17\xa2\x6b\xf9\xf1\x87\x83\ +\xeb\xb2\xdb\x30\x0c\xc3\x30\xce\x08\xd6\x21\x45\x55\xaa\x9d\x41\ +\xe2\xec\xa6\x29\x6a\x95\x0a\x7e\xe6\x3f\xff\x22\xaa\xdb\xdb\xb8\ +\xe7\x15\x23\xa8\x8e\x4c\x22\x10\x23\xc3\x8f\x5c\xcf\x7a\x19\xe2\ +\x30\xd2\x91\xff\x69\x22\xd1\xc3\xae\x18\x0e\x99\xd4\xcd\x0d\x54\ +\xe2\x9a\xd6\xd1\xc4\xdb\x30\x8a\xaf\xaf\x06\xd5\x5b\x45\x10\xa5\ +\xd0\xe7\xac\x28\xcb\xe3\x86\xd8\x11\xde\xc6\x99\x9b\x3b\x86\x2c\ +\x74\xdf\x12\xd3\x85\xbb\x8b\x08\x0c\xe3\x3b\xc0\x74\xd1\x6d\x71\ +\xc9\xe2\x3a\xd5\x56\xec\x2e\x46\x5c\xb1\x93\x1c\x8c\x4b\xd3\x44\ +\x3b\xe3\xfc\x2e\x95\x91\x89\x8d\x43\xdb\x34\x41\xaf\xdb\x11\xab\ +\x8a\x2f\x0b\xb1\x87\x4d\xa3\x0d\x87\x42\x6f\x5a\xc5\x5d\xb1\x03\ +\xc5\x6a\xc3\xe7\x3f\xff\x41\x4c\x4e\x55\x90\x55\x16\x11\x55\x47\ +\xf1\xd8\xf3\x9f\xc1\x5c\xf3\x14\x03\xeb\x8b\x58\x2b\x50\x91\x61\ +\x2a\x73\x81\xb9\x8c\xb2\x62\x18\x86\x61\x18\x17\x2b\xd6\xa1\x66\ +\x18\x86\x61\x18\x17\x2b\x5b\x78\xc6\x3f\x36\x7b\x12\xe3\x23\xa3\ +\x88\xa3\xdd\x08\xd0\x93\x85\x9d\x68\xd0\x06\x8f\x90\xee\x00\xa8\ +\x48\xad\x1f\x8a\x27\x3b\x6b\xb8\x4e\xf3\x59\x44\xf5\x05\xec\x3f\ +\xf4\x22\x02\xd9\xa7\xcd\x0b\x6c\x38\x51\x89\x45\xc2\xf4\x74\x3b\ +\x56\xeb\xe2\xdd\xe5\x36\x09\x42\xff\x7e\x3f\x8f\xf7\x67\x98\xb2\ +\x2c\xb2\x1c\xaf\xd8\x29\x6e\xe6\x81\xbf\x47\x66\x0e\x22\xaa\x65\ +\xe8\xa5\xee\x8d\x6a\x37\x4a\x6d\x45\x4f\x36\xd6\xf8\x0e\x26\xff\ +\xfd\x34\xe7\xcf\x95\xfc\x68\x40\xae\xe9\xa7\x1b\x2b\x5e\xfc\x93\ +\xb8\xda\x08\xc4\x7d\x4c\x52\x56\x19\xbf\x8d\xa2\xa3\xc4\x04\x59\ +\xe5\x52\x3e\x4b\xdd\xd3\xba\x99\x31\x3d\x29\x43\x95\xb1\x16\x83\ +\x76\xd2\x8f\x4b\x21\x56\x83\x68\x7a\x72\x7c\xe2\x18\x5f\x78\xf4\ +\xa3\x08\xea\x6d\xed\x28\xe2\x31\x63\x0e\xb5\xf3\x53\x0e\x1e\x3b\ +\x0d\xab\x75\xe0\xe9\xe3\x5f\x44\xda\x95\xe3\xab\x7d\x9e\xae\x84\ +\x2e\x6a\xd6\x28\x24\xea\xed\x17\xcf\x72\xdb\x5c\xb1\xf4\xb5\xd5\ +\xad\xc2\x7b\xfb\x20\xeb\x04\x35\x0c\xc3\x30\x8c\x97\xe2\xeb\x63\ +\x5d\xbb\xfa\x94\x23\xc0\xe7\x8f\x2f\xe0\xc1\x27\xff\x14\xf7\xbe\ +\x7e\x27\x76\x8c\xb6\xc5\x33\x91\x7d\x1c\xed\xef\xec\x2a\x7e\x8b\ +\x96\x4b\x92\x24\x45\x5d\x0d\xb4\x5b\x3d\x84\xdd\x51\x7d\x99\xa9\ +\x30\x33\xd6\xae\x94\xb8\xdf\x87\xd1\xb4\x9d\x53\x19\x14\xc7\x87\ +\xdd\x2c\xcb\x32\x8a\x88\xb2\xad\xf5\xa9\x38\xe6\x17\x4f\x20\x0b\ +\xdc\x08\x31\x36\x04\xb9\xe9\x1c\x9d\x3d\xe5\x93\x51\xb3\x29\x15\ +\x1b\x47\xf6\xe9\x8c\x06\x8c\xab\x3b\x0b\xc1\x9a\x41\xc6\xf1\x31\ +\xe8\x45\x3b\x4a\xfc\x18\x57\xd6\x0a\xed\x24\x1f\x56\xfc\x5c\x47\ +\x5e\x17\x9d\xb4\x29\xe5\xa8\xa9\x6b\xb0\xa1\xa1\x79\x01\x62\x11\ +\xbd\xb0\x74\x1c\xdd\xea\xb4\xe4\xb5\x87\x76\xd2\x44\x7d\x32\x46\ +\x6d\x34\xc7\x1f\x7c\xe4\xbf\xe9\x0b\x65\x39\xa7\x25\x18\x76\xfa\ +\x17\x03\xae\xb8\x8b\xe3\x55\x5a\x1b\x86\x61\x18\x86\x31\x54\x68\ +\xc9\x18\x86\x61\x18\x86\xb1\x16\xc3\x7c\x18\xa5\xac\xcd\xc8\xdb\ +\x6c\x38\x41\x2b\x72\x09\x7b\x72\x61\x1a\xbd\x1e\x3f\x96\xcf\xd1\ +\x4d\xee\x69\x3a\x88\x5c\xa7\x0c\x37\x39\xca\x89\xbd\x6a\xdc\x8e\ +\xd8\x51\x14\xe4\x18\xaf\x4f\x61\xdb\xae\x26\xfe\xe8\x53\xff\x15\ +\xbd\x26\x1b\x8c\x18\x8e\x31\xdd\x14\x91\xab\xa0\x07\x03\x78\xbc\ +\x7b\x90\x3f\xfd\xca\x02\xfa\x85\x95\xe3\xfa\x7d\xcb\x32\x9c\x43\ +\x3b\xce\xb8\xc8\xdf\xa1\x43\x5f\x46\x2a\xfa\x26\x79\x4f\x77\xb3\ +\x7d\xc6\x35\x0e\xe9\x80\x34\xa4\xf2\xe3\x1a\x71\x18\x91\x01\xe4\ +\x3f\x2b\xe2\x07\x89\xb8\xe9\x5f\x2c\x5c\xb9\xde\x33\x95\x9d\xa5\ +\x7c\x53\x99\x9b\xe2\x27\x42\xdd\x8a\x6b\x17\x9f\x25\xcc\x29\x8c\ +\xd8\x08\xb4\xd4\x3a\xb9\x1c\x5f\x77\x79\x81\xcb\xeb\x75\x28\x07\ +\x11\xf7\xca\x26\xbb\x07\xe5\x18\xa5\xc0\x63\xcf\xfd\x39\xe2\x4a\ +\xac\x0d\x59\x3c\x46\x5c\x57\xe2\x48\x3b\x09\xb5\x23\x14\x3d\x4c\ +\x5c\x13\xe0\xc1\x47\x3f\x86\x90\x53\x36\x69\xa7\x9a\x2f\xb1\x8b\ +\x94\x41\xca\x69\xe1\xf5\x2f\x1e\xef\xee\xdf\x57\x76\x0f\x62\xbd\ +\x7d\x86\x61\x18\x86\x51\x82\x75\x93\xaf\x9f\x0a\x83\x82\xb5\x08\ +\xeb\xdc\xff\xf4\x5b\xff\x03\x3b\xaf\xcb\x70\xdf\x6b\x77\xa3\x8a\ +\xab\x10\x4a\x65\x1b\x85\xb2\x04\xb1\xf6\xd9\x54\xa2\x48\xea\xe7\ +\x4c\xdd\x1a\x53\xd6\xdd\x1e\xb7\x2b\xe2\xc1\x6e\xb7\x02\xad\x96\ +\x96\xb7\x4a\xe9\x15\x0b\xf7\x97\x76\x2b\xf4\xd3\x78\x25\xfa\xc3\ +\x6c\x44\x7f\x7c\x7a\xb0\x43\x0b\x09\x9a\x4b\xd3\x48\xb2\x9e\xd8\ +\x0f\x6e\x7e\x03\x37\xae\x8b\xfb\x8b\x48\x7e\x53\x1c\x9c\x06\xd3\ +\xef\x57\x15\x18\x44\x83\xb9\x4e\x44\xbf\x4d\xb7\xb3\x2e\x0b\x3f\ +\xf1\x50\xf3\x44\x3b\xd6\xf8\x8d\x39\x8e\xec\x0b\x11\xc4\x62\xdb\ +\x54\x81\xc5\xd9\x59\xd9\xe7\xa6\x1a\xd7\x60\x2e\xe6\x50\xa0\xce\ +\x91\x1c\x98\xbf\xf8\xc2\x1f\x62\x6a\x7b\x0d\xa9\xe4\xb9\x52\xe5\ +\x34\x9c\x5d\x8c\x4f\x4d\xe2\xa9\x23\x9f\xc4\xe1\x43\x47\xdc\x28\ +\x42\xd5\xef\x12\x87\x45\x57\x5e\xc8\xa0\xf5\x66\x16\xc3\x30\x0c\ +\xc3\x30\x36\x8d\x75\xa8\x19\x86\x61\x18\xc6\x7a\xf0\x79\x7b\x2b\ +\x0f\x9a\xfd\x0f\xa6\xde\xed\xd7\x1b\x3d\xbf\x33\xdc\x56\x9f\xf1\ +\x25\xce\xc8\xd8\x38\x3a\xcd\x44\x3b\x5e\x38\xb5\xa3\x6b\x06\x71\ +\x8d\x1e\xda\x56\x24\x61\x74\xa4\x5a\x18\x21\x0c\x03\x09\x97\x22\ +\x4b\x52\x8c\x35\x3a\xc0\xae\xe7\xf0\xe9\xcf\x7c\x4c\xd3\xe5\x07\ +\xe4\x5d\x2c\xae\xa9\x4c\xa1\xf8\x66\x75\x2a\x82\x2f\x87\xe7\x76\ +\x91\xfe\x40\xca\xe1\x14\xe7\x28\xda\xb7\x74\x6b\x76\xee\x04\x12\ +\xb4\x65\x83\x5b\xa2\x57\xd1\xe1\xc5\xb8\x59\xe6\x3a\xc5\xd8\x30\ +\xe2\x1a\x65\x64\xd1\x0e\x34\x0a\x60\x38\xae\x5c\x07\x18\x9d\xee\ +\x47\x56\xdc\x66\xc7\x98\x76\xa6\xf9\xc5\x37\xeb\x48\x5c\x49\x83\ +\x53\x3f\xba\x2d\xd9\x8e\x12\x34\xbb\xf3\x52\xc6\x0b\x12\x86\xf3\ +\x4b\xba\x7d\xe2\x28\xd6\xeb\xd0\x1f\x84\xe2\x57\x9c\x52\xe8\x09\ +\x4e\xce\x9c\x46\x27\x3d\x2d\x1e\x45\x2f\x19\x1b\x85\x42\xf7\xee\ +\x3b\x47\x17\xd2\x5d\xa9\x65\x72\x9c\x3b\xf8\xb3\x2f\xfd\x77\xcc\ +\x4e\x9f\xd2\xc6\x3c\x7f\x94\x5c\x22\x9b\xd0\x65\xd8\xf4\x25\x49\ +\x6d\x5c\xde\xca\xe7\xcf\xca\xa2\x7e\x3c\x1e\xb2\xc5\xef\xc6\xd1\ +\xc5\x11\x86\x1c\xf5\xc7\x06\xbe\x54\x8f\xa7\x9c\x9b\x29\xa7\x88\ +\xe2\xba\x58\xd8\x69\x2a\x0b\xc3\xe4\x25\x3f\xf5\xe7\x88\x41\x11\ +\xe8\x1a\xe7\xf4\xe0\x0f\x58\x2e\x30\x17\x81\x0a\x86\x61\x18\x46\ +\x41\x71\x4f\xf6\xf5\x95\xc2\xea\x43\xaa\xf7\xf7\xfd\xe9\x1f\x62\ +\xcf\xf5\x0d\x4c\x54\x67\xa4\x1e\x8a\xb5\xa6\xe2\x88\x2a\xd6\xc5\ +\x5a\xd7\x48\x3d\xc5\x3a\x59\xa3\x49\x7d\x16\x22\x46\xa5\x12\x61\ +\x74\x22\x16\x19\xe2\xaf\x2d\x2c\xb2\x53\x85\x17\xb2\x37\x83\xca\ +\x2b\x96\xad\xb0\x99\x24\x44\x66\x2f\xed\xa1\xd5\x5b\x92\xfa\x96\ +\xd3\x57\x4a\xae\x0a\xfd\xb4\x46\x2e\xd2\xe4\x68\x78\x96\x81\xb3\ +\x2f\xa4\xce\x96\x0c\x6b\x9e\xf9\xa7\xeb\x22\x1c\xf7\x79\xb7\x86\ +\xe1\xcb\x49\xf4\xa5\x87\xf3\xa3\x90\xa2\xdf\x4e\x6d\x2d\xbe\xe4\ +\x95\x86\x29\x8e\x4d\x1f\xd7\x19\x00\x7c\xfc\x61\xe0\x6c\x46\x5a\ +\x15\xb4\x07\x42\x1c\x3a\xf1\x24\xc2\x2a\x75\x48\x11\x57\x25\x7d\ +\xd1\x25\xa8\xa4\xd8\x71\xc3\x38\x3e\xf2\xb9\xdf\x77\xc7\x4f\xf4\ +\x2d\x0a\xa1\x84\xe6\xe0\xd2\x81\xea\xfb\x85\x94\xdd\xa4\x7f\xbb\ +\x8c\xdf\xb7\x5e\x18\xc3\x30\x0c\xc3\x30\x06\x62\x1d\x6a\x86\x61\ +\x18\xc6\xe5\x0f\x9f\x8f\x37\xbb\x90\xf2\xba\xdf\xaf\x9f\x41\xfe\ +\xe5\x07\x53\xba\x19\xc6\x3f\xb0\xf6\x87\xef\xdf\x2e\x87\xdf\x2c\ +\x52\x9b\xdf\x76\xc3\x8d\x38\x35\xbd\x80\x20\x63\x0f\x91\x44\xa6\ +\x0c\x36\x68\x08\x14\x15\xb2\x25\x48\x3c\xd5\x1d\xb8\x4e\x9a\x18\ +\x75\x24\x79\x1b\x57\x5d\x3b\x86\x87\x8e\xfc\x0e\x1e\x7f\xfa\x73\ +\xfa\xdd\x2e\x50\x86\x84\x2c\x9a\x46\xd6\x87\x02\x3d\x3e\xb8\x4b\ +\xca\xe1\xdd\xe5\x70\x65\xca\x49\xac\x4a\x8e\xba\x72\x14\x56\xa6\ +\x1d\x59\x49\xd6\xa5\xe2\x92\xa5\x92\xa0\xcc\x7d\x7b\x8c\x6f\x8a\ +\x6b\x43\x4f\x91\x5f\xdf\x40\xe2\x1a\x79\xc4\xc1\xe1\x5f\x54\xc0\ +\xef\xe6\xba\x70\xeb\xf7\xd8\x24\xbb\x69\xd1\xe8\x43\xb8\x5f\x47\ +\xf4\xc9\x9a\x5a\x70\x84\x18\xf2\x08\x51\xa5\x87\xfd\xc7\x9e\x46\ +\xcc\xd1\x61\x0c\x57\x2c\xab\x28\x7b\xfa\x75\x39\xef\xab\xca\x41\ +\xbb\xe6\x10\x86\x31\x1e\x7f\xfe\xb3\x18\x1b\x8d\x65\x77\x2a\x87\ +\x33\xd2\x06\xbb\x38\xe6\xdb\xf0\x1c\x9d\x26\x69\xcb\x01\xcb\x7b\ +\x31\x5a\xed\x05\x54\x47\x17\xf1\xfb\x7f\xfe\xab\xe2\x2f\x12\x34\ +\x0d\x27\x74\x95\xe8\xf3\x80\xa6\x27\x3f\x2b\xe9\xba\x33\x86\xbf\ +\xf4\xa3\xdb\xaf\xe9\xc7\xb7\xd4\xd9\x49\xa6\x8b\x1c\xd7\x20\x67\ +\x87\xa1\x2c\x81\xfb\xe6\x5f\xa8\xdf\xa4\x91\xb5\xe4\xd7\xe5\x39\ +\x96\x35\x17\x76\x02\xf3\x5b\x80\xc5\xba\xd8\xef\xa7\xdd\xd2\x37\ +\xdf\x79\xcc\x8b\x6f\xe9\xf1\xdb\x28\xee\x3c\xf1\x9a\x79\x2d\x2e\ +\x20\x5e\x15\xc3\x30\x0c\xe3\xa2\xc1\xd5\x53\xae\x73\x87\xfd\x2b\ +\x48\x80\x4e\x72\x02\x0f\xdc\x7e\x13\x2a\xb5\x9a\xd6\x55\x1c\xb3\ +\xcf\xa9\x11\xdd\x0b\x2e\xb2\xc5\xd1\x69\xc5\x5b\x3f\xf4\x0f\xa5\ +\x2e\x8b\xeb\x3d\x8c\x8e\x55\xb5\xee\x76\x53\x4f\x93\xbe\x7a\xa7\ +\xbc\xe9\x12\x76\xf4\xfb\x6f\x95\x41\x55\x5c\xb1\xed\x56\xf2\x2b\ +\xff\x49\xd2\x43\x1b\x1d\x24\x69\x6f\xd9\x4c\x54\xfb\xa6\x04\x37\ +\xf9\x32\x11\xed\x27\x7d\x01\x86\xd6\x8e\x86\x91\x45\xfe\xd9\xd1\ +\x56\x18\x1e\xc5\x8a\x3f\x52\x32\x22\xd0\xd9\x5c\x8c\xe5\xf6\x6b\ +\x22\x34\xa5\x64\xcd\xce\xb4\x3c\x8b\x29\x1c\xc7\x4f\x3d\xcf\x9d\ +\xb2\xb8\x14\x86\x01\x75\xe1\xf1\x49\xf3\x14\x27\x4f\x9d\x46\x54\ +\x9d\x17\x6b\xaa\x27\xe9\xa7\x92\x76\x8e\x4a\xa5\xa2\xb6\x5e\x5d\ +\x6c\x8a\x85\xe0\x00\x0e\x1d\x79\x51\xf5\xd3\x63\xbe\xcc\xb0\xb4\ +\xb9\x40\xf8\xf3\x89\xd0\x5d\x6c\xeb\xca\x6f\x97\x17\xc3\x30\x0c\ +\xc3\x30\xce\x18\xeb\x50\x33\x0c\xc3\x30\x2e\x7f\x06\x3d\x48\xae\ +\xb5\x90\xf2\xba\x7f\xdf\x20\xf8\x0c\xee\x17\x86\xeb\x7f\x26\xf7\ +\x71\xfd\xfe\x32\xe5\x7d\x9b\xa1\x2f\x9c\x6e\xa6\x29\xbe\xe6\xd5\ +\x6f\xc0\x17\x1f\x7b\x01\x4b\x4b\x5d\x24\x89\xfb\x70\x7e\x39\x31\ +\x36\x34\x84\xec\xbc\x28\x94\x88\xf9\x15\x89\x4a\x8a\x6a\x35\x44\ +\xde\xeb\x60\xdb\x0d\x4d\x7c\xe2\xa1\xff\x0f\x2f\x1e\x7a\x1a\x41\ +\x18\x6a\x47\x15\xa7\xe4\x71\xe1\xd7\x51\xae\xbc\xab\x3f\x2f\xe5\ +\x7d\x6b\x89\x28\x95\x47\xd1\x3e\x55\x78\xf1\x37\xc0\x52\x73\x11\ +\x69\xd8\xd2\xef\xa7\xb1\x25\x27\x67\xe3\x0e\x03\xca\x3f\x1b\xba\ +\xf4\x8d\x68\x6d\x14\xa1\x9f\x8b\xa9\xe1\x98\x1e\x7f\xf8\x9f\x2c\ +\xf7\x3c\xf9\x55\x69\x9b\x1d\x3d\xbe\x01\xcc\xc5\xe7\x1e\xed\x50\ +\x5b\x76\xcb\x5a\x7e\xf2\x7a\x80\x43\x27\xa4\x7c\x50\x29\xf6\xa8\ +\x1a\xab\xe9\xf7\x60\x30\x17\x74\x65\xdf\xf2\x36\xd3\x66\x7e\x42\ +\x3c\x7f\xe0\x21\x54\xc6\x22\xf6\x19\x6a\x30\xed\x24\x92\x3f\x76\ +\x7e\xd2\xc5\x86\x1f\x76\xe4\xb1\xc3\x69\x6a\xbc\x82\x67\x4f\x7e\ +\x16\xcf\xee\x7b\x02\x21\xf5\x56\x79\xbe\x61\xca\x0b\x3f\xd7\xb8\ +\x74\xfc\xf9\xc1\xf5\x4a\xd6\xd9\xc1\x99\x8a\x77\x0f\x79\xc6\x0e\ +\x42\xbe\xc1\x1f\x22\x0e\xe5\xac\x8b\x62\xc4\x51\x45\xdc\x9c\x16\ +\x2b\x40\xb7\xdb\xc1\x4c\x73\x06\x87\x4f\x1f\xc2\xbe\x93\x2f\xe0\ +\xf9\x63\xcf\xe0\xc9\x43\x4f\xe0\xd1\x7d\x5f\xc2\xe3\x07\xbf\x84\ +\x27\x0e\x3d\x2c\x8b\xac\x0f\x3f\x8c\xa7\x8e\x3e\x8a\xa7\x8e\x70\ +\x79\x0c\xcf\x9d\x78\x02\xfb\x4f\x3d\x83\x23\xb3\xfb\x31\xdf\x99\ +\x96\x73\xa4\x87\x20\x4a\xb5\x43\x98\x7d\xc2\x61\x9e\x20\xe0\xb9\ +\x21\xe5\xeb\x34\x5c\x69\x1c\xa4\xfb\xfc\x95\x93\x61\x18\x86\x71\ +\xc1\xd9\xc4\x6d\x9f\x75\x43\xb7\xd9\x44\xab\xd3\x46\xa5\x26\x75\ +\x6f\x36\x81\x90\xdf\x4f\x93\xfa\x97\x1d\x65\xac\xb3\x7c\x5d\xc7\ +\x8e\x25\x37\x1b\x00\x2b\xed\x2e\xb2\x60\x09\xbd\x6c\x5e\xf7\xf2\ +\x45\x98\x32\xcb\x75\x23\x1d\xe5\x5d\xfd\xfa\xf8\x80\xeb\xe9\xc9\ +\x7d\x83\xf6\x2f\x27\xe2\xf0\x9b\x6e\x2d\x95\xa2\x38\xe6\x97\x66\ +\x91\x47\x5d\x1d\xa9\x46\xc3\x86\xfb\x74\xbf\x97\x27\x6b\xda\x54\ +\xda\xcb\x24\x3b\xb4\xb6\x54\x1b\x83\x0b\x43\xba\xda\x53\x71\x41\ +\x8a\xb8\xdc\xef\xdc\x0c\xeb\x8c\xa6\x48\xdd\xac\x97\xf5\x9b\xb4\ +\xf2\x47\x73\xa7\x5a\x8d\xd1\xea\x9e\x92\xf2\x94\x72\x65\xb8\x55\ +\xa8\xb0\x2d\xa3\x69\x07\x19\xfb\xea\x50\x09\xab\x78\xe8\xd9\x8f\ +\x23\xad\x88\xdd\xc8\x6f\xdc\xc5\x72\x9c\x24\x80\x98\x1c\xda\xb1\ +\x16\xf3\x45\x9c\xc9\x53\xf8\xa3\xcf\xfd\x06\xc2\xae\xe8\xad\x2f\ +\x53\xb9\xbc\x5d\xf4\xa8\x8a\xfc\xf1\xba\x3a\xb7\x3b\x27\xfd\xe2\ +\x72\x53\x5e\xc8\x20\xff\x41\x8b\x61\x18\x86\x61\x18\x9b\x43\xec\ +\x3d\x35\x41\x0c\xc3\xb8\x02\xb1\x8b\xdf\xb8\x22\xd9\xcc\x89\xcf\ +\xa7\xca\x41\xe1\xbc\x7f\xff\x7a\x2d\xfc\xd3\x69\x7f\x9c\x7e\xbc\ +\x8c\xf2\xbe\xb2\xdc\xb2\x1c\xfe\x68\x23\x04\x1f\x9c\xdd\x9a\x8d\ +\x15\xa7\x8e\x2d\xe0\xa6\x6f\xdd\x86\x9f\x7c\xef\x9b\x70\xcd\xb5\ +\x63\xfa\xd1\xf5\x8c\x2d\x3e\xb9\xfb\xce\x07\x83\xb2\x73\xc6\xff\ +\x71\xda\x47\x36\x9a\xf0\x8d\x5d\x1d\xa1\x25\x41\xb2\x64\x04\xd9\ +\x89\xab\xf1\xce\xb7\xfe\x18\xf6\xec\xbc\x05\x9c\x76\x4f\x04\x31\ +\x6a\xc1\x8a\x4b\x75\xf1\x9b\xde\xcd\x35\x29\xbb\x37\xa2\x24\x83\ +\x6f\x7a\x6b\x5b\x8c\x6e\xc8\x22\x1b\xcf\xbc\xf8\x08\x3e\x73\xe0\ +\x77\x30\xdd\x3d\x8a\x34\xe8\x01\x89\x6b\x30\x20\xed\x76\x07\xdd\ +\x4e\x8e\x54\xfc\x7a\x5d\xc9\x43\x37\x43\x22\x79\x72\xd3\x06\xb2\ +\x61\x28\x43\x9e\x86\x45\x03\x8f\x2c\x45\x4c\x2d\x3e\xd9\xd6\x91\ +\x7a\x51\x8e\x91\xb1\x08\x13\xdb\xaa\x18\x1d\x8d\xb5\x33\x86\x7d\ +\x69\x51\xc4\x4e\xb8\x4c\x47\x44\xb1\x53\x28\x0f\x62\x74\x3a\x1d\ +\x5c\x1b\xbf\x1e\x7f\xed\x2b\xdf\x2b\xe5\x25\xa5\xc8\xb0\x22\x8b\ +\xe5\xc9\x5f\x85\xc9\x94\xa1\x77\xbf\x1f\xd1\xe0\x29\x92\x6e\x8e\ +\x53\xc7\xf7\xe1\x0f\xbf\xf0\x6f\x11\x8f\x2c\xc9\x31\xe8\x20\x8c\ +\xdd\x71\x09\x54\x19\x27\x37\x63\x07\x9b\xc8\xe1\x9b\xe3\x1c\xd1\ +\x75\xe4\xe0\x49\xc4\xe9\x2d\xf8\xe7\x3f\xf4\x9f\x39\x63\xa4\x36\ +\x1a\xad\x4e\xa8\xd0\x67\x98\x68\x39\xae\xce\x90\x16\x2b\xd3\x0a\ +\x32\xdf\x06\x27\x41\x44\xef\x55\xa4\x68\xb5\x17\xb5\x73\x74\xa1\ +\x3d\x8f\x56\x6b\x11\x9d\xd6\x34\x8e\xb5\x4e\x61\x29\x9d\xc6\xb4\ +\xac\x4f\xcf\x1f\x47\x3b\xe3\x48\xc4\x0e\xda\xc9\x12\xba\xdd\x25\ +\xc4\xb5\x1c\xb1\x1c\x87\x20\x4f\xb5\x4c\xea\xfc\xbe\x1c\x8f\xbf\ +\xe4\x7f\xa4\x5e\xc7\x58\x6d\x02\x23\x95\x9d\xd8\x39\x75\x13\x76\ +\x4d\x5d\x8b\xc9\x68\x14\xf5\x6c\x87\xf8\xed\xc6\xce\x1d\xbb\xe5\ +\xf8\x4e\xb9\xe4\xa5\x30\x39\x6a\x8d\x9d\xae\x51\xcc\x13\x9e\x5d\ +\x7c\xd4\xd3\xed\x36\x0c\xc3\x30\x2e\x73\xf4\xa6\xef\x9c\xfd\x78\ +\xef\x5e\x92\xe1\xd8\x33\xfb\xf0\xca\xef\x7d\x0b\xbe\xf9\x6f\xec\ +\xc5\x03\x5f\x31\x21\x75\x46\x5d\x6c\x0a\x76\xfe\xb0\x0a\x2c\x3a\ +\x8e\xc0\x0e\x22\xa9\xe7\xd8\xc9\x24\x76\x52\x1c\x55\x31\xdf\x99\ +\x41\x75\xe6\x15\xf8\x91\x77\xfc\x2c\xc2\x5a\x55\x77\x31\x51\x67\ +\x1f\xf4\xd5\x89\x65\x5d\xd6\xd2\x6b\x33\x61\x3c\xfd\x61\x05\xda\ +\x51\xea\x2d\x95\xb4\x76\x06\x4a\x1d\xfd\xf0\x33\x7f\x85\x2f\x9d\ +\xfc\xdf\x98\xee\x1c\xd7\xce\x26\x1a\x7e\xac\xc3\xdd\xd4\xd9\xb2\ +\x4e\x73\xa9\x7b\x7b\x48\x96\x2a\xb2\x3f\x97\xfa\xd8\x4d\xbd\xac\ +\xa3\xee\x28\x91\xd5\x27\x3b\x17\xe5\x4f\x93\x93\x1f\x56\xf7\xb1\ +\xd8\x93\x95\x4a\x80\x7a\x3d\xc7\xf8\x64\x88\xf1\xb1\x50\x47\xd8\ +\x47\x7c\xc9\x45\xc2\x70\x24\x39\xa7\x61\x4c\x73\x37\x42\x6d\x47\ +\x76\x2f\xbe\xe1\x8d\x3f\x8e\xb8\x3a\x4e\x29\x82\xeb\x70\x73\xf8\ +\xf5\x26\x59\xce\xbb\xd8\x53\xa2\x33\xf9\xf5\x3f\xf9\x07\xe8\xc4\ +\xa7\xd1\xcb\x5b\x92\xb8\xd8\x10\xb2\x9f\xc7\x8d\x53\x9e\xd3\x51\ +\xad\x45\x58\x5a\x1a\xc3\x37\xde\xf5\x77\x70\xfb\xcd\x2f\x93\x18\ +\x12\xc0\x19\x33\x25\xb6\xa8\xc7\x79\x67\x45\xdf\x97\x6a\xda\x9f\ +\x97\x41\xf8\x58\x5c\xbb\xf0\xab\x63\x5d\xec\xf9\x37\x0c\xe3\x4c\ +\xb0\x2b\xdb\x30\x86\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\xc6\x65\ +\x09\x4f\xec\xf5\xac\x45\xbf\xbf\x7c\x01\xf4\x6f\x6f\x44\x39\xfc\ +\x5a\x71\xbd\x7f\x79\xdd\xcf\x46\x32\xca\x94\xc3\xa8\x2c\xb7\xc1\ +\x46\x88\x24\xcf\x10\xcd\x75\xb1\xfd\x1b\xa6\xf0\xd6\x37\x6c\xc7\ +\x37\xbf\xe7\x01\xa4\x49\x24\x21\xd8\xfa\x21\x81\xd8\x39\xa3\x8d\ +\x2a\x19\xe2\xb8\xb2\x1c\x5d\x1b\x30\xd8\x50\x22\xa6\x00\xa7\xd0\ +\x4b\xb2\x10\xf9\xd2\x36\x04\x8b\xa3\xf8\xda\x37\xfe\x43\x5c\xb3\ +\xf3\x46\xa4\x29\xbf\xcb\xc6\xde\x1a\x76\xb9\xb1\x51\x88\x02\x55\ +\xc2\x6a\xbc\x77\x79\xdd\xcf\x20\xff\x92\xdf\x72\x87\x1a\x1b\x36\ +\xf8\x1f\x24\xf8\xe8\xa7\xff\x10\x2f\xf6\x3e\x86\xd9\xce\x34\xb2\ +\x20\x43\xce\xd1\x77\x0c\x2b\xfb\x9b\xcd\x0e\x7a\xbd\x00\x59\x2f\ +\x97\xb5\x68\xd8\xe1\x04\x3f\x99\x36\x0a\x69\xe3\x90\x08\xcb\x7b\ +\x52\x0e\x8c\x27\x7f\x2b\x6f\x43\xd3\x2d\xb9\x91\x9f\x30\xcc\xd1\ +\x18\x0d\xb5\x43\x6d\x7c\xa2\x22\xdb\x6c\x7f\x09\x21\xde\x92\x88\ +\x94\x57\xa5\x8a\x8c\x0d\x4f\xa1\x94\x4f\x27\x41\x65\xe9\x3a\xfc\ +\xe0\x3b\x7f\x06\x41\x3c\xaa\x32\xd9\x35\xb3\x6a\x34\x20\xe3\x0d\ +\xc2\x27\x2d\xb8\xe6\x28\x76\x40\xc9\x71\xeb\x46\x78\xdf\x47\x7e\ +\x05\xed\xf8\x4b\x72\x7c\x96\x64\x6f\x4f\x75\xcb\x03\x36\x40\x65\ +\xe2\x16\x85\xc4\x83\x6b\xc6\x62\x33\x56\x9a\x75\xd1\x5a\x4a\xf1\ +\xe4\x23\xc7\xf1\x2f\xfe\xe6\xef\xe0\xba\x6b\x6f\xd4\xcf\xb6\xb0\ +\xc1\x6c\x25\xa1\x52\x82\x67\xcc\x5a\x99\xf1\x48\xb9\x32\x08\xcf\ +\x1f\xd7\xa3\xa7\xf4\xe4\x3c\x5b\x58\x98\xc1\xfc\xc2\x29\xcc\xb4\ +\x4f\x62\x7a\xf6\x28\x0e\x9f\x7a\x0e\x47\xe6\x9f\x96\xed\x69\x2c\ +\xce\x9f\xc0\x62\xb6\x88\x91\x5a\x07\xdb\x76\x8e\x60\xc7\x68\x1d\ +\xa3\x13\x55\x34\x2a\x01\xaa\xf5\x18\xe3\x23\x55\xd4\xeb\x21\xf8\ +\x8d\x15\xbe\x3e\xce\x15\x73\xaf\x8d\x6e\xb2\xcd\x51\x01\xec\x1c\ +\xe3\x28\xca\xa4\x1b\x62\x6e\xbe\x8d\xe6\x5c\x8a\x66\x22\x01\x3b\ +\xa3\x98\xac\xdc\x83\xdb\xef\x78\x2d\x46\x6b\x3b\x30\x19\x5f\x87\ +\x6d\xdb\x76\xa2\x1e\xed\x56\x09\xb9\x9c\x27\xb9\x1c\xdc\x40\x16\ +\x9d\x86\x4a\x0f\xb4\x8e\x01\x3c\x7f\x30\xc9\xf3\x9a\xa0\x61\x18\ +\x86\xb1\x8a\xd2\x7d\xd8\xdf\x8e\xf9\xc2\xca\xfc\x91\xd3\xb8\xfd\ +\x5d\xf7\xe3\xaf\x7f\xcf\xcd\xb8\xe7\x2b\x1a\x88\x83\x11\xa9\x6b\ +\xba\x08\xe3\x48\x3b\x97\x88\xf6\xbd\x48\xc5\xc4\x2a\x57\x6a\x23\ +\xa9\x9a\x22\xb4\xb3\x19\xc4\x4b\x77\xe2\x1d\xf7\xfc\x38\x6e\xbc\ +\xee\x3e\xad\xdf\xd5\x62\x52\xe1\xae\x9e\x59\x13\xaf\xcb\x66\xea\ +\x86\x41\x61\xe8\x47\xbc\x0c\x3a\x4b\xf6\x14\x47\x61\x05\x51\x82\ +\x4f\x3c\xf4\x01\x3c\xdb\xfe\x73\x4c\x37\x4f\xb9\xd1\xf1\x62\xff\ +\xe5\x29\x2d\x41\xa9\x4f\x13\xa9\x4f\xd9\x89\xd6\xc9\xd0\x6d\x8a\ +\x5d\xc9\xfe\x36\xc9\x03\xeb\x59\xda\x53\x14\xcb\xef\xab\x69\xa7\ +\xe2\x72\x22\x92\x2b\xc9\x16\xa7\xa4\xae\x88\xdd\x54\x6f\x64\xda\ +\xa1\x36\x2a\x36\x55\xad\xc6\x29\x9c\xf9\xe2\x12\x6d\xa4\x58\x96\ +\x48\xeb\x6d\x4e\x6b\x5d\x9f\xbf\x05\xdf\xfc\xd5\xef\x45\xa3\x76\ +\x55\x21\x8b\x76\x9d\x2f\x9f\x8d\x0a\xa0\x0f\x89\xce\xef\xa3\xb1\ +\x2a\x67\xb7\xdc\x97\x9e\xfe\x2b\x7c\x7e\xdf\x6f\xa0\x8b\x79\xd9\ +\xee\xc9\x6e\xca\xe5\xcb\x53\x6e\x54\x7c\x96\x25\xea\x97\x87\x55\ +\x8c\xb6\xef\xc4\x0f\xbe\xed\x27\x91\x32\x0f\x72\x7c\xd5\xf6\x54\ +\xb6\xa8\xc3\x50\xf0\x69\x3b\xca\x1a\x70\x4f\xe9\xd0\x16\xd0\x1a\ +\x2c\xfb\x15\xa1\xd4\x28\xa3\x95\xe9\xfc\x98\xa5\x95\x30\x2b\x72\ +\x96\xd7\xcb\xf6\xab\x6c\xe9\x4a\x7e\xb4\x1c\xb8\xe1\x29\xbb\x0d\ +\xc3\xb8\x94\xb1\xab\xd9\x30\x86\x47\xf4\x2f\x85\xc2\x6d\x18\x86\ +\x61\x18\x97\x3e\x1b\x59\x8a\x7e\x3f\xd7\x83\xdc\x17\x2b\x65\xfd\ +\x4a\x6e\x3e\x36\x6b\x23\x40\x1a\xe3\xe3\x9f\xff\x14\x9e\xdf\xff\ +\x24\xde\xf8\xa6\x9b\x91\xf2\xe1\x38\x63\xf3\x81\x84\x91\x1f\xed\ +\x97\x61\x63\x88\xc6\x71\x4d\x3b\x6c\xc8\x70\x21\x64\x4b\x76\x70\ +\x54\x5b\x5e\x5b\x44\x1a\x25\x78\xf6\xe9\xc7\x70\xdd\xae\xdb\x30\ +\x36\xb6\x53\xe4\x64\xf2\x8c\xed\x42\xba\xd8\x25\x28\x90\x78\xef\ +\xbe\xdd\x9b\x46\xe2\x31\x1b\x1a\x5d\x7e\xb4\x31\x2a\x88\xf1\xe8\ +\x0b\x1f\xc3\x22\x8e\xa0\x95\xb4\x54\x5f\x36\x16\xf8\x5c\x74\x3a\ +\x7c\x73\x3a\x70\x9d\x67\x6c\xfc\xe1\x9a\x7b\x18\x4c\xd6\x6c\x57\ +\xd0\x06\x20\x6e\x79\xc1\xe2\xd6\xf6\x83\x62\x8b\xee\x38\x06\xaa\ +\xf5\x48\x1b\x80\xb8\x1d\xc5\x2c\x0f\xc6\x61\x23\x0c\x4b\xca\xa5\ +\x98\xb4\xbb\x08\xd3\x1a\xee\xbd\xe5\x8d\xa8\x54\xc6\x54\x80\x93\ +\xa1\xbf\xb2\xac\x83\xdf\x4d\x41\x85\x0e\x1c\x49\x77\xfc\xe4\x51\ +\x3c\x79\xf4\x4f\x44\x89\x45\xf1\x63\x03\x9c\xa4\xc5\x46\x27\xd9\ +\xef\x3a\xd4\x5c\x44\xbf\x16\x2f\x6d\x00\xcb\xd1\x45\x2f\xa9\xe3\ +\xb9\x2f\x3f\x8b\x37\xbe\xee\xed\x9a\x77\x36\x6c\xb9\x04\x18\xd6\ +\x85\x1f\x26\xfe\x7c\xe1\xb1\x61\xa3\x1a\x3b\xba\xd8\x48\xc6\xce\ +\x3e\xb6\xcd\x9d\x3a\x7d\x1c\x27\x0e\x3d\x83\xcf\x3d\xf7\x51\x7c\ +\xfe\x85\x3f\xc3\xc7\x1f\xfe\x1d\x7c\xea\xe9\xff\x83\x2f\x1f\xfc\ +\x08\x4e\x77\x9f\x00\x76\x4d\x63\xef\x0d\x35\xdc\x7e\xd7\x24\xee\ +\xbd\x63\x0a\x77\xdf\xb9\x03\x7b\x77\x8d\x63\xfb\xf6\x3a\xc6\xea\ +\x01\x6a\xd5\x5c\xce\xc1\x54\x8e\x65\x0f\xdd\x76\x07\xbd\x56\x0f\ +\x3d\x29\xf3\x44\xdc\x49\xa7\x8b\xb4\xd3\x43\xda\x15\xbf\x5e\x5b\ +\xb6\xdb\xe8\x75\x97\xa4\x3c\xe6\x30\x52\xef\x60\xbb\x9c\xa6\xd7\ +\xec\x02\xae\xbe\x3a\x45\x3c\x72\x08\x87\x8e\xfc\x25\x5e\x3c\xfc\ +\x71\x1c\x38\xf6\x28\x3a\x79\x13\xcd\xce\x21\x64\xed\x4c\xc2\x6e\ +\x2f\x1a\xce\x44\x79\xed\x5c\x63\x59\xcb\xa2\xc7\x45\x18\x7e\xb1\ +\xad\xc6\xa7\x43\xce\x75\x5a\x86\x61\x18\xc6\xda\x14\xf7\x60\x7f\ +\x2b\x66\x5d\xd0\x18\x1d\xc1\xbf\xfb\xaf\xbf\x84\x5b\xee\xae\xe3\ +\xba\xeb\x58\xcf\xb3\x7e\xa3\x3d\x22\x75\x2c\x5f\x6c\xd1\xba\xcf\ +\xd5\xd1\x8c\x47\xfb\x8b\xf1\x6a\x61\x5d\x3b\x90\x4e\xce\x1f\xc1\ +\xce\xf8\x0e\x8c\x8f\x4f\x16\xb5\xb1\x54\xcc\x1a\xd6\xa7\x52\xa2\ +\xbf\xba\x1e\x10\x44\xf1\xe1\xc8\x5a\x61\x48\x69\x1f\x9d\x6a\xb9\ +\xa8\x1f\xeb\xee\x08\x8f\x1f\xf8\x04\x66\xd3\x83\x68\xf6\x68\x4f\ +\x89\x6f\xea\xf2\x42\xcb\x89\xb6\x45\x92\xb8\x8e\x35\xce\x08\x99\ +\xf3\x05\x2b\xc9\x2b\x47\xa7\x69\x58\xba\x19\xae\xac\x8b\xc0\xe8\ +\x2c\x97\x48\x0a\x88\x03\xfb\xab\x52\x97\x57\x2b\xe2\xd6\x6d\x96\ +\x13\x3b\xee\x2a\x1a\x8e\x69\xa8\x31\xda\xae\xe3\xe6\xbd\xf7\xa3\ +\x51\xdb\x21\x1e\x14\xe8\x45\xf2\xb7\x24\x7c\x53\xb0\xfc\xf9\x62\ +\x18\x9d\x21\xfe\xe2\x8b\xbf\x81\x6e\x38\xad\xdf\x07\xd6\x19\x06\ +\x24\x51\x8e\x90\x8b\xc5\xae\xa3\x5b\x47\xac\xb1\xa3\x2f\x17\x6b\ +\x23\xeb\xc8\xba\x8e\xbd\x3b\x6e\xd1\x8c\xb8\xb2\xf0\x6c\x55\x8f\ +\xe1\x43\x0d\x7c\x71\xbb\x52\x92\xb5\xda\x5f\x3c\x5e\x5c\xcb\x31\ +\xd1\x6d\x09\xc3\x29\xda\xa5\x6c\x79\xbe\xa9\x4d\xa3\x4b\xe1\x37\ +\x68\xd1\x70\x5c\xcb\x1f\x6d\x4e\x59\xbc\xbd\xac\x69\x6a\xc7\x9a\ +\x4b\xb3\xe4\x30\x0c\xe3\x12\xc7\xae\x66\xc3\x18\x1e\xd6\xa1\x66\ +\x18\x86\x61\x5c\xba\x94\x9f\x34\x07\x59\x88\xfe\x09\xb4\xbc\xaf\ +\x3f\xec\x85\xb6\x2c\x7d\xfa\x5c\xfb\xa5\xcc\x4b\xf4\x2b\x32\x55\ +\xf8\x73\xc5\xa6\x92\x30\xe8\xe1\xfa\x1b\x1f\xc0\xff\xfa\xe0\x7f\ +\xc2\x0d\xd7\x4f\x62\xe7\xd5\xe3\xda\xd1\xc4\x86\x86\xe5\x6f\xa7\ +\xf1\x81\x59\x9e\xbc\xf9\xa0\xbd\x02\xf7\xf0\x91\x5a\x76\xb3\xe1\ +\x01\x11\x38\x0d\x62\x16\x76\xb1\xef\xb9\x27\xb0\x6b\xd7\x1d\x18\ +\x1f\xdd\x8e\x24\x49\x10\xb0\x21\x42\xbb\xac\x3c\x12\xcb\x8b\x72\ +\x8a\x9c\x05\xd4\x82\xbf\xd4\x8f\xba\x50\xf7\x10\x9f\x7e\xfc\x03\ +\x68\xc7\xd3\xe8\xa5\x1d\xd9\x1f\x6a\x23\x82\xea\x9c\x71\x9a\xc7\ +\x54\xf2\xc8\x0e\xb5\x1c\x29\xd7\x6c\xf8\x91\x3c\xb8\x8f\xec\x8b\ +\x5b\xb7\xe9\x2c\x2b\xe9\xd0\x4e\x48\xd9\xa4\x0f\xbf\x4d\x56\xa9\ +\x45\x3a\x0d\x10\xfd\x23\xd9\x66\x34\xea\xc1\x92\xa3\x43\xc5\x64\ +\x09\xa2\x74\x04\xb7\xec\x7d\x35\xc6\xea\x3b\xd8\xb4\x24\x7b\x9d\ +\x10\xca\x59\x49\xa7\x04\xbd\xdc\x4e\xe7\xd4\x9f\x54\xf4\x8d\x50\ +\x89\x62\x7c\xe8\xaf\x7e\x17\xf9\xc4\x8b\x48\xba\xad\xa2\x43\x4c\ +\x76\xb3\xe5\x4e\x53\x74\x1e\xda\x30\x22\x7f\xda\xcc\x21\xee\x48\ +\x74\xec\x49\x7e\x3b\xed\x79\x2c\xcc\xb7\xf0\xe6\x57\x7e\x13\x2a\ +\xd5\x4a\x21\xdc\xe1\x8e\xe8\x99\xc2\xb4\xfd\xda\xe9\xa2\xd2\xf2\ +\x14\x01\xcf\x91\x30\xd6\x06\xb4\x44\xf4\x9b\x3d\x7e\x18\x2f\x1e\ +\x7f\x06\x5f\x7a\xe1\x2f\xf1\xb1\xa7\xfe\x00\x9f\x7c\xfc\x77\x70\ +\x74\xf6\x13\xe8\x4d\x1e\xc2\xf8\x35\xc0\x9e\x5b\x47\x71\xfb\x3d\ +\xdb\x70\xfd\x4d\xe3\xb8\x76\xa2\x8e\x46\xcc\x63\xc6\xb7\xde\x7b\ +\xa2\x7f\xa2\x6f\xc9\xb3\x51\x8f\x53\x73\x06\x79\x8c\x38\xac\x20\ +\x0e\xaa\x6e\x91\x74\xf8\xad\xb5\x48\xd6\x3c\xf3\x74\xba\xa6\x20\ +\x42\xa8\x0d\x47\x91\x84\xa9\x20\xcc\xaa\x22\x4f\x74\x11\x59\xbd\ +\xb6\xc8\x6c\xb5\xa5\x7c\xda\xd8\xb1\xbd\x81\x9d\x3b\x52\x8c\x54\ +\x4f\xe3\xf4\xb1\xcf\xe2\x85\xe7\xfe\x0a\x87\x0e\x3f\x8f\x5e\x30\ +\xab\xa3\x0a\x1a\xd5\x29\x44\x52\x66\xfc\xce\x5a\xda\x95\x7c\x8a\ +\x68\x96\x9f\xe6\x56\xca\xf7\xec\xca\xaf\x84\x2f\xc2\x7e\x86\x24\ +\xde\x30\x0c\xc3\x58\x87\xb5\xee\xc1\xa4\xf0\xf7\xbb\xd5\xba\xe8\ +\xe5\xf8\xcd\x0f\xfe\x0e\x46\xa6\xe6\x71\xcb\x1d\x13\x52\xcf\xd4\ +\x44\x04\xc7\x3e\x71\xa7\xfc\x8a\x51\xc1\x29\xb3\x39\x52\x5a\xbd\ +\xe4\x8f\x23\xdd\x2b\x31\x3b\x95\x52\x2c\xa6\x27\xb0\xff\x99\xe3\ +\x62\x4f\x8c\x63\xc7\xd4\x6e\x09\x20\xf5\xb8\x1a\x34\xfa\xaf\x31\ +\x96\x29\x39\x95\x95\x2a\xf7\xa5\xf8\xb0\x7e\x5f\x7f\x5c\x8f\xfa\ +\x17\x75\x36\xa1\xad\x23\xb6\x09\xed\x8a\xcf\x3d\xf3\x41\x2c\xe1\ +\x24\xba\x62\x4f\x51\x8e\x33\x83\xc4\xb6\x10\xfd\x38\x25\x23\x47\ +\xa8\x65\x9c\x46\x5b\xea\x54\x96\x85\xbe\x3c\x23\x75\xa4\x9a\x5d\ +\x4c\x97\xe1\x58\x81\x4a\x58\xa2\x69\xc8\x0f\x8b\x82\x9d\x67\xb4\ +\x1d\xd9\xa1\x56\xab\x8a\xd5\xa9\x23\xc2\x68\x7f\x72\x64\x5f\x86\ +\x6a\xb5\xaa\xe9\xa8\x4d\xd5\xab\xe0\x9a\xdd\x77\x61\xdb\xe8\x35\ +\x7d\xd9\x71\xbf\x2b\xeb\x8d\x90\x7c\x4a\x50\xad\xaf\x45\xc9\x67\ +\x0f\x3e\x87\x7d\x33\x9f\x40\x17\x52\xcf\x53\x45\x11\xce\x19\x07\ +\x74\x74\x9a\x64\x56\x0f\x43\x51\xcf\x33\x83\x95\x5a\x8a\x47\x0e\ +\x3d\x8c\xfb\x77\xbc\x0e\x8d\xb1\x71\xfa\x32\x80\x5b\x2b\x9b\xd5\ +\xe3\x4c\xf0\x39\x77\xa9\xb0\xac\xa8\x99\xb3\x36\xdd\xb6\x58\xb3\ +\xa2\x67\x2a\x7a\xf3\xfc\xe3\x0b\x56\xce\xf6\xa1\xfd\xc5\xce\xc2\ +\x95\x85\x6a\xd3\x16\xee\xa1\x9d\x77\xd0\xea\x2e\xa1\xd5\x5b\x42\ +\x53\x96\x85\xee\x02\x16\x3a\xf3\x58\x4a\x16\xd0\x4c\x16\xb1\x28\ +\xdb\x74\xb7\xc4\xdd\xc9\x5a\x90\x18\x62\x04\x07\x62\x6b\x49\xfa\ +\x2a\x8b\xcf\x13\xa2\x07\x17\x1d\x9a\x28\xda\xf1\x9f\x6a\x69\x71\ +\x9c\xcb\x32\x31\x0c\xe3\x5c\x63\x57\xb0\x61\x0c\x0f\x9b\xf2\xd1\ +\x30\xae\x60\xec\xe2\x37\x2e\x6a\xfc\xc3\xdb\xb9\x38\x51\xcf\x95\ +\xdc\x33\xe1\x8c\x74\x29\x22\x14\x56\xb1\x13\xc1\x39\x0f\xab\xb8\ +\xfb\x1d\x37\xe2\xda\xdb\x17\xf1\x3d\xdf\xff\x3a\xf4\xda\x9c\xae\ +\x91\xcd\x17\xec\xac\x28\xde\x62\x95\x07\x71\x6d\xd4\xd0\xb8\xee\ +\xa1\x59\xfd\xe5\x8f\x0d\x2a\xdc\x08\xf8\x31\xf9\x08\x48\x9a\x0d\ +\xc4\x0b\x7b\xf0\x35\x6f\xfc\x7e\xec\xd9\x71\x97\xbe\xa5\xcd\x20\ +\xae\x29\x85\x14\x0a\x10\xaa\x54\xce\x4b\xd9\xbd\x29\x5c\x03\x90\ +\x76\x66\x88\x0e\xda\x71\x16\xa4\xf8\x8f\x1f\xf8\x87\xc8\xc6\x16\ +\xd0\xee\x35\x35\x94\x3e\xd4\xcb\x7e\x76\x9e\xb5\x96\x12\x24\xcc\ +\xb6\x2c\xbd\x9e\x9b\xae\xc8\x35\x00\xb1\x53\x4d\xfc\x13\x37\x55\ +\x11\x95\x61\x1e\x99\xc0\xb2\xc6\x74\x8b\x30\x4e\x47\xd4\x18\x09\ +\x31\x36\x59\xc5\xc4\x54\x55\x3b\xd7\xb8\xb0\xf1\x89\x65\x13\x71\ +\xba\x4b\x91\xc7\xa9\xa0\xc2\xac\x8b\x6c\x61\x14\x5f\xf5\xb2\x1f\ +\xc1\x5d\x37\xbc\x09\x09\xd8\x01\x59\x92\x49\xd7\xba\x79\x96\x9d\ +\xfa\xb6\xb6\x3b\x26\x07\x8f\x3d\x86\x8f\x3e\xf5\x1f\xd0\x13\xb9\ +\x39\xa7\x36\xe4\xb8\x42\x36\x9c\xb0\x61\x44\x32\x20\x2b\x89\x51\ +\x34\x40\xc9\xc2\xb2\xe1\x94\x49\x3c\x0e\x5c\xa6\x8f\xcf\x62\x76\ +\x36\xc6\x0f\x7d\xcb\xff\x83\x3b\x6e\xb8\x9f\x4d\x2f\x3e\xe4\xf2\ +\xef\xe6\x28\x0a\xa7\x14\x83\x5b\x94\xa7\x1a\xa8\x6e\x6c\x90\x72\ +\x47\x7e\x6e\xe1\x14\x4e\x1e\x7b\x16\xfb\x17\x5f\xc4\x0b\xcf\x7f\ +\x12\x8f\x9d\x7c\x04\x18\x6b\x62\xd7\x9e\x06\x46\x76\x8c\x60\xb2\ +\x12\xca\xb9\xd7\x91\x38\x19\x2a\xb1\xc4\xcd\x63\xd7\xf1\x25\xb2\ +\x2a\xec\xbc\x64\xc7\x98\xec\xd5\x73\x90\xe7\x9f\x6e\x39\x8d\xe5\ +\xec\xd4\xb4\xfd\xb1\xe1\xdb\xed\x81\x9c\x07\x1a\x8a\xf3\x56\x15\ +\xe1\x58\x8e\x3c\x4f\x34\x8c\x48\xa6\x3b\x90\x32\xe1\x9a\x07\x3f\ +\x4f\x53\x64\x72\x4e\xb0\xa1\x33\xaa\x02\xf5\xa8\x8e\xc5\xc5\x16\ +\x8e\x1c\x6c\x4a\xfa\xb7\xe1\xe6\x3b\xbe\x1a\xbb\xb7\x7f\x25\xae\ +\xdb\x76\x37\xa2\xca\x14\x52\xcd\xac\xc8\xe0\xcc\x95\xda\x31\xca\ +\xb4\x0b\x37\xd7\xc3\x82\x99\x1d\xa6\x3c\xc3\x30\x8c\xcb\x99\xb3\ +\xbd\x67\x32\x7e\x19\x2f\xab\x24\x77\x95\x78\xf1\xff\xce\x1f\xff\ +\x21\x3c\xb7\xf8\xfb\xf8\xe1\x1f\x7e\xa5\x6c\xd7\xa5\x4a\x49\x10\ +\x44\xae\x5e\xe6\x7e\xd6\x39\xfc\x46\x58\x26\x06\x46\xc4\x4e\x0e\ +\xf1\x8c\x02\x8e\x86\xea\x21\xed\x54\xd4\x7e\x5a\x3c\x2e\xb6\xd3\ +\xfd\xdf\x89\x9b\x6f\x78\x2d\x6a\x11\x3b\xe5\x34\xe2\x60\x4a\xba\ +\x0c\x74\x97\xd7\x9e\xfe\xed\x55\xb0\x5e\x74\x6b\xd6\x95\xd4\x3b\ +\x0c\x12\xfc\x97\x3f\xf9\x09\xb4\x1b\x27\xd0\xec\x36\x45\x57\xb5\ +\x0c\xa5\xce\x74\x36\x05\x47\xbe\x37\x97\x72\xa4\x2d\xb1\xa5\x7a\ +\x01\x7a\x7c\xd1\x45\xea\x53\xbe\x00\x23\xbb\xa5\x0c\xb8\x2d\x12\ +\x35\x4d\xe6\xd8\xd5\x91\x5c\xc2\x62\xca\xc7\x6a\x35\x13\x3b\x2a\ +\xc4\xf8\x78\x8c\x6a\x3d\x04\xab\x53\xee\xcb\xa4\x3e\xae\xd7\x47\ +\xc4\x26\x93\x7a\x59\xea\xf3\xb0\x3d\x8a\x97\xdf\xf2\xd7\xf0\x8a\ +\x9b\xde\x25\x25\xe9\xa6\xf1\x76\x78\xd7\x8a\xcf\xda\xf8\xcc\x53\ +\x3f\xb1\x50\xc4\x76\xfa\x9d\x8f\xfe\x32\x9a\xf1\x53\x68\x75\xe7\ +\xc4\x86\x93\xbc\x24\x89\x1b\x91\x2e\xc6\x06\xed\x42\x8e\x54\xd3\ +\x63\xc8\x63\x26\xeb\x4c\x94\x0f\x82\x3a\xf6\x44\xaf\xc0\xb7\xbe\ +\xe5\xef\x4a\x78\xd1\x57\x67\xaf\xf6\xb2\x37\xa3\xc7\x56\xf1\xb2\ +\x57\x60\x2a\x7a\x7e\xa8\x4b\xf2\xa3\x05\x0d\x7d\x99\x68\x35\x4d\ +\x2c\x34\x9b\x68\xb7\x17\xd1\x49\x3a\xe8\x64\x4d\x70\x3a\xd2\xa4\ +\x37\x8f\x39\x59\xda\xe9\x3c\x5a\x69\x13\xad\xde\xa2\x98\x99\x9c\ +\xee\xb2\x87\x44\x0c\xe4\x2c\xef\x22\xac\x8a\x6c\x4e\xbd\x29\xe5\ +\xcd\x17\x88\xa2\xa0\x82\x38\xac\xa2\x1a\x8e\x60\xa2\xb6\x0d\x23\ +\xd5\x51\x4c\xe6\xdb\x50\xc9\x27\xe4\x58\x36\x30\xd6\xd8\x81\xc9\ +\xb1\x5d\x92\x66\x43\x53\x96\xe2\x95\xf8\x62\x63\x51\x47\xf9\xf7\ +\x67\x98\x61\x18\x97\x16\x76\xe5\x1a\xc6\xf0\xb0\x11\x6a\x86\x61\ +\x18\xc6\xc5\x89\xb7\xf8\xb8\x1e\xf6\x42\x06\xf9\x6f\xb4\x9c\x2b\ +\xbc\xec\x72\x1a\x9b\x4e\x4f\x9e\xba\xd9\x28\xc0\x27\xe4\xa4\x8b\ +\xc6\xc4\x2d\xf8\x1f\x1f\xfb\x3d\xdc\x79\xd3\x76\xec\xdc\x55\x45\ +\x90\x04\xda\x11\x43\x81\x6c\xf8\xd0\xe9\x04\x35\x1a\x1b\x43\x7c\ +\x22\xbe\xcb\x86\x61\xe8\xca\x11\x66\x91\x3c\x80\xa7\xe0\xf7\x26\ +\x5e\x7c\xf1\x31\xec\xd8\x7e\x93\x3e\x5c\xfb\x11\x62\x3a\x8d\x8f\ +\x93\xe4\xd6\x25\xa7\x2e\x4c\x72\xb3\x14\x71\x56\x44\xb0\xe3\x28\ +\xc7\xa9\xf9\x63\x78\xf2\xf0\x27\x91\x46\x6d\x24\x69\x22\xfe\x4e\ +\x3f\x6d\xd0\xc9\x38\x42\x8d\x9d\x67\xb9\x36\x04\xb1\xe3\x6c\xb9\ +\xc1\x47\x54\xe3\xc2\x86\x13\x0d\x4b\x65\xb4\x93\x44\x58\x5e\xb1\ +\xf3\x86\xf2\x80\x98\xdf\xee\xaa\x85\x3a\x42\x4d\xa7\x28\x0a\x65\ +\x0f\xf5\x91\x35\xdf\x04\x56\x28\x48\x12\xa9\xe6\x35\x44\xf1\x14\ +\x6e\xbe\xfa\x01\x91\xe0\x9a\x14\x0a\x91\x9a\x4c\x69\x4b\x28\x9a\ +\x48\x28\x4b\x3b\x87\x64\xc9\xf8\x2d\x91\x00\x27\xe6\x0f\xe3\xc3\ +\x0f\xfd\x47\x24\x95\x19\xf0\x03\x1e\x39\x98\xbf\x22\x30\x8f\x51\ +\x21\x86\x79\x76\xeb\x02\x66\x45\x96\x20\x92\x38\x69\x0f\x8b\xf3\ +\x2d\x4c\x4d\x5c\x8f\xdb\xae\xbf\xcf\xa5\x55\x2c\xa5\x18\xab\xf1\ +\x81\x96\x79\x69\xb3\x08\x1b\x0b\xd9\xb1\xc7\x39\x11\xc3\x9c\xdf\ +\x95\x8b\x38\x7b\x28\x0e\xed\x7f\x11\x8f\xec\xff\x0c\x3e\xf3\xec\ +\xef\xe1\x4f\x1f\xfc\x15\x1c\x9d\xfb\x24\x5a\xd7\xcd\xe0\xda\x5b\ +\x46\xb1\x7d\xcf\x14\x46\x6a\x3d\x54\xe5\xfc\x48\xa4\x9c\xd8\x54\ +\xc7\x37\xf6\x43\x1d\x45\xe6\x1a\xb4\xd8\xe0\x16\x4b\xc6\xf4\xbd\ +\x75\x29\x0b\xd9\xab\x69\x27\xb2\xb8\xb7\xa2\x5d\xb9\x87\x11\x1b\ +\xff\x78\x9c\x8b\xf2\x95\xc4\x75\xfa\x28\x3d\x14\x6c\xd0\x91\x30\ +\xf2\xc3\xe9\xa5\xa8\x2b\x7b\x59\x43\xe6\x4b\xd0\xf7\xc4\xd8\x50\ +\xc8\xa9\x28\x39\x92\x2e\xe7\x35\x10\xa1\xdd\x6c\xcb\x71\xce\x71\ +\xf5\x9e\x31\x39\xaf\x4f\xe2\xe0\x81\xcf\xe1\xd4\xa1\xcf\xa1\xd9\ +\x0d\xb5\xc1\x6d\x62\x74\x4a\xd2\xad\x68\x07\x2d\x65\x6b\xfa\xbe\ +\x6c\xfc\xc1\x38\x1b\x0a\xfd\x06\x32\x04\xf1\x86\x61\x18\xe7\x1d\ +\x7f\x5f\xdb\xea\x3d\xec\x25\xf5\xd0\x3a\x9c\xed\xfd\x91\xf1\xbd\ +\x0c\xae\x97\xd3\x2e\x1c\x85\xdb\xd7\xb5\x1c\x89\x7e\xf4\xf4\x29\ +\x7c\xe0\x53\xff\x13\xf7\xdd\x7a\x0d\x6a\x63\x1c\xb5\xc3\xba\x4c\ +\xea\x04\x76\xc6\x48\x38\x67\x3b\xb8\x3a\x4c\x47\x07\xc9\x1f\x3b\ +\xa5\xb4\xee\x09\x59\x7f\x06\x98\xdc\x96\xe1\xf9\x17\x9e\xd7\xba\ +\x6f\xac\xb6\x03\xf5\xda\xa8\x86\x71\x36\x05\xeb\x57\x8f\xd7\xa1\ +\x80\xee\x72\xf9\x94\xf7\x95\xd9\xc0\xdf\xd5\x60\x5c\x67\xfa\xd7\ +\xee\xce\xe1\xa1\x17\xfe\x1c\x69\xa5\x85\x5e\x4f\xea\xf6\xc2\xb6\ +\xe1\x54\x81\xec\x28\xe1\xb4\xd1\xbd\x8e\xd8\x5e\x7c\x31\x49\x6c\ +\x2a\xbe\x44\x44\x63\x43\xb3\x25\x6b\xb7\x29\x3f\x9c\x0a\x52\x25\ +\xbb\xa4\x74\x91\xb2\xd1\x7a\x53\xea\xee\x9a\xda\x52\x52\xaf\xb2\ +\xce\x16\x7b\x8a\xa9\xb0\x7c\xf8\x42\x0e\xcb\x2a\x11\x79\x1c\x5d\ +\xde\xea\x44\xb8\xeb\xda\x37\x88\x66\xfe\x45\x19\x9f\x21\x2f\x75\ +\x3d\xbc\xdd\xe2\xd6\x2c\xef\xc3\x47\x5f\xc0\xe3\x47\x3e\x84\x24\ +\x6c\x89\x0f\xbf\x45\xeb\x74\xe4\xb1\x63\x59\xa8\x5b\xf4\x74\x7f\ +\xe2\xc7\x63\xe5\xac\x11\xb4\xda\x4d\xdc\xb0\xeb\x3e\x8c\x8d\x4c\ +\x2c\x1f\x19\x27\x7f\x23\x3d\x36\xc2\xa5\xbb\x3e\xde\xde\x12\x4b\ +\x48\xd6\x9c\xea\x9c\xf6\x0b\x8f\xcf\x52\x7b\x11\x87\x4e\x1e\xc4\ +\xd1\x13\xcf\xe3\xc8\xf4\x97\xf1\xe8\xe1\xcf\xe3\xb3\x5f\xfe\x33\ +\x7c\xe1\xd9\x3f\xc6\x43\x87\xff\x18\x5f\x3a\xf2\x17\x78\xec\xc0\ +\x1f\xe3\xe1\x53\x7f\x89\x03\xa7\x3e\x86\x93\xed\x2f\x61\xa9\xf5\ +\x38\x7a\xf9\x33\x72\x48\x9f\x95\x73\x6f\x3f\xea\xd5\x23\x18\x6b\ +\x1c\x43\xad\x72\x04\x71\x74\x18\xf5\xfa\x61\x34\xc4\x1d\x85\x87\ +\xe5\xd8\xee\x43\xab\xfb\x34\x66\xe6\x1f\xc5\xa1\x53\x9f\xc7\x33\ +\x27\x3e\x81\xe7\x0e\x7f\x0e\x07\x4e\x3f\x86\xb9\xe6\x21\x2c\xa6\ +\x73\x98\x5f\x38\x81\x48\x8e\x7b\xbd\x31\x22\x65\x5a\x91\x38\xae\ +\x34\x69\x73\x71\xed\x9e\x19\x0c\xc3\xb8\x54\xb0\x2b\xd6\x30\x86\ +\x87\x8d\x50\x33\x8c\x2b\x18\xbb\xf8\x0d\x63\x93\x5c\xf0\x8b\xc5\ +\x2b\xe0\xcd\xe0\x92\x42\x85\x17\x1f\x71\xd9\x30\x11\xa2\x82\xfb\ +\xbe\xed\x3e\xec\xba\xee\x14\xfe\xf6\xf7\xbc\x1e\xed\x6e\xdb\x75\ +\x30\x49\x14\x1d\x61\x24\x0e\x46\xa1\x1f\x47\xe3\xe8\x77\x12\xb8\ +\x28\xae\xa9\x81\xdf\x51\x60\x12\xec\xfa\x48\xe5\x21\x3f\x6d\x8e\ +\x21\x99\x9b\xc0\x3b\xde\xf4\xb7\x71\xdd\xd5\xf7\xbb\x86\x23\x4e\ +\x0f\x23\x7f\x3e\xde\x32\xe5\xb2\xa2\x37\xb7\xfd\x7a\x5d\x18\x40\ +\x13\xd5\x8e\x2b\x3a\x3e\xf5\xc4\x1f\xe3\x99\xe3\x7f\x8e\xd3\xc9\ +\x09\x49\x93\x1d\x4e\xd4\xdf\x05\x4b\x7a\x19\x9a\x4b\x3d\x6d\xfc\ +\xe9\xf9\xef\x7e\x88\x9b\xdf\xfd\x48\x53\x4e\xa9\xc8\xe9\x04\xd9\ +\x08\xc4\xa6\x1f\x89\x90\xb3\xb3\x66\x45\x4f\xed\xdc\xd2\xbf\x1c\ +\xf5\x11\x60\x6c\xaa\x82\xf1\xc9\x2a\x2a\x55\x29\xc1\x4a\x31\xed\ +\x0d\x47\xf7\x69\x23\x9a\x44\xa0\x9c\x24\x41\x23\x19\xc5\xd8\xd8\ +\x3d\xf8\xf6\x37\xfc\xa4\x94\x8d\xeb\xdc\x59\x96\x4a\xdd\x74\x8b\ +\x0e\x4a\x2e\x1a\x7d\x24\x2d\xea\xc1\x86\x12\xce\xb4\xb4\xff\xe4\ +\xc3\x78\xf0\xd9\xf7\xa3\x1d\xee\x43\xa7\x15\x23\x8e\x7a\x1a\xc7\ +\xcb\x52\x31\x2b\x3f\x2a\x89\x38\x93\x4d\xf2\xca\x7c\x89\xcc\xf6\ +\x52\x07\x33\xd3\x4d\xdc\x7c\xf5\xd7\xe2\x7b\xde\xf5\x13\x1a\xca\ +\xe9\xe2\x5c\x2e\xd6\x3a\x50\x9e\x8b\x40\x15\x55\x26\xff\x52\x29\ +\xeb\x4a\x58\x53\xff\xae\x1c\xeb\x43\xfb\xbe\x8c\xc3\x8b\x8f\xe0\ +\xc1\x87\x3e\x88\x83\xd3\x8f\x60\xea\xbe\x51\x8c\xec\x19\xc7\x28\ +\x47\x32\xb6\xe4\x70\xb1\xa7\x2b\xe0\x94\x9c\x15\x54\xe2\x0c\x31\ +\xcf\x1f\x29\x9d\x58\x8e\x17\xff\xd8\xa0\xa7\x0d\x6e\x22\x9b\x8d\ +\x8b\x6c\xbc\x13\x87\xf8\xba\xf2\xe5\x78\x35\x9e\x9a\x51\xd1\xb8\ +\xc5\x77\xa8\xdd\xf7\xe4\xe4\x7c\xe6\x08\x33\x89\xc2\x29\x22\xc3\ +\x80\xa3\x01\x32\x24\x72\x40\xf4\x2d\x73\xdd\xef\xc2\x31\x2f\xa2\ +\x0d\x95\xd1\x6d\x1e\xea\x48\x8e\x39\xb3\x18\xca\xf9\x81\x34\x40\ +\xd2\x49\xe4\xc4\xd1\xee\x42\x91\x55\xc3\xa2\xe4\x73\xe6\xc4\x1c\ +\x92\x64\x37\x5e\xf1\xca\xef\xc0\xcd\x7b\xdf\x89\x89\xd1\x5b\xe5\ +\x7c\xe2\xe8\x03\xf7\x26\x3b\x1b\x00\x29\x56\x34\xf4\xff\x6e\x53\ +\x28\xbb\x57\x41\x4f\xee\x24\xde\x3d\x30\xe0\x1a\xf8\xb8\xfd\xf4\ +\xcb\x25\x6b\x85\x35\x0c\xc3\xb8\x58\x28\xdf\x07\xd7\xba\x1f\x96\ +\xef\x65\xe5\x7b\xdd\x66\xe8\xbf\x1f\xae\xb5\xbd\x8a\x22\x11\x0d\ +\xe3\xed\x99\x5c\xea\x83\x2e\x0e\x9e\x3c\x8d\xbb\xbe\xe9\x1a\x7c\ +\xdb\xbb\xae\xc3\xdb\xbe\xe1\x7e\xa9\x3b\x58\xdb\x48\x50\x46\x61\ +\x5d\x2e\xf5\x18\x47\x5d\xb9\xef\xad\x72\xb4\x0f\x3b\xd4\x58\x57\ +\x49\x9d\xc3\x17\x40\xa4\x4e\xe4\xa8\xf9\x7a\x5d\xea\x99\x53\x15\ +\x5c\x33\xf6\x46\xbc\xfa\x8e\x6f\xc0\xce\x9d\xd7\x4b\x74\xd6\x7f\ +\x45\xda\x2e\xf1\x15\xbc\x77\x19\xfa\x6d\x05\xcd\x06\xf3\xe3\xea\ +\xf3\x40\x47\x76\xe7\x78\xf8\xe0\x67\xf1\x85\xe7\x7f\x17\xb3\xd9\ +\x89\xa2\x43\x8d\x23\xea\xb8\x4b\x22\x48\x98\x5e\x37\x44\x6b\x51\ +\x6c\xa7\x56\x8e\xae\xbe\xa4\x24\xb1\x45\xd7\x54\xd6\xac\x6e\xdd\ +\x28\x36\x4a\x2a\x94\x64\x25\x5b\xac\xd8\x79\xc6\x3a\xb3\x52\xcd\ +\xc1\x99\x13\x39\x42\xad\xde\x08\x51\x13\x5b\x4a\x76\x4b\x5a\x0c\ +\x28\xd6\x80\xac\xbb\x62\xa7\x55\xa5\xb6\xce\x3a\x7b\xf0\x03\x5f\ +\xf7\x73\x52\x9f\xb3\xbe\xa6\xb5\x40\x18\xda\x2f\x25\x56\x95\x4b\ +\x51\x20\xcc\xa3\xd8\x03\xcc\x29\xf2\x18\xbf\xfd\xc7\x3f\x8b\xee\ +\xf8\xb3\x68\xb5\xbb\x08\x22\xea\xee\x6c\x46\x8e\x54\x73\x96\x9e\ +\x86\x94\x38\x52\xb7\x4b\x9e\xd4\xe8\x10\xbf\x2c\x8d\x50\x0f\xab\ +\xb8\x6a\xfc\x8d\xf8\xc6\xaf\xf8\x9b\xa2\x0f\x8f\xa7\x26\xc0\x1f\ +\xa1\x4f\x97\x2d\xe3\xe5\x38\x68\xa9\x7b\x7d\x68\xd3\xb9\x69\xb4\ +\xab\xc5\x5e\xa0\x93\x36\x71\xe2\xe0\x8b\x58\x48\x8f\xe2\xd9\x53\ +\xcf\xe0\x31\x39\x6e\xf3\x0b\x87\x90\x46\x73\xa8\x8c\x47\x18\xaf\ +\x45\x18\x95\xf2\x1d\x9d\x14\x77\xbd\x8a\x7a\xdc\x43\x95\x79\x64\ +\x9e\xd9\x5b\x29\x72\x43\x67\xb4\xaa\xa9\x45\x98\x73\x35\xbd\xe8\ +\x51\xd8\x34\x39\x47\xfe\xb3\xec\x69\x63\x45\xb1\x9e\xcb\x3c\x0e\ +\x79\x26\x76\x6a\x56\x41\x5b\xce\x83\xe9\x63\x6d\xb4\xe7\xa7\xc4\ +\xee\x7f\x25\xf6\xee\x78\x99\xa4\x7d\x3b\x76\x6d\xbf\x59\x47\xb3\ +\x11\x3e\x0a\xa8\x74\x0a\x37\x0c\xe3\x92\xc0\xae\x56\xc3\x18\x1e\ +\x36\x42\xcd\x30\x0c\xc3\xb8\x08\x59\xfd\x00\xba\x75\xca\xe6\x22\ +\x65\xf9\xed\xf2\x03\xf2\x66\xd3\xf0\x61\x07\xad\xcf\x17\x4c\x6b\ +\x9d\xf4\x8a\x5d\x9c\x0e\x30\x6f\x77\xb1\x67\xf4\x16\xfc\xca\xef\ +\xfe\x7f\xd8\xbe\x63\x12\xd7\xdd\x34\x86\x5e\x27\x95\x30\x89\x3c\ +\xb4\xfb\x06\x14\xf9\x09\xd9\xd9\xe0\x1e\x84\x9d\x5f\x91\x06\x1b\ +\x3e\x28\x87\xf2\xf4\xd5\xe4\x00\x51\x4d\x1e\xba\xa3\x14\xcf\x3d\ +\xf5\x08\xc6\xc7\xaf\xc3\xce\x6d\x7b\xb4\x91\x85\x0d\x13\xee\x2d\ +\x60\x2e\x84\xf1\x57\x9c\xcb\xde\x1b\x51\xc4\xd1\x46\x06\x91\xa7\ +\xef\x3f\x87\x15\x7c\xfa\xf3\xbf\x8f\x4e\xed\x34\x3a\xdd\xb6\xa4\ +\xc3\xbd\xee\x8f\x21\x93\x5e\x8e\xa4\xcb\xb7\xa7\xd9\x01\x54\xe8\ +\x2a\xa8\xca\xf2\xc7\x3e\x39\x36\x5c\xb8\x7c\x79\x24\xb6\x6e\x16\ +\x8a\x89\x9b\x9b\x1c\xa1\x16\x57\x43\x7d\xb3\x9a\xe5\xc1\x86\x05\ +\x36\xfc\xf0\xcd\x66\x17\x52\x7e\x19\x50\xc4\x05\x69\x2c\xd6\x53\ +\x15\x2f\xbb\xf1\x6b\xb4\x51\x86\xe1\x5d\x69\x09\x4e\xb8\xa2\x3e\ +\x2c\x1b\x59\x02\x09\x17\x4a\x7e\x3a\xdd\x16\x1e\x39\xf0\x09\x7c\ +\xee\x89\xdf\xc0\x7c\xf7\x79\x09\x54\x97\xf8\xd4\xdb\xcb\x71\xf1\ +\x5f\xb2\x5e\xce\xc3\xca\x9a\xae\x30\x0b\x90\xf6\x46\x30\x3a\x7e\ +\x35\x5e\x7e\xdb\x9b\x8a\x3d\x9e\xc2\x45\x45\x56\x3c\x0b\x56\xeb\ +\xab\x5d\x4c\x6c\x68\x91\xc2\x63\xa7\x5f\x24\xcb\x62\x73\x1e\xfb\ +\xf6\x3f\x85\x2f\x1c\xfb\x10\x3e\xfc\xe0\xbf\xc5\x13\x07\xfe\x08\ +\xe3\x77\x34\x31\x75\xf7\x4e\x4c\xd6\x2b\x08\x5a\x11\x12\x36\xba\ +\x49\xfe\x22\x39\x37\xf8\x7d\xb3\x38\x96\x7c\xe8\x1f\x3b\xb7\x5c\ +\x19\x6a\xc7\xa5\x24\xc7\x36\x1c\x8e\xaa\x53\x3f\x29\x57\x36\x38\ +\x46\x15\x8e\x08\x8c\x90\x4a\x00\x7e\x2f\xad\x5a\x65\xd9\xb2\x98\ +\xa9\x51\xcc\x52\x41\xda\x09\xd0\x6c\x2e\xa1\xdb\xca\xb1\xd4\xcc\ +\xd0\x69\x26\xba\x9e\x9f\xcb\xb0\x30\x2b\xee\x19\x59\x16\x5a\x68\ +\xcd\xb7\xd0\x9c\x4f\x24\x5c\x47\x3b\x53\xbb\xcd\x0e\xba\x6d\x71\ +\x77\xbb\xc8\xbb\x90\xb5\x68\xc5\x17\xc0\xa9\x59\x50\x43\x3b\x49\ +\x90\x75\x12\x8c\x4f\xb0\x61\x68\x16\x07\x5e\x78\x18\xd3\x27\xbf\ +\x8c\x6d\x13\xd7\x8a\xdf\x75\x72\xcd\xf4\x10\x8b\x6e\x3c\x97\xdc\ +\x54\x97\x3c\x96\xae\xdc\x0b\x27\x57\x83\x61\x20\xee\xe4\xda\xbb\ +\xd7\x43\x85\xae\x41\x79\x9f\x77\x7b\x79\xeb\xc5\x33\x0c\xc3\xb8\ +\x18\x28\xdf\xaf\xb8\x94\xef\x87\xde\xcf\xb3\x96\x9b\xf8\x7b\x2a\ +\x29\xbb\x09\xdd\xe5\x7d\xa4\x3f\x6c\x39\x8c\xc2\x8d\x62\x67\xe1\ +\xaf\x2b\xa9\x8b\xa7\xc2\x06\x7e\xe5\x43\xff\x43\xea\x88\x53\xf8\ +\x8a\x57\x5c\x8b\x44\x3b\x9f\x58\x17\xb8\x3a\x80\xbf\xfa\xc7\xca\ +\xad\xd8\x26\x6e\xd4\x97\xf8\xd1\x6e\x12\x37\x5f\xf4\x19\x1d\xaf\ +\x61\x6e\xf1\x24\x8e\x1c\x7a\x1e\xe3\x93\xd7\x62\x72\x74\x87\x54\ +\xb5\xec\x44\xe2\xab\x24\xec\xec\xf2\xac\xe8\xa1\xf8\x7c\x6c\x95\ +\x42\x86\xae\x54\x3f\xd6\xa4\x15\x7c\xea\xa1\x3f\x40\xbb\x7a\x1c\ +\x4b\x9d\xa6\xe6\x83\xf6\x0c\xeb\x63\x4d\x87\xd5\x7f\x12\x48\xbd\ +\xc7\x17\x93\xdc\x28\x32\xe6\x97\xb6\xa1\x8e\xf4\x97\x85\x53\x3f\ +\x6a\xd6\x28\x57\x24\x7a\x55\xb5\x1c\x24\xdb\x94\xc5\x51\xe3\x91\ +\xd8\x01\x95\x8a\xd8\x53\x62\x53\xb1\x9e\xd7\xfd\x12\x98\xf5\xbe\ +\xc6\xa7\x4c\xb1\x37\x7a\x6d\xe0\xd5\xb7\xbf\x0d\xa9\x8e\x90\x2b\ +\xe4\xd0\xa1\x0b\xf1\xeb\x82\x62\x73\xd9\x97\x9d\x69\xec\x8c\x0a\ +\xaa\xd8\x77\xf8\x69\x3c\x37\xf7\x01\x74\x13\xa9\xec\x43\x8e\x4e\ +\x93\xfd\xb4\x9b\xe4\x9f\x2f\xf5\x70\x5d\x96\xcf\x0e\x51\xea\xa2\ +\x1d\xa0\x7a\x0c\x42\xb1\x79\x9a\x78\xd5\x6d\x6f\x73\x2f\x50\x69\ +\x14\x86\xf5\x94\xdd\xeb\xe1\x4a\x67\x35\xce\x8f\xb6\x04\x7f\xd9\ +\x89\xc5\x19\x09\xa8\xb7\x1b\x95\x1f\x61\x61\xe1\x34\x0e\x1d\xdb\ +\x8f\x43\x33\x8f\xe1\x8b\x07\x3f\x82\xbf\x78\xf8\xd7\xf1\xf0\xa1\ +\x0f\x23\xa9\x3f\x89\x5d\xd7\xcc\xe1\xfa\xdb\x1a\xb8\xf1\x86\x06\ +\x6e\xbe\xba\x86\xbd\x57\x55\xb1\x7d\xa2\x8b\x89\x48\xca\x39\xe8\ +\x80\xdf\x9f\xe5\x8b\x65\xfa\x2d\xd8\x4c\x14\xe7\x08\x42\xce\x84\ +\x20\xb6\x2a\x8f\x3b\xa7\x76\x8c\x64\xcd\x97\xed\xb8\xcd\xb5\x58\ +\x6b\xea\x17\xe4\x1c\x71\x26\x8b\x4e\x9d\x2e\x76\x57\x97\xd6\x57\ +\x82\x58\x8c\xa5\x4a\xd4\xc5\xce\x5d\x35\x5c\x7d\x75\x80\x6e\xef\ +\x18\x5e\xd8\xf7\x79\xbc\xb0\xff\x21\xc9\x43\x17\x4b\x8b\x6d\xc4\ +\xb5\x06\x1a\xd5\x11\x39\x06\xae\xf3\x95\x25\xc9\x32\xe3\xfb\x54\ +\xce\x26\xde\x6c\x99\x19\x86\x71\x3e\xb1\x2b\xd3\x30\x86\x87\x75\ +\xa8\x19\x86\x61\x18\x17\x8e\x41\xcf\x9e\x0a\xcd\x3d\x6f\xf2\xf5\ +\xaf\x0b\xd6\xb5\x08\x57\x04\x7b\x49\x7c\xc0\x5b\x79\x9c\x7e\x29\ +\x6b\x3f\xfe\x89\xaf\x3e\x9d\xd3\xe9\x43\x0c\x0e\x79\xfe\x18\x90\ +\x3e\x1b\x33\x38\x0a\xab\x1a\xe2\xee\xdb\xee\xc0\x9f\x7f\xf0\xe3\ +\xf8\xfc\xbe\x87\xf1\xf2\x7b\x6e\x44\x63\x44\x1e\xde\xe5\xe1\x5a\ +\xdb\x2d\xe4\xe1\x97\x0d\x1a\x6c\x08\xe2\xdb\xc6\xfc\xbe\x05\x33\ +\xaf\x0d\x2c\x14\x23\x7f\x2c\x0b\x5f\x82\x1a\x56\xe2\x84\x75\x79\ +\xe2\xae\x65\x78\xfa\x89\x47\x30\x31\xb1\x0b\xbb\xa6\xae\xd5\xc6\ +\x00\x3e\x4c\xbb\x46\x1b\xdf\xfc\xc0\x6d\x46\xd4\x8d\x2d\xc2\x06\ +\x2b\xae\x52\xf4\xd2\x00\x9f\x7b\xfc\xfd\xe8\x45\x6d\xf4\xf2\xae\ +\x3c\xfc\xbb\xce\x40\xea\xc9\x35\xbf\x97\xc6\x91\x68\x1c\x91\xc6\ +\xc6\x04\x1d\xbd\x25\xff\xfa\x16\x35\x9d\xb2\xd6\x0e\x46\xd9\x50\ +\x15\x55\xbe\x14\x40\x01\xd3\x51\x3f\xf9\x61\xe3\x4f\x5c\x0d\x50\ +\xad\x4a\x2a\xec\x50\x93\x6d\x12\xe9\xf0\xa4\x22\x1c\x5f\xd1\xa6\ +\x16\x22\xac\xdb\x05\x5e\x75\xf3\x37\xb8\xef\xaa\x51\x4e\x91\x7f\ +\xe2\xce\x32\xe6\x23\x97\x28\x99\x36\x66\xf0\x43\xef\x73\xb3\xc7\ +\xf1\x99\xc7\xff\x27\xbe\xf8\xdc\xfb\x11\x8c\x89\xb8\x5e\x05\x15\ +\x76\xd8\xf9\x57\x88\x35\x9e\xff\xa5\x3c\x87\x2f\x55\xe7\x72\x7f\ +\xcc\x10\x1b\xb0\xf2\x5e\x8e\xee\x52\x80\xab\x6f\xb8\x1f\x77\x5f\ +\xfb\x8a\xa2\x7c\x8a\xe0\x1a\xae\x70\xd2\xc1\x1d\x0c\x40\xc4\xa9\ +\xe7\x41\xd1\xd8\x96\x6b\x87\x1f\xa7\xa2\x8c\x70\x6a\xe6\x04\x9e\ +\xd9\xf7\x20\x3e\xf3\xe2\x1f\xe0\x43\x0f\xfd\x22\x8e\x9c\xfe\x28\ +\xc6\xee\x4a\x31\xbe\x7b\x42\xc3\x06\xcd\x58\x8e\x8d\xe8\xcd\x37\ +\xa2\x45\x7f\x37\xbd\x95\x4a\x95\xd2\x65\x43\x0e\x65\xb3\x21\x2d\ +\x72\x45\x26\x69\xe8\x19\x25\xe9\x4b\xc9\x4a\x1c\x39\x97\xd8\xea\ +\x16\xb2\xa1\x47\x4a\x54\xdc\x71\x95\x8d\x4b\x31\x9a\x73\x1d\x2c\ +\x9e\x6e\x62\xfa\xf4\x22\x8e\x1f\xea\xe1\xf8\x0b\x39\x4e\x1d\x8c\ +\x71\xe4\xf9\x0c\x73\xc7\x26\xd0\x9b\xbb\x1a\xcd\xee\x6e\xe4\xcd\ +\xbd\x72\x1c\x6e\x44\x25\xbf\x09\xf5\xe8\x26\x91\x73\x23\xa2\xf4\ +\x26\xf4\x70\x23\x7a\xd9\x55\x58\x5c\xd8\x29\xb2\xa6\x30\xbb\x10\ +\xa0\xbd\x10\xa2\x39\xdf\x94\xe5\x14\x96\x5a\x27\xd0\x6e\x4d\xa3\ +\xdd\x69\xea\xf1\x4c\x92\x0a\xd2\x76\x8e\x46\x58\x43\x45\x54\x9a\ +\x39\xf6\x65\x3c\xf9\xd8\xa7\x31\xb5\x6b\x17\xb6\xed\xbc\x55\xca\ +\x45\xf4\x2d\x0a\x54\xd7\x2e\x1b\xf2\x23\x8b\xe6\xad\xb4\xf6\x70\ +\xdb\x53\xf6\x3f\x1b\xfa\xe5\x70\x7b\x58\xb2\x0d\xc3\xb8\xfc\x29\ +\xdf\x97\x88\xbf\x7f\xf4\xfb\x5f\x28\x06\xdd\xcf\xe8\xb7\xd6\xfd\ +\x74\xbd\xfb\xdf\x7a\xfb\x5e\x82\x04\x2e\x85\xa7\x93\x35\x55\xd2\ +\xea\x4a\xbd\x34\x89\x3f\xf9\xe8\xff\xc2\xcd\xb7\xec\xd2\x6f\xac\ +\x6a\xe7\x8b\x04\x08\xf9\x23\x7a\xb9\x2a\x41\xea\x33\xc6\x62\x3d\ +\xc7\x4a\x99\x02\x54\x82\x5b\xf3\xa5\x9c\xb4\x9b\x21\x6e\x24\xe8\ +\xc5\x4b\x38\xf0\xfc\xf3\xd8\x36\x75\x35\x26\x46\x77\xbb\xbc\x69\ +\xbd\xe8\xc2\x16\x91\x1d\x67\x73\x5c\x58\xaf\xab\x28\xbf\x66\xe7\ +\x5d\x05\x9f\x7e\xfc\x77\xd1\x8d\x5b\xe8\xf6\x3a\x92\x17\xd9\x41\ +\x3b\x42\xd6\xbe\x43\x84\x9d\x7f\x49\x3b\x44\x22\x6e\xad\xbb\x69\ +\x9a\x68\xe5\x2e\x36\x02\xfb\xd2\x8a\x8a\x5e\x6d\xbe\x65\xe8\x76\ +\x79\xe0\xa7\x51\x69\x3f\xf1\x3b\xa9\x7c\x49\xa9\x5e\x8f\xd4\xbe\ +\x74\x33\x23\x30\x18\x3b\xdc\xf8\x22\x0e\x5f\xc2\x09\xd1\xeb\xe6\ +\xb8\xf3\xda\x37\xa3\x5a\xa9\xcb\x6e\xf7\xb2\x0d\xf1\x25\x52\x28\ +\xef\x50\xa7\x4b\xdf\xad\xb9\xd0\xd8\x88\xb0\x38\x7b\x0a\x9f\x7a\ +\xe6\xd7\xd0\x0e\x16\xd1\xe9\x26\x6a\x6f\x39\x1b\x4c\xf4\x91\x9f\ +\x95\xba\x9b\x92\x9d\x74\xe7\xa6\x18\xb5\x4e\xe4\x98\x46\x98\x5f\ +\x5c\xc0\x1b\xee\xfe\x16\xc9\x2b\xe3\x32\x9e\x4f\x8f\x21\xe9\xd6\ +\x18\xeb\xe0\xc3\x7b\x64\x9b\x65\x25\xb2\xf8\x72\x17\xa7\x24\xd7\ +\xa9\xa8\xc5\xd6\xe1\xd2\x49\x96\x70\xf8\xe8\x73\x78\xe6\xf8\xe7\ +\xf1\xe0\xbe\x3f\xc2\xc7\x9f\xfc\x6d\x3c\x7c\xe4\xf7\xb1\x90\x3d\ +\x8a\xfa\xde\x16\x6e\xb8\xb5\x82\xb1\xd1\x36\xc4\xe2\x42\xde\x6d\ +\x43\x32\x87\x5e\x92\x20\xed\xa4\xfa\xa2\x51\x96\xc8\x99\x97\xc7\ +\x3a\x13\x00\x6d\x37\x37\x4d\xa4\x6c\x49\xfe\x43\x35\xf6\x99\x47\ +\x86\xa1\xde\x0c\x23\xeb\xe2\x50\x30\x2b\x3a\x23\x81\xf8\x71\x16\ +\x00\xda\x64\x3c\xbf\xf9\x62\x54\x90\xc9\x81\xe4\x39\x20\xcf\x07\ +\xd9\x52\x8a\xa4\xdb\x42\xad\xd6\xc6\xce\xab\x81\x91\xf1\x36\x8e\ +\x9d\x7c\x14\xcf\xed\xfb\x8c\xf8\xcf\x63\x69\x51\x6c\xa9\x74\x04\ +\xe3\x13\xe3\x52\x6e\x92\x4f\x96\x99\xfc\x33\x29\x4d\x88\xeb\x0d\ +\xcb\xcd\x30\x8c\xf3\x89\x5d\x91\x86\x31\x3c\x6c\xca\x47\xc3\xb8\ +\x82\xb1\x8b\xdf\x38\x7f\xac\x77\xb6\xf9\x27\xaf\x75\xf0\x0f\x66\ +\xcb\xc1\xd6\x0e\xbf\x7a\xcf\xca\x56\xbf\x01\xb9\x2c\x52\x7e\xbc\ +\x68\xf7\x88\xed\xf7\x10\xbf\x2e\xbb\x3c\x7c\x48\xf6\xf2\xfd\x5e\ +\xd9\xd6\x87\xd7\x92\x7f\x39\xa2\x17\x3d\x20\xda\x99\x51\x44\x2c\ +\x64\xf2\x81\x99\x3e\xfc\x10\xfb\x83\x9f\x7c\x12\xef\xfe\x89\x57\ +\xe2\x6b\xbe\xfe\x46\x7c\xfb\xb7\xdd\x83\xd9\xf9\xae\x36\x2e\xe8\ +\x24\x85\x0c\x24\xd5\xbf\x7b\x13\x37\xd7\x87\x68\x36\x0c\xb9\x06\ +\x94\x62\xbf\x0f\x47\x8a\x6d\x3e\x24\xe7\xad\x71\x2c\x1d\x07\xde\ +\xf4\xda\xbf\x89\xbb\x6e\xfb\x0a\xc4\x41\x43\xe4\xc8\x93\x77\xf1\ +\x70\xee\xca\x70\xa5\x24\x97\x65\xac\x83\xca\xd5\x80\xd4\x82\x8d\ +\x39\x3d\x1c\x3f\x75\x1a\x7f\xfc\xb9\x9f\x45\x2b\x5c\x40\x27\x6d\ +\xab\x3c\xa2\x0d\x13\x92\x5c\xa7\x93\xa0\xd3\xe6\xc7\xd8\x03\x9d\ +\x5a\x89\x6f\x51\x73\x49\x38\xf2\x88\x6b\xfa\x31\x16\x1b\x82\x34\ +\x26\xf5\x97\x54\x24\x7f\xaa\x61\x21\x90\x7d\x66\xf5\x5a\x88\x91\ +\x89\x08\xa3\x13\xb1\x36\x02\x71\xda\xc7\x30\x0e\x11\xc7\xb1\xc4\ +\x97\xd8\xaa\xa0\x08\x4a\xc5\xbf\x97\x63\x71\x31\xc2\xdf\x7d\xc7\ +\x7f\x95\x70\x35\xb6\xd8\xc8\x3f\x0b\xce\x69\xef\xd6\x89\xc4\x63\ +\x67\x53\x05\xad\x76\x0b\xcf\x1f\x7b\x14\x4f\x3f\xff\x21\x3c\x3f\ +\xfd\x05\x8c\x4c\x8e\x21\x4c\xd8\xd0\xc4\xd0\x6c\xe8\x62\x43\x87\ +\x4b\x42\x4b\x8f\xc7\x85\x62\x7c\xe1\x51\xdf\xe5\x86\x1d\x86\x11\ +\x2f\x26\x27\x7e\xc9\x52\x8a\x93\xa7\xdb\x78\xd7\xd7\xfe\x33\xdc\ +\x77\xc3\x6b\xb5\xed\xcb\xe5\x8b\xe1\x57\xce\xcf\x65\x71\xcb\x2e\ +\x76\x82\xe5\x3c\xf4\x52\x00\xee\xa3\xf7\x33\xf3\xd3\x78\xf1\xe4\ +\xa3\xf8\xfc\x0b\x1f\xc2\x13\x4f\xfd\x09\xc6\x6f\xaa\x63\xfb\xde\ +\xaa\x8e\xea\x4a\x9a\x3d\xd1\xb7\x81\x40\xf2\xa4\xd3\x27\x89\xce\ +\xfa\x4d\x99\x90\xba\xa9\x38\x11\x93\x8a\xbc\x2a\x62\xf5\x63\x18\ +\xcd\x8d\xc4\x49\xc1\xe9\x84\x62\x1e\x0d\xd9\xc7\x63\x97\x67\x2d\ +\x1d\x5d\x77\x7a\x61\x09\xf3\xc7\x13\xed\xd8\x3d\x75\x7c\x11\x07\ +\x0f\x67\xa8\x2c\x5d\x85\x6d\xd5\x6b\x71\xd5\xf6\x9d\x98\x1c\xdf\ +\x29\xc7\x65\x0c\xe3\x63\xdb\x31\xbe\x6d\x1b\x26\xb6\x6f\x43\x75\ +\x64\x4a\xbf\xcd\x36\x36\x31\x81\xd1\xb1\x06\xe2\x6a\x9d\x45\x21\ +\x25\x29\xe7\x70\x25\x93\xe3\xde\x46\x6b\x7e\x0e\x8b\x9d\x69\x71\ +\xcf\x21\xec\x9e\x40\x2f\x3d\x8e\x56\xf3\x59\x2c\xb6\x0f\x20\x48\ +\xa7\x91\xe6\x4b\xc8\x7b\x4b\x68\x2d\xce\x21\x6b\xc9\xf1\x0e\x47\ +\x25\x5c\x84\xb1\xc6\x38\x8e\x9e\x14\x9d\x4e\x57\xf1\x55\xdf\xf6\ +\x4f\x71\xc7\x6d\xdf\x84\x11\xd9\xc7\xf3\x88\x6d\x82\x84\xf9\x65\ +\xb1\x69\x49\xba\x42\x1d\x0c\x03\x78\xd6\x0b\xb7\x19\xca\xb2\x0c\ +\xc3\x30\x2e\x47\x96\x6f\xac\xba\xf5\x52\xfc\xbe\xf2\xda\x33\x68\ +\xdb\xe3\xfd\xd7\x92\x4b\x8a\x3a\x96\x41\x59\xbd\x86\x12\x38\xed\ +\x86\xb8\xeb\x5d\x37\xe1\x4d\xef\xde\x8b\x37\x3d\x50\x47\x37\xad\ +\x69\x47\x91\xd4\x82\x52\x67\x49\xad\xc0\xa1\x38\xac\x17\xa4\x22\ +\x70\xf5\xae\x6c\x6a\xe7\x11\x43\x14\x7f\x52\x7f\xb3\x9e\x88\x83\ +\x2a\x92\x2c\x43\x9c\xee\x40\x6f\x7e\x04\x5f\x71\xff\x77\xe2\xd6\ +\xeb\xf9\x12\x8c\xc8\x91\xc8\xb4\x6b\x56\x14\xf5\xeb\x12\x5e\x77\ +\xee\x5a\x2f\x1f\x82\xd6\x51\x2a\x97\x41\xdd\x68\xa8\x56\xab\x8d\ +\xff\xf1\xd1\x9f\x42\xbb\xb6\x88\xa5\xee\x12\x5f\x6d\x71\x62\xe4\ +\x87\xdf\xa0\x4d\x25\x3f\x5d\xb1\xa9\xda\x8b\x7c\x61\x88\x76\x54\ +\xc6\x3e\x15\xed\x58\x49\xc5\x08\xe0\xc8\x7f\x2e\x1c\xcc\xc5\xfa\ +\xd0\x97\x97\x53\x95\x9d\x32\x7c\x31\x29\xd0\x51\xfe\x8d\x06\x30\ +\x32\x16\x60\x62\xa2\x82\x1a\x5f\x52\x8a\xd8\xd1\xc3\x59\x05\x12\ +\x54\xeb\x35\x9d\x6e\x92\xf3\x8d\xcf\x2d\xf6\xf0\xf6\x5b\x7f\x0c\ +\xf7\xdc\xf6\x3a\x49\x43\x64\x14\xb2\xf8\x57\x08\x5e\x03\xa7\x08\ +\x5f\xd0\xe1\xf4\xd7\x7f\xf4\x57\xbf\x8c\x93\xbd\x2f\x4a\x1e\x38\ +\x3a\xaa\x27\x26\x13\x33\xa5\xaf\x3f\x89\x18\xa7\x27\xad\x2d\x4e\ +\xad\xc8\x32\xf1\x29\xf0\xb8\x70\x2f\xed\xc5\x38\xac\xe1\xf4\x7c\ +\x0b\x3f\xf1\x2d\xbf\x2b\x72\x24\x0c\xdf\xf9\x91\xbd\x2e\x36\x19\ +\xa4\xcf\xca\xde\x15\xca\x7e\x4c\x80\x32\xf8\xc2\x50\x5d\x7d\x7a\ +\x59\x1b\x47\x4f\x9d\xc0\xcc\xe2\x01\x1c\x5e\x7c\x18\x5f\x7c\xe6\ +\x63\x58\x5a\x7a\x11\x13\xb7\x8e\x62\xf7\xee\x2a\x46\xa4\xbc\x20\ +\xc7\xa1\xd7\x4e\xc4\x2e\xcf\x24\x07\x1c\x45\xc6\x6c\x70\x16\x00\ +\x11\x20\xb6\x26\x8f\x9d\xda\x23\xe2\xaf\x6e\x51\x96\x66\xaa\x76\ +\x4a\x6a\x07\xa6\xcb\x1f\x7f\xf9\xd2\x12\x3b\xcc\xa8\x87\xca\x51\ +\xa3\x8f\x61\x24\xdf\x22\x33\x08\xc5\xfe\x92\xc8\x21\x6d\x58\x7a\ +\x0a\xcc\xb7\x9e\xc1\x3c\xbf\x69\x8c\xb2\xb8\x25\x0c\x5f\x56\xab\ +\xd7\x46\x74\xaa\xf8\x5e\xa7\x82\xf9\xd9\x10\xa7\x0e\x55\xb1\x7b\ +\xea\x75\xb8\xef\x9e\xaf\xc1\x8e\x6d\x77\xa0\x5a\x1d\xd1\x97\xdd\ +\xe2\x58\x8e\x85\x84\x57\x91\xee\x87\xa2\x0d\xc3\xb8\x08\xb0\xab\ +\xd1\x30\x86\x87\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\xc6\xd0\x71\xcf\ +\x6a\x2f\x5d\xfb\xb3\xad\x7c\xd2\x89\xff\xaa\x60\xf2\xa3\x0f\xbd\ +\xf4\x17\xb7\x46\x5b\x15\x61\x05\xf7\x20\x2c\x7f\x5a\x85\xb9\x65\ +\xc5\xe9\x1e\xee\xdd\x43\x25\x1b\x37\x64\xad\x0f\xa2\xb2\x90\xe5\ +\x04\xb9\x96\x87\x44\x4e\x1b\x93\xb2\xf3\x85\x0f\x9c\x8c\x28\x4f\ +\x8f\x1a\xc7\xc5\x5f\x79\x16\xe4\xb6\xc7\x0b\xf1\xbf\x64\x65\xef\ +\x40\x7c\x9a\x64\x25\xd2\x16\x59\x56\x5c\xb7\x5e\x82\xe6\xb9\x68\ +\x9a\xe9\x04\xf8\xf6\x1f\xfe\x46\x3c\xbe\xef\x83\xf8\x91\xff\xeb\ +\xad\x98\xda\x53\x45\x90\x54\x64\x0f\xbf\x5d\xc5\x91\x5d\x22\x45\ +\x1e\x92\x93\x34\x45\xcc\xef\x27\x84\xf2\x50\xce\x88\x85\xe8\xa2\ +\x4d\x42\x7f\xfc\xf1\x08\xf2\x08\x09\xba\xa8\x66\x93\x98\x3b\x91\ +\xe1\x35\x77\xbf\x07\xf7\xdf\xf6\x16\xd4\x1b\x53\x22\xcb\x35\x92\ +\xb0\xfc\x54\x43\x3e\x88\x6b\xe1\x71\xc3\xad\xd6\x42\x8f\xb9\x06\ +\xe2\x19\xc0\xe9\x86\x52\x3c\xf4\xe8\x5f\xe0\xb1\x63\x1f\x42\x33\ +\x9b\x41\x9a\xf7\xdc\xc3\xb9\x1c\x58\x8e\xfa\xe2\x9b\xd4\xdd\x6e\ +\x82\x76\xab\x07\xce\xf0\x93\x24\x6c\xa8\x10\xe5\xe5\x38\x32\x3f\ +\x0c\xcb\x29\x21\x99\x1d\xce\x3f\xa3\xaa\xa8\x64\x07\x5d\x5e\x35\ +\xae\xd9\xe8\xd3\x18\x0f\x31\x3e\x29\xeb\x46\x5c\x4c\x01\xc9\x29\ +\x0c\x63\x64\x09\xbf\xd3\xe5\x1a\x66\x38\x92\x0b\x49\x88\xd6\x52\ +\x8a\xbf\xf6\xc0\xff\x0f\x37\x5c\x77\x87\xa4\xc1\xef\x5f\x30\x25\ +\xd7\xfc\xc2\xef\x76\xf8\xc6\x93\x93\x27\x5e\xc0\x43\x2f\x7e\x14\ +\x8f\x3e\xf9\xa7\xa8\x4c\x75\xd1\x18\x99\xd2\x0e\x25\x4e\x91\xa8\ +\xf1\x18\x48\x44\xba\x8e\x29\x59\xa4\xa0\xdd\x35\x20\x9e\x45\x99\ +\x79\xad\x57\xb4\x17\xb7\x1e\x27\x89\xdd\x6b\xe1\xe8\xb1\x14\x3f\ +\xf6\xfd\xef\xc7\x58\x5c\xd1\xfc\x16\xcd\x64\x94\x22\xba\xac\x08\ +\x51\x91\xb2\x56\x1d\xf9\xed\x97\x88\xe7\x02\x30\x7b\xea\x34\xbe\ +\x7c\xf4\x73\x78\xfa\xf4\x27\xf1\xe4\xf3\x7f\x8e\xc6\x55\x19\x1a\ +\x57\x8f\x21\x5b\xe2\x5b\xd1\xa2\x9b\x04\x63\xb9\xb3\x34\xf9\x16\ +\xb7\x9b\xa2\x88\x57\x86\xf8\x89\x4c\xfd\xe0\x3f\xb7\x79\xe9\xc8\ +\x4f\xcc\x72\x92\x04\xf9\xbd\xb3\x4a\x14\x62\xa4\xd1\x40\x28\x07\ +\x69\x6e\xbe\x8d\xb9\xe9\x45\x9c\x3a\x24\xc7\x6c\xa1\x87\xee\xd2\ +\x22\x5e\x38\x16\x60\xdf\x97\x9b\xc8\x67\x76\x60\xef\x8d\x37\xe0\ +\xba\x3b\xee\xc4\xbd\xb7\xbe\x0c\x77\xdc\x7c\x0b\x6e\xdb\x73\x0b\ +\x76\xef\xdd\x85\x89\x91\x0a\x42\x57\x9c\x2f\x85\xd9\xf3\x27\x27\ +\x51\x85\xb8\x51\x2e\x2d\x17\xac\x25\x0b\xbf\xd5\xb2\xd0\x3b\x20\ +\xa7\xc9\x41\x9c\x9a\x79\x06\x8b\x33\x9f\xc3\xf4\xc2\x09\x34\xe7\ +\x4e\xa0\x32\xb7\x0f\xa7\x0f\xa4\x18\xc3\x76\x2c\x74\x53\x9c\x38\ +\x02\xbc\xf5\x3d\xff\x02\xaf\x7f\xe3\x77\x21\xe4\x54\x4a\x72\x4e\ +\xe8\x39\x43\x61\x7e\x7d\x2e\x29\xa7\xb1\x3a\x3b\x8e\x72\xfa\x83\ +\xf6\x1b\x86\x61\x5c\x8c\xf4\xdf\xd7\xfc\x3d\x95\x94\xf7\xf5\xdf\ +\xe3\xfa\xe3\x95\x59\x2b\xde\xa6\x28\x22\x48\x5c\xd6\x9b\x44\xeb\ +\x49\x31\x2c\xfe\xc9\xbf\xfb\x05\x7c\xe6\xe0\xaf\xe1\x3b\xbf\xfb\ +\x56\x54\x24\x18\x6d\x20\xad\x07\xf8\x62\x88\xd4\x37\xb4\x13\x59\ +\xef\xe8\x28\x20\x7e\xcf\x93\x3d\x31\xb4\x1f\x55\x8e\xfc\x8a\x9b\ +\xa3\xe8\x59\xd7\x73\xf4\x90\x8e\xb6\x4f\xb7\xa3\x3d\xd3\xc0\x5b\ +\x5f\xf3\x7d\xb8\x69\xcf\x2b\xd5\xa6\x61\x1d\xea\x6a\x4e\x97\xbe\ +\xcb\x48\x01\xd5\xf3\x9b\x9b\xc8\x9b\x93\x44\x07\x2d\x02\x76\x3c\ +\x05\x78\xfa\xe0\x23\xf8\xec\x73\xbf\x85\x59\xbe\x60\x22\xf6\x94\ +\xf6\xc0\x30\x4d\x76\x94\xa4\xb2\x96\xfc\xb4\xdb\x5d\xb4\x17\x73\ +\x74\x39\xfd\x9f\xd8\x54\x1c\x81\x4f\xff\x54\x8c\x16\x76\xbe\xe8\ +\x77\xc7\xd2\x48\x47\xa7\x2b\xaa\x93\xfc\xf0\x5f\x96\x8a\x98\x7f\ +\x7c\x21\xa9\x31\x12\x60\x64\x34\xc0\xe8\xb8\xb8\x6b\x15\xb1\xa7\ +\x42\x1d\xfd\xc4\xd1\x55\x95\x0a\xa7\x18\x94\x34\xa5\x1c\x3b\xed\ +\x1e\x6e\x1d\xff\x1a\xbc\xfd\x2b\xbe\x57\xb4\x64\x09\x2d\x97\x9a\ +\x17\xde\x87\x5a\x74\x92\x37\x86\x8e\xa5\xd8\x33\x7c\xea\xe1\xff\ +\x83\x87\x0e\xfe\xbe\xa4\x2b\x46\x42\xc8\x9e\x30\x5a\x56\x12\x4e\ +\xca\xdd\x4d\xbf\xb9\x02\xcb\xa5\x2c\x99\x7a\xf0\xe5\x20\x76\x26\ +\x46\x61\x8c\xb9\xd3\x19\xfe\xaf\xf7\xfc\x36\x7a\x6a\xa3\xb9\xf0\ +\x0e\x89\xa1\x76\x86\x8f\x49\x7f\xba\xfd\x7e\x87\x1e\x3f\x1e\x6f\ +\x7d\x86\x70\x1d\x91\x95\xc2\x78\x59\x6a\x2f\xe2\xc4\xf1\x2f\x63\ +\xdf\xc2\x93\x78\x64\xff\x83\x38\x3d\xff\x25\x34\x76\xe7\x68\x6c\ +\x6f\x60\x72\x52\x6c\xa4\x85\xb6\xd8\x27\xd4\xd9\x99\x30\xa1\xd8\ +\x51\x9c\x98\x51\x47\x8f\xd1\x5e\x17\x79\xec\x94\x64\xaa\xfa\xc2\ +\x52\x49\x37\xf7\x27\x76\x18\x47\x97\xd1\x5f\x6d\x34\xc9\x03\xb7\ +\xb9\x29\xe5\xa4\x72\x64\x43\x6d\x55\x27\x44\xf5\x0c\xc5\x16\xd5\ +\x27\x02\x39\xe0\x31\xfd\xf4\x38\xf0\xf9\xa0\xa7\x71\xf3\x44\x64\ +\x64\x9c\x1e\x52\x9e\x0f\xc4\xf6\xcd\x79\x62\x68\xb9\x56\x24\x7e\ +\x2e\x76\xf2\x28\xa6\x8f\x77\xb1\x70\x7a\x0c\x77\xdd\xfe\x36\xdc\ +\x78\xcd\xd7\x61\xdb\xc4\x0d\x3a\x0a\x51\x47\x1c\x4a\xba\x4c\x6e\ +\x85\xd5\x5b\x86\x61\x9c\x7f\xec\x2a\x34\x8c\xe1\x61\x1d\x6a\x86\ +\x71\x05\x63\x17\xbf\x71\x6e\x70\x0f\xf3\xde\x60\xf3\xee\x95\xf3\ +\x8d\x0f\x7f\x7c\xf0\x74\x21\xdd\x3e\x59\xeb\x33\xb0\x3c\xc9\xea\ +\x96\x1b\x41\xe3\x84\x48\x78\x3e\x98\xf1\x81\x91\xef\x63\x16\x7e\ +\xdc\x5e\x8d\x4f\x81\x6b\xff\xe0\xed\x7e\x13\x7d\x40\x54\xa9\xda\ +\x01\x40\x8a\x89\x52\xc4\xc5\x6d\x15\xba\x21\xaa\xd3\xb2\x5e\xaa\ +\x99\xfc\xf2\x01\x55\x73\xe4\x3c\x99\xe8\x40\x71\xe2\xe9\x14\x12\ +\x7c\xa0\x65\x0f\x61\x60\xa4\x82\xb5\x84\x96\xe3\x0b\x12\x84\xa1\ +\xd8\x10\xc2\x8f\x8f\x3f\xf7\xc8\x0b\x78\xfb\x77\xbf\x1c\xf7\xbe\ +\x75\x27\xbe\xfd\xfb\x5f\x86\xa0\x2b\x8f\xc5\x21\xa7\xec\xeb\x68\ +\xe3\x08\xfb\xa0\xb2\xa2\xe1\x44\xa7\x7b\xa9\x48\x3e\x78\x08\x28\ +\x6a\x59\xb4\xf8\xe9\x33\x38\xdf\x38\x15\x4f\x3e\xf4\x47\xf2\x38\ +\x1d\x8e\x60\xe9\x58\x86\x5b\xf6\xbe\x0d\x0f\xdc\xfb\x36\x6c\x9f\ +\xbc\x56\x8a\x86\x01\x9d\xae\x2c\x11\x3e\x9c\xfb\x5c\xfa\x75\xbf\ +\xca\xdc\xe1\x47\x65\xb9\x38\x39\xd2\x2c\xc4\x1f\x7d\xe8\xdf\xe1\ +\x44\xf4\x3c\xda\xc9\xac\x1e\x37\x4e\xe1\xc8\xf3\x20\x91\x07\xfa\ +\x2c\xe3\x5b\xd4\x3d\x6d\x00\xe2\x77\x38\xd8\xa1\xc6\xb7\xbf\x99\ +\x3c\xbf\xed\x96\x4a\xa6\xd8\x48\xa2\x53\x3e\x32\x3f\x72\x88\x99\ +\xbe\x76\x42\x15\xb8\x51\x54\xce\xbf\x52\xe1\x47\xde\x03\x8c\x4e\ +\xc6\x18\x19\x91\x33\xa3\xca\x29\x8b\xdc\x08\x35\x76\xce\xb1\x61\ +\x42\x1b\xa0\xf8\x2f\x89\xb4\xe6\x23\xbc\xfe\xfa\x1f\xc2\xeb\x5e\ +\xf1\xd5\xb2\xed\xbe\xd7\xc1\x46\x1e\x4a\x0b\x50\x47\xaf\xdb\xc1\ +\xb3\x87\xbf\x88\x2f\x3c\xfe\x01\x1c\x3e\xfd\x18\xea\x53\x35\x04\ +\x52\xee\xb5\x58\xce\x5f\xed\xf0\x91\xfc\x68\x99\x17\x0a\xf0\x78\ +\xd1\x21\xf2\xb5\x11\x62\xa5\xf0\x75\xb7\xae\xdd\x6e\x1d\x55\xc6\ +\xdd\xbc\x5e\xb2\xb6\x94\x6f\xba\x13\xef\x79\xf7\xbf\x07\x3f\x3f\ +\xe6\xc2\xae\xc4\x5d\x81\x7e\xb2\x88\xee\x9c\xfa\x89\xcc\xce\x9e\ +\xc4\xbe\x99\xa7\xf0\xe8\x91\x8f\xe1\xc9\x87\xff\x27\xe2\x9b\x42\ +\x6c\xdb\x36\x86\x76\x4f\x82\xf5\x44\x9f\xb0\x22\x39\x72\x8d\x2c\ +\x7c\xab\xd9\x35\xf2\x48\xf9\xf1\x40\x11\x9e\x2f\x41\x4d\xca\x5a\ +\x14\x11\xa8\x37\xdf\x72\x0e\x25\x2f\x63\xe3\x15\xb9\xba\xf8\x51\ +\xfb\x45\xcc\x9e\x08\x71\x72\xff\x11\x1c\x3e\x92\xe0\xe4\x81\x05\ +\xcc\x1d\xca\xf0\xe2\x81\x36\xe6\xe7\x63\xbc\xe2\xce\xd7\xe0\xba\ +\x1b\x6f\xc7\x9d\x37\xdd\x8a\xb7\xbc\xe3\xeb\xf1\xfa\x97\xdf\x8a\ +\x86\xfb\xd6\x7d\x01\xcf\x06\x1e\x57\x96\x97\x6c\xb2\x10\x96\x57\ +\x5a\x62\xcb\x7e\x9a\x3f\xf5\x29\xc2\xca\x4f\xce\x46\x40\x1e\x97\ +\x20\x91\x3d\xb2\xad\x1d\x9f\x75\x39\x59\xea\x48\xa4\xbc\x78\xc4\ +\x9a\x38\x8e\x66\xfa\x1c\x0e\x3d\xf5\x11\xcc\x1e\x7c\x0e\xdd\x63\ +\x8f\xe0\xf0\xac\x84\x9e\xad\x62\xee\x44\x0f\xdf\xf8\x77\xff\x07\ +\xee\xbc\xf5\x56\x29\xdf\x98\x59\x76\xac\x24\xe5\xd6\x84\x6e\xb2\ +\x91\xff\x66\xf1\xf1\x3d\x5e\x66\x79\x3d\x88\xfe\x78\xeb\xe1\x65\ +\x19\x86\x71\x99\xb1\xd1\x8d\xa2\x9f\xb3\xbd\x11\x0c\x4a\xc7\xa7\ +\x5f\xc8\x5e\x0e\xd2\xaf\x9b\xb8\xfb\x82\x6e\x89\x65\xb9\x67\x4a\ +\x21\x40\xeb\x92\xa2\x2e\xa6\x4b\xea\xf6\xd3\x27\x52\xdc\xf1\x5d\ +\xd7\xe3\xdb\xff\xfa\xbd\xf8\xca\xd7\xec\xc2\x52\xb3\xa9\xf6\x8a\ +\x86\xf3\xe9\xca\x5a\x47\xbe\x6b\x07\x85\x54\x12\x62\x9f\x68\x07\ +\x87\xec\x62\x87\x0d\x6d\x10\xfa\x30\x1a\x3b\xe4\x68\xcf\x54\xa3\ +\x29\x74\x4e\x56\xf0\x8a\xbb\xbf\x17\xf7\xde\xf6\x5a\xed\x7c\x61\ +\x27\x91\xeb\x04\xf3\x85\xd0\x57\x18\x3e\xbd\x0d\xf0\x76\x14\xf5\ +\x61\x24\x7e\x37\xf4\x63\x9f\xff\x1f\xd8\xdf\xf9\x34\x66\x16\xa6\ +\xdd\x4b\x64\xb4\xa7\xe4\x8f\x36\x1d\xa7\xea\xe3\xa8\xa2\x4e\xcb\ +\x75\xa8\x75\xc4\x9e\xa2\xdd\xc3\x6f\x73\xb1\x33\x8d\x36\x15\xc3\ +\x73\xa1\x6d\xa6\x6a\xc9\xe2\xcb\x49\xdd\x62\x23\x70\x54\x92\x1b\ +\xa1\x16\x48\x3d\xee\x46\xa8\xd5\xab\x92\xab\x1a\xbf\xcb\x2a\xe5\ +\x40\x1b\x4a\xa3\x50\xc3\x00\x69\xb7\x82\xa9\xe0\x26\x7c\xcb\x9b\ +\xdf\x2b\xf1\x47\xb4\xf8\xdd\x1e\x06\x2a\x64\x0b\x2e\xdb\xfc\xa5\ +\x7d\x21\x79\x2a\x5e\x58\x7a\xe4\x99\x3f\xc3\x9f\x7f\xe1\x57\x31\ +\xb6\x73\x44\xf6\xb2\x36\x97\xb8\xa2\x1e\x5f\x80\xe2\xf4\x8a\x0e\ +\x2f\xaf\x90\x28\xfe\xb4\x23\x79\xec\x78\x1c\xb8\xa6\xed\x58\xc9\ +\x47\x75\xca\xe9\x1f\x7b\xcf\x6f\x49\xde\x25\x2c\x75\x29\xd9\x61\ +\x9a\x7c\x71\x7e\xac\xc6\x6f\xbb\x32\xe7\x3a\x64\xc7\x63\x54\x55\ +\xdf\xd3\x0b\x27\x71\xec\xd4\xe3\x78\x6e\xfe\x11\x3c\xfb\xfc\x47\ +\xd1\xc5\x49\x5c\xb5\x37\x42\x75\xa2\x26\xe5\x9b\xa2\xdb\xa1\x4c\ +\xb1\x2f\x63\x39\x5f\x24\x6f\x51\x24\xba\xa8\x8d\x28\x4f\x3b\xb4\ +\x37\x44\xdf\x48\xca\x4d\xf3\xa5\x39\x10\xe5\x34\x0f\x92\x4e\xc4\ +\x0e\x34\xe7\xcf\xec\xe6\x12\x48\x47\xab\xc9\x1f\xcb\xbb\x12\x49\ +\x19\xcb\xb1\x0e\xe4\xb9\x8a\xdf\x53\xcb\xc2\x1e\x12\x39\xb8\x49\ +\xb7\x2d\xcf\x00\x12\x2a\x13\x3d\xf8\xc6\x54\xc8\x29\xd5\x45\x92\ +\xac\x29\xab\x52\x93\x63\x29\xf9\x88\x39\x4b\x43\xd2\x10\x39\x22\ +\x53\xf2\x94\x74\x79\x8e\x56\x25\x04\xbf\xb2\x46\xbb\x5b\x72\x2c\ +\x72\xf8\x5d\x36\x4e\x8f\x7d\xfc\x68\x17\x63\x8d\x97\xe1\xb5\x2f\ +\xfb\x41\x5c\x75\xd5\xbd\xfa\x5c\x41\x75\x69\x3e\x3b\xa8\xad\x61\ +\x18\x17\x1a\xbb\x12\x0d\x63\x78\x58\x87\x9a\x61\x5c\xc1\xd8\xc5\ +\x6f\x6c\x19\x9e\x34\x65\x4b\xac\xd8\xf6\x55\xc9\xf2\x39\xc5\x07\ +\x56\xef\x94\x85\x0f\x9a\x9c\xde\x4e\x5b\x16\xf8\x18\xcb\x07\x42\ +\xee\x93\x70\xee\x7b\x0c\x2e\xa6\x9f\x8e\xc4\xc5\xa0\x8b\x4f\x94\ +\x6c\x14\xe0\x63\xb6\x3c\x08\xb2\x6b\x2c\x6f\xa2\xdb\x93\x07\xc2\ +\x6e\x13\xbd\xa4\xab\x9d\x43\x9d\x9e\x2c\x69\x4b\xf6\xf6\xd0\xc9\ +\x3a\xe8\x26\x3d\xf1\x4f\xc4\xdd\x95\xb0\x09\xda\x5d\x59\xf3\xa1\ +\x54\x44\x73\xaa\xb9\x50\x1e\x1f\xf9\xe6\x68\x23\xa8\xc8\x52\x97\ +\x87\xc0\x51\x8c\xc8\x03\x30\x3f\xd4\x1d\xc7\x23\xa8\x56\x46\x50\ +\xab\x8d\xa1\x51\x95\x87\xc9\xea\x28\xe2\x4a\x0d\x71\x54\x13\x3d\ +\x5e\x0a\xdf\xdc\xe5\x94\x39\xfa\xf6\xa8\x26\xe0\x34\x77\x39\x20\ +\xcc\xcf\x00\xfc\xee\x4d\xb1\xb9\xc0\x9a\x32\xf5\xd0\xe0\xf2\x23\ +\xee\xbf\xfd\xf7\x7e\x00\x1f\x78\xe8\xd7\xf1\x5d\xdf\xf7\x4a\xbc\ +\xfe\xad\x37\xa0\x3d\xc3\xf2\xe7\x88\x2e\x37\x92\x8b\x23\xa6\x5c\ +\xe7\x5a\xaa\xdf\x10\x63\x27\x94\x46\xa5\xde\xba\x96\x55\xe1\x27\ +\xff\xee\x01\x59\x36\xd9\xa9\x55\x8d\xab\x58\x3a\x95\xe3\xba\x5d\ +\xaf\xc3\x03\x77\x7d\x1d\xf6\xec\xbe\x53\x02\xf8\xa7\x67\x36\x57\ +\xf8\xdc\xb3\x3c\x0a\x96\x1d\x2b\xb0\x71\x40\x4f\x21\x36\xf4\x30\ +\x81\x2c\xc4\xef\x7d\xf8\x5f\x61\x0e\x27\xd0\x49\x16\x55\x92\xeb\ +\xac\x63\xc3\x4f\x4f\x1b\x80\x74\x7a\xa2\x8e\x1c\xeb\xa6\x9c\x19\ +\xb2\x8b\x53\xff\xb0\x71\x88\xd3\xf5\x64\x99\x9c\x29\xe2\xa0\xde\ +\x3c\xe5\x72\x51\x58\xf5\xe0\x54\x4c\x4e\x21\x4d\x53\x9d\xf2\xc3\ +\x0e\x35\x7d\xa3\x7a\x32\xc2\xe8\x68\x8c\x4a\xcd\x4d\x67\xc8\x4e\ +\x35\xc6\x74\x1d\x49\x4e\x47\x9e\x91\xad\x26\x70\xcb\xb6\xaf\xc3\ +\xbb\x5e\xff\x3d\x94\x20\xfb\xa8\x5b\x2c\x8e\x10\x27\x8f\x1f\xc1\ +\x63\x07\x3e\x8c\x07\xbf\xfc\x21\xd4\x27\x43\x2d\x63\x76\xc8\xf1\ +\x0d\xe1\x28\x76\xe7\x09\xd3\xa4\x5c\x96\x0a\x75\xd0\xbc\x89\x6c\ +\x1e\xbb\x95\xfd\x0e\xae\xf5\x3a\x11\x17\x8f\xab\x36\xf2\x48\x9e\ +\x6a\x72\xb6\x9f\x3e\xd5\xc3\x6b\x1f\xf8\x31\xbc\xf2\xae\xb7\xea\ +\xb7\xe8\xf9\xa6\xb1\xc3\x4b\x77\xc7\x80\xa3\xe6\xa2\xc0\x35\xf0\ +\xcc\x2f\xce\xe2\xd9\x43\x9f\xc3\x33\x2f\x7e\x1c\x4f\x1e\xfd\x24\ +\x70\x5d\x82\x6d\x93\x55\x34\x17\xd8\xc0\xc2\xb7\x8e\xa5\xdc\x24\ +\x01\x36\x82\x50\x02\xdf\x6a\x16\x87\xba\xd5\xc9\xd1\x6a\x72\xbe\ +\x6b\xc3\x8d\x24\xc7\x85\xdf\x43\x61\x23\x63\x9d\x6f\xa2\x4b\xc8\ +\xb9\x53\xf3\x38\x7d\x38\xc3\xe9\x23\x5d\x3c\xf7\xf0\x2c\xf6\xbf\ +\x98\x22\x5d\x6c\x62\xb1\x9d\x62\x7c\x74\x07\xee\x7e\xf9\xed\xb8\ +\xfb\xe6\xb7\xe2\x5d\xdf\xf4\x56\x7c\xd5\xcb\x5f\x8b\x60\x52\x55\ +\x13\x3d\x3b\x68\x2e\x25\xa8\x37\xea\x22\xdf\x1f\x2b\xa6\xa5\xbb\ +\x0b\x98\xa3\x41\xd0\x9f\x5a\xae\xec\x77\x6e\x17\x99\xc7\x4e\xcb\ +\x90\x65\x14\xc8\x7d\x84\x3d\xc9\x72\xbf\xe0\x9b\xd7\x51\xd8\x90\ +\x1c\xf3\x2d\x6c\xe0\x08\x3e\x8f\x2f\x7d\xf4\xd3\x18\x4f\x3a\x38\ +\x75\xf0\x20\x46\x26\xde\x80\xd7\xbf\xeb\x5b\x30\x5e\x91\xb2\x91\ +\xfd\x7a\x8d\xaf\x88\x5d\x71\x73\x7d\x2e\xd9\x6c\x1a\x5e\x2f\xc3\ +\x30\xae\x70\xdc\xcd\x69\xf5\x5d\x71\xeb\x0c\xba\xa5\x6c\x4d\xde\ +\x26\x6e\x4a\x4e\xd5\x73\x7f\x1f\x1d\x88\x4f\x54\x14\x28\x54\x5d\ +\xd6\x58\x6c\xc7\xf7\xfe\xeb\x9f\xc1\xff\x7e\xf4\x3f\xe1\x47\x7f\ +\xe0\xad\xd8\x7d\x4d\x47\xcc\x14\x29\x4f\x56\x7c\x12\x4d\x3b\x89\ +\x88\x44\x60\x35\xce\x4e\x25\xda\x1d\x6e\x4c\x9a\xd4\x8d\x52\x8f\ +\xb1\x43\x8a\x3e\x9a\x8c\xec\x8b\xa5\x0e\x4d\x64\x23\xef\x8d\xa2\ +\x7d\x72\x04\x6f\x7a\x35\xa7\x7f\x7c\xb5\xd4\xb5\xac\x81\x24\x1c\ +\x2b\x5a\x81\x47\x6e\x59\x13\xaf\xe2\xa6\xd0\x84\x24\xaa\xb7\xb7\ +\x03\xfc\xd1\xa7\x7f\x01\xa7\x7a\xcf\x63\xa1\xbd\x24\x3e\xee\x05\ +\x33\x06\xa1\x2d\x4e\x1b\x90\x9d\x23\xad\xa5\x2e\x64\xb7\xb3\xa7\ +\xc4\x7e\xe2\xc8\x35\xda\x2f\x1c\xbd\xa4\x75\xbd\x84\xe7\x9a\x95\ +\x29\xed\x80\x65\x44\x45\xda\x84\x51\x1c\x8a\xdd\x0c\x1d\xa1\x56\ +\x6f\x00\x93\xdb\x6a\xae\x43\x4d\xec\x2b\xf7\xc2\x8d\xcb\x0f\xf5\ +\xd1\xef\xcf\x8a\x02\xb5\xd6\xf5\xf8\x96\xb7\xbc\x17\xf5\xda\x8e\ +\x22\xbf\xae\xa3\xcf\xe5\xdb\x9d\xb9\xfc\xd5\x7c\xd0\x76\x0f\xab\ +\xe8\x89\xbd\xff\xe4\xfe\x8f\xe3\x93\x4f\xfc\x16\xc2\x46\x26\x36\ +\xbd\xd8\x36\x51\x4f\xf4\x13\xb7\x44\xa3\xed\xa0\xd1\x35\x36\xb7\ +\x65\x43\x1c\x2b\x52\x75\x57\xa1\x03\x6d\xc7\x0c\xd5\x7c\x14\x7b\ +\xae\xbe\x0f\xef\x78\xf9\xdf\x97\x6d\xc9\x8f\x66\x4f\x63\x6b\x7e\ +\x9d\x1c\xfa\x09\x85\xf7\xf2\x6e\x75\xb0\x80\x68\x37\x32\x62\x8e\ +\xf9\xe6\x51\x1c\x3c\xfe\x08\x1e\x39\xf8\x11\x3c\xb5\xff\x13\x98\ +\xd8\x9d\x63\xfb\xce\x2a\x62\x09\xc3\x54\xd3\xc4\x7d\xb3\x36\x8b\ +\x24\xbf\xb4\x4f\x69\x43\x69\xe7\x97\x93\x55\x89\x62\x57\x66\x2c\ +\x6b\x89\xc1\xce\x31\x1e\x2b\xda\x8a\xf4\xe7\x1f\x47\x3c\xaa\xed\ +\xcc\xfc\x0a\xec\x8c\xd3\xe9\xb5\xc3\x0e\x1a\xf5\x2a\xe6\x5b\x5d\ +\xcc\x2d\xce\x63\xa9\x39\x82\xb4\xdd\x10\x0b\x67\xbb\x3c\xd3\x4c\ +\x40\x9e\x7c\xc4\xd6\x19\x95\x64\xaa\x72\x7c\x62\xb4\xd3\x9e\x9c\ +\xb7\x39\x9a\x58\x42\x25\x68\x89\x4e\x8b\x08\xd3\xb6\x64\xe3\xb4\ +\x84\x9b\x97\x3c\xcd\xa1\x51\x91\xe3\xda\x18\x11\xdb\xaf\xc1\x94\ +\xe5\x18\x44\x62\x83\x73\xa2\x6d\xb1\x7b\xbb\xa2\x83\x94\x21\xa7\ +\x0a\x9d\x39\x21\xcf\x62\xc9\x0e\xbc\xe1\x75\x3f\x80\xab\xaf\xfe\ +\x4a\x8c\xd6\xb7\x6b\xd1\xe8\x34\x9c\xcb\x05\x68\x18\xc6\x85\xc4\ +\xae\x44\xc3\x18\x1e\xd6\xa1\x66\x18\x57\x30\x76\xf1\x1b\x5b\x67\ +\xf5\x59\xc3\x67\x6b\x76\x39\xf0\xb1\x5d\x9f\x03\xc5\x4a\xd3\xe7\ +\x26\x86\xd3\xd7\x72\xe5\x01\x91\x4e\xd9\x95\xeb\x6b\x8a\xfa\x18\ +\x28\x6b\xed\x13\xd0\xf8\x3d\xf9\xe3\x6f\x5b\x1e\xe6\xe4\x51\x1e\ +\xbd\xf6\x9c\x3c\xb4\xb7\x91\xf6\x16\xe5\x41\xbe\x2d\x0f\x62\xec\ +\x34\x6b\xa2\xd9\x9d\xc6\x52\x6f\x0e\x9d\x8e\xb8\x5b\xb3\x58\x58\ +\x9c\x46\xab\x3b\x8f\x96\x84\x6b\xb5\x17\xb1\xd4\x5e\x42\x37\xe9\ +\x6a\x47\x0a\xbf\xc7\xd0\x65\xa7\x80\x24\xd0\xe3\x73\x6e\x22\x3a\ +\xc6\xfc\x1a\x81\xb8\xd3\x50\xb6\x73\x37\xbd\x0a\xa7\x33\x11\xe5\ +\xb4\x93\x4d\x1e\x08\x83\x6c\x12\x23\xd5\x06\x46\x6a\x13\x18\x1b\ +\x99\xc0\xc4\xd8\x2e\x4c\x8e\xed\xc0\xd8\xd8\x24\xc6\x1b\x3b\x64\ +\xa1\xbf\x6c\xd7\x65\x2d\xfe\xe3\x12\x26\x90\x87\x53\x0f\x1b\x1f\ +\x34\xeb\xe2\xe6\x83\xbd\x3e\x40\x4a\x19\xb0\x94\x96\xe1\x4e\x7a\ +\x2f\x3b\x5d\x73\x81\xdf\x5e\xc5\xb2\xc7\x4b\xf6\xac\xc2\xc7\xe7\ +\x0f\x6b\x75\xd7\x70\x21\xfa\xc8\x31\x78\xf4\xb1\x63\xf8\x86\xef\ +\xba\x0d\xbb\x6f\xcb\xf0\xa3\x3f\xf2\x36\x4c\x5d\x5d\x41\xd6\x71\ +\x0d\x1a\xbd\x24\x75\x53\x24\xea\x1b\xc9\x5d\xd5\x85\xdf\xbb\xe0\ +\x23\xbc\xbe\x65\x5d\x24\xcb\x06\x10\x8a\xd4\x7e\x23\xf9\x73\x96\ +\x03\x8f\x6d\x28\x0f\xef\x75\x74\xe4\xd0\x55\x93\x3d\x78\xcd\xfd\ +\xdf\x88\x1b\xf7\xbe\x5c\x1e\xbc\x77\xe8\x7e\x87\xcb\xbf\x36\x3a\ +\x88\x1c\x8a\x56\xd4\x5d\x24\x50\xc0\x33\x89\x9d\x62\xd3\xcd\x53\ +\xf8\xd0\xa7\x7e\x01\xf3\xc9\x69\x24\x72\x2e\xe8\xc7\xd3\x25\x28\ +\xdf\x3a\xd6\xe9\x87\xe4\xe4\xe9\x76\x53\xb4\xdb\x2d\x1d\xa1\xd6\ +\xe3\xdb\xb3\x52\xf6\xd4\x4f\x3b\x08\x73\x76\xa8\xb1\x83\x8d\x3a\ +\x4b\xd9\x4b\x7c\x97\xac\xef\xa4\x29\xd4\x50\xff\x00\x95\x4a\x88\ +\xda\x08\x30\x3e\xc5\x0e\x35\x4e\x51\xe4\x3a\xd3\xf8\xb6\x79\x14\ +\xca\x5a\x22\x69\x9e\x45\x5e\x54\x15\xd9\xed\x71\x4c\x56\xee\xc2\ +\x5f\x7f\xf3\x0f\x22\x0e\xd8\xd1\x1a\x62\xbe\x99\xe2\xf0\xf1\xc7\ +\xf1\xf9\x27\x3e\x88\x03\xf3\x8f\x89\x9c\x86\x9c\xc3\x22\x3d\xe2\ +\x9b\xc4\x3c\xeb\x53\x44\xb1\x9b\x5a\x53\x93\xd6\xec\x53\x28\xcb\ +\xc5\x95\x83\x1e\x37\x59\x78\x46\x68\xa3\x90\x1e\x09\xfa\x31\xac\ +\x5b\x6b\x26\xc5\x5d\x69\x4b\xa8\x56\x0d\xef\xfe\xa6\x5f\xc5\x48\ +\xc3\x9d\x5f\x1a\x8f\xf2\x3c\x52\x0e\xfc\x68\x3d\x5b\x87\x9a\xbd\ +\x26\xf6\xef\x7f\x1c\x8f\x1f\xff\x0b\x7c\xf1\x8b\xbf\x8f\xea\x35\ +\x72\x3d\xec\xa8\x22\xed\x02\x1d\xd1\x93\x9d\x7d\x94\xad\xf1\x45\ +\x87\x28\xa4\x0e\x5c\xf3\x3b\x1b\x4e\x36\x4d\xc6\xae\x84\x15\xb1\ +\x72\x1c\xe4\x68\xa5\xec\xa8\x93\xfc\xb1\xc3\x50\xae\xab\xce\x62\ +\x17\x47\x9e\x6d\xe3\x89\x4f\x9f\xc0\xe9\xa3\x33\x68\xcf\x4b\xba\ +\x0b\x1d\xa4\xe1\x08\xee\xb8\xe6\x01\xdc\xf9\x8a\xfb\xb1\xfb\x9a\ +\xeb\xf1\x77\xbe\xef\x3b\x70\xcb\xed\x37\xa8\x8a\x6c\xdc\x4b\x3a\ +\x6c\x24\x92\x6b\x91\xe5\xcd\xe2\x61\x79\x30\xaf\xca\xb2\x43\x60\ +\xde\xfa\xb7\x57\xe3\x42\xe8\xd9\xa6\x2c\x87\x10\x07\x7d\xb5\x84\ +\x78\xdc\x59\x9e\xe2\xe6\xa8\x3a\x8e\x44\xe8\xe5\x72\xff\x90\x73\ +\xa7\x82\x49\xd4\x39\x77\x95\xd0\x49\x16\x24\x0f\xf3\x18\x19\xdd\ +\x89\xa8\x52\xd5\x63\xb6\x7c\x2e\x0c\x52\xab\xbc\xbe\x90\x94\x75\ +\x33\x0c\xe3\x32\x62\xe3\x9b\x4b\xff\x6d\x68\xdd\xdb\x81\x06\xe2\ +\x8b\x17\xe5\x50\x7d\x69\xc8\x2e\x2f\xcf\x87\x72\x77\x58\xb7\x55\ +\x8e\x49\x56\xb6\xbd\x8b\x77\xe4\x8d\xe8\x97\x42\x56\xa7\x38\x38\ +\xcc\x1a\x6c\x9c\x60\x1f\xa5\xfc\x48\xfd\xe0\xdd\x62\x25\x21\x5d\ +\xa8\xe0\xa6\x77\xdc\x82\xd7\xbc\x7d\x17\xde\xfd\x75\xd7\x8b\x9d\ +\xb9\x44\x4b\x42\xc3\x68\x55\xa5\xb6\xae\x54\x92\x1c\xad\x23\xde\ +\x81\xd8\x9a\xec\x50\x63\x1d\xc3\x3a\x94\x2f\x2c\x69\x3d\xce\x6d\ +\x95\x2a\xbf\xac\x3f\xc5\x15\x67\xdb\xb0\xc8\x17\x63\xee\xff\x4e\ +\xdc\x7b\xfb\x1b\x25\x96\xd4\x3d\xb9\x54\x82\xfa\x62\x0b\xc3\xbb\ +\xba\x5d\xe3\x6c\x88\xcb\xb4\xab\xff\x58\x97\x67\x7c\x05\x4d\xec\ +\xe3\x39\x7c\xf0\x73\xff\x1e\x73\xbd\x93\x68\xf7\x96\x34\x94\x1b\ +\x99\x26\x2e\xc9\x00\x5f\x8e\x4a\xba\x39\x9a\x4b\x6d\x88\x49\x25\ +\x76\xa1\xb3\xa5\xc4\x34\xd4\x70\xac\xe7\xdd\x68\x23\xb1\xe3\x64\ +\xbd\x52\xff\xc9\x0f\xeb\x52\xae\xa8\xb9\xa8\x5d\xad\x05\x18\x19\ +\x0b\x21\x66\x34\xa6\x26\x2b\xa8\xd7\xf9\x92\x1a\x47\xb3\x4b\x08\ +\x31\x8a\xf9\x72\x92\xce\x1c\x40\x21\x92\x40\xb8\xb8\x1b\x5f\xf9\ +\xba\xbf\x81\x9b\x77\x7c\x85\x68\x2b\x89\xca\xc2\xb2\x65\x12\xcc\ +\x85\xba\xa5\x7c\x39\xed\xa0\x18\x29\x78\xf1\xc4\xf3\x38\x70\xea\ +\x13\xf8\xe2\xa3\x1f\x44\x7d\x47\x43\x6c\x11\x8e\x1c\x17\x83\x84\ +\xa3\xb0\x44\x36\x75\xa1\x68\x9d\x09\x40\x75\x74\xb8\xf2\x67\xbd\ +\x2f\x6e\x09\xc4\x30\x9a\x17\xa6\x21\xfa\x24\x69\x05\xef\x78\xdd\ +\x3f\xc0\x8d\x53\xf7\xbb\x7d\xcc\x57\x11\x77\x35\x8c\x41\x79\x5c\ +\x53\x5f\xb1\x09\x32\xc9\x78\xd1\xc1\x78\x7c\xe1\x28\x0e\xcd\x7f\ +\x11\x2f\x1c\xfd\x24\x1e\x7f\xfa\xcf\xb0\xed\xaa\x4c\xec\xca\x31\ +\x79\xb4\x91\xa7\x0f\xc9\x6f\x24\x85\xc4\x91\x7f\x94\xcf\xb2\xc8\ +\xa5\x6c\x54\x69\x81\x76\x22\xdd\xf4\x62\xea\x7c\x26\xe1\xcb\x5e\ +\x94\x4c\xfd\x99\x5a\x28\xc6\x57\x2c\xe1\x38\x6a\x2c\x14\xfb\xbb\ +\x23\xfe\xd5\xa0\xa7\x53\x6b\x8a\x65\x8c\x53\x73\x8b\x98\x3d\xb9\ +\x84\xd3\x33\x39\xe6\xbb\x63\xd8\x15\xde\x82\xed\x62\xab\x4e\x4c\ +\x4e\x61\xd7\xf8\xcd\xb8\x66\xef\x35\xa8\x37\xc6\xe4\xd9\x86\x9d\ +\x6b\x1c\xe9\xe7\xf4\xee\xc8\x92\xf1\x39\x4c\xce\xed\xa5\xee\x49\ +\xcc\x2f\x1c\x40\x73\xf1\x10\x16\xdb\xcf\xcb\x33\xd4\x71\x39\x5d\ +\xf7\xa1\x1a\xce\x4b\x16\xa6\x75\x8a\xf8\xbc\x1b\xa1\xd3\xed\x21\ +\xe8\x8d\x8a\x06\x91\x3c\x43\xd4\x10\xf5\x38\x33\x44\x03\x73\xf3\ +\x4d\x1c\xde\x97\xe0\x75\xaf\xff\x21\xbc\xea\x81\xf7\xa0\x3e\xc2\ +\x29\xe1\x25\x0f\x62\x53\xae\x55\xaa\x86\x61\x9c\x3f\xec\x2a\x34\ +\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xbf\xb1\x16\x34\xb6\xdc\ +\x43\x25\x2b\x8a\xc2\x83\x7e\xc5\xe3\x90\xf3\x72\x0f\x78\xdc\xd6\ +\xa6\x01\x79\xd0\xf3\x7b\xf9\xd5\x86\x3c\xa8\x6a\x07\x16\xc3\x32\ +\xde\x9c\xfc\xb5\xbb\x4b\x68\x2f\x2c\xa0\xd5\x3a\x85\x56\x6f\x16\ +\xed\x6c\x5e\xf6\xce\xca\xc3\xdc\x2c\xd2\xce\x3c\x9a\xed\xd3\x48\ +\x96\x4e\x48\xb8\x05\xd9\x9e\x45\xab\xb3\x84\x4e\xd2\x41\x2a\x0f\ +\xcb\x3d\x79\x78\x63\xdf\x40\x2c\x0f\x81\x9c\xb9\x8f\x0f\x71\x01\ +\xbf\xcf\x20\x6b\x0e\xa7\x49\x12\x8e\x3a\x11\x27\x1b\xe6\x65\x9b\ +\xd3\xa9\xf0\xcd\x60\x7d\x48\x65\x67\x19\xb5\x64\x03\x82\x3c\x68\ +\xbb\x8e\x2f\x59\x73\x33\x96\x87\x69\xd9\x4c\x7a\x01\x7a\x51\x82\ +\x28\x0d\xd0\x4d\x72\x74\xdb\x09\xba\x92\xa7\x90\xdf\x0f\x48\x6b\ +\x08\xd3\x08\x71\x30\x82\x5a\x38\x86\xa9\xc6\x1e\xec\xda\x76\x0d\ +\x76\x6f\xbb\x01\x13\xb5\x9d\xd8\xb5\x63\x17\x26\xc7\xf7\x62\x64\ +\x64\x27\x46\x6b\x53\xfa\x41\x73\x0f\xdf\x9a\xd5\x6f\x6f\x69\x83\ +\x82\x7b\x78\x5d\xdd\x60\x33\x80\x65\xcf\x81\x7b\x07\xb2\x12\x45\ +\x5c\x92\x0e\x1f\xf8\xf5\x18\xb5\x81\x9f\xfa\xf9\x7f\x84\xdf\xf9\ +\xfd\xff\x88\xbb\xee\xdf\x83\x1f\xf8\xfb\xaf\x44\x25\xae\xa0\xd7\ +\x63\x27\x94\x94\x2b\x47\xf3\x75\xd8\x91\x95\x4a\x19\xf0\xdb\x5a\ +\x1c\x63\x44\x3d\x25\x3e\x4f\x00\x22\x2b\x75\x8b\x68\x36\x46\xf0\ +\x8d\x5e\xb6\x57\xb0\xf3\x8a\x0e\x76\xac\xf5\x3a\x92\x62\xab\x81\ +\x97\xdd\xf8\x36\xdc\x7d\xc7\x5b\xb0\x6d\xf2\x6a\x09\xeb\xa6\xe6\ +\xe1\xf1\xf7\x6f\x72\x53\x3d\x6d\xd0\xd0\x32\x70\x72\xd9\x16\xe5\ +\xce\xad\x04\xbd\x34\xc6\x67\x1e\xf9\x03\x3c\x7b\xe2\x13\x58\xea\ +\x4c\x33\x80\x9c\x67\x12\x56\x22\xea\xdb\xd2\xb2\xd6\x0f\xe8\xf7\ +\x32\x74\x9a\x6d\xb4\x3b\x99\x1c\x7b\x57\xce\xfa\x46\x35\xd7\x12\ +\x2e\x91\x30\x3c\xcc\x6c\xb8\x62\xd9\x33\x35\xea\x2c\x1b\xcc\x0e\ +\x57\xf4\xd6\x25\x96\xf3\xa5\xda\xc8\x30\xbe\x2d\xc2\xf8\x58\x55\ +\x8f\x5f\xb5\x2a\x67\x58\x25\xd2\x86\xa0\x42\x41\x8d\xa4\xed\x34\ +\x59\x1d\xe3\xf1\x9d\x78\xd7\x9b\xbf\x0f\x0d\x54\x71\xe8\xf4\x51\ +\x7c\xe2\x8b\x1f\xc5\x81\x63\x1f\x47\x45\xb2\xcc\x0f\xdc\x67\x92\ +\xbe\x76\xd6\xb0\xa1\x47\xe4\xb3\x93\x8e\xa5\xaa\xa3\xb9\x28\x43\ +\xb5\x70\xf9\xa2\x8b\xb0\x5c\xe8\xe6\x9a\xf8\x8e\x51\x0d\xc9\xf4\ +\x65\xa1\x14\x39\x53\x91\x2c\x86\x78\xe0\xfe\x77\xe1\x95\xb7\xbf\ +\x47\x1b\xe6\xd8\x65\xc9\x5f\xc9\xb0\x94\x51\x2a\xe7\x2a\x3b\x85\ +\xdc\x35\xfa\xec\xb3\x9f\xc7\x53\xd3\x1f\xc3\x97\x1e\xf9\x13\xe4\ +\xdb\x97\x50\xdb\x39\x8e\x5e\x33\x91\xb2\x92\xeb\x26\x64\x07\xb4\ +\x14\xa0\xea\x21\x79\x96\xcc\xf3\x3b\x1b\x3c\x3c\x19\xa7\x02\x92\ +\xc4\x53\x29\x6b\x4a\x4f\x7a\x12\x5e\xae\x2b\xfd\xe6\x60\xea\x1a\ +\xc9\x78\x2e\xa7\xdd\x2e\xa6\xf7\xe7\x78\xf6\xe1\x93\x38\xf1\xfc\ +\x3c\x16\x8e\xa7\x68\xc9\xf5\x3a\xd2\x18\xc3\x2d\xb7\xbc\x06\xf7\ +\xbd\xe2\x65\x78\xe3\x6b\xbe\x06\xdf\xf5\x1d\xef\x10\x29\x4c\x2a\ +\x47\xb3\xd9\x44\xad\x56\xd7\x0e\x4b\x16\x6f\x91\x4b\xf9\x2f\xd6\ +\x9a\x75\xfd\x59\x1f\x46\xf1\x0e\x81\x45\xe6\x5c\x6b\xe1\xf7\xf2\ +\x8c\x2b\x7e\xd5\x41\x3d\x42\x2d\x8b\x3c\xe9\x6a\x47\xa9\x4e\x1d\ +\x25\xba\xa5\x72\x8d\xe8\xf7\x48\x8a\xeb\x77\x20\x94\x51\xa8\x7e\ +\xde\x29\xa7\xbb\x51\x91\x95\xc3\x79\x9d\x0d\xc3\xb8\xf8\xe8\xbf\ +\x3e\x97\xaf\x5d\xef\x70\xf8\x60\xde\xd7\x6f\xbb\x5a\x4f\x60\x1d\ +\xbb\x1c\x87\xbe\x52\x97\x8a\x4d\xa2\x75\x30\xbd\xb5\x72\xf1\x71\ +\xf8\xb3\xec\x72\x7e\x5a\x71\xca\xbd\x8f\xc1\xfc\x2e\xc6\xd1\x9b\ +\xad\xc8\xe1\xc2\x9a\xa6\xb8\xf9\xba\x6d\x3a\x78\xbf\x74\xf5\x0a\ +\x6f\xeb\xee\x85\x91\x95\x7a\xad\x10\xa4\x2e\xf7\x5b\xc6\x87\xd9\ +\x22\x2f\x15\x34\x00\x06\x2a\xcb\xf7\xdb\x2b\x91\x9d\x8a\x2e\x0c\ +\xbf\x1b\xf5\x33\x3f\xff\x4b\xf8\x6f\x9f\xf9\x79\xfc\xe0\xf7\xbd\ +\x0a\xd7\x5e\x2b\xb6\x53\x47\xf6\x4a\x7d\xc0\xbc\x86\x52\x87\xb2\ +\xe3\x89\xb6\x67\xd2\xeb\x89\xed\xe0\xa6\xc5\xd3\x22\x2a\x64\x68\ +\xf1\x17\x36\x94\xca\xe5\x4e\x31\x68\x7b\x79\x07\xd5\x60\x12\x4b\ +\x33\xc0\x1b\xef\xff\x6e\xdc\x71\xd3\x1b\x65\x6f\x55\x64\xb1\x04\ +\x19\xd7\xc5\x5f\x59\x6f\x84\x26\x24\x7f\xec\x98\x92\xba\x4b\x6c\ +\xaa\xa7\x0e\x3d\x88\x47\xf7\x7f\x00\xa7\x96\x4e\x89\xed\xa4\x63\ +\xe3\xc4\x1e\xa3\x7d\x24\x6b\x1e\x2b\xb1\x91\xba\x62\x47\xb1\x43\ +\xad\xd3\x96\xbc\xe9\x27\xd6\x38\xba\x5e\x6c\x03\x09\x93\x49\xfd\ +\xcf\xee\x3d\x86\x63\xdc\xd5\x75\xb4\xac\x0a\x35\x39\xf2\x4e\x4c\ +\x4b\x8c\x8c\x01\x63\xa3\x31\x46\xc6\x23\xb1\x01\x62\x54\xaa\xb4\ +\xa3\x0a\xbb\x87\xea\xa9\x81\x2c\x76\x83\x98\x1d\xb5\x74\x14\xbb\ +\x77\xbf\x06\x6f\xbf\xff\x87\xc5\x87\x2f\xd7\x2d\x8b\x95\x34\xc5\ +\x76\x92\xb4\x42\xa9\x8b\x7b\x62\x63\x3c\x79\xe0\xe3\xf8\xcc\xd3\ +\x7f\x80\xf9\xee\x7e\xd4\xeb\xe3\x52\x6e\x0d\x11\x45\x3b\x46\x04\ +\x49\x2c\xaf\x87\xaa\xe6\x8c\xbd\x42\x98\x3b\x0a\xd4\x7e\xf9\x32\ +\xd0\x3c\x40\xca\x3f\x45\x45\x6c\xfc\x9e\x3c\xad\xfc\xf0\xd7\xfe\ +\x67\x39\x96\x2b\xdf\xa2\x75\x21\xe4\x57\xcf\xe7\x42\x3e\xdd\x22\ +\x84\x4e\x8e\xe2\x8b\x75\x6a\xc7\x1c\x27\x4f\xed\xc7\xd3\x0b\x9f\ +\xc1\x33\x47\xff\x0a\x47\x8f\x3f\x88\xda\x64\x86\xab\xb7\x8d\xca\ +\x33\x4c\xac\x2f\x20\x45\x91\x66\x5c\xd2\x97\xb8\xbc\x94\x34\x7d\ +\x71\x70\x45\x23\x4b\xf4\x0d\xc3\x58\xd2\xe6\x33\x8d\x3b\x76\xec\ +\x85\x62\xbc\x48\xf6\x8f\xd5\x03\x7d\xd1\x27\x95\xb2\xeb\x2d\xce\ +\xe1\xd8\x74\x17\x59\x37\xc7\xe1\xe3\x62\x67\x75\x7a\x68\x87\x3d\ +\x1c\x3f\x3d\x82\xd9\xa5\x3a\x16\x4f\x8f\x62\xcf\x9e\x3b\x71\xd7\ +\xd5\x37\xe1\xee\x9b\xdf\x84\xd7\xbd\xfc\x56\x8c\x8e\xae\x9a\x4b\ +\x5b\x6d\x3a\xf7\x6c\xe4\xf4\x71\x8a\x88\x8e\x3a\x2d\xb6\x7b\xa1\ +\x88\x70\xab\x2d\xe7\xd0\xa1\xb9\xcf\xe3\xc4\xc9\x87\xb0\xd4\x3d\ +\x8c\x20\x6e\xa3\x1a\x77\x10\x24\x27\xd1\xe9\x2d\x89\xfd\x2d\xe7\ +\x7f\x73\x01\x8b\xc7\x4f\x22\x5a\xcc\xd0\x6e\x5f\x8d\xb0\x5b\xc7\ +\x5c\x0b\x72\xad\xbc\x13\x5f\xf5\x8d\xdf\x8f\x31\x76\xaa\x69\x11\ +\xb8\x72\x30\x0c\xe3\xc2\x61\x57\xa0\x61\x0c\x0f\xeb\x50\x33\x8c\ +\x2b\x18\xbb\xf8\xaf\x40\xfc\xb3\x4c\x79\x4d\xbc\x75\xc5\x2a\x81\ +\x4f\x8d\xba\xe6\xb3\x16\x1f\x66\xe5\x01\x52\xc3\xb9\x40\xee\x97\ +\x4d\xf8\x7c\xc4\x76\x0d\xf1\xb9\xc4\x49\x03\x7e\x42\xbb\x52\x3c\ +\x12\xe7\x58\x68\x1e\xc7\xe2\xfc\x0c\x66\x16\x0f\xa3\x9b\x1c\xc5\ +\xe2\xc2\x73\x68\xcd\x1e\x45\xfb\xf4\x7e\x9c\x9e\x3e\x88\x5e\x6f\ +\x1a\x59\xb2\x88\x28\xef\x20\x91\x87\xda\x50\x9e\x4b\xd9\x31\x12\ +\xcb\x83\x78\xca\x0f\xbf\x57\xaa\xc8\xd2\x48\xdc\xa2\x87\x3c\x48\ +\x86\xf5\x2a\x6a\xf5\x11\x54\x62\xd9\xc7\x07\xf2\x0a\xbf\xef\x10\ +\x23\xc9\x42\x1d\x8d\xc4\x37\x20\xd9\x77\xc2\xce\xab\xae\x08\x62\ +\xc7\x10\x3b\x7e\xa8\x3b\x1b\xed\x75\x8a\x1e\x6a\xe6\x9e\x96\x45\ +\x43\xf7\x20\xc9\xb7\x66\xf5\xdb\x03\x1c\x1d\xc3\xcc\xc5\xae\xe3\ +\x4d\xa7\x97\x89\xd8\xd9\xc0\x07\x67\x16\x40\xa8\x9d\x24\x09\x47\ +\x06\x49\x26\xdb\x4b\xf2\x30\xde\xce\x74\x84\xd4\xc4\xe8\x35\xb8\ +\xfe\xea\x5b\x70\xf3\x35\xf7\x60\x6c\x7c\x37\xae\xde\x71\x03\x76\ +\x4c\xed\x96\x87\xc8\xed\xa8\x55\xc6\x99\xec\x0a\xa2\x90\x6f\xcc\ +\x5a\xe9\x60\x2b\x1a\x2a\xb4\x74\xb9\xde\x98\xe5\xd0\xde\xe1\x91\ +\x6d\x3e\xab\xb3\x09\x81\x53\x00\x72\xf7\xd2\x62\x8e\xd7\xbf\xe3\ +\x5e\xcc\x45\x4f\xe1\x1b\xbe\xe6\x4e\xbc\xfd\x5b\x5f\xa5\x1f\x84\ +\x67\xc7\x67\x92\x76\xd1\x69\x89\x3b\x4d\x90\x74\x25\xaf\x89\x4b\ +\x9f\x23\x85\xf8\x06\xad\x4e\x29\x53\x24\xc0\xb7\xae\x99\x1e\x1b\ +\x62\x22\x29\x37\x86\x65\xc3\x0d\x4d\x89\x38\xae\xa2\x22\xe7\x40\ +\x7b\x36\xc6\x75\x3b\x5f\x86\x7b\x6f\x79\x2b\xae\xba\xea\x66\x89\ +\x59\x45\xb5\x3a\xaa\x0d\x15\x0e\x89\xc3\x32\xa0\x86\xb2\xd6\xe9\ +\x6e\x28\x5f\x3b\xc4\x7a\x68\xc9\xc3\xfc\x1f\x7e\xf0\x5f\x61\xa6\ +\x76\x0c\xdd\x4e\x53\xf6\x33\x43\x3c\x17\xd9\x00\x94\xe9\xb1\xe1\ +\xc2\x29\x1f\x5b\xcd\x0e\xba\xbd\x14\xfc\x88\x3c\x4f\x49\x3d\xde\ +\xf2\x97\x24\x0c\x2b\x71\xc4\x8f\x69\xe9\x77\x4c\x24\x08\x8f\xb7\ +\xcb\x89\xa4\xa8\x65\xa4\x4e\xc4\x72\xec\xf9\xdd\x88\x89\xed\x11\ +\xc6\x46\x2b\xa8\x54\xd9\xb9\x92\x89\xde\xb1\x7b\xa3\x98\x27\x56\ +\x11\x36\xcc\x63\xf1\xcf\x10\x75\xaf\xc3\x03\xf7\xbd\x0d\xad\x5e\ +\x82\x47\xbe\xf4\x19\x3c\x77\xf0\x93\xd8\x36\x35\x25\x81\xe4\x3a\ +\xd0\xa9\x7b\x78\xfe\x30\x5b\x6e\x64\x9a\x4e\x7b\x24\x7b\x79\xbe\ +\xe9\xd4\x3e\xba\xe5\x4a\xb6\x90\xae\x71\x74\x9b\xca\x71\xad\x8b\ +\xfc\xea\x21\xa1\x8b\xe7\x8e\xe4\x2d\x09\xd0\x88\x26\xf1\xb5\x6f\ +\xf9\x47\xd8\x39\x7a\x8b\x1c\x27\xca\x73\xc7\x21\x60\x63\x88\xc4\ +\xe7\x69\xbe\xff\x99\xa7\x71\x20\x79\x1c\x9f\xfa\xcc\xaf\xa0\x19\ +\x1d\xc5\xc8\xae\x6d\x6e\x84\x59\x96\x20\x8b\x78\x9d\x49\x28\x96\ +\xaf\xe8\xb4\xac\x8b\xc8\x62\xf9\x86\x41\xaa\xc7\x23\xe9\x55\xb0\ +\x34\x9b\xa3\xd7\x15\x7f\x39\x6f\x6b\x12\x28\x92\xb2\x0a\xe4\xda\ +\xe4\x89\xc6\xeb\xe0\xe4\xbe\x05\xbc\xf8\xa5\x13\x38\x7a\x78\x06\ +\x9d\xc5\x00\xdb\xb6\xdd\x84\x9b\x6f\x7f\x39\x5e\xf3\xb2\xfb\xf1\ +\x03\x7f\xfb\x6f\xe1\xf6\xeb\xaf\x66\x06\x44\x2e\x3b\x6d\x81\xaa\ +\x5c\xbb\x4c\x93\xdf\x0c\xd1\x5c\x32\x61\xfd\xe1\xb1\xd6\x8d\x65\ +\x34\xeb\xc3\x42\x45\x7b\x89\x65\xc9\xee\xea\x93\xe2\x93\x1f\x39\ +\xf6\xfc\xd3\x86\x1f\x17\x86\xe7\x0f\xcf\x2c\xa7\x59\xa1\x1f\x77\ +\x15\x2a\x2f\xd3\xbf\x3d\x4c\x36\x92\x5d\xde\x5f\xa8\xf8\x12\xfa\ +\xe3\xaf\x15\xce\x30\x8c\x8b\x08\x77\x7f\x1a\x0c\xef\x56\xc5\x0b\ +\x10\xdc\xe2\x4b\x1c\xac\x07\x78\x33\x2b\xdc\xda\x71\x56\xdc\x6a\ +\xf9\xc3\x51\x50\xfc\x46\xe6\xe6\x60\x44\xb9\xf7\x8b\x6d\xa6\xd5\ +\xa0\xdc\xb3\x75\x24\x10\xa7\xfd\xd5\x29\x8c\x97\x2b\xd5\x2d\xa1\ +\xdf\xb8\xd2\x1b\xae\xc0\x7a\x4f\x64\xa8\x78\xe6\x85\x76\x86\xdb\ +\xa3\x41\x8a\xea\xb0\xc0\x85\x1a\x98\x68\xd9\xdb\x0b\x18\x88\xdf\ +\xb9\x7e\x60\x5f\x0f\x67\x62\xf0\xa5\x4b\x11\x5e\xf9\xee\x7b\x70\ +\xf3\x03\x35\x7c\xdb\xb7\xbc\x02\x49\x65\x16\xbd\xa5\x9e\xe8\x97\ +\xa1\x52\x97\x3a\x55\xea\x65\x9d\xc2\x2f\xe1\x48\x29\xe6\x47\x6c\ +\x07\x31\x28\xf9\x22\x91\xca\x91\x24\xb4\x4a\x91\x34\x69\x9b\xb0\ +\xf6\xe7\x9a\x2f\x23\x65\x52\xd7\xd6\xab\x63\xe8\xce\x04\xb8\xf7\ +\xa6\xbf\x81\x97\xdd\xfd\x95\x7a\x8c\x72\xda\xc1\x72\x0c\x19\x9a\ +\x51\xa9\xcd\x8a\xa6\x2f\xf5\x71\x70\x9b\xe7\x0b\xcb\x51\x7e\x45\ +\xfe\x5f\x3d\xfa\x3e\xec\x5b\x78\x44\x6c\xf1\x93\x6a\xbb\x51\x1d\ +\x76\x06\x51\x37\x96\x2f\xf5\xa0\x3d\xd8\x5c\xec\xa1\xd3\xe1\x8b\ +\x68\xcc\x8f\xe4\x25\x17\x9b\x50\x76\xa6\xbd\x42\x9a\x84\xf7\xe9\ +\xb1\x36\xd4\xd2\x91\x1f\x5d\x4b\x86\xc4\x8c\x12\xfb\x3c\x44\x63\ +\x0c\x18\x1d\x8b\xc5\x16\x8e\x50\x13\x5b\xaa\xc6\x51\x6a\xfa\xa2\ +\x96\xc4\x93\xe8\xec\x5c\xe3\xf1\xcf\x44\x07\x76\xa8\x05\xf1\x8d\ +\xf8\xee\xb7\xfc\x73\xd9\xcb\x8e\x31\xe2\xf5\xe7\x39\x5a\xc1\xec\ +\xfc\x09\x3c\x71\xfc\xa3\xf8\xd4\x67\x7f\x0f\xc1\x78\x17\xb5\xda\ +\x94\x96\x08\x47\x6a\xf1\xf4\x53\x9c\x5a\x2c\x50\x89\x47\xa5\x34\ +\x35\x5d\xd3\xe9\xaa\x73\x17\xc8\xeb\x41\x17\x6d\x92\x4a\x50\xd3\ +\xa9\x09\xbf\xfd\x4d\xff\x56\xd3\xa5\x05\x50\x12\xa8\x2e\xe7\x43\ +\x9d\x28\x4b\x0a\x2c\x97\x07\x16\x49\x7b\xb6\x73\x12\xcf\x9f\xfc\ +\x24\x9e\xd8\xf7\x17\x38\x78\xf4\xd3\xa8\x4c\xf6\x30\x31\x21\xf6\ +\x6e\x56\x93\x6b\x86\xb3\x1b\xc8\xb5\x16\x25\x6a\xeb\xbb\xb8\xae\ +\xcc\x69\xe7\xc4\x95\x8a\xa4\x4f\xa7\xfc\x48\x5e\x32\xb1\xb5\x90\ +\x57\xa4\xcc\x7a\xfa\x4d\xdc\x48\xf6\x57\xc5\x4e\x0a\x2b\x39\x16\ +\x67\x9a\x68\xcd\xb7\x71\xfc\x34\x70\xea\x85\x25\xec\x3f\xd1\x43\ +\x6f\x31\xc5\xd1\xa3\xf3\x78\xea\xc0\x02\xb6\x4f\xdc\x82\xbb\xee\ +\x7c\x0d\x6e\xbb\xe9\x1e\xbc\xea\xf6\x3b\xf1\xd7\xbe\xe1\x6b\x31\ +\x52\xcc\x52\xcf\x33\x88\xd7\xad\xb3\x85\x45\x07\x96\x89\x6a\x23\ +\xde\xb2\xb8\xbc\x95\xf2\xab\x61\xd9\x9d\xd9\xd5\x7b\x07\xaf\xc7\ +\x28\x18\xe5\xab\x8b\xfa\x7c\xd7\x94\x45\x2c\x70\xd9\x7f\x04\x1d\ +\xbc\xa8\xdf\x64\xeb\xce\xbd\x80\xe3\xa7\x9e\xc6\xdc\xd1\x93\x48\ +\xbb\x09\x82\xc5\x2e\x96\xa6\x9b\x78\xe6\xc5\x0c\x2f\x7b\xe0\x5b\ +\xf0\x35\xdf\xf4\x83\xa8\xd7\x2a\x2e\x5d\x3d\x36\x86\x61\x5c\x28\ +\xec\x0a\x34\x8c\xe1\x61\x1d\x6a\x86\x71\x05\x63\x17\xff\x15\x48\ +\xf9\xa0\xbb\xa7\xa8\x62\xed\x76\xe8\xc3\x93\x3c\xe8\xe9\xc3\x95\ +\x3e\xf4\xb8\xc7\x2e\xee\xe6\xb4\x36\x7c\xf0\x0f\xb2\x00\x89\x3c\ +\x1c\x66\x81\x9b\x42\x91\x24\xf2\x88\xb5\xd8\x9e\xc1\xd2\xfc\x34\ +\xe6\x17\x5e\x94\xa7\xf3\x93\x68\x1e\x7b\x02\x47\x0f\x3f\x83\xa5\ +\xd9\x63\x58\x5a\x3c\x8e\x2c\xe9\x21\xae\x56\x50\x19\xe3\x94\x82\ +\xb9\x3c\x2c\xca\xc3\xa6\x08\xee\x72\x08\x55\x1e\xa1\xc7\x5e\x2a\ +\x49\x2d\x09\xe4\x21\x5e\x74\xe8\x65\x3d\x24\xa9\x3c\xb3\x56\xab\ +\x22\xbb\x23\x0f\xfd\x3d\x79\xb0\x94\x87\x54\x79\x82\x8e\xab\x35\ +\xc4\x23\xae\x33\x4d\x04\x21\x8c\x2b\xf2\x00\xdf\x60\x06\xb4\x71\ +\x40\x9f\xb2\xc5\xcd\x37\x27\xb5\x23\x8d\x3d\x1b\x99\x3c\x0e\x33\ +\x9b\xb2\xad\xd9\x96\xfc\x69\x63\x93\x2c\x7c\x38\x97\xe0\x92\xa6\ +\x7b\x90\xcc\x43\x17\x86\x53\x26\x8a\x20\x79\x20\x16\x9d\x29\x3b\ +\x95\xb0\xe2\xd6\x0e\x98\x58\x74\x91\xf0\x99\x3c\x34\xb3\xd3\x24\ +\xe9\x72\x89\x90\xb6\x22\x4c\x8e\xec\xc5\xde\x9d\xb7\xe2\xba\x9d\ +\xb7\x63\x72\x74\x2f\xb6\x4f\x5d\x8d\xf1\x91\x1d\x98\x9c\x9c\x94\ +\x87\xdc\xed\xa2\x8f\x6f\x05\x58\x81\x65\xcc\x45\x13\x26\xdc\x2e\ +\x8e\x11\x0f\x85\xee\x93\x35\x1b\x06\x5c\x10\xef\x51\xb8\x0b\x27\ +\xe3\xe8\xa3\xbb\xb6\x20\xb0\x01\x40\xf2\xde\xcd\xf1\x8b\xbf\xfd\ +\x2b\xf8\x99\x7f\xf7\x63\xd8\xb6\x23\xc1\x8f\xfc\xc8\x57\xe1\xfa\ +\xbb\x77\xa1\xdd\x85\x4e\xc7\xb3\xb4\xb8\xa0\xf9\xe0\x47\xc7\x75\ +\x0a\x48\xcd\x76\x2a\x6a\xb2\x41\x87\x72\xa9\xaf\x94\xa3\x6c\x68\ +\xa7\x9a\x94\xaf\x6f\x5c\xd1\x86\x31\x71\xeb\xc8\xab\x2c\x96\x63\ +\x21\xe7\x48\x2b\xc6\xb6\xda\x4d\xb8\xeb\xc6\x37\xa3\x16\x4f\xa2\ +\x1a\x6f\x47\xa5\xc6\x8f\x9b\xd7\x50\x1f\xa9\xa3\x56\x1f\x93\xa8\ +\x6c\xd4\xeb\x41\xbf\x77\xd7\xca\x51\x11\x7f\xca\x99\x39\xfd\x02\ +\x3e\xfc\xe0\xaf\x61\xa1\xb2\x84\x5e\xaf\xad\xc7\x89\x9d\x1b\xec\ +\x50\x63\x79\xb3\x53\x87\x69\xb6\x45\xf9\x56\x33\x41\x4f\x47\x26\ +\xca\xb1\x61\x83\x5f\xce\xb7\x95\xd9\x31\xcb\x0e\x35\x09\xa7\xed\ +\x33\xcc\x00\x4b\x86\x05\xc3\xc6\x01\x75\xa9\x5c\x96\x11\x57\xec\ +\x7c\xe5\x9b\xd5\x53\xdb\x43\xfd\x86\x5a\xad\x11\x6b\x7a\x9c\xf9\ +\x2f\xe6\x47\x41\x34\xaf\xd4\x83\xf1\x22\xd4\xab\x0d\xd1\x39\xc1\ +\xd2\xb4\x94\xed\xb6\x0a\x96\xe6\x8e\x48\x18\x29\xa3\x94\x9d\x69\ +\x12\x54\xca\x45\xa7\x4c\x64\x23\x8a\xa4\xc1\xd1\x4d\xec\x50\x73\ +\xf1\x45\x0d\xae\xf5\xcf\x6d\x13\xe7\x2e\xfc\xf8\x57\xec\xe0\x2f\ +\xcb\x9a\x71\x38\x35\x13\x47\x5e\xf6\x7a\x21\x6e\xdc\xfd\x4a\xbc\ +\xed\x2b\xde\x2b\x0a\xf2\x84\x4f\x11\xf1\xc0\xeb\xa8\x34\xe0\xd8\ +\xb1\xe7\xf1\xe8\xa1\x07\xf1\xc5\x47\x7e\x1f\xb3\xc9\x0b\x18\xd9\ +\x3b\x2e\xe7\x65\xd1\xd1\x16\x74\x35\x6f\x1c\xed\xc9\xeb\x70\xf9\ +\x72\x11\x3f\x49\x41\xd6\x39\x92\x76\x2e\x69\xf4\xd0\x69\xd6\xd1\ +\x6e\x05\xfa\x36\x73\x24\xfb\xa2\x88\x6f\x45\x87\xa8\x86\x55\x74\ +\x3b\x39\x5a\xa7\x12\x9c\x3e\x32\x8f\x27\x3e\x7b\x0a\xf3\x4d\x36\ +\xea\xec\xc1\xab\x5e\xf6\x06\x7c\xed\xbb\xdf\x81\x6f\xfb\xc6\x6f\ +\xc1\xae\x1d\xe3\xaa\x4f\xab\xdd\x92\x6b\xa6\x22\xe7\x1a\x9b\x64\ +\x54\x0d\xfe\x32\x51\xdd\xa6\x07\x9d\x9a\x57\xe7\x73\x8e\x29\x12\ +\x5b\x85\x4b\x59\x7f\x75\xb7\xbb\x0f\xea\x11\x51\x85\xb9\xe7\x25\ +\x91\x5e\x8a\x13\x73\x6e\x28\x27\x3f\x28\x9d\x41\x6a\x0e\xda\xf6\ +\x6c\x22\x3b\x86\x61\x9c\x27\x8a\x6b\x55\xef\x85\xb2\x66\x3d\xc7\ +\x9a\x97\xb7\x76\x57\x73\xb1\x6e\xa7\x9b\xf5\x3a\xdf\x16\x91\x0a\ +\x4e\xee\xdb\x0c\xc7\xf0\x0c\xe1\x3a\xca\xfc\x45\xcf\xfa\x40\x7d\ +\x8b\x65\x85\x99\xd6\x21\xf4\xda\x6d\x9d\x32\x9b\xdf\xa4\xed\xa4\ +\x52\xdf\x66\x1d\x74\x72\x59\xba\x5d\xb5\x85\x38\x42\xa9\x2b\x0b\ +\x47\x84\x77\x58\xa7\x52\x44\x8f\xdb\x4e\x06\x6d\x8b\x9a\xdc\xd7\ +\x75\x2d\x75\x42\x23\xae\x22\x0e\xc5\x06\x10\x37\xad\x43\x8e\x76\ +\xae\x44\x75\xd4\xa5\x72\xe5\xf7\x68\x47\x1b\x63\xa8\x4b\xdd\x3f\ +\x3e\x31\x2a\x91\x5d\x5d\x55\x46\xed\x29\xda\x1d\xec\x48\x92\x8c\ +\xb2\x13\x82\xf7\xe0\xc1\xac\xce\xcf\x4b\xf0\x45\x40\xd6\x12\x51\ +\x0e\xc4\x95\xaf\x8f\x3c\xe2\x47\x6f\x5a\x83\x9c\x26\xfc\xfd\xef\ +\x7f\x1f\xfe\xcd\x7f\xfb\xa7\x78\xcb\x3b\x6f\xc7\x6b\xdf\xba\x07\ +\xed\xc5\x96\xd8\x4a\x7c\x79\x8b\xf5\xa6\x1c\x13\x1e\x04\x91\xc1\ +\x17\x8d\x68\x0f\x55\x2a\x15\x29\x43\xa9\x57\xd5\x90\x13\x59\x14\ +\xaf\x07\x93\xc7\x4b\x6c\x68\xda\x15\xb2\x9f\x9d\x92\x2c\xef\xaa\ +\xd8\x94\xc9\x5c\x03\xaf\xba\xe7\xdb\x70\xe3\xde\xd7\x60\xb4\xb6\ +\xdb\xa5\xce\xe3\xcc\xa8\x4e\x49\xd9\x76\xf2\x54\x5b\xfd\xa1\xbd\ +\xc0\x95\x6c\xc8\x3f\x6b\xae\x80\xa3\xe6\xe4\x1c\x61\x59\x7e\xf8\ +\xa1\xff\x8e\xa3\xad\x47\xa5\x8e\x9e\x93\x7c\xd0\x8e\xe3\x77\xdd\ +\xf8\x5d\x34\xca\x92\xbc\xc9\x81\x6d\x35\xbb\x68\xd3\x9e\xea\x66\ +\xa2\x8b\xf8\x27\xb4\xa5\xdd\xcb\x4b\xb4\xa3\xf9\xa2\x89\x86\x77\ +\x09\x32\x11\xa6\xba\xec\xe6\x42\xdb\x87\x53\x14\x36\x46\x73\xb1\ +\xc7\x23\x8c\x8d\xb3\xce\xe7\x37\xd5\x22\x54\xc5\x98\x72\xe5\x23\ +\xff\xa2\x3f\x8f\x2c\x3b\xb3\xe2\x8e\xe4\x39\x1f\xc1\x0f\x7e\xdd\ +\x2f\xb9\x3c\x88\xce\x3a\xc5\x63\x50\xd7\x72\x7f\xf1\xe0\x13\xf8\ +\xc2\xb3\x1f\xc0\x33\x27\x3e\x87\x89\xa9\x6d\xaa\x5f\xbd\x46\x3b\ +\x42\xae\x0d\x39\x47\x34\x8a\x44\x74\x1d\xc8\xdc\x20\x2c\x0f\x6e\ +\x38\x5d\x69\x83\x69\x27\xb0\x6c\x6b\x07\x27\x03\xca\x2e\x71\x6a\ +\x18\x76\x5e\xee\xdd\xf9\x72\xbc\xe3\x81\x7f\xa0\x65\xe6\x6a\x7e\ +\x17\x8e\x7b\x19\x4c\x4a\x43\xf3\x1f\x07\x72\x7d\x49\xf4\x5e\xde\ +\xc2\x33\x07\x3e\x8a\x27\xa6\xff\x12\x2f\xbc\xf0\x51\x54\x76\x45\ +\x18\x6f\x54\xd0\x6a\x49\x3a\x52\xe6\x1c\x85\xa9\x9d\xcd\x6a\x73\ +\x16\xba\x06\xec\xac\x13\x07\x55\x95\x7d\xa1\x5c\x25\x9c\x0a\x9f\ +\xf6\x6a\x4f\x6c\x71\x6e\x57\xaa\x19\x1a\x0d\xea\x1e\xa3\xb3\xd4\ +\xc6\xcc\x89\x0c\xa7\x8e\x2e\xe1\xa9\xa7\x97\x70\xf2\x58\x0f\x0b\ +\xd3\x2d\x9c\x3a\xcd\x69\x1e\x53\xb9\x4e\x03\xdc\x76\xeb\x8d\xb8\ +\xe9\xfe\x7b\xf1\x96\xbb\xbe\x06\x6f\xfb\xea\xd7\xe1\x9a\xab\xf6\ +\x30\x53\x7a\x1d\xf1\xda\xe5\x6b\x8e\x92\x98\xfc\x53\x1f\x26\xed\ +\xca\x84\xf8\x12\x72\x6b\xef\xef\xee\x2e\x6e\x93\x7b\x18\x97\x76\ +\xb5\x94\x8c\x9c\x87\x2c\x13\xbe\x6c\x95\xf3\xc5\x23\xb9\x86\x43\ +\x29\x0f\xe6\x84\x4f\x6f\x3c\x5e\x5d\xc8\xfd\x03\x47\xb0\xff\x85\ +\xcf\xa1\x77\x60\x46\xec\xe7\x14\xcf\x3d\x77\x0a\xaf\x7d\xe3\x77\ +\xe3\xfa\x1b\x6f\xd2\x72\x71\x72\x0d\xc3\xb8\x50\xd8\x15\x68\x18\ +\xc3\xc3\x3a\xd4\x0c\xe3\x0a\xc6\x2e\xfe\x2b\x00\xff\xb4\x44\xca\ +\x07\x7c\xd9\xaf\x08\x20\x0f\x4c\x5c\xcb\xe3\xb7\x3c\xff\xb9\x9d\ +\xee\xa1\x92\x0f\x50\x6c\xe4\x90\x87\xa5\xa0\x2a\x0f\x93\x9c\x6c\ +\xce\x45\x5f\x58\x3c\xad\x1d\x09\xb3\x0b\x07\x91\x2e\x3d\x8f\xde\ +\xcc\x33\x98\x3e\x76\x04\x33\x47\x1f\x45\x33\x59\x40\x63\x7c\x0c\ +\x75\xbe\xc1\x2c\x0f\xbf\x19\xa7\x4d\x8c\xe5\xa1\x3a\xac\x20\xad\ +\xca\x43\x76\xb5\x2e\xfe\x9c\xd6\xa6\x86\xa0\x5a\x95\x87\x53\xa6\ +\x92\x6a\xc7\x43\x9a\xb1\x93\xa5\xa5\xdf\x45\xeb\xb4\x97\x30\x3b\ +\x7f\x12\xdd\x6e\x0b\xf3\xcd\x26\xe6\x5a\x6d\xb4\xbb\xa1\xf8\xbb\ +\x69\xfe\xf2\x50\xe2\xd7\x6a\xa8\x8f\x8d\xa2\x3e\x2a\x5a\xe5\x31\ +\x46\x46\x1a\x18\x1d\xaf\x81\xdf\xc0\xe2\x74\x29\xfa\x70\x2b\x7f\ +\x49\x96\xe8\x5b\xd6\xd4\x5d\x1f\x97\xd9\xd0\x41\xf8\x60\x2b\x9e\ +\x7c\x13\x97\x0f\xbf\xfc\xf3\x0f\x9f\xfa\xdd\x08\x71\xf3\x01\x53\ +\xa7\xf7\xe1\xc3\x38\x1f\x92\x65\xcd\x06\x14\x3e\x64\xb2\xaf\xce\ +\x3d\x74\x87\xa8\x88\x3b\x66\x1e\x7b\xf2\x60\xb9\xe0\xc2\x06\x9d\ +\x71\x8c\xd4\x76\x60\xfb\xe4\x1e\xdc\x78\xfd\x3d\xb8\x6a\xfb\x5e\ +\x8c\x8e\xed\x42\x3d\x97\xf2\xa9\x8e\xeb\xb7\x99\xd8\xd0\x54\xa9\ +\xd4\xc1\x37\x77\xbd\x86\x6e\xed\xdd\x84\x6b\xf7\x30\xae\xde\x6b\ +\x40\x95\xd9\x30\xc5\x06\x06\x36\x48\x69\x63\x90\xe8\x1b\x2e\x45\ +\x78\xc5\x37\xdf\x86\xa4\x3b\x83\xab\xf7\x74\xf0\x43\xff\xe8\xeb\ +\xa4\xec\x63\x6d\xf0\x5a\x6c\x2e\xe8\x94\x3a\x1c\xa1\x96\x48\x21\ +\x51\x7f\x76\xdc\xb0\x29\x40\x04\x48\x1e\x25\x7f\x22\x97\xe7\x04\ +\x47\x94\xf1\xa1\x98\xe7\x04\xf3\xc7\xf2\xe2\x3f\x55\x0a\xa5\xfc\ +\xd8\xc0\x14\xc7\x75\x04\xed\x10\x3b\x47\x6e\xc0\xd5\x93\xd7\xe9\ +\x71\xee\x2e\x26\x08\xe3\x18\xe3\x63\x57\x63\x74\x74\xa7\x94\x93\ +\xc4\x91\x02\x6b\x2e\xb5\x90\xb4\x9b\x98\xb8\xfa\x16\xec\xda\x73\ +\x3d\x1e\xfc\xc4\xef\xe1\xb9\xc5\xc7\xd0\x4a\x96\xe4\xec\xe3\xf9\ +\xe7\x8e\x07\x47\x66\x71\x44\x15\x1b\xf7\xd2\xbc\x87\x56\x2b\x97\ +\xf3\xa0\x8b\x5e\xe2\x1a\x7d\xf8\xb6\x33\x1b\x16\x25\x88\x0b\x43\ +\x3f\x9e\x23\x22\x41\xa2\x53\x45\x3d\xa6\xaa\x29\xff\x75\x25\x3f\ +\xa2\x73\x14\xf2\x3b\x1f\x19\x26\xb6\x87\x98\x60\x23\x10\xa7\x7b\ +\xd4\xce\x1f\x7e\xc3\x82\x0d\x41\x6c\x8c\xa1\x1c\x86\x0f\x50\x91\ +\xf3\x2e\xed\x24\x38\x76\x78\x11\x63\xbb\x27\xb4\x61\x8d\x8d\x68\ +\x72\x96\xa9\x5c\xf7\xdd\x35\x57\x2e\x94\xc3\xf2\x8a\xab\xee\x0d\ +\x6d\xfe\xe8\x54\x89\x74\xca\x9a\x47\x9c\x1b\xba\xcd\xbf\x22\x90\ +\xdb\x96\x45\xae\x0d\x96\xb1\x76\x60\xe6\xee\x63\xf0\x13\x95\x06\ +\x5e\xfd\xc0\x0f\xe0\xd6\x6b\xee\x93\x30\x52\x06\x39\xaf\x9d\xed\ +\x72\x2d\x1e\xc3\x13\xfb\x3f\x8b\x2f\x3c\xfe\x01\x3c\x7f\xf4\x4b\ +\x98\xba\x61\x54\xca\x22\x46\x2e\xc7\x22\xaa\xb2\x21\x2d\xa5\xc0\ +\xa2\x81\x96\xc2\xd9\x48\x26\xd7\x52\x9e\x88\x5f\x8a\x5e\x27\x83\ +\x5c\x6a\x3a\x05\x68\x6b\x51\xae\x2d\xed\x40\x96\xb2\xa8\x48\x5c\ +\x36\xa8\x72\x94\x5a\x12\x61\xee\x98\x5c\x87\xc7\x16\x71\x68\xdf\ +\x2c\x4e\x1e\x0d\x70\xd5\xf5\xb7\xe2\xd6\x1b\x5f\x8e\xb7\x7f\xd5\ +\x9b\xf0\x23\x3f\xf0\x5d\x88\x6a\x9a\x2b\xb9\x46\xa5\x3c\x24\x31\ +\x96\x81\x36\x0e\xfb\x4c\x11\xe6\x8b\x0d\x5d\x45\xfe\x1c\x7e\x27\ +\xa1\x5f\x79\xfb\x5c\x50\xa4\xcb\x42\x77\x27\xf8\xda\xb0\xd0\x36\ +\xa3\x8e\xcf\xca\xb9\x84\x7a\xac\x95\x4e\xbf\x8e\x1b\xe9\xb3\x99\ +\x3c\x19\x86\x71\x0e\x71\x77\x40\x77\x29\xd2\xde\x90\x5f\xf1\xf0\ +\x7e\x5a\x07\x4a\xdd\xa2\xf6\x98\xdc\xa7\xb8\x3f\xd3\x4e\xab\x95\ +\x4e\x29\xd7\xe5\x02\xb4\xf4\x6b\x48\x3d\xb5\xc1\xd2\x6e\x0f\xed\ +\xe6\x9c\x76\x88\x24\xdd\x59\xa9\x37\xbb\xe0\x37\x3d\x39\xdd\xf6\ +\x23\x2f\x7e\x04\xdd\x74\x41\xaa\x94\x2e\xda\xbd\x05\xb4\xe4\xc6\ +\xcf\xe9\x07\x73\x09\xd3\x93\xfa\x53\x47\x7d\x0b\x1c\xad\x24\x35\ +\x16\x7a\x62\xd7\x04\x52\xc7\x69\x57\x5e\x57\xea\x0a\x2a\x28\xc6\ +\x20\xeb\xd9\x4e\xab\xa3\x2f\xe2\x88\x31\x26\xf5\x53\x8e\x38\xe3\ +\xd8\x22\xa9\x73\x68\xe3\x48\xdd\x3a\x16\x8d\x60\xb4\x36\x8a\x5d\ +\xdb\xaf\xc3\xc4\xe8\x14\x76\xee\xd8\x8d\x6d\x23\xdb\xd0\xa8\x4e\ +\x88\x8d\x36\x89\x49\xb1\x15\xaf\x95\xba\xdf\x8d\xe6\x77\x75\x07\ +\x91\x9a\x5d\xea\x1b\x76\x38\xb1\x83\x4d\xf4\xd0\x02\xd2\xd2\x29\ +\x96\x15\xdc\xd6\x6a\xbf\xb5\x59\xff\xa6\xe8\xf6\xb2\xcc\xdd\xda\ +\xc9\x65\x81\x54\xf0\xfd\x3f\xf2\xfd\x78\x64\xfa\x8f\xf0\xee\x77\ +\xbf\x0e\x77\xbc\x6c\x1b\x96\xe6\xe7\xdc\x4b\x66\x62\xf7\x70\x34\ +\x3d\xd5\xa4\xfd\xc4\x75\x54\x61\x3c\x59\xf4\xdb\x63\xcc\x99\x1c\ +\x49\x29\x2f\xfa\xd2\x5f\xbf\x4d\xcb\xfc\x30\x09\x59\x68\xb7\xd4\ +\xc4\x26\x6c\xcd\xa7\xb8\xf3\xfa\xb7\xe3\xe6\x1b\x5e\x8d\x3d\x53\ +\x37\xcb\x4e\x4e\x9d\xed\x62\xb9\xb5\xd7\xa9\x0c\xfd\x7c\xd9\x48\ +\xc9\xa5\xb4\xd4\x17\xe5\xf8\x44\xf8\xc0\x67\x7f\x19\x73\xd9\x3e\ +\x2c\x2c\x35\x55\x07\xda\x87\x9c\xee\x9b\xc1\x59\xff\x67\xa2\x9f\ +\xfb\x7e\x1a\x5f\x50\x62\x5c\x39\xce\x6a\x53\x51\xa7\xd5\x1d\x6a\ +\x0e\x49\x83\xc7\x5f\xd7\x85\x8f\xac\xd5\xce\x11\x9b\x7f\x44\x6c\ +\xf1\xb1\x89\x50\x47\xa9\x71\xbb\xde\x08\x50\xd3\xd1\x49\x85\xfd\ +\x2a\x8b\x96\x13\x6d\x6e\x49\x24\x69\x8e\xe3\xfb\xdf\xf9\x6f\x50\ +\xc3\x88\xb3\x09\x50\xc5\x91\xe3\x27\xf1\xdc\xd1\xbf\xc2\x17\xbf\ +\xfc\x11\x74\x6a\xa7\xd4\x4e\xe5\x98\xa9\xaa\x3c\x3f\xe8\x54\x85\ +\xb4\x27\x68\x67\x79\x05\x44\xa8\xda\x67\x9a\x80\xf3\x73\xb6\x14\ +\xd7\x94\xe9\x6c\x7a\x1e\x07\x36\x7d\xe9\xc0\x3f\x09\xcb\xf3\x99\ +\x33\x5c\xdc\x7b\xdd\xdb\xf1\xe6\x7b\xbe\x47\xb6\xf9\x2d\x61\x6f\ +\x91\xb8\x78\xdc\x08\x74\x44\x5a\x80\x76\xda\xc1\xf3\x47\x1e\xc3\ +\x89\xe6\x67\xf1\xa9\x2f\xfd\x16\xe2\xd1\x45\x34\xa6\xc6\xe5\x98\ +\xeb\x83\x00\x62\xd1\x93\xe7\x2d\x6d\x46\x9d\xe6\x92\xf1\xc5\x87\ +\xa3\xf7\xe8\x0e\xf8\x52\xa2\xe8\x43\x9b\x33\x4f\x2a\xfa\xb2\x51\ +\x2f\xd1\x33\x43\xce\x17\xd9\x5e\x4a\x31\x77\x5a\x9e\x77\x4e\x67\ +\x38\xf0\xdc\x71\x1c\x79\xb1\x85\xa3\xfb\x5b\xa8\x49\x5e\xc5\x2c\ +\x93\xe7\x9f\x1c\x3b\x77\x5e\x83\xfb\x6e\x7d\x00\x37\xdd\x7b\x0f\ +\x5e\x7b\xcf\xfd\xf8\xd6\x77\xbd\x53\xb5\xa5\xc5\xae\x53\xb7\x4b\ +\x7e\x62\x7e\xaf\x57\xb6\x59\x06\xae\x18\x9c\x1e\xc4\xfd\xae\x6c\ +\x3b\x5c\x28\xe7\xe7\xf6\xd1\xc5\xb2\xa2\xe9\xc3\x72\x73\x79\x91\ +\x45\xfe\x9d\xc6\x2c\x44\x39\x3f\xf2\x96\xb8\x78\x6f\x8a\x9d\x9d\ +\x1e\x55\xd0\x44\x03\x53\x92\x67\x0e\x92\x5b\xe8\x9d\x40\x73\xba\ +\x8b\xab\xae\xba\x56\x65\x19\x86\x71\x61\xb1\xcb\xd0\x30\x86\x87\ +\x75\xa8\x19\xc6\x15\x8c\x5d\xfc\x57\x30\x7a\xf0\x57\xce\x00\x3f\ +\xad\x87\xf3\xe1\x1b\xb1\xf2\xe8\x2a\x0f\xd0\xec\x2d\xe2\xfb\xce\ +\x34\xbe\x96\x30\x87\xe6\xcc\x69\xcc\x9e\xde\x8f\xee\xfc\x7e\x64\ +\xc7\x9e\xc4\xc1\x03\x5f\xc0\xf4\x91\xfd\x58\x6a\x4e\x23\x1a\x69\ +\xa0\xc1\x69\x19\x27\xc6\xd1\x18\x9d\x40\x34\x3e\x2a\xdb\x13\xfc\ +\x4a\x39\x46\x47\x76\xa2\x3e\x36\x85\x4a\x65\x12\xd5\xc6\x4e\xd9\ +\xbf\x1d\xb5\xfa\x2e\x79\xfa\x1c\x47\xc4\x30\x92\x70\x4f\x1e\x04\ +\x99\x8e\xfb\xb6\x43\x0f\xdd\x2e\x3b\xd4\xe6\xb0\xd4\x92\x34\x17\ +\x8f\x60\x6e\x71\x06\x33\xf3\xc7\x71\xf2\xc4\x31\xcc\xcd\xcf\xe2\ +\xd4\xf4\x51\x34\x17\x97\x24\x9c\x84\xed\x74\x24\x5c\x4b\x1f\x78\ +\x03\xce\x49\x97\x24\x98\xdc\x36\x82\xc6\x48\x0d\xe3\xb2\xae\x8a\ +\x0e\x51\x2c\x0f\x99\xec\x28\xe1\x48\x2a\xc9\x2b\x7f\xd9\x29\xc7\ +\x27\xbc\x94\x23\xd2\xf8\x90\xcd\x67\x62\xd1\x45\xdb\xce\xd5\xe2\ +\xe4\x0f\x47\xcb\x51\x37\x71\xcb\x3e\x36\x1a\xc8\x73\xb2\x3e\xcc\ +\x6b\x58\x4e\x9f\x27\xfb\x5c\xc3\x84\x3c\xd2\x66\x7c\x10\xcd\x31\ +\xd2\xa8\xa3\x5a\x61\xba\xf2\x60\x9d\xd5\x24\x5e\x55\x2a\x5d\xa6\ +\x5a\x41\x3d\xde\x85\x91\xea\x08\xb6\x8f\xee\xc5\x68\xbc\x1b\x7b\ +\x77\xdf\x20\x65\x33\xaa\xdf\x36\xab\xc8\x83\xb0\x88\x07\xa7\xea\ +\xa1\x22\x99\x1c\x1b\x4e\xfb\x92\xe7\x3d\x79\x00\x77\x0d\x21\x51\ +\x4c\x6d\x38\x15\x61\xaa\x72\xc3\x60\x4c\x8a\x59\xe2\xd7\xf8\xbd\ +\x8a\x11\x79\x58\x1f\xd7\x0e\xab\x55\x9c\x6c\xe1\xb7\x3f\xf7\x67\ +\xf8\xe7\xff\xe0\x47\x10\xef\x5e\xc4\x9b\xde\x7c\x15\xbe\xfb\x87\ +\xdf\x82\x93\xd3\x4d\xc9\x62\x8c\x66\x7b\x1e\x5d\x7e\x3f\x43\xca\ +\xb3\xd7\x73\xa3\xd4\xf4\x8d\x64\x79\x38\x67\x3e\xd9\xa8\x45\xc5\ +\x58\x2e\x7c\xfb\x95\x53\xfb\xe8\x86\x16\x96\xc8\xe7\xe8\x29\x36\ +\x16\x68\x62\xb2\x4f\x1e\xac\x2b\x49\x05\xd7\xef\xbc\x1e\xd7\x5d\ +\xb5\x17\x91\xa4\xd1\xed\xe5\xe8\xb5\x43\x7d\x1b\x97\x8d\x4c\x51\ +\xa5\x81\x25\x11\x3b\x95\x34\xd0\x0b\x47\x71\xd7\x2b\x5e\x86\x3f\ +\xfd\xd3\xdf\xc4\x42\x24\xc7\xbd\xc3\xc6\x3e\x2d\x60\x09\x2c\xe5\ +\x20\x4a\xf0\x8d\x66\x6d\xe0\x91\xf3\xa3\xdd\x4a\xd1\xee\x24\xda\ +\xd8\xe3\xda\x65\xd8\xa1\xc6\x63\x20\xe7\x92\x94\x13\x8f\x03\xbf\ +\xa9\xa6\xfa\x51\x02\x3b\x4b\x45\x5f\x7d\x43\x56\xff\xdd\x9a\x9d\ +\x80\x1c\x75\x56\xa9\xe4\x18\x9f\x0a\x31\x3e\x1e\xa3\x5a\x17\xdd\ +\xb4\x43\xcd\x35\xda\xe8\xf7\xb3\x78\xdc\x75\x61\x67\x99\xac\xd3\ +\x10\x47\x8f\xcd\x48\xd1\xd5\x10\xb0\xc1\x8c\x8d\x0b\xda\xb1\xc5\ +\x73\xcb\x35\x64\xb0\xd1\x89\x61\xd9\x29\xa7\xc7\x8c\xf1\xe4\x8f\ +\x0d\x3b\xcb\x6b\xf5\xe3\x5a\xd5\xa1\xcb\xb9\x0b\xbd\xa9\x03\x1b\ +\xde\xf4\x3c\xcb\x45\xa7\xce\x18\x5e\x71\xdf\x57\xe1\x81\x3b\x38\ +\x2d\x54\x17\x09\xea\xe8\xc8\xfa\xf3\x4f\x3e\x8a\xe7\x9f\xfb\x4b\ +\x3c\xf1\xc2\xe7\x91\x4f\xf5\x10\xcb\xf9\x57\xe9\xf2\x9b\x1b\xa2\ +\x97\x1e\x17\x39\x4b\x55\xa4\x3b\xcf\x75\xb4\x9f\x94\x63\x2e\xfa\ +\x26\x3d\x7e\x3f\x85\x23\xd2\x2a\xda\xb1\x9a\xea\xf7\xd1\xd8\x41\ +\x2c\xe7\xab\xa4\xad\x8d\x43\xa2\x6c\x73\xba\x8d\xe6\xc9\x0e\x9e\ +\xfd\xe2\x69\x1c\x39\x32\x8b\x89\x6d\xd7\xe1\xb5\x77\xbd\x16\xdf\ +\xf6\x37\xdf\x83\xaf\x7b\xed\x57\x63\xfb\xd5\x23\xa2\x6b\x8a\xa4\ +\x9d\x69\xf9\xf9\x8f\xec\x2b\x3e\x3b\xcb\xb8\x0b\x8d\xd7\xca\x6a\ +\x5e\x12\xf0\xdc\xc1\xa4\x34\xf9\x3e\x1d\xbc\x0a\xf4\x2e\x8e\x8f\ +\x3a\x8b\xf5\xf2\x46\x99\x3e\x11\x17\x9c\x65\x65\xfb\x58\x95\xb7\ +\xd2\xda\x30\x8c\xf3\x8c\x5c\x7c\xfc\x97\xeb\x8f\x77\x99\x95\x4b\ +\x52\x9b\xf9\xe5\x5e\x4a\xbb\x4c\xea\x3d\x09\x90\x85\xfc\xb6\x92\ +\xab\xd4\xb9\xff\x94\xfc\x2d\xcd\x2c\xca\x7d\x7b\x06\x8b\xad\x93\ +\x68\x76\x4e\xa2\x95\xca\x76\xeb\x38\x96\x92\x36\xba\xad\x69\xcc\ +\x2c\xce\xca\xfe\x63\x3a\x0a\xad\xd7\x3d\x81\x4e\xc6\x86\x6f\xb9\ +\xe3\x46\x15\xdc\x7a\xd3\xb5\xa8\x8f\xd7\x31\xd1\x98\x90\xaa\x5b\ +\x7c\xa5\xce\xcf\x2b\x11\xb2\x0e\x5f\x02\x09\x91\x8a\x71\xc4\xba\ +\x94\x7a\xf1\xaf\x27\x75\xab\x76\x06\x49\x7d\xc1\x6e\xbc\x5c\x2a\ +\x11\xfd\x96\x26\x15\x92\x80\x52\xe5\x6a\xa7\x1a\xa7\x1f\x66\x27\ +\x1b\xf3\xc2\x7d\x6c\x60\xef\x76\x25\x3e\x47\xbf\x8b\x0f\xa7\x49\ +\x6c\x2f\x4a\xcd\xd5\x15\xbb\xa6\x5b\x97\xba\x22\xc4\xb5\x57\xdd\ +\x8a\x5b\xaf\xbb\x03\xd7\x6c\xbb\x1a\xd5\x60\x0a\xa3\x62\x1f\x6e\ +\xdb\x7e\x35\xb6\xcb\x32\x52\x13\xfb\x70\x19\xd6\xfd\xb2\x92\xf4\ +\xdc\x54\xd1\x52\x3f\xb1\xfe\xd6\x7d\x83\x6e\x62\xd4\xc2\xad\xbd\ +\xcb\xb1\x3a\xc6\xea\x7d\xab\xb7\x8a\x5c\x48\x58\xda\x78\x29\x5e\ +\xd8\x77\x08\x5f\xfd\x9e\xb7\xe1\xb6\xd7\x86\xf8\xd6\x6f\x7c\x39\ +\xc6\x77\x88\xbf\x76\x42\xd1\xfe\x48\xf4\x08\xa9\x0d\x2b\x76\x0a\ +\xab\x3e\x1d\xe5\xaf\x72\x5c\x59\x6a\xb3\x0b\xff\xb5\xe0\xc4\x87\ +\x81\xc4\x4f\x5f\x98\x91\xed\x5e\xda\x11\xdb\x58\xec\xa1\xa5\x00\ +\xa3\x13\x37\xe1\x9e\x9b\xde\x80\xed\xd5\xdb\x50\xab\x8c\x81\xb3\ +\x09\xe4\x79\x55\xa2\x4b\xbd\xdf\xe3\x0b\x62\x2c\x51\x29\x73\xa9\ +\xcf\xab\x72\xec\xa2\x28\xd6\x63\x90\x55\x2a\x3a\x0b\xc0\xa8\xd4\ +\xfb\xfb\x8f\xed\xc3\x67\x9e\xf9\x1d\x2c\xb4\xe4\x1c\x10\xd9\x4c\ +\x97\x2a\xf0\x05\x32\xa7\xa7\x2c\xe2\xd1\x5c\xec\xa0\x2d\xf5\x76\ +\x97\xf6\x14\xbf\x45\xcb\xce\x53\xf1\xd7\xce\x37\xf6\xcd\x51\x67\ +\xaa\x58\xa0\xda\xfa\xba\x5d\xd0\xe3\x20\xdb\x9c\x86\xb1\x31\x02\ +\x8c\x4d\xc6\x6e\xb4\x3f\xbf\x9f\x16\xa7\xe2\xe6\xb7\xc6\x68\xff\ +\x3a\x39\x5a\x4e\x62\xcf\x24\xc9\x22\xd2\xf6\x76\xbc\xeb\xed\x3f\ +\x86\x6b\xe2\x3b\xb0\xd8\x5e\xc4\xd1\x13\x87\xf0\xa7\x9f\xfb\x3d\ +\xb1\xf1\xbf\x88\xf1\xdd\x93\xa8\x05\xa3\xda\x19\x4c\x7b\x2a\xe6\ +\x34\xdc\x8c\x2c\x69\xe9\xf4\xd9\xe2\xf4\xa8\x5b\x7e\x4a\x5a\xb9\ +\x63\xa0\x6e\x77\x0c\x1d\xa2\x00\x87\x5b\x4a\xf9\xe4\xfc\x7e\x9a\ +\x5c\x37\x2f\xbf\xe5\x7b\xf1\xfa\xdb\xbf\x59\xf6\xb4\x65\x3f\xc3\ +\x49\xf9\x88\xa2\x61\x20\x99\x11\xba\x79\x0b\xc7\x8e\x3d\x8e\xa7\ +\x67\x3e\x87\xcf\x3f\xfa\x7e\xb9\x96\x4e\x60\xd7\xb5\xe3\xf2\x8c\ +\x52\xd1\x73\x91\xb6\x25\x47\x95\xd1\x9e\x94\x1f\x4d\x42\x5f\x90\ +\x13\x19\x2c\x97\x6a\x85\xa9\xf7\x9c\xbd\x9a\x04\xe8\x36\x03\xb1\ +\x61\xc5\xf6\x12\xb9\xb1\x3c\x27\xb4\x39\x75\xf6\xb1\x36\x0e\xbe\ +\xb0\x84\xe9\x63\x4d\x2c\xcd\x2d\x62\x71\x9a\x2f\x30\x25\x58\x5c\ +\x90\x45\x6c\xdd\x3b\x6f\xb9\x17\xaf\x7c\xd5\x57\xe0\xf6\x5b\xee\ +\xc0\xb7\xbd\xfd\xdd\xb8\xe5\xf6\x6b\x55\xb7\xa5\x6e\x0b\x9c\xed\ +\x83\x2f\xe5\x51\x0d\xfd\xee\xaf\xc0\x72\xa6\x53\x4f\x35\xc1\xf9\ +\xf6\x21\x61\x3c\x74\x32\xbc\x8f\xa7\xf7\x9f\x22\x92\xee\x93\x5f\ +\x2f\x6b\x25\xa2\x9c\xbb\xbc\x81\x09\x1a\x47\xd6\x3c\x95\x79\xd6\ +\x67\x72\x8e\x26\x52\x06\x35\x79\xae\xa1\xad\xeb\xae\xc2\x42\xa0\ +\x61\x18\x17\x0c\xbb\x0a\x0d\x63\x78\x58\x87\x9a\x61\x5c\xc1\xd8\ +\xc5\x7f\x05\xe1\x9f\x63\x06\xdd\xf2\xe5\x21\xd5\x55\x05\x7c\xe0\ +\x94\xc7\x25\x76\xfc\xc8\x1f\x7d\x96\x96\x66\x70\xea\xf4\x41\xb4\ +\x9a\xfb\x91\xcd\x3e\x8b\xe9\xa3\xcf\xe1\xf8\xb3\x9f\xc5\x89\x99\ +\xe3\xa8\x4f\xc4\x18\x6f\x4c\x60\x7c\xfb\xf5\x08\x1b\x53\x08\xab\ +\x63\x08\xe3\x1a\x46\xa6\x76\x60\x74\x6c\x0f\xae\xda\x73\x2d\x2a\ +\xb5\x1d\x98\x9c\xd8\x23\x0f\x57\x3b\x45\x1a\x47\x4b\x55\x65\x71\ +\x1d\x77\xda\x97\x95\xb3\xd7\x46\x14\xd3\xa7\x6b\x36\x8e\xc8\x5a\ +\xe0\x8a\xea\xb2\xe1\x46\x42\xe8\xe2\x34\x04\x16\x97\x4e\x61\x76\ +\x6e\x01\x87\x4f\x3d\x8d\xe3\x27\x9f\xc6\xc2\xf4\x49\x79\xe0\x3c\ +\x8d\xe9\xd9\x13\x98\x9d\x9d\xc5\xfc\xfc\x29\x34\x67\xe7\x70\x7a\ +\x66\x06\x4b\xad\x0e\xe2\xd1\x14\x8d\x49\x4e\x09\x59\xc7\xf8\x0e\ +\x59\x8f\x34\x50\xad\xd5\xe5\x21\x3f\x47\x6d\xa4\x22\x0f\xe7\x1c\ +\x81\x14\x89\xee\x90\x07\x6b\xa6\x24\x0f\xd2\x6c\x60\x92\x04\xb5\ +\x53\x4b\xbc\x2a\x92\x3a\xdf\x3a\xed\xb2\x51\x89\x1d\x0c\x95\x5c\ +\xf2\x14\xea\x73\xb3\x36\x2f\x89\xb2\xec\xb7\x60\xb7\x85\x96\xa5\ +\x96\x27\x1b\x0f\x9c\xbb\x12\x05\xa8\xd7\x6b\xa8\x55\x6b\xfa\xd0\ +\x3b\x52\x1f\xc1\xe8\xe8\x36\x8d\x5f\x49\x26\x75\x54\x5b\xde\x92\ +\x07\x73\x49\xaf\x26\xee\x0a\xa7\xb6\xe4\xe8\xaa\x5e\x8a\x4a\x35\ +\x96\xfd\x89\xca\x67\x47\x23\x3b\xba\x48\x90\xf6\x90\x72\xc4\x50\ +\xc4\xce\x8e\x11\x8c\x8f\x6d\x43\x75\xbc\x81\x46\x75\x1b\x1a\xd1\ +\x6e\x44\x35\x8e\x4e\xaa\xa0\x51\x69\xa0\xc6\x29\x64\xf2\x2a\xa6\ +\x26\xf6\xe2\xab\x7f\xf0\x7b\x71\xf8\xcb\x7f\x86\xd9\xf4\x38\xfe\ +\xd1\xdf\x7f\x3b\xee\x7d\xfd\x4e\x2c\xb5\x33\x34\x9b\x9c\xee\xb1\ +\x8b\xf6\xa2\xe4\xb3\xdb\x96\x07\xff\x1c\x49\x2f\x12\x19\x3c\x27\ +\x98\x5f\xc9\x3b\xf3\x2c\xe9\xa5\xa2\x17\x3b\x88\xf8\x06\x36\x3b\ +\x8c\x32\x06\x91\x83\xc7\x4e\x45\x1e\x43\x36\x3c\xd5\xeb\x11\x92\ +\x56\x8e\xd1\xac\x81\x5b\x77\xdd\x84\x4a\x63\x12\x75\x2d\x67\x89\ +\x9f\x73\xc4\x12\xdf\x58\xae\x4a\x01\xd4\x10\x24\x11\x7a\x22\x63\ +\x72\xef\x2e\x3c\xf8\xd9\x3f\x47\x2b\xea\xa0\x93\xb4\xf5\x3c\x60\ +\xaa\x3c\xfa\x1c\x11\x98\xc8\x93\xba\x1b\x7d\x96\xa0\xd5\x92\x85\ +\xdf\x81\x63\x83\x50\x2a\x0f\xfa\x6c\x1c\x92\xb2\x66\xf9\xf7\x44\ +\x98\x7b\xc3\x9a\xf9\xe6\xd9\xcc\x06\x8f\x1c\x81\x1c\x07\x9e\x57\ +\xda\x10\xc4\x7f\x59\xab\x93\x8d\x84\x72\x3e\x4c\xf0\xad\xea\xf1\ +\x10\x0d\x9e\x17\xbe\x03\x4c\x32\xc4\xb5\x76\xa2\x89\xdb\x35\xe2\ +\x70\x1d\xe2\xf4\x74\x4b\xdf\xc8\x77\x87\x5c\xf2\x2e\xb2\xd8\x70\ +\x40\xbd\xd5\x53\xcf\x0f\xc9\x65\x2d\xd2\xc6\x30\xc6\x94\xdd\x45\ +\x38\xca\xa3\xa4\x42\x0f\xc6\x29\xb9\x99\x6b\xfe\x8a\xda\xba\xb0\ +\x91\x32\xed\x56\x70\xeb\xad\x0f\xe0\x55\x2f\x7b\x3d\xa6\xe4\x4f\ +\xce\x6e\x3c\x75\xf4\x59\x1c\x3a\xfe\x1c\x3e\xf9\xb1\xf7\xa3\x95\ +\xcd\x23\x98\x18\x41\x54\xad\x22\x94\x73\x89\x6f\x74\x53\x18\x3b\ +\xc5\x74\xc4\x5c\x28\xba\xb2\x9c\x78\x25\x85\x29\x92\xbc\x8d\x5e\ +\x27\xc6\xd2\x42\x2e\x0b\x87\x1b\x30\x5f\x55\xc9\x3b\xa7\xb1\x92\ +\xd4\xa5\xfc\x22\xbe\x1d\xdf\x09\xd0\x96\xbc\x1e\xde\x7f\x1a\xcf\ +\x3e\x3e\x83\xb1\xd1\x5b\x71\xd5\x0d\xb7\xe1\x7b\xbf\xe1\x1d\xf8\ +\x9e\x6f\x79\x1b\xc6\xb7\x5d\x03\xd4\xa4\xdc\x5b\x3d\xc4\x35\xb9\ +\x7f\xb0\x51\x69\x39\x47\x05\x92\xae\xe4\x46\xff\x34\x43\x84\x05\ +\x41\x64\xb3\xf0\x51\xbc\x37\x61\x31\xaa\xa8\x72\x80\xf5\x18\x10\ +\xb6\xec\xe5\xdd\xfd\x6b\xd2\x1f\x55\xf5\xe8\x0f\x5c\x50\xde\x5c\ +\x8e\x53\x8e\xbc\x55\xfa\x13\x3f\x13\xfa\xf5\x1c\x24\xaf\x94\x07\ +\xc3\x30\xce\x03\xbc\x89\xc9\xcd\x44\xeb\x08\xf9\x5b\xb9\x2c\xe5\ +\x62\xe4\xbf\xde\xe4\x38\xbe\x84\x9d\x68\x6a\x45\xc8\xad\x98\x23\ +\xd0\xa4\xfe\x75\x35\x04\x66\x3a\x27\xe4\x1e\x3d\x83\x13\xa7\x5f\ +\x40\x33\x39\x88\x85\xd9\x67\xb0\x74\xe2\x00\x16\xc4\x3e\x9b\x9b\ +\x3d\x86\xe6\xc2\x41\xb1\x7d\x28\x83\xa3\x58\x00\xa9\x02\xd0\x92\ +\xdb\xbf\x98\x65\x34\x60\xc0\xc1\x5f\x9c\xbe\x38\xe2\xd4\xbb\xe3\ +\xdb\xb0\x77\xef\xdd\x6a\x57\xb4\xda\x4b\x22\xbe\x82\xda\x68\x5d\ +\xee\xf7\x9c\x9a\x38\xd6\x6f\x93\xb2\x1e\x62\x67\x0a\x4d\x34\x76\ +\xd2\x70\x84\x8c\x6a\x2f\x55\x07\x47\xa7\x05\x6c\x35\x97\x30\x1c\ +\x9d\xc5\x17\x34\xf4\x45\x22\x0e\x09\xd7\xda\x45\xdc\xf2\xa7\xdf\ +\x0a\xd5\x0e\x06\x49\x5b\x5f\x4a\x71\x2f\x1f\x71\x16\x04\x4e\x9d\ +\x27\xd5\x36\x5a\x52\xef\xa4\xdd\x1c\x27\x8f\xce\x62\x41\xea\xa1\ +\xc5\xb9\x0e\x76\x4d\xde\x84\xab\xae\xba\x15\xb7\x5d\x7b\x3f\xb6\ +\xef\xba\x06\x63\x95\x49\xd1\xf7\x3a\xec\xda\xb5\x57\x3b\x57\xfa\ +\xe1\x8b\x45\xae\x9e\x28\x6e\x6e\xba\x52\x0f\x3a\x04\xba\x1d\xde\ +\x87\x38\x5f\xf7\x4b\x7f\xea\x4c\x7b\x41\x33\xb9\xec\xc3\x7c\xf0\ +\xa8\xf1\x85\x96\x9e\x76\x56\xfc\xe4\xbf\xfd\x2f\xf8\xc0\x87\xff\ +\x13\x5e\xff\x86\xbd\x78\xdb\xbb\xae\x73\xdf\x25\xe5\xb1\xe3\x4b\ +\x2f\x62\x43\x51\x0c\x6d\x24\x8e\x26\x67\xf8\x50\x6c\x09\xd9\x29\ +\x72\x68\x4b\xa8\xd8\x65\xf9\x4c\x4f\x3b\x2a\x65\x53\x6d\x2d\x96\ +\x9e\xac\x58\x8f\x56\xa2\x2a\xba\xa9\xd8\xab\xf1\x84\xd8\xaa\xbb\ +\xc4\x2e\xe4\x4b\x59\x2c\xec\x0a\x32\xb1\x8f\x3a\x8b\x0b\xb2\x3f\ +\x45\x55\x8e\xdd\x68\x63\x04\x15\x29\xe3\x85\x76\x07\x55\x89\x77\ +\xcd\xf5\x7b\x50\xaf\x8c\xe1\xf1\xa7\x3e\x85\xc5\xc5\x59\x2c\x36\ +\xdb\x45\x92\x22\x5c\x12\x4b\x39\x6a\x51\xd2\xe3\xf1\xe5\x88\xff\ +\xe6\x62\x82\x4e\x37\x91\xbc\xb8\xf4\x79\x28\xf9\x82\x52\x92\x48\ +\x58\x86\x13\x3f\x55\xdb\x57\xc8\x5a\x87\xab\xa5\xa3\x6e\xea\xcf\ +\x72\xe2\x7b\x48\xf5\x91\x10\x63\x62\x47\x8d\x8d\xc7\xa8\xd7\x38\ +\x2d\x60\x2a\xf6\x37\x3b\xd4\xa4\x1c\xa5\x0c\x68\xa3\xb1\x44\x79\ +\x0a\xe5\x7c\xa9\x27\x0b\x71\xcd\xce\x37\x63\xf7\xb5\x77\xe1\xc4\ +\xfe\xc3\x78\xf2\xe9\x4f\x62\x76\xfe\x49\x8c\x6e\xdb\x25\xe7\x0d\ +\xbf\xbf\x26\xe1\x24\x0d\xda\x9e\x3c\x8f\x78\x8e\xea\x88\x45\xd1\ +\x88\x72\x68\xaf\xfb\x17\x90\xf8\xab\xba\xe8\x06\xed\x2b\x1f\x4e\ +\xf2\x20\xe9\x69\x47\x2c\xd3\xa5\xfa\x92\x29\xee\xe1\x40\xc2\x7b\ +\xef\xfc\x6e\xbc\xe2\xda\xaf\x96\xf0\x62\x6b\xd3\x2e\xa5\x10\xb1\ +\xaf\x4e\xcd\x1c\xc0\xc9\xe6\x01\x9c\x6a\x3d\x8e\x27\x9f\xf8\x10\ +\x8e\xb7\x5f\x44\x6d\x9b\xc4\xca\x6b\x08\x33\x8e\x9c\xac\x4a\xfa\ +\x72\xfe\xd1\xb6\xa5\x41\xcf\x63\x2c\xd7\x04\x5f\x84\xe3\x4b\x67\ +\xb4\x17\x79\xde\x74\x38\xa3\x42\x47\x9e\xa9\x66\xea\x68\x37\x43\ +\xb4\x3b\x4b\x12\xb4\x23\x57\x78\x05\xa7\x4f\xf6\x30\x73\x32\xc5\ +\xb1\x17\x17\xa5\xd0\xdb\x7a\xdd\x9d\x38\xb1\x24\xc7\xa3\x87\x9d\ +\xd5\x3d\xb8\xf1\xf6\xbb\x71\xd5\x75\xb7\xe0\x3b\xde\xf9\x6e\xbc\ +\xf3\x6b\xdf\xc8\x9c\x29\x4b\x9d\xae\x94\x0d\x6d\x57\x76\x5f\x31\ +\x27\x05\xcc\x1b\x7d\x5c\xd6\xcf\x1a\x15\x23\x3f\xab\xc5\xf1\x5c\ +\x2d\x6f\xeb\xd5\xe3\x02\x16\x81\x79\x6c\x18\x87\xe7\x11\xfd\xdc\ +\xf7\x83\x19\x48\x7f\x0c\xc3\xb8\x40\xd8\x15\x68\x18\xc3\xc3\x3a\ +\xd4\x0c\xe3\x0a\xc6\x2e\xfe\xcb\x9c\x97\x1c\x60\x7a\xac\x98\x51\ +\xec\x20\x22\x7c\xe4\xc9\xe4\x29\xc7\xbd\x47\x2b\xbe\xbd\x59\x9c\ +\x3a\x79\x04\xed\xd9\x17\x31\x77\xf8\x49\x1c\x39\xf8\x38\x8e\x1f\ +\x7d\x0a\x89\x84\xd9\x36\xb1\x1d\x63\x57\x5f\x8d\xb1\xfa\x14\x7a\ +\xd5\x0a\xa6\x26\xae\xc3\xd8\xee\xeb\x31\xb5\xf3\x46\x8c\x88\xbb\ +\x8a\x71\x91\xc0\x8e\x12\xf7\xb8\xc5\xc7\x6d\xbe\xdd\xca\x6d\x79\ +\xce\xd4\x07\x69\xdd\x23\x1e\xae\x63\x82\x8f\x81\xe2\xa7\x0f\x60\ +\xe2\x2a\x74\x56\x5f\x7a\xd3\x2d\x0e\x7d\x76\x96\xfd\xfa\xc6\x27\ +\x5b\x6f\xfa\x68\x4a\x1a\xf3\xb3\xa7\x70\x7c\xfa\x28\x16\xe7\x4f\ +\xe8\x1b\xdb\xa7\x4e\x1d\xc7\xe1\xa3\x87\x71\xf0\x90\x3c\x10\x9f\ +\x3c\xa6\xd3\xe1\x75\x7b\x0b\xda\x89\xc0\x06\x84\xb8\x11\x60\xd7\ +\xb5\xa3\x18\x9f\x1a\x47\x54\x8d\xf4\xc3\xe9\x8d\x31\x79\x94\x16\ +\x7f\x76\x92\x64\xb2\x24\x7c\x10\x94\x5c\x70\x94\x1e\x07\xdb\xb0\ +\xa9\xa8\xcb\x87\xf7\x34\x43\x4f\xb4\xd3\x06\x04\x6d\x28\x92\x32\ +\xcc\xd8\x71\xc6\x2e\x40\xc9\x95\x28\xee\x46\x36\xf1\xe1\x5a\xdc\ +\x85\xee\xfa\xad\x2e\xe6\x41\xfc\x27\xc6\x46\xe5\x41\xb8\x8e\x6a\ +\x1d\x18\xa9\x35\x64\xa9\x49\x98\x08\xf5\xa8\x8a\x6a\x85\x69\xb2\ +\x39\x8d\x23\x9b\x24\x7c\x4f\xe2\xb2\xc3\x31\x93\x85\x6f\xf5\x76\ +\x25\xed\x2c\x56\x37\x3b\xa2\xf8\x96\x32\x47\x92\xf1\x5b\x74\xa9\ +\x84\xed\xf5\x3a\x48\xdb\xb1\xc4\x16\x59\x63\x13\x52\x64\x31\x46\ +\x76\xbd\x12\xd7\x89\xae\xc7\xc7\x77\xe2\x6d\xef\xfc\x7a\x34\x82\ +\x23\x68\xd5\xdb\xf8\xc9\x7f\xfa\x75\xb8\xf9\xce\xed\x38\x79\x7a\ +\x11\x6d\x36\xb2\xf4\x52\xb4\x97\x7a\xe8\xf2\x6d\xe5\xae\xc8\x4e\ +\xf9\xe1\x7d\xc9\x16\xc5\xf3\x58\xb8\x83\xc1\xfe\x11\xc9\x1f\xdf\ +\x18\xe6\xa6\x6b\x38\xe0\xe8\xb1\x30\x92\xb2\x49\x32\x7d\xc8\xe7\ +\x91\x0a\xa4\x1c\xab\xc9\x08\x6e\xdd\x75\x3d\xc6\x24\xcf\x11\xf5\ +\x96\x72\x08\xc2\x58\x64\x48\x79\xa5\x31\x2a\xa3\x23\x52\xfe\x55\ +\x2c\xa5\x11\xbe\xf8\xe4\xa7\x91\xd7\x39\xad\x27\x1b\x1c\x56\xce\ +\x0b\x76\x98\x71\x0a\x4e\x36\xee\xf4\x44\xa7\x4e\x2b\x41\xb3\xcd\ +\xd1\x54\xc5\x3e\xed\x0c\x75\x3a\xba\x4e\x2e\x77\x0c\xf9\xad\x07\ +\x76\x5e\x71\xb4\x9b\x36\xa6\x88\x9b\x4f\xf5\x9a\x0b\xdd\x76\x6b\ +\x8e\xc0\x1a\x1d\xcf\x75\x84\xda\x88\x7e\xfb\x83\x61\xa4\xbc\x19\ +\x86\x82\x19\x87\xf9\xd4\xe3\xc8\x93\x59\x74\xec\xf4\x70\xfa\x54\ +\x47\x8f\x91\x6b\x2c\xe5\x39\xc1\xe3\x2d\x3f\x92\x3e\x1b\x13\x25\ +\x06\xaa\x55\x77\xec\x35\x2d\x4a\xe5\xba\x08\xe7\x1a\xeb\xe8\x4f\ +\x3f\xfe\x3a\xd4\x25\x32\xf8\x07\x36\xdc\xe4\x13\xd8\x2e\xc7\xee\ +\xb5\x6f\xbd\x0f\x93\xd8\x89\x76\xde\xc0\x97\x1e\x7b\x0c\x5f\xfc\ +\xd2\x47\xb0\xef\xd8\xa3\x18\xdb\x36\x85\x4e\xa5\xc1\xc2\xa0\xd6\ +\x72\x49\x31\xef\x6c\xc4\x63\x1a\x5a\x80\x94\xa4\xe7\x0a\xbf\x67\ +\xc8\x51\x97\x9d\x76\x8e\xf6\x62\x84\x76\xd7\x8d\x60\x63\x80\x0a\ +\x47\x96\x31\x71\x39\xe1\xb3\x44\xdc\x0b\xc0\xd1\xc7\xe7\xf5\x3b\ +\x18\x01\xa6\xf0\xb2\x1b\xbf\x02\x5f\xff\x9e\xb7\xe0\x1b\xdf\xfa\ +\x0e\xdc\x74\x1b\xbf\xd7\x21\xe7\x5c\xa7\x8b\x90\xdf\xc4\xd3\x6f\ +\x9b\x08\xda\x30\x58\x82\x0d\x4d\x44\xf3\x27\x89\x30\x5f\x74\x53\ +\xa1\x22\xcf\xee\x57\xf0\x0e\x06\x93\x55\x11\xe3\x9c\xa0\x49\x0d\ +\x4a\xc0\xfb\x95\xd7\x1e\xd9\x56\x2f\xf1\x5b\x8e\xb6\xec\xb8\xc8\ +\x58\x2b\x6f\x86\x61\x9c\x5b\xf4\xba\xd3\x3b\x85\xdc\xeb\x5c\x83\ +\x3f\xed\x07\xa9\x09\x9c\xb9\xc3\x7d\x39\x3b\xc0\xd8\x19\x14\x22\ +\xe3\x1b\x3d\xe2\xeb\xee\x94\x29\x16\x30\x8f\xe6\xc2\x69\xb1\x5d\ +\x9e\x46\xb7\x75\x04\xd9\xfc\xd3\x38\x72\xf4\x69\xcc\x1e\xdb\x8f\ +\xe9\xf9\xfd\x52\xcf\x73\x6a\xbd\x06\xb2\x8a\xd8\x2e\xb5\x51\x34\ +\x46\x47\x31\x36\x71\x15\xc0\x7b\xb0\xd8\x09\x4b\xbd\x79\x11\x17\ +\xa2\xdd\x6b\xca\xfd\xbd\x8d\x66\x6b\x0e\xcd\x64\x16\x9d\xb4\x83\ +\xa5\x85\x0e\x5a\x4d\xbe\x3c\x32\x29\xf5\x77\x0d\x63\xe3\xdb\x31\ +\xb9\x73\x42\xbf\xa3\x35\x32\x5a\x47\x57\xee\xdf\x13\x8d\x06\x5a\ +\x2d\x0e\x25\x67\x3d\xc5\x11\xdc\xae\x73\x82\x2f\xc3\x70\xcd\xda\ +\x8e\xf7\x71\x76\xca\x88\x91\x20\xce\xe2\x46\xc3\x7a\x4f\xea\x1b\ +\x2e\x1c\xc9\xce\x29\xa0\xd5\x5a\x12\x7f\xd7\x61\x24\xfb\x98\x6b\ +\x89\x93\x89\xbd\x51\xa3\xbe\x52\xe1\x34\x46\x46\xb4\xd3\x26\xe9\ +\x4a\x5d\x2a\xe9\xcd\xce\xb4\xb0\xb0\x90\x60\xf6\x64\x8a\x38\xdb\ +\x8e\x3b\x6e\x7f\x00\xb7\xdc\x70\x0f\xae\x1e\xd9\x2e\xba\x6c\xc3\ +\xd4\xe8\x2e\x6c\xdb\xb9\x03\xdb\xa7\xae\x71\x76\xe1\x39\x45\x8e\ +\x1c\x47\x16\x85\x29\xc2\x74\x16\x79\xa5\x85\x37\x7f\xcb\x7b\x51\ +\xdb\xf1\x38\x5e\xff\x86\x1d\x78\xe5\xab\xef\x11\xbb\x73\x11\xa1\ +\xd8\x6d\x99\x94\x6f\xc2\x51\xde\x52\x74\xee\x7b\xb4\x52\xd7\xb1\ +\x6a\x95\xe2\xa2\x8d\x41\xbb\x50\x3b\x50\x65\x9b\xf5\xac\xda\x26\ +\x4c\xa2\x38\x3f\x74\xa4\x1a\xeb\x6e\x89\xc3\xe9\xcc\xc7\x46\x6b\ +\x48\x6b\xb1\x98\x1b\x72\xde\x24\xb4\x27\xd8\x19\xc9\xce\x36\x89\ +\x27\x3a\x49\x14\xb5\xa7\xb4\x7c\x69\xbf\x89\xb4\x5e\xbb\xa7\x33\ +\x24\xd4\xc7\x43\x4c\x9f\x6c\x62\x61\x7e\x5c\xca\x7b\x49\x6d\x24\ +\xad\x8a\x25\x8e\x8e\xa8\xd3\x4e\x50\xa0\x93\x74\xd1\x5a\x4c\x74\ +\x74\x9a\x4e\xf7\x28\x0b\x5f\xe8\xa2\x5d\xd5\x13\xdb\x9a\xa3\xd8\ +\xdc\x28\x24\x77\x8c\xdd\x2f\xb7\xdd\x8a\x2e\xd6\x87\xb4\x35\x28\ +\x7f\x64\x94\xb6\x34\x30\x39\x11\xeb\xf1\x65\xc7\xea\x98\x76\xa8\ +\x11\x0d\xcd\xd3\xa4\xe8\x68\x61\xbe\x32\x39\xce\x12\x71\xac\x22\ +\xb6\xfc\x2c\x6a\x21\x3b\x26\x69\xbf\xca\xb9\x26\xe9\xe6\x11\x9f\ +\x01\xc4\x86\xa6\xfd\x2c\xb6\x2c\x3b\xd4\x7c\xba\x7e\xed\x8a\x94\ +\xe7\x96\xfc\xd1\xd6\xe3\x9f\xe8\xa3\x7a\x95\x34\xd6\xb0\x5c\xcb\ +\x8f\x3f\x67\xa7\x46\xa7\x70\xc7\x2d\x5f\x8b\xdb\xaf\x7e\x97\x4e\ +\xae\x29\x06\x37\x8e\xcc\x1c\xc4\xfc\xcc\x01\x3c\x71\xe2\x2f\x71\ +\xf0\xe8\x43\x58\xec\xcc\xa3\xb6\x53\x24\x65\x72\x0d\x74\xf8\x12\ +\x1e\x65\x8b\xfe\xa1\x5c\x09\x3c\x16\x22\x98\xd7\xb6\x4b\xad\xa7\ +\xe7\x73\x22\xf6\xe1\x62\x33\x91\x73\x23\xc4\xf1\x63\x31\x96\xa6\ +\xc7\xd1\xe5\xb4\xda\xe9\x12\xea\x62\xaa\x45\x92\xfe\xa9\x43\x2d\ +\x9c\x3e\x32\xa7\x33\x05\xf4\x9a\x01\x96\xc4\x16\xa3\x86\xb7\xde\ +\x76\x3d\xee\xbb\xfb\x7e\xdc\x79\xdd\x3d\x78\xf7\x37\xbe\x1d\xd7\ +\x6c\x77\xdf\x46\x5b\xe4\x75\x2d\xb6\x16\xbf\x57\x18\xf0\x9c\x28\ +\xf2\xa0\x36\xa7\xa0\x5b\xce\x6b\x4d\x5c\x48\x17\xcc\xbb\xcb\xac\ +\x19\x7d\x55\xe0\x72\x28\xee\x90\xb2\x28\xb1\xa2\x87\x8b\xe4\xd4\ +\x2b\xdc\xab\x05\x19\x86\x71\x9e\xb1\x2b\xd0\x30\x86\x87\x75\xa8\ +\x19\xc6\x15\x8c\x5d\xfc\x97\x21\x83\x0e\x2a\x2d\xa7\xc2\x9f\x8d\ +\x1c\xce\xc9\x07\x4e\xd7\x08\xc1\xc7\xa0\x34\x69\x62\x76\xfa\x10\ +\x16\x96\x8e\x60\xfe\xc8\x97\xb1\xff\xe9\xcf\x62\x7e\xf6\x08\x46\ +\xc6\x46\xb1\x6b\xcf\x4d\x98\x9c\xbc\x0a\x5d\x76\x24\xc4\x3b\x71\ +\xed\x8d\xb7\x60\x6c\x07\xa7\xe2\xb9\x4e\x62\xba\xe9\x50\xf8\x08\ +\xc8\xb7\x30\xf9\x00\xce\x46\x22\x4a\xd6\x4e\x13\x79\xc0\xd4\xb7\ +\x72\x25\xbd\x65\xd5\xf4\xc1\x9c\x6b\xe7\xd4\x6a\x88\x0f\xa7\xce\ +\x57\x61\x58\xdd\xf6\xfe\x0c\xeb\x36\xe5\x81\x36\x93\x87\x6d\xae\ +\x13\xd7\x40\xa1\x23\x89\x34\xb0\x2c\x6c\x94\x5a\x81\x71\xe6\x16\ +\x17\xb0\x6f\xff\x0b\x38\x74\xe8\x79\x59\xf6\xe1\xc0\xa1\xa7\x71\ +\xf0\xc8\x7e\xcc\x2f\x9e\xc6\xe9\xf9\x93\x48\xa3\x45\x44\xb5\x1c\ +\xb5\x46\x8c\xed\x57\xd5\xd0\x98\xa8\xa2\x3a\x5a\xc1\xd4\xf6\x06\ +\x12\x79\xb8\x8d\xe5\xc1\xb5\x9d\x24\x48\xd3\x2e\xdf\x5b\x45\x8f\ +\xd3\xfa\x48\x39\xb6\x29\x5c\xd2\x64\xc3\x04\x1b\x74\xf4\x81\x5f\ +\x1e\x8a\x63\xd1\x89\xdb\x6c\x40\x63\x07\x19\x73\xc0\x87\x5d\xee\ +\xa3\xee\xec\x90\x49\x7b\x19\x6a\xb5\x18\xd5\x6a\x43\xd6\x23\xf2\ +\x70\x1d\x62\x6a\x62\x14\xa3\x8d\x3a\x6a\x01\x3f\xe6\x9f\xa3\x1a\ +\x34\x64\xbf\x3c\xb8\x4b\x5e\x2b\x92\x72\xc4\x4e\x15\xe6\xd1\xf5\ +\xa0\x69\x83\x00\x3b\x75\x2a\x92\x0e\xbf\x93\xd5\x96\x75\x20\x61\ +\x2a\xd5\x9a\xc4\x1b\x41\x95\x1d\x23\x7c\x73\xb5\x17\xa3\x29\x4b\ +\x25\x1a\x45\xda\xd8\x86\x3b\x44\xbf\x7f\xfd\x17\x4f\xe3\xbf\xfc\ +\xdb\x9f\x45\xbe\xed\x08\xf6\xde\xbe\x07\xff\xe2\xef\x7d\x0d\xb2\ +\x1d\x3d\x9c\x9e\xe1\xe8\xb4\x96\x4e\xc9\xd8\x5a\xcc\xf4\x5b\x5a\ +\xfc\x60\x3a\x3b\xeb\xf4\x7b\x17\x3c\x0e\x39\x9b\xd2\xd8\xe8\xc5\ +\x63\x20\x1e\xa2\x48\xa5\xee\xf2\x4d\x95\x78\xb4\xd9\x58\xc6\x0e\ +\x1d\x6e\x55\x6b\x21\x3a\x4b\x19\xb6\x65\x75\x5c\xbf\x7d\x0f\xa6\ +\x46\x27\x50\xe1\x37\xd6\xa4\x4c\x78\xde\x24\xa2\x7b\xa3\x31\x8e\ +\xa0\x12\xe3\xe4\x89\x39\xbc\xb8\xf8\xa2\x1c\xc6\x00\xdd\x4e\x5b\ +\x3b\xb3\x78\xe6\x68\xa3\x94\xfc\x71\x9a\x22\xdf\xa1\xd6\x5e\x4a\ +\xd1\xec\x76\xc0\xa9\x89\x78\x0e\xb1\x71\x86\x6b\xb6\xd1\x24\xec\ +\x10\x65\x3c\x96\x55\xce\x73\x50\x94\xd5\x37\xe5\x79\xae\x14\xe7\ +\x8b\xfc\x68\x23\x04\x77\x45\x6c\xec\x0a\xe5\x38\xe4\x18\x9f\x88\ +\x31\x36\xc1\x51\x82\x0c\x27\x67\x32\x83\x30\x8e\x73\xa8\x9f\x76\ +\xaa\x49\x24\x4e\xf1\xc4\x6f\x5c\x54\x47\x02\x71\xf3\x9a\xd2\x20\ +\x4c\x46\x75\xa1\x7c\x4e\x81\x54\x61\x87\x1a\x4b\x46\xd3\x57\x91\ +\xba\xcf\xeb\xc2\x6d\xca\xf7\x6e\x45\xca\x8f\x1d\xa8\x6c\x80\xa9\ +\x54\x27\xb1\x73\xd7\x76\x5c\x7b\xd3\x5e\x5c\xb3\x73\x0a\xf3\xed\ +\x1e\x9e\x78\xf8\x30\x3e\xf9\xd9\x8f\x88\xa0\x16\x2a\xe3\x75\xb4\ +\x25\x6c\x14\xc8\xb5\x21\xba\xf1\x8d\x7d\xbd\xd6\x79\x08\x28\x53\ +\xcb\x47\x16\xb9\x66\x7a\x72\x70\xd9\x21\xdb\x5c\x4c\xd1\x6a\xca\ +\xa9\x24\xf1\x98\xff\x98\x6d\x54\x11\xcf\xad\x54\xf2\x5e\x43\xd0\ +\x91\x6b\xe7\x70\x13\x5f\x7e\x74\x06\xc9\x74\x03\x37\xdc\x74\x2f\ +\xfe\xfa\x5b\xbf\x16\xef\xf9\xd6\xaf\xc4\xd5\xb7\x5d\x03\xd4\x27\ +\x90\xcc\xcc\x21\x6d\xca\x71\x92\x6b\x9f\x1d\x87\xec\x00\xe6\x28\ +\xcb\x8c\x27\x90\x66\x46\xca\x8f\x2d\x6c\xb2\x64\x71\x45\x8f\x71\ +\xc0\xf3\x92\xc3\x27\xd8\x80\xcc\x4e\xd5\x88\x67\x8c\xcb\xbb\x9e\ +\x53\x4e\xe5\xe5\xb5\xc2\x0d\xf2\x92\x1d\x42\x7f\x04\x1f\x76\x2d\ +\x24\x8c\x9e\x9a\x85\x9b\xe1\x7d\x54\x65\x90\x2c\x71\xb3\x2c\xa9\ +\xe3\x2a\x3f\xae\x8b\xed\x41\xd1\x2e\x18\x7d\x7a\xae\x72\x1b\x86\ +\x71\x8e\x28\x5f\xf9\xac\xbb\xe4\x7e\xca\x8b\x8e\x37\x36\x22\x37\ +\x11\x36\xc2\xbb\x91\x68\x55\xa9\xbe\x9d\x15\xc6\x50\x4d\x74\xd1\ +\x99\x39\x8e\x13\x33\x2f\x48\xbd\x76\x00\xd9\xc2\x8b\x98\x99\x3e\ +\x82\xd3\xfb\x1f\xc6\x89\x93\x4f\x61\x6c\x6a\x4a\xec\xaf\x1a\x46\ +\xa7\xc6\x10\x57\xa4\x0e\x1d\x95\xed\x70\x0a\x71\x7d\x87\xc8\x6c\ +\x88\xdd\x32\x81\x3d\xd7\xdc\x8d\x1d\xbb\xae\x15\x99\x62\xbb\x88\ +\xd4\x2a\x46\x65\xbd\x20\xf5\xec\x22\x66\xe7\x28\xef\x20\x0e\x9e\ +\x78\x0e\x27\xa7\x9f\xc2\xd1\xd9\xe3\x38\x7e\xf2\xb0\xd4\x01\x91\ +\xa4\xb7\x84\xb0\x37\x25\x55\x25\x6d\x09\x4e\x7b\x2c\x69\x54\x23\ +\x74\x3a\x1d\x8c\x8e\x88\x2d\xc1\x8e\x22\xd1\xb1\x5a\x61\x6e\x62\ +\x8c\xf2\xfb\xb7\xec\xc4\xe1\x96\xdc\xd3\xeb\xb2\x43\xeb\x6a\xc9\ +\x5f\x22\xf7\x7e\xe6\x50\x6d\x1e\xa9\x57\x74\xc4\x9d\xec\xd3\xba\ +\x49\x84\x70\x64\x1b\xef\xa5\xac\xcf\x19\x8e\x15\x36\x5d\xec\x5a\ +\x64\xc7\x23\xa7\xe7\xa6\xdc\x20\xa6\xbd\x29\xeb\x24\xd6\xfa\x7c\ +\x71\xb6\x8d\xf6\x42\x17\x4b\x2d\x7e\xbf\x34\xc6\x9e\xed\x57\x61\ +\xef\x2d\xaf\x92\xfa\xf0\x1a\x6c\x1b\x67\xa7\x1a\xa7\x5e\xae\x4b\ +\x99\xd4\x64\x11\x1b\x4a\x74\xaa\x55\xc5\x9e\x92\xba\x86\x2f\x3d\ +\xd5\x98\x37\x39\x0e\xac\xb7\xc3\x88\x2f\xdd\x88\x0d\xd1\x16\x5d\ +\x45\x29\x8e\x1e\x67\x2d\x44\xc5\xa4\xfa\x42\x22\xb6\x07\x47\x84\ +\x57\xc5\x4e\x19\x1f\x9b\x90\x32\x60\xd7\x8e\x1f\x19\x77\x54\x96\ +\x0e\x7e\xe5\x8f\x3f\x84\x7f\xf3\x4b\xbf\x82\x5d\x57\x1d\xc1\xf7\ +\x7f\xc7\xeb\xb1\x6d\xd7\x98\x9a\x66\x1c\x19\xde\x6d\x2f\xa9\xcd\ +\x93\xe5\x2c\x8b\x54\x64\x49\x14\x59\x5c\x1d\xe2\xca\x86\x36\x04\ +\x2d\x67\x76\x12\x69\x85\x24\x7e\xce\x16\x66\x9d\x4c\x1b\x8b\x13\ +\x04\x8a\x9d\xd8\xa0\x7d\x28\xb6\x60\x24\x75\x27\xc3\x72\x46\x07\ +\x76\xc4\xd2\x06\x96\xf0\x52\xdb\x4b\x28\x2d\x49\xdd\x1f\x4b\x5d\ +\xcb\xa9\x1f\x39\xb2\x6b\x6a\x7b\x84\x17\x5f\x6c\x8a\xad\x2b\xc7\ +\xb8\xdd\x86\x1c\x46\xb1\xb7\xd8\x43\x26\x72\x18\x47\xe2\xd3\x6e\ +\xe2\xb7\xd3\x5a\xad\x1e\x7a\x49\x2a\xb6\x15\xd5\xa2\x9d\xc5\x73\ +\x41\xb6\xbb\x0c\x27\x7e\x82\x5f\x2f\xa3\x15\xa2\x83\x4e\x2e\xac\ +\xee\xeb\x62\x4b\x8f\x8e\x05\x98\x98\x92\x72\xa7\x0d\x2b\xc7\x75\ +\x6c\x4c\xce\x11\x0d\x2e\x1a\xd3\x56\x95\x0d\xed\x50\x93\xed\xb6\ +\x18\xd3\xa7\x4f\x76\x51\xe3\x54\xdb\x62\x2b\xf5\x92\x9e\xda\xbd\ +\x2c\x1f\x86\xa3\x6d\xc6\x32\xa2\x4d\x5d\xfd\xff\xb3\xf7\xa7\x51\ +\xb3\x65\xe7\x79\x18\xf6\x54\x9d\xa1\xe6\xaf\xbe\xe9\xce\x53\xf7\ +\xed\x19\x8d\x46\x03\x68\x34\x0d\x10\x24\x88\x41\x04\x28\x52\xe6\ +\x28\x8a\x32\xa5\xd8\x52\x9c\x65\x39\x72\xa4\x38\x59\xb1\xbd\x9c\ +\xfc\xf1\x4a\xbc\xfc\x27\x4b\xf9\x91\xc8\x2b\x4a\x96\xad\x45\x2f\ +\xd1\x92\x25\x45\x34\x29\x88\xa2\x45\x52\x04\x40\x70\x00\xd0\xe8\ +\x79\xbc\xdd\x77\x9e\xbe\x79\xaa\xaf\xc6\x33\x54\xe5\x79\xde\x7d\ +\x4e\x7d\x75\x6f\xdf\xdb\x03\x79\x1b\x20\xd1\xe7\xad\x3a\x67\xcf\ +\xef\x7e\xf7\xbb\xf7\xd9\xfb\xdd\x73\x4d\x0b\xf6\xc8\x3f\xda\xe5\ +\x71\xf2\x9d\xfd\xad\xe4\x38\x7b\xfe\x24\x87\x29\x3c\x29\x67\x2c\ +\xce\x9b\x12\xe1\xec\x9c\x9b\x16\x76\xb5\x29\xef\x1d\x9a\x7f\x1c\ +\xcb\x0b\x4f\xa3\xbf\xbf\x83\xde\x64\x13\xab\xeb\x6f\xe0\xe6\x95\ +\xe7\x51\x5a\x62\x7e\x26\x2c\x0f\x64\x4c\x2a\x84\x94\x97\x24\x0f\ +\x2b\xac\x70\x1a\x69\xb4\xb6\x53\x2d\xc8\x53\xcd\xf5\x8d\xc6\x23\ +\x44\xfb\x4d\xec\x6c\x8c\x89\x87\xe5\x76\xaf\x65\x65\x4f\x93\x95\ +\x61\x45\x93\x96\x11\xd2\x41\x0d\x6b\xe7\x23\x0c\x3a\x5d\x4c\x98\ +\xc7\xdb\x9b\xbb\xa8\xd4\xdb\x38\xfb\xe0\x09\x7c\xfa\x53\xf7\xe1\ +\x7f\xf3\x8b\xbf\x84\x87\x4f\x7d\x9c\x31\x50\x46\xc2\x80\x32\xfc\ +\x80\x62\x71\x8d\x22\x93\x0e\x7e\x75\x7c\xb3\x32\xeb\x52\x46\xb0\ +\xc4\x59\xba\xa7\xd9\x74\x7b\x7e\x65\xe0\x52\x3f\x03\x96\x80\x4c\ +\x6f\x1a\xe7\x43\xdf\xa8\xc3\x2a\x38\xd0\xbd\x0d\xcc\xfb\xac\x9b\ +\x0b\xef\x20\x0f\x3d\x6b\x37\xab\x2f\xa0\x80\x02\xbe\xd7\x50\x7c\ +\x81\x05\x14\x70\xef\xa0\x98\x50\x2b\xa0\x80\x0f\x31\x14\x1f\xff\ +\x0f\x20\x28\x53\x73\x49\xe9\x8e\x19\x7c\xd0\x99\xd4\xe5\xf3\xeb\ +\xab\x57\xb1\xb9\x7e\x09\x71\xe7\x06\xae\x5f\x7e\x01\xbd\xfd\x4d\ +\x34\xe7\xdb\x38\x7c\xe4\x34\xc2\xe6\x3c\xaa\x95\x45\x34\x97\x8e\ +\x61\xf9\xd8\x59\x54\x7c\x1d\xdb\xe8\x56\x99\xc6\x5a\x75\x3c\xd6\ +\xc0\x80\x1b\x16\xb1\x89\x23\x75\x70\xd9\xb9\x93\x8d\x23\x22\x23\ +\x20\xa3\xc7\xd9\xbc\x9d\xa8\x5b\x3b\x5a\xb7\xc2\xed\xc9\x31\xfd\ +\x6d\x96\x6a\xc5\x64\x65\xc7\xe6\xf0\xa7\x66\xcd\xba\x94\xea\xf0\ +\x7a\xb4\xb1\x81\x0b\x07\xba\x7f\x63\x6f\x67\x0f\xbb\xfd\x2d\xdc\ +\x58\xbf\x8e\x73\x6f\x5d\xc4\xb3\x2f\x3c\x83\x0b\x97\x5f\xc1\xde\ +\x86\x8e\x8c\x5c\x47\x54\x8e\x70\xe4\xbe\x2a\x1e\xf8\xe8\x21\x5b\ +\x91\xdc\x6c\xea\x38\x1d\x5d\xf2\xcd\xee\x7d\x40\x1c\x51\x8a\x81\ +\x56\x06\xb3\x73\xac\x1d\x6c\x5a\xbd\xab\x23\x23\x05\x5a\x8d\xed\ +\x97\x34\xa9\xa0\xe8\x19\xc6\x8e\xa8\x29\xbb\x41\x1c\xd2\x23\x7b\ +\xad\xf6\xd6\xa4\x90\x56\x00\x4b\xef\x05\xf4\x53\x0a\xd1\x6a\x55\ +\xb0\x34\xdf\x44\x2d\xac\xa0\x5d\x6f\xa0\xea\x87\xe4\x79\x68\xab\ +\x74\x43\x1d\x03\x69\x2b\xc3\x89\x8b\x69\x30\x7e\x4f\x52\xea\xc9\ +\x7d\x0d\xd4\x8c\x99\x62\xda\x25\x1a\x04\x49\x34\x90\xa0\x41\xa4\ +\x90\xe1\xea\x96\x2f\xbe\x46\xc2\xca\x35\xa0\xda\x44\x79\x38\xc6\ +\x7d\xc7\x1e\xc0\xa7\xfe\xf6\x7f\x85\xcd\x57\xbe\x89\x9d\xd2\x0e\ +\x3e\xff\xa5\x47\xf1\x1f\xfd\xdd\xa7\xb1\x1b\x95\xb0\xdf\xe9\x58\ +\xde\x8e\x86\x70\xc7\x3f\x0e\x62\x1b\x5c\xb2\x23\x9d\x48\xb7\xf8\ +\x6d\x93\x6b\x4a\x0f\x59\xab\xd5\xf5\x4a\x58\x45\xc7\x1a\xf9\x6e\ +\xe0\x42\x93\x37\x72\xd7\xb0\x50\x1c\x27\x08\x6b\x3e\xc6\xc4\x75\ +\xc8\x6f\xe0\xfe\xf9\x43\x68\xcf\x1d\xb2\xbc\xd2\x00\x94\x76\xcf\ +\x69\xa0\x50\x47\x6f\x5e\x58\x5f\x43\x37\xe9\x21\x41\x44\xf6\xd2\ +\x91\x60\x83\x3e\x8c\x4f\x71\xda\xb1\x87\x63\xd2\x14\xc7\xe8\x75\ +\x13\x0c\x23\xad\x7c\x27\x4d\xb4\x57\x29\x90\x5f\x0d\x5a\xe8\x11\ +\x21\x3a\x4a\x6a\x92\xba\x81\x17\xd1\x58\xd2\xe4\x8d\x0c\xfa\x4b\ +\xd5\x80\xa6\xf4\xf4\xab\x41\x9b\x5a\x05\x68\xcc\x95\xd1\x6c\x93\ +\xf7\x15\xa5\x4b\x7f\xf3\xac\xb7\x0b\xa3\x5c\xf0\x98\x6f\xcc\x53\ +\x0d\x8c\xde\xbc\x34\x44\x50\xd1\x60\x0a\xdd\x95\x6c\x31\x40\x26\ +\x91\x40\xe4\x15\xe6\xaf\xc7\x72\xe8\x06\x80\xb2\xf8\x84\x2f\xc3\ +\xed\xd4\x5c\xef\xca\xb0\x10\xe9\x18\xa4\x24\x1a\xa3\x52\x6e\xe2\ +\xf0\xe9\x65\xcc\x1f\xae\xa3\xd1\xac\x61\x6b\x35\xc5\xb9\xd7\xae\ +\xe1\xad\xf3\xaf\x02\x2d\x91\xa3\x09\x43\x7e\x77\x25\xc7\x1f\xfd\ +\x0c\x85\xd1\xe0\xf2\x4b\x65\x54\xfc\x8b\x47\x09\x06\xfd\x18\xa3\ +\x1e\x79\x9f\xc4\xa4\x45\x1e\x2d\x66\xa2\x61\x6e\xb1\x8c\xdb\x2e\ +\x4b\xed\x4a\xbb\xb8\x83\x1b\x17\x47\xb8\xcf\x7f\x1c\x3f\xfe\x97\ +\x3e\x89\x9f\xfe\xd2\x5f\xc4\x13\x9f\xba\x0f\xa8\x57\x11\xdf\x4c\ +\x91\xf6\xf7\xe1\x0d\xf6\x59\x46\x3a\x98\xf0\x9b\x18\xa7\xe4\x43\ +\xc0\xbc\x9c\xf8\xda\x50\x69\x50\x16\x2e\x2f\xb0\xfc\x51\x59\xf0\ +\x82\x10\xe5\xb0\x6a\x83\xa6\xd0\x53\xaf\xc1\xd3\x16\x4d\x3e\x93\ +\x4a\xd5\x06\x04\x6d\xbc\xd0\x91\xa5\x14\x4c\x81\x46\x7b\x6e\x01\ +\x79\x90\xe5\x8c\xc7\x59\x3f\xb3\xe1\x6f\x81\xdb\xc2\xe4\x30\x0d\ +\x9b\xbb\xbf\x9b\x9a\x41\xae\xbd\xcd\xfa\xfb\x07\xb7\x13\x22\xb3\ +\x20\xa7\xbd\x80\x02\x0a\xb8\xc7\xc0\x8f\xeb\xb6\x6f\xee\xe0\x73\ +\x93\xdb\x98\xad\x85\x2c\x7c\xdb\xf1\xae\x1d\xee\x9d\xe1\x1a\x76\ +\x36\x6e\xa0\xdf\xbf\x89\xd2\xe0\x12\x3a\xab\x6f\x60\x6d\xe5\x35\ +\x6c\xac\x5f\x61\xdb\x98\xb8\xdd\xea\x8b\x4d\x2c\x1f\x7d\x00\xa5\ +\xba\xee\xd0\x6a\x23\x0c\x16\xd0\x98\x3f\x86\x23\x47\x1f\x43\x6b\ +\xe1\x34\xda\x38\xcd\x38\x7c\x8b\x4b\x93\x52\xa3\x78\x64\x71\x95\ +\xb5\x58\x41\xe7\xf6\xb1\x6d\x70\xbb\x8e\xb5\x63\xdc\x55\xcc\xdb\ +\xb8\x68\x0b\x8b\x2e\xaf\x3c\x8f\x95\xb5\x55\x5c\xbf\x76\x01\xab\ +\xeb\x17\x6d\x87\x5a\x8f\x75\x7a\x12\x49\x38\x19\xdb\x84\x92\x4d\ +\x70\x68\x81\x04\x23\xd0\x84\x8b\x26\xa3\xc6\x6c\xc4\x02\xb6\x6b\ +\x3a\x8e\xba\xca\x7a\xbb\xd9\xac\x9b\x5a\xab\x51\x56\xa2\xbc\xa4\ +\xf6\x2e\x9d\xb8\xe3\x2b\xd5\x00\xd9\xa4\x1a\xdb\x5e\x7a\x27\xb8\ +\x49\x20\x73\x63\x25\xaf\x76\xc9\x26\x06\x48\x2f\x9b\x3b\xd7\x56\ +\x68\x36\x25\x6b\xf7\x3d\x2f\xb1\xb6\x20\xa4\x0c\xa3\xf6\x2a\xd4\ +\x84\xc2\x24\xa0\xec\xe5\xd1\x7f\x4c\x9a\x47\x48\x4a\x4d\x49\xa1\ +\x28\xa7\x4d\x84\x5e\x8d\xf2\x14\x1b\xc6\x1a\x65\x9d\xb2\x8e\xf6\ +\x0e\x89\xc3\x2d\x48\x8a\x75\x44\x1e\x79\xa1\xa3\xf8\x06\x94\x21\ +\x46\xdd\xbe\xa5\xcd\x0f\xd8\xee\x8e\x28\x53\xf4\xfa\x48\x35\xb9\ +\x16\xf5\x68\x4f\xb9\x2b\x6c\x60\xb1\xbd\x84\x6a\x63\x0e\xc7\xdb\ +\x73\x94\x27\x28\x0b\xed\xb3\x8d\xf3\xf6\x28\x5f\xf5\xf1\xbf\xfd\ +\xbf\xfd\x5b\x34\xca\xfb\x38\xfb\xe8\x10\x7f\xfd\x6f\x7e\x1a\xf5\ +\x46\x9d\x32\xa6\x8e\xb0\x8c\x30\x22\x5d\x9a\xb4\x1b\x97\x22\x4c\ +\x62\xca\x42\x4a\x17\x65\x25\xc9\x2b\x79\xa9\xb0\x05\x61\x4c\x93\ +\xec\x3c\xd2\xa0\xd6\x5f\x60\x0b\xd3\x98\x6f\x92\xb3\x75\x17\x69\ +\x95\xed\x64\xb5\xca\x74\xb1\x2d\x55\x5b\xad\x36\x9d\x2c\x26\x1f\ +\xa8\x51\x78\x09\x1e\x06\xc4\x20\x79\x4f\xf2\x21\xc3\x7b\x61\x82\ +\x95\x6b\x13\x3b\xfa\x53\x77\x0d\xbb\x9d\x71\x0c\x48\xfc\xd2\x9a\ +\x5c\x45\x59\x49\x3c\xd4\x7d\xb4\xda\xd9\xaf\xfc\xb0\x3b\xd4\x52\ +\xb6\xf1\xf4\x24\x19\x64\xba\x93\x4c\x81\x72\x20\x1a\x27\x0f\x65\ +\x60\x66\x67\x57\xa3\xbc\x57\x6f\x4e\xd0\x6e\x07\x26\x47\x49\xae\ +\xa9\xd7\x59\xfe\x58\x06\x24\x2f\xba\x60\x4e\xbe\xd2\xc4\x62\xaf\ +\x37\xc6\xde\xde\x10\xa5\x40\xbc\xa1\x2c\x4d\x7a\xed\xc5\xf8\xf2\ +\x93\x2c\x24\xcf\x88\x5f\x92\x65\xa5\x57\x3a\xcd\x8d\xc8\xec\x51\ +\x90\x8c\x06\x95\x27\xa9\xb3\xf6\x26\xeb\x30\x1d\x32\xdb\x09\x03\ +\xd4\x31\x38\xf9\x4b\x5a\x59\xce\x2b\x0d\x0f\x5b\x3b\x1d\x5c\xdf\ +\xda\x46\x37\xdd\xc2\xdc\xc2\x1c\x02\xf2\x3d\xdd\x8d\xed\x5e\xd9\ +\xc4\x63\x19\x26\x0f\xb4\x80\x0b\x65\xe6\x0b\xe9\x56\x3c\xca\x07\ +\x72\x8d\xe5\x3b\x32\xfe\xed\xee\x4c\xb0\xb7\x59\xc1\xda\xf5\x89\ +\x1d\xed\xa8\xdd\x72\x9e\xee\x46\x0e\x62\x54\xc3\x10\x3d\xca\x5f\ +\x7b\xeb\x13\x74\xb7\x52\xec\xf0\x99\xb0\x53\xd1\x65\x9f\xe3\xa9\ +\x4f\x9d\xc4\x17\x3f\xff\x38\x7e\xf1\x73\x9f\xc3\x43\x67\x1e\x26\ +\x7d\x55\x2b\xa3\xfe\x84\x7d\x2e\xd2\x68\x7d\x0c\x09\x68\xe2\x0f\ +\x63\x66\xee\x32\x5e\x4b\x9a\xb8\xc1\x5f\x6e\x9a\x85\xcc\x9c\x65\ +\x5b\xee\x7a\x10\x6e\x36\x44\x6e\xe3\x60\xd6\xcf\xfb\x82\x0c\xe1\ +\xad\xf8\x6f\x35\x15\x50\x40\x01\xdf\x5f\x28\xbe\xc4\x02\x0a\xb8\ +\x77\x50\x4c\xa8\x15\x50\xc0\x87\x18\x8a\x8f\xff\x07\x0c\x66\x33\ +\x34\xef\xbf\x18\x38\x4d\xde\xf9\xdd\xdd\xdb\xc3\xfa\xca\x45\x76\ +\xf8\x57\x70\xe3\xad\x57\xd9\xd1\x5e\xc7\xe2\xf2\x11\xb4\xda\xcb\ +\xa8\xd6\x5a\x68\x1f\x3e\x81\xe5\xc3\x27\xe1\x07\x47\xe8\x5b\x43\ +\x3f\xec\x78\xb3\xc3\xa8\x41\x79\xe9\x4a\x9a\x30\xca\x3a\xaa\x36\ +\x78\x6f\xea\x01\x64\x5d\xd8\xa9\xc4\x96\x29\x19\xdc\x6a\x7a\x7f\ +\x30\x1b\x8b\x80\x66\xf7\xbf\xcd\x49\x9d\xe9\x83\x78\xd4\xcc\xd9\ +\x64\x1b\x3b\xf5\x76\x5c\xa1\x3a\xa6\x33\x70\xe1\xc6\x1e\x5e\x7e\ +\xe9\x05\x5c\x7c\xfd\x02\x9e\x7b\xf5\xbb\x78\xe3\xd2\xf3\xb8\x76\ +\xf3\x06\x7a\xc9\x0e\x0e\x1f\xf7\x70\xf4\x64\x03\x8b\x47\x7c\xbb\ +\xa7\xa2\x55\x0f\x50\x6f\xeb\x50\xcb\x10\xb1\x37\xc2\x60\x34\xb6\ +\x95\xd0\xc3\xc1\xd0\x06\x0a\x26\x63\x37\x59\xa6\xa1\x2b\x3b\x0e\ +\x86\x8f\x36\x46\xe9\x48\x18\x75\xbe\x35\xd0\xa1\x09\x36\x9b\xe4\ +\x9b\xb8\x81\x10\xa3\x94\x1d\x7d\x8d\x7d\xd5\x42\xc6\x51\xad\x62\ +\xae\x59\x45\xbb\x5e\x41\x83\xfa\x9a\x5f\x43\x25\xa8\xa0\x4d\xb7\ +\x86\x26\x9e\xc6\x65\x76\xb2\x89\x8f\x78\x95\x92\x88\x6a\x7e\x77\ +\x98\xee\x27\xb3\x7b\xc3\xc6\x9a\x86\x63\x27\xbe\x5c\x63\x7c\x0d\ +\x9b\x00\xd2\xca\xd6\x01\xf3\x6f\x52\x59\xc0\x11\xba\xbf\xb8\xba\ +\x8e\xbf\xfd\x5f\xfe\x0a\xcb\xc2\x4b\x18\x1f\x9b\xe0\x3f\xf8\xa5\ +\xa7\xf0\xc5\x9f\x79\x00\x6b\x3b\x43\x96\x89\x14\xba\x0c\x3d\x1a\ +\x02\xbd\xbd\x08\xb1\x4d\x5c\x4d\x68\x37\x21\x7e\xc7\x6c\x8b\x93\ +\xaa\x4d\x10\x32\xa9\x7e\x39\x45\x50\x21\xef\x35\x68\x32\x66\xba\ +\x19\xa7\x4d\xe2\xc8\x3f\xf9\x1f\x56\x2b\x08\xe8\x71\x31\x09\x71\ +\x7a\xe9\x28\xe6\x1a\x73\x2c\x55\x2c\x4b\x9a\x98\x22\x7f\xc4\xbf\ +\xb7\xae\xaf\x22\xad\x8d\xa1\xbb\xdc\xc4\x18\x8d\xe3\x68\xf5\xb5\ +\x1b\xf8\xe1\x23\x1a\xc6\x29\x06\xc3\x14\xfd\xde\x08\x51\x12\xb9\ +\xfc\x15\x21\x39\x1f\x34\x20\xc4\x70\xa2\xce\x4d\xa8\x29\x2f\x44\ +\xa8\x06\x61\xb2\xb2\xa1\xf2\x6b\x63\x2a\x6e\x40\x4b\x7a\x4d\xbe\ +\x56\x82\x12\x9a\x73\x25\x7e\x0b\x21\x2a\x55\x17\x4e\x39\x64\x83\ +\x31\x02\xf9\xe5\xcf\x8e\x6f\xb4\x49\xd2\x09\x36\x57\x46\x18\x6b\ +\xd1\xb7\x3f\x42\x89\xbc\x37\xbc\x22\x86\x41\xe8\xcb\xad\xba\x56\ +\x9e\x6b\x00\x88\x76\x16\x9f\xa1\xa2\x4a\x4d\x86\xd9\xd1\xa2\x70\ +\xb4\xb1\xa3\x30\xc9\xd7\x7a\xc5\xc3\xdc\x91\x3a\x96\xe6\xe6\xc9\ +\xab\x04\x1b\x6b\x11\x5e\x7a\xf1\x06\x6e\x6e\xde\x44\x7d\x81\x7e\ +\x18\x9f\x06\xdc\x34\x20\x97\x6a\x50\x8d\x8f\xf1\x43\xf9\x4c\x55\ +\xf1\xe9\x2e\x3c\x4d\xa4\xc5\xa3\x98\xe5\x54\x7a\xf2\x25\xd6\xb7\ +\x20\xde\x4e\x8c\xc6\x49\x39\x36\x3c\x25\x96\xe7\xde\x6e\x8a\x73\ +\xaf\xef\x23\xea\xb6\xf0\xa5\x4f\x7c\x16\xff\xf9\x5f\xf9\x0b\xf8\ +\xf8\x93\xf7\x03\x4b\x8b\x18\x6e\x0c\x90\xec\xf4\x51\x61\xc1\x18\ +\xf5\xfb\x4c\xf7\x90\xe5\x91\x58\x88\x2c\x52\x59\x56\x39\x56\x8a\ +\x58\x3e\x35\x80\xa8\x5d\x06\x1a\xd8\x9d\x68\x75\xbd\xd2\xaf\x2a\ +\x44\xb3\x65\x2c\x23\x1e\xeb\x91\x09\xe3\xac\x04\x21\xbc\x6a\x9d\ +\xf9\x5e\x83\x57\x6f\xa2\xac\x89\xb6\x20\xa0\x5b\xc8\x47\xaa\xea\ +\x9b\x8c\x6f\x54\xf9\x67\x1c\x4e\x35\x70\x2c\x3b\x50\xa5\x95\x9e\ +\xa0\xf4\xe7\x7a\xc1\x6d\xde\xee\x60\x71\x07\xc8\xdd\x67\xf0\x18\ +\xcc\x86\xb9\xcd\x2d\x37\xde\x29\xd8\xf7\x0c\x72\xfa\x6e\x27\x66\ +\xd6\xfe\x76\xbb\x02\x0a\x28\xe0\x7d\x02\x3f\x20\xfe\x55\x9f\xab\ +\xce\x75\xdf\x92\xab\x87\x59\xfb\xca\x40\xb7\xca\xf4\x13\xdb\xea\ +\x6f\xd8\x4e\xb1\x7e\xff\x75\x0c\xd6\xde\xc2\xda\xd5\x97\xed\x34\ +\x80\x24\xdd\xc5\x24\x0c\x31\x47\x39\xac\xde\x3a\x0a\xaf\x31\xcf\ +\xb6\xcc\x67\xfb\x71\x18\x47\x4f\x3f\x81\x53\xa7\x1e\xc4\xb8\xd4\ +\x42\x0b\x3a\x19\x80\xed\x3e\x1f\x2d\xe0\x29\x4d\x46\xac\x52\x35\ +\x29\xa5\xf6\x4a\xf5\xad\xa4\x02\x0d\xaf\xab\xe5\x92\xaa\xb6\x40\ +\x93\x23\x94\xe1\x18\x4a\xed\x6c\x50\x6a\xb0\x0a\xd6\xa1\xd2\xc2\ +\x13\x63\x65\xf5\x1a\x5e\x3c\xf7\x75\xac\xed\x5e\xc1\xce\xce\x1a\ +\x92\xa8\x8b\xeb\x37\x2e\x60\x67\x7b\x13\x7b\xd1\x0e\x3a\xc3\x1d\ +\xdb\x1d\x5e\x0d\xaa\xac\xaf\x9b\xd6\x5e\x8f\x59\x8f\x6b\x61\x4f\ +\xc4\x76\x45\xed\xb0\xda\xfb\x5a\xa3\x82\xe5\xe5\x45\x34\x5b\x55\ +\x37\x49\x45\x3b\x9f\x32\x81\xd5\xc3\xfc\x69\x42\x4e\x47\x15\x6a\ +\xf7\x37\xab\x7d\x04\xbe\x76\x87\xc9\x71\x82\x8a\xd2\xc0\x36\x43\ +\xed\x5e\xca\xb6\x21\x4e\x54\xdf\x7b\xae\x3d\xe1\xdb\x4d\xea\x69\ +\x22\x43\xbb\xe2\xca\xb6\xf3\x49\x61\xab\xb5\x90\xe9\x29\x5b\xdc\ +\x3e\xdb\x0d\xb5\xa2\x29\xd3\xa8\xbb\xbf\x3a\x6c\xa3\x06\x94\x5d\ +\x86\x94\x03\x06\x31\x31\xe9\xa8\x63\xad\xaa\xa2\xdc\x51\xd6\x09\ +\x01\xa4\x4f\xf2\x4c\x42\x3e\xa6\x51\xc2\x3c\x71\x3b\xde\xab\xba\ +\x87\x94\x6d\xd6\x28\xea\x63\xb4\x17\xe3\xe6\xde\x00\x93\x7d\xd2\ +\xdf\x65\xd3\x45\x12\xaf\x6d\xec\xe0\xf3\x9f\xfe\x24\xb0\x51\xc1\ +\x6f\xfe\xde\x0e\x4a\xb5\x6d\x7c\xf6\xc7\x0e\xe1\x2f\xfe\xd4\x63\ +\xa8\x55\x26\xe8\xf6\xbb\x18\x0e\x47\x76\xe4\x5f\x94\x30\x7f\xc8\ +\xbb\x24\x26\x5d\x8c\xcb\xc9\x4f\x9a\x48\x4c\x4d\x2e\xd0\xe4\xa3\ +\x80\xcd\x9c\xe6\x14\xad\x2c\x59\xfb\xc6\x7c\x14\xbf\xe4\x4f\x13\ +\x80\xb5\x7a\x0d\x8d\x46\xd3\xb8\xa1\x36\x54\x7c\x50\x7b\x28\xb9\ +\xc6\x95\x35\x63\xa3\xc9\x26\x5a\xc8\xa2\x29\x17\xdd\xed\xb5\x42\ +\xf9\x24\xa1\x5c\xaa\xa3\xbc\xcd\x43\xe6\x51\x61\x74\x5c\xa7\x64\ +\x01\x4d\xa8\xd9\xfd\x69\x26\xdf\xd1\x8e\xf9\x60\xb2\x17\xfd\xc8\ +\xdd\x8e\xea\x64\xd0\x69\x70\xc5\x2d\xb3\x32\x56\x40\xc5\x26\xf7\ +\x68\x16\x4d\xb5\x5a\xc0\xfc\x98\x60\x7e\xde\x4d\xa8\x49\x4e\xaa\ +\xd6\x58\x16\x24\xab\x8c\xe9\x87\xe9\x56\xfc\xfa\x66\x54\x0e\x07\ +\xbd\x04\x23\xc6\x39\x18\xf4\x69\x2f\xf9\x51\x6e\x2a\xbf\x44\x2d\ +\xdc\x59\x34\x92\xa1\x03\xca\x65\x8a\x70\xba\x43\x4d\x26\xc9\x16\ +\x52\x45\x97\xec\x72\xd5\xec\xa4\x3a\xb3\x12\x21\x5c\xb6\xcb\x4b\ +\x7e\xc8\x69\x1d\xc1\xae\x7b\x05\x4b\x8d\x31\x46\xfb\x43\xf4\xf9\ +\x3d\xf4\xa2\x11\xfa\xbb\x23\x32\x40\x8b\xbe\x28\x79\xb1\xdc\xb9\ +\x09\x3c\xd1\x20\x26\x48\x7e\xa2\x9c\x4f\x1c\xe3\xd8\xc3\x30\xed\ +\xa1\xd7\xa7\xec\xb4\x5d\xc7\xca\x25\xa6\xa3\x47\xb9\x46\x47\x3a\ +\xea\x98\x54\x95\x6b\xfa\xd3\xae\xb2\x41\x27\xc5\x8d\x2b\x31\x36\ +\x28\x47\xc5\x51\x80\xa3\x67\x5a\x38\x71\x7f\x15\x5f\xfa\xf4\x51\ +\xfc\xf2\xdf\xf8\x19\x9c\x2a\x2d\x12\xf7\x51\x62\xd7\x82\x33\x81\ +\x52\xa5\xc7\x4d\xa4\xe9\x5b\x56\xde\xdb\x37\x6d\x2e\x9a\x48\x57\ +\x3a\x88\x9d\xf1\x90\x9b\xb4\x95\x8b\xa5\x9c\x8f\x4b\xfb\x3b\x81\ +\xf9\xce\x83\x48\x9d\x6a\xee\x1e\xce\xd5\x2d\x07\xbe\x6e\xf1\x7d\ +\xc7\xe0\x77\xb4\x2c\xa0\x80\x02\xbe\x4f\x50\x7c\x89\x05\x14\x70\ +\xef\xa0\x98\x50\x2b\xa0\x80\x0f\x31\x14\x1f\xff\x0f\x00\xbc\x87\ +\x4c\xb4\x8e\x24\xfd\xd9\xe4\x46\x3c\xc2\xd5\xcb\x17\xb0\xb3\x7a\ +\xc9\x2e\x0b\xaf\x35\x2b\x98\x5b\x3e\x82\x43\xcb\x27\xd9\xf9\xab\ +\xd0\xa3\xbb\x41\x40\x1d\x7a\x5b\xb9\xab\x1e\x24\x03\x97\x6d\x12\ +\xcd\x75\xa3\xf4\x36\x84\x33\x12\xd9\xad\xc2\xd9\x9d\x44\xb5\x8c\ +\x08\xa9\xb3\x34\xe7\xd6\xef\x06\x33\xc1\x0d\xd4\x74\x29\x61\xb7\ +\x87\x35\xb3\xdc\x94\x06\x75\x33\xe5\xd5\xd1\xad\xe3\x62\x6c\x25\ +\xaf\x06\x6d\xf4\xe8\x5e\x06\xf6\x3f\xb5\xba\x5b\xc0\x3e\x34\xae\ +\xdf\xd8\xc3\xd5\xf3\xe7\xf0\xdc\xb3\xcf\xe1\x1b\xcf\x7c\x07\x17\ +\x57\x2e\x61\x7d\xb4\x8f\xbd\xfe\x2e\x79\x35\xc6\xd2\x21\x1f\xc7\ +\xcf\x90\x67\x6d\x8f\x4f\x82\xb0\xa1\x63\x27\x3d\x8c\x18\x47\x3a\ +\x1a\xdb\x0e\x38\xc5\xa7\xbb\x2c\x74\x76\x90\x9b\xe8\x72\x74\x8a\ +\x5c\xad\xc6\xd5\xd1\x88\x9a\x44\xf0\x69\xe1\x8e\x4f\x94\x9b\xde\ +\xd4\x93\x2e\x5f\x03\x22\x13\x0f\x8d\xa0\x8a\x76\xa3\x6e\x77\x61\ +\xd4\xab\x21\x96\x5b\x35\x9b\x54\xab\x96\x2a\x68\x32\xaf\x2a\xea\ +\x4e\x07\x9e\xa6\x3a\xdd\x31\x3d\x13\xad\x4f\x27\x68\xa0\x41\x83\ +\x21\x9a\x48\xb2\x89\xb5\x8a\x5d\x4e\x5f\xf6\x02\xc4\x8c\x7b\x9c\ +\x94\x11\x54\xaa\x38\x44\xb7\xbf\xff\x87\xe7\xf0\xf7\xfe\xdb\xdf\ +\x44\xe8\x5f\x00\x16\xc7\xf8\x3f\xfd\x1f\x3f\x87\x93\x0f\x1e\xc6\ +\xee\xfe\x08\x51\xac\x15\xe6\x63\xf4\xf7\x52\x0c\x7a\x31\x92\x58\ +\xb3\x46\x1a\xa8\xca\x8e\x1b\x22\xe5\x62\xa3\xc5\xa9\x54\xd0\xd2\ +\x0f\xd8\xf5\x0f\xd8\xc9\xd7\x60\x08\xd3\xae\x72\x64\x83\x27\xa2\ +\x87\xe5\x4f\x03\x58\x61\x3a\xc6\x21\xbf\x85\xa3\xad\x45\xd4\xea\ +\x2d\x04\x5a\x79\xce\x5f\x87\xf8\xaf\x6e\xed\xa0\xc4\x22\x98\xea\ +\x58\x22\x42\x3e\x51\xa8\x41\xa5\xfc\xb8\x47\xdd\x4b\xa2\x55\xbe\ +\x83\x61\x6c\x93\x7e\x96\xbf\x7c\x04\x52\xb4\x8b\x4e\xe4\x28\xee\ +\x68\x40\x77\xf2\x41\x7c\x9f\x78\x1a\xc0\x22\x4f\x34\xa2\x42\x7e\ +\xdb\xa0\x8b\x0a\x08\x55\x2b\xe6\xb4\x0f\x59\x1e\xea\xcd\x32\xe6\ +\x17\x03\x5b\x65\x9d\x65\x0e\x5f\xd2\x2a\x9c\xd3\xe9\x1e\x0f\xb7\ +\x72\xba\x8c\x5e\x77\x88\xfd\x0d\xea\xab\x3a\x3f\xd1\x0d\xf2\x18\ +\x21\xd4\x28\xaf\x43\x9b\x50\xa3\x4f\x46\xe6\x26\x85\xf4\x38\x54\ +\x4e\x75\x66\x81\xe3\xa9\xe8\xa8\x20\xac\x07\x58\x58\xae\x21\x08\ +\xc6\x18\x0d\x4a\x58\xb9\x3e\xc4\xa5\x8b\x7b\xe8\x8c\x76\xe1\xd5\ +\xdc\x6a\x69\x95\x5f\xed\x42\x50\x11\xcb\x07\xd6\xc4\x33\xc5\xaf\ +\xe3\x9a\x34\x88\xa6\x1d\x95\xa3\x91\x26\x47\xc9\x3f\xad\xae\xce\ +\x06\xf4\x5c\x99\xd4\x37\xe1\x06\x8b\x42\x96\xdf\xb5\xcb\x11\xde\ +\x3c\xb7\x8f\xc5\xc5\xc7\xf0\x1f\xfd\xec\x4f\xe1\xaf\xff\xf8\xc7\ +\x70\xec\xd1\x63\x88\xae\xb3\x3c\xec\x76\x90\xf4\xba\xfc\x4e\x46\ +\xa8\x65\x3b\x18\x34\xdf\x9e\x8e\x45\xb3\x8e\x79\x15\x2e\xf2\xd9\ +\xa1\xce\x1e\xd9\x31\x7d\x34\xe8\x28\x4a\x4b\xbf\x26\xd8\xc4\x0f\ +\xd1\x20\xa0\x62\x83\x54\x25\xa6\xa7\xca\x72\xcd\xb2\xe9\x85\x75\ +\x8c\x59\xd6\x4b\x54\x4b\x95\x3a\xca\x3a\x82\x92\xdf\xc3\x84\x19\ +\x54\xae\xa8\x90\xe9\xc3\x75\xe5\xcf\xea\x25\x46\x2a\x1e\x6a\x92\ +\x59\x43\xd8\x9a\x53\x16\xf6\x90\x66\xba\x5a\x24\x59\x6c\x0e\x64\ +\x90\x75\xa6\xe4\x6e\x99\x95\xc1\xac\xff\xdc\x5e\x71\x18\xe4\x81\ +\xa6\x0e\x7c\x66\x03\x13\x6e\x33\x1a\xdc\xc1\xdb\x07\x03\x77\x8a\ +\x28\xa7\x3d\x87\x59\xda\x73\x90\xdd\xed\xfe\x0a\x28\xa0\x80\xb7\ +\x83\x7d\x3f\xd9\x07\xa3\x0a\x8e\xa0\x9d\x3c\xaa\xcb\xc6\x34\xb3\ +\x95\x9d\x7e\x4a\x31\xba\xb6\x88\xa9\xbf\x7b\x13\xfd\xce\x1b\xb8\ +\x7e\xe1\xbb\xd8\x5c\xbf\x6e\x13\x4e\xd5\xb9\x00\xcd\xd6\x21\x54\ +\xda\x6d\x3b\x11\x60\xec\x35\x70\xfc\xf4\x47\x71\xf8\xc4\x93\xc4\ +\xd0\xa2\x44\xd6\x76\x75\xda\x88\xb5\x29\x9b\xa4\xf1\x38\x76\x6d\ +\x4f\xd6\xfe\xe8\xad\x7a\xd6\xd1\xa2\xda\xce\xd1\x92\xdb\xe4\x1f\ +\xb4\xf3\xa5\xb6\x50\x6d\xc4\xd8\xea\x6c\x4d\xb4\x09\x97\x76\xc8\ +\xab\x16\x76\x30\xc1\xe6\xce\x3a\xde\x38\xf7\x22\xae\xae\x9f\xc3\ +\xea\xd6\x0d\xec\x0f\x77\xb0\xbe\xb3\x86\x9b\xab\x57\xb1\xb5\xbf\ +\x8a\x6e\xb4\x81\x12\xdb\x16\x4a\x32\x94\x1d\x58\x3f\x97\x29\x8d\ +\xb0\x4d\x54\xfb\xda\x8b\x06\x46\xa7\xee\x75\x0b\xab\x3e\x82\xfa\ +\x04\x35\x1d\x21\x59\x55\xfb\xa3\x05\x5a\x0c\xe7\xbb\xa1\xff\xc0\ +\x2b\x63\xae\xc1\xf6\x2e\x8c\x50\x0b\x62\xd4\x7d\xca\x9c\x25\xfa\ +\x29\x37\x59\x87\xc7\xa8\x11\x47\x94\x4f\x40\x49\xee\x60\x93\x63\ +\xbb\xbd\x49\xa3\xe6\xa1\x54\xdf\x5b\x5b\x4c\x43\xb5\x52\x31\xbd\ +\x10\x6b\x17\x9d\xcf\xf6\xbe\xec\x4f\x6c\x77\x1e\x5b\x43\x84\x01\ +\x39\xc0\xb4\x4a\x34\x53\x9b\x25\xbb\x58\xdb\xa1\x0d\x3b\x71\x48\ +\x26\xd3\xae\xbe\x98\xbc\x09\xd8\x56\xf9\x6c\x57\x23\x4d\xc2\x79\ +\x18\x8e\x23\xfa\x0f\x31\x1e\x55\x2d\x1f\xaa\xf5\x2a\xae\xae\x6c\ +\xe0\xe9\x87\xce\xe0\x1b\xdf\xbe\x89\x7f\xf9\x8f\x62\x78\xcd\x2b\ +\xf8\xca\x97\xef\xc3\x17\x7f\xec\x21\x6c\x0f\x86\x6c\x77\x3b\x18\ +\x0d\x23\xb6\x97\x89\xb5\xc1\xb1\x8e\x0c\xd4\x64\x15\x1f\xb5\xf1\ +\x5a\x70\xa2\x98\x25\x83\x90\x2c\xb6\x2d\x2c\x31\xa4\x51\xbb\xfc\ +\x29\xea\x98\x9d\xdb\x71\xae\x7c\x4a\xe8\x26\x99\xa4\x8e\x2a\x65\ +\xc1\x8a\x76\x69\xa9\xcd\x73\xc4\x33\xcb\xc6\xd6\xee\x4a\xab\xdd\ +\x50\x9a\x54\x95\x4c\x13\xc5\x13\xac\xad\x0a\x43\x32\x3d\x1a\xdb\ +\xbc\x33\x6a\xc9\x63\x7a\x34\x69\xd7\xef\xc6\xa4\x33\xb5\xbb\xf3\ +\x6c\x87\xa0\x95\x0f\x86\xa3\x40\x6b\x27\x44\x8a\x20\x46\x60\xa2\ +\x45\x16\xa5\x35\x86\xd2\x98\xc1\x81\xe2\x14\x55\xba\x8f\xb8\x5a\ +\x2f\x51\x8e\xa0\xf4\x59\x71\x65\x4e\x47\x7f\x57\xd8\x76\x0b\x95\ +\x2d\x28\xcb\x20\x08\x43\x8b\x7f\x44\x3a\x86\xa3\xc8\x26\xf0\x04\ +\xe4\x90\x43\xcd\xd7\x54\x6e\x62\xec\x81\xed\x78\xd3\xe4\xb1\xe2\ +\x77\x65\xc1\x26\x92\x65\xcc\xe2\x97\x9b\xe3\x29\xf5\x42\x27\x7b\ +\xaa\x86\x53\x8b\x79\x7c\xe1\xc8\xbe\x1e\x95\x27\x9f\xdf\x2d\xf3\ +\x79\xc4\x32\xb7\xb1\xb9\x43\x7a\x46\xfc\x66\xb5\x8b\x9f\xc4\x2a\ +\xc5\x0c\xac\x38\x94\x1b\x9a\xdc\x14\xbf\x75\x6c\x63\x44\xb9\xac\ +\xdf\x2f\x61\x7f\x1f\xd8\xde\xf0\x91\x0e\x55\xa6\x59\x06\x2d\x09\ +\xca\x37\xf2\x8e\x3a\xdd\x43\xdc\xdf\x4c\x70\xf5\x4a\x07\x3a\x21\ +\xe0\xe1\x47\x0e\xe1\xbe\x27\x2a\x78\xfa\x53\xa7\xf1\xc8\xa3\x75\ +\x3c\xfc\xd0\x43\xd8\x5d\xe5\x57\xee\xd7\x50\xc7\x61\x9b\xf0\x96\ +\x9c\xaf\x72\x59\xf1\xe7\x6d\xa2\x38\x24\xef\x2a\xfc\xd6\xfc\x72\ +\x8b\x18\xd5\x4f\xd3\x17\x24\x10\x2f\x49\x1b\x19\x6b\xf1\x69\x62\ +\xcd\xd2\x9f\xf1\x58\xb4\x98\xde\x34\xb2\x79\x1b\x98\x0b\x5f\x52\ +\x73\x90\xcf\xdc\x3c\x1b\xca\x61\x99\x75\xcd\x80\x71\xe6\xae\x07\ +\x6a\x0e\xb7\x9b\x0b\x28\xa0\x80\xef\x27\x14\x5f\x63\x01\x05\xdc\ +\x3b\x28\x26\xd4\x0a\x28\xe0\x43\x0c\xc5\xc7\xff\xe7\x14\xee\xd6\ +\x37\xb9\x43\x86\xba\x3e\x0e\xbb\x81\x54\x35\x21\xa2\x3b\x31\x06\ +\x83\x2e\x16\xe6\x16\xe1\x57\x34\x81\x76\x00\xea\x3b\x96\x74\x4c\ +\x0f\x7b\x56\x5a\x79\x6c\x81\xa7\x38\xad\x17\x6c\x1d\x36\xc3\xf9\ +\xb6\xce\x92\x14\xda\xc9\x3a\x0f\x73\x07\x2f\xb7\xb8\x7f\x50\xc0\ +\x0e\xe5\x44\xc7\xd3\x64\x46\xad\x7a\xd6\x30\x82\x3a\xb6\x4a\x56\ +\xde\x0d\xd5\x28\xd5\x78\x44\xb7\x84\xae\x61\x8a\xf2\x84\x1d\xe1\ +\x3a\x09\x1c\xd1\xad\x3b\xc1\xd6\xca\x2e\xfe\xf0\x95\xf3\xf8\xee\ +\x4b\xaf\xe0\xf9\x57\x5f\xc6\x5a\xe7\x2a\xde\xdc\xbf\x82\xfd\xd1\ +\x3e\x96\x96\x87\x58\x3e\xe2\x61\xe1\x08\x50\x61\xc7\xf9\xd8\xd1\ +\x36\xca\x61\x8c\xde\x28\x86\x2e\x8f\x1f\xc5\x11\xc9\xf0\x10\x2b\ +\x6e\x11\x92\xf5\xcb\x6d\x60\x20\xd5\xf1\x91\x5a\x25\xce\xb0\x65\ +\xdf\x3a\xf8\x1a\x20\x90\x9b\x06\x30\xd8\x55\xb7\x23\x1e\x35\x89\ +\x19\xd0\x3e\x0c\x7c\xd4\x2a\x65\xcc\x05\x21\xea\xd5\x2a\x16\x1b\ +\x15\xcc\x35\x9a\x68\xd2\xbe\x55\xd1\x3d\x6b\xec\x3c\xa7\x1a\x68\ +\xd2\x11\x4f\x1a\x58\xd1\xea\x59\x0d\xe8\x31\xcd\xa9\xec\xa8\xb7\ +\xa3\x90\x2a\x08\xaa\x21\xaa\x69\x09\x31\xe3\x2c\x8f\x5b\xf0\x2a\ +\x21\xfe\xaf\xff\xe4\x7f\xc1\x3f\xfb\xd5\xe7\x10\x1c\x59\xc5\xa1\ +\x87\x96\xf0\x5f\xfe\xdd\x1f\x46\x1c\x4e\xd0\xeb\x27\xb6\x72\x3b\ +\x1e\x6a\xe5\x2e\x1f\x0d\x76\x44\x9a\xd0\x62\x42\x6c\xd0\x85\xe5\ +\x81\xe9\x52\xf2\x2c\x89\x63\x4d\x20\x8e\xe1\xf9\x2c\x3f\x4c\x9c\ +\x06\x3f\xe4\xee\x05\x5a\x95\xac\x1c\x10\x3d\x63\xa6\xc5\x83\x4f\ +\x9e\x2f\xa1\x8d\x63\x0b\x73\x68\xcd\xb7\x49\x73\x19\xbb\xdd\x1e\ +\x56\xba\x5d\x84\x55\x8f\x65\x51\x43\x88\xf4\x4f\xe6\x89\x7e\x3b\ +\x46\x89\xf1\x6a\x62\x6d\x38\xd2\xee\xb4\x08\xc3\xd8\xed\x9a\x34\ +\x31\xc6\x98\xec\x54\x4d\x24\xd9\xa0\x09\xf9\xd3\xed\xf4\x81\x58\ +\x93\xc1\xe4\x86\x47\xda\x3c\x8d\xb6\x91\x12\x15\x62\x1b\x71\x71\ +\x8a\x78\xaf\x82\xa1\x09\x30\xbb\xcf\x6e\x29\xc8\xee\xfc\x10\x5e\ +\xe7\xcf\x29\x4a\x15\xbd\x32\x8f\x0d\x17\x79\x10\x8f\x87\xd8\xba\ +\xcc\xf4\xd5\x46\xe6\x6e\x41\xe8\x4b\xfa\x80\x69\xd5\x20\x99\xdd\ +\xa9\x47\xdc\x6e\x60\x88\x78\xf8\xb2\xc1\x9c\x7c\x14\x43\xf8\xc9\ +\x3f\x8d\x12\x6a\xf5\x74\xab\x59\x41\xad\xa6\x01\x95\x89\xad\xb2\ +\x5f\xb9\x91\xe2\xfa\xf5\x5d\x24\xda\x05\xc7\x82\x5b\x52\x59\xd5\ +\x11\x8d\x64\xb0\x3e\x3b\x72\x89\x8f\x1b\x88\xd3\xfd\x69\x1a\x08\ +\x8a\x23\xed\x4a\xd3\x9d\x78\xda\x6d\xa8\xc1\x4c\xc5\x25\x5a\x44\ +\x9f\xf2\x8b\xdf\x3a\xd5\x20\x2d\x33\x5f\x81\x4b\x6f\x6c\xe3\xca\ +\xb5\x0a\x7e\xec\xf1\xa7\xf0\x5f\xff\xed\x5f\xc4\xd3\x4f\xb1\x70\ +\x0f\x81\xbd\x4b\x1d\x8d\xe6\xda\xe0\xa0\xc7\xfa\x81\xc5\xcd\x76\ +\x3b\x24\x5a\x69\xce\xf8\xc4\x33\x9b\xcf\x35\xac\x74\xd4\xa8\x5a\ +\xc6\x5b\xbd\x94\x3f\xca\x5f\x1b\x90\x32\xbe\x7b\xc6\x23\x71\x48\ +\xcc\x18\xf3\x31\x6e\xd1\x9f\xf8\x44\x0f\xb6\xb3\x4d\xe5\x59\xf7\ +\xad\xd9\xea\x71\x2f\xd4\x99\x5f\xfc\x4e\x2b\x28\xd7\x9b\xf0\xaa\ +\x4d\x5d\xd4\x62\xbb\x43\xcb\x95\x2a\xc6\x3e\xf1\x30\xf1\x0a\x6f\ +\x13\x8a\x46\x87\x65\xa9\xa3\x8b\xaf\x8c\x1c\x67\x61\x86\x0c\x8c\ +\x96\x19\x2b\x6a\xcc\x9c\x59\x4e\xf5\x82\xd9\xf0\xb3\xea\x1d\xe0\ +\x76\xeb\x77\xf0\xfa\xbd\x85\x3b\x11\x72\x37\xbb\x02\x0a\x28\xe0\ +\xed\xa0\x3a\x46\x75\x99\x33\x98\x59\x2d\xb7\x76\xdd\x0a\xd4\xdc\ +\x8f\xe2\x0e\x36\xb7\xae\x63\x38\x58\x67\x3b\x74\x11\x57\x5f\xf9\ +\x43\x6c\x6f\xdd\x44\x7b\xb1\x89\xb9\x85\xc3\x68\x50\x06\x2b\xa1\ +\x85\x52\xa5\x81\x4a\x6d\x0e\x0f\x3e\xfa\x09\x34\x82\x33\x66\xa7\ +\xf0\x31\xdb\x3c\x1d\xbb\x37\x99\xc4\x08\xb4\x4b\xb7\x1c\xaa\x4a\ +\x63\x6c\xae\x4e\x35\x90\x42\x32\x0e\x3e\x55\xd7\xbe\xdc\x0d\xd4\ +\x46\xb8\xbf\x5a\x1f\x6a\x54\xdf\x8a\x76\xd6\x9d\x29\xe3\xf3\x28\ +\x37\x68\xc2\x47\x77\x97\x69\x77\xfb\x2c\xe6\xfe\x68\x88\xe7\x5f\ +\x7b\x11\x17\x56\x5e\xc6\xea\xe6\x05\x44\xfb\xdb\x58\xdd\x5f\xc1\ +\xc6\xce\x06\xd6\x57\xf7\xec\x8e\xae\xde\x80\x72\x14\x65\x15\x1d\ +\xe5\xac\x1d\xcf\xda\xfd\xa3\x69\xb7\xd4\x4b\x51\x69\x52\x5e\x5a\ +\xd2\xc2\x9e\x32\xe5\x1f\x1f\x3a\x0a\x5a\xb2\x8a\x76\xb8\x69\x77\ +\x56\x8d\xf5\x7b\x50\x8d\x29\xfb\x00\x0d\x5a\x78\xe1\x08\xf3\xed\ +\x0a\x2a\x81\xee\x32\xa3\xbc\xe4\x4d\x6c\x27\x9a\xe4\x00\xb5\x41\ +\x9a\xba\xb4\x36\x43\x8b\x74\xd8\x56\xb8\x49\x9c\xaa\x9b\xd8\xd3\ +\xa2\x1e\xa3\x5a\x32\x44\xa2\x26\xc7\xf2\x87\xa2\x04\xed\x29\x37\ +\x28\xe9\xc4\x25\x3e\x2a\x85\xba\x6b\xd6\x26\xb8\x68\xb0\x45\x37\ +\x94\x7b\x6c\x27\x55\x49\x47\x4b\x92\xf6\xb1\x68\x23\x9f\xd8\x7e\ +\x96\x74\x27\x18\xdb\xe0\x7a\xad\x81\xbd\xfd\x18\x0f\x9f\x58\xc6\ +\xdf\xfd\x3b\x2f\x63\xe5\xe2\x08\x4b\xc7\x06\xf8\xc5\x5f\xfe\x04\ +\x1e\x7a\xb0\xce\xfc\x17\x3f\x06\x98\x50\xc6\xec\xf5\x46\x26\xb3\ +\x68\x87\xa0\x4d\xaa\x91\x3f\x9a\xf0\x30\x59\x8a\xd8\xdc\xa2\x23\ +\xca\x64\x12\x4f\x02\xd2\x40\x7e\x29\x8f\xd8\x94\xb3\x39\x55\x19\ +\x20\x9d\x92\xe9\x28\x0f\x4a\x06\x5c\x58\xa8\xd0\x8f\xd2\x4f\x82\ +\x1d\x0a\xf3\xa3\x9f\x8e\x53\xd6\x84\x5a\xa9\x94\x62\xa7\x93\x60\ +\x7f\x97\x12\xea\x44\x27\x28\xd0\x8f\x0a\x96\x80\x06\x5b\xac\xc4\ +\xf2\x25\x79\xaa\xd7\x8b\x29\x27\x90\x33\x92\x27\x18\xe9\x74\x32\ +\x8d\xf4\x25\xcc\x4c\x3b\x52\x3c\x0b\x97\x17\x30\xa7\xf0\xe5\x8c\ +\x54\xad\x15\xb7\x22\x15\x50\x56\xad\xd5\x29\xe3\x2d\x6b\x87\x9a\ +\xe4\x1e\xca\x09\xcc\xe3\x6a\x3d\x24\x0a\x1a\xc4\x47\x59\xd2\xbf\ +\x26\xa8\x86\x23\xe5\x6b\x84\xfd\xfd\xa1\xc5\x2b\xf9\xc8\x64\x46\ +\xe2\x52\x3c\xf2\x99\x1f\xef\xe8\x53\x9e\xb2\xc9\x22\xea\xdd\xc4\ +\x91\xdc\x9d\x5e\x7e\xe5\x59\x66\x4d\xe2\x89\xaf\x16\x56\x2f\x73\ +\x62\x79\x31\x99\x42\xe5\x9e\x66\x2a\xe4\x94\x95\x23\x84\x11\xb6\ +\xb6\xf6\xb1\xb5\x1d\x59\xf9\x35\xd9\x93\x74\x4e\xc8\x77\x17\x5c\ +\x25\x99\x22\x11\xe5\xe0\x5e\x4f\xc7\x39\xf2\xe9\x86\x94\xb1\x28\ +\x6b\x0d\x29\x9b\x88\x3e\xfd\x34\xcb\xab\x05\x60\x94\xb3\x89\x1e\ +\x51\x3f\xc2\xfa\xe5\x18\x37\x56\x76\xb0\x74\xa4\x86\x1f\xfe\x7c\ +\x13\x9f\xff\xe1\x07\x70\xff\x23\x0d\x78\x94\x35\x37\x77\x06\xb8\ +\x79\x43\xc7\x84\x4e\x30\x4f\x7e\xcd\x7b\x47\x29\x5b\xf5\x18\x3e\ +\xb5\x09\xde\x46\xd8\x62\x9e\xb2\xfc\x31\x2d\x95\xca\x02\x9f\x39\ +\xf6\x1b\xa8\x96\xdb\x08\xc2\x2a\x42\xab\x3f\xe6\xd1\xf2\x54\x9f\ +\x68\x62\x5c\x93\xd6\x02\x97\xd9\x9a\x34\x57\x7f\xc8\x76\xfc\x31\ +\xc1\xaa\xa9\x8c\x49\x72\xcb\x54\xd1\x6d\x0c\xb9\x13\x28\xbf\x04\ +\xa6\xc8\x4f\x66\xbe\x1d\x66\xca\xc6\x01\xe4\x38\xef\x12\xa6\x80\ +\x02\x0a\xf8\xbe\x40\xf1\x45\x16\x50\xc0\xbd\x83\x62\x42\xad\x80\ +\x02\x3e\xc4\x50\x7c\xfc\x7f\x4e\x61\xb6\x4f\x73\xbb\xfe\x8e\x30\ +\xe3\xa0\x4e\x27\x95\x91\x8e\x0a\xca\x06\xa0\x6d\x02\x46\x83\x13\ +\x79\xaf\xd3\x7c\xb0\xd3\xf5\xb6\xce\xd1\x0c\xa8\x93\x75\xbb\xf3\ +\xf7\xab\x40\x65\x3c\x60\x32\xec\x65\xbf\x9c\x3e\xa6\x4f\x9d\x5a\ +\xeb\x43\xca\xbd\x3f\x40\xbc\xdf\xc7\xb0\xb3\x87\x49\xa7\x8f\x74\ +\x18\xbb\x8e\x6a\xc8\x4e\xa8\x8e\xc5\x59\xd4\x1d\x25\xf4\x57\x29\ +\xd9\x40\x0d\xbc\x05\xf6\xa0\x87\xd8\x58\xd9\xc7\x0b\x57\xdf\xc4\ +\x1f\x3c\x7b\x11\xdf\x78\xf1\xeb\xb8\xb8\x71\x01\xdb\x9d\x6d\x94\ +\x9b\x3d\xb4\x8f\xf8\x38\x7c\x68\x82\xe5\xa3\x1e\x6a\x75\x4d\x90\ +\xe9\x78\xc4\x10\x23\x76\xc0\x87\x23\x4d\x04\x91\xe7\x7a\x34\xd1\ +\xa0\xfb\x28\xd4\xf1\xd6\x24\x5e\x29\x45\x95\x1d\xfb\x40\xab\xb5\ +\xfd\x80\x79\xe1\x31\x9c\x3a\xfa\xa4\x5f\x83\x09\xa4\x57\x17\xdc\ +\xdb\x1d\x6c\x34\x54\x7c\x76\xae\xab\x55\x34\x75\x14\x64\xad\x86\ +\x56\xe8\xdb\xf1\x90\x7a\x96\x1a\x1e\xe6\x68\xa7\x81\x06\x0d\x4c\ +\x68\x52\xa3\x3c\x19\xa3\xac\x7b\x39\x26\x3e\x3b\xeb\x3a\x1c\x86\ +\x9d\x6f\x4f\x13\x71\x55\xb2\x43\xf1\x94\xd8\x29\x6f\x20\xf2\x56\ +\xf1\xdf\xfc\xd3\x73\xf8\xb5\x7f\xfe\x02\x7a\xad\x9b\xf8\xb1\x9f\ +\x7a\x18\x7f\xf5\xe7\x9f\xc0\xde\x60\x1f\x31\xc3\xe9\x1e\x10\x1d\ +\x19\xa8\x9d\x5f\xa3\x6e\x8c\x7e\x37\xb5\xb2\xa2\x09\x1a\x49\x10\ +\xa2\x79\x3a\xf8\x90\xe5\x81\x8e\xc3\xd1\xaa\x71\x3d\x4a\x8b\x2b\ +\x5a\x9a\xcc\x61\xda\x59\xee\x2a\xec\xf7\x37\xd2\x06\x8e\x37\x5b\ +\x98\x27\xcf\xd3\xb2\x87\xcd\xbd\x1e\x06\xba\xd7\x2b\xd0\x20\x58\ +\x3e\xf8\x45\xbc\xf4\xaf\xa3\x89\x34\xc0\xa0\x5d\x96\xda\x99\xd6\ +\xef\x47\x36\x69\xa4\x41\x30\x1b\x48\x72\x84\x58\x5c\x5a\x0d\x5c\ +\x0a\x75\xff\x49\x88\x6e\x67\x80\xf1\x48\x74\x69\xb0\x4a\x03\x85\ +\x1a\x98\x24\x29\xe4\x8f\x06\x60\x5c\x19\xd1\x20\x1a\x15\x9a\x35\ +\xd0\xa2\x13\x07\x17\x35\xa1\xd6\xd2\x4a\x79\x67\x6f\x9f\x82\xd2\ +\xa6\xb0\x04\x0d\x95\x68\xd5\xb0\xe2\xd5\xc4\xd4\xd6\x8a\x76\xd4\ +\x91\x2f\xca\xb4\x8c\x07\x1e\xfd\x04\x55\x0d\x04\xba\xd5\xe2\x36\ +\xf8\x63\x83\x2e\x8a\x5e\x6a\x8e\x54\x6f\xb9\x79\xf0\xc3\xb2\xad\ +\xb4\xd7\x4a\xee\x64\x32\x40\x67\x17\x58\xbd\x39\xc2\xfa\x76\x1f\ +\x13\x9f\x71\xe8\xe8\x21\xfe\x34\x28\x68\x61\x33\x7a\xc6\x63\xb7\ +\xfa\x5d\x03\xb0\x5a\x71\x1e\x69\xb7\x24\x55\xcb\x23\xf2\x44\x2b\ +\xdd\x35\xf9\x45\x8f\x96\x16\xdd\xfd\x67\x3b\x21\x47\x13\x0c\xb7\ +\xfa\x58\x79\x2b\xc2\x66\xf7\x24\x7e\xf9\x2b\xff\x0e\xfe\xd6\xbf\ +\xf7\x71\x3c\xf6\xd1\x87\xd0\x7d\x75\x1d\xc9\xfa\x3e\x86\x51\x9f\ +\x9f\x83\x06\x8c\x74\x6f\xe2\x58\x1b\x11\xb5\xf9\xd2\xd2\xe3\xc6\ +\x03\x49\x91\x12\x68\x65\x8e\xf1\x69\xe4\x4c\x76\x8a\x48\x2a\xfd\ +\xb8\xf2\xa6\x70\xa2\xde\xd9\xbb\xc1\x1c\x0d\xf0\xb8\xbc\x90\x9b\ +\xec\x64\x6b\x83\x53\xb4\xa3\x42\xb3\x22\x51\x7d\xa4\xef\x51\x83\ +\x61\xcc\x20\x3e\xa5\x5a\x03\x81\x76\x38\x36\x5a\x36\xc9\x56\xaa\ +\x57\x35\x2a\x4b\xbf\x8c\x47\xe5\x81\xe1\x55\x86\x0c\x9f\xe1\x91\ +\x83\xfd\x9d\xfe\x6e\x90\x3b\xe6\x1e\xa5\x0a\x66\x03\xe5\x76\x33\ +\xf0\xae\x78\x09\xb7\xa3\xfc\x33\x0d\xef\x96\x98\x02\x0a\xf8\x30\ +\xc2\xf4\x43\x77\x5f\x31\x6b\x3c\xd6\x60\xaa\x88\xc7\xe8\xf5\xf7\ +\xb0\xb1\x75\x19\x83\xde\x16\x76\x77\x2e\x62\xfd\xca\x8b\xd8\xda\ +\x5d\x61\x7b\x72\x18\x87\x4f\x9c\x85\xef\x37\x51\xf6\x2b\x98\x9f\ +\x3f\x81\xe5\xe3\xa7\x31\x57\x3d\xc9\x90\x73\x86\x67\xa4\x89\x0c\ +\xc9\x05\x9e\x6a\x41\xed\x1c\xd3\xb1\x74\xae\x82\x57\x7d\x66\xf5\ +\xe9\x4c\xcd\xf1\xf6\xcf\xf3\xdd\x3f\xd8\x59\x1f\xa2\xdb\x30\x12\ +\xa5\xed\x28\xe7\xcf\xb0\x67\x03\xe8\x9a\x64\x50\xbb\x9e\xc7\xab\ +\x36\x12\xd9\x6e\xfe\x1c\xd6\x37\x6f\xe2\xf2\xd6\x39\x5c\xbe\x7c\ +\x1e\x1b\x9d\x1b\xd8\xde\xdf\xc6\xf5\xdd\x1b\x38\xff\xd6\x1a\xae\ +\xde\xdc\xc7\x5e\x27\x62\x7b\x1e\x58\x3b\x98\x4e\x22\x54\xe7\x7c\ +\xd4\xaa\x21\xdb\x62\x8f\xf5\x76\x09\xf5\x86\xea\x7e\x0f\xbb\xfb\ +\x31\x6a\x8a\x5d\xcd\x04\xf9\xa0\x05\x41\x3e\x8d\x5e\x39\xc2\x7c\ +\x6b\x82\x66\xc3\xe7\x33\xc6\x5c\x98\x22\x24\xff\x34\xc1\x36\xf6\ +\x22\xca\x11\x1e\xaa\x14\xd8\x26\x49\xc9\x76\x61\xeb\xee\xd8\xea\ +\x5c\x19\xf5\x96\xcf\x76\xdc\xb7\x93\x00\x6c\x62\xcc\xf7\x6c\xe7\ +\x93\x96\x90\xa8\x4d\xd1\xc2\x16\x9b\x74\x52\x82\x69\xb6\x45\x38\ +\x54\x25\x6b\x69\x0a\x86\x14\x18\x1f\xb4\xe3\xcd\xb5\x5f\x34\x32\ +\x0e\xb5\xf1\x0a\xe0\x95\xd9\xce\xb0\x9d\xd3\xb1\x83\x71\xbf\x87\ +\x4b\x57\x3d\xfc\xe3\x7f\x78\x1e\xbd\xdd\x1a\x4e\x3c\xd2\xc7\xdf\ +\xf8\x5f\x7d\x14\xcd\xf6\x1c\x92\x58\xc7\x2d\x6a\x87\xf8\x36\x3a\ +\xdb\x13\xf4\xf6\xd9\x86\x4e\x46\x6a\x86\x2d\x6f\xdd\x9d\xb0\x44\ +\x49\xbe\x8a\xff\x9a\x8f\xb5\xc5\x3d\x65\x52\x40\x77\xed\x22\x84\ +\x76\xd1\x89\x68\x52\xa1\x37\x8b\x05\x16\xe6\x42\x96\x21\x4d\x9c\ +\x69\x22\x4e\x6d\x3a\xdb\x46\xd1\xc9\x76\x3d\x64\x9a\xcd\x9e\xbf\ +\x95\x35\xc9\x00\xc4\xa3\xb2\x25\x3c\xca\x6c\x82\x93\x99\x24\x23\ +\x24\x18\xec\xa7\xe8\x49\xc6\xa3\x3c\xa5\x06\x53\x32\x95\xf0\x68\ +\x22\x4d\x71\xcb\x5e\x7e\xf3\x93\x16\x0c\xac\x4c\x48\x75\x8a\xc0\ +\xac\xf8\x88\x7e\x9d\x52\x50\xad\x95\x6c\x42\xad\x6a\xb2\x34\x1d\ +\x28\x80\xd4\x1b\xee\x04\x0c\x17\xd0\x3d\x36\xb9\xc5\x30\x3d\xd2\ +\x31\x8a\xfb\x88\x87\x92\x2f\x19\x15\xa3\x97\xaa\xf2\x27\x9f\x86\ +\x9b\xe9\xb2\x1d\x62\xd2\xd3\x51\x71\x5a\xf9\x94\x59\x2f\xfb\x4b\ +\x3a\x93\x7f\xe6\xb5\x64\x50\x99\x4d\x9e\x70\xe1\x0d\x9f\xcc\xb2\ +\xa7\x5e\x93\x97\xe9\x38\xa2\x5c\xbb\x8f\xb5\x9b\x09\x7a\xb4\xa7\ +\x47\xda\xb9\x89\x4c\x4d\xcc\x89\xfd\x9a\x0c\xed\x52\x1e\xeb\xec\ +\x8f\xb0\xbf\xab\xf2\x24\x59\x92\xe1\xc7\xea\x43\x11\x17\x85\x22\ +\xf9\xd7\x24\xa4\x16\xcc\x69\xb1\xd7\xfe\x56\x8c\x8d\x6b\x03\xec\ +\xec\xf6\xf1\xc8\x13\x0b\xf8\xf1\x1f\x5f\xc4\xa7\x7e\x78\x1e\xe5\ +\x6a\x0d\xa3\x61\x48\x39\x56\xc7\x66\xeb\x7e\xb9\x0a\xc3\x48\x66\ +\x94\x6c\x23\x19\xaf\x8c\x91\x2e\x14\x24\xc3\xd3\x09\xfb\x13\xac\ +\x17\xe2\x1e\x1f\xf4\x6d\x27\x61\x99\xb4\xf9\x41\x8b\xbc\x9d\xa3\ +\xcc\x58\x43\xa3\xbe\x84\xb9\xfa\x3c\x1a\xfe\x61\x3e\x4b\xc4\x77\ +\x04\xf3\xba\xfb\xcf\x6b\x13\x47\xce\x73\x07\xca\x42\xc9\x89\x4a\ +\xa6\x2d\x34\xcb\x3f\x82\xbb\x02\xdd\xa6\xf9\xce\x27\xd7\x4b\x93\ +\x9b\x4d\xe5\x6b\x8a\x6b\x56\x15\x48\x5f\x40\x01\x05\xfc\x59\x81\ +\xe2\x8b\x2c\xa0\x80\x7b\x07\xc5\x84\x5a\x01\x05\x7c\x88\xa1\xf8\ +\xf8\xff\x0c\xc3\x3b\xf5\x43\xde\x47\xc6\xcd\x76\x6d\xf4\xb2\x2a\ +\x9f\x8f\xad\x88\x9d\x56\xff\xea\x7a\xcf\xf8\x7d\x5b\x9c\x99\x45\ +\xee\x7d\xea\x71\x46\xcd\xe1\x4e\xe6\x1c\x72\xff\x77\x85\x77\xf5\ +\x70\x47\x50\xc7\x58\x69\x52\x58\x0d\x6d\x19\xfd\x39\x0d\xba\x04\ +\xac\xdf\xc5\x68\x7b\x17\xa3\xb5\x9b\x48\x76\xf6\x80\x5e\x8f\xd6\ +\x7b\x98\xc4\x23\x54\x6a\x1e\x3c\x1f\x08\x75\x80\xa2\xe6\xd4\x26\ +\x21\xc2\xa5\x36\x26\xf5\x45\xb7\x2b\xc6\xaf\xa0\xd4\x3a\x8c\x72\ +\x6d\x09\x18\x79\x40\x37\xc5\xab\x57\xaf\xe2\xb7\x9e\x7b\x16\xdf\ +\x7d\xee\x8f\xf0\xda\xea\xeb\xb8\xb8\xb7\x8a\x81\xbf\x8f\xc5\xa3\ +\xc0\xf2\x71\x8f\x1d\x5b\x0f\xf3\xda\x3d\xd6\xd6\xa5\xf9\x29\xfa\ +\xec\x30\xf7\x13\x75\x82\x75\x29\xbe\x8e\x84\x21\x71\xec\x2b\xdb\ +\x80\x00\x3b\xcb\x1a\xa4\xd1\xca\x76\x4d\xa6\x68\x72\xcf\xd7\x32\ +\xe5\x31\x53\xa2\xce\x3f\x3b\xe9\x9a\x98\xb1\x34\xa5\x25\x84\x41\ +\x60\x83\x3e\x76\x0c\xa4\x8e\x00\xaa\x84\x54\x43\x1c\x9e\xf3\xb1\ +\x5c\x67\x9c\x8d\x10\x4d\xed\x8a\x2a\x6b\xc0\xa4\xcc\x0e\x38\xfb\ +\xe7\x25\x37\x91\x34\x4e\x89\x6b\x5c\x27\x8e\x2a\xc2\x92\x1e\x0f\ +\x69\x38\x41\xb5\xe7\xa1\xd7\xda\xc2\xdf\xf9\x7b\xcf\xe1\x1b\x7f\ +\x70\x0e\xe9\xa1\x01\x7e\xe9\x17\x9e\xc0\xe7\x3f\x77\x0a\x5b\xe4\ +\x5f\x3a\x8c\x6c\x77\x9a\xb2\x46\xfd\xe5\xee\x76\x8c\x68\xa0\x81\ +\xa0\x14\x13\xe2\x14\xeb\x35\x40\xa4\x01\x10\x8d\x3c\x68\x12\x43\ +\xb9\xa1\x3b\xe4\xd4\x59\x57\x72\x98\x02\x1b\xbc\x70\xbf\x31\x79\ +\x10\xa0\xca\x74\x1c\x6b\x35\x31\xa7\x09\x11\xea\x37\x34\xf9\x35\ +\x1d\xaf\x9b\xb8\x41\x2c\x22\xb7\xa3\x0b\x89\x54\x47\x3e\x26\x71\ +\x82\xfe\x30\xc1\x60\x10\xdb\x24\x9b\x4d\xf0\x30\x62\xc5\xa9\x00\ +\x1a\x12\xd4\x00\x93\xa7\x41\x1c\xa6\xad\xb3\x1b\x21\xed\x6b\x78\ +\x45\x93\x5a\x29\x82\x50\x23\x56\xe2\x27\x19\xca\x7c\xb0\xb2\xc3\ +\xbf\x68\x94\x95\x06\x5e\x42\xe6\xc3\xe2\x92\x87\xd6\x1c\xf3\xde\ +\xec\xe9\x60\x09\xb2\xbf\x69\x35\x20\x68\x13\xae\x06\x13\xec\xec\ +\x0c\x10\xef\xd0\xbe\x9a\x38\x0f\x04\xdd\x17\x22\x5c\x76\xbc\x90\ +\x7e\x24\xc3\x06\x70\x84\xcf\x1e\x7a\xe4\xdf\xca\x01\x69\x0a\x99\ +\x6f\x5a\x1d\xaf\x3b\x47\xa2\x24\xc6\xd6\x66\x82\x1b\x37\x46\x4c\ +\x2f\xf9\x5c\x8e\x99\xc6\x28\x0b\xa2\x08\x1c\x6f\x35\xe0\xa9\xc4\ +\xdb\x4a\x72\xe6\x87\x78\xa5\x1d\x69\x3a\xea\xd1\x76\x3b\x1a\x4f\ +\xdc\x04\xa5\xed\xfe\x12\xaf\x68\xe9\xb3\x6c\x8c\x89\x77\x6b\x6b\ +\x88\xab\x97\xc7\x78\xb8\xf1\x14\xfe\xe3\x9f\xfb\x0c\x7e\xf9\x2f\ +\x7f\xca\x56\x6a\xef\x9c\x5b\xb5\xbb\xd2\x42\x8d\xbb\x90\x56\x86\ +\x22\xde\x11\x69\xd5\xae\x3d\x0d\x40\x66\x71\x6b\xc2\x94\xb9\xab\ +\x7c\x57\x3a\xa4\xb5\xba\x45\xfc\x56\x39\x27\xb8\x61\x5b\xaa\x22\ +\x5b\x7a\xf9\x93\x62\xe1\xf8\xc8\xcd\xf8\xe2\xf8\x60\xbc\x72\x41\ +\x2c\x6e\x05\x13\x6e\xf9\x51\xda\xc5\x03\x73\x67\xe6\x94\x7c\xd2\ +\xc3\xb2\x1d\x04\x4d\xf8\xad\x05\xa0\xdd\xb0\xdd\x6b\xa5\x6a\x15\ +\xba\xc4\x64\x12\x30\x4c\xe6\x5f\x78\x2c\x58\xae\xc9\x6d\x72\xf3\ +\xd4\x9e\x20\xfd\x9f\x12\x66\xd1\xcd\xc2\x2c\xea\x7b\x18\xdd\x07\ +\x03\xb3\x04\xde\x29\x31\x05\x14\xf0\xa1\x03\x7e\x0c\xd3\xc1\x63\ +\xd8\x4e\xe0\x1b\x2b\x17\x58\xe7\xee\x61\x63\xed\x32\xf6\x36\xdf\ +\x60\xbd\x38\x41\xa3\xd9\x42\x7b\xee\x30\x2b\xaf\x39\xcc\x2f\x1f\ +\xc2\xe1\xe3\xa7\x59\xbf\xe9\x08\x47\x4d\xa0\x69\xd2\x46\xa7\x02\ +\xb0\x5d\x1d\xeb\xc8\x5d\x77\x5c\xa2\x81\xd0\x53\xd1\xe7\x66\xea\ +\x8c\xe6\xd6\x4f\x30\x33\xcd\x7a\x16\x4c\xfd\x67\x6a\x0e\x34\x1f\ +\xd4\x7d\xb7\x7b\x51\x6b\x4b\xbd\xab\xa4\x33\xc8\x7c\x58\xbc\x6a\ +\x63\xa9\xb7\x5d\xcd\x9a\x7c\x4a\xed\x68\xb9\x50\x75\xb9\x4d\xb2\ +\x69\x5b\x7f\x9f\x0f\x79\x11\xbf\x8c\xe7\x5e\x7d\x15\xaf\xbf\x75\ +\x13\x37\x36\xf7\x70\xf1\xea\x2a\xae\x5f\xef\x63\xb3\x13\x63\x75\ +\x6b\x84\xa0\x59\x46\x55\xc7\x20\x37\x62\xca\x2e\x3e\x8e\x2e\xea\ +\x6e\x5a\x1f\x23\xb6\x49\x49\xaa\x9d\x62\x64\x19\xf9\x62\xed\x24\ +\x99\x54\x9e\xe8\x58\x6d\xed\x9e\x1b\xa3\x12\xf0\xa9\xb8\xc9\xbf\ +\x5a\x2d\x41\x2d\xd4\xa4\x9c\x6b\x2f\x74\x8c\x63\xaf\x93\xb0\xdd\ +\x4d\xd0\x68\xf9\x58\x98\x0b\xd0\x62\x3b\xae\x89\x9d\x4a\xa8\xe3\ +\x20\x43\x04\x4c\x43\x62\x13\x20\x14\xf6\xd8\x16\x4a\xd6\x52\x3e\ +\xe8\x14\x03\x6b\x5d\x88\x48\x2d\x90\xda\x25\x2d\x50\x91\x49\xb2\ +\x89\x76\x86\x59\x1b\xc4\xf0\x9a\x68\x94\x3f\xed\x5e\x03\xe3\x8a\ +\x63\x86\x18\x00\xaf\x5d\xdc\xc6\x3f\xfe\xff\x6e\x90\x53\x31\x1e\ +\xfa\x78\x0b\xbf\xf0\x97\x9f\x64\xda\x80\xae\xee\x27\x4b\x23\x24\ +\x94\xa1\xba\x3b\x09\xf6\x76\x46\x8c\x89\x66\x6d\xc2\x27\x7e\xdb\ +\x39\x4e\xfc\xd6\x4e\xe9\x18\x65\xca\x82\xba\x43\xb5\x12\x50\x2e\ +\x0c\xc7\xb6\x68\x45\x32\x8d\xcb\x28\xb5\x9d\x09\xaa\x94\x11\x16\ +\xe7\x43\xcc\x35\x43\x93\x51\xac\x4d\x55\x50\xaa\x26\x67\x65\x72\ +\xd8\xea\x9a\xf2\x94\xbc\x91\x2c\x20\xfc\xf4\x2a\xb3\x2d\x3c\x62\ +\xfa\xb5\x4b\xb0\xbf\x1f\x63\xa0\xc5\x37\x26\x4f\x39\xf9\x49\xe5\ +\x20\x8e\xa8\x12\xa7\xda\x7a\x05\xe2\xdb\x85\x55\x74\x7c\x8c\xe9\ +\xb9\x21\x7b\x64\xa5\x36\x5b\x32\x8f\xf2\x78\x79\x49\x13\xa8\x94\ +\x6b\xb4\xa5\x90\x9e\x35\x71\xa4\xe3\x50\xdd\x71\x95\x2e\x80\xf1\ +\xd7\x2b\x63\x7f\x97\xbc\x1c\x0f\x29\x5b\x52\x56\x66\x9a\x44\x8b\ +\x42\x29\x3d\x06\x54\xec\xb8\x4f\xfa\x95\x9d\x93\x9b\x5c\x7c\xa2\ +\xc3\x14\xf9\x91\x3d\x2d\xc4\x03\xfe\xc5\x31\x5a\x2a\x8c\xb2\x95\ +\xaa\xc9\x18\x92\xcf\xe4\xa0\xc9\xce\x11\x3a\x9d\x11\xb6\x36\x12\ +\x0c\x29\xff\xa7\x41\x0c\x8a\x5a\x0e\x58\xce\x75\xac\xf8\x88\xb2\ +\xd2\x90\x4f\x6f\x8f\xdf\x6d\xec\x22\xd2\x5d\xc5\x7a\xc4\x73\x5b\ +\x65\x64\x31\x69\x57\x59\x80\xde\x4e\x0f\x7b\x5b\x25\xac\xae\x74\ +\x50\x6d\xd4\xf0\xd9\x2f\xd6\xf0\x93\x9f\x7f\x08\x47\xcf\x84\xd8\ +\xeb\x93\xf7\x3a\x32\x5b\x33\xc6\x0c\x1b\xfa\xc4\xa9\x85\x4f\xcc\ +\x57\xf1\x77\x14\x49\x6a\x17\x6e\x1a\xc4\x77\xe6\x87\xa5\xc5\xe8\ +\xa6\xcc\x43\x1e\xd8\x94\x1b\xbf\x3f\xd1\x46\xb1\x0f\x71\x6f\x68\ +\xb2\x71\x32\x0e\x28\x5b\xf3\x7b\x6a\x1f\xc7\xd2\xdc\x11\xb4\xaa\ +\x8b\xfc\x46\x96\x31\x57\x39\x84\x66\xfd\x30\x9a\x94\xb5\xab\x01\ +\xe5\x24\xdb\xc9\xe6\x40\x32\xa3\x78\x63\x0b\x2b\x55\x0e\xc5\x3b\ +\xfe\x94\xb5\xa2\x83\x2e\xa6\x7b\x3b\xe4\x6e\x52\x0b\x28\xa0\x80\ +\x3f\x4f\x50\x7c\xb5\x05\x14\x70\xef\xa0\x98\x50\x2b\xa0\x80\x0f\ +\x31\x14\x1f\xff\x07\x0c\x39\x83\xdf\x49\x72\xb9\x9b\x9f\x77\x0a\ +\xfb\x1e\x33\x4e\x41\x9d\xd7\x83\x00\x39\xba\x5b\x51\x1c\xf8\xbc\ +\x63\x7c\x82\xdb\xe3\xbc\x9b\xbf\xbb\x81\xc2\xcf\x44\xf3\x36\xb8\ +\x8d\x04\xd3\xbe\x93\x7f\x82\x8e\xbb\x53\x87\xd4\x9a\xb1\xac\x93\ +\x6c\x30\x1a\xf0\xe9\x61\xb4\xb6\x8a\x78\xf3\x06\x4a\xbb\x1d\xf4\ +\xf7\xb7\xd0\xdf\xda\xa4\xb7\x12\x3b\x96\x21\x3b\x99\x81\xed\x84\ +\xb2\xd5\xbf\x8a\x44\x38\xd4\x59\x1f\xeb\x72\x74\x69\x03\x78\x41\ +\x1d\xa5\xa0\x89\xc4\x6f\x62\x3c\xd7\x64\xc7\xf7\x10\xfc\x66\x85\ +\x7d\xd1\x79\x9d\xe3\x82\xeb\x1b\xe7\xf1\x9d\xd7\x56\xf1\xfb\x2f\ +\xbc\x82\x97\x5e\x7b\x0d\xaf\xf6\xd6\xb1\xde\xdf\x44\xd8\x2c\x63\ +\xe9\xf8\x10\xf7\x1d\xd3\x0e\x9a\x11\xea\x8d\x0a\x3b\xbb\x31\x7a\ +\xec\x88\x6b\x92\x2b\x60\x07\x58\xab\x57\x75\x3f\x82\x12\x69\x03\ +\x06\x4a\x27\x3b\xe5\x5a\xad\x5b\x0d\x74\x3c\x4b\x36\xf1\x62\x03\ +\x0f\x1a\x54\xd0\x80\x40\x19\x1e\xc3\x6b\xd2\x81\x3e\x6c\xc2\xa6\ +\xaa\x7b\x15\x18\xa6\x12\x94\xd1\x0a\x42\x2c\x36\x03\x1c\x5e\x6a\ +\x60\x89\x34\xd4\xaa\x3e\x42\xa6\x57\x6c\x12\x12\xad\xd6\x26\x16\ +\x4c\x22\xa6\xad\xac\x81\x18\x1d\x05\xc4\xe4\x94\x81\xa3\xec\x4c\ +\xff\xd1\xd6\x39\xfc\x37\xbf\xb2\x8a\xe7\x9e\x5d\x01\xda\x3b\xf8\ +\x5f\xff\xed\x4f\xe1\x63\x9f\x38\x8a\xd5\x8d\x3d\x8c\x13\x4d\x9e\ +\x8d\x19\xaf\x2e\xb7\x1f\x61\x7f\x6b\x62\x03\x1f\xea\x76\x6b\xb2\ +\x4b\xab\x9f\x95\x36\x37\xec\xc2\xc8\x48\xbb\xf4\x36\xe9\x42\x55\ +\x26\x1b\xf8\x30\xd5\x63\xa7\x7f\x8c\x6a\xd9\xc7\x72\xa3\x8a\x63\ +\x8b\x0b\x88\x49\x57\xa7\x33\x44\xb9\xe2\x06\x82\xe4\x73\xac\xf0\ +\xd9\xc0\x8f\x26\xd3\x62\xc6\xaf\x9d\x72\xfd\x61\x6c\x03\x1c\x9a\ +\x40\xb2\x09\x35\x0d\x02\xc9\xbf\xe8\x23\x8f\x88\x01\x7e\xa3\x84\ +\x4a\x6b\x8c\xeb\x97\xf6\x31\xe9\x56\xec\xd8\x49\x1d\x67\x15\x54\ +\xb4\x83\xd0\x46\x61\x8c\x1e\x92\x6c\xfc\x67\x30\x9a\xdd\x24\x66\ +\x48\x5e\xb6\x97\x3c\xcc\xcf\x91\x5f\xbe\x4b\x8b\xe8\x71\x2f\x02\ +\xd3\xa4\xbb\x6f\x34\xb0\x63\x03\x0f\xcc\xa3\x11\xcb\xdc\xee\xf5\ +\x09\xfc\xba\x9b\x50\x13\x4e\x9f\x71\x69\xb0\x44\x13\x4b\x8a\xcb\ +\xf2\x94\xc1\xdd\x11\x9f\xe4\x95\xe2\x26\x2e\xcb\x57\xd2\x67\x93\ +\xa9\x2c\x12\xdd\xe1\x00\x9b\xeb\x63\xac\xaf\xc5\x18\x4c\x46\xae\ +\x9c\x5b\x5a\x55\x1c\x54\x6e\xc4\x20\x37\xd0\xa2\xb2\xaf\x81\x97\ +\x44\x03\x66\x09\xf3\x24\x4e\x6c\x80\x44\x2b\xdf\xc5\x1b\xa3\x99\ +\xf4\x89\x1e\xad\x52\x17\xad\x61\x44\xff\xdb\x29\xd6\x57\x58\x86\ +\x77\xc6\xf8\xec\x83\x5f\xc1\x7f\xf6\x9f\x7c\x0e\x9f\x7d\xe2\x24\ +\x92\xb5\x0e\x7a\xd7\xb7\xd1\x1d\x6c\xa3\x9e\x56\x49\x67\x8c\xc8\ +\x56\xb6\x6b\xc0\xa8\x64\x83\x96\x86\x53\x40\x32\x88\x8e\x8a\x2b\ +\x93\xca\x03\xdb\x81\x66\x65\x94\xaa\x46\x69\xcc\x2f\x13\x2a\x37\ +\x7b\x93\x7a\xd2\x22\x3e\x4b\xef\x56\x48\x8b\xf9\xfc\x53\x75\x83\ +\x46\x2e\x9c\xbe\x55\xe7\x47\x6e\x99\x5f\xda\xa8\x48\xb9\x89\x37\ +\xd9\xbb\x89\xd6\x49\x99\x7c\x4f\xc9\xdd\x40\x3b\x13\xea\xcc\x87\ +\x45\x4c\x9a\x73\x28\xb7\x9a\xfc\x06\x1b\x40\xbd\x85\x89\x17\xd0\ +\x9f\x02\x33\x24\x15\xa3\xca\x10\x4a\x23\x90\x46\x16\x99\x92\x1b\ +\xa7\xee\x19\xdc\xc9\xee\x7d\xc0\x2c\xda\x2c\xb6\x3f\x0d\xba\x0f\ +\x16\x66\x09\xcc\xf5\x05\x14\x50\x00\x81\x75\x30\x2b\xa3\xdd\xdd\ +\x1d\x5c\x7a\xeb\x15\x04\x61\x62\x0b\x36\x6a\xf5\x26\x9a\xcd\x05\ +\xb4\xe6\x5b\xac\x8e\x1a\xac\x67\xea\xe6\x5b\x1b\x7e\x34\x19\xa2\ +\xaa\x54\x13\x27\x36\x21\xc0\x16\xc1\xbe\x7d\xd6\x63\x86\x4f\xda\ +\xec\x79\x3b\xdc\x6e\x9b\x99\xf3\x40\x86\xe8\x00\xac\x9a\xcb\xec\ +\x66\xf5\xb7\x00\xed\x2d\xa8\xe1\xe0\x6b\xea\x47\x1a\x67\x70\x3b\ +\x58\x34\x8d\x66\x4b\x27\xac\x4d\xd7\x0e\xe7\x20\x55\xdb\x46\x49\ +\xa4\xac\x09\x00\x3d\x5b\x48\xb0\xca\xd6\x77\x80\x3e\xf6\x50\xa3\ +\xb9\xc2\x30\x2f\x6f\x5e\xc5\xb7\x5e\xbc\x8a\xeb\x6b\x11\xde\xb8\ +\xb4\x85\x8b\x37\x7a\xb8\x79\x23\x40\x87\x6d\x79\x89\x6d\x92\x5f\ +\x49\x71\xea\x18\xeb\x66\xc9\x33\xf5\x0a\xea\x35\xca\x58\x69\x82\ +\xe1\x60\xc4\x68\x75\xf4\xa4\x49\x2d\xc6\x6b\xed\x96\xd7\xfd\x68\ +\x94\x42\xe8\x46\xba\xec\x98\xca\x31\x2a\x75\x1f\x8d\x16\xdb\xab\ +\xf2\xd0\xf6\x7a\x8d\xd9\x0e\x56\x7c\xb7\xdb\xbc\x39\x37\xc6\xe2\ +\xa1\x2a\xe6\x16\x7c\xcc\xd7\x18\x8f\x26\x41\xd8\x2e\xeb\x5e\xb3\ +\x20\xa8\xb2\xbd\xd4\x11\x85\xbe\xc9\x5b\x31\xe9\xd1\x51\xc3\x12\ +\x8c\x24\x77\x48\xa6\x60\x83\x6d\x13\x6f\x3a\xa6\x52\x6d\x92\xda\ +\x50\x1d\xcf\xa8\xb6\x8f\x8d\x0a\x1b\x92\x84\x72\x23\xd0\xa0\xec\ +\xf5\xeb\x5f\xdd\xc6\xbf\xf9\x9f\x36\xd9\xce\x0c\xf1\xf4\x17\x96\ +\xf0\x0b\xbf\xf8\x10\x9a\x94\x75\xb6\xba\x6a\x3b\x13\xf2\x26\xc2\ +\xde\x86\x26\xb1\x86\x59\x5b\xcd\x34\x64\x8b\x92\x74\x2c\xb2\x78\ +\x3b\x19\xab\x4c\x50\x5e\x21\xfe\xa0\x42\x99\x26\x54\x9c\x6a\xff\ +\x29\x77\xa8\xa9\x64\xdc\x2a\x3f\xf5\x1a\xb0\xb4\x10\xa0\xd5\x0a\ +\x68\x16\x31\x4c\x97\x84\x8a\x2c\xb3\x75\xe4\xe0\xd6\xa6\x26\x5f\ +\x68\xb4\xf4\x28\x12\x19\x9c\x6c\x20\x19\x21\x1a\xc4\xe8\xf3\x19\ +\x6a\x17\x9a\xc9\x0c\x99\xdc\x40\x7f\xb1\x8e\x8a\x66\xfa\x45\xa3\ +\xda\x64\xa1\x26\x12\x8b\x47\x6f\x87\x8c\x71\x65\xed\xa9\xd1\x66\ +\x1a\x4d\x56\xa9\x1d\x06\x96\x0f\x85\xa4\x93\xb2\x12\x59\xaa\x26\ +\x3f\x08\x99\x2e\xf2\x57\x79\xa9\xf2\xaf\xb0\xa2\x5d\x3b\xba\xba\ +\x3b\x29\x46\xe9\x90\x32\x9e\xf2\x98\x98\x9c\xc8\x41\x2f\x8a\x9d\ +\xe1\x15\x0f\xfd\x4a\x46\x36\xd9\xc0\x8c\xce\x4d\x7e\xcc\xaf\xe9\ +\xf9\xd0\xdd\xbe\x2f\xea\xcd\xeb\xd4\xac\x23\x26\xe9\x49\x39\x91\ +\x44\xe8\xed\xc7\xd8\xdd\x89\xd1\xed\x4e\x30\xd2\x04\x17\xd3\xab\ +\x7b\x87\x25\x7b\x4a\xde\xd5\xe2\xa4\xe1\x20\xc1\xa0\x4f\x91\x9f\ +\xc5\x51\xc7\x4d\xb2\xc8\xd9\x04\xa5\x7d\xad\x56\x16\x14\x2f\xf1\ +\x6b\x62\x2c\x4e\xd1\x5b\x1f\xe2\xe6\xe5\x1e\x65\xa8\x04\x0f\x3d\ +\xbe\x84\xcf\xfd\xe4\x32\xbe\xf8\xa3\x27\x99\xcd\x25\x74\xb6\x62\ +\x37\x81\x06\x1d\xdd\xed\xe4\x1d\xc3\x44\xd9\x4d\x0b\xd4\xc4\x24\ +\x57\x2f\x30\x1f\x54\x30\x95\x00\xe5\x9b\x62\xa0\x7d\xbe\x6b\xce\ +\x76\x94\x66\xfc\xd3\x6e\x40\x15\x53\x1d\x75\x4a\x2a\x29\x07\x52\ +\x4e\x4e\x46\xe8\x77\x06\x94\x4b\x29\xa3\xeb\x3e\xe6\xca\x12\xe6\ +\x5b\xcb\x58\x6e\x9d\xa2\xfe\x28\xea\xfe\x61\xf6\x83\x96\xb0\xb4\ +\x78\x8c\xfd\x84\x65\x31\x64\x0a\x56\xe6\x15\x9f\x18\xa7\x34\x4a\ +\xb1\x97\xe8\x98\x05\x73\x98\x01\x47\xe7\x81\xbf\x5c\x7f\xbb\xbf\ +\x02\x0a\x28\xe0\xfb\x0d\xc5\x57\x59\x40\x01\xf7\x0e\x8a\x09\xb5\ +\x02\x0a\xf8\x10\x43\xf1\xf1\x7f\xc0\x30\xcb\xe0\xbb\x49\x2f\x77\ +\xeb\x7b\xbc\x53\xd8\xf7\x98\x71\x39\x4a\xbd\x5d\xb7\xd3\x81\x3a\ +\x82\x53\xb3\x0d\x96\xa8\xfb\x26\x3b\xba\xe5\x34\xe4\xaa\x20\x8f\ +\xef\x00\x85\x83\x59\x3f\xb7\xc1\x6c\x50\x43\x97\xe3\x10\x98\x85\ +\xd3\xce\x42\x6e\x3d\xd3\x87\xcc\xfc\x39\x8d\x68\x66\x37\x33\x53\ +\xd9\xf1\xa3\x47\x4d\x50\x18\x24\x3d\x8c\x36\xd7\x91\x6c\xde\x44\ +\xb2\xb1\x86\x32\x7b\xc0\xf1\xf6\x3a\x3b\xc3\x43\x76\xec\x03\xe8\ +\x4e\x90\x50\x77\x2e\xb1\x13\xab\x23\xf1\x34\x68\x60\xab\x64\x15\ +\x59\x06\xea\x3f\xda\x4e\x1e\x62\xd7\xe4\x8b\x0d\x3a\xb0\x73\xaa\ +\x09\x0a\x78\x35\x54\x9a\x4d\x4c\xaa\x0b\x40\xbd\x6a\xfa\xf2\x78\ +\x8e\x01\xd8\xbb\x1e\x8e\xf0\xd2\xf9\x2b\xf8\xad\x57\xae\xe3\xb9\ +\x0b\xe7\xf1\xfa\xca\x75\xbc\xbc\xb5\x07\x2c\x6d\xa3\xb9\xdc\xc7\ +\xe2\x91\x09\x4e\x85\x1e\xea\x8b\xec\xf0\xc6\x21\x7a\x1a\xa8\x98\ +\x94\x11\x90\x16\x4d\x44\x69\x92\x4c\x47\x24\x96\x5c\x3f\xd6\xd4\ +\x20\x0c\xe0\xdb\xd2\x63\x4d\xf2\x98\x62\x83\x08\x36\x04\x47\x0b\ +\x65\x9b\x56\xf1\xea\x52\x7f\x75\xac\x35\xa9\xa6\x3b\xd7\x34\x51\ +\xd8\xa8\xfa\x58\x58\xae\x63\xb1\xc1\x78\xdb\x01\x74\x07\x9b\x76\ +\xa3\xd9\xb1\x7d\x9a\x74\x40\x85\x61\x34\xa0\xa7\xcb\xfc\xd9\x49\ +\x27\x3e\x0d\x26\x2d\x4e\x86\xf8\xe6\xb5\x1d\xfc\xdf\xff\xc9\x45\ +\x3c\xf7\x9d\xeb\xa8\x3e\x30\xc2\xff\xe1\x3f\x79\x1a\x27\xef\xaf\ +\x61\x67\x3b\xb1\xd5\xb0\x6e\xf0\x40\x2b\x75\x13\xec\x6f\xaa\xc3\ +\x1f\x23\x4e\x59\x7a\x52\x11\xa9\x7c\xb1\x61\x02\x1b\x7c\xc9\xc6\ +\x65\x0c\x34\x36\x22\x0b\x95\x33\xf9\x13\x7f\x75\xef\x49\xbb\x52\ +\xc5\x7d\x27\x1a\x74\x0b\xd0\xed\x45\x36\x60\x21\x1c\xf2\x25\xf1\ +\x44\x47\x3c\x6a\x20\x28\xe5\x13\x31\xfe\x48\xbb\xd3\xf4\x8c\x74\ +\xfc\x20\xf3\x91\xf6\x36\xf0\x22\xcc\xd4\xeb\x68\x4d\x2f\x98\xa0\ +\x7d\x28\xc4\xe9\xc7\xe6\xf0\xc2\x1f\xdd\x40\xe7\x86\x06\xeb\x52\ +\xf8\x5e\x09\x15\x4d\xa8\x69\xdc\x81\xe9\xb5\x55\xe6\xfa\x91\xaf\ +\x36\x68\x48\xde\x6b\x60\x47\xfe\xe6\xe6\x3d\xb4\x17\x2a\xd0\xfd\ +\x67\xfa\x31\x49\x06\xae\xb8\x30\x2c\xe3\xd2\xae\x3f\x15\x1a\x95\ +\xa3\x34\x4d\xb0\x75\x7d\x44\x77\xdd\xd7\x42\x1e\x58\x5c\xa1\xa5\ +\xc7\xf2\x8f\x01\x55\xbe\xdc\xa0\x90\xf2\xdb\xf1\x49\x19\xa9\x55\ +\xc1\x3a\x66\x74\x52\x8a\xb0\xdf\x29\xe1\xfa\x8d\x01\x3a\x9d\x98\ +\xe5\x5b\x2b\x96\xc9\x33\x0d\xba\xd9\xb0\x8b\x40\x1c\x74\x69\x95\ +\x9b\x40\xbb\xd1\x34\x38\xa8\xfb\xd2\xac\xbc\x6a\xd0\x85\xd1\xa8\ +\x6c\x2b\x8d\xca\x5b\x1d\xb7\x15\x68\x45\x7d\x2f\xc5\xca\xb5\x01\ +\x2e\x5d\x18\xe2\x78\xf3\x0c\xfe\xea\x8f\x7c\x1c\x7f\xe3\x67\x3e\ +\x86\xd3\x0f\xb4\xb1\x77\x8d\x3c\x5e\xdf\xc2\x68\xd4\x07\x4b\x0a\ +\x11\xa8\xfc\x97\x8c\x1f\x44\x4b\x7e\xe7\x14\x38\xdc\xd2\x28\x9f\ +\xf3\xfc\x32\xe6\x28\x91\x2c\x0b\xba\x47\x44\x03\x84\x36\x00\x69\ +\xcc\xa3\x7d\xee\xc7\x54\x95\x5b\xea\xa5\x9a\x9b\x78\xe6\xca\xb2\ +\xfc\xc8\xcd\x06\xcd\x64\xaf\xf2\x4e\xbd\xf3\xe7\x78\x68\x7a\xe1\ +\xb6\x84\xaa\x8c\x94\xc8\x2f\xa6\x5b\x65\x8c\x05\x42\xfc\x29\xfb\ +\x55\x78\x15\x7e\xb7\xf5\x16\xc2\x85\x79\x94\x1a\x8b\x28\xb7\xf9\ +\xfd\x56\xe7\x30\xb1\x8b\xe0\x14\x3d\xa9\x77\x09\xe2\xcb\xa5\x4f\ +\x71\x9a\xa5\xe1\xa6\x31\xb7\xce\xe1\x4e\x76\x7f\x4a\x30\x12\x9c\ +\xd6\xe0\x1e\xa3\xbf\x3b\xbc\x9f\xb4\xcc\x12\x58\x40\x01\x1f\x56\ +\x60\xdd\x62\x8a\x7e\xac\x13\xbb\xfd\x7d\x54\x03\xca\x04\xda\x15\ +\x7b\x1b\x68\x17\xb5\xea\x5e\xbb\x97\xcb\xea\x30\xd5\x85\x0e\x14\ +\xde\xd5\x31\xee\xeb\x77\xb5\x68\xfe\x91\xbd\xfb\xc7\xf6\x9e\x3e\ +\xc7\xbc\x0e\xcb\x21\xa3\x5d\x90\xeb\x54\xf5\x39\xfd\x8c\x1b\xdb\ +\x16\x6b\x3f\x74\xa7\xae\x59\x38\xb9\x4b\x07\x47\x6b\x37\x5d\x0e\ +\x11\x76\xb0\xbe\x77\x15\xfd\xdd\x1b\x88\xd2\x75\xf4\xf9\x0c\x93\ +\x21\x46\xd1\x00\xa1\x1f\x53\x2e\x49\xe1\xb1\x79\x2f\xd7\x03\xf2\ +\x87\x6d\x54\x1c\xe3\xc2\x5b\x5b\x78\xe9\xcd\x04\xaf\xbf\x35\xc0\ +\xf9\x8b\x29\xb6\xb6\x27\x58\xe9\xae\xa3\x19\x4e\xd0\x68\xc7\x38\ +\xb4\xd0\x46\x89\xed\x74\xad\x16\xda\xa4\xc6\x98\x6d\xab\xd2\xe1\ +\x91\x7f\x36\xe7\x60\xb4\x68\xa2\x20\x66\xdb\x26\x77\xca\x6a\xd4\ +\x27\x64\x6d\x48\x5e\xd6\x6a\x81\x3b\x16\x90\xbe\x92\x28\xa1\x9f\ +\x32\xb4\xa6\xa2\xd1\x1a\xa1\x31\x17\x62\x79\xbe\x84\x85\x79\x1d\ +\x23\x59\xb1\x05\x16\xe5\x52\x85\x38\x98\x26\x0a\x06\x3a\x3d\x40\ +\xbb\xa0\x62\xed\x1a\x1c\x13\x87\xda\x59\xfd\xd4\x06\x8b\x06\x2d\ +\xcc\x21\x5f\x82\x90\x61\xd8\x28\x4a\x6e\x28\x95\x29\x63\x51\xe6\ +\x12\x0d\xbe\xb7\x88\xff\xf7\xff\xe3\x35\xbc\xf4\xdd\x3e\xbc\x7a\ +\x1f\x9f\xf9\xc2\x49\x7c\xf1\x8b\xa7\xd0\x6c\x7b\x6c\xdb\x07\x2c\ +\x0b\x62\x76\x8c\xc1\xde\x04\xbb\xdb\x43\xca\x33\x12\x5e\x84\x9f\ +\xcd\x11\x1b\x53\x1d\x4f\x99\x1f\x9d\xad\xa3\xba\xd5\xb6\x79\xda\ +\x08\x47\x99\x46\xc7\x60\xca\x5e\xe5\x44\x59\x2a\xbb\x46\x9d\x72\ +\xdb\x82\x8f\x66\x5d\x77\xce\x31\x6f\x6c\xc1\x8b\x2b\x4b\xdd\xfd\ +\x04\x7b\xfb\x1e\x25\x07\xe1\x15\x3e\x21\x75\xaa\x64\xa7\x38\x9a\ +\x60\xa8\xd3\x07\xa2\x98\xb2\x15\xdb\x77\xa6\x51\x77\xa8\x49\x4e\ +\x53\x5b\xef\xee\x4e\x23\x5d\xd9\xc4\x8e\xca\x83\x4d\x00\x5a\xec\ +\x42\x48\xd5\xda\xe8\x03\x50\xf3\x2d\x67\xdd\xfd\x15\x56\x26\x58\ +\x3e\xac\xbb\x60\x55\xf6\x27\x36\x91\xa5\x5d\xfd\x9a\x6c\x13\x3e\ +\xf3\x28\x14\xc4\x21\xff\xc3\xc1\x04\xfd\xd1\x80\x72\x4c\x64\x69\ +\x75\x33\x78\x07\x5e\x25\x29\x48\xe8\xa5\x98\xe0\xbe\x25\xaa\x26\ +\x4f\x65\x7e\x4c\x9e\x20\xc8\xce\x64\x06\xb3\x13\x7e\xc9\x74\xae\ +\xa7\x10\x04\xae\x0c\x76\xfb\x31\x36\x36\x23\xf4\x99\x0f\x92\x5f\ +\x41\x5e\x2a\xdd\xe2\xbf\xd2\xa8\xdd\x79\x7a\xa2\x91\x26\x71\x25\ +\x2b\xbb\x3b\xf6\x74\xc2\x84\x64\x52\x81\xca\xa2\xc9\x6f\x0c\x2a\ +\x7a\x74\x74\xe3\xe6\xb5\x18\x17\xaf\xac\x61\xae\x5d\xc7\x67\x3e\ +\xdb\xc2\xe7\xbf\x78\x3f\x4e\x9e\x0d\xd0\x1f\x32\xcd\xb1\xe4\x21\ +\xf9\x55\xf9\x75\x38\x15\x5e\xf9\x61\xa4\x13\x8f\x48\x71\xe9\x50\ +\x1e\xa9\xe4\x29\x22\xc5\x23\x8d\xc2\x8a\x4c\x95\x77\xe9\x95\x40\ +\x67\x96\x0c\x6a\xb2\x22\x71\xeb\xa8\x58\x7d\xa9\x25\x75\x10\x64\ +\x47\xf7\x24\x1d\x21\xb1\x63\xdb\xd9\xe7\x48\x98\x96\x58\xfd\x84\ +\x05\x9c\x3c\xf2\x30\x16\xda\x27\x51\xc3\x21\xd2\x7c\x14\x4b\xed\ +\xc3\x2c\xdf\xfc\x58\x0c\x44\x83\x22\xd6\x8e\x54\x11\x2e\x6a\x54\ +\xb2\x9c\x9a\x91\x74\x17\x78\x67\xd7\x02\x0a\x28\xe0\xfb\x0b\xc5\ +\x17\x5a\x40\x01\xf7\x0e\x8a\x09\xb5\x02\x0a\xf8\x10\x43\xf1\xf1\ +\x7f\x0f\x20\x67\xf2\xdd\xa4\x97\x59\x77\xd7\x4f\x39\x80\x3b\xb9\ +\xe5\x76\xef\x11\xde\x16\xed\x2d\x38\xb2\x0e\xdb\x7b\x84\x59\x32\ +\x72\xc4\xb7\x87\x9f\xf5\x63\x6e\xd3\x00\x77\x70\x23\x64\x7d\x34\ +\xb3\xc8\xed\x04\x2e\x08\xdf\xe6\xe6\x5c\xd4\x0d\x55\x1f\x52\xfd\ +\x4b\x76\xef\x6c\x17\xda\x60\x67\x0d\xf1\xfa\x0a\xb0\x75\x13\xc9\ +\xee\x3a\xa2\xdd\x3d\xe8\xf8\x94\xa0\xa2\xbb\x1b\x74\xc7\x44\x00\ +\xbf\x56\xb5\xbb\x22\xd8\xab\x34\x54\xf9\x80\x84\x75\x36\x85\xda\ +\xd0\xe7\x1d\x5b\x0d\x1c\x50\xaf\x81\x1b\x5f\xfe\x52\x9b\x84\x53\ +\x07\x58\x83\x2c\xec\x8b\xa3\x1c\xd4\x50\xad\x36\xe8\xbf\x8a\x72\ +\xd8\xa0\x99\xf1\xf8\x15\x22\x9e\xe0\x46\xb7\x8f\xef\x5c\xba\x89\ +\xdf\xfe\xd6\x05\xfc\xde\x6b\x2f\xe3\x72\x7f\x0f\x51\xb4\x8d\xf6\ +\x83\x5d\x3c\xfc\x20\x3b\xf6\x61\x15\x95\xc0\x83\x3f\xf6\xd0\x57\ +\x8f\x3c\x25\x76\x25\x88\x9d\x74\xdb\xd9\x23\x3b\x76\x5e\xb5\x03\ +\x4d\xab\xbf\x35\xc1\xa3\x15\xbd\x36\x38\x40\x6f\xf6\xf0\x65\x03\ +\x74\x4a\x07\x69\xb6\x3b\x28\xd4\xa9\x66\xfc\xbe\x1f\xda\x0e\xab\ +\x6a\xb5\xa2\x79\x3f\x2c\xce\x85\x58\x6c\xf9\x58\xaa\xfa\x68\x06\ +\xec\x44\xfb\x7c\x82\x10\x63\x1b\x14\xd3\x4e\x35\x4d\xc6\x79\xec\ +\x88\xfb\x28\x93\x6f\xf5\xca\x18\x5f\x7d\xe5\x35\xfc\x8b\xdf\xe9\ +\xe2\x8f\xbf\x71\x19\xf5\x47\x4b\xf8\x5b\xff\xf1\x93\x38\x76\xbc\ +\x8c\x5e\x87\xd1\x24\x5a\x4d\x5d\x62\xe7\x3c\xb6\xfb\xc9\x7a\x9d\ +\x14\xa3\xa1\x06\x07\x68\x4f\xba\xc4\x37\xf1\x54\x93\x23\x6e\xc2\ +\x4a\x66\x72\x4f\x6e\x74\xc8\x27\xc7\x34\x50\xa3\x01\xb2\x56\xb5\ +\x86\x53\x87\x75\x6c\x65\x9d\x7c\x8a\x6c\xc0\x25\x1f\x48\xd0\x5b\ +\x83\x17\x0a\xa7\x81\x06\x4d\x84\x0e\x07\x91\x1d\xf7\x38\x88\xdc\ +\x8a\x6d\xba\xda\x80\x81\x02\x68\x32\xa5\x9c\x96\xc1\xe4\xe1\xd0\ +\x7d\x15\x7c\xe6\x0b\xf7\xe3\xc2\x9b\x5b\xf8\xfd\x5f\xbf\x89\x78\ +\x34\x41\xb5\xae\x01\x15\xe6\x41\x55\xe9\x25\x41\x46\x1f\x7f\x1a\ +\x2b\xc8\x18\x6c\x83\x3b\xa4\xbd\xd5\x2e\x63\x7e\x91\xbc\x0c\x35\ +\x30\x23\xde\xca\x13\x89\x22\xc8\xaf\x68\xd2\xbd\x77\x2a\x90\xb2\ +\xd6\x44\x56\x67\x63\x88\x61\x2f\x45\xad\xa9\x15\xd7\xcc\xbb\xc0\ +\xb7\x09\x35\x43\x6d\x8f\xf4\x36\xd4\xe1\x06\x43\x84\x8b\xa6\x20\ +\x60\xfa\xd2\x14\xbb\x7b\x31\x6e\xae\xc4\xe8\x74\x87\x46\x93\x26\ +\x76\x95\x36\x1b\xe4\x12\xcf\xf8\x38\xae\xb8\x01\x15\xa5\x37\x25\ +\x4f\x34\x40\x94\x8c\xa4\x77\xbc\x92\xb7\xfc\xf8\x1e\xd1\x9e\x42\ +\xc7\x75\xfa\xa8\x45\x25\xac\x5c\x1c\xe2\xdc\xc5\x31\x3e\x71\xf4\ +\x34\xfe\xd6\x5f\x79\x1a\xbf\xf8\xa5\x27\x10\x96\x63\x6c\x9e\x1f\ +\xa1\xd7\xdb\xb6\x89\xb9\x9a\xee\x87\x49\x35\x90\xca\xb2\x4f\x42\ +\x12\x37\xca\x23\x62\x35\xbe\x67\x13\xd9\x0e\x98\xaf\xf6\x21\xba\ +\xef\x46\xf9\x6c\x7c\x14\x64\x66\xc7\x5c\xd1\x94\xbb\xe5\x69\x97\ +\x9b\xfe\xe2\x6f\x6e\xcf\xb7\x5e\xb2\xa5\x9d\xd9\x3b\x4b\xa7\x37\ +\x5e\xbb\xef\xc2\x74\x1a\x9d\xa2\xaa\xbf\x1e\x4b\x3b\xb5\x7a\xc0\ +\xef\xc6\x82\xab\x84\x90\x59\x1a\x04\xf6\x2b\x35\xd4\xda\x87\x80\ +\xd6\x32\xca\x73\x8b\xf0\x96\x97\xe8\x4f\x83\x4e\x4c\x6e\xca\xef\ +\x8f\xf8\xf3\x01\xba\x0c\x4b\x06\xb9\xdd\xf7\x0e\xf2\xd8\x15\xf3\ +\x2c\x25\x1f\x38\xbc\x53\x84\x77\x62\x83\xfc\xe6\x61\xbe\xf7\x6c\ +\x2a\xa0\x80\xef\x0f\xa8\xae\x61\x79\x57\x3d\x24\x48\xc6\xba\xe7\ +\x48\x75\x88\x06\xee\xa9\xb2\xde\x92\x8b\x06\xf3\xe5\xcf\xaa\x6e\ +\x81\x85\x11\xcc\x58\xd8\x33\xfb\x21\x09\x9c\xaf\x3b\xc1\xdb\x5c\ +\x2c\xe8\x9d\xfc\x67\x38\xa7\x28\x67\xe2\x70\x7f\x9a\x54\x67\x3a\ +\x3b\xa5\x45\x3b\xa0\x05\x36\x38\xcf\x74\x68\x02\xcd\x06\xfe\x33\ +\xd0\x0d\x53\x9b\x1b\x37\xb0\xbe\x73\x1d\x3b\xf1\x35\x74\xd2\x15\ +\xec\xf4\x56\xb1\xbf\x79\x15\x23\xdd\x5d\x4a\xf9\x20\x64\xfb\xda\ +\xa8\x69\x77\xb7\x8f\xb0\x41\x9c\xac\x5b\x7d\x1d\xa5\x5d\x29\xa1\ +\x4a\x19\xa4\xd5\xd4\x5d\x5a\x3e\xf6\xbb\x63\x5c\xb8\x36\xc2\xab\ +\xe7\x06\x78\xee\x95\x3d\xac\xaf\x95\xb1\xb5\xbd\x8f\xce\x60\x80\ +\x7a\x3d\xc2\xf2\x89\x79\x56\xcf\x3e\xaa\xb6\xeb\x4f\x47\x56\xb3\ +\x8d\x63\x3b\x39\x4e\x18\x0f\x19\xea\x2b\x69\x6a\xf3\xcb\xa4\x9d\ +\xe6\x58\xc2\x07\xc5\x3c\x25\xd3\x23\x0d\x15\xca\x65\xa5\xb2\x8e\ +\x3f\x4e\x30\x8e\xd9\x96\xf9\x23\xca\x3a\x40\x83\x72\x40\x6b\xde\ +\xa3\x4c\x13\xa0\x39\x97\x60\x7e\xa1\x6a\x72\x87\x16\x18\xa9\x3d\ +\xd2\x44\x4a\xa5\x16\x38\x39\x44\x72\x19\xed\x8c\x5b\x6c\x07\xd5\ +\x8e\x49\xbe\x32\x99\x8b\xf6\x1e\xdb\x15\xc9\x01\x65\x2f\x60\x3b\ +\x1e\xa0\x12\x76\xb0\xbe\x1e\xe2\xff\xf3\xdf\xbd\x86\xcb\xaf\x4b\ +\xfe\x04\x3e\xf2\x43\x6d\xfc\xc2\xcf\x3f\x40\xc2\x46\xd0\x3d\x6f\ +\x6e\x02\x70\x4c\x59\x21\xc1\xfe\x56\x84\x7e\xdf\xf6\x90\x91\x4f\ +\x94\x36\x35\x77\xc8\x96\xdf\x76\xfc\x2b\x5f\x98\xaf\x3a\xaa\x5b\ +\xf7\x97\x8a\x7f\xda\x9d\xa7\x36\x5d\xa5\xab\x5c\xd2\xf1\x96\x65\ +\x34\x1b\x13\x93\x55\x16\xdb\x94\x47\x98\x0e\x1d\x0d\xae\xbc\xdb\ +\xd9\xa6\xac\x34\xd4\x11\x8b\xca\x03\xd1\xee\xf2\x95\x49\xb2\xf8\ +\xed\x18\x43\xca\x71\x3a\xb2\x54\x6d\xbc\xe2\xb6\x5d\x79\xca\x7b\ +\x33\x8f\x6d\x42\x58\xfc\xb4\x72\x4d\x3c\x09\xf3\x58\xac\x70\xe5\ +\x59\xf4\xf1\x4f\x9e\x68\xee\x4b\xa5\x28\x6b\xbe\x4d\x3e\x0d\x29\ +\x46\x2c\x1d\x72\x13\x6a\x9e\x76\x15\x12\x45\xa0\x09\x49\xb6\xb9\ +\x79\x9b\x2f\x9c\xca\x3b\xe1\x17\xbf\xb5\xa8\x4a\x32\x88\x09\x92\ +\x72\xd3\x4f\x5e\x09\x36\x19\xc5\xb2\x68\xaa\x64\x01\x0b\x2e\x3e\ +\x50\xa5\xbb\x7d\x8f\x34\x4b\xa6\x95\xa3\x9b\x58\x73\xb4\x28\x6e\ +\x94\xc9\x8f\xfe\x98\x65\x6c\x88\xdd\x9d\x14\xfd\x21\x69\x52\xd9\ +\x61\x82\x34\x79\x28\x39\x4b\xe2\x77\x12\x4f\x8c\x37\xda\x29\xa8\ +\xb4\x6a\x82\x2d\x5f\x58\x67\xbc\x93\x38\x66\x02\x18\x23\x24\xed\ +\x9a\xc0\x1a\x8f\x52\x6c\x5c\x8e\x70\x75\x65\x07\x47\xce\xb6\xf0\ +\xe5\xbf\xb4\x88\x2f\x7e\xee\x34\xfb\x07\x13\xca\xc8\x62\x0a\xcb\ +\x5f\xc8\x74\x5b\x79\x55\xee\x29\x3f\x8c\x89\x46\xab\xcb\x31\xe1\ +\x73\xe5\x4d\x5f\xa1\xa5\x89\x7e\x9c\x3f\x25\x4e\x22\x10\xcb\x08\ +\x71\x48\x8e\x96\xbb\x0b\x2b\x1d\x71\xd2\x2e\xcd\xbe\x05\x05\xb1\ +\xc5\x66\xca\x3c\xa5\x8b\xf8\xf5\x1d\x7b\x76\x04\xb9\xe3\x99\x76\ +\x20\x46\x3a\x8e\xb4\x37\x46\x30\x6e\x63\xa1\x7d\x1a\x47\xe7\x1f\ +\x42\xa3\xb2\x8c\xb9\xda\x31\x1c\x5e\x3c\xc1\xbc\x3b\xd8\xbd\x96\ +\x97\x1d\x27\x92\x29\x7e\xd6\x6d\x62\x90\xa3\xe4\x36\xb8\xdd\xee\ +\x6e\xfe\x0a\x28\xa0\x80\xef\x07\x14\x5f\x63\x01\x05\xdc\x3b\x60\ +\xbb\xab\x66\xb7\x80\x02\x0a\xf8\x30\x42\xf1\xf1\x7f\xc0\x90\x33\ +\xf8\xdd\x24\x97\xbc\xaf\x71\xbb\xff\x3b\x99\xa9\x37\xaf\xb9\xdb\ +\x3b\x40\x1e\xec\x00\xde\x8e\x70\xd6\xc6\xa1\xbf\xd5\x2d\xb7\x97\ +\xc6\xfa\x66\xb9\x9d\xcc\xb2\x97\x9e\xcf\xac\xfe\x16\xc8\x1c\xa7\ +\xee\x6f\xf3\x40\x37\x39\xe6\x08\xcd\x83\xba\x97\x02\x76\xda\xcc\ +\x31\x07\x76\x6a\xbb\x5d\xec\x6d\xac\xa2\xb4\x75\xd3\x9e\x71\x67\ +\x07\xc9\xce\x16\xc6\x5e\x19\x35\xdd\xc5\x55\xa9\xc0\xaf\x68\xa5\ +\x78\x76\xa9\x3a\x71\xf8\x36\x38\xc1\x0e\xab\x56\xda\x0a\xd8\x2b\ +\xb4\x68\xd8\x41\x94\xbb\xfe\xd9\x8b\x51\xd3\x27\x1d\x35\x89\xa6\ +\xd5\x9e\x3e\xcd\x36\x34\xc6\x0e\xbe\x3a\xe6\x1a\x57\x48\xc7\xec\ +\xf0\xa6\xa2\x37\x40\x50\xa9\x03\x95\x10\x13\xaf\xa6\x51\x1c\x76\ +\x54\x19\xb7\xcf\x0e\x79\xbc\x85\xdf\x7a\x63\x15\xcf\x9d\xbb\x86\ +\x67\x5f\x3c\x8f\xef\xac\xde\xc0\x56\xe5\x26\x9a\xc7\x13\x1c\x3f\ +\x5c\xc3\x61\xf6\x68\xc3\xaa\xee\x68\xd3\xee\x9f\x09\xe2\x84\xb1\ +\x68\xa0\x45\x83\x72\xec\xb1\xaa\x0b\xae\x49\x2a\x75\x7e\x35\x40\ +\xa0\x55\xbd\x6e\x10\x47\x1d\x59\xc5\xad\x0e\xb2\x06\x0b\x18\x8e\ +\x6a\x7e\x74\xa0\x1e\xdd\xdf\x62\x13\x65\x9a\xd0\xf1\xcb\xa8\xb3\ +\x23\xdf\xd4\xf1\x40\x8d\x12\x0e\x2d\x54\x71\xa4\x4a\x73\x58\x43\ +\xe8\xd7\x19\xae\x82\xc0\x27\xfd\x4c\xcb\xb8\xa2\x81\xaf\x12\x76\ +\x77\x56\xd0\xa9\x76\xf1\x8f\xff\xe7\x1b\xf8\xda\xf3\x3b\xe8\x36\ +\x7c\xfc\xf4\x4f\x9f\xc0\xe3\x0f\x2c\xc2\x0f\x4b\xec\x80\xa7\x76\ +\x21\xfb\x68\x38\xc4\xfe\xde\x00\xbd\x5d\xad\x80\xd5\xea\x57\xf2\ +\x93\x44\x69\x92\xc7\xd3\x71\x96\xa4\xdd\x1d\x05\x28\x9e\xaa\x83\ +\xef\x3a\xf9\x36\x16\x21\x7e\x53\x1f\x86\x01\x4e\x2e\xb5\x31\x5f\ +\x0f\x98\x36\x0d\xa4\x90\xb7\x74\x62\x92\xdc\xc0\x01\x71\xda\x42\ +\x71\x5a\x8e\xe2\x14\xfd\xfe\x10\xc3\x41\x0c\x5d\xe9\x96\x5a\x81\ +\x24\x26\x43\xac\xce\x3e\x79\x30\x21\x9f\x90\xa0\x7d\xaa\x84\x2f\ +\xfe\xe4\xc7\x10\x25\x3e\x7e\xed\x1f\x7e\x1b\xdb\x97\x13\x84\x73\ +\x1e\x42\xaf\x84\xda\x1c\xd3\x6b\xa3\x30\xee\x51\x5c\xba\x97\xc2\ +\xac\xf8\xb2\x3b\xea\x5a\x25\x2c\x2c\x85\x76\x9f\x19\x8d\x72\x30\ +\x7f\xf2\x2f\xda\xcb\xe4\x53\x89\xfc\x55\xf9\x94\xbd\xe2\xd6\x11\ +\x3b\xfd\x4d\xe2\x5f\x18\xdb\xae\xc8\xb2\xca\x0b\xf1\x29\xbc\xa2\ +\x52\x19\xb7\x28\x15\x42\xf9\x27\x7b\x5a\x47\xa3\x18\xeb\xeb\x29\ +\x36\xb7\x52\x0c\x93\x81\xf3\xa3\x74\x89\x69\xf6\x97\x5e\x65\x56\ +\xbc\xa3\xca\xb8\xb4\x7b\x32\x26\x3f\x34\x50\xa8\x81\x9e\x54\xab\ +\xc9\x89\x5f\xfc\x3d\x28\x27\x40\x32\x89\xc0\x2f\x02\x49\x6f\x8c\ +\xd7\x5e\x1f\x61\x7d\xb3\x8e\x5f\xfe\xe4\x59\xfc\x17\x7f\xed\x87\ +\xf0\xd8\x63\xcb\x18\x32\xef\xf6\x6e\x0e\x11\x0f\x06\x98\x44\xee\ +\xe2\x90\x89\x46\xd6\x08\x65\x7e\x37\xee\x0b\xc9\x32\x44\xf4\x4b\ +\x51\x9e\x1a\x8d\x7a\xe5\x31\x65\xc0\xf4\x8a\x27\x56\x4a\x45\xbb\ +\xf8\x43\x8d\x68\xb3\xc9\x2a\x99\xf5\xcb\xf4\x42\x60\x8a\x70\xc8\ +\x6d\xc6\xdd\x06\xa5\x89\xcf\x70\xc9\x4c\x7e\x4e\x71\xab\x9c\x5b\ +\x86\x89\xbf\x2a\x63\x0e\x87\xac\xed\x48\x4f\xda\x68\xf0\xc7\xf2\ +\x80\x66\xa5\xa3\x64\x03\xde\x1a\x5a\xd2\x20\x68\x0b\xc1\xa1\x23\ +\xfc\x28\x96\x51\x5d\x3a\x0a\x54\xf5\xfd\x1a\x12\xe3\xad\x7d\x47\ +\x06\x0e\xb3\x70\xcf\x2a\x53\xeb\xef\x31\x7c\x9f\xa2\x75\x90\xa7\ +\xfd\x4e\x20\xc2\xde\xc9\xbd\x80\x02\x7e\x60\xc1\x6a\x24\xa7\x53\ +\x9d\x4d\xad\xd5\x99\x66\xc1\x87\x66\xb9\xe6\x9f\x88\x73\x71\xfe\ +\x0f\x6c\x67\xdd\x0e\x5c\xdf\x0e\xb9\xaf\x19\x1f\xb7\x19\x6f\x01\ +\x43\xc8\xd7\x6c\x30\xb3\x73\x20\x3a\x59\x85\x9a\x4e\xc3\xee\x3a\ +\x5e\x58\x13\x4b\x79\x65\x28\xbb\xdd\xce\x3a\xd6\x37\xae\x62\x3f\ +\xbe\x81\x5d\xac\x62\x7d\xf5\x2d\x5c\x5b\x7b\x0b\x83\xc1\x36\x16\ +\x97\x6a\x58\x9c\x6f\xb3\xfa\xac\xda\xbd\xa8\xda\x69\x24\x4c\x3a\ +\xda\x52\xed\x52\x99\xed\xb9\xe4\x1b\xd7\x60\xa8\xfe\x76\x0b\x63\ +\xb4\xfb\xbe\xd9\x0a\x30\x37\xc7\xb6\xa6\x1c\x60\x73\x3d\xc1\xa5\ +\x8b\x11\x2e\x5e\x89\xf1\xe6\xe5\x6d\xbc\x76\xb1\x8b\xd5\xcd\x5d\ +\xca\x74\x1e\xf1\xb7\xd0\x6e\x52\x56\x09\x27\xb0\xa3\x19\xc3\x32\ +\x46\x3a\x0e\x52\xb3\x1f\xac\xdf\x03\xd2\xaa\xc1\xfd\x50\xf7\xba\ +\x4d\x34\x61\x35\x46\xc4\x76\xd1\xf7\xb5\x2b\x4e\x47\x29\x7b\xd6\ +\x66\x6a\x2e\x48\x33\x6e\x9a\x2c\x12\xae\xb2\x9f\x60\x81\x32\xc1\ +\xf2\xe1\x12\x16\x0f\xa5\x58\x3c\xac\x3b\x6c\x7d\xca\x43\x7a\x42\ +\xa6\x82\xdc\x51\xc3\xa1\x86\x84\xa0\xe6\x46\xed\xb0\xda\x3d\xdb\ +\xc9\x4e\x7f\x9a\xe0\x91\x5c\xe8\x16\x32\x91\x67\x01\xdb\x5b\x7f\ +\x8c\xcb\xd7\x4a\xf8\xd5\x7f\x78\x19\xe7\x5f\xa2\xbf\xf6\x18\x4f\ +\x7e\xb2\x89\x2f\xfe\xf8\x69\x34\xda\x15\xf4\xf6\xf7\x91\x24\xe2\ +\xbb\x76\x40\xa5\x94\x67\x53\x44\x94\xa9\x12\x1d\x09\x99\x68\x87\ +\x14\xdb\x33\xc9\x41\xca\x2c\xc6\x45\x09\x90\x8a\x9b\x38\xf4\x28\ +\x5b\xba\x7b\xc4\x48\x90\x68\x21\x8d\x7e\x30\x26\x9f\x42\x9c\x38\ +\xa6\x63\xaa\x75\x9c\xa2\x6f\xbc\xdf\x58\x8f\xc9\x87\x0a\xc3\xba\ +\x89\x20\xe1\x52\xf9\x74\xc7\x41\x6b\x71\x12\x9f\xa1\x3b\x61\x40\ +\x3c\xb3\x85\x33\x92\xb7\x88\x53\xff\x28\x52\x1e\x8e\x19\x9f\xf0\ +\x69\xb1\x13\x55\xd2\x2d\x59\xc7\x40\xe5\xc6\xf2\xd5\xe9\x5d\x9b\ +\xae\xbf\x68\x24\xdf\x29\xd2\x2d\x1e\x0a\xd1\xa8\xeb\x24\x04\xd1\ +\x4e\xbe\xe9\x68\x6b\xed\x50\xb3\xef\x24\x93\x53\x18\x4e\xf9\x27\ +\x81\xa1\xd7\x4b\x8c\x27\x13\xbb\x5b\x58\xf6\x92\x1b\xe4\x95\x3a\ +\xf9\xa3\x6a\x8b\x6d\xe4\x9d\xaa\xb9\xf1\x47\xc3\x81\x9d\x6c\xd8\ +\xe6\x9b\x3c\x4c\x0f\xbe\xa7\xc5\x70\x31\xfa\xc4\xbd\x76\x33\xc5\ +\x7e\x6f\xe4\xca\x02\xed\xb5\x9b\x5e\x3b\xfa\xd5\x37\x10\x8f\xe2\ +\x58\x93\x6b\x74\x23\x96\x7c\xc1\x92\xd2\xab\x74\x8b\x6f\x2a\x47\ +\x22\x5d\x2b\xc4\x54\xce\x7d\xc6\x31\xea\x27\x58\x79\x8b\xcf\x5e\ +\x17\x4f\x3e\x35\x87\x9f\xfe\xf9\xa3\xf8\xe8\xc7\x0e\xa3\x1b\x7b\ +\x88\x99\xaf\xa1\x4e\x29\x60\x9e\xb9\x70\x92\x71\x0d\xbd\xe5\x05\ +\x29\xa7\x91\x16\xca\x67\xd2\xae\xf2\xa5\x14\xc9\x8b\xb3\x96\x59\ +\x9e\xcd\xda\xfc\x4a\x36\x34\xbd\xec\xcc\xa3\x31\xc1\xf0\x19\x1f\ +\xf8\xb3\x89\x34\x39\x4b\x51\x24\xce\x23\xdf\xcc\x5f\xe6\x29\xbd\ +\xf1\x5b\x75\x93\x93\x76\x04\x27\xfd\x27\x7d\x8f\xdf\x34\xf3\x7c\ +\xe4\xa1\x5e\x39\x82\xe3\x87\x1e\xc1\x5c\x75\x89\xfd\x87\xa3\x58\ +\x5e\x3c\x86\xa5\xb9\xe3\xc4\xa0\xba\x41\x78\x25\x6f\x0a\x8f\x98\ +\xae\x74\x38\x9a\x9d\xee\x76\x90\xcd\x94\x90\x02\x0a\x28\xe0\xcf\ +\x00\x14\x5f\x63\x01\x05\xdc\x3b\xf0\xfe\x2b\x42\xa6\x2f\xa0\x80\ +\x02\x0a\x28\xe0\x83\x80\x3f\x89\xe4\xa2\x30\x7c\xd4\xf1\x99\x42\ +\xa6\xbf\x13\xba\x3b\x78\xbb\xa3\x3f\x07\x07\x3e\xf2\x5f\xae\x3f\ +\x80\x03\xb3\x68\x30\x9d\x3a\x6b\xce\xab\x81\x94\xbc\x9b\x74\x7b\ +\x77\xc9\xf4\x33\x96\xb9\x1f\x83\x59\x8f\x53\x20\x6e\xf5\xfe\xd4\ +\x77\x54\x87\xdd\xe2\x72\x1e\x27\xbd\x7d\x74\x6e\x5c\xc0\xde\xf9\ +\x97\x30\x38\xff\x3c\x46\xaf\x7d\x1b\xd1\xb5\x8b\x48\x07\x1d\x34\ +\xaa\x35\x34\x97\x0e\xa1\xb6\xb8\x84\xb2\x2e\x6d\xb0\xc1\x13\x0d\ +\x0a\x68\x3e\x87\x38\x88\x6b\xcc\x5e\xa3\x54\xc5\xaf\x0e\xb8\x76\ +\x48\x59\x5c\xc2\xad\xc7\xf4\xae\x73\x2b\xb0\x0e\xbb\x19\xd8\x61\ +\x64\x38\xd7\x37\xa5\x85\xfe\xba\xbf\x82\x7e\x7d\x22\xd2\xdd\x1d\ +\xa5\xb4\x87\x49\xa2\x1d\x45\x3a\x22\x48\x9d\xcc\x01\xcd\x11\x02\ +\x76\xa6\x1f\xbd\xbf\x81\xcf\x3d\xbc\x80\x8f\x3d\x3e\x87\x43\xde\ +\x32\x92\xfd\x09\x76\x6f\xb4\xb0\x76\xb1\x87\xde\x20\x42\xc8\x0e\ +\x69\xa4\x63\x82\x4a\x15\x04\x4c\xb7\xa6\xfb\xb4\x4a\xd9\x7a\xf6\ +\x36\x90\x52\x72\x9d\x79\x1b\xf0\xd0\x40\x86\x68\x75\x54\x1a\x4d\ +\xa6\x27\x35\x59\xda\x34\x10\x92\x68\xd2\x90\xe9\xd1\xa0\x55\xac\ +\x23\x12\xa9\x6a\xb5\xed\x20\x4a\xd0\xe9\x8f\xb1\xdb\x07\xf6\x46\ +\x6e\xe0\x29\x28\x69\x40\x2a\x45\xc2\xce\xbe\x76\x31\xa5\x63\xcf\ +\xae\xa1\x1a\x57\x3c\xcc\x91\x01\x0f\xfd\x70\x13\x0f\xdc\xdf\x46\ +\x12\x0f\xb1\xbd\xda\xc4\x3e\xf1\x04\x8d\x32\x9a\x4d\x75\xc2\xe9\ +\x2f\x1a\x33\xbb\x34\xb2\xa3\x55\xb3\x40\xa2\x81\x10\x63\x93\x9b\ +\xd8\xd1\xc0\x95\x86\x7c\x48\x90\xa3\x5d\x69\x51\xc6\xc8\x4d\x1e\ +\xa9\x6a\xe0\x43\x77\xbb\xcd\x55\x85\x87\xf9\x96\xa5\x49\xa0\xfb\ +\x28\xb4\xb3\x4d\xf9\xa5\x49\x8e\x51\xac\x1d\x82\xea\xf0\x4f\x30\ +\xb2\xc1\x24\x87\xd3\xe1\xb3\x20\xc6\x2f\x33\x0f\xc6\x38\xf1\x91\ +\x39\x54\xc2\x2a\x06\xc3\x2e\x6e\x5e\xea\x4f\x77\xc9\x55\x34\x91\ +\x49\x70\x3b\xe8\xf8\xa3\xbd\x54\xfb\x33\x5f\x65\xd6\x51\x8f\x9a\ +\x3c\xd4\xc0\x59\xbe\xdb\xc0\xca\x84\xd1\xad\xd0\xf2\xa7\xc1\x04\ +\xf2\x5f\x66\x2d\xd1\x66\x19\x98\xec\x06\x28\xb7\x34\xf0\xe7\x11\ +\x17\xb9\xa3\x40\x4c\xa3\x82\xba\x97\x2b\x5f\x65\x0d\x60\xc4\x40\ +\x67\x6f\x84\x9b\xd7\x23\x6c\x6e\x45\x88\xd2\xa1\x8a\xbf\xa5\x49\ +\xf7\xa1\x59\x52\xa4\xb7\x47\x03\x21\x2a\x0b\x6e\x90\x47\xc7\x3b\ +\xea\x7e\x8f\xfc\xee\x34\x23\xc9\x5e\xc4\x6f\x99\x40\x03\x1f\x5d\ +\x6f\xd3\xdb\x2e\xe1\xc2\x1b\x43\xf4\xb7\x8f\xe1\x7f\xff\x0b\x1f\ +\xc3\x7f\xf1\xd7\x9f\xc0\x03\x0f\x9d\x40\xef\xf2\x08\xbb\xeb\xfb\ +\x88\xf8\x7d\x8d\xfb\x3a\xcb\x88\x65\x58\xf8\xc6\xcc\x47\x65\x14\ +\x13\xa6\x2f\x49\xe5\x5a\x83\x30\xe2\x9d\x1e\x5b\x1d\x4d\x9a\x48\ +\x4d\xe6\x87\x40\x55\x04\xd8\xb7\x44\xff\xae\x7c\xea\x9b\x72\xf6\ +\xfa\xde\xa4\x37\xf3\x8c\xbd\xd3\x3b\x6d\xc6\x1e\x03\xa1\x39\x70\ +\x77\x7e\x14\xd3\x34\x5c\x66\x27\x90\x9d\x76\xd2\x69\xf0\xcc\x0d\ +\xa8\x39\x5c\x79\x5e\x8a\xdf\xaa\x0b\xe4\x60\xbb\xf6\x98\x96\x71\ +\xb4\x87\xfe\xca\x4d\x74\x57\xae\x31\x13\xb6\x11\xed\x76\x55\xa0\ +\xe1\xd7\x1b\x2c\x93\x9e\xad\xcc\x17\xcf\x85\x2f\xaf\x87\x5c\xbc\ +\xb9\x3e\x83\xdb\x8c\x7f\xee\xe1\xdd\xd2\xf3\x4e\xee\x3f\x68\xbc\ +\x28\xa0\x80\x77\x02\x55\x52\x79\xdd\x30\x5b\x35\x98\xea\x0c\xb9\ +\x33\x6b\x91\xec\x9d\xff\x72\x70\xfa\xdc\x7c\xa0\x3f\xf0\x71\xab\ +\xeb\xac\x9a\x81\x55\xb6\x33\x76\x53\xba\x64\x4f\x90\x3e\xd3\xe6\ +\x60\xbe\xad\x8d\xa0\x4a\xff\x6a\x67\xbc\x72\x40\xaf\x9a\x10\x9b\ +\x60\x67\x7f\x1d\xd7\x6e\xbe\x84\x73\xeb\x5f\xc7\xb9\xeb\x5f\xc7\ +\xb3\x6f\xfd\x6b\x5c\xd8\xf9\x63\xec\x77\xde\x84\xdf\xec\xe3\xe8\ +\xd1\x79\x1c\x3b\xb6\x8c\xe5\x85\x65\x06\x67\x1a\x26\x94\x1d\xd8\ +\x10\x68\x72\x22\x61\xfb\xe4\xee\xdd\xd2\x1e\x6b\xd6\xb9\x6a\xff\ +\xd8\x16\x4a\x3e\xb1\x78\xd8\xa6\xea\xa8\xc5\xc1\x70\x48\x39\xc8\ +\x43\x6f\xbf\x8c\x2a\x65\xb7\x93\xf7\xfb\xb8\xff\x41\x0f\xa7\x4f\ +\x57\x70\x6c\x39\x44\x7b\x8e\xf8\x46\x25\xac\xdd\x18\x62\xe3\x66\ +\xcf\x64\x1a\xdb\x39\x34\x8a\x28\x83\xd4\x10\x56\xab\x48\x29\x83\ +\xb8\x09\x86\xd4\x16\x24\x49\xeb\x79\x01\x6a\x94\x29\xb4\x20\x87\ +\xa2\x18\x3c\xc5\xc9\x74\xba\xa3\x05\x03\x84\x3a\x43\x91\xed\x75\ +\x29\xf6\x31\xec\x7b\xd8\xd9\x9a\x60\x7b\x33\xc0\xfe\x8e\x47\x9a\ +\xc4\x2e\xed\x56\xd2\xee\x6c\xcf\x76\xc8\x95\x7d\x35\x69\xa4\x39\ +\x55\x7b\xaf\x05\x3f\x4c\x28\xf1\xb9\x9c\x53\x9a\xd8\x56\x68\x22\ +\xcc\xfc\xb0\x35\xf2\x13\x1c\x9a\x2f\xe1\xfe\x07\x42\xec\xf4\x07\ +\xb8\x71\x71\x82\x2b\x57\x46\x18\x46\x31\x8e\x1d\xa1\xfc\xd4\xaa\ +\xd8\xae\x30\x4d\x9c\x69\x32\x43\xc7\x45\x52\xc4\xc2\x88\x32\x8b\ +\x5b\x14\x43\xd5\x26\xd5\x88\xcb\xe6\x5f\xc8\x4b\xe6\x21\x93\xc1\ +\x76\x89\x6a\x02\xc4\x34\x24\x14\xd6\x24\x33\x46\x51\x99\x3c\x77\ +\x32\x98\xd6\x92\x69\x07\x98\x76\xb5\xf5\xf7\x35\x49\x97\xd1\x2b\ +\x5c\x0c\x6f\xed\x33\xcd\x3a\xb0\x41\x47\x19\xc6\xd6\xde\xcb\x5e\ +\xd6\x8a\x9f\x08\x69\xa6\x89\x7c\x55\xbe\xf9\xe8\x6c\x75\x19\xdf\ +\x10\xb5\x4a\xdd\xe2\x90\x27\x93\xb3\x48\x93\xf1\xc0\xb1\xc1\x40\ +\x5a\x15\x37\x89\x46\x3a\x81\xa0\x5a\x77\xa7\x2c\xc8\x41\xed\xb0\ +\x16\x7a\xd9\x02\x18\x9b\x90\x72\xf1\x9a\xa3\xd0\xa9\x8c\x50\xa6\ +\x4e\x87\x34\xd0\x61\xda\xee\x0a\x1f\xf3\xc2\x2d\x18\x93\xd9\xc5\ +\xab\x76\xde\x1c\x85\x5e\xb8\x2d\x62\xf7\xb8\x49\x4e\xd2\xcf\xbc\ +\x1c\x8c\x46\xd8\x5e\x8f\xb0\x72\x4d\x32\xf0\xd0\xe4\x28\xc5\x9b\ +\xb0\xec\x68\x21\x58\x1a\x33\x3d\x64\xa4\x8e\xb7\xd6\xce\x40\xe9\ +\xb5\xb0\x4d\xc7\x78\x3b\x79\xcb\xc9\x02\x0a\x24\xba\x33\xd1\xca\ +\x26\xc9\xa2\xee\x08\xd7\xdf\xea\x62\x87\xea\xa7\xbf\x78\x08\xbf\ +\xfc\xef\x3f\x84\x07\x28\x77\xf6\x7b\x2c\xfb\x11\xd3\xe0\x6b\x22\ +\x54\xb8\x94\x53\x4a\x97\xe8\x73\xb2\x94\x20\x3f\xc5\x41\x6e\xb6\ +\xd3\xcf\x19\x08\x99\x3b\x9f\x8c\x53\xf6\x73\xe1\x9d\x9b\x01\xc3\ +\x3b\x3f\x59\x40\xa5\x5f\x36\xa6\xba\x32\x2f\x6d\xee\xae\xef\x40\ +\x13\x69\x96\x0f\x34\x4b\xa6\x92\xac\xa7\xc9\xd4\xa0\x3a\x41\xad\ +\x55\x42\xa3\xed\xa3\x54\xe9\x60\x73\xff\x02\xae\xad\xbf\x8c\xeb\ +\xab\xaf\x60\x67\x77\x03\x9d\xee\x3a\xbf\xd5\x1d\x04\x2c\xb3\xd5\ +\xea\x1c\xf1\x8a\xbf\x44\x28\xb2\x2c\x4a\xc5\xe2\xa8\x31\xcb\x9c\ +\x26\x53\x73\x7d\x01\x05\x14\xf0\x67\x01\x8a\x2f\xb2\x80\x02\xee\ +\x1d\x50\x0e\xcd\x5a\xf5\x02\x0a\x28\xe0\x43\x07\xc5\xc7\xff\x01\ +\xc0\x9d\x98\x7a\x17\xc9\x45\xd6\x53\xef\x77\x09\x67\x7e\xe8\x96\ +\xf5\x8f\x9c\xb7\x3b\xf8\x9d\xc5\x95\x79\x7d\x8f\xa0\x50\x79\x88\ +\x59\xc4\x33\x76\x39\x72\xeb\x3c\xb1\x5b\x47\x25\x1f\xc3\xb9\x3d\ +\xf4\xed\x7a\xa3\x5d\x2a\x5f\x0a\x63\xf6\xd4\xcf\xb6\x3c\xd6\x0d\ +\x53\xa7\x9f\xae\xda\x85\x22\xa7\x38\x1e\x20\xda\xdc\xc0\xee\xb5\ +\x2b\xf0\x37\x57\xd0\x5f\xb9\x4c\xbb\x1e\x9a\xad\x10\x73\xad\x36\ +\xc2\x7a\x13\xe5\xb0\x6a\x97\x79\x6b\x00\x47\x3d\x7d\x76\xef\xb2\ +\x81\x7e\x75\x4e\xed\x8d\xf1\x24\x85\x36\xaa\x79\xea\x10\xdb\x80\ +\x01\xed\x15\x17\xfd\xcb\x87\x06\x17\x34\x38\xa0\x8e\xa0\xeb\x10\ +\xe6\x9d\x50\xd9\x89\x66\xfa\xc9\x3a\x8a\x36\x29\x40\xcb\xb2\x08\ +\xd4\x80\x81\x46\x0d\x08\x16\x93\xc2\x04\x15\xa0\xa2\xa3\x1f\x03\ +\x37\xf4\xcf\xf8\x74\x51\x78\xc9\x0f\x30\x29\xef\xe3\xf5\xeb\xfb\ +\xf8\x9d\x57\x56\xf1\x8d\x6f\xbe\x85\x17\x36\x3a\xd8\x88\xaf\xa1\ +\xb2\x30\x44\xeb\x68\x09\xcb\xec\xcc\x56\x6b\x5a\xc9\x1b\x22\x61\ +\x24\xea\xd0\x8b\x3c\x8b\x5b\x03\x09\xc2\x4f\xa3\x26\xf2\xec\x4e\ +\x08\x5b\x21\x9d\xed\xd8\x61\x1a\x8d\xf6\x8c\xc1\xba\xaf\xc2\x8e\ +\x95\x51\x00\xa1\x20\xb1\x9a\x00\x93\x1f\xdd\x01\x52\x09\x75\x91\ +\x7d\x05\x47\x9a\xc0\xf1\xf9\x0a\xe6\xe7\x2a\x08\xe1\xa3\xde\x6c\ +\xa2\x56\xad\x20\x1a\x97\xd0\x8b\x62\x94\x44\x53\x8b\x79\x31\xe9\ +\xe1\xe6\xcd\x21\x9e\x3d\x3f\x44\xa7\xe7\x91\xce\xd8\x8e\xf3\xf1\ +\xcb\x29\x02\xfe\xe2\x74\x84\xa8\xef\xb9\xfb\x38\xfa\x1a\x38\x48\ +\x6c\xf0\x47\x83\x6c\xb6\x32\x57\x94\x93\x6e\x65\x81\x1d\xf7\x38\ +\x1d\x10\xd0\xc4\x53\x15\x4b\xa4\xe5\xf8\x62\x36\xc9\x35\x71\x03\ +\x49\x72\xd3\xfd\x27\x9a\x0c\xb5\x3b\xc1\x18\xb6\x3f\x18\xb9\xdd\ +\x69\x9a\x4c\x12\x56\xa2\x51\xde\x4d\x27\xd5\x94\xbf\xf4\xa7\x3d\ +\x6a\x3a\x0e\xe9\xe9\x9f\xba\x1f\xc7\xcf\x2c\x61\x73\x7d\x13\xbf\ +\xfe\xdf\x9d\xc7\x78\xa4\x7c\x4a\xd1\x9e\xaf\x1b\x1f\x74\xc7\x97\ +\x65\xa1\xe5\xb7\xf2\x5d\x8f\x06\x63\x4a\xb6\x61\xa9\xd9\xf6\xd1\ +\x68\xb8\x7b\xd4\xe4\x21\x63\xa7\x18\x6a\x2f\x3b\x7a\x30\x67\x32\ +\x61\x3c\x8e\x30\xb8\x1e\xc2\x5b\x4c\x18\x5e\xf6\x2a\x91\xf4\x49\ +\x7c\x79\xbe\x68\x12\x56\x03\x34\x83\x5e\x09\xdb\x5b\x43\xec\xec\ +\x24\x76\xec\x92\x25\x86\x8f\x4d\x44\x8a\x3d\x4a\x97\xe9\xf9\xb0\ +\x34\xe5\xc7\x44\xd9\xd1\x43\x89\x3b\x36\x4a\x93\x69\x96\x60\xf2\ +\xcb\x8e\x78\x54\xa1\x94\x5f\xda\xe9\xce\x90\xf2\x68\x8c\xf5\x95\ +\x11\xce\x5d\x9a\xe0\x91\xb9\x33\xf8\xcf\x7f\xee\x51\xfc\xd2\x4f\ +\xdc\x8f\x71\x14\x60\xf3\xca\x90\x7c\xe4\x37\x46\x9e\x6a\x20\x52\ +\x65\x5b\xe1\x48\x1e\x71\x31\x6d\xc6\x52\x11\x42\x8c\x33\x69\x34\ +\x3e\x64\x8f\xf4\x96\xb7\xe6\x9c\xfb\x71\xf6\x53\x6e\x51\xaf\x81\ +\x34\x81\xfc\xba\xb0\x59\xd9\x94\x3a\xe3\xcf\xe1\x34\x43\xa6\x77\ +\x83\x6f\xce\x59\x99\x23\xbb\x6c\xe0\x4c\xdf\x95\xf2\x5d\xdf\x00\ +\x7f\x65\xaa\xfa\xd6\x54\x06\xcc\x1f\x1f\xed\x4e\x53\x5a\x94\x0e\ +\x0d\xc6\x19\x6a\xe3\x95\x26\x90\xa5\x9f\xd8\x31\xa3\x93\xe1\x10\ +\xfd\x1e\xf3\xa0\xd6\xc0\xdc\xe9\x93\xf0\x0e\x9f\x46\xfb\xf8\x29\ +\xa0\x51\xb3\x32\xab\x11\x4c\xe1\x52\xb4\x46\xa0\x54\x63\x0d\x5f\ +\xb2\x74\x6c\xfa\xc0\x21\x8f\x66\x1a\xfd\x07\x01\xef\x86\x5c\xee\ +\x05\x14\x50\xc0\xdd\x41\xf5\x66\xfe\x9d\xe8\x5b\x7a\x5f\xdf\xcc\ +\x3b\x79\xbe\x1b\xb2\x19\xfb\xac\xce\xbe\xc5\xdb\x2d\xc1\x72\x43\ +\x62\x5e\xad\xcd\x28\x69\x31\x0b\xb0\x37\xd8\x65\x7b\x71\x1e\x2b\ +\xc3\xf3\xd8\xe9\x5f\xc0\xea\xda\x6b\x94\x1b\x86\xa8\x34\x7d\xd4\ +\x34\x81\xa5\x2d\x47\x6c\x9f\xd5\x2e\x5b\xbb\xa4\x36\xcb\x2a\x52\ +\xe1\x73\xb2\x95\xaa\x43\xab\xbb\x19\xcf\x81\x6a\xae\x72\xc8\xfc\ +\xd2\x56\xe1\x58\x7f\xeb\xe8\xec\x28\x8e\xad\x8d\xb7\xe5\x39\x5a\ +\x60\xa3\xa3\x99\xe9\x7f\xd0\x8b\xf0\xd6\x5b\x3d\x9c\x3b\xbf\x8b\ +\x97\x5e\x8d\x71\xf5\x2a\xdb\xcb\x4e\x07\x8d\x7a\x8a\xa3\xc7\xe7\ +\x51\xab\x07\x68\x2f\x34\x54\xa5\xdb\x11\xd4\x42\x2f\x59\x40\xaa\ +\xe2\x76\x92\x24\xf5\x54\xd4\xa6\xdb\xae\x63\xba\x69\x31\x8b\xda\ +\x10\x4a\x1a\xe6\xae\x89\xba\xc9\x98\x9c\xd0\x0e\xaa\xca\x98\x34\ +\x8d\xb0\xb4\x1c\x62\x89\x72\x59\x7b\xd1\x43\x7b\x4e\x72\x19\xfd\ +\x30\x7d\xba\x7f\x6a\x92\xa8\x7d\x72\x78\xf2\x49\x22\xad\x44\xd2\ +\x64\x64\x10\xb2\x1d\x0a\x4b\xd0\x66\xb5\xb2\xbf\x87\x6e\x77\x01\ +\xff\xfc\x5f\xac\xe0\xe5\xef\xa6\xd8\xdd\x8d\xf0\x89\xa7\x4b\xf8\ +\xf4\x8f\x1e\xc7\xd9\xb3\xf3\xe8\xec\xb3\xfd\x1d\xea\x38\x42\x0f\ +\x83\x7e\x8c\xbd\x8d\x11\x06\x5d\xed\x18\x23\xb7\x74\x21\x1c\x79\ +\xad\x49\xba\x7c\x52\xc4\x76\xd5\x93\x64\x5a\x33\xcd\x6a\x98\x18\ +\x87\x92\x44\x06\x68\xd3\x57\x8d\xf2\xe3\xe1\xe3\xc0\xa1\x45\xe5\ +\x13\xe5\x8b\xcd\x08\x69\xaa\xbb\xdd\x32\x99\x82\x0f\xa5\x03\xe3\ +\xfd\x28\x1a\x53\x5e\x4b\xd8\xfe\xb9\xc9\x1e\x4b\x9b\xed\xd2\x92\ +\x2a\x8f\xe4\x11\x2a\x18\x25\x23\x34\x97\xca\xb8\xef\xc1\xe3\xf8\ +\x83\xdf\x7e\x13\xad\xf9\xaa\x2d\x74\x12\x3e\xd1\x64\xed\xb2\x70\ +\x53\xaf\x47\x76\x2a\x52\x76\xcf\x1c\xe5\xa6\x36\xf9\xd8\x60\x3e\ +\x69\x87\x1a\x9b\x68\x93\x3d\x4b\x9a\xe8\x92\x77\x65\x9c\x82\x0b\ +\x17\x55\xd1\xac\x53\x21\x7a\x7b\xc4\xaf\x5d\xf2\xc2\x47\x6b\x21\ +\xb5\x93\x18\x2c\x0f\x65\x74\x0e\x2e\x7e\xf2\x26\xcb\x5b\xf1\x49\ +\xf6\x3a\x61\x80\xa2\x00\xd3\x92\xa2\xd3\x19\x61\x7d\x6d\x88\x7d\ +\xc9\x59\x69\x44\xff\x72\x70\x32\x81\xe2\x55\x79\xb1\x49\x4c\xb2\ +\xd3\x1e\xca\x54\xea\x4f\xd8\xa2\x22\x3e\x22\xc3\xd6\xa8\x91\x6f\ +\x2a\x31\x02\xf1\x4f\xba\xb8\x97\xe0\xf2\xc5\x1d\xe6\x73\x05\x3f\ +\xfa\x17\x97\xf0\xd3\x3f\xf9\x20\x82\x05\x60\xb0\x4b\x19\xd0\x73\ +\xf4\x5b\x5f\x83\x11\x51\x6b\xf1\xdd\x09\x9c\xb5\x88\x91\x2f\x97\ +\xaf\x26\x03\xcb\x98\x81\xfc\x98\xd1\xec\xe5\x87\xaa\xd2\x20\x3b\ +\x39\xe4\xfe\x69\x21\xbe\xb8\x97\x54\xc5\x9d\x3b\x48\x71\xb4\x08\ +\x24\xbd\x99\xa5\x7d\x17\xf4\x45\xb7\x98\x69\x36\x77\xca\x3b\xa1\ +\x32\x8c\x4e\xa9\xee\xda\xeb\x51\x66\xed\x92\x07\x49\x0b\xc7\x0e\ +\x3f\x48\x99\xfd\x34\xe6\x1b\x27\x71\x64\xe9\x04\x16\xe6\x28\x2b\ +\x59\x46\x6a\xa1\x9e\xa1\xe2\x63\x91\x19\xd7\x5c\xfc\x77\x82\xbb\ +\xd9\x17\x50\x40\x01\x1f\x34\x14\x5f\x5f\x01\x05\xdc\x3b\x28\x76\ +\xa8\x15\x50\x40\x01\x05\x7c\xd0\x70\x17\xc9\xe5\x16\xeb\x3b\xf9\ +\x99\xb1\xcb\xfa\x27\xae\xb3\xe2\xac\xee\x08\x99\xb7\x77\xf4\xf3\ +\x76\x78\x07\xdf\x77\x42\x48\xbd\x19\xa5\xd2\xcd\xfa\x72\x19\x6d\ +\x39\xcc\x68\x0f\xfc\x65\x06\xb9\x4d\x1f\x59\xaa\x93\xe7\xa9\x53\ +\x57\xc6\x84\x1d\xf8\x8d\x0b\x6f\x60\xe3\x95\x67\xb0\xf7\xda\xb3\ +\xd8\x7f\xf3\x75\x78\x49\x1f\xed\xa5\x16\x16\x8f\x2c\xa3\xdc\x5c\ +\x82\x5f\x6b\xe8\xaa\x0c\x5b\xe5\xab\x0e\x9c\x8e\x3b\xf4\xd8\xa1\ +\x53\x07\x51\x1d\x65\x81\xba\x9a\xa2\x4b\x83\x09\x8a\x78\x5c\xa6\ +\x99\x3d\x66\x37\xb0\x23\xb3\xdc\x44\x3b\x0d\x7c\x52\x3e\x1a\xa8\ +\x50\xe7\x9c\x5d\x69\xb3\xd3\xa3\xee\xa7\xf0\xc8\x2a\x57\x6d\xc5\ +\xaf\x69\x74\x31\xfe\x98\x1d\x6a\x75\xf6\x19\xd8\x63\x4f\x7b\x1c\ +\x6b\xe9\x2b\x7b\xa1\x23\x1b\xec\xd0\x71\x90\x63\xdd\x7b\x11\xf9\ +\x38\xbc\x50\xc7\x0f\x3d\x56\xc5\x13\x8f\x1e\xc6\x62\x6b\x1e\x71\ +\x37\xc0\xf6\x7a\x1d\xeb\x57\xbb\xe8\x0d\x23\x94\x75\x07\x09\x19\ +\x52\x51\x07\x97\x9d\x59\x1d\x69\x68\x13\x4c\xea\xe9\x2b\x7e\x23\ +\xd8\x75\xf0\x6d\x82\x45\x03\x2f\x8c\xdf\x06\x15\x44\xaf\x12\xc6\ +\xb0\xd6\xa9\x25\x3f\x44\xa6\xed\x60\x62\x20\xad\x44\xd6\xee\x35\ +\x1d\x5b\xa3\x23\x75\x06\xa3\x18\xbb\x83\x04\xdb\xfd\x04\x9b\xfb\ +\x31\x76\x86\x29\xa2\xd2\x10\xa8\x96\x51\x69\x94\xc8\xe3\x32\x86\ +\x64\x72\xa7\xcb\x4e\x72\x54\xc7\xf2\xe1\x10\x9f\x78\x6c\x1e\xed\ +\x9a\x87\xf1\xa8\x8c\xb4\x17\xa2\x67\x17\xeb\xef\xa3\x4f\x8f\x3a\ +\x5e\x53\x0b\x91\x6d\x10\x82\x74\xd9\x11\x84\xa4\x48\xab\xa9\xdd\ +\xae\x33\x82\x91\xaf\x17\x69\xcf\xc6\x04\x34\x20\xd3\x22\xce\x9a\ +\xed\x50\x23\xaf\xe9\x57\xe9\x54\xbe\x19\x97\xb3\x30\x9a\x48\x12\ +\xdd\x3a\xe6\x50\xab\xb3\x1d\x1a\xe7\x4f\x9e\x6c\x20\x4d\x08\xa9\ +\xd7\xca\xea\xb1\x9f\xda\x3d\x7a\x47\x4f\xcd\x23\x08\x43\xf4\x7b\ +\x23\x6c\x5d\xeb\xd2\x47\x68\x83\x63\x9a\x8c\x74\xc3\x22\xa2\x41\ +\xfc\x93\xea\xf4\x1a\x24\x53\x16\xe8\xfe\xb4\x50\x03\x64\xf2\xa6\ +\x78\x44\x9f\xfc\x28\x10\x35\xda\xc9\x24\x3a\xa6\x0f\x0b\x95\x4d\ +\xef\x04\x1e\xec\x4a\x3d\x21\x11\x2e\x3a\x6a\x80\x87\x85\x1b\xc3\ +\xc1\x18\xdb\x5b\x11\xd6\x56\x47\xd8\xd9\x1d\x91\xc7\x89\x0d\x12\ +\x29\xd3\x6c\xe0\x8b\xaa\x1b\xe4\xa1\x99\x79\x6c\xc7\x33\x91\x9f\ +\xca\x47\x9b\x4c\x23\x5f\xed\x18\x22\xda\x89\x41\xe2\x51\x36\x3c\ +\xc5\x58\x8c\x08\x84\xe5\x00\xde\x20\xc5\x8d\xcb\x29\xde\xba\x32\ +\xc1\x67\x8f\xdc\x87\xff\xcb\xbf\x7f\x1f\x7e\xf6\x47\x4f\xa3\xbb\ +\x12\xe3\xe6\xf9\x4d\x74\xf7\xf7\x90\x0e\x74\xe7\x8d\x46\x8b\x84\ +\x88\xe5\xc8\xca\x13\x71\xe8\x11\x3f\x69\xa7\xef\x4c\x78\xed\xfb\ +\xa5\x9d\xdc\xe4\x47\xdf\x5c\x16\x8c\xf4\x1f\x84\xb3\x09\x68\xf3\ +\xaf\x50\x59\x38\xda\x18\x4e\xfe\xc5\x63\xe3\xba\xf4\x54\xec\xe1\ +\x2b\x4f\x81\xb8\x25\xfe\xdb\x24\x1c\xc3\xc8\xaf\xe5\x87\x3c\x98\ +\x2b\xcd\x36\x80\xe6\x42\xd8\x60\x63\xd9\x7d\xfd\x42\x6a\x93\xa4\ +\x72\xe3\x63\xbb\xd1\x58\xaf\xb8\x49\x39\xe1\x50\x0c\xf2\x26\x3c\ +\x2e\x36\x3f\xac\xc1\x6b\x34\x98\xcf\x3e\x3f\xdd\x18\x83\xad\x75\ +\xf4\x6e\x5c\xe3\xa7\x3c\xe2\xf7\x39\xe4\xb7\xd0\x84\xa7\x23\x5d\ +\xe5\x9f\x69\x75\xd1\xea\x95\xc3\xac\x9e\xf0\x0e\x4e\xf7\x0a\x6e\ +\x8f\xe2\x03\x8a\xe6\xee\xf0\x3d\x8f\xb0\x80\x02\xfe\x9c\x80\xd5\ +\x7f\x84\xdb\x3f\xd2\x3b\x42\xfe\xf5\xe6\x4f\x0e\xd2\x0b\xcf\xac\ +\x5d\x0e\xef\xc1\x4e\xf5\x93\x91\x31\x63\xef\x04\x2d\xd7\xc6\x4c\ +\x52\xd6\x97\xaa\x27\x03\xca\x18\x63\x6c\x6e\x5e\xc1\xb9\xab\xdf\ +\xc4\x1b\xab\xbf\x8b\x57\xaf\xfc\x26\x56\xf7\x5f\xa0\x1c\xb0\x85\ +\x39\xdd\xcb\xb5\xbc\xc0\xfa\xb3\x02\x5f\x8b\x84\x4c\xee\xa0\xcc\ +\x63\x0d\x96\xab\x8b\x05\x59\xf5\x6a\xf1\x5a\xdd\x4b\xb0\x76\x92\ +\x7a\x17\xab\x5e\xf4\x64\x06\xc5\xef\xfc\x69\x41\x4a\x1c\x69\x92\ +\xc3\x43\xa0\x7a\x5a\xe3\xf7\x94\xd3\x34\xc1\x36\xe8\x53\x9c\xf2\ +\x02\x9c\x39\x53\xc1\x93\x1f\x6f\xe1\xec\xa9\x3a\x0e\xb5\x81\x46\ +\xa5\x84\xbd\xdd\x31\x2e\xbf\xb1\x8a\xce\xda\x0e\xc2\x80\x61\x88\ +\xaf\x52\xd5\xc2\x97\xc0\x4d\x8e\x59\xfd\xce\xca\x9a\xf1\x89\x1a\ +\xd5\xdb\xd0\xa2\x11\xf1\x80\x8f\x14\xdb\xf1\x6d\x6d\xab\xda\x66\ +\x0f\x5e\xa0\xc5\x57\x34\x47\x1e\x92\x51\x88\xfd\x4e\x19\xbb\x3b\ +\x6a\xab\x63\x8c\x86\x4a\x07\x13\x1f\x32\xac\x64\x07\xd2\x6d\x7c\ +\x4c\xdc\xae\x3c\x4b\x17\xf9\x58\x0e\x32\x83\xb6\xf9\x93\x86\x58\ +\x3b\xd0\x98\x96\x4f\x7c\x74\x0e\xe5\x70\x0f\xc3\xed\x21\x9e\x7f\ +\x9e\x6d\xff\xcd\x2e\x9a\x15\x1f\xad\x85\x09\xea\xf5\x0a\x65\x1a\ +\xf1\x82\xb2\x46\xdd\xc9\x7a\xfd\x1e\x69\x91\x7c\x27\xc2\x33\x5a\ +\x2d\x2d\xc4\x39\xd1\x16\x23\xa5\x41\x2d\xa3\xe8\x55\x74\x74\xb6\ +\x7b\xbe\xb4\x83\x8e\x12\x48\x50\x55\x98\xb2\xdd\x17\x36\x3d\xee\ +\x51\x94\x65\xe4\x29\x8c\xee\xcf\x92\x2c\x95\xcb\x1a\x92\x23\x5d\ +\xfe\x2a\xac\xfc\x78\xd0\x2e\xb9\x20\x4d\xf0\xa3\xbf\xf4\x04\x7e\ +\xec\x33\x9f\xc4\x95\x95\xf3\xd8\xbc\x91\xc0\x44\x75\xd2\xc2\xb7\ +\xf1\x57\xaa\x69\xa4\x64\x65\x4f\xb2\x8f\xda\xe6\x80\xf9\xa5\xdd\ +\xfa\x92\x11\x24\x23\x6b\xb7\x9f\xb5\xe7\x16\x80\x1e\x0d\x9c\xc9\ +\x16\xb6\xb1\x2c\xb8\x45\x43\x24\x84\xe0\x16\x86\x09\x97\xc3\xed\ +\x8e\xe6\xa6\x6a\x8f\x5a\x7d\xf7\xd3\x8e\x34\x99\x03\x9f\x3c\x9a\ +\xc4\x76\x2f\xdd\xda\x7a\x1f\x37\xae\x69\xd1\xd2\x08\x11\xcb\x6d\ +\xd9\xd2\x94\xa5\x8f\x8f\xf8\x61\x3b\xd2\x18\xaf\x8b\x53\xc7\x68\ +\x6b\xc7\x9a\x76\xa6\xb9\x23\xcc\xcd\x0f\xf9\x23\x5e\x9b\xc2\x80\ +\xe2\x59\x7f\x2b\xc5\xf5\x8b\xcc\xc7\xe5\x06\x7e\xe1\x6f\x9c\xc4\ +\x8f\x7f\xe5\x34\x4a\xb5\x09\x86\x7b\xda\xd1\x18\x33\x65\x4e\x26\ +\x52\xc9\xb1\xc9\x31\x02\x75\x0e\x8f\x0c\xce\xca\xdc\xe5\x62\x1f\ +\x8c\x22\x90\xc9\xdc\xf8\xca\xfc\xdc\x02\xb9\xdb\x8c\x62\x90\xf1\ +\x7d\x1a\x6c\xd6\x8d\x20\x67\x7b\x72\x83\x81\x93\x95\x44\x91\xac\ +\xf2\x9d\xa4\x9a\x7c\xd6\xe2\xaf\x31\x79\xa0\xef\x49\xa7\x58\xf8\ +\x8d\x14\xcd\xa5\x00\xd5\xf9\x01\x76\x47\xd7\x70\x75\xfd\x25\x3e\ +\xaf\x62\xaf\xb7\x8a\xad\xbd\x15\xca\xf9\x11\x5a\x8d\x79\x7e\xb3\ +\x15\xe2\x62\x39\x9e\x49\xa7\xf2\x67\x4a\x9c\x41\xae\xcf\xcd\x05\ +\x14\x50\xc0\xf7\x1a\x8a\xaf\xaf\x80\x02\xee\x1d\x14\x13\x6a\x05\ +\x14\x50\x40\x01\x1f\x04\xcc\xf6\x17\xfe\xb4\x92\x8b\xc2\xb3\x0f\ +\x32\x8b\xe6\x6e\x28\x65\xff\xfe\xa2\xcb\x90\xdf\x2d\xe4\xed\xd6\ +\xd4\x9b\x91\xaf\x69\xa8\x5c\x6f\x0e\xd4\xcb\x30\x0b\xb4\xb7\x6e\ +\x2f\x3d\x64\x5e\x2c\x80\x75\x38\xd9\x89\x8b\xa8\x0e\xba\x7b\xd8\ +\xb8\xf0\x26\xf6\xde\x7c\x09\xbd\x67\x9e\xc5\x68\x6b\x05\xcd\x86\ +\x8f\xa5\x23\x47\xd1\x58\x5a\x84\x5f\x6b\xb1\x8b\xaa\xd1\x13\x0f\ +\xe3\x78\x0c\x4f\x53\x17\xc2\xa1\x49\x22\x75\x96\xd9\xd1\xd5\x40\ +\x81\xd1\xa2\x97\x39\xb2\x37\xcc\x88\x6c\xc0\x87\x71\x98\xca\x0e\ +\xb9\xa6\x98\xd8\x4d\x76\x44\xc8\x7f\x59\x93\x52\xea\xbc\xeb\x48\ +\x20\xa9\x5a\x79\x3c\x61\xe7\xb0\x84\xd0\x87\x1d\x17\xa7\x8e\xba\ +\x56\x68\xfb\xbe\xdb\xfd\xe3\x33\xbc\x06\x68\xd8\x75\x24\x0d\x31\ +\x4a\x5a\xca\xea\x46\x22\x8c\x08\x75\x2a\x9d\x4a\x3f\xb4\x42\x45\ +\xc7\xd9\xb0\xb3\x3d\x5e\xc2\xe1\x53\x75\x7c\xe6\x7e\x0f\x8f\x3f\ +\xd8\x62\x47\xb5\x8e\xca\x7e\x80\xf5\x9d\x1a\x36\xb7\x07\xd8\xd7\ +\xce\xb0\x09\x71\xb1\x53\xaf\xa3\x89\x34\x78\x21\x9a\xed\xf8\x44\ +\xe2\x56\x92\xdc\xc4\x86\x1b\x74\xd1\xe4\x95\x4d\x66\x30\x21\x52\ +\x5c\xe7\x5f\xa4\xb8\xc1\x16\xb9\x98\xd5\xf4\x71\x3b\xbe\x34\x60\ +\x31\x8c\x52\xec\xf5\xb5\xea\x3b\xc6\x76\x2f\xc5\x76\x97\xf1\x0f\ +\x06\xd0\xe5\xfd\x64\x00\xc2\xb0\x84\x7a\x93\x7c\xf6\x53\x74\xf7\ +\xc7\x76\xb4\xd0\xe9\xd3\x4d\x3c\xfc\xd0\x02\x8e\x1e\x0d\x30\xd7\ +\xd4\x80\x06\x90\x46\x25\x74\x7b\x03\xec\xed\x0d\x69\xd6\x3a\x73\ +\x37\xb0\x25\xfa\x12\x9a\x35\xc9\x26\xbd\x0d\x14\x90\x06\x1b\x8c\ +\x62\x3a\xb4\xc3\x6f\xc2\xfc\x9c\xaf\x6b\xd7\x9c\x32\xc2\xad\x29\ +\xb7\xf4\x48\x93\x81\x06\x96\x74\x27\x8a\x8e\x94\x1c\x25\x6e\x82\ +\x50\x89\xb1\x4e\xbb\xe5\xb1\xc2\xea\xaf\xfc\x20\x1f\xb4\xcd\x2a\ +\xd1\x1d\x28\x23\x1c\x39\xdd\x62\x3e\xd6\xb0\x78\x34\xc4\x85\xe7\ +\x36\x90\x0e\x94\x0f\x31\xf9\xea\xc3\xd7\x39\x9b\x1a\x94\x61\x06\ +\xe5\x65\x53\xaa\xf0\x69\x27\xa0\x1f\x90\x07\xcc\x37\xad\x9a\x17\ +\x49\xf2\x20\x5f\x4e\x2f\x83\x59\x18\x2d\x46\xaf\x06\x0d\x35\x79\ +\x2a\xdc\x15\x4d\xad\x69\x20\x48\xe6\x18\xba\x68\x7f\x67\x3b\xc5\ +\xea\x8d\x18\x5b\x6b\x63\xf4\x46\x43\x2b\x2e\x1a\x98\xd2\x80\xd9\ +\x74\x60\x4b\xf9\x96\x6a\x80\x4c\x03\x5c\xcc\x5f\xa6\x4f\xbb\x30\ +\x55\xc6\x6d\xd0\x87\xaa\x0d\xb6\x29\xac\xe2\x66\x1c\x8a\x77\x5c\ +\xd2\x37\xc1\x72\x9a\x96\xd0\xdb\x8f\xf0\xda\xeb\x09\x36\x56\x9a\ +\xf8\x2b\x9f\x3c\x85\xff\xf3\x2f\xdc\x8f\x4f\x3d\x72\x18\xdb\xd7\ +\x23\xec\xad\xf7\x10\x8d\x46\xf0\xc6\xfe\xcc\x64\x9a\x8b\xdb\xe8\ +\xd0\x4f\xc8\x45\x8b\xa5\xcb\xa5\x4d\xf6\x7a\xeb\xb3\xd2\x10\x8c\ +\xec\xa7\x13\xcb\x7a\x54\xd8\x04\xb4\xb7\x49\xb5\xcc\x68\xbb\xc8\ +\xa4\xf2\x21\x4b\xa7\x61\xf5\x4d\xe8\xdb\x31\x7b\xb9\x93\x0f\x53\ +\x7d\xfe\x28\x81\xca\x22\xfd\xcc\x51\x3a\xb3\x70\x65\x89\x7c\x16\ +\x0d\xb1\xc5\x99\x05\x12\x3b\xa8\x2a\x5a\xd5\x0d\x56\x2f\xd0\x5a\ +\x24\x59\xbc\x44\x24\xbc\x32\x9a\x3d\xdd\xb5\x83\xb5\xac\x63\xc2\ +\xe6\x5a\xa8\xd5\x5b\xa8\xb3\x4c\x76\x37\xd7\xb0\x7f\xf1\x4d\xa0\ +\xdf\xc7\x28\x66\x39\xa8\xd5\x50\xae\xe8\x48\xb4\x92\xe5\x83\xd5\ +\x25\x16\xe1\x6d\x30\x6b\x75\x07\xe7\x3f\x0d\xdc\x8e\xee\x1e\xa3\ +\x7f\xef\xf0\x7d\x8b\xb8\x80\x02\xfe\x8c\x83\xbe\x0d\xfb\x3e\xb2\ +\x8f\xc4\x2a\x2e\xd3\xdc\xe1\x11\xe4\x15\x97\x20\xb7\x9f\xb5\x9b\ +\x85\x3b\xd8\x65\x5e\x55\x3f\xcf\x86\x94\x6a\x60\x15\x36\xdd\x54\ +\x0f\xb2\x52\xd4\xb1\x8e\x5a\x68\x10\xb1\xdd\xbb\xf0\xe6\x77\x71\ +\x61\xf3\x9b\x78\x75\xf5\x5f\xe1\xdc\xc5\xdf\xc5\xc8\xbf\x86\x36\ +\xdb\xf5\xf6\xc2\x1c\x02\xaf\xca\xfa\xd3\xb3\x76\xc8\xf0\x33\xbc\ +\x92\x62\x75\xb2\x50\x9a\xde\x9c\x14\x89\xbd\x5d\xdd\xea\x8c\xaa\ +\xa9\x1d\x31\xce\xc2\x7c\x30\x7e\x2d\x76\x51\x1b\x6d\xf5\xb5\xea\ +\x63\x56\xa4\x92\xb5\x0c\xcc\x4e\x4d\xa8\x4f\x3a\x9d\x9c\xd2\x1b\ +\x4a\x4e\x09\x71\xec\x78\x88\x47\x1e\xa5\xec\xf1\x60\x1b\x47\x97\ +\x4b\x58\x6c\x87\x94\x07\x4a\x78\xeb\xd5\x6b\x18\x8d\x76\x28\x93\ +\x95\x11\x0f\x12\xbb\x9f\xab\x5a\xa1\x5b\x94\x30\x0e\xc5\xaa\x38\ +\xb3\xf8\x09\xa5\xb1\xd3\xd9\x9b\xb4\x49\xe6\x53\x73\x67\x13\x2b\ +\xf4\xe7\x53\xce\x13\x0d\x3a\xba\x71\xd4\x2b\xa1\xdf\x1b\x63\x7b\ +\x63\x8c\xbd\xed\x32\xfa\x5d\x4d\x52\xa5\x08\xc2\x84\x32\x41\x8a\ +\x4a\x9d\xc2\xa1\x16\x93\x30\xac\xf1\x85\xe9\xab\xb2\x8d\x08\x43\ +\xb6\xc5\x65\xcd\xdc\x38\xfb\xe1\x60\x0b\x4f\x3e\xba\x44\x59\x76\ +\x88\x66\xbd\x84\x95\x1b\x29\x9e\xff\xf6\x3a\x4a\x95\x2a\x9a\x2d\ +\x0f\x8b\x8b\x01\x71\x50\xb6\x25\x55\x3e\xe5\x0d\x4d\xfa\xe8\xf8\ +\x41\xdd\x19\x2b\x5a\xb4\x5b\x4a\x0b\x68\x18\x95\xc9\xb6\x92\x72\ +\x74\xf2\x82\xda\x38\x9b\x04\x94\xbd\x76\x1c\x8e\x3d\xdb\xdd\x56\ +\x09\x3d\x3a\x28\xef\x22\x4b\xa8\x2d\x68\x52\x9a\x18\x83\x6b\xe7\ +\x27\xb6\xcb\x5f\xc7\xfc\x99\x9c\x28\xfc\x44\x62\xc7\x8d\x0b\x64\ +\xa7\x58\x14\x66\x3c\xc2\xf1\xd3\x8b\x58\x3e\xde\xc2\xd1\x13\x0b\ +\x78\xfe\x8f\xaf\x90\x38\x2d\x46\x22\x5f\x49\x8b\x85\xd0\x4b\x71\ +\x64\xc1\xd5\xd6\x9a\xdc\xc3\x32\x16\x56\x4a\x36\x61\xa9\xf6\x52\ +\x3b\xc7\xc4\x6f\xed\xc8\x33\xd9\xc2\x3c\x33\x90\x69\xf3\xc0\xd2\ +\xb2\x8d\x8d\x48\x01\xfd\xd8\xee\xb3\xe9\xa3\xb2\xa2\x86\xd7\xe9\ +\x2d\x7f\xf5\xa7\x9d\xd6\x36\xe9\xf4\x01\x2d\xb2\xdb\xdc\x18\xe2\ +\xda\x95\x1e\x36\xd6\x87\x76\x6a\x82\x26\xe9\x4c\xce\xe2\xe3\xa2\ +\x75\xaa\x64\x2d\x95\x6f\x4d\xa2\x8d\x29\x0b\xc5\x31\xe5\x34\xf2\ +\xdc\x76\xea\x49\x5e\x55\x18\xa5\x33\x23\xd5\x3e\x25\xfa\xef\xac\ +\xc5\xb8\x7c\x69\x0f\xcb\xf7\x2d\xe2\x3f\xf8\x9b\x0f\xe0\xe9\xcf\ +\x1e\xa6\x7c\x5a\x42\xd4\xa3\x27\x96\x0b\xe5\x89\x85\x71\xe4\x39\ +\xa0\x9d\x70\x39\x1b\x45\x9e\x21\x9d\x01\xe7\xea\x7e\xb9\xc9\x40\ +\x78\xcc\x48\x4d\x1e\x2c\xf7\x62\x1a\x79\x70\xce\xb9\x8d\x7b\xcd\ +\x40\xee\x66\xe5\xc7\xe5\x9d\x64\x25\x43\x92\x07\x94\xbd\x14\x46\ +\x26\x95\x6c\x73\x93\x6c\x72\x67\x19\xd3\xce\x44\x1d\x79\xdf\xa8\ +\x57\xb1\xb0\x58\x43\xbd\x0e\xf6\x57\x6e\xe2\xea\xcd\x57\x70\x63\ +\xe3\x32\x7a\xd1\x2e\x3a\x9d\x0d\x7e\x1f\x3e\x6a\x15\x1d\x09\x29\ +\x89\x94\x61\x59\x56\x0d\x87\x23\xd8\x62\xb1\x78\xa6\x70\xab\xa9\ +\x80\x02\x0a\xf8\xe0\xa1\xf8\xea\x0a\x28\xe0\xde\x41\x31\xa1\x56\ +\x40\x01\x05\x14\x70\x2f\x41\x52\xca\xac\xa4\x72\x17\xa9\xe5\x76\ +\x6f\xef\x04\xb9\xbf\x69\xbf\xe7\x0e\xf0\x7e\xf0\x39\xb0\x1e\x5a\ +\xa6\xbe\x0b\xe4\xde\xb2\x08\xd4\x17\xbc\x3d\x2e\xd1\x96\xf7\x11\ +\x6f\xa7\xd3\xba\x4f\xea\x11\xea\xaf\xce\x26\x3b\x67\x60\x47\x6d\ +\xcc\x4e\x72\x6f\x73\x1b\x57\x5e\x79\x16\x9d\x97\x5f\x40\xef\xd5\ +\xe7\x31\xde\xdd\xb0\xdd\x68\x0b\xc7\x0f\xa1\x5a\x6f\x02\x95\x80\ +\x1d\x7b\x76\xea\xd4\xf9\x27\x02\x4d\xa4\xf9\x1e\x31\xda\x60\xb9\ +\x08\xc9\x06\x41\xa8\x4e\xc6\x11\x92\x24\x41\x3a\x1a\x20\xee\xf7\ +\x11\x77\xf6\x10\x75\xf6\x11\x77\xbb\x18\xed\xed\x62\xb8\xdb\xc1\ +\x60\x67\x07\xbd\xed\x6d\x8c\xb6\x76\x10\xef\xec\x62\xb4\xbd\x83\ +\x21\x9f\x48\xee\x34\xf7\xa9\x8e\x18\x26\xda\xa1\xdf\x4e\x87\x61\ +\xf7\xf8\xf4\x91\x18\xce\x1e\x92\xc1\x90\x9d\xf6\x11\x13\x92\x32\ +\x11\x63\xe3\x83\x3a\xfd\x36\xb1\xc3\x8e\x79\x89\x0f\x7b\xe9\x74\ +\x56\x0f\x94\x7a\x2d\xb5\x96\x7f\xfa\x2c\xd7\x1a\x4c\xcf\x18\xe3\ +\x01\xc3\xc5\x01\x8e\x1f\x69\xe2\x93\x0f\x79\xf8\xf8\xa3\x55\x78\ +\x7e\x80\x9d\x6d\x0f\xdb\x6b\x55\x6c\xef\x8d\xa0\x8b\xe2\xb5\xfb\ +\x4d\xab\xc9\x6b\x5e\x88\x89\xd2\xa8\xc1\x20\xa2\xb5\x81\x04\xa6\ +\x5d\xec\x56\xb4\x36\xd9\x96\x3d\x72\x97\x7d\xce\x6b\xdb\xf1\x25\ +\x95\xf1\xbb\xc1\x13\xe1\x04\x74\x47\x94\x8e\xb6\xd1\xe5\xf8\x3a\ +\xf6\x67\x30\x4a\xd1\xeb\x02\xdd\x6e\x8c\xf5\xad\x18\x9d\x5e\x82\ +\x9e\x26\xc5\xd4\xb9\x0e\x12\x34\xe7\x7d\x78\x41\x19\xc3\x28\xc0\ +\x70\xa8\x55\xd0\x55\x1c\x3e\x51\xc3\x99\xfb\xdb\x38\x74\xa4\x62\ +\x47\x48\x8e\xd3\x12\xf9\x07\xec\x76\x7a\x8c\x4d\x17\xf6\x97\xac\ +\x13\x6e\x03\x3e\xca\x7f\xaa\x1a\xac\xb0\xc1\x14\x3e\x36\xa1\xc6\ +\x74\xb5\xeb\x3e\xb3\x39\x9b\xb4\xd2\xc3\xd0\xa2\x58\x34\x0b\xb4\ +\xb3\x4e\x2b\xaa\x87\x9a\x54\x4b\x54\x0a\xf8\xb3\xb4\x48\x97\x81\ +\xe1\x34\x0d\xb5\x8c\x88\xa0\xb8\x1a\x4b\x0d\xb4\xb4\xcb\xa8\x3c\ +\x41\x50\x2b\xe1\xfa\xb9\x4d\xa6\xc9\x4d\x76\x69\xb2\x4c\x79\xa7\ +\x5c\x54\x8c\x1a\xb4\x51\xd9\x15\xdd\x1a\x1c\xd4\x26\xb6\x20\x2c\ +\x5b\x79\xd3\x40\x96\x0d\xcc\xc9\x83\x40\x66\x8b\x46\x74\x2b\x84\ +\xfe\x98\x43\x00\x00\xff\xf4\x49\x44\x41\x54\x4e\xc7\x67\xdd\xd9\ +\xae\x89\x3a\x1d\x97\x63\x77\xb1\xa4\x31\x7a\xfb\x9a\x48\x4b\xb0\ +\xbe\x3a\x42\xa7\x13\x31\x6f\x35\x50\x96\xa7\x81\xe9\x91\x3a\x35\ +\x53\x65\x3e\xea\xfe\x97\xe9\x60\x97\xe5\x95\xcb\x2f\x2b\x76\xf2\ +\xab\xf8\x45\x35\xa3\xd4\x64\x9a\x86\x29\x03\xf2\x67\x73\x25\xc5\ +\x9b\x97\x22\x4c\x3a\xf3\xf8\xdb\x5f\x3a\x8b\xff\xf4\xa7\x4e\xe2\ +\xf4\xf1\x25\xec\xde\x4c\xd1\xdd\x61\xb9\xee\x47\xfc\x6e\xca\x62\ +\xaa\xe1\xd7\x37\x24\xba\x6d\x10\x28\xd3\x6b\xf0\x55\x93\x62\x8c\ +\xcd\x7d\x63\x04\xa5\xda\x3e\x61\x45\xc8\xc7\xf2\x93\x7f\xa5\xd1\ +\xca\xa2\xca\x09\xfd\x88\x6f\xe6\x5f\x6e\x7a\x18\x95\xec\xdc\xd8\ +\x0d\xfd\xd0\x59\x7a\x0d\xd6\x09\x8c\x9f\xc2\x27\xbf\x66\x43\x3d\ +\xdf\xc6\x0f\xf1\xd4\xd0\x3b\xcf\x36\x70\x26\x5c\x7c\x8c\x4e\x3d\ +\xa4\xb2\x4c\x4f\xb6\xfb\x80\xdf\x9b\xc7\xa7\x4c\x7e\x69\x90\x56\ +\xe9\xd0\x84\x5a\x16\xda\xc2\x3b\x2a\x19\x8b\xd2\xc5\x47\xf9\xaf\ +\x4f\x8b\x09\x40\x12\xc7\x86\x17\x41\x80\x46\xbd\x6e\x03\xb3\xa3\ +\xf5\x15\x6c\xbc\xf9\x0a\xeb\x8e\x7d\xbb\x03\xa7\xca\x6f\xd8\xaf\ +\x85\x48\x8d\x36\xc6\xad\x91\xc2\x29\x28\x26\x87\xdf\x94\x19\xe3\ +\xbd\x84\x1c\xe5\x07\x80\xfa\xed\x70\xa7\x48\xee\x64\xf7\x01\xa5\ +\xb5\x80\x02\xfe\x7c\x81\x3e\x82\xfc\x43\xb8\x5d\xbd\x1b\xc8\xfd\ +\xf6\x0f\x68\x56\x7f\xb7\x8f\x4b\xf6\x7c\x67\xc1\x73\x1f\x52\x59\ +\x3b\x59\x9d\xac\xb6\xd0\x2b\xa9\x2d\xd6\xa4\x86\x87\xce\x60\x07\ +\xaf\xbd\xfa\x35\xbc\x72\xe9\x77\xf0\xec\xea\x3f\xc7\x6e\xf7\x05\ +\xc4\xb5\x1d\x2c\x1c\x5b\xa0\x1c\x55\x67\x9d\x58\x45\x1c\xab\x0e\ +\x16\x42\x61\xc9\xc1\x61\xb5\x88\xe4\xa4\x7a\x52\x75\xae\x79\x98\ +\xd6\xaa\xce\x28\xc8\xec\x85\xc3\x41\xa6\xe7\xa3\x9f\x0b\x93\xe3\ +\x77\x13\x17\x56\xa7\xcb\xa8\xc9\x18\xb6\x12\xd2\xdb\x3d\xb5\x25\ +\xca\x26\x3d\xdd\xf7\xe5\x63\x7e\xbe\x82\x47\x9f\x98\xc3\x03\x0f\ +\xcf\x61\xe9\x50\x09\xf3\x8b\x25\x6c\xad\x0d\xb1\x7a\x6d\x0d\xbd\ +\xce\x00\xe3\xa1\xda\xcb\x08\xb5\x7a\x05\x61\xc8\x7a\x5a\x6d\x26\ +\xf1\x5a\x3d\x9d\xd3\x64\x8a\xda\x02\xc5\x29\x9a\x9c\xb5\xda\x15\ +\xc9\x43\x6a\x74\x24\x4b\x95\x7d\xe9\xcb\x18\x45\x09\xfa\xdd\x04\ +\x7b\x9b\x09\x76\xb7\x4b\xd8\xdb\x06\x86\x14\xe9\xb4\x7f\xdb\xaf\ +\xba\x85\x57\xd5\xaa\xda\x25\x4d\x02\xb2\x19\x8a\xd4\x9e\xb2\xad\ +\x08\x6b\x94\x05\xc6\xa8\xb0\x2d\x19\x8c\x86\x38\x73\x76\x0e\x1f\ +\x7b\xaa\x8d\xa5\xa5\x31\x9b\x98\x1a\x5e\x7a\x61\x0b\xdb\x6c\x97\ +\xab\x73\x3e\x82\x7a\x6c\x72\xac\x37\xa9\xa0\xe4\x11\x89\x4f\xec\ +\x23\xdf\x16\x11\xb9\x86\x54\x13\x42\x99\xac\x40\x7a\x35\x19\x26\ +\x9a\xb5\x83\x5d\x1a\x36\x45\x4c\x0b\x1f\xfa\x6d\x36\x98\xd6\x12\ +\x65\x4f\xb6\xcd\xba\x4b\x4d\x2d\xae\xed\xac\xd2\x8f\xfe\x95\xbf\ +\xba\x7f\xd5\x76\xb5\x31\x60\xbe\x28\xcb\x3d\x86\xd6\xe4\x0e\xed\ +\x10\x1c\x92\x6e\xc9\x45\x1f\xf9\xc4\x09\x8c\x28\xca\xde\xbc\xb1\ +\x83\x0e\xf9\x5d\xd2\xfc\x9f\x3c\x8b\x79\x39\x0b\x69\xb4\xbc\xcd\ +\xcc\x0a\x17\x84\xe4\x8b\xa7\x63\x2d\xe9\x42\x52\x4c\x16\xd0\xec\ +\x97\x64\x27\x05\xb7\xc7\x4a\x2b\xc3\x94\x99\xc7\x2c\xaf\x74\xd7\ +\xa2\x15\xb5\xcf\x4a\xb7\x1d\xf7\xa8\x89\x1d\xfd\x84\x9b\x2f\x8b\ +\x8f\x8f\xc2\x18\x3a\xd2\xbb\xbf\x1f\xe3\xe6\xf5\x7d\xac\xdc\xa0\ +\x9c\xd5\x1b\x5a\x7a\xec\xd8\x67\xa2\xb2\x74\x09\xa5\x1e\xe2\xb6\ +\x05\x4b\x54\x75\xcf\xb0\xdd\x67\x27\xd9\x52\x76\xf2\x40\xbf\x7c\ +\xdb\x77\xa5\x09\x24\xe1\x91\xa5\x0e\x72\xdf\xb8\xd1\xc3\xd5\x4b\ +\x1d\x9c\xfd\xc8\x21\xfc\xd2\xdf\x3a\x85\x27\x3e\x7e\x18\x9d\x1d\ +\x86\x17\xbd\xe4\xb7\xd2\x21\xaa\x1c\xb8\x54\x29\x72\x67\x6f\x5a\ +\x73\x35\xfa\x99\x0e\x67\x9b\x81\x39\xb8\xb4\xc9\x70\x8b\x1b\xc1\ +\xd2\x4d\xc7\xcc\xdb\x81\x39\xb3\x13\x98\x6a\x66\xb9\xc9\xe4\x1e\ +\x13\x53\x72\x4f\xe6\x6a\x4a\x86\xc3\x99\x8d\x46\xc9\xc0\xce\x41\ +\x3e\xcc\x3e\x77\xd7\xa4\xb5\xa8\x92\x5c\x6d\x3b\x08\x99\xde\x6a\ +\xa5\x84\xb9\x25\xf6\x4f\xbc\x1d\x6c\x74\xce\xe1\xfa\xca\x6b\x94\ +\xff\xd7\xf8\x6c\x41\x77\x49\x37\x9b\xf3\x44\xa9\xe3\xdc\x19\x52\ +\xf2\x96\xbe\x6b\x95\x67\x03\x17\xc7\x81\x3a\x0b\xf2\x73\x27\xfb\ +\x02\x0a\x28\xe0\x5e\x40\xf1\x75\x15\x50\xc0\xbd\x03\xca\xc4\x26\ +\x29\x14\x50\x40\x01\x1f\x42\x28\x3e\xfe\xef\x1f\xe4\xc2\xcc\x2d\ +\x79\x90\x19\xe4\x96\xf7\xf3\xa7\xfd\x0a\xaa\xb9\xdf\xcc\x68\x60\ +\x7e\xde\x17\xcc\x20\xbc\x25\x74\x8e\xf1\x2e\xf0\xb6\x20\x99\x85\ +\xfb\xdf\x0a\x99\x93\xba\x61\x59\x97\xd2\xa9\xea\x74\x06\x76\xf6\ +\x1d\x7a\x3b\x7b\xd8\xbb\x79\x09\xbb\xaf\xbf\x8c\xfd\x1b\xd7\xd0\ +\x6c\x57\xb0\xbc\xb4\x88\x5a\xa5\x81\xb2\xee\xac\xa2\x5f\x1d\xa9\ +\x67\x51\xb2\x23\xc7\x7e\x18\x52\x9a\xa3\x34\x81\xcf\xce\x5c\x3c\ +\xd4\x0e\x9f\x01\x26\x1a\x70\xe8\xc7\x48\x7a\x7d\xf4\xba\xfb\x18\ +\xf7\x22\xda\x0d\x91\xee\x0f\x30\x1e\x8c\x10\x25\xb1\x1d\x47\x12\ +\x53\x3f\xb1\x09\x09\x9a\x35\xea\x21\x06\x6b\xe0\x44\x03\x0d\xea\ +\xf0\xb2\x73\x98\x50\x4d\xcb\xea\x84\xb3\xeb\x2c\xfa\xd9\xf1\x13\ +\xed\x5e\x35\x60\x67\x52\x8f\x26\x59\x42\x94\xd8\x89\xac\xb7\x1a\ +\x08\x2b\x3e\x2a\x95\x00\xd5\x46\x0d\xba\x68\x5f\xc7\x03\x56\x99\ +\xbe\x6a\x50\xa5\x9f\x0a\x03\xda\xa8\x03\x69\x67\x8f\xdf\x2e\xb9\ +\x68\xf0\xa1\x9d\x5f\xc3\xb8\x92\xf2\xa9\xc0\xd7\xb2\xd6\x6a\x07\ +\xeb\xdb\x9b\xf8\xd6\xab\xbb\xf8\xf5\xdf\xbb\x81\x17\xcf\x75\x71\ +\x7e\x6f\x00\xaf\xb5\x07\x6f\x2e\xc6\xd2\xdc\x04\xed\x5a\x0a\x5f\ +\x17\x7b\xb1\xc3\xab\x5e\xb9\x26\x43\x0c\x37\xd3\xe1\xfa\xcd\x1a\ +\xd8\x71\x77\xab\xd9\x4a\x5e\xf2\xcb\x26\xfa\xcc\xbb\x12\xa3\xf4\ +\xb8\xfc\x90\xdf\xbc\xe5\xd7\xee\x2c\xb9\xa9\xbf\xad\x89\x25\x0d\ +\x76\xe8\x2e\xaa\x4a\x76\xd7\x5a\xb5\x0d\x1c\x59\x0e\x70\xfa\x4c\ +\x13\xa7\x8e\xd7\x31\xbf\xd0\x44\x3a\x21\xfd\x89\x8f\xe1\x90\x71\ +\x6a\xc0\x24\x20\x9f\x88\xb3\xd7\x1d\xe1\xda\xe5\x1d\xbc\xf9\xca\ +\x1a\xce\xbf\xb5\x8f\x2e\xf3\xa4\x1a\xfa\x36\x98\xa2\xbb\xd4\xc2\ +\x8a\xc3\xed\x26\x5f\x74\xa7\x06\x3b\xda\x55\x1f\xa7\x0e\x35\xd0\ +\x6e\x28\x11\xe4\x13\x5d\x34\xf8\xe7\xd2\xe7\x68\xd7\x11\x50\xbd\ +\x5e\x82\xfe\x48\x2b\x89\x75\xdf\x8a\x4b\xbf\x4d\xba\xc8\x93\xb2\ +\x53\x09\xb2\x47\x4a\x4a\x4c\x01\xe2\x71\x8c\xfb\x9e\x58\xc2\x47\ +\x9e\x3a\x09\x2f\xa9\xc3\xaf\xf7\xf1\x4f\xfe\x9f\xcf\xb3\x6c\xf8\ +\x56\x0c\x03\x66\x47\x58\x0f\xa1\xbb\x49\xdc\x64\x9a\x54\x52\x41\ +\x5a\x35\x71\xa3\x0b\xfe\x5b\x0b\x01\xea\xf5\x80\x65\x90\x6e\x46\ +\x35\xfd\x89\xb7\x62\xac\x06\xb1\x34\x60\x23\xd2\x19\xb7\x14\xf1\ +\x2f\xac\xb9\x89\xdf\x68\x34\xc0\xce\xc6\x18\x5b\x9b\x6e\x22\xcd\ +\x06\x5d\x84\x43\x03\x63\xc2\xc4\x30\x2c\x81\x16\x56\xa4\x8b\x78\ +\x8d\xe7\xa8\x5c\x2a\x8d\xf2\xa7\xf2\xe9\x8e\x73\xa2\x5e\x0f\xfd\ +\x29\xbf\x2d\xcf\x95\x56\x96\xdb\x70\xa2\xe3\x0a\x13\x5c\xba\xd4\ +\xc7\xe5\x95\x32\x3e\x5e\x5b\xc4\xff\xee\x27\x4f\xe2\x67\x3f\x73\ +\x0c\x49\xd2\x42\x6f\x33\x62\x5e\x75\x31\x8e\x98\x66\xed\xea\xd2\ +\x44\x2f\x53\x63\x69\x31\x92\x5c\x39\x61\xb6\x58\x1a\x2c\x81\x16\ +\x8f\x99\xcc\xce\x26\xf0\x54\xf6\x9c\x83\xd9\xba\x09\x2a\xed\xd6\ +\xa2\x4a\xbd\xf9\xd7\x9f\x66\xba\xba\x34\xd1\x5e\xc7\x43\xaa\x6c\ +\x39\xfe\xaa\xa4\x11\x68\xe7\x38\x4a\x7f\xc2\x2b\xb7\x0c\x87\x06\ +\xc1\xf4\xc9\x68\xbb\x68\x49\x13\xad\xb4\x33\xce\x2b\xac\x95\x0b\ +\x96\x0f\x4d\xcc\x6a\x02\x6c\xc8\xef\x7d\xac\x95\xd3\x44\x49\x3b\ +\x9f\x79\xa2\x4c\xd4\xb1\x9b\x1a\x69\xd3\xce\xb3\x58\x93\xf7\x41\ +\x05\x65\x66\xe8\x58\xe5\x51\x3b\x45\xc3\x0a\x02\x7d\x9f\xa2\x9d\ +\xb4\x68\xd7\x86\xea\x07\x8d\x88\xc6\xca\x04\xaa\xda\x95\xc6\x98\ +\xd0\xdb\xdf\xc0\xde\x56\x9f\x75\x43\x19\x73\x67\x1f\x44\xed\xe4\ +\x43\x68\x9f\xba\x1f\xa5\x86\x6e\xfa\xe1\x8f\x7e\x75\x4c\x92\x25\ +\x5e\x8f\x14\x81\xa5\x3f\x53\xdf\x0b\xbc\x47\xbf\x39\xda\xdb\xe1\ +\xbd\x46\xf3\xbe\xe0\xfd\xd2\x5f\x40\x01\x05\xbc\x07\x98\xfd\x8a\ +\xef\xf6\x45\xe7\x30\xe3\x7e\x8b\x57\xd5\x3e\x52\x64\x61\x3a\xd6\ +\x9f\x92\x67\x58\x5f\x6a\x57\x08\xe5\x18\xc1\x20\x1a\xe2\xea\x8d\ +\x8b\xd8\xe8\xbc\x89\x9b\xdd\xd7\xf0\xe2\xeb\xbf\x87\x85\xf9\x31\ +\x8e\x7d\xf4\x28\x2a\xfc\xc5\x7d\x6b\xd0\xac\x0e\x54\x15\xae\xc5\ +\x19\x6a\x0f\x6d\x00\xdc\xe2\x73\x6d\x95\x8b\x82\x35\xb9\xc5\x47\ +\xb0\xb8\xd4\x4e\xb9\xf8\xf5\x9b\x52\x22\xff\x34\xa8\xe6\x36\x98\ +\x35\x0b\x95\x79\xa2\x4a\xa3\xb5\x08\x54\xd5\xa6\x5b\xfd\xcf\xc7\ +\xa1\x74\x38\x45\x97\x11\x66\xe1\xd8\x06\xd2\x6c\x22\xa1\xa7\xc9\ +\x90\x18\x2f\x7c\x67\x1d\x2f\x7c\x77\x0d\xaf\xbc\xb2\x8d\xed\xcd\ +\x21\xaa\x73\x65\x2c\x2e\x2d\xa3\xd5\xae\xa3\xd1\xaa\x21\xa0\x8c\ +\x31\x1c\xc6\x8c\x82\xed\x82\xe4\x1d\xfe\x4d\x46\xb2\x38\xf8\xe2\ +\x5f\x4d\x8b\xcc\xa2\x4b\x72\x85\xf4\x6a\x7b\xd5\xe6\xa8\x8d\x15\ +\x8d\x5a\xd4\x22\xda\xd4\x96\x05\x14\xc5\xea\x94\xc9\x0e\x9f\xf0\ +\xb0\x74\x68\x8c\x43\x4b\x94\x15\xda\x21\xdb\x94\x09\x82\x52\xd5\ +\x64\x31\x4d\x8e\xf9\x21\x71\xa1\xc1\x36\x8e\xb2\x0b\xf1\xc4\xd1\ +\x18\x73\x75\x1f\x7b\x9d\x18\x2f\x3d\xb3\x85\xd7\xce\x25\xb8\x7a\ +\x2d\xc1\xa9\xb3\x25\xdc\x77\x76\x19\xcd\x56\x05\x21\xdb\xbc\x38\ +\xf2\xed\x2e\xb1\xcd\xb5\x7d\xdb\x39\xa5\x1d\x74\x26\x9b\xb1\x45\ +\xd2\x2e\xf8\xb1\x56\xee\x10\xc4\x33\xd1\xa7\xc5\x4c\x3a\x36\xd3\ +\xaf\x96\x71\xea\x34\xdb\x2e\xe2\x10\x2f\x65\xaf\x5d\x81\xca\x4b\ +\x2d\xd2\x91\x1c\x41\xf1\x18\x43\xca\x52\x92\x47\x34\x11\x25\xf9\ +\xc2\x26\xea\xc8\x98\x71\x42\xbd\xf2\x86\x8f\x8e\x51\x1c\x47\x72\ +\xeb\xe3\xef\xfc\xd7\x3f\x83\x68\x30\xc6\x77\xbf\x75\x0e\xdf\xfc\ +\xb5\x4b\x18\x57\x53\x84\x64\x92\x3b\xaa\x9d\xfe\xf5\xe4\x20\x7e\ +\x32\x6e\x2d\x2c\x6a\xcc\x51\x1e\xaa\x52\x2e\xe6\xa3\x3b\xd5\x24\ +\x77\x85\x15\xca\xd0\x99\x3f\x07\xd2\x30\x42\x86\xb1\x05\x53\x4c\ +\xab\xe8\x14\x21\xca\x17\xd1\xa1\xf2\x68\x3e\xa5\xf0\x51\x39\x32\ +\xb9\x92\x69\xd7\x1d\xb4\x3b\x5b\xda\x99\x36\xc2\xbe\xe4\x7e\x0b\ +\x27\x4f\x2a\xc3\xe6\x9d\xd8\xf9\x66\x14\x5a\xcb\x64\x3b\xd0\xc8\ +\x0b\x4d\x9a\x1a\x0f\xe8\xdf\x8e\x77\xa4\x4a\x36\x18\xed\x92\x39\ +\xc8\x10\x86\x31\xa9\x18\x1e\xfd\xde\xb8\xb2\x87\x95\xad\x0e\x3e\ +\xf9\xa9\x25\xfc\xdc\x5f\xfd\x28\x8e\x3f\x58\xc5\xa0\x13\xd0\x95\ +\xe1\xa1\x1d\x91\x8e\x36\xc7\x40\x81\xb3\x30\x63\x6e\x67\x09\x70\ +\xe0\xe8\x72\xf1\x19\x98\xf7\xcc\xbf\x81\x59\x98\xce\xde\x07\x41\ +\x67\xe0\xc0\x52\x68\x14\xd6\xd0\x65\xd6\x52\xb2\x22\x7e\x00\x46\ +\xe8\x01\x98\xdc\x66\x71\x99\xe1\xc0\x6f\xe6\xcf\xf0\xda\x77\x2f\ +\x93\x38\xa9\xef\x91\x7f\x95\x19\xf2\x47\x7c\xd3\x62\x3b\xdf\xa7\ +\x2c\x3d\x4e\xd0\xdd\x05\x3a\xdb\x09\xe6\xeb\x27\x71\x6c\x91\x7c\ +\x5a\x7a\x1c\xf7\x9f\xfe\x08\x65\x6a\x0a\xdc\xc2\xc0\x32\x67\x48\ +\x33\x86\x09\xe3\x34\xce\xa9\xce\xb9\x15\x50\x40\x01\x1f\x0c\x14\ +\x5f\x57\x01\x05\xdc\x3b\x28\x26\xd4\x0a\x28\xe0\x43\x0c\xc5\xc7\ +\x7f\x8f\xe1\xf6\x3e\xc0\x1d\xfa\x04\x32\xe6\xd6\x6f\xe3\x7f\x66\ +\xe1\x3a\x30\x99\x1f\x6a\x72\x14\xb9\xff\x59\x1c\xef\x1f\xee\x84\ +\x25\xb7\xbb\x0d\xee\xe4\x34\x8d\xd4\x39\xba\x0e\xdc\x81\x47\x47\ +\x6f\x66\x96\x15\x3b\xb6\x3a\x4e\xa5\xec\xbb\xc9\xb1\xc1\xc6\x06\ +\xd6\x2f\x5d\xc0\x78\xed\x26\xa2\xf5\x0b\xf0\x2a\x13\x34\x9b\xcb\ +\xf0\x17\xaa\xa8\xb0\xa3\xe6\xe9\xa8\x17\x86\xf7\x6a\xba\xeb\x4a\ +\x9d\xdf\x18\x11\x3b\xff\x51\x77\x80\x49\xb7\x8f\xfe\xa0\x8b\x71\ +\x77\x68\xe6\x6e\x77\x07\x71\xa7\x87\x78\xbb\x8f\xa4\xd7\xc3\xb0\ +\x37\x84\xaf\x1d\x2a\x0c\x58\xd2\xfd\x6a\x5a\x49\xc9\xf0\x79\x67\ +\xd9\xad\xaa\x26\x49\x7a\x89\x3c\x76\xe8\x34\x76\xae\xee\xb0\x40\ +\xbb\xb1\xd4\xa1\x56\xe7\x51\xaa\xba\xd2\xd6\xa7\x56\x18\xf5\xec\ +\x99\x4e\x53\x99\x26\x0d\x67\x68\x9c\x47\x13\x69\x95\x4a\x88\x2a\ +\xe9\xad\xcd\x35\x51\xa9\x07\xa8\x56\xaa\xa8\x36\x98\x9e\x7a\x0d\ +\x41\xcd\x47\xc0\xce\x66\xa0\x49\x9a\x30\xb0\xfb\x9a\x26\x0b\xf3\ +\x28\xb5\x18\x78\x79\x19\x93\x5a\x05\x69\x79\x04\xbf\x17\x03\xc3\ +\x3d\x5c\x5c\x5b\xc5\x6b\x6f\x75\xf0\xaf\xbf\xbd\x8e\xdf\xf9\x6e\ +\x07\xdd\xc1\x08\xdd\xda\x36\x16\xe6\x63\x1c\x5e\x8c\x11\x54\x2a\ +\x28\x13\x9f\x36\x19\x4d\x6c\x82\xc6\xd1\x27\x8e\x2b\x1f\x34\xc8\ +\xa0\x23\x29\x45\x1b\x13\xca\x4e\xac\x26\x7c\x5c\xfa\xdc\x84\x88\ +\xd2\x27\x83\xb3\xb3\x80\x06\x8e\x0b\x7a\x9b\x3a\xf6\xdc\x91\x87\ +\x81\x8e\xb9\x9b\xd8\xd1\x8f\x27\x4e\x56\x70\xfa\x54\xdd\x8e\x00\ +\x5a\x52\x1a\x7c\xd2\x9e\x96\xdc\x95\x71\x24\xc5\x0b\xc7\xa8\x35\ +\x4a\xe8\x6c\x0e\xf1\xc6\xeb\xab\x78\xe9\xc5\x55\xac\x5f\x1d\xa0\ +\xd3\xd9\x27\x1d\x01\xe6\x16\x02\xe2\xd4\x24\x87\x26\x61\x88\x97\ +\x04\xfa\xb5\x2a\x8e\x1f\x6e\xa2\x3d\x27\xfa\x95\x33\x1a\xd4\xb3\ +\x1c\x62\x9e\x69\x70\x21\xc5\x70\x98\x62\xbf\x3b\xc2\x28\x8a\x6d\ +\xb7\x9a\x0d\x86\x88\xca\x6c\xf5\xb0\xf2\xcb\x98\xa0\xfc\x95\x56\ +\x2a\xcd\x3a\x66\x71\xf1\x70\x80\xc7\xbf\x7c\x06\xf3\x15\xd2\x3b\ +\xf1\x70\xf1\xdc\x0a\x9e\xfd\x8d\x2b\x20\x23\x31\x09\xfa\x68\xb5\ +\x6b\x28\x55\x7c\x1b\x80\x51\x3a\xf3\x89\x35\xf1\x31\xf4\x4b\x68\ +\xb6\x3d\x1b\xe4\x2a\x53\xaf\x62\x6e\x65\x5d\xc4\x25\x8a\x3e\x1b\ +\x58\x70\x8c\x33\x77\x8f\xfe\x74\x1c\x53\xd4\x4f\xb1\xbd\x35\xc4\ +\xde\xf6\x18\xfd\x21\x19\x24\x92\xac\x30\xb9\x01\x1c\x0d\x23\x4c\ +\xc5\x2f\x2a\x36\x30\x41\x5b\xed\x4a\x94\xbb\x06\x7a\x34\xa8\x94\ +\x30\xad\xb6\xba\x5c\x83\x5e\xf4\x2a\x14\x8a\xde\xc2\x97\xc6\xf0\ +\x27\x3e\x46\xfd\x11\x6e\x5e\x1a\x63\x75\xd5\xc3\x8f\x9c\x6a\xe3\ +\x3f\xfc\xca\x22\xbe\xfc\xd1\x07\x31\xe8\x95\xd1\xdf\x8d\x31\xec\ +\xf7\x01\x16\xaf\x40\x5b\xee\xb4\xbc\xdd\x42\xbb\xaf\xd4\x90\x4a\ +\x51\xba\xe9\xa6\x34\xb8\xc9\xb1\x2c\x5d\xe6\x5d\x43\x46\x54\x4c\ +\xaf\x41\x2c\x39\xea\x3b\x70\x6e\xf2\x23\xbe\xb8\x2c\x20\xef\x32\ +\x3b\xf9\xb5\xac\x20\xd1\xe6\x5d\x03\xa1\x0e\x09\x74\x87\x9d\x4d\ +\x9c\xca\x43\x16\x5e\xf9\x6a\x47\x45\x29\x0c\x03\xe9\x78\x4b\x4d\ +\x92\x4d\xf8\x4d\xa7\xcc\xcb\x24\x8a\x58\x06\x46\x98\xe8\x1e\xb9\ +\x38\xc1\x84\xdf\x46\xd2\x1b\x81\x96\x6e\xc5\xb4\x06\x6a\xf8\x77\ +\x83\x70\x4c\x83\x06\xfb\xfc\x80\xf9\xcc\xb8\xaa\xac\x4f\x6a\x4d\ +\x78\xf3\x2d\x94\xea\x0d\x94\xf9\x68\xe7\x40\xd0\xa8\xa3\xc4\xb2\ +\x50\xa9\xd5\x98\xdf\x15\x1b\x24\x52\x62\x35\x20\x9d\x8e\xc8\x34\ +\x4d\xce\x06\x9a\x04\x66\x9e\xb2\xae\x19\x0e\xfa\xd8\x8f\xcb\x58\ +\x78\xe8\x31\x54\x4f\xdc\x8f\x85\x47\xee\x67\x84\xbe\xd1\xaa\xe1\ +\x4e\xd5\x0d\x96\x76\xe2\x70\x2f\x19\xee\x02\x53\x7f\x19\xcc\x9a\ +\x6f\x77\x7b\x0f\x70\x3b\x2a\xc1\xfb\x44\xf1\xa7\x83\xd9\x48\x73\ +\x7d\x01\x05\x14\x70\x07\xc8\x3f\x92\xfc\x0b\xcd\xf5\xef\xf2\xe1\ +\x58\x7d\x49\x3f\xd6\x76\x1c\x84\xb7\x36\x9e\x7f\xb5\x19\x3a\xf6\ +\x50\xb0\x4f\x99\xe8\xfa\xb5\xe7\x71\x7e\xf7\x55\x5c\x5f\x7d\x16\ +\xeb\xc9\x0d\xca\x11\x3e\x42\xd6\x81\xed\xf9\x36\x4a\xfb\x6c\x97\ +\x54\x55\xb3\x1d\xb1\x49\x38\x86\xd1\x64\x99\x89\x09\x3a\x15\x80\ +\x08\x73\x6a\xac\xbd\xb1\x38\x35\xd9\xa4\xf8\xf9\xa7\x59\x6d\xa6\ +\xb5\xc1\x34\x3b\x6a\xf4\x13\x4e\x87\xcb\x99\x0e\xc0\xfc\x64\x56\ +\xe6\x96\x85\xb3\x48\x0d\x9f\x39\x51\xd5\xb1\x86\x32\xcb\x5e\xad\ +\x9e\x04\x1a\xd9\xab\xcd\x75\x93\x1c\x5a\x74\xe2\xd3\xbe\x3e\x37\ +\xc2\xe6\x6a\x84\x67\xfe\xe8\x2a\x9e\x7d\x76\x03\xaf\x9f\xdb\xc7\ +\xde\x0e\xdb\xf6\xb9\x2a\x96\x0f\xb5\x6d\x62\xad\xb5\x34\xc7\x36\ +\xc8\xcf\x26\xa7\xd4\xce\xa8\x9d\x52\xfb\x64\xd4\xba\x6a\x3b\x7b\ +\x64\x90\xac\x68\xbf\x8c\x58\xa3\x55\xa4\xb0\x7d\xb1\x76\x8e\x3f\ +\xed\x9e\xd3\x42\x0a\xad\x73\x6a\xb5\x53\x2c\x1d\x01\x8e\x1e\x0b\ +\xb0\x78\x88\xb2\x43\xe8\xa1\x46\xd9\xa9\x5e\xab\x33\x1e\xdd\x93\ +\xa6\x45\x20\xe4\x1d\xdb\x24\x3b\x5a\xd2\x8b\x30\xdf\xaa\xe1\xca\ +\xcd\x1d\xbc\xfa\x5c\x0f\x57\xde\x00\x3a\xcc\xaf\xe6\xe1\x32\x8e\ +\x1d\x5f\x42\xa3\x41\x59\x91\xed\xce\xd6\x5a\x84\x6e\x27\xb2\x3b\ +\x60\x75\x94\xb6\x16\x9b\x69\x52\xcd\x16\xf2\xb0\x8d\xcb\x77\x9e\ +\x09\xb7\xe4\xbe\xb0\x96\xe2\xe4\x19\x4d\x5c\xb1\xcd\xa3\x4f\x4d\ +\xa6\x69\x37\x9b\x76\x5a\xb9\x53\x09\x12\x8c\x28\x4f\xe9\xc8\x47\ +\x4d\xb0\x29\x3d\xa9\xd2\xa8\xf4\x52\x51\xf9\x91\x5c\x29\xfe\xeb\ +\xb8\xe9\x80\xe1\xbb\xdd\x0e\xfe\xc3\xff\xec\x8b\x68\x51\x4e\x5f\ +\x59\x59\xc3\x3f\xfd\x6f\xff\x98\x69\x20\x15\x55\xc6\x29\x19\x48\ +\x60\x0c\x74\x5a\xe1\x91\xac\xa9\x49\xc5\x66\x9b\xf2\xb1\x4d\xa8\ +\xb9\x13\x01\x74\xa4\x7a\x85\x6d\xb1\xf3\xa4\x00\x0a\x47\x3d\x55\ +\x23\x83\x6a\x34\x48\x0c\x95\xc2\x4b\xee\x72\xc7\x3c\x3a\x3f\xee\ +\xcf\x78\x03\xd2\x4a\xc1\xb3\xd7\x9d\x60\x6d\x75\x80\xbd\x5d\xca\ +\x06\xcc\x5b\x9b\x14\x36\xdf\x86\xcc\xc2\x48\x71\xbb\xfe\x25\x22\ +\x48\xe6\xa7\x8c\x45\x83\xd2\x2a\xb3\xf9\x96\xc2\xf2\xa4\xbc\xb5\ +\x2f\x41\x1a\x4a\x5b\x7a\x63\x34\xc1\xb5\xcb\x3d\xec\xed\x0d\xf0\ +\x85\x9f\x3e\x81\x2f\xff\xf4\x29\xcc\x2f\x35\xd0\xdf\x53\x59\xd4\ +\x91\x92\x2c\x4f\xf4\x6f\xc9\x21\x58\xb4\x8c\x43\x16\x56\x7e\xa8\ +\x66\x9f\xe7\xd4\x8f\x62\x99\x05\xd9\xbb\xef\xc5\x4c\x32\x64\x88\ +\x0e\xf0\x4a\x71\xee\x4e\xaf\x97\x7d\xb7\x99\xbb\xc0\xfc\xf0\x65\ +\x69\xc8\xb1\xd1\x83\xf1\xc3\x0c\x4e\x99\x62\xca\xfc\xca\xdd\x9c\ +\x64\x96\x7f\xd2\xad\x6f\xdb\xac\x72\x07\x13\xae\x15\x27\xb3\x5b\ +\xdf\x08\x6d\x1c\x9f\xf5\xe6\x4f\x0c\xd6\x84\x72\x45\x2e\x1e\xfa\ +\x5d\xca\xbe\x3b\x11\x2a\xe3\x93\x78\xe0\xc4\x67\xb0\xd0\xb8\x0f\ +\xa7\x8f\x3f\x86\x5a\x75\x41\x08\x19\x4c\xdf\x35\xc1\xf0\x0b\xa6\ +\x1a\xc2\xac\xbe\x80\x02\x0a\xb8\xd7\x50\x7c\x61\x05\x14\x70\xef\ +\xa0\x98\x50\x2b\xa0\x80\x0f\x31\x14\x1f\xff\x3d\x86\x9c\xa1\xb9\ +\xa4\x72\xbb\x99\x20\xed\xdb\xf8\x7e\xbb\x45\xe6\x49\x1d\x19\xeb\ +\x8f\x39\x5b\x03\x79\x9d\x35\xbf\x7f\xc8\x23\xbb\x23\x25\xb7\x42\ +\xe6\xc5\xe2\x14\x2d\xb2\xe3\xeb\x6d\xf1\x4f\x09\x75\x9e\xac\x55\ +\x61\x1f\x58\x1d\x2c\x37\x11\x05\x0c\xd3\x08\x6b\x2f\xbf\x89\xde\ +\xeb\x2f\x20\xd9\x5e\xc3\xc2\x62\x88\x7a\xbd\x8d\xb0\xaa\xdd\x5c\ +\xbe\xdd\x4d\x50\x66\x6f\x3b\x99\xc4\xec\xec\xf7\x80\x5e\x8c\xb4\ +\xb3\x87\xc1\xee\x2e\x92\xdd\x1e\xfa\x1b\x3b\x18\x6d\x6e\x22\x1e\ +\xb0\x03\x3b\x1a\x61\xdc\x67\x07\x7a\x98\x20\xd6\x8e\x35\x76\x68\ +\xa3\x84\x9d\xf0\x71\xca\x2e\x9f\x56\x52\xb2\x43\xc8\x68\x3d\x76\ +\x08\x6d\x40\x46\x04\xb0\x53\x6e\x3b\x67\xa8\x55\x07\x5d\x93\x30\ +\x96\x1e\x82\xd1\xab\xbe\xa2\xdc\x64\xd6\x8f\x96\xea\xee\xd9\xa4\ +\x9a\x3a\xe0\x7c\x52\xb3\x97\xbb\x83\x1c\xb7\xfa\x9d\x9a\xc4\xb3\ +\x3b\x1a\xf4\x63\xa7\xb2\x1c\xfa\xa8\x68\x92\x4d\x13\x6b\x95\x00\ +\x4d\xea\x35\xe9\x56\xaf\xd4\x51\x69\x35\x51\x5f\x9e\x43\x78\xa6\ +\x89\xf2\x91\x06\xbc\xc5\x00\x68\x36\x31\xa1\x9b\xf5\x61\x87\xbb\ +\x58\x5f\xdb\xc6\x6f\xfe\xf6\x0a\x7e\xf3\x8f\xd7\xf0\xea\x5b\x5d\ +\xdc\x4c\x3b\xa8\x1d\xda\xb2\x9d\x6a\xad\x4a\xc5\x06\x27\xc6\xa1\ +\xa8\x15\x1d\xa4\x93\x84\x89\x66\x0d\x76\xb9\x1d\x61\x65\x3e\xea\ +\x6c\x2b\xdd\x34\x6b\xc0\x83\x60\x9d\x6d\xa7\xa5\x5e\x91\xc9\x90\ +\xa5\xc8\xf8\xa6\x14\x30\x2f\xe8\x49\x79\xa7\x3e\xaf\xd2\xec\x07\ +\xa1\xf9\x0a\x48\xea\xa9\x13\x0d\x9c\x7d\xa4\x8d\x93\xa7\x96\xd0\ +\x6e\xd5\x11\x36\xb4\xda\x5b\xc7\x03\x01\x69\xcc\xb0\xd5\x12\xea\ +\xd5\x00\x1b\xeb\x3b\xb8\x7c\x7e\x0f\xaf\x3d\x7f\x15\x57\x2e\x77\ +\xd0\xdd\x1f\xa2\x56\xf3\x11\x12\x97\x2e\xf0\xf7\x3c\x1f\xf5\x5a\ +\x13\x87\x0e\xb7\xf8\x68\x52\x8b\xd4\x4c\xfc\x2c\x1d\x32\xa8\x63\ +\x9f\xa2\xdb\x4d\x18\x56\x77\x59\x25\x36\x28\x24\x7a\x45\xcb\x44\ +\xb3\x8a\x96\x4b\x4a\xbb\x29\x36\x70\x22\x55\x2b\xb7\x75\x09\xfd\ +\x78\x32\xc0\x23\x9f\x3b\x85\x07\x1e\x3a\xc2\x32\x56\x85\xcf\xce\ +\xfe\xbf\xfc\x7f\x7d\x07\x7b\xbb\x8c\xbf\x9a\x90\x9e\x90\xf9\x51\ +\x41\xc9\x77\x7c\xf0\x34\x46\x42\xad\x78\x17\x30\x4f\xeb\xcd\x32\ +\x9a\x73\xe4\x37\xd3\xa4\xfc\xd6\x4f\x51\x69\xee\xc6\xca\x14\x79\ +\xa6\xc9\x30\x0b\x4d\x22\x74\x1f\x47\x67\x27\x46\x67\x37\xc1\x60\ +\x90\xd8\xa0\x9f\x8d\x1b\x48\xb5\x9f\x18\x6a\x9e\xf5\xb2\x30\x39\ +\x68\x95\xb8\x06\x19\xf2\xe3\x1d\xdd\xc0\x8f\xec\x5c\x2a\xa1\x3c\ +\xa5\x1f\xc5\xa7\x81\x3c\xdd\x33\x32\xec\x45\xb8\xba\x42\x0f\xeb\ +\x55\xfc\xc2\x47\x1a\xf8\x6b\x7f\xe1\x34\x1e\x3f\xb3\x84\x8d\x0d\ +\x96\x0f\x7e\x23\x9a\x54\x44\x4c\x5e\x58\x04\xa2\x9e\xf6\xd4\x5a\ +\x3a\xf2\xb8\x95\xd7\x4a\x81\xd2\x23\xe2\x8c\xf7\xb2\x77\xdf\x8b\ +\xbd\x4c\x43\x50\x01\xd2\x18\x9a\xb9\x11\x8b\x06\xce\x34\xb8\xc2\ +\xcc\x53\x79\x71\x2b\xfa\x1d\x0e\x05\xd1\xd1\xa5\x79\xb9\xb4\x7b\ +\x7c\x64\x16\xf3\x34\x19\xca\xbc\x4c\xa3\xc4\x1d\x3f\x19\xa7\x88\ +\x06\x43\x96\x9f\x98\x7a\x4d\x02\x46\x34\x47\x98\x68\x20\x31\xd6\ +\x44\x1a\xeb\x03\x3e\x36\x50\xa5\x59\x33\xd2\x59\xd6\xc0\x9f\x38\ +\x9a\xf1\x44\x77\x1d\xda\xc4\x20\xa3\xd7\x84\x9a\x06\xe4\x04\x13\ +\x7d\x07\x2a\xff\x3e\xcb\x16\xeb\x1b\x16\x40\xcd\x2e\xc2\xaf\x37\ +\x10\xb6\xe7\x11\xb6\x5a\xa8\xb7\xe7\x50\x6b\xb5\x6d\x82\x6d\xc2\ +\x42\x1e\x52\xd5\x00\xa5\x1d\x3f\x36\x22\x1d\x8c\x8b\xb1\x33\x4e\ +\x95\xf1\x2e\x3a\xa4\x4b\x3b\x25\x96\x1f\xfb\x24\xc2\xb3\x8f\xa2\ +\x71\xe6\xb8\x63\x93\xe2\x63\xba\xb4\xa3\xd1\x78\x25\x30\x4b\xa7\ +\xbd\x05\xee\x66\x2f\x78\x27\xb7\xf7\x01\xf7\x00\xc5\xfb\x83\x9c\ +\xee\x2c\xe9\x05\x14\x50\xc0\x7b\x85\x77\xfa\x70\x66\xbe\x64\x6a\ +\x9d\x89\x7e\x29\xfb\xa8\x81\xd0\xd1\xb6\x6e\x47\x3c\xb0\xb9\x7e\ +\x13\x17\xae\xbf\x8a\x95\xfe\x1b\xb8\xba\xf9\x6d\x4c\xfc\x3d\xb4\ +\x8f\x55\x50\x6d\xb0\x7e\x9b\x84\x88\x93\xd8\xea\x7b\xdb\xdd\x44\ +\xff\x92\x86\xf2\x78\x4d\x96\x91\x9e\xaa\xea\x33\x35\x11\x72\x91\ +\xde\xd9\xb9\x30\x07\x3b\xd6\x04\x99\xc6\xe4\x09\xc2\xd4\x5e\x90\ +\xdb\x39\xfc\x2e\xb4\x69\x0e\xc0\xe2\xc9\x07\xf4\x59\x87\x33\x2d\ +\x4e\xf6\xa0\xa7\x2c\x5e\x69\xac\x6d\x61\x3d\xaf\xb6\xc4\xf9\xe6\ +\x9b\x7e\xd5\xba\x05\x95\x14\x95\x6a\x19\x17\xcf\xef\xe3\xb9\x6f\ +\xaf\xe0\xf9\x67\xb7\x70\xf1\x92\x8e\x38\xee\xb1\x5e\x0f\x71\xf8\ +\xf8\x71\xca\x63\x01\xe6\xe6\x5b\xc6\xa6\x78\x94\x18\x5a\xbb\x1b\ +\x8e\x6d\x83\x76\x51\xcb\x6c\xed\x94\xda\x31\xa2\x77\x69\xb5\x16\ +\x5b\x04\x3a\x1a\xd9\xae\xe5\x6d\xb8\xc9\x54\x6a\x7b\x52\xb6\xc5\ +\x6c\xd3\x52\x24\x68\xb6\x80\xc5\xe5\x14\x87\x4e\x94\x70\xe6\xfe\ +\x00\x47\x96\x6b\x98\x6f\x53\xe6\xf1\xe7\x18\xa7\xc7\xf8\xb4\x73\ +\x5d\xed\x21\xdb\xe1\x52\x4a\xb9\x50\xc7\x21\x7a\x58\xbd\x9e\xe0\ +\xc2\x5b\x37\x71\xe5\xd2\x08\x2b\x1b\xb4\x9f\x67\xdb\xb2\xbc\xe8\ +\x26\xcd\x92\x80\xf2\x4a\x0f\xa3\x81\x22\x75\x47\x31\x4e\x28\xdb\ +\xe8\x04\x07\xa3\x8b\x64\x68\x62\xcc\xd7\xc9\x02\xed\x21\x4e\x9d\ +\xac\x90\x36\xd2\x4a\x3f\xca\x4d\xdb\xed\xc5\x46\x3b\xa1\x6c\x26\ +\x79\x60\x34\x8c\xed\x98\x6f\x4b\x9b\x9a\x62\xf2\xc0\x4d\xaa\x29\ +\x9d\xda\x89\x97\x5a\x56\xca\x4a\xc7\xfc\xf5\xbb\x43\xfc\xe8\x57\ +\x4e\xe1\xe9\xcf\x7d\x12\x3b\x9b\x31\x7e\xfb\x5f\x3c\x83\xeb\x6f\ +\x6e\x22\x09\x63\x54\x7c\xc5\x25\x66\x31\xac\xe5\x4b\xae\x75\x32\ +\x67\xb5\xe9\xa1\x56\x2f\x53\xf6\xe5\x53\x55\x5a\xd9\xfc\xaa\xfd\ +\xa5\x47\x6b\x93\x09\x56\x34\x54\x16\xc9\x13\x19\x44\x27\x09\x82\ +\x67\xc7\x6d\x67\xa5\x53\x19\x42\x8d\x4b\xf2\xd0\x78\xb1\xb9\x39\ +\xa0\x8c\x39\xc6\x80\xb2\x42\xc9\x23\xcd\x4c\xab\xe1\x75\x68\x2d\ +\x9c\x40\xe5\x3c\xd5\x3d\xb4\x7c\x4c\x56\x20\x6e\xa5\x59\xe9\xb3\ +\x05\x3d\x8a\x9b\x3f\xe6\xbc\xfd\xcc\x81\xa0\xd4\x24\xbd\x04\xd7\ +\xaf\x0d\xb0\x4b\x99\xe4\xe7\x7f\xe6\x34\x7e\xea\xe7\x1e\x40\x4c\ +\xb9\x70\xd4\x63\x3e\xf8\xc2\x21\x06\xca\x33\xc3\xf0\x6f\x64\x32\ +\xbc\xc3\xe0\x68\x50\xd9\x72\x44\x39\xc2\x4c\x9b\x7b\xc8\x0c\xd6\ +\x67\xc9\x08\xb7\x77\xf6\x72\x36\x0e\x9c\x4f\x07\xa6\xe7\x2b\xb7\ +\x33\xca\xcd\x20\x3e\x4a\x2f\x83\x03\xa7\x13\x0d\x99\x29\xa3\xd5\ +\x99\x1d\xc6\xe9\x9b\xe1\xf4\xfd\xbb\xbe\x81\xb3\xb5\xaf\x4d\x79\ +\x63\x66\xe2\x37\x45\x76\x2e\x4e\x97\xde\x4c\x16\xd3\x2f\x4d\x29\ +\x3f\x7b\xb6\xd0\x50\x22\x98\xdd\x45\xd8\x61\xdf\x6e\xbf\x85\x53\ +\x4b\x4f\xe1\xe8\x91\x87\x70\xe6\xc4\x47\xd1\xa8\x2e\x0a\x3d\xcb\ +\xa7\x16\x41\xd2\xa3\x70\xf1\xe5\x7e\x39\x0f\x8d\x48\x07\xb2\x98\ +\x31\x16\x50\x40\x01\x7f\x72\x28\x3e\xa5\x02\x0a\xb8\x77\x50\x4c\ +\xa8\x15\x50\xc0\x87\x18\x8a\x8f\xff\x03\x80\xdb\x85\xfe\x77\xeb\ +\x04\xdc\x96\x09\xf2\xfa\x6e\x41\xee\x0d\xbc\xf7\xdc\x37\x7a\x48\ +\xd0\xb4\xb5\xc8\x88\xcc\x69\x3c\xb0\x76\x36\x6a\x56\x6c\xf5\xb0\ +\xaf\xc1\xfb\x31\x36\xcf\x5d\xc0\xd6\xf9\xd7\x31\x7c\xfd\x32\x16\ +\xd8\x87\x5a\x5a\x6e\xb0\xc3\x55\x85\x37\x2e\x23\xd0\xf2\xde\xa0\ +\x8c\xc1\xb0\x8f\xad\xdd\x2d\x0c\x77\xb6\x90\x6e\xed\x22\xba\xb6\ +\x62\xf7\x9c\x25\xbb\x7d\x94\xa3\x11\x3b\xc3\x23\x3b\xee\x51\x3b\ +\x56\x88\xd2\x3a\xc4\x6e\xd7\x5b\xd6\x01\x1c\xeb\x88\x23\x4d\x6e\ +\x90\x1a\x75\x96\x49\x4a\x59\x2e\x79\xa7\xdd\x88\xcf\x3a\x80\xf6\ +\xcb\xed\xf9\xa8\xf3\x68\x1d\x7a\x5a\xd8\x58\x49\x9e\x22\x59\x3b\ +\x9f\x1a\x70\xd0\x20\x92\x56\xf5\xda\xae\x21\xda\x59\x87\x92\xaa\ +\xe1\xe0\xcb\x26\x40\xa8\xda\x11\x48\xe6\xa6\x1f\x69\xa4\xd9\x06\ +\x6d\xd8\xc9\xd4\x71\x37\x73\xb5\x2a\x1a\x8d\x26\x2a\x6d\x1f\xb5\ +\xa5\x1a\x16\x8e\x37\x50\xbb\xff\x30\x82\xb3\x2d\x94\x0f\xb7\xe0\ +\xd7\xdc\x0a\x4e\x60\x80\x3f\x7a\xf1\x0a\xbe\xf1\x7b\x17\xf0\xff\ +\xfb\xe3\x1b\xb8\xbe\x56\x82\xdf\x18\xa2\x56\x1d\xa2\x21\xb6\xd5\ +\x18\x8f\x8e\x5c\xd4\x31\x46\xea\xef\x2a\x36\x0d\xd4\x68\xd0\xc9\ +\xe2\x53\xfa\x35\xb1\x40\xbd\x12\x4e\x3b\xeb\x68\x5b\x67\xd9\xbc\ +\x4f\x41\x5a\x8d\x0b\x68\x02\x41\xe9\xc9\xd3\x66\x69\x30\x3b\xe2\ +\xb1\x55\xd1\x0a\x3e\x41\x58\xf5\x71\xe4\x48\x0b\x47\x8f\x37\x71\ +\xf4\x74\x05\x47\x0e\xcf\xa3\xd9\xae\x23\xa8\x04\x48\x86\x40\xb7\ +\x17\x23\x64\xfe\x37\x17\x03\xec\xac\x77\xf0\xe6\x9b\x2b\x78\xe6\ +\x5b\x97\xb0\x71\x2d\x45\x67\xaf\x6f\x93\x15\xe2\x41\xbd\x5a\xc6\ +\x91\x63\x6d\x1c\xbf\xaf\x61\x9d\x6f\xbb\x7c\x7f\xa2\x3b\x5f\x48\ +\x0a\xe9\xd5\xce\xa3\x6e\x77\x84\xee\x40\x93\x43\x89\xad\x9a\x16\ +\x38\x9e\x9b\xd6\x34\xa6\x55\x1e\x2a\xff\x64\x4e\x95\x6f\x1e\x46\ +\x83\x11\x4e\xdc\x5f\xc3\x93\x3f\xf1\xb8\x95\x37\x4c\x02\x5c\x79\ +\xf3\x26\xbe\xf3\x2f\x2f\x00\x15\x4d\x9a\x95\xd1\x68\x57\x58\x0e\ +\x43\xdb\xa1\xa8\x01\x1b\xf5\xed\x15\xb7\x26\x68\x2a\x75\xa6\xa1\ +\xe9\xa3\x5a\x0f\xe0\x85\x4c\xbf\x0d\x40\x31\xaf\x19\xa1\xdd\x6d\ +\x16\xab\xec\x69\x10\xa1\x84\xd1\x28\xb2\x63\x9a\xba\xfb\x09\x74\ +\x17\x8b\xd1\xc1\x00\x4e\x15\x85\x6e\x98\x40\xfc\x73\xa4\x8b\x58\ +\x71\x99\x66\xd1\x4e\xe2\x63\xed\xbe\xd2\x84\x1a\xcb\xb9\x15\x4b\ +\xf3\xc7\x70\xa4\xc7\xcb\xcb\xa8\x70\x44\x63\xec\x6f\x47\xd8\xec\ +\x94\xe1\x6f\x2f\xe2\x67\x3e\x9d\xe2\xdf\x7b\xfa\x38\x8e\x2f\x1f\ +\x41\xf7\x46\x82\x41\x3c\x40\x99\xb4\x69\x65\xba\xaf\x41\x40\x95\ +\x41\xfe\x84\x20\x8f\x5d\x24\x09\x9f\x7d\x27\xc2\xab\x41\x13\xfe\ +\xb5\xbd\xd1\x8a\x88\xf4\x0a\x45\x47\xf3\x47\xc6\x48\xaf\xbc\xd3\ +\x4e\x43\x6d\xd3\x64\x49\x23\x9e\x14\x09\x69\xd7\xbd\x86\x86\x93\ +\x79\x66\xbb\xc8\xa2\x08\xd1\x30\x76\xbb\xc9\x94\x26\xea\x75\xe4\ +\xd5\x68\xa8\x01\xb1\x11\x26\xa3\x18\x63\xe6\xab\x26\x61\x27\x51\ +\x0a\xdd\x69\x32\x66\x1e\x97\xc5\x63\xed\x42\x10\xef\x20\x3e\x50\ +\x35\xfa\xf8\x27\x8d\x22\x4b\x93\x78\x6e\xd2\x97\x74\xc8\x5e\xe4\ +\x52\xaf\x24\x58\x19\x57\xfe\x99\x1f\x85\x53\x3d\x44\x9e\xc9\xc0\ +\x34\x88\x97\x2a\x1d\x4a\x67\x39\x08\x58\x4f\x29\x6f\xb5\x0b\xb1\ +\x8c\x6a\xab\x81\xc9\x5c\x0d\x95\xb9\x45\x04\xad\x16\xc2\xd6\x1c\ +\xaa\x73\x4d\x54\x19\x4e\x03\x45\x9a\xfc\x2b\xb3\x7c\x26\x4c\x7b\ +\x9c\x46\xd8\xdb\xd8\x47\xb7\xdc\xc6\xfc\xe3\x4f\x60\xfe\xe1\x07\ +\xb1\xf8\xc0\x29\x46\x48\x1e\xb0\xae\xd2\x20\x99\x15\x28\xd1\x60\ +\x2c\xd7\x4b\x86\x19\x98\xba\x11\x66\xf5\x39\xdc\xc9\xee\x3d\xc0\ +\x9f\x20\xc8\xbb\x43\x4e\xfa\xbb\x21\x9f\xf5\x97\xeb\x0b\x28\xa0\ +\x80\xbb\xc0\x6d\x1f\x8a\x2a\x51\xab\x90\x73\x7b\xaa\xd2\x4e\x41\ +\xed\x80\xea\x30\xb6\x0e\x6c\x67\xbc\x7c\x47\xda\xde\x06\xce\x5d\ +\xfe\x63\x5c\xb8\xfa\x87\xb8\xb2\xfd\x2a\x1a\xc7\x3c\xcc\xb1\x5d\ +\xae\x04\x3a\xe6\x57\x6d\x17\x6b\x3d\x4d\xf4\x13\xac\x0d\xb0\x89\ +\x16\x6b\x15\xf8\xa8\x46\xa4\xce\xda\x57\xd5\xf3\xce\x2c\xa3\x4d\ +\x32\xd1\xc9\xea\x55\x85\x24\x7d\x2e\x94\xa3\xcb\x4d\x70\x29\x9c\ +\x23\xd2\x5c\xb2\x36\xce\xea\x5f\xf3\x66\x26\xe7\xc3\x79\x73\x76\ +\x96\x56\x1a\x18\x9f\x45\x6d\xa0\x38\xa4\x1e\xc4\x21\xf0\x24\xef\ +\xb1\xad\xb5\x4a\x9e\x96\xac\xdd\x1d\x46\x1a\xd5\xfe\x6a\xfe\xa8\ +\x5a\x1d\x83\xcd\x34\xde\x78\x7d\x07\xdf\xfe\xd6\x55\x7c\xe7\xdb\ +\xeb\xb8\x71\xbd\x87\x52\xe2\xd9\x6e\xf4\xf9\xc5\x05\x34\x9a\x21\ +\x16\x0e\xcf\x19\x86\x28\xdb\x3d\xee\x8e\x82\xa4\x4d\xd6\x06\xaa\ +\xee\x76\xc7\x61\x8b\x16\xd2\xa1\xf4\x28\x5a\x35\xfc\x06\x4e\x35\ +\x9e\x96\xd5\xfe\xcb\x89\x2a\x35\x3a\xb2\x30\xa0\x5c\xc3\xa6\x18\ +\xcb\x4b\xc0\x03\x0f\xd5\x70\xf4\x54\x03\xcd\x96\x87\x8a\x8e\x1b\ +\xf6\x94\x1f\x44\x16\x87\x6c\xfb\x7c\x5b\x80\x55\x9f\xa3\x3c\xe7\ +\x25\x58\x5d\x1d\xe0\x8d\x37\x36\x71\xfe\x85\x09\x6e\xac\xf5\x10\ +\x86\x55\x1c\x3e\x36\x67\x0b\x90\xb4\x4b\x2d\x19\x85\x36\x91\x26\ +\x9a\x24\x87\xd8\xc4\x23\x79\xaf\xfc\x08\x83\x0a\x1a\x87\x23\x1c\ +\x3b\x42\x9c\x62\x93\x7e\x4a\x0f\xe9\x11\xdb\x34\x51\xa5\x9d\x69\ +\x31\x9f\x88\x6d\xad\x1d\xf3\xc8\x32\x60\x93\x4b\x4c\x8b\xb1\xd6\ +\x54\xe5\x05\x1f\xa6\x4d\x0b\xa5\x46\xdd\x01\x6a\x8b\x63\xfc\xcd\ +\xff\xf4\x2b\x16\xff\xb5\xcb\xab\xf8\x8d\x5f\xfd\xb6\xe1\xd7\x62\ +\x31\x9b\x50\x13\x2f\xac\x1c\xb8\x3c\x17\x7d\xba\xb7\x36\xac\x97\ +\x50\x6b\x04\x76\xc7\x5c\xbd\xee\xe4\x06\xf5\x0b\x94\x87\x2c\x65\ +\x0a\x45\xbd\xca\x99\x54\xc6\xad\x1c\x25\x1d\x5a\x60\xe3\x33\x23\ +\x35\xd9\xa8\xa2\x45\x96\xa9\xe9\x26\xed\x31\x76\xf7\x86\x58\xbd\ +\x39\xc4\x1e\x65\xad\x64\x1c\xd9\x2e\x39\x17\xa7\x51\x71\x50\x4e\ +\xf9\x36\x59\x4d\xb2\x87\xe4\x31\xa6\x27\x51\x3c\xae\x0b\x21\x57\ +\x0b\x23\xdf\x46\x87\xe5\xb3\x91\xc3\x6c\x1f\x63\xb0\x93\x32\x3f\ +\x3a\xe8\xb1\xbd\xff\xd9\x5f\x3a\x85\xbf\xf0\x13\xa7\xe9\x1c\x20\ +\x1e\xa8\xaf\xa1\x63\xb3\x1d\x9f\x2c\x3e\x22\x32\x19\x43\x6a\x8e\ +\x34\x53\xe4\x4e\x17\x87\x37\x77\xc8\x74\xd3\x97\xe2\xb6\xbf\x73\ +\x33\x30\xb3\x6c\x14\x7a\x6a\x91\x07\x37\x70\x46\xb9\x3b\x19\xce\ +\xbe\x4d\x17\x11\xff\xce\x93\xe3\x04\xcd\x66\x74\x6e\x8e\x03\xd2\ +\x38\x37\x81\xdc\x73\xdb\xcc\x33\x41\xee\xb4\x35\xe4\x4e\x91\x8b\ +\x95\x0f\xfe\x4c\x2f\xd5\x04\x46\x82\x54\xd3\x92\x6e\xc9\xf2\x94\ +\xe3\xd4\xff\x50\x1d\x65\xc7\x98\xee\xe8\x64\x81\x79\x1c\x5f\x7a\ +\x8a\xcf\x47\x70\xe6\xc4\xc7\xd0\xa8\xb7\x2c\x8c\xca\xa1\x16\x6b\ +\x89\x6e\x87\xd7\xe1\x99\x82\x2c\x66\x8c\x05\x14\x50\xc0\x9f\x1c\ +\x8a\x4f\xa9\x80\x02\xee\x1d\x14\x13\x6a\x05\x14\xf0\x21\x86\xe2\ +\xe3\xff\x00\x20\x67\xea\x41\x8f\xe0\xce\x92\x4b\xde\x39\xb8\x2d\ +\x13\xbe\x77\x42\xce\xbb\xe7\xbe\x91\x78\x07\x1a\x6f\x0f\x29\x2f\ +\xea\x44\xaa\x63\x9d\x0f\xda\xa8\x8b\x1f\xed\xef\x61\xe5\xe5\xe7\ +\xb0\xf1\x87\x2f\xa2\x31\xe9\xe2\xd4\xe9\xa3\x68\xd6\xe8\x37\x68\ +\x02\x7e\x89\x1d\xac\x11\xf6\xb7\xf7\x30\xdc\xdc\xc6\xf6\xee\x0e\ +\xb6\xae\x5c\x43\xba\xd3\x81\xaf\x5d\x68\x69\xac\xa5\x8b\xf0\xd5\ +\xd9\xd7\x44\xda\x24\xb5\x55\xd8\xea\x74\xd9\x6a\x5a\x42\xde\x51\ +\x94\x2e\xef\x84\x19\xff\xb2\x0e\xbe\x75\x52\x4d\xcf\x47\x5e\x19\ +\x4e\x1d\x46\x62\x91\x2b\x8d\x6e\xf2\x69\x36\x3d\xae\x49\xe4\x23\ +\x55\xe1\xa9\xd7\xcf\x26\xd6\xe4\xc4\x8e\xa4\x26\x75\xf2\xa6\xd3\ +\xa9\xc2\x21\x1a\xd8\xa9\xcd\xec\x8d\x46\x46\xa3\x18\xb5\x73\x8d\ +\x6c\x71\x38\xc8\x50\x0d\x12\x54\xf8\x24\x13\x0f\xba\x9b\x2d\x08\ +\xab\x98\x6b\x35\xd0\x3e\x52\xc3\xdc\xfd\x8b\x98\xff\xd8\x32\x82\ +\xfb\xaa\xa8\x1f\x66\x47\xb3\xdd\x42\x27\x59\xc3\xd7\x7e\x7f\x05\ +\xff\xc3\x3f\x5b\xc1\x37\x5e\xee\x20\x45\x08\xbf\xb5\x8f\x43\x8d\ +\x1e\x7c\x3f\xc2\x84\x9d\xd5\x40\x77\x54\x68\xb0\x8c\xf8\xf5\xd3\ +\xe0\x8f\x92\x6e\x47\xdf\x51\x93\xaf\xbc\x56\x1e\x4d\x07\x1c\xa4\ +\x88\x37\x96\x30\x33\x68\x9c\xe3\x00\xe4\x8f\x4e\x52\x6c\xb2\x92\ +\x06\x1d\x93\xa4\x79\x05\xf5\x7c\x0d\x57\x50\x46\xbd\xe6\xe1\xe8\ +\x89\x16\x8e\x9d\x09\x71\xfa\xf4\x21\x2c\x2e\xce\xd9\x8e\xae\x51\ +\x32\x41\x34\x9c\xa0\xd2\x08\x11\x06\x3a\x9a\x67\x13\x17\xcf\xed\ +\xe0\x8d\x57\x56\x70\xf5\xcd\x21\x3a\xfb\x29\x2a\xa4\xff\xe4\xc9\ +\x05\x3c\xf0\x68\x1b\x8d\x66\x1d\xc9\x48\x71\x31\x1e\xa3\x67\x8c\ +\x51\x34\x44\xaf\x2b\x35\xb6\x9d\x5b\xe2\xab\x51\x2b\xde\x66\x9d\ +\x77\x99\xed\x25\x37\x3d\x36\xd6\xa1\xc9\x4f\x2a\x23\x9f\xb9\xd2\ +\xc5\x27\x7f\xee\x51\x1c\x39\xb9\x84\x49\x14\xc2\x0b\xc6\xf8\xad\ +\x7f\xf8\x22\xd6\x57\xf6\x50\x09\x4a\xa8\xcf\x05\xa8\xd5\xab\x56\ +\x6e\x6d\x67\x1f\xe3\xd7\x51\x43\xda\xb4\xe6\xeb\x9a\xb7\xba\x8f\ +\x4a\xb5\x82\x5a\x43\x03\x55\xe4\x03\xcb\xa3\x76\xca\x0d\x7b\x29\ +\x46\xfd\xd4\x06\x6b\x34\x51\x34\x1c\x8e\x49\x3f\x69\x64\x66\xeb\ +\xe7\x26\x58\x45\x0a\x5f\x2a\x72\x22\x3a\x03\xf3\x41\x6b\x2b\x2f\ +\x46\x6b\xea\x26\xd2\x62\x1d\x53\xea\xdc\x6d\x20\x86\x8f\xfd\x98\ +\x56\x37\x40\x51\x42\xd2\x1f\x61\x6f\x27\xc1\x70\xaf\x81\x45\xbf\ +\x86\x2f\x3c\x14\xe2\xa7\x3e\xd3\xc0\x9c\x7f\x14\xe3\xed\xd4\x76\ +\x6d\xd6\xc7\xba\xdb\x83\x65\x80\x99\xac\x15\xd9\x2a\x9b\x8c\xcd\ +\xb8\x2a\x55\xec\xd2\xcb\x54\xe6\xa3\x54\xb7\x4a\x58\x03\x61\x1a\ +\xa0\x52\x39\xa5\x7f\xe5\xbb\x06\x8d\x68\xa7\xd3\x22\x13\x1d\xa1\ +\x4a\x7a\x63\xe5\x45\x14\x61\x3c\xd2\x11\x52\x43\x9b\x18\x4b\x06\ +\x23\x8c\xf3\x23\x19\x49\x63\x64\x93\x66\x09\x62\xa6\xc9\x26\xd4\ +\x98\x2f\x36\x38\xa9\x93\x14\x4b\xfc\x9e\xad\x44\x31\x66\x5a\x89\ +\x2e\xa5\x8d\x7f\xd3\xbb\x79\x32\xc5\x2f\x02\x9d\x6a\xf5\x8b\xf9\ +\xe3\x43\xcd\x74\x07\xa6\xbc\xc8\x9e\x8f\x52\x6a\x05\x9f\x8f\x26\ +\x44\x35\x08\xeb\xf2\x54\xdf\x44\x19\x81\x10\xf1\x51\x1d\xa0\x49\ +\x7f\xf1\x3f\xa5\x77\xad\x8e\x97\x3f\xa9\x1a\xfc\xb1\x09\xc3\x72\ +\x05\x65\x7e\x97\x95\x23\x87\x50\x6d\xb6\xd0\xa8\x55\xe1\x37\x9a\ +\x2c\x27\x8c\x93\x69\x64\xe1\xc7\x28\x65\x39\xee\xec\x60\x47\x77\ +\xf7\x1c\x3e\x85\xb9\x27\x3f\x86\xc3\x0f\x7f\x14\x73\x0f\x9f\x34\ +\x7a\x6c\x07\x85\x92\x68\xe9\xd0\xcb\x52\x20\x83\x03\x69\x65\x75\ +\x37\xc8\xbd\xbe\x93\x9f\x3b\x40\xee\xfd\xdd\xd0\xbf\x2f\x78\xaf\ +\xb4\xcc\xfa\xcb\xf5\x05\x14\x50\xc0\x6d\x70\x87\x0f\xc4\xbe\x2d\ +\xbe\x54\xc9\xe5\x1f\x5a\xa6\x08\x5c\x9b\xa7\x47\xbb\x3a\x2a\x66\ +\xb7\xb6\x72\x13\x6f\x5c\x7f\x11\x6b\x9d\x67\x70\x7d\xf5\x3b\xa8\ +\x1c\x4a\x30\xc7\x3a\x2b\xa4\xbb\x76\xe5\x94\x4a\x6e\xd7\xb7\x43\ +\xa4\xba\x54\xe1\xa9\x4a\x8e\x61\xfd\x64\x51\xe5\x6e\x6a\x33\xa9\ +\x53\x7d\x29\x8d\x9c\xf2\x7a\x59\x16\xd4\x39\xd5\xcc\xa6\xcd\xfc\ +\x38\x55\x35\xba\x73\x52\xfb\x26\x7f\xaa\xb3\xb3\xf8\x64\x2d\xb3\ +\xd1\x2f\xbd\x14\x6b\x18\xcd\xce\xd9\x3b\x44\xf9\x80\xbd\xd5\x99\ +\x54\x84\xc7\x05\x32\x14\xe6\xd7\xc9\x36\x6c\x5b\x58\x81\xeb\x18\ +\xec\x49\x4a\x99\x4a\x13\x2c\x94\x3d\x42\xca\x57\xba\x43\xf5\xe5\ +\xe7\x77\xf1\xec\xb7\xae\xe1\x85\xef\x52\xbe\xdc\x4a\xe0\x33\xed\ +\x3a\x86\xfb\xd0\xa1\x25\xca\x1b\x01\x5a\xf3\x35\xc3\xa7\x7b\xb8\ +\xac\xfd\xb3\x08\x8c\x22\xa7\x65\xc5\x9d\xeb\xcd\x56\xb3\x3d\x34\ +\xe7\x3f\xa3\x4a\x74\x13\x49\x59\x79\x43\xd5\x8e\x6b\x8e\x3d\x4b\ +\x0a\x1d\xd1\x6c\x4d\xb0\x78\xa8\x8c\x23\xa7\xc6\x38\x79\xda\xc3\ +\xb1\x23\x55\x2c\xb5\xeb\xa8\xd5\x2a\x74\xae\x42\x73\x7a\x69\xac\ +\x3b\x77\xc7\xee\x58\x44\xd2\x7f\xe3\xf2\x3e\xae\x9c\xdf\xc7\x1b\ +\xaf\xee\xe2\xda\x15\xc9\x25\x09\x6a\x4d\xb6\x4b\xa8\x9b\xfc\x59\ +\x2e\x33\x4f\x85\x5f\xc0\x4c\x2b\x53\x26\x0c\xc2\x32\x96\xcf\x78\ +\x58\x5a\x60\x3e\x50\x56\xb0\xe3\x0f\x29\x08\x8a\xbc\x31\xdb\xab\ +\x38\x9e\x64\x77\xa7\x4d\xd8\x8e\x3b\xd5\x4d\xa8\xb9\xf4\xd9\x9b\ +\x2f\x95\x89\x49\xca\x36\x52\x79\x20\x99\x83\xb2\xc4\xce\xfe\x26\ +\xfe\xdd\xbf\xfe\x69\x3c\xfa\xf8\x83\xe8\xf5\xf6\xf1\xbb\xbf\xf1\ +\x22\xae\xbe\xba\x85\xa0\x21\x79\x41\x79\xeb\xb8\x64\x38\xd4\xc4\ +\x4a\xa1\xaa\x3b\xe4\xaa\x94\xff\x34\xa1\xd6\xa0\xfc\x14\x54\x28\ +\xa7\xfa\xe4\xa9\x65\xa2\x7c\xb9\xb2\x65\x0b\xa9\x88\x47\xbb\xbe\ +\xd5\x87\xd0\x4f\x8b\xc3\xec\xb8\x74\x0a\x62\x5a\xcc\xa2\x93\x0a\ +\xd6\xd7\xbb\xd8\x5e\xd7\x31\xda\x03\x8b\xc7\x8e\xed\x54\x6c\x4a\ +\xa4\xe9\xa8\x97\xac\x44\x33\x93\x61\x78\xdd\xf1\xd9\x4a\xab\xd2\ +\x26\x5f\xf2\xab\xbc\x74\xfe\x14\xbf\x95\x71\x0a\x38\xb6\x38\x8d\ +\xe9\xde\x5b\x8f\x71\x73\x75\x07\xb5\x56\x15\x5f\xf9\x99\x63\xf8\ +\xdc\x97\x4e\x23\xf5\x42\xa4\x8c\xb6\xe4\xf3\xdb\x53\x7c\x16\x67\ +\x06\x19\xae\xbc\xfc\x9b\x13\x35\x2a\x51\x4e\x86\x13\x38\x55\xf1\ +\x99\x23\xc1\x79\xcb\xca\x98\x39\x38\x1b\xe7\xe7\x00\xa6\x2e\xd4\ +\xdc\xea\x74\x6b\x98\x8c\x03\x06\xa6\x9a\x9d\x83\x1c\xa7\xb3\xcf\ +\x6d\x9d\x7d\x6e\xca\xcb\x94\xfb\x6e\xe5\x57\x6f\xc7\x31\x03\x6a\ +\xe4\xc5\x99\xb3\xca\xc2\x2c\x15\x73\xc6\x59\x86\x35\x34\xe2\x47\ +\x96\x97\xe2\x8d\x16\x14\xfa\x2c\xa3\xba\x36\xba\xbf\xc7\x54\x47\ +\x8b\x38\xb1\xf4\x09\x1c\x5b\xfc\x18\x1e\x3c\xfb\x71\x84\x12\xb6\ +\x09\x3a\x32\xdd\x7d\xef\xc2\x7c\x90\x1e\x17\x73\x01\x05\x14\x70\ +\x2f\xa0\xf8\x9a\x0a\x28\xe0\xde\x41\x31\xa1\x56\x40\x01\x1f\x62\ +\x28\x3e\xfe\x0f\x00\xee\xc4\xd4\xdb\x25\x97\x77\x61\xfc\x07\x23\ +\xe8\xe4\x91\xe6\xd8\x67\xcd\x77\x26\x48\xb6\xd6\xd9\xa2\x66\x36\ +\x54\x1e\x62\x1a\x52\x9d\x2f\xf6\x5e\xb5\xe6\xd4\x7a\x90\x84\xb5\ +\x57\x5e\xc1\xce\x8b\xcf\x61\x74\xfd\x12\xe6\x17\x2a\x38\x7a\x64\ +\x11\x15\x76\xaa\x07\xea\x4c\xad\xef\x60\x6f\x77\xdf\xee\x40\xeb\ +\xae\xdc\xc0\xf8\xe6\x2e\x3b\xe9\x3d\xf8\x44\xa6\x5d\x26\x5e\x36\ +\xd0\xc3\x9e\xb5\x75\x50\xb5\xfb\xcc\xee\x52\xe2\x4f\x71\xce\x3e\ +\xae\xc7\x6a\x24\x64\xc4\xd8\x8b\x34\xcf\x76\x30\xd9\x21\xa7\x2e\ +\xef\xdc\xe9\x6f\x78\x33\xef\x99\xce\x26\x3f\x0c\xa7\xc2\x31\xd1\ +\x36\x76\x95\xb9\x19\x0f\xcc\xce\x75\x9a\xcd\x96\x7a\xd7\x84\xca\ +\xce\x99\x6d\x82\xc4\xf4\x7c\x88\xc7\x06\x2b\x34\x58\x9f\xd1\x27\ +\xa3\xc2\xd8\x4e\x36\xa6\x51\x83\x23\x76\x6f\xc5\xa4\x02\x8f\x1d\ +\xf6\xc0\xaf\xc3\x5f\xac\x63\xe1\xbe\x10\x27\xcf\x56\x81\xcf\x1c\ +\xc6\x91\xb3\x4b\x68\xd4\x6a\x78\x69\x7f\x88\x5f\xfb\xfa\x4d\xfc\ +\x9b\x6f\xed\xe0\xb9\x17\xd6\x11\x26\x63\x1c\x99\x9b\xa0\x32\x37\ +\x80\x4e\xb2\x1b\xeb\xae\x28\x45\xc2\xb8\x3c\x31\x86\xaa\x6f\x93\ +\x24\xe2\xab\x68\xd0\xc0\x8c\xdb\xb1\x66\x69\xa0\x57\x37\x49\xe1\ +\x68\x9c\x76\x84\xf5\xca\x34\xc6\x57\xd3\x8a\x5e\x9a\xcb\xf2\xad\ +\xfc\x56\x18\xaa\xe4\xb3\xe1\xf1\x85\x37\x65\x3e\xb7\x70\xe2\xfe\ +\x05\x9c\x7e\xa8\x8d\xf9\x23\x35\x3b\xe6\xb2\x94\xfa\xd0\xfc\xa8\ +\x06\x3f\x4a\x61\x8c\xce\xd6\x08\x17\x2f\xdc\xc4\xcb\xaf\x6e\xe0\ +\xca\x4b\x1d\xe6\x6d\x09\x4f\x7c\xec\x08\x8e\x9c\x99\x43\xd2\x57\ +\x3e\x47\xd0\x16\xa0\x28\xe9\x23\xd2\x05\xfa\x43\xda\x95\x44\xb1\ +\xa5\xce\xf8\xa7\x38\x2d\x7f\x48\x9f\x48\xb4\x7c\x30\x7b\xfa\x49\ +\xa8\xa6\x9a\x8f\x65\xc7\x7c\x1c\x20\x1a\xf4\x71\xea\xd1\x26\x9e\ +\xfc\x89\x27\x11\x78\x3e\xe9\x0c\x70\xed\xfc\x1a\xbe\xf6\x8f\x5e\ +\x24\xe1\x21\x6a\xcd\x09\xea\xad\xd0\x8e\xb5\xb4\x5d\x7d\x9a\x4b\ +\x09\x74\x27\x49\x09\x3e\x0b\xa5\x1f\xf8\x4c\x87\x8f\x4a\x85\xfc\ +\x25\x9f\x12\x4d\x9e\xf5\x63\xf4\x3a\xa9\x4d\xa0\xc5\x9a\x50\xb3\ +\x41\x9b\xb1\x2b\x63\xe4\x8d\xe5\xaf\x51\x4b\xd0\xc0\x8e\xb4\x46\ +\xb0\x34\xa2\x33\x77\xd3\x04\x18\xd3\x66\xe1\x75\xcc\x63\x96\x16\ +\xe6\x8b\xbe\x27\x37\xb0\xa1\x70\xfc\x2b\x0f\x3a\x63\xf4\x76\x22\ +\xec\x76\x7d\x9c\xf1\x5a\xf8\xdc\x53\x21\x7e\x88\xe5\x64\x31\x5c\ +\x06\x7a\x5a\xb9\x1e\xa3\x35\x26\xcf\x99\x57\x93\x24\x61\x39\x60\ +\x62\x54\x16\x2c\x3a\x87\x4b\x7c\x14\xd8\xe4\x96\x06\xc3\x58\x36\ +\x42\xbb\xd3\x8c\xee\xcc\x5f\x71\xda\xd2\x41\x1e\x0e\xa2\x04\x93\ +\x51\x84\xb1\x76\x97\x0d\x47\xe8\x0d\x86\x76\x34\xe3\x60\x7f\x80\ +\x64\xdf\xdd\x5f\xa6\xa3\x17\x3d\xe6\x6f\x99\x01\x74\x29\xbd\x4d\ +\xc0\x31\x0d\xfa\x26\xf4\x28\xb6\xb1\xd2\xa3\xef\x40\x93\x96\x8c\ +\x47\xab\xca\x6d\xb7\x84\xfe\x46\x0e\xc3\x48\x75\x56\x99\x39\x33\ +\xd8\xb7\x2c\xaa\x69\x10\xbd\xf2\x46\xb7\xdc\x5d\x49\x73\xf7\xac\ +\x98\xc3\xf4\x51\xd9\x76\x47\x3f\x2a\x5d\xae\xfc\x1b\x5e\xfe\x8c\ +\x2e\x0b\xe3\xd2\xcb\xcc\x36\x3e\x28\x7f\xec\x38\x2e\xba\x8c\xed\ +\x3b\xd1\xee\x0f\xe6\x83\x1f\xa0\xd2\x6a\xa0\xd4\x9e\x47\x63\x7e\ +\x1e\x2d\xdd\x8f\x28\x74\x7c\x14\xac\x3b\xea\xa3\xdb\x23\x7f\x86\ +\xe4\x77\xe3\x0c\xda\x4f\x7d\x0c\xc7\x3f\xf1\x51\x2c\x9e\x3d\x41\ +\x4f\xc4\x15\x67\xc7\x1a\xb1\x7c\xb9\x8a\xc6\xd1\x62\x08\x04\x99\ +\xf2\x36\xc8\xbd\x48\x7d\x17\x98\xc1\x36\xf5\xfe\x1e\x83\xde\x7b\ +\xc8\x23\xbe\x5b\xba\x0a\x28\xe0\x43\x0f\xb7\x7f\x20\x34\xe7\x0d\ +\x5a\xee\x66\xed\x84\x2c\x34\xf1\x35\xc1\x88\xf5\x6b\x25\x9b\x48\ +\xeb\xec\x77\xf1\xea\xb9\x6f\xe0\xfc\x8d\x3f\xc0\x5a\xe7\x65\x04\ +\x47\x75\x4c\x60\x93\x21\xeb\xf0\x54\xff\xab\x66\x53\x9b\xc1\xf0\ +\xaa\xfb\xf2\xc5\x07\x9a\x14\x52\x53\x24\x9c\x36\x41\xc4\x38\x64\ +\xd4\xdb\xda\x1c\x33\xc9\x39\xab\x1b\xe5\xee\x14\xb6\x0b\xf4\xaf\ +\xc0\x56\x1f\xb3\x9e\x64\x1b\xe1\xea\x62\x17\x44\xb4\xaa\x5a\x15\ +\xae\x69\x1b\x27\x3b\xfb\x69\x22\x88\x6d\x94\xd2\x22\x14\x8e\x08\ +\x0b\x2f\xe4\xaa\xaf\xdd\x02\x0e\x4d\x06\x91\x0e\xab\x8e\x5d\xdc\ +\xa2\x5f\x7a\x47\x9b\xfc\xd3\xaf\xc2\x97\x35\xf8\x4e\xaa\x59\xb7\ +\x5a\xfa\x4a\x94\x35\xd8\x06\x4e\x26\x6e\x27\x58\xad\x3a\x46\x97\ +\xed\xd4\xab\x2f\x6f\xe3\x5b\x7f\x78\x03\x2f\xbf\xb8\x87\xad\xd5\ +\xbe\xc9\x98\xed\xa5\x0a\x96\x0f\x2d\xa2\xd6\x0a\xd0\x5a\x68\x41\ +\x77\x8d\x25\x76\xc7\x1a\xe3\x51\xb3\x69\x8d\xb6\xe4\x16\x12\x42\ +\x20\x69\x96\x3d\x66\x2b\xbe\x99\xde\xb5\x27\xc6\x29\xe7\xdd\xcc\ +\x6a\xe7\xd2\x58\xb4\x97\x6c\xc1\x8d\xed\xd2\xa1\x7c\xd4\x68\x46\ +\x94\x91\x7c\x9c\x3a\x11\xe0\xd8\x7d\x01\x0e\x9d\x98\x43\x7d\xae\ +\x8e\x7a\xa5\x89\xd1\x90\xf9\x3b\xd4\xc4\x60\x80\x5a\x3b\xc1\x5c\ +\xdd\xc7\xb5\xeb\xdb\x78\xf5\xa5\x7d\x5c\x3f\x07\x5c\xba\xd2\xc5\ +\xee\x46\x87\xb2\x4a\x0d\x95\x3a\xe5\x45\xed\xf4\x12\x51\x84\x50\ +\xc7\x40\x32\xed\x27\x1e\x2d\x61\x7e\x2e\x60\xdc\xda\xb9\xe5\x93\ +\xcf\x6e\x42\x2d\x21\x2d\xda\xfd\x1e\xe9\x2e\x52\xea\x35\x41\x15\ +\x53\x3e\x50\x7e\x1a\xd9\x96\x56\xf1\x58\x49\x23\xdd\x5a\x65\x42\ +\x48\xe9\xc7\x2f\x55\xd1\x1f\xf6\xb0\x78\xb2\x8e\x9f\xfb\x6b\x9f\ +\xa3\x5c\x51\xc1\xee\xee\x06\xfe\xf9\x3f\xf8\xa6\xdd\x3d\xaa\x09\ +\x3d\xb5\xb3\x96\x3f\xa4\xc7\x8a\x70\xf6\x94\xbd\x89\x4d\x04\x56\ +\x6b\x1e\xaa\x15\xdd\xa7\x56\x46\xad\x1e\x5a\x1c\x2a\x3f\x7c\xd9\ +\x63\xc7\x39\xeb\x0e\x53\x06\x76\xc7\x7a\x6a\x61\x8b\x88\x21\x4f\ +\x46\x29\x76\xb7\x86\xd8\xda\x8a\xb0\xbf\xcf\xfc\xa1\x9c\xe1\xee\ +\x62\x35\x67\x87\xc3\xbc\xea\xa5\xbf\x9b\x24\x74\x93\x68\x4e\x26\ +\xcb\x27\xd3\x2c\xb5\x59\x79\xcb\x82\xd9\x4b\x79\x66\x28\xe9\x69\ +\x7f\x65\x84\x2b\xd7\x77\x99\x37\x55\xfc\xe4\xcf\xdf\x87\xa7\x7f\ +\xf8\x08\x12\xca\xe7\x93\x84\x69\x2c\x53\x36\x15\xed\x8a\x4b\xdf\ +\x80\xbe\x33\x95\x43\x9a\x8d\x16\x15\x15\x43\x4a\x70\x24\x4e\x71\ +\x4b\x95\x46\x5e\x24\x5f\xe4\x60\xee\xe6\x66\x84\x64\x76\xb9\x2a\ +\x5d\x86\xd8\x82\x3b\xba\x73\xb0\xef\x22\xd3\x0b\x54\x1e\xf5\xcf\ +\x43\x19\x64\x01\x64\xb6\x34\x0a\xe4\x4d\xf1\xd1\xd1\xf9\x75\xbe\ +\xe5\x3e\xd5\xcb\x85\xf2\xa0\xed\xb4\x17\xd1\xb2\xa1\xd6\xfc\x2b\ +\xbd\xb2\xb2\x94\xe4\xa9\x39\xa0\xcd\xf9\x91\x8e\x3c\xa3\xb3\x3b\ +\xfa\x9c\x79\x41\x3b\x8f\x65\x42\x93\xb0\x11\xc5\xc7\x41\x87\x61\ +\x86\x47\xf0\xf0\xa9\x2f\xe2\xcc\xd1\x27\x70\xfc\xe8\x03\x74\xa3\ +\xcc\x45\x7f\x94\x88\x19\xdf\x01\x46\xc3\xe9\x0c\x84\xdc\xbe\x80\ +\x02\x0a\xf8\x93\x40\xf1\x05\x15\x50\xc0\xbd\x03\xca\x04\xae\xc9\ +\x2b\xa0\x80\x02\x3e\x7c\x50\x7c\xfc\x1f\x00\x88\xa9\xb7\x4a\xfe\ +\x0e\x66\xa5\x97\x3b\x30\xfe\xf6\x20\xf7\x5e\xd8\xb9\x5b\x6e\xdf\ +\x89\xd8\x5b\xe1\x4e\xae\x16\x4a\x0e\xea\xd0\x6b\xf0\xdd\x73\x1d\ +\x9e\x61\x67\x07\x1b\xdf\x79\x19\x3b\x7f\xf0\x75\xcc\x85\x3d\xb4\ +\x97\xe6\x51\x5e\x6a\x60\xbc\xb5\x87\xad\x9d\x75\x8c\x37\xd8\x89\ +\xba\xbe\x86\xbd\xbd\x4d\x24\xbd\x81\xfa\xd0\xa8\x7a\x1e\x3c\x76\ +\xf4\xd5\xc1\x57\xa7\x52\xbb\xc6\x52\x76\x9a\xdd\x44\x93\xe2\xd1\ +\x40\x3d\x9d\xd8\xb9\x52\x87\xd2\x75\x22\xb3\x8e\x9e\xfe\x33\x04\ +\x1a\x5d\xd2\xa8\xc3\x27\x03\x6d\xe4\x37\x9f\xa8\xd0\x2f\x73\xc8\ +\x3a\xc2\xae\x03\x6f\x66\x3e\x66\x65\x26\x81\xfc\x65\x03\x25\x8c\ +\xd3\x56\xa5\x66\x60\x3a\xe1\xb3\x4e\xa2\xba\xe9\xea\xc6\x93\x4e\ +\xda\x19\x5d\x76\x3e\x90\xf3\x2f\xb7\x9c\x46\xa1\x50\x67\x9f\xa1\ +\x32\x3f\xda\xf1\x65\x21\x31\xa2\x63\x4c\x16\xc4\x91\x87\xa0\x56\ +\x45\xda\xa8\x62\xbc\xe4\xe1\xf0\xd9\x10\x27\x1f\x39\x89\xfb\x3e\ +\xbd\x80\xf6\x3c\xf0\xb5\xcd\x6d\xfc\xab\xaf\x6d\xe0\x77\xff\xb8\ +\x8f\x6b\xdb\x63\xb4\xfd\x08\x8d\x20\xc6\xc2\x1c\xe9\x08\x19\x37\ +\x23\x1b\x13\xaf\x7e\x36\x84\xc6\xbf\xee\xa2\x10\xff\x34\xb0\xe3\ +\x76\x22\x29\x49\xf4\x91\x0d\xc8\x18\x2b\x65\xd6\x2f\xe7\xaf\xcc\ +\xe6\xec\xfc\x68\x10\x21\xd5\x79\x7c\xc6\x3f\xd7\x91\xb7\xc1\x2c\ +\x9b\x24\x30\x2f\xe6\x53\x97\x92\xcf\x1f\xaf\xe2\xc8\xf1\x06\x4e\ +\x9c\xd1\xfd\x68\x4d\x34\x99\x1e\x4d\x26\xa4\x1a\x80\x63\x27\x5d\ +\xc7\xec\xed\xef\x0e\xf1\xe6\x2b\x6b\xb8\x72\xae\x07\x3f\xac\x21\ +\x08\x99\x78\xed\x46\xe4\xaf\xd7\xe9\x93\x0f\x3a\x0e\xb0\x86\xb2\ +\x9f\x12\xa7\x1b\x70\xd3\x90\x9f\xe3\xa8\x29\x2e\x42\x31\xd5\x14\ +\x12\x31\xd6\x20\x9f\x8e\x0f\xa4\x59\x83\x2a\x89\x18\xee\xa1\x4a\ +\xfe\x3c\xfe\x93\x8f\xe0\xe4\x99\x45\xda\x57\x50\xa9\x25\xf8\xbd\ +\x7f\xf4\x2a\x2e\xbd\xb0\x09\xbf\x35\x46\xbd\xde\x44\xbd\x15\x68\ +\x06\xd2\xed\x4e\x93\x56\x93\x6a\x81\x9b\x88\x51\x9a\xc4\x4d\xad\ +\x9e\x1e\xf6\x59\xce\x7b\x89\x0d\x4e\x8d\x35\xa0\xc2\x68\x93\x71\ +\x76\x64\xa1\x68\xc9\xcb\x93\x95\x03\xa7\xb7\xfb\xf5\x8c\x4e\xe7\ +\xae\x32\x60\x65\x87\xe1\x52\xc3\x93\xa5\x89\x41\x14\x93\x31\x5e\ +\x5e\xf9\xd3\xe0\x92\x8e\x69\x4a\x7a\x13\xec\xed\xd2\x32\x6e\xe1\ +\xd4\xe1\x21\xbe\x74\xba\x89\xa7\x1f\x9f\x83\xd7\x6b\xa1\x1c\x07\ +\xa8\x91\xaf\x5e\xca\xd0\x71\x6a\x77\x12\xfa\x16\xbf\xb0\x69\xb2\ +\x48\xf1\x33\x05\xfc\xd6\x34\xc8\xa1\xbc\x15\xad\x2a\xbb\xda\x15\ +\x37\x8c\x74\x6f\xd9\x10\x71\x1c\x21\x19\x45\x76\x87\xd9\x68\x10\ +\x61\x30\x88\x51\x1e\x46\x98\x68\xd7\x28\x0b\x67\x89\xf8\x7d\xe2\ +\x2e\x93\xc7\xc6\x6f\xe2\xb5\x03\xc7\x54\x56\xa8\x57\x71\xd2\x63\ +\xf7\xd0\x98\x41\x4e\x74\xe3\x23\x3e\xaa\x6c\xaa\xf8\x19\x28\x7d\ +\xd3\x44\x53\x23\x7f\x32\x67\xee\xf2\xee\xdc\xf4\xd7\xeb\x40\x4f\ +\x85\xc1\x9d\x9d\xed\x0c\xa0\xde\x56\x82\x33\xce\xbc\x4c\x2b\x4e\ +\x45\x66\x3b\x19\x58\xf6\xa6\x93\x6e\x84\x69\xb4\xc6\xe1\x4c\x6f\ +\x0f\xf1\x69\x72\x4d\x79\x4d\x3c\x29\xbf\x51\xd9\x09\xb7\x56\xcf\ +\x2b\x0d\x76\xf7\xda\x5c\x1d\x73\xad\x39\x84\xf5\x80\xb8\x03\x47\ +\xcb\xd8\xb7\x5d\x11\x3b\xc3\x21\x6e\x5e\xef\xa0\x79\xdf\xe3\x58\ +\xfe\xe1\xa7\x71\xff\x27\x3f\x81\xc6\x89\x45\x87\x93\xbc\x06\xbf\ +\x41\x31\x29\xaf\xbf\xde\x15\x8c\xc0\x77\x07\xc7\x05\x07\xef\x31\ +\xc8\xf7\x06\xde\x4b\x1a\x0b\x28\xe0\x07\x0e\x66\xbf\xc8\x59\xb8\ +\x83\xbd\x59\xe5\xf6\xee\xeb\x55\x2d\x67\x93\x4b\xac\x2b\x24\x21\ +\xb0\x6a\xb1\xc5\x1d\x9d\xfd\x0e\x5e\x3d\xf7\x02\x6e\x0e\x9f\xc5\ +\x95\xab\x5f\x83\x37\x1f\x63\xe9\xf8\x32\xc2\x52\xd5\x76\x72\x5b\ +\x8d\x5c\xb2\x99\x2e\xea\x59\xe7\xf0\x27\x9d\xd0\xaa\xbe\x63\xa5\ +\x6f\x78\x35\x31\x61\xd6\xac\xc7\x75\xb4\xb2\x2d\x40\xb1\x30\x4e\ +\x26\x51\xdb\x61\x47\x18\xf2\x27\xf9\xc9\xe4\x16\x6b\xb3\x84\x88\ +\xf5\x22\x71\xab\xfd\x30\xfa\x58\x91\x9b\xec\xa3\xf8\x54\x5f\xba\ +\x24\x08\x3d\xc1\xd1\xe0\x08\x60\x1d\xcc\x3a\xd5\xda\x00\xc6\xaf\ +\xfa\x94\x7f\xab\xa3\x65\x67\x6d\x3c\xbd\xc9\x5e\x62\x85\x76\xa0\ +\x49\x2f\x7b\x6b\xcb\xc8\x23\xb7\x33\x4d\xb8\x1d\x56\x4d\x5e\xa9\ +\x29\xf2\xd4\x6e\x97\xd9\x70\xd3\x8f\x54\x9b\x50\x41\x62\xf7\xd9\ +\xd6\x1a\x1e\x56\x6f\x76\xf0\xec\xb7\x36\xf1\xc2\xb7\xaf\xe1\xe2\ +\xab\x9a\xa0\xe9\xa0\xd1\xd2\x3d\x5f\x75\x2c\x2f\x1f\x42\x63\x3e\ +\xa4\xb9\x66\x0b\x3d\x86\xc3\x91\xa5\x59\xa7\x23\xe8\x44\x01\xb5\ +\xd5\xc6\x1b\xa5\x5b\xb4\x13\x94\x36\x49\x7e\xca\x36\x2d\xf8\x71\ +\x90\xa5\x3d\xe3\x87\x76\x3b\x8b\x76\xf1\x77\x3c\x62\x78\xe2\x56\ +\xba\x50\x1e\xa1\xc9\xb8\x8f\x9c\x0a\x71\xe6\xfe\x1a\x65\xa5\x2a\ +\x8e\x1f\x5b\x42\x6b\xae\x42\x11\x26\xc1\xa8\xeb\xd9\xb1\x8c\xcd\ +\x0a\x65\x95\xba\x67\x77\xb2\xbe\xf1\xca\x36\x5e\x7f\x65\x1d\x6f\ +\xbd\xda\x43\x8f\x6d\x4c\x50\xab\xa1\x56\x0b\xc8\x7b\x1d\xeb\x4c\ +\x19\xba\x52\xc3\xd9\x27\x42\xd4\xea\x94\x23\x87\xda\xfd\xef\x99\ +\xbc\x35\x36\x19\xa8\xec\x76\xf8\x93\x27\xb1\xf2\x5a\x13\x6b\x4c\ +\x9b\x93\x3b\x44\x2b\x29\x57\xfe\x4a\x25\x9f\x6d\x52\x4d\xe9\x97\ +\x5e\x1a\xca\x50\x83\x61\x17\x5f\xf8\xcb\x1f\xc3\x47\x3e\xf2\x10\ +\xe5\x91\x08\x7f\xf0\xdb\x2f\xe1\xcd\x67\x6e\x60\x52\x2b\x23\x20\ +\x8f\x54\x6e\x98\xd5\x8e\x31\x02\xe5\x03\xed\xab\x8d\x32\x6a\x4d\ +\xed\x34\x73\xb2\x61\xab\x55\xcf\x9c\x19\x82\x32\x8b\x16\x28\x25\ +\xe2\x15\xdb\x51\xf1\x52\xc7\x04\x2a\x63\x47\xa3\x18\x7b\x3b\x11\ +\xb6\xb7\x74\x4a\x01\x69\x66\x1e\x88\x97\xd6\xae\xd3\x7d\x1a\x0f\ +\xf5\xe2\xb5\xa5\x25\x53\x6d\x67\x9a\xf2\x9f\x61\x24\xb3\x29\x5d\ +\x92\x51\xed\x8e\x55\x05\xa1\x3f\x57\xd6\x59\x36\xa9\x57\xd9\x93\ +\xfc\xd6\x59\x1b\xe2\xda\xcd\x5d\x9c\x78\xd0\xc7\xcf\xfc\xfc\xc3\ +\x78\xfc\xa9\xa3\x88\xe2\xd0\x78\x58\xf6\xd4\x17\x10\x2f\x94\xe7\ +\x54\x05\x0c\xab\xf0\xfa\x09\xb1\x70\x1b\x7d\x72\xa2\x29\x37\x9b\ +\x2a\x3a\x55\x8e\x05\x0c\x23\x30\x39\x29\xb3\x52\x68\xe9\xe5\x5b\ +\x65\xdb\x64\x19\xb3\x17\xee\xac\x5c\xe5\x82\xb6\x5c\x5c\x94\x54\ +\x98\x3e\xa9\x4a\x1f\x3d\x29\xad\xce\x5e\x66\xa7\x71\x8a\x68\x75\ +\xaa\x7c\xc8\xaf\x8b\x40\xf5\x8b\xd2\x24\x7b\xe7\xee\xe2\x75\xdf\ +\x96\xbe\x3f\xb3\xa3\xea\xf8\xef\xfc\x99\x9c\x65\x61\x18\x31\xb5\ +\xf2\x67\xf6\xcc\x57\x61\x91\x98\xe3\x74\x02\xd5\x15\x3a\x89\x81\ +\x7e\x49\xa0\x4e\x64\x10\xef\x75\x42\x44\x12\xfb\x18\xed\xb1\x9c\ +\x4f\xce\xe0\xbe\xa3\x4f\xe1\xfe\x93\x4f\xe0\xc8\xe1\xb3\x74\x67\ +\xbc\xaa\x87\x24\xb2\x1a\x26\xa7\x3a\x9c\xc2\x9a\xdb\x15\x50\x40\ +\x01\xef\x17\x8a\xaf\xa7\x80\x02\xee\x1d\x14\x13\x6a\x05\x14\xf0\ +\x21\x86\xe2\xe3\xff\x00\x20\x67\xea\xac\xb4\x92\xcb\xfe\xef\xc0\ +\xf0\xdb\x9d\xef\xbd\xb0\xf3\x4e\x44\xcc\xda\xe7\x31\xdf\xda\x65\ +\xb9\x9d\x36\xd7\x19\xa3\x4e\xbd\x37\xeb\x64\x01\x37\xdf\x78\x15\ +\xeb\x5f\xff\x7d\x8c\xce\xbd\x8e\xd3\xc7\x42\x76\xe8\x7d\x74\x77\ +\xfa\x58\xdb\xdd\x07\xf6\x06\xe8\xee\xee\xa2\xd6\xed\xb1\x93\x16\ +\x00\x3a\xe1\x86\x9d\x7d\xf5\xf8\xb5\x03\x2d\x49\x22\x76\x82\x63\ +\xe8\x7e\x32\x9b\xa0\x52\x84\x7c\xd4\xd1\x63\x9f\xdb\xe2\xcf\xc6\ +\x31\xb2\x0e\x1d\x4d\x99\xa7\xd9\x0e\xf6\x6c\x8b\x96\xeb\xdd\x6e\ +\x21\xc2\xac\xa3\x25\xc2\x05\x13\xcc\xba\xdb\x60\x02\xd5\xbc\x23\ +\x7c\xe0\xa6\x8e\x26\x6d\xac\xe3\x48\x3f\xf4\x27\xfa\xa4\xa2\x94\ +\x4c\xe9\x36\xde\x64\x93\x65\xea\x80\x67\x41\x5d\x18\x1a\xcc\xd9\ +\x7e\xa4\x4d\x3d\xe1\xb1\x3a\xb4\xea\xb4\x52\xab\x4e\x6a\x59\x03\ +\x5c\xda\x1d\xa4\x49\xc6\x2a\xfa\x4d\x1f\x7d\xd4\x51\x5b\xae\xe0\ +\xd4\xa3\x65\x9c\x7e\xa2\x85\xfe\xe2\x08\xdf\x5e\xeb\xe2\xdf\xbe\ +\xd8\xc7\x6b\x37\x4b\xd8\xdf\x2d\x63\x0e\x11\x9a\xf3\x25\xe8\x4a\ +\x82\x80\x3c\xca\x57\xce\xaa\xbf\x6b\x68\x35\x6a\x20\x95\x2f\xad\ +\x6e\x76\x47\x40\xba\x0e\x7d\x9e\x2e\x37\x58\xe4\xe8\x56\x20\xf9\ +\xd5\xdf\x85\x4a\xed\xd8\xbf\x1c\x34\x70\x26\x0b\x0b\xc3\xf4\xea\ +\x9e\x0b\x07\xb4\xf7\xc8\xab\x72\x82\x66\xbb\x89\xc3\x27\x1a\x38\ +\x73\xaa\x89\x85\x63\x0d\x34\xda\x55\x5b\x79\xec\x4d\x42\x54\xbd\ +\x90\x51\x06\xe8\xed\xc7\xd8\xdc\xe9\x62\xed\x66\x07\xfd\x3d\x60\ +\xe3\xc6\x0e\x36\x6e\x76\xd9\xe9\x26\x13\x18\x6f\xad\x01\xd4\x6a\ +\x3e\x4a\x0c\xa7\x01\x2d\x17\x85\xb8\x25\x90\x2a\x7a\x9d\xd9\x06\ +\x15\xd8\x09\xd7\x00\x88\xc6\x0b\x35\x90\x65\x77\xb2\x95\x53\x1c\ +\x3e\x5b\xc3\x93\x9f\x7f\x1c\x15\x6d\xe7\x4b\x27\xe8\x75\xf7\xf0\ +\x1b\x7f\xef\x45\xa4\x61\x09\xd5\xc0\x47\x63\xde\xb7\x8b\xf0\xcb\ +\x41\x88\x90\xe5\x33\x0c\x35\xf1\xa7\x9d\x54\x2e\x8e\x24\x2a\x21\ +\xea\x4f\x10\x45\xee\x8e\x34\x1b\x73\x54\x19\xa0\xc6\x26\xc7\x88\ +\x53\xab\xb5\x55\x4a\x0c\xe4\x2e\xb3\x06\x18\x2c\xdf\xb3\x47\x93\ +\x68\x36\xb8\x95\xd8\x60\x8f\xbe\x21\xc7\x57\xf1\x9b\x5e\xa5\xe5\ +\x5b\xd9\x95\xa6\x65\xa4\xda\x05\xb7\xcb\x3c\xee\x78\x88\x3c\xe0\ +\xc4\xe1\x32\x9e\xfe\xc4\x08\x5f\x3e\xf1\x20\xe6\x06\xf4\xd4\xab\ +\x33\x67\x86\xf0\x07\xcc\x0b\x06\xf6\x89\x4c\x3b\x14\xb5\x1b\x2f\ +\x10\x2d\x8c\x53\xab\xd2\x23\xd2\x19\x33\xbe\x84\x3c\x19\xc6\xb1\ +\xdd\x63\x36\x1e\xc4\xe8\xf5\xbb\xd8\xdd\x1d\x62\xd4\x1b\x62\x3c\ +\x24\xd3\x6c\x42\x4e\x03\x1e\x63\x78\xa4\x55\xd9\x1a\x12\x97\x8e\ +\xd1\xd2\x71\x4d\xee\x6e\x32\xc6\x65\x4f\xfe\x4d\x28\x6d\x56\x64\ +\xa8\xb7\xc4\x98\x1f\xa5\x49\x8a\x7d\xa3\xce\x3a\x03\x7a\x16\x5f\ +\xcc\x8e\x61\xa5\x98\xde\x95\x47\x59\x48\x9d\x7a\x21\x38\x1c\x8a\ +\x2d\xb7\x71\x7e\x54\x00\x0d\x83\xdc\x48\x80\xfd\x44\x88\xcc\x66\ +\xa7\x72\xee\xcc\x2a\xef\x8a\xcb\x65\x89\x1b\x24\x35\xc2\x0d\x8f\ +\xd2\x45\x45\x8c\xa7\xde\x56\xdd\xd3\x42\x61\xec\xfb\x2c\x93\xab\ +\xd4\x6b\xf0\x4f\x75\x52\xc0\x72\xe4\xb5\xea\xa8\xcc\xb5\xd0\x64\ +\x81\x11\x27\x26\x13\xfa\x61\x19\xea\xf4\x7a\xb8\xb1\x35\x40\x7f\ +\x58\x46\xf5\xbe\x27\x70\xf8\x47\x9e\xc2\x23\x3f\xf2\x29\x7e\x9f\ +\xf3\x22\x1b\x63\x7e\xdb\xa5\x40\x94\x66\xe5\xd9\xa8\x12\x11\xb7\ +\x41\x6e\x45\xe7\xbb\xf8\xb8\x2b\xc8\x7f\x0e\x0a\x37\x6b\xfe\x9e\ +\xc3\xfb\x21\xbc\x80\x02\x7e\x20\xe0\x6e\x5f\xec\xed\xf6\x34\x9b\ +\x15\xed\x54\x17\x39\x1b\x33\x9a\x4c\xc1\x2a\x59\xed\x90\xe0\xad\ +\x37\x9f\xc7\xb3\x6f\xfc\x16\xae\x6e\xfd\x11\xbc\x23\xc0\xd2\x11\ +\xd6\x27\xa9\x8e\xf7\x65\x2d\xad\xf6\x52\xed\x23\x65\x11\xab\x57\ +\x88\x40\x83\xe4\x8a\xc9\x06\xb3\x59\xa7\x47\xa3\x91\xb5\x11\x9a\ +\x5c\xd1\x84\x9a\x64\x04\x99\x35\xc0\xad\x36\xcc\x45\xaf\xa3\x8d\ +\x59\xa3\xca\xc1\x2c\x34\xe9\x20\x37\xd9\x89\x46\x5a\x49\xcd\xc9\ +\x95\x37\x05\x93\x56\x7e\xcc\x21\x33\x2b\xf2\xcc\xbf\xfc\x6a\x01\ +\x8a\x59\x9a\x17\xd6\xa3\x72\x17\xd0\xce\xe1\x52\x9d\xed\xda\x11\ +\xb5\x3f\x5a\x2c\xa1\x49\x99\x2c\x3a\xaa\xae\x3e\xd6\xa4\x8b\xda\ +\x56\xaf\xa4\x1d\xe7\x72\x61\x1d\x4f\xbf\x9a\x00\xd0\xdd\xad\xb6\ +\x13\xdd\xda\x6e\xfa\xf3\x12\xa6\xbd\x82\x7a\x1d\x68\x34\x4a\x58\ +\x59\x5f\xc3\x8b\xdf\xea\xe3\xdf\xfc\xfa\x05\x5c\xbd\x34\x20\x33\ +\x14\x7e\x82\xd6\x7c\x05\xed\xc5\x26\xe6\x96\xea\x68\x2f\xb5\xc9\ +\x13\xb6\x99\x03\xca\xa5\x12\xd2\x88\x5b\x3c\xd1\x84\x58\x4e\x87\ +\xd2\xaa\x76\x45\xaa\x11\x68\x60\x89\xa5\x1d\xc3\x28\x05\x0c\x43\ +\xee\x5a\xba\xd4\x76\xea\xa8\x46\xb2\x5a\xe2\x87\x7c\xd9\x24\x4d\ +\x99\x72\x40\x7b\xbe\x8e\x47\x9e\x98\xc7\xb1\x33\x25\x1c\x3d\x13\ +\x60\x71\xa9\x85\x5a\x10\x60\xd0\x93\xcc\x11\xda\xa2\xa2\x76\xdb\ +\xc7\x7e\x6f\x84\x17\x5f\xb8\x86\xd7\x9e\xdd\xc1\x1b\x6f\x74\x30\ +\xec\x6b\x31\xd0\xbc\xdd\xcd\x5b\x59\x1c\xe3\x81\x87\x97\x29\x27\ +\x0d\x90\xb0\xdd\xf1\x4a\x1e\xe3\x4a\x31\xa2\xfc\xe0\xb3\x5d\x22\ +\x1b\x09\x3a\x7a\x59\xbb\xd5\x28\xcb\xd1\x2d\x9f\x08\x75\xbc\x77\ +\xaa\xd3\x93\x3e\x26\x41\x77\xd3\xc9\x5f\xb9\x1c\xd8\x02\x9b\xc5\ +\xd3\x01\x7e\xe6\x97\x3f\x8f\xf1\xa8\xcc\xb2\xd4\xc3\xff\xf8\xf7\ +\xbf\x81\x80\x71\xeb\x88\x66\xe1\x56\xb9\xcb\x44\x5f\xe2\x19\x5b\ +\x3e\x54\xeb\x3a\x56\x5b\x77\xa7\x51\x2c\xa4\x2c\x35\xd7\xd6\x7d\ +\xb9\xda\x4d\x4f\x7f\x94\xcb\xe2\x21\x65\x21\x69\x19\x50\xe5\x50\ +\xb4\xe9\x38\xed\x9d\xad\x21\xba\x9d\x84\xe2\x08\xdb\x4a\xf2\xd9\ +\x71\x58\x81\x9c\xce\xf2\x40\x1a\xf2\xd8\xed\x80\xd2\x64\x92\x93\ +\xc3\x24\xff\xc9\xce\xe4\x6b\x8b\x88\x60\x4d\xad\xc3\x23\x2b\x93\ +\x25\xe9\x47\xb8\x75\x7c\xb5\x8e\x79\xbc\xb1\xde\xc1\xf1\xfb\x6b\ +\xf8\xf9\xbf\x7e\x1c\x0f\x3f\x7e\x1c\xe9\xb0\x46\xcf\xfa\x56\xb4\ +\x73\x91\x79\xa5\xd0\xfa\x0b\x25\x91\xd8\x77\xc1\x9f\xc9\x19\xb4\ +\x53\xd1\x9e\xfa\x31\x25\xa3\x51\x20\xf7\x4c\xab\xa8\x9d\x3f\x3e\ +\xce\xc6\xdc\x64\x32\x3f\xc2\xad\x9f\x0c\xfa\x36\xec\x27\x79\x50\ +\x99\x42\x33\x0d\xca\xbb\xcc\x2b\x03\xd2\x9d\xf6\x56\x5f\x08\x0b\ +\xbd\xb9\x10\x0e\x9f\x95\x51\xea\x8c\x1f\xa6\x73\x8f\x7b\x1b\xa1\ +\x53\x6d\xf6\x22\xd0\xb3\x9c\xc4\x67\xe2\xd5\x37\x29\x59\xd6\x64\ +\x3e\xd9\x5b\x15\xc3\x17\xc3\xc9\x9c\x89\x4d\x0c\xe2\x64\x38\x7d\ +\x96\x65\xd5\x45\x2c\x48\x21\xe5\x6b\xd1\x90\xd7\x63\x5a\x60\x66\ +\xf1\x29\x3d\xd4\x68\x01\xdb\xb0\x1b\x20\xee\x85\xec\xe9\xdc\x8f\ +\xfb\x8e\xfe\x90\x4d\xac\x1d\x3b\x72\x9f\xe5\x9b\x64\x6c\xdb\x35\ +\x3a\xa5\x6d\x16\xee\x64\x57\x40\x01\x05\xbc\x13\x14\x5f\x4d\x01\ +\x05\xdc\x3b\x28\x26\xd4\x0a\x28\xe0\x43\x0c\xc5\xc7\x7f\x8f\x61\ +\x96\xa1\xb3\xd2\xca\xbb\x30\x5a\x5e\xe5\xe5\x83\x15\x70\xee\x46\ +\xc4\x6d\x84\xaa\x27\x94\x13\x63\x41\x5c\xb8\x5b\xac\x04\x6a\x3a\ +\xd4\x19\x65\x07\x69\x98\x0c\xb0\xfa\xb5\xdf\xc7\xcd\xff\xe5\xdf\ +\x62\x72\xf3\x75\x1c\x3a\xd6\x42\xc0\x2e\x72\x67\x27\xb2\x8b\xd4\ +\x47\xdb\x3d\xd4\x83\x12\xfc\xb0\x82\x40\x23\xd1\xe3\xc4\x8e\x78\ +\xb1\x01\x1d\x0d\xf2\xc4\x09\x9f\x91\x0d\xf8\x58\xc7\x89\x5e\xf2\ +\x41\x6d\xfd\xf2\x95\x8f\x16\x7b\x4e\x9f\x99\xac\xeb\x78\x0b\x98\ +\x53\xee\x2e\x1a\xdd\x5f\x26\x23\x79\x0a\x42\x33\x63\x36\x2d\x2d\ +\x1c\x3e\xd7\x15\xb5\x95\xba\x66\x43\x13\xdd\xa4\xb7\x6e\xaf\xd1\ +\x23\x33\x7f\xea\x0f\x9a\x51\x9d\x4f\x75\xe8\xdd\x23\x6f\x72\x70\ +\x03\x51\x72\xa7\x5f\x43\x23\xd5\xb9\xab\xeb\x4b\x16\xce\xd8\xb9\ +\xf4\x4e\xb4\xa3\x28\xb7\x03\x79\x33\x9a\x20\x1e\x7b\xd8\x2b\x35\ +\xb0\xe5\xfb\x18\xcf\xf7\x11\x1c\x9d\xa0\x75\xa2\x8a\x1d\xf8\x78\ +\x21\x2d\xe1\xf2\x7e\x82\xf5\x6e\x09\x3b\x7b\x43\x2c\x04\x15\xcc\ +\x57\x3c\xb4\x2a\x3d\xe6\x4f\x19\x0c\x8e\x32\x23\x72\x2b\x46\xf9\ +\x23\xfd\x9e\xa7\x4e\x2f\x79\x4b\x4b\x77\x67\x16\xf9\xad\x1e\xb3\ +\x08\xa3\xbd\x74\x2e\x23\x72\xfe\x2b\x2d\xa4\x49\xd9\x22\x37\x75\ +\x88\x99\x97\x9a\xba\xb1\xb4\x6b\x60\x89\x3f\x0d\xac\xa8\xb3\x5c\ +\xe6\x4f\x66\x59\x78\x81\x87\x46\xdb\xc3\xc2\x42\x05\x8b\xc7\x9a\ +\x38\x76\xbc\x86\xf6\xbc\x5b\x35\x5e\xa9\x2c\xd2\xbd\x22\xaa\xd0\ +\x1f\xe8\x9e\x8c\x1e\xd6\x2f\xed\xe1\xad\xef\xec\xe0\xca\xe5\x6d\ +\x62\x18\x20\x6c\x94\xd1\x6a\x85\xd0\xfd\x1b\xea\x54\x1b\x75\xfc\ +\x8b\x3b\x24\x4a\x6f\x23\xc7\x98\x29\x5b\x0d\x2c\x68\xd0\x2a\x56\ +\xf9\xa2\x51\xa3\x08\x63\xdd\x33\x37\xc0\x23\x3f\x72\x16\xf7\x3d\ +\x7a\x0c\xa5\x84\x88\xfc\x11\x5e\xf8\xb7\x37\xf1\xea\xef\x6d\xa0\ +\x5c\x8f\xd1\x9c\xd7\xce\xc0\xc0\x56\x95\xfb\x55\x1f\x61\xa5\x84\ +\xc0\xf8\xe4\x76\x71\x8d\x7a\xba\xf7\x8f\x7a\xe2\x13\x7e\x1b\xe8\ +\xa0\x5e\x83\x93\x2e\xaf\x32\x5a\xec\x95\xe9\x45\xa7\xf8\xc6\x72\ +\x2d\xd5\x56\xf8\x6b\xb5\xba\x06\x34\x35\x88\x29\x0f\xf6\x77\xfe\ +\x1d\x88\xd7\x09\xc6\x51\x19\x63\x66\x9e\x8e\x39\x1a\xa6\x35\xd4\ +\x51\xc5\xd9\x07\x06\xf8\xe4\xa9\x1a\x1e\x3d\x56\xc7\xf2\x78\x0e\ +\xe5\xbd\xd0\x8e\xaf\x2a\x6b\xe7\x18\x7f\x01\x79\xa0\x01\x30\xed\ +\x50\xd3\x2a\xf5\x61\x5c\xc2\x1e\xc3\x0f\x86\x31\xcb\x51\x84\x51\ +\x7f\x84\x78\x34\xc2\x70\x10\x23\x1d\x8c\xe0\x31\x5d\x3a\xaa\x31\ +\x4c\x99\x77\x8c\xd9\x67\xdc\x2a\x06\x3e\xcb\x4d\xc8\x6f\x50\xf7\ +\xc8\xa9\xdc\xe8\x88\x1e\x4d\xa4\xa9\x3c\x38\xa0\xff\xac\x5c\x1c\ +\x58\x59\x8e\xd3\xec\xca\x98\x1e\x81\xa9\x99\x1f\xb9\x4f\x53\x6a\ +\x9e\x9d\x46\x79\x2a\x7f\xee\x18\x22\xe7\xa0\x01\x27\xfb\xfe\xc4\ +\xcb\x2c\x6e\x1b\x84\xa2\xad\xf3\x27\x2b\xc5\xc9\x72\xe1\x4c\xee\ +\xcf\xb2\xec\x70\x49\x4f\xbc\x36\x08\x9a\xa9\x1a\x8c\xa5\x4f\x73\ +\x23\x0a\x0d\x10\xe7\xf5\x8b\xbe\x47\xd3\x67\x71\xd9\x77\x21\xa6\ +\x58\x99\x67\x5e\xd0\xda\xe5\x17\xcb\xb6\xbc\x95\x7d\xa4\xf4\xe0\ +\x55\x2a\x68\xb4\x9a\xa8\xd5\xaa\x08\x59\x5e\x74\x74\x58\xd9\xab\ +\x80\x35\x1c\xf6\x7a\x7d\x5c\x5a\xed\xa0\x1b\xd5\xb0\xf8\xf4\xc7\ +\x71\xfa\x73\x3f\x82\x47\x7e\xe8\x93\xa8\x35\xeb\x56\x5e\x6d\xe7\ +\x83\x6d\x59\xc8\x40\xf1\xbb\xa4\x1d\x00\xad\x64\x27\x6b\x69\xa7\ +\x90\xd9\xdf\xd5\x9d\x20\x3b\x41\xee\xf5\xfb\x06\x39\x61\x77\x22\ +\xb2\x80\x02\x3e\x14\x70\xb7\xc2\x9f\x7d\x99\xb3\x0a\xdb\x9c\x31\ +\xdb\x00\x7f\x52\xb1\xfa\x67\x65\x65\x0d\xe7\x6e\x7c\x0b\xaf\x5c\ +\xfa\x35\xec\x27\x57\xb0\xfc\xe0\x11\xd6\xfb\x55\xca\x51\xac\xfd\ +\x58\x57\x2b\x94\x8e\xc1\x53\xbb\x6b\x15\x9b\xda\x3c\x6b\x77\xdc\ +\xce\x1e\xed\xfe\x8f\xec\x1e\x52\x1d\x87\xc8\x9a\x4e\x83\xf2\xfc\ +\xb9\x05\x11\xaa\x13\x49\x97\xad\x5c\x52\x78\xea\x59\xc1\xe5\xbb\ +\xae\xdc\x2e\x25\xd1\x94\xa9\x53\x70\x38\xa4\xe6\x30\x75\x76\x01\ +\xcc\xec\xe2\xd1\x60\x3f\x55\x55\x9c\x34\xbb\x9d\x51\x59\x54\xd4\ +\x38\xbc\x34\x88\x6c\xf9\x67\x1d\x9c\xef\x98\xc9\x23\x15\x8d\xd6\ +\x96\x12\x47\xae\x57\x78\x4d\xb8\x49\xee\xb0\xf4\xb3\x8e\x57\x6a\ +\x74\x6a\x9c\x8e\x6c\xd6\x11\x93\x01\xdb\xf3\x5a\xdd\x4d\x28\x4d\ +\xca\x29\xaa\xcd\x84\x6d\xbb\x8f\x37\x5f\xdf\xc0\x37\x7f\xb3\x8f\ +\xdf\xff\x9d\xab\xd8\x5a\xeb\xb3\xfe\x66\x8d\x4d\x1c\x3a\x02\xf2\ +\xe8\xf1\x65\xcc\x2d\x34\xd1\x6c\xd7\xad\xed\x57\x9d\x2e\xbe\x39\ +\x1e\x65\x0f\xfd\x2a\x85\x9a\xe0\x93\xd9\xda\x86\x0c\xe4\x6c\x89\ +\x21\x7f\xc5\x45\xb5\x2b\x76\xbf\x30\xbd\x68\x57\x96\x26\x02\x35\ +\xf9\x21\x7e\xa4\xb1\x96\xac\xb0\xad\x65\x3b\xe0\xd5\x13\x1c\x3b\ +\x59\xc2\xd9\xc7\x1a\x78\xf0\x81\x3a\x8e\x1d\x9b\x43\xa5\x5e\x63\ +\xbb\xed\x51\x96\xa6\xd0\xe1\x4d\x28\xa7\x84\xa4\xb7\x83\x0b\xaf\ +\xec\xe2\xe5\xe7\x56\x70\xf1\xad\x01\xe5\x03\x0f\x87\x4e\xb7\x70\ +\x84\xf2\x95\xee\xd5\x4d\x29\xdf\x68\x81\x53\x29\xa1\x24\xee\xb6\ +\xeb\x93\x74\xf2\x29\x70\x93\xad\x31\x65\xee\xb1\x8e\x7e\x94\x3c\ +\x92\xa5\x47\xd3\x61\x4a\x81\xd1\xae\xe4\xf1\xb1\x63\x2b\x25\x57\ +\x31\xac\xca\x4c\x32\xd9\xc3\x97\xfe\xf2\xa7\x70\xf2\xc4\x31\x96\ +\xa5\x04\x2f\xbf\x70\x19\x2f\xfc\xf6\x15\xf8\xf3\x0c\x4b\x7f\xae\ +\xed\xa5\x77\x21\x22\x02\x4d\xea\x69\x22\xb1\xb1\xe0\x99\x3c\x55\ +\x2e\xe9\xd8\xcb\x1a\x82\x20\xb0\xb6\x75\x3c\xa6\x1c\xc2\x70\x8a\ +\x67\x48\xf9\xaf\x47\x39\x56\xf2\x8e\xd2\xaa\x9d\x6b\x36\xab\x67\ +\xbc\x63\x99\xb5\xb2\x6a\x88\xcd\xce\xf1\x9c\x38\x34\x81\xa6\x32\ +\xad\x34\x08\x17\xfd\xda\x91\xd5\x79\x3a\x24\xdb\x0a\x14\x94\x2f\ +\xcb\x0b\xd9\xf3\xa5\x09\x51\xdd\xf5\xba\xbd\x1a\x61\xbb\xdb\xc5\ +\xb1\xb3\x2d\xfc\xa5\x9f\x3f\x82\x07\x1f\x3f\x44\x1e\x36\x89\x5c\ +\x48\x12\xe3\x81\x76\x2b\x3a\x5c\x19\x1d\x2a\x0f\xc2\x28\xad\xd4\ +\x4c\x6f\xee\xe2\x83\xb4\xd4\xeb\x5e\xd6\x5c\x6f\x7f\x79\x96\x3d\ +\x99\x24\xad\x64\x49\xa9\xf9\xdd\xd0\x09\xe3\x52\x3f\x48\xaa\xa2\ +\xb0\x74\xd1\x49\x32\xba\xd3\xd3\xc0\xbf\xa9\xd2\x64\xf8\x2d\x0e\ +\xf2\x28\xe7\x92\xe5\x9b\xd9\xe5\x74\xb9\x78\x0c\xa4\x31\x4f\x99\ +\x41\x7a\x4b\x88\x3c\x67\xf6\x52\x67\x3c\xda\xdb\xfc\x3b\x50\x4c\ +\xb7\xee\xfa\x17\x1e\xe7\x2f\x17\x15\x1d\x35\xa9\x95\x01\x8f\x25\ +\x4c\x13\x6a\x9a\xf8\x0e\x98\xf9\xee\xb3\x51\x0f\x82\xe5\x8a\xb4\ +\xaa\xaf\x22\x59\xbb\xbf\xe7\x21\xee\x56\xb0\xd8\xbc\x1f\xa7\x0e\ +\x3d\x85\x47\xee\x7f\x1a\x47\x0f\x9d\x11\x32\xe6\x2f\x65\x5b\x7e\ +\xc7\xfa\x5e\x1c\x65\x8e\xb6\x8c\xd8\x02\x0a\x28\xe0\x3d\x42\xf1\ +\xc5\x14\x50\xc0\xbd\x83\x62\x42\xad\x80\x02\x3e\xc4\x50\x7c\xfc\ +\xf7\x18\x72\x86\xde\x2e\xa9\xbc\x0b\xa3\x3f\x78\xc1\xe6\x9d\x08\ +\x98\xed\x90\x50\x9d\x1a\xa9\xa1\xea\x3a\x44\x0e\xa6\xbe\xd4\x61\ +\xf5\xd8\x11\x62\x67\xaa\xbf\xbe\x8a\xf3\x5f\xfd\x1d\xac\xfd\xc1\ +\x6f\xa1\x3d\xda\x45\x95\x3d\x29\x75\x98\x06\xdd\x48\x23\x1a\xba\ +\x67\xdd\x06\xe6\x91\xc4\xa6\xd7\xa0\x44\x92\x8c\x30\x88\x46\xd6\ +\x21\xd7\x60\x4f\x1a\xc7\x0e\x27\x71\x6b\xbc\x42\x78\x75\x34\x9d\ +\xeb\x30\x2a\x42\x3e\x79\x8f\x90\xb8\x45\x85\x7e\x1a\x00\xcf\x07\ +\x68\x72\x30\xd7\xbc\xc3\xa9\x97\x2c\x4c\xb1\xee\xde\x2d\xe0\xcc\ +\x33\xb6\x33\xb8\x9c\x8e\xef\x2c\x6c\x0e\x07\xdd\xc7\x0c\xbf\xf9\ +\xd1\xa0\x04\x29\x52\x67\x96\x56\xa2\xdb\x35\xad\xc4\x40\xba\xd9\ +\xc5\x77\x76\x36\x22\xaf\x8e\x3f\x15\x73\x17\xa8\x73\xcf\x4e\xb2\ +\x70\x51\xb5\x74\x39\x2d\x55\xf2\x2f\xa5\x86\x4c\x99\x94\x12\x8c\ +\xf8\x1b\x47\x35\xac\xd1\xae\x3b\x89\xb0\x55\x2d\xa3\x57\xaf\x61\ +\x30\x5f\xc5\xa0\x41\x0c\xcb\x13\x5c\xdb\x9f\x60\x63\xcb\xc3\xa0\ +\xac\xa3\x20\x53\x34\x6a\x25\x04\x9a\xb8\x61\x27\x74\x48\x5e\x07\ +\x4a\xa3\xc5\x93\x0d\x44\x31\x6f\x44\xa3\x06\x19\xa6\x3b\xd6\x98\ +\x48\x1b\x38\xa0\xa7\xdc\x4d\x30\xce\x3a\xcb\x7a\x4d\x26\xce\x9f\ +\xba\xf2\x42\xe9\xbc\x28\xad\x2e\xcd\xf4\x21\x9d\xe1\xb3\xb4\xb1\ +\x5c\x54\x42\xd8\x1d\x1a\x73\xed\x16\x16\xb5\x0a\xfc\x70\x88\xa5\ +\x13\x0d\xd4\x9a\x0d\x34\xea\x75\x54\xfd\x86\x1d\x09\x34\x19\xfb\ +\xb8\xf2\xc6\x4d\xbc\xf0\xcd\x2b\xb8\x76\x69\x0f\xe9\x64\x84\x6a\ +\xdd\x43\xbd\x4e\x7c\xda\xd5\x43\x5c\xf9\x44\x48\xce\xc7\xa9\xca\ +\xc7\xc6\x01\x49\x54\xa2\x41\xa3\x88\xe5\x8b\x0c\x2d\x4f\x34\xb0\ +\x14\x61\xfe\x54\x80\x8f\x7f\xe1\x01\x34\x1a\x4d\x20\x0a\xd9\x89\ +\xdf\xc3\x1f\xfd\x4f\x6b\xb8\x74\x7e\x17\x95\x66\x82\xc6\x82\x8f\ +\x30\x74\xf7\xac\xf9\x95\x80\xf1\x31\xef\xb4\x33\x6d\x90\x20\xd1\ +\x4a\x6a\x95\x57\xc6\x65\x83\x67\x8c\x4c\x03\x52\xb6\xb2\xdf\x62\ +\x27\x50\x63\xfc\x60\x9c\x52\x8d\x27\x13\xb7\x23\xcd\x56\x84\x67\ +\x93\xc6\x6e\xa2\x55\x65\x46\x3e\x18\xc6\xf2\x24\x0b\x43\xff\x49\ +\xbf\x82\xa4\x1b\x63\x34\xe2\xa7\x93\x32\xed\x87\xc6\x78\xe8\x4c\ +\x88\x4f\x9e\x0d\xf1\x78\x7b\x09\xc7\x74\x37\xdc\x5e\x6c\x2b\xab\ +\xed\x5e\xc2\xfd\x12\x52\xd2\xd7\xef\x97\x31\xea\xe9\xa8\xc6\x04\ +\x7b\xbd\x01\xbf\x33\xd2\x1e\xc5\xf0\xc9\x0b\x8f\x74\xd6\x58\x16\ +\x2a\xcc\x11\x4d\xa0\x05\x8c\x5c\x17\xfe\x07\x65\x0f\xa1\x0d\x48\ +\x66\xe5\x82\x2f\x95\x73\xf1\xd7\xdd\xc1\xa7\x52\xc9\x84\x89\xd8\ +\x69\x42\x1d\xdd\xee\x25\x4b\xd3\x64\x79\x2f\x93\xa5\x26\xf3\x23\ +\x6c\x32\x09\xa6\xb6\xb7\x80\xc2\x59\x58\x7d\x43\x99\x4f\xe1\xb0\ +\xef\xdb\x21\x71\x7c\xd5\x8f\xaa\xf3\xe3\xe2\xb5\xc1\x2b\x17\xc4\ +\xf9\xc9\xca\xae\xca\x9c\x3c\x5b\xf9\xb5\x7a\x89\x2a\xeb\x2d\xc1\ +\x41\x7c\x32\xd0\x3f\xf9\x9f\xe7\xa2\x0d\x12\x89\x17\xfc\x3e\x34\ +\x91\xa8\xb0\x2e\x26\x01\xdf\x9e\x06\xb6\x14\xcc\x77\x6e\x1a\xb9\ +\x24\x9f\xac\x0c\x37\xea\xb6\x43\x42\xdf\xbb\x76\x8d\xe8\xc8\xc8\ +\x51\x29\x45\xb7\x1f\xe1\x8d\x6b\x5b\x48\x5a\xc7\x70\xe4\x13\x9f\ +\xc6\x23\x3f\xfa\x34\xce\xfe\xc8\x93\xc4\x46\xc6\xb3\x4c\xd8\xf7\ +\xa4\x71\x55\x41\x96\x16\x8b\x4b\x91\x1e\x44\x3e\xe3\x46\x98\x75\ +\xa3\x3a\xeb\x6d\x0a\x33\x6e\xb3\x90\x07\xfd\x9e\x40\x4e\x54\x1e\ +\xe1\xdb\x88\x2c\xa0\x80\x1f\x30\x98\xfd\x18\xad\xb2\xc8\xbf\xb8\ +\xdb\x0a\x7f\xee\x26\x95\x6e\xaa\x69\xc6\x6c\xc0\x74\x27\x67\xc5\ +\x77\xc7\x16\x3e\xf3\xdd\x6f\xe0\x85\x95\x7f\x8d\xab\xfb\xcf\xe0\ +\xc4\xc9\x26\x2a\xf5\x36\x4a\x49\xc8\x3a\x26\x36\x74\xaa\xd7\x74\ +\x2c\xa1\xda\xe2\x34\xa5\x2c\x65\x6d\x4d\xcc\x76\x83\x0d\x21\xeb\ +\xfc\x88\x72\x96\xda\x9c\x54\x67\x46\x2a\x4a\xfa\x93\x5f\x8b\x4f\ +\xf5\x5b\x06\xa6\x33\x3a\x15\x8c\xaa\xb3\xe0\xc3\xda\xd6\xc8\x23\ +\x75\x99\x6a\x49\x21\xb8\x7a\x58\x7e\x9c\x3f\xa7\x4e\x9d\x09\xd4\ +\xb1\x52\x56\x7d\xe8\xda\x06\xe7\xa2\x89\x02\x51\xe1\xa4\x3e\x82\ +\x50\x9a\x36\x8b\xcb\xb4\x53\xcd\x54\x2b\xc5\xd5\xc6\x4c\x81\xc2\ +\x98\x03\x1f\xc6\xa1\x6a\x5b\xbb\x8a\xb5\x3e\x41\x9c\x54\x6c\x65\ +\xdd\xa5\xc6\x34\x9a\x3d\xeb\x57\x3f\x4c\x4d\x0d\xc3\x32\x5a\x73\ +\x3e\x3a\x94\x53\x5f\x7d\x61\x0f\xdf\xfa\xda\x2a\xbe\xf5\xf5\x75\ +\xca\xaa\x6c\x05\x3c\xc9\x6b\x29\x5a\xed\x1a\x96\x8f\x2c\xa0\xd1\ +\x6e\xa0\xbd\xd8\xb2\x49\x49\xed\xee\xb6\xb6\xc1\x48\x20\x25\xe4\ +\xab\x70\xab\xcd\x16\x4d\x6a\x45\xf4\xb3\xc5\x58\x9a\x9c\xa4\xec\ +\x66\x1c\x11\x9d\xd4\x58\xbb\x23\xb3\xd2\xc4\xbc\xb1\xb6\x8b\x76\ +\xd4\x92\xe9\x9a\x72\x08\xe9\x75\x84\x4a\x30\xc6\xc2\x52\x19\x8f\ +\x3c\x56\xc3\xfd\x8f\x2d\xe2\xd0\xf1\x26\x65\x96\x86\xc9\x46\x51\ +\x4f\x6d\x05\xe9\xab\xfb\xd8\xdc\xde\xc1\x6b\xaf\xdc\xc4\xb5\xcb\ +\x43\xf4\x06\x3e\x76\x77\x62\xe6\x77\x84\x1a\xfd\x56\x6b\x5a\x68\ +\xa3\x89\xac\x32\xe5\x0f\xd2\x33\x4e\x28\x57\x33\xac\x68\x67\x4c\ +\xba\xbf\x57\x3c\x17\x1d\x26\x6b\x1b\x2f\xc5\x54\x39\x8b\xe7\x4a\ +\x9f\xdc\xb5\x91\x48\x77\xa9\x55\x10\x8f\x07\x38\xf6\x40\x15\x3f\ +\xf6\xe5\x4f\x13\x0f\xe5\x27\x2f\xc2\xbf\xfc\x95\x67\xd1\xd9\x19\ +\xc1\xaf\x65\x33\x43\xc4\xe1\xda\x60\x1a\x98\x36\xdd\x89\x55\x6b\ +\x79\x94\xf3\x54\x4e\x27\xa8\x52\xbe\xaa\x54\x43\xca\x9f\x2c\xe7\ +\xf1\xd8\xee\x48\xd3\x4e\xb4\xfd\xdd\x11\xe5\x17\x2d\xb0\x13\x3d\ +\xe2\xa6\x48\x12\x8d\x2e\xff\xad\xf8\x1c\x70\xcf\x68\xb3\x1d\x69\ +\xc6\x4b\x72\x5e\xfe\xf8\xbd\xb8\xc9\x5a\xf1\x5d\x7e\xf9\x30\xa0\ +\x93\x15\xa5\xaa\x6d\x1e\x9b\x8c\x23\xb7\x5e\x67\x80\x9d\x1b\x3d\ +\xec\x0e\x23\x3c\xf0\xd1\x16\xbe\xf2\xb3\xa7\x70\xe6\xd1\x36\xc6\ +\xa3\x39\x96\x1b\xe2\xd2\x7d\x7c\xfa\x8e\x88\xcf\x88\x10\x61\x8e\ +\x04\x03\x87\x46\xf6\x8a\x26\x73\x63\x3c\x02\x9a\x8c\xb7\x26\xf7\ +\x1b\x08\x1f\xbd\x8a\x56\xe2\x12\x5f\x9d\xd9\xd9\x99\x7f\x7a\x35\ +\x33\xdd\x5d\xac\xb4\xb5\xc4\xeb\x2f\x3c\x4a\xad\xd3\xc9\xbf\x20\ +\x2f\x51\x52\xd4\x7f\x32\x46\x89\x16\xf3\x90\xf9\x95\x95\x8c\xb7\ +\x80\xb3\xb1\xf7\xd4\xf1\xed\xbe\xde\x09\xf2\xb0\x8e\x16\xd2\x66\ +\x69\xd7\xb7\x9e\xa5\x87\xb4\xe7\xf9\xa6\x89\x35\xb9\x51\x2a\xb2\ +\xc5\x59\xbe\xe5\x0b\xe5\x24\x9d\x05\xca\x6f\xc5\xa5\x9d\x79\x43\ +\x19\x5f\xa9\xd7\x69\x15\xe9\x20\xc0\xb1\xd6\x53\x78\xf8\xd4\x17\ +\xf0\xd8\xd9\x1f\x42\xb3\x55\x35\xbe\xd1\xc5\x15\x10\xf7\xca\xc0\ +\xc5\xfd\x7e\xd3\x50\x40\x01\x1f\x46\x28\xbe\x92\x02\x0a\xb8\x77\ +\x50\x4c\xa8\x15\x50\xc0\x87\x18\x8a\x8f\xff\x03\x84\x59\xb9\xfe\ +\x2e\x8c\xce\xc5\x7f\xc1\x07\x2b\xdc\xbc\x5b\x4e\x33\x76\x75\x80\ +\xe8\xcd\xd1\xa1\x0e\x8d\x1b\x08\x98\x26\x83\x2f\x35\x17\xea\xcc\ +\xd8\x9d\x59\x84\x2b\xdf\xfe\x63\xdc\xfc\xea\x57\xd1\xff\xf6\xf3\ +\x68\x2d\x8f\xd1\xf4\x7d\x76\xe0\xd9\x61\x65\x5f\xc7\x0f\x34\x50\ +\x9c\x20\xd1\xea\x58\x4d\xe8\xa8\xd3\x9e\xa6\xe8\xf7\xfa\x18\x8e\ +\x46\xb0\xcb\xdf\xd5\xd9\x62\x47\x52\x13\x60\x1a\xb8\x57\x27\xdc\ +\x3a\x7e\xec\x68\xa9\x3f\x28\x82\x72\xca\x9d\x9a\x51\x97\x11\x64\ +\x2b\x86\x35\xb0\x62\x84\x8b\x7e\x17\xce\x9a\x35\xa3\x37\x0b\x27\ +\x3c\x0a\x33\x83\xcf\x8c\x4e\x6b\xaa\xa1\xcc\xfc\x9b\x3e\x03\xa3\ +\x47\xd1\xdc\xc2\x1f\x07\x07\xe1\x5d\x40\x71\xcc\xba\x82\xa6\xb7\ +\x5e\x9f\xd9\x39\x37\xf2\xc0\x88\x53\x07\xdb\xac\xf8\x92\x7f\x87\ +\xd1\x99\x15\x87\x8b\x47\xdd\x66\xf1\x47\x93\x37\xba\x23\x43\x3f\ +\xeb\xd7\x97\x63\xbb\xc3\x4a\xfa\x5d\x1a\xb7\xd9\x83\xde\xa3\xdd\ +\x7e\x79\x0e\x3d\x1d\x8b\x78\xb8\x82\xf3\x8c\xeb\x62\x77\x88\x6e\ +\x52\x46\xad\x35\xc2\x11\x2f\xd1\xde\x25\x78\x24\x2c\x16\x5e\xd2\ +\xa1\x79\x3a\xf1\x5b\x7c\x27\x07\xa1\x63\x93\xf4\xb3\x63\x92\x34\ +\x16\xc2\x97\x4d\xb0\x29\x2f\x44\x9a\x06\xde\x18\x4e\xbe\x8d\x97\ +\x04\x37\x21\xa1\xd0\x54\xcc\xc2\x3d\x8e\xcb\xca\x1f\x39\x53\xe5\ +\x63\x1d\x67\xa9\x74\xd1\x2a\x72\x4d\x56\x55\xc2\x00\xcd\xa5\x0a\ +\xe6\x0f\x07\x38\x7e\xac\x89\xc5\x43\x8b\x68\x36\xea\xa8\xf1\x41\ +\x98\x60\x77\xbd\x8f\x67\x7e\xe7\x26\x2e\x9d\xdb\x64\x59\x8a\x50\ +\x69\x8c\x11\x54\x19\x81\x8d\x1a\x88\xb6\x8c\x6f\x52\x4d\x43\x35\ +\x1b\x08\x14\xab\xd5\x39\x8f\x06\x2c\x67\x1a\x4c\xd2\x84\x85\x4e\ +\x90\xac\x46\x78\xf0\xe9\x45\x9c\x7d\xec\x0c\xc3\xb3\x23\x4f\x46\ +\x6a\x17\xe5\x1f\xfd\x8b\xab\xd8\x5c\xdf\x41\xb5\xe1\xb3\xd3\x5e\ +\x81\x1f\x6a\x76\xc3\x27\xed\x63\x24\x23\x1d\x99\xa8\x5d\x5f\x36\ +\x35\x6a\xe5\x4f\x79\x68\x93\x69\x8c\x58\x51\x9b\x9d\x4b\x7c\x46\ +\x4c\x56\x0e\xe8\x51\x3b\xd2\x6c\x22\x2e\x49\x9c\x7f\x0b\xa3\x72\ +\x2f\xde\xca\x13\xbd\x2b\xc7\xd3\x12\x93\x49\x9a\x47\x9a\x18\x0b\ +\x31\x60\x9c\xcd\xb6\x8f\xa3\x8b\x15\xdc\x7f\x66\x88\x87\xcf\x56\ +\x71\x7c\xd2\x44\xad\x1f\xa1\x77\x33\x41\x79\x77\x88\xfd\xee\x04\ +\x9d\xdd\x14\x3b\x3d\x0f\xa3\xfd\x18\xd1\xd0\x63\x11\x19\xb1\xcc\ +\x7a\x36\x41\xd6\xf0\xc6\x68\x07\x25\x34\x19\x89\x36\x32\x84\x24\ +\xb4\x42\x32\x7d\xc6\xa7\x41\xd8\x3c\xdf\x35\xd0\x64\x13\x4e\xa2\ +\x4b\x3f\x6a\xdd\x57\xae\x3c\x77\x66\xfb\xbe\x8c\x58\x1a\xec\x9f\ +\xd1\xae\x8c\x30\x3f\x52\x1d\x18\x57\x32\xaf\xd9\xc7\x67\x46\x03\ +\xf3\xe6\xfc\x1e\x84\x20\x58\xf8\xfc\x91\x6f\xd2\x32\x83\xd3\x80\ +\x66\xf7\xcb\xd1\xf2\x65\x7f\x47\xb7\xd9\xd1\x8f\x23\x49\x0e\xd9\ +\xc3\x3a\xcb\xec\xf8\x9a\xe2\x9c\xd1\xbb\xd5\xef\x16\xa3\x99\x5d\ +\x30\x7b\xd9\x80\xa9\xdd\xbd\xa2\x87\x64\xe9\x58\x56\x1b\x44\xa5\ +\x6a\xbb\xd1\x34\xb1\x46\xaf\x65\xd6\x7f\x41\xad\x8e\x6a\xb5\x82\ +\x80\xf5\x9f\xef\xf1\x7b\xd4\x2a\x82\xb1\x06\x75\x2b\x18\x4d\x52\ +\x5c\xdb\xd9\xc5\xc5\xeb\xfb\x98\x54\x4f\xe3\xf4\x2f\x7c\x11\x1f\ +\xfd\xec\x0f\xe3\xe8\x43\x27\x8d\xf6\xf1\x28\x45\x39\x70\x78\xad\ +\xfa\xb0\x0c\xa0\x3e\xe7\xa3\x60\xca\xc4\xdb\x40\xee\xb3\x6e\xb9\ +\x79\xc6\xfe\x4e\xce\x1f\x08\xe4\xb4\x0a\x72\x1a\x04\xb3\xfa\x02\ +\x0a\xf8\x41\x05\xab\xff\x59\xd0\xa7\xe5\x9e\xe6\xbc\xce\x99\x85\ +\xa9\x3f\xd7\x1e\xa8\x9e\x4d\x27\x5a\x78\x14\xb2\xbe\x02\x2e\x9d\ +\x7f\x0b\xcf\x5d\xfe\x2d\x3c\x7f\xe5\xb7\xd0\x58\x1e\x60\x69\x79\ +\x91\xf5\x42\x95\xa8\xe4\x93\xed\x85\x1a\x6a\x0d\xc4\xab\x8d\x51\ +\x83\x4e\x7d\x9a\xb0\xbd\x93\xbc\x45\xb3\xc9\x5e\x16\x8f\xa2\xd7\ +\x8b\x5a\xd5\x2b\x22\x45\x51\xab\x3e\xcb\x6a\x79\xe7\x49\x8a\xa3\ +\x53\xce\xce\x9b\xdc\x5d\xad\x2f\x93\x53\xa9\xcb\xfc\x1d\x40\x8e\ +\xd4\xd9\x0b\xb3\xa5\xaa\xc4\x76\x53\x13\x45\x8c\xd8\x26\x59\x9c\ +\xa3\x4d\x1a\x28\xfd\x0e\xdf\x41\xd8\xbc\x7d\x14\xe4\xaa\x40\xe4\ +\xcb\x8f\xab\xe5\x33\x30\x8d\xc5\x62\xc1\xcd\x3b\x5f\x79\xdd\xad\ +\x36\x4d\xeb\x27\xd4\xce\xba\x85\x43\x6e\x3d\x85\x64\xd3\x5a\x85\ +\x0c\xa6\xc5\xb8\x34\xc0\xdc\x52\x80\x6b\xd7\x37\xf1\xdd\xaf\x0f\ +\xf1\xdd\x6f\xac\xe0\xea\xa5\x1e\xc2\x1a\xb1\x96\xd9\xc6\x4e\xb4\ +\xbb\xbe\x82\xe5\xc3\x94\x4d\xda\x55\xd4\xea\x75\xca\x48\x25\x0c\ +\x86\x23\x45\x6e\x24\x58\x3b\xa1\xb8\x95\x8f\x22\x42\x8f\x92\x2a\ +\x99\x43\x9e\x04\xe6\x31\xa3\xcd\x0c\xf4\x4b\x59\x45\xf9\x22\xde\ +\xc8\xaf\x76\xd9\xd9\x84\x0f\xe5\xb6\x32\x69\x96\xbc\x30\xf6\xfa\ +\x58\x5e\xa8\xe2\xd4\x43\x4d\x3c\xf0\x91\x26\x4e\x1d\x5d\x42\xfb\ +\x30\xdb\x95\x49\x88\x98\xf9\xad\x53\x1f\x7c\x06\xec\xec\x77\x71\ +\xf3\xea\x0e\xd6\x6e\x8c\xf0\xd2\x0b\xdb\xd8\xdc\x66\x39\xf2\xeb\ +\x68\xb7\xc6\xf4\xa3\xdd\x69\xda\x11\xa6\xb6\x88\x7f\xca\x19\x65\ +\x9f\x39\xab\x79\x0c\x2b\x3f\x07\x8f\xf2\x5f\x49\x71\xc2\x8b\xfc\ +\xf2\x45\xff\x74\xb5\x64\xd9\x24\x96\xd7\xc5\xe7\x7e\xea\x13\x38\ +\x79\xfa\x28\xd2\xb8\x8c\x8d\xf5\x0d\x7c\xed\x9f\x9d\xc3\x38\x88\ +\xac\xdd\xb3\x32\xc4\xbf\xf0\x28\x7d\x65\xb6\x83\x9a\xd4\xd3\x29\ +\x05\x55\xaa\x4a\x7d\x40\x39\x53\xe9\xee\xf5\x12\xec\xef\xe9\x64\ +\x02\xf6\x09\xd8\xfe\x69\x97\x9c\xd1\xc1\x78\xf5\x13\xc8\x68\x5a\ +\x3e\x6a\xa7\x67\x69\xb5\x53\x2e\xa8\xb7\x09\x28\xc9\x63\x92\xff\ +\xe4\x44\xef\xae\x6d\x77\x25\xbc\x54\xca\x8e\x98\xe4\x4b\x3b\x3a\ +\x75\xe4\x72\x67\x7b\x88\xf5\x9b\x7d\xc4\xde\x04\x8f\x3d\xe5\xe3\ +\xf3\x3f\x7e\x16\x27\x1e\x6a\x03\xd1\x1c\xdb\x7a\x1d\x33\xe9\x76\ +\xa6\x59\xea\x33\x59\xcf\x90\x98\x22\x64\x59\x1c\xb9\x5d\xc6\x4b\ +\x63\x1d\x5f\x26\xbf\xf3\x5b\xb4\xb2\x4e\x70\xf7\xe8\xe6\xde\xb3\ +\x70\xc2\xae\x34\xc9\x86\xb8\xcc\x4a\x6e\x8e\x74\x79\x74\x20\xbd\ +\x94\x8c\xb7\x77\x02\x79\xcd\x27\xd4\xf2\x60\x2a\x73\x16\x80\xca\ +\x2d\xc1\x66\x0c\xa6\x9d\x9a\x6f\xf1\x75\x67\xc8\x50\x1a\xea\xec\ +\x93\x76\x74\x33\x15\xb2\xcf\x62\xb7\x34\x99\x4e\x20\x3b\x67\xa3\ +\xc9\x4c\xed\xd2\x2c\x91\x31\x9a\x42\x26\xa7\x0c\x8d\x4e\xcd\x90\ +\xbb\xf1\x96\x69\x08\xd5\x9f\x64\x1d\xb5\xbf\xc5\x70\xfd\x05\x3c\ +\x78\x8a\xb2\xd2\xc2\x47\xf1\xe4\xe3\x4f\xb3\x1c\xd5\xac\x8e\xb3\ +\xfa\x45\xb2\x58\x16\xab\x4a\x97\x8b\xbd\x80\x02\x0a\x78\x27\x78\ +\x0f\x5f\x7a\x01\x05\x14\xf0\x1e\xa1\x98\x50\x2b\xa0\x80\x0f\x31\ +\x14\x1f\xff\x1d\x40\x4c\xc9\x25\x8d\x9c\x41\xef\x57\xf2\x78\x0f\ +\x8c\x15\xca\xdb\xa3\xfa\x60\x05\x1c\xc6\x90\x47\x7a\x0b\xb8\x58\ +\xdd\x64\x4f\x3e\x0c\xe2\x3c\x5a\x7f\x54\x9d\x41\x76\x6a\x74\xef\ +\x93\xad\xf0\x64\xa7\x67\xfd\xf2\x35\x5c\xfb\xbd\xdf\xc5\xc6\xbf\ +\xfe\x2d\x24\x3b\x17\x71\x68\x71\x1e\x0d\x3f\x44\xc8\x8e\xbd\x2e\ +\x47\x57\x47\x52\xab\x61\xc7\xa9\x76\xa0\xa9\x43\x99\x62\x18\x45\ +\xe8\xf5\x07\x88\x87\x31\x71\x6a\x05\xaf\x06\x58\x88\x2f\x23\xcb\ +\xdd\x45\x41\x0d\x0d\xd3\x21\x13\xe1\x71\xba\x0c\x32\x7b\x41\xd6\ +\x74\x39\x8a\x05\x7c\x4b\x93\x29\xf2\x9a\xb7\x6e\x36\x58\x4e\xbd\ +\xed\x22\x73\x56\xf4\xe3\x70\x5b\x27\x96\x6a\xd6\x2f\x74\x76\xe6\ +\x96\xd3\xa0\x8e\xb4\xd3\x1a\x52\x59\x3b\x4f\x4e\x93\xd1\x98\x5b\ +\xdb\x73\x10\x80\x66\xf9\x71\xb8\xd4\xf9\x93\x5e\x9d\x6d\x33\x9b\ +\xbd\x3a\x94\x8e\x2e\x85\x73\x0f\xf5\x66\x66\xdf\x9e\x84\x6b\xf5\ +\xaa\xaf\x7c\xa0\x5e\x07\xf6\x78\x4e\x0b\x5f\xab\xa9\x91\xf2\x97\ +\x60\x9b\xe6\xeb\x23\x1f\x7d\x7f\x82\xfd\x6a\x09\x6f\x8e\xab\xb8\ +\x14\x7b\x58\xd7\x0a\xed\xf9\x18\xad\xea\x18\xc7\xf8\x30\x17\x89\ +\xb7\x8c\x32\x7b\xb5\x71\x12\x11\x11\xf1\xe9\x21\x03\xac\x5b\x2a\ +\x42\xd8\x41\xd5\x84\x81\x0d\x80\x31\x22\x9b\x6c\xb1\xdd\x38\x19\ +\x57\xe8\xc9\x06\xf5\xc4\x3b\x5a\x4c\x3b\xb1\xd4\xdb\xc0\x9d\xa5\ +\x3f\x9f\x78\xa3\x9e\xaa\xd9\x28\x0e\xbd\x64\x1e\x6b\x90\x8b\x5a\ +\x26\x4c\xc7\xc0\x2c\xb4\x9b\x58\x3a\xda\xb0\x95\xd8\x73\xcb\x0d\ +\x34\x17\x2b\xec\x34\x57\xb1\x7a\x7d\x15\xaf\x3d\xb3\x8b\x9d\x1b\ +\x03\xe8\x9e\xbd\x80\x69\x28\x57\x48\x0f\x31\x3a\x1a\x5c\x14\xa2\ +\x4c\x71\xd8\x68\x86\x2c\x65\x47\x02\x92\x28\x41\x3c\xd2\x0e\x31\ +\xa6\x83\x11\x26\x49\x82\x85\x63\x15\x3c\xf2\x43\x27\x30\x7f\xa8\ +\x85\x32\xf9\x54\x0e\x22\x5c\x3f\xb7\x85\x67\x7f\xe7\x06\x86\xbd\ +\x18\x41\xc5\x47\xbd\xce\xf4\x7a\xc4\x99\xb2\x3c\xa7\x5a\x31\xad\ +\x4e\xbf\x56\x43\x67\x60\x99\x44\x5e\x5a\x54\xf4\x47\xbd\x91\x22\ +\x6b\xd2\x60\x83\x9c\x34\xe8\x9e\xb4\xb1\xad\xb8\x76\x8f\x11\x69\ +\x3c\x92\x42\x7f\x16\x86\xf9\x32\x2c\x63\xa8\xbb\xd2\xa2\xb2\xed\ +\x4e\x40\x18\xc3\x9f\xaf\xe0\xec\xf1\x09\xe6\xc9\x8b\x52\x69\x88\ +\xe6\x0e\x50\xeb\x92\x69\xd7\xc7\xe8\xac\xc6\x88\xfb\xe0\x77\xe5\ +\x8e\x7c\xac\x30\x6d\x75\x3f\xc6\xbc\x37\xc6\x5c\x00\x34\x82\x12\ +\xea\x44\x1e\x32\x0d\x21\x29\xb7\xe3\xaf\x8c\x42\x97\xa7\xca\x3b\ +\x1d\xb5\xa3\xb9\x9b\xcc\xd6\xdc\xf5\x88\x93\x2e\x5f\x05\xb2\x13\ +\xb1\xd2\xca\x4d\xae\xfa\x7e\x9d\x9b\x1e\x15\x13\xa5\x5b\x38\x8d\ +\xf7\xb3\x60\xfe\xf4\x72\xf9\x63\xae\x22\xc1\xe9\x32\xa0\x8b\x2b\ +\x2c\xce\x8f\x69\x9d\x59\x6f\x43\x91\xe3\x15\x0d\xc6\xbf\xcc\xdd\ +\xec\xc5\x47\xd9\x3b\xea\xec\x88\x25\x59\xe7\x0f\x79\xe3\xfc\x39\ +\xff\xa2\x57\x1e\xcc\x4e\x83\xca\x52\xf9\x17\x4a\x37\x39\x6f\x3e\ +\x9d\x2a\x63\xee\x4f\xcc\xca\x70\xc9\xca\x5e\xf4\xaf\x63\xc2\x74\ +\xb4\x55\xca\x00\xb6\xab\x2d\x08\x50\xad\x57\x51\xaf\x56\xe1\x6b\ +\xf5\x35\xb3\x53\x25\x27\xf4\x6b\xe8\x47\x29\xfa\xe3\x18\x57\x36\ +\x7a\xb8\xb2\x9b\x62\xee\x81\x8f\xe0\x81\xcf\x3c\x8d\x47\xbe\xf0\ +\xef\x60\xf9\xd4\x09\x8b\xd0\x8e\x06\x63\x3c\x2e\x55\x79\x3c\xd2\ +\xbc\x03\x38\x52\x9c\x7f\x81\x34\xb7\x85\x91\xf1\x0e\xd6\xf7\x1e\ +\xa6\x44\xdc\x01\x72\x22\x0a\x28\xe0\x07\x15\x5c\x65\x98\x19\xee\ +\x04\x74\xb7\x8f\xd0\x7d\x8d\xaa\x4f\x34\x31\xa0\x81\x77\xed\x1a\ +\xd7\x1d\x52\xdf\x7a\xf6\x5f\xe1\x85\x37\xbf\x8a\x1b\xf1\x8b\x38\ +\x72\x76\x19\x35\x7f\xde\x26\x33\x02\x9b\x21\x62\x6d\xa2\x3a\x45\ +\xed\x52\xaa\xc5\x1a\xba\x87\x8a\xed\x0c\x3d\xa8\x6a\xb3\x4f\xcc\ +\x2a\x33\xd3\x1c\xe8\x09\xd6\x4e\x51\xef\x76\x4f\xb9\xfa\x5f\x01\ +\x5c\x15\xe3\x3c\xa9\x7e\x77\xf2\xa0\x0c\xb2\xf3\x4d\x2b\x98\xaa\ +\x0a\x23\x95\xef\x69\xf5\x94\x3b\x12\xac\xce\x54\xc5\x47\x4b\xc3\ +\x4b\x3c\x26\x17\x99\x7d\xe6\x55\xed\xa4\x74\x56\x21\x13\xa8\xcd\ +\x65\x20\xf3\x90\xd1\x20\xa3\x23\x4d\x78\x84\x33\xc3\x61\x0e\xb3\ +\xc0\xb0\x26\x5b\x09\x87\xaa\x6a\xf9\x93\xac\xe0\x68\xb4\x89\x35\ +\x6a\xd4\x46\x04\x9e\x26\x98\xc8\x73\xfa\xeb\x8d\xfb\x74\x1f\xe0\ +\xd0\x52\x15\xcf\x7e\x7b\x0b\xe7\x5f\xd8\xc1\x4b\xcf\xf7\xb0\xb1\ +\xd9\x47\xb3\x56\xa3\x6f\x4d\xac\x95\xd1\x60\xc3\xda\x5e\xa4\x6c\ +\xd2\x6e\x60\xf1\xc8\xa2\xf1\x3f\x8a\x46\x16\xa7\x64\x11\x5b\xe0\ +\x45\x7c\x8e\x54\x45\x28\xf9\xcc\x81\x8c\xd2\x8b\x16\xfd\x95\x6e\ +\xcb\x17\xe3\x91\x54\xda\x29\xed\xac\xfb\x6d\xa1\x0b\xdb\x13\xd7\ +\xcc\x4d\x10\x0d\x15\x47\xca\x36\x25\xc0\x7d\xf7\xd5\xf0\xc0\x93\ +\x4d\x1c\x3f\xdb\xc6\xfc\x72\xc8\x76\xbf\xca\x34\xe8\x29\x99\x8c\ +\xa8\x89\x9f\x8d\x8d\x2e\x56\x37\xf6\x70\xe3\xda\x18\x17\x5f\xef\ +\x22\x4a\x98\x8e\x86\x8e\x59\x8c\x28\xd7\xa9\x7c\x91\x0f\x1e\xd3\ +\x64\x93\x4c\xa2\xd1\x51\xe9\xd8\xe9\x78\x57\xa2\x7c\xa6\x36\xcb\ +\xd8\x9d\x8a\x3e\x9a\x29\xcb\x60\x1c\x90\xa6\x21\x8e\xdc\x5f\xc7\ +\x67\xbe\xf8\x49\xca\xa0\xda\xe5\x3f\xc1\x33\xdf\x78\x1d\xaf\x7c\ +\x6b\x85\xbc\x09\x8c\x17\xc2\x63\xc0\xf2\xaa\xb2\xa0\x09\xb5\xd6\ +\x5c\xc5\x54\x21\x55\x7a\x7a\xdd\x18\x9d\xfd\x31\x06\x3d\x96\x5d\ +\x15\x68\x81\xd2\x4c\x02\x24\xf3\x5a\x4e\x51\x6f\x8b\xb2\x68\x96\ +\x9d\x2b\xfb\x19\x6e\x82\xed\xec\x62\x58\x47\xbb\x15\x29\x82\xe8\ +\x55\x78\xc6\xa5\xfc\xce\x70\xea\x48\x4d\xe5\x40\xd4\x8f\xb0\xb3\ +\x3e\xc0\xf6\xfa\x10\x11\xf9\xf6\xf1\x2f\xcd\xe3\x0b\x3f\xb1\x8c\ +\x85\xa3\x75\xa4\xbd\x06\xcb\x05\xe3\xd0\xdd\x5f\x63\xcb\x2d\x71\ +\x84\x69\x27\x12\x8b\xe7\x20\x8f\x25\xdf\x99\x2c\x60\x71\x2a\x12\ +\x67\x67\xf9\x68\x7a\x97\xb7\xe6\x4c\x70\xf2\x3e\x1f\x86\x91\xd6\ +\x4c\xd2\x9b\x6a\x6f\x0b\x67\x2e\x99\xbb\x20\xb7\xd2\x2b\xf3\x66\ +\x90\xbb\x0b\x0c\x9f\x79\x24\x10\xa7\x02\x49\x71\xbe\x94\x82\x3b\ +\xc3\xd4\xcb\x2d\xd8\xee\x0c\x0e\xd3\x01\xc8\x9c\x45\x35\xb5\x57\ +\x6a\xc4\x79\xa6\x7e\x06\xa3\x73\xcd\xdf\xfa\x2c\x4d\x96\x62\x66\ +\x95\x3d\x3e\xe2\x13\xcb\x83\xc9\x5e\xcc\x22\x7d\xb7\x2c\xcd\xcc\ +\x57\x96\x51\xfe\xb4\xa3\x54\x13\xac\xfb\xfb\x74\xec\x2f\xe2\xa1\ +\x13\x9f\xc3\xa9\x43\x1f\xc3\x93\x1f\xf9\x0c\x7c\x3b\xd1\xc2\xf5\ +\x25\x73\x9e\x2a\x1e\x2b\x3b\x59\x8c\xce\xb6\x80\x02\x0a\x98\x85\ +\xe2\xab\x28\xa0\x80\x7b\x07\xc5\x84\x5a\x01\x05\x7c\x88\xa1\xf8\ +\xf8\xef\x00\x4e\x1a\x77\xf0\x27\x95\xc7\xdf\x07\x63\x0f\x3a\x00\ +\xf7\x1a\x88\xd5\x7a\x3b\x39\x76\x99\xa5\xcc\xc6\x78\xa0\x3a\xdd\ +\x41\x27\xe4\xc0\x95\x76\x09\x3b\x97\x1a\x18\x26\x5c\x79\xe6\x39\ +\xbc\xf6\x2b\xbf\x8a\xad\xe7\xbe\x89\xfb\x16\xea\x68\xb4\xab\xec\ +\xd4\xf8\x08\xd9\x49\xd7\x51\x8d\x8a\x2f\x4d\x23\xbb\xa3\xc1\x9e\ +\x28\x46\x9c\xea\xfe\x26\xaa\x51\x62\x3b\x62\x02\x8b\x82\xaf\x2c\ +\x12\x29\xea\x50\x8a\x54\xeb\x46\xbb\x88\x69\xc8\x3c\x64\xf6\xa6\ +\xc9\x81\x9e\x45\x9b\x01\x15\xd7\x92\x65\x66\x81\xc2\xc8\x5e\x21\ +\xa5\x97\xbb\xe2\x70\xae\x84\x3c\xac\x1c\x9d\x56\xe0\x8c\x07\x9c\ +\x98\x72\xc4\x19\x4c\x35\x73\x06\xe6\x9e\xd9\xc9\xd9\x75\x23\x69\ +\x52\xdc\x8e\xa8\x03\xff\x8e\x08\x67\x2f\x5a\x64\xe4\xcb\x62\x30\ +\x4f\x72\x73\xe1\x6c\xd5\x2a\x13\xa0\x4e\xa6\x3b\x62\x90\x0e\x1a\ +\x1f\xe0\x2f\xa1\x67\xd9\x6b\x72\x2d\xb4\x11\x04\x75\x52\xc9\xdf\ +\x49\x8a\x01\xf9\xac\x3b\x1f\x6e\x84\x55\x5c\x40\x13\x2f\xed\xd7\ +\x70\x29\xf5\xb0\x5e\x05\x2a\x73\x40\xad\xde\x45\x23\x1c\x60\xbe\ +\xe6\xa1\x0e\x0f\xba\xa0\xde\xee\x08\x53\xdc\xec\xc8\xda\x64\x1d\ +\x7f\x9a\x70\x13\x4d\x6e\xd7\x92\x56\x8f\xba\xd5\xa2\x46\x03\xf3\ +\x59\x03\x33\x06\xb4\x72\x83\x67\x19\xcc\x68\x73\xbd\xa5\xcf\xf4\ +\xc4\xab\x22\x42\x9d\x4d\x89\xd1\xce\xd2\xca\xfe\xb4\x56\x7d\x6b\ +\xe5\x78\xa3\x59\x45\xa3\x5e\x43\x6d\xde\x47\xa5\x41\x7a\x17\xcb\ +\xe8\x6f\xa7\xd8\x58\xed\xa1\xbf\xa3\x9d\x57\x80\x1f\x6a\x02\x90\ +\x54\x6a\x10\x8b\x38\x14\xbd\xf2\xcd\x78\xaf\x78\x84\x93\x1a\x69\ +\xd9\x4f\xb7\xc1\xc6\x64\xa4\xd5\xe8\xf4\x91\xf8\x18\x07\x43\x1c\ +\x7d\xb8\x8d\xc7\x3e\x7e\x06\xf5\xb9\xc0\xee\x30\x99\x24\x03\x9c\ +\x7b\x66\x0d\xaf\x7d\x67\x15\x63\x76\xe4\x83\x52\x80\xa0\xee\x8e\ +\xc4\xb4\xc1\x14\xc3\x29\x5e\x09\x3f\x1f\x62\xd7\x1d\x33\x16\x8f\ +\x73\x76\x69\xb1\xf4\xe8\x1b\x70\xbb\xd2\x34\xe8\x36\xd1\x0e\x35\ +\x0b\xab\x80\xa2\x8b\x76\xd4\xcb\x4d\x47\x48\x4d\x22\xe2\xd2\x25\ +\xfa\xc4\x17\x06\x55\x78\xf5\x31\xaa\x8d\x31\x16\xdb\xcc\xe3\xa4\ +\x83\xfd\x1d\x0f\xc3\x6b\x55\x84\x7b\x29\x1a\x83\x32\xda\x83\x3a\ +\x5a\x65\x0d\x0a\x12\x5d\x90\x52\x3f\xc6\x12\xf5\x2d\x8f\xe1\x3c\ +\xdd\x7d\xa6\x7b\x2a\xc4\x63\x0d\x29\xf1\x4d\x37\x79\xd5\xc4\x28\ +\x63\xb2\x3c\x95\x4e\x7a\x11\xae\x24\x99\xd9\xca\x97\x7b\xe4\x64\ +\x7a\xbe\x2c\x7f\xc9\x68\xe1\x54\x0a\xec\xed\x92\x62\xe1\x94\x07\ +\x99\xce\x05\x70\x4e\x06\xe2\x8b\x2b\x1f\xe4\xcb\xd4\x8d\x3f\xf1\ +\x82\xe6\xe9\xe0\x98\x39\x99\x0b\x95\x3c\xf7\x0c\x23\x41\x7e\xa5\ +\x32\x0e\xba\xd9\xc0\x94\xf1\xd2\x85\x70\x71\x3a\x7c\xa6\x93\x2a\ +\x8d\x3d\xce\xce\x59\x38\x55\xf4\x18\x4d\xb2\x62\xa2\xf2\x49\x5e\ +\x3d\x8a\xd1\x71\xc4\xbc\xba\xb4\x65\x7c\x73\x65\x8d\x7a\xf2\xd8\ +\xbe\x05\xe1\x51\x7e\x2b\x6e\x71\x98\x66\xb7\x40\xde\x43\x10\xb2\ +\xfc\xf0\x1b\xd4\xa4\xb0\xd5\x8f\x9e\x07\x1d\x1d\x65\xdf\x93\x17\ +\x62\x40\xfd\xde\x70\x88\x4b\x2b\xdb\xd8\xd8\xf6\xb0\xf4\xc9\x4f\ +\xe2\x23\x3f\xff\xe3\xf8\xc8\x8f\x7e\x9a\xdf\x42\xc8\x4f\x98\x5f\ +\x79\x49\x3b\xdc\x84\x5b\x44\x10\x5c\x92\xef\x0a\x33\x3e\x6f\xd1\ +\x0b\xee\x64\xfe\x9e\xc0\xdd\x22\x9d\xb5\x2f\xa0\x80\x1f\x64\x70\ +\x95\x60\x6e\x98\x7e\x07\x56\x9f\xb0\x2d\xd0\x5d\x69\x5e\xa9\x62\ +\x76\x17\x2e\xbc\x85\x67\x2e\x7f\x15\x2f\x9e\xff\x9f\xd1\x9a\x9f\ +\xa0\x75\x74\x19\x49\xe4\x6b\x5e\xc2\x76\x70\xd8\xa2\x0e\xb6\x47\ +\x76\x74\xb0\x76\xa3\x09\xb7\xfe\x42\x66\x03\xf8\xd2\x1f\x44\x67\ +\xb5\x9f\x19\x14\xe9\xd4\xd2\x19\x85\x94\xe1\xe4\xec\xea\xbc\x0c\ +\x97\x39\xba\xba\xd7\x42\x4c\x6c\x49\x85\x19\x84\x7b\x1a\xde\xc0\ +\x7c\x64\x90\x5b\xce\xda\xcd\xe0\x9b\x09\xec\x48\x72\xb5\xad\x39\ +\xcb\x78\xa0\x35\x8d\x79\xe7\x4b\x49\x93\x85\xc9\x43\xd2\xb1\xcd\ +\xb0\x45\x52\x34\x98\x1f\x81\xfc\x65\x5a\xf3\x4b\x3f\x16\x8c\x55\ +\xbb\x6b\x9b\x5c\x58\xed\x94\x9f\x24\xd4\x79\x1a\xc0\xa7\x3d\xdd\ +\x55\xff\xa7\xcc\x83\xd1\xb0\x87\x2a\xab\x5e\x4d\x50\xbe\xf9\x72\ +\x1f\xe7\x5f\xdf\xc7\xf9\x57\x06\xd8\xd9\x8b\xa1\x8d\xc3\x98\xc4\ +\x76\x2c\x6f\x58\x2d\xe3\xe8\xb1\x65\x34\xe7\x6b\x94\x57\xea\xd6\ +\x16\xc4\xb6\x33\x50\xf5\x7b\x26\x93\x18\xbd\x79\xfc\x8e\xce\xbc\ +\x7d\x9d\x21\x34\x6b\xc6\x1c\xed\x39\x4f\x64\xce\x9a\x37\xbb\xc3\ +\x55\x47\x77\xa6\x91\x16\x03\x95\x31\x4a\xfa\x2c\x07\x13\x1c\xba\ +\xbf\x81\x53\xf7\xfb\x38\x7d\xba\x8d\xb3\x0f\x2c\xa1\x46\x59\x29\ +\xac\x36\x90\xc4\x21\x5a\x94\xa1\x82\x5a\x19\xeb\xab\x5d\x9c\x7f\ +\xa3\x87\x8b\x2f\x6f\xe3\xc6\x1b\xfb\xf0\xe6\x46\xa8\xb4\xd9\xa6\ +\x68\x62\x6c\xa2\x49\x52\x0a\x47\x8a\xdb\x08\xe5\xe3\x18\x6d\xb4\ +\x18\x3f\xa5\x61\x83\xa6\x23\xab\xb5\xcb\xda\x16\xfe\xb0\xec\x69\ +\xb2\xad\x14\x8e\xf0\xc3\x5f\x79\x1c\x47\x4f\x1f\xc1\x78\xe4\x21\ +\x4a\xbb\x76\xf4\xe3\xa0\x3f\xa0\x8c\x19\xb2\x68\x49\xe8\x90\xcc\ +\x40\x9c\xe4\x99\xc9\x76\xb4\xd7\x71\xda\x63\x44\xb6\x70\x69\x67\ +\x2b\xb2\xe3\x1d\x35\xb1\xa2\xb8\x6c\x72\xcc\x22\x15\x38\x5a\x8c\ +\xbe\xcc\x5d\x2e\x2c\xf9\xce\x8f\xfe\xf6\x64\x61\x34\x41\x4c\xd0\ +\x17\xa0\xa6\xd9\x40\xf6\xca\x77\x9a\x03\xca\xaf\x83\x3e\xe3\x1b\ +\x24\xd8\x5e\xef\xdb\xfd\xce\xa5\xd0\xc3\xc3\x4f\x04\x78\xfa\x8b\ +\x8b\x68\x1f\xab\xa1\x3c\x66\x5e\x66\x77\xdb\x09\x87\x76\x27\xba\ +\x49\x30\x2d\x95\x71\xf8\x1c\x46\xf2\x40\x1e\x68\xb0\x3c\xcb\xed\ +\x4c\x3f\xb5\xc8\x5e\xb9\x39\x53\x0d\x66\xfd\x48\xa5\x46\x88\x4d\ +\xef\x14\x17\x8f\x1e\xbe\x33\x67\x95\x09\x2b\xd5\x59\xe1\x70\x25\ +\x3a\x83\xcc\xda\x5c\x32\x6b\xa7\xe8\xed\xe8\x16\x87\xc4\x9f\x69\ +\x28\xa3\x49\x2e\xb3\x3e\x1d\x4c\xfd\x64\x90\x15\x4b\x06\xa1\x46\ +\x2a\x8d\xb3\xbc\xce\xc3\x39\x30\x2a\x0f\xec\xb2\x85\x78\xf6\x4d\ +\x6a\x97\x24\x0d\xda\x81\x99\x27\x5b\x0b\xfa\xc4\x63\x95\x33\x9b\ +\x5c\x33\x37\x27\x6f\x1a\xcf\x19\xce\x76\x9b\x52\xa6\xd2\xe2\xcc\ +\xdd\x75\xba\x0f\x17\xf0\xd0\x99\x1f\xc2\xa3\xa7\x7f\x04\x1f\x7d\ +\xec\x29\xf3\xe7\x26\x38\x19\x46\x8f\xa5\x76\x96\x0e\xb3\x2c\xa0\ +\x80\x02\x32\x28\xbe\x88\x02\x0a\xb8\x77\x50\x4c\xa8\x15\x50\xc0\ +\x87\x18\x8a\x8f\xff\x5d\x40\x0c\xba\x9b\xd4\xf1\x6e\x6e\xef\x01\ +\x3e\x58\x81\x86\x44\x58\x8f\x65\x46\x35\x50\xac\x39\xf1\x99\x9d\ +\xf5\x42\x5c\xa7\xd5\x8c\x4e\xa1\x99\x9d\x94\xf1\x18\x9e\xcf\x4e\ +\x66\x34\xc0\x4b\xff\xe2\x37\x70\xee\x9f\xfd\x1a\x1a\xbb\x97\x70\ +\x68\x7e\x0e\x8d\x66\x03\x55\x8d\x12\xb0\x23\xa4\xa9\x05\xbb\x00\ +\x3f\xd1\xc0\xc4\x08\x23\xed\x0c\x8a\x13\x33\x13\x09\x1f\xd7\xb9\ +\x51\x37\x4c\xd1\x99\x3e\xa7\x8d\xa0\xb7\x1e\xeb\xa4\xd1\xda\x3a\ +\x47\xec\x58\xd9\xc0\x09\xed\xdc\x60\x8a\x3a\xf7\x22\x32\x0f\x97\ +\x11\x4c\x45\x1d\x3e\xf3\xef\x6c\x1c\xc8\x3e\x57\xe5\x5d\x90\xa9\ +\x4e\xc9\x3a\xc8\xb9\xbf\x0c\x72\xaf\x07\x1a\x42\xe6\xc1\x94\x19\ +\xba\x4d\x7f\xa0\x1c\xe0\x21\x52\xd9\xc9\xec\xf0\xbb\xb8\x32\x1b\ +\xbe\xc9\x07\xb1\x85\xba\x3c\xfe\xbc\x39\x56\x8a\xcd\x3f\x8d\x8a\ +\xc5\xad\x74\x75\xf6\xea\x68\xca\x6c\x3b\xcd\xc8\x57\x4d\x4e\x6a\ +\x22\x46\xc7\x11\x6a\xa7\x92\x75\xfd\x35\x00\x51\x4a\xd0\x25\x23\ +\xaf\x31\x86\xab\x7d\x1f\x6f\xf2\x79\x35\x6d\x60\x8d\x79\x59\x9a\ +\x8b\x51\x6b\x0e\xb1\x3c\x57\x46\xb3\x9a\xa0\x36\xb1\x25\xa0\x96\ +\xd7\xe3\xb2\x67\x0b\x92\x35\x04\xa5\xc1\x27\xc5\x2f\xfa\x34\x80\ +\x60\xbb\xd6\xf4\x90\x06\x1b\xa2\xa2\x9d\x4d\x30\x88\x17\x79\x7e\ +\x48\xb5\xbe\xac\xd2\x22\x7b\x59\x39\xd5\x81\xec\x1d\x28\xbd\x72\ +\x53\xde\xd8\x71\x3d\x8c\x48\x03\x30\xde\x84\x9d\x67\xcf\x87\x57\ +\x61\xd9\x6b\x06\xb6\x83\x4d\x93\x5c\x1a\x08\xd3\xb1\x88\x65\x86\ +\xd3\xe0\xa2\x45\x69\xf1\x91\x0e\xc5\xc7\x7f\xca\xb8\x2d\x2a\xbd\ +\x14\x95\x90\x27\x65\x3b\xb2\x51\xf7\x75\x4c\x12\x1d\x95\x34\x84\ +\xdf\x4c\x70\xdf\x63\x47\xf1\xc8\x93\x27\x10\xd6\x43\xa4\x7d\x95\ +\xdb\x3e\xbe\xf5\x6f\x6e\x60\xed\xfc\x16\x09\x0a\x51\x6d\x69\x57\ +\x9a\xd0\xa8\xe4\x09\x27\xdf\xf6\x37\x93\xd1\xab\x02\xeb\xa2\x56\ +\x7e\x69\xa0\x93\x16\xcc\x8b\x58\x03\x9e\xd4\xbb\xbb\x01\x45\x88\ +\x40\x3a\xba\x33\xb8\x76\xe8\xe9\xbe\x1b\x7d\x1b\xfa\x84\x50\x4e\ +\x81\x50\x13\x95\x9a\x40\xf5\x10\x6b\xe5\xfb\x5e\x88\x61\x2f\x41\ +\x7b\xd7\x47\x7b\x58\xc2\x11\xe6\xdd\xbc\x07\x1c\xf2\x26\x68\xd2\ +\x6f\x95\x61\x82\xf2\x18\x55\xfa\xaf\x06\xba\xb1\x4b\xab\xc3\x89\ +\x5b\xf8\x08\x2a\x5f\x3a\x5a\xc7\x56\xf9\xca\x2c\x32\x2c\x4f\x95\ +\x7f\xb2\x57\x3a\x72\x33\xdf\x2e\x59\xce\x3e\xd3\xab\x24\x5a\x7a\ +\x33\x2b\xe1\x30\x1b\x1a\xec\xdb\x24\x7f\xcd\xdd\x31\xca\xe9\xa9\ +\x99\x7e\x6f\x02\x43\xcc\xc7\xe2\x9e\x7a\x34\x45\x20\x5b\xfb\xd3\ +\x9f\x2b\xf9\x72\x24\xe4\x7e\x14\x5e\x7f\x8b\x3b\x87\xcc\xc2\x54\ +\xa7\x08\x8c\x9a\xdc\x2c\x22\xf4\x37\x37\xbe\x58\x4e\x64\xa5\xc1\ +\x1c\x73\x37\xbc\xc4\x91\x8d\x74\xda\xe0\x9f\xca\xd2\x34\xa8\xfc\ +\x3b\x7c\xb6\x4a\x5e\xdf\x21\x0d\x6e\x62\x59\x93\x6a\xf4\x97\x91\ +\x30\xa5\x93\xaa\x26\xc2\xe4\xa8\x3b\xd6\x7c\x3f\x44\x50\xab\xa2\ +\x16\x04\x08\x99\x47\xc2\xa9\x01\x5b\x16\x60\xf8\x5e\x0d\xa3\x64\ +\x84\xeb\xbb\xfb\xb8\xb6\xde\xc1\x5e\x75\x11\x8f\xfc\xd8\x17\xf0\ +\xd4\x5f\xfc\x32\x16\x1e\x7b\x80\x08\x09\x1a\xf3\xd4\x20\x54\xce\ +\x37\x8b\xec\xee\x70\x0b\x39\xb2\x98\x81\x59\x3b\xe9\xef\x39\xe4\ +\x11\xcf\xc2\x9d\xec\x66\xe1\x6e\xc4\x16\x50\xc0\x9f\x57\x50\xa5\ +\xa0\xba\x60\x06\x5c\xbd\x46\xb0\x97\xdc\x54\x97\xb8\x76\x22\xf4\ +\x42\x73\xfd\xc3\x6f\xfd\x2e\x9e\xb9\xf4\x3f\x62\xad\xff\x1a\x8e\ +\x9e\x5e\x62\x3d\x52\xe1\xa7\xef\xd9\xe2\x96\x7c\x67\x4c\x1a\x47\ +\x98\xb0\x2d\xd3\xbd\xa0\xd6\x0e\x13\x95\xd5\x41\x8a\x32\xfb\x88\ +\x5c\xdd\xeb\x6a\x51\x57\xa7\xe6\xb1\x3b\x77\x29\xaa\xeb\xdc\xe4\ +\xbf\x5c\x35\x09\x44\x77\x45\x31\xad\xd0\x14\xd6\xde\x16\x52\x90\ +\xbb\x98\xd9\x5e\xce\x64\x6d\xf8\x81\x25\x81\xf6\xf6\x3f\xb0\xbf\ +\xc5\x59\x60\x41\xf5\x62\x9b\x38\x0d\x26\x33\xad\x69\x61\x93\x28\ +\xe6\xc9\x2c\x0c\x97\x6a\x41\xe9\x1d\x8d\x7c\xe8\xec\xc2\xf2\xa5\ +\xbf\xe1\xcc\xcc\xb9\xc2\x74\x29\x6c\x6e\x95\x45\xcc\x37\x1f\x05\ +\x96\x13\xe3\x52\xfb\x28\x83\xee\x9b\x4b\x68\xdd\xac\xeb\xb8\xe8\ +\x12\xde\x78\x69\x17\x57\xcf\xef\xe3\xcd\xd7\xf6\xb0\xb6\x3a\x44\ +\xa3\x12\xb0\x7d\x75\xbb\x02\xeb\x94\x4d\x16\x96\xe6\x50\xa5\xfc\ +\xd0\x5e\x6c\xda\xae\x64\x3b\xa6\x91\x6e\xae\xfd\x10\xad\x8c\x5d\ +\x6d\x07\x7f\xd6\xbe\xf0\xb1\x78\x9d\xab\xd1\x92\x13\x9e\x91\x63\ +\x6c\xb0\xdd\x6b\xa4\x5d\x92\xb5\xe4\x61\xad\x8a\x91\xdc\x97\xc4\ +\x65\xd2\xa5\x05\x3a\x23\xfa\x0b\x30\x37\xe7\xe1\xa1\x47\x5a\x38\ +\x72\xba\x8a\xa3\x67\xab\x38\x76\x62\x11\xf5\xea\x1c\x9b\x97\x8a\ +\xdd\x55\x56\x67\xdb\x73\xfe\xf5\x6d\xdb\x7d\xff\xe6\xf9\x4d\x3b\ +\xca\xba\xd2\x4a\xe0\x05\x3a\x3d\x82\x88\xc5\x67\x46\xac\xf2\x25\ +\x31\x5d\x60\xf9\x26\x8d\x48\x13\x1d\x52\x55\x36\xe8\x21\xa5\x3c\ +\x53\xa6\x9c\x91\x24\x6e\x97\xda\x8f\x7c\xf9\x29\xc6\xa5\x3d\xf0\ +\x13\xbc\xf1\xca\x45\x7c\xfd\xab\x6f\xa2\xad\x45\x76\xba\xeb\x56\ +\x69\x55\xda\xa9\xfa\x01\xc5\x1b\xb6\x81\x3e\x9f\x11\x65\x9b\xfd\ +\xdd\x18\x83\x41\xe4\xd2\xcb\xc7\x26\x86\x15\x25\x95\xac\x28\x5a\ +\xbc\xe2\x85\xc9\x54\xce\x68\x2f\x93\xa7\xf4\x57\xde\xb2\x7d\xb4\ +\x85\x3a\x7c\xac\x5c\xf0\xef\x16\xdd\xd0\x4d\xf1\xb2\x0d\x8e\x47\ +\xb1\x1d\xeb\xbd\xbf\x3b\xc4\xa0\x9b\x20\xea\xa5\x28\xd7\x7d\x9c\ +\x7d\xb2\x81\x07\x1f\xf7\xd0\x5a\xa8\x22\xf0\x9b\xa8\xd7\x6b\xe4\ +\x8b\x67\xe9\xb4\x23\xe8\x55\x28\x84\x8f\x31\x2a\x8a\x5c\x36\x90\ +\x8d\x54\xd3\x2b\x6a\x29\xe2\x21\x3d\x4d\xdd\x9d\xc6\xc1\x2d\x86\ +\x1c\xb2\x80\xa6\x7d\xbb\xbb\x6c\xac\xe4\x66\x4e\x24\x83\x26\xa5\ +\xcb\x85\x73\xd6\x53\x8d\xf1\xcc\xf4\x52\x05\x66\x9f\xb9\x67\xbc\ +\xb5\xef\xd4\x74\x77\x86\x0c\xd5\x41\x30\x67\xca\x60\xea\x3a\x45\ +\x29\xda\xe4\x27\x57\xf3\x78\x04\xf2\x63\xfe\x24\xb6\x64\x98\x2c\ +\x76\x5a\x9a\x3d\x1f\x73\xca\xdc\x24\xac\x4a\xae\x77\x8e\xe4\x37\ +\xf5\xa2\xd7\xbe\x19\xab\x0b\xa8\x50\x55\x79\xaa\x30\xef\x34\x21\ +\xbb\x79\x73\x88\xf9\xea\xfd\x78\xf2\xc1\x9f\xc0\x93\x8f\x7d\x1e\ +\x87\x16\x8e\x19\x2a\x2d\x36\xb0\xc9\xdc\x69\x0c\x59\x1c\x06\x8a\ +\xa0\x80\x02\x0a\x28\xbe\x84\x02\x0a\xb8\x77\xc0\x36\x6b\xa6\x05\ +\x2c\xa0\x80\x02\x3e\x54\x50\x7c\xfc\x7f\x02\x10\xd3\xde\x49\x12\ +\x79\x1f\x4c\xfd\xe0\x05\x1a\x12\xa3\x0e\x89\xd4\xac\xd3\x7e\x67\ +\xb0\xae\x9a\xd1\x63\x3e\x18\xa6\xc4\x4e\x6c\x52\x4a\xec\x48\x97\ +\xd5\xb7\x2e\xe2\xe5\x7f\xf4\xab\xb8\xf1\xd5\xaf\xe2\xe8\xfc\x04\ +\xc7\x8f\x1d\x43\x25\xf0\xed\x2c\x7c\x75\xc4\x75\x7c\x8b\x26\x44\ +\xe2\xd1\x08\xc3\x51\xc4\x8e\x72\xcc\x0e\x37\x3b\xc1\x1a\x38\x66\ +\x67\x34\x60\x33\xe3\x3a\x35\x8e\x0e\x9b\x83\x53\x0f\x5d\x40\xab\ +\x9c\x0f\xa6\x3a\x02\x5c\xdf\x4c\x1d\x66\x05\xa1\xf9\xa0\xd3\x46\ +\xbd\xe1\x71\x14\x1b\x5e\xd1\x2b\xa7\xac\xe3\xe5\x80\x36\xd3\x30\ +\xf2\xa3\x3f\x23\x96\x47\x59\xf1\x31\x3c\x82\xcc\x2e\x87\xa9\x71\ +\xd6\x5e\x5e\xf9\x4c\xd9\x98\xbb\x19\x0a\xc6\x9b\xa1\x32\x3f\x99\ +\x46\x76\x46\xa5\x54\xfa\xcf\x9b\x5b\xa3\x52\x7f\x33\x3a\x3b\x67\ +\xce\xe9\xd7\x44\xe6\x41\x04\xce\xd6\x10\x38\x1b\xf3\xa7\xa9\x19\ +\x05\xb2\xbf\x81\x4d\xb2\xd1\x9b\xc6\x1f\x82\x24\x45\x93\x3e\x86\ +\xb4\x8d\xcb\x23\x74\xd2\x18\xaf\xa7\x21\x5e\xef\xb6\x71\x3d\xad\ +\xe3\x1a\xed\x77\xea\xe4\x47\x35\x41\xa3\x11\x63\xa1\xba\x8f\x79\ +\x12\x5a\xf6\x3c\xdb\x4d\x93\x90\xa7\x63\x8f\xb8\x99\x59\xca\x29\ +\x4d\x42\x68\xf0\xce\x06\x49\xd4\x55\xb5\xbe\x6a\xd6\xe1\xe5\x63\ +\xf7\xea\x39\xad\xbd\xcc\x9f\x19\x32\x90\x39\xa3\x2f\xcb\xb5\x3c\ +\x39\xb4\xa0\xc6\xdc\x05\x1a\xc8\xa0\xbb\x8d\xf6\x69\x17\x5e\x4a\ +\xdc\x3a\x0a\x2b\xb0\xbb\x2f\x6c\x52\x8f\x7e\x3c\x9f\x7e\x18\xa5\ +\xe2\xd7\x04\x47\x5e\x7a\x8d\x6d\x42\x9c\xc5\x6d\xab\xa9\xe9\x7f\ +\x32\xd1\x04\xef\x84\x65\x94\xfc\x49\x7d\xc4\xe9\x08\xcd\x05\x0f\ +\xf7\x3f\x71\x08\x67\x1e\x39\x84\x5a\xa5\x82\x74\x30\xc1\xea\xea\ +\x16\x9e\xf9\xea\x3a\xba\x9d\x7d\xd4\xaa\x9a\x4c\x0e\x18\x5e\x1c\ +\x70\xe9\xb1\x32\x27\xf4\xe2\x3e\x55\xf7\x88\x5e\x67\xd0\xc4\x9d\ +\xf4\xda\x9d\x26\xb3\x76\x17\x5a\x39\x16\xbf\xa8\xd7\x9d\x81\x9a\ +\x80\x9e\x24\x23\xbb\x53\x4b\x64\x46\xe5\x14\x83\xa1\x8f\x68\xa0\ +\xdd\x07\x29\xfc\x7e\x1b\xe5\x34\xc1\xfc\x20\xc4\x31\x7e\x7f\x0f\ +\x85\x13\xb4\xfc\x08\x2d\x86\x6f\x10\x4f\x9d\x3c\xd0\x24\xa3\x28\ +\xf3\xf9\x68\xd7\xa7\xdd\x53\x67\xd4\x8d\xf9\x38\xbd\x38\x95\xf3\ +\xd5\x58\x2c\x5a\x08\x96\x75\x52\xe5\x26\x02\xf4\x27\xb9\xd2\x5b\ +\x18\x86\xcd\x82\x5a\xbe\x2b\x94\xad\xec\xa7\xa5\xf9\x37\x0b\xba\ +\x53\x75\xf9\x79\x00\x16\x1b\xfd\xe4\xf9\x6c\x36\xb9\x87\x3c\xac\ +\x99\x9d\xab\x79\xb7\x97\x61\xcf\x43\xc8\xc5\xec\x64\x92\x8b\x59\ +\x91\x7e\xb3\x21\x9e\xe9\x00\x96\xe2\x72\x3e\xe4\x60\xfe\x9d\x21\ +\x57\xe8\x6e\xb4\x32\xa4\x0a\x30\xcd\x46\x86\xbc\x39\xf4\x19\x0e\ +\x87\xcb\x4d\x12\xd3\xec\xbc\xe6\x1e\x2c\xff\x2c\x9c\xf1\x90\xbe\ +\x6d\xc0\xcd\x71\xcb\xbc\xc8\x96\x4e\xf4\xc9\xf2\xa8\xe3\x1f\xa5\ +\xd7\x0e\x33\x16\xde\xb2\x8f\x30\x08\x51\xaf\xbb\xbb\xf9\xe4\xd7\ +\xbe\x9f\x92\xc7\xf2\x1c\xd0\xaf\x8f\xfd\x38\xc2\xea\xd6\x16\x2e\ +\x5c\xdd\xc1\xfc\x83\x1f\xc7\x83\x7f\xf9\xdf\xc5\xa3\x5f\xf8\x61\ +\xd4\x1a\x0d\xa4\xac\x4b\x75\xef\xa0\xe8\xb2\x48\x0c\xc3\x9f\x1c\ +\x84\xe1\x03\x01\x63\x82\xd3\x1a\xdc\xc9\x2c\xb8\x93\x9f\x3f\x5d\ +\x92\x0a\x28\xe0\xcf\x16\xcc\x96\x69\xea\x55\xc3\xe8\xad\x36\x5b\ +\x9f\xb1\x5a\xeb\x24\x9a\xd8\x4e\xd6\x6b\x57\xce\xe3\x8f\x5e\xff\ +\x0d\x3c\x77\xed\x5f\xa3\xbd\x14\xa1\xd1\x9a\xb7\x7b\xb4\xac\xbe\ +\x52\xbd\x68\xdf\xbd\x26\xd3\x12\x35\x5e\x0e\x93\x9a\x17\xaa\x56\ +\x8f\xb0\x8d\xb3\x3a\x30\xf3\xa7\x78\x55\x0f\x29\x1a\x37\xc8\x2f\ +\x4b\xda\xd1\xaf\x55\x1f\xaa\xe5\x89\x57\x75\x9c\x6b\x25\xe4\x83\ +\x08\x33\x3c\x0a\xe8\xd0\x08\xb9\xd3\xbb\x17\x41\x6e\x56\x39\x66\ +\xf1\xcd\x80\xc3\x4d\xc8\x2a\x56\xe7\x2b\x7f\xcd\xe8\x67\x83\xd1\ +\x6c\x75\xaa\xd9\x39\x07\xe1\xb7\x63\xdc\xa4\x97\x45\x5e\x51\x67\ +\x7e\x8d\xc6\xcc\x4a\x1a\xb3\x73\x1e\xcd\x2d\xf7\x2e\x37\x35\xc3\ +\x6a\x0b\xcd\xca\x10\xea\xa5\xb4\x3a\x4f\xf2\xeb\xec\x33\x3c\x72\ +\xa5\x00\x15\x51\x3e\x15\x67\xaa\x95\x09\x86\x9d\x14\x97\xce\xef\ +\x63\xe5\xfa\x1e\x5e\x7f\x7e\x17\xab\x37\x75\x2c\x74\x48\x99\xc4\ +\x2d\x24\x0b\x42\x0f\x8b\xcb\x0d\x54\x6b\x01\xc2\x4a\xc0\x7a\xbe\ +\x8a\xb0\x4a\xf7\xc0\x43\xa4\x63\xb5\x8d\x2e\x07\x8a\xcb\xf1\xd5\ +\xc5\x25\xb0\xb6\x89\xf6\x99\xe2\xe8\x91\x20\x63\x33\x69\x94\x09\ +\xa4\x90\x6e\xc9\x14\x41\xa0\xa3\x2a\xa9\x27\x5a\xed\x16\x1b\xf6\ +\x85\x3f\x45\x6d\xa1\x8a\xd6\xdc\x04\xf7\x3d\xdc\xc2\xb1\xe3\x01\ +\x4e\x9f\x9a\xc7\xe9\xfb\x8e\xa2\x56\xf3\xd9\x86\xb4\x71\x63\x65\ +\x1f\x2f\x7c\x73\x0d\xaf\x7c\x7b\x03\x23\x26\xbf\x5a\x1f\xa0\x4c\ +\xb9\x22\x51\x79\x22\x5e\x13\x57\x44\x91\xfe\x59\xfe\xba\xbf\xa8\ +\x25\x07\xc5\x32\x11\xa2\xdd\x91\x72\x25\x8f\x06\xa3\x3e\x3e\xfb\ +\x95\x47\xf1\xc8\x27\x4e\x63\xb8\x47\x39\xb1\x34\xc4\x1f\xfd\xce\ +\x79\x5c\x7e\x7d\xd3\xdd\x77\x5b\xf2\xb3\x76\xd4\xa5\x25\xb1\xdd\ +\x68\x5a\xdc\x34\xc1\x28\x12\xdd\xca\x63\xf2\x42\x7e\x04\x44\xef\ +\x0c\xa2\x24\x53\x2d\x5f\xa8\xb7\xbc\x11\x41\xce\xb3\x95\x19\x3e\ +\x4e\xda\x71\xd6\x52\x9d\xab\xd4\x12\xa2\xa1\xee\x94\xd5\x64\x5a\ +\x84\xde\x6e\x44\x99\x0b\x88\x27\x11\x02\xb6\xc3\xf7\x3f\xda\xc4\ +\xe3\x3f\x54\x87\x5f\xf7\x51\xf5\xdb\xe4\x13\xdb\xe6\x40\x01\x45\ +\x44\x86\xd5\xf4\x46\x14\x93\xe0\x30\xbb\x38\x32\x7d\xee\xc5\x0c\ +\xa2\xd8\xd9\xbb\x0c\x94\x6a\x7f\xa7\xc9\x60\xea\x7d\xea\x38\xf5\ +\x74\x0b\xcc\x7e\x5b\xb9\x4e\x61\x2d\x3e\x5a\x18\x7f\xdc\xff\x56\ +\xc8\xdc\x9d\x9b\x73\x75\x7c\x93\x5d\xfe\x45\xdf\x0e\x2e\x50\xe6\ +\xc5\x54\x0b\x9f\x07\xd3\x23\x3d\x1d\x73\xb3\x78\xef\x18\x20\x43\ +\x6e\x27\x3f\xf2\xe1\xf4\x96\x84\xcc\xdd\x69\x48\x75\xe6\xd1\x4c\ +\x7c\xe5\xa7\x36\x48\x26\x36\x37\x1a\x25\x6b\x4a\x55\xa1\x13\xbd\ +\x16\xc4\x2a\x3c\x7d\xc9\x2a\x87\x2c\x5b\xbe\x76\xfd\x57\xd0\xe9\ +\xf4\xb0\xb5\x32\xc1\xc3\xa7\x7f\x0c\x8f\x9e\xfe\x0c\x9e\x7a\xf2\ +\x47\xd9\x2f\x0d\x4d\x0e\x67\x97\x81\xe0\xc2\x18\x0e\x83\x03\x5d\ +\x01\x05\x7c\x98\xa1\xf8\x12\x0a\x28\xe0\xde\x41\x31\xa1\x56\x40\ +\x01\x1f\x62\x28\x3e\xfe\x3f\x21\xe4\x8c\xcb\x3a\x00\x53\xf5\x7d\ +\xc2\x07\x2e\xd0\xe4\x1d\x93\x3b\xc0\x2c\xd9\xb7\xd0\xa1\x4e\x53\ +\xa2\x15\x7e\xd2\x7a\xb8\xf4\x87\x7f\x80\x67\xfe\xfe\x7f\x8f\xdd\ +\x97\xff\x10\x8f\x9e\x5a\x44\xbb\xbd\x8c\x7a\x25\x64\xa7\x47\x9d\ +\x63\x75\xd5\xc6\x6e\x57\x5a\x14\x63\x38\x8c\x30\x1a\xb9\x5d\x69\ +\x76\xbc\x19\xdd\xe4\xee\x59\xe7\x8b\x9d\xa8\xbc\xd7\x2b\xc8\x9a\ +\x9e\x7c\x90\x3f\x07\x1d\xc3\x93\x69\x8c\xb8\xbc\xe3\x38\x0d\xa8\ +\x4e\xbd\x69\xad\x9b\x48\x33\xbb\x8d\x65\xd2\x6c\x78\xcc\x26\x03\ +\x17\xce\x85\x37\x44\x33\x03\x4a\x04\xeb\xc7\x9b\x87\x19\xb3\xfc\ +\x19\x72\x82\x1c\xa4\x57\xc0\xcc\x2e\xf7\x9b\xc1\xd4\x07\x91\x2a\ +\x1e\x85\x17\x7e\x47\x8a\xec\x5c\x00\xb3\x9b\xd1\xcb\x94\xfd\xd5\ +\x3b\x34\x24\xee\xe8\xbb\x2c\x1e\x0d\x70\xe4\x7a\xe1\x51\x9e\xd0\ +\x3d\xef\x70\x1a\x2e\x9a\x35\xb0\x61\x93\x6a\x36\xda\x6f\x63\x1d\ +\x7c\xf2\x63\x53\xd8\xe9\x54\x78\x0d\x80\x30\xfd\x29\x9f\x71\x39\ +\xc1\x60\x12\x63\x33\x4e\xf0\xd6\xd0\xc7\x85\x51\x0d\x6f\x0e\x2a\ +\x58\xf1\x26\x18\x06\x25\x84\xed\x91\xed\x58\x9b\xaf\xa4\xa8\x54\ +\x4a\xa8\x04\xba\xcb\x83\x88\x27\xbe\x4e\xfc\xb1\x31\x1e\xa5\xd2\ +\xd9\x91\xc2\x2c\x3f\x65\xa7\x41\x1e\x4d\x30\x38\x0b\xea\xa9\xe8\ +\x28\x25\x4d\xb4\xe5\x69\xd6\x20\x81\x05\x95\x05\x35\x4e\x75\x41\ +\xe4\xae\xbf\xe9\xe4\x49\x7e\xa9\xd7\xa4\x8f\x4d\x88\x50\xef\x92\ +\xe9\x8e\x7b\x54\xe2\x34\xc1\xe6\x26\x1a\xe4\x40\xfc\x36\xba\x48\ +\xee\x88\x37\xc6\x56\x87\xc7\x06\x8b\x5c\xef\x9d\x65\x33\x85\x8e\ +\xb9\xd4\x3d\x22\xa5\xa4\x8c\x4a\x7b\x8c\xfb\x1e\x5f\xc6\x83\x1f\ +\x39\x84\x7a\xa3\x81\xa8\x3f\xc2\x6b\x2f\xac\xe2\xd5\xdf\xbf\x09\ +\xd0\xaf\x4e\xdf\x53\x7a\xf3\x89\x43\x63\xad\xf2\x84\x8f\x8e\xde\ +\xb2\x8b\xd1\x19\x9f\x56\x6e\xcb\x4e\xc3\x9d\xba\x6c\x5d\x79\x64\ +\x6f\x05\x63\x18\x2d\x76\xd6\xc0\x97\x8e\x6f\xd2\x11\x94\x83\x64\ +\x8c\x51\xa2\x9d\x68\x60\x9c\x1e\x42\xd1\x32\x49\x6c\xf7\xd9\x72\ +\x5a\xc3\x89\x5a\x8a\x63\x7e\x8a\x45\x86\x9a\xb3\xa5\xd2\x74\x57\ +\x39\xcf\x06\xa9\x8c\x26\xdb\x7d\x26\xbd\x15\xdf\xec\x71\x25\x91\ +\x3e\x19\xa7\x22\xe7\x5f\xac\xe5\xe3\x86\x16\xcc\x8a\xe9\xa1\x6f\ +\xfe\xe5\x66\x49\xb3\x9f\x1c\xa9\xca\xce\xb4\xe6\x60\x81\x2d\xfd\ +\xce\x60\xf6\xca\x23\x5b\x51\x6c\xe0\xfc\xb9\xc1\x14\x86\x97\x37\ +\xa7\x33\x7f\x07\x83\x26\x32\x3b\x3a\x15\x89\x26\x6b\x0d\x9f\x99\ +\x45\x71\x16\x30\xa3\xd3\x01\xed\x72\xeb\xa9\x5e\x04\x0a\xbb\x0c\ +\x19\x6e\x01\x15\x0b\x99\x05\x37\x3a\x2c\x7e\x59\x65\x7e\x55\x76\ +\xe4\x9e\xa5\x5d\x66\xb9\x28\xb0\xea\x11\x43\x62\xaa\x0b\xef\x8a\ +\xcd\x01\xa3\xe4\xe4\x8e\x84\x12\x5e\xd2\x3c\x13\x3e\x07\xd9\x58\ +\x59\x64\x38\xc5\xab\x5c\xd2\xb7\x10\xb0\x30\x55\x6a\x35\x3e\x15\ +\xfb\x5e\xec\x9b\xd1\xaf\x14\xd8\xce\x50\xd5\x9d\xfd\xd1\x10\xcf\ +\x5d\xb9\xc9\xef\x6d\x1e\x47\x7f\xec\x8b\xf8\xc4\xcf\xfc\x34\x8e\ +\x3d\x7a\x86\x58\x59\xb2\x48\x8c\xe5\x09\xcb\x13\x83\xe5\xaf\xb7\ +\x03\xad\xf3\xac\x91\x77\x4b\x6f\x06\xd2\xde\x66\x75\x6f\x20\x47\ +\x3a\xab\x0a\x66\x23\x7a\x27\xbb\x02\x0a\xf8\x81\x81\xd9\x0f\x21\ +\x53\x66\x8c\xda\x47\xee\x69\x17\x2b\xe1\xd9\x17\xbe\x81\xaf\x7d\ +\xe7\x57\x70\x23\x7a\x01\xc7\x1e\x3a\x8c\x6a\x69\x8e\x6d\x44\xcc\ +\xba\xc1\x4d\x9c\xa9\x9e\xd6\x04\x4f\xaa\x85\x1a\xaa\x77\x68\xe7\ +\xea\x72\x57\x97\x0a\x4c\xd1\x87\x9e\xc5\xa3\x79\x18\xd5\x3b\xae\ +\xda\xca\xeb\x5c\xa9\xb4\xb5\x0a\xc1\x79\xb5\x47\xaf\x19\x90\x59\ +\x8f\xf3\xa7\x47\x1e\x9c\x6a\xf5\x5d\xe6\xc7\xac\x0c\xa8\x91\x79\ +\x06\x8c\x2e\xb3\xa3\xc6\xf4\xce\xc3\xdb\xc2\x09\x68\xa7\xa3\x93\ +\xa7\xfe\xcd\x42\xf5\x26\xe3\xb3\x00\x7c\xb2\x78\x65\x36\x6f\x7a\ +\x9b\x05\x15\xd3\xf2\x67\x1a\xf9\xcb\x7c\x58\x58\x07\xa6\x17\x6a\ +\x8b\xc6\x02\xc8\xd2\x3d\x04\x57\x0b\x3b\x30\xd9\x41\x2d\xb7\x9c\ +\x68\xa9\xc9\x1f\x35\xb0\x15\x7f\x62\x77\xd6\xbe\xf1\xda\x36\x6e\ +\x5c\xd8\xc2\xc5\x37\x46\xb8\xbe\x32\x44\x39\xae\x20\x08\x35\x41\ +\xa9\x5d\x6b\x11\x6a\xda\x8d\x5c\x53\x3d\x1f\xa0\xd6\x08\xd1\x5e\ +\x9a\x43\x48\x79\xd9\x1d\xcd\xa9\x1d\x66\x2e\x5f\x95\x37\x96\x97\ +\x8c\xc3\xa5\x2e\x03\x63\x1e\xed\xd4\x3e\xe6\xd6\x19\x71\x72\x12\ +\x7d\xca\x5b\x1d\xaf\xee\xfb\x25\x9d\x0c\x8c\xf1\xb0\x8c\x84\x72\ +\x9f\xee\x98\x15\xaf\xfc\x20\xc5\xe9\xd3\x0d\x3c\xfc\xf8\x11\x1c\ +\x39\x59\xc7\xb1\x93\x4b\xb6\xdb\x3f\x89\xc6\xb8\x78\x7e\x17\x6f\ +\x3c\xdf\x41\x6f\x4f\x13\x6a\x31\x71\xe6\xbc\x73\xaa\x7b\x14\x8f\ +\xca\x8b\x62\x75\x6d\x8e\xc9\xe5\xb2\xa7\xec\xa4\x49\xb8\x72\xa9\ +\x82\xc1\x60\x1f\x95\xb9\x32\xbe\xfc\xb3\x4f\x62\x6e\x7e\x01\xc3\ +\x1e\x65\x99\xa8\x83\xaf\xff\xe6\x9b\xd8\xdf\x1e\xa2\xe4\x6b\x07\ +\xbe\xe3\xae\x64\x53\x1d\xb9\x68\x42\xa4\x32\x42\x65\x91\x3f\xd1\ +\x9b\xc5\xe2\xb8\xe0\x8c\x4e\xa1\x9b\xc9\xc5\x7a\x32\x7b\x69\xf5\ +\x32\xbf\x54\xd5\x14\x8a\x30\xd1\xa8\xf6\x54\x76\x3a\x5e\x7e\xd8\ +\x1b\x61\x38\x88\xed\x7e\x36\x50\xd6\xb3\x23\xcd\xc9\xff\xf6\x72\ +\x15\x8f\x7f\x9a\x6d\xeb\x69\x1f\xf3\x8b\x01\xf3\x75\x1e\xe5\x40\ +\xe5\x4d\x4b\x60\x0c\x95\xc3\x7d\xf0\x62\xdc\x8e\x56\x91\x90\x91\ +\xeb\xc8\x11\x5f\xcc\x24\x70\x29\x30\x79\x27\xb3\x99\x7a\x26\xe4\ +\x3a\xc3\x74\x60\x3d\xc5\xa1\x98\xcc\xfa\xe0\x75\xab\xfd\x14\x68\ +\xd2\x9f\x0e\x59\x51\x99\xc2\x2d\x46\x33\x38\x1b\xe3\xac\x22\xcd\ +\x92\x33\x85\x3c\x80\x32\x9c\x86\x9c\xfe\xd9\x38\x73\x0c\xfa\xe7\ +\xf6\x56\x66\x55\x4e\x68\x92\xd9\x50\xe7\xb8\x55\xe7\x48\x95\x85\ +\x0a\xb9\x42\x29\x8d\xca\x33\x3a\x28\x8b\x6c\x31\x65\xe6\x24\x37\ +\x9b\x40\xb3\x6f\x8e\x2a\x3d\x09\x9f\xa8\xb0\xc7\xec\x9c\x5e\x0e\ +\x16\xc4\x7e\x54\xf5\x3d\x8f\x59\x3f\xf2\xbb\xdc\xdf\x1e\xa1\x9c\ +\x1e\xc6\x47\x4e\x7e\x09\x8f\x9f\xfd\x2c\x1e\x38\xfb\x11\xc3\x6f\ +\xa7\x7b\x98\x9c\xec\x30\x1e\xc0\xac\xbe\x80\x02\x3e\x7c\x50\x7c\ +\x01\x05\x14\x70\xef\x80\x6d\xd5\xb4\x19\x2c\xa0\x80\x02\x3e\x64\ +\x50\x7c\xfc\x7f\x42\xc8\x19\x27\x89\xe4\x7d\x30\x71\xd6\x7b\xae\ +\xff\x40\x85\x1a\x8b\xe4\xee\x04\xce\xc6\xef\xf4\xec\x74\xb0\x87\ +\x6e\xf7\xa5\x8d\x07\x38\xf7\x4f\x7f\x1d\x7f\xf8\x0f\xfe\x01\xc2\ +\xdd\x55\x3c\xf0\xe0\x09\xcc\x37\xe7\x6c\x47\x8c\xed\xb0\x51\x4f\ +\x96\xaf\x34\x61\xe7\x35\x4a\x31\x1a\x46\xec\x4c\x47\xb6\x8a\xb6\ +\x44\xfb\xf2\x98\x78\xe4\x95\x3f\xe1\xb5\x41\x1e\xeb\x05\x32\x1e\ +\xd2\x34\x8d\x9b\x2f\xb3\xce\x7a\x87\xd6\x99\x92\x1f\x0b\xcb\x0e\ +\xb5\x3c\x66\xbe\xe5\xc3\x42\x9a\x5d\xae\xb8\x70\x16\x28\xd7\x13\ +\x5c\xf8\x0c\x68\x30\x97\x03\xe7\x03\x3d\xd5\x59\xeb\x03\x8f\x39\ +\x3e\x75\xea\x6e\xf7\x74\x00\x16\x87\xf1\x98\x1e\x32\x5e\xe7\xf7\ +\x9a\xe8\x95\x29\xd9\x84\x99\xf4\xce\x2e\x6f\x7a\x5d\x27\xf2\xc0\ +\x2c\xf7\x83\x34\x0b\xb2\x41\x85\x4c\x2f\x7b\xf9\xb5\x47\x36\x19\ +\x5d\xb6\x53\x90\x74\x6a\x88\x41\x43\x36\x9a\xec\x18\x50\xd5\xb0\ +\xdd\x44\x83\xfb\xc2\x9b\x68\x92\x4d\x47\x3c\x6a\xc7\x5a\x82\x5e\ +\x9a\x62\x25\x2d\xe3\xcd\xb4\x82\xd7\x86\x21\xae\x8f\x43\xac\x30\ +\x8e\x49\xc0\x3e\x68\x10\x61\xae\x31\x44\xbd\x12\xa1\x51\x01\x2a\ +\x7e\x95\xfa\xe0\xff\xcf\xde\x9f\x47\xdb\x96\xdd\xf5\x7d\xe8\xef\ +\x9c\xbd\xf7\x39\xe7\x9e\x7b\x6f\xdd\xaa\x52\x75\x52\x55\xa9\x4a\ +\x52\xa9\x17\xad\x00\x9b\x80\x5b\xe2\x10\x1c\x27\x71\x1a\x27\x23\ +\x79\x19\x4e\xf2\xec\x97\x8c\xf1\xfe\x78\x23\x8e\x33\x12\x5e\x78\ +\x21\x8e\x93\x18\x0f\x1b\x0c\x23\x4e\x70\x03\xd8\xb8\x09\x18\x6c\ +\x23\x43\x80\x38\xd8\x04\x87\xd6\x80\xe9\x44\x2f\x40\x42\x08\x24\ +\x95\x4a\xd5\xdd\xaa\x7b\xef\x39\x67\xef\x7d\xce\xfb\x7e\xbe\xbf\ +\xdf\x6f\xed\xb5\xcf\xbd\xb7\x54\x8a\x4b\xa0\xa2\xd6\x77\xef\xb9\ +\xe6\xaf\x9b\xbf\xd9\xac\xb9\xd6\x9a\x73\xcd\xbd\xd6\xf6\x1c\x19\ +\x7f\x4c\xbc\xfd\x14\x96\xeb\x9d\x25\xf3\x4d\x38\xda\x9a\xe0\x05\ +\x05\x26\xd0\xdc\xe8\xe0\x86\x53\xeb\xd2\xae\x5a\xc6\xc8\x7a\x14\ +\x2f\xbd\x8a\xaa\xf4\xd8\x24\x6f\x7f\x04\xb1\xf4\x21\x26\xc7\x54\ +\x6c\xce\x82\x1a\x0b\x13\x2c\xda\x69\x52\xcd\x64\x1d\x60\xc1\x44\ +\xdb\x13\x68\x39\x61\xf7\xe5\x6f\x8e\x25\x53\x3b\xb1\x10\xc6\xaf\ +\xbb\x8f\xaf\xcb\x78\x39\x8b\x0b\x97\x22\x1e\xf9\xd4\x3b\xe2\x91\ +\xb7\xde\x15\x57\xee\x3c\x88\xe7\x9e\x3d\x8a\x77\x7f\xcf\x13\xf1\ +\x9e\x7f\xf6\x54\xcc\x76\xae\xc6\xfe\xe1\x41\x2c\xaa\x0e\x54\x99\ +\xfd\x41\x5b\xe2\xc3\xfb\x01\x1e\xbf\xec\x27\x1e\x48\x52\x7e\xdc\ +\x40\xa0\x06\x3b\xab\x75\x2c\xf5\x39\x59\x2f\xe3\xda\xc9\x6e\x5c\ +\x3f\x3a\x8b\xeb\xd7\x17\x3a\x56\x16\xb1\xb8\xbe\x17\x07\xaa\xc7\ +\x95\xf9\x22\x1e\xdd\x5b\xc7\xc3\x17\x96\x71\xdf\x6c\x15\x77\x9d\ +\x2d\xe3\x6e\x95\xf5\x40\x95\x9c\x9f\xf1\xb4\x13\xff\xa1\x43\x9b\ +\xcb\x9f\xc3\x2e\xf7\xf8\xd2\xbf\xe2\x5c\xac\x73\x93\xb8\xbe\xd8\ +\x70\xbf\xc2\xed\x64\xc8\x4e\xf2\x6e\x1f\x76\xa2\xcb\x88\x05\xfe\ +\xdc\xd0\xe8\x49\x95\xfb\x28\x79\x1a\x0f\x11\xc6\xd5\xee\x82\x0f\ +\x87\x3a\x26\x68\x55\xf6\x25\xfe\xf2\x66\x52\xca\x6d\x67\x1a\x1f\ +\x25\x20\x1a\xd4\x95\x8f\x36\xce\x3e\x9d\x42\x19\x99\xed\x60\xb9\ +\xd1\x59\xa4\x34\xce\x6b\xdb\x3e\x75\x42\x31\xed\x1f\x79\xab\x92\ +\x49\x2e\x8b\x25\x63\xf6\xad\x62\xe7\xe3\x6e\x9b\x9e\x9d\x54\x1b\ +\x17\xad\xfd\x28\x56\x24\x99\x6b\x97\xa0\xaf\x03\x74\x4a\xe8\xb4\ +\xbb\x33\xb1\x30\x4a\x9f\x0e\x9c\x76\xbe\xc7\x0d\xd8\x83\xd8\xdb\ +\xdf\x8f\xfd\x83\x03\x3f\x71\x69\x7b\x6d\xb8\xe9\xc8\xeb\xb4\x9e\ +\x5d\x9e\xc4\x07\x9e\xf8\x68\xfc\xc6\x47\x9e\x8b\x3b\xde\xfc\x59\ +\xf1\xf6\x3f\xf2\xaf\xc7\x9b\xbf\xe0\x77\xda\xf6\xf4\x44\xfd\x7c\ +\xae\x3d\x4d\x83\xd3\xdf\x5c\x88\xa1\x24\x09\xb1\x1c\x43\x26\x5b\ +\x25\x1e\x11\x6c\xc7\x8d\x32\xfd\xf8\x71\xde\xd9\x79\x47\xb7\x92\ +\xdf\xaa\x00\x13\x26\xfc\x76\x81\xfb\xf6\xa8\xc3\x8b\xe4\x8c\xe1\ +\x9f\xc8\xa8\xcf\xb3\xe8\x32\xdf\x3d\xf0\x22\xd9\x3f\xfa\xa7\xdf\ +\x12\x3f\xf8\xb3\x5f\x1b\xab\xfd\xab\x71\xef\xab\xef\x0b\x5e\xe7\ +\xb7\xbb\xbb\xb4\x1d\xd7\x35\x7e\x94\x04\xbc\x08\xb3\xee\xd3\x8c\ +\x1c\xe2\xd3\x27\x73\x9d\xb7\xc8\xaa\xce\x59\xce\x1b\xf8\xd8\x4a\ +\x45\x9e\x83\x14\x6b\x00\x96\x0b\xf2\x1b\x23\x7e\xf0\xd1\x37\xc6\ +\x87\xb4\x4e\x9c\xe7\x42\x44\x79\x0e\x96\x4d\x46\x86\xcf\x2d\xce\ +\xc3\x1b\x09\x2a\x36\xf0\x4a\x41\xdb\x48\xc1\x79\x72\x9d\x2c\x51\ +\x9d\x0f\x31\xb1\x4b\x97\xb1\xca\x01\xad\x6b\xb7\xfd\x98\xc5\x82\ +\x44\x95\xcc\x76\xe6\x5c\x0e\x9b\x93\x12\x39\x66\xf0\x36\x28\x7f\ +\x4e\x9f\x9c\x49\xec\x86\x38\xeb\x09\xd8\x66\x72\xae\xe5\x48\xa0\ +\x12\xd8\xf3\x5f\xa7\xfc\x10\xe7\xf0\x50\xd7\xd9\xdd\x75\x7c\xf0\ +\xd7\x8e\xe2\xfd\xef\x7b\x3e\xde\xff\x8b\xcf\xc5\x07\xde\xb7\x8a\ +\xab\x4f\xae\xe2\xf0\xe2\x5e\xcc\x66\x1a\x17\x9c\x2e\x95\x68\x1d\ +\x0b\x8d\x9b\xee\xbc\xeb\xb2\x5f\x09\x79\x81\xff\x86\xbd\x78\xd1\ +\x3f\x00\x3a\x65\x67\xe2\x5d\xdf\xd3\x1d\x16\xa7\xd8\x4f\x99\x57\ +\x16\xae\xb1\xb9\x0e\xb5\x74\xd8\x2f\xb2\x5b\x9f\xea\x0a\xce\x58\ +\x80\x57\x82\x2e\x15\xd4\xc0\x1e\xd7\x88\xde\x9d\xe5\x98\x84\xa7\ +\xa2\xef\xbe\x77\x2f\x2e\xdd\x31\x8f\x3b\xee\xdc\x8d\xbb\xef\xb9\ +\xe0\xff\x56\xbb\xfa\xdc\x32\xd6\x4b\x5e\x6d\x48\xbf\x64\x5c\x24\ +\x7b\x55\x9c\x90\x63\x4b\xf9\xf3\xfe\x22\x3f\x72\xa5\x10\xa2\xe5\ +\x3f\xc7\x3e\xd2\xa9\x1d\x9e\xfc\xf0\x8d\x78\xdd\x5b\xaf\xc4\xef\ +\xfb\xd7\x3e\x4d\x02\x8d\x2e\x4f\xce\xe2\xe9\x27\x9f\x8a\x1f\xfa\ +\xc7\xbf\x12\xcf\x3f\x77\x5d\xa9\x64\xc8\x02\xa9\x7c\xf1\xa4\x75\ +\x97\xdd\x31\x3e\xed\xbf\x69\x11\xc0\x15\xce\x32\xb0\x33\x28\x0f\ +\x0e\x88\x7c\x44\x20\x93\xca\xe3\x15\xeb\xe4\x5b\xc7\xca\x4a\xd7\ +\xcd\xe3\x23\x16\xd3\x56\x5e\x50\xa3\x99\x8f\x8e\x15\xb4\xef\x2e\ +\xdd\x7d\x10\xaf\x7f\xec\xae\x78\xdb\x67\x1c\xc6\xc3\xaf\xbf\xa8\ +\xc4\x7b\x3a\x9e\xf6\x9c\xef\x7a\x47\x73\x15\xe7\x97\x25\x49\x28\ +\xf7\x22\xb1\x71\xdf\x33\x9d\x70\x5c\x06\x2d\x6b\xe4\x31\x93\x72\ +\x3c\x8e\x13\x6d\xc6\x4d\xd2\x59\xee\x9a\x27\x8a\x3f\x47\xba\x8a\ +\x5d\x16\xcb\x94\xb0\x9a\x68\xb0\x69\x35\x84\x69\xd9\xa4\xff\x91\ +\x0e\x8c\x19\x17\x4e\xb0\x4c\x3e\x73\x87\x0f\x36\x76\x0f\xed\x32\ +\x2b\x38\xc3\x22\xb1\x1f\x1c\xa4\x49\x03\x72\x18\x27\x0d\x96\xd9\ +\x9e\x3e\xd4\x6d\x2b\xde\x19\x54\x10\xe8\xbf\x7e\x13\x82\x0c\x38\ +\x3b\xb1\x75\x1e\x2e\x17\xc6\x99\x20\x7f\xdc\x25\xd4\xe2\xec\x8e\ +\x46\xc0\xbb\xfb\x3c\x91\xa8\xf1\xf5\xd3\xa7\x71\x71\xf7\x91\x78\ +\xfd\x03\x9f\x1b\xbf\xe3\xd3\x7f\x7f\xdc\x73\xf7\x6b\xdc\xa7\xf9\ +\x9f\x68\x92\xf1\x93\x84\xce\x92\x92\x4d\x98\xf0\x4a\xc5\xd4\xfb\ +\x27\x4c\x78\xe9\xa0\x31\x44\x5d\x21\x27\x4c\x98\xf0\x8a\xc3\x74\ +\xf0\xff\xdf\x44\x8e\xeb\x37\x78\x91\x0d\x99\x83\xf8\xc4\x27\x6e\ +\x30\xa3\x1c\x3c\xe3\xa9\x9c\x06\xfa\x5c\xee\x4c\x5c\xa0\xb4\xf1\ +\x7c\x49\x31\xaf\xd2\xe0\x95\x7f\xd7\x9f\x7e\x32\x7e\xfc\xeb\xfe\ +\x7a\xbc\xef\x1b\xbf\x29\x0e\xe7\xd7\xe3\xb5\x8f\x3e\x18\x97\x17\ +\x17\x63\x6f\x4f\xd3\x1b\xf9\x5a\x2f\xf9\x03\x76\xfe\x23\x8a\x57\ +\xd5\xad\xfc\x47\xdf\xab\xf5\xb1\xf8\x95\x7d\xf2\x64\x5a\x4e\x84\ +\x98\xf4\x8e\xf2\x55\x5a\x26\x4b\x2c\xae\xd5\xcf\xa8\x05\x32\x27\ +\xff\x2e\x8f\xef\x0e\x65\x79\xca\x07\x82\xf4\x92\x93\x33\xcf\xa3\ +\x4c\x63\x23\x2d\x84\x65\xda\x88\x81\x74\x9d\x70\x62\x99\x9d\x88\ +\xa2\x54\xda\xda\xb6\x80\xda\x9f\xf4\x6f\xc2\x68\x19\xf5\x29\x7f\ +\xe9\x26\x73\xa6\x4d\xf3\x5b\x4d\x6c\x4a\xbc\xb4\x4c\xf8\x8b\x1e\ +\x2e\xb1\x92\xe1\xe4\x54\x13\x3b\xe6\x87\x29\xce\x34\xc3\xcd\x82\ +\xdc\x58\x6a\x3d\xa1\x7c\x64\xd9\x2d\x30\x6f\x3d\xbc\x32\x1f\xd2\ +\xa9\x80\x88\xd1\x73\x33\xa5\xcb\x40\xf9\xb0\xe1\x9f\x37\xb8\xe1\ +\xb2\xaf\x06\xf4\x8d\x11\x3e\xb3\x53\xbf\x72\xf0\xda\x6a\x19\xbf\ +\x7a\xb4\x13\xbf\xb2\xdc\x8d\xf7\x5d\x9f\xc7\x6f\x28\xfe\xf0\x6c\ +\x1e\xa7\x7b\xf2\x78\x78\x1c\x17\x0f\x57\x71\xe7\xc1\x59\x5c\x5a\ +\xec\xc6\xc1\x1e\xaf\x36\x9a\x29\x23\xfc\xef\xc4\x5a\xfb\x92\xea\ +\x9d\x2a\x23\xda\x4a\xd9\xf9\x66\x07\xf7\x3b\x68\xb3\x19\x8b\x0b\ +\xbb\xd5\xca\xd8\xf0\x54\x19\xc5\xa7\x60\x10\x14\xda\x8b\x1a\x49\ +\xa6\x92\xfa\x50\x97\xa4\x41\x4e\xd2\x33\x8d\x4d\xf0\x4f\xc0\x67\ +\xd1\x79\xd3\x10\x46\x34\xf6\x0a\x6e\x07\x56\xa0\x80\x5c\xad\xf9\ +\x2f\x36\x05\x9e\x04\x38\xb9\xbe\x1b\xeb\xa3\x75\x2c\xee\x58\xc7\ +\x7d\x8f\x5e\x88\x47\xdf\x71\xb7\x26\xe1\x97\xe2\xe9\x27\xae\xc5\ +\x8f\xfd\xc3\x0f\xc7\xd3\x1f\xb8\x1e\xf3\x83\x65\xcc\x77\xe6\x7e\ +\xb5\x22\xaf\xe2\x5c\xf1\x2a\x53\x1d\x2b\xab\xda\x57\x80\x1b\x25\ +\xdc\x0c\x98\x51\x68\xda\x75\x67\x15\xbc\xa1\xeb\xfa\xea\x2c\x9e\ +\xbb\xb1\x13\xd7\xaf\xef\xc4\xf1\xf1\x6e\x2c\x56\x33\xbf\xb6\xf1\ +\x8e\xbd\xeb\x71\xbf\x7c\x3c\x70\xf1\x2c\x1e\xde\xdf\x8f\xfb\x55\ +\xce\x3b\x15\x16\xf2\xb9\xa0\xed\x4e\x17\xf2\x45\x35\x72\xc1\x65\ +\x2e\x1d\x8d\x9c\x6d\xaa\x7a\xa9\xcd\x39\x84\x10\x63\x45\x2d\x59\ +\x58\xa3\xbd\xf3\xe9\x29\xc5\x6a\x3c\xd2\x62\x62\x3b\x05\x97\x73\ +\xf0\xa1\x80\x01\xe9\xed\x27\xd3\xda\x0e\x46\xca\xe1\xff\xc6\x36\ +\x42\x7d\xca\x6f\x16\xa6\x64\xf0\x36\x80\xf0\x7e\x1b\x8e\xbf\xb2\ +\x47\x6e\x1b\x8b\x88\x91\xe6\x7e\xf7\x8e\xe9\xf4\x82\x53\x96\xde\ +\x0b\xf1\x95\x87\x4f\x0f\x26\x3a\xa6\x34\x85\x4e\xee\xb8\xea\x84\ +\x9e\xf4\xb6\xc7\xb6\xca\x2f\x5d\x66\x97\x89\x36\xbc\x53\xd2\x10\ +\x96\xf9\x5c\x85\x5c\x4a\xeb\x15\xec\x07\xda\xc0\xb1\x0a\xa5\x0a\ +\xfb\x06\x5f\xd9\x26\xb2\xcc\xbe\x09\x28\xf0\x2a\xc8\x2c\xc3\x3c\ +\xe6\xda\xe7\x87\x07\x17\x63\x5f\xf1\xee\x42\x72\xf6\x95\xf6\xef\ +\x5a\xc7\xed\x62\xb6\x17\xcf\x1f\xaf\xe2\xf9\x1b\x47\xf1\xeb\x1f\ +\x7d\x22\x3e\xb4\x73\x6f\xbc\xf1\x0b\xbf\x28\x3e\xe7\xdf\xf8\x97\ +\xe2\xf2\x83\xaf\x96\xc3\xa5\xfa\xaf\xd2\xe8\x7c\x9c\x27\x40\xbc\ +\x77\x9e\x05\xd8\xac\xf6\xa6\x38\x30\x15\x95\x7a\x48\x55\xaa\x8f\ +\x0f\x63\x27\xb7\x72\x30\x96\x9f\xcf\x70\x8c\xdb\xc9\x27\x4c\x78\ +\xb9\xa1\xfa\x72\x8e\x67\x4c\xf8\x34\xc7\xc2\x09\x37\xf8\xf9\x6f\ +\xd0\x0f\x3d\xfe\xc1\xf8\x8e\x1f\xf8\x9a\xf8\x89\x5f\xfb\xb6\x78\ +\xcd\xa3\x77\xc4\xe1\xc5\xbb\x62\x77\x3d\x93\x8d\xc6\x50\xfc\x62\ +\x43\xf6\x3a\x93\xf8\x90\x58\xe9\xba\xcc\x78\xc1\xe7\x16\x83\xeb\ +\x0c\x26\x5c\x19\xcc\xe6\x39\x45\x69\xb0\x67\x93\x45\xc8\x73\x8f\ +\xb7\x25\x33\x86\x13\x17\xe7\x40\x12\xc9\x02\xa5\x13\xe5\xd9\xd1\ +\x09\xca\x8b\x95\x4a\x93\x5c\x9e\xc7\xb9\x76\x30\x06\x4b\xe9\x60\ +\x99\xdb\x3c\xf1\xa7\x86\x71\x46\x2a\x84\xb2\x25\x42\x68\xbf\x7c\ +\xed\x68\xa3\x73\x61\xa0\x11\x66\x79\x9c\x2b\xdf\x14\x99\x77\x12\ +\xf3\x59\xa6\xac\x7f\xd3\x8c\x6d\xd2\x15\xe3\x9e\x34\x93\x4c\x04\ +\xfb\x85\x26\x36\x3a\xa1\x60\x7f\x40\x3c\xf9\xe4\x93\x60\xa9\x76\ +\x80\xe6\x9a\xbf\x14\xa1\xf3\xf8\xc5\x4b\xba\x56\xab\x9e\x1f\xfc\ +\xe0\xb3\xf1\xa1\xf7\xdd\x88\x0f\xfe\xea\xf5\x78\xff\x2f\x2d\xe3\ +\xa3\x1f\x3d\xf6\xfe\xba\x30\x97\x3d\x8b\x5a\xa7\xe2\x35\x16\xe0\ +\x95\x82\x07\x17\x58\xd8\xe2\xff\xc5\x16\xb9\xc8\x26\x19\x19\x73\ +\x9d\xf3\x7f\x93\xd5\x2e\xf6\xf9\x9a\x4d\xe7\xcb\x06\x78\x11\x35\ +\x91\xd7\x6f\x16\x92\x54\x3f\xa5\xc7\x86\x7e\x40\x3f\xa1\xce\x8c\ +\x53\xfc\x64\x23\x3f\x6c\x3b\xd5\x38\xce\x75\xd6\x95\x67\x6f\x19\ +\x97\xae\xec\xc5\xcc\xff\xd7\xaa\xa0\xf1\x1f\xaf\x8f\x66\x4c\xe6\ +\x57\x47\xf3\xa1\xa1\xe4\x3f\x7f\x24\x94\x79\xd2\x8a\x6e\x93\xf6\ +\xcb\x02\xa3\xf2\x3e\x79\xfe\x34\x9e\x7e\xfa\xa9\x78\xe7\xef\x7f\ +\x43\xbc\xf3\xf3\x1e\x8b\xd3\x95\xae\x6d\xb3\xdd\xf8\x95\x5f\xf8\ +\xd5\xf8\xe9\x7f\xfa\xeb\x7e\x5a\xcc\xe3\xd3\xb5\xca\xa5\x42\xd0\ +\x36\x2a\x69\xd6\x71\x2b\xee\x7c\xa8\x6c\xd2\x79\x2c\x50\x37\xf2\ +\x4d\x8d\x6d\xb5\x45\x96\x6f\x1b\x50\x38\x59\x2a\x68\x6c\xbb\x5c\ +\xc7\x91\xe6\x22\xd7\x6f\x30\x2f\xe1\x55\xe1\x3b\x71\xcf\x3d\x87\ +\xf1\xd0\x1b\xef\x88\x07\x1e\x99\xc7\x23\xaf\x7b\x55\xdc\x79\xcf\ +\x4c\xfb\x70\x4f\x6d\xb7\x90\x3f\x7e\xf4\xa7\xe3\x92\xb6\xa4\x0d\ +\xf5\x49\xef\x85\x22\x29\x5a\x4b\x29\x03\xbb\x89\x3e\xd2\xb6\xde\ +\xb6\x0d\x8a\x3e\x54\x47\x48\x9b\x32\x62\x5f\xe9\x93\x3e\x5a\xd9\ +\xd1\x86\xd9\xb4\xc4\x26\xb6\x0f\xda\x53\x71\xeb\x09\xd0\x86\x98\ +\xad\x72\x09\x83\x0e\x48\xe8\xf2\x27\x59\x48\x2a\xc7\x59\x10\x6d\ +\x43\x19\xc5\x38\x4f\x04\xf2\x5c\x89\x49\xd1\xe3\x32\x90\xa5\x49\ +\xa4\xce\x35\x54\xa8\x72\xa6\x99\xa0\x56\x16\x9d\xff\x97\x86\x8e\ +\xe5\xf7\x5c\xd0\xe5\x80\x55\xef\xb2\x3d\x9b\x4c\x69\x2e\x75\xd8\ +\xc0\x92\x9e\x8d\x18\x44\xfe\x21\x9b\xca\xc5\xb9\x75\xb1\x17\xf1\ +\xec\x33\x27\x71\xf5\x83\xa7\xf1\x96\x07\x7f\x6f\xbc\xe9\xb5\xbf\ +\x37\x3e\xfb\xd3\x3e\xdf\xfa\xb5\xe6\xa7\xbc\x45\xa3\x47\x9c\x20\ +\xbd\x6f\xf8\x09\x13\x5e\x29\x98\x7a\xfd\x84\x09\x2f\x1d\x74\x7d\ +\xe2\x72\x34\x61\xc2\x84\x57\x22\xa6\x83\xff\xe3\x00\x8d\x35\x1e\ +\x81\x8c\x1b\x2f\xc7\xf6\x37\x63\x24\xf7\x9c\xe4\x9c\xcd\x4b\x3f\ +\xa0\xe9\xcc\x7a\x23\x7e\x2b\xcf\x9c\xc0\x58\xe7\x09\x4a\xa9\xb5\ +\x61\x81\x6c\x36\x9f\xc7\x53\xef\x7f\x5f\xfc\xb3\xaf\xfa\xea\xf8\ +\xb5\x6f\x7f\x57\xbc\xf6\xe1\x7b\xe2\xfe\xfb\xef\x89\x2b\x17\x2f\ +\x68\x52\xcc\x0d\x21\x82\x26\xb2\x9a\xa4\x33\x89\xb9\x71\x74\x14\ +\x47\xd7\xd7\x9a\x44\x1f\x89\x5f\xc9\x8f\x7c\xe2\xba\x72\xf1\xcd\ +\x68\x71\x59\x12\x32\x13\xcd\x7b\x3a\x2c\x49\x79\xce\xc9\x94\x82\ +\xb4\xb6\xeb\x0d\xee\x8a\x60\x0a\x94\x86\xe6\xc6\x13\x51\xd3\x30\ +\x84\x5a\x61\xb0\xa5\xe5\x08\x91\x29\x02\xe2\xdb\x74\x23\x04\x94\ +\x8b\x78\x93\x07\xc0\x9a\x72\x6f\xdd\xb0\xc2\x44\x99\x22\x4f\x19\ +\x82\x14\x3b\x56\xf5\xb0\xa3\x5c\x2e\x3f\xdf\x8a\x81\xa7\x8b\x4c\ +\x00\x25\xa3\xc6\x79\x83\x01\x5f\x7d\x13\x48\x71\xdb\x63\x57\x3a\ +\x44\x55\x02\x21\x6f\x0a\xe1\xc1\x5f\xeb\xca\x4e\x94\x6f\x84\x20\ +\xac\x1d\xcc\xe4\xd6\xbf\x5e\x56\x7a\x74\x27\x92\xf3\x34\xd3\x5a\ +\x72\x67\x71\xc2\x62\xcc\x69\x5c\xd8\xbd\x11\x47\x67\xab\xf8\xc8\ +\xea\x38\xde\x7f\x32\x8f\xf7\xac\x0f\xe3\x7d\x37\xf6\xe3\xc9\xd5\ +\x3c\x9e\x99\x1d\xc7\x0d\x7e\x6d\x3c\xe7\xe6\x90\x6c\xf7\xd6\x71\ +\xe9\xe0\x34\x16\x6a\xf3\x83\xc5\x2c\xf6\xe6\x7b\xb1\x98\xcf\xe2\ +\x4c\x13\x56\x16\x6a\x58\x5c\x63\x11\x2b\x5b\x5c\x45\x11\x6f\x8a\ +\x19\x39\x45\x93\x8d\x9f\x5e\xe3\x3f\xa6\x14\x5b\xc5\x27\xd5\xd4\ +\x26\xcb\xee\x0f\xfa\xe4\xb7\x50\x3e\xb1\xf0\x13\x5c\x4c\xf6\xe5\ +\xd7\x7b\x47\x0a\xef\xff\x0a\xf6\xa1\x36\xe1\x17\xaa\xb4\xdd\xe9\ +\x52\x6d\xb4\x66\x51\x4d\xfd\x97\x57\x02\x2d\xd7\x31\xd7\x6c\xfc\ +\xce\x87\xf6\xe2\xe1\x37\x1d\xc4\xdd\x77\x5c\x8a\x27\x7f\xe3\xe9\ +\xf8\xc5\x1f\x7e\x3e\xae\x5d\xbd\x2e\x17\xfc\xc2\x55\x3e\xd8\xbf\ +\xca\x87\x65\x2e\xfa\xa4\xbb\x25\xff\xf4\x26\x3f\x2b\x4d\xd8\x8f\ +\x65\x77\x7c\x3c\x8b\xe3\xe5\x4c\xc7\xc7\x4e\xac\xd5\x76\xb3\x93\ +\x59\x1c\x2a\xdd\x1d\xd2\xbd\xea\xc2\x71\xbc\x7a\xbe\x1b\x0f\x5f\ +\x58\xc7\xc3\x8b\x9d\xb8\xbc\x3b\x8b\x4b\x3b\xfc\x1f\xda\x5c\xe9\ +\xb9\xb1\xa0\x62\xe2\x5f\x9b\x5e\xcc\x99\xd3\x31\x0c\xd5\x8b\x76\ +\x73\x9e\xb4\x1f\x55\xd3\x86\xfa\x9f\xaa\xde\x2a\x0c\x4d\x40\x99\ +\x5c\x6d\x7f\x92\x71\x39\xcb\x9e\x14\xbd\xd0\xcd\xa2\x58\xda\x02\ +\x7c\x62\xcf\xb7\x25\x15\x0f\x46\xed\x28\x75\x76\x53\x3c\xfb\x81\ +\x96\x49\x49\xee\x83\x84\xec\x2c\x76\x0a\xdb\x8e\x41\xff\xcc\x42\ +\x97\x40\x40\x94\xfb\x1d\x9a\xd8\x29\x07\x9f\x98\x7b\x1f\x23\x2d\ +\xd9\x76\x9c\x8c\x4b\xcb\xa6\x69\xc7\x4a\xd5\xb6\x40\x06\xd9\x72\ +\xd0\x95\x52\xac\xfd\x53\x2c\x0b\x48\x23\xc2\x0d\x9c\x36\x84\x71\ +\x1d\xed\x79\x28\xab\x62\xed\xa0\xa1\x8c\x55\x5e\xee\xea\xf2\x44\ +\x25\xaf\xd3\x3d\xdb\x5d\xc4\xc1\xc1\x61\x1c\xec\xf3\xff\x2d\x73\ +\x1f\x13\xb4\x13\xaf\x0c\xf5\x13\x6e\x67\x0b\x2f\xac\xbd\xf7\xa9\ +\xc7\xe3\xbd\xbf\x71\x1c\xaf\xfa\xdc\xcf\x8f\xcf\xf9\xc3\xff\x6a\ +\xbc\xee\x5f\xf8\x74\x67\x77\x7a\xac\xde\xbc\xc7\x91\x8c\xe3\x2a\ +\x68\xd5\xf5\x26\x94\x49\x03\xb2\x45\xe7\x54\xff\x7c\xc0\x19\x38\ +\xef\x70\x9c\x49\xdb\x34\x6e\x27\x9f\x30\xe1\xe5\x82\x3e\x90\x20\ +\xf4\xf5\xa1\xa8\xd8\x3f\x6b\xd9\xd1\xd8\x48\xe7\xf6\xdd\xd9\x3c\ +\x7e\xea\xa7\x7f\x38\xbe\xfd\x47\xff\x72\xbc\xef\xd9\x1f\x88\xc7\ +\xde\xf0\x70\xcc\x77\x2f\xe7\x42\x06\x36\x3e\x0e\x64\xaf\x8b\xb2\ +\x2f\xdf\x72\xe2\x31\x17\x62\x80\x4c\x27\x20\x9f\x23\x38\x99\x70\ +\x01\x10\x7c\x8e\x1f\x20\xbd\xb6\x1e\x2f\x59\x5d\x05\x91\xdc\xe7\ +\x1f\xc4\x3e\x21\x8a\x21\x86\x4c\x0e\x85\xe2\xd2\x39\x64\x39\x80\ +\x39\x1b\xa9\x7c\x22\xf2\xe7\x3a\x09\x9b\x78\x23\x89\x85\xda\x88\ +\x6f\xb9\x63\x61\x38\x3d\xb5\x40\xd8\xf0\xe3\xeb\x85\x38\x98\xe6\ +\xb9\xfe\xf9\x1c\x8d\x9c\x50\x0e\xac\x57\x99\xc5\x7a\x1c\x83\x0f\ +\x47\x15\x53\x4a\x11\x49\x13\xc3\x53\x08\x8f\xc2\xac\xd8\x72\x25\ +\xf4\x58\xcb\x71\xed\x87\x96\x53\x40\xfe\x35\x8d\x2f\xe2\x33\x5d\ +\xa3\x17\x8b\xb3\xd8\x5f\xf0\x1a\xe7\x7c\x6a\xed\x83\xbf\xc6\xe2\ +\xda\xf3\xf1\xfe\xf7\x9e\xc4\xd5\x27\x6f\xc4\x62\x7f\x57\x63\x23\ +\x95\x71\xb1\xd6\x58\x60\xa5\xf3\xfc\x6e\xec\x1f\xcc\xe3\x82\xce\ +\xfb\xfb\x07\x4a\xbf\xc7\xeb\x21\xe7\x71\x70\xe1\x20\xe6\xea\x07\ +\x2e\x59\x8d\xdf\x72\x8c\xc4\x48\x03\xd4\x5e\xf6\x3e\xca\xfc\x91\ +\xb8\x99\x48\x82\x8c\x32\x43\xe9\xeb\xa7\xd8\x17\xb8\xa2\xb0\x2c\ +\xd8\x9d\xc5\xea\x58\x65\xc0\xaf\xd2\xf0\xda\xec\xd9\xde\x4e\x2c\ +\xf8\x6f\x5a\x8d\x43\xf8\xff\xb0\xb9\xca\xca\x22\x14\x6f\x14\xf0\ +\x22\x13\xf9\xd9\x6f\x66\x62\x57\x0a\xf8\xa2\x0d\xf8\x9f\x64\x64\ +\xcf\x7c\xe4\x39\x8d\x7b\xae\xc5\xe7\xfd\xfe\xb7\xc4\xa7\x7c\xce\ +\xc3\xb1\xbc\xbe\xaf\x31\xca\x2a\x7e\xf1\xe7\xde\x17\xbf\xf8\x63\ +\x4f\xc5\x92\xf9\x81\xc6\x5a\x4e\x47\x41\xe5\xd9\x9f\xea\xbf\x39\ +\x16\x49\x58\x5d\x75\x28\x4a\x79\x91\x0f\xf9\xb3\x88\x96\xaf\x94\ +\x67\x01\x6d\x59\x0b\x69\xcb\xd5\x3a\x8e\x4e\x4e\x35\xde\x3a\x8d\ +\xf9\xde\x2c\xee\xbc\x73\x11\xf7\xde\xab\x31\xdc\x83\x8b\x78\xed\ +\x6b\xef\x8c\xd7\x3e\x72\x4f\xcc\x34\x66\x55\x11\xe2\xe4\x48\x65\ +\x9b\x71\x4c\xad\x7c\x1c\x91\x81\x73\x77\x19\x2a\x53\x91\xcd\x61\ +\x92\x06\x1d\xa5\x26\xaf\xf3\x70\x65\x29\x1e\x7b\xc4\x8e\x4d\x4b\ +\x86\xca\x12\xc1\xf5\x55\x0a\x45\x50\x88\x3d\xf6\x29\xfd\xe0\x53\ +\x51\xfb\xb0\x46\x1b\x6b\x4a\xdf\x8a\xd6\x0f\x76\x2a\xac\x7f\x00\ +\x55\x48\x8a\x1e\x41\x5b\x97\xad\xd3\x0d\x29\x12\x5d\x20\x0a\x5b\ +\xa9\x88\x36\xdc\x50\x03\xb7\x47\x2f\xbc\xd9\x4f\x19\x59\xe4\xf2\ +\xa9\x07\x2b\x76\x3e\x8a\xb1\x45\x0a\x9f\xa9\x40\xb6\x5f\x26\x55\ +\x07\x52\xe1\xf2\xe9\x38\x7c\x63\x8b\x0f\x73\x0a\x22\x5c\x2e\xa8\ +\xf2\xc0\xf8\x08\xb9\x6d\xb0\x92\x1c\x1b\x47\xea\xcb\x9a\x53\xb0\ +\x48\xfc\xd4\x87\xb4\xcf\xaf\x5f\x8a\xb7\x3e\xfc\x05\xf1\x39\x9f\ +\xf1\x85\xf1\xd0\xab\x1f\xf6\x22\xec\xee\x1c\x3f\xf9\x5e\x07\xfc\ +\x94\xd7\x09\x13\x5e\x51\xa8\xc3\x67\xc2\x84\x09\x2f\x01\xa6\x05\ +\xb5\x09\x13\x5e\xc1\x98\x0e\xfe\x8f\x01\x1a\xe8\x63\x8d\x3a\x5e\ +\xa8\x11\x49\x5b\x7a\xcf\x35\x3e\xd1\x0d\xee\x3c\xba\xd0\x8a\x47\ +\x79\xa6\x94\xc9\x43\x0a\x50\x19\xb2\xe7\x17\xa7\xbb\x8b\x79\xfc\ +\xfa\x8f\xfd\x68\xfc\xc8\x57\x7c\x45\x7c\xf4\x9f\xfe\x58\x3c\xfa\ +\xda\x8b\xf1\xc0\x6b\x1e\x8c\xc3\x3d\x4d\x40\x65\xcc\x4d\x18\x16\ +\x1f\x98\x51\xb3\xf8\xc0\xff\xa5\x11\x96\xfe\xa3\xfc\x13\xcb\xbd\ +\xc0\xe0\x8f\x1d\xeb\x9b\x33\xd6\xce\x8b\x98\x76\xc8\xb2\x30\xc3\ +\x13\xe5\xc9\x17\xb6\xfa\xda\x50\x25\x14\x61\xd9\xd0\x68\xdc\x0c\ +\x2a\x5b\x3b\x29\x5b\x05\xbf\xca\x08\x9a\xac\x88\x89\xca\x2e\xfd\ +\x65\x79\x92\x1c\xd1\xb5\x35\x8a\x1c\xcb\xc9\x15\x0c\x56\x2d\xa8\ +\xb2\x51\xab\x14\x51\x5e\xd9\x0d\xfa\x6c\x61\x42\xdb\xa5\x2c\xed\ +\x4c\x0f\x71\xe9\x4a\x86\xd8\x5b\x6e\x1e\x20\xd3\x87\x9b\x57\x79\ +\x33\x47\x1c\x37\x78\x6c\x92\xf6\x94\xce\x56\x9a\x8b\x3a\x46\x26\ +\x86\x9b\x26\xd0\xc8\x40\xde\xa4\x21\xce\x00\xc8\x1a\x39\x0b\xa5\ +\x2b\x51\x6b\xf9\x3e\xe4\x35\x89\xeb\xb3\x58\xee\xae\xfd\xd4\xda\ +\xd1\xd9\x49\x3c\x7d\xbc\x8e\x0f\x9e\x9c\xc6\x87\x8f\x76\xe3\xc3\ +\x27\x0a\xc7\xbb\xf1\x84\x26\xc0\xcf\xee\x6a\x42\xba\xa7\xfe\xb0\ +\x88\xd8\xdf\x3b\x8b\x8b\x7b\xa7\x71\xb0\x58\xc5\x6c\x0e\x3f\x8f\ +\x7d\x4d\x6a\xf7\x78\x25\xa3\x26\xb6\xf9\x7e\x42\xed\x20\x76\x0a\ +\x55\x56\x4c\xdd\xf3\x7e\x8a\x6c\x76\x15\xd0\x4b\x80\x8c\x45\x23\ +\x17\x78\x40\xed\x77\xea\x65\x96\x7d\x90\x75\x29\xb1\x41\x9d\x50\ +\x64\x6a\xd2\x88\x42\x49\xcc\x2f\xab\x45\xd2\x36\xb4\x6d\xdf\xa0\ +\xe1\x46\x0f\x38\xe5\x09\x81\xe5\x3c\x76\x0e\x8e\xe3\xf0\xca\x5e\ +\x3c\xf8\xf0\x5d\xb1\x7b\xb2\x8e\x27\x3e\xf4\x4c\x3c\xf9\x81\x1b\ +\xb1\x5e\x1e\xc5\x5c\xe5\xf4\x54\x1e\x3f\xb4\x9d\x92\xae\xe4\x8b\ +\x57\x27\x1d\xc9\xcf\x35\xfe\x22\x44\x6d\x34\x3b\xde\x89\x0b\x52\ +\x5e\xda\x39\x8e\xfb\x76\x4e\xe2\x21\xb5\xe5\x1d\x87\x67\x71\xa7\ +\x8e\xb1\x3b\xd4\x16\x97\x76\xe6\x71\xf9\x6c\x1e\x17\x67\x7b\xaa\ +\x33\xaf\xef\x3b\x55\x13\x55\x59\x05\x6e\x8a\xa8\x45\x54\x6c\xf8\ +\x33\xa9\xb3\xaf\x0d\x37\x28\x58\x6c\xa3\x0d\xb0\xb5\x8d\x8f\x26\ +\xb7\x1d\xd8\x55\xbd\xf2\x18\xc0\x26\xf5\x56\x69\x43\xdc\xc7\x07\ +\xba\x5c\x50\xcb\x7c\x6d\x25\x45\xfa\xe9\x94\x6c\xda\x0f\x79\x14\ +\x65\x99\x9d\xc0\xb0\xc9\xb2\x99\x12\xe4\x64\xa3\x12\x4d\xac\x30\ +\x94\x46\xb6\x43\xae\x14\xde\x32\x0b\x0c\xec\xdb\x5b\x6f\x87\xf2\ +\x68\x4b\xcc\xfe\xce\xf3\x42\x49\x2c\xb4\xda\x71\xfa\x10\x38\x3e\ +\xe8\x7e\x16\x63\x29\x5f\x56\xa4\x2c\x37\x85\xa2\xed\xa6\x1a\xd4\ +\x65\x77\x9c\x65\x40\x6c\x3f\xe4\x4d\x21\xd0\x2b\x70\x3c\xb9\x7d\ +\x24\xb6\x08\x5a\x81\x36\xb6\x99\xf6\x8b\x79\xd9\xcd\x76\x16\xea\ +\x8b\xa2\x75\x9c\x2c\x16\x07\xb1\xa7\xf3\x2c\xff\xbf\xb3\xa3\xfe\ +\x41\x3a\xef\x5f\xf9\x59\x6a\xcf\x1e\x2d\x23\x9e\x7c\xf6\xd9\xf8\ +\x99\x0f\x7c\x24\xf6\xee\x7a\x24\xde\xf4\x05\xff\x52\xbc\xed\x5f\ +\xf9\xbd\x71\xe7\xeb\x1f\x8e\xd3\xe3\x13\xbf\xa2\x97\x34\x1b\x8c\ +\xe8\x26\x29\xaa\xa2\xb1\x15\x40\xb6\x05\x0c\xda\xf0\x26\xe5\x8b\ +\xc4\xc7\x4a\x7b\xbe\x10\x13\x26\xbc\x1c\x31\x3e\xa0\xfa\xa0\x1f\ +\xf5\x7b\x0e\xc9\xd5\x99\x8e\x60\x2f\xa2\x2f\xe2\x7b\xbe\xff\x3b\ +\xe2\x5d\xdf\xfb\x65\xb1\xbc\xf8\x44\x3c\xfa\xd8\x63\xb2\xd8\xf3\ +\x7f\x73\xf1\xe8\x1a\xe7\x13\xae\xef\xdc\x2c\xee\x05\x06\x16\x43\ +\xec\x56\x6c\x9e\xb7\x44\x73\xce\xd0\x98\xa7\xb8\xca\x33\x65\x89\ +\xd4\x90\xc8\xe7\x38\x6f\xd2\x2e\xe5\xa4\x2d\x7f\x3e\x7f\x0d\x6a\ +\x13\xad\x1d\x24\x98\x58\x9f\xe7\x6b\x2f\xe4\x49\x68\xb7\x48\x15\ +\x3b\x45\xfb\x02\xe4\xad\x73\x6e\x55\x63\x10\x43\x90\x27\x79\x58\ +\xb6\xd9\x18\x99\xb7\x09\xe7\xe9\x38\x25\x4e\x41\xf3\x90\xa1\x75\ +\x65\x64\x33\xc5\x94\x23\x4b\x68\xcd\xd6\x36\xc7\x4d\xcd\x2b\xf6\ +\x37\x63\x2f\x5c\x21\xef\xfc\x70\xa4\xb2\x7b\xfc\x25\x12\x19\x60\ +\xac\xe0\x7a\x73\x2d\x41\x5c\xe9\xe0\x4e\xcf\xf8\xf1\xc3\x69\x5c\ +\xbc\x44\xac\x73\xf5\x13\xcf\xc7\xfb\xdf\x7f\x23\x9e\xfe\xf0\x73\ +\xf1\xf8\xfb\x4f\xe2\x03\xbf\x76\x1c\xd7\x9f\xb9\xee\xc5\xb3\x83\ +\x0b\x3c\x9d\x4c\xfb\x30\x8e\x5e\xf9\xc6\xff\x62\x6f\x16\x17\x0e\ +\x2f\xc4\x42\xe3\xa5\xc3\xcb\xb2\x39\xdc\xb7\x5c\x57\x1a\xbc\x7b\ +\x81\x60\xc9\xd8\x5b\x39\xfa\x43\xc6\x6e\x47\x8b\x0c\x97\x35\x4b\ +\x96\x5b\xea\x5c\xfd\x8a\x36\x27\x0d\x81\xb1\x45\xfe\xe0\x2a\xed\ +\xd9\x9f\x3c\x39\xcd\x70\x8e\xbf\xf5\xdb\xad\xff\xa5\x85\x67\x69\ +\x36\x87\x6d\xda\xb8\x81\x04\x39\x51\xd1\x73\xff\xea\xc3\xa2\xda\ +\x89\x2e\x50\x4f\x3f\xf5\x6c\x2c\x0e\xe6\xf1\x99\xbf\xe7\x75\xf1\ +\x69\x9f\xf9\x60\x1c\x3d\x17\x71\x7c\xfd\x24\x7e\xe9\x67\x3f\x1c\ +\xef\xf9\xe9\x0f\xbb\xce\xfc\x77\x2c\x7e\x28\xab\xab\x20\xbf\x39\ +\x9e\x90\x20\xbf\x06\x6d\xc3\x9c\x84\xf9\x06\xaf\x3d\xa5\xbc\x2c\ +\x84\xac\x35\x1e\x43\xce\x2b\x41\x6f\x5c\x3f\x8e\xe3\xe5\x49\x5c\ +\xd7\xd8\x6b\x6f\x31\x8b\xbb\xee\x3e\x88\xfb\x1e\xb8\x23\xee\x7a\ +\xf0\x2c\xee\xbb\xff\x4a\xbc\xfa\xfe\xcb\x71\xe5\xee\x0b\xba\xee\ +\x9f\xc5\xf1\x09\x25\xdd\x53\xd6\x4a\xbb\xbb\x52\xfe\x8a\x05\xa4\ +\xf9\xcd\x9c\x69\x1f\xaa\x49\xd9\xcc\x7b\xd3\x9c\x30\xe8\x68\x53\ +\x45\x24\xb3\x2c\x99\xbc\xb6\xa7\xac\x23\x9b\x94\x30\xf3\x11\x83\ +\x1d\x1d\x45\xf0\xfe\x49\x32\x13\x10\x61\x92\xa4\xf5\xb5\x73\x2d\ +\xcf\xfd\x09\x63\x51\x42\xea\x94\xa5\x90\xe1\x54\xbb\xac\x14\xe6\ +\xdb\xaf\x7d\x0e\x16\x4d\x2b\x2e\x91\x25\xda\xb4\xbd\xf7\x99\x15\ +\x4a\x59\xa6\x84\x3e\x17\x64\x72\xd9\xc0\x8b\xc9\xb1\x48\x1a\xba\ +\xef\x0d\x1c\xb6\x1b\x9b\x1c\xcb\xa6\x0f\x74\xa5\x4a\x97\x74\x39\ +\x1f\x63\x99\x92\x83\x32\xfd\x33\x02\xc7\x0e\x23\x7f\xf3\xc9\x4e\ +\x08\xc9\x48\xe1\x79\x97\x8e\xc9\x85\xfa\xdc\xea\xe8\x2c\x3e\xf4\ +\xbe\x93\x78\xc3\x83\x9f\x1f\x6f\x7f\xe4\xf3\xe2\x73\xde\xf9\x05\ +\xa4\x76\x3f\xf2\x58\xcb\x9c\x73\x37\x95\x48\xe9\x84\x09\xbf\x9d\ +\x31\xf5\xf2\x09\x13\x5e\x3a\xe8\xba\x53\x57\xea\x09\x13\x26\xbc\ +\xe2\x30\x1d\xfc\x1f\x03\x34\xd0\xc7\x1a\x75\xbc\x88\x46\x7c\x49\ +\x07\x2e\x38\xeb\x3c\x4d\x8f\x0a\xc9\x4c\x04\xda\xfa\xed\x82\x99\ +\x93\xca\x26\x0a\xbe\xc1\xbc\xd6\x74\x7d\xb5\x8c\xdd\xfd\xfd\xf8\ +\x85\xef\xfe\x87\xf1\x33\x7f\xf6\x2b\xe3\x23\xbf\xf0\xee\x78\xc3\ +\xdb\x5f\x1f\x0f\xbc\xea\x4a\x5c\x5c\x2c\xfc\xba\xbe\x9e\x9c\xf3\ +\x64\xda\xf2\x98\xc5\xb4\xa5\x26\xa9\x27\x7e\xd5\x8a\xa6\xba\x9a\ +\xa4\x33\x8d\xa9\x89\x8e\x40\xcc\x54\xc5\xf3\xaa\x42\xf3\x14\x37\ +\x27\x51\x14\x43\x69\x72\xe6\x64\x9b\x9e\xd4\x60\x6b\x9a\x04\xf8\ +\x70\x48\xda\x93\x27\x92\x50\x11\xe8\xd2\x7b\xce\x6f\x42\xdf\x4e\ +\x67\xe0\xad\xa9\xcd\xd6\xb1\xbe\xb8\x68\xe4\x84\xcd\x54\xfa\x10\ +\xdc\x5e\x63\xa8\xac\x39\xcd\xd3\xd6\x3a\xd1\xc4\x55\x5c\xdf\xa0\ +\x29\x3e\xeb\x03\x91\xf6\x69\x67\x45\x46\x4c\xec\xc9\x53\x8c\x79\ +\xb5\xb3\xa7\xfa\xb4\x37\x46\x98\x8b\xa6\x24\xf8\x6d\x3b\xc7\x28\ +\xb1\xaf\x49\x66\xde\x54\x82\xc7\xa6\x83\x4c\xcb\x0f\x37\xfb\x11\ +\x38\x79\x05\x64\xd8\xaf\xc8\x41\x65\x39\x52\x63\xec\x29\xf6\x1f\ +\xd2\xa3\x5b\x2e\x55\x97\x65\xcc\xd7\x47\xf1\xec\x7a\x15\x57\x57\ +\xa7\x71\x7d\x39\x8f\x0f\xc4\x3c\x3e\xb8\xde\x8d\x27\xd7\xfb\xf1\ +\xf4\xe9\x6e\x3c\xb3\xde\x89\xa7\x65\xbf\xf6\x0d\x8b\x65\xf0\xf8\ +\x1b\x37\x0a\x2f\x2e\xce\xe2\xe0\x40\x61\x2f\xfc\x6b\x69\x3f\xc1\ +\xa6\xcf\x62\x67\xae\xc9\xec\xdc\x8b\x6d\xaa\x82\xda\x6d\xd7\x0b\ +\x0b\xf9\xcb\x68\xd5\xd7\x4f\xf0\xa8\x4c\x54\x4d\x71\x92\xfa\xf4\ +\x8a\x11\x32\x45\xa4\xe5\x46\x57\xd6\x9b\xbe\x64\x67\x69\xe3\xbe\ +\x21\x3b\x89\xdc\x36\x34\x35\x62\xe5\xc5\x7f\xbf\xf5\x0d\x33\x26\ +\xd6\xf6\xb3\x66\xb1\x8d\x4e\xc4\x44\x7b\x19\x87\x17\x77\x62\x4f\ +\x85\x5e\xaf\x4f\xe2\xe8\xc9\x55\xf0\x87\xff\xf4\xff\x1b\x37\xe6\ +\x71\xcc\xe2\x99\xda\xe1\x98\x5f\x3b\xcb\x2b\xaf\x66\xbc\xa2\xd6\ +\xbc\xb2\x50\x90\xd3\xbb\x74\x4c\xbc\x6a\x71\x1c\x77\xcf\x22\xee\ +\x9a\xad\xe2\xf2\xe9\x2c\x0e\xe7\x07\xb1\xa7\xfa\xf2\xd4\x91\xaa\ +\xa7\xa2\x51\x1f\xea\x95\xaf\x73\x84\xe7\x16\x1a\x75\x40\x96\xfd\ +\x2f\xfb\x92\x6d\xc5\x75\x6f\x85\xef\x45\x2f\x57\x13\xbb\x81\x4e\ +\x70\x9c\xa4\x49\xb6\x41\xde\x3c\x25\x1f\xd9\xd2\xde\xc4\x7c\x64\ +\x44\x2c\x6d\xde\xc8\xb5\x9c\x5b\x69\xec\xa9\xd4\x2b\x82\x72\x9c\ +\x54\xd3\xb0\x99\xb6\xc8\xc1\x9e\x0d\xf5\x73\xff\x66\xd1\xdb\x79\ +\x23\x47\xa4\x14\xc3\x82\x5b\xcb\x4b\x09\x44\x3a\x6f\x8a\x6c\x36\ +\x6d\x93\x4e\x97\x10\xa4\x1b\x6e\x62\x35\xda\xa8\x85\xf0\x15\x21\ +\x62\xb1\xd6\x7e\x4b\x60\x75\xb5\xb9\x49\x85\xa1\x9c\x92\x66\x1d\ +\x92\xf7\xfe\x1a\x19\x90\xf7\x90\x30\xad\x5d\xb6\x41\x54\x65\x73\ +\x19\x9d\x26\x79\x77\x46\x9c\xc9\x98\xa7\x1c\xd8\x59\x3c\x1d\xb9\ +\xb7\x7f\x10\xfb\xfb\x87\xb1\xd8\x53\x1f\x61\x11\x9a\xc3\x49\xea\ +\xd5\x0a\x72\x27\x9e\xb9\x7e\x3d\xde\xff\xc4\x13\xf1\xa1\x0f\x2f\ +\xe3\xde\xcf\xfc\xfc\xf8\xb4\x3f\xfa\x6f\xc5\x1b\x3e\xf7\x33\xa5\ +\xe4\x3f\x7b\xd4\x7b\xe8\x58\x74\x66\x45\x2e\x08\x91\x42\x15\xd7\ +\x75\x2e\xd2\xa8\x6a\x6d\x03\x03\x27\xaa\xf8\xe3\xc5\xc7\xcc\x40\ +\x38\x6f\x33\xe6\x27\x4c\x78\xb9\xa0\xfb\xb7\xfb\xaf\x98\x71\x7f\ +\xd7\x89\x62\x7d\x76\xa2\x73\xfb\x3e\x4c\xfc\xbd\xef\xfe\x5b\xf1\ +\xad\xdf\xfb\xe5\x71\xdf\xc3\x11\xf7\xbd\xfa\x91\x98\xed\xcc\x62\ +\xc6\x62\x9a\x2e\x3c\x3e\x2b\x70\x70\x12\xb8\x4e\x89\xcd\xc5\xf7\ +\x72\xa8\xc8\xe7\x6c\x7b\x62\x93\x94\xcf\xe1\x1e\xc8\x61\x5b\xe7\ +\x96\x3e\xa0\x48\x63\x89\x09\x45\x79\x8e\xc3\xbc\xcf\x0d\x08\xfc\ +\xe3\x00\xf3\x95\x97\xad\x12\x96\x92\x07\xb1\xb6\x14\x87\x22\xb6\ +\x49\xd2\x79\xde\x4b\x06\x61\x45\x94\x07\x7b\xd1\x98\xf3\xe3\x13\ +\xae\x14\x2d\x03\x99\xa4\x9c\xe1\x42\x51\xfb\x77\xac\x80\x36\x8b\ +\xab\x3a\x72\xda\xac\xd4\x79\x33\x9e\xab\x2f\xb6\x25\xf3\xc7\x29\ +\x86\xf4\xc0\x63\x1f\x82\x1c\x21\xf7\x6b\xb7\x51\xd4\x26\xc7\x56\ +\xfa\x2a\x76\xba\x1e\x53\x74\x9b\x2a\x1d\x3f\x38\x4a\x9b\xb5\x42\ +\xe6\x91\xe9\xa1\xf9\xc1\x04\x4f\x4f\x29\x77\xb1\x7e\x0a\x6d\x1f\ +\x5e\xe3\xa2\x8f\xdc\x88\x0f\x7e\xf8\x99\x78\xea\x57\x57\xf1\xd1\ +\x8f\x8a\xfe\x8d\xa3\x78\xe6\x49\x0d\x36\x74\x4e\xbf\x78\x71\xe1\ +\xd7\xa8\x33\xae\xe0\x09\x77\x2e\x09\x87\x87\x3c\xb5\x3c\xf3\x13\ +\x6b\xb3\xb9\xf6\xb9\x76\xd0\xc1\xc1\xbe\xc2\x81\xcf\xeb\x7e\x6d\ +\xa2\x1a\xc2\x59\x8b\xa7\x4d\xfc\x0a\x6d\x65\x8c\xac\x4a\x26\x82\ +\xf2\xb9\xc1\x5c\xf6\xdc\xcf\xa9\xcf\xb1\x00\x46\x54\x95\xf1\x1e\ +\x32\x31\x5c\x42\xb8\xee\xe8\xcb\x7f\xf8\x6d\x9e\x20\xa3\x8f\x41\ +\xab\x7e\x9a\x0f\xf0\x4a\xc7\x1c\x77\xba\x40\x1a\x13\x9d\x68\x5e\ +\x70\x1a\x57\x9f\x7d\x3e\xf6\xef\x98\xc5\x3b\x3f\xf7\xa1\x78\xec\ +\x4d\xaf\x89\xd5\xf1\x6e\x5c\xbf\x76\x23\xde\xf3\xd3\x4f\xc5\xfb\ +\x7e\xe9\x09\x15\xe9\x86\x5c\x50\x68\x95\x47\x17\x36\x8e\x01\xfb\ +\x15\xef\x27\xfc\xeb\x15\x8e\x8c\xc9\xf8\x6f\xe6\x53\x68\x8d\x39\ +\x29\x2b\x2f\xc0\x38\xd6\x85\xf0\xda\x91\xc6\x61\x67\xf3\xb8\x7c\ +\xd7\x41\xbc\xea\x9e\xfd\xb8\xeb\xae\x45\xdc\x75\xcf\x5e\xdc\xf3\ +\xaa\x4b\xf1\xc0\x83\x77\xc4\x85\x4b\xf2\xa7\x71\xdb\x92\xdf\xfe\ +\xad\x73\xbc\xc9\xff\xc9\xed\x30\x48\xeb\x4a\x77\x43\x50\x1f\x57\ +\x16\xb6\x74\x96\xb3\x61\x5f\x0e\xbd\x4d\x26\xa2\x25\xae\x1e\x91\ +\xcd\x61\xb3\x96\xa4\xcc\xf2\x31\xe4\xdb\x36\x52\xd0\xec\x1e\x0b\ +\x0d\x5e\xd2\x05\xfe\x13\xe2\xca\xbe\x61\xca\x09\x93\xb6\x0a\x7f\ +\xd8\x8d\x80\x89\xcb\x2b\x62\x93\x5a\x90\x9c\xdd\xc8\xfe\x1a\xca\ +\x8c\xd8\xf6\x50\xda\xe0\xbe\xe4\x06\xbc\xcb\x61\xce\x86\x0c\xed\ +\x33\xbd\xfc\x4b\x3e\x2a\xe2\xe0\x07\x9f\x6c\x86\xbe\x28\x79\x9b\ +\x99\x27\xb8\x7c\x50\xe5\x1c\xdf\x45\x22\xf6\x9c\xc8\x0e\xf3\x18\ +\x44\x98\x2d\xa6\x3a\x38\x4d\xa6\xcf\xd7\xea\x73\x2c\x88\x67\xff\ +\x51\xa0\x76\x6b\x7f\x38\xdb\xd5\x1c\x83\xb1\xf2\x22\x9e\xd1\x71\ +\x78\xfc\xfc\x85\xf8\x8c\xc7\xfe\x60\x7c\xee\x67\xfc\xc1\xb8\xe7\ +\xee\x57\xab\x9f\x69\xee\x4a\xe3\xe8\xcb\x9b\x2b\xb2\xd4\x0d\x9c\ +\x4d\x98\xf0\xdb\x17\x53\x0f\x9f\x30\xe1\xa5\xc3\xb4\xa0\x36\x61\ +\xc2\x2b\x18\xd3\xc1\xff\x71\x80\xc6\xea\x11\xc8\x8b\x6c\x38\xcc\ +\xdb\xf4\x25\x1b\xbc\x9c\x77\xca\x29\xdc\x71\x29\x98\x8c\x58\x96\ +\x7c\xaa\x73\xa2\x05\x98\x18\x31\x59\x3a\xd3\xe4\x9f\x99\x34\x4f\ +\x37\xfc\xcc\xb7\x7f\x5b\xfc\xf0\x9f\xf9\xb2\xd8\x7b\xf2\x43\xf1\ +\x9a\xd7\x3d\x1c\x0f\xdd\x7f\xb7\x9f\x30\xe2\x1e\x02\x0e\x78\x9d\ +\xe3\x52\x13\xdc\xf5\xc9\x2a\x8e\xf8\xcf\xb4\x13\x4d\x6a\xd7\xbc\ +\xf6\x91\x9b\x41\x39\x59\x27\xaf\x2e\x17\xf9\x79\xa2\xe2\xcb\x8b\ +\x38\x17\x25\xe3\xf1\x74\x72\x93\xcc\x06\xb9\x4d\x55\x2a\x99\xd4\ +\x91\x88\x6f\xfe\xa1\x54\xc9\xf4\xad\x89\x50\xeb\x1d\x40\xc5\xce\ +\xb3\x98\xce\x8f\xd2\x90\x3c\xe5\xe9\x2f\xa9\x92\xba\xbc\xa6\x72\ +\x82\x26\xf4\x3c\xcd\x89\x1d\xb5\x4d\x22\xdb\x57\x1b\x8b\x45\xc1\ +\x97\x1f\x47\xb9\xa9\x1b\x10\xc5\x2b\x30\x6f\xe4\xf2\x5b\x6a\x07\ +\x5f\x8e\xf5\xf5\x0d\x1e\x13\xa9\xe2\xa6\x85\x55\xda\x87\x8e\xb5\ +\x49\x13\xfc\x28\x60\xa3\x6d\x2f\xaa\x11\x7a\xc1\xc8\x36\x8a\x99\ +\x8c\xda\x7f\xd5\xd8\x4f\x67\x59\x96\x3a\x07\xea\x2a\x9e\x49\x2d\ +\x4f\xae\x1d\x6b\xff\xee\xaa\x0c\xb3\xf5\x59\x9c\xc8\xde\x4f\xbe\ +\xed\xae\xfd\xda\xa3\x63\xd1\xc7\x2a\x17\x8b\x6c\x1f\x59\x45\x3c\ +\xb1\x9e\xc5\x47\x96\xf3\x78\xe2\x64\x16\xcf\x68\x22\xcb\xdf\xd1\ +\x5f\xe7\xcf\xf2\x79\x6a\x6d\xa6\x76\x9f\x9f\xc5\x9e\x9c\xed\xcf\ +\x4e\xe2\x40\xf4\x42\x3a\x6e\xa8\xf8\xd7\xcf\xbb\x9a\xf8\x56\x60\ +\xc7\xe5\x8d\x81\x6a\x2f\x78\xed\x6b\xfe\xef\x63\xc7\x81\x09\x32\ +\xb2\xdc\x67\x2a\x8a\xea\x42\xfb\xa8\x6c\xfa\x18\xd4\x83\xf4\xd8\ +\xd5\xbe\xed\x36\xa3\x9e\xf9\x4d\x9e\x36\xa5\x9f\x53\x5f\x7e\xf9\ +\x1c\x67\x07\xea\xe7\xcb\xb8\xb1\x5c\xc5\x19\xaf\x60\x94\x07\xfe\ +\x63\x8d\xd7\x31\x9e\x2c\x35\xed\x5e\x2e\x54\xee\xb3\xb8\x53\x9a\ +\x0b\x3b\xc7\x71\xc7\xde\x51\xdc\x37\x3b\x8d\xd7\xa8\x8e\xf7\xcc\ +\x76\xfd\x1a\xcc\x7d\x95\x69\x21\x9f\x8b\xb3\x85\x72\x9f\xf9\x29\ +\xa3\x03\x6e\x1e\x49\x46\x34\x57\x9d\x79\x45\x65\x97\x0e\x8a\x86\ +\xa7\xed\x5d\x6d\x97\x5b\xbd\x52\x7c\x0a\x68\x22\x24\xb2\x57\xa1\ +\x7d\xb3\x4b\x62\x78\xb4\x99\x5e\x31\x3a\x8c\x61\x65\xd0\x7e\x53\ +\x24\x5a\x7a\xe4\xbe\x39\x2b\xe7\xf4\x71\xbb\x47\xa6\xc8\xfe\x29\ +\x87\x3e\x99\x75\xca\x9d\xba\xec\xcc\x51\x16\x1b\xa4\xc8\xed\x6e\ +\xba\x04\xa8\x14\x3b\xe7\x41\x24\xde\x65\xc9\x32\x20\xb4\x1c\x3b\ +\x1b\x82\x4d\xda\x24\x06\x49\x96\x47\xc1\xa6\xaa\x64\x59\x28\x4e\ +\x23\xf6\xaf\x65\x95\xd6\xc7\x6d\x27\x2a\x64\x36\x18\x6b\x07\xa5\ +\x71\xc9\xb2\x2f\x38\x5f\x8e\xa7\xf2\xc1\x36\x0f\xdb\x6a\x13\xb7\ +\x0d\x8a\x6a\x17\x8e\x37\xc9\x68\xe7\xce\x2f\xff\x47\x10\x1f\x69\ +\x67\x58\x86\x4e\x96\xce\x48\x4c\x47\x3e\xe8\xa8\x10\xfb\x64\x1e\ +\x7b\xbc\x02\xf2\xe0\x42\xec\xcd\xe7\x3a\x46\x78\x64\x60\x27\x6f\ +\x2c\x2a\xc1\xee\xce\x5e\x1c\xad\x4f\xe2\x43\x4f\x3d\x1b\xbf\xfc\ +\xf8\x93\x71\x74\xe7\xeb\xe2\xb3\xff\x9d\x3f\x12\x9f\xf5\x6f\x7e\ +\xa1\x3a\xdb\xae\xd7\xd5\x78\xd2\x38\x2b\x83\xf3\x4d\xbb\xe5\x46\ +\x40\x70\x0b\xb4\xd8\xc9\x92\xfc\xbf\x8f\x8f\x91\x97\xd1\x36\x13\ +\x26\xbc\x9c\x51\xc7\x9a\x8f\x1b\xf7\xf7\x3c\xbf\xad\xce\x8e\xbd\ +\x98\x76\xe3\x78\x19\xff\xeb\xbb\xbe\x32\xfe\xe1\xbb\xff\x6a\xbc\ +\xf6\xcd\x57\xe2\xc1\x7b\x1f\xd1\xf5\x90\x85\x04\xfe\x6f\x56\xb6\ +\xbe\xf8\xe8\xe8\x56\xdc\x4f\xa6\x71\xed\xe6\x5c\xd2\x8b\x64\x88\ +\x71\x8d\xcc\xd7\x40\xd2\xa5\x66\xa4\xdb\x3e\xd6\x89\xed\x3f\x89\ +\xdc\xb4\x52\xc1\x64\xc9\x7a\x81\x28\x35\x85\x21\x61\xc7\xcd\x29\ +\x1f\x57\x74\xa3\x27\x9f\x32\x19\x81\xb2\xa5\x30\x7f\x4c\x61\x2b\ +\x21\x73\x70\xea\x4a\x36\xe4\x00\x5f\x4c\xf3\x59\x3f\x73\x25\x04\ +\x92\xd8\xa7\xda\x2a\xd9\x94\xd1\x96\x12\xe6\x58\xa0\x20\x7a\x18\ +\xd7\x98\x45\x57\x36\xd9\xc8\x6e\x6f\x1c\xf9\x07\x41\xc8\x59\x8c\ +\x91\x80\x1f\x31\xb8\xcd\xe5\x33\x6d\x58\xfc\x42\x99\xe9\x1a\xe9\ +\x2f\xed\x70\xe4\xff\x2f\x83\xd7\x59\x7f\xb1\xbf\x1b\x87\x1a\x13\ +\x2c\x57\x3b\xf1\xe4\x47\xae\xc7\xe3\x8f\x5f\x8d\x67\x3e\x78\x23\ +\x1e\x7f\xff\x59\xfc\xfa\x6f\x1c\xc5\xd3\xcf\x1c\xa9\x0f\xcc\xe3\ +\x92\xc6\x43\x73\xfe\x13\x73\x67\x19\x2b\x8d\xb7\x77\x55\x16\x16\ +\xb7\x16\xfb\xf3\x98\xcd\x67\x71\xf9\xd2\xc5\x58\xe8\xdc\xbe\x7f\ +\xb8\xe7\x27\xdd\x28\x18\xe5\xf7\x8f\xb0\x18\xc7\x2b\x6f\xf7\x0d\ +\x17\x0b\x3f\xb4\x8c\xca\x35\x14\xd3\x23\x9f\x6c\x07\x0a\x0b\x30\ +\xc3\xc6\x32\xe9\xe1\x6d\x4f\xe1\x69\x5f\xb4\xd2\x3b\x65\xa6\x71\ +\x1f\x55\x3e\x8c\xc7\xb8\x8c\x52\x4f\x3f\x6d\xa7\x6b\xd4\x8d\x6b\ +\x47\xb1\xd6\xb8\x69\x47\x75\x79\xeb\x3b\x1f\x88\x37\xbc\xe1\x21\ +\x97\xfd\xfa\xf3\xeb\xf8\x89\x1f\xfe\x95\xf8\xe8\x07\x9e\x8d\xf9\ +\x7c\x15\x2b\x8d\xa3\xe6\xba\xb6\xf9\xff\xde\x94\x96\x85\x48\x9e\ +\x40\xe3\x6d\x17\xfc\x0f\x1a\x59\x49\x1c\xcb\x63\x7e\xb8\xa4\x79\ +\xc7\x6a\x15\x07\x7b\xf3\xb8\xff\x81\x2b\x71\xd7\x3d\x6a\xab\x7b\ +\x76\xe2\xae\xfb\x2e\xc4\xdd\x77\xdf\x11\xf7\xdd\xcd\xab\x33\xe7\ +\xb1\x54\x61\x96\xfc\x38\x4a\xe3\x50\x3f\x6d\xe7\xc1\x93\x82\xeb\ +\xe4\x4a\x19\x5d\x1b\xda\xa7\xa5\x3d\x97\xa0\x6d\x88\xdd\x0e\xb6\ +\x4a\xeb\x1c\x53\xa1\x20\xa2\x45\x44\x4a\x98\xaf\x57\x2c\x4b\x27\ +\xe6\x78\x4b\x3d\x21\x13\x0a\x62\x86\xff\x86\x16\x8b\xcf\x6e\x59\ +\xfb\x75\x5a\xe0\x54\x29\x43\xd7\x6a\xb3\xb2\xb6\xa9\x52\x13\x97\ +\x9d\xab\x49\x3e\xc4\xd8\x77\x9e\x00\x99\xd3\x10\x77\xa2\x42\x76\ +\xd8\x62\xe4\xbb\x6c\x13\x30\xa9\xce\x73\x43\x96\xb5\xcd\x89\x86\ +\x2e\xa4\xfc\xfa\xfc\x51\x05\x74\xdc\x75\x73\x12\x6f\x52\x8e\x09\ +\x6b\xb6\x95\x45\xea\xac\x17\x4a\x96\x3d\x35\xdb\xa8\xf6\x96\xf2\ +\x48\x19\xc6\xd9\x7e\xa9\x71\x7b\x28\xb4\x8b\x84\x38\xcb\x15\x89\ +\x64\xbc\xbb\xab\x83\xfa\xe8\x98\xd7\x93\x1e\xc5\xeb\xef\xfe\x3d\ +\xf1\xb9\x9f\xfe\x6f\xc5\x9b\x1f\xfb\x14\xff\x90\x6e\x47\xe3\x77\ +\xa7\xb9\x09\xb7\x92\x4d\x98\xf0\xdb\x03\x53\xef\x9e\x30\xe1\xa5\ +\x83\xae\x45\xbe\x4a\x4d\x98\x30\xe1\x15\x88\xe9\xe0\xbf\x05\x72\ +\xcc\xfe\xb1\x51\x76\x98\xde\xee\x2c\x6a\x5d\x92\xc6\x27\x64\x00\ +\xd3\x05\xe8\xd9\xce\xb8\x30\x12\x35\x6b\x75\xcf\x1b\xf8\xef\x03\ +\x7d\xb8\xf9\xfa\x93\xdf\xf2\xcd\xf1\xa3\x7f\xea\x2b\xe2\xd2\xc9\ +\x47\xe3\xa1\xb7\x3c\x1a\xaf\xbe\x72\x47\xec\x49\xbe\xd6\x04\x95\ +\x1b\xb9\x4c\xda\x4f\x8e\x4f\xe2\x84\x45\x85\xe5\xb1\xff\xaf\x60\ +\xad\x49\xae\x17\xd3\xe4\xcb\x37\x88\x3d\xa1\xe3\x66\xbc\x62\xc1\ +\xd3\x28\x68\x54\x4a\x9f\x45\x90\x54\x04\x13\x4e\x4b\x2c\xb4\x03\ +\xdb\xe7\xc4\x47\x01\x5f\xa4\xc5\x99\x68\x97\xdb\x13\x5e\x25\xd0\ +\x44\xd9\x68\x99\xe9\x8c\x71\xe7\xf4\xe6\x92\xef\xb9\x25\xbe\x41\ +\x4e\xef\x08\x99\x67\x23\xa9\x94\x67\xec\x12\x0d\x1c\x71\x53\x7c\ +\xf2\x96\x56\x72\x14\xcb\xf6\x8a\x7d\x23\x0c\xb9\x33\x94\x20\x8d\ +\xc4\x7b\x93\xfb\x82\x00\x10\xf9\x6e\x84\x55\x8a\x06\xc2\xf2\x41\ +\x86\x47\x78\x3e\x2d\xcf\x4d\xd2\x64\xac\xaf\x9f\xd4\x82\x48\x95\ +\xcb\x92\xf4\x99\x75\xdc\xa0\xc8\xc2\xca\x1f\xfb\x56\x3c\xf6\xd8\ +\x0d\x1f\xd2\x99\xca\xf2\xad\x64\xcf\xaf\x9b\x4f\xc4\x78\x17\x4b\ +\x7b\x2c\xf9\xce\x5a\x7d\x47\xf1\x4c\x1a\x27\xda\x59\xc5\x52\x0e\ +\xaf\xae\x57\xf1\xd1\xe5\x2c\x9e\x3d\x9d\xc7\x53\x67\xbb\xf1\x64\ +\xec\xc7\x13\xf0\x67\xb3\x78\xfe\x6c\x11\x27\x9a\xd4\xf2\x0a\xac\ +\xf5\x9e\xda\x49\xc5\x98\xad\x97\x2a\xcd\xa9\x9f\xdc\x5a\xcc\x94\ +\x87\x9c\xf2\x6b\x62\x3a\x01\xeb\x65\xb4\x22\x86\xbc\x0e\xd1\x7f\ +\x26\x2e\xa1\x9f\x62\x93\x9e\x9b\x55\x7e\x5d\x90\xcc\xd9\xb8\xbe\ +\x2a\xaf\xfb\x00\x1b\x59\x10\xb3\x90\xc9\xe2\xf1\xea\x6c\xa5\x72\ +\xef\xa8\x5f\xe7\x22\x30\x1f\xfe\xd2\x83\x5f\x3b\xb3\xd7\x8e\xb0\ +\x59\xef\xab\xcf\x5f\x52\x89\x28\x5b\xc4\x01\xbf\x84\xbe\x63\x19\ +\x87\xfb\xbb\x31\x57\x9d\x57\xd7\xce\xe2\x60\xf7\x24\x5e\x15\x47\ +\xf1\x9a\xc5\x51\xdc\xbd\xff\x5c\xf0\x83\xe8\x3b\x54\x96\xc3\x9d\ +\xfd\xd8\x8b\x79\xcc\x4f\xf9\x55\x34\x45\x71\xe9\xbd\x7f\xdc\x0f\ +\x3d\xa9\xa7\x4f\x72\x33\x4a\x3a\x8a\xab\xa8\x6f\xa2\x52\x07\x6e\ +\x30\x59\x65\x3b\xca\x4f\xba\xa4\x01\x5b\x2f\xa6\x41\x5b\x99\xfd\ +\x0d\x43\x2f\x32\x42\x5a\x96\x75\xcf\x9b\x3c\x92\xf2\x55\x79\xda\ +\x1f\xb1\xad\x47\x72\xf8\xba\xe7\x63\xa3\xb4\xb5\x55\xea\xac\xc8\ +\x63\xdc\x3d\xc4\x89\x5c\x50\xeb\xfd\xb5\xce\xb5\x15\xdd\x79\xcb\ +\x3a\x33\x90\x2c\xf9\x2c\x3b\xe8\x18\xa4\x4d\xcb\xd2\xc4\x39\x67\ +\xde\x12\x10\xd9\x6b\x9a\x18\x64\x53\xad\x90\xfa\xd6\x55\xf6\x5b\ +\xc6\xf8\xa2\xbe\xed\x53\x7d\xdb\x90\x0d\x94\xbb\x10\xbc\x7d\x26\ +\x83\x3c\x8f\x77\xe5\xa2\x44\xf0\xc8\xd3\x6d\xfa\xa3\xc6\xf6\x47\ +\x19\x9d\x40\x76\xd8\x70\x4c\x22\x83\x96\xb8\x9f\x78\x28\x6f\x4a\ +\x94\x3e\x33\x7f\xf7\x0c\xa5\x55\x1f\xda\x5b\xe8\x78\xd8\x8b\x0b\ +\x17\x0e\x63\xa6\x73\x31\xd6\x7e\x70\x80\xfe\x21\x1b\x7e\x0b\xf1\ +\xf8\xd5\xe7\xe2\x97\x3f\xfa\x54\x3c\xf5\xd4\x5e\xbc\xe9\x0f\xff\ +\xe1\x78\xfb\xbf\xff\x45\x7e\x45\x2f\xaf\x80\xdc\x5d\x2c\x32\x43\ +\x40\xe6\x2e\x34\xb4\xc2\x88\x76\x7d\xcb\xae\xeb\xde\xea\xdf\x34\ +\x54\xfe\x13\x26\xbc\x3c\xa1\x23\xa6\x8e\x23\x8e\x21\xae\x91\xa7\ +\x2c\xa6\xed\x1e\xc6\x35\x1d\xa3\x5f\xf3\x2d\x7f\x26\xbe\xe7\x27\ +\xbe\x3e\xde\xf6\xce\x87\xe2\xca\x5d\x0f\xf8\xf5\x74\x33\x5d\xcb\ +\x58\xc0\xf0\xcd\x60\x5d\x84\x88\x49\x9f\xd7\x6c\x9f\x19\xea\x78\ +\x14\x05\x23\xa5\x3f\xc5\x0e\x99\x95\xcc\x22\x9d\x19\x2c\xf1\xf9\ +\x95\xf3\x52\x9a\xa1\x01\xe8\x00\x67\x9a\xcd\x79\xac\xa5\x69\x95\ +\x79\x16\x2a\xad\xe5\xda\x38\x85\x4f\x72\x08\x30\xec\xb4\xf6\x38\ +\xc8\x32\x45\x61\xcb\x5c\x76\xf0\x04\x5c\x91\xbc\xf5\x45\x5a\xa6\ +\x8d\xfd\xe1\xbf\x15\x5c\x90\x85\xce\xde\x42\xab\xf3\x63\x31\x4a\ +\x64\xa4\xb7\x0f\x58\xc9\x10\xe3\x98\xfc\xb9\x00\x5b\xdf\x2e\xa1\ +\x25\xd7\xbe\xc8\x98\x74\x8c\x8d\xca\x07\x4e\xec\x3c\x7d\xb3\x7f\ +\xb8\x01\xef\x74\xb6\x49\xb5\xcb\xc5\xaa\x9d\x38\x3c\x0c\x32\xd1\ +\xf9\xbf\x61\x73\x0f\x28\x78\xb2\xeb\xf0\x20\xf5\xcf\x7e\xf4\x24\ +\x1e\xff\xd0\x71\x7c\xe4\xf1\x6b\xf1\xcc\x87\x8f\xe2\xc3\x1f\x14\ +\xfd\xc4\x71\x1c\x3d\xbf\x64\x14\x11\x87\x17\x4e\x63\xbe\xd0\x5e\ +\xd5\x78\x88\x0f\xbe\xfc\xe4\xdb\xde\x5e\x2c\x0e\xf6\xd4\x8f\x16\ +\x31\xdb\xd3\xb8\x64\xbe\xf0\xeb\x21\xf9\x2f\xda\xb9\xfa\x16\xd7\ +\x9e\xde\x07\x1e\xc3\xef\xe4\x02\x55\xb7\x89\x4b\x98\x85\x33\x9f\ +\x42\x97\xd8\x64\xd6\xdb\x1a\x18\x5f\xdf\xad\x83\x94\x99\xc7\x5c\ +\x92\x20\x5e\xf3\x24\x99\x17\xb1\x54\x27\xed\x2f\x5e\xff\xb8\x3a\ +\x2a\xd9\x62\x19\xaf\x7b\xf3\x03\xf1\xd6\xb7\x3d\xea\x71\xcf\x33\ +\x57\x9f\x8d\x7f\xfa\x8f\xde\x27\x3f\xfc\x1f\xad\xca\x4d\x7b\x2b\ +\xdd\x7a\x59\x6f\x0c\xd0\x45\xed\xe4\x64\x19\x47\xcb\x95\xc6\x62\ +\xf2\xa1\x31\xe3\xc5\x8b\x17\xe3\xa1\x87\xf6\xe2\x55\xf7\x9e\xc5\ +\xdd\xf7\x5c\x8e\x7b\xef\xbf\x23\xee\xb9\xfb\x52\xdc\xf1\xaa\x03\ +\xa5\x39\x89\x63\xf2\x5b\xf1\xda\x49\x95\x67\x57\x63\x52\xaf\xd4\ +\x68\xcf\xba\x7a\x94\x52\x84\xeb\x56\xc7\x09\xfd\xd3\x62\x36\x59\ +\xe3\x61\x9c\xe4\xf1\x99\xf6\xaf\x2a\xe6\xeb\xb9\xd3\x62\x6f\x67\ +\x99\x46\xa4\x5a\x7a\xe8\x87\x79\xed\xf6\x57\xc9\x19\x50\x67\xcb\ +\xcb\x95\xb3\xf7\x0f\x8f\xac\xc7\x1b\x9a\x92\x2b\xaa\x62\x95\xde\ +\x1b\xa3\x7f\xf0\x38\x00\x15\xc5\x25\x01\x3b\xa1\x78\xd2\xd9\xcc\ +\xe9\x5a\xa8\xa8\xf9\xa6\x09\xa2\x33\xd6\x86\xd8\x82\x86\x04\x24\ +\x1d\xa7\x25\xae\xbc\x9c\xd4\x1b\x2b\x21\x44\x52\xc8\xe4\x29\xbb\ +\xfb\x0b\x6c\x8b\x61\xab\x0e\xd4\x3c\xc9\xf2\x47\x1b\x8d\x2b\x60\ +\xdf\x36\xc8\x08\x95\x3f\x1b\xd0\x7e\x39\x2f\x51\x5a\xf2\x82\x56\ +\x79\x7c\xfe\xc4\xa0\xf2\xa7\x58\x99\x2e\x6d\x32\xec\xaa\x7f\xaa\ +\x6f\x88\xe2\x7f\x6b\xb1\xfb\xc8\xaf\xdf\x88\xc3\xdd\xd7\xc5\xef\ +\x78\xfb\xbf\x19\xbf\xfb\x77\x7e\x11\x5e\x65\xb3\xf6\x42\xac\xf7\ +\xbb\x25\xed\xcb\xa5\x9a\x30\xe1\xb7\x1d\xa6\x9e\x3d\x61\xc2\x4b\ +\x07\x5d\x8f\x7c\x75\x9a\x30\x61\xc2\x2b\x10\xd3\xc1\x7f\x0b\xd0\ +\x28\x1f\xc7\x48\xa3\x4d\x3f\xd6\x99\xf4\x13\x32\x78\xc1\xa9\x27\ +\x13\x22\x6a\x52\xd1\x3b\x35\xab\xc1\x84\x4e\x54\xa9\x00\x7f\x72\ +\xcf\x8d\xe4\x9d\xbd\x9d\xf8\xd1\xaf\xff\xfa\xf8\x81\x2f\xff\x0b\ +\x71\xe7\x52\x93\xdf\xc7\x5e\x13\x0f\xdf\x73\x97\xff\x43\x01\x63\ +\x26\xbb\xab\xd3\xfc\xd5\xe8\x09\xaf\x74\x51\xec\xd7\xde\x91\x5e\ +\x81\x5f\xc5\xf6\xa2\x07\x79\x79\x61\xa0\x26\x6c\xc8\x3c\x89\xb2\ +\x2c\x79\x88\x9c\x04\x95\x41\x4a\x6c\xe3\xa7\x65\x94\xc0\x73\x2c\ +\x62\xfc\x32\x7b\xc7\x0e\x5a\x36\xbe\x29\x6f\xa7\x82\xd3\x67\xda\ +\x06\x24\xe5\x40\xc2\x84\xbd\xe9\xc1\xcc\x0c\x53\xb3\xd4\xf8\x03\ +\x59\x40\x83\x61\x4e\xa8\xb4\x55\x84\x4d\x9a\xd4\xc4\xcd\xdb\x94\ +\x36\x05\x01\x47\xd1\xf2\xa6\x4c\xf9\x82\xb6\x8c\x1b\x67\xb2\xab\ +\x1b\x30\x06\x31\x93\xbf\x12\x6c\x2f\x94\x8d\xe2\x64\x14\x58\x76\ +\x52\x7c\xca\x8d\x1f\x12\xa4\x7d\x2e\x86\x29\x3f\xe4\xfc\x2a\x5a\ +\x15\xca\xb4\x9a\x80\x32\xb9\xc5\x83\x93\x29\x76\x7e\x2d\xab\xe0\ +\xf2\x9f\x85\xef\x11\x89\xcb\x1b\x7a\xfa\xd2\x04\x59\x8b\xc8\xff\ +\x63\xb3\xb3\x38\x51\xbc\x3a\xe3\x8f\xed\xb9\x49\x93\xb2\x99\x8c\ +\xb9\x61\xe2\x3c\xb8\xa9\xa0\x32\xf0\x3c\xcd\x4a\xba\x23\xa5\x7d\ +\x7a\x35\x8b\xe7\xd4\x38\x57\x55\xbe\x67\x25\x7c\x76\x3d\x8f\x1b\ +\xbb\xfb\x71\x83\xd7\x1f\xce\x78\x92\x8d\x45\xdb\x45\x2c\x9d\x35\ +\x25\x3a\x8b\xa5\x3d\xfb\xf7\xe1\xf2\x47\x61\x88\xd5\xc6\x14\x48\ +\x7e\x76\x78\xa7\x24\x32\xda\x85\xbe\xac\x34\xfc\x72\x1c\x8a\x9b\ +\x2a\xa7\xea\x40\xb9\x78\xc3\x9b\x95\x76\x63\x4f\xfd\x61\x67\xc1\ +\x2f\xbe\xe7\x31\x9f\x29\x9e\x9f\xf9\xff\xd0\x2e\xb0\xd3\x14\x2e\ +\x9e\x1d\xc4\xe2\x60\x25\x77\xdc\xca\x9a\xc7\xc1\xc1\x49\x5c\xda\ +\xdb\x8d\x43\xd9\x5d\xb9\x74\x14\x77\xec\xef\xc7\xe5\xc5\x32\x96\ +\xcf\x1c\xc5\xf1\xd5\xab\xb1\x73\x55\x59\xeb\x98\x98\x1d\x9d\xc5\ +\x6c\x39\x57\x1b\x28\x95\xf2\x5a\xec\xb0\x58\xa7\x36\x51\x7e\x7c\ +\xe8\x5f\x94\xb6\x8f\x0d\xdf\xef\x31\x9f\xb1\xab\x06\xd4\x4e\x2c\ +\xa6\x61\x5b\x2a\x2f\x22\x52\x5d\x8a\xd8\x75\x71\xfd\x21\xc5\xf7\ +\x93\x64\xc9\x2b\x90\x97\x7d\x28\x26\x91\x53\xa7\x47\xe7\x63\x3b\ +\x38\x1b\xa6\x3d\x05\x31\x8b\x12\x9b\xb2\xb5\xb9\x13\x58\x3c\x2c\ +\xb4\xb5\x1d\xa4\x0a\x33\x2c\x16\x69\xc3\xbe\xcb\xc4\x84\xa2\x29\ +\x30\xfa\xdc\x94\x9a\x0d\x40\x9a\x75\x4c\x09\x5b\x71\x2e\xbb\x38\ +\x95\xcd\xe9\x80\xc4\x3e\x8f\x15\x54\xfb\xd6\xd0\xac\xaa\x8b\x36\ +\xb6\x49\x59\x9b\x36\x0f\x6c\xc7\x31\x20\x65\xb5\x9c\x98\x34\xe4\ +\xd8\x22\x8d\x6f\x34\xea\xcb\xb1\x51\x35\x72\x48\x6b\x6c\x28\x9c\ +\x24\xb6\x11\x29\x58\x43\x32\xc4\xb4\x03\x74\xd5\x31\x4d\x36\x5b\ +\x57\x4d\xba\xd4\x92\x4e\x94\x14\xd6\xd9\x37\x89\xf9\xd5\x00\x4f\ +\x64\x72\x83\xf4\x20\x0e\x2e\x5c\x8c\xc5\xfe\x9e\x9b\x8d\x73\xa3\ +\x8e\x1a\xa9\xe7\x7e\x62\xf4\x39\xf5\xc1\x27\x9e\x7d\x3e\x7e\xe6\ +\xf1\xab\x71\xd7\x67\x7e\x7e\xfc\xee\x7f\xef\xdf\x8d\x87\x3f\xeb\ +\x2d\x3a\x34\x75\xa0\xf1\x5a\xd5\xca\xdb\x89\x8b\x1c\x32\x17\xa8\ +\x83\x59\x36\xa5\x6f\xb3\x8f\x0b\xa3\xf4\x5b\xf4\xc7\x42\xdb\xba\ +\x10\x85\x31\x7f\x5e\x37\x61\xc2\x6f\x25\x86\xfe\x38\xea\xe0\x2d\ +\xe3\x9c\xa1\x13\xef\xf1\xd9\x8d\xd8\xdf\xb9\x10\xcf\x7c\xf8\xf1\ +\xf8\x2b\xff\xe0\xcf\xc4\x8f\xfd\xd2\xdf\x8b\xc7\xde\xf9\xda\xb8\ +\xeb\xce\xfb\x75\xed\xe1\xfa\xa4\x04\x5c\x26\x75\x4c\x9e\x2d\x6b\ +\x1c\x55\x7d\xdc\x3f\xb0\x11\xfa\xfc\xc1\xd6\xb4\x4e\x2a\x79\x4e\ +\x47\xa0\x20\x7e\x48\x03\xcd\xb9\x58\x8a\x14\xa5\x0f\x1f\xdb\xe5\ +\x07\x34\x95\xc5\x6d\x1b\x49\xeb\x64\xe9\xf3\x9d\xec\x87\x14\xe4\ +\xa9\xc8\x7c\x09\x6d\xef\xc2\xeb\xab\xe0\xf3\x64\xe7\x91\x8e\xdb\ +\x34\xa1\x73\x5a\x5e\x17\xb0\xcd\x34\xf8\xc5\x38\x73\x2d\x58\x46\ +\x24\xa9\x0c\xa9\x8b\x0d\x52\x9c\xf9\xe8\x83\x8f\x56\x64\x51\x46\ +\x5e\xec\x96\x1b\xef\x82\xc6\x08\x1e\xdf\xc8\x5f\xb7\x1f\x63\x18\ +\x74\xf6\x81\x88\x31\x93\xce\xc8\xbe\x1e\x48\xd6\x8b\x99\x1e\xc3\ +\x31\x26\x11\xcd\x18\x0a\xb9\x5d\xe3\x87\xa1\xb3\xb4\xd6\x61\x6b\ +\x87\xd6\xca\x46\xbe\x86\xe2\x14\x91\x2a\xc5\x64\x90\xe4\xe9\x3a\ +\x77\xa4\x86\x14\x71\xe1\x60\xe6\x4b\xe4\x73\xcf\xde\x88\x0f\x7d\ +\xe4\x46\x3c\xf9\xd4\xf3\x71\xe3\x99\x55\x3c\xf5\xa1\x6b\xf1\xa1\ +\x0f\xee\xc4\x53\xcf\x1d\xc5\xfa\xda\x5a\x63\x95\x79\x5c\x60\x71\ +\x6d\x4e\x86\x39\xf6\xe2\x29\x30\xfe\x7e\x75\x36\xdf\xf3\xab\xb4\ +\x77\x35\x96\xa2\x93\xcc\xfd\xbf\xb5\xf3\x58\x2c\x24\x67\xf1\x56\ +\xe3\x98\x7c\xaa\x91\x38\x17\xc1\x72\x3f\xe8\x4b\x10\x69\x5e\x1b\ +\xd5\x08\xc2\xca\xdc\xa6\x51\xda\xa4\x0e\x39\xf9\xf3\x54\x19\x0b\ +\x60\x7e\x7a\x3a\x57\x19\x9d\x0f\x24\xff\x29\xcb\x0f\xef\x56\xbb\ +\x27\xf1\xda\x47\xee\x8d\x07\x1e\xbc\x57\xe3\xa9\x9d\xf8\xc0\xaf\ +\x3c\x19\x1f\x78\xef\x93\x71\xb0\x7f\x10\xd7\x4f\x78\x52\xed\x24\ +\x6e\xdc\xd0\x78\x6f\xb5\x8a\x53\x75\xe8\x43\xb5\xc7\x1d\x77\xec\ +\xc6\x3d\xf7\x5e\x8c\x3b\x5e\x35\x8f\x7b\xee\xdb\x8f\x87\x5f\x73\ +\x25\xee\xbc\xf3\x62\xcc\xf7\xe7\x1a\x7b\x9e\xc5\xb1\x06\x87\xab\ +\x25\x63\x3c\xb5\x05\xe3\x4d\xb5\x07\xfb\x38\xcb\x57\x70\x21\x2b\ +\xa2\xb9\xad\x92\x8d\xe8\xac\x45\xdb\x32\xee\x12\xa7\xbc\xdb\x6c\ +\xf0\xe3\x46\x21\x76\x4a\x22\x8b\x4c\x61\xd3\x66\x35\x28\x23\x5d\ +\xdb\x01\x27\x2f\x1f\x19\xa5\xbe\x63\xec\xf3\x78\x93\x2c\x5d\x24\ +\x6d\xa4\xf3\x3c\xe6\xb7\x65\xb0\x95\x65\x7a\x1a\xab\x29\x83\xe3\ +\x14\x3a\xa2\x7f\xa6\x50\xb4\xe2\x14\x26\x5f\x3e\xe9\xf3\x70\x06\ +\x7a\xab\x55\xbe\x54\x1b\x69\x91\x56\x2c\xa8\xa5\x8a\xfc\xd3\x8f\ +\x5d\x9b\xda\x8e\x07\xc0\x28\x74\x4e\xd5\xab\x4c\x0f\x6d\x5f\xb1\ +\xe9\xca\x9c\x3d\x9c\xfb\xab\xfb\x67\xd2\xf6\x30\x2a\xa0\xe9\xf6\ +\xef\x63\xdb\x52\x7f\x18\x1f\xba\x8e\x9a\xb7\xf0\x9f\xc9\x0c\xb1\ +\x9e\xbb\x7a\x12\xc7\xcf\x5e\x8e\xcf\x78\xdd\x1f\x8e\xcf\x7b\xe7\ +\x17\xc5\x3d\xf7\xdc\x1f\xab\x93\x75\xec\x72\x9c\xc9\xc5\x66\x6f\ +\xa5\xcf\x4d\x4e\x13\x26\xfc\xf6\x00\xfd\x7b\xc2\x84\x09\x2f\x0d\ +\xa6\x05\xb5\x09\x13\x5e\xc1\x98\x0e\xfe\x17\x89\xf3\x0d\xd5\x23\ +\x91\x1c\x6d\x9b\xf5\x78\xbe\x46\xe0\x6d\xfe\x89\x1d\xb0\x90\x61\ +\x46\x99\x91\x36\xc3\xe9\x3c\x27\x1f\x2e\x0f\x60\x56\xc2\xac\x45\ +\x13\x5d\xfe\xaf\x61\xb6\xbf\x17\x3f\xf8\x57\xfe\x97\xf8\xe9\x3f\ +\xff\x17\x35\x19\x3f\x8e\x47\xdf\xf8\x68\x3c\x7c\xf7\x9d\xa2\x99\ +\x78\x33\xf9\xe0\x86\x01\xaf\xc8\xd0\xa4\xe3\xc6\xd2\x4f\xa8\xad\ +\x4f\x97\x5e\x8c\xf3\x44\x56\x7a\x5c\xa7\x7f\x68\x39\xaf\xbc\xf2\ +\x1e\xba\x18\xcd\x4a\x3c\x0d\xf1\x8c\xa8\x0b\xa2\x52\x35\xad\xd8\ +\x24\x09\xb0\xe5\xc7\x83\x94\x51\x32\xdf\xc0\x47\xc9\xd7\xb2\xa4\ +\x5d\x3b\xc5\x86\xe3\x2a\x47\x6d\x53\x06\xd2\x77\xdb\xa7\x76\x50\ +\x1a\xce\xbb\x64\x83\x26\x85\x02\x29\x8b\x66\x92\xaa\x0f\xed\x59\ +\x02\x85\xa4\x2d\x37\x59\xbc\x27\x6e\x6d\x27\x88\x84\x27\x38\x7f\ +\xda\xce\x37\x7b\xa4\xa3\x5d\x80\xf5\x8e\x6c\xd7\x69\xf2\x06\xcc\ +\xa0\x50\xd2\x2c\xc1\xd8\x2e\x6f\xea\x94\xde\xca\xd2\x09\xfc\x6a\ +\xd8\xb1\x6d\x53\x8f\x8e\x98\x45\x28\x8c\xfb\x7e\x14\x3e\x5c\x1c\ +\xf4\xfe\x08\x14\x17\x5b\x95\xd9\xf9\x54\x5a\x6e\x40\x61\x0b\xcf\ +\xa2\x99\x28\xff\x12\x9a\x54\xec\x2a\xdf\xc6\x67\xe5\x82\xef\x0e\ +\xff\x51\x80\xab\xd3\xb8\xae\x49\xee\x75\xd5\xfd\x64\x6f\x15\x67\ +\x07\x07\x71\x7c\x38\x8b\xf9\x1d\x87\x71\xbc\x17\x71\x32\x5b\xc4\ +\xd1\xe9\x2c\x96\xda\xf1\x6b\x4d\x78\x8f\x96\xea\xaa\xab\x5d\xa5\ +\x9a\x29\x48\xa6\xce\xe1\x49\xae\xf6\xcf\x6e\xf0\xeb\xec\xbc\x39\ +\xc4\x02\xc7\x7c\x8f\xd7\x27\x72\xe3\x48\x65\xa0\x80\xdc\x3c\x70\ +\xd9\x25\xdb\xcd\x1b\x4d\x17\x2f\xce\x62\x71\x10\xb1\xe7\x15\x34\ +\xba\x9b\xf2\x56\xbf\x3b\x9c\x9d\xc5\x62\x77\x1d\x07\xca\xe7\xca\ +\x85\x75\x2c\x62\x1d\x33\xd5\x65\x8f\x1b\x6a\xca\xf9\x6c\x7d\xe2\ +\xfb\x57\x4c\xd0\xf7\x55\xd9\xf5\x73\x27\xf1\xdc\x47\x6e\xc4\x73\ +\x4f\x1d\xc7\x8d\xab\x3a\x1e\xae\xad\x34\x09\x3f\x0b\xee\x73\xf9\ +\xc1\x3a\xe5\xef\x5f\x5f\x2b\x89\x17\xb7\xe0\xfd\x71\xc3\x29\x5f\ +\xf7\x02\xe9\x32\x76\x71\xe1\x69\x24\x51\xdc\x7e\xb4\xae\x6e\xf0\ +\xa4\x01\xb4\x64\x32\xcc\x74\x25\xb3\x03\x6d\x64\x98\xc7\x9c\x5d\ +\x64\xbb\x38\x75\xe5\x9d\xa4\x7d\x5a\x2f\x9a\xf4\xf6\xe7\x34\x25\ +\x27\x86\x85\xb1\x8f\x94\x3b\x01\xc7\xa7\xdb\xb5\x64\xf8\xb4\x45\ +\xf2\xb8\x34\x60\xd1\x75\xa0\x7c\xe4\x55\xba\xcc\xba\x78\x6d\x2b\ +\x4b\xeb\x32\x16\xc1\xd7\x3c\x76\xe4\x29\x47\xce\x20\x73\x69\x5d\ +\xfa\x16\x39\x64\x9e\x18\xdf\x1c\x1a\x92\x0d\x36\xea\xa5\x24\x2d\ +\xbe\x93\xd3\xff\x93\x4e\xc5\xb0\xd5\x7e\x2d\x53\x35\x83\x2c\x2a\ +\x41\xde\x84\x4d\xc6\xb9\xd1\x36\xb2\x75\xd9\xc6\x95\xb2\x09\x5e\ +\xa9\x49\x1e\x1f\xbe\x89\x66\x15\x0b\xe0\xd9\x4c\xbc\x22\xac\x7f\ +\xf9\x9f\x8b\xef\xb8\x41\xa3\x7e\xca\xeb\x1f\xf7\x0e\x62\xb1\xbf\ +\x1f\xfb\x7b\x73\x3f\xdd\xe8\xf3\x8c\x3e\x1c\x2b\xc7\x3a\xce\x7f\ +\xfd\xe8\x7a\xfc\xca\xaf\x7c\x24\xce\xee\x7d\x2c\x3e\xe5\x8f\xff\ +\xd1\xf8\xec\x7f\xe9\x77\xe2\x55\xfd\x97\xff\x2a\x24\x53\x1c\x13\ +\xb3\x29\x1a\x0c\xf2\x24\x3f\x26\xca\xf6\x96\x78\x21\x5d\x63\x9c\ +\x2f\x68\x7e\x0c\x74\x63\xbb\x5b\xd9\x4c\x98\xf0\x5b\x81\xad\xfe\ +\xa8\xa3\x5a\x7c\x76\x65\x6d\x25\x5f\xad\x8f\x62\x31\x3b\x8c\x5f\ +\xfb\x8d\x5f\x8b\xaf\xfd\xd6\x3f\x1d\x3f\xf3\xfe\xff\x23\x3e\xe5\ +\xd3\x5e\x17\x87\x77\xde\x19\xfb\xba\x0e\xed\xf0\x9f\x69\x3a\x66\ +\x39\x15\x9f\xf1\x96\x00\x7e\x9c\x84\x3f\x9f\x90\x38\x23\x88\x29\ +\xff\x44\xc3\xb9\x72\xd8\xec\xe6\x79\x7f\x93\xb1\x6d\x1c\x0f\x25\ +\x51\x9a\x14\x19\x26\xcb\xdc\xb4\xcf\x33\xe2\x38\xf9\xe0\xc7\x32\ +\x36\x2c\xb4\x40\x54\x9e\x52\xd9\x32\x13\x89\x87\x90\x77\x9b\x0c\ +\xde\xca\xda\x1e\x4d\x97\xc7\x2d\x54\x8e\x23\xe0\xaf\x23\xda\x71\ +\x53\xfa\x8e\x4c\x55\xec\xc5\x87\x4a\x63\xde\xaa\x62\x88\x5c\x28\ +\x88\xb2\x83\x13\x9d\xcd\xa4\x8d\xce\xa5\x5e\x50\x4b\x93\x42\x12\ +\x96\x99\xd3\x47\xe5\xf0\x48\xc6\x76\xa2\x18\xc3\x98\xb7\x17\xf3\ +\x28\xe1\xfd\xe4\x3b\x0e\x6c\x9c\x79\x22\xf0\x78\x4b\x28\x89\xf5\ +\x24\xcb\xa6\xae\x7d\x43\x12\xed\x4b\x8f\xd1\x24\xe0\xbf\xd2\xf6\ +\xf7\xce\x34\xae\x91\x52\xf6\x4f\x3f\xf3\x7c\x7c\xf4\xa3\xab\x78\ +\xea\xa9\xa3\x78\xfe\xc9\x93\xf8\xe8\x93\xab\x78\xfc\x23\x27\x71\ +\xed\xa9\x1c\x93\x9f\x9d\xac\x34\x46\x61\x31\x4d\x63\x1a\x0d\x3e\ +\xf8\xf9\x12\x6d\x4f\x59\x79\x82\x7f\x3e\xd3\xd8\x67\x31\xf7\x22\ +\xd4\x62\xb1\x08\xfe\x9f\x93\xa7\xd7\x78\xba\x3d\x9f\xf2\x9f\x79\ +\x11\xa9\xcb\x66\x19\xd7\x1b\x15\x92\x3e\x90\x55\x90\xc6\xe5\x64\ +\x43\x39\x65\xab\x71\x10\x7d\x76\xc5\x42\x30\x09\x57\xea\xbf\xf2\ +\x93\x6d\xa5\x80\x3f\xd2\xaa\x6f\xb1\xb0\xc6\x6b\x20\x77\x76\x57\ +\x71\xd7\x9d\x97\xe2\xe0\xa2\x4a\xac\x2c\x3e\xf8\x6b\x47\xf1\xcc\ +\x33\x57\xe3\xe2\x9d\x17\xe3\xee\xbb\xf7\xe3\xee\xbb\x66\x71\x78\ +\x79\x1e\x57\x2e\x6b\x9c\x76\xd7\x4e\x5c\x3a\xd8\x8b\x57\xdd\x79\ +\x57\x5c\xbc\x43\xd7\xae\xdd\xd3\x38\x39\x9d\xc7\x72\x39\xf3\x2b\ +\x21\xd9\xb7\x7e\x12\x8c\xb2\xd1\x8e\xae\x42\xed\x71\x6d\x3a\x36\ +\xa8\x0e\x31\xe5\xc1\x86\x86\xb7\x4c\xe5\x2d\x5d\xdb\x3b\xb6\xdc\ +\x39\x38\x0d\xe6\xd0\xde\x5f\x6e\x17\x22\xf6\xb9\x68\xa5\x67\xcc\ +\xd5\x72\x0b\x48\xd3\x79\x22\x82\x40\x66\x86\x4d\x45\x55\x86\x81\ +\x07\x10\x4a\x30\xf0\x82\xcc\xfa\x90\x1b\xe4\x94\x9b\xa7\xe8\x5a\ +\x90\x0b\x72\x23\x28\x41\xe6\xab\x52\xa2\xa3\x7c\xfa\xb8\xcc\x38\ +\x13\x9f\x9e\xb1\xc9\xc8\x3d\xdc\x2a\x36\x25\x6a\x9d\x7d\x65\xec\ +\x6c\xad\x6f\xbb\x54\x30\xc6\xf5\x4f\xdf\x60\xcb\x35\xb4\xfb\x81\ +\xc0\xd8\x75\x9c\x25\xba\x2e\x15\xaa\xda\x88\xab\x04\x02\x92\x0d\ +\xd7\x40\x22\xab\x6e\x14\x81\x9e\xe0\xad\x64\x94\x8f\x84\xf6\x6b\ +\xb1\x8f\x5c\xc9\xd9\x47\x6e\x4d\x17\x2a\x8f\x65\x1d\x07\x3a\x76\ +\x8e\x8e\xce\xe2\xf9\x27\x22\x1e\xbe\xeb\x5f\x88\xcf\x7c\xf3\x17\ +\xc5\xa7\xbf\xe3\xb3\xcb\x4c\xc7\x13\x06\xb6\x6c\x8f\x95\xc1\x84\ +\x09\xbf\x4d\x30\xf5\xe6\x09\x13\x5e\x3a\x4c\x0b\x6a\x13\x26\xbc\ +\x82\x31\x1d\xfc\x2f\x02\xb7\x6a\xa4\x5b\x8f\xf8\x6b\x32\xf3\x9b\ +\x30\xf4\x76\x3e\x95\x4b\xd3\x64\x3e\x9c\xce\x35\x09\xf0\x64\x4a\ +\x28\xb3\xb3\x25\x13\x0f\x4d\x7d\xf6\xe6\xf1\x03\x7f\xe9\x2f\xc7\ +\x3f\xfb\xca\xaf\x88\x07\x2e\xce\xe2\x35\x0f\x3f\x14\x0f\xdd\x73\ +\x67\xbd\x86\x08\xfb\x75\x2c\xd7\xab\x38\x3e\x3e\x8e\xe3\xa3\x93\ +\x58\xf2\x4b\xd2\x95\x26\xf1\xcc\xa0\x65\xe0\x4b\x86\xfc\xd5\x1c\ +\x49\xd9\xe6\x84\x83\xbc\x90\xe5\xe4\x25\xf9\xde\x52\x96\xa6\x1d\ +\xc1\x6b\x22\xee\x9b\xbd\xfc\x6a\x9b\xb2\xe6\xca\x4b\x4e\xee\xec\ +\xe8\x5c\x28\xb8\x9a\x08\xf2\x5b\xd8\x62\x8a\xad\x72\x95\x7c\x28\ +\x15\x3c\x0a\xf2\x2f\x12\x9b\x34\x83\xe8\xb2\xe6\xc4\xcb\x72\xcb\ +\x90\xca\x67\xab\x89\x44\x63\x85\xc0\x5b\x94\x36\x00\x32\x82\xe4\ +\x66\x03\x29\xdd\x76\xf0\xdc\x74\x40\x27\x29\x33\xc2\x4e\x52\xfa\ +\xa6\xc7\x93\x3f\xb7\x39\xb4\x75\x0a\xa5\x23\x66\xe2\x9a\x8b\x6a\ +\x98\x60\x9f\x36\xb9\x90\xa6\x18\xdb\x54\xda\x96\xf9\x67\xde\xf4\ +\x49\xbd\xa9\x75\xa6\xcb\xf4\x4c\x90\xcd\x64\x15\x9c\x2e\x83\x45\ +\xc8\x14\x2c\xb3\xd9\xa9\x6f\xb4\x60\xcb\x9f\xfd\xf3\x04\x4d\x7a\ +\x11\xd4\xc6\xfc\x8b\x18\x92\xf5\x19\xbf\xde\x3f\x8b\x93\xfd\x75\ +\xc4\x25\xed\x8d\xc3\xdd\xb8\x78\xef\x85\xb8\x70\x69\x1e\xbb\x07\ +\x0b\xdf\xe0\xe1\x3f\xa6\xf2\xa6\x16\xaf\x1c\xdd\x8d\x53\xde\xc1\ +\xe2\x9f\x61\xf3\xab\xeb\x59\x9c\xce\xe6\x31\xdb\xdb\x8f\x7d\xf5\ +\xdb\xfd\x83\x59\xec\x71\xc3\xe8\x60\xdf\xbf\xc6\xde\xdb\xe7\x46\ +\x51\xee\x31\x51\xae\xeb\x2e\xf6\x2a\x57\xf7\x27\xf4\x7e\x2d\x91\ +\xea\xbb\x3c\x39\x91\x8d\xca\xc2\x77\x79\x1c\x3b\x3c\x6d\xa6\xf2\ +\xad\x25\x8f\x25\x95\x54\x9d\x64\xc7\xff\x64\xf0\x1f\x82\x67\xd7\ +\xcf\xe2\xe8\x59\x6e\x70\x1d\xc5\xf2\xea\xb5\x58\xdf\x58\xfa\x29\ +\x35\xfe\x5f\xed\xec\x58\xee\xb9\xe1\x73\xca\x13\x6a\xe4\x9e\xe5\ +\x90\x97\xda\xc2\x03\x74\x92\xa9\x11\x2d\xa5\x01\x55\x6f\x9e\x46\ +\x43\x20\x32\x75\xc9\x56\x1a\xc5\x6e\xf7\x92\xbb\xdf\x56\x7a\x6d\ +\xbc\xd8\x66\xa3\xdc\xe0\x23\x29\xc1\xb6\x30\x15\xfb\x20\x48\x1a\ +\x5f\xb9\x21\x92\x4c\x64\xde\x68\x4a\x99\x76\xa4\x28\xed\xc7\xa1\ +\xed\x52\x6c\xc3\x4c\x9c\x6c\x65\xe8\xf3\x8d\x6c\x28\xd3\x8e\x1a\ +\x3d\xa5\xa0\x13\x0a\x16\x56\x19\x5d\xa9\x12\x9a\x6f\x9a\x16\x14\ +\xdc\x81\x84\x52\x0f\xdb\xb6\x1b\x3a\x23\x5f\xc5\x7c\xa1\x25\x1f\ +\x92\x52\x18\x05\x4c\x8d\xd6\xb1\x91\x0a\xc2\x12\xec\x8a\x73\xa7\ +\x6e\x5d\xa7\x93\x0c\xbf\xce\xdb\xb2\xec\xe3\x99\x22\x85\xce\xdb\ +\xe9\x54\x77\x68\x62\x78\x85\x76\x63\x4b\x98\x92\xb3\xc9\xd6\xa9\ +\x32\x2a\x41\xbe\x26\x52\xa4\x1a\x5e\x3d\x43\xb4\x64\xbb\x8b\x98\ +\xab\xdf\x5f\x3a\xb8\x14\xfb\xea\xf3\x6e\x5f\xec\x65\xb8\x54\x42\ +\x5e\x8f\xc5\x2f\xfe\x7f\xfe\x83\x1f\x8a\xdf\x38\xbb\x1c\x6f\xfb\ +\xd7\xfe\x48\x7c\xee\xbf\xff\x07\xe3\xe2\xc5\x0b\xbe\x81\xef\x83\ +\xa0\xf3\xad\xba\x66\xfe\x1b\x90\xff\xa0\x1e\x6c\x15\x3e\x16\xda\ +\xcf\xd8\xf6\x56\x32\x70\x3b\x39\x68\xdd\x84\x09\x9f\xd4\xc8\x83\ +\x83\x33\x00\x5f\xae\xee\x2c\x86\xaf\xd6\xc7\x31\x9f\x1d\xc4\xcf\ +\xbf\xe7\x67\xe2\x6b\xfe\xc1\x9f\x8e\xf7\x5e\xfd\x81\x78\xfb\xa7\ +\xbc\x21\x5e\x75\xe5\x55\x1e\x5b\x85\x5f\xbd\xc7\x79\x42\xd7\x13\ +\xde\x51\xc7\x71\x2e\x3e\x17\xd2\x7d\xb6\x90\x8d\xb7\x8a\xf2\x7c\ +\xc0\x79\xd2\x39\x29\xc6\xce\x84\x0d\xfa\x00\xea\xf3\x87\x80\x7c\ +\x84\x2d\x96\xa4\x8e\x92\xc0\x37\xe0\x7a\x68\x81\xc4\x3e\x57\x8e\ +\x40\x76\xa9\x2b\xb9\x17\xe0\x36\x2c\x29\x8b\x34\xca\xe5\xa6\x68\ +\xc6\x20\x4d\x45\x7e\x0b\x95\x1a\xb9\x7f\x59\x90\x67\x54\xa4\x3e\ +\x17\x59\xac\x12\x9b\xa1\x3d\xd0\x56\x7a\x0f\x64\x44\xdb\xb8\x42\ +\xc1\x64\xe5\x85\xdf\x7c\xcd\x23\x5f\xae\xe3\x18\x58\x81\xd5\x90\ +\x5e\x7b\x66\xf0\x8f\x6b\x16\x08\xfc\x03\x26\xc9\x6c\x2d\x1a\x97\ +\xfe\x99\x0d\x02\xc6\x74\x4a\x9c\x7a\x09\xa0\x6d\x99\x32\xda\x92\ +\x71\x11\xed\x9d\x63\xad\x84\x17\x17\x08\x16\x89\x93\xd3\x41\x2b\ +\x82\x1f\x56\x70\xbe\x5f\x68\xc8\x73\xe1\xa2\xc6\x23\xba\xe8\x2e\ +\x79\xaa\xff\x2a\xff\xb5\x76\xc3\xff\x45\x76\xed\xb9\x93\x78\xe6\ +\xc3\xc7\xf1\x91\x0f\xaf\xe2\xd9\x67\x4f\xe2\xda\x33\xc7\x71\x83\ +\x45\x36\x8d\x6b\x94\x22\xf6\xe7\x8b\x98\x2d\x76\x62\x1f\xdf\x2e\ +\x12\x4f\x3b\xb3\x68\x97\xbf\x58\xe3\x3a\xce\x53\xfc\xb0\x22\x18\ +\xe2\xf8\x1a\xce\xdf\xfa\x51\x62\x0f\x4a\x28\x0b\xf5\x90\x8f\x7c\ +\x02\x2b\xdb\xa0\x1a\x47\x7a\x64\x1a\xeb\xe1\x8f\x85\x62\xf6\x93\ +\x92\xb2\x40\xb8\x66\x5f\xea\xda\xb5\xf4\xab\x1c\x67\x71\x72\xba\ +\x8c\x5d\x95\xed\x48\x29\x2e\x1f\xae\xe3\x75\x8f\xde\x15\x8f\xbc\ +\x79\x11\x77\xdf\xb9\x13\x77\xdc\x79\x21\xee\xb9\xeb\x42\x1c\x5e\ +\xe2\x47\x23\x3b\xb2\x3d\x55\xfd\x22\xae\x1f\x33\x46\x53\xdb\x51\ +\x38\x77\x70\xf6\x10\x44\xd6\xc9\xc7\x84\x38\xf2\x74\x0b\xd6\xfe\ +\xf6\x38\xaf\xe4\x2e\x0f\x34\xfb\x51\xb1\xff\xd3\xd9\xf2\x2c\xab\ +\xbe\x99\x4c\x84\x3d\x4b\x8f\x2c\x35\xd4\x5d\xf2\x32\xc4\xce\x63\ +\x9b\xcc\x5c\x5f\xc6\x30\x6a\x2d\x68\xfc\xa5\x90\xaf\x81\xdc\xe5\ +\x69\x81\x50\xae\xbc\x21\xcd\x16\xca\x56\xb9\xfa\x98\x6f\x47\x94\ +\x8d\xbc\x1b\x99\x2c\x95\xe7\x75\x06\x2a\xcb\xb3\x3f\x76\x8d\x0c\ +\xe4\xc4\xd9\x29\x36\xbc\x41\x01\x50\xb1\x11\x6b\x5d\xf7\x9f\x54\ +\xa3\x4a\x33\x2b\x07\xf4\x71\xe3\x3a\x95\x3c\x45\xc9\x78\xcb\x26\ +\xcd\xf2\xf8\x11\x06\x79\xd9\x61\x90\x25\xc6\x80\x90\xf2\x32\x1f\ +\x41\x12\x7f\x73\xfe\x91\xae\x49\xa9\xd8\xc6\x95\x82\xc8\x3b\x38\ +\x03\xc7\x95\x8f\x57\x05\xcf\x57\x94\x82\xf3\x32\x4f\xa4\x3d\xfd\ +\xa1\x65\x5c\x58\x3e\x16\x9f\xf3\xb6\x3f\x14\x9f\xfd\xe9\x5f\xa0\ +\x31\xd6\xbe\x17\x8e\x79\x83\x46\xfa\xcf\x6d\x22\xcb\x35\x61\xc2\ +\xcb\x1d\x53\x4f\x9e\x30\xe1\xa5\xc3\xb4\xa0\x36\x61\xc2\x2b\x18\ +\xd3\xc1\xff\x02\x18\x37\x4e\x8f\x3c\x90\x8d\xc7\xd6\xb7\xc1\xf9\ +\x81\x4a\x27\x7b\xc9\xe0\x99\x94\x3c\xba\x1c\xe3\xc2\x64\xe1\xac\ +\x1d\x97\xd3\x13\xdd\x55\xcc\xf6\xe6\xf1\x7d\x7f\xfd\x6b\xe3\xc7\ +\xfe\xbb\xaf\x88\x87\xee\x38\x8b\x87\xde\xf4\x48\x3c\x70\xe5\x0e\ +\xff\xa2\x95\xe9\x38\x93\x08\x5e\xe7\x77\x74\xfd\xd8\xbf\x84\xe5\ +\x95\x2c\xfc\x21\x38\x72\x26\x21\x39\xa1\x63\xa2\xa9\x8d\x7c\x9b\ +\x67\xa3\xd9\x16\x8b\x08\x9e\x75\x8a\xb5\xd8\x33\x30\x81\x89\x68\ +\x1b\x2b\xf8\x55\x71\x9e\xdb\x2b\x8d\x27\xf5\xa4\xd1\x94\xc5\x7a\ +\xf1\xe3\x40\x64\x9a\x89\x50\xe5\x9b\x02\x54\x78\x4d\x16\xba\x88\ +\x34\x21\xc7\xe1\xf6\x85\xb1\x35\xe1\xab\xd8\x16\x45\xd7\x14\x5d\ +\xdf\x8c\xf1\x90\xb5\xa2\x6c\x6c\x91\xa6\x95\xed\x90\x27\x03\x65\ +\x09\x53\x78\xd3\xc8\x15\x52\x5d\xda\x9a\xd8\x7b\x72\x47\xdc\x37\ +\x28\x54\x18\xdf\xbc\x20\x16\x6f\x3f\xd8\x10\x7c\xf3\xc2\xac\x89\ +\x5c\xd4\x94\x85\xf5\x69\xd7\x37\x89\xe0\xf3\x26\x10\xac\x13\x0c\ +\xbc\x6f\xea\x88\x26\x3b\x11\x52\xa0\xc3\x4e\x2c\xee\xac\x43\x58\ +\xb6\xc4\x6c\x04\x7c\xf9\x09\x34\x67\x8d\xac\xe4\x6a\x4f\xff\x62\ +\x59\x3c\x37\x8f\x2c\xcb\xdd\xef\x1d\xc5\xcd\x20\x9a\x9c\x9b\x12\ +\xae\xbf\x74\xbc\xca\x71\x3d\xdf\x8d\xf5\x9e\xf4\x17\x76\x63\xff\ +\xee\xbd\xb8\x78\x65\x2f\x16\x97\x2e\xf8\x95\x3f\x4c\x70\x69\x73\ +\x6e\xd2\x9c\xd6\x0d\x1f\xfe\x1b\x84\x3f\xe7\x67\x72\x7b\xb6\xbb\ +\x70\xba\xc5\xe1\x5e\xec\x5f\xda\x8b\x0b\x97\x0f\x62\xbe\xbf\x17\ +\xbb\x7b\x0b\xe5\x33\xb7\xad\xbc\xa8\x2d\x59\x88\xa0\x4c\xb4\x2d\ +\x4f\xbd\xa9\x3e\xdc\xcf\x94\x68\xbd\x56\x7f\x3e\x63\x91\x58\x7d\ +\x7a\xb9\x8a\x25\xaf\x27\xba\x71\x1c\x67\xea\xef\x3c\x65\xc6\x2b\ +\x4d\xcf\xd4\xe7\xf7\x58\xcc\xa0\xcf\xeb\xb8\xc1\x15\xbf\x90\xbe\ +\xfe\xf4\xf5\x38\x7e\xfa\x38\x4e\x9f\x5f\xc5\xd9\x8d\x65\xac\x8f\ +\x74\x8c\x5c\x5f\xc6\xea\xc6\x3a\x56\x4a\xef\x8c\xaa\xad\xdd\x0e\ +\x2e\x41\xd5\x5f\xed\x44\xed\xf2\x66\x0a\xb5\x4c\xc0\x23\x61\xcd\ +\xc3\x0d\xc6\x17\x1a\x5b\x6d\xdd\xe7\xe1\xb0\x83\xd6\xc6\xf7\xb8\ +\xe0\x89\x06\x03\xbe\x29\x4b\x9a\x58\x5b\xef\x13\x73\x99\xbe\x94\ +\xc3\xb1\xc4\x57\xc1\xfb\xce\x74\xca\xe8\xc4\xbe\xc9\x64\xbe\xea\ +\xa3\x8d\x17\x78\xd2\xa0\xd2\xa8\x30\xc9\x2a\xe4\x3e\xa7\x8b\xc2\ +\x7a\x9b\x84\xeb\xde\xb4\x49\x05\x1f\xb3\x25\x23\xe2\x18\x40\x94\ +\x06\xc4\x79\xec\xb4\x3f\xd3\x88\x15\xfb\x7c\x63\x29\x56\x0d\xf1\ +\x6a\xff\xe6\x7d\x0e\x32\x9f\x76\x3e\xce\xb4\x2f\xb3\xb7\x66\x6a\ +\xcb\x60\xd8\x6f\x83\x3f\xc9\xc4\xba\x07\x49\x6e\x7b\x75\x1e\x77\ +\x29\x48\xdb\xc9\x40\xfe\x9d\x5b\x15\x30\xf3\xdd\xf8\xf1\xbd\x5c\ +\xda\xb0\xa4\x03\x9c\x04\x2f\x69\xe7\x2d\xbe\x44\xb4\x75\xf6\x10\ +\xc9\x94\xa7\xff\xfb\x43\xfc\xee\x62\x3f\x0e\x2f\x5c\x8a\x0b\x07\ +\xfb\xbe\x01\xea\x9d\x4b\xe9\x48\x18\xf3\x38\x56\x9f\xfd\xb9\x0f\ +\xfd\x7a\xfc\xd2\x13\xbb\x71\xff\xbf\xfa\x87\xe2\x0f\xfe\xd1\x7f\ +\x3b\x2e\xbd\xea\x92\x0e\x3c\xd2\x2a\x01\x75\xb4\x7b\xe7\x58\xf4\ +\x28\x06\xa2\x87\xb2\x0e\x84\x70\xce\x66\x4b\x77\x1e\xe8\x1b\x2f\ +\x64\x37\xc6\x38\xcd\xad\x80\x9f\x8f\x65\x33\x61\xc2\x27\x0a\x43\ +\xff\x13\xa1\xaf\x0f\x01\x6d\xb8\xf6\xad\x4e\x8f\x62\x6f\x76\x31\ +\x7e\xf1\x17\x7f\x3e\xbe\xfa\xef\xfd\xc9\xf8\x8d\xab\x3f\x15\x6f\ +\xfb\xf4\x37\xc4\xe5\x2b\x57\x3c\xb6\x9a\xf3\x3e\x60\x5f\x8b\x15\ +\xfc\x9f\x53\xf9\x6a\x60\xfb\xf1\xf9\xd4\xa4\xaf\x95\x3e\xf2\x11\ +\x28\xf8\xd4\xda\x8c\x2d\x88\x13\x16\x37\xbf\x11\xfb\x8c\x80\x25\ +\xf0\x39\x56\xca\x56\xfb\x14\x07\x70\x2c\xcc\xfa\xdc\xed\xa8\xcf\ +\x3f\x1b\xf8\xdc\xee\xc1\x1a\xb1\x25\xb2\x31\x21\x74\x9c\x18\xd2\ +\x49\x9c\xf9\x0a\xf8\x6b\x33\x0b\xa9\x1f\xf4\x56\xa9\xdc\x2e\xd6\ +\xd1\x16\x26\xa5\x57\xec\x35\x3c\x78\x12\x61\x4e\xfb\x0d\x69\x1c\ +\x95\x1c\x19\x28\xff\x95\xc0\x26\xf6\x91\xe3\x32\x04\xde\x07\xd6\ +\x14\xaf\xf3\x27\x3f\xde\xf1\x02\x98\x74\xeb\x2a\x3c\x63\x25\xac\ +\xbc\x90\x54\xf9\x42\xe6\x1b\x1a\x4a\xef\x7c\x60\xbb\x3c\xca\x13\ +\xc2\x7a\xe5\x38\x94\x4d\x84\xc6\x12\x2e\x83\x39\xf6\x52\x41\x69\ +\x7c\x8d\x15\x34\x5a\x71\xdd\x71\xc1\xe2\x1a\xe6\x7e\x0a\x6d\x11\ +\xb1\xaf\x40\xcc\xe9\xfe\xfa\x73\xab\x78\xf6\xaa\xc6\x23\xd7\x4e\ +\xe2\xea\xb3\x4b\xf1\x47\xf1\xfc\xb3\x27\x71\xe3\xfa\x3a\xae\x5e\ +\x3d\x89\x27\x9f\x39\x89\xa7\xae\x9e\xc5\xf2\x48\xe3\x9b\x93\x9d\ +\x58\x9f\xf0\x78\xbd\xd2\xfa\x31\x7a\x9e\xf6\xdf\xf1\xff\xb1\xf9\ +\xff\xd7\x76\x34\xa6\xa2\x7f\x6a\xdc\x4f\x5b\x50\x17\x16\xca\x28\ +\x91\xab\xb2\xcb\x0f\x85\x20\xe8\x73\x1a\x13\xa9\xfe\xd4\x6d\xb1\ +\xc8\xda\xac\x58\xf1\x13\x8e\x55\xae\xf5\x52\x1e\x34\xee\xe3\xcd\ +\x00\x17\x34\x2e\xe3\x87\x4e\xfb\x07\xf3\x78\xf4\x91\xc3\xb8\xef\ +\xee\x59\xbc\xe6\x35\xb3\x78\xf4\xf5\x07\xf1\xa6\xb7\xdd\x4f\x76\ +\x9a\x93\x28\xbd\xea\xcf\x93\x42\x57\x35\x86\x3a\x39\xd9\x8d\xe3\ +\x23\x8e\x27\x8d\xb1\xd8\x67\xca\x27\x17\x2e\x9d\x7d\x6d\x12\xec\ +\xd7\x3c\x34\xd0\xcb\x91\x4a\xe3\x05\xb5\xea\x3b\x7d\x20\xf8\xfa\ +\x2d\x3b\xfa\x9b\xed\xb5\xc9\xc5\x69\xd1\xae\x54\x9a\xe6\x0f\x01\ +\xd9\x17\xd4\xab\xf6\x5d\xf9\x47\x63\x1a\x7f\x16\x91\x58\xe3\x39\ +\xe6\x2e\xc4\x94\xc1\x69\xd1\x63\x24\x42\xf9\xda\x87\x90\x69\x86\ +\x4d\xd9\xa0\x51\x84\x2b\xe2\x4c\x0c\x25\xba\x84\x85\xe6\x10\x8f\ +\xc7\x13\xe9\x6d\x0c\x79\x96\x20\xc7\x46\x09\x28\xf6\x26\xf2\xb4\ +\xbd\x75\x4a\x58\x2f\x5e\xf3\x1d\x54\xe9\x47\x47\x46\xe6\x6d\xae\ +\x60\xa6\x25\x24\x4e\x8f\x9b\xb4\x49\xe0\xd2\x24\xbb\x48\xe8\x72\ +\x64\xca\xa2\xda\x4d\xa5\xd9\x08\xe8\x8d\x25\xab\x74\xa9\xd2\x3e\ +\x1d\x1c\x0f\x89\xdd\x7b\x9d\xa1\x6d\x55\x67\xdb\x20\xcb\x28\x5f\ +\x89\xaf\x82\x48\xee\x48\xfc\xae\xce\x6f\x0b\x1d\x5c\xcf\x3f\xbd\ +\x8e\xe7\x1f\x3f\x88\xb7\xbe\xee\x0b\xe2\xf7\x7c\xf6\x1f\x8a\x07\ +\xee\x7b\x38\x4e\x8e\x97\x31\xdf\xab\xb7\x63\x64\xee\x85\x31\x3d\ +\x61\xc2\xcb\x13\x53\x2f\x9e\x30\xe1\xa5\xc3\xb4\xa0\x36\x61\xc2\ +\x2b\x18\xd3\xc1\xff\x22\x40\x23\xdd\x6a\xe4\x71\x9b\xc6\x6b\xd3\ +\x71\xb2\xdb\xb9\xf8\xb8\x81\x93\x5b\x4c\x24\x40\x4a\x99\xaa\x89\ +\x92\xba\xe7\x64\x7e\x15\x0b\x7f\xca\xac\x89\xc1\x0f\x7c\xed\xd7\ +\xc4\xf7\xfe\xb9\x3f\x17\xf7\x69\xf2\xf6\xc6\x37\x3e\x18\xaf\xbd\ +\xe7\xee\xd8\xf1\xab\x60\x34\x05\x93\xcd\xf2\x74\xa9\xc9\xed\x89\ +\x17\xd4\x96\xcb\x65\xac\x57\xcb\x4c\xcf\x04\x44\x33\x60\x26\x7d\ +\xfe\xa5\x27\x79\x9c\x69\x9a\xe6\x99\x66\x4e\x48\x33\xd3\x2c\x83\ +\xf3\xc6\x0c\x28\xce\x1b\xf3\x9a\x92\x90\xcf\x5c\x31\x0b\x24\xf2\ +\x55\x73\xd8\x9c\x64\x61\xdf\x01\x54\x8c\xbf\xfa\x8e\x74\x9e\x92\ +\x6e\xe4\xda\xb6\xbe\x4d\x2c\x13\x33\x14\x05\x9d\x33\xc9\xfc\xd0\ +\x6c\x6e\xf2\xa7\xdc\x18\x91\x06\x0e\x72\xde\xbc\xd1\x39\xf3\x17\ +\x00\xfa\xf3\x36\x3d\xb9\xb3\x13\xcd\xe6\x34\xcb\xf7\xa4\x90\x2f\ +\x93\xcd\xba\x14\xd3\x76\xdc\x4c\xf0\xaf\x4c\x4b\xee\xcb\xb4\x63\ +\x22\x36\xf2\xe1\xfd\x42\xcc\xe4\xb2\x92\x8b\xf0\xcd\x0f\x27\x13\ +\xad\x7d\xca\x44\x30\xf7\x5f\xc9\xc8\xd0\x73\xca\x94\x89\x72\x9a\ +\x0c\xe2\xe4\x12\x5d\x4e\xa2\xc9\x83\x1b\x1f\xbd\x70\x86\x13\x6c\ +\xb2\x21\x90\x39\x3d\x0c\xfe\x28\xbc\x54\xf4\x11\xbf\xf2\x50\xed\ +\x96\x0b\x6a\x60\x27\xd6\xdc\x9b\x9b\xcf\xe2\x6c\xb1\x13\xf3\x0b\ +\x8b\x58\x5c\x59\xc4\xfe\xdd\x07\x31\x3f\x5c\xa8\x5f\xb0\x70\xc6\ +\x6b\x1a\x9d\x28\xce\xe8\x23\xbb\x0b\x25\x60\xa1\x8d\xff\x5b\x53\ +\xe2\x5d\xe9\x2f\x68\x02\x7c\x61\x2f\x16\x17\x17\x71\x70\xf9\x42\ +\xec\x5d\x64\x51\x6d\x5f\xba\xb9\x6d\x5d\x00\xb7\x5b\xf6\x4a\x2f\ +\xfc\x71\x13\x93\xfa\x51\xc6\xd3\x5c\x1c\xe6\x7f\x3f\xce\x4e\xd6\ +\xb1\x3a\x59\xc6\x89\xfa\xfc\xe9\xf2\x24\x76\xd6\xaa\xf7\x7a\x15\ +\x3b\xab\x88\x99\x17\xe1\xb8\xeb\xc3\xcd\xcf\x33\xff\x67\xc8\xf1\ +\xf3\xc7\xb1\xbe\xca\x22\xda\x49\xac\x9f\x97\xfd\x8d\x65\x1c\x5f\ +\xd7\x71\xa2\x78\x79\xbc\xf2\x02\x1d\xfe\x69\x77\xca\xe1\x1b\x14\ +\xc4\x6c\xb3\x69\xdc\xbe\x59\xb2\xd4\x70\x38\xd1\x4e\x5e\xfc\xa1\ +\xdd\x48\x63\x01\xdf\xbc\x59\x63\xb9\xd3\x91\x42\x04\x69\x6d\x82\ +\x91\x0d\x53\x3a\xc4\x65\x45\xa6\x6a\x4f\xfc\x18\xa3\x34\x24\x73\ +\xcc\xaa\x8f\x69\xb3\xce\x2b\x69\xa5\x42\x6f\x26\xcb\x0d\x88\xd2\ +\xae\x9a\xd8\x4c\xda\xa3\x25\x2f\xdf\x7c\xe0\x4b\xa2\x54\xc3\x6c\ +\xe5\x9f\x26\x28\xb1\x4e\x23\xfb\x90\x99\x3d\x94\x5f\x6c\x8b\x2a\ +\x24\x5f\x29\x5c\x2e\x5c\xb7\x91\x9b\xbc\x61\x5f\xc4\x29\xc4\xaf\ +\xbf\x24\x72\x9c\x3a\x22\xfb\xc0\xc2\xfe\x50\xfa\x5b\x7a\xf2\x54\ +\x6f\xe7\xce\x9c\x90\xc7\xad\x64\x18\x20\x52\xcc\x61\x57\x45\x90\ +\xca\x29\x53\x75\xae\xfc\xa9\xd9\x06\xe6\x43\xdd\x2b\x1e\xd2\xfa\ +\x78\xa6\x9f\xf0\xd4\xa6\xa8\xd9\x7e\x1c\x1e\x1c\xc6\x81\xfa\xfc\ +\x1e\x77\x59\x05\xfa\x08\xfd\x7b\x77\xbe\x1f\xcf\x1d\x47\x7c\xe0\ +\xb9\x67\xe2\xdd\x1f\x7c\x36\x5e\xf5\x3b\xbf\x20\x7e\xef\xff\xf3\ +\x3f\x88\x87\x1e\xbd\x3f\xd6\xea\x9b\x2c\xaa\x79\x51\x90\xfd\x46\ +\x45\x81\x33\x4a\xb2\xa2\x2d\xd9\x80\x96\x9d\x8f\x01\x34\x18\xa7\ +\x69\xd9\x79\x9c\xf7\x3b\xc6\xed\xd2\x80\xce\x73\xc2\x84\xdf\x0a\ +\xb8\xff\x69\xd3\xfd\x50\xe7\x00\x8e\xd9\x13\x16\xd3\x76\x2f\xc4\ +\x7b\x7e\xfe\xdd\xf1\x17\xbf\xf1\x4b\xe2\xa9\xf5\x4f\xc7\xeb\xde\ +\xc1\x7f\xa6\xdd\xad\x6b\x99\x4c\x75\x59\xe2\x29\x67\x92\xb0\xb0\ +\xe1\x1f\xc5\xc8\x8f\x8f\x79\x7d\x38\xb7\x70\x38\xfa\xdc\xc8\x31\ +\xe9\x58\xa1\x85\xb6\xe0\x3c\x97\x79\xf7\x98\x05\x7f\xc0\xe7\x0b\ +\x81\xd3\x36\x70\x24\x3b\x5f\x81\xa4\x13\xc9\x29\x74\x90\x8f\x89\ +\xfe\xff\xa7\x5d\xae\x8d\xe4\x8b\xca\xc8\x92\x39\x61\x52\x43\x5a\ +\x8a\x01\x7c\x3e\x4c\x72\x1b\xd8\x10\x44\xfa\xfc\x35\x18\x21\x29\ +\x58\x29\x45\x89\x3c\xae\x18\xeb\x05\x27\xd3\xc6\x2a\x74\x72\x94\ +\x76\xc9\x9b\x2c\x96\xd1\xc9\xe8\x2a\x27\x79\x97\x39\x25\x3e\xd5\ +\x35\xad\xa8\x28\x2b\x38\xbb\x8f\xc7\x3d\xa6\x19\xf7\xc0\xcb\x27\ +\x6f\x13\xe0\x49\x76\xa7\x1b\x05\x96\x9f\x3c\xde\x4a\x4f\x29\x87\ +\x12\xe1\x45\x20\x76\x00\x7e\xc8\x8a\xf2\x9b\x60\xbf\x53\x18\x40\ +\x1b\x67\x3d\x4c\x75\x19\x15\x7b\xbf\x98\xcc\xbe\x82\x8c\x05\xb6\ +\x1d\x85\xb9\x76\x34\x6f\x74\x38\xd0\x18\xea\xc2\x5e\xbe\xf2\x1a\ +\x9f\xfc\x30\xe8\xf8\x68\xe9\xa7\xd9\x9e\x7d\xf6\x38\x9e\xe6\x87\ +\x3e\x1a\xdf\x1c\x6b\xac\x72\x43\xe3\xf9\x1b\xd7\x79\x3a\x9f\x27\ +\xf3\xd5\x67\x8f\xcf\xe2\xfa\x71\x2e\x5e\x9d\xad\xb8\xae\xec\xc4\ +\x6a\xa9\xb2\xad\x35\xde\x57\xc7\x5b\x69\xfc\xb2\x3a\x51\xde\xfc\ +\xb8\x88\x85\x37\x5a\x57\x31\xab\x7b\xb4\xd8\x62\x5f\xf9\xef\xcd\ +\x63\x6f\x2f\x14\x47\x1c\x6a\x2c\xc6\xff\x9f\xed\x5f\x90\xfc\xe2\ +\x4e\x5c\xd6\x75\xe9\x8e\x2b\xbb\xb1\xa7\xb1\xfe\xe5\x0b\x87\xf1\ +\xea\x87\x2e\xc7\x15\xd9\xf0\x23\xa8\xe5\xe9\x2a\x56\xc7\xfb\x1a\ +\x96\x5c\x50\x3d\xe5\x6d\x67\xed\xff\x5b\xbb\xae\xb2\x1f\xe9\x1a\ +\x75\xa4\x63\xe4\x84\xb7\x08\xf0\x4a\x54\xb7\x25\x4d\x51\x6d\x0a\ +\xd3\x2d\x47\x7b\xd5\xb8\x28\xc5\xec\x2d\x2b\xb3\xcd\x0c\x31\xd0\ +\x66\xb3\xdd\x38\x26\x32\xb4\x9e\xff\x30\xc4\xa3\x48\xd5\xdd\xf3\ +\x14\x39\xf4\xf1\xa7\x74\x94\x31\x6d\xb1\x26\x8f\xf4\xe9\xeb\xb5\ +\xbf\x7c\xc8\x20\x7d\xf8\xf8\x25\x76\x62\x7d\x9d\x58\x3a\x4c\xec\ +\x53\x74\x1a\xd8\xce\xfb\xd8\x69\x5a\x98\xd2\x31\xb2\x1f\x88\x38\ +\x1d\x9c\x2b\x76\xa5\x92\x2d\x19\xfd\xc0\x63\xb2\x6e\xa7\xc1\x4d\ +\x1e\x1d\x9d\xa2\xcb\x9b\xdb\x6a\x1e\x6d\xda\xbe\x2d\x2d\xe4\x8b\ +\xa2\x45\x02\xad\x90\x79\xb4\x30\xf5\xca\x3e\x7d\x0c\xb6\xca\x03\ +\x1a\x99\xd0\xf4\x20\x22\x01\x50\x5d\xfa\x18\x1c\x64\xb6\xaa\xf6\ +\x06\x8a\x06\xb7\x38\xaa\x3a\xf2\x14\xeb\xa0\x19\x32\xcb\x1a\xf8\ +\x78\x16\x91\x26\x96\x0c\x72\x78\x8b\xe0\x75\x5c\x31\x67\xe1\x35\ +\xf3\xcf\x3f\x75\x1a\xf7\xce\x3e\x33\x3e\xef\x33\xff\xed\xf8\x94\ +\xb7\x7f\x9a\xe7\x0e\x14\x69\xa6\x63\x92\x19\xe3\x06\x38\x9d\x30\ +\xe1\xe5\x8b\xa9\x07\x4f\x98\xf0\xd2\x61\x5a\x50\x9b\x30\xe1\x15\ +\x8c\xe9\xe0\x7f\x01\xd0\x38\x39\x36\xbf\xfd\xc8\xe3\x16\x0d\xd8\ +\x49\xc0\x4b\x3f\x60\x19\x15\xc6\x19\x6d\x72\x62\xb8\xef\x1b\x28\ +\x92\x0d\xf9\x4a\xcd\xeb\xec\x66\xfb\x07\xf1\xfd\x5f\xff\xb5\xf1\ +\x13\xff\xfd\x97\xc7\x62\xe7\x5a\xbc\xe1\x4d\x8f\xc6\xa3\xf7\xbd\ +\x2a\xf6\xfd\xeb\xbb\x7c\x72\x61\xa9\xc9\xf4\x8d\xa3\xe3\xb8\xae\ +\xc9\xf7\x89\xe2\xb5\xf8\x9c\x74\xc8\x09\x13\x48\x3e\x72\x8c\x6f\ +\x4f\x48\x71\xaf\x4d\x4e\x31\x94\xaf\x64\x7d\x6f\xbe\xe1\x89\x18\ +\x42\x4d\xfe\xbd\xc8\xa2\x10\xf3\xf4\x93\x8e\x6a\xc2\xc4\xe4\x50\ +\x91\xe7\x52\x04\xa2\x8a\x6b\xb6\xe9\x7c\x64\x55\xb6\xa9\x24\x2d\ +\x69\xe0\xb2\x44\x89\x21\x6d\xdb\x29\xf2\x74\x28\xef\x52\x65\x82\ +\x8d\x9b\xc1\x87\x21\xb9\xcb\xf1\x62\xd1\xb6\x14\x8e\x50\x3c\xd1\ +\xb0\x7b\x0c\xd5\xd5\x8e\x37\x42\x53\xdc\x94\x71\x5a\x6d\xf8\x56\ +\x4c\x35\xa1\x37\x0b\x64\xd8\xb6\x9e\xa0\xaf\x78\x62\xee\xd1\xb5\ +\x9f\x4e\xe3\x09\x2a\x37\x74\x9c\x30\xfb\x85\x49\x36\xd2\xf5\xcd\ +\x0a\x83\x05\x27\xa7\x25\x51\x9a\xa0\xea\x34\xfd\x3f\x6a\x30\xe6\ +\x5d\xc0\xac\xa8\x24\x43\x0c\xe5\xb6\x56\x40\xcb\x0d\x45\x04\xfc\ +\x32\x94\x5f\x2d\xf3\x63\xf7\x33\x16\x55\x17\xb3\x58\x1c\xee\xc7\ +\xfe\x9d\x07\x5e\x54\xdb\xd9\x9f\xc7\x7c\x6f\x1e\xbb\xf3\x5d\xbf\ +\x9a\xc8\xfd\x44\x76\xbb\xbb\x73\x2f\xac\x11\xf3\xca\xc7\x1d\x5e\ +\xe1\x78\x30\x8f\x3d\xa5\x65\x21\xed\xe0\x8e\x0b\xb1\x7f\xf9\x42\ +\xcc\x16\x7b\xca\x93\x1c\x09\xfc\xda\x9c\x7e\x95\x37\x11\x5c\x76\ +\xd5\x6f\xad\x0a\xfa\xd5\x8d\x8a\x79\x4a\x6d\xcd\x82\xf1\x72\xed\ +\x27\x30\xb9\xd1\xb9\xf2\xbf\xdd\xaf\x2b\xa8\x2e\x2b\x16\x35\x69\ +\x0f\xda\x50\x11\x4f\xb2\x1d\xad\xe2\xf4\xfa\x49\x2c\x59\x50\x7b\ +\xee\x38\x4e\xaf\x2d\xe3\x54\xe9\x4e\x79\x42\x4d\x3a\x16\x2d\xf0\ +\xe7\xc6\x64\x9f\x28\x7f\xf6\xa3\x41\xdb\x29\xea\x52\xc2\xe4\x62\ +\x59\xf1\xa2\xfd\xcb\xe2\x6a\x3c\x9a\x00\xc2\xc7\x5a\xb5\x23\xb2\ +\x3e\x5e\xf2\xe6\x4f\xca\x6d\x59\xf6\x7c\xad\x2f\xa1\xcf\x09\x88\ +\x2b\x98\x1e\xf9\x63\x83\xcc\xb4\x8d\x88\x60\xe0\x6b\x53\x87\x4d\ +\xeb\x7c\xf3\x75\xb0\xc9\x38\x7f\x55\x5d\x32\xc5\xb4\xbd\x75\x16\ +\x11\xa7\xbe\xd9\xa4\x37\x69\xb2\x5e\x26\x1d\x37\x79\x6b\x0a\x24\ +\xd7\xc5\xd8\x02\xcd\xd8\x24\x84\x79\xe5\x60\x46\xb4\xf7\x0d\x32\ +\xf1\xd9\xe5\x4d\xa3\x4f\x93\x91\xd3\x4a\xe3\xfd\xb7\x21\x13\x1c\ +\x67\x6d\xdb\x32\x08\x7d\x59\x7b\xa3\x7e\x59\xaf\xac\x69\x6a\x53\ +\xdf\x39\x20\x87\x76\xbb\x12\xa3\xee\x36\x45\x83\xd0\x1b\xed\xef\ +\xf5\x4e\xac\xd9\x19\xb3\x99\xff\x57\xed\xf2\xe1\xa5\xd8\x5b\xcc\ +\x63\x31\x5f\xe4\x31\xa9\x1d\xc9\x0d\xd1\xeb\xab\x9d\xf8\xe0\x53\ +\xcf\xc5\xbb\x3f\xfc\x44\xcc\xdf\xfe\x2f\xc4\xef\xff\x8f\xfe\x83\ +\x78\xec\xd3\x1f\xf3\x93\x98\xf3\x0b\x7b\xca\x83\x32\xa5\xfd\x00\ +\xc8\x12\x59\x95\xd2\x44\xe9\x8c\xf3\x34\x80\x1f\xd3\xe7\xd1\x3a\ +\x70\x2b\x7d\x63\x6c\x37\x61\xc2\x27\x15\x38\x3f\x70\x8c\x66\x07\ +\xe6\x10\xe5\x3f\xd3\xe6\xb3\x0b\xf1\xee\x9f\xff\xa9\xf8\x2b\xff\ +\xe0\x4b\xe2\xa9\xe7\x7f\x36\xde\xfc\x29\xaf\x8b\x8b\x77\x5c\x8a\ +\x85\xaf\x5b\x1c\xff\x79\x1d\x5a\xeb\xfa\x91\x3f\xb4\x50\x50\xe2\ +\xfc\x88\xcc\x13\xbd\x69\xe4\x58\x17\xe3\xc8\xc7\xa3\xb9\x44\x9f\ +\x66\xad\xd3\xb6\x4e\x15\x25\x4b\x69\xf2\xca\x55\x89\x5d\x62\x89\ +\x7d\x0a\x6f\xdb\xb2\xcb\xeb\x09\xfa\x54\xd8\x77\xf1\x79\xca\xcf\ +\xfa\x5a\x8d\x13\x24\x19\x95\xa6\x74\x37\x81\x72\x49\xc1\x89\xd2\ +\x7a\x36\xb6\x4e\x56\x54\x6f\xf3\x5c\x64\xd6\x16\x1b\x50\x7e\x5b\ +\xe4\xf9\x56\xa1\x4d\x3d\x16\x41\x44\x73\x4a\x90\x56\xc5\x83\xf6\ +\x27\x85\xcb\xe9\xb4\x6c\xca\x46\x65\xf3\x4f\x86\x74\x21\xf3\x79\ +\xd3\x0a\x64\x8a\xd6\xeb\x3a\x97\x72\x0e\x47\xc6\x82\x5a\xf2\x44\ +\xeb\xa2\x59\xc4\xcb\xf1\x91\x97\x3b\xac\xf4\x87\x42\x96\x2d\x1b\ +\x86\x02\x29\xa0\x2c\x99\x47\x15\x2f\x79\x1b\xba\xf4\x6e\x73\xb3\ +\xa2\x73\x61\xc7\x45\x75\x5b\xb2\x18\xe4\xff\x3a\x6b\x1b\x05\xc6\ +\x57\x73\xfe\xf7\x98\xa7\xcc\xf8\x5f\x59\xd9\xf1\x34\x24\x0f\x23\ +\x2f\xf0\xc7\x8f\x90\x74\xc5\x58\x6b\x2c\x43\xff\x3b\x5d\xcf\xe3\ +\x54\x63\x9e\x25\xe3\x94\x93\x9d\x38\xe6\xd5\x8a\xd2\x65\x09\xb4\ +\x55\x61\x79\x4b\xc0\x89\x6c\x90\x3b\x6f\xc6\x6d\xd4\x49\x72\x7e\ +\x10\xb7\x58\x44\x5c\xd0\x18\x0c\xf9\x42\xe3\xfa\x85\xc6\x6d\x17\ +\x0e\xf7\xe2\x70\xff\x2c\xf6\x0f\xf8\x1f\x38\xd9\xf0\xe3\xa6\x5d\ +\xae\x54\xd4\xff\x2c\x56\x4b\x7c\x2a\xd6\xf5\xeb\xec\x94\x72\xaa\ +\xe0\x3a\x3e\xd8\x07\xfc\xb8\x89\x05\xb5\x63\xe5\x77\xed\xf8\x24\ +\x8e\x35\x16\x3b\xd2\xf8\x8b\x37\x08\xac\x58\xd0\xeb\x9d\x4e\xf1\ +\xb4\xe9\x36\x9c\xb1\xbf\x94\x0d\x0c\xf5\x4e\xa9\x80\x6d\x25\x31\ +\x68\xc7\x6c\x35\x7d\x45\x79\x92\xa2\x76\x94\x01\xed\x48\x0f\x80\ +\xc9\x36\x26\x1d\x74\x77\xa4\xe6\x45\x28\x1d\x5e\xdc\xaf\x81\xf3\ +\x34\x61\x7d\x8a\xf1\xed\xef\x48\xde\x76\x80\xfd\xba\xe1\x36\xe9\ +\x0a\x66\xa8\x07\x39\xe1\x21\x39\xf7\x85\x2d\x09\xb2\x51\xc2\x22\ +\xdd\x06\xa6\x4b\x90\xa6\x85\x8d\x7d\x52\xa9\x1c\x4c\x44\xd0\xd4\ +\x4d\x8f\x91\x5d\xb4\x84\xd8\x25\x25\x6c\x7c\x62\xd4\xbb\xaa\x7d\ +\x71\xac\x65\x31\xd9\x70\x74\x24\xd8\xa7\xa6\xb5\x71\xeb\xc8\x77\ +\xf2\x69\x97\xc7\x4c\xb6\x82\x35\x55\x57\xc4\x2e\x86\xd8\x3c\x06\ +\xd4\x7f\x4a\xd7\xfb\xdf\xfd\xc5\x31\xbd\xc5\x46\x29\x53\x02\xb7\ +\x19\x0e\x44\xe7\x93\xa7\x52\x4b\xe4\x1f\x23\xd1\x27\x39\xbe\x14\ +\x7f\xe4\x03\x27\x71\xb8\x7a\x38\x7e\xd7\x67\xfd\x91\xf8\xdc\xcf\ +\xfa\x03\xae\x07\x7d\x95\xbe\x93\x4b\xf7\x8d\x0d\x35\x61\xc2\xcb\ +\x0d\x53\xef\x9d\x30\xe1\xa5\xc3\xb4\xa0\x36\x61\xc2\x2b\x18\xd3\ +\xc1\xff\x02\xe8\xc6\x61\xd4\x51\x03\xef\x01\xcd\x9f\x6b\xc0\x4f\ +\xd8\x00\x65\xc8\x6b\x94\x21\x93\x83\xe1\xf4\x2d\x7a\x34\xe1\xb1\ +\x4e\x13\xd5\x33\x4d\x4a\x77\xf6\x16\xf1\x23\x7f\xe7\x9b\xe3\xfb\ +\xfe\xbb\xff\x26\xee\xd9\x59\xc6\x43\x8f\x3c\x18\xaf\x7f\xf5\xbd\ +\x9e\x08\x7b\x9a\xa6\xd9\xc2\x6a\xb5\x8c\xeb\x47\x47\x71\xe3\xfa\ +\x91\x26\xd9\x2c\x0c\x9c\x78\x42\x32\xdc\x24\x57\xdc\xbf\xe2\xc4\ +\xff\xf8\x26\x50\x4e\x88\x2a\x16\x5c\x8a\x9a\xb8\xf8\xd7\x9d\x9a\ +\xd3\xef\x30\xe9\x27\x8d\x68\x27\x75\xd0\x14\x08\x33\x3b\x34\x61\ +\x30\xaf\x71\x5c\x59\xa7\xbc\xa6\x4b\x03\x5f\x13\x4c\x39\xe8\x89\ +\xa5\x23\x05\x34\xe4\xd1\x13\x31\x7f\xd2\x64\x88\xed\xac\xec\xb7\ +\xb1\x11\x38\x3f\x63\x43\x6d\xa1\x7c\xb4\xab\xf3\x68\x59\xeb\x1d\ +\xdf\xe4\x4a\x02\xbe\xad\x64\x1e\x0f\xa3\x7a\xf9\xd2\xec\x50\x66\ +\x04\x56\xce\x4a\xd7\x6a\xff\x47\x04\x36\xa8\x2c\x17\x03\x6d\x9e\ +\x9b\x3e\x39\x61\x6c\xdf\x98\x42\x73\xa3\xc3\xaf\xbf\xa3\x70\xf6\ +\x51\x61\x2d\x33\x3e\x32\x84\xf7\xb4\xb4\x75\x04\xdc\x60\x5f\x95\ +\xca\x7d\x58\x69\x8a\xb6\x42\x8d\x9d\x4f\xaa\x89\xa3\x0f\x68\xb2\ +\xca\x8e\x61\x81\xec\x6c\x3e\x8f\xc5\xa5\xbd\xd8\xbf\xf3\x42\xcc\ +\x2f\xcd\x62\x57\x7d\x71\xae\x7e\x4a\x3f\x99\x49\xc7\x3e\xf5\x02\ +\x9a\x6f\xbc\xd0\x69\x34\xd1\x85\x97\x6e\xb6\xa7\x74\x17\xf7\x62\ +\xef\xd2\x85\x38\xb8\xf3\x62\xec\x1f\x1e\xc8\x67\xfa\x56\x2a\xe7\ +\xeb\x42\x52\x10\x95\x33\x9f\x4c\x93\xa8\x9e\x4c\x5b\x2b\xf6\xc2\ +\x17\x0b\x6a\x6b\xd1\x27\x49\x9f\x2d\x55\x71\x05\x16\xce\xf8\x8f\ +\x9b\x5c\x50\x23\xa1\xd2\xe3\x43\x69\x57\x47\xf2\x71\x94\x4f\xa4\ +\x9d\x5d\x5b\xfa\x49\xb5\xf0\x82\x5a\x2e\xc8\x9d\x4a\xbf\x22\x2d\ +\x37\x4e\x79\x9c\x08\xe0\xc3\x71\x6d\xc4\x67\x1b\x69\xeb\x6f\xc7\ +\x0a\xd8\xa8\x1e\xdc\xf3\xe9\x45\x2b\x1f\x77\x28\xdb\x0e\xa3\x96\ +\x71\x63\xc8\x6d\xad\x6d\x3b\x40\x57\xe6\xb9\x60\xa7\x60\x1d\x42\ +\x45\xf2\x9b\xcd\xd4\xf2\xf4\x45\xf0\x8d\x55\x7d\x9d\x0e\x10\x39\ +\xe0\x57\xdf\x36\xa4\xad\x87\x9d\x2d\x5d\x12\x8e\x9d\x74\x60\xcb\ +\x86\xf4\xb2\x6f\x31\x29\x78\x6a\xa3\x05\xf9\x44\x17\x3e\x1d\xa5\ +\x8f\xc1\x3a\x01\x87\x1a\xa4\x66\xa3\xb7\x3d\xfd\x1b\x50\xbf\x36\ +\x04\x45\xe7\x8d\x16\xf6\x63\xf3\x78\x10\x5f\x34\xc4\x56\x2c\xa2\ +\xcb\xe3\x34\x4e\x2e\x42\x7e\x92\xc5\x10\x59\xde\x70\xdd\x94\x26\ +\xfb\x5b\x92\x25\xdd\x28\x85\x4c\xe7\xb6\x2e\x17\xde\x1f\xd6\x25\ +\xdc\x5c\x48\xfc\x2d\x0d\x32\x65\x4c\x1f\xe7\x89\x02\x76\xe4\xc1\ +\xde\x85\xb8\x7c\x70\x39\x2e\x1c\xf2\xca\x54\xf4\x59\x39\x5e\x7b\ +\x7a\x63\xb5\x1b\x57\x6f\xdc\x88\x9f\x7a\xfc\xc3\xf1\xf8\x3d\x6f\ +\x8d\x2f\xf8\xe3\xff\x51\x7c\xe6\xe7\x7d\xba\xfa\xf0\x8d\x98\x1f\ +\x1c\xd8\xce\xb8\x65\x19\x85\x2e\xdb\x58\x6e\x81\x70\x0b\xdb\x5b\ +\xda\x8d\xd1\xfa\xb6\x1d\xdb\x9c\xf7\x37\x61\xc2\x27\x15\xea\xf8\ +\xf6\xb1\xcf\x13\x2d\xbb\x7e\xcd\xe3\x7c\xf7\x20\x7e\xf4\x27\x7f\ +\x38\xfe\xca\xb7\x7c\x69\x5c\xdd\xfd\xc5\x78\xd3\x5b\x1f\x8d\x7b\ +\xae\x5c\xd1\xe5\x8a\x0b\x9e\xae\x27\x02\xe9\x4e\x4f\x74\xbd\x80\ +\xd5\x81\x0d\xef\x6b\x21\xfd\xdf\xd7\x2c\x7d\x90\xfb\xb8\x60\xb1\ +\x21\xd3\xf8\x10\xf7\x87\x73\x94\xaf\x6c\x09\xe4\xa9\xb4\x0d\xd7\ +\x0a\xd3\x8a\xb8\xd5\xeb\xc3\xd9\xfe\xd2\xc6\x90\xd2\x64\x65\x0b\ +\xb8\xb6\xe9\x52\x9c\x69\x95\x29\x64\x9e\x0d\xe5\xa5\x8d\xc4\xbb\ +\x3c\x4e\x9c\xe8\xf1\x56\x7a\xa2\xec\xc9\xdd\x8c\x54\xa0\xcf\x1f\ +\x05\x89\xb0\x28\x7d\x1a\x7d\x5e\x25\xc8\xc4\xd9\x7a\x53\x02\x19\ +\xba\x4c\xc8\x1c\xa5\x9c\xf3\x2b\x72\xe2\x94\x94\x3d\xdb\x54\x26\ +\x8d\xd8\x04\x5f\x6d\x38\x7d\xc3\x57\x01\x7c\x3a\x37\x0f\xa3\xaf\ +\xd2\x12\x18\xf3\x30\xae\xa2\x78\x79\x46\x45\x47\xc8\x73\x3d\x69\ +\x78\x63\x03\x4f\xaf\x75\x76\xf8\xf2\x58\x49\x74\x5e\x1b\xb8\x32\ +\xeb\x43\x1e\x18\xa1\xc5\x5e\xda\xd4\x80\xde\xbf\x59\x04\x60\x9e\ +\x41\x99\xce\xe5\x5c\xab\xd9\xef\xb4\x39\x7a\x2e\xe5\x1e\x0f\xb0\ +\xb0\x25\xe5\x1e\x3f\x54\x63\xa1\xcb\xf5\x11\x2d\xb9\xc7\xdc\x58\ +\xcb\x07\x3f\x62\xe2\x07\x4a\x33\x0d\xc2\x19\x22\xf1\xf4\x3f\x0b\ +\xbd\x0b\xd9\x2f\xe6\x3b\x31\xc7\x97\xca\xb6\xe0\x07\x4e\x8c\xbd\ +\x34\xd6\xf2\xa2\x9d\x92\x3b\x4f\xd1\x3c\x19\x97\xaf\xfc\x66\x41\ +\x0f\x99\x6a\xc0\x7b\x28\xa5\xa7\x3e\x27\x9a\x63\x70\x4c\xf0\xe4\ +\x19\x63\x1e\xca\xce\x7f\xd4\x62\xef\x6b\xd5\x5a\xe3\x22\xc6\x5e\ +\xca\xc7\xed\x22\x1f\xd9\xce\xa1\x63\x88\xf1\x99\xc6\x60\xaa\xeb\ +\x91\xc6\x5e\xf9\x94\xda\xba\x9e\x50\xd3\x98\xaa\x7f\xe8\xe5\x72\ +\xba\x4a\xd4\x2c\xdb\x4b\x79\x33\xb7\x30\x24\x1c\x1f\x1f\xe8\xa9\ +\x83\xa1\xb4\x1c\x17\x38\xe0\x09\x3f\xcb\x65\x3c\xa8\xbd\x91\x4e\ +\x44\x8e\xb5\x08\x56\x19\x2e\x33\x7c\xeb\x21\xf8\x3a\xf2\xde\x4a\ +\x5a\xa1\x25\xed\xc0\xed\x68\x71\x12\xd0\x83\xbf\x12\xbb\x30\x0d\ +\x6c\x28\x7c\xd3\x45\xa8\xaa\xb2\xea\x74\x69\xd0\xc7\x61\x97\xe7\ +\x96\x68\x5f\xe7\x81\xbd\x75\x69\x30\x98\x89\xb8\x65\x92\x96\xb3\ +\x51\x01\xf9\xe0\x64\x90\x19\xe7\x0a\xc1\x3e\x6e\x52\xba\xb2\x1e\ +\xd2\x78\x3c\xe6\x24\xd2\xc0\x9b\x42\x9e\x7a\x90\xe3\xc2\xd4\xd8\ +\x54\xa4\x55\x62\xca\x44\x44\x52\xc3\x16\x42\x6d\xc3\x50\x28\x4b\ +\xc0\x71\x87\x5c\x3e\x70\xa2\x40\xe4\xe3\x58\x9d\x8b\x0f\xde\x99\ +\x27\x20\xa7\x5c\xfc\xaf\xda\xb5\xa7\x4f\xe2\xe4\xc9\x3b\xe3\xb3\ +\xde\xf8\x6f\xc6\x1f\xf8\x7d\xff\xae\xf7\x3d\xaf\x3f\xe5\x18\x48\ +\x0f\x18\x37\x59\xfc\x84\x09\x2f\x23\x4c\xbd\x76\xc2\x84\x97\x0e\ +\xd3\x82\xda\x84\x09\xaf\x60\x4c\x07\xbf\xd0\x8d\xf0\xb1\x46\x17\ +\x3d\x78\x1e\xc7\xe7\xf0\x09\x1d\xa0\xb4\x73\x4e\xd9\xcc\x0c\x7c\ +\xea\x1e\x15\x64\xab\x4c\x9a\x20\xac\x96\x9a\x18\x2c\xe2\x47\xbe\ +\xe3\x5d\xf1\x03\x7f\xf2\xbf\x8f\xbb\xd7\x1f\x8d\x47\xdf\xfa\x68\ +\xbc\xf6\xbe\x7b\x63\x6f\x3e\xf7\x24\x8d\xd7\xdb\x31\x69\xbd\x71\ +\xe3\x7a\x5c\xe3\xb5\x75\x47\x47\x9a\xdc\xf2\x84\x0d\xb7\x11\xd2\ +\x19\x93\x0d\x26\xf6\xa6\x95\xa6\xa6\x36\xb5\x1d\xe9\x7b\x82\xa4\ +\xe0\x57\x3c\xb2\x0e\xa2\x49\x3a\x7f\x80\x4e\x42\x16\x08\x86\xb9\ +\x88\x27\x4a\xb2\x29\x7a\xb8\x91\x6f\x65\xc2\x55\x34\x2b\x5b\x65\ +\xe0\x14\x69\x66\x51\x96\x2e\x17\xfa\x10\xa6\x2f\x4b\x06\xbb\x9e\ +\x2c\x81\xd4\xdb\x20\x95\x2f\x12\x99\xcf\x2d\x90\x19\x6c\xdc\x99\ +\x6f\xeb\xcc\x80\x49\xe4\x38\xfd\x6d\xb3\xb5\x51\x39\x6b\x30\xd9\ +\x83\x27\x91\x77\x87\x78\x4f\x00\xa1\x61\xbd\xb1\x9d\xbe\x6a\x46\ +\xe5\xd6\x37\x6f\x1c\x73\x13\x24\xd3\x32\x79\x6c\x7f\xbe\xb9\xc5\ +\x57\xa1\xd3\xb6\x3f\x07\xd2\xda\x96\xbc\xf8\x8c\x74\x0a\xf6\x85\ +\x4c\x7d\xc4\x54\x35\xb6\xc5\x94\x55\xfb\x33\x45\x2a\x8f\xf6\xbd\ +\x6f\x2a\x28\xe6\xe6\x0c\x13\x64\x16\xbf\x76\x0f\xf6\xbd\xa0\x36\ +\xbb\xb4\x88\xc5\xe1\x22\x66\xfb\x2c\x94\x2d\xbc\x68\xe6\x9b\x42\ +\xee\x37\xfd\xa4\xda\x5c\xfc\x2c\x66\x0b\xc5\xdc\xf0\x51\x9f\x5e\ +\x5c\x3c\x88\xc5\xe5\x83\xd8\xbf\x7c\x18\x8b\x0b\x07\x29\x57\x1a\ +\xef\x6d\xa5\x57\x69\x28\x99\xca\x98\x05\xcb\x7a\xe5\x82\x9a\xfb\ +\xfc\xc9\x49\xac\x59\x00\x63\x41\xad\x9e\x54\xe3\x97\xdb\x2c\xa8\ +\xe9\x80\xd0\xb1\xb3\xf6\x62\xb4\xff\x14\x5f\x0d\xc2\xcd\x35\xbf\ +\xf6\xf2\x44\x72\x16\x9c\x8f\x96\x11\x3c\xad\xc6\xc2\x1a\xbc\xe2\ +\xf5\x8d\x94\xb3\x40\xe7\xf4\x4e\xeb\x52\xb8\x2c\x06\xa4\xca\x42\ +\x33\x0d\x50\x63\xf9\xf0\xb2\x30\x8f\x09\x02\x3c\x6d\x98\xe2\x94\ +\xe3\x20\x17\xb3\x15\x94\x28\x65\xe8\x44\x40\x5b\x56\x34\x11\x8e\ +\x89\x21\x6e\x92\x11\x43\x10\x69\x5f\x25\x39\xc8\x0c\x62\x8e\x55\ +\xc9\x4c\x2a\xef\xcd\x11\x25\xd8\x14\x8e\x8a\xe5\xfe\xb5\xdd\xd8\ +\x47\x1a\xb9\x4f\xd9\x96\x2f\x3e\x87\x0c\x31\xc1\xaf\x22\xb2\x52\ +\xbc\xa5\xaa\x78\xdc\x6a\x1b\x2a\x91\xfc\x79\x29\x1e\x47\xe9\xc9\ +\x52\x31\x7c\xf6\x0b\xbe\xd5\x87\xc9\xb0\x0c\xcc\x73\x0c\x58\x3e\ +\x92\x09\x4e\xdb\x8c\x0f\x2e\x95\x1b\x7e\x90\xd1\xd7\x64\x45\x3f\ +\xb7\x22\xf3\x71\x3a\x1b\x00\xf4\xf0\x9b\x1a\xd9\x53\xb5\xb1\x0d\ +\x49\xdb\x6d\xe2\xc4\xd5\xca\xc8\x55\xf6\xcc\x5a\xc7\x87\xda\x7c\ +\x6f\xff\x30\x2e\x1e\x5c\x8a\x85\x8e\x9f\x99\x8e\x01\x7b\x56\x22\ +\xee\x35\x2e\xcf\xf6\xe3\x39\xf5\xd9\x1f\x7b\xe2\xc3\xf1\xde\xb3\ +\xfb\xe3\x8b\xfe\xdf\xff\x49\x7c\xd6\xef\xfb\xac\x58\x2e\x8f\x63\ +\xb1\xd8\xb7\x6d\xc2\x05\x72\x34\xc4\x90\xa2\xc9\xbf\xab\x32\x98\ +\x83\x73\xb6\xc6\x79\xbe\xd1\xe9\xce\xfb\x68\xdc\x2a\xcd\x84\x09\ +\x9f\x2c\xd0\x01\xe0\xe3\xc0\xe4\x59\xfd\x67\xda\x61\xfc\xe4\xbb\ +\x7f\x22\xfe\x97\xbf\xff\x27\xe2\xb9\xd5\xfb\xe2\xcd\x6f\x7b\x34\ +\x2e\xdd\x79\x87\xc7\x56\xbb\xbc\xd6\xda\xd7\xd1\xd3\xe0\xbf\x37\ +\x19\x4f\x75\x17\xe7\xfa\x06\x7c\x5c\x4b\xea\x8f\xcf\xe9\xe2\x94\ +\x81\x17\x0f\xc4\x72\xf4\x73\x86\xa8\x91\x4f\x1d\x87\x28\x28\x4b\ +\xd9\x13\x8a\x36\x33\xa4\x81\x4c\xdb\x81\x4c\xaa\xf2\x4d\xd5\x90\ +\xaf\x42\x9e\xbb\x45\x61\xec\x3c\x25\x17\x99\x16\x82\x98\x4c\x4b\ +\x9c\xf9\xc0\xa6\x1e\xde\x1a\xd3\x43\x26\xe9\x26\x61\x11\xa9\x1c\ +\x25\x6e\x61\x66\xa8\x0c\xe9\x4f\x64\xb9\xeb\x1c\x7c\x2e\x32\x9d\ +\x92\xb6\x35\x29\xa5\xf5\x4e\x44\xec\xaf\xe1\x71\x0f\xb1\xe5\x6c\ +\x94\x8e\x46\x80\x26\x9d\x24\x5e\xf4\x71\x1a\x38\x13\x1e\x1f\xe5\ +\xa5\x5c\x9f\x53\xed\x0d\x6c\xa9\x3f\x71\xe9\x21\xb0\x61\x81\x6d\ +\xfc\x74\x93\xf7\x97\xe0\x31\x93\x4e\xda\x44\xce\xd7\x52\x64\xe4\ +\x9d\xb2\xbc\x26\x5a\x61\x8b\xd3\x15\x0b\xb7\xc9\x13\xb3\x9f\xe7\ +\x8c\x8d\x64\xe7\x85\x32\xf1\x2c\x82\xb1\x78\x9b\x8b\x6c\xda\xef\ +\x8c\xad\xf4\x81\x46\x3f\xd7\xd8\x89\xff\x9f\xcd\x74\xbb\xba\x26\ +\xf0\xff\x66\x21\x1e\x2a\xfd\x30\x6e\x9c\xd9\x8e\xa0\xd4\xba\xae\ +\xe4\x0f\xa1\x08\x2a\x12\x65\x54\x1a\x8a\x62\xde\x63\x09\xe5\x55\ +\xf1\x7a\x87\x37\x59\x70\x1d\x65\x7c\x45\x1d\x34\xa6\xd2\xb8\x4a\ +\xb5\xf6\x98\x89\x27\xfe\xfc\x76\x00\xa9\xfc\xe3\x26\x3e\x6a\x08\ +\x16\xdd\x78\xda\xaf\x17\xdb\x4e\x96\xa7\x71\x8d\xd7\xcd\x6b\xfc\ +\xb4\x54\xba\xa5\xc6\x62\x2c\xe4\xf1\xaa\x6d\xb7\x28\xe9\x89\xb3\ +\x38\x62\x45\x40\x8b\xa1\x5d\x29\x5b\x1f\x2b\xfe\x31\x92\x3e\xfe\ +\x61\x52\xd9\xf8\x89\x7e\xa7\xaa\x9e\xcb\x57\x89\xbc\x37\x48\xcf\ +\x42\xa1\x79\x7d\x70\xa6\xaf\x8f\x35\x29\xd9\x7a\x9e\x81\x50\x5f\ +\xfb\xe3\xb3\x11\x69\x83\x55\xca\x0d\xe4\xec\x53\x24\x36\xb4\x28\ +\x81\xae\xc8\x0d\x43\x21\xb2\x6e\xc0\xdd\x01\x55\x97\x05\x19\x25\ +\x19\x7c\xa5\x3d\xfb\xa7\x44\x02\x02\xd2\x91\xef\x90\x4c\x22\xca\ +\x36\x18\x61\x52\xfd\x7c\x03\xd3\xd9\x41\x4b\x5e\xbe\xf4\x21\x25\ +\xb2\x54\xb3\x49\x89\xd9\xee\xee\x2a\x84\x6d\x20\x07\x42\xa1\x48\ +\xa3\x88\x4c\xd9\xfe\xf9\x91\x02\x69\x52\x3a\x2e\x69\xce\x35\xd2\ +\xd6\x32\xec\x47\x3e\x93\x54\x3a\x18\x53\x42\x37\x1c\x72\x39\xb6\ +\x6f\xc9\xe8\x73\x86\x22\xda\xcb\x9c\x64\x79\x6c\x62\x2f\x4b\xc5\ +\x2c\x0e\xd3\x81\xe6\x3a\x16\x6e\x3c\x7f\x16\x4f\x7d\x60\x19\x6f\ +\x7d\xf8\x0f\xc5\xbf\xf2\x07\xfe\x68\xdc\x75\xf9\x8a\xfa\xe4\x5a\ +\xc7\x19\x89\x39\x17\xa4\xaf\x2e\xc9\x84\x09\x2f\x27\x4c\xbd\x76\ +\xc2\x84\x97\x0e\xd3\x82\xda\x84\x09\xaf\x60\x4c\x07\xbf\x30\x6e\ +\x84\x5b\x8d\x30\xd0\x23\x3f\x1f\x83\xdb\x34\xe0\x4b\x36\x50\x71\ +\x7e\xca\x64\x98\x01\x08\x76\x2e\xc6\xe5\xb0\x01\x82\x91\x5e\x93\ +\x82\xe3\x93\xd8\xdd\xdf\x8b\x1f\xfb\xae\xef\x8c\xef\xfc\x2f\xbf\ +\x24\xae\x3c\xf5\xd1\x78\xf3\x9b\x5f\x1d\x6f\x7c\xcd\xab\xfd\xff\ +\x53\x4c\x2e\x59\x60\x58\xae\x78\xcd\xe3\x49\x5c\x7f\xfe\x48\x13\ +\xda\xa5\x26\xaf\x4b\x65\x97\x4f\xa6\x71\x69\x60\x0a\xca\x0c\x8f\ +\x6c\xfa\x17\xcf\x9d\x25\x11\xf0\x0d\x22\x09\x53\xac\x2d\x93\x8d\ +\x85\xe4\x9e\xec\xd7\x64\xef\xa6\x50\x13\xa4\xe2\x99\x00\x7a\x22\ +\x69\x63\x44\x8a\x91\x27\x63\xb9\x23\x78\xd7\xbb\x22\xc5\x3d\xc9\ +\x74\xde\xfe\x66\x0c\x88\x3c\xb9\x93\x73\xfb\x02\x08\x07\xe6\xc5\ +\xc1\xe6\xe5\xf3\x26\xb8\x20\x49\x26\x24\xe8\x59\x5f\x67\xe4\x3c\ +\xb5\xc9\xaf\xe8\x5b\x15\xe0\x9c\xcc\x37\x27\x2a\x01\xf6\x0a\x79\ +\x83\x06\x3a\x45\x29\x23\x62\xf2\xa8\x16\x28\xb9\x2f\xeb\xcc\x0b\ +\xb1\xe1\x26\x86\xe9\x8a\xe1\x91\xaf\x37\x32\x04\xc8\xcc\x4b\x60\ +\xbd\xe4\xdc\x26\xc9\xa7\x5e\xd4\xbe\x92\x33\xf9\xb4\x6f\x62\x9b\ +\xb0\x95\x56\xc5\xca\x89\xb0\xe4\xec\x73\x89\xb9\xdf\xe2\xfd\xe6\ +\xc5\x34\x82\x04\xea\x1b\x3b\x8b\x79\xec\x1e\xee\xfb\xd5\x73\xbc\ +\xbe\x91\xff\x4f\x9b\x1f\x2c\x2c\x67\x41\x00\x3b\x16\xd0\x88\x59\ +\x60\xe3\x46\x0f\x4f\x59\xf2\xeb\x69\xee\x06\xcd\xd5\xaf\x73\x41\ +\xee\xc0\x61\x2e\x7a\xd7\x8b\x6d\x04\xe5\x43\xdf\x76\x3b\x11\xba\ +\x8e\x2c\xa4\xad\x15\xaf\xdc\xc7\x4f\xe9\xeb\x27\xfc\xc7\x08\xf4\ +\xca\x8b\x6c\xa7\x27\xab\x38\x5b\xaa\xe0\xb2\xeb\x27\xd4\xb8\x19\ +\xe4\xff\xa1\xa3\x91\xf0\xc1\x9f\xee\xb3\x60\x76\xac\xe3\xe4\x88\ +\x20\xda\x41\x7e\x58\x50\x63\x61\xed\x58\xe9\x59\xa0\x73\x3a\xf7\ +\xca\x01\xb4\x16\x37\x0e\x5a\xa6\xd2\x66\x31\xa5\xc8\x05\xe7\xd2\ +\xa8\x01\xe9\xd3\xee\xbb\xc4\x6e\xd0\xa2\xeb\x98\xf2\xcd\xd0\xee\ +\x53\xd6\x95\x0c\x9a\x9b\x43\xd0\xd8\xa2\x52\xec\x1b\xa6\x66\xca\ +\x86\x88\x18\x22\x0f\x3e\x8b\x5b\x67\xb4\x6d\xe9\x32\xbb\x56\x52\ +\x0f\x04\x16\x0e\xc8\x63\x11\x62\x4b\xac\xf6\x43\x40\x45\x15\x3b\ +\x3f\x5b\x09\x1b\x2b\x97\x27\xbb\x9b\x31\xd2\x54\xbc\xc1\x8b\x91\ +\x80\x2a\x8d\xb7\x58\x98\x53\x19\xaa\x1b\xa7\x0c\x42\x9a\xf3\xc7\ +\x57\x89\xd3\x07\x0b\x59\x1b\x07\x15\x11\xab\x15\x1c\xc3\xcb\x40\ +\x84\xd3\x5a\x62\x29\x16\x8e\xcf\xa3\x52\x09\x1b\x3d\x12\x73\x22\ +\x9c\x9d\x36\xc9\xa7\x8d\xfb\x94\x74\x3e\x63\x9e\xcd\x54\xac\x9d\ +\xd8\x9b\x5f\x88\xc3\xc5\x41\x1c\x5e\xba\xa8\x7e\x94\xfb\x85\x1b\ +\x9e\xe8\x96\xa7\xf3\x38\x51\xd9\x7f\xea\x43\x8f\xc7\xcf\xad\x2e\ +\xc6\xef\xfe\x0f\xff\x5f\xf1\x7b\xfe\xf5\xdf\xa5\x3e\x7c\x1c\x3b\ +\xfb\xfb\x2e\xfb\x90\x11\x30\xbd\x89\x21\x5f\x10\xe7\xec\xb7\xe2\ +\x31\xc6\xb2\xb1\xd3\xf3\x76\x13\x26\xfc\x56\xe1\xa6\x7e\x2b\x41\ +\xcb\x38\xee\x74\x4c\x9d\x9c\xdd\x88\xbd\x9d\x0b\xf1\xb3\x3f\xfd\ +\x13\xf1\x3f\x7d\xe3\x97\xc4\xf5\xf9\xcf\xc7\x23\x6f\x7d\x28\xee\ +\xba\xc2\x7f\xa6\xb1\xa8\x51\x3f\xf2\xd1\x79\x8c\x1f\x6e\x70\xfd\ +\xf5\xb5\x50\x7e\xfc\x63\x11\x74\xf8\x82\x96\xcc\xe7\x69\xe0\xa8\ +\xce\x25\xb2\xd9\x12\xd7\x96\x43\xb4\x17\x09\x86\xeb\x43\xf9\x26\ +\x0f\x9f\x8d\x86\xe3\x98\x18\x03\xd9\x71\xee\xe7\x38\x6f\xb1\x64\ +\xf6\x65\x39\x34\x67\x8c\x4a\xbb\xcb\xf8\x2f\x6d\x32\x62\x9b\x7e\ +\xa0\x2d\x4b\xae\x36\x89\x11\x99\xc0\x2f\x3e\xad\xd8\xc4\xb6\xf4\ +\x39\xa7\x52\x58\x84\x4c\x5f\xca\x83\x08\x59\x79\x34\x59\x30\x3d\ +\x6c\xf0\x0f\xd9\x67\x51\xf1\x10\xe6\x53\x92\x65\xd0\x8e\x10\x5b\ +\x12\xc5\x95\x3f\x31\x0d\x88\x8d\xd3\x28\xf6\x98\xab\xd2\x77\x99\ +\x64\xe9\x71\x0f\x6e\xa4\x5f\xbb\xd1\x05\xa5\xb3\x9c\x0f\x3e\xa4\ +\xf3\x78\x08\xda\x49\x33\x31\xd6\x1e\x63\x21\x81\x51\xfa\xbc\xce\ +\x58\xe4\x4d\x97\x09\x29\x36\x94\xda\xe3\x04\xec\x64\xcf\x90\xda\ +\xe3\x21\x58\x95\x8b\xc5\x32\x16\xbf\xbc\x68\xe6\xb1\x12\x8b\x62\ +\x2c\x92\xa9\xdf\x54\x1f\xa3\x0f\xb2\xb8\xcb\xeb\x80\x49\xc7\xf5\ +\x60\xae\x31\xd4\x5c\x31\x4f\xaa\xf1\x73\x0c\xf8\x05\x4f\xfd\xb3\ +\xb0\x86\xcc\x0b\x6a\xa9\xc7\x0f\x0b\x74\x94\x06\x5d\xc2\x05\x76\ +\x89\xb3\x94\xfa\xec\xe4\x02\x1a\x0b\x63\x2b\xc6\x51\x1a\x63\xf1\ +\xc3\x25\x2f\x26\x33\x66\x72\xa0\xce\xfc\x28\x89\x40\x2b\xf1\x8a\ +\xf9\x5c\xcc\xb0\x5e\x0d\xc4\x02\x1b\x4f\xa7\x1d\x69\x6c\x75\xa2\ +\xb1\x13\xaf\x7b\x5c\x2b\x5e\x4b\xce\x93\x6c\xfe\x01\x97\xec\x73\ +\xb1\xcc\x85\x48\x82\x36\x81\x87\x54\x9d\x29\x15\xfb\x4e\xdf\x1a\ +\xd6\x24\xad\x16\x51\xac\x36\xf5\xfe\xcb\x7e\x8c\x9c\x56\xf7\x67\ +\x87\x7e\x4f\x0b\x4a\x9e\xd5\x16\xb0\x6f\x7d\xa5\xf2\xf5\x15\x7d\ +\xc9\xac\x87\xe7\x4b\xde\xfa\x8e\xca\x46\x29\x4c\x5a\x58\x28\x9f\ +\x06\xfb\xd9\x8e\x52\x6f\x1f\xc4\xda\x69\xfe\x94\x59\x89\x31\x70\ +\xd8\xca\xa3\xfb\x13\x46\x2d\x1f\x12\x80\x41\xb8\x45\x56\xb7\x4c\ +\x17\x84\xa2\xbb\x1f\x27\xa0\x53\xdf\x7d\xdb\xf0\x61\x65\x69\x6d\ +\x13\xd0\xee\xef\xb2\x6b\x53\x84\x99\x5e\x41\x42\xed\xce\xa1\x5e\ +\x3e\x76\x9c\xa8\xbd\x75\x1e\xe2\x2c\x87\xce\x08\xb1\xcb\x2c\x82\ +\xfa\x97\x4a\x80\x41\x88\xef\xda\x3f\x92\xa1\x77\x51\x6c\x48\x3f\ +\xb3\x38\x1d\x19\x1b\xc6\x4f\xa8\x89\xa4\x2c\x1c\xcb\xb9\x60\x1c\ +\xfe\x6f\xc2\x0f\xbd\x67\x19\x6f\xbc\xff\xf7\xc5\x17\xfe\x9e\x7f\ +\x3f\x1e\x7e\xf8\x91\x38\xd1\x1c\x60\xb1\x37\x73\x0e\x4e\x5d\x79\ +\x8f\x1c\x4f\x98\xf0\x49\x8f\xa9\xb7\x4e\x98\xf0\xd2\x41\x63\x36\ +\x5f\xca\x26\x4c\x98\xf0\x0a\xc4\x74\xf0\x17\xba\x21\x18\x61\x6c\ +\xc6\xd8\x1b\x8c\x64\xad\x7a\xa1\x33\xe7\x4b\x3b\x50\x51\x46\x76\ +\xa8\x0d\x99\xf6\xa8\x7f\x33\x23\x49\x3d\xe5\x91\xac\x17\xd3\x7e\ +\xe6\x7b\xbf\x2f\xfe\xf1\x9f\xf8\xe2\x58\x7e\xf0\x97\xe2\x8d\x6f\ +\x7d\x34\xde\xfa\xd0\xfd\x71\x81\x45\x0c\x4d\x9e\xfd\xea\xbb\xf5\ +\x32\xae\xdd\x38\x8e\xe7\xaf\x1f\xc7\xf2\xe8\xc4\x0b\x0d\x9b\xbc\ +\x70\xc6\x24\x5c\x1b\x85\xbe\xd1\x9f\x5b\xe9\x3c\x81\xc8\x49\x3b\ +\x2a\xa6\x15\x9e\x73\x33\xf3\x9f\x8b\xd6\x44\xdc\xaf\x79\x2c\x7f\ +\x39\x61\xcc\x64\x76\x92\xac\x61\x5d\x4d\x92\x3d\x41\xb1\x8e\x94\ +\x6c\x31\xc8\x60\xda\x59\x27\x63\xb1\x36\x94\xd4\x53\x56\x04\xc8\ +\x32\x1a\x11\x89\x9c\xa4\x15\xb2\x58\x4d\x26\x10\x0c\x8c\x30\xb2\ +\x1f\x9a\xbd\xf8\x8f\x8d\x5b\x58\xd6\xa4\xcb\x6e\x5f\xa8\xf3\x28\ +\x6d\x67\x6d\x33\x02\x02\x27\xd1\xa6\x64\x66\x81\xf9\xbc\x39\x61\ +\xba\x27\xba\x7c\x99\x4d\x4a\xce\xd3\x52\x56\xfb\xc6\x04\x22\x6d\ +\xfc\xa4\x0b\x3c\x69\x95\x05\x72\x78\x3e\xf6\xa3\x09\x68\xd3\xf8\ +\x50\x8c\x9d\x69\x7f\x20\xbd\x55\x10\x68\x20\x43\xe5\xf7\x9d\x1f\ +\x7d\xb9\x29\x90\x77\x73\xbc\xb8\x1a\x2c\xb2\xee\x2d\x62\x7e\xc8\ +\x62\x1a\x61\x11\xb3\x0b\xf9\x84\x9a\x9f\x4e\x5b\xcc\xfc\xb4\xd9\ +\x0e\x37\x76\x78\xea\x8c\x30\x9f\xc7\xce\x62\xe1\xf4\xd0\x4e\xa7\ +\xfe\x3d\xbb\x74\x10\x7b\x17\x0f\xcd\x93\x2e\xbc\xa0\x46\x47\xe2\ +\x56\x11\xe8\x89\x3a\x37\x77\x54\x47\x6e\xf6\x28\x9c\x29\xac\x79\ +\x42\xad\x16\xd5\x78\x1d\x17\x4f\x94\xb1\x88\x16\x7e\xdd\x63\x3e\ +\x9d\xe6\xff\x52\xe9\x05\x35\x05\xb7\xc7\x2a\xf5\x5e\x50\xf3\x2b\ +\x1e\x73\x41\x0d\xfa\xec\x06\x8b\x6a\xe8\xd6\xb1\xe2\xa9\x35\xd2\ +\x2a\x8d\x4b\xe2\x26\xea\x52\xd5\xa6\x88\x94\xca\x40\xed\xd7\x7d\ +\xcc\x52\xbe\x0e\xa5\x43\xee\x05\x43\x51\xb4\x2b\x72\xc7\x92\xfb\ +\x06\x90\x68\xc5\xe4\xe8\xb6\x76\xda\x8e\xb5\xbf\xd0\x8b\xce\x04\ +\x8a\x8b\x1c\xf8\x2e\x23\x5f\xfc\x19\xa5\x63\x93\x05\x33\x3b\x3e\ +\x96\x52\xbd\x2d\x70\xbb\x0b\x14\xa3\xc8\x4c\x64\x1f\xda\x94\x3d\ +\xdb\x72\xfb\x82\x50\xc9\x93\x18\x19\x67\x9b\xde\x0e\xdb\x1e\x93\ +\xcb\x04\x5b\xc9\xaa\x22\xb5\x9b\x84\xec\xe7\xf8\x46\xe4\x9b\xd0\ +\x7c\x91\x89\xe0\x09\x84\x52\x48\x56\xa5\xca\x4e\x26\xb1\x38\x48\ +\x7c\xe8\xd8\x4a\x9d\x02\xb6\x4d\x7f\x0c\xa4\x27\xf2\x4a\x82\x98\ +\x2c\xcd\x43\x8b\x62\xd7\x54\x96\x2a\x37\xc7\xb0\xce\x7e\x3a\xa7\ +\x73\xe3\xf4\xc2\xc1\x61\x1c\x5c\x38\xf4\x93\x09\xb9\x80\xca\x6f\ +\xf6\xcf\xd4\x17\xe7\xb1\x8c\x79\xbc\xfb\x89\x0f\xc4\x7b\x3e\xba\ +\x1f\x9f\xf3\xc7\xff\xd3\xf8\x3d\xff\xce\xef\x8f\xd5\x91\xa4\x3a\ +\x7e\xf0\x95\x9b\xca\xac\x48\xd7\xbb\xe2\x51\x21\x36\x36\xe0\x3c\ +\x0d\xc6\x36\x2d\xbb\x15\x5e\xac\xdd\x84\x09\xbf\x19\xd8\xea\x87\ +\x62\xe0\x47\x58\x9d\xde\x88\xc5\xec\x30\xde\xf3\xcb\xbf\x10\x5f\ +\xfe\x77\xfe\xcb\xb8\x7e\xf4\xb3\xf1\x86\xb7\x3d\x1c\x97\xae\x5c\ +\xf2\xe2\x05\xaf\x79\x9c\x71\xcc\xb1\x08\x70\xb2\xf2\xf9\xa3\xcf\ +\xa5\xbd\xd0\x91\xdd\x5d\xc7\xb1\x08\x9f\x06\x2d\x33\xe1\xec\x76\ +\xfd\x84\x53\xcb\xa0\x36\xc5\xc0\xde\x69\xba\x9c\x66\x92\x36\xab\ +\x90\xa7\x34\x52\x93\x0b\x75\x10\x6d\x25\x7c\xe6\x91\xbc\xf2\x52\ +\xe4\xf3\x18\x8b\x04\x75\xa2\x19\xf2\x70\x7a\xec\xd8\x9a\xaa\xd4\ +\x88\x92\x1f\xa3\x45\x7d\x6e\xca\x6b\xcf\x70\x62\x55\xda\x34\x70\ +\xfe\x10\x6c\xb2\xaa\x42\x4a\x39\x57\x91\xce\x3e\x92\x83\xb0\x5d\ +\xd7\x2b\x75\x42\xc7\xca\x23\x7f\x5c\xa0\xaf\x65\x1e\xb5\x38\xc1\ +\x60\x0a\x5b\xf4\x86\x48\xf8\x06\x3c\xb6\x9c\xf4\xcb\x10\x13\x9b\ +\x59\x94\xe7\xef\x1e\x37\x51\x64\x3f\xe1\xac\x6f\xea\xf4\x21\xbd\ +\x8c\x58\x18\x1a\x78\xd2\x63\x5b\x8e\xac\x17\x95\xd5\x4d\x1b\xcb\ +\x6d\x89\xbd\x5a\xc8\xb6\x64\xc4\xbe\xd9\xd1\x70\x5a\xfe\xd4\x1e\ +\x8c\xb3\xe1\x69\x52\xd3\xea\x3c\xf4\x1f\x2f\x8c\x31\xa6\xb2\x8c\ +\xa7\xd6\x6a\x21\xcc\x76\xbb\xb1\xe7\x05\xb3\x85\xf3\x9b\xcf\x34\ +\xce\x92\x02\x1b\x07\xd9\xd3\x67\x59\x54\xcb\xa7\xd3\x34\xd6\x72\ +\x67\xdd\x89\xb9\xc6\x53\x7e\xaa\xcd\x4f\xae\x31\xa8\xaf\xf1\xa5\ +\xfc\xe6\x0f\xae\x44\x2b\xf6\xff\xc9\xa9\x8c\xbc\xd5\xc2\x8b\x6a\ +\x7e\x4a\x4d\x41\x63\x29\x2f\xa6\x51\x4f\x3f\x81\x16\x5e\x4c\x83\ +\x67\xe1\x82\x76\xe2\x7f\xdd\x34\xe2\x1a\x78\x74\xcb\xd5\x59\x1c\ +\x69\x1e\xc2\x22\xc6\x8a\xf4\x5e\xa4\xe3\x87\x7f\xa4\xcb\x7c\xb3\ +\xbd\x04\x8a\x43\x13\x02\xc5\x1c\x6b\xfc\x3f\x2f\x75\xf5\xbc\x44\ +\x06\xd6\xab\x4e\xb4\x6b\x55\x4d\x5f\xda\x51\x02\xda\xdf\xb2\x6c\ +\x5f\xec\x69\x37\xdb\x2b\xf2\xc2\xb2\x6d\xcb\xde\xe6\x4a\x20\x1a\ +\xb9\x63\x1b\x82\xb6\xb3\x59\x6d\x12\x6d\x5b\xd4\x26\x4d\xfb\x31\ +\xa9\x18\xd7\x43\x99\x2d\x2d\xad\x28\x88\x74\x91\x50\x6c\x92\x6a\ +\xc0\xb6\xdc\xdc\xcd\x18\x27\x57\xf3\x88\xa0\x15\x2b\x11\x3e\x9c\ +\x6c\x68\xd9\xd4\x21\xf7\xa6\xfa\xb2\xfb\xb6\x22\xca\x6a\x5d\xa3\ +\xd2\x31\x16\x81\x42\x5d\x1d\xbd\x6d\x38\x0d\x58\x44\x96\xa4\xed\ +\x02\x6b\xdf\x63\x33\x94\xc5\x5d\x5f\x9f\x2a\x1f\xcd\x46\x76\x5b\ +\xe9\x1b\xa5\x4b\x1a\xc2\x29\x4d\xa7\x1c\xcf\xb5\xad\x7c\xe8\x67\ +\x06\x8c\x9c\x8d\xfd\x79\xee\xe3\x0c\x4b\x00\x18\xc7\xc9\x88\xff\ +\x00\xfc\xf0\xfb\x9e\x8e\x57\x5d\xf8\xf4\xf8\x97\x7f\xd7\x1f\x8b\ +\xb7\xbf\xe5\x53\xdd\xdf\xf9\xf1\x44\x9f\x7b\x7c\xbe\x73\x61\x2b\ +\xed\x84\x09\x9f\xe4\x98\xba\xea\x84\x09\x2f\x1d\xa6\x05\xb5\x09\ +\x13\x5e\xc1\x98\x0e\xfe\x5b\x80\x46\xb9\xdd\x48\xc3\x03\xe7\x8c\ +\xb1\x19\x9f\x3d\x3f\x21\x83\x93\x76\x4a\x46\x9d\x2f\x18\x66\x02\ +\x25\x70\x79\x34\x91\x38\x59\xfa\x69\x9e\x5f\xf9\xf1\x9f\x8a\x77\ +\xfd\xe7\x7f\x22\xe6\xef\xf9\x99\x78\xf4\x8d\xaf\x8d\xb7\xbf\xee\ +\xa1\x38\xbc\xb0\x6f\x1f\xfe\xcf\x02\x9e\x4c\x3b\x3e\x8a\xe7\x9e\ +\x3f\x8a\xa3\xe3\x95\x26\xc0\x4b\x4f\x7c\xfd\x44\x59\xbb\xf3\x04\ +\xaf\xb3\x62\xd2\x69\xa9\x8a\xc2\xa4\x4f\x42\x4d\x1e\x7c\xe3\x1e\ +\x70\xa3\xdf\x6b\x1a\xc4\x9a\x90\x8a\xcf\xd9\x69\xd9\x42\x56\x64\ +\x54\x3a\xcf\x3f\x3a\x20\xc8\xcc\x04\x26\x2a\xf2\x6f\x5a\x3e\xfd\ +\xb3\xec\xb4\xef\x09\xef\x60\xaa\x38\x4b\x0d\x28\x63\x46\x3d\xb7\ +\x71\x1a\xc1\x34\x71\x99\x34\x06\xb6\x0d\x1a\x95\x6e\x8c\x73\x49\ +\x5f\x00\xb7\xb7\xdc\x72\x2b\xb3\xf3\x59\xc2\xdb\xc6\xcc\x46\x9b\ +\x72\x12\xb4\x87\xa4\x2d\x97\x9d\x2d\xd9\xd4\xa4\xd4\x5f\x26\x89\ +\x4c\x46\xf1\xc3\x5c\x12\x3b\x26\xc6\x45\x4b\xed\xf7\x19\x59\x9f\ +\x6f\xa6\x4a\x60\xe7\x49\x68\xa6\x63\x9f\xdb\x56\x21\x87\x0c\xf8\ +\xf1\x36\xcd\x2b\xee\x7d\x9d\xfb\x89\x1b\x3e\xd9\x47\x78\xf5\x23\ +\x0b\x6b\x7e\x6a\x71\x7f\xcf\x37\xf1\x79\x2a\x6d\xf7\x60\x1e\x33\ +\xf5\xcb\xdd\x3d\x16\xce\x32\xe4\xeb\x1b\xeb\xc9\xb4\xe2\x7b\x81\ +\x6d\xb6\xe0\x49\x36\xe9\x2f\x1c\xc4\xe2\xe2\x5e\x2c\x2e\x5d\x96\ +\x3f\xf9\xd9\x9b\x6b\xee\x2b\x39\xb6\xdc\x54\x51\x39\x28\x02\x65\ +\x76\xdb\x70\x33\x86\x1b\x3e\x5e\x50\x63\x21\xed\x24\x9f\x4e\xeb\ +\x27\xd4\x14\xf8\x0f\x35\x2f\xa4\xb1\x60\xc6\x62\x98\xed\x09\xa7\ +\xb1\xc3\xa2\x1a\x8b\x69\xf2\xc3\x2b\xbc\x58\x50\xf3\xff\xad\xf1\ +\x64\x1a\x4f\xaa\xf1\xd4\x1a\xaf\x7f\xbc\xa1\xd8\x4f\xa8\x9d\x6a\ +\x12\x2e\xdd\x2a\xdb\xca\x8d\xc1\x36\x9b\xc9\x2c\x6d\x94\xfd\x3b\ +\x69\x97\x98\xaf\x42\x12\x49\xfb\x17\xd9\xd0\x8a\x7d\x7c\x9a\x29\ +\x3d\xaf\x16\x73\x7d\x11\xa1\xb3\xbb\xc1\xb1\xf9\xce\x44\xcc\x38\ +\xcf\xc1\x18\x41\x95\xcb\xc7\x9c\xc4\xce\x53\x32\xf8\xc1\xe7\xa8\ +\xec\x0e\x42\xd6\x2c\x19\xb6\xc9\x8f\x89\x0d\xc6\xc9\x6f\x52\xde\ +\x06\xe9\xb3\x73\x38\x07\x39\x1c\xcb\xb7\xfd\x37\x32\x6d\xeb\xc6\ +\x14\x18\x74\xbe\x19\x04\xb4\xf5\xb1\x51\xf2\x8a\xdd\xbf\xdd\x8f\ +\x38\xf7\x28\x56\x43\xba\x5f\xc9\x81\xff\xc3\xd0\x8d\xe4\x14\x3e\ +\x96\x7c\x83\x8c\xe3\x66\x9c\xb9\x7d\x35\x23\xa0\x1b\xa3\x54\x4e\ +\x23\x50\x72\xdb\x97\xdc\xae\x94\x8f\xd5\x75\x9c\xfa\x98\x74\xd9\ +\x55\x2e\xe9\xe6\xbb\x8b\xb8\xe8\xff\x54\xbb\xa4\x63\x81\xa4\x58\ +\x57\x1b\x9c\xcd\x63\x29\xe7\xef\x7d\xf6\xa9\xf8\xc1\x8f\x9e\xc5\ +\x3b\xff\xf8\x1f\x8b\x2f\xfc\xc3\xff\xa2\x7f\x4c\xb1\xd8\xe7\xf5\ +\x8f\x36\x1d\x17\xa0\xb2\xce\x3d\x50\xc5\x48\xc0\x94\xd9\x80\x36\ +\x18\xcb\x6f\x65\x37\xc6\x96\x53\xe1\x85\x6c\x27\x4c\xf8\x4d\x44\ +\x1d\x7d\xea\xa3\xea\xff\x3a\xb6\x56\x67\xc7\x31\xdf\x39\x88\x9f\ +\xfb\xc5\x9f\x8b\xbf\xf8\x8d\x5f\x12\xcf\xec\xfc\x64\x3c\xf6\xe6\ +\x87\xe3\xee\x3b\xae\xe8\x58\xd3\xb5\x6a\x87\x1b\xf0\x4a\xa3\x83\ +\x72\xad\x31\x15\x74\x3e\x65\x22\x5f\x2c\x4e\xf8\xd8\xad\x23\xa9\ +\xe4\x3e\xf9\x8a\x48\x5a\x32\x9d\x74\x37\xb4\x09\x9f\x87\x59\xbf\ +\xe1\xbc\xec\x02\x29\xc6\x97\x4b\xa7\xb8\xcf\xe7\x79\x94\x22\x4a\ +\xf9\x8e\x2e\xf2\xf6\x31\x38\xca\x78\xb0\x01\x3a\xd6\x9d\xa7\x84\ +\x79\xfd\x40\x5e\x17\x04\x78\xdb\x64\x9a\x2a\xaa\x05\xd6\x24\x93\ +\xe7\x22\xe9\x48\xd9\xa2\x4a\x9e\x04\x80\x19\x19\xb4\x9d\xc7\x21\ +\x30\x6a\x63\xdb\x38\x51\xa5\x51\x84\xb8\x48\xa1\x53\x15\x5f\x9b\ +\x6e\xb1\x64\xd3\x32\x23\xe9\x92\x15\xd4\x5e\xa2\xcd\x8f\xb3\x90\ +\xc0\xa7\x3b\x1a\x58\x03\x20\xe8\x7c\x7b\x83\xb5\x8e\xbd\x88\x46\ +\xb9\x4c\xe3\xc4\x96\x3e\xc7\x6b\x54\x04\xe5\x7d\x6e\x5f\xd0\x36\ +\xcc\x66\x71\x36\x4e\x92\xe9\xfc\xa3\x8b\x2d\x59\xa6\x01\x6c\x71\ +\x5f\x16\x8e\xf1\xe6\xa7\x08\x95\x3f\x8b\x5d\x5e\x38\x93\x22\x79\ +\x9e\x4a\x63\x5c\xb4\x9b\x4f\xb0\x31\x3e\xd2\x49\x1f\x7d\x2e\x98\ +\xed\xfa\xd5\x8e\x7e\x92\x4d\x3b\x68\xee\x27\xd5\x32\x0d\x3c\x4f\ +\xa6\xcd\xd5\x6f\x59\x80\xcb\x57\x43\xe6\x22\x1b\x63\x28\x9e\x7a\ +\xe3\xd5\x8f\xf4\x5b\x8f\xdf\x28\x98\x90\x75\xac\x0f\x63\x23\xc5\ +\xa7\x67\xb4\x86\xda\x08\x9e\xff\x95\x53\xbc\xe6\x47\x4b\x9a\x4f\ +\xb8\xed\x38\x1e\xb2\x21\x25\xcb\x85\x35\x3f\xa5\x26\x3d\x2f\x04\ +\xc0\x27\xd7\x4c\x16\xe7\x58\x64\x5b\x7a\x11\x4d\xe3\x27\xd1\xd8\ +\x11\x78\x1d\x64\xfa\x93\xad\xd2\xab\x1a\xdb\xa0\x4d\x5c\x2a\xfa\ +\xbd\x68\xe6\x0b\xd0\xa9\x75\xcc\xf8\x89\x4d\xca\x6c\x69\x05\xf2\ +\x6c\x53\x0c\x88\x09\x38\x91\x85\x82\xa5\x96\x25\xe1\x18\xbe\xe5\ +\x8a\xe8\x37\x6a\xa9\x4d\x3a\x74\x02\xbc\xc7\x0a\x94\x0d\x5f\xe9\ +\x44\x3c\xc7\x66\x95\xd1\x22\xe2\xdc\xcf\x04\x03\x35\x1b\xe4\x90\ +\xe8\x1c\xa7\xb8\xd5\xae\x30\x51\x6f\x92\x4d\x58\x28\x8c\x64\x4d\ +\xb6\x8a\xfd\xa2\x26\x4d\x72\x70\xc0\x3e\x4f\x0b\x38\x99\x28\xa6\ +\x2e\x26\x8a\x4f\x38\x0d\x9d\x3d\x2d\xac\x33\x7c\x7c\x08\x94\x6f\ +\x64\x3f\xc8\x01\x72\x25\x70\x56\x63\x1b\xc1\xb4\x36\xb8\xce\x92\ +\x68\x6b\x1b\x6d\x52\xa0\xb4\xdb\x09\x33\xda\x6c\x4b\x6b\xb8\x8e\ +\xda\xd0\x67\xb3\x90\xd2\xd6\xe3\xbe\xdd\xe4\xc8\x53\x0f\x5d\x66\ +\x66\xb2\x14\x1f\xfa\xd5\xab\x71\xf9\xec\x6d\xf1\x45\xbf\xeb\x8f\ +\xc5\xa7\x7d\xca\xef\x88\x63\xcd\x03\x16\x9a\x7f\x64\xdf\x53\x4b\ +\x50\x1e\xfb\x6a\x87\x13\x26\x7c\xf2\x62\xea\xa5\x13\x26\xbc\x74\ +\x98\x16\xd4\x26\x4c\x78\x05\xe3\x15\x7d\xf0\x77\xe5\x3f\xd6\xa8\ +\x62\x64\xe7\xb9\x01\xf6\x8a\x3d\x08\x87\x4f\xd5\x4b\x8f\xf3\x4e\ +\xc7\xa7\xea\xca\x7b\x13\x6b\x48\xbf\x5a\xc5\x8e\x26\xc9\xbf\xfe\ +\x4b\xbf\x10\xef\xfa\xff\xfc\x7f\xe3\xe4\xc7\xfe\x49\xbc\xe9\xad\ +\xaf\x8b\xc7\x5e\xfb\x50\xdc\x75\xf9\x90\xdf\x8e\xd6\xa4\xf7\x34\ +\xae\xdf\xb8\x11\xd7\xae\x9f\xc4\xf5\xeb\x47\x9e\xfc\x72\xf3\x05\ +\x47\x9e\xd0\x89\xf2\x2c\x52\x44\x4e\x26\x53\x76\xbe\xee\x9e\x1c\ +\x9a\xd0\x54\x72\x4f\x93\x45\xcd\xea\xbd\xf0\xe1\xd9\x69\xda\x7a\ +\xea\x54\x76\xda\x96\xc3\x82\x68\x54\x58\xd9\xa4\x6c\x3d\x01\xb5\ +\x5d\x4d\x24\xbd\xb5\xc1\x39\xfb\x52\xc9\xce\x13\x2b\xd3\x09\x9a\ +\xc4\x1b\x26\xa3\x8a\xad\xb6\x70\x03\x58\x9b\x98\xfb\x18\x90\x51\ +\xdb\x9e\x73\xf3\x71\x22\x53\xb7\x1f\xe7\x5d\x0e\x6f\xf2\xeb\xb2\ +\x6f\x4a\x37\xd8\x0f\xd4\x26\xe1\x20\x81\x68\x31\x33\x48\xed\x57\ +\x64\x6e\x1f\xf1\xbe\x21\xa1\x40\x5b\x70\x63\xc2\x69\xc5\xdb\x96\ +\xc9\x66\xc9\x68\xb0\x5c\x50\x13\x14\x73\x13\xc4\xed\xe8\x60\x29\ +\xae\xa5\xf7\x4c\xda\x20\x0b\x76\xbd\x0b\xa2\x1d\xe4\x5f\xbd\xab\ +\x6f\xf4\x13\x6a\x2c\xb2\xf2\x24\xd9\x9c\xa7\xd1\x78\x85\x23\x4f\ +\x99\xf1\x74\x1a\x0b\x6b\x8b\x7c\x42\xcd\xaf\x7d\x54\x1f\xa2\x1f\ +\xb3\x98\xc6\xaf\xae\x87\x05\xb5\x5a\x5c\x5b\xec\xed\xc5\x0e\x69\ +\x2f\x1e\x28\x1c\x7a\x71\x6e\x67\x6f\xae\x3c\xa4\x57\xba\xbc\x71\ +\xa1\x0e\x44\x31\x95\xb5\xeb\xa7\x7e\xaf\x8e\xee\x5f\x4e\xe7\xeb\ +\x1d\xf3\x09\xb5\xd3\xe5\x89\x68\xc9\xc5\x7b\xc1\x8c\x57\x3d\xf2\ +\x5a\xc7\xd3\xb2\x77\x50\x1b\x2a\xf6\x62\x9b\x7c\xf1\x3a\x47\x16\ +\xd0\x58\x80\xe3\xf5\x8f\xc1\xa2\x1a\x4f\xab\x21\xbb\xa1\x70\x44\ +\x3e\x6a\x33\x16\xd9\x48\x43\x9b\x02\xda\x4e\xe5\xa1\x79\xcc\xd2\ +\x2c\xc8\x38\x0e\x10\xb8\x73\xab\xcd\x14\xf5\x22\x9a\x15\x6a\x3b\ +\x35\xa3\xdb\x20\x8f\x99\xea\xff\x6c\xea\x58\x23\x38\x2a\x1d\xbe\ +\xd3\x29\xb2\x0d\xdd\x76\x86\x15\xe4\x58\x40\xd7\xfa\xd2\x6d\x00\ +\x9f\x0d\x6a\xdf\x05\x4b\xcb\xc1\x4d\xe9\x4a\x3e\xf8\x07\xe7\xfa\ +\xf4\xc7\x82\x6a\x53\x54\x7b\xb9\xd9\x3f\xb8\xbd\x47\x79\x90\x5d\ +\x67\x39\xb6\x23\x39\xe7\x9c\x8c\x53\xe0\xdb\x26\x08\x48\x73\x4e\ +\x76\x2a\x62\x48\xef\x63\x03\x0e\xc3\x8e\x5b\x06\x2b\xda\x22\xf1\ +\x5b\x0d\x34\x02\x7a\x36\xe7\xd0\x3e\x68\x4a\x92\xfa\xbc\x88\x0c\ +\x7b\x45\x83\x9b\x4a\x9a\xa7\x6e\xac\x66\xbe\xb1\x3a\x9f\xef\xc5\ +\xfe\xfe\xe5\x38\x58\x5c\xd0\xb1\x31\x57\xb9\x4f\x7d\x4e\xe6\x56\ +\xe2\xfa\x6c\x16\xeb\xdd\xbd\xf8\xd9\x67\x1e\x8f\x1f\xf9\x8d\x9d\ +\xf8\xbc\xff\xf4\x8f\xc5\xef\xfe\x37\xfe\x80\xfa\xf7\x51\x2c\x66\ +\x07\xf2\xe3\x0c\x33\x23\x40\xb6\x92\xb1\x1f\xba\x9a\xa9\x47\x29\ +\x94\xd9\x80\xd6\x8f\x71\x3b\x5b\x30\xb6\xbf\x55\xda\x09\x13\x7e\ +\x2b\xe0\x3e\x5f\x5d\x57\x07\xff\x6a\x7d\xac\xe3\xe3\x42\xbc\xf7\ +\xbd\xef\x8b\xaf\xf8\x5f\xff\xb3\xf8\xc8\xb5\x9f\x8c\xb7\x7f\xea\ +\xc3\x71\xf1\xca\x9d\xb1\xc7\xa2\xc4\x4c\xf6\x32\xe6\x7c\xbf\xd2\ +\x75\x61\x26\xc6\x0b\x11\xf2\x32\x8c\x93\x04\x8e\x41\x5f\x0f\xcd\ +\x6a\xa3\x83\x8a\x67\x48\x39\xaf\x97\xc4\x5b\x27\x31\x2d\xf4\x39\ +\xd5\x32\xd9\xd6\x49\x80\xb2\xe1\x2a\x55\x79\x7c\xc2\xe6\xab\xeb\ +\xb0\x64\x31\x86\x0b\x46\xca\x9d\x40\xb0\x3b\x67\x90\x65\xb6\x0f\ +\xf1\xbe\xa1\x8f\x8d\x8d\xf1\xd8\xb4\xe4\x55\x86\xdc\x0a\x65\x87\ +\xd8\xa7\xb7\x52\x0c\xfa\x31\x4a\x4f\xe4\x34\x44\x66\x6e\x01\x39\ +\x4c\xf3\x3a\x33\xd6\x49\xc7\xb4\x17\xbd\x32\xa1\xb7\xf6\x89\x4c\ +\xb1\x4f\xd2\xa6\xda\x44\x51\x13\xe9\xd3\xe5\xb4\x88\xb6\x52\x02\ +\xd1\x9c\x9f\x6d\x67\x65\xe9\x8a\xca\x73\x7c\x25\x21\x6e\x33\x65\ +\xe6\x4b\x7a\xa5\xcd\xf4\xbc\xfe\x91\x5b\xf1\x14\x2a\xc7\x58\x88\ +\x89\x31\x4d\xc8\xde\xfc\xa6\x1e\x19\x25\x5d\xf7\xf6\x0b\xde\xa3\ +\x19\xab\xb1\xe8\x43\xec\x83\x8c\xd9\x67\x1a\x0f\x89\xc8\x57\x8c\ +\xe6\x53\x67\x3b\xfc\xa0\x48\x03\x05\x8d\x82\x72\x31\xcd\x0b\x6c\ +\xa4\x99\xfb\x69\x33\x2f\xbe\x69\x8c\xb4\x60\xd1\x4c\x61\x78\xf5\ +\x23\x4f\xa7\x95\x0e\x7a\xc1\x58\x8c\xb1\x14\x79\x30\xe6\x70\x99\ +\xaa\x3c\xfe\xea\xc3\xc2\x19\x8b\x62\xfa\x78\x41\x8d\x36\x61\xac\ +\x24\x9a\xf9\x84\x7f\x78\xc4\x02\x98\x02\xe3\x27\x51\xae\xbb\x9f\ +\x46\xe3\xe9\x4d\xec\xb1\x51\x2c\xb6\x74\xf9\x54\x1a\x63\x4d\x9e\ +\x4a\x83\xe6\x35\x90\x5e\x6c\x23\x0d\x8b\x74\x8c\xc5\xf4\xe1\x5b\ +\x9b\x01\x59\x4c\x64\xd9\x46\x03\x24\xf2\x58\xd4\x83\x27\x6b\x33\ +\x76\x24\xb9\xda\xa8\x65\x08\x39\x1e\x36\x8b\x5d\xe9\xcb\x31\xae\ +\xb4\xf1\x33\xdf\xd8\xe1\x1b\x9d\x63\xf9\xb1\x2d\x1c\xb1\x4b\xb9\ +\x79\x3d\x2b\xd2\xda\x64\x3a\x96\x56\xf9\x90\x2e\x6b\x82\x1a\x26\ +\x63\x05\x27\x44\xb3\x81\x7d\x58\x84\xe3\x32\x51\x50\x33\xa6\xae\ +\x31\x38\x4c\x98\xd5\x86\x43\xa8\xc5\xc8\x46\x1b\x45\x2a\xcd\x90\ +\x86\xfd\x05\x93\xbd\x50\xbb\xc0\x70\xff\x15\x9d\xfd\x18\x81\xbf\ +\xda\xb0\x44\x58\x28\x5b\x0c\x9b\xcc\x45\x50\x8e\x11\x31\x2e\x48\ +\xca\x53\x8f\x5c\xfa\x8d\x78\x03\xc9\xf2\xc7\x4a\x65\x0b\xaf\x4f\ +\xb5\x92\xfd\x41\xb9\xa8\x36\x48\x7d\x16\x38\x6d\x4a\x32\x2a\xf3\ +\x86\x1f\x50\x79\xf0\x23\x29\x7a\x58\x1a\x58\xa0\xb6\x95\x4e\xfd\ +\x9a\xf2\xef\xee\x2c\xe2\xf1\x5f\xbf\x1a\x3b\xd7\x1f\x8e\x2f\xf8\ +\x9d\xff\x49\x7c\xfe\xe7\x7c\x7e\xac\x34\x7f\x98\xed\x91\xda\x67\ +\x72\x6d\xb3\xcd\x26\x4c\xf8\x64\x47\x1f\x21\x13\x26\x4c\xf8\xe7\ +\xc7\xb4\xa0\x36\x61\xc2\x2b\x18\xaf\xe8\x83\xbf\x2b\xff\x71\x8c\ +\x2a\x86\x21\xfa\x2d\x1a\xee\x45\xb9\xc1\xe8\x85\x1a\xdd\x7a\x0c\ +\x44\x6c\xd1\x8a\x4d\x6a\xb0\x2e\x19\xaa\x01\x62\xce\x96\x2b\x3f\ +\xb9\xf3\xe1\x5f\x7d\x7f\xfc\xad\x3f\xf1\x27\xe3\xda\xff\xf5\xfd\ +\xf1\xb6\x37\xde\x1d\xef\x78\xec\x0d\x71\xf9\xd2\xa1\x9f\x1c\xcb\ +\xff\x23\x58\xc6\xd1\xc9\x32\x9e\x7f\x8e\x27\xd3\x4e\xfc\x14\x4d\ +\x3e\x99\x86\xfb\x9c\xb8\xb7\x73\x64\x30\x88\x28\x06\x93\x0d\x78\ +\xe4\xfe\xaf\x01\xec\x98\x78\x2f\x94\x8e\xd7\x3c\x4a\xd1\x8b\x27\ +\x94\x97\x22\xdb\x08\x3f\xd8\x02\x54\x0a\xa8\x20\x30\x2d\x52\x42\ +\xf2\x22\xa3\x91\x91\xcb\x40\x7d\x33\x3f\x9b\xdb\x98\x38\x23\xe0\ +\x29\x52\x7e\x13\xb8\x21\xee\x76\x1b\x01\xf6\x9c\xc8\xb6\xc8\x46\ +\x2e\x0d\xdb\x95\xb2\xb3\x3d\x9f\xf6\x96\x09\xcf\x61\xec\x7f\x93\ +\x3e\xf7\x63\xf3\x63\x9b\x91\xd1\x06\x56\x9c\x83\xed\x46\xc6\x22\ +\xdb\xc7\x29\x93\x6c\x71\xde\x6d\x02\x0b\x3b\x7e\xe5\x89\xda\xd9\ +\x32\x66\xa3\x22\x3c\xd1\xac\x74\x5e\xfc\x59\x6f\x64\xb6\x95\xcc\ +\x72\xbe\x0e\x49\x83\x1c\x3e\x24\xc3\xa4\x96\x89\xae\xba\x86\x88\ +\xec\x27\xfe\x3f\x35\xfa\x0b\x7d\x83\x3e\xb2\x37\x8f\x39\x37\x6c\ +\xbc\xa0\xc6\x7f\xa7\xe5\x62\xd8\x6c\x8f\xc5\xb0\x99\xfa\x91\x74\ +\xea\xc7\xbd\x88\xc6\xab\xec\xb8\xb9\x13\xf3\x5d\xf5\x61\x6e\x5c\ +\x2a\xde\xdb\xcb\xa7\xd2\x78\xdd\xe3\xe1\x85\xd8\xf5\xff\xaf\x89\ +\x9f\x2d\xfc\xa4\xe4\x19\x69\x68\x01\x1a\xc1\xe5\x55\x9d\xd5\xf7\ +\x59\x48\x0b\x9e\x2e\xe3\x3f\xd4\x14\xbc\xa0\xe6\xa7\xd4\x56\x7e\ +\xb2\x93\xd7\x39\xb2\x28\xed\x1b\x43\xa2\x75\xb0\xf8\x26\x8f\x5f\ +\x05\xc9\x8d\x1c\xd1\xbc\xfa\x91\xa7\xcf\xf2\xf5\x90\xab\x58\x6b\ +\x32\x4d\xda\xe0\xd5\x8f\xf6\xb5\x16\xad\x74\xc7\x6d\xcb\x2f\xb5\ +\x39\x16\xaa\x8d\xdc\x42\x42\xf5\x4b\xdf\x08\xe0\x66\x8f\xf4\xbe\ +\x19\x63\x3e\xe5\x3e\x36\x68\x3b\xb7\x03\x3a\x8e\x0f\xd2\x56\x9b\ +\xda\xbe\xfc\x01\x13\x72\x5a\x36\xf6\x81\xc4\x66\xda\x64\x11\xd2\ +\x0c\x85\x6d\xcd\x25\x4c\x52\x42\xdf\x32\x2a\x7e\xa4\xb7\x83\xe4\ +\xcb\xd5\xe0\xc6\xf9\x8d\xf4\x63\xb4\x2d\x9a\x2d\x8b\x4a\x67\xa2\ +\x8d\x46\x48\x0d\xf5\x3b\xaf\x2c\x0f\xe7\xc4\x83\xdf\x2d\x6c\xdb\ +\x8e\xab\x6b\x0c\x59\x93\xd3\x36\x6a\x97\x69\xbf\xb3\x81\x97\x85\ +\xf6\x5b\x76\x79\x8e\x89\x4c\xc1\xbe\x73\x6a\xdb\x67\x2b\x64\xac\ +\xb2\x8b\xe1\xd0\x21\x4e\x13\x11\x69\x30\x20\xf3\x49\xa1\xf7\x66\ +\xba\xdd\x98\x0d\xfa\x54\x78\xbf\x96\x92\xb4\x59\x1e\x05\xce\xc9\ +\x2a\x53\x3e\x0d\xb3\x17\x07\xb3\x0b\x71\xf9\x8e\x4b\x7e\x3a\x74\ +\x57\x1f\xf7\x01\xe1\x84\xfd\x7b\xb6\x88\x5f\x7c\xf2\xc9\xf8\xe1\ +\xa7\x4e\xe3\x73\xfe\x1f\xff\x71\xfc\x8b\xff\xde\x17\x46\xf8\x3f\ +\xd5\x0e\xfc\xc4\x9d\x77\x2c\x19\x81\x8a\x40\x96\x55\x40\x36\xa6\ +\x81\xcb\x90\xe4\x4d\x34\x18\xf9\x99\x30\xe1\x93\x13\xd5\x59\x2b\ +\xe2\x90\xe1\xc9\xb4\x19\x37\x52\x3f\xf0\x78\x7c\xd9\xd7\xfc\x17\ +\xf1\xf8\xc9\x0f\xc4\x63\x9f\xda\xff\x99\xc6\x82\x84\x8c\xf5\x65\ +\xa1\x80\xff\xe6\xe4\x18\xde\xe5\xed\x8f\x92\xe5\x38\x29\xcf\x60\ +\x1c\x52\x7e\x65\xaf\x8f\x3f\xbb\xcf\x73\xbc\x95\x79\xa6\x33\x64\ +\x6f\x5b\x05\x54\x7d\xdc\xf2\x23\x8b\x5d\x25\xec\x1b\xcc\xe9\x1f\ +\x1b\xd9\x5b\x24\x4a\x36\x79\x7e\x60\x63\xb3\x8c\x32\x49\xe6\xc1\ +\x97\x20\x9b\xdd\x5d\x4e\x6e\xb2\x90\xb3\x32\xc9\x4c\x85\x1e\x8b\ +\xb9\xf4\x8e\x0b\x2e\x94\xa2\xca\xdf\x72\x36\x25\xbf\x15\x6e\x52\ +\x8d\x04\x83\xbc\x08\xce\xb3\xd9\x62\x1b\x83\xf1\x98\x03\x98\x44\ +\x8d\xb8\xce\x53\x5b\xe7\x26\xc6\x2c\x10\x54\x9e\x36\xab\x04\xc3\ +\xf9\x97\xba\x29\x1d\x72\x5d\xa5\x2d\xcb\x1a\x66\xce\x56\x28\x70\ +\x2a\x44\x9c\x79\xa4\x9f\xd6\x3b\x2d\x0c\x74\x4a\x53\x6f\x5d\xf2\ +\xe4\x61\x1b\x48\x87\xcc\x8b\x40\x94\x7d\x83\x7d\xb0\xc9\x9f\x12\ +\xed\xf8\xa7\x11\xc8\x4b\xaa\x0d\xb6\x39\x3e\x3f\x53\x7f\x64\xd1\ +\x4b\xd5\xa3\xff\x69\xe7\x7b\x81\x0d\x5a\xd6\x3c\x2d\x39\xf7\x22\ +\x9b\xc6\x41\x0a\x2c\xa6\xf1\xa4\x1a\x0b\xbc\x33\x9e\x44\x93\x6c\ +\xa1\xf1\x15\x69\xdc\x7f\xa5\x23\x30\xd6\xe2\xc9\x34\xbf\x19\x00\ +\x7f\x1a\x77\x78\x61\x4d\x9f\xac\xbe\x5a\x94\x58\x25\xce\xd7\x38\ +\x6a\x8c\xa3\xe0\xa7\xd2\xbc\x10\xa6\x31\x10\x75\x27\xd6\xb1\x60\ +\x1e\x3b\xc6\x50\xd8\xb1\x4f\xa4\xf7\x3c\x84\xd8\xf2\x35\x43\x2b\ +\xa7\xb3\x0f\xf9\xe6\xe9\x34\x16\xe3\xf2\x49\x36\xf6\x81\xec\xec\ +\x2f\x9f\x5a\xcb\x3d\x86\x2f\x5a\xc7\xad\x48\xa1\x0a\x94\x11\x3e\ +\xdb\x29\x41\x4f\xd0\xa7\xcc\x86\xb9\x0b\x26\x84\xd6\xf9\x18\xc8\ +\xe3\x75\x47\xc7\x85\x28\xdb\x64\x04\xe7\x0c\xad\xcf\x7c\x52\x0d\ +\x38\xee\xd2\x2e\x3f\x9b\xe3\x29\x8d\xb0\xcd\x85\xb8\x3e\x1e\x2b\ +\x4f\xe0\x62\xd6\xbe\x86\xb6\x41\xe2\x7c\xed\x12\x5d\xaf\x5b\x40\ +\x2a\x6b\x49\x54\x66\x23\x72\x0b\x99\xa3\x70\x8b\x34\x0d\xb3\xad\ +\x27\x56\xa1\xb3\x7f\xcb\x98\xfd\x47\xc5\xd9\x47\x14\xfc\xdc\x6a\ +\x1d\x69\x9c\x87\xed\x2b\x8d\xf3\x60\x9f\xa2\x30\xa9\x28\xf7\x22\ +\xb4\xd3\x11\x50\xa3\x97\x03\xf7\xbd\x54\xd5\x66\x0c\xf9\x75\xfa\ +\x72\x56\x69\x7b\xeb\xec\x4c\xa1\xa0\x9c\x45\x16\xaf\x99\xab\xa2\ +\x7c\x6e\x74\x38\xaf\x7a\x4b\xf5\xf8\x61\x02\x14\x7d\x93\x7d\x03\ +\x8f\xfd\x4e\x3c\xf5\xa1\x93\x58\x5f\xbf\x37\xbe\xe0\x33\xfe\xc3\ +\xf8\x5d\x9f\xf7\x07\xe2\xe4\x78\x15\x73\xcd\x63\xf2\x29\xe5\xac\ +\x4f\xa2\xbd\x4d\x98\xf0\xc9\x87\xa9\x77\x4e\x98\xf0\xd2\x41\xd7\ +\x3a\x5f\xc6\x26\x4c\x98\xf0\x0a\xc4\x74\xf0\x8f\x40\x63\xdc\x6a\ +\x84\x31\x92\x13\x9d\x3f\x63\x5a\x56\xf1\xc7\x44\x1b\xdf\x0e\x5b\ +\x19\x94\xb1\x67\x16\x15\x83\x71\x01\x90\xad\xd7\x8a\x4f\xe3\xf9\ +\x8f\x3e\x13\x7f\xe3\x3f\xfb\x2f\xe2\x57\xbf\xf5\xdb\xe2\x53\xdf\ +\xfa\x9a\xf8\x94\x37\x3d\x1c\xaf\xba\xe3\xa2\x27\xcd\x3d\xe1\xe5\ +\x0f\xbf\xaf\xf2\x9a\xc7\xeb\xc7\xa3\xff\x4c\xcb\xc9\x61\xba\xcb\ +\x7c\xc6\x93\x3e\x4f\x3e\x34\xb1\xc1\xc4\x93\x4d\x26\xa4\x4c\xe2\ +\x15\x76\x16\x0a\xfe\xcf\x34\xc5\xca\xc7\xf6\x9e\x4c\x8a\x28\x5f\ +\x06\x77\x7c\xc4\x7b\x5a\x0a\x59\x62\x03\x9f\x55\x4f\x4f\x56\x49\ +\x5f\x8f\xed\xd8\xcc\xf6\xf6\x68\x5a\x96\xa9\x30\x51\x51\xb5\x49\ +\x37\x8d\xd5\x62\x9c\x06\xba\xe3\x16\xdc\x06\x23\xb7\xdb\x90\x82\ +\xea\xdc\x94\xfe\x96\xc6\x02\xf6\x8a\x5a\xed\xb4\x4d\x2b\xb8\x0d\ +\x92\x95\x3c\x35\xcd\x1b\x88\xb6\x1c\x54\x7c\x1e\xad\x1f\x12\x34\ +\xc4\xfb\x2b\x59\xb7\x4d\xdd\xd0\x28\x95\xe5\x66\x5b\x9f\xc2\xf0\ +\xff\xad\x31\x13\x86\x23\x8d\x83\x55\x0e\xd8\xf7\x2f\x4a\x2b\xa5\ +\x02\xfb\x0e\x5a\x31\xbb\x8e\xfd\xad\x3e\x41\xf6\xbe\x89\x08\x3f\ +\xe7\xb5\x43\x3c\x61\x96\xaf\x68\xe4\xd5\x8f\xc4\x3c\x55\x36\xdb\ +\x53\xcf\x20\x5e\xcc\x65\x57\x8b\x69\xdc\xf4\xe1\x46\x90\x69\xd9\ +\x71\x83\xc7\x0b\x6e\xb2\x3b\xd8\x8b\xd9\xe1\xa1\x5f\xfd\xb8\xe3\ +\x27\xdc\x58\x4c\x53\x3a\xa5\x95\xa1\x02\xfd\xa5\x0a\x48\x79\x4f\ +\xd7\x5e\x2c\xf3\x22\x19\x8b\xc8\x7e\x3a\x8d\x05\x31\x02\xaf\x6f\ +\x54\xac\xc0\x4d\x02\x2f\xaa\xf1\x64\x99\x17\xd4\x68\x8f\x95\xea\ +\x9f\x0b\x64\x7e\x1d\x24\x0b\x6a\x1c\x73\xb2\x23\x0d\x4f\xaa\x05\ +\xff\x9d\x76\x72\x92\xaf\x81\xe4\x95\x8f\xbd\xa0\x86\x0f\xc5\xfe\ +\x41\xbc\xbb\x74\x37\x9a\x36\x3e\xc8\x14\x77\x9f\x57\xcc\x02\x24\ +\x32\xb7\x25\x75\x20\xe6\x38\x1b\x78\x08\xc8\x96\x99\xad\x58\x9b\ +\x2d\x3e\x63\xfa\x9a\x6f\xb0\x3a\xaf\x94\xa5\x9e\x82\x88\xc0\x17\ +\x2c\x70\xd9\x2a\x6a\x21\x26\x83\xa0\x0c\x8c\x32\x28\xf1\x58\x73\ +\x3b\x9c\xf7\x30\xf8\xa0\x3f\x25\x35\xe8\x9b\xbf\x09\x18\x0c\x8e\ +\x6e\x61\x25\x79\xab\xad\x2d\xa6\x73\xa0\xd9\x87\xe3\xcf\x3e\xce\ +\xa3\x84\xa4\x71\x5a\x88\xba\x09\x0e\x59\x21\x55\x29\xe4\x26\xcb\ +\x60\x8a\xae\x9c\xfb\x26\x92\x04\x36\x2b\x88\x63\xf3\xa2\xb0\x31\ +\x4b\x5f\x94\x9d\x9b\x42\xdd\x75\x4c\xe3\xce\x05\xcd\x38\xf3\xcc\ +\x9b\xa4\x17\xf6\x0e\xe3\xf0\xc2\xc5\x98\xeb\xf8\xe0\xbc\xcc\x0d\ +\x56\x12\x9f\xae\x76\xe2\x74\x77\x2f\x7e\xee\xa3\xbf\x11\x3f\xfe\ +\x81\x88\x77\xfe\xc7\xff\x69\xfc\x8b\x7f\xf4\x0b\x63\x75\xe3\x28\ +\xe6\x3a\xa6\x9c\xb1\x0f\x70\xf9\x93\xbb\xf4\x8e\xff\xac\x1b\xea\ +\x01\xb6\xad\x18\x9c\xa7\xc1\xd8\xa6\x65\x8d\xf3\xe9\xce\xeb\x27\ +\x4c\xf8\x04\xa0\xbb\xdb\x06\xc5\x29\xf2\xb9\x58\x9f\xf5\xe9\x89\ +\x2e\x5b\x8b\xb8\xf6\xd4\xf5\xf8\x92\xaf\xfd\xcf\xe3\xd7\x1e\xff\ +\xae\x78\xc7\xa7\x3f\x1c\x97\xee\xba\xc3\x4f\xa6\xed\xec\xac\x3d\ +\xb4\xc9\x1f\x59\xe8\xf8\x62\x61\x4c\xe3\x20\x9c\x70\xb4\x42\x32\ +\x5e\xe2\xc0\x49\x79\x9e\x27\xf2\xfc\x50\x80\xe1\xfc\xcf\x07\xbb\ +\x52\xb2\xf5\x0f\x52\xca\xc4\x92\x3a\x3e\x92\x2d\x5b\xca\xcb\x49\ +\x00\xf9\xc8\x31\xb9\x19\x22\x3c\xee\x12\xe9\xac\x86\x98\x31\x1c\ +\x06\xd2\xa0\x04\x79\xa2\xb7\x8e\xe3\xbe\xd5\x4e\xd4\x51\xd1\x60\ +\xa4\xda\xc2\xad\x64\x03\x4a\xe9\x73\xa2\xe8\xb6\xbd\x39\x0d\x92\ +\xce\x21\xcb\xd5\x56\xcd\x41\xf5\xb9\x6f\x24\x34\xd9\x2c\xb1\x4f\ +\x65\x49\xe9\x93\x69\x58\x96\xb1\xdc\xe2\x8d\x0f\xf8\xb4\xad\x1b\ +\xff\xc0\x32\xd9\x0c\x31\x4b\x3f\xf2\x54\x63\x2a\x16\x78\x06\x3b\ +\x97\xa7\x72\x13\x8d\x3e\x7d\x12\x7a\x60\x85\x3e\xf7\x6d\x59\x56\ +\x60\x0b\x9f\x54\x7d\x55\x3c\xac\xb5\x17\x55\x4e\x8a\x9a\x8b\x63\ +\xb9\x28\x66\x5a\x42\xc6\x4a\x73\xc7\x1a\x1f\x69\xac\xe4\xd7\x3e\ +\x2a\x4d\x2f\x98\xf5\x2b\x1d\x91\xcf\x59\x90\xd3\x78\x29\x75\xe5\ +\x8b\xc5\x34\x5d\x1f\xf8\xe1\x52\x3e\xed\x46\x20\xbf\xec\x0b\x14\ +\xab\xcb\xc6\xe2\x16\x6d\xb0\xa6\x1d\xce\x96\x5e\x24\x73\x2b\x78\ +\x9e\xc1\x98\x87\xb6\x5b\x69\x88\xa4\xf1\x11\xed\xc3\xf8\x4b\x83\ +\x48\xda\x73\x05\x2d\xfd\x8a\x36\xc0\xde\x7a\x16\xd3\x78\x42\x8d\ +\xb6\xc2\x47\x3e\xa5\xc6\xf8\x4b\xa3\xab\x1c\x47\x41\x93\x0f\xf6\ +\x94\x43\x31\x60\x4b\xb9\xba\x3d\x69\x1f\x53\x3e\x3e\xb2\x7d\x91\ +\x5b\x6a\xe5\xc8\x2e\x15\x25\x57\xbb\x5a\x86\x1d\xfb\x29\xed\xd3\ +\x26\xe3\xa4\x89\x53\xdf\x0b\x9c\x3e\xc6\x2b\x9f\xc1\x86\xe0\x03\ +\x28\xf3\x73\x39\x4b\x07\x33\xd0\x1d\x03\xda\x44\xbc\x45\x54\x11\ +\x3a\xab\x69\x6c\xea\xda\xc0\xf2\x26\x83\x41\xd4\xbe\xcc\x8e\xcc\ +\x1a\x83\x5c\x46\x8e\xb4\xb9\x85\x59\xc9\x94\x33\x04\x36\x32\xf4\ +\x58\x83\x6e\xe0\xbd\x81\x83\x94\x39\x43\xe4\x29\xc2\x20\xfd\x57\ +\x0c\xcf\xfc\x21\xfd\x94\x3c\xd9\x34\xad\xb4\xb6\x2b\x19\x70\x3b\ +\x28\x54\x94\x02\x13\x6a\x64\xec\x65\xec\x92\x48\x46\x3a\xb0\x69\ +\x2b\xb6\x70\x49\x67\xff\x49\xf1\xd0\x97\xb4\x43\x70\xd3\xd8\x2c\ +\xa8\x15\x30\x53\x1f\x64\x2e\x73\xba\x9e\xc5\xb3\x1f\x7d\x3e\x9e\ +\x7b\xfc\x4a\x7c\xc1\x67\xff\xc7\xf1\x07\x7e\xef\xbf\xaa\xb9\x80\ +\xae\x05\x9a\x0f\x67\x61\x72\x9b\x3d\x62\xc2\x84\x4f\x4e\x4c\xbd\ +\x73\xc2\x84\x97\x0e\xb3\x3f\x25\x14\x3d\x61\xc2\x84\x09\xaf\x6c\ +\xbc\xc0\x08\x63\x3c\xb8\x86\x86\x6d\xd9\x0b\x24\xbb\x19\x2f\x64\ +\x6c\xdd\xd8\x40\xb4\x67\x12\xc4\x8a\x34\xf0\xf7\x9c\xa5\x33\xd6\ +\x8c\x86\xd7\xaf\xc4\x72\x27\xfe\xc6\x17\xff\xff\xe2\xd7\xde\xf5\ +\x4d\xf1\xf6\x37\xdc\x17\x9f\xf6\xf6\xc7\xe2\xde\x3b\x2e\x7b\xa1\ +\x8b\x89\xc1\xe9\xe9\x2a\x4e\x96\x27\xf1\xfc\xb5\xa3\xb8\x7e\x7d\ +\x15\xeb\xd5\x89\xd2\xad\x3c\x21\xcc\xfb\x3c\x9a\x4c\xd4\xbc\xc4\ +\xbe\x3d\x91\x86\x67\x92\x54\x37\x56\x64\xc0\xaf\x60\x61\xfc\x5f\ +\x55\x9a\x3c\xcc\xfc\xa6\x3d\x26\xde\x9a\xec\x63\x94\xea\xf2\x01\ +\x83\x93\xf4\xd5\x37\x75\x6c\x93\x62\x03\x39\x37\x9b\x30\x77\x2c\ +\xde\x13\x79\x85\x9c\xd0\xe3\x3b\x13\xe4\x0d\xa6\x4a\x58\x70\xf3\ +\x18\xcc\x78\x92\xc2\x37\xe4\x38\x00\xb7\x5d\x33\xb8\x19\x2b\x4d\ +\x60\x90\xdc\x80\x31\x3f\xb6\x47\xde\xe1\xb6\xb8\x59\xe9\x24\x23\ +\x71\xd6\xa8\x1d\x95\xa2\xf5\x23\xd1\x2d\x31\xd8\x89\x28\xdb\xac\ +\x85\xda\x6a\x90\xb1\xa9\x78\x2c\x53\x70\x54\x6d\xcb\x7e\xf1\x0d\ +\x04\x16\xc0\x08\x4d\xd3\xe6\x04\xff\x3f\x5e\xd1\x2c\x6e\xb1\x6e\ +\xc5\x62\xea\x5c\xfb\x47\x3c\x61\xc6\x02\x2b\xba\x85\x78\x3f\x55\ +\xa6\xbe\xc1\x13\x69\xb5\x98\xc6\xff\x78\xf0\x34\x1a\x4f\xa8\x79\ +\xa1\xac\x9e\x3a\xe3\x66\x8e\xfb\x14\xb1\xfb\x82\x62\x6e\xea\x48\ +\x97\x9d\x2c\x65\xe8\xed\x73\x77\xee\x27\xdb\x08\xbb\xf2\xe9\x27\ +\xda\x94\x87\x08\xdb\xaa\x14\xaa\x24\xd3\xd9\x8c\x3d\x5f\xa6\x0d\ +\xb8\x21\xa3\x49\xb1\x0e\x08\x05\xc9\xf9\x8f\x33\xd1\x2c\x7e\xf9\ +\x66\xa6\xd8\xbe\x49\x40\x5a\x68\x7b\xa0\x51\x99\x4c\x8b\xf1\x2f\ +\x5a\xb1\xe1\x58\xc4\x2f\x3a\x27\x22\x3d\x0c\x69\x2c\x14\x21\x2f\ +\xf4\x77\xda\x98\xf6\x83\x76\x3b\x4a\xd5\xed\xc6\xd3\x0c\x43\x3b\ +\xca\x4e\xc1\xfd\x9e\xba\x3b\xad\xf4\x0e\xd2\x13\xcb\x84\x7d\xc0\ +\xfe\xc5\x2d\x36\x0e\x56\x28\xd7\xc1\xc6\x05\xd9\x1c\x6b\x6c\x46\ +\xb6\x3e\x46\x89\xc5\x1a\xb6\xc9\x50\xaa\xa4\x5b\xd7\x8c\x83\x05\ +\xa6\x5d\xe3\xb1\xaa\x02\xe8\xb8\xb1\xe1\xc9\x17\x4e\xa9\x75\x50\ +\xf2\xc1\x4f\xbb\x05\xe7\xd3\x5a\x9f\xe4\x2d\x20\x8d\x0b\x72\x33\ +\x2a\x97\x4a\x5b\xf9\xb0\x51\xb0\xec\x26\xa7\x65\xa9\x76\xb2\x2d\ +\x6d\xa4\xe0\x1f\x0a\x38\xa6\x4d\x93\xc6\xb4\x65\x4e\xa5\x04\xec\ +\xaf\x44\x0b\x15\x61\x00\xc8\xd3\xfe\x10\xa6\xe8\x85\xb0\x31\x69\ +\x47\xfa\x52\x28\xa1\xf3\xcc\x62\xa4\xde\x7e\x89\x65\xc3\x8d\x22\ +\xfe\x38\x9f\x0e\x31\x9b\xe9\xb8\xa3\x3f\x55\x9a\x7c\xaa\xe1\x34\ +\x5e\x75\xe1\x72\xec\x2f\x8e\xe2\x07\x7e\xf0\xc7\xe3\xfa\xe5\xbb\ +\xe3\xcd\x9f\xf2\xa6\x58\xdd\xb8\xe1\x27\x3e\x9d\x0f\xc6\xde\x3f\ +\x49\xe3\xbf\xb2\x1f\x11\x05\x1b\x55\xdc\xa1\x7d\xb4\x0e\x8c\xe9\ +\x31\x5a\x7e\x3b\x7d\xfb\x9a\x30\xe1\x25\xc0\xf9\xae\xe4\x5e\x5e\ +\x7d\x0c\x9d\xc7\x55\x3a\x4e\x9e\x7b\xe6\x38\xfe\xbb\xbf\xf2\xc5\ +\xf1\x2b\xcf\x7c\x7b\xbc\xfd\x53\x1f\x8a\xbb\xef\xbc\x4b\xd7\x31\ +\x4e\xda\xa7\x52\xeb\xd8\x67\xf1\x80\x9b\xa9\xa4\xe3\x7c\xae\xb4\ +\xba\x5a\xe5\x39\x5c\x27\x11\xf3\x56\xe6\x09\x25\x8f\x57\xf2\x61\ +\x9b\x0c\xa4\x4f\xcb\x7c\x5a\x2c\x01\xc9\x10\x90\x4f\xfe\xd8\x09\ +\x36\x6d\x3a\x70\xa0\x26\x9d\x27\x1e\xfb\x49\x67\x95\x0e\x29\x8b\ +\x2e\xc5\xe3\x77\x97\xc5\x75\xd2\xd8\x2c\x63\x16\x03\xcd\x94\x5d\ +\x26\x4b\x5d\xc9\x07\x59\x46\x5b\x61\x0c\xa7\xe9\xb8\x0c\x86\xf2\ +\xa7\x45\x5f\x86\x06\x94\x99\x82\xca\xe1\x4f\xf2\x6c\x36\x3a\x7d\ +\xe0\xad\xa0\xae\xe2\xe5\xc8\xba\x92\x77\xa0\x7e\xac\x33\x76\x3e\ +\xbe\x8e\x5a\xd7\x3e\xb2\xbe\x1e\x6f\x58\x96\x72\xdb\x2b\x31\xb2\ +\x6e\xbf\x6c\x8f\x3c\xe7\xa3\xf7\x5e\x15\xa1\xcb\x78\xe9\xdb\x47\ +\x0a\x6c\x97\x8c\x65\x04\x97\xa7\xe4\xf4\x07\xf6\x07\x0a\x16\xc3\ +\xd8\x77\xc8\x73\x1f\x29\x90\x3f\xfe\x6d\x0f\xaf\x1c\x15\x2f\x90\ +\xab\x8f\xf9\x35\x8f\x92\xe5\x62\x18\x7d\xad\x69\x8d\x8f\xd0\xe3\ +\x0f\x99\xe8\x7c\x3a\x0d\x9a\xc5\x33\xf1\x1a\x4f\xf5\x42\x9c\x7d\ +\xb5\xde\x65\x50\x3e\x65\xe7\xf1\x46\x97\xcd\xf5\xe8\xa0\x72\x53\ +\xff\x3a\x56\x3c\x06\x52\xec\xeb\x45\x8a\x84\xd1\x98\xab\xc6\x44\ +\xc4\x50\xc3\xa2\x0b\x90\x80\xeb\x6a\xba\x83\x91\x2c\x13\xe9\x03\ +\x91\x32\xfb\xe7\x43\x6c\x3d\xed\x94\xfb\xa3\xdb\x3a\xdb\x29\xf5\ +\xf0\x2a\xb6\x79\xd7\x8b\x98\xfa\x8e\xec\x6c\xdb\x32\xf8\x41\x0e\ +\xbf\x91\xdb\x0f\x34\x43\x4b\xd9\xcc\xd4\xa9\xd8\x2f\xde\x37\x1e\ +\x6e\xd2\x6e\x65\xa3\x18\x7b\x91\x25\xeb\x3c\x36\x32\x62\x02\xd5\ +\x33\x9d\x64\x06\x09\x86\x26\xf0\x06\x59\xd1\x0a\xa9\x4d\xa4\x88\ +\xcf\xa0\xae\x4d\x41\xf4\x39\x76\x8b\x1f\x50\xc2\x5b\xea\xb6\xd0\ +\x79\xb1\x43\xb4\x5b\x54\xb0\xdc\x07\xa5\x11\x91\x74\xc2\x3f\xe0\ +\x71\x8c\x2a\x75\x56\x9a\x4f\x19\x0c\x5b\x6a\x85\xad\x65\x0a\xb4\ +\x65\xb7\xc3\x38\xa4\x91\x22\x29\xf3\x89\x32\x05\xc5\xd6\x41\xe6\ +\xc6\xbc\xd5\x23\x7e\xb3\xdd\xe4\x09\x32\x8d\xea\x81\x4f\x0b\x52\ +\x3f\xda\x13\x46\x76\x5b\x49\xd5\x8f\x77\x66\xeb\x98\x7b\x1e\x73\ +\x23\x7e\xe1\x17\x7f\x3a\x76\x56\x97\xe2\x0d\xaf\x7f\x4b\x9c\x1c\ +\xad\x3d\x3f\x19\xfb\x1f\xfb\x98\x30\xe1\x93\x09\x53\xcf\x9c\x30\ +\xe1\xa5\xc3\xb4\xa0\x36\x61\xc2\x84\x09\x3d\x76\xee\x51\xf0\x78\ +\xa4\x01\xad\xd0\x22\x0f\xd4\x37\xa3\xe5\x8f\x0f\x63\xbf\xb7\xc3\ +\x60\x43\xa6\xca\xc8\x79\x31\xbc\xcf\x29\xe6\x30\x51\x60\x82\xba\ +\x5e\xc6\xce\x62\x2f\xbe\xe1\x4b\xff\x7c\xfc\xdc\xd7\xff\x2f\xf1\ +\xb6\x47\xef\x8d\x77\xbc\xf5\x75\x71\xdf\x9d\x57\x34\x91\x3b\xf3\ +\xab\xe9\x78\x65\xca\xf1\x72\x19\xcf\x5f\x3b\x8e\xeb\xd7\x4e\x62\ +\x49\x1a\xc9\x7a\xb2\xc7\x87\x1b\x2c\x9e\x54\x20\xcb\x8d\x73\xe4\ +\xcb\x64\x9a\x59\x22\x93\x4b\xcd\x26\x73\x12\xbe\xd0\x04\x9c\x45\ +\x93\x05\x93\x71\x59\xd6\x24\x52\xdf\x9c\xe8\xd8\x79\x45\x15\xca\ +\x8d\x27\x4b\xa6\x1d\x10\x48\x27\xe7\x2e\x87\x84\x2e\x13\xfe\x48\ +\x8c\xef\xc1\x56\x76\x8d\x6e\x16\x6f\x88\x55\x57\xd1\xdd\x5c\xcc\ +\xe1\x49\xb7\x8d\x54\xe6\xa4\x35\x0d\xb0\xcf\x49\x1a\x04\x18\x25\ +\x3a\x97\x9f\x81\xac\xe4\x2e\x53\x92\x43\xf9\xa8\x03\x9f\x06\x94\ +\x25\xad\x6f\xe2\x05\x91\xa9\x5e\x34\xce\x9b\x76\x16\x63\x37\x12\ +\xf0\xe9\xc9\x2d\xfb\x68\x63\x63\x61\x45\x6c\x88\xb5\x3f\xdc\x2e\ +\x92\xb3\x3f\x2a\x8e\x99\xe2\x0a\xf4\x01\xfa\x82\x17\x41\xe1\x1d\ +\xc4\xcf\xc5\x8f\x03\xfd\x45\x93\xcc\x39\x7d\x65\x9f\xa7\xd0\x16\ +\xe6\xbd\x78\x86\x8c\x98\x45\x33\x16\x66\xdd\xbf\xa4\x23\x70\xa3\ +\x47\xbc\x18\xe7\xed\x1b\x3f\x83\x7e\xae\xb4\x8b\x08\x5e\xff\xc8\ +\xa2\x9c\x7c\xc8\x28\xce\xc8\x3f\x2b\xe2\xfa\x42\xe6\xbe\xd3\x86\ +\x05\x31\x26\xc3\x2c\xa0\x79\x41\x8d\x85\xb4\xb5\xe3\x5d\x16\xd7\ +\xe8\x40\xee\x38\xd8\x25\xe9\xe4\x22\x4c\x2b\xb4\xce\x0b\x68\x80\ +\x88\x05\x36\xeb\xb5\xb1\x2d\x06\x99\xd6\x65\x71\x3f\xce\x1b\x98\ +\x7e\xfd\xde\xb0\x30\xa9\xba\x48\xe8\xe3\x85\xf2\x8e\x03\xc7\x83\ +\x74\x7c\x32\x7d\x06\x9b\x72\x20\x2a\x36\x63\x1a\x61\x06\xdb\x13\ +\x37\x5f\xb1\xed\x9d\x1e\xc2\x56\x89\x52\x6f\x04\x63\xb4\x6d\x7e\ +\xf8\xb6\xcc\x18\x45\x45\x1a\x3e\xee\x14\x5a\xd6\x7a\x82\x5b\xc6\ +\xba\xd4\xd2\x54\x74\x33\x97\x15\xde\xba\x91\xad\xb0\x45\x37\x71\ +\x13\x38\xa6\x9b\xda\x06\x79\x74\x13\x18\x75\x62\x68\xbf\xe8\xbc\ +\xcb\xc6\x36\x66\xb4\xaf\x4a\xc2\xb6\x7d\x38\xb6\xd8\x9c\x19\x97\ +\xbe\x0a\x9f\xba\x82\x0b\x55\xf2\xad\x02\xb2\x51\xaa\x8c\x14\x43\ +\x9b\x18\x64\x69\x67\x91\x69\xba\x40\x89\x0c\xe8\xaa\x8a\x19\x97\ +\xc2\xc6\x54\x38\x79\x2a\xc6\x93\x18\xdc\xda\xe2\xa9\x5f\x3f\x01\ +\x2a\xe0\x8b\x43\x8b\x7a\x5f\xb9\x78\x59\xc6\xcf\xc7\x8f\x7c\xf7\ +\x4f\xc6\xe2\xfe\x07\xe2\x91\xb7\xbe\x21\x56\x47\xd7\x65\xbb\xe7\ +\x0c\x7c\x23\x1c\x5f\x60\xe3\x3e\x37\xe3\xb0\x55\xbf\xc2\x98\x06\ +\xe7\x79\xd0\xe9\xc1\x79\xfd\x28\x6b\xe3\x56\xe9\x27\x4c\xf8\xe7\ +\x46\x76\x34\x3e\x1e\x1b\xa8\xcf\x9f\xed\xac\x63\xe7\xc6\x5e\x7c\ +\xd9\xd7\xfd\xd7\xf1\x93\xef\xff\xbb\xf1\x59\xef\x7c\x28\xee\xb8\ +\x72\x77\x2c\x58\x9c\x9e\xeb\x3a\x80\x1d\x0f\x35\xaf\x4e\x75\xe9\ +\xca\x85\x8d\xf4\xa1\x2d\xe7\x6f\x8e\x65\x68\xf7\x59\x9d\xeb\x2d\ +\x67\x83\x2c\x3b\xb2\x9f\x68\x13\xc9\x13\xc4\xc4\x39\xe6\x69\x1b\ +\xc8\x2c\x13\xb0\x5e\x9b\x5e\x98\xb2\x8c\xeb\x8a\xec\xf1\xee\xf3\ +\x03\x41\x3c\x69\x72\x2c\x25\x9d\x36\xb6\x91\xce\x97\x0b\xd3\x5c\ +\x4f\x71\x52\xbe\x48\x48\xc4\xa7\x68\xcb\x05\x99\x6f\x62\xd2\x9b\ +\x13\x9c\x6e\x13\x78\xa5\xdd\x58\xd4\x3e\xfb\xc4\x30\xc8\x0d\xca\ +\xd6\xf6\xe4\x09\x91\xbc\x81\xa0\x19\x48\xeb\x47\x32\x50\xf2\x41\ +\xf5\x82\x21\xf3\x70\xe0\xa3\x98\x05\x11\x88\x94\xe5\x7e\xd0\x37\ +\xdb\xaf\xe8\x6e\xd3\xa1\x6d\xb5\xf1\x22\x82\x04\xfe\x78\xff\xd1\ +\xf6\xe5\x47\x69\xd5\x15\x14\x8f\xf7\x47\xee\x8b\x5e\xa4\x41\x96\ +\xfb\xa6\xc2\x20\x2b\xb9\x42\x2e\x70\x29\xa6\x0c\xf8\x52\xf0\xd3\ +\x67\x8c\x7f\xd0\x69\x2c\xc4\xf9\xdb\x8b\x6a\x1a\x1f\x79\x31\xcd\ +\xfb\x99\x05\xb5\xe6\x73\x61\x2c\xd3\xef\xc4\x9c\x1f\x21\x59\x9f\ +\x69\xd2\x0f\xb4\xf4\x1e\x63\xa5\x1d\x63\xb1\x4e\xa3\xad\x2b\xd5\ +\xe5\x52\x11\x05\xf6\x13\x15\xd3\xd7\xbb\x56\x7c\xc5\xb9\xab\x39\ +\x82\xf8\x41\x52\x22\xf7\x3e\x90\x64\xc3\x6c\x48\x5f\x7c\x19\x4a\ +\x65\x3b\x78\xbc\x85\x00\x07\x1a\x5f\x0d\xd7\x1f\x78\x22\x85\x3c\ +\x6e\x68\x27\x85\x8a\x69\x0f\xd3\xd6\xd7\xf8\x49\xfc\xc6\x8e\xb4\ +\xd4\x8b\xb8\x64\x2d\xef\xb4\x96\x41\xe3\xa3\xf2\x22\x78\xe1\x0c\ +\x5a\xfe\x9c\xa6\xd2\x39\x6c\x68\xd2\x53\xc6\xf4\x5b\xc2\x2c\xb6\ +\xf7\x65\x23\xa5\xb7\x46\xeb\x88\xa9\x7a\xb9\x10\x60\x14\x15\x3f\ +\x88\x6f\x27\x1b\xe1\x1c\x3b\xa0\x93\x5a\x9f\xbb\x61\xcb\xb6\xe9\ +\x41\xe6\x3a\x99\xa8\x88\x18\x19\xed\x8c\x20\xd5\x1e\x0a\x11\xe0\ +\x4d\xb7\x3e\xd3\x79\x7e\x61\x79\xee\x47\x02\x82\x8a\xb2\xde\xd5\ +\xa8\xda\x5a\xdf\x73\x16\x78\x36\x29\x2f\x66\xd8\x82\xf2\x57\xc0\ +\x4d\x42\xfb\xa4\x29\x7c\xa9\xc2\x1e\x3f\x29\x2f\xce\x5d\xa6\x15\ +\xd2\x1c\x22\xf3\x4b\x6e\xc3\xf3\xa3\x4e\xe6\x0a\xfc\x8d\xc2\xfe\ +\xfe\x42\xf3\x98\xa3\xf8\x99\x5f\xfc\xe9\x58\x1f\x5f\x8e\xb7\xbc\ +\xf1\x2d\xb1\x3c\x5e\xe5\x18\xdf\x5e\xf1\x5d\x4e\x26\x4c\xf8\x24\ +\xc3\xd4\x33\x27\x4c\x78\xe9\x30\x2d\xa8\x4d\x98\x30\x61\x02\xb8\ +\xd5\xe8\x82\x71\x74\x46\x9e\xf7\xf5\x00\x7b\xb0\xed\xf8\xc5\xc0\ +\x4e\x92\xfc\xd8\x28\xe3\x73\xfe\x2d\x75\x39\x76\xfc\x94\xd9\xee\ +\x62\x2f\xbe\xf9\x2b\xff\x52\xfc\xf0\x57\x7d\x55\x3c\x72\xef\x6e\ +\x7c\xea\x5b\x1e\x8b\xfb\xef\xba\x4b\x93\xe6\x7c\x3d\x0a\xaf\x4a\ +\x59\xae\x57\x71\xed\xda\x49\x5c\xbf\xce\x7f\xa6\xf1\x0a\x96\xfc\ +\x35\x35\xce\x3c\x01\x54\xe0\x05\x38\x39\x01\xac\x89\x0e\x99\x51\ +\x56\x31\x98\xf8\x97\xd7\x5e\x30\x51\x60\x01\xc4\x4f\xd4\x28\x38\ +\xbd\xcd\xb2\x6d\xd8\x98\xcf\x74\xc0\x62\x66\x32\x25\x4f\xb3\x4a\ +\x44\xde\x0a\x3d\x01\xf5\x24\x6a\x64\xab\x6d\x7d\x0a\x2a\x93\x17\ +\x2c\x28\x9b\x82\xff\xc7\x81\xc5\x10\xcb\x53\x9c\x5b\xa5\x20\xb2\ +\xa0\x26\xfc\x25\xde\xa0\xfc\x4a\xe9\x09\x60\xc9\x32\x92\xb1\x84\ +\xb7\x48\x52\xd1\x46\x7a\x93\xde\x75\x6c\xdf\xc9\x67\x06\x96\x08\ +\xdc\x90\x78\x31\x70\xe2\x0a\x2f\x1e\x6d\x7d\x53\x4a\x33\xda\x0c\ +\x0a\xe8\xe4\x5d\x34\xca\xc8\xfe\xa0\xfc\xf0\xd6\x89\xae\x7d\xd4\ +\xb4\x6d\x7c\xd7\x28\xf7\x9b\xf5\xee\x1b\xdd\x47\x76\xd5\x37\x14\ +\x58\x20\x1b\x16\xd5\xa0\x59\x04\x9b\xe5\x2f\x38\xe1\xeb\xbf\xd2\ +\x72\x81\x4c\x69\x91\x7b\xd1\x2c\x63\x64\x7e\x2a\x4d\xfe\x9d\x1e\ +\x9b\x5d\x7c\xcd\x6b\x31\x6e\x1e\xc1\xa2\x1a\xaf\x28\x92\x4e\xc6\ +\x4e\x37\x94\x9b\x2a\xd6\xfe\x77\x9b\xb3\x60\xc6\x42\x1a\xaf\xb4\ +\x5c\xad\xfd\xb4\xda\x4e\x3f\xb1\xe6\xce\x23\x1d\xb1\x78\x44\x9e\ +\x70\x8b\x27\xb8\x3b\xe0\x47\x0a\xf7\x25\x3c\x5a\xa7\xe3\x06\x9e\ +\x1b\x3f\xa4\x25\x1f\x6d\xb3\xe7\x50\x8c\x6a\x2f\xa2\x6a\xa7\xbc\ +\x89\xa0\xb2\xba\x9c\x36\x72\x70\x3b\x0e\xf2\x51\x90\x5c\x4a\x05\ +\x58\xf4\xca\x97\x18\x01\xc7\x8a\xa2\x0e\x4e\x22\xd2\x72\x30\xe8\ +\x2c\x35\x9a\xf4\x7e\xde\x18\x58\xd6\xf4\xad\x34\x0d\x6a\x76\x5e\ +\x36\x86\xcb\xe0\xea\xd3\x0a\xe9\x27\x81\xc2\x5f\x3b\xc9\x57\x63\ +\x49\x9f\x91\xea\xc4\xa6\xf4\x23\x34\x7f\x5e\x3e\x48\xea\x38\x1d\ +\x30\x62\xc6\x69\x7c\x08\x9a\xaa\x6d\xd9\xb1\xdb\xba\x0c\xa9\x29\ +\xc0\x5b\x96\xf5\x48\xaa\xca\x8b\x4c\x09\x39\x67\xe1\x66\x48\x9f\ +\xca\x64\xca\xbf\x7d\x94\x7e\x2b\x0c\x64\x31\x42\x52\x99\x4f\x91\ +\x15\xa5\x65\x35\xd9\x80\xce\x6e\x10\x0d\xf9\x27\xa8\x23\xcb\x69\ +\xfe\xbf\x9a\xd5\x69\xec\xf9\xb8\xd9\x0d\x1d\x89\x36\xe5\xb0\x41\ +\x7f\xf7\xfe\xc5\x88\xd5\xb3\xf1\xc3\xdf\xfb\xee\x38\xb8\xfb\xc1\ +\x78\xe4\xad\xaf\xf3\x6b\x51\x59\xe4\x76\x3b\xd9\x6d\xfa\x1e\xea\ +\x52\xf5\xbb\x89\x6e\x0c\xe9\xfe\x39\xd1\x3e\x5e\x0a\x5f\x13\x26\ +\x80\xe1\xa0\x37\xe3\x2d\x9c\x6f\xda\x2a\x5e\x9d\xad\x74\x8c\xec\ +\xc7\x9f\xfb\xcb\xff\x7d\xfc\xf0\x7b\xfe\x56\x7c\xfa\x67\xbd\x26\ +\xae\xdc\x79\x6f\x2c\xe6\x0b\x9d\xc7\xd7\xb2\x91\xd5\x4a\xe7\x61\ +\x8d\xaf\x58\xbc\xf0\x02\x9a\x3e\x6c\x39\x5f\xfb\xb4\x8c\x2f\xb1\ +\x3e\x67\x23\xc7\xb1\x90\x36\x9c\x3b\x3a\x5f\x6b\x31\xac\xf3\xb6\ +\xd2\x9b\xcc\x04\xf6\xc1\xc7\x7a\x96\xc6\x4b\x26\x42\x57\x43\x9f\ +\x83\x7c\x79\x80\x77\xa8\xf4\xc8\x89\x5b\xde\x69\x2c\x17\x53\xb0\ +\x6f\xb5\x81\x65\x25\x6e\x92\x6b\x5b\xff\x58\x0a\x81\xd5\x23\x3a\ +\x03\x46\x49\xfb\x1c\x0b\xd1\x06\x85\x81\x2c\x7d\xfa\x47\x0a\x91\ +\xed\xa0\x6c\x36\xca\x3e\x79\xe8\x6b\xb9\xb9\x21\x85\xb1\x91\xbf\ +\x40\xd0\xc6\xee\xb4\x31\xed\x4f\xcb\x32\x6e\x9e\x98\x8d\xdb\xa9\ +\x83\x75\x99\x8a\xb8\xdb\x15\x05\x43\x20\x8c\xdc\x9e\x7c\xbc\x4f\ +\x19\x9f\xec\xd4\x93\x6b\xda\x83\xd8\x3b\x6d\xf9\xa5\xfd\xdd\x9e\ +\xb9\xdf\x52\x96\x3e\xf2\x69\xb4\x4d\x3e\x96\x5b\xc7\xdb\xb2\x89\ +\xe5\x49\x89\xf3\x49\xb4\xe4\xbd\x20\x66\x3e\x17\xcf\xfc\xea\x46\ +\x62\x74\xf8\x31\xbf\xa3\xbe\xac\x33\x3e\x79\x72\x3e\x27\x2f\xe4\ +\x2e\x83\x82\x68\x8f\xdb\x88\xcb\xa7\xc7\x5f\xf4\x2d\xca\xaa\x8f\ +\x2b\xe0\x78\xfb\x8a\xce\x98\xc8\xbb\xcf\x3f\x30\x82\xce\x7d\x59\ +\x51\x8e\xa3\x64\xd0\x3c\x49\x93\xd6\x86\xef\xe0\x0a\x4f\x44\x08\ +\x4d\x19\x50\xce\x9a\x5c\x77\x34\x5e\xa3\x08\x15\xb2\x6d\x24\x57\ +\x19\xd9\x17\x59\x9f\x94\x51\x6e\xeb\x95\x6e\xb0\xa3\xec\xd0\xe8\ +\xca\x46\x51\xea\x5d\xff\x92\xe3\x1f\x9f\xe6\x37\xb1\x6d\xed\x27\ +\xf5\xc9\x2b\x56\xe9\x3a\xa6\x6d\x39\x87\x48\x6d\x10\x5b\x6e\x0e\ +\xfd\x86\x76\xc3\x15\xdf\x61\xcc\x1b\x22\xdc\x06\x0e\x7c\x12\x43\ +\x7e\x30\x2d\x1c\x04\x1b\x72\x24\x12\x41\x7e\xf8\xd8\xde\x87\x0d\ +\x1f\xc7\x45\xb5\xb6\xe3\xd6\xa4\x44\x81\x48\xfb\x89\xfa\x6e\xa4\ +\xc8\xb5\xcd\xc8\x3c\x63\x3c\xf6\x41\x8f\xbd\x9c\x73\xeb\xcb\x16\ +\x85\xf7\x8d\x1d\xa5\x0c\xfb\x6e\xf3\x96\x15\x89\x07\x37\x6c\xe6\ +\x4d\xa8\xb4\xb5\x75\x9b\x5b\x2c\x4b\xef\x08\x52\x6c\xdb\xd0\x16\ +\xea\x2d\xc9\x97\xed\xa0\x33\x9a\x26\xef\xa4\x33\x3b\x7c\x96\x8c\ +\xe6\xd4\x31\xcf\x0f\x05\x63\xbe\x8e\xf7\xfc\xca\xcf\xc4\xee\xea\ +\x72\x3c\xf6\x86\x37\xd7\x93\x6a\xae\xf9\xc8\xeb\x86\x9a\x30\xe1\ +\x93\x01\x53\x8f\x9c\x30\xe1\xa5\x83\x2f\x37\x13\x26\x4c\x98\xf0\ +\x8a\x46\x8f\x2c\x6e\x37\xc2\xa8\x19\xc5\x66\x62\x71\x0e\x2f\x76\ +\x64\x82\xdd\xd8\xf6\xa6\x74\x8c\xd2\x8b\xcc\x11\xbc\x49\xf2\x1d\ +\x26\x3c\x1a\xd0\x9f\x9e\x1c\xc5\x6c\xb1\x1f\xdf\xf1\xd7\xbe\x21\ +\xbe\xef\xcf\xfe\xf9\x78\xe4\xce\xb3\xf8\x94\xb7\xbc\x29\x1e\x78\ +\xd5\x15\xd6\x17\xfc\x0a\x3b\xfe\x1c\x7c\xa5\x70\xed\xda\xb1\xc2\ +\x51\x2c\x8f\x4f\x94\x78\xa5\x93\xbe\x06\xf9\x9e\xc0\xc8\xb7\xb3\ +\x58\xdb\x6d\x49\x12\xce\x2a\x79\x4f\x10\xf9\x85\x26\x93\x4e\xcd\ +\x2e\x79\x4f\x3c\x8b\x24\x4c\x2c\xd2\x8a\x0b\x89\xb6\x94\x57\x57\ +\x14\xff\x3a\xb4\xd2\xb2\xf5\x2f\xfa\xa0\x3c\x69\x29\xd7\x02\xba\ +\x9e\xc0\x3a\x3d\x76\x66\xc4\x79\x26\xd4\x3e\x32\x8d\xd7\x3d\x78\ +\xbd\xd2\x8a\xc0\x62\xa1\x26\xf1\xac\x81\x10\x11\xa3\x97\x9d\x37\ +\xcd\x0c\xc2\x6d\xd8\x2f\x13\x4c\x4d\x88\xac\xbe\x69\x42\xb5\x49\ +\xb6\x95\x1c\xbb\xaa\xc7\x39\x73\xa1\x05\x4a\x61\x92\xcd\x79\xa3\ +\xf6\x26\xb9\xea\xde\x93\xb5\x9b\xec\xce\x27\xc3\xce\xa1\xf8\x22\ +\xb6\xcd\xb2\xbd\x52\xda\x41\xdb\x21\x0f\x68\x6f\x53\xa3\x4d\x59\ +\x58\x51\x4d\x3e\x04\xa7\xf3\xfe\xc8\xe0\xc5\x20\xc5\xf9\xeb\x65\ +\x05\xf5\x05\x2f\x7a\x79\xc1\x4c\x74\x2f\x9e\xf1\xe4\xda\x40\x73\ +\x03\x7f\xe6\x27\x19\xad\x67\xdf\x2a\x70\x97\xc2\x37\x21\xf1\xed\ +\xbc\x25\x13\x29\x42\x2d\x94\x41\x99\x5a\x37\x04\x19\x64\xc4\xc6\ +\xbb\xde\x96\xc8\x87\x7d\x24\xc2\x12\x6d\x08\x03\xe8\x3c\x82\x17\ +\x63\x4d\x90\x0a\xa8\x3e\x88\xbc\x5f\x93\xdf\x4c\x81\x15\x2b\x2f\ +\x95\x5a\x11\x79\x67\xdd\x53\x9c\x75\xe1\xc6\x95\x6f\x9c\x55\xdb\ +\xb8\x4e\xd4\xb3\x8e\x13\xee\xf4\xec\xf8\xd8\x51\x3a\xda\x05\x1b\ +\xa7\x21\x8f\xf4\x9f\x51\xf3\x19\x11\xdc\xcd\x64\xef\xf2\x40\x57\ +\x5c\x35\x28\x99\xa2\x52\xdb\x05\xa0\xe9\x06\x06\x58\xeb\x4f\xca\ +\x29\xc3\x46\x3f\xa6\x52\x7b\x33\x86\x3c\x5f\x08\x4a\xd8\x87\x06\ +\xe8\x34\x94\x3f\x9b\xb8\x24\x1c\xab\xc4\x9c\x83\x2c\xdb\xb4\xf9\ +\xb8\xd8\x90\xcd\x3a\x6e\x87\x63\xdc\x4a\x36\xc2\x96\xba\xce\x15\ +\xee\x02\xe7\xd2\xf9\x34\x41\x87\x22\xc0\x0f\x1b\x61\x54\x26\xda\ +\x96\xb2\x52\x6e\xef\x4b\xf1\x74\x09\x00\x4d\xf9\x69\x45\x6e\x96\ +\x23\x6f\x5d\x22\x6b\xd4\xad\x4c\xd7\xb7\xcc\xf1\xcd\x48\xcb\xb6\ +\x4f\x0c\x14\xc4\xb9\xa4\x59\xad\xbc\xe9\x88\x6f\x7e\xc5\x7f\xa6\ +\xc0\x8f\x0e\x56\xab\xe3\x38\x5e\x5d\x8b\xe7\x9f\x7f\x2e\x56\x47\ +\xbc\xee\x17\xb9\x52\xc8\x70\x5f\xd7\x8b\x0b\x2a\xef\xa7\xbe\xfa\ +\xbe\x78\xdd\xe2\xf1\xf8\xee\xaf\xf8\xaa\xf8\xf1\x7f\xf2\x6e\x1f\ +\xb3\x67\xfc\xaf\x20\x0e\x71\xee\x7d\x55\xcd\xa2\xcd\x38\x6f\x03\ +\x41\x9a\x6c\x70\x9e\xff\x78\x71\x53\x26\x13\x26\xbc\x54\xa0\x73\ +\x66\x07\xe5\x18\xcb\x4b\x83\x8e\x8b\xd3\x13\x9d\xaa\xf7\xe2\xaf\ +\x7d\xf3\xdf\x8c\xef\xfa\xa9\xaf\x89\x37\xbd\xe3\x9e\xb8\x74\xe7\ +\x5d\x75\xae\xd7\xf1\x80\x0d\xff\x95\xa9\xb1\xc8\xd6\xcd\x55\x3a\ +\x2b\xc7\xbc\x78\xae\x1a\x88\x7d\x52\x00\x3a\x76\xb2\x2b\xe7\xb6\ +\xaf\x5b\xf9\xb1\xc0\x0b\x57\xc8\x72\x7c\x26\x29\x7e\xec\x4b\xb4\ +\x74\x3e\xd7\x20\x27\x1e\x05\xe4\xba\xcc\x20\xce\x30\x9c\x7b\x36\ +\xe7\xa0\x5c\x08\x20\x27\x02\x5b\xca\x93\x61\x83\x92\x65\x43\xd8\ +\x72\x7c\x3e\x1f\x03\x3b\x9b\x75\x20\x1a\xd9\x3a\xab\x11\x60\xc7\ +\x22\xd3\x95\xce\xba\x11\x8d\x22\x6b\x4d\x9c\x68\x79\x83\x7a\x8e\ +\xe3\x01\x76\x36\x0e\x99\x32\x7d\x0a\x6c\x48\x54\xe2\x36\xc9\x76\ +\xde\xa8\x7c\xfe\x14\xe5\xf1\x0e\xb4\x6d\x4a\x26\xc2\xed\xad\xd8\ +\x81\xf6\x25\x68\x47\x98\x97\x0d\xbc\x86\x01\xe1\x7b\xed\x0a\x0b\ +\x25\x20\x66\x61\x6c\x2e\xe5\xac\x68\xfa\xd4\x42\xbc\x65\xe8\xca\ +\x96\xe1\x42\x06\xe8\x1c\x6b\x78\xa1\xce\x7c\x96\x29\x63\xf2\xaa\ +\x7c\x89\x29\x9f\xcb\x4f\xd9\xe5\x80\xfa\x28\x8f\x1c\x9b\xa0\x93\ +\x1d\x5b\xe9\xa9\x29\x3f\xcc\x21\x01\x69\x91\x65\x2c\x19\x4d\x6d\ +\x9b\x94\xf3\xc1\x90\xd4\x8e\x61\x0d\x11\xe8\x3b\x9d\xed\x2c\x32\ +\xed\x12\xd8\x57\x6a\x90\x0f\xfe\x32\xeb\x12\xba\x54\x49\x57\x39\ +\x5d\x46\xf5\x61\x6c\x78\x3d\x31\x75\xa6\x5e\x6a\x22\xc5\x59\x67\ +\x4c\x68\x27\xaa\xea\xf6\x50\xe8\x36\x72\xfb\xb9\x9d\xd3\x26\xff\ +\x43\x0e\x79\xc6\xf6\xd5\x6d\x8d\x6f\x1f\x2f\x0a\xf8\x54\x70\xf6\ +\x30\x65\x9b\x65\xaa\xe2\x52\xec\x2e\xba\x62\x43\x7e\xe8\xc8\x8e\ +\xdc\xdf\xa8\x78\x05\x3a\x78\x1b\x3a\x21\xf2\x12\x0d\x0e\xb6\xc8\ +\x01\xe4\x31\x06\xfe\x0d\xfb\x49\x72\x8c\x41\x7f\x4b\x74\x39\xaa\ +\x5c\x15\x3c\x0b\x1a\xfc\x6d\xeb\xb6\x91\x32\x9f\xa3\x8a\xbf\xf9\ +\x38\x65\xbf\x67\x5b\xd1\x9e\xfd\x23\x00\x6b\x6a\x7f\x9a\xae\x6d\ +\xef\xc7\x6a\xea\x81\x1e\xcb\x32\xe4\xbe\xc9\x85\x6b\xf4\xc4\x49\ +\xe3\x87\x2f\xfd\x60\xc8\xa0\x32\x35\x6b\x05\x69\x32\xb8\x1a\xc5\ +\x5b\x23\x27\x96\xa7\xb1\xa2\x4d\xbd\xbb\x6d\xb6\xe6\x0e\xe2\x7d\ +\x3c\xe9\xa4\x37\x5b\x9c\xc5\x1d\x77\x2e\xe2\xf2\x7d\x57\xe3\x7f\ +\xff\xc1\xbf\x1a\xff\xe7\xf7\xfd\xc3\xd8\x3f\x98\xfb\x7f\x35\x71\ +\xc7\x0f\x96\x12\x1b\x9f\x13\x26\x4c\x98\x30\xe1\xb7\x17\xfa\x3a\ +\x37\x61\xc2\x84\x09\x13\x04\x0f\xac\x4d\xf8\x9b\x37\x0e\xa0\x5b\ +\x0e\xc6\x63\xe4\xb1\xfc\x85\xf0\x42\xe3\xe9\x2d\x1f\x23\x43\x91\ +\xbe\x51\xa1\x60\x29\xf4\x7a\x15\xbb\x7b\x07\xf1\xa3\xdf\xf5\x4f\ +\xe2\xfb\xbf\xec\xcb\xe2\x35\x7b\xd7\xe2\x53\xde\xf2\xfa\x78\xfd\ +\xfd\xf7\xc6\xc1\xde\x3c\x78\x9d\x1d\x7f\x02\xbe\x96\xdd\xf5\x1b\ +\x47\xf1\xdc\xb5\xe3\x58\x2e\x4f\x24\x5b\x29\xb9\x26\x20\x9e\x8d\ +\xe8\xeb\xb3\xbf\x06\xfd\x64\xc0\x84\xc3\x15\xcc\xbc\x35\x55\xc8\ +\xc9\x8f\x64\x4c\xe4\xbd\x70\xc2\x53\x42\x2c\x16\x28\xf4\xdc\xb9\ +\x27\xe9\x5c\x49\x3c\xc9\xd0\x06\x2f\xbe\xb2\x20\x70\x1e\x23\xa0\ +\x64\xf2\xac\x74\xf6\x4b\x7a\xe5\xed\x85\x34\xe7\xaf\x24\x2a\x02\ +\x14\x49\x7d\xe3\x57\xf5\x59\xf3\x54\x91\x26\x28\x6b\xff\x2a\x1c\ +\x99\x4a\x5e\x61\xd4\x5a\x99\x77\x6d\x8d\x22\xdb\x66\xa4\xb1\x70\ +\x53\xdb\x73\xa8\xbb\x43\xe3\x79\x30\x04\x74\x15\x33\x6d\xb2\xd2\ +\x15\x10\x7a\x33\x90\xc9\x09\x63\x5a\x54\xb9\x37\xc8\x3d\x27\x70\ +\x65\x54\xba\xc1\x64\x64\x4b\x42\x97\xd6\x13\x72\xe2\x51\x00\x5d\ +\x8e\x62\x5b\xee\x9b\x13\x83\x8c\xe0\x4d\x7e\x8b\xcc\xb4\x1d\xd8\ +\xa1\xda\x07\x96\x2b\xb0\x33\xc4\x78\x71\x14\xa1\x42\xee\xbb\x0e\ +\xea\x17\x15\xe8\x4b\xf9\xc4\x59\xd2\x03\x5f\x01\xde\x76\xca\xc3\ +\x37\x74\xf4\x75\x26\x67\xd2\x17\xe9\x7e\x54\x65\xf1\xf4\xbc\xcb\ +\xd5\x1d\x6a\x63\xa8\xa0\x3e\x41\x73\x28\xb8\x5d\x89\x1d\x41\xb0\ +\x70\x90\x32\xfa\x51\x8a\x52\x8e\x82\x76\x97\x85\xb7\xe4\x84\x8e\ +\xea\x91\x1f\xbe\xe8\x8b\xce\x12\x99\xad\xd1\x51\xf6\x12\xd3\x97\ +\x2b\xb8\x9e\x5d\x4e\xf7\x6d\xc9\x14\xfb\x78\xf3\x5d\x20\x65\x2b\ +\xda\x01\x5f\xe2\x4f\x6d\x2f\xa2\x92\xe1\x9f\x05\x6c\x3f\xad\x45\ +\x28\x40\x35\x9b\xed\x21\x42\xc9\xe0\x36\xb6\x15\xda\x90\x7c\x2d\ +\xeb\xed\x60\x61\x90\x97\xe3\x12\xb6\xbc\x09\x97\xa5\xc2\x46\xb9\ +\x45\x6e\x61\xf0\x47\xb0\x51\x4b\x1a\x12\x72\xcc\x9e\x13\xa7\xad\ +\xb4\x6a\x7b\xa7\x3d\x9f\x0c\x20\xbb\x29\xe3\xb2\x1f\xcb\x2d\x18\ +\x85\xc6\x98\x16\x03\xab\xa2\x6c\x8b\x05\x6e\x81\x9c\x9e\x52\x4e\ +\xb5\x2b\x8e\x89\x25\x27\x8b\x21\x1b\x11\xa8\xbc\xdb\x2a\xb0\x2f\ +\xda\xa6\xf9\xcd\x71\x22\x5e\x1a\x74\xde\x25\x5b\x90\xc0\xce\x92\ +\xbc\x1d\x36\xaa\x36\x54\xd0\xb7\xeb\xee\x7a\x14\x6d\xa0\x33\x71\ +\xaa\xa2\x50\x53\x9d\x3b\x4f\x97\x71\xb4\xbc\x1e\x37\xae\xdd\x88\ +\x93\xd5\x32\xd6\xb2\x61\x5f\x70\xfe\x3f\x38\xd8\x8d\x3b\xf6\x66\ +\xf1\xd9\x0f\x3f\x14\xf7\xcf\x3e\x1c\xdf\xfa\xe7\xff\x42\xfc\xb3\ +\x9f\xf8\x79\x2f\x8e\xc7\x6a\xad\x7c\x64\xd8\x0d\xd1\xb1\x82\xbb\ +\x5a\xf1\x90\xa0\x63\x63\x8b\x11\xb0\x9d\x30\xe1\xb7\x1a\x7d\x8e\ +\x2c\xf8\xfc\x2f\x59\xbe\xbe\x71\x3f\xbe\xf9\xdb\xfe\x41\xfc\xfd\ +\x1f\xf9\xb3\xf1\x8e\x4f\xbd\x1c\xf7\xde\x77\x4f\x5c\x98\x1f\xe8\ +\x3c\x9e\x37\x48\x73\xe1\x9d\x71\x54\x5d\x33\xc4\x72\x53\xd8\xe7\ +\x63\xc5\xd8\xf8\xbc\x00\x8d\x52\xc7\x97\xa5\xe2\x39\xfe\x19\x57\ +\x61\x9c\xd2\x94\x73\x0e\x27\x9d\x17\xda\x30\x72\x1a\x40\xb9\x24\ +\xc2\x9f\xe4\xe8\xeb\xd2\x29\x33\xf9\x40\x36\x0a\x29\xc7\xa5\x68\ +\xe7\x87\x9f\xf4\x04\xf2\x46\xf8\xb9\x83\x50\x85\x24\x8f\xb6\xca\ +\x6b\x98\x6c\x10\x94\xbc\xce\xb4\x99\x16\x92\x36\xa8\xf3\x8a\x51\ +\x89\x95\x7d\x91\x3e\x93\xca\x0d\xfa\x4c\x0b\x5c\xf5\xa2\xf9\x0f\ +\x3a\x9e\x3a\x4a\x3a\x23\x74\x94\x7f\xb0\x31\x10\x50\x1f\x6d\x1d\ +\x46\xba\x41\x56\x21\x45\x37\x05\xca\xd5\x80\x07\x6e\x27\xc5\xcd\ +\x23\xf0\xb9\x5a\xa1\x65\xd4\xb7\x7d\xbb\x6e\x45\xa3\xf7\x8d\x7d\ +\x02\x3a\x29\x59\x84\x31\xed\xc0\xfe\xd8\xe8\x08\x5e\x40\xc3\x4e\ +\x69\x73\x18\xc4\x02\x9a\xc6\x42\xca\xd4\x72\x85\x1e\x47\xb1\xe8\ +\x33\x47\xae\xf4\xb9\xa0\x56\xfb\x18\xbf\x04\x95\x20\xf3\xc8\xf4\ +\xde\xcf\x15\xdc\x2f\x14\x53\xca\x96\x53\x60\xeb\xa9\x0f\x85\x32\ +\x4d\x7a\xf4\xca\x98\xda\x79\xfc\x95\x34\x9f\x4c\x56\x3a\x53\xe9\ +\xd3\x8a\x8e\xcb\x4f\x7f\x6c\x0a\xfa\xc2\x84\xac\x21\x9d\xbd\x90\ +\x86\x7c\x4b\xe7\xad\x7d\x9a\x70\x68\xce\x79\xf2\x75\xa0\xbc\x92\ +\xb9\x2d\x88\xb3\xcd\x3c\xb4\x1a\xf3\x6e\xa7\x6c\x7b\xf8\xd6\xa5\ +\xbe\xf6\x99\x69\x05\xd9\x98\xc7\x07\xb4\xf9\x8c\x5d\x37\xc7\x19\ +\x90\x8d\xd8\x4d\x91\x65\x3f\xd0\xc2\xd6\xf1\xd5\xc6\x06\xf2\xcd\ +\xf1\x47\x9e\x60\xf0\x55\x76\x43\xd3\x81\x51\xda\x4e\xe7\xed\xd8\ +\x46\xe8\xe4\x2d\x1e\xd4\x22\xfa\xd8\xdd\x82\xe4\x63\x7b\x30\x58\ +\x94\x62\x53\xa7\xcc\xfb\x26\x5b\xea\x4d\xec\xcd\xa6\x7c\x63\xb8\ +\x3d\x89\x09\xda\x8c\xf9\x4c\x93\xc8\x73\x59\xf6\xe3\xc1\xa6\xf6\ +\xa1\x6d\x31\x54\xe8\x76\xa2\x5f\x58\x47\xd0\xa6\xf7\x21\x6a\x30\ +\xc4\x24\x90\xc2\x3c\x05\x10\x05\x4d\x3e\x23\xa3\xcc\x43\x02\xfc\ +\xa6\xaa\x95\x1b\xd8\x97\x07\xa7\x55\x4f\x4c\x90\x9d\xea\x38\x5d\ +\x2c\xe3\xd2\x1d\x7b\x71\xd7\x43\xd7\xe3\xff\xf8\xa1\xaf\x8d\x1f\ +\xfe\x91\xff\x4b\xb2\xdd\x58\x1e\x53\x47\x0c\xbb\x6d\x6e\x6e\xa3\ +\x09\x13\x26\x4c\x98\xf0\xf2\x47\x5e\x47\x26\x4c\x98\x30\x61\x82\ +\xc1\x90\xf7\xdc\x78\x7b\xc0\x40\x8e\x64\x4e\xf0\x62\xc7\xc9\xe7\ +\x6d\x9d\xd9\x28\xf6\xa0\x5d\xb1\xc0\xcd\x7d\xdf\xe8\x11\xcf\x4d\ +\x4f\x4f\x7c\x57\xeb\xe0\xff\xa3\xde\xf3\x33\xbf\x1c\xdf\xf1\xa5\ +\x5f\x1a\x17\x9e\xfb\x48\xbc\xed\x4d\xaf\x8d\xd7\x3f\x78\x6f\x2c\ +\xf6\x76\xbd\x88\x76\x7a\xb6\x8e\x25\x4f\xa6\xdd\x38\x8e\xe7\x9e\ +\x3b\x8e\x93\xe5\x52\xbe\x4e\x3d\xe9\xf0\xe0\x5e\x5f\x26\xcc\x45\ +\x6a\xd3\x13\x8d\xcc\x18\x99\x7f\x2d\xad\x09\x08\x4f\xde\xf0\xae\ +\x78\x16\xd3\x66\xfd\x64\x1a\xe9\x72\x63\x7b\x5f\x45\x8a\x87\x04\ +\x9e\xb0\x98\xd9\x4c\x52\x3c\xfb\x11\xe7\xa7\xdd\xec\x1f\x1b\xe5\ +\x6a\x5b\xd9\x91\xde\x86\xca\xff\x94\xd7\x94\x29\xac\xce\x62\xb5\ +\xd4\x9c\x65\x09\xad\x58\x32\x6e\x02\xd7\x6d\x18\x97\x78\xb8\x01\ +\x4f\x2c\x85\x65\xae\x05\x18\xc7\x39\x2d\x74\x1b\x10\x94\x57\x73\ +\x37\x21\xd5\xe7\x30\x12\x8c\x6f\xea\x08\x68\x5a\xdb\x1e\x37\xfc\ +\x39\x5d\x7e\xed\x62\xbc\x78\xc0\x8d\x22\xef\xe7\xb4\x4a\x3b\x13\ +\x85\xac\x98\xa3\xd6\x77\xf2\xf3\xbc\x31\x4e\x6b\x6c\x0b\xf0\x9d\ +\x39\x65\x30\xdf\x26\x16\xa5\xc0\x1f\xe2\xd2\x13\xbc\xa9\xfd\x97\ +\x0b\x6a\xdb\xbc\x77\xb0\x62\x26\xbb\x4d\xbb\xff\x8a\xb5\xfd\x38\ +\xbd\xe5\x25\x73\x6e\x95\x3f\x1b\xee\x2e\xd0\x57\x52\x70\x2e\xf6\ +\xd1\xb1\x5d\x67\x35\x68\x79\x70\x63\xb8\xad\x4e\x4f\x7d\x2c\xb9\ +\xbd\xf9\xf4\x2a\x2c\x41\x24\xd6\xb9\x2f\x6c\x9d\xf2\xa4\x9c\x7d\ +\xb1\xe5\x35\xb7\xad\x18\x72\xef\xf2\xab\x3e\xf4\x61\x2f\xa6\x41\ +\xd7\xdd\x1e\xea\xe8\x94\x6c\x6c\xd7\x69\x4a\x64\x4f\xb6\x68\x41\ +\x06\xc1\xc7\x4a\xc1\x76\xf0\xe3\x30\x06\x7c\xa5\x33\xc4\x93\x87\ +\x51\x71\xd7\x07\x9e\x6a\x50\x77\xfb\x2d\x3e\xf5\x65\x4c\x34\xd8\ +\x0c\xd2\x01\xd8\x8e\xf7\x01\x7e\xdc\x87\x71\x54\xd6\x43\xcd\xca\ +\xa8\xcb\x63\xdb\xd4\xc8\xbe\x94\xe4\x53\x7a\x60\xbd\x7d\x75\x5e\ +\x1b\xd8\x2b\xc6\x16\x6a\xd3\xca\x12\xb5\x78\x90\x9f\x47\xe9\xc8\ +\xda\xa1\xca\x02\x9c\x44\x1b\xce\x35\xb9\xb8\x86\x40\xa0\x6e\xb6\ +\xeb\x86\x56\x50\x19\xd8\x47\x3e\x8d\x76\x5c\xbe\xbc\xa5\x8f\x97\ +\x0e\x5b\xfa\xbf\xed\xfd\xb1\x88\x2d\x9b\x8c\x6e\x15\x46\xe4\xb6\ +\x58\xdb\x24\x06\xe4\x55\x43\x40\xe5\xbc\xb9\x81\xb8\x76\xf6\xfc\ +\xa8\xe2\x68\x75\x23\xae\x1f\x1d\xc5\xf1\xf1\x89\x9b\xf6\x94\xf3\ +\x8e\xfa\xe9\xc1\xe2\x2c\x5e\x75\xf9\x52\x7c\xc6\xeb\x1e\x8e\xbb\ +\x9e\xff\x40\x7c\xd7\x57\x7c\x5d\x7c\xe0\xd7\x3f\x12\xa7\xf3\x95\ +\x7f\xc4\x90\xc8\x45\x05\x67\x50\x01\x9e\xfe\x01\x86\xdd\x01\x50\ +\x0c\xcc\x4b\x84\x97\xda\xdf\x84\x57\x36\x74\x00\x70\x6c\x73\x24\ +\xae\xd6\xc7\x7e\x1d\xf1\xff\xf5\xbd\xdf\x13\x7f\xf3\x3b\xff\x9b\ +\x78\xe4\x91\x88\xfb\x1f\x7c\x75\x5c\xd8\xbf\x10\xbc\x42\x9b\xbe\ +\xed\xf5\x9f\x35\x63\xa9\x3e\x7a\xb9\xe9\x8b\x42\xa4\xe2\x3e\xf4\ +\xfb\x5a\x86\xcc\xa4\x81\x0f\xce\x32\x99\xd2\xa7\x03\xc4\x98\x35\ +\xcf\xa6\xce\x77\x20\xcf\x2b\x75\x4d\x51\x5a\xdf\x3c\x96\x91\x3f\ +\xd2\x79\x41\xc0\x86\x99\x96\x05\x96\xe1\x3a\xbb\x71\x23\x90\xaf\ +\xce\x0b\x2d\x23\xae\xb0\x65\x26\x70\xf6\xb0\x8c\x76\xa9\x13\x5f\ +\x1f\xdf\xf9\x63\x14\x5d\x4f\x3b\x1d\x9b\xa2\x29\x87\x65\x63\x94\ +\xa0\xcc\xbc\xc9\xda\x77\x9c\x34\x30\x57\xed\x46\x64\x3d\xf9\x2a\ +\xcf\xb4\x62\x5b\x05\xa1\x40\x5d\xa8\x17\x44\xda\xb0\x25\xb5\xdb\ +\xaa\x62\xf8\xcc\x27\x91\x32\x4b\x53\xe1\x66\xdc\x94\xb2\x83\xa1\ +\xfd\xe0\x48\x12\xd2\xc1\x0e\xc1\xf2\x4a\xeb\x0c\xb0\xcd\xe0\x31\ +\x2e\x63\x6a\xe2\x5a\xd8\xc9\x18\x7e\x37\xfc\xa2\x45\x7c\x98\x27\ +\x66\x3f\x97\x4c\x69\xbc\x58\x84\x8d\xe5\xf4\x02\xdc\x67\x3e\x43\ +\x3a\x78\x6c\x28\x87\x6d\xa0\xc5\x49\xef\x71\x09\x27\x7b\x9a\x8f\ +\x04\xfa\xe6\x26\x83\x4a\x62\xd2\x3e\x4d\xa7\x9c\x4f\x03\x7f\xd6\ +\x92\x67\xc9\xb0\x6b\x4b\xe4\x30\x96\x58\xa8\xdc\x15\xd2\x9f\x8d\ +\x32\x10\x75\xec\x3d\xc4\xb1\x44\x10\x69\x53\x0a\xe9\x12\x89\x96\ +\x30\xbf\x19\x9b\xd6\x87\x7c\xa9\x23\xfe\x9d\xb6\x82\x12\xb9\x3d\ +\x6e\x17\xdc\xe6\x79\x3c\xba\x1e\xb6\xc7\x5f\xfa\x26\x0f\xec\x1c\ +\x93\x67\x03\xd9\x26\xda\x02\x76\x83\x6d\xa5\x6d\xf2\x3c\x5a\x76\ +\x5b\x1d\x1b\x05\xda\x80\x63\x10\xd6\x3d\xb9\xe4\x63\x6c\x95\xaf\ +\xda\xcc\xc7\xb9\xe2\x4a\x75\x3e\x49\x62\x24\x1c\xdc\xa6\x79\xa2\ +\x68\xb7\xbd\x41\x59\x1c\x15\x97\x18\xdc\x88\xe8\xfd\x68\x5b\x6b\ +\xd8\x2f\xec\xa3\xb4\xa3\xac\xa6\xb1\x75\xc8\xfd\xe5\x18\x9d\x69\ +\xd9\xd9\x26\xf7\xc7\x78\x5f\xe2\xc4\xfd\x4f\x31\xfe\xb3\x9f\x62\ +\x8b\x5d\xb6\xd3\xf9\xfd\x66\x8b\xfc\x0e\xe9\x6e\x82\x14\x99\xae\ +\xfd\x6d\x7c\x93\x5f\x26\xb1\xa6\xc6\x82\xa9\x77\x26\x3a\x9e\x29\ +\xfd\x7c\x3f\xe2\xd2\x5d\xfb\x71\xe9\x81\xe7\xe2\xef\x7f\xcf\x5f\ +\x8e\x1f\xfd\xa9\x7f\x16\x8b\xfd\x99\xe7\xae\xdb\x38\xcf\x4f\x98\ +\x30\x61\xc2\x84\x97\x3b\xfa\x9a\x33\x61\xc2\x84\x09\x13\x0a\xc3\ +\x90\x57\x04\xb4\x07\xd1\x1d\x00\xb1\x07\xd9\xff\x9c\xc0\xc7\xe0\ +\xb3\x09\x90\x93\x03\xc6\xec\x03\xbc\xc8\xb4\x8c\x1b\x57\x9f\x8f\ +\xbf\xff\xc5\xff\x55\x3c\xfb\xcb\x3f\x15\x6f\x7e\xc3\xab\xe3\x8d\ +\xaf\x7d\x30\xf6\x17\x3c\x59\x71\x2a\x13\x9e\x44\x38\x8d\xa3\x1b\ +\x27\xf1\xfc\xb5\x65\x9c\x1c\xaf\xe5\x8a\x55\x03\x26\x2a\x4c\x00\ +\xf0\x8b\x53\x5e\xa1\x22\xb9\x67\x2e\x7c\x3b\x6f\x18\x4d\x50\x35\ +\xbb\xf0\xab\x51\xbc\x98\x26\x7e\x2e\x31\x01\x73\x4c\x70\x85\x1b\ +\x52\x58\x90\xb4\x61\x85\xf2\xd1\xac\xce\xe5\x57\xde\x10\xd0\xbc\ +\x82\x05\xdf\x67\x39\x63\x2a\x7d\x96\xc8\x90\x29\xeb\x1d\x2c\xa4\ +\xad\x4f\x14\x34\x19\x39\xa3\x0a\x3c\xa1\xa6\xf6\xa1\x94\x2e\xa9\ +\x36\x8e\x05\xa7\xe5\x46\x97\xd0\x32\xc0\xa4\x32\xf9\xf2\xae\x08\ +\x0a\x59\x87\xdb\xa2\x94\x59\x5f\xca\x59\x65\x64\xa3\xfa\x78\xef\ +\x58\xb0\x8d\x5b\x88\x36\x70\xda\x9b\x6d\xb6\xca\x38\xa0\x8c\x15\ +\xf2\x23\x8a\xc6\xa2\x6d\x61\x72\xb3\x85\xb1\xe4\x66\x6d\xc1\x75\ +\x71\x54\x7c\xda\xe6\x40\x20\x73\xea\x1b\x22\x04\xa2\x31\xac\x77\ +\x10\xdd\x8e\x08\x2a\x97\xdb\x8a\x78\x24\xe3\x29\x1d\xf6\x37\x37\ +\x3d\xac\xe3\x67\xc1\x52\x65\x3d\x32\xaf\xfc\xd8\xb9\x7d\xb0\xf1\ +\x82\x0c\x42\x2b\x2a\x1e\xf1\xb9\xf8\x45\x2c\xd1\x40\x6b\xbf\xe8\ +\x18\xf1\x13\x67\xf4\x07\xc4\xee\x17\xf4\x9d\x5c\x54\x33\xaf\x98\ +\x2e\x99\xf2\x92\xf5\x5e\x30\x0b\x9d\x7c\x17\xa3\x25\x95\xbd\x20\ +\x8e\x3a\x4a\x92\xdb\x4a\x41\x9d\xc5\x38\x9d\xeb\x58\xf5\x95\x6d\ +\xbf\x5e\xc9\xb0\xac\x08\xeb\xa0\x21\x93\x28\xb6\x77\x4c\xb9\x91\ +\x74\x70\xc1\x56\x12\x45\x99\xa6\x69\x2b\x33\x9d\xe9\xd4\xa1\xd8\ +\x94\xd4\xcf\x0e\xa8\xbc\xad\xa3\xec\x2a\xbd\x2b\x29\x46\xed\xe1\ +\x85\xa4\x54\x58\xe6\xa8\x42\x22\xd3\xa6\x4f\x51\xae\x40\xd2\x89\ +\xc1\xfb\x06\x3e\x07\x35\xb9\xd1\x64\x15\x93\x67\x9b\x79\x40\x91\ +\x6f\xe7\xa8\x9c\x44\x6e\xeb\x13\x69\xa9\x6d\x12\x5b\xd8\x94\x37\ +\x01\x9f\x21\x35\x5b\x7a\x31\xe6\xd3\x60\x50\xd2\x45\x78\x5a\xcd\ +\x35\x32\x0d\x55\x4a\xc1\xd9\x56\xe3\xf7\x4d\x4a\xdf\x04\xa2\x62\ +\x59\x39\xeb\xb6\xcb\x86\x91\xa2\xd6\x1b\x6d\x40\xbc\x65\x9c\xfd\ +\xe3\x7c\x60\xd3\xc5\x30\x3f\x44\x8a\xb3\xfd\x5d\x26\x11\xbe\x51\ +\xb5\xcb\x8d\xf0\xb3\x58\xea\x1a\x72\xfd\xe8\x7a\xdc\xb8\x7e\x23\ +\x56\x4b\x16\xd5\xa4\xd3\x3e\x27\xc5\x62\xb6\x8a\x07\xae\x5c\x89\ +\xcf\x7c\xec\xc1\x98\xfd\xd2\x8f\xc4\xb7\xfd\x99\xaf\x8e\x0f\x7d\ +\xe8\x39\xd7\x85\x1f\x3e\xd0\x16\x75\xc0\x24\xc8\x44\x81\xf2\x59\ +\xb7\x69\x96\x84\x0b\x31\xc2\x79\xfe\xe3\xc5\x3f\x6f\xfa\x09\x13\ +\x80\x0f\x6a\x75\x26\xbe\x0a\xa7\x3a\x26\xe6\xb3\xfd\x78\xf7\xbb\ +\x7f\x3a\xbe\xfc\x1b\xbf\x24\x1e\x78\xf0\x5a\xbc\xe6\x35\xaf\x89\ +\x83\x83\x4b\x1a\xff\xe8\xc8\xc0\xee\x6c\xd7\xc7\x7e\xdf\x78\x07\ +\xdc\xc8\xef\x3e\x59\x97\xb4\x94\x59\xe8\xb3\x12\x09\x25\xe4\x49\ +\x51\x33\xde\x42\xfb\x98\x26\x39\x69\x5a\x98\x9a\xe1\xfc\xc1\x82\ +\x48\xbb\xf3\x8d\x5d\x65\xd2\x3a\x97\x09\x15\x32\x31\xe3\x05\x01\ +\x92\x24\xf2\xa0\xc4\xce\xf9\x81\x8e\x05\xc8\x11\x9b\x90\x20\x53\ +\xe5\xc7\x03\x32\xc7\x44\xed\x4f\x4c\x25\x1c\xce\x35\x58\x97\x7e\ +\x38\x5f\x09\xb4\x8b\xe9\xe2\xcf\x63\x50\x51\x70\x03\x1f\xa2\xf9\ +\xb6\xc8\x40\x8e\x38\x85\x6e\x0f\x81\x6d\x07\x30\xa6\x8d\x91\x60\ +\x4b\xde\x90\xb0\x4e\xdb\x46\xb7\x5d\x3e\xcd\x27\x74\x71\xaa\xcd\ +\xd1\x13\xba\x1c\x43\x19\xb1\x21\x34\x9d\x51\xda\xc3\x57\x40\x98\ +\x3e\x60\x18\x87\x57\xff\x42\x2e\xc3\xcd\x7f\xa9\x65\xba\x4c\xcb\ +\x98\xbc\x78\xc5\x1e\x4f\x59\x8e\x2d\x72\x78\x42\x96\x8a\xad\x17\ +\xcf\xa0\xed\x88\xdc\x48\x88\xb6\xda\xd1\x74\xc6\xee\x43\x59\x28\ +\xa7\x65\xbb\xd9\x89\x9b\xc0\xd6\xa9\x95\xc6\xbb\xda\x64\x11\x65\ +\xe3\xe6\x12\xd9\xaf\x78\x86\x46\x93\x1b\x20\xb9\x8d\xa0\xd9\xc0\ +\xe7\x82\x4a\xf3\xee\x53\x22\x91\xf9\xda\x65\x1d\x90\x6d\xcb\x61\ +\xb5\xc9\xc5\x98\xb2\x2f\xde\x75\x32\x9d\xb2\x0e\xc8\x1d\x3b\x29\ +\x36\x59\xa7\xdc\x6c\x90\xfa\xf2\x6b\x49\xfa\xef\xb2\x79\x2c\x33\ +\xe8\x36\xc9\x7d\x4a\x69\xe6\x1c\xaa\x79\x07\x5b\x03\xa6\x04\x23\ +\xd2\x48\x5a\xdb\x56\x40\xd2\x6e\x90\xd9\x0c\x0e\x96\x13\x6f\x21\ +\x0d\x91\x67\xbb\x8e\xec\xcb\xc7\x4d\xb0\x4f\xd5\x89\x1d\x6b\x1b\ +\x1f\xfd\xa9\x18\xa2\xaa\x3f\x74\x1d\xeb\x46\x17\x40\xf1\xa6\x8e\ +\x23\x3d\x91\x1a\xa6\xcf\x41\xb4\xd1\x4d\xe5\x92\x51\xca\x6b\xdf\ +\xb5\x4e\x86\xde\x7f\xa2\xb3\x17\x57\xbb\x97\x4d\x12\xd2\x2a\x91\ +\xdf\xaa\x62\xe9\xa0\x29\xd4\x7e\x2e\xb4\x0d\xfe\x92\x4f\x99\xf3\ +\x76\x4e\x29\x1b\x0a\xd2\x96\xb5\xe9\x26\xf2\x82\xf5\x4c\x29\x14\ +\x3b\xe7\xf9\x69\x5c\xb9\x67\x16\x8b\x57\x3d\x19\xef\xfa\xee\xaf\ +\x8e\x5f\xfa\xa5\x9f\xf7\x93\x6a\xba\xbc\x14\xaa\x3d\x2a\xb6\xbb\ +\x09\x13\x26\x4c\x98\xf0\xb2\x47\x5f\xd3\x26\x4c\x98\x30\x61\xc2\ +\x08\x1e\xf2\x32\xe2\x15\xb1\x35\xf0\xdd\x1e\x13\x7f\x7c\xb0\xa3\ +\x51\xc2\xb1\x0f\x06\xef\xe7\x55\xc3\x5d\x10\x9e\xd0\x3a\x8e\xd9\ +\xde\x85\xf8\x1b\x7f\xf2\x8b\xe3\xf1\xef\xfb\x47\xf1\x69\x8f\x3d\ +\x10\x9f\xfa\xa6\x47\xe2\xca\xc5\x7d\xa9\x65\x7d\xb6\xd6\xf4\xfc\ +\x34\x8e\x8e\x8e\xe2\xf9\xe7\x8e\xe3\xf8\xe8\x44\x2e\xd7\xb1\x7b\ +\xc6\xcd\x9c\xf4\xc3\x74\xe1\x8c\x57\xed\x70\x73\x15\x29\x93\x90\ +\x9e\xa5\xa1\xc5\x4c\x21\x27\x0a\x8a\x59\x4c\xe3\xbf\x9f\xf8\x29\ +\xb4\x27\xec\x14\x93\x8d\xbf\xb2\x4b\xc2\x93\x1d\xc5\x3c\x3d\x83\ +\x3c\x81\x5f\x82\x26\x1c\x4a\xd3\xaf\x8e\x64\x31\xcd\x8b\x2b\x95\ +\x99\x27\x68\x58\xae\x59\x48\x3b\xcd\x85\x34\x85\xd3\x5e\x44\x63\ +\x31\x04\x7d\x85\x01\x62\x5c\x74\x85\x41\xd7\x99\x6f\x0a\xb1\x05\ +\xdb\xd8\x98\xc2\xe6\xc4\x68\x8c\x2c\x51\x05\xe9\x72\xea\x36\x36\ +\x82\xa6\xcc\xdb\x38\xe7\xe6\x26\xfe\x96\xa8\x76\xdf\xf8\x12\x75\ +\xde\xf1\x80\x2c\x07\x6d\x95\x54\x4a\x3a\xc0\x7b\x32\xaf\x18\xd8\ +\x6a\x98\xbd\x6e\x45\x02\x54\xb7\x7f\xb1\x15\xb5\x0d\xfd\xc5\x7d\ +\x86\x6f\xed\x2b\x07\xef\xe8\x0c\x4d\x4a\xe1\x74\xbe\xe1\x6e\x1b\ +\xf6\x37\x49\xd9\x94\x4c\x1f\x62\xa4\xbe\x4d\x61\x19\x89\xfc\x15\ +\x6f\x55\xda\xd0\x2e\x9a\x18\x27\xda\xa0\xc8\xde\x61\x44\xac\xfa\ +\xf4\xcc\xd6\x0b\x02\x24\x55\x7f\x41\x5e\x8b\xcb\x3c\x8d\x66\x1e\ +\xb9\x8c\x36\x4f\xa7\x29\x1e\xe4\xf4\x31\x64\x69\x33\x46\xf7\x2f\ +\x97\xd5\x09\x89\x48\xd7\x6c\x11\x43\x32\xd1\xae\xa7\x28\x54\x54\ +\xc7\x5c\xc2\xfb\x05\x41\x47\xad\xac\x7d\xd5\xed\x00\x68\xdb\xcd\ +\x42\x95\x82\x1b\x3b\x31\x32\x4b\x98\x29\x69\xb5\x33\x9f\x51\x12\ +\x81\xfa\x25\xca\xd2\xf0\xab\x0d\xab\x1a\xd9\x06\xe8\xb4\xb5\x31\ +\x56\x26\x46\x18\x52\x7a\x6b\x0b\x6d\x52\x9a\xe9\xb7\x53\xa4\xa6\ +\xba\x7b\xb2\x0e\x65\x99\x8d\x2f\x7e\x50\x28\x14\x3a\x8d\x91\xba\ +\xea\x39\x83\xce\xbb\xa3\xed\x1c\xab\x95\xeb\xd7\xe7\x98\x22\xea\ +\x60\x0f\xc5\x6c\x5a\xa3\x21\xbe\xba\x47\x71\x69\xd7\xa1\xba\x4c\ +\xcb\xce\x63\x53\x7c\x95\xb0\x0e\x0e\xdf\x0c\x22\x96\xdc\x37\x3d\ +\x91\xb7\x5d\x13\x7c\x3b\xa4\xa2\xb0\xa1\xc7\xd2\x01\x83\xb0\x88\ +\xe6\x89\x4d\xd3\xdb\x54\x68\xd1\xb9\xa0\xad\x42\xeb\xdc\xcf\x0f\ +\x2f\x4e\x96\xc7\x71\xe3\xf8\x7a\x3c\xff\xfc\xb5\x58\x1d\x2f\xf3\ +\x50\xc0\x5e\x05\xdc\xd7\xb5\xe1\xe1\xcb\x87\xf1\x19\x8f\xde\xab\ +\xeb\xcc\xff\x11\xdf\xf6\x15\x5f\x1b\x57\x8f\xae\xc5\xce\xf2\x08\ +\x47\x32\xc4\x61\x35\x04\xdb\x6a\x0b\xca\xef\xee\x3a\x46\xe9\x26\ +\x4c\xf8\xe4\xc1\xa6\x53\x72\x9e\x63\x7c\xc1\xb5\xed\x89\x0f\x7e\ +\x24\xfe\xcc\xd7\x7f\x71\xec\xdd\xfd\x81\x78\xcd\x1b\x1e\x8e\x83\ +\xfd\xc3\x98\xf3\x9a\xc7\x5c\x6d\x76\x47\xe7\x9a\x38\x8c\x5b\xf2\ +\x80\x75\x9c\x0b\x1a\x30\x1c\xe0\xe9\xb7\xc1\x31\x6d\xa9\xaf\xa3\ +\x75\x1a\x4f\x17\xd6\x41\xfa\x5c\xc1\x07\x3d\xfe\xc4\xfb\x87\x28\ +\x65\xeb\x45\x17\x64\xa4\x19\x82\x15\x23\x5e\x21\xcd\x33\x9d\xca\ +\x30\xd0\xda\x6c\xe4\xc4\xd2\xd5\x81\x3b\x94\xd4\x4a\xda\x43\x11\ +\xd7\x33\x88\x3e\xb8\x15\xd1\x0e\xed\xab\x3d\x65\x09\xd9\x62\x5b\ +\x62\x85\x8a\x5c\xa6\x44\x5b\x66\x68\x98\xb6\x70\x23\xc5\xd2\xe5\ +\x73\xa6\x6a\x73\x9f\xcb\x37\x3f\x01\x21\xa3\xb6\xde\xa4\x4a\xdc\ +\x8a\x27\xf8\xd4\x57\x8c\xdb\xff\x36\x18\xec\x2b\xce\x8a\x9b\xc8\ +\xfa\x09\x6e\x67\xf7\x05\x50\x57\x11\x9f\x0f\xa5\xe0\x04\x48\x66\ +\xd2\x77\xb2\xae\x8b\xeb\x23\x38\x1d\x3e\x30\x6d\x22\x45\x69\x53\ +\xa2\x7c\xaa\x3d\x75\xed\x9f\x7d\x9e\x4f\x64\x65\x9f\xeb\x8b\x8b\ +\xe5\x78\x2b\x7d\x76\xc3\xf4\x98\xdf\xf2\xa3\xf2\xd9\x52\x36\xe9\ +\x31\xd3\xe7\x39\x3d\xfd\x52\x2a\x97\xde\x72\x12\x21\x23\x10\x55\ +\x99\xb2\x98\x46\xd7\xd4\xa6\x40\x84\xc7\x14\x42\xdb\x8c\xe1\x7e\ +\xdb\xe8\x44\x88\xba\xbf\x97\x8c\x36\xce\xd2\x4a\xaa\xfd\x5f\xa5\ +\x72\x6c\x91\xda\x99\x6a\xf6\xe2\x23\x3a\x02\xdb\x8c\x37\xb2\xd4\ +\x53\xdb\xf4\x61\xaf\x96\xa5\x81\x65\xda\x70\x7c\x39\xff\x92\x25\ +\x94\x8f\x99\x4e\x3b\x82\x18\x37\xb5\xd0\x55\x01\x2e\x57\x05\xec\ +\xdb\x06\xc6\x4d\x5d\x61\xc0\x98\x36\xf0\xd6\x01\x65\xd5\x89\xf3\ +\x00\xf1\x08\x9d\x6f\xf7\x2f\x90\x29\x04\x89\x36\x52\xa1\xdd\x8d\ +\xd0\xec\x38\x7d\xa7\x42\xd6\xd4\xf9\x84\xcd\x6d\x52\x89\x1a\x98\ +\x4d\x39\xb7\xe2\x8d\xb1\x05\xd9\xae\x05\xd1\xbd\xe7\x86\xfd\xc3\ +\x46\x69\xcc\xbb\xdf\x8b\xae\x46\x75\x9b\x62\x2e\xc2\x7d\xc2\x76\ +\xf0\xd9\x2f\xdc\xbe\xd8\xa7\x89\x05\xf6\x69\x46\xb2\xb1\x0e\xc0\ +\x0f\x7a\x1f\x99\x0e\x80\x43\x3a\x19\x0c\xf8\x4a\x50\x83\x41\xdb\ +\xf9\x3c\x95\xfd\x8b\x1f\x8d\xbe\xea\xbe\xbd\x88\x4b\xef\x8d\x6f\ +\xf8\xce\xaf\x8e\x0f\x7d\xf8\x37\x30\x18\xcd\x11\x1a\xa4\x9f\x30\ +\x61\xc2\x84\x09\xbf\x1d\x30\x5c\x4b\x26\x4c\x98\x30\x61\x82\x90\ +\xe3\xe4\x1c\x3f\x0b\x1d\x6f\xe1\x05\x95\xb7\xc1\x60\x2b\x62\x9c\ +\xce\xb4\x32\x24\x5f\xd1\xc3\x30\xbb\xe5\x0c\xc6\x4f\x96\x31\xdb\ +\x3b\x88\x6f\xf9\xaa\xbf\x18\x3f\xf7\x77\xbf\x39\xde\xf1\x86\x7b\ +\xe3\x73\xde\xfc\x58\xdc\x79\xe9\x40\x26\xf9\x14\x1a\x8b\x01\xc7\ +\xc7\xc7\xf1\xec\x55\x6e\x96\x9e\xc4\xe9\x7a\xa9\xf9\xd7\xba\x6e\ +\x48\xc8\x8d\x06\xfc\x39\x99\x63\x64\xaf\x53\x3f\xc2\xba\x61\xe2\ +\x89\x8b\xbf\x9a\x14\x68\x42\xe0\x45\x11\x3f\x99\xc6\xe4\x5c\x0a\ +\x05\x4c\x5c\xa6\x21\x60\x9d\xa4\xb7\xe6\x93\xb3\xb1\xbe\x3c\x95\ +\xc3\x22\x9a\x5f\x7d\x37\x5a\x4c\xf3\xc4\xbd\x4c\x29\x02\x4f\xa0\ +\xad\x97\xa7\xb1\x52\x38\x5d\xab\x2e\x12\x0e\x8b\x27\x42\x53\xbe\ +\xaf\x00\x2a\x26\xf2\xdc\xbd\x7c\x25\xc8\xb8\x48\x2b\x3a\x23\xd5\ +\x9f\xff\x47\x82\xcf\x6f\x6a\x86\xc9\x7f\x4a\x7a\x2a\x58\xe2\x6d\ +\xb8\x11\xb6\x91\xa9\xb6\xb1\xc5\x9f\x37\x18\x95\x8d\xa6\xbd\x49\ +\x0f\xce\xf3\x5b\xe8\x76\x3e\x9f\xd0\xd3\xbc\x2c\x38\xc4\xd0\x58\ +\x42\x99\x8d\x9a\xdd\xc8\x1b\x31\x08\x3b\x20\xac\x60\x0c\xc4\x08\ +\x69\x90\xed\x9e\x25\x19\xe2\x31\x24\xd8\x92\xa9\x38\xdc\x68\x49\ +\xcb\x9c\xa8\xf7\x74\xbd\x98\xba\x91\x57\x6c\xc9\x88\x7a\x6b\x98\ +\x4c\x25\x0b\xc8\xf4\x93\x53\x8c\x35\xc1\x75\x9f\xe1\xfe\xa7\xfa\ +\x10\xaf\xe6\xe2\x3f\x5c\x52\x26\x1d\xaf\xad\x73\xbc\xf6\xa2\x02\ +\x81\x45\x12\xe7\x29\x39\xf3\xe3\x71\x9f\x6b\x50\xc6\x8d\x1c\x9a\ +\x48\x71\x2d\xce\xb9\x99\x11\x2a\xf8\xa9\x4c\x09\x87\x7a\x23\x86\ +\xa9\xb6\xe8\x60\x14\x41\xbe\xe9\x48\x51\xc9\x06\x1b\x81\xdd\x62\ +\x1f\x48\x69\x67\x1f\x8f\xc9\x9a\x4f\x71\xf2\x02\xaa\x56\xdb\xb5\ +\x08\xd2\xd3\xf5\x6d\x57\x32\x97\x8d\xba\x63\x34\x2a\x64\xee\x1f\ +\x58\x2b\x92\x1e\xc3\xa2\x96\xbb\x75\x2a\x05\x6d\x53\x69\x2b\x1e\ +\xf2\xb3\x45\x32\x14\xdf\xbf\x22\x2f\x17\xb9\x88\x0a\x91\xfc\x66\ +\x50\x2a\x41\xeb\xb6\x50\xfb\x00\x3d\xe5\x17\x30\xd9\x98\x89\xea\ +\xfa\xd4\x76\xc3\xdd\x0c\x5c\x39\x68\x43\x5d\x5a\x40\x54\xee\x0d\ +\x78\xc7\xf2\xcd\x79\x84\xb6\xcb\x34\xdb\xc8\xfa\x29\x56\x45\x7c\ +\xb3\x4f\xb1\x6f\xd2\x38\xd6\x31\x4f\x3c\x2e\x54\x33\xe5\x08\xee\ +\x85\xd0\xc9\x80\x7d\x8b\xc9\x9b\x94\x1b\xcd\xb8\x5c\xf9\xa4\x80\ +\x82\x54\xf9\x4a\x2c\x6a\xa5\x73\xed\xfa\xa4\x9e\x54\x3b\x8a\xd5\ +\x29\xff\x93\xb6\xab\xbe\xc8\x39\xe9\x2c\xee\xd8\x9f\xc5\x5b\x5e\ +\xf3\x9a\x78\xd3\xa3\x77\xc6\xfb\xfe\xf1\xbb\xe2\xdb\xbe\xfc\xeb\ +\xe3\xda\x42\x3e\xae\xdf\xc8\x0a\xd2\x69\xc9\x8a\x48\x71\xe6\x5a\ +\x31\xd9\x09\x5b\xb2\x09\x13\x3e\x29\xa0\xce\x49\xff\x74\xa7\x65\ +\xcc\x24\x56\xfd\x7d\x79\x7d\x1e\x7f\xea\xaf\x7f\x71\xac\x77\x7f\ +\x2c\xde\xfe\xd6\xd7\xc6\xc5\x8b\x77\x04\x7f\x01\x6a\x1b\xce\x25\ +\x3a\xd8\x7d\x88\x21\xaa\x00\x7c\xfd\x24\xe8\x98\xf0\xb9\xdf\xe7\ +\x1d\x6b\xf2\x3c\xc6\xf1\xe9\x83\x64\x74\x83\xb6\x8e\x59\x0e\x23\ +\x4e\x82\x2e\x0a\x1f\x62\x8e\x4f\xc6\x5f\xf6\x9b\x09\xf0\xe3\xd4\ +\x9c\x3b\x4a\x8e\xaa\x44\xe9\xc7\xe0\x3c\x9c\xe7\xe3\xf6\x3b\x80\ +\x8a\x16\x72\x21\x4d\x96\xd2\x5b\x5c\x76\x4a\x22\x81\x36\xbe\xae\ +\xe5\xc9\x2d\xc7\x07\xd2\x59\x69\x2a\x43\xa5\x01\x23\xd2\xc0\x74\ +\x23\xa3\xbc\x9b\xba\xdc\x84\x2a\x64\x2e\x9e\x60\xe2\x12\x19\x48\ +\x2a\xf7\x51\x78\xb1\xc8\x9b\xea\x1f\x0b\x64\xef\x50\x34\x44\xf2\ +\x59\x8e\x2a\xde\x39\x54\xdb\xb2\xaf\x6c\x9b\xfb\x87\xfc\x6c\xee\ +\x73\x68\xf9\x70\xbb\x6d\x60\x1b\x1b\x25\xd8\x07\x99\xbe\xd2\x16\ +\x9f\xb4\xf2\x91\x22\xf7\x71\xef\xfb\x71\x60\x81\x21\x73\x76\x1a\ +\xec\x49\x6f\x5d\xfa\xf4\xb5\x06\xca\x06\x7c\x29\x93\x89\x02\x7c\ +\x52\x19\xf5\x16\x1b\xfc\x2a\xee\x2a\x28\xdd\xf8\xba\x32\x86\xbb\ +\x54\xc1\x87\x80\x04\x39\xb6\x40\xe1\x1e\x49\xb4\x65\x67\x01\x57\ +\xd8\x6e\xa3\x32\xa2\x8c\xd9\xfe\x94\x41\x31\xf5\xe2\x03\x4b\xb0\ +\x06\x19\xed\x92\x69\x4d\x8f\x09\xc5\xbd\x6f\x8c\x26\x06\x01\xe9\ +\xda\x77\xfa\x68\xd9\x56\x3a\xb0\xc5\xc8\x62\xa4\x27\x2e\x4f\xdb\ +\xcd\x6a\x2a\xb9\xc1\xbb\x58\xdb\x25\x7b\x5b\xb4\xfe\x66\x3b\x24\ +\x2d\x95\xa7\x62\x47\x12\xa3\x79\x63\x8b\x11\xc6\xc6\x9d\x40\x48\ +\x71\x6e\xbd\xff\x46\x18\xda\xa7\xda\x3a\xb7\xde\xb9\xa6\x36\xfb\ +\xab\x01\xbd\xdd\xaa\x76\xad\x9d\xef\x7d\x74\x0e\xce\x4e\x9b\xd4\ +\xc9\x97\xf3\xd9\x4a\x6d\x6f\x6e\x5f\xba\xb2\xfb\x7d\xca\x28\x13\ +\xff\x11\x8b\x8f\x4c\x8f\x42\xb6\xfc\x10\xa2\xf9\xc2\x86\x12\xdd\ +\x05\x41\x48\x92\x31\x03\x2a\x9f\xec\x73\x5d\x32\x68\x2c\xb4\x51\ +\x01\x38\x1e\x7d\x9a\xb4\xd6\x0a\x7d\x35\xc7\x95\x6c\xbe\xb7\x8e\ +\x7b\x1f\x38\x8c\x1b\xfb\xbf\x10\x7f\xfb\x5d\x5f\x1d\x57\x9f\x79\ +\x36\x96\xc7\x79\x2d\x91\xd9\x80\x3a\x32\x26\x4c\x98\x30\x61\xc2\ +\xcb\x1c\x7d\x59\x99\x30\x61\xc2\x84\x57\x1c\x7a\x70\x7b\x3e\x06\ +\x35\x17\xdc\x60\x7b\x24\xbc\x1d\xdf\x0e\xe7\xd3\x10\x90\x75\xdc\ +\xf4\x40\x98\x31\x72\xe8\xad\x41\xfb\x6a\x19\xeb\xfd\xbd\xf8\xf1\ +\xff\xed\x1f\xc5\xf7\x7d\xe5\xff\x1c\xaf\x7b\xf5\x61\x7c\xf6\xdb\ +\x1f\x8b\xcb\x97\x0f\x63\xcd\x62\x9a\xb0\x3e\x5b\xc5\xd1\x8d\xe3\ +\xb8\xfa\xec\x8d\xb8\x71\xbc\xd4\xa0\x7e\xad\x01\xbf\x7c\x69\xd0\ +\xbf\x99\x80\xc3\xe2\x7f\xa6\x49\x13\xff\xd6\x90\xe8\x7c\xfc\x8b\ +\x68\xfe\xdf\x61\xce\xff\xa5\xf1\xba\x47\x4d\x28\x98\xb9\x20\x77\ +\x5a\x2c\x33\xd5\x26\xae\xad\x27\x20\x66\x5a\xa8\x78\x66\x9f\xdc\ +\x20\x3a\x93\x4f\x66\xf7\xb8\x6b\x35\x25\xf1\x7f\xa2\xf1\x3f\x69\ +\x27\xdc\xe0\xd5\xf4\x82\xb5\x41\x26\xe3\xe8\x65\xe8\x58\xa1\xd3\ +\x18\x25\x20\xda\x56\x80\x2a\xeb\xf0\xd9\x46\xb7\x41\x4e\xf7\xec\ +\xa1\xe2\x8d\x04\x9b\x7e\x9a\x2a\xd3\x93\xa8\xe2\x4e\x02\x44\xd3\ +\x9c\x2d\x1a\xab\x06\xa4\x83\x6d\x8c\x64\x37\xa5\x41\xd7\x79\xdd\ +\x84\x41\x79\x0e\x25\xb3\x33\xd1\x83\x59\x12\x43\x4b\x58\x06\x06\ +\x22\xb1\xc5\x96\x2d\x41\x6d\x90\x6d\x99\x6c\x35\x9e\xa3\x14\x16\ +\x10\x3b\xca\x94\x20\x27\xe5\x1b\xa3\x2c\x5a\xa5\xdd\xd5\xfe\xad\ +\x8a\xc3\x0e\x37\x59\x1c\x73\x93\x53\x84\xbb\x35\x93\xf6\x04\xaa\ +\x3e\x1e\xbd\xb8\xa5\xaf\x2d\xa1\xbd\x12\xd6\x3a\xc5\xe2\x7d\xd3\ +\x10\x9a\x45\x34\x16\xd7\xf4\x65\x1d\x81\xc5\x34\x6e\x18\xe6\x53\ +\x6b\xc8\x11\xe2\x87\xc5\xb7\x4a\x23\x9d\xfb\xa0\x02\x0b\x75\x88\ +\xad\x80\x96\x79\xe7\x95\xa2\x91\xde\xdb\x8c\x0d\x2a\xb7\x69\x82\ +\xc4\x20\x4b\x05\x69\x4d\x31\x12\x23\x8c\xec\xed\x69\xe0\x47\x0a\ +\xe0\x89\x79\xb5\x37\x9b\x0a\x6e\xdf\x82\xf7\x81\x02\x7e\x52\x5c\ +\x4a\xa2\x2a\xe6\xb0\x2f\x3b\xb0\x31\x6d\xe6\x36\xd8\x78\xdc\xc4\ +\x09\x9f\x72\x88\x47\x62\xf3\x43\xd0\x71\x56\x15\xcb\x85\x34\x49\ +\x48\x93\x1d\xc6\x46\xd9\x86\x36\x2a\xd8\x20\x63\xc3\x5e\x8a\x4c\ +\xb9\xb7\xda\x94\x97\x01\xe7\x79\x03\xa1\x15\xb7\xd4\xda\x1b\xbb\ +\x39\x9d\xa6\xdf\x22\x8d\x2c\x3f\x7c\xd6\xa5\xf5\xc0\xb7\x36\xa9\ +\x93\x29\xed\x50\x9f\x17\xc5\x73\x0e\xed\x73\x64\xad\xa8\x41\x6f\ +\x05\x1c\x88\xc0\xef\x06\xd0\xe7\x43\x62\x43\x25\xf0\xe1\xff\xd7\ +\x1b\xa1\xcb\xd5\x49\x73\x41\xef\x4c\x81\xff\x54\x53\x3d\xd7\xcb\ +\xb8\x7e\x7c\x3d\xae\xeb\xda\x71\xb2\x5c\xd9\x9e\x5f\x82\xcf\x17\ +\xb3\x38\xdc\x8b\xf8\x8c\x47\x1e\x8e\xb7\xdd\x7f\x39\x7e\xea\x1b\ +\xbe\x35\xbe\xf3\x6f\xff\xc3\xd8\x91\xf0\xec\xe8\xa4\x32\x2b\xbf\ +\xe3\x06\x50\x8c\x6a\x40\x99\x4d\x98\xf0\x5b\x8f\x51\x3f\x15\xc1\ +\x71\x76\xba\x3e\x89\xd9\x72\x1e\x5f\xfe\xb5\x5f\x1a\x1f\x7c\xf6\ +\x7b\xe2\x6d\x9f\xfa\xfa\xb8\x7c\xe9\xee\xd8\xe3\x89\xfc\x5d\xae\ +\x0f\xd9\x81\x39\xa2\x73\x21\xaa\x5c\xa8\x93\xfb\x43\x5c\xb4\x3b\ +\xbe\x23\x36\xb2\xf2\x93\x12\xca\x85\x63\xdf\x3e\xda\xc4\x46\x25\ +\xe0\x5b\x37\x6e\xf9\x58\x65\x0b\x03\x9a\x43\x9a\x73\x87\x0f\xed\ +\xb2\xf3\x0d\x5d\xeb\x11\xa6\x0e\xb9\xcf\x1d\x9d\xb8\x01\x5f\x62\ +\xab\x94\x28\x6b\x02\x27\xaa\x8f\x5f\xae\x85\x22\x3c\x46\x93\x43\ +\x07\x14\x9d\x31\x10\x6d\x7d\x49\xd2\x53\x5d\xf5\x6c\x6f\xe1\x80\ +\x11\xb9\x05\x5c\x12\x86\xb3\x9d\x2b\x62\x2f\x19\x77\x1b\xdc\xce\ +\x01\xf0\xb9\x3f\x81\x59\x07\xd0\x2d\x38\xc8\x5b\x01\x44\x3b\xff\ +\x96\x0d\x6e\x92\x60\xdb\x22\x62\xec\xb2\xac\x19\xc0\xf8\x1c\x9d\ +\x14\x35\xc9\x94\xc3\xde\x53\xa2\xce\xc7\x31\xf2\x56\x55\xdc\xa0\ +\x7c\x37\x95\x11\x99\x3f\x4a\xa9\x13\x3b\xe9\xfd\x91\xa1\x75\x65\ +\xe3\x3e\x46\x12\x09\xf2\x03\xc8\xdc\x52\x73\xb9\x8f\x45\x37\xdb\ +\x96\x4a\x53\xdd\xba\xbd\x78\xcb\xce\xdf\xe1\x47\x23\xe4\x9a\x02\ +\x0c\xca\xc2\xa4\xed\x3d\xfe\x2a\x40\xd6\xe8\x6d\xc0\x29\x89\xc7\ +\x02\x21\x7f\x87\x44\x5a\xe9\xfc\x2d\x9b\xad\x6b\xbc\x58\x7e\x08\ +\x48\x3c\xd2\x51\x22\x0b\x47\xf0\x9c\xc6\x86\x43\x34\xc0\x74\x3a\ +\x18\xe4\x43\xfb\x41\xa7\xc8\x36\xcd\x77\x0d\x28\xfa\x96\x0d\xf9\ +\x5b\xd6\x52\x42\x96\x29\xdb\x28\xd3\x21\x6f\x6a\x6c\xda\xe4\x18\ +\x5b\xbc\x19\x52\xe2\xb3\xad\x47\x16\xbd\x0f\x31\xd9\x6a\xd7\x24\ +\xce\x59\x0f\xc8\xb2\x6d\xe3\x56\xb6\x3d\x5e\xc4\xdd\x79\x9d\x9f\ +\x74\x37\xc8\xab\x33\x1e\xd5\xf3\x1c\xb1\x39\x16\x14\x97\xae\xcb\ +\xd1\xd9\x0c\x10\xc3\x2e\xb2\x59\xdb\x8c\x6c\xdd\x8d\x81\xeb\x8f\ +\xac\xda\x5b\x8a\x5c\x68\x16\xed\x3e\x40\x7e\x44\xda\x4a\xee\x27\ +\x18\x93\xd4\xa6\x43\x13\x1d\xd1\xd2\x79\x74\x77\x6d\x10\xa7\x04\ +\xf8\xa8\xad\xf2\xa4\x24\x79\x59\x90\x87\xe8\x3e\x06\x7c\xfc\x29\ +\x43\xff\x80\x54\x9f\xc5\xfe\x6e\x3c\xf0\xd0\x41\x7c\x78\xfd\x23\ +\xf1\x37\xbf\xf5\x2f\xc5\x6a\xbe\x8e\xe5\x8d\x35\xa5\x4f\xfb\x0a\ +\x43\x03\x4d\x98\x30\x61\xc2\x84\x97\x2d\xb8\x6e\x4c\x98\x30\x61\ +\xc2\x2b\x12\x0c\x65\x3d\x28\x1e\xc7\x39\xca\x35\xe0\xb7\x86\xbb\ +\x23\x9d\x01\xdf\xe1\x56\xd8\x4a\x2c\x60\x37\xc8\x44\x98\x2e\x41\ +\xe9\x86\xc1\x3b\x37\xfd\x4f\xd7\x3e\x4b\xff\xea\xbb\xdf\x13\x7f\ +\xe7\x7f\xfc\x6f\xe3\xd5\x71\x2d\x3e\xed\x4d\x0f\xc6\x3d\x77\xdc\ +\x11\xbb\xbb\xfc\xff\x02\x8f\x7e\x9d\xc5\x72\xb9\x8a\xe7\xaf\x9d\ +\xc4\x0d\x0d\xd8\x49\x93\xff\x92\xd4\x85\x22\xe6\x17\xd6\xe5\xdc\ +\xdf\xbc\x79\x32\x4c\xc2\x15\x73\x9f\x97\x45\x34\x9e\x4a\xf3\x13\ +\x65\x4c\x0e\x08\x26\x33\x66\x53\x2e\x92\x67\xc6\xa2\x89\x8b\x41\ +\x64\x1d\x1b\x7c\x68\x42\xc3\x62\x9a\x26\x18\x24\xca\xa9\x49\xc2\ +\x55\xe3\x7f\xd2\x96\x67\x71\x7a\x22\x9b\x15\x42\x5c\x0c\xd3\x59\ +\x6f\xcd\x94\xfb\x01\x52\x59\xd4\x71\x81\x3a\x30\xa9\xf2\xfc\x86\ +\xe4\x8a\x4d\x2b\x78\xd2\xc4\x84\x8b\x36\xb0\x32\x03\x5b\x57\xe8\ +\x85\x50\xbe\xd8\x38\x95\x26\x6c\x99\xba\x37\xa5\x3e\x8f\xd2\x8d\ +\x88\x5b\xc2\xd9\x77\xa8\xf2\xba\x81\x4c\x57\xda\x76\x31\xb6\x6d\ +\x88\xce\xba\x17\x7f\x0b\x64\xf9\x2a\x61\x45\x5b\x28\x71\x63\xd3\ +\x24\x28\xa8\x6f\x0a\x5a\x4c\x9c\xfb\x39\xf9\x61\x32\xee\x72\x34\ +\x33\xca\x95\x4d\x55\xae\xf7\x89\x27\xa2\xae\x27\xb2\x4d\x40\xc6\ +\x6b\x49\x9d\xa2\x6d\x6e\x63\xe7\x45\x32\x91\xdc\xec\x4c\x19\x3c\ +\x1b\x7e\x0d\x7a\x2a\x13\x16\xcf\x32\xc4\x5a\x93\x59\xd3\x72\xec\ +\x98\x34\x65\xe3\xf4\x15\x67\xe1\x36\xf9\xdb\xaf\xfa\x29\xf6\x55\ +\x0e\x6d\xac\x77\x54\x69\x06\x71\xa9\xb6\x71\x4e\xe8\xf6\xa8\x76\ +\xe1\xf8\x51\x8c\x05\xdd\xd3\x83\xb2\x4d\xa3\xb9\x6d\xbb\x59\x53\ +\x04\xd1\x1e\x93\x1e\x07\x7a\x69\x2f\x08\x13\xdc\x37\x14\xdb\x2f\ +\xce\xce\x15\x65\x03\xec\x0a\xc3\x71\x72\x0e\x2e\x8c\x09\x85\xec\ +\x15\x79\xa3\x4f\xbc\x75\xc8\x37\x19\x6c\xa8\x31\xfa\xd6\x45\xba\ +\x72\x91\xec\x13\x06\x4d\x33\xd6\xa6\x93\x8a\x06\x46\xaa\xb6\xda\ +\x02\xc7\x78\x91\x03\x6e\x61\x48\x31\x37\xa5\xb8\x15\x6a\x9f\x9a\ +\xaa\x8d\xfa\x4d\xde\x0c\x2c\x9e\xfd\xae\x98\xfe\xe4\xd8\x8a\x84\ +\xeb\x53\x81\x73\xa8\x4f\x3f\xec\x00\x5e\x7b\x4b\x19\x39\xaf\x6a\ +\xbf\x0c\xfb\x94\x80\x1d\xa4\x65\xa9\xbb\x35\x36\x0a\xa8\x2d\x33\ +\xca\x40\x42\xf9\xea\x5d\xe5\xba\x56\xb0\x4c\xe5\xc8\x57\xc8\xa9\ +\xbf\x2b\x5e\x2e\x4f\xe2\xea\xb5\xe7\x74\xed\x38\x56\xfd\xb8\x4e\ +\x28\xad\x2a\x33\xd3\xf9\xfb\xbe\x4b\x07\xf1\xa9\xaf\x7f\x24\x1e\ +\xb8\x3f\xe2\x9f\xfe\xcf\x7f\x2d\x7e\xf8\xfb\x7e\x32\x76\x0e\x52\ +\xef\xcc\x7c\x30\x01\x78\x81\x0c\x8b\x74\x54\xf4\x84\x09\xbf\xb5\ +\xc8\x8e\xe8\x73\x8d\x3e\x9c\xb1\xd6\x2c\xa6\xcd\xf6\xe3\x2b\xff\ +\xfa\x57\xc5\x0f\xfd\xec\x37\xc7\xdb\xde\x72\x7f\xec\x5f\xba\x33\ +\x16\x35\xfe\x99\x71\x66\xd3\xb1\xe0\xe1\x8d\x02\x11\xdd\x9b\xe3\ +\x8b\x43\x6c\x38\x86\x53\x94\x3a\x68\x82\x19\x84\xd2\x2b\xa1\xf5\ +\x6d\x00\x4a\xcf\x8d\xd7\x36\x48\x9b\xcd\x28\x09\xcf\x9c\x12\xf2\ +\xde\x6d\x9d\xbf\x2d\xcf\x4d\xfb\x6b\x7b\x03\xf9\xb6\x64\x0b\x79\ +\x46\xcb\xb4\x9c\xff\xbc\x48\xc8\x75\x94\x6b\x1f\x72\x6b\x13\x83\ +\x9f\x73\x8a\xf3\x76\x86\xfd\x65\xdc\xb8\xc9\x46\xf0\xb9\xcf\xf5\ +\x25\x94\x50\xf0\xb9\x18\xde\xa1\x14\x8a\x9a\x1d\x07\xab\xa0\xad\ +\x25\x6e\x7f\x19\x72\x8c\xc7\x3e\xde\x06\x7c\x87\x56\x8e\x8b\x31\ +\xe8\x6e\x91\x16\x6c\x74\x50\xe4\x51\x10\x6b\x5d\x89\x86\xba\x14\ +\x4c\xb2\x71\xb9\x36\x2a\xf6\x6d\xef\xd3\x86\xf7\x37\x21\x39\x6f\ +\x3b\x5d\xfa\x18\x22\x81\xb2\x48\x67\x47\x48\xb0\xab\xab\x56\x1a\ +\x08\x45\x17\x6f\x8b\x3a\x77\xe7\x93\xcb\xd4\x46\x4a\x32\x85\xb5\ +\x46\xf9\x8a\x2e\x36\xf9\x01\xca\xb1\x15\x58\x90\x0c\x41\x5f\x0f\ +\xd8\xc2\x9a\x12\xc4\xa0\x47\x96\x3f\x4e\x4a\xbb\xd6\x9b\xd3\x41\ +\x99\xc5\x13\xd7\x75\x2d\x89\x31\x22\xa1\xcd\x7a\x83\x3d\xf1\x48\ +\xa6\x40\x69\x5d\x62\xf3\x5b\x39\x25\xd9\xf1\x28\x6d\x91\x79\x7d\ +\x6c\x66\x40\xa7\x1b\x2b\xba\x9f\x81\xb1\x3c\xe9\x8d\x84\xe3\xb6\ +\xed\x12\xe8\x3a\x80\x8d\xad\x30\x08\x33\xcd\xc6\x56\xbc\x75\xa3\ +\x3c\xdb\xd6\xf4\xcd\x79\x8c\x01\xdf\x32\xc7\x23\x83\x91\x47\x6f\ +\x47\xaa\x01\x69\x93\x65\xd8\x58\x64\xff\x63\x97\xba\xdd\x86\x22\ +\x6c\x1f\x3f\xdd\x9e\xa8\xc7\xf2\xf3\x40\x67\x17\x65\xe4\x2e\x5d\ +\xf4\xb0\x4f\x9a\x57\xe8\x6e\x9f\x63\x25\x02\x74\x3e\x99\xe6\xb2\ +\xc0\x53\x16\x31\x0e\xa4\x71\x3a\xe8\xfa\x20\x14\x86\x38\x4b\x90\ +\x90\x30\x7b\x3e\x8e\xa0\x31\x52\x70\xc1\x36\xc0\x4f\xf7\x68\xae\ +\x09\xbc\xd9\xc5\xff\x15\x2d\xd9\xee\xe2\x34\x1e\x7c\xc3\x2c\xde\ +\xf3\xf4\xf7\xc6\x37\xfe\xdd\xbf\x16\xfb\x87\xf3\x58\xf1\xbf\xe6\ +\xe3\x7c\x84\x6d\x8f\x13\x26\x4c\x98\x30\xe1\xe5\x86\xbc\x5e\x4c\ +\x98\x30\x61\xc2\x2b\x14\xe3\xa1\x6d\x0f\x6c\x37\x03\xec\x02\xc4\ +\xf6\x18\x38\xd1\xb2\x5b\xe9\x48\x33\x38\x28\xb4\x9d\xe5\xe5\xd4\ +\x99\x29\x46\x57\xa4\x67\x29\x3a\x3b\x9f\x9e\x1c\xc5\xce\x7a\x1d\ +\x7f\xef\xbf\xfa\xe2\xd8\xfb\xe0\x2f\xc7\x67\x7f\xda\x6b\xe3\x8d\ +\x0f\xbe\x26\xe6\x8b\x9d\x98\x7b\xd5\x6b\x1d\xcb\xd3\x55\x3c\xf7\ +\xec\x49\x1c\xdd\x38\x31\xcf\x7f\xa6\xe1\x13\x37\x19\x6b\x92\x31\ +\xe3\x86\x89\x9c\x8b\x67\xf2\x61\x55\x16\xc2\x79\xfa\xa6\x8d\xfc\ +\xcd\xf8\x75\x9d\x26\x05\xf9\x3f\x0c\x39\xe1\xe8\x5b\x3c\xd0\xa4\ +\x19\xa7\x73\x1e\xcc\xa6\x88\xbc\x25\x0d\x93\x0a\xfc\x69\x2a\xc9\ +\xe4\x02\xde\x79\xa6\x05\x13\xeb\xf5\x8a\x85\x34\x4d\x43\x96\x0a\ +\xb5\x48\x41\x39\xed\xd4\x39\xa8\xb4\x12\x9b\x53\x5a\x52\x3a\x75\ +\x66\x55\x65\x19\x58\xdb\x60\xe1\x5f\xbd\x42\x65\x56\x83\x1e\x67\ +\x59\xee\x92\xb4\xc2\xe9\x92\x1d\x69\xb7\x68\x32\x2e\x77\x15\xb3\ +\x95\x76\x30\x38\x67\xdf\xc0\xcc\xe5\xe9\xd4\xdb\xe8\x3a\xe4\x2b\ +\xa5\x08\x29\x37\x50\x10\x10\x3a\x2e\xdc\xd2\x66\x03\x57\xe7\x9c\ +\x6c\x2b\x77\x18\x07\x19\x55\xdd\x07\xd0\x07\x86\xf4\xa9\x1b\x9b\ +\x0c\xa4\x6d\xb4\x69\xc1\x60\x44\xfb\x6b\x5b\x81\x3c\xd0\x40\x36\ +\xd8\xcb\xf9\x24\x18\x41\x7d\xa1\xe5\x25\xcb\xc5\x89\x8c\x59\x4b\ +\xa6\x6f\xb0\x90\xc5\x4d\x3f\x27\x48\x83\x0c\x24\xee\x45\x32\xf3\ +\x04\xf5\xf5\x35\xaf\x73\xc4\x14\x27\x29\xf7\xc2\x59\xd9\x59\xee\ +\x18\xb9\x02\xf9\x10\x57\x39\x86\xc0\x2b\x23\x2b\xcf\xf4\x87\x81\ +\xf2\x93\x4e\x9b\xf4\xdd\x69\x44\xef\xc0\x3b\xad\xc5\xa2\x3b\x72\ +\x83\xe9\xdb\x8a\x11\xac\x42\x47\x5b\x65\xcc\x62\xd8\x60\x89\xa8\ +\xc8\xa4\x36\x82\x6c\xdd\x8c\x93\xde\xc9\x5f\x84\xd7\xa8\x0e\xd2\ +\xe2\xad\x72\x80\x8e\x0b\x6d\x37\x1c\x70\x2d\x64\x3b\x08\x12\x43\ +\x1d\x52\x06\x97\xcd\xb1\x29\x8d\x03\x5f\x8e\x39\x0c\x52\x31\xa0\ +\x2c\x06\xf1\xe6\xe8\x26\x80\x4e\xa4\x98\x7e\x0a\xed\xb8\x00\x5d\ +\xa6\xce\x75\xac\x12\xa3\x3d\x50\x9c\x00\x39\x62\xb7\x31\x4a\xf8\ +\x31\xb0\xe5\x42\x8c\x77\xfd\xc8\x77\x77\xcb\xbc\x2d\x9d\xa0\x6c\ +\xbe\x61\xae\x98\x07\x5e\xb8\x11\xe3\x87\xd3\xfa\x38\xf3\x79\x36\ +\xcb\xe0\xf3\x97\x03\x8c\x45\x02\x1e\x4a\x76\x13\xb6\x0c\x07\x6a\ +\xcb\x85\x98\xa1\x88\xde\x11\xd5\x03\xb0\x71\x59\x90\xe5\xeb\x4f\ +\x8f\x8f\x8f\xe2\xb9\x1b\xd7\xe2\xc6\x8d\xa3\xec\xcb\xfa\xcc\x7c\ +\x3d\x38\x8b\xfb\xef\x38\x8c\x77\xbe\xe1\xbe\xb8\xf3\xe8\xf1\xf8\ +\xd6\xff\xe1\x7f\x8e\x9f\xff\x95\x5f\x53\x5f\x97\x9d\x5d\xe2\xd1\ +\x39\x64\x03\x14\xb9\x29\x03\x9b\x11\x4a\x3f\x61\xc2\x6f\x3a\xd4\ +\xf7\xf2\x78\xda\xf5\xeb\x4e\x17\xb3\xfd\xf8\x8e\x7f\xf2\x8f\xe3\ +\x1f\x7c\xef\x5f\x88\x87\xde\x7e\x21\x0e\xef\xb8\x12\x07\x8b\x59\ +\xec\xce\x75\xde\x57\x5f\xc6\xb6\xc7\x3e\x1b\xe4\x58\x86\xe3\xd5\ +\x01\xc9\xc8\xc4\x87\x33\x59\x34\x0d\x3b\xd2\x3b\x05\xc7\xbf\x68\ +\x9f\xa6\x45\xe0\x07\x5b\x8f\xb7\x10\x11\x2b\xe4\xb9\x42\xe5\x28\ +\x39\x09\x9c\xa6\x63\xc1\x72\x20\x82\x43\x71\xe0\x85\x3e\x9d\x9b\ +\x56\xf0\xa1\x47\x61\x4a\x98\xe7\x6d\x8c\x14\x9c\x0f\x7a\x6d\x30\ +\xc1\xd8\x07\x78\xda\x93\xc4\x49\xcb\x3c\xdb\x32\x7d\xde\x94\xaf\ +\x42\x97\xaf\x8d\x39\x13\x6d\x9f\x99\x33\x85\x7d\x2a\xb4\x0f\x6a\ +\x9a\x71\x86\x5b\x01\xfb\xcc\x58\xf9\xb8\x40\x1b\xfb\x0e\x18\xd9\ +\x67\x09\x52\x96\xb1\xe9\x46\x31\x2d\xa3\x8c\x3e\x2d\x9a\xce\x7a\ +\x6c\xec\xa9\x43\xda\x64\xdc\xba\xdc\xb2\x0f\x09\xb0\x19\xe9\x63\ +\xa2\xeb\x44\x7f\xda\x06\x7a\xa7\xb9\x09\x08\xb3\x6e\x6c\xe8\x0b\ +\x49\xa5\xaf\x0d\x36\x65\x69\x98\x76\xff\x6d\xc6\x9e\x72\xd7\x52\ +\x16\x32\xad\x3a\xb2\x47\x7c\x0a\x07\x96\x37\x23\xc0\xcb\x01\xdb\ +\x34\xaf\xa5\xa1\x16\x74\x28\xc2\x1f\x8f\x91\x34\x66\x53\x70\xdf\ +\xb2\x46\xe3\x12\xf8\xfa\xd8\x56\x86\x8c\xf7\xd3\x66\x5b\x97\xe5\ +\x14\x2d\x5d\xfe\x30\x30\x97\xf4\x36\xed\xd4\xfc\xa8\x2d\x44\x20\ +\x83\xaf\x62\x77\x69\xcd\xdb\xb2\xe3\x11\xb6\xb9\x0d\x6f\x1f\x26\ +\xf0\x01\x33\xb6\xac\xb6\x35\xd2\x63\x06\x3e\xd2\x55\x9f\x74\x30\ +\x36\xd6\x20\x4b\x95\x68\xcd\x79\xf3\xc1\x85\x89\x2c\x83\xf5\x6d\ +\x48\xdb\x94\x4d\x63\x4b\xaf\x4d\x7e\x84\x71\x86\x63\x54\xe2\x8a\ +\x8c\xee\xdb\x86\x88\x6c\xbb\x6d\x1b\x32\x4e\xcf\x19\x9a\xda\x64\ +\x83\x97\xf2\x23\xe1\x38\xfb\xad\xee\x75\x2e\x1e\x74\x24\x28\xda\ +\x51\xd1\xec\x7f\x37\x45\xa1\xcd\x21\xf2\xd8\x53\x59\xb0\x71\xf9\ +\xb0\xad\xb2\x49\xc8\x79\x7c\xd8\xa7\x48\x6d\x53\xce\x2c\x47\x46\ +\x0f\x2a\xb6\x41\xda\xd2\x93\x3e\xe7\xb1\xe2\xba\x1c\xed\x54\xf1\ +\x26\x9d\xfa\xa7\x18\x9f\xb7\x65\xb8\xd0\x38\xea\xc1\x47\x4f\xe3\ +\xc7\xdf\xfb\x0f\xe2\x3b\xbf\xfb\xef\xc7\x62\x7f\x16\xeb\xe3\x6c\ +\x21\x8e\x02\xd2\x65\xdf\x27\x97\x09\x13\x26\x4c\x98\xf0\x72\x44\ +\x5e\x41\x26\x4c\x98\x30\xe1\x15\x8c\x17\x1a\xc8\x5a\xd7\x83\xfc\ +\x8e\xc7\x18\xcb\xc6\x3a\xe4\x39\x4e\xde\x96\xb7\x1f\x4f\x26\xc5\ +\x54\x3c\x9e\x6c\x20\x3e\x3d\x5a\xc6\xee\x85\x8b\xf1\xb7\xfe\xf4\ +\x9f\x8d\x6b\x3f\xf9\x43\xf1\x39\x8f\xbd\x3a\xde\xf4\xc8\x83\xb1\ +\x7f\xb0\x1b\x33\x0d\xd6\x59\x18\x58\xad\x56\xf1\xcc\xd3\x37\xe2\ +\xc6\x8d\x13\xd1\xfd\x9f\x69\x39\x90\xaf\xf9\x81\x62\x0d\xd7\xeb\ +\x5d\x60\xf9\xda\x22\xe9\x7a\x62\x40\xd0\x86\x5f\xd5\xf1\x74\x5a\ +\xcc\x95\x96\xd9\xbb\x7d\xa0\x47\x59\x86\x70\x8e\x49\x83\xd2\xda\ +\x61\x72\xd1\x37\x82\x76\xe6\x62\x66\x2a\xdf\x68\x31\xad\x6d\xd6\ +\xa7\xf5\x54\x1a\x0b\x69\x2b\x09\xc5\x7b\x72\xdd\xfe\xbd\x4d\x9a\ +\xd0\x8b\x0b\x68\xf0\x95\xd3\x8f\xb4\x48\xa4\x1c\xe4\xc2\x94\xc9\ +\x2d\xa4\xd7\x0d\x9c\x57\x3a\xdd\x32\x87\x1e\x87\x06\xf4\x96\x87\ +\xb1\x52\xd8\xf6\x2e\x20\xe8\x00\xce\xd9\x23\xa7\xc8\xec\x8a\x54\ +\x41\x9c\x33\x32\x2b\xa3\xda\x87\xc6\xd8\xe7\x2d\xb0\xa5\x1a\x98\ +\xdb\x24\x68\x31\x05\x51\x70\x1b\xba\xfd\x3a\x60\xa2\x98\x6d\x46\ +\xb9\x29\xc6\xac\xb1\xa1\xdc\xae\x5b\x60\xdf\x96\x05\x37\x5a\x40\ +\xf9\xce\x90\xd3\xc8\x5e\xa0\x1a\x6e\xae\x78\xf1\x4a\x34\x0b\x60\ +\xc4\x92\x33\xf1\x4c\x1a\x36\x6d\x79\xb2\x8c\xc5\x00\xaf\x76\xd9\ +\x1e\x9b\xa6\x47\x31\x69\x56\xe5\x6b\x9d\xb1\x17\xe1\x78\xc5\x28\ +\x31\xff\x1f\x55\x3a\xf2\x72\x59\x49\x8e\x9d\x17\xe7\x14\xf3\xa1\ +\x9f\x4a\x2d\x63\xcb\xfa\xe9\x37\x67\xd0\xed\x00\x39\xc4\xcd\x34\ +\xb0\x39\x2f\x13\x2a\xa9\x9b\x96\xd8\xa1\x18\x62\x29\x9c\xef\x60\ +\x87\x56\x0c\x7d\x43\x01\x95\xbd\xb6\x5e\x0c\xa4\x65\xde\x14\xc6\ +\x82\xb1\x8f\x17\xc0\x26\x79\x39\x1f\x03\xe5\xd8\xbf\x60\x2b\xce\ +\x3d\x8a\x38\x1e\x69\x37\x17\xfe\x36\xc9\xc7\x71\x42\x86\xb6\x25\ +\x5d\xc6\xf6\x81\xb8\xfb\x8e\x37\x1b\x87\xae\x87\x2b\xad\x60\xfd\ +\x06\x1b\xab\x5b\xe3\xf6\x7a\x34\xa9\x4d\x97\xec\xff\xa4\xb3\x4e\ +\xd9\x4d\x2c\xeb\x20\xfb\xfe\x6f\x35\xf7\x3d\x5b\xcb\x8b\xdc\x70\ +\x1e\x1b\x6e\xc4\xeb\xfc\xca\x83\xc5\xc3\x0d\x4e\x9d\x33\x87\xec\ +\x3a\xe4\xc6\xa0\x7e\xf8\x18\x89\x46\xd8\x28\xb6\xd5\x79\x23\xc8\ +\xd7\x00\xc5\x14\x87\x62\x0d\x70\x32\x6e\xfc\x50\x46\xfa\xf5\x3a\ +\x4e\x8e\x6e\xc4\x73\xd7\xaf\xc5\xd1\x31\xaf\x74\x94\x5c\x36\x73\ +\x39\x38\x98\x9f\xc6\xeb\xef\xbc\x2b\xde\xf9\xc6\x87\x62\xf9\x91\ +\x5f\x8a\xbf\xfd\x3f\x7c\x75\x3c\x71\xf5\xf9\xd8\x59\x1e\xc7\x19\ +\x77\x9f\x71\x61\x7f\x64\x58\x74\x61\x20\xb1\x01\x23\xdd\x84\x09\ +\xbf\xa9\xa8\xee\x19\xb1\xd2\xf8\x69\x37\xde\xfb\xeb\xbf\x16\x7f\ +\xe5\x1b\xbe\x34\x1e\x7a\xc3\x59\xdc\x73\xff\x95\x38\x3c\x38\xf4\ +\xab\xae\x39\xde\x00\xdb\xbc\x26\x01\x8e\x6e\x1c\x70\x2c\x56\x40\ +\xac\x4d\x8f\x3b\x36\xc7\xe8\x66\x7c\xc5\xe1\xe7\xc3\xa3\x95\x1c\ +\xf3\x49\x0d\x04\x2a\x93\xa6\xd3\xaf\xff\xf7\xb6\xcf\x0f\xd8\x56\ +\xba\x21\x16\x3a\x6e\x22\x23\x72\xcb\xf3\x2f\x1b\x86\x7d\xce\x1a\ +\x56\xb1\x49\x99\xf0\x3f\xb5\xa7\xba\x26\x76\xb9\x86\xb1\x93\xea\ +\xeb\x53\x02\x6c\x1b\x4b\xe6\x6b\x2e\x6c\x21\xcd\x33\x1f\xdb\x97\ +\xd2\x49\x04\xb3\xc5\xb4\x0c\x64\x6d\x52\xc2\xd6\xe7\x4d\x05\xfb\ +\xd8\xb2\xdc\x46\x6b\x9c\x1a\x7b\x11\x8c\x71\x49\x76\xab\x54\xb6\ +\x4b\x32\x63\xec\x07\x26\x31\x90\x45\xb8\x08\x00\x5e\x61\x64\x5a\ +\xf4\x46\x52\x26\xa3\x50\xa9\x5d\x38\xda\xa5\xf6\x5b\xc7\x43\xe3\ +\x27\xce\xb1\x55\x9f\x51\x9a\xd2\x3b\xe0\x4f\x84\x76\xa5\x63\x84\ +\x44\x9c\xdf\x93\x02\x9b\x7d\xde\xfa\xbc\x4e\xa5\xde\x7c\x35\xb6\ +\xe5\x29\x36\x0f\x6b\x53\x22\xcb\xd9\x0c\x35\xca\xfd\x73\x8e\xb7\ +\xad\x88\xbc\x06\x32\x16\x92\x57\x33\x5c\x4b\xd2\x80\x7c\x86\xcb\ +\x20\x7a\x3e\xd8\x22\x2c\x1b\x90\x51\x95\x5f\x05\x70\xfa\xdb\x80\ +\x36\xa8\xe2\x0d\xe8\xcb\xa7\x53\x95\x3c\x4b\x3b\x32\xaa\x36\x44\ +\xd4\xad\x3c\xa0\xd3\x8c\xc4\x94\x35\x3d\x56\xa2\xf4\x5e\x9c\xb6\ +\x23\xdb\x6d\xa4\x1d\x31\x65\xb0\x99\x1c\x67\x9e\x9b\x30\xd2\x0a\ +\x9d\x06\xcd\xa8\x74\xf4\xa5\x52\x75\x1f\x48\xbd\x3e\xed\x6a\x8c\ +\x9b\xdc\x75\xe2\x8c\x1c\x2b\x0c\xac\xd4\x4d\x6f\xb0\x31\x40\x3f\ +\x2a\xda\xb6\x2d\xe5\x21\x4a\x4e\x66\x38\xdb\x38\xec\x5a\xf8\x29\ +\x48\xef\x6b\x1c\x55\x6c\xc7\x89\x4e\x9f\x75\xab\xfd\x0b\x36\x26\ +\x83\x8d\x21\xa6\xf7\x77\xb1\x49\x23\x73\xd8\x95\x1e\x82\xf6\x92\ +\x13\x9f\x2f\x71\xb6\xdd\xe2\xc4\xc3\x39\xb9\x60\xaa\x06\x4c\x5d\ +\x7e\x40\x6a\x9b\x96\xac\x7f\x64\x31\x14\x51\x4a\xcb\x14\xd3\x77\ +\x87\xee\x8b\xc8\xb6\x67\x71\x78\x61\x27\x5e\xfd\x96\x75\x7c\xf7\ +\x8f\x7c\x53\x7c\xff\x0f\x7d\x4f\xcc\xf7\x67\x7e\x43\x4b\x6a\xdb\ +\xf3\xe0\x71\xc2\x84\x09\x13\x26\xbc\xcc\x30\x5c\xbf\x26\x4c\x98\ +\x30\xe1\x95\x86\x1c\xc8\xde\x62\x28\x2b\x81\x75\x6c\x3a\xf4\xc8\ +\xf7\x85\xc6\xbd\xad\x73\xe2\x8a\xc7\x69\xcf\xd3\x05\x26\x24\x9e\ +\x67\x58\x27\xc5\x72\x1d\xbb\x07\x7b\xf1\x8f\xff\xce\x37\xc6\xcf\ +\x7c\xfd\xdf\x8a\xb7\xbd\xee\x9e\x78\xc7\x1b\x1f\x8d\x39\x0b\x5e\ +\x52\xaf\xd6\xab\x58\xae\x96\x71\xf5\xea\x8d\xb8\x7e\x7d\x15\xeb\ +\x58\xe5\xcd\x51\x8f\xfc\x3b\x03\xb6\xcc\x72\x99\x55\xe4\x93\x67\ +\x86\x67\xcd\xf2\x03\xbf\x2b\xf9\x7c\xd7\x37\x92\x76\x87\xc5\xb4\ +\x74\x63\xeb\xe1\x0a\x91\x02\x26\x08\x7c\x9a\x36\x3c\xc3\x11\xa7\ +\xb0\xeb\xff\x1e\x51\xa2\x5a\x4c\xf3\xa4\x45\xc5\xa1\x14\xfc\x7d\ +\xd5\x7a\x29\xa2\x5e\xf1\xe8\xc9\x87\xd8\xcd\xa2\xd9\x36\xea\x5e\ +\x40\xca\xc7\xb4\x21\xca\xfe\x73\x02\xe3\x79\x5a\x69\x36\x48\x49\ +\xbe\xda\x46\xb1\xb7\x92\xde\x22\xb3\xd6\xb5\x7c\xa3\x1e\x6a\x39\ +\x82\x24\xe7\x9c\x98\x62\x33\x88\x8a\xb0\x6c\x10\x9a\xc7\xa3\x27\ +\x5d\x43\xa6\xc2\xc8\xc4\x70\xba\xb1\xc1\x8b\xc3\x56\x0a\xfb\x1c\ +\x97\xd3\x99\x8f\x23\x07\xa3\x13\xa2\x23\x9c\x73\xe4\x4f\x19\x67\ +\x8b\xc0\x63\x98\x32\xc7\x67\x3d\xd5\x14\xdb\x04\xe8\x3b\xf9\xe5\ +\x93\xbd\xee\x3d\x0f\xef\x05\x2d\xf6\x61\x05\x68\x87\x5c\xac\x6a\ +\xb9\xef\xcc\x28\xee\x5f\x3e\xb3\xb8\x45\xda\xcd\x02\x59\x05\xdb\ +\x54\x5a\x85\x5c\x14\xe3\x35\xa8\xd8\x8f\x62\x16\xcf\xd0\x93\x9e\ +\xa7\xce\xb0\x77\x3a\xa5\xe7\x66\x63\x3f\xf9\xc6\x7f\xb0\xc9\xe7\ +\x8e\x68\x9e\x40\xeb\x7c\xcc\x4b\x8e\xce\xe5\x73\xc5\xa0\x47\xb1\ +\x5a\x83\xd8\x4d\xc3\xd6\x6d\x32\x6a\x18\xc8\x12\x8f\xa4\x86\xd7\ +\xbf\x09\x28\xca\x97\xb7\x7d\x3c\x2a\x76\xf3\x57\x30\x9f\x91\x89\ +\x3e\x76\x6e\xc2\x68\x9f\x39\x0f\x19\xe6\x27\xc5\x5b\xc9\x6e\x2b\ +\xd8\x12\x16\x54\x67\x7f\x6e\xd6\x66\x93\x48\xa7\x4e\xe5\xaa\xc0\ +\x37\xb5\x11\x94\xeb\x73\x72\xc9\x28\x72\xfa\xde\xa4\xdf\x18\x34\ +\x2a\xd7\xd1\x71\xc9\xf6\xbc\xd5\x0b\xc2\x0d\x79\x33\xec\x92\x06\ +\x4d\xc2\xb4\x29\x75\xa1\x24\x4a\xec\xbe\x51\x5d\x4c\x3c\x21\x15\ +\x5d\xa2\xcc\xc2\xff\x2b\xc9\x79\x97\xd7\x3f\x7a\x61\x0d\xdf\x28\ +\xd5\x4b\x64\xe0\x0f\x22\xcb\x9c\x4c\x28\xa2\x65\xe3\x30\xc2\x86\ +\x25\x5f\x71\xde\xc9\x8a\xed\x50\x6c\x76\x4c\xa1\x0a\x25\xb5\x5f\ +\x1d\xac\x2b\x08\xc7\xc1\xd1\xf1\x8d\xb8\x7a\x74\x2d\x6e\x1c\x1f\ +\xa7\x5e\xe9\xf6\x66\xb3\xb8\xb4\x37\x8f\x37\x3d\xf8\x40\xbc\xe3\ +\xf5\xf7\xc7\x73\x3f\xf8\x13\xf1\x57\xbf\xec\x6f\xc7\x33\xfb\x4a\ +\x75\xa2\x93\x39\xe7\xfb\x91\x5b\x77\xfa\xe2\x89\x70\x93\x9b\x09\ +\x13\x7e\x2b\x30\xf4\x42\x51\x3a\x38\x75\x4e\x3f\x5a\xce\xe2\x7f\ +\xfa\xba\x2f\x8d\xbd\x4b\xbf\x1e\x8f\xbd\xe5\x75\x71\xe5\xc2\x1d\ +\x7e\x8a\x3f\x7f\x70\xc4\x58\x69\x37\x8f\x95\xe1\x78\xe1\x50\xa8\ +\x45\x71\x68\xb6\x75\xb2\xf5\x75\x30\x49\x1f\x66\xc3\x53\x0c\xfd\ +\x81\xe7\x2b\x7b\x34\x0e\xf0\xda\xe4\xd0\x09\x9b\x1a\x2f\x79\x21\ +\xad\xce\x03\x84\xb6\x4d\x87\x19\x43\x5a\x51\x61\x40\x96\x75\xeb\ +\x14\xca\x86\x50\x76\x5c\xe3\xd6\xab\x75\x5d\xf7\xca\x70\x84\x76\ +\x37\x4a\x62\x38\x2b\xd9\xd7\x99\xcf\x61\xa3\x17\x2f\xa6\x4a\x9b\ +\x21\xbf\x0e\xb7\x43\xe7\xbe\xb1\x69\x49\xc7\x20\xf3\xe2\x93\x79\ +\x83\x8a\x6f\xe9\xfc\x85\x73\xb5\x46\x1b\xb7\x5f\x92\x5b\xa1\x61\ +\x7a\x2c\x00\x34\xec\x79\xd9\x00\x29\xf2\x3b\x04\x30\x8e\x1d\xb4\ +\xc9\x1f\x31\x88\xf0\x8e\xa5\xd5\xfa\x83\x58\x7d\x0f\x71\xd9\x83\ +\xd2\x58\x90\x54\x95\xe3\x5c\x33\x14\x6b\x62\xb8\xfe\xf7\x35\xab\ +\xc0\x25\x0b\xbe\x3f\x59\x86\xb6\xd8\xd8\x79\xef\xca\xb8\xbb\xc8\ +\x56\xac\xb0\x19\xf3\x24\x0d\x5b\x1e\x1d\x40\xda\x72\xc4\x95\x06\ +\x7f\xa9\x72\x9c\x6a\x6d\xfb\x42\xda\xca\x2d\x50\x91\x6d\xc5\x50\ +\x35\x8a\xde\x8c\xa4\x1c\x2f\x79\xcd\x43\x88\x52\xe9\x88\xe0\x5c\ +\x18\x40\x8c\xbc\xfa\xaf\x37\x43\x64\xd8\x3e\xc9\x42\xda\xe6\x7e\ +\x50\xe8\xb4\xe6\xb6\xcb\xd6\x05\x6a\xbd\xcb\x50\x26\xd8\x6e\x42\ +\xda\xa0\x4a\x7a\xec\x53\xc1\x8c\x36\x2d\xb4\x25\x72\xd9\xb5\xae\ +\x00\xd5\x9c\x69\x33\xe7\xcb\xb5\x15\x39\x1e\xfa\x88\x6d\x37\x4b\ +\xad\xf9\xe0\x00\x00\xff\xf4\x49\x44\x41\x54\x81\xed\xa0\x82\x50\ +\x68\xbe\xd8\x6d\x50\x47\xe0\xe4\x63\x3f\xe5\x49\x5f\xe7\xa5\xcd\ +\xa6\x05\x6e\x03\xa5\xdf\xca\xa3\x89\x8a\xc7\xf2\x81\x16\xa0\xa9\ +\x77\x9e\x37\x39\xc6\x52\xe8\xdc\x2c\xb7\x59\xc6\x0e\x08\xf3\x07\ +\x45\xcd\xa2\x70\x54\xdb\xac\x47\x72\x84\xf4\x59\xbd\x60\x70\x54\ +\x5b\x78\x9b\x77\x2c\xbf\xaa\x6f\xff\xd7\xda\xee\x7c\x16\x17\x0f\ +\xf7\xe2\xca\xeb\xaf\xc6\xb7\xfe\xc0\xdf\x8c\x9f\xff\xe5\x9f\x8e\ +\x99\xe6\xdb\x6b\xe6\x21\x4a\x43\x5b\xe1\xe7\xb6\xed\x32\x61\xc2\ +\x84\x09\x13\x3e\xa9\xe1\x29\xc1\x84\x09\x13\x26\xbc\x12\xc1\x00\ +\x96\x81\xac\x07\xc5\x23\x20\x1f\x06\xb7\x63\x66\x10\x9e\x03\xf2\ +\xf3\x4e\x9a\x1f\xeb\x46\x13\x8e\x41\xae\xb0\x95\x74\xb9\x8a\xd5\ +\x62\x27\x7e\xe1\x47\x7e\x24\xbe\xff\xcf\xfe\xb9\x78\xe0\xc2\x51\ +\xbc\xe9\x91\x57\xc7\xe5\x4b\x07\x7e\x0d\x97\x6f\xec\x9f\xad\xe3\ +\xda\xf3\xc7\x71\xfd\xfa\x32\x4e\x7b\xa1\xa0\x5c\xe6\x44\x26\x4f\ +\xee\x67\x9a\x05\x30\xf8\x67\x32\xd0\x93\x60\xc6\xfe\x9e\x78\xc8\ +\x80\x57\x3c\x7a\x31\x8d\x9b\xbb\xdc\xe4\xcd\xf1\x7f\xdd\x2b\xaa\ +\x52\x61\x4b\xa4\x8f\x6f\x8a\xa7\x92\x8d\x23\xfb\x67\x01\xcd\x8b\ +\x69\xb2\x51\x60\x69\x05\x0b\x72\x64\x42\xbd\x5e\xe7\x93\x69\xe1\ +\x57\x3c\x2a\x8d\x27\xd1\x02\xe9\x33\xda\x46\x09\x1c\x9d\x57\x8a\ +\x77\xd1\xe4\xce\xbf\xac\x4e\x91\xf3\xca\x22\x67\xde\x7e\x77\x8f\ +\xcb\x5a\x3a\x88\xae\x93\x39\xec\xf2\x63\xbe\x54\x6d\x91\xbf\xda\ +\x26\x65\xa3\xec\xf0\x6b\x6c\x74\x55\x0c\x61\xe3\x31\x69\x26\x4a\ +\x39\x59\x4a\xbe\x5c\x0e\x05\x6a\xc0\x28\x54\xb4\xad\x7b\x71\x68\ +\x97\xe3\xe4\xae\x2e\x13\xde\x8e\x6f\x81\x4d\x79\x41\xa5\xa6\xdd\ +\x36\xc2\x01\x39\x91\x84\xe8\xa8\x52\xd3\x00\x95\x8f\x55\x95\x95\ +\xfb\xe2\x90\xaf\x62\x2a\x0f\x6b\x52\x1b\xdf\x4b\xc9\xd8\x2a\x2f\ +\x4a\x88\x71\x1f\x47\x9e\xb1\xe5\x69\x60\x7d\x2f\x6c\x25\xad\x60\ +\x5d\xd9\xe3\x8b\xb8\x9e\x40\xcb\x57\x3d\x76\x3a\x7c\x9f\x7a\x22\ +\x6b\xb9\xed\x54\x86\x71\x3a\x05\xaf\x86\xa0\xa7\xa0\x25\x73\x97\ +\xb5\xbc\xec\x44\x12\x36\xb6\x02\x95\x37\x41\xcc\xa4\x1a\x56\x9b\ +\x51\xdb\x6f\xa8\x9b\xe1\xb6\xf3\x26\x61\x77\x6a\x73\xff\xda\x76\ +\xa4\xdc\xb6\xab\x7d\x50\xbc\xfd\x0f\xba\x84\xd9\xde\xa7\x1d\x86\ +\x82\x24\xc1\x76\x10\xbd\x18\xb8\x4c\x9d\x42\xbd\xdc\x0e\x68\xa7\ +\xcc\x3c\xb7\x23\xa8\x8f\x78\x5f\xda\x2e\x0b\x90\xc7\x8d\x36\x65\ +\x6c\x6f\x4e\x5f\x02\x40\x36\x2d\x52\x70\x72\xe4\x16\xb8\x75\x1d\ +\x9f\x47\x4b\x32\x59\xb5\x51\x87\xe1\x3c\x90\x30\xe7\x82\xa5\x3e\ +\x79\x36\x1b\xf8\x89\xbb\x41\x96\x04\x5b\x64\x59\x27\xe2\xac\x1f\ +\x4b\x54\xf4\x17\x16\x80\x51\x64\x6e\xe9\xdb\x5f\xed\x0b\x16\xd2\ +\xf2\xf5\xba\xa2\xd9\xc7\x68\xd5\x9e\x2e\xda\xb0\xaf\xd8\x24\xbd\ +\x55\xfe\x31\x2c\xc2\x20\x83\x8f\x51\x64\x64\xed\x4d\xf1\x49\x09\ +\x56\x0c\xc9\xfc\x5f\x97\xbb\x2a\xec\x0e\x0b\xc9\xab\x38\xba\x7e\ +\x3d\x9e\xbb\x7e\x23\x8e\x8e\xf8\xf5\x03\xd8\x89\xb9\xce\xed\x77\ +\x1e\xce\xe2\x33\x1f\xbc\x27\x1e\x7b\xe4\x30\x7e\xf5\xdb\xff\xcf\ +\xf8\xa6\xaf\xfd\xdf\x63\xbe\x77\x10\xa7\xcb\x65\xed\x4e\x0e\x10\ +\xf9\xee\xfc\x05\x8b\xb3\x09\x26\x4c\xf8\x2d\xc0\xa6\xe3\xd1\x17\ +\x59\x4c\xda\x9d\x2d\xe2\xab\xbe\xe6\xcb\xe2\x57\x9f\xf8\x9e\x78\ +\xf3\xa7\x3d\x14\x77\x5e\xbe\x4b\xfd\x98\x05\x2d\x6c\x65\x45\x17\ +\x26\x81\x3b\x6e\xa2\x17\xbc\x50\xf8\x38\xe4\x38\x45\x6e\xad\x68\ +\x16\xc1\xcc\xa7\x24\x6d\x4c\x38\x90\xb4\x61\x37\x15\x18\x97\x99\ +\xf6\x39\x80\xe3\x70\x24\xc3\xaf\xe2\xc1\x87\x53\xdf\x0e\x59\x56\ +\x6c\x38\x16\xbb\xe4\x4e\x2f\x8e\xf3\x92\x7f\x28\xc2\xdb\x01\xb8\ +\x56\x51\xb7\x3e\x77\x8b\x66\xc1\xc1\x1f\xc9\x48\xff\x42\x79\xa5\ +\xcf\x06\x7e\x88\xb5\xa9\xf6\x82\xed\x76\xd8\xc6\x46\xd6\xd4\xd8\ +\x2a\xd3\xb5\x0f\xda\x13\xfa\xbc\x27\xc9\xdc\x40\x69\x0f\xd9\x06\ +\xc3\x39\xf4\xa6\x90\xfb\xa6\xd1\xf4\xd0\xb6\xc0\xf1\x38\xaf\xa4\ +\xb0\x69\xbb\xc1\x3b\x11\xe8\xb8\x90\xfa\x1e\xf9\x8a\x27\x3a\x67\ +\x03\xba\x7d\x07\x35\xfb\xa1\x18\xd7\x99\xb8\xf9\xa6\x93\x15\xb2\ +\x7d\xc0\xa6\xb4\xc8\x2a\xe4\xb7\x36\x8a\x8a\xf1\x8f\xca\x30\x87\ +\xaf\x0e\xe2\x3e\x90\xda\xf2\xa4\xdc\x6b\x5c\x63\xbb\x8a\x8a\xdc\ +\x86\x8c\xf2\x35\x8e\xf4\xa5\xe4\xf3\x93\xf6\x0c\x89\x90\xf7\xf5\ +\xb0\xe5\xe6\x4d\x35\xa8\x31\x5e\xc6\x38\x67\xe3\x46\x48\x7e\xdc\ +\x76\x5b\x40\x40\x46\x9d\x56\x69\xda\xce\xa1\x1a\xd1\xdb\x61\x33\ +\x2e\x47\x62\xa3\x07\x1b\x1f\x6c\xf2\xfc\x50\xe5\x60\x23\x19\xe5\ +\xe9\xb2\x75\x31\x6d\xdf\x40\x35\x08\x3a\x01\x40\xd1\xed\xce\xc5\ +\x1e\x6c\xf6\x43\x6e\x93\x1f\xcb\x32\x2f\xc9\xcd\x96\xcc\x18\xd3\ +\x82\xd8\x96\x9c\xd3\xa4\xc0\xc2\xd4\x6c\xfa\x51\xc2\x59\x0c\x36\ +\x1b\x8c\xd9\x5b\xa6\x21\xce\xc8\x48\x17\xd4\x41\xc1\xfa\x2c\xbb\ +\x3b\xc7\x86\x53\x48\x1e\xe4\x39\xb6\x35\x89\xf4\xb3\x21\xd0\x34\ +\x5f\xa2\xe4\x89\x95\xd6\x2e\xb4\xf1\x10\x4a\xb1\xf5\x96\x29\x94\ +\xdf\xb4\x67\x3b\x5e\x54\xdb\xd6\x39\x65\x77\xde\x02\x3e\x19\x8f\ +\x37\x6d\xa7\xc6\xa6\x16\x88\x9c\x4c\xb1\xc7\x78\xcc\x8d\x15\xcf\ +\x15\xdf\x71\x65\x16\x07\x0f\xfe\x46\xfc\xad\x6f\xfb\xfa\x78\xf2\ +\xea\x13\xb1\xb3\x96\x17\x27\xcc\x92\xe5\x36\xcb\x33\x61\xc2\x84\ +\x09\x13\x5e\x3e\xe8\x2b\xf9\x84\x09\x13\x26\xbc\x32\xd0\x23\xdf\ +\x17\x00\x03\x5a\x0f\x6a\x73\x94\xfb\xb1\xd1\x36\x43\x42\x61\x9c\ +\x8f\x27\x7b\x0d\x19\xf4\xcc\x10\x6c\x95\x67\x27\x4e\x4f\x57\x71\ +\xfd\xea\xb5\xf8\xe6\xff\xf6\x4f\xc7\xe5\xa7\x3f\x1c\x6f\x7f\xc3\ +\x03\xf1\x9a\xfb\xee\xd2\x80\x7c\xae\xb9\x86\x26\xb0\xbb\x67\xf1\ +\xfc\xd5\x65\x5c\xbf\xb1\xd4\xdc\x84\xbb\xb6\x2b\x4f\x84\x7d\xfb\ +\xdf\x37\xf6\x35\x15\xd8\xc1\x4e\x71\xdd\x7c\xc8\x2c\xc8\x30\x27\ +\x0a\x9e\x07\xec\xcc\xfc\x5f\x6c\x39\xe0\x27\xa4\x05\x17\x85\x9c\ +\xd8\x64\xb0\x8c\xd8\x13\x0e\x71\xa3\x59\xad\x9f\x68\xab\xa7\x2c\ +\xce\xea\xe9\xb4\xf4\x9d\x79\x52\xae\xfc\xbf\x34\x95\x73\xa9\x92\ +\xd5\x13\x3f\x5d\xe5\x8e\x07\x54\xda\x26\x9d\x87\xb9\x42\x31\x43\ +\x73\x2a\x6e\x7d\xd7\xcb\xe5\x44\x48\x44\xa8\x7a\x58\x48\x3a\xd3\ +\x10\x59\x8e\x41\x94\x1e\x20\x92\x16\xe9\x09\xd9\x10\xf7\x2b\xd2\ +\x52\x9f\x91\x95\xc5\x6f\x52\xb7\xff\xc6\x66\xe2\x5d\x16\x1b\x43\ +\x21\xd3\xf5\x84\xee\x85\x61\xcb\x24\x05\xf6\x75\x4d\x07\xfd\x19\ +\x63\x9b\x2b\x74\xf2\x56\x2a\x76\xae\x5d\x8f\xd6\x51\x5f\x7f\xac\ +\x34\xef\x7c\xd2\xb8\x2b\xa4\x90\x65\xee\xa4\x60\x5c\x0b\xaa\xe4\ +\xc9\xa5\x37\x12\x0c\xc1\xc2\x92\x67\xdc\x0b\x60\xe8\x73\xf1\xab\ +\xf4\xbe\x01\x08\x9f\x32\xdf\x7d\xc1\xbe\x6d\x1c\xc6\xfa\xa4\x89\ +\x93\x6e\x59\xda\xf9\xd7\xf9\xe6\xc9\x8b\x3c\xc8\x4f\x9b\x92\xb7\ +\xcc\xe5\xa4\xbf\xa2\xb3\xd1\x5a\x75\x54\x2b\xe0\x47\x2a\x6f\x6c\ +\x9f\xea\xc4\x26\xed\x46\x54\x2d\x83\xa0\x9b\xad\x44\xdd\x66\x03\ +\x24\xf0\x84\xbd\xda\x7f\x30\x30\x4f\x2c\x27\x49\x64\xec\x30\xe4\ +\xb4\x91\x69\x83\x9b\xde\x31\x5d\x84\x2d\xa4\xca\xc5\x1a\x79\xd8\ +\x86\x14\xad\x73\xbc\x65\x5c\x4e\xbd\x93\xe1\x3a\x13\xda\x80\x36\ +\x1a\x0c\x0b\x69\x97\x72\x88\x8d\xbd\xb7\x8a\x74\xda\x2a\x3e\x65\ +\xc0\x1c\x9b\x36\x1f\xb0\xb1\xd9\x86\xe4\x4e\xd4\x9c\x12\xaa\x8c\ +\x5b\xe5\x19\x91\xb8\xdd\xb0\xa2\xf8\x22\x18\xe5\xd7\x7a\xea\xd8\ +\x9e\x3a\x34\xcc\x6b\x93\x7d\x96\x6e\xc3\xb9\x3c\xbb\x0f\x81\x94\ +\x0d\xfc\xf8\x9c\xa2\xf3\x25\x3f\x66\xc8\xc0\xb9\x33\xcb\x9a\xfb\ +\x6e\x73\x2e\xbd\x19\x29\xbc\xa5\x4a\xb0\xbc\xd2\xda\xa5\x69\x88\ +\xf3\x65\x56\x5e\x3a\x85\xb3\xb0\x37\xdb\xe5\xff\x6a\x56\xb1\x3a\ +\xd1\xf5\xe7\x06\xaf\x7f\xbc\x11\x27\xcb\x95\xea\xb0\xe6\x81\xe3\ +\x38\xd0\x75\xe7\xb5\x57\x2e\xc6\x67\xbf\xee\xce\x78\xf5\x5d\xb3\ +\xf8\x89\xaf\xf9\xa6\xf8\x89\x7f\xf6\x0b\xb1\xbb\x90\x1f\x9e\x02\ +\x75\x66\x38\x55\x0e\x9d\x09\xf5\x76\xde\xc9\x4e\x98\xf0\x9b\x07\ +\x3a\xa1\x8e\x3a\xfa\xa0\x0e\xc8\xf5\xd9\x49\xcc\xe7\x8b\xf8\xdf\ +\xbe\xeb\xdb\xe3\x07\x7f\xfc\xeb\xe2\x8d\x9f\xf6\x40\x5c\xb9\xfb\ +\xee\x5c\xd4\xe6\xbf\x67\xb5\xdd\xd5\xc1\xc0\x7f\x2f\x79\x6d\xd8\ +\xa9\xd9\xe4\xb1\x0a\x83\x65\xfe\xa0\x06\xbf\x8c\x94\x4c\x5a\xee\ +\x7e\x6e\xb6\x08\xc1\xc9\x48\x5f\xfa\x81\xaf\x80\xc0\x37\x5d\x75\ +\xcc\xbb\x1c\x1c\x8c\x94\x04\x17\x84\x8a\x8a\x34\xac\xeb\xe3\xcb\ +\x10\x53\xfc\x58\xdc\x69\x7c\xdd\x5b\xe9\xba\x47\xa0\x62\x52\x38\ +\x6f\x08\x9f\xe8\x14\x21\x6b\x62\xcb\x77\xca\xad\x13\x6e\x75\x1d\ +\xf1\x93\x18\xe5\x67\x73\x8e\x3b\xe7\x44\x9a\xf6\x93\x2e\x54\x5f\ +\x22\x31\xd5\x0c\x43\x8a\xd4\x0b\x12\xf6\x98\x28\x6d\xe1\xdb\x4f\ +\x6e\x93\x4a\x39\xf0\xb6\x54\x16\x39\xc0\x24\xd9\x68\x7a\xa3\xee\ +\x73\x2e\x8c\x05\x0e\x99\x4f\xd2\xc9\x17\x53\x62\x6c\x93\xa4\x9c\ +\x1d\x10\x57\x3c\xa2\x0d\x1b\xab\x36\x95\xde\x7a\x7f\x2a\x1e\xfc\ +\x15\x2d\xc6\xba\x26\x52\x53\x64\xf9\x4d\x03\x13\xb5\x1b\x06\x5b\ +\x6c\x5a\xe4\xeb\x12\xb3\x04\xc5\x83\xcc\xe3\x20\x71\xc8\x4a\x48\ +\x3c\xb6\x81\x30\x5f\xe3\x9e\x61\xab\xbe\x94\x6f\x0c\xa8\x6b\x1c\ +\x52\x6c\x14\x7a\xd1\xd6\x32\xdb\x64\x00\xed\x23\xf9\x94\x51\xdc\ +\xa4\x40\x16\xbe\xaa\xe4\xe1\x45\xff\x1f\x56\x23\x69\x14\x30\x6c\ +\x92\x36\xe9\xe6\x2d\x6f\xd6\x6f\xc8\x0d\x2a\xad\xb0\x25\x87\x71\ +\x27\x37\x31\x84\xf6\x37\xb6\x75\xb9\x92\xca\x18\x7e\xbc\xaf\x1b\ +\x83\x08\xa2\x99\x4c\xb9\xb1\xa6\xd0\x9d\xe7\x36\xb6\xf3\x6c\x1b\ +\x8f\x6a\x90\x8c\xb6\x1b\x9c\xe7\xb7\xa1\xf4\xc3\x81\xbc\x49\x3f\ +\xa4\x39\x9f\x78\x6c\x3e\xa0\xdb\xa4\xcb\x71\x3e\xd9\xa6\xc5\xbc\ +\x9b\xb7\x8e\x07\xa8\x4c\x9b\x40\x90\x74\x4b\xc0\x66\x1f\x2a\x1e\ +\x3b\x17\x8d\xc6\x22\x6d\x86\x7e\x02\x0f\x59\xb2\xe1\x58\x22\x76\ +\x80\x56\x4b\xa3\x4b\xd2\x72\x08\xeb\x44\x54\x34\x20\xd5\x1b\xc1\ +\x26\x5f\xce\xd9\x1b\xff\xee\xe8\x03\x90\x76\xaa\x6c\x1f\xdb\xee\ +\x6a\xfe\xa0\xba\x5c\xb9\xbc\x13\xcf\xef\xfc\x5c\x7c\xdd\x37\xfc\ +\xa5\x98\xed\x29\xe9\x92\x79\x45\xa6\x69\xff\x55\xf3\x09\x13\x26\ +\x4c\x98\xf0\x32\x81\xc7\xa9\x13\x26\x4c\x98\xf0\x8a\x41\x8d\x58\ +\x73\xc0\x9b\xb8\x69\x00\xfb\x82\x4a\xa1\xf5\xc4\x63\x5b\xd0\xf6\ +\x5b\x36\xda\xe4\xcc\x42\x61\x94\x39\xb2\xc1\x4e\x03\xea\xe3\xe3\ +\xd8\xdd\x3f\x88\x6f\xfe\xd2\x2f\x8b\xe5\x4f\x7d\x7f\xbc\xfd\xcd\ +\x0f\xc4\xa7\x3c\xf6\xfa\x38\x3c\xdc\xf3\x64\xea\x34\xd6\x71\xed\ +\xda\x49\x3c\xaf\x70\xb2\x5a\x6a\xf2\xea\xc7\x6b\xea\x93\x19\x33\ +\x61\xf0\x4d\xf9\xcd\xbc\x7d\xc0\x30\x31\x9f\xed\xc4\x7c\x21\x83\ +\x19\x4f\xa5\xa5\x21\xe2\x61\x60\x9f\x91\x39\xbf\xc2\x48\x13\x01\ +\x6e\xb7\x96\x38\x75\xce\x83\x89\xc2\xee\xd6\x62\x1a\x37\x85\x28\ +\x09\xaf\xdb\xf3\x62\x5a\x3d\x99\xe6\xc5\x34\x69\xf8\xb4\x23\xa2\ +\x01\x03\x53\x0a\x47\x4c\x32\x06\x26\x61\x37\x62\x70\x63\x19\x56\ +\x94\x03\xc5\x36\xca\x2c\x61\xdb\xe2\xac\xb0\xc0\x18\xe6\xf6\x0e\ +\xa3\x44\x9e\x08\x62\x97\x82\x5e\xec\x00\xae\x3f\xb1\x54\x1d\x06\ +\x1f\x2e\x11\x11\x6d\x59\x76\xde\x26\x52\x9b\x01\x35\x8b\xa4\x4e\ +\xf6\x82\xc0\xbe\xad\xb2\x5d\x98\xa0\x6d\xfc\x6e\x7b\x40\xf3\x82\ +\x3e\x2b\xa1\xf3\xdf\xb0\x5b\xe8\xb2\xdf\x52\x6f\xe7\x29\xed\x2d\ +\xe6\x95\x64\xd0\x9b\x85\x76\xa8\x1b\x29\x45\x03\xb3\x5e\xb8\xd2\ +\xac\xd4\x77\x66\x3a\x96\xad\x6f\xf8\xe4\x4d\x9f\x0c\xdc\xa8\x51\ +\xa8\xc5\x37\xff\xc7\x99\x82\x6d\x4b\x96\x4f\x9e\x65\xf0\xff\x75\ +\x28\xf6\xab\x55\x1c\xf2\x66\x4f\xbf\xbe\xd1\x69\xf1\x57\x37\x87\ +\xaa\x30\xe7\xca\x80\x6f\xcc\x54\x13\xca\xd9\xe5\xe7\x88\xc3\xc7\ +\x90\x0e\x5b\x57\x49\xb0\x81\x2c\x40\xe9\x4c\x6f\x40\xcb\xb8\x0b\ +\x76\x7b\x29\xee\x2e\xd9\xdd\xae\xf7\xae\xf7\x11\x64\x3b\x71\x87\ +\x23\xd6\x86\xef\x40\x67\x30\xaf\x04\x16\xfb\x93\x48\x7e\x83\x9b\ +\x4b\x35\xc2\xa0\x2a\x2b\xda\x41\x44\x8a\x8b\x68\x9e\x95\x30\x95\ +\xc9\xa2\x71\x06\x23\xd8\x0e\xc8\x20\xeb\x85\x3f\x82\x78\x1a\x6a\ +\x30\x10\xc6\x74\x03\xd9\x50\x01\xa5\x19\xf9\xd9\x20\x33\xdf\x4a\ +\x5e\x79\x6c\xda\xa3\xad\x6e\x03\x37\xbe\xd0\x4e\x64\xbc\x9d\xa6\ +\x38\xf4\x0a\xb4\x89\xe9\xde\xf7\x96\xf1\xca\x50\xc5\xa7\xbb\xea\ +\x63\x52\xd1\x1f\xb1\xb1\xd2\xdf\xf4\xa7\x8d\x17\xd5\xe6\xb9\xa8\ +\xe6\x1f\x28\xe4\xce\xdb\xe8\xcd\x43\x20\xc8\x28\x43\x09\x6e\x09\ +\x69\x07\x43\x32\x4c\x6b\x9a\xa1\xe1\xe2\xca\xc8\xc5\xd2\xf9\x67\ +\x67\x67\x1d\x33\xfa\xb4\xe2\xd5\xea\x24\x6e\x1c\xdd\x88\x6b\x37\ +\x8e\x74\xd8\x50\x97\x5c\x4c\x9e\x4b\xf7\x96\xbb\xee\x8d\x77\xbe\ +\xf9\x52\xdc\x75\xfc\x54\x7c\xd3\x5f\xf8\xab\xf1\xbe\xc7\x9f\x56\ +\x72\x39\xd6\x97\xe3\x21\xf3\xc4\x69\xc6\x5d\xd7\x16\x4d\x98\xf0\ +\x89\x47\x9f\x39\xe9\xd7\x8c\x5d\xce\x34\xe4\x59\xc4\x7b\x7e\xf5\ +\x7d\xf1\xb5\xdf\xf2\xa7\xe2\xd1\xb7\x2e\xe2\x55\xf7\xde\x1d\x7b\ +\xdc\xd1\xe4\xe9\x4c\x59\xb3\x94\x46\x1f\xcf\xeb\x13\xfd\x58\x1e\ +\x14\x58\x64\xcb\x71\x13\x01\x9d\x62\x3f\x45\x4b\x1e\xa4\x73\x72\ +\x6f\x30\x81\x26\x66\x1c\x06\x31\xc8\x4a\x01\x8f\x3f\xd6\xce\x72\ +\x31\x2d\x79\xc0\xd6\x6b\x6a\x45\xe7\xe6\x1c\x38\xa0\x06\x14\x33\ +\xb2\x23\x1f\x58\x34\x7e\x2a\x4d\xd7\xac\xb5\xcf\x3f\xd4\x49\xdf\ +\x51\x7a\xd3\xc8\x92\x15\x4a\xe9\x28\xdb\x0e\xba\xa4\x03\xda\xbe\ +\xeb\x36\x04\x36\x43\x06\x16\x18\x79\x96\xc9\x7d\x62\x5a\x44\xbe\ +\x8a\x3b\xe9\x0e\xd9\x36\x84\xac\x83\xeb\x02\x3d\xf0\x6d\x47\xd9\ +\x92\xc7\xdf\x46\x37\xa2\x0b\xcd\x63\xdf\x0c\xd1\x16\x9c\x47\x91\ +\x43\x48\x01\xb1\xf9\xda\xb4\x2e\x29\x90\x79\x26\x5a\xda\x31\x75\ +\x4c\x9a\xf4\x50\xec\xde\x0d\x9f\xc8\x3a\x36\x4d\xa8\x7a\x58\xde\ +\xbe\x04\x1b\x6d\xda\xcd\xfb\x07\x4e\x11\xfb\x37\x79\x33\x96\x1b\ +\xa9\x94\xb4\xfa\x76\x89\x30\xe3\xb8\x80\xc9\x4b\x17\x7a\x6f\x91\ +\x9e\xdb\x2a\x38\xeb\x1c\xef\x70\x9a\xb7\x46\x74\x8e\x9d\xf2\x15\ +\xd9\x5c\xe7\xd2\x49\xf6\xb7\xfc\x8c\x68\xdb\x67\xf0\x15\x68\xb0\ +\xa1\x3a\xda\x52\x27\xd1\x00\x59\x6f\x5b\xe8\xb6\x83\xc6\xae\x6c\ +\x7b\xff\x43\x11\xe7\xe1\x43\x5b\xa4\xbe\xb7\xf6\xe5\x76\xcd\xdc\ +\xda\xde\xa9\xcb\x84\x62\x65\x69\x36\xe9\x4b\x25\x82\xf4\x23\xd9\ +\xb0\xa9\xa0\x6f\x96\x84\xf4\x1b\xcd\xc0\x63\xc2\x7c\x69\x70\x4c\ +\x5c\x34\xc0\x7d\xd3\xe7\x60\xf3\x24\x15\x17\x55\x75\x81\x23\x87\ +\xb4\x69\x2b\x21\x05\x5b\x64\xb2\x25\x74\x86\x84\x81\xdb\xc2\xc6\ +\x3e\xcd\x1c\x67\x64\xb8\x3f\x0c\x06\x15\x0b\x49\x52\xae\x12\x12\ +\x39\x3d\x9b\x0c\x1b\xf3\xec\x0b\xfc\xf8\xa8\xdb\x1d\x58\x5f\x8d\ +\xd1\x9e\x7c\x9e\x24\x2e\x1b\xb6\x69\x91\xf1\xb8\x29\x21\xe0\xf3\ +\xdc\xda\x3a\x7d\x2c\x93\xc7\xd6\xb5\x31\xde\x88\xa4\x68\xbb\xda\ +\xe8\xdb\x25\xc8\x2d\x70\xdc\xb6\x49\xa6\x8b\x2c\x9a\xe7\xd4\xd6\ +\xd1\xc5\x7d\xb0\xe4\x35\x86\x1f\x6e\xcc\x76\x66\xf1\xe0\xa3\xa7\ +\xf1\xbe\xa7\x7f\x20\xbe\xfd\x7f\x7f\x57\xcc\xf6\x34\xea\x3a\x66\ +\x76\x0d\xb2\x77\x66\xed\x26\x4c\x98\x30\x61\xc2\xcb\x05\x35\x74\ +\x9f\x30\x61\xc2\x84\x57\x08\x6a\xac\x3a\x1e\xb2\xf6\x40\x79\xc0\ +\xc7\x1a\xcf\xb6\xfe\x7c\x0c\xc6\xce\xb6\xe4\x52\xb4\xce\x93\xca\ +\xa6\x15\xa4\x3b\x5b\x69\x52\x7a\x30\x8f\xef\xf9\xc6\xbf\x1b\xef\ +\xfb\x3b\xdf\x18\xef\x78\xe8\xee\x78\xeb\x1b\x1e\x89\xc3\xc3\x03\ +\xcf\x3d\x79\x72\xed\xe4\x64\x15\xcf\x3e\x73\x14\xab\xd3\x65\x9c\ +\xae\x56\xb1\x5a\xd7\x64\x55\xc1\x73\x23\xfc\x90\x0d\x37\x81\xd2\ +\xbb\x01\xed\x41\x3f\xba\x5a\x4c\xeb\xff\x4c\x4b\xfb\xb4\x19\x0c\ +\x6d\xcc\xa4\x03\x9a\x29\xb1\xa7\x07\xa9\xd7\x55\x83\xdb\x02\xf8\ +\x21\x9c\xf1\xf8\x82\x66\x27\xbe\x98\xc8\x9e\x7a\x71\x13\x87\x70\ +\x76\x22\x86\x05\x35\xd7\x11\x3f\xc4\x6c\xce\x41\x32\x4c\x12\x4d\ +\x61\x28\xda\x15\x2b\xd9\x60\xd4\x93\x32\x95\x01\x1d\x0b\x52\x8a\ +\x50\x0f\x26\x86\xac\xf8\xa2\x73\x50\xf9\x5c\x88\x0d\xf0\xd3\xc1\ +\xc8\x24\x6e\x82\xce\x25\x85\x4d\xa7\xde\xc0\x27\x76\x84\x64\x37\ +\xd8\xb2\x87\xde\xf0\xd8\x1b\x95\x0e\x41\x7e\x5e\x08\x58\xa6\xc5\ +\x56\x3e\x05\xe7\x8f\xbf\x0a\xd9\x6e\x56\x0d\xd8\xe4\xa0\x76\x28\ +\xaa\x61\xde\x4e\x20\x84\xdc\xa1\x0e\xf9\xe4\xd0\x46\x65\xa8\x7e\ +\xae\xa2\x5d\xb6\xe7\xda\x2a\xef\xa4\x84\xf2\xe9\x9b\x28\xfa\x5a\ +\x6e\x5e\x81\xc9\xe6\xb9\x90\x8b\x61\xec\x4f\x77\xfa\x6d\x1b\x25\ +\x4a\x3d\xab\x14\xa2\x59\x10\x33\x9f\x71\x06\xd2\x32\x49\x4f\x39\ +\x81\xff\x3c\x23\xe6\x69\x1b\x16\x76\xf3\xc9\x4e\x7c\xea\x98\xe3\ +\x18\x22\x9d\x7d\xab\x6c\x04\xd3\xb2\xc3\x97\xed\x54\x9f\x92\xc3\ +\xda\x9f\x17\xd7\x44\x2b\xd8\x5e\xc1\x82\xda\xc2\xd2\xca\x29\x01\ +\x63\x5a\x9c\x13\xd6\x7e\xa0\x51\xaa\x31\xdd\x3e\xda\xa4\xdf\xa4\ +\x37\x28\xa6\x8d\xbc\x1d\x19\x88\x84\x4b\x9f\x50\x08\xc4\x11\x29\ +\x58\x9e\xd2\x44\x99\x7c\x4c\x28\x61\xf6\x59\x3c\xb4\x97\x8c\x71\ +\xcf\xc2\x6b\xf6\x39\x8b\x06\xab\xb6\x04\x56\x6b\xe3\xe3\x55\x21\ +\xfd\x15\x5f\x09\x5b\x66\x7e\xa0\x47\xe4\x79\x87\xc6\xc8\x10\x03\ +\x92\x22\x6a\x31\xb1\xf7\x0d\x71\x09\x5b\x07\x4c\xb3\x19\x87\xc2\ +\x38\x3f\x61\x8b\xbd\x95\x59\x13\x8e\x59\x85\x55\xd7\xa1\x6b\x9d\ +\xf2\xb4\x5a\xf6\x91\x3e\x57\x37\xd8\x7f\x7e\x32\x86\x73\xe8\x5c\ +\x87\xdd\x8c\x47\x7e\xd1\xd0\xe1\x12\x99\x55\x1d\x6f\x5b\x20\xf5\ +\xe6\xd3\x96\x8d\x41\xe6\x08\x8e\x93\x77\xee\xab\x2d\x4b\x78\xe4\ +\x3a\x8f\xee\xc6\x4a\x59\xaf\xe2\xf8\xe4\x38\xae\x1d\x1d\xc7\xd1\ +\xd1\x2a\xd6\xdc\x30\x55\xa1\x77\xcf\x56\x31\x9f\xaf\xe3\x77\xdc\ +\x77\x57\xbc\xed\xb5\x97\xe3\xda\xcf\xbc\x37\xbe\xe1\x2b\xbf\x25\ +\x6e\xe8\x5a\x72\xb6\x5e\xf9\x86\x61\xd6\x5d\x1b\xda\x5c\x5f\xe7\ +\x53\xf5\xdd\xca\x73\xc2\x84\x4f\x14\xaa\xfb\x15\xe9\x27\xb4\xae\ +\x3d\x7b\x23\xfe\xd2\xd7\xfe\xd7\x71\xe1\xbe\x27\xe2\xde\x47\x5e\ +\x13\x7b\x8b\x7d\x1d\x6c\x3c\x35\xa0\xe3\x82\xbe\xaf\x93\x7f\x2f\ +\x7c\x8b\x4d\xf9\xf0\x23\xa1\xbc\x1c\xf6\xf1\xc4\x39\x8b\xae\xce\ +\x81\x9c\x92\xdc\x34\x8d\x3d\xe7\x44\x62\xd0\x3e\x32\xe0\x17\x1d\ +\xc7\xfd\xb6\x7c\xf0\x81\x4d\xd1\x0d\xcb\x93\x2c\xa2\x2a\x38\x60\ +\x63\x4d\x1d\xfc\x44\x9a\xc2\x5a\x8c\x2d\x5b\x3d\xa4\xad\x73\xf0\ +\x79\x37\x08\xea\x9c\x9c\x3f\x5a\x30\xe9\xd0\x2e\x92\x51\xc0\x41\ +\x9a\x9a\xdd\x9c\xd8\x60\xd8\xf2\x49\x76\xd0\x3b\xce\xfa\x3b\x94\ +\x5d\x8e\x58\xd3\x10\xdb\x71\x28\x71\xc6\x8a\x86\xad\x65\x25\x1c\ +\xe8\xce\x23\xd9\x32\x4d\x3e\xa3\xa4\x8b\xdf\x08\x53\x96\xfb\x79\ +\x24\xd6\x26\x4b\xa9\x98\xfd\xdd\xfe\xe1\xbd\xb1\x81\xe9\xe4\x37\ +\x81\x74\x6e\xc1\x41\x71\x0e\xd8\xd8\xae\x42\xb5\x5f\xa6\x1b\xc1\ +\x36\x2d\x69\x6b\x81\xfd\x93\x49\x06\x6d\xee\x10\x85\x52\x98\x63\ +\x2c\x54\xe5\xf0\x3e\xd7\xb5\xa5\x7a\x85\x63\x4c\x7d\x6d\x1a\xc9\ +\xfc\x85\xed\x0c\x90\xa6\xa1\xc7\x4f\xf6\x40\x8c\x6f\x8f\x93\x92\ +\x76\x7f\x93\x59\x3e\xbd\xd6\x21\xdd\x64\xfa\xf6\x55\x64\xa3\xfa\ +\x12\xb2\x4d\x13\x6b\x9b\xc4\x26\xbe\x05\x50\xf9\xed\x11\xb6\xa9\ +\xb1\xe7\xe0\xbc\x89\x4d\xab\xf6\x6b\xfe\x40\xb6\xf9\x60\x3c\xc8\ +\x2d\xda\x88\x85\xd4\xb0\x75\x3f\x68\x1a\xa3\x4a\xb4\x91\x35\x2a\ +\x1f\x36\x6e\xf8\x74\x4a\x1a\x02\x8b\x43\xa6\xbb\xec\x6d\xe3\x44\ +\x1b\x9c\x63\x37\x18\x14\x5d\xd0\x8e\x13\xa8\x3b\xe4\x66\x53\x1e\ +\xc7\x23\x6c\xf3\x1b\xee\xbc\x1d\x18\x72\x29\x62\x68\xfa\x82\x69\ +\xed\x60\xcb\x55\xa7\x6c\xf7\x0e\xa0\xca\x21\xb8\xff\x9b\xa1\x2f\ +\x97\x8d\xf9\xb4\x31\x29\x38\x2b\x54\x0a\x9b\x7d\x9d\x51\xdb\xb4\ +\x2f\xcb\x4a\x31\x9c\x63\x75\x60\xe7\x7c\xb6\xd2\xb7\x7d\xc5\xde\ +\x17\xf0\x96\x75\x89\xd9\x02\xec\xb3\xcf\x82\xce\x3e\xcf\x5f\x69\ +\x49\x42\x59\xd8\xb4\xcc\x52\x9c\x91\x02\x89\x66\x1a\x3f\x9d\xc6\ +\xfe\x85\x59\x3c\xf4\xc6\xb3\xf8\xce\x1f\xff\xfa\xf8\xd1\x77\xff\ +\x50\xec\xee\x29\x77\x0d\x17\x13\x9b\x5c\x27\x4c\x98\x30\x61\xc2\ +\xcb\x03\xbe\x65\x36\x61\xc2\x84\x09\xaf\x04\x78\xa0\xda\x23\xdc\ +\x4d\x74\x6b\xbc\x98\x51\x2d\x36\x8c\x9e\x6f\x67\x6b\x79\x0d\xaf\ +\x7b\x34\x5e\xd8\x4a\xb2\x5a\x45\xcc\x4e\xe3\x97\x7e\xfc\xa7\xe2\ +\x3b\xbe\xec\xcf\xc4\x7d\x17\x57\xf1\x96\xd7\x3d\x1a\x77\x5e\xbc\ +\xe0\x74\x2c\x04\xac\x4f\x57\xf1\xdc\xd5\xe3\xb8\x71\xb2\x8a\x95\ +\x5f\xc5\x95\x37\x80\xf8\xf5\x31\xbe\x3c\x0c\xaf\x1b\x35\x4c\x0a\ +\x1a\x26\x91\xcd\xc6\xff\x99\xb6\x9b\x37\x8b\xb8\xbf\x2a\x35\x17\ +\x82\x7c\xfa\xaa\x13\xe0\x0a\x82\x29\x42\xf9\x4c\xa1\x68\x16\xd3\ +\x64\xc6\x53\x69\x5e\x4c\xab\xf4\x0a\x5e\x7b\x58\xab\x4c\x2b\xa5\ +\xe3\xa9\x34\xc5\x28\x98\x4c\xf8\xf6\x70\xf9\xde\x42\xc9\x9c\x5d\ +\x07\xa0\x59\x8b\xa7\x54\x9e\x68\x13\x90\x95\x8a\x8d\xcb\xe2\x29\ +\x8c\x74\xce\x64\x1b\xe6\x33\x7f\x37\xbd\x0d\x4b\xcc\xe6\x56\xf6\ +\x25\xf3\xdb\x9c\x44\x0f\x26\x45\x8c\x4c\x6a\x77\x66\xbb\x38\x68\ +\x43\x7b\xc2\x74\x71\x09\xe8\x72\xd3\x69\xb6\x81\xaa\xd4\xb2\x6f\ +\x4e\x61\x44\x8e\x08\x47\xce\xab\xdb\x47\xdf\x9c\x87\xb2\x01\x1d\ +\x83\xd4\x77\x29\x33\xfb\x71\x5c\x74\xaa\x7b\x93\x91\x9c\x16\x27\ +\x3e\x0d\xe8\x07\x6d\x97\xba\x94\x77\xb4\x81\x18\xb5\xc5\x46\xa4\ +\x5c\xf8\x3a\xa8\xdc\x49\x54\x87\x29\xda\x66\x1b\x3e\x6f\xd2\x24\ +\x3f\xd0\x2c\xd2\xb2\x40\x81\x49\x2d\x84\x79\x51\xad\x69\xdb\x8d\ +\x68\x8c\x45\xd3\xf9\x36\x76\xea\x8b\xf8\x39\x5b\x29\xa4\x7d\xe6\ +\x91\xb6\xe3\xbc\xbc\x88\x46\xc0\xae\x6f\x42\x0d\x05\x50\x40\x82\ +\xce\x24\x32\xb5\x27\x74\xa1\xc9\x91\x68\x84\x6c\x7b\xb7\xd1\xb8\ +\xed\xa0\x71\x25\x22\xf7\x33\xc2\xb2\x34\x9f\x71\xd2\x19\x0f\xb4\ +\x19\xa1\x3a\xe0\x46\x56\xc1\xfc\x2d\x70\x5e\x5e\x05\xce\x88\x74\ +\x2e\x8d\xe2\x32\x2c\x3d\x30\xc9\xa6\x64\xb7\xcb\xc2\x90\x92\xa2\ +\x0d\x36\xf0\x24\xe4\xe9\x52\x7c\x2b\x72\x5f\xee\xe3\x88\x08\xbe\ +\x02\x91\x31\x10\x90\xb6\x4a\xc6\xd8\x52\xe6\x06\x27\xfa\x92\x57\ +\xde\xb4\x41\x54\x72\x68\xb2\x27\x36\x27\x8c\x19\xca\x44\xe4\xcd\ +\xb9\x30\x42\x8a\xf0\x2f\xca\xed\x8f\x83\xec\x2b\xfe\x05\xb6\x17\ +\xd5\xc6\x36\x43\x35\x0d\x3f\xad\xa2\x73\x2a\xeb\x69\x33\x36\x3e\ +\x7e\xd4\xee\x2e\x4b\xf6\x05\xc3\x7c\x92\xe7\x71\x2b\xf1\xd8\x9c\ +\xbc\x9b\x33\x35\xee\xac\x3c\xa5\xa6\x3c\xf9\x3f\xb5\x9d\xb3\xbc\ +\xde\x9c\x1c\x1f\xf9\xf5\x8f\x27\x4b\xfe\xab\x53\xd7\x1b\x25\xdd\ +\xd9\x39\x89\x43\x5d\x00\x7e\xc7\x6b\xef\x8d\x07\xef\xdf\x8b\xf7\ +\x7e\xe7\x3f\x8a\xbf\xfb\x37\xfe\x91\x0a\x2d\xef\x1c\x5f\x9d\xd9\ +\x50\x60\xa1\xc8\x51\x6e\x2f\x2d\x3e\x61\x8e\x27\xbc\xfc\xa0\xce\ +\x40\x7f\xab\x73\xd6\xe9\x7a\x19\x3b\xf3\x45\xfc\xc5\xaf\xff\x1f\ +\xe2\x23\xcf\xfd\x50\xbc\xf9\x4d\xaf\x8d\xfd\x83\x8b\xea\xe7\x79\ +\x6c\x71\xc3\x77\x26\xbb\xe1\x98\xb4\x90\x85\xb4\xbc\xc6\x65\xd7\ +\xcd\x23\x07\xf8\x66\x7a\x29\xac\x33\x9d\xb6\x20\x75\xdb\xc7\x6b\ +\x89\xd2\x37\xc7\xb5\xe9\x8c\xf5\xf5\x66\x8b\x26\xbe\x1d\xac\x1c\ +\x77\xf8\xb4\xce\xf3\x20\x97\x32\x1d\xa7\xab\xb5\xea\xbd\x76\x9d\ +\x7c\x0e\xb1\x46\x36\x59\xc5\x6c\xa2\xa6\x47\xc8\x32\x60\x4d\x7b\ +\x28\xd2\x01\x8f\xac\x0d\x87\xd3\x85\xdb\x6a\x93\x3a\xfd\x67\x3e\ +\x95\xda\x01\x0c\xf5\x02\x56\x6e\xda\xb5\xe5\x25\xde\xb2\xc5\xea\ +\xf6\x9f\xb2\xeb\x34\x84\x92\xa5\x36\x31\x50\x4d\x94\x51\x45\x95\ +\xae\xfc\x41\x97\x62\x8b\xbe\x95\x9d\xe3\xec\x07\xa6\x15\x60\x9c\ +\x66\x8c\x52\x8e\xed\x36\xa1\x3f\x30\x6a\x2b\x42\x4b\xf8\x66\x54\ +\xe7\x53\x74\x19\x3a\x8f\x6c\xdd\xdc\x66\x7a\xb8\xe2\x85\x81\xd2\ +\x7e\x32\xed\x98\x8f\xce\xd1\xea\x23\x39\x6e\x21\x64\x3a\x62\x45\ +\x96\xc1\x0c\x7a\x84\xa8\x7c\x29\x1b\xc9\xc5\xaf\x19\x4b\x31\x5e\ +\x92\x89\x9f\xd4\xb7\x1f\xf5\x3f\xa7\x29\xdd\x38\x5d\x5a\xd8\x7e\ +\x80\x85\x92\xa9\x0e\x69\x91\xa2\x52\x98\xaa\x2a\x9f\x43\x4a\xbd\ +\x75\xdd\x89\xaa\xaf\xb3\x49\x75\xb5\xe3\xa6\xdd\x46\x56\xb5\x25\ +\x57\x8c\xca\x66\xb0\x13\xaa\x5d\xb7\xc4\x26\x72\xbf\xd9\x37\xe9\ +\x54\xe3\xec\xef\x59\xde\x0d\x30\x40\x8f\x1f\x05\xab\xdb\x86\x38\ +\x03\x16\xf9\x3a\x47\xa7\xb0\x69\x15\xdc\xfc\x79\xd8\x26\x49\xa3\ +\x7a\x51\x61\x9b\x33\x33\x08\x44\xd8\x79\xd1\xe7\x50\xb5\xda\xd6\ +\x58\x94\x72\xb7\x13\xdb\x72\x31\xb6\xeb\xda\x34\x52\x37\x96\xa4\ +\x87\x46\xb5\xba\x50\x5e\xac\x92\x54\x7d\x41\x5d\xc6\x18\xdb\x8f\ +\xf3\xa2\x38\xbd\x00\x66\xc5\x48\x69\x56\x9b\x8e\x01\x35\xf2\xf9\ +\x9c\xf1\x8d\x95\x69\xd0\x36\xa9\x87\x56\x7e\x1d\x32\xa1\xc0\x28\ +\x4d\x40\xac\xa8\x55\x15\xd9\x2f\x89\x35\x62\x2b\x7b\x45\xae\x80\ +\xad\x21\xaa\xff\xf3\x03\x0a\x72\xe2\xa7\x03\xa7\x71\xf9\xe2\x5e\ +\xdc\xf3\xfa\xe7\xe2\x9b\xbe\xfb\xaf\xc5\x13\x4f\x7e\x24\x96\x47\ +\xd9\x1e\xe5\x42\x71\xb7\xcf\x84\x09\x13\x26\x4c\xf8\x64\x47\x5d\ +\x29\x26\x4c\x98\x30\xe1\xb7\x3f\x86\x41\x70\x85\x9b\x80\x41\x1b\ +\xbd\x18\x60\x7b\xde\xd1\x38\xbd\xe9\x32\x60\xe0\xbd\x85\x4a\xac\ +\xe8\x74\x7d\x1c\x67\xd7\x97\xf1\xcd\x5f\xfc\xa7\xe2\xf0\x43\xef\ +\x8d\xb7\xbf\xed\xb5\xf1\xc0\xbd\xf7\xea\x0c\xcd\x8d\x1d\x26\xab\ +\xbc\xea\xf1\x38\x9e\xbb\xbe\x8a\xd5\xe9\x3a\x96\xcb\x75\x4e\x56\ +\xb9\x81\xd9\x6e\xb8\x51\x53\x37\x6b\x86\xac\x3a\x7f\x7f\x67\x7e\ +\x2a\x6d\x36\x9f\xc5\x8e\x17\xd4\x2c\xf6\x8d\x9d\xb6\x21\x21\x69\ +\x73\xe0\xaf\xe4\x8a\x19\xd6\xdb\x9f\x17\xb0\x94\x76\x2e\x9a\x27\ +\xd3\x54\x36\x14\x9e\xa0\x60\xab\xe0\xc5\x34\x7e\x69\xc7\x62\x1a\ +\x4f\xa6\x59\xca\xd4\x29\xdd\x6f\x01\xc1\x4d\xc2\x82\xe4\x79\xe3\ +\x7b\xe3\x03\x99\x93\x78\xa3\x50\x7e\x8d\x2a\x03\x30\xd5\x1b\x7c\ +\x0c\x46\xd4\x44\xcc\xe8\xaa\x37\xf8\xb2\x7d\x61\x93\xc1\x46\xa7\ +\x30\x64\x31\x14\x87\xf6\x28\xe7\xd2\x25\x95\x86\x9e\xbc\x39\x58\ +\x68\xa5\xf5\xf0\x2d\x23\xae\xe4\x5b\x18\x6c\x9a\x50\x30\x9f\x24\ +\x20\x59\x4f\xb7\xb6\x5d\x6c\x0c\xf9\x34\x65\xb2\xc3\x6d\xe0\x05\ +\x55\xda\xa6\xef\xf4\x81\xb1\x3d\xb4\x55\xd9\x77\xa0\xbd\x8b\x88\ +\x4b\xb9\xd9\x0a\x52\xf6\x8d\x93\x41\x06\x98\x6c\x76\x90\x9e\xc9\ +\x66\xc6\x4d\x33\xf9\x94\x92\x45\x2d\xdf\xac\x51\xf0\x42\x97\x82\ +\x17\xc4\x2a\xee\xc0\x2a\x45\xeb\x09\x9d\xd6\xe9\xe8\x23\x9a\xa0\ +\x73\x73\xd1\xe9\xb8\xc9\xc3\xd3\x6d\xdc\x70\x2c\xbd\xf3\xa4\x3c\ +\xf0\xe9\x0b\x7d\x2f\xac\xf1\x7a\x48\x7c\xa5\x9c\x18\x1f\x59\x76\ +\xcb\x2b\xc0\x22\x74\x1f\x4b\x46\x50\xbd\xbb\x8f\x14\xe0\x5a\xe2\ +\x56\xe9\x8d\x84\xa3\x56\x72\x3a\xdb\x79\x53\x1a\x22\xfc\x71\x2c\ +\x16\xcf\xae\xea\x90\xc6\x4c\xd9\xad\xca\x4d\x07\x81\xa9\xfc\xb0\ +\x6f\x8d\x11\x7d\x93\xb8\xea\x92\x05\x90\x6c\x43\x37\x55\x9a\x01\ +\xed\x82\xb8\x43\xa3\x6d\xcf\xdb\xe4\x56\x79\xc9\xbf\x6f\x4e\xc0\ +\x93\x97\xfa\x4f\xea\x33\x6d\xd3\x86\x6d\x33\xa6\x94\x09\x0b\x92\ +\x6c\x94\x4d\x42\x71\xa7\xf1\x79\x41\x29\x51\x41\x5b\x8e\xcd\x10\ +\x25\x30\x2b\x72\x6c\x73\x7b\xa4\x81\xdd\xca\x7f\xfe\x4a\x5f\xb4\ +\x3a\x0c\xe7\x6b\xfa\x8d\x17\xd6\xf4\x71\xbf\x2e\x6b\xbb\x56\x85\ +\xfc\xa4\x9a\xce\xad\xfc\xe0\x61\x3e\xe3\x3c\x5d\x19\x76\x34\xde\ +\x77\x4e\x94\xe4\x8b\x81\xcd\x87\xf4\x8a\xf5\xed\xfc\x13\x29\x73\ +\xdb\xaa\x03\xed\xee\xac\x63\xbd\x3c\x8e\x93\xe3\xe3\x78\xfe\xfa\ +\x51\x5c\xe7\x87\x1c\x1c\x6f\xea\x45\x67\xbb\x27\x71\xef\xe1\x3c\ +\x7e\xef\xeb\xf7\xe2\x35\xf3\xe7\xe2\xbb\xfe\xd2\xb7\xc4\x0f\xbd\ +\xfb\x83\x4a\x9e\x4f\xe5\xa5\xcb\xf2\x4b\x03\x14\x3a\xf7\x97\x1c\ +\x9f\x30\xc7\x13\x5e\x5e\x50\x5f\xd3\xb7\xcf\x1c\xeb\xd3\x63\x1d\ +\x47\xfb\xf1\xae\xef\xf8\xfb\xf1\x03\xbf\xf4\xcd\x71\xef\x9b\x1f\ +\x88\x8b\x97\x2e\xc7\x42\xe3\x20\x16\x90\x7d\x3e\x1c\xd2\x48\x34\ +\x5a\xe5\x82\x1f\x08\x9f\x2f\x52\x65\x94\x38\x43\xe6\xe6\xd0\x9b\ +\xfc\x9a\xec\x73\xb1\xc7\x03\x1e\x43\x11\x52\xd7\x36\x96\x89\xee\ +\x74\xe7\x31\xc8\xb6\x94\x30\xdb\xd6\x7e\x1d\xdf\x09\xe7\x1a\x1d\ +\xa7\xf2\x49\xb1\xc7\x50\x15\x7c\xce\x6b\xf1\x79\x77\x9c\x89\xf2\ +\x7c\xc5\xb9\x51\x21\x1f\xcb\x4e\xfd\xe8\x38\x06\x3e\x77\x72\xae\ +\x48\x76\xc0\x50\x37\x87\x4c\x83\x4d\xd6\x31\xeb\xe9\xf3\x50\xf1\ +\x68\xd9\x82\xad\xb8\x0b\xfa\x42\x61\x8c\x91\xbc\xf3\x07\x23\xf1\ +\x10\xc6\x4c\x2e\x88\xb4\xb0\xa3\x54\xda\x87\x42\x45\x48\xb4\xcd\ +\x31\xf9\xe0\xdf\x74\xd7\xa4\xf7\xf7\x86\xcf\xad\x42\x32\x1b\x98\ +\x77\x23\x0e\xc1\xdb\xb2\xab\xa8\xe2\xd6\x27\xe7\x56\xcd\xa6\x15\ +\xd8\x57\x45\x1a\x5c\x73\xb8\xb6\x6c\x62\xf6\x9d\x3f\xda\xaf\xf9\ +\x9a\xf8\xe2\x47\x14\xbb\x37\xaf\x59\x9c\xe3\x47\x1f\x64\xf4\x27\ +\x7c\x74\x20\x9d\xc7\x59\xd9\x3f\x72\x09\x4d\x1f\xfc\x5b\x8f\x9f\ +\xcc\x37\xf5\x29\x83\xde\xc4\x9b\xed\x79\x64\x1b\x64\x9d\x8d\xde\ +\x47\x16\xa9\x15\x14\x77\x40\x56\x51\x6d\xbb\x95\x5a\x26\x0c\x44\ +\x22\xd9\xcc\x7d\x50\xd6\x98\xa0\x91\x63\x9f\x71\xc2\x2c\x83\x83\ +\x36\x0e\x23\xd9\x36\xc6\xf5\x42\xcb\x3e\xaa\x3a\x0c\xd6\x99\x32\ +\x9f\xe0\x92\xad\xfb\x7b\xe5\x29\xe7\xed\x7b\xec\xe9\x3c\xec\x81\ +\xb6\xe9\xf6\x81\x1f\x59\x67\x4b\xa4\xc6\x5b\x36\xe4\x57\x79\x65\ +\x1d\x14\x2a\x06\x9b\x38\x3f\x49\x8f\x4a\x60\x52\x9b\x12\xd9\x82\ +\x8d\x42\xa7\x35\xc4\xe4\xf9\x07\xc3\x71\xf9\x36\xe8\x3d\x60\xbd\ +\x15\x99\x13\xe3\xb3\xcd\xae\x38\x9f\x96\x2d\x75\x50\x9c\xdf\x81\ +\xb7\xcc\xb4\xb6\xa5\x6b\x3a\x4f\xed\x6d\xd7\xfc\x2d\x82\x3d\x24\ +\x6d\x38\x6e\xdf\xe7\x50\x32\x74\x9c\x6f\x79\x6d\x30\x5f\xd7\x6b\ +\xa8\x80\xbd\xf5\xd7\xb6\xfe\xec\xac\xe2\x55\x77\x1f\xc6\xee\xe5\ +\xf7\xc7\xdf\x7e\xd7\xd7\xc5\xe2\x40\xa3\x27\xcd\xeb\x41\xd6\x98\ +\x30\x61\xc2\x84\x09\x13\x5e\x0e\x60\xec\x37\x61\xc2\x84\x09\xbf\ +\xbd\x31\x0c\xce\x13\x1e\xb4\x27\xb9\xc1\x79\xc1\x4d\x06\xb7\xc1\ +\xd8\xd9\x38\x0d\xb4\xc7\xc4\x22\x2c\xcf\xd8\x93\x8c\xf1\x58\x59\ +\x93\xd2\xdd\xfd\x8b\xf1\xd7\xff\xc7\x3f\x1f\x47\x3f\xfa\x03\xf1\ +\x8e\xc7\x1e\x8c\xb7\x3e\xf2\x60\x1c\x1c\x2e\xa4\xd4\x20\x7b\xbd\ +\x8a\xe3\xe3\x93\xb8\xfa\xdc\x51\x2c\x59\x18\xe0\xd7\xc7\x9a\xcc\ +\xf2\xdf\x36\xa7\x3d\x91\x62\x30\x3f\xba\xc9\xce\x80\xde\x59\x56\ +\x3e\xbe\x91\xc3\xff\xf4\xcc\xeb\xe9\xb4\x52\x11\xb0\xa3\x4c\x3d\ +\xd1\xf0\x60\x5f\xd2\x7e\xcd\x23\x13\x0f\x45\xe9\x83\x27\x49\x14\ +\x0f\xaf\x79\x44\x27\x68\x1e\x9d\x8b\x15\x2b\x95\x67\xa9\xfa\xac\ +\xb8\x73\x9c\x3a\x70\x53\x9d\xc7\x34\x38\xa7\xcb\x5a\xa5\x03\x28\ +\xab\xcd\x8a\x1a\x04\x1b\x74\x56\x16\x53\x09\x04\x16\x96\x26\x15\ +\x35\x8b\x4a\x12\x33\x30\x94\xad\xe5\x8e\x54\x02\x29\xfc\x21\xc6\ +\x68\xab\x12\x8a\xf3\xce\xc9\x10\xec\xaf\x83\xf3\xd7\xa6\xca\x41\ +\x34\x56\x0f\x41\x9b\x76\xbd\xe5\xfe\x16\xc8\x57\x04\xa6\xaf\x2d\ +\x74\xba\x0a\x4d\x82\x8e\x5d\x0c\x31\x1d\xdb\xae\x42\x26\xa0\xa6\ +\xd2\xaa\x4e\x5e\x2c\x03\xae\x9f\xe4\xdc\xe0\xef\xbe\xe3\xc5\x58\ +\xc9\xb0\x43\xe7\x74\x7c\x04\x25\xdf\x94\xcd\x92\x0d\x06\x56\x16\ +\xce\xaf\x8c\x61\x1d\xab\xbd\xb9\x39\x43\xb7\x81\xf7\x7d\x1a\xf5\ +\x61\x02\x9d\xcb\x37\x82\xea\x26\x8d\xe9\xd3\xbc\x79\x43\x9a\xf5\ +\xa9\x17\x72\xb1\xe5\x58\x1a\xe4\x8a\xf1\x91\x0b\x67\xc8\xb9\xd1\ +\xc8\x62\x5a\xd2\xdc\x0f\x6a\xff\xe6\x49\xdf\xbc\xef\x39\xd1\x07\ +\x7a\x21\x8e\x7c\x52\xd7\x7e\x07\x7b\x62\xe0\x48\x7c\x33\x10\xb5\ +\xcf\x40\x36\x01\x3d\xbb\x1b\xa3\x2c\xd9\x21\xd4\x17\xda\x6d\xa3\ +\x40\xfb\x42\xb6\xe9\x38\x56\xb0\x7c\x88\x8b\x50\x70\x54\x66\xb9\ +\xff\x94\xdf\x48\x9e\xc8\x7c\x2b\x89\x15\x83\x6e\x63\x64\xa5\xcb\ +\xf3\x42\x18\xe9\x5f\xc8\xd4\x4d\x91\xe4\x4d\x48\xb9\xb6\x65\x30\ +\xf0\xb7\x4a\x05\x5b\xaa\x6c\x69\x31\xa3\x36\x1e\xd0\x76\xc0\xf4\ +\x39\x5f\xff\x7f\xf6\xfe\x34\xd8\xb6\x2d\xab\xef\xc4\xe6\xd9\xfb\ +\x34\xf7\xdc\xee\xbd\xfb\xfa\xf7\xf2\x65\x4f\x26\x8d\x24\x24\xd4\ +\x94\xa4\xa8\x72\x59\x8e\xb2\xc3\x11\x8e\x28\xf9\xab\x23\xfc\xcd\ +\xfe\xe2\xa8\xb0\xfd\xb1\x42\x0e\x3b\x2a\xa4\x28\x85\xaa\x4a\x52\ +\x59\x2e\xcb\xa8\x17\x94\x90\x28\x21\x90\x48\x20\x41\x08\x15\x14\ +\x48\x4a\x84\x40\x42\x80\x1a\x10\xad\x48\x32\xc9\x7c\x49\x66\xbe\ +\x7c\xef\x76\xa7\xd9\xcd\xf1\xff\xf7\x1f\x63\xcc\x35\xf7\xbe\xe7\ +\x65\x26\x45\x02\x49\xb2\xc6\xda\x63\x8e\x76\x8e\xd9\xac\xb9\xd6\ +\x9e\x6b\xcd\xbd\xd6\x96\xcc\x9e\xd8\xc9\x39\x08\xee\x97\x84\xe2\ +\x07\xd5\x2e\x5c\x6b\x50\x30\xe2\xb9\xd8\x60\x6a\xac\x6d\xfd\x46\ +\x45\x16\xd5\xc4\x33\xd6\x64\xae\x10\x1e\x1d\x2a\x30\x9e\x54\x5b\ +\xb6\xe5\x82\xe3\x2d\x2d\x54\x84\x8f\xa8\x79\x43\xe8\x3a\x9a\xc4\ +\xb6\xa3\x14\x50\x0b\xc0\x9a\x4a\x14\x27\x6b\xe7\x7a\x18\xb0\x2d\ +\x74\x0e\x87\x1e\x6c\xdb\x8a\xff\x53\xbb\xbc\x68\x67\xe7\x17\x3a\ +\x0e\x78\x72\x8d\xc1\x7a\xa5\xfa\x5d\xb6\xaf\x78\xea\x56\xfb\x83\ +\x5f\xf6\x4c\xbb\xf7\xf0\xc3\xed\x6f\xfd\xb7\xdf\xd8\x1e\x31\xe6\ +\x36\x97\x11\x03\x37\xda\xde\xeb\xfa\x79\x40\xd5\x61\x86\x19\xfe\ +\xe7\x82\x86\x9b\x8e\x2c\x0f\x41\x7e\xfc\xf1\x33\xbf\xf8\x73\xed\ +\x5b\xbe\xed\x4f\xb7\x17\xdf\x79\xd8\x9e\x7d\xe9\x6e\x3b\x3e\x3e\ +\xf1\x5c\xc9\x37\x3f\x19\x70\xcc\x5b\xf4\x65\x50\xc7\x14\x24\x66\ +\x48\x08\x1c\x17\x9e\x0d\x94\xa6\x53\x03\xce\xf1\x49\x7e\x92\x93\ +\x15\x6a\xe3\x60\x12\x3a\x36\xfa\xb2\x65\x02\x21\x31\xdd\x83\x27\ +\x75\xfb\x07\x89\x64\x9a\xa1\xef\xa8\xcd\x25\x4f\xa5\xe9\xcc\xe2\ +\x58\x63\xad\xa7\x38\xa6\x24\xae\x88\x3e\xa5\xe8\xdf\x43\x79\xae\ +\xf1\xf7\x07\x72\x02\xf5\x4c\x99\xb8\x9e\x03\xe0\xe0\x0f\x65\xd9\ +\x30\x41\xb6\x2b\xce\x5b\x61\xa8\x73\x97\xf5\x56\x44\x35\x26\x05\ +\x3e\xc5\x87\xa2\xc4\x5f\x1d\x2a\xed\x5f\xa6\x94\x19\xac\x09\x74\ +\x94\xd9\xa8\x93\xf6\x75\xaf\x5b\xda\x81\x24\xd6\x55\xc8\xf0\x8b\ +\x85\xb5\x50\x84\x1d\x1a\x7d\x1f\x58\x7a\x97\x81\x8c\xca\xba\x49\ +\x06\xe0\x2d\xa7\x12\x12\x3d\xca\xbe\x65\x7f\x23\x05\x2d\x4b\xf1\ +\x20\x5b\xf0\x99\x0e\xdf\x39\x80\x53\x25\xfe\x0e\x1a\xa8\x7d\x48\ +\xf9\x1e\xd2\xce\xf7\xc2\x98\x0c\xf1\x43\x90\x01\x3d\x3f\xd2\xd8\ +\xc2\xd7\x3a\xe4\xf0\x35\x25\x9f\x7c\xbc\x18\xd7\xf5\xd2\x2a\x6e\ +\xbd\x02\xb2\x23\x1b\x81\x1c\x6d\x9f\x90\xa6\x82\xfd\x01\x09\x61\ +\xaf\x1f\xbb\x76\x57\x43\x12\x62\xdf\x1f\x13\x28\xae\x64\xeb\x0d\ +\xc1\xd0\x55\xd3\x50\x27\x8d\xbe\xae\x1e\x2f\xb0\x3d\xfb\x75\x84\ +\x0a\x07\x7d\x12\xc3\xdf\x75\x8c\x06\xa4\xbe\x30\x63\xb9\x43\x92\ +\x77\x19\x01\x91\x33\xbd\xe3\x63\x28\x1a\x50\xf6\x74\x48\x63\x90\ +\x21\xae\x34\xd6\x91\xa8\xbc\x6a\x73\x1f\xf7\x12\x82\x47\xb9\x9b\ +\xcf\x29\x76\x4b\x1c\xf8\xc4\x0a\xfb\xe8\x15\x9e\xbb\xe0\x78\x86\ +\xf2\x0c\x98\xfc\x63\x3e\x01\xe2\xeb\xf3\x41\x48\x9c\x9a\x33\x57\ +\xa4\x3d\x94\xc0\xf9\x95\x44\xbd\x32\x7f\xea\x6c\x15\x33\xd9\x27\ +\x40\xe6\x47\xa0\xfe\xd1\x68\xda\x4c\x77\x78\xda\x37\xda\x49\x93\ +\xa6\xd2\x9a\xa8\x96\x55\x1e\x45\x62\x7c\xad\x68\x59\x10\x03\x5d\ +\xdf\x37\x7c\xdb\x48\x69\x51\x7d\xaf\x46\x72\x9c\xf0\x4a\xde\x67\ +\x5f\xd8\xb4\x5f\xf8\xf4\x8f\xb4\xef\xf9\x47\xdf\xee\x1f\xbb\x72\ +\x2c\x46\xf6\x68\x13\x58\xe1\x66\x98\x61\x86\x19\x66\xf8\xe2\x04\ +\xbe\x53\x67\x98\x61\x86\x19\xbe\xb4\x61\x6f\x46\x8a\x08\xe6\x7c\ +\xd7\x50\xd3\xd7\x5f\x33\x54\x59\x45\x7d\x15\x0e\x0d\xd2\xaf\x55\ +\xb8\x23\xa1\x8b\xd0\xcd\xe1\xb6\x7d\xdf\xb7\xfe\x83\xf6\x33\xff\ +\xc3\x37\xb4\xf7\xbf\xe3\xe9\xf6\xd5\x5f\xfe\xde\x76\xf3\xf4\x48\ +\x75\xbb\x6a\xeb\xd5\x65\xbb\x58\xad\xda\x67\xde\x38\x6b\x8f\x2e\ +\x36\x5e\x5c\xdb\xac\xe3\x75\x8f\xd4\xdd\xb1\x96\x5c\x88\xc4\xe4\ +\xdf\x0a\x0c\x8e\x9f\x17\x04\xb9\x18\xc2\xff\xa6\x71\x83\x16\x13\ +\x0e\x76\xb7\x83\x50\x13\xfc\x60\xa1\x71\x31\x39\xb6\xc3\x37\x0f\ +\xb8\xb1\xcb\x13\x13\x7e\x6a\x2e\xcb\x73\x71\x71\x01\xbe\xe1\xea\ +\x87\xa7\xd2\x78\xdd\x23\xfa\x03\x2e\xb4\xc5\xec\x86\x7a\x12\x06\ +\xa5\x59\xf5\x17\x4f\x05\xd5\x05\x5f\x81\xb4\x4a\x14\x6f\x0f\xf0\ +\x99\x50\xa9\x5d\x90\xa2\xec\xa2\x5e\x28\xb2\x9c\x00\x8f\x3e\x24\ +\x83\x79\xca\x50\xe3\x6a\xb7\x95\x5f\x01\x65\x44\xac\xf0\x8b\x8e\ +\x28\xea\xc2\x13\xf2\x92\x73\xc8\x1b\x7e\x41\x88\xdf\xcb\x18\xe0\ +\x1a\x55\xe6\xc9\x3a\xed\xe3\x3e\x48\xd7\x63\x8f\x7c\x42\x67\xbb\ +\x5e\x09\x1f\xc6\x00\x57\xb3\xb4\x8d\x45\x33\x8d\x9b\x83\xa3\x03\ +\xbf\x22\x74\x79\x7c\xd8\x16\xc7\x3c\xe1\x18\xe3\x80\x1b\x95\xfb\ +\xaf\x08\x0d\x18\xfa\x4d\xcc\x68\x32\x4f\x87\xd0\x6d\x83\x22\x7a\ +\x4c\xa9\x07\x8d\x50\xfb\xbe\xd3\x42\xdb\x74\xe1\xcd\xb8\x37\x4a\ +\x66\xbc\xb1\xd0\x85\xcc\x02\x2e\x8b\x6a\xf6\x17\x95\xbf\x8f\x91\ +\x11\x65\x8f\xff\x52\xc3\x27\xfd\x1c\x3b\xa8\x71\x5c\x34\x1b\xec\ +\xbd\x0e\x45\x13\x21\xd1\x26\x12\x81\xef\x0d\xa4\xd2\xc7\x62\xb0\ +\x86\x6c\x34\x0b\xa3\x1e\x19\xd9\x7f\x1e\xd2\xd8\x86\xf1\x99\xae\ +\x13\x02\xa2\xf4\xa8\xf7\x11\x1f\xdb\x24\x9b\xa6\x5d\xfb\xc5\xc7\ +\x26\xb1\x8c\xd8\x39\x3f\xc8\xc6\xf1\x2b\x9d\x8f\x79\xd3\xca\x13\ +\xf4\x09\x34\x11\x13\x9f\x80\xb2\x15\x02\xa2\xc5\xee\xe8\x07\xd8\ +\xb1\xef\x01\xe3\xc8\xe5\x08\x63\xec\x64\x87\xb9\xd2\x53\xf7\x21\ +\x7b\xcc\xa1\xec\x95\x06\x90\x83\x74\xd5\x0e\x60\xbf\xc6\xa7\xf3\ +\x55\x5e\x62\xc2\xc0\xee\x0a\x3b\x06\x41\xaf\x60\x41\x3a\x88\xd8\ +\x54\x76\xed\x87\x18\x36\x2c\xec\x6a\xa8\xf0\x30\x97\xc6\x93\x9f\ +\x2a\xc1\x49\x1f\xc6\x85\x7b\x43\xf5\x65\x7f\xf1\xe3\x07\x2f\xac\ +\xe5\xa2\x9a\xc1\xe1\xab\xcf\x0a\xa6\x32\x0b\xdd\xe4\x54\x03\x65\ +\xb2\x0d\xda\x21\x2c\xa3\x2e\xea\xb1\xd1\xa9\x7e\xab\xd3\x39\xaf\ +\x18\xd6\xf7\xd0\xe5\xaa\x3d\x3e\x5b\xc5\x13\x9b\x72\x5e\xfa\x15\ +\x91\x07\xed\x3f\x78\xe7\xdd\xf6\xd5\xef\x7e\xba\x9d\xfd\xf3\x1f\ +\x6c\xdf\xfa\x37\xbe\xb7\x6d\x0f\x0f\xbd\xf0\x16\x01\xdd\xe0\x5e\ +\x75\x60\xb7\xec\x3d\xf8\xac\xc6\x19\x66\xf8\x6c\xc0\x20\xd3\xc8\ +\xf5\xf0\x5c\x68\x3e\xc2\xff\xcc\x1e\xb5\xbf\xf8\xdf\xff\x89\xb6\ +\xbc\xf7\x89\xf6\xae\xf7\xbc\xda\xee\xdc\xba\xad\xef\x30\x1d\x57\ +\xf6\x51\x0e\x9d\xef\x63\x2e\x83\x54\x48\xa4\x1c\xb0\xf8\xf9\xfc\ +\x69\x26\x74\x22\xf6\x84\xa6\x0a\xc6\x32\x6c\x88\x49\xa5\xe7\x5c\ +\x3b\x9c\xb3\x27\x5b\xe6\x13\xb1\x0d\xda\x21\xcb\xdf\x81\xd2\xc9\ +\xd3\xac\x12\x35\x96\xf6\xf2\xe4\xe8\x9a\xa7\x1b\x38\x9f\x50\x9e\ +\x4f\xa4\xe0\x6e\x1c\xbe\x12\x5c\xa6\xd1\x2a\xe5\xcf\x78\x19\xd3\ +\x7d\xe1\x4f\x2a\xfd\x05\x25\x3d\xac\xb8\x6a\x53\x08\x61\x37\xeb\ +\x2d\xf4\xf6\x31\xef\xd4\x30\xb0\x86\x12\xab\xaa\x96\xbb\x4f\x30\ +\x3b\xe2\x28\xb8\x8e\x7b\xd8\x9d\x40\xea\x14\xfb\xcd\xfb\x4e\x92\ +\x37\xfb\x4a\x2c\x4d\xca\xa8\xb8\xe1\xed\x66\x21\x77\xc4\xc7\xce\ +\x46\xeb\x4a\x2c\xd9\x65\x24\xef\x3e\x33\x63\x45\x6d\x96\x43\xe5\ +\x2e\x35\xa0\xc6\x67\x32\x1b\x82\x0f\x47\xe7\xde\xb3\x47\xfe\x28\ +\x73\x07\xd0\x27\xfa\x94\x4b\x22\x01\x1a\xb2\xa5\xdc\x92\xd7\x78\ +\xa9\xb9\xd2\xee\x62\xd8\xc4\x7b\x71\x4d\x9b\xa7\x3e\xa6\x4a\xf1\ +\x67\xac\x69\xe3\x07\x16\x9e\x5f\xc9\xce\xf4\x07\xa6\xc7\xf1\x26\ +\xe8\x75\x75\x90\x89\x4d\x11\xf4\x6e\x82\x26\x86\x9f\x23\x4e\x90\ +\x4e\xdd\x27\x1d\x8b\x37\x35\xc0\x45\xdf\x07\x27\xb4\xbd\x4a\x0b\ +\xb0\xbf\x93\x01\x86\x01\x69\x4e\xee\x50\xe7\x4a\x1e\x34\x88\xe9\ +\x87\xda\x75\x68\x12\xcc\x6e\xc9\x09\x64\xb6\x6f\x65\x08\x2c\xce\ +\x20\xc6\xb2\x0b\xca\xb6\x0a\xba\x1d\x48\xa1\xb7\xd7\xc9\x8e\x46\ +\x9b\x4a\xaf\xfa\xcb\xa1\xd7\x3b\x12\x94\xbd\x8f\x46\x75\x00\x02\ +\x63\x4e\x01\xf8\xde\x47\xe3\x42\xf6\xdc\x80\x41\xd1\xd9\x27\x9c\ +\x26\x70\xfd\xb2\x6d\xb5\xbf\x7d\x9e\x72\x3d\x54\x1b\xa9\x19\x7b\ +\x61\x8f\x50\xf6\x56\x62\x1e\x9a\x18\x79\x52\x8f\x28\xa5\xe3\xc7\ +\x27\x10\x9d\x0a\x88\x17\xac\xd8\x1a\xf9\xd3\x4e\x3a\x9d\x37\xc2\ +\x36\x42\xf9\x44\x75\xc2\x07\xe2\xff\xe5\x93\x73\x9c\x47\x64\x1f\ +\xf3\xc9\x8e\xe8\x58\x36\x51\x4f\x5a\xb9\x6d\xcb\x76\xd8\x5e\x7a\ +\xdf\xa3\xf6\x9d\xff\xec\x6f\xb6\x9f\xfd\xf9\x7f\xe5\x1f\xa5\xd2\ +\xe6\xf0\x8a\x7c\x59\xca\x0c\x33\xcc\x30\xc3\x0c\x5f\xa4\x10\xdf\ +\x5b\x33\xcc\x30\xc3\x0c\x5f\xca\xb0\x37\x23\x2d\xb1\x26\xcb\x4c\ +\x60\x73\xae\xfb\xab\x87\x31\xe3\x4e\x00\x05\x75\x41\x63\xe1\x23\ +\xdf\xda\xfa\xf2\x71\x7b\xf4\xf0\x71\xfb\x9e\x3f\xf5\x27\xdb\x33\ +\x8b\x87\xed\xfd\xef\x7d\x7b\x7b\xe6\xa9\x9b\xb2\x1c\xb4\xf5\x3a\ +\x9e\x06\xb8\xff\xf0\xa2\xdd\x7f\xb0\x6a\x97\x97\x6b\x4d\xb6\x85\ +\x6d\x23\x2b\x71\x98\xc0\xcb\x93\x9b\xe8\xba\xc8\xf1\x86\xda\xf5\ +\xa9\x9b\x03\xd8\x78\xda\x41\xb2\xae\x20\xfc\x5a\x48\xe9\xf9\x75\ +\x5e\x5d\x50\x61\x8f\x2c\x41\x7d\x49\x42\x7e\x04\x5f\x74\x28\x86\ +\x17\xd2\xc0\x88\xe7\x3f\x75\xd6\x87\x5f\x9f\xfa\x09\x20\x3f\x99\ +\x26\x64\x91\x03\x03\x79\x95\xc4\x0d\xf0\x04\xd8\xc2\x82\x3d\x9e\ +\xdc\x86\x51\x0f\x64\x1b\xf7\xc1\x6e\x83\x2f\x7d\xd0\x81\xb2\x69\ +\x13\xed\xc3\x67\xc0\xb1\x5a\x80\x5d\xbb\x21\xfa\xc1\x90\xaa\xd0\ +\x06\xef\xff\x0a\x72\x5d\xc2\xaf\x10\x08\x4d\xb6\x9f\x0b\xac\x50\ +\x56\x58\xeb\xa0\xae\x25\x7a\x68\x41\xfa\xb0\x5f\xca\x7e\x9d\x6c\ +\x04\x46\x79\xc0\xda\xaf\x50\xfe\xbb\x09\xde\x6d\x30\xd6\x7e\x9f\ +\x28\x2f\xff\x77\x1f\x2d\x79\x02\x4d\xfb\xd6\x0b\x68\x1a\x33\xc7\ +\xba\xd4\x3b\x39\x6c\xcb\x53\xa1\xe8\xe2\x28\x5f\x15\x5a\x57\xa3\ +\xe4\xc9\x4d\x11\x22\x16\x6c\x6a\xa2\xad\xa9\x4f\x48\x4b\x34\x48\ +\x63\xc7\xe3\x98\x41\x9b\xa4\xf4\xa0\x6f\xc8\x70\xc3\xa7\xb0\x16\ +\xbb\xb8\x59\xcf\x38\xd3\xb1\xe1\x45\x34\x64\x6e\xe8\xf0\xf4\xa6\ +\x29\xbe\xa2\xf0\xc6\xd4\xdb\xb6\x2b\x47\xbe\x2a\x23\x64\xae\xde\ +\xe3\xa6\x12\xf5\x98\xea\x64\x99\x72\x93\x0f\x7b\xa2\x60\xfc\x3f\ +\xaa\x2b\xee\x0b\x58\x9c\x74\xde\x17\x92\xa3\x6f\xa6\x3e\xf1\x81\ +\x9a\x77\x78\xd1\x86\x3d\x13\xb2\x5b\xa9\x9e\xeb\x46\x88\x18\xf7\ +\xad\x5c\x4c\xc3\x40\x97\xdb\xc7\x31\x53\xed\xe3\x56\xbc\x51\x7c\ +\xee\xef\x1e\x22\xf3\x4e\x32\x3c\x4c\xe9\x92\x19\x1d\x46\x9d\x20\ +\xc6\xd2\xd0\xda\xc1\xaf\xd7\x4f\x9f\xb1\x3d\xb5\x38\xd6\xeb\x5c\ +\xb9\xd3\x17\xc9\x1a\xc9\x1e\xb7\xf0\x4a\xec\x0f\x44\xf6\x09\x0d\ +\x62\x2c\x43\x23\x1f\xac\x21\x54\x9d\xef\x79\xec\x9b\x3c\x30\xf0\ +\xdd\x25\x93\xeb\xf2\x57\x75\xae\x83\x72\x9f\x1a\x53\x0d\xc8\x45\ +\x35\xb1\xbe\x91\x99\x63\xae\xb7\x4d\x40\xdd\x7d\xf3\xdf\x8b\x6a\ +\x87\xb1\x20\x6a\x43\x52\x41\xb0\x95\x42\x07\x63\x82\xf7\x5f\x6f\ +\xe3\xe4\x65\x71\x00\xd5\x20\xa9\x40\x15\xe1\x75\x6f\xdc\x18\x85\ +\x6e\xf4\x5d\x74\xc9\x82\xda\xf9\xb9\xa9\x4e\x81\x38\xb5\xc3\xc5\ +\xb6\xdd\x3c\x3c\x6a\x7f\xf0\x3d\x37\xdb\x7b\xee\x6c\xdb\xbf\xf8\ +\xfa\x6f\x6a\xff\xf2\x27\x3e\xac\x3c\x0c\x32\x95\xe0\x3f\x5d\xb3\ +\xeb\x0c\x33\xfc\x3a\xc2\x74\xe0\x70\x6a\xdb\xe8\xbb\x60\xb9\x3c\ +\x69\x5f\xf7\xb7\xbf\xb6\xfd\xcc\xc7\x3e\xd4\xde\xf1\x95\xaf\xb4\ +\xbb\xb7\x9f\xd2\x78\x65\x20\x72\x72\x56\x0e\x9d\xcb\xe3\xd8\x40\ +\xca\xf3\xcb\x1e\xc4\xb0\xc5\x4f\x7c\x3f\x51\x05\x46\xb6\x3c\xc7\ +\xc0\x03\xf6\x0b\x6b\x3f\xf7\xa8\x4c\xa8\x4f\xb9\xb6\x05\xcd\xaf\ +\x66\x27\xa6\x1d\xa6\x9a\xec\xea\x0b\x64\x97\xa1\xbe\x7a\x78\x32\ +\x8d\xff\x4c\x73\xf5\x38\xef\xf7\xc0\x13\x20\x5a\x55\x75\x2a\x17\ +\x77\xc5\xd4\xbe\xa8\x73\x1c\xfb\xe1\x61\x2f\x53\x4b\xb2\xc7\x8d\ +\xe3\x7c\x02\x30\xd1\x90\x42\x78\x06\x74\x7b\x57\x45\xdb\x4a\xe7\ +\xba\x24\x14\x0b\x65\x6f\xb8\xbf\x43\x88\xa4\xbe\x64\x06\xb0\x06\ +\x37\xbb\x66\x3b\x8a\xe6\xf7\x9f\x7d\x12\x7d\x5e\x83\xc8\x50\x65\ +\x87\x1e\xcc\x40\x06\xfc\x2a\x9e\x10\x2a\xa4\x7b\x3d\x84\xc0\x24\ +\xc9\xa6\xa0\xfe\x49\x76\x34\x96\x4f\xa8\xa2\xec\x6a\x23\xbc\x6d\ +\xd6\x85\x80\x8d\x34\xc5\x09\xa4\x8e\xf3\x74\xd4\xb3\xa7\x1a\x08\ +\xd3\x36\x41\xd7\x79\x81\x4b\xa8\x2d\xb4\x64\x89\xc5\xb1\x7a\xba\ +\xdf\x73\x22\x19\xfa\xc2\x9a\x7d\x82\xe7\xd9\x34\x6c\xf8\xf4\x1f\ +\x2a\x55\x3c\xe7\x65\x6a\xa4\x84\x78\x46\xe2\x90\x27\xed\x1a\x68\ +\x57\x11\x85\x6a\x99\x16\x57\x50\x1a\x20\x7e\x74\x94\xfd\x31\xf4\ +\x41\xef\xbb\x42\xcb\xea\xad\xd1\xc7\xfa\xc0\x80\x54\x74\x40\x88\ +\xf8\x63\xbe\x09\xa2\xb6\xc5\x17\x7a\x7f\x59\x07\x48\x27\x01\xb9\ +\x70\x1f\xaa\xae\x23\x58\x54\xd2\xd5\xc9\x8c\x6e\x13\x9f\xc7\x5a\ +\xb0\x89\xa3\xe7\xa4\x36\x0c\x0c\xb9\x2c\xa6\x43\x99\xc6\xbe\x29\ +\x24\x31\x35\x20\x84\x02\x9d\xc7\x67\x68\x9d\xd2\x13\x93\x8c\x9d\ +\x64\x92\xcd\xbb\x6b\xd2\x90\x16\xa7\xc1\x1a\x26\x8b\x40\xe3\xa3\ +\x7b\x69\x87\x78\x1c\x28\x88\xae\x34\x52\x1b\xde\x1e\x4a\x61\x35\ +\xa0\xed\xbc\x84\x3a\xbf\xa2\x8d\x26\x44\xff\x07\x8f\x53\xe9\x2d\ +\x88\x57\xff\xea\x60\xf5\x9b\x5d\xca\x4f\x49\xf7\x29\x5d\xb0\x13\ +\x93\x3a\x1b\x13\x3a\x07\x93\x15\x61\x0b\x5a\x00\x97\x7a\x50\x7e\ +\x94\x7d\xa8\xb9\xff\xd1\xf1\xba\xdd\x7b\xfb\xa7\xdb\xdf\xf9\x1f\ +\xff\x5a\x7b\x74\xf9\x7a\xdb\x5e\xc4\x77\x14\x40\x8b\xa3\xe7\x67\ +\x98\x61\x86\x19\x66\xf8\x62\x05\xe6\x7e\x33\xcc\x30\xc3\x0c\x5f\ +\xda\x90\xb3\xda\x69\x72\x7b\x0d\x94\x31\xe7\xbb\x9f\x13\xf6\xfd\ +\x98\xf3\xee\xcc\x7b\x31\x4a\xe1\x89\x77\x1a\x06\xff\xab\xf5\xaa\ +\xb5\xd3\x5b\xed\x6f\xfe\xb1\x3f\xd5\x4e\x3e\xfc\x33\xed\x77\xbf\ +\xef\x95\xf6\xce\x97\x9f\x6f\xcb\xe5\xc2\x17\xb9\xfc\x6f\xda\xe3\ +\x8b\x8b\x76\xff\xfe\x45\xbb\x58\x5d\xb6\xed\x5a\xb8\x59\x2b\xa3\ +\xa6\xd8\x5c\x1c\x70\x21\xe0\x8b\x81\xb1\x12\x82\x2a\x8a\xc9\xfc\ +\xa1\x26\xec\x87\xf1\xea\x30\x26\xf0\x4c\xcc\x39\xe9\xc7\xbd\x09\ +\x49\x39\xe1\x9f\xfe\x07\x4d\x14\xde\x76\x30\x16\xd3\xe2\xe9\x96\ +\x58\x4c\xb3\x2b\x17\x3e\xaa\x87\xff\x94\x9c\x5f\xd4\x5d\xaa\x50\ +\x16\xd5\xb2\x70\xa7\x19\xc6\xd0\x99\x01\xae\xd3\x19\x5c\x8b\x01\ +\xb8\xb4\xda\xbd\x90\x2a\xdc\x81\x6e\x90\xa7\xef\x7c\x28\x0e\x72\ +\xde\xe1\x70\xb3\x12\x2d\x07\x99\xe4\x41\x07\xa8\xa9\x69\x53\x3c\ +\xc7\xcc\xb8\x52\x7a\x2b\xc7\xcc\x54\x71\x76\x02\x65\xd9\x3b\x08\ +\x71\x0c\x18\xf8\xc0\x0e\xf0\x42\xf6\x51\xec\xa7\xc4\x89\x18\xe8\ +\x0f\xdb\x93\x4e\xc8\x7e\x45\x4b\x1d\xf1\x92\x60\x5d\xea\x69\xd8\ +\xa1\xfc\x58\x24\x15\x3d\x38\x16\x9e\x48\x2d\x6c\x37\x94\xe7\x44\ +\xfd\xcd\xd3\x68\xc7\xa2\x47\xc2\x43\x35\x82\xa7\xd5\xd8\xf7\x46\ +\xe9\x14\x6b\xfc\xef\xbc\xb1\x62\x2e\xd2\x65\x52\x17\x0b\x03\x48\ +\x8e\x4f\x48\x51\x51\x5f\x2c\x47\x83\xd2\xce\xf5\xe4\xa0\xab\x45\ +\x35\xee\xd4\xd4\xe2\x57\xbc\x86\x31\xa8\x17\xd3\x8a\xe6\x82\x59\ +\x2c\x96\x0d\x7e\xeb\xd0\x5b\xe7\x18\x29\xf7\x58\x55\x06\x79\x35\ +\x76\x54\x2e\x58\x37\x85\x7c\x97\x48\x15\x0a\x79\xaa\x6b\x80\xf4\ +\x99\x9a\xa3\xed\x61\xe8\xc0\x18\x56\xef\xa5\x34\x00\xaa\xec\x4b\ +\x03\xac\x77\xe4\x18\x23\xc7\xf2\xe0\x66\x85\x31\xdc\xbb\x49\xcc\ +\x56\xfa\xee\xef\x63\x41\x3e\x5e\x48\x53\x1c\xf6\x21\x3c\xc7\x75\ +\x8e\x4f\x2f\x98\xe3\xeb\x24\x6b\xd9\xe3\x0b\xbd\xdf\x83\x0d\xe3\ +\x64\x0a\xc6\x35\x44\x48\x9c\xc0\x12\x76\x55\x12\x9f\xda\xe7\x06\ +\xbb\x87\x6c\x3d\x7e\xd6\x59\x65\xf0\xf9\x6d\x90\xab\xad\x3e\x86\ +\x12\xc3\x4e\xbd\xe9\x7b\x74\x26\xa1\xf7\xf1\x1b\x7c\xe5\x05\x76\ +\x6f\xd8\x26\xed\xf6\xce\x14\x09\xa8\x2c\x56\xc6\xde\x81\x0d\x2e\ +\x60\xe4\x77\x00\x83\x30\x08\x8c\xce\xf1\xac\x0d\xf3\x9f\x6a\x8c\ +\x47\x8f\x35\x8c\x71\x8e\x06\x7c\x9c\x69\xdf\x80\xfc\xa7\xda\x92\ +\xff\xaf\xb4\x01\x54\xe2\x7a\xec\x83\x8d\xc1\x26\x84\x94\xfe\x51\ +\xf9\x2e\x76\xb0\x3e\xf6\xa2\xc1\x76\x1d\x0b\xd4\x53\x7a\x5e\xfd\ +\xb8\xba\xbc\x68\xe7\x17\x97\xed\x7c\xbd\x76\x1b\x96\x1a\x17\xdb\ +\xc5\xba\xbd\xf3\xc6\xb2\xfd\xde\x77\xde\x6e\xb7\xdf\xf8\x44\xfb\ +\xce\xaf\xfd\x5b\xed\xd1\xe6\xbc\x6d\xcf\xcf\x63\xec\xd1\x26\x92\ +\x68\xb8\x81\x32\x76\xca\x9e\x61\x86\x5f\x13\x68\x34\x69\x6c\x71\ +\xfc\x33\x6f\xe2\x07\x44\xff\xf6\xc7\x7f\xbc\x7d\xcb\xf7\xfe\xc5\ +\xf6\xca\xfb\x6e\xb5\xa7\x9e\xb9\xe7\x63\xeb\xea\x6a\xd5\x9f\x4e\ +\x8b\x5c\xd3\x48\x74\x5a\x86\x02\xc9\xf8\xc4\xd7\x58\x0e\x5e\x41\ +\xf8\x66\x6e\x7c\x3a\xda\x7b\x47\xc6\xa9\xcb\xe9\x5f\x3f\x26\xc8\ +\xcf\x00\x7b\x65\x14\x58\x50\x82\xb9\x5c\x44\x59\xe8\xde\xae\x62\ +\x31\x8d\x1f\x4b\xe1\x53\xe7\x0e\x80\x6c\x85\x14\x3c\xd6\xc3\x2a\ +\xa1\x0e\x61\x01\xdf\x2f\x61\x47\x19\x4f\xc3\xa4\xaf\x78\xdf\xd8\ +\xf7\x7c\xaa\x0a\x4f\x7b\x71\x63\xd0\xac\x60\x17\x07\x13\xb4\x9f\ +\x77\x53\xa6\xbe\xf4\x19\x67\x1e\xb6\xf4\x52\x98\x42\x89\xda\x79\ +\xf6\xa0\x1e\xa0\xbd\xab\x2e\x76\x90\x3e\xa3\x98\x46\x4c\x6f\xc8\ +\x52\x74\xf4\xe6\x12\x2c\x77\x21\x99\xf0\x4f\x24\xb6\xd4\xce\x97\ +\x58\x9e\x95\x4c\xe5\x25\x2a\x31\x76\x99\x14\x3e\x0d\xe3\x0e\x12\ +\xd8\x6c\x97\xf0\xa3\x2d\xb4\xa8\x24\xb8\xf2\x09\xdd\xe4\x17\x58\ +\xa9\x20\xbe\x40\x44\x44\x85\x21\x42\x75\x06\x37\x86\x2d\x16\xc5\ +\x82\x8f\xe5\xa3\xb8\xde\x00\x2d\xcb\xce\xeb\xb1\xcb\x9f\xb9\x0f\ +\xf9\xc9\xc7\xf7\x81\x3c\xc3\x46\x1c\xc7\x88\x72\x98\x22\xed\xf0\ +\xaa\xb8\xe5\x10\xe0\xec\x1f\xca\x27\xa1\x86\x57\xf4\x55\xf2\xd2\ +\x55\x8b\xdf\x1a\x62\x1f\x74\xc7\x27\x32\xa0\xc0\x67\x34\x44\x61\ +\x63\x55\x76\xbc\xa8\xa7\x38\x46\x5a\x2c\x1f\x03\xd9\x56\xc0\xf6\ +\x29\x77\xe4\x15\x2a\xa9\xfd\x45\xde\x6a\x14\x2a\x27\x53\x96\x1d\ +\xc8\x2c\xbb\xa0\x3e\xf3\xb5\x5e\x8e\x79\xc0\xb1\x47\x78\x22\x53\ +\x15\x33\xb4\x56\xcc\x35\x6e\xbd\x6f\xd9\x35\x63\x5c\xf7\x81\x14\ +\x81\x94\x1f\x7e\x11\x91\x3a\xa5\x22\x92\x6e\x37\x98\x99\xda\x5c\ +\x79\x62\xdb\x05\xcb\xe9\x5f\x75\xe1\x7c\x13\x5d\x4f\x12\x71\x0a\ +\xac\xdf\xd3\x05\x44\x19\xfe\x04\x89\x7a\xb3\xd1\x06\xd3\xd4\x27\ +\x02\xd8\x58\x54\x9b\xda\x0a\x6f\x43\xcf\x63\x40\x9f\x9b\x85\x84\ +\xd2\x04\x0c\x1e\xce\x1f\x9a\xf0\x9f\xbc\xc6\xea\xfb\x3f\x73\x75\ +\x6d\xa5\xab\xad\x76\xf7\xce\x49\x7b\xb0\xf8\x89\xf6\x4d\xdf\xf5\ +\xf5\x6d\x79\x63\xa1\xeb\x6a\x46\x5d\xe4\x8b\x2c\xd7\xb5\x7b\x86\ +\x19\x66\x98\x61\x86\x2f\x06\xd8\x9b\xda\xcd\x30\xc3\x0c\x33\x7c\ +\xe9\xc1\x38\xa5\xdd\x9b\xde\x1a\x2c\x33\x5f\x85\xa9\x79\x6b\x39\ +\x16\x02\x45\x0b\xf0\xdd\xf7\x07\xba\x0e\x45\x06\x2e\x9b\xa8\xff\ +\x18\x5c\xf8\xa3\xff\xe4\x87\xda\x4f\x7f\xdb\xb7\xb4\xdf\xf3\xbe\ +\xe7\xdb\xef\x7c\xf7\x7b\xe2\x55\x8f\x1b\x5d\x8c\x6e\xd7\x7e\x12\ +\xe0\xfe\xfd\xcb\xf6\xe8\x82\x57\x3c\xae\x9c\x87\x4b\x59\xe2\x79\ +\xc2\xce\xd9\xdb\x77\x87\x86\x8b\x3c\xca\xc0\x46\xb9\x8b\x78\x32\ +\x6d\xc9\x82\x08\x17\x0d\x32\xc5\xd2\x54\xf9\x98\x44\x02\x25\x49\ +\x9d\x51\x57\x1a\x4c\xf6\x29\xe7\xaa\x16\xd3\x70\x13\xc4\xaf\x50\ +\x15\x69\x1d\xb8\xe0\xd7\xde\x8a\xec\x0d\x27\xf2\x87\xeb\xc0\x04\ +\xec\x89\x93\xac\x6b\x75\xa4\x1d\xbb\x2a\xc2\x85\x11\x1b\xfa\x5d\ +\x5b\x22\x20\x5a\xe5\xfa\x0e\x11\x9f\x6c\x57\xb5\xa7\x7c\xcd\x92\ +\xd0\x1e\x23\xb2\x14\x50\x16\x0e\xbd\xd8\x80\x3d\x9d\x89\x57\x88\ +\xfc\xd9\x10\xe8\xb2\x92\xb7\xc4\xb2\x47\xbd\x5d\xf7\x04\xf3\x55\ +\xf6\x88\x09\xf6\xaf\xbb\x82\xf0\xc2\x29\x34\xfd\x15\xd4\xe0\x7d\ +\xa7\x7d\x85\x48\x4c\x16\xd0\xb8\x29\x2f\x5c\x1e\x4b\xa5\x0b\xb7\ +\xc5\x8d\x78\x02\xad\x9d\x2c\x73\xf1\x6c\x42\xf7\x83\x63\xa9\x3c\ +\xa9\xdc\x57\xd9\x17\xde\x5c\x18\x3e\x81\xe8\xcc\x03\x0c\x34\x37\ +\x06\x26\x20\x38\xa5\x1a\x3b\x13\x3f\xe8\x4c\x82\xf7\x4d\x98\xc2\ +\x41\x37\x2d\x7a\x6d\x63\x21\xec\x72\xdd\xae\x78\xdd\x95\x2e\x40\ +\xbd\x68\xc6\x13\x6b\xd2\x6f\x24\x6f\xbd\xd0\xa6\xe3\xc6\x8b\x68\ +\xf8\x47\x7e\xe7\xe3\xde\x90\x65\x15\x9f\xb1\xea\x06\x91\xcb\xaa\ +\x05\x36\xd5\xcd\x37\x8d\x12\x6d\x33\x42\x8a\x46\x13\xdc\x74\x78\ +\x81\x8f\x07\xf3\xd1\x21\xde\x6f\xc6\x90\x01\xef\x3b\xd1\x8e\x24\ +\x52\x66\x88\xe8\x73\x7c\x94\xc4\x4d\x0c\xf5\xb0\x74\x7e\xf5\x6a\ +\xea\xad\x0b\x51\x94\x4a\x24\x02\x56\x26\x02\xde\x7f\x3a\x96\x1c\ +\x03\x54\xde\x5c\x2c\xf5\x02\x29\x7e\x43\x99\x50\xa0\xf6\x7b\xe9\ +\xac\x4f\xb4\x9c\x05\x44\x9a\x60\x7b\x68\xe8\x07\x8b\xa5\x12\x72\ +\x2e\x8a\xcc\xea\xa7\x08\x52\xee\xa6\xfe\x9f\x23\xc6\x9a\xdb\x13\ +\x25\xb8\xde\xc6\xac\x5b\xcf\x27\xb9\xda\x63\xff\x30\x45\xa6\xf0\ +\xed\x88\x8f\xfb\x4f\x94\x58\x80\xfd\x82\x8d\x9e\x53\xea\xb1\x2b\ +\xc0\x35\x38\x33\xde\x87\xb0\x0e\x16\x32\x2c\xe0\xbc\xf0\x55\xd8\ +\x1e\xd8\xce\x78\x23\xbc\x3a\x45\x47\xa6\xe4\xb8\xf9\xe8\x21\x8d\ +\xce\xb6\x08\x03\xd0\x05\xbc\xf2\xd1\x4f\xaa\x2d\xf8\x71\x84\x94\ +\xd9\x46\xfa\xed\x2d\x8a\x12\x5c\xab\xb4\xb6\x2f\x6a\x42\x76\xdc\ +\x42\x50\xf4\xa8\x2b\x63\xc5\x15\xe6\xe6\x2a\xff\xa7\xb6\xf6\x8f\ +\x3b\xce\x2e\xce\x75\xda\xa7\xae\x07\xed\xe8\x60\xa3\x6e\x3f\x6c\ +\x5f\xf3\xca\xd3\xed\x1d\x2f\x9d\xb4\x37\x7e\xf8\x9f\xb6\x6f\xfe\ +\xcb\x1f\xf0\x79\xe5\x6a\xb5\x8e\x48\x04\xab\x72\x1c\x38\xa0\x17\ +\x3d\xe8\x66\x98\xe1\x7f\x16\xf8\x9c\xa7\xf3\xa4\x08\xf3\xa6\x3f\ +\xfe\xf5\x7f\xac\x3d\xff\xc2\x83\xf6\x8e\x77\x3e\xdf\x6e\x1c\xea\ +\xcb\xce\x63\x18\x0f\x8d\x3a\x31\x2c\x06\x8f\x30\x0e\x41\x2c\x3b\ +\xc7\x54\xc6\x36\x0b\xd6\x39\xa9\x7c\x44\x7d\x0e\x82\x35\x9f\x8c\ +\x8e\xd5\x2a\xc6\x21\x04\x75\xe8\xed\x15\x2f\x98\x6a\x50\xa6\xae\ +\xa9\xbc\xc9\xf0\x56\x00\xbf\xc1\x80\xef\x37\x8e\xc3\x2a\xa3\x27\ +\x90\x61\xce\x94\x75\x71\xbd\x12\xcc\xe6\xf9\xcf\xe7\x32\x62\xab\ +\x92\x55\x4f\x34\x46\xd9\xe2\x5c\xe7\x1c\x09\xd1\x56\x73\xb6\xf9\ +\x93\x38\x2c\xea\x8d\x7a\x12\x38\x57\x16\xaf\x6e\xc1\xb0\x03\xd1\ +\x97\xda\xa8\x8f\xe5\xc4\xe2\x47\x1d\xdf\x05\x74\x66\x57\x8e\x74\ +\x42\x54\x30\x41\xcd\x06\x16\xab\x64\xcc\x66\x90\x22\xf4\xa9\x45\ +\x36\xf5\x67\xf2\x27\x01\x2c\x04\x96\x0d\xe8\xd9\xab\x8f\xbd\x6f\ +\x32\x56\xda\x93\x4b\x0b\xec\xb0\x23\x0c\xb2\x89\x5f\x10\x83\x4f\ +\x9a\x01\x5c\xba\x68\x03\x23\x25\xb7\x74\x2c\xbe\xfe\x53\x16\xbf\ +\xf8\x0e\x62\x8b\x79\x8f\x5f\xfd\xc8\x7c\x89\xc5\x37\xae\x37\x90\ +\xcd\xc7\x62\x5a\xc8\x19\x0f\xaa\x30\xfe\x8f\x34\x18\xf2\xb3\x20\ +\xa7\x4a\xf2\x03\x11\x64\xa3\x63\x8b\x65\x43\x34\xc0\xa4\xa0\xca\ +\x0f\x4d\x0c\xad\x93\xd0\x4e\x63\x3b\x98\xa2\x61\x8f\x18\x7d\xbc\ +\x09\xca\x5a\x30\x7a\x17\x54\x4e\x68\x21\x40\x1d\x6d\x89\xb0\x6a\ +\xb7\x50\x7c\xfc\xb0\x4a\x5e\xae\xcc\x74\x8c\x04\x64\x1e\xa0\x02\ +\x19\x24\x68\xc7\x7a\xab\x71\x4c\x2c\x33\xbb\x08\x29\x5a\x58\xe0\ +\xf6\xba\xdc\x88\x95\x4a\xa3\x63\xa5\xd6\xb1\xd3\xb4\x0b\x31\xde\ +\x32\x44\x77\x18\xfd\x8a\x1f\x75\xbd\x55\x51\x88\x49\x1d\x66\x96\ +\x93\xeb\x14\x9b\xed\xc1\x78\xac\x47\x84\x09\xec\x1a\xfe\x3b\x20\ +\xd5\xb4\x9f\x03\x18\x5f\xf0\x7d\x4e\x1b\x92\xf7\x83\xf7\x93\x3e\ +\x5c\x06\x8d\x40\xa9\x71\xbe\x2a\x39\x12\xcf\x5f\x95\xc4\xb9\x4a\ +\x71\x21\x4e\x82\xf6\xff\x53\x0b\x55\xa0\xf9\xd4\xe7\x16\x96\x24\ +\xc9\x66\x2d\x43\xcc\xfa\x98\x27\xa6\x89\x68\x28\xd2\x6b\xd4\x8b\ +\x53\x7b\x96\x5c\x6b\xab\x31\xcf\x3c\x7f\xd8\x7e\xfa\xb5\x7f\xdc\ +\xfe\xf1\x87\xfe\xa1\xe4\x85\x8f\xa3\xe1\x6c\x2a\xd8\x6b\xf0\x0c\ +\x33\xcc\x30\xc3\x0c\x5f\x14\x30\x9e\xa9\x67\x98\x61\x86\x19\x7e\ +\xfb\x41\xcd\x51\x3d\xe9\x1d\xe8\x08\xe3\x3c\x36\xe6\xc4\x01\x23\ +\x3f\x42\xe9\xc8\x27\xac\x0b\x80\xc2\x83\xed\x5a\x17\x9f\xad\x7d\ +\xeb\xff\xeb\x8f\xb7\x77\xdf\xde\xb6\xaf\x7e\xff\xbb\xdb\xcd\x9b\ +\x27\xcd\xff\x47\xa0\x8d\x8b\xd4\xc7\x8f\x2f\xdb\xc3\xc7\x2c\xa6\ +\x81\x2c\xa4\x09\xb9\xc8\xe0\x75\x3c\x75\xf5\x34\x82\xe5\x9c\xa4\ +\x0b\x79\xaa\xc1\x4f\xa6\x85\x18\x17\xe2\xf8\x70\x03\xc2\xba\x98\ +\xaa\xc3\x87\x21\x79\x25\x7e\x0a\x89\x1b\xcf\x5c\x41\x71\x07\x97\ +\x3c\xe9\xc0\x05\xa6\x6a\xe0\xc5\x08\x3f\x95\x06\xcd\x86\x71\x51\ +\xe4\x10\x42\x43\x67\x76\xc1\xea\xac\x8e\x01\xde\x85\x13\x07\x2a\ +\x4c\x99\xad\xfb\x01\x65\x4a\x9e\x32\x7d\x31\x96\x58\xac\x79\x5f\ +\x88\x05\x1f\x54\x32\x8d\x16\xfa\x15\x92\x79\x45\x46\x3c\xdf\x5c\ +\xa7\xbb\xd2\xde\xb1\x02\x0e\xe8\xf2\xc1\xb2\x27\xb8\xfd\x03\x8e\ +\x79\x9e\xc4\xe8\xaf\x2e\x2b\x96\x7f\x65\x3e\xea\x40\x40\xd4\x0b\ +\x63\xae\xb3\x44\xf6\x87\x7d\xd5\x37\x63\x1e\x20\x79\x16\xce\x0e\ +\xb8\x13\xcf\x82\xc9\x91\xfc\x78\x12\x8d\x27\xd0\x4e\xb5\xdf\x6f\ +\x28\xd3\x8d\x65\x3b\x60\x11\xed\x48\xfb\x54\x3e\x31\x2e\xe2\xa2\ +\xd3\xaf\x41\xc9\x60\xd1\x85\x15\x14\xbf\x90\x0c\x43\x43\x2b\x47\ +\x07\xeb\xcd\x38\x8d\x9e\x9e\xe8\x0e\xd3\x8d\xc9\x9b\xaa\x7f\x8a\ +\x7a\xc5\x21\xe4\xfe\x84\x19\xe3\x0e\xba\x5a\xb7\xab\xcb\x95\xff\ +\x5b\x90\xff\x52\xe3\xf5\xa3\xb1\xa8\xb6\x49\x59\x08\xaf\x7c\x2c\ +\xac\xf9\x69\x35\x8e\xb3\x8a\xa9\x63\x8b\xc5\x02\xca\xa9\xb2\x6c\ +\x8f\x8a\xf8\xb0\xf3\x80\xc7\x1f\xbb\xd5\x24\x05\xc5\x87\x2d\xc6\ +\xb1\x40\x04\xd6\x71\xaa\x2b\x0a\x86\x7e\x9b\x16\xd8\x82\xf6\xd1\ +\x2e\xc2\xe1\x67\x91\x9d\x60\x59\xd1\xac\x94\x28\xe2\xf1\xe3\xfd\ +\x4f\xe2\x23\x5c\xa0\x08\x62\x62\x6c\xa1\xc9\xf2\xaf\x41\xb2\x19\ +\x59\xb0\xd1\x18\x30\xe6\x82\x93\x1f\x6a\xe5\x1c\x92\xc7\x44\xa1\ +\x4e\x0d\xd6\x7b\x51\xcf\xbe\xe4\x2f\xaa\xb8\x1e\x9b\x04\x17\x85\ +\x60\x43\x67\x9f\xe4\x31\x64\x5c\x8f\x27\x89\x2e\x57\x36\xc7\xd6\ +\xc7\xc7\x66\x8e\x77\x53\xfc\x35\xa6\x29\xbf\x16\x85\x0f\x0e\xd5\ +\x56\xd3\x44\xfe\x4f\x92\xf1\xfe\x96\x76\xf5\x46\x8f\x2b\x74\xfd\ +\x84\xf0\x02\xd7\x97\xb2\x0d\xa1\x33\x74\xdd\x04\x1e\x02\xea\xdf\ +\xf1\x1c\x63\xb7\x1c\x23\x1e\xab\x68\xd2\x1c\x24\x05\x81\x39\xfb\ +\x72\xa3\x92\x9b\x91\xe2\x19\x7b\xce\x17\x50\xa1\xaf\xd4\x51\xfe\ +\x71\x84\x76\xc6\x82\x27\xd5\xe8\x03\x79\xb9\xbc\xaa\x34\x42\x92\ +\x09\x52\x39\x70\x84\xb4\xc6\x03\x04\x3e\xa8\x21\xd9\x41\x23\x81\ +\x5f\x4a\x6f\xb4\x1b\xe2\x07\x1d\xfc\xa7\xe7\xea\x62\xd5\xce\xce\ +\x2e\xac\x61\x07\x2d\x97\x9b\x76\x9b\xa7\xd4\xde\x7e\xbb\xbd\xfd\ +\xd6\x49\xfb\xe1\xbf\xf5\xf7\xdb\x0f\xfc\xc8\x4f\xa9\x6f\x65\xf7\ +\x4e\x06\xaa\x55\xa2\xd5\x2e\xa1\xcb\xda\x29\x70\x86\x19\x3e\x5f\ +\x60\x04\xd5\xb8\xd2\x28\xdd\x5e\x7a\x71\xf7\x2f\xfc\xf5\xff\xba\ +\x3d\xb8\xf8\x57\xed\xdd\x5f\xf5\x6a\xbb\x75\x7a\xd7\xc7\x37\x67\ +\xc7\x03\xbe\x60\xe5\xce\xf9\x27\x8e\xb3\x38\xde\x9e\x84\x18\x90\ +\xd3\xf9\x20\x07\x68\x1d\xef\x52\xd6\x90\x0d\x9f\x90\xed\x9b\xe8\ +\xf3\x65\x89\xc8\xa2\xe5\xc0\xe9\xd1\x62\x10\xc1\x54\x87\x49\xb7\ +\x6b\xf7\x59\x41\x1f\x7f\x85\xf1\x63\x91\x7c\x32\xcd\xc1\xf4\x89\ +\x1f\x28\x84\x77\x9c\x1b\x90\x0b\xf5\xc9\x22\x70\x01\x81\x68\x0a\ +\x12\x4c\xc8\x95\x2d\xea\xa8\x28\x50\x74\x88\x09\xc4\x0f\x26\x38\ +\xc7\x81\x5a\x97\x75\xad\x3c\x36\x28\xa9\xf3\x8d\xf8\xc8\x35\x66\ +\xca\x66\x24\x86\x2d\xce\x6f\xc6\xce\x04\x41\x11\x5b\xd8\x02\x63\ +\xdf\x18\x95\x3f\x10\xff\xa0\x40\xa7\xf8\xe7\xe6\x7e\xeb\x38\xb1\ +\x26\x8e\x17\x0a\x5b\xa9\x76\x95\x6d\x75\xb6\x01\x10\x0d\xcf\x10\ +\x4c\xbb\x8e\x38\xa2\x96\x6b\x0b\x7b\x00\x86\xa8\x73\x81\x7d\xec\ +\x0f\xd6\x39\x34\xa1\xf2\xe1\x2e\xa4\xbf\x9d\x97\xfa\x20\x99\x60\ +\xc8\x7d\x01\x2d\x9d\xe4\xf8\xe1\x86\xe6\x38\x5e\x00\x63\x91\x4c\ +\x88\x9e\x79\x8f\xbf\x8f\xd0\x31\xe5\x89\x79\x52\x2d\xa6\x71\xac\ +\xf8\xd5\x8e\x2c\xca\x89\xf7\xe2\x1a\x7e\xf2\xe1\x9a\x85\x7d\xec\ +\xd8\xf9\xfd\x24\x0f\xfb\xd9\xc9\x24\xeb\x01\x14\x05\x52\x49\xea\ +\x9e\xa9\xf6\x09\xa2\xfd\xa9\x4b\xfd\x64\x0e\x25\x43\x6b\xd2\x95\ +\x56\x98\xcc\x68\x2b\x20\x26\x35\x74\xa9\x2e\x7e\xac\x83\x28\x6a\ +\x31\xa1\x15\x50\x77\x4b\x13\x35\x11\xf4\xf8\xe5\x8c\x42\xfb\x22\ +\x5e\x8f\x9a\xa2\x13\x8c\x01\x3b\xa2\x18\xf3\xa3\xbd\x74\x00\x4c\ +\xa1\x92\xd8\x02\x68\x45\xaa\x55\x5f\x25\x89\x31\xae\xc3\x3b\x68\ +\xa0\x35\xe5\xa7\x83\x6e\xdf\x5e\x08\xec\xcb\x40\x66\x0b\x7d\x37\ +\xf6\x5a\x88\xcd\x36\xdb\x48\x9d\x4c\xec\x61\xea\x71\xfe\x24\x84\ +\x3d\x7c\x18\xed\x55\x2f\xf6\x83\xdf\x16\x31\x64\xf2\xbe\x21\xa9\ +\x98\x4e\x77\x21\xea\x90\xb6\xe2\x95\x44\x5c\x52\xc5\x74\xe5\xc4\ +\x8b\xb0\xa8\x06\xd6\xf4\x93\x04\x7d\x0f\xc2\xb1\x95\x2c\x69\xd0\ +\x92\x47\x98\x3c\xa2\xbc\x6c\xcd\x8e\x63\x94\x85\x32\xae\xe5\x96\ +\xed\x50\xd7\x68\x47\x47\x27\xed\xb9\xb7\x5f\xb6\x6f\xfb\xc1\xbf\ +\xd5\x3e\xfe\xfa\xc7\xda\xea\x5c\xd7\x34\xd1\x44\xe5\x08\x9c\x61\ +\x86\x19\x66\x98\xe1\x8b\x0f\xf6\x66\x69\x33\xcc\x30\xc3\x0c\x5f\ +\x3a\x50\x93\xd0\x9c\x93\x5e\x0f\x9f\xcf\x4c\x75\xf4\xa9\x79\xfc\ +\x5b\x05\xb5\x4d\x09\x98\xf9\xa6\xf0\xd2\x6d\x36\xed\xe2\xe8\x46\ +\xfb\xda\x3f\xfe\x5f\xb6\xd3\x7f\xff\xb3\xed\x77\xbc\xe7\xf9\x76\ +\xef\xe9\x3b\x71\xe3\x5a\x57\xa2\xdc\xe0\xbd\x38\x5f\xb5\x87\x8f\ +\x37\x6d\xcd\x22\xc1\x76\xed\xfc\xbe\x0c\xd1\x04\x3c\x68\x44\x33\ +\x2d\x2c\xa2\x64\x79\xa8\x0b\x83\x43\x05\xf2\x85\xad\x90\xea\x98\ +\x61\xf2\x0e\x61\xa2\x1f\x72\x38\x04\x1b\xf6\xc0\xb8\xb2\x10\x8a\ +\xf7\x17\x85\xd8\xba\x88\xf6\x93\x3d\xb5\x98\xe6\x19\x3f\x97\xce\ +\xe9\x94\x50\x17\x52\xd7\x42\x86\x0e\x50\x79\x29\x44\x1d\xb8\x78\ +\x8a\x98\x93\x6e\x40\x25\xc4\x2e\xa4\x7e\xf8\x14\xba\xb1\xbe\x86\ +\x11\x2d\x99\x98\xdc\x6c\xc7\x97\x7e\xb6\x5e\x1f\xfa\x82\x76\x4a\ +\x67\x44\x8d\xbe\xa8\x99\xc2\xa9\x9c\x49\xb7\x8b\xc4\xeb\xf5\x42\ +\x4e\x7a\x1d\xfa\xe2\x97\x7e\x2e\x4a\xdd\x7a\x5b\x48\xd2\x2f\xeb\ +\x56\xfb\xc5\x31\xdd\xbe\xc1\x6f\x41\x9f\x89\xad\x85\x83\x23\xed\ +\x33\x61\x3b\xd6\x45\xbd\x5f\xe7\x28\x5e\x88\xde\x4f\x9e\x89\xc6\ +\xe2\x46\xc4\xa9\x58\xee\x0f\x95\x11\x6d\xb0\x32\xf6\x02\xf7\xc5\ +\x61\x0a\x9d\x27\x32\x46\x3a\x42\xe4\x2b\xf6\xad\xc0\x2e\x8e\x27\ +\xc6\x94\x04\x22\x5a\x32\x63\x8d\x3b\x3b\xd0\xe4\x5d\x23\xee\x2a\ +\x72\x83\xc7\x0b\x67\x8c\x45\xf1\xdc\x64\xf4\xc2\x19\x0b\x6b\xb1\ +\x80\x16\x0b\x69\x81\x53\x1e\xf9\xb3\x36\x0d\xcf\x42\xb5\xe9\x14\ +\xdf\x77\x92\x28\x03\x1d\x4f\x60\x32\xc6\xad\x9b\xea\x74\x2d\x9f\ +\x10\x17\xfa\x69\x36\x37\x51\x60\xec\x92\xea\x7e\x77\x46\x30\xd3\ +\xbe\xec\xfb\x06\x41\xfd\xac\x1d\x50\x4f\x26\x86\x8a\xc4\x1f\xff\ +\x9a\xd5\xbf\xdc\x55\xa1\x6e\x8b\x36\xfa\x09\xdb\x3e\x50\x17\xba\ +\xbc\x62\xc4\x7e\xcf\x7d\xcf\x98\x28\x94\xce\xe3\x92\xf1\x57\x36\ +\x16\xab\x6c\x97\x4a\xd4\x0b\xaf\xa0\x65\x7c\x44\x3d\x06\x65\xf3\ +\xc2\x56\xf8\x7b\xb1\xec\xad\x50\xe3\x11\xdf\x5a\xa0\x8b\x63\x31\ +\x6c\x9d\x27\xce\xb1\x64\x28\x63\x37\xc7\xf9\xf8\xc4\x65\xf0\xf2\ +\x39\x12\x5f\x38\xd8\x26\x1f\xa1\xdb\x23\x99\x3f\x03\xa3\x4f\xb3\ +\x0d\xde\x21\x69\xeb\xb2\x42\xd6\xf1\x0c\x66\xb7\xf7\xa4\xf6\x6d\ +\xf5\xeb\x13\x80\x6e\x47\xaf\xbd\xa3\xfd\xd4\xff\x73\x4f\x04\xb9\ +\x6e\x4a\xfa\x17\xff\xdc\xb4\xdc\x01\x39\x29\xc6\x42\xf5\xe5\xbc\ +\xde\xff\x53\xad\xce\x71\xb0\xa2\x3e\x46\xa1\x60\xa8\x13\x26\x49\ +\x2d\x9d\x44\x55\x78\xba\x69\x7c\x0d\xa0\x76\xd0\xf8\x2f\x35\xea\ +\x75\xc9\x53\x6a\xe0\xc5\x65\x5b\xad\xf8\x61\x08\x4e\x8a\xb1\xd8\ +\xb6\x77\x3d\x7d\xab\xbd\xef\xd5\x1b\xed\xd9\x47\x6f\xb4\xef\xf8\ +\x73\x7f\x5b\x76\x1d\x93\xab\x8b\x88\x43\x7b\x5d\x5f\x09\x59\x1c\ +\x22\xd1\x67\x98\xe1\xd7\x06\x31\x46\x17\x3a\x61\x7c\xe7\xf7\x7f\ +\x57\xfb\x81\x1f\xf9\xc6\xf6\xfe\xf7\x3f\xdf\x6e\x3d\xf3\x74\x3b\ +\x3c\xe4\x80\xc7\xce\x2d\xe6\xb8\xe1\xcf\xb8\x87\x8c\x83\xcf\x43\ +\xbd\xb0\x1f\x13\xf8\x89\xca\x8f\xbc\x9c\x0e\x43\xcd\x71\x93\xbc\ +\x73\xd8\xc1\x58\x7a\x8b\x45\x85\x3e\xc7\x88\x21\xc6\x5b\xc1\x5b\ +\x99\x5c\x4d\x25\xd4\x9d\xff\x4b\xf3\x93\x69\xa8\x14\x30\xe2\x2b\ +\x8d\x4f\x97\x29\xcb\xba\x01\x81\x24\x69\x9b\x94\xee\x22\x68\x68\ +\x1c\xbf\xc7\xb0\xa6\xca\x4a\x79\xcc\x1b\x8a\x40\x9f\x53\xa2\x7c\ +\xa3\x75\x69\xb5\x4c\xdf\x0e\xbc\xe5\xa4\x53\x94\xc9\x87\xf3\xb1\ +\xf9\x6a\x13\x34\xf3\xf4\x7c\xe0\xb0\xe1\xe3\x0d\x40\x26\x4d\x84\ +\x77\x20\x01\x8d\x14\x74\x5b\xdf\xd2\x0f\x8e\xf6\xe0\x54\x3a\x97\ +\x6b\x29\xec\xd6\xc5\x7e\xad\xb8\xd4\x27\xbb\xd3\xfe\xe9\x66\x8d\ +\xa9\x0d\x93\x2e\xd2\x50\x04\x0d\x5d\x00\x7c\x54\x34\x16\x49\xf8\ +\x52\x9a\xa0\xca\xf1\xb7\xbe\x84\xf0\xb4\xe4\x0d\xa5\xe7\x24\x49\ +\x75\x16\xd7\xa6\xf3\x32\x5c\xcd\x7d\x4c\xe3\xfc\x6e\x3b\x7e\xb5\ +\xd8\x96\x7a\xf3\x42\x25\xfe\xae\x0a\x9f\xa4\x92\x5d\x14\x73\x2b\ +\xfb\x8a\xd2\xee\xf8\x18\x49\x77\xe8\xd0\x44\x7f\x85\x24\x63\x9b\ +\xf2\xe3\x17\xfd\x30\x39\x66\xef\xed\x40\xed\x8b\x7d\xdf\x1e\x73\ +\x0f\x50\x47\xf9\x31\x66\x62\xf4\x54\xdd\x06\x3b\xa0\x7a\x60\xe5\ +\x3b\x2e\x6b\x94\x81\xc5\x85\x40\xe2\x34\x22\x45\x7e\x16\x6a\xa0\ +\x24\xc1\xd5\x20\x0e\x39\xc6\x32\x42\x52\xfb\x24\x8c\x22\x2e\x41\ +\x26\x18\x6c\x60\xd4\x30\x20\x4c\xd2\x64\xff\x65\x91\xc2\xb0\x8c\ +\x9c\x33\x39\x63\xd4\xdb\x22\xf5\x41\x25\xd8\x19\x65\x11\xa4\xdb\ +\x2c\xa6\x9c\xc3\xdb\x30\x44\x0f\xd0\xc1\x5b\x9a\xa1\x77\x2c\x17\ +\x44\x9e\xeb\x6d\x05\x6e\x23\x63\xcf\xb5\xc4\xc7\x3f\x8f\x88\xfd\ +\x52\x63\xe5\x09\x88\x58\x11\x35\x4b\x51\x12\x3f\x1a\xcc\x48\x1e\ +\x03\x61\xb0\x8d\x83\x98\xf9\x26\xbb\xcb\xf9\x06\x1b\xb4\x64\xa8\ +\x52\xf4\x6f\x05\x93\x8f\xca\xb0\x63\x60\xf1\x54\x7b\x29\x3e\x9e\ +\x4e\x93\x9e\x6b\xff\xc3\x75\x3b\xd2\x35\x5b\x7b\xfa\x63\xed\xeb\ +\xff\xce\x7f\xd7\x8e\x8f\x8e\xda\xe6\x72\xff\x85\xa3\x59\xe7\x19\ +\x66\x98\x61\x86\x19\xbe\x68\x60\x77\x66\x36\xc3\x0c\x33\xcc\xf0\ +\xdb\x05\xf6\xe7\xe0\x9f\x4b\x2e\x98\xe6\xc6\x01\xfb\x7e\xd6\x2b\ +\xa9\xd9\x76\xd9\x3d\xf1\xd7\x45\xc0\xfa\xac\xfd\xd8\x3f\xfe\xa1\ +\xf6\x53\x7f\xfb\x5b\xda\x7b\x5f\x3e\x69\xef\x7f\xf9\x95\x76\x7c\ +\xcc\x44\x5b\x13\xea\xc5\xd6\x8b\x68\x6f\xbe\x79\xde\xce\xce\x2f\ +\x95\x75\xd5\x0e\x74\x41\xeb\x20\x19\x8e\xb0\xc9\xee\x41\x18\xb8\ +\x28\xe0\x7f\xd8\xfc\x24\x07\x13\x75\x9b\x6c\x08\xbb\x37\x54\x08\ +\xe6\xfc\xa9\xbb\x45\xd6\x73\x33\x3b\x29\x26\x80\xea\xfb\x86\x0e\ +\x17\xcd\x2b\x4d\xea\x59\x6c\x90\xec\x2d\xdd\x0b\x7c\xcd\x29\x18\ +\x54\x01\x28\x9e\x50\xd2\x2f\xb4\x8f\x78\xbb\xe6\x8a\x49\x3c\xbc\ +\x0c\xbe\x82\x53\xbd\x68\x9b\x68\x56\x3b\x7c\xa1\x7c\xab\xe5\xa2\ +\x44\xc9\xbe\x50\xc2\x1f\x1b\x7a\x74\xb4\x11\x7d\xd2\xda\x9c\xb1\ +\xda\x8f\x5e\xd4\xa8\x6c\x64\xe6\x72\xa6\x16\x9b\xca\xe6\x38\xe0\ +\xa8\xd3\xc7\xfd\x90\xf8\x04\x4f\x5d\x80\xaa\x53\xb7\x29\xbe\x6f\ +\xf2\x8b\xa7\x9e\x65\x87\x26\xba\x4d\xdc\x50\xe7\x5e\xe1\x11\xa8\ +\x32\xbd\x68\x26\x9e\xb1\xc4\x1b\xae\xb8\x30\xe3\x7f\xd1\x58\x44\ +\x3b\xca\xd7\x39\xb2\x3f\x89\xe1\xfa\x11\x14\xc8\xfa\x9a\x0d\x4a\ +\xfd\x78\x4d\x64\xef\x73\x81\x87\xaf\x15\x32\xb8\xdf\x82\xed\x79\ +\x05\xd1\x2f\x29\x08\x06\x76\x0f\xe8\xc7\x88\x59\x68\x48\xc1\x37\ +\x64\xb8\x49\xe3\x1b\x35\xc1\x87\xac\x63\x81\xf1\x97\x72\xe0\xb6\ +\xc5\x22\x9a\xb0\x53\x74\x9b\xb4\x91\x27\xa8\x91\x18\x2c\xa4\xb1\ +\xc8\xe6\x98\x55\x0e\x7a\x51\xd5\xcc\x0b\x6e\xbd\x1c\xe5\xc1\xe6\ +\xba\x45\x35\x3b\x9f\x38\xf4\x40\xd2\x01\xca\x38\xf4\x93\x41\x22\ +\xfb\xd7\xe3\x39\xe5\x09\x95\x24\x3a\x1b\x09\x63\x91\x8b\x6f\x74\ +\x39\xde\xb8\x20\x77\x9c\xb5\xea\x77\xb1\xf5\x13\x78\x3a\x42\xa3\ +\xff\x12\x7b\x25\x85\xde\x5c\x5e\x96\x09\x48\xf6\xf1\x95\xfb\xd4\ +\x8b\x49\x5e\x78\x62\x51\x0c\xca\x13\x48\x3a\x37\x31\x76\x06\xf4\ +\x82\x9a\x7c\x63\xb1\x2c\xfc\x0e\x0e\x97\x99\x47\xfa\xa4\xb6\xed\ +\xa3\x6d\xca\x47\x19\xca\xef\x71\x09\x1d\xf4\x1e\xd7\x1a\xcb\x0b\ +\x9e\xac\xec\x71\xe4\x33\x2c\x94\xa1\xbf\x4a\x1e\xbc\x2a\x9b\x7c\ +\xbd\x10\xad\x38\xed\x50\x6d\xdd\xc7\x23\xb5\x39\x79\x16\xda\xbd\ +\xb0\x86\x7f\x21\xfb\x85\x63\xcc\xfb\x47\x68\xa2\x2d\x79\x74\xc5\ +\xc6\x7e\xe2\xe3\x33\x43\x88\x3e\x47\x05\x15\xb7\x03\xc8\xe4\x85\ +\x7a\x1f\x59\x29\x2a\xf4\xf9\x55\x63\xce\x8b\x6b\x8c\x3b\xdb\x54\ +\x15\x21\x79\xbc\xcf\x55\x3f\x5e\xff\x78\xb8\x3c\x8c\xbe\xb7\x41\ +\x25\x6b\x27\xc2\x3b\x0f\x40\xf9\xc9\x06\x4c\xd2\xd8\x16\x6a\x5d\ +\xa9\x21\x19\x1f\xa1\x0e\x56\xbe\xdc\xc4\xdf\xa8\x5e\x9b\x76\x71\ +\xc9\xa2\xda\xb6\x9d\x5f\xac\xe4\xb3\x69\x4b\xed\xec\x63\xd5\xeb\ +\xc6\xc9\x51\xfb\xbd\x2f\xdf\x68\x2f\xbf\x78\xda\xda\x4f\xfe\x78\ +\xfb\xe0\xdf\xfa\x87\x6d\x71\xa4\x9d\xc2\xa2\x74\x05\x66\x4c\x56\ +\x25\xa5\x42\x9b\x96\x19\x66\xf8\x55\x00\x63\x96\x71\x1f\x83\x69\ +\xb3\xbe\x6c\x67\x3a\xff\xfd\x95\x6f\xfc\x2f\xdb\x73\x5f\xd6\xda\ +\xf3\xaf\xbe\xd8\x6e\x1c\x1d\xeb\xdc\xc6\xc9\x7c\x18\x7f\x80\xe4\ +\xcc\xe6\xb1\xed\x31\xb8\x37\x08\x6d\xd7\x71\xe8\xe3\x80\x92\x64\ +\xe7\x74\xc0\x49\xc1\xbe\xf6\x47\x1f\xc7\x8e\xfd\xc4\xc4\xf7\x3f\ +\x3e\xd4\x2e\xf2\x91\x40\x9d\xa5\x43\x56\xa0\xd3\x27\x01\x4b\x9d\ +\x41\xa8\x0f\xff\xab\xc3\x39\xde\x71\x38\x5f\xf3\xc9\xb8\xd6\x15\ +\x55\xc2\x39\xdd\xfa\xa2\x89\x8e\x06\x93\x94\x85\x72\x7f\x25\xc0\ +\x87\x36\x20\x05\xdb\xa0\x55\x4f\xe9\xfb\x42\x9e\x8c\x6a\xa9\xe5\ +\xc1\x1c\xd4\x93\x9c\x90\x5c\x87\x11\xd3\x92\x3d\x34\x6d\x65\x53\ +\x32\xbd\x86\x6d\xea\xdf\x91\x06\x84\x26\x70\x0f\x52\x4d\x0c\xc3\ +\x9e\x9b\xd9\xd2\x95\xbe\xf3\x93\x21\xea\x00\xc2\x87\x0c\x04\x95\ +\x8c\x1f\x7a\x68\xd7\xef\x42\xb7\x92\xe0\x0e\x9f\x90\x2a\x41\xec\ +\x04\xf2\x5b\x9e\x12\xb7\xb8\x8b\xb9\xb3\xcc\x26\x86\x66\x17\x62\ +\x7c\x6b\xf4\x28\x20\xac\xd1\xe3\x7e\x98\x1f\x78\x63\xa1\x6c\xd0\ +\xf3\xdd\xc3\x62\x9a\xbe\x7f\x98\xeb\xfb\x3b\x29\xf3\x4e\x0b\x69\ +\x1c\x1a\x93\xac\x4f\x50\xcf\x3d\x62\x1e\x65\x1d\x55\xc0\xd9\x36\ +\x07\x21\xdd\x85\xae\xa3\x9e\xf0\xa4\xd1\xb2\xbe\xaf\x95\x58\xd3\ +\xb3\x4f\xed\x47\x69\x0a\x9b\x14\x18\x79\x60\x92\xe5\x4f\x9f\x68\ +\x7c\xba\x68\xa1\xfb\xd7\x93\xa0\xe8\x2b\x83\x98\x90\xb0\x96\x23\ +\x75\x83\x4a\x54\xb9\x51\x72\xa0\x8f\x01\x43\xfa\x16\x50\xe9\xbc\ +\x1e\x89\xb9\x9b\x54\xf6\x0d\x74\xaa\x64\x3a\x5f\x80\x61\x29\x2f\ +\x60\xe4\x83\x21\xe1\xe8\x83\x2b\x6f\x20\x25\x89\xd4\x3b\xe6\x22\ +\x53\x4d\x0b\xc2\x3e\x02\xb9\xf0\x0d\x9b\x69\x18\x0c\xbb\xbe\x09\ +\xe9\x0b\xd6\x54\x29\xea\x91\x71\xf0\x11\x84\x7e\x00\x65\x08\x3f\ +\xe0\xc9\xba\x8d\xb0\x1b\x17\x98\xfa\x16\x2e\xf6\xe1\xa4\xb3\x6f\ +\x05\xcc\x2c\x41\x94\xd2\x0f\xee\x0b\x6d\x76\x92\x0a\xb5\x69\x95\ +\xa0\x39\xa7\xce\xad\x79\x7a\x4d\x0d\xfe\xf8\x84\xce\x72\x5a\xae\ +\x87\x70\x76\x19\x15\x37\x58\x43\x94\x1d\xa3\x0a\xf0\xb8\x60\x6e\ +\x6b\x5e\xdf\x5d\x2f\x5c\xb5\x5f\xba\xff\xcf\xda\x07\xbf\xef\x1b\ +\xda\xe1\x09\xff\xa7\x56\x63\xcd\x61\xc4\x4f\xed\x9d\x61\x86\x19\ +\x66\x98\xe1\x37\x1f\x7c\x7d\x30\xc3\x0c\x33\xcc\xf0\xa5\x08\x9e\ +\x6b\x07\xfb\x24\xc4\xfc\x74\xd7\x69\xe4\xcb\xbe\x0f\xfb\x01\xc7\ +\x38\xa6\x62\xac\x13\x45\x57\x76\x26\xd1\x17\x17\x6d\x71\xe3\x76\ +\xfb\x7b\xff\xcf\xff\xa2\xbd\xe3\xe8\x71\xfb\x5d\x5f\xf6\xf6\xf6\ +\xd4\xd3\xa7\x9a\x44\x1f\xfa\x02\x96\x9b\xa8\x6f\xbe\xf1\xa8\x3d\ +\x3a\xbf\x6c\xeb\xcd\xb9\x74\xdc\xc4\x8c\x0b\xde\x0e\xc4\x61\x02\ +\x0e\xe9\xaa\x10\xa0\xdc\x6c\x0d\x97\x9a\xc8\x2b\xf5\x45\x5c\xe8\ +\x52\x19\xb4\x23\xb2\xfc\x99\xcd\x73\x93\x56\x74\x27\xbf\x38\x6a\ +\xe0\x0b\x68\x16\xd2\xb8\x81\xcf\x85\xb2\xb4\xbe\x6f\x62\x28\x7f\ +\x7d\xb2\xba\x43\xad\x77\x95\x65\x48\x3e\x4a\x10\xf6\x58\x82\xe2\ +\x93\x66\x35\x82\xe1\x03\xfa\x6a\x8b\x8b\xa4\x41\x5e\x06\xe5\x06\ +\xbc\x79\xcb\xf2\x41\xd7\xfb\x61\xc4\xc8\xef\xfa\xf9\xce\xf5\x50\ +\x29\xc0\xb6\x27\x31\xf2\x4c\xfc\x28\x1b\xdd\x87\x93\xec\xba\x75\ +\x8c\xf8\x65\xef\x7e\x59\x47\x14\xb1\x68\x32\xe8\xdd\x16\xe9\xbd\ +\x48\xa0\x1a\xb2\xd0\xe0\x85\x33\xc9\x20\x0b\x6a\x47\xda\x4f\xb9\ +\xa8\xb0\x4d\xbf\x58\xac\x70\xc8\x1e\xd3\xfb\x56\x6c\x24\xb4\x36\ +\x28\x37\x4e\x78\xa5\x0f\x14\x8d\x9f\xfa\x5a\x69\x04\x6e\xe4\xa1\ +\x2a\xe3\xc7\x22\x90\xef\x3d\xd8\x23\xf2\x11\xa7\x16\xd3\xac\x49\ +\x35\x3d\x39\xc2\x8e\x4c\x21\x86\xd4\x42\x18\xe7\x49\xcd\x92\x30\ +\xce\xb8\x21\xaf\x63\x03\x1e\xc2\x22\xf3\xb8\x40\x16\x37\x7f\x74\ +\xac\xf8\xc9\x34\xe5\x85\x1f\x90\x4c\xe5\xe7\x63\xca\x7a\xf9\x11\ +\x1b\xa4\x1c\xca\xa0\xf0\x51\x57\x0b\x69\xd4\x55\xd4\xf5\x19\xa8\ +\x92\xc4\x41\x2c\x52\x5d\x33\x20\xfd\x14\x94\x44\xa4\x1c\x53\xa6\ +\x5f\xdd\x8d\x8c\x5d\x41\xa8\x63\x5f\xb1\xef\xbc\xe8\x55\xe3\x43\ +\xac\x8f\x3d\xfa\xe4\x62\xdd\x36\x97\x2b\xb5\x41\xed\xd3\xc6\xab\ +\xf9\x82\x4e\x95\x72\x2c\x27\x01\x5e\x58\xe3\xf5\xb1\x80\xf9\x64\ +\xa1\x8c\x5d\xea\xa0\xb1\xe3\x85\x33\x8d\x2b\x68\xfc\x27\x23\xb8\ +\x08\x3d\x0b\x5f\x42\x5e\x43\xb8\xf0\x93\x66\xca\xcf\x62\x3e\x7a\ +\xe7\x95\x9c\x3e\x4f\xa0\xec\x1d\xc9\xa7\x71\xeb\x05\x22\xdb\x55\ +\xb6\x68\x2d\xb4\x55\x1e\x2f\x86\xb9\x5e\x81\xf5\xf4\xe6\x13\xba\ +\x3c\xde\x3d\x56\xb3\xcf\xcc\xa7\x7d\x27\x9f\xcb\x82\x27\xb6\xf2\ +\x49\x57\xe7\x0a\xf7\x83\xd0\xf5\xc2\x37\xfb\xdd\x20\x0a\x8b\x9b\ +\x19\x1b\x38\x4f\x4e\x0e\xd1\xf3\x2a\x8f\xc4\x3b\x3b\x6c\xa5\x37\ +\x30\x9e\x20\x6c\xda\x97\x7e\x4a\x8d\x7d\x2a\xf4\x13\x94\xdd\x39\ +\xe2\x53\x0e\xfb\x81\xfe\xe6\x95\xbe\x14\x1b\x37\xcd\xea\x18\x4c\ +\x3f\xfb\x76\x2e\x61\xe2\x00\xbb\xe6\x10\x88\x40\xc9\x03\x2e\x37\ +\x0b\x47\x6f\x1b\x23\x6a\xab\xef\xa6\x4d\xbb\xbc\xe4\xbf\xd4\x2e\ +\xdb\x63\x61\xd8\x58\xe4\x6b\xed\xb9\x3b\x4f\xb7\xaf\x79\xdf\x8d\ +\xf6\xdc\x69\x6b\x3f\xfc\xad\xdf\xde\xfe\xed\xcf\x7e\xd4\x87\x91\ +\xe3\x9b\x26\x26\x54\xf3\x06\xd5\x0c\x33\x7c\x0e\x88\x51\x43\xea\ +\x61\xa5\x73\xf7\xe1\xe1\x69\xfb\xff\x7e\xdd\x9f\x6e\xab\xe5\xcf\ +\xb7\x77\x7e\xf9\x8b\xed\xf6\xed\xdb\x3e\x57\x95\x9f\xa9\xcf\xdb\ +\x79\xaa\xcf\x73\x9e\x8e\xe8\x38\x0e\x50\x05\xd9\x03\x3b\xc9\xc7\ +\x99\xfa\x61\x12\xf9\xea\x5b\xd0\x0e\xfa\x94\x84\x2f\x6c\x96\x01\ +\x5a\xb6\xd6\x10\x6c\xfa\x09\x90\x27\xa9\x20\x34\x1c\x3f\x1b\x7d\ +\xb7\xf9\x3b\x0e\x81\x78\x42\x9f\x7b\x2c\x98\xb1\xae\x6c\x66\x4b\ +\x1f\x24\x60\xd0\xf9\xf5\xe1\xfe\xd2\x19\x7c\xe0\x2d\x47\xfb\xc2\ +\x90\xe7\xb5\x2c\x20\x54\x68\xe0\xe4\xc3\xf7\x25\x1e\xe9\x12\xf6\ +\xa0\x85\x40\xd1\xd2\x3a\x4d\x87\xca\x37\xcd\x4d\xaa\x37\x10\x26\ +\xb0\x69\x44\x25\x1d\x07\x7d\xc1\xa8\x0b\xbd\xd2\x0c\x3d\xe9\xa3\ +\xcc\x2e\xd3\x36\x63\xc8\x6e\x6b\xa2\xc5\xf2\x2d\xbd\xb5\x01\xc4\ +\xf2\x57\x4e\x38\xd8\xd1\xe3\x21\x9d\x4c\xd2\xd6\xe3\x57\x85\xec\ +\x57\xe5\xd6\x96\x3e\xe1\x68\xc0\x3e\x19\x82\x78\xfe\xa1\xfc\xb1\ +\xb0\x95\x4a\x12\x64\x29\x42\x1f\xf6\xd0\x31\x17\x8a\x39\x82\x6d\ +\x42\xbf\xe2\x91\xf1\x85\x8b\xf2\x32\x13\xf4\x9c\xc9\xb6\xc8\x67\ +\x1f\xf4\xa2\xb1\x10\x17\xc8\xeb\x7f\xc5\x75\x19\x54\x12\x55\xa0\ +\x66\xf0\x09\xae\x5a\x8a\x6e\x4b\x68\x62\x97\x97\x9e\x64\x67\x6c\ +\x46\x9a\x19\x42\x4a\x55\xf8\x68\x93\x2d\x68\xea\xf7\x01\x3f\x6c\ +\x9e\x38\x89\x57\x9d\x72\x64\x4f\xa0\xf2\xa9\x47\xec\xeb\x42\x16\ +\x9d\xd3\xe0\x0f\x89\x72\x49\xe7\x39\xa4\x3e\xa1\x22\x12\x35\x20\ +\x25\x2e\x75\x61\x3c\xe4\x98\xc8\x79\x45\x8c\x9b\x18\x23\xe5\x13\ +\x75\x4f\x19\x2e\x04\x23\xbe\x3b\x88\x32\xcb\x4f\x85\xb1\x8f\xc7\ +\x7e\x1d\x13\x60\x73\xf9\xa4\x1c\x30\xd4\x11\xd1\x86\x68\x8c\x59\ +\xfc\x65\x73\x79\xa1\xc9\x74\x82\xec\xca\x30\x08\x83\x90\x52\x07\ +\x16\xff\xa1\x28\x33\x26\xd0\xab\x16\xde\xbd\xcc\xee\xb0\x6b\xd9\ +\x05\x34\x9a\x17\x75\x98\x9e\x54\xa3\x2c\xfb\x2b\xe9\xa1\x1c\x28\ +\xca\xf6\x93\x83\x62\x8c\xb9\x8d\xf5\x82\x6a\x6a\x65\x87\x7a\xfb\ +\x02\x72\x8c\x85\xa0\xae\x63\x65\x00\x06\x7e\x54\x3f\x09\x99\x31\ +\x03\x30\x26\xaa\x71\xae\x8f\x12\x5e\x57\xcc\x98\x38\x3a\x5a\xb6\ +\x97\xde\x73\xd5\xbe\xf7\xc7\xbe\xad\xfd\xdc\xbf\xff\xd7\x6a\x6e\ +\xf9\xba\x37\x3f\x47\x39\x33\xcc\x30\xc3\x0c\x33\xfc\x46\x43\xcc\ +\xc7\x67\x98\x61\x86\x19\x7e\xbb\x41\x4e\x66\x77\x80\x99\x2a\x88\ +\xad\xb0\xe0\x3a\xff\x51\x57\xb3\xdc\x9c\x28\x73\xad\x53\xaf\x3d\ +\xb1\x4e\x17\x5e\x97\x47\xeb\xf6\x5d\x7f\xf9\x1b\xda\xfa\xa7\x7e\ +\xb2\xfd\xee\x77\x3d\xdb\xde\xfe\xc2\x73\x9e\x3c\xf3\x5f\x06\x2c\ +\x64\x9c\x3d\x3e\x6b\xf7\x1f\xad\xda\x7a\x7b\xc9\x5d\x22\x5f\xac\ +\x71\xe1\xea\x6a\x29\x06\x13\xfc\x98\x7c\xbb\xa4\xa9\x4c\x40\xb6\ +\xb8\xc9\x1a\x7e\xd8\xec\x67\x0c\x21\x08\xf6\xd4\x01\xa5\x27\x9f\ +\x6f\x32\x23\xa0\x0f\x1b\xe0\x6b\x37\x6e\x86\xf2\x9a\xc7\x35\xff\ +\xdd\x91\x17\xcf\xb8\xd8\x63\x00\x5f\xe4\x25\xdf\xe1\x1a\x4f\x54\ +\x82\x28\x62\xcf\x26\x71\x54\xdb\x07\x5d\xc7\xba\xb0\x11\xe5\x02\ +\x95\x1b\xf2\x89\xdc\x24\x8f\xa7\x63\xe8\x0f\xda\x14\xed\x9a\x30\ +\xdb\x59\x8b\x6c\x15\x8f\x3e\x41\x1e\x75\x23\xa6\x3f\x17\xc5\xee\ +\xde\x01\x5d\xcf\x6b\x75\x2a\x2b\x63\x96\x4f\xf8\x49\x0f\xcf\x0d\ +\x7c\x2e\x7e\xfb\xcd\xfc\xa0\xbc\xda\xcd\x74\x6c\x87\x9f\x34\x53\ +\xb7\x1d\x83\xe2\x85\x57\x5e\x40\x13\x2f\xfb\xd6\x6d\x22\xa6\x64\ +\xda\xa8\x8a\x1e\xb8\xc1\xe2\xd9\xd8\xbf\x2e\x9c\x0a\x89\xc2\xe7\ +\x3e\x60\x9c\xfa\x9a\x8d\x47\xb3\xf0\xbb\xdc\xb4\xed\xfd\xf3\xb6\ +\x7a\x70\xd1\x36\x67\x97\xfe\x65\xbc\xc7\xb3\xbd\x65\x27\x3f\x21\ +\x9c\x14\x2f\x62\x87\x12\x92\x0e\xf0\x84\x26\xcb\x87\xa9\xf1\x64\ +\x1e\xc6\x05\x26\x62\x19\x65\xee\x29\x72\x6c\x70\xb3\x27\x17\xd6\ +\xbc\x98\x34\x2c\xa6\xf9\x69\x2d\x8d\x55\x16\xd3\x5c\xff\xf4\xb3\ +\x8e\x3b\xaa\x8e\x13\xd4\xb1\x60\xc9\xcf\x38\x97\xe0\x9b\x42\xd8\ +\xc1\x5e\x3e\x24\x78\xb6\x02\x54\x36\xf6\x14\xc8\x7e\xc9\xbe\x2a\ +\xbd\x6f\x40\x0c\x58\x5d\x19\x34\xfa\x16\x5f\x77\x5f\xa2\x8f\x67\ +\x1f\x97\x43\xdf\x1b\x0f\xfc\xa0\xdd\xd5\x85\xda\x7b\xc9\xa2\x62\ +\xf4\x03\x75\x8e\x1b\x63\xd1\x86\xb8\xe9\xa3\x76\x8a\x44\xf4\xe0\ +\xa3\xde\x53\x38\x86\x10\x31\x29\x0e\x45\x94\x25\x94\x82\x1b\x0c\ +\x36\x2c\x35\x7e\x7c\x0c\x81\xb1\x78\x56\x4f\xaa\x79\xe1\x89\xa7\ +\xe8\x12\x6d\x47\x5f\x63\x18\x3b\x54\x71\x9e\x38\x26\x53\xe7\x4a\ +\x50\x8e\xca\xed\xe5\x1b\xa3\x6e\x6f\x8d\x55\x67\x62\x28\x71\x1c\ +\x78\xb5\x33\xeb\x1e\x0b\x6c\xa1\xab\xe3\xc4\x0b\xcf\x96\xd5\x19\ +\xf6\x15\x56\x1e\xeb\x85\xe4\x11\xd6\xb1\xec\x3a\xa7\xce\x65\x8a\ +\x54\xf9\xd9\xc9\x82\xa1\x73\x0d\x62\x64\xeb\x62\x41\xf9\xf2\x61\ +\x87\x68\x5f\x79\x41\x4d\xbc\x86\xae\x28\x3b\x38\x7d\x04\xb8\x53\ +\x36\xfd\x1a\xaf\x7f\x54\x3f\x53\x27\x97\xab\x7e\x2e\x27\x03\x65\ +\xaa\xdd\x63\xa1\xc9\xab\x77\x23\x85\xe0\xe0\xba\x75\xa3\x10\x1d\ +\x94\xb8\xa1\xe3\x3c\xc1\x6d\xd6\xab\x83\x75\xbb\x5c\xad\xda\xf9\ +\xc5\x65\x7b\x74\x26\xba\xd6\x39\x42\x95\x38\x94\xfd\x6a\xb9\x6d\ +\xbf\xfb\x99\x3b\xed\x5d\x2f\xdc\x6a\x27\xbf\xf2\x99\xf6\x9d\x7f\ +\xf5\xef\xc5\x79\x8b\xc5\x6e\xe2\x18\x14\x93\xe6\x64\xe8\x6c\xda\ +\x0c\x33\xfc\xaa\xc0\x63\x51\xc8\x31\xf0\xa3\xff\xfc\x87\xda\x87\ +\xfe\xd9\xd7\xb7\xaf\xfc\xbd\x6f\x6b\x77\xef\xde\xf3\x31\xea\xef\ +\x33\x8e\x09\x8d\x4d\x8e\x2d\x8e\x29\x4e\xfd\x1e\xda\x4a\xfa\xf9\ +\x25\x46\x61\x87\xd0\x68\xac\xfb\x3c\xc4\xa9\x43\x3c\x7e\x92\x6d\ +\x73\x1e\x4c\x61\xef\xe7\x07\xc7\xc4\x00\x25\x4f\xea\xc2\xb9\xc3\ +\xc0\x1a\x4a\x1e\xf5\x3e\x24\x94\x50\x6f\x5e\xf1\xb8\xe1\xbc\x8e\ +\xd2\x75\xaa\xe3\x3c\xca\x73\xbe\xcc\x8c\x1c\xcc\x0e\x09\x90\x80\ +\x4c\x8d\xac\xf7\x71\xbf\xeb\x53\xbc\xe7\x25\xd8\x29\x53\x75\xe0\ +\x34\x60\x6a\x6b\xc4\x28\x70\x95\x68\x7f\xca\xfb\x6d\x76\x1d\x53\ +\x11\x7d\x44\xdf\x4c\x18\xfd\x0b\xe2\x27\x8a\xa7\xca\xab\x7c\x23\ +\x86\x71\xc0\x11\x06\x79\xc7\x6c\x26\x34\xa5\x2f\x9b\x63\x1a\xdc\ +\x40\x63\x57\x21\x57\x7d\x94\xec\x52\x6c\x30\xf0\xa1\xac\xfa\xf9\ +\x3c\x27\x21\x45\xc3\xc8\x07\x47\x59\x40\xb4\x9b\x01\x14\x61\x26\ +\xaf\x2a\x1f\xd5\xa4\xf5\xc8\x34\x7d\x02\x2a\x64\x82\x76\x57\x60\ +\x37\x40\x85\xcc\x9b\xe0\x58\x50\x65\xce\x23\xbe\x7e\xb4\xe7\x79\ +\x8f\xd8\x98\x33\xf0\xdd\x21\xc4\xc7\xfa\xb0\xb1\xa8\xb6\xe1\x40\ +\x62\x6e\x65\x9d\xe2\x28\x0a\x76\x3b\x10\x11\xbd\x37\x47\x75\xfa\ +\x64\x95\xc9\xb3\xab\xec\x63\x67\x84\xe8\xa0\x1c\x63\xd9\x5f\xe9\ +\x17\xaf\x57\x54\x7c\x04\x8a\x51\x7f\x55\xff\xc4\x16\xa6\x4a\x78\ +\xa6\x12\xc7\x49\x07\x50\xff\x01\xe9\x73\xd1\x6e\x06\x10\xe8\x0f\ +\x17\xd2\x5b\x64\x5f\xce\x41\xd6\xb8\xed\x00\xce\x51\x2f\x73\x4a\ +\xa2\x5d\x1c\xb7\x9c\x8f\xf8\x51\x8c\x6a\xa2\xaa\x78\xe1\xc6\x76\ +\x21\xed\x2b\xbe\xf2\x88\x76\x85\x23\x40\x55\x8e\xca\xad\x63\xc9\ +\x7c\x95\x25\x04\xec\x69\x3b\x28\x19\x44\x6f\x9a\xfe\xd6\x53\x67\ +\x62\xc4\xe2\x17\x3e\x06\xc7\x0c\x5f\xec\xd3\x78\x9f\x7c\xc2\x3e\ +\xa1\x41\x4c\xc8\xe3\x46\x8c\xc9\x16\x49\x27\x82\xc8\x61\xce\xf5\ +\x09\x80\x9b\x7c\x76\xbc\xf4\xc9\x3e\xcf\xb4\x86\x5e\x95\x55\xa9\ +\xf3\x20\xf4\xcc\xe4\x8d\xf6\x44\x5f\x38\xb1\x09\x99\x24\xfa\x45\ +\xfb\x89\xfd\x93\x7c\x1a\x09\x20\x36\xf2\x9a\x4f\x04\xc6\x62\x4a\ +\x17\xd4\xa5\x4c\x9c\x85\xd0\xd4\x90\xe1\xa9\x66\x7e\x0c\xbb\xd0\ +\x45\x1f\x3f\x58\x3b\x3d\xb9\xd1\x6e\xbd\xfc\xa9\xf6\xcd\xff\xe0\ +\x6f\xb4\xc5\x89\x8e\xb3\x15\xed\x25\x4f\xb4\xb0\xf7\xe9\x0c\x33\ +\xcc\x30\xc3\x0c\xbf\xe9\xc0\xcc\x62\x86\x19\x66\x98\xe1\x4b\x1e\ +\x9e\x98\x7e\x32\x37\xfd\x6c\x73\xd2\x98\xbb\x86\x4f\xf9\x41\x63\ +\x1e\x1c\x30\xf2\x9e\xd1\x27\x85\x91\x2d\xcc\x11\x64\xbb\xb9\x68\ +\xaf\xbf\xf6\xb8\x7d\xf0\xcf\xff\xd9\xf6\xee\x67\x8e\xdb\x57\xbc\ +\xfd\x9d\xed\xe4\xe8\x80\x75\x33\x5d\x97\xae\xfd\x8b\xff\xfb\xf7\ +\xcf\xfd\x3a\xad\xf8\x25\xb2\xf4\x2c\x5c\x11\x0e\xd0\x24\x3e\x2e\ +\xbe\x88\x57\xc1\xa7\xc9\x3f\xef\x62\xf7\x93\x0b\xf8\xc4\x55\x80\ +\xd1\x17\x54\xe9\x17\x72\x50\xe7\x4f\xb9\x6e\x6c\x73\xf5\x60\x39\ +\x12\x37\x83\xe2\x79\x5a\x82\xff\xee\x68\x4c\xea\xeb\xda\x11\x42\ +\x8c\x02\x5f\xb5\x08\x95\x0f\x2e\x3d\x52\x67\x45\x91\x28\x9a\xad\ +\x2b\x74\x51\xba\x6b\xec\x58\x55\xb1\xaf\xdb\xa6\x8b\x19\xb5\xd3\ +\xff\x89\x46\xbd\x59\x44\x1b\x30\xfe\xcb\x09\x3f\xf1\x5c\xa0\x5a\ +\xe6\xa6\x33\x3a\xf2\xa5\x5d\x58\x8b\x6a\xfe\x26\xc4\xb7\x78\x6c\ +\xf4\x47\x47\x7c\x53\x37\xf8\x17\xfa\x42\x78\xc0\xae\xa3\x2c\x97\ +\x59\xe5\x4e\x58\x37\xf0\xa9\xf3\xf4\x04\xce\x84\x5e\x84\xd0\xf8\ +\xe0\x29\x34\x16\xd0\xbc\x78\xc6\x13\x69\xe5\x93\x6d\x70\x79\xc4\ +\x94\xca\x3a\x51\xca\xf4\x02\x88\xdd\xa0\x18\x27\xda\x87\xaa\xd0\ +\xbb\x73\xbb\x8d\x0b\x47\x16\x4c\x1f\x5c\xb4\xed\xaf\x3c\x6e\x97\ +\xaf\x9d\xb7\xed\xeb\xab\xb6\xb9\x90\xc7\x72\xeb\x05\xb7\xc8\x0f\ +\x50\x2e\x65\xb1\x6f\x23\x6e\x14\x57\xf6\x84\xee\xbf\x0f\x94\x8c\ +\x7f\x67\xb3\x42\x4a\x08\x29\x5a\x62\x67\x54\x8d\x5a\xe0\x8a\x1b\ +\x3b\x8c\x45\x64\x1d\x23\x60\x2e\xa4\x4d\x4f\xad\x69\xbc\x7a\x01\ +\x8d\x63\x0f\xbb\xfc\x59\x7d\x22\x8e\xcb\x49\x24\x5e\xa2\x7f\xf8\ +\x0a\x25\xbe\xfc\x3c\xa4\x5d\x01\xe5\x47\x07\x6f\x73\xb5\x4b\x1a\ +\xfb\x4c\xb0\xd3\xe2\x6a\xff\x15\xb7\x51\xaa\xbf\x42\x05\xf5\xe2\ +\x4d\xca\xd1\x8d\x2e\x21\xb2\xb1\x5f\x43\x19\xe3\x49\xd4\xbf\x6a\ +\x65\xa1\x2a\xf7\x2d\xce\xdb\x95\xda\x7c\x49\x5f\x6c\x74\x8c\xea\ +\xdc\x71\x21\x99\x27\x0b\x59\x44\x74\xbb\x82\xfa\x55\xad\xe2\xfb\ +\x62\x22\xe1\x23\x44\x26\x13\x20\xfa\xbc\x41\x31\x38\x09\x5d\xcf\ +\x2a\x17\x42\xfd\xaa\x8e\x1c\x1f\xd6\x2b\x4f\xb6\x29\x9e\x14\x13\ +\x23\x64\x71\xaa\x2f\x64\xe1\xe7\x7c\xe9\x87\xdc\x69\x0a\x7c\x92\ +\x2d\xe4\xc6\xde\xbe\x0e\x32\xc1\x24\x51\x7f\x37\x89\x72\xe0\xb8\ +\x39\x6c\x94\xe8\x7a\x05\x52\xc7\x3a\x7e\x38\xa6\xe2\x38\x95\x9f\ +\x65\xd9\xb0\x97\x4f\xa1\x8f\xb9\x68\xa7\xf5\xd4\xa3\x50\xb2\xf7\ +\x11\xea\xd4\x75\x50\x58\xe5\xea\xed\xed\x28\x7d\x40\x31\xa2\xda\ +\x3f\xe3\xa2\x9a\x5f\xc1\x45\xfe\xdc\x6f\xa4\x74\x2d\x37\xe5\xfa\ +\xa2\x9a\x64\x97\xa7\x64\x2c\x1b\x5f\xab\x2d\x09\xac\xe8\x92\x20\ +\x9d\x5d\xb1\x10\x0b\x8a\x8d\x51\x29\xd4\xf8\x3c\x38\xd8\x48\xaf\ +\xf1\x25\xfe\x72\xb5\xf6\xff\xa8\xdd\x7f\x78\xe6\xef\x30\x0e\xb1\ +\xc3\xb6\x52\x17\x1d\xb5\xff\xc5\xbb\xee\xb6\x3b\x4f\x1d\xb6\x4f\ +\x7c\xff\x87\xda\x77\xfd\x83\x7f\x1a\xfd\x48\xc4\x6c\xc3\x0e\x0c\ +\x65\xce\x30\xc3\x67\x87\x1a\x3f\xd0\x45\xdb\xac\x56\xed\x93\x0f\ +\x1e\xb4\xaf\xfd\x1f\xfe\x8b\xf6\xf2\xbb\x16\xed\xa5\x97\x5e\x6c\ +\xc7\xc7\x87\x1a\x66\x1a\xa7\x1c\x90\x0c\x5b\x8d\x6f\x9f\xf3\x01\ +\xc6\x9a\x64\xcf\x71\x0c\xbb\xe3\x71\x3a\x34\x18\xf5\x64\xe6\xbb\ +\xd1\x41\xc2\x66\x3b\xc7\x01\x54\x80\x5e\xc5\xf0\x3d\x6b\xb3\x92\ +\x09\x43\x37\xc2\xbe\x7c\x1d\xb8\x46\xaa\x2f\x75\xe6\x75\x5f\x9e\ +\x7b\x31\x17\x24\xa6\x37\x01\xb1\x2d\x9b\xed\xd4\x90\xf2\x0e\x94\ +\x0f\x58\x49\xea\x80\xae\x37\xa5\xbf\xca\x92\x7a\x1f\xfb\xfb\x7e\ +\x60\x28\x5d\x2b\xf1\x21\xd3\x5f\xf2\xaf\x7e\x0a\x93\x90\x96\xb9\ +\x75\xa8\xac\xac\x2d\x35\x01\x7b\xe2\x67\x87\x29\x1e\xe5\x45\xd9\ +\x5d\x11\x18\xc9\x2e\x48\xe5\xba\xc1\x72\x4e\x43\x66\x8b\x8a\x06\ +\x9f\x9b\x9d\xc1\xf8\x64\xbe\xc9\x4a\x1d\x3a\xef\x76\x87\xb6\xea\ +\x56\x4f\x0e\xd7\x66\xff\x9d\xf3\xad\xb4\xb8\xf8\x4b\x12\x45\xfa\ +\x60\x92\x5f\xb4\x0b\x87\x20\x0e\xeb\xd0\xe4\x93\x22\x8a\xd9\x83\ +\x72\x22\x4e\x8c\xe5\x9a\xf7\x50\x74\xcc\x67\xb0\x32\xb7\xd1\x89\ +\x3b\xed\xb1\x40\xc6\xf7\x4d\xce\x79\xc8\xb2\x63\x0b\x7d\x6a\xa5\ +\x93\x2f\x31\xf8\xbe\xaa\x12\x9d\x27\x19\xcf\xa7\x10\x20\x62\xa8\ +\xbf\x01\x25\x82\x2b\x63\xd1\x6d\x19\x7c\xa2\xc9\x21\xd8\x04\x2f\ +\x06\xd6\x68\x87\x2e\x09\x03\xcc\x29\x89\xa7\xf0\x27\x85\x37\x8a\ +\x4d\x98\x62\x77\xa7\xf0\x51\x1d\xba\x2d\xaa\x96\x55\x8c\x7d\xe2\ +\x1e\x95\xc2\xfd\x90\xf1\xaa\x4f\xcc\x93\x44\xf6\x32\x0b\x26\xce\ +\xc0\x7e\x25\x78\xce\x19\xa8\xc3\x01\x4f\x9c\xf3\xc5\x5e\x32\x31\ +\xa0\x6c\xf6\x8f\xac\x00\xe7\x1b\xbb\x8a\xaf\x45\xba\xd8\x42\xb7\ +\x8f\x80\x5f\xef\x9a\x7d\x42\x2c\xa3\xea\x55\xed\xb5\x5f\xea\x0d\ +\xfb\x54\x10\x3e\x91\x67\x92\xcd\x9a\xec\xcb\xbb\xb6\xeb\xf3\x8c\ +\x60\x0f\x3b\x47\x5f\x03\xfb\x3e\x96\xeb\xf8\xc9\x98\x68\xeb\xbf\ +\xee\x02\xa2\x4d\xe6\x22\x83\xf9\xd2\xd7\xd8\x71\x3f\xe3\x57\xb2\ +\xec\x3e\x0a\xc9\x93\x08\xbf\xcc\xfa\x58\x9f\x06\x67\x29\x87\xb7\ +\x00\xe7\x4a\xbf\x28\xab\xf2\xc0\x84\xe4\x61\x24\x44\xf2\x8f\xd1\ +\xc4\x9d\xe8\x3b\xec\xd9\xe7\x17\xed\xb5\xf5\x4f\xb5\xef\xfe\xbe\ +\xef\x68\xcb\xe3\x85\xe6\xf5\x72\x48\x88\xd6\x4c\xad\x9d\x61\x86\ +\x19\x66\x98\xe1\x37\x0f\xf8\xde\x98\x61\x86\x19\x66\xf8\x92\x83\ +\x98\xaa\x06\x32\xef\xe4\x3a\xe2\x09\xb0\x71\x00\x7c\xf6\xfd\xc6\ +\x40\x60\xd9\xf7\x7d\x63\x76\x1d\x14\x28\x3b\xe2\x46\x93\xf4\xe3\ +\x1b\xed\x9b\xff\xcc\x7f\xd3\x9e\xfb\xcc\x27\xdb\xd7\x7c\xe5\x3b\ +\xdb\xbd\xa7\xef\xda\xc8\x85\x10\x93\xe9\x47\x8f\xce\xda\xfd\x33\ +\x6e\x4a\xae\x7d\x71\xda\x2f\xd8\x00\x5f\x08\x55\xfc\x44\x12\x99\ +\x99\x9c\x73\x61\xe5\x89\xf8\x41\xdd\x6c\x67\xf2\x8e\x0b\x7c\x91\ +\x41\x67\x22\x59\xdf\x00\x8e\xcb\xca\x93\x17\x63\xc2\xd9\x37\xaf\ +\x15\x9b\xd2\x5d\x8f\xb5\xca\xf7\x62\x9a\x35\xd1\xac\x08\x33\x01\ +\x4a\x93\xf0\x29\x70\x91\xde\x80\xe1\xa2\x24\x77\x88\x2f\x76\x84\ +\xb6\xa7\xd1\x1b\x14\x3d\x89\xda\xe4\xba\xb2\x88\xe6\x05\xa8\xc4\ +\x63\xc9\x47\xc9\xab\xfe\xfd\x29\x19\xdf\x08\x87\x26\x8e\x79\xea\ +\x26\x39\xbc\x9f\xee\x4a\x7e\x44\x2f\xd6\x0d\xf9\x5d\xb6\xb0\xa8\ +\xd0\x37\xdd\x8d\x8a\x61\x0c\xbb\x69\xf2\x55\x8e\x9f\x3e\xdb\x2f\ +\x83\xc5\xb2\x42\x6e\xe6\x8b\xb2\x88\xb6\xb4\x4e\xfd\x02\x2a\x2e\ +\x48\xcc\xb8\xf9\x2f\x1b\xe8\xbe\x91\x3e\xa9\xb7\xa4\xe8\x94\x08\ +\x29\x96\xcb\xc3\x92\xe1\x05\x4a\xd8\x47\xdc\x06\x59\x6b\xdf\x72\ +\xf1\x76\xb0\x92\xf2\xcd\xcb\xb6\xfa\xc4\xa3\x76\xf1\xd1\x37\xdb\ +\xe5\x27\xcf\xda\xf6\x6c\xe3\x72\x17\x37\xaa\x11\x15\x81\xf1\x61\ +\x51\xac\x18\x7f\xb2\x9c\xd2\x4f\x4c\xfa\x4c\x48\x3d\xa3\x4e\xd8\ +\x02\xd1\xc4\xb8\x89\xba\x31\xe6\xe2\x75\x3c\x92\x39\x06\x6c\x4a\ +\x8a\xcc\x38\x4c\x8c\x45\x23\x70\xeb\x05\x35\x56\x20\xe2\x49\xad\ +\xb8\x29\xd4\x9f\xda\x12\xe2\xe7\x7c\x8a\xe1\x32\xb2\x2c\x16\x9b\ +\x6a\x6c\x47\xcc\xa8\x1a\x32\x1b\x9f\x10\xb1\x21\x87\x2e\x6b\xe8\ +\x18\xe5\x46\xdf\xd0\x54\x4c\x31\xc4\x93\xe1\x17\xb5\x43\x1f\xb8\ +\xdf\xd9\xd0\x69\x9f\xfa\x97\xe0\xb6\x93\x25\x79\x58\xd9\xbc\x30\ +\x6c\x2a\xff\xdc\xff\x38\xb2\xe8\xe2\xa7\x09\x7d\xc3\x55\xed\xbd\ +\xdc\xb6\xcd\xb9\xda\xfc\x68\xa5\xfd\xb7\xf6\x62\xdb\x46\x17\xe1\ +\xd8\xbd\xc0\xa6\x63\x98\x05\xc6\xc0\xec\x0f\xda\x64\xc2\xcd\x31\ +\x85\x15\x8d\x92\x5d\x79\xd7\x27\xaa\x44\x6d\xe1\x83\xba\x9d\x5d\ +\xd6\x86\x9d\x7a\x71\x0c\x50\x47\xdb\x22\x31\x2d\x0d\x3e\xc2\x3a\ +\xee\xbb\x5a\x04\x08\x91\x3d\x33\xe9\x80\xe0\x47\x4d\xd6\x21\x32\ +\x88\x2a\x87\x28\xba\xb8\x91\x26\xa4\x61\x05\xf8\x24\x1b\x7d\x2d\ +\xa6\xfc\x55\xdf\x78\x2a\x4d\x7d\xc1\x50\x17\xcf\x02\xdc\x95\x17\ +\xd7\x40\xb9\xa2\x2b\xea\x63\x9b\xf6\x8a\x12\x07\x59\x8c\x5b\x6d\ +\x1d\xca\x00\xfb\x24\xa5\x3a\x93\x25\x61\x47\x11\xfb\x02\xca\xce\ +\xe0\x06\x26\xaf\x80\xd4\xc8\xf1\xfe\x41\x9d\xcd\x34\x30\x16\x78\ +\x22\xb9\x5e\xb9\xe9\x62\x6d\x54\x12\x9f\xf4\x45\x88\x7d\x32\x42\ +\xc9\xa3\xbe\xf3\x66\x42\x22\x75\xb5\x60\x54\x81\xb8\x31\xce\x2b\ +\x8a\x37\xed\x62\x75\xd9\xce\x2f\xd6\xed\xfe\x83\x33\x9d\x53\x34\ +\xe6\xe4\xb9\x6d\x17\xed\xb9\xa7\x6e\xb7\xff\xe0\xed\x87\xed\xd6\ +\xf9\xfd\xf6\xbd\x5f\xfb\x6d\xed\x63\x0f\x2f\x34\x44\x79\x3d\xa4\ +\x3a\xcb\x8d\x74\xc4\x20\xc9\xce\x30\xc3\x67\x07\x0d\x14\x7d\x62\ +\x3c\x72\x6c\x5c\xb4\xa3\xa3\xd3\xf6\x0d\x5f\xff\xdf\xb6\x8f\x5f\ +\xfe\xdb\xf6\xc2\xbb\x5e\x6a\x87\x47\x37\x64\x65\xbe\x24\x3f\x1f\ +\x10\xf2\xe4\xc7\x04\x64\x97\x18\x37\xaf\x11\x06\x88\x83\x6e\x47\ +\xef\xe3\x59\xea\xf8\x41\x4a\x1c\x5b\xdd\x6c\x9e\xe3\x00\x3f\x10\ +\x4b\xc4\x0d\xc4\x36\x1c\x6f\x9d\xf9\xec\x40\x2d\xa2\x26\x71\x1e\ +\xa8\x1f\x32\xf9\xd0\x77\xe0\x88\x4f\x62\x12\xac\xa1\xa8\x7d\x26\ +\x36\x64\xeb\xb2\x3e\xce\xcb\x39\xbe\xce\xf3\x93\x5f\x24\xb2\xa8\ +\x40\x1f\xe2\x48\xe9\x14\x54\xc9\x8e\x1c\x35\x36\x4f\x9b\x91\x33\ +\x63\xba\x59\xd7\x63\x0d\x18\xf5\xb8\x06\xa4\x1c\xfd\x0a\x81\xeb\ +\xf4\x81\x55\x6e\x6f\x65\xea\x13\xb3\x7c\xc0\x56\x25\x65\x63\xac\ +\x14\x57\xc4\x50\x0e\x42\xda\xd7\x4d\x62\xea\xbb\xc3\x3a\x8a\x46\ +\xa4\x10\x21\x0b\x1f\xd8\xdd\xee\x30\x88\x17\xb3\x53\x07\x6d\x59\ +\xdf\xf8\xe0\x88\x18\x4e\x91\x17\x43\xd8\x03\xe8\x5f\x04\x9d\xef\ +\x89\x59\xfa\x29\xcc\x04\x1e\x30\xc9\xb2\x59\xce\xf9\x87\x75\x24\ +\x4a\x35\xbe\x20\xd8\xfc\xfd\xdf\x7d\xf9\x20\x33\x47\x60\xfc\xa1\ +\xc0\x26\x0d\xf3\xab\xf4\x8f\x2d\x7c\xb1\x87\xcf\x24\xdb\x27\x2b\ +\x16\xc4\x7b\x4a\xa0\x54\x75\x89\x2c\xf4\x7f\x02\xed\xa0\x6d\xc1\ +\x5e\x93\x62\x13\x0d\xd6\x50\x5a\xf3\xf4\xbf\x27\xde\x15\xa3\x1c\ +\x99\x94\x40\x29\xd7\x66\x91\xa8\x49\x76\x89\x21\xa3\x8b\xc9\x5a\ +\xa6\x6d\xd8\x55\xa1\x8c\x8a\x23\x75\x98\xe2\xa0\x8f\xb6\x9b\x4f\ +\xbf\x31\xed\xa0\x58\xae\x07\xf5\x35\xc2\xc6\xb8\x21\x5c\xf4\x45\ +\xea\x2d\x87\x8e\x1f\x4f\x5a\xb1\x88\xeb\x42\x4d\x01\x42\x4c\x7b\ +\xf8\x05\xda\x90\x24\xa2\x11\x9f\xb1\x44\x5d\x28\x1b\x3f\xac\x51\ +\xb7\x70\xcf\x4c\xbd\x8d\xe9\x2b\x2c\xcd\x13\x90\x59\x0a\xa6\x88\ +\xc4\x4f\x06\x48\xde\x64\x2f\x0f\xa0\xd6\x04\xe3\xce\x8f\x08\x6f\ +\x59\x26\x90\x31\xa8\x19\x7e\xb1\xa8\x26\x6e\xc8\x84\x0b\x2d\xdf\ +\x87\x5e\x2f\x51\xf7\x97\xd9\xe8\xbf\x50\x77\x65\x48\x32\x58\x44\ +\x9d\xa6\x48\x90\x63\x3f\x94\x5c\xe0\xfe\x0e\x46\x1f\x49\x19\xc3\ +\x12\x7c\xa1\x75\x02\xed\x1b\xae\xe3\x17\xcb\xb5\xf6\xf3\xad\xf6\ +\xc2\x2b\x17\xed\x7b\xfe\xd9\x07\xda\x6b\xaf\xfd\xb2\x76\x30\xbf\ +\xf8\xa3\x69\x83\xff\x0c\x33\xcc\x30\xc3\x0c\xbf\xe9\x90\xdf\x5c\ +\x33\xcc\x30\xc3\x0c\x5f\xba\xa0\xf9\xaa\x27\xb4\xd7\xc2\xa8\x2f\ +\x7e\xdf\xb7\x26\xe7\xfb\x33\xfb\xf2\xdb\xd1\x4b\xa0\xc0\xc1\x76\ +\xb9\x3d\x6b\x3f\xf4\xfd\x1f\x6a\x1f\xfe\x8e\x0f\xb4\xf7\x3c\x7f\ +\xb7\xbd\xef\xed\xdc\xf8\x09\x07\x7e\xe1\x79\x76\x7e\xd1\x1e\x3c\ +\xba\xf0\x7f\xd3\xf8\xa2\x35\x11\xc0\x2b\x26\xdd\x19\xd2\x65\x55\ +\x81\x28\x35\x91\x5f\x2c\xfb\x4d\x77\x64\xe7\xa9\xcd\x19\x41\x94\ +\x24\x36\x1a\xed\xdf\xf3\x0c\xbe\x09\x5c\x98\x6c\xb8\xf1\x2e\xac\ +\x27\x5b\x7c\xa1\x98\x17\x9c\x93\xa7\x40\x42\x5d\x80\x02\xb0\xa3\ +\x3d\xae\x2f\x29\x65\x00\x09\xa3\x5c\xc5\xfb\x9a\xd8\xa8\xc4\x0b\ +\x50\xca\x7c\xa4\xcb\x88\x23\x39\xb1\x80\x76\xa4\x3a\x21\x73\x53\ +\x3b\x6f\x74\xf3\x9a\x44\xdc\x7d\x33\x3c\x17\xa1\xc8\x5b\x4f\x73\ +\x75\x44\x06\x69\x77\xea\x22\xce\x80\x2c\x70\xb9\xdc\x09\x23\xd6\ +\x84\x93\x4d\xf5\x30\x8d\xb8\xf5\xb4\x59\x97\x55\x8f\x27\x63\x0f\ +\x28\x9d\x6f\xd4\xab\xee\xbe\xa9\x9f\x18\xf5\x0b\x3d\x7d\x32\xfd\ +\x8a\x75\xd2\x81\xd1\xd1\x08\xa1\x64\x2b\xca\xfe\xc8\xcb\x39\x43\ +\x5c\x74\xb2\x29\x9e\xf0\x50\xd7\x67\x9b\x37\xce\xda\xea\xe3\xf7\ +\xdb\xf9\x47\x3e\xd3\x36\x9f\x78\xd4\x36\x0f\xd7\xde\xbd\xcb\x13\ +\x85\xb9\x7d\xd4\x0e\x4e\xf8\x9f\xa6\x8a\x47\x6c\x7f\x0c\xc4\x77\ +\x79\x02\x8f\x9d\x60\xc2\xc1\x79\x9e\x84\x28\x7d\x84\xd0\x78\x48\ +\x09\x73\x68\x79\x9c\xc5\x4d\x09\x0b\xb6\x05\x0d\x0c\x3b\x37\x7c\ +\x44\x59\x4c\x33\xbd\x6a\xdb\xed\xa6\xf9\x3f\xd6\xe0\x59\x48\xb3\ +\x0f\xe3\x57\x38\xf8\x9a\xe7\x46\x2b\xd7\xa8\x63\x5c\x6d\x5c\x04\ +\x3b\x1f\x3a\x00\x92\x18\x37\xce\xec\x9a\x79\xe5\x0d\x6f\x07\x9b\ +\x3a\xb8\xef\xdd\x17\xa0\xa3\x06\x90\x1f\x53\xd9\xd8\xd7\x62\xd8\ +\xbc\xd0\x96\xb6\x18\x33\x8a\xcc\x2f\x97\xf1\x90\x92\x71\xd0\x63\ +\x5d\xaa\x02\x17\xe2\xd4\x36\x3f\xd5\xca\x82\x19\x0b\x6c\xe7\xc2\ +\xc7\x2b\xed\xcb\xcb\xb6\xe5\x95\x9d\x3c\xf5\x2a\x5c\xe7\xe2\x5b\ +\x3c\xf5\x20\x5f\xb7\x9f\xca\x83\x8a\xd7\x69\x21\x49\xb0\xa4\x51\ +\xaa\xf2\x50\x19\xc0\xb4\x9c\x81\x18\x6d\x0b\xf2\xb9\xc2\x56\x4e\ +\xbc\xe5\xf0\x1f\xcd\x86\x3d\x45\x9c\x8b\x52\x10\x14\x3b\x8e\xaa\ +\x89\xab\xde\x07\x22\xf6\xa0\x30\xdb\x31\xfb\xce\xc7\x06\x8e\x2e\ +\x27\x9c\xbd\x80\xad\x03\x23\x16\xd2\xa4\xf0\x71\x08\x95\xcc\xe1\ +\x15\x87\x98\x28\x89\x3e\xf2\xf7\x02\xbe\x94\xd6\x27\x02\x75\xcc\ +\x84\xa0\x98\x49\x9d\x0f\x3e\xd8\x84\x28\x3f\x20\xeb\xa2\xad\x3f\ +\xa5\xa6\x7d\xc4\xff\x6b\x96\x5b\x0e\x41\x38\xd7\xc1\xff\x6d\x57\ +\x4f\xe1\x12\xdf\x95\x80\xb1\xd3\x04\x36\x26\x5f\x11\x52\x76\x6d\ +\xdd\x0f\xd0\xae\x34\xb8\x58\xf1\x88\x11\x5a\x75\xe1\x76\xab\xfc\ +\x2f\x35\x8e\x56\xeb\x55\x7b\x7c\x71\xd1\x56\x17\x1a\x63\xaa\xef\ +\x82\xa5\xb5\xab\xf3\xf6\xd5\x2f\xdf\x69\x5f\xfe\xce\x9b\xad\xfd\ +\xfb\x7f\xd7\xbe\xf1\x2f\xfe\x1d\x9d\xef\x8e\x95\xad\x8e\xab\x42\ +\xc1\x6e\x71\x33\xcc\xf0\xd6\xa0\x41\xc2\xb1\xc1\x61\xc9\xd9\xf2\ +\x5f\xfd\xf4\x4f\xb4\x7f\xf2\x4f\xbf\xb1\xbd\xf3\x7d\x4f\xb7\xdb\ +\xf7\x6e\xe9\x18\xa8\xc5\xaf\x85\x6f\xfe\x33\xd4\x94\xa6\x2e\xc6\ +\x36\x9b\x21\x87\xa0\xcf\xc5\xa1\xd9\x81\x38\x2d\x2b\xe1\xb8\x42\ +\x91\x4e\x96\x22\x60\x8f\x87\xc9\x2a\x1d\x13\xfd\xf8\x01\xae\x67\ +\x3b\x8c\xba\xe2\xa9\x33\xdf\x53\xcc\xbd\x78\x15\x38\x06\x57\x23\ +\x3d\x48\x5d\x44\x24\x59\x9e\x50\x34\x6b\x12\x26\x68\x9c\xe4\xac\ +\x0d\xbb\xc5\x40\x77\x80\xc0\x7c\x82\x54\xf1\x34\x4c\xf6\x99\x11\ +\x19\x2c\x39\x3a\x8e\x68\x64\x2d\x0c\x5d\xf1\x09\xa9\x18\x75\x4f\ +\xf8\x08\x7a\xec\x94\xf7\xe1\x5a\x3d\xf5\xc0\x40\xc6\x3a\xa1\x53\ +\xf7\x6c\x56\x87\xa1\x2d\x16\x9d\x92\x77\x2b\xbe\xda\xb0\xdb\x96\ +\x42\x60\x9f\x06\x54\x1f\x14\xb7\x07\x32\x38\x26\xf5\xc1\xef\x89\ +\x60\x76\x80\x11\x52\x97\xe0\x62\x7e\x11\x75\x01\xac\x4b\x2c\xbf\ +\x10\xba\x66\x07\x42\x9b\x7a\x0f\x24\xf2\x20\x05\xcf\xb1\x00\xef\ +\xae\xea\x5b\xf0\xf6\x4d\x99\x33\xbc\xdf\x14\x80\x9f\xa8\x7f\xd8\ +\x91\x76\xc7\x61\x7e\x64\x4f\xa5\x90\xe0\x42\x27\x85\x37\x57\x26\ +\x8c\xd6\x0b\x6b\xdf\x44\xa8\xe8\x3f\xa0\x77\x07\x3c\x1c\x7d\x60\ +\x32\xf1\x65\x9b\xec\x28\x03\x6d\x2e\x27\x41\x68\x40\x8e\x1a\xca\ +\xa9\x82\x13\xf1\xe8\x03\x45\x76\xde\x56\xe1\xbe\x17\xaa\xe2\xd4\ +\xdd\xe6\xae\xb3\x5b\xd6\x3b\xf2\x04\xd0\x53\x18\xe0\xa1\x85\x21\ +\x12\x73\xfa\xbe\x23\x8d\xad\xe4\x60\xe3\xfb\x34\x7b\xdd\xb5\x8e\ +\xa6\x50\x27\x34\x42\xe6\x1e\xda\xe2\x9c\x14\x75\xad\xe3\x34\x1c\ +\xe4\xdd\x6d\x21\x03\x66\x93\x0f\x18\x8c\x1d\x94\x27\xb9\x27\x21\ +\x6d\x11\x1c\xae\xc3\xa8\x99\xfa\x38\xdb\xd5\x61\x57\xe6\xe9\xf6\ +\xca\xe8\xbc\x49\xcd\x1b\xc2\x3f\xea\x4c\xf2\xd9\xea\x26\xb0\x3b\ +\x49\x78\xd1\xd5\xd3\xa2\x5a\xc4\x0a\x78\x92\x27\x75\xff\x82\xd6\ +\x08\xe8\x3f\x36\xeb\xeb\x7b\x26\x7d\x8c\xb1\x7f\x0c\x28\x3a\x21\ +\x49\x0c\x75\x42\xe9\x83\xec\x98\x0c\x83\x9d\x0a\xb9\x6a\x4a\xb6\ +\x8c\xdb\x75\xbb\x71\x72\xd0\x8e\x9e\x7a\xad\x7d\xc3\xb7\x7e\x6d\ +\x5b\x6c\x97\xfe\x31\x1c\x75\x0a\xe8\x19\x66\x98\x61\x86\x19\x66\ +\xf8\x4d\x84\xe9\xbc\x3c\xc3\x0c\x33\xcc\xf0\x25\x04\xe3\x34\xb3\ +\xcf\xab\x47\xba\x3f\x0f\x65\x4e\x8b\xae\x68\xc1\x67\xf3\xdb\x01\ +\x29\xf9\x18\x35\x29\x77\x3e\x39\xad\x2f\xdb\xc5\xd1\xad\xf6\x4d\ +\x7f\xf2\xbf\x6a\x2f\xad\xb7\xed\xab\xbf\xec\x95\x76\x7a\x43\xa7\ +\x5e\x6e\x98\x6c\x36\xed\x72\xbd\x6e\x9f\x79\xe3\xbc\x3d\x3c\xe7\ +\xe6\x8f\x30\x6f\x38\x12\xc7\x13\xfb\xa5\x62\x79\xa5\xa8\x80\xc0\ +\x4c\xf8\x15\x5b\x57\x57\x3b\xaf\x7a\xa4\x4e\xc2\xdd\x9b\x1f\xc9\ +\xfb\x4a\x0c\xbb\x28\x7c\x52\xdf\x90\x75\x78\x2e\x22\x25\x8b\xf3\ +\x25\xa8\x74\xdc\x6c\xf7\x93\x69\xdc\xb0\x57\xb9\xbe\x48\xc9\x30\ +\xfb\xe0\xe6\x0a\x30\xef\xbb\x44\x5b\xf6\xa0\x14\xa2\x95\x87\xd2\ +\xa9\x16\x8b\x5c\x7e\x75\xa3\x17\xd1\xb6\xf1\x24\x1a\xaf\x3b\x14\ +\x65\x61\xcd\x4f\x6b\xc9\xa7\x6e\x7a\xbb\x7b\xd4\x16\x2f\x44\xed\ +\xe0\xe4\x73\x2d\x92\xef\x3a\x7d\x61\xda\x79\x6a\x65\x5a\x54\x53\ +\x4c\x63\xc9\xa0\xea\x07\x65\xc1\x6f\xd0\x7b\xb1\x6f\x67\xe1\x2c\ +\xd0\x4f\x9d\x79\x7f\x4d\x3a\xef\x93\xdc\x2f\xfc\xca\x36\x6e\x8e\ +\x87\x6c\x2c\xe0\x22\x3a\x37\x19\x8c\xc1\x07\x67\x9d\x2f\x28\x41\ +\xa4\xd8\x6f\xdc\xfc\x66\x31\xe6\x90\xb1\x79\xbe\x6a\x57\xaf\xd7\ +\x42\xda\x9b\x6d\xf5\x2b\x8f\xda\xf6\xa1\x74\x1a\x9f\xec\x7b\xea\ +\xdb\x8e\x97\x7e\x97\x7f\xfc\x0f\x1b\x81\x94\x08\xa3\x2a\x56\x4c\ +\xc4\x3a\xf8\x28\xb3\x43\xba\x24\x9b\x30\x71\xdd\x57\x4c\xf1\xd0\ +\x51\xef\xc1\xb3\x43\x61\x93\xe7\xfe\x43\x1d\x33\x75\xdc\xd4\x62\ +\x99\x51\x3a\x1d\x63\x8c\x5f\xbf\xf2\x11\x1b\x79\xd3\x87\x27\x00\ +\xba\x4e\x1f\x27\xc4\xe0\x06\x87\xa8\x6b\xda\x4d\xc1\xc4\xab\xb0\ +\x64\xf3\x8d\x0b\x7a\x16\x8a\x83\x12\x68\xf1\x46\x59\xcd\xaa\x5f\ +\x84\x71\x2c\xb2\x97\x82\xa2\xef\xba\x10\x3d\xde\xc8\xea\xfd\xef\ +\x31\xc8\xad\xe1\x90\xaf\x18\xe8\x8c\x11\x78\xe9\xae\xce\xb4\xcf\ +\x2e\x59\x84\x17\xd2\x0e\xda\x48\x5b\x59\x30\xbb\xd0\xf9\xe5\x6c\ +\xd3\x36\x2c\xac\x3d\x5e\xb7\xcd\x79\x3e\xb1\xc6\x2b\x21\x2f\xd6\ +\x7e\x9a\x8d\xff\x5e\xf3\x22\x1c\x8b\x6a\x2c\x0e\x2a\x46\x9c\x7b\ +\xa2\xad\x00\xe7\x31\xaa\x35\x82\xcf\x6d\x85\x1d\x26\xc1\x6d\xde\ +\x83\xac\xf1\x14\x4c\xf4\x3a\x3f\xdb\x53\xcf\x1e\x88\x7e\x0a\x79\ +\x1f\x7a\x15\x92\xe9\xf5\xb6\x32\x20\xd8\xd0\xc3\xd7\x93\x8f\x81\ +\x15\x38\x35\x76\x16\xa5\x4c\x5e\x11\x89\x8a\xe3\xdf\xe7\x17\xc9\ +\xc6\x30\xd7\x31\xca\xb1\xeb\x63\x5b\x7c\xdd\xf4\x8a\x7d\x3c\x85\ +\x4a\x36\x74\x09\x23\xbf\x2f\xb9\x1d\xc1\x78\xbf\xfa\x49\x15\x76\ +\xad\xf6\xb3\xff\x53\x2d\x5b\x65\xa0\x4a\x2a\x9f\xff\xdf\xa8\xff\ +\x53\x8b\x9d\xa6\x98\xd4\xa3\x2a\x90\xe0\x1b\xec\xb5\x53\xf7\x6c\ +\xec\x90\xd2\x74\x13\x31\x44\x1c\x36\x75\x90\xb8\x91\xc7\x8d\x56\ +\x7d\x87\xad\x78\xb2\x7a\xdb\x1e\x9d\x5d\xc4\xf8\x53\x5f\x1c\x6b\ +\x40\x1d\x2f\x0f\xdb\x1f\x7a\xef\x9d\xf6\xea\xd3\x47\xed\xa7\x3f\ +\xf8\x7d\xed\x23\xaf\x7d\xb4\xad\xd7\xab\xe8\x37\x9a\xe0\x78\x62\ +\xe0\x83\x8b\xd8\x96\x66\x98\x61\x84\x18\x27\x75\x68\xac\x79\x2a\ +\x77\x7d\xd8\xfe\xfa\x37\xfe\x57\xed\xce\xfb\xaf\xda\x3b\xdf\xf5\ +\xf6\x76\x7a\x7c\x43\x63\x4b\x0e\x9c\x0b\xe5\xcc\xd3\x35\x1e\xa6\ +\x1c\x9b\x0c\xde\x3e\xb8\x22\x08\x36\x92\x71\xbc\x75\x17\x25\x95\ +\xaf\xcb\x22\x3e\x3d\xc3\xa4\xdd\x3f\x70\x00\x90\x23\x60\x89\x3b\ +\xb0\x2f\xa3\x19\x75\x51\x63\xd7\xda\xc7\x3c\x8b\x69\x7e\x45\x71\ +\x82\xbd\xf9\xa8\xbc\xfa\x51\x45\x92\x72\x70\xbc\x40\x45\xf2\xb1\ +\x5c\x3e\xf1\x1d\x65\x5f\xa8\xf5\x21\x14\x2d\xb0\xc4\x9c\x13\xbf\ +\xec\x9b\x68\xd7\x84\xce\x6f\x0b\x36\x13\x43\xf1\xce\x93\x08\xc4\ +\xb9\x3f\xa1\x1b\x42\x37\xfa\x7d\xbe\x10\xe5\x28\xe1\x5c\x66\xac\ +\xf8\x2c\x90\xe5\xd3\x89\x92\x28\x77\x44\x20\xda\xa4\xbe\x05\xc8\ +\x6b\x28\xfa\x59\x40\xf9\x88\xe0\x58\x0e\x15\x79\x42\x87\x59\x1c\ +\x8c\xc6\xdf\xd2\xe5\x11\x9e\xfe\x15\x6f\x2a\x73\x64\x31\x53\x3d\ +\xc8\x78\x82\xb1\x69\x4a\x3a\x84\x44\x9a\x39\xdc\x56\xca\x12\x9f\ +\x71\x99\x93\xb8\x4a\x03\x44\xbe\xd4\x9a\xe0\x43\xdd\x95\x16\x62\ +\xe0\xd3\x75\x3a\x77\x8b\xfa\xc7\x7c\x20\x46\xa1\xb4\x38\x99\x2f\ +\x5f\xeb\xa1\xcc\x19\x72\x73\x1f\x60\xd7\x06\xb8\x0e\xc1\x06\xc0\ +\xbb\x1f\xa3\x76\x9d\xb8\x3f\x00\x1c\xc2\x1a\xad\x4d\x87\x92\xb2\ +\xcd\x3a\xf0\x2c\x97\xa7\x3d\xd2\x16\xb1\xe0\xc3\xe4\x9e\xf1\x97\ +\x17\xe6\xd2\xe3\x47\x2e\x78\xa2\x68\x1b\xeb\x59\x36\x97\x20\xc3\ +\x4e\xbb\xe2\xfb\xd7\x2e\xcc\xbb\xa4\xe7\x3f\xa5\xdd\x5f\xf8\xd9\ +\x27\xfd\x61\x0d\xc8\x41\x0a\x82\x7d\x42\x11\x7d\x98\xe5\x47\x55\ +\x15\xbf\xd7\x47\xe0\xfa\x82\x43\x1b\x00\xf1\xd1\xbc\x50\x8e\xa6\ +\xae\xdd\x55\xee\x40\xaf\x09\xcc\x5e\xb5\xea\xf5\xaf\x63\x1a\x2e\ +\xd5\x27\x25\x05\xb8\xcf\xe4\xd6\x8b\x2b\x83\x81\xba\x64\x9e\x6c\ +\x9b\xdb\x11\x95\x37\x40\x9c\x25\xe5\xcf\x05\xf8\xf6\x98\x42\xba\ +\x70\x3a\x26\x9e\x4c\x0b\xa6\xf0\xd1\x97\x81\x51\x7a\xd8\xe2\x5c\ +\xcb\x74\x65\xb2\x87\x8f\xa9\x3d\x02\x7c\x8e\xb4\xbe\xb4\x65\xa1\ +\xcc\x88\x17\xa8\x14\x3f\x4c\x96\x23\x8d\x7c\x01\xe6\x24\xf3\x83\ +\x10\xe6\x6b\xf7\x5e\x7d\xdc\x7e\xf6\x53\x3f\xd8\x3e\xf4\x23\xff\ +\x40\xed\x8a\xb9\x60\xd5\x70\x86\x19\x66\x98\x61\x86\xdf\x7c\x60\ +\x9a\x31\xc3\x0c\x33\xcc\xf0\xa5\x01\xc3\x7c\xb9\xa6\x9b\x75\x51\ +\xd3\x2f\x6e\x44\xcd\xe2\x50\xba\xe2\xf7\xe7\xa8\xa5\x1b\xed\x95\ +\x07\x06\xde\x81\xbb\xd2\x3e\x11\x46\xa9\x66\xbe\x67\x9b\xb3\xf6\ +\x81\xaf\xfd\xba\x76\xf2\xf3\x3f\xd9\xbe\xe6\x2b\x5f\x6e\xef\x78\ +\xf1\xf9\x76\xb8\x5c\xf4\xa7\xd1\x1e\x9f\x5d\xb6\xfb\x8f\x57\xfe\ +\x95\xff\x15\xaf\x7b\xcc\x8b\xfd\x98\x97\x73\x83\x80\x45\x8d\x52\ +\x50\x4e\x4c\xc6\x11\x59\x4c\xdb\x79\x0d\x9c\x10\x5b\x77\xd0\x87\ +\x6b\xa1\xb0\x85\x2e\xdc\x32\x8f\xf3\xa5\xaf\xe5\xb0\x91\xc7\x0b\ +\x12\xeb\x4d\x3b\xe0\x66\x3b\x37\xa8\x7a\x07\x02\x04\x49\x16\x48\ +\x71\x54\x01\x96\xb1\x25\x86\x93\xe2\x0e\x32\xc4\x02\x37\xa5\x59\ +\x84\x12\x2e\x0e\xe5\xe3\x45\x34\xf5\xc5\xb1\xea\xc5\x02\x8f\x6f\ +\x5c\xcb\xce\x1d\x88\xa4\xc6\xaa\xb3\xa8\x6f\x7c\x13\xc7\x3e\x45\ +\x27\x8c\x27\xbf\x84\x32\x99\x26\xc6\x0d\xf3\xa0\x1d\xd3\xbf\x16\ +\xe9\x82\x2a\x23\xbe\xf0\xea\x2f\xf7\x99\xcb\x51\xf9\xd2\xb9\x2e\ +\xa9\x83\xda\x27\xf3\x8f\xd8\xdb\x81\xbd\x3a\x87\x7c\xc9\x66\xa7\ +\xa4\x00\x17\x1b\x17\x77\x64\xe3\xda\x0d\xe0\xb6\x42\x64\x0a\x9f\ +\x60\xa0\xaa\x2f\x17\x5e\x42\x28\x55\x5e\xac\xb7\xed\xea\xc1\x45\ +\xbb\xfc\xe4\x43\x2f\xa2\x9d\xfd\xd2\x9b\x6d\xfd\xf1\x87\xad\x3d\ +\x66\x1f\x47\x7c\x79\x2b\x3f\xe3\x2f\xc6\x5d\xf5\x39\x31\xc7\xb1\ +\xd1\x8b\x8a\x04\x83\x6d\xa3\x1e\x36\x84\xe0\x46\x88\x8b\x4f\xb8\ +\x6c\x48\xba\x58\x4a\x55\x80\x84\x54\xd6\xf0\xf3\xcd\x1c\x3e\xd9\ +\x36\x2f\x24\x25\xef\x2b\x4d\xc9\x7e\x32\x21\x17\xd2\x8c\xbe\x02\ +\xc5\x17\xea\x70\x91\x4f\x63\x9b\x7c\xee\x4f\xf2\x77\x74\x51\x45\ +\x64\x2f\x0e\x08\x7b\xa8\x46\x3d\xa0\x86\xa8\x83\x26\xf7\xec\x07\ +\x25\xee\x13\xf7\x13\xb2\x15\x03\xaf\x3a\x78\x6c\x85\xb2\x1f\x9b\ +\xd2\x2d\xb9\x79\x24\xfe\x6a\x19\xff\xaf\x41\x68\xf6\x01\xff\x95\ +\xb6\xe1\x49\xb4\x4d\x9e\x33\x54\xa8\xef\xe9\xd0\x26\xb7\x5f\x9e\ +\x97\xdb\xb6\x05\x59\x58\x3b\x93\xee\x71\xfc\xc7\x1a\x4f\xb0\x6d\ +\x2e\x78\x6a\x4d\xe7\x20\xf1\x5e\x58\xe3\xd5\x62\x3e\xd6\xe9\xaf\ +\x88\xe5\x98\x89\xd9\xec\x84\xcf\x7e\x39\x3f\xd9\xf0\x0b\x04\xd0\ +\x17\x02\x31\x0c\xca\x3e\x62\x40\xf7\xeb\x5c\x41\x46\xb4\xbb\x92\ +\x5e\xc7\x89\x07\x6b\xfc\xeb\x93\xbe\x98\x95\xb7\xf3\xf8\xa8\xb9\ +\x12\xb6\x2a\x82\x7e\x0d\x93\x36\xed\x87\x90\xe1\xa5\x64\xdf\x78\ +\x3f\x88\xf7\xb1\x2b\x4f\xf6\x95\xf7\x97\x58\x0e\x32\xef\xcb\xd8\ +\x77\xc1\x4b\x47\xed\xa1\x85\x40\xd1\x0e\x59\x21\x63\x82\x2b\x69\ +\xa6\xb7\xc3\xbb\x86\x7d\xcc\x46\xf1\x4e\x22\x97\x86\x87\x17\xd5\ +\x78\xfd\x63\x1c\xab\xe4\xa5\xec\xf0\x19\xcb\xae\xa7\x26\xbc\x03\ +\xf0\x09\x8b\x00\x63\xb2\xc9\x47\xb3\xb2\xbf\x01\xec\x8c\xd7\x3c\ +\x4f\x5c\x89\xae\xb7\xf1\xc3\x90\x8b\x8b\xcb\x76\x71\x7e\xe9\xf1\ +\x43\x05\x16\xb2\xbd\xe7\xce\xbd\xf6\xfe\xaf\xb8\xd1\x5e\x3c\x7f\ +\xbd\x7d\xd7\x5f\xf9\x40\x3b\x3c\x56\x45\xe9\xec\x11\x52\xa4\x3a\ +\x34\x29\x6a\x35\xc3\x0c\x05\x39\xfa\x34\x28\x18\xcf\x9c\xdf\x96\ +\x87\x47\xed\x9b\xbe\xe3\x6f\xb6\x5f\xf8\xf4\x3f\x6f\xef\x78\xff\ +\xcb\xed\xd6\xe9\xed\x78\x4a\x5f\xbe\x1e\xaf\x3a\x97\xf9\x3b\x49\ +\xc7\xe9\x34\x96\xc4\xe5\x18\x33\x65\x1c\x7b\xab\xf1\x26\xa5\x18\ +\x78\x4e\xc7\xe6\x53\x2e\xec\x3a\x95\x55\x8b\x69\x96\xd3\x58\xfe\ +\x23\x5c\x27\x8f\x3a\xaa\x83\xec\x73\x95\xea\xbd\xe1\x87\x0f\xcc\ +\x0f\xed\x48\xcc\x8c\xab\x24\x16\xd3\xac\xee\x31\x46\x1e\x98\xfc\ +\xe9\x83\xec\x87\xf4\x09\x7d\xf0\x2e\x38\x9a\x9c\x7a\xf9\x2e\xf9\ +\xee\x2f\x28\xc7\xf4\x49\x34\xec\x08\x62\xc5\x87\x8a\xa0\x66\x76\ +\xec\xf0\xbd\xdc\x04\xe4\xd1\xaf\x6c\x5d\xad\xa4\xc7\x35\x1f\xed\ +\x89\x3a\xb3\xef\x0a\x53\x2e\x47\x00\x3f\xb3\x61\x0d\x2e\xeb\x86\ +\x5c\x6a\x63\xe9\xf7\x21\xe2\xb3\xf5\xac\x5d\x93\xfa\x4a\x09\x19\ +\x62\x82\xf6\x81\x78\xd7\x8e\x32\xd0\xc0\x1a\x65\xb0\x3a\x6a\x1f\ +\x9b\x55\x81\xf6\x91\x2e\x15\x96\xbb\x9d\x14\x3a\x15\x36\xd9\xf6\ +\x61\xd4\xb8\x32\x91\xa3\x12\x3e\x59\xe9\xf8\x9e\x8c\x36\xe9\x9b\ +\x46\xbc\xe6\x0d\x39\x1e\x39\x60\xbc\x25\xad\xef\x23\x2f\xce\x51\ +\x84\x65\x87\x53\x91\x4a\x5d\x71\x4b\xae\x02\x79\xcc\x5a\x5d\x75\ +\x72\xcf\xa4\x32\x00\x8e\xf6\xf1\xdd\x9b\x82\xe5\xf2\x48\x55\x66\ +\x49\xbd\xca\x9b\xdc\x43\xe7\xf1\x2e\xae\x7f\x25\x67\x55\x5c\xa6\ +\x7d\xa7\xba\x5d\x1b\x5f\xc8\xa2\x68\x37\x00\xbe\x16\x13\x5a\x97\ +\xed\x01\x69\x3b\xf3\x25\x74\xea\xb3\xea\xa3\xce\xcb\x16\x5d\x1c\ +\x7a\xfc\x03\xd1\xf1\x49\x46\x80\xce\x92\xc5\xd0\x75\xbe\xea\x92\ +\xfd\x67\x3f\x73\x09\x4f\x28\x04\x99\x27\x4a\x16\x55\x62\x97\x08\ +\xda\x61\x14\x55\xb3\xf0\xef\xbe\x99\x48\xe1\x28\x50\x91\x5e\x9d\ +\x42\x92\x1d\x08\x8b\xfd\x94\x4c\xbd\x5c\x90\x3d\xef\x8c\x93\x6f\ +\xf4\xaf\xc0\x2a\x32\x7a\x2f\x6a\x7b\xa2\x80\x0e\x61\x9d\xe2\x80\ +\x84\xdd\x28\xbf\xa5\x5e\xb9\xb1\x0e\xa5\x2b\x2d\x65\x05\x1f\x75\ +\x50\x54\x31\x1e\x2f\x49\x99\xd6\x85\x22\x75\xb8\xa1\x1a\x29\x65\ +\xf5\xd0\x65\x11\x58\x47\xc6\xd0\x46\xfe\xc1\xbe\xc3\x03\xea\x0f\ +\xb5\x7d\xb1\xd8\xb6\xc3\xe5\x71\x7b\xe5\xbd\xeb\xf6\x5d\xff\xec\ +\x1b\xda\xa3\xd5\x27\x5b\xe3\x15\xfd\x06\xf2\xc0\xf7\x02\x67\x98\ +\x61\x86\x19\x66\xf8\x4d\x00\xbe\xa9\x66\x98\x61\x86\x19\x7e\xeb\ +\xc0\x67\x9b\x3b\xee\xcd\x49\x6b\x0e\xdb\x01\x5e\x68\x15\xc6\xb2\ +\x8d\x3c\x50\xfc\x5b\xe9\xcc\x93\x28\x23\x13\xec\x52\xf2\x21\x56\ +\xc5\x5b\x5f\xb4\xf5\xd5\x71\xfb\x67\xff\xef\x3f\xd7\xbe\xec\xde\ +\xa2\x7d\xe5\x3b\x5f\x6e\xc7\x27\x47\x6d\xcd\x93\x40\xca\xc7\xeb\ +\xb2\x3e\xfd\xfa\xe3\x76\x79\x79\xd9\x0e\x36\x2b\xdf\x44\xe1\x42\ +\xcc\xb0\x5c\xf7\xc5\x0c\x83\x26\xea\x79\x79\x22\x60\x82\xaf\x0b\ +\xc6\xbc\x89\xea\xc9\xb9\x66\xfb\xb8\xd6\x44\xdf\xd9\xe0\x61\x7c\ +\xa6\xc7\x18\x84\x2b\x03\xfb\x4b\x6f\xef\xf4\xe1\x46\x2b\xa5\x70\ +\x3f\xd4\x4f\xb0\xf0\xa4\x8b\x05\x1a\x54\x40\x00\xc1\x8e\x6e\x17\ +\xaa\x98\xba\x76\xce\xcb\x9a\xd4\x29\x2d\x3d\x94\xba\xf1\x8b\x68\ +\x3f\xe5\x25\x3c\x56\x0d\xf2\xbf\xd1\x78\xba\x8b\x36\xf6\x45\xa8\ +\x6c\x0f\xff\x1b\x14\xed\x24\x96\x2e\x73\xb1\x71\xb5\x03\x12\x33\ +\xd4\x9d\x1f\x91\x3a\xc5\xa2\x99\xca\x19\x70\x7c\x02\xc5\x88\x7f\ +\x52\x62\x45\xd9\xa2\xd2\x15\x1d\xfd\xa2\x9f\x85\xae\x67\xea\x52\ +\x6f\x5b\xd2\x71\xeb\xf9\x3b\x4e\x7e\xce\xef\x30\xf6\x34\xfa\x5a\ +\x4d\x4c\xf4\xa1\x7a\x15\x82\xce\x1d\x1d\xb2\xf6\x9a\x11\x9e\x17\ +\x05\x6a\x18\xb5\xcd\xfd\x8b\xb6\xfa\xf8\xc3\xf6\xf8\x23\x6f\xb4\ +\x8b\x5f\x7a\xd8\xae\x3e\x7d\xd9\xda\xd9\xc6\x43\x8d\x9c\xdc\x54\ +\xe1\xc6\x38\xc1\x18\x7d\xde\x5f\xe2\xb1\xb9\x8e\x59\x4f\x2f\x3a\ +\xf8\xd1\xc1\xa8\x63\xb5\xcb\x46\x13\x6e\x62\x24\x1f\x49\x80\xfd\ +\x92\x07\x5c\x5f\xca\x08\x71\x07\x70\x95\x09\x33\x24\x98\x50\xf8\ +\xc2\xd8\x62\xea\xf2\xa6\x45\x2a\xcd\x73\xb3\x95\xd7\x3e\x7a\xe5\ +\xc1\x0b\x6a\xf0\x69\x73\x96\x8a\x23\x74\x1b\x33\xbf\xe3\x8b\x00\ +\x16\x53\x2f\x1a\x62\xca\x3b\x90\xed\x1a\xda\x61\xb7\xd2\xa5\xde\ +\xfb\xb0\xfa\x00\xca\xbe\xad\x31\x6c\xb5\x0d\xd2\xa7\x2e\x17\x64\ +\x17\x0c\x7a\xc6\xd4\xa1\x32\x40\xf5\xf1\x3e\x57\xb3\xae\x1e\x6b\ +\xff\xf9\xe9\xb4\xad\xce\x1d\x6a\xf3\xa6\xda\x48\x9b\xaf\xda\x82\ +\x1b\x61\x42\xff\x3f\x5e\xbe\x0a\xd2\x0b\x70\x2c\xae\xb1\x80\x06\ +\x7f\xa1\xfd\x8d\x0d\x19\x84\x97\xbf\xff\x5f\x8d\x1b\xba\xc4\xf4\ +\x0a\x4e\xf4\x73\xef\x37\xda\xa8\xa4\xb6\xe2\xc3\x30\xf2\xbb\xa0\ +\xaa\xc7\x78\x85\x71\x47\x3d\xe9\x13\x9a\x29\xed\xd1\x68\x7b\xe9\ +\x7a\x3d\xd4\xbe\x54\x42\xcd\xab\xba\x07\xda\xe5\xfc\x10\xa0\x63\ +\xea\xf8\x0b\x0a\xa3\x06\x32\x8b\xc8\x50\x0e\xf9\x03\x06\xb6\x7c\ +\x88\x43\x08\x42\xfb\xb4\x27\x5e\x56\xd7\xdb\x75\xf6\x3e\x10\xd6\ +\x31\x91\xc7\x05\xba\x38\x9f\x0a\x7d\x2e\x52\x99\xf0\x36\x02\xe2\ +\x8a\x2d\x5d\x97\x81\x51\x50\xde\xe4\xa8\x08\x75\x01\xfc\x94\x9a\ +\x04\x70\xc3\x53\x60\xd4\x4f\xe8\x76\xdb\x43\xc7\x3a\xc3\x85\xd7\ +\x83\x2e\xf8\x4e\x90\x06\x03\x75\x83\x1f\xcb\x30\x2b\x4d\xc6\xde\ +\x01\x35\x34\xfc\x23\x8f\xdb\xbd\x03\xd8\x23\x5a\x2c\xaa\xc5\xf9\ +\xc6\x4f\xa9\xad\x37\x5e\x50\x8b\xc5\x00\x16\x83\xb7\xed\xec\xea\ +\xb2\xfd\xde\x7b\x37\xdb\x7b\x9e\xbd\xd1\x7e\xe1\x7b\xff\x69\xfb\ +\xb1\x1f\xfb\xb7\x1a\x73\xe7\x54\x34\xfa\x9c\x40\x55\x0f\xca\xcd\ +\xf2\xae\xab\xda\x0c\xbf\x8d\xa1\x0f\x08\x0e\xba\x6d\x7b\xf0\xfa\ +\xfd\xf6\x81\xef\xfb\x6b\xed\xc5\x77\xdd\x68\x4f\x3d\xf5\x94\x8e\ +\x05\x8e\x09\xcd\x99\x64\xad\xf1\xc9\x7f\xd1\x3c\x31\x80\x89\x03\ +\x6a\xf0\xfb\x9c\x9c\x10\x0b\x0b\x92\x73\xfc\xf3\x94\x65\x1c\xc3\ +\xa1\x06\xed\x4e\xa2\x8f\xbf\xe7\x2c\xe2\x1f\x79\xd2\x34\xc1\xbe\ +\x3c\x00\x7a\x8e\xf4\xde\x2c\x1d\xcc\x1c\xcf\xfe\xcf\x34\x8e\x6f\ +\x39\x60\xaf\xfc\x55\x06\x8a\xb1\x1c\xeb\xa0\xfb\xa8\x24\xfc\x83\ +\xe9\xf5\x94\x0a\xb0\xc9\x1b\xe6\x38\x8e\x4b\xd7\xad\x90\x94\x46\ +\x8a\x2f\x40\xed\x27\xef\x01\xf2\xc4\x32\xda\xbc\xf8\x0f\x02\x52\ +\x44\xec\xfd\xfc\x21\x87\x02\xdf\xf2\x0f\x3e\xfc\x94\x86\x73\x80\ +\x95\xd4\x35\xea\x1b\x8b\x6e\xb1\x28\x88\x6f\xe8\xd2\x0d\x7f\x60\ +\x90\x3b\x52\x46\x09\x1d\x62\xff\x4c\xea\xfa\x36\x82\x15\x65\x9f\ +\x59\x56\x99\xa9\xb6\x9f\x92\xa8\x07\xd4\xea\x89\xb2\xa5\x2f\x30\ +\xe9\xe1\x23\x03\x5b\x00\xf5\x47\x97\x22\x60\x31\x14\x9d\x72\x48\ +\x24\xdf\x61\xac\x8f\x20\xba\x5e\x89\x06\x16\xac\xb1\xda\x60\x1b\ +\xc7\x0f\x98\x3a\x6d\x7e\xf5\x7c\xd3\x78\xec\xb6\xb0\x83\xf1\x5a\ +\xfa\xe0\x1d\x11\x3e\x0b\xdb\xab\x89\x65\x17\x51\x96\x10\x04\xb4\ +\x00\x41\xe8\x4e\x99\x72\x06\xa7\x94\x8f\x09\x7d\x11\xbc\x95\x06\ +\x28\x7a\x75\x40\xf5\x9b\x4d\x39\x56\x32\xc3\xb4\x61\x8e\xfd\x52\ +\xe5\xd9\x3d\xf7\xd5\x54\xb1\x68\xff\x58\x37\x9b\x91\xd4\x4e\x0b\ +\xb4\xd7\x5f\x60\xe9\x83\xde\x6c\xf6\xa1\x75\xcc\x45\xa3\x8f\x9e\ +\xc0\xdc\x24\xec\xc8\x6c\xe4\x35\x95\xbe\xec\xc4\x42\x6f\xd4\xc7\ +\xc7\x93\x60\xaa\x76\xda\xc2\xa8\x14\x0b\x2d\xc8\xfc\x68\x44\x2b\ +\x9f\x61\x8f\x75\x31\xe5\x2f\x1c\x69\xd7\xdb\x13\x75\xd9\xbb\x6a\ +\x64\x93\x89\x1e\x0c\x98\xb8\x02\x62\xe6\xce\x08\x85\x7d\xd0\xa1\ +\x26\x99\x74\xd3\x1e\xb8\x0e\x9e\x8c\x6d\x90\x7a\xab\x79\xde\x13\ +\x56\x42\x15\x1a\xca\x43\x0a\xeb\x35\x2e\x6a\x9f\xa3\x12\xc6\x0f\ +\x19\xd0\x43\x6a\xdc\x84\x6d\x17\x46\x85\xe2\x96\x83\x28\xa5\x44\ +\xbe\xd0\x15\x9f\xd1\xba\xde\x20\x9e\x1f\xcb\xfa\xbf\xd1\x65\x3f\ +\x39\x3a\x6a\x17\x87\x3f\xd7\xfe\xee\x77\x7e\x43\x5b\x9c\xf0\x3d\ +\x11\xbd\x92\x51\x04\x4f\xb4\x72\x86\x19\x66\x98\x61\x86\xdf\x20\ +\xf0\x34\x6c\x86\x19\x66\x98\xe1\xb7\x2a\x0c\x53\xd0\xeb\x21\xe7\ +\x99\xe3\x5c\xf5\x0b\x06\x04\xf5\x45\x06\x00\x15\xba\x1c\x25\xeb\ +\x6d\xbb\xd4\x19\xf6\xbb\xbe\xfe\xeb\xda\x3b\xcf\x1f\xb4\xdf\xf1\ +\xee\xb7\xb5\xdb\xa7\x47\xbe\x27\xcb\xb5\x11\x97\x47\x0f\x1e\xf0\ +\xaa\xc7\xb5\x9f\x32\xf1\xc2\x95\xf2\x7b\x71\x84\xc9\xfc\xd5\xa1\ +\x70\xa9\x22\x2a\x3e\x51\x63\x92\xcf\x84\xde\x7f\x5c\xcc\x8d\xd3\ +\xa5\x14\xfd\xc6\x0f\x79\x8b\x32\xf9\x17\xd6\xc5\xb6\x55\xc8\xa1\ +\x8f\x85\x1f\x51\xc9\xbe\x79\x94\x3e\xae\xc5\x7a\xe3\xff\x58\xe2\ +\x86\xbc\x2f\xb4\x23\x42\x26\x92\xa8\x13\x7c\xe1\x00\x25\x3e\x71\ +\x71\xad\xb2\xdc\xb4\x44\x0c\xae\x0f\x8b\x07\x3c\x99\xd6\x5f\x97\ +\x28\x03\x6d\x4a\xac\x27\xbf\xe8\xb7\xb8\x6e\xce\x00\xe4\x1d\x29\ +\xb6\x6c\x5b\xa0\x64\x85\x00\x4c\x49\x5c\x6f\xf5\xf1\x02\x54\x6c\ +\xd3\xc0\x4d\xea\x6a\x61\xcd\xf9\x13\x23\x2f\xb6\x09\xc3\x37\xd0\ +\x3e\xc5\x8b\x58\x41\x85\x5d\xe9\xeb\x10\x1f\x1c\x27\xd6\xa2\x92\ +\xe2\xa9\x86\x29\xfe\xe2\xb8\x41\x4d\xbb\xfa\x85\xa5\xec\xa0\x89\ +\xc6\xa0\xf6\x98\x87\x22\xee\x7e\xd8\x89\x1b\xdc\x6f\x9e\xb7\xb3\ +\x8f\xbf\xd9\x1e\xff\xe2\x1b\xed\xe2\xe3\x0f\xdb\xc1\x1b\xeb\x76\ +\xa0\x0b\x31\x47\x74\x3c\xb5\xb9\xdf\x14\x40\x09\x2a\xe1\xc3\xa2\ +\x14\x03\x15\x3e\xdb\xe2\x7e\xc6\xc5\x37\xec\xb3\x8f\x8b\x7a\x53\ +\x16\xbb\x58\x81\x31\xa8\xc1\x8a\x10\xbb\x6e\x17\x42\xad\x3a\x45\ +\xa3\x42\x12\x81\xeb\x37\xe4\xc2\x68\x1b\x80\x9e\x85\x5f\x3f\x91\ +\xa6\x3a\x7b\x01\x08\xde\x8b\x29\xe2\x71\xf5\xea\xc8\x3e\x4a\x4f\ +\x5e\x30\xe3\xf9\x50\xc3\x56\x1a\x25\x45\x47\xb0\x0b\x30\xb6\x23\ +\xf9\xea\x0f\x67\x82\x0a\xa7\x71\x8f\x2d\xed\x56\x84\x1d\xde\x63\ +\xdb\x63\x9d\x63\x5a\x42\x8e\x1d\x16\xcc\x59\x29\x61\x1c\x90\x17\ +\x1d\x4f\x9d\x1d\xe8\xbc\xc1\x39\x86\x85\x43\xde\x02\xe8\xfe\x11\ +\x7f\xa0\xbe\x00\x63\x31\x2c\xa9\xfb\x42\x76\x65\xf1\xaf\x5b\x2f\ +\xb5\xd7\x59\x4c\x53\x0c\x16\xd7\x58\x68\xdb\x9c\xad\xfc\x5a\xc8\ +\xab\x0b\xc5\x63\xa1\xce\xe7\x00\x6e\xee\xca\x9f\x18\xf9\x7a\xa3\ +\xba\x89\x06\x75\x47\xa4\xec\xf6\x0e\xbc\xb7\xb4\x23\xfb\x7f\xd5\ +\xe2\x93\xba\x80\xb0\xa2\x9a\xfc\x47\x6a\x96\x2d\x6f\x4c\xb1\x2f\ +\x0f\x84\x0b\x86\xa6\xd0\xe7\x28\xb7\x4d\xe8\xb6\x49\xc9\x8f\x01\ +\xb2\x9d\xfc\xc7\xdc\xe2\x6c\xdb\xf1\xc0\x74\xd3\x16\x6a\x27\xfc\ +\xc1\xb9\x64\xf1\x0b\xfa\x74\x25\xaa\x7c\xc4\x76\xc1\x1e\x37\x51\ +\xc1\x3c\x75\x28\x91\xc8\x3e\xf3\x31\x21\x71\xe4\x8d\xec\x4b\x50\ +\xf5\x94\xda\xfb\x5b\x2e\x00\x34\xf8\xd4\xec\x90\xf0\x0b\x3e\x0a\ +\xad\xd4\xfd\xa0\x8d\xff\x54\xdb\xa8\xad\x5e\xe3\x64\xa7\x53\xc7\ +\x01\x28\x77\xb9\xbc\x12\xea\x7b\x23\xcf\x9b\x8e\x5b\xe5\x14\x23\ +\xa8\xf3\x73\x14\x3a\xf9\x18\xb2\x9d\x01\xc1\x54\xed\x48\x5d\xaa\ +\x18\xce\x46\xea\x24\x8f\x05\x9e\x0a\xbd\x58\xad\xda\xc5\x7a\xd5\ +\xce\x2f\x2e\xec\x74\xa8\x13\xfb\xa1\xce\xe9\xcf\x1d\x9e\xb6\x2f\ +\x7b\xf9\xb4\x3d\xb5\x79\xdc\xbe\xf5\xaf\x7c\x73\x5b\x1c\x1f\x6b\ +\x7c\x69\xac\xd1\xa1\xb4\xc1\x1d\x1b\x00\xd7\x8b\x9e\x61\x86\x02\ +\x0f\x0a\xc6\xcb\x85\x0e\xb7\xe3\xf6\xdf\xfc\xb5\x3f\xa1\x73\xe3\ +\x2f\xb7\x77\xbe\xeb\xf9\x76\xb8\x58\x6a\x18\xe9\xbb\x8d\x71\xcc\ +\x00\xe2\x3c\xa8\x63\xc1\x63\xc9\xf9\x6a\x44\x71\x14\xc5\x58\x67\ +\x24\xa3\x2d\x8b\x25\x1d\x14\xd6\x71\xec\x58\x17\xc9\xc4\xcb\xee\ +\x63\x5e\xb4\x23\xc7\x39\x51\xed\xe0\xd4\x90\xf9\xf6\xa1\x74\xd4\ +\xc4\xed\xb1\x10\xe7\x53\x9e\x4c\xe3\x7f\x3f\xe3\xc9\x39\xca\x01\ +\x29\x23\xf2\x15\x9f\x06\xcb\x58\x22\x0d\xf5\x8e\x90\x3e\xa3\xba\ +\x43\x98\x95\xa8\x3c\x09\xde\xec\x10\x5e\x36\xa9\x7a\x21\xed\x81\ +\x94\xd1\xbb\xc1\x83\xbd\x35\x99\xa1\xe7\x4b\x7b\x47\x4a\x1b\xb2\ +\x46\x21\x85\x21\x57\xec\xc8\x92\x7d\x61\x0d\x10\xf6\xde\xef\xf6\ +\xf7\x09\x3b\x11\x28\xef\x41\x27\x55\xf4\xf9\x67\x87\x28\x2f\xd0\ +\x79\x4d\xe2\xfc\xdb\x79\xce\x59\x03\xe5\x95\x7f\x11\x5b\x48\xd1\ +\x9d\x25\xa1\x8e\x92\x31\xc0\x18\xb9\x45\x4e\x7f\x63\xc8\x7e\x1f\ +\x79\x43\xf0\xf6\x33\x6f\x81\x4f\x87\xe0\x95\x52\x9e\x85\xae\x79\ +\x02\x26\x4b\x56\x8e\xba\xc3\x31\x7f\x70\x5b\x24\xa8\xae\xf1\x3d\ +\x8f\x6e\x42\xff\x5f\x1a\x7a\xce\xf5\xe4\xc9\xef\x9e\x9e\x0f\xaa\ +\xbc\x62\x1c\x3d\x94\x48\x01\x50\x97\x2f\xa6\x74\xb4\x29\x98\xe2\ +\x52\xee\x96\xbd\x14\x26\x3b\x27\xd8\xe8\x13\x1d\xaa\x92\x15\xd5\ +\x2e\xda\xb8\x66\x4a\x7b\x95\xe5\x32\xb0\x93\xd8\x9a\xbe\xa2\xec\ +\x69\x7f\x19\xba\x92\xc4\x11\x66\xc6\x8a\x30\x44\x72\x1e\xcf\x39\ +\xdd\xde\x88\x60\x02\x1d\xfa\xa3\x80\xbc\x9e\xbb\x78\x2e\x51\x7d\ +\x8a\x9f\xbf\xc4\x1d\xd9\xde\x4a\x6a\x4e\xe5\xf2\xfc\xc1\x12\x3a\ +\xfb\x92\x57\x7b\xa0\xf7\xb5\x75\x78\xa5\x5c\xdb\x56\x11\xd0\x33\ +\x2f\x0a\x13\xd9\x83\xad\x3c\x99\x6f\x47\xb6\x5f\xf2\x59\x67\xff\ +\x77\x9e\xfc\xc0\xb0\xa7\x8f\x62\xb9\x49\xf0\xdd\x30\x95\x15\x2d\ +\x0f\x6a\x64\x1f\x98\x07\x8a\x53\x1a\x4e\x09\xe4\xc1\x12\x81\x2a\ +\xc2\x6e\xde\x00\xa4\x5d\x4d\xc1\x94\x9f\xcd\x75\x97\x48\x1d\xfb\ +\x62\x62\x12\x43\x06\xc1\x37\x62\x2a\xf5\x78\x81\xc3\x11\xb9\x4f\ +\xc7\xf7\xb0\xfc\x0a\x2a\x46\x00\x96\x89\x0f\x0c\x0f\x20\x34\x96\ +\xd2\x68\xde\x13\x33\xbc\x34\xf7\x17\x72\x3f\x80\xb9\xff\xd1\xc9\ +\xb2\xdd\x7b\xe1\xa8\xfd\xf8\xbf\xff\xde\xf6\x73\x3f\xf3\x93\x9a\ +\x0b\x72\x24\x3a\x87\x20\x1a\x54\xd2\x0c\x33\xcc\x30\xc3\x0c\xbf\ +\xb1\xe0\xcb\xed\x19\x66\x98\x61\x86\xdf\x32\xb0\x37\x6b\x1c\xe7\ +\xc6\x23\x94\x1e\x77\x26\xbf\x56\x14\x16\x8c\x4e\xc0\x68\xfb\x7c\ +\xc1\x79\xe3\x02\xc3\x09\x13\x62\x9d\x59\xb9\xc1\xf3\xfa\xfd\x07\ +\xed\x5f\xfc\xa5\xbf\xd4\xde\xf3\xea\xdd\xf6\xbe\x97\x5e\x6a\x07\ +\x87\xba\xfc\x93\x9d\xe5\x8f\xb3\xf3\xcb\xf6\xc6\xfd\x0b\x4d\xf8\ +\x79\x65\xdb\x46\x75\xe4\xc2\x44\xf9\xf9\x75\xad\xf8\xf8\xd5\xe5\ +\x50\x21\x97\xa3\x44\x8d\xf1\xaf\xd6\x96\x31\xd1\x46\x17\xa6\xa0\ +\x35\xc9\xb7\x6b\xde\x50\xf5\x07\x3d\x72\x2e\xc2\xd9\x1b\x3f\x6e\ +\xfe\x86\x14\xd5\xe7\xa9\xb4\x95\x26\xeb\x2c\x46\xf8\x72\x44\x20\ +\xa3\xe7\xf9\x05\x76\x0c\xd6\x20\x1e\x73\xb9\x94\x29\x74\x93\xc5\ +\x5c\x8a\x5e\xa4\xf1\x2b\x1e\xd5\xd6\x5c\x48\xf3\xff\xa4\x21\x73\ +\x95\x1c\x57\xca\x79\x21\xd3\x19\xeb\xaa\x7d\x21\x07\x56\x1b\x40\ +\xc3\x58\xbf\xbc\x00\x2d\x1b\x62\xbf\xb8\x12\x44\xbe\x9e\xf3\xb3\ +\xc0\x58\xca\xc4\x8f\x5a\xfa\xc9\x8b\x6d\xa5\x48\xa4\x9a\x93\x4c\ +\x32\xb1\x61\xcb\x28\xa9\x70\x8d\x45\x37\xc4\x62\x7f\xd9\x47\x68\ +\x88\xb1\xe2\x0b\x59\x35\x46\xbb\x34\xfe\xbe\x6d\xbd\x6a\x8b\x47\ +\x1a\x4f\x9f\x3e\x6b\x97\xbf\xfc\xb8\x9d\x7d\xe4\x7e\x5b\xfd\xca\ +\x59\x3b\x78\xa4\x31\xc5\xa2\x0b\x41\xbc\x52\xc7\xf8\x82\xa2\xcb\ +\x88\xc4\x13\x25\x96\x75\x5c\x85\xb2\x40\x85\x4d\xe8\xe1\xc8\xe2\ +\xa7\x8c\xc8\x38\x79\xe1\x00\x4a\x06\xf2\x38\xa3\xec\x19\xd3\xe2\ +\x54\x69\xb1\xce\x99\xe0\xd6\x46\xac\x04\xe7\x1b\x06\x5a\x77\x17\ +\x9d\xfc\x68\x3b\x17\x9a\xd0\xc0\xa8\xab\x78\xa3\x1a\x8a\xcc\x53\ +\x32\x6e\x94\x74\x6c\xd8\x06\xff\xb0\xf5\x90\xdd\xaf\xc4\x09\x6c\ +\x0c\x36\x21\xda\x15\x10\xad\x48\x34\xc9\x28\xd9\x2f\x53\xff\x14\ +\x2d\x9b\x68\x8e\x69\xeb\x65\xf0\xeb\x5b\xbd\xaf\x45\x39\x4e\x45\ +\xaf\x0e\x75\xac\xcb\xec\x21\x85\x9b\x60\xf3\xe8\x32\x9e\x32\xe3\ +\xd7\xe3\xdc\x80\x65\xe3\x02\xdb\xc7\x6d\xde\x04\xa1\x3d\xd5\x66\ +\xee\x7f\x49\x6f\x19\xca\x8d\x16\x28\x8b\x4e\x2c\xa6\x5d\x6e\x03\ +\xcf\xd7\x6d\x75\x46\x6c\x8d\xa1\x95\x62\xf3\xa4\x5a\x52\x2f\x58\ +\x51\x06\xf1\x84\x34\xb2\xfa\xd3\x58\x65\xa9\x7e\x98\x61\xbc\xff\ +\x12\xd1\x61\x0d\x0f\x74\xe1\x1f\x34\x55\x4e\x42\xa6\x0d\x3d\x2e\ +\x75\xa5\x7c\x2f\x9a\xa9\x0e\x97\x3c\x5d\xa7\x7a\x51\x4f\x16\x01\ +\xc1\xb3\xe2\xa5\x17\xdf\x1e\x8b\xe7\x58\x10\x6e\x85\xee\xb3\xc2\ +\x07\x97\x6d\xad\x73\xef\xe6\xc1\x45\xbb\x12\xe5\x55\xa8\x57\x0f\ +\x56\xf2\x13\x9e\x09\x15\x87\x05\xb6\x25\xe5\xd1\x57\x7c\x5c\x49\ +\x1d\x37\x22\xda\x3b\xd4\xd4\x10\x3f\x46\x48\x1d\xbc\x8f\x1f\xa8\ +\x10\x1a\xc6\xb0\xc3\xef\x41\xa9\x82\xe6\xb1\x25\x08\x1a\xe5\x99\ +\xcb\xfe\xf0\xe2\x15\xe8\x7b\x9a\x32\x0a\xeb\x5c\x46\xca\x18\xf2\ +\x13\xbc\x7e\x52\x2d\xcb\x57\x5c\x1f\xef\xe6\x02\xaa\xbc\xc8\x05\ +\x50\xc3\x5d\x2b\x50\x5c\x79\xf5\xc3\x13\x2a\x8c\xa7\x41\xf8\xaf\ +\xaa\x2b\xbf\xfa\xf1\x62\xbd\x69\x8f\xcf\x57\x7e\xfd\xa3\xf6\x54\ +\x3b\x5e\x2e\x35\x86\xaf\xda\xef\x7e\xee\xb4\x3d\xf7\xfc\x9d\xf6\ +\xf8\xdf\xfc\x4c\xfb\xd6\x6f\xff\x3e\x9d\xf3\x0f\xdd\x3f\xbd\x04\ +\xb7\x25\xa5\xa2\x33\xcc\x90\x23\x4f\xa3\xdf\x94\x1f\x1a\xfd\xc0\ +\x8f\xfe\x60\xfb\xe1\x7f\xf3\x2d\xed\x6d\x5f\xf1\x74\xbb\x75\x7a\ +\x57\x87\x1d\xb6\x38\x56\xcc\x79\x5c\x85\xff\x0e\x48\xb5\x20\xe1\ +\xb8\xcc\xcd\xe0\xfc\xa9\xf1\xf7\x23\x73\x2b\x34\x09\xf0\xe4\xc9\ +\x63\x3b\x7e\xdc\x00\xcf\xf7\x28\xe6\x8a\x89\xaf\x15\x53\xde\x01\ +\x46\x1d\x25\x1a\x7c\xec\x72\x3c\x73\xee\x66\xf1\x42\xa7\x59\x79\ +\x4e\x1b\xf9\xb4\xb9\xcc\xd0\x84\x2e\xa0\xec\x51\xee\x84\xa1\xdf\ +\x45\xc0\xf9\x4b\xf0\xaf\x12\xc2\x37\x20\x38\xfa\x08\x2e\x8e\xf5\ +\x5e\xd3\x1e\x24\x4f\x25\xe1\x63\x3b\xfe\xf4\x45\xf0\x40\xe9\x77\ +\xb1\x42\x04\x6f\x98\x4c\x3b\x10\x7e\xa4\x55\xe8\xc4\x1a\x8a\x77\ +\x5e\x04\x98\xd1\x61\x84\x28\x24\xac\x55\xa0\x33\x3e\x09\xa9\x8e\ +\x53\xaa\x12\x2f\x38\x22\xd3\x22\x6d\x7c\x1f\xb1\x08\xe5\xef\x42\ +\x7d\xd7\x0c\x0b\x24\x3e\x85\x81\x14\xa4\xbe\x60\x8b\x2e\x21\x4e\ +\xf6\x91\xd0\x7c\x21\xae\x6c\xde\x6f\xfe\x74\x9e\x24\x3c\xfc\xed\ +\x9f\x58\x5c\xf2\x22\xf6\xb7\x10\xa4\x60\x12\x33\x8e\xdb\x50\x20\ +\x9e\xca\xd9\x89\x36\x6a\xb3\x5d\x63\x11\x54\x7b\xf8\xbf\xce\x5a\ +\x60\x2b\x9d\x17\xd3\x9c\x3b\x12\xbc\xe5\x61\x19\xdc\xab\x42\x3a\ +\x06\xa9\x85\xe2\x0e\x5d\x48\xa6\xda\x3d\x88\x24\x3a\xe2\x42\x70\ +\xc7\xc6\xbc\x28\x36\x01\xbf\x1e\x8b\x8f\x92\xec\x53\x26\xb1\x88\ +\xe5\x03\x74\x26\x2b\x24\x70\xad\xab\x4f\xd2\x5e\xfb\xc7\xa6\x50\ +\x0d\x59\x51\xa6\x56\x7d\x31\x5d\x43\x40\x85\x7c\x17\x4a\x17\xff\ +\xa9\x86\xce\xbd\x36\xf1\xa2\xd5\xc7\xe8\xe8\x57\xc7\x48\x3d\xbc\ +\xc7\x11\x73\x0e\xcf\xa7\x22\x6b\xe4\xc9\x30\x5d\x0e\x23\x7c\xc4\ +\x56\xcd\x43\xa5\x69\x9a\xf4\xe0\x58\xa6\xe3\xb9\x36\x41\x53\x1f\ +\x4f\xbe\xb3\xaf\x53\x97\x7e\x6c\x2e\x2c\xcb\x09\x82\x4f\x8a\x24\ +\x78\xe1\x2b\xd6\xd3\xa4\xe4\x03\x93\x99\xa2\x24\x44\x6f\x5a\x1e\ +\xec\x23\xf4\xbd\x26\x12\xc7\x88\x3c\xf6\xc7\x8e\xa0\xe7\xdb\x09\ +\x40\x1d\xf0\x94\xd2\xf1\xa1\xf4\x89\x2d\x96\xa7\x38\xc8\x02\xca\ +\x49\x5a\xbc\x8f\x38\x78\x97\x1b\x4a\xbe\x13\x8c\xb6\x49\x1b\xea\ +\x5d\x40\x81\xa1\x03\x7e\x93\x5c\x5c\xb8\x11\x39\x34\x41\x85\x10\ +\xd5\x3f\xda\xac\x0f\x43\x5f\x17\x80\x4b\x5d\x1f\xdf\xb8\x71\xa3\ +\xdd\x7e\xf1\xac\x7d\xf0\x1f\x7d\x43\x3b\x3e\x3e\x68\x2b\x5f\x03\ +\xd8\x33\xb2\x09\x67\x98\x61\x86\x19\x66\xf8\x8d\x87\xe5\x1f\x17\ +\x24\x3f\xc3\x0c\x33\xcc\xf0\x25\x01\x4c\x2e\x3b\x30\x29\xad\x19\ +\xe7\x8e\x61\x80\xd2\x43\xcb\xf7\x73\x01\x93\xf5\x71\xa2\x0c\x4b\ +\x02\x5d\x5d\xb6\x76\x74\xd0\xfe\xf2\x7f\xfe\x9f\xb7\x93\x9f\xfc\ +\xa9\xf6\x87\xbf\xfa\xdd\xed\xd9\xa7\x6f\x35\x16\xc2\xb8\x10\xdf\ +\xe8\xa2\xf4\x8d\x37\x1f\xb5\x37\x1f\xaf\xda\x16\xdf\xbc\xa0\x71\ +\x66\x9e\x6c\x20\x60\xde\x0c\x85\x9f\x26\xde\xba\xb4\x5c\x2e\xda\ +\xe1\xe1\x42\x13\x6c\x5d\x58\xda\x47\xc8\xa4\x5b\xbc\x17\xd8\xd0\ +\xa5\xec\x89\x3c\x1f\xeb\x83\xf2\x7f\x64\xa6\xe9\x2b\xc6\x04\xf0\ +\x8d\x6b\x6e\x58\xaf\x7d\xb7\x36\x94\x9f\x0d\x88\x03\x31\x4f\x12\ +\x40\xe8\x41\x74\x97\x46\x51\x4a\x5c\x3f\x55\x86\xc5\x34\xbf\xda\ +\x51\xba\x23\xf1\x52\x79\xe1\x08\x74\x5d\xa1\x24\x64\xc9\x8b\x06\ +\xca\x33\x4f\xb9\xa2\xb2\x19\xea\xa2\x67\x00\xef\x73\xc3\xd8\x0e\ +\xb5\x2f\xdd\x46\xef\x1e\x06\xce\x42\x44\x73\x99\x16\xd3\xc3\xe6\ +\xb0\x51\x5d\x68\x1f\x5b\x4a\xea\x55\x8c\xd7\x82\x9d\x3b\x71\x3b\ +\xf0\x85\x07\x2a\xae\xc1\x4c\x48\x8e\x99\x4d\x88\x0b\xd6\xb8\x2c\ +\xf4\xfe\x85\x72\xa5\xa8\x71\xb4\x78\xb0\x6a\xab\xcf\x3c\x6e\xab\ +\x4f\x3d\x6e\xeb\x4f\x5f\xb4\xed\xc3\xb5\xc6\xe1\x46\x76\xed\xdf\ +\xec\x47\x2e\xf8\x7b\x21\x45\x13\x88\xcb\xd8\x5a\xf2\x0a\x51\xa1\ +\x9f\x8c\x3a\x3e\x6c\x07\x37\x8e\x54\x4d\x6e\x62\xc4\x8d\x0c\x32\ +\xd2\xe6\x29\xbb\x38\xc6\x4a\xb6\xdb\xcd\x4a\x26\x54\x24\xd1\xba\ +\xc8\x8f\x18\x3a\x9b\xd2\x16\x83\xd0\x5c\x50\xcc\x56\x45\xbe\xb2\ +\x04\x09\x3b\xa0\x5a\x5b\x67\x3b\x4a\x3a\xc7\xf5\x53\x3f\x71\xf5\ +\x0f\xc6\xd5\x7e\xf0\xbe\x61\x10\x39\x4d\x12\x52\x95\x0c\xc1\xc5\ +\xd0\xd7\x22\x59\x54\xf7\x2f\x1a\xa5\xec\x41\x8d\xc5\xcc\xd4\xf7\ +\x73\x0e\x98\x7e\x5c\xda\x56\xf6\xd4\x7b\x35\x33\x9e\x3c\x5d\x4a\ +\x7f\xa5\x63\x63\x71\xc8\x2f\xae\x23\x3f\x37\x43\x9a\x2e\xa2\x2f\ +\xdf\x38\x6b\x9b\x33\xfe\xab\x4a\x17\xd4\xdc\x28\x50\xfb\x18\x06\ +\x71\xb3\x23\xc7\x07\xc9\x5e\xe5\x28\x35\x4a\x16\x14\x63\x1f\x32\ +\x4a\x41\xdf\x58\x54\xca\xd3\x6c\x19\x8b\xe0\xee\x4b\xcb\x41\xb3\ +\x36\x13\xf4\xc0\xb0\x21\x78\x1f\x98\x13\x24\x63\x0b\x71\x90\x8d\ +\x4a\x84\x8e\x86\x5e\x84\x7c\x3c\x85\xc6\x0d\xe6\x58\x4c\xd3\xf9\ +\x91\xc5\x3d\xe8\xa5\x70\xb5\x8e\xa7\xe8\x58\xec\x13\x65\x9c\xb3\ +\xc8\xc6\x6b\x2b\xdb\x85\x22\xa1\x33\x2a\x0f\xe7\x33\xe1\x01\x8b\ +\x82\x92\xcb\xe6\xfc\xe9\x4b\x4c\x5e\x71\xeb\x27\xdc\x72\xe1\x8e\ +\x05\xe8\xb8\xfb\xa4\xa1\x39\x9d\x68\xe2\x5c\x24\x9d\xdb\x28\x7e\ +\x68\x76\xc2\xe4\xeb\x1d\x2c\xe7\xc9\x0b\x5d\x10\xdb\x80\x32\x5d\ +\x03\x61\x52\xea\xcf\xee\x58\xf3\x31\x81\xde\x75\x30\x43\x1a\xc0\ +\xa2\x00\xfe\xce\x40\x9f\xca\xc2\x4d\x1a\x3b\x74\x2f\xb3\xce\x6d\ +\x9a\x72\x99\x07\xbe\xc6\xab\x75\x63\x25\x0a\xba\x7e\xe1\xdf\x61\ +\xf0\xdf\x9e\x9c\xb7\x4e\x8f\x62\xd1\x8c\xbd\x7b\xba\xb8\xd9\x1e\ +\xdf\xba\x6c\x9f\xf8\xf0\xa3\xf6\xb3\xbf\xf4\x7a\xfb\xea\xff\xe4\ +\xf7\xb7\xdb\xa7\xa7\x53\x79\x0e\x32\xb1\x33\xcc\xe0\x83\x2f\x81\ +\x45\x1e\x5e\x29\x7a\x5f\x63\xfb\xcf\xfc\xd7\xff\xf7\x76\xfc\xe2\ +\xa7\xdb\x3b\xde\xfb\x72\x3b\xbd\x71\xaa\xb1\xb6\xd1\x71\xc9\x53\ +\x6a\x0c\x1c\x8d\xf6\x1c\x54\x7d\xdc\x02\x0a\x65\x49\x89\xbe\xc9\ +\xcc\x97\x5c\x12\xa7\x5f\x5e\x9b\x1a\xdf\xad\x79\x5c\x18\x39\xee\ +\x89\x5b\x73\xae\xd0\x73\x4a\x27\xab\xf5\xf0\x88\xc8\x5d\xda\x85\ +\xd2\xf6\x56\x71\xbe\x13\xfa\x37\x20\x9c\xdb\x90\xf3\xfb\xa3\xca\ +\x05\xf9\x2e\xa8\x72\x09\xe2\x38\x49\x8b\xef\x72\xd1\xe4\x47\x40\ +\xa4\x8b\x4a\x6d\x9f\x60\xbb\xef\xa4\x53\x5a\x3a\xca\x4f\xde\x6d\ +\x06\x52\x2e\xb7\xb0\xcb\xcf\x1b\x5c\xb6\x23\xd4\x86\x94\x0c\xe5\ +\x6f\xd5\x44\x8c\x4f\x80\x95\x4a\xfa\x79\xf8\xf3\x81\x5d\x5f\xfa\ +\x1c\xcd\x93\x11\x26\x0d\xdc\x34\xe2\x62\x5f\xa0\xa8\x1f\xf0\x58\ +\x17\x8a\x81\x4f\x5f\x48\xf6\x53\xb4\x3b\x5a\xdb\x39\x3e\x69\x8b\ +\x8f\x12\x33\x89\x91\xdd\x2a\x98\xda\xac\x37\x55\x8a\xde\xfe\xb8\ +\xa4\xdc\x3d\x46\x3e\x29\xbe\xc9\x87\x5c\xd6\xb0\x85\x3d\xe5\xa4\ +\xe5\xe1\x06\xc9\x1e\xcd\xd3\xf7\x63\x6f\xb3\x78\xeb\x98\x2e\x28\ +\x89\x5f\x6a\xa1\xe9\xf3\xc2\xec\x8d\x88\x33\x50\xab\x3d\xbe\xa1\ +\x24\x13\x8c\xbe\xc4\x09\x46\xc9\x10\x1b\xa5\x25\x1f\x9f\x69\xe6\ +\x7b\xad\x8e\x49\x6c\x09\xd5\x37\xce\x0e\x32\x76\xa8\x9f\x02\xf1\ +\xdd\xe4\xf1\xe9\x36\xa1\xd3\x97\x56\xb0\x82\xc8\xe7\x02\xd3\xdf\ +\x60\xc2\x39\x20\xca\xe2\x38\x88\xb0\x4e\x23\x17\x7a\xc4\xe4\x83\ +\x44\x59\x13\xa4\x8d\xd8\x88\xaa\x43\xf4\x48\x4e\x36\x42\xdb\xa1\ +\x34\x23\x1d\xa1\xfa\x9a\xec\xb1\x8b\x86\xde\x0f\x85\xb6\xa8\x43\ +\x48\x91\x84\x8f\x74\xc5\x9b\x0e\x75\x48\x02\x38\x8c\xa1\x14\x7c\ +\xc2\xa1\x9b\x2a\x8f\x60\x47\x97\x74\xd2\x5d\x67\x1f\x3d\xd3\x9e\ +\x4c\xf4\x4d\xc0\x5b\x1e\xfe\xa9\xaf\x5d\x15\x8a\x0c\x90\x03\x20\ +\x7a\x20\xf7\x85\x55\x99\xc9\x20\xde\x62\xea\x06\x7e\x62\x95\x64\ +\xac\xb7\x82\x68\x25\x76\x95\x54\x6e\xa6\x25\x94\x5d\xe9\x68\x97\ +\x00\x71\xf5\x93\xe1\xdc\x13\x3f\xdc\xc8\x6f\x2b\xe6\xc3\x92\x97\ +\x87\xab\xf6\xb1\xd7\x3e\xad\x79\xeb\x8d\xf6\xe5\xef\xfd\x5d\x7e\ +\x63\x81\xaf\xef\x22\xb7\x00\x7e\x86\x19\x3e\x37\xcc\x23\x65\x86\ +\x19\xbe\x70\xd0\xe7\xc6\x33\xcc\x30\xc3\x0c\x5f\x54\x50\xf3\xc3\ +\x5f\x25\xd4\x24\xa1\x4f\x16\xc6\x38\xd7\xcd\x39\x47\xfe\x57\x53\ +\x66\xce\x88\xc7\x0b\x12\x23\x0b\x66\x9a\x0c\xff\xf4\x0f\xfd\x58\ +\x7b\xed\x83\xdf\xd3\xde\xf3\xca\xd3\xed\x6d\xcf\xde\xf3\x45\x9f\ +\x7f\xd5\xaa\xb3\xee\xd9\xf9\xba\x3d\x78\xbc\x6a\x9b\xed\x5a\xf9\ +\x37\xc2\x0c\xe2\x1b\xa1\x42\x85\x26\xfa\x4e\x35\x29\x4f\x31\x0e\ +\x85\x5e\xec\xb0\xae\x90\x89\x77\x08\x26\xf2\xf1\x24\x3c\xbc\xe2\ +\x83\x0d\xfd\x8e\x6f\x78\x45\xf1\xda\x7c\x03\x9b\xbb\x3b\x51\x0f\ +\xd2\x8a\x32\x31\x23\x90\x31\xea\x6b\x80\xee\xf8\x49\xa8\x32\x28\ +\x93\x6a\x2f\x85\xfe\xaf\x34\xa8\x74\x3c\xf5\xc4\xaf\x4c\xe1\x55\ +\x3f\xfc\x0b\x95\x0a\x0f\xda\x16\x1e\x9d\x60\xbc\xc0\x32\x50\xbe\ +\xba\x35\xfe\xab\x40\x32\xd7\x84\xdc\x84\x47\x66\x21\x45\xcd\xf1\ +\x4d\xf9\x7e\xc1\x99\x59\xcc\x87\x00\x1b\x90\xfc\xa0\x2b\x19\xf0\ +\x05\x9b\xf8\xba\x10\xb7\x48\x75\x54\x6f\x3f\x95\x06\x44\xa5\x3b\ +\xda\x0e\x15\x01\x7c\x5d\x8f\x2e\x81\x7e\xb9\xf2\x42\x4a\xe8\xf9\ +\x3b\xa7\x8a\x1b\x17\xfe\x21\xfb\x17\xa4\x64\x90\x4e\xdd\xe7\x57\ +\xfe\x6d\xdf\xbc\x68\xab\x4f\x9c\xb5\xf3\x8f\x3d\x6a\x8f\x7f\xf9\ +\x51\xbb\xfc\x95\x8b\xb6\x79\x93\xa7\x77\xe8\x90\x8d\xf2\x6a\xd3\ +\x98\x22\x27\x17\x7b\x96\x89\xb1\x07\x51\x86\x36\x0a\xa2\x2a\xae\ +\x83\xfc\xe9\x37\x3a\xae\x32\x51\x1f\xc6\x10\xfb\x09\xcc\x5f\x07\ +\x3b\x43\xda\xed\xc3\x26\x36\x6e\x70\x06\x1f\x7e\xe9\x93\x80\x5f\ +\x32\x01\xee\x24\x09\x93\x0b\x41\xac\xb7\x09\xd1\x29\x3b\x53\x1f\ +\xef\x53\xea\x28\x64\x87\x72\x37\x5f\x94\x45\xc6\xd8\xf7\x50\x21\ +\x63\x01\x7b\x64\x16\x24\xef\x06\xc3\x27\x76\x07\x5a\xcf\x56\xd2\ +\x35\xb0\x53\xf5\xd1\x23\xf6\xe5\xce\x71\xc6\xd8\x28\xde\x6c\xd8\ +\x2c\x41\xf3\x18\x08\x3d\x0e\x84\x41\x17\x37\x6a\xd1\x51\x3d\x5e\ +\x9b\xb8\x7a\x78\xd9\xb6\xe7\x2b\xed\x5e\x9d\x37\xd4\x36\x8f\x0b\ +\x6e\x78\x71\x6e\x11\x8f\x1f\xf7\x87\xa8\x92\xcf\x2b\xde\x87\x08\ +\xa1\xb3\x03\xe8\x3e\x51\x3e\xfb\x48\xef\xbe\x92\x6e\x1d\xb8\x59\ +\xe9\x3c\xe6\xa7\xc0\xe2\x09\xb6\xad\x17\x9e\x02\xb9\xb1\x5d\xe8\ +\x7a\x28\x0e\xaf\xfc\x8b\x7e\x86\x72\x4e\x93\x5d\xb1\xe3\x97\xfb\ +\x51\x66\xbd\x76\xd2\xaf\x1d\xf5\xa2\x15\xb2\x7c\x54\xf6\x62\xad\ +\x31\xaa\x32\x5d\xde\xa3\x75\x5b\xeb\xfc\xb8\xe2\x35\x94\xc2\xb5\ +\x9f\x1a\x13\xff\x58\x6d\xbf\x10\x4f\xbd\xfc\x24\x5a\xe0\xf6\xb1\ +\x10\x6a\x59\x76\x3f\xad\x26\xbe\x2f\xb0\x11\x57\xe8\x85\xb3\xd0\ +\x63\x67\x71\xd2\x7e\xfc\x1f\x1d\xc8\x53\x6a\x6f\xaa\x0c\x1d\x57\ +\xeb\x07\x3a\x96\x1e\x5d\x4a\xaf\x58\x17\x2c\x4e\x67\xdf\x28\x1b\ +\x37\xf1\x94\xe6\x0d\x9c\xda\x67\x4a\xf8\x18\x43\x67\xe4\x38\x19\ +\x74\xe6\x21\x99\xd7\x90\xfa\xf1\xbc\x30\xb1\xf4\x1d\xc4\x19\xc4\ +\xd2\xa7\xf9\x14\xa2\xfa\xcf\xfd\x9e\xf6\xca\xa3\x92\xda\x52\xe3\ +\x89\xef\x09\xc6\x95\x0b\x8b\x02\x03\x86\x72\x02\x06\x1b\xb9\x6d\ +\x27\x9f\x3e\x83\x6f\xa9\x83\x09\x70\x1b\x45\xb9\x01\xa4\x3d\xd7\ +\x56\x3c\xa5\xa6\x7d\xb5\xd2\xbe\xbc\xb8\xe4\x3b\x6e\xdb\x8e\x14\ +\xff\xac\x5d\xb6\xdf\x75\xf3\xa4\xbd\xfd\xde\x71\xdb\x7e\xf4\x93\ +\xed\x3b\xbe\xf9\x7b\x95\x97\x81\x47\x66\x21\xf5\x83\xd2\x98\xb1\ +\x3a\x33\xfc\x36\x85\x1c\x04\x26\x8c\xfa\x58\xa8\xfd\xd0\xf7\x7e\ +\x47\xfb\xd8\x9b\xff\xb2\xbd\xeb\x3d\x2f\xb5\x93\x93\x9b\xfa\xbe\ +\x64\x0c\xe9\xdb\x8d\x71\xa3\x81\xc8\x51\x10\x39\x73\x90\xea\xa0\ +\xf2\x96\x03\x35\xa4\x82\x3a\x66\xb0\xeb\xfc\xca\xfc\x4b\x8c\xb7\ +\x70\x0f\x1e\x8a\xde\xb6\x49\x47\x52\x3a\x43\x67\x80\xf0\x2c\x2c\ +\x53\xd4\x2d\x52\x08\xdf\x61\xbc\x5a\x77\x23\x66\xab\x63\xa0\x62\ +\x3b\xad\x32\x85\xa9\x0c\x28\xb1\x74\x29\xa3\xc8\xdb\xaf\x21\xef\ +\x01\xa5\x56\xef\x8c\xe0\x38\x03\xf8\xeb\xc3\x75\x09\xdf\x78\xea\ +\x06\xde\x67\x1f\x14\xe6\x23\x5b\xc8\x36\x87\xe4\x34\xea\x53\xbe\ +\x22\x4e\x23\xa6\x79\xab\x95\x0c\xb1\x3b\xee\xd5\x27\xd4\x65\x07\ +\xaa\xec\x04\x09\xc8\xa5\x0b\x3a\xfa\x87\xce\x73\xaa\x10\x07\x08\ +\x3f\xa7\xe9\x10\x6d\x8c\xef\x53\x30\xe6\xe8\x7c\xd7\xa5\xce\xf3\ +\x0f\x7a\xa9\x90\xfa\x40\x35\x16\xf1\xa7\x3f\xdc\x76\xa9\x12\x07\ +\x56\x58\x8a\xa2\xc5\x22\x30\x41\x86\x06\x84\x39\xc6\xc0\x48\xcb\ +\x32\x21\xb5\x28\x49\xa9\x77\x6a\x52\xf3\x82\xfc\x82\x71\x1a\x4d\ +\x4b\x60\x86\x58\xdf\x25\xb4\x97\x1e\x08\x8a\xcd\x9b\xfa\xc3\x0b\ +\x68\xb6\xd1\x1f\xfa\xbe\xd6\xb1\xe7\x3d\x2a\x75\x35\xd7\x2e\x59\ +\x5e\xe5\x2f\xb0\xda\x75\x08\x5d\x78\x09\x64\x70\x1c\x6b\x44\x63\ +\xc2\xa4\x98\x81\x06\xf9\xc4\xdc\xd3\x16\x12\x4d\x91\x34\xda\x75\ +\x4e\x40\xf6\x86\x8f\x1d\x44\x29\xc2\x59\xb1\xa0\x92\x02\x86\x98\ +\x63\x9d\xe0\x7b\x9d\x0a\xa5\x17\xa9\xff\x16\x74\xa3\x4a\x6f\xaa\ +\x7e\x92\x03\xdc\x50\x6b\xcc\x0e\x65\x9d\x3b\x02\x85\x13\x94\xc1\ +\x83\xcc\x7b\x44\xa3\x9f\xd1\xf3\xa4\x5a\xb8\xed\xf4\xbf\x36\xe2\ +\xb8\x1f\xdf\x82\x76\x5e\x9b\x43\x39\x41\xc7\xbe\xc1\x1e\x5a\xea\ +\x95\xac\xf5\xc9\x04\xd8\x29\x84\x9d\x74\x52\x0b\x08\x20\x41\x18\ +\xf9\xf7\xa0\x3b\x87\x2d\x8e\x0c\xc6\x94\xbc\x41\xf2\x39\xaf\x20\ +\xb3\x97\xb7\xbb\x06\xc5\x40\x0b\xb0\x05\xd4\x7e\x0c\x69\x1f\xc6\ +\x18\xe1\x92\xd2\x50\xe7\x60\xb5\x77\xcc\x4c\x2e\x13\x84\xc2\xf9\ +\x95\xc4\x79\x97\x72\xb5\x69\x07\xa1\x37\x7a\x88\xa1\x1b\xb1\x32\ +\x71\x5c\xc0\xa6\x2e\xcb\x99\x72\xc3\x25\xef\x4f\x48\xe1\x9f\x16\ +\xd3\x1a\x59\x92\x3d\xee\x79\xe3\x40\x6b\x47\x87\x27\xed\xe9\x17\ +\xce\xdb\xdf\xff\xd0\xff\xd0\x1e\x3d\xfc\xa4\x2f\xa9\xf3\x2a\xc1\ +\xbe\xd5\x86\x19\x66\x98\x61\x86\x19\x7e\xe3\x60\x7e\x42\x6d\x86\ +\x19\x66\xf8\xe2\x85\x9a\x23\x7e\xbe\xa0\xb9\xa4\x27\xb1\xd7\xc0\ +\x5b\xe9\x77\xca\xd8\xe7\x99\x9b\x5e\x97\xcf\x7a\x66\xc9\x32\xf2\ +\xc1\xc7\x09\x97\x11\x4a\x97\x47\xed\x4f\xff\x9f\xfe\x2f\xed\xdd\ +\x8f\xdf\x68\x7f\xe0\x2b\x5f\xf5\xd3\x69\x71\xd3\x80\x87\x25\x36\ +\xed\xf5\xd7\x1f\xb5\x07\xe7\x17\x6d\xb3\x5e\x29\x06\x17\x67\x32\ +\x64\x05\xe3\x95\x43\x79\x91\x18\x2a\x51\x26\xd4\x07\xed\x70\xb9\ +\x10\x6a\x62\x9d\x72\x47\xf9\xf9\x75\x71\xa9\x47\xe1\xac\xcc\xb6\ +\x53\xc7\x2b\x22\xe3\xd5\x81\xbc\x42\x2e\x7c\x5d\x77\xb9\x50\xb3\ +\xfe\xaa\x47\x9e\xe4\x40\x83\xd2\x41\x12\xe0\x0b\x8b\x28\x21\x0c\ +\x4c\x76\xc5\x04\x08\x46\x25\xd4\x89\x05\x03\x9e\x8e\xe3\xdd\x84\ +\x47\x0a\x7e\xa8\xca\x49\xf6\x5a\x92\xec\x57\xd8\xab\x0d\xe0\x14\ +\xc0\xe9\x0e\x48\x41\x77\xfa\xa2\x57\xb8\xe0\x26\xb7\x70\xc1\x85\ +\x6a\xde\xa4\x67\xc1\xc0\xbc\x28\xd7\xc5\x3c\xf1\x12\x34\x32\x3b\ +\xa6\xcc\xd2\x38\x86\x39\xd1\x2a\x0b\x55\xf1\xae\x4d\xfa\x38\xa7\ +\xea\xd7\xdb\x9b\x09\xc4\x2c\xd0\x99\x84\x1d\x63\xc4\xa6\x1a\xe8\ +\xc6\x72\xe8\x79\xf8\x7e\xe1\x09\x48\x41\x17\x32\x7e\xfc\x0a\x3a\ +\x5e\x4b\x77\xff\xa2\xad\x5f\x3f\x13\xf2\xaa\xba\xcb\xd6\x1e\x6b\ +\x0c\xb1\x20\x41\x9b\xdd\x7f\xd0\x44\x42\x54\x01\x09\x5d\x4c\x26\ +\xbc\xc2\x6f\x79\xa4\xf1\xc5\xbe\xf0\xcd\xf8\xc3\xb6\x38\x3d\xd6\ +\x7e\x89\xc7\x06\x19\x37\x7e\xca\xd2\xf9\x22\xb3\x8b\xa0\x28\x0b\ +\x49\x19\x77\xe2\xdc\x2b\xec\x5f\xc4\x92\x9d\x01\x0d\x3c\xc8\x27\ +\x65\xa0\x64\x3e\xae\xb8\x24\xfb\x05\x86\x0d\x4c\x77\x8b\x25\x28\ +\x36\x03\x83\x22\xe8\x0b\xf8\x1c\x03\xb0\x5c\xa2\x62\xda\x01\xdc\ +\x26\x36\x52\x9c\x93\x2d\xe2\x22\xba\x49\x82\x95\x19\x4f\x89\xed\ +\x8c\x73\x20\x2a\x65\xb7\x18\xcf\xa1\x83\x7a\x91\x14\x99\xb1\x0e\ +\xe6\x31\xd9\x8f\x5b\xf8\x3c\x16\xfc\x5f\x58\xbd\xa1\x6a\xc6\xf9\ +\xba\xad\x3e\x73\xde\xae\x1e\xeb\xbc\xc1\xa2\x95\x0f\x55\x25\x59\ +\x27\xd8\xe8\x02\x2b\xc4\xab\x7e\x84\xb5\x35\x92\xe8\xcb\x89\xb7\ +\x3e\xc4\xf0\x2f\x1e\x3f\xda\x45\x2c\x23\xb2\x68\xf5\xab\x3e\x41\ +\x95\x67\x1b\x63\x8f\x1b\x28\x36\x58\x3d\x1d\x63\x0b\xd9\x0e\x36\ +\x92\xa8\x9f\xc6\xb0\x17\xd2\xb8\x0f\xae\x31\xeb\x57\x39\xd6\x82\ +\x9d\xce\x3f\x5e\xb0\x5b\x29\xd6\x46\x31\xb1\xb3\xc8\x26\x1f\x3f\ +\x89\xc6\xb9\x49\xbe\x07\x3c\x49\xc6\xd3\x97\x7e\xa2\x4c\x3a\x68\ +\x1d\xfb\xb5\x22\x2d\x75\x1c\xfb\xa5\x17\xba\xfe\x22\xd8\x10\xd1\ +\xa5\x9f\x79\xf9\x79\x11\x19\x7f\xca\x15\x72\x5e\xc1\x46\xbf\x12\ +\x4b\x9c\x32\xe8\x38\x70\xe3\x94\x78\x67\x46\x3f\x3a\x2d\x19\xa2\ +\x3c\xf0\x05\x13\x97\x60\xbb\x20\x0d\x2e\x43\x7c\x88\xbb\xde\x11\ +\x3b\x38\x53\xed\x0f\x97\x41\x8d\x50\x29\x29\x1f\xef\x73\xb3\x9c\ +\xa7\xa8\xf3\x54\x90\xd4\xc1\x15\x63\xb0\x73\xb7\x01\xf0\x8e\x28\ +\x86\x6e\xdb\xb5\x06\x54\x8c\x5d\x8b\xf2\xa8\x4f\x39\x7f\x2c\x55\ +\xee\xf1\x11\xdf\x65\x87\x3a\xfd\x6f\xda\xe1\xf6\xb8\x2d\x8e\xb6\ +\xed\xc3\xbf\x72\xd6\x7e\xfa\xe3\xaf\xb7\xff\xf8\x7f\xff\x1f\xb5\ +\x1b\xfc\xc3\x3e\x9d\x49\x21\x04\x8a\x8a\x67\xa4\x19\x7e\xbb\x03\ +\xe3\x97\x11\x74\xa5\xb9\xd2\xa3\xd5\x61\xfb\x53\x7f\xee\xff\xdc\ +\x5e\xfd\x9d\x87\xed\xc5\x57\x9e\x6f\x87\xc7\x1a\x3b\x3a\x80\x6b\ +\xec\x7b\x3c\x7a\xf8\x24\x8f\x90\xc7\x94\x19\x01\xb1\xe0\x49\x8d\ +\xe4\x15\xb3\xd0\xa0\xf5\x7f\xd2\x8a\x47\xe7\xe3\xdb\xfa\xb0\x73\ +\x3e\xee\x7c\x21\x9b\x68\xc1\xc8\x8f\xc0\xf7\x0e\x10\x69\x00\xe7\ +\x47\xbf\x6e\x8d\x1f\x25\x30\x07\xf4\xf9\xd2\x41\x33\x7e\xd4\x85\ +\x1f\x50\x51\x99\x2a\xcf\x75\xf0\x96\x80\x1c\x19\xac\xb3\x3e\x19\ +\xf3\x03\x74\x5b\x42\xb1\x64\x2f\x28\x1f\x7f\x85\xd3\x77\x29\x03\ +\xf1\xbd\x2f\x28\x7b\xb0\x91\x0e\xbe\x3c\x4d\xe8\xd6\x58\x31\xb5\ +\x1a\x91\x5a\x76\x8d\x14\x76\x49\xa8\x7d\xe1\x82\xe2\xa4\x13\x50\ +\x4e\x56\x65\x7b\x7d\xe2\xb6\x38\x16\x81\x75\x14\x27\xf0\xf9\x52\ +\x16\xf9\x57\xb8\x00\xf9\x57\x06\x53\x6a\x3e\x9d\x31\xfd\x83\x22\ +\x1c\xf8\x0e\xe0\x5c\xaa\xef\x3a\x7c\xbc\x68\x14\xe1\x04\xf0\x91\ +\xc3\x6d\x40\x36\xc5\x92\x5b\x08\xca\x12\x3d\x87\xd8\xad\xb6\xa1\ +\xb7\x43\x8f\xd1\x37\x64\x9c\xe2\x83\x43\xf8\x5a\x11\x58\x9b\xcd\ +\x6c\xce\x83\xa4\xb8\xee\x4f\xc9\x8c\xa3\x8c\x1f\x79\xc2\x17\x17\ +\xd7\x8a\x31\x97\x5a\x5b\x8a\x55\x9e\xe8\x91\x18\xa7\xfe\xbe\x2c\ +\x5e\xf6\xc1\xcd\x10\x47\x17\x12\x74\x02\xdb\xa9\x40\x41\x54\xd0\ +\xb0\x9f\x63\xaa\x47\xf0\xd4\x39\x8e\x5d\xa4\x38\x56\x3c\x1e\x85\ +\xbd\xad\x24\xf1\x89\x04\xde\xb2\x35\x51\xb4\xe5\xa8\x61\xc0\xc8\ +\x0b\xd4\xa6\x88\x07\x0d\xdf\x88\xc0\x79\x26\xf3\x3a\x43\x9c\x23\ +\xb0\xd0\x77\xae\x8b\xb5\x55\x9a\xf8\xf4\x2b\x05\xa4\x6c\x69\x4c\ +\x79\x70\xe8\x1e\x43\x3f\x09\xd0\x8e\xfd\x03\xd0\x1e\xca\x8d\x2e\ +\x0d\xc1\x63\xdc\x3c\x3a\x48\x32\x80\xd8\x8a\x03\x04\x0d\xa5\x79\ +\x92\x1e\x6f\x02\xf2\x8c\x3a\xe4\x02\xb7\x36\x6d\xe5\x12\x3d\x9a\ +\xc1\x92\x2b\x28\x7e\xea\xa5\x80\xc9\xfb\xb3\x41\xec\x8d\xb7\x74\ +\xbc\x46\x4f\x5d\x7c\xdc\xd2\x37\x99\x1f\x37\xbb\x7a\x87\xc2\x8d\ +\xa5\x07\x25\x8d\xbe\x34\x87\x4a\x24\x64\xa7\x8a\x57\x0b\xc7\x40\ +\x9d\xbf\xb1\xe1\x17\xed\x9b\xec\x4f\x42\xda\x07\x97\x1d\x6f\xc5\ +\x8e\x3e\x8f\x7a\xf3\xb1\xa8\xd1\xb6\xd4\x35\xf4\xfd\xb3\xcf\xb4\ +\xd5\x1b\xb7\xda\xef\xfc\xaa\xdf\xe7\x53\x61\xfd\xf8\x32\x60\x27\ +\xd2\x0c\x33\x5c\x0b\xf3\x28\x99\x61\x86\x2f\x1c\xcc\x0b\x6a\x33\ +\xcc\x30\xc3\x17\x37\x7c\xae\x6f\xfd\x98\x65\x06\xec\xf9\xee\x67\ +\xb5\x7c\xad\x72\x00\xe4\xd2\xed\xdb\x46\xb0\x4d\x09\x1f\xcf\xb0\ +\xc5\x68\x52\x7d\x79\xfe\xa0\x7d\xe7\xdf\xf9\x60\xfb\xe8\xb7\xfe\ +\xed\xf6\x07\xde\xf1\x6c\x7b\xdf\xdb\x5f\x6a\x87\x47\x0b\x4f\xe8\ +\xb9\x08\x7d\xf4\xf0\xac\x7d\xe6\xfe\x59\xbb\x5c\xad\x74\x71\xce\ +\xaf\x08\x99\x0d\x57\x3c\x4d\x97\x99\x18\x1b\x43\x86\xd6\x0d\x77\ +\xfe\x7c\xdf\x4f\x1d\x60\xe7\xe2\xb8\x6e\xb4\x24\x4f\x5e\x2f\x4c\ +\x65\x3e\xdf\x88\x31\x8a\x97\x3e\x7e\xd1\x19\x79\x48\x88\xc3\x44\ +\xdc\x37\x77\x58\x4c\xe3\x15\x6a\xd9\xa1\x5c\xa8\x3d\x01\xe8\xb2\ +\xbf\x7b\x19\x86\x88\x69\x5d\x22\x89\x75\x24\x2a\x3f\x16\xd3\x74\ +\xa1\xc1\x0d\x56\xf1\x57\xfc\x6f\x9a\xd7\x69\x64\xa7\xce\xf2\xab\ +\xcd\x99\x13\xdc\x35\xaa\x5f\x16\xeb\xbe\xe6\xa6\xf7\xc2\xf5\x15\ +\xe6\x13\x27\x8d\xff\x53\x12\xdd\x26\x8d\x57\xc2\xc9\xce\x0d\x77\ +\x6e\xda\xaf\x37\xbe\x99\xef\x9b\xe6\x52\xb1\x08\x47\xd7\xc3\x3b\ +\xb8\xa9\xca\x55\x59\x2e\x9f\x72\x60\x43\x32\x72\x99\x14\x42\x48\ +\xc5\x43\x2c\xb8\xc1\x61\x7a\xa2\xff\x52\x26\x64\x86\x0d\x40\x70\ +\x36\xe2\x91\xaa\x14\x5f\xa1\xab\x8d\x1b\x16\x0d\x54\xb1\xc7\x1a\ +\x2b\xf7\x57\x6d\xf5\xfa\xb9\x17\x54\xd6\xe2\xaf\x58\x44\x63\x71\ +\x81\x7a\xd3\x0e\xe2\x27\x46\x35\xaa\x5e\x82\x9d\x02\x6d\xb4\xad\ +\xdb\xb3\xa1\x8c\x9f\xe5\xb1\xf6\x0f\x0b\x39\xda\x2f\x5b\xe1\x82\ +\xff\x3a\x3a\x46\x66\xdc\xe5\xd8\x73\x05\x05\x59\xf7\x8a\xef\x78\ +\x53\xd0\xe0\xf1\x67\x2b\xa3\x2b\x97\xb6\x94\xcd\x2a\x75\xb8\x92\ +\xd3\x2f\xf2\xa2\x49\xd9\xfc\x08\x93\x6c\x13\x41\xbc\x0f\x93\xfa\ +\xe6\x0f\xbc\x35\xa1\x13\xfa\x66\x10\xa2\xd3\x89\x16\xb8\x16\xe9\ +\xb3\x5f\x62\xf7\xf6\x7e\x0a\xb6\xea\xea\x4f\xd6\xd3\x17\xe4\x54\ +\x2a\x75\x41\xf1\x05\xa3\x2f\x63\x21\x5c\xa2\x8e\x01\x18\x16\x98\ +\xfd\x0a\x17\x5e\xe9\x6a\xe7\x04\xd5\xe5\xe2\x8d\x8b\xb6\xbd\x7f\ +\xd9\xae\xd6\x6b\xb5\x4b\xe3\x9b\xb2\x3d\x6e\xc5\xc0\x43\x25\xd3\ +\x36\x57\xcd\x81\xd9\xaf\xc4\x92\x4d\x4a\x22\x46\xdd\xc4\x00\x43\ +\x11\x80\x87\x02\xa8\xc4\xbf\x0e\x57\xff\x19\x59\x68\x32\x9f\xf6\ +\xe4\xeb\xd7\xc7\xd3\xc2\x5b\xda\xe0\x39\x4e\xf1\xc7\x4f\xc7\xe1\ +\xf6\x72\xdd\x16\x2c\x8e\x71\x9e\x61\xb1\x8c\xe3\x95\xd7\x37\x4a\ +\xf6\xd3\x6e\xe8\x58\xcc\xca\x05\x3a\xef\x3b\x21\x0b\x6b\x5e\x2c\ +\xe7\x58\x5e\x49\xbe\x8c\xd8\xd8\xbd\x40\x9e\xf5\xe8\xc7\xaf\x3e\ +\x1d\x29\x5f\xb4\x1f\xe7\x20\x50\x14\xa8\x03\x3d\xc1\x22\x0b\x69\ +\xb4\x59\xc7\x1f\xf5\x73\xdd\x5c\x27\xd9\xe9\x33\xfa\xd4\xce\x7c\ +\xcc\xed\x02\x31\xe8\x67\x78\x12\x17\x21\x46\xb4\xeb\xaa\x12\xe6\ +\x07\x5a\x4c\x97\x03\x88\x16\xfb\x4d\x89\x2a\x19\x45\x44\x19\x31\ +\x56\xd0\xa7\x8f\x8c\x7e\x6a\x56\x49\x8a\xa6\x80\x73\xc4\x67\x17\ +\x68\x78\xc5\x11\xa8\x77\x4d\xad\x1a\xc0\x6e\xc9\xef\x30\xea\x7f\ +\x8f\x39\x95\x4b\x5f\x2d\xb4\xf1\x03\x90\xc3\xc3\xa5\x17\xd7\x78\ +\x8b\xe8\xcb\x37\x0f\xdb\x87\x75\x5e\x7b\xed\xc3\x9f\x6c\xe7\x77\ +\xee\xb4\xaf\xfa\x9a\x2f\xd7\x18\xe1\x8b\x20\xcb\xa6\xa2\xc4\x4a\ +\x56\x64\x86\xdf\xb6\xc0\xde\x67\x86\xb4\x6e\xcb\xc5\x49\xfb\xc6\ +\x6f\xf8\x73\xed\x5f\x7f\xfa\xbb\xda\x7b\xbf\xea\xed\xed\xf4\xe6\ +\x5d\x1d\x82\x3a\x2f\x70\x1c\x72\xfe\xd1\xd8\xf1\x79\x88\xef\x26\ +\xf1\x31\x6e\x22\x3f\x12\x5c\x1e\xb1\x99\x06\xe5\x54\x4b\x16\x9f\ +\x77\xc9\x67\x74\x08\x63\xd7\xf1\x5d\x38\xe8\x1d\x31\x3e\x91\x14\ +\x7f\x0d\xec\xea\x35\xaa\x55\x4f\x3f\xd5\xab\xf3\x0b\x4f\x70\xba\ +\xde\xb6\x45\xd9\x14\xe4\xef\x62\xa1\xbf\x1f\xb2\x60\xdb\x30\xd7\ +\x91\x81\x22\x3e\x1d\x0d\xe9\xd8\x65\x81\x55\xa3\x42\x60\x51\xc9\ +\x8e\xdf\x80\xc1\xf8\x80\x34\x94\x4e\xb5\x52\x22\x46\x26\x74\xae\ +\x8d\xfc\xe2\x10\xae\xba\x85\x0d\x18\x54\x01\xc9\x98\x0c\x75\x8d\ +\x90\x4e\x04\x4e\x22\xb6\xb9\x84\x6b\x04\xd2\xc2\xcc\xd6\xa1\x44\ +\x6c\x9c\x31\x7b\x73\x42\xe1\xaf\x0b\xed\x8c\x60\x6c\x94\x97\x7d\ +\xe2\xfc\xca\xbe\x89\x45\x34\x34\xfa\x5e\x12\x75\x39\x3b\x54\x71\ +\x25\x58\x16\x13\x1b\x2c\xfd\x44\xdc\xf2\x84\xcd\xfd\x88\x7f\xf2\ +\xee\x4f\x97\x99\xe3\x0d\x33\xd4\xdd\x1c\xce\xe1\x97\xbc\xed\x61\ +\xeb\x9a\x50\x58\x67\xde\x10\x56\xce\xcb\xde\x6c\xe3\x43\x92\x3a\ +\xf3\xcc\x0f\xd2\xdf\x9f\xa8\xb3\x55\xd1\x09\x22\x7c\x21\xf2\xf5\ +\xa7\x24\x3a\x4d\x3e\x53\x7f\x92\x3f\xb5\xe2\x43\xe9\x98\x0e\xb2\ +\x07\x83\xa1\x9b\x8b\xa1\x5c\x23\xbc\x3e\x8c\x7f\x33\x98\xa2\x4c\ +\xfa\x68\xf2\x0b\x9b\x33\x40\xed\x8d\x9f\x58\xe6\x03\xb6\xc1\x07\ +\xf5\xbe\x82\x57\x1b\xcc\xa7\x71\x27\x8c\x99\xb0\x03\x96\xa1\x99\ +\x20\xfb\x5c\x92\x7a\x98\xc8\x8f\xa2\x62\x02\xe1\x63\x39\x3e\x86\ +\x5a\x88\x29\x19\x3a\x6a\xa8\x36\xe0\x17\x96\x74\xa0\x4d\x8a\xe4\ +\x7a\x4f\x40\xec\xac\xa5\x3e\x35\x76\x2b\x46\xf8\xba\xbd\x03\x84\ +\x48\x3a\x45\x2a\x4e\x43\x2e\xed\xa1\x23\xaf\xbb\x31\x1d\xc6\xd6\ +\x85\xc7\x14\x67\x57\x2f\x24\x6f\x4a\x80\xe3\x92\xa0\xb7\x00\x64\ +\xbc\x29\x73\xd8\x45\x46\xd5\x75\x70\x9d\x7d\x5f\x87\x1c\xbd\xb0\ +\x5f\xf3\xd8\x52\xa8\x24\xa1\x78\x79\xb8\xf3\xe8\x95\x00\xfa\xc1\ +\xf1\xd2\xa5\xf6\x55\x1c\x12\x71\xce\xa8\x7c\xd9\xfb\xd6\x04\x14\ +\x3f\xe8\x94\x81\x7a\x44\x3e\xf1\x2a\xa0\x86\x2d\x31\xd1\xdb\xea\ +\xe3\x80\x1f\x35\x2a\xea\x52\xd7\x64\x47\x17\xed\x23\xbf\xf4\x5a\ +\xfb\xfd\xbf\xeb\x8f\xb4\xc3\xab\x53\xff\x05\x44\xf8\x16\x0c\x65\ +\xcc\x30\xc3\x35\x30\x8f\x90\x19\x66\xf8\xc2\xc1\xbc\xa0\x36\xc3\ +\x0c\x33\x7c\x71\xc3\xe7\xfa\xd6\xdf\xb7\x97\xac\xd9\x65\x5d\x04\ +\x00\x66\x49\x76\x67\x9d\xbb\xfc\xe7\x03\x9e\x39\x2b\x53\xe6\x9b\ +\xca\x10\xb3\xba\x6c\x8f\x17\x9b\xf6\xf5\xff\xd9\xff\xb5\xbd\x7b\ +\xf3\xa8\xfd\xe1\xdf\xf1\xde\x76\xfb\xd6\x91\x2c\x9a\x12\x6f\x99\ +\x60\x6f\xdb\xeb\x6f\x3c\x6c\xf7\xcf\x2e\xdb\x66\xc5\xed\x45\x2e\ +\x80\x34\x41\x26\x1c\xb8\x84\xe7\x09\xb4\x88\x08\x78\x1a\xbd\x88\ +\xff\xb6\xf2\xff\x29\x69\x6e\xcf\x4d\x24\xe6\xf8\xd3\x53\x69\xf2\ +\xf3\x8d\x97\xb8\x30\x76\x7e\x74\x5c\x28\x73\x33\x86\xc5\x2c\x29\ +\xeb\xe6\x10\x93\x73\x9c\x70\xf3\x0d\x03\x6e\x16\xaf\x74\xc1\xcc\ +\x4d\x6a\xea\x44\xc1\x09\xf8\x8c\x80\x6c\xdd\x8e\x41\x42\xc9\xe5\ +\x40\x7c\xca\x61\xb1\xec\x48\x78\x0c\x95\x5a\xed\x60\x21\x8d\x1b\ +\x58\xae\x8b\x9f\xd0\x21\x0b\x99\x12\xa2\x1a\x51\x13\x7d\xfc\xaa\ +\x19\xd5\xed\x40\x75\x3c\xe0\x15\x6d\xe7\xea\xbb\x33\xe1\xe3\xb5\ +\x5f\xef\xe6\xd7\xbd\x49\xbf\xe1\x35\x88\x5e\x54\x13\xb2\xa0\x66\ +\x54\xdb\x24\x4f\x4f\x9c\x28\x8e\x17\xd8\x12\xb9\x69\xce\xfd\x12\ +\x85\xdb\xb9\xe9\xbe\x55\x8d\x8a\x47\x14\xa3\x9c\xda\x44\xd9\x67\ +\x28\x55\xf1\x30\x73\x11\x14\xbc\xb1\x9a\x92\x79\x77\x9a\x36\xd8\ +\x7c\x73\x22\x79\x27\xbc\x6e\x73\xad\x3a\x9f\xad\xda\xc1\xc3\x8b\ +\x76\x75\xff\xb2\x6d\x3f\xc3\x22\xda\x45\x6b\x6f\xae\xa4\x57\x8e\ +\xcb\xa8\x3f\x75\xa3\xdf\xc8\x67\x2a\x0c\xb9\x20\x62\x5b\x55\xfa\ +\xf4\x73\x42\x7d\x45\xb2\x06\x56\x33\x9e\x16\x3c\xa1\x56\xe3\x03\ +\x59\x96\xc5\x91\x76\x9c\xff\xb3\xcf\x3b\x4d\x1f\xfa\xc1\x81\x7c\ +\x38\xec\x94\x0b\x6f\xc5\xe0\x67\x7b\x38\x79\x9f\xbb\x63\x27\x1f\ +\x68\x69\xc8\x1b\xba\x18\xcb\xd6\xf2\x41\x8f\x68\x80\xb3\x52\x6e\ +\x54\x20\xb4\x04\x89\x85\x9d\x68\x97\x17\x65\x60\x5c\x49\x18\x60\ +\x18\xdf\xe8\x27\x69\x02\xc5\x2b\xaf\x08\x4d\xfd\x24\xd7\xce\x83\ +\x54\x99\xc5\x88\x90\x23\xda\x57\x0a\xf5\x97\x3e\xb0\x56\xd3\x06\ +\xba\x50\xfd\x1a\x6e\xd9\xd6\xec\xef\x3a\x26\xfc\x74\xa0\x7d\xa4\ +\x17\x10\x77\xcd\x6b\xf4\x78\x3a\xed\x4c\xe3\x22\x5f\xcf\x68\x9b\ +\xda\xe0\xfb\x7d\x9c\x5f\x68\x2f\x40\x2c\xc7\xd5\xe1\x45\x50\xa9\ +\x89\xa5\xcb\xf0\x3c\xde\xa6\xb8\xc9\x62\x49\x1a\xa3\xbc\x78\x3b\ +\x81\x1c\x27\x3e\x56\x18\x7f\x2a\x10\x6a\x9d\xfc\xb8\xd7\xc6\x22\ +\x18\x75\xc2\xc6\xf8\x94\xae\xad\x94\x0d\xbf\x4b\x1d\x5c\x1c\x7b\ +\x2c\x9a\xe9\x98\xf4\x7f\x96\x31\xce\x3d\xde\x95\x87\x7a\x17\xaa\ +\x3d\x3c\xd1\x56\xf1\x79\x15\x25\x38\x2d\xaa\x49\x9f\xed\xad\xe3\ +\xd3\x4f\x7b\x26\x98\xad\x3b\x12\x23\x20\x27\x92\xad\xec\xde\xaf\ +\xd0\xf2\xc7\x1e\xaa\x60\x68\x6a\xb6\x8b\xf3\xa4\x3b\x5b\x62\xf5\ +\xb5\xfb\x32\xb1\x42\x04\x93\xf2\xa8\x17\x38\xf6\xe0\xe8\xac\x29\ +\x05\x8c\x52\x18\xd1\x74\x2d\x19\x82\x89\xad\x1b\xe1\x53\x46\x31\ +\xb9\x39\xf1\x08\x56\xd9\xa5\x0e\x6e\xf0\x33\x84\x5f\x95\xd1\x4d\ +\xe3\xb8\x1f\x28\x24\x7a\x61\x00\x2b\x63\xd0\x2f\x38\x87\x6a\xbb\ +\x79\x72\xc8\x40\xd4\x98\xd4\x3e\x6c\xc7\x6d\x79\x7a\xd5\x3e\xfa\ +\xb1\x37\xdb\x87\x3f\xf2\xa9\xf6\xfb\xfe\xb7\xff\x71\xbb\x79\x7a\ +\xe2\xba\x47\x05\x09\x20\x8c\xcf\x93\xf1\x67\xf8\x6d\x01\xb5\xef\ +\x19\x49\xbc\x72\xf6\xe3\x9f\xfa\xe5\xf6\x17\xbe\xee\x8f\xb5\xb7\ +\xff\xce\xdb\xed\xa9\x7b\xf7\xda\xd1\xb1\xc6\x14\xc3\x05\x5f\x8f\ +\x9d\xa4\xcc\x79\xa4\x33\x78\xdc\xf2\x1d\x46\xa4\x38\x36\xba\x4d\ +\x90\xa7\x5d\x86\xa6\x68\x9c\x73\xad\x93\x2d\x42\x91\x27\xce\xa5\ +\x3e\x6f\x77\xdb\x10\xcb\x49\xc0\xc0\x76\xf0\xf1\x24\x88\x54\xa0\ +\x31\xce\x7c\x66\xa3\xf3\x18\xe7\x3f\x4e\x23\x91\x2f\x02\x46\xec\ +\x61\x31\x4d\xe7\x6b\x0a\xc3\x67\xc2\xf0\x1d\x88\xd1\x30\x30\xc5\ +\x9a\x76\x7d\xc0\xa8\x1b\x4d\x13\xaf\xf3\x6b\x71\x62\xfc\xbd\xa0\ +\x7a\x70\x88\x46\x6f\x62\x88\xca\xf7\x45\x34\x4e\x96\xa2\x72\x0b\ +\x7d\x9e\x87\x2d\x87\x2a\x21\xb8\xd2\xef\xc0\x9e\xae\xce\x5b\xe6\ +\x6d\x53\xa2\x2f\x97\xf8\x3a\x2f\x43\x90\x94\x3a\xdd\x65\xba\x60\ +\xb0\xe4\xc6\xd4\x37\x00\x50\x7e\x2a\x95\x85\x4e\x9f\xe3\x63\x11\ +\x2d\x73\x54\x51\x13\x50\x91\x6c\x70\xaf\x27\xfb\x0d\x4f\x3e\xd9\ +\x48\x6b\xc4\x07\x45\xcf\x38\x8d\x7c\xe9\x18\xbe\x89\xdd\x97\x0d\ +\x95\xbd\x22\xcf\x68\x2b\x4b\x54\x23\x65\x7f\x06\x9b\xe3\xc1\x72\ +\x34\xa1\x61\x30\x73\x6c\x95\x0f\x10\x3e\x11\x23\x69\x7d\xc1\xd2\ +\x47\x03\x4f\x9f\x8c\xbd\x46\x0e\xf6\x3c\xe0\xec\x32\x41\xe3\xb5\ +\x97\xa1\x88\xfa\x90\xc7\x06\xd1\x80\x88\xc2\x5e\x0e\x57\xa3\x55\ +\xe4\xa0\x86\xb2\x68\x8e\x17\x39\x5c\xf3\xa4\xe1\x1c\x1b\x1a\xa5\ +\x14\x87\x99\xe6\x39\xb0\xb4\xb8\xc5\xb0\x14\xef\x52\x84\x38\x86\ +\x33\x76\x78\x08\x34\x5e\xfb\x1a\xb2\x63\xfa\x53\xfe\x59\x96\xa8\ +\x24\xdb\xa8\x4f\xf5\x19\xb0\xc3\xf9\x83\xa6\xf8\xc0\x10\xaa\x4f\ +\x06\x5d\x02\x5c\x97\x92\x71\x97\xb9\xd0\x80\xc9\x5b\xbc\xf4\x98\ +\x4a\x37\xee\x1b\xd8\x41\xea\x7e\xe4\xe9\x60\x9e\xda\xe4\x7e\x40\ +\x2c\xb0\x50\x9a\xf2\xc8\xb1\xdb\xf3\x4d\xb9\x9c\x0e\xfb\x17\xce\ +\x6e\x82\xd2\x96\x19\xbd\x73\x4a\x76\x6f\x8c\xce\x82\x3d\xd1\x50\ +\x31\x26\xe6\xf3\x84\x3a\x17\xc1\xe7\xfe\x82\xf4\x7d\x57\x54\xe0\ +\xb6\x75\xc0\xa9\x73\xf6\x33\xed\x8d\x1a\x8c\x75\x02\x00\xca\x6f\ +\x27\x05\x8a\x73\xcb\xfd\x49\x4e\x18\xe9\x2e\xf4\x82\xfa\x79\x85\ +\xe3\xea\xf4\xf8\xb8\x3d\x3c\xbf\xdf\x5e\xfb\xf0\x1b\xed\x0f\x7c\ +\xcd\x1f\xd1\xf7\x89\x3c\x7c\x70\xd4\xb1\x02\xec\xc7\x9a\x61\x86\ +\x09\xe6\xd1\x31\xc3\x0c\x5f\x38\x98\x17\xd4\x66\x98\x61\x86\x2f\ +\x6e\xf8\x7c\xbe\xf5\xf7\x7d\x24\x7b\x9e\xab\xb9\x28\xd4\xe6\xf2\ +\x49\xfd\x0e\x94\xed\xf3\x81\x0c\xc8\xdc\xd9\x93\xf1\x8a\xa5\x09\ +\xfb\xd9\xf9\x83\xf6\xc3\x1f\xf8\xfe\xf6\xb1\x0f\x7c\x4b\xfb\x83\ +\xef\x7f\xbe\xbd\xf3\xe5\x17\xfc\x9a\x46\xcf\xb3\xe5\xfa\xf0\xf1\ +\x79\xfb\xf4\x9b\xe7\x6d\xb5\xba\x94\x82\x8b\x52\x5d\xac\xe7\x85\ +\x1a\x76\x7d\xe2\x62\x10\x6a\x88\x0b\x47\x16\xd3\xf8\x05\xda\x92\ +\x09\x75\xde\xe4\x31\x35\x2f\x2f\x16\xad\x72\xb2\xed\xfc\x04\xc0\ +\xa7\x9e\xfc\x12\xed\x8b\x69\xa0\x7d\xa3\x0d\xf1\x14\x86\x66\xe3\ +\xdc\xd8\x56\x8d\xaa\x39\xd7\x01\x79\x0c\x9d\x49\x70\xdc\x3d\xbe\ +\xea\x97\x0b\x6a\x8d\x45\x35\xee\x5c\x79\x31\x0d\x1f\xd5\x29\xeb\ +\x1c\xfd\x58\x25\xab\x0e\xb0\xdc\x30\xe7\x42\x98\x27\xb4\x58\x10\ +\x3b\xdb\xfa\xbf\x95\x8c\x8f\xc1\x4d\xdb\x78\x21\x4d\x7a\xa1\x6f\ +\xd2\x5f\xa8\x47\x79\x7a\x45\xb8\x5d\x29\x8e\x28\xc8\xd3\x77\x65\ +\xf3\x6b\xe5\x90\xd5\x5e\x7c\x7c\xb3\xdc\xaf\x8e\x13\xfa\xc6\xb9\ +\xea\xb2\xa1\x56\xaa\xa2\x8a\xbe\xe2\xa6\xb0\x68\x2d\xce\x98\xa7\ +\x9a\xd6\xc1\x67\xfd\x43\x1b\xf9\x0a\xf1\x47\xa9\x06\x89\x95\x10\ +\x3e\xbe\xb8\xcb\xf6\xb2\x78\xe0\xc5\x05\x16\x07\x1f\x5d\xb6\xcd\ +\x9b\xab\xb6\x79\xfd\xa2\x6d\xee\xaf\xda\xf6\x41\x2c\x16\xfa\xff\ +\x9b\x54\x27\xfe\x43\x8b\x08\xfc\x4a\x11\xc6\xd1\x48\x92\x27\xa4\ +\x75\xc0\x7e\x9d\xd2\x60\x92\xa6\x68\x65\xca\x02\x9e\x7e\x5c\x78\ +\xf1\x55\xa3\x4e\xfb\x8d\x4c\xde\x57\xbc\xf2\xf1\xa4\x9e\x52\x0b\ +\x3b\xfb\x77\x6c\x87\x17\xb2\x82\x0b\x9f\xe4\x83\x41\x57\x2c\x4c\ +\xc8\xa6\xda\xa6\x5b\x0b\x02\xca\xb6\x0d\x0c\x7b\x8c\x5b\x44\x2e\ +\x26\xc5\x70\xe1\x58\x6d\x45\xf6\xc5\x72\xf8\x02\xf4\xb6\xf7\x57\ +\x82\xb5\xf8\xb0\x3f\xad\x09\x28\x3e\xf7\x4e\x00\xce\x5d\x24\x6e\ +\xb2\x86\xe8\x7f\x8e\xd9\xb8\x78\x2d\x63\xf8\x79\xc1\x71\x90\x1d\ +\x88\x31\x3e\xd4\x5f\x1d\x8a\xa3\x3e\xd2\xd3\x9f\x88\x6c\x92\x7d\ +\x3c\xa4\xad\x8e\x51\x52\xce\x14\x2b\x9d\x37\xd6\xf7\xcf\x35\x9e\ +\xd7\x1a\x0b\x1a\xc3\xd4\x91\x57\x85\xc1\x68\x88\xf0\xfa\x30\xdf\ +\xd8\xa0\x1c\x16\xcd\x78\x32\x48\x1d\xe5\x5f\xb4\x2e\xae\xda\x91\ +\xe4\xab\x43\x9d\x6f\xb6\xb1\x28\x3f\x35\x92\x0c\xc5\x45\x99\xd1\ +\x4e\xa1\xcb\x50\x52\xfb\x16\xc2\x78\x95\xec\x57\x35\xba\x6c\x50\ +\x1d\x8b\x9c\xc7\x10\xaf\x6b\xf4\x6b\x1a\xa5\xde\x72\xa1\xef\xe3\ +\x2a\x8e\x3d\x2f\x06\x7a\xf1\x5a\xf1\xa9\xb7\x62\xe5\x03\x00\x71\ +\x3c\xc9\xd5\xe5\xa1\xb3\x0f\x0b\x69\xaa\xb7\x7c\xbd\x18\xae\xfd\ +\xe8\x3a\x92\x08\xbd\xeb\x49\x10\x95\x8d\xec\x1d\x42\x6d\xb8\x4e\ +\xef\xfd\x4e\x8c\x10\x4c\x5d\xbe\x12\xeb\x0a\x10\x68\xb3\xca\xf7\ +\x53\xaf\x20\x6d\x27\x0e\xc4\xfb\x4d\xb8\x93\x29\x0a\xa1\xab\x19\ +\xb3\xec\xfa\x0c\x8e\x46\x28\x2e\x5c\xac\xb2\x39\xa4\x41\x20\x78\ +\xe6\x75\x9e\xf2\x10\xdd\x63\xdd\x07\x8c\x25\xfc\xd3\x60\x1e\x41\ +\x36\xff\x3f\x50\xef\xa0\xe8\x47\xc0\xde\xc1\x76\x88\x08\x15\x47\ +\x60\x06\x39\xea\x5d\xe0\x90\x30\x24\x36\xe1\x13\xc7\xa8\x4a\xf0\ +\xbe\xf3\x78\x57\xff\x1c\x9f\x1c\xea\x2b\x60\xd9\x2e\xb4\x93\x9f\ +\x5e\xde\x68\xbf\xf2\xe0\x61\x7b\xed\x13\x0f\xdb\x9b\xfa\x5e\xfb\ +\x9a\xdf\xf7\x3b\x94\xd7\x2b\xbd\x53\x40\xd3\x4e\x66\xf8\xed\x06\ +\x1e\xee\x9c\x1b\x36\xed\xf0\xf0\xb8\xfd\x85\xbf\xfe\xa7\xdb\x47\ +\xce\xfe\x45\x7b\xdf\x57\xbd\xda\x4e\x6e\x9c\xc8\xc6\xdc\x49\x63\ +\x0c\xac\xf1\xc2\xb9\xd3\x99\x0b\x3c\x1a\xc3\xe4\x6d\x02\x78\x4e\ +\xb3\x9c\x0b\xe3\x3b\x0e\x39\x7c\x88\x69\x9b\x7f\xdc\xc4\x79\x39\ +\xfc\xc4\x46\x79\xd0\x0a\x92\x30\xb0\x06\x64\xca\x8e\xd2\x0b\xe2\ +\xf8\x59\xeb\xfb\x7c\xc3\x79\xb0\x1f\x4e\x19\x33\x63\x2f\x39\x6f\ +\x73\x4e\xa9\xc5\xb4\x0c\xa1\x2a\x04\x9f\x38\xb0\x86\x7e\x3c\x0a\ +\x8a\x02\x95\xbf\xca\x1f\x6d\x25\x40\x7c\x7c\xc7\x27\xd4\x56\x56\ +\x0b\xd2\x51\x95\x8e\x85\x89\xec\x57\xab\x27\xd9\x14\x91\xfa\x57\ +\x1e\x40\xac\xf5\x56\x85\x7e\xb2\x62\x90\xdc\x15\x30\xa1\xe3\x8b\ +\x00\xc9\x36\xe7\x2f\x3d\x50\x19\xe8\x67\xca\x57\xca\x79\x5a\x9b\ +\xbf\x40\xdc\xc1\x85\x09\xd8\x69\x83\x6d\x69\xc9\xc4\xd1\xd0\xfb\ +\x17\x56\x59\x20\x1f\x74\x16\xc3\xc7\xee\x06\x24\x21\x75\x82\xb0\ +\xa9\xa2\xb5\x58\xe6\xef\x85\xd4\x89\x98\x8f\x86\x04\x12\x6d\xb4\ +\x63\x8b\xfc\xe9\x67\x3e\xc6\x65\x1f\xdb\xf0\x71\xa2\x17\x42\x88\ +\x90\x32\xb1\xd8\x6c\x4b\x9e\x3c\xa5\x33\x97\x69\xda\x9d\x4f\xc8\ +\xd8\xea\x79\x4c\xf7\xc0\xfd\x15\xc8\xd6\xed\x62\xa2\x1d\xf0\xd1\ +\x33\x96\xe2\x13\x32\x8c\xf3\xc3\xc4\x51\x11\x40\x59\xd8\xc3\x39\ +\x08\xba\x44\xfc\x9c\x65\xd2\x45\xb6\x74\xb6\xf7\x04\x5d\x8d\xd6\ +\x59\x29\x27\x63\x84\xd6\xba\xcc\x2a\x1a\xb6\x90\x43\x0f\xeb\x63\ +\x5f\xb4\x80\x28\x94\x54\xf5\xc1\x66\x99\x3c\x56\x38\x35\x16\x54\ +\x3d\xba\x0e\xb7\x20\x13\x92\x98\x17\xc3\x67\x27\x0e\xa5\x2a\xb5\ +\x69\xd2\xbb\xfe\xe8\x33\x2d\x6f\x83\xb3\x44\x1d\x8b\x94\x57\x40\ +\xf8\x4f\xfd\x1f\x10\x11\x42\x6f\x9e\xbc\xa1\xec\x9e\xb9\x6b\x27\ +\x03\x9e\xdd\x07\xa6\x62\x97\xcb\xd4\xf6\xca\x5a\x50\xfa\x82\xc9\ +\xbe\x6f\x79\x12\x76\x62\xc9\x7d\xcc\x31\x96\xb7\xa3\xef\x8a\x5d\ +\xef\x1a\x4f\xa6\x69\x9f\x3c\x76\xb9\xf0\xcd\x40\x93\x49\x90\x82\ +\xcf\x1b\x7b\x65\x57\xc1\x39\xd7\x0a\x40\xb7\x0b\xd5\x5f\xce\x98\ +\x24\x94\x93\x6f\xec\xf7\xdc\x77\xfa\x30\x57\x3e\x3a\xbc\x6c\xbf\ +\xf8\xe1\x4f\xb4\x2f\x7f\xdb\x57\xb7\xa7\x9f\x7a\x5e\xa7\x08\x1f\ +\xc5\x91\xdf\x69\x70\x33\xcc\x70\x1d\xcc\xa3\x63\x86\x19\xbe\x70\ +\x30\x2f\xa8\xcd\x30\xc3\x0c\x5f\xdc\xf0\xf9\x7e\xeb\x97\x1f\x94\ +\x09\xe7\xc0\x5f\x4b\x0b\x46\xfe\xf3\x02\x05\x18\xee\x5c\xc4\x44\ +\x5b\xb8\x5d\xb7\xc3\xd3\x5b\xed\x2f\xfd\xdf\xfe\xb3\xf6\x3b\x16\ +\x17\xed\xf7\x7c\xc5\xbb\xdb\xad\xd3\x63\x2f\xc8\xf0\x8b\xb2\xd5\ +\x66\xd3\xde\xb8\xff\xb8\x3d\x38\xe3\x95\x6d\x42\x1e\xed\x28\x20\ +\x9c\xe2\xf8\xc6\x2b\x62\xc6\x5e\x70\x99\xbb\x3c\x68\x47\x2c\x74\ +\xe4\x6b\xf8\xfa\xaf\xa5\xb9\x58\x4f\xe4\x0a\xd0\x73\x69\x32\xa2\ +\x83\x0a\xe3\xa6\x4c\xe6\x49\x1b\x65\xc4\xb4\x5b\xcd\xd0\x45\xc0\ +\x86\x27\xd3\xb8\x41\xec\x0b\xde\xe8\x9e\x7d\xa0\x3a\x60\x87\x51\ +\x70\x59\xfa\x64\xc6\x5e\x37\xca\x3c\x14\xcf\x93\x4d\x2c\xa6\x1d\ +\xca\x89\x7b\xa6\xb2\x91\x27\x26\xff\x43\x20\xba\x55\x9b\x5f\x69\ +\xb2\xb9\x6a\x4b\x16\x91\x78\xe2\x8c\x45\xb3\x07\xeb\x76\xf5\x70\ +\xd5\xb6\x8f\x79\x7a\x4b\xfa\x8b\x5c\x40\xf3\x53\x23\xb9\x28\x26\ +\xde\x94\x9b\xf4\xdc\xf8\xf6\xcd\xfe\x68\x63\xbc\xbe\x4d\x65\x40\ +\x89\xbb\x16\xe5\x86\x3f\x0b\x6e\xc8\xa6\xc4\x94\xaf\x65\x16\xdd\ +\x14\x57\x34\x16\x09\xb6\x7e\x2a\x6c\xa1\x7c\xc8\xfe\xcf\xb6\x95\ +\xba\x53\xfc\x81\x63\x89\x47\xc7\x0d\x64\xfc\x95\xd7\xff\xef\xc4\ +\x4d\x33\xea\xe8\xfa\x29\xae\x90\x27\x74\x0e\x84\xbc\xaa\x72\xa9\ +\xf6\x5d\xdd\xbf\x68\xed\x8d\xcb\xb6\x7d\x53\x63\xe2\xcd\x55\x5b\ +\x3c\x94\x4d\x2a\x2f\xea\x11\x53\xdb\xf8\x10\x16\xd4\x3c\x3a\x0b\ +\x53\x1f\xc2\x49\x1d\xd0\x99\x9e\xc3\x30\x71\x40\x04\xa6\x0c\x3e\ +\x8c\x17\xff\x8f\xcc\xb0\x8f\x58\x64\x33\x7f\x7c\xe4\x31\xc8\x1f\ +\xc6\x5f\xb1\x7f\xc9\x8e\xde\xf5\x90\x44\x7f\xa3\xaa\xd4\xd9\x22\ +\x4e\x84\x0f\x5e\xa9\xed\x75\x43\x3f\x8c\x43\x3c\x21\x91\x9c\x17\ +\xbf\xd4\x61\x2b\x8c\x4b\x4b\x67\x88\x4f\x08\xae\x4b\xd4\xc2\x6a\ +\x83\x7a\xdd\x69\xf0\x01\xa1\x1b\xa1\xbc\x03\x6c\x4d\x15\x7c\xb7\ +\xc2\x08\x7d\xf8\x67\xa1\x6e\x07\x1f\xfa\x4d\xce\x55\x33\x2a\xc5\ +\x0d\x97\x38\xf6\xb0\x2b\x89\xae\xf4\xf1\x67\x19\xca\x46\x7f\x1a\ +\x75\x8c\xb3\x00\xed\x3c\x42\x6d\x1a\x3d\x3a\x06\xd6\x6d\xfd\xe6\ +\x79\xdb\x3c\xe2\x91\x2f\x1d\x13\x1a\x17\x1c\xaf\x0c\x6d\xc6\x35\ +\xf7\xff\x7c\xdc\x50\x1e\xc7\x95\xf0\x58\xf9\x0f\x6f\x2f\xdb\xe1\ +\x9d\xdb\xed\xf8\x48\x07\xde\x72\xab\xf1\xca\x39\x84\x83\x90\x05\ +\x39\xa2\x0f\x40\x1d\x21\xca\x17\xed\x0b\xf4\x02\xa6\x3f\xd9\x67\ +\x90\x44\xca\xf5\xeb\xb0\x18\xf3\x3a\xcf\x79\x21\x6d\x18\xeb\x7e\ +\x12\x94\xe3\x49\x63\x83\x27\x60\x57\x6b\x8d\xf9\x4b\xc5\xc2\xae\ +\xf3\xe1\xa5\x57\xdc\x24\x13\x4b\xa8\x62\x22\x36\x3a\xa1\x17\xeb\ +\xa0\x2c\x6a\xc3\x63\x0b\x2f\x03\x62\x48\x4a\x6d\x7b\x6b\xe8\xb9\ +\xd2\x4f\x35\x50\xda\x5b\x95\x72\x40\xd7\x55\x26\x28\x4a\x90\x7a\ +\xe4\x71\xbd\xa5\x1d\xd6\xc7\xb9\x16\xbf\xde\xab\x21\x76\xc8\x6e\ +\x84\x73\x4a\xac\x1d\x59\x84\x50\x13\xa4\x43\x57\x4a\x88\x4f\x4a\ +\x29\xbb\xe3\xd0\x4a\x83\xdc\x79\x0b\xe9\x97\xc7\x14\xa9\x2b\x1c\ +\x3c\xc7\x51\x7e\x8c\xbb\x10\xda\x7d\xbd\xc3\x0f\xd0\xfb\x48\xc0\ +\x7e\xec\x60\x03\xe7\x8f\x68\xc2\x8d\xe3\x93\x76\x7c\xc8\x39\x44\ +\xfa\x2b\xe9\x0f\xaf\xda\x27\x5f\x7f\xdc\xfe\xed\x87\x3f\xd1\xfe\ +\xc3\xff\xdd\xff\xb2\x9d\xdc\x38\x8d\x63\x82\xf3\x08\x07\x48\x96\ +\x4c\xde\xa1\x88\x19\xbe\xe4\x21\x07\x11\xe7\xb2\xdc\xf3\x3f\xf1\ +\xef\xfe\x5d\xfb\xfa\x6f\xff\xe3\xed\xfd\x5f\xfd\x4c\xbb\xf7\xcc\ +\xdd\xb6\xe4\x47\x1f\xb8\x30\xae\xe5\x6e\xaf\x3e\xde\x13\x34\xfe\ +\xea\xe8\x86\xb3\xbf\x25\x8f\x7a\xbb\x73\x6e\xf6\x1c\x89\x53\x26\ +\x79\xa5\x0b\x94\x1e\x46\x9e\x79\x3a\xb5\x8f\xe3\x60\x27\x8c\x93\ +\x80\x81\xed\x80\x2e\x4a\xca\xf6\x40\x55\xd9\x35\xf3\x01\x5e\x21\ +\xeb\x13\x1b\x20\x1f\x7d\xdc\x56\x68\x96\xed\x57\x64\x43\x09\x11\ +\x5e\xc6\x62\x52\xdd\x69\x31\xfb\x7a\xd3\xee\x34\xb2\x7c\x5f\x84\ +\xcc\x0f\x75\x00\xfa\xab\x6a\x15\x96\x5c\xcc\xb2\x45\xa0\x64\xec\ +\x53\x1f\xf0\x42\x1f\xf7\xe1\x58\x49\x34\xdb\xfe\x21\x93\xe6\x19\ +\x27\x6c\x00\xed\x4b\x01\xea\x45\x7f\xef\x37\x6a\x91\x01\x0c\xc5\ +\x8f\x67\xe9\x5e\xd2\xa4\x53\x3b\x46\xde\x44\x58\x65\x4f\x46\x81\ +\xcb\x52\x39\xa3\x2e\x05\xa7\xca\x5f\xf1\x0b\x5c\xc7\xe4\xa1\x11\ +\x17\x2a\x8e\x7e\x80\xb0\x79\xbf\x81\x18\xad\xf1\x66\x5e\x03\xa9\ +\x16\xdc\x42\x55\x56\x4e\x7a\xd6\x26\x3e\xa9\x9f\x62\xed\xf9\x38\ +\xe6\xa4\x2f\x3f\xd3\x44\xab\x6d\xc5\x17\xc9\x23\xce\x3e\x85\xb1\ +\x1f\xc3\xbf\xda\x69\x1f\x41\x3c\x6d\x46\xfb\xcb\x82\xad\xac\x00\ +\xf9\x26\x7f\x53\x62\x89\x78\x57\x94\x21\xb3\x63\x09\x55\x19\x70\ +\xe7\x20\x4b\x8b\x17\xcc\xa5\x64\x5e\x15\xd6\x48\xa9\x9b\xd0\x5f\ +\xb7\xa8\x48\x8a\x8a\x71\x78\xe6\x0b\xb9\x3f\x1c\x2a\x2d\x07\x9e\ +\x54\x20\xb1\x6f\xa7\x85\xda\xf2\xc5\xee\x3c\x58\x6c\xb4\xeb\xe0\ +\x17\xbc\xa1\xf8\xc8\x60\xe8\x6d\x4a\x5b\x58\x42\x88\x7d\x10\xf6\ +\x1d\x7d\xf2\xee\xa2\xc9\x18\x04\x7b\xef\xbb\x8c\xdd\xd3\xa0\x05\ +\xe9\xd2\x21\x87\xbf\x74\x34\x00\x43\x28\xec\x82\x0a\x3e\x7d\xfc\ +\x55\x1d\x1a\x23\xfd\x41\x0f\x75\x6d\xc5\x32\x48\x63\x93\x92\xd4\ +\x4f\x9e\x01\x65\xde\xd7\x15\x52\x5e\xb5\xb5\x7a\x84\xfa\xf6\x32\ +\x21\xc4\x16\xad\xa2\x07\xd5\x0e\x94\xbd\x83\x1c\xf6\x7d\x00\xeb\ +\xa6\x24\x28\xe7\x1a\x91\x50\x93\x96\xad\xb8\x49\x0e\x08\x7f\x12\ +\x53\x81\xff\xca\x61\xc7\x4d\x7d\xd7\x2b\x25\x83\x3f\x24\xd1\x52\ +\x2b\x0c\x1c\xd7\x72\x1c\x1a\x55\x1e\x93\x0f\x30\xee\x09\x47\x8f\ +\x39\xb1\x2e\x66\xf9\xc1\xc7\x56\x17\x8b\x1f\xff\xc8\x83\xf6\x07\ +\x7f\xef\xff\xaa\x6d\x36\x3a\x56\xf2\x7b\x6a\x82\x91\x9f\x61\x86\ +\x09\xe6\x91\x31\xc3\x0c\x5f\x38\x98\x17\xd4\x66\x98\x61\x86\x2f\ +\x6e\xd8\xff\xd6\x1f\x26\xa0\xfb\xe0\x49\xae\xec\x49\xc2\xad\x04\ +\x60\x3f\xdf\x8e\xe3\xe7\x0f\x0e\xa7\x3c\x71\xb1\x23\x46\x74\x7d\ +\xfe\xa8\x7d\xe8\x7b\xfe\x7e\x7b\xed\xef\x7d\x4b\xfb\x03\x5f\xf6\ +\x4a\x7b\xf9\xf9\x67\x7d\x23\x06\x47\x26\xc1\x8f\x1e\x9f\xb7\x37\ +\x1e\x5c\xb4\xd5\x26\x17\xd3\x3c\xeb\x16\x0e\x93\x73\x5f\xfc\x9a\ +\x49\x5e\xb3\xe3\xc3\xc3\x58\xd4\xe0\x66\xa3\x6f\xb4\x70\x03\x08\ +\x3b\x17\x9a\x79\x33\xc8\x37\xe1\x23\x53\xc8\x50\x16\xd2\x92\x27\ +\x1f\x8b\x20\x5c\x85\xa6\xa7\xeb\xe4\x57\xae\xad\x78\xf5\x9a\xea\ +\x71\xc5\xad\x7b\x2c\x23\xb8\x81\x4f\x68\x4b\x11\x75\x14\x83\x9b\ +\x65\x25\x94\xc3\x3d\x7b\xfe\x2b\xcd\x4f\xa6\xa9\xfe\xaa\x08\xff\ +\xed\xe6\xf2\xc9\x83\x4f\x01\x5d\x40\xa2\x8b\x84\xa5\xea\xb1\x60\ +\x11\xeb\x7c\xd3\xb6\x0f\x57\x6d\xf5\x60\xd5\x36\x3c\xa5\xf5\x58\ +\x32\x0b\x68\x2c\x7a\xc9\xc7\x0b\x62\xdc\xa4\xa7\x5c\x2e\x2e\x72\ +\x31\xc7\xf5\x30\x1b\xf1\x9d\x4a\x76\x0b\xd2\xe6\x6b\x6a\xf2\xb2\ +\x0b\xb8\x21\xce\xc2\x19\x37\xc8\x73\x11\x6d\x73\xb9\x31\x5e\x5d\ +\xa8\x5c\xfa\x66\x25\x2a\xb9\x3f\xd9\x06\xbd\xc8\x9b\x62\xca\x13\ +\xbe\x99\x07\x3b\xf5\xe4\x29\x22\x64\x5e\x71\x27\x6c\xb4\x89\x85\ +\xc1\x47\xda\xf7\xc6\x95\x17\x08\x37\x1a\x0f\x5e\x2c\x7c\xa4\x3c\ +\x17\xb4\x4b\x7b\x80\x9b\x01\xd4\x53\x8d\xa3\x9b\x68\x83\xeb\x6f\ +\x1a\x09\xb2\x17\x3a\x00\xb7\x2b\x3d\xe8\x5b\xe8\x5b\xc0\x13\xb6\ +\x52\xe4\x15\xf3\xb2\x16\x73\x6a\x6c\xb1\x98\x96\x63\x78\x71\x74\ +\xa8\x31\xc4\xab\x47\xbd\x2a\x6a\x1d\xbe\x80\x17\x2d\x91\xa9\xb7\ +\x54\x68\x25\xd9\x16\x63\xa4\x94\xd0\xe2\x6d\x0d\xf4\x47\x49\x8e\ +\x0b\xa7\xf8\xa1\xed\x79\x12\xb1\x52\x8e\x36\x5f\x98\xe7\x66\x3d\ +\xa4\x68\x34\x29\xa0\x5f\xf1\xa2\x14\x96\x2d\xfd\xcb\x7a\x0d\x63\ +\xae\xf7\x75\x27\xa3\x5d\xbc\xfb\x88\xb0\x92\xe4\xdb\x8f\x41\x1f\ +\x80\x38\xe1\x95\x7a\x74\xf8\xbb\xad\x42\x29\xd1\x79\x31\x33\x8f\ +\x73\x10\x17\x6e\x62\xe1\x75\xf9\xe6\x59\xdb\xb0\xe0\xca\x98\x62\ +\xd1\x96\xf1\x2b\xe2\x45\x63\xfa\x5e\x1f\x8e\x21\x9e\x68\xe0\x58\ +\xe3\x9c\xf1\xd4\xf1\x49\x3b\x7a\xd7\x8d\x76\xf2\x9e\xc3\x76\xf8\ +\xca\x61\x5b\x1e\x6f\xda\xf2\x82\xf5\x20\x1d\x3c\xba\xf0\x56\x24\ +\xc7\x36\x50\x0d\x11\x6b\xf8\x20\x90\x40\x13\x60\xab\xbf\xa3\xfb\ +\xe4\x0d\x93\xe8\x85\x35\x8e\x4d\x0d\x77\xff\x59\x16\x98\x0b\x6c\ +\x1c\x63\xb1\x10\xa5\x3c\x3e\x6e\xaf\xda\xa5\x5f\xe3\x14\x75\x70\ +\x13\x68\x0f\x82\x28\x0b\xdf\x50\x74\x1c\xaf\x3e\x66\x5d\x38\x0e\ +\x51\x97\xa8\x89\x80\xf2\x05\xa1\x4b\x70\x7f\xa7\x6e\x34\x50\x4e\ +\xb2\x61\x98\x14\x19\x7a\xd7\xdf\x30\xe5\xe8\xac\xea\x42\x9d\xbc\ +\x40\xae\x36\xf2\x74\x20\x75\xd5\xde\x63\x77\x1a\x58\x68\x1d\xbb\ +\x30\x6b\x6b\x30\x47\x2c\xec\xa2\xb6\x99\x06\x40\xd1\x59\x2e\x65\ +\xd9\x53\x2e\x1f\x7f\x64\xa3\x7b\x16\x94\x59\x16\x37\x28\xec\xee\ +\x0f\xef\x2c\xf5\xb8\x3a\xdb\x87\xeb\x3e\xa4\x6b\x66\x50\x3b\xd8\ +\xbf\xb5\x87\x52\xad\x64\x27\x2f\x79\x52\xf6\x78\x85\xc1\xaf\xea\ +\x91\x63\x9c\xd7\x8e\x72\xde\x38\x39\x39\x56\x3d\x34\xf6\xa4\x7e\ +\xee\xf4\xb4\xfd\xe2\xd9\x55\x7b\xfd\x63\x9f\x6a\x3f\xfd\xf0\xb2\ +\xfd\x47\x7f\xe4\x0f\x55\x66\x11\x51\x82\x51\x6f\x11\xa0\xe8\x0c\ +\x5f\xfa\xc0\x5e\x67\x69\x47\xdf\xae\xed\xe0\xf2\xa0\xfd\xd9\xff\ +\xdf\xff\xa3\x6d\xef\xfe\x62\x7b\xd7\x7b\x5f\x6e\x47\x47\xc7\x1a\ +\x83\x5b\x9d\xe7\x74\xb2\xb3\x6f\x80\xcf\xb7\x29\xc4\xa8\x61\xfc\ +\x5a\xf0\x71\x19\xfa\x18\xac\x0c\x4b\x7c\xa1\xb1\xa0\x16\x79\x43\ +\x5f\x3c\x34\x16\x84\x79\x0d\x1c\x67\x64\xf4\xfa\x64\x12\x24\xd9\ +\x1d\x28\xdd\x64\x8b\x73\xde\x46\xe7\xbf\x8d\x5f\xf3\x18\xf5\x28\ +\x0f\xc7\x75\x79\x3a\x56\xa4\xf3\x53\xe2\x3a\xa0\xe2\x18\x0e\x2f\ +\x73\x9d\xd9\x61\x77\x74\x45\x0b\x39\x2f\x84\x3e\xca\xa4\x0f\xb2\ +\x5b\x04\x79\x74\x4b\x81\x56\x53\x0f\xf5\x59\xfa\xb1\xb8\xa0\x36\ +\x5b\x22\x71\xa6\xf0\xcf\x6a\x39\x88\xe5\x3d\xde\x32\x19\xc4\x44\ +\x69\x42\xc5\x85\x83\xef\x0b\x66\x94\xd5\xfb\xa2\x28\x27\xd6\x28\ +\x87\xef\xdd\xaa\x0f\x69\xc4\x9d\xa8\xb5\xc4\xc5\xd8\xe3\x24\x20\ +\x53\x51\x53\x7d\x7c\x4e\x2a\x40\x17\xfe\x1e\x13\x43\xde\xaa\x65\ +\x07\xf2\x26\x8b\x15\x1e\x8f\x18\x5b\xc8\xe1\x50\xe7\x7b\xc0\xfb\ +\x8d\xef\x75\xea\x6f\x1d\x32\x8c\xbf\x21\xc2\x96\x3a\xfb\x68\xe0\ +\x71\xfe\xc4\x05\x8c\xf1\x9a\xba\xe4\xed\x2b\x2e\x34\xb5\x79\x90\ +\x84\xdd\x26\xe9\x9e\xf0\x0b\xab\xb9\xb4\xa7\x14\xbe\xae\x37\x71\ +\xfc\x09\xea\x18\xe1\x57\x6d\xb6\xad\xd3\xe8\xa3\x18\x5b\xea\x41\ +\x3a\xc3\xe3\x25\xac\xe5\x1b\xe5\x25\x1f\xbd\x16\x1f\x74\x89\xf0\ +\xfe\x6e\x72\x99\xa1\x76\xbf\x5a\x08\x5d\x1c\x8b\xb6\x08\x28\x0f\ +\x99\x78\xf4\x90\x80\xec\xf6\x8c\xfd\xe1\x7d\x1a\x81\x52\x87\x2f\ +\x90\x54\xea\x1e\x0e\xbb\xf9\xc8\x1b\x91\xe0\xe1\x58\xd4\x0f\xdf\ +\x90\x27\xe8\xf5\xb1\x2d\x72\xd2\x1f\xd4\x35\xd5\xc6\x48\x46\xb9\ +\xca\x91\xbf\x82\x67\x0b\xa2\x0e\xaa\x9e\xad\x76\xce\x3a\x28\x31\ +\x15\x02\xa6\x6e\x7b\xc4\x31\x6b\x09\x0c\xa1\x74\x80\xf7\x91\xe4\ +\xca\x8f\x4b\xf1\xe1\x8f\x04\x55\xbc\xaa\x84\x21\xbc\x48\xcb\x3f\ +\x60\xea\xcd\xa8\x68\xc0\xe8\x63\x5e\x05\xdb\x4f\x02\x72\xe8\x60\ +\x26\x4f\xea\x15\xb1\xd2\xa9\x32\x18\xec\x3c\xba\x4f\x2e\x9f\x0b\ +\x86\x3c\x06\xc9\x95\x2f\xfa\xc3\x89\x24\xf5\xbe\x8e\x7d\xb7\x5b\ +\xe8\x6c\x59\xe0\x98\x42\xa6\xf1\x17\x80\x1c\x1b\x31\xcb\x96\x7b\ +\x40\x09\x67\x38\xc0\x16\xf2\x3b\x51\x5a\x0a\x7b\xda\x60\xd6\x24\ +\x6d\xf8\xa4\x35\xe2\x89\x81\x4f\x73\xee\x4f\x18\xa5\x87\x17\xed\ +\x63\x1f\xfd\x74\x7b\xdf\xbb\x7e\x7f\xbb\x73\xeb\x9e\xae\x01\xf8\ +\x5e\x8c\xb1\x11\x50\x74\x86\x19\x76\x61\x1e\x19\x33\xcc\xf0\x85\ +\x83\xfa\x2e\x9f\x61\x86\x19\x66\xf8\xad\x01\xcc\x02\x3c\xcb\x7c\ +\x12\xfa\x35\xb4\xf8\xee\x56\xc2\x3e\xfc\x6a\x67\x13\x79\xd1\x1d\ +\x69\x66\xaf\x18\x3c\x9d\x76\xeb\x76\xfb\xce\x3f\xfb\x67\xda\xf3\ +\xa7\x47\xed\x6d\x2f\x3c\xd3\xf8\xdb\x29\x80\x1b\x43\xeb\xcd\xba\ +\x3d\x3a\x63\x31\x6d\xdd\xbc\x88\xa5\x58\x5e\x84\x88\xd9\x75\xc0\ +\xc0\xd7\xe4\x1d\xea\x0b\x34\x61\x4c\xa0\xfd\xb1\x6c\x1e\xe4\x66\ +\x50\xd9\x84\x76\x60\xcd\x03\x8a\x45\x8c\x27\xfc\xe9\x87\x9a\x0b\ +\x60\x6e\xc6\xf3\x74\xda\xb4\x98\x16\xe0\x6c\x86\xd0\x4c\xb2\x00\ +\x41\x68\x9d\x12\x2e\x1f\xb2\x5b\x42\xc9\x82\x0c\xe5\xb0\x78\xe6\ +\x27\xd2\x16\xe6\xaf\x78\x52\x4d\xdf\x36\x6e\x17\xf5\xc1\x9f\x62\ +\xc9\x2c\x3c\xb8\xd4\xc5\x38\x4f\x6b\x3d\xb8\x6c\x9b\xd7\xcf\xdb\ +\xea\x93\x67\x6d\xf5\xa9\x0b\xbf\xfe\x70\xfb\x58\x78\xb9\x76\x5d\ +\x37\xb9\x40\xc5\x6b\xa0\xbc\x98\x90\x37\xe7\xb9\x10\x21\xa6\xd1\ +\x3c\xdc\xae\xdc\xa9\x37\x41\xe6\xe7\x7d\x73\x3c\x4d\x16\x8b\x6b\ +\x8a\xeb\xff\x60\x53\x7f\x9c\xeb\x92\xe8\x6c\xdb\xb6\x67\xda\x83\ +\x8f\x45\x1f\x0a\x1f\x6c\xdb\xe6\xc1\xa6\xad\x1f\xac\xda\xea\xfe\ +\xaa\xad\x79\x6a\x8e\x05\x3f\x90\x57\x35\xf2\xa4\x19\xff\x7b\x26\ +\x9f\x2d\xaf\x6c\x7c\xf3\xb2\x1d\x7c\xe6\xb2\x5d\xbd\x7e\x26\x3c\ +\xf7\x93\x68\x8b\x37\xd7\xed\xe0\xbe\x50\x79\xda\x23\x95\x7f\xa9\ +\xfe\xe0\xea\x4b\x75\xf1\x35\x9e\x3b\x54\x98\x6d\x12\xf1\xbe\x84\ +\x92\x40\x43\xaf\x54\x8d\xf2\xc5\x55\x19\x07\xa0\xbf\x4b\x65\x7b\ +\xf2\xf4\x03\x60\x92\x79\x29\xb2\xc6\x9c\xc1\x75\x48\x50\xdd\x0e\ +\xa8\x20\xaf\x05\x65\x31\xc7\xa5\x47\x3e\x27\xec\x6f\x30\x79\xeb\ +\x46\x54\x49\x49\x42\xe5\x92\x0b\x05\x35\x2e\xb8\xb6\xd5\x16\xda\ +\xc9\x4e\x69\x55\x9b\xe0\x53\xca\xec\x88\xec\xc6\x18\x4b\xa1\xf0\ +\xd3\x5a\x65\x4c\x88\x6e\xcd\x4c\xae\x90\x99\x50\x19\x4b\x27\xe8\ +\x66\x31\xa5\x17\xf5\x66\x9d\x15\x61\xa3\xcd\x6e\x84\xc6\x3a\x3c\ +\xc7\x5e\xf6\x49\xb8\x48\x9f\x71\x7c\xe3\xca\x59\x23\x56\x5b\x84\ +\x8d\x35\xb6\x2b\x1d\x2b\x51\x17\x5b\x12\x0e\xda\xe6\x42\x63\x9f\ +\xc5\xd8\x4b\x56\x99\x44\xd5\x90\x68\x55\xb4\xd7\xcd\x56\x06\x8e\ +\x71\xdf\xa0\x51\xf9\x77\xb6\x87\xed\xf6\x3b\x6e\xb7\x67\xbf\xe6\ +\x5e\xbb\xf7\x1f\x3e\xdd\x5e\xfe\xfd\x77\xdb\x53\x5f\xf1\x54\x3b\ +\x7c\xf9\xa0\x1d\x6e\xe5\x27\x47\x62\x30\x86\x3c\x8e\x84\xa4\x79\ +\xa5\xee\x78\xa5\xb7\x0f\x65\x86\x98\xfd\x8c\x80\x18\xbc\x8f\x41\ +\x0d\x0d\x2f\x72\xeb\x7c\xc2\x02\xd3\x56\xe7\xb9\x8d\x9f\x20\xd5\ +\x31\xe5\xe3\x56\x71\xe4\xb3\x51\x1d\xb7\xfc\x25\x9f\xce\x0b\x8b\ +\x03\x9e\x78\x8c\x7d\x75\xa4\x58\x87\x84\xa3\x1d\x1a\x74\xc4\x72\ +\xb9\x14\x84\x03\x28\x01\x12\x14\x8b\x2b\x1a\x3a\xa8\x91\xfe\x4b\ +\xc7\xb4\xa1\x0f\x88\xbe\xed\x22\x50\x0a\x67\xb6\x26\x20\x0e\x46\ +\x18\x2a\x15\x34\xc1\xed\x65\x71\x50\x6d\x5c\x9c\x6b\xbf\x70\x8e\ +\x7a\x70\xde\x36\x0f\xb5\xaf\xb4\xbf\xfc\x5a\xcb\xde\x47\x43\x68\ +\xea\x16\x43\x25\x6e\xe4\xa3\xed\x61\x61\xa2\x7e\x23\x58\x1b\xa6\ +\x08\x26\x8c\x9b\x89\x40\x95\x11\x7d\xb5\xa1\x5e\xc6\x2c\x3f\xeb\ +\xe0\xec\x94\xa7\x31\xb6\xf3\x04\x2a\xe8\x80\xe5\x84\x77\x82\x07\ +\x81\xe2\xa6\xce\x66\x54\xa9\x30\x9f\x59\x01\xbb\x83\xda\xfc\x4a\ +\x5a\x96\x6c\x75\x6e\x5d\x6b\x3f\xae\x34\x0e\xce\x2f\x75\xbe\xe4\ +\x47\x08\x32\x1d\xaa\xcc\xe5\xf2\xb0\x7d\xd5\xbb\x6f\xb4\xa7\x96\ +\x57\xed\xc3\xdf\xfb\x2f\xda\x4f\xfe\xd4\xcf\x47\x9d\x1d\xbf\xe8\ +\x0c\xbf\xbd\x80\x71\xc3\x57\x4e\x3e\x9d\xb6\x3e\x68\x3f\xf0\x93\ +\xff\xb4\xfd\xc2\x2f\x7d\xa8\xbd\xe3\xdd\xcf\xb6\xe5\xa1\x26\x12\ +\xd8\x18\x1b\x1e\xdf\x78\x33\x46\xc7\xb1\xa2\x11\xcd\xf0\x09\x56\ +\x9f\x3a\x53\x44\xec\x69\x8c\xc2\x5b\xe0\x63\x0c\x0b\x7a\x90\xf3\ +\x32\xb1\x23\x77\x14\x81\x01\xfa\xb9\x21\x4a\x03\xe2\x98\xe4\xfc\ +\xe7\xf9\x0b\xf3\x2d\x43\x04\xaa\xfa\x40\xbd\x20\xae\xe3\xa1\x7f\ +\x27\x62\x4f\xf4\x29\x28\x61\x60\xdf\x12\x38\x27\x78\x81\x2c\xe5\ +\xe2\xe2\x94\xa0\x44\x4c\x74\x21\x0b\x97\xf4\x78\x9c\x43\x6c\x43\ +\x52\x81\x3e\x1e\x39\x60\x0d\xb2\x13\x43\x9f\xd0\x28\x8d\x60\x93\ +\x9c\x60\xce\xfd\xa6\xb9\x15\x44\x68\x57\x7e\x74\xc1\xf7\x04\x8d\ +\xb1\x53\xce\x27\x38\x5f\x59\xef\x04\x83\x88\xca\x53\xd9\x48\x53\ +\x1a\x75\xb4\x0d\x3f\xfb\x82\xc4\x19\xd0\x7a\x58\xfc\x54\x15\xab\ +\x68\x63\xd9\x45\xd2\x25\x89\x60\x50\x16\x58\x55\x7a\x21\x7d\xa2\ +\xcd\x3d\x99\xe3\xc2\x3b\xc6\xa6\xa8\x65\x8d\x93\x24\xc6\xd8\x97\ +\xde\xcb\x21\xe3\x99\xfb\xb8\xf6\xb3\xf5\xc8\xc1\xf0\x31\x4d\x43\ +\xd7\x73\x5c\x84\x29\x7c\x6a\x21\xcf\x3a\x21\x69\x79\xb1\x95\xc5\ +\xf3\x10\x78\x7f\x6a\x8b\xea\x03\x6e\x4e\xe9\xd4\x66\xf4\xae\xa7\ +\xed\x34\xd0\x0e\x21\x67\x81\x94\x1d\xdf\xdf\xa0\xbd\x07\x3b\xb5\ +\x10\x90\xd5\x7a\x79\x58\x2d\x5f\x53\x64\x7c\x22\xaf\x6b\x17\xd9\ +\xc2\x86\xa6\xe6\x4e\x0e\x1a\x31\x40\x2e\x2f\xdc\x81\x09\x78\x17\ +\xb5\x77\xe6\xa7\x51\x51\xab\x2c\xd3\x31\x43\x47\x73\x22\x97\x80\ +\x3e\x2c\x3f\xd3\x09\xdc\x0f\x1d\xe5\xe7\x38\xb6\x18\x27\xbe\x6a\ +\x94\xba\x30\x24\xc9\xf8\xee\xe4\x28\xc1\xb1\x2a\x38\xe0\x3a\x20\ +\xb2\x30\xf9\x64\xec\x10\xe0\xe3\x98\xc2\x3b\x62\x96\x5e\xfe\x76\ +\x75\xd2\x21\x74\x13\x4c\xed\x9b\xe2\x07\x05\x34\x9f\xb1\x3d\xeb\ +\x22\x64\x54\x7b\xc1\x34\xb5\xe4\x2f\x7f\x3f\xe5\xb7\x5f\x40\x07\ +\xe9\xe5\xc8\x71\x3a\xf9\x03\xd7\xf9\xa7\x8f\xfa\x02\x2b\xa7\x1c\ +\x9f\x23\x24\xf5\xc3\x6f\x22\x3b\x80\x57\xc5\x07\xcc\x0f\x8e\x65\ +\xab\x6e\xa6\xba\x6e\x4f\xc6\x07\xfc\x03\x07\x61\x48\x91\x02\x78\ +\x54\x7e\xeb\xd9\x67\x52\x84\x4e\x29\x43\x4c\x98\xd3\x29\x7f\x2f\ +\xc5\x18\xa1\x9f\xc2\x8f\x68\xb1\x9f\xa6\xb8\x06\xc4\x51\x45\x8c\ +\x64\x81\x88\x20\x3a\x2a\x05\x1c\x27\x1e\x68\x10\x7d\x57\xdc\xb8\ +\x79\xa3\xdd\x7c\xf6\xac\x7d\xe3\xdf\xfb\xff\xb4\x63\x7e\xf4\xc8\ +\x8f\xd7\x9c\xb7\x0a\x18\x0b\x99\x61\x86\x19\x66\x98\xe1\xd7\x03\ +\xe2\xfb\x7f\x86\x19\x66\x98\xe1\xb7\x12\xec\x4d\x32\x47\xf0\x04\ +\x3c\x61\x67\x32\x5a\x73\xcc\x51\xf7\xab\x99\x6b\x56\xb0\xca\x03\ +\x05\x37\x9b\x76\x71\xb0\x69\xdf\xfd\x57\xbe\xb1\xdd\xfc\xc8\x6b\ +\xed\xdd\x2f\x3d\xdd\x6e\xdf\xbe\x21\x5b\x5c\xd8\x73\x93\xfb\xec\ +\xec\xb2\x3d\x3a\xbf\x6c\x5b\xfe\x39\x78\x1b\x37\xc5\x63\xe2\x2d\ +\x1f\x10\x50\x78\x17\x91\xf5\xe4\xe2\xcf\x6f\x67\xe3\x46\x68\xea\ +\xc9\x83\x10\x3a\x78\x32\x06\x94\x5c\xb6\x42\x25\xa1\xc3\x47\x18\ +\x17\x13\xaa\xf6\x6a\xa3\x84\x1b\xaf\x59\xbe\x61\xf7\xa2\x02\xff\ +\xe2\xab\xac\x24\x06\xc2\xdb\x0e\x55\x19\x5c\xa3\x5c\xf1\x03\x39\ +\x5e\xf3\xc8\x82\x9a\x17\xd5\x64\xe6\x0a\xd8\x75\x09\x57\xc0\x37\ +\x6b\x08\x7d\xbe\x69\xab\x47\x97\x6d\xf5\x99\x8b\x76\xf1\xe9\xf3\ +\x76\x21\xea\xc5\x2a\x9e\x10\xf3\xff\x45\xb1\xe8\xa7\xba\x72\x33\ +\xc6\x3b\x37\x70\xdc\xe2\x76\x10\x5b\x5a\x55\x48\xd7\xc4\x27\x78\ +\xd2\xb2\xa9\x1f\xae\x16\x49\xe9\x13\x61\xdd\xa4\x59\xa8\x2c\x2f\ +\x0e\xac\x25\xb3\xd8\xc6\x45\x0a\x4f\x9e\xe5\xff\xb5\x6d\x2e\xd5\ +\x75\x97\x57\x6d\xad\xba\x6f\xce\xd6\x6d\xc5\x2b\xf9\x2e\x36\x92\ +\xb7\x6d\xc5\xd3\x75\x67\xaa\x33\xaf\xa6\x7c\xa4\xba\xf1\xf4\xd9\ +\x63\xf1\x67\xa2\xbc\x5a\x32\x5f\x2b\xc9\xab\x22\x17\x6a\x12\xaf\ +\x5b\xf2\x7f\xa3\xa9\x7c\x75\x61\xef\xa3\xac\x92\xfb\x89\x6a\x59\ +\xab\xca\xc7\xa5\x67\x21\xc0\xbe\x15\xef\xfd\x8d\x98\x94\x3c\xce\ +\x17\x31\x8a\x1f\x73\xc2\x60\xca\x6c\x4e\xec\x56\xfe\xa2\xe1\x2b\ +\x41\xfb\xc0\x37\xb8\x18\x2e\x54\xac\x20\x56\x07\x9c\x77\x1a\x97\ +\x20\x1f\x36\x3b\x05\x87\xe0\x9b\x94\x56\xf5\x71\x19\xf1\xca\x07\ +\x44\x89\xaa\x18\xc1\xc0\xc2\x0f\x35\x90\x18\x92\xf7\x59\x0e\x93\ +\xde\x66\x51\xf3\xc0\x4e\xbd\x93\x0a\xdc\x4a\xfb\xa2\x4c\xc3\x4e\ +\xd9\x55\x4f\xa5\xf0\xa6\xb0\xc1\xd3\x05\x7e\xa2\xa7\x64\xdf\x08\ +\x8a\xc5\x8b\xb8\xda\x16\xf5\x31\x30\xe5\xe1\xd5\x99\x22\x7e\x1a\ +\xc1\x0b\xcf\x08\xd8\x5c\x12\xa8\x54\xed\x61\xd1\xf6\xea\xb1\x90\ +\x47\xbe\xd4\x38\x42\x51\x5f\x37\x49\x08\x75\xfb\x3d\x78\x0e\x9d\ +\xf3\xf8\x39\x9d\x7f\x7e\x8f\x2e\xb4\xdf\x77\xb7\xdd\xba\x75\xb7\ +\x1d\x3d\x7b\xda\xee\xbc\x74\xdc\xda\x89\xfc\x75\x52\xf1\x29\xc7\ +\x45\x10\x04\x36\xcb\x4b\x6e\xec\x26\x58\x77\x4b\x70\x46\xa7\x25\ +\x1a\x06\xc1\xc1\xc5\x2b\x4f\x64\x13\xef\x41\xa3\xe3\x42\xe7\x49\ +\xda\xb9\x58\x1e\xb6\x13\x5e\x01\xb8\x38\x51\xb5\x4f\x74\xce\x38\ +\x6a\x5b\xd5\x9f\x9b\x05\x8b\x18\x60\x51\x09\xc2\x40\x82\x8d\x78\ +\x4a\xe3\x18\xee\x0a\x9f\x63\x9d\x85\xfe\x83\x7a\xdb\x03\xdb\x09\ +\x98\x79\x0d\xe9\x65\xc5\xa0\xb5\x3a\x63\x70\x90\xba\x4d\x9c\x65\ +\xd2\x5f\x40\x2f\xf0\x34\xde\xc1\x7a\xdb\x16\x3a\xf6\x0f\x1e\xeb\ +\x1c\xf0\xf0\xa2\x5d\xf2\xe4\xa9\x64\x3f\xb1\x57\x15\xcf\xd0\xe4\ +\x76\xdd\xa8\x27\xe7\x45\x29\xa2\xac\x89\x0f\x9f\x09\xaa\x56\xe8\ +\x8a\xaf\x9b\x4d\xe6\x8b\x42\x94\xec\x2c\xaa\xd9\x12\x40\xb9\xbe\ +\xe1\x93\xaf\x0e\x8e\x73\xb2\x3e\x3e\x06\x87\x12\x07\x36\x80\x56\ +\xa7\xaf\xa4\xa8\x23\x1d\x1e\xfc\x48\x81\xba\xc1\x66\x3f\xed\xef\ +\x8d\x3a\x69\xb5\xd2\x39\x52\xfd\x74\xb6\xba\x74\xbf\xf0\x14\xce\ +\x7a\x7b\xd9\xbe\xea\xd6\x69\x7b\xd7\x73\xb7\xda\x9d\xcb\xf3\xf6\ +\xc1\xbf\xfd\x9d\xda\xd7\xea\x50\xb7\x83\x08\x4a\xcc\x47\x7b\x66\ +\xf8\x52\x87\xdc\xc7\x26\x5b\x7d\xdd\xeb\xbb\x54\x63\xe9\xdb\xbe\ +\xf5\x2f\xb7\x7b\x5f\xb6\x68\xb7\x9f\x7a\x2a\xce\x95\x79\x5e\xf0\ +\x90\x90\x98\xb9\xfa\xb8\x0b\x45\xf0\x35\xae\x49\x39\x64\x7c\xdc\ +\xb1\xa1\x40\xd6\x30\xee\xe7\x8c\x1d\x8c\x9c\x3e\x75\xc3\xa3\xac\ +\x7c\xb6\x54\xfa\x24\x94\x0b\xb4\x8e\x4d\xee\x10\xf3\x64\x9a\x9f\ +\x2e\x1e\x00\x1f\x97\xc4\x47\x15\x74\xd9\x3e\x1e\x03\x8a\x76\xb0\ +\x6b\x68\xbb\x2d\x99\x92\x8b\xba\xbd\xda\xe8\xa7\x40\x8e\x23\x0c\ +\x81\xd4\x8d\xef\x4b\x5e\xfd\x8b\x1c\xf9\x30\x02\xa1\xeb\xa0\xbe\ +\xa5\x6e\x5e\x90\xaa\x80\x76\x18\xfc\x29\x2b\x84\xf0\x77\x0c\x74\ +\xb1\x85\x2f\x7e\xa2\xbd\x2e\xf8\x88\x71\xb7\xa0\x0f\x71\x62\x76\ +\xcf\xa1\xb1\xe0\x17\xd4\xed\xc9\x2d\xfc\x83\x64\x80\x0e\xdd\x1e\ +\x42\xb2\xc9\x38\xb6\x15\x4f\x42\xfa\x51\xe3\x00\x29\x68\x17\x75\ +\x16\x38\x15\xcf\xb8\x0b\xde\xa2\xb3\xc5\x38\x29\x48\x7f\x29\xd1\ +\xf3\x1d\xc7\xc6\x19\x34\xc6\x57\xda\x6a\x8b\x41\x99\xf9\xc2\x61\ +\x92\x90\x51\x0d\x9a\x50\x59\x97\x1a\xa5\x56\x84\xcd\x54\x8c\xdb\ +\x83\x15\x65\xd8\x59\xb6\xa6\x3e\x69\xf4\xf1\xe0\x4c\xe8\x42\x25\ +\xc0\x1f\x5d\x82\xf4\x96\x6c\xaf\xfe\x21\x8d\x92\x23\x0d\x4d\x16\ +\x19\x75\x28\x3d\x7c\xca\xb4\x9f\x42\x6b\xe1\x2c\xa2\x05\xba\xce\ +\x06\x78\x48\x7c\x7f\x31\xa5\x8a\x5e\xac\x9e\x0c\x5f\xfb\x43\xb5\ +\x99\xe6\xbe\x42\x1d\x05\x51\x1f\xd5\x88\x4a\xd1\x06\xd9\x5d\x7f\ +\x9b\x62\x61\x28\x46\xf0\x84\x0e\x89\xd9\x31\xa1\xe8\x93\x6a\xdc\ +\x84\x6d\xd2\x15\xd7\x21\xb3\xe5\x73\x9e\x03\x20\x57\x79\xb1\x80\ +\xe6\x58\x35\x96\x4a\x4e\x1a\xf6\x5a\xbc\x0a\x0b\xbe\x01\x41\x53\ +\x1b\x90\x71\x76\x74\xf6\xab\xa3\x21\xeb\x2a\x07\xfb\x49\x08\x8c\ +\x1a\x45\xfe\xf0\xb4\x87\xc7\xfc\x18\x2d\xae\x59\xd0\xd9\x5f\x50\ +\xd4\x9a\x14\xea\x78\xad\x9e\x71\x18\x41\x95\xf7\x04\xb8\x4f\xa7\ +\x3c\x9c\x16\x08\x61\x0d\xc9\x13\x79\x42\x19\xf1\x07\xa3\xcb\x89\ +\x58\xdd\x36\x9a\xcd\x47\x09\xf6\xc0\x5c\x05\xa5\x5f\x90\x48\x09\ +\x17\x3d\x2a\xde\x63\x0b\x1d\x1a\x6d\x1a\x5b\x71\x1c\x8f\x7c\xca\ +\x43\xde\xe2\x7d\xce\x80\x86\x40\xb2\x03\xe4\x4d\xa3\x63\xc0\xf7\ +\xdc\xfa\x90\xa3\xca\xa2\xca\x3c\xf5\x7c\xeb\xde\xb6\xbd\xf6\xf8\ +\xdf\xb4\x1f\xfb\xf1\xef\xd7\xdc\x5a\xb6\x27\xf6\xd7\x0c\x33\xcc\ +\x30\xc3\x0c\xbf\x9e\xe0\xa9\xc9\x0c\x33\xcc\x30\xc3\x97\x04\xd4\ +\xbc\x73\x9c\x4f\x8e\xf3\x4a\x78\xcf\x48\x2d\x05\x2d\x1d\xf0\xe4\ +\xfc\x36\xc0\x7a\x25\x95\xd7\x98\x19\x45\x17\x8b\x93\xf6\x81\x3f\ +\xff\xdf\xb5\x77\xdc\x3e\x6d\xef\x7d\xe5\xb9\xc6\x5f\x16\x61\xc3\ +\x85\x5f\x25\x3f\x7c\x74\xde\x56\xeb\x95\x26\xbf\x6b\x69\x43\x6f\ +\x0f\xb2\x13\x4c\x8a\x54\x19\x62\xc2\xdc\xfc\x0a\x3e\xdb\x12\xcd\ +\x73\xd6\x4e\x64\x52\xad\xd4\x1f\x20\xfc\xec\x16\xbc\xec\xf6\xf1\ +\x27\x9d\x54\xe6\x96\x27\x47\xf8\xa5\x34\xe8\x8f\x92\x0e\x75\xe9\ +\x60\x53\x40\x2a\x20\x35\x57\x0f\x55\x96\x47\x7d\xa0\x4c\xe6\x0f\ +\x41\x29\x4c\xa5\xa4\x0d\x82\xac\x86\x40\x51\xb7\x2a\x83\x3a\x3c\ +\xbc\x8c\xd7\x1e\xbe\x29\x7a\xff\xa2\xad\x1e\xae\x62\x91\x6a\xbd\ +\x8e\xbe\xba\xe2\xc6\x1a\x17\x3c\x54\xd2\x97\x3e\xae\x53\xd4\x2b\ +\xe5\x1e\x57\xe0\x2b\x25\x7c\x53\xb4\x54\xba\xe2\xc8\x13\xf9\xd2\ +\xcd\x3a\xdb\xc9\x50\x7a\x6e\xec\xbb\xfc\x58\x48\x62\x11\x94\xbd\ +\xe7\xa7\x6f\x2e\xa5\x67\x61\xed\x62\xd3\x56\x97\x2c\xa8\x6d\xda\ +\xd5\x63\x59\x2f\xd6\xcd\xff\x47\xc7\x6b\x22\xfd\x44\x9d\x7c\xd5\ +\x4e\xbf\x16\x4e\xf9\xe3\x7f\xa0\x44\x85\x15\xdf\xe8\x7a\x47\x2b\ +\x22\xb5\xdb\x13\x60\x2f\x25\xf4\xf9\xe4\x19\x50\x92\xf7\x07\x1b\ +\x34\x31\xac\x21\x58\x2e\x91\x0d\x1e\xe8\x0c\x65\x67\x1d\x0d\xaa\ +\x9f\x3e\x2c\xa8\x5d\x69\xbf\x78\x5f\x64\x00\xb2\xc4\x78\x14\xc3\ +\xbe\x67\xbc\x15\xc5\x27\xdc\x12\x4a\x10\x32\x76\xab\x3c\x93\xe0\ +\xd1\xf5\x66\xa7\x39\x0a\x11\xed\xc5\x3a\x11\x02\xf2\x17\xeb\x11\ +\x2b\xbb\xa9\x52\x57\x11\x19\x5a\xdd\x8b\x02\xa8\x72\xf1\x8d\x4f\ +\x24\xc2\xcc\xb6\x5b\xb7\x2a\xbf\x28\x89\xf8\x38\xb6\xd4\x10\xd1\ +\xfe\x14\xa9\x17\xc0\xa5\xe3\xf8\xa7\x4f\x22\x63\x66\x85\x26\x92\ +\x87\xac\xf8\x80\xa9\x5f\xd6\x8d\x25\x50\x39\x19\x5f\x8d\xd7\x83\ +\xb2\x10\x9f\x0d\x91\xc9\xb4\xd7\xd5\x69\xc4\x3f\xd4\xd8\x3c\x55\ +\xe0\xc3\x97\x4e\xda\xc9\xab\x47\x6d\x71\x7c\xdc\x0e\x2e\x0f\x35\ +\x2e\x8f\xdb\xf9\xf9\xa2\x31\x3c\x37\x8b\x4b\xc5\x5f\x47\x9f\x44\ +\x00\x33\x0e\x5b\x68\xdd\xd4\x1f\x7d\x97\xc3\x3b\x09\x4b\x6d\xd7\ +\x82\x7c\xbc\x41\xf1\x77\x16\xfa\x46\x81\x4e\x4e\xda\xf2\xde\x9d\ +\x76\xf4\xea\xed\x76\xf3\xde\x73\xed\xe6\xe1\xcd\xb6\xb8\x3a\x69\ +\x2b\xea\xae\x82\xb8\x01\xe5\x22\x44\x69\x5f\xd5\xcb\x92\x05\x25\ +\x59\xc9\x7a\xdd\x4e\xdf\x67\x80\x7d\x8a\x89\xa2\xe1\x9c\x17\x78\ +\x2b\xba\x0f\xf4\xb7\x32\x53\x07\xce\x19\x71\x43\x2b\xa0\xeb\x89\ +\xae\x63\xdc\xc7\xfd\x39\xaf\x71\xcd\x57\xd5\x9e\xf1\x54\xed\x56\ +\x7e\xb2\x67\x36\x8a\xe9\x63\x40\x82\x9f\x52\x4b\xde\x50\xe1\x25\ +\x87\xaa\x0c\x09\x3b\x22\x42\xd4\x6f\xa7\xaf\x75\x8e\xe1\x29\x18\ +\xbf\x1a\x77\x28\xdb\x90\xc7\xdd\x32\x17\x70\x29\x57\x69\xe8\xb1\ +\x57\xfc\xa2\xc5\x88\xec\x98\x28\x54\x9d\xe9\xd0\x28\xc4\x38\x8e\ +\x02\xb2\x3f\x7c\x4e\x48\xa0\xfd\x6b\x9d\x43\x57\xab\x55\x3b\x3b\ +\xbb\x50\x9f\xe8\xdc\xa8\xae\xba\xa1\xf1\x7c\xb4\x5e\xb6\xdf\xfd\ +\xf6\xbb\xed\x56\x3b\x6b\x3f\xf7\xa3\x3f\xde\x3e\xf6\xfa\xeb\xfe\ +\x6e\x70\x00\x53\x90\x7a\x56\xe9\x33\x7c\xa9\x03\xc7\x19\xb7\xf9\ +\x59\xad\xfe\x37\x3f\xfd\x73\xed\x97\x3e\xf9\x83\xed\x95\x77\xdd\ +\x6b\xc7\xfc\x87\xa7\xce\x0f\x9c\x1d\x34\x7c\x34\x26\x62\x90\x4d\ +\x63\x03\xca\x18\x8c\xf3\x05\xe3\x26\x87\xa4\x80\xe3\x44\x63\xd3\ +\x03\x56\xba\xfa\xf1\x83\xb6\x1a\xaa\x96\xf0\xb5\x9e\xe3\xc3\xca\ +\xd0\xb3\x39\x4e\x00\xf2\x5b\x41\x16\xd1\x81\x32\xd7\xcc\x03\xf8\ +\x91\xce\x4e\x8c\x4a\x82\x10\xdf\x3f\xa0\xa2\xfc\x2c\xcc\x7a\x61\ +\x9c\xf3\xd0\x00\xd9\x3e\xa0\x33\x7b\x50\x7d\x50\x0d\xf6\x79\x00\ +\x8c\x45\x76\x9f\x27\xc2\x10\xc7\x19\x1c\x66\x0a\x32\x92\xdf\x8a\ +\x6c\x37\x3e\xe8\x86\x02\x23\x9b\xa9\x7d\x89\x13\x41\x7a\x5f\xe3\ +\x8d\x8d\xc3\x18\xb0\x9f\x29\x00\x1f\xb2\x53\x32\x78\xcf\x8a\xea\ +\x83\x4f\x59\x23\x1f\x48\x5c\xd5\x3d\x02\x3b\xae\x63\x87\x63\x2f\ +\xc7\x90\xfa\xb8\xb9\x8c\xfb\x60\x4c\xdb\x04\xa5\xa0\xae\x81\x3b\ +\x0e\x62\x23\x8a\x80\x72\x93\xa5\xc0\xf0\x54\x9e\xaa\x8f\x0d\x55\ +\x67\xb3\x3d\x8f\x6d\xf0\xc5\x08\x49\x19\x83\xb5\xa8\xd4\xc7\xa5\ +\xa9\x8f\x04\x46\xa3\xf5\x95\x27\x3e\xe8\xc8\x37\xe9\x23\x6f\xd8\ +\x02\x26\x5a\xb1\xad\xf3\x27\x6c\x3e\x5f\x5b\x41\xdf\x8a\x66\xb5\ +\xdd\x97\xe1\x1a\xc0\xbc\x0e\x73\xb6\xd9\x06\xc7\x4b\x7e\x84\xae\ +\xae\x2d\x5c\xa3\x7e\x71\x0c\x33\x07\x8a\xef\x0a\xb5\x30\x8c\x61\ +\x87\xef\xdf\x8b\x29\x9b\xe2\x27\x54\x1d\x89\x47\x25\x6c\x72\x39\ +\x00\x7a\x71\xf5\x54\x29\xb6\xc1\x5e\x0b\x66\xf6\x2a\x1e\x83\xe3\ +\x44\xcc\xf8\x7e\x9f\x6c\xb6\x0b\xf9\x9e\x5e\xe2\x53\x55\xb5\xaf\ +\x12\xf9\xb9\x2f\x04\xe9\x9a\x58\xda\x02\x64\x67\xb0\xcd\x9c\x12\ +\xd3\x1a\x9f\xfc\xd8\xc8\x1c\x30\xe5\x9f\x74\x01\x8e\x9d\xca\x5e\ +\x97\x10\x05\x19\xdb\xd9\x49\x52\x0e\x45\xec\x53\x68\x62\xaa\xbb\ +\x22\xab\x92\x79\x00\xb5\xd9\x3e\x68\x22\x5e\x97\x54\x38\xd2\x58\ +\x9f\x09\xaa\xdc\xca\xb1\x07\x32\x3e\xa9\xcf\x38\xce\x98\x56\x55\ +\x08\x8e\x63\x3e\x4e\x53\x4a\x42\x61\x7e\x2a\xa5\x20\xf4\xd3\xb5\ +\xcb\x2e\x8c\xde\xdd\x43\x0c\x91\xe2\xe5\x1b\x24\x03\x64\x06\x7c\ +\x7b\xd5\xa0\x8c\x05\x30\xa3\xb0\x1f\x34\xa5\x32\xed\x73\x3a\xe9\ +\xab\x0c\xe7\x23\xe9\xb8\x23\xe8\xe3\x4a\x04\x14\x4d\xc0\xc3\xfe\ +\x99\x27\x73\x48\xe4\x7c\xb1\xf0\x35\xc3\xf2\xe8\xa4\xdd\x7b\xf1\ +\xaa\xfd\xc0\xbf\xfc\x0e\x19\xce\x1d\x23\xfa\x06\x04\xf6\x82\xce\ +\x30\xc3\x0c\x33\xcc\xf0\x05\x05\x7d\x05\xcc\x30\xc3\x0c\x33\x7c\ +\xe9\x40\x4d\x21\x77\x60\x9c\xac\x8e\x0e\xa5\x2f\xdd\xb5\x99\x9f\ +\x84\xbc\xee\x82\x6b\xe7\x8f\xee\xb7\x0f\x7c\xdd\x37\xb4\x17\xd6\ +\x6f\xb6\xf7\xbe\xf2\x74\x7b\xf6\xce\xed\x58\x23\xd1\x44\x97\x89\ +\xfa\xd9\xe3\xc7\xed\x8c\x1b\xad\xeb\x78\xc2\xc4\x37\x04\x94\x97\ +\x8b\x97\xba\x88\x76\xb9\x59\x17\xa6\xcc\xe8\xf8\xdf\x99\xb0\xa7\ +\xde\xfe\x62\x72\xc2\x2e\x82\x36\x74\x4a\x62\x31\x23\xf9\x41\x0f\ +\x20\x03\x71\x31\xcc\xcd\x56\x9e\x4e\xdb\x44\x5d\xaa\xe0\xb7\x80\ +\x6e\x1d\xea\x47\x1a\x28\xa5\xca\x70\x5b\x72\x21\xed\xe0\x68\x39\ +\x3d\x75\x43\x9d\xf0\xa3\x1e\x99\x7f\xa9\xbe\x59\xf2\x9a\xb4\x07\ +\xbc\x12\xf1\xdc\xaf\x49\x5c\x3f\x58\xb7\x75\xbe\xd6\xce\x4f\xa4\ +\xe1\x9b\x17\x53\x94\x02\x4c\x35\xb5\xd1\x1c\x50\x17\x35\x23\xd4\ +\x85\xb1\x31\xdb\xec\x40\xd3\x8e\x4b\x5a\x51\xb1\x97\xad\x74\xc1\ +\x91\x2d\x5e\x45\x24\x17\xae\xea\xb8\x1b\xac\x3a\x52\xee\x92\x9b\ +\x64\xc2\x83\xb6\x6a\x6d\xbd\x6a\x07\x17\x17\x6d\xf9\x58\xb2\xda\ +\xb1\x70\x1f\x67\x3e\x6d\xba\xce\x37\x75\x35\x1c\x5d\x3c\xfd\x12\ +\x9f\x41\x5f\xa0\xd2\x5d\x8d\x49\xbb\x63\x77\x3c\x41\x29\x45\x1d\ +\x2f\x79\xf7\xb9\xe5\x28\x27\xb0\x5a\x94\x30\xb0\x2e\x4c\xb2\x8b\ +\x04\x3c\x48\xa3\x27\xfc\x9f\x27\xb4\x9b\xd7\xf7\x6d\x79\x8a\x24\ +\x7c\xdd\x9a\x8a\xcd\x80\xf4\x55\x65\x5d\x59\x26\xa6\x1d\xd7\x70\ +\x4f\x26\x6d\xa1\x0c\x52\xa5\xf1\xf4\x96\xa1\x9b\x92\xd9\x81\xd0\ +\x61\xb3\x3b\xc5\x76\x3d\x91\x88\x15\xf5\x64\xdc\x07\xa4\x07\x75\ +\x32\x07\x24\x87\x8e\x38\x59\xa7\xa8\x73\xd0\x91\xc7\x3d\x74\x51\ +\x60\xe8\xe2\x58\x0d\x1a\xb7\x8c\xa6\x3c\xd2\x7b\x91\x31\xed\x79\ +\x4c\x2c\xcc\x47\x3e\xc7\xd3\xc6\x4d\x8a\xad\x79\x0d\x1d\xd5\x7d\ +\xf3\xf8\xb2\x5d\xf1\x2a\xd4\xab\x18\x6f\x8e\x27\xea\x6a\x4a\x64\ +\x4c\xd9\xf9\x20\x7e\xbd\xbc\x15\x2e\x4e\x0e\xdb\xc1\x8b\xdb\x76\ +\x78\x7a\xaa\x71\x28\xcf\x23\x1d\x5b\xab\x75\x3b\x7b\xed\x51\xbb\ +\xfa\xcc\xaa\x5d\xad\xe5\xbb\xe0\x29\x21\xf5\x50\x96\x65\x10\x43\ +\x3f\x11\xc3\xe7\x09\xaa\x5f\xa6\x64\xbc\xdb\xa3\x1a\xae\x47\xa8\ +\xa9\x84\x78\x19\xe2\xb8\x03\x26\x9b\xeb\xad\x8a\x72\x2b\x77\x79\ +\xc8\xb1\xb2\x68\xcf\x1c\x5d\xb5\x97\xde\xf7\x4a\x7b\xe1\x7f\xf3\ +\xbe\xf6\xcc\x1f\x7d\xb5\xdd\xf9\x03\xef\x68\x37\x5e\xb9\x23\xb7\ +\x83\x76\x79\xa8\xb6\x52\x00\xd9\x1c\x83\x48\x11\x97\x3a\x15\x1f\ +\x10\xf1\xa3\x2c\x41\x32\x78\xd8\x2b\xeb\x33\x45\xd8\x87\xd2\xee\ +\x5a\xfb\xd8\x71\x74\xfa\x04\x51\xe7\xf3\x54\xfb\x86\x4d\xef\x23\ +\x94\x52\xeb\xdc\xe0\xd7\x40\xf2\xba\xd8\x87\x2c\xaa\x5d\x7a\x51\ +\x6d\xcd\x0f\x07\xf0\x1f\x11\xa0\xef\x85\xe3\x6b\x82\xa2\xfe\x4e\ +\x3a\xed\x7b\xa8\xcc\x64\x27\x0c\xfc\x08\x56\x90\xd4\x77\x8c\x50\ +\xc7\xac\x17\xf2\x33\x0f\x37\x97\xe3\x35\x76\x4b\xa1\xc6\x9d\xc6\ +\x65\xdf\xcf\x53\x31\x01\xc5\x14\x95\xa3\xeb\x28\xa0\x4e\xc1\xa6\ +\xb1\x7c\x46\xa0\x7f\xd8\x0e\x34\x92\xc5\x5f\xae\x56\xed\xfc\xec\ +\xb2\x3d\x7e\x7c\xa1\xfd\xaa\x73\x89\x32\x6d\x0e\xd6\xed\xab\x9e\ +\x7f\xaa\xbd\xfa\xb6\xd3\x76\xfc\x89\xd7\xda\x77\xff\xbd\xef\x69\ +\x97\xfe\x31\x8a\xcd\x01\x59\xf7\x19\xbe\xf4\x21\xc6\x3a\x4f\x59\ +\xea\xbb\xf4\xe0\xb8\x7d\xe0\x9b\xff\x74\x7b\xf1\x7d\x37\xda\xcd\ +\xdb\xb7\x35\x56\x39\xfe\x18\x4f\xf2\xf3\xf1\x62\x57\xe7\xb2\x50\ +\x83\x3c\x34\x1d\x0d\xc9\xe0\x62\x57\xe1\xce\xd7\x4f\xa7\x71\x3c\ +\x32\x73\xe3\xb4\xed\x73\xb5\x64\xdb\x13\x06\xf6\x09\xe8\x36\x95\ +\xe3\xb1\xaf\xfa\x32\xd7\x02\xeb\x1c\x90\x45\x39\x71\x7b\xf5\xd1\ +\x91\xe8\x72\x62\xd1\xc2\x56\xd4\x01\xc9\xd8\x77\x80\xa9\xb5\xd7\ +\x40\x37\x46\x99\x83\x22\x29\xfa\x90\x7a\x58\xc9\xc1\x46\x1d\x0d\ +\x43\x91\x0e\x93\x36\xd0\xfb\x01\xdd\xe0\x53\x40\xdb\xe3\xbc\x98\ +\x85\xc8\xb1\xce\x93\x15\x20\x9a\x19\x3e\x9e\x5f\xe0\x43\xd0\x04\ +\x7b\x67\x7f\x05\x8f\x98\x31\x2c\x24\x2b\xc0\xc7\xdf\x85\x05\xf0\ +\xf8\xba\x82\xd8\xa1\xd1\x83\x1e\x03\x96\x4a\xbf\x07\x18\x46\x70\ +\x1d\x68\xd1\x68\x1a\xe3\x46\x1d\x0b\x8a\xe7\x9c\x37\xdd\xd8\x0f\ +\xad\x9b\x27\xa4\x26\xde\xe8\x04\x21\x9b\x01\x1e\x55\x9f\x37\x95\ +\x2e\x7c\x42\x8d\x92\xc1\x99\x34\x91\x51\x5b\x7a\x4c\x91\x63\xda\ +\xc2\x1f\x48\x8d\x55\x4a\x54\xc5\x6a\xc1\x98\x4e\x24\xad\xd1\x54\ +\x6b\xac\x8b\x42\x52\x9e\x78\xa3\x6c\x65\x77\xdd\x73\x8e\xe3\x39\ +\xcf\x30\xdf\xe1\x7b\x08\xa7\xf0\x8d\x63\x8f\x03\x2f\x8f\x40\x95\ +\xa7\xf6\xf8\xf1\x73\x7d\x5f\xf1\xfd\xe3\x0d\x39\xf2\x78\x23\x4f\ +\x34\x5b\xf9\x73\x6e\xa4\x8d\xce\x46\x17\xfd\x83\x0c\x0f\x88\x41\ +\x1f\x46\x91\x90\xdd\x3c\x97\xe1\xac\xa6\xc0\x92\x4e\xf7\xab\x10\ +\x5b\x3b\x5e\x2e\xdb\xa1\x2e\x60\x16\x9e\xc7\xe4\x96\xe1\x02\xb2\ +\x10\x2b\xaa\x57\x8b\x06\x98\x67\x6c\x44\x89\xc6\x69\xde\x14\xf6\ +\xac\x45\xf8\x88\x0d\x5d\x78\x87\x3c\xc5\x74\xeb\xca\xa7\xb7\xc9\ +\x24\x21\x7d\xa7\x22\x0c\xf6\x37\xb7\x6b\xf0\x3c\xae\x06\xaa\x15\ +\x24\xe5\x03\x9d\xf8\xa8\x77\xd4\x76\x72\x53\xed\x24\x78\xce\x2d\ +\xda\x6d\x95\x97\x63\xc2\x7e\x01\x61\x2b\x3f\xe6\x05\x93\xae\xa0\ +\x5a\x3b\x3d\x99\x1f\xbd\xf7\x56\x0b\x67\xd7\xc3\x35\xbe\x52\xf9\ +\x3c\x6d\x9b\xce\xd5\x26\x28\xc3\xd7\x44\x45\x66\xe9\x4e\x3b\xa0\ +\x57\x47\x63\x8b\x7e\x17\x8f\x2c\xf4\x0f\xe5\xd2\xde\x41\xd9\xa7\ +\xa7\x0c\x6d\x16\x6f\x56\xb6\xf0\x1f\xc1\x76\x90\x98\x49\x81\x5e\ +\x0b\x89\x0b\xc6\xe3\xd1\xa1\x5f\x9f\x7d\xeb\xee\x51\xfb\xf8\x83\ +\x1f\x6f\xbf\xf0\xb1\x9f\xd4\xf7\x0d\x3f\xc0\xc3\x77\xaf\xce\x33\ +\xcc\x30\xc3\x0c\x33\xfc\xba\x00\xdf\xc5\x33\xcc\x30\xc3\x0c\x5f\ +\x5c\xc0\x3c\x30\xe6\x8f\xd7\x03\xf6\xcf\x77\xae\x58\xb1\xf6\xfd\ +\xf7\xf5\xd7\xc5\x43\xe7\x59\xf5\x64\xdc\xa9\xd6\xe5\xaa\xad\x8e\ +\x0e\xda\x3f\xf9\xab\x7f\xa1\xbd\x7c\x74\xd5\xde\xfb\xb6\x17\x34\ +\xb9\x95\x8f\x9c\xfc\x64\x95\x90\xc5\xb4\x4b\x9e\xec\xc9\xa7\x94\ +\x1c\x49\x76\x26\xd6\xbe\xe8\x90\x30\xc5\xb4\x21\x7f\xe5\xa6\xd3\ +\x33\x93\x69\xab\x42\x8f\xaa\x74\x91\xa4\xcc\x04\xbe\x16\xd3\x12\ +\x83\x47\x67\x2f\x81\xca\xd2\xc4\xfd\x6a\xb5\xf5\xab\x0c\x7d\xf3\ +\xd7\xba\x34\x0f\xf0\x84\x6a\x54\x98\x57\xe2\xd8\x4a\xa8\x26\xf5\ +\x65\x01\x2d\x9f\x4a\xbb\x82\xc6\xb5\x72\xa0\xdb\x7d\xd5\x0e\x37\ +\xd2\xf3\x7f\x64\xf7\x2f\xdb\xe6\xcd\xf3\x76\x75\x7f\xd3\xb6\x8f\ +\x85\x17\xab\xb6\xb9\xd4\x45\x00\xff\x8d\x46\x7f\x57\x9f\x17\x1b\ +\xd2\xd4\x14\x41\x15\x3f\xf2\xa3\x0e\xe8\xd7\x85\xc2\xe8\xf9\x08\ +\x16\x97\x63\x81\xf0\x60\x6d\xa1\x03\xc2\xd7\x37\xf1\x60\xb5\x2f\ +\x59\x50\x63\x97\x71\x8d\xef\xfd\xd7\x4e\x24\x1f\xb6\xc3\x8b\xa3\ +\x76\x74\x75\xd4\x0e\x36\x37\xda\xc1\x5a\x17\x38\xdc\xdd\xd9\xf2\ +\xca\xbf\x4d\xc4\x21\x80\xeb\x11\xb4\xea\x25\xc9\x4c\x5c\x28\x96\ +\x8c\x7b\xe7\x12\x47\x50\xb9\x71\xdd\x39\x41\x64\x37\x64\x68\x83\ +\xfb\x04\xf4\x3e\x22\x8e\xfa\xdf\x06\x92\xdd\xc8\xa1\x0a\x3b\xe3\ +\xc7\xb6\x2c\xde\xd5\x21\xe1\x69\x3d\xc6\x0d\x3a\xec\x72\xe6\xf6\ +\x47\xdd\x78\xac\x02\x63\x0c\xc6\x8d\x13\x64\x5f\x2f\xa2\x23\x83\ +\x3e\xe8\x7a\x00\xa3\xa3\x04\xcf\xc7\xfd\x64\x26\x66\x29\x36\x4d\ +\xf9\xe3\x38\x28\x8c\xca\xb8\x8e\x5e\x2c\x10\x1d\x76\xbc\x8b\x29\ +\xc8\xfe\xef\x98\xfd\x6e\xc1\x3a\x95\xe0\x72\xf7\xf8\xd1\xbe\xf7\ +\x8b\x6a\xf3\xb4\x5f\x38\x1d\xb7\x81\xf6\x4d\x9d\x9f\xdc\x13\xf6\ +\x13\x84\xb3\x4a\xc7\x96\x71\xae\x88\x01\xa5\x48\x16\x97\x1f\xaf\ +\xda\xfa\x6a\x2d\x0f\xea\x8d\x5f\xd4\x21\xc6\x47\x2c\x7e\x59\xa5\ +\x62\x96\xe2\x19\x77\x47\xa7\x1a\x7f\x77\x17\x6d\xcd\xa2\xb6\xf6\ +\xd7\xa5\xc6\xe0\xd5\xa3\xcb\x76\xf1\x89\xc7\xed\xe0\x4d\x16\x37\ +\xb8\xa8\x8f\x0b\x7b\x9a\xef\xb2\x28\x3e\x88\x90\x14\x06\x7b\xf6\ +\x27\x90\x5d\x67\x88\xe2\x2b\x99\xf4\x86\x32\x0a\x55\x4f\x6f\xa2\ +\x74\x05\xeb\xce\xcf\xdd\xd8\xb6\xa7\x7f\xff\x3b\xdb\xe9\x7f\xfa\ +\xf6\x76\xf3\x0f\x7d\x65\xbb\xfa\xc3\xbf\xb3\xdd\xfb\x4f\xdf\xdb\ +\x4e\x7e\xc7\x8b\xad\xdd\x55\x3b\x36\x0b\x1d\x6a\xd4\x82\xfc\x15\ +\xaf\xa0\x78\xe8\xa4\x0f\x29\xe4\xbe\x4b\x13\x7a\x1b\x13\x76\x79\ +\x9c\x03\x77\xa3\x05\x04\xa7\xba\xb8\x3e\xb0\xd5\x27\xec\x0b\xf6\ +\xaf\xf6\x97\x17\x4b\xc3\xd7\xaf\x80\xe4\xae\x0c\xe7\xd8\x47\xeb\ +\xb6\xe1\x3c\x77\x36\x9d\xfb\xa7\x88\x0e\xa5\x7c\x8a\xe5\xf1\x51\ +\x4a\x97\x22\x37\x51\xca\x09\x29\x69\x4a\x10\xb3\xbd\xc5\x4e\x8b\ +\x52\x8c\xfb\x9c\xef\x1f\x1d\xab\x7e\xad\x6f\xf9\x40\xa8\xbb\x86\ +\x20\x4f\xa9\x79\xbc\x32\x26\xdd\x9e\xa0\xc4\x76\x78\x00\xc6\x79\ +\x94\xa4\x32\xfc\x60\xba\x6a\x87\x72\x9a\x71\x69\x12\xe2\xa6\x9a\ +\x6b\x93\xff\xa5\xb6\x6e\x8f\xcf\x2e\xf4\xb5\xa9\x3e\x51\x9c\x23\ +\x39\x1f\x5e\x2d\xdb\xef\x7e\xdb\xed\xf6\xfc\xd1\x65\xfb\xa9\xef\ +\xfe\x9f\xda\x1b\x6f\xde\xf7\x78\x71\x0c\x27\x13\x54\x39\x33\x7c\ +\xa9\x41\x8c\x75\x46\x2a\xa7\x89\xab\xf5\xa2\xfd\xc8\xbf\xfa\x50\ +\xfb\x85\x5f\xf9\xa1\xf6\xd2\x4b\xcf\xb5\xe5\xd1\xb1\x8e\x9f\x61\ +\xa1\xdd\x27\x93\x3a\x76\x84\x1e\x6c\x7c\xa4\x63\xec\xe0\x37\x80\ +\x25\x86\xa2\xb2\xc5\x82\xb2\x34\xce\x17\x46\xc7\x08\x55\xca\xd0\ +\xf8\x4e\x82\x2d\x18\xf9\x11\x32\x9b\x01\x1a\xf3\x3a\xa6\x0c\xbc\ +\xea\xb1\x8e\xbf\xc1\x4b\xc4\x5c\xa7\x7c\x77\xc0\x87\x9d\x14\x24\ +\x97\x73\x5a\x3d\x9d\x0f\x1c\x5d\x42\xc9\x23\x50\x56\xe4\x53\xda\ +\xcf\x39\xce\x91\xb2\x26\x0f\x3e\x29\x26\x5f\xb6\x52\xc9\x96\x1a\ +\x9b\x8a\xdf\x2f\x0b\x39\x74\x38\x09\x25\x58\x4e\xc7\x1e\x03\xb0\ +\x90\x06\x0b\x85\xe8\x06\x8c\x8f\x21\x34\x7c\xd7\x29\x25\xbe\x3e\ +\xd4\x2c\x3d\x93\x9f\xd0\xe7\x28\x78\x08\x72\x42\xc5\xdb\x07\xe7\ +\x51\x1a\xa7\xa8\xc9\xbf\x20\xec\x9f\x4f\x9c\x89\x92\x27\x72\x65\ +\x9d\x3a\x84\x36\x7c\x94\xf2\x09\x92\x32\xa9\xb9\xd4\xe4\x66\x53\ +\xd8\x0b\x3d\xbf\x18\x7c\x8a\xa7\x88\xe0\xd2\x6e\x5f\xb2\x24\x3f\ +\x79\x9a\x8b\xda\x95\x2d\xf5\xe1\xd4\xf3\xda\x4f\x4c\x6f\x15\x36\ +\x17\xa4\xd4\x63\xc8\xee\xf6\xf3\x86\x60\x1f\x92\xd0\xb9\xd5\xfe\ +\x30\xc0\xf1\x01\xeb\xd8\x4a\x3e\xf5\x3a\x3a\xad\x73\x0b\xd0\xd5\ +\xf1\xed\x70\xc5\x27\x6a\x73\xe0\xe2\xf0\x31\x47\x8c\x90\x01\xba\ +\xcb\xb2\x36\x85\x93\x5c\xfb\x41\xe8\x24\xda\x06\x20\xd2\x2c\xca\ +\x47\xe0\x47\x8d\xe0\xbd\x3b\xcf\xb7\x17\x9f\x7d\xa5\x3d\x7d\xeb\ +\xb9\x76\xeb\xc6\xad\x76\x28\xdd\x01\x7f\xf8\x2a\x9f\x28\x27\x62\ +\xe4\x61\x6f\xc9\x6a\x38\x31\x71\x3e\x8a\x72\x63\x6c\x14\x88\x57\ +\xa6\xa8\x7b\xc8\x79\x10\x4e\x3e\x29\x4f\x63\x0a\x04\x82\x52\xdf\ +\x11\xa2\x4d\x49\x0b\xec\x1a\x79\xa7\xe3\x23\x62\x86\x94\x36\x53\ +\x52\x51\x95\x1b\x7b\x4f\x38\xf4\x51\x00\x7a\x79\xf2\x23\x23\xa4\ +\x7e\x7c\x6a\x33\x4d\xc8\xe3\x2a\xea\x18\x7b\x27\x20\xf4\xa5\x80\ +\x84\xa6\xb8\x88\x6f\xbe\xda\x2f\xc2\x32\x26\xd3\xab\xa8\x9f\x3f\ +\xc6\x27\x60\x2a\x68\x62\xcd\x44\x7b\xba\x58\x90\x41\x88\xbd\xe1\ +\x87\x83\x59\xa6\x21\xdb\xb0\x0f\x95\xbf\xf6\x9d\xa9\x92\xdd\x31\ +\xba\x0f\xa9\x71\x06\xb0\x7c\x94\xe6\x8e\xec\xa5\x59\xb4\xd3\x10\ +\x6b\x88\x29\xff\x38\x8e\x96\x9a\xcb\x1d\xb4\x5b\xb7\x6e\xb6\x1b\ +\x77\x2e\xdb\x07\xbe\xfb\xaf\xea\xfb\xf2\xb0\x6d\x35\xd7\xc6\x9f\ +\x9f\xb2\x45\xd4\xeb\xdb\x31\xc3\x0c\x33\xcc\x30\xc3\xaf\x1d\x3c\ +\x6f\x98\x61\x86\x19\x66\xf8\xa2\x02\x66\x8d\xfb\xf3\xbf\x5f\xcd\ +\x7c\x70\xf4\x55\xac\x9d\x39\x31\x3c\x58\x65\xd4\x0c\xb5\xe4\xd1\ +\x17\x9d\x26\xb3\xdd\xa9\x7c\x12\xb6\x9a\xb5\xfe\xec\x87\x7e\xa2\ +\x3d\xf5\xf1\x4f\xb4\xaf\x7c\xdb\xd3\xed\xf6\xe9\x91\xb4\x9a\xc4\ +\x52\xa0\x7c\xcf\x2e\x2e\xdb\xc3\xb3\xf8\x1f\x99\xb8\x79\xc1\x25\ +\x01\x21\xa3\x60\x4f\x8f\x33\x74\xb1\xbe\x88\xf4\x8d\x4e\xf1\x94\ +\x9d\x13\x6d\xa7\x4c\xac\x7d\x5d\x6a\x4f\x53\x90\x9b\x44\xa3\xec\ +\x58\x41\xd0\x92\x33\x40\xf5\xe2\x15\x94\xfe\x4f\x32\xd5\xc5\xfd\ +\x82\x79\x68\xd3\x3e\x38\x86\xaf\x70\x0b\xa3\x6d\xa0\xab\x46\x99\ +\xdc\x54\x3e\x92\x70\xa4\x0b\xac\xbc\xc1\xec\x4b\x63\xa9\x7c\x83\ +\x4b\xdb\x92\x07\xf4\x1e\x5e\xb6\xd5\x9b\xe7\xed\xf2\xfe\x45\xdb\ +\x70\xc3\x99\x85\xb4\x35\x4f\xcd\xf0\x8b\x3a\x6e\x3c\x01\x43\x65\ +\x92\xe5\x32\x88\xad\x80\xb8\x83\x38\xf1\x49\xa3\x5e\xc1\x17\x38\ +\x8f\x61\x8a\x5f\xaa\xec\xe2\x21\x8c\x2f\xd9\x04\xe5\x2b\xea\xc7\ +\x0e\x59\xc4\xd8\xb6\xe5\x21\x4f\x10\x1e\xb7\x1b\xc7\x17\xed\xde\ +\x53\x77\xda\xd3\xaf\xdc\x6d\x37\x9f\x7f\xaa\x9d\x1c\xdf\x6a\x5b\ +\xed\xb7\xab\xed\xa1\xf7\x09\x4f\xdc\xb8\x0f\x1c\x98\xa4\x4a\x98\ +\xc0\x25\xec\xa9\x6b\x1f\x06\xec\x1a\x7d\xa9\x69\x55\xd5\x71\x0f\ +\x32\x6f\x2f\xb7\x7f\xcb\x47\x5d\x22\x7b\xd6\x2b\x0c\x59\x87\xec\ +\x61\xd1\xde\x1f\x0c\x10\x0f\x92\xd8\x87\x5c\x71\x2e\x84\xe8\x71\ +\xf1\x8d\x02\x7f\x94\xb0\xa0\xca\x05\x9e\xf7\xbf\xa8\xef\x5e\x50\ +\x4e\xa0\x33\x98\x9a\x49\xbe\x74\x83\x0d\xde\x95\x8e\x41\x17\x8b\ +\x8d\x42\xaa\x62\x0e\x9d\x98\xd0\x2a\x71\x6a\xde\xf5\xe0\xa3\xac\ +\xb1\x28\x07\xa6\x8f\xfd\x12\x89\x59\x8d\x14\x90\xcf\x75\xf7\xb1\ +\x87\x2b\x72\xfa\x26\xbf\xd3\x8e\x3a\x46\x8d\xd9\x6e\x32\x3a\x0e\ +\x76\x64\x44\x1d\x9b\xea\x0f\x16\x2f\x42\x17\x31\x62\x61\x4d\xc7\ +\x8a\x74\xbe\xcb\x43\x50\x74\x0e\x4e\x43\x35\xce\xfc\x5f\x5c\xfc\ +\x77\x1a\xe3\x8e\x7c\x11\x93\xa7\xa5\xfc\xb7\x5e\x34\x6d\x68\xdf\ +\x56\xe3\xed\x68\x71\xd4\xae\x6e\x6f\xda\x81\xce\x43\x87\x6d\xd3\ +\x2e\x74\xd0\x2d\x2f\x2f\xdb\xf9\x47\x1f\xb5\xc5\x6b\xca\xb4\x62\ +\x4c\xc6\xaf\xbf\x63\xdf\x65\x7d\xcc\x47\x1c\xd3\x7d\x50\x31\xd7\ +\xc2\x8e\x3b\x4e\x31\x2e\x08\x63\x48\xca\x2f\xd1\xb1\xde\xd2\x85\ +\xfe\xf1\x97\x3f\xd7\x8e\xff\xe8\x7b\x5a\x7b\xf9\xcb\x5a\x3b\x7d\ +\xb9\x9d\xde\x7a\x5b\xdb\xbe\xe3\x85\x76\xe7\x9d\x3a\x7e\x0e\x4f\ +\xe2\x07\xe9\x7e\x35\xee\x18\x3c\x18\xd5\x34\xf8\x24\x7b\xbb\xf1\ +\x89\x6a\x76\x39\x7d\xba\x5c\x8c\x69\x8e\xed\x6e\x2c\x40\x01\x66\ +\x61\xe9\xe0\xb6\xb1\xcf\x0e\xd5\x97\x42\x6e\xac\x1d\x1c\xe9\x7c\ +\x7a\x94\x8b\x94\x62\xfd\x63\x05\xf5\x35\xe7\xb8\x95\xce\x79\xeb\ +\x73\x5e\xdb\xa9\xf3\x9b\xef\x06\xc9\x96\xc7\x0f\xc0\xb9\xc6\xfb\ +\xc0\x7c\xc6\x1f\x60\x12\x77\x2b\xb8\xeb\x16\xb6\x58\x88\x8a\x32\ +\xcc\x27\xf2\xe3\x0e\xd4\x51\x06\x37\x16\x95\xfa\xfb\x25\xc6\x64\ +\x14\x9a\x75\xb0\xec\x8f\xd1\xb6\x2a\x3a\x69\xd8\xb4\xd9\xcf\x5e\ +\x82\x32\x42\xa3\x1e\x0e\x2b\xca\x39\x53\xdf\x82\xfe\x61\xc9\x4a\ +\xfb\xf6\xcd\xf3\xf3\xb6\x56\xbd\x96\xaa\xc4\xa3\x76\xde\xde\x7b\ +\xeb\x76\x7b\xc7\xbd\x1b\xad\x7d\xe2\x57\xda\xff\xf8\xad\xdf\xd9\ +\x0e\xfc\x04\xb0\x06\x82\x7c\x7a\xdc\x19\xbe\x84\xa1\xce\xe9\xdb\ +\xb6\xd6\x71\xc2\x2f\xee\xbf\xf5\x3b\xbe\xae\xdd\x7e\xf5\xb4\xdd\ +\xb8\x79\x43\xb2\x8c\x1c\x5b\x35\x1e\xc2\x59\x90\x63\xd0\xe3\x4c\ +\x3c\x6e\xda\xc6\x31\xc3\xf1\x65\xad\x86\x93\xfd\xf0\x87\x40\xcd\ +\x47\x8e\xce\x43\xf9\x0e\xb3\x32\x71\x22\x9f\x1d\xec\x4f\xfd\xa2\ +\x8a\xcc\xb3\xfc\xba\xe7\x34\xed\x43\xd5\xd7\x65\xf9\xfb\x33\xf4\ +\x00\xb5\x26\x53\xe9\xae\xcb\x6f\x9f\xeb\x40\x85\xeb\x90\xb3\x43\ +\x9c\x03\x42\x67\xf0\x09\x93\xa3\x13\x10\x6f\xc6\x0e\xea\x23\x51\ +\x16\x1c\x7a\x61\xd4\x4e\x40\x9e\xae\x0b\x40\xe4\x3f\x68\x03\xd2\ +\xef\x1a\x40\x1f\xe7\x14\xf9\x82\x06\x6b\x5d\xac\x39\xbe\x47\xad\ +\xdf\x07\xd5\x25\xb9\xf8\xae\x4b\xa9\xc2\xec\x81\x63\x65\x1e\x23\ +\x7e\x4a\x4c\x2a\x96\xe4\x1a\x13\x46\x2b\x51\x67\xd0\xe8\xac\xa8\ +\x5b\xaa\x46\x48\xf7\x4e\x3b\x90\xc5\xe1\xaa\xce\xe5\x11\xf1\x90\ +\xa2\x5c\x02\x5b\x70\x9b\xca\x37\xbe\x03\xa2\x1f\x8c\xc8\x85\xe1\ +\xa1\x94\x2f\x47\xb8\xd4\x94\x2d\xfd\x94\x74\x3e\x2d\xb9\x4d\x3e\ +\xa0\x46\x5a\xd0\x2c\xbf\x5e\x81\x0a\x98\xea\x53\x35\x0b\xb0\x97\ +\x36\xea\x5f\x7c\x70\xf6\x2b\xc1\xf1\x4d\x52\x8c\x72\xbc\x99\x77\ +\xc9\x9d\xe7\x89\xb5\x78\x42\x7b\x69\xbe\x74\xd8\xc5\xe5\x16\xf5\ +\xe5\x00\x26\x2f\x7d\x50\x71\x95\xb8\x20\xf4\x58\xf6\x65\xcf\x41\ +\xb5\x53\xc2\x16\xfd\x3e\xf9\xea\x63\x06\x36\xae\xcb\x3c\x36\x68\ +\x22\xad\x12\x43\xf6\xbb\x37\xef\xb5\xe7\x9f\x7a\xb1\xbd\x70\xef\ +\x95\xf6\xea\x73\xaf\xb6\xbb\xb7\x5e\x6e\x47\x47\xa7\x3a\x27\x91\ +\x7f\xb7\x97\x02\x1c\x20\xc0\xc1\xe4\x41\xd1\x22\xd3\xd8\x10\x68\ +\x9c\x4d\x7c\x90\xb0\x07\x86\x8e\x8c\x30\x4f\x96\xd3\x9b\xaf\x04\ +\x1b\xd7\x1b\xcb\x25\x73\x10\xf6\x6b\xb5\x32\xf2\x66\xb0\x84\x91\ +\x0f\xc0\xd3\x48\xc0\x82\x1d\x56\x7d\x61\x9a\x10\x05\x4b\xab\x7a\ +\x55\x38\x07\x90\xe0\x13\x4f\x8c\x54\xc0\x3f\x2e\x18\x27\x69\x92\ +\xed\x4a\x3d\xf6\xaa\x52\x21\x80\x3a\x43\x55\x56\x4b\xea\x33\xae\ +\x07\xea\x50\x7d\x4b\xb8\xc6\xee\x30\x4a\x32\xaa\xb7\xd1\xb1\xce\ +\x93\xfc\x98\xcb\xdf\x33\x55\x88\x33\x4e\x7e\x11\x87\x54\xe8\x7e\ +\x2e\x5d\xa8\x8d\x6a\x3c\xaf\x08\xb5\x1a\xd9\x5c\x00\x7c\xb4\x31\ +\xc7\xa1\xb9\x04\xe9\xdd\x2f\x05\x3b\x19\xe5\xef\xcc\x4e\x42\x45\ +\x9d\xd9\x34\xbf\x5b\xeb\xba\xfe\xf6\x9d\x65\xfb\xc8\x27\xff\x5d\ +\xfb\xd9\x9f\xff\x17\xba\xee\xa8\x6f\x9d\x31\xc8\x0c\x33\xcc\x30\ +\xc3\x0c\xbf\x1e\x50\xdf\x79\x33\xcc\x30\xc3\x0c\x5f\x5c\x50\xf3\ +\x40\xe6\x97\x35\xc7\x1c\xe6\x9a\x86\x3d\xd9\x59\xae\xf1\xb9\x76\ +\x4a\x89\xdf\x75\x86\x7d\x5d\x4e\xac\x49\x3d\x09\xcf\x89\xb2\x66\ +\xb0\x6d\xad\x2b\xae\x7f\xf0\xd7\xfe\x42\x7b\xf7\xd3\x37\xda\x3b\ +\x5f\x7c\xd1\x0b\x2d\xdb\x2b\x9e\x46\x88\x5f\xba\x3d\x7a\xbc\x6a\ +\x17\xdc\x48\x65\x11\xcb\xaf\x7b\x54\x0c\xcd\xa6\xd9\xa6\xe9\x74\ +\x00\x72\xdc\xe0\xac\x0b\x46\xb4\x59\x9e\xe5\xa4\xf6\x06\x42\xe6\ +\x9e\x7c\xd8\xad\x09\x1a\x49\xe8\xd3\x95\x50\xb1\x98\xa6\x89\xb6\ +\x2a\xe8\xba\x60\x03\xec\x34\x01\x62\x21\x09\xbe\xdd\xc5\x06\x25\ +\x7c\xd4\x7e\x16\x0c\x16\x47\xcb\x76\x75\xa4\xb2\xd4\x7e\x5e\xf7\ +\x18\xf5\x57\x26\x5f\x5b\xe9\x62\xec\x52\xed\x7d\x14\xff\x93\x66\ +\xe4\x55\x68\x97\xab\xf8\x9f\x34\xfa\xa7\xc2\xe2\x5e\x40\xfd\x52\ +\xb1\xa3\x1f\x61\xc8\x84\x2f\x71\xa0\xdd\xbf\x98\xae\x10\x98\xcf\ +\x06\x09\x7b\x19\x29\x97\xce\x6a\x53\xa2\x4a\xa7\x4e\xe0\x57\xf2\ +\x5c\xd6\x73\x83\xfa\xe4\x64\xd3\x9e\xfe\xf2\x67\xdb\xab\xff\x87\ +\x57\xda\x8b\xff\xc7\x77\xb4\x93\x3f\xfa\x6c\x3b\xfa\x5d\xc7\xed\ +\xd6\xdd\x1b\xed\x90\x1b\x04\x0c\x02\xb5\xdf\xfd\xac\xc4\xf1\x00\ +\x17\xd8\xa5\x00\xaa\x13\xc5\x5c\x03\x93\x61\x87\x73\x1f\x9b\x74\ +\x98\xd8\xbd\x32\x3a\x3b\x8c\x87\xe2\xab\x6e\x24\xc2\x88\xe7\xc4\ +\xf5\xae\x5f\x22\x83\xbc\x7a\x90\x71\xcf\xeb\x1f\xd3\x3d\x00\x86\ +\x9b\x62\xdc\x88\x64\x40\xf2\x74\x14\x77\x23\x5c\xc7\xe4\xb1\x5b\ +\x17\xd3\x8e\x18\x23\x13\x32\x1b\x99\x78\xda\x07\xda\x71\xa2\x55\ +\xaa\x79\xaa\x24\x4a\xdd\x80\x50\xf5\xba\xa2\x28\x15\xd0\xf9\xbe\ +\xc3\x41\x25\xc2\x28\x82\x4c\x55\xbe\x15\xc1\x63\x77\xfd\x5d\x41\ +\xf3\xf1\xaa\x22\x64\xdf\x55\x09\x7d\x1e\xbb\xb4\xaf\xda\x11\x4f\ +\x2f\x95\x5d\xb8\x5c\x46\xfe\x05\x94\x9b\x47\xa1\x27\x0f\x3e\xac\ +\xa9\xb1\x60\x76\xc5\x02\xcc\xf9\xa5\x2e\x94\xd7\x52\xab\x5e\xca\ +\x43\x18\xf7\xa1\xc6\x95\x52\x65\x11\xd5\xfe\x89\x9b\x62\xb1\xa0\ +\xb6\x3c\x59\xb4\xa3\x9b\x07\xed\xe4\xf6\xd2\xe7\xa0\xf5\x66\xd3\ +\xd6\xaf\x6f\xda\xe3\x8f\x3d\x6c\x1b\x9d\x8b\x7c\xfe\x22\x1c\x39\ +\x54\x9e\x63\x52\x5e\x52\x57\x45\x0e\x88\x40\x50\xfa\x65\x80\x5d\ +\x63\xc2\x9e\x0f\x90\xb1\x48\x5d\xcf\xb6\x69\x07\x37\xb7\xed\xd6\ +\x1f\x7a\xb5\x1d\x3c\xf3\x6e\xa9\x6f\xab\xdc\x65\x3b\x56\x5f\x6c\ +\xd6\xbc\xd2\xed\xd8\xff\x37\xd8\x56\x3a\x47\x45\x66\xd7\xcb\x91\ +\xb3\x2c\xf7\x45\x1e\x28\x3b\x25\x62\x8f\xca\x07\x14\x1d\xa0\xfb\ +\xa7\x2d\xe2\x12\xcf\x62\x42\x78\xa1\x9a\xe2\xe3\x13\x48\x7f\xf1\ +\x74\xcc\xe1\x51\x6b\x47\x27\x07\xed\xe8\x58\xa8\xf3\xde\xf2\x78\ +\x69\xba\x90\xfe\x60\x49\xed\x39\x6e\x94\x87\xff\x4f\xe4\x7f\x21\ +\x1f\xf2\xea\x4e\x1d\x3b\xda\x29\x9c\x17\x30\x69\x8f\x2b\xb4\x02\ +\x2a\xae\xab\xae\x04\xda\xc1\xb6\xe4\x61\x6a\xdc\x0a\x82\x63\xaf\ +\x8f\x30\xd4\xd8\xc7\xed\xb6\x6d\xfc\x5d\x24\x9e\x1f\x50\x40\xcb\ +\x2e\xf4\x78\x65\x3c\x2a\x48\xdc\x50\x45\x17\x76\xc3\x5b\xf1\xca\ +\x1d\x75\x0d\x25\xa9\xf3\x5a\xc8\x32\x90\xad\x40\xa2\x3f\xf8\xee\ +\xdb\xb6\xb5\x70\x75\xb5\x6e\x67\x17\x17\x1a\x9b\xf2\x55\x1d\x8e\ +\xd5\x99\x37\x84\x5f\xf9\xca\xd3\xed\xa5\xc5\xaa\xfd\xf8\x77\x7d\ +\x7f\x3b\xbf\xd4\xf7\x02\xfd\x44\x0c\x3a\x2b\xa2\xce\xf0\x25\x0b\ +\xda\xbf\x1c\x5f\x4d\xdf\x9b\x1a\x2d\x3f\xfe\x53\xff\xaa\xfd\xc2\ +\xa7\x7e\xb4\xbd\xf4\xea\x5d\x1d\x6b\x47\x3a\xee\xf8\x1d\x3e\xe7\ +\x55\x86\x43\x8e\x05\x09\x7d\xdc\x91\x5f\x83\xc5\xc3\xc5\x32\x7a\ +\xb8\x90\x7c\xf8\x8a\xf7\xd3\x69\x78\x65\x3e\x7e\x54\xe0\x18\xa6\ +\x66\x5c\x16\x46\x8e\x75\x7d\x0c\x45\xaf\x83\x6e\x1b\x9c\xa8\xe2\ +\x5a\xdf\x93\x1b\x5e\xf7\x2a\x19\x93\x29\x8c\xd0\xae\x94\xc9\xa6\ +\x82\xfc\x3d\x81\x0e\x75\x52\x98\xae\x23\x33\x58\x90\xb6\xca\x45\ +\x6a\x17\x0e\x18\x0a\xf7\xb1\x1e\xdb\x68\x07\x26\x2d\x10\x51\x3a\ +\x38\x48\x32\xd9\x0f\x80\xeb\x2d\xc1\xfd\x64\x6a\xf5\x04\x92\x2b\ +\x26\xa6\xc0\xd0\xf8\x18\xce\x06\x94\xad\xf3\x24\x59\xdf\x2a\xae\ +\x70\x02\x9d\xbb\x0c\xd2\x52\xad\x5e\xd2\xe0\x87\x1e\xb5\x12\x47\ +\x26\xe6\x9e\x9f\x9f\x32\x2e\x3f\xc3\xe0\x93\x85\xf7\x45\x35\x81\ +\x55\x4a\x62\xb3\x39\x94\xca\xc3\x18\xf5\x27\x11\x9e\x76\x12\x3b\ +\x22\x64\x6c\x29\xbc\xe8\x82\x3e\xfd\x2a\x62\x8f\x4a\x19\x41\x02\ +\x87\xcd\xdf\xd4\xb6\x27\xd6\x96\x73\x0c\x7b\x97\x4d\xdf\x4b\xd6\ +\x95\x9c\x36\x64\xeb\x2c\xc3\x66\x3e\x6d\x86\x94\x47\x9d\xfd\x60\ +\x68\x06\x73\xf8\x6c\x4e\x34\x22\xc1\x59\x2a\x26\x62\xe4\xd6\x68\ +\x96\x8c\x82\x39\x0d\x36\x7c\x62\x7e\x63\x3d\x73\x18\x36\x1f\x60\ +\x61\xab\x05\xa0\x9a\x0f\xf9\x95\xc4\x6c\xf0\x6e\x97\x30\x3c\xd2\ +\xb7\x64\xf7\xd0\xb0\xc5\xb8\x02\xe4\x96\xfb\xda\x49\xc8\x18\x13\ +\x6b\x2e\x61\x3a\x42\xfa\xf1\xfd\x7c\xba\x3c\x69\xf7\x6e\x3d\xd3\ +\x9e\xbe\x79\xaf\xdd\x38\xb9\xd9\x8e\x4f\x6e\xb7\xbb\xa7\x4f\xb5\ +\x1b\xc7\x4f\xcb\xed\x30\x9c\xd2\x3f\xe2\x66\x59\x46\x78\xd5\xa9\ +\xc2\x0f\x63\x12\x3b\x06\x3f\xed\x1e\x1d\x9b\x28\x90\xd1\x1c\x19\ +\xc1\x71\x4c\x16\x75\xd0\xe8\x2f\x9e\x96\x3b\x39\x59\xb6\xd3\x93\ +\xd3\x76\x72\x74\x4b\x73\x12\xbe\xd3\xe9\xb3\x8a\xfd\x16\x40\x78\ +\x91\x88\x49\x3f\x64\x51\xd6\x47\xde\x68\xd7\x14\xc3\x9c\x74\x56\ +\xa5\x9f\xf3\x26\x46\x9d\xfd\x31\x90\x3f\x54\xe1\x67\x97\x30\x99\ +\x16\x0f\xc0\x53\x3e\x9e\x05\x55\x1f\x28\x31\x52\xd4\x9c\x86\xeb\ +\x6c\xe9\x10\x3e\x0f\x70\xec\xc4\x2a\x77\x2a\x7b\x8a\x1b\x83\x5d\ +\x67\x1c\x15\x58\x3f\x7e\x2a\x08\xff\xf0\xcd\x0a\x65\xff\x68\x1f\ +\x83\xb0\x16\x53\x96\xe0\xef\x92\x2a\x69\x64\x55\x71\x9b\xcc\x8b\ +\x49\x9e\xe3\x2b\x4a\x24\x0d\xe5\x98\x4e\x34\xb8\xaa\x5d\xbd\x41\ +\x61\xb1\x3c\x6c\x77\x9e\x5d\xb5\x7f\xf8\x8f\xbf\x59\x71\xb9\x7e\ +\xb0\x95\x64\x86\x19\x66\x98\x61\x86\x5f\x47\xf0\x35\xfd\x0c\x33\ +\xcc\x30\xc3\x17\x1d\xd4\x6c\x11\x60\x4e\x58\x08\x8c\x73\xc4\xc1\ +\xcf\x6c\xd9\xfa\x6c\x73\x8f\x16\x20\x8f\x65\x00\xfb\x79\x81\x9a\ +\xf9\x02\xe8\x41\xe9\xae\x36\xab\xf6\xfa\xa7\x3f\xdd\xee\xff\xf8\ +\x0f\xb7\x57\x9f\xbb\xdb\xee\xdc\xba\xe9\xe9\x38\x93\x68\x7e\x93\ +\x7c\x7e\xb9\x6a\x8f\xb8\x31\x7e\xb5\x96\x7f\x2c\xb2\xf9\x82\x74\ +\xb1\xf5\x89\xd7\xd7\xa6\xbd\x0e\x62\x72\x62\x1d\x7f\x7e\xcd\x04\ +\x99\x49\x39\x48\xcc\xf0\x87\x0f\x3f\x5d\x4c\x71\x8d\xca\x7d\x7d\ +\xb0\x2e\x4a\x41\xe7\x8b\x90\x1d\xf3\x02\x61\xbb\xde\x70\xb5\x20\ +\xc5\x00\xd5\x26\x40\x74\xff\x22\x85\xec\x95\x06\x88\xe7\xc3\x8d\ +\x20\xe1\xd5\x91\x2a\x70\xac\x0b\xb8\x43\x5d\xc8\xb1\x22\x90\x2e\ +\xdc\xf8\x5a\x08\x97\xe7\xba\x78\x78\xcc\x93\x1a\xeb\xb6\xe6\xbf\ +\x85\xce\xe3\xbf\xd2\xfc\xbf\x22\xae\xcb\x5e\x81\x2e\x8b\x8a\xf0\ +\x09\x6a\xad\xe5\xa0\x00\xfd\x51\x39\xeb\x15\x4b\x91\x27\xa1\x33\ +\x03\x94\xce\x41\xb8\x38\x22\x3e\x17\x37\x15\x09\xe0\xe2\x50\xb0\ +\xa7\x0b\x49\x35\x52\x5f\x6f\x17\xeb\x76\x7c\xef\xb4\x3d\xff\x9f\ +\xbc\xd8\x0e\xff\xd0\xb3\xed\xf8\xf7\xbc\xab\x3d\xf7\x87\x5e\x6d\ +\x4f\xfd\xaf\x9f\x6d\xa7\x2f\x2c\xd5\xf6\x65\x5b\x67\x59\x7e\xa2\ +\x8b\x7c\xc3\xc5\x59\xc5\xf3\x75\x19\x68\xcd\x35\x20\x43\xe8\xb3\ +\xae\xdd\x2b\xeb\x9f\x62\xec\xf5\xeb\x63\xa0\x07\x27\x26\xa0\x22\ +\x96\xb2\xc6\x1a\xba\xea\x63\x08\xfb\x10\x85\x2f\x02\xc5\x6e\x57\ +\xfc\x5f\x5c\xe6\xb4\x09\x5b\xd6\x80\x81\xba\x33\x76\x53\x2e\x9e\ +\x80\xf0\xe9\x67\xde\xfa\x3d\x4a\x7e\xdf\xac\x40\xe7\x92\x42\x9f\ +\x37\x30\xaa\xd3\xc2\x04\x63\xe5\xd4\x7e\xcb\x66\xfa\x86\x6e\x50\ +\xa7\x9c\xba\x41\xce\x82\x2d\x4f\xba\xf4\x75\xdb\xb8\x61\x91\xb2\ +\xd0\xbf\xa8\x66\xdc\xdb\xce\x41\x39\xe9\xa3\xed\x93\x2e\xca\x41\ +\x1f\x3a\xec\xfe\x95\xb6\xf2\x73\x63\x88\xc5\x34\x7e\xe0\xbb\x39\ +\xbf\xd4\x31\xb2\x8e\x57\x8b\x2a\x8b\x88\x13\xf8\xa5\x9c\x7c\x23\ +\x26\xfb\x1e\x86\x7d\x73\xb4\x5a\xb6\xe5\xcd\x75\x3b\xd0\xb8\xe4\ +\x98\xbc\xd0\x7e\xba\xe0\x29\xb5\x4f\x9d\xb5\xf5\xeb\xe7\x6d\xbd\ +\xd2\xb1\xef\x40\xe4\x27\x75\xe2\x18\xde\x4c\xad\x0a\x3d\x14\xf0\ +\x89\x6a\x00\x3a\xb9\x9c\x0c\xbd\xd7\x13\x90\x0b\xe5\xb5\xb8\x6a\ +\x17\x5b\xfe\x57\x71\xdb\x8e\x9e\x3d\x6d\x47\xef\x7c\x5e\x0d\xbc\ +\xa9\xb0\xcb\xb6\xa1\xfe\xf2\x3b\x51\xc5\x2e\x3f\xf1\xc0\xaf\xa6\ +\xdc\xb2\x58\xab\xf6\xf0\x1c\x9d\x8b\x0a\x17\x17\xd7\x23\xa3\xab\ +\xe2\x05\x9d\x8d\x22\x0d\xc5\x56\x9e\x0e\x12\x42\x4e\xed\x8e\x31\ +\xa0\x54\x2e\x26\xcb\x82\x2e\x0f\x17\xed\xe8\x46\x6b\x47\xa7\x07\ +\xa2\x8b\x76\x7c\xba\x50\x9f\x4b\x77\x2a\xdb\xa9\xce\x75\x37\xd6\ +\x6d\x79\xb4\x51\x9b\x59\x40\x62\x61\x50\x91\x56\xdb\xb6\x7e\x73\ +\xe5\xa7\x72\xb7\xfe\x3f\x3c\xb5\x4f\xe8\xf3\xa3\xec\xbe\x19\x92\ +\xfb\xd0\x7b\x80\xfd\x40\x99\xc0\x50\x37\x74\xa8\xcb\x74\x6d\xc5\ +\xd1\xe5\x49\xc1\xe7\x1b\x61\xfd\x90\x83\x27\x65\xcc\x84\xd9\x81\ +\x88\xb9\xf0\x93\x31\x30\x94\x0b\x8f\x3e\x4b\x49\x12\xce\xca\x88\ +\x5c\xf9\xc5\x84\x9f\x10\x5d\xfa\xa6\x26\x44\x25\x8e\x87\x83\xf2\ +\xf3\x44\xcb\x4a\xe7\x7c\xfe\x57\x8e\xf1\xb9\xa6\xed\xea\x05\x9e\ +\x5e\xfb\x8a\x17\x9f\x6f\xcf\xde\xbb\xdb\x36\x1f\xfd\x68\xfb\xe0\ +\x3f\xf8\x2e\x1f\x53\x8e\x5f\xc1\xb2\x5c\xd8\x19\xbe\x94\x80\x71\ +\x1f\xbb\x77\xdb\x56\xfa\xbe\x3c\x68\xdf\xf4\x2d\x7f\xb1\x3d\xff\ +\x8e\xa5\x7f\x9c\xc2\xff\xc4\x78\x2c\xa7\x53\x90\x1c\x0c\x02\x73\ +\x1e\x47\x68\x63\x74\xd4\x18\x29\x0a\xe3\xf3\x9b\x29\xa2\x93\x94\ +\x25\xe9\xbc\xe8\xf3\x38\x9b\x17\x97\x65\x48\x98\xb8\x5d\x40\xdf\ +\x6d\xc9\x50\x4f\x1f\x6b\x5b\x8d\x68\x9e\x4e\x93\x50\x3e\x43\x48\ +\x81\x6b\x60\x5d\xbc\x26\x38\xb5\xca\xeb\xf6\x0c\xbe\xe8\xc2\x79\ +\xc0\x0e\xf6\xce\x3e\xc0\x77\x3a\xc6\xc3\x12\xce\xf0\x8e\xb3\x8f\ +\x05\x4f\x9c\xe3\x91\xf9\xd1\x8c\x9c\xf2\xb8\xef\x1e\xf0\xf4\x59\ +\xea\x7c\x0e\xd3\x97\x96\xdb\x20\xa4\xf8\x88\x8d\xa2\x52\x14\xc1\ +\x05\xc4\xde\x32\x37\xb6\xdf\x71\x2b\x76\xf4\x9d\xa4\xe4\xa9\x8f\ +\xef\x10\x8b\x86\x9d\xfe\xae\x3a\x3a\x1e\xac\x12\xe7\x37\x86\xdd\ +\x6d\x77\xde\x28\xb3\x20\xe2\x62\xaf\xbc\xc2\xa2\x0c\x0a\x05\xe1\ +\x07\x14\x3c\x31\x79\x74\x7c\xdc\x8e\xc4\x57\x7d\x5d\x4f\x7b\xa6\ +\x7f\x32\xc5\xbb\x5e\xc6\x2c\x17\x36\xbc\x26\x51\xbd\x57\x6d\x8e\ +\xcc\xe2\xa3\x58\xcb\x55\x46\xf9\x3c\x81\xde\x18\xb7\xa0\x73\x98\ +\xe6\x80\x96\x0f\xc1\xc2\x4e\x59\xe5\xa1\xac\xc9\xe7\x5c\xc6\xba\ +\x2c\x1f\x13\x29\xcc\x88\x40\x2f\x33\x37\xe7\xe1\x53\x7c\xc8\x76\ +\x75\x3b\xaa\x6c\x94\xf0\x6c\x36\xd8\xbf\x23\x5a\x7c\x8d\xa5\x8f\ +\xbc\xb6\x2a\xbb\xaf\x6f\xd4\x26\x89\x34\xcd\x3e\x9e\x63\xa5\xbf\ +\x9d\xec\xad\x9e\x65\x27\x46\x07\xe3\x9e\x14\x8e\xfd\x1d\x52\xec\ +\x97\x18\x4f\xfb\xe0\x71\x25\x3c\x3e\x3e\x69\x77\x6e\xdc\xd5\x77\ +\xfa\x89\x3c\x95\x87\x82\x7d\xc1\x25\xc8\x32\x5c\x2c\x62\x90\x04\ +\x0c\x10\x6a\x13\x63\x0c\x19\x55\x8c\x0b\x68\xd4\xc8\x75\xdf\x03\ +\x7c\x38\xa6\xd2\x55\x00\x93\xf9\x88\xa3\x04\x7a\xb4\x58\xb6\xd3\ +\xd3\xd3\xf6\xdc\xad\x17\xdb\xdb\x9e\x16\xde\x7b\xbe\x3d\x75\xf3\ +\x5e\x3b\x59\x9c\xa8\xaf\x78\x45\x6e\xb5\x37\xeb\x90\xe8\xe3\xa1\ +\x8a\xc5\x47\xc1\x7c\xdc\x1a\xc4\x8c\x55\x1a\xc4\x3e\x47\x31\xc8\ +\x50\x79\x50\x09\x4d\xec\x1f\x06\xe4\xf8\xc1\x57\x22\xc6\x3c\xd7\ +\x98\x20\xbf\x15\xec\xc5\x09\x20\xff\x74\xac\xbb\xce\xe1\x52\xe4\ +\x5a\x28\x1b\x71\x86\x2c\x1d\x5c\x4e\x7c\x14\x33\xe6\x4b\x2c\xaa\ +\x99\x71\x21\x61\x23\x80\xfb\xdf\x9a\x00\x64\x14\xfd\xfa\x3b\x7d\ +\xe2\xc7\x74\xe1\x7b\xfd\x3e\xbe\x4e\x4f\x3f\x05\x04\x55\x1a\x9f\ +\x92\x84\x91\x96\x4c\x61\xcc\x95\x96\x1a\x0b\x87\xc7\x47\xed\xe6\ +\xdd\x4d\xfb\xf0\x27\xff\x6d\x7b\xfd\xcd\x4f\xe9\x9a\x7f\x65\xff\ +\xd8\x6b\xb4\x20\xda\x32\xc3\x0c\x33\xcc\x30\xc3\x17\x16\x98\xe9\ +\xcc\x30\xc3\x0c\x33\xfc\xe6\xc0\xaf\x65\x7e\x57\xb3\x4c\xe0\x73\ +\xc5\xc1\x17\x9f\x69\x2e\xfa\xd9\xf3\xd8\x5f\x0e\xf6\x21\x09\x67\ +\x5f\x78\x60\xe3\x29\x9d\xe5\xa2\xfd\xcd\x3f\xf9\x27\xda\x2b\x27\ +\x37\xda\xbb\x5f\x7d\x41\x17\x5f\xcc\x9e\xe3\xff\x7f\xb8\x20\xe3\ +\x75\x8f\x97\xeb\x4d\x2c\x62\x49\xf6\xbc\x7c\xc1\xcd\xd4\x98\xda\ +\x52\x86\xab\x63\x1a\xd3\xe4\xe9\x26\x7c\xd8\xc1\xe2\x87\x87\x61\ +\x84\xc1\x70\x5f\x5e\x4c\xfa\xa0\x0b\xdf\x54\xc4\xf5\x8a\xcb\xe6\ +\xbf\x3c\xe2\xe9\x34\xf8\xa8\x4c\x00\x9e\x86\x49\xb5\x03\x5d\x5d\ +\x8e\x50\xd7\x51\x78\x78\xd8\x16\xbc\xe6\x91\xa7\x33\xb2\x7e\xd4\ +\x89\x8b\x12\x97\xbb\x56\x7b\x2f\xd6\x6d\xfb\x58\xf8\x90\xff\x13\ +\xda\xf8\x97\xdb\x57\x5b\xf5\x49\xbf\x96\x8d\x58\xc1\x56\x5b\x06\ +\x34\xf8\xc5\x77\xae\x4b\x21\xd0\xcd\x06\x69\xbb\x21\x79\xd0\x17\ +\x74\x62\x07\x67\x5f\x92\x95\xef\x98\xa7\x0b\x75\x61\x53\xba\xbc\ +\x18\x14\xa0\xdf\x1e\x5e\xb5\xa3\xe7\x9f\x6a\x57\xef\xbe\xdd\xda\ +\xc9\xb3\xc2\x93\x76\x78\xf7\xc5\x76\xf7\x1d\xaf\xb4\xd3\x57\x9e\ +\xf2\x82\xdb\x01\xaf\xb8\x8c\x55\x54\x6f\x86\x24\xa6\x83\xca\x75\ +\x73\x25\xd1\x40\xca\x51\x20\x76\x90\xb2\x6d\x93\x32\x76\x67\xb4\ +\xa7\xba\x71\x82\x49\xf1\x84\x49\x40\x08\xd0\xfb\xd2\x9a\xec\x7f\ +\x38\x51\xc7\xcd\x82\x88\x8f\xf7\xc1\x56\x63\xc8\x4f\xa9\x51\x20\ +\x3a\x25\xe4\xcf\x31\x61\xde\x54\x03\xc1\xaf\x3a\x2c\xdb\x38\xb6\ +\xc3\xaf\x30\x6e\x94\x40\x27\x9b\x2f\x02\xcd\xa6\x9f\x6c\xe6\x17\ +\xae\xb1\x79\xfa\xad\xd7\x50\x3c\x10\xff\x57\x21\x70\x3e\x68\xf2\ +\x06\xe5\x63\x9c\x56\x5d\x33\x66\xdc\x78\x0a\x9f\x88\x25\xde\x76\ +\x68\xda\x6c\x4f\x1e\xbd\x6f\xf8\x4b\x26\x16\x37\x7e\x68\xab\x6c\ +\xfe\x2f\x41\x7c\x64\xf7\xc1\x80\xda\x37\xe2\xc4\xe0\x89\x4f\x47\ +\x55\xc6\x7e\xa0\xac\x2a\x9c\xa7\xd3\x36\xc2\x2d\x4f\xa7\xd1\x0b\ +\xf6\x8b\x62\xa9\x9c\x5b\x0f\x0f\xd2\x17\x16\x5a\x3b\xd2\x11\xb2\ +\xbc\x71\xdc\xae\xee\xca\x7f\x73\xee\xff\xee\x69\xf7\x1f\xb5\xb3\ +\x8f\xbd\xd1\xda\x1b\x6b\x3f\x0d\xca\x41\x87\xfb\xd5\xc1\xa1\x0b\ +\x73\x3d\xf5\xa1\xf8\x82\xf1\x38\xb9\x16\x6c\xa7\x16\x51\x19\x87\ +\xc8\x3c\x63\xd6\x38\xcb\x09\x55\x0d\xf8\x85\xca\xbf\xf5\xd2\xbd\ +\xd6\xee\x3d\xa5\x02\x8f\x78\x5e\x4d\xda\x83\x76\xa9\x86\x2f\xce\ +\x2e\xda\xd9\x6b\x9f\xf4\x13\xb4\x1c\xe7\x5e\x84\x26\x98\x8f\x39\ +\x0a\x10\x11\x20\x8d\x14\x08\xd3\x58\x72\x42\xaa\xf6\x2d\x63\x5e\ +\x84\xbe\x18\x2f\x80\x0b\xa4\x66\xd8\xc2\x4e\x3f\x2d\x8e\x0e\xdb\ +\xe1\x8d\x65\x3b\x3c\x15\xbd\xb9\x6c\xc7\x37\x17\xed\xf0\x16\xa8\ +\x5d\x78\x7a\xd5\x0e\x4f\xae\xda\x52\xdf\x01\x8b\x63\xb5\x95\xff\ +\x57\xe1\xc6\xbc\x5a\xe3\x5d\xab\x7d\xb1\xe1\xfc\x07\x5e\xa8\x85\ +\x3e\x5e\x29\x9c\x52\x81\x69\x1f\x53\x6e\xaf\x75\xed\x8c\x24\x9d\ +\x1a\x10\x76\x14\x06\x7a\x35\x8f\x08\x97\xb3\xdd\xf0\x64\x6d\x94\ +\xc7\x62\x25\x40\x93\x8d\xca\x1e\xaf\xdb\xe2\xc6\x6a\xc9\x24\xc1\ +\xef\x02\xca\xcc\x44\xff\x88\x86\x7f\x58\x81\x9d\x2c\x12\x68\x7b\ +\xf8\xe0\xaf\xf3\x86\xd4\x6b\xce\x1f\xaa\xcb\x39\x3f\x36\x11\xcf\ +\x69\x84\x5b\x94\xb7\x8f\x8e\xdb\xdb\xdf\xfe\x74\xbb\xbb\x7e\xd8\ +\xfe\xe5\x37\x7d\x5f\xfb\xf4\xa3\x37\x35\x76\x58\x64\x26\xd7\x0c\ +\x5f\x32\xb0\xb3\x3b\xf3\x38\x13\x72\x76\x5c\x5f\xb4\xf6\x6f\x3e\ +\xfe\x73\xed\x97\x3e\xfa\x23\xed\xf9\x97\x6f\xb7\xa5\xe6\x17\x1a\ +\x24\x1a\x47\x9a\x63\x38\x1f\x63\x8e\x1c\xa2\x88\x19\xcc\xdf\x53\ +\x8c\x33\xf1\xe3\x78\x04\x10\xb9\xa9\xbb\xe0\x3d\xb9\xc8\x76\xe2\ +\xc3\xb9\x38\xe4\xc8\xc3\x4d\x49\xce\x8f\xdc\xc4\x0f\x28\xba\x0f\ +\x71\x6e\xbb\x1e\xa8\x0b\x0b\xc6\x7c\xf7\x93\x1f\xcf\x31\x4e\x16\ +\xa5\x4f\xb4\x85\xaf\x10\x2a\x50\x3e\xfb\x74\xff\x7c\x8c\x38\x79\ +\x03\xe2\x7d\xa2\xe2\xb8\x8a\xe3\xe9\xba\x3c\xd4\xc3\xb5\x2e\xdb\ +\xe8\xc3\xf1\x69\x45\x7a\xfa\x98\x43\xc3\x71\x9b\xa2\x35\x13\x0f\ +\xf4\x7a\x58\x47\x0c\xfa\x8f\xfc\xd6\x06\xa4\x2d\x99\x84\xe8\x9b\ +\xd2\x57\x39\x11\x7c\xf0\x1b\x0a\x9c\xb4\x93\x8f\xcf\x75\x1e\x18\ +\xc2\xb1\x4c\x7f\x8b\x4c\x39\x02\x70\x88\x72\x77\x5c\x13\xac\x1b\ +\xc2\xb0\xa0\x72\xa8\x9d\x73\x72\x7c\xa3\xdd\xbc\x79\xab\xdd\xbe\ +\x75\xbb\x9d\x8a\x9e\x9c\x1c\x7b\x91\xcd\x71\x94\x78\x1f\x16\xef\ +\x9c\x01\x2e\x3d\xab\xe0\xc5\x11\x09\x55\x57\xb7\x17\x6f\x32\x85\ +\xca\x32\xf3\x08\x1f\x09\x2a\x97\xe9\x42\xc5\xf4\xfc\xa2\xa7\xa1\ +\xf7\xd8\x55\x12\x73\x19\x74\xd8\x72\xd3\x00\xe0\xff\xad\x18\x08\ +\xf0\xe9\x20\xcb\x14\xdf\xc7\x51\xf6\x6d\x1d\x53\x6e\x95\x79\xc0\ +\x91\xd0\xd8\xee\x71\x0a\x38\x1f\x14\x21\xfa\xd3\x02\x3e\x19\xd7\ +\xf3\x22\xca\x26\xa2\x64\xe6\x3c\x9e\xf7\xe8\x4c\xcf\xb1\xcc\x93\ +\xa8\xf1\xbd\x83\x2f\x79\xf9\x06\x88\xf2\xe3\xf8\xd3\x46\x79\xd8\ +\xc4\x43\x91\x91\xc2\x47\x9c\xed\x98\x92\xf1\xa0\xef\x3d\x1b\xce\ +\x09\x2e\x02\x1a\xa2\xe4\xac\xb7\xf3\x08\xb0\x27\x4e\x4e\xf4\xf1\ +\xa9\xf7\xf7\x36\xff\xc7\x96\xef\xd1\xcb\xf5\x65\x5b\xad\xcf\xc5\ +\x6b\xac\x97\x33\xf5\x0b\xa6\x97\xe5\x7d\x5a\xe5\x24\x44\x6f\x43\ +\xb3\xdf\xb5\xc5\x90\x28\x99\x4c\x1a\x2b\x64\xa2\xff\xc6\xcc\x3d\ +\xa8\x25\xf7\xdd\xd1\xe1\x51\xbb\x7b\xe3\xe9\xf6\xdc\x53\x2f\xb5\ +\x67\x75\xfd\xf1\xfc\xad\x17\xdb\x4b\xb7\x9f\x6f\xa7\xba\x26\x75\ +\x8d\xf2\x78\xaa\xac\x59\xac\x48\x0a\xb9\xff\xab\x1f\xdc\x7b\x64\ +\x0b\x41\x10\x76\xfb\x7b\x3e\xa3\xde\x17\x3b\xe5\xd7\xc7\xfe\x38\ +\x87\xae\xea\x3c\xd5\xdd\x0e\xf6\x30\xc0\x94\xe0\x10\x51\xbf\x52\ +\x99\x12\xaa\x43\x08\xfb\x2a\x9e\xc6\xe5\xf7\x98\x35\xb7\xb1\x1a\ +\x82\xad\x82\x25\x0c\xc5\x75\x7e\xe4\x30\xb8\xef\x13\xcc\x11\xc7\ +\xe7\xd4\x41\x61\x10\x7d\x8b\xf8\xee\x0b\x63\xec\x3b\x8f\x6f\x0e\ +\x54\x6c\xb9\x4d\xce\x11\xaf\xf4\x56\x93\xe9\x2d\x60\xdf\x52\x55\ +\x42\x5f\x79\x79\x02\xfb\xf4\xf4\xa4\x1d\xdc\x78\xa3\x7d\xd3\x07\ +\xfe\x92\xbe\x3f\x8f\x34\x56\xa3\x9c\x48\x81\x89\x9b\x61\x86\x19\ +\x66\x98\xe1\x0b\x03\xcc\x44\x66\x98\x61\x86\x19\x7e\x63\x81\x39\ +\x5d\xcd\xeb\x3e\xd7\xfc\xee\xad\xe6\x98\x6f\x91\xcf\x13\xe0\x3e\ +\xcb\x4c\xd8\x2f\xab\xec\xfb\x3e\x63\x4c\x26\xb7\x4f\xd8\xf3\xe2\ +\x44\x57\xbb\xab\xf3\xc7\xed\xe3\xdf\xf3\x7d\xed\xa5\x3b\xa7\xed\ +\xde\xed\x53\xe9\xb1\xc9\x49\x67\xd5\xcb\xd5\xa6\x9d\x71\x63\x7c\ +\xc3\x4d\xc3\x4d\x5b\x73\x73\x45\xfa\xab\xe1\xa6\x4e\x85\xee\x55\ +\xf2\xe4\x9b\x49\xb8\xa5\x90\xed\x28\xea\x9b\xf7\x18\x02\x61\xed\ +\x97\x3e\x65\xb1\x41\xc8\x05\x85\x65\x81\x2f\xe5\x55\x3e\x4f\x28\ +\xd4\x13\x61\x63\x33\x47\xbe\xf2\x74\x40\xe1\x32\xf0\x22\x6e\x04\ +\x76\x5d\x78\xcd\xe3\x0d\xe5\x3f\x96\x3d\xeb\xc7\xc5\x03\xfd\xef\ +\x38\x2b\x95\x73\xb1\x69\xab\xb3\x75\xdc\x48\x7e\xb4\x6e\xeb\xd5\ +\xba\xa9\x53\x76\x0b\x4d\xf0\x8d\x01\x33\x99\x3f\x9d\xf8\x05\x34\ +\xe0\xbe\x0d\x83\x68\xfa\x02\x4f\x30\xf2\x53\x07\x38\x97\x55\x4a\ +\xe2\x13\x09\x7c\xe2\x0e\x44\x31\x86\x62\xed\x83\xaf\x34\xd4\xc3\ +\xbf\xb6\xd4\x45\x0b\xff\x43\xb5\xbe\x25\x2d\xaf\x36\x5c\xa9\x13\ +\x80\xe5\x61\x5b\x3e\x7d\xbb\x9d\xbe\xef\xd9\x76\x7c\xf3\xc4\x8b\ +\x89\xd1\xfb\xca\xdf\x63\xc3\x44\xff\x57\xf1\x43\xb1\x86\xdd\xbd\ +\xb3\x07\x64\x72\xc8\xca\xbd\x0b\x9f\x25\xa7\x21\x72\x45\xdf\x15\ +\x7a\x4c\xef\x28\x82\x3a\x96\x68\xfc\xea\x3d\xe4\xe8\x55\xf9\xb3\ +\x28\xca\x42\x31\x3a\xe7\xc3\x51\xc8\xa0\x14\xe5\x7f\xf4\xbc\xe0\ +\x84\xcc\x98\x40\xe7\xfb\x1e\x4a\xd0\x2f\xd3\x35\xfd\xa2\x5c\xa8\ +\xec\xf2\xf5\x58\xb0\x83\xc5\xbc\xdf\x12\xb2\x13\x6c\xa5\xc2\xbf\ +\xf4\xe5\x63\x84\x8f\x78\x55\x7b\xf3\xbe\xda\x86\x47\x54\xe2\x3b\ +\x57\x7c\xac\xb0\x2e\x30\x6e\x06\xe1\x52\xbc\xcb\xa5\x6e\x69\x8f\ +\x46\x0c\x75\x76\xdb\xa4\x63\x51\x8d\x9b\x6e\x3b\x7e\xf8\x04\x1f\ +\x4f\xb2\x55\x27\xe0\x23\x0a\xe8\x38\x5d\x9f\x5d\xb4\x2d\x4f\x93\ +\x49\x25\x2f\x48\x47\xd7\x3d\x9b\xe2\xbc\xa8\xec\xa4\x51\xa3\x98\ +\x57\xb7\x9a\x17\xf6\xaf\x2e\x96\xed\x40\x71\x56\xbf\x74\xde\x2e\ +\x7e\x6e\xdd\x2e\x1e\xc6\x8d\x87\x83\xad\x8e\x59\xca\x65\x40\x52\ +\x2e\x59\x09\xa2\xc4\x55\x98\x06\xea\x64\x18\x01\xd1\x27\x58\x68\ +\xf0\x1e\x1e\xc2\x18\x1b\xe1\xd2\x79\xca\x5c\x6c\xda\x92\x1b\x68\ +\x6a\xdb\xd1\xc9\x91\x2a\xa8\xe3\x45\x75\x90\xc5\x3e\xad\x9d\xb7\ +\xf6\xfa\xc3\xb6\x7a\xed\xcd\xf8\xef\xac\x7c\x2c\xcf\xb5\xcb\x3a\ +\x02\x43\xcd\x42\x87\x42\x8c\xab\x81\x9c\x10\xb2\xd2\x34\xec\xdb\ +\x02\x26\x83\x9b\x6c\x7e\xb2\x12\xd8\xe7\x50\x50\xd5\x39\x3c\x39\ +\x68\x87\x77\x55\xff\xa7\x37\xed\x58\x78\x72\x6f\xd3\x8e\x9e\xdd\ +\xb6\xe5\xb3\xeb\xb6\x7c\x4a\xfb\xea\x8e\xce\x71\x77\x56\xed\xe0\ +\xd6\xba\x1d\xdc\xd8\xb6\x03\xfe\x4f\x8d\xf3\x84\x82\x2f\xb8\xc9\ +\xac\xd0\xcb\xf5\x55\xdb\x3c\x58\xb5\xf5\xe3\x95\x5f\x6d\x49\xdf\ +\xc4\xb1\x4e\x4f\x08\x5d\x1e\x79\x18\x0f\xf0\xd0\xa8\x93\xc4\x09\ +\x76\x84\xb1\xce\x01\x68\x1c\x3b\xd1\xfb\x48\xc8\x6b\x6a\xf7\x5f\ +\x63\x44\x30\x3f\x91\x93\xe3\x95\x82\x09\x1f\x45\x64\x2a\xb2\x53\ +\x24\xd0\x43\xc8\xe2\x6c\x83\x07\xec\x28\x8a\x07\x19\xae\xaa\x85\ +\x5f\x43\x79\x79\xb9\x69\x97\xda\xd7\x17\x97\x97\x52\xaa\x1f\x55\ +\xa7\xf3\xd5\x79\xfb\xea\xa7\x17\xed\x85\x5b\x4f\xb7\xab\x8f\x7f\ +\xba\xfd\xf4\x8f\xfd\xac\x72\xf3\x0b\x6b\x15\xe0\x3a\x53\x77\x87\ +\x9c\xe1\xb7\x32\x0c\x63\x03\x88\xe1\xc8\x91\xa0\xb1\x7f\xdc\xda\ +\x07\x3f\xf0\x37\xda\xf1\x8b\x67\xed\xf4\xd6\x2d\xdf\x20\xc4\x1f\ +\x1b\x1f\xc6\x51\x1d\x97\x05\x31\x62\xa7\xb3\x89\x81\x98\x1c\x3b\ +\x3e\xd7\xc3\x93\x27\x8f\x2b\x44\xcb\xa5\x87\x2c\x7c\xac\xf6\x39\ +\x88\xd2\xb2\xa7\xc2\xb0\x27\x4e\x40\x51\x34\x44\xc8\x0f\x97\x74\ +\xb0\x95\x7a\xc7\xbf\x8e\x2e\xa7\x4a\xfc\x5d\x51\x1e\x22\xc3\x57\ +\x53\x87\x54\x75\x88\x96\x2a\xb2\x89\x12\x17\x9b\x37\x7e\x0b\x46\ +\x5e\x30\xda\xa6\x58\xa1\xdc\xbd\xe9\x9f\xbc\x4c\xcc\x77\xdc\xd7\ +\xce\x8c\x36\x83\xd8\x3f\xfd\xa6\x8c\x09\xe1\x57\xfd\x1b\x3e\x43\ +\xe1\x15\x43\xe0\x7d\x6a\x1b\x94\xf3\x83\xf6\x82\xd0\xfb\x00\x99\ +\x57\xe7\xba\x2c\x47\xc9\x54\xd0\x1b\x93\xf5\x2b\x83\xf5\x85\xe4\ +\x92\xc1\x62\xfa\x77\x92\xcc\x35\x10\x3f\xae\x50\x99\xca\x43\x58\ +\x9e\x4c\x3b\xbd\x71\xa3\xdd\xba\x79\xab\xdd\x3a\xb9\xd5\x6e\x9f\ +\xde\x69\xb7\x6f\xdc\x69\x27\x37\x34\x50\x71\xa0\xbe\x64\xec\x95\ +\x08\xf5\x48\xa3\x60\xfc\x86\x72\x65\xc4\xee\x7e\xe4\xfc\xe9\x79\ +\x40\x98\x68\x54\x44\x25\xb5\x51\x88\xcc\x39\x9a\x3e\x62\x41\x2a\ +\x7c\x8a\xc6\xfc\x64\x1f\xd1\x27\xe2\x9b\xd4\xa0\xaa\x58\x92\x2e\ +\xf4\x59\x04\x7c\x62\x29\x89\x95\x42\xda\xcc\x59\x15\x2e\x2a\xcb\ +\xc7\x8d\xb5\xe9\x43\xf9\xcc\x33\x26\x3e\xda\x88\x87\xe2\xf5\xb9\ +\x91\xf4\x92\xe3\x3b\x2f\x02\xf6\x18\xd6\xe3\x6a\x4e\x32\x14\x07\ +\xe5\xd7\x1c\x01\x39\xfc\xc8\x43\x4a\xff\xb2\xc8\x25\xce\x5d\x0d\ +\x47\x2c\x38\x37\x58\x1f\xf2\x60\xb4\x43\xea\xf8\x8e\x36\x9b\xc8\ +\xb8\xc3\xa0\xba\xe9\xf8\x8c\x91\xa0\x51\xa3\xfd\xa2\xa3\xbb\x5d\ +\xae\x1f\xb5\xcd\x36\x7f\x50\x96\x40\xc8\xb8\x36\x0a\x1d\x39\x82\ +\x32\x31\xf2\xe4\xc8\xba\x88\x04\xd5\x06\x23\xb4\xde\xed\x40\xc1\ +\x64\x0a\x3d\x86\x70\xa8\x39\x40\x39\x97\xff\x52\xfd\x72\xe3\xf8\ +\xb8\xdd\xb9\xf9\x6c\xbb\x79\xf3\x4e\x5b\x1e\xdf\x6e\x0b\x5e\x4b\ +\x79\x7c\xab\x1d\x1e\x1e\x47\x1b\x9c\x85\x1c\x64\xca\xbc\x03\x02\ +\x41\xa3\x95\x2e\xd3\x8b\xbf\xa5\xa7\xbf\xa0\xf4\x39\x0c\xc7\x1c\ +\x7d\x1c\xfe\x6e\xb2\x31\x65\x5c\x7b\x9e\xb0\x99\x06\x31\x14\x0f\ +\x0d\x0c\x0d\xad\x74\x1f\xe4\x71\x1c\xfd\x01\x02\xe8\xc3\x34\x69\ +\xd8\xe4\xc5\x7e\x41\xa9\x84\x48\x65\xbf\x0e\xaa\xec\x1d\xd8\xc9\ +\x90\x67\x07\xc5\x82\x6e\x78\x1b\x84\x27\xb8\xe1\xd4\x77\x85\x80\ +\xfa\x55\x1b\xea\x3c\x64\x59\x0c\x43\x74\x3c\x97\x79\x5f\x24\xb8\ +\xbd\xc8\x8a\x55\x6d\x8f\x8c\x30\x53\x01\x13\x97\x3e\x82\xf2\x2f\ +\x1a\xbb\x24\x3d\xa9\x1c\x43\x6d\x71\xd4\x9e\x79\x61\xdb\x7e\xec\ +\xe7\xbf\xbf\x3d\xba\xff\x49\xd5\x83\xfd\x89\xa3\x9d\xf1\x9c\x61\ +\x86\x19\x66\x98\xe1\x0b\x0c\xcc\x23\x66\x98\x61\x86\x19\xbe\xf8\ +\x20\xe6\x8c\xd3\x1c\x70\x7f\x2e\x98\x73\x44\xcf\x55\xa1\xa9\x32\ +\x8c\xbe\x9f\xef\x1c\x72\x0c\x70\x5d\x9e\xb2\x6d\xb7\xed\xfe\xe6\ +\x71\xfb\xef\xff\xf4\x9f\x6f\xef\xd6\x05\xcc\xbb\x5f\x7e\xa6\x1d\ +\x1f\xf9\x52\xcf\xc8\x8d\xeb\xb3\xf3\xcb\x76\x71\x19\x4f\x85\xf8\ +\x97\x8c\xaa\x24\x37\x5c\xea\xe9\x34\x5e\x09\xe8\x42\xa4\x77\x3e\ +\x68\x62\x0f\x94\x90\xd7\xa5\xe9\x07\x4d\x3f\x42\x20\x4f\x86\x5d\ +\x9f\x28\x89\xc2\xe2\xc9\x34\x9e\x58\xa9\xc9\xf7\x5b\x80\x27\xe8\ +\x03\x10\x05\xf0\xa5\x03\x1f\x7d\x63\xb8\x9e\xcb\x85\x17\xd2\xf8\ +\xaf\x2c\xfe\x33\xcd\xd7\xca\xdc\xfc\x22\xbe\xd0\x8b\x77\x97\x1b\ +\xff\x6f\xd3\xfa\xfe\x65\x5b\x3d\xcc\xa7\xf5\xf8\x0f\x2e\xfb\x44\ +\x6c\xa2\xd7\x85\x47\xc4\x20\x3e\x34\x65\x5d\x24\xf0\x84\x42\x5d\ +\xbc\x44\x3e\xa1\xe8\x93\x20\x1f\x0c\xf1\x89\x38\x60\x18\x3b\x0f\ +\x35\x24\xed\x72\x42\xe5\xc3\x9e\x44\xb2\xea\x28\x86\x5f\xb9\xd3\ +\xcc\xa5\x76\xca\xe2\xea\xac\xad\xce\xb8\x21\x2c\xe4\x5d\x7d\x5c\ +\x78\x1d\x9f\xb4\xc3\xe7\x6e\xb4\xa3\x5b\x87\xea\x4b\x21\xaf\xfb\ +\xcc\xfc\x05\x55\x75\x68\xe7\x93\x19\xfb\xbf\xec\x43\x56\x5f\x30\ +\x01\x71\x31\x39\x00\x3e\xa3\x5f\x07\x79\xd9\xa6\xa4\xec\x9d\xc6\ +\x08\x09\x33\xf6\x30\x74\xd7\x10\x83\xa8\x82\xfe\xa5\x73\xf2\xfe\ +\x4f\x26\x2f\x0a\xa0\xa0\x6f\xc8\x04\x6a\x07\x72\x93\x50\x3b\xaf\ +\x74\xee\xbb\x2e\x97\x7f\xf9\x45\x36\x2f\x6a\xd9\x07\x73\xe6\xb1\ +\x7f\xe8\x9d\x87\xcc\xd6\xc7\xcd\x14\x78\x46\x45\x95\x93\x2a\xfb\ +\x06\x26\x50\x6f\xc7\x49\x2d\x31\x6c\x80\x62\x2b\x0c\xdb\x13\x32\ +\x4f\x9e\x71\xac\xe5\x93\x67\xbd\x6e\x31\x40\x63\xac\xe2\xa3\xcf\ +\xa8\x83\xf7\xeb\xbc\x52\x17\x45\xa1\xa7\x22\xd2\xab\xfd\x63\x1c\ +\x1c\xf8\xdf\xb4\x76\xc1\x31\x12\xcf\x6f\x45\x9e\x34\xbb\x42\x25\ +\xc3\x63\x17\x75\xb9\x8b\xb6\x3c\xd4\x31\x77\xba\x6d\x9b\xe3\xd6\ +\x2e\xb7\x3a\xde\x1e\xad\xdb\xd9\x47\x1f\xb7\xf3\xcf\x48\xb7\xd2\ +\x79\x68\x4b\x23\x04\xde\x69\x11\xab\xe2\xef\x80\x14\x2e\x03\x37\ +\x57\x21\x8f\x2b\x84\xac\x93\x01\x5a\x68\x80\x29\x3f\x49\x0c\x6a\ +\xe5\x63\xdc\x2c\x0e\x2e\x14\x43\x71\x2f\x0f\x35\x86\x79\x3a\x8e\ +\x4a\xb3\x5c\xb2\x6a\xcb\x8d\xce\x95\x3f\xfd\x0b\xad\x7d\xe2\xbc\ +\x1d\x6c\x37\xee\x0e\x1d\x5d\xb2\xb2\x77\x49\xa3\x4c\xd7\xb3\x10\ +\xad\x68\x94\x04\x04\x37\xc9\x64\x90\x6c\xdf\x02\x59\x7d\xa0\x09\ +\xdd\x40\xec\x7b\xc7\x51\x01\xf5\xc6\x45\xd5\x58\x1e\x1f\xfa\xb5\ +\x8e\x27\x37\x0f\xda\xe1\xe9\x41\x5b\xde\xbe\x6a\x8b\xdb\x3a\x0f\ +\xdc\xd9\xb6\x25\x8b\x6c\xf7\xae\xda\xf1\xbd\x66\xba\xbc\xbb\x6e\ +\x07\x77\x2e\xdb\xc1\x8d\xb5\xff\x67\x8d\x5d\xcd\xeb\x7f\x9b\xce\ +\x03\x7c\x0f\xac\xf5\x9d\xb0\x7a\x70\xae\xf3\x21\x4f\x20\xc6\xf9\ +\xd8\x5d\xab\xca\xb0\x79\x8c\x82\x94\x2d\x44\x05\x71\x95\x5d\x53\ +\x4b\x22\x51\x6b\xff\x67\xd2\x35\x90\xd6\x40\x95\xcb\xeb\x75\xe3\ +\x7f\x41\xc4\xe7\xcd\xfe\x82\xb8\x21\x0a\x65\xbf\x47\xbb\x9d\x14\ +\xad\x32\x0d\xe8\xab\x1e\xec\x1f\x30\x7c\xc2\x2b\x25\xb9\x58\x56\ +\x52\xde\x70\x71\x73\xe7\x4a\xa7\x0e\x9e\x54\x5e\xb5\xcb\x8b\x0b\ +\x3f\xed\xad\x91\xdb\x6e\x28\xd3\xbd\xe5\xed\xf6\x9e\xb7\xdd\x6a\ +\x4f\x5d\x3d\x68\xff\xf0\x5b\x3e\xd8\x56\x1a\xb3\x44\xe4\x3b\x35\ +\x80\xf6\x54\xbc\x19\x7e\x6b\x43\xee\x53\xed\x4c\x8f\x9a\xed\xba\ +\x7d\xea\xf5\x8b\xf6\x63\x3f\xf3\xf7\xdb\xdb\xbe\xec\xae\x5f\xaf\ +\xca\x7f\x4d\x32\x3f\xf0\xa9\x44\x07\x13\x39\x6a\xbc\xc5\xe2\x07\ +\x23\x50\x63\x0a\x55\x88\x01\xc4\xf4\x2f\x0d\x18\x9f\xd3\x29\x36\ +\xc6\x78\x46\x40\x66\x2b\xd9\xf3\x29\xb8\x22\xc1\x03\xe1\x7b\x0d\ +\xa0\x14\xd6\x59\x84\x71\xca\x93\xc1\x8c\xe7\x09\xd2\x49\x68\xad\ +\xd8\x5e\x2e\xbc\xe5\x80\xa2\x1d\x52\x51\xf9\x48\x92\x48\x19\xfd\ +\xc2\x31\xed\x1f\xbd\x64\x2d\x5c\x77\xa1\xfd\x12\x28\xb9\xca\x42\ +\xf2\xf1\xee\x2d\xfa\x27\xec\x79\xa3\xbc\xf2\xe6\xb9\x60\x3c\x2f\ +\xd8\xd7\x46\x40\x4c\x36\xb3\xab\xac\x40\x0f\x15\xe6\xf1\x8e\x6e\ +\xd7\x27\xfd\x40\xc7\x87\xe8\xfc\xb9\x3c\x6c\xc7\x3a\xdf\x9e\x08\ +\x0f\xb5\xd3\x96\x4b\xf6\xad\xbe\x13\x71\x75\xb6\x38\xef\x5b\xd0\ +\xc7\x43\x20\xa9\xd5\x02\x68\xf0\x69\x34\x84\x43\xd9\x62\xc1\xac\ +\xec\x13\x3a\x9e\xa0\xc6\xc9\xa1\xc6\xdf\x92\x27\x93\x55\x2f\xf0\ +\xf8\xf0\xb8\xdd\xbc\x71\xab\x9d\x9e\xdc\xd5\x9c\xff\x24\xfc\x54\ +\x4f\xd7\x9f\x7c\xce\x4c\x52\x10\x01\x6b\x7c\x78\x81\xc5\x28\x5d\ +\xe6\xc1\xe4\x27\xfb\x1c\x27\x91\x8d\xf3\xb2\xcc\x21\xe5\xdc\x83\ +\x8d\x7c\xf6\x8b\x2f\x0b\xfb\xa1\x1b\xf3\x77\x7e\xca\x47\x24\x09\ +\xa9\x0f\x3e\x27\x0f\xb2\xa4\x1f\xea\xf0\x0c\xd9\x66\xf6\x3d\xfd\ +\x55\xfa\x44\x24\x7c\xac\x27\xaf\x38\x1d\xa3\x51\x2f\xe6\x3e\x2c\ +\x88\x55\x5c\x3c\x74\x2e\x87\x8e\x75\xcb\xf2\x1d\x81\x05\xac\xcc\ +\x3b\xe5\x61\x23\x06\x36\x2e\x84\xe0\xf1\xce\x9a\x5b\x40\x2a\x12\ +\x3c\x9d\x5b\x63\xa2\xf4\x9e\xc3\x88\xb7\x8e\x7d\x6d\x3e\x16\xd3\ +\x7c\x2e\xa1\x8d\xd6\xa9\xa6\x62\x58\xb0\xf2\xb4\xfe\x60\x23\xd4\ +\x11\x2d\x97\xf5\x4a\xf3\xaa\xcd\xb9\x72\xad\x3d\xdd\x37\xe4\x58\ +\x8a\xb8\xa4\x13\xc4\x7f\x1a\x82\xca\x6c\x1f\x10\x1f\xe4\x04\xb1\ +\x5e\x8c\x37\xec\x47\x08\x70\xdd\xa1\x99\x0f\x9f\xc5\x42\x63\xf2\ +\xf0\x66\x3b\xbd\xf1\x94\xec\x9a\xf4\x31\x49\xd5\x78\xe5\x5f\x9e\ +\x5d\x26\xed\xc9\x78\x81\xe4\xcd\x72\xb2\x10\x13\xab\x94\xe4\xb1\ +\x1a\xf3\xfc\xe0\x03\x15\x43\xaa\xca\xef\x3c\x3d\x7f\xb4\xc9\x7c\ +\xaf\x63\xa4\xe9\xd2\x7d\x27\x45\x40\x78\x43\xf3\xe8\x50\xe2\xe8\ +\xe9\x57\xf6\x34\x04\x4d\xc8\xee\xd4\x47\x1b\xb4\x10\xa5\xf2\x4f\ +\xfd\x19\xd0\xa5\x1d\x66\xd7\x67\x82\xd0\x47\x3c\xf5\x84\xba\xc2\ +\xdf\x31\xe8\xae\xc9\x83\x86\x2a\xc7\x38\x83\xa7\xbf\x84\x1a\x3f\ +\x8c\x4f\x5f\xdf\xd2\xac\xb4\x03\x66\x9d\x29\xd0\x79\x72\x2b\xc7\ +\xea\xd7\x28\x01\xb0\x63\xc4\xb6\x14\x7e\x05\xe8\xed\xa0\x8a\x1f\ +\xb3\xf8\xff\xfc\xe3\xf6\xf7\xbf\xf7\xef\x6a\x1c\xeb\xd8\x51\x88\ +\xdc\x73\x33\xcc\x30\xc3\x0c\x33\xfc\x3a\x00\x73\x89\x19\x66\x98\ +\x61\x86\x2f\x4e\x18\xe7\x80\xd7\xcc\x07\x4b\xd5\x4d\x9a\x38\xd6\ +\xbc\xd2\xf3\xd0\x9a\x8b\xfe\x6a\x61\x28\xab\xc2\xc4\xf5\x82\x0c\ +\x5b\x4d\xaf\x8f\x6e\xb6\x9f\xf8\xf6\xef\x6e\x2f\xdc\x5c\xb6\xb7\ +\xdd\xbd\xe5\x49\x73\x5d\x5a\xb0\x88\xf6\xe8\xf1\x79\x5b\xad\xb8\ +\x69\xaa\x8b\x31\x4d\x70\x3d\xbf\xe7\x6c\xeb\xc9\x30\x17\x87\x19\ +\x4b\xfa\xb8\x78\x14\xed\x17\x9a\xa9\xeb\x32\xce\x49\xeb\x02\x35\ +\x6f\xfe\x70\x49\x6a\xb0\x8b\x33\x06\x9f\x40\xb1\xdc\x40\xf5\xeb\ +\x1e\xf3\xd5\x0f\x56\xbe\x15\x60\x73\x7e\x07\x84\xc9\x94\x8a\x22\ +\xa8\x8d\x2c\x1e\x9c\xa8\x0e\x47\xba\x60\x5e\x72\x91\x6b\xb5\x5d\ +\xb8\xe0\xe0\x95\x80\x0b\x9e\x4e\x3b\xdf\x78\x31\x6d\xfd\x68\xd5\ +\x56\x6b\x95\xcf\xaf\x3a\xd5\x11\xca\xe9\x88\x40\xb4\xb3\xf9\xe6\ +\x09\x17\xcc\x4b\xc5\x3b\x3c\x24\xae\x5a\xe6\x0b\x12\xf9\x13\x9c\ +\x55\x2c\x62\x4f\x59\x07\x40\x19\x51\x7d\x11\x54\x95\x29\xa8\x3c\ +\x63\x5e\xf1\xb8\x5d\x1f\x6f\x72\x75\x14\x04\x63\x5d\xe2\x6c\xd4\ +\x46\x71\x6f\x3e\x6c\x07\xbf\xfc\x40\xfa\x8d\x75\x36\x72\x53\xea\ +\x44\xed\xd0\xf5\xed\xe1\xe1\x21\x35\x76\xa5\xa8\x17\x35\x8c\xfc\ +\xd7\x01\x3e\xbb\xd6\x2a\x36\x2e\xca\x61\xd0\xfe\xda\xc0\xd7\xca\ +\x40\x35\xdc\xfb\x83\x8b\xf3\x50\x19\xd1\xa4\x19\xc0\x63\x91\x37\ +\xec\x70\xb0\x49\x32\xff\xad\xc6\xaf\x37\x77\xc6\xa7\xf7\x63\x05\ +\x83\x38\x09\xc4\x96\x68\x99\x3c\x1a\xc1\xec\x2f\xbb\xa0\x1f\xed\ +\x39\xd6\xe1\x23\x36\x59\x8a\x06\x86\xaf\xf8\xca\x67\x3a\xd9\xbb\ +\x1f\x28\x36\x62\x89\xe2\x67\xa5\xb5\x41\x33\x06\xfa\x4e\x13\x09\ +\x1a\xfa\x18\x97\x7e\x02\x2f\xfd\xa0\x51\x0e\x3e\x71\x13\xa9\xdf\ +\x58\x72\x65\xc5\xb3\x59\x9f\xf9\x12\xa3\x1e\xd2\x8b\x65\xc1\xc5\ +\xaf\x7a\xe4\x75\x9a\x39\x16\x38\xe7\xe4\x7d\x0a\x17\x41\xa4\x2b\ +\xca\x97\xe0\x7d\x49\x56\x21\xfb\xe8\x4a\xe3\x6d\x79\x57\x3d\x7a\ +\x83\xc5\x8a\x45\x5b\xbd\xa6\x63\xef\x63\x9b\xb6\x59\x71\xec\x45\ +\x1d\xf0\xf3\x0d\x13\xc6\x29\x64\x88\x6d\xa0\x5e\xec\xe7\xb8\x93\ +\x54\x4a\xf3\x6c\x05\x9d\xa3\x7e\x22\xc4\xea\xc1\x12\x2c\x29\x81\ +\x72\x03\x8a\x97\x52\x5e\x5d\x9e\xb7\xf6\xf8\x4d\xf1\xaa\xdf\xd5\ +\x46\x78\xac\x73\xc5\xa7\xdb\x83\x9f\xfa\xb9\xd6\x1e\x9c\xb9\x7b\ +\x8e\xc8\x13\x01\xfd\x7f\x4a\xee\xa7\x84\xa9\x08\x74\x29\xe0\xef\ +\x42\x9c\x58\x05\x74\xce\x0c\x67\xa6\x01\xb2\x7f\x47\xa5\xfb\x86\ +\x4d\xa1\xe9\x2d\x16\x43\xf9\xa5\xf7\xc9\xad\x45\x3b\xb9\xad\x7a\ +\xf1\x7f\x69\xb7\x96\xed\x88\xd7\x3e\xde\xe0\xb5\x8f\xbc\xee\x51\ +\xce\x77\x44\xd5\xef\x27\xc2\x25\x0b\x6b\x4f\x5d\xf9\x3f\xd6\xae\ +\x0e\x55\x26\x4f\x59\x38\xba\xe4\xac\xdf\xe6\x82\xff\x93\x3c\xf7\ +\x79\x71\xaa\x73\x54\x04\x5f\x6e\x4c\xd5\xf1\xe8\x1d\xdc\x61\xd8\ +\x03\xde\x87\x8a\xdd\x15\x58\x87\xc6\x08\x6c\x92\x8a\x96\x7b\x71\ +\x53\xdf\x45\x2c\xaa\xf9\x49\x35\xd1\x68\x6b\x04\xf0\x8d\x1f\x0a\ +\xad\xf1\x29\x5d\xa1\x01\x75\xb2\x06\xcb\xe5\x51\xf5\x20\x5e\xd6\ +\x21\xe5\xd0\x89\xda\xc1\x4a\xff\x40\x62\xb3\xd8\xea\x3b\x61\xd5\ +\xce\xce\x2e\xda\xc5\xe5\xca\xad\xe4\x90\xd2\x30\x6d\xbf\xef\x95\ +\xa7\xdb\xd3\x37\x8e\xdb\x83\x9f\xfc\xd9\xf6\x91\x4f\x7e\xb4\xf1\ +\x7f\x8d\x3e\xce\x06\xa0\x39\xbb\x9a\x19\x7e\xab\x42\x1c\x17\x9c\ +\x8f\x8e\xdb\x07\xbf\xe3\xaf\xb4\x93\xe7\x1e\xb7\xd3\x3b\x37\x3d\ +\x17\xf0\xd3\x01\x1e\x43\x1c\x91\x09\x31\xd8\x52\x8e\xf1\xe6\xb1\ +\x18\x9f\x94\x05\x1e\x23\xda\x7c\x2c\x85\xa5\x86\x61\x8c\x49\x7d\ +\xb0\x69\x8b\x61\x4f\x39\x69\x4b\x70\x7e\x98\x1c\xd6\x01\x3b\x42\ +\x07\xda\xe1\xff\x4d\xf3\x53\xa0\xa1\xab\x48\x50\xc2\x32\xce\xdd\ +\x12\xca\x52\xa1\xbd\x28\x54\x23\x05\x3a\x93\xd0\x8b\x25\xbe\x8e\ +\x76\x7f\x25\xc7\xf7\xb2\xbb\xd0\x99\xc9\x54\x38\xa4\xa9\xaf\xf6\ +\xf8\x47\x0e\xf0\x76\x88\xc0\xd6\xfb\xf8\x15\x72\x6e\xd1\x46\x7d\ +\xe3\xa4\x6b\x47\x41\xf8\x06\xe0\x27\x12\x01\x93\x2d\xc5\x08\xfb\ +\x32\xa0\xbc\x54\x3a\x2a\xee\x7d\x7d\xe3\xc6\x69\xbb\xf7\xf4\xed\ +\xf6\xc2\xbd\x77\xb4\x17\x9e\x7f\x5f\x7b\xee\xa5\xf7\xb6\xdb\x77\ +\x5f\x6a\xcb\xa3\x53\xf5\xd5\x3a\xeb\xe6\xa2\x76\xab\x31\x14\x19\ +\x64\x32\xee\x96\xac\x7e\x92\x62\x3c\x4f\x76\x7b\x31\x03\x0d\x56\ +\xe7\xe2\x74\xa7\xaf\xa8\xe7\x91\x17\xd6\x8e\x5c\xdf\x23\xfe\x37\ +\x58\x86\x18\x4f\x89\xf8\x8e\xd8\xeb\xab\x31\x9e\x3a\x80\xbe\xa5\ +\xbf\x62\x6c\x6b\xf3\x5c\x4a\xba\x9d\x38\xd8\x49\x83\xcf\xc1\x9c\ +\xba\xd8\xfc\x5d\xe5\x4d\x54\xe7\x70\x2f\x62\x21\x7b\x0e\x22\x0e\ +\x5f\x8f\xb5\x11\xcb\x16\xd4\x71\x1d\x2d\x37\x6c\x68\x5c\xf7\xac\ +\x4b\x54\x42\x4d\xc1\x3f\x7c\x2a\x6f\x98\xc8\x93\x68\x7d\xda\x06\ +\x5f\xcf\x9f\xa4\xf3\x0f\x8d\xb4\x39\x57\xf9\x58\x8a\x96\x54\x1b\ +\x62\x21\x2d\x62\xda\xc3\x7e\xd1\x07\x46\xb4\xaa\x63\x70\x85\x94\ +\x2f\x2a\x03\xff\x65\x5a\x7a\xc0\xfb\x7e\xf0\xf7\x12\x3d\xbe\x29\ +\x63\x77\x58\x78\x8e\x31\x15\xc5\x93\xd4\xcc\xc1\xb7\x57\xfa\xbe\ +\xba\x78\xe0\xd7\x3d\xf2\xd6\x91\xe8\x31\xa1\x32\xd4\xb8\xaa\x38\ +\x86\x14\xaa\xaa\x93\x1e\x3f\x24\x77\xae\x31\x6c\x25\xe3\x1b\xf4\ +\x09\xc0\xd1\x3b\x45\x0c\x0b\x25\x8b\x7b\xed\xc6\xd1\x89\xbc\xfd\ +\x1c\xbc\x5d\xb8\xfe\x5c\x6f\x34\xb7\x30\x48\x57\x1d\x84\x94\xf9\ +\x53\x0c\x9a\x3a\x18\xd7\xcb\x72\x78\x98\x35\x46\xbf\xd0\xd6\x70\ +\xd1\x26\xde\xfe\x02\xfa\x11\xce\xfd\xee\x05\x58\xbb\xed\x61\xe4\ +\x31\x50\xa5\xa1\x89\x51\x7c\x45\x4b\x7f\xe9\xec\x62\x1a\xce\x9e\ +\xc7\x04\x1b\x4b\x5c\x29\xd6\x53\x6a\x81\x51\x97\x74\x33\x38\xfe\ +\xa8\x48\x8f\x2a\xaf\xa0\xfc\x82\xc4\x79\xd5\xa7\xf3\xfc\xc1\xe4\ +\x14\x37\x52\xc0\x31\x94\x40\xa3\x79\x19\x17\x9d\x06\x89\xfb\x24\ +\xac\x69\x0f\x08\x16\x5f\x3b\x4c\x18\x9a\x84\xa9\x1c\x43\x8a\x5c\ +\x03\x44\x7f\x85\x67\xf9\x73\xdd\x7c\xc8\xf5\xf9\xe1\x41\x7b\xe6\ +\x99\x5b\xed\x27\x3f\xfa\x8f\xda\x66\xfb\xa6\xdb\x00\x4c\x2d\xde\ +\x8b\x3b\xc3\x0c\x33\xcc\x30\xc3\xaf\x09\x98\x13\xcc\x30\xc3\x0c\ +\x33\xfc\xe6\x01\x73\xbc\xeb\xe6\x77\xa3\xee\x73\xcc\xff\xba\xb9\ +\xe6\x8b\x9f\x0b\x3e\x5b\x3c\x6c\x46\x25\xe9\x37\x4d\x5b\x79\x87\ +\xfe\x59\xfb\xde\xaf\xff\xe6\xf6\xee\x83\x8b\xf6\x95\xef\x79\xbe\ +\xdd\xbc\x79\x2c\x0b\xb6\x48\xcf\xce\x2f\xda\x19\x4f\x67\x0d\x37\ +\xc6\x63\x26\x1d\x17\xf4\x86\x10\x7d\x02\xe6\xe6\xb1\x6f\x68\x32\ +\x41\x96\xde\xd3\x64\x39\xb2\xc5\x8d\xd5\xd0\x93\x78\x1e\xed\xc5\ +\xb4\xd0\x43\xd1\x9b\x04\x6b\x48\xe2\xf2\x79\xf5\x60\x2c\xa6\x69\ +\x3a\x5d\xf5\x79\x2b\xa8\x8c\xe9\xe6\x9b\x5d\xf0\x15\x9c\x0b\x76\ +\x9e\xc6\x63\xd1\x4b\x93\x76\xea\xc2\xc5\xb1\xed\xf2\xf5\x2f\x7f\ +\x59\x4c\x7b\xbc\x6a\x9b\x37\x2f\xfc\xbf\x69\x6b\x5e\x5f\xa7\x8b\ +\x11\x87\x1c\xcb\xe7\x62\x63\x79\xd0\x96\x8e\x73\xd8\x8e\x4e\x22\ +\x26\xaf\xfa\x39\x3e\xda\x5a\x3e\xe2\x3f\x89\x74\x81\xe0\x0b\x6c\ +\xfa\xa2\x2a\x26\x4a\xa8\xba\x00\x72\xf1\xa4\x30\x82\x7e\xe1\x96\ +\xe0\x1e\xa2\x4f\xed\x62\x29\x60\xf0\xb3\x2d\xd1\x72\xe2\x13\x70\ +\xa0\xba\xa9\xb4\xed\x7d\xb5\xeb\x23\xda\xc7\x9b\x73\x5d\xc0\x60\ +\x50\x45\x96\x92\x65\xe7\xbf\x96\x96\x47\xf4\x87\x22\xb8\x8e\xb1\ +\xef\x61\x0b\xa4\x71\xba\xa3\x1d\xfb\x47\x10\xe2\xae\x0e\xd8\xa9\ +\xd7\x13\x95\xcc\x98\xe8\xdd\x98\xc9\x61\x92\xa6\x98\x7d\x1c\xa5\ +\x2e\xc6\xe8\xd4\x4b\xae\xe7\x70\xf5\x6a\x19\x57\x16\x8b\x37\xd1\ +\xae\xe8\xb3\xcc\xa1\xf1\xe0\xd7\xc7\x31\x2e\xe0\x31\x7a\x8c\xc0\ +\xc7\xad\x11\x67\xc8\x72\xbd\x40\xd5\xe5\xd0\x99\x72\x70\x54\xfe\ +\xc4\xd8\xaf\xa2\x19\xdb\xbe\xf8\x88\x18\x6c\xc6\x26\x6a\x3b\xbe\ +\xaa\x2e\x72\x0c\xa0\xb0\x3b\x56\xf8\x8f\xf1\xc1\x58\x2c\x93\x0d\ +\x2a\xac\x1b\x3e\xce\xef\x72\x87\x36\x50\x36\x3a\xe7\x11\x4a\xcf\ +\xc5\x6e\xf8\x4b\xb4\x1f\x84\xb2\x19\xc3\xd3\x0d\xb8\x29\xae\xea\ +\xa7\x1d\xbd\x3d\xbf\x6c\x9b\xcb\xb5\x9f\x26\x8a\x9b\x78\xd8\xc8\ +\x8c\x1d\xa7\xe8\x76\x03\x26\xea\xc6\x7a\xb6\x7c\xb8\x88\x3e\xbc\ +\xa3\xea\xdc\x15\x32\x04\xcf\x17\xed\xea\xa3\x97\xed\xe0\x3e\x7d\ +\xab\x63\x4f\x01\x29\xe3\x4a\x65\xba\xaf\x17\x2c\x02\x53\x87\x08\ +\x17\x75\x0c\xd6\x90\xbc\xed\x1c\x64\x89\xa3\x5b\xfc\xca\x5f\x52\ +\xf9\xe0\x02\x8b\x91\xb2\x20\x66\x23\xef\xd1\xe2\xb0\x1d\x3c\x3c\ +\x6b\xed\xdf\xbf\x2e\xf9\x93\xed\x64\x7b\xd6\x4e\x37\xaf\xb5\xf5\ +\x8f\xfd\x4c\xbb\xfa\xc9\x4f\xb5\xf5\xe1\xa5\x17\xd0\xe8\xd3\xad\ +\x0a\xee\x6b\x7a\x04\x29\x70\xf0\x00\x1f\x5b\x32\x96\x99\x62\x9c\ +\x81\xba\x18\x92\xee\xc7\xe8\x30\x29\xe1\xec\x46\x1b\x09\xa1\xe3\ +\x79\x71\x78\xd4\x96\x37\xd4\xaf\xe0\xe9\x55\x5b\xdc\x6c\xed\x44\ +\xf4\xc6\xcd\x03\x61\x6b\x47\xb7\x75\x9e\xd2\x71\x7e\xe3\x54\x87\ +\xff\xed\xc3\x76\xf8\xac\x6c\xf7\x8e\xda\xd1\x73\x3a\xfe\x9f\xd6\ +\x39\xe2\x58\x51\x7d\x02\xcf\x71\xa7\x52\x7c\xb3\x47\xb8\xd5\xf7\ +\xc3\xea\xe1\x45\x5b\x9d\xb3\xa8\x56\xb7\xc2\xe4\x2e\x2e\xf6\x09\ +\x95\x88\xba\xc0\xbb\xa6\x99\x94\x79\x6a\xab\x35\x49\x91\xed\x98\ +\x50\xfb\x41\x29\xfb\x64\xcb\x2f\xed\x59\x54\xe3\x7c\x1c\x7e\x7d\ +\x3c\xaa\xdf\x6b\x51\x2d\xc6\x25\x18\x24\x1c\xfd\x49\x26\x72\x23\ +\x7b\x0c\x40\x71\x1c\x8b\xc6\x0d\x52\x3a\xf2\x20\x1c\xf0\x3f\x79\ +\x57\x6d\xbd\x59\xfb\x47\x27\x8f\xcf\x2e\xf4\xfd\xa4\x71\x4f\xf9\ +\xb2\x3d\x7f\x7a\xaf\xdd\x7d\xe1\xb8\xdd\x78\xf4\xcb\xed\x07\x3e\ +\xf0\xdd\xed\x82\x71\xae\x9e\xf1\xe2\x4a\x14\x38\xd5\x69\xa7\xc0\ +\x19\x7e\xeb\x01\x3b\xf3\x4a\xe3\x60\xdb\x1e\xad\x1f\xb5\x1f\xfc\ +\x91\x6f\x6f\x2f\xbc\xf2\x54\x3b\x3c\xe2\x1b\x36\xf6\x2d\xe3\x95\ +\x61\xc9\xbe\xf6\x38\x15\x47\x2a\xb5\x7d\x18\x52\x78\xf6\x21\x51\ +\x90\xe3\x64\x42\x72\x69\x2b\xb9\x36\x78\x9f\x47\x43\x57\x30\x71\ +\x82\x2e\x0c\xe3\x6d\x47\x17\x8b\x69\x9b\x7c\xa5\xb6\x6d\x46\x25\ +\xdd\x4f\x20\x9e\xc3\x56\x43\x3d\xf5\x55\x62\xa4\xc0\x50\x42\x3f\ +\x76\x4c\xec\x12\x0a\x3f\x35\xc1\xf1\x5c\x9a\x8c\x57\x51\xa6\x68\ +\x9c\x53\xca\xcc\xb9\x43\x7d\xa9\xa0\xd6\x89\x86\x0c\x8f\x67\xfa\ +\xa5\xdc\x17\xc7\xad\x0d\xdf\xd1\x16\xf9\xeb\xdc\xe5\x1d\x24\x0f\ +\x92\xcc\x57\xd9\x05\xe1\x33\x00\x36\x7d\x2f\x61\xe0\xc9\xb8\x23\ +\x7d\x7f\xdd\xb9\x73\xd8\x5e\xbc\xf7\x72\x7b\xf6\x99\x57\xdb\xf3\ +\x4f\xbf\xa3\xbd\xf4\xf4\x7b\xda\x0b\xcf\x7e\x59\x3b\xe5\x3f\x6a\ +\x7d\x0e\xcd\xa7\xb6\xdf\x02\x5c\x06\xf1\x48\xe4\x56\x9e\xae\xaf\ +\xe9\xd0\xd7\xd9\x36\x64\xbe\x6b\x11\xc3\x26\xc0\x6c\x4a\x4a\x20\ +\x90\xf3\x26\x4a\x81\x06\xcb\xd1\xf2\xb8\x9d\x1e\x9d\x68\x9e\x7a\ +\x23\xaa\x96\xb1\x7b\x0c\x41\xb9\x1b\x22\xe0\xe0\x10\xd6\xde\xc7\ +\x11\x44\xe6\xdc\x37\xde\xd0\xc5\x5c\xc3\xf1\x6d\x67\x8b\x0b\x00\ +\xe4\xb8\x66\x20\x2e\x7a\x7c\x61\x43\xe7\x2d\x6d\xf6\x73\x11\xcc\ +\x39\x62\xde\x31\x21\x32\x11\x9d\x39\x74\x11\x69\xca\x1b\x99\xad\ +\xdf\xcd\x1b\xa8\x64\xf8\xde\xa0\x1e\xcc\xd9\xa5\x4a\x9d\xcb\xd0\ +\x41\x3c\x5d\xe3\x44\x3d\xbc\x00\xe8\xa8\xc8\x49\x85\x78\x54\xec\ +\x9d\xc5\x40\x6d\x51\xcd\xf0\x0c\x3f\x93\x6c\x5f\xf0\xe9\x56\xc4\ +\xfa\x1a\x3b\xf6\x71\x06\xc9\x21\xb8\x5e\x01\x49\x25\x53\xbf\x63\ +\xf9\xac\x37\x8f\x34\x27\x7b\xdc\xb6\xba\xee\x7b\x7c\x71\xd6\x56\ +\x3c\xa1\xc6\x9b\x36\xe4\x8b\xf7\x54\xab\x5d\x18\xc7\xd4\x68\x8f\ +\x6b\xb0\x38\x96\x2c\x8b\x7a\x1c\x58\x26\x09\xde\xc7\x1b\xaa\x04\ +\xfb\x25\x8f\xa0\x59\x48\xbb\x7d\x53\x93\x3e\x7b\x86\x2f\x91\x2f\ +\x2e\x74\xcd\xb5\xe5\x3b\x15\x47\x59\x51\xee\xc5\xda\x95\xed\xd0\ +\x65\x2f\x8e\x79\x6e\x15\x91\x8d\x11\xc4\x3c\x7b\xc7\xe7\x90\xac\ +\x73\xb5\xde\x69\x26\x3b\x75\x4d\x88\x08\xc4\x0f\xc4\x1e\x79\xf1\ +\xa7\x4c\x79\xe0\xa4\xb2\xed\x6b\x1d\x4c\x82\xec\x21\x4e\x4a\x73\ +\x4a\xa0\xfc\x77\xb9\x99\x94\x49\x9d\x83\x7c\x43\x65\xc2\x06\x44\ +\xbf\x15\x8c\xf5\xb5\x96\xac\x71\xe1\x93\x4f\xf7\x3b\xd4\x1e\x48\ +\xa1\x8c\x6e\x07\xfb\x44\xe8\xf3\x29\xa6\x92\x75\x6e\x73\x7f\x90\ +\x84\x73\x42\xb4\x3e\xb8\xb0\x1b\x53\x66\xce\xdf\x5d\x05\xe6\x9d\ +\xc4\x11\x33\xd9\xb2\x1d\xca\x1b\x3f\x4e\x5c\x6a\xee\xba\x6c\x77\ +\xee\x9e\xb6\x07\xeb\x5f\x6a\x3f\xf4\xaf\xff\xb1\xeb\x44\xdd\x23\ +\xcf\x13\x8d\x98\x61\x86\x19\x66\x98\xe1\xd7\x08\x7c\xaf\xcd\x30\ +\xc3\x0c\x33\xfc\xc6\xc2\x34\x1b\x0c\xd8\x97\x81\xd2\x41\xaf\xb3\ +\x8f\xc0\x1c\x31\xe7\x89\x7d\xd2\xfb\x56\x31\x3f\xd7\x7c\xb2\x97\ +\x2b\x66\x8c\x01\xcf\xff\x62\x2d\xaf\xda\x3f\xff\x5b\xdf\xd0\x5e\ +\xba\xf9\xa8\xbd\xf2\xd4\xbd\xc6\x6b\x6a\x98\x78\x1f\xca\x7f\xbd\ +\xd9\xb4\x07\x8f\x56\x6d\xcd\x7f\x4c\xe9\xa2\x8b\xa7\x4e\x22\x2f\ +\x54\x93\x5d\x95\xed\x89\x35\x75\x30\x61\x02\x0c\x0f\x4d\x3e\x75\ +\xbb\x7c\x52\x5f\x34\x0e\xbe\xe9\xd7\xed\xa8\x6c\x88\x4b\x05\xbf\ +\xe2\x2b\xff\x3b\x8d\x0b\x96\xb1\xe9\x9f\xb5\x1b\x08\x61\x9a\x41\ +\x49\xe2\x0a\xb9\x5d\x1d\x6b\x42\xef\xd7\x31\xa9\x4c\x74\x02\xf7\ +\x39\xf1\xf9\x9f\xa0\xb3\x78\xcd\xe3\xfa\x81\x90\x27\xd3\x78\x3d\ +\x8a\xb6\xba\x7c\xa9\x1b\xec\xfe\xf5\xe9\xb1\x42\x9e\x1c\xb6\x93\ +\x3b\x57\xed\xe6\xdd\x65\xbb\x77\xe7\xa8\xdd\xbe\xb3\x6c\xa7\x37\ +\x0f\xdb\xad\xe3\x6d\x5b\x9e\xf0\x9f\x50\x97\xbe\xa1\xe6\x27\xfb\ +\x88\x40\xfe\x08\xe1\xa8\x2e\x9f\x24\xeb\x19\x17\x7f\xa2\x88\xe6\ +\x48\xd2\x93\x8b\x14\xdb\xc3\xc3\x17\x72\x75\x75\x47\xa2\x4f\x58\ +\xa7\x98\xf6\x83\x55\xe2\xcb\x7f\xc5\xd8\x5e\x1d\xb5\x83\x33\xed\ +\xef\xcf\x5c\xb4\xd5\xc3\x07\xb2\xea\x02\x9b\xb8\x9b\x0b\xf1\x17\ +\x8d\xeb\xdc\xe5\xe2\xaa\x1d\x72\xb7\x26\xee\x7e\x19\x5d\x7f\x41\ +\xa4\x91\xa5\x83\x0b\x09\xd6\x20\xdb\x28\x16\x8c\x59\x9e\x70\xe8\ +\x81\x49\x76\x3c\xa5\x1a\x0b\x08\xc9\xbb\x22\xc7\x14\x0d\xec\x1e\ +\xc5\x58\x20\x92\x1c\x7b\x38\x18\x8d\x29\x8d\x71\x2f\xfc\x10\x44\ +\xe0\x61\x97\x71\x1c\xcb\x57\x96\x42\x2f\x4a\x21\x7b\x27\x76\x7d\ +\x95\x89\xb2\x97\x0f\x2d\xfb\xa0\x67\xa6\xd2\xf9\xc4\x90\x6d\xe8\ +\x79\x02\x21\x49\xd9\xb7\xb2\x95\x3c\xfa\xfa\x57\x9e\x95\x0f\x3f\ +\xd1\xfa\x05\xb5\x75\xae\x81\xf8\x12\x2b\x8e\x17\xb2\xb8\x19\x24\ +\x7d\xc5\xc0\x93\xfc\x1c\x17\xce\x4f\x3e\xe9\xf1\x4f\xde\xc7\x0b\ +\x32\x19\x85\x5c\xe4\xf7\xa7\xcd\x78\x4d\xd8\xe3\xcb\xb6\x5d\xc5\ +\x9f\xdf\xa3\x93\x57\x0c\x1b\x17\x0e\x28\x3f\x5d\xcd\x98\x45\x45\ +\x7c\xee\xad\x71\x33\x98\x72\x9f\x59\xb4\x93\xa3\x85\xce\x41\x42\ +\x1d\x7b\xed\x93\x47\x6d\x75\xce\x62\xb6\x7c\x38\xfd\x50\xa6\xdb\ +\x74\xd5\x16\x7e\xfd\xa3\x94\xc4\xc9\xf0\x66\xa3\x00\xa1\xa8\x79\ +\xb0\x20\x1d\x0b\xdc\x36\xa8\x05\x92\x01\x24\x2b\x2b\xb9\x59\x18\ +\xc3\x77\x7d\xb0\x6e\x8f\x2e\x36\xed\x8d\x7f\xfe\xcb\xed\xf1\x0f\ +\xfc\x4c\x5b\x7c\xfc\x17\xdb\xe2\x47\x7e\xa2\xbd\xf6\xc1\x1f\x6b\ +\x97\xe7\x8f\xd4\x1c\xfa\x25\xdb\xed\x08\x19\x73\x08\x1d\xb5\xc9\ +\x3a\xa1\xa7\xa3\x0c\xa2\xb0\xd4\xb9\x74\xa6\x75\xce\x11\x1f\x41\ +\x27\x1d\x2c\x90\x8c\xcd\x6e\x13\xfb\x52\xc7\xf7\xa9\xea\x72\x77\ +\xd3\x0e\x84\x2c\x54\xde\xd0\x31\x7d\xf3\xd6\x42\x74\xd1\x8e\xef\ +\x0a\xfd\x94\x9a\xba\xff\xa6\xf8\x3b\x5b\x9d\xc3\x4e\xda\xd1\x0b\ +\x57\xed\xc6\xf3\xcb\x76\xf2\xf4\xa6\x1d\xf1\xdf\x92\x3e\x2f\x44\ +\x6c\xbe\x0b\xf8\x4e\xf0\xa2\x96\x70\x7d\xa9\xf3\xe4\x83\x0b\x51\ +\x76\x0e\x18\xf5\x22\x43\xfc\xca\x5b\x94\xf6\x50\x25\xeb\x27\x40\ +\xa6\xaa\x61\x8c\x5c\x3e\x0c\xd5\x4e\xab\x25\xc4\x86\x59\x69\x18\ +\x45\x72\x31\x8d\xf1\x26\x3e\xb3\x3a\x58\x0c\x5b\xe2\x09\x19\xab\ +\xa8\xc3\x1a\x3a\xd3\x51\x57\xf5\xcd\xf1\x28\xf0\x8d\xd3\xd1\x07\ +\x90\xe0\xee\x4f\xff\xb0\xe9\x5b\x41\xfd\x51\x8b\x6a\x67\x3a\x97\ +\x70\xac\x71\x86\x3f\xd3\xf9\xf3\x0f\xbf\xfc\x54\x7b\x46\xdf\xb3\ +\x3f\xff\x83\x3f\xda\x5e\x7f\xf8\x26\xee\xae\x93\xa9\xdb\xe3\x20\ +\x82\x9d\x92\x66\xf8\xad\x04\xde\x87\x71\x46\xd2\x14\xaa\xfd\xd0\ +\x87\xfe\x51\x3b\x3f\xfe\x4c\x7b\xe6\xb9\x3b\x7e\x12\xc8\xaf\x87\ +\x8e\x1d\xae\xa1\xc6\x7e\xc6\x53\xb4\x0f\x30\x25\x36\x5b\xe8\x80\ +\x14\x9e\x31\x2e\xcd\x6b\xec\x99\xb7\x1c\x4e\xdd\xc6\xb8\x97\x60\ +\x7d\xc2\xc8\x1b\xfa\x78\xdb\x87\x38\xca\x38\x9e\x79\xd5\x63\x3c\ +\x51\x67\xb5\x63\x17\x0f\x8b\xe4\xf2\xe0\x13\xcb\x65\x2c\xa0\xd4\ +\x75\x6c\x9a\xa0\x80\x11\xfa\x69\x03\x9f\x4b\xc4\x70\x0c\xdb\xbe\ +\x5b\x7f\x20\xe2\x60\x8f\x45\x33\x5e\x63\xe7\x27\xfe\x6d\xa4\x3f\ +\xb2\x2e\x12\xb1\xfb\xd0\xf7\xf9\x23\xfa\x8a\xc2\xc2\x0e\xdd\xe6\ +\xf7\x57\xe4\x8d\xca\x81\x01\x56\x17\x92\x24\x10\x8d\xfc\xe1\x3b\ +\x60\xfa\xf8\x8c\xa0\x32\x99\x23\xde\x5a\xde\x69\x27\x27\xcf\xb6\ +\xe3\xc5\xed\x76\x74\x70\x53\xf5\xbd\xd5\xee\xdc\x78\xa6\xdd\xbc\ +\xf9\x82\x62\xea\x7c\x9c\x65\xba\x3e\xe2\x8a\x12\x02\x53\x0c\x83\ +\xf0\xc1\x60\xb1\xea\x59\x14\xa7\x30\x08\xe3\x9c\x5b\x76\x9b\x12\ +\x0b\xe8\x63\xfe\x2f\x8b\xfd\xeb\xec\x22\xb4\x68\xb9\x38\x6e\x27\ +\x3a\xf9\xdf\x38\x3a\xf5\xfc\x3f\xc6\x90\x32\x90\x3f\xb2\x06\x58\ +\xc8\x7a\x3a\x00\xe5\x95\x0f\xad\x27\x5a\x40\xec\x0f\xd0\x82\x69\ +\xcd\x31\x7c\x5e\xd5\xf9\x11\x6f\xcf\x33\x38\x53\x7a\x15\x38\xe6\ +\x1b\x53\x5e\x6c\xe1\x23\x21\xf7\x79\xf8\x38\x02\x31\x31\x29\x89\ +\xc5\x2d\xd0\xae\xf6\x11\xa1\x70\x63\x6d\xa1\xd1\x96\xfe\x78\xf5\ +\xb2\x98\xc3\x93\x8f\x1f\x0a\x61\x71\x59\xc4\x1a\x62\xa8\x11\x6e\ +\x03\x1a\xe9\x97\xc8\xe4\x25\x30\xe3\x8d\xba\xf5\x58\xd0\xc4\xbe\ +\x45\xe7\xee\xe8\x23\x98\xb8\x01\xd8\x8d\xf6\x81\xaa\x67\xbd\xcf\ +\x91\x31\xe0\x50\xde\x38\x0c\x52\x32\xe4\xb5\x1e\x59\x59\xe8\xa7\ +\x43\xcd\x59\xb6\x9b\x47\xed\xf2\xf2\x0d\xcd\x5d\xde\x68\x8f\xcf\ +\x1f\xe8\x12\x30\x5e\xf7\x98\xd9\x12\x90\xa6\xfa\x58\x4a\x61\xf4\ +\x0b\xaf\x4a\x80\x18\x0f\x1e\x21\x66\x43\x8e\xc1\x0c\x52\x77\xda\ +\x02\x8b\x2d\xc7\x92\x74\x8b\xc5\x8d\x76\x72\xcc\x0f\x0f\x80\x48\ +\x2f\x35\x97\x78\x70\xf6\xa0\x5d\xae\xcf\xad\x8b\x63\x6f\x17\xd4\ +\x9b\x59\x7c\xc4\x03\x42\xc6\xc6\x71\x20\x89\x32\x25\x47\x59\x71\ +\x4e\xeb\x7d\x6a\x65\x44\x09\x3b\xa8\x44\x58\x3d\x40\x1a\x8b\x3b\ +\xa1\x01\xc9\xe1\xc5\x6b\x64\x25\x11\x61\xaa\x63\xc4\x0f\xdb\x54\ +\xef\xa2\x05\xaa\x1f\x2a\xce\x7b\xa6\xe1\x51\x5e\x5e\x54\x03\xac\ +\x10\x9f\xf6\xc9\xc3\xda\x01\x90\x46\x8f\x48\x1d\x3b\x81\x6b\x7b\ +\xca\xe4\xbf\x5f\x7d\xc4\xe6\x31\x7c\x2d\x50\xf7\x6c\xb3\xdb\x67\ +\x59\xbc\xaf\x81\x6c\x16\x66\xbf\x84\x10\x18\xc9\x20\x8b\xa8\x12\ +\xfb\x25\x45\xde\xe4\x1d\xb0\x64\x25\x72\x86\xf5\xde\x12\xcf\xfc\ +\xea\xd6\xed\xab\xf6\x7d\xff\xd3\xdf\x15\xaf\xf1\xc0\x9c\x2f\x76\ +\x65\xc2\x67\x69\xc7\x0c\x33\xcc\x30\xc3\x0c\xbf\x2a\xe0\x9c\x3f\ +\xc3\x0c\x33\xcc\xf0\x9b\x03\x39\x39\xbc\x16\x3e\x8f\xf9\x1e\x2e\ +\x35\xbf\x2d\xde\x13\x4c\x0b\x68\x07\xa8\xb2\x8a\x5e\xe7\x03\xf4\ +\x09\xb3\x28\xfc\x20\x72\x71\xf1\x89\x5f\xfc\x48\x7b\xe6\xe3\xff\ +\xbe\xbd\x7a\xef\xe9\xb6\xe0\x29\x04\xe9\x16\xba\x18\xd4\x74\xd5\ +\x4f\xa7\x3d\xbe\x58\xe9\x22\x2c\x6f\x9c\x92\xdd\x17\x24\xfc\x92\ +\x97\xcb\x04\x9d\x72\x29\x5f\xe8\xc9\x31\x17\xb6\xa2\x71\x01\xac\ +\x4f\x4e\x90\x75\x8d\x99\xfc\xae\x8c\xb0\xc3\x93\xc9\x08\x84\xae\ +\xc0\x37\x03\x78\x3a\x6d\x58\x4c\x1b\x9b\x72\x1d\xd4\x85\xc4\x68\ +\xe7\x92\x87\x7a\xba\xbc\x63\xd5\xf5\x50\xbc\x2e\x10\xe2\xdb\x23\ +\x2e\x70\x28\xcb\x78\xb1\x6e\xeb\x47\x17\x6d\x73\x9f\x1b\xc5\x5c\ +\x78\xf2\xba\x14\x3b\x74\xbf\xc8\x15\x0b\x12\xcb\xed\xa9\x17\xcf\ +\x6e\xbc\x72\xb3\x1d\xbf\xef\x56\x3b\x7a\xff\xb2\xdd\x7e\xe7\x9d\ +\x76\xf3\x95\x63\xe1\xa2\xdd\x61\x91\xe0\xf0\x46\x3b\x3c\x5a\xca\ +\x5f\x79\x7d\xc1\x9e\x6d\xac\xb8\x21\x0d\x3d\xa1\x7a\xd2\x10\xfb\ +\x09\x7b\x3f\x15\x8c\x72\xe6\xa0\x2d\x6e\x7c\x5a\x94\xc7\xcd\x43\ +\x42\x21\xd9\xfd\x20\x76\xe9\xc7\x9d\xd6\xed\xe2\xb2\xb5\x15\x0b\ +\x87\xbf\xf4\x99\xd6\x58\xc0\xb8\x3c\xe3\x8a\x56\x57\xe1\xdc\x44\ +\xbf\xd4\x18\xe0\x09\x45\x67\x76\x55\x79\x4d\x64\x34\x9f\xc4\x4c\ +\x98\xa1\xe0\xa4\x36\xa5\xbc\xeb\x00\x6d\xbf\xde\xde\x81\xb7\xca\ +\x71\x8d\xab\xc0\x45\x11\x88\x4f\x90\xeb\x1d\x05\xee\x65\xfa\x9a\ +\x4a\x92\x11\xca\x18\xe7\x29\x4c\xae\xd2\x1c\x20\x30\x88\xda\xec\ +\x1b\x29\xf2\x45\xc1\x0d\x15\x53\x16\x92\xc4\x33\x9e\x72\x4c\xf9\ +\x90\x40\x27\xe4\x09\x2a\x14\xe1\x8b\x3d\xf3\xab\xcf\x23\x1f\x66\ +\xf4\x81\xf6\xfb\xff\xb3\xf7\x27\xc1\xd6\x6d\xc9\x7d\x1f\x96\xa7\ +\xbf\xdd\xd7\xbd\xbe\x1a\xa1\x50\x20\x48\x83\x84\xc8\x30\x2d\x91\ +\x8a\xb0\x22\x18\x56\x84\x3c\xb1\xa7\x1e\x79\x60\x4f\xe4\xf0\xcc\ +\x13\x3b\x38\xb5\xc6\x9e\x39\x42\x03\xdb\xc1\x10\xc3\xe1\x81\x2c\ +\x09\x41\x89\x62\x10\x10\xcc\x06\x04\x41\x10\x4d\x11\x24\x9a\x2a\ +\xa2\x0a\x40\x15\x50\xfd\x6b\xbf\xf7\xbe\xe6\x36\xa7\xf7\xff\xf7\ +\xcf\x5c\x7b\xef\x73\xbf\xfb\x5e\x35\xac\xe6\x01\x38\x79\xce\xda\ +\x99\x2b\x33\x57\xae\x5c\xcd\x5e\x7b\xad\xbd\xce\xde\xa7\x2b\xc0\ +\x61\xb0\x6c\x18\x9c\x27\xb6\x33\x49\x47\x08\xfb\xa6\xcf\xc4\x8e\ +\xe8\xab\x30\x69\x37\xac\x24\x77\x7b\xe7\x4d\x33\x6f\xa6\x0d\xd2\ +\xa4\xcd\xa2\xfd\x4b\xd4\x26\x03\x25\x2f\xe3\xa9\xe7\x3a\x11\xe9\ +\xce\xc5\x39\xe4\x9a\xd5\x92\xfd\x7a\x1d\xfb\x9b\x4d\x8c\xea\xe9\ +\x34\x6e\x6c\x52\xcd\x68\x64\xb7\xc4\x6e\x56\xbd\x2c\x64\xb3\x21\ +\x94\x1d\xfe\x8e\xf1\x84\xa7\xbf\x4e\x44\xd3\xc7\x74\xbe\xaf\xde\ +\xbf\x89\xcd\x52\xe7\xff\x78\x9d\xfd\x4e\xca\x3b\xf9\xc3\x2b\xf5\ +\xe8\x25\xed\x66\x07\xf6\x3a\xc0\x9e\x0f\xd2\x68\xf6\x1d\x37\x71\ +\x27\xf8\x3c\xd3\xd7\xa7\x5b\xf1\xa0\xfa\x54\xa2\xe5\xec\x58\x61\ +\x36\x9f\xc6\xf3\xfb\xdb\xb8\xba\x7e\x1e\x6f\xff\xeb\xdf\x8f\xaf\ +\xfc\xc2\xaf\xc7\x57\x7f\xfe\x73\xb1\x7c\xf3\x32\x34\x62\xfa\x26\ +\x15\x63\x68\xb7\xe6\xb7\x73\xbd\x55\xa2\x66\x35\x5e\xeb\x8b\x86\ +\x8e\x30\x64\x8c\x9a\x4d\xdc\x83\x78\x8e\xea\x90\xdf\x2e\x18\x68\ +\xae\xa9\x46\xa7\x93\x71\xcc\xee\x4d\x62\xfa\x40\xe1\xa5\x69\x2c\ +\x1e\xcd\x63\xf1\xca\x49\x2c\x5e\x3b\x89\xf9\x2b\x1a\xab\x1e\x9c\ +\xc4\xec\x4c\xf4\xc9\x69\x4c\xcf\xc1\x17\x31\x7b\x38\x8d\xe9\x43\ +\x8d\x53\xf7\xe7\x11\x0f\xd5\x63\x66\x32\xb6\x63\xf3\x5d\xed\xa0\ +\x40\x1e\x6c\x11\x70\xa3\x83\xa7\x97\x79\x35\xd3\xea\x66\x1d\xcb\ +\x2b\x9e\x4c\xd4\x35\x04\x8d\x56\x34\x85\xd6\x06\x6e\x87\x16\x6e\ +\x81\xd9\x74\x86\xae\x00\x90\xa5\x08\xaf\xf2\x05\xba\x71\x98\xeb\ +\x12\x81\xf3\x77\x90\x90\xfe\xc0\x75\x2c\xfb\x70\xc6\x33\x64\x3e\ +\xed\x38\xc8\xea\x00\xd0\xb3\x54\xfe\x38\x1d\x8a\xe2\xe5\x7f\x5d\ +\xe1\x15\x7c\x68\xae\x8b\x5c\x17\x76\xb1\xd6\xf5\x61\xbd\x63\x2c\ +\x5d\xe7\xeb\x28\x49\xa0\x13\xe0\x53\xf7\x1e\xc5\xa3\x07\x8b\xd8\ +\xbe\xf9\xed\xf8\xe2\xe7\x7e\xcf\x76\xda\x7f\x62\x01\x83\x52\x55\ +\x38\xc2\x9f\x16\x68\xbd\xa8\xf5\x17\x3f\xed\xb1\x9c\xc5\x7f\xfb\ +\x0f\xff\x4e\x7c\xe2\x2f\xce\x75\x2e\xcd\x63\xcc\xd0\x6b\x3d\x1d\ +\xd5\xbc\xf9\x6a\x61\x33\x8a\xdf\xa0\x1f\x27\x6f\x83\xfb\x6d\x85\ +\x16\x47\xd1\x7d\x93\x0f\x58\x81\xa1\x3b\x75\xe0\x5a\xe5\x4e\x38\ +\x18\x2d\x07\x4a\x9c\x57\x1b\xcd\xb3\x0e\xfe\x9b\x30\x0d\xda\xf7\ +\x46\xb6\x44\x2d\xdf\xfc\x24\xdb\x54\xa7\xd7\x83\x7f\x8c\x00\x54\ +\x21\xe9\xf7\x1e\x27\xc9\x8a\xf3\xb9\x37\xde\x01\x1c\x07\x1d\x9c\ +\x87\xce\xb9\x8c\xb7\x71\x9d\xf3\x9c\x90\x1b\x6d\x04\xcb\xc9\xc4\ +\x1b\xf9\xf0\x84\xa9\x18\xce\x65\x7d\x72\xc3\x83\xfc\xea\x89\xb4\ +\x76\x8e\xf3\x31\x1f\xe6\x5d\x50\xc6\x1b\x60\xbc\x03\x52\xa7\x4d\ +\xea\x6e\xa5\x6e\xc0\x96\xba\x38\x9a\x5d\x51\x40\x36\x81\xf8\xcf\ +\x32\x36\xd7\x16\x87\x59\x74\x11\xca\x46\x0a\x58\xa2\x19\x0b\x0d\ +\xf0\x07\xed\x21\xc8\xbc\x14\x4a\x87\xdc\x81\x96\xc4\xe9\x8d\x15\ +\x7c\xd0\x78\xa4\xbe\xc9\x38\xcd\x78\xe9\x1f\xc7\x91\x5c\x41\xd3\ +\x83\x98\x4e\xe6\x0a\xb3\x98\xea\xda\xdb\x6d\x4e\x55\x5a\x87\xb2\ +\xc5\x01\xdb\x5c\x03\xd3\xd3\xf2\x63\x98\x1f\xa1\x77\x84\xcb\x90\ +\x50\x1e\xf9\xb8\x3d\x9c\x47\x49\x5a\x5e\xf5\xf1\x4f\x11\x24\x83\ +\xca\xcd\x2b\x53\xdd\x31\x37\xba\xfa\x0d\xab\x89\xe2\xed\x75\x8f\ +\x29\x1b\xd2\xa9\x93\x21\xfd\x00\x3b\x37\x78\x9e\xc3\xb4\x4d\x30\ +\x05\x3e\xf2\x9d\x8f\x2b\x33\x5f\x07\x20\x59\xe5\xd7\x3e\x4a\xa3\ +\xc3\xc0\x8e\x2c\xe3\xab\x6d\xcb\xe6\x40\xaf\xe5\x99\xe9\x9d\xc2\ +\x47\x98\xdd\x5a\xc4\x7a\x60\xb4\x9b\x6e\xb5\x3b\x2a\x65\xd3\x5f\ +\x05\x20\x11\x75\x49\x43\x5a\x6a\x9d\xc4\x49\x03\xcd\x55\xec\x6e\ +\xd7\xba\x46\x2f\x6f\xe2\xf2\xe6\x59\x2c\xb7\xd7\x3e\xd7\xe9\x03\ +\xd9\x96\x3d\x64\xca\x4c\x97\x11\xe5\xd3\x14\xad\x5c\x84\x64\xad\ +\x27\x64\x7e\x49\x27\x74\x89\x8b\xdd\x34\x14\xd1\xb9\xe9\xea\x75\ +\xdf\xe1\xd5\x7e\xf2\x83\x0d\x3f\xcd\x9e\x38\x63\xf8\x21\xdf\xe5\ +\xe5\xf3\xb8\x5c\x3f\x89\xcd\x56\xeb\x10\x76\xde\x6d\x23\xfb\x99\ +\xc1\x84\x99\x1d\x0f\x9c\x41\x7c\x11\xd9\x96\xc2\x3e\xa0\x5b\x71\ +\x9b\x6b\xb2\xac\x63\x00\x4e\xd3\x07\xbb\x2d\xa4\x6b\xdc\xe2\x2d\ +\xa0\x53\xed\xee\x20\x6e\x2f\xa7\x5d\x18\x5f\xc0\x03\x7d\xe2\xe9\ +\xb2\xeb\x7d\x08\x44\xcd\xd2\xc1\xaf\x7d\x94\xf6\xae\x0d\x9a\x03\ +\xe5\xa4\x86\x47\x00\xaa\x8f\x35\x2f\x86\x7c\x53\x3e\xed\xf9\x21\ +\x92\xb0\x22\x7d\x0a\x51\x95\x55\x6a\x16\xe0\x33\xfd\x1a\x12\x5a\ +\x07\xf7\xd1\xa2\x7b\x28\x9d\x4a\xdb\xd5\x23\x8d\xec\x84\x55\xee\ +\x81\xe9\x84\xac\x1f\x20\x51\x45\x1a\x10\x55\x1a\xfe\xf3\xf1\xfe\ +\x2b\xf3\x78\x67\xf9\xd5\x78\xef\xdb\x5f\xf7\x66\x23\x7e\xa5\xb9\ +\x17\x8c\x1e\xe1\x08\x47\x38\xc2\x11\xfe\x1d\x80\x6b\xd9\x11\x8e\ +\x70\x84\x23\xfc\xe8\xe1\xd6\x3c\xf0\x23\xe1\xc3\xe6\x7f\xb7\xf8\ +\x4c\x34\x6f\x4f\xba\xef\x04\xf2\x6e\x01\xfd\x61\x9a\x9a\xad\x1e\ +\x2c\x9a\xe0\x69\x81\xf2\x7c\x7b\x13\xff\xf8\xbf\xf8\x2f\xe3\xe1\ +\x6c\x1c\x9f\x7e\xf4\x28\x26\x33\xfe\xe7\x83\x9b\xa6\xbb\xd8\x48\ +\xce\x66\x1a\xaf\xfe\x61\x16\xde\x36\x1f\xb8\x4d\x08\x60\x2b\xa7\ +\xcc\x09\xb9\x00\x4c\xcc\x48\x0c\x6a\x93\x6f\x7f\x88\x6b\xe1\x0e\ +\x61\x1e\x93\x74\xd3\xf0\xb0\x90\xd8\x7a\xc5\x63\x2e\x4e\x4e\xe4\ +\xc5\x4d\x8a\x1d\x4f\xd4\xf9\x35\x44\x09\x16\x17\x6e\x74\x03\xf3\ +\xcc\x2c\x49\x29\xc1\xf3\x6b\xec\x78\xd5\xe3\x4c\x11\x36\x02\x90\ +\x09\x5c\xd7\xad\x9c\xca\x67\x7b\xb9\x8a\xed\xd3\xb5\x37\xd3\xb8\ +\x19\x91\xbf\xd8\xc6\x1f\x2b\xa6\x2d\x25\x9e\xa8\x60\x93\xfd\x34\ +\x5e\xbe\xbf\x8e\x93\x9f\xbe\x1f\xe7\x7f\xf5\xa5\xb8\xff\xef\x3f\ +\x8c\xfb\x7f\xed\x51\x9c\xfd\xf5\xb3\xb8\xf7\xd7\xce\x63\xf2\x17\ +\x27\x71\xf2\xd9\x88\xd3\x4f\xaf\x63\x71\xaa\x6c\x67\xca\x56\x79\ +\x7b\xbd\x41\xe6\x3a\xba\x64\x5d\x83\xc3\x2d\xc7\x8c\xfb\x85\x87\ +\x41\xf4\xed\x78\x22\x11\x32\x61\x19\x64\xba\x2a\x8c\x84\x45\x6c\ +\xe6\x93\xea\x79\x64\xd3\x83\xff\x29\x58\x3f\x91\xfc\xab\xcf\x62\ +\xff\xf6\xb7\x63\xb7\x7a\x5f\x6b\xda\xe7\x11\x57\x8f\x63\xbd\xbf\ +\x8a\xb1\x8a\xce\xe2\xde\xbf\xfa\x94\x51\x6c\x00\x9d\xbb\xdf\x11\ +\xfa\x34\x43\xf8\xa8\xe4\xd9\xfe\x10\x85\x05\xc9\xea\x19\x8d\xaa\ +\x66\xd3\xc2\x36\xa7\x01\x7d\x52\xb8\xbd\x3e\x40\x9b\xb5\x04\x9d\ +\x5c\x6d\xcb\xff\x7d\xf1\xb4\x0b\x71\xd2\x67\x1d\x66\x1f\x75\xbf\ +\xe6\xce\x44\xf5\xdb\x21\x2e\x85\x8e\x47\x6a\x42\xb2\x4b\x66\x8b\ +\xb5\xdc\x1e\xc4\x9b\x3c\x71\xb1\x41\x65\xb7\x4b\x4f\xb9\xea\xe6\ +\x0f\x7e\xb4\x1b\x3a\xf9\x64\x5a\xd2\xa9\x57\x58\xc1\x36\x1c\x97\ +\x41\x9d\x7b\xd6\x85\xdf\x9d\x87\x69\x2b\x9f\xa6\xca\xdb\x01\xe4\ +\xe7\xcd\xb8\xb2\x89\xc8\x7d\xc6\xfa\xd2\xf0\xd3\x9c\x04\xe2\x69\ +\xc7\x7a\xfa\xd0\x5e\x3c\x95\xb6\xbd\xbe\x51\x5d\xb2\xdd\xd2\xd7\ +\x3b\xf2\x24\x92\x72\x7f\xac\x9b\x2a\xfd\x0d\x4e\x04\xea\x61\x13\ +\x8d\x32\x73\xa5\x97\xa3\xe3\x95\x6c\x3d\x1d\xd5\x7f\x74\x91\x3e\ +\x7d\x06\x91\x80\xf4\x4e\xe6\x58\x1f\x0c\xee\xb3\x03\xee\x80\x6c\ +\x29\xfc\x41\x04\x0f\x9f\x7a\x97\x3b\x55\xb2\x62\x98\x98\x4a\x38\ +\xf5\xcd\xbe\x51\xdc\xcc\x16\xb1\x3a\x9b\xc4\xf2\x6c\x1e\x37\xe3\ +\x55\x7c\xf0\xb5\x77\xe2\xc9\x3b\x3a\x77\xc6\xf2\x73\xad\x3a\xb5\ +\x79\x25\xc2\xc1\x81\xcd\x21\x8d\x6d\x18\x0c\x2b\x7e\xea\xec\x00\ +\x88\xf7\xbc\xa1\x09\x3b\xa9\xe0\x34\xa8\x20\x1c\x06\x40\xfc\x09\ +\x1b\xa7\x8b\x45\xcc\x1e\xec\x62\xfe\xf2\x36\x4e\x5f\x1b\xc7\xf9\ +\xab\xd3\x38\x7b\x63\x16\xa7\x9f\x9a\xc5\xf4\x93\xf3\x98\x7e\x42\ +\xe3\xd7\x6b\xc2\xaf\x4a\xef\xe5\x45\x9c\xbc\x74\x16\x8b\xd7\xce\ +\xe2\xec\xd5\xf3\x38\x79\xe5\x3c\xa6\x0f\x54\xc7\x93\x69\xec\x34\ +\x00\x70\x4f\x6b\x9b\x77\xbf\xcb\xb5\xcc\x8c\x96\xde\x69\xbc\xa4\ +\xcd\xd7\x1a\x33\x57\x0a\x8c\x9f\x6d\x53\xed\xa0\x6f\x3b\x5e\x74\ +\x1e\x6e\x41\xb3\xdd\xe0\x76\x1c\x10\x8f\x31\xc8\xd7\x25\xfc\x6a\ +\x75\xc8\x8d\xde\xd4\x70\xbb\x2b\x92\xff\xbd\x53\x7d\xb9\xcf\x38\ +\x7d\x28\xec\x3e\xe0\x08\x89\xbb\x58\xd1\xe4\x86\x0f\x69\x98\x78\ +\xd3\x70\xd0\xc1\x7d\x57\x9d\x6d\xc7\xcd\x74\x39\x72\xbd\x5a\xc5\ +\x52\x75\xc1\xab\x3e\xd5\x83\xdd\x81\xfe\xf2\xeb\xaf\xc4\xcb\xdb\ +\xab\xf8\xed\x5f\xfa\x67\x71\x75\x7d\xed\xc4\xbe\xa6\x96\x1d\xca\ +\x63\x78\xa1\x1f\x1c\xe1\xe3\x0c\xee\x1b\xc6\xb4\xe3\xd8\x0f\x75\ +\x7f\xe1\x1b\x5f\x8c\xa7\xbb\x2f\xc7\x4b\xaf\xdd\x53\xdf\x60\xe0\ +\xe5\x47\x4a\xea\x87\xd6\x14\x34\x22\x1b\xde\x5f\xc8\xdc\x84\xa8\ +\x7e\x20\x30\x8f\xa0\xfe\xe5\x71\x59\x11\x02\xc3\x38\x82\x16\x4f\ +\x9e\xe4\xd9\xcd\x2d\x34\xba\x03\x1a\xbf\xcb\xa5\x53\xe4\x7c\xd2\ +\x39\xec\x5f\xfe\xf7\x3e\x1c\xc0\xd0\xa8\x68\x5f\x0f\xc8\x17\x7e\ +\x85\x54\xc9\xf4\x9c\x16\x04\x62\xdc\x17\x4e\x59\x62\xcf\x21\x24\ +\xf0\x13\xa6\x10\xe9\xb8\x85\x43\x3d\xa7\xf6\xf9\x95\x02\x4a\x86\ +\x2a\x75\x42\x8d\x52\x17\x93\xf1\x56\x41\x75\xac\x08\xf1\x0c\xcc\ +\xcb\xd0\x46\x4b\x1f\xcc\x78\x3c\xc8\xb4\x52\x31\xdf\x96\x89\x0c\ +\xf3\xa9\x73\x31\xf3\x69\x01\x25\x06\x99\x54\x21\x18\x89\x7f\xa0\ +\xa3\x36\xe4\xe9\xbe\xf5\x56\x63\xa0\xd5\x5a\xbb\x67\x6e\xd3\x11\ +\x57\x90\x29\x51\x07\xa7\xb3\x7c\x08\x4a\xa9\x2f\xfa\xf6\xc4\xce\ +\xa3\x4b\x3f\xb0\x82\x21\xd9\xc9\x83\x6d\xda\x38\x43\xa6\xe5\x00\ +\x38\xe6\x1f\xc7\x6d\x77\xeb\xac\x73\x05\x8b\xe5\x33\x36\x26\xe3\ +\xa9\x6f\x5c\xb7\x6b\x7b\x26\xad\x63\x22\x97\x26\xed\xaa\x2e\x8b\ +\x97\x08\x6e\xf3\x4f\x07\xbe\x8a\xf0\x81\xc9\x87\x2d\xc5\xd4\xa6\ +\x9d\xc8\x83\x90\x3c\xb0\x5b\xaa\xf8\x1e\x07\x7d\xce\x28\xb8\xcd\ +\x74\xc0\x2f\x8f\xe7\x2d\x3d\xd7\x62\x9d\x5f\xd0\x95\x56\xc8\xb8\ +\xb3\x6b\x46\x73\x29\x75\x9c\x17\x18\x5b\xfa\x70\x24\x13\xe3\xb2\ +\xdf\xaf\x4f\x08\xe5\xf9\x30\xad\xe2\xed\x69\x39\x62\xdd\x0f\x24\ +\xba\x34\x15\xd0\x94\x4e\x06\xc4\x60\x73\x6d\x13\x26\x7a\x39\xee\ +\x13\x40\x29\x6f\xb2\xf4\xaf\xb5\x73\xca\x4a\xb3\xa3\x2d\xb3\x6e\ +\xe2\x8c\x53\x9c\xd4\x9f\x29\x5f\xd6\x4f\x37\xeb\x65\x5c\x69\x4e\ +\xc5\xeb\x1e\x37\x1b\xf5\x03\x7e\x88\x52\xfd\x3d\xa1\xfa\x84\x0f\ +\xd9\xa6\x0e\x4d\xc5\x9d\x8e\x08\x57\x77\xe5\x86\xdf\xf6\x1d\x48\ +\xa5\xd6\x0f\x89\xa7\xad\xe6\xbb\x23\xa6\x8d\x87\x72\xa1\x1d\xff\ +\xe7\x16\x84\x65\x2c\xb7\x97\xf1\xfc\xf2\xad\x58\x6f\x9e\xd7\x9c\ +\x7c\x08\xe9\x03\xff\x7b\x6c\xab\x24\xae\x30\x20\xd3\x1d\x36\xb5\ +\x8a\xcf\xd1\x79\x9a\x9f\xf5\xd2\x02\xaf\x67\xf6\x98\xd2\xe9\xa7\ +\x9f\xc8\x1a\x41\xdd\xd2\x16\xb4\x3f\x7d\xdf\xd8\x69\x8b\xa7\xc8\ +\x44\x02\x2f\x29\xbb\xd0\xca\xc8\xe1\x16\x98\x97\x75\x96\xe7\x63\ +\x46\x13\x25\x01\x7d\x7b\x38\xb6\xff\x65\x30\x8f\xa9\x90\xfc\x1e\ +\x8a\xeb\x23\xb1\xf6\x34\x5a\x6b\x6f\xe6\x6c\x56\xca\xe8\x0b\x60\ +\xff\x0b\x53\xde\x61\xbf\x6a\x42\xf7\x5d\xe2\x86\xa1\x3c\xe3\xc6\ +\xee\x23\xaa\x9c\x56\x17\x07\xd0\x38\xae\xf1\x8e\xea\x40\xa4\xfb\ +\xb5\xc6\x6e\x9e\x1c\x7d\xf0\xea\x2e\x7e\xf1\x5f\xfc\x83\x98\x4e\ +\xb9\x4e\xa1\xe0\x59\x66\xc1\x87\x14\xe4\x08\x47\x38\xc2\x11\x8e\ +\xf0\x3d\x01\xd7\xb6\x23\x1c\xe1\x08\x47\xf8\xf8\xc1\x8b\x33\xc9\ +\x43\xb8\x35\x17\xb4\xba\x78\x9e\x9c\x36\xb8\xcb\xc6\x87\xcd\x21\ +\xdb\x22\xa9\x70\x9b\xe4\x7a\x02\x0c\x6c\x56\x31\xda\x8e\xe3\xf7\ +\x7f\xf5\x97\xe3\xd5\xf3\x69\x9c\x9e\xcc\x34\x80\x7a\xbb\xc4\x37\ +\x05\xd7\xeb\x95\x16\x5f\xa2\x35\x9b\xe7\xc9\xac\x9c\xd4\xd7\x62\ +\xc4\x99\xf6\x13\x64\x2f\x12\xc1\xe2\x61\x3e\xa7\xc6\xfa\x40\xa3\ +\x26\xc2\xeb\xde\xfa\x94\x92\x51\xd2\xa9\x9b\x87\x04\xb3\x21\x94\ +\x95\x6f\x9a\xf2\x4b\x4a\x3b\xd1\xc2\x00\x6e\x45\x01\x6b\xe9\x00\ +\xae\x5b\x00\x69\x90\x05\x26\x8b\x66\x36\x06\x78\x3a\x0d\xff\xc4\ +\x6e\xfa\x1c\xb8\x69\xbc\xb9\xe2\x35\x8f\xcb\xd8\x2d\xeb\x15\x39\ +\xb5\x91\x78\x60\x58\x07\xca\x23\xef\xe2\x11\x3f\xf3\xfd\xec\x83\ +\x58\xfc\x07\xe7\xf1\xe0\x7f\xba\x88\x8b\xbf\x76\x12\xa7\x7f\xe5\ +\xa5\x38\xfb\xab\x0f\xe3\xec\x67\xef\xc7\xbd\xcf\x3e\x8a\xc5\xa7\ +\xce\x1c\xe6\xaf\xef\x63\x7a\x3e\x8b\xe9\x3c\xfc\x8b\x60\x2a\xa9\ +\x6b\x17\x41\x5b\x18\xc1\x71\x7d\x81\x4b\xde\x6b\x0d\xa0\x98\x4d\ +\x96\x69\x14\xe4\x67\x4b\x6f\xa3\x5e\xf8\x7a\x19\xdc\xb8\x8a\xe5\ +\x47\xeb\xc9\x58\x5d\x5e\xc7\x96\x27\x6c\xbe\xf6\x5e\xac\xdf\x7b\ +\x27\xf6\xef\x3d\x8d\xd5\x5b\xcf\x62\x75\xa5\x45\xf7\x42\xf5\xaf\ +\xba\xa3\x2f\xf0\xaa\x50\x6e\x60\x27\x90\x8f\x50\xf9\x0c\x60\xdb\ +\xf6\x95\xa7\xab\x6a\x20\x33\x94\x42\xc7\x1e\xca\xa1\x5b\x78\x01\ +\x9a\xc0\xd6\x45\x26\xcd\x02\x71\xb3\x81\xc7\x62\xb8\x12\x2a\xea\ +\x6c\xb2\x63\x99\xd5\x70\x3b\xe6\x0d\x79\xcc\xe0\xa7\x08\x5e\xd5\ +\x46\x5b\xd3\xe7\xad\xa1\x0f\xe9\xeb\x26\x8b\x0e\x6a\x2a\xb0\x3b\ +\x75\xf6\xa5\xc6\xab\x7e\xd5\xda\xd2\xa7\x44\xc9\x9d\x1e\x59\xe9\ +\xa5\xae\xb0\x01\x5c\xe9\xac\xd7\xec\x94\x8e\x43\xd9\xc4\xd6\x80\ +\x6f\xec\xfc\x30\xa1\x34\xac\xe4\xcd\x4f\x5b\xf9\x04\x19\x81\x93\ +\x2f\x79\xde\x2c\x93\x9e\xf3\x90\x2e\xaf\x6f\xf1\xff\xac\x91\xce\ +\xb8\xbf\x41\x65\xc3\xd0\x2d\x90\x0e\x1e\xba\x14\xb0\xf8\x79\x3f\ +\x45\x35\xa6\x7a\xdb\x5e\x2e\xfd\x74\x1a\xaf\x64\x91\xa4\xbf\xd7\ +\x02\x90\x16\xc4\x87\xb1\xc3\xe6\x39\x80\x19\x7b\xf2\x26\xe8\x94\ +\xce\xb8\x18\xc7\x5a\x6d\xb2\xbe\xd6\x39\x72\xbd\xe2\x01\x42\xb7\ +\x77\xd7\x7b\x95\x1d\xd6\x08\xb4\xd5\x6d\xa0\x1b\x54\x76\x1d\xa4\ +\x7e\x6a\x67\x99\x44\xb4\x1d\x18\xa0\xf4\x53\x4f\xc7\x4e\x44\xaa\ +\x0c\x64\xcf\xff\x48\x4c\x4e\xf6\xf1\xec\x74\x16\x8f\x2f\xd6\x31\ +\x3e\x9f\xc4\x6e\x3c\x53\xfd\x4c\x82\xff\xcf\xe7\xfe\xcf\x1a\xfd\ +\xfd\x44\xe5\xa7\xfe\x65\x41\xbe\xe7\x29\x58\x99\x60\x4b\xe0\x3f\ +\x88\xbf\x05\x64\x4b\x77\x34\x2e\x46\xa7\x65\x06\x00\x27\xfb\x2d\ +\x41\x3d\x39\x69\x3e\xca\x08\xb3\xdb\x98\xc4\xec\x74\x1c\xa7\x0f\ +\x67\x71\xf6\xea\x3c\xee\xbd\x7c\x12\x17\x6f\x2c\xe2\xfc\x13\xd3\ +\x98\xbd\xae\xd1\xfe\x35\xf9\x78\x71\x16\x71\xb1\x88\xd1\x23\x0d\ +\x46\xaf\xdc\x8f\xd1\x6b\x0f\x62\xa4\x31\x6a\xf4\xea\xc3\x58\x5c\ +\xdc\x8f\xf9\xe4\x61\x8c\xd7\x2a\x9f\xce\x2f\x3f\x31\xd8\xf2\xd5\ +\xa7\x55\x30\x47\x9a\x8c\xb1\x61\xbb\xde\xa8\xcd\x36\xb1\xe2\x29\ +\x45\x9d\x5f\xd6\x28\xff\x5d\xe7\xc4\xeb\xd8\x60\x18\x3b\xe8\x2f\ +\xc0\x6d\x86\x2b\xa6\xf2\xa7\x2e\xaa\xfc\xbe\x46\x0c\x9e\x52\x03\ +\x3b\x3f\xf7\x55\x31\x14\x8c\xc0\x03\x93\x36\x51\xc1\x60\x19\x69\ +\x4b\xcf\xf1\xf4\xdb\x24\x50\x91\xd4\xa1\x46\xd2\x02\x7e\xac\xb8\ +\x61\xcd\xd3\x7a\x6b\x95\x9f\xb1\x44\x3a\x1b\x5d\x6b\x7f\xe6\xf5\ +\xd7\xe2\xe1\x74\x12\x97\xff\xe6\x0b\xf1\xed\xc7\x1f\xb8\x2e\x39\ +\x8f\xba\x9c\xb1\x95\x07\x41\xe7\xcd\x11\x3e\xe6\xe0\xe6\x32\xce\ +\x36\x9b\x2c\x26\xf1\x5f\xfd\x7f\xff\x1f\x71\x9f\x73\x6c\x3e\xcf\ +\x3e\xa2\x41\xc3\xed\xad\xaf\xc7\xbb\x96\xca\x49\x7a\x0b\xfe\x5a\ +\x5e\x50\xdd\x00\x4e\x4b\xe6\xeb\x9b\x22\x1a\x55\xfc\xb1\xdc\xa8\ +\x6e\x3a\x22\x29\xdd\x12\x77\xa4\x7d\xb4\xcd\x32\xdc\x41\xc6\xd9\ +\xdc\xe2\x7f\xd3\xd8\xa0\xbe\x13\x06\x6c\xdb\x53\x46\x99\x17\xb8\ +\xcf\x25\x43\xa2\xdb\xa7\x2f\x6a\xf0\x78\xf2\x82\xa9\x04\xe7\x0c\ +\x90\xe7\x6d\x0b\x02\xd2\x71\x6e\x71\x99\x21\x81\xd8\x1e\xf9\x45\ +\x72\xd3\x1b\x9a\x27\x9d\x72\x33\x4d\xd7\x0d\x05\xff\x87\xd5\x00\ +\x73\xee\xfb\xa1\xea\x7d\xd6\x89\xa2\xc2\xd8\xb7\x71\x85\xb4\x09\ +\x98\x83\xdc\x9f\x26\x6d\x40\x2c\xcf\xe5\x26\x4b\x79\xf9\x5a\xb1\ +\x06\xd4\x85\xc7\x80\xdd\x2a\xe3\x95\x8b\x4b\xb7\x45\x97\x79\x47\ +\x4b\x0b\xd4\x78\x53\x31\x63\x1d\x28\xf6\x90\xdf\xa0\x8f\xcb\x46\ +\x8b\x18\x1f\x2a\xf3\x7c\xdc\x20\x2a\xd0\xbc\x76\xb3\x8d\x8d\xc6\ +\xa6\x1d\x9b\x29\x94\xc9\x3a\x2d\x7f\xea\x6b\xa2\x7a\xa2\xee\x24\ +\x02\xc3\xe7\x40\xd4\xc7\xd4\x3b\xf0\x5e\x7d\x1b\x59\x8e\xc3\x55\ +\xcf\x70\x5c\x80\x56\xef\x52\x30\x8d\xc4\x8d\x62\xbb\xb9\x11\x41\ +\x9c\x3c\x0b\xa3\x41\x1b\x96\xae\xbc\x72\x7a\xa8\x16\xac\xe7\xc0\ +\xaa\x45\x98\xf6\x46\xc6\xf5\x56\x1c\xc0\x7e\x2b\xa0\x61\x2d\xf4\ +\xa5\x67\xbb\x6c\xc6\xa1\xa9\x7c\xc8\xd7\xe9\xa0\xf9\x60\x93\xb8\ +\x74\xda\x53\xce\x0e\xd8\xd0\x47\x46\xad\x93\x3c\x67\xe4\x42\x9a\ +\x57\x9f\x43\x1d\x52\xf2\xd3\x0a\xfc\xb1\xa4\x6a\x9d\xa4\x8a\xf9\ +\x24\xa1\x3e\xaa\x1d\xe8\xa3\x85\xbb\x27\xac\x14\x5c\x67\xa6\x8b\ +\x47\x5a\xf4\x06\x3c\x18\xfe\x34\x99\xc2\x4c\x65\x98\xf3\x63\xc9\ +\xd8\xe4\x0f\xe7\x74\x3d\x5a\xf3\xc3\x27\x26\x2a\xbe\x46\x67\x6b\ +\x36\x5b\xf6\x85\x86\xcc\x88\x51\xf3\xc9\x07\x7c\x92\xdc\xe9\xec\ +\xb3\x70\xeb\xcf\x85\x6c\xc3\x91\x66\x5f\x41\xe7\x6d\x2a\xe0\x21\ +\x90\x98\x15\x54\xc4\x8d\x96\x15\x1f\xc4\x6a\xa3\xf5\xc6\xfa\x59\ +\x3c\xbf\x7c\x1c\xcf\xae\x9e\x68\x8c\xb8\x91\x9c\xd1\xa1\xd9\x23\ +\x90\xa6\x40\x44\x73\xad\x85\x06\xd0\xa9\x5d\xe7\x6e\xd5\x4d\xff\ +\x94\x79\x82\x75\xdc\x06\x49\x0f\x6d\x50\x29\x7c\x86\x2d\x0b\x9d\ +\xf3\x54\x7e\x64\x35\x52\xfd\xb2\x8e\xa3\x9e\xd9\x50\x53\x92\xd6\ +\xc7\xd2\x42\xe6\xed\xfc\x9a\xf5\xf4\x0a\xb0\x4e\x45\x3b\x7d\xe2\ +\x0a\xcc\xe9\xec\x97\xc6\xca\x61\xf5\x26\x99\x75\x02\xee\xd2\x09\ +\x7a\xba\xd2\x5a\x05\xba\xc8\x22\x38\x57\x79\xca\x6b\xb7\xe3\x69\ +\x40\x24\x0d\x86\xb4\x40\x26\x6c\x93\xf2\x88\xc8\xf1\x95\xf2\x51\ +\x0f\x4d\x9e\x32\xeb\x99\x91\x36\x88\x9b\x97\x02\x41\xde\x5f\x78\ +\x11\x06\x75\x75\x0b\x2c\xe1\x4b\x7f\x9b\x4c\xe3\xde\xe9\x28\xfe\ +\xed\x9b\xbf\x19\x37\xcb\x67\x4e\x43\xd1\xfa\xb4\x1f\x66\xe5\x08\ +\x47\x38\xc2\x11\x8e\xf0\xbd\x40\xce\xa2\x8e\x70\x84\x23\x1c\xe1\ +\x47\x0d\x77\xcd\x13\x3f\x0c\xda\xbc\xaf\xa5\xb9\x23\x6d\x27\x1a\ +\xca\xbe\xdb\x3c\xb0\xcf\x0c\xd7\x74\x62\x92\xd6\x3a\xc2\xb0\x1f\ +\x6d\xe3\x73\xff\xe0\x1f\xc6\x67\xc6\xab\xf8\xe9\x9f\x78\x23\x4e\ +\xcf\x4e\x3d\x81\x67\x11\xc8\x64\xfb\xf2\x7a\x13\xeb\x15\xbf\x5e\ +\xdc\x7a\xb9\x43\x3a\x5e\xf7\x68\x5a\xd0\x4f\xa0\x13\xe7\xa4\x9a\ +\xf4\x35\xb9\xb6\x10\x5a\xc4\xa4\xd1\x42\x2c\x38\x44\xe4\xa2\xd6\ +\x6c\xbe\x1d\x24\x8f\x45\x8f\xb0\xfc\xf0\x87\x1b\xb9\x5a\xfc\xe5\ +\x0d\xdd\xae\x08\x3d\x0c\x0d\x0c\xc1\xb6\xd0\xd7\xc1\xb4\x0e\x5a\ +\x34\x4f\xb4\xea\xf1\x66\x1a\x3e\xe8\x93\x79\x91\x5d\xdd\x4c\xba\ +\xd1\x62\x93\xff\x4c\xbb\xe2\xc6\x43\xd6\x41\xae\x11\x86\xb9\xe7\ +\x42\x86\xd7\xcd\x4c\xb5\xba\xd8\x7f\x6a\x1a\xf3\xff\xe8\x22\x1e\ +\xfe\xcc\xfd\x98\x7e\xea\x41\x8c\x5e\x7e\x23\xe2\xb5\x47\x31\x7a\ +\xe5\x95\x18\x7d\xf2\x61\x9c\xfc\xe4\xfd\xb8\xf8\xcc\x45\x9c\xfd\ +\xc4\x49\x9c\x7d\x52\xe1\x81\x16\x60\x53\x36\xd5\xb4\x20\x9b\x6a\ +\xd1\xae\x7a\x61\x91\x62\x57\x38\x14\x76\xc8\xa8\xdc\x2d\x41\xc3\ +\x40\x63\x25\x1a\x80\x52\x91\xb8\x16\x37\x4d\x83\x85\x49\xb3\x0b\ +\xcb\x58\x3c\x6e\x45\x6f\x97\xab\x78\xf2\xfc\x26\x9e\xbf\xf3\x41\ +\x3c\xfd\xf6\xbb\x71\xf5\xe5\xa7\xf1\xf8\xed\xe7\xb1\x9e\xac\x23\ +\x4e\xd4\xf2\x63\xd5\x0f\x77\xc1\x76\xd9\x16\xce\xa3\xb3\xdf\x83\ +\x5b\x09\xdb\x43\xe7\xbf\x13\x64\x92\xb4\x67\xa2\x01\x2d\xd4\xa8\ +\xfe\xe8\x04\xf9\x8d\x8d\xfa\xe9\x86\x1b\xf8\xb8\x26\x06\x7d\x14\ +\x2d\x64\x2f\x42\x2e\x6b\x29\xb3\x5d\xcf\x48\x06\x6e\x2e\xf0\x14\ +\x24\x32\xc5\x5d\x37\x02\xd7\xbb\x1a\x87\x4d\x58\xfa\x4f\x36\xd4\ +\x61\xb0\x0e\x18\xbd\x92\xf3\xf1\xd3\x90\x77\xe8\x1c\x34\xb8\x48\ +\x70\xf6\x53\x45\xac\x07\x13\x3a\x6f\xca\xa4\xbe\x02\x9b\x5e\xcd\ +\x86\x02\x8b\x5b\xf8\xce\x17\x5d\xfe\xff\xa3\x64\xcd\xc4\x9e\x1b\ +\xad\x4a\x67\x5d\xa7\x1f\xd8\x85\x07\x96\x22\xf9\x43\x35\x3f\x2d\ +\x73\x79\x15\xd8\x80\x56\xda\x3d\xe7\x8e\xf8\xde\x18\x6a\x58\xe0\ +\xcd\xc9\x9b\x55\xec\xaf\xf9\xef\x34\x35\x04\x37\x4f\xee\x68\x7f\ +\xb4\x39\xc5\x5c\xc3\x4a\x4b\x5e\x99\x9f\xbe\xf8\xba\x9d\xc4\x26\ +\xb3\xf3\x26\xfa\xee\xc9\x3a\xd6\x8f\xc7\xb9\xef\x65\xb5\xd6\x2e\ +\x1c\xca\xdf\x0a\x80\x65\x03\x46\xe3\xf7\x40\x9a\x26\xc4\x91\x5e\ +\xa3\x4f\x56\x47\x7c\x33\x95\x50\x45\x55\x92\x49\x2c\x17\xd3\xd8\ +\xcd\x27\x31\xde\x8d\x62\xad\x7a\x98\xae\xd7\x31\xd9\x8e\x63\x2b\ +\xe7\x35\x5a\xc4\x26\xa6\xb1\x51\x81\xfc\xf4\x94\xb2\xd9\x49\x87\ +\x57\x54\x52\x72\xec\xbb\x1c\x44\xef\x80\x7c\x4d\x4e\x45\x0c\xa5\ +\x7b\x90\x20\x23\xdd\xe9\x27\x8c\x7f\x79\xa3\x96\x9b\x85\x8b\x58\ +\x9c\x6d\x63\xf1\xc6\x3c\xe2\xa7\x27\x71\xfa\x13\xd3\x98\x7e\x76\ +\x1f\xf3\x4f\xc8\xe7\x97\x17\x31\xba\x37\x8f\xd1\xfc\x61\x8c\x2e\ +\x16\x11\xe7\x0a\x17\x17\x11\x8f\x4e\x22\x5e\xba\x17\x71\xff\xa1\ +\x78\x4a\xb7\x98\xa9\x7c\x1a\x17\xd4\x9e\xdb\xd5\xa4\xc6\xdf\x5b\ +\x7e\x3b\x53\x61\x82\x9a\x3d\xb8\x61\xab\x73\x71\xc5\xab\x1f\x19\ +\xb3\xed\x4f\x0f\x5d\x5b\x17\xe6\x70\xa0\x71\xa8\x7e\x27\x58\xa5\ +\x0e\xb6\xaf\xe0\x1f\x7e\x88\xe4\xc7\x20\x36\x5b\xc7\x3c\x85\xb2\ +\xcf\xfa\x9c\x80\xdd\xf2\x16\x36\x42\x4f\xc7\xc4\xe9\x40\x8a\xd1\ +\xcf\xb6\x4a\xf0\x19\x5a\x7a\x82\x16\xf1\x98\xc5\x18\x9a\xff\xa3\ +\xb6\x51\xb9\x6f\x56\x3a\x0f\x6a\x8c\xe4\xc9\xc6\xb3\xc5\x3c\xfe\ +\xc2\x27\x5f\x89\x67\x6f\x3d\x8e\xdf\xfa\x17\xbf\xac\x64\xfa\xf8\ +\xfc\x28\xdb\x42\x2d\x97\x1e\x5e\xe4\x1c\xe1\xe3\x02\x7d\xdb\xd0\ +\x05\x38\x2b\xb6\xfb\x65\xbc\xff\xde\xfb\xf1\xe5\x3f\xfe\x8d\x78\ +\xf9\xf5\xd3\x18\xcf\x26\xdd\x7f\xd5\x58\x5b\x7d\x29\x53\x65\x0f\ +\xf2\x39\x60\xce\xdd\xed\xec\xae\xa5\x83\xc3\x90\x2e\x06\x28\xe7\ +\x51\xf4\xa6\xe2\x0f\x20\x79\x49\x0f\xa1\xb1\x8c\x2b\xeb\x3c\x7f\ +\x38\x8f\xb8\x7a\x8a\x69\xbe\x2d\xe4\x18\xa3\xd0\xa5\x73\x7e\xfa\ +\x70\x6e\x39\xff\xe2\x27\x12\xe4\x79\x92\x54\xc2\x30\xae\x2a\x51\ +\x60\x6c\xa8\x6b\x44\x7e\x65\x07\x69\x45\x1c\x17\xe1\xf1\x59\xf6\ +\x24\x23\xda\x9e\x20\xf1\xe9\xac\x79\x25\xff\x61\xc5\x26\x10\xf3\ +\x30\xff\xc7\x56\x6d\x08\xe5\x86\x08\x69\xd9\x24\xe2\x09\xc1\x4c\ +\x8f\x3d\xb0\x03\x99\x08\x8c\x5b\xa4\x15\xb4\x8b\x03\x99\xf6\x50\ +\xaf\xd4\xe0\x3b\x64\x9d\x18\x94\xc7\x72\xb5\x89\xeb\xab\x4b\xa5\ +\xcc\x1a\x68\xc9\x76\x7e\x3a\x8c\x2b\x04\xbc\xbe\x9e\x0c\xd8\x19\ +\x60\x57\xc7\x00\xcc\x2b\x7b\x40\xfa\x44\x1c\x3b\xe9\xb7\x75\xc0\ +\x0a\x55\xb5\x75\x10\xa8\x7d\xd9\x54\x59\x6f\x74\x4d\x5d\x2d\xb3\ +\xfe\x35\x66\xf9\xd5\x74\xa2\xb3\x0e\xf9\x7f\xb7\x29\xca\x65\x27\ +\x4b\xe5\x63\x19\x6b\xf3\x7c\x80\x4b\x9a\x49\x78\x5c\xa4\x85\xf1\ +\xc8\x1b\x32\x95\xd2\x80\x1d\x07\x48\xac\xa9\x7d\x3a\xbf\x79\x32\ +\x08\x1e\x5c\xda\x0d\x59\x7d\x2a\x1d\xed\x59\x1d\xce\x38\xd3\x8b\ +\x24\xd0\x19\xc4\xa3\xed\x8b\x53\x79\xf0\xc1\x5e\x52\x4e\x47\x7a\ +\x62\x64\x5b\xf1\x94\x43\x53\x7e\x36\xd3\x92\x67\xb3\xcd\xb7\x81\ +\x6e\xf3\x83\x4f\xfa\x62\x0a\x56\xc9\xd1\x63\x23\x2e\x6d\x62\x3b\ +\x81\xeb\x72\xd2\xd9\x47\x33\x9d\x12\x14\x4e\x2a\x3f\xd4\x8d\x19\ +\xc5\x4d\x12\xf3\x8d\x80\x4e\x9f\x8a\xe5\x8f\x45\xae\x1d\xea\x8c\ +\xb5\x09\xff\x4d\x36\x9d\x6a\xbe\xa2\x36\xd9\x6e\xf6\xb1\x5a\x6f\ +\xbc\xae\xf1\x2f\x7f\xdc\x4e\x19\x38\x62\xa0\xb5\x4b\xb7\x69\x66\ +\xa9\x04\xd4\x99\xe3\x10\x89\x1d\xb7\x5e\xe6\xeb\xbe\x61\x1d\xfa\ +\x56\x03\xa4\x89\xad\x97\x11\x03\xb9\x32\x87\x1a\xc7\x4d\xec\x46\ +\xcf\x75\xdd\x7c\x1c\x4f\xae\xde\x89\xc7\x4f\xde\x8f\xe5\xfe\xd2\ +\xe3\x91\x5d\xb4\x6e\x42\x97\x9e\xfc\xe0\xda\x97\xe2\xc3\x33\x3f\ +\x21\x71\x8b\x01\xf2\x81\x31\xc0\x74\x96\xd9\x2d\x22\x5e\xb3\x0f\ +\x46\x4e\x40\xd6\xea\x93\xcd\x33\xea\x73\xa6\x79\xf0\x62\x32\x89\ +\x13\xad\xdb\x4e\x66\xe3\x98\x6b\x2d\xb9\x50\x98\xcf\x14\x90\x4b\ +\x3f\xeb\x42\x89\x2b\xa7\x84\xa4\xb3\xb6\x14\x6b\x75\x5f\xfe\x57\ +\x0b\xf4\xa0\x28\x57\x0f\x6a\x12\xd5\x56\x0f\xc0\x50\xb3\xd9\xc3\ +\x7e\xcf\x87\x37\xd4\x1a\x42\xe6\x44\xd8\x6c\x95\xa6\xd5\x71\x65\ +\xd0\xbc\xec\x40\x8c\x2c\x0f\x87\xa2\x55\x4e\xf7\x3d\x3e\x66\x97\ +\xc0\xea\x8e\x95\x62\xd2\x8e\xcb\x7e\xa9\x74\x30\x8c\xa6\x3a\xf6\ +\x06\xdc\x56\x68\x9d\x4f\x53\xf5\xe7\xf1\xa9\x7c\x5d\xbf\x15\xbf\ +\xf3\x87\xff\x4a\xe7\x7b\xca\xfa\xf2\x0f\x7c\x3e\xc2\x11\x8e\x70\ +\x84\x23\x7c\xdf\xd0\x66\x2d\x47\x38\xc2\x11\x8e\xf0\xa3\x85\x5b\ +\x13\xc5\xef\x08\x6d\xee\xf7\x1d\xe6\x80\xdf\xd1\xec\x50\x01\x5b\ +\xc4\xc1\x9d\xdd\x41\x06\xc8\x08\x2b\x2d\xe8\xe7\xf3\xf8\xa5\xff\ +\xd7\xdf\x8d\xd7\xef\x9d\xc5\x6b\x0f\xef\xf9\x49\x15\x44\x2c\x60\ +\xd6\xdb\x6d\xdc\x68\xc1\xe5\xff\x5b\xf0\x86\x12\x13\xf0\x34\x6c\ +\x2d\x4f\x78\x09\x09\x5e\x0f\x98\x9d\x93\xe1\x14\xc3\x48\xe4\x85\ +\x29\x07\x05\x2f\x3f\x8b\x9f\x02\x4d\xe8\xa1\x85\xcd\x73\x22\x30\ +\xa0\x7c\x77\x5a\x50\x70\x63\x76\xab\xbc\xb9\x41\x39\x28\x4e\x07\ +\x77\xf1\x9a\x0d\x26\xe4\x65\xdf\x8b\x5f\xf2\x6c\xaf\x7a\x14\xed\ +\xbc\x49\x4f\x3e\xd2\xdd\xaa\x6e\x76\xcf\x97\xb1\xbb\x5c\xc5\x48\ +\x0b\xcf\xfd\x9e\x5f\xf0\x01\x99\x77\x67\x0e\x96\x0f\xa1\x05\xeb\ +\x3e\xe6\xaf\x9c\xc6\xc5\x4f\x3f\x8c\xc9\xa3\xb3\x88\xf9\xcb\x0a\ +\xe0\x7b\x11\x27\x0a\xa7\x8f\x22\x5e\x7a\x23\xc6\x6f\x3c\x8a\x93\ +\xd7\xee\xc7\xc9\xa7\x2f\xe2\xe4\x93\x27\xb1\x78\xc8\xaf\xd8\xa7\ +\xb1\x9f\x97\x5f\xba\x82\x75\xb6\x0b\x53\xdf\x7c\x1c\xc1\xcf\x8c\ +\xd5\xb1\xc0\xfc\xdb\x20\x0d\xab\x54\x5a\xc1\x70\xc1\x06\x45\xf0\ +\x62\x4d\x0d\xe8\x57\x95\xa9\xad\x97\xd7\xdb\x78\xfe\x74\x15\x97\ +\x6f\x2d\xe3\xfd\x77\x9e\xc4\xcd\xf2\x32\xb6\x67\x93\x58\x69\xc1\ +\xbb\xde\xf2\xd4\xc5\x38\x76\x3c\xb9\xb8\xe4\xff\xc6\xd2\xde\x30\ +\xfb\x96\x87\xb1\x17\x43\x0a\xb5\x60\xec\x5c\x6e\xa2\x0e\x52\x2f\ +\x6f\xbe\xa3\xd4\x84\xf4\x37\xd1\x2d\x5d\xc6\xd0\xec\xf0\x66\xc5\ +\xff\x36\x6d\x62\xa7\x76\xe3\x3f\xf6\x78\x52\x8d\x0f\xaf\x5b\xa3\ +\x6d\x7b\x4b\x03\xcb\x8d\xbf\x15\x16\x91\xbd\x5a\xc4\x4e\x7d\x9d\ +\x1b\xe1\x9b\xfc\xd7\x13\xf4\xbd\xb8\x63\x66\xe1\x8d\x28\xea\x34\ +\xdb\xca\xed\x45\xdc\xed\xd6\x68\x12\xd0\x88\xf4\xf2\xb1\xf2\xaf\ +\x9b\x26\xa5\x9f\x37\xf6\x25\x6f\xfa\xe8\xc2\x13\xdd\x70\xaf\x97\ +\x3a\x04\x6f\x5a\xe9\xeb\xb8\x3b\x09\x21\x75\xbd\x29\x85\x2e\xe9\ +\xf0\xd1\xf7\x94\x44\xb7\xd0\xf2\xa4\x84\xcd\x86\x74\x93\xc5\xa1\ +\x6c\x89\x9d\x7e\x0c\x6d\x22\x6e\x32\xd5\x93\xf5\xc1\xc9\xc3\xa7\ +\xfa\x8b\x11\x9f\x9f\xdb\xab\x65\x04\xfd\x82\x2d\xa5\x41\x03\xdb\ +\x6e\x01\x5c\xb7\x8b\xd3\xb3\xf9\x47\xfe\x55\x07\xca\x70\xa2\x45\ +\xf2\xf6\x64\x17\xe3\xdd\x34\xc6\x32\xb7\x7b\xbc\x89\xf5\x8d\x5a\ +\x63\xb4\x91\x4d\xf9\x56\x8b\x68\x67\x6a\x1b\x15\x0a\xdc\xd5\x06\ +\x2a\x03\x94\x40\xc4\x37\xfe\x84\xed\x44\xc2\x90\x82\xee\xec\x28\ +\xa4\x39\xe5\x4d\x54\xc2\xa9\x7c\xde\xca\xed\xa9\xc6\x86\x99\x18\ +\xcb\xcd\xda\x4f\x68\x8d\x37\x2a\x87\x2a\x64\xab\x72\xf1\x84\x58\ +\xd3\x37\x28\xd2\xd7\x49\xf6\xdf\x3c\xdc\x01\xca\x3c\x6f\x2e\x2b\ +\xe4\xf7\x05\xc0\x54\xfb\xc1\x77\xeb\xab\x9c\x3f\x3c\xa9\xc1\x46\ +\xf6\x64\xae\xfa\xfa\x89\x49\x8c\x7f\x7a\x15\xe7\x9f\xd0\x18\xf5\ +\xc9\x5d\x4c\x5f\x93\x5f\x8f\x66\xb1\xb9\x3f\x8b\xfd\x89\xc6\xa7\ +\x33\x15\xe2\x64\xaa\x70\x1e\x71\x7e\xa2\x70\x2a\xde\x42\xe3\xa3\ +\x3a\xd1\xee\x81\x9f\x10\xdc\x5e\x8e\xfc\x94\x20\x4f\x9e\x31\x46\ +\xd4\x09\xe3\x1c\xbb\x0f\xfd\x01\x16\xe3\x81\xfa\x01\xff\x45\xc8\ +\x86\xda\x92\x57\x3f\xea\x7a\x92\xcd\xaf\x83\xbe\xae\x0f\x30\x2c\ +\xc8\x8a\x0f\xc1\xd1\x21\xaf\xab\x44\xa0\xa5\x04\x2b\xf0\x95\x5f\ +\x7e\x42\x4d\x79\xb5\x8d\x01\x03\x7e\x29\xf8\x69\x15\xe7\x63\x6f\ +\x53\x54\xc1\x50\x44\xb3\xdc\x4b\x92\xd3\xa7\xe8\x01\x7b\x70\x1c\ +\x4c\x4b\x57\x6d\xc6\x0f\x13\x36\x2a\xff\x52\x81\xd7\x25\xbb\x9d\ +\x78\x42\x46\x7d\xe5\xa7\x5f\xbf\x1f\xe7\xfb\xf7\xe3\xf7\xff\xfb\ +\x5f\x8d\xc7\xab\x2b\x99\x67\x9c\xca\x74\xb6\xe9\xfc\x08\x2d\xaf\ +\x86\x8f\xf0\xf1\x03\xda\x46\x6d\xa5\x2f\x37\x3d\xdd\xaf\xf6\xd3\ +\xf8\xef\x7e\xfe\xbf\x89\xf9\xc3\x77\xe3\xc1\x83\xb9\xe5\xf4\x0d\ +\x4e\x0b\x8f\xf5\x43\x50\x9b\xe7\xe7\x36\x24\xc7\x5d\x42\x69\xb3\ +\x4f\x24\xc3\x43\xad\x3b\x72\x62\xd3\xfe\xd2\xc7\xd3\x87\x12\xc3\ +\xee\x61\x10\x39\xc8\x8f\xb4\xf8\xa1\x4e\xca\xb9\xb3\xe1\xdc\xed\ +\x05\xa6\x86\xd0\x4e\x43\x23\xab\x70\x80\x76\xe9\x07\xa0\x98\x94\ +\x0f\xf2\x2a\xf0\x10\xa2\xb1\xb2\xfd\xd0\xc0\x76\xa4\x69\x3f\x44\ +\x35\x3b\xf0\x2c\x97\x1d\xf2\xf1\xe5\x77\xac\xeb\x8a\xe8\xbc\xa6\ +\x72\x69\x4a\x19\x97\x2a\xea\xb7\x6d\x52\xb4\xa7\x28\xfc\xca\x47\ +\x05\x1d\x8c\x5f\xfc\xa1\x42\x81\x79\x25\xe8\xe8\x0c\x24\x1f\x42\ +\x27\x69\x44\xa1\xc6\x23\x1f\xdc\xde\x6e\x97\x71\x75\xfd\x4c\xe3\ +\x01\x4f\x82\x31\x2a\xf0\xe1\x4d\x0f\xfc\xea\x40\x1a\x95\x16\xec\ +\x74\x49\x76\xb4\xa1\x88\x26\xeb\xc0\x99\x0b\xaa\x82\x9b\xac\xe9\ +\x0d\x43\x2a\x65\xe0\x43\xa5\x6e\x77\x1a\x9f\x37\xd7\xb1\xd6\xc0\ +\xce\xfc\xb6\x6d\xac\xb1\xf1\xc8\x1b\x13\x78\xf5\xa3\xe7\x39\xca\ +\xc7\x76\xc0\x22\x88\x35\xff\xb2\x37\xa7\x03\xde\x44\x81\x54\x47\ +\x77\x5b\xc2\xaf\x31\xd7\x69\xfc\xc9\x74\x6a\x99\x8c\x63\x9f\xb9\ +\x09\xed\xe6\xb8\x02\x69\x9c\xae\x85\x94\x13\x68\x70\xd2\x92\xb3\ +\x24\xc5\x2f\x3d\x36\xaa\xaa\x73\x12\x73\x1f\xe0\x23\x1d\x68\xa7\ +\x6d\x76\x2b\x6d\xf6\x93\xb2\x6d\xbb\x25\x27\x2b\xf4\xc9\x07\xfc\ +\x02\x8d\x1e\x3a\x3e\xd8\x4e\xda\x2e\x3d\x8e\xf0\xed\x72\xea\xa0\ +\x9b\xd7\x20\x7c\x54\x60\xd2\x84\xbf\xf6\x99\x14\x56\xcb\x90\x4d\ +\x65\x1a\x41\xf2\x39\x3f\x14\xb7\x66\x1f\x4f\x4c\x7d\x67\xbe\x29\ +\x2b\x4a\x07\xb2\xe7\x09\xbb\xd9\x4c\xd7\x78\x67\xb9\xf3\x06\x3f\ +\xff\x9b\xb6\xf1\x93\x49\x79\x6d\x26\x05\x69\x3c\x3f\xf1\x49\x47\ +\x24\x6d\x91\x10\x8e\xfd\x02\xf0\xad\x48\xc0\xe7\x33\x84\x7f\x40\ +\x05\x95\xa1\xd9\xb4\x1d\xf0\x10\x9a\x2d\xeb\x21\x17\x43\xee\x6c\ +\x97\x4b\xf5\xc9\x9b\x58\xad\x2e\x63\xb9\xbe\x92\x8f\xbc\x3a\xba\ +\xd7\x6b\xb6\xfb\x90\x70\x20\xe3\x0b\x59\x99\xe2\x77\x27\x1f\x94\ +\xad\x41\x9e\xad\xc9\xef\xea\xc1\x31\x4a\x9e\x6d\xa9\xb3\xc1\x1b\ +\x65\x27\x9a\x17\x9d\x6b\xdd\x7c\xbe\x98\xc7\xc5\xc9\x5c\x53\xa5\ +\x59\x9c\x2e\xa6\x71\xaa\xfa\x3d\x65\x73\x4d\x61\x36\x1d\x6b\xfa\ +\x34\xf6\xe6\x9b\x2b\x5d\xe0\x6a\x4d\xca\x47\x8b\x0c\x75\xb6\x54\ +\xdf\x05\x7c\x8e\x26\x61\x3a\xd7\xde\xa2\xdd\x5f\x92\x3f\x84\x8c\ +\x72\xec\x6d\x24\xdc\x52\x14\x50\x17\x70\x2d\xc1\x6e\xa9\x6c\xb9\ +\x40\x55\x04\x2b\x50\x87\xd6\xaa\x2d\x4d\x29\xa8\x00\xd9\xb5\xc5\ +\x1f\x0a\x40\x1d\x56\xc9\x90\x9b\x1e\x2a\x11\x2a\xe3\x06\x55\xc6\ +\x1e\xaa\x25\x8a\xd9\x52\x33\xf7\x3f\x5d\x9c\xc7\xc9\x83\x55\xfc\ +\xfc\x2f\xfe\x5d\xcf\x35\xf3\x47\x4b\x96\xde\xc2\x47\x38\xc2\x11\ +\x8e\x70\x84\xef\x17\xf2\xea\x75\x84\x23\x1c\xe1\x08\x3f\x4e\xf8\ +\x01\xcc\xe9\xda\x24\xf2\xbb\x86\xdb\xf3\xc9\x83\x79\xab\x08\xe8\ +\x16\xd7\x84\xff\xc9\xb7\xbe\x1d\xe7\xcf\x3e\x88\x4f\x3f\xba\x08\ +\xad\x03\xa4\xbe\xd3\x7a\x78\xa7\x45\x57\xfe\x82\x71\xb5\x5a\x7b\ +\xe1\x6d\x1e\xe9\xc4\x6f\xcb\x1f\x2f\xe0\x98\x30\xfb\x63\x96\x27\ +\xd2\xb9\xb0\x24\x0e\x66\x11\x09\x99\x34\x7c\x87\xb6\xb0\xf4\x8c\ +\x9c\xc4\x89\x8a\xec\x22\xdd\xe4\x9f\xfc\x35\x71\x66\xf2\x9c\xd0\ +\xf0\x87\x43\x67\xeb\xd0\x72\x2e\x96\xf3\x3d\x1d\x99\x7f\xc9\x29\ +\x1f\x37\x78\x46\xdc\x50\xba\x5c\xf9\xff\x9a\xf6\xcb\xad\x6f\x06\ +\x97\x13\x24\x37\xa4\xb5\x96\x16\x44\x3d\x68\xd1\xf9\x70\x11\xf3\ +\xf3\x7b\xb2\x7d\x1a\xa1\x45\x57\x4c\x58\xc4\x2a\xf0\x67\x69\x6c\ +\xae\x9d\xb1\xa9\xf6\xc9\x98\xbc\xf1\x72\x2c\x3e\xfd\x30\x16\x3f\ +\xf5\x20\x4e\x3f\x35\x8d\xc9\x03\xa5\x9e\x2a\x1f\xe9\x7b\xf1\x6f\ +\xbf\x3a\xeb\x06\xd8\x2c\xbe\x7b\x2f\xec\x94\x82\xea\xd2\xc7\x9e\ +\x63\xe8\x18\x1d\xc7\xbc\x4e\x9b\xca\x2d\x92\xe0\x76\x15\x6b\xbd\ +\xd9\x6b\x21\xbb\x8d\x6b\xb5\xfd\xf5\xd3\x75\xdc\x5c\x6e\x63\x33\ +\x9a\x7a\x01\x1e\xfb\x45\xec\x56\xb3\xd8\x6e\xa6\xb9\x88\x5e\xef\ +\xbd\xf9\xd8\xb2\x30\x1a\x64\x87\xa0\x8b\x42\x90\x27\x50\x79\xb6\ +\x9b\x02\x09\xc5\x04\xac\x66\x85\x2e\x89\xb2\xbb\x13\x78\x7d\x11\ +\x37\xed\x37\xcb\x35\x7b\x61\x4a\xcb\x12\x58\xd0\xfa\x16\x36\x92\ +\xf0\xb1\x99\x2e\xb3\xbe\xc1\xe0\xff\x61\xe0\x0b\x53\x8b\xb3\xdd\ +\x66\xe5\xa7\x72\x5a\xde\x76\x92\xc0\xcd\x97\xd6\x77\x2b\xb4\x38\ +\x37\x86\x7c\x73\x86\x29\x08\x7d\x8c\x30\xa1\xff\xab\xcd\x3a\xfd\ +\x4a\xdf\x85\xb4\x9d\xf6\x38\x9f\x44\xfb\xe9\x2f\x12\x8b\x87\x8e\ +\x6c\xf4\xfa\xd8\x4e\x7e\x96\x2f\x33\xea\x36\xa4\x2c\xc7\x4e\x62\ +\xc2\x9e\x5f\x6c\x3b\x0f\xe2\x95\x0f\xb6\x44\xfa\xf6\xac\x30\x81\ +\x78\xcb\x2f\x79\xf8\x0d\xea\xed\x19\x97\x32\x1f\xca\xe5\x8d\x35\ +\x71\x59\xf4\x6f\x56\xab\xd8\xf2\x94\x20\xbf\x7c\xae\x1a\xb6\x8d\ +\xd4\xd0\x57\xe9\xdb\x8d\x83\xb2\xe1\x4a\xc6\x0d\xfb\x26\xce\x68\ +\x12\xfb\xc9\x24\x76\x73\xd9\xde\xc9\xff\x1b\xf5\xb1\x4b\xf1\xd4\ +\xd7\x38\x17\xd9\x2b\xb4\x39\xd4\x29\x01\x66\xe1\x15\x40\xfb\xbe\ +\x03\x21\x59\xa9\xef\x3c\x32\x18\xca\x0f\x8e\x19\x32\x0e\xf4\xbc\ +\x0c\x3e\xba\x2f\xd3\x5f\x47\xb1\x95\xaf\x6c\x98\xad\x16\x93\x98\ +\xed\xf8\xc5\xf9\x2a\x46\xcb\x9b\x98\xad\xd4\xde\x7e\x9d\x97\x07\ +\xd3\x4c\x77\x0b\x7c\x9e\x15\xdf\x54\xab\x8f\x5b\xe0\x72\x74\xb2\ +\x61\x09\x0b\xc4\x6a\xfd\x93\x2c\xd1\xc4\x3f\x9a\x9d\x64\xd3\xd9\ +\x36\x16\xaf\x8c\x63\xf7\x13\xdb\x38\x79\xb4\x8f\xd9\xcb\xdb\x18\ +\xbf\x74\x12\xfb\x8b\xd3\x18\x5f\x2c\x62\x7c\x72\x1e\xfb\xb3\x93\ +\x88\x53\x8d\x53\x67\x1a\xb3\xee\x89\x3e\xd3\x18\x75\x2a\x3c\xd3\ +\x78\x35\xd3\x18\xc6\x1d\xae\xf7\xf6\x71\xf3\xbe\xc6\x81\xa7\xbb\ +\xd8\x2e\x75\x16\xd2\x1f\xc8\xa9\x3b\x39\x7a\xef\xba\xb2\x71\x22\ +\xa9\xad\xf6\x1a\x47\xd6\x4f\x57\xb1\xe2\xdc\x44\x0b\xb1\x0e\xaa\ +\x42\x8e\x8e\x42\x93\xde\xaf\xbd\x34\x51\x6a\x82\x94\x17\x93\xc0\ +\x17\x52\x12\x23\x40\x84\x63\x30\x68\x23\x85\xf6\x54\x58\x33\xe4\ +\xf3\xcb\x7d\x9e\x0e\x20\x89\xfb\x19\x82\x0a\xa5\x98\xc7\x02\x45\ +\x52\x5c\xba\xee\x40\xd8\xed\x75\x09\x70\x52\x0b\xbb\xca\xbb\x3e\ +\x1b\x0d\x90\x6c\xa6\xdd\xac\x96\xe1\x57\xc8\xd2\xef\x14\x7f\xed\ +\xfc\x2c\x7e\xea\xb5\x87\x31\x79\xe7\x71\xfc\xf1\x1f\x7c\x55\x4c\ +\x9e\x9c\x51\x3f\x4f\x43\xc6\x69\xed\x08\x1f\x7f\x50\x63\xf1\x55\ +\xbb\xd3\x07\x79\x72\x7b\x77\x3d\x8a\x5f\xfe\xad\xff\x36\x5e\xfe\ +\xec\xa3\x18\xeb\x1c\xf2\x30\x4c\x8b\x56\x9f\xcb\x8d\xde\xd6\x7b\ +\xaa\x9d\xab\xed\x81\xe4\x48\xb7\xd4\xdc\xb7\xc1\xa4\xe7\x53\xc9\ +\xc0\x90\x80\x6f\xde\x13\xa7\x8f\x17\xaf\xe1\x0e\x9c\x47\x66\xe4\ +\xf3\xd7\x54\x02\x74\xdb\x50\xeb\xe6\x3b\x43\x18\xc4\xb1\x9b\xb9\ +\xe8\xe8\x4c\x1b\xef\x16\x88\x91\xc3\x57\xef\x53\xb3\xc3\xdc\x81\ +\xf3\xc3\x75\xe1\xc4\xf9\xfa\x46\x0a\x45\x34\xd5\xf2\x68\xb1\x2a\ +\x83\xa7\xcb\x74\x51\xae\xba\x4c\x5e\xab\x03\x6f\x68\x88\xc0\x1d\ +\xce\x25\x9e\x58\xcb\xa7\xd4\xc0\x3c\x9d\x86\x9c\x1c\x32\x01\x69\ +\x1a\x40\x0f\x03\x47\xea\xc7\x4f\x6c\x55\xc0\x97\x1c\x87\x4a\xa7\ +\x57\x16\xa4\xcf\xa6\x8a\x30\x47\xea\xbc\xe6\xf5\x66\xf5\x2c\x6e\ +\xb6\xcf\xc5\xc5\xce\x26\x34\x9b\x52\xf9\x37\xd6\xb1\x19\x1d\x9c\ +\x5f\x26\xbc\x13\xca\xf3\x0e\xb2\xf5\xb2\xfc\x43\x41\x92\x65\xab\ +\x20\xbd\x96\x4c\x44\xb6\x7b\x8e\x91\x34\x02\x4f\xc9\xad\xd6\x97\ +\xb1\x59\x5f\x6b\xda\xc3\x53\x73\xaa\x5f\xd5\xd5\x74\x32\xcf\x0d\ +\x35\xea\xad\xd2\x27\x94\xcf\x45\x03\x9e\xaf\x9a\xe4\xd0\xea\x09\ +\xfb\x89\xe0\xba\xac\xa8\x55\x30\xb8\x4d\x84\xd4\x49\xf2\xdc\xc8\ +\x0d\x31\x7f\xd0\xab\x36\x6b\xe7\x4d\x49\x1c\xcf\xf6\xc6\x10\x98\ +\x76\xe6\x55\x86\xd9\xf6\xa4\xa1\xfd\xdd\xde\xb2\xe1\x7c\x14\xb2\ +\xdf\x64\x9f\x10\x33\xe5\xcc\xcf\x3d\x27\x51\x3f\xe1\x43\xba\xf6\ +\xa9\x3c\x9c\x0f\x7c\xec\x74\x7c\xb4\xf1\x57\x7c\xa7\xef\x69\x72\ +\x92\x02\x25\x14\x9d\xc1\xe7\x27\xbe\x38\x7d\x8a\xc9\xbe\xcb\xa3\ +\xf4\x86\x90\xf5\x28\x99\x4f\xa2\xac\x48\x34\x9b\x2e\x01\x93\xc9\ +\xd3\xc7\x4c\xea\xa6\x2f\x03\xf9\xf2\xb4\xdd\x22\xb4\xae\xd0\xbc\ +\x8e\xb6\xe7\xd2\xc8\x86\x1a\xaf\xb4\x67\xbd\xe7\x74\x24\xed\x1b\ +\xab\x21\xeb\xf3\x55\xc7\xb0\x1c\xdd\x0e\x73\xfe\x55\xba\x76\x2e\ +\xd6\x09\x3f\x80\x8c\x37\x6e\xea\x0f\xe2\xb6\x5b\x3c\xc6\x00\x97\ +\x99\x1f\xc4\xac\xd5\x2f\x97\x71\x73\xa3\xb5\x27\x3f\x48\xf1\x27\ +\xa1\xa5\x85\xea\xd2\x3a\x0e\xf4\x31\xb7\x9b\xe8\xe6\x2b\x05\xe9\ +\xa5\x8a\x57\xc4\x7a\x66\x36\xdc\xa0\x6a\x51\x72\xea\x71\xa6\xca\ +\x3e\x61\xd3\x6c\x3e\xf3\x26\xda\x39\x1b\x69\x73\xe2\xd3\x38\x99\ +\x4e\x63\xe1\x8d\xb4\x49\x4c\x09\xc3\x37\x38\x54\xde\xce\x5f\x08\ +\xca\x47\x9f\x83\x8e\x08\x20\x5a\x24\xcb\xc5\x39\xda\xea\x3f\x4d\ +\x64\x1d\x0c\x37\xde\x5e\x80\x66\x22\x2d\x24\x09\xd8\x40\xa6\x23\ +\xdb\xe6\x12\x34\xf5\x4d\x5e\x6c\xa8\xe5\x8f\xa5\x32\xa5\xfb\x43\ +\x41\xcb\x31\xeb\x02\x5c\x41\x91\x61\x1f\x4c\x1d\x1f\x33\xd6\x7c\ +\xad\x04\xee\xeb\x25\x77\xdc\xc2\x04\xcb\x92\xea\xf4\x0e\x02\x12\ +\x9d\x33\x74\x60\x3c\xbb\xff\xf2\x24\xbe\x7d\xf9\xe5\x78\xfc\xfe\ +\x37\xf2\x47\x65\xa9\xa1\xd0\xfb\x7d\x84\x23\x1c\xe1\x08\x47\xf8\ +\xfe\x81\x21\xf7\x08\x47\x38\xc2\x11\x7e\xbc\xf0\xc3\x9c\xdb\x61\ +\x7b\x08\x1f\x96\x4f\xce\x98\x05\x99\x80\x89\xa9\x95\x35\x29\x7d\ +\xb2\xbb\x8c\x9f\xff\xbb\xff\x75\xfc\xd4\xc5\x2c\x1e\x9d\x2e\x62\ +\x36\xe3\xa6\x5e\x2e\x3a\x78\x22\x6c\xb9\xdc\xc4\x72\xbd\x0e\xfe\ +\x4f\xc3\x0b\x70\xa7\x14\x6e\xb3\xdb\x64\x98\x6c\x13\xe0\x5c\xe8\ +\x96\x4a\x17\x10\xa0\xc4\x57\x13\xf0\x24\x3a\x1e\x4a\xa8\x18\x86\ +\x58\xb6\xc9\x8f\xbc\x77\x1b\x42\x4e\xf6\xeb\xf0\x22\x54\xda\x66\ +\xa2\xcd\xe5\xb1\x01\xe9\x05\x2c\x0b\x00\x36\x28\x26\x5a\x80\xe7\ +\x4a\x20\x83\x4c\x72\xc3\xd7\x79\x5d\xaf\x63\xc7\x6b\x1e\xd9\x18\ +\xe0\xe9\x34\x4f\xe0\x33\xcf\xae\x3a\x87\x20\x1e\x45\x19\xb3\x10\ +\xe4\x89\x04\xde\x53\x17\x67\xb1\xd2\x22\x7c\xc7\x66\x86\xf3\x12\ +\x9e\xcd\x23\x4e\x16\x12\x3d\x88\x78\xed\x8d\x98\x7d\xe6\xd5\x38\ +\xfd\x89\x87\x31\xfb\x49\x2d\x77\x1f\x4d\x63\xba\xd0\xe2\x77\x8e\ +\x6f\xed\x46\x46\x2d\x69\x5a\x9e\xc6\xcd\x61\xa2\x3d\x0d\x0c\x5d\ +\x3b\x48\xd7\xd4\x5a\x70\xbd\x4b\x38\x54\xb2\x4c\x07\x82\x2a\x6e\ +\xad\x36\x5f\x2e\xb5\xf0\xbe\xe6\x09\x34\xd5\xbb\xf8\xbb\xb1\x16\ +\xe5\xf7\x27\x31\x5a\x28\xb0\x68\xdf\xa9\x4c\xaa\x1b\x5e\x89\xc9\ +\x8d\x76\xd7\x9f\x3e\x7e\xda\x62\x08\xd8\x06\xc8\x57\xd0\xea\x32\ +\x51\x96\xd1\x0b\xa5\x2e\x5d\xf9\x61\x48\x1e\x6d\xd9\x6e\x13\x24\ +\xc8\x8a\x48\x5e\x47\x7a\xc3\x66\x1a\xff\xd7\xe5\x06\x57\x50\x5a\ +\xd7\x1f\x64\xe3\x19\xc8\x39\x17\xb9\x59\x77\x66\x39\xe4\xaf\xb3\ +\x01\x6b\x28\xa8\xbc\xab\x56\x76\xb1\x1d\xb0\x89\x6d\x39\x5b\xd8\ +\xf9\xd0\x8f\x5a\x5f\xaa\xb8\xfb\x38\x7a\xf0\xb5\xb8\xf6\xcd\x14\ +\x3b\x94\x76\x1c\x4a\x87\xcd\x5d\xdb\x68\x7c\x05\xdf\xf0\x77\x3e\ +\x19\x7a\x5a\x7c\xcb\x2a\x0d\x01\x3b\xa4\xb3\x0d\xe9\xb4\x78\x05\ +\xfb\x52\xb4\xdb\xad\xcb\x4b\xed\xd7\xd2\xd8\x16\x58\x63\x00\x7a\ +\x8a\x67\xc8\x3c\x69\x3b\x9f\xc7\x90\x0a\x99\x5e\xd8\xe9\xab\x1a\ +\x75\xae\x6c\x79\xd5\xe3\x86\x97\xde\xb1\xd1\x55\xe5\xb0\x62\xd5\ +\x2c\x6d\xec\xb4\xe2\xc2\x2e\x3a\xf3\x27\xc8\x3f\x6e\xac\x81\x95\ +\xe7\x76\x37\x8d\x58\xa9\x2d\xf8\xe5\xf2\x56\x76\xd5\xdf\x6c\xa9\ +\x92\x01\xad\x3f\x59\x02\xaf\xf8\x0d\x32\x45\x1e\x38\x7f\x09\x07\ +\x6a\xb7\xd2\xb4\x6e\x48\x8f\x68\xfa\x7e\x42\xd6\xe9\x46\x72\x87\ +\x5f\x2b\x8f\x63\x32\x9d\xc5\xe6\x94\x1b\x69\x9c\xf7\xdb\x98\x68\ +\xbc\x1c\xad\x33\xa1\x5f\xeb\xa8\x84\xf9\x34\x5a\x6f\x7c\x90\x4d\ +\xc1\x8b\x1c\x78\xd4\x55\x07\xe5\x8f\x39\x45\x83\x72\xbc\x52\xbd\ +\x88\xf6\xa6\x22\x4c\x29\x65\x1d\xc8\xc7\xb3\x49\x4c\x5e\x8f\xb8\ +\x7f\xba\xf1\x7f\xbd\x2d\xe4\xeb\x4c\x63\xcc\x9c\x57\x54\xca\xf7\ +\x98\x9f\xc4\xe8\x84\x57\x3a\x9e\x46\x68\xfc\x0f\x36\xd7\x78\x32\ +\x6d\xae\x30\x52\xa0\xee\x9f\x6d\xe2\xea\x9d\xab\xb8\x7c\xfb\x3a\ +\x36\xef\x70\x83\x38\xf3\x4c\x67\x06\x3e\x1a\x14\x77\xde\x19\x73\ +\xf9\x35\x66\x6f\xaf\x36\xb1\xe6\xc7\x09\xde\x64\xcd\xde\xd0\xb5\ +\x9f\x82\xed\xd9\x26\x87\x82\xb2\x91\x22\x94\x89\x25\xd3\x47\x09\ +\x4a\xc5\x90\x7a\x3a\xca\x98\xaf\x55\x0a\x6c\x0e\xa4\xf1\x84\xc3\ +\x73\x97\xf4\x58\x28\x2b\xcd\x98\x70\x6f\xb7\xef\x59\xd6\x94\x7f\ +\xbe\xe1\x5b\x7e\x72\x24\x58\x36\x08\xa4\xea\x36\xd4\x36\xeb\x58\ +\xde\x2c\x63\xa3\xbe\xcb\xa6\xbd\x6f\x56\xab\xef\xfc\xcc\x67\x3e\ +\x19\xf3\xed\x93\xf8\xdc\x2f\xfc\x23\xe9\x91\xca\x1d\xa6\xb3\xd7\ +\x72\x4e\x18\xd2\x47\xf8\xd8\x01\x0d\x66\xc4\xab\x5d\x37\xf1\xfb\ +\xdf\xf8\x4a\xac\x26\xef\xc4\x83\x57\xce\xc4\xa1\x5d\x13\x78\x52\ +\x0a\x70\x3f\x14\x49\x70\xcb\x56\x1f\x6d\xc7\xbe\x17\xa4\x8e\xf5\ +\xdb\xa7\xd2\xa5\x8d\x3e\xae\x63\xc7\x17\x69\x5d\x13\x0e\x05\x8d\ +\x1c\x74\x27\xd4\xf3\x7c\xd1\xe9\xae\x6b\x3e\x37\xd9\x07\xe2\x03\ +\x68\xfc\x86\x2b\xab\x2c\x61\x3a\x71\x27\x30\x9a\x91\xa6\x9d\xc7\ +\x8c\xa3\x7e\x0d\x2c\x79\x95\x31\xfb\xdb\x57\x95\xd3\xd8\x22\xe7\ +\x86\xcf\x39\x9d\xcb\x63\x36\x00\xcc\xed\xb2\x03\xa5\x1f\x3a\xb7\ +\x74\xe4\xfc\x72\x1d\xb0\xd9\x81\x41\x5f\xef\xb8\xa6\x88\x2f\x19\ +\x97\x98\x4a\xda\xe1\x9e\x10\x74\xf2\xa1\x56\x4f\x3b\x7f\xdb\x4f\ +\xda\x79\xf7\xe2\x01\xca\x82\x51\xf2\xd5\xf2\x2a\xae\x9e\x3c\xf6\ +\xd3\xfd\x5b\x1d\xc5\xf1\x26\x41\xdb\x84\xc8\xf4\x99\x8a\xa3\x79\ +\x15\x69\xb8\x01\x64\x06\x3e\x5c\xa1\x88\x28\xaf\x26\x28\x49\x5e\ +\x67\xd3\x87\x26\xd2\x95\xdd\x5e\xe5\x0f\x50\xf4\x51\xe5\x33\xef\ +\xe1\x0d\x14\xcb\xd5\xb5\xc6\x2a\x4d\xf8\x54\xcf\xd4\x7c\xd6\x27\ +\x9b\x4f\x4a\xa9\xe0\xfa\xc3\x8e\xa3\x45\xfb\x28\xc0\xa8\x43\xa6\ +\xcc\xfa\x07\x88\x2b\xb8\xfd\x88\x27\x46\xc7\x1b\x4c\xf0\xf5\x49\ +\xa1\xa9\xae\xad\xbc\xb9\xa5\xb8\x83\xe2\xce\x13\x3e\xed\xd9\xe2\ +\xfa\x64\x7b\x92\x92\xf3\x0b\x99\x42\x71\xa4\x62\xca\x1c\xa7\x29\ +\x19\x9b\x67\xa6\x15\xe4\xb7\x29\xe4\xf4\x1d\x7f\x98\xdf\x12\x44\ +\x4b\x0f\x5d\x7a\x93\x3f\x95\x6f\x9f\x3f\x01\x1d\xf2\x93\xa5\x76\ +\x7d\x81\x0f\xed\x12\xe0\x0d\x18\x28\x79\xfb\xd0\x18\xa5\x8f\x5a\ +\x21\x63\x20\xb5\x88\x53\x97\x66\xa4\x4e\x53\x10\x64\x1c\x51\x95\ +\xa3\xe2\x9c\x0b\x2e\xb1\x22\x53\xad\xed\x48\xe1\x76\xe7\xda\xa4\ +\xf3\x8f\xb1\x2a\xdb\x88\xb4\xa2\x48\x57\x74\x1e\x40\xc5\x6c\x34\ +\xee\x36\xc6\x01\x6e\x74\x83\xc6\xe3\x9c\xbd\x05\xb2\x91\x3d\x85\ +\x4e\x53\x9a\xee\xab\x63\xad\x41\xe5\xf3\x84\x3e\xc8\x8f\x39\xd9\ +\xf4\xe3\xc9\x49\x27\x38\xb0\x93\xd6\x49\x73\x68\xdd\xfd\xcd\x04\ +\xb2\x3a\x3f\x0c\xe4\xa7\xba\x87\x9d\x87\x01\xa4\x37\xf5\x95\x16\ +\x99\x89\xa3\x88\x5b\x50\xed\x3a\x9b\x4e\xb5\x74\x9b\xc5\x62\x36\ +\x89\x79\x6d\x98\xf9\x09\x34\xad\x25\xd9\xbc\x9d\x6a\x7d\x37\xd5\ +\xba\x8d\xd7\xce\x3a\x7f\x9f\x5b\x15\x34\xe0\xb5\x32\xb4\x9c\xbb\ +\x73\xdf\x11\xd1\x64\x69\xc9\x40\x69\x00\xb0\x6c\x02\x7b\x7c\xcc\ +\xb0\x68\x00\xcd\xe0\x10\x4a\x69\xa8\xeb\xba\x49\xb0\x19\xfc\xe3\ +\xa3\x0e\xe0\x1f\x54\x64\x46\x5d\x92\xd6\x4e\x80\xfb\x88\x42\xd7\ +\xcf\xf8\x70\xde\x14\x9f\xb8\x8f\x46\xc5\x4f\xb2\x30\xc7\x84\x81\ +\x1b\x2f\x40\x6a\x71\xec\xcf\x17\x73\x6c\x93\xfb\x14\x5b\xad\x97\ +\x67\xf1\xe8\xf5\x71\xfc\x0f\xff\xbf\x9f\xd3\x5c\x5c\x72\xdc\x2e\ +\x3d\xa0\xa7\x8e\x70\x84\x23\x1c\xe1\x08\xdf\x0f\xb4\x99\xcb\x11\ +\x8e\x70\x84\x23\xfc\xf8\x81\x89\xe3\x47\x4c\x1e\x3f\x0a\x9c\xec\ +\xae\x99\xe1\x6d\x7b\xe8\x0c\x79\x2d\x4d\xcd\x64\x3d\x49\x06\x40\ +\xf0\x36\x5b\x2d\x0e\x16\xf1\xe5\x5f\xfc\xa5\x78\x30\x59\xc7\xfd\ +\xf9\xc4\x42\x4f\x5c\xf5\x5d\x6b\x21\x73\xb3\x5a\xfb\xe9\x1f\x7e\ +\x75\xed\x39\x76\x25\x05\xf2\x57\x99\xa9\xeb\x03\x5f\x4f\x76\xdb\ +\xe4\x37\xb1\xe6\xbe\x3d\x9f\xc4\x88\x3c\x01\xef\xe3\xb0\x00\xc7\ +\x07\x40\xcc\xf9\x72\x33\x9b\xf7\xfc\x6f\xf0\xa0\x9f\xe8\xf7\xc4\ +\x21\xd8\xcf\x0a\x32\xca\xb7\x45\x94\xb7\x1c\xe2\x89\x31\x7d\xf3\ +\x49\x1c\xc9\x53\xa8\x7c\x74\xd0\x22\x6e\x7d\xb5\xcc\xa7\x6c\x56\ +\x9b\x18\xd5\xff\x0b\x78\xf2\xdf\xf2\x33\xd6\xf2\x4c\xd8\x0b\x21\ +\x1d\xb8\x39\x70\xb3\x8e\x58\x5c\x6a\x19\xb7\xbe\x89\xf5\x74\xe3\ +\x1b\xa5\x3b\x55\x40\x6e\xaa\x4d\x55\x5d\x33\xe5\x3d\x8b\x3d\x37\ +\xac\x2f\xee\xc7\xe8\xd1\xab\x31\xe3\x7f\xd5\x7e\xea\x41\x5c\x7c\ +\xe2\x2c\xc6\x0f\xa7\xb9\xf0\x9d\xc8\x1e\xff\x5f\x81\x7b\x95\x07\ +\x79\x82\x38\x66\x51\xca\x6b\x0e\x72\xc4\xcd\x9b\xc5\x30\x74\x32\ +\xc3\x40\xa0\xf4\xdd\x93\x25\xb0\xa9\x9c\x81\x18\x92\x3f\xa9\x9e\ +\xa8\x1e\x46\xcb\x5d\x4c\x6e\x54\xed\xeb\x95\xba\xcb\x24\xf6\x67\ +\xca\xf3\xa5\x49\x8c\x1f\x69\x89\x35\x61\xd3\x44\xfd\x44\xa6\xd8\ +\xec\x58\xb1\x01\xb9\x62\xa9\x5e\xb6\x0d\xe9\x94\x17\xcb\xf8\xd8\ +\x71\x0a\x8a\x30\x92\xc0\x7d\x82\xfe\xe2\x3e\xc3\x42\x3c\xb5\xbb\ +\x4d\x99\xd2\xc7\x12\x6e\x6f\x95\xdf\x92\xcd\x3c\x61\xdf\x04\xd1\ +\xa5\x7f\x3c\x1d\xc7\x64\x2e\xac\x85\xf9\x5e\x7d\x94\xb4\x36\xe3\ +\xc4\xd8\x82\x6e\x31\x1d\x2b\x6e\x1d\x55\x62\xd6\xa3\xec\xa9\xcf\ +\x8d\x79\xe5\x23\x37\xe5\x05\x2c\x20\xe9\x3b\xd9\x67\x15\xd8\x34\ +\xe5\x2e\x8a\x6f\xa0\x70\x23\x45\xb9\xe3\x38\x06\x45\xef\xd1\xa5\ +\x9f\xb7\x34\xa6\x2b\xad\x42\x96\xb5\x64\x95\xc6\x7f\x59\xd2\xd2\ +\xb5\x34\xea\x3a\x4e\x67\xba\x42\xc5\x5b\x20\xee\x72\x62\x13\x67\ +\x9b\x4d\x02\x08\xb7\x0e\xd2\xe0\x3b\x7e\x97\x5a\xd9\x68\xf9\xfa\ +\x46\x50\x66\xac\x20\x05\xca\xc7\x47\x72\xca\xc5\xff\x80\x91\x86\ +\x0d\x69\xd7\xa7\x02\xd5\xb6\xb9\x5e\x45\xa8\x3d\x78\x1a\x07\xb6\ +\xfd\x71\x9d\x34\xc0\x16\x69\xd1\x4f\x1a\x9b\xde\x6c\x54\xe0\xe6\ +\x92\xf5\xa1\xa9\x0b\x76\xa5\x78\x02\xf2\x7a\x17\xcb\x4b\xe1\x4d\ +\x6e\xd6\x91\xb6\x6f\x57\xd4\xb1\xe5\xef\x47\x42\xeb\x06\xa8\x37\ +\x38\x4c\x53\x06\x01\x91\xed\x34\x61\x5c\xf0\x2b\x04\x85\xd9\x12\ +\xe2\x25\x6e\x9b\xc9\x38\x9e\xdd\x93\xce\x09\xff\x97\xa6\xbe\xa2\ +\xb1\x62\x7c\xa9\x72\xaf\xf9\x5f\x1c\x3e\x94\x5b\x7e\x76\x39\x80\ +\x89\x17\x94\x33\xdd\xb8\x3c\x80\xee\x4c\x79\x51\x64\x33\xae\x73\ +\xc9\x18\x7f\xb0\xef\x28\xb4\x08\xba\xeb\x8e\xc1\xed\x4c\xc4\xab\ +\xa3\x98\xdd\xd3\x09\x3c\xdf\xc6\x89\x86\x1e\x57\xd3\x56\xfa\xfc\ +\x39\x9d\x2a\x78\x3c\xd5\xf8\xa4\xb1\x68\xc7\xff\x66\xb2\xa9\xc6\ +\x13\xb4\xe3\x0b\xc9\xce\xf3\xe9\xdd\x95\x4a\xfb\xf6\x75\xec\xbe\ +\xa9\xf1\xf0\xdb\x3a\xdf\x2f\x27\x1a\x87\xb9\x4e\xe0\x06\xc6\x4c\ +\x54\x2c\xfd\x68\x47\x73\xe5\x13\x4f\xfb\xc6\x5a\x63\xe1\xe5\x2a\ +\xd6\x6c\xce\xcb\x63\x71\x12\x9a\x6a\x85\xb4\x49\x44\x50\x27\x6a\ +\xc5\x12\x5a\x83\xbc\x00\x14\x3e\x83\x6f\x38\xa9\x12\xf8\xa5\xb5\ +\x5f\x11\x3c\xa8\x5f\x97\x5f\xe7\x0f\xfd\xdb\xfd\x87\x7e\x06\xd1\ +\x53\x4e\x7d\x00\x00\xff\xf4\x49\x44\x41\x54\x3f\x73\x1e\x64\xd6\ +\xf8\x4a\xdb\xf1\x00\x45\x6c\x84\x6f\xa5\x01\x8a\xc0\xe5\x74\x3b\ +\xfd\xd8\xa9\xb7\xf0\x3f\x45\x1b\x85\xeb\x1b\xfe\xab\x88\x34\xca\ +\x5b\xd5\xff\xd9\x8b\x7b\xf1\xda\x78\x13\x6f\xff\xce\xe7\xe3\xc9\ +\xf3\x67\x34\x9a\xc7\x53\x92\xdb\x63\x0e\x9d\xef\x5d\x4e\x47\xf8\ +\x98\x42\xb6\xd4\x5e\x57\xa1\x59\xfc\xfd\x9f\xff\x3b\xb1\x78\xb8\ +\x8a\xc5\xc9\x3c\xaf\x87\x16\xf6\x6d\xe8\x1b\xef\xd5\xcf\xf3\x07\ +\x1f\x09\x8d\x6e\x3d\xab\xba\x5a\x41\x46\x72\x8c\x4c\x7e\xca\xa4\ +\x4d\x5c\x21\x37\x93\x1a\xbf\xf5\x9d\x81\x6e\xeb\x4f\x46\x3a\x88\ +\x69\x96\x31\x1b\x2b\xed\x7c\x29\xbd\x5b\x90\x76\x0b\xeb\xe0\x6b\ +\x18\x11\x1f\xee\x06\x46\x41\x94\x73\x1c\xd4\x39\x21\xd3\xde\xb8\ +\x53\x3e\xcd\x9d\x7e\xc3\xc5\x66\x05\x25\x10\xf2\xdc\x8a\x33\x83\ +\x6b\x72\xab\x2b\x23\x84\xc8\x5b\xc8\xeb\x48\xde\xe8\x9d\xf8\xe9\ +\xaa\xd9\xf8\x24\x16\x8b\x79\xcc\x26\x8a\x2b\xb4\xfa\x01\x0a\xc9\ +\x4c\x73\xa2\x3b\xf4\xb2\x5b\x54\x17\x23\x09\x01\x06\x27\x33\xc0\ +\xd8\x54\xa6\x80\xa6\xcb\x78\xbc\x5a\x3f\x8f\xcb\xcb\xf7\x34\x9c\ +\x3e\xd5\x88\xf0\x5c\xf5\x7c\xa9\x31\x6a\xa5\xb6\xe4\x3a\x99\xd7\ +\x56\x97\xaf\x32\x71\xda\x5b\xd8\xf4\x6d\xe8\x64\xb6\x60\x17\x1a\ +\x24\x4f\x1f\xeb\xa4\x80\x07\x80\x89\x53\x8d\xc9\xab\xf1\x52\x6d\ +\xcf\x18\xb5\xd2\xf5\x15\xbc\xdd\x2d\x25\xdb\xe6\x7f\x15\x79\x5e\ +\x85\x3e\x69\xd3\xdb\x8a\xe8\x00\xa4\x54\x55\x6b\x79\x9b\x5b\x36\ +\x15\xc7\x86\xbc\xae\xbf\x0b\xbb\x3d\x32\x64\xbb\xd9\xe3\xc1\x87\ +\xf3\x24\xaf\xa3\xb9\x69\xa5\x34\x9d\x6e\xca\xe0\x1b\x33\x67\x21\ +\x8d\x55\x52\x0e\x4f\xad\xae\x7a\xa6\x1c\xe8\xf5\xe9\x6c\x9b\xfe\ +\x22\x59\x6e\x82\x15\x9f\x38\x36\x6c\x0b\x1a\x0c\xa3\xe4\x15\x5a\ +\xbe\x19\xb2\x38\x99\x8e\x62\x91\x5a\xfc\x2e\x4f\x02\x3a\x89\x21\ +\x01\xf3\xe8\xfb\x19\x15\xb6\x52\x1e\x75\x48\x4a\x75\x07\x5d\x7a\ +\x19\xf8\x70\x5e\x88\x96\x62\xe6\xa7\x0f\x98\xb2\xb6\x60\x59\xe8\ +\x3c\x90\x1f\x9a\xaf\xfa\x9a\xa4\x13\x70\xbd\xce\x6b\x63\xb5\x8e\ +\x01\xbb\xd5\x93\x0d\xce\x67\xd0\xa1\xf0\xa7\xf9\xe2\x60\xc8\x48\ +\xd6\x0f\x67\x38\x7d\xb8\xfa\x31\xaa\x56\x57\xbe\xd6\x3d\x04\x7e\ +\x68\x04\x3f\xed\xa2\x37\xf2\xeb\x11\x27\x27\xcc\x11\x58\xea\x69\ +\x1d\x26\x3f\xd9\x58\x43\x11\xeb\x1d\x64\xb6\x0e\xce\xd3\x96\x2a\ +\x7f\xe4\x82\xc4\x1c\x0f\x73\xb7\xab\xe8\x81\x07\x22\x78\x19\xd5\ +\x51\x42\xb7\x1e\x6d\xab\xba\x9b\x69\xfd\x76\x36\x9b\xc6\x7c\xaa\ +\x31\x85\x4d\x33\xf1\x99\x05\xe1\x33\x39\x92\x0b\xa5\xb4\x1f\x2a\ +\x17\xaf\xcc\x5d\xeb\xc4\xdf\x28\xb4\xb9\x88\x8d\x0f\xf2\x83\xf6\ +\xd3\x79\x5e\xe7\x38\xcb\x4c\x6f\xc0\x4e\xe2\x2e\x09\x04\x6c\x05\ +\xaf\x8c\xa0\x07\xfc\xdb\x80\xcd\xc3\x23\x90\xca\xa9\xae\xa3\xbe\ +\x4d\xd6\xc6\x7d\xc6\xab\xdc\x54\x4b\xfe\x10\xac\x0b\x3f\x9d\xd5\ +\x97\xb6\xaf\x68\xc5\xfd\x55\x00\x8c\x14\x71\x9f\xe0\x53\x82\x3c\ +\x1f\xfa\x0c\x9a\xbe\xa1\x4b\xcf\x39\x89\x1e\xac\x5e\xc1\x76\xd4\ +\xa9\x79\xdd\xfa\x48\x33\xf1\x7b\x17\xf3\xf8\xc3\x6f\xfe\x86\xc6\ +\xad\xf7\x4b\x03\x17\x53\x7f\x50\x7b\x47\x38\xc2\x11\x8e\x70\x84\ +\xef\x03\x86\xf3\x82\x23\x1c\xe1\x08\x47\xf8\xd3\x0d\x1f\x35\x2f\ +\x44\xd6\x42\x9b\x77\x82\x87\x69\x44\xf7\x93\x56\x08\x85\xd1\x36\ +\x3e\xff\x8f\x3f\x17\x2f\xaf\x3e\x88\x4f\xbd\x72\x11\x27\x27\x5a\ +\x38\x73\xdf\xc2\x3a\xfb\x58\xde\xac\x63\xb9\x5a\xd7\xe4\x9a\xa9\ +\xa9\x8c\x0c\x17\xc3\x1d\x62\xd2\xeb\x69\x6e\x62\x78\x0a\xa6\x3d\ +\x27\x4e\xdc\x16\xdc\x4c\x86\x9d\x6e\xa0\x67\x1a\x00\x0f\x7c\xcd\ +\xc5\xbe\x26\xf9\xdc\xe8\xe1\xc6\xac\x7d\x18\x4c\x93\x4b\xbf\x67\ +\x24\x34\x73\x07\x6c\x31\x7d\x43\x85\xfc\x79\x22\xa8\x36\xd3\xe0\ +\xb7\x7c\xbc\xf8\x59\xae\x23\xae\x37\xb1\xbf\xd9\xc4\x88\x9b\xf7\ +\xb7\x17\x43\xc2\x4a\x6d\x12\xcc\x67\xc2\x62\x57\xe9\x63\x3d\x8a\ +\xd5\x93\xe7\xb1\xff\xc6\x53\x71\x59\x2c\xb5\xff\x50\x62\xb9\x45\ +\x65\x80\xc5\x8b\x69\x6c\xd9\xd4\x9b\x2f\x62\x74\xef\x3c\x46\xaf\ +\xcc\x62\xfa\x69\x2d\xd6\x5e\x96\x8f\x67\x3b\xdf\xfc\xf1\x86\x1f\ +\x9b\x1a\x02\x6e\x42\xe1\x1f\x79\xdb\x61\xb2\x77\x5b\xa4\x1f\xad\ +\x5d\x86\x0b\xc4\x0f\x03\xfb\x7e\xbb\x1d\x05\xad\xce\x91\x4d\xb0\ +\xb3\x94\xa7\x57\x2a\x03\x4f\x1d\xa9\x5c\xfe\x35\xb9\xfc\x19\x9d\ +\x6a\xa1\x79\x21\x65\xe1\xbd\xea\x91\x1b\x16\x6c\xac\xf0\x64\xde\ +\xea\x72\x15\xbb\x6b\xda\x4b\xc1\xc6\x7a\xfb\x6d\x91\xc3\x91\x40\ +\x2b\xba\x6e\x1a\x83\x50\x00\x0f\xfd\xdc\x24\x2a\x11\x07\x57\x41\ +\x7e\xb8\xf9\xb7\xbc\x5a\xb1\xf3\xeb\x7e\xeb\x14\x5a\x64\x4d\xe7\ +\x5a\x6c\x2d\x98\x02\xb8\xf3\x39\x21\x7d\xcc\x36\xbb\x42\x16\x0c\ +\xa3\xaa\xdf\xb4\x03\x8d\x60\xab\x32\xad\x63\xcc\x53\x91\x34\x80\ +\x58\xed\x86\x0e\x9d\xb9\xf5\xe5\x16\xcc\x2f\x9e\xe9\xb6\x59\x3b\ +\x08\x94\x09\xec\x7c\x8b\x07\xce\x93\x23\xfb\x07\xc8\x71\xf3\xf8\ +\x8a\x57\xba\xb6\xe1\x34\xf0\x4a\xdf\xe9\xf3\xe6\x89\x22\x92\x67\ +\xb9\x3b\xdb\x2c\xfd\x4b\x0f\x5b\x8a\x24\x4d\x20\x1d\x0b\x53\xdf\ +\x1d\x28\x7d\xd1\xb4\x27\xbc\xcc\x02\xbd\xf4\xc9\x1b\x69\xc3\x74\ +\xa6\xc9\x43\x69\x96\x2b\x9d\x33\x6b\x9f\x33\x6c\x46\x62\x2a\x0f\ +\x40\xfa\x4d\x34\xdd\x2b\x9b\x4d\x5c\x9b\x1c\xd8\x62\x93\x87\xfd\ +\x67\x9e\x20\xe5\x95\x5d\x7e\xc2\xe9\xc9\x2e\xd6\xd7\x6b\xdf\x60\ +\xb9\xb9\xd9\xc6\xd5\x95\xce\x4b\x5e\xff\xa8\x0f\x36\x86\xaf\xa9\ +\x49\x80\x1a\x86\x1e\xba\x73\x04\x5f\x7a\xb2\xe8\x3c\x36\x15\xcc\ +\x72\x03\xca\x63\x20\x7d\x43\x02\xba\x02\x5b\x66\x31\x9d\xc5\x8e\ +\xa7\x4a\xe5\xf7\x7e\xa3\xfe\xb8\xdc\xc5\x98\x1d\x75\x6e\x02\x49\ +\x87\x0d\xf6\xac\xfb\xb4\xd9\x43\xc5\x8d\xa4\x28\x3d\x97\xa3\x20\ +\xa9\x96\x06\x7c\x5b\x26\xae\x88\x4c\x95\x72\xc6\x06\x28\x3f\xc5\ +\xa1\xfc\xf6\x6c\xba\xde\x9b\xfa\xa6\x7e\x9c\xed\x63\xb6\x70\xcf\ +\x8b\xd8\x48\xc6\xfd\xaa\x1b\xf9\xc5\x93\x74\x1a\x64\xf6\xd3\x85\ +\xd8\x27\x0a\xa7\x2a\xd7\x89\xac\x2d\x64\x52\x8d\xb3\x9e\x45\xbc\ +\x77\x13\xab\x6f\x5f\xc7\xcd\x37\xd6\xb1\x79\x7b\x14\xdb\x15\xb7\ +\xb6\xc9\x03\x4f\xec\x84\x40\x07\x67\x5e\xa1\x91\x83\x72\xe3\xdf\ +\x56\xe3\xe9\xea\x52\x76\x74\x4d\x49\x91\x0e\x7c\x13\xe5\xc1\xa1\ +\x2f\x6f\x03\xcb\x07\xe0\xdc\xcd\x7c\x51\xd7\x75\xa9\xfc\xfc\xab\ +\x6b\xda\xce\x7d\xc3\x5c\x07\xf7\x3d\xce\x4d\xf7\xe5\x8c\xb7\xbc\ +\x5d\x47\x80\x50\x5a\xce\x78\x71\x85\xab\x9e\x55\x3f\xed\x86\x50\ +\x93\x35\x02\x9d\x86\xbd\x49\xb1\xdb\xfa\xe9\xb4\x9b\xe5\x52\xe3\ +\xa2\xae\x2b\xe4\x2b\xfc\xd2\xc9\x22\x4e\xce\xcf\x62\xfe\xfe\xb7\ +\xe2\xf7\xfe\xf0\x4b\xbe\x01\xe7\xd7\x96\xb5\xb6\xe4\xd8\x19\x3f\ +\xc2\xc7\x1f\xf2\x06\xb0\x5a\x39\xbe\xf8\x85\x5f\x8d\xd7\x3f\x7d\ +\x3f\xaf\xe3\xfb\xfc\xbf\x2f\x37\xa5\xda\xd6\xe3\xb4\xe0\xb0\x69\ +\x0f\x63\xd9\x83\xdc\x5b\x4d\xb9\x37\x28\x1d\xaf\x43\xf3\x70\x6b\ +\x7b\x65\x47\x88\x71\x3d\xaf\x3b\x66\x15\x94\x7c\x70\x34\xd8\x78\ +\x9e\x0f\xe6\xd2\x8f\xf5\xe5\x26\xb0\xcf\x6d\x04\x3e\xb9\xac\x98\ +\x30\x20\x0d\x12\x7b\x23\x81\xcf\x9d\xe5\x01\x6a\x74\x52\x99\x19\ +\x3a\x9b\x45\xc6\xd3\x7c\xca\x15\x2e\x80\x31\xe9\xe2\x87\x8d\x64\ +\xba\x84\xcc\x98\xff\xcc\x71\x79\xf9\x76\x42\x4a\x9d\xd8\x75\xa3\ +\xf2\x83\x79\x42\x64\x3e\x3b\x89\xd9\xec\x3c\xe6\xf3\xfb\x31\x9b\ +\x28\xcc\xce\xfc\x2a\x36\xfe\x32\x97\x0b\x8f\xeb\x10\xdb\x75\xae\ +\x41\x5a\xe4\x90\x67\x70\xd6\x2b\x81\x58\xfa\x01\xc3\xfc\x0a\x09\ +\x29\x23\x5d\xde\x38\x6e\x90\xe9\xda\x18\xc0\x6b\x15\x57\xab\x67\ +\x2a\xbf\xc6\xe4\xed\x8d\xae\x71\x1a\x80\x9d\x34\x53\x90\x3e\xf1\ +\x21\x10\x37\xaf\x88\x26\x77\x5e\x5d\x3b\x95\x0f\xa5\x63\x30\x5b\ +\x11\x85\xc6\x6f\xa2\x36\x46\xb5\x23\xaf\x39\x67\x9c\x5c\xaf\x57\ +\x71\xb5\xbc\xf2\xc6\x9a\x62\x92\x65\x7f\x48\xdf\xdc\xcb\x84\xe8\ +\x87\x70\x18\x03\x9b\xed\xca\x5f\xca\xd6\x95\x3d\x07\x78\x24\xb1\ +\xac\x23\x92\xd9\x01\x12\x4b\x1d\x72\x5a\xe0\x49\x42\xf2\x9d\x87\ +\x73\x76\xbc\x51\xb4\x61\xce\x41\x72\xee\xc3\xc7\xff\x95\x67\x19\ +\x7a\x68\xca\x8e\x14\xa1\x6e\xcf\x59\x1c\x6c\x9b\x50\x56\xa9\x2b\ +\x7f\xd2\x6e\x62\x49\xb0\xe7\x7c\x2a\xbd\xb0\xbd\x21\x91\xb0\xe9\ +\xca\xcf\xf2\x86\x4b\x97\x38\xca\x7c\xf8\xfa\xe0\xc4\xa5\x53\x98\ +\xca\x4e\x6e\x02\xac\x76\x5e\xa4\x2d\x98\x03\x59\x2b\x43\xcb\x8f\ +\xb2\x5a\x0f\x5e\x1f\xe7\x8d\x1c\xb4\x87\x5f\xf3\xa8\x79\x73\x9e\ +\xeb\xf9\x4a\x6e\xcc\xf9\x88\x0a\x28\xc9\xe2\x56\x39\xa1\xeb\x5c\ +\xc9\x36\x4e\xae\xb1\x27\xcd\xb9\x29\x74\x1b\xdc\x03\xec\x3e\xe9\ +\x3b\x4e\xeb\x2e\x07\x69\xa8\xfb\xf1\x6c\xef\x1f\x14\xfa\x3f\xac\ +\x35\x96\x6a\x49\x21\xc8\x71\xc2\x7d\x76\x98\x00\x1b\x84\x74\xe6\ +\x40\xd4\xa0\x44\x25\x2b\x0d\xe5\x33\x5c\x07\x34\x5f\x28\x95\xb9\ +\xae\x3b\x90\xfc\x51\x7f\x99\xb2\x89\xa6\xb1\x83\xb9\xe8\x84\xf5\ +\x8f\xea\x14\x05\xe6\xd9\x24\xf5\xab\xe2\x59\x37\xd6\x79\x7e\x23\ +\xa7\xf9\xdf\xd4\x15\xf5\xac\xb9\x2b\x9b\x6a\x9e\x4f\x01\x99\xb4\ +\x07\xb7\x6d\xae\x0e\x0f\xf9\xdd\xc1\x2a\x75\x2a\x75\x45\x86\x61\ +\x1e\x32\xe2\x49\xe6\xb1\x29\x77\x40\x79\xe1\xf5\x39\x1c\xe4\x55\ +\x49\x08\xd4\x3b\xf1\xee\x87\x48\xfe\xea\x50\x8a\x7c\x5a\xd5\xb9\ +\xfd\xb3\x5b\x3b\x64\xbf\xeb\x6d\xbb\x16\x07\x71\x20\xfb\x30\x4c\ +\xb8\xd6\x78\x01\x92\x37\x38\x5a\x55\x87\x4a\x8b\x37\xa4\x6c\xaf\ +\xbd\x3c\x3b\x99\xc5\xcd\xf8\xdb\xf1\x87\xdf\xf8\x7d\xab\x71\x59\ +\xb9\xdb\xf2\x11\x8e\x70\x84\x23\x1c\xe1\x7b\x85\xba\x7a\x1d\xe1\ +\x08\x47\x38\xc2\x8f\x19\x3c\x21\x4c\x72\x30\x37\x3d\xc4\xdf\x2b\ +\x7c\xc8\x7c\xf1\x85\xb9\xb4\x21\x99\x07\x22\x45\x2e\x77\xcf\xe3\ +\x57\x7f\xee\xe7\xe2\xd5\xc5\x55\xbc\x72\x76\x5e\x93\x55\x16\x5a\ +\x5a\xcc\x68\x21\xb0\x5a\x73\x03\x7b\xad\x09\xea\xd6\x8b\x05\xcf\ +\xaf\xc7\x3c\x1d\x52\x13\x56\xfb\x50\x53\x57\x4d\xd8\x3d\x59\x86\ +\x44\x04\x3d\xc4\xd6\xd1\xd1\x13\x70\x78\x7d\x48\x61\x87\x06\x04\ +\xc0\xc2\x41\x79\xb3\x99\xa6\x80\xc8\xf9\x73\x68\xa1\x41\xd1\x43\ +\x3b\x3d\x5d\x79\xf1\x5e\xfb\xa9\x42\xbb\xa1\x0a\x34\x1b\xac\x7b\ +\x56\x5a\x00\x5d\x6f\x62\x77\xb5\xc9\xd7\x93\x91\x2f\xeb\x39\xa1\ +\xa6\xd6\x6c\x82\xcd\x83\x60\x67\xc8\x0b\xd4\x71\xac\xdf\x5b\xc6\ +\xf5\x17\xae\xe3\xea\xea\x3a\x4e\x76\xaa\x4b\xf1\xf8\xd7\x0f\x36\ +\xd2\xda\xc6\x1a\x25\x01\xf3\xa4\xdc\xca\x4f\x3a\x4d\x63\xb2\xd0\ +\x02\xee\xe1\x28\x26\x8f\x64\xf2\xde\x3a\x26\x53\x59\x97\xcf\x2e\ +\x35\xf5\xdb\x7c\xa8\x43\xde\xd0\x25\x5f\x02\x90\x8b\x8d\xa4\x12\ +\x6e\xf7\x87\xc6\xcf\x0b\x64\x8b\x25\xa4\xb5\xb2\xa7\xc8\x78\x2d\ +\x5f\xae\x45\xae\xd8\x34\x13\x83\xa7\x85\x5c\x25\xe3\x18\x9f\x8e\ +\x62\x76\x31\x89\x58\xa8\x6f\x68\x11\x6c\x8b\x2c\x30\x59\x44\x5e\ +\xaf\xfd\xfa\x45\x5e\xcf\xe9\x35\x4f\x65\x33\x20\xb3\xba\x14\xec\ +\xb1\x30\x7a\x9d\x2e\x6d\xc5\xc7\x6d\x96\x2c\x1f\xa4\xea\xfe\x29\ +\x9a\x1b\xe5\xcb\xe7\xea\x9b\xfc\xbf\xdd\x26\xfb\x05\x2e\x4c\xb4\ +\x18\x9f\x6a\x81\xc5\x2b\x58\xb2\xee\x12\x12\x5b\x0b\xcb\xf9\xc9\ +\x68\x81\x22\x30\xd4\xd7\x7c\x7f\xc0\x79\xc9\xa4\x58\x3c\xa5\xc6\ +\x2b\xfd\x78\xda\x0d\xae\x6f\x62\x54\xd0\x2a\x5b\xc9\x32\x2f\xe8\ +\x4c\x80\xac\x6e\xf2\x58\x2e\x9e\xc2\xf0\x89\xb5\x4e\x57\x5f\xeb\ +\x73\xd3\x05\x7d\xeb\x96\xbd\x46\x97\xcd\xa4\xb1\x91\x3c\x74\xb9\ +\x89\xd8\xd9\xe2\xe6\xad\x75\x40\xc5\x43\x4f\x64\x9f\x1e\x04\x9d\ +\xc1\xf9\x11\x97\xa0\xe5\xcf\x4d\x14\xc5\xcc\x6b\x36\x32\x0f\x74\ +\x92\x87\x0d\x3f\x9d\xa6\xf3\x09\x35\x0d\x10\xb1\xbd\x61\x73\x33\ +\x5f\xcf\xe3\x3c\x6d\x03\x7b\x85\x65\xdb\x9b\x6a\x15\x17\xc3\xf6\ +\xba\x3a\x61\x93\x7b\x3a\xd3\xb9\x29\x7a\x04\xc6\xce\x34\x76\x4b\ +\xa5\x5b\xab\x07\x6e\x47\xb1\x55\x50\x16\xb1\xd2\xf9\xb9\xbc\xd9\ +\xe6\x13\x15\x32\x95\x76\xe9\x07\xb4\x5a\x6b\xf5\x21\xdc\xc5\x23\ +\x9d\x3d\x49\x90\x8a\xcc\x08\x64\x45\x65\xe0\xe6\x82\x37\x91\xe9\ +\xc7\x2a\x1f\x27\x93\xa8\x98\x08\x6f\xf7\x93\x58\x9f\x4a\xf3\x7c\ +\x1c\xf3\x9d\x7c\xc3\x87\xd5\x26\x26\x57\x3a\x07\x36\xaa\xc1\xea\ +\xd0\xae\x0b\xec\x96\xfd\xce\x8b\x22\xf8\xcf\x30\xfa\xf4\x0b\xa0\ +\x74\x45\x14\xee\xc1\xf6\xcc\xce\xd2\x1a\xe4\xb8\x5f\xb3\x2a\xbc\ +\x9f\xa9\x1f\x9c\x6f\x62\xf6\x92\xce\xd5\x47\xdb\xb8\xb8\x3f\x8d\ +\xa9\xce\xd5\xac\xcb\xb9\xcf\x4b\xc3\x5e\xed\x35\xe2\x7f\x7c\xc6\ +\x3a\xad\x67\x31\x55\xd8\xc5\x3c\xb3\xe6\xf1\xc0\xab\xcb\x58\xbd\ +\xf9\x24\x9e\x7d\x65\x13\xd7\xdf\xe0\x7c\x53\x29\xd6\x12\x59\xee\ +\xac\x4c\x80\x4d\x36\x28\x59\x8a\xa9\x03\x61\x0e\xdc\x5c\x7a\x96\ +\x4f\xa9\x31\xa6\xd3\xc7\x7c\x03\xd3\xca\x0a\xe8\x01\x65\xff\x36\ +\xd0\xc2\x43\x41\x52\x1c\x07\x09\xc9\x27\x33\x74\x1e\x5c\xb7\x78\ +\x55\x30\xac\x7c\xf5\xa6\xa0\xcc\x70\xb3\x8c\x7e\xd3\xfa\x64\x67\ +\xb9\x88\x16\xcf\x5a\xee\xa4\x1d\xd0\xdb\xaa\x21\x3a\xb0\x96\xed\ +\x01\x1e\xad\xd2\x8f\xcd\x5a\xbe\x6c\xe3\x6a\x79\xa3\x72\xab\x0f\ +\xd1\xe7\x17\xf3\xf8\x99\xcf\xbc\x1c\xdb\x27\x4f\xe3\x0b\xff\xf8\ +\x97\x62\xcd\x75\x09\x3f\xbb\xac\x14\x21\x5e\xb1\x23\x7c\x1c\xc1\ +\xbd\xc0\xc0\xa8\x39\xd5\x69\xf3\xeb\xbf\xf2\x4f\x63\xfa\xca\x93\ +\x78\xe5\x25\x2e\xe4\xed\x5c\xcb\x7e\xe2\xf1\x5a\xd0\xb7\xf1\x00\ +\x18\x33\x68\x70\x81\xfb\x01\xb8\x3a\x04\xfa\xf4\xc3\x2e\x6e\xad\ +\xa6\x03\xd6\x59\x0c\x36\xdd\xc3\x90\x06\x88\xfb\x46\xa9\x6d\xa5\ +\xb4\xf1\xfc\xaa\x47\xc6\x39\xe2\x3e\xde\x4e\x5d\x60\x76\x5e\x21\ +\x7c\x70\xc8\x14\x43\xb0\x5c\x76\xf3\xfc\xc2\xa6\x74\xc8\x47\x73\ +\x08\x8f\xad\xe6\x49\x4f\xc2\x74\xa5\x2f\x17\x12\x9f\x77\x69\xc4\ +\xa8\xdc\x15\x14\x9f\xc0\xf8\xe1\xeb\x07\xd7\x42\xd5\xff\x84\x57\ +\xb2\x9d\xc7\xe9\xe2\x95\x38\x3f\xff\x4c\x5c\xdc\xfb\xcb\xf1\xe0\ +\xc1\xcf\xc6\xbd\x8b\x9f\x55\xfc\xb3\x31\x9d\x3f\xd2\x5c\x86\x96\ +\x92\x0d\x2e\x33\xb6\xf7\x22\xb4\xba\x49\x28\xbf\x6e\x29\x13\x1d\ +\x86\x06\x94\x89\x63\xe2\x8c\x33\xce\x2f\x37\x97\x71\xfd\xec\x49\ +\xec\x76\x37\xe2\x30\xbf\x63\xec\xd5\xb8\x5c\x06\x86\x36\x5a\x3c\ +\x43\xa3\xea\x58\xd1\xb6\xf9\xd3\xa0\x51\xee\x27\x60\x74\xd4\x2e\ +\x6d\x9e\xd8\xf1\x15\xec\x5b\x45\x5a\xbb\xd0\x26\xbb\xdd\xa6\xde\ +\x46\xb0\x52\x3b\xf1\xbf\xc9\x6b\xe5\x83\x0d\x55\x97\x0e\xd4\x8b\ +\xc7\x6d\x3e\xb2\x4b\x3d\x72\xa9\x37\xaf\xfa\x26\x71\xf4\x1c\xc8\ +\x07\xfb\x22\x98\x43\x65\x96\xf9\x41\x37\xe3\x05\x8a\xb7\x60\xc4\ +\xc7\x3a\xcd\x66\x97\xb3\x7c\x81\xce\x3e\xd8\x34\xac\x25\xfd\xf4\ +\x53\x71\xfa\x84\xe3\xa2\x15\x72\x56\xd3\x68\x54\x89\x95\xf7\x32\ +\xe4\x57\xf5\xd5\xf9\x09\xa3\xff\x64\xba\x3c\x3f\x15\x67\x1e\xd8\ +\xd5\xbd\x8e\x42\x8d\xee\x02\xe9\x2d\x48\xec\x3e\xda\x7d\x12\x1a\ +\x06\xdc\x36\xae\xa6\x94\xa7\xcd\x04\xc7\x8b\x1a\xca\x7b\x6e\x1e\ +\xb2\x3c\x92\x9b\x56\xa8\xf2\x3b\x6f\xf9\x4c\x3b\x73\x7e\xfb\xc9\ +\x50\x8d\x4b\xe4\x89\x3e\xca\xd9\x37\x6c\xc9\x40\xad\x60\x94\x34\ +\x1c\x2b\x7a\x0b\xe8\x17\x8c\x6f\x08\x32\xbc\xa0\x02\x54\xff\x33\ +\xa9\xe0\xa7\xea\x87\x8a\xf4\x2f\x21\x35\x4b\x9c\x2c\x68\x11\xcd\ +\x5f\x34\x16\xad\xd7\x5a\x5b\xb0\x19\xd5\xe5\x4f\x39\xc0\x65\x0d\ +\x3c\xb4\xd3\xf1\xf1\x0b\x99\xf4\xa1\x2d\x04\x6e\x97\x43\xf1\x96\ +\xc6\xa2\x94\x67\x3c\x69\xc6\x14\xff\x17\x1f\x7d\x03\x07\x9d\x21\ +\xe5\x14\xd6\x5a\x58\x8e\x4a\x75\x1f\x1b\x85\xe5\x7a\x17\x57\x5a\ +\x3f\x5e\xf1\xa3\x2f\xd5\xf3\x9a\xb5\x10\x63\xaa\x0a\x8b\x4e\xe5\ +\x6e\xa0\x0e\x00\xbc\x73\x7e\xf6\x25\xfd\x36\xed\xfc\x87\x29\x7a\ +\xb0\x04\x15\x61\x57\xcf\x6d\x90\x91\x17\x52\x9a\xc1\x01\x5f\x86\ +\x36\x2c\xe8\xc1\x7e\x32\x6b\x91\x1e\xc6\xed\x47\xea\x03\xe9\x6b\ +\x61\x1d\xdc\xe7\xe8\x67\x9c\x37\x30\xbb\xfa\x29\x79\x1e\x92\xe7\ +\xc6\x13\x25\x9d\x2c\x27\x91\xc2\x82\x01\x99\xd9\xfa\x80\x05\xf7\ +\xd2\x2e\x34\x70\xdd\x69\x4c\xa1\xbb\x9c\x5f\xac\xe3\x1f\xfd\xea\ +\xcf\x67\x85\xa8\xee\xb3\x5e\x9a\xd7\x0d\x1f\xe1\x08\x47\x38\xc2\ +\x11\xbe\x57\xc8\xf9\xc0\x11\x8e\x70\x84\x23\x7c\x1c\x81\x99\xe1\ +\xf7\x30\xcf\xf3\xfc\x32\xc9\x84\x0f\x49\xeb\x09\xe7\x70\xd6\xd9\ +\x29\x0e\x12\x20\xd7\xa2\x79\x37\x9a\xc7\xb3\xcf\xff\x4e\xbc\xa4\ +\x45\xcc\x7e\xa4\xc5\x81\x17\x1f\xd2\xd3\x44\x76\xb3\x5b\xe6\x2f\ +\xec\x98\x9c\xfa\xd7\x6a\xcc\x50\x53\xe6\x49\x32\xb4\x50\xd2\x85\ +\x21\x3d\x59\x26\x88\x64\x14\x2e\x9e\x03\x0b\xbb\x26\x1b\xca\x01\ +\x30\xcc\x9a\xc0\x03\x2c\xe4\xbd\x10\xe1\x86\x28\x1b\x5b\x99\xfd\ +\x77\x84\xa6\x02\x66\xe1\x86\xd9\xb4\xcf\xc2\x48\x84\x6f\xdc\xab\ +\xa4\xf8\x82\x40\x8a\xdc\x47\x62\x33\x68\xc7\xff\x3f\xf9\xd5\x85\ +\x3c\x9d\x96\x65\xe6\x03\xb0\x1e\xa8\x35\x41\x07\x98\x35\xc8\xd6\ +\x7e\xa7\xc5\xe0\x78\x13\x97\xef\x8d\x63\xf7\x27\x97\x31\xfe\xa3\ +\x67\x5e\x68\x4d\xa5\xc5\x13\x2d\x58\xe3\x36\x32\x8b\x95\xa4\x95\ +\x9a\x3c\x46\x2b\xc5\x36\xb1\x9f\xef\x62\xfe\xea\x32\xe6\x2f\xcb\ +\xc5\x73\x36\x87\xb4\xe0\x65\xe3\x8f\xa7\x16\x9c\x4e\x75\xef\x0a\ +\xa0\x5e\x72\x61\x64\x2b\x07\x95\x92\x1e\xa5\xd6\x00\x3a\x47\x13\ +\x2c\xbb\xc5\xeb\x40\xf6\x28\xe7\x7e\xa3\x95\xca\x95\x94\x14\x76\ +\x3b\xd5\x14\x95\x44\xd0\x22\x7a\x37\x97\x47\x17\x5a\xea\xf0\x24\ +\x98\x17\x9a\x5e\xca\xdb\x24\x8b\x60\x9e\x26\xe2\x89\x1d\x36\x66\ +\x69\x83\xb6\x80\x26\xdf\x46\x5b\xd9\x6d\x50\x24\x3c\x1d\x87\x71\ +\xc7\xdc\x2f\x90\x65\x4b\xd0\x1f\x97\x57\x9b\xda\xb4\x13\x17\xb7\ +\xa4\x37\x99\xcc\x62\x7a\x3a\xe5\x8d\x9a\x4e\xd9\x92\xfa\x50\x81\ +\xfe\x07\xdf\x41\x87\xce\x3e\x60\xe3\x99\x4b\xfb\x41\xa9\x69\x7e\ +\x26\xab\x72\x70\xf3\x80\x4d\x31\xc0\x76\xbc\xd0\x06\x67\xf0\x8d\ +\x0b\xd3\xd4\x47\xe6\x65\xfb\x4d\xee\x34\x6a\x37\x8b\x45\x37\x1b\ +\x8d\x1e\x04\xa7\xad\x40\x3f\x75\x1d\x37\x1b\xd4\xb5\x82\x7d\x31\ +\xaf\xfc\xd0\xb7\x6d\xe2\x79\x06\x24\xcc\x0d\x01\x74\xa4\x64\x1d\ +\x64\x19\xb8\xd9\x32\x90\x61\x17\x5d\x63\x7c\x04\xbb\xa0\x9d\xbc\ +\x85\x7e\x13\xaf\xf2\x55\x1d\x6d\x97\x3a\x6f\xf8\xbf\x39\xce\x53\ +\x58\x94\x5c\xba\x6d\xc3\x02\x1b\x04\x3e\x19\xc7\x3f\x1d\x9c\x07\ +\x74\xc3\x4a\x3f\x95\xdf\x3c\x51\xa5\x73\x74\xca\x7f\xf4\xa9\x1f\ +\xd2\xbe\x7e\xf2\x6e\xaf\xb8\xc6\x22\x9e\xe6\xb9\xe6\x7f\xb9\xd6\ +\xca\xd2\xff\x45\xe3\xb3\x43\xa1\xa0\x23\x7a\xf0\x8d\x41\xda\x93\ +\x7c\x0a\x20\x9b\x2a\x6e\x79\xbc\x91\x6d\x3f\xd9\xa4\xb2\xf8\x7f\ +\x1b\x35\x34\xee\x09\xa9\xe5\x73\x99\xa7\xd2\x36\x67\xe3\x98\xb2\ +\x79\xc5\x4d\x25\xa5\x1b\xf3\xd4\xd7\xb2\xce\x1d\x05\xff\x72\xd9\ +\x39\x10\x07\x57\xc6\xc5\x46\x0c\xf9\x22\x94\x9e\x61\x40\xa3\x5c\ +\x09\x0e\xcf\x21\x05\x5e\x1d\xe6\xfa\x51\xe7\x9f\xec\x62\xfa\x68\ +\x1f\x93\x47\xcb\x38\xd1\x58\x12\x0f\xd7\xf2\x73\x14\xab\xd3\x6b\ +\x25\x5f\xc6\x5a\x6d\x15\x37\xd7\x0a\xaa\xbc\xd5\x2a\x26\xdb\x71\ +\x4c\x54\xaf\xcf\xf7\x1a\xa9\x28\xc7\x68\x1a\xfb\x67\x97\x11\x5f\ +\x79\x37\x9e\x7f\xf1\x32\x2e\xbf\xfc\x41\x2c\x9f\x30\x26\x66\xf3\ +\xb4\x1b\xab\xe4\x4b\xb3\xf5\x85\xa0\x7e\x07\x1e\xa3\x63\x9c\x0a\ +\x1e\x3f\xd7\xdb\xd8\x5e\xca\x16\x1b\xe1\x66\xfa\xdb\xba\x61\x41\ +\x47\x08\x86\xb4\xa0\xf2\xea\xb8\x07\x79\x67\xc4\xe7\xac\xc7\x2a\ +\xb5\xa3\x2b\x99\x1b\x2c\x8c\xb8\x16\xa6\x1f\x2e\x43\x61\xf8\x1c\ +\xcc\xe0\x6b\x4e\xc6\x0b\xf3\x84\x4c\x07\xd6\x6d\x64\x12\x15\x35\ +\x81\x1f\x4e\xea\x8e\x80\x0f\x5b\x0d\x1f\xbc\x3a\x76\x1b\x4b\x5d\ +\x77\xd9\xb8\xe0\xb6\xe1\xb3\xab\xe7\xf1\x17\x1e\x9e\xc4\x23\x35\ +\xd9\xea\x77\xbf\x14\x6f\xbf\xf7\xd8\xe9\xfd\x2b\xf1\x2a\x4b\xe7\ +\x4b\xc5\x8f\xf0\x71\x85\x6c\xeb\xf5\x66\x1a\x7f\xef\x17\xff\x4e\ +\xbc\xfe\x93\x0f\xf8\x4d\x40\x6e\x9c\x66\x8f\x70\x9f\xe4\xe6\xa0\ +\x4f\x7c\x03\x6d\x3b\x6c\x57\xd1\xad\xb9\x05\xc3\xbe\x95\xe7\x9b\ +\x38\x20\xc7\x07\x41\x17\x14\x4e\x7d\x87\x4a\x63\xaa\x91\x06\xfc\ +\xcb\xdc\x60\xfb\x07\x2d\x05\xb8\xb3\x59\xeb\x9a\x5e\xe7\x48\xd3\ +\xf9\x30\x40\xd6\xe4\x39\x16\x38\xb7\xe2\x34\xe0\x2c\x3c\x04\x34\ +\x7c\x5a\x6a\x5c\xcd\xf3\x52\xbc\x96\x5e\xe7\xca\xa1\xbf\x05\xe8\ +\x14\x99\x50\x76\x7d\x10\x38\xad\xce\x26\x25\xe6\x15\x8f\xf3\xd9\ +\x69\x5c\x9c\xbd\x1c\xe7\x67\x9f\x10\xfe\x8b\x71\x7a\xf6\xd9\x98\ +\x9f\x7c\x26\x16\xa7\x9f\x89\xb3\xb3\x9f\x8c\x8b\x7b\xff\x5e\x2c\ +\x16\x2f\x2b\x0d\xe3\x36\x69\xd3\x7e\xe6\xed\xc3\x0b\xd0\xe4\xc6\ +\xe6\x14\x3e\x88\x00\xb4\xaf\xa2\x35\xde\x01\x49\xa9\xed\x25\xa0\ +\x7e\xaf\xae\x9e\x68\xe8\x7d\x2a\x9a\x27\xd4\x36\x31\xe5\x72\x46\ +\x2a\x29\xa0\xeb\xf4\x15\x32\x53\xc2\x80\x27\xe8\x8a\xae\x7c\xda\ +\x75\x20\x11\x92\xb2\xe2\x02\x55\xbc\x25\x34\xbf\xa3\x1c\xbc\xb9\ +\x21\x2a\x6b\x95\x71\x12\xac\x31\x9a\x71\xda\x3f\xa6\xe3\x11\x21\ +\x46\xab\xac\x63\xec\x82\xd4\xe3\xba\xeb\x80\xd9\xd2\x4a\xae\xac\ +\x70\x48\x86\xc1\x5c\xd9\xed\xe6\xdb\xce\x11\x95\x4a\x0f\xad\x03\ +\x14\xba\xc3\x0f\x82\xd6\xf7\x33\xd0\xd7\xe1\xa5\x4f\xc4\x7b\x3f\ +\x92\x3f\xe2\x55\xc6\x58\x12\x9d\xf2\x89\xc2\xd4\x9e\xf8\x63\xbd\ +\xdc\x20\xe9\x9e\x3a\x13\x3f\x21\xd3\x49\x43\x74\xb3\x97\xf1\xf4\ +\xb5\x7c\xb2\x2e\xb8\xd2\xda\x26\x08\x9c\x3c\xa4\xd6\x43\x60\x84\ +\x82\xa9\x5b\x1f\x0b\xf3\xfc\x45\xa5\xf4\x01\xd3\x9c\xdf\xd0\xc9\ +\xd1\xa7\xd9\x16\xb6\x7e\xea\x0d\x03\x65\x74\x90\x16\xaf\xed\x14\ +\x52\xdb\x2a\xd0\xce\x9c\x7b\x3e\xd7\x85\x49\xcb\x87\x74\x95\x07\ +\x81\x5e\x00\xce\x6b\x77\x9e\x9b\xe8\x74\x00\xbb\x83\xd2\xe9\x98\ +\xca\x4f\x64\xa6\x81\x48\x7e\x4b\x4d\xff\x68\x74\xce\xc9\x32\x3e\ +\x56\x39\xa7\xb3\x9c\x4b\xb1\xdc\xdc\xac\x84\x21\xca\xac\xcd\x0c\ +\xd3\x76\x38\x2d\x38\x2b\x18\xee\x80\x28\x67\x82\x76\x8e\x24\xc0\ +\xa3\xec\x2d\x15\x71\x20\x63\x1d\x98\xcc\xf4\xad\x4e\x73\xc8\x22\ +\x85\xd6\x43\x32\xba\xf3\x0f\xbc\xc6\xb1\xd2\x1c\x71\xb9\xde\xc7\ +\xb5\xd6\x08\xd7\x1a\x47\xd7\xc2\x3c\x99\xc6\x6b\xc0\x73\x9d\x96\ +\x76\x5b\x5e\x1c\x39\xdf\x86\xf9\xf7\x34\x2b\xbd\x56\x97\xc2\x5d\ +\x59\xda\x51\x7a\x22\xf0\x05\xb0\x2f\x3e\x67\x81\xb4\xd2\x91\x1d\ +\x48\x7e\x10\xa7\xae\x86\x76\x0b\x0b\x41\x75\xb6\x69\x07\x87\x01\ +\xf3\x0e\x70\xae\x3a\x78\x49\x20\x0b\x6e\xf7\xe4\xd6\x37\x63\x86\ +\xec\x14\xc9\x83\xd9\xe5\x95\xb8\x67\xf4\x64\x0f\x24\x50\xba\xe2\ +\x3b\xbd\x0e\xf3\xc5\x2c\x2e\x1e\xce\xe2\x8f\xbe\xf9\x39\x8d\x59\ +\x37\xb2\x45\x1e\x2d\xf9\x0b\x46\x8e\x70\x84\x23\x1c\xe1\x08\xdf\ +\x03\x68\x68\x3f\xc2\x11\x8e\x70\x84\x8f\x29\x30\xcf\x63\x42\x78\ +\x07\x78\xa2\x78\x0b\x3c\x77\x4c\xf2\x10\x6e\x31\x3d\x7d\xbc\x6b\ +\x0e\xc9\x24\xf6\x16\xff\xab\xbf\xf9\x3b\xf1\xd2\xf5\x32\x3e\xfd\ +\xea\xcb\x31\x9d\xe7\x90\xc9\x52\x03\x9b\xd7\xcb\x5d\xdc\x2c\x79\ +\x32\x2d\x5f\x79\xe8\x89\x75\xfd\x1a\x31\xcd\x30\x25\xce\x34\x5e\ +\x68\xe5\xd7\x8b\x5d\xcb\xc8\xcf\x01\x79\xf2\x3b\xba\x23\x12\x71\ +\xe0\x93\x06\x52\x0f\xda\x37\x5d\x94\xa5\x6f\xc0\x68\x71\x42\xc1\ +\xf8\x7c\x28\x90\xae\xc1\x90\x36\xc8\xae\xdc\xb5\x1f\xfc\x97\x40\ +\x27\x97\x3d\x9b\xde\xfb\x26\x2f\x9b\x69\x7b\xfe\x03\x4a\x0b\x22\ +\x2f\x3a\x9d\x1d\xce\x80\x81\xf4\xd5\x8b\x37\x19\x69\xec\x46\xe3\ +\xeb\x68\xb3\x8e\xe7\x5f\x79\x1a\x93\x7f\xfd\x24\xc6\x1f\x3c\x16\ +\x7f\x19\x1b\x6e\x52\x20\x57\x4c\x39\xb0\x7d\x26\x9b\x1c\x57\x31\ +\x5a\x5e\xc5\xf4\xe6\x26\x36\xa7\xd7\x31\x7d\x29\xe2\xec\x8d\x4d\ +\x2c\x5e\x1b\xe7\x93\x6a\x27\xbb\x18\xcd\xf8\x25\x73\x3a\xec\xa3\ +\x92\x72\xb3\x9e\xfc\x5a\xc8\x83\x00\x05\x0a\x57\xf1\x4c\x55\x20\ +\x5e\xa7\x0f\x54\xa4\x5b\xa0\x75\x82\xe4\xb1\x81\xb6\xe5\x21\x16\ +\x6f\x5a\x88\xb1\x53\x5f\xa0\x2d\xc4\xdf\xcd\x54\x87\x67\xfb\x98\ +\x9c\x6b\xc9\xbe\x10\x6f\xac\x72\xbb\xed\x01\x16\x82\x11\xeb\x1b\ +\x95\x74\xc5\xd3\x19\xd9\x6f\xec\x4c\x8f\xba\x30\x84\xdb\x71\x43\ +\x95\x95\x4d\x15\x36\x37\xd6\x97\x9b\xd8\x5c\xb1\x79\xd3\xfa\x2c\ +\x9b\x69\x5a\x8c\x9f\xcd\x62\xba\x98\xc4\x78\x32\xe1\x1e\x44\xda\ +\xaa\x7e\xd6\xfa\x95\x49\x7f\x4c\x38\x14\x72\x20\x1f\x9f\x27\x0a\ +\x20\x1f\xb9\xa9\xb4\xa5\x2f\xb0\x7c\x55\x1c\x43\xf4\x23\xf7\x27\ +\x95\x9f\xd7\xeb\xf9\x49\x2d\xf2\xcd\x9b\x1c\x96\x97\xde\xc1\x86\ +\x12\x37\x5b\x58\x79\x42\x17\x76\xa0\xee\x08\x8d\x36\xc6\x66\xea\ +\xe5\xf9\x03\x3f\xe9\xe4\x0b\xf3\xf3\xcc\xc6\x67\xf3\x95\x27\x30\ +\x91\x09\xb3\xf1\x65\xda\xe9\x07\x79\x29\xe0\xc7\x30\xcf\x66\xbf\ +\xd3\x73\x6d\x88\xae\x9a\x71\xc9\x9d\xb7\xaa\x41\x3a\x6d\xc3\xcd\ +\xaa\x6b\xd5\xcd\xcd\x2a\xc6\x60\x6b\x92\xa4\xec\xf1\x41\xa9\xf2\ +\xe9\x6e\xaa\x15\x76\x1c\x59\xe9\xd9\x57\x45\x69\xcf\xf1\x78\xea\ +\x36\xe0\x9e\x8a\xfd\x9b\x4b\x5f\xfd\xac\x6d\xc8\x71\x13\xf8\xe6\ +\xf9\x4a\xfd\x4c\x7d\x6c\x8b\x8f\xfa\x38\x01\x6d\x84\x13\x87\xd0\ +\x9d\xf3\xd6\x91\x8a\x02\x64\x03\x92\xf1\xff\x6c\x7e\xa2\x89\xf1\ +\x46\xfd\x9e\xbc\x49\xe8\x1b\xd0\xca\x97\x87\x34\x9d\xbd\xfa\x59\ +\x9c\x8f\x82\x87\x48\xc9\x8c\xf3\x71\x76\x25\x1f\xd4\x55\x18\x26\ +\x3d\x1e\xd4\x98\x50\x35\x62\xda\x94\x32\x4e\x3f\x89\xf8\x70\x0b\ +\x06\x3c\x77\xc6\x04\xd2\xaa\x76\x3a\xa9\x31\xb6\x2c\x18\xc5\x66\ +\xb2\x8b\xd5\xe9\x3a\x56\x2f\xab\x6e\x5e\xdf\xc6\xe4\xf5\x7d\x8c\ +\x1f\x6c\x62\x7d\xa2\x51\x06\xb9\x14\x57\xfa\xc4\x72\x13\xbb\x6b\ +\x9d\x48\xab\x1b\xd1\x8a\xaf\xaf\xfc\x2a\x34\x15\x27\x26\x6c\xc8\ +\x3d\xb9\x89\xd1\x1f\xbc\x1f\xcf\x7f\xeb\x32\x9e\x7f\xfe\x83\x78\ +\xfe\xee\x2a\xb6\x37\x34\xbc\x33\xe4\xe0\x23\xed\x67\x3a\x23\x89\ +\x81\x86\x05\x26\x25\xa0\x27\x51\x47\xfc\xa2\x78\xc3\xf9\xab\xeb\ +\xcb\x61\x39\x09\xcd\xe2\xdd\xe0\x3a\xbb\x0b\xc4\x47\x94\xe2\x8a\ +\x18\x2b\x30\x56\x09\x77\x37\xe6\x9c\x0f\x5f\x1d\xdc\xd7\xc0\x8a\ +\x0d\xf3\x46\xde\x45\x04\x65\x0f\x16\x5a\x89\x33\x74\xa0\x48\x1f\ +\xaf\x36\xaa\x81\x84\x0f\x23\xfd\x66\xa3\xab\x80\x06\xb0\xe7\x37\ +\xd7\xbe\x0e\xcc\xd4\x97\x17\xf3\x79\xfc\x85\x4f\x3c\x88\xcd\xe3\ +\xf7\xe3\x9d\x2f\xfe\x21\x83\x99\xdc\x69\x75\x3d\x84\x83\xdc\x8e\ +\xf0\x31\x82\xd6\x2f\x79\x7a\xf6\xd9\xd3\xf7\xe2\xfd\xdd\xd7\xe3\ +\xde\x4b\x27\x6a\x47\x8d\x11\x02\xfa\x12\x3d\x02\xec\xd7\x8f\x56\ +\xe7\xe2\xff\xb3\x0c\xd9\x4d\x0e\xfa\x9c\x49\xf5\x9f\x01\xcb\x43\ +\x68\x6e\x06\x10\xab\x7e\x58\x0a\x60\x73\xcc\xec\xf9\x8e\x77\x50\ +\x19\x09\xac\x6b\x32\x37\x51\x34\xea\x99\x86\x95\x96\x07\x90\x49\ +\x12\x2c\xc2\x87\x0c\xb7\x55\x7b\xc0\x8a\x4b\x5d\x71\xce\x43\xd5\ +\x91\xc6\x55\x5e\x3b\x47\x3c\x35\xa4\xd9\xca\x59\xf9\xf4\x23\x5c\ +\x99\x47\xce\xb9\x34\x18\x00\x7c\x56\xc1\xb2\x1f\x11\xd3\xe9\x3c\ +\xe6\xf3\xd3\xb8\x38\x7f\x18\x2f\xdd\xff\xc9\x78\xf9\xd1\xcf\xc4\ +\xd9\xc5\x27\xe3\xf4\xf4\x51\x2c\x66\xf7\xe3\x74\xf1\x6a\x9c\x9d\ +\xbd\x11\x67\x27\xaf\xc7\xe2\xe4\x61\x4c\x66\xe7\x1e\x4b\x5d\x4f\ +\xce\xa4\x40\x74\x8b\x76\x22\x9f\xc7\x15\x2b\x17\x8c\x7a\x77\xb2\ +\x0c\x56\x29\xbd\x42\x0e\xa5\xc8\x71\xbb\x5d\x6a\xd8\xbd\x8c\xcd\ +\x56\x17\x17\x7e\x9a\xc1\xd8\x53\xfa\x59\x9f\x15\x32\xa1\x8f\x0e\ +\x8e\xea\x90\x5f\x07\x98\x1d\x5d\xd0\xe8\xdc\xc8\x80\x28\x5e\xd9\ +\xf5\xa7\xf9\x2a\xe0\xba\x66\x5d\x81\xeb\x93\x8f\xa3\xcc\xfd\x35\ +\x6a\x29\x42\xbf\x6b\x9b\x4a\xfd\xe6\x15\x76\xcb\x26\x41\x4a\xee\ +\x9f\xe6\xf2\x81\x42\x07\x48\x5f\xa0\x31\x9d\x69\x09\xd5\xee\xd4\ +\x01\x36\x88\x31\xf6\x35\x9b\xe6\x59\x31\xf3\xd5\x07\x0c\x23\xf9\ +\xe6\x38\x4d\xbf\x89\x35\xb1\xd4\x1b\x66\xa2\xc7\xfb\x7c\x1e\x11\ +\x9e\x5f\x07\x59\x69\xb0\x83\xa4\xcb\xc7\x01\x3e\x66\x1b\x9d\xe9\ +\xf2\x02\xdb\x07\xf3\xba\x00\x34\x1e\xfa\x25\xd1\x01\x3b\xf6\xcd\ +\xc5\x87\x9b\xd8\xd5\x9d\xd1\xa4\xe1\x11\x1f\xec\x72\xdb\x87\xac\ +\x8a\x0c\xfe\x80\x89\x67\xbd\x25\x4e\x1f\xd1\xe9\xda\xc6\x71\xea\ +\x0a\x1d\x9e\x9e\x57\x4d\x4b\xd7\x6b\x38\xae\x87\x5b\xd6\x74\x55\ +\xf7\x00\x7a\x1d\xa9\x4f\x36\x97\x0e\xd2\x51\xd9\x5d\x8e\x02\xe4\ +\x3e\x9a\x25\xc5\xd2\x3d\xd4\x50\x3a\x31\xb2\x7d\xd1\xc9\x54\xae\ +\x46\xcb\x87\xfa\x02\xd7\x81\xd6\x12\x1a\x2e\xd9\x14\xc7\xc7\x8d\ +\xfa\x1e\x3f\x96\xda\x8f\x34\xa1\x72\x7a\x1b\x3c\x48\xe7\x64\x02\ +\xf2\x60\x7e\x61\x59\xd5\xcd\x10\x5a\x1c\x9c\x74\xfa\xd8\x81\x98\ +\x19\xc7\x57\x18\x29\x73\x9e\x1e\xab\x92\xe3\xa0\x03\xe3\x18\x4b\ +\x9a\xcd\x66\xe2\xa7\xd2\x6e\x14\x61\x23\x6d\xa9\xb9\xe3\x7a\xab\ +\xb9\x8d\xae\xf1\x8c\xa9\x2d\x8d\x2f\xea\x86\x2c\x7b\x0f\x29\x4d\ +\xbf\x1a\x9d\x75\xd6\x82\xb9\x3a\x40\x35\x9a\xf6\x01\xf2\x87\x37\ +\x62\xa9\x7e\x9a\xac\x44\xb7\xa0\xcf\xb5\xc9\x6f\xeb\x61\xdd\x56\ +\xfc\xcd\x39\x93\x37\x60\xbd\x06\x7e\x51\x1b\x48\xbf\x15\xd4\xd8\ +\x6e\x6f\x22\x3e\x97\x53\x00\xea\x08\x74\xfc\xc9\xf6\xb1\x3e\x54\ +\x12\xe6\x01\xe6\x35\x30\x49\x5e\x84\x01\x5f\x30\xd4\x67\xf3\xff\ +\xe4\x8c\x75\xd0\x32\x7e\xfb\xf3\xbf\xc6\x5f\x95\x27\x1c\xb8\x7d\ +\xbb\x0c\x47\x38\xc2\x11\x8e\x70\x84\xef\x06\xb8\xbe\x1e\xe1\x08\ +\x47\x38\xc2\xc7\x13\x0e\xe7\x87\x07\xc0\xfc\xf5\xb6\xf8\x43\xa7\ +\x83\xb7\x04\x9e\xcc\x76\x80\xb0\x18\xc3\x49\xf1\x76\x1f\xd7\x9a\ +\x7c\xfe\xab\x9f\xfb\xf9\x78\xe5\x74\x15\x67\x27\x68\x8d\xbc\x50\ +\x60\xa1\xc5\xff\xbd\xf0\x1f\x17\xeb\x8d\x16\xd4\xac\x67\xcc\x57\ +\x3a\xb0\x50\x2e\x62\x31\xa4\xc9\xb1\x70\x9b\x1c\x77\x74\xbf\xba\ +\x51\x5c\xa1\x4d\xb2\x61\xa6\x72\xe9\xc2\x24\x65\x8a\x06\xa8\xf2\ +\x62\xf1\xc7\xac\x5e\xf9\x0c\xfd\xbf\x0b\xba\x84\xd8\x2d\xec\xa0\ +\x23\x5f\x7c\x20\x78\xc3\x21\x75\xc8\x3f\xcb\xa5\x9c\x54\x27\xdb\ +\x9b\x75\xec\xfc\xd4\xc6\x26\x46\x5a\x18\x65\xc1\xa5\xd8\xb2\xae\ +\x85\x61\x42\x52\x2d\xee\x05\xab\x3e\x63\x2d\x8a\xc1\xeb\x77\x65\ +\xe6\x8f\xde\x8a\xcd\xe7\xbe\x11\xfb\xe5\x32\x4e\xb4\x30\xe3\x09\ +\x05\x9e\xac\x61\x41\xb4\x0e\xd1\xa3\x55\x6c\xaf\x3f\x88\xf5\xfb\ +\x8f\x63\xfd\xec\x69\x2c\x47\xcf\x65\x69\x1a\xdb\x33\xf9\xf8\xc6\ +\x32\x26\x6f\xec\x62\xfa\xb2\xf2\x58\x4c\xb5\x4e\xe1\x06\xc1\xa2\ +\x32\x4b\xe4\x85\x95\xe9\xf2\xa2\xc5\x1b\x4f\xb8\xfd\x3a\x32\x79\ +\x1f\x0d\x4e\x4a\x5d\x24\x25\x0b\x6c\x86\x89\xba\x91\x35\x02\xbf\ +\xc8\x54\x39\xfc\xf4\xc7\x48\xb2\xf9\x36\xe2\x5c\x65\xbe\xe0\x97\ +\xa5\xbc\x1a\x85\xfa\xc1\x4f\x89\x65\x87\x0d\xb9\xf5\x55\x3e\xa9\ +\xb6\x5b\xab\x2d\xb1\xda\x56\x83\x86\xf4\xcd\xfa\x3a\xdc\x0e\x9d\ +\x3f\xae\x5b\x6e\xc6\x69\xd1\xfa\x7c\xe9\xcd\x34\x3f\x31\x24\x19\ +\x36\xd9\x48\xf2\x66\xda\xc9\x38\xc6\x6c\x6c\x91\x9e\xb4\x36\x94\ +\xc6\x93\x04\x27\x2f\x65\x49\x3b\x08\x9a\x67\x59\x07\x3d\x78\x43\ +\x99\x1b\x60\xac\xa2\x25\x4b\xa8\xf4\x2a\x73\xff\x2a\x47\xb1\x7c\ +\x93\x3e\x6f\xd8\x78\x43\xac\x74\xda\xe6\x18\xc1\x3e\x40\xeb\xdb\ +\xc9\x15\xe1\x43\x3c\x7d\xcc\xb4\x69\x8f\x3c\x32\xb4\xff\x65\x73\ +\x68\xfa\xf0\x6d\x23\xcb\x9e\x72\x36\x8d\xcb\x46\x0b\xcd\x4f\x6c\ +\x38\x0d\x62\x70\xf9\xe6\x74\x7c\x8b\xc6\x54\xc7\x57\x99\xf8\x39\ +\x7b\xf9\x93\xa0\x7a\x52\x1b\xfb\x9c\x59\xaa\x41\xbc\xe9\x88\xba\ +\x7c\x6d\xf9\x5b\xbf\x05\x7c\xa8\x72\x94\x4d\x5b\x2a\x19\xbc\xd4\ +\xc9\xfa\xeb\xf3\x11\xf0\x7f\x6a\x27\x93\x98\xcc\x66\xe2\xa3\x8f\ +\xcb\x1a\xab\xb4\x98\x5e\x3d\x5f\xc7\xf2\x72\xe3\x4d\x5f\x77\x77\ +\x4c\xc9\x91\x22\x0f\x02\xad\x07\x06\xdc\x1f\x69\x4f\xbe\x3a\x2f\ +\xb7\xea\xa3\x34\xb3\x9f\x88\xa5\xdf\xab\x6c\x16\x2b\x81\x7d\x91\ +\xdf\xf4\xf1\xc9\x68\x1e\x71\x31\x89\xd9\xa9\x16\xf1\x3a\xdf\x7d\ +\x63\x4b\xe7\x46\xfe\x77\x1c\x39\xa7\x71\xf7\x4d\xe8\x02\xe7\xef\ +\xbc\x6e\x73\x7b\xec\xb4\x80\x95\x85\x60\x30\xee\x28\x6e\x52\x9f\ +\xe4\x35\x15\x9d\x7f\x53\x36\xe9\x27\xb1\xd5\xf0\x30\x7a\x25\xe2\ +\xe4\xb5\x4d\x5c\xbc\xb2\x8b\xc9\xfd\x8d\xdc\xd3\x39\xab\x04\x37\ +\x23\xd5\x93\xc6\x34\xfe\x0b\x91\x9b\x3e\xdb\xdd\x73\x6f\x48\xc6\ +\xf5\x2a\xe2\xc9\x75\x8c\xde\x7f\x3f\x26\x6f\x3f\x89\xd1\x57\xdf\ +\x8a\xfd\xef\x7c\x3b\x1e\xff\xda\x9b\xf1\xee\xbf\x7e\x2b\x9e\x7e\ +\x93\xf3\x6d\xa2\xf3\x57\xe7\x30\x79\x51\xd6\xf2\xd5\xc7\xf2\xab\ +\x1d\xb3\xc9\xa0\x4b\x20\x64\x1e\x81\x38\x7d\x44\xd7\x15\xfe\xfb\ +\x70\xb3\xd4\x38\x6b\xfd\x54\x82\x6e\xed\x97\x3c\x70\x42\x5a\x2f\ +\xc8\x44\x02\x71\x4b\xb7\xd5\x09\x07\xb7\x40\xc5\xb3\x7d\xe5\x3b\ +\x7d\x43\x34\x7a\x88\x6c\x9e\x40\xdf\x37\x01\xc2\x07\x1b\x7c\x01\ +\x28\x73\x0e\xa5\x4e\xdd\x41\x25\x7d\x01\xe0\x99\x5f\x8e\xf1\xd9\ +\xe0\x87\xfa\xc8\x4a\xd7\x57\xae\x05\xd3\x79\x3e\x35\xf1\x53\xaf\ +\xbd\x12\xf7\xb6\xcf\xe2\x8f\xfe\xe5\x6f\xc6\x9a\xf7\x99\x3a\xa3\ +\x96\xcf\x61\x7e\x47\xf8\xb8\x40\xf5\x33\x41\xbb\xb1\xcd\x7f\xec\ +\xfc\xfd\x5f\xf8\xb9\xb8\x78\xa4\xab\x38\x3b\xd4\x74\x8e\xd6\xa1\ +\xbb\x66\x24\xce\x51\xa9\xb3\x43\xbd\x00\xe6\xea\xd0\xa4\x60\x07\ +\xc6\x5f\xf3\xe9\xa7\xc5\x84\xd6\x98\xe4\x6e\x4c\x34\xa5\xa6\x1a\ +\x1c\xc4\x64\xc2\x63\x48\x45\x7c\xf3\x9a\x73\x9b\x1b\xa7\x02\xd2\ +\xe2\xaa\xdd\xed\x88\x84\x66\x27\xcf\x13\x30\x31\x1b\xbc\x13\xdc\ +\xeb\xa5\x93\x66\x34\x0e\x69\x5c\x3d\xfc\xef\x34\x7a\xbf\x87\xd5\ +\x66\xec\x05\x68\x9b\x3d\x1d\xf8\x7c\x1e\xf2\x98\xb7\x8e\x62\x36\ +\x9e\xc7\xc5\xd9\x4b\xf1\xf0\xe2\x93\x71\x76\xfa\x9a\xe2\x2f\xc7\ +\x7c\x7c\x4f\xe3\xf5\x59\x4c\xa7\x17\x31\x9f\x5d\xc4\xd9\xec\x8d\ +\x58\xcc\x5f\x8b\xd3\xf9\x7d\xf1\x66\xaa\x33\x1e\x65\x97\x67\x2e\ +\x4b\xe6\xdf\xbc\x68\x6d\x9b\x0c\xbc\x4c\xe8\x36\x33\x4c\x17\x46\ +\x80\x7e\xe7\x16\x3a\xc9\x4d\xbd\xa4\x01\x9e\xa6\x66\x5e\xcd\x86\ +\x1a\x23\x2a\x15\x94\x36\x74\x1c\x66\x39\xc0\xb0\x2d\x12\x83\xea\ +\xb0\x3e\xea\x83\xfe\x63\x5e\x92\xc2\x99\x82\x78\x5d\x61\xcd\xeb\ +\xe5\x45\x09\xf1\xfa\x62\x4b\xcd\xa2\x6d\x7c\x34\x76\x97\x50\x60\ +\x53\x05\x3b\xbe\xee\x4a\x66\x9b\x75\xcd\xce\x9a\x11\xed\x72\xc0\ +\xa7\x3d\x33\x07\xf4\xed\x28\xb4\xd2\x61\xac\xc5\x28\x48\xd6\x8b\ +\x74\x25\x82\xec\xe2\x19\x49\x1e\xf3\x07\x72\xe1\x29\x2d\x7e\x25\ +\xe5\xdc\x7b\x9c\x79\x89\x12\xe6\x69\x7c\xd2\xb6\xb9\x86\x37\xc4\ +\xd4\xb9\x72\x0e\x85\x2f\x89\x4d\xc3\xb3\xed\xdb\x1f\x6c\x72\x2e\ +\x5b\x3d\xd3\xdb\x26\x81\xb4\xbd\x8f\x0e\xf6\x43\x3c\x97\x3f\x6d\ +\x37\x1d\xeb\x81\x1d\x17\x50\x05\x80\xd3\x25\x8f\x7a\xa7\xff\xe7\ +\xc6\x55\x97\xa2\xd7\x15\x61\x1e\x69\x5c\x96\x46\x63\x86\xbc\xc0\ +\xa4\x70\x62\x83\xed\x39\x8d\xe4\xd6\x2b\x81\x1a\xd5\x4f\xdf\x0b\ +\x33\x3f\xef\xdc\x29\x0c\xb8\x9d\xcc\x40\x6a\x43\x6e\x9f\x43\x80\ +\x51\x7e\x41\x97\xbc\x65\x93\x32\xda\xb7\xe9\x08\x4a\xd6\x54\xca\ +\x7a\x82\x08\xea\x6e\xca\x9b\x43\xf4\xf1\x7f\xf9\x2d\x35\x17\xd3\ +\x35\x5b\x67\x4c\xd9\xc7\x56\x02\x18\x3d\x56\x1a\x2a\x5e\x82\xf2\ +\x72\xf7\x80\x63\x7b\x19\x7a\xe7\x08\xa2\xed\x53\x93\x75\xa6\x07\ +\xd0\xeb\x73\x0e\x80\xfd\xdf\x68\x5c\xbb\x35\x56\x6e\x1d\x44\x2b\ +\xce\xdb\x47\xd6\x8a\x2f\xb5\x2e\xe0\x9a\xee\x27\xd3\x34\xbf\xc1\ +\xef\xfc\x11\x4f\x9a\x1a\x54\x8c\xac\x67\xdd\x34\xb0\xa4\xb5\x85\ +\x22\x59\x5b\xbd\xbe\x66\xd1\x03\xed\xa4\x34\xd5\x74\x1b\x62\xdf\ +\xf3\x1b\xb4\x3c\x94\xa4\xbc\xe9\x37\x6c\x38\x88\x34\xe8\xf3\x01\ +\x5a\xea\xb4\x9b\xfd\x44\xc5\xcb\x3c\x8c\x8d\x0e\x01\x9f\x1d\xd4\ +\x16\x0a\x8d\x76\x39\xf2\x6b\x1a\xdc\xd5\x43\x32\x53\x0f\x9c\x5c\ +\xdb\x7e\xc1\x7e\x81\x93\x94\x72\xeb\xcf\xcd\x1c\xe7\xea\x7e\xb7\ +\x88\x47\x2f\xef\xe2\xd7\x7e\xfb\x9f\x49\xc0\x1b\x2b\x90\x94\x82\ +\x61\x48\x1f\xe1\x08\x47\x38\xc2\x11\xbe\x5b\xe8\xae\xb3\x47\x38\ +\xc2\x11\x8e\xf0\xb1\x80\x36\xa7\x6b\x33\xc7\x0f\x9b\x3d\x02\x77\ +\xcc\xff\x3e\x4a\xbd\x81\xe7\xd7\xb7\xe0\x60\x22\xcc\x4c\x53\x8b\ +\xf9\xf5\x78\x16\xdf\xfc\xdc\x6f\xc6\xab\x0f\xb4\x90\x19\xcd\x3d\ +\x19\x47\xc4\xf4\x7d\xb5\xde\xf8\x35\x16\x1b\x6f\x82\xe4\xc4\xda\ +\x0e\xd5\x62\xc4\x87\x5a\x40\xe7\x54\xb9\x4d\x8c\xfb\x05\x5e\x62\ +\x0d\xc4\x45\x73\x60\xa1\xd7\x09\x4c\x57\xb8\x05\x2c\x32\xed\x89\ +\x66\xf3\x0e\xdc\x84\x81\x73\x57\xe1\x6e\x41\x25\x4d\x5c\xf9\xd8\ +\x47\x68\x66\xde\x5a\xb4\x25\x53\x41\x7a\x58\xf6\xc2\x61\xc9\x66\ +\xda\x2a\xe2\x7a\x13\x5a\x15\x95\x0c\xdd\x82\xca\xda\x3e\xf8\x26\ +\xc3\x81\x94\x65\x9f\x1f\x98\xb2\x2d\x16\x58\xa3\x55\x3c\xf9\xa3\ +\xab\x58\x7e\xe1\xbd\x98\x7f\xfe\xab\x31\x5d\xbd\x17\x27\xe3\x27\ +\x31\x1f\x3f\x8d\xf9\xf6\x71\x2c\x2e\xdf\x8d\xe9\x9f\xfc\x49\xdc\ +\x7c\xfe\x2b\xb1\xfc\x83\x6f\xc4\xe5\xbb\xcf\x62\x75\x75\x15\xab\ +\xb8\x8e\xcd\x78\x1d\xa3\x99\xea\xeb\xf5\x65\xcc\x3e\xb3\x8e\xc5\ +\x27\xe4\xd3\xc5\x26\xc6\xb3\x8d\xea\x63\xa6\xfa\x61\x49\xa6\xfc\ +\xab\x3e\xec\x53\x7e\x75\xa8\xf2\x0d\xc0\x6a\x1f\xba\xd8\x72\x0d\ +\x18\x27\x93\x03\x6d\x2e\x8a\x72\x52\xff\x4b\x55\xdd\xd5\x28\xb6\ +\x2b\x31\x15\x67\x91\x85\xda\x8e\xdf\xf8\x9e\xee\x63\x76\x36\x8a\ +\xe9\x3d\xb5\xfd\x8c\x9b\x11\xe4\xce\x93\x5a\xd4\xba\x74\xb5\xf8\ +\x5c\x5d\xad\x54\xbf\x2a\x83\x6f\x6a\x8b\x6b\x17\xdd\x2a\x07\x9e\ +\x9a\x43\xbe\x0e\xf4\x47\xe9\xe3\xb7\xfc\x58\xab\x7d\x96\xcf\x96\ +\xb1\xb9\xde\xca\x2f\xd9\x10\x9b\x85\x25\x1b\x4c\xb3\xd3\x69\xcc\ +\x4e\xa6\xe1\xff\x4d\xe3\xca\x2f\x7e\xeb\x83\xdd\xa6\x9a\x99\x89\ +\x9c\x77\xe5\xdf\x31\xd1\x13\x96\x59\xfb\x30\x56\x21\xd1\x21\x6e\ +\x11\x1b\xac\x3b\x2d\xd4\xc4\x28\xd5\xb4\x41\x70\xa1\x95\x31\x02\ +\x05\x3f\xc1\xd5\xe2\xf2\x0f\x1d\xe8\xe1\xb9\x90\xe9\xf0\xb7\xd1\ +\x12\x40\xdb\x56\xe2\xbc\x11\x84\x1c\xcc\x4d\x9e\x2c\x1c\x34\x3a\ +\xa9\x0f\xab\xf4\x88\x97\xae\xa8\xe4\x59\xb7\xf4\x1d\xca\x46\xb3\ +\xef\x90\x7a\xf6\xa7\xd9\x45\xb5\x36\xef\xcc\xe2\xc9\x30\xc9\xa9\ +\x0f\xda\x4f\x5f\xd7\x45\x3b\x67\xfc\x7f\x79\xdb\x5d\x70\xcf\x57\ +\x86\xca\xa6\x82\xf5\xd3\x46\x1a\xcd\xe0\xbc\xa8\x1b\xb0\x74\xdd\ +\x5f\x4c\x97\x4f\xe8\xe8\xc3\xed\x3b\x31\xc5\x9b\xc4\x54\xfd\x6c\ +\x72\x6f\x12\x93\xc5\x58\x49\xa7\x4a\xef\xa4\xc1\xff\xa8\xb1\x41\ +\xc3\xd3\x6a\x39\x56\x54\x3b\x02\x72\xb2\xcf\x16\x8b\x00\x7d\x58\ +\x1a\x7c\xd9\x24\x56\x9a\x95\x8a\xb1\x59\xa9\x6f\x79\x43\x4d\x81\ +\x1b\x14\x4e\x5f\x89\xc9\x88\x30\x1d\xc7\x6e\xa1\x34\xe7\xea\x6f\ +\x73\x7e\xe3\x6e\xef\xd4\xbf\x95\x8f\x6c\xb0\xa1\xe6\x0a\x12\xcf\ +\xff\xa3\x06\xa4\x21\x93\x3d\x6e\xd0\x79\x6a\x18\x4a\xbb\x14\x52\ +\xe1\x86\x1b\x8c\xce\x14\x4c\x55\xf6\x44\x75\xb8\x09\x7c\xd9\xc5\ +\xf4\x93\xaa\x9b\xcf\x8c\xe2\xc1\xa7\x54\x35\x8f\xd4\x1e\x6a\x87\ +\xed\x7e\x16\xec\xd1\x8c\x55\x47\xd3\x8d\xce\xc3\xcd\xb5\x4e\xa6\ +\xcb\x88\xab\x67\x31\x7a\xf2\x2c\xe2\x5b\x4f\x22\xfe\xe8\xcd\x88\ +\xdf\xfd\x6a\xc4\xbf\xfa\x4a\xdc\xfc\xd3\x3f\x8e\xb7\x7f\xe1\x0f\ +\xe3\xcd\xdf\xf8\x56\x3c\x7e\x53\xfa\x52\xa5\x4e\x54\x1d\x2e\x2b\ +\xd5\xe6\xda\xcd\x6f\x02\x75\x0c\xca\x98\x04\x38\xda\x49\x05\x49\ +\x93\xce\x81\x31\xe4\xf9\x46\xe7\x74\x3e\x01\x41\xf5\x96\x82\xdb\ +\xa8\x83\xca\xc3\xa9\x5b\xa7\x13\x38\x7f\xd3\x3a\x38\x1f\x6b\x24\ +\x74\x64\xe3\x2b\x78\xc0\x52\x3f\xf1\x1d\x62\xd1\x19\xcd\xfe\x40\ +\xbf\x6b\x6d\x6c\x66\x0b\xd5\x57\x2c\x13\x56\x1a\xc7\x75\x2c\x71\ +\x97\xe4\x4e\x28\x59\x22\x95\x97\xa0\xfc\xf3\x66\xba\xce\x17\xf5\ +\x71\xfa\xe0\x56\xd7\xe2\xd7\xcf\xcf\xe3\xc1\x2c\xe2\xdd\x2f\xfc\ +\x41\x7c\xf0\x54\xed\xd1\x41\x39\x7a\x50\x97\x47\xf8\x78\x40\xdf\ +\xf8\xd9\xfb\xd5\x46\xbb\x75\xfc\xf3\xcf\xfd\x8f\x71\xef\x55\x5d\ +\x8f\x16\x13\xb7\x2f\x2d\x0f\xd0\xc7\x0e\x5a\xd1\x4f\xfb\x0f\x60\ +\xd0\x5f\x72\x73\xa2\x40\x04\x31\xf3\xa1\xab\xe3\x39\xee\x90\xf3\ +\xaa\xe4\x27\xef\x00\x9c\xe9\x20\x67\xc8\xf2\xc5\x41\x6e\xb4\xa7\ +\xd3\xea\x5b\x76\xef\x06\xf3\x39\xe0\xa3\x30\x21\x0f\x77\x41\xe3\ +\x73\xdd\xcf\x1b\xcd\xdb\xfe\xdd\xb9\x96\x32\xa6\x00\x39\x36\x00\ +\x25\x14\x10\xcf\xd3\xbe\xf1\x12\x77\x31\xd5\xaf\x9f\x04\xb1\xd2\ +\x49\x5c\x9c\xbf\x12\xa7\x7e\xc7\xed\x99\x74\x4e\x95\x6e\x26\xfb\ +\x53\xff\x37\xe4\x34\x16\xa2\x17\xb1\x98\xbd\xa2\xb6\x79\x18\xb3\ +\xf1\x42\x6e\xeb\x1a\x92\x99\x1a\x3e\xb4\x18\x40\xef\x56\xa6\xb1\ +\x2e\x4c\x05\xc6\xbf\xee\x91\x78\x50\x7a\x9c\xad\x94\xd0\x28\xf7\ +\x08\xf5\x13\xbf\x02\x96\xba\xb0\xad\x94\xba\x3e\x4d\xf5\x18\x68\ +\x7e\x81\x4c\xc2\xa0\xcc\x8e\x0f\xc6\x4f\x40\xb4\xfb\x82\x88\x56\ +\xb7\x40\xa7\xc2\x75\x03\x84\x9e\xf0\xb0\x7e\xd3\x67\x1d\xdd\x6f\ +\x85\x7d\x8d\x11\xea\x02\x6d\x8e\xd5\x2a\x99\x8c\x90\x97\xfb\x5f\ +\x8d\xa3\x39\xf7\xb0\xa8\xbb\x64\x76\x37\xda\xe1\x7b\x2c\xa3\xad\ +\xf9\x54\x1e\x08\x38\xf0\x2d\x9a\x0f\x99\xfb\xba\xa7\x90\xb6\x29\ +\x53\x05\xc7\x6b\xf3\x8b\x3c\x91\x29\x4c\x88\x97\x9f\xbd\x3f\xbd\ +\x7e\xea\x49\x87\xed\x18\x78\x9e\x6b\x34\xdd\x0a\x99\xa2\xf7\xa9\ +\xca\x9e\xd0\xeb\x24\x0d\x02\x93\x4f\x03\x12\x95\x9e\x75\x93\x87\ +\x6e\xc6\x65\x90\x32\x89\xcb\x0f\x54\x28\x27\xd5\xe2\xb6\x74\x48\ +\x00\xa3\xe5\x78\x7f\xb0\x1d\x0e\x1d\x16\xb2\xb7\xb6\x59\x16\x10\ +\x2a\xee\xea\x26\x8f\x6a\x53\xc7\xc1\xa4\xb3\x8c\x38\x28\xed\x74\ +\x60\xbb\x9a\x7d\x95\x0e\x32\xe2\x24\xea\xf5\xb0\xd8\x09\x3d\x2f\ +\x47\x25\x25\x04\x04\xc9\x48\x33\xbd\x2e\xa8\xc9\xcc\xc2\xae\x08\ +\x36\xfc\xb8\x4c\xf3\x74\x9a\xdf\x8e\x22\x1a\x7e\xea\x0f\x71\xa6\ +\xf5\x6f\x93\x1a\x53\x40\x77\x19\xc6\x0f\xa1\x09\xb3\x2e\x0c\x42\ +\xf9\xe6\x15\x49\xd2\x49\xcb\x4c\x0b\xa8\x2f\xc6\x19\x5e\x7d\xba\ +\x72\x58\xfb\xaf\x10\x56\xac\x6b\x74\x1d\xbf\xd1\xf5\x7b\x29\xde\ +\x5a\xb2\xb5\xfc\xf5\xff\xd3\xd9\xa8\xbf\x09\x59\xe9\x10\x07\xc8\ +\x80\xbe\xf2\x74\x19\x4d\x50\x0f\xd4\x1c\x4a\xc8\xb2\x16\x2b\xea\ +\x79\x44\x5b\xf7\x65\x1c\x13\x8c\x29\x76\x3c\x99\x77\x80\x6d\x1c\ +\x40\xd3\x1b\xe8\x8b\x4c\x13\x49\xb8\x24\x60\x35\x82\xff\x4f\x4d\ +\xf1\x56\xef\x0d\x5a\xaf\xb1\xff\x15\x9c\x18\x9a\x4f\x8a\x53\x96\ +\xa4\x71\x93\x71\x3e\x34\x8b\x4d\x0e\xb4\x1f\x8f\x24\xa0\x58\xe4\ +\xa1\x96\xd3\x62\x87\xb5\xd1\xfd\x87\xe3\x78\xef\xf9\x9f\xc4\xf5\ +\xe5\x13\xfb\x8d\xa0\xd9\xb6\x4f\x47\x38\xc2\x11\x8e\x70\x84\xef\ +\x19\x98\x5f\x1c\xe1\x08\x47\x38\xc2\x9f\x4a\x68\x73\xe6\xdb\xf0\ +\x9d\xa6\x85\x39\xdd\x94\xd6\x40\x71\x38\x99\x35\x68\x6e\xfc\x47\ +\xbf\xf2\xaf\xe2\xa5\xf9\x2e\xfe\xbd\x57\x5f\x8a\x89\xff\x07\x28\ +\x6f\x96\x73\x13\x68\xed\x5f\xdb\x71\xf3\x43\x8a\x07\xa6\x30\x64\ +\xad\xb2\x99\x56\xa1\x93\x28\x84\x4c\x07\x16\xa2\xb9\xd2\xab\x89\ +\x75\x87\x4b\xe9\x2e\x20\x2d\x79\x12\xb8\x59\xc2\xaf\x14\x73\x56\ +\x5f\x0a\xdf\x05\xc8\x46\x2e\x91\x12\xba\xc5\x3e\xaf\x7a\x64\x61\ +\x4c\xde\x5a\xbc\xb4\x5f\x11\xee\x37\x5a\xc4\xb1\xe9\x73\xa5\x55\ +\xdc\x7a\x93\x0b\x16\xb2\x73\x28\x1a\xa3\xa6\x85\x1d\xc5\x4e\x92\ +\x40\xbb\xe0\xb0\xc9\xc3\xc6\x1a\x75\x78\x7d\xb5\x8b\xe7\xbf\xab\ +\xc9\xfd\x3f\xbf\x8a\xf8\x27\xdf\x8e\xf1\xaf\xbd\x19\xb3\xdf\x12\ +\xfe\x8d\x3f\x8e\xdd\x3f\xfd\x72\x3c\xfd\xc7\x7f\x10\xcf\x7e\xfd\ +\xeb\xf1\xc1\x97\x3e\x88\xcd\x5b\x37\x11\x6f\x8d\x62\xf3\xce\x26\ +\xb6\x1b\x85\xb9\x8c\x9d\x8c\x63\xf6\xea\x55\xcc\x3e\x73\x13\xf3\ +\x37\xb6\x8a\xef\x62\x32\xdd\xf9\xe6\x80\x17\x3b\xad\xa2\x04\x1c\ +\xbb\x85\x56\x3a\x2c\xc0\xc1\x92\x7b\xb1\x36\x74\xd9\x16\x52\x8c\ +\xcc\x98\x7a\xd3\xe2\x4c\x76\x1c\x7c\xb3\x4a\x75\xa3\x6a\xe1\xe1\ +\xb9\xd1\x8d\xe2\x14\x10\xbe\x16\x70\xd8\xe2\xc6\x70\x9c\xc9\x2f\ +\x9e\x54\x3b\x19\xc5\x78\x2e\x2e\xf7\xa9\xf6\x63\x3f\x1d\x83\x51\ +\x6e\xa0\xaf\xae\xb5\xf0\xa4\x8e\xfd\x6b\xf8\xca\x5b\x62\xab\xe8\ +\xc0\x27\xb9\x6d\xd1\x86\x27\x3a\xaa\x6d\x96\x4a\xcb\x53\x48\xbb\ +\x6b\xa5\x55\x35\xf0\x2b\x51\x6c\x73\xe3\x64\x7e\x32\x8d\xe9\xf9\ +\x54\x6d\x2b\xe5\x6a\x67\x3b\x26\xb7\xbc\x49\xe3\x3c\x12\x9b\x5f\ +\x34\x64\x47\x2b\xb8\x59\xcd\x2f\x22\x35\x0a\x65\x19\xfc\x1a\x50\ +\xaf\xf0\x8b\x4d\xc2\xc9\xc8\x4f\x2d\xf9\xd7\xd1\x0e\xd8\x54\x10\ +\x6e\xfe\xc0\x6f\xff\x3b\x96\x37\x6a\x14\xea\xe4\xe0\xe6\x8e\x69\ +\xe4\xc2\xfe\xf3\x73\x3f\x45\xa9\x80\x7d\xe1\xae\x5c\xce\xb8\xe2\ +\xce\xab\x4f\x9b\x65\x6c\x32\xd2\xa1\xab\x9a\x14\x2b\xb3\x2b\x9b\ +\x96\x61\x3b\x75\x33\x6d\xf2\xdd\x45\x2c\xeb\x75\x52\x56\xba\xce\ +\x5f\xfa\xa2\xc0\xfb\xd5\x56\xe7\xcc\x32\xf6\x4b\x75\x90\xcd\x36\ +\xbb\x11\x7a\x56\x45\x0f\x1a\x07\xa8\x5f\xec\x13\x27\x3f\x2b\x18\ +\xbb\xac\x7e\xbd\x63\xe6\xd3\x64\x6c\xa4\xf9\xa6\x0f\x36\x54\x08\ +\x7a\xc5\x78\x36\x8f\xd9\x7d\xd5\xf7\x99\x1a\x5b\xfd\x8c\x4d\x35\ +\xab\x0b\x78\x92\x75\x7d\xbd\x89\xe5\xf3\x95\x9f\x88\xf4\x00\xe0\ +\xf3\x83\x2f\x3d\x49\x58\x7d\x1a\x8a\xd3\x84\x66\x64\x83\x78\x7b\ +\xb3\x8b\xd5\x8d\xca\x41\xe0\x07\x04\xc8\xac\x8e\x0f\x32\xa3\x0c\ +\x5c\x26\xf9\xb8\x9f\xcb\x4f\x8d\x95\xfb\x33\xe1\x7b\x62\xe1\x17\ +\x3e\xab\xe0\x33\xf5\xd1\x50\x7a\x76\xd6\xcb\x25\xf9\xdf\x72\x1e\ +\x42\x71\x84\x92\xca\xf2\xfa\xce\x95\x50\xe6\xdd\xdb\x48\xb1\xfc\ +\x92\x76\xe3\x59\x45\x3c\x6a\x85\x0a\x98\xd2\x37\x5f\xdf\x6a\x8c\ +\xd8\xc5\xa3\x87\xab\x18\xdf\xbf\x8e\x31\x37\xa6\xd8\xc0\xd6\xf9\ +\xb6\xbf\x94\xaf\xef\x28\xf5\x37\x15\xbe\xa5\xfa\xf9\x9a\xc6\xa6\ +\x2f\xaf\x62\xf5\x7b\x37\x71\xf3\xdb\x4f\x62\xfd\xeb\x97\xb1\xfa\ +\x97\x8f\xe3\xf9\x2f\x7f\x33\xde\xfd\x95\xaf\xc6\x5b\x5f\x7c\x2f\ +\xae\x3f\x58\xc5\xde\xaf\xd2\xe4\x26\xd1\x86\x2e\x94\x55\x2a\x13\ +\xd4\x51\x0f\xbd\x5f\x26\x7c\x22\xdd\x2a\x04\xb8\x05\x90\xda\x8a\ +\x3b\x66\x5b\xfe\x03\x11\x1a\x9e\x8f\x3d\x7e\x01\x24\xa0\x39\xb1\ +\x7d\x90\xfd\x5d\xe0\x4a\xcc\x3a\x83\xa6\xdd\x7d\x97\x0e\x1a\x79\ +\xf3\x83\x80\x5d\xfa\xb7\x89\xec\x6f\xee\x73\x02\x17\xe5\x36\xdc\ +\xe6\xc9\xa0\x93\x42\x37\x59\xe1\xec\xf9\x02\xfa\x81\xf2\xe6\xc9\ +\x6f\xd5\xa8\x8a\xbe\x8e\x8d\xae\x33\xf8\x42\x1b\x2e\xce\x66\xf1\ +\xda\xa3\x97\x63\xf1\xee\xb7\xe3\xdb\x6f\xbd\x95\x37\xaf\x7c\xbe\ +\xf5\x70\x18\x3b\xc2\x8f\x05\xdc\x79\x1a\xf4\x11\x9e\xe4\x5e\x6f\ +\xd6\xf1\x27\x6f\xbd\x13\xd7\x37\x5f\x8f\x07\x8f\x66\x79\xae\xe8\ +\xc8\x78\xe6\xfe\x47\xdf\xa2\xa3\x08\x72\x5c\x18\xb4\x68\x47\x96\ +\xcd\x8a\x83\xdc\x17\xf9\x6a\x7c\xf0\xa6\x40\xf1\xcd\xb3\xcd\xc2\ +\x4d\x77\x00\xc9\x6b\x20\xdb\x7c\xd1\x6f\x1c\xc5\x37\xea\x6b\x7e\ +\x62\xcc\xe2\x81\x85\x72\xa5\x81\xf9\x1c\x9c\xbe\xe5\x0b\xb3\x64\ +\x03\x38\x88\x63\x97\x7c\x36\xe4\xd5\x1b\x4d\x1b\x0a\x2a\x57\xaf\ +\x2f\xba\x54\xcc\x53\x24\x65\x1c\x87\x69\xd3\x68\x9e\xcd\x9c\x5b\ +\xba\x36\x8c\x66\xb1\x98\xdd\xd3\x35\xe1\x4c\xb5\x3e\x13\x37\xcf\ +\xbe\xbc\x72\x64\x7a\x9e\x68\x99\xd6\x13\x6b\xe3\xe9\x49\xf1\x33\ +\x07\x9b\xca\xc3\x01\xe4\x55\xc0\x44\xd2\x75\x3d\xeb\xf8\x02\xfb\ +\x5c\xbe\x96\x35\xcb\x4d\x0f\x2b\x49\x7a\xf4\x05\xcf\xef\xa8\x77\ +\x9f\xe6\xd2\xa3\x1e\xac\xd7\xa7\x26\x9d\xfd\xab\xf4\x89\xc8\xbf\ +\xe9\xa0\xd5\xca\x56\x7a\x16\x25\x86\x2c\x0f\x04\x2d\xc6\x13\x62\ +\x8d\x27\x2e\x7a\x15\xa5\x54\x04\x97\x4a\x3e\xb9\xa9\x2a\xa4\x27\ +\x39\x73\xe1\x98\x73\x1c\x61\x3e\xc2\x0c\x55\x8e\xc9\x58\x62\xf1\ +\x8c\xd1\x77\x22\xcb\xd2\x40\x79\x25\xbb\x50\xa5\x79\xf7\x47\x69\ +\xf8\xe4\x66\x58\x86\x34\x0a\xad\x74\x03\xbe\xed\x98\x97\x81\xd7\ +\x3b\x32\xa7\xe0\xa9\xd1\xe4\x4d\x64\x27\x9f\x69\xca\x34\xc2\xa2\ +\xed\x79\x8b\x1f\x84\xe4\x0d\xfd\xe3\xff\x8c\x73\x8e\xa2\x80\x6d\ +\xe9\xd0\x1f\xac\x4b\x3f\x26\xaa\x8f\x8f\xf0\x4c\x03\xc4\x41\x6a\ +\x31\x06\x06\xd7\x69\xea\xe6\x87\x9a\x70\x62\xd7\x2d\x7a\xfe\x30\ +\xc7\xf6\xd8\x51\x55\x57\x69\x38\xe2\x15\x9b\xf2\x4c\x1b\x9a\xc4\ +\xe9\x5a\x10\x87\xa4\x39\xd7\xe6\x4a\x48\x9b\x92\x79\x9e\xeb\xb9\ +\x56\x40\x0f\xcd\x04\xc6\x86\xe1\xf8\x90\x36\x8b\x14\x40\x76\x29\ +\x9c\x3e\xc1\x1c\x47\x6d\xb8\x34\x06\x41\x5f\xfb\x4b\x2c\x55\x70\ +\x55\x9c\xb2\x65\x4c\x9b\xe9\x6c\x95\xbf\x1b\x36\x9c\x79\x7a\x5e\ +\xbe\x76\xe9\x14\xa8\x03\x80\xb4\x49\x64\xca\x21\x10\x33\xc7\x87\ +\xe6\x63\xf6\xb9\xce\x2f\xe5\xd3\xd5\x28\xc6\xbc\x19\x9e\xa3\x49\ +\x16\xa1\x6a\x4c\xf5\xe5\xf5\x8f\xce\x55\xce\xd7\xed\x4e\xe7\x2d\ +\xaf\xa2\x24\xe8\x1c\x66\x43\xcd\xaf\x78\xd4\xdc\x37\xc7\x51\xd2\ +\x64\xae\x2d\xe7\xbe\x9e\x3a\x4e\x07\x1e\x43\x70\xa1\x62\xb7\xa1\ +\xe7\xa4\xff\x0d\x3a\x8b\x30\x69\x4e\x85\xf4\x37\xf9\x77\xc1\xa1\ +\x68\x10\x13\x79\x90\x8e\x38\xa8\xf8\x04\x36\xeb\x86\x65\x1b\x26\ +\x37\xc8\x0f\xfa\x1c\x6b\x9c\xee\x5c\x4d\xb6\x21\xdb\xab\xf1\x8a\ +\xeb\x48\xd2\xc9\x4f\xb3\x3d\xa7\x1d\x0f\xa1\xf1\x48\xda\x82\xc7\ +\x7a\x7d\x67\x5a\x13\x3c\xb9\xfe\x66\xfc\xc1\x57\x7f\xd7\xad\x8b\ +\xbf\x77\x5b\x39\xc2\x11\x8e\x70\x84\x23\x7c\xb7\x30\xf9\xcf\x05\ +\x45\x1f\xe1\x08\x47\x38\xc2\x0f\x17\xfa\xd9\xe0\x0f\x1d\x6a\x1e\ +\xfa\xe1\xe0\x99\x66\x61\xc1\xc1\x44\x55\xb3\xcc\xe5\xe6\x59\xfc\ +\xbd\xff\xdb\x7f\x11\x9f\xba\xf9\x46\xfc\xd4\xa3\x87\x7e\x3d\x51\ +\xaa\x8e\xbc\x89\x76\xc5\xe6\x07\x1b\x19\xfc\x07\x16\xbf\xa2\xc5\ +\x02\x0a\xfe\xcf\x0f\x16\x1f\xe8\xe7\x42\x32\xd7\x7f\x35\x99\xae\ +\xc0\xa2\x30\x71\x2e\x3a\x73\x83\xa0\x97\x79\xd1\xd8\x30\x30\x44\ +\x3a\x78\x69\x23\x3f\xb7\xdc\x0c\xe6\x26\x75\xce\x8c\x3f\x1a\x94\ +\xae\xcc\xe4\x42\xc3\xf1\xca\xa3\x7c\x18\xf3\xbf\x47\xc2\xe9\xbf\ +\x97\x33\xb6\xbd\x53\x79\xb7\xcf\x96\x11\x57\x2b\xe5\xc7\x86\x1a\ +\xab\x94\xb2\xe6\x15\xa6\x02\xca\xc5\xc3\xae\x57\x85\x60\x09\xb0\ +\xd5\xf8\xa9\x6e\x0d\x88\x58\x2d\xf7\xb1\xfa\xf6\x75\xac\xbf\x7a\ +\x19\xeb\x2f\x7e\x10\xd7\xff\xf6\x9d\xb8\xfa\xc2\x9b\xf1\xec\x8b\ +\xef\xc4\xe5\x57\xaf\x63\xc4\x2b\x0c\x95\xf7\x5a\xd9\xef\xaf\x14\ +\xd8\xc8\x1c\x6d\xf3\xe6\xbd\x16\xcc\xfb\x98\x6a\x21\xbf\x55\x1b\ +\x29\x3f\x16\x36\x4b\x32\xe0\xcf\xe2\x27\x92\xb5\xc5\xab\x33\x73\ +\x7e\x46\xc5\x81\x68\x5e\xf6\x20\x8e\xcb\x22\x3e\xf8\x00\x5c\xf3\ +\x0a\x4a\x41\x53\x1b\x32\x07\xd7\x23\xff\x95\xa6\x2a\xe4\x06\x16\ +\x3f\xea\xec\x96\x79\x5b\x5e\x7d\x97\x55\xcb\x06\x11\x56\x58\xc8\ +\xfb\xf5\x77\xce\x44\x41\xdf\x2d\x9b\x2e\xdb\xda\x8c\x95\xde\x78\ +\xca\xb2\x47\xfd\xc2\x46\x06\xfe\xb0\xb8\x55\xb7\x5b\xdf\x6c\xd4\ +\x07\xb5\x88\xe5\xa9\xb4\xb5\x4d\x04\x1b\x7d\x72\xc6\x7d\x76\x7a\ +\x36\x8f\xd9\xf9\xc4\xff\xb7\x45\x7f\xe2\x86\x47\xf6\x2b\x54\xe8\ +\x9f\xc2\xad\x4e\xe0\x27\xc3\x25\x72\x1b\x55\xbc\x85\xc6\x43\xd7\ +\xaf\x8e\x54\xb0\x1d\xca\x6e\x7b\x93\x18\x9d\xcc\xd5\x97\x84\x9d\ +\x4f\xc9\x9c\x61\xd9\x53\x69\x44\x55\x9a\xe4\x51\xd6\xec\x3b\xe8\ +\x96\x9e\xd3\x27\x2f\xf3\x4c\x5b\x0e\xc8\x6f\x07\xa7\x55\x9d\x71\ +\x53\x47\x18\x9d\xbc\xa1\x93\x69\x2c\x07\x13\x57\xcc\x69\x4c\x28\ +\x6f\xf2\x20\x52\xbc\x66\xbf\xb8\x3e\xb2\x79\x85\x3d\x37\x01\xb2\ +\xa6\x63\x85\xac\x73\x22\xb4\x27\xd9\xec\xd5\x96\xdb\xab\x9b\x08\ +\xf5\x5f\x3f\xa5\xc6\x39\x83\xae\xc0\xe7\x40\x9d\x2b\x80\x6d\x80\ +\x4d\x23\x24\x14\x03\xb3\xe6\xeb\x60\x8a\xbc\x84\x15\xd2\x3b\x73\ +\xea\x20\xf5\x31\xe7\xb0\xce\x0b\xfe\xcc\x8c\x8d\x1e\xfa\xa9\xfa\ +\x04\x2e\xd2\x35\xf2\xcf\xe0\xb7\xde\x3f\xc1\x9e\xaa\xd5\x76\x6c\ +\x4b\x3c\x36\x64\x79\xed\x18\x9b\x67\x9b\xa5\xca\xc0\x18\xc3\x53\ +\x6d\xea\xab\x68\xe2\x36\x59\xe5\xaf\x85\x55\xcf\xf4\x83\x05\x63\ +\x07\xfd\x55\xf2\x19\xf1\x69\x8c\x1e\x71\x5e\xce\x24\x17\x4f\x36\ +\x26\x4f\x94\xea\x0a\xe3\xf8\x83\x2f\x79\x2e\x75\x7d\xba\x15\xa0\ +\x01\xe6\x8b\xec\x09\x91\xf0\x89\x3b\x61\x0a\x0e\x52\xba\x2d\xc4\ +\x13\xe6\x3e\x90\x37\xf0\x1f\x8d\x63\xf7\x93\xab\xb8\xb8\xd0\xd8\ +\xb5\xa0\x0d\x55\xee\xb5\xfc\x5b\xca\xe7\x9b\x51\x4c\x9e\x49\x5f\ +\x61\xfc\x7c\x12\xbb\xe7\xbb\x58\x7f\xa0\xf0\xad\x69\x5c\x7f\x6d\ +\x13\x57\x7f\xbc\x8a\xa7\xdf\x58\x2a\x5c\xc7\xfb\xef\x6c\xe3\x5a\ +\x3a\xeb\xfd\x54\x55\x4c\x1f\x4b\x5f\xa8\x3b\xaa\x83\xd7\x83\xb5\ +\x97\x76\x01\x59\xc2\x02\xd8\x15\x85\xcc\x74\x2d\x96\x58\xee\xa6\ +\x8c\x22\x60\x70\xa6\x73\x57\xe3\xdc\x64\x3a\xed\xd3\x0a\xd3\x8e\ +\x1d\xc3\xd0\x6c\x00\x43\xfa\xa3\xc0\x39\x25\x25\x44\x9d\xe4\x98\ +\x90\xe7\x99\x65\x16\xa7\x8e\x33\x1d\xe6\x3b\xe8\xbf\x9d\xce\x10\ +\xba\xb4\xe8\xf7\xf2\x46\xb9\x1c\x26\xf8\x66\x9b\x10\x26\x8c\x21\ +\x1a\x3f\x4e\x66\xb3\x98\xa9\xfc\x53\xf9\x34\x9e\xa8\xad\x34\xbe\ +\xff\xde\xd7\x9e\xc4\xfe\xd1\x45\xfc\xe5\xbf\xfe\x1f\xe4\xb9\xec\ +\x73\xaa\x2c\x36\x7c\x84\x1f\x1f\x74\x4d\x90\x7d\x24\xa3\xee\x59\ +\xea\x2e\xab\xf8\x85\x5f\xfc\xb9\xf8\xca\xdb\xbf\x12\x9f\xf8\xa9\ +\x47\xea\x63\x0c\x40\x48\xd0\xca\xf1\xda\xf1\x3a\x31\xc0\x99\x9e\ +\xb3\x22\xa1\x69\x73\xf4\xb9\xa2\x08\x63\x32\x5d\xc1\x3f\xda\xe0\ +\x77\x4f\x95\xce\x7c\x29\xf9\x69\x1b\x61\xf3\x49\x50\xd0\x53\x02\ +\x22\x72\x87\x31\x89\xbe\x9f\xde\x73\x8d\xde\x79\xbc\xe4\xac\xce\ +\x5e\x5c\xa9\x52\xe1\x00\x2c\xd1\xc1\xf3\x39\xe7\x2d\x8c\x4f\x4d\ +\x50\xd0\x53\x59\x33\x1c\x39\xb5\x36\xba\x44\x70\x33\x1a\x4e\x96\ +\x49\xe7\xfd\x64\xaf\x72\x49\x0b\xbf\xf5\xed\x6a\x42\x27\x0f\x7a\ +\x66\x5b\x84\x8e\x55\x4c\x43\x64\x59\xab\xcc\x0a\x27\xb3\xb3\xb8\ +\x77\xfe\x4a\xcc\x67\xf7\xa4\xc1\xa6\x1a\x4f\xa8\x59\xa3\x30\xb7\ +\x5d\xa7\xb1\x8d\x9b\xb8\x59\x3d\x8e\xe5\xf2\x5b\xb1\x5a\x5f\xa9\ +\x0e\xd6\x96\x59\xe9\x0e\x68\xec\xc4\x3a\xfa\xdb\x57\xd0\x30\x99\ +\x2f\x19\x45\x83\xad\x55\x8e\x13\xc7\x13\xca\x4e\x5b\x4e\xa7\x9e\ +\x48\xc5\x9a\xeb\xe8\x56\xd7\x8d\x32\x99\xde\x16\x0c\xd2\xf5\x71\ +\xd7\x46\x1e\x5d\x07\xe2\xc1\x77\x48\xcd\x64\x57\x2a\xf3\xb2\xfe\ +\x4c\x2b\x64\x9b\x55\x1c\x2d\x7f\xc5\x37\x91\x3c\x5f\xee\x6b\xbc\ +\xb4\x2a\xed\x6d\xb9\xfa\xa2\xed\xa0\x6a\x8e\x1a\x2e\xfb\x37\x65\ +\x23\x21\x96\x68\xdf\x4c\x21\x1a\xec\x34\xc9\x23\xb1\x71\xf1\xcd\ +\xb5\x53\x2d\x3d\x1f\xb0\x8d\x67\xda\xc1\x27\x6d\xd3\x8f\x4a\xd7\ +\xf9\x96\xd4\x98\x34\xbd\x2c\xe7\x4b\x98\x6f\xb4\x23\xc6\x2d\x38\ +\x5e\x1f\x20\x79\xc9\x6d\x3f\x04\xca\x34\xd5\x4f\x61\x81\xea\xe0\ +\x74\x60\x87\x54\x68\xd7\xc7\x16\xe7\x9a\x40\x43\xf7\xe9\x2a\xc0\ +\xe3\xdc\x74\x14\xa5\x5c\x73\x8d\x34\xc9\x36\x8f\x13\x48\x84\x37\ +\x87\x85\x79\x82\x89\xea\x72\x1a\x33\x2a\xde\xe4\x52\x77\x5f\xf4\ +\x93\x57\x39\x0e\x61\x22\x0f\x58\x4e\x9c\x79\x25\x48\xdd\xb1\x76\ +\x0e\x12\x6f\x3c\x08\xe8\x64\x9a\x82\x50\x40\x9a\xc2\x14\xb9\x16\ +\xcc\xcb\x38\x1a\x7d\x7d\xd8\x37\x82\x62\xf8\xd7\x9a\x9c\x96\x62\ +\xea\xce\x6b\xe3\x71\x7e\xad\xb1\x62\x79\xc3\x3a\x88\x57\x05\x94\ +\x52\xd9\x6e\x21\x0f\xa0\xfc\xf4\x90\xf4\x8b\xc7\x82\x72\xb9\xc7\ +\xbd\xb4\x69\x37\x0e\xf5\x44\x5f\x4a\xa7\xb3\x6e\xfd\x86\x0d\x5d\ +\x97\x79\x12\x8d\xff\x43\xf5\x46\x9b\xe8\xdc\x70\x72\x6d\xd9\x74\ +\x67\x64\x00\x29\x4d\xc8\xba\x47\x09\xa3\x60\xc5\x8b\x65\x6e\xb1\ +\x38\x38\x4f\x48\x4b\x74\x2c\xd5\x1e\x8a\x4f\x5a\x07\xe2\x10\x66\ +\x1b\xfa\x52\x0d\x98\x95\x1f\x87\x24\x3b\x46\xe6\x2f\xba\xeb\xcf\ +\x2e\x7f\x9e\x3b\xd9\xe7\x52\xde\x1f\x7b\xe0\x15\xbc\xcd\xbf\xf4\ +\x05\x6c\x34\x00\x18\x68\x95\x66\x4b\x20\xe8\xac\xe6\xb7\xc5\xa4\ +\x52\xb1\xc6\x34\x64\x5e\x6e\x13\xcd\xe1\xb7\xab\xab\xf8\xe6\xd7\ +\x57\xf1\x1f\xff\x87\xff\xcb\x5c\x83\x62\x83\x0a\x73\xa2\x83\x84\ +\x47\xf8\x33\x0c\xc7\x96\x3e\xc2\x11\x7e\x70\xd0\xe6\x05\x47\x38\ +\xc2\x11\x8e\xf0\xa3\x81\xc1\xa4\xf0\x07\x05\x6d\x1a\x78\x30\x41\ +\xf8\x6e\xf2\xb1\xce\x2d\x45\x8c\xac\xb7\xb1\x38\x3d\x8f\xed\x57\ +\xfe\x38\x1e\x9d\xcc\xfd\x47\xd0\x9a\x27\x5b\xc4\x02\x82\xff\xa9\ +\xf2\x2b\x1f\x57\x1b\x2d\xc5\x76\x9a\xa8\xa6\x15\xe7\xbf\xaf\x45\ +\xaa\x3f\xc9\xeb\x27\xdc\xd0\x7d\xe0\xd0\x30\xd0\x52\xb4\x09\x79\ +\xb1\x61\x0d\x51\x82\x32\xe4\x29\xa4\xee\xe9\x34\xb3\x12\x7f\x18\ +\x74\xe9\x33\x9b\x03\x7b\x7e\xd2\x85\xcd\x1b\x6e\x0a\x54\xde\xd8\ +\xc3\x34\x4f\x40\xf1\x3a\xc2\x3d\xaf\x24\x54\xdd\xf0\x24\x12\x0b\ +\x1c\x64\x9e\x87\xdb\x40\xa2\x34\x8d\xf1\x81\x00\x66\x8b\x22\x52\ +\xd8\x49\xbe\x53\x5e\xdc\x5b\xdf\xec\x27\xf1\xe4\xf9\x26\xde\xfd\ +\xe6\x75\xbc\xff\xe5\xcb\xf8\xe0\x8b\x97\xf1\xee\x57\x56\xb1\xf9\ +\xb6\xea\xf2\x59\xc4\xea\xfd\x69\x8c\xdf\x9b\xc7\xe6\x4d\xd5\xfd\ +\x9b\xeb\x98\x3c\x16\x7e\xae\xa5\xf3\x15\xaf\x04\xd2\x42\x53\x6d\ +\x30\xe2\xbf\x3e\x2e\xf6\x31\x7b\x6d\x13\x93\x57\xb4\xd8\x9e\xd3\ +\x68\x5a\x2c\xf0\x84\x8c\xf2\xce\x36\x6a\x35\x44\xb9\xda\x22\xc3\ +\xd1\x5e\x87\x3a\xbd\xcd\xd3\xc1\x2c\x1d\x5c\xf4\x22\x1a\xcf\x81\ +\x27\x5d\x36\xfb\xd8\xac\x94\xdf\x46\x05\xe4\x2e\xbe\xf2\x60\xad\ +\x8e\x0f\x5e\x34\x71\x83\x88\x05\xf1\xd9\x38\xa6\xbc\x82\x71\x31\ +\x89\xbd\xdc\x66\x41\x4a\xaf\xc1\x10\xeb\xfb\xdd\x8d\xfa\x16\x1b\ +\x88\x97\x4b\x3f\xb5\xe6\x8c\x04\xd2\x30\x4d\x3e\xab\xeb\x6d\x5c\ +\x5f\xae\xe3\xfa\xa9\xea\xe9\x4a\x79\x2b\x3f\x7c\xe3\x61\x16\x6e\ +\x46\xcf\xce\x26\x31\xbd\x98\xc5\xfc\x44\x96\xf3\x6e\xa2\x7d\xc0\ +\xa5\x6c\x03\x0e\x89\x99\x08\xb4\x36\x4f\x6c\xa2\x82\x85\x0e\x2d\ +\x4d\x27\xa3\xef\x01\x22\x4d\x51\x11\xbc\xaa\x8d\x7e\x82\x33\x5d\ +\xba\xca\x9f\xbb\x03\xf2\xc5\x37\x3d\x79\xad\xa8\xe2\xbe\xf9\x68\ +\x7e\xe2\xdc\x58\xe6\x17\xd3\xc8\xb2\xde\x1a\x1f\x9d\xba\x43\x2a\ +\x5e\xda\x14\xa1\xec\xf9\x64\x3a\x36\xf9\xbc\xa8\x2d\x7b\xde\xf0\ +\xb3\xcd\x4c\x3b\x2c\x9f\x75\xf0\xad\xe9\x12\x90\x35\xbd\x8e\xa7\ +\x36\x45\x47\x24\x07\xf2\xf0\xa6\x5d\x05\xdf\xe9\x28\x9f\xa9\x0b\ +\x30\x0b\xd5\x2d\x9b\x68\x97\xb9\x01\xcd\x38\xd1\x37\xa4\xd2\xa1\ +\xc8\xd1\x69\xd4\x2e\xd8\xa7\x4c\x6c\x44\x36\x7f\x91\x55\xfe\xe8\ +\xee\x5b\x3f\xb2\x7f\xb6\x54\x40\x24\x43\x6e\x72\xe9\x9c\x38\x9d\ +\xc5\xec\x3e\x9b\x31\xea\x60\x93\xa9\xce\x11\x5e\x9f\xa7\x74\x92\ +\x8f\xd5\x57\xb6\x72\x6d\x75\xa5\x3e\xf4\x74\x1d\x57\x1f\x6c\xe2\ +\xfa\x03\xd1\x4f\x36\x71\xf5\x64\x1d\x4b\x85\x8d\xce\xc7\xcd\xb5\ +\xc6\x36\x75\x3f\xee\x5d\x79\xff\x5c\x64\xd7\xf7\xbd\x11\x2c\x5b\ +\x6a\xc7\xf1\x42\xf9\xb2\x99\xe6\x27\x2f\x95\x27\x3c\xd1\xd4\x53\ +\x4b\x33\xd2\x39\xc1\xd3\x8b\xf9\xba\x49\x6c\x25\x06\x1a\xee\x89\ +\x2a\x9c\x3b\x2b\x20\x2c\x99\x2c\x64\x14\x3d\x57\xe7\x20\x7e\x1b\ +\x74\xee\x53\xa7\x1a\x0d\x62\x74\x6f\x14\xf3\x97\x37\x71\x3a\xbf\ +\x89\xcd\x54\xe5\x94\xfe\x52\xe7\xe9\xe8\x52\x3e\x3f\x91\xea\xdb\ +\x1a\x8b\xde\xd6\xd0\xf6\xf6\x2e\x6e\xbe\xbd\x8f\xe7\xdf\x8c\x78\ +\xf6\xf5\x88\xf7\xbf\xb1\x8a\x0f\x34\xe6\xbc\xfb\x78\x1a\xef\x3f\ +\x19\xc7\x93\xcb\x69\x3c\x5d\x4d\xe2\x86\x8d\x45\xd5\x21\xd9\x0e\ +\x3c\x74\xe0\x36\x9f\x1d\x2a\x9f\x3a\x9f\x3b\xb8\x1d\x2f\x8e\xf4\ +\x53\xc2\xb1\x51\xaa\x2f\x9d\xff\x6c\x9a\xfb\x97\xe0\xf0\x30\xdd\ +\xab\xb4\x6c\x0a\x86\xb1\x52\x00\x0e\x3b\xcb\x1d\x69\x54\x57\x6a\ +\x23\x07\xb7\xad\xc6\xd3\x4e\x49\x25\x70\x9f\x1b\x04\xdb\x03\xf7\ +\xe4\x8b\xd0\x0c\x70\x8b\xa7\x57\x30\x45\xba\x16\x91\x81\x5e\x4e\ +\x19\x79\x4a\x6d\xe7\xa7\x97\x57\x2b\x75\xbe\xfa\x55\xfb\x6e\xb3\ +\x8e\x87\xea\xd3\x8b\xdd\x07\xf1\x8d\x7f\xf1\x3b\xf1\x78\x75\xe5\ +\x14\xfe\x31\x42\x4b\x4e\x9e\xf4\xcf\x23\x7c\xcc\x80\x36\xd9\xa8\ +\x1f\x9f\xc6\x3f\xf9\x17\xff\x4d\xbc\xf2\x99\x73\x8d\x1b\x34\xbd\ +\xce\x3f\xc6\x56\x49\x19\xef\xdc\x72\xad\x2d\x5b\x9f\xed\xc6\x00\ +\xa0\xa7\x6f\xf7\x3b\xe2\x2d\x89\x45\xf4\x2b\xc7\x13\x33\xb4\xa6\ +\x24\xa1\xa3\xaa\xbb\xb8\xef\x83\x4b\xd0\xe4\x3c\xc1\x9a\x73\xbc\ +\x41\x3f\x6d\x69\x12\xdd\x01\xa9\x97\x3e\xa0\xd5\xe5\xd6\x51\x4e\ +\x6b\x07\xd3\x0a\xaf\x7a\x5c\x33\xc8\x76\xa0\xf1\x53\x62\xff\x27\ +\x27\x6a\x0a\x99\x16\x7d\xce\xa9\x8e\x7d\x10\x86\x5e\x51\xa6\xc4\ +\x0a\x3a\x8f\x56\x3b\x36\xca\x9e\x6b\xf8\xe6\xc9\x4f\xcd\xe3\x54\ +\xae\x3e\x60\x93\x3a\xc8\x8d\x8a\xed\x7a\xc5\xa9\x57\x65\xa8\xb6\ +\xf9\x88\x73\x2b\xf3\xce\x63\xc2\x1d\xba\x12\xdf\xa5\x61\xeb\x44\ +\x8a\x01\xe2\x26\xbc\x5f\xfb\xba\xc7\x4f\x7c\x48\x99\xc7\xa2\xb2\ +\x33\xb4\x05\x24\xaf\xc9\x65\x05\xdf\x4b\x60\x59\x87\x7d\xd4\x27\ +\x75\x5c\xc5\x3e\xa4\x02\x52\x43\x47\x67\x7d\xd3\x85\xe8\x1f\xae\ +\x0f\x85\xfc\xe0\x2d\xbc\xd4\x45\x96\x9b\x66\x92\xa9\x6f\xbb\x8f\ +\xab\xf3\xf1\x71\x1c\xca\xfd\x1e\xed\x4c\x68\x52\x8d\x4d\x5a\x73\ +\x49\xee\xba\xae\x4d\x20\x05\x62\xc8\x32\xc8\x1f\x39\x93\x21\xd3\ +\xc1\x75\x7a\x42\xc7\x93\x02\xc5\x22\x6f\xbf\xbe\x11\x1f\x24\xb3\ +\x0f\x60\xf4\xd2\x27\x68\xf4\x3d\xe7\xaa\xf4\xfe\xf1\xdf\x20\x4d\ +\xe2\xfc\x50\x9e\x96\xa7\x0e\x8e\xe7\x27\xe9\x1c\xf5\x91\x91\x0e\ +\x6e\xea\x36\xfd\xe4\xa7\x8e\x79\x9c\x5f\x59\x95\xc5\x33\xc1\xd7\ +\x7c\x63\x57\x06\x44\x9e\x27\xd6\x83\x81\x1d\xd7\xb1\xc9\xac\x33\ +\xf8\x1c\x47\x4c\x36\x29\x07\x74\x05\xa7\x49\x9f\xb2\x3d\x6d\xce\ +\xe0\x73\xa6\xe5\x07\x03\x39\x08\xdf\x74\x68\xba\xc6\x8d\xf6\xc7\ +\x44\x1d\xac\xec\xbc\x5c\x7f\xc4\x60\x19\x52\x96\xba\x00\x3a\x3a\ +\x0e\x59\x80\x79\xc9\xb1\xfd\x92\xe3\x1f\xeb\xcf\xf5\x7a\xa7\x33\ +\x55\xe7\x2a\xe7\x68\x2a\x19\x37\xba\xc5\x13\xc8\x33\x1d\xe8\x79\ +\x02\xb3\xb2\x6f\xbf\x00\x92\x55\xf6\x89\xab\x00\x35\x4a\x92\xad\ +\x69\x44\xbc\x92\x99\xe0\xa7\xd4\x74\xbe\xee\x76\xbc\xb2\x99\x4d\ +\xf0\x7c\x6d\x2b\xa1\x8d\xaf\x2f\x02\x19\x15\x29\xf0\xf9\x54\x7d\ +\xbf\x09\x9c\x7d\x17\x86\xfe\x6a\xdc\xa2\x4d\x44\xf5\xbc\x4c\x8b\ +\x09\xfb\x48\xd4\x71\x11\x6a\x6c\xe6\xe5\x8e\x27\x5b\xa0\x94\x55\ +\x50\xfa\x42\x0f\x8a\x34\xb9\x03\xf9\x64\x3a\x8e\xfe\x28\x42\x4d\ +\xb8\x6c\x0a\xac\x45\x3d\x68\x12\x27\xe9\x01\x48\x86\x19\x1d\xb2\ +\x1f\x9a\x4a\x96\xb9\x0d\x1a\xcf\x0a\x19\x57\x1f\xea\xe3\xc0\x8b\ +\xd6\xd3\xab\x54\xc9\x3e\x5e\x50\xaa\xe4\xc7\x39\x30\x9f\x9c\xc4\ +\xa3\xd7\x67\xf1\xf5\x6f\x7d\x4e\xeb\x47\xe6\x50\x43\x5f\xa1\xee\ +\xb2\x7d\x84\x23\x1c\xe1\x08\x47\xf8\x28\x60\x94\x3e\xc2\x11\x8e\ +\x70\x84\x1f\x3e\xb4\x79\x5a\x37\xd3\xfb\xe1\x80\x27\x94\x49\xbe\ +\x00\x07\x53\x45\x66\xc3\x06\xb4\x07\x12\x48\xad\xc1\xbe\xf4\x2f\ +\x7f\x27\x5e\x99\xde\xc4\xeb\xf7\x2f\xa2\xfe\x97\x9d\xfb\xc8\x42\ +\xfc\x62\x96\xc5\x03\x38\x17\x0a\x09\x6d\xaa\x5f\x8b\xc7\x36\xbc\ +\x96\x43\xe6\x99\x26\x92\xa1\x23\xa5\xea\xc5\x13\xb8\xe6\xce\x2d\ +\x4d\x83\x8e\x82\x20\x4b\xf2\xf5\xcd\x4f\x3b\x55\xcc\x0f\x83\x8f\ +\x92\x09\xf0\xc5\x1b\x0f\x64\xea\x8c\x3b\xe0\x3e\x83\x5f\xf7\xb8\ +\xdc\xc4\x6e\xbd\xe1\x4e\x87\xd6\x56\x2d\xcf\x44\x5e\x6b\xb5\x00\ +\xf4\xab\xc7\x04\x47\x53\x21\x17\x25\x29\x67\xc1\xb3\xd5\x6a\x72\ +\x2d\x7b\xde\x83\x12\xe3\x4a\x8b\x92\xab\xfd\x34\x76\x9b\x93\x58\ +\x6d\xe7\x71\xb3\x5a\xc4\x72\x39\x8e\xeb\xe5\x3c\xb6\x1f\x4c\x63\ +\xad\xb0\x7c\x7f\x1c\x8b\xf7\x46\x31\x7d\x22\xde\x33\x6e\xc0\xaa\ +\xd2\xc6\x5a\x5c\xb2\x76\x3e\x8f\x98\xbf\xbc\x8c\xc9\x3d\xfe\x4f\ +\x4d\x19\x50\x1e\x41\x2e\xa8\x2a\x00\x23\x76\x09\x10\xf4\xa1\x6b\ +\x4b\xe8\x62\x7a\xa1\x24\xbf\xfa\x57\x3c\x8a\xcb\x3a\x96\x0d\x2c\ +\xf3\x49\x47\x18\xc9\x0f\xb9\xc0\x06\x84\x0a\x83\x3b\xf9\xca\xc7\ +\x56\xa7\xe2\xb1\x72\x9e\x4d\xe4\xd7\x38\x26\x8b\xa9\x37\xd5\xa6\ +\x6c\x46\xf0\xf0\x09\x9b\x33\x14\x43\xc9\x09\x7b\x55\xf5\xe6\x7a\ +\xe5\x27\xf3\x6e\x9e\xdd\xc4\xf2\x72\x13\xcb\xab\x4d\x5c\x3f\xcb\ +\x4d\xb4\xe5\x33\xe2\x6a\x17\x95\x3d\x7d\x54\x50\x1e\xd3\xf9\x24\ +\xe6\x17\xb3\x98\x9d\x2b\xb0\xa9\xa8\x76\xad\x3b\x0c\xb9\x60\x94\ +\x4e\xf6\x35\x78\x3d\x9d\x8b\xbc\x9e\xdf\xd2\x98\x46\xc6\xe7\x20\ +\x4e\xfb\x09\x53\x01\xa9\xa8\xa0\x3c\xc4\x9d\xac\x73\x71\x8d\x84\ +\xb2\x20\xb3\x6d\x6e\x2e\x60\x97\x0d\x21\x6e\x80\x80\xed\xdf\xc4\ +\x71\xf7\x41\x2a\xc1\x1b\x55\xf0\x49\x9a\xfa\x60\xdf\xb0\x41\xcf\ +\x27\x49\xe2\xb4\x97\x81\x7b\x27\xd6\xaf\xbc\x1c\x2a\x6f\xeb\xda\ +\x26\xe9\x24\x77\x5f\x4f\x9d\x56\x6e\xdf\x48\x22\x38\x8e\x2e\x3a\ +\x43\x99\x78\xf8\x56\xf6\x9c\xd6\x1f\xe8\xd4\x23\x50\xee\x1d\x9d\ +\x41\xed\xe7\xff\x1d\xf4\x39\xa3\xba\xa9\x72\xb0\xa9\x65\x7f\xf4\ +\xb1\x3e\xe9\xe8\xbc\x95\xde\x3a\xce\x2b\x7d\xee\xeb\x4c\xba\xce\ +\x37\xdb\xd5\x3a\xe4\x6b\x7f\xb0\x81\x3c\xe3\xbc\xba\x69\x7a\x32\ +\x8d\xd9\x83\x59\x4c\xce\x26\xb1\x9b\x4e\x5d\x77\xbb\xbd\xb7\x9f\ +\x69\x3c\xf7\xd3\xed\x6a\x1c\xeb\xe5\xc8\xbf\x76\x5e\x5e\xb1\x09\ +\x28\x11\x4f\x4a\xb0\x97\xb1\xda\x05\xff\xbd\x46\xff\xb6\xab\x20\ +\x61\x7c\xf0\xff\x17\x9e\xa8\x3d\xd4\xcf\xa6\xa7\x73\x3f\x49\xe4\ +\x57\x3b\xaa\x2f\xef\xa6\x6a\xcf\xd9\x54\xe5\x4c\x9f\x59\xc8\x8f\ +\xd7\x3a\x97\x96\x0a\x9c\x3f\xae\xa1\xf4\xd3\xb8\x00\x2e\x21\xa1\ +\xe7\x37\x49\x2f\x2b\xa9\x3b\xb4\x40\x28\x6b\xbd\x82\xd9\x6c\x82\ +\xea\x5c\x3b\x57\xfc\x25\x8d\x09\x0f\xb6\x31\xdb\x2f\xd4\x37\x27\ +\x31\xbb\xd6\xf8\xf1\x44\x75\xf6\xae\x54\xbf\x2d\x3f\xbf\xae\x81\ +\xe2\x5b\xd3\xd8\x2a\x2c\x79\xa5\xec\xb7\x66\x71\xf3\xd6\x22\xd6\ +\x4f\x4e\xe2\xfa\xfa\x34\x36\xeb\x85\xc6\xa2\x45\x6c\x62\xae\xc2\ +\x51\x0b\x02\x8f\x1f\x99\x9f\x6a\xb5\xc8\xba\xb9\x03\x5d\xd0\x79\ +\xdd\xf1\x1a\x61\xcd\x24\x05\xee\x0b\x88\x8a\x0d\xf2\xeb\xa7\xd4\ +\x06\x3b\x7e\x38\xb0\xe2\xc6\x72\x53\x68\xc7\x1e\x7f\x37\x30\xcc\ +\x39\x41\xfe\xc2\x74\xd0\x81\x4d\x3b\x02\xd7\x15\x97\xa5\xe4\x4a\ +\xe0\x6e\x55\x7d\x13\x86\xe3\x90\x29\x4e\xb8\x15\x07\xbb\x5c\x0d\ +\x06\x24\x90\xcd\xd7\x1c\x48\x60\xfc\xd8\x70\xc3\x5f\xe3\xc7\xcd\ +\x6a\x99\x17\x05\xe9\x71\x1d\x3a\x9d\x2c\xe2\xd3\x2f\x9d\xc4\xe4\ +\xc9\xd3\x78\xfc\xa6\x1a\x4f\xe0\x73\xcf\x95\x9f\x28\xcf\x83\xde\ +\xde\x11\x7e\x8c\xa0\x66\x68\xfd\x9f\x57\x19\x5e\x3d\xff\x20\xae\ +\xc7\x6f\xc5\x83\x57\xce\xd5\x6e\x1a\x28\x74\xa4\xb5\x72\x2c\x1c\ +\xc2\x30\x36\xa4\x6d\xb0\x52\xa5\xc4\xfd\xb0\xe1\x1a\x0e\x3b\x10\ +\x8d\x65\x5f\x77\x85\x5f\xe8\xaf\x05\xf6\x31\xdd\x44\xab\x11\x3e\ +\x07\xda\x6b\xca\xe8\x5c\xee\x66\xa5\x07\xdc\xb6\x03\xb4\x71\xd8\ +\x37\xf0\xf1\x67\xa0\x75\xa0\x3f\x70\x06\x93\xbc\xee\xb1\x06\x47\ +\x33\x3d\x66\x3a\x7d\x0b\x83\xcc\x5b\xd2\xc2\x8d\x5f\xd2\x17\x80\ +\xf2\xb1\xf1\x7c\x73\x73\x15\x57\xd7\xcf\x74\x3d\x5a\x33\x3a\xca\ +\x8c\x06\xfb\x58\x89\xf2\xa4\x45\x58\x65\x8d\xad\xe6\x31\xcf\x35\ +\xe6\x3d\x53\x79\xf3\x15\x80\xce\x68\x84\x0c\x63\x3a\x42\xdc\x99\ +\x59\x32\x6f\x8f\x53\xa6\x74\xb8\x9d\xa4\x93\x49\xd0\x74\x1a\x50\ +\xe7\xdd\x8f\x9b\xa4\x40\x3d\xf6\xe5\x15\x14\x0d\xea\x03\xc7\x36\ +\x3e\x97\xbe\x02\x28\x31\xbc\x62\xa8\x3e\x92\x26\xf3\xb4\x8f\xa0\ +\x52\x5b\x07\x8e\x0f\x34\x84\x08\xc6\xab\x6c\xdf\x2e\x17\x01\x29\ +\x79\xed\x5e\xf2\x72\x88\x14\xcf\xd7\x3d\x92\x92\xa7\x24\xf0\xf9\ +\xc8\x56\xeb\x1b\x6e\x63\x73\xc5\x63\x4e\x60\x6b\x19\x38\x38\x2b\ +\xfc\x53\x25\x98\x47\x94\xb4\x2d\x66\x1d\xc5\x6c\xaf\x30\xbc\x12\ +\x3a\x1f\x18\x8d\xe3\x02\x28\x47\xb3\xc0\x92\xf3\x29\x3d\xf4\xad\ +\xe7\x4f\x7a\x06\x0b\x3a\xb9\xa4\xc9\x40\x69\x73\xb3\xad\xe9\xa1\ +\x08\xee\xe3\xcd\x86\xd3\x0e\x64\xf6\xab\x7d\x48\x27\x6c\x70\x5e\ +\x45\x0b\x2a\x65\x51\x09\x95\xca\xe9\xb0\x66\x5e\xa9\xb8\x0e\x9a\ +\xaf\x8a\x67\xfd\x32\xb3\xb2\x50\x54\x05\xcb\x32\x86\x2c\xcb\x4d\ +\x47\xcb\x3e\xd1\xd7\x65\x06\xf4\x1d\x74\xe0\xd3\x18\xa6\xbb\x68\ +\x23\x74\x6c\xf3\x92\xd6\x77\x15\x6d\xff\xf9\x95\x74\x59\xb1\xbf\ +\x10\x28\x8a\x46\x06\xc7\xc2\x2a\x09\x18\x97\x53\x98\xf3\x7c\x8d\ +\x49\x5b\x16\x4c\xd8\x4b\xe5\xd4\x55\xc8\x43\x0f\xc3\xa8\x35\x7d\ +\xc8\xb2\x66\xb8\x95\xa0\x7c\xec\x01\x1d\x66\x8c\xc2\x94\xa1\x25\ +\x13\x40\xfb\x3c\xd5\x67\xbb\xdd\xc4\x4a\xf3\xfe\x95\xe6\xbb\x37\ +\x2b\xad\x4f\x56\x89\xdb\x1a\xb9\x8d\xa1\x2d\x31\x59\x90\x0e\xc8\ +\x23\x3c\x74\x52\x36\xdc\x28\xb3\x3b\xce\x18\x9c\x28\x37\x55\x33\ +\x92\xe3\x4d\xa6\x75\x16\xc0\xc0\x57\xff\x78\x92\xf1\x4b\x34\x3f\ +\x5c\x20\xee\x24\x29\x2e\x68\x86\x07\x60\x56\x96\x2f\xa9\x43\xb0\ +\x44\x4c\xf8\x5e\x06\xc9\x2e\xd8\x65\x85\x0b\x1a\x00\xe6\xb2\x2d\ +\x59\xc7\x64\x1f\xec\x2a\x5b\xd8\x9f\xe2\x19\x25\x69\xca\xed\x6f\ +\x0e\x90\x78\x78\xec\xb1\x80\x82\x13\xad\x90\xfd\x28\xa3\x9b\xdd\ +\x8d\xe8\x79\xec\x2f\xae\xe3\x8f\xbf\xf6\xbb\xd5\xf7\x5b\x38\xc2\ +\x11\x8e\x70\x84\x23\x7c\x3f\xc0\x38\x7b\x84\x23\x1c\xe1\x08\x3f\ +\x7c\x68\xf3\xb5\x5b\x93\xcc\x1f\x24\x7c\xa8\xe9\x3b\xe7\x8a\x43\ +\xe6\xc0\x39\x6e\xfc\x8c\xd7\xf1\x3b\xbf\xf8\x8f\xe2\xe5\xc9\x32\ +\xe6\x9a\xf5\x0e\x07\xca\xf6\x0a\x20\x7e\x81\xe7\x9b\x8f\xdd\x0c\ +\x7e\x08\xc9\xf3\x24\x56\x87\xc4\x66\x75\xb4\xe3\x0e\x39\x59\x4e\ +\x1e\x07\xf1\x3c\xe9\x96\x15\xcb\x15\x0a\xfa\x9c\x34\x91\x67\xe6\ +\xbe\xa9\x45\x03\x71\xf3\x07\xca\x1f\x06\x65\xd3\x9a\x95\xaf\x31\ +\x8b\x3b\x66\xf8\x7c\x31\xa6\x40\xd1\x46\x2a\x6f\x5c\xaf\xbd\x31\ +\xc0\xd3\x69\xbc\x8e\xb0\x39\xe2\x79\x7b\xe9\x12\x86\x74\x17\x04\ +\xce\x4b\x47\x3e\x49\x01\xb9\x60\x02\x8f\x95\x11\xcb\x23\x59\xcf\ +\xd7\x84\x98\x1e\xc7\xcd\x7e\xac\x05\xd0\x44\x8b\xc7\x45\xec\xb6\ +\xb3\x58\xef\xe6\xb1\xbd\x51\x78\x32\x8a\xed\xdb\x5a\x4e\xbf\x1d\ +\x31\x7d\xaa\xc5\xd2\x93\xad\xdf\xd3\xef\x8d\x2c\x59\xdd\x72\x43\ +\xff\x54\x16\xe7\x0a\xca\x24\x7f\x5d\xde\xb9\xe3\x72\x91\xbb\x5f\ +\x09\x07\x17\xec\x5f\x28\x0b\x4b\x98\x21\xf5\x72\x81\xa4\x20\xc2\ +\x75\xce\x82\x4c\x66\xdb\x06\x5b\xd3\xb3\x71\x9e\xda\xd9\x8e\x63\ +\xc2\x62\x77\xa7\x45\xd3\x56\xf9\xb2\xa9\x40\xee\xaa\xe3\x7c\xca\ +\x49\x34\xbf\xce\x9f\xab\x99\x17\x6c\x7a\xcc\x63\x76\x32\xf3\x7a\ +\x9f\x85\x16\x1b\x22\x7e\xf2\x47\xf6\xc6\x1b\xc5\x6f\xf6\xb1\x7e\ +\xbe\x89\xe5\xb3\x55\xdc\x3c\x5d\xc7\xfa\x6a\xa7\x45\xab\x8a\xba\ +\x96\x9e\xf2\xe0\x21\x31\x9a\x88\xcd\xb4\xf9\x7c\x1c\xd3\xfb\x6c\ +\x70\x28\x6f\xee\x57\xba\x3d\x09\x49\x93\xb7\xfb\x32\x7c\xe2\xc6\ +\x25\x33\x2d\x5f\xa5\xd3\x42\xaf\x87\x0e\x05\x54\xbc\xd9\xb3\x4e\ +\x95\x9f\x9b\x8e\x30\xab\x32\x78\x9a\x64\xcc\xff\x3b\xa8\xaf\xf0\ +\x30\x0f\x66\xa4\x9d\x49\x9d\x4e\xf9\x78\x45\x99\xd8\x7d\x0f\x9e\ +\xf9\xa2\x15\xda\x13\x5b\x0e\xa4\x71\x3c\xed\x28\xe1\xc0\x07\x42\ +\xea\x65\x46\x8d\xd7\x07\x78\x04\x7f\xd0\xc1\xe6\x5e\x7d\xa4\xcb\ +\x8f\x3c\x48\x2f\x1e\x74\x6d\x56\xf9\xf5\x95\xe0\x0a\xf6\x89\x1e\ +\x66\x47\x44\x2b\xb0\x89\xc4\x79\x2a\xae\xdb\xcd\x9b\x65\x2a\xfb\ +\x48\xe7\xcc\xfe\x46\xe7\x0d\x9d\x85\x13\xc3\x3e\xf0\x4d\x3d\x47\ +\x26\x95\x86\xd4\x32\xd9\x6c\x66\xbd\xab\x0d\xd9\x00\xb4\x5f\x15\ +\x14\xef\x7f\x41\xce\x8d\x4e\xf8\x6c\xc4\x09\xbb\x4e\xd2\x56\xb3\ +\xcf\xff\xa7\x4d\x17\x3c\xa9\xb6\x88\xc5\x83\x69\xec\x79\x5a\x51\ +\xea\x69\x7f\xe2\x3e\x93\xe7\x40\x02\x38\xcf\x3d\xda\x54\xed\x68\ +\xb3\xd2\xc5\x9c\x0e\xe4\x3b\x66\x23\xf8\x64\x12\xe3\xb3\x69\x4c\ +\xce\xe6\xfe\xbf\xb4\x9d\xfa\x86\xc7\x2a\xc9\x77\x2a\x13\xaf\xe8\ +\x0b\xf5\xed\xd1\x88\x1d\x6d\xf9\xac\x3e\x31\xbe\xde\xf8\x29\xca\ +\xfc\x00\x2d\x57\x41\x32\x06\x98\xfa\x02\x3b\x52\xec\x86\x05\x12\ +\x67\xea\x1c\x43\xdc\xed\x7a\xa9\x41\xb5\x1e\x53\x6e\x08\x9f\x6e\ +\x62\x76\xb6\x8a\xdd\x54\xbe\xad\x54\x17\x1f\x4c\x63\xfe\x96\x7c\ +\xff\xc6\x2c\x76\xdf\xda\xc7\xea\xed\x5d\x5c\xbf\xbf\x8d\xeb\xc7\ +\x11\xab\x0f\x26\xb1\x7a\xa2\x70\xa5\x93\xe7\x7a\xa6\x71\x67\x26\ +\xdb\xd8\x55\xb9\xf1\x49\x6d\xc9\x2b\x66\xb9\x81\x6a\x07\xb8\xa9\ +\x33\xe2\x77\xe2\xe9\x0d\x00\xe5\x98\xdd\x29\xaf\xac\x5b\xb8\x09\ +\xf9\xca\x66\x96\x2a\xe3\x80\xc5\x60\xf2\x53\x8c\xcd\xd8\xed\xd5\ +\x36\x36\xea\x4b\xc9\x47\x55\x1f\x27\xab\x44\x77\x42\xb3\xd4\xa0\ +\xd5\x5f\x97\x43\x1d\x33\x1f\x63\x55\xa4\xcf\xe5\x0a\x43\xf0\x4d\ +\x50\xf2\x73\x80\xc3\xa1\xe2\xc6\xf0\x6e\x81\x4c\x9a\xdd\x64\x2d\ +\x6b\x01\x64\xa5\xec\xc4\x39\x9e\x32\xae\xb2\x91\xbb\xd1\x38\xb2\ +\x89\x9b\xf5\xda\xdd\x01\x98\x69\x5c\xff\xcc\xeb\x9f\x88\xfd\xf5\ +\x3b\xf1\xa5\x5f\xff\x0d\x8f\x7b\xf4\xaf\x06\xd8\xc9\xf2\xdc\x91\ +\xe1\x11\x7e\xf4\x50\xcd\xc0\x98\xc4\x7b\x67\x7f\xfe\x97\xfe\x87\ +\x38\x7d\x38\xc9\xcd\x77\xda\x26\xbf\xd5\x6e\xa9\xe9\xd0\x9a\x4f\ +\x80\x5e\x7e\x1c\x91\x2c\x85\x3e\x96\x9e\xbb\x24\xe3\x54\xc6\xdc\ +\x4f\xb3\x9b\x16\xb6\x28\xe5\x4d\xeb\x4e\x60\x20\x69\x0a\x22\x37\ +\xfc\x08\xc0\x37\x93\x61\x7e\x64\xca\x04\x54\x30\x21\xec\x4b\x84\ +\x99\xf6\xdc\x00\x95\x61\x68\x6b\xa4\xf9\xa4\x02\xf3\x0b\x8f\x5a\ +\x70\x54\x63\x1a\x53\xdb\x7f\x4e\x35\x4b\x2d\x15\xb8\xa3\x1b\x21\ +\xd0\x68\x5e\x94\xa0\x32\x73\xdd\x71\x4e\xc9\x3e\x3f\x04\x7b\xf6\ +\xfc\xdd\xb8\xba\xd1\xc4\x29\xae\xa4\xff\x54\xd2\xe7\x0a\x4b\xe5\ +\xbc\x14\xd6\x38\x29\xfe\xcd\xf5\xfb\xb1\xde\x3f\x51\x1a\x36\xd9\ +\x36\xfe\xd1\x0c\x73\x8d\xce\x8b\xce\x01\x4a\xd2\xf2\x14\x2e\x51\ +\x83\x4e\xad\xe0\x36\x5d\x43\xeb\x00\x06\x11\x99\xf3\x78\xa0\xbc\ +\x87\x65\x3c\x80\xc6\xef\xec\x50\x73\xe8\x33\x5e\x2b\x46\xe0\x63\ +\xdc\x03\x74\xb6\x29\xd0\xe4\x89\x0f\x24\xe6\x2b\xb8\x88\x44\x88\ +\x95\x3f\x4d\x66\x91\x8e\xb4\x37\xdd\x5c\x74\x6e\xe4\xc8\x8e\xae\ +\x83\x50\xfd\xa7\xf8\x56\x17\x55\x06\x9a\x8d\xec\xb7\xc9\x28\x51\ +\xca\x80\xe2\x15\x59\x21\xeb\xde\x65\xee\x42\x7d\xac\x90\xf6\xd2\ +\x24\x07\x4b\x92\x57\x29\xe1\xe1\x93\x35\x4c\xdb\xc3\xd4\x71\x27\ +\xc6\x4f\xf1\x29\x0b\xc1\x71\x69\x55\x05\x5b\x8f\x79\x53\xa5\xb1\ +\xcd\xb4\xd6\xf1\x7a\x3e\xb4\x6c\x16\xbf\x61\xea\x57\x47\x7d\x4a\ +\x0b\x9e\xa9\x04\x5f\x7b\xfc\xa1\xbc\x84\x94\xe6\xdc\xa9\xd2\x28\ +\x98\x2f\x1f\xb3\x6e\x45\xc3\x2c\x9f\xf3\xfa\x95\xb6\x26\xfa\x88\ +\x9b\xf2\x4c\x65\x7d\x78\xc8\x11\x74\x7e\x96\xcc\x73\x2e\x7d\x2a\ +\x41\x07\xc9\xd5\xa7\x5c\x6b\xa2\xd6\x1e\xe6\x98\x09\x96\x5e\x8b\ +\x9a\x93\x09\x9a\x8d\x26\x4f\xdf\x92\x26\xa4\x06\x48\x29\x34\x39\ +\x5b\x6b\xd2\xaf\xd3\xa2\x20\xf5\x6e\x03\xac\xc6\xee\x30\x4e\x32\ +\x3f\xf5\x89\x07\xa3\x78\x4d\xd9\x6c\x0e\x9d\xf1\x02\x0b\x5a\xd5\ +\xeb\x0b\xa1\x73\x33\x4f\x8c\x82\x3c\x57\xd9\xb0\xf2\x53\xbd\x5e\ +\x13\xc0\x4e\xdd\x06\x8d\x92\x76\xb3\x6a\x9c\x36\x85\x33\x22\x85\ +\x92\x56\xdc\x35\x60\x16\x07\xa5\x95\x3a\x94\xe7\x65\xae\x31\x8d\ +\xd3\xcd\x1f\xe7\x69\xc2\x56\x89\xfa\x8d\x0a\x8c\x65\xd2\xe5\xbf\ +\xcf\x19\x5b\x86\xd0\xc7\x9c\x49\x87\xc0\x07\xc5\x7c\x01\xb2\xdc\ +\x6d\xdd\xc8\x08\xee\xf9\xd3\x9d\x69\xd2\x68\xb6\x2b\x07\x3c\xcf\ +\x60\x48\xb1\x51\xdf\xa6\x7d\x3f\xa8\x24\x2f\x82\x99\x3a\x50\x67\ +\xad\xde\x04\xd4\x19\x1f\x6a\x21\xfb\xb5\xd6\x87\xcc\xcf\xe7\xd3\ +\xb8\xf7\x70\x1a\xff\xe4\xd7\xfe\x47\x9f\xc7\xa4\xe8\x5b\xe3\x08\ +\x47\x38\xc2\x11\x8e\xf0\xbd\x42\x37\x8e\x1f\xe1\x08\x47\x38\xc2\ +\x8f\x04\x7e\x04\xf3\x36\xcf\x65\x5b\x3e\x39\x5b\xec\xc8\x0e\x5a\ +\x84\x89\x70\x53\x80\xc9\xa2\x60\xbc\x89\x77\xff\xcd\xef\xc7\x83\ +\x19\xff\x32\xa1\x29\x32\x8b\x7a\x4b\x35\x61\xde\xec\x62\xb9\xd9\ +\xc4\x9a\xcd\x25\xee\xe8\x1d\xa4\x07\xd0\x64\x82\x0f\x95\x93\x55\ +\x83\x88\xb6\xa8\xcb\x00\x9d\xf1\x9e\xc9\x17\x06\x30\xa0\x8a\x00\ +\x31\x51\xf7\xe4\x5d\x8b\x96\x6e\x22\x9f\xe2\x8f\x84\x66\x0b\x5d\ +\xeb\xdb\x28\x94\x4a\x25\x32\x9f\xde\x49\x9f\x50\x26\x1f\x34\x76\ +\xfc\x7f\x12\x37\x73\xd9\x20\x50\x99\x3b\x03\xc3\x20\x68\xd6\x0c\ +\xc5\x87\x47\x68\xd0\xc9\x0d\x29\x61\xb1\x92\x7c\xd5\xad\x58\x5e\ +\x0f\x88\xc9\x2f\x0a\xc7\xe2\x11\x65\x2f\x67\xb4\xd5\xa2\x98\x4d\ +\xaa\xfd\x2c\xb6\xcb\x69\xac\x2f\x23\xb6\x8f\x77\x31\x79\x5b\x3a\ +\x1f\x8c\x63\xf7\x58\xe5\x60\x03\x67\x43\xed\x6b\x81\x3f\x99\xc6\ +\xe8\x44\x76\x16\x62\xc8\x16\xb7\xc5\x9c\x13\xf5\x45\x50\xdd\xd1\ +\xae\x7c\xda\x8d\x1b\xca\x4c\x1c\x30\x9d\x07\x7d\x69\x67\x7d\x07\ +\xfa\x24\xb7\x6a\xaa\x58\x17\xcc\x0e\x97\x7d\x75\x41\x54\xa7\xc2\ +\x2c\x60\xd9\x8c\xf1\x93\x48\x5c\x75\xab\xbd\x59\xb3\xf3\x3f\x21\ +\xb3\xd3\x45\x4c\x15\x26\x73\x2d\xf4\x7d\x03\x20\xe5\x6d\x73\x83\ +\x32\x6d\x56\x5a\x0e\xaa\x2d\x56\xf8\x50\x7e\x90\x27\xe6\x58\x14\ +\xcd\x79\xc5\x23\x9b\x69\xfc\xd7\x9f\x6d\xf0\xc4\x50\xe6\x97\xfd\ +\xae\xda\xb6\xec\xf3\x21\x0f\xda\x3c\xf5\x86\x34\x46\x33\xde\x7c\ +\x31\xed\x1f\xab\x0b\x23\xd3\xd7\x07\x95\x99\x87\x75\x78\x6a\xd1\ +\xad\x45\x25\x70\x5e\xd4\x8d\x70\xea\x81\x6a\xc1\x04\x87\xf4\xa3\ +\x68\xdb\x01\x2b\x43\x9e\x18\x6b\xa1\xf4\xac\xc8\x97\xbc\x9d\x61\ +\xf5\x88\xc6\xab\xf4\x4d\x0f\x79\x17\x07\x40\x0e\x3a\xb8\x4c\xb8\ +\x57\xcc\x4a\xef\xbc\xa9\x93\xaa\x97\xac\x9f\x3e\x6e\x4c\x3e\x0a\ +\xb9\x99\x95\x1b\x6b\xc4\xb1\xab\xa3\xf5\x31\x4b\x39\x19\x13\x76\ +\xd7\xcb\xd8\x5f\x2a\x70\xbe\xb8\xa3\x88\x5f\xfa\x4e\x63\x2c\x1e\ +\x18\xa7\x24\xcb\xb2\x54\x5e\x75\x2e\xe2\x8b\x69\xf8\xe8\x42\xd3\ +\xbe\xaa\x23\x36\xc3\x9a\x3d\x6c\x64\xbd\x64\xfa\xce\x67\xf1\xf8\ +\x3f\xaa\xe9\x62\x1e\xd3\x7b\x8b\x38\x7d\xb8\x88\xf9\x83\xa9\x9f\ +\x8e\x1c\x4d\xe4\x17\x7b\x71\x92\x7b\xe3\xce\xf9\x53\x86\xf4\x97\ +\x38\xfd\xc6\x37\xce\x66\x5a\x88\x9f\xe8\x9c\xba\x98\xc7\xe4\x6c\ +\x1a\x53\x85\xf9\x7c\x96\x4f\xa3\x29\x29\x65\xe3\xf5\xad\xe0\x09\ +\x37\xd7\x66\xfc\xdf\x15\xcf\x6d\x95\x4d\x4e\xc1\x8d\xfc\xf2\xdd\ +\x06\x7d\x09\x08\x3a\x68\x74\x8f\x5d\xac\x0e\x14\x4f\xa4\x84\x29\ +\xb3\x5c\x01\x5b\x49\x26\x41\x3b\x6c\xcd\x98\xc8\x97\x6d\x4c\x4e\ +\xd9\xd8\x63\x83\x4c\x65\x78\xe7\x34\xb6\xdf\x98\x45\x7c\x7d\x14\ +\x9b\x77\xc7\xb1\x7c\xb2\x88\xcd\xf3\x69\x6c\xaf\xa7\x6a\x33\x9d\ +\x2f\x4b\x85\xb5\xea\x52\xbe\xe2\x2a\x5e\xfa\x86\x8d\xef\xa8\xb4\ +\x8d\x34\x3b\x9f\xf9\x99\x96\x3f\x64\x4a\x9e\x79\xe8\x50\x23\xec\ +\x2f\x26\x1a\x3d\xc6\x16\xe7\x6f\x93\xa7\x4d\x00\xd4\x02\xc0\x7f\ +\xbc\xf0\x74\xf0\x9a\xff\xea\x54\xdf\x22\x85\x65\x99\x54\xd0\x11\ +\x82\x21\x7d\x0b\xca\xef\x84\xa4\x5b\x14\x51\xca\xe5\x93\xc7\x97\ +\x17\x37\xd4\x6c\x5a\xed\x9b\xfd\x94\xd0\xa1\xa4\x8d\x1c\x73\x1b\ +\x58\xa8\x1c\x5a\x7f\x4a\x79\x3b\x14\x72\xc6\xd4\x84\x6b\xb3\xe3\ +\xf9\xbf\x3e\xd6\xf9\x94\x9a\x5f\xfb\x28\x09\xfd\x50\xbd\xda\x4f\ +\x8c\x9f\xef\xb7\xf1\xf5\xdf\xfd\x9d\xb8\xbc\xba\x72\xa2\x76\x73\ +\xac\xb3\x51\x79\xb6\xd8\x11\x7e\x7c\x40\xfb\xef\x62\x13\xd3\xdd\ +\x49\xfc\xf3\x7f\xf3\x0b\x71\xf6\x8a\xc6\x0e\x8d\x3f\xed\xd5\x5b\ +\x80\xc7\x36\x13\xd0\xc2\x62\xbb\x2f\xf5\x0d\x5a\x90\x42\xeb\x28\ +\x18\x29\x92\xb8\x82\x68\xc0\x3c\x8e\x0c\x9f\xe8\xb4\x13\xf0\x36\ +\x0c\xd2\x64\x7f\x34\xa1\x3e\xa5\x3e\xe8\xeb\x3e\xfd\xb1\x4f\xfb\ +\x21\x56\x3a\x48\x7f\xc8\x8f\xd8\x0b\x05\x10\xb4\x0c\x93\xcf\x69\ +\xc6\x75\x3d\xff\x87\x37\xd3\x72\x09\x64\xe8\xcf\x9b\xc5\xc0\x30\ +\x57\x95\xdf\x66\x39\x64\xc0\x52\xe6\x47\x6a\x40\x7c\x11\x96\x72\ +\x30\xd6\x38\xa2\xf1\xf0\xf9\xea\xfd\x78\xe7\xc9\xd7\xe2\xf9\xf2\ +\x1b\x9a\xd2\x7d\x53\xf3\x89\x77\x62\xbd\x7f\x37\x96\xbb\xb7\xe3\ +\x7a\xf3\x66\x3c\xbf\xfa\x6a\x5c\xde\x7c\x25\x56\xcb\xf7\x63\xbb\ +\x7d\x1e\xdb\x1d\x9b\x6c\xcd\x3e\x70\x98\xef\x10\x9a\xbb\x85\x7a\ +\x18\x28\x42\x76\x41\x8a\xd6\x75\x24\x7d\x6f\x7d\x01\x3e\x7d\xa4\ +\xcd\xc1\x1a\xdf\x3a\xf5\x71\x2c\xbf\x19\x30\x08\x51\xfe\x75\x42\ +\x1d\x5a\xfa\x8c\x27\x82\xe5\x71\x58\x74\x0d\xc5\xe6\x35\x9d\x46\ +\x58\x8f\x80\xa6\x88\xa6\x92\x6d\x4d\x17\x4b\x7f\x1c\xd3\x37\x87\ +\x48\xae\x9f\xd9\x8e\xba\x2c\xeb\x5a\x24\xa9\x23\x68\x81\xa9\x3f\ +\x36\x77\xcc\x72\xd0\x51\x6c\xb8\xfa\x90\xc8\x80\x77\xf4\xc3\x36\ +\x1e\xe3\x03\x3c\x6b\x27\xd9\x0c\xd8\x76\xc3\xc9\xd2\x31\x83\x69\ +\x81\x93\x26\xcf\x49\x8a\x65\x71\x23\x48\x6f\x61\xda\xb3\xbf\x9d\ +\x5f\x2d\xb0\x49\x45\xc9\xab\xf4\xa6\xf9\x90\x3e\xe9\x8a\x64\x99\ +\x4a\xdf\x73\xd1\x94\xe6\xdc\x22\x2f\x16\x92\x93\x9d\x0f\x96\x01\ +\xad\x2e\x06\x9d\xd8\x32\x5f\x6f\x53\x92\xf9\xee\x65\x97\xb8\x18\ +\x4e\x21\x22\x3d\x68\x7c\x97\x40\xe7\x95\x68\xda\xc1\x1f\xe9\xaa\ +\x3d\x26\xf8\x64\x4d\x85\xe6\xa3\x74\xda\xdc\xc7\x65\x2d\x7d\x2a\ +\x5b\xd1\xa2\x6f\x05\x1d\xec\x3f\x94\x79\x3a\x38\x9a\xbe\x77\x3c\ +\x47\x20\xcd\x50\x3e\x20\x18\xfe\x16\x9d\xf9\x39\x6f\xd3\x89\xf1\ +\x89\xde\xba\xdf\x50\x9a\xaa\x13\xf1\x9c\x32\xbf\x1d\x94\xf4\x00\ +\xa8\xbd\xe4\x57\x3d\x0e\x8e\x08\xfa\xf4\x8d\x6a\x56\x5a\x5e\x89\ +\xda\x8f\xc0\xba\xb6\x33\x57\x71\x11\x76\xc7\x00\xbf\x31\x08\x69\ +\x83\x28\xc9\x5a\xaa\x3c\x96\xcc\xc7\xc4\x9c\xcb\x0e\x15\xa7\xee\ +\x13\xe0\x79\x44\x2a\x01\xa4\xe2\xf6\x29\x4b\x48\xff\xf0\xb0\x61\ +\x21\xc7\x0c\xcc\xb7\xb8\x1a\xf9\x0d\x23\x8c\x2d\x65\xff\x00\x06\ +\x66\x1b\xb4\x9c\x0f\xa0\xcc\x66\x3e\xa9\xd1\xd6\x91\x5c\xda\xbc\ +\x66\xbc\x0b\xec\xa7\x3e\xc2\x0c\x07\x2e\x97\xf3\xcc\x5c\xbb\xea\ +\x6a\x7a\x44\xd2\x7c\xca\x3e\x0a\xd0\x43\x3d\x2b\x78\x10\x88\x17\ +\x4f\xed\x44\xfb\x9d\x2d\x66\xf1\xd6\xe3\x2f\xc5\xcd\xf2\xbd\xef\ +\x6c\xf7\x08\x47\x38\xc2\x11\x8e\xf0\x91\xc0\x70\x7e\x84\x23\x1c\ +\xe1\x08\x3f\x1a\x60\xe2\xc6\xa4\xaf\x26\x88\x1f\x0a\xdf\xc7\x04\ +\xaf\x99\xec\x4c\x0f\x19\x77\xd9\x6b\x8b\xb4\x92\x75\x2a\xfb\x75\ +\x3c\xfe\x83\xf7\xe2\xe2\xea\x9d\x78\xe5\xe2\x3c\x66\x53\x4d\x69\ +\x6b\x21\xc7\x24\x99\x27\xa1\xb6\x1b\x9e\xa2\xe2\x69\x2a\x16\xba\ +\x4c\xd4\x33\x69\x03\x4f\x83\x35\x4b\xf5\x44\x55\x01\xba\x4d\x68\ +\x93\x9f\x32\x02\x4c\xe3\xa2\x59\x61\xa5\x7e\x46\xcd\x4e\xb2\x70\ +\xe5\x47\xd6\x07\x73\xf6\xa6\x31\x04\x14\xd3\x39\xaf\x7d\x04\x20\ +\xe7\x67\xb6\x08\x45\x72\xa3\xa0\xf2\x1d\x80\x7f\x99\xcc\x6b\xeb\ +\xf8\x1f\x2f\x5e\x39\xa6\x72\x7b\xb5\xe0\x15\x83\x14\x5a\xc0\x0f\ +\x61\xaf\x79\x08\x3a\x74\xa6\x3a\x9e\x73\x2b\xba\x84\x25\x6b\xbe\ +\x11\xf1\xc6\x94\xb1\x62\x2e\x68\x06\x6c\x8f\xd9\xa8\xe2\x29\xb4\ +\xf5\x3c\x76\xcb\x79\xac\x9f\x71\x63\x5c\xf1\x77\x23\x66\xef\x2e\ +\x62\xf3\xde\x28\x56\x37\x5b\xbf\xb2\xce\x65\x99\x0b\x9f\xc8\xb9\ +\x85\x12\x4f\xb8\x19\xcd\x62\x22\xdb\x8c\xe0\xbc\x1c\xba\x6c\x14\ +\x58\x8c\x21\xd7\xb7\x54\x81\xae\xc8\x60\xd9\xee\x8a\x57\x85\xb2\ +\x1a\x42\x76\x05\xb9\xa3\x2f\x9c\x9b\x6a\x0a\xe8\x13\x58\x3d\x57\ +\x3d\xfb\xc6\xc2\x54\xf5\x3e\x51\x7e\x93\xbd\x5f\xcf\x37\x3e\x9d\ +\xc5\x64\xa1\xcb\xf2\x04\x3e\x9b\x82\x6d\x53\x4c\x3a\x42\xf4\x42\ +\x6f\x5c\x29\x2d\x97\xef\xe9\x44\xe5\x66\x73\xe3\xe1\xdc\x9b\x1c\ +\xbe\x41\xe1\xb6\x94\x0d\xcc\xa0\xa5\x38\xe9\xed\x43\xd9\x82\x06\ +\xb7\x36\x4f\xfd\xa2\xbb\xf4\xc9\x1f\xfa\x4c\x3a\xe2\x2e\x7f\xc5\ +\x5d\x3f\xad\x72\x04\xae\x1f\x7c\xe4\x55\x2f\x2b\x5e\xf7\x92\x9d\ +\xd4\xbe\xbb\x2e\x44\xdb\x26\xc9\xc1\xc9\x6b\xf6\x08\xf6\xa3\xe5\ +\x0b\x96\x02\xaf\x19\x6c\xf9\x36\x9e\x88\x4c\xcf\x46\x1f\xf6\xe0\ +\x96\x28\x89\xc2\x26\xf1\x15\x3a\x83\xf3\xb3\x0d\xda\x22\xcb\xc9\ +\xff\xba\xf9\xe9\x34\xb5\x89\x03\x71\xf8\xd6\xbf\x55\x47\x2a\x40\ +\xc7\x97\x19\xca\x84\xc5\x3d\xff\x9b\xc6\xe6\x87\xca\x4e\x07\x72\ +\x96\x59\x58\xe1\xcc\x2f\xcb\x8c\xb6\x38\xd0\x12\xfb\x55\x8e\xaa\ +\x6f\xbf\x4e\x11\x3d\xea\x1e\x1d\xe2\xdc\x61\xf5\x5d\xd6\xac\x07\ +\x12\x58\xab\xd2\x74\x41\xf1\xfd\x48\xfd\x46\x7a\xad\xdd\x6d\x4f\ +\xb2\xf1\x74\xa6\x3e\xb6\x88\xd9\xc5\x69\x9c\x3c\x3c\x89\xc5\xbd\ +\x33\x6f\xe4\xf2\xff\x67\xfc\x1f\xdc\x44\x9d\x69\xc2\xeb\x48\xe7\ +\x6c\x88\xc9\x36\x7d\x53\x61\xcc\x53\x8f\xa7\x92\xf1\x1a\x51\xf0\ +\x6c\xea\xff\x49\xdb\xa9\xce\x77\xcd\xf6\x44\x7d\x0f\x5d\xa7\xc1\ +\xc6\x54\xf6\x66\x94\x42\x41\x7e\xf0\xa4\xc7\x56\x65\x54\x5c\x35\ +\xa2\xa3\x05\x7d\x28\x18\x90\x86\x56\xf7\x3e\xf9\xa9\x48\x75\x25\ +\x95\xc8\x86\xe8\x72\xcd\x54\xf7\x94\x9d\x54\x50\xa3\xec\x13\xda\ +\x4f\xfe\xfa\x09\xbe\xeb\x79\xcc\xde\x9a\xc7\xf8\x9d\x7d\x6c\xde\ +\x1f\xc7\xf2\x52\xe1\x66\xec\x71\x62\xb3\xe4\xf5\xb2\x53\x35\x95\ +\xce\x35\x9f\x64\x2d\xd8\x74\xb9\x58\xe3\x3f\xb4\x6f\xde\xb0\x83\ +\x9c\xff\xed\xa3\x86\xd7\x71\x6a\x39\x00\x2f\xd3\x64\xe8\xa1\x24\ +\xad\x2c\x70\x3a\x05\xf8\x44\x54\x57\xa2\xab\x34\x06\x3f\x21\xcc\ +\x35\x67\xb5\x8b\xcd\xf5\xc6\x6a\x95\xda\x74\x9a\x4a\xce\x10\x3a\ +\x0b\x3e\x21\x8b\x74\x78\x51\xb7\x57\x40\x97\x9b\xfb\x0a\xaa\x60\ +\xff\x3f\xe7\x00\xe8\xaa\x1c\xdc\x67\xed\x2f\x38\x11\xd0\xb4\x7b\ +\x1f\x87\xe2\xc1\xf1\xb6\xa2\x43\x2b\xb5\xb0\xfc\xf0\x86\xc6\x66\ +\xeb\xd7\x48\xb1\xeb\x30\x1a\xab\x9d\xe4\xcf\x6b\x17\x8b\x38\xd7\ +\xb8\x38\xfe\xe6\x37\xe3\xe9\x4a\x0d\x88\xcb\xf4\x73\xa7\x15\xdd\ +\x88\x23\xfc\x78\xa1\xda\xc1\xbd\x59\xd7\xc3\xf7\x97\xcf\xe2\xe6\ +\xf9\xd7\xe3\xd5\xd7\x4e\xd5\x67\x39\x13\xb8\xb8\x96\x9e\x1a\xcd\ +\x63\xa9\xb5\x9d\x28\xf9\xc6\x1c\x7a\x68\x5a\xe6\xea\x00\xce\x71\ +\x38\x65\xc9\x31\x33\x79\x1c\x3a\x63\x77\x40\x65\xe8\x6b\x16\xba\ +\xe5\x8f\x1f\xc4\xe7\x3c\xb0\xf8\x43\xd2\x0e\x00\x0d\x6b\xe9\xd0\ +\x6e\x06\x17\xe7\x43\xc0\x96\x63\xa3\x3e\xbd\xf6\xe6\x75\x6e\x96\ +\x93\x55\xde\xd0\xcf\xf4\xf9\xe9\x2d\x39\x8e\xec\x80\xc9\xb9\x93\ +\x11\x63\x93\xfc\xd8\x06\x3e\x9f\x04\xfe\x8f\x6c\xbd\x5e\xc5\x7b\ +\xcf\xbf\x1d\xdf\x7e\xf7\x4b\xf1\xe6\xdb\x5f\x88\x37\xdf\xf9\x7c\ +\xbc\xfd\xee\xe7\xe3\xf1\x07\x5f\x8c\xf7\xdf\xff\x52\xbc\xff\xf4\ +\x4b\x71\xb9\xfc\x46\xac\x37\x4f\xe4\xd7\xb3\xe0\x7f\x90\xf2\xff\ +\xbc\x9a\xdd\xbb\xa0\xf2\xb6\x5f\xe9\x89\x39\x3a\xb8\x4e\x0b\x1a\ +\xd5\x71\x44\x24\xdd\xeb\x00\x94\x91\x1c\x3d\x0e\xa8\x6e\xb8\x09\ +\x0e\x23\xdb\xb2\x07\x62\x87\xb5\xd3\xf3\x1a\x97\x24\x2d\x99\xe3\ +\xd8\x69\x35\x82\xcc\x68\xa0\x0f\x1f\xb0\x8c\x76\x1c\xe6\x90\xf4\ +\x5d\x46\xb9\x0a\x64\x3f\x24\xe8\x5a\xe8\x74\xc2\x88\x07\x3c\xf3\ +\xb9\x6e\xf2\xa3\x2f\x5f\xb3\x73\xf2\x82\x36\x1f\x7f\x1d\xaa\x45\ +\x39\x37\xf0\x03\x9f\xd5\x1f\x9d\x5d\x05\x4a\x81\x2e\xd0\x6d\x3e\ +\xe5\x57\x7c\x1f\x93\xee\xe4\xc5\x69\xba\x78\x8d\x3f\xd0\x7c\xbb\ +\x34\x3d\x36\x8d\x8e\xf5\xf0\xb3\xf9\x4a\xc9\x2a\x7d\xd9\xf0\xa7\ +\x95\x45\x98\x89\x19\x31\x45\xcc\xc3\x66\x06\x90\xe4\x9a\x23\xdb\ +\x9e\xe4\x0d\x5a\xdb\xd8\x8e\xd3\x25\x38\x25\x69\xca\x44\xf2\xa9\ +\x13\xf2\x4a\x26\xb5\xed\xdc\xa5\xe7\x1f\x0a\x89\x9f\x01\x5b\x69\ +\xcf\x71\x57\x3b\x9b\x69\xa9\x0b\x63\xcc\x0f\x81\xc4\xf3\x5c\x08\ +\x5d\xf3\xc0\x69\x9f\x4b\x9e\xdb\x4e\x39\xd9\x86\xf3\x23\x90\xb3\ +\xfc\x48\x87\x04\x22\x3c\x66\xf5\x81\x0f\x2c\x62\x59\x67\x26\x92\ +\xcf\xb1\x64\xce\xc7\xf1\x0c\xd6\x40\x46\x1c\xa7\x53\xcb\x35\xe4\ +\xb6\xf7\x27\xd9\x1d\x76\x02\x30\x8c\xe2\x83\xe9\x4f\xe5\x44\xf2\ +\x9a\x24\xeb\x3b\xa3\x8d\x07\x1c\x6a\xbd\x00\x8c\x09\xd8\xb3\x33\ +\x68\x75\xde\x88\xec\x53\x25\xa5\xbc\xad\x92\x69\x40\x40\xd6\x5b\ +\x17\x19\x22\x01\x54\xc9\x00\xd2\x09\xa5\x69\xd1\xc2\xbd\xae\xa0\ +\x22\xd4\x92\xc7\xa1\x41\x52\xc0\xee\x2a\x74\xeb\x38\x9e\x58\x1b\ +\x5c\x82\x3e\x0a\x0e\xf2\x01\x9a\x8d\xa2\x39\xf8\xfa\x01\xbf\xc9\ +\x18\xd3\x8b\x3e\x00\x31\xe8\x72\x2e\x0d\x5f\x15\x04\xfb\x2d\x94\ +\xa4\x68\x81\x88\xd4\x29\x29\x71\x53\x09\x8d\x36\xf6\x81\x1e\xf5\ +\xa2\x0e\xfe\xa5\x33\xb2\x24\x7c\x76\x3e\x8e\xd5\xee\xdd\x78\xfb\ +\xfd\x6f\x96\x3c\x65\x09\x8e\x1c\xe1\x08\x47\x38\xc2\x11\xbe\x4b\ +\xe0\xda\x73\x84\x23\x1c\xe1\x08\x3f\x1e\x60\xde\x76\xd7\xdc\xed\ +\xfb\x9c\xcf\xb5\x89\xe4\xed\x69\x61\x37\x97\xbc\x03\x72\x22\xd9\ +\x60\x14\xbb\xd9\x28\xfe\xed\xaf\xfe\x66\xbc\xb4\x78\x1e\xf7\x17\ +\x8b\x98\x68\x22\xef\x27\x92\x34\x13\x27\x6c\x78\x5d\xc4\x6e\xeb\ +\x57\x71\xbd\xf0\x2b\xfe\x5b\xe0\x89\x70\x39\xe4\x89\x70\xc5\x93\ +\x97\x44\xa3\x3b\x19\x09\x6f\x01\x3c\xbb\x59\x84\x7f\x05\xc7\xca\ +\xc0\xab\x83\x56\x00\x70\xa3\xef\x82\x92\x75\xc6\x00\x45\x58\x30\ +\xd6\xc2\xb1\x03\xc9\x89\xed\xd6\x2a\x27\xaf\xad\xbb\xe1\xff\xd3\ +\x54\x56\x7e\x44\xcd\x3a\x41\x72\x2f\x46\xb0\xe3\x20\x6d\x33\x73\ +\xe1\xef\x35\x52\x0b\x06\xe5\x31\xa0\x87\x40\x2c\x39\x4d\x41\xb8\ +\x0c\x27\x6a\x0b\x15\xec\x8a\x90\x0f\x63\xb5\xc1\x78\x2d\x72\x35\ +\x8e\xe5\x35\xaf\x69\x93\xde\xdb\xdb\x18\xbd\xa3\xdc\x1f\x4f\x62\ +\xb3\xa4\x7e\x76\x31\x9e\x6b\x71\x7c\xb6\x8f\xc9\xbd\x6d\x4c\xd8\ +\x58\x1b\xf1\x54\x21\x9b\x0e\xdc\x64\x92\x4e\xcb\xcb\x79\x0c\x03\ +\x7e\x50\xc0\x12\x13\x85\x0f\x52\xe8\xcb\x02\x28\xa2\x02\xb8\x1d\ +\x29\x27\x1f\xd7\x87\x2e\xaf\xc2\xb9\xc4\xef\x17\xe7\x2c\xde\x77\ +\x5a\xb8\xf3\x44\x0f\xb0\x2b\x3e\x4f\x09\x4d\x67\x53\xf9\x39\x8b\ +\xd9\x09\x4f\x10\xb1\xaf\xc6\x02\x7f\xe2\x45\x3e\x9b\x15\x53\x85\ +\x09\xff\xbf\x36\x1d\xc5\xfc\x64\x1c\xb3\x07\xf3\x98\x5d\xf0\x5a\ +\xbf\xa9\xf5\xb0\xed\x95\xbf\x1c\x24\xd7\xbd\x79\x99\x67\xe6\x9d\ +\xa1\xdd\x24\xc0\x69\xff\xef\x15\x74\xa7\x83\xeb\xa5\x6b\xbe\xf2\ +\x16\xce\x9b\x19\xc9\x43\xcf\x3a\xfa\xba\x4e\xa8\x1b\x6e\xbe\x57\ +\xbd\x50\x53\xbb\x7a\x65\xdb\xce\xaf\x46\xad\xb6\x93\x3e\x87\x34\ +\x93\xe9\x6d\xaf\xd9\x96\xcd\xf4\xc5\x0a\x68\x5a\xdf\x37\xe5\xcc\ +\x42\x96\x36\xd2\xdf\xe2\x95\x9e\x51\x2a\x16\x8d\x72\x8b\x97\xed\ +\x21\x26\x1f\xf2\x54\x35\x39\x4f\x6a\x0d\x99\x13\x57\x20\x5e\x75\ +\xe4\x9b\x1a\x0a\xd4\x47\xe3\x37\x5f\x51\xdd\xb1\x81\xb8\x64\x33\ +\xad\xfe\x43\x4e\x7c\xa5\xb4\x0e\x37\x75\x72\xe3\x4e\xfd\xcf\x69\ +\xa0\x53\xe6\x57\x26\x79\x23\x4f\xf6\x14\x5a\x9b\xec\xe1\x35\x5d\ +\x68\xb0\x42\xe6\x9b\x7a\xc8\xec\x26\x1b\x47\xa4\x73\xda\x9e\xf6\ +\xe6\xac\x6c\x91\x8e\x8d\xaf\xc9\x8c\xff\x54\x9b\xc7\xf4\xfe\x34\ +\xe6\xf7\x26\xea\x3f\x93\x98\x9c\xca\x3f\x05\x9e\xe6\x9a\x9f\x4a\ +\xa6\x30\xe1\xff\xfd\xce\x78\x7d\xa8\xf4\xe7\xf4\x47\xd9\x74\xde\ +\x59\x6f\xf4\xe7\xa9\x78\xa3\x99\xf8\x6c\xc0\x79\xa3\x2d\x37\xdb\ +\xf0\x9b\x7c\x95\x73\x4c\x34\x46\x4d\x96\x72\x70\xad\x3e\xb9\x51\ +\x95\x56\x9d\xea\x68\xf0\xf2\x9f\x08\x75\x08\xaa\x8f\x79\xd5\x9f\ +\xcc\x71\x5c\x07\x05\x10\xd1\x54\xc0\x02\xfe\x70\x8b\x1e\xff\xf4\ +\x65\x73\x6f\x31\x89\xed\x42\x7a\xca\x77\xf2\x78\x16\xbb\xf7\x47\ +\xb1\x7c\x3a\x8d\xed\x5a\x7a\x1b\xf9\xad\xb1\x63\xc7\x2f\xbd\x31\ +\xd1\x8d\xa3\x87\x41\xd2\x04\xc4\xfa\xe4\x4d\xce\x6c\x53\x9f\xe3\ +\xc2\x29\x57\x5b\x93\xc4\xd0\x11\x06\xf4\x3b\xf0\xc0\xd1\x9c\x2f\ +\xbe\x50\xa6\xd0\xd1\xf2\x2e\x96\x80\xba\x8c\xef\x2e\x37\xb1\xa6\ +\x7f\x71\xcd\x69\x03\x10\x95\xe2\x90\x51\xa0\xa5\xeb\x58\x55\xaf\ +\x0d\x0e\x63\x5d\x2e\x26\x3d\xc2\x29\x2f\x6f\xa6\x91\x67\x0d\xf2\ +\x2d\x3b\x52\xdb\x9c\xfb\x64\xd2\xdd\xf9\x42\xdc\x3a\x82\x81\x7e\ +\x8f\x8b\xd9\xc9\x8a\x68\xc9\xfd\x81\x47\xe0\x89\xe2\x7d\x6c\x37\ +\xf9\x54\x1e\x4f\xf0\xc0\xe7\x95\x4d\xe3\xc9\x2c\x1e\xdd\xbf\xa7\ +\x71\xfe\xdd\xf8\xc6\x1f\xfc\x6e\x2c\x25\x6a\xff\x3f\x74\x84\x8f\ +\x0f\xb8\x5b\x08\x38\x63\xd8\xdc\xfe\x95\x7f\xf6\x8b\x31\x7f\xf9\ +\x3a\x4e\xe6\x27\x6e\xc7\x6c\xf8\x17\xa1\xba\x43\x02\xd7\x50\x69\ +\x27\x54\x7f\x43\x5a\x0a\xd6\x25\x5a\xa1\x41\xa7\xc7\xd1\xb2\x14\ +\x0e\x54\x0e\x01\x01\xd9\x08\xd3\xcb\xe8\xfb\xdb\x0d\xe7\xb4\x98\ +\xad\x4b\x7e\x27\xc0\x86\xf2\xf1\xc7\x19\x65\x6e\x87\x49\x93\x07\ +\x76\x3e\xc2\xfc\x38\xcb\x1b\x77\xce\x87\xeb\x04\x43\x27\x63\x8d\ +\xcd\xc1\xe4\x50\x98\x14\xd2\x47\xa6\x28\xe2\x3c\x67\xc8\xb5\xc9\ +\x41\x1c\x55\x06\x29\x39\x4e\x1a\x64\x3a\x57\xd6\xca\xeb\x66\x7d\ +\x19\xef\x3c\xfd\x5a\xbc\xf9\xe4\x4b\xf1\xf6\xd3\xdf\x8d\xb7\x9e\ +\x28\x3c\xfe\xb7\xf1\xee\xd3\x2f\xc6\xd3\x67\x5f\x89\xcb\x67\x6f\ +\xc5\xd5\xd5\xe3\x58\x2e\xaf\x5c\x0f\x9c\x8b\xd8\x30\xa4\xc1\x5b\ +\x90\xb2\xa1\xa8\xe3\x88\xc0\x0b\x3e\xc9\x4a\x49\x59\x33\x20\x39\ +\x34\x5b\x3a\x3a\xf7\xfd\x24\x09\x63\x90\x15\x74\x70\xc5\x58\xdc\ +\xa7\x81\xa8\x0a\x73\x5b\x9b\x4c\x9c\x07\x13\x03\xb2\xe2\x82\x4c\ +\xd6\x7b\x63\x0a\x3b\x85\x1b\xe4\x35\x94\x20\x9a\x78\x0b\xc4\x7d\ +\x0d\xe6\x3a\xcb\x35\x4f\xd7\x96\xd2\xf5\xbc\x49\xd7\x49\xff\xb8\ +\xa5\x78\xc9\xaf\xb4\xed\x43\x3a\xcb\xac\xe6\xeb\x4e\x9f\x57\xb5\ +\xa1\x13\xe0\x1d\x63\x21\xd1\xfc\xa0\xd4\xd2\x35\x7e\x46\x4c\x25\ +\x5d\x01\x9b\x16\xc3\x47\x4e\x3f\x71\x67\x42\xd7\xb9\xfa\x83\x07\ +\xc6\xe8\x17\x07\x1f\xd3\x8c\xe2\x9e\x5b\x70\x19\x10\xad\xb9\x86\ +\xaf\x88\xa6\x49\x07\x5d\xb6\x9c\x20\xe3\x19\xca\x9e\xf5\xca\x16\ +\x2a\x95\x4b\xcf\x6b\xb4\xca\xdb\xc9\x13\xba\x8d\x41\xe9\x74\x75\ +\xa6\x78\x37\xbf\x82\x2f\x4e\xe2\xe2\xa9\xc2\xfd\x24\x5a\x4b\xa3\ +\x78\xa6\x05\xb3\xb1\x96\x7a\xde\x48\xa3\x3c\xc4\xa5\xd3\xd9\x70\ +\x83\x41\xc1\xab\x3c\x14\xca\x91\x42\x6a\xa7\x6c\x66\x37\xa0\xc5\ +\x16\x28\x98\x05\x23\x69\x08\xcb\x04\x59\x53\xe8\xfa\xd8\x22\x46\ +\xce\xb6\x68\xcb\x5b\x22\x03\x75\x93\xf1\x4e\x2e\x8a\xa3\xf3\x72\ +\xac\xc0\xfd\x46\x3d\x49\x8c\x6e\x73\x1c\x20\x6e\x1a\x9e\x02\xa8\ +\xa0\xd5\xbd\xe9\x44\x65\x86\x14\x29\xa3\xbc\xe0\x96\x6c\x90\xfc\ +\xc0\xd5\xa4\x51\x24\x41\x42\x8a\x5d\xa3\xa6\x9b\x0a\xa1\xc5\x53\ +\xa6\xfe\xae\x81\x2b\xfd\xb1\x96\x50\x4b\x93\x39\x9a\x8b\x1a\x54\ +\x7e\x75\x90\x0c\x31\x28\xd5\x52\xbb\xb1\x55\x19\xf9\x1a\x48\xc7\ +\x90\xf4\xe0\x82\x9a\x38\x48\x3b\xd4\x72\x1e\x02\xf3\xa5\xe4\x6b\ +\x85\x62\xe0\x36\x9d\x64\x0d\x90\xf5\x7d\x1b\x34\xb7\x54\x55\xb4\ +\xfe\x9b\x1c\x41\xe7\x7b\x12\x85\x3a\xc8\x36\x7e\x11\xcc\x6d\x3e\ +\xd3\xc8\x86\xdb\x98\xf4\x85\xe5\x13\x3f\x94\x9b\x5f\x3c\x8f\x5f\ +\xff\xed\x5f\x4f\xa6\xea\xcf\x3f\x28\x3b\x28\xe5\x11\x8e\x70\x84\ +\x23\x1c\xe1\xbb\x81\xfe\xea\x76\x84\x23\x1c\xe1\x08\x3f\x4a\xf8\ +\xa8\x79\x5b\x3f\x07\xfc\xae\xa0\x99\xba\xcb\x24\x3c\xcc\x1d\x9a\ +\xcc\x69\x34\xd0\x4d\x5a\x99\x4c\x6e\xb7\x71\xbd\xba\x8a\x3f\xfc\ +\xe5\x7f\x16\x93\xcd\xb3\xd8\x2b\xee\x9b\x12\x4c\x92\x35\x4b\xe6\ +\x7f\x5d\xd6\xe2\xf1\xab\xe2\x7c\xed\x9f\xac\x28\x59\x6f\xad\xcf\ +\x07\x9c\xb6\x73\xd2\xdc\xe2\x19\x29\x5e\x17\xcf\x04\x8e\x6b\x54\ +\x36\x2e\xc0\xad\xce\x3a\x04\x79\x32\x63\x27\x14\x0c\xf3\xff\x68\ +\x68\x9a\xe4\x5f\x93\x79\xf0\xb4\x65\x9e\x19\x7b\x71\xc0\x86\xc0\ +\x6a\x13\xbb\xe5\x36\x9f\xb6\x59\x67\x9e\xce\xb6\x39\xd5\x82\x66\ +\xe3\x5e\xef\x74\x71\x21\x6c\x98\x48\xab\x16\x99\xa5\x83\x23\x3d\ +\x99\x07\x21\x2b\x64\x44\x39\xe9\x98\x37\x9a\xe0\xe7\x07\x17\xd2\ +\x87\xfd\x5a\x56\x57\x93\xd8\xad\xc6\xb1\x79\x3e\x8e\xd5\xe5\x38\ +\xf6\xef\x4f\x62\xfc\x81\x16\x69\xcf\xb5\x10\xe2\x46\x95\xf4\x47\ +\x33\xc5\x17\xe2\xf3\xea\xb7\x85\x18\x53\xd9\xf5\x9f\x43\x0d\xfc\ +\x72\xac\x70\x31\xbc\xe0\xaa\xb8\x7d\x40\x1b\x86\xea\xc9\xeb\x0e\ +\xc0\x75\xa8\x48\xae\x7c\x73\x81\x29\x3d\xd2\xf6\x37\xdc\x53\x06\ +\x66\x31\xce\x46\x03\x1b\x65\xa6\x15\x58\xdc\xf7\x6d\x21\xf1\x24\ +\x5f\xd1\x37\xbb\x98\xc5\xe8\x7c\x2c\x5a\x3a\xbc\x72\xcf\x4f\x0a\ +\x8d\xfd\x44\xda\x42\xb2\xe9\x85\xf4\x78\x45\x24\x9b\x1a\x36\xa5\ +\xc4\x85\xb1\xb7\x9b\x2a\xa2\x2f\xbe\x59\xc6\x26\x87\xf3\x45\x8f\ +\x78\xf2\xf3\xc6\x40\xa6\xb1\xbc\x36\x43\x7c\x23\xc8\x69\x33\xbe\ +\x47\x9f\x8c\x48\x8b\xae\x80\x22\x9a\x12\x91\xff\x9b\xa0\x3a\xa7\ +\xad\x44\xe7\xeb\x37\xd9\xf5\xdc\xfa\x49\xc7\xbc\x29\x27\x70\x02\ +\xd9\x32\x2a\x03\x0e\xe5\x03\x98\xcf\x20\x7e\x10\x52\x6a\xb2\xb5\ +\x83\xbc\x1d\xe8\xc0\x29\xda\xbe\x0e\xe3\x42\x0a\x5d\x9d\x54\x1a\ +\xda\xb6\xcb\xaf\x68\xf8\x79\xf3\xa4\xea\xac\x64\xc6\xb7\xd2\xc3\ +\xde\x73\xd3\xff\x66\x25\xcc\x53\x79\x2a\x3f\x79\x89\xef\x95\x73\ +\x36\x50\xd2\x2d\x6d\x85\x83\xcd\x4b\x87\xac\x7b\xb7\x01\x71\xcb\ +\xd9\x84\xcd\xcd\xaa\x6c\x8b\x7e\xd3\xcd\x6d\xc6\x1f\xe6\x71\x0e\ +\xd3\xe6\xd5\x76\xed\x89\xb7\x6c\xdf\xe4\x91\xaf\x83\xe2\x63\xd9\ +\x1a\x2d\xd8\x2c\x9b\xd5\x93\x91\x8a\xab\x9f\x79\x73\x8c\xa7\xd4\ +\xd8\x44\x9b\x11\x44\xbb\x8f\xa9\xaf\xc8\x06\xf6\xfd\x6b\x6e\x9e\ +\x52\x93\xfe\xde\xf9\x56\x39\xd4\x47\xbc\x99\xa6\x38\xaf\x61\x9a\ +\x28\xcc\x35\x74\x4c\x96\xaa\xe1\xcd\x48\x63\xa9\xf8\xaa\x12\x03\ +\x7e\xb9\xae\x1d\xf1\xb7\x85\xfc\x85\x31\xba\xc8\x8b\xe9\x72\x40\ +\xfa\x24\x2c\x5a\x5f\xf3\xd5\xff\xa4\x4f\xd6\xe3\xf9\x49\x8c\xcf\ +\x27\xb1\x7f\xa8\xbe\xc7\xbe\xe2\x07\xa7\x11\x4f\xb7\xb1\xbe\x96\ +\x6f\x23\x36\x79\x85\x79\x5a\xae\xba\xa3\x28\xf7\xcc\x0c\xc9\x6c\ +\x59\x39\xe6\x4d\xa5\x6d\xd7\x44\x29\x01\x65\x59\x64\xad\x52\x09\ +\x20\x92\x79\x2b\xe8\xc0\x75\x44\x64\x07\x8a\xd0\x7f\x33\x6d\x67\ +\xc1\x90\xf9\x16\x4f\x88\x6a\xdf\xaf\xf8\x2f\x35\x9e\x8e\xe6\xe9\ +\x38\x1b\xf5\xd7\x61\x90\x9c\x68\x42\x51\xc8\x3c\x38\x83\xcd\x49\ +\x75\xd1\xae\x4a\xc5\x5c\xdd\x70\x89\xd3\x77\x7d\x83\x9f\x71\x92\ +\x31\x18\x89\x15\x33\x8d\x2b\x42\x0e\x35\x1f\x14\xb2\x5e\x4c\x16\ +\xff\x36\x28\x8f\x03\x76\xda\x3b\x48\x46\xd0\xc1\x75\x82\x2b\x6c\ +\xa4\xc9\x87\xed\x4e\x6d\xb7\xe1\x49\xb4\x3d\xb7\xaa\x75\x8e\x6d\ +\xe2\xb5\x37\xe6\xea\x4f\x37\xf1\xf5\xdf\xfe\x42\x2c\x79\x7d\xa6\ +\x12\xe1\x23\x36\x80\xec\x39\x40\xf9\x7d\x84\x1f\x31\xd0\x80\x89\ +\x79\x5d\xf3\x66\x3b\x8a\x5f\xfa\xb5\xbf\x17\x8f\x5e\x3f\xd3\x38\ +\xb1\xcb\x1b\xd7\xd6\xa3\xb1\x41\xd5\x72\x46\xea\x5b\xc9\x2c\x5c\ +\x64\x41\x6e\x7e\x54\x9f\xab\x74\xee\x8e\x15\x75\x80\x2e\x1d\x8f\ +\x7f\x1f\x05\x88\x2b\x1b\x47\xd4\xcf\xb6\x9e\xe7\xc0\x6c\x82\x01\ +\x2d\xd4\xb8\x2f\x42\xe5\x45\xa1\x01\x45\x5f\xc8\x9d\x2c\xf4\xc1\ +\xbf\x8d\xfa\x36\x73\xc9\xb4\x68\x8f\x75\xae\x13\x54\x6f\xf2\x9b\ +\xb4\x4e\x9f\x27\x6a\xd1\x89\x5b\x39\xf3\x20\x0b\xf6\xd7\x54\xe1\ +\x4c\xdf\xc7\xab\x4c\x2a\xdb\x5a\x73\x39\x5e\xa5\xba\x5a\x6d\xe3\ +\xe6\x66\x19\xcb\x9b\xe7\xfe\xdf\xb4\xab\xcb\xc7\x71\x7d\xf3\x24\ +\x36\x9b\x65\xfd\x60\x8c\x64\xb2\xa2\x74\x5d\x75\x34\x73\x82\x01\ +\xd9\xf9\xd1\x43\xa6\x4b\xaa\x69\xc2\xd3\xd8\x0c\x56\x99\x32\x49\ +\x9f\xf0\x36\xc5\x0d\x69\x36\xf5\x9d\x9a\x24\x2d\x10\xf5\xa1\x70\ +\x92\x95\x0a\x9c\x54\xc3\xce\x4b\x64\xd3\x05\x9a\x9d\x3c\x12\x29\ +\x7f\x8a\xdf\xae\x3b\xe6\x01\x22\xe8\xb5\x6a\x9d\xb2\x05\x23\xe3\ +\xee\x80\x06\x64\xe2\x71\x7d\x6d\xd8\xa3\x16\xd8\x29\x93\xa2\x8d\ +\x7d\x0e\xf0\xb1\x19\xa7\x03\x67\xba\x26\xb1\x20\x91\xed\x0f\x40\ +\x95\x62\x9e\x71\xe9\xc0\x50\x48\xcb\x22\x3d\x4c\xa7\x2d\xe2\x08\ +\x4d\x39\x0f\x45\x71\x3b\x05\x09\x65\xa0\xd3\x55\xdb\xb7\xf2\x1c\ +\xe0\xc1\xc7\x79\x91\xce\x65\x05\xa7\x05\xca\x31\x2c\x0b\x1f\x5b\ +\x6d\xbc\x74\x6e\x10\x97\x90\x86\x26\x4f\x02\xba\x7c\xb0\xd7\xe6\ +\x2e\xd0\x36\x63\x89\x3f\x5d\x1e\x0e\xf2\x01\x5d\xd1\xae\xf7\x11\ +\x4f\xa9\x89\x82\x3f\x9a\x2a\x68\xae\x83\xcc\x01\x1e\xf3\x1a\x6c\ +\xe7\x3c\x9a\x79\x0d\xe9\x28\x09\x65\xf1\x0f\xda\x9c\x2f\xf6\xc8\ +\xbb\xcf\x4f\x87\xa2\x93\x9f\x3e\x65\x1f\x32\xaf\xe1\x8a\x58\xc2\ +\xb9\xd4\x41\xa6\xcd\x43\xf9\x5c\x01\x56\xb3\xe9\x1f\x8b\xd0\x31\ +\x1c\xf3\xe9\xdb\xd1\xe4\x68\x5d\xc7\x84\x93\x29\x68\xe7\x96\xc0\ +\xf2\x3e\x24\x91\xe7\x83\xa1\x98\xcd\xc6\x10\xac\x9a\xa4\x40\x54\ +\x17\x29\xba\xb5\x97\x79\xb0\xd2\xb9\x2e\x0e\x61\xbd\x76\x7e\x94\ +\xbc\x14\x12\x65\x19\x92\x2a\x5e\x23\x2a\x92\xc3\x1f\x65\xaa\x8d\ +\x35\xc0\xb2\x86\xa8\x37\xf1\x2b\x0d\xe8\x76\xd7\x2e\x13\x1d\xa6\ +\x1e\x5b\x5d\x26\x0c\x23\x95\x12\x5b\x0a\x4d\xf2\x82\xbd\x06\x8a\ +\x78\x96\xd4\xc6\xe0\x1a\x2f\x89\x33\x84\xa6\xf2\x41\x0a\xdb\xed\ +\xdb\xba\x02\x69\x9c\xc9\xa0\xfd\x00\xcb\xe1\x98\x48\x9e\x01\x9b\ +\x65\x77\x60\xbe\x91\xb4\x4c\xa6\xa2\x0e\xe5\x53\x99\xe0\xfa\x44\ +\xdf\x3f\xd1\x3a\xf2\x37\x7e\xe7\xe7\x63\xbb\xe4\x87\x5a\xa4\x18\ +\xc2\xc0\xe0\x11\x8e\x70\x84\x23\x1c\xe1\x23\xa1\x5d\xe5\x8e\x70\ +\x84\x23\x1c\xe1\x47\x03\xc3\xf9\x60\x83\xc1\xbc\xb0\x83\xbb\xf4\ +\xee\x80\xa1\x1a\xf4\xd0\x0c\xf1\x0f\x33\x63\xbe\x0e\x9d\xbe\x19\ +\x4c\x34\xf7\xb1\xfe\xfa\x57\xe2\xa5\xe9\x69\x68\x8d\x65\x01\x7f\ +\xb4\xcc\x3c\x96\x3f\x33\xe6\xbf\xd3\xb8\x11\xb2\xe5\x66\x63\xe7\ +\xb7\x84\xa4\xb7\x8d\x22\x4d\xd7\x84\x19\x0e\x5f\x45\x1c\x4f\x26\ +\xc4\x2d\x5e\xd2\x16\x1a\x77\xc8\xe0\x49\x7b\xad\x04\x3c\x79\x27\ +\x34\xe8\x7c\xf9\x08\xb0\xf1\x81\x45\xf2\xcb\x55\xbc\x45\xf6\x01\ +\xb3\x88\x78\xe7\xd1\x72\xed\xa7\x6e\xf8\xdf\x38\x66\xdc\x4e\xdd\ +\xf2\xb9\x1d\x0a\x86\x6e\xb5\x05\x46\x7f\xb3\xa7\x97\x19\xc8\x13\ +\xd4\xb0\x99\x09\x3d\x9d\x06\x49\x87\x9d\xfe\x93\x17\x30\x5e\x03\ +\x39\xda\x4e\x63\xbf\x9e\xc4\x76\xa5\x25\xd7\xd5\x24\xf6\x97\x5a\ +\xda\x5d\xef\x63\xc2\x2b\x65\xf6\xfc\x97\x92\x30\x1b\x05\x17\x6c\ +\x4a\x49\x36\x25\x3d\xcb\xbf\x72\x26\xb3\x30\xe6\xd0\xec\xbb\xb0\ +\x76\x04\x07\xa1\xb1\xd7\x58\xf0\x84\xe5\x44\xbe\x2a\x06\x16\x1d\ +\xa6\x98\x85\x7d\x73\x40\x0b\x4a\x2d\xf9\xc4\x52\x98\xc8\x47\x05\ +\x30\x81\xea\xcf\x36\xc8\xc5\xbb\x93\x62\x6b\x36\x8d\x19\x4f\xab\ +\x9d\xcf\x62\x7e\x5f\x58\x8b\x9f\xc9\xe9\xcc\x4f\xa3\xb1\xf9\x31\ +\xe6\x69\x20\xa5\x49\x03\xca\x83\x32\xca\xbe\xdb\x10\x7f\xcc\x53\ +\x9c\x5d\x06\x05\xe8\xb6\x41\x96\x7a\xa4\xcd\xf4\xf0\xb0\x61\x5b\ +\x95\xc6\x4f\x24\x55\x5a\xeb\x49\x7f\x3f\xc5\x0e\xf9\x64\x5e\x62\ +\x6a\x91\xa6\xf2\x28\x59\xb7\x42\x6d\x2b\x48\x56\x68\xfc\xff\xd1\ +\x6a\x2b\x5e\xf6\x9d\xae\xf1\x95\xa6\x3d\xe1\x96\xfd\x3e\xf3\x4f\ +\xbb\x66\x3a\xa4\x0e\xbc\x64\x65\x5d\x2b\x2e\x4c\xbe\x7c\xd2\x37\ +\xe7\x58\x0b\x46\x7c\x22\x13\x68\x71\x9d\xd8\x5f\x85\xf4\xb9\x22\ +\x45\x72\xe8\x22\x26\xf3\x89\xb8\x16\x24\xe2\x50\x75\x64\xff\x4a\ +\x11\x3d\xf2\xa2\x5f\x8e\xfc\x64\x9a\x16\xa6\x9b\xad\x37\x0f\xd1\ +\xf2\xa6\x17\xed\x5c\x75\xea\x27\xca\x4c\x4f\xbc\x79\x95\x37\x73\ +\x1a\x4f\x58\x81\xa7\x11\x49\x43\xd9\x73\xb3\xad\xf8\xce\xbb\x74\ +\x2b\xf0\x04\x62\x57\x5f\xf4\x35\xe4\x2d\x3f\xd2\x29\xec\xdc\x8e\ +\x0a\xc5\xf3\x66\x18\xb4\xfa\x2a\xff\xaf\x16\xb3\x99\x42\x6e\x9e\ +\x79\x73\x96\xa7\xbb\x64\x63\xcc\xa6\x18\xf9\xb2\xf1\xc6\x53\x68\ +\xf5\xe4\x19\x66\xf7\x3a\x97\xf6\x73\x11\x6c\xa6\x89\x91\x9b\x77\ +\x95\x2f\x36\x7d\x32\x64\xbd\xed\xd6\x92\xb1\xf9\xad\x4e\xc2\xd3\ +\xbe\x12\x5a\x3f\x49\x0e\x94\x2b\x75\x4d\x18\x55\x3d\xc3\x57\x1b\ +\xa6\x1c\xba\x0e\x2d\x2e\x22\x37\x2e\x95\x2f\x3e\xde\x3f\x89\xe9\ +\x4b\xfb\xd8\xdd\xe7\x75\x9b\x3a\x47\x2e\x67\xb1\xbf\xd1\x58\xbd\ +\xd2\xf9\xcc\xd8\xa1\xfe\x99\x37\x64\xe8\xa4\x6c\x1a\xd5\x99\x6e\ +\x7b\xc2\x88\x1a\x38\x9b\x6c\x47\xe7\x4f\x1b\x4b\x4e\xf9\xcd\xb4\ +\x3a\x69\x51\x04\x23\x34\xc7\x61\x08\x69\x03\x6b\xbd\x0c\x0c\xdf\ +\x60\x85\x24\x11\x70\x9a\x58\xaf\x94\xd8\x5c\x9a\xc8\xe5\x1d\x9b\ +\x6a\xdc\xfc\xc0\x6f\xeb\xeb\xd0\xa5\xf5\xe1\x45\x80\x6d\x63\x4d\ +\x83\x32\x89\x92\x01\xf2\xf1\x66\x14\xbe\xfb\x8b\x22\x84\x28\xd5\ +\x95\x37\xc8\x39\xa7\x93\x9b\xa0\x72\xd0\xdc\x8c\x03\xbe\x4f\x86\ +\x51\x78\xae\xa4\xcc\xa1\xa1\x06\x07\x51\x47\x7a\xdd\x9e\xaa\x3c\ +\x14\x69\x7e\xb0\x01\xb0\xd5\x75\xe8\x86\xa7\x5d\x75\xcd\xa5\xdf\ +\x3e\xdb\x2f\xe3\x53\xf3\x45\xcc\x78\x7d\xdd\x1f\x7f\x5b\xd7\x63\ +\xb5\x75\x33\x20\x80\xa4\x7e\x3a\x18\x90\x47\xf8\xe1\x43\x36\x45\ +\xdf\x20\x1b\xf5\x9f\xcd\xf3\x9b\x78\xef\xfa\x9b\x71\xf1\xf2\x42\ +\xa7\xbc\xae\x5b\x25\xf6\xb8\x49\xbf\xa9\x36\x72\xbf\xe4\x75\xaa\ +\x19\xc9\x03\x58\x7d\x14\x94\xac\x3c\x27\x4d\x12\x74\x70\xd7\x3b\ +\x00\x18\xd8\x2e\xf2\x0e\x38\x64\x67\x8f\xe3\x0c\xc5\x27\x7e\x1c\ +\x92\x9b\xca\x43\x2d\xd1\x1f\xd2\xad\x52\xab\x8e\x1a\x03\xd2\xdb\ +\xdb\x90\xbc\xcc\x27\x73\xe4\xf7\x26\xde\x30\x62\x38\xa2\x8c\x12\ +\x4c\x26\xe9\xf7\x70\xb4\x40\xdf\xa1\x11\x06\xc9\x38\x6f\x1b\x29\ +\xd4\x89\x3a\xe2\x10\xb2\x9e\xd2\xbf\x9d\x5f\x79\x26\xcc\x0f\x1d\ +\xd6\xbb\x7c\xa2\x7c\xb7\x8e\xcd\x56\xd7\x2f\xc6\x1a\xca\xae\x31\ +\x14\xfd\xfc\x71\x51\x7e\x0c\x75\x7e\x0d\xb3\x69\x34\xd8\xc1\xaf\ +\xc6\x85\x40\xb7\xa4\x90\x2d\x6d\xdd\x64\xcf\x72\x96\x86\x1c\x2c\ +\xcd\xd4\x45\x6a\x9c\x6d\x9e\xf5\xd2\x88\x0a\x44\x7d\x3c\x84\xe4\ +\x55\x3a\xc8\xa1\x6e\x92\x03\x50\xbe\xca\xa7\xb7\x9f\xd8\x41\xe3\ +\x5c\x8e\x6d\xb2\x66\x3e\x71\x5d\x6f\x14\xf7\xf0\x87\x5c\x1f\x6f\ +\x84\x22\x97\xae\xaf\xd5\x6c\xcc\xa0\xe7\x78\x6d\xea\xf8\xfa\xa8\ +\xb8\xaf\xd5\xa9\xc7\x9b\x09\xb0\xe6\xbc\x4a\xdf\x01\xdf\x95\x41\ +\xda\x72\xc6\xa9\xa3\xe0\xca\xb1\xc3\x8e\x14\xa0\x90\x76\x0c\xa2\ +\x19\xa0\xd3\x5e\xc6\x3b\xdb\x30\xcc\x6c\xf5\x5a\x7c\x68\xca\x33\ +\x28\x33\x5c\xf3\xbb\x0f\x34\x01\xdb\x7d\xc8\x52\x10\xf4\xb1\xbd\ +\xa2\xad\x47\x9c\xb2\x14\xad\xcf\xd0\x62\xf7\x29\x19\xba\x2d\x0d\ +\x9a\x2e\xaf\xbe\xb6\xd8\xf9\xd6\x68\xe5\xac\x39\xc7\xd0\x76\xce\ +\x73\xc1\xf0\x9c\x2a\xe3\xe8\x79\xa3\x4d\x69\xba\xb4\x15\x52\x2b\ +\xdb\xb1\x4b\x8b\x0e\xe9\x08\x8a\xc3\x73\xba\x3e\xe8\xd0\xc7\x65\ +\x45\x07\xbe\xb0\x7d\x60\x3d\x99\xde\xf6\xc1\xf5\x2e\xc2\xe9\x05\ +\x60\xf2\x2f\x66\xf5\xc5\xb4\xd9\xe6\xa2\xca\x56\xd8\xda\xa9\xe3\ +\x90\x76\x06\x86\x3b\xd2\xd1\xee\xfa\xac\x1c\x31\xda\x47\x0d\x0d\ +\x0f\xc1\xfd\x8e\xca\x76\x68\xf0\x62\x0a\x3f\x79\xd5\x19\x1b\x5a\ +\x3a\xa4\x5b\xac\x75\xd7\x8c\xf7\xb6\x33\x3f\x61\x1d\x72\x44\x18\ +\xea\x09\x3a\xa2\x87\x03\xb9\x81\x6b\x06\x76\xb4\xce\xa8\xf9\x4a\ +\xc2\x80\x16\x49\x0c\xb7\xcd\x15\xe1\x25\xbc\x70\x8e\x31\xc5\xef\ +\x20\xfd\xba\x13\x24\x18\xca\x9a\x3d\xdb\x06\x67\x54\xc1\x19\x34\ +\x8d\x03\x68\xed\xd6\xda\xd9\xf6\x3a\xbb\x49\xa4\x0c\xb2\xb8\xc9\ +\x36\x7e\x01\xcc\x4b\x85\xbb\xc4\x24\x72\x77\x28\x39\xf7\x34\x2e\ +\xee\x8f\x35\xde\x3f\x8d\xf7\x9f\xbd\xa5\xfe\xce\x98\xdf\x3c\x7d\ +\xd1\xdf\x23\x1c\xe1\x08\x47\x38\xc2\x87\x43\xbb\x7e\x1d\xe1\x08\ +\x47\x38\xc2\x8f\x1e\x6e\xcf\xfc\x6e\xcf\x3d\xef\x9c\x19\x1e\xc2\ +\x50\x1d\xba\x25\x19\x9a\xea\x74\x2c\x2c\x2d\x68\xcf\x7a\xe1\x41\ +\x2b\x68\x44\x7c\xf7\x4b\xdf\x8c\xd7\xd6\x4f\xe3\xde\xc5\x79\x4c\ +\xc5\xe4\xa6\x1e\x13\xdb\x76\x73\x6f\xb3\xc9\x57\x50\xe5\x7f\x3b\ +\x54\x72\x2f\x56\x7a\x67\xbb\x09\x2f\x58\x11\xe2\x2c\xd2\x5a\x9c\ +\x54\x4c\x92\x3d\x61\x56\x9e\x9e\x30\xc3\x06\x1a\xee\xa0\x18\x4e\ +\x96\x37\x39\x09\xd0\x5d\xfe\x43\xb8\x93\x09\xa4\x9d\x5c\x2c\x99\ +\x50\x48\x1f\xea\xde\x86\x6d\x36\xcc\xc6\xc0\x7e\xc5\xff\x91\xad\ +\xeb\xe9\x34\xd8\xf2\x1b\x1d\xd4\xba\xc0\xa1\xa7\x6d\xbf\xe9\x24\ +\x2b\xc9\xa6\x27\xc0\x4e\x13\xa4\xcc\xec\x0e\x5c\x9d\x0e\x28\x34\ +\x21\x74\x22\xfb\xa2\x8f\xd7\x4e\x8e\xab\x30\xdb\xb1\xfc\xd5\xb2\ +\xf4\x46\xe9\x9f\x2b\x5c\xaa\xcd\xae\x54\x06\x9e\x1c\x52\x01\x79\ +\xed\xd4\x98\x27\x6a\x4e\x44\x9f\x2a\x8d\xef\xeb\x79\x19\x9b\x4d\ +\x22\x18\x2b\xaf\xbc\x89\x56\x8c\xc2\x2e\xf3\xd6\xad\x94\x6d\xd6\ +\xda\x6d\x22\x7b\x6c\x42\xf0\x8b\x74\x16\xdb\x13\x61\x04\xf6\x0f\ +\x7d\xd5\x86\x15\x73\x13\x01\x9d\x6e\x61\xae\xb4\x60\x36\x40\x92\ +\x96\x75\x3f\x61\x34\xc9\xa7\x7e\xd8\x54\x61\x73\x84\x8d\x0d\x6f\ +\x6a\x28\x2d\x9b\x30\xd6\x21\x7f\x16\xd9\x89\xb1\x83\xae\x6f\x12\ +\x28\x7d\x3e\xb5\xd6\xe7\x41\x70\xff\x83\xc6\x0f\xdb\x86\x4f\x5a\ +\x74\x53\xe6\xd0\x7c\x71\xde\x6c\x8c\xf4\x7c\x2a\xca\x69\x84\x73\ +\x33\x89\xe0\x2a\xb2\x2c\x78\x4d\x96\xca\x9e\xed\x21\x7a\x4d\x1f\ +\x5a\xfb\xb5\x8f\xb4\x13\x4d\x65\x70\x9a\xb4\xe3\x3b\x05\x36\x2d\ +\x0c\x1f\x5a\x01\x3a\x79\x19\x4c\x03\xd8\x81\x05\x0d\xbf\x61\xcb\ +\xe5\x0f\x71\x43\xc6\x5b\xa0\x3d\x0c\x9d\x9e\x70\xb3\x09\x34\xfe\ +\x90\x67\xe8\xf5\x3a\x1f\x4a\x97\xa3\xcf\x42\xca\xa9\x50\x7f\xbc\ +\x93\x72\xea\xb1\xea\x9f\x9b\x66\xd9\xce\x0a\x55\xd7\x6e\x07\xda\ +\x92\x36\x55\x80\x6e\xff\x95\xe6\x8d\x38\x07\x36\xa7\x92\x76\x1b\ +\xc8\x6e\xe3\x7b\x53\xae\xec\xa7\x3d\xa5\x75\x50\x5c\x32\xb7\x97\ +\x75\x15\xca\x17\xfa\x6a\xbe\x26\x32\x75\x73\x83\x2f\x6d\xe2\x23\ +\x4f\xa6\xb1\x81\x36\xe6\xbf\xd4\x6c\xbf\xe9\xf4\xf6\xfd\x8a\xd2\ +\xca\xd7\x65\x70\xfa\xe6\x57\xd9\xf1\x86\x9a\x78\xdc\x88\xd5\xd8\ +\xb1\x55\xf0\x4d\x59\x99\x68\xfa\x3a\xb8\xff\xa2\x67\x5d\xf8\x8d\ +\x76\x80\x2c\x39\x75\xad\xac\x80\xcc\x2b\x31\xe3\xd6\x68\x31\x8f\ +\xd1\xbd\x59\x4c\x5e\x3b\x8d\xc9\x4b\xbb\x58\xcf\x35\x2e\xac\xc5\ +\x7b\xa6\xd1\xfb\x7a\xa3\xf1\x8b\x71\x02\x1b\x74\x9c\x1c\xbf\xe8\ +\x23\x3e\xd6\x4d\xa6\x36\xc6\x38\x3b\x70\xe9\x29\xa7\xe4\xb7\xa9\ +\xb2\xf4\xf9\x24\x37\xc1\x63\x99\x13\x65\x18\xb8\x7c\x10\xba\xb2\ +\x97\x42\xd3\x71\x59\xc0\xb2\xcb\xa9\xd3\xdd\x24\x73\xc2\xb4\x0f\ +\x85\x74\xb7\xdc\xc4\x66\xb9\xb5\xdb\xf8\x06\x3f\xb5\xf2\x98\x30\ +\xa4\x1b\x1c\xf2\xaa\xd4\x06\xfb\x3f\x00\x47\x75\xc8\xd7\xad\xa9\ +\x5f\xd7\x0d\x2a\x5b\xe8\xfc\xd6\x21\x89\x43\xcb\x5d\x04\x79\x22\ +\xa0\xe5\xe0\x24\x55\x9e\x9e\x5b\x54\xe9\x3a\x56\x69\x3d\x8c\x68\ +\x40\x59\xae\x96\xb1\xe4\x7a\xa4\xf8\x5c\xfd\xf3\xe1\xbd\xfb\x71\ +\x3e\xde\xc6\xfa\xdd\x77\xe3\xe6\xbd\x0f\x52\xff\x56\x39\x12\x24\ +\x40\xd6\x60\xa8\x72\x97\xfa\x11\x7e\x40\x40\x1b\xd2\x37\x74\x8e\ +\xeb\x24\xfd\xbd\xaf\xfc\x71\xcc\x2f\x6e\xbc\x59\xe4\xce\xcb\x66\ +\x8e\xb4\x5a\xd3\xb8\x29\xdc\x39\x12\x1c\xf7\xb1\x42\x89\xdc\xed\ +\x0a\x3b\xce\xc7\x8c\xe4\x9b\xc3\xf9\x53\x7c\x5f\x0f\x1b\xdf\xf8\ +\x0e\x90\x79\xba\x0e\xe7\x25\x98\xa7\xd3\xfc\x63\xa9\xf2\xa2\x59\ +\xce\x68\xe3\x75\xdc\x04\x22\x0a\x46\x76\xb2\xc2\x6d\xb0\x4e\xf2\ +\xd9\x48\x5b\x6b\x6e\xe2\x9b\xae\x62\x91\x37\x3f\xfc\xe1\x92\xeb\ +\xeb\xba\x78\x8a\x0a\xd7\xf9\x92\xc9\x8c\x6c\x3e\xa3\x5d\xbc\x67\ +\x34\x02\x56\xa3\xd3\x6f\x8e\x1e\x87\x04\x29\xeb\x75\xbb\xd3\x47\ +\xe9\xf3\x27\x21\xe8\xb6\x39\x6e\x3e\x69\xd8\x68\x83\x12\x24\x8d\ +\x7f\x1d\xb7\x07\x65\xd4\x5b\x2f\x10\xa3\xf7\x5d\x47\x9c\x19\xf8\ +\xdb\xa0\xe7\x1c\x5a\xcd\xeb\x42\xef\xb9\x43\xe3\xdd\xe2\x73\x14\ +\x4b\x41\xfe\x95\xcc\x60\x5e\x86\x84\x24\x5a\x1c\x4d\x93\xa4\x41\ +\x8f\x8f\x08\x6f\xaa\x14\xed\x4f\x5d\xef\xdc\xc7\xcd\x13\xe6\xfa\ +\x47\x22\x34\xe1\xf9\x1a\x97\x7c\xe8\x16\xcf\x34\xbe\x88\xa5\x2d\ +\xeb\x9a\xf2\xc7\xdc\x92\xf1\x6d\x88\xea\x70\x95\x25\x2b\x43\xf5\ +\x0f\x07\xaa\x8b\xfc\x89\xe8\x80\xcc\x89\xca\x76\x0a\x32\xd0\x66\ +\x69\xdf\xca\xe6\xa6\x5e\xb1\x10\xc9\xef\x3e\x02\x29\x39\x7e\x39\ +\x40\xa3\xcf\x27\xe3\xbd\x0e\xbc\xb2\xe7\x90\x69\x1c\x97\x6e\x2b\ +\xb7\x13\xa4\x5a\xea\x75\xf5\x56\x12\xf7\xa1\xfa\x28\x59\x32\x39\ +\xaf\xdb\xb9\xed\x9a\x94\x3e\xf6\xa8\x53\x1d\xcb\x4e\x6e\x9c\x69\ +\x1e\xa3\xb9\xc8\xc1\x86\x9b\x69\xc9\xbc\xe1\x29\xcc\x5c\x4a\x58\ +\x93\x1a\xdb\xe9\xe6\xe7\xd8\x22\x87\xe2\x91\x29\x73\x0e\xe8\x0c\ +\x2d\x7f\x3b\x9f\x71\xfc\x33\xae\x60\x6f\x1b\xbf\x64\xf5\x49\x7e\ +\xda\x73\x7c\xa0\x9f\xb6\x21\xd1\xb1\xa6\x5b\x2b\xa5\x09\xf0\xe9\ +\x67\xd9\xd7\x7c\x54\x3a\x78\x82\x4c\xd4\xe9\x42\x41\x67\x1a\x53\ +\x03\x59\x03\x38\xf4\x15\xfa\x4c\x0f\x39\x5e\xb4\xdc\x5b\x6a\x81\ +\x05\xe8\xb7\xb1\x32\xd3\x35\x3d\x83\x07\x95\x03\x8e\x20\xfb\x9d\ +\x7d\x21\xaf\xec\xb4\xa9\x65\x5e\x85\x21\x29\xe5\xf4\x3d\x4b\x5c\ +\x64\x81\xec\x65\xd6\x69\xce\x9c\x84\x4c\xd3\x62\x43\x60\xbc\xca\ +\x35\x3d\x43\xfd\x30\x4d\xa7\x7d\x90\x49\x45\x10\x56\xe8\xf4\x06\ +\x14\x0b\x3f\x8f\x8a\x8c\x8d\x62\xe7\x8f\x12\xa8\x1f\xc1\x50\xad\ +\x20\xfb\x49\xfa\x99\xbe\x72\xa8\xba\xe8\x30\x32\xf4\x8a\x5b\xcc\ +\x26\xeb\xa1\xda\xa8\xd5\x79\xcb\xcf\xc6\x8b\x4c\x24\xe0\xe9\x4b\ +\x85\xf9\x3c\xe6\x2f\xef\xe3\xf3\x5f\xfc\x2d\xcd\xdb\x53\xf5\x08\ +\x47\x38\xc2\x11\x8e\xf0\xbd\x03\xd7\xa6\x23\x1c\xe1\x08\x47\xf8\ +\xf1\xc0\x1d\x93\xcc\xef\x17\x6e\xcf\x05\xbf\xe3\xdc\x50\x79\xd7\ +\xd4\x33\x41\x13\xd1\xed\x78\x1f\xff\xf6\x9f\xfe\x52\x9c\x6a\xf1\ +\x74\x32\xdd\xc5\x86\x1b\xdc\xe8\x09\x6d\x79\xfd\x23\x1b\x6a\xde\ +\x48\xcb\x49\x33\x37\x8c\x73\x41\xd1\x43\x5b\x48\xf5\x38\x69\x22\ +\x5e\x04\xc2\x04\x90\xa7\xd0\xc1\x8b\x28\x8f\xc8\xa9\xdb\xa0\x91\ +\xbe\xf1\x49\x56\xde\x4c\x83\x61\x2e\x82\xa2\x3f\x02\x3a\x7b\x22\ +\x72\x85\x64\xda\x9b\x07\xdc\xe4\x07\x23\x43\xec\x7c\xb8\x29\xcd\ +\x66\x1a\x1b\x22\xca\xd4\x79\xd6\x42\x41\x9a\xce\x52\x87\xbc\x39\ +\x9d\x32\x1d\x30\x7a\x08\x88\xf2\x60\xa9\x6d\x37\xb0\x1b\x6d\x31\ +\x64\x29\x44\xb2\x01\x67\x52\x74\x81\x73\x23\x4f\x2d\x52\xd2\x17\ +\x3e\xa5\xa6\x03\x37\x7d\xfc\x63\x45\x1e\x50\xb9\x19\xc5\xf6\x52\ +\x8c\x6b\x6e\xe8\xab\x2c\x22\xbd\x50\x66\xf3\x82\xff\x8a\x3a\x13\ +\xbd\x10\xdd\xca\x2e\xe0\x06\x2e\xd1\xc6\x31\xd7\x44\xd6\x11\xa4\ +\x37\x1f\xa9\x33\x6f\x52\xa8\xdd\xd8\x14\x61\x35\xe2\xcd\x07\xea\ +\x94\x44\x2c\x6f\x59\xa1\x78\x99\xab\xb4\x19\xbc\x78\x06\xcb\x0f\ +\xbf\xb6\x8f\xfe\x25\xec\x95\xb0\xfb\x86\xe4\xb2\xe7\x1b\x30\xe2\ +\xb3\xa9\x61\xdb\x8a\xbb\x73\x34\x3f\xca\x86\x37\x6d\x4a\x77\x82\ +\x9e\xff\xc7\xaa\x6c\xb3\x51\x83\x4c\xa1\xdb\x4c\xab\x34\x99\xae\ +\xcf\x3b\x37\x70\x06\x3a\x60\xf2\xc3\x27\x6f\xf4\xf4\x41\x0a\xe9\ +\x37\x32\x78\xf8\x4c\xa5\x09\xdc\xbc\x3b\x35\x80\x2a\x3b\x5f\x7b\ +\xb9\x8f\xcd\xcd\x32\xfc\x1a\x44\x1a\xc0\x2d\x95\xba\xad\xef\x67\ +\x79\xe0\x11\x64\x5f\x61\x0f\x76\x79\x53\xaf\xe9\x66\x70\xe2\x03\ +\x5e\xfb\x15\x2f\x42\x7f\x1c\x57\x34\x0f\x29\x6b\x7a\x25\x4f\x9d\ +\xf4\xdd\x74\xd3\x23\x4d\xc9\x12\xa7\x2c\x75\x9a\xcc\xac\x8c\x52\ +\x56\x5e\xc3\xc7\xe6\x03\x15\xa0\x7a\xe1\x5c\xf6\x8d\x1c\xea\x12\ +\x3b\xd4\x53\xd5\x6d\xd6\x99\x12\x52\x7f\xa5\xd3\x64\xd4\xbb\x37\ +\xb0\xa8\x67\x63\xe9\xb4\x8d\x33\x36\x55\x8b\x46\xce\xd3\x82\xc6\ +\x04\xfb\x44\x3c\x75\xb0\x4d\xbf\x41\xd7\x1b\x5c\xe2\xa1\x67\xbe\ +\xfb\x5c\xf6\x2b\xf2\xa4\x4f\xf2\x6a\x23\x36\x7c\xdd\x96\xd2\xb1\ +\x2e\xe7\x09\x98\x7e\xad\x24\xde\x10\xb6\xad\x69\xd9\x22\x50\x86\ +\xa4\xc1\x13\xf1\x27\xf2\x73\xcf\xd3\x62\xd4\xb3\xaa\x65\xc4\x03\ +\x44\xdd\x0d\x74\x3e\x10\x59\x47\xe6\x90\x56\xb4\x83\xec\x65\x5f\ +\xad\xc0\x17\x3d\x65\x41\x1a\x6f\x38\x12\x95\xef\x9c\x87\x93\xd3\ +\x93\x98\x5c\x9c\xc4\xfe\xb5\x71\x6c\x1f\x6c\x63\xcd\x0d\xfb\xe5\ +\x3c\xc6\x97\xd2\xbf\xd1\xb8\xb5\xe4\x37\xcb\xe2\xd1\x2e\x7c\x95\ +\x16\x3f\xda\xd1\x60\x5e\x71\x8b\xdd\xe2\x09\x99\xbf\xcf\x0f\x7c\ +\x91\x92\xcf\x71\x07\xe9\x79\x00\x53\xe0\xc9\x14\xf4\x54\x74\x8f\ +\x0b\x59\xc5\x0a\xa2\xa7\xc4\x29\x5f\x93\x2b\xc8\x5e\x06\xec\x64\ +\x3b\xb2\x31\xbf\x13\x9d\x37\x49\xd3\x07\xb2\x01\xc6\xbc\x76\x92\ +\x1f\x72\xf0\x23\x07\x9e\xd6\x2a\xbe\xdd\xd0\x21\xc7\x9d\xdb\x70\ +\x17\x53\x79\xda\x76\xda\x37\x98\xcc\xb1\x98\xb2\xfb\xc3\x8d\x20\ +\x95\xb5\x7b\x12\xbb\x80\xd4\x79\xf3\x30\x03\x7d\xcf\x6d\x04\x46\ +\x0e\x5d\xd0\xa8\xa1\x17\x03\x71\x0f\x2f\x28\x52\x7e\x81\x0e\x7e\ +\x5a\x48\xd7\xdd\xe5\x8a\xd7\x3e\x32\xbc\x4d\xfc\x3f\x50\x9f\x79\ +\xed\xa5\x98\x5e\x3f\x8b\x0f\xde\x7c\xd3\xe3\x8d\xc7\xab\x17\x60\ +\xe0\xf8\x6d\xb8\xcb\x8f\x06\x1f\x91\xec\x07\x0e\x2d\xaf\x1f\x65\ +\x9e\x3f\x0c\x18\xf8\x4f\xd5\xb6\xa8\x46\x98\xf8\x95\xcf\xfd\xc3\ +\x38\x79\x30\xc9\xb1\x41\x7d\x2a\xb7\x69\xa4\x47\xbf\x37\x25\x30\ +\x51\xb1\xd6\x36\xad\x13\x34\x3e\xa8\x64\xee\x7f\xc6\x19\x38\x74\ +\x7d\xab\x78\xc3\xbe\x38\x84\x8e\x6b\x7b\x69\x1b\x55\xfa\xbc\x7f\ +\x28\x55\xe3\x45\x07\xdd\xc9\xd5\xdb\x1b\x8a\x0d\xd2\xb1\x39\xfc\ +\x00\x9b\x39\x00\x33\x38\x64\xca\x35\xbf\x53\x62\x9e\xc2\x78\xa2\ +\xf1\x91\x73\xca\x0f\x9d\x4b\x25\x37\x42\x00\x5f\x09\x9d\x8c\x94\ +\x2e\x93\x78\xce\xa9\x78\x0d\x1a\x9d\x5e\x24\x34\xea\x45\xbd\x4c\ +\xfc\x62\xf5\x24\xc3\xa7\x3e\x1f\x19\x70\x5d\x08\xc4\xea\x00\x59\ +\xea\x2a\x37\x97\x9b\x32\xc3\xcb\xd0\x99\x55\xb4\x2c\x2a\xdc\xce\ +\x0c\xa1\x78\x4a\x6f\x3f\x14\x7a\x0d\xce\x67\x23\x7d\x33\xb7\x4e\ +\x8e\x80\x4a\x62\xec\x14\xed\xda\xb6\x72\xca\x4c\xb6\xd0\xa0\xc6\ +\x53\x64\x03\xef\x0c\xb9\xe1\x66\xaa\xe2\x49\x65\x68\xbc\xca\x4b\ +\x21\xe7\xf0\x79\xdd\xa4\xcd\x26\xe6\x89\x76\xa0\x1d\x75\x0d\x24\ +\x70\x3d\x14\x6e\xd7\x37\xeb\xf3\xe9\xae\x77\xa2\x85\x45\xf0\xb5\ +\xdc\xd7\xdf\xc6\xab\xfc\xc5\x91\xac\xf9\xc0\xf9\x94\x40\x97\xe4\ +\xa9\x23\x78\xad\x7b\x36\xec\x94\xa6\x75\x70\xba\x21\x86\xc4\xb2\ +\x15\x7c\x4c\xba\x78\xe8\x0c\xa0\xd5\xdb\x50\xa7\xf7\x71\xa0\x6f\ +\xd2\xde\xa6\x23\x55\x96\x96\xd6\x1f\x6f\x5a\x51\x9e\x8c\xa3\x7d\ +\xf0\xb1\x7e\xd2\x4e\x45\xe2\x34\xed\x8d\x79\x3e\xa6\x15\x74\x09\ +\x55\x1d\x6b\xfe\xa4\xb9\x0c\x4f\xda\x67\x7b\x50\xbf\x53\xf1\x67\ +\xc2\xbc\x99\x82\x36\xc8\x8d\x33\xb7\x8d\x03\x7a\xc4\xa7\xd6\xe9\ +\xdb\x0d\x7f\xca\x3f\xe7\x0d\x4d\xda\xf4\x43\x31\x7d\x5a\x99\x3e\ +\x3c\xa4\x87\xe5\xb7\xe2\x09\x92\x71\xa4\xbd\x70\xde\xba\x66\x1b\ +\xe7\x1c\x4a\x3c\xfb\xa1\xea\xab\x3e\x92\xaa\x87\x76\x5b\xdc\x31\ +\xb7\xbf\x82\xe8\xee\xc0\x37\x85\x30\xd2\x46\x05\x43\x93\x17\x0c\ +\x65\x1e\x77\xfa\x4e\x74\x0b\x38\x0b\x5b\x10\xa0\xe6\x4e\x08\x2a\ +\x5e\x9f\x8b\xc1\x65\xed\x44\xf8\xd9\xd2\x82\x33\xee\x92\x54\x7a\ +\x8e\x58\x70\x68\x44\xa1\x16\x9c\x4a\x44\xa6\xed\x54\x32\xb1\x82\ +\x6d\x78\xcc\x22\x14\xd4\x18\xd6\xc0\x52\x0f\x6e\xfa\x6a\x60\x6b\ +\xd7\xa3\x06\x19\xeb\x2c\x1b\x86\x31\xe4\x87\xd2\x7e\xac\x6c\x59\ +\x37\xda\x21\x95\x06\x90\xa9\x39\xd2\x96\x2e\x6c\xa1\x06\x8d\xb4\ +\xdc\x44\xa3\x5b\x38\xb4\x9a\xf5\x68\xa2\x83\xd6\x4f\x4a\x8a\x97\ +\x8e\x91\xd1\x68\xcc\xeb\xb4\x47\x71\x7e\x16\xf1\x85\x3f\xfe\x57\ +\xaa\x07\x2e\x46\x7c\xbb\x56\x12\xbc\xe8\xf9\x11\x8e\x70\x84\x23\ +\x1c\xe1\x45\xe0\x72\x77\x84\x23\x1c\xe1\x08\x3f\x5a\x68\x93\xbe\ +\x5b\x13\xc0\x0e\x86\xf3\xb8\xbb\xe4\x05\x43\xd1\x5d\x53\x3f\xe4\ +\x8d\x7f\x88\x75\xec\x26\x9b\x00\xd4\x26\x2e\xaf\xd7\xf1\xb5\xcf\ +\xfd\x56\xcc\x66\xab\xbc\x79\x8c\x44\x93\x7d\x26\xc7\xde\x50\xe3\ +\x46\x43\xdd\x60\xcc\x27\x99\xc0\x92\xd7\x82\x00\x8b\xe6\x62\x9b\ +\xc9\x6f\xaa\x18\xf7\x13\x63\x26\xb3\xc8\x4d\x3a\x78\x27\x08\x5c\ +\x2a\x43\x48\xcb\x12\x39\xcf\x9a\xa4\x7b\xc3\x42\xcc\x26\x2c\xe8\ +\x59\x28\x0d\x84\x45\xb6\x09\xb5\xbd\x54\xc6\xbe\x39\x60\x5f\x88\ +\x5b\x21\x83\xec\xb3\xa1\xb6\x5e\x6a\x92\xcd\x7f\x7c\x38\x5f\xb0\ +\xbe\x2e\x7e\xde\x74\xda\x88\xb2\xcb\x1c\x70\xd0\x11\xd6\x86\xd8\ +\x94\xac\xcc\x92\x02\x7d\xd3\xf6\x2b\x6d\x1a\x3b\x34\x54\xe5\x72\ +\xa4\x4b\xac\xa8\xe2\x15\xda\x42\x8a\x45\x50\xd6\x47\xf2\xb9\xe1\ +\x43\x2a\xc7\x89\x6c\x54\xbe\x1b\x69\xde\x48\x47\xc1\x4f\x15\x4a\ +\xc4\x0d\x90\xa9\xda\x76\xb7\x98\xc6\xf4\x44\x8b\xe9\x85\x74\xa6\ +\xb2\xc9\x4a\x96\x4b\x22\xc8\x21\xeb\x25\x6f\x7a\x4b\x6f\x26\x26\ +\x4f\xee\xb4\x0d\x26\x63\xc9\xa4\x4a\x5f\x69\xaf\x27\xc4\x07\x1b\ +\x20\x2d\xcb\x60\x6e\x2c\xf8\xc3\xe5\x16\xbd\x0c\x5e\x44\xb3\xb1\ +\xa1\xb4\x6a\x08\xc7\xb1\xe1\xfc\xc4\xf7\x8d\x18\x05\xbf\x12\x88\ +\x30\x9d\x48\xbd\xcf\x3f\x9f\x5e\xc3\x46\xc6\x55\xb0\xf4\xa7\x68\ +\x6e\x14\x58\x66\xbf\x0a\x63\x13\x9d\xb2\x6d\x1f\xbb\x34\x29\x33\ +\xaf\xe9\xb3\x22\x56\xbc\xf9\x07\xf6\xa6\x0d\xff\xd9\x25\xb9\x6f\ +\x08\x89\xd7\x36\xb4\xa8\x2f\x9f\x1e\x6e\x12\xda\x41\xf5\xca\x46\ +\xd3\x52\xe7\x13\x1b\x6d\xd4\x8b\x8f\xf5\xa9\xba\xf1\x4d\x79\x99\ +\x76\x5e\x65\x27\x03\xf9\x56\xb2\xe2\x81\x1d\xa8\xa7\x46\xa7\x42\ +\xc5\x45\x72\x68\x32\xcb\x41\x65\x33\x63\x03\x79\x95\xf1\x56\x00\ +\xd5\xc1\xdf\x21\x76\x0f\xa4\x7e\x28\x27\xaf\x43\xe5\xa6\x3f\x22\ +\x99\xa2\x2c\x7e\x12\x4c\x75\xb9\x1f\xab\xae\xa8\x5b\x74\xab\x8e\ +\xbd\x19\x45\x5d\xf3\x28\x02\xed\x47\xdd\x36\xde\x30\xd0\xce\xc8\ +\xdd\xc6\xd2\x45\x4f\x34\xb6\xad\x4b\x1c\xfb\x6e\x93\xb2\x5b\x65\ +\xb1\xac\xd2\x78\x83\xce\xae\xe3\x33\x36\xd4\x87\xd4\x8f\xfd\xca\ +\x49\xf7\x05\xe9\x29\x5d\xd7\x5f\x6c\xbb\xe9\x56\x7a\xcb\xa4\x5b\ +\x72\xdf\x14\xf4\x2b\x21\x33\xff\x76\x63\x6b\x34\x99\xc5\x7e\x36\ +\x73\x5e\xa3\xad\x6c\xa8\xc9\xc7\x60\xec\x53\x97\x04\x6c\x0c\x68\ +\x4c\xa7\xff\xf8\x92\xf9\x65\xfe\xc3\x80\x0f\xc8\x15\xe4\x3f\x37\ +\xba\xd8\x4c\x1b\x3f\x9c\x45\xdc\x57\xcd\x4f\x74\x7e\xd3\xbd\x9e\ +\x2c\x62\xf6\x74\x1f\x93\xe7\x6a\x0f\xf6\x5f\x18\x83\xdc\x30\x1c\ +\x68\x2c\x68\x40\x36\xbb\x63\xba\xe2\x88\xb2\xf1\xb0\x2e\x46\xe2\ +\xfc\xcf\x8e\x4c\x06\x16\x25\x7e\xc3\x06\x5c\xa3\x4c\x6e\x8b\x51\ +\x9e\xd2\x4a\xe3\x5f\x00\xab\xfe\xbc\xc9\x58\x61\xea\x73\xb8\xe2\ +\xaa\xbf\x69\x6d\xb4\x41\xab\xea\x5c\xdf\xa3\xd9\x4e\xc5\xcd\xb2\ +\xea\x5b\xf9\x28\x47\x9d\x4f\x7e\x6a\x6c\x45\xf0\x9d\x78\xbc\x48\ +\x85\xfc\x7e\x47\x40\xdf\x69\x7c\x78\x31\x45\xb3\x68\xc4\x35\xa6\ +\x36\x17\x1c\xf4\xe9\x52\xb4\xf6\xb3\x83\x43\xb8\x1d\xc7\x50\xcf\ +\x53\xa9\xc4\xd2\x91\x46\xa9\xac\x3a\x90\x08\xcd\x5e\x9b\xfc\xd9\ +\xd0\xdb\xf8\xda\xbb\xda\x72\xb5\x11\xd0\xc7\xe5\xcf\xa7\x3f\xf1\ +\xc9\x88\xe5\x93\xf8\xc3\xdf\xf8\xcd\x58\x32\xde\x0f\x52\x76\xd4\ +\x1d\x79\x7c\x57\xf0\xdd\xea\xfd\x20\xa0\xe5\xf5\xa3\xcc\xf3\x87\ +\x01\x03\xff\xd5\x3c\x8a\x56\xe5\xab\xab\xfe\xd6\xef\xfd\x66\x8c\ +\x4e\xd7\x1a\x1f\xd4\x50\x9c\x93\x9c\x53\xd9\x98\x56\x31\x10\xf7\ +\x8f\x93\x6e\x57\x44\xf6\xbb\x61\x00\x8c\x75\x68\x63\x7a\xcf\xaf\ +\x8f\x4f\xea\xb4\xd7\x64\x0d\x0e\xba\x45\xcd\xe3\xd0\x6b\x4f\xff\ +\x67\x7f\x07\x74\xb4\xa3\xc3\xd0\xa3\x04\x22\x69\x83\xd3\xe1\x76\ +\x5e\xc9\x69\x01\x44\xcd\x68\xbc\xda\xa4\x3d\xe6\x53\x3a\xeb\x63\ +\xa6\x31\x60\x36\xd5\xb9\x8f\x8a\x42\xc3\xe8\x90\x22\x83\x93\x1b\ +\x0a\x89\x68\xce\x34\x4e\x5f\x5e\xeb\x27\xf9\x02\xa6\xdc\x58\xec\ +\x74\x7c\xc8\xb2\x0f\x31\xfc\x56\x1b\x87\xa7\xed\x20\x02\xa6\x1e\ +\xf7\x1a\xbf\x95\x20\xd9\xbd\x66\xb6\x45\xcb\x0d\x10\x3e\x68\xb7\ +\x2c\x1b\x90\x58\xc7\xa1\xed\xa6\xc9\x57\x81\xfa\x32\x07\x1b\xaa\ +\xa8\x8e\x4e\x22\xe3\x0e\xf0\x14\x5c\xd6\x84\x31\xff\xb9\x88\xa2\ +\xf5\xd1\x6a\x00\xaf\x28\xdb\xa8\xb4\xa6\x93\xe7\x71\x59\x1f\xcf\ +\x6f\x8d\xf3\xfa\x97\x34\x58\x41\x71\x36\x6a\x98\xbb\xe0\x9c\x3f\ +\xc8\x08\xc8\x2a\xde\xf4\x75\x45\x48\x99\xf3\x72\xee\xc6\xa9\x0f\ +\xdd\xf7\x04\xf8\xee\xae\xc8\xa9\xb3\xaa\x9b\xfc\x61\x9f\x73\xcf\ +\x4f\xd9\x32\x87\x36\xe1\xb4\x43\x35\xb5\x75\xc8\xda\x30\x9d\x84\ +\x3b\xaf\xd3\x54\x06\x99\xbe\x09\x89\x67\xb0\x80\xf8\x80\xef\xb2\ +\xf0\x7a\x50\xa5\x25\x3d\x65\xf4\x6b\xce\xc5\xb3\x0f\x4e\x2b\x6e\ +\x6b\x4b\xf4\x5c\x3d\xc9\xa7\xdf\xb4\x56\x2d\xf3\xc6\x94\xd1\x5c\ +\x47\xcc\xe8\xea\x2b\xeb\x56\xd7\x4d\xf1\x99\x1e\x70\xbd\xa5\x3d\ +\xda\x66\xe6\x54\x21\xff\x3b\x4d\x73\x13\xe6\x27\xde\x1c\x53\x1c\ +\xda\xf1\x92\xc9\x46\x47\x2b\x8d\xeb\x9d\x78\xe5\x6b\x9a\xe0\x74\ +\xf0\x33\x9e\xd7\xe7\xa6\xa3\x60\xfd\xe4\x2b\xea\x38\x9d\xce\x74\ +\xa7\x43\x39\xdb\x31\xe3\x2d\xaf\x96\x1f\x98\xdf\x05\x51\x3e\xe2\ +\xa9\x99\xd0\x28\xd2\xbb\xfc\x65\x1b\x76\xd3\x69\x14\xc7\xcc\x93\ +\xa6\xc5\xa0\xec\xe1\x0f\x42\x3b\xd6\x68\x41\x47\xe3\x83\x89\x5e\ +\x66\x5f\x08\x1c\x94\x33\xfd\x49\xed\x07\xdb\xc2\x6a\xf3\xdb\x80\ +\x3a\x3f\x14\x30\x6d\x3d\x93\x1d\xf8\x95\xb0\x86\x3c\xf7\x5d\x0c\ +\x02\xb4\xf9\x45\x17\xbf\x8b\x57\x00\x7a\xcc\x13\xb4\x95\x81\x70\ +\xbe\x5d\xa0\xd1\xe6\x76\xd9\x1b\xdb\xff\x1c\xd5\x38\x37\x20\x9a\ +\xfc\x10\x7a\xee\x50\x8e\xed\xbb\xf5\x05\xca\x93\x27\xdf\xda\x9c\ +\x29\xdf\x26\x53\xb2\x06\x92\xc1\xa3\x5c\xb4\xa1\xdb\xb1\x44\xc6\ +\x07\x91\x44\x1d\x4b\x44\xd6\x47\xe3\xdc\x86\x9e\x4f\x36\x40\xaa\ +\xd3\x17\x0e\x65\xf4\xbd\x99\xc6\xc3\xb7\x9f\x7d\x39\xae\x97\x4f\ +\xbf\x83\xdd\x23\x1c\xe1\x08\x47\x38\xc2\x87\x81\xaf\xcb\x47\x38\ +\xc2\x11\x8e\xf0\x23\x87\xef\x34\x6f\xbb\x3d\x09\xbd\x03\x50\x69\ +\x66\x3e\xcc\xdc\x81\x9c\x49\x64\xe3\xb4\xd9\x26\x00\x0b\xd9\xea\ +\x3a\xd6\x6f\xbf\x1d\x17\x53\x4d\x34\xb5\xc0\x6a\x1b\x05\x4c\x90\ +\xd7\x9b\xad\x5f\x3f\xc5\xbb\xc7\xfb\x57\x2e\x6a\xc2\x8e\x8a\x0d\ +\xb4\xa3\x93\x18\x4c\x7b\x81\x45\x48\x46\xca\x93\x57\x31\xd9\x4a\ +\x01\xb1\x17\x81\xbc\xc8\x4e\xb9\x71\xb3\xa7\xf2\x36\x73\x00\xc3\ +\xd8\xa1\x44\x50\xd9\xb4\x4c\x90\x67\xf6\xf2\x03\xff\x10\x09\x5a\ +\x3a\xfe\x33\x6d\xcb\x7f\xa7\xad\x79\x5d\x5f\xbe\x97\xde\x4b\x14\ +\x14\xca\x0f\x36\xb4\xb8\x7d\xe2\x8f\xf8\x6c\xa4\xe4\x0d\x95\xb1\ +\x1f\x12\xe3\x75\x17\x7e\xa5\x86\xe5\xa4\x76\x62\xe7\x45\x70\x5e\ +\x3a\x64\xfa\x7e\x55\xd3\x16\x5f\xa9\x9f\xba\x09\xc4\xad\x6d\x9b\ +\xf6\xc3\x28\x71\xc6\x49\x95\x29\xbc\x78\x67\x41\xb7\x52\xf9\x96\ +\xe2\xb2\xb1\xb6\xe4\x29\x22\xca\xac\x85\xf7\x54\xb2\xf9\x24\xa6\ +\x67\xa2\x15\xc6\x73\x2d\x38\xe1\xb1\x90\xe5\xa3\xba\xf1\x2f\x57\ +\x27\x92\xcd\xc0\xe2\x4f\x24\xf7\xc6\x82\x70\xb5\x6b\x62\x65\xcf\ +\xaa\x1e\x5a\x81\xe6\xc4\x73\x16\x2c\xd8\x53\x02\xc7\x93\xe6\xb2\ +\x9b\x32\x6f\x4e\xb0\x11\xc1\x8d\x74\x36\x3a\x14\x8f\xbc\x23\x2f\ +\xb5\x94\xe7\xa6\x03\x41\x76\x67\xea\x93\xf2\x39\xf0\xd5\x1b\x22\ +\xa4\x4f\x1d\x6f\x34\x90\x46\x81\x8d\xb7\xb6\xf1\x81\x0c\x7b\xde\ +\xa8\xb0\xff\xa9\xd3\xec\xef\xdd\xcf\xa5\xa3\x3a\x11\xc3\x7c\xca\ +\x91\x1b\x1b\xa4\x4d\x5b\x99\x06\xdf\xd2\x26\x1b\x7b\x6c\xee\xf8\ +\xff\xe9\x2c\xcb\xba\xe0\x26\x03\x37\xe2\xb3\xcf\xa8\xde\x69\x5a\ +\xf7\xa3\x7c\xaa\x46\x9a\xca\xa7\xea\x08\x4c\x7a\x4f\x45\xa8\x93\ +\x0c\xf0\xfb\xd0\xf2\x6e\x72\xfc\x53\x18\xe8\x34\x59\xd2\xe5\x8b\ +\x73\x03\x25\x0f\xdf\x1c\xf0\x1f\x8c\xbe\x74\xb2\xbf\x90\x3f\x21\ +\x79\xd8\xea\x7a\xaa\xd3\xa9\xdc\x2d\x4d\x7e\xe9\x8a\x0e\x5e\xb0\ +\xd3\xf7\x40\xe4\xd5\xea\x8b\xf6\x54\x7f\x72\xdb\x3a\x8e\x5f\xca\ +\x03\x39\x75\x37\xf0\xa7\xf5\x1d\xfb\x26\x99\x71\xb5\x49\xb6\x21\ +\x76\xa9\xab\x2c\x5b\x96\xb1\xda\xaa\xf2\x73\x1a\x02\x3c\xa7\xc5\ +\x5e\xe9\x10\xec\x0f\xed\x57\x65\x71\x5a\x42\xe5\xab\x38\x7e\x59\ +\x4f\x71\xdf\x5c\x22\x7f\xfb\x9f\x69\x5d\x36\xf5\xbb\xbd\x1f\xa5\ +\xe0\x69\x48\xc5\x6d\x13\x3b\xea\x47\x8b\x99\xfd\x74\x05\xa9\x42\ +\xc6\xfc\x47\x50\xdd\x37\xe1\x55\x91\x7b\xf4\x6d\xb7\xe5\xa9\x32\ +\x61\x53\x34\x9b\x4c\xf8\xe2\xf2\xb6\x50\x3a\xe9\xa3\xc6\x13\xc5\ +\xd1\xdd\x5f\x28\xcf\x47\xca\xff\x64\x12\x3b\xf9\xb7\xdd\x68\xbc\ +\xfe\x40\xe7\xf2\x53\xf5\xb3\x4b\x9e\xaa\x65\x2c\x60\x33\xa8\xda\ +\xca\xd0\x53\x0d\x68\xb3\x04\xc9\x4a\x9c\x3f\x8e\x50\xeb\x0b\xd1\ +\x07\x88\xc9\x0b\x63\xd5\x7c\xb6\xb1\x74\xd1\xdb\xc9\x05\xda\x68\ +\x3f\x1f\xc5\x64\xb1\xd3\x58\xa2\x70\x1a\x31\xbb\xb7\x8f\xe9\xb9\ +\xaa\xe7\x74\xe4\xf8\xf4\x84\xb0\x8f\x89\xc2\xec\x4c\xf4\xb9\xfc\ +\xbd\xa7\x32\x5f\x8c\x63\x7e\x4f\xfa\xe7\xbb\x38\x51\xda\x93\x33\ +\xa5\xbb\xd0\xb9\xc3\xe6\x3d\xe5\xb6\x4f\xcd\x1f\x82\x2a\x73\xc9\ +\xb8\xac\x11\xd6\x71\xe4\x0d\xaa\x00\x86\x01\x5d\x3a\x9d\xaa\x0b\ +\x42\xb9\x44\x0c\x93\x34\xa0\xd2\x90\x52\x7f\x34\x5e\x87\x11\xa5\ +\x15\x27\x93\x7f\xc3\x73\x15\xd4\xec\x15\x12\x20\x1b\xa4\x19\x80\ +\xf5\x0b\x3a\x52\x44\x8e\x0b\x89\xa9\x63\xbf\x82\x6f\x9b\x9b\x6a\ +\x3c\x21\x9e\xfe\x45\xbc\x74\x3a\x8f\x33\xf5\xa7\xeb\xaf\xbd\x19\ +\xcb\xe5\x8d\x79\x4d\xd6\x41\x33\x7c\x9b\xff\xbd\xc0\xbf\x43\xd2\ +\x3f\x9f\xa0\x7e\x49\xdb\xe9\xc3\x98\xff\xf4\xe6\x3a\x2e\x6f\xbe\ +\x15\x0f\xee\xcf\x35\x1f\xe0\x09\xb0\x41\x95\xb6\xf6\x81\x18\x73\ +\x55\x6f\x8c\x3c\xef\x0e\x2a\x1f\x51\x89\x4d\xea\xd0\xf0\x10\xcc\ +\x77\xe0\x6c\xbd\x1b\xee\xe2\xe3\x1b\x7d\x4d\x1e\x2a\xd7\x96\x2f\ +\x9a\x2d\x00\x85\x0b\x0d\xbb\x86\xb5\x7c\x80\x7b\x5b\x3f\x31\x12\ +\xba\xa2\xff\x57\x6e\x03\x4f\x95\x21\x60\xb8\x9e\xcf\x34\xc4\x41\ +\x2b\xf8\xd4\x97\x9d\xc4\xc9\xe3\x60\x0c\x34\x02\x9e\xe7\x33\xb2\ +\x03\xed\x7c\x9c\x8b\x55\x70\xa5\xaf\x53\xab\x74\xb8\x85\x06\x43\ +\xda\x36\xc4\x80\xd7\x4e\x9d\xb4\xda\x08\x4b\x1a\xc7\x90\x94\x8e\ +\x26\x90\xab\x50\xcd\xa8\x78\xe9\x9b\x40\xd8\x6d\x43\x14\x07\xf9\ +\xd1\x42\x9d\xf4\x4d\xdd\xb1\x16\x29\x20\x8e\x86\x71\x53\x28\x8c\ +\xbd\xac\xab\xb4\x91\xf6\x2b\x94\x2a\xf3\x12\x5d\x3d\xf2\x49\x27\ +\xe5\x0b\x0f\x39\x44\x97\x06\x8a\x08\x54\x8a\x92\xaf\xc0\x35\x00\ +\xb9\xe7\x84\xc4\x75\x7d\xf2\x46\x0b\x5b\x3c\x6c\xc6\x40\x1b\x4f\ +\xa5\xcf\xf5\x93\xb9\x51\x61\xf8\x5c\x4b\xcd\x97\x17\x9d\x7e\xe6\ +\x03\x0d\x91\x76\xc9\x87\x03\xde\xf2\x69\x3e\x98\x48\x3f\xa0\x29\ +\xb0\xc0\x63\x32\x36\x5c\xef\x40\xa5\xa2\x5f\x54\x39\xbd\x11\x88\ +\x0d\xf8\x30\xa8\x6f\x7d\x1d\xf5\x47\x79\x55\x1b\xd0\x26\xa9\xab\ +\xeb\x32\x71\x8e\xc4\x2d\x57\xac\xd2\x1c\xf0\xc9\xcb\x1f\xca\x56\ +\xa1\x7d\xd8\x58\x73\x52\x12\x26\xcf\x6d\xe5\x92\x08\x48\xdb\xf4\ +\x6d\x4f\x32\xdb\x73\x0e\x9e\x2b\xa4\x5d\xca\x41\xb1\x15\xe3\xff\ +\x51\xe1\x39\xe8\x48\xdd\xba\x9e\x15\x1f\xd6\xaf\x78\x9e\x5b\x68\ +\x8e\xc0\x53\x6b\x93\xf1\xdc\xf3\x8c\x36\xbf\xf1\x26\x5c\xb5\x8b\ +\x9f\x48\x2b\x8b\xb6\x4a\x7a\x85\xdc\x94\x13\xcf\x34\xf9\x28\x8e\ +\x06\x69\x9c\x57\xea\xe1\xbb\x0e\x0e\xa4\x07\xc4\x56\xb4\x3b\xab\ +\xad\x63\x5b\xcc\xa7\xb0\x23\x3a\xdb\x88\x73\x3d\xf3\x70\xff\xb0\ +\x8c\xb4\xc8\x33\xe8\x60\x33\x20\xce\x69\xa1\xb2\x6b\xcb\x29\x6e\ +\xc1\xdc\x02\x45\xd0\x4f\x7b\x99\x17\x4a\x6d\x84\x4d\xe8\x53\x98\ +\x3a\x30\x00\xb0\x96\x93\x1d\xf5\x35\x07\x58\xb5\x59\x86\xf5\x0e\ +\x3c\x58\x54\xfc\x40\xde\x74\x06\xba\xb2\x79\xdb\x67\x87\x22\x0e\ +\x78\x0e\xc9\x6c\xfc\x3c\x08\xc9\xa4\xfb\x20\xf1\x1a\xac\xa8\x2f\ +\xc8\x8c\xf5\xa3\x79\x73\xcf\x71\xb0\x18\x35\xc5\x79\x11\x5a\xa2\ +\x21\x54\x9e\x2d\xbb\x43\x18\x24\x28\xd2\xf6\x2b\x9f\x64\x24\x1a\ +\x26\x6e\x6d\xeb\x76\x2e\x5e\x03\xe2\xe6\xa1\x23\xca\xba\x0d\x6e\ +\x2b\x1b\x68\xdf\xc4\x7c\xbb\x36\xbe\x6d\xdb\x91\xe4\x2d\xce\x35\ +\xbf\x5a\x3f\x8d\xf7\x1e\xbf\x99\x7d\x04\xd1\xa1\xf6\x11\x8e\x70\ +\x84\x23\x1c\xe1\x3b\x40\xcd\x68\x8e\x70\x84\x23\x1c\xe1\x63\x08\ +\xcc\x07\xdb\x24\xf4\x43\x00\x71\x9b\xfe\x7d\xe4\x34\x10\xa1\x42\ +\x9b\x5e\xbf\x60\x56\x33\xf3\x6f\xfc\xde\xd7\xe2\xc1\x78\x17\x0f\ +\xef\x9d\xfb\xbf\x5a\xf2\x17\xcb\xcc\xb6\x99\x18\xef\x62\xbb\xe1\ +\xd5\x81\xdc\x74\x69\xa9\x99\xb8\xe7\xb4\x35\x27\xc6\x85\x2d\x12\ +\xd7\x71\x68\xbe\xf9\xf1\x97\x09\xae\x43\xca\x73\xe1\x85\x1e\x87\ +\x5b\xe0\xac\x74\xe0\xab\xbc\x3d\x39\x4f\x97\xf4\xb5\xb0\x8e\x4a\ +\x5e\x01\x60\xd2\xef\x98\x89\x8e\xeb\x23\x79\x43\xf9\xc6\x36\x2a\ +\xe6\x0a\x44\x78\xb3\x8c\x3f\xa8\x5f\x6f\xfd\xf4\x4d\x6e\xe0\xa5\ +\xd0\xf9\x23\x57\x22\x5c\xdd\xab\xae\x76\xbb\x89\xea\x65\x2a\xfd\ +\xa9\x26\xe6\x32\xb7\x9f\xea\xc2\x32\x8b\xb1\x78\xe3\xed\x5c\x41\ +\x85\x23\x3d\x18\xbf\x59\xd4\xc9\x8e\x5f\xcb\xd1\x82\x6c\x3a\x9f\ +\xce\x93\x01\x46\xd7\x78\xc0\x2a\xb2\x51\xae\x07\x48\xe9\x1a\x91\ +\x42\x04\x9b\x39\x7e\xe5\x1c\x9b\x6a\x37\xe2\xde\xc8\x73\x1e\x67\ +\xd8\xb2\xed\xa7\x65\x28\xaf\xb5\x3b\x99\xc5\x54\x81\x4d\xb5\xc9\ +\x89\x16\xba\x6c\x54\xb1\xc8\xd6\xa2\x9b\x15\x06\xe5\x6c\x0b\xf3\ +\xf6\x74\x98\x17\xc3\xc8\x84\xd9\x00\xc9\xa7\x6b\x94\xb1\xe2\x59\ +\xef\x00\x75\xab\x74\x32\xe0\x45\x37\x1b\x07\x2c\x96\x2b\x8e\x61\ +\x68\x12\xfa\x69\x22\xf2\x53\xc0\xbe\x17\xd4\xe8\x56\x80\xbf\x9f\ +\x4f\x73\x53\xa6\xd2\xe5\x82\x5e\xe9\xc5\xc3\xd7\xa6\xd7\x36\x64\ +\x9c\x1e\xbe\x83\xf2\x86\x7f\xcb\xa6\x12\x0a\xcb\x96\xfd\x4f\x79\ +\x6e\xee\x94\x3f\xd6\x4d\x1f\x89\xa7\x0e\x75\x41\x1a\xb5\x71\x6d\ +\xa6\x50\xb6\xdc\xbc\xa1\xf0\x92\xe9\x48\xfd\xd3\xde\xee\x33\x3a\ +\x6f\xc6\x6c\x02\xf0\x24\x97\x84\xb2\x54\x65\x4f\x6c\xd2\xf9\x54\ +\xb5\xb9\x6e\x4d\x24\x36\xad\x80\x4f\xe4\x2d\x32\x13\x81\x4a\x56\ +\x3a\x6e\xfb\x01\xcf\xb6\x44\x77\x7a\x45\x77\xfc\xa6\x43\x59\xc9\ +\x8f\xb2\x1a\xf7\xfa\x84\x66\xa3\xf1\xc1\xd2\xec\xc1\x6c\xec\x88\ +\x70\xfd\xd0\x2f\xa4\x41\x9b\xd5\x46\x92\xeb\xb0\x64\x04\xea\x37\ +\x43\xf2\xac\x8b\x1f\x84\xd2\xc9\xf6\x20\x64\x5d\x77\x9b\x9a\xe4\ +\x03\xdf\x7a\xb4\x49\xd6\x7f\x9f\x0f\xba\x49\x67\x3a\xd2\x0c\x30\ +\x7c\xfc\x6a\x4f\xab\xcd\xb1\x41\xbf\xc1\xff\xea\x6b\xde\xb4\x4d\ +\x39\xba\xee\x5b\xa4\x41\x86\x4d\x07\xe2\x04\xf5\x07\xea\x5e\x81\ +\x57\x3c\x12\xbc\x89\x46\x90\x8e\x37\x17\x5d\xf6\xa6\xaf\xbc\x1a\ +\x0f\x1d\xea\xdd\xbe\xc9\x06\x76\x2d\x53\x5c\x81\xb8\x37\x6f\xa7\ +\xd3\xd8\x9f\xf1\x54\x9a\xc6\x96\xf9\x2c\x76\x93\x5d\xf0\x17\x89\ +\x93\x2b\xc5\xaf\xd4\xe1\x96\xf4\x35\xc6\x00\x7d\x18\x37\x7c\xa7\ +\x04\x8f\x38\xf2\x01\x27\xf4\x34\x0d\x97\x91\x4c\x63\x66\x9d\xc7\ +\x8a\x80\x2b\xec\x27\x92\x73\xe7\x52\x55\x41\x5d\xfb\x06\xde\x6c\ +\x1b\xb3\xb9\xfa\xf6\xf9\x2e\x4e\x5f\x9d\xc5\xf9\x27\x2f\xe2\xf4\ +\xb5\x73\xd1\xc2\xaf\x9e\xc5\xec\xa5\x93\x98\xc9\xdf\xd9\xfd\x49\ +\x2c\x1e\x4e\x62\xfa\xd2\x2c\xce\xde\x58\xc4\xd9\x27\x4f\xe2\xc1\ +\x27\xcf\xe2\xe2\x33\xf7\xe2\xe2\x2f\xdd\x8f\xc5\x5f\x9a\xc7\xe4\ +\x2f\x45\x9c\x3d\x9a\xc5\xfc\x54\x59\xb4\x7e\xc8\x87\x62\x28\x7f\ +\x97\x47\x05\x5e\x5d\xd6\x2b\x54\xcd\xc3\x4f\x00\x82\xfa\x1f\xc0\ +\x20\x42\x11\x8c\x49\x00\xbf\x85\x82\x26\x37\xf8\xe4\x45\x4f\x41\ +\xd7\xbf\xdc\x50\xa3\x4e\x53\xec\x7c\x07\xe7\x41\xa6\xe5\x08\x0f\ +\x54\x74\x83\x2e\x9f\x81\x81\x01\xc0\x75\x92\xe2\xfb\x08\xd3\x79\ +\x72\x8d\x51\x99\xd7\x6b\xfb\x41\x2b\x52\x4a\xf5\x82\x38\x1f\xcf\ +\x63\xf3\xee\x3b\x71\x7d\xbd\x24\x85\xda\xac\xcb\xa8\xa0\xf2\x49\ +\xe3\x7d\xf6\xdf\x0b\x90\xb4\xa5\xfb\x7e\xd2\xff\xb9\x02\x55\x50\ +\x7e\xb3\x5f\xaa\xe3\xfe\xc1\xd7\xbf\x12\xf3\xf9\xe3\x38\xbf\x98\ +\xab\x2a\xd5\x9f\xd5\xad\x7d\x9e\x71\xce\x77\x1d\x2a\x21\x7b\x52\ +\xb6\xd5\x90\xe6\x64\x34\xa5\x43\xc3\x46\x15\xef\xfb\x22\xf6\x94\ +\x87\xa3\xd9\x53\xee\x82\xc3\x5c\x13\x78\xb5\x28\x73\xbc\x14\x56\ +\xba\x03\xff\x5e\xb4\xd5\x71\xaa\x7f\x79\xec\x3f\xd0\x1b\x8e\x39\ +\x29\xe3\x54\xe6\x81\xed\x35\x9b\xc3\xf2\x11\xdf\xa7\x4a\x37\x63\ +\x6c\x71\x19\x52\x33\xcf\x7c\x86\x43\x6e\x86\xe7\x0d\xf1\x7e\x23\ +\xa8\x82\xe4\x1c\xbc\x01\xe1\x41\x42\x39\x35\x26\xb1\xa6\xd3\x80\ +\xf2\x0c\x8b\x34\x88\x1c\x52\x4a\x65\xd5\xaa\x41\xd1\x07\x76\x04\ +\xf9\x86\x86\xf4\xe7\x0e\x61\x11\x87\xc2\xfe\x86\x7e\xf9\x0a\x0f\ +\xf9\x20\xbd\xed\x15\x34\x12\x9c\x37\xcd\x29\x27\x29\xdc\x93\xfa\ +\x8f\x45\xe0\x5b\xa1\x52\xb7\x4f\x55\xa2\x58\xad\x8f\xa4\xb4\xbe\ +\x4e\xa3\xab\x92\x79\xcd\x46\xab\x7f\xcf\xe1\x3c\x1e\x17\x36\x3f\ +\xe9\x6e\x33\x84\x20\x0d\x36\x5e\xba\x57\x0d\x5a\x37\xe3\x84\xb4\ +\x83\x3d\xe5\xa7\x73\xc0\x81\x34\x4a\x09\x13\xca\xfe\x35\xcf\xe5\ +\x6f\xfa\xe5\x58\xfa\x0f\xd4\xbc\xbc\xb8\x79\xbd\x52\x28\xa9\x20\ +\x19\xad\x1c\x0e\x58\x71\x1a\x81\x37\xba\x48\x80\xcc\x28\x53\x28\ +\x6f\x1b\x73\xf3\xb4\x5c\x15\x57\xbe\x2e\x8b\xd2\x59\x46\xf0\xa6\ +\x49\xc9\x0b\x77\x1f\x97\x3b\xb1\x2e\x9c\x69\xdf\x01\xdd\x66\x03\ +\x79\xf2\x5a\x80\xe1\x8f\xf3\x01\x93\x6f\x35\x9b\x3e\xae\x1b\xcd\ +\x81\xb2\x6e\x29\x51\x7e\xbc\x89\xc6\x1c\x41\x32\xce\xa7\xb6\xa9\ +\xe6\x1f\x7c\x49\xcf\xaf\x7f\xd4\x5c\xa3\xb4\x7d\x7d\xed\xda\x8c\ +\x50\x36\xec\xaf\x82\xeb\xca\x71\xda\x83\xd7\x43\x66\xf9\x79\x55\ +\x24\x6d\x86\x06\x9f\x4c\x4b\x1e\xa4\x73\xaa\xc4\xe4\x45\x5a\xd7\ +\x37\x74\x62\x97\x93\xda\xb2\x5a\xf6\x95\xdc\x10\x24\xbf\x4c\x9b\ +\x3a\xc4\x65\x7b\xc0\x53\x09\x94\x52\x3e\xe9\xd8\x00\x7e\xd7\xf6\ +\x04\x33\x8b\x76\xc8\xbc\x0d\x9a\xbb\x34\x9d\xcc\x0b\x26\x79\xf1\ +\xc9\xa8\x9b\x1d\x6c\x19\x7a\x5c\x83\x53\x9e\x42\x37\x1c\x84\xa0\ +\xf2\x56\x9c\x7e\x95\x54\x3b\x36\x1d\x81\x49\x1d\xa4\x9b\x3e\xb1\ +\x82\x74\xb4\x42\x0a\x5c\x6e\x85\x3c\x3f\xfa\x00\x0c\xf5\x55\xd3\ +\x0e\xf8\xc6\x98\xe8\x00\x4f\x18\x39\xb3\x04\x8f\x35\xc2\x2d\xeb\ +\x83\xa1\xbc\xe2\x48\xbd\x9e\xa7\x10\x9d\x1c\x0b\x0d\x44\x13\x35\ +\xab\xe7\xcb\x74\xa9\x77\x89\x0c\x5e\xeb\x98\x47\x9d\xa5\x12\xf3\ +\xb4\x9c\xb7\x08\x9a\x89\xc3\x64\x2e\x6f\xcb\xa7\xcb\xc5\x44\x32\ +\x54\x0b\x2a\x8f\xb9\x59\x1f\xf9\x1d\xf8\x91\xd0\x74\x1a\xb8\xcc\ +\xe8\x5a\x39\x13\x81\xda\x75\x97\x95\xfc\x5c\x73\xfd\xdd\xe8\x2a\ +\xbe\xf8\xd5\xdf\x35\x2f\x3d\x25\xc1\x11\x8e\x70\x84\x23\x1c\xe1\ +\xbb\x85\xc9\x7f\x2e\x28\xfa\x08\x47\x38\xc2\x11\xfe\xd4\x01\x53\ +\xbf\xef\x34\x05\xec\x64\x22\x86\x7a\x07\x69\x64\xe4\x5f\xfc\x77\ +\x7f\x3f\xa6\xdf\xfc\xa3\xf8\x0b\x0f\x72\x71\xe3\xc5\x7f\x01\x4f\ +\xa8\xdd\x70\x33\x73\x9d\xbf\x94\xe7\xbf\x65\xd0\x61\x02\xcd\x84\ +\xd7\x8b\x3b\x02\x0b\x2f\xaf\xad\x92\x66\x41\xdc\xb0\x69\xec\x42\ +\xd7\x8d\x64\xcb\x70\xa4\x64\x87\x4e\x15\xc8\x0d\x6f\x64\x6d\x45\ +\xb0\x29\x41\xbc\x44\x24\x68\x49\xc0\x9e\xd0\x27\x31\x30\x55\x94\ +\x50\xe6\x21\x07\x59\xf0\x71\x33\x9d\x9b\xd6\x2c\xe6\x24\xc6\x26\ +\x9b\x1f\xfb\xeb\x55\x6c\xaf\x14\x2e\x37\x31\xe2\x95\x76\x24\x15\ +\xb2\x9c\xe4\x5a\xb8\x4e\xb9\xb1\x6c\x53\xeb\x18\x9d\xad\x62\xf2\ +\xda\x24\xce\xdf\x98\xc6\xc5\xfd\x59\x4c\x27\x5b\x2d\x28\xb7\x31\ +\x53\xfd\x9d\x4c\xa7\x31\xd9\x29\x8f\x93\x7c\x9d\x51\x6c\xe7\xf6\ +\xd1\xaf\x7f\xc2\x22\x46\x9d\x7b\xd5\x03\x54\xab\x87\x8e\x91\x08\ +\xf0\x6b\xdc\x20\xfa\xc3\x81\xdc\xb4\x6d\x26\xe9\xa8\xb2\xf2\x3d\ +\x1c\xd5\x21\xb5\xe5\x76\x73\xdd\x67\xd9\xd9\x0c\x1a\x6b\x61\x01\ +\x99\x37\x30\x48\xa7\x3a\x41\x47\x75\xd5\x6d\x00\xb0\xc0\xb5\xbe\ +\x70\xdd\xec\x6f\xed\x9a\x9b\x0b\xd0\x69\x8f\x9b\xff\x29\xd3\x22\ +\x18\xbe\xd2\xb2\xd1\xe3\xfa\x77\xd5\xe5\x27\xcb\x88\xbc\xe2\x8d\ +\xc7\xe6\x05\x31\xd3\x65\x0b\x91\xec\xa7\xdd\x17\x31\x05\xc8\xfe\ +\xa7\xbc\x06\x3c\xfc\x72\x39\x3a\xff\x92\xaf\x88\xe3\xad\x0f\x90\ +\x41\x1f\xcf\x34\xb6\x83\x1e\x99\xab\x2c\xe4\xe5\x74\xf8\x69\x5d\ +\x6e\x3a\xc0\xab\x80\x7e\xc9\x26\x2c\xc4\x61\x53\x37\x6c\x08\xce\ +\xd8\x84\x6b\x4f\x31\x65\x7e\x52\xec\xd2\xfa\x53\xb4\xe3\xce\xdb\ +\xb5\x20\x5c\xfe\x39\x94\x3f\x5d\xfc\x90\x76\x28\x5b\x4d\x46\x70\ +\x3a\xdb\xac\x38\x1f\xca\x53\x65\x4f\x1d\x78\xb8\x45\x3d\x26\x8f\ +\x68\x93\x99\xa4\x7f\x71\xe0\xa6\xa8\xc2\x9e\xd7\xd1\x31\x1e\xd0\ +\xae\x95\xd6\xfa\xb6\x4d\x9a\x8c\xbb\x6e\x8a\x97\x6d\x93\x79\x75\ +\xfe\x20\x2b\x1f\xd3\xa7\x2c\x67\xd3\x55\x2c\xd3\xc0\x73\x9a\xaa\ +\x07\x72\x70\x9c\x40\x8c\xb4\x66\x0e\x02\xdf\xe2\x3b\x9f\x17\xed\ +\xb8\x6f\x2a\x2f\x97\x9b\x3e\x4f\xdb\xba\x5f\x27\x76\xbf\x87\x2f\ +\xb9\x9f\x96\x43\x66\xac\x73\x87\x4d\x36\x7c\xa3\xcd\x1d\x14\x67\ +\xb0\xd8\xca\x7c\x8d\x59\xae\x7f\x3f\xd5\x25\x39\x61\x34\x71\xff\ +\x6a\xfe\xb8\xcc\xd8\xc3\x4d\xe8\x8e\x47\x1f\x13\xff\x4c\x7d\xe8\ +\x9c\x3e\x34\x8d\xad\xc6\x8f\xdd\x76\x1c\xb3\x6b\xd5\xfb\xa5\xda\ +\xe1\x52\x19\xad\x19\x59\x32\x2f\xa5\x62\xb0\xa8\xa1\x20\x8f\x09\ +\x3d\x47\xd6\x0d\x79\x7f\xa1\xc6\x15\xd1\x0c\x15\x2d\xa5\x1b\x95\ +\x1b\x51\xcd\xe7\x74\x47\x63\x27\x4f\x95\x8c\xe2\xe4\x6c\x14\x17\ +\x2f\x4d\xe2\xde\xeb\xa7\x71\xf2\xd9\xb3\xb8\xf7\x13\xf3\x38\xfd\ +\x89\xf3\x38\xff\xe4\x79\x9c\xbe\x7c\x1a\x67\x0f\x15\x7f\x69\x16\ +\x27\x2f\x4f\x62\xf1\xc6\x2c\x2e\xde\x58\xc4\xc9\xa7\xe6\x71\xf2\ +\x13\x67\x31\xfe\x8c\xce\x85\xcf\x2e\xe2\xfc\x53\xca\xf9\x35\x8d\ +\x95\x17\x11\x0b\x39\xb3\x7f\xa6\xa2\x5c\x8b\xc7\xd8\xcb\x98\x85\ +\x2b\x0a\x54\x07\xaf\x51\xe2\x49\xbd\x89\xeb\x81\x1b\x6c\x80\xbc\ +\xb5\xbb\x55\x86\x06\xe8\x27\xea\xc1\xb6\x0e\x38\x06\x6c\x37\x80\ +\xcc\x7e\x95\x7d\xc2\x6d\xdd\xda\x86\x8f\x44\xb6\xab\x03\xf5\xcd\ +\x97\x1f\x48\xc0\xcb\xc3\x00\x03\xd0\xb6\x4f\xea\x4a\xd3\xc5\x12\ +\x3a\x7e\xf9\xc6\xb1\xce\x3c\x0d\x9f\x23\x0d\xa9\x93\x38\x3d\x51\ +\x9d\x31\x86\x89\x47\x1f\xf8\x40\xd7\xe2\xb7\x9e\x6e\xe2\x95\xbf\ +\xf1\xb3\xf1\xca\xa3\x57\xdd\x36\x09\x99\xda\xa8\xcb\x7b\x80\x6f\ +\x43\xf3\xf5\xc3\xe4\xdf\x29\xfd\x11\x3a\xe8\xfa\x91\x3a\x07\x37\ +\x80\xff\xeb\xbf\xff\x5f\xc6\x3b\xd7\xbf\x17\xaf\x7c\xfa\x42\x6d\ +\x86\x50\x7d\x48\x0d\xe5\x7e\x85\x9a\xc7\x81\xec\x53\x1c\xb2\x75\ +\xd3\x88\x8f\xea\x0f\x1e\x1e\xf4\xc9\x61\x22\xfb\x24\xb4\xe3\xbe\ +\xb6\x26\xcf\x58\x7d\x74\xac\xf3\xd5\xf3\x2a\x2c\xc0\xb7\xb5\x43\ +\xe8\x79\x78\xc1\x1b\x08\xd8\xb8\xcd\x27\x3f\x53\xfa\x1d\x3a\x05\ +\xa6\xd1\x29\xfb\xf8\xc2\x0d\x7b\x45\x15\x4f\xdc\xa5\x55\x24\x67\ +\x1e\x9c\xce\xfb\xb8\xd6\xb9\xbd\x51\x5e\x9c\x52\xf4\x6d\x8f\x23\ +\x0a\x5c\x16\xb3\x1c\x55\x36\x11\x8e\x4b\x0f\x1a\x81\x65\x69\xd5\ +\xf6\x88\x43\x60\xdd\xb4\xdd\x6e\xbe\x03\x45\x0f\x59\x00\xba\x4e\ +\x55\xa4\x80\x3c\x81\xe4\x0a\x0b\x35\x1a\x04\x55\x31\x43\xfa\xc4\ +\x57\x87\xac\x8a\xe4\x37\x59\x45\xba\xb8\xbf\x87\x9f\x92\xfa\x08\ +\x58\x4d\x87\xd6\x9e\x79\xad\x2f\xa1\xdb\xb4\xb4\xad\xd7\xeb\x43\ +\xe8\xd8\xd3\xa0\x52\x4a\x3b\x18\x90\x5d\xb8\xb7\xe4\xd4\xa7\xe3\ +\xe6\x93\xb7\x68\x31\x3d\xdf\xab\xbe\xea\xf9\x93\xe9\xbc\x16\x79\ +\x73\x8c\xbe\xc6\x86\x08\x1b\x2e\x0a\xc9\x43\x9e\x9b\x39\xea\x9c\ +\xe6\x91\x5e\x4c\xdb\xf6\xc7\x18\x4f\xb2\x6c\xc4\xc9\xd0\x9e\x60\ +\xa3\xf9\xa2\x0f\xad\x6d\x3d\xc6\x5e\x78\xde\x08\xb3\xc7\xe6\xa1\ +\x9c\x76\x12\x67\x1c\x94\xe9\x88\x5b\xd7\x36\xb3\x17\xe6\x07\xa8\ +\x74\xd2\x45\xe2\x3a\x87\x87\x48\x3c\xf7\x07\xcb\x6d\xc9\xb2\xce\ +\x96\x3f\x88\x7d\xec\x68\xcb\x52\x21\xe3\xe2\x37\xb9\xc1\x9b\x70\ +\xfd\x75\xca\x12\xfa\x8e\x79\xd9\x89\x90\x79\x5c\xe0\xa3\x08\x7e\ +\xfb\xd5\x8e\xc8\xe4\x82\x6a\xd4\x5e\x7a\x5e\xcb\x9c\x44\xb4\xdb\ +\xc8\xed\x41\x1a\x71\x24\xb3\x5e\xc5\x31\xd4\xf4\xb0\x8d\xa1\x9c\ +\xa7\x28\x33\x8b\xa5\x2b\x1a\xf7\xcc\xc7\x07\x78\xe4\xa3\x38\xfb\ +\x7b\x2e\x8f\x74\xda\xf5\x2b\x41\x3c\xe7\x51\xf2\xe4\xf8\x08\xb3\ +\xaf\x0b\x59\x72\x3c\x7d\x72\xfd\x56\x9b\x36\x1f\x9d\x97\xe9\x4a\ +\xa3\x0f\x3c\x31\x70\xd1\xbc\x0e\x70\x01\xdd\x24\xcc\xca\x14\x85\ +\x9d\x3e\xc1\x5c\x47\x4a\x8e\xd0\x50\x7c\x47\xb3\x4d\x5a\x0f\xe9\ +\x4b\x98\x74\xff\xe3\x87\x4c\x9b\x97\x69\x69\xf6\x8a\x82\x94\x19\ +\xba\x3c\x04\x22\xb3\x5c\xd0\xe5\xaf\x79\x3d\xbf\xa7\x33\xd2\xe8\ +\x8c\x52\x47\xa9\x33\x3c\x37\xbd\x71\x5a\x6d\xde\xce\xcb\xf4\x2b\ +\xe7\x70\x89\xf1\x1f\x66\x2b\x53\x29\x0c\xc0\x76\x19\x7c\x45\x34\ +\x69\x79\x99\x84\xa8\x2e\x95\x88\x4e\x76\x07\x98\x2f\x3f\x5c\x0e\ +\x43\xa6\xf5\x8f\xd0\x3a\x5e\x0f\xf0\xb8\x52\xe6\x06\xdc\x61\xcf\ +\x22\x61\x97\x73\x09\x52\xa3\x8e\x3a\x1c\x98\xb4\x4e\x9d\x5b\x4e\ +\x7b\x4b\x6e\x90\x12\x7a\xe2\x7b\xcd\xa2\x29\x24\x3f\x58\xba\xba\ +\x9a\xc6\xdf\xfc\xd9\xff\x54\xcc\x4c\x98\xb5\x65\x0b\x24\x3a\xc2\ +\x9f\x41\x38\xb6\xec\x11\x8e\xf0\x83\x03\xad\x81\xbb\xab\xe4\x11\ +\x8e\x70\x84\x3f\x67\xf0\xb1\x39\xf9\xff\x1d\x1d\x61\x62\xd0\xa6\ +\x7f\xdf\x19\xfa\x49\x6b\xea\xeb\xc8\x8e\xcb\xe6\x2a\xfe\x9f\xff\ +\xc7\xbf\x1d\xaf\xbf\xff\xfb\xf1\x3f\x7b\x74\x11\xb3\x29\xaf\x07\ +\x4c\x4d\x9e\x54\xbb\xba\xb9\x89\xeb\xd5\x3e\x9e\x5e\xad\x62\xb3\ +\xde\xc4\x96\xff\x86\x62\x22\xcc\xaf\xed\x64\x82\x5f\x46\xfa\x57\ +\x8f\x9a\xe4\x4f\x34\x49\xf5\x02\x69\x2a\x3e\x1b\x31\x2c\xfc\x3c\ +\xf9\xcf\xd0\x5e\x3b\x92\x37\xab\xc5\x23\x60\x04\x87\xd2\xa9\x03\ +\xd8\x6f\x77\xf9\x1a\x46\x6e\xb0\x12\xe4\x16\x37\x66\xf8\x34\xf5\ +\xbe\x0a\x87\xa5\x93\xbc\xd9\x05\x20\x99\xec\x2b\x5f\x6e\x8e\x4f\ +\x4e\xa6\x9a\xe8\x33\x65\x67\xb5\x58\x8b\x90\xe5\x3a\xb6\x1f\x5c\ +\xc6\xea\xc9\x55\x6c\x9f\x2e\x23\x54\xe6\xfc\xe5\xb6\x72\x93\x69\ +\x6f\x68\x8d\x66\xc1\x33\x01\xb3\x97\x56\xb1\xff\xb4\x4c\xfd\xe4\ +\x59\xdc\xfb\xc4\x34\x1e\x2c\x46\x31\xdd\x4f\x95\x76\x12\xa7\x4f\ +\x66\xb1\x91\x2e\x37\x9f\x77\xef\xcb\xf8\xdb\x9b\x78\xf6\xce\x2e\ +\x36\xcb\x2b\xd7\x67\xa8\xfe\xb6\xeb\xf2\x75\xb2\xb3\x6d\x3b\x41\ +\x1d\x09\x11\xcd\xc5\x06\xb8\x2f\x95\xcb\x42\x00\x15\x1e\x10\x79\ +\x54\x9c\x57\x0e\x02\xc3\x3a\xf2\xaa\x54\xe5\xa5\xdc\x7b\x5e\x17\ +\xe7\x4d\x1e\xca\xce\xe2\x5b\x2e\xf1\xd7\x44\x3c\x85\xa8\xf6\xdd\ +\xaf\x9d\xc2\xb6\x7c\xe7\x0b\x9b\x30\x44\x7a\x13\xc0\x32\xec\x23\ +\x17\x0d\x4e\xb6\x37\xe0\xa6\x27\xf3\x18\xcf\xd4\x01\xc8\x93\xb4\ +\xa4\x51\x7d\x50\x95\xde\x88\x91\x7f\x7b\x36\x48\x5d\x17\xb2\xa3\ +\x45\x8d\x37\x4b\xe1\xf3\x41\xaf\xd9\x67\x11\x5a\x8b\xfc\xb6\x60\ +\x34\xe0\x00\x71\xe3\x14\xf8\x58\x7c\xd7\x5f\xd5\xa7\xfb\x5e\xe9\ +\x99\x2f\xd2\x9b\x83\x9d\x7e\x93\xa3\x0b\xd3\x85\x32\x4f\xc8\x72\ +\xeb\xc8\x15\xc7\x3b\xa8\x58\xf5\x0f\xdf\x58\x17\x46\x97\x1b\x14\ +\x54\xec\x68\xbe\x88\xf1\xf9\x49\x4c\xee\xdf\x8f\xe9\xf9\x59\xec\ +\x59\x5c\x62\xdf\xf9\x37\x6b\x43\xab\x99\x57\x96\x5b\x51\x39\x0b\ +\x4a\xe8\xf5\x1b\x2f\x3d\xa4\xd6\x92\x86\x32\xa7\xf3\xbd\x74\xb0\ +\x99\x9c\x1e\xcc\x4e\x9e\x7d\x27\x0d\xed\x24\x63\xce\x81\xaf\xe2\ +\xf9\x44\xa5\x94\xdc\x30\x92\xd3\x4e\x8c\x03\xcb\x9b\xd8\x71\xce\ +\x6c\xd6\x31\xda\x32\x26\x58\xa9\x74\x8b\x86\x0b\x72\x9b\xa2\x41\ +\x44\x60\xa6\x89\x0e\x63\xde\xed\x03\xaf\xb1\x95\xb0\x33\x05\x22\ +\x42\xbf\x31\x0f\xdb\xc4\xd9\x60\x4a\x3e\x4f\x32\x21\xb6\x4c\x7c\ +\x3f\xcd\x44\xff\x12\xf6\x2f\x50\x2b\x4e\x3a\x42\x77\xae\x54\x9a\ +\xec\xab\xb8\x2a\x3f\xd8\x4c\xa2\x7e\xb8\x71\xa1\x31\x23\x37\xc0\ +\xd0\xa9\x1b\x04\x1e\xbf\x26\x7d\xad\xd2\xb1\xf8\x62\x9b\xff\x09\ +\x5a\x6d\xfd\x54\xa8\xff\x6b\xce\x19\x54\xbe\x54\x86\x7d\x80\x8d\ +\x0c\xbb\xc2\x65\xc9\xf5\x4b\x5d\x89\xe5\x1b\x50\xe4\x73\xa2\xfe\ +\xa2\xbe\xb3\x99\xe8\x1c\xdd\x8d\x62\xf6\x5c\x63\xef\x73\xd1\xd7\ +\xaa\x7f\x8d\x53\x28\x33\x2e\x66\xcf\xa0\x6c\x36\x65\x20\x47\x33\ +\x64\xaa\x90\xb3\xb4\xaa\xc0\xed\x5b\x80\x2e\xb7\x18\x5d\x14\x95\ +\x95\x9b\x32\xa3\x89\x06\x07\xf5\x65\xba\xec\x78\xb2\x97\x1b\xf3\ +\x58\x9c\x8e\x63\xfe\x68\x1a\x27\x9f\x3c\x89\xd1\x27\xa7\x71\xfa\ +\xca\xb9\x70\xc4\xc9\xe2\x0c\x83\xb1\xbf\x99\xc5\xee\xc9\x36\xc6\ +\xab\x55\xac\xa7\x4b\xd5\x97\x2c\x69\x40\xdc\x6b\xcc\x99\x2e\x54\ +\xb0\xa9\xc6\xa1\xa9\xfa\xcd\xf5\x26\x36\x2a\xc7\xd3\x0f\xae\x63\ +\xfa\x7b\xeb\x78\xf2\xc5\x55\x3c\xfb\xc6\x5e\x97\x24\x8d\x43\xd5\ +\xa6\x7c\xd2\xe7\x69\xdc\x9c\xcc\xe2\x8c\x27\xe1\xee\x2d\xcc\xc5\ +\x73\xd7\x17\xa1\x2b\x47\xe1\x8a\x57\x8f\x12\xe8\x48\x35\xdf\x02\ +\xaa\x18\x51\x35\x1f\x25\x36\x33\x5f\x49\x3b\xd3\x58\x36\xf3\xa6\ +\x38\x83\x03\xba\xd4\x49\x5e\x97\x78\xf2\x54\x6d\x2c\x3f\xb9\x31\ +\xe3\xb6\x2d\x5f\xc8\xdb\x79\xba\x59\xa1\xd2\x0b\x5f\xbb\x2c\x50\ +\x9c\xcc\x00\x31\xe8\xa2\xb4\x77\x3a\xa2\x7c\x14\x18\x29\x16\xaa\ +\xa7\xc5\xc9\x69\xbc\xf6\xd2\xcb\x71\x72\xb2\x10\x47\x5c\xf1\xde\ +\x5a\xdf\xc4\x2f\x7f\xfe\x71\xbc\xfa\xbf\xff\xdf\xc6\x7f\xf2\xbf\ +\xfa\x5f\xfb\x77\x02\x4e\xeb\x7c\x74\x94\xa3\xce\xe6\xbb\x81\x4c\ +\x76\x08\x77\xf1\x8e\x70\x08\x07\x75\x54\x7d\x14\xac\x86\xdc\x6c\ +\xa7\xf1\x9f\xfd\x9f\xff\xd3\x38\xfb\xd4\x07\xf1\x13\x7f\xe5\x81\ +\xfa\x92\xda\x43\x0d\xee\xb1\x5f\x47\x7f\xd4\x46\x9e\x93\x90\x10\ +\x5a\x9f\x34\x98\x86\xa1\xd0\xce\x9b\xa6\x60\xe2\xba\x5e\x0b\xfb\ +\x89\x13\xce\x47\xd2\x49\x90\x9b\x1f\x9c\x56\xa9\x6b\x6b\x36\xfc\ +\x22\xc0\x6d\xe7\x0a\xaf\xf1\x5e\xea\x1c\xdd\xed\x19\x57\xaa\x40\ +\x25\x4b\xcd\x3b\x80\x6b\x82\x65\xe4\x81\x2f\x04\xca\xd1\xe7\xd9\ +\x1d\x15\xcf\x9a\xc9\x1f\x66\xbd\xff\x14\xd6\xca\x3f\x4a\xe2\xbf\ +\x9e\xce\x17\x0a\x73\x8d\x39\xa8\x92\xc2\xb6\x95\x3f\x76\x8a\xd7\ +\x3f\x7d\x09\xae\xf3\xa7\x64\x87\x50\x7a\x4d\xbd\x08\xf4\x87\x67\ +\x43\x3b\xcf\x9b\x1c\x3a\x7f\x40\x46\xed\xf6\xbc\xae\x9c\x9d\x3e\ +\x1a\x99\xde\xa7\x9b\x05\x0a\xca\x20\x8b\x9d\xf5\x61\x92\x98\xe9\ +\x64\xa4\xbc\x87\x2e\x5a\x04\xc8\x41\x8a\xb9\xc9\x40\xfb\x66\xdf\ +\xf0\xb5\x08\x21\xae\x29\xaf\xf4\x2a\xfd\xe4\x88\xeb\x79\x9d\xce\ +\x78\x83\xd4\x6c\x74\xda\x37\x60\xaf\x69\xd6\xf8\x94\xed\x46\xbe\ +\xd0\xd9\x96\xb9\x31\xc6\x38\x44\x9c\x30\xb1\x4f\xe9\x1f\x5b\x36\ +\xb9\x81\xa6\x0b\x84\xd7\x00\x4a\x21\x1b\xa4\xc1\x3f\x1c\xcf\x1c\ +\x9b\x5f\x99\xa3\xf2\xae\x78\x96\x82\x78\xf3\x2c\x7d\x48\x3d\xe9\ +\x98\xb0\x25\xf1\xb0\x2f\x19\x36\xf9\xcf\x32\xc7\xe0\x65\xfe\xce\ +\xdb\x7e\xd1\x86\xe9\x77\xfa\x23\xfd\x66\xde\x44\xda\x6b\x3e\x92\ +\xbf\xcb\xee\x6f\x2a\xb6\xba\xc9\x18\x02\x85\x6a\x00\xfb\x94\x64\ +\x42\xf9\xd8\x18\x3e\xaf\x88\xb6\x38\x1f\x17\x98\x8a\x4e\x9a\x8f\ +\x0d\x99\xd6\x35\x84\x46\xd0\xf9\x97\xe7\x64\xea\xd9\x33\xa5\xd9\ +\x8f\x74\x0d\x75\x5c\x5c\x55\xe4\x58\xf2\x31\xbe\x50\x6c\xd2\xd7\ +\x13\x4f\x9c\x3f\xcc\x21\x70\x15\xe8\x6a\x71\x9c\xf3\x32\xae\x49\ +\xc9\xd3\x75\xcb\xf9\x89\x47\x9e\xfe\xd4\xb5\x8b\x39\x04\x17\x22\ +\xe2\xe8\xf0\xb5\x8f\x1b\x73\x32\x8e\x2e\x6f\x2b\x81\xd3\xca\x00\ +\xa8\x24\xa2\xc1\xf9\xe6\x12\xf4\x53\x92\x7d\x8b\x9e\xa1\x1a\xf6\ +\x89\x5e\x35\x4d\x5f\x12\xea\xe6\xaa\x00\x26\x2b\x62\x73\x30\x6c\ +\x93\x6b\x67\xfa\xd9\xae\xa1\x8d\x57\x8a\x85\x92\x76\x1a\x1d\x9b\ +\x5d\xd7\x12\xe9\x4c\xb7\x4d\x1c\xbe\xf2\x15\xbe\x65\xe9\xb7\xed\ +\x90\x50\x8e\xe4\xa5\xbc\xd7\x05\x10\xa7\x93\x99\xc6\xb5\x2d\x66\ +\x95\x5a\x6c\x22\xc5\x27\xee\x23\x81\xd2\x36\x68\x65\xd6\x31\x09\ +\xd7\x13\x5a\x6e\x57\xc7\xd5\xcc\xde\xcd\xd4\x97\x05\x85\xe6\x7d\ +\x36\xad\xc5\xb5\x7f\xd4\x28\xad\xed\x56\x65\xd1\xe2\x8d\xbf\x27\ +\x58\xad\x47\xb1\xd4\xda\x72\xa5\xf9\x26\xcb\xcb\xad\xf4\xb7\x94\ +\x01\xe3\x36\x08\xc6\x58\x46\x88\x4e\x34\x9f\x9b\xcd\x39\x7f\x89\ +\xa1\x26\x19\x62\x03\x75\x21\xbe\x59\x30\xa9\xeb\x61\x99\x0e\x01\ +\x7f\x19\x0f\x28\xc7\xc1\x35\x69\x31\xd3\x58\xaf\xb9\x1f\x4a\xb7\ +\x92\x31\x97\xf5\xeb\x86\x99\x4f\x61\x9e\x8f\x74\x9a\x1f\x60\x74\ +\x68\xe7\x9d\xca\x49\x3f\xe6\x07\xbd\x39\xdf\x2b\x23\xb8\x5e\x74\ +\x4b\x87\xb0\xaa\x2e\xf5\xaa\xbf\x7a\x9e\xe6\xe8\x56\x65\x9e\xc7\ +\xe5\xd5\x55\x7c\xf5\x8b\xb3\xf8\xbf\xff\xed\xff\x5e\xd5\xbb\xa8\ +\xeb\x58\x19\x73\x6a\xc2\x11\xfe\xac\xc1\xb1\x55\x8f\x70\x84\x1f\ +\x1c\xe8\x9a\xd5\x0d\xc7\x47\x38\xc2\x11\xfe\x9c\xc1\xc7\xe6\xe4\ +\xff\x77\x70\xe4\xbb\x9e\x14\x78\x56\x99\xa4\x27\x9c\x05\x2d\xfd\ +\xcd\x93\x77\xe2\xff\xf3\x9f\xfd\xed\xf8\x0b\xdb\x3f\x89\xbf\xf2\ +\xea\x43\x29\xad\x73\xa1\x22\x8d\xcd\x76\x13\xcf\x6f\x96\x7e\x55\ +\xcf\xd3\xcb\x1b\xdf\x44\xdc\x94\xcc\x8b\x78\x19\x99\x32\xc1\xd7\ +\xcc\xd9\xef\xe5\xf7\x8d\x9e\xc2\x9a\x9c\xfa\x97\xcb\x04\x26\xd9\ +\xc2\xde\x64\xe3\x46\x81\xf5\x34\xe3\x65\x61\xc8\xac\x1b\x68\x0e\ +\x75\xfe\xd6\x44\x7b\xa5\xa0\x45\x82\x6f\xb0\x52\x82\xae\x08\xc3\ +\xd2\x00\x8a\x0d\x4c\xb1\xd8\xc1\x3f\x47\xc8\x9f\x0f\xbe\xcc\xe4\ +\xef\x89\x26\xfe\xf8\xa1\x0f\x56\xbc\x98\xba\x5e\xc6\xf6\xf1\x65\ +\x6c\x9f\x5c\xc7\xe6\x52\x05\xde\xb0\x60\x61\x96\x9f\x93\xf0\xd1\ +\x6e\x12\x2b\xa5\xd9\x3d\x50\x99\xff\xfd\x75\x3c\xfc\x5b\xaf\xc6\ +\x83\x4f\xcd\xe2\xc1\x62\x21\x86\xe4\xfc\xbf\x81\x17\x9b\x8a\x70\ +\x93\x95\xff\x51\x7a\xb6\x8f\xf5\x33\xc5\xdf\x5e\xc5\xcd\x57\xc5\ +\xf8\xc6\x4d\x5c\x3d\xb9\x89\xf5\x4a\xf5\xb8\x54\x7c\x43\x42\xe5\ +\xc1\x24\xbe\x5b\x10\xb7\x95\x00\x6b\x28\x3c\x24\x73\x45\x59\x43\ +\x41\xba\x3c\xa5\x92\x09\x0a\x54\xa7\x2c\x24\xba\x58\x61\x3b\x2f\ +\xab\xe8\xce\xb5\x00\x53\xd9\xf7\xa7\x53\xdf\x24\xe6\x35\x2e\xdc\ +\xa1\x63\xb9\xc3\xcd\xb5\x3d\x1b\x23\x94\xb9\xfb\xc1\xba\xf2\x57\ +\x99\x9d\xb7\xf3\x4a\xeb\x5e\x97\x99\xb2\x61\x1d\xe9\x0b\x6a\x5b\ +\xb5\xf9\x78\x31\x57\x3d\xab\x61\x59\x9c\x50\xdf\x48\x71\xc2\xab\ +\x53\x25\xa9\x1b\xd0\xde\xcc\x20\x4f\x32\x32\x4f\x36\xca\x7f\x02\ +\xc7\x5c\xdb\x68\x41\x45\x66\xca\xbf\xe5\x4b\xa0\x17\xa6\x7f\xc4\ +\x92\xe7\xfa\xe0\x5b\x7c\x2f\xe6\x87\x81\xaa\x45\xe6\xd0\xf4\xa1\ +\x25\xc8\xaf\x01\x39\x32\xd7\x59\x32\x12\xf9\x08\x28\x4d\xe1\x5c\ +\x70\x13\x14\x15\xc6\x67\xa2\xe4\xcf\x7f\x6b\xf1\x8a\xbe\xe9\x83\ +\xfb\x31\xbb\xb8\x50\xfd\xab\xde\xb1\x45\xdf\xb7\x4d\xd2\xdf\xb6\ +\x2a\x1e\xe2\x32\x69\x10\xc1\x4d\x81\x96\x27\x38\x65\xf8\x2e\x7d\ +\x7d\x7c\xf4\x8d\x24\x84\x38\x90\xb6\x12\xd0\x33\x2a\x5a\x84\x82\ +\xd3\x0c\x33\x41\x5e\x0c\x64\xbd\x30\x69\x97\x55\x8b\x51\x36\x5e\ +\x77\x4b\x9d\x2f\xab\xb5\xfa\x0b\x0b\xdd\xea\x30\x0e\xa8\xd7\x39\ +\x93\x29\xb3\xde\x6b\xdc\x80\x93\xff\xf3\x95\x5e\xbb\x8d\x49\x46\ +\xda\x01\xa4\xd4\x04\xc2\xd2\x4f\xba\xe3\xa9\xaf\x9a\x5f\xb4\xfb\ +\x18\xe0\x05\xb7\x68\x2f\xbe\x4b\xc7\xfd\x0f\x1e\x74\xea\x12\xcd\ +\x4c\x30\x99\x69\xf1\xc7\x75\xd5\xfa\x0f\xfd\x8b\xba\x22\x0e\xed\ +\x31\x8b\x85\x77\xf1\x54\xe7\xf4\x4f\xf6\xc4\x6c\x01\xa3\xbc\xe6\ +\x73\x23\x9a\x27\xc7\x34\x26\x74\xf9\xd2\x6b\xcb\x1f\xb0\xa3\xdc\ +\x2c\xc9\x84\x5d\xfa\x86\xed\x03\xaf\xa4\x9c\xd2\x27\xb8\x69\xb5\ +\x8b\xc9\x95\xea\xff\xa9\x12\x5e\xeb\x5c\xd5\x38\xd2\xca\x9f\x46\ +\x06\x69\x0b\x9a\xcc\xe7\x8e\xc8\x8c\x89\x26\x38\x4e\x2c\xe3\xd0\ +\xbe\x79\xa3\x06\xdb\xcf\xd4\xe3\xa6\xf2\x7d\x26\xd9\xc9\x56\x63\ +\x77\xfe\x2f\xda\xd9\xec\x24\x26\xf7\xd4\xa7\xdf\x98\xc7\xf9\x1b\ +\x0b\xe1\x93\x38\x79\xe9\x7e\x6c\x5e\x65\x23\xfd\x54\xf9\x69\x1c\ +\x64\xa3\x69\xc5\xa6\xd8\x5a\xe7\x39\xef\xc3\x95\x9f\x9c\x63\x5b\ +\x95\x47\xae\x4b\x28\xff\xa7\xb1\xdd\x2d\x23\x9e\x3d\x8f\xf5\xdb\ +\x97\x71\xf3\xa5\xeb\x78\xff\x0b\xeb\x58\x7e\x95\x57\x3b\xaa\x8c\ +\xdc\x2c\xc2\x37\xf9\x6f\xdf\x54\xe7\xcb\x89\xf2\xfd\xc4\x45\xdc\ +\x7f\xe9\x24\xed\x09\x7c\x83\xcd\x6d\x8b\x2a\xbe\x27\xcd\xa1\x95\ +\x29\x41\xd8\x03\x49\x8b\x27\xe4\x26\xb2\xfc\x12\xdd\x8d\x2f\xb4\ +\xad\xec\xf3\x34\xd8\x68\xa6\x72\xe9\x3c\xce\x73\x16\x9f\xa4\x47\ +\x5b\xf2\x44\xb3\x37\xd5\xfa\x3e\x08\x8d\x3f\xf8\x8c\xa2\xdd\xa9\ +\xfc\x38\xa6\x5e\xd1\xee\x64\x99\x1f\xa7\x4f\xa6\x73\xee\xaa\xa3\ +\xf4\x87\xd7\x12\x2d\x16\xa7\xf1\xea\xc3\x47\x71\x7e\x71\xe6\x1b\ +\xd7\xbb\x91\xae\x43\x9b\xab\xf8\x07\x9f\x7f\x1c\xa3\xbf\xf9\x3f\ +\x8f\xff\xcd\xdf\xfe\x3f\xe5\xb8\xd5\x9d\x5f\x65\x9b\x4c\x7c\x72\ +\x25\xef\x08\x3f\x2c\xa0\x8e\xb3\x96\xe9\x6b\xbc\x36\x7a\x7d\x33\ +\x8e\xff\xdd\xff\xe5\x3f\x8c\xcf\xfe\xf5\xfb\xf1\xf2\xa7\xe7\x9c\ +\x4e\x12\x72\xa0\x5d\x1b\xd6\x51\xfd\x89\xa6\xf2\x38\x93\x1c\x05\ +\xfa\x01\x37\x23\xb3\xff\x72\x0d\xd2\x65\xd4\xc3\x10\xb4\x87\x20\ +\x1d\xe8\x8e\xde\xdc\x10\x9d\xaf\x4f\xdb\xfb\xed\xb4\xb6\xa9\x74\ +\x18\x36\x2e\x18\xd2\xee\x6b\xca\x67\xa3\xb9\xd5\x6a\x93\xf3\xbd\ +\x62\x7d\x17\x20\xbf\xca\x5f\xae\x11\x93\x99\xe6\x79\xf2\xa5\x95\ +\x25\xf9\x99\x1b\x25\xc0\x24\xb2\xe7\xd7\xeb\x78\xf2\x7c\x1f\xb3\ +\xe9\x26\x66\xf2\x73\xa1\xf1\xe4\xbe\xe6\x22\x0b\x0d\x9c\x94\xcf\ +\x16\xd3\x2c\xa7\x59\x31\x14\x04\xd4\xab\x9d\xe3\xfc\x31\x7d\x0b\ +\xcc\x2f\x70\x41\x06\xe0\x68\xf2\x38\xda\xa3\x83\xba\xa1\x3c\x60\ +\x1d\x94\x36\xcb\x06\xc6\xfb\xd4\x4a\x79\xb9\xa3\x43\x8f\x53\xe0\ +\xf1\xc2\x54\xa5\xc9\x6f\xf2\x53\x60\x80\x6c\x63\xcc\x10\xac\xab\ +\xe0\xf6\x54\xc8\x76\xad\x6b\x4c\xa7\x51\x70\xbb\x7c\x4d\x26\x36\ +\xb5\xe0\x18\xf5\x21\xc2\xe3\xbb\x30\x49\x06\x16\x0a\xca\x8e\x65\ +\x28\xeb\xeb\x90\x3e\x64\x7b\xe6\x0d\x72\x36\xcf\xb8\x41\xee\xb8\ +\xfc\xca\x9b\xe5\xbc\x7c\xb6\xf1\xd3\x57\x4d\xf8\x6c\x0b\xba\xab\ +\x3d\x67\x93\xfd\xa0\xf9\xe1\x0d\x0e\xe2\xd6\xc9\x31\xb5\xc5\x8b\ +\x70\x48\xbe\xe4\xf8\xa3\x82\x34\x7d\xf5\x18\x1d\xe9\x24\x04\x7c\ +\x54\xfe\xd0\xcd\x17\xd1\x68\x72\x8d\x40\xa3\xf3\xc5\x3c\x8e\xe5\ +\x2f\x5c\xfb\x8d\x52\xe6\x9e\x79\xa6\xbe\xf3\x75\xbc\xa0\xf9\xe4\ +\x43\x4b\x07\x99\xa9\x5c\x3e\xf1\x3c\xce\x73\x71\x07\xc3\x24\x88\ +\xe3\x79\x4f\x6a\x9a\xce\x31\xbb\xb0\x2f\x8c\xd0\xd8\x90\x2f\x4e\ +\xb3\x55\xfd\x92\x9e\xbe\xc1\x21\x4b\xe2\xb9\x94\x69\x80\xbc\x44\ +\x93\xc6\x0c\x61\x5f\xc3\x71\x04\x9b\xbc\xfb\x1d\x0d\x44\x5c\x9f\ +\x74\xdd\x42\xc7\x3e\x62\x1b\x9e\x82\x3e\xf0\x76\xca\x33\xaf\x53\ +\x8c\x09\x75\x6d\x13\x17\xac\xab\x32\x83\x87\x92\x40\x91\xd6\xa5\ +\x34\xa4\x9e\x09\xd7\x71\x46\xc0\x22\x88\x2b\xf0\xe6\x06\x06\x2e\ +\xcf\x9b\xca\xfb\xf4\x39\x69\x5b\x70\x3a\xda\x1a\xa2\x8e\xe4\x83\ +\x5d\xaf\xaf\x84\x5d\x4d\x8d\x87\x07\x2d\x5d\xb3\x84\xbf\xa2\xf4\ +\x35\xdb\x62\x74\x73\x83\x09\x97\x10\x7a\xda\x40\x19\xc9\xaf\x14\ +\x5d\x1e\xe9\x11\x27\x5f\x47\xa1\xcb\x72\xb1\x32\xde\x68\x70\x16\ +\x44\x60\xe5\xa4\xd2\x85\x2e\xad\xcb\xec\xef\x10\x3b\x31\x94\x8f\ +\xd4\xd1\x54\xd7\x7d\xae\xf5\xb3\xc9\x42\x61\xa6\x39\x22\x36\xd8\ +\x4c\xd5\xda\x6a\xca\x7f\xe2\xd1\x86\xf2\x5b\xf3\xab\xfd\x86\x73\ +\x41\xeb\xcc\xed\x2a\x9e\xdd\xac\xe3\xe9\xfa\x3a\xae\x6e\x76\x9a\ +\x1e\xf2\x36\x99\x89\x02\x25\xbf\x0d\x99\x1f\x7d\x6a\x7e\xc2\xf8\ +\xcd\xb9\x23\x86\x15\x9b\x76\xd6\x57\x96\xb7\xf1\xa8\xd7\x22\x6f\ +\x41\x16\xbf\xc6\x0b\xda\x57\x98\x30\xd3\x9a\x67\xaa\x79\xd4\x6d\ +\x27\x50\xdf\xaa\x60\xac\xb1\xf9\x30\x4d\xce\xf6\x6c\x6e\xa4\xdf\ +\xc4\x59\x1b\xee\xf6\xcc\x27\x77\xb1\xf1\x9c\xde\x0a\xe9\x8b\xf3\ +\x15\x38\x9d\x0f\x89\x05\x79\x8e\xa3\x47\xc0\xf7\x4c\x43\xff\x5d\ +\x6b\x7d\x4f\x7f\xff\xf2\x17\x97\xf1\x7f\xfd\x3f\xfc\x57\xf1\xe8\ +\xa5\x4f\x48\x86\xef\xcd\x64\x33\xdc\xf0\x11\xfe\xac\xc0\xb1\x45\ +\x8f\x70\x84\x1f\x1c\x1c\x5f\xf9\x78\x84\x23\x1c\xe1\xc7\x0f\xdf\ +\xe7\x95\xfd\xfb\x49\xd6\x26\x99\x06\x91\x9e\x6b\x2a\xbc\xf7\x95\ +\xaf\xc7\xdb\xbf\xf4\xcf\xe2\x53\x27\x9b\x78\x38\xcb\xc5\xab\x6f\ +\x42\x0b\xb3\xf1\xc1\x2f\x8b\xf9\xd5\xdb\xcd\x8a\xc7\x98\xb0\x52\ +\x76\x24\x67\xe1\x9f\x7f\x40\xae\xc9\xf3\x60\x12\xcd\x93\x60\x07\ +\x3c\x61\xff\xba\xb5\x5e\xff\xe0\x45\xaf\x78\xac\x76\xb1\x81\x1f\ +\xe5\x4e\x0f\xca\x86\x27\x4f\xba\x1b\xe5\xcc\x84\x0b\xf0\xe1\x40\ +\x77\x08\xcd\x56\x77\x00\xc1\x54\xc0\x0f\xbf\xd2\xad\xfc\xd0\xc7\ +\x96\x98\xb0\xdf\x2c\x23\xae\x56\xb1\xbf\x5e\x7b\xe3\xd0\xbf\xd6\ +\xd4\xd7\x37\xdf\xb1\x21\x67\xc7\xe3\x75\xc4\xab\xbb\x38\xfd\x1b\ +\x2f\xc7\x1b\x3f\xf3\x30\xde\x78\x70\x1e\x71\xef\x2c\xa6\x67\x8b\ +\x7c\x8a\x61\xc1\xcd\x57\x9e\x7e\x9b\xc5\x68\x71\x12\x93\x8b\x93\ +\x98\x3f\x9a\xc5\xf8\xd5\x69\xcc\x3e\x75\x1a\xdb\x4f\xde\x8f\xd3\ +\xf3\x45\xcc\xf5\x59\x6f\x78\xba\x87\x32\xf1\x6b\x6d\x79\x81\x3f\ +\x7b\x6e\x16\x30\xd1\x77\x96\xa2\x7a\xc0\xcf\x56\x0c\x5c\x36\x28\ +\xd2\x74\x48\x63\x9a\x43\xc9\x9b\x1d\x47\x65\xbb\xe9\x64\x59\x68\ +\x03\x36\xbe\x30\x5a\x8b\x2a\x6f\x82\xb1\xc9\xd6\x68\x61\xda\x0c\ +\x5d\x36\xc7\x9c\xc6\x8d\xa6\x80\x0e\x96\x44\xa3\xeb\xc6\x94\xdd\ +\x89\x16\x78\x3c\xdd\x41\x5a\xec\x53\x2e\xdf\x88\xa1\x7c\x78\x42\ +\x3c\x43\xca\xe0\x09\x6c\x33\x79\x60\xf3\x65\x8f\xff\x69\xc3\x07\ +\xf3\x4a\x6e\x1f\xec\x1f\x71\x7c\x12\xae\x78\x7b\x02\x32\xcb\x20\ +\x5d\x70\xf9\x6c\x59\xf9\x94\xf6\xf0\x35\xd3\xa5\x3f\xf8\xa9\x78\ +\xcb\xa3\x7c\xc8\x1b\x5d\x69\xc3\xaf\xcc\xc4\x66\xcb\x97\xf2\x5b\ +\xbf\x74\x6c\x87\xea\x1e\xe4\x07\x3d\xcf\xa7\x5d\x9c\x6f\xa7\x47\ +\x3a\xd4\x8b\x87\x3d\x78\xd4\x87\x65\xcd\x17\xa5\x87\x6e\x3e\x49\ +\xd7\x1b\xd2\x4d\x6e\x9e\xca\x82\x1e\x76\x9c\x6f\x05\xc5\x0f\xf0\ +\x41\x1a\xec\x82\x31\x99\xf9\x3a\x58\x5e\x3e\x58\x5c\x1f\xd1\xbe\ +\xc9\xa0\x73\xd2\xe7\x05\x2b\x5b\x3a\x15\x7a\xa9\xae\x80\x9e\x13\ +\x09\xf0\x91\x62\x11\x4f\xdf\x7d\xb3\x9f\x20\x3f\xda\x18\x91\x75\ +\x52\x7c\xcb\xb2\xbc\xae\x0f\x0c\x59\x47\xfa\xd0\xb7\xf4\xc0\xce\ +\xdd\x3c\x50\xda\xca\x3a\xce\x3c\x2d\xe0\x88\x4d\xe2\xc6\xd4\x85\ +\xe8\x6a\x4b\xd7\x83\xf3\x14\x1f\x1e\x98\x38\x75\x49\xdc\x4f\x2c\ +\x41\x73\xce\xd0\xbf\x15\x94\xce\xaf\x05\xac\x3c\xb1\xdd\x7c\x71\ +\x7d\x2b\x4f\xff\x0f\x9a\xb3\x80\xa7\xb8\xf5\x34\xb4\x78\x93\x2c\ +\xfb\x53\xfa\x53\x6e\xa2\x87\x2f\x8c\x53\x6c\xe8\x28\x4f\x36\xa4\ +\xd9\x5c\x8f\xd5\x2e\xc6\xcf\x54\xe7\xd7\xbb\xd8\xd5\x66\x5a\xde\ +\x18\xe3\x66\x18\x25\x04\xba\x11\x9a\xc6\xca\x61\xb3\xd9\x2e\x30\ +\x49\x5a\x90\x0e\xbe\x19\x87\x0b\x13\xda\x52\x63\x10\xff\x8d\x36\ +\x17\x79\xaa\xf8\xfd\x7d\xcc\xee\x8d\x63\xaa\x71\x6c\xf6\xb2\xc2\ +\x6b\xd3\x98\xbf\xa6\x71\xee\xf5\x69\x2c\x1e\x9d\x88\xb7\x88\x78\ +\xf0\x28\xb6\x8b\x7b\xb1\x9d\x6b\x1c\xf4\x0d\x20\xd5\xa7\xeb\x8a\ +\xb2\x4f\x62\xa7\x2a\xdb\xc5\x54\x63\xea\x34\xd6\xdc\xe0\xe1\xc7\ +\x06\xec\x22\xad\xd6\x71\xf3\xf4\x26\xae\xde\xbc\x8c\x9b\xaf\x6d\ +\xe3\xf2\xcd\x65\x6c\x9e\x6d\x63\xbd\x76\x2d\x7a\xfc\x4d\x42\x07\ +\xb9\xb2\xa5\xae\x35\xce\xce\xf8\x41\x00\xb6\x5d\x00\xe4\x2e\x4e\ +\x0f\x4e\xd3\xa1\x01\xbc\xc8\x81\x47\xf9\x8d\x33\x5a\x5a\xf0\x45\ +\x91\xa7\xdb\x5a\x85\xe8\x85\xce\xd7\xa4\xce\x83\xc6\x02\xba\x9b\ +\x70\x3e\x0e\xc0\x8c\x5e\xd3\xb6\x93\x32\x97\xa3\x93\xba\x50\x00\ +\x1c\x9d\x07\x2a\xe7\xe9\x6c\x11\x27\x73\x36\x66\x14\x97\x84\x1f\ +\xac\x7c\xf9\xad\x0f\xe2\x32\x4e\xe3\xd3\x7f\xeb\x6f\xc6\xb9\xea\ +\xdd\x95\x55\x36\xd3\x76\x79\xd0\xe5\x33\x00\x44\x77\xb0\x5f\x80\ +\xef\x56\xef\xcf\x31\xb4\xea\x01\x13\xf6\xfb\x4d\x7c\xfd\x9b\x8f\ +\xe3\x97\x7f\xfb\xff\x1d\x9f\xf8\xec\xfd\x98\xf1\x74\xa9\x5b\x0d\ +\x70\x8b\x26\x25\x65\xb7\x30\xd8\x6d\x04\xbf\x55\x38\x12\x77\x3d\ +\xcb\x19\x49\x8c\x75\x80\x97\xe3\xbc\x78\xd0\x8c\x33\xc8\x1a\xdf\ +\x29\x9b\xcd\x1e\x88\xb9\x47\xe8\x60\x89\xf0\x86\x9b\xae\xde\xf0\ +\x6f\xc2\x06\x44\x0e\xd3\x77\x20\x76\x7a\x87\x4f\xdc\xfc\x4d\xec\ +\x60\x79\xc9\xf4\xb1\x49\x75\x6a\xba\xf4\xf3\xcb\xbd\x7f\x8c\xc5\ +\xd3\xaa\x53\xe9\x9c\xcc\x27\x71\xaa\x31\x70\x2e\xbf\x79\x5a\x8d\ +\x21\x2f\xcb\xc4\x06\x61\x96\xcf\x71\xe3\xce\xac\x01\x3e\xb4\x51\ +\xf1\x12\x0f\x0b\x71\x50\x20\x43\xaa\x62\xd3\x44\x01\x91\xe6\x2d\ +\x32\x61\x39\xec\x4f\x1b\x17\xa4\xd2\x25\x31\x5d\x69\x1a\xcd\xf8\ +\x99\x52\xf1\x92\x82\x6f\xb9\x75\x32\x00\x25\xee\x78\xb4\x97\xaa\ +\xc0\xe9\x90\x65\x7b\x8a\xae\xb6\x4c\x3b\x59\x17\x24\xb0\x0c\x49\ +\xe9\xf9\x7a\x6f\x91\x3e\x4a\x63\x35\x3a\x43\x2a\x27\xbf\xa5\x3b\ +\x08\x99\x37\x1d\x27\xe3\xd9\x06\x89\x33\x90\x4f\xfa\xa3\xb9\x85\ +\xe7\x46\xdc\xbc\x57\x9c\x1f\xd1\x99\xc7\x0f\x84\xc4\x71\xfb\x95\ +\x0c\x3d\xa7\x6f\xf9\x68\x9c\x4e\x2f\x28\x9c\x79\x69\x9b\xf4\xe9\ +\x27\x3a\x9d\x5f\xe8\x95\x1f\x0e\x69\x55\x4d\x42\x9c\xb9\x9b\xec\ +\x97\x8e\x1c\x31\x8d\x9e\x0e\xa2\xc0\xa9\xdf\xb0\x5b\xc6\xf6\xa8\ +\x6c\x78\x2d\x7d\xa6\x63\x4e\xea\x80\x0d\x24\xb4\x65\xd9\x4b\xeb\ +\xb6\x66\x0a\xff\xaa\xd6\x32\xd8\x06\x12\xab\x77\xfc\x3c\x24\x4e\ +\xb2\xfa\x62\xf1\x9d\xc2\xdf\xc3\xb4\x6c\x70\x64\x9e\xca\xd5\x45\ +\xe1\xe9\x4d\xc5\x14\x72\x2e\x29\x4c\xbc\xea\xd1\x61\x58\xa7\xc6\ +\xc5\xe7\x53\x3c\x82\x26\x2d\xec\xc1\x29\x13\x36\x66\x84\x25\x77\ +\xa8\xbc\x39\xba\xb6\x54\x17\x5d\x5f\xf3\xc1\x96\xac\xd1\x41\xd9\ +\xcc\x1f\x70\x21\xcb\x78\x93\xc1\xe5\xdb\x7c\x22\x40\xbb\x9f\xb8\ +\xbf\x09\xc3\x57\x7f\x4a\x6d\xe2\xd5\x1f\x48\x5a\xb6\x8c\x93\x6c\ +\x48\xb8\x67\x40\x11\x37\x87\x78\x32\x92\x53\x11\x7f\xc8\x4b\xd1\ +\x3c\x4b\x9b\xec\xa3\xa0\xc9\x73\x54\x38\xd0\x17\x99\x97\xf8\xdb\ +\x36\x14\xef\x93\x39\xf0\x34\x61\xdb\x94\x4d\x3f\x1a\xce\x3a\x26\ +\xce\x59\xc3\x0f\x24\xe6\x9a\x1f\x9d\x4c\x16\x71\xef\xe4\x3c\xee\ +\xcd\x1f\xc5\xbd\xd3\x07\x71\x71\xfa\x72\x9c\x9f\x3d\x88\x33\xc5\ +\xcf\xe7\x0f\x15\x7f\x18\xf7\xcf\xee\xc7\xd9\xe2\x2c\xce\xa6\x0b\ +\xcd\x0b\x4e\xe3\xc1\xfc\x24\xee\x5d\x8c\xe2\xe2\x64\xaa\x38\x6f\ +\x8b\x61\xbc\xdd\xc6\x76\x35\xca\x27\xd5\xca\x57\x7c\x26\xbf\x86\ +\xcb\x13\xcf\x25\xd4\xb5\x1c\xef\xfa\x29\x50\xe9\x3a\x20\x3e\x88\ +\xde\x05\xad\x9e\x13\x5a\x39\x99\x42\xe7\xb9\xd5\x43\xd2\xe4\xef\ +\x4d\x2e\xc7\x04\x22\x6e\x67\xe3\x16\xb0\x42\xea\xb9\xee\x5b\x00\ +\x50\x6e\x74\x07\x58\xd6\xb1\x77\xc6\x60\x5b\x72\xc8\xcb\x16\xd1\ +\x13\xd5\xd7\xa5\xd6\xfd\x0f\xe2\x2f\xc5\x4f\xfd\xe4\xff\xc4\x66\ +\x5c\x86\xd2\x4e\x38\xb4\x71\x84\x3f\xfd\x70\x6c\xd1\x23\x1c\xe1\ +\x07\x07\xc7\x0d\xb5\x23\x1c\xe1\x08\x7f\x6a\xe1\xa3\x26\x04\xc3\ +\x79\xe6\x87\x82\x84\x96\xeb\xf0\x95\x7f\xfe\x5b\x71\xf3\xdb\xbf\ +\x1e\x6f\xdc\x9f\xc4\x3d\xad\xb4\xd6\xf0\x6b\xd6\xba\xde\x6c\x62\ +\xb5\xdd\xc6\x52\x33\xf3\x95\x68\xee\xd9\x31\xad\x75\x1e\x4c\x96\ +\x35\x39\x65\x61\xd0\x82\x27\xd0\xf0\x34\x49\xf7\xc2\xa9\xe4\xac\ +\x93\xe0\x3b\xee\x45\x95\x32\x26\xee\x34\x36\xd5\xf9\xdd\x01\x13\ +\x6d\x36\xba\x78\x3a\x8d\x9b\xb0\x9d\x42\x2e\x8b\x80\x86\x6f\xa7\ +\xc6\x9e\x85\xd8\x87\x41\x7e\x2c\xee\x98\xd8\xd7\x8d\x5e\x2f\x36\ +\x25\xf2\x84\x9e\x3c\xae\x96\x0a\xeb\xd8\x2f\xf3\x97\x70\xfe\x15\ +\x1c\xa1\x74\x58\xf4\x70\xf3\xfb\xfc\xe5\x71\x9c\xfd\xf4\x2c\x4e\ +\x3f\x79\x1e\xa3\xd3\x93\xd8\x2d\xe4\x0f\x9b\x50\xd3\x99\x7f\x89\ +\x37\x1a\xcf\xfc\x54\x83\x5f\x17\xe6\x8d\xb5\xb3\x18\x5f\x4c\x15\ +\xe6\x71\xf1\xca\x3c\xf6\x3f\x79\x1e\xbb\x4f\x4c\x62\x3b\x8b\x98\ +\x29\x93\xc9\x76\xe5\xb7\x59\xb2\x59\xb7\xe7\x0f\xfa\xf7\x93\xf0\ +\x6b\x2e\x70\x99\xc5\xbd\x17\x65\x72\xc2\x05\xf1\x21\xfd\x76\xc5\ +\x39\x5a\xc5\xe7\xd0\xf3\x94\xb4\xc3\xd4\x02\x6c\x16\x78\x59\x6a\ +\xf1\xfc\x74\x1a\x75\x42\xb9\x48\xd7\xb7\x99\x37\x09\x2c\x73\xc3\ +\x99\xe7\xc5\x6e\xe3\x53\xaf\x04\xf1\x73\xd3\x81\xf4\x5a\x1a\x7a\ +\xd3\x41\xa1\x61\xa7\x4d\xfd\x7c\xad\x48\xe6\x93\xde\xa4\x8d\x6c\ +\x9b\x9e\xee\xda\x06\xbe\x83\xe8\xf2\xc5\x0b\x74\xf2\x43\x8f\x34\ +\xb6\x5f\x3a\xc4\xa5\x07\xed\x8d\x34\xcb\x52\x6e\x7f\xcc\x4f\x3d\ +\xeb\x78\x33\xad\xf2\x6c\x65\x2b\xfd\xce\x5e\xc3\xa4\x21\x60\x1f\ +\x1f\x6c\x03\xbe\xec\x52\x16\xf2\x2b\x9f\x9d\x8f\xd5\xe5\xaf\xed\ +\x2b\x1f\x6c\xce\x17\xea\x22\xea\x0f\xc8\xd1\x4b\xa5\xac\x13\xb1\ +\x40\xc4\x33\xaf\xd4\xe9\x36\x9f\x86\x79\xe2\x93\xfd\xc8\x36\x49\ +\x95\xe2\xdb\x66\xca\x9a\x3f\xf8\x60\x59\xe5\xd9\xd5\xad\x75\x84\ +\xcd\x23\x70\x5e\xe5\x07\xb1\xe5\xf8\xa5\x38\x5f\x77\x24\xbe\x9c\ +\x88\xbb\xad\xce\x0f\x42\x3b\x17\x33\x8d\xfd\x15\xd1\xf9\xad\x7c\ +\x29\xbb\x6f\x2a\x10\xac\x9a\x79\x64\x9e\xf8\x92\xfe\x62\xc3\x3e\ +\xaa\x6c\x39\x3e\x98\x93\x32\xe9\x65\x59\x2b\x6e\x7e\xc6\xcd\x43\ +\xff\x40\xc6\x8d\x37\x7d\xc9\x1b\x9b\xe8\xd9\x60\xd5\x03\xf5\x47\ +\x5f\x20\xb4\xba\xa9\x78\x9e\x13\xd5\x77\xd5\x6f\xf8\x0f\xab\xfc\ +\x5f\x35\x74\x8a\xae\x34\x2e\x5f\xf9\xe0\x7c\x32\x77\xe7\xe3\x73\ +\x8a\xe0\x13\xb0\x74\x14\xa0\xdb\xf9\xe6\xf3\x8c\x74\x5d\x5c\x18\ +\x1f\xc4\xf7\x39\x55\x9b\x6e\x96\x69\x90\xe0\xe9\xb4\xfd\xa5\xc6\ +\xc4\x95\xc6\x27\xda\x81\xb1\x4b\x1f\x69\x14\x88\x27\xe8\xe3\x03\ +\x60\x10\xf1\xa0\x20\x4c\x5a\xc1\x8e\x36\x87\xed\x2c\x45\x53\xc6\ +\xb9\xc4\xe7\xdb\x18\x3f\xd4\xa0\xf4\xca\x36\x4e\xef\xcb\xc7\x57\ +\xd6\x31\x79\x45\xf9\xbe\x31\x8e\xc9\xcb\xb3\x38\x79\x30\x8b\xd9\ +\xa3\xb3\x98\x5f\x5c\xc4\xf4\xe1\xbd\x88\xf3\xb3\x58\x2f\x6a\x23\ +\x5e\xf6\xf9\xf8\xd5\x54\x80\xc6\x38\x5e\x5c\x35\xde\xca\xfe\x7e\ +\x13\x33\x9e\x5c\x5b\x2e\x63\xf2\xfc\xda\xaf\xd8\xdd\x7e\xf3\x83\ +\x58\xfd\xe1\x75\x5c\x7d\xe5\x69\xdc\x3c\x56\x69\x6e\x66\x1a\x7f\ +\xf1\x91\xaf\x3e\x26\xd3\x96\x5f\xfd\x75\xa2\x71\xf6\x54\xed\xa2\ +\x71\xdc\x5b\x59\x7c\xb3\x2a\x3e\x1c\x9a\xac\xf9\x74\x07\x74\x12\ +\x55\x88\x69\x0e\xa2\xc7\xea\x0b\x9c\xc3\xd9\x4f\x61\xf9\x90\x0a\ +\x5c\x24\x74\x0e\x18\xdc\x1e\x60\x47\x38\x14\x94\xae\xd3\xf5\x1c\ +\x8e\x36\x03\x96\x5f\x4e\xea\x64\xa5\x24\x1a\x8a\xfe\x37\x55\x9f\ +\x3b\x3f\xe3\x7f\xd4\xe4\x87\x78\x6c\x5a\xbe\x7f\x75\x19\xcb\x38\ +\x8f\x4f\xfd\xad\xff\x28\xee\x9d\x9d\xab\x68\xd4\x6f\xa6\xcd\xfa\ +\x2a\x3b\x99\xc9\x21\x34\x16\xf9\x41\x37\x7c\x1b\xee\xe2\x1d\xe1\ +\x43\x80\x5a\xe7\xa9\x87\x7d\xfc\xcb\x7f\xfd\xcf\xe3\x2b\xef\xfc\ +\xcb\x78\xf8\xc6\x5c\xfd\x34\xdb\x0c\xf0\xb8\x51\xed\x91\xdd\x81\ +\xf3\x3f\x71\x57\xd9\x7e\x92\x8d\x8d\xa7\xd4\x6d\x73\x2b\x5f\x4a\ +\xa0\xd1\x17\x66\xcc\xc8\xa1\xa1\x74\xe8\xa6\xf0\x9b\x1d\xd3\x3d\ +\x40\xb7\x78\xeb\x6b\x1b\x7e\x38\xa4\x3e\xfc\xe2\xb9\x33\x4c\x39\ +\x04\x29\xca\x2e\x20\xef\x4c\x7a\xae\x57\xc6\x33\x47\x88\xc2\x86\ +\x51\xac\x75\xee\x3f\xe7\xff\x1e\x27\x94\x8b\x61\x62\x17\xf7\x4e\ +\xa6\x71\xa6\xb4\x6c\xa8\xf9\xbf\x02\x55\x30\xde\x68\x30\xd3\x18\ +\x42\x9f\xf7\xeb\xc1\xc5\xe3\x5a\x40\xf0\x38\xa9\xb4\x8e\x3b\x8b\ +\x2a\x5f\xe1\xbe\x0b\x0f\x0a\xf3\x42\xb9\xac\x5e\xa0\xf6\xaa\xb4\ +\x3e\xfb\x10\xe4\xd7\x9c\xa6\xd7\x5d\x17\x15\x77\x1e\xe8\x70\x9e\ +\xf1\x35\x2a\x1a\x99\x09\xf4\x69\xc3\xe2\x49\x29\x65\x4d\xce\xb1\ +\x7d\x86\x3c\x50\x95\x55\x1f\x95\xdc\xf1\x5e\x46\xe0\xba\x66\x89\ +\x68\xfa\x4e\xe9\x56\x5f\xb1\x26\x58\xa1\xf5\x1b\xf3\x15\x24\x70\ +\xbd\x99\x47\x3f\x6c\x1f\xeb\x55\x7a\x68\x78\xd8\xf5\x06\x47\x05\ +\xb8\xcc\x63\xc8\xbb\xfe\x37\x8d\xb7\x1b\xa0\xed\x36\x2a\x3e\x73\ +\xca\x5e\x0f\x9b\xf4\xfd\xb4\xcb\x27\x73\x75\x07\xb6\x3f\x52\x16\ +\x09\x17\x56\xea\x65\xcf\xaa\x72\x12\xb7\x8e\x64\xae\x73\xb6\xc3\ +\x48\x8f\x3e\x28\xf5\x35\x20\xda\x0f\xeb\x3a\x4e\x9a\x2a\x2b\xf6\ +\x9a\x0d\x64\x4e\x43\x5e\xe8\x09\x57\x1d\x66\x1f\xe0\x8b\x0d\x6b\ +\x38\x0d\xd0\xfc\x32\xd7\x76\x0a\x37\x9a\xbe\xe4\x7c\x4a\x5f\x9f\ +\x1e\x90\xb9\xe7\x74\xb8\xbe\x0e\xee\x2f\x4a\xd7\xb5\x8d\xfc\x02\ +\xfb\x35\xfa\x60\xea\x97\x73\x81\xba\x44\x0f\xb7\x95\x97\xeb\xd7\ +\x45\xc8\x34\x69\x03\x79\xf2\xad\x45\x3e\x6e\x4b\x11\x9c\xe4\x24\ +\xa6\x98\xc4\xed\x44\x79\x6a\xbd\xe4\x37\x59\xf2\xc9\xa9\xc5\x38\ +\x66\x3e\x6d\xdb\x0f\x79\xf2\x93\x46\xde\xf5\x5f\xe2\xf8\x22\xc3\ +\xad\x3f\xb8\x2f\xf1\xf4\x2d\xfa\xf4\x93\xb2\x93\xfe\x53\x3e\xea\ +\x02\x3a\x6d\x60\xbe\xa3\xf5\x49\x80\x0f\x4d\x5d\x12\x03\xb2\x0e\ +\x3b\x19\x69\x14\x6c\xdd\xf1\xa6\x98\x56\x68\x91\x62\x74\xb8\xe7\ +\x13\x19\xce\xaa\x1a\x86\x67\x24\x80\xd7\xf8\xa2\x5a\x1e\xc8\x7a\ +\xb6\x48\xf8\x1c\xd3\x0f\xfb\x44\x3d\xe8\x93\x4f\x19\x6b\x1e\x35\ +\x99\xc7\xe9\xe4\x3c\x2e\x4e\x1e\xc6\xc3\x93\xd7\xe2\xfe\xd9\x6b\ +\x71\x71\xf1\x52\x9c\xcd\x5f\x8b\xf3\x93\x47\x71\x32\xbf\x1f\x8b\ +\xf9\x3d\xe1\x87\x71\x7a\x72\x1e\x8b\xd9\x22\x16\xe3\x79\xcc\x35\ +\xff\xf1\x0f\x6d\x4e\x46\x5a\x57\x70\x3e\xe6\x38\xca\x8f\x13\x70\ +\x64\xa5\x71\xfd\x7a\xcd\x1b\x65\xe4\x43\x56\xd5\x0b\x90\xed\x45\ +\xb7\x48\xff\x07\xae\x17\x1c\x72\x3e\xc4\x4c\x07\xad\x8c\x19\xcc\ +\x50\x55\xaa\xb7\xf0\x5f\xc3\x66\x0c\x01\x6b\x9a\x27\x4b\x0e\x95\ +\xf3\x59\x7d\x9b\x9a\xb0\x49\xa5\x4b\x79\xea\x54\x2b\x24\xdc\x32\ +\xd9\xf4\xdb\x5c\x37\x7d\x38\x54\x13\xbb\x78\xfb\xe0\x05\x03\xa3\ +\xdd\x38\xae\x6e\x26\xf1\x37\x7e\xf6\x3f\xd1\xb5\x30\x7d\x27\x33\ +\x63\xc3\x30\xf5\x11\xfe\x2c\xc0\xb1\x45\x8f\x70\x84\x1f\x1c\x70\ +\xc5\x39\xc2\x11\x8e\x70\x84\x1f\x0f\x78\x86\x98\xe4\x0f\x1f\x2a\ +\xb3\xe1\x2c\xa2\xf2\x5e\xc7\x26\xde\xf9\xa3\x2f\xc7\x78\xfb\x34\ +\xe6\x9a\x44\xf2\x04\x80\xa7\xe3\xcc\x5e\x05\x7e\x5d\x04\xfc\xdd\ +\xee\xc0\x5d\x9b\xaa\x09\x67\x67\x56\xc4\xed\x09\xac\xb1\xf9\x3e\ +\x34\x8e\xe9\x9c\xb0\xa6\xd5\xce\x76\x89\x01\xbf\xc6\x8b\x80\x2f\ +\x9a\xe8\x1a\xf9\x53\xf2\x0a\x2f\xc0\xc0\x46\x42\xe6\x9b\x3e\x68\ +\xf0\x27\x6f\x7d\x32\x7d\x96\xcf\x1b\x68\xbc\x76\xb0\x9e\xbc\xc9\ +\xc9\x3d\x4b\xaa\xcc\x97\x8d\x35\x64\x33\xe1\x93\xab\x65\x9c\xbd\ +\xb9\x8c\xd1\xf2\x3a\xf6\xd3\x8d\x34\x36\xb1\x99\xac\x62\x37\xd9\ +\xc6\x96\xc5\xa0\x16\x48\x63\xc2\x54\x61\x7e\x16\xb3\xc5\x22\xe6\ +\x8b\x07\x71\x7a\xff\xa5\x98\xbe\x7c\x11\xe7\xaf\x4f\xe3\xa5\x9f\ +\xbe\x17\xf7\xff\xe3\xb3\x88\xff\x85\x6c\xff\xcd\x45\xcc\xfe\xea\ +\xde\x4f\x7e\x8c\x66\xb2\x37\x97\x6d\xfe\x57\x44\x0d\xe1\xfb\xb5\ +\x5e\x01\x08\x06\xa8\x0b\x75\xe8\x6b\x05\xc8\xa5\x60\xe3\x74\xba\ +\x2d\x22\x9b\x63\x2d\x24\xd8\xc5\xa3\xcc\x7b\x5e\x2f\x66\x21\x95\ +\x83\xff\xdc\xac\x26\x68\x11\xc4\xab\x47\x58\x0c\xf9\x49\x19\x2d\ +\x80\x25\xe3\x06\x33\x1b\x88\xde\x30\x53\xc8\xcd\x06\xf1\xdb\x46\ +\x65\xd9\x30\x66\xd1\x0c\x2d\x9d\x3d\x37\x5b\xa0\x87\x41\x72\x29\ +\x98\x6e\x76\x1a\xdd\xc2\x68\x06\x8f\x85\x9f\xec\xf1\xae\x28\xfb\ +\x82\x2d\x70\xe5\x25\x79\x97\x5e\x38\x9f\x90\x53\x28\xfb\xbe\xd1\ +\x8f\x6f\x6a\x1f\x15\x4c\x81\x72\xb8\x33\xa8\xd8\xe2\xc9\xb6\x6f\ +\xc8\x54\xc8\x8d\x95\x4c\x47\x39\xe0\xed\x89\xb3\x18\x76\xba\xb2\ +\x05\x2d\x1d\x6e\x00\xda\x6f\x02\x7e\x57\x5a\xbf\x72\x48\x2a\xb4\ +\xd3\x48\xfd\xaa\xbd\xc3\xdf\x75\x5d\xfd\x10\xec\x78\xd1\xb9\xe9\ +\x92\x3a\xf4\xd9\x16\x9a\x5e\x7e\x88\xea\x28\x17\x9a\xff\x96\x2b\ +\x33\x6e\xa0\xe4\xcd\x96\x96\x0e\x5f\x4b\x96\x77\x65\xad\x9b\x32\ +\xa5\x6f\x71\x6e\x62\xb9\xac\xe8\x08\x53\x07\x03\x3b\x59\x0f\xd0\ +\x4a\x63\x80\x97\x69\xb9\xdb\xdb\x36\x87\x6c\x0b\x3d\xea\xce\xf9\ +\xc1\x2f\x59\xa3\xa9\x1f\xe1\x8c\x93\xa6\xf5\x2b\x64\xa4\xa7\xed\ +\xb2\xbf\xf8\x66\x12\x7c\xf4\xf1\xc9\xe9\x33\x5d\x6b\x1b\xb7\x39\ +\x9b\xd7\xb4\xad\xfa\x06\x1b\x51\xf4\x8d\x6c\xe7\xe2\xf1\xba\x4d\ +\xfe\x37\xb0\xfa\x72\xf6\x15\x78\xf2\x85\xff\xfc\x73\xba\xea\xeb\ +\xe2\x8d\xa5\x4f\x20\x5d\xf2\x66\x92\x2b\x8d\xeb\x84\x80\x6d\xd9\ +\xab\xfa\xef\xea\xa8\x6b\x7b\xca\x4b\xc8\xbc\xec\xbb\xb0\xff\x47\ +\x8f\x3e\x42\x1e\xcd\x0f\x05\x68\x07\x68\xc9\xbc\x91\x67\xfb\xb2\ +\xa1\xf3\x75\x76\xa3\x73\xf5\x86\x71\x48\xb8\xce\x79\x6f\xa2\x98\ +\x02\x0a\x4b\xbd\xc1\x90\x6f\x7d\xc6\x51\x3e\xd2\xf1\x6b\x58\x1b\ +\x9e\x68\xec\x53\x51\xf7\x1a\x77\xb6\xa7\x1a\x83\xfe\xff\xec\xfd\ +\xd9\xb3\x2d\x5b\x96\xde\x09\xcd\xdd\xef\xd3\xdd\x26\x6e\x74\x19\ +\x99\x91\xca\x46\x99\x25\x29\xa5\x6a\x25\x21\x50\x51\x85\x01\x65\ +\x98\x21\xc3\xc0\xe0\xcf\xe3\x85\x37\x1e\x78\x00\x33\xa0\xac\x28\ +\x28\xac\xcc\xe0\xa1\xca\xb0\x2a\x8a\x02\xa5\x52\x52\xa6\xb2\xcf\ +\xe8\x6e\x77\xee\xe9\x76\xb7\xf6\xe6\xfb\x7d\xdf\x18\xd3\x7d\xad\ +\xbd\xcf\xbd\x37\x22\x6e\xa4\x32\x32\xd6\xf0\x3d\x7c\xf4\x63\x36\ +\x3e\xdd\x7d\xba\xcf\xbd\xd6\x7a\xa6\x22\xdf\x15\x7d\x22\xf9\xdd\ +\xab\x71\xf0\x54\x75\x16\x9e\x9e\xdd\x8d\xe3\x47\x2a\xf3\x89\xfa\ +\xe4\xb1\x8e\xcb\xb3\xd3\x71\x73\x7e\x34\xae\x4f\x0e\xc6\x86\xb6\ +\xf1\x82\x44\x39\xf9\x67\x80\x8d\xf2\x6e\x0e\x18\xef\xb2\xf1\xb5\ +\x53\xb7\xba\x46\x5e\x5d\x8d\xab\xd7\xaf\xc7\xcd\xc7\xaf\xc7\xe5\ +\xf7\x5e\x8c\x37\x7f\xf0\x7c\xbc\xfa\xdd\xeb\xf1\xd9\xef\xbf\x1e\ +\xaf\x3f\xbc\x1d\x9b\x37\xfc\xee\x87\x2b\xed\x7a\x92\x8c\x73\x27\ +\xd7\x63\x55\x97\x76\x73\xdd\x12\xb2\x70\x41\x6b\x02\xab\x46\xaf\ +\xf8\xe6\x42\xb5\xf7\x85\x6e\xed\xeb\xe4\x26\x13\x28\xa3\x28\x17\ +\x60\xdf\x0f\x84\xd6\x63\x68\x5f\xd2\xd5\xb9\xe5\x8c\x1c\xa7\xcf\ +\x83\x0a\x5e\xbc\x92\x68\xca\xce\x07\x49\xab\x40\x7a\x8f\x7b\x2f\ +\xd7\x8d\xcd\x86\x8b\x76\x19\xd4\xd7\xdf\x7c\xef\xd9\xd8\xbc\x78\ +\x3e\xfe\xec\x5f\xfd\xa1\xd5\xbd\x98\x06\xa4\x2a\xc9\xff\xb9\xd0\ +\x21\x4b\xe8\x1e\x7e\x2c\x58\x1f\xcf\x00\x0b\x4c\xff\xd5\x7f\xfd\ +\xff\xd4\xfd\x5e\xe7\x08\xd7\xa8\xd5\xb8\xf0\x48\xd1\x61\x69\x15\ +\x64\xb1\xee\x1e\xaf\x96\x7b\x44\x98\xb5\x34\x01\xd9\x83\x66\xbb\ +\x1c\x60\x2d\x6d\xf1\x08\x1a\x8b\xbe\x17\x79\x4c\x02\x6f\x2b\xfb\ +\x01\xb0\x29\x19\x9d\x4b\xe7\x54\xf7\xc2\x43\x51\x8c\xe1\x8b\xcb\ +\x5b\xcf\x35\xab\xaa\x5e\x2c\x38\x55\x3f\x9d\x49\x38\x86\xd7\x75\ +\xee\x4c\x63\xfa\xf1\xf1\xf9\x78\x74\x7c\x36\xce\x8f\x4e\x0a\x8f\ +\xc7\xb9\xae\xbd\xfc\x96\xe0\xb9\xae\x8d\xd0\x13\xa1\xe7\x27\x8a\ +\xe7\xf2\xe8\xaf\xc6\x04\xab\xf4\xd4\xe4\x3e\xb8\xaa\x61\x0d\xe1\ +\x5b\xd3\x74\x69\x41\xba\x66\x89\x42\x4c\xdf\x69\x57\xee\xb1\x52\ +\x76\xb6\x40\xa8\xaf\x0b\xa0\x25\x01\xc1\xf9\xcb\x0e\xde\x3e\xd0\ +\xd8\x4d\x65\xf0\xb1\xf4\xa5\x9f\x7b\xb9\x64\xdf\x5f\x74\x9f\xf0\ +\x62\x04\x7c\xae\x3b\x59\x40\xc1\xce\xc2\x8b\xee\x1b\xf2\x63\xc9\ +\x89\x2d\x3e\x92\xd1\x29\x96\x85\x99\xa9\x73\x19\xc5\x4f\x4a\x4c\ +\x95\x45\x29\xe6\xe3\xc7\xbd\xb9\xf3\x74\x0c\x9b\x17\x41\xbd\x88\ +\xa6\x7b\x6f\xe5\xcc\xdc\x03\xac\x3a\x70\x3f\x23\x16\xd9\x48\x79\ +\x9c\x1b\xa9\x53\x16\x8c\xe4\xe3\xdc\x85\xd8\x44\xc5\xa4\x1e\xd6\ +\x25\x37\xff\x60\x42\x9b\x25\xb9\x9e\x2e\x97\x6e\xd3\x71\xf1\xe5\ +\xdd\xf5\xf0\x3e\x7c\xf7\x63\xfb\xc2\xbb\x1c\xea\x21\x23\xdf\xdc\ +\x80\x8d\xb2\x9a\xa7\xff\xc0\xea\xef\xf8\xd4\xa6\x32\xdc\x4f\x14\ +\x82\x4c\x59\xce\x15\xbb\x15\x58\xd0\x75\x99\x6b\x6a\x3f\x22\xed\ +\x14\x3f\xc2\x5c\x4f\xf5\x87\x31\x7d\x76\x74\x70\xea\xfe\xe5\x37\ +\xa8\xfc\x5b\xd5\xe2\x8d\xee\xd3\xa0\xf5\x92\xa3\xd3\xb1\x70\xb9\ +\xf4\x2f\x79\xd3\x0e\x9d\x71\xf6\xc5\x86\x9e\xc1\x95\x72\x55\xbe\ +\xf3\x28\xee\xae\xd0\xb1\xd1\x51\x8f\xe4\x50\x5c\xd5\x09\x99\x0d\ +\x19\xbb\xcb\xad\xe3\xe7\xe3\xbc\xa6\xed\x73\x70\x22\x9d\x9e\x87\ +\xc4\x67\x8e\xa7\xdc\xe4\xa8\x3c\x87\xe3\x44\x3e\x2a\x85\xb6\xaf\ +\x72\x23\xa5\xec\xd4\xd5\xf1\xae\x03\x3c\x75\xa7\xcf\xa0\xd2\xcd\ +\x71\xd1\x47\xcf\xdd\x2b\x0e\x64\x23\x4f\x94\xd0\xd8\xca\x41\xbb\ +\xd5\xed\x33\x63\x89\x07\x25\x9f\xdb\x2b\xd0\xb1\xf7\x57\x49\x32\ +\xce\xe6\xb5\x13\xe0\x5f\x7b\x18\x18\xcc\x13\x4a\x05\x38\xbd\x36\ +\x97\x29\xbc\xa3\x75\xba\x86\xe9\x7c\x39\x3d\x7c\x32\x9e\x1c\x3f\ +\x19\xef\x9d\x7e\x6d\x7c\xed\xd1\xb7\xc6\xd7\x1f\xff\xea\xf8\xe0\ +\xd9\x77\xc6\xbb\x8f\xbf\x3d\x9e\x1e\x7f\x7d\x3c\x3a\x79\x47\xd7\ +\xbb\x27\xba\xee\x3d\xd5\x35\xf1\x91\x50\xd7\x41\x9d\x37\xea\x45\ +\x5d\x3b\x0f\xc7\xf9\xd9\xc9\x38\xe3\xeb\xc0\xa5\x63\xde\x45\xdf\ +\x9c\x9e\xea\x3a\xaa\x6b\xe3\xe9\xf1\xad\xc6\x85\xea\x4e\xff\xb8\ +\x61\xaa\x03\x75\x77\x2d\xab\x45\x96\x99\x5b\x2c\x4d\x81\x34\x3e\ +\x0c\x5b\xbd\x61\x58\xfb\x93\xa7\x31\xc0\xbd\x41\x82\x9e\xe3\xfb\ +\xff\x8e\x16\xa0\x73\xa8\x63\xfa\xc6\xc7\x11\xed\xf4\x5b\xca\x32\ +\x87\x7b\xf9\x04\x16\x6e\x0b\x14\x1f\x4b\xdd\x11\xbc\x43\x43\x2c\ +\x49\xc2\xa1\x3f\xe1\xeb\xbc\x75\xcc\x3e\xfb\xec\x8f\x34\xcf\xba\ +\xf0\x17\xa1\x6c\x43\x32\xed\x61\x0f\x7b\xd8\xc3\x1e\x1e\x86\x7b\ +\x97\xcd\x3d\xec\x61\x0f\x7b\xf8\x99\x03\x93\x3b\x4f\xf0\x0a\xd6\ +\xfc\x8f\x01\x6f\x0b\x7b\x58\x9f\xc9\xe4\xda\xd8\xd3\xc4\xeb\x9b\ +\x8b\x71\xf5\xa3\x4f\xc7\xe3\xd3\xbb\xf1\x44\x33\xde\x23\x21\x6e\ +\x20\x2f\xf0\xfc\x42\x4f\xb3\x63\x64\xbe\xc7\x3c\x9c\xc0\x13\xdb\ +\xf0\x35\x5f\xd7\x1f\x3b\xed\x85\x50\x17\x32\x11\xfd\x64\x0d\x71\ +\x2b\x61\x17\x28\x13\x64\x16\x5e\xfc\xda\x53\xe2\x97\x04\x0a\x09\ +\x31\x5b\x95\x20\xdc\x2f\x67\x61\xd8\xf1\xd2\x72\x53\x0b\x1e\x12\ +\xfd\x73\x06\xf5\x84\xc5\x04\x9f\xdf\x47\xc2\x67\x73\x75\x37\xae\ +\x3f\x92\xdf\x5f\xbc\x1e\xe3\x9f\x7f\x32\x0e\x3f\xfb\x44\x39\xdf\ +\xe8\x86\x42\xa2\x5b\x3f\xa8\x6d\xf4\x24\x77\xac\x99\xf9\xf1\xe9\ +\xd9\x38\x3a\x3f\x1d\x7a\x32\x1a\x07\x67\x52\x9e\xe8\xc1\xe7\xf4\ +\xc9\x18\x67\x4f\xc6\xf5\x7b\xa7\xe3\xf8\xbd\x77\xc7\x93\x5f\xd6\ +\x43\xd3\xdf\xd4\x43\xd1\xdf\x3a\x1c\xb7\xff\xce\xcd\x38\xfc\xb7\ +\xf4\x40\xf4\x0d\x3d\x74\x3d\xe2\x0d\xfa\x8d\x1e\x3c\x53\x57\x72\ +\x9b\xa3\x72\xfa\x43\x8a\x25\x47\x24\x35\x05\x62\x4f\xbb\x42\x8b\ +\x35\xf2\xa2\x1b\x70\x6f\xba\x4d\x20\xfd\x2c\xd9\x0f\x8a\x1c\x27\ +\x1e\x4e\x55\x27\x1e\x92\xcf\xf4\x70\xcd\xef\x80\xe9\x61\xce\x0b\ +\x16\x7c\xc2\x8a\xff\x86\x94\x3c\x17\xb5\xe4\x97\xaf\xa6\x03\x4f\ +\xfc\xb2\x37\x0f\xbd\x50\x21\x14\xec\xc5\x0e\x51\x2f\x4e\x15\x66\ +\xf1\x4b\x39\x4d\x85\x2e\x5b\xb7\x68\xf8\x5a\x60\xe0\xa1\xdd\x0b\ +\x1f\xed\x23\x7d\x7e\x5b\x8a\x32\xe5\x83\x2c\xec\x4f\x1f\xda\x4f\ +\x79\xf4\x54\x69\xd9\x2f\x63\xf0\x53\xdd\xf1\xe3\xd3\x2d\x2c\x68\ +\x74\xb9\xf8\xdb\xd7\x0f\xe6\xe2\x4d\xf3\x20\x0f\xdf\x72\xdb\xa1\ +\x53\xaf\x58\xbe\xd6\xaf\x17\xf7\xfc\x72\x81\xdf\x4d\xa3\x9f\xc8\ +\x4b\x0e\xfa\x5c\xe3\x2b\x07\xa0\x0e\x02\x20\x36\x9a\x9c\x37\xbd\ +\x49\x08\x1a\x4a\x8b\xbd\xc6\xef\xf4\xb1\x1e\x12\x39\x76\xb0\x74\ +\xd4\xcf\xb2\x28\xd3\x9e\xb5\x8f\xb3\xa0\x47\xac\x05\x20\x1f\xfb\ +\x6a\x97\xe4\xf9\xa0\x6b\x1b\x9e\xb4\x25\xb1\x15\x18\x7f\xc7\x85\ +\x6f\xda\x7d\xe6\x97\x2b\x2d\xfb\xd8\xc0\x13\x12\xbb\x14\xa1\xea\ +\x3f\xf7\x5d\x1d\x7f\xdb\xe9\x3f\x23\x31\x92\xbb\x7e\xd2\xc5\x16\ +\x9f\x1e\x33\x1e\x13\x75\x5c\x75\xb0\x63\x43\xcf\xd8\x80\xe7\x98\ +\xb0\xb0\xc6\xb8\x61\x2c\xe0\x2b\xde\xe3\x02\x1b\xd4\x36\x8d\x79\ +\x1d\x43\x2f\xb4\x51\x0e\x63\x47\xd4\x2f\xb0\xba\x3c\xea\xe1\x3a\ +\x0a\xe9\x47\xe9\xe4\x94\x3a\x55\xdd\xed\xa7\xd8\xb4\x3b\x79\xd0\ +\x33\xfe\xdd\xce\x8e\x87\x62\xa3\x2e\xab\xfc\xe4\x3d\xba\x51\xe8\ +\xa5\xae\xc3\x7c\x4d\xe2\x8d\xce\x55\x16\xfe\x75\x51\xe2\x7c\xe6\ +\x18\xf8\xb8\x09\xea\xf4\x9d\xe7\x7a\xef\xd7\x40\x54\xec\x95\x83\ +\x8b\x9b\x62\xf8\x1d\xb7\xcd\xf1\xed\xb8\x39\xdd\x8c\xbb\xc7\x92\ +\xcf\x6f\xc6\xdd\x23\x5d\xe7\x4e\x85\x27\x07\xe3\xf6\x58\x76\x1d\ +\xd7\x0d\x5f\xdb\xa8\x42\xb8\x33\xf0\x9f\xcf\x57\x70\x4a\x71\xad\ +\x6e\xe2\x5e\xa1\x2b\x56\xa8\xf2\xdd\x28\x37\xf7\x8c\xeb\xbb\x4b\ +\x39\x5c\x8e\x9b\x57\x17\xe3\xfa\xc3\x37\xe3\xf2\x7b\x97\xe3\xcd\ +\x1f\xbe\x1a\xaf\xff\xc5\xcb\xf1\xe2\x77\x2f\xc6\xa7\x7f\xf0\x72\ +\xbc\xfa\x70\x8c\xcb\x8b\xc7\xba\x06\x9f\xaa\x7d\xbd\x30\xa7\x3e\ +\x73\x5d\x55\xc5\x6a\x98\xab\x7b\xb5\x19\x9b\x1b\x4a\x52\xfd\x31\ +\x36\x78\x9c\x16\x2f\x80\x5d\x9b\x1b\xd6\x3e\xf6\x6a\x79\xed\x5c\ +\x89\x7d\xfd\xe4\x8d\x93\xb0\xba\xca\x60\x4a\x22\xf5\x09\x2f\x78\ +\xa9\x1e\xba\x9c\x27\xd3\xa3\x60\x49\x1c\x6d\xdb\x56\x3e\x33\x46\ +\xa8\x82\x22\x26\xce\xf7\x24\xff\xc3\x07\x9f\xf3\x93\x5a\xe3\x82\ +\xfb\xcd\xbb\x8f\x8e\xc7\xf1\xed\xcd\xf8\xf0\xcf\xfe\x8c\xf5\x56\ +\x0c\xec\x03\x4b\x91\x05\x2b\xc5\xda\x76\xcf\xef\x2d\x80\xdf\x97\ +\xf5\xfd\x85\x82\x9e\x05\x05\x74\x96\x8c\xc3\x9b\x93\xf1\xbd\xcf\ +\x7e\x7f\x1c\x3f\x65\xe1\x47\x3a\xee\xaf\x1a\x48\x1e\x1b\x40\x1d\ +\x6b\xb6\x74\x2a\xb4\x6c\x80\x8f\x7f\xac\x16\x27\x53\x5e\xd0\xe2\ +\xed\xa7\x14\xd4\x62\xe6\x6f\xb8\x77\xbc\x12\xc1\xb9\xcf\x76\xa3\ +\xb1\xd3\xbf\x59\xf3\xe5\xa0\x1c\x6b\x5c\x56\xba\xde\xdd\x2b\x2f\ +\x62\x5e\xa4\xf2\x6d\xe1\xd1\x30\x47\xba\x1b\x27\x1a\xc3\x2c\xa0\ +\x9d\xea\x9a\xf7\xf8\xe4\x74\x3c\x3e\x7b\x34\x9e\x3e\x7e\x3a\x9e\ +\x3e\x7a\x92\xaf\x3c\x13\x3e\x3d\x7b\x3c\x9e\x88\x3e\xd2\x9c\xe9\ +\xf1\x09\xf8\x54\xf3\xd4\xc7\xfe\x0d\x47\x62\xce\x35\xd7\x38\x15\ +\x1e\xeb\xfa\xe9\x97\xf1\xbc\x40\xa6\xef\xdc\x7f\x2a\x6b\x36\x0c\ +\xb9\x21\xfa\x29\xe3\xd2\x6e\x40\xcb\xee\x54\x21\x7f\x3a\xb9\x3b\ +\xc2\x2f\xd3\x25\xe1\x12\x95\x6c\x56\x59\x63\x88\x1a\x79\xc1\x3e\ +\x36\x3e\x6e\x42\x9f\xc7\x8d\x52\xb0\x6d\xbd\x54\x36\xaf\xeb\x7f\ +\x21\xf3\x10\xbf\x90\xe7\xde\x2a\x3a\x3f\xd1\x07\x6a\x6e\x85\x8c\ +\x9e\xfb\xec\xfc\x64\x9f\x62\xb2\x38\x83\x9c\xfc\xbd\xe8\xe6\x45\ +\x18\xe2\xc4\x27\x7f\xec\x5e\xdc\x28\x7f\x49\xda\x4a\x16\x22\x73\ +\x5f\xca\xa2\x46\xdd\x9f\x44\xef\x6a\xd1\x89\x4f\xdb\x90\x93\xa5\ +\x0c\xcd\x7e\x1d\x6b\x3f\x28\x0b\x68\xce\x43\x3c\x0b\x35\x64\x5b\ +\x72\xb3\x31\x47\x44\xd7\x75\xf6\x75\x8e\x78\xfb\xa4\x6e\xf0\x64\ +\x24\x46\x0e\x92\x55\x4f\xf7\x89\x78\xb6\x6a\x07\x0b\x61\xf0\xf8\ +\xd0\xdb\xd8\xe9\xed\xf8\x90\xbb\xfc\xb0\x8a\x77\x2e\xd7\x93\xec\ +\x6c\x95\xaf\x36\x4b\x38\x03\x95\xcb\x2c\x3b\x0f\x80\xce\x51\xbe\ +\xee\x57\x62\xa2\x71\x8c\x13\x20\xb7\x3f\x7f\xdc\xe9\x32\x1e\x96\ +\x7e\x20\x9e\xfa\xd1\xfe\xf4\x41\x50\x6d\x87\xba\x2f\x4b\x77\x70\ +\x2a\x5f\xcd\x55\x5a\x2e\x7f\x1f\x5f\xfa\x97\xb1\xc0\x1c\xf7\xb0\ +\x62\xdc\x87\x2d\x0b\xd3\x9b\xc6\xb6\x67\xec\xc0\xc7\xe7\x08\x54\ +\x0e\x2f\x70\xd9\x2e\xac\xf9\x8b\x7d\xc9\xa2\xba\xba\x4c\xd0\xed\ +\x88\x3d\xc7\x32\x3c\x0b\xe7\xc9\xa1\x5c\x2e\x8f\x18\xea\xc2\xa2\ +\x61\xc9\x5e\x78\x23\x0e\x0f\xea\x46\x6c\x6c\xa9\xbb\x34\x3a\xa5\ +\x24\x5a\xef\x36\xba\x0e\xea\x33\x1d\x87\xee\x3b\x29\x75\x58\xaa\ +\xbf\x19\x1f\xa0\xfb\x3b\xba\xc9\x59\x17\x5c\x00\x9b\x34\x3e\xae\ +\x16\x57\x80\x40\x05\xc0\x36\x70\x8e\xb3\x17\x0d\x1b\x17\x91\xe0\ +\xec\x61\xd5\xf6\x64\x9c\xe9\x98\x3d\x39\x79\x36\xde\x3d\x7b\x6f\ +\x7c\xf3\xf1\x2f\x8d\xef\xbc\xf3\xdd\xf1\xed\xa7\xdf\x1d\xef\x3f\ +\x79\x5f\xd7\x41\x3d\x0f\x1e\x3e\x1a\xa7\x47\xe7\xe3\x54\xfd\xa2\ +\x33\x6a\xf0\xbb\xd8\x47\xba\x6e\x1e\xe9\xde\x72\x70\x77\xa5\x67\ +\xd3\x6b\xa5\xbf\xd4\xbc\x60\xa3\x6b\xb8\xe6\x42\xfe\x84\x31\x05\ +\xf3\x4f\x37\x77\xe3\xea\xf6\x6a\x5c\x5d\xeb\xfa\xce\xff\x30\xf1\ +\x5f\x52\xba\x2e\x56\xed\x52\x3f\x21\xee\x66\xd5\x46\x3f\x67\xb7\ +\xa2\x61\x4b\xdc\x31\xec\xc0\x56\xf7\x4c\x7b\xee\x2b\x49\xab\x39\ +\x21\x73\x28\x6c\x28\x56\xd0\x9f\xfe\xa5\x76\xde\x77\xa7\x4d\x28\ +\x41\xa4\x8e\xd8\x8e\xbd\xc4\x1d\x1d\x60\x15\xc5\xad\x6d\xe5\x9c\ +\x5a\x1c\x8e\x1b\xe6\x54\x9a\xf3\xde\x5c\x5d\x8e\xe7\x2f\xbe\x5f\ +\x7a\xa0\x83\xb6\xeb\xbb\x87\x3d\xec\x61\x0f\x7b\xd8\x06\xe6\x2f\ +\x7b\xd8\xc3\x1e\xf6\xf0\xb3\x81\xf5\x3c\x0c\xbe\xf1\x81\x89\xdf\ +\x4f\x02\x6f\x4b\x83\xbe\x71\x1b\x54\xf8\xae\x52\xf2\xcd\xa7\x97\ +\xe3\xea\xcf\xff\x58\x93\x78\x5d\x14\x0f\x6e\xc7\x21\x6f\x3f\x04\ +\xfc\x80\x2f\xbf\xaf\xc1\x43\x03\x9a\xbc\x78\x89\xed\x3e\xf0\xc2\ +\xc0\xae\xb3\x08\x68\x50\x9b\x0c\x79\xf6\x28\x07\x04\x95\x47\x36\ +\x63\xa9\x0d\x5d\xc4\x34\xea\xaf\xa9\x15\xe1\x97\x80\x1d\xd8\xd2\ +\xaf\xca\x15\x32\x65\x57\x23\x51\x08\x3a\x57\xda\x95\x4f\xc3\xe9\ +\xc1\x64\x4e\xfc\x45\xfc\xe9\x2d\x31\x6e\x98\xf0\x56\x0f\x69\xaa\ +\xec\xcd\xeb\x93\x71\xf9\x47\x6f\xc6\xf8\xa7\x97\xe3\xe6\xbf\x7d\ +\x31\x0e\xfe\xec\xd5\x38\x7a\x79\x39\x8e\x6e\xae\x7d\x63\x39\xe5\ +\x53\x30\x27\x47\xe3\xee\x58\x0f\x12\x3c\xd8\x8d\x63\xb5\xf1\xd8\ +\x3f\x2c\xbd\x39\xb8\x19\xd7\x7a\x1a\x3c\xb8\x52\x11\x87\xb7\xe2\ +\x4f\xc6\xc5\xc9\xd9\xb8\x3a\x3f\x1e\x2f\xf9\xb4\xc7\xd7\x4f\xc6\ +\xf5\xdf\xbe\x1b\xe7\xbf\x76\x3b\x8e\xdf\x3d\x1d\x87\x67\x7a\x10\ +\xa3\xce\x7a\x98\x6c\xa0\x1f\xfc\xae\x87\x3a\x16\xac\xd8\xc0\x96\ +\x2d\xc7\x70\xd2\x74\x8a\x81\x1c\xb4\xc9\x0f\xa3\xd5\x47\xa0\x5f\ +\x3a\xf0\x62\x1f\xaa\x07\xdc\x83\xd3\x13\xa1\x1e\x7e\x79\xe1\x5f\ +\x0b\x10\xfc\x1e\x58\x16\x25\x84\xf8\x36\xa5\xcd\x42\x1e\x6a\x91\ +\x7b\x21\x41\x4f\xcd\xce\xe5\x87\xf1\x5e\x38\xa8\xc5\x06\x7f\x9a\ +\xc8\xbc\x1e\x00\xf1\x35\x1f\x24\xce\x39\x40\xc5\xeb\x69\xdb\x65\ +\x80\xce\xd9\xfe\x85\x5d\x0e\x8b\x5c\x3c\x9c\x93\x33\xf5\x02\x65\ +\x53\x3c\xbf\xeb\xe4\xdc\x1d\xdb\x76\xc7\xa6\xfd\xd4\xdf\x6d\x70\ +\x4c\xf4\xd1\x51\x7e\xea\xe0\xf1\xc4\x7f\xca\xcb\x4e\xfd\xba\x2e\ +\x5e\x98\x39\xd3\xe3\x30\xfd\xe6\xdc\xf4\xab\xb6\xad\xff\x60\xe5\ +\x38\x70\x6c\xc1\x68\x0c\x16\xd9\x30\x51\x97\xe8\xa6\x93\x14\x7e\ +\xf0\x34\x0f\x96\x2f\xfb\xca\x45\x5c\x69\xac\x2b\xd1\x7a\xbb\x64\ +\x97\xfa\x9b\x8f\x8e\x26\x21\xc7\xaf\x6d\xa0\x0c\x1e\x0b\xc9\xe3\ +\x73\xd6\x7d\x23\xc6\x7d\xd1\x7e\x36\xb8\x9f\xd2\x47\xb1\xb3\xe8\ +\xd0\xc7\xd2\x63\x4a\xe7\x43\xe2\xf1\x8d\x9f\x17\x9d\x2c\x77\x3c\ +\x7e\xd8\x24\x57\xf9\x5e\x64\x91\xcc\x4b\x14\xdb\xdd\xe7\x9d\x27\ +\x2f\x5d\xbc\xb8\xea\x45\x33\xe9\x28\xd3\xc7\x57\x36\x7c\x91\x75\ +\x9c\x97\x4f\x83\xe1\x27\x64\x3c\x9b\xca\xe7\xec\x78\x1c\x49\xf6\ +\x71\x94\x3f\xfa\x8c\xbf\x94\xd7\x39\xc9\x93\x63\x2b\xac\xc5\x54\ +\x8f\x55\xea\x89\x5e\x78\x87\x9f\x6c\x8c\x37\xdb\xc8\xe1\xf3\x87\ +\x98\x8a\x27\x4e\xf2\x2c\x0f\x54\x5b\xfc\x3b\x64\x9c\x97\xfe\xfa\ +\x43\xa1\xae\x45\x2c\x56\xdd\x29\x0d\xfd\x9c\x17\x82\xd2\xe7\xe0\ +\x2d\x08\x94\x1a\xe8\xb1\xc2\xf8\x6b\x9d\xaf\x72\xe2\x9d\xf6\xb0\ +\x16\xd7\x8e\x84\xc7\x2a\xe1\xf8\x7a\xdc\xf2\xd5\x6c\x2a\xef\x90\ +\xc5\xad\xbb\xa3\x71\x7d\x7b\x34\x6e\xaf\x0f\xc7\xcd\x8d\xae\x59\ +\xd7\xba\x8e\x5d\xeb\x2a\xc1\x22\xd3\x46\xbe\x1b\x5d\xcc\xae\x58\ +\xe0\x62\x59\x47\xc8\x45\x65\xb3\x19\x77\xf9\x50\xda\xb8\xfb\xec\ +\x76\xbc\xf9\xb3\xd7\xe3\xe5\xbf\xb8\x18\x9f\xfe\xb7\x97\xe3\xd3\ +\xff\xfa\xc5\xf8\xe8\xff\xf3\xd9\xf8\xd1\x7f\xfb\x7a\x7c\xfc\x07\ +\xaf\xc6\xab\x1f\xdd\x8d\x4b\xbe\xe6\xf1\x46\xfd\xbc\x11\x2a\x13\ +\xd7\x64\xff\xc3\x83\xea\xb7\xf5\xc9\x2b\xf2\xeb\xba\x7c\x73\xc9\ +\xb5\x5a\x32\x26\xae\x61\x76\x99\x27\x56\xc1\x12\xd7\x96\x68\x76\ +\xfc\x4a\x84\xac\x2d\xbe\xbe\x52\x87\xfa\x94\x5a\x5e\x0a\xad\x40\ +\xc9\x5c\x3f\x8e\x83\xfb\xbe\xf4\x0d\x2d\xe3\xe4\x64\x40\x29\x89\ +\x81\xae\x0a\xb4\xcc\x85\xbd\x41\xac\xab\xa0\xed\x56\xfd\x79\x73\ +\xad\x0e\xa5\x1c\xc6\x91\xbc\x9f\x3d\x3a\x1b\x27\xea\xe4\xe7\x7f\ +\xf2\x17\xe3\x15\x36\xfb\x27\xbe\xe9\x02\x55\x6e\xc3\xda\xbc\xeb\ +\x8a\xdc\xb8\x87\x2f\x00\xc6\x69\x38\xae\xf0\x0c\x91\x57\xd7\x2f\ +\x75\xbc\x3e\x1c\xef\x3c\x61\xf1\x79\xe9\xc8\x1c\x6f\xdf\x5d\x2d\ +\x5b\xe3\x01\x0c\xae\x3a\x1b\xb6\xd4\x10\xc0\x22\x72\x2b\xb6\x2c\ +\xe8\xfb\x4a\x30\x1d\xde\x02\x29\x9f\x6a\xf1\x13\x86\x2e\x6c\x16\ +\x0d\x33\x85\xcf\x81\xa5\x6c\xd7\x67\x1d\xd2\xe3\x7c\xa6\xe2\xeb\ +\x1e\x6f\xfd\xb5\xe1\x9e\x4a\x49\xa3\xdb\xa5\xe6\x9b\x87\xe3\x54\ +\xd7\xea\x53\xcd\x21\x9e\x3c\x7a\x34\xde\x79\xfc\x74\xbc\xff\xf8\ +\xd9\x78\xf7\xe9\xf9\x78\x7a\xfe\x8e\xf0\x69\x2d\xa6\x3d\x1e\x8f\ +\xce\x1e\x19\xcf\xc5\x3f\xc1\xf6\xe8\x3d\xd9\xbf\x36\x1e\x9f\x3f\ +\x1b\x4f\x4e\xcf\xfd\x3b\x42\x67\xca\x73\xc2\x4b\x7f\x9f\x1a\x7c\ +\xad\x24\xe8\x65\x79\x2a\x21\x48\x85\x28\x3f\xb5\x5f\xeb\x0b\x56\ +\xec\x6c\xc7\xd6\xf9\xa8\x48\xc4\xea\x6b\x67\xf2\x25\x41\x34\x8a\ +\xf4\x87\x84\xcc\xa7\x22\xfb\xda\x60\x1e\x1d\x2f\xd6\x43\xbd\x55\ +\xae\xb5\x8f\xe7\x2c\xba\x87\xb0\xd9\x8e\xce\x5b\xee\x0b\x2c\x5a\ +\x70\xbf\xcb\xa2\x57\x74\xdc\x83\xb2\xb8\x86\x3e\x36\x2f\x52\x80\ +\xe8\xac\x97\x2f\xb9\xc4\x73\x8f\xf2\x3d\xd7\x36\xf4\x94\x29\x4a\ +\x3e\xd7\xac\x75\xd4\x21\x68\x3f\x36\xdd\xbb\x43\x13\xe3\x45\x1e\ +\x63\xf9\xb9\x1c\xea\x88\x5f\xe7\xc1\x2e\xd9\x79\x2a\xc7\x8a\xba\ +\xee\xd4\xd5\xf7\x3f\xdd\x87\xa1\xb6\x77\x9c\x72\x68\xf3\x3d\x4f\ +\xa8\x06\x98\xba\x6e\xcd\xd7\x3c\x42\x62\x90\xe3\xd5\xff\x28\x96\ +\x08\x6d\xe5\xaf\x2d\x9a\x5c\x4b\x1d\xd6\xf9\x98\x9b\x14\x4f\x3f\ +\x19\xf1\xf5\xa7\xd4\x54\x27\x49\x4b\x16\x6d\xf8\xb2\x79\xa8\x38\ +\x91\x65\xc7\xb0\x47\x65\x2a\x99\x82\xaa\xdf\x53\x97\xce\xa4\xbc\ +\x2c\x4c\xca\x36\xfb\x88\xfe\x04\xd5\x87\x2e\x91\x18\xd0\x7a\xf5\ +\x07\x73\x09\xfc\x3b\x67\xe5\x91\xd2\x85\xda\x6f\xdd\x6f\xf4\xaf\ +\x64\x16\xad\xbc\x70\xa5\x76\x86\x87\x82\xf4\x79\xf5\xf5\x2c\x0b\ +\x99\xfe\xa0\x3c\x21\xc7\x56\xf5\xc9\x58\x23\x97\xec\xf3\x78\x27\ +\x3f\xb2\x3f\x31\x87\x7e\x85\xa9\x8b\x78\x3e\x05\x47\x4e\x78\x72\ +\xa9\x9c\x2c\xc2\x69\xae\xec\x9c\xf8\xa5\x1e\xee\x07\x6d\xd4\xa5\ +\x65\xda\x8c\x87\x2d\xb4\xcb\x28\x7d\xf5\x07\xb2\x38\x95\x99\x36\ +\x5b\x2e\x1d\xe0\xbd\x76\xe8\x23\x81\xeb\x6b\x43\x4e\xf3\x08\xba\ +\x82\x20\x2c\x8a\x02\x46\x01\x60\x43\xf6\x61\x05\x62\x3a\x99\xd0\ +\xbf\x8b\xe7\xfe\xe2\x37\xd2\x8e\xfd\xa9\xb4\x77\x8e\x9f\x8e\x0f\ +\xce\xde\x1f\xbf\xf4\xf8\x9b\xe3\xbd\xf3\xaf\xeb\x5a\xf6\x74\x9c\ +\x1d\x3f\x1e\xc7\xf2\xc9\x27\x6f\x15\x73\xa4\x39\xd5\xe1\x46\xfc\ +\x46\x69\xf8\x8f\x04\x4d\xa6\x84\x77\xe3\x42\xf3\x11\x7e\x7f\x5b\ +\xcf\x9f\xfc\x43\xec\xf5\xab\xf1\xfa\xcd\xcb\xf1\xfc\xb5\xe6\x55\ +\x2f\x3e\x1d\x3f\xfa\xf4\xc5\xf8\xf4\xf5\xd5\x78\x73\xc9\xdc\x45\ +\x75\xd1\x83\x27\x55\x99\xd5\x13\xac\xf9\x5b\xcd\x2f\xf9\x26\x9a\ +\x7b\x4e\x80\x1b\x8f\xa1\x41\xfc\x4a\xc4\xda\x21\xa1\xcc\x3c\x32\ +\xfb\xe8\x39\x08\xff\xac\xc9\x1c\x6a\xf1\x5c\x20\x73\xb8\xfc\x23\ +\x2a\x89\x7d\x2c\xcd\x05\x3a\x47\xb4\xe1\x76\xa5\x7b\x59\xdb\x08\ +\xac\x1c\x7c\xb8\x01\xb5\x09\x9e\x31\xc3\x4d\x90\xaf\xd2\xbe\xbc\ +\x7d\x31\x3e\x7e\xfd\xbd\xb8\xcb\x7f\xfa\x1a\xee\xd7\x7b\x0f\x7b\ +\xd8\xc3\x1e\xf6\x10\xd8\xff\x86\xda\x1e\xf6\xb0\x87\x9f\x1d\xf4\ +\x44\x6e\x3d\x31\xdb\x9a\xa4\xfd\x74\xb0\x9b\x7e\xb7\xa8\x6d\xf9\ +\xfe\x84\xd0\x13\xc6\xbb\x9b\xf1\xe9\x9f\x7d\x3c\xbe\xff\x9f\xfd\ +\xc7\xe3\xbb\x4f\xc6\x38\x97\x1f\x2f\x6b\xfd\x6a\x74\xc3\x82\x1a\ +\x13\xfa\x31\x2e\xaf\x6f\xc6\xc5\xe5\xc6\x0b\x6c\xfd\x18\x41\x02\ +\x72\xf8\xa1\x85\x87\x1d\x1e\xa6\xc4\x37\xfa\xc1\x86\x87\x99\x29\ +\xc7\x3e\xa9\x67\xb4\xa4\x81\xaf\x94\x21\x02\xd5\x43\x13\x7c\x7f\ +\xd5\x56\x2f\x6a\x79\x62\xbf\x03\x4b\xc0\x36\x38\xb5\x76\xaa\xac\ +\x69\x2a\x9a\x07\x2e\xde\xb8\x40\xd1\x0b\x9d\x95\xb2\xae\x6e\xc6\ +\x46\x0f\x21\xb7\x6a\xeb\xdd\xf5\x26\xbf\xdb\xc6\x0b\x27\x39\x10\ +\x9e\xd2\x61\xa4\x54\x8a\xeb\xcb\x83\x71\x8b\xff\xab\x37\xe3\xe4\ +\xf5\xdd\x38\xba\xbc\x1e\x27\x6f\x6e\xc6\xd1\x15\x2f\x99\x2f\xf3\ +\x32\xff\x4c\x8f\x7d\x57\xf4\xaa\x7c\x09\xa5\x68\x31\x47\x7a\x08\ +\xda\xbc\xfe\x74\x8c\x1f\x3d\x1f\x37\x1f\x7e\x3a\xee\x3e\x7b\x33\ +\x6e\xde\x5c\x8f\x43\x5e\x52\x6f\xae\xc7\xc1\x0d\xff\xa5\x79\xa7\ +\x87\x2b\x95\xca\x7f\x18\xf2\x1a\x9d\xd5\x38\x15\xec\x1a\xab\x42\ +\x7e\x47\x50\x08\x59\x43\xda\xd6\xb0\xf0\xd6\x77\xfb\x79\x38\xe6\ +\xa5\xbe\x17\xc1\xa2\xa3\x8f\xfa\xa5\x08\x8b\x6e\x1c\x3b\x3d\xd5\ +\xa5\xef\x18\x08\x50\x61\x7c\x65\x47\x67\x3f\xe5\x21\xa7\xfd\x93\ +\x7b\x2e\x44\xe0\x5f\x76\x3f\x0c\x6b\xa3\x3f\xe2\x4b\xdd\x84\xe4\ +\xf1\xc1\x4a\x5e\xb0\x5f\x00\x74\xbe\xe4\x81\x97\x9e\xbe\xed\xb2\ +\x40\x7c\xab\xfe\x96\xed\x9f\x71\xe7\xc5\x0f\x53\xf4\xd8\x93\xd7\ +\xe5\x53\x9f\x2a\x33\x65\x55\x4e\x74\xca\x19\x1e\x8a\xaf\x7c\x0a\ +\x23\xab\x4d\xc8\xe2\x69\x97\x17\x8c\x24\xbb\x8d\x20\xf5\x21\x8f\ +\xea\xea\x4f\x34\xb1\xe9\x61\x7a\x2e\x42\x3a\x4f\x95\x53\x68\x1d\ +\xe8\x3e\x09\xba\xaf\xcc\xa3\x8e\x0e\x16\x05\xa2\x69\xc9\xc5\xc4\ +\x07\xd1\x0e\x8b\x9f\xf5\x45\xc3\x47\x6f\x91\xfa\xa3\x31\x45\xbd\ +\x50\x30\xe3\x5f\x7b\xfe\x78\x13\xcb\xb9\xb9\x3a\x27\xed\xcb\x9e\ +\xb8\xca\xd1\xed\x99\x7d\x6e\x27\xf1\xd6\xad\xec\xee\x33\x28\x56\ +\xf1\x55\x97\xb6\x3b\x6a\x1d\xcb\x58\xe9\xfa\x5a\xd6\x66\xdf\xc4\ +\xda\x19\x3d\x54\x32\x63\xa9\x6d\x5d\x17\x19\x32\x1e\x38\x4e\x50\ +\xf9\x78\xec\x5b\xd6\xd8\x35\xaf\xe3\x26\xda\x0b\x5c\x6e\x03\xe3\ +\x49\x3e\x79\xb1\x43\x23\x7a\x7c\xd5\x78\xa0\x61\x94\xd1\x75\xe4\ +\xed\x71\x8d\xed\x7c\x95\x25\x7c\x51\xe7\x13\x3a\x26\xfa\xae\x6b\ +\x2f\x7a\xb3\xfe\x7a\x40\x77\xab\xaf\xb9\x0e\xf2\xc2\xde\x2f\xe9\ +\xf5\xc7\xe5\x61\x1e\x01\xdc\x09\x4d\x98\x81\xb1\xe3\x97\x07\x25\ +\x4d\x20\xd0\x28\x9e\x4f\x75\xa8\x68\xd3\x63\xe5\x17\xf2\x55\x41\ +\xfc\x17\xf8\x89\x2e\x32\x3e\xc6\xc2\x13\x5d\x87\x0e\x75\x0d\x3a\ +\xba\x3e\x1a\xa7\x37\x87\xe3\xe4\xfa\x78\x9c\x0b\x69\xde\x21\xd7\ +\x34\x5d\xb7\xce\xae\x0f\xc6\x99\xae\xa3\x47\x97\x6f\xc6\xd9\x73\ +\xdd\x3b\x3e\x7a\x31\x36\x7f\xfe\xc9\x78\xf1\x07\x9f\x8c\xd7\xbf\ +\xf7\x6a\x3c\xff\xbd\xe7\xe3\xb3\x7f\xf6\xf1\x78\xf5\xaf\x5e\x8d\ +\x8b\x1f\x5c\x8e\x37\xba\x04\x6e\x5e\x1c\x8f\xdb\xab\xb3\x71\xc8\ +\x0f\x4a\x72\x8d\x73\xb5\x52\xe7\x6a\x66\xea\x6f\x7d\x84\x5b\xce\ +\xbd\xb3\x93\x71\x7c\xae\xf3\x88\xaf\xf6\xd4\x86\x5f\x76\xf6\xfa\ +\x5c\xd8\xf6\xe8\xc4\x05\xe2\x17\x51\x99\x91\xb5\xeb\x63\xc4\x22\ +\x6c\x94\x8a\xc4\x91\x32\xeb\x5e\xe5\x0a\x1b\x44\xf9\x43\x54\x5f\ +\x26\x23\x18\x42\x78\x7b\x06\xca\x06\xc0\x92\x58\xc1\xed\xc7\x98\ +\x38\x3b\x52\x7b\x4f\x4f\xc6\xe3\xc7\xba\x51\x33\xde\x04\x27\xca\ +\xfd\x87\x3f\x7a\x3d\xde\x3c\x7d\x77\x7c\xf7\x1f\xfe\x7b\xe3\xe9\ +\xd9\xa9\xfc\xe9\xbb\x55\x3e\x80\x44\xbb\xb0\xab\x7a\xc0\xc5\xd0\ +\xfa\x5d\xba\x0b\xdd\xcc\x5f\x38\xa8\xde\xae\xb6\x1f\xea\x64\xfd\ +\x17\x7f\xf0\x07\xe3\xbf\xf9\xfd\xff\xd3\x78\xf7\x3b\x9c\xcf\xdc\ +\x53\xe3\xe3\x6b\x8f\x4f\xb6\x96\x39\xc6\x70\xd1\xe5\x8d\x3c\x3c\ +\x79\xee\x7c\x98\x7d\x5d\x12\x72\x9e\xe1\x0a\x3f\x91\x21\x39\x79\ +\x21\xd7\x17\xd2\x19\xb6\xeb\x15\xc2\x9e\x73\x85\x05\x5a\xcd\xef\ +\x74\x1d\xef\xf3\xbb\x6d\x41\x64\x20\x51\x81\xd2\x59\x45\x6e\x6d\ +\x2a\x9f\xcb\xa5\xef\xb3\xd6\x94\x97\x2b\x51\x67\xb1\xfe\x78\xb1\ +\xfb\x92\x77\xc1\x9a\x3b\x9d\x29\xe0\x54\xa7\xd0\x63\xdd\x0b\xf9\ +\x0d\xb5\x77\x1e\x9f\x8f\x77\xce\x1f\x8f\x27\x8f\x1e\x8f\xb3\x93\ +\x73\xdd\x2e\xcf\xfd\x95\x8e\xfc\x16\xed\x11\x9f\x88\x3f\x38\xd3\ +\xa5\x55\x78\xfc\x58\xfa\x77\xc6\xe9\xe9\x07\xe3\xec\xf4\x1b\xe3\ +\xf4\xec\xeb\xe6\x4f\xcf\xbe\x36\x4e\x4e\xbe\x36\xce\xce\xde\x13\ +\x7d\xa2\x3a\x1d\xfa\x53\x1a\x77\xbc\x80\xd6\xc5\x93\xfa\xa4\x77\ +\x53\xbf\x2d\x68\xc5\xec\xb4\x6e\xb7\x54\x7d\x72\xcb\x06\x97\xe3\ +\x94\x90\x45\xc6\x5f\x76\xb1\x46\x2c\xf8\xb7\x5c\xba\x2d\x5e\x11\ +\x06\x29\xdc\x6d\xd2\x70\xfc\xd8\x3c\x56\xe0\xb1\x71\x6f\xb0\xac\ +\x6b\x2e\xf3\x27\xb5\x22\x63\x81\xfb\x0c\xe1\x68\x4a\x57\xb1\x1e\ +\x5b\xa6\xe4\xb0\x36\x54\xe8\xdc\x2e\x45\x1b\xd7\xb1\x8a\xf5\x66\ +\x9f\x1a\x4b\x8c\x51\xec\x2a\x33\x0b\x18\x29\xdb\x8b\x23\x5e\x58\ +\x61\x21\x86\x7c\xf0\xd1\xd9\x47\x76\x8d\x86\xd2\x41\x53\x5a\x78\ +\xca\x00\x63\x47\x9f\x32\xcb\x4f\xa8\x5d\x78\x95\xc5\xb8\x71\xfd\ +\x68\x77\xe9\x38\x8a\xee\x13\xba\x0c\x5b\xe9\xd7\xf1\xa0\x75\xb5\ +\x77\x5f\xb0\x61\x37\x6d\x1d\x31\xb6\xa8\x7e\x64\xac\x98\xca\x01\ +\xf4\x27\xdc\x7c\x9b\x84\x82\xda\x0c\x35\xf9\xce\x1e\xbf\x48\xde\ +\x1c\x8f\xb6\xc6\x06\xee\x70\x3e\xb7\x91\xa1\xe5\xef\x38\x04\xfc\ +\x69\x9f\xce\x73\xce\x63\xfa\x5f\xf5\x64\x7c\x88\x35\xe5\xda\x91\ +\xb1\x61\x77\xe7\x23\xd6\x3a\x73\xda\xcb\x27\xf5\xc4\x1e\x47\xb7\ +\xac\xf8\xf4\x59\xf9\xb2\xf1\x40\x62\x13\xbb\xd8\xbc\x49\x4c\x5f\ +\xe7\x58\xa5\x7f\x2a\x0a\x23\x12\x7d\xea\x9c\x12\x6d\x17\xba\xce\ +\xa0\xc6\x80\xbd\x4b\xc7\xd8\xd1\x46\x4c\xec\xe8\xb3\x18\xe7\x3a\ +\x29\x49\xc6\x10\x5e\x4b\x79\xf1\x47\x64\xa7\x9e\xeb\x7e\xa7\xd0\ +\x6a\x3f\x65\x00\xae\x1b\xd4\x36\xf2\x95\xb6\x62\xf1\x82\xf3\xe5\ +\xce\xb6\x80\x8f\x46\x0e\x8d\x88\xca\x58\xd9\xc8\x98\x52\xd6\x20\ +\x4d\x1a\x2d\x87\x1c\xcb\x64\x5e\xc0\xe9\xa4\xc2\x8f\x8d\x73\xe7\ +\xf8\xf8\x74\x3c\xd2\xf5\xe9\xfd\x93\x67\xfe\x14\xee\xa3\xa3\xc7\ +\xe3\xfd\x73\x5d\xc3\xce\x9f\x69\x0e\xa8\xe7\x24\xb5\x35\x83\xad\ +\x90\x79\x43\xf3\xce\xc8\x44\x50\xcf\x9b\x2c\xa8\xdd\xea\x19\xf5\ +\xee\x6a\xdc\xdc\x5c\xea\xb9\xfc\xcd\x78\x7d\xf9\x6a\xbc\xb8\x78\ +\x3d\x3e\xd2\x73\xe4\x87\x2f\xde\x8c\x4f\x5f\x6f\x74\xbd\xbd\x1b\ +\x7a\x64\xd7\x7c\x91\x7e\x53\x7c\x37\x8c\x54\xae\x55\xb1\x05\x8c\ +\x23\xa6\xb6\xf1\x5a\xb5\xc7\xe5\xaf\x64\xc0\xba\x87\xc1\x9e\x6e\ +\x37\xa4\xb2\x89\xfa\xb8\xd7\xf8\x2c\x65\x75\x54\x44\xea\x87\xe8\ +\xaa\x46\xb3\x03\xa5\xc5\x4f\x4e\x96\x4a\xd5\x29\x0c\x55\xb6\x01\ +\x7b\x17\x57\x0c\x7b\xee\x0a\x34\x21\x39\xb4\x97\xf2\xe2\xea\x52\ +\xc7\xe7\x37\xc7\x6f\x7d\xf7\xef\x55\x98\x94\x15\xbb\xc0\x3d\xc5\ +\x1e\x7e\x4e\x61\x7f\x24\xf7\xb0\x87\xaf\x0e\xf6\x0b\x6a\x7b\xd8\ +\xc3\x1e\x7e\xb6\xc0\x5d\xdb\xb3\xb6\x9f\x0d\xac\x27\x05\x6b\xbe\ +\x8b\x5c\x17\x6f\x7b\x39\x2d\xf3\xe1\xcd\xf8\xc3\xff\xea\xff\x37\ +\x3e\xfd\x2f\xff\x6f\xe3\x3b\x8f\x98\xd4\x6f\xfc\x19\x03\x26\x9c\ +\xfe\x3a\x89\xeb\x6b\xf3\x57\x37\xb7\x5e\x50\xe3\xeb\xbb\xf2\xf8\ +\x22\x60\xe2\xea\x67\x24\x4d\x96\x41\xe5\xe6\x61\xb0\x1f\xea\xfc\ +\x43\xf5\xb6\xe9\xe1\xc8\x14\x5b\x4d\xaa\x41\xbf\x48\xee\x0a\x85\ +\xa4\x5a\xda\xc3\xf0\x92\xd2\x8b\x69\x7c\x32\xa0\x8c\xbb\x93\xfb\ +\x15\x6b\x40\xee\x94\xe4\xee\xc9\xb5\xca\x03\x29\x9b\x37\x53\xa6\ +\xa0\x41\x39\x37\x2a\xe3\x42\x6d\xbd\xe0\x37\x7e\x6e\xc6\xb8\x56\ +\x81\x37\x99\x74\x1b\xec\x9a\x87\xad\x44\xf1\x39\x89\xbb\xb1\xb9\ +\x3c\x1a\x9b\xcf\xe4\xfb\xc9\xcd\x38\xfe\x44\x0f\x84\x1f\x6f\xc6\ +\xf5\x8f\x84\x9f\x5c\x8e\xc3\x4b\x16\x52\x4e\xc6\xed\xd1\xa9\xda\ +\x72\xa8\x7e\xbc\x1d\x07\xd7\x63\x5c\x1d\x5c\x8c\xcd\x0f\x9f\x8f\ +\x9b\xbf\xf8\x74\xdc\xfe\xf1\xf3\xf1\xe2\xfb\xaf\xc7\x9b\x0f\x55\ +\xee\x47\x32\x3e\xbf\x1d\x87\xaf\x8f\xfc\xb2\xeb\x76\xa3\xd8\x3b\ +\x3d\x88\xde\xdd\xe6\xbf\x07\x79\x3f\xe4\xfa\xcc\x4a\x58\x81\xca\ +\xcf\x4a\x6e\x6f\x4c\x20\x0f\x82\x4d\x01\x3f\xa2\xe2\xe3\xe3\xa1\ +\x27\x27\x3e\x11\xc3\x82\x1a\x0b\x01\xbc\x94\x96\x3e\x36\x8e\x4b\ +\xa8\x8c\x39\x4e\x3c\x69\x49\xf6\xc3\x3b\xfd\x86\xdd\x7c\x62\x8c\ +\x92\x73\xac\x79\x30\xae\xbc\xc4\x29\x3e\x7a\x62\x6a\xa1\x80\x2a\ +\x11\x5f\xf9\xb2\x78\x80\x2c\xe2\x97\x82\x4b\x5e\xc7\xc9\xc7\xe5\ +\xe6\xed\x9d\xed\x2c\x72\x6c\x95\x6f\x9f\x85\xa6\x1e\x4b\xac\xdb\ +\x0c\x75\xdb\xca\xa7\xca\x8f\x5f\x64\x31\xd4\x64\xa5\x47\x27\xde\ +\xb6\xa2\xed\xeb\x7c\x9d\x77\xb1\xb5\x7d\xab\x0c\xd5\xd7\x2f\x12\ +\xfc\xbb\x7a\x79\x80\x6e\x7f\xed\x5d\xa6\x14\x2b\xec\x3e\x12\x35\ +\xac\xf5\xb0\x79\x00\xed\xb8\xf8\x85\xb7\xb6\x74\x2e\xc3\x7a\x6b\ +\x51\x94\xbd\xfd\x51\x45\xb7\x96\x91\xec\xb4\xa8\x05\x1a\x6f\x2a\ +\x74\xf9\x14\xa7\x47\x9f\x86\x61\xac\xd3\x5f\xbb\x3e\x86\x8c\x1f\ +\xff\xb6\x1a\x7a\xf2\x76\xff\x17\x9d\x7d\x27\x77\xf7\x09\x3a\xfb\ +\x39\x51\xa5\x93\x0c\xd7\xbe\xd8\xa0\xca\x8b\xc7\xa4\xd3\x46\x9e\ +\x2a\x17\x1b\x3a\xf3\x64\x8b\xcc\x98\x64\x3c\x2d\x75\xa9\x71\xea\ +\xf1\xda\x63\x67\x19\xc3\xe8\x4d\xf1\xa5\xb2\xc4\xdb\x27\xe5\xe7\ +\xdc\xc0\x96\xb2\x6c\xc3\xdf\xe5\x21\xa7\x1c\xed\xcc\x6b\x57\x31\ +\x41\xf4\x78\x43\xd9\xc4\xc4\xd7\xdd\x5c\xfd\xde\x7d\x2e\xe4\x5a\ +\x60\x3f\x5c\xb5\xf3\x02\x78\x04\x87\x51\x0f\xb9\x88\x21\xca\xc1\ +\xd1\x4b\x85\x1e\x9a\x97\x7c\x54\x47\xf9\xca\xe6\xff\x8c\x66\x81\ +\x4c\x78\x78\xa3\x8c\x2c\xa2\xdd\xa8\x1f\x74\x79\x3a\xba\x38\x18\ +\xc7\xaf\xe5\xf7\x62\x8c\xe3\x97\xb2\x7d\x76\x3d\x0e\x9e\xeb\x8e\ +\xf1\x29\x8b\x67\x57\xba\xfe\xbd\x19\x77\xdf\x7b\xa1\xeb\x1a\xbf\ +\x8d\xf6\xf1\xb8\xfc\xa7\x9f\x8c\xd7\xbf\xfb\xc9\xb8\xfc\xbd\xcf\ +\xc6\x9b\xdf\xff\x64\x5c\xfd\xd1\xab\x71\xfb\xa3\x9b\x71\xf7\x42\ +\xf7\x17\xe5\x1a\x97\xc7\xba\xe5\xa8\x7f\x87\x50\x55\x51\xef\x08\ +\xa8\x6b\xda\x97\x1a\xf5\x3e\x75\xb5\xa4\x7e\xbc\xd5\xb5\xeb\xf8\ +\xf1\xf1\x38\xe2\xd3\xc0\xed\xb1\x72\x31\x29\x3a\x15\x33\xc7\xdb\ +\xc1\x31\xb8\x75\x88\x14\xee\x57\x0c\x7d\x4d\x43\x27\xec\x61\xaf\ +\x4b\xbb\xfa\x89\x63\xa4\x40\x62\x5d\x4c\x8e\x99\x13\xb9\x31\xc4\ +\x20\x6f\x43\x54\x3b\xfb\x8e\xf3\x3e\xdb\xa9\xc6\x22\x0b\x6a\x4f\ +\xce\xcf\xbd\x20\xcf\x3d\x8b\x1e\xfb\x83\x0f\x5f\x8c\xd7\x87\xa7\ +\xe3\xd7\xfe\xf1\x3f\x1e\xcf\x1e\x9f\xe7\x3e\xa3\x6d\x0b\xba\xe0\ +\x54\xa3\x53\x6f\xc3\x97\xd5\x01\x3f\xae\xfe\xaf\x39\xb8\xd9\xda\ +\xe5\x8c\x3b\x19\xff\xc9\x7f\xfe\xbf\x1d\x1f\x5f\xff\xde\x78\xf4\ +\x0e\x9f\xd4\xe0\xb8\xe3\x11\x1a\x1e\xe0\x5a\xc1\xdd\x99\xf1\xeb\ +\x03\xbe\xea\xbf\xf6\xe5\xdc\xe4\x3a\x01\x15\x72\xad\x10\xed\x3c\ +\xb6\xa3\xd3\xc6\x27\x46\x5a\x97\xdd\x24\x13\xf0\xeb\xb2\xae\x6f\ +\x34\xd7\xd3\x75\x7c\x9e\x33\xd3\xb6\x0e\x6a\x7e\x3a\x25\xa9\x44\ +\xca\x72\x9d\x38\x1d\xf0\x93\xdc\xde\xd8\xd0\x02\x8c\xc6\xd7\x17\ +\x63\xbc\x61\xa1\x5d\xd7\x16\xfe\x49\x88\x05\xb5\x27\x67\x1a\xcb\ +\xba\x0f\x3e\xd2\x58\x7e\x72\x7a\x3e\x4e\xf9\x2d\x1b\xae\xa3\xdc\ +\x27\x35\x6f\xe2\x1a\xac\x1b\xa5\xe6\x40\xe7\xe3\xe8\xf8\xc9\x38\ +\x39\xfe\xda\x38\x3d\x67\xe1\xec\xeb\xe3\xe4\xf4\xbd\x71\x7c\xfc\ +\xbe\xe9\xe9\xe9\xbb\xe3\xfc\xbc\xe9\x33\x4d\x1f\x1e\xf9\x5a\xe8\ +\xaf\xc5\x55\xe3\x8e\x0e\x74\xbd\xa9\x2e\xde\x6e\xdd\xc2\xad\xd9\ +\x06\x8e\x65\xe6\x7b\xd5\xa7\xa6\x96\x76\x64\x71\xda\x71\x2d\x47\ +\x88\x47\x94\xd1\x71\x84\xeb\xd8\x24\xca\xbc\xaf\x75\x1c\x5b\x8e\ +\x1f\xed\x96\x3e\x3c\xf7\x1e\x62\x89\xc9\xa7\x77\x88\x8a\x5d\x36\ +\x62\xb1\x77\x4e\x1f\x77\x49\xf0\xc4\x38\x57\xd9\x90\xc5\x73\xa0\ +\xe6\x56\x79\xa5\xb4\xac\x00\xe5\x8b\xbf\xbd\x6d\xd7\x35\x7f\x64\ +\xc1\xcc\xfc\x61\x2f\x9e\x81\xf5\xc9\xa1\xd6\x99\x26\x26\x63\xb5\ +\x78\xd7\x35\xf1\xae\x0b\xf5\x30\xd5\xe6\xfa\x44\x4f\xdb\x5c\x07\ +\x21\x54\x81\x6a\x73\xc7\x55\xbe\xd4\xcc\xf1\xf8\x27\x2e\xfe\x4b\ +\x3b\x25\xea\x80\xcd\xb6\xb9\xac\x50\xc7\xb4\x0e\x5f\x95\x21\x66\ +\xda\x24\x15\x5f\x79\xe4\x63\xbb\x63\x3a\x0e\xd9\xc6\xe2\x25\x89\ +\x6a\xe7\x3f\xf3\x25\xb3\x37\x58\x16\xd4\xe9\x83\xa5\xcf\x24\x7b\ +\x56\x93\xe0\x39\x7e\x4c\x31\xd4\x35\xf6\x63\x9f\xf3\x1d\x09\xa5\ +\xe4\xa8\x2d\x9b\xb5\xcd\xaa\x99\x27\x3c\xed\x60\x13\xf5\x20\x8e\ +\xd4\x3a\xed\xcc\xa5\xb0\x6a\xa3\x95\xd5\x6e\x92\xcd\x05\x45\x64\ +\x25\x15\xc5\x2b\x91\xd8\x8a\x73\x3c\x5c\xec\x73\x93\xde\x0b\x69\ +\x35\x5e\xe8\x5b\x6f\xf4\xbd\x72\xf3\x95\xa0\x8c\x83\x7c\x2a\x4e\ +\x76\xfc\x2b\x2e\xf9\x24\xbb\xb8\xf0\x2e\x8d\x6a\x51\xae\x3a\x11\ +\x9b\x7f\x5b\xda\x3e\x45\xf0\xb5\x3f\xb2\x36\x87\x99\x2b\x07\xc5\ +\x93\xc0\xf7\xe9\x3e\x16\x99\x1f\x71\x25\xc6\x05\x27\xf3\x16\xc4\ +\xcb\x37\x7a\x40\x7c\x0c\x32\xe9\xfe\xeb\x0b\x8b\xb5\xec\xcc\x01\ +\xf6\xa9\x78\x3e\x6d\x79\x7e\xf4\xce\x78\x7a\xf0\xce\x78\xf7\xf4\ +\xe9\x78\x9f\x7f\x1e\x38\xe1\xeb\x1c\xcf\xfc\x55\xb6\xba\xa9\xc7\ +\xd7\xdf\x63\xe9\x10\x21\x79\x4a\x66\x61\xcd\xc0\x27\xd4\xf8\xce\ +\xef\x2b\xd5\xe9\x52\xd7\xef\x57\x5e\x48\x7b\xf9\xfa\xc5\xf8\xe4\ +\xf5\xeb\xf1\xc9\xab\x4b\xd1\x9b\xf1\xfc\xe2\x76\x5c\x5e\x1f\x8c\ +\x2b\x55\x8f\x69\x3a\x5f\xcf\x9d\x85\x48\x41\xb5\x19\xc9\x5d\x80\ +\x4e\x02\x2d\xa7\x3f\x8f\x78\x0e\xec\xf6\xdd\x03\x3b\x06\xab\x9d\ +\x6f\x83\xdc\xd7\x92\x8b\x2d\x3a\xa6\x4f\x39\xb6\x81\xa6\x01\x32\ +\x3a\x6b\xa5\xc6\x3a\x75\x05\x8b\xac\x3d\x7f\x75\xf3\xf2\x9e\xdd\ +\x76\xca\x02\x29\x5d\x9f\x05\xf8\x0a\xcd\x0c\x03\x05\xc9\xc6\x5b\ +\x0d\xfe\x49\xf0\x47\x3f\x7a\x33\xfe\xf1\xbf\xf9\x4f\x92\x8b\x7f\ +\x76\xd9\x4a\xfa\x60\xf2\x3d\xfc\x9c\xc2\xfe\x68\xee\x61\x0f\x5f\ +\x1d\xec\x17\xd4\xf6\xb0\x87\x3d\xfc\x5c\x02\x93\x01\xf0\xad\x73\ +\xc8\x15\xb4\xbd\x27\xb6\x80\x39\xed\x36\x77\x9b\xf1\x27\xff\xc5\ +\xff\x6b\x6c\x7e\xf7\xbf\x1c\x5f\x3f\x3f\x1d\x27\x9a\x55\xf7\x57\ +\x3b\xf2\x09\x35\x16\xd5\xf8\xfd\xb4\x4b\xf1\x97\xd7\x2c\xf2\xe4\ +\xbf\xa6\x1d\x2e\x86\xb9\x71\x1e\xe4\xf3\x42\x27\x0f\xe6\xd2\x99\ +\x97\x9e\x09\xb4\x68\x3f\xec\xfb\x45\x00\xfa\xc6\xca\xb5\xaa\x5a\ +\x81\x5a\xb6\xd1\x5e\x4f\x04\x2c\x26\xf9\xf9\x62\xc2\xe2\xcc\xef\ +\xff\x4c\x69\x27\x47\x1e\x6a\x54\x86\x85\xd4\x43\x4f\x6f\x2e\xdf\ +\x8d\x28\x1b\xa9\xef\xd4\xb6\x3b\x16\xd3\x2e\xaf\xc7\xdd\xd5\xc6\ +\x32\x0b\x6a\xb6\x11\x2e\x04\x48\x79\xcb\x4e\x4a\xe6\xe2\x7c\x62\ +\xe4\xe6\xfa\x70\x6c\x5e\x1f\x8e\x37\x1f\x6d\xc6\xeb\x0f\xdf\x8c\ +\xd7\xcf\x5f\x8f\xbb\x4f\xd5\x6f\x7c\xe2\x4d\xcf\x3f\x8a\x18\x77\ +\x8f\xf4\xdc\xa4\x94\x87\x77\xd7\xe3\xfa\x7b\xaf\xc6\xd5\x1f\x7e\ +\x34\xde\xfc\xe1\x27\xe3\xc5\x9f\x3e\x1f\x6f\x7e\xf0\x66\x5c\xff\ +\xf0\x6e\xdc\x3e\x57\xff\xbc\x91\xef\xe5\xcd\xb8\x55\x9c\x34\xea\ +\x83\x93\x71\x78\xab\x07\xce\xbb\x63\xd2\xa4\x1f\x52\x7c\x1e\x08\ +\x22\xa6\x62\xf9\x8b\x8c\x11\x67\xfa\x58\xbc\x37\xda\x8b\xcc\x4b\ +\x61\xbe\x9e\x8e\xaf\xc4\x63\x41\x0d\xde\x2f\xaf\xf4\x70\xc8\xf1\ +\x5b\xe1\x5a\xf6\xb1\x45\x57\x7d\xd9\x0b\x54\xf1\xa1\x5f\x45\xa9\ +\x07\x0f\xd1\x7e\xf1\xac\x18\x3d\x4c\xfa\x53\x59\xd8\x78\x5b\xa0\ +\x58\xbf\xf8\x07\xa9\xa9\xe3\xa9\x6b\x72\x38\x57\xf3\xa6\x8a\xf1\ +\x5b\x86\x60\xc6\x55\xf4\xf8\x61\x6b\xde\xd4\x76\x95\x0d\x75\x5d\ +\xe4\x53\xed\x9b\x2f\x27\x88\xab\x72\xc3\x63\x4f\x79\x8c\x8f\xbc\ +\xd0\x92\xce\x71\xe8\x7b\xfc\x62\xd3\x23\x16\x65\x15\xbf\x4d\x53\ +\x1f\xe7\x73\x5b\xa5\xe3\x45\x00\xb2\x78\xcb\xf0\x27\xea\x8f\x53\ +\x3d\x44\x13\xb7\xb2\x81\x59\x6c\x14\xd2\x37\xa2\xcd\xb6\xdd\x60\ +\x7d\xe5\xb7\xde\xca\xd8\xfd\x57\x71\xa5\xc3\xc7\xc3\xa1\x7d\x8b\ +\xcf\x99\x63\xef\x28\x41\xfc\x95\x9a\x71\xd5\xb1\xd3\x2c\xa5\xf5\ +\x19\xf8\xa6\xce\x8b\xca\x7e\xf8\xe3\xbb\x9c\xe3\xd6\x55\xff\xe0\ +\x39\x75\xc5\xe7\x85\x9b\x4d\xa2\xd5\xaf\xad\xe8\xd1\x5d\x7d\x34\ +\x63\x31\xcd\x9c\x71\x61\x97\x58\xd8\xc5\x3f\x3a\x35\xa8\x8e\x87\ +\x5f\xda\xf5\x98\xf1\xb1\xc6\x37\xb2\x73\xb2\x58\x62\x5b\xc6\x6f\ +\x68\xc6\x8e\xc7\xb5\xf3\x32\xae\x23\x77\xfe\x89\xe4\x69\xde\x2f\ +\xd2\x53\xae\xd1\xe3\x0a\xda\x31\xf0\xb2\xbb\xfa\x19\xaf\xc9\x17\ +\x1f\xc7\x70\xed\xd3\xe6\x7e\x37\xe4\x20\xa0\x93\x35\x3d\x54\xfe\ +\x84\x18\x8a\x72\x6c\x9a\xef\x98\x0a\x9f\xd7\x53\x97\x17\x8b\x0d\ +\x7e\x77\xb3\x91\x7c\x23\xcd\x8d\xea\xc8\xa7\x70\xc5\xdf\x5d\xaa\ +\x9e\x97\x6a\xff\x85\xf8\x37\xb2\xbd\xe6\x6b\x6f\x37\xe3\xf6\x95\ +\xae\xcf\x9f\xde\x8c\x9b\x8f\x6e\xc6\xf5\x87\x17\xe3\x8a\x6b\xd9\ +\x1f\xbd\x1a\xaf\xfe\xe0\xf9\x78\xf5\xfb\xc2\x3f\x79\x35\x2e\xff\ +\xe2\x62\x5c\xfe\x68\x33\xae\x3e\x1a\xe3\xfa\x33\x3e\x8d\x76\xa2\ +\x32\x58\x10\x52\x5f\x53\x49\x95\x49\xf9\xf9\x7a\x47\x09\x5c\xaf\ +\x84\x54\xc5\xfa\x54\x6d\xf2\xee\x17\x5e\x80\xb0\xa0\xf6\xe8\x78\ +\x1c\x9d\x1e\xc9\x5e\x7d\x44\x38\x2e\x16\x1e\x02\x67\x58\xe0\x21\ +\x3f\xb9\xa4\x1c\x4b\xa2\x93\xd1\x31\xe5\x7a\x96\xe3\xec\x7e\xd7\ +\x9f\xcf\x23\x9d\x0e\x1c\xab\x7c\xad\x91\xd4\xd4\x63\x9d\xdb\x07\ +\x63\xa7\xb0\x4e\x2b\xa8\x23\xb0\xa5\xcb\xdd\x47\x20\x1d\xd7\x91\ +\x13\x8d\x11\x16\x1d\xce\xcf\x1f\xf9\x6b\x64\x7d\x0e\xea\xfc\xf9\ +\xde\x27\xaf\xc7\xf3\xeb\x83\xf1\xfe\x3f\xfc\x9d\xf1\x8d\xf7\xbe\ +\xee\xa8\x99\xaf\xc1\x6d\x88\x65\x9a\x4a\x9c\xb0\x13\x62\xd8\xd5\ +\x21\x3f\xe4\x07\xbc\x4d\xff\xd7\x1d\xd4\x8f\x6e\xba\x0e\x3a\xf3\ +\x01\x8e\xd5\xff\xfe\xff\xfa\xbf\x1e\x87\xcf\x5e\x8f\x93\x27\xb7\ +\xba\xdc\xe8\xdc\xe1\xf8\xeb\x2f\x8b\x03\xf0\x8c\x1f\xc5\xf8\x5a\ +\xe0\x60\x76\x0b\xc1\x85\x4d\x0c\x3c\xd7\x06\xff\xb3\x52\xf1\xb9\ +\x3c\x88\xfa\xf2\xc2\xb5\x43\x97\x35\x5f\x6f\x3a\x45\x98\xf0\x01\ +\xf2\xf5\xd8\x60\x6e\x71\x75\xc9\x9e\x49\x16\x5a\x00\xef\x8e\x58\ +\x47\xee\x40\x15\x42\x4b\x74\x49\xb3\x88\x62\x52\x8c\x42\xdf\x13\ +\x04\x37\x1a\xa6\x2f\x2f\x0e\xc7\xb5\x26\x43\xfe\xf4\x8d\xe4\x93\ +\x93\x83\x71\x6e\x3c\x1a\xa7\xd2\x9d\x1e\x9e\x8c\x13\x9d\xc7\x5b\ +\x9f\x04\x3e\x38\x11\x7d\xe4\x85\xb2\x47\x2c\xa4\x9d\x7f\x30\xce\ +\x4e\xde\x1f\x27\x47\x4f\x74\x4b\x7f\x3c\x8e\x8f\xce\xc6\xa9\xf0\ +\xe4\xe8\x91\xf0\xb1\x72\x3e\x15\x9e\x8f\xd3\xe3\x47\xb2\xf3\xc9\ +\xd9\x43\xf9\xa8\x82\xb7\xfc\x63\x45\x7e\x7b\xd0\x1d\xb0\x05\xa9\ +\xe3\xfd\x93\xa1\x5a\x52\x6d\x30\xd1\x2e\x6d\x83\xc5\x66\x96\x43\ +\x19\x19\xde\x0a\x8e\x4f\xec\xd6\xd9\x16\x39\x8b\x46\xa5\x53\x1b\ +\x7d\x2c\xa5\x30\x45\x66\x6b\x5e\xe7\x36\x5b\xe6\x2e\x6d\xa3\x5f\ +\xc2\x93\x83\x36\x42\x5b\xef\x7b\x5e\xe7\x6b\x9d\x50\x7b\xeb\x2c\ +\x4b\xa2\x12\xf8\x2e\x3e\x6d\xe7\x1e\x27\xa4\xdc\xf9\x09\x34\xca\ +\x8d\xec\xaf\xf7\x9b\xfa\x5e\x58\xc3\x9f\x45\x37\x7c\x84\x7c\x55\ +\x9f\xea\xcb\x08\x49\x1c\x58\x65\xba\x7c\xb6\x95\xbc\x53\x3e\xb6\ +\xee\x9f\xb6\x27\x0f\x7d\x27\xb9\xe3\xb4\x21\x53\xbf\x40\xe5\xec\ +\x78\xf4\x2c\x0a\xd1\x27\x25\xfb\xfe\xeb\x7a\x41\x33\x86\x53\x8f\ +\xc8\x33\xbe\x38\x39\x86\xfa\xfa\x1d\xdd\xac\xbb\x35\xe2\x9c\xbf\ +\x6d\xd1\x9b\xda\xa1\xbd\x0a\x7c\x63\x5a\xfe\x29\x11\x2b\xa5\x85\ +\x6a\x93\xc1\x36\x29\x72\x7c\x60\xc9\x15\x8c\x49\x39\x52\xa0\x40\ +\xd7\x1b\xf3\x08\x85\x5e\xe4\xa9\x18\x3c\xb4\x4b\x79\xce\x54\xfe\ +\xfc\xad\xda\xc9\xde\xfe\x6b\x9a\x3c\xf9\x8b\x3e\x7e\xe9\x73\xfb\ +\xd5\x71\xf1\xa7\xe8\x25\xfb\x58\x94\xcd\xe3\xa6\xc7\x2f\x9c\xc7\ +\x47\x8d\x19\x8f\xa1\xe4\xc9\xb1\xa8\xfc\x1e\xf7\x8a\xa7\x89\x3e\ +\xfe\xd8\x56\x65\x69\x03\x50\xfb\x54\xf6\xa2\x87\xca\x52\x23\xed\ +\x2b\x74\xad\xcd\xcb\x4c\x5c\x07\x08\xd6\xf7\xd4\xe2\xe8\xc1\xe2\ +\xd2\x57\x0b\x2c\x73\x8a\x09\xe2\xf1\x77\x9e\x95\xf3\x3a\x8c\xa2\ +\x5c\x07\xcd\x13\xb8\x1e\x3d\x3b\x7b\x6f\x7c\xf0\xf4\x7c\xbc\xff\ +\xe8\x54\xd7\x2f\xb5\xff\x56\x6d\xa7\x47\xdc\xf6\xd3\xc1\xef\x52\ +\xa7\x10\x90\x8e\x04\xab\x50\x12\xf3\x8d\x28\xfc\x06\xed\xdd\x85\ +\xcc\x17\xe3\xfa\xf6\xd5\x78\x73\xf5\x62\x3c\x7f\xf3\x72\x7c\xf2\ +\xf2\xb3\xf1\xe1\xcb\xd7\xe3\x93\xd7\xd7\xe3\xe3\x37\x37\xe3\xd5\ +\xf5\x46\xcf\xea\xfc\x36\xa6\xdc\xa9\x22\x73\x2a\xd5\xd3\x97\x78\ +\x55\x2c\xbd\x85\x4e\x36\x17\x90\x22\xd8\x33\xf6\xf8\xa0\x9c\x4f\ +\x91\xd2\x02\x73\x31\x0e\x9d\xf3\x44\xfa\x3c\xc0\x25\x5d\xae\x9d\ +\x05\x64\x8d\x01\xdf\xa3\xa2\xa8\x23\xb3\x05\x7d\x2b\x5a\xd7\x8f\ +\xe2\xa7\x27\xb1\xd8\x1a\xbd\xc5\xbe\xf8\xcc\xdd\x42\xb8\x37\x2f\ +\x1e\x9e\xae\x19\x9c\xe7\x6e\x5c\xde\x5c\xeb\xaa\x75\x3c\x3e\xd5\ +\x5c\xf6\x7f\xf0\x0f\xfe\x67\x5e\x84\xcc\xb8\x8b\xdb\x92\x7d\xc9\ +\xb1\x87\x9f\x6f\xd8\x1f\xc9\x3d\xec\xe1\xab\x83\xfd\x82\xda\x1e\ +\xf6\xb0\x87\x9f\x3b\x58\x4f\x04\x1e\x9a\x14\x30\xc1\x7c\x08\xee\ +\xc7\xc9\x73\x73\x3d\xfe\xc5\xff\xe5\xff\x3e\xce\xbf\xf7\x2f\xc7\ +\x3b\xfc\xb7\xf0\xf1\xb1\x26\xe3\xfc\x8f\xbb\x4c\xb7\x7c\x22\xed\ +\x76\xdc\xdc\xdd\x66\x41\xed\xea\x36\x2f\x8c\x34\x39\x25\xde\x0f\ +\x5c\x3c\x3f\xf1\x60\xa0\x59\x78\xbe\xaa\x24\x13\x66\x5e\x26\xfb\ +\x25\x00\x2e\xd6\xc5\x07\x1a\x9b\x32\xe0\xe7\x44\xd4\x65\x07\x98\ +\xe8\xf2\x82\x92\xff\xc2\xf7\xc3\x41\xa6\xce\xdd\xb6\x0e\x59\x26\ +\xbc\x02\x04\xcf\xbe\x53\x87\x38\x35\x2f\xca\x4b\x75\xea\xd0\x54\ +\x3a\xf2\x81\x7c\x2a\xed\xce\x9f\x50\xab\x05\x35\xfe\xbd\x8f\xe7\ +\x18\x67\x58\x4f\xc6\x8b\xba\x0c\xa4\x23\x4f\xbe\x6f\x6e\x0e\xc7\ +\xc5\xcd\xdd\x78\xf5\xd9\x18\xd7\x9f\xca\xff\xd3\xdb\x71\xf8\x46\ +\x0f\x80\x2f\x0f\xc6\xed\x0b\xe5\x7c\x75\x33\xae\x5f\x8a\xfe\xe0\ +\xf9\xb8\xf9\x67\x2f\xc7\xf3\x7f\xf5\xe1\x78\xfd\x27\xaf\xc7\xc5\ +\x9f\x5d\x8e\x2b\xf9\xde\xbe\x38\x54\x99\x87\xe3\xf8\xf2\x70\xdc\ +\x5e\x2b\x37\x5f\xa5\x26\x99\x7f\x31\xbc\xbb\x39\xaa\x4f\xa7\xc9\ +\x47\x25\xfa\xbf\x0e\xa9\x03\x4f\x14\x40\x9a\x27\xe2\x9d\x9f\xa7\ +\x45\xd4\x15\xea\x67\xfa\x03\x99\x63\x45\xbf\xf3\x32\x98\xaf\x61\ +\xd4\x83\x9d\x17\xd3\x58\x30\xe0\xc1\x95\x07\x1d\x28\x78\xcc\xb1\ +\xe2\x4d\x59\x64\x1d\x58\xf7\xd5\xb4\x0b\xf3\x89\x23\xf5\x4c\x51\ +\x1f\xd7\x46\xfa\x97\x18\x72\xf0\x9b\x50\x3c\x48\xf3\x62\x4b\xbe\ +\x72\x98\x7d\xef\x4a\x12\xeb\x0a\xc2\x77\x2e\x09\xc4\x57\x1e\xc6\ +\x51\xea\x2f\x24\x07\x63\xa7\x72\xe5\x65\x86\x7c\xca\xe6\x78\x68\ +\xfb\x90\x87\x7c\x6d\x6b\xbe\xe2\xb6\x28\xf5\x94\xcd\x0f\xf4\x0a\ +\xf5\x0e\x7f\x64\xd3\x85\x4f\x1e\xf9\x68\xe7\x87\x76\xc5\xf1\x7b\ +\x6d\xd1\xc7\xee\x3a\xbb\x1e\xe2\x69\x60\xf9\x0d\xf5\xbf\xbf\xf6\ +\x11\xbe\x7d\xca\x6e\x1f\xd2\xc2\x77\x4c\x0e\xa0\xfe\x0a\xb5\x2d\ +\x87\x5e\x3e\xce\xe3\xa8\xf2\x0b\x2d\xc6\x7f\xd6\x97\xdd\x0a\x0f\ +\xec\xb5\x6f\xd4\x0b\x62\x53\x39\xf0\x56\x00\x55\x28\x54\xe7\x66\ +\x72\x80\x95\x1b\x10\x33\xfb\xbe\x72\xa4\x9f\x8a\x17\xe6\xdc\xaf\ +\x7e\xc4\xe6\xfe\x59\xb5\xb1\xb3\xd9\x2e\xbf\x08\x8b\x5d\xd8\xb2\ +\x75\xc4\xfa\xbc\x8f\x5f\xca\x47\x8f\xae\xf3\xd6\xb1\xe1\x18\x61\ +\x43\x47\x6e\xf7\xbf\xd0\x7a\x8d\x51\x51\x8f\xb7\x1a\x0b\xf1\x49\ +\xbc\x73\x22\xcb\x27\x8b\x63\xd8\x12\x0f\xcf\x57\x7e\x8a\xb1\x2e\ +\xf1\x54\x28\x72\x7f\x42\x4f\x19\x7c\x5e\x22\x84\x24\x6f\xae\x95\ +\xe2\x89\x75\x33\x42\xed\xaf\x8d\xf7\x2b\x2c\x76\xd9\x86\x16\x3e\ +\x69\x70\x15\x72\x5d\x46\xe6\x9c\x54\x77\xa8\x29\x38\x5b\x57\x07\ +\x2a\x2f\x20\xa4\x40\xac\x1c\xa6\xbd\xa9\x0f\xfd\x35\x57\xba\xee\ +\x65\x41\x4d\xb8\x51\x32\x5d\x87\xee\xae\x74\xdd\xb9\x38\x18\x9b\ +\x0b\x85\x5f\xea\xf0\x5f\xdc\x8d\xdb\xd7\x9b\x71\xf3\xe6\x76\x5c\ +\xbf\xbe\x1d\x9b\x17\xa2\x9f\x6e\xc6\xe5\x8f\xae\xc7\xab\xef\x5f\ +\x8c\xe7\x3f\xbc\x1a\xaf\x3f\xba\x19\x97\x9f\xdd\x8d\xab\x97\x87\ +\xe3\xea\x95\x50\xd7\xc3\xdb\xbb\x63\xd7\xe1\x8e\x72\x54\x39\x95\ +\x50\x54\xad\xa4\x42\xae\x2a\x75\x74\x4d\x0d\xd4\xdb\x8b\x6d\xe2\ +\x5b\x47\x9f\xdf\xe9\x9a\x75\xf4\xf8\xd8\x5f\xfb\xb8\xb2\xd8\x77\ +\x25\xae\xd9\x05\x9c\x0c\xbf\x07\xad\x4b\x8c\x19\xd5\xaf\x69\x5d\ +\xc7\x38\xde\x56\xea\x2f\xa9\x54\x5f\x9f\x13\xa2\x28\xa8\x43\xfe\ +\x26\xac\xf9\x16\x72\x0c\x80\xf4\x85\xc1\x69\x13\xdc\xc7\x8e\x31\ +\xce\x82\xda\x89\xae\x1b\x67\xa7\xa7\xe3\x84\x05\x35\x40\xe6\x57\ +\x57\x63\x7c\x78\x73\x39\xce\x7e\xe3\xb7\xc7\xb7\x7e\xf5\xbb\xbc\ +\xc2\xd4\xb6\x03\x6e\x80\x13\x7f\x31\xb4\xcf\x97\xf1\x05\xba\x0d\ +\x5f\xd6\xff\xaf\x11\xb8\xc9\x3a\x88\xa1\xb0\x1a\xa7\x3a\x5f\xfe\ +\x8f\xff\xf9\xff\x66\x3c\xfa\xc6\x9b\x71\x74\x76\xa7\xe3\xa1\x31\ +\xc3\xb8\xe0\x9c\xd6\x71\x58\xae\x27\xf2\x77\xa0\x98\x2d\xc8\xf1\ +\x63\x8f\x9d\xfb\x0b\xc3\x8d\xeb\xa6\x87\x1d\x1b\xb2\xf3\x90\x83\ +\x6b\x07\x97\x2e\x1b\x6d\x6f\x48\xfe\x6d\x40\xc5\x37\x0d\x5c\xf3\ +\xb5\xd6\x9c\xec\x7d\xfc\x56\x71\x81\x07\x82\x01\xca\x65\x93\x99\ +\x4b\xa6\x2f\x73\xd6\x84\xa6\x50\x8d\x5c\xd3\x3b\xcd\x1b\x0f\xc7\ +\x67\x17\x9a\x0f\xdd\xdd\x24\x46\x3a\xd5\x74\x9c\x28\xf8\x04\x59\ +\xd7\xae\xd3\xa3\x13\x8d\x6d\xf5\x94\xdb\xc8\x9c\x41\x94\xf9\xca\ +\xf1\x99\xf4\x4f\xc6\xd1\xd1\xd3\x71\x7c\xf0\x48\x51\x67\x42\x46\ +\xb8\x97\x9a\x94\x87\x97\xf5\x8d\xca\x71\xc0\x6b\x51\xf5\xc7\xed\ +\xcd\x38\x13\x7f\xaa\x3e\x39\xe2\xf8\xf8\xa2\xa6\x52\xd5\x56\x4f\ +\x89\x44\x53\x4d\x76\x00\xb4\xaf\x31\xad\x13\x88\x5d\x7b\xe0\xce\ +\xf1\x6b\x05\xed\x40\x69\x7d\x29\xe9\x8f\x1c\xe3\xa6\x8d\xaa\x97\ +\xed\x41\xb6\xf0\xd2\x37\xaa\xbe\x46\x5a\x27\x39\x9f\xde\x81\xe6\ +\x9a\xe3\xb9\x49\xe9\x9a\x77\x5e\xf3\xc1\xc9\x53\x5a\x95\x9d\xf2\ +\xe2\xab\x5d\x74\xd4\xde\xfe\xc8\x1d\x2b\x9e\xfe\x87\x77\x79\xe2\ +\x45\xb1\xf1\x89\xb5\x1c\x9b\x5e\x14\x29\xb4\x5d\xb9\xa1\x2e\x13\ +\x1d\x36\x3a\x00\xb9\xf2\x57\x7d\xac\xd3\x26\x01\x8d\xfb\xcc\xf6\ +\x8e\x9f\x34\xf5\xed\x36\x82\xee\x61\x72\x38\x12\xb9\xd1\x19\x6d\ +\x33\xa2\x23\xbf\xe5\xf8\xac\x6d\x5b\x54\x48\xbc\xc7\x95\x08\x96\ +\xec\x93\x17\xa5\x9f\x5d\xca\x7f\xed\xe1\x7a\x4d\x69\xd9\x3b\x11\ +\x37\x62\x4b\xdc\xdb\xac\x2d\x93\x39\x5f\xfb\x93\x23\xad\x41\xcf\ +\xd8\x31\x4a\xce\x31\x13\xa8\x3f\x12\xe8\xbf\x25\xde\x98\xbd\x07\ +\x76\xd7\xb7\xa0\xbd\x96\x7e\x9b\x83\x3e\xe5\x69\xbb\x63\xde\xe0\ +\x01\x2b\x4d\xdd\x93\xf1\x59\xda\xa9\x8d\xd4\xa2\xd4\xc3\xe3\x82\ +\x72\xf4\x87\xcd\xcf\x17\x70\xc8\xe4\xa8\x58\x46\x8b\x2f\x0e\xb2\ +\x69\x24\x88\xa8\x6f\x9d\xbf\xc6\x54\xe5\x71\x7e\x07\xa3\x6f\xdd\ +\xa2\x77\xbe\xf6\x11\xf5\x62\x53\x4a\x0c\xad\x8e\xf5\xb3\x0e\xb2\ +\xfd\x5d\x19\xfe\xa6\x5f\x88\xda\xab\xb6\xb8\x39\x8a\x0b\xcf\xd1\ +\x29\x1d\x79\xb4\xc3\xd5\xcd\x82\xd6\xae\x7d\xb0\x03\x65\x36\xd8\ +\x07\x90\x92\x32\x01\xae\xc5\x8f\x74\xed\x7a\xff\xf1\xd3\xf1\xad\ +\x77\xce\xc7\xe3\xd3\x33\xb5\x8f\x67\x6a\xae\xbb\x87\x5e\xf4\xe2\ +\x1f\x55\xf9\x96\x93\x13\x9e\xb7\x88\x63\xfe\xc0\x83\x1e\x0b\x68\ +\x3c\xe4\xdd\xe9\xc6\xbe\x79\x3d\x6e\x6f\x3e\x1b\x57\xc2\x8b\xab\ +\xe7\xe3\xf9\x9b\x0f\xc7\x27\x6f\x3e\x1a\x3f\x7a\xf1\x99\xf0\xc5\ +\xf8\x50\xcf\x96\x9f\x5c\x6c\xc6\xcb\xcb\xbb\x71\xe1\x85\x34\xfe\ +\x21\x56\xa1\xdc\x87\x40\x6f\x79\x66\x74\x3d\xb1\x75\x25\x81\xae\ +\xbc\xfb\x4d\xf5\x3e\xd6\xb5\x59\xd7\x5d\x1a\xd3\x26\x83\x07\x41\ +\xc5\x41\xdc\x41\x5b\x1e\x5b\xe0\x6c\xfc\xf9\x38\x14\x6a\xcb\x3f\ +\xdd\x12\x0b\x96\x9f\x60\x66\x32\x53\x65\x6b\xb7\xa6\xe6\x0b\xfa\ +\x9f\x7e\xd9\xa6\x7f\x83\x53\x76\xe6\x2a\x8b\x7b\x40\x69\x1a\x90\ +\xba\x7f\x8e\xbc\x92\xa8\x39\xeb\x9b\xe3\xf1\x8f\xfe\xd6\xff\x54\ +\x8f\x68\xba\xd7\x10\x06\x4e\xef\x35\xdd\xc3\xcf\x3b\xec\x8f\xe4\ +\x1e\xf6\xf0\xd5\xc1\x7e\x41\x6d\x0f\x7b\xd8\xc3\xcf\x1d\xfc\xa4\ +\x13\x81\x75\x5c\x4f\x2e\x37\x57\xaf\xc7\x3f\xfb\x3f\xfc\x9f\xc7\ +\x7b\x2f\x7f\x38\xde\x3d\x3f\xf5\x04\xf2\xf6\xee\x36\xa8\x49\xf8\ +\xe6\xf6\x46\x13\xff\x5b\x4d\xe8\x79\x31\x72\xe3\x45\x2e\x1e\x93\ +\x78\x02\x60\x92\x4c\x1a\x9e\xf7\x78\xf8\xf3\x0b\x10\xa8\x6c\xfd\ +\x42\xc4\x0f\xc7\x9e\x44\xcb\x95\x07\x26\x7c\x88\x5d\xc5\xaf\x2b\ +\x66\x96\x09\x34\x93\x65\x95\xc5\xd7\xf6\x58\xf6\xc3\x46\x00\x1f\ +\x24\xd3\x75\x2c\xf9\xa6\x25\xfb\x94\x21\xa4\x1e\x3c\x28\xb8\x3e\ +\xe8\x78\x58\x93\x43\x3f\x74\x5c\x6d\xc6\xed\xeb\xcb\xb1\xb9\xbc\ +\x1e\x7c\x57\xc6\xdd\xb5\xf2\x64\xd5\x8a\x5d\x81\x03\xc2\x42\x95\ +\x83\x07\x52\xa5\x30\xf0\x92\x8a\x7a\xf3\xe9\xb2\xcd\xc5\xc1\xb8\ +\x7e\xb9\x19\x9b\x8f\xae\xfc\xf5\x8f\x37\x7f\x76\x3d\x5e\xfe\xf1\ +\xf3\xf1\xd9\xff\xf7\xd3\xf1\xf2\x77\x7f\x30\x5e\xfc\xfe\xa7\xe3\ +\xea\x47\x97\xe3\xf2\xe5\xad\xca\x54\x9e\xeb\xa3\x71\x77\x73\xa0\ +\x7e\x2e\xfe\x4a\xfd\xc4\x57\xa2\x89\xf2\x52\xfb\x70\x23\xaa\x72\ +\xf8\x50\x82\xd7\x18\xe9\x17\xc0\x84\x9d\x1e\x2a\xa8\x1e\x6d\x03\ +\xdc\xc7\x34\x57\x3b\x16\x0b\xc0\xe3\xa3\x71\xc4\x42\x1a\x9f\xbc\ +\x12\xdf\x8b\x69\xb6\x57\xbf\x78\xb1\x80\x76\x39\x78\x39\x7e\x8e\ +\x17\xbd\xd3\xc3\x70\xe7\x73\x5f\xd2\x27\xee\x4b\x68\xfc\xfb\x13\ +\x61\xce\x6f\x5f\x95\x59\xbc\x3b\x7d\xfa\x36\x4f\x7c\x95\xd7\x39\ +\xaa\x6c\xca\x30\x92\x07\x3f\xf1\xa0\x17\xd0\xd0\x95\xec\x05\x8b\ +\x92\xf3\x5b\x66\x1d\x93\x3c\xae\x1f\xe5\x89\x97\x62\x96\x99\x72\ +\x17\xda\x75\xb0\x4f\xd7\xc7\x72\xb0\xf9\xce\x97\x71\x5c\xe5\x13\ +\xb3\xf2\xf1\x73\x3d\x7a\x1d\x8e\x99\x5f\x94\xdf\x95\xf3\x6f\xa8\ +\xd1\x47\xd4\xa9\xe2\x1c\x8b\x37\x39\xd9\xd0\x45\xb3\xe2\xa1\x91\ +\xc9\x9d\x38\x2b\xa2\x43\x68\x6a\x88\xbc\xd8\x19\x2d\xe1\x63\x5d\ +\xf9\x81\x4a\x19\xad\x78\xff\x35\x6d\x50\x34\xe3\x10\x85\x68\xa5\ +\x09\xe0\x07\x76\xbf\xb8\x6f\xc8\x40\xdf\x78\x5f\x7d\x46\x5f\xe0\ +\xce\x98\x8d\x8f\xaf\x09\xb3\x1f\xc8\xe5\x44\x95\x16\x3e\x7e\xde\ +\xda\xaf\xf4\xf1\x68\xbd\x4a\xe1\x3c\x77\xfc\x5a\xbf\xb2\x83\xbc\ +\xec\xa1\x1e\x8c\x11\x5e\x68\xf4\x58\xc2\x0f\x4a\x7d\x5a\xe7\x71\ +\x44\xac\x8e\x57\xe5\xf0\x98\x69\x74\x0c\x48\x4e\xca\x6d\xaa\xbc\ +\xa2\xdd\x46\x64\xc7\x55\x5d\xb6\x72\xdb\x3f\x79\x24\xa4\xaf\x0a\ +\xe0\xdc\xe7\xbe\x1e\xc9\x47\x7b\x45\xe0\x6e\xc6\xa9\xbd\x43\xae\ +\x1c\xd6\xa7\xcf\x7d\x7d\xd2\xb5\xc9\x39\x7c\xad\x90\xcd\x84\x80\ +\x42\xe5\xf6\x7f\x22\x53\x86\xa8\xff\xe3\x5b\x3e\x07\xba\xee\xdc\ +\xf9\x13\x6b\x4a\x58\x9f\x5c\xbb\xb9\xba\xf3\xc2\x1a\xf4\xe6\xf5\ +\xed\xb8\x79\xa5\x7b\xc3\xcb\xbb\x71\xf1\xe2\x6e\xbc\xfe\xec\x76\ +\xbc\x66\xf1\xec\xf5\xf1\xb8\xba\x3c\x1e\xb7\xba\xb6\x6d\xae\x0e\ +\x87\x6e\x23\xca\x4d\x5f\x30\xfa\x84\x2a\x0a\xa4\x1d\x1e\x48\xaa\ +\xa4\xcb\x43\x2f\x4d\xd7\xd5\xbc\x7d\x1a\xa8\x78\x02\xef\x74\x4d\ +\x39\x3e\x3f\x19\x47\xfe\xaa\x62\xbc\xb0\xad\x40\xaa\x75\xec\x56\ +\x1e\xbb\xaf\x62\x60\x57\x0e\x93\x35\xa3\x76\xdb\xce\x38\xd5\xb5\ +\x59\xc7\x8d\xf1\xd2\xbf\x99\x88\x89\xeb\x7e\xbe\xf2\x91\x8e\xb4\ +\xc2\x74\x5d\x23\xa7\x98\x9c\x60\x6d\x14\xb8\xb5\xe8\x9c\xb0\x50\ +\x3c\x25\xf0\xb2\xf1\xe4\xf0\x78\x9c\x9e\x9d\xea\x1a\x7e\x34\xce\ +\xcf\xce\x3d\x76\x35\x78\xc7\x9b\xeb\xd7\xe3\x4f\x3f\xba\x1c\xb7\ +\xdf\xfe\xc6\xf8\xd5\x7f\xf3\xef\x8d\x13\x95\xed\x97\xd9\x6b\xe8\ +\xfe\x71\x99\x4e\x1a\xd8\x71\x33\xa0\x7b\x48\xff\x45\xf0\x93\xc4\ +\xfc\x75\x00\xf5\xa9\x9b\xce\x4e\x63\xfc\xe2\xcd\xeb\xf1\xff\xf8\ +\xa7\xff\xbb\xf1\xe4\x5b\x9b\x74\xbb\x0c\x10\x2f\x3c\xb0\x71\xee\ +\x63\xe0\xcf\x0e\x76\x9a\x10\x49\x63\x4c\x0c\xe7\x07\xe7\xb3\xa7\ +\x2e\xf2\x75\x98\x76\xcd\x7b\xbe\x05\xd5\xce\xf7\x7a\xfc\x31\x98\ +\xe9\x5c\xdb\x40\x1d\x6e\x36\x9b\x71\xcd\xc7\x18\x7c\xe2\xf7\x50\ +\xdb\xf5\xf6\x60\xd9\x06\x5f\x38\xf0\xa4\x7c\xca\x4c\x21\x4b\x6c\ +\xf4\xad\xe1\x14\x7b\xa5\xeb\xc4\x9b\x8b\x1b\xf9\x6e\x5c\x57\x5d\ +\x45\x35\x96\x65\xd4\xbc\x86\x9f\x4c\xe4\xf7\xce\x98\x6f\x52\x1e\ +\xed\x39\xe2\xab\xcf\xb8\x72\x89\x3f\xa6\x4d\x87\xfc\x66\xd7\x39\ +\x1a\x6d\x2c\xc6\x65\x41\x2e\xa5\x00\x15\x3b\x6e\x86\xee\xaa\x4a\ +\x78\xa1\x6a\x52\x96\xfa\x5f\x79\x0f\x8e\x2e\xc6\xa9\xe6\x3b\xa7\ +\x67\xdc\x77\x79\x99\x7f\x96\x6b\x9d\xea\xe3\xf3\x94\xe8\x6a\xaa\ +\xf3\x75\xff\x09\x9a\x73\x9b\x8c\x96\x4c\xc2\xd2\xde\x98\xac\x87\ +\xb7\x1a\x7e\x39\x4e\xad\x73\x77\x59\x6e\x5b\xda\xc9\xf9\x6d\x5e\ +\xad\xc8\xa2\x95\xe6\x6a\x5e\x78\x60\x91\x31\xf7\x1d\x16\x26\x90\ +\xf1\x41\xce\xa2\x55\xf3\x15\x0f\x0f\xf5\x82\x46\x95\x41\x6f\x91\ +\x43\x9b\xfb\x15\x8d\x7c\xb8\x1f\xb5\xbf\x37\xf3\x94\x22\xdf\xaa\ +\x83\x3f\x51\xa4\x5e\x3d\xf2\x31\x28\xd9\xe5\xc2\x13\x5f\x3c\x79\ +\xe1\xeb\xeb\x1f\x29\xca\x3a\xd7\x21\xbe\xda\x59\x97\xd6\xb3\x49\ +\x4f\x87\xa0\xa3\x53\x18\x0c\xb4\xb2\xf2\x3a\x3f\x39\x1c\x83\x6e\ +\xa1\xe9\x5f\xb5\xd1\x3e\xf1\xf0\x60\xeb\x72\xd9\xaa\xb3\x2d\x77\ +\xd9\x8e\xb3\x77\xfc\xe3\xb9\xa2\xd8\xf0\x29\x5d\xc7\x57\x6e\xeb\ +\xaa\x5f\xc9\x65\x5d\xb3\x8e\x09\x75\x54\x99\x0d\x3e\x6f\x72\x3f\ +\xeb\x7b\x43\xbc\xd8\x8a\xd7\xb3\x84\x6b\x4e\x5c\xb5\x8b\x0d\x45\ +\x72\x59\x8a\x9d\x3c\xf0\x46\x14\xb4\x31\xbc\xcb\x4f\x92\xc5\xc9\ +\xe5\x91\x13\x3f\x14\x3a\x8b\x44\x58\x58\xc6\x0f\x4b\xa8\x38\x74\ +\x74\x95\xdb\x0c\x26\x26\xed\x82\xaf\x7e\x24\xd4\xe7\xa7\xb4\xc4\ +\xba\x5f\xcb\x0e\x15\x3a\x9f\xc7\x9e\x38\x16\x62\x6b\x1c\x3a\xad\ +\x74\xe4\x4e\x6c\x97\x03\x62\x27\xbe\x28\x72\xff\x03\x0e\x85\xd2\ +\x8f\x2e\x1c\xd9\x0a\x79\x22\xe6\xea\xe0\x5c\xf6\xb7\x29\xc3\x02\ +\x3e\xdd\x2e\xc0\xaf\x00\xdd\x96\x2d\x50\x87\x68\xa5\xe4\xd8\x91\ +\x88\x3f\xae\x99\x04\xc5\x6c\xae\xfc\x7c\xad\x56\x9f\x9c\xe8\x99\ +\xe7\x91\xe6\x26\x8f\xb8\x5f\x6b\x7e\x79\xa3\xfa\xbc\xd2\xf3\xdc\ +\xcb\x8b\xdb\xf1\xf2\xe6\xe5\x78\x73\xf3\x66\xbc\xba\xb9\x18\x17\ +\xe3\x52\x8f\x9b\x7a\xee\xbc\xbb\x56\x0a\x7e\x64\x52\xcf\xd8\x1b\ +\x3d\x33\xde\xbe\xd2\xf3\xf6\xab\xf1\xf2\xcd\xc7\xe3\xf9\x9b\x17\ +\xe3\xd3\x37\x9f\x8d\x8f\xdf\x7c\x32\x3e\x7c\xf1\xd9\xf8\xe1\x67\ +\xaf\xc6\x47\x7a\x56\xfd\xf4\xf2\x66\xbc\xb8\xde\xe8\xfe\xaf\xe7\ +\x73\xcd\x3d\xbc\x68\xe6\xf9\x47\x9e\x43\xd3\x2e\x16\xd8\xd4\xcf\ +\xb3\x1d\x01\xcf\x03\x67\x1b\x62\xa4\xff\x74\x78\x74\x8c\xdc\x52\ +\x34\xde\xaf\xa1\x42\xb6\x1b\xfd\x00\xd8\xac\x7c\xf4\x7b\x8e\x9b\ +\x19\xf7\x4f\xdf\x07\xf3\x57\xc7\x62\x95\x6a\xdd\xf7\xad\x76\xbe\ +\xda\x43\xf1\xc9\x61\xc0\xa9\xce\xab\xc5\x2c\xd4\xae\x83\xcd\x30\ +\x66\x5c\xaa\xed\xa6\x84\x42\xb4\xe3\xf5\x02\x6d\xff\xf4\xb3\x9b\ +\xf1\x77\xff\xc6\x7f\x30\xde\x7d\xf6\x0d\xa5\x67\x5c\x76\xda\xec\ +\x17\xba\x87\x9f\x77\xd8\x1f\xc9\x3d\xec\xe1\xab\x83\xfd\x82\xda\ +\x1e\xf6\xb0\x87\x9f\x3d\x70\xe7\xfe\x0a\xe7\x63\x3f\x4e\x8a\x87\ +\x8a\x0e\xd5\xfe\x4e\x93\xf1\x0f\x7f\x30\xfe\xe4\x3f\xf9\x4f\xc7\ +\x3b\x17\xcf\xc7\xe3\xf3\x9a\xe8\x6a\x72\xc9\xa7\xd4\x98\x68\xf3\ +\x29\x35\x7e\x67\xe3\xf2\x46\x93\xf6\x2b\x5e\x10\xf9\x31\x48\xe1\ +\xf2\xf4\x04\x19\x36\x93\xe4\x7e\xa9\xc3\xa4\xd9\x13\xe7\x23\x74\ +\xd1\x47\x2e\x8a\x8f\x62\x5c\x91\xc6\x2d\x50\x05\x78\xd7\xb1\x51\ +\x0d\xa8\x07\xb3\x5d\xfd\x01\xb8\x16\x1b\xa8\x58\x93\xce\x43\xee\ +\x22\x2e\xa7\xea\x94\x17\x90\x42\xd7\xc7\x1e\xce\xe5\xfc\x7a\x38\ +\xd9\xbc\xe1\x2b\x1f\xf5\x40\xe3\x05\xb5\x5b\x7f\x35\xd1\x7c\x80\ +\x58\x43\xe9\x62\xd3\xae\xa9\x80\xc9\xf9\x86\x17\xc7\xca\x79\x79\ +\x79\x3b\x36\xaf\x0e\xc6\xe6\x63\xf5\xdf\x87\x6f\xc6\xf5\x9f\xbe\ +\x19\x6f\x7e\xf0\xd9\xb8\xe6\xeb\xd1\xde\x6c\xc6\xcd\x95\xfc\xf8\ +\x24\x1a\x5f\x01\xc2\x57\xa0\xdd\x1e\x8d\x23\x5e\x5a\x6f\x54\x5f\ +\x16\xd0\x6e\xe0\x83\xb7\x37\x4a\xcc\x43\x93\xfb\x45\x05\x51\x67\ +\xd5\xcf\x65\xaa\xec\xb4\x15\x49\xbb\xee\x6f\xda\xcd\x62\x01\x3f\ +\xee\x8f\x8e\x85\x9c\x63\x3d\x35\xcc\x85\x2e\xfa\x45\x1d\x41\xbf\ +\xf8\x98\xa4\x6f\xb4\x93\x4d\xfe\xf6\x13\xba\xff\xca\x7f\xfa\x2a\ +\x7f\xfb\x8b\xe7\xe5\x76\xca\x8d\x2f\x39\xfd\x20\xcd\x27\xd4\x6a\ +\x41\xcd\xbe\xb2\xcd\x97\x11\x94\xd3\x39\x9c\x33\xb9\x6d\x9b\xba\ +\xf0\x7e\xb0\x26\x16\x3b\x75\x40\x9e\x7e\xd4\x55\xb2\xca\xc8\xf8\ +\x0b\xdf\x75\x71\x5d\xf1\x73\x0c\x44\x79\x5c\x3f\xaa\x50\x3e\x46\ +\xca\x59\x95\x27\xde\xb2\x29\x04\x5b\xfc\xa2\x4b\x3d\x78\x10\x63\ +\x01\x92\x76\xc5\xd6\xb1\xa2\x1c\x11\xc5\x38\xce\xfe\x9c\x07\xaa\ +\x1b\x9f\x50\xa3\x0e\x95\x13\x3d\xbe\x62\xcc\x5b\xa0\x1e\x53\x0e\ +\xa6\x3e\xa9\x03\x6c\x9d\x8c\xd3\xcf\x3a\x24\x8b\x2b\x8a\x56\xd4\ +\x8b\x3b\xf6\x88\x1c\x87\x1a\x43\x54\x03\xa1\xf5\x40\xd9\x7d\xa2\ +\x94\x6a\xb2\x3c\xc8\xb6\xae\xdc\xd2\x44\xda\x4d\xc5\x28\x3f\x6d\ +\xf4\xcb\x2f\x9f\xff\xa2\x92\xf1\x48\xbd\x14\x55\xfd\xb9\xb4\xb7\ +\xfa\x05\x3f\xf7\x5b\xd9\x41\x97\x15\x2a\x85\xec\xe8\xf5\xe7\xfe\ +\x10\xae\xfb\x03\x9d\xb0\x17\xb4\x3a\x0f\x24\x65\xac\xb1\x6c\x1e\ +\x17\x4a\xc2\xd8\xf5\x4b\x3d\x9c\x45\x7b\xcc\x51\x9f\x1e\x67\xce\ +\xd5\xfe\xc1\xc8\xd2\x3b\x5e\x65\xf3\x62\xa7\xf4\xb6\x1b\x29\x6b\ +\x57\xaf\xb6\xa0\x73\x4e\x21\xcd\x30\xd0\xdb\x90\x7a\x69\xc0\x05\ +\xa6\x54\x78\xf1\x72\xb9\xfd\x53\xae\x18\x53\x6b\xe2\xab\x6b\x85\ +\xff\x39\x41\xbc\x5f\xa0\x15\xf4\x75\xb5\xde\xf5\x05\x9a\x07\x75\ +\x1d\xe3\xc5\x94\x5f\x74\x72\x4d\xd3\x75\x88\x45\xff\x71\x0d\x95\ +\x8a\x7f\xa0\x16\xcf\x75\xec\x5a\x3c\x3f\x3d\xb9\xd1\x75\x0a\x64\ +\xc1\x9f\x4f\x17\xfb\x7a\xa5\x82\x5d\xb6\x0a\x72\x59\x4a\xa1\x0c\ +\x46\x6c\x48\xd4\xd6\x3b\x1c\x28\x77\xda\xc3\x43\x68\x5a\x40\xfe\ +\x6a\xf3\xad\x8e\xc9\xe1\xf9\xc9\x38\x3e\xe3\xf8\xc8\x9b\x54\x06\ +\x22\x2b\x9d\xe5\x85\x4e\x98\xbe\x6b\xa8\x28\x11\xa5\x0f\x98\x52\ +\x9e\x25\x51\x5e\x44\xea\x38\x71\x1d\x85\xe2\x40\x08\xa1\xab\x97\ +\x59\x56\xe4\x2f\x29\x56\x50\xad\x5d\xca\x00\xec\x98\x5c\xd6\x4b\ +\x76\x5f\x95\x2f\x63\x83\x17\x75\x47\x1a\x7b\x47\x2a\xfb\xd1\xd9\ +\x99\xda\xac\x7b\x86\x3a\xe6\xcd\xcd\xe5\xf8\xe3\x1f\xbe\x19\x07\ +\x5f\xff\xd6\xf8\xce\x3f\xf8\x77\xc6\x63\x06\xc1\x3a\x37\x50\x39\ +\x0d\xe6\xcb\x01\xf2\x90\xef\x97\x81\xce\xb7\x86\x2f\x1b\xfb\xf3\ +\x0e\x3e\x5e\xd5\x5c\xa8\x79\xed\x74\x7e\xfc\x37\xbf\xff\xcf\xc6\ +\xef\xfe\xe9\x7f\x3c\xce\xde\x95\x4e\x93\x08\x8e\xa3\xaf\x0b\x72\ +\x5a\x63\xe2\xb4\x33\x43\xa2\x80\xaf\x8e\xa5\x82\xf6\x0b\x67\x4e\ +\xe9\x60\xe2\xf3\xbb\x87\xa2\x1a\x17\x9e\x63\xa1\xaf\x0c\x9d\xaf\ +\xc8\x3d\xb8\xd6\x1c\xe7\xf6\x56\x73\x9d\xe5\xa4\x11\x74\x7c\x43\ +\xa4\x6a\x6a\x38\x8f\x79\x80\x72\xe5\xcf\x50\x43\xa1\xf1\x64\xbd\ +\x05\x61\xd5\x85\x4f\x60\xbc\xba\xd0\xf4\xea\x9a\xaf\x5c\x14\xca\ +\x9f\x25\x9a\x23\xd7\x5b\xa7\xba\xae\x11\x77\x9a\xd0\x5c\xeb\x42\ +\x71\xa5\x0b\xca\xe5\xd5\xf5\xb8\xbe\xe1\x37\x82\xf8\x34\x9b\xe6\ +\x9b\x94\xa1\xed\x98\xeb\x32\xfd\xa2\x7c\xd1\xc8\x66\x9e\x49\x10\ +\xaf\x3e\x35\x5f\x73\x4d\x75\x1e\xdc\xbc\x1e\xc7\x07\xaf\x15\xff\ +\x4a\xc7\x43\x78\xb8\x19\xa7\xa7\x87\xe3\x8c\xaf\x4b\xd5\xb5\xe2\ +\xec\x9c\x45\x2a\x65\xb8\x3a\xa9\x17\xd9\xe4\xd9\x05\x95\x51\x4a\ +\x4a\x53\xf2\xf8\xd0\x2e\x1f\x4f\x10\x9f\x65\x11\x84\xfe\xf1\x71\ +\xb2\x1c\x1d\x32\xcc\x72\xcc\x44\xf1\xa8\xf1\x80\xaf\x17\xb1\x2c\ +\xd3\x2f\xe1\xbd\x68\x05\x5a\xae\x4f\x84\x71\x9c\xdb\x0e\x56\x1e\ +\x8e\x43\xeb\xe6\x42\x94\x65\xca\x2c\x9e\x7b\x18\x11\xeb\xf2\xc9\ +\x27\x89\x83\x08\x8d\x8e\xf8\x94\xe9\x05\x2f\x2f\x70\xb1\x48\xb6\ +\xd4\x03\x9f\x8c\x39\x68\x97\x17\x9a\x3a\x2c\x65\x90\x9b\xae\x41\ +\xa7\x5d\xe9\x44\x15\x6f\xbd\xfc\x2c\x33\x7e\x2a\x97\xcb\x70\x1e\ +\xca\x4a\x9e\x39\x6f\x90\x8e\x28\xe7\x83\x3a\x8b\x4d\xce\x65\x8d\ +\x85\x8a\x33\xa2\x55\x39\xb6\x2d\xf1\xde\xd6\x79\xac\x43\xc2\x37\ +\xf5\x8a\x0d\x52\xd9\x4b\x17\x68\xff\xd6\x60\x5f\xb4\xd6\x91\x0a\ +\xf0\x49\xc4\x2e\x7c\xfb\x99\xfa\xdc\x8d\x2c\x36\xbc\x76\x46\xdb\ +\xca\x5e\x7a\x03\x3c\xa9\x4a\xc7\x16\x7d\xd5\x1b\x6a\x31\x96\x19\ +\x67\xcf\xf0\xad\xa3\xef\xc9\xd3\xed\xa3\xcf\xf0\xb3\xaf\x79\x2c\ +\x95\x8f\xfe\x14\xcf\x9e\x32\xdc\x2b\x04\xb7\x4f\xdb\x45\x33\x46\ +\x25\xa9\xcf\x19\x7f\x0a\xce\xb9\xc3\xb8\xc1\xa2\xb9\x45\x16\xd8\ +\x2a\xae\x90\x38\xfb\xba\x7e\xc9\x6d\x62\x4f\x31\x74\x92\x28\xfb\ +\xd4\x1b\xe8\xb2\x05\xda\x99\x86\x75\xd7\xf7\x8e\x28\xf6\x9e\x0f\ +\xa1\x71\xdd\x33\xcf\xb0\x8b\xa5\x05\xfa\xfa\xe8\xd2\x7c\xfc\xda\ +\xda\x25\x08\xec\x93\xfa\xb0\xe3\xda\xe2\xdf\x0a\xbb\x3b\x1a\x1b\ +\x3d\xd7\xbd\xe1\x13\xba\xaf\xaf\xc7\xf3\x37\xaf\xc7\x67\x97\xaf\ +\x74\xbf\xbe\x18\x17\x37\x37\xfe\x9a\xc1\x8b\xcd\x9b\xf1\xea\xea\ +\x8d\xf4\x9f\x8d\x17\x7c\x8d\xe3\xe5\xa7\xe3\xe3\xd7\x9f\x8e\x4f\ +\x2f\x3e\x1b\x9f\xbe\xf9\x64\x7c\xf4\xe6\xf9\xf8\xe4\xe2\xc5\xf8\ +\xe8\xf5\x4b\xc9\x6f\x64\xdf\x8c\x97\xd7\x77\xca\x71\x30\x2e\x35\ +\x1f\xbb\x51\x3b\x36\xd4\xdd\xd5\xd2\xae\xab\x67\xe8\x36\xa9\x52\ +\x55\x47\xa0\xe7\x5c\xe8\xe0\xec\x43\x7f\x8b\x1c\x1e\xdd\x8d\x63\ +\x3d\x33\x3e\x0c\x89\x5f\x20\xf1\x0f\x81\x3d\x39\x7e\x66\xfa\x78\ +\xe6\xd0\x2d\x73\x7a\x3b\x55\x05\x0a\xa4\xf7\xd5\x98\xba\x49\x9f\ +\xba\xd9\xb2\x05\xb4\x21\x76\xe6\x5c\xa5\x5c\x03\xf9\x7d\x6c\xe1\ +\xd9\xc9\xa9\xc6\x47\x1d\x29\xed\xbb\xfd\x68\x94\x47\xf6\x17\x17\ +\x17\xe3\xbd\xbb\xdf\x1a\xbf\xf9\x6b\x7f\xc7\xf9\x49\x13\xdf\x62\ +\x26\xdd\xc3\xcf\x3b\xec\x8f\xe4\x1e\xf6\xf0\xd5\xc1\x7e\x41\x6d\ +\x0f\x7b\xd8\xc3\x5f\x1e\x3c\x74\x07\xff\x09\xef\xea\x5f\x1c\xc6\ +\x54\x31\x5e\xec\x97\x87\x13\x01\x13\x45\xf8\x83\xdb\xf1\xfc\x7b\ +\x7f\x31\xbe\xf7\x9f\xfe\x67\xe3\x1b\x07\x17\x7c\x3b\x9f\xff\xb3\ +\x8e\xaf\x53\xe0\xb7\xd5\x58\x48\xe3\x3f\x87\xaf\x37\x1b\x2f\xa8\ +\x5d\xdf\x68\xea\xe9\x59\x66\xf2\xe5\x65\x76\x28\x0f\xea\xa6\x7e\ +\xd0\x5e\xcb\x2a\xa9\x64\x53\x26\xd3\xa5\xeb\xea\x4c\x2a\xf0\x14\ +\x97\xbf\x7e\x09\x0c\x66\xe6\x5c\xf6\x1d\xa8\x58\x93\x99\x2f\x0c\ +\xc4\x0f\x84\x2e\x7b\x29\x17\x5d\x2f\x2c\x00\x5e\xb4\xe3\xeb\x1e\ +\xdf\x5c\x89\x2e\x5f\xf7\x18\xa3\x93\x88\x69\xef\x82\x12\xa7\x56\ +\x0c\x75\x63\xca\xce\x17\x90\xc1\xbb\x04\xfa\x8f\x4f\xf7\xe9\x21\ +\xe8\xfa\x7a\x8c\x1b\x3d\x08\x5d\xeb\x41\xf2\x8e\x4f\xa2\x6d\x4e\ +\xe5\xa1\x4e\xbf\xe5\x21\x5f\x91\xb7\x42\x05\xfa\x91\x5f\xd4\x5f\ +\xa5\xaf\x7a\xf8\x53\x22\xbc\xc0\xe6\xe5\x34\x9f\xf4\xa8\x4f\xed\ +\xf1\x72\xdc\xd5\x93\x0a\xe8\x87\x14\xb7\x91\x97\xcd\x7c\x52\xcc\ +\x0b\x6a\xc2\xd3\x63\x2f\xe4\x64\x31\x0d\x9a\xfe\xe0\x78\x88\xe1\ +\x29\xc7\xba\x1c\x3f\xf8\x7a\x99\x31\x11\x59\xc9\xad\x17\x12\xe3\ +\x7f\x9b\x57\x2e\xec\x94\x6d\x1f\xc5\x3b\x77\x16\xd1\x0e\x35\xa8\ +\xfc\xe2\x57\x3a\x29\x35\x0e\xa0\xf2\xa5\x77\x1c\x83\x6f\x8e\x09\ +\xf2\xfc\x34\x8f\xfd\xc5\xcf\xf2\x83\x94\x6f\x1b\x75\x29\x5d\xc6\ +\x94\x70\xe6\x03\x7b\xec\x45\xe6\x53\x25\xc4\xf8\x93\x79\x55\x56\ +\xb7\xc3\xed\x32\xa5\xc8\xd8\x9c\x1f\x1f\xf8\xa2\xae\x1b\x39\xf0\ +\x49\x47\x97\xdf\x12\xd3\xf9\xa0\x8c\x79\xea\x33\xeb\x64\x5b\xd9\ +\xbd\xa0\x96\x4f\xd6\x58\x76\x3e\xe2\x16\x5e\xbb\xc8\xa5\x43\x13\ +\x1f\x9b\x6a\x0c\x23\x0b\x5d\xf7\xc4\xb9\x3d\xe5\x6b\x47\x74\xe6\ +\x5b\x47\x5d\x22\x06\xb0\x6b\xaf\x1c\x7e\x98\xc5\x06\x21\x2e\xec\ +\x04\xfc\xfa\x39\xd5\x0c\xe3\xd4\x7e\xf1\x54\xaf\x47\xee\x7e\xe8\ +\xf6\xae\x74\xda\xdb\x97\xfa\x4b\x99\x7e\xb2\x5d\x54\xfe\xdd\x6f\ +\xf6\xb7\xcd\x8d\x73\xf6\x85\x62\x23\x0d\x71\xf1\x9b\x65\x68\x23\ +\x77\xc6\x76\xf4\xd0\x1e\x5b\x39\x16\xd2\x55\xdd\xe6\x38\xa9\x31\ +\xaa\x01\xe6\xd8\xd4\x5d\x32\x63\x5c\xfa\xe5\x53\x6c\xe8\x42\xd3\ +\xb6\x65\x1c\x85\xe6\x3c\x50\xc2\xf8\x13\x4f\xab\xe1\xa9\xbb\x75\ +\x42\xf2\xb9\x4e\xa1\xda\xb9\x5f\xfc\x24\x6f\x40\x16\xd0\xc7\x48\ +\x75\xce\x23\xd8\xd5\x2c\x0a\x0c\x28\xad\x88\x11\xca\xbb\x66\xae\ +\x15\xbe\x8e\x22\xc3\x8b\x2a\xbf\x8b\x00\x81\x15\xef\xfa\x89\xf7\ +\xf5\x07\x85\x8e\x31\x2f\x9b\xfc\x4d\x4b\xd2\xb1\x98\x3f\x51\x3a\ +\xae\x47\xfe\x14\xb1\xf8\x03\x5d\x47\x29\xef\xc0\xd7\x27\x16\x12\ +\x18\x4d\xbc\xec\xae\x4f\x35\x93\x82\xae\x2b\xde\xf5\x10\x99\xb2\ +\xeb\x9c\xba\xa3\x8f\xa2\x38\x11\xd7\xc7\xc0\x98\x91\x85\xe3\x70\ +\x76\xec\xdf\x51\xa3\x2f\x93\xcd\x2d\x98\xce\xce\xa0\xdd\xa2\x4b\ +\xbe\x7b\xe0\xd0\x75\x10\x94\x5c\x04\xe7\x95\x4b\x1f\x1f\xca\xba\ +\x55\x05\x58\xdc\xf2\x31\xc7\x9d\x1d\xfd\x4b\xc7\x82\xd5\xcf\xbb\ +\xe0\xb4\x76\x16\x4a\x70\x2c\x06\xa0\xcb\x97\xc6\x2f\x39\xed\x10\ +\x1e\x1b\xbf\x07\xc5\xf5\xf3\x94\xaf\x7c\xd4\xf5\xe3\xe8\xf4\xcc\ +\x3e\x57\x6f\x6e\xc7\x1f\x7c\xf2\xd9\x38\xfd\xe0\x3b\xe3\x57\xfe\ +\xd1\xbf\x37\x1e\x53\xaf\x4e\xd5\x80\xbc\xa5\x2b\x61\xd7\x6f\x0d\ +\x9f\x67\x03\x76\xed\x5f\xe4\xff\xd7\x0d\x6a\x5c\x30\x36\x27\xe8\ +\x58\xfd\xd3\x7f\xf1\xff\x1e\xff\xea\xd3\xff\x62\x9c\x3f\xd3\xd8\ +\x57\x9f\x70\x9e\x2c\x0b\x0f\xf2\x07\x7d\xad\x90\xd1\x07\x6a\xbb\ +\xe3\x9c\x13\x93\x78\x9f\xd6\x12\xb8\x46\x71\xbb\x4d\x48\xd9\x39\ +\x97\xc8\x69\x1b\xb9\xa9\x88\x68\x92\x84\x3e\x00\xcc\xa7\xfc\x75\ +\x8f\x3e\x89\x4b\x69\x48\xc4\x6e\xdc\x22\xc3\x55\xd9\x55\xa7\x68\ +\xda\x16\x3d\x40\xcf\xb0\xe7\x52\xf0\xd9\x9b\xc3\xb1\xd9\x5c\xa9\ +\x66\xb7\xe3\x58\xf5\xf4\x0b\x67\x5d\x50\xda\x97\xd3\x86\xb9\xe6\ +\x35\x5f\x2b\x7e\xc3\xa2\xda\xa5\xea\x77\x35\x36\x37\x2c\x76\xdd\ +\xe8\xba\x02\xbd\x56\x79\x37\x6e\xaf\xbc\x85\xc4\x7a\x32\x24\x0e\ +\x04\xde\xa8\xc8\x57\xba\x1e\xbd\x1a\x37\x77\x9f\x8c\x8b\x9b\x8f\ +\x85\x57\xba\x9c\x5f\x8f\xe3\xd3\x13\x1d\x1a\xc5\xeb\x42\xc4\xa7\ +\xd5\xb8\xf5\xf2\xc9\x8d\x8d\xe6\x63\x94\x91\x39\x26\x9d\xa1\x4c\ +\x49\x26\x52\xbc\xea\x59\xc4\x5a\xef\x31\x19\x4b\xb6\x8e\xbe\x59\ +\xf5\x0f\x7c\xe9\xcd\xef\x50\xdd\x51\xc4\x07\xb3\x50\x86\x1e\xbe\ +\x16\xd0\x8c\xb5\x98\x65\x5f\x51\xfa\xbc\x6d\xdc\x43\xec\xbf\xce\ +\x01\xe2\x13\x9d\x76\xe1\xc9\x50\x3c\x71\x29\xa7\x72\x55\x6e\xe6\ +\xa2\xfd\x09\x34\xe4\x23\xcd\xe1\xf8\xcd\x34\xe6\x72\x7c\x4a\x2e\ +\x7a\xea\x86\xcf\x3a\x26\xe5\xa6\x4c\x72\x0a\x95\x53\xcc\x8a\xa7\ +\x0e\xbd\x71\x3f\x2d\x5e\x54\x82\x68\xea\xe8\x9c\x9d\xcb\x32\xc7\ +\xbb\x62\xcd\x4b\xdb\x31\xda\x42\xa3\xef\xc1\x6c\x3f\xc7\x53\x2f\ +\xe4\x25\x36\xf5\x09\xb5\x5c\x9b\x14\xa1\xce\x05\x44\xa6\xbf\xe1\ +\xad\x11\xc9\xb8\x96\xa5\xae\xc9\x9d\xcf\x46\x03\xbc\xbc\x56\x17\ +\x05\x5b\xb4\xe3\x5a\x0d\x1f\xcb\xcc\x14\xaa\x5d\x8e\x7f\xf8\x60\ +\xf2\x5b\xef\x18\x3c\x21\x19\xa7\xf8\x44\xb7\xa0\xdb\x45\x5c\xf3\ +\x65\x09\x2c\x32\xf6\xec\xf1\x83\x4b\x9f\xd9\x5a\x39\xe6\xb5\x04\ +\x4a\x4e\xeb\x12\x63\x5a\x3e\xf0\x19\x4b\xd0\x1c\x33\x7b\xd5\x78\ +\x21\xaf\x37\xdb\x38\x26\xa2\x7c\x27\x35\x63\xaa\x8e\xb7\x76\xf2\ +\x10\xef\x2d\x39\x9d\xc7\xb9\xa0\x76\xc9\x8e\x3f\xf5\x3f\x1b\x10\ +\x5b\xe4\xd6\x41\xd0\xd7\x19\x6d\xe4\x90\x19\xa4\x44\xef\x45\x99\ +\x88\x05\x73\x36\xb5\x82\x75\x10\xc7\x2c\x3e\xad\xf6\x7d\x5a\x7c\ +\xc6\x24\x6a\x51\xfd\x71\xfb\xbf\xd2\xc5\xef\xd5\xcd\xe5\x78\x79\ +\xf5\x66\xbc\xb8\x7c\x33\x5e\xeb\x9a\x76\x71\xab\x6b\x1b\xd7\xba\ +\xdb\x1b\xd9\x6f\xc6\x85\x1e\x0a\x5f\xcb\xf6\xea\xe6\x95\x7c\x5e\ +\x8d\xe7\xaf\x5f\x8f\xcf\x2e\x44\x2f\xde\x8c\xcf\xae\x2e\xa4\xbb\ +\x34\xbe\xd1\xf3\xf7\x1b\x9e\x23\x75\x8d\x24\xaf\xa7\x58\x55\xff\ +\x6e\x18\xc3\x02\x6e\x35\xf4\x5c\x9f\x8c\xb4\x6a\x17\x71\xa6\x8a\ +\x15\xc3\xef\x81\xc7\x0a\x70\x6d\xbe\xd3\x33\x9b\x74\xd5\x9e\x05\ +\x90\x89\x5c\xe9\x77\xc7\xf8\x0e\x74\x8e\x1c\x1b\x33\x3e\x26\xfe\ +\x9d\x4c\x98\xb2\x2f\x40\xe5\x34\x8f\xab\xb4\xb4\x6e\xab\xc4\x62\ +\x20\xf6\xd1\xee\x96\xf9\xa5\xfd\xd7\xed\x10\x54\x6e\xef\xdb\x20\ +\xba\xed\x23\x54\x8e\x10\xfa\xe3\x68\x5c\x5e\xe8\x6e\xf0\xe6\x7c\ +\xfc\xfd\xbf\xfb\x1f\xaa\xec\x78\xbb\xaa\x33\xb2\xe9\x1e\x7e\xde\ +\x61\x7f\x24\xf7\xb0\x87\xaf\x0e\x32\x47\xd9\xc3\x1e\xf6\xb0\x87\ +\x7f\x5d\x50\x93\xc7\xaf\x1e\x7a\xba\xd0\x05\x78\x06\x6a\x6e\x4e\ +\x24\xc4\x5c\x7d\xf2\x7c\x1c\x6e\x2e\x34\xc9\x3d\x18\xe7\x52\xb0\ +\x98\x96\xc7\x01\x26\x99\x26\x83\xef\x7d\xe7\x85\xc7\x92\x43\x53\ +\xcd\x4a\xb2\x9e\x94\x78\x02\xcd\x9f\x68\xf3\xc1\x30\xec\xbd\x5b\ +\x5d\x79\x3b\xcf\x84\x2a\xd3\xe0\xa2\xb4\xe3\xaf\x2b\xb3\x0b\xa5\ +\x9e\xd6\xce\x37\x0b\xa3\x8c\x52\xfa\xe1\x38\xbe\xed\xe6\xb8\xbc\ +\xd1\xf1\x8b\x61\xbf\x1c\xde\xc8\x8e\xc1\xc6\x35\x74\x54\x00\x29\ +\x2e\xa5\x17\xe1\xd9\xc6\x0b\x05\x2a\x8b\x09\xf9\xa5\x1e\x10\x2e\ +\x94\x8c\xaf\xe4\xb8\xba\xbb\x1d\x37\xb7\x87\xe3\x56\xb8\x39\x38\ +\xc9\x22\x8f\x3a\xc3\x39\xfc\x32\x36\x2f\x9f\x79\x01\xc7\x21\x80\ +\x82\xb7\xd7\xd2\x5d\x8b\xbf\x94\xfe\x46\xc5\xa8\x7e\x7c\x05\x64\ +\x5e\x74\xab\xac\x89\xb2\x57\xbd\xa9\xbf\x34\xda\xc9\x4f\xe5\x78\ +\x31\x41\x75\x9a\x88\x6c\x8f\xe2\xa9\xb3\xfe\xf8\x44\x8d\xeb\x8f\ +\xe0\x07\xda\xe6\x85\x2c\x38\x38\x56\x7a\x78\x1e\x86\x35\x6e\xfc\ +\xa2\xc5\x2f\x97\xa3\xbf\xeb\x05\x34\xe9\xfc\x06\xab\x5f\xbe\xd0\ +\xde\x46\xfc\xe5\xe3\x4f\xc2\x11\x5f\x7a\x2f\x82\xd8\xa6\x87\x2e\ +\x7f\xa2\xee\x24\x8b\x4f\xe6\xc9\x5b\x0f\xe1\xe5\x03\xfa\xd3\x71\ +\x85\xae\x83\xf3\x15\x96\x4f\xf3\x62\x44\x83\x6e\x0b\xe5\xa1\x23\ +\xae\xea\x18\x3e\x32\xf5\x27\xf6\x4e\xe8\x76\x1a\xcb\xa7\xfa\x51\ +\x8c\x79\x5e\x14\x48\x41\x8f\x9a\xba\xdf\x5d\x4e\xca\xa0\x3c\x70\ +\x39\xde\x74\xad\x74\xdd\xbf\xa6\xd1\x25\x87\xf8\x28\x60\xa2\xc7\ +\x8f\x72\xb5\xa9\x54\xcb\xa9\x43\xfb\x09\xfd\x80\x6d\xeb\x54\xd9\ +\x5e\xbe\xf7\xfc\xe1\x55\x3d\xfe\xd7\xde\x2a\xed\x1c\x6b\x36\x3e\ +\x96\x77\x78\xf7\x41\xf7\xe9\xec\x13\xe1\x94\xe9\xbf\xe2\xe9\xf3\ +\xd9\x5f\x60\xe4\x5e\xa4\x72\x1f\xe1\xe7\x7e\x4a\x1f\xa7\xdf\xe2\ +\xef\x97\x30\xf2\xcd\x42\x57\xf2\xe4\x58\x50\xbe\xfa\x54\xf6\x1e\ +\xe7\x8c\x3d\xe7\x75\x6c\xe5\xd5\xd8\xf1\x78\xa2\xbe\xc4\x1d\xeb\ +\x78\xda\x4f\xbc\xc7\x2b\x79\xb0\x31\xce\x44\xdb\xcf\xf6\x94\xdd\ +\x8b\xc4\xfe\x0a\xd3\xe2\xc7\xd1\x32\x36\x0f\xcc\x67\xa1\x14\x9c\ +\x5f\xed\x29\xf4\x82\x36\x79\xe1\xe5\xc7\xa7\x36\xbb\xec\x59\x27\ +\xd5\xd3\xe3\xdf\x6d\xaa\x7a\x17\xba\x2f\xd4\x6e\x53\xb7\x8b\xf6\ +\xeb\x70\xa0\x53\xdd\xac\xa3\x5f\xda\x97\x63\xe4\x81\x26\x6a\x0c\ +\x78\x68\xa0\x9f\x58\xd7\x1b\xae\xaf\x1a\x93\xf9\x07\x06\x44\xbe\ +\x42\x88\x4f\x9a\xdd\x8e\xdb\x9b\xdb\xb1\x81\x16\xf2\xc9\xb3\x3b\ +\xbe\x2e\x8e\xaf\xc5\x15\xdf\xc8\x3f\x26\x1c\xc0\x73\x1d\x53\xac\ +\xbf\x6e\x4d\xe5\x51\xe4\x6d\x5d\x90\x52\x3c\x05\x88\x91\x84\x7d\ +\x82\xaf\xf1\x36\x04\x2c\x3f\x00\xe5\xd6\xbf\x5b\xe6\xba\xb4\xaf\ +\x48\x99\x0d\x4d\x29\x38\xff\x8d\xbe\x2e\x70\x05\xa9\x18\x49\x2d\ +\x1a\x94\x33\x55\xaa\x73\x16\x41\x6d\xba\xdb\xe8\x02\xcc\xfd\xd0\ +\xb2\xff\x02\xd5\x58\x8f\x4d\xc4\xb7\x95\xd5\x50\x66\x13\xef\x2a\ +\x93\xf3\x70\x8f\xa5\xa7\x66\x76\x73\x14\xc9\xb1\xb8\xbe\xd1\x0d\ +\x41\xc7\x99\x71\x78\xfe\xf8\x64\x9c\xdc\x6d\xc6\xf5\xcb\xe7\xe3\ +\xea\xcd\x85\x74\xd4\x97\xbb\xcf\xe7\x81\xb3\x2d\xec\x43\xd0\xfa\ +\xb7\xd9\xd7\xf0\xf9\x85\xfd\xf5\x03\xda\xdb\xdd\x07\x2f\xf4\xfd\ +\x58\xec\xef\xff\xc9\x3f\x1f\x47\x67\x3a\x3e\xbc\xec\x9b\xfd\x52\ +\x0c\x7e\xe1\x76\xa0\x1d\xa1\xf1\x88\x26\xe7\x88\xf3\xac\xa8\xf9\ +\x62\xb8\x04\x64\xdc\xae\x46\x9c\xc4\x87\xca\x21\x9e\x73\x9c\xdf\ +\xc6\x7d\x4b\x45\xee\xc1\x74\x73\x45\x16\x36\x4c\x9d\x23\x05\x75\ +\x4a\x08\xb5\x97\xcf\xcd\xcd\x9d\xbf\x5e\xb2\x7d\x42\xb2\xcf\xef\ +\xe0\xf8\xb2\x33\xae\x35\xef\xba\xb8\xbe\x19\xaf\x2e\xae\xc7\xf3\ +\xd7\x97\xe3\x87\x9f\xbd\x1e\xdf\xfb\xe4\xb3\xf1\xbd\x1f\xfd\x68\ +\xfc\xe0\xc3\x3f\x1d\x3f\xfc\xf0\x0f\xc7\xc7\xcf\xff\xd5\x78\x73\ +\xf1\xa7\xaa\xff\xc7\x8a\x7e\x21\xe4\x2b\xd2\x98\x14\x5d\xa8\xa7\ +\x3f\x19\x9b\xbb\xe7\x63\x73\xfd\x62\x5c\xde\x7c\x3a\x3e\x7d\xf5\ +\xa3\xf1\xd1\x27\x7c\xd2\xe3\x93\xf1\xd9\xf5\xcb\xf1\xe2\xf2\xf5\ +\x78\x7d\x7d\xed\xaf\x2d\xbf\x62\xa1\x4e\x85\x9e\xe9\x9a\x7c\xfa\ +\xe8\x40\x97\x7a\x5d\xff\x0d\x39\xcf\xd7\xed\x89\x22\xac\xa1\x1a\ +\x3e\x55\x5b\xb6\xa2\x0b\x63\xff\xbe\xe7\xe5\xba\x50\xf7\x6d\xa8\ +\x64\xee\x6b\x73\xd3\xfd\x27\x78\x38\xfa\xeb\x1e\x6d\x07\x75\x4f\ +\xb0\x6e\x9c\x0c\x71\x65\x0b\x66\x91\x02\x5a\xf7\x8b\x95\x8d\xdf\ +\x3d\xf3\x6f\x9f\x39\x0f\x39\xc8\xcd\x8b\x73\xd9\xe7\x42\x19\x54\ +\xf7\x24\x7f\xad\x23\xbe\xb5\x90\x56\xb8\x2e\xc3\x75\xe0\x5e\xa5\ +\x9c\x6e\x89\xaf\x41\xb9\xff\xa4\x65\x20\xed\x6d\x5d\xb5\x1d\x6a\ +\xe4\xfe\x04\x47\x3e\xf2\x57\x3e\x97\x91\x7a\x3a\x07\xd4\x6d\xa9\ +\xf6\x23\xb7\x6f\xd5\xd9\xd4\x7a\x65\xef\xf2\x4b\xd6\x5e\x94\xc3\ +\x93\x7b\x21\x7c\x16\x7d\x72\x4c\x5a\xc7\xae\x8f\x4b\x4e\x64\x2c\ +\xc9\x01\xdc\x31\xaf\xe6\xbc\xc6\x26\x9e\x2d\xb9\x41\xbb\x24\x1f\ +\xf6\xf2\xe3\x93\x57\x9a\x8c\x90\xa8\x50\x83\x44\x94\xd8\xec\xb9\ +\x37\x8a\xc5\x97\xcd\x36\xb2\x62\x2e\xdd\xdc\xa8\x3f\xf3\x1a\xfa\ +\x07\x47\x74\xf4\x7f\xf4\x8b\x1f\x9b\xfc\x5a\xc7\x5c\x80\xbe\x90\ +\x2f\xc7\x02\x3e\xfe\xd4\x2b\x7c\xd7\x59\x13\x08\xe7\x75\xa4\x63\ +\x12\xa7\x5e\x97\xac\xb2\x98\x27\x71\xac\x3c\x8e\x72\xcc\x8c\xd4\ +\x83\x63\x62\x5d\x21\x71\x8c\x27\xe6\x38\xd6\xb1\x4c\x96\xf8\x23\ +\x3d\xf3\x1c\x0a\x9d\x47\x3e\x1c\x4b\xff\xa3\x80\x8f\x63\xe7\x0d\ +\x45\xee\x71\xd7\x7a\xbe\x7a\x34\xc7\x5c\x72\x8d\xbb\x8c\x9d\xf2\ +\x55\x2e\xe8\x8c\x73\xfd\xd1\x75\xbf\xb1\x09\xd8\xa1\x2a\xf6\x3e\ +\x60\xec\x13\xdb\x07\xaa\xb0\xe6\x01\x82\xa6\xe6\xfc\xa7\x4d\x61\ +\x2c\xf0\xf0\x08\xc9\xa2\xd7\xa5\xae\x7b\x57\xdc\xab\x45\xf9\xc6\ +\x97\x1b\x7e\x3e\x41\xd7\x1d\xae\x75\xe8\xaf\x6e\x37\xe3\x52\xba\ +\x4b\xd1\x37\x57\x77\xe3\xf5\xe5\xed\x78\xad\xeb\xd3\xab\xeb\xcd\ +\x78\x75\x79\x3d\x5e\xe8\x5a\xf8\xea\xf2\x66\xbc\xd1\x3c\xeb\xe2\ +\x3a\xbf\x63\x4e\x6c\x7e\x5a\x40\xf3\x90\xba\xd8\x76\x3b\xba\x2d\ +\x52\x65\x27\x45\xf8\xf8\x99\x5d\x89\x9e\x21\x48\xb0\x6c\x24\xa7\ +\xda\xc8\x05\x19\x88\xd3\x0a\x28\xa1\x95\x60\xf5\xa7\x60\xcb\xad\ +\x80\x9c\x81\x62\x28\x4b\xb7\x1d\xd3\x68\x76\x80\xf1\xb7\xdc\x33\ +\x7d\xd8\xc2\x6e\x83\x8e\x4d\xce\x05\x47\xac\x9c\x1e\xf4\x5e\x40\ +\x85\x76\xb9\xeb\xdc\xa9\x0d\x8a\xbb\x71\x7e\xca\xef\xdb\x69\x1e\ +\x75\xf3\x59\xec\x5d\x99\x3d\xec\x61\x0f\x7b\xd8\xc3\x5b\x81\x59\ +\xc5\x1e\xf6\xb0\x87\x3d\xfc\xe5\x03\xf3\xb4\x35\x7e\xe5\x90\xa9\ +\x63\x52\xaf\x66\x92\xc0\x2c\xef\x6e\xbc\xfc\xe1\x87\x63\x5c\xdf\ +\xe8\x61\x67\xf0\x13\x39\x71\xc3\xdd\xb3\x61\xbe\xb0\x47\x13\x78\ +\x4f\x84\x85\x3d\x43\xde\x9a\x64\xd6\x63\x4a\xa9\x6c\x2a\xcc\x74\ +\x9b\x49\xb2\xe2\xcc\x4e\x8d\xf6\x01\x32\x2e\x52\x80\x72\x28\xaa\ +\x1f\x18\xbe\x34\xac\x7c\x9d\x33\x85\x15\x84\xa1\x6c\x38\x5c\x41\ +\x7f\xe2\x8e\xb6\xe9\x61\xc5\xc8\xc3\x44\x1b\xb1\x83\xe2\xe7\xf3\ +\x95\xa0\x33\xf5\x9e\x3e\x22\x8d\x7d\xb5\xe3\x19\x9c\x09\x3f\xcf\ +\xd4\x7c\x6f\x24\x65\x1c\xf2\xa0\x20\x3f\x53\x25\xe3\x3f\xb4\xfd\ +\x95\x4d\x7a\x00\xf3\x63\xb0\x7c\x5c\x86\xcb\x49\x61\xc9\x9d\xfc\ +\x14\x60\xbb\x1e\xa8\xa0\xb0\x2e\x4f\x0c\x5f\x4d\x09\x35\xd6\x0b\ +\x80\x84\xd8\xc3\x1b\x8f\xc8\xbd\xd0\x07\xb0\x47\x8e\x0b\x81\xf2\ +\xf2\x4b\x00\x29\xe0\x0b\xf1\xe1\x81\x3a\x0f\xe1\x79\x50\x8d\x0f\ +\x0f\xb0\xe0\xf1\xe0\xa3\x8d\x5e\xb0\x60\xb1\xa0\x16\x17\x0e\x4f\ +\x4e\x2d\xb3\xc0\x90\xaf\x7c\x54\x3c\x2f\x5e\x40\x16\x12\x9a\x16\ +\x9f\x45\x0b\xe5\xb6\x6e\xb1\x2d\xbf\xc7\xc6\xa2\x07\xf9\xa5\x3b\ +\x89\x6f\xa3\x17\x26\x78\xc1\xe2\x72\x28\xb3\x62\xad\x4f\x6e\xff\ +\x57\x24\x0f\xe3\x7e\x20\x27\x67\xf2\x52\x9f\xa6\x41\xda\x1d\x9e\ +\x07\x74\xf7\x97\xf9\xb2\xcb\xc6\x51\x4b\x1f\x94\x1f\xf9\xaa\x5f\ +\x12\x53\xbe\xb4\x09\x1d\xbe\xce\x2b\xea\x58\xd9\x00\xe7\x00\x57\ +\xa2\xb7\x08\xe6\xa6\x4f\xc7\x97\xcf\x4a\x6f\x2c\x5f\x1f\x63\x8b\ +\x75\xec\xc0\x28\xac\x33\x94\x7d\x52\xa0\x69\xfb\xe9\xcf\xb9\x04\ +\x1a\x1d\x19\x27\x80\xcd\xbc\xa4\xa8\xfe\x11\xdf\x6d\x4e\x3f\xd6\ +\x71\x71\x1f\x74\x3d\x69\xaf\x10\x6a\xbe\xfa\x6a\x1c\x2b\x77\xf5\ +\xbd\x6d\xe4\xa9\x7c\xd8\x2b\x96\xfe\x75\x5d\x3c\x3e\xe3\xef\x76\ +\xd9\x2f\xe5\x6e\x2d\xcc\x71\xec\x45\x89\xf1\x7f\xe3\x73\xec\xe5\ +\xd7\x8b\xb5\xf8\xda\xcf\xc7\xec\x48\x7e\xaa\x2f\x2f\x72\x18\x5f\ +\x8c\x1f\xe7\x83\xaf\xb6\xf4\xd8\x66\xdc\x69\x6c\xf9\x13\x9f\x8c\ +\xcb\x13\x8d\xed\x1a\xf3\x46\x8f\xbf\x93\xd2\xc7\x76\x24\xfd\xb1\ +\xf3\x29\x0f\x9f\x2a\x62\x71\xd8\xe7\x45\xe5\xed\x32\xa8\x8f\xfc\ +\x6e\x2d\xab\xee\x8c\x73\x8f\x9f\xb4\x6b\x8d\x5e\x54\xec\xfe\x59\ +\xdb\xe4\xab\x9d\x90\x3f\xed\x84\x5b\xd7\xb3\x42\x48\x78\xed\xb8\ +\x76\x98\xc5\x57\x94\x17\x1e\x8a\xc9\x57\x36\x4a\xe6\xc3\x20\xe2\ +\xc1\x7c\x12\xad\xae\x91\x5c\x33\x71\x76\xfe\xa0\x17\xb7\xba\x10\ +\x30\x55\x31\x3f\xa9\xae\x35\xaa\x25\x35\xab\x82\x2d\x04\x7a\x90\ +\x39\x1f\x14\x6c\x27\x74\xa5\x47\xa2\x3c\xd0\xd7\xed\xd2\x0b\x3b\ +\x55\xa8\xf6\xf9\x73\xe8\x97\x82\x39\xd0\x03\x74\x67\xa0\x5a\xe6\ +\x36\xd3\x51\xdc\x17\xe9\x2c\xda\x56\xed\xa3\xac\x1a\xbb\x51\xdc\ +\x87\x56\x87\xb2\x2f\x0d\x75\x9f\x65\xa7\xb2\x64\xcd\x39\x90\x32\ +\xa2\xd3\xa6\xf2\xbd\x20\xe2\xe2\x6f\xc7\xd1\xdd\xd1\x38\x3f\xd1\ +\xd9\x74\xf1\x66\x6c\x84\x06\x85\xed\x34\xa5\xd3\xde\x87\xb5\xdf\ +\xdb\x62\x3e\x2f\x76\x37\xe6\x17\x01\xe8\x8f\x65\x70\x04\xd0\x69\ +\x70\x7f\xf8\xe2\x8f\x74\xee\xf2\x5f\x39\x3a\x6a\xf6\x6b\x63\x20\ +\xe7\xa6\x99\x15\x64\x7c\xed\x02\x2e\x3b\xa5\xac\x74\x64\xd2\xd8\ +\xd8\xad\xc7\x17\x00\x75\x32\x3e\x58\xe2\x7d\x70\x76\x76\x72\xef\ +\x72\xcd\x68\x0e\xd3\x29\xb6\x32\x21\xa8\x00\xca\xe0\xd3\xf9\x7c\ +\xb2\x3e\xe1\xda\xdb\x16\x82\x36\x67\x10\x1b\x7d\x75\xa0\xcb\xcc\ +\xc1\xb8\xd2\x1c\xe6\xcd\xd5\xed\x78\xfe\xe6\x6a\x7c\xfc\xf2\xd5\ +\xf8\xe1\xf3\x17\xe3\x07\x9f\x7c\x3c\xbe\xf7\xa3\xef\x8f\xef\x7d\ +\xf8\x47\xe3\xc3\xe7\x7f\x34\x5e\xbd\xf9\xb3\x71\x79\xfd\x17\xe3\ +\xe2\xfa\x7b\xf2\xfd\xe1\x78\xf9\xf2\xfb\xe3\xf9\x27\xdf\x1f\x3f\ +\xfa\xf4\x4f\xe4\xf3\xe7\xe3\xfb\x3f\x7a\x3e\x7e\xf0\xfc\xb3\xf1\ +\xc9\xf3\x8b\xf1\xf1\xc7\x6f\xc6\x8f\x3e\x7e\x3e\x3e\xfa\xf8\xf5\ +\xf8\xf8\x93\x8b\xf1\xd1\x27\xaf\xc7\xa7\x9f\xbd\x1c\x1b\x7e\xec\ +\x96\xb9\x8f\xcf\x63\x7a\x72\x56\x6c\x81\x34\xd8\x6a\x1f\x4b\x61\ +\xa9\x04\x7d\x56\xa2\x76\x87\xc4\xa6\x5d\x5f\x7f\xb3\x79\x58\x84\ +\xd7\xb1\x0a\xe6\x7a\xed\xe5\x06\xdf\x7f\xe0\xd1\xc1\x47\x97\x05\ +\x08\xf1\x35\xef\x6a\x7d\x2f\x20\x74\x6c\xa8\xee\x29\xbd\xe8\x50\ +\xbc\x17\x3c\xb8\x1f\x73\xcf\x70\x2c\x71\xba\x07\x35\x0e\xdd\x8b\ +\x8a\x67\x31\xcd\x8b\x20\xa2\xe8\xbc\xe0\x61\x7f\x61\xf1\x29\x97\ +\xbc\xc2\xd6\x79\xeb\x7a\xd3\x4a\xee\xbb\xdc\x57\xc5\xa2\xaf\x6d\ +\xe9\x0b\x74\x42\xae\x93\xbe\x67\xc9\xd7\x75\x26\x3e\x3d\xe5\xbe\ +\x11\x4d\x7c\xf2\xa6\xed\x65\xc3\xd7\x7a\xea\xd6\x7a\xe5\x76\x5c\ +\x95\x25\x62\xae\xfa\xbb\x24\x6d\xca\x5b\xc6\x69\x2b\xfb\xe2\x6b\ +\xc9\x7b\xf3\xed\xb3\xca\x3f\x63\x4a\xc6\x87\x7a\x18\x56\x63\x88\ +\xe1\x65\x7f\x03\x7e\xda\xe3\x27\x86\x7b\x21\x96\x5e\x58\xf2\x02\ +\xab\x7d\x64\xe7\xb8\x4d\x3f\x21\x9e\x94\x8f\x4e\xe7\x88\xef\xd7\ +\xd2\xf9\x6e\x5a\x7e\xf6\xf5\x86\x8f\x90\x98\x9a\x23\x11\x33\x73\ +\x60\x47\xea\x38\xd9\xfc\xb5\xce\xce\x81\x29\xbe\xdd\xcf\x87\xba\ +\xbf\xb8\x0e\xd4\x89\x7e\x47\xd7\xc7\x80\x1a\xfb\xd8\x14\xce\x71\ +\x81\x9c\x85\xda\xa3\x23\x3d\x0b\x30\x37\x92\x3d\x8b\xb9\x39\x6e\ +\x47\xaa\x23\xc7\xd0\x75\xa2\x0f\x2a\xf7\x44\xe9\xe7\xf8\xb6\xac\ +\x7c\x35\xbe\x9d\xbb\xca\x9c\x8b\xcf\xb2\x89\x51\xae\xc4\xb9\xfe\ +\x6e\xa3\xcf\x2c\x6f\x34\x30\x7b\x76\x69\xb3\xf9\x02\x7b\x49\x11\ +\x6d\x1f\xc8\x8e\x90\xbc\x9c\xf0\x86\xc4\xd6\xb1\x90\x8e\xaf\xfb\ +\xbf\xd1\xf5\x8e\xff\xb9\xf1\xff\xdd\x68\x6e\xd2\x0b\x60\x06\xfa\ +\xda\xc1\xf5\x5c\x2d\xcc\x74\x8a\x85\x38\x16\xdd\x84\xb5\x00\xd7\ +\x3f\xb7\xe0\xdf\x33\xc7\xd7\x79\x12\x9b\x67\x63\x95\x2a\xe2\x67\ +\x58\x50\xa9\x6b\x44\xb8\x0d\x78\xce\xf2\x7c\x9d\x8b\x9b\xc7\x8e\ +\x8d\x56\x45\x59\x24\x75\x45\xb0\xea\x8b\xc1\x65\xbe\x0d\x94\xcb\ +\xfb\x35\xa6\x3f\x1e\x06\xf4\x3e\x02\xc9\xbb\x73\x6c\x80\x29\x9b\ +\x89\xdf\x4a\x2b\x28\xbe\x8b\xa0\x23\x0a\xd6\x5e\x0d\x4b\x19\x29\ +\xf7\xe4\xe4\x66\x6c\x0e\x5f\x8e\xd7\x17\x2f\x6b\x1c\xc4\x16\x78\ +\x28\xc3\x1e\xf6\xb0\x87\x3d\xec\x81\xfb\xce\x1e\xf6\xb0\x87\x3d\ +\xfc\xe5\xc2\xbf\xee\x79\x99\xe7\xad\x77\x63\x73\x73\x33\x3e\xfe\ +\xd3\x3f\x1b\x9b\xab\x57\xaa\x92\xa6\xba\x4c\x20\x99\xf8\x6b\x46\ +\x6d\x59\x7e\x88\x4c\xe6\x99\x04\x2f\x53\xcf\x02\xfc\x4b\x30\xa9\ +\x1d\x84\x89\xaa\xa5\xd6\x45\x2c\x85\x72\x89\xb4\xea\xde\xf4\x1a\ +\x45\x3d\x3c\xd8\x76\xcf\x61\x17\xe2\xb0\xed\xb6\xaa\x2d\x8c\xb1\ +\x78\x03\xde\x42\x13\xed\x78\xf0\xf1\x0b\xe3\x32\x55\xb6\xec\x43\ +\xfb\xe1\xb8\x75\x0d\x94\x34\xb5\x76\xe4\x93\x7e\x26\xf3\xe1\x86\ +\x9d\xa9\x1c\xfc\x55\x8d\xa8\xb4\x6f\x5d\x20\x7d\x6e\xd1\x6d\xc7\ +\x31\x0f\x5c\xe8\xfd\x10\x25\xff\xbc\xfe\x69\x3f\x98\xa2\x32\xf0\ +\x52\x9b\xdf\x71\xf1\x8b\x70\xcb\xf2\x94\xca\x8b\x6b\xe5\xcf\xc3\ +\x65\x15\x5c\xe1\x75\x2b\x44\xd7\x0f\xe0\x7a\x28\xcd\xc3\x29\x9f\ +\xce\x0a\x8f\x9e\x07\xd4\x2c\x56\x49\x07\xe5\x41\xf8\x58\x0f\xb9\ +\x2c\x20\x1c\x9d\x8c\x71\xac\x87\x67\x61\x16\xb7\xa0\x7c\x82\x2c\ +\xf9\xc8\xe5\x17\x05\xf0\x2c\x16\x38\x9e\x05\x39\x16\xcb\x14\xcb\ +\x62\x02\xbc\x17\x1a\x14\xcf\xe2\x05\x76\xf4\x42\x16\x1f\xf0\xcf\ +\xe2\xd9\x89\x10\x5b\xf3\xe4\x4d\x7e\x09\xf1\xc3\xdf\x31\x60\xd7\ +\x21\x54\x8c\xfe\x0e\xc4\x52\x0f\xb5\x93\xfa\xc0\x3b\x36\x3e\xb4\ +\xdb\xed\x55\xbf\xf8\xab\x96\xfc\x69\x3a\xfc\x2a\x67\xb5\x01\xbd\ +\x9e\xea\xeb\x77\xe4\xa2\x77\x9b\x15\xe7\x07\x7a\x62\xe9\xdb\xee\ +\xdf\x96\xdd\xe7\xd9\x4d\x7b\xe3\xd4\x21\xae\xfd\xd7\xbe\x2d\xb7\ +\x4f\x51\xf2\xab\xd8\xb6\x07\x1d\xbc\xc8\x93\x8f\x8f\x37\xa8\x79\ +\xc6\x45\x74\xbd\x28\x37\xfd\x8b\x7a\x81\x6b\x62\xda\x4a\x9f\xb9\ +\x7f\xdd\xe6\xf0\xe9\x53\xe5\x70\x9b\xdb\x2f\x31\xbe\xde\x48\xee\ +\x32\x52\xb6\x94\xec\x65\x77\xb9\xe4\x2b\x7f\x29\xcc\xd3\xff\x3e\ +\x5e\xa5\x43\x1d\xaa\xe3\xc4\xf1\x40\x6f\x9f\x1c\xcb\xc8\x41\xd7\ +\xcf\x2f\x77\x32\x3e\x40\x2f\xc6\x15\xdf\xbf\x39\xc8\x38\x3c\x38\ +\x41\x66\x0c\x26\x07\xe5\xf6\x7f\xf4\xfb\x53\x66\xf0\xbc\xb4\xa9\ +\xb2\xe6\x62\x5b\x95\x13\xfd\x32\x9e\xf1\xd7\xce\xe5\x79\x7c\xdb\ +\x5e\xbe\xc4\x93\x4f\xbc\x8c\xd1\xad\xea\x0d\xba\xee\xee\x8b\xb4\ +\x75\xd2\x34\xdf\x58\x3b\x1d\x40\xf5\xab\x2f\x26\x62\xeb\xba\xd1\ +\xe0\xcb\x80\xe5\xf8\xda\xcd\x17\x19\x0c\xba\xea\x88\xcf\x27\x5f\ +\xa5\x68\x7d\x5f\x5b\xb8\xf8\x40\x81\x22\x40\xd2\xab\x3e\xa6\xe2\ +\xc4\x20\xa5\x04\x55\xdb\x23\x4a\xa0\xfc\xd0\x94\xbf\xce\xc3\x4e\ +\xe8\xbf\xba\xf6\xb5\x4f\x5f\xbb\x26\x28\x87\xf2\xf0\x4f\x08\x83\ +\x17\xf6\xc2\xce\x0b\x34\x05\x72\xcd\xde\x01\x0f\xbc\xe2\x0b\x70\ +\x6b\x5c\xc3\xbd\x7b\x90\xa8\xfb\xd3\xfd\x52\xca\xb6\xd5\x41\xc8\ +\x31\xb9\x5f\xc6\x04\xfc\x3b\xa6\xa1\x7c\x1d\x5a\x36\xf7\x9f\xf9\ +\xdb\x19\xe2\xfa\xdc\x46\xf6\x1b\x3b\x8d\xa3\x93\xd3\x93\xf1\xfe\ +\x3b\x4f\xfc\xdb\x51\x17\x9f\x3c\xc7\x62\xb8\x57\x7c\x2b\xba\x7e\ +\xf7\x3d\x02\x0f\xa9\xdf\xe2\xfa\x0b\x0b\xab\xfe\x68\xd6\x63\xfa\ +\x7a\x8c\x4f\x5e\x7c\xa8\xe3\xb2\x91\xcc\x4d\x58\xe3\x52\xfd\xdd\ +\x43\xc5\xb0\x15\x10\x21\xe6\xb5\x93\xc0\x63\xc9\x64\x55\x5c\x09\ +\xd8\x2c\x22\xf3\xcf\x3a\x8b\x87\x61\x47\x5c\xe0\xc0\x9f\x92\xb8\ +\xab\x17\xac\x4b\x91\x6f\x0d\x08\xe4\x84\x0d\x98\xdd\xa9\x6b\x9f\ +\x27\xda\x27\x2d\xe3\x94\xdf\x55\xe4\xc5\x30\x9a\xc4\xcf\x53\xa7\ +\x7c\x50\xf7\xe2\xc0\xad\x69\xe6\x3b\xf4\x1c\x1f\x3c\x7d\x75\x71\ +\x30\x3e\x7d\xad\x79\xea\x8b\xcb\xf1\xc3\x4f\x5f\x8f\x3f\xfd\xe1\ +\x47\xe3\x5f\xfe\xd9\x1f\x8d\x7f\xfe\xe7\xbf\x37\x7e\xef\x4f\x7f\ +\x77\xfc\xcb\xef\xfd\xde\xf8\xfd\xef\xff\xee\xf8\xc3\xef\xff\x8b\ +\xf1\x07\x3f\xfc\xe7\xe3\x0f\x7f\xf8\xc7\xe3\xcf\x3e\xfd\xe1\xf8\ +\xc1\x67\x2f\x14\xf7\x66\x3c\x7f\xf5\x6a\x7c\xfa\x19\x8b\x68\x97\ +\xe3\xe3\x4f\x85\xcf\xe1\xaf\xc6\xc7\x9f\x5d\x2b\xe7\x9b\xf1\xf2\ +\xe5\xcd\xb8\xb8\x50\x79\x2c\x50\x53\x27\xf5\x4b\xea\x46\x5d\x52\ +\xcf\xde\x53\x59\xb7\xab\xa4\x85\x2b\x90\x38\xbb\x49\x74\x1e\xb7\ +\x3a\x88\xf0\x8c\x05\x2f\x42\x34\x5a\x86\x83\xe7\x7e\xc2\xd2\x81\ +\xa8\x17\x10\xa4\xf5\xa2\x40\xe4\xf0\xe8\x56\x7a\xa3\xee\x25\xb6\ +\x8b\xb6\xce\xf1\xba\xe7\x0c\x50\xf7\x2a\xf8\xb2\xf9\xde\x07\xaf\ +\xfb\x58\x3e\x89\xc6\x22\x5a\xec\x59\xec\x88\xce\x8b\x21\xa0\xe3\ +\x62\x27\xce\xf7\x26\x65\xf5\x3d\x51\x7a\xae\xee\x6e\xdd\x6c\xa7\ +\x36\xdb\xd4\x5f\x85\x31\xa3\x77\x87\x94\x4f\x61\xdd\xdb\x12\xa3\ +\x7b\x9c\x9d\xd3\x4e\xec\xda\x59\x65\xb5\x78\xeb\xe5\x1f\x3b\xf5\ +\xa1\x5e\xed\x2b\x1a\x47\xfe\xc4\xf5\x41\xe1\xde\x49\xd9\x21\xf6\ +\x81\x93\xad\xdb\xa2\x84\x8e\x77\x20\x1e\xce\x11\xef\x60\x83\x78\ +\x0e\xbd\xf3\x26\x53\x5c\xc4\xbb\x1d\xa5\x33\x14\x27\xff\xbe\x17\ +\xa1\x51\xed\x9d\x3b\x7d\xd9\x6d\xd2\xfc\xa0\xfb\x98\xba\xa1\x5b\ +\x95\xef\x7a\x4e\x7d\x7c\x2c\xb3\x78\xc6\x57\x28\xc2\x4b\xb3\xa0\ +\xec\xd5\x3e\xe6\xa4\x9e\x47\x88\xe7\x9f\x98\x88\x6f\x9f\xf6\xf7\ +\xa7\xf1\x6e\xc9\x2b\xea\xce\x13\xe7\xb6\xc8\xa7\xeb\xe4\xb9\x32\ +\xf1\x8c\x11\xc6\x44\xc6\x92\x17\x59\x3d\xd6\x8a\xa2\xb7\x4c\x9b\ +\x92\x83\x36\xf2\x4d\x0f\xd4\x5f\x89\xf4\xd7\xe3\x91\xf1\x4a\x19\ +\xda\x73\x5c\x3d\xff\xa1\xec\xd8\x32\x3e\x8a\xe2\x7b\x47\xde\x5a\ +\xf8\x75\x59\xd1\x7b\xb1\x4e\x9a\x64\x4b\xdf\x50\x32\x9b\xff\x5c\ +\x0f\x4b\xa1\x51\x4f\x80\xf7\x61\xb5\x54\x60\x87\x44\x80\xbe\x6e\ +\x1a\x42\xb9\x4e\x75\x60\x66\x20\x8c\xb8\x3c\xff\x01\x5c\xef\x7c\ +\xed\x17\xb6\xb5\x9c\x6d\x80\x30\x30\x4a\x34\xf5\xf3\x36\x8b\x68\ +\x5c\xa7\xd1\xe1\x67\x5f\x7b\x99\xcf\x22\x9a\xa5\x04\x01\x4d\x9b\ +\xe1\x78\x16\xdf\x79\x02\xe4\x50\x4d\xc8\xa3\xcb\xde\xfa\x5a\xc7\ +\x65\xd0\x0b\x77\xde\xa2\xeb\xa8\x35\xf7\xe5\x41\x31\x4e\x02\x0d\ +\xdf\xf9\x77\x21\xfd\x27\xfd\x52\xed\x05\xd0\x4d\xa8\x63\x07\x96\ +\x66\x42\x2b\xa0\x38\xcc\x44\x6d\x58\x95\x6c\x1f\x30\x63\x82\xfa\ +\xf1\x95\x97\x57\x57\x6f\x7c\x0f\xef\xe8\x8e\xdc\xc3\x1e\xf6\xb0\ +\x87\x3d\x3c\x0c\xdc\xd5\xf7\xb0\x87\x3d\xec\xe1\x5f\x1f\xec\xce\ +\xf7\xbe\x22\xc8\x14\x71\x77\x56\x5a\xc0\x44\x53\x93\x47\x7e\xa7\ +\xe2\xd5\x87\x1f\xeb\x01\xe4\xca\x2f\x27\x4f\x98\xf0\xda\xde\xbb\ +\x7c\xd5\xe3\xfa\x3f\xe3\xd6\x30\xab\x0c\x23\xcc\x03\xe8\x43\x7a\ +\x68\x0c\x3c\x4b\xf9\x39\x14\xb0\xc1\xea\x25\x86\x32\x54\x96\xcb\ +\x33\xbb\x2a\xf3\x61\xf6\x73\x21\x45\x68\xb7\x14\x30\xf9\xe4\xd0\ +\x7e\xa3\xa7\x08\xb5\xd3\x0f\x17\x42\x7f\xd2\x02\x63\x61\xfc\x16\ +\xa0\x6f\x93\x22\x79\xfd\x09\xbc\xd5\xed\x04\xb1\x1f\xde\xa8\x80\ +\x9b\x6e\x84\xaf\x18\x76\x46\x80\x07\xb5\x2e\x2e\x13\x7e\x55\xc3\ +\x0f\x65\x50\xc0\x36\x1e\xbc\xd6\xfd\xd1\x90\xc0\x76\xf2\xb1\xec\ +\xaf\x82\xe4\xd8\x25\xd9\xe2\x93\xd7\x7c\xa9\x43\xea\x93\xba\xf0\ +\xe2\x23\x5f\x8b\x13\x1d\x0f\xb0\x79\x19\xa2\xb6\xf9\x85\xbf\xf8\ +\x7a\x30\x9f\x8b\x01\xc7\x27\x92\x59\x5c\x60\x31\xed\x6c\x1c\x1a\ +\xf5\xb0\xeb\xaf\xbe\xc3\x67\x79\x20\x26\xae\x1f\x98\xf3\x69\x1e\ +\x68\xf1\x2c\x3a\xf4\xd7\xe5\x39\x5e\x54\x39\xe7\xa7\x86\x0a\xa7\ +\xbf\x73\x1f\xab\x5a\x2c\xe4\x3d\xe4\xa3\xfa\x97\xaf\x65\xca\xa4\ +\x1e\x8e\xa3\x3e\x42\x1e\xc4\x27\xaf\xb6\x89\x06\xe9\x83\xd2\x83\ +\xb4\x99\x07\x7b\xbf\x1c\x88\x0e\xbf\xee\x83\x5e\xb4\xcb\x42\x56\ +\xf2\xe4\x58\x13\x27\xaa\x0d\xea\x05\x3a\x62\xdd\xa7\x79\x88\xf5\ +\x0b\x0f\x89\xe2\x0a\x21\x8b\x6e\x1e\x9f\xc6\xf6\xb3\x58\xb9\xbd\ +\xb7\x22\x2e\xad\xab\x18\xeb\x8a\x9a\x2f\xb0\xbd\xfd\x1c\xd3\xd0\ +\xb1\xe6\xb4\xab\x1c\x36\x51\xef\x12\x6c\x5a\xda\x3a\xfb\xab\xd1\ +\xed\xa7\xaf\x72\xec\xef\xe8\x1b\xcb\xc9\x3f\x53\x76\x1f\xb0\x6b\ +\x14\x78\xa1\x0d\x2f\xc5\xfa\x13\x61\x3e\x56\x91\xc9\xc9\xd7\x3c\ +\x22\xa7\x5f\x39\xd6\x1c\x03\x78\xf9\x2b\x36\xe3\x20\x65\xfb\x98\ +\xf8\x78\xe1\x23\xe4\x13\x62\xf0\x2d\x2b\xb7\xc7\x47\xe5\x4c\x9b\ +\x14\x0f\xf6\xf8\x3a\xcc\x02\x6e\x16\x80\x95\x77\x8d\xe4\x10\x86\ +\xa6\x0e\xa0\xcb\xae\x31\xe2\xf1\xd8\x7e\x6e\x0b\x58\xb9\xd0\x5b\ +\xd7\x74\x15\x0f\xdf\x7d\xe9\xfe\xd9\xee\x2b\xf7\x91\xfa\xb0\x5f\ +\x8c\x70\xfd\xe1\x3a\xd6\xe7\xbc\x2f\x19\xe2\x21\x06\x98\x12\x72\ +\xb5\x99\x96\xba\xee\x2a\xcf\x5a\x5d\x74\x2e\xca\x17\xb8\x1a\xc6\ +\x2a\xb7\x78\xd5\x36\x9c\x48\x38\xd5\xdb\x9c\x6a\xa8\x1c\x7e\xcf\ +\x43\x84\xfe\xf0\x81\x71\xb1\x70\x93\x81\x8f\x2d\xd8\x1c\x06\x8b\ +\xa2\x6a\x94\xff\x11\x42\xf7\xa8\xd6\x19\x4a\x50\x6e\xaa\x1c\x98\ +\x4c\x60\xcb\x7f\xb1\x86\xee\x18\x95\xbc\xf3\xa7\xfc\x42\xae\xad\ +\xd8\x30\xf8\xa2\x0f\xd5\xce\x74\xc1\x3a\x42\x16\xe6\xb9\x03\x38\ +\x70\x05\x32\x55\x36\x47\xb8\x57\xad\xe3\x25\x28\xc0\x3e\xf7\x64\ +\x5e\xba\x95\x38\xde\xdc\x5c\x8f\xf7\xce\x74\x1d\xdc\x6c\xc6\xf3\ +\x0f\x3f\xf2\xf5\x3d\x7d\xee\xf0\x82\x9d\x72\x57\xa2\x65\x00\x5d\ +\xe5\xdc\x83\xe0\xcb\xf4\x03\xc7\xdf\x7e\x39\xfb\x2e\x6e\x2f\xc6\ +\xab\xcb\x4f\xc7\x89\x4e\xe9\xbe\x79\x27\x8d\xec\x1e\xec\x4b\xc7\ +\x67\x6c\xca\x8a\x83\x9d\xd6\x07\xa5\xa4\x2d\x15\xc2\x6a\x04\x89\ +\xf1\x25\x15\x66\x2a\x17\x78\x40\xa5\x68\x5e\xd4\x8a\xfa\x02\xb1\ +\x03\x69\xc8\x17\x42\xce\x59\xc1\x72\x72\xad\xa0\xae\x05\xda\xb1\ +\xce\x7d\x71\x25\xb9\x8a\xca\x59\x20\x94\xbe\x4b\x9a\xc3\x58\x0c\ +\x56\x96\x06\x71\x07\x89\xbf\x92\xcc\xd7\x66\xbf\xd6\xa0\x7e\xfe\ +\xe6\x7a\x7c\xf4\xf2\xcd\xf8\xc1\x67\xcf\xc7\x9f\x7c\xf8\xa3\xf1\ +\x87\x3f\xfa\xf3\xf1\xaf\x7e\xf0\xc7\xe2\xff\x74\xfc\xf9\xa7\x7f\ +\x31\xbe\xff\xfc\x7b\xe3\x87\x2f\x3f\x19\x9f\xbc\x79\x35\xde\xdc\ +\xbd\x1a\x57\x77\xd7\xe3\x82\xdf\x29\xda\x5c\x8d\xcb\xcd\xc5\xb8\ +\x90\xee\xe2\xf6\xcd\xb8\x14\x5e\x30\xf7\x7d\x75\x39\x2e\x2e\xaf\ +\x33\xc7\x75\x99\x1c\xcb\xaa\x63\x83\xe4\xd4\x6c\xad\x4b\xbd\xef\ +\x43\xfb\xe5\xec\x35\xef\xb0\xc8\xbe\xb7\x34\x55\x27\x6e\x53\xdd\ +\x7f\xbc\xe9\xfa\xcf\x62\x04\x0b\x5b\xd6\xe7\x13\x38\xf1\x11\xb5\ +\xbd\x78\xf9\xe9\x66\x31\xf9\x7c\xb2\x47\x36\x51\x2f\x8e\xb5\x4d\ +\xf7\x94\x2c\x7c\xe0\xa3\xbc\xb6\x93\xbf\xa8\xcb\xca\xa7\x89\xe0\ +\x8f\x0f\x4f\xc7\x31\x9f\x2a\x62\xfe\x85\x4d\x94\x85\xb6\xd4\x2b\ +\xb9\xb9\x17\xb9\x1e\xb5\x49\xa8\xb6\xd7\xb5\xde\x07\xb5\xac\xf4\ +\xa9\x8e\xa1\x7f\xf3\xd2\x71\xed\x1b\xff\x2c\xfa\x64\x43\x47\xde\ +\xd8\x00\xc9\xd3\x4e\x79\xd8\x88\x21\x0f\xed\x83\x06\x03\xc4\x13\ +\x13\x5e\x02\xfb\x20\x79\x56\xf5\x74\x1c\xf7\x56\xcb\x68\xc3\xcf\ +\x08\x62\x8d\xb0\xe1\x23\x34\x69\xbb\xd0\xf5\x49\x96\x58\x24\xb3\ +\xd0\xb5\x02\xae\xed\x58\xfc\xd7\x71\x78\x56\xbd\xc0\x1c\xf3\x42\ +\x1c\xbd\x8f\xad\x73\x6b\xc2\x50\x34\x7d\xd1\x90\xfa\x4b\x2e\xdf\ +\x90\x8a\xa1\x7e\xd6\x09\xb9\x68\xe0\x4b\xff\x99\x96\x2f\x7e\x82\ +\x7c\xcd\xa5\xf2\xb8\x4d\xc9\x97\x4d\xe3\x93\x4f\xab\xb1\x49\xef\ +\xb9\x0c\x63\xc8\x8b\x5a\x1a\x3b\xb5\x30\x3b\x17\xd7\xdc\x8e\x8c\ +\x17\xff\xa3\x90\x64\xa2\x33\x2e\x69\x2b\xed\xc8\xa8\xb7\x9f\xf2\ +\x89\x31\x62\x73\xdd\x8c\xca\xc5\x98\x25\xba\xfc\xc8\x8d\x0f\x9f\ +\x59\xa3\xcc\xb6\xcd\x63\x4a\x9d\x8d\xc5\xcb\x43\x3b\xf3\xda\xf1\ +\x87\x48\x6b\x8b\xea\x3c\x2f\x5d\x30\x9b\xf5\x3a\xd9\x83\x92\xd4\ +\x27\x35\xb4\x7d\x3c\x01\xf4\xd6\x35\x5a\x9d\xeb\xe0\xdb\x80\xd8\ +\xc5\x4e\x39\x21\xd1\x55\x6c\x95\x91\x7c\x05\x16\x84\xa5\x73\xa4\ +\x76\xb4\x27\x83\x1e\x01\xb3\x2d\x82\x2a\xa9\x92\xa4\xae\xe4\x4c\ +\xde\x35\xda\xae\x63\xcf\xfd\xa1\xc1\x69\xc3\xfe\x54\x30\xcb\xd1\ +\xc6\xa7\xeb\x3d\xcf\xdb\x81\x2e\xa7\x7b\xde\xb0\x2a\x3c\xec\x62\ +\xeb\xe3\xd3\xb0\x64\x9c\x47\xae\xa4\x02\x0e\xda\x03\xd0\x63\x85\ +\xfe\x63\xbc\xdc\x6e\x2e\xc7\x0f\x3f\xfa\x5e\x59\x81\x8e\xbb\x5f\ +\xe7\x3d\xec\x61\x0f\x7b\xd8\xc3\x7a\x26\xb2\x87\x3d\xec\x61\x0f\ +\x5f\x35\x30\xff\xda\x9d\x83\xb5\x6e\x6d\xdb\xf5\xf9\x92\xb0\x4e\ +\xb1\x0d\xd1\x32\xad\xdc\xb5\x2f\x93\xcb\xdb\x71\x7d\x79\x31\xae\ +\x3e\xfb\x4c\x0f\x26\x07\xe3\x4c\x06\x1e\x6f\x78\xe1\x12\x20\x92\ +\x97\x1b\xfc\xb7\x5c\x34\x6b\x58\x4f\x4d\xb7\x78\x04\xbf\x90\x8e\ +\x6c\xa8\x89\xac\x27\xad\x50\x6d\xa4\x4c\x09\x3b\x20\xa5\xe7\xda\ +\x99\x7d\x47\xb6\x61\xa1\xc0\xbd\xb8\x15\x2c\xb6\xe2\x54\x6e\x97\ +\x3d\x8d\x45\x29\x86\x05\x34\x16\xd3\xe6\x0b\xd2\x2a\x68\xb7\xbc\ +\xb5\x0c\x38\x85\xdb\x46\x7e\xe5\xf0\x53\x56\x12\x67\x6f\x8b\xcb\ +\x9e\x6d\x87\x76\x5d\xec\x85\x5c\x52\xab\xef\x95\x54\xf2\x2a\x16\ +\x8d\xb5\x65\xe2\x53\x6f\x94\xcf\xcb\x2b\xb7\x09\x3d\x6f\x56\x0b\ +\xad\x2f\x5b\x62\x52\x2e\xf5\xe1\x25\x92\xeb\xa8\xcd\x0f\x62\x55\ +\xce\xd4\x73\x3c\x79\x20\x66\x51\x80\x87\x55\x90\x97\xfe\xb5\x58\ +\x75\xc4\x42\xc1\xb1\x1e\x6d\x4f\x44\x1b\x59\x00\x99\x8b\x20\x1a\ +\x59\x3c\x7c\x43\x59\x3c\x28\x24\x3e\xbc\x72\x77\xfe\xfa\x34\x8f\ +\x17\xc7\x7a\x61\x8d\xc5\x8f\xc6\xb2\xf5\x42\x59\xea\x01\x8a\xaf\ +\x32\xf0\xf3\xa7\x90\x5c\x2e\xb9\xf1\x2b\xa4\xee\x7e\xe8\x8e\x2c\ +\xc6\x3e\x89\x85\x4f\x5b\xfd\x69\x34\xf7\x83\x74\x7e\x18\x17\x6f\ +\x5b\xfa\xc6\x9f\x6a\x3a\xae\xbe\x5a\xc5\x39\x17\x7d\xd6\x88\xbf\ +\x74\x7c\x62\xad\x63\xd1\x33\x4c\xfa\xb7\x1d\x82\xcd\x6a\xb7\x3a\ +\x06\xb0\x11\x17\xd9\x87\xaf\xea\xd4\xe5\xd8\x67\x3a\x63\x42\x4a\ +\x5d\xf0\x2b\xa5\x8f\x29\x7c\x54\xa2\xd4\x49\x72\x16\x4e\xdb\x96\ +\x4c\xf0\xc5\x08\xda\x0e\x29\xde\x7d\x17\x4a\x9f\x8a\x89\xbe\xda\ +\x09\x76\x9b\xcd\xe3\x37\x65\xea\xcf\x4b\x36\xc6\x1c\x63\x53\x3a\ +\xce\x41\x09\x8c\x51\xc6\xa1\x6b\xa1\x3f\x76\x96\x67\x59\xf0\xa2\ +\x3a\xce\x59\x44\xcb\x71\xec\x4f\x14\xfa\x78\xe8\xf8\xbb\xdf\xcd\ +\x1f\xe6\x78\x95\x7d\xbd\x60\x15\x59\x39\x0e\x92\xa3\x5f\x1a\xb6\ +\xdd\x63\x07\xca\x58\x51\x9c\x65\xfb\xad\xd0\x79\x52\x37\xbf\x44\ +\x72\x5c\xa8\xe5\x3e\x56\xc8\xd4\xb5\x6c\x1e\x7f\xa5\xcb\x62\x5e\ +\x64\xf2\x90\xb7\x69\x90\xfc\x8d\xc9\x67\xa4\xcb\xcc\xf3\xa7\x1d\ +\xd7\x00\x8e\xb1\x2f\x02\xf4\xa3\x49\xae\xea\xee\x68\x98\x40\x44\ +\xac\x01\x5e\x76\xe0\x6d\xaa\x0b\x08\x36\x72\xad\xc3\x3c\x7c\x8a\ +\xfa\xd8\x55\x1d\x5c\xf6\x0a\xad\x55\x50\xea\xd6\x79\xf1\x8f\x3e\ +\x0c\x54\xe5\xf8\x05\x1e\xfc\x24\x73\x0f\x64\x3c\xb0\x33\x83\x26\ +\x54\xf2\xc1\xed\xed\xd8\xf0\x51\x96\xba\x49\xf1\x9f\xdb\xe1\x52\ +\x93\xec\xbb\xd0\x05\x22\x69\x0f\xd3\x68\x48\xbb\x2b\x78\x0b\xfc\ +\x12\x88\x3f\x90\xf2\xea\x7e\xb1\xd4\xab\x80\x36\xd7\x38\x77\x4f\ +\x90\xab\xf2\x15\x31\x2c\x7c\xf5\x57\x4a\x0e\x70\x43\xb2\x20\x5d\ +\x75\x5a\xbf\x04\x63\x77\xbb\xe1\x77\xa9\x52\xa8\x46\xc3\x78\x7a\ +\x7e\x3e\xee\x36\x17\xe3\xd5\xa7\x1f\x8f\x2b\x1f\xec\x5d\xd8\xa9\ +\xe3\x43\xf0\x45\xf6\x86\x2f\xeb\xf7\xd7\x1e\xb6\x3b\x82\x4f\x15\ +\x5c\x5c\x5f\xea\x5c\xfb\x6c\x1c\x73\x3e\xfb\xac\xd3\xb1\xd3\x71\ +\xf2\xf9\xbb\x0b\x15\xbe\x8c\xd8\x82\x95\xab\x4f\x1f\xe4\xa2\x31\ +\x69\xbc\x28\xc4\xa3\x2b\x8a\x7b\xf0\x16\xb5\x0a\xe3\x85\x29\xf5\ +\x52\x82\xad\x62\x77\xea\xb0\x06\x25\x5b\xac\x94\xba\x1a\xa7\x13\ +\xa2\x99\x6d\x91\x98\xdf\x4f\xe3\xfa\x99\xb2\xfc\xfb\xac\x1e\xcb\ +\xca\x60\x19\xef\x44\x80\x75\x0a\x8b\x5f\x16\xd5\x90\xf8\xe2\x80\ +\x1b\x19\x99\xca\xf0\xcb\x74\xd7\x9b\xc3\x71\x79\x7d\x37\x2e\x35\ +\xd0\x2f\x84\xaf\xdf\x5c\xfb\xb7\x87\x2e\x6f\x0e\x07\x5f\xb9\xb6\ +\xb9\xdb\xa8\x5c\x16\x9e\x95\x47\xb1\x3e\x4d\xc9\x84\xec\xb9\x90\ +\xce\x18\xd5\x65\x7e\x9d\x1a\x1b\x3e\x75\x4d\xea\x36\x38\x66\x36\ +\x34\x8b\x6e\x86\xa9\xbb\x0f\x3e\x26\xe5\xe0\xbd\x0e\x50\x8e\x3d\ +\xe3\x81\x8d\xb3\x55\x94\xc5\x0a\x70\x2e\x3c\x70\xaf\xd0\x7d\x40\ +\xc8\x27\x6d\xb2\x49\x66\x56\x5e\x7a\xcb\xa2\x59\xb4\x80\x6f\x9f\ +\xda\x9c\xa3\xf3\xe1\xd7\x71\xe8\xc3\x7b\x31\x83\xc5\xb1\xce\xe5\ +\xf8\xe2\x1d\xbb\xc4\xb7\x3f\xe5\xe7\x3e\x88\x0f\xf5\x4f\x7d\x73\ +\xe5\xa1\x7d\xf4\x67\x68\xda\x9a\xf6\x1a\xe8\x40\x75\x9c\xdb\x3e\ +\xaf\xf3\xd0\x42\x03\x34\xe8\x5c\x62\x33\xae\x93\x3f\x42\xa1\xff\ +\x52\xbe\x73\xc2\x1b\xa9\x1b\x58\x47\x29\x09\xa4\xcf\x0e\x3a\xcf\ +\x41\xd1\x19\x8f\x0d\xac\xa2\xd8\xd9\x46\x35\x2c\x93\x0f\xc6\xde\ +\x2b\xda\x0e\x85\xc5\x27\x26\x6d\x08\x62\x83\x60\xa3\x10\xf1\x7c\ +\x9a\xcc\xea\xd8\xd2\x0d\x65\xb7\x5f\xf2\x40\xb9\x8d\x58\xb0\xb7\ +\x95\x65\xcf\xb1\x30\x5f\xfd\xe1\xdb\x81\x92\x65\xe1\x30\x39\x8d\ +\x16\x28\x5b\x3e\x50\x0a\x44\x44\xcf\xb1\x55\xdf\x81\x64\x62\xa3\ +\xf1\xe4\xb4\x9f\xce\x15\x6b\xed\x1b\xa4\xaf\x49\x90\x72\x15\xc7\ +\xb5\x6e\xce\x63\x0a\xd1\x7b\x5c\x31\xd6\x34\x8f\xf7\x38\x17\x2f\ +\xcc\x78\x16\x75\x99\x54\x24\x94\x36\x10\x97\xb1\x58\x58\x79\x5b\ +\xb6\xdd\x32\x79\x8f\x75\x1a\x9f\x28\x1a\x7d\xea\x62\xbb\x73\xa5\ +\xce\xee\x23\xd9\xdd\x26\x9d\x6f\x62\x8c\x6c\xe1\xa5\x73\xbb\x22\ +\x01\x50\x8f\x22\x2b\xd6\xda\xd2\x03\xea\x1b\xae\x53\xee\x72\xae\ +\x63\xc8\x12\xa6\x1d\xc8\x01\x31\xa5\x08\x43\xd3\xf2\x74\x8c\xfd\ +\x5a\x23\x5a\xe5\x22\x67\x38\x57\xd9\xe5\xd7\x8e\x10\xb3\x49\x22\ +\x06\xbf\x18\xfd\x09\x36\xf1\x21\xc9\xd5\xd7\xc1\x2a\xc0\x00\xeb\ +\xeb\x9d\x1c\x3b\x3f\xb7\x87\x62\xed\xdf\xf8\x45\xb0\x64\x5d\x81\ +\x03\xb5\xb3\x31\x57\xd6\xf4\xd7\x92\xf1\x5e\xee\xdc\xdc\x26\xf4\ +\xd1\x32\x4c\x06\x1f\x8e\x6f\x10\xa8\x22\x0c\x33\xa7\x95\xb1\x2f\ +\xe5\x34\x57\xb1\x98\xe3\x22\x90\xed\xf0\x7a\x3c\x7f\xc5\xef\x74\ +\xae\x61\x3a\xec\x61\x0f\x7b\xd8\xc3\x1e\x76\x80\xbb\xeb\x1e\xf6\ +\xb0\x87\x3d\xfc\xe5\xc0\x32\xa3\xbb\x0f\x9f\x67\x7b\x0b\xec\x4e\ +\xf1\x96\x14\x58\x90\x1e\x7a\xf1\x21\x40\x09\x5e\x6e\xc6\x78\xfd\ +\x6a\x1c\xeb\xa9\x8d\x5f\x4b\xbb\x91\x2e\x51\xbd\x31\xb3\x2e\xdd\ +\x92\xfc\x41\x58\xca\x29\xce\x13\xd5\xd6\xa6\x1e\x3d\xf1\x5d\x9c\ +\x93\xd4\xf3\x7b\x70\xce\xe2\x99\x70\x43\xbe\xa0\xd0\x1d\x98\x69\ +\xb7\x80\x49\x33\x64\x95\x4b\xb2\x53\xa3\xd7\x53\x86\x7f\x3b\xcd\ +\x5f\x7c\xaf\x7a\x82\x3b\xc5\x22\xcf\xaa\xec\xd8\x26\xd4\xc4\x3c\ +\xcd\x26\xb1\xc5\xec\xcc\x2c\x09\xac\x9a\xba\x45\x6f\x4e\xfa\x68\ +\xb3\x85\x93\xf2\x50\xb4\x5c\x3b\xa2\x39\xf6\x79\x45\x56\x75\xe7\ +\xc5\x45\xbd\x91\xe2\xf7\x85\xb2\x98\x26\x03\x6d\x15\xef\xc7\x2b\ +\xff\xf1\x10\x28\x5f\xfe\x54\x21\xd7\xbb\x17\x3c\xfa\x21\x99\xc5\ +\x07\x3d\x8c\xa2\xf3\xc3\x29\xfa\x5a\xc4\xc8\x57\xe5\xc9\xc6\xc2\ +\x86\x17\xbb\xd0\xd5\xc3\x2f\x2f\x6d\xfa\x41\x18\xea\xb8\xc4\x77\ +\x6e\xe7\xb7\x2d\x71\xf9\xf4\x5a\x61\xe5\x76\x6c\x2d\x8e\x85\x6f\ +\xc4\x2e\x3d\xbc\xf4\xce\x69\x5d\xea\x99\x87\x7a\xc9\x85\xd8\x95\ +\x34\xbe\x2c\xb6\xc8\xd7\x31\xd3\x9e\xb6\xbb\x7e\xaa\xb3\x04\xd1\ +\x60\xd7\xb5\x65\x2f\xae\xb4\xec\x1c\xd5\x37\x25\xfb\x6b\x6d\x84\ +\x5e\xcc\xb1\x7f\xf9\xe0\x5b\xe5\x4e\x50\xb1\xde\xd1\xe7\x45\xed\ +\x6b\x43\xa8\x8f\x8b\x4d\xe1\x11\x63\x4b\x48\xce\x1f\x1c\xca\x27\ +\x4c\x6c\xc5\x2f\x31\xb6\x9a\x9f\x80\x8b\x29\x4c\x3d\x7c\x57\x7c\ +\x8c\xd2\x99\x84\x8f\xb6\x78\x50\xfd\x96\x85\x93\x87\x70\xdd\x3f\ +\x92\x89\xb4\x1e\x36\x32\xd8\x8b\x33\xae\x6f\x5d\x10\xf2\x6b\x10\ +\x15\x8f\xbe\xfa\x37\xf9\x0e\x7c\x7c\x2d\x1b\x53\x86\x65\x8f\x09\ +\xc9\xf6\x0d\xfa\x98\x72\x1c\x18\x03\xc4\x77\x9c\xc7\x92\x64\x2f\ +\xfe\x32\x9e\x28\x12\xdf\x1a\x73\x7d\xbc\x2a\x4f\xf2\x36\x26\x87\ +\x0c\xe1\x45\xe1\xfb\x93\x88\xc8\xee\x97\xae\x9b\xdb\x00\x8f\x2e\ +\x72\xd7\x39\xed\x88\x2d\x79\xc8\xab\xb1\x64\x5e\xae\x15\xbb\x85\ +\x36\x80\x80\xca\xd2\x81\xf3\xb5\xca\xff\x01\x2c\x15\xd7\x00\xc1\ +\xd4\xab\x5f\x51\xfb\xbc\x37\xb5\x35\xbc\x53\x91\x17\x09\x7b\xe7\ +\x15\xc4\x31\xd0\x7e\xc5\x1a\x08\x0b\x29\x48\xb4\x5a\x22\x36\xf9\ +\xc8\x3b\xed\xab\x7c\x79\x89\x1d\x85\xf7\xc8\x62\x32\x0e\xf4\x57\ +\xbe\xae\x16\x50\x3a\xd7\x5a\xcc\xdd\x66\x33\x0e\xae\x75\xe9\x76\ +\x5b\xe3\xd4\xbe\x6e\x37\x54\x38\xbb\x6b\x82\x84\x2d\xb9\x7d\xa3\ +\xac\x14\x0f\x83\x12\xf3\xc2\x8a\x97\xf1\x5d\x41\xa2\x1c\x59\xc7\ +\xc6\xcd\x00\xd1\x09\x66\xbe\x9d\xc4\x8e\x59\x83\xec\x6b\x9d\xeb\ +\x53\x7d\x47\x28\xed\xf6\x0b\x29\x5d\xcb\x7b\x61\x84\x6b\xe7\xd9\ +\x09\x2f\x28\x6f\xc6\xdd\x8b\x17\x3a\xee\x2c\x3d\xd8\xe4\x18\xc3\ +\x56\xb9\x18\x92\xed\x2d\x0e\x0b\x50\xf0\x6e\x25\x77\xe5\xb7\x41\ +\x15\xf1\xb6\xd4\x7f\xe5\xe1\x0b\xdb\x59\x0e\x10\xb5\x91\x65\xa0\ +\x1f\x7c\xf2\x3d\x31\x37\x3a\x26\x28\x75\x4e\x6b\xf3\xa7\x33\x1a\ +\xd6\x39\xdf\xc6\x17\xa0\x6a\x75\xe8\xfd\x8e\xcc\xa9\xb8\x13\xbc\ +\x23\x36\xa0\xee\xf1\x03\xcc\x6c\x66\x3e\x2f\xa8\x6c\x10\xe3\xfd\ +\x7a\x6c\x03\x65\x8c\x71\x55\x0b\x56\x19\x6b\x33\x58\x22\x88\x57\ +\xd1\x99\x2e\x71\xa9\x23\xd7\xa0\x5c\xc2\x5c\x3c\x68\x88\x7e\xc6\ +\xc8\xe8\xa9\x0d\x73\x1b\x89\xfe\xba\x34\x56\xe0\xe2\x85\x87\x22\ +\x56\x09\x7c\x7e\xb6\xa5\x00\xb9\x0a\x81\xe0\x9f\xe8\xc5\xd1\x76\ +\xf1\xa9\x5f\xd2\x38\xb0\x60\x4b\x74\xff\xe4\x3a\x8e\x8a\xbd\x39\ +\x64\x61\x7f\x0b\x80\xef\x27\xde\xb2\x2c\xd6\x8b\x0a\xdc\x84\x3c\ +\x4f\x81\xda\x12\xea\xfb\x42\xf9\x79\x6e\x63\x5d\xfc\xb8\x57\x78\ +\xae\x55\xb4\x17\x26\x82\x59\xc4\xc8\xc2\x42\x78\xdf\xe3\xc4\xfb\ +\xeb\x1d\xfd\xe9\xb3\x5e\xf4\xc8\xb7\x0d\x64\x61\xad\x7c\x2a\x96\ +\x7a\x24\x4f\xea\xd0\x75\x91\x32\xf5\xb0\x0c\x4f\x5b\xf5\x67\x0a\ +\xc6\xc7\x3c\x14\x3f\xf1\xb3\x1f\x68\xb2\xdd\x60\x64\x26\x87\xb7\ +\xb8\x2f\x92\xec\x2c\x42\xb6\xce\x4c\xd0\x75\x72\x39\x60\xa0\xfd\ +\x52\x1e\x3c\x3a\xf5\x1d\xb2\x3d\x00\x0c\xf2\xd2\xf1\xad\x54\x71\ +\x8c\xb7\xfd\x5d\x4e\xcb\xd0\x1a\x2b\x81\xe8\xda\xea\x7d\x9b\xa6\ +\xa6\x79\xb8\x94\xdd\x75\x40\x97\x7f\xa6\xa1\xde\xe9\x13\x12\x74\ +\xbf\x32\x07\x4a\x64\xbc\x1d\xef\x26\xc2\xa7\xcf\x9b\x76\x8c\xd1\ +\xe3\x55\x72\xa1\xa6\x16\xd2\xf6\x16\x9d\xfb\xde\x95\x25\x6e\xc1\ +\xe4\x09\xe6\xce\x23\x9e\x3c\x50\x0a\x77\x1c\xb4\xc6\xdb\xac\x47\ +\x78\xeb\xd4\xa6\x23\xe6\xd9\xad\x9b\xa8\xb1\xe6\x4f\xb9\x31\x9e\ +\xa8\x17\xfe\xe4\x43\x0e\xed\xf2\xcd\xd7\xef\xb7\xf9\x99\xc0\x36\ +\xca\x42\x97\x71\x9d\x78\xa1\xed\x15\x63\x19\x7b\xd7\x4b\x79\x7d\ +\xcc\xda\xa7\x74\xde\x02\xe1\x22\xf9\xba\x64\x56\xbb\x3a\xff\x17\ +\xa6\xaf\x51\xc1\xdc\x81\x59\xc4\x67\x3e\x20\x5e\xd4\xb6\xa2\xec\ +\x98\xd7\x11\x43\x52\x2e\x87\xf3\xd8\xb8\xdd\x92\xbd\xbb\x0f\xfe\ +\x07\xc9\x59\xa7\xb8\x99\x96\x1c\x93\x13\xc3\x88\x2c\x34\x5f\xe9\ +\xdb\xb1\xa9\x33\x01\x50\xcb\x92\xa8\x0a\x8c\x5d\x51\x08\x73\x2d\ +\x45\x8e\x22\x19\xbe\x18\x3e\xcf\xcf\xa5\xa5\x02\xa6\xce\x8c\x2a\ +\x9a\x07\x81\x7c\xf3\xe8\x88\xb8\x26\xab\x42\xcc\xb2\x2b\x5d\xfb\ +\xae\x5c\x66\x9b\x0c\xed\x5b\xb2\xc9\x2a\x36\xe7\x81\x46\x88\xc6\ +\xec\xc9\xd9\x66\x7c\xfc\xfa\xfb\x96\xfb\x56\xc7\x91\xd8\xc3\x1e\ +\xf6\xb0\x87\x3d\x3c\x0c\xdc\x55\xf7\xb0\x87\x3d\xec\xe1\xe7\x16\ +\xd6\x13\xc8\x35\x1f\xf8\x9c\x69\xa0\x66\x8a\x17\x9f\x7c\x3a\xae\ +\x5e\xbe\x1c\xc7\xe2\x59\x83\x61\x51\xcd\x39\x6a\xd2\x6b\xb6\x68\ +\x73\xb6\xb3\xbb\x5f\x58\x3d\x1c\x40\x63\x9c\x2e\xc8\x65\x6b\xed\ +\x8e\xb8\x94\x43\xd9\x08\x35\xe3\xb6\x7e\x55\x9f\xcf\x83\xf8\x28\ +\x61\xe5\x9c\x85\x78\x56\x1c\x7d\x3d\x63\x44\x4f\x7e\x9e\x70\x58\ +\x50\xe3\x25\x8c\x9f\x88\x30\x7a\x37\x61\x2d\xad\xcd\x53\x0f\xd3\ +\x58\x89\xa7\x08\x14\x93\x6e\xd1\x31\x59\x66\xe9\x05\x92\xcd\x6f\ +\x45\x95\x99\xc9\xbe\xf2\xf9\xbf\x7b\x63\x8b\x5e\x3c\x0f\x5c\x33\ +\xc7\x3a\x9a\x3e\x24\x46\x2c\x0f\x47\x7e\x4a\xca\x83\x92\x3f\xc1\ +\xb1\xc9\x83\x95\x1f\x32\x7d\x6c\xc8\x13\xea\x07\x13\x28\x79\x79\ +\x0a\x9f\xb2\xa8\x9f\xca\xf5\x40\xca\x0b\x00\xa3\x1e\x5c\x8f\xf4\ +\xe0\xca\x02\x53\xd1\x7c\xba\x2c\x7a\xbf\x14\xc2\x26\x5f\x23\x0f\ +\xb2\x1d\x0b\x0f\xb2\xc8\x61\x5f\xf8\xf8\x23\xf3\xc2\xc7\x2f\x1a\ +\xf8\x4d\x2a\x7c\x58\xb0\xe3\x37\xad\xfc\x09\x38\x3d\x48\xf3\xc9\ +\x35\xc7\xb1\x38\x46\x4c\x5e\x0c\xa5\x7c\xf2\x53\xdf\xa5\x3c\xca\ +\x72\x99\xc8\x65\x4b\x99\xa1\xfd\x12\x20\x3e\x6a\xaf\x73\xa3\xdb\ +\xce\xb3\xe8\xe8\x8b\xf4\x0b\xe8\x17\x21\xb6\x55\x9c\xdb\x95\xfc\ +\x52\xd8\xe6\x05\xb6\x8e\x05\x9c\x02\x5e\x39\xaa\x9f\xb3\xb0\x84\ +\x8a\xbc\xa1\xd8\x83\x10\xd1\xb2\xf9\x2b\x94\x50\x55\x6c\xb0\x7d\ +\xca\x02\x1f\xe5\x24\xc1\x2d\xa1\x30\x84\x3a\x44\xd2\x1e\xc6\x03\ +\xcb\x06\x6b\xbb\x2c\xe7\x2e\xda\x0b\x4c\x6e\xab\x75\x6a\x3f\xe8\ +\x1c\x6f\xc1\xd9\x8f\x69\x87\x98\x20\x36\xf3\x90\xd0\x6e\x07\x19\ +\xbb\x8c\xa0\xfa\x5b\xb2\x8f\x7b\x2d\xea\xba\x1e\x8c\x3d\x6c\x1e\ +\x1b\xa0\x22\xa5\xcf\x27\xd5\xe2\xe3\xf1\x55\xf5\x36\x12\xd2\xc7\ +\x8f\xdc\xa2\x12\x8c\xf1\x45\xbf\xc6\xd4\x61\x2e\xdc\x56\x9c\xbc\ +\xad\x77\xdc\x96\x1c\xc4\x57\x8c\xb0\xa8\xfb\xb5\xfe\x7b\x1c\x9b\ +\xf3\xe1\x17\xb4\x8f\xfb\x69\x85\xf2\x4d\xf9\xfc\xe5\x7c\x46\xef\ +\x43\xc5\x27\x30\x38\xf7\x2d\xb0\x0b\xcb\xde\x62\x21\x59\x26\x58\ +\xc7\x8e\x84\xd0\xa8\xda\x19\x93\x39\x68\x09\xc8\x86\xe2\x97\xdc\ +\xca\xd1\xc6\x36\x50\x9f\x62\xc3\x80\xa5\x97\x7f\xab\x67\xa5\xa4\ +\xe8\x72\x4a\x5c\xed\xa2\xe7\x5a\x76\xe0\x7f\x86\xb8\x1d\xb7\xd7\ +\x4a\x84\xda\x3e\x69\x42\xa7\x82\x2e\xaf\x86\x42\xbd\xa7\x9e\xa5\ +\x26\xac\x42\x0d\xab\x1a\x6d\xe9\xe3\x47\x7f\x88\xd3\x75\x95\x17\ +\xf8\x79\xf9\xa4\x18\xd2\x91\xcf\xc8\xb1\x2b\xd9\xaa\xc9\xbc\x15\ +\xda\x37\x10\x61\x51\x89\xeb\xb2\x5c\x1c\x7c\xda\xec\x71\xa2\xf1\ +\x71\x2c\xba\x79\xf9\x62\x6c\xf8\x6d\x35\x7b\xac\xe3\x05\x2d\xb8\ +\xa0\x2d\x8b\x60\x57\x7e\x00\xd2\xcc\x9f\x0c\x88\xfd\x69\xe2\xff\ +\x4a\xc2\xaa\x41\x1a\x70\xb7\xb7\x47\xe3\x7b\x1f\xfd\x85\xae\x15\ +\x9b\x5c\x2f\xdc\xa5\x1a\x79\x1c\x1f\xf1\x8c\x9b\x6d\x28\x4d\xf9\ +\xad\x61\x7d\x88\x8a\x04\x92\xd4\x39\xc3\x4c\xd5\x17\x1e\x41\x4a\ +\xc8\xc2\x93\xb8\xdd\xaa\xa0\xb8\x97\x00\xa7\x1d\x65\xcf\x5d\xde\ +\x0a\xf1\xc7\xeb\xfa\x9a\x4f\x89\xa9\x34\xe6\x2f\xd6\x71\x56\xd5\ +\x99\xc5\x39\x2f\xa6\x17\xaa\x3c\xb6\x43\x82\x6c\x56\xc4\x97\xaf\ +\x82\xf4\x1c\xc5\xc0\xd9\x04\x9f\xd8\x70\x95\xe7\x01\x98\xea\x99\ +\xcf\xd2\xca\x5d\xb1\xca\xed\x6b\xc4\xac\x57\x99\x04\xa9\xd9\x42\ +\x29\xaf\x35\x16\xa8\x57\xd5\xcd\xc7\x9a\xcd\x22\x34\x36\x93\xbe\ +\xde\x5b\xcf\xbd\x61\xc1\xbe\x7f\x44\xd6\x3d\x48\xbe\x5e\x48\xf3\ +\xfd\x2d\x79\xac\xb3\xaf\x6f\x54\xa6\x78\x79\x43\x16\x0d\x26\x3e\ +\xf7\xa8\xe4\xf0\x92\xdd\xda\x7f\xe6\x26\x96\x4f\xa2\xf5\xc2\x59\ +\xe5\x90\x9e\x1b\x22\x79\x35\x89\x99\xb2\x17\x34\xea\x3e\xe8\xb6\ +\xd0\x30\xfb\xab\x7e\xb8\x58\x6e\x8c\x4f\xf7\x01\x40\x2b\xda\x85\ +\x3e\x44\xb6\x60\xd4\x11\x50\xff\xaf\x75\xe1\x81\xe6\xe2\xd7\x49\ +\x7a\x73\x51\xc4\xdb\x69\xed\x5b\xf6\x6e\x97\xf9\xe8\x5c\x67\xc6\ +\x1f\x40\xa0\x0f\x6a\xe4\x78\x96\x8d\x3a\x99\x65\x27\x44\x20\xd6\ +\x24\xe3\xb2\x7d\xd1\xd9\x67\xd1\x84\x37\x59\xe9\x9c\xb3\xea\x53\ +\xf9\xbb\xef\xe2\x05\xaa\x51\xb2\x31\x2f\xf0\x79\xe3\x78\xe9\x79\ +\x16\x70\xd7\x96\xcf\xa4\xa0\x8e\x8f\x8d\x42\xb7\x4d\x78\xa7\xf8\ +\x5a\xc0\xb1\xdc\x88\x5e\xd4\xbf\x01\x8c\x2d\x07\x30\x88\xde\x32\ +\xb1\x91\xe9\x9f\x03\x7f\x62\x2d\x18\x3f\xf1\xa2\x6e\xcb\x2a\x2e\ +\x0b\x5f\xe2\x3d\xbf\x02\xf1\xcf\x38\xf2\xb8\x43\xee\x39\x9a\xc7\ +\x97\x62\x29\x4f\x12\x54\x11\xd9\xf0\xab\xf6\x74\x7d\x3c\x9e\x69\ +\xa7\x78\x8f\x59\xc6\x2e\xbf\x13\xa8\x3c\xf9\x0d\x37\xe9\xd4\x36\ +\xe2\x5d\xac\x53\xc2\xa7\x7e\x46\x08\x00\x4b\xfd\x61\x33\x20\x05\ +\x62\xd4\xe6\x65\x61\x09\x4d\xc7\xb8\xc7\xec\x8b\x09\x95\x17\xff\ +\xcb\xdf\xbf\x03\x89\xcd\x39\xe2\x80\x3e\xe0\x2c\x58\x02\xee\x57\ +\x28\x3b\x78\x67\xf6\x86\xca\x58\x2e\x8e\x2b\x61\xba\x8b\xf1\xa2\ +\x9b\x43\x97\xdc\xb3\x38\x57\x92\x38\x08\xf5\x8a\x00\xb1\xa3\xf5\ +\xb1\x01\x31\xd3\x8e\xcc\x6b\x72\x3c\x17\xc0\xf7\x3e\xc8\x67\xe5\ +\xf6\xb0\x4f\xa0\x6d\xcc\x5b\x66\xbf\x36\xf5\x3e\xe0\xd6\x57\xd9\ +\x5d\x85\x92\x96\xa2\x7c\xcc\xa8\xb9\x34\x53\x29\x40\x44\x26\xe1\ +\x72\x40\x57\xb0\x23\xe3\x6c\x95\x32\x41\xc9\x2b\xfa\xe7\x3f\xfc\ +\x53\x94\x0f\xc0\xba\xa6\x7b\xd8\xc3\x1e\xf6\xb0\x07\x80\xbb\xf4\ +\x1e\xf6\xb0\x87\x3d\xfc\x6c\x81\x39\xd8\x57\x3c\x0f\xeb\x74\x6f\ +\x4f\xcb\xec\xb0\xa7\xca\x0f\xc3\x8b\x4f\x5f\x8c\x71\xf9\x6a\x9c\ +\xe8\x41\x83\x47\x91\x24\x5b\xbd\x3e\xd0\x64\xb7\x27\xe1\xa5\xb2\ +\x6d\x9d\xd3\xfc\x4a\xd1\xec\xd4\x6f\x29\x16\x11\x20\x57\x65\xde\ +\x2a\x03\xde\xc5\x96\x5c\x96\x2f\x0f\x0a\x58\x17\xdd\x42\x9e\x47\ +\xf2\xb0\x02\x40\xfd\xcc\xc1\x4b\x9f\x5e\x54\x43\xb9\x90\x09\xe6\ +\xb5\x4b\xce\x1d\x07\x72\x9b\x6f\x6b\x4d\xce\x2d\x2c\xc7\x20\xee\ +\xf5\x10\x50\x40\x9d\x3a\x55\xe3\x04\xbb\xe5\x3f\x1f\xdb\xb2\xec\ +\x65\x5c\xd2\x04\x3a\x58\xd4\xa5\xfa\x7b\x2c\x4b\x2e\x1b\xb9\xba\ +\xae\x51\x51\x9b\x6c\x79\xb8\x10\xe7\x07\x4f\x6e\x8f\xc8\x7a\x30\ +\xf5\xc3\x2f\x0f\xb2\x92\x65\xf3\x8b\x2d\x3f\xa9\x16\xce\x45\xa4\ +\xbc\x6c\xe9\x85\x31\x63\xc5\x46\x4f\x0e\xd1\x8e\x61\xa1\xc3\x0f\ +\xd7\x1a\x7d\x47\x2c\x86\x95\xae\x6c\xc9\xbb\x50\xbf\x10\x32\x9f\ +\xb2\xfc\x95\x7f\x2c\xb8\xd5\x27\xe4\xfc\x35\x93\x2e\x2b\x8b\x6c\ +\x29\x03\x59\x6d\xaa\x05\x15\x3f\x3c\x9b\xa2\xdf\x46\xd7\xa5\xeb\ +\x20\x7b\xd7\xad\xe3\xc4\x38\x97\x04\x23\xaf\xa5\xba\x3d\xf9\x54\ +\x5a\xe5\x81\x12\xdf\xb1\x94\x6f\x59\x7a\x1e\xf6\x2d\x2b\x87\xc0\ +\x7d\x09\x6b\x51\xfa\xde\x9b\x81\xb3\x21\xfb\x2a\x37\x65\x96\xa5\ +\x74\xda\x95\x2d\xd8\xb2\x9d\x1a\xad\xab\x58\xd8\x69\xd3\x8e\xaa\ +\xd9\x1e\x5b\xe8\x76\x2e\xc6\x8b\x34\x38\x5a\x8e\x84\x2d\x6d\xcb\ +\x8b\x13\x62\x52\x06\x6d\x33\xd2\x37\xd2\x79\x01\x90\xfe\x9b\xfd\ +\x56\x79\x30\xcf\xe3\x24\x59\x6c\x5e\x12\x08\x81\xca\x13\x4a\x1c\ +\xbe\x0a\xa2\x74\xe9\x32\x56\x44\xe9\x5b\x6c\xce\x2f\x9e\x9c\x92\ +\xa9\x9b\x5f\x54\xd6\x31\xea\x7a\x66\x7c\x70\x3c\x12\x67\x4a\x2e\ +\xd7\x85\x1c\xf8\x11\x17\x9e\xbc\xe0\x52\x07\xca\x2f\xde\x75\x93\ +\xcf\xac\x0b\x7e\xb4\x9d\xb1\x81\x5f\x10\xbf\x6d\xec\xdc\x80\xa8\ +\x2f\x08\x8a\xa3\x2c\xab\xe3\xe3\x97\x29\xb7\xd2\x1b\xa5\x7e\xe0\ +\x3c\x5e\x74\xba\x9e\x39\x16\x90\x1d\x5d\xf9\x36\xc0\x25\x6e\x05\ +\x6b\xbf\xe2\xb9\x8e\xc4\x8f\xfd\x7c\x55\xf3\x20\x38\xbb\xe3\x08\ +\x4c\x0e\x7a\xc2\xe5\x77\x81\x98\x40\xbb\x25\xb7\x6a\x5b\x8a\xb2\ +\x8b\x34\x98\xef\x00\x58\xa1\xdf\x93\xa0\xd3\xc5\x8c\x05\x35\xff\ +\xd8\x12\xe8\xea\x61\x14\xb8\x32\x01\x5f\x0b\x4b\xdd\x80\xe8\x7a\ +\x15\x7f\x1f\x54\xb7\x55\xd8\xae\xcf\xbc\x2f\xfa\x6d\x59\xf1\x80\ +\x8e\xa5\x8f\xfe\xd6\x31\xc6\xe0\x5a\xd8\x75\x0b\xac\x14\xec\xea\ +\xb7\xa0\x73\x08\x5c\x94\x7a\xcc\x2f\xbd\xf2\x09\x20\xfa\xef\x91\ +\xc6\x9d\x5f\x18\x5e\x5f\x45\xe7\xfa\xec\x24\xb5\x28\x9f\xcf\x2d\ +\x6b\x07\xda\x77\x97\xfe\x34\xf0\x55\xe4\xf8\x2b\x01\x7d\x50\xd4\ +\x24\xf5\xf7\xb1\xae\x5d\x3f\xfc\xf0\xcf\xfd\xf5\xbe\xbe\xbc\xc8\ +\xce\x46\x83\xe7\xf9\xdf\xe3\x64\x0d\x53\x25\xfb\x4c\x59\x0c\x04\ +\xf5\xd4\x2f\x2e\x31\xad\x0c\x05\xf7\x35\x01\xf4\x1b\xe6\x39\x0f\ +\xd5\x61\x46\xb5\xad\x68\x91\x58\xbb\x34\xf6\xe5\xff\x40\x2a\x2c\ +\x2c\xa4\x5d\x6f\x8e\x64\xae\x71\xbf\x8e\x11\xf5\x02\xd9\x2a\x16\ +\x1e\xdf\xa9\x2a\x06\x82\xad\xde\x0d\x0b\xea\x7a\x44\x7f\xb2\x15\ +\x45\x9f\xeb\x68\xe4\xf8\x22\xd9\x35\xd0\x14\xc0\xa1\x72\xae\xaf\ +\x0f\x1d\x67\xb0\x3d\x75\x72\x5d\x57\xf1\xeb\x54\x80\xeb\xb8\xa5\ +\x6d\x3e\xf5\xf1\xfd\x45\x15\xc9\x82\x58\xee\x47\xf6\x77\xfd\xd1\ +\xe9\xde\xc3\x35\xdf\xd7\xfd\xe8\x96\x11\x04\x4d\xdc\xe4\x7d\xaf\ +\x23\x7e\xa5\x77\x5e\x5d\x07\xac\x23\x5f\x72\xae\x63\xb8\xe7\x4d\ +\x1f\xe7\x08\xe6\x1e\x26\xde\xf7\x3a\x6c\xd9\x5c\x07\x6c\x75\x6f\ +\x4d\x7f\x57\x1d\xad\x87\x87\xe2\x4b\x7d\x20\xf2\x70\xdd\xf4\xc7\ +\x89\x00\xdf\x76\xd0\x17\xd6\xe4\x6a\x5d\x97\x65\xf2\x56\x88\x57\ +\xc7\x34\xa6\x6d\xb0\x2d\x8b\x8a\x6f\x8f\x65\x57\xe8\xba\x59\x69\ +\xd2\x23\x14\x1b\x1c\xfb\x8c\x03\xa4\x6a\x2b\x5b\x8c\x46\x88\x6d\ +\x82\x2c\x6a\xac\x8c\xde\x87\xb7\xc4\x38\xf2\xf8\x40\x45\x1e\xa1\ +\x9b\x4a\x3f\x51\xf7\x75\x19\x9d\xc3\xde\xd6\x9b\xb0\xd5\xfd\xd2\ +\x92\x78\x24\xe7\xaa\xe3\x32\x8f\x03\x8b\x67\x95\xd3\xb2\xf7\xc5\ +\x57\xbe\xd6\x87\xa2\x97\x7f\x1f\x7b\x5f\xbc\xa2\x77\xdf\x32\x3e\ +\xa0\x42\xca\xcf\xc2\x4e\xd5\x41\xf9\xbc\x58\x47\x79\x8c\x2f\x7c\ +\xee\xf8\x7d\x5b\xc6\x54\xd0\xed\xf3\x02\x57\xe5\x77\x1d\x22\x3b\ +\x8f\xca\xa5\x7c\xdb\x1b\x89\xb3\x2e\x1a\x36\x62\xe8\x2f\x36\x6c\ +\xf0\xce\x83\x9f\xcb\x3a\x36\x4f\x2e\xfb\x34\xaa\xbc\xde\x80\x7c\ +\x1d\xa2\x78\x8b\xd2\xa6\x53\x3d\x2c\xcb\xc3\x07\x2c\x7c\x60\xcd\ +\xcb\x58\xd7\x2f\xae\x63\x3b\xa0\x5c\x9e\xd7\x80\x2a\xbb\x17\xd8\ +\xdc\x71\xc4\x74\xff\x9b\xea\xda\x62\x5b\xfc\x1d\x8b\x68\xdf\x1d\ +\x90\x2e\x11\x15\x6f\xc7\xf8\x9a\x35\x8d\x92\x76\x6e\x2d\xec\x09\ +\xbc\x38\x68\xab\x95\xd1\x42\x9b\x8f\x28\x39\x75\x02\x0d\x2a\xae\ +\x4a\xfc\x42\xe8\x90\x7b\xe0\xbe\x80\xf2\x57\xb5\x54\x85\xd6\xf7\ +\xa1\xa5\x8c\x70\xec\x5b\x77\xbf\xfc\xd2\xb8\x0f\xeb\xa8\xae\x9c\ +\x66\x56\xfa\xf4\xcb\x82\x5c\xf1\xde\xf0\x8d\x2e\x77\x9b\xf1\xe2\ +\x05\x5f\xf9\x78\x3d\xfb\x63\x0b\xee\x29\xf6\xb0\x87\x3d\xec\xe1\ +\x17\x1b\xb8\x1b\xef\x61\x0f\x7b\xd8\xc3\xcf\x1d\x30\xf9\x63\x5a\ +\xf7\xf0\x94\xb1\x27\x7c\x9f\x33\xa1\xd4\x53\xc4\xeb\x4f\x9e\x8f\ +\x83\xab\xeb\x71\x7c\x74\xe8\x4f\xa9\xf9\x6b\xac\x64\x22\xba\x27\ +\xbe\x00\xff\xad\x16\x21\x16\x80\xcc\xfd\x6c\x10\xa8\x07\x16\xfe\ +\x6c\x6c\x6d\x43\x6c\x8d\x0f\xce\x75\x5d\x4e\x95\xd5\xfc\x8f\x01\ +\x4b\x4a\x71\x16\x42\x97\x2c\xcb\xe4\x1b\xea\x4f\x6b\x09\xf9\x0d\ +\x35\x35\x72\x29\x17\xa6\x28\xc4\x3e\x95\xa5\xfb\x25\x52\x81\x84\ +\x64\x8e\xb6\x1f\xd0\x0c\xab\xf2\x5d\xb6\x61\x71\x58\x74\xe1\xbb\ +\x0f\xf1\xe1\xc5\x79\x57\x67\x15\x22\xa8\xa8\x2d\xdd\x02\x76\x57\ +\x60\x1e\xec\xc4\xd3\x36\xb4\x45\x26\xd4\x81\xb2\x2a\xec\x64\xf2\ +\xd0\x5b\xa2\x1e\xae\xd3\xbe\xb2\x99\xc2\x8a\xf2\x00\xcb\x03\x71\ +\x3d\x14\xfb\xa1\x7c\x17\x79\xe0\x75\x8e\xf8\xe4\xa1\xb7\xf2\x39\ +\x47\xe7\xe1\x85\x8e\x1e\x8c\x35\x1e\xfd\xc0\x5c\xf1\xd0\xe6\x67\ +\x7e\xec\xe4\x72\x4c\x64\x53\xbf\x58\xc6\xbf\xf4\xfd\xd2\xa8\xca\ +\x06\xb3\xa0\x52\x31\x8d\x92\xc9\x8d\xdd\x0f\xea\x2c\xec\x78\x71\ +\x47\xbe\xd4\xcf\x76\xf8\xca\xd1\x3e\xd3\x16\xcc\xcb\x88\xf0\x1e\ +\xe3\xe5\x6f\xa4\xbd\xd8\x2d\x63\x04\xec\x14\xb4\x0a\xda\x3a\x48\ +\xe9\x45\xfd\x62\x00\xbe\x52\xb5\x5f\xeb\xb5\x8f\xc1\x72\xd0\x72\ +\xe9\x16\x52\x3a\x73\xf8\x89\x05\x9a\x96\xbe\x79\x1c\x5a\xca\x03\ +\x7d\x62\x66\x19\x4e\xa0\x71\xd4\xbc\x51\x95\xac\x7e\x98\x5f\x63\ +\x44\xff\xe9\x78\x78\x5c\x12\xd2\x0d\x41\x86\x2a\xe6\x16\x1d\xc7\ +\xae\x16\xc3\xec\xc3\x6f\x8e\x18\xe4\x43\x0e\xe7\x54\x5f\x7b\xf1\ +\xaa\x8e\x1f\xc7\xb8\x6c\x41\xea\xc6\x38\x88\xcd\x0b\x70\xf6\x13\ +\xfa\x53\x8c\xfd\x49\x46\xca\x13\x52\x1e\xd4\xfe\x15\x67\x3e\xf5\ +\x92\xc1\x7c\x30\xb2\x82\xaa\x1c\xea\x15\x7f\x09\x25\x97\x5f\xcb\ +\x85\xcd\xcf\x17\x3d\x96\xf1\x5b\xca\xb2\x9e\xe6\xfa\x45\x95\x38\ +\xf5\x0f\xba\x8c\x27\x0c\x0d\xb1\xcd\x53\x9a\x53\x7c\x0a\xd1\xfb\ +\x7a\x65\xfd\x34\x18\x72\x1c\x01\x72\x84\x8b\xff\x03\x40\xbd\x04\ +\xc4\xe4\x65\x54\xaa\x61\xad\xc4\xaa\xed\x0a\x96\x3a\xe5\xda\x29\ +\xca\xb5\x6c\xb9\xb9\x6c\xc3\x94\x2b\xcf\xda\x47\xb4\xeb\xba\x1b\ +\x66\x9b\xf2\xdf\xde\xd4\x3f\x43\x90\x7f\x0b\xba\x5e\xab\x48\xab\ +\xd6\x35\x5e\xf8\x45\x47\x5e\xef\xcd\x4f\xb2\x4a\xe3\xb2\xfb\xa5\ +\xd0\x5a\x8f\x40\x22\xe1\xba\x8c\x5d\x88\x46\xfb\xad\xd8\x5d\xc0\ +\x8b\x31\xb0\x5d\x86\xaf\xed\x2a\x9b\xdf\x80\xe2\xf8\x06\x7c\x66\ +\x8d\xeb\xd7\x2f\xc7\x0d\xbf\x29\x87\x4f\x59\x0c\xb3\x0a\x68\x1b\ +\x81\x2d\xaf\x2f\x07\x3f\x41\xc8\x16\xdc\xef\x8e\xc0\x6e\xd5\xfe\ +\xca\xc3\x52\x51\x8f\x8d\xdb\x83\xf1\xc3\x8f\xbe\x3f\xce\xce\xb8\ +\xe7\xa8\x99\x9c\xc7\x9c\xb7\x32\x86\x97\x4f\xb7\x7d\x6b\x92\xd0\ +\xb0\xad\xdb\xed\x26\xe7\x2c\x1e\xf0\xbd\xe6\x0b\x21\x3e\xec\x19\ +\x11\xfe\xbd\x41\x73\x9f\xd7\xc9\x6d\xdb\xce\x1f\x69\x3b\xce\x52\ +\xab\x44\xdd\x0f\x02\xe6\x8c\x37\x57\x35\x76\x1d\xd9\xd7\xa3\x3e\ +\x4d\x91\xe9\x9b\x25\x66\x02\xba\x35\x15\xf0\x02\x7b\x91\xe1\x93\ +\x13\x85\xcf\x60\x77\xae\x35\xde\x41\x41\xbb\x4d\xd8\x12\x0a\xa2\ +\xeb\xba\xac\xcb\x48\x2f\x89\xf2\x4f\x0c\xd6\x05\xca\x6d\x02\x7c\ +\x15\x5f\x86\xba\xa6\xcc\x5d\x8c\xd1\x72\xe5\xd7\x35\x9e\x4d\x41\ +\x9a\xad\x88\xe6\x9a\xef\xc5\x02\xdd\xab\xfc\xe9\xb1\xa9\x7f\x08\ +\x1d\x1d\x1f\x61\xee\x4d\x15\xb3\x46\xfb\xa2\x67\x3c\x96\xbc\xd2\ +\xfb\x1e\x8a\xdd\x7c\x10\x5e\x37\x46\xe5\x84\xb2\x40\xb1\x8a\x57\ +\xac\xaf\x47\x6e\x6c\xea\x9f\x7b\xba\x45\x0d\x69\x38\xfc\x42\x41\ +\x2f\x14\x08\x08\x21\x47\xee\x75\xd1\x2d\x37\x34\xfa\x57\xb4\x65\ +\x3b\xe3\x50\xf2\x44\x40\xb4\x73\xb2\x4d\x5f\xe5\x5d\xc7\x5b\x69\ +\x03\x5e\xe1\xab\xec\xe5\xd4\x8b\xbe\xed\xf6\xf6\xc1\x04\xa3\x4f\ +\xfa\xd8\xc3\x65\xa3\xbe\xf6\x67\x1f\x26\xc5\xaa\x0e\x29\x3e\x7e\ +\xad\xa7\x57\x32\x36\x0a\xf0\x63\xbe\x40\xff\x51\x2d\xf7\x97\x03\ +\xd3\x17\x66\x93\x61\xe6\x01\x69\x63\x0a\x50\x0e\x16\xb8\x7a\x6c\ +\x96\xaf\x0b\x83\xa3\x3f\xc8\xb9\xe4\xf5\xa2\x16\x3a\x8e\xa5\xfc\ +\x98\xaf\x39\xaa\xe6\x19\x6c\x39\x0e\x15\x57\xf3\xdf\xe4\x60\x3e\ +\x4b\x5c\xe2\x5d\xae\xfc\xf2\xc9\xb7\xe4\x73\xbd\x8a\x77\x5e\xc5\ +\x30\x76\x32\x37\xd2\x18\xaa\x39\x98\x11\x3d\x76\x8f\x35\xfc\xa8\ +\xcf\x76\x2e\xb7\xb5\xea\xe2\xb2\x67\xce\xf0\xd4\x65\xfd\xa9\x34\ +\x9f\x57\xd2\xf1\x1b\x84\x19\xb7\xa2\x8a\x4f\xdf\x06\xc8\xd0\xf5\ +\xcb\x16\xa5\x8b\xb4\x24\xac\xe3\xe4\x6b\xa4\x2f\x50\x25\x17\x5b\ +\x62\x40\x75\x5c\xe4\xf4\x5f\xe2\xc2\x4f\x3d\x69\x2b\xd8\xe5\x38\ +\xa8\xfc\x2c\x3a\x6a\x96\x91\xb6\x17\x0a\xf8\x0a\xf6\x1c\x2f\x80\ +\x3d\x36\xc5\x4c\x5d\xe2\x38\xdf\xf2\xb8\xe7\x5d\x64\xa6\x03\x56\ +\x45\x86\x6f\x30\xaf\x5d\x97\x6b\x2a\x7f\x3e\xa5\xd6\xb0\x70\x6f\ +\x83\xd4\xa7\x6a\x75\x1f\xa6\xb2\x0a\x11\xf0\x75\xd5\xae\x62\xc1\ +\xbd\x32\x2a\x59\x87\x6e\xe5\x2d\x61\xfe\x5e\xe2\xae\x17\xea\xad\ +\x80\x07\xe0\x21\xbb\x74\x1e\x8f\x87\x9b\x71\x3d\x5e\x8e\xab\xcb\ +\x8d\xc7\x45\x2a\xb7\x0a\xb0\x72\x0f\x7b\xd8\xc3\x1e\xf6\xd0\xb0\ +\xdc\x65\xf7\xb0\x87\x3d\xec\xe1\x67\x05\x7f\x05\xe6\x5f\xdb\x13\ +\x56\x49\x9b\xdb\xb1\x79\xf5\xd9\x38\xd8\x6c\xc6\xd9\x31\x93\x48\ +\x4d\xbc\x3d\x79\xc4\x73\x8d\x0d\x79\x3c\xf0\x5c\x72\xb6\x27\xf6\ +\xa9\x37\x14\x33\xfd\xb4\x9b\xfc\x42\xa3\x6a\xe5\x02\x9e\xd0\x17\ +\x5a\x0e\xf9\x02\xb8\x9f\xc7\xba\x14\x32\xad\x3c\x4a\xe4\xb1\x45\ +\x79\x7b\x01\x4d\xf4\x56\x7d\xe1\x07\x88\x59\xb8\x5d\x8a\x46\x88\ +\x7a\x65\x6b\x98\xaa\x36\x74\x09\xa5\x59\x0b\xcd\x53\x93\x7a\x18\ +\x98\x2a\x81\x5d\xb4\x33\xd6\x43\x50\x3b\xd8\x56\x0c\xf6\xd6\xb7\ +\xdc\xaa\xc6\x6e\x2d\x12\x45\x75\xde\xad\x0e\x41\x46\xe4\xa1\xb9\ +\x0f\xac\xfe\xb2\x30\xa2\x21\xa1\x07\x61\xf3\x1d\x80\xba\x45\xfb\ +\xe8\x08\x42\x79\x29\xa0\x87\xd8\xb9\xa8\x00\x96\xdd\xe8\xfc\x65\ +\x2f\x9a\xc5\xb3\xf8\xe7\x21\x26\x36\x3f\xec\x96\x7e\xfa\xaf\x70\ +\xca\x65\x97\x22\x71\x8e\x51\x4e\x16\x49\x58\x68\x71\xce\x2e\x23\ +\xf9\xbb\x1e\x77\xbc\x20\x72\xa8\x1e\xb5\x89\xb5\x10\x3b\x3a\x3f\ +\xa4\x5a\x0e\x46\x0e\x6a\xa7\xd4\xb4\x49\x36\xe5\xf1\x4b\x00\xc5\ +\xf5\xa7\x90\x2a\x71\xf8\x2e\xb3\xf2\xb4\x6d\xea\xed\x0f\x69\x7e\ +\xd1\x41\xd1\xf3\x3c\xed\x17\x02\x6d\x93\xe4\xad\xec\x8e\x25\xa0\ +\xec\xd4\xa3\x79\x2c\x2c\x66\xd9\xaf\x36\x2b\x1b\x2d\x47\x58\xfb\ +\xa0\xf1\x73\x3c\xb6\x15\xfa\x98\xb4\x2c\x2f\xfa\xa5\xc7\x8a\xed\ +\x13\xe3\x67\x9e\x18\x1c\xc4\xf3\x72\xc4\x43\xce\x0b\x91\x2b\x9f\ +\x46\x6d\xae\xaf\x13\xe6\x98\x8e\x63\xa1\x17\xbb\x74\x0c\x39\xb6\ +\x6c\xf2\xa1\xdf\xfb\xb7\xca\x7c\x65\x72\x0e\x72\x46\xb7\x60\x8d\ +\x89\x92\xf9\x04\x99\x29\x32\xfe\xb2\xe5\x45\x66\x64\xca\xf7\x27\ +\x7d\xb0\xb9\xdf\xd1\x4b\xae\x98\xc4\xa9\x2c\x8e\x77\xfb\x55\x2e\ +\xa3\xeb\xd2\x72\xda\x23\x66\xca\x0b\x25\x9e\xfc\xe4\x26\xa4\xf3\ +\xc7\x7f\xc1\xe4\xdc\x6d\x63\xdb\x9d\xc7\x76\x5e\x3a\x17\x70\xae\ +\xf7\x56\xe7\x38\x3b\xd8\x85\x8a\x13\xd3\xef\x24\xda\x66\x68\x07\ +\x83\x84\x5c\x38\xda\x3a\x69\xbb\x99\xb2\x4b\x95\x6c\x07\xfb\x7a\ +\xb3\x44\x2f\x65\xc3\x34\xef\xb6\x21\x28\xa0\x8a\x0a\xac\x9d\x9b\ +\x08\xf1\x31\x5a\xa7\x3d\xd7\xef\x1b\xc5\xae\x5e\x02\xad\x81\xfe\ +\x69\xae\x09\x9e\x91\xe8\xa5\xc0\xc3\xd1\x82\x0e\x37\x50\x47\x79\ +\x16\x2e\x3c\x6e\xde\xf9\x78\xd2\x11\x3e\x87\x00\x28\x1d\x53\xb0\ +\x95\xce\xc7\x6f\x81\xb7\xf1\x0d\x29\x8f\x3f\x3e\xa1\xb6\x71\xd9\ +\x0c\x19\xbe\xe5\xf3\x88\x32\x2f\x2f\xc7\xe1\xed\x0d\x2e\x5d\xad\ +\xc0\xac\x4c\x43\xcb\x4d\xa7\xe7\x7d\xf8\x1c\xd3\xe7\xc2\x43\x0d\ +\x78\x08\x3a\xff\x6e\x95\x7e\x6e\xa0\x3a\x5a\xc7\xe0\xc5\x8b\x0f\ +\xc7\xe9\xd9\x89\xc7\x62\xce\x5c\x4e\x69\x19\x38\x18\x25\x4f\x90\ +\xaa\xcf\xbf\x2c\x46\x14\xac\xfa\x01\x96\xa8\xc5\xba\xe4\xf1\x7e\ +\x31\x08\xb6\x04\x43\x34\xa5\x57\xa8\x5f\xaa\x7a\x79\xea\xbe\xef\ +\x43\xf1\x5b\x60\xf3\x03\x3e\xad\x82\x0a\xc9\x7d\xad\xf3\x91\xff\ +\xf6\xb7\xae\xda\xe8\x31\x58\xed\x8c\x2a\x7c\x83\xbb\x48\xc8\x75\ +\xac\x58\xeb\x90\xf1\x24\x6f\xb6\x05\xb8\xfe\xc5\xb2\xec\x7d\x4e\ +\xa1\xcf\x9f\xf5\xb9\x4e\xc6\x6c\xc0\xd6\x3c\x05\x99\xe4\xfa\x44\ +\xef\x64\xa9\x5a\x72\x57\x06\x52\xb4\xc1\xa2\x76\x9d\xc6\x30\xf3\ +\xbb\xd4\xfb\x9b\xeb\x15\x9a\x7b\x41\x21\x73\x12\x23\x17\x0f\xe4\ +\x8c\x9e\xd4\x3b\xb2\xf5\xed\x6b\x5a\xd8\x8b\x07\xf8\x48\xef\x7b\ +\xc6\xcc\x09\x4f\x0e\xe6\x44\xd1\xeb\x4a\x51\x36\x7e\xe3\x2a\x3e\ +\x89\x93\x0f\x0b\x10\x5e\xc4\x28\xbd\x6d\xa9\x03\xfd\xb1\x2e\x17\ +\xbd\x8f\xa7\xed\xa1\xda\x25\xc6\x3e\xf8\xb3\x97\xec\x9c\x6b\x58\ +\xfc\xe2\x0b\x55\x7f\xf7\x18\xc1\x1f\x97\x06\xe9\xe6\x57\x1f\xda\ +\xb0\xe0\xdc\x66\xdd\x5a\x96\x9d\xfb\x74\xf3\xa5\xa7\x9e\x0b\x5d\ +\x65\xa9\xb6\x58\x72\x79\x00\xba\x90\x40\xd9\xb5\x4f\x3d\x00\x47\ +\x4f\xbe\xed\xe6\x29\xc3\x7d\x6b\xc5\x38\xd0\x43\x16\x9b\xe7\x1b\ +\x6c\x6d\xaf\x7e\xc8\xa7\xbd\xe4\xac\xf2\x7d\x6d\x58\xd5\x23\xf3\ +\xad\xf0\x06\xd2\xdb\x2f\xfe\xd1\x87\x77\x33\xb8\x31\x38\xaf\x8e\ +\xeb\xba\xef\xfc\x29\x77\x28\xe5\x89\x5f\xc5\xa7\xae\xe1\x73\xcc\ +\x84\x3d\xdf\x95\xcd\x9f\x9c\xdf\xc2\xf8\xe6\x2b\xe9\xe1\xa3\x77\ +\x7f\xfb\x0f\xbd\x74\xce\x09\x40\xa5\x45\xc5\xb1\xb1\x1f\xfe\x85\ +\xb6\x57\xde\x38\x19\x0f\x9d\xa3\xec\xce\x45\x9b\x84\x55\x2f\x3f\ +\x43\x18\xd3\x4e\x31\xd6\x75\xce\x99\x5b\x34\xfe\x29\x22\x00\x43\ +\x9c\xaa\x9a\xce\x36\xd8\x3c\xeb\x0d\x6c\x05\x95\x89\xfe\x53\x9c\ +\x35\x4b\xb0\x39\x76\xee\xdb\xa2\x5d\x8e\x64\xae\x2e\x3e\x1e\xfd\ +\x70\x06\x14\xb1\x0a\xd1\xa1\x2d\x34\x2a\x66\xb2\x38\x24\x0f\x7f\ +\x3e\x96\x3c\x37\xca\x88\x2e\x8f\xb4\xcc\x13\xa2\xeb\x58\x20\x3e\ +\xc5\x37\x57\x3a\xdb\x8a\xff\xb2\xd0\xbe\x5f\x36\x26\x65\xe0\x4d\ +\x9f\x24\xea\x7e\x2c\xed\xaa\xb6\x95\xc6\xee\x2b\x88\x39\xca\x69\ +\xda\xf1\x09\x2c\xca\x8c\x0f\x60\x15\xa7\x9d\x6b\xa3\x21\x74\x7b\ +\x78\xa3\xdd\x66\x5c\x6c\x3e\xcd\xb9\x25\x98\x7d\xb4\x87\x3d\xec\ +\x61\x0f\x7b\xb8\x07\xba\xb3\xee\x61\x0f\x7b\xd8\xc3\xcf\x08\x7a\ +\xde\xf6\x15\xc1\x57\x93\xae\xb2\x68\xe6\x7d\xf5\xe2\xa5\x5f\x46\ +\xf2\x09\xb5\x5b\x1e\xbe\x34\x67\xf4\x0b\x17\xd3\xb8\x7a\x1a\xc9\ +\xce\xcc\x8a\x76\x65\xd6\x95\xda\xd5\x41\x85\x35\x27\x5e\xf4\x13\ +\x3a\x59\xc1\x2c\xa3\x98\x1d\xf3\x83\xd0\x6f\xa4\xd6\xb0\x53\xce\ +\x4c\xcb\x4e\xb6\x19\xc1\x7f\xc9\xf1\x15\x0f\x8d\x7e\x79\x42\xfb\ +\xe5\x91\xbf\x2f\x04\x79\xc7\x71\x3a\x67\x7a\x4f\xb5\xee\x35\x77\ +\x02\x53\xfa\x6d\xab\x9b\x5c\x93\xf7\xe4\x7a\x20\x5a\xfa\x2e\xc6\ +\x0f\xc1\x05\x70\x29\x6f\x3b\xc6\x52\x3f\x44\xb1\x9b\xf1\x78\xae\ +\x7d\xb9\x15\x3a\x8b\xfe\x64\xa9\x07\xf1\xae\xa5\xfb\xc3\x07\xb1\ +\x7c\x8c\x10\x51\x3d\xd0\xda\xcb\x0f\xa9\x0b\x9d\x0f\xc8\xc2\xb5\ +\xce\xfe\x46\x62\xeb\x81\x18\xde\x76\x90\x87\x60\x61\xfb\x55\xac\ +\x73\x4c\x79\xd1\xaf\xfd\xb4\x53\x73\x53\x1e\x2f\x01\xac\xeb\x4f\ +\x31\xb1\xb0\xd2\x79\xd1\xf3\x32\x49\x3c\x65\xcf\xaf\xe4\x73\x3b\ +\xc2\x37\x95\x77\x5e\x7e\x74\x39\x2c\xce\x94\x9c\x66\x43\xf5\xc0\ +\xef\xf6\xc0\xe3\x4f\x6c\xfc\xb0\xcd\xc5\x97\xce\xe1\xfc\xa1\x6c\ +\x0d\x70\x41\xec\x30\xe4\x29\xa5\xb5\xc8\x8b\xad\xd1\x3e\x65\x63\ +\x0b\xd0\x17\xcb\x03\x74\x62\x38\xfe\x61\x4c\x1d\x5f\x36\xcb\xc5\ +\x6f\xe5\x29\x70\x21\x55\x86\xe3\xda\x23\xfa\xb6\xd3\x2e\xf3\x46\ +\xf1\xe8\x68\x3f\x63\xcc\xaa\xd8\xdd\x37\xf4\x89\xf8\xa5\x2e\x0b\ +\x2e\x65\x40\x49\xd3\x39\x34\x2e\x1d\xbb\xf4\xef\x91\xbf\xea\xf3\ +\x48\xc7\x31\x34\x2f\x56\x96\xe3\x2d\x67\xfb\xc2\xf7\x27\xcf\x7c\ +\x4c\x6b\x31\xcd\xc7\xad\x6c\xe6\x2b\x6f\x8e\x15\xe3\x67\x35\x1e\ +\xed\x13\x1d\xbe\xcb\x4b\xa1\x50\xdb\x57\xb2\x14\x85\xe1\xb3\x00\ +\x59\xba\x6a\x5b\x46\x99\x68\xc5\xb8\x5d\xd2\x2c\xb9\xcb\x26\xbf\ +\xc4\x07\xb9\x04\xcc\xbe\x73\x86\x15\xd4\xf9\x6e\x10\xcd\xf5\x25\ +\xaa\x7e\x61\xb3\xbc\x2b\x56\x6e\x31\xce\xd2\x2f\x10\x62\x10\xb3\ +\xce\xdd\xca\x70\xeb\x6b\x1c\xb5\x8b\x32\x32\xb0\x44\x66\xdf\x39\ +\x53\x6f\x18\xfe\xa2\x64\x3f\xed\x4d\x89\x23\x94\x6b\x98\x75\xda\ +\x95\x0d\x66\xde\xab\x6e\xf3\x29\xb5\xfc\x53\x44\x95\xd6\x7e\x51\ +\xbd\x1d\xaa\xbd\x5b\xb0\x8a\x7d\x1b\xa4\x6c\x5e\x56\xf5\xa7\xc4\ +\xaa\x25\x4e\x97\x7a\xf7\xb1\x2b\xcd\xdc\x6f\xc1\xba\x0c\xf1\x3b\ +\x62\x42\x7c\x7c\x05\x28\xec\x43\xb9\x29\x3f\xbc\xee\xe1\xf2\x39\ +\x3f\x3e\xd6\x7d\xec\x66\x6c\xae\xae\x14\xa6\x98\xad\xe2\xd6\x99\ +\x1f\x82\x07\xea\x06\x3c\xa4\x46\x57\x75\xf9\x5c\xd8\xb5\xbf\xa5\ +\x88\x2d\x7d\xe7\xfe\x79\x81\xae\xbb\xe8\xdd\xf5\x66\xbc\x78\xfd\ +\xf1\x38\x3e\x91\xa8\xe3\x61\x54\x5b\xbc\xa8\x8e\x0b\x3e\x71\x0d\ +\xf8\x04\x4a\x63\xe7\xef\xaa\x16\xe0\x3b\xfd\x76\xa0\xf5\x49\x1b\ +\x69\x5b\xd7\x20\x01\xb9\x90\x31\xe3\x6f\x1b\x00\xb6\x8b\x13\xa0\ +\xb8\xa7\x5c\x60\x2b\xf1\x9a\x5f\x80\x31\xc7\xd5\x9c\xb9\xc9\xcd\ +\x35\x2f\x74\xb3\x14\xe6\xac\xab\xd4\x3e\xaf\x7d\x11\xd8\xcd\x53\ +\xb2\x7c\xdd\x1d\x15\x63\xad\xf8\x95\x2a\x50\xba\x86\x85\xe7\x7a\ +\xa1\x28\x02\x8b\xac\x61\x2b\x47\xc1\x3d\x1d\x0a\xfa\xaa\x72\x18\ +\x24\x76\xf7\x51\x77\x5f\x2b\x67\xf2\x18\xe2\xae\xbd\x43\xb5\xa9\ +\xdf\x82\xb9\x07\x98\x9f\x5b\xee\x03\xd3\x07\x59\xc8\x3d\x89\x7b\ +\x91\xef\x55\xdc\x1b\xec\x13\x7d\x64\xfc\x13\xeb\xf8\xca\xd3\xfc\ +\x5c\x48\xab\x8d\x9c\xce\x51\xd4\x79\x8c\x29\xb3\xf9\x9e\xb7\x68\ +\xb7\xb2\x85\x92\x06\xbe\x18\x23\x5f\xed\x47\x6e\x74\x3e\xa6\x45\ +\x7b\xc3\xc7\xb4\x78\x53\xa3\xf2\x5a\x57\xa2\x76\x7d\x1f\x6b\x7f\ +\xf7\xa6\xfa\x37\xf3\xdc\x2a\xdf\x16\x50\x5b\x09\xed\xef\x58\x23\ +\xa2\x3d\x4c\xbb\x7e\x5e\x78\x42\x15\x69\xee\x7d\x3f\x85\xd3\x5f\ +\xee\xad\x6d\x29\x4a\x9c\x65\x0c\xad\xcf\xde\xda\xd2\x05\xd0\xf5\ +\x00\xc1\x3f\x1a\xf7\x5f\x2d\x94\x79\xa3\x4d\x76\x43\x62\xae\x42\ +\xfb\x9c\xcd\x7f\xd9\x2d\x7d\x42\xac\x17\x4b\x36\xe2\xfd\xfb\xa8\ +\x45\xbd\xc8\x44\x22\xfc\x05\x95\x97\xac\xd8\x5c\x96\xe2\x53\x47\ +\xe4\xee\xf7\xd6\xad\x90\xfc\x2e\x67\x55\xcf\xda\x9c\x17\x8e\x38\ +\xc6\xa4\xeb\x5b\x58\xfd\xeb\x39\x57\xf3\x42\xf2\x1c\x30\x3e\xaa\ +\xec\xb4\x7f\xe5\xef\xba\xc6\x97\xfd\x92\x47\x54\xe8\xfa\x51\x9e\ +\xad\x2b\x1e\x9b\x7c\x5d\x17\xa8\xdb\xd9\xe3\x1d\x1a\xf4\xbc\x4e\ +\x5c\x62\xf4\x37\xcb\x2a\x1d\x7b\xe9\x92\x27\x47\x2d\xdc\xe2\x05\ +\x67\xa0\x2e\x13\xf0\xa5\x2c\x81\xe2\xf3\xcc\x18\xcc\x39\x20\x8a\ +\x0c\xaf\x3f\x17\x2b\xf0\x38\xb6\x5f\x07\x48\x86\x65\x71\x93\x3c\ +\x13\xcb\xad\xfc\xa9\x63\x9f\x5b\x86\x3a\xde\x5b\x97\x71\xed\x4c\ +\x16\x8f\x9a\x00\x00\xff\xf4\x49\x44\x41\x54\x48\x3b\xe7\x43\x9d\ +\x47\x94\x29\x51\xc7\x9a\x5d\x51\x33\x85\xf1\x0f\xe3\x3c\xd4\xed\ +\xc7\x04\x52\x3d\x08\x55\x46\x43\x58\xed\xf9\xe8\x9c\xa1\xda\x26\ +\x58\xe7\x58\xb4\x2b\x7e\xed\xd0\x80\x71\x75\x8c\x26\xb7\x4e\x00\ +\x48\xce\xf5\x29\x30\x53\x95\xc2\x63\x41\x78\x78\xa4\xf6\x1f\x5f\ +\x8f\xcf\x3e\xd5\x3c\x8a\x61\x84\x2d\x64\x0f\x7b\xd8\xc3\x1e\xf6\ +\xf0\x00\xd4\xa5\x72\x0f\x7b\xd8\xc3\x1e\x7e\x06\xd0\x33\xb6\x87\ +\x26\x81\x5f\x01\xfc\x54\x93\xbc\xcd\x66\x5c\xbd\x79\xad\x8b\xe0\ +\xcd\x38\xe5\x37\xa7\x04\xcc\xe1\x49\xaa\xe9\x64\x36\xd5\x9b\xe9\ +\x7c\x83\xcb\xd3\xee\x5e\xb9\xe5\x92\x09\xe9\xd2\xdc\xf9\xe0\x48\ +\x40\xc7\x79\x57\xb0\xe6\xe5\x97\x07\x82\x94\x0b\x06\x26\x13\xd8\ +\x11\x77\xe5\x75\x4a\x0b\x5b\x8a\x76\xaf\x20\x08\xbf\x29\x22\xe4\ +\xe1\x86\x17\xb3\x5d\x2e\xed\x5f\xbb\x15\x1b\xbe\x4d\x4b\x25\xb7\ +\x41\x9d\x90\x07\xf5\xc0\x12\xeb\xac\xe1\xd7\xb1\x72\xdd\xae\xa6\ +\x6c\xa5\x88\xd7\xe2\x9b\xe3\xd1\x18\x88\x54\x0f\x51\x0e\xac\x60\ +\xff\xd7\x68\xdb\x85\x12\x67\xb5\xcc\x47\xe1\x97\x79\x6b\xd9\x31\ +\x8b\x2e\x0f\xa7\xe8\x28\xbd\x63\x42\x1b\x13\xcb\xc3\xf0\x9a\xae\ +\x90\x85\x86\x43\xc5\x79\xc1\xa1\x91\xb8\xb5\x1c\x1d\x7e\x5b\x3c\ +\x0f\xf1\xd6\xed\x62\x7c\x5c\x17\x16\x1f\xe4\xe7\xba\x4a\xf6\x83\ +\xff\xd1\x8a\xa7\xdc\xa2\x46\xf4\x4c\x01\xe4\x3f\xeb\xe0\xb2\x52\ +\x27\xac\xd6\x93\x83\x58\xf1\x5d\x77\xeb\xdd\x0f\x2d\xe7\x65\x42\ +\x72\x46\x3f\x3f\x29\xd6\x31\x2c\xc4\xf1\x69\xab\x92\x6d\x33\x92\ +\xaa\xf9\x45\x97\x3c\xc9\xe7\xbc\xe8\x4b\x17\xab\x9d\xa2\x6f\x04\ +\xa6\x6c\xb7\x45\x2e\x45\xd8\xca\x57\x7c\x83\x73\x1a\x0b\xb0\x31\ +\x70\x9a\xaf\xfe\x89\x0b\xbb\xce\x43\x64\xa8\xf5\xa5\x33\xda\xbf\ +\xda\xed\xb6\x4b\x76\xbf\x13\x1b\x9d\x8f\x8d\xfb\xac\xec\x25\xfb\ +\x38\x14\xfa\x25\xa0\xcb\x47\x26\x07\x79\xab\x7c\xf2\xc9\xe6\x3c\ +\x2c\xa4\x1e\x0b\x7d\xdc\xca\x1f\xbe\x8e\xe3\x3c\xfe\xf8\x36\xef\ +\x4f\xad\xe9\x18\x4e\x1b\x72\xec\xce\x5b\x75\xf2\x31\x34\x52\x16\ +\xc5\x53\x87\xca\x13\x45\xea\x64\x39\x31\x96\xdb\x6f\x62\xeb\xda\ +\x07\xb6\x62\x84\x8c\x67\x97\x5f\xfd\xe4\xc5\xbb\xee\xb3\xda\xcc\ +\x3b\x17\xe7\x29\x3c\x3a\xb9\x09\xfa\x90\x45\xd1\xbe\x9c\xbb\xd1\ +\x6c\xdb\x1f\x86\x58\xc8\x1d\xea\x18\x5e\xd4\x44\xbb\x15\x39\x79\ +\x98\xfa\x4f\x75\x5f\x43\xea\x65\x51\xc7\xe5\x65\x90\xa0\x92\x94\ +\x34\x65\xb3\x6d\x6b\xa3\x13\x45\x68\x9d\xc9\xb4\xeb\x6f\x73\xc7\ +\x3f\x14\xe7\x3a\x8e\x6a\x06\x07\x5c\xbf\xaa\x24\xdd\x64\x2a\xc4\ +\x6b\xb9\x22\x3f\x04\x71\x5e\x7b\x34\xef\x38\xca\x59\xfe\xfd\xdb\ +\xfa\x4a\xbf\x75\x3c\xba\xcc\x6d\xe0\x98\x40\x13\xf7\x36\xc0\x25\ +\xc8\x3e\xe5\xcc\xfb\xa4\xbf\x36\xc9\x5f\x86\xa7\xf1\x72\x30\x4e\ +\x18\x33\xea\x88\xeb\x8b\x37\xf6\x4c\xcc\x4f\x09\x0f\x55\xaf\x75\ +\x9f\x97\x7e\x37\xee\xc7\xad\xca\x43\xe5\xfe\x95\x82\xed\x0a\x7a\ +\x28\xdc\x5e\x8f\xab\xcd\x85\x4e\xe9\x1c\x2b\x1f\x97\x6a\xb7\xc7\ +\x03\x74\xb5\xe7\xbc\x00\xd8\x73\xac\x4a\x3b\x29\xe0\xb0\x95\xa2\ +\xbd\x92\x6e\x4a\xde\x6f\xc3\x4a\xd7\x55\x65\x8e\x93\x37\xaf\xa5\ +\xb8\x0f\x0f\x65\x02\x5a\xbf\x6b\x5f\xeb\xc9\x0a\xbd\x3d\xb8\x1d\ +\x57\x99\x52\x49\xde\x29\x0b\x07\x61\x7a\x27\xc0\xfc\xc3\x32\xae\ +\xe5\x0e\x21\xde\xa2\x76\xd3\xe4\xdd\x12\x4b\x5b\xd8\xa2\x87\xc0\ +\xb7\xa0\xf3\xc1\xd7\x9e\xe8\x9a\x12\x8d\x0b\x5e\xc6\x75\x3a\x59\ +\xe3\xb9\xaa\xf9\x56\xd5\x9c\xa5\xb8\xda\x99\x91\x53\x1f\x2c\xb3\ +\xe1\xfd\xd2\xbe\x22\xd0\x50\x58\xae\xf5\xba\xc7\x40\x99\x37\x34\ +\x2a\xa6\xe3\x1a\x5b\xe7\xb9\x8a\xef\x01\xf1\x85\xef\xb8\xd6\x75\ +\xbe\xdc\x63\x16\xec\x7b\x0b\x94\xad\xf3\x38\x87\xe9\x2a\x3f\x0b\ +\x3c\xb5\x28\x21\xa3\x6d\xc1\xf8\x6d\x21\xc4\xbb\x8e\x4d\xf9\xbd\ +\x30\x35\xfd\xdc\xc1\xc1\x6c\x00\xbd\x12\x8c\x3b\x3b\x70\xa7\x9c\ +\x55\x6c\x40\x14\xd6\xfd\xd8\xa2\x36\xfb\x15\xaf\x8d\x3f\xef\x4a\ +\xbf\xd5\x16\xfe\xac\x6e\xd9\x11\x29\xde\x9c\xc2\xbc\x5f\x15\x6f\ +\x82\x83\x9d\x16\xe8\x63\x0f\x4e\x3e\x60\x6d\x0a\x2a\x0f\xed\xa3\ +\x54\x33\x75\x24\x74\x5f\xf7\xc2\xa9\xcb\xd7\x86\x99\x76\x69\xcb\ +\x28\x65\x41\x44\xb4\x11\x5d\x55\xcc\x84\x1d\x0b\x6b\x98\xca\xbf\ +\xd1\xf1\x1d\xe7\x3a\xd4\x62\x59\xa3\x8f\x55\xf4\xf7\x63\xd7\xc7\ +\x10\x88\x3e\x63\x24\x7a\x8f\x27\xa7\x91\xe0\x39\x0c\x3e\x39\xfe\ +\xc9\x5b\xc7\x97\xb2\x6c\x5b\x63\xf2\x2c\xcf\x10\x91\x7b\x8c\xc6\ +\xa7\xe7\x3c\xb6\x94\x0e\x0e\x05\x7c\xca\xb1\x7f\x61\x8f\xe1\xf6\ +\x8f\x3d\xbe\x81\xd6\x17\x5f\xe5\x9b\x94\xb6\x84\xc2\xb4\x66\x7d\ +\x58\x7d\x69\x11\xa6\x6d\xd1\x19\x88\x2b\xdf\xd4\xa9\x7d\xdb\x49\ +\xd7\x8d\x9e\xff\xe0\xe7\x67\xcd\x4a\x2a\xfd\xf6\xd4\xa8\xf4\x95\ +\x0f\x6c\x8d\x17\xcb\xea\xc2\x38\xeb\x22\x64\x1a\x72\xab\xf9\x56\ +\x4c\xe4\x46\x86\xa7\x22\xfe\x33\xbe\x0d\x1c\x03\x55\x60\xfb\xf2\ +\x0f\x4a\xb3\xfa\xd6\x7c\x11\xd0\x8b\x89\xbf\x07\xa9\x46\xac\xf9\ +\x53\x9d\xa3\x09\x6e\x83\xbb\xd3\x4c\xf1\x50\xcb\x31\x64\xdf\x94\ +\x72\xe1\x5a\xfb\x76\xb0\x47\x95\xef\xbd\x15\x4b\x1c\xfd\xeb\xff\ +\xa1\x53\x39\x9f\x3d\xff\xb0\xb4\xc0\x3a\xf7\xfd\xfa\xee\x61\x0f\ +\x7b\xd8\xc3\x2f\x32\xf4\x5d\x76\x0f\x7b\xd8\xc3\x1e\xbe\x5a\xf8\ +\x19\xcc\xb9\xbe\xd2\x94\x37\x9b\x71\xfb\xe6\x8d\xe6\xa7\x9a\x72\ +\xaf\xe6\x8a\xfd\xb2\xce\x0f\x62\xc8\xde\x17\x48\xb5\x9e\x56\x22\ +\xb5\xbc\xce\xb1\xe5\x53\x31\x3d\x29\x7e\x3b\x54\x49\x10\x97\xbf\ +\x9e\xcc\xff\x18\xd0\x31\x14\xa8\xbf\x07\x53\x94\x92\x17\x92\x5e\ +\x50\xbb\xb9\xf3\x27\x1c\x06\x5f\x51\x54\xb6\xf9\x80\x03\x2d\xde\ +\x54\xe8\x66\x50\xbf\xd6\x2d\xa4\x40\x92\xdb\x50\xa2\x60\x6d\xef\ +\x76\x4d\x1d\xcc\xda\x01\x58\xc9\xcb\x03\x96\x78\xfb\x22\xd3\x3f\ +\x79\xe0\x6a\x40\x1b\x4f\xe9\x65\xb0\x2b\x92\x76\xcb\x03\x87\x6c\ +\xea\x9b\xb6\x01\xd3\x26\x7d\x1e\x6a\x41\x3d\x4a\xba\x0f\xe3\x0f\ +\x85\x2c\xae\xcb\x43\xaa\x1f\x64\x79\xb0\xb6\x1f\x0f\x93\xcd\x47\ +\xf6\xe2\x40\xe5\xb3\x99\x45\x0a\xe9\xbc\x38\x01\x05\x31\xe0\xd7\ +\xbe\xad\x2f\x9d\xa9\x73\xb4\x8e\xfa\x54\x7e\xf2\x16\x6a\xa7\x3f\ +\xe9\xd8\xe0\xdb\x57\x78\xc8\x42\xc8\x5c\x5c\xe1\xa9\x29\x39\x89\ +\x71\x9c\xa7\x04\xe4\x97\x2c\x1b\x8b\x62\x6e\xbb\xe5\xca\x87\xbf\ +\xf9\xd4\xc3\xbe\x8e\x4f\x9e\x2d\xd9\xf6\x50\x8e\xa1\x37\x62\xfd\ +\xe9\xb9\xf8\xb1\xf1\xe7\x98\xe6\xd1\xda\xc6\x31\xd2\x9e\xd4\xe4\ +\x15\xb5\xd2\xb1\xf6\xc2\x19\x85\x37\xd7\xb5\xe4\xc6\x4e\x0b\xba\ +\xcc\x30\x4b\x2e\xc0\xf9\x88\x87\x8f\x6c\xd7\x52\xa4\xdd\xb0\x3d\ +\x62\xa8\xd0\x32\x2e\xf0\x81\xef\x36\x81\x89\xc1\x16\xdf\x1c\x83\ +\x2c\x54\x4d\xac\x3e\xf4\x71\xb0\x4c\x4c\x55\x4c\x3c\x39\x6f\xab\ +\x1f\x6f\x85\xfe\xcf\x60\xfc\x84\xbc\xb4\x16\x17\x7f\xe2\x90\xc8\ +\xd7\x88\x5f\x7d\xbd\xa3\xff\xd3\x1f\x9d\x23\xe4\xef\x97\x3c\xc5\ +\xf3\x52\x4b\xf1\xe4\xeb\xdc\x89\x55\x9c\x17\xcf\x0a\xe5\xa3\x9d\ +\xeb\xe6\x4d\xf1\xce\x61\x4a\x2c\x6d\x5c\x64\x6c\x8d\x79\x79\x9a\ +\xf8\x99\xa7\x78\xb6\xf8\x85\x5a\xb3\xf2\x41\x47\xea\xe4\x57\x3d\ +\x89\x89\x42\x66\x6c\x95\x5b\x3a\xe7\x83\x2f\xc8\xd1\x72\x46\xe7\ +\x2a\x2e\x7e\xbe\x26\x4c\xeb\xa4\x44\xe5\xbf\x93\xe5\xc0\xf1\xef\ +\xeb\x1c\x7a\x6d\xf6\x41\x11\x65\xc0\x7c\xf9\x1b\x56\x57\x2c\xd4\ +\x79\x93\x3f\xe5\x35\x6e\xa9\x29\xab\x15\x86\x59\x62\x1c\x76\x41\ +\x3a\xb7\x83\x38\x7f\x42\x2d\x39\x66\xd9\x0d\x15\xeb\xae\x99\x75\ +\x2c\x68\x19\x9f\xc6\x35\xcc\x31\x5f\x20\xd1\x55\x74\x5d\xab\x5d\ +\xc6\xe8\x0c\xd5\xb9\xcb\xf1\xd8\x2e\xb3\xdd\x52\xd6\x4e\x7d\x56\ +\xe0\xc8\xf6\x05\xaa\xae\xb4\x91\xdf\x20\xf1\xa7\xe3\x2a\xd9\x46\ +\xf4\x4c\xe3\x94\x7f\x8d\xb9\x78\xf9\x4a\xfb\x87\xf2\xae\x75\xeb\ +\xc4\xc0\xae\xfc\x25\xe0\xcb\x86\xbc\xbd\x89\x0f\x43\xfb\xff\x04\ +\x55\xfa\xcb\x83\xed\x46\x21\x5d\x6b\x0c\xde\xdc\x5e\xe9\x32\xc0\ +\xb8\x65\x1c\xd6\x59\xa5\x63\xd3\xde\x39\xcb\xba\x61\xab\x06\xc2\ +\xca\x14\xbf\x78\x65\x0f\x95\x71\xda\x02\xce\x6c\xc5\x2a\xc7\xda\ +\x41\xd0\x62\xfc\x96\x17\xa4\x35\x64\x76\xdc\x77\x82\xd7\x50\xa6\ +\xe4\xd1\x6e\x55\xa4\x01\x59\x6a\xcc\x8c\x77\xbe\xea\xf1\xfa\x8a\ +\xaf\x43\xa6\xbc\x0a\x5e\xe7\xb7\x2e\x38\x4f\x3f\x7c\x91\x4b\x6f\ +\x28\x12\x58\x0a\x0d\x47\x6c\x15\x5c\xa6\xd6\xcf\x40\x2b\xc4\x5b\ +\xec\xde\x14\x54\x07\xcc\x73\x4b\xb4\x59\x83\x2b\x15\x4d\x8e\x24\ +\x20\x9d\xf4\x5b\xf5\x33\x2c\x7c\xf2\xf9\xc8\xd4\x66\x71\xea\xe8\ +\x40\x5f\x13\xee\x6d\x5c\xf7\xfb\x7a\x2e\x44\x67\x5a\x7a\x61\x5f\ +\xef\x27\x8f\x7e\xea\x28\x64\xa5\x6b\x5e\x38\x17\x26\x6a\xa1\xec\ +\x8e\xb7\xc5\xf2\x81\xdf\xf6\x89\x5f\xe7\xe4\x5e\x96\xb8\x60\xff\ +\xf6\x96\x8c\x92\xbb\x3c\xda\x24\x9d\xfb\xab\x7d\xc5\xcb\xd7\x9f\ +\x50\xb2\x1f\x3e\x50\xb8\xf4\x5f\x2f\xd8\xe4\x1f\xee\x24\x43\xfd\ +\x17\x3f\x60\x2e\x90\x99\xb0\x5b\xf5\x7d\xd9\xa0\x8e\xf1\xfd\xb0\ +\xf8\xc2\xf5\x16\x9d\xf6\xf8\x77\xfd\xf9\x9b\x31\x02\xda\x07\xcf\ +\x31\x14\xa6\xfc\xf4\xce\x2c\xc7\x9a\xec\x93\x46\x3b\xfe\x3a\x67\ +\xbc\xcb\x07\x10\x47\x3e\x9b\x89\x09\xfa\x18\x7b\x9e\xd1\x71\xab\ +\xec\xce\x15\x8d\xe7\x3b\xc8\xee\xf7\xaa\x9f\xa8\xfb\x41\x75\x72\ +\xbf\x81\x2c\xaa\xa1\x33\xe2\x1b\x8e\xbd\x9b\x81\x2f\x3a\xbb\x25\ +\xef\xfa\x93\x68\xf6\xee\xfc\x20\xc7\xae\x8e\xa1\x8f\x53\xeb\x8d\ +\xf8\x61\x5b\xfc\x92\x1c\x4c\xdd\xc8\xdf\x7e\xee\xd7\xb6\xef\xe4\ +\xd9\xca\x7b\xcf\xde\xd8\xe3\xf5\x01\x9b\xcb\x4c\xfd\x7a\x63\x7e\ +\x34\xe7\x61\x92\xe9\x1b\x5b\xca\x2f\x20\x8e\x63\x4c\xb8\x75\x66\ +\x2c\x9b\xfa\x3c\x06\x8a\x69\x83\x90\x3d\xb0\xbe\x86\xe6\xf8\xc3\ +\x7b\xe2\x24\xb8\x55\x0e\xf5\x84\x2f\xb6\xe5\xdb\xd4\x0c\x44\x31\ +\x2a\x28\xc7\x92\xba\x96\x93\x33\xda\xd1\xfe\x3d\xe6\x7d\x1d\xe2\ +\x1f\x94\x58\x34\x53\x6c\xf4\x15\x25\xc7\x3c\x0b\xa6\x7e\xf0\xd4\ +\x24\x36\x6a\x03\x13\xff\x28\x83\x90\xf6\x9b\x3a\x72\xcd\x69\x8d\ +\x76\x15\xf6\x10\x60\x26\xa8\xeb\x12\xa8\x3a\x44\x08\x5d\x3a\xb4\ +\x80\xfa\x6a\xcf\x84\x0d\xd8\x29\x23\xde\xec\x57\x99\xc5\x98\xdf\ +\x4d\x65\xbd\x76\x53\x3f\x23\x02\x3b\xe2\x36\xc4\x48\x0b\x0c\x1e\ +\x23\x2a\xf3\x40\xb3\xa8\x83\xcd\xf8\xe1\xa7\x1f\x45\x2f\xf3\x76\ +\xb1\x9f\x9b\x74\x0f\x7b\xd8\xc3\x1e\x7e\xe1\x80\xbb\xd8\x1e\xf6\ +\xb0\x87\x3d\x7c\xb5\xc0\xec\xeb\x5f\xfb\x9c\x6b\x7b\x0a\xb8\x05\ +\x4c\x9a\x6f\xae\xc7\xed\xc5\x85\xaa\x79\x9b\x87\x10\xfd\x65\x62\ +\x9e\xe9\xe5\x9c\x64\xde\xcb\xb3\x34\x6c\xb7\x89\xf5\x5c\xb1\x18\ +\xfc\xd4\x02\xf5\xae\x10\x51\x74\xea\x04\x99\x99\xa7\x6c\xfe\xd5\ +\xee\xc7\x82\xca\xd1\xf9\xf3\x57\x10\x8e\xfd\xf2\x3c\x91\xed\xc0\ +\x8b\x69\x2a\x0b\xbc\x11\xce\x27\x8b\x49\x56\x20\x0d\x75\xb4\x41\ +\xd1\x55\xdf\x05\x16\xd9\xa6\xe9\xb7\xc8\xb3\x4e\x15\x8b\x3c\x75\ +\x6b\xb0\x79\xc7\x92\x90\x09\x49\xc9\xd4\x9f\x17\xaa\xa5\xd0\xce\ +\xbc\xdb\x01\xb3\xe4\xe0\xa1\xd8\x2e\xf8\x14\xb5\x7d\x75\x5c\x9c\ +\xcf\x7e\x7a\xa8\x40\xcf\xdd\xb1\x5e\x54\x00\xdb\xc7\xac\xf8\x7e\ +\x29\x60\xbf\xf0\x7e\x70\x85\x9f\x58\x36\xa1\x29\x89\xcd\x77\x39\ +\xa2\xa0\x3f\xf5\x53\x58\x76\xfb\xcd\x45\x0a\x62\xa5\x03\xfb\x41\ +\x1e\x5d\x95\x07\xef\x1f\x2e\xaf\x9c\x8e\xad\x32\xf2\xa9\xb5\x05\ +\x97\xf2\x8a\x47\x87\x6d\x96\x0d\x8f\x58\xfa\xc2\xf8\xd0\x1b\xc8\ +\x94\x51\xb1\xc4\x09\xfd\xbb\x5e\xa0\xf2\x92\xcb\x8b\x1f\x8d\xe8\ +\x8a\x37\xb5\x8c\xbf\xe4\x6a\x59\x9a\x57\x3e\x08\xcd\x7b\xf0\x72\ +\x64\x80\xd8\x2c\x99\x85\x52\x36\x24\x7c\x11\xed\x14\xe5\x58\x30\ +\x2f\x3b\xb2\x09\x4a\xbf\xd2\x58\x36\xea\x2f\x2f\x45\x5a\x55\x7a\ +\xeb\xb0\x47\x5e\xd7\x73\x1b\xd3\x36\x78\x7c\xdc\x47\xe8\x51\xb1\ +\x38\x55\x0b\x6b\x7e\x69\x87\x9f\x68\xfa\x2a\xfd\xb1\xb4\x83\x17\ +\x4f\xc4\x61\x27\xae\xfd\x79\xc9\x22\x94\x9c\xbe\x0e\xae\x8f\xa5\ +\x38\xe7\xe9\x3a\x5a\xe7\x78\xf1\xe4\x24\x8f\x7d\xe1\xf3\x5b\x78\ +\xfd\x75\x41\xf6\xb1\x9e\x57\x9a\x9d\x0b\xdf\x20\x76\x70\xd6\xd3\ +\x79\x85\xf2\xcd\xf1\x0c\x2f\xe5\xca\xbf\xe3\xb7\x73\x35\x6a\x27\ +\x6f\x48\xcb\x4b\x5f\xa4\x6e\x9c\x39\x4b\x1e\xd2\x7b\xc1\x97\xb6\ +\x24\xb2\x6c\x89\x01\xda\xc2\x8b\x67\x8f\x18\xe7\x8a\xcd\x06\x01\ +\x57\x82\x5c\xf7\xa1\x08\xa9\x87\x23\xfc\xc2\xa7\x9c\x76\x00\xcb\ +\x72\xbf\x80\x2a\xca\x49\x6c\x0c\x9b\x84\xa5\xc3\x4e\xe6\xa6\xe8\ +\x40\x78\x18\x95\x67\x1f\xfd\x75\x1c\x60\x1e\xa9\xe5\x60\x49\x02\ +\xd5\x94\x85\x25\xfe\x31\x82\x7b\x87\xfc\x17\x5b\xb9\x57\x71\x1d\ +\xd7\xe2\x17\x81\x63\x09\xae\x80\xaa\x4a\x41\x25\x43\xe9\x32\x63\ +\x5c\x68\x41\x85\xd3\xab\x6f\x2b\x77\xfa\x0a\x76\x7d\x6c\x5b\x3b\ +\x88\xef\x3e\xf7\xd7\x3e\x96\x91\xcb\x3e\x5f\x7d\x7a\x2c\xf9\xea\ +\xcd\x9b\xa5\xcd\x5f\x15\xa4\x11\xdb\xf0\x65\xca\xf8\x49\xeb\xf1\ +\x55\xd7\xff\x2b\x87\xf4\xfb\x7a\xbf\xd9\xdc\xe8\xbc\xd4\x95\xd3\ +\xe7\xe4\x02\xf3\x7c\x8c\xdb\x03\x20\xfb\x83\xed\xed\x80\xed\xb1\ +\x63\x7e\x15\x12\xba\xe3\x83\xb0\x56\x08\xf2\xfe\xf2\xa1\x4a\xe0\ +\x98\xbb\xc3\x3d\x90\x6a\xd6\xfb\xad\xf5\x17\xc8\xe6\xb1\xa8\xbf\ +\x8d\x0a\xba\xe1\xc5\x6f\xa7\x8b\xba\x20\x4a\x64\xeb\xbc\x93\xae\ +\x7c\x74\x16\x97\x6e\x12\x53\x6a\xd7\x27\x60\xeb\x7b\xd1\x05\xb0\ +\x2e\x8e\x3e\x3f\x4c\xd1\xa1\x32\x43\xed\x96\xb2\x23\x07\x76\xe9\ +\xe2\x01\x54\xdd\x7c\xae\x2d\xb0\xe6\xe9\xec\x87\xfb\x2e\xfa\xed\ +\x4d\x17\x6e\xed\x6d\x9b\x58\xd7\xf4\xba\x6f\x58\x86\x47\x57\x98\ +\xab\x7f\xd9\xcb\xc7\x79\x8c\xc8\xa1\x73\x31\xa3\xe3\x3a\x3f\x3e\ +\xde\xa0\xdc\xe7\xb8\xbe\xb7\xbe\xb0\xeb\xc3\x7d\xd4\x5b\xe5\x12\ +\xb7\x7d\x5f\x8b\x6e\xd2\xca\x93\xfe\x5d\x30\x8b\x36\x3b\xbe\x20\ +\x65\x34\xdf\xa8\x63\x99\x63\x5c\x08\x98\x16\x2f\xca\xe6\x7a\xb8\ +\x2e\x3b\x36\xab\xab\x0d\xd6\x53\x27\xf4\x8d\x09\x5b\x46\x39\x02\ +\x75\x14\x77\xaf\x3c\x21\x31\xaa\xf2\xd6\x71\x6e\x9b\xa0\xc7\x52\ +\xe4\x92\xe6\x8e\x32\x42\x89\x87\xf7\xfc\x06\xca\x3f\xf0\x78\xfe\ +\x93\x05\xcd\xd4\x01\x2c\x5e\xda\x75\x0e\xb6\x96\x8d\x24\xac\x7a\ +\xd2\x2e\x37\xca\xfa\x42\x9d\xe3\x77\xbd\xc0\xc6\x9f\x7d\x8b\x82\ +\xd5\xae\xcc\x81\x6a\x11\x75\x75\x8c\x9c\x53\x7c\xea\x93\x3a\x19\ +\xa4\xef\xb9\x83\xeb\xd4\xe5\x92\x8f\x38\xcf\xc7\xa5\x72\xde\x25\ +\x5f\xd3\x19\xb3\xc6\x69\x6f\xec\x31\x54\x7a\xd7\x59\xac\xeb\x20\ +\xac\xbc\xde\x1e\x8a\x47\xd7\x75\x86\x62\x97\x6e\x69\x1f\xfb\x50\ +\xe7\xea\xb6\x09\xbc\xf8\x65\xca\x2e\x7e\xed\xcb\xbe\xcc\x55\xbf\ +\x35\x94\x8f\x1d\x14\x51\xf5\x2d\xf7\xe2\xb3\xc0\xd5\x79\x8c\xf6\ +\xa8\x12\x50\xd8\x18\xf4\x78\x28\xa1\x4b\xeb\x18\xb4\x2e\xc4\x06\ +\x8e\x93\x0e\x39\xfe\x2c\xb6\x69\xf3\x14\x08\x2f\x3f\x47\x97\x7f\ +\x73\xfc\x55\xc2\x58\x9b\x0b\x98\x53\x6e\xdb\x18\x47\xc8\x2b\xbb\ +\x61\x25\xfa\x10\xcc\x1a\x06\x1c\xab\x0d\x2d\xbc\xad\x2e\x34\x16\ +\x13\x83\xbc\x54\x47\xae\xf7\xdb\x19\x1a\xba\xf7\x05\x3e\x86\xdb\ +\xd0\x69\x52\x87\xfb\xf0\x16\xb5\xab\x02\x4e\xbb\x12\xc1\x5b\x26\ +\x99\x85\x83\x71\x7c\x7c\x34\xde\x5c\x7e\x82\xf6\x01\x98\x8d\xd8\ +\xc3\x1e\xf6\xb0\x87\x3d\x08\xb8\xcb\xee\x61\x0f\x7b\xd8\xc3\x57\ +\x0b\x73\xb6\xf6\xb3\x83\xcf\x9f\xd2\xad\x2b\xf0\x70\x65\x58\x50\ +\xbb\xbb\xba\xf2\xa7\x76\x3c\x2b\x9f\x7e\x73\xaa\x3a\xd9\x75\x59\ +\x3d\x81\x9d\x2f\x59\x04\x51\xd5\xbe\xed\xa6\xeb\x49\xf1\x16\xb9\ +\x07\xae\xc2\x1a\x01\x0a\x69\xfe\x0b\x61\x06\x05\xf5\xe7\xff\x60\ +\x56\x45\xfc\x62\x3a\xc6\x80\x9f\x4e\x34\x91\xe7\x0d\x13\x9f\x4c\ +\xd3\xc4\x9e\xc9\x7d\xda\x94\x3c\x61\xe3\x17\x0d\xba\xf0\xb1\xad\ +\x98\xc9\x07\xec\xb7\x92\xbb\xf0\xed\x4c\x0b\x6c\xf9\xee\xc0\x8c\ +\x80\x11\x76\x4b\x78\x7c\x6a\x48\x35\x57\x2d\x2c\xdf\x14\xbc\xd2\ +\xd3\x0f\x1c\x18\xa3\x5c\x6c\x22\xd3\xa2\xcf\x4b\x89\x60\x42\xa4\ +\xf3\x43\x32\x25\x4b\xcf\xcb\x16\xfb\x05\x79\x30\x65\x41\xc1\xfe\ +\x3c\xa0\x33\x9e\xf0\x21\xc6\x88\x6d\xe5\x3f\x17\x35\xa0\xc1\xc4\ +\x0a\xd1\x09\xb7\x3e\x2d\x84\xbd\x7d\x59\x48\xb1\x4f\xc7\xa7\xfc\ +\x20\xf9\xa1\x2c\x88\x94\xcf\xca\xd6\xf6\xd4\xa3\xca\x9c\x79\x9b\ +\x27\x7f\x8f\x17\x7e\x63\x0d\xdf\x42\x97\xa9\x3c\xfd\x70\xee\xa2\ +\xe3\x6f\x6c\xbf\x59\x1e\x0b\x22\x59\x14\x89\x1c\x4c\x6e\xf1\xec\ +\xe1\xcd\x2e\x76\xdb\xcc\x4b\x6f\x1e\x11\xc1\x8c\x79\x9b\x51\x35\ +\xd4\xb8\xb0\x1e\xbf\xf2\xa5\xae\x1d\x3b\xf7\xfa\xeb\x07\xca\x75\ +\x0e\xe7\x2d\x7b\xed\x16\x87\x15\x89\x9f\x99\xc2\xd2\x89\x66\x0c\ +\xc2\xd8\x41\x58\xe5\xc3\x6a\x97\x17\x1b\xd2\xf1\x95\x8c\x7e\xa9\ +\x74\x2c\xbb\xa8\xfb\x5d\x7a\xf0\x88\x63\x91\x17\x4e\x7d\x7c\x92\ +\x9f\x18\xf8\xea\x5f\xf7\x3b\x7e\xed\x1f\x5f\x6c\x3e\xbe\x5e\xb8\ +\x2b\x7f\x7e\x47\xaf\xf2\x36\xe6\x78\x6e\xc7\xf4\xb1\x74\xbc\x91\ +\xba\xa3\x8b\x6d\xca\xf6\x25\x7f\xf1\x6e\x60\xec\x33\xb6\xf2\x77\ +\x4c\x6c\x1c\x7f\xfc\x2b\xa6\xf2\xd8\x2e\xff\xf9\x95\x97\xe5\x9b\ +\x85\xe0\xc8\x8e\x9b\x48\x79\xd0\x2e\x3a\xfe\xf0\xdd\xf5\x91\xe3\ +\x23\x2b\x0a\x2c\xe6\x6d\x43\x27\x67\x5f\x89\xe6\xb5\x23\x74\x8a\ +\x4e\x56\x00\x8f\xab\x29\x8c\xb5\x01\xf3\x64\x52\x3d\xc5\xf3\x25\ +\x84\x7e\x29\x44\x11\x52\x78\x5c\x38\xb0\x21\xf1\x14\xe3\x6b\xae\ +\x4d\xbc\x72\x8a\x1e\x8b\x8b\xa8\x18\x88\xab\x64\x91\x5d\xf4\x76\ +\xc7\xc6\x6e\xa3\x72\x40\xeb\xd8\x95\xc3\x0a\xa8\x86\xf3\xa4\xe4\ +\xc2\x87\x61\x1d\xf9\xd0\x6d\x28\x45\x50\x1e\xc8\xdb\x27\x4b\x71\ +\xa4\x1c\xa7\x87\x89\x1c\xef\x35\x2c\x92\xcd\x3b\x70\x4f\x67\xf7\ +\x94\xe1\x4d\xf7\xae\x7c\xe5\x23\x06\xa1\x02\xf8\xca\xc7\x23\xf1\ +\xd7\x6f\xde\x2c\x8b\x19\x6f\x85\x2f\x74\xd8\x86\x2a\x66\xc2\x8f\ +\x19\xfe\x63\xc3\xba\xac\xbf\x4c\xf8\x09\xca\xe5\x9c\xe2\x38\xbc\ +\xba\x7c\xad\x51\x7c\x53\xa7\x34\x1d\x94\x4e\x5a\x77\x55\x9d\x86\ +\xf7\xe1\x81\x72\xc9\xb1\xe5\xde\x29\x85\xd6\x2f\xbb\x49\x02\x5b\ +\x82\x81\x61\x92\xdf\x34\x7b\x3b\x30\xae\xb6\xa0\xd3\x40\x77\x53\ +\xee\xd6\x57\x76\xf7\x83\xe8\xf5\xf5\xa1\x4e\x47\x4b\x2e\xd7\xe7\ +\xdd\x3a\xde\xbe\x0d\x6b\x43\x92\xb2\x07\xd5\x8d\xd3\x1a\x4a\x46\ +\xed\xed\x96\xda\xce\x3a\x8b\xf4\x79\xba\xab\xef\xb8\x54\xa6\xed\ +\x65\xf2\x4e\x44\xb6\xde\xa8\x6c\x5e\xf3\xea\xfe\x2d\x31\x61\xab\ +\x63\x81\xc2\x20\xcd\x54\xc2\xb7\x0f\xfb\x05\xad\xb5\x4d\x1b\x54\ +\xd7\x65\xcf\xa5\xdc\x42\x68\x6f\xdc\x2f\x16\xdb\x2e\x6f\x5f\x77\ +\x64\x7a\x66\xda\x6d\xd3\x7d\xad\x30\xe3\x46\xba\x8a\x19\xfd\x5b\ +\x67\xdc\xf7\xec\x4f\x7d\xf2\xcf\x22\x12\x12\xbf\xca\xeb\xc5\x08\ +\xdf\xdb\xe2\x87\xde\x71\xbe\x8e\x17\x3f\x63\x29\x0b\x3f\xfe\xb4\ +\x5b\xe9\xcd\x7b\x81\x83\x85\x92\x43\x9d\x1b\xe4\x22\x87\xfa\x97\ +\x5c\x13\x08\x56\x8c\xbb\x15\xfd\x0a\xed\xb7\xe0\x72\xbf\x10\xb8\ +\x0c\x7c\x44\xca\x2f\xed\x03\xcb\x06\xf1\x2e\x65\xb2\xa5\x4d\xb1\ +\xa5\x2f\x10\xd9\x01\xed\xb3\x48\xcd\x2d\x20\xad\x5d\xca\x17\xe4\ +\x0f\x74\x6a\x74\xf4\x11\x5b\xfa\xdc\x32\xf5\xf2\x06\x05\xb2\x6f\ +\x9a\x31\x57\x63\x4f\x39\x48\x73\xaf\x9f\x6c\x53\x3e\x97\xd1\x08\ +\xb4\x2d\xb2\xef\xbf\xb7\x59\xa0\x6a\xb4\x9d\x7c\x3e\x26\xe5\xcb\ +\xc5\x6a\xd6\x15\x9f\xf0\xb6\xb9\x02\xe4\xa8\x36\xb8\x2e\xcc\x69\ +\xf1\x59\xd5\x41\xd4\xf3\xda\x3a\xd6\x56\x31\x7e\x8c\xc8\x39\xfe\ +\x4b\x19\x0f\xa0\x3b\x0e\x8c\x6c\x3f\xb7\x33\x3a\xe7\x2e\xdb\x36\ +\x2e\x79\xd3\xaf\x5d\xb7\x14\x9f\x71\x20\xaa\xf8\xd6\xb3\x2b\x6d\ +\xb5\x29\xd2\x04\xeb\x02\x3d\xd4\xd2\xd6\x02\xf8\x96\xe7\x80\xdc\ +\x89\xa9\xc0\x90\xda\xfb\xba\xc1\xb1\x10\x85\x8d\xda\xe0\xe3\x55\ +\x3c\x10\x9e\x9c\xc2\x76\x9f\x3b\xf4\x16\x52\x55\x58\x3b\x29\x47\ +\xd4\xe6\xf3\x75\xa1\x2e\xad\x28\x72\x97\x83\x7f\x91\x62\x01\xf3\ +\xf8\x42\xb7\x6e\x17\x14\xf4\x65\x20\x7e\xe4\x9b\x55\xdb\x81\xd6\ +\xf9\x2b\x1f\xc1\x55\x7b\xde\x06\xb3\xf4\x5c\x24\xde\x02\x4b\x1d\ +\xd7\x5e\xf7\x23\xf0\x5b\xd7\x4e\x7c\x89\x2c\x7c\xfb\x94\x38\xb8\ +\x1d\x9f\xbd\xda\x5d\x50\xfb\xbc\xb2\xf7\xb0\x87\x3d\xec\xe1\x17\ +\x17\xb8\x6c\xee\x61\x0f\x7b\xd8\xc3\xcf\x06\x7a\xde\xf6\x97\x0c\ +\x4b\x91\x4c\x00\x1f\x9e\x04\xf2\x5f\xc4\x9b\xcd\xb5\x1e\x95\xf4\ +\xa8\xc3\xc3\x41\x4f\xa2\x65\xf3\xc4\xdf\x7f\xd1\x59\xb9\x02\xe7\ +\x5f\xb5\xcb\xcf\x17\xc5\x6f\x01\x93\xdf\x1d\xbf\xb5\x62\x27\xed\ +\x84\x2e\xff\xc7\x81\xad\x07\xed\x02\x4a\xba\x57\xaf\xf6\x51\x19\ +\x7e\x11\xcb\x7f\xf2\xf9\x5d\xae\x3c\x25\xfb\xc1\x46\xaa\x75\x15\ +\xde\x3e\x87\xc7\x89\x12\x70\x80\x2f\x5a\xc8\xff\xdf\xa5\x02\xe2\ +\x2b\x49\xd3\xd4\xab\xfa\x17\x28\xbf\xed\xc2\xf2\x18\x0c\x98\x6a\ +\xe7\x9c\x1d\x57\xae\xe9\xd7\x75\x9c\x14\xab\x40\x67\x29\x39\xdf\ +\x5b\x8f\x8c\x42\xb8\xfb\x9c\x2a\x99\x87\xe3\xf5\x42\x90\x1f\x3f\ +\xd1\xb1\x58\xc6\xc3\xb4\x9e\x38\xd6\x9f\xf0\xf2\x13\x08\x3c\x36\ +\xbf\xd0\x91\x6c\x3c\x9a\xfe\x96\x79\xa1\x43\x3e\xdb\xa0\xc9\xd7\ +\x3e\x79\x11\x52\xbe\x3b\x98\xaf\xde\x53\x8c\x51\xba\x95\xff\x92\ +\x27\xf5\xf4\x62\x06\xb2\x7d\xaa\xce\x65\xeb\x7c\x7e\x29\x80\x9f\ +\xf3\xc2\xe3\x03\xed\xfa\xcb\xd7\x0f\xe0\x95\x4b\x3c\xfd\x98\xbc\ +\x94\x21\x3f\xbf\xa7\x5a\xf9\x88\xf7\x27\x86\x5c\x3e\x3e\xa1\x62\ +\xa6\x4f\x72\x47\xce\x0c\x44\x7a\x13\x28\xbe\x08\x91\xcb\x10\x8a\ +\xbc\x18\x83\xad\x2b\xea\x17\x46\x8c\x1f\xcb\x45\x5c\x5c\xf9\x58\ +\x8d\x4f\xf3\x16\x63\x6b\x9e\x9d\xed\xad\x5b\xc9\xd6\xbd\x85\x77\ +\xd9\xb4\x4f\xb4\xfa\x04\x74\x3f\x5b\xd7\xe5\x82\xd2\x75\x9f\x0b\ +\xf3\x1f\xdb\x2c\x60\x42\xe9\xd7\x6d\x7b\xf7\xad\x04\xfd\x75\x39\ +\x59\x78\xcd\xd7\x27\x55\xfe\xf6\x17\x3f\x17\xa0\x3a\x1f\x0b\x77\ +\xab\x7c\xf3\x37\x6c\x56\x68\xff\x89\x55\xd7\xca\xd5\xf6\xce\x4f\ +\x5b\xf2\x69\x00\xf9\xa4\x93\x63\xc3\x4f\x14\xb9\xb1\xcb\x45\x3f\ +\xed\xe5\xe3\xbe\xe9\x3e\xa9\xf2\x4c\x67\xdf\x56\x9c\xf4\x4d\xb7\ +\xb6\x8e\xf3\xdf\xb6\x8e\xd0\xe4\x0a\xf5\xd8\xe8\x0b\x5b\x5d\x78\ +\x62\x05\xac\xe4\x30\x16\xc4\x1e\x58\xf1\x15\xe7\x7d\xe7\x6a\x56\ +\xbb\x5c\xdf\x44\xb9\x4e\xf1\x1f\xc8\x24\x44\x6f\x27\x95\xc7\xf5\ +\xb6\x0b\x71\xae\xba\x96\xd5\xa5\xf2\xe0\x30\xba\x00\xb1\xc5\xee\ +\x80\xcb\x6b\x06\x8e\xc5\x25\xff\x86\xda\x5b\x02\x56\x2d\x6d\xb0\ +\xa6\xab\x12\xf2\x20\xa4\x1c\xb3\x29\xae\xc0\x75\xd0\xce\xf7\xab\ +\x99\x21\xd4\x4d\x34\xa6\x80\xd2\x2e\x6e\x13\xee\x29\x0c\x5d\x4e\ +\x55\xaf\xa0\x72\x55\x99\xeb\xaf\x7c\x64\xdc\x1c\x71\xc0\xd5\x07\ +\x9b\x57\x2f\x67\xfc\xe7\xc3\x76\xf6\x2f\x0d\x5f\x26\xec\x27\x4c\ +\xbd\x05\x5f\x45\x8e\x1f\x17\x7e\xc2\x32\xe9\xef\xcb\xeb\x0b\x1d\ +\xcd\x5b\x5d\x72\x2a\x89\x94\x9d\x6e\x9d\xf6\x21\xdd\x1a\x7c\x3a\ +\xbf\xc5\x29\x67\x38\xf6\x36\x70\xa0\x77\x9c\xde\x02\x19\x13\xda\ +\x7d\xb9\xc1\xb1\x82\x94\xf9\xb6\x62\x5c\x17\x52\x92\x7a\x6c\xc6\ +\xf5\xe6\x40\x7b\x3e\x7b\xd0\x50\x81\x0f\x34\xca\x61\xc4\x95\xb3\ +\x65\xef\x73\x3f\xb3\xac\x6b\x4a\xcc\xe5\x04\x35\xab\xf1\x2e\x1f\ +\x5f\x52\x24\xdd\xe2\x07\x53\x27\x9f\xd9\xc2\x40\x74\x2e\xbf\x94\ +\x64\xee\xf2\xc8\xe7\xaf\xb9\xab\xcb\x88\xcf\xad\x32\xb9\x89\x15\ +\x06\x2e\x90\x23\x42\xb4\xf7\xb3\x8d\x2b\x8b\x74\xa6\xa0\x92\x64\ +\x53\xdd\x85\x79\xc9\xcf\xf5\xba\x70\x2d\xb3\x89\xba\x9d\xf8\x96\ +\xdd\xfd\x6d\x3d\xf3\xab\x2c\xa2\x75\x5f\xb0\x79\x11\x84\x05\x84\ +\x5e\x44\xd0\xde\x0b\x1a\xd5\x2f\xd8\xed\x57\xb9\x33\x96\xda\x37\ +\xfe\xf9\x6d\x2e\xca\xef\x3a\xe0\xef\x28\x77\x00\xc7\x26\x1d\x42\ +\x6e\xf4\x58\x0a\xad\x23\xbe\x5d\x62\x5f\x6f\xd3\x17\x09\x32\xe5\ +\x06\xf1\x18\xa6\xaa\x19\x68\xa3\x72\xbb\xde\x8b\xec\xec\xae\x33\ +\x98\x36\xf9\xfe\x5b\x7a\x91\x02\x31\xaa\x5c\x47\x2d\x18\x62\x5f\ +\x2a\x1f\x21\xa6\x35\x62\x2b\x1e\x12\x88\xc2\x65\xd3\x7c\x5d\x93\ +\xf3\x6c\xa5\xf2\x45\xfd\x29\xfb\xae\xaf\x8f\xc1\x0a\x88\xc1\xd7\ +\x2c\x76\xf5\x61\x3a\x4f\x28\xa5\xeb\x02\x94\xdc\xc7\xc9\xd8\xfc\ +\x03\x60\x5f\x4a\x5c\xfb\x15\xaf\x3a\x24\x2f\xfa\xb6\x89\x76\x5d\ +\x40\xfa\x4e\xf5\x76\x5d\xb0\xcf\x3a\x75\x4c\xc7\x09\x5d\xff\xd8\ +\xe3\x5f\x2a\x43\xc6\x44\xae\x88\x8d\x10\x51\x3a\xab\xf2\x7b\x0c\ +\x52\x5e\xe7\x2d\x3d\x7e\x69\x03\x18\x5b\x4b\x6d\x0f\x5a\x51\x63\ +\x3d\x7d\xed\xf1\x4b\x3c\x76\x64\x6c\xee\xd3\xe9\x3e\xe5\xb0\x75\ +\x1d\x11\x10\x63\x8c\x14\xaa\xf8\x96\x17\x5c\xc0\xd3\x2c\xd1\x4a\ +\x61\xd9\x82\xdc\xfa\xfa\xe4\xaa\x44\xd0\x56\xf1\xd8\x2d\x09\x5d\ +\xff\xc8\x0e\xbd\x55\x8c\x98\x9c\x4b\x18\xf0\xaa\xdc\x88\xf4\x89\ +\xd3\xa5\xef\xb9\x84\x01\x65\x0e\x55\x79\x5d\x7e\xca\x6c\xeb\x9a\ +\xb3\xdb\xc4\x07\x01\x5b\xc8\x5b\x61\x3b\xbb\xa0\x84\x90\xd4\x03\ +\x7e\xf9\x94\x3d\x11\x69\xf3\x04\x8b\xd5\xde\x1d\xf3\xb6\x67\x49\ +\xad\xdc\x36\x3e\x00\x55\x99\xdd\x2c\x12\xd3\x66\xca\x3c\x1a\x17\ +\x6f\x5e\x88\x57\x4f\x7d\x61\xbe\x3d\xec\x61\x0f\x7b\xf8\xc5\x06\ +\xee\xca\x7b\xd8\xc3\x1e\xf6\xf0\xb3\x01\x26\x67\x3d\x57\xfc\x8a\ +\xe1\x8b\x53\xe2\xd1\x18\x58\x26\xc8\x77\xe3\x76\xb3\x19\x47\x1b\ +\xbe\xee\x51\xd2\xbd\x64\x35\xf1\x0e\xdb\xbb\x07\xcb\x5c\x3f\x2c\ +\x78\xe6\x99\xbf\x05\xac\x0f\x6b\xe8\x27\x00\xc1\x96\x1f\x20\xd3\ +\x7c\x41\x88\x71\x71\xbd\xef\x7b\x0f\xb6\x3d\x22\x69\x0f\xd3\xe8\ +\x84\x2e\x24\xd5\xf0\x9b\x18\xb5\xb5\x68\xca\xf3\x2e\xb0\x52\x9b\ +\x9a\x51\x2a\xa8\xb5\x4a\x6a\x39\x93\x7e\xf6\x2e\xa6\x24\xfa\x23\ +\x0f\x0b\x0e\x58\x20\x61\xeb\xdd\x0e\x94\x6e\x7d\x60\x26\x1b\x86\ +\xbd\x27\xfa\x72\xc5\xbb\x4b\xb6\x25\x7f\x71\x10\x4e\x5e\x5c\x1e\ +\x2a\xd7\xa5\x96\x8e\x87\x7d\x1e\x3c\xed\xbd\xe8\x88\x33\xcf\x8b\ +\x7c\x08\xd4\x2f\x28\x84\x7e\xc1\xcf\x82\x46\xf1\x5e\x08\xb1\x93\ +\x64\x16\x2c\x2a\x96\x5b\x6d\xe5\xe2\x05\x90\x5f\x74\x58\xc6\xaf\ +\x73\x2f\xa8\xdd\x7d\xd9\x75\x52\x8c\xf2\xda\xbf\xca\xc1\xe6\x3c\ +\x8d\xce\x05\xed\xdc\xa5\x83\xe2\x6b\x1d\xb2\x70\x55\x2f\xcb\xbc\ +\x9f\xb2\x4f\xe7\x01\xf5\x70\xef\x32\xf0\x29\x5f\x1c\xc5\x67\xd1\ +\x06\xdb\xca\x47\x7c\xbe\x9e\x50\x32\x7d\x64\x5d\x61\x97\x6b\x5f\ +\x99\xd9\x41\xb1\x59\xb4\x50\x14\x0e\xdf\x70\x86\xe6\xa1\x2a\x3a\ +\x0c\x72\xe9\xca\x40\xd1\x89\x8d\x6c\xc9\xca\xc2\xf2\x0b\x5d\x95\ +\x21\xc6\xf5\x44\x5a\x76\x96\xcd\xdb\x1e\x3e\xa4\x74\x48\xee\x8b\ +\xf2\x43\x53\x14\xc8\xcb\x91\x55\x9f\x6a\xe3\x81\xde\x21\xc7\xd2\ +\x1f\xb3\xe8\x75\xa4\x43\xcb\xa2\xd7\xf1\xc4\x61\x4a\x5f\x37\x56\ +\x9f\xfb\x38\x54\xce\xa2\xf3\xe5\x50\xbd\xe8\x71\x39\xe5\xeb\xb1\ +\x3a\x17\x63\x85\x7c\x42\x0e\x84\x77\xbf\xc8\x4f\x98\x18\x64\xea\ +\x9d\x3c\x72\x52\x8a\xf8\xcd\x63\x57\xb6\x1e\x67\xb3\x3e\x5d\x1e\ +\x79\x3c\xfe\x57\xb6\x95\x7f\xec\x95\xab\x63\x1a\x91\xdb\x6f\xad\ +\x33\xc5\x9f\x26\x2e\xb6\x39\xee\x9c\x9f\xbc\x1c\xff\xd2\x35\x95\ +\x8e\xaf\xa2\x43\x8e\xcd\x6a\xd3\x08\x21\xbe\x26\xcc\xeb\xa0\x8d\ +\xdb\xb0\x5c\x34\xc2\xd7\xf5\x69\x4b\x4d\xb8\x2f\x94\x02\x9b\xb7\ +\x83\x2c\xb1\x10\x24\x82\x39\xd6\xf2\x11\xe9\x6b\x6c\xb0\xfc\xc3\ +\x86\xae\x77\xad\xc3\xa8\x6b\xf8\xbc\x8e\xbf\x05\x76\x5b\xb4\xf6\ +\x7c\xa0\xb5\x2b\xc0\x73\xc7\xc3\xc1\x95\x81\x7a\xc2\xae\x13\x0a\ +\xdc\xc7\x66\xf8\xd3\x6e\xc7\x1e\x45\x39\xb5\xed\x41\x9f\x95\xd1\ +\x65\xb1\x98\x26\x64\x11\x71\x15\x70\xc4\xf5\x57\xf2\xe6\xe2\x42\ +\xd2\xbd\x44\x3b\xb0\xb6\xc3\xef\xb4\xef\x6d\xf0\x25\xdd\x7e\x9c\ +\x94\x0f\xc2\x4f\x13\xfb\xaf\x01\xa8\xee\x4b\xbe\x6a\x73\x6c\x72\ +\xfd\xf5\xb9\xc1\x51\x5f\x1a\x12\x0d\xa0\xce\xc9\x9f\x76\x68\xcc\ +\xad\xec\x81\x96\x5b\xb7\xd8\xc4\xf1\x67\x45\xf1\xd6\x3f\x04\x8b\ +\x85\x31\x3a\xcf\xcd\x1f\x1b\xd6\x2d\xb9\x0f\xce\x2a\x07\xbe\x7a\ +\x8c\x4f\x44\xb9\x2c\x5b\xde\x06\x58\xb9\x0b\x88\x3a\x31\x71\xda\ +\xa3\x86\x15\x0d\x62\x04\x31\x00\xa1\xbe\xd4\x9b\x67\xcc\x63\x0f\ +\xd0\x27\xd1\x13\x1c\x9d\x41\xf7\x85\xe5\x5c\x81\x73\xc9\x42\x5d\ +\x1b\xb1\xe1\xce\xf5\xa3\x60\xf1\x04\x9c\x74\x05\x4b\x79\xe1\x95\ +\xab\x4f\x76\xfb\xad\x8e\xfb\xbc\xd0\x4a\xc3\x75\x5d\x72\xe6\x1d\ +\xb9\x16\x5b\x87\x5c\xed\xf0\x75\xbc\xec\x6d\x5b\xa3\x2e\xe6\x0b\ +\xaf\x7d\xee\x77\x15\xc7\x7d\x02\xde\xb1\x5d\x6e\xf4\xb1\x35\xb6\ +\x5e\xb4\xfc\xd8\x80\xd0\xd6\xcb\x17\xea\x10\xdd\x7f\x2d\x97\xae\ +\xfd\x1c\xb1\x50\xf3\x5d\x0f\xca\x30\x2e\xbe\xf4\x7b\x83\xe7\x00\ +\xe6\xa4\xf7\x71\x4e\x9c\xf3\x4f\xb7\xd6\xc3\xb5\x3f\x00\xd7\x9a\ +\x50\xca\xca\x82\x43\x74\xc9\x96\xf2\x73\xff\x4e\x14\x83\xc7\x3e\ +\xfa\xcb\x71\xb3\xa4\x62\x45\xbb\x6d\x1c\x47\x91\x75\x4c\xb0\xe4\ +\x65\x27\xd2\x71\x82\x39\x4e\x90\xa9\x01\x09\xc8\x9f\xda\xf8\x38\ +\x94\xbf\xdb\x5f\x7c\x45\x47\xaf\x72\xdc\x1f\x60\xb4\xfe\xcb\x0e\ +\xbe\xfc\x45\x5b\x36\x5d\x63\xd5\xd5\xe5\xd7\x18\x09\x94\x9d\x98\ +\x15\xe6\xb8\xe0\x2b\x52\x65\xf7\x86\x2e\xed\xa3\xee\x9d\x0b\x3d\ +\xfe\xe1\xd9\x13\xba\x48\x39\xf6\x5e\xd8\x35\x1f\x4b\xeb\xcd\x3b\ +\x17\x39\x44\xa0\xd5\xd9\xa9\x52\x7c\xa3\x2b\xe5\xcc\x01\x94\xdd\ +\x3e\xcd\x87\xce\x4f\xf6\x4b\xee\xf1\x96\x76\xb0\xd7\x56\xf9\xac\ +\x03\x68\x5f\x48\x01\x76\x5d\x23\x3a\x07\x06\xb7\x13\x20\xde\xfb\ +\x14\x61\x98\x8c\x00\x63\x25\x6c\x3d\x2a\x76\x2c\x52\xbb\x0e\x2b\ +\x70\x6e\x7e\x73\xad\xc2\x84\x94\x67\x1f\x78\x91\x03\xfe\x37\x49\ +\xf4\x96\x31\x8c\x1a\x65\xf9\xd1\xbe\xd4\x13\x65\xf6\xe1\x04\xb6\ +\x0b\x4b\x19\x7d\x5d\x05\x5b\x66\x57\x3c\x16\xeb\x94\x93\xdf\xdb\ +\x04\x03\x4d\x03\xb3\x2b\x04\xdb\x96\x05\xd6\x7a\xf3\xeb\x46\x4f\ +\xa3\xca\xf3\x9c\x2d\xfc\x2e\xa0\x59\x87\x85\x5f\x69\x8a\x35\x99\ +\xea\x95\x7d\x0b\xee\xe7\x5f\xa0\x6d\xcb\x31\x3d\x3e\xba\x1d\x17\ +\x97\x2f\xc5\xf5\xd2\xe4\x1a\xde\x56\xc6\x1e\xf6\xb0\x87\x3d\xfc\ +\x62\x02\x77\xe0\x3d\xec\x61\x0f\x7b\xf8\xea\x61\x3d\x7f\x5b\xe6\ +\x6b\x5f\x19\x7c\xde\xf4\x70\x0b\xde\x52\xe6\xed\xcd\xcd\xb8\xbb\ +\xde\x68\x72\x9c\x47\x8e\xe4\xd3\x04\x57\x4c\x26\xea\x5f\x00\xed\ +\x40\xb0\x66\xa1\x26\x56\xec\x42\x69\xdb\xa1\x9d\x76\x9d\x5d\x66\ +\x15\x2c\xec\x67\x92\x75\xc8\x17\xc1\xf4\xab\xa0\xf5\xc4\x1f\xa0\ +\x96\x65\x5a\x1e\x32\xea\xbf\x91\x51\x64\x32\xcd\x43\x58\xa0\xe9\ +\xba\x3e\x09\x84\x86\x38\x46\x98\x9c\xf5\x89\x01\x21\xff\xa9\x4e\ +\x72\x38\x5c\xbd\x77\x82\x06\x69\x66\x23\xdb\xa7\x21\x8e\xa9\x4f\ +\x5b\x16\x6b\x43\x5e\x42\xc0\x74\x9d\x57\x05\x70\x4c\x2c\xca\x36\ +\x17\x02\x84\x50\xdb\x84\xbc\xf9\x6b\x5c\xeb\xa7\x5d\x0f\xbf\x3c\ +\x9c\x96\x7d\xfd\x32\xa0\x17\x01\x0e\x8f\xb0\x8b\xf7\x27\x8a\x88\ +\x61\x61\x24\x36\x16\x49\xbc\xb0\x50\xbe\x79\xb1\x53\xe5\xcd\x9c\ +\x9d\x77\x07\xe5\x8f\xbd\x7d\xd6\x7c\xfb\x67\x81\x24\xbe\x29\x23\ +\xed\x4e\x8e\xf8\xb9\x8d\xa2\x7e\xe8\x5c\xd7\x41\x38\xfb\xa5\xfc\ +\xb3\x58\xb3\xad\x03\x5d\x66\xd5\x37\x65\x41\x11\xcb\x36\x71\xc9\ +\xdd\x2f\x31\xee\xbc\xf8\x86\x8e\x80\xc2\xaa\x07\x7e\x89\xcb\x71\ +\x32\x44\x90\x44\x4c\x38\x43\xe9\x5b\xd7\x2f\x6c\x17\x3d\xbc\x19\ +\x23\x6d\xf1\xcb\xa5\x76\xe9\xe1\x63\x9f\xa6\xf1\x35\x76\x1e\x43\ +\x78\xab\xb2\x9b\xdb\x4c\x58\x38\xdb\x6b\xa4\x6d\xd2\x55\x5f\xe5\ +\x98\x97\x8f\x62\x6f\xe9\x93\xf2\x65\xf3\x27\xbf\xdc\x91\xa8\xe2\ +\x9f\x45\xb5\xfc\xce\x48\x3e\xb9\x26\xdd\xcc\x23\xba\xe2\x25\x24\ +\x57\xe9\xfb\xd8\xf8\xb8\x92\x57\xb4\x17\x97\x5c\x88\x74\x79\x99\ +\x13\x74\x0e\x62\x34\x8e\xec\x53\x39\x53\x97\x42\xc2\x1c\xab\xbc\ +\xaa\x7f\x8f\x91\x1c\xd3\x20\x79\xb2\xa8\x5c\x31\x5e\xa8\xa3\x08\ +\x6c\xb1\x53\xce\xf4\x87\x77\xfd\xa2\xb3\x6c\x9f\x2c\x1a\x3a\x4e\ +\xd4\xed\x72\x4c\x51\x97\x59\x0b\x7c\x9d\xab\xec\xc4\x39\xa6\x62\ +\x67\x9f\x39\x35\x07\x1f\xbf\x85\x10\x1b\x59\x36\xd3\x96\x0b\x3d\ +\x60\xc4\xd4\xb8\x99\x97\xbd\x45\x25\xbe\xae\x5b\xbe\xde\x69\xb3\ +\x93\xd0\x39\xa0\xba\xa6\x52\x36\x74\x8d\xd4\xc9\x11\x71\x03\x20\ +\xc9\xb1\x48\x13\xaa\x70\x47\xe4\x6f\x01\x09\x7c\xd2\x98\x17\x33\ +\xc6\x52\x07\xdc\x10\xc3\xc2\x09\x24\x58\x6e\xe5\x2a\x68\x3b\xbe\ +\x81\x80\x07\x2c\x5d\x36\xf5\x73\x1d\xdb\x27\x94\x3d\xdd\x6a\xe8\ +\x32\xb7\x4a\x40\xb3\x96\x03\xab\x90\x09\xbd\x10\xc2\x9e\x56\x7a\ +\x31\xcd\x65\xe7\x85\x0f\xd4\x9f\xd8\x94\x8d\xaf\x32\xf6\x6d\x8d\ +\x98\x75\x92\x2d\x78\xb8\xec\x7b\xb0\x8e\x6f\xfe\x4b\x84\xbd\xbd\ +\xdc\xbf\xae\x70\x30\xde\x5c\xbf\xf2\xf1\xce\xb9\x27\x55\xf5\x93\ +\xce\xc2\x55\x77\xa0\x8c\xb4\xde\x87\x2c\x5e\x5b\x70\xcf\xc6\x79\ +\x64\xf2\xb6\x88\x82\xc5\xca\x50\x60\xcc\x7c\x11\xec\x1e\xda\xed\ +\x52\x1f\x86\x45\xcf\xb8\x3c\x18\x57\xd7\x2a\xc7\xf5\x63\xb7\x5b\ +\x43\x1b\x42\xca\x44\xbc\x73\xe0\xaf\xf3\x2c\x8b\x09\x2b\x8b\xe4\ +\xa5\x07\x9b\x62\x83\xf7\x4c\x6b\xba\x33\xe6\xe9\x1b\xed\xd1\x88\ +\x26\xde\x54\xe0\x1e\x08\x1b\x82\xd9\x92\xc0\x71\xed\x59\xfa\x79\ +\x02\xaf\xa0\x1d\xa6\x0d\x4a\x19\xa2\xd2\xa5\xae\xcd\x43\xea\x5a\ +\x6c\x49\x17\x3f\x73\xf1\xe1\x8c\x35\xda\x27\x3c\x17\xc8\xd6\xdb\ +\x9f\x39\x04\x17\x4d\x69\x8c\xe6\xc1\xe8\x7d\x7f\xa1\x2e\x15\x17\ +\xdb\x2e\x76\xec\xb6\x5f\xd3\xf4\x57\x30\xba\x92\xfb\x18\x42\xa6\ +\x2f\xe5\x46\xdf\xff\x2c\xb3\x4d\x97\xf6\x2d\x08\xac\x69\x97\x21\ +\xca\xf1\x15\x4b\xb7\xce\x3e\xf0\x18\xc0\x1e\xda\xba\xa5\x9e\x80\ +\xa8\x59\xd9\xe8\x03\x51\xfc\x1a\x5d\x4f\xf3\xdb\x31\xee\xae\xf5\ +\xe6\x3e\xa9\x5c\xd3\x95\x9d\x72\x68\xc0\x64\x9e\x3d\x0f\xba\xd1\ +\x2e\x86\xe2\xca\x1c\xa9\x33\x87\xa7\x06\xe1\x5a\x4b\xdd\xa2\xf1\ +\x9c\xa2\x74\x8e\x76\xbb\xab\xce\xd5\xc7\x93\x16\xc6\x26\x16\x89\ +\x30\xc3\xda\x87\x06\xe2\x53\x4e\x82\xed\xe3\xbb\xf0\x99\xa7\xe2\ +\x5a\xe5\x1b\x9b\x5f\xe5\xe1\x18\x54\xbe\xcc\x2b\xf0\x29\x3f\x8e\ +\x4b\xd5\xb9\xdb\xe2\x32\x68\xcb\xac\x43\xf3\x6a\x6f\xb5\x31\x0b\ +\x4c\xab\x3c\x00\x32\x76\x32\x88\x4d\x99\x6d\xdf\x45\x20\xbc\xcb\ +\x73\xb9\xad\x4b\x1e\x6f\x55\x8f\xe5\x1c\xcc\x5e\x0e\xde\x23\x64\ +\xae\x5c\xe5\x48\xed\x7f\x0c\x10\xe2\x61\x6f\xff\x85\x26\xaa\x8f\ +\x20\xdb\x72\xcd\xc0\xee\x7a\xb8\x8d\xd6\xa8\xbd\x73\xa7\x32\x44\ +\x99\x03\xd9\x12\xa0\x5e\xf9\x64\x3f\x10\xdb\xbc\x0e\x29\xae\x2d\ +\x29\x49\x80\x8e\x7c\x1e\x9b\xc8\x95\xad\x1d\xad\x2b\xb1\xf8\x07\ +\xa1\x7c\xa6\x5f\x81\x75\xd8\xc0\xa8\x02\x6b\x61\xcb\xb0\x0b\xeb\ +\xd6\x15\xec\xf8\x23\x7a\xfe\x72\x6f\xce\x56\x36\x21\x87\x1e\x24\ +\x5d\x67\x2c\x31\xc7\xab\xf8\x69\x04\x8a\x5f\xab\x02\xd2\x74\xe2\ +\x07\x61\x89\x60\x2c\xf3\x2d\xf1\x77\x77\x97\xe3\xf6\xfa\xea\xa1\ +\x64\x7b\xd8\xc3\x1e\xf6\xb0\x87\x15\x70\xf7\xdc\xc3\x1e\xf6\xb0\ +\x87\xaf\x16\x7a\xd2\xc6\x44\x6c\x3d\x19\xf3\x2c\x31\xec\x4f\x0b\ +\x3f\x6d\x9a\x9b\x2b\x4d\x14\x6f\x36\xe3\x88\x97\xb4\x0d\xaa\x1f\ +\xd3\x5b\x4f\xd6\x8d\xbb\x0d\xd8\x96\x62\xd5\x7e\xba\x75\xc3\x05\ +\xa8\x5b\x57\x2e\x2b\xeb\x03\x40\x79\xc5\xca\x19\xb6\xc5\x35\xff\ +\x20\xf4\x03\x45\x91\x30\x79\xd4\x69\x71\x2b\xde\x09\x33\x99\x37\ +\x75\x5b\x4b\x6d\x07\xd4\x7a\xb0\x29\x3d\x3b\xb6\x7c\xae\x22\x36\ +\xe7\x9f\xce\x85\x55\xd0\xcc\x47\x07\x88\x67\x43\x61\x2a\x95\x97\ +\xd9\xba\x4e\xde\x09\x24\xe7\x79\x4e\x8c\x95\xf2\xa1\x0e\xb5\xcd\ +\x36\x16\xe0\x81\xc6\xd8\x0f\x68\x11\xf4\x17\x44\x01\xe9\xff\xd8\ +\xe4\x65\xbb\x5f\xd6\x7b\x01\x01\x5d\xf4\xd0\xb9\x18\xc0\x83\x32\ +\x7e\x8e\xaf\xea\xc9\x3e\xff\xeb\xd3\xbe\x2c\x7c\x84\xfa\x05\x88\ +\x71\xb1\x59\x56\x19\xed\xc3\xcb\xfe\x46\xcb\xd8\x79\xe8\x2c\xbe\ +\xeb\xed\x72\x1b\x2d\x13\x53\x7c\x61\x36\x62\x16\xca\x8b\xe4\xf8\ +\x1d\x89\x28\x2f\xb6\xf6\x27\xbf\x6c\xbc\xe4\x44\x0e\x96\x8f\x36\ +\x09\xa1\xf6\x8d\x8c\xbf\x8f\x9d\xeb\x46\x7c\x51\xe2\x5c\x16\x9d\ +\xc2\x6e\x89\x9b\x7d\x80\x1d\x9b\xeb\xde\xfe\x59\x18\x72\x7c\xf9\ +\xad\xcb\xef\x3c\x46\x4b\xf0\xe1\x4c\x4b\x0f\x4d\x8c\x85\xf0\xfc\ +\x95\xde\xe5\x63\xb6\x0e\xc2\x03\xf8\xa2\xd8\xf6\x5b\x74\xf3\x34\ +\x47\x67\xbb\x08\x0a\x19\xc2\x6a\x6f\x06\x28\xc6\x3a\xf8\x50\xe7\ +\x86\xd5\xe6\x7c\xb4\xdb\x8a\xed\x7e\x72\xdf\x58\x8f\x67\x68\x8e\ +\x59\xd0\x7a\xc6\xa7\xfb\x0e\x54\xdf\xa1\x63\x81\x8d\x31\x85\x4e\ +\xc7\xb9\x6d\xcb\x22\x54\xf9\xe2\xd7\xf6\x2a\x2b\x75\x23\x2e\xf5\ +\x8e\xdc\xba\xe0\xa1\x3f\x29\x27\x74\x1e\xe2\x8a\x92\xdf\x2f\x34\ +\x2b\xa7\xfd\xa9\x53\xfb\x46\xef\x77\x77\xd2\x69\x57\x6d\xcc\xa2\ +\x96\xc7\x9d\xce\x03\x2f\x3c\xf7\x02\xf3\x8c\xa5\x0e\x2d\x57\x9d\ +\xac\x3f\x54\x1f\x92\xa3\x65\xe5\x54\xfc\x5c\xcc\xb3\x7e\xe5\xef\ +\x05\x3c\xf4\xe2\xa5\x73\x15\xa0\xe5\x63\x7f\xa9\xd8\xed\x5c\x46\ +\xea\x4a\x23\xec\x6b\x56\x29\x20\xbe\xc0\x11\x03\x5b\xf2\xbc\xe6\ +\x89\xe1\xe5\x74\xbe\xb2\x07\x1f\xae\x69\xf8\x0b\x59\x44\xa3\x3e\ +\x34\x61\x76\x5f\xea\x98\x63\x0b\x9f\xf6\xe1\xd3\x90\xd4\x5c\xf7\ +\x8a\x37\x13\xed\xa2\x2c\x80\x6f\xd9\xbc\xe2\x58\x30\xd8\xf5\x11\ +\xb8\xee\x86\xe2\xf0\x15\xbb\xe8\x03\xeb\x74\x0f\x43\xc7\x87\x40\ +\x73\x2f\x88\xf0\x60\x9c\xfb\x5e\x71\xd3\x6f\x0d\x75\xdd\x6e\x28\ +\x17\x5c\xd1\xaf\x23\xec\xb7\x52\x50\xae\xff\x81\xc3\x2f\xa4\x62\ +\x70\x57\x4a\x7f\x73\xb9\xfa\x84\xda\x3a\xc9\x16\xdc\xcb\xfe\x30\ +\xec\xc6\xaf\xe5\xb7\xe6\x16\x7c\x9e\xed\xaf\x32\x7c\x51\xbd\xdf\ +\x6a\xbf\x1b\x9f\xbd\xe4\x3f\xda\x35\xa7\x3a\xa6\x3f\xd7\x7d\x9a\ +\x20\x8f\x84\x3e\x81\x6c\x66\xb7\x93\x50\xaa\xdd\x68\x20\xb2\x47\ +\x92\xcf\x69\x73\xf3\x64\x5c\x43\x45\xda\x14\x3b\x7b\xe3\x83\x63\ +\x10\x90\xfe\x6d\x26\x97\x13\xf2\x85\xa0\x1c\x1b\x8d\xc7\xeb\x4d\ +\x2f\x18\x54\xda\x9d\xdc\x49\x95\xa5\x97\x75\xde\x2c\xd0\xa7\x8d\ +\xa9\x6a\x7b\xd6\xdc\x4b\xa2\x6d\x51\xda\x09\xcb\x9c\xff\x68\x9f\ +\xa2\xbc\x6c\x16\xe0\x44\x8f\xb2\x49\x68\x0b\xf4\xa1\xf9\xf2\x2b\ +\xfd\xba\xfc\x40\x9f\x65\xd2\xa9\xff\xab\xf6\xf2\x13\x5f\x71\x75\ +\x74\x12\x35\x8f\x91\xae\xc9\xae\x83\xfc\x85\xd1\xb2\x71\xad\xe6\ +\xda\x2f\xde\xbe\xd8\xd0\xe9\x5e\x51\x7c\xce\x68\x30\x11\xce\xb5\ +\xd2\x77\x6c\xec\xf1\xeb\x85\xad\x89\xb6\x27\x2f\xf1\xd6\xa9\x1e\ +\x8b\x5f\xc7\xc7\x6f\xce\x17\x4a\x67\x3d\x75\x87\x9a\xa0\xe9\x7a\ +\xa8\xfe\xab\x1c\x3e\x76\xb6\x77\x0e\x81\x6f\x38\xad\x03\xe2\xd7\ +\xba\xee\x53\x5e\x62\xfb\x9e\x61\x5e\xb4\xda\xd5\x98\x2e\xde\xd6\ +\x55\xb0\xd8\xc8\xbe\x8f\xd2\x06\x44\x64\x7c\xb0\x55\x9d\x2c\x83\ +\xce\xaf\x6c\x88\x00\x62\x88\x50\x9b\xec\xd3\x66\xed\x0e\x58\x95\ +\x6c\x6b\xb0\x66\x47\x99\x3c\x58\xd4\x3e\x0b\xf8\xa8\x6c\xca\x00\ +\x1d\xb0\x8d\xec\xa7\x6f\xf7\x6f\x1f\x03\xf4\xa8\x69\x83\x90\xb1\ +\x17\x57\xef\x84\x7d\x3c\xa0\xcd\x0b\xf1\x37\x2f\xb6\xe5\xee\xbf\ +\xd2\x2f\x71\xd0\xf2\xf1\x27\x4e\xa5\xab\xfc\x1e\x47\xae\x8b\x24\ +\xcf\x2f\xe0\xe9\x77\x8e\x51\x8d\x0b\xd7\x31\x88\x86\x38\x30\x2d\ +\x5b\x6c\x46\x43\xe9\x77\xed\xae\x33\xaa\xd2\x1b\x29\x6f\xa5\x37\ +\xdb\xfa\x86\x94\x95\xba\x96\x4d\xbe\x29\x3f\x75\xb5\x0f\xf5\x5f\ +\x6f\xea\x0f\x77\x89\x73\x0a\xe8\x5c\x14\xc6\x52\xea\xd2\x82\xdf\ +\xba\x3c\x1f\x03\x51\x72\xcc\x7f\x06\xb0\x4f\x68\xfc\x81\xca\x21\ +\x79\x5b\xc5\x11\x41\x03\x86\x4b\x3e\x54\xda\xd7\x58\xcd\xf5\x3b\ +\x91\xcd\x59\x92\xde\x8f\xb2\x2d\xe3\xeb\xe0\x92\x6b\x1f\x07\x8c\ +\xfc\xf5\xf5\x2c\x6a\xdc\x7d\x2d\x43\xa1\xf2\xf8\xc7\x88\xfe\x84\ +\x5a\xae\x31\x30\x21\x86\x35\x5f\xd0\xf9\x1e\x30\x4d\x25\x25\xc4\ +\xaf\xf6\xd5\xc7\x48\xeb\x3a\x01\xd1\x55\x68\xd7\xa1\xc0\xd2\xda\ +\xb9\xa0\xbd\xda\xb4\x9b\x6f\x3a\x18\xba\x3c\x8e\xdc\x02\xfc\x13\ +\x1e\xd3\x53\x7e\x12\xe3\xf6\x6e\x53\xda\x3d\xec\x61\x0f\x7b\xd8\ +\xc3\xdb\x60\x7d\x07\xde\xc3\x1e\xf6\xb0\x87\xaf\x06\xb6\xe7\x7e\ +\x0b\xa0\x7f\x60\x12\xf8\x93\xc0\x97\x4e\xf3\x16\xc7\xcd\xf5\x66\ +\x6c\x34\x59\x3c\xf6\x44\x55\x13\x4b\x4d\x6c\xed\xea\x49\x3b\xb4\ +\x48\xcb\x9e\x74\xae\x1b\x06\x9f\xd8\x58\x56\xb6\xb5\x9b\xc0\xa2\ +\x76\xf3\x65\x12\xc9\x9b\x7d\x08\xb0\xcd\x72\xef\xa5\xfb\x1c\x58\ +\x7b\x2a\x9e\xf2\xd4\x3e\xb4\xbb\x39\xb2\x58\x46\xbb\x25\x74\x51\ +\xc5\x77\xd1\x21\x28\xcc\xcc\x1c\xa6\x15\xe8\x22\x90\xcd\x47\x67\ +\x49\xe4\x50\xbb\xbc\x60\x90\xcc\xae\x12\x4c\xff\xe2\x67\xef\x91\ +\x8b\x98\xd6\x5b\x79\x1f\xda\xde\x65\x59\xe2\xaf\xb0\x1d\xf2\x92\ +\x5d\xc8\xf3\x64\xbd\x78\xf7\x82\x04\x2f\xf8\x8f\xc5\xd7\x82\x97\ +\x5f\x6e\x43\x79\x00\xa5\xbe\x93\x5f\xa8\x79\x16\x03\xbc\x30\x50\ +\x7c\xc7\x95\x7f\xa8\xe2\xf1\xef\x87\x58\xca\xf4\xcb\xf4\xf8\xb4\ +\xbf\x76\xf1\x49\xe5\x1c\x27\x66\x41\xec\x9d\x0b\xff\x6e\x4b\xeb\ +\xed\x53\xf6\x8a\xcf\xcb\xfa\xca\x55\x7a\xbf\xbc\x87\x3a\x2f\x14\ +\x3d\xba\x60\xf3\xd1\xe3\x1f\xda\x2f\xfe\x1b\xfd\xf0\x2d\x74\x8f\ +\x63\x27\x0e\x1d\x31\x8e\x23\x97\x28\x79\xaa\x8d\xeb\x45\x47\x6c\ +\x5d\x9e\x7d\x9a\xd7\x9f\x17\xef\x0a\x94\xd1\x3a\xef\xd6\x54\x3e\ +\x11\x2d\x38\xc6\xcf\xda\xb6\x57\xbd\x0c\xf0\xf1\x89\xb4\x0b\xb1\ +\x91\x86\x6a\xf9\x5d\xc9\x7a\x93\xdc\x3e\x81\x15\xad\x32\x53\x97\ +\xda\x8a\xe7\x2f\x3b\x90\x24\xd2\xba\x99\xf8\x98\x09\x02\xa6\x0b\ +\xfa\xd3\x74\xea\x27\x70\xda\x20\xa4\xa1\x5f\x6b\xdc\x1d\x1c\x1c\ +\x0b\x33\xee\xc8\x99\xdc\x94\xb3\xa0\x14\x42\xf2\xac\x72\x19\x81\ +\xd2\xd5\xb1\xca\xa2\x69\x90\x3e\x73\x2e\xc6\xb7\xca\xe0\xd3\x71\ +\x50\x97\xc3\xb1\xa4\x4c\xea\xc0\x58\x9e\xe3\x99\xba\xc0\xcb\x55\ +\xb9\x53\x17\x68\xca\xf7\x31\xb2\x9c\x32\x92\x23\x3e\x3d\x46\x70\ +\x5d\xd7\x23\x6d\x42\xdf\x7e\x4b\x4e\x2f\xce\x49\x76\x3f\x95\x2e\ +\x39\xd2\x27\xce\x5f\x7e\xf3\x53\x6c\x45\x8d\xb5\xf1\x97\xb1\x13\ +\x5c\xc3\x5a\xf6\xe5\x4c\x3d\xc3\xfa\x18\x77\x07\x64\xeb\xa0\xbc\ +\xb3\xb6\x5e\x58\xf9\xb8\x18\xe6\x5b\x8d\x54\xca\xd1\xed\x38\x3c\ +\xd1\xa5\x42\x78\x7c\xa6\x6a\x9c\xaa\x87\x4f\xe4\xcd\xc2\xa3\xfa\ +\xa0\x3f\x9d\xeb\x17\xa9\x84\xb2\x73\xb2\x90\x85\xe6\xde\xb4\x05\ +\x25\x42\xba\x8e\x83\x4f\x6c\xd5\x3f\x48\x00\xce\x37\x77\x66\x02\ +\xad\x8b\x5b\x60\x65\xfe\x62\x58\x39\x77\x71\xae\xe3\x4e\x9a\xbe\ +\x31\x14\xae\x8b\x03\xaa\x9a\xd1\xb7\xb1\x12\x2c\x79\x96\x28\x38\ +\x8e\x41\xf8\xf4\x09\x2f\xbc\xfa\x85\x54\x8e\xac\x64\xf5\x03\xff\ +\x2c\xc3\x6f\xd5\x71\xf8\x57\xc9\x3e\x07\x92\x3d\xf8\x39\xb0\x6b\ +\xfe\xbc\xdc\x5f\xaa\xdc\xbf\x3e\xc0\xcb\xc8\x9b\xcd\x95\xc7\x75\ +\x9f\x6b\x74\x98\xa9\xbb\x56\x94\x31\x21\x48\xd7\x7c\x5e\x5f\x13\ +\xb7\x74\xa1\x69\x0b\xc0\xda\xf8\x00\x2c\xa6\xa5\xbc\xcc\xef\xd8\ +\x7e\x7c\x58\xda\x12\xe9\x6d\x80\xdf\xcd\x8d\xc6\x9f\x2e\x02\x2e\ +\x69\x55\xd8\x6e\xb9\xce\xa8\xfe\x40\xbf\x64\x54\x06\x5f\x48\xe8\ +\x43\xd9\xb6\xfa\x4b\xa3\x1b\xb1\x4f\x1c\x6b\xeb\x22\xb4\x82\xf4\ +\x77\x72\xb4\xc5\x61\x85\x81\x64\x8c\x9f\xa0\x45\x31\x41\xa0\x94\ +\x82\x14\xd9\x72\xa8\xf7\x8a\xe7\x1c\x0b\x86\x71\xf9\xdc\x0b\x4c\ +\x0b\xa5\x47\x93\x7f\x1c\xa9\x7b\x4a\x34\x0b\x4a\xa7\x8b\xf8\x36\ +\xb2\x60\x25\x8a\x3d\x39\x5b\xbf\xd6\xb1\xc1\x8b\x52\x3e\xf5\x28\ +\xd9\x3a\x7c\xac\xdb\x91\xad\x03\xca\xd7\x3a\x48\x78\x36\x2b\xcc\ +\x89\xd2\x57\xee\x2f\x49\x0e\xe9\x3c\xe5\x86\x9e\xb8\xd9\x57\x42\ +\xfc\xcb\x96\x85\x06\x05\x1a\xad\x14\x81\xae\x90\xc5\x1b\xfe\xc8\ +\x4f\xbd\x52\x10\x82\x9c\xc5\x91\x3c\x07\x47\x50\x31\xca\x95\x85\ +\xa9\xea\x8b\x59\xf7\xc4\x56\x74\xc1\x5a\x4e\xac\x75\xeb\x3a\x83\ +\x90\xec\x26\x38\x6f\xab\x66\x1d\x02\x71\x5f\xc5\xad\xea\xb8\x55\ +\xa2\xcb\x63\x84\x65\x9c\xd9\x64\x52\x4c\xa3\xdb\x0f\x8b\xb1\x74\ +\x2e\xbf\xf8\xce\x8f\x28\x70\xdf\x0a\xe8\x2e\x87\xe8\x9e\xbf\x8e\ +\xed\x3a\xc4\x0f\x27\xab\x7b\x57\x54\xd8\xf9\x5d\x81\x59\x89\x60\ +\xf5\x95\xd1\x7e\xd8\xc3\x77\x79\x2e\xa7\xa8\xf9\xc6\xaa\x58\x16\ +\xdc\xd0\x68\x73\x8e\xb6\x83\x8b\x9e\xad\xcb\x73\x3f\x59\xd6\x35\ +\xa5\x75\xeb\x58\xa1\xfd\x27\x76\xbd\x0b\x3c\x27\x92\x87\xfa\x2c\ +\x3d\x1f\xbf\x8c\x96\xb2\x59\x97\xf6\xb4\x3d\xf5\x5b\x80\x9a\x14\ +\xb3\x02\x04\xe9\x45\xc8\xcd\xf4\x23\xcf\x80\x98\x42\xbb\xaa\xd0\ +\xd9\x1a\xf3\x0b\xa5\xfb\x80\x2e\x9d\x9d\xef\x23\xf6\xe7\x3a\x48\ +\xfe\xf0\xf5\x67\x40\xd3\xcf\x9c\x14\x77\x4b\xa0\x25\xa5\xd0\xce\ +\x55\x50\x30\x7e\x0d\xb9\x2a\x82\x02\xe7\x0d\x34\x05\xda\x83\x4f\ +\xe9\x79\x4e\xf5\x36\x78\x8b\xe9\x41\x75\x29\xa7\x4d\x0c\x7c\xdf\ +\x97\x02\x4b\x3d\xa3\xaa\xfe\x68\x40\x68\x04\x56\xc7\xa8\x3d\x1d\ +\xd6\xe9\x04\x8b\xc7\x36\x3c\x50\xe2\x04\xba\xd4\xff\xac\xc4\x2f\ +\x81\xde\x5e\x97\x76\x0d\xab\x02\xf6\xb0\x87\x3d\xec\x61\x0f\xbb\ +\x77\xde\x3d\xec\x61\x0f\x7b\xf8\x8a\xa0\x67\x6a\xbb\x73\xaf\xb7\ +\xcd\xf0\x7e\x66\xf0\xd0\xe4\xef\x6e\xdc\x6e\x34\xfd\xde\xac\xa7\ +\xda\x68\xe3\x9b\x49\xae\x15\xb1\xaf\x52\x44\x2f\x2d\x5f\xec\xee\ +\x17\x1a\x78\x94\xa3\x26\xb8\x33\x9f\x99\x29\x19\x56\x69\x64\xda\ +\x92\x6c\xcc\xb3\x48\xe9\xe7\x53\x47\x89\x0b\xfb\x30\xb4\x71\x3a\ +\x86\xf1\x43\x48\x14\x01\x89\x59\x4c\xa3\x3c\xef\xa2\x04\x56\x13\ +\xf4\x86\xb2\x84\xae\x5d\x43\x04\xed\x21\x90\xd2\x92\x28\x2f\xce\ +\xfd\xcf\x9d\x6a\x67\x1e\x8e\xd0\xcb\x3a\x11\x9b\xb0\xbf\x12\x2d\ +\x61\xaa\x82\xf6\x61\x4a\x13\x68\x6e\x4b\x23\x1f\x1f\x0a\x4b\xda\ +\x88\xf1\xb3\x6b\x78\xd0\x9f\xde\x42\x5f\xb2\x9f\xde\xfc\x80\x2b\ +\x34\x91\x1e\x94\xdc\xbc\xc1\x3c\xba\xd2\x13\x6f\x9e\x97\xf7\x79\ +\x81\x9f\x97\x3d\xd1\xf7\x83\xab\x76\x29\x0b\xd9\xb7\xd8\xa0\x73\ +\xf0\x32\xbd\xca\xe8\x05\x2b\xf3\xb2\xe7\x13\x39\xc9\x69\xca\x46\ +\xae\x8e\x87\xda\x26\xd1\x65\xc0\xd3\xfe\x94\x87\xec\x5e\x84\x77\ +\x3d\xe1\xe5\xeb\xf8\xd8\xe3\x87\x8e\x51\x21\x19\x1f\x9b\x53\x56\ +\xd7\x7f\x96\x5b\x72\xfc\x43\xa9\x9f\xcb\x54\x19\xe4\x40\x1f\x5b\ +\xfc\x67\xbf\xb8\xfc\x45\x0f\xce\x17\x01\x25\x37\x9a\x24\x7b\x98\ +\x87\xa8\x49\x51\xc9\x70\xf1\x07\xf5\x57\xed\xb0\xc1\x0a\x44\xef\ +\x4c\x9b\xb7\x1d\x2c\x26\x39\x90\x2d\xd6\xa0\x8c\x98\xd8\xd0\x76\ +\x4a\x84\xf8\xa9\x6a\x1e\x4a\x1b\x9b\xb5\x72\xf6\x6f\x55\x70\x52\ +\x1f\xf7\x8a\x01\xcc\x9a\x76\xfe\x60\xfa\x32\x7d\xda\x3a\xed\xdc\ +\xff\x2c\xcc\x6c\x8d\x67\x6c\x2c\x58\x31\xce\xec\xdb\x31\x65\x27\ +\x8e\x0a\xb2\xea\x03\x74\x3e\xa1\xf3\xa7\xb2\xdb\xe3\xb4\x70\xf1\ +\x55\x5d\xe4\xe7\x7a\x55\x39\x53\x6e\x1f\x62\xd0\x93\xb3\x75\xce\ +\xdf\x3c\xa4\x74\xc4\x79\x2b\x5f\x78\xe9\xfc\x89\xd0\x6e\x5f\xa1\ +\x17\xf4\xd4\x6e\x2f\x9c\xb9\xfd\xa1\x29\x8b\x7c\xa2\x6d\x13\xae\ +\x17\xd5\x3a\x97\xf6\xf1\x33\xcd\x0e\x17\xba\x05\xe0\xd0\xf7\xe1\ +\x07\xb8\x3c\xf6\x55\xde\xc8\xb5\x8b\x11\xcf\x35\x0b\xd4\xf5\x2b\ +\xfc\xc1\xb8\xa1\x8c\x93\x83\x71\xf4\xe8\x6e\x1c\x3d\x39\x18\x67\ +\xcf\x6e\xc7\xe3\xf7\x0e\xc6\xd3\xaf\x1d\x8e\x77\xbf\x79\x38\x9e\ +\x7d\xe3\x6e\x3c\xfd\xe0\x66\x3c\x7a\x72\x3b\x8e\xcf\xd4\xe2\x47\ +\x4a\x75\xa6\xd8\xe3\x13\x95\xcf\xef\xe5\x51\x6f\xea\xc6\xfd\x47\ +\xa5\xe6\x86\x10\x6a\x84\x8f\xaa\x2a\x6f\xa0\x4a\x5c\xd3\xfd\x69\ +\x2d\x2a\xfb\x10\x2c\xee\x0b\xdf\xf9\x4b\xc1\xde\xb9\x2c\x3d\x00\ +\x5b\x86\xaa\x4c\x95\x3b\xe5\x02\x73\x2b\x7f\xfa\x78\x01\xb5\x39\ +\xa4\x1c\x97\xb8\x35\xec\x16\x97\xea\xc2\xf0\x47\xb9\xb7\xe3\xd6\ +\x2f\x7e\x72\x0c\x8e\x19\x37\xf0\xfe\xa4\x1e\xce\x5b\x19\x04\x4e\ +\xb0\x03\x0f\xf9\x7d\x09\x78\x28\xd5\x2f\x32\xa8\x0b\x2f\x2f\x2f\ +\x7d\x9c\xe7\xb1\x5e\x77\x2d\x03\x0b\xa8\x13\xcd\xfb\x3e\xe9\x44\ +\xea\x8c\xbc\xd7\xaf\xdb\xe3\x26\xb0\xa8\x08\x7c\x8b\x83\xf5\xb1\ +\x79\x28\x70\x5e\xcc\xf1\xfe\xe3\x02\x71\x1e\x65\x11\x53\x40\xd8\ +\x49\xe5\xa1\x36\x6e\x6e\x0e\xc7\x86\x72\xde\x52\x56\xf7\x4f\xaa\ +\xbd\xca\x88\xae\xf8\x4e\x6f\x59\xbb\x78\x75\x1d\x42\x83\x10\x3b\ +\xa4\x38\x21\xd7\x8e\x40\x53\x80\x0c\x42\xfb\x3a\xab\x75\x21\xe8\ +\x66\xf0\x52\xe8\xe4\xe3\x97\xbd\xb2\x94\xeb\x36\xc4\x79\x86\xd4\ +\x2e\x9b\xae\xc7\xf3\xfe\x90\x6b\xb5\x2e\x74\xd6\xe9\xa2\xbc\xe8\ +\xcb\x4f\x17\xc0\x85\x77\x27\x61\x57\x1e\xf3\x91\x89\x5f\x72\x80\ +\x65\xf3\x7f\xc7\x88\xda\x4c\xcc\xca\x5e\xe5\xd8\xee\xd8\x8a\x31\ +\x61\xa7\x2b\x87\xff\xb9\x01\x1f\x91\xec\xb4\x0f\xc5\xa7\x63\x58\ +\xd8\x28\xad\x60\x55\x86\xfa\xc5\x73\x1c\xf7\x8f\xa8\xf3\xae\xe4\ +\x35\xaa\xac\xf5\xb5\xd6\x54\xfe\xe4\x76\xfe\x28\x84\x9d\x3b\xd4\ +\x4d\x88\xb7\x65\x23\x26\xf3\x30\xc1\xa5\xbf\x1a\x17\xe8\x78\x5c\ +\x8a\xf3\x7e\x2a\x8a\xe2\x37\xcb\xa2\x6d\xae\x57\xc9\x86\xb6\x2f\ +\x3e\xa0\x8f\x17\xdb\xf4\x55\x9d\x18\x67\x06\x46\x62\x45\x58\xd7\ +\x7a\x20\x72\x16\xde\x84\xe5\xe8\xea\x38\x17\x08\x28\x87\x64\x2f\ +\x30\x69\x2e\x13\x7f\x81\xa8\x47\x7a\xc9\x5d\x07\x74\x6c\x80\xc7\ +\x6f\xfe\xeb\xc5\x79\x93\x53\x38\x8f\xbd\x78\x1b\xf0\x61\x4c\x90\ +\xaf\xfd\x8a\x92\xdf\x65\x2c\x7e\xee\x73\xcb\x6f\xc7\xd9\x2e\xe7\ +\x2f\x6f\xf1\xbb\x71\x1e\x87\xd2\xfb\x99\x80\xfc\xa5\x6f\xbf\xd0\ +\x45\x1f\xd4\xde\x75\x17\xe3\x72\x92\xa3\x6b\xe5\xfa\x55\x59\xf6\ +\xdb\x9d\x37\xd5\x06\x98\x56\x5d\x69\xbb\xb1\x6c\x13\xe8\x13\xf7\ +\x65\xf9\xa6\x93\x0a\x1c\x10\x34\x74\xac\x68\xb1\x94\xc1\xb4\xac\ +\x2d\xa9\x67\xae\x53\xdd\x6a\x4e\x10\xaa\x07\x70\x5f\x77\x42\x9f\ +\x34\xe8\x57\xc1\x52\x61\x45\x05\xb5\x6c\x9b\xa5\xc8\x51\x14\x94\ +\x43\x99\x03\xb1\x47\x85\x8d\x05\x42\xcd\x2f\xb2\x4a\x68\xed\x04\ +\xc4\xa9\xda\xb1\x19\x1e\xd2\x09\x56\xea\x99\x42\xfd\xe6\xe7\xf0\ +\x35\x4c\x31\x57\xfb\x86\x75\x0b\x16\x40\x2b\xaf\x69\xcc\x7d\xaa\ +\xc5\x8e\x37\x5d\x25\x78\x7b\xae\x58\x0e\xfd\x5c\x4e\xfb\x37\x0f\ +\x38\x3f\x1c\xbd\x87\x3d\xec\x61\x0f\xbf\xa8\xe0\x7b\xd6\x1e\xf6\ +\xb0\x87\x3d\xfc\xbc\x40\x4f\xe5\xa0\xeb\xc9\xe6\xc3\x80\x47\x45\ +\x40\x56\xf3\xc0\xbb\x9b\xdb\x31\x36\x9a\x7c\xce\xa7\x5a\x51\xfe\ +\x6a\x72\xdb\xae\x11\x97\x09\xaa\x01\x21\x6e\x13\x50\xdd\x9b\x77\ +\x57\x50\xd3\x99\x43\x4c\x5c\xb5\x87\x99\x71\x4c\xae\xb5\x6f\x79\ +\xea\x67\xe4\xc3\xd0\x66\xd3\x99\xdc\xb0\x3c\x08\x85\xb2\xb7\xd9\ +\x05\xb5\x50\x50\x2a\xf6\xb3\x1e\xad\x5b\x55\xaa\x37\x5b\x78\xb8\ +\xe1\x7f\x03\xfd\x90\x73\x3b\x0e\x8f\x44\x8f\xa4\x16\x3d\x3c\xd1\ +\x43\xd3\x89\xe4\x63\xb9\x1e\x47\xcf\x27\x34\x78\x6f\xcc\xb3\xa2\ +\xa9\x9e\x82\x78\xb0\x72\xc5\x24\xfb\x78\x70\x67\xea\xe3\x92\x6a\ +\xbb\x0f\x61\x29\xcd\x0f\xd3\xa5\xb7\x8e\x9d\x30\x54\xc7\x8a\x97\ +\x29\x24\xed\x85\x01\xbf\x4c\x17\x7f\xac\x9d\x5f\xc2\x23\xe3\x53\ +\x3c\x8b\x10\x5d\x29\x5e\xb6\xf4\x82\x99\x63\xa1\xc2\xe3\xbc\xf0\ +\x6e\xf4\xd3\x9b\x69\xf1\x54\x00\xda\x08\x88\xce\x87\x56\xd7\x54\ +\xb1\xa6\xc1\xd4\x43\x8f\x8a\x94\xd3\x7e\x4d\xb1\xb9\x93\x22\xd3\ +\x66\xb6\xe8\x92\x62\x1d\x03\xf6\xd7\x3d\xb6\x3c\xeb\x39\xe5\xe8\ +\x3a\x8e\x07\xf6\x03\x5e\x6a\xc9\x8d\x3a\xd8\xa7\x7c\x1b\x5b\xe6\ +\x6b\x40\x1c\xd3\x75\x55\x15\x5c\x11\x72\x50\x8e\xf5\x50\xc9\xb5\ +\xd0\xe2\xc4\x50\xd7\x3c\x71\xd1\x97\x6f\xd9\x8c\xd6\x8b\x35\xbf\ +\xd0\x44\x8a\xca\xee\x11\x88\x6e\x65\xbf\x0f\x71\x50\x8d\x8b\x8d\ +\xcc\xb8\x49\xe0\x1a\x1b\xd6\x36\x48\x95\x29\x74\x1c\x60\x45\x6b\ +\xd9\x17\x8f\xae\xf5\xa2\xf4\xe8\x12\x0d\xd2\x27\x6d\x8e\x0f\xfd\ +\xd2\xe3\x78\x37\xbe\x69\x6f\xc0\xba\xdf\xda\x6e\x53\xcb\x40\xd9\ +\x13\xb3\x7d\x0c\x1c\x8f\xa5\x8f\x31\xf5\x59\x2a\x15\x9d\x5d\xa0\ +\x30\x4b\x8c\xeb\x58\x7e\xe8\xd8\xe0\x8d\x96\x44\x2b\x6f\x1f\xef\ +\xc5\x47\x2e\x93\x0f\xda\xc6\xbe\xed\x6d\x33\x14\x8f\x1f\xc4\x0e\ +\xa9\x4b\xc6\xb2\x78\x8f\xb5\x60\x5e\xc4\xe2\x5b\x32\x63\xb0\x6c\ +\x5e\x48\xf7\x27\xea\x96\x98\xe9\x57\x65\xa4\xff\x53\x32\x8c\xc7\ +\x57\x03\x82\xae\x79\x19\x73\x16\x4c\x7d\x8d\x51\x1a\xde\x79\xf9\ +\x9f\x01\x40\x5d\xe3\x0e\xcf\xee\xc6\xd3\xc7\x87\xe3\xe9\xd7\x0f\ +\xc7\x3b\xbf\x7a\x34\xbe\xf6\x1b\x67\xe3\x9b\xbf\xfe\x64\x7c\xe3\ +\x37\xce\xc7\x37\x7f\xe3\x64\x7c\xeb\xbb\x4f\xc6\xfb\xbf\xfc\x78\ +\x3c\xfd\xee\xc9\x78\xf6\x6b\x87\xe3\xc9\xaf\x5e\x8d\xd3\xf7\x8f\ +\xc6\xf1\x7b\x8a\x7d\x67\x33\x8e\x9e\xdc\x8e\x23\x16\xd7\x74\xed\ +\xf1\xb9\x4e\x39\x55\xee\xac\xe2\xaa\x86\xf3\x72\x5c\xe0\x4f\xf6\ +\xf6\x42\xd2\x8e\x71\x4a\x4b\x22\x43\x67\xc6\xee\xf1\x88\x20\xd5\ +\x76\x74\x81\x95\x2b\x4b\x82\xa6\xea\xde\x4b\x21\x81\x35\x6e\x07\ +\x4c\xc1\x8e\xdb\x4e\x95\xb6\xa1\x7c\xdd\x0d\x05\xb0\x46\xed\x38\ +\x3a\xfd\x5b\x6a\x28\xb9\x0f\xf9\x92\x2f\xcc\xef\x65\xe1\xb9\x86\ +\xcf\x2d\x6d\x0f\x5f\x06\x1e\xec\x42\x8d\x1d\x75\xf5\xcd\x66\x59\ +\x50\xe3\xbc\xb4\xf3\x3c\x04\x3d\xda\x5a\xaf\xa3\xb4\x3e\xb0\x05\ +\x65\xdd\x86\x52\xe4\x9c\x08\x9d\x3e\x3e\xee\x0d\x0b\xb7\x7b\xec\ +\x19\x23\x75\x36\x3f\x0c\xab\xd0\xf6\xca\x19\x51\xa8\x13\x7f\x9d\ +\x3d\xc2\x76\x79\x2c\x66\x5f\x33\xa7\xf4\xea\xdd\x2e\x10\x8f\xff\ +\x92\xdd\x77\x0b\xa9\xdc\x2e\x6b\x04\x87\x7c\xc5\x96\xfa\x6a\xab\ +\x91\xc9\xe7\x97\xfb\x15\xdf\x59\x92\xb2\xea\x58\x56\x5f\xa3\x62\ +\x28\x0c\xf4\xa7\x39\xda\x6f\xc9\x06\x27\x7f\xdb\x03\x29\x3a\x5e\ +\x6b\x70\xbd\xac\x13\x8a\x4f\x9b\x8a\x9a\x2d\xd9\x66\xb5\xaf\xb6\ +\x9c\x95\x70\x2c\x7a\xd3\x6e\xcd\x3b\xa6\x5e\x67\xad\x7d\x83\xf8\ +\xa1\x5f\xf3\x96\x1d\x23\xcc\x44\x6f\x85\xb1\x53\xa8\x63\x7c\x71\ +\x2e\x9b\x09\x3b\xa0\x74\x8d\xdc\x0f\xec\xcf\xf8\x95\x5c\xf4\xce\ +\xff\x70\x82\x8f\x28\x44\xbb\xd4\xd5\xc2\xe4\x4d\xdd\x65\x2b\x7b\ +\xc9\xe1\xc1\xce\xd5\xd0\x36\xfd\xc9\x96\x63\x2a\x4a\xdd\xa5\x4b\ +\xa6\xd4\xc3\x7d\x48\x08\x79\x20\xfe\xc4\x4c\xd9\x40\x6b\xc9\x25\ +\xbe\xe6\xb0\x46\xb7\x4b\x96\x38\x2c\x7e\x5b\x80\x4c\x8e\xe4\xf1\ +\x3d\x36\x1c\xc6\xec\x2b\x41\xf6\x2d\x52\xc9\xd6\x3c\x00\x32\x6d\ +\x8f\xdd\x35\x54\x79\xdd\x9e\xe9\x03\x13\x81\x7d\xae\x14\x2b\x5f\ +\xf7\x21\xfe\x68\xaa\x3f\xad\xa7\xef\x82\x4b\x8e\x20\x5b\xf4\xf4\ +\xc7\xc2\x63\xe3\x10\xad\x8f\x33\xdb\xd2\xa6\x50\x77\x61\x8f\x0f\ +\xeb\x84\x55\x8f\x88\xa5\x03\x5d\x2f\xf8\x1e\xb3\x89\x59\xc6\x6f\ +\x6c\x95\x74\xd6\x3d\x7e\x60\xbc\x93\x43\x7b\xe7\x56\x2e\xf9\x4c\ +\x3d\xba\xc6\x95\x6e\xcb\x66\x90\x06\xfd\xda\x46\x2e\xd8\x92\x4d\ +\x57\xb9\xbd\xc5\xa1\xfc\x91\x23\x7a\x3f\x79\x00\xae\xfb\xd0\x8a\ +\x02\xe9\xa7\x4c\x40\xe5\x30\xaa\xf7\x8d\x7c\x86\xcc\xa3\x7d\xf2\ +\xc9\x86\x13\x4c\x02\x60\x1b\x78\x1e\x3c\xe4\xfa\xd7\xf1\xc8\x74\ +\x65\x5c\x97\xae\x14\xf2\x8d\x28\x4c\xc7\x0c\xe2\x61\x29\x63\xfe\ +\x43\xa7\x35\xc2\xf2\x69\x2d\x50\x16\x41\xb5\x4d\xc8\xd7\x3e\x2e\ +\x6d\x0c\x33\xc5\x06\x2b\x76\xb5\x4b\xde\x86\xad\x34\x2b\x77\xdf\ +\x97\x24\xef\x66\x88\xdc\x7d\xb1\xe4\xbb\x9f\x79\x01\xfa\xc3\x54\ +\xb8\x53\xcc\x17\x40\x7b\x6e\x47\xf1\x09\xb5\xcd\xed\xe6\x4b\x96\ +\xbe\x87\x3d\xec\x61\x0f\xbf\xb8\x90\x3b\xf9\x1e\xf6\xb0\x87\x3d\ +\xfc\x9c\x00\xd3\xbd\x9e\xd6\xbd\x6d\x7a\xf7\xe0\x44\x72\x7b\xae\ +\x38\x6e\x6e\xae\xfd\xd2\xad\xa7\xac\x99\x38\x67\x72\x8b\xdf\xca\ +\x55\xb0\x48\xf6\xb6\xd3\x52\xfa\x7c\x04\x80\xac\x58\xd3\x62\x9c\ +\xa1\x95\x82\xc9\x8a\xc1\x96\xf2\x03\xb6\x6d\x17\xf1\xb9\x10\xb7\ +\x95\xf3\x64\x55\xb3\x1d\xb5\x8b\xd1\x2e\xc5\xb1\x9f\x82\x61\xe5\ +\x2e\xe0\xa1\x84\x3e\x29\xef\xa6\xa0\x1e\x52\xb8\x83\x40\xef\x56\ +\x0f\x47\xac\x59\x1d\xeb\xe1\xfe\xe4\xe4\x70\x9c\x9e\x42\x4f\x44\ +\x8f\xc6\xc9\xe9\xf1\x38\x3e\x11\x65\x91\xed\xec\xc0\xbf\xb3\x72\ +\xc0\xd7\x2e\xf2\x7b\x2b\xfe\xfa\x45\xa5\xe3\x65\x80\x62\xbd\x78\ +\xe3\x05\x9a\xd4\xa7\xa9\xc1\x8a\xe8\xa6\x91\x97\xe7\x7e\x99\x5e\ +\xed\xe5\xce\x86\x4e\x02\x2f\xd4\x93\x57\x4a\xbf\x70\x28\x3f\x9e\ +\xca\xd0\xf1\xbb\x4e\x3c\xe8\xf2\x4e\x87\x97\x12\xd6\x95\x8f\xf4\ +\x79\x49\x81\x11\x1d\x5f\x85\x17\x5d\x3f\xd5\xe1\x07\x2c\xfb\x35\ +\x16\xe0\xb7\x42\x64\xa3\x7c\x20\xf9\x0d\xb4\xe4\x9c\x2f\x45\x8c\ +\xc9\xbf\xae\xaf\xeb\x4a\xbd\x84\x59\x10\x58\xa1\xc0\x47\x41\xbc\ +\x6d\x95\xbf\xeb\x4a\x9c\x29\x32\xf9\xad\xc3\x97\x3e\x08\xdf\xe8\ +\xad\x78\x8e\x07\xf9\x40\x45\x49\x45\xd9\x1c\x30\xf1\xeb\xfa\xb9\ +\x1c\x6a\xd1\xe5\x15\xd1\x2e\x48\x9b\x82\x65\xb0\xde\x7c\x02\x8b\ +\x14\xbf\xa2\x8c\x39\x79\x7b\xdf\xe9\x63\x5f\xa1\x9f\xac\x01\xea\ +\x5a\xd4\xb2\xb8\xc5\x14\x34\x69\x65\xc3\xda\x18\x7e\xd6\xbd\xf4\ +\xa8\x5d\xe7\xa9\x01\xda\x07\xd6\x0e\x8b\x0c\xc0\xab\x8f\xd2\x5f\ +\x78\x47\xb7\x85\xd6\xae\xf8\xd2\x93\x27\x6d\x58\xe9\xc9\x85\x58\ +\x72\x97\x65\x95\x75\x22\xbc\x30\xd1\x21\xb2\x3f\x85\xaa\xcf\xfd\ +\x42\x6a\x52\xf4\xc4\x65\x0b\x5f\xf1\xcd\x95\x3d\x39\xc2\xa3\x33\ +\x6f\x97\xb2\x4d\x0a\x14\x6f\x31\x7e\x89\x8c\x3a\x86\x60\xb4\xb0\ +\xb4\x51\xe7\xa9\x28\xf5\xf2\xfb\xd0\xae\x9f\xa9\x14\xf8\xfa\xb8\ +\x2f\x63\xc8\xe3\xc8\xe7\x35\x7e\xc8\x39\x97\xef\xf9\xac\xf8\xa0\ +\xfc\x95\xdb\xbf\x15\x21\xa4\x1c\x69\xad\xeb\xf6\xf9\x45\x8d\xf3\ +\x82\x2a\xbe\xd0\xaf\x77\x78\x6b\xc3\x3f\x09\xf0\x29\x33\xe1\xd9\ +\xf9\xdd\x78\xe7\xdd\xa3\xf1\xf5\xef\x9e\x8c\x6f\xff\xf6\x93\xf1\ +\xcb\xbf\xf3\xb5\xf1\x9d\x7f\xef\xd9\xf8\xfa\xdf\x3f\x1f\xdf\xf8\ +\xb7\x9e\x8c\xf7\xff\xde\xbb\xe3\x9d\x7f\xe7\x74\x7c\xf0\x3b\x8f\ +\xc6\x7b\xbf\xf2\x78\xbc\xf3\xed\x93\xf1\xde\x37\xce\xc6\xbb\xdf\ +\xdd\x8c\xc7\xdf\xb9\x1b\xe7\xdf\xd4\x75\xf1\xfd\xdb\x71\xf2\x54\ +\xd7\x97\xa7\x2a\xe6\x5c\xc7\xe8\x90\xaf\xf7\x54\x3d\x38\xf8\xec\ +\x84\x5c\x72\x3d\x18\xc0\x15\xa8\xaa\xb6\xf9\xd3\x69\x65\x5b\xbb\ +\xd1\xa4\x78\xad\xe9\x02\xc9\x4b\x82\x2a\x0f\x58\xd3\xe6\x1f\x88\ +\x8d\x3d\x0e\xd3\xed\x21\xa0\x2d\x0f\x78\x44\xa3\xbc\x2e\xbf\x34\ +\xce\x17\xcb\x12\x32\x19\x73\xdc\x8b\xf2\x1b\x27\xb9\x3f\x71\xbc\ +\x72\x14\xf9\xea\x4b\xbe\xaa\x88\x97\x70\xbb\xf5\x5d\x72\xfc\xd4\ +\xf0\x40\x57\xfc\xa2\xc3\xd5\xf5\xd5\x3c\x5f\xb4\x97\xa6\xfa\xdb\ +\x24\xc7\xca\xdd\x96\x8b\xb3\x01\xae\x25\xd3\xc5\x24\x48\xfc\xae\ +\x4f\x72\x17\x6c\xf9\x0b\x76\xe5\x82\x1a\xa2\x5f\x0a\x96\x14\xe2\ +\x2c\x34\xbd\x9f\x64\xa9\x21\x65\x68\x4c\x32\x16\x2d\xc5\x46\xb9\ +\xcb\x8b\x5b\x71\x95\x87\xb3\xa1\x2d\x8d\x39\x11\xd5\x3a\x2b\x98\ +\x53\x45\xc7\x4b\xe4\xc4\x42\x81\xc8\x79\x51\x2c\x5e\x8e\xf8\xda\ +\x1a\x93\xcb\xcd\x37\x11\x44\xc1\x02\x42\xbc\x88\x08\xbd\xb5\xae\ +\x02\x0c\x92\x9b\x05\x56\xc7\x09\x9b\xa5\x84\x36\xf1\x3e\xf5\x0d\ +\x1f\x19\xea\x2b\x6a\xc9\xe2\xa5\xf3\xf9\xa9\x9c\xa6\xc8\xe8\x59\ +\x20\xb3\x7e\x75\x91\x2d\x7f\xc7\xae\x74\xc8\xae\xbb\xe3\xa0\xdb\ +\x68\x9d\xf7\xa1\x0f\xa2\x7d\x61\xb5\x73\xd3\x97\xfe\xa0\x3e\x65\ +\x54\x7f\xe9\x1a\x2c\xdb\x2d\xf5\xc2\xd7\xd0\xb9\x1b\x88\x69\x4d\ +\xc5\xb9\xbe\xe5\xe3\x38\x10\x5d\xa1\xcb\x80\x52\x86\x58\xf3\x22\ +\xab\xbe\xee\xfa\x84\xdf\x81\xf2\x4b\xfd\xaa\x1f\x40\x39\x86\xeb\ +\x3a\x51\x0e\x3c\xde\x89\x09\x88\xcf\x9f\xc1\xe9\xe2\x64\xb0\x58\ +\xfb\x24\x0d\xef\x91\xe6\xca\x94\x2f\xfa\x76\x6b\xd2\xbe\xed\x27\ +\x4a\x9c\x5d\x67\x1e\xab\x55\xae\xf4\x29\xbc\x10\x50\x9b\x26\x0f\ +\xa4\x5c\xab\xe4\xbb\xd4\xab\xdb\x96\xdc\x6d\xef\xd8\xde\x4f\x7f\ +\x13\xed\x5c\x5e\xc6\xd6\xb4\x39\x0e\x88\x1c\x7d\xea\x91\xfc\xc8\ +\x9a\x48\x11\x0b\xde\xc2\x57\xf9\xf6\x05\xe0\xd0\x25\x2e\xd8\x7c\ +\xf4\x9d\x3f\x7c\x61\x55\x7e\x89\x8d\x5f\xb7\xa3\xed\x91\x63\x9b\ +\x08\x59\xc9\x76\x85\x56\x2e\x30\xe7\x17\xd5\xe6\x1c\xcb\x33\x4c\ +\xfc\x8b\x15\xef\x7f\xaa\x5b\xd5\xc3\xd8\x7e\xa2\xb0\xd4\xc0\x57\ +\x35\x5f\x6f\x1c\xe8\xbd\xb9\x62\xec\x97\x1d\xda\x5c\x7b\xb8\x5e\ +\xd5\xf5\x87\x3f\x43\xd1\x0a\xd3\xfc\xeb\x56\x25\x2e\xbd\x74\xa8\ +\x18\x16\xd0\x98\x62\x1d\xc9\x76\x2c\xde\xf4\x80\xdf\x3b\x17\x3d\ +\x84\x6e\x74\x1a\x11\x87\x7f\x12\x91\xc3\x87\x57\xd8\x45\x35\xb0\ +\xd0\xe6\xfa\x17\xe4\xb8\x34\xbf\xf6\x2f\xbd\x76\xd6\x6b\xc7\xa7\ +\xd4\x3e\x17\x28\x73\x49\x10\xd8\x95\x0b\x5a\xbd\x98\x8b\xcb\x09\ +\xf3\x20\x60\xa1\x08\x43\xb5\x6f\xca\x5b\x80\xe7\x96\xf7\x02\x0f\ +\x07\x3c\x00\x72\x54\x27\xe2\xce\xe2\x25\x7d\xb6\xb9\xbd\x89\x69\ +\x0f\x7b\xd8\xc3\x1e\xf6\xf0\x56\xe0\x7e\xb4\x87\x3d\xec\x61\x0f\ +\x3f\x3b\xf8\xd2\x93\xb9\x2f\x86\x2f\x9b\x2a\x7e\x6f\x9f\xa4\x32\ +\x81\xbd\xbd\xe1\xeb\xa2\x34\x79\xaf\x07\x00\xc0\xf3\xda\x9e\xdc\ +\x42\x3b\xc5\x6e\xaa\x0a\x81\xac\xcb\x9a\x99\x56\xf6\xa6\xab\x62\ +\x26\x2c\x69\x77\x0b\x10\xd8\xdf\x91\xc2\x07\xec\xd3\x66\xc7\x49\ +\x1e\x82\xf6\xda\xca\x82\xb0\x46\xc3\x5a\x98\x4a\x83\xbb\x45\x49\ +\x3c\xcd\x3e\x92\x70\x74\x38\x36\x47\x92\x78\x41\xcd\x6f\x05\x9d\ +\x1d\x8c\x93\xa7\x87\xe3\xf4\xd9\xc9\x78\xf2\xde\xe9\x78\xfa\xfe\ +\xa3\xf1\xee\xbb\xef\x8e\x77\xde\x7d\x36\x9e\x3d\x7b\x47\xf4\xd1\ +\x78\xf2\xec\x7c\x9c\x3f\x7e\x34\x4e\x4f\xcf\xc7\xc9\xd9\xc9\x38\ +\x3a\x3d\xaa\xdf\x32\x53\x62\x16\xb1\x8e\x79\x40\x12\xaf\xa7\x24\ +\x1e\x94\x40\xf7\x1b\xd8\x4f\x5c\x5b\x3a\xc5\xf0\x9c\x28\x7d\x50\ +\x72\x07\x3a\x9f\x94\xa2\x77\x9d\xdf\x88\x4e\x75\x86\xa7\xee\x04\ +\x22\x37\xcf\x03\xa6\x5f\xba\xeb\x21\xf4\x58\xc9\xc5\x83\x47\x47\ +\x59\x4c\xf3\xca\x1f\x3e\x46\x1e\x48\x95\x47\x55\x81\x02\xde\x6b\ +\x87\xb8\x7e\xc0\x0c\x44\x46\xdf\x18\x5d\x72\x4d\xff\x95\xbe\x71\ +\xda\x10\x67\x9e\x95\x5e\x7f\xa1\x58\x63\xeb\xba\x77\xbf\xec\xa2\ +\xfb\x0f\xea\x38\xf9\x25\x49\xfe\x14\x1a\xa6\x91\x3c\x7a\x6c\x05\ +\x2d\xa3\x26\x1e\x7d\x2f\x64\x48\x06\x7b\x23\x89\x31\x39\x7a\x91\ +\x24\xe8\x02\x34\x9a\xf0\x4c\x51\xd9\x99\xb1\x4f\x38\xed\xdb\x56\ +\x26\x3f\x39\xc3\x37\x36\x43\xde\x1a\x24\x8e\x5e\xe7\x68\xdd\x4a\ +\xe3\x11\x3e\xeb\x83\x80\x3c\x77\x21\xad\x17\xac\xe3\xc3\x6a\xb7\ +\x15\x1b\x99\xbc\x5b\xb9\x71\xb0\x02\x88\x6e\xd9\xac\x89\xab\xed\ +\xe1\x03\xe4\x9a\x82\x60\x26\x11\xdc\xcb\x50\x58\x40\x12\x1e\x8e\ +\xe9\x0e\xde\x4e\x48\xe4\x65\x09\x19\x12\xd3\xde\xec\x55\x4e\x2a\ +\xac\x3f\x95\xa8\xd8\x1e\xcf\x06\xf3\x8d\x81\x1c\xb7\xd2\x61\xaf\ +\x98\xce\x8d\x3e\xd6\xf6\x89\xce\x2f\x3d\x18\x97\xf8\x5b\x1f\xfb\ +\xee\x57\xb3\x7a\xab\x31\x65\x1d\x63\x95\xc6\xb4\x1f\x39\xd0\x31\ +\xfe\xda\x0e\xae\xce\xf3\x43\xce\x59\xa3\x7c\x44\x97\x4f\xa8\xc6\ +\xe6\x73\x43\xb1\x47\x55\x0e\xe8\xaf\x59\xd2\x1f\x63\x95\xeb\xc6\ +\xdd\xb1\xee\x15\x2c\x9e\x9d\xdc\x8e\x83\x53\x91\x27\xb7\xe3\xf4\ +\xbd\xbb\x71\xfc\xb5\xa3\x71\xfe\xad\xbb\xf1\xce\xaf\xde\x8d\xa7\ +\xbf\x73\x3a\x9e\xfd\x83\xf3\xf1\xee\x3f\x7a\x3a\xde\xf9\xef\x9c\ +\x8d\x67\xff\xf0\xc9\x38\xff\xef\xeb\x1a\xf7\x0f\xbe\x39\xc6\xbf\ +\xf9\x9d\x31\xfe\xe1\xb7\xc7\xf8\x3b\xdf\x1c\x47\xff\xd6\x37\xc6\ +\xb3\x7f\xfb\x6b\xe3\xbd\xdf\x7c\x34\xde\xf9\xce\xe9\x78\xf4\xed\ +\xdb\xf1\xf8\xd7\x2e\xc6\xe1\xaf\x5f\x8e\x83\xdf\x16\xfe\xfa\xab\ +\x71\xfc\xcd\x37\xe3\xe8\xa9\xca\xe5\x53\x6f\xb4\x93\xde\xa1\xd3\ +\x7a\xb1\xac\xee\x4f\x58\xc2\x45\x95\x4f\xa8\xe9\xda\xcc\x22\x53\ +\x1b\xbe\x08\x92\xbe\xa0\x33\x96\x72\xcb\x56\x80\xf9\xa1\xdc\xa5\ +\xbb\x1f\x82\x46\x98\xbf\x82\x07\x12\xf4\xcd\xc5\x7c\xc8\xae\x5b\ +\x44\xb5\xaf\xda\x0f\xb0\x68\xc6\xa2\x9a\x7f\x4b\x6d\x73\xcb\x2f\ +\x7e\x28\x4b\x5e\xce\xf1\x75\x90\xbb\x39\xd6\xb5\xd8\x86\x76\x7c\ +\x9b\xfd\x01\xb8\x97\xfb\x17\x1b\x38\x2c\x37\xb7\x37\x39\xb5\x4b\ +\xb7\x0d\xab\x3e\xe6\x45\xeb\xe7\x74\x35\x26\x9d\x8d\x11\x1e\x82\ +\x07\x4d\xbb\xca\x96\x53\xae\x17\x5d\x7f\xa2\x63\x76\xbf\xb0\x5d\ +\x4d\xc6\x24\x23\x8f\x4f\xa8\xa5\x2f\x1e\x2a\xab\x4e\x67\xc7\x1b\ +\xfb\xfc\x36\x1f\x66\xbb\xdd\x79\xd9\x3c\xa1\xfa\xad\x5c\x8d\xb1\ +\xaa\x6d\xe6\x0a\x55\x78\x3e\x8d\x56\x20\x96\xda\xcd\x57\xc3\x2b\ +\xd7\x5c\x90\x81\xf8\xaf\xf3\x46\x03\xb4\x4f\x53\x6c\xed\x09\x2c\ +\x74\x6e\x6e\x90\xae\xab\xc6\xf6\x45\x5f\x13\xb6\xd2\x63\x47\xce\ +\xb5\x1e\x2c\x1d\x76\xfc\x8c\xf1\xec\x18\xf2\xa0\xf3\x85\xda\x32\ +\x40\x0b\x17\x7e\xa2\xdb\x57\xd8\x9d\x3c\x8e\xd4\x45\xd0\xc4\xbb\ +\x8e\xd8\xca\x6c\x3e\x55\x88\xc2\x98\x7a\x2c\xf2\x82\x4b\x5f\x80\ +\xc0\x22\x53\x7d\xe2\x92\x7f\x65\xef\x7a\x55\x27\x23\x2d\xf5\x47\ +\x56\x5e\x7c\xd6\xf5\x9f\x75\x80\xc6\x27\x10\xbb\xe3\x5d\x56\xb7\ +\x27\x7a\xc0\x36\xe7\x42\x58\xf4\xa5\x11\x74\xb6\x45\xb3\xb0\xb1\ +\x39\xe7\x16\xac\x65\x7c\x3a\xc7\x02\x4b\x0a\x71\x16\xd8\x09\xa9\ +\x43\xd7\xaf\xc7\x61\x53\xe9\x28\x2b\x2e\xe8\x39\x0b\xa2\x07\xe0\ +\xd9\xdc\x75\x9d\x43\x34\x5c\xf6\x5b\xfe\xbd\x00\xe6\xee\xc3\x86\ +\x1c\x9d\xd1\x05\x25\xeb\xa2\xab\x32\xc9\x8b\x6a\xfa\x0b\xf0\xaf\ +\x4f\x0a\xb6\x7f\xe6\x4b\x64\x58\x74\x8d\xec\x67\x3d\xbb\xec\x29\ +\x77\x7d\xd6\xf6\x55\x1e\xfe\x52\x01\xcb\xd6\x5b\xae\x3c\x20\xf5\ +\x70\x5d\x00\xec\x7d\xee\xc4\x8f\x2d\xb1\xab\xf3\xa7\xb0\x65\xe6\ +\x1a\x94\xd3\x94\x50\x6a\xa6\xc4\x8b\xbf\xca\x60\xa1\xc5\xac\x34\ +\xd1\x37\xa0\xe9\x49\x8a\x9e\x0b\xb9\x56\xc5\xc9\x97\x2d\xb3\xb5\ +\xeb\xbc\x50\xca\x61\x11\xed\x48\x78\x7c\x58\x9f\x30\x57\x19\x47\ +\x47\xd7\xe3\xf8\xe0\x46\xba\x9b\x71\x72\xb8\x19\x27\x7a\xd6\x3c\ +\x15\x9a\x97\xdf\xe9\xf1\x95\x10\xbd\xe6\x64\x9a\xab\xe9\x4f\xad\ +\x4b\x81\xa6\x54\x8d\x82\x05\x3e\x8e\x55\xaa\x77\xc2\x79\x8d\x56\ +\x9b\xba\x46\x06\xf4\x10\xdb\xa5\xaf\x8b\x66\xb7\x34\x99\x7a\x27\ +\x98\x81\x2b\xa8\x72\xbf\x10\x5c\x56\xdd\x97\x56\x21\x5b\xd1\x5d\ +\x4e\x41\x97\xbd\xa3\x16\xdc\xd7\xbc\x15\xaa\xdc\x6d\x48\x2f\xb1\ +\x73\x75\xb4\xe3\xeb\xcc\x6f\xf7\x0b\x6a\x7b\xd8\xc3\x1e\xf6\xf0\ +\x85\xc0\x5d\x76\x0f\x7b\xd8\xc3\x1e\x7e\xb6\xf0\xb6\xb9\xde\x8f\ +\x31\x07\x04\x7a\x0a\xb8\x3b\x15\xdc\x85\x2f\xb2\x53\xae\xff\xbb\ +\x9d\x49\x23\x33\x7a\x18\xcd\x20\xfb\xa5\x4b\x4f\x36\xb3\x07\xf2\ +\xd8\x31\x61\x31\x08\x10\xde\xd2\x90\x52\xe3\xb1\x15\x52\x70\x2f\ +\xaa\x9c\xde\x96\xd1\x66\x1b\x56\xd6\x66\x77\x0b\x90\xde\xa6\xf9\ +\xa0\x25\xc0\x67\xe2\x12\x10\x8f\x6a\x75\xdb\x81\xe9\x12\x25\x9b\ +\x5f\x7c\x2b\x82\xaf\x3b\x3b\x7c\x74\x3b\x0e\x3f\xb8\x1e\x07\x1f\ +\x1c\x8c\xf3\x6f\x8f\xf1\xee\xaf\x9c\x8e\x77\x7e\xe3\xc9\x78\xef\ +\xb7\xde\x1b\xef\xff\x1b\x1f\x8c\xf7\xff\xf6\x07\xe3\x5b\xff\xc6\ +\x77\xc6\x37\xff\xe6\xaf\x8c\x0f\x7e\xed\x3b\xe3\xbd\x5f\xfe\xf6\ +\x78\xfa\xf5\x77\xc6\xa3\xf7\x4e\xc6\xa3\x67\x87\xc2\x31\x4e\x9f\ +\xe8\x61\xe8\xb1\x72\x3d\xd1\x0d\x89\x7c\xe7\xe2\x4f\x55\xde\x89\ +\xca\x39\x56\x49\x46\xf1\x7e\x62\x92\x6f\xbd\x8f\x61\x11\xce\xef\ +\x66\x44\xcd\x1f\xeb\x61\x51\x7e\x07\x27\x7a\x7c\xd4\x53\x56\x64\ +\x39\x16\x9d\x9f\x50\xab\x17\xea\x7e\xf3\x87\xae\x6c\xfe\x14\x9a\ +\xed\xe4\x8b\xcc\x43\xe9\xa1\x28\x8b\x69\x2e\x18\x7b\x3d\x70\xfa\ +\x49\xd0\x0f\xae\xe1\xb5\x9f\x10\xa9\x35\xb1\x07\x4b\xb5\xa5\x2b\ +\xe5\x4a\x5e\xf2\x87\x9f\x65\x98\x56\xdd\x4b\xd7\x7a\xd5\x7a\xe5\ +\x53\xfa\x2a\xa7\x69\x70\x89\x25\xc6\x8b\x20\xe6\xf3\x60\x29\x83\ +\x50\x3e\xc2\x2c\x56\xe0\x2f\xd4\x5f\xfb\xfa\xa1\xbb\xfa\xca\xc7\ +\xa5\xc3\x10\x71\x94\xbd\xd1\xb9\x8d\xc9\x25\x2e\xae\xd3\x87\x91\ +\x65\xcd\x32\x54\xf1\x0f\xe3\x3f\x76\x2d\x43\x41\xc7\x58\x58\xd3\ +\xe6\x85\x06\x64\xea\x53\xa2\x20\x2c\x7a\xe5\x2a\xfd\xa2\x5b\xd1\ +\xce\x67\x28\xde\x58\x72\xa1\x45\xf6\xf6\x2d\x69\xc6\x96\xbc\xd6\ +\xb5\xde\x14\x28\xb9\x75\x5b\xe8\x3f\xdb\x72\x06\x96\x62\x65\x9f\ +\x08\x98\xa7\x4e\xab\x7a\x15\xe2\xee\x43\xa3\xe3\xe5\x97\x3f\x7d\ +\x5c\xc5\xa7\xff\x35\x16\x38\x00\xbc\x7c\x42\x64\x47\x2e\x07\x46\ +\x0c\x4e\xa6\xf2\x88\x2d\x70\xa9\xd6\x2d\x35\x00\x92\x22\x6d\x88\ +\x1d\xa6\xa1\xca\x40\x67\xc7\x15\x4a\xee\x31\xe7\xba\x7a\xac\x05\ +\xad\x63\x0c\x7a\x1c\x36\x95\x1e\xde\xa8\xf3\xb7\xf8\xc3\x63\x9d\ +\xc3\x5c\x1b\x74\xae\x1f\xea\xfa\xc0\x5b\x98\x03\xe1\x11\x0b\xe6\ +\xbc\x91\xc1\x0f\x3b\xe7\xfe\xb1\x6a\xc9\x35\x87\x6b\xd0\xd9\xcd\ +\xb8\x3b\xbd\x15\xdd\x8c\xdb\x73\x15\xf7\xce\x66\x6c\xbe\x2d\xff\ +\x5f\x39\x19\x67\xbf\x72\x30\x1e\xff\xf2\xc9\x38\xff\x9b\xef\x8c\ +\x67\x7f\xe7\xe9\x38\xff\x9d\xc7\xe3\xf1\xbf\xf1\x64\x9c\xfe\xf6\ +\xe3\x31\xc0\x5f\xfa\xda\x18\xbf\xf6\xde\x18\xbf\xfe\x8d\x31\xbe\ +\xf5\xeb\x63\xfc\xc6\xaf\x8e\xf1\x5b\x7f\xc3\x78\xf8\xab\xdf\x19\ +\x27\xbf\xf6\xee\x38\xff\xd6\xd1\xb8\xfb\xe6\xc9\x78\xfc\x9d\xab\ +\xf1\xe8\x6f\x6c\xc6\xe9\x6f\x1d\x8d\x67\xbf\x71\x3a\x9e\xfc\xd2\ +\xe1\x38\x7d\x74\x96\x7a\xd5\x27\x38\x32\x00\xdc\x83\xc5\x07\x21\ +\xea\x89\xbc\xb4\xe2\x65\x7e\xbf\x35\x97\x6c\x7d\xa4\x82\x6d\xa9\ +\x21\xe7\x1d\x99\x56\x14\x72\x9f\xbd\x9f\x42\x06\x57\xcb\x37\xce\ +\x78\x2d\xe7\x71\xa1\x80\x7b\xc7\x6e\x68\x20\x31\xb1\x85\xdf\x86\ +\xd2\x91\x3e\x9c\x98\xdc\x8b\xcc\xb2\x98\x26\x99\xff\x24\x3f\xd1\ +\x0d\x81\xff\x46\x67\x61\x91\x7f\x96\xf1\x58\x79\x2b\xac\x6d\x9f\ +\xe7\xf7\x39\x40\x15\x66\xa5\x1e\x80\xcf\xb3\xfd\x55\x85\x9f\xb0\ +\x2b\x88\xdb\x6c\x36\xb9\x37\x38\x87\x76\xd5\x7e\x93\x39\x28\x6a\ +\x1c\x48\x29\x4f\x6b\xd6\xb0\x68\x70\xb8\xef\x81\xe6\x7e\xd4\xe7\ +\x41\xbc\xb3\xe8\x55\x15\xfa\x09\x20\x59\xee\x97\x3c\xaf\x8f\x82\ +\x8d\xc6\xdd\x66\x73\xfc\x40\x29\xcb\xd8\x87\x12\xe2\xaf\x40\xb3\ +\x5e\x5b\xcb\x6b\x8a\x0d\xe7\xb5\xbf\xe8\xea\x12\x58\xf1\xbb\xa5\ +\xa5\x9d\x6c\x35\xc5\x35\x84\xa2\x68\x0d\xd0\x5a\x25\x33\x2d\xb9\ +\x5c\xd0\xb6\x77\x3c\x00\xb8\x45\x32\xef\x8a\xe6\xc8\xd0\x1f\xf3\ +\x3e\x0f\x9d\x36\xf8\x42\xf8\xdc\x8c\x6c\x37\x6f\xc4\xb7\xe9\x2a\ +\xe7\x5a\xe7\x86\xc3\x4b\xd7\xf7\x2b\xf1\xed\x99\xb6\x34\x42\xd6\ +\xf2\x82\x5b\x39\x57\xd8\xfa\x7c\xd5\xa0\x28\x6a\x6c\xc8\xf3\xf7\ +\xa2\xb6\xb1\x7d\xcd\xe3\x5b\xfe\x70\xdc\x53\xa1\xc9\x1d\x9b\x9a\ +\xbd\x1c\x48\x74\xb7\x59\xbc\x41\x9a\x8b\x68\x74\x3c\x74\x02\xfc\ +\x36\xba\xad\x6a\x3f\x52\x7c\xc1\xe4\xea\xdf\xe4\xed\x32\xba\x6c\ +\xe7\x65\x67\x5a\x6d\x85\x15\xf4\xb1\x36\x28\xce\xed\xaa\x30\xe7\ +\xa9\x31\x18\x45\x03\xfa\x62\xb7\x33\x08\xda\x20\x6a\x13\xbe\xf1\ +\xef\x3c\x19\x6b\x08\x8d\x82\xd9\x07\x6a\x4b\x7d\xed\x5e\xd7\x12\ +\xf7\x70\xd5\xa6\xd9\xee\xf4\x87\x17\x41\x4a\x36\x48\x56\xb5\x05\ +\xe8\xab\xbd\x14\x4e\xff\x1b\xca\x97\xaf\x7f\x2c\x55\xfc\x01\x14\ +\xd5\x87\xf6\x87\x2f\x19\x4a\xd9\xfd\x7b\x6c\xf8\x5a\x9f\xfc\x41\ +\x52\x54\xb9\x1c\x27\x74\x62\x53\x0d\x8c\x53\x58\x51\xf6\x0e\x2c\ +\x49\xfa\xd9\xc6\xf2\x69\x19\xea\xe3\x4f\x19\x40\xf4\x1c\x37\xd2\ +\xbb\x9d\xa8\xd0\xaa\x60\xfc\x3c\xbe\x39\x67\x40\xfb\x4a\x6f\x79\ +\xba\x8a\xf6\x24\x22\xf9\x9a\x03\x38\x16\x94\x45\x26\xfe\xb6\xca\ +\x75\xe3\xe0\x29\x0b\x1e\x7b\xb6\x78\xc6\x3b\x7b\x81\x5c\xf1\x3a\ +\x52\x3d\x35\xd5\x19\xc7\xa2\xa7\x47\x77\xe3\x4c\x73\xb1\x47\x87\ +\x27\xe3\xc9\xa9\xe6\x43\x9a\x77\xbd\x7b\x76\x30\x9e\x9d\x1d\x8e\ +\xa7\x85\x4f\x34\x27\x7b\xac\xb9\xdb\x63\xa8\xe6\x69\x8f\xce\x84\ +\x7a\x6e\x3c\xd1\xdc\x8d\xe9\x1c\xff\xf8\xe8\x47\x13\xea\xc4\xa6\ +\x02\x5d\xa6\x77\x19\x1f\x5d\x87\xa9\x57\x9f\x75\xdb\x00\xd7\x5a\ +\x0a\x8f\x4f\xeb\x63\x29\xb1\x76\x05\x34\xf9\x4b\x42\x67\xc9\x16\ +\x85\xcb\x81\x5d\xe7\x9c\xa0\xe4\xfc\xed\xda\x1e\x2c\x13\xe5\xe2\ +\xf8\x65\xab\x15\xbf\xf4\x09\xbc\x51\xc7\x83\xe1\x93\xfb\xa6\xe0\ +\xc1\xba\xed\x61\x0f\x7b\xd8\xc3\x1e\x80\xdc\xf1\xf6\xb0\x87\x3d\ +\xec\xe1\x5f\x07\xfc\x14\x93\xb4\x2f\x1f\x5a\x9e\x73\x76\xa9\xc9\ +\xab\x54\xbc\x88\xb3\xaa\x76\x4b\xbe\x55\xe6\x66\x1f\x9c\xe9\xae\ +\x74\xcc\x76\x67\xfe\x02\xe4\xb5\x4b\xd1\x2d\x25\x30\xc5\x62\xb6\ +\x89\x98\xc5\x7f\xb7\x88\x05\x1e\xb2\x2c\x13\xe4\xf5\xfe\x9e\xa7\ +\xd3\x2f\x65\x84\xd3\xbe\x55\xb3\x7c\x51\x05\x1f\x1c\x1c\x8f\xc3\ +\x93\x5b\x3d\xc4\x1c\x8c\x77\xbe\x7e\x30\x9e\xfe\xfa\xf9\xf8\xe0\ +\xef\x9d\x8f\x77\xff\xdd\x0f\xc6\x3b\xff\xf8\x5b\xe3\x83\xff\xe8\ +\x57\xc7\xfb\xff\xe4\x57\xc7\x7b\xff\xe4\xd7\xc7\xe3\xff\xe5\x6f\ +\x8f\xb3\xff\xd5\x6f\x8d\xf7\xfe\xe7\xbf\x35\x9e\xfc\x2f\xfe\xf6\ +\x38\xfb\x8f\xbe\x3b\x9e\xfd\x9d\xaf\x8f\x47\xbf\x74\x36\x4e\xbe\ +\x79\x38\x8e\xbf\xa6\x9b\xd0\xb7\x36\xe3\xf8\x9b\xb7\xe3\xe8\xbd\ +\xcd\x38\x7c\x76\x3b\x0e\x9f\x8a\x7f\x74\x37\x8e\x1f\x49\xee\x05\ +\x36\x3d\x30\x1d\x9d\xaa\x6c\x3d\x3c\xf9\xf7\xd8\x4e\xd4\xb6\x7a\ +\x41\x6e\xe4\x93\x6e\xa7\xa2\xbc\x28\x17\x7f\x20\xde\x9f\x7e\xe3\ +\xa5\xb9\xf0\x10\x1f\x16\xda\xf0\xe1\x25\xb5\x78\x3e\x7d\x06\xf2\ +\xb2\x9d\x4f\xab\x58\xcf\x0b\x77\xf3\x91\xfd\xa9\xb4\x29\xeb\x11\ +\x51\x0f\x6a\xfe\xca\x47\x1e\x4e\x8d\xd5\x9b\x74\x91\xbb\x89\x3e\ +\x2f\x9d\xc8\xb2\xe0\xc0\x0e\xbe\x11\x1d\xb0\xe8\x50\xf9\xe1\xaf\ +\xe5\xc6\xf2\xe9\xf2\x16\xac\xf2\xfb\xc9\x87\x07\xfe\x5a\xf4\x43\ +\xb6\x4d\x3a\x3f\xd8\xda\x6f\x85\xe4\xec\xbc\xf8\x3b\xb6\xe5\x50\ +\xea\x9e\x07\xcf\xd2\xcf\xf2\x5a\x8e\x0f\x9b\x14\xd3\xe7\x16\xbb\ +\x73\xc8\xbf\xf4\x46\xd7\x05\xd7\x45\x37\x37\xcb\xfc\xd9\x63\x81\ +\x16\xa1\xf8\x18\xec\x58\x40\x2c\xa6\xce\x01\xae\xea\x39\x21\x72\ +\xeb\x4d\x05\x7d\xac\x7a\x84\x2f\x10\xbf\x3c\xc5\x52\xab\xf8\x05\ +\xaa\x6f\xa4\xf2\x7b\x8d\xb2\xdb\xa7\xf2\xbb\x0c\xcb\xb1\xb2\xa7\ +\xac\xe6\x4d\x00\xe7\x41\x5e\xa1\x8c\xa9\x57\xf1\xa5\x37\x61\xc6\ +\x66\x1f\x20\xd4\xc7\x88\x97\x01\xd2\x77\x7b\x78\x1d\xe2\xe3\x60\ +\x80\x6e\x63\x8e\xb1\xd8\x96\x9d\x5c\x58\xc7\x7e\x4b\x27\xf4\x56\ +\x7a\xb7\x23\x6c\x61\x33\x21\xee\x97\xf9\x72\x22\x0b\xb6\xd3\x28\ +\x64\x5b\xfc\x2b\x6f\x21\x7c\x23\x71\x78\xe9\x8c\x9b\x3a\x1f\x5b\ +\xce\xbf\x1a\xb3\xa1\x38\x95\x5c\xc7\x9e\x05\xf1\xfe\xe4\x2b\xe7\ +\xfe\x91\xcf\xfd\xe3\x71\x7c\xae\xf3\xf9\x5c\xb2\x90\xaf\x6a\x3c\ +\x80\x9e\xcb\xc7\xd7\x18\xa5\x7f\x04\x8a\x17\xda\xe7\x91\xf0\xa9\ +\xec\xc2\xd3\x77\x45\xbf\x79\x3c\xce\x7f\x69\x8c\xd3\x5f\xdb\x8c\ +\xc7\xbf\x36\xc6\xd9\x6f\x9d\x8c\x47\x7f\x7b\x8c\xa7\xbf\x7d\x36\ +\xde\xfb\xf5\x47\xe3\xf8\xbb\x4f\xc6\xe1\x77\xbe\x3e\xc6\x07\xef\ +\x8f\xf1\xe4\x5b\xc3\xff\x65\xf0\xce\x77\xc6\x78\x57\xf2\x3b\xbf\ +\x3e\xc6\xfb\x7f\x63\x8c\x5f\x17\xfd\x07\xdf\x1e\x77\xbf\xf2\x6c\ +\x1c\xbc\xf7\x78\x3c\xfb\xc6\xe9\x78\xef\x3b\xa7\xe3\x5b\x7f\xe3\ +\xd1\xf8\xce\xdf\x3d\x19\x1f\xfc\x9d\xb3\xf1\xec\x37\x4f\xc7\xe3\ +\x6f\x5d\x8d\x8d\xda\xe4\x57\x2d\x3a\xa0\xee\x0d\x86\xe3\xee\x60\ +\x5d\xcb\x2c\x2e\x81\xd6\xe5\x25\x4d\x77\xf5\xa4\x05\x88\xf3\x25\ +\xcd\x6e\xce\xb7\x42\x39\xee\xf8\x77\xea\x56\x5b\xde\x29\x4f\x07\ +\xe6\x0b\x8b\xd9\x0d\x69\x58\x5e\xea\xa4\x4d\x8d\x80\xbf\x92\xc9\ +\x83\x8d\x76\xe7\x6b\xf2\xf2\xe9\xb4\xb5\xd7\x43\xd0\xb6\xb7\x95\ +\xfa\x25\x80\xd0\xcf\x0b\x5f\xdb\x3e\xaf\x2a\x7f\x1d\x40\xe7\xfc\ +\x2d\xbf\xb7\xe2\x6b\x94\xfe\x66\xdb\xfb\xaa\x54\x60\xc1\xa3\x59\ +\xf0\xf9\x9d\xb2\xf5\x29\x2b\xc1\xcc\x23\x66\x2b\xe7\x4a\xda\xd6\ +\x17\x78\x6c\x14\xff\x36\x78\x8b\xdd\xf9\x96\xdd\x3d\x20\x2f\xa1\ +\xe0\xcd\x86\xaf\xc8\xb2\x96\xdd\x0a\x12\xdb\x19\xa0\x46\xed\xba\ +\x9f\x9a\x37\x56\xbc\xcf\x7e\x9d\xa4\x2c\xa6\xf1\x8f\x4c\x2c\x56\ +\x06\xdb\x2f\xfd\x08\xa6\x22\x69\xe7\x7c\x11\x4c\x9e\x30\x66\xed\ +\x27\x48\xbf\xb6\x1e\x1f\x74\x08\xab\x73\x34\xea\xd2\x6b\x47\x81\ +\x64\x28\x87\x94\xad\xad\x92\xc2\x67\x31\x55\xd7\x60\x6d\xb9\x30\ +\x5b\xbb\x85\xd6\xd9\x0f\x9b\xe6\x55\xf6\xf7\x45\x3c\xf2\xf4\x5b\ +\x63\xe5\xab\x3a\xb0\x2d\x7a\xe1\xbc\xdf\x94\x0d\xb5\x69\xd9\xad\ +\x95\x3f\x37\x27\xe4\xa6\x06\xd1\xe9\xb7\xca\x29\x4c\x39\x8d\xc0\ +\x5a\x2e\xdf\x8a\x4d\xb7\x40\xd1\x85\x07\x93\xa3\x16\xb9\x50\x0b\ +\xa8\xab\xb5\xc4\x72\x30\x91\xdc\x86\xa5\x7c\xee\x9d\x81\xe4\xb0\ +\x96\x9d\xb9\x05\xc8\x99\x32\xdb\x8f\x4d\x7d\x38\xdb\xa8\x3c\xd8\ +\x12\x5c\xe1\x4b\x5d\xcc\x63\xf3\x1f\x1b\xaa\xf2\x15\x44\x4e\x85\ +\x63\x5d\xef\x01\xd9\x28\xcb\x09\x71\x92\xc5\xf1\xd0\xf8\x59\x9a\ +\xfa\xe8\xd8\x13\x33\x79\x63\xb5\xc5\xb4\x77\x02\xc5\xcd\x85\x32\ +\x8d\x17\x17\xe7\x81\xd9\x71\x56\x88\xa6\xad\xd1\x01\xb4\x2d\x14\ +\x64\x73\x8e\xce\xeb\x3e\x6e\x7f\xd9\xbc\xb0\x49\xaa\xc5\xdf\x36\ +\x8e\x0b\xba\xbe\xb8\x75\xdc\x94\x53\xbf\x54\x4c\x3a\x63\xf2\xcd\ +\x45\x58\x7c\xec\xb7\xc4\x90\x13\x2e\x75\x36\x13\xd4\x9f\xe7\x4e\ +\x94\x53\xb1\xde\x5c\x87\x50\x6b\x2d\xe3\xcb\xce\x9a\x8a\xaf\x3a\ +\x58\xd2\x58\x10\x9b\xfe\x87\x41\x16\x8a\x1e\xf2\x55\x90\x95\x13\ +\xec\xbe\xa7\x7d\x55\x42\xa8\x73\x03\xad\xa3\x4c\xf5\x54\x3a\xcb\ +\x74\xfa\x5b\xa7\x3f\xa8\xfb\xa9\xea\x61\x19\x48\x29\x0c\x7b\xbe\ +\xca\x31\x9f\x46\xdb\x0c\x3d\x9a\x8d\x73\xcd\xd9\x9e\x6a\xce\xf5\ +\xc1\xd3\x93\xf1\x2d\x3d\x1b\x7e\xe3\x5d\xd1\x77\xcf\xc6\x37\xbe\ +\x76\x34\xbe\xf5\xfe\xd1\xf8\xe6\x3b\x07\xe3\x6b\xef\x6c\xc6\x7b\ +\x4f\x0e\xc6\x33\xe1\x3b\x8f\x4e\xc6\xb3\x47\xc7\xe3\x9d\xc7\x87\ +\xa1\x9a\xa7\x3d\xd1\xf3\xde\x13\x3d\xd3\x9d\xeb\x39\xf1\x98\x6f\ +\x52\xf1\xb7\x33\xa4\x5e\xe9\x7f\x57\xcf\xb0\xa6\xcd\x03\xe1\xb5\ +\x57\xdb\xda\x3f\x6d\x7e\x0b\xa4\xb1\x05\x2a\x65\xf6\xd7\x17\xc3\ +\xbd\x9c\x6f\x2b\xa4\x52\x7e\x71\x6a\x8e\x63\x60\x49\xb5\x0e\x92\ +\x56\xe2\x8e\xa6\xe4\xed\x48\xe6\x53\x5f\xf8\x95\x97\x7b\xd8\xc3\ +\x1e\xf6\xb0\x87\xba\xd3\xed\x61\x0f\x7b\xd8\xc3\xcf\x12\x96\x99\ +\xdd\x57\x06\x9f\x37\xaf\x8c\xad\x3d\x8a\xee\xd4\x81\x97\x0e\x58\ +\xf2\x3b\x2c\x0d\x7e\x4c\x28\x5f\x76\x42\xf3\x4b\x69\x5b\x73\xe7\ +\x02\x1e\x26\x16\x8f\x95\xb7\x98\x6d\xf7\x07\x82\x77\x41\x31\x1d\ +\x6f\xca\xc3\x8e\xb9\xd6\xee\x40\x57\xb1\xc1\xae\xfd\x78\xd3\xb6\ +\x95\x87\xd8\x7e\xe8\x89\x7a\xb1\xa5\x4f\x16\xd9\x36\xfe\xa4\xf7\ +\x8b\x5a\x7f\x02\x42\x13\xec\xdb\x9b\x71\xf5\xde\xed\xb8\xfa\x8d\ +\xe3\x71\xf4\xef\x3e\x1d\x67\xff\xf8\x5b\xe3\x9d\xff\xc9\x2f\x8f\ +\x27\xff\xe3\xbf\x35\xce\xfe\x87\xbf\x35\xce\xff\x83\x7f\x77\x9c\ +\xfe\x07\xff\x68\x9c\xff\xfd\x7f\x7f\x1c\xfd\xfd\xff\xee\xb8\xfb\ +\xf7\xff\xe1\x18\xff\xbd\x7f\x7b\x3c\xfe\x1f\xfd\xe6\x38\xfd\x87\ +\x1f\x8c\xc7\xbf\x72\x3e\x8e\xdf\xbf\x1b\xb7\xc2\xcd\x37\xef\xc6\ +\xc9\xd7\x6f\xbd\xa8\x76\xf2\x81\xf8\x0f\x44\x25\x9f\xc9\x76\xf2\ +\xee\x81\x70\x8c\x93\x67\x7a\x38\x7a\x7a\x37\x8e\xf4\x10\x75\xf0\ +\x48\x8f\x88\x67\xba\x79\xf1\x02\xbc\x5e\x8a\xb3\x80\xe6\x45\x35\ +\x5e\x82\x9b\xd7\xad\xad\x16\xd6\x06\x8b\x67\xe2\x59\x58\xf3\x57\ +\x38\x22\xb3\xc8\x76\xc2\xc2\x20\x28\x99\x05\xb7\xb9\x70\x26\xe4\ +\xd3\x69\x50\x2f\xb6\xc9\xe6\x97\x59\xa1\xfc\xeb\xa3\x3f\x09\xe3\ +\xb7\x5a\xfc\xb1\x0b\x0f\x58\xe6\x41\x8c\xdb\xab\xf5\xe2\xb1\xf5\ +\x71\x2c\x1d\x68\xc2\x36\x75\xc9\xd0\xf6\x2d\xde\x48\xce\x25\x2f\ +\x98\xd8\xd2\xeb\xcf\x7a\x3f\x30\xb7\xad\x74\x85\x8b\xbe\x78\x3b\ +\xe4\x85\x8f\x17\x28\x5a\xaf\xf6\xf9\xc1\xdb\xff\xea\x59\xf1\x49\ +\xa6\xf6\x20\xf3\xc7\xcb\x8d\xf2\x2f\x9b\x5f\x12\x55\x1d\xe3\x17\ +\xcc\xd9\x56\x28\x19\xce\x36\x01\x23\xce\x76\x9b\xd6\x36\x2b\x42\ +\x01\x78\xb3\x55\xa6\x6d\x91\x5d\x7f\xb8\xb2\x1b\xed\x4f\xa7\x54\ +\x7d\xf0\xb3\x5d\x40\xbc\x49\xfc\x92\x0b\x8a\x68\x4f\xcb\x76\x02\ +\xca\x0e\xda\xa7\xf8\x0a\xc0\xa3\xad\xa5\x87\x40\x83\x90\xe5\x61\ +\xb8\xf4\xe1\xaa\x5e\x29\x31\x71\x85\x5b\xb0\x52\x56\xac\xfb\x0c\ +\x44\xb6\x2a\x6d\x84\x46\xf4\xbe\x60\xc5\xbb\x69\x92\xab\x6b\xdc\ +\x3d\x85\xdb\x0f\xec\x12\x90\xf1\xf5\x41\x2a\x4a\x7e\xe9\x8c\xf1\ +\xf2\x7e\x96\x8d\xff\x62\xc8\xe2\xde\x4a\xf6\x05\x08\x5d\x2b\xad\ +\xd7\x8e\xfc\xa5\x27\xc7\x1c\x67\xa6\x5d\x26\x63\x12\xd4\xb9\x59\ +\x2f\x86\x7c\x7e\x32\x46\x6b\x9c\x2e\x7e\x9c\xe7\xc2\xd3\x63\x5d\ +\x2b\x74\x3e\x9b\x17\x8a\x67\xb1\xec\xe0\xb1\xe2\x74\x3d\x39\x78\ +\x22\x9e\x85\xb3\xc7\x2a\x9a\x45\x34\xe9\xc7\x53\x9d\xea\xcf\x74\ +\x8d\x7a\x47\xf8\xde\xe1\xb8\xfa\xba\xe8\xb7\xaf\xc6\xe6\xfd\x8d\ +\xae\x45\xea\xa8\xaf\x1f\x8f\xc7\xdf\x3c\x1c\xe7\x5f\x3b\x17\x9e\ +\x8e\xe3\xf7\x9e\x8c\xf1\xb5\xf7\xc6\x78\xc6\x7f\x09\xfc\x92\x12\ +\xfd\xb2\xf0\xdb\x42\xe9\xc6\x07\x42\x5d\xc4\xc6\xd7\x85\xdf\x18\ +\xe3\xf1\x6f\x8d\xd3\x5f\xfa\xe5\x71\xfe\xf5\x67\xe3\xe9\xa3\x27\ +\xe3\xec\xc9\xb3\xf1\xe4\x97\x1e\x8d\x67\x7f\xe3\x1b\xe3\xf1\xdf\ +\x7d\x34\x3e\xf8\x8d\xdb\xf1\xe8\x9d\x93\x71\x72\xb0\x19\xfc\x86\ +\x4f\x5e\x06\x55\xd7\x03\x93\x51\x3d\x27\xf0\x12\x3d\xd7\x68\xec\ +\xb8\xac\xad\x80\xe5\x52\x3a\xc5\xae\xc3\x03\xca\x59\xd4\x43\x80\ +\x71\xe5\xb0\x1d\xb9\x92\xcc\xca\x91\x3f\x0f\xb0\x0a\x5a\xc5\x02\ +\xf7\xee\xad\x0f\xc9\xad\x13\xe5\x53\x68\x1c\xeb\xe5\xab\x1f\x6f\ +\xd5\x57\xf4\x83\xcc\xdc\xa7\x54\xb0\xa4\xf8\x7f\x2e\xe0\xb3\x5d\ +\xfb\x2f\x84\x76\x27\xb4\xf1\x17\x18\xdc\x05\xbc\x7c\x53\xbf\xe8\ +\x90\x6c\xf5\x47\xd8\xdd\x0e\xdb\x86\x87\x7a\x7f\x7a\x75\x4e\xa8\ +\x09\x47\x55\xe7\xad\x8d\x0f\xc1\xda\x72\x7f\x04\xe4\x3a\xf5\x45\ +\xf0\x39\x3e\xd3\xb4\xed\xb3\xd1\xb9\xb7\x71\x69\x4b\x89\xb3\x96\ +\xa5\x9a\x57\x49\xed\x4c\x91\x27\xbf\x92\x75\xd2\x13\x92\xcb\x5a\ +\xee\xab\xdc\x9e\x7d\x89\x6b\x5f\xee\x53\x30\x15\x93\x42\x84\x3e\ +\x91\x1a\x21\xe1\xb9\x3e\x98\x5a\x29\xf0\xb9\xe8\xc0\xe8\x6c\x2f\ +\x5e\x90\x4f\x28\x61\xd7\x7d\x5e\xca\x32\x2b\xa2\xf5\x2d\x69\x93\ +\x98\x96\xa1\xe2\x65\xbd\xae\x5b\x52\x06\x6b\x4e\x65\x9d\xd0\x37\ +\x1d\xc9\x75\xf3\x69\x3f\xed\x26\xf6\xd6\xbc\x98\xb9\xc1\x1b\xab\ +\x8c\xe6\xa3\xef\x9c\x22\x2b\xdf\xd4\xad\xec\x31\x86\xb7\x0e\x68\ +\xba\x82\xce\x3d\xfb\xa9\xb1\x72\xb4\x5d\xc8\x46\xff\x1c\xf4\x02\ +\x0a\xa4\x6c\x74\x68\xd7\xbd\xb7\xe8\x8b\xba\x1a\xc5\x3f\x80\xe4\ +\x71\x2e\xf9\x3b\x16\x6a\x5e\xd6\x9d\x3a\xf6\xb1\x43\xe5\xdb\x6c\ +\xc7\xb4\xae\xa4\xa9\x23\xc0\x41\x8a\x95\xca\x69\x1a\x8a\x9f\xbe\ +\x05\xd3\x6f\x96\x6d\x75\x41\xe9\x0c\xa2\xe5\xd3\x63\xa3\x4b\x5f\ +\xa3\xe7\xd2\x39\x6c\xd5\x9e\x3a\x2e\xf0\x60\x0a\x4b\x39\x5c\xd6\ +\x6f\x75\x7c\x59\x30\xb2\x5d\x72\xfb\x1a\x16\x8a\x3b\xe5\x11\xbe\ +\x6b\xcd\x7d\x08\xc0\x58\xe5\x81\xdc\x6f\x51\xb5\xcd\x24\xfa\xe9\ +\x63\x5c\xd5\xb1\x2b\x3f\x71\x65\x2f\x9e\x7a\xcc\xad\x3a\x10\xba\ +\x8c\xcb\x15\x52\x87\xe6\x5d\x99\x42\xeb\x56\x79\xad\xf6\x4e\x7f\ +\xd4\x1b\x8c\x8d\xbc\x2c\x50\xa7\x6d\xa2\x38\x53\x0f\x89\x39\x37\ +\x63\xc3\x3f\xe7\x64\x97\xc8\x7e\x07\xa4\x5a\x0d\x93\x62\x04\xe2\ +\x5d\xbc\xd8\x5c\x5a\xb4\x73\xbe\x20\x8e\x7c\xda\x2d\x32\x26\x3d\ +\x15\xc1\x1f\x69\x0e\x75\xa8\xe7\x3b\x1d\xf7\xb3\x93\x93\xf1\x54\ +\xcf\x72\xef\x68\xde\xf5\x9e\xe6\x61\x5f\x7b\x72\x32\xde\xd7\xfc\ +\xea\xe9\xa3\x93\xf1\x44\xf2\xf9\xf9\xd1\x78\x76\x76\x36\x9e\x3d\ +\x3a\x1a\x4f\x1e\x69\x7a\xa6\x39\x1d\x8b\x65\x7c\x32\xed\xc9\xd9\ +\x8d\xf4\x42\xcd\xd7\xde\xd5\x7c\xed\x03\xf9\x7f\xe3\x7d\xfe\x9f\ +\xe9\x60\xbc\xf3\xec\x70\x3c\x3e\x3e\x19\x47\x5c\x34\x55\x8b\xd4\ +\x8f\x39\x43\xc6\x45\x60\xe1\xbb\xb6\x76\xd3\xce\xc8\x86\x3f\xcf\ +\xbe\x38\xac\x61\x57\x5e\xc1\xb6\xef\xb6\xe3\x94\x5c\xb0\x4b\xf3\ +\x56\x8a\xda\xbf\x0d\xd4\x77\x2b\x87\x87\xab\xd0\x0e\x6f\xab\xe0\ +\xdb\xf4\xc4\xd1\xfe\xc4\xbb\x27\x74\xac\xf8\x89\x87\x3d\xec\x61\ +\x0f\x7b\xd8\xc3\xe7\x03\x77\x9a\x3d\xec\x61\x0f\x7b\xf8\xea\x61\ +\x3d\x0f\x63\x0e\xf7\xb6\x79\xdc\x4f\x09\x6f\x9f\xee\x61\x79\xa8\ +\x50\xe9\x34\x5b\xe6\xe5\x1b\x33\x5f\x26\xbf\x9e\x6c\x0b\x7a\xd2\ +\x1d\xe8\xa9\xa5\x40\x86\xf5\x44\xf6\x3e\x2c\xc6\x59\xe2\xca\xdf\ +\xcf\x16\x6d\x98\x0e\xf7\xc1\x21\x15\xf7\xb0\xdb\x3a\x51\xc0\xb9\ +\x77\x00\x55\x4f\xea\x63\xdf\x76\xf2\x8b\x15\xfe\x44\x29\xce\xfb\ +\xea\x84\xec\x01\x74\xa1\xfe\x7d\x1e\xec\xea\x33\x5e\x54\xfa\xbf\ +\x43\xcf\xaf\xc7\xcd\x37\x4e\xc7\xd3\x5f\xfd\xda\x78\xef\xef\x7e\ +\x67\x1c\xfe\xdb\xbf\x33\x36\xbf\xf5\xdb\xe3\xe8\x6b\xbf\x33\xc6\ +\xd9\xaf\x8e\x9b\xf1\xed\x71\x3d\xde\x19\x9b\xf1\xae\xf8\x77\xc7\ +\xd9\xe1\x7b\xe3\xf4\xc9\xdf\x1c\x8f\x7f\xf5\x83\x71\xfa\xed\x47\ +\xe3\xf6\x5d\x3d\xd0\xbd\xbb\x19\x07\x8f\x36\x63\x73\xa6\xfa\x9d\ +\x1d\x8e\x3b\x5e\x6c\x3f\x39\x1a\x87\xef\x48\x7e\xff\x70\x1c\xe9\ +\xc1\xe8\x40\x0f\x46\x87\x7a\xc0\x3a\x7c\x76\x3c\x8e\x9f\x08\x1f\ +\x1f\x8d\xa3\xc7\x27\xe3\xf0\xf1\xf1\x38\xd2\xc3\x16\x78\xa8\x87\ +\xad\x2c\xa6\xd5\xcb\xf2\x53\xd9\xf8\x54\x0a\x9f\x38\x2b\x1c\xc7\ +\x2c\x90\xc1\xe7\xe5\x8e\x7f\x57\xcd\x6f\xa7\x90\x65\xf7\xa7\x5a\ +\x8e\x6b\x11\x0d\xe4\xc9\x33\xc8\x03\xa7\x9f\x44\xfd\xe0\x29\xba\ +\xf5\x50\x5b\x74\x85\x5e\x08\x98\xa0\x36\xa0\xb7\x69\xf1\x01\x97\ +\x07\xb8\xd2\x61\x87\x9d\x7c\xe5\x9a\x75\x68\x7d\xf3\x2b\x9d\xda\ +\x32\x1f\xa8\x85\x59\xa0\x41\x1f\x9f\xd8\xc2\xe7\xeb\x80\xca\x47\ +\xd8\x76\x68\xb7\xd3\x6d\x2c\x9b\x76\xfe\x6b\xd9\x9b\x7c\x10\xe9\ +\x11\x8c\x9d\xa7\x17\x4f\x96\x87\xea\x85\x06\x42\xf1\x37\xb7\x65\ +\x5b\xc0\x43\x2f\x0e\xa1\xf6\x2b\x2a\x74\xdb\xe4\x94\x2c\x94\x51\ +\x36\xe4\xf2\x01\x5d\xb6\x8f\x73\x78\xfb\xa3\x03\x9a\x16\x2c\x12\ +\x5c\x30\xfe\x56\x2e\x6a\xeb\xca\x16\x85\xe5\x75\x7f\x26\x77\x53\ +\x40\x74\x1e\xe7\x68\xa6\x5f\xa9\x92\x31\xdc\x54\x36\x4c\x5f\xe1\ +\xec\x1c\x64\x77\x82\x20\xc7\xde\xed\x15\xba\x7f\x04\xa6\xe8\x0a\ +\x9c\x7f\x25\x07\x90\x83\x1d\x6f\x19\xc2\x8b\xa4\x2a\x2f\xd5\x4f\ +\xee\x7e\x21\x95\xff\xa4\xee\xf2\x52\xfb\x40\xe4\x9c\x33\xcd\x07\ +\x7b\xac\x45\x5c\x64\x52\xda\x37\x86\x05\x4b\x67\x1b\xd0\x3c\x94\ +\x73\x63\x9e\xa7\xc8\xf1\xe7\x3c\x25\x6f\x16\xc2\x75\x2d\x01\x39\ +\xb7\xbd\xd0\xae\x6b\x4f\x2d\xb2\x0f\x5d\x3f\x1a\x6f\x1f\x1d\x8b\ +\x1e\x8c\x1b\xf1\x77\xa7\x63\xbc\xd1\xb5\x64\xf3\xf4\x6e\x5c\xbf\ +\xb7\x19\x77\x5f\xbb\x11\x2f\x9f\x67\x43\xf6\xbb\x71\xf2\xf4\xda\ +\xd7\xab\x9b\x33\x5d\x07\x37\x07\xe3\x9a\x72\x75\x0d\xf3\x4a\xdc\ +\x78\x22\x3c\x17\x3e\x12\xb2\x4a\x77\x56\xa8\x72\x5a\xd6\x35\xec\ +\xf8\xfc\xc9\x38\x7f\xfc\x78\x3c\x7e\xe7\xd9\x38\x79\xf7\xe9\xb8\ +\x7d\xfa\x68\x9c\x9f\x3c\x1a\x07\x4f\x4f\xa4\x7f\x95\xeb\xd5\x81\ +\xae\x8f\x6a\x0d\x87\xc0\xe8\x63\xb1\x50\x20\xbc\x8e\x80\x3f\x9d\ +\x26\x81\x97\x8e\xd6\x04\xd2\x23\xbd\x2b\x10\xef\xb8\x8a\x35\xd8\ +\xde\x51\x6b\x2e\x90\x63\x1c\x58\xb8\x5d\xff\xd5\x7d\x13\xa7\xc5\ +\xd1\x3c\x87\x73\xaa\x9a\x51\x40\x5e\xf6\xaf\xa0\xc5\xa9\xee\xbc\ +\xd5\x46\xc5\xfa\xfe\xa5\x36\x6f\xb8\x27\xf1\xdf\xd4\xb2\x3a\xbf\ +\x76\x37\xbb\xf9\x0c\x0f\xe9\x80\x59\xa3\x2f\x0f\xa4\xea\x74\xbb\ +\xe1\x0f\x15\xf3\x13\x14\xf1\x57\x19\x1e\x6a\x0e\xff\xcd\x4e\xff\ +\x03\xb3\x0b\x56\x7d\xc1\x0b\xd5\x44\x6e\x77\x50\x42\xd6\xa3\x4b\ +\xb0\x12\xee\xe9\x85\x5b\xba\x86\x07\x94\x5d\xd2\xbd\xf1\xf5\x45\ +\xb0\x93\xeb\xad\xd1\xd3\x8f\xaf\x7b\x3c\xf0\x82\x9a\x87\x67\x5d\ +\x1f\x01\x5f\xad\xa6\x88\x94\xb0\xe5\xaa\xc9\x8b\xe6\xc6\xb2\x6b\ +\x97\x7f\xec\x88\xf3\xe1\xd1\x9d\xae\x61\x07\xfe\xea\xda\xe3\x13\ +\xe1\x31\x32\x05\xf1\xa9\x40\xf9\xe1\xeb\x40\x17\xae\x90\xfc\x9e\ +\x60\x5f\x39\x6c\x2a\xb3\x5b\xd3\xe7\x90\xed\xb9\x60\xb8\x64\x44\ +\x13\x45\x96\x5b\xf7\x9d\xeb\x64\x0e\x90\xae\xae\xed\x69\x5b\x5d\ +\x7f\x6b\x43\xb9\xbe\xb6\x67\xc3\x9f\x6b\x64\x2f\xa6\x11\x08\x6d\ +\x44\x2e\x24\xae\x75\x95\x6b\xed\x87\xe4\xba\x4a\xde\x2a\xb7\x80\ +\xfb\x52\xfc\x2a\x1e\xa9\xfd\x50\xf9\xbe\x61\xe5\x96\x5f\xcb\x93\ +\xf6\x3d\x7b\x0b\x01\x22\xaa\x3d\x49\xa4\xbf\x42\xc5\x38\xdf\x84\ +\x35\x0f\xc4\x07\xea\x0d\x7f\x8b\xda\x75\xb9\xa2\x4b\x1f\xc5\xcf\ +\x73\x0b\xa4\xb5\x9f\xf7\x6c\x91\xcc\xf5\xd8\x73\xff\xe4\xd8\x85\ +\x94\xde\xf1\x61\x27\x05\xf0\x21\xd6\x74\x85\x82\xb8\x11\x97\xd2\ +\x90\x8d\xf8\xc7\xb8\x05\xf1\x28\xa8\x98\x8a\xb0\xca\xb4\xea\xe1\ +\x22\x5c\x6e\xd9\x20\xb6\x29\x0a\x42\x37\xf8\xbe\x5e\x7d\x2d\xa5\ +\xe7\x1f\x46\x8c\x0d\xf8\xc4\x2f\x25\x66\x6e\xd2\x63\xc6\xc9\x4a\ +\xce\x79\x50\xb2\xcb\x05\x01\xe5\x66\x51\xb4\x65\x97\x11\xea\x36\ +\xb8\x4e\xa0\x58\xd5\xc9\xe3\xdb\xbe\xa2\xeb\x85\x30\xfb\x67\x7c\ +\x64\xec\x16\x42\xb4\x6b\x3f\x6f\x94\xb1\xce\x03\x75\xb9\x2b\xb4\ +\xad\xc0\x6d\x4e\x79\x40\xc6\x43\xc5\x99\xe7\x0f\x7f\x4a\xaf\x3a\ +\xf1\x9c\x63\x6f\xf9\xc9\x37\x75\x47\x43\xfd\x20\xf8\xc0\xc4\xab\ +\xbb\xa7\x0e\xbf\x00\x7b\xb3\x8b\xb6\x61\x9a\xaa\xc7\xb3\x90\xc6\ +\x35\x88\x8d\xeb\x9a\x1e\xc1\x74\xce\xf1\xb5\x8c\x8f\x8f\xce\xc6\ +\x7b\xa7\x87\xe3\xeb\x8f\x4e\xc6\x37\xf5\x6c\xf7\xf5\x27\x27\xe3\ +\x1b\x8f\x0f\xc7\xb7\xf4\xec\xf7\x81\xf0\xc9\xf9\xe9\x38\x07\x4f\ +\x9f\x8c\x47\x47\xef\x6a\x4e\xf4\xde\x78\x7a\xfa\xb5\xf1\xec\xe4\ +\xfd\xf1\xf4\xe8\xf1\x78\xf7\xee\xb1\x66\x58\xc7\xca\xa3\x19\x96\ +\xea\xf2\x4c\xf9\x9f\xa9\xee\x4f\x35\x77\xfb\xda\x3b\x63\x7c\xf0\ +\xee\xed\x78\x57\xcf\x8d\x4f\x9e\x69\x9e\xc6\x3f\x46\xaa\x3e\x3e\ +\x84\xea\xc7\x50\x76\xd2\xba\x19\xa9\x79\x5a\x94\x3d\xd0\x7e\x9e\ +\x63\x88\xc6\x2b\xe0\x6e\x5a\x5c\x27\x24\xfb\x2e\x6c\xeb\x76\x3d\ +\x2c\x3f\x14\xf6\x36\x70\x45\xd6\xb5\xf9\x09\x40\xe5\xad\x8b\xa4\ +\x3d\xb9\xc4\x6f\x57\x44\x87\x4b\xf0\xe3\x54\x6e\x0f\x7b\xd8\xc3\ +\x1e\x7e\x31\x21\x77\xe3\x3d\xec\x61\x0f\x7b\xf8\xaa\xe1\xf3\xe6\ +\x7c\x3f\xe6\x7c\xf0\x27\x4b\xf5\x80\xc5\xaa\x9a\x20\x6a\x06\xc9\ +\x2b\x38\x1e\x37\x78\xa9\xd0\x2f\x0d\xd6\xd3\xc7\x07\x9e\x1b\x16\ +\xb0\x6d\xd7\x61\x25\x77\xf1\xb3\x1a\xb2\xf9\xc1\xa8\xf8\x35\x94\ +\xb8\xb6\x36\xee\x02\x3e\x33\xe5\x3d\xc8\xe3\xcb\x02\x0f\x78\xae\ +\x92\xba\xc9\xc2\x56\x75\xee\xea\x0a\x83\xfb\xc5\x7e\xf4\xd1\xc6\ +\x8b\x6a\x9b\xcd\xd1\xb8\xbb\xba\x1b\xa7\xd7\x3c\x3c\xe9\xa1\xf5\ +\xf4\xbd\xf1\xf8\xe4\x9b\xe3\xdc\x8b\x67\x4f\xc6\xe5\x78\x3c\x36\ +\xe3\x54\xfc\xa9\x28\xff\xb5\x4d\x2f\x1f\xab\xb7\xaf\xc6\xc5\xe6\ +\xf1\x78\x7d\x76\xea\xe7\xbf\xab\x83\xeb\x71\x7d\x2b\x2a\x9f\x9b\ +\x2a\x7c\x73\x7c\x30\x36\x27\x47\xe3\xf6\x58\x4f\x4b\xc7\x7c\x6f\ +\x87\xe2\x2c\xab\x65\x27\x07\xe3\xc8\x9f\x36\x81\xd6\xe2\x59\x2d\ +\x9c\xf1\xe9\x13\x3e\x7d\x96\xdf\x4c\x53\x22\x16\xcc\xea\x93\x64\ +\x5e\x40\xea\x07\x46\xfd\xc1\xf3\xe9\x16\xbf\x84\x17\xcf\x02\x1b\ +\x8b\x68\xed\x9f\x67\x53\xe2\x12\x93\x07\x68\x02\x57\x39\xca\x06\ +\x12\xe3\xa7\x0f\xd3\xf2\xdd\xc1\x19\x3f\x73\x6c\xe3\xea\x95\x97\ +\x55\x61\x13\xc7\xd6\x79\x1b\xbb\x3d\xb4\xad\x7d\xd8\x5c\x79\xfb\ +\xd0\x36\x37\x24\x3a\xa8\xb1\xfd\x57\x71\x50\x87\x25\xa7\xd1\xf9\ +\xf5\xa7\x31\xdb\x7e\x38\x35\xed\x3c\x79\xd6\x8f\x8f\xe3\xda\xd7\ +\x50\xfa\x92\xd3\x46\x60\x2d\x0b\xf9\x6b\x13\x40\x8e\x8e\xb3\x7e\ +\xcb\xe8\xe1\x18\x4d\xfa\x0d\xd7\x94\x09\x53\x16\x72\x58\x8e\x0a\ +\xbe\xeb\x1a\x08\x9d\x71\x11\x62\x4f\xc0\xe2\x5a\x3e\xf1\x5d\xc0\ +\x76\xfc\xac\xdf\xb6\x5a\xaa\x3c\xd0\x6e\xeb\xd2\xae\x42\xf1\xf4\ +\xea\xa2\x13\x3b\x61\xa5\x9f\xa0\x5c\x7d\x1d\x31\xe9\x63\xab\xfe\ +\x14\x71\x39\xf2\x67\x73\xdf\x60\x55\x87\x75\x7d\x12\xba\xd4\x27\ +\xb8\x0b\xf8\x16\x35\x41\x4e\x4e\xf7\x2b\x63\x91\x62\x2d\x6b\x5f\ +\x32\x3c\x3b\x9f\x37\x8c\x3d\x6c\x56\xc1\xac\xda\x09\x74\x00\x68\ +\x59\x39\x1c\x40\xce\x05\x63\xf3\x5f\x76\xad\x13\x34\xd7\xf9\xd7\ +\xe8\x4b\x18\xbb\x5b\xe5\xd1\x35\xc6\xbe\x14\xa9\x73\x9c\x4f\xb3\ +\x51\xe7\x5b\x9d\xf2\xa9\x7b\xa3\x7c\x6c\xbf\x1d\x77\xba\xf4\x1c\ +\x1d\xdf\x4a\xe4\xa5\x90\xfc\xee\xf8\x94\x86\x5a\xa0\x6b\x1f\x2f\ +\xb2\x6e\x95\x9b\xdf\x4c\xba\xbd\x91\xe3\xcd\xed\x38\x41\x41\xbc\ +\xbd\x7b\x01\xed\x5c\x55\x38\xd1\xf5\xef\xd8\xd7\xc0\x9b\x64\x0a\ +\xde\xe8\x9a\x73\xad\xab\x23\x5f\x4b\xf4\x44\x39\xce\x9e\x48\x7b\ +\x2e\x9f\xc7\xe3\xc5\xc5\xed\xb8\xbe\x3c\x51\x59\x9b\xb1\x61\xa1\ +\xc8\xff\xfc\xa1\x30\xa1\xef\x55\x62\x03\xc5\x91\x12\xa2\x6b\xb4\ +\xaa\x3e\x7d\x01\x9b\xca\x0e\x4c\x59\x76\xc6\x45\xdc\x56\xfd\xf5\ +\x65\x60\xe6\x9b\x09\x3e\x17\x70\x59\xdc\xe0\x94\xa0\x73\x4c\x43\ +\x29\xb6\x9d\x17\xb0\x6e\x31\x70\x5b\xe2\xb8\xfb\x53\x6a\x92\xa1\ +\x47\x3a\x80\xb7\x6a\xd4\x1d\xdf\xbb\x87\x83\x1d\x43\xbe\x18\xbe\ +\xb4\xe3\x7d\xe8\xd0\x9f\x22\xc5\xcf\x1b\xec\x36\xf5\x6d\x4d\x7f\ +\x50\x3f\xc7\xcf\x16\xbb\x05\x53\xbf\xe3\x10\xb1\x95\x3a\x67\x8b\ +\x33\x3c\x50\x98\x5f\x56\x4b\xdf\xc3\xe1\xc7\x83\x9d\xc2\x1b\x9c\ +\x6b\x6d\xcb\xf9\xc3\x27\xd4\x5c\x8e\x27\x8e\x1a\x97\x7d\x9d\x2e\ +\x68\x29\x57\xdf\xe5\x0a\xcc\x65\xa3\x2f\x5d\xba\x0c\xe5\xd2\x89\ +\x0c\x15\xb2\x70\xc6\xff\x04\x9d\x69\xfe\xf3\x58\xf3\x9f\x27\xfe\ +\xc4\xc6\x33\xd1\x27\xe3\xc9\xc9\xf9\x38\xd7\xfc\x85\xe9\xce\xa1\ +\xfc\x58\x94\xe3\xbc\xa8\xcb\xaf\x00\x39\x74\xc1\x02\x16\x40\xcd\ +\x68\xdf\x6a\x14\xd5\x67\x06\x53\xe4\x78\x76\xd6\xd9\xf3\x22\x59\ +\x10\x40\xa3\x8d\x4f\xbe\x98\xcb\x5c\x01\x1a\x4e\x15\x52\xa5\xfc\ +\x69\x35\x35\xca\xd7\x77\xcb\x54\x54\xbc\x75\xa5\x4f\x8f\xcc\x9c\ +\xe6\x57\x68\xbb\xe3\xe3\x53\x3d\xb8\x8d\x6e\xaa\x7a\x99\xba\x79\ +\x81\x04\x1f\x50\xe0\xf6\x81\x4b\x1c\x22\xe0\x43\x47\x5e\xe7\x28\ +\xba\x42\xdf\x6b\x5c\x6f\x51\x54\xec\xca\x2f\x75\x0d\xcc\x05\x1f\ +\x74\xae\xe3\x1a\x21\xe8\xcd\x04\xf1\xb5\x4e\xb9\xb9\x17\xa1\x9a\ +\xfe\xb1\x25\x0d\x7c\x85\x68\xb7\xcc\x05\x7a\x44\x15\xa8\x1d\xf6\ +\x17\x84\x74\xed\xda\x07\xba\xe6\x05\x9d\x0b\xe8\xfe\x8b\x24\x90\ +\x6d\x65\xbe\x1f\x1f\xbe\xb9\xc4\x2d\xfa\x90\xe2\xa1\x36\x75\x25\ +\xd3\xb6\x1c\xfb\xda\x54\x36\x9b\xdb\x68\x6e\xb1\xc7\x9f\xfb\x71\ +\xb5\x9f\xe3\x08\xed\x5c\xda\x58\x50\xdd\xea\x3f\x8e\xbd\x7f\xef\ +\xac\x7c\xf1\xf2\xc9\x26\xac\xb8\x8c\x8f\x50\xee\xf5\xe9\xdb\x20\ +\x9b\x59\xed\xba\x4e\x33\x4f\x8f\x5b\x4e\x42\xf1\xce\x03\x6d\x74\ +\xa0\xa8\xc7\x9b\x27\x1d\x42\x7c\xcb\x9f\x58\xe7\x49\x3e\xeb\x3d\ +\x06\x8a\x77\x3c\x24\x7e\xd6\xc1\x5b\x1d\xbb\xf5\x2e\x43\x74\x55\ +\x6f\xfa\xc1\x5f\xa5\x2a\x67\x3f\x2b\xa8\x0e\x39\x07\xeb\x3c\xf4\ +\x85\x82\x7f\xdc\x21\x5f\xda\xb1\x06\x24\x66\x1c\xd5\x62\xf5\x09\ +\x72\xf4\x16\x2c\x09\xa4\x70\xa8\x91\xeb\x8a\x50\xf5\xe8\xb8\x2e\ +\xe3\xf1\xd1\xf1\xf8\xc6\x93\xbb\xf1\xad\x77\x0e\x84\xb7\xe3\x9b\ +\x8f\xc7\x78\xff\xfc\x68\x7c\x9d\xc5\xb4\xa7\x27\xe3\xfd\x27\xa7\ +\xe3\x9d\x27\x8f\xc7\xb3\xc7\xef\x8d\x27\xe7\x1f\x8c\x27\xcf\xbe\ +\x31\x9e\xbc\xf3\xed\x71\xfe\xf8\xbb\xe3\xc9\xd3\xdf\x1c\x5f\x7b\ +\xef\x6f\x8d\x77\xdf\xff\xcd\xf1\x75\xe9\xde\x3f\xf9\xfa\x78\x76\ +\xfa\x74\x9c\xe9\x39\xf0\xec\xec\x70\x3c\x3a\x3f\x1c\xa7\x47\x87\ +\xfc\xef\xe4\x90\x4a\xf3\x37\x3f\x0e\x56\xa5\xb6\xab\xdb\xac\xdb\ +\xe3\x3e\xe3\x0f\x4a\x8d\x03\x19\x5f\xd0\xcc\xb9\x66\x1f\x60\xac\ +\x6b\xfc\x17\x43\xca\xfe\x42\x70\xaa\xcf\xcb\xd7\x79\xfa\xb8\xdf\ +\x87\x2f\x53\x9b\xb7\xc2\x2a\xa7\xf3\x74\x43\x7f\xaa\xa4\x7b\xd8\ +\xc3\x1e\xf6\xf0\x8b\x01\xbe\xd5\xec\x61\x0f\x7b\xd8\xc3\xcf\x0c\ +\xbe\x82\x09\xd9\x97\x49\xf1\xe5\x8b\xa9\x09\x33\xb3\xd2\x9d\x89\ +\x69\xe7\x08\xd5\x7e\x77\xe2\xea\x19\xf9\x02\xf5\xa8\x60\x08\xb7\ +\x1b\xb0\xa3\x61\x12\x3e\x53\x34\xb3\x9d\xf3\xcb\x02\x79\x41\xa2\ +\xef\x97\x8a\x4e\x5a\xfd\xdd\xcb\x5e\x75\xc8\x02\x62\x59\xfd\x40\ +\x51\x59\x3a\xc0\x6e\xda\x30\x75\xbb\xef\x6e\xc7\xcd\xdd\x26\x5f\ +\x2b\xf6\xe9\xcd\x38\xfa\xe3\xcb\x71\xfc\x2f\x3f\x1d\x07\x7f\xfa\ +\x62\x5c\x8c\xd7\xe3\x5a\x0f\x6e\xbc\x34\xce\xcb\xe3\x23\x45\xd3\ +\xd7\x7a\xaa\xf1\xad\x46\x9a\xbb\xcb\x71\xf4\xc3\xbf\x18\xd7\x9f\ +\x7e\x32\x6e\x2e\xae\xc6\x78\x71\x37\x4e\x3e\x96\xf7\x4b\x45\xbe\ +\x54\xe4\xe5\xed\x38\xdc\xdc\x8c\xdb\xbb\xeb\x71\x75\x70\xa3\x72\ +\xf9\x6c\x46\x1e\x12\xf3\x62\xec\x50\x8f\x69\xca\x76\xab\x87\x41\ +\x1e\x0c\x41\x1e\x50\xf1\xa9\xaf\x81\x89\x3f\xe5\x15\x6f\x9a\xf8\ +\x96\xe9\x98\x3c\x3c\x89\xc5\xd6\x63\x01\xd9\xfd\x20\x1f\xe9\xe0\ +\x7a\x9f\xc5\x35\xb3\xb1\xc3\x58\x17\x25\x39\x1a\xd1\x99\xf7\x86\ +\x18\x9f\x08\xfc\xad\x36\xfb\xe2\x23\x9b\x64\x90\xba\x51\xd7\x84\ +\xb5\xb1\xe8\x44\xd5\x81\x87\xee\x7a\x21\x40\x9e\xf5\x02\x20\x14\ +\x39\x2f\x67\xa0\xca\x67\x5c\x62\xf1\x99\x14\x1d\x7e\x8d\x2e\xb1\ +\x72\xba\x6c\xea\x23\xca\x03\x38\x31\x74\x01\x1e\xe8\x84\x3e\xd6\ +\x56\x6b\xd7\xa8\xbf\x8c\x9c\x96\x1b\x4b\x07\x6d\x51\x7b\x97\x1a\ +\x61\x05\x8b\xc2\x65\x41\xad\x8b\xaf\xeb\xa8\x52\xbb\xed\xb6\x8b\ +\x26\x17\x72\x23\xd0\x91\xd8\xa2\xa1\x7e\x09\x8b\x65\x81\x92\xf5\ +\x47\xbb\xda\x92\xcc\xd9\xf8\x03\xe6\xd8\x40\xdb\x65\x5b\xaa\x3d\ +\xba\x74\x6f\x69\xca\x2f\x26\xbb\x94\xb3\xa0\x94\x85\xb6\xb7\x43\ +\x39\xa7\x1f\x84\x8c\x69\xd4\xd1\x7a\xab\x3f\xed\xca\x4f\x48\xfd\ +\x3c\xac\x6d\x31\x53\x7b\x68\xeb\x56\x08\x61\xe7\x20\xe4\x15\x85\ +\xfd\xff\xb3\xf7\x67\xcd\xb2\x64\x67\x9a\x1e\xb6\x76\x0c\x7b\x38\ +\x43\x66\x22\x13\x53\x55\xa1\x50\x43\x37\xd9\xdd\xea\x66\x93\x92\ +\x51\x66\x34\x49\x34\x51\x46\x5e\xd0\x48\xdd\xf1\x4a\xfa\x35\xfc\ +\x01\xfa\x07\x92\xd1\x8c\x37\xba\x95\xf1\x92\x83\x99\x28\x99\x4c\ +\xd6\x2c\xaa\xd9\xcd\xea\x42\x17\x6a\xc4\x54\x00\x12\x39\x67\x9e\ +\x69\xcf\x5b\xef\xf3\x7e\xdf\xb7\x7c\xb9\x47\xec\x73\x4e\x02\x99\ +\x28\xa0\x10\x6f\xc4\xf2\xf5\xcd\x6b\x70\xf7\x15\x6b\xb9\x87\x47\ +\x80\xd2\x41\x9a\x9a\xf8\x2c\x56\xa9\x13\xa6\x7d\x3c\x3a\x71\x1c\ +\x22\x8e\x63\xaa\xa7\xbc\x50\xc9\x4b\xda\xf4\x1b\x8e\x4b\x5e\x5d\ +\x0f\xd8\xf7\x79\x53\x85\x81\xa1\xe4\x71\xd0\x99\x73\x35\xb5\xb9\ +\xbb\x11\xc1\xb8\x75\xad\x24\x5b\xdf\x64\xf3\xf9\xae\x31\x4e\xb9\ +\x86\x36\x3f\xe1\xc5\x0d\xa9\x95\xec\x36\x57\x47\xed\xf4\xea\xb6\ +\x6d\x2e\x57\xfe\xe2\xc0\xa9\xf2\x87\x4f\x5b\x3b\x7b\x76\xd4\x36\ +\xe7\xaa\xe7\x73\x8d\x55\x4f\x35\x76\x3d\xd1\x38\xf6\xc9\x79\xbb\ +\x7d\xef\x59\x6b\xef\x7f\xa4\x80\x32\xf2\xc9\xb1\x55\x35\xb8\x91\ +\x46\x5e\x34\x5f\x2a\xa0\x50\x55\x42\x63\x5e\x7b\x26\xbb\xcb\x63\ +\x15\x76\xdc\x6e\x8e\xcf\x94\x6f\xdb\xcd\xc5\x55\xbb\xfa\x54\x75\ +\xfa\x68\xd5\x2e\xaf\x65\xeb\x76\xe1\xc5\x4b\xc8\x3a\x1b\xca\xa0\ +\xdc\x1f\x22\xdc\x7a\x6e\xbe\xed\x41\x7a\xcc\x40\xdf\xd8\x47\xda\ +\xc8\xd3\x2e\xe3\xbe\x0c\x51\x05\xfa\xff\x7e\xdb\x92\x57\x6c\x43\ +\xc2\x90\xcf\xbd\xfc\xf4\xd2\x5c\x34\x81\x7d\xd4\xbd\x06\x23\x1d\ +\x0b\xd3\x67\x93\x9a\xee\x2f\x7c\x60\xee\x4d\xc8\x67\x85\xcf\x98\ +\x04\x76\x43\xcc\x5f\x14\x5f\x60\xa8\x5f\x1f\xa8\x5f\xdd\xee\x68\ +\xfc\xd4\xcb\x50\x92\xb1\x2f\x7c\xb2\x15\xa6\x33\xf8\x3e\xd8\x25\ +\xe9\xc2\xab\x7c\x46\x7d\xa7\x55\xee\x58\xf2\xcf\x8b\x31\xf6\x3c\ +\x5e\xb6\x45\x42\xdf\x50\xb3\x44\xe7\x13\x42\xa5\xcc\xac\xa8\x43\ +\x12\x94\x8d\x3f\x7e\xf5\x62\xc4\xe0\xe2\xaf\x9f\x42\x53\xe2\xe6\ +\x18\x0f\xc9\xf3\x44\xc7\xd9\xc9\xba\x7d\xe5\xe1\x59\xfb\xc6\x1b\ +\xef\xb4\xdf\x79\xfb\x5b\xed\xf7\xbf\xf1\x8f\xdb\x1f\x7c\xeb\xdf\ +\x6e\x7f\xef\xf7\xff\x9d\xf6\x7b\xbf\xfb\x0f\xdb\xb7\xde\xf9\xc3\ +\xf6\xf5\xb7\xbe\xde\xbe\x72\xfa\xb8\x1d\x6f\x4f\xda\x6a\xa3\xe3\ +\x9f\x71\x92\xd8\xe4\xae\x55\xd6\xc3\xe5\x55\x45\x2c\xc9\x06\xa5\ +\x74\xa8\x63\xa9\x8d\x72\x36\xc8\x33\x3e\x34\x84\x11\x79\x1f\xab\ +\x69\x95\xc7\xf8\xb8\x89\x10\x73\xb8\xd0\xf8\x03\x80\xdc\x09\x9a\ +\x1b\x20\x91\xdb\xb6\xd3\x69\x5f\xc9\x65\x29\x79\x60\x1f\x13\xf6\ +\x49\x5b\x37\xf0\x8a\xe7\xd8\xb0\x43\x5c\xc7\xae\x9c\x7a\xe1\xc7\ +\x0e\xf1\xcf\x36\x96\x3f\x75\xe1\x45\x3b\x26\xdb\x5e\x06\xbc\x7c\ +\x6a\x1e\x16\x3e\x91\xf0\x99\x46\xd6\x42\xf1\x69\x67\x96\x7c\x8a\ +\x5b\x37\x72\xa6\xb9\x5b\xda\x58\x2e\xa4\x9d\x7d\xab\x4c\xf1\xbc\ +\x42\x28\x36\xf7\x69\xe9\xeb\x35\xd1\x33\x75\x32\xe4\x23\x16\xb5\ +\x1f\x8f\x8d\x01\x93\xbb\xea\xee\x80\x41\x4f\x98\xca\x73\x81\xbd\ +\x50\xfa\x36\xa8\x54\x86\x7f\xb7\x41\x12\x2f\x6a\x12\x4d\x82\x73\ +\x87\x88\x14\x2d\xb3\xa8\x16\x44\xf9\x56\x56\xb6\x25\xc8\x44\xb9\ +\xb3\xe3\x8f\x6c\xcc\xe3\xf8\xeb\xbe\x69\x53\xff\x7f\xc6\xcb\x65\ +\x91\xba\x7e\xe2\xa3\x5e\x53\xf2\x0e\xac\xdc\x36\xc4\xc9\x75\x0b\ +\x69\x3c\xd6\xb0\x73\x6c\xb1\x96\x66\x8c\x59\x5d\x86\x64\x5d\x24\ +\x5e\xbd\x9c\xca\x25\xf3\x5e\xe4\x8b\x45\xf0\xfc\xf4\xaa\xe6\x42\ +\xc8\xfc\x93\xd8\x4a\xfc\x57\x74\xc5\xaf\x3e\x76\x12\xe3\xe3\x48\ +\xb4\xab\xcd\x97\x86\xee\x41\x78\x32\xf7\xc8\xe7\xe9\x69\x53\x8e\ +\xf9\xd1\x26\xc6\x24\x25\xc6\xb5\xb5\x66\x43\x1a\xdc\xd6\xeb\x8d\ +\xab\x78\xac\x79\xd1\xe9\xc9\x59\x3b\x3d\x7b\xd0\x4e\x8e\xdf\x6a\ +\x8f\x4e\xde\x6e\x8f\x4f\x7e\xab\x3d\x3a\xfb\xed\xf6\xe8\xe1\x1f\ +\x28\xfd\xbd\xf6\xf8\xf1\x1f\xb6\x37\xdf\xfc\xfb\xed\xad\xaf\xfe\ +\x61\x7b\xe7\xb7\xbf\xdd\xde\xf9\xe6\xef\xb7\xc7\x5f\xff\x7a\x7b\ +\xf4\xe0\x2d\xf9\x3d\x6c\x67\x8f\xb7\x8a\xb1\x6a\xdb\xe3\x95\xa2\ +\x69\x0d\x7a\xad\x79\xe1\xf5\x6d\xbb\xd2\x7c\x28\xaa\x1d\x35\x34\ +\x49\xf5\x48\xd0\x09\xe8\xd9\x14\xc4\x04\x02\xe6\x97\x96\x18\xf4\ +\x03\x5d\x31\x73\x2e\x94\x6c\x9f\xee\x15\x78\xb9\x8b\x4b\x9c\x61\ +\x57\x22\x8c\x1f\x30\x4b\xec\x38\x4c\xb6\xb8\x45\x9b\x06\x99\x12\ +\xed\x2e\xc9\xa4\x39\xe0\x80\x03\x0e\x38\x60\x09\x3e\x41\x0f\x38\ +\xe0\x80\x03\xbe\x1c\x30\x0b\x63\xa6\xf6\x4b\x98\x8d\x7d\x9e\x62\ +\x98\xe0\xaf\x78\x2a\x49\xb3\xf9\xf8\x69\xa8\x61\xb6\x09\xab\xe4\ +\x8c\x1c\x62\x31\x1b\x8d\x8b\x78\x92\x59\x37\x2d\x3a\xe7\x56\x01\ +\x9b\x3a\xce\x3e\xed\x7e\x60\xe9\xc5\xd1\x6b\x43\x05\xb0\x68\x29\ +\x88\xac\xcb\x48\x2f\x8d\x92\x75\x2b\x9b\xa5\x2d\x7c\xac\x89\xb4\ +\x18\xc1\x4e\x6d\xe0\xa9\x89\xcd\xd5\x4d\x5b\x3d\x5b\xb7\xbb\x1f\ +\x5f\xb7\xf3\x1f\x9e\xb7\xf6\xe7\x1f\xb7\xbb\xbf\xf9\x48\x4b\xa9\ +\x2b\x25\xae\x5a\x13\xf6\xa6\x5d\xfa\x42\xf0\xad\x29\x9e\x42\x3b\ +\xfa\xe1\x8f\xda\xd3\x1f\xbf\xdb\x2e\x3f\x7a\xda\xae\x3e\xbc\x6c\ +\x77\x3f\xd5\xe2\xeb\xdd\x9b\xb6\xfe\xd9\x5d\xdb\x7e\x70\xdb\x56\ +\x1f\x29\xf6\xc7\xb7\x4a\x5a\x64\x7d\xa2\xc5\xe5\x0b\x95\x77\xa1\ +\x45\xd8\x95\xe2\x69\x81\x74\x77\xa5\x1a\x29\x99\xe6\xe2\x95\xf2\ +\x9b\x6b\xb5\x94\x8b\xe4\xf0\x2c\x14\x45\x5b\xa7\x74\xcb\x45\x74\ +\xd6\x78\xaa\x3b\xeb\x39\x6c\x8e\x48\x5e\xdb\xc5\xe5\x1b\x40\x5f\ +\xd1\x4e\xfa\xdc\x7d\x40\x9b\xdd\xee\xcc\x25\xb4\x9c\x6d\xed\x47\ +\xfa\xc2\x0b\x60\x16\x8e\x18\x90\x82\x8e\x45\xf4\x20\x93\xa5\x17\ +\xb0\xbc\x66\x3a\x25\xc9\x26\x1e\x36\x64\x2e\xde\x8b\x52\x7c\xc2\ +\x6c\x5a\x28\x67\x2c\x5a\xe0\xfa\x60\xcf\x05\x80\xb0\xad\x3a\xf1\ +\x8d\x50\xfb\x70\xb1\xa7\x2e\xf8\x88\xef\x37\xd5\x2a\xc9\xcf\x09\ +\xfd\x48\x2b\x8d\xf5\x75\x56\x17\x79\xd2\xa6\x6e\x26\xf9\x9c\xb2\ +\x6f\xa2\x93\xd1\xf6\x7c\x27\x8a\x99\xe2\x80\xe8\xda\xa0\xad\x2b\ +\x52\x70\x3d\x4c\x44\x16\x6e\x93\xac\xe2\x84\x8c\x7a\x85\xaa\xe0\ +\x3a\xa3\x73\x4a\x61\x38\x76\x32\xe0\x48\x03\xe0\xb1\x8b\x98\xd9\ +\xdd\x4e\xf5\xd3\x40\x2e\x12\x64\x1e\x59\xea\x32\x77\xaa\x7d\x50\ +\xbc\x82\xc5\xb7\x60\x83\xae\x40\xa9\x75\x9a\x5f\x60\x22\x2f\x65\ +\xd0\x71\x98\xa6\x5c\x9b\xa9\xbc\x01\x1c\x47\x8a\x1f\x21\x52\x9f\ +\x79\x1d\xe6\x11\x6f\x92\x3b\x99\xb7\x32\x8f\xa1\xa4\x53\x17\xa6\ +\x41\x23\x9b\xfa\x37\x78\x27\xd3\x90\xa1\x2f\x9b\xd1\x76\x7e\x0e\ +\x55\x0a\xb7\x08\x01\x93\xf2\x25\x34\x30\x31\x36\x71\x13\xc5\x3f\ +\x47\xab\x73\x9b\x1b\x6c\x34\xcc\x17\x04\xc8\x6f\x78\x92\x4c\x76\ +\x57\x53\x7e\xc7\xa3\xb1\xe4\x1a\x43\x8e\x78\xd2\x96\x9b\x57\x1a\ +\x67\x4c\x6b\xb0\x5a\x5d\x68\x6c\x7a\x7a\xd4\x4e\x3e\x5b\x2b\xb5\ +\x76\xaa\xb4\xd5\x98\xb4\xfa\x40\x63\xd3\xbb\xb2\x7b\x77\xd3\xee\ +\x7e\xa2\xd8\x3f\xbe\x6d\x57\xdf\xbf\x6d\x2f\xbe\x2b\xa7\xff\x59\ +\xe9\x2f\x9e\xb7\xf6\xe4\x53\x55\x2c\x2e\x2c\xf1\x15\x80\xe8\x65\ +\x9f\xad\x4a\x0c\x56\xe2\xb9\x11\xf7\x42\x75\x78\x41\x05\x2f\xda\ +\xfa\x45\x6b\x9b\x4f\x54\x9f\x9f\xc9\x5e\xf1\x3f\xfd\xe8\xae\x5d\ +\xde\x5e\x79\x9c\xca\xeb\x52\x73\x0c\x32\x3e\x8f\xd4\x0a\x89\xd4\ +\x3e\xfa\x23\xaf\x84\x0c\x7b\x57\xf4\x84\x4e\x97\x1a\xf3\x70\xe9\ +\xca\x3d\x3d\x3d\x8b\xd7\x81\x61\xfa\xcf\x20\x79\xc5\xd8\xf1\xaa\ +\x82\xfa\x05\x37\x67\x09\x64\xe9\x41\x5b\x82\x9a\x60\x81\x36\xf2\ +\x61\x7f\x73\x6c\xf0\x53\x83\xf4\xc1\x8d\x3e\x9b\x50\x7b\x48\xdb\ +\x8b\x9d\x68\x03\x66\x95\x78\x3d\xec\x73\xf9\x39\xc2\xbc\x36\x5e\ +\x56\xfd\xbf\x75\x54\xe5\x16\x1d\x50\xe2\xcc\xad\x65\xac\x93\x60\ +\xb4\x2c\x9a\xbc\xcb\x4d\xcc\x24\xc6\x9c\x5b\x22\xb4\x71\xe4\xe8\ +\x88\x55\x36\x8b\x50\xf5\x79\x29\xd2\x7a\x56\xd0\xe0\x38\x93\x0b\ +\xe2\xf9\x6f\x9e\x1b\x8e\x57\x5f\x95\x0d\x83\xd1\xac\x1f\xe3\x0e\ +\xc3\x98\x97\x43\xaa\x08\x7e\x0a\xed\x64\xb5\x69\xc7\x9b\x75\xdb\ +\xac\x8f\xda\xfa\x68\xdd\x8e\x57\xdb\x76\xba\x3e\x6e\x5f\x39\x7d\ +\xab\xfd\xce\x5b\xbf\xd5\xbe\xfd\xd5\xdf\x6f\xdf\xfa\xda\x1f\xb6\ +\x6f\xbd\xf3\x8f\xdb\xef\x7e\xe3\x7f\xd1\x7e\xf7\xab\xff\xb0\xfd\ +\xf6\x3b\xff\xa8\xfd\xde\x57\xff\xad\xf6\x7b\xdf\xfa\x37\xdb\xef\ +\x7f\xe3\x0f\xda\xef\x7c\xf3\xb7\xda\x6f\xbd\xf9\x56\x7b\xeb\xe4\ +\x51\x3b\x7d\xb0\x6d\x0f\x8e\x89\x41\xcc\x4d\xdb\xaa\x8c\xf8\x39\ +\x49\x2a\x52\xdb\x40\x8c\x1d\x42\x35\x31\xeb\x18\x5b\xbd\xec\xb7\ +\xc4\x14\x87\xc6\x04\x55\x32\xe5\x34\x10\x2a\x63\x5a\xaa\x13\xd3\ +\x4f\xc4\xf8\x8b\x13\xa4\xb8\x90\x5f\x5f\x8a\x8a\x19\x84\x23\x0a\ +\x53\x1e\x37\x69\xb0\x8f\x38\x21\x76\xc4\xe0\xad\xb7\x30\x53\x7e\ +\x9e\x58\xc7\x60\x20\x2b\x91\x75\x43\x24\x90\x7a\x74\xe4\x32\xa0\ +\x1c\x7f\xf1\x22\xf7\x5f\xe8\xc8\xc2\xce\x4c\xe9\x2c\x4b\xd0\x46\ +\xcf\xd5\x54\x47\xda\x97\x65\x02\xdf\x24\x33\x4d\x0a\xf9\xdd\x9d\ +\xe6\xce\xf2\xf1\x67\x7f\xce\x21\x88\x4b\xf9\x84\xed\x9f\x77\xb9\ +\x1f\xa6\xb5\x43\xd8\x01\xdb\xfa\x05\x13\xc9\xe6\x48\x1c\x47\x7e\ +\xe6\xa8\x8f\x64\x2b\x71\x18\x87\xbb\x11\x64\x8f\x62\xba\xe7\xae\ +\xc3\x18\x33\xb2\x19\x3a\x1f\x4a\xea\x39\xb5\x57\xc0\x39\x02\x28\ +\xa3\x3e\x83\xae\x23\x7d\x07\xfd\xe4\x56\xf6\xe1\xe3\x7a\x76\x51\ +\xf5\x71\xd5\x3f\x13\xe5\xd7\x7e\x46\x64\x2a\x63\xc3\xd3\x2e\xcb\ +\xcd\x4c\x49\x05\xfa\x38\xcf\xe4\x30\xde\x5f\x91\xa2\x6e\xb2\x71\ +\xfb\xb2\x51\xc2\xd4\xa6\xd0\x07\x26\x19\xfa\xe9\x25\x89\xfb\x35\ +\xe8\xb0\xa9\x7c\xa2\xc3\xa6\xca\x4e\x1d\xb2\xec\xdb\x8c\x64\xbd\ +\xd7\x64\xd0\x19\x17\x9b\xd2\xc7\xd8\x37\x9d\x53\xbd\xd6\x1a\x63\ +\x6c\x2e\x81\xe7\x4b\x4a\x19\x3a\x2d\x33\x97\x51\xd8\x69\xa3\x54\ +\x7d\xe0\xac\x92\x31\xf4\x87\xed\x4c\x85\x18\x57\x55\xc4\xa6\xe2\ +\x99\x9a\xb0\x2e\xbc\x91\xdd\xb5\x72\x9e\x28\xbf\xbd\xa1\x8e\x1b\ +\x29\x4f\xda\x7a\xf5\xb0\x6d\xb6\x6f\xb7\xe3\x93\xaf\xb5\xd3\x93\ +\xdf\x6d\xa7\xdb\xdf\x6a\x9b\xa3\xb7\xd5\x8a\x37\x65\xf3\x48\xe9\ +\x2b\x1a\x2d\xbe\xa6\xb1\xf2\x5b\xed\xad\x37\xbe\xdd\x1e\xbf\xf3\ +\xb5\xb6\x3e\x39\x51\x8c\x8d\x7f\x71\xe0\x4e\x51\xaf\xb5\xc6\xbb\ +\xba\xbc\x6d\x4f\x9f\xdf\xb4\xf3\x0b\xcd\xc4\x54\x26\xe5\xc5\x38\ +\x12\xd5\x7a\x29\x64\xe0\x26\xbb\xbe\x30\x29\x17\xaa\xc9\xb1\x8f\ +\x26\x60\x82\x4f\xb7\x1d\x7c\x5e\x8a\x79\xf8\xd7\xc6\x7d\x3e\xaf\ +\x1f\x6b\xaa\x7f\xaf\xf6\xd8\x24\x09\xc6\x36\x16\x35\x9a\x1c\x70\ +\xc0\x01\x07\x1c\x10\xe0\xd3\xfa\x80\x03\x0e\x38\xe0\xcb\xc1\x2f\ +\x79\xf6\x75\x7f\x71\x0b\x4d\xac\x34\x7c\xe1\x82\x8b\x20\x1d\xa2\ +\xf7\x4e\x48\x47\xa1\x6c\x22\xda\xb4\x94\xda\x8b\xf4\x41\xbf\x37\ +\x66\xe1\xbe\x00\x92\x2f\x27\xed\x3b\xc0\x26\xc9\xfb\x4a\xb1\x34\ +\xaf\x6a\xb0\xbd\xaf\x2e\x8e\x23\xe5\x4c\x2f\xa6\x16\x63\x5e\x5c\ +\x69\xc5\xb0\x62\x61\xa2\x15\xca\xfa\xc5\xb6\xbd\x78\xef\xb6\x3d\ +\xff\xce\xf3\xf6\xd1\x9f\x7e\xdc\xae\xfe\xd9\xf7\x5a\xfb\xd9\x5f\ +\xb7\xcb\x8b\x4f\xda\x95\x9f\x57\x3b\x52\xd2\xe2\xa6\xbd\x90\xb3\ +\x96\x4e\x9f\xfd\xeb\xf6\xc9\xbf\xfe\x7e\x7b\xfa\xc3\x0f\xdb\xa7\ +\xef\x7e\xd6\x9e\xfd\xe4\xb2\x5d\xfd\xf4\xa8\x9d\x7f\x7c\xd7\x2e\ +\x3e\x6a\xed\xd9\xc7\xab\x76\xf1\xe1\x51\xbb\x78\x4f\x8b\x9f\x9f\ +\xdd\xb5\x9b\x0f\x6e\xda\xcd\x87\x37\xed\xf6\x53\xf5\xf3\x13\x55\ +\xe5\x99\xd2\x8b\x5b\x25\x2d\xc0\xce\x95\x9f\x2b\xe7\x66\xdb\x85\ +\x2a\xa9\x74\x7b\x19\xf9\x1d\x77\xee\x44\xfb\xa2\xb9\x6f\xb6\x49\ +\x5e\x17\xcc\xeb\x62\xfa\x8d\xfc\xd5\x06\xeb\xc9\x59\x50\xb2\xd2\ +\x73\x92\x7f\x5d\x90\x86\x56\xdf\xa1\x77\xc7\x78\xc5\x04\x94\xeb\ +\xd3\x33\x16\x68\x4a\xf5\xf3\x29\xb9\xc8\xef\x17\x3b\xd0\x67\xe2\ +\x65\x1a\xc7\x92\x8d\xb9\xed\x89\x11\x7c\xe8\x24\xa6\xbf\x4d\x90\ +\x40\xd2\xdd\x27\xfc\x00\xe5\x72\x11\x00\xfb\xf0\xcf\xbc\xca\xe4\ +\x66\xd8\x98\xaa\xce\xb3\x94\xb1\x93\xae\xba\xf0\xb2\x1c\x28\x77\ +\xdb\xcd\x93\x64\xeb\x1c\x59\xe8\x27\x9e\x1c\x24\xbd\xe4\x05\xba\ +\xb6\x7c\x82\x66\x03\x5c\xaa\x55\x96\x07\x67\x41\x6a\xa2\xaf\x33\ +\xce\xb8\x0d\x84\x0d\xdb\xf0\x5f\xc0\xa6\x11\xcb\x56\xe9\xba\xd7\ +\x56\xe8\x76\x43\x8a\x0b\x2c\x93\x8e\x17\x6f\xa7\x01\x96\x07\x11\ +\xdd\x65\x48\x4a\xdd\xad\xd2\x86\x82\xdd\xb6\xe0\xab\x8f\xbb\x89\ +\xb6\x7e\x79\xff\xa1\x0a\x9e\x77\x59\x84\xb1\xa4\x99\x47\xb2\x42\ +\x43\x97\xe4\x2a\x63\x12\x95\x1e\x7b\x04\x40\x84\xdb\x84\x1c\x15\ +\xc7\x88\x49\xa5\x88\x3b\x8b\x1d\xd2\xe4\xc9\x92\x4f\xd9\xa4\x9b\ +\x52\xf9\xd7\xcd\x59\x5f\x59\x1e\x8e\xbd\x2a\x83\x97\x04\x4a\x09\ +\xfa\x47\xc9\x7f\x12\xef\xa4\x13\x33\xd3\x2d\xbc\xce\xeb\x5b\x9f\ +\xdb\x43\x7e\xad\x31\x04\x9a\xfc\x5a\xb9\xce\xff\x5b\xff\xce\xac\ +\xec\x2f\xe4\xaa\x71\xe4\xee\x5c\x31\x9f\xeb\xac\xe1\xe6\xd6\x73\ +\x95\x21\xfa\xf6\xa9\xfa\xeb\xc9\x51\xbb\xfd\x48\xb2\x9f\x6d\xda\ +\xcd\x4f\x35\x26\xfd\x44\x31\xfe\x46\x31\x7e\xa0\xf1\xec\x2f\xae\ +\xda\xe5\x5f\x5f\xb6\xcb\x1f\xbc\xd0\x98\xf6\xbc\x5d\x7d\xf7\x79\ +\x3b\xff\xee\x67\xad\xfd\xa9\x06\xb0\xef\xff\x50\x63\xcd\x87\x0a\ +\x74\xae\x5d\xcd\xb3\xba\x57\xca\x2f\xdb\x56\xbc\x07\x98\x0f\x7f\ +\xda\x9e\x7e\xf8\x5e\x3b\xbf\x7c\xde\x9e\x5f\x5e\xb7\xf3\xf7\x2e\ +\xdb\xf9\x4f\x3f\x69\x97\x7f\xf2\x41\xfb\xf0\xcf\x3e\x56\xbc\x55\ +\x7b\x71\x7e\x23\xf7\x55\x5b\xdd\x6e\xdc\x05\xde\x6f\xf2\x9e\xfa\ +\x83\xce\x48\xce\xfd\x96\xb4\x2f\x00\xc5\x88\x81\x89\xf3\x05\x06\ +\xcf\xa0\xcb\x37\x11\xfa\xfb\x31\x7e\x64\xbe\x0e\x62\x3f\x2e\xe0\ +\x7a\x92\x07\x5b\x28\x71\x87\x04\xc1\x4f\xc6\x55\x7e\x69\xb8\xe8\ +\xc5\x4d\x35\x6e\x6a\x50\x12\x3f\xe1\xcb\x10\xee\x52\xd3\xf6\x7e\ +\xd8\x23\xc8\xcf\x0b\x62\x8f\xae\xd0\xaf\x2c\xef\xd7\x1c\xee\xfc\ +\xfd\x8d\x74\x77\xa8\x0f\x6a\xbf\xcc\xec\x86\x7e\x0a\x72\x12\x0c\ +\xaa\x8e\x88\x93\x74\xa6\xfd\x96\xf7\x41\xb6\x9e\xf7\x44\xf2\x96\ +\xba\x7f\x9e\x10\xf7\x60\x19\xa2\x8e\x6f\xfe\x4b\x71\x6c\xf2\x0c\ +\x29\x8f\x7a\x30\xe4\x69\x2e\xa5\xc4\x93\x1a\xc7\xdb\x55\x3b\x39\ +\xde\xb4\x93\x75\xdc\x44\x3b\x3b\xde\xb6\x37\xcf\x1e\xb6\xdf\x7a\ +\xf3\x5b\xed\xdb\x5f\xfb\x76\xfb\xbd\x6f\xfc\xbd\xf6\xad\x6f\xfc\ +\x83\xf6\xcd\xaf\xfc\xe3\xf6\xd6\xe3\xdf\x97\xcd\xd7\xdb\x71\xfb\ +\x6a\x7b\x70\xf4\xb5\xf6\xe8\xf8\x1b\xed\xed\x87\x7f\xd0\xbe\xf1\ +\xb5\xdf\x6b\xbf\xfd\x96\xd2\x3b\x5f\x57\xfe\x95\xf6\xcd\x93\xc7\ +\xed\x2b\x6f\x6e\xdb\x1b\x8f\x4f\xda\x63\x6e\xae\x9d\x2a\xfe\x76\ +\xa3\xf2\xd6\x8d\x9f\xbc\xa5\xca\xf9\xd1\xe5\xde\xc9\x4f\xde\x40\ +\xca\x11\x4d\x36\x53\x1e\xe3\x77\xf2\xb9\xa3\x6a\xbc\xb6\x2e\x28\ +\xd1\x1a\xd3\xeb\x06\x93\x7d\x94\xf3\xe1\x77\xa7\x39\x8a\x6f\x7a\ +\xf0\xd9\xb2\xb6\xbc\xc6\x7c\xcb\x2c\x4f\x7f\x72\x7c\x52\x27\x22\ +\xec\x93\x8e\xc3\xb1\x74\x95\xc2\x27\xfc\xf5\x96\xaf\xe7\x44\x30\ +\x21\x50\x0e\x92\xd6\xdb\x37\xad\xea\x29\x9e\x2c\x93\xad\x6f\xaa\ +\x38\xfe\x22\xed\xc8\xd8\x86\xdc\xf9\x4e\x8a\x7a\x91\xe2\x45\xfc\ +\xe0\x0c\x65\x41\x25\x5f\x1d\x2e\x58\x52\xf5\x14\x19\x6d\x49\x94\ +\x9d\xdb\x14\xc9\xaf\xe2\xcb\x30\xeb\x1b\x6c\xea\x7a\xca\xed\xb4\ +\x09\xb8\x1f\x06\xde\xdc\x20\x1b\xea\x38\x83\xcb\x12\x5c\x87\xa1\ +\x8a\x99\x07\x15\x71\x7c\xe4\x95\x79\x64\xa1\x71\x7b\x49\x93\xac\ +\x18\x7f\xba\xc9\x29\x8e\x5a\xf6\x57\xf4\x6d\xd8\x64\x79\x04\x25\ +\x59\x24\x8d\x0b\xc1\x0e\xad\xfc\xac\xd7\x3e\x28\x3b\x0c\x5d\x5f\ +\xe2\x41\xca\x07\x73\x6b\xe2\x78\xeb\x75\x18\xe3\x92\x75\xa4\x7e\ +\x48\x93\x3e\xea\x3b\xc9\x94\x8b\x30\xe7\x72\xe7\x89\xed\x9c\x57\ +\x6e\x87\xd0\x94\x7c\x9a\x87\x87\xc8\xc7\xaf\xdb\x40\x7c\x9d\x67\ +\x92\x71\x7e\x4f\xc7\x71\x70\x9c\x38\x1e\x0f\x9d\x34\x27\x89\x13\ +\x49\xaf\x88\x67\x16\x9e\x38\x50\xf0\x8e\xa5\x4c\x71\xac\x26\x26\ +\xc0\x00\x3b\x09\xfb\x90\x8b\x6c\x72\x80\x11\x79\xab\xa5\xd8\x75\ +\x7b\xf2\xec\xa8\x7d\x7a\x71\xd5\x2e\x6e\x34\x87\xd2\x1a\x8c\x1b\ +\x6b\x17\x57\x37\xed\x8a\x2f\x4a\xf2\xb3\x9c\xb7\x0f\xe5\xf3\x48\ +\x21\xf9\xbf\xd9\x63\x25\xfe\x8f\x76\x9b\x74\xe5\xfc\x3f\xed\xa3\ +\xb6\xdd\x3e\x6a\xeb\xd5\x59\xbb\xba\x39\x6e\x2f\x5e\xac\xdb\x53\ +\xcd\x99\x3e\x79\x7e\xdb\x3e\x79\x76\xdb\x9e\xbe\xd0\xec\x4b\xe7\ +\x34\x37\xd4\x5c\x0f\xa5\xa8\xc9\x84\x91\xa7\xed\xae\xaa\x1b\x8c\ +\x84\xfa\x54\x5f\x2c\xb1\x47\xe8\xfe\x0d\xf7\xd8\xbc\x02\x15\x22\ +\x0b\xd8\x5b\xcc\x3d\x78\x75\x19\xf7\x47\xcb\x6a\x26\x7c\x34\x38\ +\x9f\x00\xcd\xf1\xa3\xa3\x9e\xf1\x7b\xc0\xe7\xa9\xe3\x01\x07\x1c\ +\x70\xc0\x6f\x0a\xe6\x23\xe5\x01\x07\x1c\x70\xc0\x17\x8d\x9a\x81\ +\x2d\x67\x62\xaf\x33\xe1\xfc\x42\x11\x0b\x03\x50\x8b\x83\x1b\xcd\ +\x9e\xbd\x38\x98\xd5\xad\x26\x98\x23\xe6\x92\xe0\xd8\x2a\x99\x19\ +\xf5\x23\x9d\xe8\x6d\x5d\x36\x3a\xfd\x67\x62\x31\x9a\xc8\x4e\x58\ +\xfa\xec\xc3\x3e\x9b\x94\x91\xf5\x19\x74\x96\x67\x20\x9b\xfc\x10\ +\x97\x8a\xff\xe2\x99\x41\x66\xb6\x76\xbd\x8e\xda\xfa\x66\xe3\x3f\ +\xe0\x5f\x3d\xdf\xb6\x17\x3f\xb9\x6b\x9f\xfd\x8b\x0f\xdb\x67\x7f\ +\xf4\x7e\x7b\xf6\x5f\xff\x55\x7b\xf8\x27\x7f\xd9\x36\x1f\xfd\x4d\ +\x3b\xbd\xfb\x50\x4b\x9e\x27\xed\xe4\xee\x69\x3b\x7d\xff\x47\xed\ +\xbd\xff\xfe\xbb\xed\xb3\x7f\xf6\xfd\xf6\xd1\x77\xde\x6f\x17\xdf\ +\x7b\xde\x2e\x3e\xbc\x6d\xd7\xcf\x6f\xda\xe5\xf3\xa3\x76\xf1\x7c\ +\xd5\x2e\xb4\xc8\xba\x78\x1a\xe9\x52\xe9\xf6\xb3\x55\xbb\x7a\x72\ +\xd4\xae\x9e\xde\xb6\x1b\x2d\x8e\x56\x4a\x5c\xec\xbe\xe3\x26\x9a\ +\x6f\xa8\x29\xcf\x9b\x69\x77\x95\x5f\x4a\xee\x9b\x69\xb2\x53\xf2\ +\x13\x28\xa6\xa5\xf7\xcd\x33\xf9\x90\xb8\xb9\x76\xc5\x45\x76\xd1\ +\x7e\x52\x45\xa9\x2e\xd2\x6b\x71\x39\x2d\x34\x91\x91\x21\xa7\x23\ +\xd8\xf4\xce\x88\xfe\xc8\x3c\x16\xf7\xf0\xb9\xf0\xce\xbe\x02\xb1\ +\x38\x0f\x3b\xc4\xa1\x09\x9b\xea\xd3\xc8\x21\x43\x8e\xcc\x69\xa4\ +\xd3\xce\xb6\x3d\xe9\x63\x3c\x65\xfd\x85\x69\xd1\xda\xf7\xc5\x93\ +\x68\x81\x17\x8e\x08\xf3\xc6\xcc\xca\xd7\xb4\x42\xd6\x7f\x76\x2f\ +\x93\x36\x53\xca\x18\x11\x24\xda\xcb\xab\xe0\x3e\x1a\xbf\x1d\x9c\ +\xaa\x99\x7b\x29\x32\xe3\xd0\x1c\x63\xd8\x6e\x67\x6a\x32\x2b\xa5\ +\x73\xb1\x37\x4a\x13\x6d\x33\x2c\x0a\xf9\xb8\x05\xb6\xf7\xf9\x30\ +\xc9\xea\xf4\x40\x17\xf5\xd4\x26\x2a\xd2\x31\xe7\x84\x32\x21\xb9\ +\x11\xa4\x20\x7d\x91\x03\x90\x85\x38\xeb\x96\x02\x25\x9b\xa8\xcf\ +\xc3\x96\x7d\xa8\x8c\x4d\xc6\x8a\x70\x08\x23\xb1\x2f\x96\xbd\x52\ +\xf5\x2e\xcb\x08\x6a\xc2\x29\xa4\xda\x9f\xde\x25\x21\xf3\x71\x1a\ +\x95\xb4\x36\xac\x92\x77\x92\x10\x9e\x3a\xe8\xd5\xeb\xed\x0a\x85\ +\x47\xa5\x3a\x8e\x7c\x9c\x18\xa9\x43\x46\x93\xec\xc3\x9b\x57\xf0\ +\x21\x23\xcf\xe3\x8c\x8b\xbb\x3e\x0e\x43\x1e\x0e\x95\xfb\xed\xe3\ +\x2a\xce\x41\x9d\x9b\xb7\x71\x7e\x3a\xe7\x46\x59\x3f\x6f\x23\xe7\ +\xfc\xe6\xbc\xb6\x2e\x69\x6e\xaa\xa1\xe3\xe9\x34\x6e\xa6\xdd\x5e\ +\xeb\x74\xbf\xd2\x18\xc3\x98\xe1\x1b\x6a\x91\x8e\x34\xc6\x1c\x3d\ +\x55\x8c\x67\x91\x34\x74\x69\xec\x51\xfa\xf4\xa6\x5d\xbc\xdf\xda\ +\xe5\xcf\x6e\xdb\xc5\xcf\x44\xff\x8d\xc6\xa8\xef\x6b\x6c\xfa\xab\ +\xdb\x76\xfe\xa7\x77\xed\xe2\x4f\x6e\xdb\xa7\xdf\xbd\x6a\x9f\xfd\ +\xab\xf3\xf6\xec\x7f\xfa\xb4\xdd\xfe\xb3\x9f\xb6\xf6\xdf\xff\x55\ +\x6b\x3f\xf8\x9e\x0a\x92\xe3\xdd\x93\xb6\x52\xb0\x9b\xbb\x17\x22\ +\x7f\xd8\x9e\x7f\xe7\xbd\xf6\xe4\x47\x1f\xb4\x27\x3f\x7c\xda\x3e\ +\xfa\xfe\xc7\xed\xe3\x3f\x7f\xd2\x9e\xfc\x7f\x5f\xb4\xf7\xfe\xf8\ +\x79\xfb\xf4\x3b\x8a\xf1\xe3\x17\x2a\xf7\xba\x1d\xf9\x02\xef\x4d\ +\x74\x87\x7b\xa2\xb6\x0b\xc4\x4e\x0a\x40\x2b\xf9\x5c\x7c\x4d\x4c\ +\xdf\x2a\x17\x44\x54\x19\x7b\xcb\xda\x03\xfb\xbe\xc2\x78\xae\x56\ +\xdf\xb2\x65\x63\x45\x2f\xdd\xec\xde\x50\x32\x99\xb5\x49\x0c\x4f\ +\x98\x73\x4c\xa8\x97\x24\xe0\xe2\xcf\x51\xbb\xd6\x01\x7c\x7b\xad\ +\xbe\xdb\x1b\x64\x1f\x5c\x93\x4c\xaf\x89\x31\xf6\xe7\x70\xfb\x85\ +\xf1\xda\x6d\xfa\x65\x43\x9d\xa0\xba\x4d\xe3\x00\x58\x74\xcc\xe2\ +\x80\x2c\xcb\xd1\x63\xd9\x3c\xf3\x83\x5f\xd7\x9b\x98\x5b\x2f\x7d\ +\x0d\xc6\x39\x69\x18\xa7\xbe\x48\xf4\x1a\xa9\xbd\xa6\x15\x9e\xff\ +\x53\xe4\x29\x08\x97\xb4\x2c\x2e\x1d\xca\x4f\x53\x0a\x35\x4b\xf3\ +\xa8\x35\x37\xd4\xf8\x89\xc7\x95\x7f\xe6\x31\xf2\x4d\x7b\xb0\x7a\ +\xd0\xde\x3a\x79\xab\x7d\xfd\xad\x47\xed\xab\x6f\x7e\xb5\x7d\xe5\ +\xd1\x37\xda\xf6\xe8\x1b\xf2\x7a\xac\xc4\x45\x66\xfe\x9f\x91\x9f\ +\xd4\x66\x60\xcf\x0b\xcb\xd2\x3d\x38\x39\x6e\x6f\xac\x1f\xc9\xf7\ +\xa4\xbd\x75\x76\xd2\x1e\x1e\xaf\xdb\xd9\xf1\xa6\x9d\x6e\x57\xed\ +\xf4\x58\xe9\x64\xd3\x36\x1b\x6e\xaa\x6d\x7c\xee\xb8\xb6\xee\x23\ +\xea\xe3\xcc\x75\x74\xab\x10\xcf\xf6\x67\x7c\xfa\xac\xf8\x3c\xe1\ +\xc5\xdc\x59\xbc\x63\xc8\x2e\x64\x29\xf1\xe0\xcf\xf8\x8e\x6d\x26\ +\x64\xa2\xc2\x63\xd2\x89\xb0\x24\xe2\x87\x1f\x32\x27\x34\x8c\x4d\ +\xd4\x71\x5f\xb2\x27\x71\xf2\x45\x2c\xc7\xcb\xb2\x1c\x23\x68\x5e\ +\x81\xf0\x0b\xbd\x32\x1a\xcc\x38\xcb\x4b\xf6\xfe\x4c\x93\x0f\x39\ +\xe5\xf2\x72\x1c\x3e\x18\xb3\xcc\x48\x0b\xb8\x2c\xf2\xca\x46\x3b\ +\xe5\x26\xd9\xa8\x3e\xe3\x67\x1d\x20\xae\xff\xdf\x6b\xe2\x5d\xbe\ +\xfa\x22\xe6\x07\x4a\xd4\x13\xbd\x52\x58\xa5\xdc\x76\x21\xe9\x70\ +\x7d\xa3\x5f\x52\x30\xa3\xa7\x8c\x4d\x26\xf9\xd8\xad\x54\x3b\x98\ +\x22\x50\x95\xc0\xdc\xb2\xf6\x7f\x35\xc3\x20\x6e\xda\xcd\xad\x27\ +\x78\xde\x61\xad\x52\x55\x82\x3e\xe0\x66\x86\x52\x57\x61\x5c\xb6\ +\xbc\x5d\x67\x4b\xc5\xb0\xcf\x4c\x64\x12\xa8\x08\x37\xcd\x92\x8d\ +\x3e\xe4\xf8\x52\x2e\xa1\xd9\xbc\xb1\x1b\x46\x83\x5f\xc6\x89\xf9\ +\x09\x9f\x57\xd8\x47\xe2\xdc\xe3\xe7\xe5\x27\x9f\x49\x37\xd9\x90\ +\xc0\x64\x53\x92\xae\x53\x0c\xdb\xe6\xbe\x2d\x0b\xfa\xa3\xdb\x38\ +\x8f\x34\x3f\xae\x43\x6f\x1f\xdb\x0f\x80\x55\x4c\xce\x69\x6e\x62\ +\x11\x3e\xca\x48\x99\x36\xf1\x24\xbb\x74\xe4\x83\xbc\xe8\xc1\xc5\ +\x69\xec\x43\xeb\x49\xda\xf4\x7d\xae\x72\xfc\x2c\x3e\xd5\x29\x75\ +\x4c\x26\x03\x47\xf1\x39\x7d\x7b\x7d\xd4\xce\x35\x27\xfb\x54\x73\ +\xad\xf7\x3e\xbb\x6b\x1f\x29\xff\xf8\xf2\xb2\x7d\xac\xb5\xe0\xd3\ +\xf3\xcb\x76\xc5\xe3\x65\xfc\xbc\x88\x47\x49\x12\x4f\xf4\x93\x00\ +\xf1\xd0\x01\x68\xcd\xbf\x2e\x6e\x34\xf6\xae\xdb\xe5\xed\x4d\xfb\ +\x48\x6b\xc5\xf7\x3e\xba\x6d\x1f\x3e\xb9\x69\x1f\x6b\xfe\x76\xae\ +\xb5\x1f\xeb\x54\xb7\x2b\x9c\x0c\x68\x77\x99\x88\xcc\xba\xbe\xe4\ +\xd1\x26\x11\xbc\x4b\x89\x6e\x2f\xc2\x2e\x37\xb9\xfd\x82\x71\x5f\ +\xd9\x96\x53\xd3\xcf\x51\xea\x60\xba\xeb\x85\x44\x41\xb3\x1f\x18\ +\xef\x0f\x38\xe0\x80\x03\x0e\x78\x39\xd6\xff\xb9\x90\xf4\x01\x07\ +\x1c\x70\xc0\x17\x87\xe5\x4c\x6d\x39\x21\xdc\x9d\xc9\x7d\x2e\xdc\ +\x37\xbf\x04\x39\x25\x5c\x20\x96\x39\xa1\xb9\x6d\x4f\x7f\xf6\xd3\ +\xf6\xde\xbf\xfc\x57\x6d\xfd\xec\x83\xf6\xe6\x86\xa5\xca\xad\x26\ +\xe6\x2c\x3e\x62\x59\xe3\x85\x88\x26\xe3\xd7\x37\x37\xed\x9a\x0b\ +\xb4\x4c\xca\x99\x59\x6b\x01\xe1\x85\x9c\x5e\x7c\x79\xcb\xdf\x34\ +\xd6\xa2\x6b\xb5\xd1\xd4\x53\xb9\x6f\x4c\xc0\xb3\xd0\x20\xc1\xfb\ +\x27\x36\x52\x17\x95\xd8\x45\x5d\x18\xf6\xd5\x96\x10\x05\x28\x33\ +\xc9\xa5\xaf\xf8\xde\x56\x2f\xa0\xc9\xa3\x1c\xe7\x94\x9b\x32\x08\ +\xd3\x80\x76\x70\x83\xe9\xea\xa6\xdd\x5e\x46\xf2\x4f\xa0\xf1\xb4\ +\xd6\x6c\xf1\x11\x1e\xd3\xba\x48\x0b\x22\xe6\xd7\xaa\x27\xff\x35\ +\x94\x4b\xa8\x76\xf5\xf4\xa6\x5d\xfd\xe4\x59\xbb\xfd\xf8\x69\xbb\ +\xfd\xf0\xaa\x1d\x3f\x39\x6f\x67\x9f\x3d\x6f\x97\x1f\x3e\x6b\x47\ +\x3f\xf8\x7e\xfb\xf4\xbf\xfb\x93\xf6\xc9\x7f\xf3\xcf\xdb\x93\xef\ +\xfe\xb8\x5d\xfc\xe4\x33\x5f\xa4\x5e\x5d\x6a\x31\x79\xb9\x55\x1f\ +\xaf\x1b\x3f\xd3\xe8\x9f\x62\x24\xe7\x42\xf7\xb5\x74\xa2\xf9\x89\ +\x47\x2e\x7e\xf3\x33\x8f\xfe\xd9\xc7\x4a\xdc\x10\x43\xce\xda\x2b\ +\xd7\x5d\x5e\xf4\xd4\x6a\x4e\xf5\x63\x29\xe0\x7d\xa9\xb6\x4f\x7b\ +\x5e\x32\x93\xf4\x4b\xe8\xdc\x37\xc9\xd3\x87\xee\x45\xfe\xbc\xc4\ +\x7a\x16\xe3\xec\x64\xe5\xde\xaf\xca\xa5\xe3\xbf\x07\x78\x0a\xa2\ +\xff\x7c\x11\xc9\xb6\xf3\x98\x15\xa3\x68\xa7\xd2\xc3\x16\xca\xde\ +\x39\x48\xba\xf3\x48\x2a\x76\x72\x33\x75\x32\xf0\x96\x25\xef\x3c\ +\xf8\x78\x2d\x29\xba\x2b\x69\x65\x8e\x6f\x1e\x24\xed\x8c\x3c\xf8\ +\xea\xd3\x52\x05\x11\xba\xb2\x33\x6b\x2d\x65\xa4\x8e\x94\x7e\x46\ +\xd9\x76\x81\x60\x35\x7c\xc8\xa6\xbe\x34\x97\xd9\xe4\xd3\xeb\x4b\ +\x1f\x93\xa5\xbc\x7c\xbc\x4d\x91\xfd\x94\xfa\xa1\x6c\x44\xac\xee\ +\x27\x2c\xf5\x61\x33\xf5\x93\x53\xc6\x37\x2b\xcc\x7d\x0a\x52\x72\ +\xb0\x61\xe3\xb2\x43\x0a\x20\xfb\x31\x99\x72\x97\xd2\x6d\x38\xae\ +\x82\x8d\x94\xf5\x36\x33\x4a\x95\xc3\x57\x9a\xa4\xa6\xcc\x99\x09\ +\x19\xed\xb7\x29\x9c\x15\x95\x12\x56\x96\x4d\xf0\xee\x63\xc6\x93\ +\xb2\x75\x16\xf9\xb4\x7f\x26\xde\x32\x4b\x52\x07\x9b\xb2\xca\xbd\ +\xf5\x09\x9b\x30\x19\xbc\x6f\xe6\xe7\x85\x1e\x7e\xee\xd0\x4f\xa1\ +\x71\x13\x9c\x1c\x39\x7f\x54\x64\x19\xff\xe5\x28\x9e\xb1\x99\x1b\ +\x66\xca\x43\xaf\xa4\xfc\x88\x1b\x69\x7e\xfa\x34\x64\x7e\x3a\x0d\ +\x9d\xd3\x5d\xbb\xc9\x27\xd6\x1a\x72\x8d\x83\x8c\x7f\x24\x6e\xb8\ +\xdd\xe5\x78\x18\x3f\x0b\x49\x7e\xd7\xae\xb9\x38\xc3\x98\x79\xa1\ +\xf1\xee\x52\x9f\x15\x17\x72\x7d\x76\xd3\x2e\x9f\xdc\xb6\xe7\x9f\ +\x5d\xb5\x17\x9f\xdd\xb4\xa7\x9f\x5e\xb6\xf3\x8f\xae\xda\xb3\xf7\ +\x5f\xb4\xd5\x4f\x5e\xb4\xa3\xf7\x9e\xb6\xa3\x9f\x7c\xd2\xae\x7f\ +\xfc\x6e\xbb\xfe\xde\xbb\xed\xf2\x2f\x7f\xd4\x3e\xfc\x1f\xfe\xbc\ +\x7d\xf8\x47\x7f\xdd\x9e\x7c\xe7\xe3\xf6\xd9\x4f\x9f\xb5\x27\xef\ +\x9e\xb7\x17\x7f\xf1\xa2\x7d\xf6\xbd\xcb\xf6\xfc\x87\xe7\xed\xf2\ +\x67\x97\xed\xe2\x93\xdb\xb6\xba\xe2\xbf\x4e\x18\x53\xe8\xaf\xdc\ +\x27\x74\x51\xf5\x21\xbc\x36\xb5\x0f\x18\x9f\xee\xf4\x19\xb4\x3e\ +\xdb\xb4\xd5\xc9\xb6\xad\xb6\x8c\x4b\xa1\xc7\xc4\xc8\x2e\x97\x44\ +\x1b\xc6\x7a\x14\x1c\x89\xa9\x00\x69\x1b\x9a\x7d\x08\x03\x6f\xab\ +\x6c\x8d\x89\x94\xc7\xff\xb1\x4c\x17\x8b\x05\x02\x30\x16\x2b\xf1\ +\x94\xa0\xbf\xc8\xe0\xa0\xa9\x2f\xb3\x18\x94\xe7\x05\x2a\x46\xb1\ +\xf1\xa5\x86\x08\xcb\x37\xa6\xd5\x32\x95\xb5\x6a\x9b\xe3\x6d\xdb\ +\x1e\x1f\xbb\x5c\xbe\x85\xce\x05\xe8\x4f\xb4\x5f\x8f\xde\xfa\x46\ +\xfb\xea\xbf\xf5\x4f\xdb\xe9\xe9\xa9\x9c\x3c\x62\x65\xa4\xca\xc1\ +\x48\x17\xf6\xc9\x5e\x82\x65\xb8\x59\xfd\x33\xff\x75\x07\x6d\x5a\ +\xb6\x65\xc1\xc3\x5e\x6b\x07\x7c\xe7\xaf\xfe\x45\x7b\xef\xd9\x9f\ +\xb7\x87\x8f\xf9\xf0\x0e\xb9\xe7\x22\xce\x63\xdf\x85\x34\xc7\x6b\ +\xab\x20\xc8\xc9\xe2\x58\xf5\x7e\x76\xce\xdc\x0a\x3a\xe5\x7a\x11\ +\x83\x1b\x51\x1c\x05\xf8\x21\x0f\x4d\x22\x04\x42\x56\x80\xe3\x42\ +\x07\x0f\x73\xb8\xdb\x1b\xd5\x8b\x73\x22\x0c\x76\x31\xc6\xd2\xc6\ +\xe7\x4e\xd1\xe4\xb9\x0d\x9e\x4d\xf0\xd4\xef\x4a\xf1\x9f\x3c\x57\ +\x3f\xc4\x49\x6a\x4b\xb6\x3d\x97\x3c\xe6\x84\xfc\x32\x02\x37\xcf\ +\xee\xda\xc9\xf6\xa8\x6d\x55\x1f\x6e\xa6\xb9\xad\x96\xaf\xda\xf1\ +\xea\xa4\x3d\x3c\x7b\xd8\x1e\x3d\x7c\xec\xff\x08\xda\xae\xb9\x91\ +\xf6\x50\x89\xa7\x33\xe8\x43\x50\x9f\x20\xf0\x5c\x64\xbe\xd0\x79\ +\xa2\xb9\xd5\x8b\xcf\xda\xe5\x91\xe6\x5e\x37\x97\x1a\xba\xae\xd4\ +\x66\x8d\x65\x9a\x20\x61\xc5\x78\xe8\x1f\xa2\xe5\x64\xd2\x9b\x61\ +\xd4\x04\xa0\x6a\x2a\x9f\x2a\xc2\x60\x5f\xbc\x73\x09\xa8\x9f\xf7\ +\x8b\x68\xef\x01\xce\x45\x09\xb8\x39\xe7\xc4\xbe\xb1\x4c\xb9\x5e\ +\xab\x15\x37\xee\xc8\xf9\x79\x75\x8d\x67\x3a\x4f\xd7\xd0\x29\x67\ +\x6e\x64\x3d\x4f\xa9\x29\x5e\xf0\x04\x8f\xb9\x94\x65\x4e\xae\x44\ +\xcf\x29\xbd\xd3\xc9\x3b\xa5\x4f\x97\x6b\x5c\x89\x38\x63\x02\xca\ +\xad\x77\x2b\x9d\x3c\x06\x75\x5b\xb6\xe9\x1b\xac\x30\xe9\xc2\x2e\ +\x61\x9b\xe2\xcb\x06\x19\x19\x79\xf1\x53\x59\x06\xd9\x50\x7e\x4f\ +\x39\x67\xa8\xf6\x39\x57\x8a\xbd\x1d\xa9\xd7\x2b\x0e\x35\x93\x73\ +\x84\x57\x95\x5d\xa6\x01\xb8\xec\x23\xd3\xa4\x04\xc7\xae\xeb\x54\ +\x90\xae\xd7\xdf\xef\x21\x0e\x90\xa4\x1f\x3e\x68\x05\x42\x5b\x06\ +\x9f\x32\xe0\xb6\x08\xe8\x06\x31\x80\xcd\x66\xbb\x38\xb7\x75\x88\ +\x6b\x97\xda\x3f\x4e\x08\x2a\x2f\x1a\xab\xaa\xfb\xd0\x7e\xfc\x88\ +\x00\x6d\x19\x1b\x8e\x2f\x44\x83\x1d\x3e\xc1\xf4\xe4\x22\xb3\x5c\ +\xdb\x92\x14\x2a\x8e\x15\xc4\x61\x47\xe2\xe5\x5c\xba\x88\x03\x4a\ +\x5f\x28\x7e\x90\x61\x3f\xf0\xb1\x6f\xa3\xbe\x26\x43\xea\xed\x88\ +\xa9\x0c\xa1\xe8\xa8\x9c\x5a\xab\x39\x0b\x5f\x3e\x22\xe9\x8c\xe7\ +\x7c\x8f\x9f\x45\x66\xc5\x56\x72\x51\xf0\x1a\x04\x6e\xc8\x4d\x23\ +\xe5\xe3\x9a\x79\x93\xe8\xfc\xdc\xd5\xdb\x09\x9d\xf9\x2e\xa3\x60\ +\x25\x18\xa0\xf2\x77\x6a\xea\x3a\x91\xc7\x7e\xa4\x64\x7c\x5c\x33\ +\xcd\x07\xae\x35\x2f\xe0\x29\x32\x4d\xc1\xfc\xbd\xc6\xeb\xdb\xb5\ +\xc6\xa9\x4d\x3b\x3d\xd3\x98\x77\xc4\xff\x6f\x93\x00\x7e\x95\xa8\ +\xc9\x85\xc6\xb8\x4f\xdb\x47\x1f\x7f\xd2\x9e\x5c\x3e\x6d\x4f\x5e\ +\x5c\xb6\x4f\x9e\x5e\xb6\x8f\x9f\x6a\x0e\xa0\xf5\xe5\x8b\x0b\xd6\ +\xee\x8a\x25\x7b\xf6\x09\x5e\x59\x91\x21\x4d\x19\x44\x59\xb9\xdf\ +\x95\x3c\x1e\xf3\x7f\x6f\x9b\xa3\xb6\xd1\x58\x1d\x20\x0f\xbb\x0e\ +\x1f\x0f\x25\xcb\xbd\x39\x6d\xee\x41\xd8\xb1\xbf\x3d\x3e\xb2\xa6\ +\x14\x9d\xde\x1d\xcb\x08\xbd\x64\x11\xb1\x1f\xd8\x57\xb1\xcf\x2c\ +\xeb\xea\xd1\xb3\xa4\x13\xa6\x2f\x44\x80\xd0\xb3\xad\xf5\x3f\xf7\ +\x34\xd7\x17\xef\xb4\x7f\xfb\x1f\xfc\x6f\xdb\xd9\xe9\x5b\xd6\x4f\ +\x21\x45\x60\x34\x16\x71\xc0\xaf\x1d\x0e\xbb\xef\x80\x03\xbe\x38\ +\x8c\x33\xa7\x03\x0e\x38\xe0\x80\x2f\x0f\xcb\x39\xdd\x2f\xf8\x69\ +\xee\x49\x5f\xa6\x42\xd1\xaf\x0a\x8d\x3e\x16\xf6\x6b\x4d\xe0\x35\ +\x1b\x65\xf6\x2c\x69\xf9\xed\x8b\x39\xa2\xc7\x9f\x29\xf7\x59\x26\ +\x5e\xa2\x8a\x92\x07\x24\x13\x2e\xe9\xc8\x84\xdd\x79\x64\x23\x42\ +\x33\x8b\x30\xa1\x4f\xf2\x73\x92\x1c\xe4\x6e\x99\x09\x4f\xce\x93\ +\x36\xc1\x24\xdd\x48\x6b\x65\x7c\x68\x30\xf1\xf7\x17\x34\x45\xdf\ +\xdc\x68\x62\x7e\x71\xd3\x6e\x3f\xbe\x6c\x4f\xff\x7f\x1f\xb6\x67\ +\xff\xed\xf7\xdb\x47\xff\xf7\x3f\x6e\xef\xfe\x17\xff\x43\x7b\xfa\ +\x7f\xfd\xef\xda\x7b\xff\x97\xff\x67\xfb\xe4\xff\xf1\xcf\xda\xd5\ +\x9f\xfc\xb8\xb5\x8f\x9f\xb7\xed\xc5\xa6\xad\xcf\xd7\xed\xe6\xc5\ +\x46\x93\x76\x45\xb8\xd2\x82\xe2\x4a\x0b\x5c\xdf\x60\xd3\xc2\x80\ +\xc4\xcf\xb2\xf1\x13\x8e\x3c\x71\xc6\xd3\x68\x7c\x0b\xb1\x6e\xfc\ +\x29\x35\x9e\x52\x93\xae\x12\x17\xbe\xf9\xef\xa3\xfa\x89\x47\xfe\ +\x3b\x2d\x7e\xd2\x51\x4d\xe0\x02\xba\x17\x87\x5a\xc0\xdd\xca\x5f\ +\x79\x5d\x74\x67\x31\x09\xcd\xca\xd1\x17\xde\xb9\xc8\x2e\x3d\x17\ +\xf0\xe3\xe6\xa6\x12\xab\x15\x2f\x56\xaa\x2f\x92\x4d\xda\x8b\x20\ +\x2e\x88\x91\xd6\x6a\x0f\xc7\x92\x13\x1d\x44\x8e\x91\x0d\x23\xc1\ +\x74\x1b\x92\x7b\x74\x21\x53\x2a\xc7\xe4\xeb\x10\x08\x59\xe6\x4a\ +\x51\x7e\xb1\x6c\x92\xe9\x0e\xca\xad\x23\x15\x51\x90\xaf\xb7\xb4\ +\x87\xe5\x24\xf1\x10\x68\x63\x02\x45\x59\x84\x2c\xc4\xf8\x05\x6f\ +\x55\xa7\x07\xff\x50\x0c\xf5\x9e\x40\x9d\xe7\x10\x8f\x6f\xfa\x80\ +\xa0\x92\xc7\x1e\xd2\x36\xe4\x6c\x12\x23\xbd\x44\xd5\xa3\xfc\x06\ +\x74\x55\xb0\x1d\x61\x99\xdb\xb4\x71\xbf\x24\x6f\x99\x91\x4a\xde\ +\xd5\xff\x25\xdb\x49\x40\x31\x7a\x3d\xc6\xad\x72\x11\xf4\x93\xfb\ +\x25\x85\x71\x21\xc7\x54\x1e\x6b\x30\xa9\x14\xaa\x9e\x55\x29\xc7\ +\x2e\xff\x31\x2f\x3b\x27\xa0\xdc\xfa\x4c\x5d\x57\xc7\x6b\xa4\xb1\ +\x2e\x54\x60\x19\xdb\x7c\xf9\x16\x9f\x32\x2e\x8c\xf2\xad\xf9\x90\ +\x0d\xc7\x77\xe5\xa9\xe3\xd5\xe5\x95\x9c\xb1\x19\x11\x27\x5c\x5c\ +\x08\xce\xf3\xd2\xe7\x66\xf0\x91\xf2\x7c\x4e\x9e\xcb\xc8\xbe\x70\ +\xc4\xb9\xcc\xdd\x16\x4e\x63\x7c\x18\x1f\xf8\x22\xc1\xf5\x6d\xdc\ +\x54\x93\x9e\xbc\x6e\xb0\xdd\x70\xe1\x1d\x9b\x4c\xdc\xbf\x93\x2a\ +\xae\x59\x6b\xac\x8a\xff\x69\x3c\x6a\xd7\x1a\x9f\x2e\xcf\x25\x7a\ +\x7e\xd7\xae\x9e\xdd\xb5\x8b\xe7\x37\xed\xf9\x93\xeb\xf6\xd1\x8f\ +\x9f\xb7\xf7\xff\xf4\xb3\xf6\xa3\x3f\xfa\x59\xfb\xd1\x7f\xf5\x17\ +\xed\xfb\xff\xe5\xbf\x68\x3f\xfb\xbf\xfd\x51\xfb\xc9\x7f\xf1\xff\ +\x69\x3f\xfc\x2f\xff\xa8\x7d\xf0\x5f\xfd\x6b\x8d\x93\xef\xb6\xe7\ +\x7f\xf1\xa4\x3d\xff\xc1\xd3\x76\xfb\xa7\xb7\xed\xe9\x9f\xdd\xb6\ +\x8b\xef\x5f\xb4\xcb\x9f\x5d\xb5\xab\x8f\x55\x55\xc5\xe4\x06\xe1\ +\x7a\xad\xa4\x0e\xe1\xc2\x0e\x43\x79\xf4\xf9\x70\x21\x44\x32\xa7\ +\x81\x54\x13\x95\x67\xdf\x24\x26\x6a\x04\xfb\xa0\x48\x11\x45\x0b\ +\x90\x3b\x3e\x29\x40\x57\xa6\x88\x76\x63\x8f\x81\x62\x3f\x8f\x22\ +\xa3\x3e\x97\xba\xf3\x14\x85\xba\xdb\x41\xd9\xe4\x16\x7a\x9a\x64\ +\xd9\x10\x8f\xf8\x1e\xb3\xa5\xe4\xa2\x20\xca\xed\x96\x8b\xf4\x1c\ +\x77\x60\x59\x78\x21\x62\xde\x8f\x57\xe9\x05\x4c\xc6\xf0\xf7\x15\ +\xf5\xeb\x8e\x59\x57\xd0\xc8\xfd\x0d\x65\x4e\x05\xe2\xd0\x8b\x3d\ +\x39\x61\xf2\x89\x11\x6d\xae\x2d\xbc\xb4\x0b\xa5\xb4\x5e\xae\x93\ +\xf7\xe8\x31\x96\x21\xba\x3e\x7c\x6c\xbc\xbf\xbc\x39\xc6\x58\x4b\ +\xdc\xaf\xa3\xa5\x71\xde\x61\xe3\x92\xf7\x16\xe7\x8b\x95\x92\x73\ +\xf1\x93\x27\xda\x6c\xe2\xc3\x34\x7a\x84\xe3\x37\x2e\xe2\x6a\x3e\ +\xa4\xc4\x4f\x98\xde\x69\x04\x98\x2e\x2a\xd7\x40\x14\x37\xc9\x48\ +\x1e\xd8\xf2\x29\x8e\xeb\xf3\xf3\x76\x7e\xf4\xbc\x5d\xdd\x9d\xb7\ +\xcb\xeb\x8b\xf6\xe2\xfc\xaa\x9d\x5f\x5d\xb6\x4b\xff\xb4\x9a\x92\ +\xc6\x3a\x9e\x00\xe1\x8b\x63\x44\xe0\x3c\xa4\x3e\xae\x07\xb5\x86\ +\xee\x1f\xd8\xca\x93\x24\xab\x14\x6a\x6d\x2a\x57\xe2\x14\x8f\x18\ +\x20\x64\x15\x73\xfc\x42\x91\x5d\x1c\x20\x93\x74\x31\xa6\x89\x54\ +\x1e\x63\x05\x76\xa1\x0f\x5d\xe4\x96\x25\xef\x94\xb6\xc1\x26\x3d\ +\xea\x7a\x0e\x92\x77\xca\xcf\xb9\x9a\x27\x91\xb2\xf2\x75\xf3\x8e\ +\x5c\x3b\x22\xd4\xde\x07\xd8\xf2\x99\x86\xaf\x52\xc9\x44\xbb\xbf\ +\x78\x8a\xaa\x12\xfc\x32\x3e\xa9\x3a\xc8\x6c\xc9\x13\xf0\x43\x5d\ +\x7d\x1c\xc5\xbb\xbb\xc1\xd9\xcc\xf5\x42\x33\xe4\x49\x57\x5f\xe2\ +\x14\x73\x39\xea\x58\xfb\x02\x94\x6d\xe8\x67\x30\xab\x0d\xd5\x36\ +\x35\xe8\x17\xa6\xa0\xeb\xcb\x2f\x33\x0f\xed\xd4\xc3\x69\xa0\xe9\ +\x33\xfa\xc6\x46\x18\x27\xd2\xce\xa2\xda\x54\x1f\x2a\xd5\x13\xfc\ +\xb1\x0f\x6c\xe0\xf6\x45\xa3\xe0\x33\xa5\xfd\x4e\xbf\x93\xf5\x46\ +\x95\x1c\x4c\xfa\x70\x4d\xbe\xeb\x45\x55\x7d\x9d\x27\x64\x17\x5f\ +\x54\x19\xca\x49\xbd\xb7\x7d\x73\x5f\x2a\xc8\x5f\x8b\xa8\xe8\x47\ +\xb6\x91\xd3\x47\xd1\x56\xa1\xca\x1f\x52\xd8\xd1\x1f\x29\x82\xf6\ +\x71\x27\x72\xac\x67\x28\x53\x5e\xa4\x08\x9f\xf0\xa2\x72\xae\xe4\ +\x17\x39\x62\x5c\x34\x06\x69\x26\x94\x87\x32\xe3\x1a\xb6\x8c\x4d\ +\xd2\x31\x87\xa2\x7e\xd8\x66\x99\xa6\x55\x16\x4f\xfa\xa1\x8b\x71\ +\x30\xe4\xd0\xb7\xb2\xf3\x88\x65\x3e\x47\x2c\x6d\x34\xb5\x52\x5a\ +\xb5\x8b\xeb\x75\x7b\xa6\x35\xdc\x47\x9a\x3f\x7d\xf8\xa4\xb5\x0f\ +\x3e\x79\xd1\x7e\xf6\xe1\xc7\xed\x83\xf7\x7e\xaa\x79\x9a\x04\xfe\ +\xcb\x00\x22\x38\x6a\xd2\xe7\xed\xd9\xf9\x87\xed\xdd\x9f\x7d\xd0\ +\xde\x7f\xf2\x69\xfb\xf8\xd9\x8b\xf6\xe9\xd3\xbb\xf6\xe9\xb3\x75\ +\xfb\x54\xe6\xcf\xb5\x96\xbc\xba\xd1\xf8\xe9\xdf\xec\x9f\x3c\x23\ +\xb1\x05\x99\x17\x3b\x11\xa2\xd8\x07\x85\xa9\x4f\x27\x6a\xb4\x16\ +\xa4\xe8\xc7\x8a\x30\xd3\xdd\x0b\x59\x65\x40\xfa\xea\x3e\x2c\x55\ +\x63\x1d\x8c\xda\xe7\x32\x9c\xdb\xbe\x24\xe8\x2b\x11\xfb\x98\x71\ +\x70\x9a\x47\x2d\xb0\x53\x91\x03\x0e\x38\xe0\x80\xdf\x5c\xdc\x33\ +\x52\x1e\x70\xc0\x01\x07\x7c\xc9\xf8\x45\xe6\x7b\x0b\x10\x6a\x0c\ +\xb7\x3f\xf4\x38\x03\x14\xbd\x5e\xb7\xcd\x6a\xab\x49\x7d\xfc\x14\ +\x85\x91\x8e\xc1\x95\x7d\x0a\x5f\x51\x00\xd6\x95\x96\xb0\x7c\x16\ +\x6e\x9f\x95\xd0\x8d\xca\x62\x72\xda\x53\xe4\x02\x0b\x0b\x56\xb6\ +\x88\x08\xa1\x14\x59\xc5\x9b\x03\xb3\xd1\xbb\x2f\xb0\x66\xf6\xf2\ +\x96\x8c\x74\xab\x7a\x5e\x8a\x60\xa9\xe3\xff\x23\xba\xba\x69\x97\ +\x57\xd7\xed\xc5\xe5\x55\xfb\xe8\xbd\x0f\xdb\xfb\xdf\x79\xb7\xbd\ +\xff\xff\xfe\x8b\xf6\xfe\x7f\xf3\xd7\xed\x83\x3f\xfd\x71\x7b\xfa\ +\xee\xb5\xf4\x0f\xda\xe5\xf9\xc3\x76\x73\x75\xd6\xee\x2e\x4e\xdb\ +\x8a\x27\xd3\xae\xf4\x11\xc4\xef\xe6\x2b\xc5\x13\x67\xe2\xb5\x00\ +\x5b\x6b\xcd\x74\xc4\x8d\x3a\xa5\x15\xb9\x56\x5f\x47\xf1\xf5\x45\ +\x3f\x79\x82\xdc\x17\xc9\x7b\x92\x5b\xd2\x5c\x34\x67\x25\xe7\x8b\ +\xeb\x2c\x0d\x45\x73\x51\xdd\xdf\xbe\x54\x88\xba\x41\x86\x9d\x6d\ +\x32\x71\x61\x3d\xbe\xc5\x19\x17\xd9\xc3\x18\x9d\xe2\xe1\x93\x88\ +\x85\x46\xa4\x4e\xb1\xdf\xbc\xef\x54\x7f\xdf\x5c\xe3\x42\x11\xaa\ +\xd0\xd7\x85\x8d\x4a\xb1\x1f\xf6\x27\xeb\x92\x2d\x97\xee\x03\x5d\ +\xca\x45\xaa\x8b\x51\xfe\x54\xe7\xa2\x0b\xf9\x14\x20\x53\x91\x49\ +\x1b\x41\x97\x85\x2f\x60\x94\x7e\xe9\x6f\x3e\x2f\x02\x20\x2a\x79\ +\xf2\xfd\x1a\x43\xf1\x33\x5f\xe4\x13\xb2\x45\xb1\x5d\xaa\x43\x91\ +\xc2\x49\x13\x54\x2e\x76\xc7\xd8\x95\x9c\xb1\x19\xf2\x8e\xe2\x87\ +\x92\xd9\xb5\xa2\x6a\x4d\x6a\x88\x0e\xd7\x10\xd6\x76\x3c\x17\x26\ +\x0a\x8c\x76\x0b\xec\x13\x12\x1c\x79\xaf\x9f\x19\xbf\x9c\xfb\x58\ +\xb1\xc2\x15\xa3\x6e\x36\x75\x42\x1f\xa9\xd6\xef\xf6\x73\x23\xc2\ +\x7e\xde\x98\x42\x1a\x3b\xd5\x45\x43\x5e\x75\x5c\x4a\xe6\xe3\x76\ +\x4a\xbe\x21\xc6\x2b\xcb\x33\x2a\xbe\x12\xaf\xf0\x25\x45\x1c\xfa\ +\xa8\x8e\x1f\x3f\xbd\x49\x9e\x31\xc4\x84\xa9\x5e\x06\x0c\xc7\x69\ +\x4a\xbc\xd5\xbb\xfa\x99\xad\xf7\xb3\xc7\xa2\x48\xd0\x9c\xd5\x3e\ +\x1f\x45\xf3\x34\x5b\x48\x4a\x8f\x2a\xce\x59\xe7\x3a\x8f\x83\x4e\ +\x9e\x73\x39\x53\xc9\xb9\xb9\x16\x4f\xbc\x32\x06\x4c\x7a\x9e\x8e\ +\xe3\xf8\xa8\x72\xc8\x29\x20\xea\x72\xab\xa1\x46\xbe\xb2\x0f\x1f\ +\xa9\xa8\xd2\x85\x78\xa5\xcb\xe7\xad\x3d\xfd\xf4\xba\xfd\xec\xdd\ +\xf3\xf6\xb3\xef\x3d\x69\xdf\xff\xce\xb3\xf6\xa3\x3f\x7e\xda\x3e\ +\xfc\x97\x9f\xb6\x8f\xfe\xf2\xa2\x3d\xfd\xe0\xb6\x9d\x3f\xbb\x6d\ +\x2f\x9e\x1c\xb7\x4f\x78\x0a\xf7\xc5\x71\xbb\x7e\x71\xd6\x6e\x9e\ +\x1f\xab\x2e\x5b\x95\xb7\xf5\xff\x7b\xae\x6e\xf3\xc2\x19\x65\x67\ +\x87\xd0\x4f\xd1\x43\x7b\x20\xfd\xce\xee\x27\x80\x83\xbc\x04\xa3\ +\xcd\x7d\x31\x9c\xf7\xbd\xd2\x45\x36\x4d\x31\xb2\xee\x5a\x06\x23\ +\x96\x71\x07\x4c\xe6\x69\xa4\xcc\x32\xfa\xbb\x3b\xce\xad\xbc\x2f\ +\xcc\xa9\xdf\x45\xd3\x33\xdc\x90\xb8\xe3\xd8\xe3\xa6\x44\xa8\xbe\ +\x5c\xdc\x17\xff\xcb\x2e\xf7\xcb\x06\xf5\xdf\xdb\x86\x7b\x15\x3a\ +\xa5\x39\x5e\xd5\xff\x1c\xaf\x23\x6a\xf7\x09\x03\xd9\x81\x2c\xe4\ +\xe1\x57\x36\xfb\x6c\xf7\x0b\x13\x7b\x74\xb3\xb3\xc5\xe3\xd1\x7d\ +\xd8\xa3\xd9\xdf\x4c\xa3\xab\x92\x60\xba\x10\x18\x9c\x76\x48\xfa\ +\x86\xe1\x85\x27\x34\x78\x2a\x23\xc6\x13\x7e\x0e\xad\x5f\x6c\x96\ +\x8c\xe1\xf4\xfa\xe6\xba\xdd\x5c\x2b\x31\x17\xb1\xb7\x2f\x4b\xf7\ +\x24\x6f\x25\xe8\x0b\xa7\xcb\x17\x1f\xb5\x0f\x9e\x7d\xd0\x3e\x7a\ +\xf2\xac\x7d\xfc\xfc\x45\xfb\xf4\xc5\x79\x7b\x72\x7e\xd5\x3e\x7b\ +\x71\xdd\x9e\xbc\xb8\x69\x9f\x5d\x68\xbc\xb9\xe4\x7f\x8a\xf2\x17\ +\x17\x28\xdb\xa1\x89\x1d\xf5\x82\x12\xc9\x3b\xc0\xf9\x9e\x63\x77\ +\x25\xf7\xa0\xfb\x51\xb9\x1d\xc8\xc4\x71\xde\x59\x17\xf1\x68\x04\ +\x54\x9c\xa1\xe1\xe3\x49\x49\xc6\xe3\x58\x71\x0c\x23\x64\x95\xfa\ +\x4d\x14\x8f\x37\x43\xca\x0a\x86\x1f\x7c\xa6\xe2\xf3\x73\x28\x78\ +\xd1\x25\xef\x69\x9f\x4c\x89\xba\xe0\xdb\x79\x72\x81\x9b\x04\xd0\ +\x4a\xf1\x79\x08\x82\xf7\x67\x9a\xea\x13\x17\xd2\xb3\x5c\x52\xc5\ +\x98\x25\xa0\xdc\xfa\x84\x8f\x97\x85\x4d\xea\x7b\xfb\xa0\xaa\x7d\ +\xd2\xb9\x7f\x3b\x26\x1b\x92\x6f\x74\x78\x7f\x42\x93\xeb\x9d\xbc\ +\x93\xeb\xc7\x3b\xec\xd9\x5a\xb0\x17\x73\x6d\x71\xee\x7e\xe5\xe6\ +\xb5\x99\xea\x09\x22\x0f\x9b\xc2\xa8\x1f\x21\x59\xf6\x15\xdb\xa8\ +\x7b\xb4\xa1\x02\xb8\x7f\xd3\xcc\xbb\xb5\x76\x8f\x7d\x52\x91\x22\ +\x53\xf2\x8d\x90\x04\x28\x69\xd7\x46\x1f\x88\x46\x9d\x12\x23\xfa\ +\x74\x4c\x60\xa4\x13\xae\x5b\xc9\x4b\x37\xda\x8c\xba\x29\x55\x9f\ +\x4d\xa9\x37\x24\x31\xe9\xb2\x65\x59\x16\x8d\x86\xf1\x66\x40\xd9\ +\x12\x87\x14\xdc\x68\xe7\xfd\x6f\x30\xbe\x64\xdf\xea\x80\xe3\x5c\ +\x44\x17\x14\x76\xf1\xb9\x19\x63\x8f\x92\xc6\x84\x6b\x34\xbc\x3d\ +\x3f\x8a\x58\x5e\x17\x89\xf7\x54\x47\x39\x87\x95\x32\xff\x70\x40\ +\xa5\x6b\x19\xf2\xc5\x23\xfe\x47\x92\xef\x3c\x5e\xca\xe0\x52\x0e\ +\x17\x24\xad\xed\x2e\x35\xe6\x20\xd7\x32\x31\xf4\xd7\x71\x33\xed\ +\x85\xd6\x7c\xcf\x45\xbf\x90\xfe\xd3\xf3\x67\xed\xc3\xe7\x4f\xda\ +\x7b\x4f\x3e\x6c\x7f\xf3\xfe\x4f\xda\x0f\x7e\xf2\x83\xf6\xd1\xc7\ +\x3f\x69\xcf\x2e\xdf\x6b\xe7\x57\x1f\x2a\xd6\x87\xed\xf9\xe5\xcf\ +\xda\xbb\x1f\xfe\xb8\xfd\xf5\x8f\x7f\xd2\xbe\xff\xc1\x07\xed\xa7\ +\x9f\x3d\x6f\xef\x7e\x7a\xd9\x3e\x78\x7e\xdb\x3e\x7a\xd6\xda\x73\ +\xad\x13\x99\xce\xf9\x7e\x5f\xdf\x5f\x4b\xc8\x60\x1f\xf0\xe1\x20\ +\x42\xad\x44\xdb\x49\x33\xf3\x0c\x37\x8b\x3a\xea\x67\xd8\x55\xec\ +\xf7\x13\x31\x53\xec\x22\xd4\xda\x2e\xec\xbc\x4f\x93\xfe\x79\x50\ +\xbe\xf3\x18\xd4\x47\x47\x98\x9f\x36\x8e\x2f\xc9\x1c\x70\xc0\x01\ +\x07\x1c\x70\x3f\xe2\xd3\xf8\x80\x03\x0e\x38\xe0\x8b\xc6\x7d\x13\ +\x44\x66\x6e\xbf\xc8\x0c\x30\xf1\x8a\xf9\xe7\x0e\x96\xf6\x47\x9b\ +\x55\xbb\x62\xae\xc8\x82\x23\xeb\x33\x56\xab\xdb\xa7\xb0\x96\x46\ +\x13\x06\xa7\x4a\x3b\xd8\x27\xbc\xa7\xe6\xf7\x35\x08\xb9\xd2\x7d\ +\xea\x19\xd2\x36\x4a\xcd\xb2\x67\x55\x10\xb3\x37\x50\x4d\xcb\x53\ +\xe9\x55\x6c\xb2\x5e\x94\x04\x58\x7c\x72\x21\x88\x0e\xab\xe5\xdc\ +\xa5\x6c\x6f\x56\x9b\x76\xb7\x5e\xfb\x42\xe6\x33\x2d\x96\x3e\x5a\ +\x5d\xb5\xcf\x6e\x6f\xda\xd3\xf5\x55\x7b\x71\xb5\x69\x4f\xae\xee\ +\xb4\x60\xda\xb6\xab\x9b\x4d\x3b\xd7\x02\xea\x5a\x31\x59\x78\xc5\ +\x05\x6e\xc5\x51\xce\x45\x6b\x2e\x62\xb3\x52\xe3\xe7\x26\xf8\x09\ +\x48\xae\x17\xd5\x53\x67\x71\x1d\x09\x1d\x0b\xbf\x58\xc5\xd5\x05\ +\x73\xaf\xe8\xf0\x53\x0c\x2f\x12\x6f\xf3\x02\x95\xc3\xc9\x26\x65\ +\x7e\x62\x45\x42\x64\xf0\x18\xc4\x8d\x36\xd1\xf8\x12\x83\x24\x1a\ +\x1d\x17\xe1\x91\xcf\x92\xfb\x69\x04\x7d\xa5\x25\x6d\xa6\xa0\x95\ +\x71\x41\xd7\x37\xd6\xd4\x4b\x83\x7e\x97\x87\x4d\x5a\x2f\x2f\xf0\ +\xe9\x73\x8e\x4b\x68\x4b\xa3\x98\xdc\xec\xc1\x60\x97\xb4\x13\xc1\ +\x81\x0b\x81\x50\xd9\x2c\xd4\x41\x14\x1c\xf2\x4e\xc3\xc0\x8f\x32\ +\xbd\x71\x09\xd2\x69\xd8\x68\xab\xd7\x4a\x7d\x22\xb6\xea\x1b\x50\ +\xfd\xe5\x3f\x99\x96\x4e\xa9\xca\x11\x3d\x1c\x5e\x81\xf2\x99\x21\ +\xfd\x96\x1a\xb1\x25\x89\x90\xc9\xf5\x18\xa5\x2d\x48\xbe\x14\x09\ +\x71\x0d\x46\x8a\x51\x07\x6d\x63\x25\xb7\x5f\xc7\x83\xe8\x3a\x02\ +\x4a\x1d\x6e\x61\xe7\x7d\xe8\x1b\x52\x62\xb3\xcf\xba\x11\x8c\xde\ +\xd3\xfe\xad\xfe\x4a\x40\x3a\x45\x9c\xb8\xa8\x98\xa9\xd3\x23\x28\ +\x35\x64\x91\x97\x5e\x79\x1e\x3f\x95\xac\x21\x2e\x75\x23\xd6\x10\ +\x0f\x92\xfb\x0f\xdd\xcf\xf2\x3a\x6e\x23\x51\x17\x7f\x3b\x7f\x6a\ +\x94\x4e\x85\xb4\xb7\x4f\xe8\xe2\x78\x17\x9f\xf1\x83\x16\x59\x74\ +\x30\x70\x49\x2b\xe9\xed\xb6\x5a\x0f\x1b\xe7\x1f\x17\x73\x7c\xe5\ +\x86\x43\x8b\x0e\xe7\x92\x8f\xe4\xdc\x4c\x47\xc6\xb9\x58\xe7\xab\ +\x69\x92\xc7\x84\x3c\xd7\x25\x47\xe5\x1b\xea\xa6\xc3\xa6\xc6\x03\ +\x9f\xdb\x39\x06\xd4\xf8\x11\x69\x2a\xb7\xe2\x97\xbd\xf3\x4a\xe2\ +\x89\xc9\xb0\x64\x73\xd9\xe3\x54\xba\xeb\xbc\x18\x7e\x79\xc9\x58\ +\xa7\x72\x35\xf6\x5d\xdf\xae\xda\xad\xc6\xc3\xeb\x67\xeb\x76\xf3\ +\xfc\xa4\xb5\xe7\xdb\xb6\x79\xb6\x55\x0c\x2e\x1e\xcb\x86\xce\x50\ +\x30\x7e\x7e\xd8\xe5\x46\x35\x1a\x0f\xf2\x9a\x10\xa2\x97\x04\xf1\ +\xa6\x53\x30\xca\x7b\x5e\xf4\x2b\xf1\x0a\x43\x82\xf7\x02\x44\xf0\ +\x4e\xd9\xe4\x19\x7b\xb5\xf3\x33\x66\x01\xcb\x4b\x99\xb9\xb2\x68\ +\x71\xa9\x11\xd0\x9f\xf3\x40\x45\x75\x5b\xdb\x60\x1b\xb4\x7f\x72\ +\x4f\x6f\x2e\x06\xd9\x02\xf7\x57\x02\xa3\xa5\xe1\x6b\x39\xbe\xb6\ +\xd9\xaf\x1d\xaa\x4b\x76\xba\x65\x9f\x30\x24\xfc\xfc\x5f\xec\xaf\ +\xd8\x3f\x79\x4a\xef\x45\xa9\x38\xdf\x0b\xe5\x59\x80\xb2\xac\x8c\ +\x25\xd8\xe7\xf7\x72\x84\x9d\x8f\x91\x7b\x51\x51\x47\xea\x1e\x2c\ +\x0c\xaa\x8d\x11\x5e\x6d\xce\xf6\x83\xd1\xd4\x87\x28\x49\xb4\xc7\ +\x0d\xcd\x83\x2e\x35\xaf\x39\xbf\xba\xd5\xf0\x73\x13\xf5\xd3\xb9\ +\xcf\x79\xef\x27\x66\x25\xbb\xb8\xbe\x6a\x37\x57\xdc\x30\xe3\xdb\ +\x46\x57\x43\x5e\xb2\x73\xf9\x3d\x69\x9f\x3e\xfd\x7e\xfb\xab\x0f\ +\xfe\xb4\xfd\xf8\xe3\x77\xdb\xbb\xcf\x3e\x6d\x3f\xfb\xe4\x45\x7b\ +\xff\x09\xff\x4b\x74\xdb\x3e\x7b\x71\xd4\x9e\x3c\x5f\xb5\xa7\x2f\ +\x56\xed\xc5\x25\x17\xb3\xf9\x89\xb5\xbb\x76\xa5\x14\x17\xd2\xa9\ +\x17\xb5\xd2\x1e\xa3\xc2\xae\xa3\x7a\x17\xda\xe7\x52\xb4\xa2\xda\ +\x82\x25\x0d\xb1\x87\x84\xb6\xb5\x5c\x5b\x78\xcd\x2f\x14\x3a\x63\ +\x5a\x61\x9d\x39\x36\x19\xaf\xd4\xfe\xec\xa0\x13\x2b\x29\x88\x5f\ +\xa2\x23\x0f\x2b\xc3\xb2\xf8\x4c\xc2\x2e\x10\x3e\x93\x8c\x54\x34\ +\xf9\x20\x77\x96\xb4\xf9\x4c\x4b\x3b\x30\xdc\xd0\xa8\x57\xd7\x75\ +\xa4\x0f\x62\xcf\xab\xca\x66\x69\x97\x7c\xb5\x9f\x44\xb9\x7c\xa1\ +\x84\x7a\xf7\xbe\x48\x39\xc8\x7e\x02\x31\x17\x88\x28\x61\x3a\xe9\ +\x00\x32\x9b\x94\x6f\xd7\xf7\xc0\x8e\xc7\xb1\x19\x61\x6d\xdc\x33\ +\x27\x9b\x8a\x18\x5d\x32\x07\x61\xa6\xad\x89\xb9\xdd\x54\x6e\xda\ +\xec\x85\x1d\xd3\x36\xad\x44\x73\xfc\x94\xce\x32\xe7\x13\x65\x7d\ +\xd5\x2d\x53\xf5\xc7\x28\xb3\x84\x36\x4a\x17\xf3\xd1\x7d\x36\x04\ +\x8a\x98\x95\xd2\x33\x01\xcd\x7e\x9f\x7c\xa6\x94\xe8\x64\x11\xca\ +\xb1\x77\xc7\x56\x9a\x10\xf1\x97\x72\xd1\xf8\x78\xff\x93\x52\x96\ +\xc9\xac\xb7\x51\x97\x79\x8c\x29\x59\x5e\x2c\x1b\xea\x90\xf3\xfb\ +\x38\xe7\xa6\x9d\x34\xe3\x44\xc4\xba\x47\x32\x4e\x44\x12\xb4\x15\ +\xc8\xd1\x87\x0d\x7a\xfc\x18\x27\x20\x28\xa2\x74\x7a\x3b\xf1\xb4\ +\x2d\x3c\x53\xb3\x6b\xe9\x58\xdb\xf1\x84\xd8\xd5\xad\x72\x25\xff\ +\xa8\x88\xf8\x17\xd7\x5a\x1f\x6a\x3e\xf4\x4c\xe3\xd0\xb3\x8b\x3b\ +\x3f\x99\xc6\x4d\xfe\x73\xad\x0f\x2f\xaf\x64\xaf\x22\x2e\x35\x3f\ +\x7b\x71\x7d\xde\x7e\xf6\xd9\x87\xed\x07\xef\xfe\xa8\xfd\xeb\xbf\ +\xf9\xf3\xf6\x3f\xff\xd9\x77\xdb\xff\xf8\x67\xdf\x69\xff\xe3\x77\ +\xff\xb4\xfd\x0f\x7f\xfa\x97\xed\x8f\x7f\xf8\x43\x8d\x77\x1f\xb6\ +\x1f\x7d\xf2\xb4\xfd\xe4\x93\x4b\x8d\x77\x3c\xdd\xc6\x5a\x93\x7a\ +\xd0\x19\xae\x6d\xf4\x8b\xea\x8f\xc8\xbb\x34\x3a\xca\xa0\x4d\xee\ +\x2e\xe5\x5e\x7b\xea\x45\x37\xf8\x18\xb1\x3c\x6d\x3d\xef\x77\x18\ +\xe7\xb5\x5d\x62\x47\x6a\xa7\x20\x47\x2c\x45\x9d\xdf\x63\xbb\x83\ +\xa9\xfa\x73\xbc\x8e\xef\x1e\x84\xdb\xe4\x1c\x2d\x9d\x28\xfe\x27\ +\x90\x97\x71\x5f\xd9\x07\x1c\x70\xc0\x01\x07\xd4\x48\x79\xc0\x01\ +\x07\x1c\xf0\x25\xe3\x4b\x98\x90\x55\xc8\xfd\xa1\xe7\xb3\xcc\x69\ +\xb2\x08\x8e\xda\x7a\xbb\x69\x77\x5b\x2e\xba\xc5\x44\xda\x13\xc8\ +\x31\xe2\x22\xa8\xbd\x6d\x08\x65\xae\x63\x29\x89\x0b\xc0\x81\x08\ +\x93\x82\xcc\x90\xf5\xf0\x49\xec\x93\xed\xe2\x5e\x45\xa2\x0a\x26\ +\x9f\xdb\x22\x29\xed\x04\xf5\x8a\x84\x5e\x3c\x68\xc5\xd1\xf5\x45\ +\x8c\x0e\xb6\xcb\x65\x46\xac\x4e\x4c\xaf\x58\x00\xa9\xc1\x5a\x2b\ +\xf9\xff\xd5\x56\x5a\xcc\x1e\xb3\xb2\x62\x51\xa3\x95\xcc\xd1\x51\ +\xfc\x7f\x87\xd7\x8e\xca\xd7\x2a\x10\x9f\x75\xbb\x09\x9a\xd5\x19\ +\x57\xcf\xab\x6f\x33\xf1\xe2\x82\x0f\xe5\x92\xe2\x82\x53\x26\xf4\ +\x69\x57\x3c\xc9\x37\xd2\x48\xe1\x60\x9b\x48\x11\xdf\x0b\x44\xe9\ +\xeb\x22\x79\x5c\x78\x4f\x9e\x5c\x76\xe4\xda\x58\x1f\xb1\x69\x07\ +\xee\xe1\x13\x4f\xc5\x24\x68\x90\x13\x8d\x8b\xd4\x6f\x44\x48\x61\ +\xda\x77\x2b\x22\x99\x8f\x5e\x8b\x64\x9f\xca\xcb\x1f\x93\xe4\x0d\ +\x0b\x54\x66\xe4\xbc\x2c\xc3\x36\x73\x8b\x8c\xd4\x79\x9b\xc2\x08\ +\xa8\x44\xf9\x49\x6a\x53\xf1\xe2\xc6\x88\xbb\xc7\xe0\xa2\x8b\x5f\ +\x65\x0b\x81\xac\x68\x84\x93\x32\xae\x23\x24\xbd\x84\xcf\x03\xab\ +\x76\x75\xa3\x2c\xea\xaa\xd4\x65\xca\x1d\x38\xcb\x05\xc1\xda\xc6\ +\xb2\x54\xf4\x7d\xd1\x11\xd1\x26\x88\xc3\x76\x16\x28\xd0\x6f\xfe\ +\xe8\x1d\x71\xf0\xd5\x6b\x0c\x1a\xea\xd4\x74\x0b\x11\xe9\xa4\x63\ +\xbc\x9b\x63\xe0\xce\x94\x85\x32\xb3\x05\x98\x94\x87\x82\x4d\x58\ +\x4c\x76\x49\x29\x76\xdd\x8c\x2a\x9d\x2f\x14\x21\x93\x84\x7d\x67\ +\xd2\x48\xa3\xd4\x19\xf6\x4d\xda\x48\x7b\x36\x3e\xf4\xc8\x33\x49\ +\xc7\x45\xd0\xde\x17\x15\x83\x3c\x65\x1c\xb7\xfe\xd9\xc1\xa4\x7d\ +\xe3\xcc\x49\x3c\xa9\xeb\x52\x4f\xae\x08\xd1\xd4\x90\x6b\x13\x89\ +\x32\xad\x0f\x9b\xb0\x10\xdc\x5f\xd4\x25\xe8\xd8\xc4\x39\xc7\xfd\ +\x2e\xff\xc4\x10\xe7\x63\xca\x9c\x38\x57\xfb\x39\xcd\x0d\x2e\x9f\ +\xa8\xfd\x7c\xb5\x3d\xfa\xb2\xb7\x4f\x24\xdf\xbc\xf7\xcd\x39\x92\ +\xc2\xca\x87\x73\x9b\x9b\xfb\xf0\x88\x43\x11\xbc\x61\xdb\x88\xe3\ +\xa7\xd6\xca\x51\x39\x5f\x35\x20\xbf\xd5\x0e\xe6\x29\xd7\xbb\xbb\ +\x6b\x95\x71\xa5\xb1\x4e\xe9\x5a\xe9\xe6\xba\xad\x15\x9b\xc4\x53\ +\xb7\x1b\xe5\x5b\x92\xc6\xc1\xad\xea\xbd\xe2\xb6\x9a\xc6\xca\x35\ +\xe3\xa5\x0f\x9e\x8c\xad\x72\xb8\x3e\x68\xa8\x0b\x14\x3d\x99\xc4\ +\xc0\x72\xca\x70\x74\xb8\xed\x18\x23\xf3\xf6\x65\xc0\x2e\x6c\xef\ +\x07\x05\xd7\xfe\x5a\x00\x95\x89\x3d\x25\x8d\x0e\xa8\x07\x13\xb3\ +\xda\xec\xf1\x12\x52\x61\x65\x58\xec\xb4\x5b\xc1\x7d\x5c\x55\x21\ +\xca\xd8\x75\xdc\xc4\xe4\x73\x83\x1b\x6a\xc6\xd2\xed\xcb\xc0\xd8\ +\xce\x11\x94\xfd\xcb\x28\xff\xcb\xc0\xb2\xde\xc5\xbf\xa4\x3d\xfc\ +\x37\x96\xf7\xe9\x72\xc7\x9a\x1e\x04\x39\x08\xde\xd7\x6d\x85\xfb\ +\xf5\xd2\xbc\xca\x39\x11\x9f\x73\x20\xf2\xb1\x5a\x21\x4b\xfd\xcb\ +\xe2\xcd\x9d\x0c\x9b\xa7\x3c\xc6\x16\x49\x86\x50\x15\x2e\xf2\x68\ +\xaf\xcd\xb5\xe1\x09\x35\xbe\x54\x74\x79\xb5\x6e\xcf\xaf\xee\xda\ +\xd3\x8b\xbb\x76\x7e\x7d\xa3\x74\xdb\xce\x6f\x6e\xda\xb3\xcb\xcb\ +\xf6\xd9\xb3\xf3\xf6\xe4\xb3\xa7\xed\x93\x4f\x3f\x6e\x4f\x9f\x7c\ +\xa2\xb9\xca\xb9\x9c\xcf\xe5\xfe\x54\xe9\x79\xbb\xba\xfe\xa8\x3d\ +\x7d\xfe\x93\xf6\x83\x77\xff\x75\xfb\x73\xa5\x1f\x7c\xf0\x93\xf6\ +\x93\x67\x9f\xb4\x9f\x7d\xf6\xa2\xfd\xec\xc9\x4d\xfb\xe4\x62\xd3\ +\x9e\x5c\x1e\xb7\x17\xd7\x9b\x76\x79\xbb\x6e\x57\x5c\xe4\xd6\x70\ +\x72\x7d\xa3\x91\x46\x63\x29\x17\x9e\x49\x77\xdc\xe4\x77\xdd\xb4\ +\x3f\xf2\xb3\xcc\x49\x1b\xff\x8c\x1b\xb4\xce\xb3\x92\x4f\x88\x56\ +\x7a\x1c\x64\xcc\x13\xed\xa9\x13\x3c\x50\x06\xed\x39\x9c\xf9\xc9\ +\xdb\x54\x75\x90\x11\x8c\x0f\x8b\x44\xdd\x98\xf5\xa0\x86\xde\x9f\ +\x19\x35\x57\x2a\x43\xce\xf1\xd4\x1b\x45\x67\xc2\xb7\x52\x7c\xf0\ +\x0d\x7a\x50\xf2\x92\x8d\x09\x8c\x34\x18\xf4\xd4\x83\xb8\x1e\x83\ +\xb2\x5e\x65\xeb\x32\x21\x4a\xb6\x48\xae\x4f\x26\x32\x7f\x26\x2a\ +\x2f\x19\x09\x1b\x3e\xf3\xfc\xae\x73\x65\xa2\xba\x5d\xca\xbc\xff\ +\xdc\x37\x99\xef\xb4\x2b\xf6\x91\xed\x4b\x94\xc0\x3f\x84\x66\x9c\ +\xa8\xbe\xe5\x4a\xe1\x17\x23\x70\xef\x7a\x97\x65\x22\x8c\xd3\x36\ +\xa8\x78\x95\x8d\x39\x54\xd9\x4e\xc8\x90\x06\x3c\x5f\x30\x53\x12\ +\x01\x52\x29\x24\x25\x77\xa4\x4e\x93\x28\x3a\xaa\x94\x72\xf7\x3d\ +\xfb\x43\xb4\xbb\x20\xec\x80\x8f\x67\x93\x21\x5b\xc6\x2a\x3b\xe7\ +\x26\x8b\xa7\x8c\xd4\xf7\x7d\x07\x8a\x56\x8a\x06\x24\x06\xf9\x0c\ +\x83\xdc\xf5\xb4\x30\x44\xb3\xba\x92\x04\x37\x4e\x34\xf2\x4a\xd2\ +\x45\xbd\x2b\x15\x19\xbc\xf7\x52\xc5\x4d\x7d\x67\x45\xf1\x19\x19\ +\x37\xca\x32\x3c\xbc\xcc\x8a\x47\x0f\xc1\x3c\x06\xf7\x1e\x4f\xf5\ +\x70\x95\xc9\xf3\x3c\xf7\x4d\x35\xcd\x65\x78\x5a\x9f\x2f\x0d\xf9\ +\xc6\x9a\x6c\x6f\x64\xc3\x18\x77\xa3\xb1\x85\x74\xab\x7e\x77\xce\ +\x98\xa3\xa0\xe8\xf9\xb9\x47\xfe\x37\xed\xe2\xaa\xb5\xe7\xe7\xb7\ +\xed\x33\x11\x9f\x3d\xd5\xb8\xf5\xec\xa6\x7d\xfc\x42\xf9\xd5\x75\ +\xfb\xe9\x8b\x4f\xdb\xf7\x3e\xf8\xb0\xfd\xc5\xc7\x3f\x6d\x7f\xfe\ +\xc1\x4f\xdb\x77\xde\xfd\x49\xfb\xee\x87\xa2\x3f\xfc\xa0\x7d\xff\ +\xe3\x4f\xdb\xbb\x4f\x5f\xb4\x8f\x9f\x9f\xb7\x4f\x5f\x5c\xb7\x17\ +\xe7\x2a\x5f\x75\x88\xb9\x17\xed\x88\x36\xfa\x4b\x4a\x6e\x92\x1b\ +\x91\x74\xc2\x44\x72\x18\xbb\xbd\x81\xf2\x8a\xfd\x1d\x98\x8d\x4f\ +\x99\xff\x7c\x98\x62\x46\xa4\x38\x8e\xe7\xf2\x40\x49\xa6\x9b\xc8\ +\xfb\xf1\x8b\xd5\x07\x2c\x22\x78\x1f\xea\xb0\xac\x79\x14\x58\x16\ +\xf2\x8b\x17\x7a\xc0\x01\x07\x1c\xf0\x77\x02\xc3\x48\x79\xc0\x01\ +\x07\x1c\xf0\x05\xe3\xe5\x73\xc0\x5f\x08\xcc\xe5\x48\x55\xc4\xfd\ +\x53\xd1\x80\xb9\x9a\x00\x8a\xd9\x6c\xb7\xbe\x28\xcc\xff\x49\xa4\ +\xc8\x1b\x2f\x56\xcc\x24\x4c\xc7\x72\x0a\x74\x15\x13\xed\x61\xb2\ +\x0d\xaa\x4e\x4b\x6a\x3f\x72\x61\x94\x06\x65\xe7\x75\x93\x09\xb3\ +\x91\x75\xe5\xfd\xd1\x02\xe9\xa4\x7c\x6e\x49\x49\x43\x41\x4a\x2c\ +\x30\x2c\xc9\xf2\x2a\x01\xe7\x6a\x5b\xf1\x80\xa6\xce\x25\x02\x71\ +\x78\x12\xeb\x28\x7e\x02\xcd\x9f\x28\x6b\x59\xe5\x85\x76\x7e\xca\ +\x88\x85\x4a\xfc\x01\x32\xc6\xca\x59\x8d\x25\xed\x45\x59\xd1\x9a\ +\xbd\xbb\x46\x66\xd1\x65\xce\xcb\x7c\xc9\x86\xc4\x8c\x1f\x3f\x74\ +\x79\x71\x1d\x7f\x56\x7c\x92\x58\x86\x4d\x2c\xae\xec\x60\xba\xdf\ +\x48\x4b\x39\xc9\x17\x7e\xf0\x83\x77\xcc\x8a\x11\x7a\x6d\x9c\x08\ +\x2f\xc2\xdb\x71\x67\xf9\x08\xe9\xdd\x03\x01\x9f\x7d\xc1\x7f\xab\ +\x79\x61\x42\x5f\xc5\x0d\x07\xfb\xc6\x2a\x7a\x91\xa4\xe7\x25\x12\ +\x3b\x97\xa4\x0d\x1a\x36\x3e\xe4\xd0\xc5\x26\x61\x8f\xa4\x52\x97\ +\x79\xbd\x40\xaf\x23\xf5\x72\x01\x90\x08\xa2\xcc\x1e\xdc\x28\x4f\ +\x1b\x99\x0f\x71\xd2\xce\x32\x4f\x74\x72\x2e\x0e\xc6\xb6\xa1\x70\ +\x3d\x3a\x96\xc7\x6a\x60\x3a\xb5\x54\x03\xf9\xb9\x1e\x1d\x45\xa3\ +\x8b\x3c\xda\x50\x9a\xa4\x26\x41\x20\x8c\x3b\xa6\x72\xe7\xd1\xc3\ +\x4e\xa9\x1b\x84\xb6\x77\x4f\xb0\x42\x11\x21\x0c\x4e\x5b\x13\x25\ +\x1b\x62\x13\xb7\x76\x79\x97\xe6\xb1\x33\x59\x25\x46\xf9\xa0\x13\ +\x49\x98\xb8\x11\x5a\xf2\xcc\x51\x28\x65\xa6\x63\x8f\x1c\xdd\x32\ +\xb1\xcd\x57\xda\x97\xc4\x7a\x3b\x23\x9b\xec\x90\xf1\xd4\xa5\x8f\ +\x63\x07\x1e\x52\xea\x97\xf9\x74\x73\x2d\x65\x63\x22\x2b\xe0\xd3\ +\xf9\xd4\x03\xf7\x7f\xfc\xb8\x11\x4c\x9d\x86\x3e\x4f\x87\xf3\x3e\ +\xfe\x23\x2d\x94\x3e\x6f\x6f\xe2\x67\x1c\x3d\x26\x84\x43\x8c\x13\ +\x69\xc3\x95\xdf\x18\x2f\x6e\x7d\x63\x2d\xaf\x1d\x79\xb8\x02\xfe\ +\xc6\x72\xba\x91\xfa\xb0\xeb\x5c\xad\x51\xee\xb0\xc0\xfb\x81\xf0\ +\x51\x1f\x05\x2e\x45\x04\x85\xb2\x49\x8e\x43\x8c\x85\x6a\x10\x32\ +\xbe\x49\x6f\x9e\x82\xc9\x3d\x1a\xc6\xcb\x17\xaa\x09\x91\x31\x0c\ +\xc9\xaa\x2e\xa3\xb8\xc0\x11\x83\x9b\xe9\xa5\x41\xca\xf7\x21\x54\ +\xe9\x40\xb6\xb4\x85\x97\x7c\x7f\x88\x2a\x28\x8f\xd7\x85\x51\x67\ +\xd3\x0c\xde\xb2\xda\x74\x83\x24\x3a\x9f\x28\x9e\xdc\xb4\x4b\xe9\ +\xa5\xba\x48\x35\xda\xff\x85\xe7\xfe\xe3\xa7\x8a\xe2\x0f\xfe\x4b\ +\x3f\x61\x19\xfc\x0b\x40\xaf\x57\x62\x56\xde\x80\xa5\xdd\xaf\x1b\ +\xaa\x5d\xf7\xb4\x8f\xee\xde\xac\xd7\x6a\xe3\x74\x0c\x06\xf6\x35\ +\x7a\x29\x7b\x49\xc7\xb8\xbc\x49\x1f\xb1\xd9\x4c\x15\xd9\x57\xa5\ +\xf0\x60\x1b\xb6\x3e\x1c\xfa\x78\xb9\x1f\x36\x09\xf2\x15\xc0\x72\ +\xfc\xdc\x12\xbf\x88\xed\xf2\xe6\x22\xdb\x33\x04\x91\x78\xe8\xfe\ +\xe2\xe6\xa8\x3d\xbf\x38\x6a\x4f\xb8\xa0\xfc\xfc\xb6\x3d\xb9\xe0\ +\x89\xb2\x9b\xf6\xf1\xb3\xeb\xf6\xd1\x93\x8b\xf6\xde\xa7\xcf\xda\ +\x8f\xdf\xfb\xa0\xfd\xf5\x8f\xbf\xd7\x7e\xf0\xee\x9f\xb5\x1f\x7f\ +\xf8\x57\xed\x6f\x3e\xfc\xcb\xf6\x83\xf7\xfe\xb4\xfd\xe5\x4f\xff\ +\xa4\x7d\xf7\xc7\x7f\xdc\xfe\xf2\xfd\xef\xb6\xbf\x79\xff\xbd\xf6\ +\xf1\x8b\xeb\xf6\xe9\x8b\x3b\xc5\x5a\xb7\x67\x57\xdb\xf6\xfc\x6a\ +\xd3\x2e\x6e\x57\xed\xf2\x4e\x49\xc3\x4b\x3c\xe0\x1f\x17\xba\x7d\ +\x61\x5b\xe5\xf3\xc3\x91\x37\xaa\x28\x7d\x1a\x3f\x43\x99\xed\xf7\ +\x46\x99\x87\x32\x31\x6e\x47\xb4\x77\x4c\x6c\x55\x84\xe3\xd5\x1c\ +\xc9\xf3\x28\xc9\x19\xd7\xe2\x65\xab\xd8\x4a\x07\xef\x70\x98\x47\ +\x96\x90\x54\x75\xa9\xcf\x8a\xbe\xb5\x31\x14\x9f\x35\xd0\x38\x86\ +\xd6\x3c\x1d\xdd\x3b\x7b\x91\x4a\x67\xbd\x80\x5f\xf9\xd6\x07\xb1\ +\x49\x72\xf8\x94\x19\xe4\x2a\x77\x16\x7b\x00\x77\x21\x66\xf2\xca\ +\x15\xc3\x0d\xcb\x1c\xf9\xd2\x64\x22\x12\xd8\xc8\xde\x75\x8d\x3a\ +\xb8\xaa\xa8\xe8\x60\xe0\x7a\x17\x16\xfe\x32\x44\x62\x7b\x28\xe6\ +\x9c\x08\x32\x56\x30\x19\x87\xd8\x83\xbf\xfb\x38\x1c\x27\xd8\x25\ +\xf6\xb7\x91\x44\xf7\x12\x5f\xba\x9d\xee\xc9\x9c\xea\xf2\x59\xe5\ +\xf8\x89\x28\xb9\x8c\x23\xb9\x7f\xf5\x46\xd3\x13\xb2\x5e\x40\xa6\ +\x84\xc5\xe9\x13\x62\x08\xa8\xe0\xba\x2d\x86\xaa\x84\x55\x46\xd9\ +\x4c\x35\x8a\x22\xba\x41\x62\xb2\xeb\x71\x95\x8f\x45\x04\x4a\x30\ +\x0a\x5f\x25\x1b\xe5\x20\x79\xef\x6c\x25\x9b\xb0\x61\x5f\xe5\xbe\ +\x4b\x1d\x52\xf3\x41\x28\x4b\x5d\xd7\x14\x9d\xc9\x77\xc9\x8a\x07\ +\xf0\x7a\x73\x8e\x46\xe7\xf8\x65\x28\xb3\xb9\x74\x58\xc7\xb9\x1c\ +\x63\x04\x37\xa4\x3c\x36\x40\x33\x6e\xe8\x54\x8e\x31\x2c\x64\x37\ +\x1a\x24\x62\x9a\x35\xd9\x39\x9e\x63\xa8\x04\x67\xda\xa7\x96\x91\ +\xea\x06\xdb\x51\xbb\xe2\xa6\xda\xdd\x5a\x63\xd4\xa6\x5d\x6a\x2c\ +\x7c\x7a\x75\xdb\x3e\x7c\x76\x99\xe9\xaa\x7d\x7a\x7e\xd4\x3e\xbb\ +\x60\x4c\xe3\x4b\x06\x37\xed\xdc\x4f\xed\xde\xb5\x8b\x2b\xbe\x8c\ +\x70\xe4\x9f\xae\x8d\x9b\x7a\x94\x71\xad\xcd\xb5\x72\x95\xa9\xfa\ +\xac\xc8\x55\x15\xaf\x3d\xa9\x03\xd5\xa2\x8d\x34\x90\x64\x48\x6a\ +\x9a\x63\x4e\x5b\x8c\x0a\x29\xc7\xc6\x6d\x80\x2d\x60\x9b\xe4\xcf\ +\x07\xa2\x55\x04\xfa\xa6\xea\x11\x75\x9e\x95\xf5\x12\xbc\xae\xdd\ +\xab\x30\x96\x59\x34\x5f\x60\xdb\xac\x36\xea\xbf\x7c\xd2\x7f\x1f\ +\xa2\x7b\x0e\x38\xe0\x80\x03\x7e\xe3\x51\x33\xac\x03\x0e\x38\xe0\ +\x80\x2f\x1e\xcb\xc9\xd6\x97\x30\xf9\x1a\x43\xbe\x7c\x92\x2b\x6d\ +\x19\xc8\x69\xbd\xd9\xb4\xf5\xf6\x38\x16\x00\xd3\xaa\x6b\x06\xa4\ +\x91\xb4\x95\x5d\xb7\x72\xa1\x08\x4c\x88\x8c\xbc\xec\x8d\x54\x75\ +\x3e\x05\x13\x9f\x48\x81\xcb\xd8\x51\x82\xbd\xc2\x05\xb2\x30\x63\ +\x5e\x4e\x70\xa3\x1e\x88\xd7\xbb\xaa\x1f\x8b\x5a\x3c\xa6\xb2\xe6\ +\xa5\x52\xbb\x92\x88\xc2\x1c\x9e\xb7\x62\x70\x2b\x83\x6b\x12\x2c\ +\xc7\x7c\x6b\x46\x06\xfc\xfc\x13\x4f\xb5\xf8\xfa\x7b\x7a\x8e\x2b\ +\x16\x53\xc9\xb3\x75\xd2\xa6\x2e\xba\x78\x91\x91\xb9\x25\x99\x17\ +\x5d\x89\x97\x6f\x90\x41\xb3\xb8\x52\x1e\x0b\x3c\xf1\xd0\x8b\xd4\ +\x65\xe1\xa9\x85\x14\x14\xfe\x11\x03\x67\xe7\xd8\xe6\xea\x90\x17\ +\x3c\x59\x61\x22\xb3\x75\xce\xd8\x28\xcd\xfa\x33\x52\x5c\xaf\x29\ +\x1d\x37\x1a\xdc\x53\xf1\x2a\xfb\x31\xe5\xa2\x1a\x7d\xf0\x91\xcc\ +\x2b\x45\xf9\x25\x53\x7d\x4c\x06\x1f\xa8\xbc\xea\x3a\xca\x07\xda\ +\xe5\x41\x66\x0e\xe6\xab\xce\x04\xfa\xc1\x46\x04\x8b\xd5\x10\x4c\ +\xf5\xaa\x57\xc9\x63\x89\x3e\x22\xb4\xa6\x5c\x5f\x88\x4c\x6c\x5c\ +\x46\x0a\x14\x9e\x6e\x2f\x2c\x63\xcd\x39\x21\xe3\x4d\x2e\x11\xa7\ +\x6a\x04\x9c\x57\xfc\x05\x4a\xe2\xe6\x13\x25\x8c\xd9\xd8\x27\xa2\ +\x54\x9a\x50\x5c\xf8\x25\x66\x26\x93\x4f\xb4\x41\x91\x66\x3f\x4b\ +\xb4\x44\xc8\x7b\xff\xc0\x9b\x64\xa3\xa4\x82\x5c\x97\xde\x8e\x4a\ +\x6c\x93\x46\x57\xc9\xd2\xd2\x14\x35\xd5\xc5\xa9\x32\x93\xd3\xcb\ +\xc8\x18\xf4\x2b\xc7\x71\x4f\x92\xfb\x55\x79\xbd\x6c\x6f\x03\x55\ +\x55\x89\x43\x19\x1b\xcb\x47\xa4\x2c\x77\x18\xbe\x6c\x27\x3a\xa1\ +\x83\x20\x34\x32\xcc\xf3\x30\x6e\x38\xa5\xa3\xf2\xb8\x59\xa6\xb7\ +\xf2\x10\x07\xef\x73\x1e\x5d\x26\xeb\x93\xae\x18\xe4\x2b\x5f\xf3\ +\x55\x09\x12\x81\x28\x2f\x5e\x88\x4c\x49\xd8\x6f\x74\xa5\x9d\x19\ +\x25\xdb\x6b\xb3\x16\x15\xcd\x8d\xa7\xfa\x48\x6b\x9d\xf7\x75\x2f\ +\xd2\xe3\x62\x8e\x8d\xb6\x77\x1e\x34\xa5\x18\x55\x89\x82\xc5\x51\ +\x46\xa1\x2c\x26\x59\x50\x71\x21\x1b\x7d\x59\x8c\xb1\xe6\x71\x7b\ +\x5b\x71\xad\x74\x1f\xe6\xae\x89\x2a\x53\x79\xf9\x92\x63\x9b\x69\ +\x16\x72\x30\x7b\x15\xa6\x10\x53\x4b\xa6\x4e\x8f\x28\xe6\xca\x90\ +\xd8\x79\x02\xba\x3e\x74\xf8\x0e\xf6\x95\x5e\xb2\x5e\xca\xe7\xc3\ +\xbe\x90\x23\x5e\xa5\xff\x55\xc5\x58\xef\x91\xbe\xb7\x9b\x74\x8c\ +\x1f\x0d\x4f\xa8\x75\xc3\xc5\xb1\x8d\xdc\xfb\x69\x19\x68\xc9\xbf\ +\x04\x63\x7d\xf6\xa2\x0c\x94\x3b\x2c\x1b\xd1\x83\x78\x62\x02\x70\ +\x69\x15\xc8\xea\x54\xad\x2a\x9f\x88\x79\x04\x8b\x3d\x2e\x4f\x98\ +\x95\x20\x83\x3a\xdf\x3c\x07\xb9\xb9\x6b\xfc\x7f\x2f\x4f\x69\x9c\ +\xf3\x33\x68\x17\x77\xed\xb3\x17\x77\xed\x93\x73\x12\x4f\x69\x5c\ +\xb5\xf7\x3f\x7b\xde\x7e\xf2\xc9\x47\xed\x87\xef\xff\xa4\xfd\xd5\ +\x4f\xbf\xdf\xfe\xfc\x87\x7f\xd9\xfe\xfc\x47\x7f\xd5\xfe\xfc\xc7\ +\x7f\xdd\xfe\xea\x67\xdf\x6b\xdf\xff\xf0\x47\xed\x67\x4f\x9e\xb4\ +\xcf\x6e\x6e\xda\x0b\x9e\x72\x53\x9c\xf3\xeb\xd6\xae\x6e\x57\xed\ +\x5a\xa5\xe7\xcc\xc6\x17\xaf\xb9\xd8\xcd\x08\xe2\xa1\x4f\x75\x30\ +\xef\x24\x1b\xe5\x71\x93\x2d\xc6\x3f\xc6\x90\xb0\xd7\x0b\x5e\x4e\ +\xf8\xc5\x7e\x8b\x18\x75\x5e\x72\xf1\x9a\x18\xd8\xb9\xc1\x4a\x1e\ +\x4a\x95\x6c\xe5\xf9\x55\xd8\x96\x97\x69\x9f\xcb\xd3\x98\xd6\xfb\ +\x4a\x84\x7b\x11\x81\x0e\x9c\x1a\x1b\x5d\x74\x08\x33\x81\xca\x0b\ +\xe2\xa3\xa0\x80\x0f\xbc\x31\x01\x6c\x32\x95\x3d\x09\xd6\x9f\xc9\ +\xca\x63\x04\xd7\xdb\x4c\xda\x60\x4b\x4a\x3a\x0c\x17\x48\x19\x7e\ +\x26\xb5\x29\x3f\xc7\xca\xb8\x1e\x9a\x52\x5e\x3e\x65\xe3\xf1\x1b\ +\x5d\xb0\x56\xbb\xcc\xb4\xd1\x7e\x72\x67\x23\x1f\x80\x1a\x58\x0c\ +\x23\xe7\xee\x9f\x9f\xc5\x3b\x4e\xe2\xcb\x6f\x0e\xd9\xf1\xc6\x2d\ +\x5d\x5d\xa7\x72\x27\x76\x92\x00\xce\xbc\xdb\x23\x60\xaa\xc0\xc5\ +\x3a\x80\x69\x37\x7c\x42\xe9\x85\x5e\x56\x96\x17\xca\x4a\x03\x99\ +\xac\x89\x4e\x17\x46\x41\xd0\xd1\xbe\xb9\x7c\xea\xab\x92\x93\x8f\ +\x36\x40\x7c\xf6\xa3\x73\xfa\xdd\x7d\x5f\x76\x95\x03\xe8\x4a\x85\ +\x25\x5f\xd8\x67\x97\xf0\x31\xa0\xbc\xfa\xa0\xf7\x9b\x54\xd2\x05\ +\x69\x45\xb4\x21\x75\xbd\x1d\xca\xec\xe2\x4e\x84\xaf\xb3\x4d\x5b\ +\x4e\x4a\x1b\x88\x57\xc6\xfe\xac\xe3\xcc\xe7\x2e\xb9\x32\x9b\x09\ +\xd8\x33\x06\x50\xa7\x1e\x85\x0d\xb9\x7d\xc9\xf5\xd2\xe4\xae\x6e\ +\xa6\xc5\x78\x12\x3f\xf9\x8a\x5f\x3c\x1d\x86\x0c\xdb\xb8\x91\x56\ +\xe3\x0c\xcf\xe4\xc3\x5f\xdf\xae\xdb\x0d\xf9\x9d\xf2\xa3\xb5\xe4\ +\xeb\xb8\xd1\x26\x3b\xff\x1c\xe4\xe5\x55\x3b\xbf\xb8\x6a\x97\x97\ +\x97\xed\xea\xfc\xaa\x5d\x8b\xbf\xbd\xbe\xf4\x7f\x69\xfb\xbf\xb6\ +\xb5\x5e\x3b\xe2\x3f\x02\x94\x88\x4a\xc5\x68\x22\xbb\xca\xcd\x23\ +\x55\xc5\xc1\x40\x1a\xd4\x0d\x87\xa4\x71\x1b\x51\x37\x03\x4d\x2f\ +\x95\x19\x6c\xdc\xbe\x1e\x16\x81\xc4\x8e\x12\xe8\x8a\x36\x45\xdd\ +\x17\xff\xf3\x97\x7c\x1f\xaa\x0b\x0c\x8e\x1b\x75\xe5\x6a\xb5\x55\ +\xe2\x4b\x32\x29\xdf\x87\x9d\x3e\x39\xe0\x80\x03\x0e\xf8\xcd\x83\ +\x3e\x75\x0f\x38\xe0\x80\x03\xbe\x24\x8c\x93\xad\x2f\x62\xd6\xf7\ +\x0b\x61\x5e\x81\xa3\xcd\xa6\xdd\xac\xeb\x27\x1f\x55\x51\xa9\xe7\ +\x73\x43\x71\x25\xa8\x15\xc7\x0c\xc9\x2f\xc5\x23\xa4\xb3\xda\x71\ +\xa6\xe5\x5b\xc7\x8e\x60\xc4\x4b\x95\x0b\xf5\xae\xed\xac\x5a\x2c\ +\x0a\x92\x2c\x4b\xf2\x48\x7a\x89\x30\x6d\xa5\x37\x81\x61\x41\x67\ +\xbd\x5f\xc9\xf9\x9d\xb9\x1d\xb9\x90\x1c\x79\xb0\xe4\x5c\x3c\x96\ +\xd4\x77\xd5\x42\x67\xb9\x2a\x63\xdf\x5c\xa1\x54\xdd\x7a\x9d\xd5\ +\xdf\xd0\x7d\x71\x27\xc6\x6b\x59\x4b\x59\xc4\x29\xef\xab\x1c\x56\ +\x7e\xb0\xa1\x83\xf7\x05\x1e\xad\xea\xfa\x53\x66\x68\x2c\x8b\x6f\ +\x34\xc6\x4f\x3b\xc2\x87\xcc\x09\x7f\x56\x82\xe4\x19\x03\x9a\xcc\ +\x39\x65\x25\xa0\x5d\xf3\x51\x28\x58\xe6\x76\x66\x1e\x02\x27\xff\ +\x94\x22\x24\x9f\xba\xc3\x8d\xb5\x10\xd2\x1b\xe8\x23\xc1\x87\x1e\ +\x32\xf9\x4c\x1c\xaf\xbc\x82\x0f\x78\x61\x9c\x72\x9b\x77\x5d\xc9\ +\x0b\x69\x93\xf4\x7c\x5b\x29\x30\x93\xbb\x2e\x93\xae\xc4\x51\x97\ +\x09\x98\xcc\x16\x9d\xa2\xa7\xfa\x54\x2a\x2c\x8f\xc9\x51\x97\xdc\ +\x4c\x94\x65\x55\x3d\xc8\x06\xa3\xbe\x2b\xa4\x2f\xbb\x6e\x62\x04\ +\x1f\x7d\x15\x98\x28\x20\xce\x02\x6d\x7c\xb0\xe5\xcd\xcc\xd7\x45\ +\xf9\x8e\xa9\xc8\x29\xeb\x39\x94\x6f\x48\xba\x3d\x94\x54\xc6\x69\ +\x51\x86\xe8\x69\xdc\xd8\xb1\x1c\x3f\x1c\x47\x88\xba\x98\x78\x29\ +\x07\x84\xb6\x4c\xb4\x64\x6e\xf7\xd4\x49\x4e\x83\x6b\xc4\x77\xbb\ +\x49\x29\x16\x39\x58\x05\x65\x7d\x26\x04\xae\x47\x27\x22\x49\x67\ +\xdf\xd8\x58\xc6\x16\x40\x4d\xc7\xb8\x32\xca\x4a\x9e\xb3\x2c\xec\ +\x42\xe7\x1b\x24\x3e\x01\xa5\xd3\x39\x6a\xda\xe7\xe4\x90\x38\x87\ +\xed\x03\xcf\xb9\x0c\x09\x4d\x96\xf6\x3e\xe7\xe7\xc9\xe7\x3a\xb6\ +\x79\xce\xf3\x22\x06\xa0\x0e\x98\x74\x11\xd5\xe0\x15\x83\x50\xa0\ +\xb7\x2b\x5e\x16\xe9\x45\x0b\xa2\x6b\x52\x2f\xbb\x78\x52\x8f\x71\ +\x70\xad\x5d\x07\x5d\x37\xd5\xa0\x09\x55\x11\xa8\x50\xa1\x0a\x12\ +\x44\x86\xbe\x30\x1d\xc5\x65\xe5\xdc\xc1\xe6\xb6\x33\x7d\x62\xa4\ +\x8d\x97\x2a\x33\x60\x25\x63\x60\x94\x05\x95\xbc\x3b\xee\xf5\x81\ +\x75\xf4\xbd\xfc\xed\x1a\xdc\x0c\xb9\x33\x22\x74\x16\x98\x7d\x96\ +\x1a\xe9\xb8\xe8\xcf\xcf\x3d\xf9\xb2\x9a\xf4\x79\x22\xec\x04\xdb\ +\x87\x32\x7a\x2d\xe3\x39\x70\xc9\xa6\x9b\x1e\x43\x94\x1c\x8c\xf4\ +\xaf\x3d\x76\xfb\x89\x23\x7f\xbb\xd9\x4a\x25\x4a\xea\xb0\x98\xec\ +\xf6\x37\x3f\xf4\xe8\x4a\x3f\xda\x75\x6f\x11\x96\x7b\x23\xc6\xef\ +\x12\x16\xf6\x7a\x2e\x6c\x86\xf1\xe5\x73\x62\xaf\x07\xe7\x5b\x81\ +\x22\x93\x1d\x6d\x97\x7e\x75\x7a\x90\x41\x73\x31\x99\xff\x50\xe4\ +\x49\x0d\xff\x04\x1a\x3f\xfb\x28\xe2\xd9\xc5\x55\x7b\x7a\x79\xd9\ +\x3e\x3e\xbf\x68\xef\x3d\x7d\xd6\xfe\xe6\x83\x4f\xda\x0f\x3f\xf8\ +\xa0\xfd\xf0\xfd\x0f\xdb\x8f\xde\xff\xb8\xbd\xfb\xd1\xb3\xf6\xe1\ +\xd3\xeb\xf6\xec\x9c\xff\x23\x3a\x6a\x2f\xf8\x0f\x22\x7e\xce\x31\ +\xe3\x73\xe3\xdf\x73\x0e\xf3\xb9\x4f\xbc\x6f\xf8\x29\xb6\xb8\xa8\ +\xcd\x4f\xe9\xc6\x53\x6b\x0c\x83\x9c\x3f\x4a\xe8\x94\x18\x47\xc3\ +\x27\x12\x1b\x8d\xae\xd2\x45\x3c\x4e\xb2\x18\x92\xad\x74\xaa\x6d\ +\x5a\x3a\x1e\xc2\xc8\xe2\x05\xd3\xbf\xbc\x94\x9e\x13\x14\x97\x3a\ +\x0e\xd2\xa0\x69\x07\x3d\xb9\xe8\x59\x54\x5d\x9e\x7c\xb7\x19\xe4\ +\xde\x4f\x95\x40\xe6\xf8\xaa\xff\xcd\xcf\x62\x0d\xe8\x9f\x89\x65\ +\x53\x9f\x73\x62\xba\x69\x11\xe4\xcb\x24\xe0\x3b\x7e\x76\x8c\xba\ +\xa2\xfb\xb1\xc4\xe7\x84\xf6\x1d\x9f\xf1\xdd\x06\x24\xed\x4c\x9b\ +\x1e\x4b\xc8\xf6\xd1\x47\x71\x84\x97\xad\x64\xe8\x38\x08\x6c\x9f\ +\x72\x03\x5d\x50\x54\xaf\xcf\xc9\x67\x36\x00\x65\xe8\xfc\xf9\x67\ +\x10\x2c\xe9\x6e\x0e\x51\xe5\x07\xe2\xd8\x03\x94\x2f\x1d\xbc\x0b\ +\x53\x3e\x99\xcd\xd0\x5d\xd0\xdb\x9e\x24\x86\xb2\x39\xf6\xba\x4c\ +\x29\xd1\xcb\x71\xcc\x0c\x4c\xd6\xfb\xd4\xcc\x2e\xbf\x83\x85\x7c\ +\xec\xa0\x51\x6e\x1e\x0c\xb2\x8e\x85\x6d\xe7\x97\xb6\xa3\x6c\xd0\ +\x11\x3b\xdb\x63\xa9\xcd\xbc\x89\xfe\x33\xa6\xc6\xc7\x79\x11\xc7\ +\xa4\xed\x8d\xd0\x4f\x56\x20\x62\x44\x4a\x28\xa0\xa7\x3f\x7a\xc5\ +\x18\x60\x91\xfd\x48\xde\x5a\x90\x63\x82\xc8\xca\xd9\xcf\xbe\x79\ +\x66\x2b\xd1\xe6\x47\x9d\xca\x29\x5b\x92\x82\x93\x77\x24\xe3\x43\ +\xb3\xdb\xc8\xc7\x9f\xdb\x31\x26\xb9\x5e\x22\x6e\xf9\x4f\xc9\xcb\ +\x6b\xdf\x4c\x23\xdd\x5c\x5c\x4b\xae\x5c\xe3\x08\x3f\xf3\xed\x2f\ +\x44\x11\x92\x7e\x72\x13\x89\x2d\x82\x8c\xc0\x2e\x44\x34\x40\xef\ +\xb2\x4b\x30\x52\xa9\x2a\x09\xb6\x60\x60\x4b\x64\xcc\x18\x30\x46\ +\x4a\x44\xc0\x05\xf6\xd9\x65\x2e\xec\xf3\x00\x3b\xc5\x09\x61\x3b\ +\xf7\x58\x72\xe6\xef\x0b\x9a\xf0\x61\x34\xf4\xcb\xcd\x0d\xf3\x53\ +\xcd\x57\xb9\xa1\xf6\x32\xbc\x22\xee\x01\x07\x1c\x70\xc0\x6f\x02\ +\xf8\x0c\x3a\xe0\x80\x03\x0e\xf8\x72\x30\x4e\xb6\x76\x66\xa3\xbf\ +\x38\xc6\x90\xd3\x54\xf0\x3e\x8c\x85\xf3\x1f\x6a\xdb\xd6\x4e\x37\ +\xa2\xb9\xa9\x16\x2f\x6b\x64\x36\xc6\x35\x66\xcc\x80\xa1\x40\x5f\ +\xa8\x75\x3e\x89\xed\x66\x61\xa4\x92\x77\xec\x08\x28\x7f\x51\x81\ +\x3d\x36\xc6\x28\xcf\x15\x65\x6c\x71\x1c\x79\x10\xcb\xdc\x49\x23\ +\x24\x11\x6b\x46\x6d\x72\xd1\xb6\x84\x2f\xca\x24\x0d\x46\x2b\x5c\ +\xbc\xfc\xe9\xc2\xd4\x44\x50\x88\xcc\x55\xbe\xca\x23\x52\x2c\x97\ +\xe6\x98\xf8\xa1\xde\x12\xb2\x4c\x83\xf6\x37\x08\xe9\x5f\x2e\xe0\ +\x28\x21\x0f\x7e\xba\x80\x6e\xdb\xea\x7c\xeb\x58\x8c\x99\x54\xe2\ +\x02\x0e\x8b\x2f\x16\x8d\x61\xd7\x5f\xc5\x13\xcb\x36\xe1\x64\x9f\ +\x41\x1f\x6b\xb2\xa0\x3b\xa6\xe6\xb9\x9f\xbc\x28\xa1\xde\x6a\x7f\ +\xf4\x5a\xa4\xd8\xa7\xc5\xe7\xc7\x2e\x59\xbf\xb1\xa6\x34\xd0\x75\ +\x81\xbd\xc7\x40\x0e\x45\x39\x16\x61\x93\x79\x5a\x4d\xc0\x3e\xf3\ +\x8e\x5d\x3b\xe8\x49\x32\xe6\x41\xbb\x2d\xa0\x72\x23\xf4\x93\x2a\ +\x78\x57\xc6\x15\x1a\x65\xee\x96\xa0\x67\x40\x17\x7a\x73\xd1\x90\ +\x60\x9c\x97\x22\xb2\xd1\x16\x22\x2c\xba\xb2\x6f\x27\x6a\xc2\xb0\ +\xa7\x52\xf5\x12\xbd\xe0\x0b\x02\x49\x03\xf8\x29\xf6\x12\x92\xce\ +\xea\xb6\xcf\x0e\x49\x1e\x17\x7b\xa1\xf8\xd9\x6f\xc0\xd6\xda\x70\ +\x4d\xc1\xd2\x3a\xb9\xba\x89\x2d\x92\x0d\x5f\x27\xec\xeb\x8f\xb6\ +\x9c\x61\x43\x5b\x22\xd9\x4b\x1b\xe8\xd0\x8e\xb0\x76\x22\x0d\x11\ +\xaa\xb4\x2f\x9e\x58\x56\x36\xdd\x20\x11\x76\x3e\x30\x29\xdf\xf5\ +\x55\x6e\x33\x74\x49\x0e\x70\xf5\x0c\xc5\xb6\x3e\xf2\x50\x40\x47\ +\x2d\xe3\x46\x99\x84\xd6\x71\xfe\x11\x8f\xf3\x8f\x2c\xcf\x43\xd3\ +\x3a\x5f\x7d\xf5\x25\x78\x36\xd6\x7b\x6c\xe8\x03\x80\xe3\x79\x40\ +\xe8\xb6\x99\x80\xc4\xc8\x7d\x11\x9a\x72\x2d\x66\x13\x36\x34\xc9\ +\x35\x0d\x82\x5a\x86\xad\xe9\x4a\xf1\x8a\xd3\x5a\x12\xde\xb9\x7f\ +\x7c\x6a\x6b\x93\xe2\x90\xf3\x4a\x1b\xca\x81\x8f\x0e\x8c\x32\x02\ +\x94\x9f\xf9\x88\x92\x65\x1d\x3a\xc4\xb8\xec\xd4\xa5\x68\x2f\x16\ +\x11\x13\xf7\x59\x4f\x98\xfc\x16\x14\xae\x4a\x63\x8d\x5c\x95\x02\ +\x46\x3b\x85\xa6\xb5\xe5\x0b\xa5\xed\x07\x99\xc8\x08\x17\x32\xf7\ +\x1f\x1d\x6b\x3b\x8b\xb4\x8f\xe3\x27\xa8\xea\xa6\xe5\xeb\x01\xe7\ +\xb2\x7d\x5d\x9f\x3d\xc8\x3a\xcc\x30\xd4\xcd\xf8\x05\xc2\xff\xd2\ +\xb1\xaf\x3d\xc0\x6d\xd8\xdf\x10\x6e\x18\xfb\x0b\x2b\x9c\x63\x19\ +\x60\x6e\x89\x2c\x8e\x74\xcb\xc5\x8e\x7a\xce\xab\xa9\xd8\xa4\x9c\ +\x85\x15\xdb\xd2\x97\xff\x3e\x44\x09\xbb\x98\xc9\x47\x72\xaf\xf9\ +\x5c\x38\x15\x15\xf2\xfb\xf9\xc4\x3d\x75\x03\xfd\xb0\xce\x0f\x86\ +\xf8\xdc\x39\x8a\x9f\x60\xbc\xe3\xe6\x1a\xff\x4b\x74\xdb\x2e\xd5\ +\x8f\xcf\xae\xae\xda\x67\xfc\xa7\x9a\xf2\x4f\x2f\xaf\x9d\x3f\x51\ +\x7a\x7a\x75\xd3\x2e\xae\xee\xda\xc5\xe5\x6d\xbb\xba\xb8\x6d\xd7\ +\xfc\x77\x20\xfd\x4e\x6c\xf9\xc6\x93\xb4\xec\x0b\xca\xe0\x82\x39\ +\xe3\x79\x0e\x7f\x92\x38\x47\xa6\x3c\x9e\x2e\x09\x9e\xdc\xb6\xce\ +\x93\x1e\x86\x4d\x36\x8c\xaf\xcc\x8e\x7a\x8c\xd2\x6b\x13\x63\xb3\ +\x68\x97\x2a\xb9\xb6\x7e\x21\xa4\xa3\xf5\x86\xf7\x16\x99\xe9\x80\ +\xe5\x1a\x63\xe7\xfb\x23\xfa\x66\xb2\x1a\x41\xbc\xc1\xb8\x3f\xf5\ +\x5d\x29\xd1\x9d\x47\xf9\xa0\xef\xf2\x45\x52\xdb\xa6\x78\xa0\x72\ +\xe0\x0f\xbb\xd0\xdb\x44\x9b\x14\x19\x2e\xd3\x0a\x88\x00\xf1\x46\ +\xbe\x23\x65\xf8\x38\x29\x90\x45\x61\xef\x6e\x1a\x21\x3e\xbe\xdc\ +\x11\x7d\x03\xd8\x3a\x7c\xa2\x1f\xeb\xb2\x85\xae\xcf\x1f\xdf\x74\ +\x08\x6b\x0e\x13\xed\x20\xd1\xf9\x39\x4f\xff\x97\x36\xb6\x41\x39\ +\xe7\xad\xc4\xfe\x0e\x39\x95\x22\x9f\xd0\xe7\x2d\x69\x0f\x5c\xf5\ +\x08\x3e\x00\x1e\x83\x65\x62\x3b\xec\xeb\x10\xa5\x2d\x50\x5e\xb4\ +\x8c\xa8\x8b\xb9\xde\xa6\x84\xf9\x80\x2d\x86\xfd\x32\x58\x19\xd5\ +\x7f\x73\x2c\x64\x3d\x1e\x79\xa5\xc2\x3e\x19\x78\x5d\x59\x61\x57\ +\xee\xba\x55\xdf\xb9\x53\x92\x1e\x30\xed\xcf\xc9\xc4\xa8\x3a\xe3\ +\x52\xb2\xee\x4b\x1f\x07\x43\x3e\x1e\x5f\x3e\x7f\xad\x0b\x39\x14\ +\x87\x49\x9c\xd7\xb1\x6f\x7c\xce\x93\x1c\xa7\x9e\x48\x0b\x5b\x52\ +\x10\x69\x33\xd8\xd9\x9f\x9b\x70\xa4\x5b\x7d\x56\xdc\xe4\x0d\xb9\ +\xc1\xd7\xfe\x05\x31\xb1\x2c\x8a\x63\x17\x1a\xb8\x16\x1e\x6b\x14\ +\x59\x01\xe0\x89\x83\x43\x35\x75\x6c\xb2\x8a\x55\x12\xe5\x82\x90\ +\xec\x07\x76\x13\x61\xcf\x60\x95\xac\x9a\x36\x13\x6c\x32\xc6\x1c\ +\xe9\xcf\x8b\x45\xec\x01\x55\xa3\x42\xa7\x77\x89\x7b\xc2\x84\x7e\ +\x8c\x31\x71\x73\x29\xfc\x0d\x4f\xff\x1d\x6d\xda\xda\x3f\xe3\x9c\ +\xe2\x7b\xed\x0f\x38\xe0\x80\x03\x7e\xb3\xc1\x34\xe3\x80\x03\x0e\ +\x38\xe0\xcb\x01\x13\xbb\x4a\x5f\x12\x5e\x7f\x6a\x37\x58\xaa\x3e\ +\xeb\xcd\xb6\xad\x4e\x4e\x34\xbf\x8e\x85\x43\x88\xf7\x57\x76\x26\ +\x91\x6d\x58\xe5\x62\x4e\xa8\xc8\xe6\x07\xe3\x5a\x98\x94\xc1\x2c\ +\xce\x80\xdd\x8b\x7f\xc1\xb3\xad\xd8\xbf\x08\xb2\x16\x7b\x62\x65\ +\x1b\x52\x11\xf5\x0d\x29\xf2\x65\xad\x40\xc5\x28\x7d\xd4\x7d\xea\ +\x0d\x53\x32\x0a\x4e\x84\x69\xbd\x24\x60\xe1\x83\xff\x18\xa3\x98\ +\x2a\xdb\x40\x91\xfb\xc5\x17\x5d\x50\x59\x1d\x44\x5c\xc8\x99\x64\ +\xf6\x45\xa8\x55\x55\xdd\x18\x0b\x3f\x69\x58\x78\x79\xf1\x15\xb6\ +\x96\x39\x85\x8d\x13\x2f\x55\x1a\x93\xd9\xba\xcb\x29\x88\xd0\x06\ +\x5c\xbd\x20\x05\x1a\xe6\x96\x48\x98\x17\x72\xa3\xb1\xa6\x21\x27\ +\xdb\x02\x42\x7a\x05\x32\x6c\x4d\x66\x62\x53\x71\x1c\xc3\x32\xf5\ +\x1e\xb2\xfe\xb1\x6d\x69\x66\xd8\x40\xa4\x8c\xdc\x2c\x79\xd2\x46\ +\x11\x5d\xa0\xba\x41\x67\x0d\x21\xcb\xc7\x8b\x4a\x52\xa0\xa8\xc8\ +\xa3\xbc\xa9\x8f\x22\x11\x2b\x23\x99\x76\x1c\x63\x8a\x63\xc8\xa8\ +\xe2\x8c\x28\x2e\x16\xb6\x9d\x0b\x01\xac\x92\xe3\xa7\xde\xe5\x77\ +\x20\x2c\x81\x0d\xb4\x4d\x27\xd7\xa3\x64\x42\x96\x1f\x92\xdd\xbc\ +\x2b\x95\x88\x38\x2b\x06\x94\xde\x08\xa6\xb3\x7b\xe0\xbe\x4a\x9b\ +\xbd\x76\xd5\xe7\x4e\x2a\x4f\x05\xba\xcc\xbe\xc1\x2b\x12\xdb\x29\ +\x4f\xd0\x3f\xd1\x69\x69\xd5\xd9\x44\x32\x84\xf2\x05\xd6\x82\xe8\ +\xce\x8a\xb0\xd3\x74\x7c\xb9\x14\xf9\xd4\x5e\x45\xdb\xcd\x41\x88\ +\x85\x41\x4a\x1b\x86\x0b\x58\xae\xbd\x64\xfd\xbc\x28\x98\x8d\xff\ +\x67\x40\xec\x50\x3a\x4f\xb1\xf0\x4d\x32\xb7\x49\x52\x25\xce\x51\ +\x7e\xd6\xd5\x57\x4d\xea\xea\x2d\x74\x9d\xe7\x9c\xf3\xb8\xf8\x3c\ +\x87\x46\x16\x7e\x75\x63\xad\xc6\x81\xf0\x45\x47\xac\x2c\x33\x65\ +\x84\xb6\x0d\x3a\xc7\x55\x0e\x44\xfb\x02\x75\xa1\xfa\x1a\x39\x79\ +\x25\x99\xd4\x39\x3f\x3f\x4b\xa3\x2f\xfd\x33\x8f\x3c\xb1\x5b\x0e\ +\x06\xb1\x23\x77\x1a\x8a\x09\xec\x08\x66\x70\xb5\xaa\x6e\x3d\xe6\ +\x7e\xd8\x6a\x16\x2e\x1c\x26\xd1\x4c\x29\x4c\xe7\xf3\x2e\xb2\x30\ +\x65\x7d\xff\x2d\x70\xaf\xef\xfd\x41\xad\x72\xe4\x59\xcc\xa0\x8a\ +\xcf\x92\x05\x0a\x27\x97\x46\x7d\xc0\x4f\xe8\xb9\xe7\x37\x1b\xc9\ +\xc3\x2a\xb3\x97\xa0\x0c\x5e\x69\x78\x3f\xa6\x8a\xde\x8f\xd7\xb1\ +\xf9\x35\x06\xc7\xf7\xc9\xf6\x54\x5b\x9d\xd3\x9c\x5f\x29\x9f\x9a\ +\xbd\x2b\xd9\x87\xd8\x0b\xb2\x49\xb3\x5d\xff\x80\xb9\x7b\x76\x19\ +\xba\x51\x35\xd5\x66\x81\x85\xff\x9c\xbd\xc7\xe7\x1e\x79\xd4\xe7\ +\x3e\x9f\x09\x55\x17\xb6\xa6\xd2\x85\x53\x98\xd1\xc4\xf3\x10\xd1\ +\xfc\x27\xed\xb5\x92\x87\xa8\xb6\x6e\x37\xb7\xf1\xbf\x43\x37\x5c\ +\x84\x16\x7d\xd7\x65\xe5\xec\x00\xca\x86\xf1\x24\xc5\xfd\xe9\x12\ +\xa7\x23\xf3\x4e\xe9\x1a\xb4\x52\xda\xc4\x9c\xc8\xee\xe9\x87\xbf\ +\x7a\xa7\xeb\x43\x47\x7f\x69\x64\xed\xe7\x18\x74\xf7\x77\x0c\xac\ +\x86\x3c\xe3\xe2\xe8\x5c\x88\x58\x65\x83\x00\xd9\x60\x80\xb1\x1a\ +\x14\x45\xd8\x38\x64\x43\x16\x84\x12\x7e\x96\x75\x85\x50\x74\xe6\ +\xd8\x98\xce\xf4\xb2\x01\xa2\xeb\xd2\xce\xbc\x92\xeb\x07\x5d\x48\ +\xba\xea\x86\x1d\x0f\x76\x58\xcc\x26\xf5\xfb\x80\x4f\x57\x0f\x76\ +\xc4\xaf\x2f\xc9\x48\x0e\x55\xfd\x1e\x4f\xe2\xa8\xc7\xfa\xf1\x96\ +\x7e\x62\xa1\x48\xa5\xe9\x0c\x09\xb7\x92\x55\x5b\x88\xe1\x8c\x33\ +\xb8\x4c\xa1\xf6\x00\xbb\x32\x2a\xeb\xea\x07\x32\xd7\x27\xf8\x38\ +\x96\x23\x26\x32\xbb\x8c\x48\xb7\x39\xca\x3a\x41\x6c\x98\x8a\x6b\ +\x1a\x85\x37\x46\xaf\xeb\x42\x0e\x8d\x1b\x7d\x36\x07\x36\x93\x5d\ +\x50\x73\x59\xa0\x78\xe5\x56\x93\x57\x4a\xf9\x0e\x90\x2d\xe5\xfb\ +\xec\x5f\x8f\x1e\xb9\x39\xd0\x0c\x0d\xa3\x9d\xca\x62\xdf\xe4\xb9\ +\xaa\x73\x7a\x36\xd7\x13\xe9\x7d\xe2\x84\x03\x76\xc3\x99\x07\x9d\ +\x71\xc8\x7d\xce\x17\x4d\x1c\xf1\xfd\xdc\x87\xd6\xe0\xe1\x71\xe5\ +\x86\x32\xe2\x8b\x00\x8c\x4b\x1e\x4b\xac\x27\x7e\xc4\x08\x5f\xd1\ +\xc8\xe4\xe7\x44\x1c\xd3\xcc\x94\xb2\x6c\x8c\x33\x7e\x38\x46\xb9\ +\x51\x82\xb6\x6a\xa0\xe7\x55\xca\xb9\xe7\x6c\x5b\x78\xa1\xac\x8a\ +\x0f\x4d\x70\x6c\xd1\x8e\xa0\x88\x25\x46\x51\xd5\x65\x2f\x52\xde\ +\x4f\xbf\x19\xf6\x04\x1e\x30\x69\xef\x0b\x3e\xd9\x74\x8b\x9d\x90\ +\x68\x26\xff\xa2\x72\x4f\xce\x70\x7f\x8c\x09\xd1\x56\x6d\xba\x4d\ +\xcc\x85\xb7\x6b\x7d\x9e\x1f\xdd\xf3\x84\x5a\x05\x7e\x49\xdc\x03\ +\x0e\x38\xe0\x80\xdf\x14\xd4\x9a\xff\x80\x03\x0e\x38\xe0\xd7\x0a\ +\xcc\xe3\x98\xd3\x55\xbe\xc4\x3e\xd9\x88\xd5\x66\xad\x09\xe3\xb1\ +\xff\xac\x9d\x85\x85\x31\x4c\x0e\x43\x32\x2d\x6a\xc8\x2b\x55\xf0\ +\x59\x19\x62\xcc\x0f\xc2\xd9\x84\xbb\xf4\x23\x1c\x2c\x4b\x50\xe6\ +\x8b\xce\x89\x89\x7a\x0d\xec\x04\x7e\x19\xd2\x98\x02\x5c\x08\x05\ +\x17\x1b\x2f\x83\x45\xcb\xa2\xfe\xa1\xa9\x6d\x78\xdc\x5f\xf4\xa0\ +\xef\x46\x21\x8b\x34\x4d\xff\xc9\xa7\x9e\x16\x97\x0b\xae\xc9\x11\ +\xdb\xa0\xa7\x6d\xca\x82\xec\xf6\x7e\x59\x96\x42\x2e\xb0\x2b\xab\ +\x27\xd3\x60\xbc\xd0\xf6\x62\x4e\x32\xff\xfc\xbe\x04\x24\x2e\xbc\ +\x3b\xcb\x0b\xf0\x83\x4f\x2c\x3e\x13\x22\xa2\x05\x42\x55\x9b\x7d\ +\xe7\xfd\xa7\x8f\x55\xe7\xa9\x70\x56\xfc\x6a\x32\xcf\x1c\x4c\xfd\ +\x3e\xa5\x5e\x16\x50\xbc\x1e\xde\x1a\x11\x64\x5e\x78\x5a\x18\x6e\ +\x89\x20\x07\x41\x49\x9c\x8d\x72\xc1\x6d\x41\x96\x75\x30\x19\x36\ +\xd3\x76\x48\x21\x94\x1b\x75\x82\x1f\x74\xae\x0b\x89\x2c\xe3\x75\ +\x14\xad\xbc\xe2\x8f\xea\xd1\x36\x1b\x1f\xf5\x21\x05\x17\x20\x4f\ +\x7a\x2c\xdb\xa0\x4e\x49\xee\x83\x63\xa5\x8d\x52\xf6\xa4\xb7\xdd\ +\x2d\x4c\x16\x40\x1f\xaf\xb9\xf2\x3e\x7a\x17\xd5\x57\xd1\x34\x6c\ +\x27\x7b\x53\x16\x49\xeb\x0b\x08\xbd\xb4\xdc\x82\xa2\x8a\x2f\x88\ +\x9f\x4c\xbc\x5f\xaa\x8c\x12\x07\xaf\x6d\xd6\xdd\x17\x2c\xd0\x2b\ +\xb3\x04\x1e\x82\x19\x21\x75\xb0\x9a\x3c\x3d\x23\x33\x20\xed\x33\ +\xc2\x7a\x49\xc9\x2b\x19\xd4\x41\xf5\x11\xef\x73\x4c\xe7\x9c\x9f\ +\xe4\xec\x76\x12\x00\xd1\x6e\x3a\xe4\xa8\x43\xcd\x79\xe8\xf3\xf2\ +\xb6\xdd\xde\x70\x5e\x2a\x65\xce\xff\x10\x59\x8f\x93\xed\x94\xdb\ +\x37\x65\xce\xc9\xd8\x44\x0c\x0b\x80\xfc\x4d\xdb\x87\x84\x5f\xca\ +\x8a\xd7\x26\xba\x63\x6a\xb1\xbb\x26\xd3\x08\xcb\xb4\x09\xdd\xb4\ +\xdd\x87\xe8\x95\x44\x16\xe5\xe2\x40\xc6\x78\x15\xaa\x19\x81\xe1\ +\xb8\x7a\xa9\xf3\x52\x39\x0b\x22\x28\x4e\x37\x09\x62\xe9\x31\xe3\ +\xcd\x94\x24\xf7\xeb\x80\x51\xad\x3d\x11\xc4\x12\x76\x9a\xeb\xe6\ +\xb6\xa2\x93\x25\x14\x3d\x07\x1b\x9f\x95\xe2\x52\x37\x3d\x79\x2c\ +\xf0\xad\xea\xaa\xd6\xbd\x78\xa5\xc1\x17\x87\xac\x63\xcf\x7f\x1d\ +\x70\x5f\xf7\xf4\x36\x8c\x06\x12\x8a\xdd\xac\x37\xca\xd8\x3f\x62\ +\xfa\xc1\x50\xf9\x32\xa0\xad\x5e\x8e\xe5\x01\xb5\x44\x3f\x58\xe7\ +\x91\x46\x0e\x7a\x38\xdb\x76\x90\x43\xe2\xe7\x43\x34\x77\x6a\x5a\ +\xa1\xea\xf3\xd2\x6a\xcf\x6d\xc8\x7a\xd2\x86\xc4\xb0\x17\xbd\xc3\ +\xf9\xe8\x41\xb9\xf3\x1e\x63\xb4\x89\xe1\x59\x52\x86\x2c\xbc\xd3\ +\x79\x7a\x32\xcd\x41\x7a\xb2\x18\x32\x69\x30\xd1\x9c\x3b\x13\xdf\ +\x93\x34\x1a\x35\x29\x56\x5b\x8d\xb7\xd8\xf1\x42\xe7\x72\xb9\x0d\ +\x17\xf5\x25\xd9\x03\xa5\xa9\xb2\x0d\x19\x52\xec\x3d\x06\xdb\x20\ +\xf4\x45\xa3\x25\x85\x44\x5b\xde\x4e\x14\x4e\xa3\xd3\x8f\x02\x8d\ +\x4e\x0c\x40\x46\x84\xd4\xed\x3b\x3e\x20\xa7\x81\xfa\x1e\xec\x53\ +\xde\xe7\x50\xb2\x85\xde\x65\x2b\xf9\xa9\x39\x04\x79\xb9\x85\xea\ +\x91\x46\x94\x6c\x70\x0f\x48\xe0\x30\xde\x38\x79\xdf\x7b\xe7\x27\ +\xaf\x2d\xa8\x2e\x74\x9f\x85\x28\xe0\xbe\x53\xae\xe4\x63\xc8\x7e\ +\x05\xf6\x0f\x59\xe4\xf5\x93\x8e\xf5\x24\xf6\x0e\x14\xab\x6b\xec\ +\x97\xb1\xb2\x3f\x63\x5e\xd1\xf7\x6a\xd6\x2d\x74\x6c\x62\x0e\x64\ +\xe1\x84\x19\x1f\x47\x79\x08\xb1\x25\x12\xb9\x32\xdf\x5c\x4c\xb9\ +\x0b\x80\xae\xad\x20\x59\x95\x6b\x62\xb0\x29\x1a\xae\x6c\xa6\x9e\ +\x1b\xb0\xaf\x7e\x93\x83\x52\x0f\x9c\xd8\x13\xc3\xb0\x71\x90\x80\ +\x7e\xb5\xeb\x68\x3f\xda\x8c\x72\x10\x7c\xed\x53\xf3\xbd\x6e\xda\ +\x07\xb3\x38\x61\x82\x04\xb9\x7d\x24\x89\xbd\x10\x7c\x4d\x75\xfc\ +\xf9\x08\xcd\x8d\x2d\x5e\xde\xdf\x11\xcb\xe7\x29\x79\x6d\xec\x10\ +\x65\xc1\x72\xf6\x45\x0c\xd1\x3d\xc5\x0d\x74\xff\xcc\xac\x68\xc7\ +\x47\xae\xb8\xd8\x3b\x59\xa7\x18\xee\x83\x88\x17\xb9\x32\xa9\xd8\ +\x72\xb3\x2d\x19\xcb\x83\x88\x64\x5e\x69\xea\xfa\xb4\x55\x8a\x2f\ +\x18\xa2\x4c\x55\x6e\xb3\x49\x02\xad\x2c\x4c\x16\xa6\xb4\x09\x9a\ +\x31\x13\x41\xca\xbb\x2f\x08\xc6\xc5\x8c\x70\x79\x11\xdb\xfe\x21\ +\xfd\x85\x90\x55\xe8\xd8\x17\x73\x92\xed\x6a\xcb\x7f\x19\x67\x17\ +\x73\xdf\xea\xa1\xa5\x1f\xc7\xc9\xe6\xf8\x4c\xe7\x1d\xbf\xe2\xb3\ +\x07\x5f\x44\xa3\x0f\x38\xe0\x80\x03\xfe\x8e\xe0\x70\x43\xed\x80\ +\x03\x0e\xf8\xb5\x04\x13\x40\xe6\x74\x95\xbf\x1a\x83\x95\x66\xc8\ +\xfc\x2c\x54\x3b\xde\xca\x9f\x9f\xa2\x90\x4c\x69\x19\x87\xa5\xc4\ +\x6c\xe1\xe5\x59\xa7\x37\x91\xa7\x5f\x91\x23\x4a\x35\x62\x5f\x3d\ +\x4b\xd6\x75\x10\xc9\xe0\xbf\x6f\x8d\xd7\xb1\x2c\xa0\xe0\xc2\xef\ +\x53\xee\xc7\xce\xb2\x40\xee\xf3\x45\x67\x2c\xac\x10\x95\x34\x4a\ +\xc0\x0a\x49\x26\x57\xb8\x2c\x02\xb1\x5e\x9a\x64\xf6\x43\x98\xe8\ +\xe5\x48\x51\x8b\x72\xb3\x61\x98\x1c\x80\x12\x5f\x02\xe5\xb5\xac\ +\x41\x38\xbf\xa0\x4e\x96\xbc\xe5\x56\x38\xd9\x47\x2b\x86\xb8\xb8\ +\xe3\xa5\xa2\x52\x98\xf8\x37\xf9\x45\x73\x51\x01\x7f\xd7\x06\x73\ +\xd3\x61\x37\xa1\xda\xa0\x5c\x6d\x8e\x8b\xbc\x69\x13\x41\x72\x21\ +\x39\xc5\xa0\xdd\x65\x95\x96\x46\xd1\x5d\xe6\x58\x95\xc0\x48\x2f\ +\x90\x0b\xd2\xe8\xf6\xb0\x19\xb7\x06\x26\x55\xa8\x13\x3a\xea\xac\ +\xcc\x94\x90\xf2\xb8\x8e\x21\xc9\xa0\x43\x14\x3c\xf2\xbe\xc7\x4c\ +\xf7\x20\x92\x86\xc9\xa0\x2f\x2a\x14\x26\xc1\x74\x3c\x28\xcf\xb2\ +\x5c\xa5\x04\xa2\x89\x1f\x14\x1d\x53\xdd\xbb\x5a\x0e\x1c\x3f\x0e\ +\x37\x06\xbb\x07\x75\x51\x7e\x8e\xe0\x7b\x0b\x32\x9e\xc9\xc8\x84\ +\xb1\x7d\x23\xb0\x2d\xff\x80\xbb\x34\xa9\x38\xb6\xa7\x78\xb6\xea\ +\x41\x45\xec\xd4\x39\x78\x5f\x44\x33\x95\x18\xfd\x0b\x45\x2a\x87\ +\x9c\x34\x41\xd1\xdf\x71\x21\x4e\xb4\x8f\x43\x0b\xa3\xbf\x6c\x71\ +\x1f\xa6\x68\xb8\xf4\x2e\x5b\x3a\xf9\xe0\x5a\x60\xb4\x59\x4d\xe3\ +\x07\x70\x1d\x82\x88\x5c\xf2\x50\x89\x97\x0c\xe9\x5d\xe3\x3f\xb1\ +\xe0\x43\x07\x6d\x73\x6d\xe2\xcf\xe8\xc5\xe8\xdc\x8e\x27\x62\xb0\ +\x83\xe6\xbc\x0e\x9f\x38\xbd\x93\x56\xe2\x54\x47\x77\x74\x13\xe7\ +\x38\x72\x27\x6c\x9c\x06\x59\xa5\x04\xbd\x34\xf6\x54\x1c\xbf\x13\ +\xbf\xc4\xb4\x8f\x27\xab\x2e\x1a\xe2\xde\x8b\xfb\x43\xef\x22\x6d\ +\x39\x7c\xe2\x10\xbb\xc7\xd9\x9d\x30\x60\x61\x16\xfd\x56\xc2\x57\ +\x54\xb2\xcc\xb2\xbc\xb1\xc8\xf2\x74\xce\x46\x69\xdf\x51\x36\x2b\ +\x61\x64\x8a\x56\x1e\xbb\x12\x41\x6c\x41\x8f\xb4\x68\xe7\x8d\x8f\ +\x83\xa3\xb6\x3e\xe1\x49\xa9\x29\x4c\xc7\xcc\x7c\x47\x7b\xc0\xcf\ +\x09\x7a\x92\xae\xdd\xf2\x33\xda\x50\xd9\xb5\xf3\x1e\x8e\x33\x66\ +\x06\x0b\x96\xfb\x21\x78\x6f\xd1\x2f\xd5\x19\x84\x6c\xdf\x61\x3e\ +\x89\x82\x2a\xf7\x3d\xa6\x96\x2d\x4f\x89\xfd\x18\xbd\xf7\x44\xca\ +\x18\x5d\xb3\xaf\xb0\x8e\xa9\x40\x28\x27\x6d\xe2\x38\x8f\x04\xfa\ +\xcc\x44\x82\x9c\x91\x48\x17\x9f\x6f\x91\xb0\xcd\x31\xb5\x1c\x73\ +\x00\x70\x9b\xd0\x57\x82\x1d\x69\x25\x62\x83\x88\xa1\x97\xfc\xfc\ +\x64\x89\x94\x1e\x32\xab\x0c\x6d\x18\x5f\xeb\x09\x13\xc7\x2f\x5f\ +\xdb\xe3\x1b\x63\x2e\xf6\xec\x14\x32\x27\x0b\xa0\xb3\x8c\x90\x86\ +\x6d\x5d\xc5\xa6\x26\x43\x7f\x59\xaa\x8d\x42\x5b\xee\x68\x8e\x2d\ +\xc6\x9d\x62\xe1\x4b\x80\x9e\x28\x65\x44\x5e\x49\x73\x7e\x0e\x9a\ +\x52\x75\x0c\x36\x75\x50\x39\x4f\xde\xbf\x3b\xa7\x98\x88\xe2\x37\ +\xe8\x82\x8e\x4d\x56\x7a\x81\x92\x51\x6f\xcc\xea\x86\x10\xbe\xc8\ +\x2a\x15\x8a\x1c\x44\xe1\xcb\xd8\xaa\x44\xd5\xfb\x3d\xb9\x1a\x4d\ +\xd9\x92\xc6\xf6\x8e\x48\x1d\x6f\x4c\x94\xdc\x35\x95\xa3\x26\x26\ +\xa9\xdc\xd5\xc7\xf4\x35\xd5\x2c\x74\x72\x90\xcd\x41\xb0\x52\x53\ +\xb7\xaa\xdf\x84\xbc\x2f\xec\x64\x6b\x1b\x68\xe3\x83\xbc\x12\xc2\ +\x88\x15\xb0\x51\xe6\x8a\xe9\x18\xd2\xcf\xfa\x3f\x6d\x4a\x54\x84\ +\x13\xb1\x42\x0a\xe8\x37\xf8\x49\x32\x51\x26\x31\xe7\xf8\x72\x82\ +\x4f\xbd\xeb\x46\x82\x4f\x59\xc7\x3e\x59\x21\x75\x55\x5f\x9b\x79\ +\x33\xa0\xf8\x3d\xf9\xac\x3c\x2a\x10\x08\x49\xe9\xd4\x1e\xb5\xd3\ +\x5a\xea\x3c\xd8\x19\xc9\xda\x42\xe6\x3e\x0e\xfc\x39\x19\x2a\x9f\ +\xe7\xec\x73\xd3\xda\xc6\x5b\x45\x8f\xe7\x31\x36\x4a\x62\x6a\x8c\ +\x28\x3f\xd3\x3c\x99\x66\x5d\xf2\xbc\x94\xbb\xfe\xf0\x96\x65\x4a\ +\xbe\xfa\x36\xe8\x29\x1f\xed\xd9\xd4\xf1\x6a\x3e\x48\x21\xdb\x6d\ +\x79\xd4\x73\x3c\x5e\x3d\xbe\x94\xa5\xb3\xa9\xbd\xe1\x3b\x81\xa3\ +\x21\x22\x48\x2f\xd5\xe2\x90\x31\x3d\xc6\xae\x28\xa3\x51\x49\xee\ +\xc5\xbd\x06\xc4\x88\x38\xb3\xfa\x67\x3e\x02\x59\x76\x59\x47\xef\ +\xa7\x25\xee\x2d\x6f\x82\x7b\xc4\x41\x83\x07\x7d\xbc\xd6\x4e\xbc\ +\xb9\xbb\x69\xdb\xcd\x03\x71\xb1\xdf\x0f\x38\xe0\x80\x03\x0e\xb8\ +\x1f\x39\x3d\x3b\xe0\x80\x03\x0e\xf8\xf5\xc4\x62\x8e\xd9\xb1\x2b\ +\x9f\xcf\x0a\x8f\xd6\xab\xb6\x3e\x3d\xd1\x28\xb8\xd1\x3a\xa4\x4f\ +\xbf\x6b\x7a\xeb\x1c\x99\x27\xd9\x88\xca\xfd\x73\x4c\x2e\xcb\xaf\ +\xbb\xd6\x8c\xd8\x81\x33\xed\x41\x5a\x75\xe2\x1e\xb3\xc1\x70\x20\ +\xbb\xb1\x24\xf7\x3a\x02\x29\xe3\x2d\x4b\xd9\x7a\xd1\x37\xb5\xdf\ +\x44\x30\x81\x19\x1f\x44\xb1\x2e\x66\xa6\x1f\xb1\x50\x60\x6c\x87\ +\x40\xdd\x80\x30\x2c\xcf\x7d\x91\x36\x9e\xcc\x67\x72\xff\x65\x1f\ +\x7a\xd1\xe4\x15\x85\x72\xaf\xe2\x86\x14\x16\xe1\x56\x32\xaf\xf6\ +\xf4\x9e\x56\x7d\xb9\x58\xcb\x38\x92\xb9\xa6\xa1\x32\xe0\x89\x12\ +\x7c\x2e\xdc\x4a\x59\x6d\xa2\xcf\xec\x18\x6c\x10\xd9\x8f\x76\x80\ +\x98\xe0\x78\x92\x97\x98\x7c\x8f\xd9\x5c\x38\xee\x9b\xb1\xbf\x0a\ +\x88\xd4\x2f\x6e\xc1\xb0\x22\x64\x8b\x57\xe7\x20\x7c\x51\x02\x3a\ +\xa4\x21\x2c\xe0\x1b\xed\xcd\xd6\xfa\x55\x79\xd0\x09\xfb\x4f\x3c\ +\x3f\xdf\x37\x89\x82\x28\x0f\x17\x57\x79\x11\x86\x4a\x29\x32\x61\ +\x35\x72\x15\x1f\x66\x73\x83\x85\xf9\xae\x40\x7e\xd4\x7c\x92\x43\ +\x54\x02\x41\xfb\x85\xad\x58\xd7\x21\x2b\x17\x56\xd0\x71\x3c\x00\ +\xc7\x03\x29\x28\x9b\xa9\x7e\xd1\x5b\xd4\xb9\x7a\xaf\x10\xda\x40\ +\xd9\x63\x17\x0e\xf0\x09\x2a\x31\xb9\x4d\xd8\x27\x1b\xfd\x66\x88\ +\xfa\x5b\x9d\x36\xf0\x15\xc2\x22\x31\x51\x0f\xf1\x08\x94\xc8\xca\ +\xa6\x10\xfc\x20\xcd\x78\xbe\xb0\xc2\x85\x1b\x5f\xbc\x01\xd5\x4f\ +\xcb\x08\x82\x0b\x48\x88\xa4\xdc\xe8\xa3\x00\xa7\xa1\xfd\xc9\x53\ +\xd1\xcf\x2f\xbe\x56\x6d\x58\x19\xe7\xb8\xfc\xe9\x69\x9f\xfb\x25\ +\x2b\x3e\x6f\xa4\x11\x46\xa2\xa4\x93\xaf\x9b\x6c\x52\xf8\xe7\x1d\ +\xd3\x86\x58\x3e\x06\xc4\x9a\x37\x01\x5d\xc2\x04\xbc\xdb\x3c\xc9\ +\xf7\xb4\x36\x74\x63\xb2\x55\x58\x96\xbd\x73\x36\xdd\x66\x80\x78\ +\xef\xc1\x51\x3f\xa6\x89\xe8\xa8\xb8\x26\xdc\x80\xf4\x07\xb4\x3f\ +\xc9\xc2\x92\x37\x66\x41\x70\xeb\x82\x1d\xc4\xb9\x12\x74\x20\x99\ +\x1d\xf9\x02\xee\xff\x01\xe2\x7b\x7f\xcb\x31\xc8\xc9\xc6\xfb\xce\ +\x7c\xa4\xd8\x7f\x21\xaf\x1b\xe1\xfc\x84\xa6\xb5\x83\x8e\x9b\x0f\ +\x9b\x53\x6e\xa8\x45\x65\x52\xb5\x07\x2f\xab\xec\x97\x88\x7b\xeb\ +\xf3\x2b\x0a\x77\xf0\x90\xee\x01\xbb\x64\x73\x74\x2c\x1b\x7e\xf6\ +\x6b\xbf\xe1\x4b\xdc\x87\xbd\x31\xdf\x2f\x51\xec\xd2\xb3\x6c\x5e\ +\x16\x71\x1f\x86\xd8\xe9\x5a\x63\xe1\x4b\x21\x9b\x99\x99\x98\xb1\ +\x64\xe8\x88\x53\x9f\x09\xbb\x58\xda\x1b\x83\xd0\xa4\x0e\x56\x8e\ +\xd7\xd9\xc8\xa7\x13\x8e\xee\xe4\x29\x10\x74\x95\x42\x89\x95\x4a\ +\xc5\x61\xd0\xf9\xe7\xfb\x8a\xc7\xc0\x79\x54\xba\xcb\x42\x9c\x32\ +\x8f\xaa\x31\xbc\x15\x2f\x02\x3a\xf4\xf7\xa7\xd2\x87\x80\x21\x32\ +\xce\xd5\xf2\xe7\x8c\x24\x36\x2f\x50\x1c\x9a\xd9\x2b\x7d\xf8\x92\ +\x44\x58\xda\xd9\xba\x62\xbd\x13\x66\xfd\x7b\x4f\x67\xef\x95\x4b\ +\x56\x37\x75\x1c\x12\xa2\x52\x41\x34\x37\x53\x18\xe4\x2a\x27\x95\ +\xae\xc0\x4e\xae\x84\x7e\xef\x4e\x1f\x64\x55\x5e\x5d\x71\xb1\x7d\ +\xa6\x2a\x83\x9f\xca\x20\x79\x5f\x8a\x77\xfc\xa4\xab\x0f\x12\x48\ +\xd8\x46\x8e\x76\xdf\x71\x37\x09\x1c\x02\x3e\x8d\xbc\xcd\x3a\x45\ +\x14\x6d\x17\xf3\x42\xf6\x9d\x21\x76\x2c\xdd\x76\xd5\x8f\x00\xa5\ +\xdb\x30\xaf\x63\x18\x94\xd1\x88\x2c\xd3\x7e\x21\x19\xc1\xb1\xb7\ +\xcf\x0b\x50\x84\xc7\xfe\xfc\x9c\x0b\x3b\xd1\x2e\x3f\xf4\x7d\x6e\ +\xa2\xc4\x5c\xc5\x9f\xf1\xb6\x1b\xd1\x3d\x85\xd4\x7a\x7f\x07\xe9\ +\xf8\x88\xe1\x4b\x36\xc3\x6e\xc4\x1d\xd9\xcc\x77\x19\x64\x9f\xff\ +\x04\xbb\xb2\x49\x33\xd3\xd9\x46\xf3\x43\xf2\x79\x9e\x42\xe7\x72\ +\x8a\x9b\xd5\x71\xe6\x84\x0c\x9a\x27\x4c\xe3\xd6\x7c\x1c\x0f\xa1\ +\xb1\x4e\x05\x58\x96\x22\xfb\x25\x5d\x63\x02\x05\xc5\xb9\x2d\x99\ +\xfa\xd6\x49\x4e\x1e\x9f\x88\x6e\x7b\x7a\x5b\x28\x9f\x70\x4c\xbb\ +\x92\x45\xbe\x4c\xb3\x2a\x81\xa8\x64\xa2\xf6\xa2\xd2\x4c\x9e\x7e\ +\x05\xe2\x10\x2c\xc8\x80\xea\x1d\xff\xbf\x1b\x96\xf4\x44\xbc\x02\ +\xe4\x11\x3b\xb7\xb3\x80\x19\x3f\x65\xae\x6b\x90\x2f\xc1\x3e\x8b\ +\x49\x36\xd7\xc2\xed\xda\x2f\xaa\x60\x84\xac\x6c\x97\x51\x16\x31\ +\xbc\xff\x77\x31\x49\x97\x25\x4c\x1a\x28\x3e\xbf\x6f\x6f\x8e\xda\ +\xd9\xe9\x23\x71\xfb\x6a\x73\xc0\x01\x07\x1c\x70\xc0\x88\x9a\xde\ +\x1d\x70\xc0\x01\x07\xfc\x9d\x40\x4d\x0d\xe7\x53\xc4\x3d\xd0\xca\ +\x70\xfb\xf0\x61\xbb\x5b\xc7\xff\xf8\x74\xbb\x61\xfe\x58\x8b\xd4\ +\x99\xde\xd0\x14\xd6\x6c\x4e\xce\xc5\x90\xba\x4d\x92\xc9\x0d\xc4\ +\x02\xe3\x5c\xd5\x0b\x45\xde\xe3\x82\x72\x34\xd8\x0f\x87\x96\x99\ +\xf3\xb1\x0e\x0b\xec\x44\xa2\x2c\x12\xa4\x88\xbe\x46\xde\x31\x0c\ +\x84\x78\xb7\x6e\x9d\x1f\x8b\xed\xd5\x98\x07\xdb\x59\x90\xc0\x67\ +\x9a\x2b\x84\xb9\xab\xd4\x65\xc4\x6a\x39\x38\x16\x0e\xe1\xab\x0d\ +\x29\x17\x12\xde\x17\x9d\x85\x50\xa6\xe4\x0b\x36\xf6\xcd\x17\x7a\ +\x27\x38\x2e\xba\x2b\xc9\xce\x4f\xf2\xf0\x96\x3c\xfe\xe8\x5f\xc9\ +\xbf\xad\x54\x7e\x29\x03\xce\xe0\xcd\x05\x4c\x13\xc8\x5c\x60\xa4\ +\x85\x30\x9f\x84\xa3\x7b\x47\x09\x9d\xab\x5c\x42\x8a\x8e\x65\x2b\ +\xbe\x43\x50\x48\xd7\x2b\x8c\xac\xc1\xcc\x32\x18\x4c\x62\xff\xf9\ +\xb8\x8e\x40\x96\x86\x00\x33\x2b\x6c\xcf\x9f\x87\x1b\xa1\x0a\x38\ +\xce\xf2\x08\xd5\xab\x1f\x48\x25\x49\xd2\x28\xae\x24\x99\x67\x99\ +\x25\xdd\xb5\x89\x45\xf4\xa4\xbf\x0f\x7b\x2c\xc6\x55\x71\x92\x11\ +\x91\xba\x42\x4c\x7a\x77\x43\xf6\xcf\x1c\xe5\x31\x21\x24\x01\x5c\ +\xc2\x6d\xa2\x02\x61\x91\x7b\x60\x81\x38\xfe\x8c\x7d\xea\xd7\x42\ +\xd5\x62\x19\x60\xe0\x45\xba\x94\xa1\x5a\xe1\xc1\x16\x61\xd8\xd6\ +\x21\xdc\x3d\xc5\x57\x7f\x84\x6a\xa8\x6f\x61\xec\x2c\x48\xf5\x35\ +\xe7\x44\x79\x18\x22\x4b\x62\x29\x05\xd4\x00\xa3\xe4\x7a\x68\x1f\ +\x70\xdc\xf8\x09\x61\xc5\x0c\xdb\x78\x01\xeb\x44\x46\xdd\x52\xa6\ +\x9c\x8b\x37\x51\x71\x12\xe7\xac\x3c\x7c\x8c\x2b\xd7\xb9\x1a\x37\ +\xd7\x43\x6e\x99\xaf\xb0\x65\x1c\x0f\x1d\xc8\x93\x0e\x55\xd6\x47\ +\xe2\xa9\xe1\x09\x69\xe0\xd5\xc6\xde\x0f\xe6\x83\x34\x51\x7c\x97\ +\x2d\xd9\x41\x41\x21\xc0\xc7\x67\x94\x39\x03\x75\xe0\x15\x43\x4d\ +\x7a\x4e\x5b\xcb\xb8\xf0\x37\xfa\x99\x8d\xda\xcd\xc2\x96\x0d\x3e\ +\x11\x62\x92\x15\x46\xdd\x02\x5c\x28\xdb\x07\xf7\x55\x52\x3e\x8f\ +\x32\x33\x31\x64\x81\x3d\xc1\x11\x0d\x62\x93\xda\xcc\xdc\xf6\x22\ +\x9c\xca\xee\x28\x9f\x14\x19\xfd\xae\xb5\xef\xf9\xcf\x8f\xd5\xc9\ +\xf1\x64\xf7\xea\xc0\x73\x7c\x5e\xfb\x9f\x07\x43\xfb\x7f\xe5\xf1\ +\xda\xfd\xc1\x05\xb8\xb3\xb6\x56\xff\xc7\x31\xc5\x66\x6c\x68\xd1\ +\xaf\x0a\xf8\x8a\xce\x91\xda\xe7\x76\x86\x99\x1f\x01\x03\x5e\x11\ +\xe6\x3e\xe0\x56\xae\xce\x53\x50\xb2\x11\x25\x8b\x1a\x64\x3d\xd2\ +\x7e\x2f\x2c\x9f\xd7\xb7\x86\x9c\x9d\x56\x64\x9c\x1a\x81\x69\x72\ +\x4d\x45\xba\x9c\x73\x14\x1e\x6f\xcb\xcd\x04\x39\x10\x21\x0d\x50\ +\xce\xf4\xb3\xbb\x91\x47\x8a\x1a\xdc\xe6\xb8\x5b\x65\xc5\x05\xf3\ +\xa4\xc7\xdc\xb4\x47\x2b\x51\x51\x97\xb0\xe3\xe2\x3a\xe3\x6e\x58\ +\xb1\xb5\xf5\x4c\x96\xe3\x73\x68\x50\x05\x30\x8b\x01\x37\x78\xe5\ +\x8a\xec\x97\x2b\x1e\x9b\x09\xdd\x31\x81\x9a\x76\x74\x71\xd9\x2b\ +\x2f\xd2\xba\x62\x46\xa4\x8d\x07\x8c\x41\x6f\x7b\x36\x25\x1f\x74\ +\xc0\xec\x42\x4e\x1d\x66\x66\x62\xaa\xdc\xba\xea\x82\x9e\xb2\x5c\ +\x9e\x94\xa6\x95\x57\x9b\xea\x06\x8f\xfb\x63\x09\x7c\x26\x74\x2e\ +\xeb\xde\xcf\x09\xbb\x06\xef\xf0\x96\xd3\xa3\xa8\x42\x66\x88\x30\ +\x4f\xdd\xaa\x7e\x00\x43\xef\x54\xd2\x10\xb3\xda\x97\xe5\xb9\x98\ +\x2e\x83\x99\x40\xdc\x97\xa3\x9c\x32\x8e\x50\xf9\x3e\xd0\x3d\x6e\ +\x8b\x92\xab\x62\xdf\xf0\x70\x94\xbe\x29\x4c\x71\x47\x29\x30\xef\ +\x3e\x87\x2a\x2b\x20\xbe\xda\x3b\xa3\x5f\x01\x57\x08\x7b\x18\x7c\ +\x86\x18\x9f\x17\xb5\xdf\x2b\x8c\x43\x74\xc2\x80\xf2\x19\x52\x4d\ +\x90\x0f\xe7\x55\xff\x19\x58\x76\x9e\xe7\x42\xca\x73\x3f\xc6\xf9\ +\x25\x63\xfe\xbb\x0c\x5e\xf6\xf6\xc7\x54\x41\xdc\x9f\xd9\x06\x6e\ +\x9a\x85\x2c\x68\xe4\xbe\xb1\x4f\x99\x4e\xab\x08\x9b\xba\x18\x33\ +\x32\x86\xd2\x2d\xfa\x6b\xf1\xe8\xa5\x74\x39\x98\x3a\xb1\x4d\xe0\ +\x63\xdf\x48\x5d\x35\xe6\xa3\x3c\x31\x13\xdb\x71\xe2\xa7\x9f\x2d\ +\xa5\x3e\xa9\xb6\x68\x7a\xde\x97\x17\xb4\x15\x5d\x1f\x08\x39\x48\ +\xe1\x24\x30\x22\xea\xe7\x40\xd6\x6f\x1e\xae\xb6\x8b\xe0\x09\xa4\ +\xa3\xa6\x37\x69\x94\xba\xd3\xa2\x35\x4b\xec\x4a\x02\x4b\xdb\x89\ +\x23\x16\x99\x2c\x14\xf3\xf1\x83\x37\xc5\x44\x4b\xf7\xd7\xf0\x80\ +\x03\x0e\x38\xe0\x00\x30\x4e\x9d\x0e\x38\xe0\x80\x03\xbe\x78\xcc\ +\xe7\x6e\x5f\x18\x98\xe0\xed\x0b\xfd\x7a\x13\x3f\x4d\x12\xb5\xe8\ +\x3a\xde\x6c\xda\xdd\x7a\x1d\x7f\x9f\xa5\x34\xfa\x32\xa1\xa4\x80\ +\x79\xbc\xa9\xc4\x7d\xe5\xc4\x9c\x99\x4d\xa6\xc9\xdc\x98\x4d\xc2\ +\x2b\xc0\x10\xc8\x24\x9b\x4c\x83\x6a\x2f\x88\x66\x9b\x1e\x76\xbf\ +\x47\xd9\x4c\xda\x70\xa0\x89\x5d\xa8\x3c\x7e\x93\x3e\x05\x98\xd8\ +\x4c\xbc\xe4\x55\x84\xc5\xdd\x2c\x08\x2f\x08\xcc\x27\x2c\x1e\x04\ +\x15\x27\x8d\x46\xd3\x54\x4e\x98\x15\x54\xe4\x60\x53\x72\x2f\x24\ +\x52\xc0\x1b\x9a\x05\xa0\x76\x64\xfd\x14\x1c\x42\xc4\x6c\x69\x81\ +\xbf\xfd\x8c\x5c\x76\x2c\x4e\xe2\xdb\x8c\xd8\x51\x27\xd5\x4a\x0d\ +\xa3\x6e\x88\x59\x68\xc6\xc5\x7b\x8b\x05\xf4\x21\x77\xdc\x4c\x08\ +\x7d\xac\x40\x79\x55\xda\x4d\x0d\xba\x21\xbe\xfd\x3b\x24\x60\xd7\ +\xf2\xc5\x68\xf2\x19\x51\x2e\xfd\x5b\xe7\x25\xad\xd5\x15\xca\x42\ +\xc6\xe4\x62\x0c\x99\xf7\x5a\xea\x27\xb3\xa0\xaa\xbd\x53\x9c\x68\ +\xbb\x53\xd2\xe6\x86\xfa\xa5\xb0\xd7\x21\x2e\x6a\x9b\x31\x2a\x82\ +\x7f\x2e\x26\x93\x45\xd9\x3f\x65\x5c\x5c\x00\x6e\x92\x87\x9f\x59\ +\x41\x44\xa7\x47\x20\xdc\xab\x08\xf4\x95\x67\xd8\xec\xb3\xb4\x05\ +\xf5\x93\xd6\xf5\xae\x6e\x88\x4c\x08\x01\x47\x8e\x65\x43\x90\x8a\ +\x1e\x54\x29\x06\x03\x91\xc1\xb1\xad\x24\x6b\x99\xdb\x77\x0a\xf0\ +\x6a\xec\xb3\x8d\x70\x33\x94\xa8\x9b\x4b\xd0\xcb\x1a\xd3\xe0\xec\ +\xe6\x0b\x56\x69\xb3\x27\xac\x74\xfb\xa4\x2f\x81\xcb\x50\xac\x8a\ +\xe7\xe0\x10\x01\x97\xd9\x67\x9e\xea\x5b\xf8\xac\x08\x59\x50\x3a\ +\x2f\xf4\xe2\xf0\x22\xe7\xcd\xe5\x19\x7e\x8e\xd5\x17\x66\xc2\xc4\ +\xa8\xe3\xdc\xe7\x23\x67\x2c\x39\x3a\xe7\x22\xc8\x7d\xce\xe7\xb8\ +\x90\x4e\xd0\xae\x63\xda\xba\x8c\xe9\xc0\x73\x3d\xcc\x21\x27\x17\ +\xfa\x61\x95\x58\xf2\xb0\xa4\x29\x0a\x18\x39\x69\xb9\x50\xaa\xdc\ +\x75\xf3\x45\x53\x52\xa8\x9c\xb8\xf8\x34\x43\xd8\xef\xa0\x87\xcd\ +\xf3\x25\x53\xa7\x07\x8c\xec\x48\x47\xd4\x8c\xad\xc6\xd4\x4f\x82\ +\x16\x76\x4b\x4d\xe5\x22\xbe\x05\x29\xab\x2e\x06\x79\xe6\x08\xbb\ +\x91\x00\x7b\xac\xd0\xa9\x85\x69\x8c\xb1\x01\x47\xcb\x8d\xc7\xa8\ +\xe9\x80\x69\x37\xb7\xb7\x4e\x74\xdf\xd1\x66\x9b\x62\xf9\x8e\xf1\ +\x46\x7a\x0a\xf6\xb7\x03\xea\x32\xd6\xe7\x57\x15\x9f\xa3\x8e\xdb\ +\xf5\x46\xa7\xf6\x3a\x5d\xa6\xbe\x2d\xbe\xef\x93\x1d\xec\x2f\xa4\ +\xef\xfa\x51\x4d\x90\x81\x1f\x8f\xa1\x97\xa2\x57\x27\x88\xa9\x76\ +\xaf\x80\x0d\x17\x65\x74\xb6\x88\x7b\xa2\x0d\x6e\x73\x8b\x89\xc3\ +\xa4\xc6\x91\x31\x6c\xd1\xe4\x39\x3c\x45\x5e\x63\x54\x1a\x58\x1e\ +\xa4\x89\x18\xff\xb8\xa9\xc5\xa8\x88\x48\x39\xb4\xd2\xed\x1d\x3f\ +\x6f\xce\x48\x8a\x21\x43\x4d\xf4\x5e\xc4\x0f\x3f\xcb\xc9\x48\x0c\ +\xb7\x16\x24\x5f\x3a\xc6\x60\x64\x7a\xc5\x4f\x41\x22\xc7\x7f\xf0\ +\x75\x79\x61\xcb\x97\x92\x90\x15\x20\xf1\x8d\xf9\x92\x12\x71\x42\ +\x62\x7d\xa1\x24\x31\x1f\x51\xbb\x3d\x8f\x22\x68\x68\x7b\x37\xc2\ +\xab\xbc\x69\xe2\x60\x83\x00\xa2\xde\xc1\x66\x82\x9e\xa1\x64\xe4\ +\xd8\x2e\x6c\xec\x57\x31\x22\xdb\x0f\xec\x94\x66\xee\xc1\xf4\xaa\ +\x59\xaf\x54\x73\x42\x23\x09\x8c\xd0\x75\x14\xbd\x2b\x7b\x59\x35\ +\x66\xfd\x38\x86\x50\x8a\xd6\x31\x76\x86\xd0\x2f\x09\x61\xcb\xcb\ +\xba\xd8\x98\x9f\xa1\xea\xe7\xba\x2a\x5f\xf1\xb9\x81\x40\x9b\x69\ +\x77\x26\x7c\xf4\x29\x4f\x9f\x11\x38\x2d\xe6\xc5\x31\x9e\x97\x80\ +\x6d\xe4\x23\x2c\x51\xd9\xb4\x71\xd2\xee\xda\x59\x86\xd8\xfb\x3e\ +\x22\xf5\x6a\x15\x65\x61\xc4\xea\x70\x1d\x94\xaf\x95\xc6\xfa\xc5\ +\x66\xc0\x82\x77\x88\x92\x91\x4b\x50\xc7\xdd\x5e\x8c\xfe\xa3\xdf\ +\xe0\x96\x3b\x26\xfa\x77\x00\xb2\xee\x13\x66\xd1\xf1\x24\x91\xe6\ +\xd5\x2a\xe5\xf4\x92\xfb\x95\xc9\x14\x62\x6f\x03\x36\x83\xc8\x02\ +\xdd\x0f\xec\x43\x65\x96\x90\x9b\xb8\x75\x1d\x78\x80\x32\xfa\x0b\ +\x15\xca\x30\x8e\x31\xc5\x42\x83\x2f\xe3\xf1\x3f\x6a\x9e\x77\x99\ +\x9f\x7a\xb8\xc6\x18\xbb\x67\x6e\x4c\xe2\x10\x95\x5c\x88\x3d\x1d\ +\xe5\xb2\xe9\xaa\x22\x06\x99\xdb\x8b\x2d\x63\x9d\x72\xc6\x25\x4b\ +\xdd\x97\xd0\x43\xbf\x29\x51\x33\x0e\xe5\x79\x27\x47\x7d\x23\x66\ +\xf4\xb4\xd5\xd9\x4f\x60\xa2\x3e\x1f\xc6\x52\x02\x92\x0c\xc2\x5d\ +\xfd\x84\x79\xe9\xc1\x05\x35\xd1\x73\x2c\x25\x61\x5d\x64\xe7\xa0\ +\xbd\x1f\xdd\x1b\x7d\xbf\x3d\x38\x7b\xa8\x6d\xd5\x28\x64\x07\x1c\ +\x70\xc0\x01\x07\xec\xa2\x5f\xd6\x38\xe0\x80\x03\x0e\xf8\x52\xf0\ +\xb2\x19\xe2\x2f\x00\xa6\x77\xaf\x1f\x7a\x98\x0c\x32\xc1\x4e\xc7\ +\xf5\xe9\x69\xbb\x5b\x1d\xb7\x6b\x7f\x15\x4f\x02\xcd\x9a\x63\xfa\ +\x0c\x89\x5d\x4d\xe5\x17\x70\x38\x36\x26\x26\xa4\x68\x92\x26\xd3\ +\xd3\x10\x69\x32\x1a\x0a\x98\xf4\x3b\x65\xee\xc1\x30\xbf\x4f\x94\ +\xa0\x0a\x04\x35\xdd\x1e\x28\x56\x07\xb4\x35\x73\x0a\x8b\x9b\x69\ +\x73\x4f\x23\xc4\xb3\x9a\x75\x7a\x12\xaa\x2e\x30\x99\xc6\x76\x76\ +\x28\xea\x5e\xf1\x42\x68\x36\x65\x63\xe6\x4a\x55\x0b\xb2\x86\x3d\ +\x83\xd0\xd6\x8b\xa7\x84\x3a\x07\x2e\x77\xa3\xd4\xda\x40\x5b\x69\ +\x41\xbc\x62\x0d\xaa\x1c\x82\x18\x1c\x0b\x71\x79\xc7\x4b\xb2\x95\ +\x28\x62\xe5\x82\x43\xa2\x08\x45\x08\x2e\x14\xd9\x2d\x75\x8a\xee\ +\xe6\x40\x16\xa0\x2b\x15\xb0\x51\x0a\x91\xb6\xf8\x6a\x01\x9a\x62\ +\x27\x50\x79\x05\x18\x43\x18\x34\x6c\x47\x08\x42\xe8\xa3\x57\xa4\ +\x77\xed\x3e\x3b\xcb\x39\x0e\x82\xb5\x20\x8f\x87\xd0\x0d\xa9\x5f\ +\xfc\x97\xfd\x72\x9f\x65\x6c\x67\x52\xa1\xad\x54\xdb\x25\xf6\x4b\ +\x41\xf6\x03\xf5\xa8\xb2\x3b\x96\x5e\xc5\x2b\xaf\x46\x38\x9b\xec\ +\x26\xaa\x10\x92\x7e\x14\x2b\x1b\x8b\x98\x15\x27\x4c\xdf\x74\xdd\ +\x53\x1d\xe0\x30\x55\x4a\x04\x83\x9b\xdb\x89\x73\x9f\x55\x12\xba\ +\xc1\x42\x3e\x20\x46\x9f\x09\xdd\x65\x1e\xfc\x15\xd8\x63\xec\xff\ +\x73\x01\x8a\x1f\x27\x87\xb9\x92\x8e\x1e\xbd\x76\xbb\xd5\x8b\x73\ +\x80\x8d\x73\x4b\x8a\x18\x90\x7c\xaa\xc8\x28\xd2\x17\x49\x99\x81\ +\xfa\x42\x4f\x1c\x83\x8e\x67\x3a\x0a\xf3\xba\xde\xb6\x3a\x1f\xa5\ +\xf4\x0d\x31\x39\x1f\xad\x6e\xe3\x70\x74\xb4\xba\x2c\x9c\xb6\x9c\ +\xbb\xae\xd3\xd0\x7b\xa2\xfb\xcd\x6e\xdb\x44\x0a\x5e\x1b\x72\xa3\ +\x13\x01\x74\x1d\x79\x41\xa7\x90\x4c\x2f\x43\x80\x9e\xca\x1c\x12\ +\xd2\x3c\x77\xc2\x80\xa3\x0f\x62\x8c\x88\x3e\xc9\x01\xb3\x30\xa0\ +\xdc\x66\xb6\xaa\x9b\x2f\xfe\x65\xfc\x71\x67\x99\x4c\x87\xee\x33\ +\xd2\x01\x5f\x74\xaf\xe0\xe9\xee\x3e\xda\x87\xe1\xfc\x8f\xfd\x38\ +\x94\xb7\x0c\x3c\x62\xd6\x9f\x14\x33\xc4\x99\xf9\x41\xb3\x57\x43\ +\x16\x63\x6b\xf0\xd5\x6f\xd1\x83\x2b\x73\x80\x63\xe3\xf2\xe6\xb6\ +\xdd\xdc\xdc\xb5\xf5\x83\xb3\x94\x2e\x30\x56\xf3\x3e\xcc\xab\xf8\ +\xe5\xe3\x97\x5d\xde\xe7\x45\xef\xe0\xcc\xef\x01\xfb\xe6\xe1\xc9\ +\x59\x5b\xad\x37\x9c\x92\xec\x90\xde\xb6\x70\xad\x86\x8e\x0d\x7e\ +\xfd\xc6\x97\xa5\xf7\x3f\x01\xef\x75\x1d\x2a\x3a\x39\xcd\x51\x72\ +\xf2\x7b\xe3\x24\x86\x63\x7d\x17\xd2\xa5\xbf\x3f\x27\xf6\xc5\x7a\ +\x9d\x32\x84\x30\xa9\xb2\xe2\x6c\x60\x8c\x0b\x4c\xe5\x38\xf3\xb9\ +\xaa\x4c\xc7\xbc\xcf\x5b\xce\x8f\x78\xfb\x14\xf3\xe9\x62\x48\xe7\ +\x0b\xdb\x92\x79\x9e\x82\x2e\x62\xc5\xb4\x25\x7e\x9d\xc1\x29\x7d\ +\x62\x1c\x88\xb1\x97\x67\x39\xc2\x86\x57\xc8\x5c\x26\x34\xb2\x18\ +\x84\x7d\xd1\x1a\xb9\x6f\x9c\x91\xb0\x73\x9e\x34\x2f\x13\x50\xc0\ +\xc2\xa4\x14\x43\x7d\x57\x43\x56\xf7\x67\x63\xa0\x17\xdf\xfb\x17\ +\x43\x11\xb6\x47\x41\x3e\xa0\xdb\x54\xb6\x34\x58\x22\x6d\x01\xa6\ +\xdd\x67\x88\xed\x3e\x1b\xed\x8a\x26\x1f\xec\x96\xb1\xba\x1c\x4d\ +\xea\x4a\x5e\x31\x1c\x62\x30\xec\xa4\x88\xe8\xbc\x29\xec\x38\xae\ +\xcf\x10\x72\xab\x4d\x26\xcf\x86\x72\xba\x22\x83\x4d\x86\x1d\x55\ +\x2c\xf5\xac\x51\x36\x30\xa7\x66\x9e\x76\x12\xd7\x3f\x7b\xea\x0e\ +\x94\x80\xae\xf7\x53\x35\x62\x91\x96\xe2\x19\x10\xf8\xe8\x78\xa9\ +\xc9\xbd\x5d\x52\xc8\x3a\x4c\xed\xcb\x6d\x3a\xd2\xc5\xd1\xda\xe0\ +\xfb\xbe\xf0\x09\x52\x32\x36\x92\xc3\xf7\x36\x81\xa4\x4b\x86\x6b\ +\x15\xd4\x75\x43\xda\xc1\x18\x2b\x51\x76\xf6\x91\xbe\xfb\x8a\x76\ +\x1f\xe3\x33\xa5\x38\x4f\x94\x60\xcd\x97\x9b\x05\xb9\x15\x18\x07\ +\x50\x68\x2e\xc5\x9a\x86\x9d\x66\x5d\x3a\x38\x8c\x59\x9d\x7f\xb2\ +\xe5\x5c\xf7\x30\x8e\xd0\xff\x91\x16\xbd\xc4\x19\xec\xf3\x5d\x4a\ +\xdb\x10\x17\x1b\xc2\x90\x21\x73\x30\x04\xa9\x33\x92\x56\x90\xd4\ +\x86\x09\xb9\xb6\x91\x47\x79\xd3\xe9\x60\x2e\xc8\x01\x96\x60\x93\ +\xb1\xcc\xd7\x46\x82\x28\x3e\x09\x68\xc3\x06\xf7\x80\xba\xa9\xc7\ +\xba\xad\x20\xf3\xb1\xf6\x80\x08\xe3\x99\xf1\xb9\xa1\xfa\xc4\x13\ +\x82\x20\xe3\x38\x68\xd0\x6c\xd9\x45\xfb\x8a\x98\x7a\xa8\xa0\xda\ +\x11\xcf\x8d\xdd\xc5\x7e\x29\x58\x06\x97\xe5\x20\x72\x97\x69\x9f\ +\xae\x8e\xb6\xed\xc1\x03\x6e\xa8\x8d\xd8\x53\xb1\x03\x0e\x38\xe0\ +\x80\x03\x0e\x37\xd4\x0e\x38\xe0\x80\xbf\x1b\xf8\xbc\x53\x3d\xfe\ +\xf3\x89\xff\x50\x3b\xda\x9c\xb4\x6b\x2e\xc2\xa6\x9c\x40\x75\x41\ +\x77\xc4\x24\x49\xcb\x71\x22\x0b\x39\xb0\xb3\x89\xb9\xc0\x64\xb8\ +\x9b\x8c\xba\x4e\x67\x74\x97\x9d\xc4\x50\x62\x61\x11\x76\x81\x5a\ +\x42\x09\xdd\x30\x88\x58\x18\x2c\x16\x0c\x02\x93\xf7\x4a\x33\x94\ +\x8c\x1c\x5e\x1b\xa2\x97\x59\x5c\xc4\x49\x65\xda\x75\x94\x0c\x2c\ +\xca\xa3\x1e\xa3\x69\x60\xbf\x6c\x86\x64\xc9\xaa\x2f\xbb\xcc\x2b\ +\x00\xf2\xe0\x21\xea\xa2\x8c\x9f\x42\x09\xa1\x57\x87\x65\xeb\x54\ +\x2b\x46\x65\xb6\xa3\xe3\xad\xaf\xf8\x2c\x1c\x43\xd4\x09\x3a\xb0\ +\x77\x22\x32\x32\x6f\x92\xce\xb4\x80\x45\xd8\xd9\xd6\x8c\xb7\xf3\ +\x76\x47\x9d\xcb\x04\x5d\x59\x03\xe8\xdd\x7e\x12\x10\x5a\x51\x16\ +\x5d\x20\x10\x50\x6f\xab\xd8\x14\xc2\xc6\x5b\x36\xec\x4b\xde\xe3\ +\x8d\x16\xcb\x42\xde\x21\x75\x85\x19\xc5\xb3\xd3\x05\xfd\x58\x54\ +\xc7\x68\x54\x90\x6c\x66\x3b\xd9\x20\x36\xa7\xe0\x73\xcf\x45\x9c\ +\xf2\x4f\x87\x68\x8f\x25\x4b\xcb\xfd\x28\x3f\xb2\x8a\x65\x20\x94\ +\xc0\xf1\x22\x52\x6c\x47\x4c\x92\x7d\xd4\x84\xe5\xd2\xbc\x20\x5b\ +\xcc\x9d\x64\xb1\x28\x3f\x22\xb1\x0d\x45\xf0\x9f\x03\xf7\x39\xe4\ +\xfe\xee\x0d\x1e\xca\xed\x64\x57\xe5\x71\xc9\xb9\x92\xe7\x4b\x80\ +\x73\x46\x8c\xe2\xd4\x71\x5b\x17\x58\xd9\x94\xdf\x08\x17\x8b\x8c\ +\xb2\x07\xf8\xdc\x53\xe2\x3f\xb1\xfa\x53\x8f\x21\x72\x4e\xac\x34\ +\x69\x2b\x05\xf5\x7f\x06\xb1\xc9\xf2\xf1\xa1\x2e\xdc\x78\xb3\x6f\ +\x2f\x58\xb9\x68\xfb\x23\xd2\x79\x9c\x2e\x01\x57\xba\xe8\xcc\xc1\ +\x48\x77\xc8\x37\xa9\x7b\xb1\xd7\x4f\xb8\x4f\xde\x23\xba\xd2\x41\ +\xbe\x02\x7b\x8f\x24\x87\xd1\x86\xdc\x1d\x35\xf0\x42\xf7\x48\xbe\ +\x83\xbe\xdc\x11\x26\xaf\x8c\xfd\xf5\xd2\x5a\x61\x3a\x99\x77\xec\ +\xf8\x2c\x2a\x50\x5b\xc4\x41\x73\xac\x88\xea\x07\x88\x25\x99\xc7\ +\xb6\x0e\xd9\x10\xb0\xbf\xb5\xcd\x15\x8c\xf7\xaf\x72\x0f\xe9\xab\ +\x55\x3b\x7e\xf8\xf0\xd5\x8b\x9b\x08\xfc\xf3\x83\x02\x5d\xa1\x05\ +\xf6\xc9\x7e\xdd\x41\x9b\xaa\xbf\xee\x69\x1f\xc7\xd1\x66\x7d\x2c\ +\x6a\x1d\x3f\x0f\x86\xa1\x6d\x99\x2b\x90\xc7\x7e\x32\x16\x31\x82\ +\x1d\x76\xc8\x48\x8a\x1e\xd8\x29\xc6\x1e\xec\xab\x1a\xb2\x48\x73\ +\xed\xbe\x28\xfb\x23\x4f\xd2\x99\xde\xe7\x8e\x09\xcb\x3d\x36\x21\ +\xc9\xe3\x37\x70\x8f\xaf\x00\xbf\x94\x01\xa2\xd6\xf1\xec\x50\xdd\ +\x28\xfa\x11\xf6\x56\x0a\xce\x17\x7f\xb1\xc5\x7a\x7c\xa2\x36\xb5\ +\x25\x46\xd9\x57\x62\xb7\x44\xca\x58\x16\x4e\x34\x6c\x5c\xa4\x25\ +\x4f\xb9\x1c\x5c\xa7\x34\xb2\x7f\xe9\x79\xd9\xde\x54\xd2\x61\xc0\ +\x0b\x54\x6e\x0a\x32\x53\x58\x04\x63\x39\x91\x79\xda\x89\x27\x83\ +\xd6\x5c\xf4\x57\x2b\xaa\x13\x06\x9f\x60\x02\xae\x53\xc7\xa8\x1b\ +\xf3\xe8\x91\xfd\x18\x75\x49\xd3\xa7\x1e\x3c\xca\xb7\xe4\x99\xca\ +\x05\x3b\xe7\x91\x59\x61\x11\x1b\xe8\x4c\x23\xa8\x6f\xb7\x1f\x81\ +\x6d\x64\xd9\x68\x84\x03\xb2\xe0\xbd\xbe\x20\xf4\xec\xa7\x28\x92\ +\x3c\xf8\x78\x47\x3c\x1f\x4f\x75\x7c\x22\xaf\x78\xa1\xae\x2c\xe5\ +\xda\x94\x20\x09\xc4\x4e\x5d\x9e\x70\x9f\x85\x7d\x54\x7f\x30\x28\ +\xe3\x41\x64\x10\x08\x59\x0f\xaa\x04\x66\x76\x4b\xa7\x09\x5d\x53\ +\x7e\x4b\xc8\x80\x6a\x4c\xea\x45\x2c\xf6\x85\x0e\xb9\x69\x5c\x10\ +\x8f\x71\x25\x60\x55\x05\x51\xde\x43\x74\x22\x91\x0e\x88\x4b\x55\ +\xc7\xed\x88\xe2\xbb\x7c\x6e\x00\x37\x49\xc6\x32\xe6\xe5\xc5\xfa\ +\x34\x65\xca\xbc\x9f\xed\x88\x6c\x1e\x93\xfe\x8f\xe3\x20\x5a\xda\ +\x7f\xdc\x3f\x0e\x86\x38\x24\xb5\xf1\xb9\x84\xa8\x78\xce\x7b\xf9\ +\x32\x56\x18\x96\x63\x9f\xf1\x52\xee\xaa\xa4\x6b\xe4\x19\xd3\x6c\ +\x6d\xc3\x76\x76\xfe\xe6\x71\x81\x2c\x24\x53\xcc\xb4\x88\x38\x30\ +\xae\x6b\x45\x09\xaa\xbe\x00\xca\xd6\x1a\xd7\x0d\x49\xd8\x56\x1d\ +\x80\xed\x93\xae\x18\x23\x42\x47\x4c\x9c\x26\xc7\x28\x91\x73\xa9\ +\xca\xd6\x16\x02\x7d\xda\xec\xc7\xfd\x4a\x37\xa5\x90\xe1\x7a\xec\ +\xbe\x7d\x1d\x8c\x81\xe6\xf4\x6e\xe9\x83\x24\x3a\x69\x92\x24\x31\ +\xf2\xfc\x12\xc4\xdd\xdd\xa6\x3d\x7e\xf0\x38\x85\x89\xd7\xaf\xdc\ +\x01\x07\x1c\x70\xc0\x6f\x14\x5e\xb9\xe6\x3c\xe0\x80\x03\x0e\xf8\ +\xc2\xd0\x67\x6d\xbf\x38\x7e\xee\xb9\x5d\x39\x6a\x42\xfe\xe8\xad\ +\xaf\xb4\xd5\xe9\x71\x5e\x60\x50\xe5\xac\x63\x02\x1d\xb9\xe1\x2c\ +\x27\xa9\x6c\x94\x62\x11\x90\x8d\x49\x7e\x62\x26\xf9\x28\x06\x11\ +\x31\xe3\x0e\x40\x92\xeb\x83\x30\x15\x9d\xeb\x8d\x29\x86\x80\x68\ +\x60\xf7\xa3\x02\xf4\xed\x00\x09\xaa\x1c\xd3\x49\x86\x8b\x5a\x91\ +\xb3\x7d\xe4\x24\x38\xd3\x76\x92\x9e\x4a\x0d\x15\x80\x8c\x05\x96\ +\x72\x4c\x40\x39\x0e\x76\x73\xa4\x22\x6d\xec\x36\xda\xa6\x3c\x30\ +\x2a\x84\x62\x95\xc7\x1e\x30\x11\x31\x84\x88\x85\x11\xf2\x50\x78\ +\xbf\x72\x81\x47\x79\xd8\xf1\xe4\x59\xf9\x60\x93\x37\x53\xa5\xc7\ +\x34\x92\x23\x5b\xdf\x65\xf6\xa0\xad\xca\x79\x07\x6b\xa0\x8f\x15\ +\xa8\x57\xa1\x30\x7e\x3b\x01\xcb\x0a\x41\x53\x42\x99\x4c\x29\x75\ +\xca\x82\x0a\xd9\x44\x0f\x79\xed\x0b\x19\x7b\xb7\x51\x17\xdf\x10\ +\x1b\xe3\x46\x45\xa3\x4a\x59\xd9\x0e\x84\x53\x16\x0e\xd8\x88\x60\ +\x01\x99\x37\xd7\xbc\x0c\xaf\x83\x46\x99\x4d\xcc\xa6\xac\x03\xcb\ +\x90\x55\xc8\xc0\xd2\xae\x30\xc9\xe3\xb0\x8b\xe3\x68\xb4\xae\xae\ +\x0c\x2c\x62\xef\x0d\xab\xb6\xab\x82\x33\x55\x77\x18\xb1\xeb\x5c\ +\xdd\x39\xc7\xde\x42\xee\xc5\xfd\xd6\x43\x64\x93\x58\x2a\xd9\x01\ +\x81\xd2\x6e\xe1\x03\xca\x96\x7c\xbf\xe1\x52\x6a\x33\xc2\xca\x65\ +\xda\x67\x08\xc8\x16\xd6\xa9\x73\xb6\xc4\xd2\x7e\xe1\x3a\xa9\x6c\ +\x68\x7e\x2e\x23\x8b\xbc\x57\xbd\xeb\x4b\xa6\xb2\x39\xc6\xfa\x49\ +\xc5\x18\xbc\x9a\x58\x36\xf1\xd6\x26\x08\x5f\xbf\x23\x11\x8c\xf8\ +\x28\x53\x57\x17\x44\x73\x64\x82\xc9\x3c\x6d\x87\x4a\x7a\x9b\x7c\ +\x88\x42\x1e\x20\x58\x62\x14\x1b\x93\x60\xb0\x0a\x48\xe5\xea\x04\ +\xf7\x9a\xb8\xcf\x83\x72\x26\xb9\x4b\xcd\xf8\x49\x06\x24\xa8\xfd\ +\x1c\xe3\xf5\xa0\xbb\x17\x15\x65\x17\x4b\xcd\x4e\xac\x34\x20\x8b\ +\x7d\x17\xfc\x0c\x38\x0d\x8e\x93\x89\x84\x29\x8f\x4c\x5b\xef\x4c\ +\xf6\xd9\x32\x50\x58\x8c\xbe\xd5\xbe\x3e\xe2\x68\xc7\x71\x33\xe3\ +\x46\xf9\xed\x6a\xdb\xb6\x67\x0f\xac\x9f\x63\x19\x17\x64\x25\x3e\ +\x2f\x08\x85\xeb\xcf\xe9\xfe\x77\x12\xea\x93\xb3\xd3\xd3\x76\xba\ +\x3d\xd3\xee\x98\x9e\x1c\x0c\x8c\x1d\x25\x4d\x9c\x68\x93\xf8\xb5\ +\xfb\xf1\x25\x86\xb5\x4f\xc0\x8e\x99\x94\x7d\xf0\x59\x82\xfa\x24\ +\xf9\xb9\x10\xa3\x4b\x50\xb5\x01\x9d\x48\x4c\xc1\xc7\x62\xb0\x5a\ +\x5a\xc6\x78\x46\xca\x91\x4b\x8c\xcf\x69\x31\xd5\x65\x41\x87\x5e\ +\xb3\x8d\xb0\xb1\x3d\x84\x06\x3e\xeb\xa6\x71\x18\x3b\xeb\x91\xe7\ +\xf4\x24\x52\xd8\x39\x86\xce\x9e\xfe\x33\x6d\xa9\x03\xbe\x71\x86\ +\xde\x9b\xa0\x8d\x28\x54\xf1\x22\xa6\x45\x69\x03\x11\x2f\xc8\xaa\ +\xc7\x90\xa3\x81\x49\x7d\xd0\xe8\x89\xa9\x9c\x78\xd4\x33\x5f\xd1\ +\x1e\xc1\x55\x0a\x3f\xd3\x93\x30\x91\xf4\x28\x02\x59\x56\x60\xa4\ +\x5f\x02\xcc\x6a\x92\xe8\x78\x19\x14\x39\xf5\x1c\xcb\xe8\x36\x52\ +\x8e\xe1\xbb\x3c\xe1\xb6\x26\xdd\x31\x18\x58\x27\xde\x7e\xd8\x8a\ +\x20\xcb\xfe\x98\xc7\x82\xb5\x61\xf0\x33\xa5\x34\x33\xdb\xec\x3f\ +\xc9\xb9\x09\xb1\x3c\x0d\x28\x06\xcc\xe2\xcd\xb3\x09\xf8\xba\xec\ +\x7d\x3a\x49\xf2\x00\xae\xf2\x26\xab\x1d\xeb\x80\x7c\x46\x2b\x63\ +\xa8\xdf\x14\x67\x02\xb2\xc1\xe4\x95\xa8\xf8\xd5\x0b\xe5\x1b\x87\ +\x1d\x9a\x94\x54\x47\x8c\xc1\x47\xba\xe0\x0e\x1c\x15\x53\x09\x13\ +\xa4\x9f\xf9\x0e\xcc\x4c\xbe\x40\xea\xe2\x66\x91\x98\x9d\xd0\xf4\ +\xd7\x24\x0c\xf3\xb0\x0b\x39\x90\x3c\x8f\x79\x64\x50\xa5\x71\x5c\ +\x04\xd9\x6e\x5e\x7c\x96\x46\x4a\x95\x36\xa9\xb1\x0d\x02\x0e\x3f\ +\x74\xf5\xb3\xae\xa0\xdb\x92\x52\x50\xfc\x54\x62\xea\x06\xc4\xd8\ +\xa2\x15\x77\x96\x67\x8c\x46\xb9\x1f\xaa\x1c\x50\xe3\x91\xdb\x46\ +\x42\xe7\x04\x5d\xf6\x25\x0c\x58\x0a\xdb\x89\xb9\x7e\x61\x39\x40\ +\x3c\x22\x1b\xd0\x0f\xb7\x6d\xe5\xbb\xfb\xa3\x65\x78\xa3\xfd\xbc\ +\xd8\x57\x83\x9d\x2a\x80\x7d\x32\xa3\xca\x56\xd2\x26\xd2\xbd\xc6\ +\x13\x86\xe2\x02\xf2\xc1\x57\x54\xa9\x62\xbf\x8b\xbb\xde\x48\x7b\ +\xd4\xde\x7a\xf3\x4d\x09\xc5\xbf\x46\xf8\x03\x0e\x38\xe0\x80\xdf\ +\x64\xf8\xb2\xc3\x01\x07\x1c\x70\xc0\xdf\x35\xbc\x74\x0e\xc8\x0c\ +\x52\x33\xfa\xcd\xc9\x49\xdb\x9c\x9e\xfa\xb7\xe1\x63\xd1\x50\x5e\ +\xca\x99\xf1\x17\xbd\x40\x2c\x4a\x25\x77\xee\x8d\x27\xf4\x9e\xdc\ +\xa6\x24\xa4\x42\x11\xe8\x93\x9c\xb0\x88\x3d\x14\xdb\x17\xbe\xc8\ +\x9c\x4f\x8b\xa3\x65\x9c\x39\x9f\x9c\x32\x53\x83\x92\x98\x66\xb3\ +\x0c\x62\xba\xbc\x28\x80\x4d\x37\xf7\x1c\xdd\x89\x72\x91\x8a\xa9\ +\x4a\x95\xae\x63\x60\x2a\xc0\x02\x33\xf3\xd7\x82\x02\x11\x6b\xe8\ +\xb7\x8a\xd1\x8b\x90\x2e\xaa\x44\x8e\x7d\xf2\xd0\x02\x0b\xc0\x58\ +\x82\x4d\xa5\x43\x4f\x0b\x4e\x21\xed\x2d\x91\x73\xe4\x61\x8f\xa7\ +\x8d\x56\xfa\xa8\x54\x8a\x8b\xfc\x6b\x8b\xe2\xe2\x94\xec\x21\xfc\ +\x93\xa1\xf2\x74\x5c\x47\x98\xf2\x8a\x9d\xe8\x66\x20\x2a\x3b\x24\ +\x47\x8e\xe4\xac\xf2\x7b\x92\x11\x75\x2d\x19\x55\x8f\xa7\x75\x22\ +\x07\x6e\x4e\xf9\x2c\x53\x12\x19\x45\xb9\x5e\xec\x7c\x89\xf1\x77\ +\xed\x6d\x97\x32\x5b\x56\x40\x5b\x67\x1e\x28\xc9\x1c\x93\x76\x07\ +\x12\x51\x1c\x9a\x1d\xad\x75\x71\xdc\x17\xb0\x31\x3f\x6d\x02\x76\ +\xee\x5a\x21\xfc\xb2\x29\x89\x3d\x75\x2b\x81\x8c\x20\xe9\xb2\xa5\ +\x8d\xf9\x3c\x21\x62\x1b\xc8\xee\x15\x16\x1e\x53\x81\x09\xe9\x17\ +\x26\x81\x34\x74\x36\x46\x9e\x63\x2a\x66\x27\x70\x20\xc5\xa3\x77\ +\xff\x69\x99\x99\xcb\xfe\xf8\x85\xf9\x91\x3a\xc0\x6e\xe8\x32\xe5\ +\x01\xec\xad\xcb\x41\x06\x23\xf4\x72\x4b\x90\x30\x1f\xb2\x28\x47\ +\xc9\x6f\x1d\x7b\x7e\xb4\x88\x63\x56\xb9\x52\x5d\xe0\x61\xc3\x53\ +\x6b\xab\x55\xed\x4b\xe9\x74\xbe\x4d\x37\xd3\xb0\x61\x13\xc7\x2f\ +\x3e\x71\xec\x87\x01\xe7\x67\xc8\xc2\x26\x0a\x94\xbc\xae\x14\x03\ +\xf8\xa2\xc1\x48\xcf\x18\x07\x19\x30\xe7\xcd\xb1\x19\x5c\x66\xa1\ +\xd0\x2d\x43\xbc\x0a\xae\x18\xd3\xf4\x6c\xd3\x80\xce\x29\xa6\x2f\ +\x94\xd5\x93\x7d\x85\xa4\xc7\xb6\x95\x1a\x51\xdf\x07\x29\x24\x1b\ +\xdd\x07\x37\xd1\x93\x76\x94\xbb\x5f\xcb\xc9\xe7\xc7\x3e\xa4\xc7\ +\xe8\x08\x64\x3e\xb9\xb3\xc5\x80\x5a\x95\x7d\xf0\x41\x4f\xa4\xfd\ +\x54\xb0\x9b\x1c\x6c\xa8\x34\x06\x5f\xdc\xf0\x53\xa0\x47\x6d\xad\ +\xcf\xf5\xbd\x98\xed\x68\x10\xa5\x7f\x6e\x2c\xc3\x2c\xb1\x0c\x0b\ +\x5f\xe9\xd7\x19\xf7\xd4\xdf\xdd\xa1\x7e\xdf\xac\xd7\x3a\x37\xf9\ +\x0f\xb5\x68\x6c\x37\x87\xd0\xf1\x61\x49\x0d\xf6\x03\x66\xdd\xb9\ +\xaf\x6f\x91\x45\x21\x6c\x8c\x05\x1b\x82\x45\xdc\x39\xb2\xfc\x2f\ +\x0a\x0e\x35\x55\x16\xd6\x73\x8d\x49\xf4\x52\x60\x16\x55\xd6\x11\ +\x5f\xd5\xc2\x39\xde\x30\x26\xc6\x78\x90\xf3\x24\x6f\x39\x73\x58\ +\x33\xd6\xf5\x61\x2d\x03\x0e\x67\x93\xf3\xb0\x57\x8e\x0f\x2f\xe7\ +\x25\x4b\x79\x8f\x17\x4e\x5d\x07\xcb\x86\xa9\x4e\xbe\x8a\x42\xc1\ +\xfc\x2b\x64\xb0\xc8\x98\x51\x27\x60\x53\xeb\x39\x13\x2f\x07\x4b\ +\x3a\x8d\x9c\xbb\xc1\x4a\xc1\x0c\xbc\x05\xc1\xbb\xde\x68\x53\x06\ +\xaa\xa3\x9c\x55\x87\x0a\x1e\xa4\x04\xd7\xc9\x84\xd9\x0e\xd4\x36\ +\x59\xc8\x61\x67\x72\x31\x15\x6b\x07\x19\x64\x0c\x01\x6d\x3e\x75\ +\xc6\x3e\xff\xb9\xac\x87\x58\x8b\xea\xaa\xd1\x06\x3a\xf8\xb0\x9d\ +\x74\xa3\x15\x30\xbf\x57\x28\xc8\x19\x7f\xb3\xbd\xd0\x84\xf9\x34\ +\xec\xfe\x22\xdc\xfe\x10\x94\x4b\x49\x2c\xd5\x7e\x01\x36\x63\x70\ +\x76\x12\x03\xdf\x0b\x0b\x40\x96\xb8\x30\xa8\x3b\x96\x55\x03\x93\ +\xdd\x3e\x8f\x09\x75\xc8\x00\x8e\x73\x50\x1e\x1e\x0b\xc6\x93\x0b\ +\x85\x95\x65\x01\xd0\xef\xa9\xc1\x52\x6c\xdf\x12\xee\xb1\xdf\x87\ +\xc1\xdc\xe7\xc4\xe0\x16\x35\xc8\x7a\xd0\xa7\xcb\x90\xe6\x43\xe8\ +\xcf\x42\xbd\xea\x3c\xee\x10\x6d\xd6\xe7\x8b\x25\x8e\xe8\x76\xc3\ +\x93\x10\x98\x9e\xca\xcf\xcc\x32\xce\x75\x8f\x29\xda\xf8\xe7\x5c\ +\x43\x11\x21\x49\x0e\x60\x91\xf8\xf8\x1f\xb5\xb2\xb1\x3e\xe5\xc8\ +\x48\xf8\xb9\x48\xcb\x90\xc0\x84\xce\x5c\x8a\x06\x95\x53\x94\x32\ +\xb5\xcf\xbc\x95\xda\x54\x1a\x60\x55\x56\x6d\x44\xd5\x17\xfd\xa4\ +\x8e\xf6\x14\xef\xee\xae\x70\xc8\xe9\x5f\x9e\x9a\x35\x46\xe5\x1c\ +\xfb\xa5\xbb\x98\xca\x1d\x11\xd2\xde\x27\x85\x1d\xe3\xb9\x05\x74\ +\x48\xa2\xbf\xef\xc5\x3e\x9d\x1c\x7a\xb4\xca\x94\x7b\x3d\xab\x36\ +\x1f\x9f\x9c\xb6\x07\xc7\x0f\xc4\x0f\x95\x78\x59\x19\x07\x1c\x70\ +\xc0\x01\xbf\xc1\x60\xba\x73\xc0\x01\x07\x1c\xf0\x6b\x07\xe6\x76\ +\xcb\xf9\xdd\xfd\x93\xd5\x5d\x0d\x37\x47\xb6\x0f\xce\xda\xfa\xf8\ +\x2c\xff\x6c\x39\x86\x43\x2f\x38\x9c\xc7\xd6\xb9\x57\x88\x70\xcb\ +\x12\x93\x77\x96\x35\x72\x96\x72\x23\xe8\x2e\x19\x55\x33\x66\xb7\ +\x8e\x1d\xbd\xfc\xca\x27\xcc\xc2\x2d\x38\xaf\xf1\x40\xe6\x64\xf6\ +\x65\x43\x4c\xbd\x7d\x31\x96\x1c\x39\x90\xd3\x14\x05\x43\x71\xb3\ +\xd5\xc9\x60\x9c\xbe\x33\x64\x5d\x77\x80\x4f\x0f\x3c\x95\x60\xb8\ +\xa2\xf3\x34\xb3\x60\xf2\x2f\xc1\x70\x89\x46\x3c\x16\xfb\xcb\xa2\ +\x9f\x7c\xb1\xb5\xc2\x69\x63\x4b\xf3\x21\x8c\x0b\x3b\x54\x37\x62\ +\xc0\x61\xc5\xcb\x37\x23\xb8\x10\xc0\x85\xfc\xd5\xaa\xad\xb6\xdb\ +\xb6\xda\x6c\xb4\xb0\xca\x95\x95\x43\xa8\x36\x37\x37\xed\xee\xe6\ +\x56\x24\x2b\xcf\xfa\xd9\x50\x6d\x5d\x46\xd0\x50\xb1\x7c\xb4\xd3\ +\x94\xb0\x21\x51\x3c\x22\x63\xb4\x62\xbb\x68\x9f\xed\xd2\x82\x3a\ +\x9a\x4c\x3e\xd1\x17\xb9\x80\xfd\xe6\x4e\x10\x5c\x4e\xd9\x65\x0e\ +\xdf\x57\xc1\xda\x74\x57\x04\x62\xec\xaf\xf7\x4a\x51\xad\x8b\x96\ +\x84\x6d\x1e\x8d\xf6\x5d\x02\x4d\x24\xdb\x18\x13\xd5\xd1\x45\x49\ +\x0c\x26\x41\x7a\x6f\x0c\xdc\x12\xd2\x7b\x47\x43\x47\x45\xc6\x12\ +\x8b\x0c\x99\x92\xde\x71\xbc\xa7\x42\xa0\x7b\x9c\x44\x13\xc1\x0b\ +\x6a\x6b\x0a\x51\x83\x09\x58\x86\xbf\xe5\x66\x07\x8b\xb9\x71\xc7\ +\x32\x4a\x86\x88\x02\x3b\x03\x96\xfc\x92\x5b\xa0\xc2\x6a\x5f\xee\ +\x2b\xba\x47\x43\x39\x86\x66\xdf\xef\x73\xb0\x70\x52\x98\x1a\x4c\ +\xfb\x21\x04\x96\x31\x8a\x77\xa2\x20\xf8\x30\xa0\x76\x56\xcf\x6c\ +\xb8\x98\xc1\x85\xe0\x10\x38\x33\xe2\x4c\xf4\x9b\x1b\xd9\x6b\x9d\ +\x83\xbe\x30\x57\x29\x03\x98\xe5\xa6\x1b\x6c\xc4\x8a\x9b\x4b\xc8\ +\xe3\x98\xc5\x92\xbe\x9f\x0e\x13\x1d\xf0\x14\x54\xc9\xa0\xec\x48\ +\xc9\x59\x17\x32\x48\x24\x96\xa2\xb4\x2e\xf2\x2c\x00\x32\x32\x23\ +\x7c\x92\xc9\x76\x74\x1f\x6f\x5c\x93\x5d\x58\x3c\xe8\xfc\xcd\xe8\ +\x18\xf5\xa6\x78\x81\xb0\x4a\x5b\x65\xae\x4a\xf6\x4f\x98\xa6\x43\ +\x9a\x00\x24\xde\x2d\x20\xd5\xd9\xaa\xd0\x99\x0a\x0c\x6e\x33\x58\ +\x5e\x9b\x2c\x2f\xf8\xc9\xdb\xac\x31\xf4\xd9\x94\x65\x9e\xdb\x51\ +\xa8\x54\xbe\x93\xb8\xf7\x7c\xe6\x79\x36\x53\xae\xb9\xc4\xed\x5d\ +\xbb\xc6\x7f\xc3\x13\x6a\x27\x1e\x8f\x77\x31\xd5\x6c\x24\xbf\x70\ +\x54\xe5\xff\xae\x61\x5f\xbb\xe8\xf3\x24\xb6\xab\x4d\x5b\x6f\x8e\ +\xf5\x99\x98\x12\xdb\xe7\xb9\x6c\x4a\xe0\xdc\xad\x38\xb9\x0f\xee\ +\xdf\x15\xda\xe3\x83\xed\x74\x1c\x24\x4c\xdc\xef\x5d\xc0\x62\xfa\ +\x5c\xe8\xde\xa6\x26\x0e\x2c\x63\x71\x2e\xb9\xe0\x7b\x51\xaa\xf0\ +\xd4\x36\x43\x4c\x91\x26\x0a\x84\x7d\x6c\x89\x9e\xff\xd4\xaa\x76\ +\x66\x62\xdc\x4a\x3d\xe8\x94\xc3\x64\x2b\x24\xec\xc3\x49\xb0\xfa\ +\x18\x0f\x2f\xfe\xeb\x28\xa0\x1c\x81\x0c\xe3\x25\xd2\x22\xca\x81\ +\x51\xb9\x0c\x85\x39\x1c\x86\x3d\x31\xd0\x67\xee\xb1\x04\x1e\x9b\ +\x88\x67\x53\xf3\x49\xa3\xcf\x64\x79\x4a\x1d\x8b\xb2\x93\xcd\xc2\ +\x95\x42\x36\xb1\x30\xc8\xc8\x79\x13\x2b\x60\x7d\x6e\x9d\xe4\x13\ +\x75\x74\x69\x09\x38\xfc\xa1\x25\x45\xc1\x31\x56\xc7\x99\xe5\x82\ +\xe5\x41\x1a\x65\x87\x9e\xa1\x82\x0a\x75\xe3\x04\x2c\xe3\x0c\xdf\ +\xe0\xc8\x27\xf6\x2d\x1c\xc8\xf0\xbb\x0f\x8b\x02\x47\xd6\x31\x2a\ +\x10\xba\xd0\x77\x13\x54\xf0\xfa\x08\xb0\x15\x3f\xa7\x6c\xb8\x50\ +\x53\xdd\x76\x40\x45\xac\x7c\x1f\xfc\xe5\x33\x9c\x49\x18\x3a\xd0\ +\xe0\xb1\x13\x58\xc7\x5d\x7d\x8b\x45\x76\x76\x57\x7d\x3d\x04\x2b\ +\x95\xe7\x8e\x5b\x87\x34\x36\x0e\xd2\x3e\xa4\x90\x98\x5e\xa8\x67\ +\x28\x3b\x30\xea\x42\x5e\x92\x85\x97\xeb\x3a\x61\x19\x37\x76\xdb\ +\xc2\xc7\x7c\xfa\xe5\xf1\xd8\x93\x81\x4c\x36\x4b\xf9\x68\xbb\x83\ +\xbd\xc2\x8e\x1d\x2d\xe1\x4b\xa8\xbc\x42\x17\x3a\x4d\xff\xdb\x98\ +\x3a\x93\x32\x53\x8a\x7d\x83\x8e\x73\x9c\xf1\x05\xbf\xdc\x92\xa1\ +\x52\x66\x8c\xb4\x89\x38\x6f\xcb\x83\xcf\x55\x2d\x71\x62\x5c\x49\ +\x43\x7f\x7f\xd0\x4f\xb3\xce\xcf\x55\x07\x2b\x3f\xd3\x23\x42\xda\ +\xdb\xb6\x84\xe4\xa8\x4a\x5d\x74\xa4\xa2\xc6\xca\x4e\x58\x8a\x28\ +\xd9\xa5\xcf\xaa\x10\x52\x46\x0e\xf7\x5b\xd2\x01\x4a\x88\x52\x26\ +\xc9\x14\xd7\x73\xc9\x99\x24\x21\xb6\xa4\xb3\xa2\x5e\x82\x88\x30\ +\x7a\xb0\xaf\x82\xab\x39\xcd\x0c\x4b\x51\x95\x99\x9b\x29\xde\xcb\ +\x31\x59\xd8\x31\xc8\x01\x7d\xbf\xd0\xd6\xdb\x93\x76\x76\xfc\xb0\ +\xad\xb7\xc7\xf3\xf2\x8b\x7e\x75\x71\x07\x1c\x70\xc0\x01\xbf\x51\ +\xe0\x1a\xc3\x01\x07\x1c\x70\xc0\xdf\x29\xec\x99\x96\xee\x42\x93\ +\xd7\xe3\xe3\x6d\x3b\x3e\x7d\xd8\x6e\xf0\xe0\xaa\x6c\x4e\x14\x3d\ +\xe1\x8e\x77\xf2\x81\x50\xa7\x91\x33\x34\x22\xa0\xc9\x52\x65\x8c\ +\x4c\xea\xcb\x74\x42\x45\x16\x3a\x29\x02\xba\xd2\x0e\x42\xe8\x70\ +\xa9\x77\xd6\x03\xb3\xd0\x51\x96\x65\x8d\x21\x66\xe1\x60\x6a\x26\ +\xdf\x61\x61\xca\x46\x45\x05\x4f\x99\x27\xfe\xfb\xf4\xc2\x40\x16\ +\x62\x01\x93\x98\xe9\x61\x94\x32\x9b\x61\xc9\xa7\x20\xda\xa6\x8d\ +\xea\xd0\x4d\x2c\x53\xf2\x85\x91\x29\xd5\x35\x90\xcc\xa2\xb9\x5a\ +\x30\x74\xbe\x2e\x12\xf0\x49\xa8\xfd\xef\x9b\x33\x1b\xe4\x71\xf3\ +\x6c\xb5\xdd\xc4\xa2\x62\xb3\x69\x2b\x9e\x52\xa3\x1d\x32\xf7\x13\ +\x2e\xdc\x40\x63\xa5\x79\xc7\xef\xcd\x2b\x26\x75\x82\xe6\x9b\x9c\ +\xc9\x3b\xf9\x15\x88\xbc\xb8\x04\x7e\xc8\x32\xeb\x6a\x8b\x8a\x29\ +\x0c\xfc\x52\x25\x44\x2f\xa7\x62\xd4\x8f\xbb\x6a\xa1\xef\xd7\x07\ +\x4c\x98\x0a\x81\xa9\xa4\xcd\x6b\xa1\xc5\x62\xcb\xb1\x32\x20\xf2\ +\x59\xec\x5d\x64\x28\x61\x1f\x05\x86\x00\x5d\x41\x5d\x2a\x9b\xf4\ +\x88\x6c\x52\x76\x5d\x00\x86\xa3\xac\x08\xe9\xc6\x63\x0f\xaa\xb8\ +\x58\xbc\x06\xe7\xa6\x97\xa2\x62\xf6\xb8\x93\x0f\x58\xa8\x16\x0c\ +\x71\x11\x8d\x1e\x82\x9d\x24\x43\xec\x54\x4e\xb3\x33\x63\x81\x45\ +\xe0\x7b\x30\xf3\x77\x39\x41\x92\xc7\xbe\x12\xc9\x61\x1a\x94\xde\ +\x65\x00\xa0\x47\x7e\x00\x75\x4c\x75\x1c\x07\xda\xda\x34\x8e\x4a\ +\x1f\xef\x1d\xa2\xb3\x4d\x71\x1e\x64\xf2\xf9\x58\x7c\xd0\xf5\x24\ +\x69\x3f\x3f\x74\xbe\x58\xc6\x79\xc3\x95\x1a\x9f\x53\xd8\xdc\xea\ +\xb4\xd4\x39\x5e\x7d\xc5\x8d\xed\x95\xce\xc9\xcd\x2a\xbe\xfb\xa0\ +\xc6\x55\x2c\x37\x53\x32\xba\x78\x25\x3f\xbb\x70\x33\xdc\x44\xd4\ +\x17\xd8\xce\x9b\x9d\x3d\x24\x84\x95\x6f\x8b\xfb\x9d\x5e\x55\x7e\ +\x47\xf0\xe8\xe3\x95\x92\x24\x7c\x1c\x55\x02\xdc\x10\xb3\x41\x17\ +\x28\x59\xf0\x0a\x60\xd7\x77\xdc\x1e\x54\xbc\x2a\x53\x1b\x27\xe8\ +\xe4\x5f\x07\xfd\xc0\x9f\x80\x64\x2a\xf6\x35\xe2\xbc\xac\xbc\xa1\ +\xfe\xb9\x3b\x64\x3e\xda\xa6\x70\x87\x8a\x0c\x1f\x87\x56\xc2\xaf\ +\x3c\xc9\xfd\x9f\x7b\xca\xed\xa7\xcd\x8d\xda\x72\x74\x7c\xec\x2f\ +\x40\x58\x9e\x61\x3a\xca\xf9\xcb\xc4\xb2\xcc\x11\xf7\xe9\xdc\x80\ +\x20\x7f\x65\x41\xdf\xdd\xd3\x7f\x54\xdd\x7b\x42\x9f\x99\xc7\xab\ +\x53\xf1\x9c\x8c\x53\xa3\x3c\x26\xb0\x13\x07\xd9\x7e\x0c\xba\x61\ +\xe7\xf5\x73\x11\xbc\xcc\x1d\xbc\x4c\xbf\xb7\xfe\x38\xdc\xd3\xb8\ +\x8a\xb5\x38\xb6\x43\x3c\x2f\x08\x13\x9b\x59\xdc\x1d\x33\x9f\x10\ +\xc3\x49\xc9\x73\x0e\x53\x1b\xfb\x87\x8e\xb1\xcd\x7d\xaa\x37\xa2\ +\x88\x18\x5b\x84\x58\x11\x0b\x49\x49\x8b\x8e\xcf\x72\xc6\x3f\xac\ +\xba\xd0\x89\x9f\x30\x83\xe5\x02\x39\x79\x15\xd0\xc7\xb2\x10\x1a\ +\x7d\x2c\x97\x4d\x90\xe1\x53\xe2\xba\xc9\x66\x7f\x78\xeb\x5c\x33\ +\xf3\xae\x38\x71\x53\x17\x95\x8e\x18\x61\x20\x64\x88\xc8\x31\xe4\ +\x43\x23\x68\xff\x83\x53\x18\xa3\xb1\x61\xc4\xf5\xdb\x52\xcb\x01\ +\xb1\xe1\xc2\x41\xa4\x04\x25\xeb\x28\x5a\x39\xc5\x70\x93\x6a\xa6\ +\xc6\x67\x61\x0f\x5b\xa9\x1b\x2b\x27\xb6\x93\xe8\x12\xbb\x3c\xc1\ +\x7c\x31\x89\xb2\x37\x30\xc0\x2f\xf3\x57\xc0\x4f\x27\xef\xb4\xeb\ +\x7e\x60\xf9\x0a\x93\x28\xbb\x8a\x26\x77\xd2\x86\x7e\x29\x5e\x70\ +\xb5\xf9\x59\xf4\x85\x2c\x3e\xbb\xb5\x2f\x6d\x1f\x7b\x62\xd8\x1b\ +\x3b\x88\xfa\x2c\x6a\x25\x36\x6e\xfc\xe8\xcd\x47\x9d\xdd\x23\x46\ +\x59\x72\xb4\xc4\xd1\x2e\x94\x3e\x4c\xac\xeb\xcc\x12\x83\x98\xb8\ +\x31\xdf\x80\x89\x64\x5f\xf7\xab\xf8\x4a\xc8\xac\x67\xb3\x04\x3a\ +\x8c\x46\x1d\xb2\x7d\xb6\x81\x49\x23\xbf\x1d\xb3\xea\xad\x51\x31\ +\xd1\xae\x33\xc4\xac\xc8\x12\x06\x39\x54\xdc\x30\x97\xac\xdb\x1b\ +\x64\x56\x31\x38\xef\xa5\x0c\x1e\x7d\x22\xc2\x65\x68\x63\x92\x4d\ +\xdc\xe4\x37\x32\x0b\x4f\x9b\xa4\xcc\x94\x31\xce\xa6\xfc\xeb\x16\ +\xb6\x0d\xfb\xbe\xe1\x3d\xb9\xcc\xe8\xb0\x01\xe1\x13\x23\x40\x20\ +\xc6\x41\x81\x9b\x83\xa3\x93\x84\xa1\xe1\xe8\x98\xca\xbf\x1f\x93\ +\x2f\xd4\xc4\x4d\x63\x29\x98\xd5\x0b\x38\xf4\x3c\x7e\xf8\x87\x61\ +\x1c\x83\xfb\x70\x9f\xbc\xf0\x2a\xfd\x2e\x26\x8f\x79\xff\xee\x8f\ +\x54\xd2\xb0\x9b\xea\xb9\xdb\x57\xf4\x23\x5a\xda\x7e\xab\xf9\xf7\ +\xcd\xf5\x8d\x96\xbc\x8f\xe6\x3b\x62\xc4\xeb\x74\xf7\x01\x07\x1c\ +\x70\xc0\x6f\x10\xb8\x2c\x71\xc0\x01\x07\x1c\xf0\xe5\xa1\xe6\x71\ +\xbf\x52\x50\xa5\xb4\xf2\x38\xd9\x1e\xb7\xcd\xa3\x93\x76\x7b\xb7\ +\x89\x89\x74\x4d\x9e\x6b\xc2\x48\xde\x27\x8f\xd9\x90\x6a\x8f\x66\ +\xe0\xb1\x20\x61\x32\x4a\x2e\x99\x93\x36\x65\xe3\x5c\xfa\xe2\xef\ +\xc1\x52\xdd\x8b\x4c\xec\x73\x5f\xda\x74\x60\x6c\x87\xf2\xca\xbc\ +\xb7\x25\x09\x56\x5e\x4a\x5e\xd0\x26\xdb\xf3\x8e\x6a\xdf\x20\xec\ +\xe4\x58\xab\x99\xd3\x2c\x88\x17\x2a\x2f\xe9\x80\x50\xb9\x07\xa3\ +\xeb\x48\xa1\x11\x8d\xb4\x78\xc1\xc6\xc9\x0d\x74\x90\xda\x28\xb9\ +\xb6\x2e\x3e\x63\x06\xe9\x1a\x72\x31\x89\x7b\x61\x5e\x47\x67\x15\ +\xe3\xda\x3c\x3f\xe5\x28\x62\xad\xfe\x58\xaf\xdb\xd1\x86\xa7\xd2\ +\x36\xf1\x54\xda\x66\x2d\x9b\xac\x0b\x17\xfc\x6f\x6f\xf4\xbe\x69\ +\x77\xd7\x41\x37\xe5\x77\xe2\x59\x88\xdc\x69\x21\xe2\x02\x28\x30\ +\xeb\xe3\x94\x7c\x5c\x7c\x88\x9a\x84\xcc\xe2\x44\x27\x02\x59\xbf\ +\xb9\x54\x42\x04\x33\x61\x2c\x86\x42\x9e\x8a\xae\x9f\xf8\x5e\x0e\ +\x39\x29\x43\x8d\xa8\x8b\x61\x51\x76\x2d\x57\x17\x76\x43\x1c\x93\ +\xcb\x20\x85\x51\x0e\xdd\x79\x07\xbf\x1f\x69\xc7\xc5\xc0\x28\x7f\ +\x5e\xc0\x5e\x6f\x9b\xe4\xbe\x7e\x0d\x44\x9b\x16\x91\xdc\xf6\xc0\ +\xb2\x8c\x31\x2e\x3a\xeb\x47\xe1\x6b\x16\x5c\x8b\xf6\xb1\x84\x59\ +\x97\xcf\xb0\x2b\x01\x21\x55\xa0\x8c\x35\x2f\x7a\x2e\xa4\x47\x62\ +\xbf\xab\xb5\xe4\xdd\x78\xea\x2b\xf4\xc5\x75\x19\x49\xc7\x6a\x5c\ +\xc0\x28\x29\x10\xed\x0a\x2c\x64\x05\x0a\xc9\x1b\x5b\x2e\x5b\x22\ +\xc7\x8f\x8d\x53\x8c\x99\xa2\xf3\x86\x34\xe7\xd4\x2d\x34\xe7\x12\ +\xe7\x91\x72\xce\x27\xcb\xef\x24\xc3\x96\xd0\x6c\x38\x59\xfd\xc4\ +\x9a\xce\x51\xca\x59\xc5\x4f\x42\x16\xfc\xa4\x1a\x1b\xe9\x2c\xe6\ +\x18\xca\x86\xc7\xee\x8d\x58\xc8\x5d\x3f\xab\x22\xf7\xa9\x89\x3e\ +\xde\x91\x4c\x5b\x9a\xfc\x44\x1b\x03\x33\x93\x19\xa9\x1c\x8e\xab\ +\xd7\x42\xd6\x7b\x38\x58\x8c\x7b\xa3\xd8\x3e\x92\x3d\x70\xc5\xdf\ +\x8d\x4b\xa0\xbf\x17\xf3\x72\x80\x25\x8b\x7a\x17\xb7\xbf\x39\x73\ +\x61\xf4\x99\xa2\x64\xe8\x38\x8e\x4c\x65\x3e\xc7\x28\x75\x24\x04\ +\x4a\x19\x65\xd6\x14\xe0\xee\xf1\xbe\x4d\x81\xc0\x17\x1e\xae\xef\ +\x34\x6e\x3f\x7c\xe4\x71\x1b\xa7\xe5\xd8\x31\xc3\x4b\x54\x5f\x0a\ +\x7e\xd9\xe5\x7d\xd1\x78\x45\xfd\x75\x06\xb7\x63\xf5\xfb\x83\xd3\ +\xc7\xb2\x5d\x4f\xfb\xbc\xfb\xdd\x17\xe0\xfe\xc0\x68\xe2\x08\x28\ +\xe4\x0e\x77\xec\x3d\x7e\xf7\x85\xf2\xf1\x92\xf4\xe2\x58\xdd\xe5\ +\x17\x50\xcc\x29\xec\x78\x44\xcd\xfd\x7c\x3c\xa2\x7d\x49\xb8\xae\ +\xca\x20\xbb\x9f\x41\x6c\x24\xd3\x49\x76\xb7\x1a\xce\xa1\x1e\xb6\ +\xca\x47\x23\x1a\x53\xf3\x53\x0e\x4a\x6e\x9f\x41\x61\x92\xd8\x7e\ +\x01\xd1\x22\xa0\x3d\xcf\x83\x36\x1f\x36\xb6\x55\xf2\x94\x06\x1b\ +\x52\x0e\xc9\x16\x89\xe8\x74\x22\x3c\xa3\xb6\xb6\xef\xb6\x1e\xf2\ +\xad\x0d\x30\x98\x97\x4e\x47\x0f\x86\x39\xe6\xd5\x36\xc6\xdb\xb4\ +\x8f\x90\xe6\x43\x96\x72\x20\x3f\xca\xb5\xcc\x99\x36\xb3\xf1\x73\ +\x41\x77\x16\xa2\x98\xcc\xe9\xbc\xd7\x01\x65\xf0\xa1\x41\x5a\x8c\ +\xd5\x7b\x31\x16\x35\xe2\x35\x5c\x67\x75\x72\x59\x23\x9f\x29\xc1\ +\x51\x58\xac\x43\x2f\xe2\xa3\xeb\xa2\x85\x6f\xec\xab\xc1\xa1\xeb\ +\x82\x98\xb1\x83\x9f\x99\xdb\x3c\xfe\x83\x9b\xe5\x11\x15\xdd\x10\ +\x3b\x11\xf2\xc1\x32\xd9\xb0\x9c\x6a\x63\x79\x25\xf5\x41\xc9\x07\ +\xd7\xae\xaf\x7a\x80\x89\x1a\x91\xd2\xb4\xef\x29\x31\x90\x41\xd3\ +\xe7\x26\x32\xa7\x4c\x97\x5b\x85\x23\xb4\xc1\x90\xf5\xb3\x28\xb8\ +\x6c\x93\xfb\x58\x9b\x92\x17\x4c\x11\xae\x44\x63\x68\xe8\xe4\x61\ +\x27\xaf\xd1\x2c\x5f\x52\x3a\x59\x11\x96\xb1\x55\x6d\xfc\x54\x19\ +\xe7\x21\x76\x69\x28\x6d\x1c\x31\x51\x5b\xaf\x71\x8c\xd2\x87\x26\ +\x02\xa6\x9d\x4d\x44\x6b\xcc\x1b\x5b\xe9\xcc\x09\xbb\x94\x91\x17\ +\x29\x04\xa9\x2d\xbe\xa8\xfa\xb1\x8d\x66\xf2\x9b\xec\xc2\x86\xfa\ +\xc6\x69\x86\x4d\xf8\xc4\xdc\xae\x4e\xc2\x42\x78\x06\x70\x26\x25\ +\x4b\x3e\x26\x23\x6a\xdf\xd9\x01\x55\xd2\x38\xcf\x58\x02\x3f\x7a\ +\xe0\xf3\x41\x01\xc7\x98\x14\xf0\x92\x32\x02\x59\x46\xd9\xb9\x4f\ +\xf6\xd7\x7b\x26\x4c\xba\x44\x6e\x6d\xbc\x07\x4c\x32\x7e\xdb\xe5\ +\xf6\xfa\xae\xbd\xfd\xe8\xab\x1a\xa2\x37\x31\xbc\x2d\xeb\x36\x77\ +\x3e\xe0\x80\x03\x0e\xf8\x8d\x47\xcc\x68\x0f\x38\xe0\x80\x03\xbe\ +\x0c\xd4\xc4\xeb\x4b\x9a\x80\xbd\x72\x0e\x6a\xdc\x57\xf8\x51\x5b\ +\xf3\x84\xda\xf1\xa9\xbf\xd9\xce\x45\x83\xb2\x5c\x4e\xdc\xc9\xe6\ +\x51\x98\xdc\x57\xe9\xa5\xf1\x72\x24\xe9\x01\xb9\x28\x71\x66\x72\ +\xb4\x81\x9e\x16\xc0\x75\x73\x2b\x98\xca\x93\x18\xdd\x06\x94\xd9\ +\x1c\x0b\xe3\x0c\xeb\x54\x34\xf9\x52\xb8\x17\xb1\x64\x7a\x29\x50\ +\xd7\xc2\xa5\x2f\x3e\x0b\x4b\xef\xd0\xc7\x82\x2e\x25\xe4\xa6\x93\ +\xe0\x6d\x1e\x36\x78\x93\xb5\x19\x92\xfb\xdc\x3b\xac\xf2\x20\xcd\ +\x2a\xf3\x43\x68\x16\x92\xeb\x45\x53\xd7\x4a\x3c\x91\x26\xe6\x6e\ +\xbd\x6a\x47\x5b\xd1\x1b\x6e\xa4\xc5\x0d\xb4\xb5\xd2\xad\x2f\xcc\ +\x87\x3d\x07\x87\x6f\xa0\x71\xc1\xff\xfa\x3a\x6e\xa0\x71\xe1\x9f\ +\x1b\x01\x5c\x61\xe2\x66\x80\xf9\xba\x21\xa0\x42\x55\xef\x38\x1e\ +\xa0\x5d\xbc\x0a\x2d\x99\x60\x71\xf5\x6d\x19\x24\x3d\xb4\xb9\xe7\ +\x80\xc6\xf0\xa9\x4d\x9d\x68\x6b\x25\xdb\x64\x64\x6f\xc2\xc4\x1b\ +\xf8\x94\x15\xa6\x35\x26\x3d\x12\x66\x95\xbc\x5f\xc0\xe0\x83\xfc\ +\xe7\x06\x71\x2a\xb8\x51\x02\x30\x95\xdf\x31\x63\xd4\x26\xcc\x2b\ +\x4d\xd9\x0c\x33\x97\xc4\x4e\xdc\x11\xda\xa9\x75\xa8\x94\xd1\xec\ +\x28\x2d\xe7\x2a\x77\x0c\x94\xb2\x79\xec\x89\x73\x14\x6f\x52\x66\ +\x7a\xc2\xdc\x2f\x50\xb2\x7d\xba\xa5\x7f\xf4\x07\xc7\xa5\x88\x85\ +\x2e\x30\x08\x67\x24\x7d\x39\x09\xc6\xe3\x2e\x42\x71\x2c\x76\x66\ +\x3f\x6c\x90\x7e\x3e\x46\xc3\x36\xc8\xa0\xdd\xaf\x6c\xb0\x95\x0c\ +\x71\x1a\xd8\x26\x6e\x4a\xe7\x0d\x34\xce\x95\x6b\xce\x97\x48\xdc\ +\xa8\xbe\xbd\xb9\x8e\x73\x4c\xa9\x5d\xc9\x96\x9b\xd4\xf9\xd4\x1a\ +\x4f\xac\xf1\xe6\xe7\x1f\x79\x52\x6d\xb5\xcd\x9f\x82\xac\x73\x82\ +\x0c\x5d\x98\x49\x7c\xa7\xf3\x58\x65\xae\x78\xd2\x81\x4b\x03\xdd\ +\xcc\xe7\x80\x2a\x20\x0b\xbd\x5c\x69\x53\xf9\xe2\xbc\x96\x7d\xef\ +\x0b\xc9\xdc\x10\x93\x4a\x93\xbd\x45\x33\x3e\x64\x81\x2a\xed\x65\ +\xd8\xb5\x99\x8e\xc5\xd7\xf1\x0f\x2b\x6e\x2e\xc6\x1d\xc5\xf4\xe9\ +\xe4\x58\x9f\x09\x54\x79\xbf\xa6\xb0\x47\xab\x78\x11\x3d\x09\xb2\ +\x4c\x4b\x74\xd1\xd0\x6f\x53\x44\xa8\x89\x73\xf7\x27\x66\xf5\xea\ +\x66\x15\x2d\x72\x46\x0d\xc6\x6e\x8e\x07\x24\x1c\xb9\x0c\xcf\x57\ +\xa2\xee\x18\xc3\xb9\xdb\xba\x53\x29\x02\x2b\x95\x7c\xa9\xfe\xdb\ +\x02\xf5\xa8\xf4\x6b\x0b\xf6\x47\xec\x87\x87\x67\x6f\xe8\x63\x92\ +\xfd\x12\x3f\x8f\xcc\x39\xe1\x2e\xaf\x9d\x5a\xf9\xeb\x00\xdb\xdc\ +\x6d\xc0\x5d\xf4\xda\xfd\x94\xe3\x59\x41\x4c\x1c\x2d\xf7\x23\xb4\ +\xf7\xd8\xbc\xa4\x0e\xa8\xe2\xe9\x6d\x95\x20\xa6\xd4\xf7\x44\x92\ +\xc2\x1e\x41\x1b\xd9\x47\x86\x7b\x4c\xd9\xb2\xb6\xf8\x64\x25\xac\ +\x29\xbe\xc6\x9d\x49\x5b\xe8\x7c\x12\x61\xcd\x26\x22\xfb\x5c\xd3\ +\x26\x92\x46\x43\x77\x34\xa3\x0f\xe3\xb3\x72\x64\x69\xe7\xf9\x31\ +\x76\x72\xbd\xf5\x93\x49\xe9\x67\x3d\x4a\x08\xde\xf8\x85\xdc\x70\ +\x59\x39\xa2\xa9\xdd\x36\x45\xcf\x67\x80\xe4\x6e\x89\x36\x8c\xb7\ +\x11\x93\x12\x95\x1c\xa3\x5e\x18\xf1\xa6\x9f\xb2\xaf\x7a\xea\x25\ +\xcd\x81\x98\xc2\x3a\x92\xee\x1d\x6d\x83\x20\x3b\xad\x84\x4f\x99\ +\x18\xa5\x7b\x09\xdc\x49\x41\x9a\x70\x9d\xf6\xf8\x51\xf6\xac\xf2\ +\xaf\x81\x59\x88\xf4\x19\xc3\x67\x77\x75\x9e\x4d\xa7\x01\x7c\x67\ +\x02\x19\xa6\x77\x5d\x56\xa7\x0f\x9b\x55\xff\xc1\x2d\x5d\x9c\x57\ +\x17\xf9\x17\x1e\x0a\xf2\xf1\xcd\x11\x97\x85\x2f\x7c\xe4\xe3\x2e\ +\x1a\xe3\x74\x79\xd7\x4f\x86\x79\xc4\x44\x79\x49\xf3\x39\x0d\x45\ +\xaa\x38\x1d\x25\xdc\x51\x0c\xa0\x4e\x64\xc1\x2d\x50\x52\xe5\x8a\ +\xe1\xa6\x28\xdd\x7b\xb8\x18\x79\x9c\x8a\x77\x92\xc4\xaa\x91\x81\ +\x2c\x03\x18\x1a\x4d\xcc\x64\x0b\x35\x9f\xeb\xa6\xfb\x30\x93\x87\ +\xa1\x5f\xe9\x84\xda\x74\x22\xb5\x41\xbb\xaa\xb6\x50\xce\x01\x03\ +\x46\x9d\xe6\x59\xd4\x8b\x2f\x17\x42\xaa\xf1\x77\xa2\x23\x1c\x1d\ +\x81\x0c\x63\x25\xcd\x33\xe2\x3c\x87\x67\xff\x26\x2d\x68\x68\x88\ +\xa8\xa9\x73\x96\x69\x02\x46\x25\x21\x8f\xbd\x6d\x89\x62\xb9\x1a\ +\xe6\x28\xbf\xca\xb1\x30\x09\xea\x9f\x6d\xe8\xe7\xd4\x7d\x70\xd4\ +\x0a\x5e\x44\x62\xa0\xf7\x85\x70\xe8\x54\x94\xbe\xf2\x31\xcc\xcf\ +\x09\x42\x39\xb1\xe9\xf5\xdb\x87\x41\x2e\x92\xfe\x70\xb2\x7c\xd0\ +\xbd\x26\xec\x91\x31\x4c\x56\x08\x1f\xf0\x9a\x7f\xdf\x6c\xda\x37\ +\xbe\xfa\x3b\x12\x78\xc6\x9d\x48\xea\xf3\x17\x77\xc0\x01\x07\x1c\ +\xf0\x77\x1e\x87\x1b\x6a\x07\x1c\x70\xc0\x2f\x0f\xd3\xec\xec\x0b\ +\xc1\xeb\xcd\xed\xfa\x6c\x75\x02\xac\xd2\x7a\xbb\x6d\x67\x8f\xdf\ +\x10\xc9\x13\x0f\xab\xfe\x4d\x5c\x10\x55\x65\xd9\x30\x54\x5b\x7a\ +\x9b\x38\x97\x94\x09\xa8\x79\x16\x29\xca\xb8\x20\x10\x92\x01\x25\ +\x41\x37\x6a\xe5\x3b\xcd\xa4\x3b\x2c\x42\x15\xac\x63\x3b\xeb\x82\ +\x09\x7d\x41\x9a\x08\xd3\xa8\xb3\x17\x26\xd4\x4b\x64\xd9\x99\x86\ +\xe8\x8b\x04\xe5\x4e\xa1\xeb\xb0\x3a\x25\xa6\xd9\x54\x7a\x19\xa4\ +\xef\x81\xc2\xb6\xda\xec\xfe\x19\xd2\x64\xd7\x89\x85\x4c\x9e\xd4\ +\x5f\x24\x31\xa0\x6b\x41\x97\x59\x8f\x55\xc9\x3a\x11\xf5\x02\x5e\ +\x98\x65\xb5\xdd\x02\x7e\xba\x31\x2f\x3e\xf3\xdf\x4c\x3c\x95\x46\ +\x1f\xac\xd6\xeb\xb6\x86\x67\xb1\x68\x91\x36\x5c\xf4\xb9\xba\x6a\ +\x77\x97\x57\xed\xf6\xf2\xb2\xdd\x5c\xb1\xd8\x88\x8b\xff\xed\xe6\ +\xba\xb5\xeb\xbc\xf8\xef\x9b\x03\x5c\x10\xd2\x22\x0f\x3d\x37\xd6\ +\xb8\x09\xe0\x85\x2a\x25\x57\x7d\xa2\x4e\x21\x83\x08\x49\xb1\x73\ +\xa0\x64\x5f\x96\x05\x7c\x92\xb1\x79\x09\xb2\x07\x58\x73\xa6\x7d\ +\xef\x07\xda\x36\xf0\xa8\x7b\xf2\x06\xa3\xfb\xe1\x43\xc7\xae\xc3\ +\xc5\x30\x14\xde\xcc\xb1\x3c\x3e\x03\xe1\x37\xa2\x9b\x39\x78\x6a\ +\x1d\x77\x61\xbb\x88\x87\xce\x22\x11\xd0\x65\x3b\x95\x3b\xf3\x9e\ +\xf9\xf7\x66\x22\x53\x22\xab\x18\xee\x87\xea\xbb\x4a\x56\x28\xed\ +\xc3\xd0\x50\xc7\xa8\xd8\x0b\xcc\xdc\x2b\x6e\xa6\x22\x77\xa0\x58\ +\x5d\x5e\x46\x4a\x5c\x68\x88\x63\xe3\x15\xe8\x75\x73\xcd\x94\x26\ +\x9f\xa0\xd8\x2a\x99\x99\x1f\x33\x49\x04\x4a\x96\xe2\x49\x53\xc7\ +\x68\x57\x0d\x04\x50\x4c\xd1\xbe\x98\xa3\xe4\x31\x92\x27\xd3\x9c\ +\x38\x57\xe2\xe6\x59\xdd\x44\x3b\xf2\x13\x9f\xd7\x3a\xbd\x24\xbb\ +\xba\xd4\x79\xc7\xb9\xc7\xcd\x35\xd9\x72\x73\x4d\x31\x38\x7d\xb9\ +\x11\xbe\xe2\x7c\xdd\x8a\xe1\xc6\x1a\xe7\x31\x4f\x98\xd2\x44\xda\ +\x49\x2e\x35\x3c\x17\xab\x7c\xd3\x2c\xf3\x3b\xff\x84\x15\x79\x98\ +\x52\xc7\x00\x79\xd4\x13\x45\x70\x77\xbe\xd0\x3c\x7b\xc9\xc7\x1e\ +\xe4\xf5\x93\x8e\xb3\xc4\x86\xc0\xe4\xf7\x21\x0b\x77\xbd\x20\xcb\ +\x96\x12\x06\x76\x01\x4c\x97\xf0\xd3\x9c\x84\x0a\x2e\x22\x2c\x0f\ +\xc2\xae\x1f\x20\x33\x8a\xb9\xa7\x28\x21\x3c\xe6\x7e\x15\x28\xa4\ +\xf7\xfa\xef\x13\xa6\x2c\x5a\x18\x54\x6c\xc9\xf7\x39\x80\x5d\x5d\ +\xb5\x95\x1c\xcd\x46\x04\x87\xed\x4d\xdb\xb4\xe3\x93\xb3\x7e\x61\ +\x38\x6a\x38\xa0\x1c\x2a\xff\x55\xc0\xaf\x4a\x3d\x5e\x05\x3a\xf3\ +\x25\x75\x65\x1f\xd2\xad\x8f\x1f\x7d\xa5\x5d\x5f\xc9\x90\x73\x00\ +\xfb\xd1\x07\xd9\x70\x60\x13\xb2\x8f\xf0\xa3\xdd\x02\x0e\x35\xd3\ +\xeb\xdc\x4c\x3e\xbd\x5f\x03\xfb\x2d\xbb\x74\x16\x6f\xd7\xb6\x8a\ +\x9f\x55\xc3\x48\x0f\x35\x9e\xf6\x77\xc8\x70\xd7\xb6\x80\xe1\x42\ +\x3b\xb2\xd9\x47\x5d\x24\x7e\x7a\x92\x63\xf0\x95\x8c\xd1\xd7\x32\ +\xd9\x50\x87\xfe\xbf\x67\xc8\xba\xcf\x3c\x3c\x70\xff\xf5\x7d\xa1\ +\xf3\x87\x13\x48\x03\xe6\xad\x3e\x00\xa2\xbf\x19\xf7\x24\x4a\xda\ +\x32\xb1\x8c\x85\xb2\x30\x83\x1e\xfb\x64\x33\x69\xeb\x62\x29\x3f\ +\x32\xe7\x99\x4d\x37\xe2\x88\x7f\xeb\x58\xfe\x6c\xb0\x3e\x5f\x2e\ +\x43\xbc\xe3\x48\x67\x7d\x24\x48\xdb\x57\x4a\xa4\x36\xa9\xe2\x83\ +\x8a\x5c\x20\x1e\x95\x9e\x94\xc2\xc8\xa0\xcb\x34\x37\xda\x05\xb1\ +\xc6\x6f\x6b\xe1\xe3\x0e\x91\xc0\x09\x99\x92\xfb\x98\x44\xa6\x9c\ +\x84\x8f\xe5\xec\xa7\xd4\xdd\x07\x0e\xaa\x2a\x03\xd8\x37\xc8\x1d\ +\xa4\x9c\x88\x63\x54\x8b\xdd\xa6\x40\xf0\x7d\x13\x18\x9d\xba\x38\ +\x85\x83\x2f\x54\xf7\x57\x9a\x6e\xaa\x49\x6a\x19\x6d\x0a\xb6\x50\ +\x87\x61\xf9\x45\x97\x94\x9f\x30\x1c\x87\x36\x4a\xdd\x10\x62\x60\ +\xfa\x88\x91\xa0\x07\x1d\xd0\xef\xe0\xc3\x3c\xec\x52\x67\x48\x52\ +\x64\xda\xce\xf4\x2a\x77\x57\xac\x4d\xb6\x29\xd2\xf0\x42\x85\x89\ +\x31\x5a\x04\x22\x9f\x2c\x20\xe3\x5c\x0a\x3b\x57\x07\x19\x2f\x4e\ +\xa3\x6e\x6a\xa1\x92\x0c\xdc\x90\x45\x59\x66\xec\xa5\x8c\x14\xf3\ +\x19\xcb\x43\xda\x5f\xfe\xc9\xe9\x6c\x76\x98\x38\x60\xf0\xe4\x10\ +\xf4\x3f\xe3\x06\xc7\xac\xa5\xb1\x3d\xf2\xb9\xaa\x0f\x53\xf9\xc4\ +\x34\x87\x71\x02\x1f\xec\xed\x8d\xb3\xb6\xe4\xd2\x93\x99\x8c\x18\ +\x33\xa4\x3c\x72\x7c\xa8\x14\x4c\x59\xc6\x7e\xed\x7e\xfe\xff\x37\ +\x65\x51\xfd\x61\x6c\x9d\x62\x8c\x98\x73\x82\x6d\x84\x99\x42\x4c\ +\x3f\x9f\xca\x60\x89\x6a\x4d\x42\xf6\x9e\x4f\x98\xb6\xe4\x73\xe0\ +\xbe\x32\x02\xd5\x8c\xe9\x88\x7e\xfd\x02\x5c\xcb\x3a\xb1\x5e\x82\ +\xfb\x6b\xa0\x3d\x20\x77\xef\x02\x38\xc2\x91\xdf\x68\xdf\x68\xdf\ +\xbe\x71\xfa\x76\x28\x84\x28\xe5\xfe\x48\x07\x1c\x70\xc0\x01\xbf\ +\xe9\xd0\xc7\xc4\x01\x07\x1c\x70\xc0\x97\x80\x5f\xa9\xf9\xd7\x9e\ +\x89\xa7\x66\x93\xfc\x27\xcf\xf1\xc3\xd3\x76\xbb\xda\x30\xbd\xf4\ +\x82\x78\x6e\x29\xae\x26\xe0\x99\xc8\xdc\xb8\x5c\x3d\x78\x41\x03\ +\x15\x6c\x26\x6d\xc8\x97\x28\xfd\x0c\x11\xd1\xe8\x64\x10\x8b\x25\ +\xc6\x80\x69\x0a\xbe\x0b\x0a\x40\x1b\x05\xf5\xb5\xaa\xf3\x58\x02\ +\x59\x3d\xa4\xe5\xbc\x7c\xc1\x86\x8d\xb2\x8c\xe8\xad\x31\x09\x33\ +\x4b\xa6\xe7\x82\x49\x6d\x2a\x37\x22\x77\x37\x41\x16\x61\x3a\x52\ +\xc8\x95\x40\xf2\x71\x31\x87\x6b\x15\xf4\x7b\xa8\xa3\xff\x73\x1f\ +\x54\xd5\xc8\xf9\x74\x73\x52\x5f\x89\x3f\xe2\x62\xfb\x86\x7d\xce\ +\xcd\xb3\x95\x6f\x9e\x39\xd7\x6a\x89\x9f\x0b\xe3\x7a\x7c\xdc\x10\ +\x53\xac\xeb\x9b\x76\x74\x15\x17\xf2\xe3\x82\xbe\xd2\xf5\x75\xbb\ +\xb9\x89\x3c\x9e\xa6\xe1\xa7\xea\xe2\xc6\x1a\xf6\xb7\xf5\x24\x0d\ +\x37\xd6\xfc\xbb\x48\xac\x06\xa3\xe2\x7d\xb1\x4b\x52\x4d\x7d\xa3\ +\x33\xe9\x90\x8b\x8c\x16\x64\x9a\x30\xe7\x16\xe8\xe6\x83\x95\x63\ +\xd3\x98\xda\x53\xcb\x08\xd1\x57\xc0\xcb\x5a\xfa\x86\xc5\x71\xe6\ +\x3e\x60\xca\x60\xe9\x1a\x61\x05\x62\x44\x1c\xca\xf0\x31\x16\x85\ +\xed\x87\x9d\x96\x06\x11\x2c\xe2\x29\x5f\xaa\xa5\x78\x59\xc8\x7e\ +\x5c\x03\xf7\x65\x20\x8f\x70\x6f\x47\x93\x8e\x52\x0c\xca\x2a\x27\ +\xc4\x7b\xbd\x6c\x33\xd6\xa7\x5b\x0d\xe6\x41\x8e\x56\xf3\x16\x14\ +\x37\xab\xfb\xab\x20\xdb\x1e\x05\xc2\x8c\x84\xb9\x9f\xab\xbd\x73\ +\x2c\x64\xde\xaf\x5c\x99\xa8\xd6\xed\x69\x25\x3a\x4e\x2e\x2b\x52\ +\x4b\xe6\xe3\xd3\xc4\x4c\x1c\x79\xc4\x29\x3e\x50\x46\xca\xad\x94\ +\x4d\xd2\xb6\x86\xe7\xc9\x34\xce\x21\x9f\x3f\x3a\x5f\xb8\xb1\xc6\ +\x0d\x34\xa7\xcb\x76\x7b\x15\x4f\xaa\xf1\x5f\x0e\x3e\x07\xaf\x44\ +\xfb\x5c\xbc\x6e\xed\x52\xb6\x8a\xb1\x22\xa6\xe0\x9f\x64\xdd\x1e\ +\xb5\x35\xe7\x36\x0f\xc5\x90\xea\x42\xa7\x12\xfd\x13\x37\xe0\x48\ +\xc8\xa9\x4f\x34\xd4\xf5\x71\x9f\x70\x71\x17\x79\x97\xba\x0c\x52\ +\x5c\x7f\x2d\x9a\xf1\xa7\x6c\x2b\x95\x0f\x5e\x03\xac\xa0\x60\xe8\ +\x48\x7c\x93\x7b\x7a\xb2\x19\x60\x13\xd9\xee\x09\xe0\xea\xf7\x04\ +\x96\x16\x9d\x17\xe1\x2f\x00\xd4\x67\xd5\x7d\xb0\x8e\xc2\xd8\x46\ +\xde\xcb\x5f\x62\xb0\x35\xc6\xb8\x5d\xcc\xd8\xca\x31\x38\xc7\xc4\ +\x0f\x65\xec\x83\xe5\xa1\x1c\xb7\x64\x74\x5f\x92\x5d\xec\xf2\xaa\ +\xcc\x4c\x14\x86\xec\x42\xc7\x0c\x4f\x9a\x6f\xde\x7c\xd4\xb6\x9b\ +\xf8\x0f\xb5\x59\xbd\xb0\x25\xe8\x4c\x28\x2c\xf9\x2f\x03\xbd\xfe\ +\x7b\xf0\xcb\x28\xff\x8b\xc2\x7d\x75\xa5\x5b\xa5\xbb\xd6\xb9\xf4\ +\xf0\xe4\x4d\x9d\xab\x7c\x0c\x4e\x8d\x9e\xef\x4b\x8c\x27\xdd\xfe\ +\xce\x59\xc8\x32\xc0\x3e\xcb\xd7\x05\x55\xf7\xf1\x32\xc3\xfe\x06\ +\x4d\x63\xea\x54\xe2\x7d\x4d\x2f\x44\xfc\xfb\x6b\x68\xd5\x4e\xd8\ +\x22\x86\x51\x7c\x56\x50\x4a\xef\xea\x49\x01\xb6\x71\xe6\x3a\x89\ +\xed\xe6\x1e\x3f\x72\x00\x17\x19\x23\x12\x71\x87\xd8\x9d\x48\xbd\ +\xcc\x3d\xbe\x79\x9f\xa4\x3f\x15\xe5\x86\x90\x6d\x94\x24\x22\xc7\ +\x8e\xe9\x91\x77\x85\x12\x0f\xe1\x1b\x2a\xb7\x64\x14\xec\xf1\x4d\ +\x02\x57\xc7\xe7\x27\x09\x5e\x06\x7e\xcb\x5e\xb2\x5b\xf3\x7c\x06\ +\xc4\xcd\x00\x8f\xa9\xd8\xf9\xe5\x51\x36\xe2\x0c\x72\xde\x06\x45\ +\xe4\xcb\x85\x93\x52\x39\xa7\x02\x54\xc5\x3e\xcc\xed\xdc\x69\xd2\ +\x59\x18\x70\x08\xbf\x06\xdf\xce\x84\x24\x64\x45\x0b\x45\x12\x6b\ +\x32\xce\x3c\x13\x99\x3e\xe2\x42\x05\x4f\xf9\x91\xf7\x47\x79\x60\ +\xc3\x20\x90\xe4\x24\x11\x15\x1f\x42\x41\x93\x8f\xf5\x58\x60\x54\ +\x55\x13\x97\xd6\x65\x43\x9f\xbf\x2c\x56\x01\x8b\x7b\xad\xd4\x9f\ +\xde\xc5\x22\x6b\x3c\x36\xf6\x3a\x44\xa4\x52\x99\x82\xb1\x33\x29\ +\x35\x29\x4e\x32\x91\x86\xaa\x6f\xcd\x53\xb8\x39\xeb\x43\xd6\x7a\ +\xa1\x13\xe1\xd5\x4b\x2a\x79\x2f\x43\x1a\xe2\x40\x69\xe3\x34\x59\ +\x4f\xe0\xb8\xb3\xbe\x34\x43\x1e\x4e\x89\x05\x5d\xa9\xfb\x4d\xd2\ +\x82\xcb\x43\x4f\x7d\x4a\xb1\x34\x0a\xab\x08\x53\xb1\x32\x2f\x7f\ +\xa7\xa1\x4d\xbe\x21\xae\x7e\x89\x1b\xd7\x98\x73\xfe\xd3\x61\x58\ +\x08\xee\x83\xec\x10\xe7\x9c\xbf\x36\xb4\xce\xf1\x6c\x8f\x8c\xa9\ +\x14\xf1\xd9\xc7\x3a\x73\x6d\xa2\x8d\x83\x04\xb0\xae\x26\xf8\x9c\ +\x2f\x1e\x81\xb5\xb2\x36\x8d\x8c\x05\xd9\x58\x1e\x9f\xdc\x01\xd7\ +\xa4\xdb\x79\xeb\xb2\xaa\xaa\x20\xa2\x95\xad\xb5\xe6\x53\x9c\xb0\ +\xd6\x75\x76\xa0\xd2\xc1\xa3\x72\x70\xa5\x2a\x6c\x89\x70\x4f\x44\ +\xfd\x98\x3f\x76\x61\xba\x8f\x08\x76\xdc\xce\x31\xca\x7a\x68\x61\ +\x28\x66\xae\x78\x09\x88\xe5\x66\xc5\xf0\x28\x3e\xa2\xef\x75\x8f\ +\x8e\x5c\xc0\x4e\x41\x29\xc7\x6f\x34\xbb\xbd\xbe\xd5\x14\xfa\xa4\ +\xbd\xfd\xd6\x37\x52\x22\x8c\xc1\x5f\xb3\x9e\x07\x1c\x70\xc0\x01\ +\xbf\x49\x38\xdc\x50\x3b\xe0\x80\x03\x7e\x33\xc1\x24\x72\xbd\x6e\ +\x67\x8f\x1e\xb6\xa3\xf5\xb1\x98\xa3\x76\xe3\x95\x5a\x02\x7d\x4e\ +\xba\xfb\x85\x98\x9c\x78\x0e\xf3\xcf\x84\x24\x31\xbb\xdd\x05\xb2\ +\x54\xdf\x8b\xd9\x84\x55\x0c\xbc\x65\x93\xd3\x68\x02\xee\x0f\xc7\ +\x42\x83\x02\x45\x66\x06\xc6\x85\x89\x51\xe5\x8c\x9f\x02\x69\x33\ +\x8b\x3d\xc4\x18\xd1\x17\x33\xc2\x3e\xbd\x61\x45\x05\xc8\xbc\x52\ +\x12\xee\x62\xf3\x40\x84\xdf\x6c\x72\xa9\x40\x5e\x89\xd7\x92\xb7\ +\x17\x0b\x28\xe5\x54\xc9\x3f\xe7\xa8\x66\xf9\x06\x9a\xf2\xad\x44\ +\x5c\x70\x77\x5a\xf9\xe2\xfb\x6a\x23\x43\x6c\x94\xdd\xba\xfd\x77\ +\xed\xe6\xe6\xc6\x4f\xc1\x1c\x5d\x5c\xb6\xbb\x73\xa5\x17\x97\xad\ +\x29\xbf\x25\x71\x43\xed\xea\xba\xdd\x5d\x70\x43\x2d\x6e\x9e\xc5\ +\x53\x6a\x3a\x5e\xb8\x21\xc0\x4d\x36\x9e\xb4\xa9\x9f\x7f\xcc\x1b\ +\x6b\xb7\xc8\xb8\x0a\xe5\x0b\x22\x6e\x98\xf3\xa8\xf5\x08\x49\x52\ +\x1d\x28\x2a\xf2\x6a\x65\x20\xf3\x62\x27\x22\x40\x1f\xec\x5d\x2c\ +\x4a\x86\x58\xa9\xf7\xb9\x93\x36\xe4\xda\xd0\x7f\x1c\x16\x66\x01\ +\xb1\x46\x74\x9f\x4c\xaf\x40\x2c\xb0\x05\xe7\x38\x8c\xc1\x85\x59\ +\xfc\xdd\xc2\xaa\x9f\x26\x97\x58\xe0\x96\xa5\xe5\xde\x4c\xbe\xdd\ +\x76\x72\x32\xe6\xd1\x51\x4e\x06\x94\x33\xe9\xe7\x96\x86\x4c\xe9\ +\xa6\x42\xd5\xcb\x18\x2a\x13\xdd\x1e\x3a\x8b\x07\x33\x50\xea\x85\ +\xb8\xf3\xf8\xcc\x4a\x4f\x87\xe9\xd8\x88\x92\xa7\x84\x0e\x0f\x71\ +\x3b\xfb\x5c\x7c\x39\xf6\x14\xb2\x68\x4b\x0a\xe5\xe7\x8b\x99\x1c\ +\xa3\xdd\x90\x2c\x73\x85\x1f\xa4\x99\x8f\x92\xaa\xf3\x20\x1b\x17\ +\xfb\x25\x26\xf9\x22\x4f\x9c\x0f\x71\xf3\xfa\x56\x6f\x9d\x27\xdc\ +\x50\xf3\xf9\x74\x13\x37\xd1\x38\x9f\xb8\x41\x72\x19\x4f\xaa\xdd\ +\x5d\x4e\x4f\xaa\xf9\x7c\xe4\xfc\x94\x9c\x91\x8e\xc0\x7c\x31\xe2\ +\xe8\x98\x1b\x6b\x24\x9d\xe3\x0c\xe7\x5b\xed\x53\x92\xce\x75\x2e\ +\x38\xf9\x9b\xf4\xf4\x11\x95\xd5\x39\xcf\x7f\x14\x71\x93\x91\x31\ +\xdf\x17\xa1\x54\x69\x7f\xd3\xdb\x75\x5c\x26\xd9\x47\x51\x3d\xcd\ +\xf8\x8e\x19\x23\xc4\x71\x55\xa9\xf4\xbe\xb1\x66\x56\x5b\x27\x8b\ +\xe7\x08\x87\x44\x31\xe4\x41\x77\x89\x4e\xd8\xb8\x90\x19\xba\xe9\ +\xa2\xe6\xbe\xa0\x09\x37\x28\xe9\x9f\x07\x51\x54\x26\x17\x36\x83\ +\xfb\xc6\x04\x89\xb2\x86\xf2\x2a\x17\x06\x32\x98\x14\xd0\xe7\x05\ +\x7a\xca\x45\xf4\x9b\x0a\x01\xc6\x6e\xb7\x55\xa6\x37\xb2\xbf\x94\ +\xf6\x6e\xbb\x69\x8f\xbe\xf1\x4d\xc9\xeb\x43\x6d\xb7\x6e\x3b\x98\ +\x55\xe2\x6f\x01\x7f\xdb\xe5\xbf\x2e\x5e\xa3\x9e\xec\x8e\x77\xde\ +\xfa\xba\xce\x59\x7d\xf0\x9a\x67\xef\xe1\xa8\xe4\x63\x3e\x83\xbc\ +\x76\x9b\x75\xee\xf9\xb5\x70\xe9\xbb\x35\x74\x73\xec\x4a\x30\xdf\ +\x73\x98\xbe\x02\xf6\x8a\x4c\x21\x77\xa3\xce\x41\xfc\x3a\x1e\x0b\ +\xb8\xce\xb0\x23\x98\xe3\xfe\x32\xb2\x9d\x7b\x62\x97\x28\xf4\xf4\ +\x71\x31\x93\xc5\x34\xc4\x04\xd1\xe9\xb4\x61\x94\x3a\x3a\xd2\x38\ +\x0b\xe3\x27\x50\x18\xc2\x53\xa7\xcc\xd3\x17\x68\x72\x6d\x7c\xc1\ +\x5d\xb9\x9f\x56\x41\xce\x36\x08\x67\x55\xa0\x6d\xe5\x6c\x7f\xc9\ +\x18\x65\x3d\xce\xe6\x4d\x34\x8d\xfa\x8a\xa1\xf1\xde\x1a\xe6\x4b\ +\xd2\xe3\xd3\xfd\x95\x20\x21\x10\x54\xb2\x82\x82\x66\xd2\xd8\xe2\ +\x3f\x48\x23\x94\x5e\xfa\x78\x89\xf6\x52\xb6\xcd\x8c\xcc\xd2\x3c\ +\xb8\x68\x23\xbe\x5d\x2b\x88\xc6\x7d\xf2\x48\x32\xe4\x90\xf8\xf4\ +\xcf\x98\x6e\x2b\x29\xf1\xb2\x6d\x88\x22\x7e\xf4\x86\x41\x07\x59\ +\x11\xec\x0c\xea\x6a\x23\x7d\x27\x9b\x7d\xc6\x59\xac\x74\xec\x99\ +\x1e\x7f\x80\x25\xb9\x09\x5b\x20\xc1\xc4\xdc\x83\x88\x76\xaf\x59\ +\x7e\xbe\xfa\xa6\xb2\xe3\x83\x22\x94\xd3\xfe\x3c\xb6\xe6\x37\x9e\ +\x43\xd7\x6d\x47\x95\x19\x25\x39\x55\xbb\xaa\x02\x71\x4c\x24\x4c\ +\x87\x5d\x20\x5a\x6f\x38\x4b\x3d\x9d\x89\x4d\xaa\x66\xba\x92\xd1\ +\x86\x92\xd1\xf7\x3d\x66\xda\x8c\xfe\x96\x05\x1f\xc7\xa9\x12\x45\ +\x64\xa2\xae\xae\x87\xde\x7c\x89\x2e\xe2\x2e\x80\x68\x38\x66\x7c\ +\xcc\x99\x96\x27\x34\x7a\x12\x50\x0c\xbf\x98\xa7\x8c\x89\x39\x94\ +\x74\x71\x73\x1a\x5a\x73\x27\xec\x8e\x74\x6e\xc1\x53\x1f\x1a\xe3\ +\xfa\x08\x1a\xa7\x1c\x36\x18\xe5\xf1\x79\x99\x55\x70\xb3\x8f\x70\ +\x72\x0c\x5b\xe8\x15\x5b\x40\x5b\x20\xcb\xbf\x23\xc4\xd1\x6d\xdd\ +\x76\xea\x46\x64\x7e\x11\x14\x3f\xe5\x58\xcd\xce\xb3\x4e\x16\x61\ +\x0b\x27\x7b\xa5\x98\x0c\x7a\x74\x9d\x61\x94\xfb\x73\x48\xa0\x12\ +\xdd\x61\xaa\xf7\x7d\x21\x00\x5f\xc0\xf4\xdf\x03\x44\xe9\x21\x4c\ +\x2c\x23\xc1\xcf\x2d\x02\xa3\x6c\xb7\xac\xd0\xee\xf3\x0b\xd4\xb1\ +\x3f\xf7\x0d\x5a\xdb\x65\xc0\xdd\x02\x84\xb4\x2e\x9d\xfa\xa0\x48\ +\x72\xef\x59\x29\x49\x37\x37\x9a\x67\x1d\xad\xdb\xe9\xfa\x61\x18\ +\x18\x65\x7f\x7f\x2d\x0f\x38\xe0\x80\x03\x7e\x93\x51\xab\xce\x03\ +\x0e\x38\xe0\x80\x2f\x0e\x35\x5b\xfb\x55\x86\x67\x92\x47\x6d\x7d\ +\x76\xaa\x09\xf3\xa6\x5d\x8b\xef\x13\xce\x11\x35\x87\x24\xbf\x6f\ +\x3e\xe9\x05\x42\x4c\x3b\x63\x62\x6a\x76\xd6\x0f\xcc\xe3\x91\x3b\ +\x95\x2c\x73\x53\xbe\x22\x93\xac\x01\x13\x82\x89\x1a\x91\x12\x82\ +\x55\xc0\x0e\xe9\xb2\xac\xd0\xc5\x84\xd8\xdf\x32\xac\x40\x0e\xaa\ +\x8d\xf3\x4c\x86\x96\x0e\x3b\xf1\x0a\x6e\xa1\x63\x05\x97\xe1\x8d\ +\x85\xd3\x54\xf8\x7e\xa4\xba\xf7\x87\x79\x55\x42\xf9\xca\xdf\xde\ +\x0d\xba\xc2\xd8\xae\xa7\xf8\x89\x2f\x27\xb5\x81\x9b\x62\xb7\x3c\ +\x81\xc2\xc5\xf3\x63\x31\x4a\x47\x27\x5c\x58\x8f\x74\x74\xa2\x36\ +\x1d\x2b\xde\x56\xb1\xfd\x24\x8b\x68\x35\x92\x45\x28\xdf\xc0\xbc\ +\xe5\xa9\x97\x8b\x6b\xdf\x48\xbb\xe1\x46\xda\xf3\xcb\x76\xab\xfc\ +\xe6\xc5\x45\xbb\xe5\x26\xda\xe5\xa5\x2f\xea\xfb\xff\x9e\xb8\xc0\ +\xef\x1b\x6a\x5a\xa8\x3a\x05\xed\x27\x6e\xfc\x64\x0d\x3c\xf9\xb5\ +\x2a\x25\x9a\x45\xae\xd3\xd0\x00\xa3\xf8\x64\x93\xb7\xda\x29\x75\ +\x99\x3b\x43\xaf\x46\x93\xd4\x02\xef\xcf\x39\x82\x47\x37\xdb\x89\ +\x8b\x58\xb1\x8c\x05\x95\x87\x2a\x6c\xd2\x7f\x89\x12\x4e\x2e\x73\ +\x7a\x1f\xd0\xf7\x7a\x10\x20\x82\x87\x64\x72\xae\xe5\xea\x12\xb8\ +\x62\x35\xd5\x77\x40\xc5\xc5\xa6\xb7\x0f\x41\x46\x52\x36\xc6\x4c\ +\x6b\xa3\xe4\xf7\xe9\x8d\xfe\x53\x46\x85\xe9\xb8\x2f\xe0\x1f\x29\ +\x23\x8d\x01\xf7\x60\xae\x26\xda\x3c\x15\x65\x74\x82\xe8\x3a\x6f\ +\xad\x24\x42\x57\x18\x78\xb9\xf9\x1c\x17\x22\x7c\xe1\xae\x4e\x0e\ +\xc3\x8e\xf9\x0a\xae\x64\xa6\xb8\xd0\x28\x32\xfa\x7a\x7a\x59\x47\ +\x3e\x1e\x18\xc5\x43\x1a\x21\x2b\xfb\x09\x21\xef\xbe\xd4\x4b\x95\ +\xaa\x73\x81\x0b\x3f\xbe\x28\x43\x5d\x75\x2e\x71\x23\x8d\x9b\xd4\ +\xfc\xa4\xaa\x7f\xda\x91\x27\xd2\xae\xae\x24\x8f\x1b\xd9\xd0\x37\ +\x97\x4a\x17\x3a\x27\x75\x9e\x5e\xfb\xdc\x14\x7f\x8e\x5e\xfe\x8a\ +\xc5\x4f\xb9\xae\x39\xdf\x4f\xd6\x6d\xa3\xb4\xe5\xfc\xd7\x79\xbf\ +\x3a\xd1\x39\xae\x73\xff\x6e\xa3\xb2\xd6\x3a\xd7\xd9\xaf\xca\xb9\ +\xc1\xa6\x9a\xf8\xa6\x9e\xcf\x4d\xa5\x7e\x41\x77\xe8\xcb\xa8\xfb\ +\xd4\x9c\xa2\x7b\xf3\xc0\xc0\x77\xbd\x30\x7f\x1a\x0d\x3a\xf9\xb4\ +\x99\xb4\xa2\xca\x6f\x18\xf7\x54\xb2\xb5\x81\xc1\x77\xca\x9c\xfb\ +\x42\x3e\x77\x98\x48\x40\x3c\xf2\x29\x95\x75\x60\xc6\xe1\x92\x6e\ +\x60\x6e\x09\xc2\x7b\x57\x3e\xb8\xf5\x0f\x95\x01\xd9\x39\x33\x3f\ +\x31\x9d\x2f\x62\x30\x80\x9c\xea\x9a\xfd\x0e\x65\x45\xdc\x50\xf3\ +\x47\x96\x12\x4f\x15\xa3\xa0\xbb\xd6\xda\x3c\xd5\x71\x70\xa1\xe3\ +\x8a\xc7\x14\xb9\x9d\xc3\x65\xa8\x79\xb5\x14\x64\xc6\xff\x9c\xf8\ +\xbc\x31\x96\xf6\xf0\x25\x1b\xe9\x5f\x3b\xe4\xce\xc9\xfa\xc7\x18\ +\xbe\x6e\x6f\xbc\xf1\x4e\xdb\xae\x37\x3a\x9f\x79\x54\x54\x36\x74\ +\x3b\xa6\xda\xc4\x8d\x92\x9f\xb3\xc1\x59\x9c\x61\x7a\x14\xbc\x46\ +\x37\xfa\x60\x98\x5b\xbd\x56\x4d\x54\x4c\x94\x34\x1d\x99\x4b\xbf\ +\x7e\x4c\x0e\x9f\x49\x95\xcf\x6c\x67\x6d\x9f\x47\x99\x73\xa0\x82\ +\x4c\x08\x49\x7d\xda\xec\xfa\xa3\xe7\xb8\x8f\x9c\xfe\x66\x8c\x9b\ +\xfc\x0a\xde\x0f\x8c\x6d\x47\x1a\x87\x5d\x67\xc6\xc0\xd4\xbb\x31\ +\xb2\xf1\x18\x48\x62\x13\x3c\x8a\x28\x5d\x65\x38\xa3\x8c\x90\x7b\ +\xd7\x72\x3e\x86\x79\xf8\x48\xe8\x7a\x78\x6c\xd5\x68\x2b\xa5\x2f\ +\xf0\x93\x98\x27\x21\x67\x1c\x46\x4e\x79\xb6\xb3\x47\xbe\x2c\xcc\ +\xb8\x61\x47\xec\xda\xba\xb0\x42\xea\xe2\x60\xc3\x5e\x5b\x62\xf1\ +\x28\x9d\x6f\xa6\x21\x9f\x7a\xc3\x75\x2f\xda\x79\xd2\x76\x34\x91\ +\xac\xac\x88\x93\xf5\x73\xaa\x72\xe9\x83\xd9\x3e\xc5\x3e\x7d\xd2\ +\x26\x2d\x07\xd8\x20\x15\x13\x4d\x5c\xd7\x2f\x8f\x21\xf7\x1c\x71\ +\xb0\xca\x7c\x17\xd6\x06\x99\x28\x4b\x17\x6f\x72\xd2\xfb\xc8\xa0\ +\x0b\x06\x59\x18\x92\x2b\xcd\x9b\xd2\x51\xe2\x7b\xd4\x11\x37\xde\ +\x4a\xb2\xea\x86\x3a\x5a\x68\x4f\x1c\x2c\x4a\x58\x8c\x08\x7e\x36\ +\x4e\xf7\xfd\x32\xd9\xa2\xef\xed\x21\x65\x1f\x81\x89\x4a\xb5\x36\ +\xb5\xbf\x62\x77\x23\x40\x0b\x9d\x79\x62\x5e\x92\xb6\xd4\x23\x6f\ +\xfa\x75\x85\x93\xec\x94\x17\xcb\xb6\xef\x9b\xe0\xb4\x99\xb4\x05\ +\xea\x10\xad\x4e\x5b\x07\x29\x5b\x0b\xd8\xa4\x08\x1b\x57\x38\x68\ +\x0b\x6d\xd4\x93\x5f\xd6\xc5\xb9\xe4\x39\x95\x6f\x9d\x69\xfe\x74\ +\xab\xb9\x90\xd2\x8d\xd6\x1c\x37\x7e\xf2\x13\x3a\xcf\x35\xa5\x1b\ +\xf5\x89\xa8\x7c\x11\x69\x02\x73\x21\xbe\x84\xe2\x0b\x82\xaa\x30\ +\xe3\x98\xe7\x14\x7e\xdf\x4a\xce\xed\x75\x9e\xf4\x97\x17\x0d\x12\ +\x1d\xed\x12\x54\x65\x6a\x0d\x83\xcc\x26\x63\x70\x6c\xc5\x5b\xe4\ +\x36\xe1\x8b\x47\xb4\x95\xb8\x47\xb5\xde\x4b\x78\x8c\x31\x8f\x57\ +\xc8\xd9\xd6\xd8\x53\xb2\xc9\x25\x88\x49\xaf\xad\xb2\x68\x03\xbc\ +\x7b\x4e\x34\xe5\xcb\x8a\xb0\xa4\x11\xc5\x77\x39\x84\x6c\xd5\x29\ +\xb5\xce\xa2\xae\x34\x21\x74\xdd\xb0\x73\x51\xd2\x12\x0b\x09\x55\ +\x4a\x12\x40\xbb\x8a\x60\x50\x8c\x36\x73\x50\x07\xc5\x64\xff\x0f\ +\xb1\x77\xcb\x7d\xb9\x2c\xe2\x57\x1c\x48\xf6\x13\x73\x2a\x74\x0f\ +\xdb\xe9\x66\xbc\xa1\x56\x48\xef\x5e\xe1\x03\x0e\x38\xe0\x80\x03\ +\x80\x3f\x3f\x0f\x38\xe0\x80\x03\xbe\x14\x2c\xe7\x5d\x35\x9b\xfb\ +\x02\xf0\xf3\x4d\xe9\x16\x5e\xab\x55\x3b\x79\xfc\xb8\xad\x8f\x4f\ +\x62\x92\x2a\x4c\x5b\x6c\xd3\x5e\x13\xc8\x3e\x87\xf4\x64\xb6\xe8\ +\xcc\x45\x4c\x8b\x6d\xb1\xd8\x0e\x66\x20\xe8\xd8\xf6\x05\xc7\x32\ +\x2f\x8c\xd5\x4c\x7a\x69\xd2\x31\xda\x76\xa6\x26\xc9\x99\x90\x8f\ +\x01\x60\x31\x75\xae\x8d\x1b\x47\x1b\xb3\x9d\x24\x20\x9f\x1e\xc7\ +\x28\x85\x30\xc6\xbb\x17\x61\xef\x3e\x89\x8d\xf3\x5a\x10\x4c\xa9\ +\xb2\x78\xc5\x82\x2f\x84\xda\x3a\xf5\xa2\x5d\x3f\x4b\x2c\xf7\x13\ +\x66\x1b\xe5\xdc\x4c\xe3\xc6\xd9\x99\x16\x86\x67\x47\x6d\x7d\xaa\ +\xdd\xfb\x40\xba\x33\x2d\x14\x44\x1f\x9d\xc8\x7e\x2b\x9b\x15\x0b\ +\xcc\x1b\x39\xa8\x9c\x6b\x2d\x34\xcf\xaf\xda\x1d\x17\xe6\x9f\x5f\ +\xb5\xeb\x17\xca\xcf\xaf\x25\xe3\x49\x18\xe4\x91\xc7\x4d\x35\x25\ +\x9e\x52\xf3\x4d\x33\x9e\x9c\xe1\xc6\x99\x78\x2e\xd8\x68\xe1\x1a\ +\x3f\x5b\x27\x1b\x64\x3c\x99\xe6\x9b\x6a\x5a\x34\x2a\xe7\xc6\x9a\ +\x6d\x58\x00\x57\x9b\xa9\x7d\x6f\x4b\x25\xa0\x36\xbb\xad\xd9\x07\ +\x41\x2a\x69\x53\x7e\x4a\xaa\xbe\x59\x16\x79\x93\x2e\xb4\x01\x05\ +\x51\x6c\xf8\x58\xb6\x92\x8f\x36\xd3\x96\xe4\xaa\x20\x10\xe7\x17\ +\x8c\x95\x21\x0d\x3a\x48\x23\xcb\x7b\x25\xf0\xef\x07\x7c\x96\x32\ +\xc4\x0c\x2a\xf4\xcb\x88\xc5\x8f\x72\x37\xd5\x39\x9e\xa2\x32\x54\ +\x87\xcf\xc1\x41\x38\x3a\xef\x60\x52\xe2\x51\xc9\x20\x06\x37\x5f\ +\x2c\x9c\xec\xe8\x9b\xd1\x0e\xcd\xd8\x15\xe6\x83\x9c\x23\x15\x3b\ +\xba\x7d\x82\x2e\xcb\x3d\x07\x3f\xec\x63\xff\x7c\xe3\xcc\x2e\xd1\ +\xf9\xdc\x87\xf0\xaa\xe8\x64\x06\x25\x39\xc7\x85\x42\xc4\x45\xbc\ +\x94\x91\x57\x19\x4a\xc5\x3b\x06\x80\x2d\x22\x75\xc5\x9a\x4c\xd6\ +\x4c\xa7\x2b\x21\x53\xe2\xaa\xa9\xca\xe4\x66\x5a\xdc\x8c\x8e\x9b\ +\xce\x71\x71\x95\xf3\xe9\xc6\x4f\x8a\xf2\x84\x5a\xd3\xb9\x16\x4f\ +\xaa\xe9\x5c\xe3\x86\xb7\xce\x37\x6e\x7c\xdf\x5e\x48\xfe\xe2\xa6\ +\x5d\x3d\xbb\x6a\x57\x4f\x2f\xdb\xcd\xf3\xcb\x76\xcd\xf9\x49\x2c\ +\x15\xc6\xdf\xaa\xf1\xb4\xda\xfa\x74\xdb\x8e\xcf\x8e\x7d\x93\xed\ +\x88\x9b\x6a\x4a\x77\x27\x2a\xff\xe4\xa6\x1d\x6d\x95\xaf\xe3\x62\ +\x72\x7c\x23\x3c\xc6\x1c\xfc\xa7\xb1\x89\xae\x8b\x31\x91\x21\x26\ +\xc6\x46\xbe\xbd\x1b\xb2\x3e\x56\x02\x5c\x85\x3a\x2e\x9c\x2c\xcb\ +\x63\x85\x58\x8a\x19\x29\xe4\x85\x08\x31\xf1\x4b\xcc\x34\xc4\x49\ +\xb2\xe7\x22\xf2\x97\x94\x5c\xa7\x8e\x81\xbc\x1f\x19\x7d\x28\x64\ +\xd7\x8d\xc0\x25\x2f\x82\xbc\x92\x15\x33\x4c\x22\x05\x8e\xb7\xe9\ +\xca\x5f\x86\xfe\x39\xec\xac\x6c\xd9\xa9\xea\x3b\x95\xe7\x97\x72\ +\x9e\x4a\x04\xec\x1d\x22\x3f\xe3\xc6\xac\x3a\xe2\x8d\xb7\xdf\x76\ +\xf9\xee\x8a\x7d\x45\x21\xeb\xf2\x7d\x06\xaf\x00\x2e\x7b\xda\xfc\ +\x52\x94\xfd\xe8\xf7\x79\x63\xfc\x6d\x63\x59\xdf\x45\xd7\x45\xb7\ +\x1c\xb5\x37\x1e\x3f\x6a\xdb\xb5\x3e\x78\x65\xdf\x6f\xd2\x00\x9f\ +\x53\x8c\x66\x21\x9b\x87\x1b\x83\x0d\x34\x24\x6e\xa4\x90\xfc\x62\ +\x58\xb4\xe1\xe5\x31\x31\x8e\x0a\xc4\xa7\xa7\x5a\x97\xc7\xe6\x3e\ +\xd0\x76\xee\xf1\x86\xed\x54\x54\x79\x54\xbb\x47\xcd\x58\x9d\x31\ +\xf2\x3c\x02\x08\x7a\x94\x84\x15\xa5\x06\xe0\x9c\xb4\x71\x35\xc9\ +\x3d\xd8\xc8\x82\xcf\xb2\x54\xa2\x73\x3b\xa4\x2b\x5b\x92\x31\xe3\ +\x21\xf4\xf6\xe7\x04\xad\xc2\x3e\xe7\x1d\xd2\xc6\x97\x05\xe2\x0b\ +\x49\x94\x11\x3e\xd4\x27\xca\x2b\xbb\xc8\x79\x29\xb7\x3f\x63\xad\ +\x5e\x2a\xdf\x97\xf6\xe1\xeb\xc2\xbf\x79\x25\xcd\x9f\xe2\xe9\x7e\ +\x3e\x17\xc2\xdb\x11\x64\x8b\xde\x64\xbd\x90\xd1\x4e\x12\xb4\xeb\ +\xeb\xc2\xa8\x10\xc4\x64\x87\xc8\xe2\x20\xc2\x42\xdb\xea\x22\x62\ +\xe8\x33\xbf\x9b\x38\x4e\x31\x95\xc8\x64\xe3\x86\x8d\xf2\xd4\x0d\ +\x34\x2d\x9c\xe4\x0b\xa8\xac\x3a\x56\xba\x3d\x59\xd5\x5d\x6f\x7a\ +\x18\xc2\x63\x99\x72\xeb\x4d\x0d\xb0\x69\xe9\xca\x16\x8c\x56\xd0\ +\x93\x4d\x06\x9e\x80\x9c\xfa\xc8\x20\xea\x54\x29\x31\x8b\xb9\x9b\ +\x8a\xc2\xac\xb7\x29\x98\x7b\xe0\x1a\x27\x1d\xbe\x13\xe4\x14\xef\ +\xe4\xd2\xb2\x1b\x51\xc7\x11\x8b\x48\xd5\x49\x96\x0f\xb4\xe4\x70\ +\x21\x8d\x57\xa8\x4a\x3a\xd1\x81\xc9\xca\xdb\xd4\x79\xce\x60\xfd\ +\xeb\x40\xb6\xec\x4f\x8e\xab\xa5\x57\xd6\x93\xcc\xea\x99\x7e\x2a\ +\x37\xf2\xa4\x65\x1c\x37\xd3\x38\x4f\x34\x17\xf2\x8d\x33\xe6\x4b\ +\x57\x71\x13\xed\x6e\x3a\x6f\xb8\xb1\xe6\x9b\x6a\xcc\xa7\x6c\x77\ +\xdb\xae\x45\x5f\x7b\xde\xc5\x91\xa9\xa8\x7c\x9e\xfa\xb7\xee\xe9\ +\xd1\xe0\x37\x2b\xad\x9d\x94\x36\x9b\x9b\xb6\xd6\x3c\x73\x85\x0d\ +\xfb\xc3\x9d\xce\xf9\x1e\xcf\xae\xd6\x5c\x86\xba\x71\x2a\x38\x11\ +\x57\xed\xad\x75\xb0\x4f\x11\xbc\x6c\x1b\x6d\x01\xe8\x42\x01\x1d\ +\x65\xfb\x05\x9f\xaa\x80\x74\x16\x30\xbe\x90\x42\x5a\x7a\x97\x5f\ +\x75\xf7\x91\x92\xe4\x0c\x51\xcf\x80\x6c\x33\xe4\x08\x22\x14\x66\ +\x31\x30\x77\xfb\xa3\x0f\x46\xcb\x9d\x62\x84\xa9\x85\xf7\x63\x2c\ +\xcb\x51\x98\xbb\xcd\x10\x31\xc6\x48\x3b\x51\x87\xbe\x30\x3a\xbd\ +\x63\x79\x2f\x5c\xd7\x32\xcf\x9c\xa3\xe2\xea\x52\xf3\xe6\xf5\xa3\ +\xf6\x70\x7b\x6a\xb1\xdb\xdd\xc3\xc2\xcc\x5b\x70\xc0\x01\x07\x1c\ +\x70\xc0\x9e\xa1\xfc\x80\x03\x0e\x38\xe0\x0b\xc5\x38\xff\xfa\x82\ +\xe7\x62\x9f\x2f\x1c\xd6\xcb\x29\xef\x51\x3b\x79\x7c\xd6\x56\xc7\ +\x9a\x3c\x1e\xf1\x87\xec\x61\xe5\x8b\x02\xce\x03\xfb\xb8\x88\x25\ +\x87\x0a\xc8\xc4\x1e\xba\x92\x31\xea\x2b\x75\x65\xac\x63\x06\xb8\ +\x5c\xcb\x52\x51\x6c\xf1\xc2\x44\x25\xa6\x70\xbb\x3a\x60\x7d\x2c\ +\x42\xab\x0a\xdd\x4e\x04\x13\x66\x4f\x9a\x95\xa6\x50\xb1\x38\x99\ +\xf8\x44\x09\xad\x28\x6d\x0a\xba\x7c\x42\x2c\x90\x42\x31\x5c\x27\ +\x30\x4a\x1e\x17\x7d\x2a\x25\xe5\x0a\xa2\x4b\x49\xe5\x7c\x62\x91\ +\xe0\xf3\x89\x34\xff\xa4\xdb\xf1\xaa\x6d\x1f\xae\xdb\xea\x91\xd2\ +\x99\xf8\x87\x47\xca\x65\x73\xa2\xc4\x4d\x34\x7e\xfa\x6d\xc5\x42\ +\x50\xcb\x48\x16\x7d\xdc\x14\xf3\x85\xf9\xab\x76\xf5\xec\xb2\xdd\ +\x28\x5d\xbf\x98\x6e\xa4\xdd\x5c\x90\xb8\x90\x2f\x9e\x0b\xfa\x17\ +\x5a\xa0\xfa\x62\xbe\x12\x39\x17\x6f\x7d\x81\x5f\x8b\xd3\x6b\xd9\ +\xf4\xa7\xd6\xf2\xc2\x3f\x4f\xd9\x88\xae\x9b\x69\x71\x23\x8d\x95\ +\xa6\xda\xd0\x93\xea\xa6\x7c\xd6\xd3\xf4\x45\xb5\xdd\x02\x30\xe8\ +\x3b\xe0\x89\x29\x0a\x52\x7e\xb6\xd0\x26\x16\x99\xa9\x80\xef\xfd\ +\x1b\xb0\x65\xbc\x9d\x28\xdf\x17\xd8\x32\x21\x33\x3a\x8d\x3c\x78\ +\x88\x90\x2a\xd5\x3e\x79\x25\xd2\xc6\xf5\x48\xd8\x37\x50\xd2\xd7\ +\x89\x34\xb7\x0a\x3a\x42\x0d\x01\x0d\xe9\xac\x9e\xec\x97\x16\x51\ +\xfd\xb9\xf7\x18\x3d\x62\xa0\x41\x4a\x3e\xda\xc6\x76\x6e\x2f\xd9\ +\xd0\xc6\xa0\xe6\x16\x73\x4e\x28\x01\xb9\x69\x6d\xfc\x6d\x5d\xf5\ +\x32\x49\x87\x0c\x63\x92\x11\x45\xa6\x2d\x65\x29\xf7\xce\x2e\x99\ +\x92\x31\x32\x11\xa7\x5c\x81\x69\x4e\xc6\x6e\x37\xd9\xce\x68\xef\ +\xef\xa2\x83\x8a\x63\x75\x80\x55\xc3\x31\xec\x7a\xc3\x05\x5d\x32\ +\x37\xa4\x1a\xc3\x8d\xe5\x4c\xf0\x3c\xdd\xe9\xa7\xc4\x38\xa7\x2c\ +\xe7\x22\x6a\xf0\x71\x1e\xe5\x85\xd5\x3c\xcf\x38\x27\xb9\x01\xce\ +\x13\x6a\x57\xcf\xaf\xdb\xd5\xa7\xe7\xed\xfa\xd3\x4b\xdf\x60\xbb\ +\xe6\xdc\x54\x2c\x3f\xa8\xb5\xd6\x18\xc0\xff\x24\x3e\xdc\xb6\xed\ +\xa3\x4d\xdb\x3c\x5c\x35\x7e\xc5\xe6\xe8\xa1\xea\x70\xaa\xb2\x56\ +\x4a\xee\x43\x6a\x29\x3a\x93\xdb\xa2\x7e\xf5\x79\xe3\xfd\xa9\x31\ +\x66\xc5\x8d\x34\xc5\x3a\xd2\xf8\xc2\xcf\x4b\xd6\x8d\x35\xbd\xe2\ +\x27\x81\x14\x4e\x7c\x5c\x7c\x9a\x27\xc2\x05\xb2\x30\x6f\x23\x47\ +\x19\x25\x8c\xda\x11\x93\xe5\x70\x68\xa5\x34\x35\x26\xb5\x21\x99\ +\xcf\xfe\x37\x22\x4f\xcd\x04\xc4\x56\xa1\x19\x02\xbf\x04\xdd\x7c\ +\x2c\x97\xac\xca\x1d\xd0\xcb\xaf\xd0\xe4\x4a\x93\x25\x16\x21\xf4\ +\x56\x1b\x72\x03\x9a\x63\x25\x25\x1e\xcb\x12\x51\x7c\xf5\x2d\x1f\ +\x04\x1a\xcb\x2d\xbc\x6b\x97\x3a\x56\xda\xf6\xa4\x7d\xf5\x5b\xdf\ +\xf4\xdf\xe8\xd9\x6b\x59\x35\x84\xc8\x96\xf2\xcf\x8b\xa9\x4a\xfb\ +\xb1\xaf\x8c\x5f\xb4\xcc\xbf\x6d\xbc\xac\xcd\x6a\x1b\xc7\x24\x17\ +\x67\x4f\xda\x23\x1e\x2c\x6d\xd7\xd7\xe2\xeb\x89\x49\x23\xe9\x61\ +\x7f\xbe\x0a\x33\x4b\x31\xa3\xab\x49\x8d\x35\xfb\xbb\x15\xed\xbc\ +\x6c\x0e\xd3\x90\x54\x90\x3d\xbe\x3d\xfe\xb0\x34\xde\x5f\xc0\x0e\ +\x88\xdf\x9f\x50\x5b\x80\x92\xa6\x30\x39\x1e\x33\x4e\xfa\xf3\x65\ +\x01\x42\xf4\x54\xfa\x88\x3b\x6e\x1d\x75\x66\x53\xb0\x30\xc5\x73\ +\x5d\x7d\x12\x84\xc5\x44\x3b\x17\x11\x9f\x39\x1a\x7b\xfd\x52\xfd\ +\x18\xa2\x95\xfc\x19\x92\xa7\x24\x5e\x7c\xcf\xc4\x0c\x6d\x90\x20\ +\xce\x57\x41\x9d\x60\xbf\xe0\x22\x9e\x52\x3d\x4d\x13\x4f\xa2\x29\ +\xcf\xe4\x9f\xdb\x65\xec\xcf\x9b\x03\xce\x79\x49\x5e\x4f\x32\x43\ +\x4b\x11\x29\x23\xc7\x9c\xb1\x20\x5a\x9f\x23\xfa\x88\x90\x7d\xd4\ +\xbc\xdb\x75\x3a\x2b\x6f\x49\xf0\x84\xeb\xf3\x1e\xc1\xbd\x11\x26\ +\x6e\x41\x48\x53\x60\x14\x3d\x25\xbb\x67\xd3\xa7\x00\x99\x59\x99\ +\x34\x9b\xd8\x59\x30\x01\x91\x51\x34\xba\xcc\x8d\xb9\x0d\x2a\x6a\ +\x13\x63\x1e\x02\x68\x49\x48\xf9\x8a\x40\xa2\x8a\x04\x38\xba\xcc\ +\x05\x22\x60\x6d\x12\x38\x86\x64\x94\xbe\x0e\xca\xc7\x4d\x18\xe0\ +\xe2\x1d\x34\x34\xc3\x51\x31\xd5\xd1\xa8\x08\x91\xdc\x46\xde\xec\ +\x76\xf6\x27\xfd\xcb\xbc\xc1\x7a\x31\xae\x3f\x34\x98\x72\x7f\x4e\ +\x98\x4d\xbb\x04\xfd\x13\x3a\xe4\x36\xe8\x70\xf7\x2c\x2b\x6e\xa4\ +\x4f\xc5\x2a\x5a\x27\x81\x49\xa3\xf4\x5d\x20\x60\x93\xe4\x28\x1f\ +\x4d\xd2\x67\xbe\x55\xce\x3b\xeb\x19\xc5\xb1\xc9\xdc\x32\xf2\x38\ +\x57\x3c\x5f\xa9\xf3\x45\xe7\x0f\x37\xcf\x34\x59\x92\x94\xf3\x87\ +\x27\xd4\xf2\xa6\x9a\xec\x6f\x9a\xe6\x4c\xa2\xaf\xb1\xe5\x9c\x53\ +\xba\x42\xa7\x3e\xbd\xbe\xe6\xfc\xd3\xf9\xec\xff\x94\xde\xb6\xcd\ +\x46\xf3\xa4\xf5\xa6\x1d\x6f\x57\xed\x58\x63\xf9\xb1\xe4\x9b\xf5\ +\x75\xdb\xe4\x93\xac\x0c\xe7\xf1\xe5\x1d\xd5\xc0\x03\x02\x67\xab\ +\x2b\xeb\x97\x3f\x8b\xc5\xa2\x89\x36\xd8\x24\x88\xa1\x1d\xbe\xb9\ +\x06\x5b\x2f\xd1\xb9\xdb\x07\x50\x58\x92\x03\xba\x08\xa7\x7e\x5c\ +\xf0\xa5\x1a\xc8\xec\xfc\x60\x9c\xbc\x8f\x17\x60\xac\x76\x2e\x5d\ +\x58\xc1\x64\x3e\x00\xb3\xfe\xb4\xde\x70\xa0\xec\x09\x39\x83\xf5\ +\xaf\x32\x4a\xcc\x63\x97\x13\xf9\x3c\x40\xd7\x88\xb0\xd6\x79\x30\ +\xf0\x85\xa0\x17\x42\x00\x9f\x9d\x81\xaf\x4d\x54\xac\x25\x5d\xd0\ +\xda\xd5\xd5\x5d\x7b\x70\xfa\x56\x3b\x3e\x7d\x10\xe6\x61\xc0\x26\ +\xf3\xa2\x0f\x38\xe0\x80\x03\x0e\x28\x0c\xab\x86\x03\x0e\x38\xe0\ +\x80\xbf\xeb\x98\x26\xc5\x81\xa3\xf6\xe0\xd1\x63\xdf\x50\xbb\xb8\ +\xb9\xc9\xc9\xad\xa6\x8c\x65\x46\x5e\x49\x13\xc9\x9a\x88\x1b\x39\ +\xaf\xac\x49\x6d\x52\xca\xd8\xa6\xb2\x50\x7a\xeb\xee\x07\x5a\x17\ +\x97\xe5\x8c\xc5\x15\xa6\x08\x65\x3d\x22\xb5\xca\x62\x32\x5c\x75\ +\x9a\x5b\xbb\x7d\x95\xf8\x14\x50\x8a\xff\x18\x12\x3d\x22\x79\x87\ +\x0a\x72\x46\x83\x19\x5d\xf6\x2e\x57\x2f\x2f\x40\x8f\xf2\xa2\x67\ +\xea\x9d\xb4\xe1\x22\xf5\x7a\xed\x8b\xd5\xf0\x5c\x1f\x65\xd1\xe6\ +\x4b\x32\x5a\x28\xd9\x8c\xfe\x52\x0a\x97\xbc\x2c\xb5\x16\xbd\x55\ +\x7e\xc2\xcf\x75\x8a\x7e\x70\xd7\xb6\x0f\xb8\x70\x4e\x92\xfd\x23\ +\xf1\xa7\x5a\xf0\x49\x7f\xb7\xd1\x42\x70\xad\x45\xe4\x51\x2c\x2e\ +\xb9\x21\xd6\xce\x95\x3f\xd3\xe2\xef\x85\x16\xa4\xcf\xb5\xf0\x7c\ +\x21\x5e\xb2\x3b\xe9\x48\xfe\xf9\x47\xa5\x1b\x6e\xba\x5d\x5d\xb7\ +\x06\xcf\xc5\x7e\x2e\xd8\xf2\x84\x1a\xc7\x89\x69\xa5\xbc\x69\xc6\ +\xe2\x35\xaf\xe8\xa4\x2c\x6f\x02\x38\x49\x96\xa9\x6e\x22\xd0\x26\ +\x27\xfa\x28\xb2\xd8\x8c\xba\x31\xd9\x20\x93\x65\xc9\xb2\x9c\x85\ +\x55\x07\xc7\x45\xa0\x78\xd1\x5f\x56\xb3\x85\xe0\x60\xc8\xc5\x14\ +\xf0\x05\xa9\x8c\xed\xf0\x89\x81\x9c\x21\xa2\x86\x4b\x87\xe9\xa9\ +\xa4\x39\x6c\x9d\x29\x32\xfb\xc6\x41\x99\x69\x42\x71\x5d\xbd\x00\ +\xa5\xcc\x50\x36\xce\x93\x59\xfa\xc9\xa9\x8b\x44\x40\x17\xbf\x34\ +\x05\xae\x1f\x76\x56\xa6\x05\x8c\xe5\xde\x64\x02\x95\x17\xc4\xab\ +\xf2\xfd\x02\xa9\xfd\xf2\xb8\x0d\xc9\x80\x21\xce\x68\x40\x8e\x9b\ +\x5f\x89\x2e\x23\xef\xd2\x40\xb1\x94\x6b\xa6\xd2\x2e\xea\x42\x0d\ +\x29\xce\x4d\x0b\x83\xb6\x3c\x8e\xa3\x08\x11\x76\x46\xd1\xbe\xaa\ +\x95\xb6\xbd\x9c\x48\xae\x22\xa4\x39\x36\xc9\x74\xd4\x31\x1a\xc7\ +\x7f\x25\xfe\xa3\x83\x9b\x64\x75\x0e\x71\x53\xad\x9f\x4f\x4e\xc1\ +\xf3\x0d\x6b\xce\xbf\x9b\xcb\x4b\xff\xf4\xe3\xed\xcd\x95\x4e\x49\ +\xce\x4f\xce\xdd\xab\x76\x7d\xae\x73\xfd\xe9\x65\xbb\xfa\xe4\xa2\ +\x5d\x7c\xaa\x24\x19\x37\x57\xb8\xe8\x74\xbb\xbd\x6b\xeb\x13\x8d\ +\x33\x0f\x4e\xdb\xfa\x8d\xd3\x76\xf2\xe6\x71\x5b\xbf\x29\xfe\xb1\ +\xc6\x9d\xbc\xb1\xb6\xda\x5e\xb7\xa3\x8d\xda\xb1\x91\xcf\x4a\x3e\ +\x1a\xb3\xe2\xa5\xf6\xaa\x6f\xd7\x8a\xb1\x39\x3e\x6a\xdb\x33\xa5\ +\x07\x37\xed\x98\xf4\xe8\xb6\x6d\x1f\xde\x88\x6f\x6d\xb3\x59\xb7\ +\xe3\xed\xb6\xad\x57\x1b\x0d\x69\x9b\xb6\xf1\x8d\xb7\x23\x0d\xa9\ +\x4a\x3a\x1e\x78\x49\xe2\x8b\x51\x1e\x6a\x95\xd3\x67\x63\x9a\x40\ +\xdf\x0d\xfd\x67\x52\x16\x99\x7b\xfc\x1b\x3d\x18\x47\x3d\x96\xca\ +\xc4\x05\xc0\x5b\x61\x35\x40\xdd\x0f\xcb\x4c\x86\x65\x70\x93\x2d\ +\xe8\xfa\xd7\x40\x7d\x5e\xee\x85\x02\xf5\xe3\x4e\xcc\x18\xb7\xe8\ +\xc8\x43\x3f\x3b\x6e\x32\x6e\x1c\x6f\xa6\x54\x4b\xbd\x24\x47\x15\ +\x37\x38\x43\x8f\xfc\x4a\x1d\xf0\x44\xc7\xcb\xe6\xec\x44\xfb\xe7\ +\x4d\x7b\xc4\xc5\x5c\x93\x13\x08\x5b\x31\x5d\x44\x94\xf3\x85\x83\ +\x22\x96\x65\xff\xba\x63\xd9\x55\x9d\x9f\x14\xec\x93\x93\xcd\x69\ +\x7b\xe3\xf4\x6d\xdf\x50\x2b\xd5\x34\x6e\x4c\x98\x1f\x11\xf7\x03\ +\x3b\xbf\xc6\xe3\x23\xf1\x3a\x31\x5c\x05\xaa\xe2\x04\x97\x95\xda\ +\x87\x32\xee\x50\xfc\x45\x11\xb0\x53\x55\xe2\x78\x0c\x52\xc7\x62\ +\x32\x63\x84\x91\x2e\xec\xd6\x3a\x8f\x6f\x53\x4b\x1f\x74\x2e\xd5\ +\xf9\xa4\x8b\x28\x4b\x4d\xf0\x4a\xda\xf4\x24\x3e\x46\xf0\x29\x4d\ +\x8c\x36\x63\x42\xc8\xe7\x81\xce\x27\x2e\xc0\x9b\x0f\x0f\xe7\x98\ +\x78\x5c\x53\x71\xd1\xdc\xa8\x39\xa3\x5c\x99\x61\xe3\x9b\x67\x4e\ +\x41\xc7\x7f\x55\x6a\x7c\x95\x51\x8d\xb0\x3c\xd1\x12\x4f\xd2\xa4\ +\x8e\xcf\x04\xca\xee\x2f\xd1\x35\x8f\x52\x8c\x08\xaf\x2d\xb4\x79\ +\x24\xf8\x20\x9b\xd7\xd5\x3a\xdb\x39\x73\x9a\x74\xaa\x75\x08\x02\ +\x69\x90\xcd\x09\x90\x27\x4d\x3d\x22\x27\x95\x1f\x3e\xc8\xa3\xce\ +\xe6\x3d\x81\x01\x61\x19\x40\xce\x56\x39\x1f\x00\xf7\xd9\x8c\x79\ +\xaf\x30\x5e\xaa\x97\x3b\x5b\xbc\xd2\xa0\x0a\x50\x47\xd3\x29\xb0\ +\x4e\x1b\xe7\xd9\x80\x6e\x6c\x61\xc6\x0a\x89\xe9\x0a\xda\x03\x93\ +\x40\xe5\x93\xf9\x12\xc8\xad\xf3\x26\xec\xcb\xb6\x7f\xb9\x26\xb7\ +\x61\x1c\x7c\xf4\x7f\xd8\x17\x68\xa6\xbb\xf2\x5e\x70\x9c\xa9\xbf\ +\x7b\x1c\x21\xdb\x5a\xe7\x48\xc8\x30\x40\x58\xc7\x84\x50\x95\x4a\ +\x74\xfb\x54\x43\xf4\x57\xc9\xd2\xc4\x70\x3f\x85\x55\x17\x96\x6e\ +\x94\x91\x67\x9d\xbc\xf1\x1a\x88\x98\x99\x90\x5a\x6f\x03\x38\xa7\ +\xd0\x04\x55\xb2\xb0\x09\x5d\x9c\x17\x99\x24\xf7\x13\x9d\x3e\x9f\ +\x34\x27\xe2\xb6\x99\x68\x3f\xe1\xef\xf3\x49\x49\x7a\x3f\x9d\x26\ +\xda\x37\xd6\x94\x7c\x53\x4d\x73\xae\x6b\xcd\xa7\x2e\x95\x58\x0e\ +\xbd\xd0\xfa\xe6\x42\xf3\xa5\xeb\xdb\x6b\xcd\x5f\x34\xd7\xd9\x6a\ +\x0c\xdf\xae\xda\xd9\xc9\xb6\x9d\x32\xb7\xd1\x82\xeb\x58\x6b\xae\ +\xe3\xcd\x65\xdb\xac\xf4\x19\xab\xd2\xd8\x77\xf4\x1f\x73\x25\xea\ +\x53\xbd\x4c\x7e\xa3\x7e\xaa\x16\x50\x7f\x73\xce\xb3\xcf\x8b\x56\ +\x0e\xed\x84\x95\xe5\x91\x97\xac\xf6\x59\x72\x4e\x16\x41\x24\x5c\ +\x13\x0a\xae\x45\xa6\x2d\xc2\xc0\x61\xf6\xa0\x8b\x87\x63\xa2\x62\ +\x4f\x22\x51\x3a\x20\xfd\xbd\x9d\x44\x54\xcd\x9b\x94\x04\x86\x30\ +\x9f\x13\x55\xe2\x3c\x1e\x88\x98\x21\xaf\xf8\x2e\xbb\xe7\xf4\x95\ +\xd9\x09\xbb\x61\x84\x14\xe6\x79\x17\x74\x26\x63\x74\x5a\x79\x1a\ +\x7e\xbc\x7e\xab\x6d\x8f\xf8\x23\x62\xa1\xdb\x15\x76\x04\x07\x1c\ +\x70\xc0\x01\xbf\xf1\x18\x3e\x2a\x0e\x38\xe0\x80\x03\xbe\x04\xec\ +\x9d\xe4\xfd\x62\xf8\xf9\xa6\x74\x31\xa1\xb4\x6f\x05\x50\xbe\x7d\ +\x70\xd6\x36\x67\x0f\xb5\xb8\xe0\x5b\x78\x9a\x40\x8f\xc1\x87\xba\ +\xa3\x33\x6b\x7d\x4c\xfe\x27\x24\xad\x19\x6e\xce\x75\x4d\x4f\x26\ +\x9d\x98\x8b\x07\x10\x36\x8a\xce\x0a\x28\x8b\x85\x63\x67\x95\x92\ +\x31\xa0\x97\x91\xb2\x8e\xc2\x58\xc3\x65\xee\xb5\x21\xee\xbe\x00\ +\x4b\x82\x8f\x7c\x56\x44\x39\x2c\x30\x96\x42\xac\x5c\x6b\x6a\x43\ +\xfb\x43\xc7\xb7\x4b\xf9\x59\x20\x38\x72\xd6\x3b\x5e\xfc\x68\x85\ +\x42\xe2\xe3\xe7\xd6\x77\xc7\x36\xad\xad\x95\xaf\xb6\xed\x4e\xa9\ +\xad\xb7\x6d\xa5\x55\xdd\x6a\x7b\xdc\x8e\x4e\x36\x6d\x7d\xba\x69\ +\x2b\xe5\x9b\x87\xa2\x1f\xae\xda\xf6\xd1\xb6\x6d\x1e\xaf\xda\xe6\ +\x0d\x05\xfc\x8a\x22\x7e\x55\xf1\xde\x51\xec\x37\xef\xda\x8a\x1b\ +\x6b\xc7\x2a\x8b\xff\x4a\x5b\x71\x83\x94\x7a\xa8\x94\x0b\xad\xb7\ +\x9e\xdd\xb6\xd5\x0b\x2d\x28\x9f\x5d\xfb\x46\xda\xed\x73\xd1\xac\ +\x28\x79\x52\x8d\xa7\x61\x58\x7c\xea\x18\xb8\x51\xba\xbb\x26\xa5\ +\x8c\x8b\x39\xdc\x20\xeb\x17\xff\xb9\xa8\x8f\x5c\x32\xfb\x28\x71\ +\x01\x1f\x9d\x56\x76\xfe\x06\x29\x2b\x3c\x72\x2e\x14\xb1\xb8\x25\ +\x26\x17\xa7\x2c\xc7\xa6\x68\x7a\x27\x13\x74\x2d\x7a\xb2\x0f\x81\ +\xa9\x14\xcf\xec\x49\x64\xce\xf3\xb8\xeb\x74\xe4\xc1\xc6\x3e\x32\ +\x7a\xfc\x60\x0b\x21\x1d\x84\x45\xf6\x58\xd0\x21\x9a\x23\x75\x33\ +\xe5\x1e\x43\x89\x7c\x58\x0d\xaa\x20\x47\x01\x34\xb5\xa0\xcc\x10\ +\x81\x58\x78\x27\xd3\x31\x09\x82\xca\xda\xa7\x78\x5e\xd6\x64\x6b\ +\x79\xf2\xde\x86\x60\x61\xab\x94\x19\x28\x93\x11\x3e\x8e\x93\x5e\ +\xda\xc6\xc5\x86\x45\x68\x6d\xa2\x86\x69\x28\xb8\x59\xb0\x75\x18\ +\x54\x0e\xba\x32\x61\x36\xcf\x25\xf3\xb9\x4f\x6d\x23\x3a\x84\x6c\ +\x06\x84\x6e\x16\x07\x58\x1c\xb5\xf1\x29\x4f\x20\x57\xd8\x3d\x2f\ +\xd5\x90\x8a\x77\xce\x31\x1c\xe1\x48\x0e\x44\x9e\xee\x5d\x46\xbc\ +\x94\xf7\x6f\x98\xb3\xf1\x95\xd5\x38\x0f\x7c\xde\xe8\x7c\x8a\x1b\ +\x67\x71\x0e\x71\x8e\xf9\x3c\xba\xba\xd2\xb9\x96\x3f\x9d\xaa\x73\ +\xd0\xe7\xa1\x6d\x75\x2e\x89\xf6\x8d\xee\xcc\xaf\xf9\xa9\xa3\xcb\ +\xab\x76\x75\x7e\x13\x4f\xab\x7d\x76\xd5\xae\x3f\xb9\x6a\x97\x4a\ +\x57\x3a\xdf\xfd\xa4\x8c\x2a\xe6\xff\x08\xe1\xe7\x60\x1f\x1e\xb7\ +\xe3\x37\x1f\xb4\xb3\x6f\xae\xdb\xe6\xdb\xdb\x76\xf6\x5b\x47\x6d\ +\xf3\x8e\xc6\x92\xb7\x94\x3f\xdc\xb6\xf5\x99\xc6\xa2\x13\x8d\x1d\ +\x1a\x67\x36\x6f\x6c\xda\xf1\xdb\xdb\x76\xfa\x8d\xe3\xf6\x58\xb6\ +\x8f\xbf\xbd\x6e\x6f\x7e\x7b\xa3\x24\xfe\x77\x4e\xda\xe3\xdf\x3a\ +\x6b\x6f\x7c\xfd\x61\x7b\xf4\xce\x69\x3b\x79\xbc\x6d\xdb\xd3\x93\ +\xb6\xe6\x6a\x14\x37\xd6\x8e\x14\x4b\xe3\xda\x5a\xe3\xd9\x46\x89\ +\xff\xfb\x3a\xba\xdb\xa8\x8f\xd6\xd1\x4f\x4a\xee\x76\xed\x53\xef\ +\xba\x01\xb9\x2b\x22\x21\xc0\x7e\x61\x65\x9b\x94\x79\x1c\x67\x47\ +\xd6\x1d\xbb\x44\xb9\x39\x0f\xb2\x63\x7e\x4e\x97\x45\x60\xb4\x5b\ +\x72\x73\x48\x57\x9f\x19\xc9\x1a\x15\x7b\x8c\x0b\x89\x38\x0e\x92\ +\x49\x85\x2c\x49\xfc\xeb\x58\x9b\x84\xbb\xe0\x73\x78\xa5\xcf\x0f\ +\x9e\x50\xe3\xf8\xe2\xb0\xe2\x5b\xf7\x37\xfa\x80\xd9\x1e\x9f\xe9\ +\xf3\x83\x63\x55\x86\xee\x98\x05\xf6\xc5\xdd\x63\xf6\x85\xe2\x25\ +\x6d\xe9\x70\x7d\x83\xfc\xb5\xc1\x50\xdf\x38\x16\xa3\x23\xd9\x37\ +\x8f\xce\xde\xd4\x6e\x38\xf5\xe1\x81\x1d\x7a\x1f\x16\xb9\xff\xd9\ +\xda\x7a\x88\xb1\x60\x84\x81\x17\x19\x5c\xc9\x26\xdd\x60\xb5\x40\ +\x69\x6a\x07\x57\x7e\x0f\xac\xd6\x46\x6e\x75\x98\x96\x8f\x59\xe4\ +\xca\x38\x2f\xf7\x21\x8e\x4b\x3c\xf0\xb9\xc7\xc8\x88\x98\x20\x46\ +\xf4\xb0\xf5\x71\xaf\xe0\xf1\x84\x4e\xca\xb3\x30\xb6\x78\x95\x67\ +\x1d\xda\xf6\xa9\x24\x9f\xe8\x63\x29\xd3\xa0\xfb\x0c\x66\xe8\x1c\ +\xd6\x49\x9b\xcc\xfd\x72\x0c\x9d\x53\x1a\x6b\x35\xc8\x4a\xa1\x39\ +\x54\xce\x63\xfc\xa5\x21\xe9\xf8\xa2\x80\x38\xef\xdb\x98\xc5\x29\ +\x9e\xe7\x74\xcc\xed\x62\x3f\x33\xe4\xd7\xd3\x68\xf1\x3f\x4e\x9c\ +\xa7\x5c\xd8\xe7\x06\x1a\x32\x74\x4a\x4d\xe3\xba\xb6\x1a\xd1\xe5\ +\xc7\x85\x79\x6c\xc5\xa5\x4f\x8d\x07\xe6\x95\xcc\xc9\x6f\x1a\x27\ +\xa0\x55\x18\xa8\xbe\x72\x96\xc2\xde\x78\x91\xbd\xd1\xf9\x21\x96\ +\x65\x66\xa4\x40\xf6\xbd\x79\xc7\x4e\xad\xe2\x38\x4f\xc3\xea\xa7\ +\x29\x21\xcc\x94\x46\xc8\xec\x43\x1d\xc4\xf4\xe2\x21\xb8\xd1\x83\ +\x1e\xde\x44\xd8\x98\x53\xee\x14\x1a\x7a\xd7\x14\xea\xb2\x77\xb3\ +\x32\x8f\x63\x68\x40\x08\x6b\x13\x41\x8a\x06\x15\x28\x63\x39\x77\ +\xe0\x4c\x29\xf2\xd6\x6e\x95\xef\x03\x96\x91\x62\xbf\x88\x22\xb9\ +\x8b\x8b\xc9\x24\x9b\xa3\x6c\x37\xa9\x0f\xcf\xc9\x9b\xe4\xc0\x49\ +\xba\x13\xbd\x0e\x24\xf6\x99\x04\x8e\x57\xfb\x11\x44\x7f\x4d\x3e\ +\xe4\x4a\xa5\x06\x45\x67\x5d\x4c\x7a\x2b\x94\x88\xd4\x77\x54\xd2\ +\x94\xaf\xdc\x12\xd8\x52\x67\x9c\x68\x67\xf0\xa6\xd3\xa8\x3f\x41\ +\x88\xc8\x48\x5d\xd9\x24\x0d\xdb\xfb\xaa\xe4\x99\xc2\x3f\x8f\x53\ +\x9f\x17\x3a\x5f\x38\x0f\x7c\x7e\x68\xbe\x74\x7b\x69\xd9\xed\xdd\ +\xa5\x64\x79\xde\x28\xbf\xe6\x85\xbd\xfc\xae\x25\xbb\xd1\xfc\x89\ +\xc4\x4f\x3e\xca\xd2\x37\xd7\xae\x74\x8e\xf3\xc5\xa4\x8b\x9b\xbb\ +\xf6\xe2\xf2\x5a\xe9\xb6\x3d\xd3\xfa\x88\x2f\x23\xc9\x45\x6d\x38\ +\x6a\xa7\xfa\x38\x7d\xe3\xd1\xaa\x3d\x58\x6f\xda\xc3\x9b\xb3\x76\ +\xc6\x8d\xb5\xf5\x4d\xdb\x6c\x2e\x35\xa7\x62\x7c\x50\xe7\xf0\x13\ +\xa9\xec\x97\xec\x27\xfc\xbc\x8b\xdc\x07\x92\x19\x71\x14\x17\xb2\ +\x65\x7e\x8d\x12\xe6\xce\xd5\x15\xbd\x4b\x84\xa9\xcf\x53\x8e\x50\ +\xc1\x23\xd7\xd6\x06\x0b\x48\x1f\x65\xee\x9c\x21\x01\xea\x38\x91\ +\x15\x94\x4d\xcf\x91\xfb\xfb\x9e\xc5\x00\x1a\x55\xf4\x7d\xd8\x5b\ +\xe0\x7e\x10\xca\x37\xcc\x17\x18\x43\x44\xd5\x42\xe2\x9e\x12\xb9\ +\x5b\xc4\x52\x32\xf0\x33\x7b\xc6\x8d\xe4\x90\x97\xc2\xed\xe2\x58\ +\xba\x6d\xa7\xc7\x6f\x6b\x2e\x7b\x2c\x3a\x75\x07\x1c\x70\xc0\x01\ +\x07\xbc\x14\xeb\xff\x5c\x48\xfa\x80\x03\x0e\x38\xe0\x8b\xc5\x38\ +\x4f\x7c\xd5\x24\xf4\xe7\xc4\xe7\x0b\x9b\xd6\x4c\x14\x73\x12\x7b\ +\x74\x75\xd1\x7e\xfc\xc7\xff\xba\xdd\xfe\xf4\x7b\xed\xd1\xfa\xae\ +\x6d\x37\x21\xbf\x91\x11\x8b\x7e\x5f\x10\xe0\x9b\xb4\x5c\xf4\x15\ +\xef\x0b\xfc\x98\xc8\xdf\x59\x3e\x15\xe0\x9b\x71\xa2\xfd\xf3\x19\ +\x9b\x95\x69\xeb\x32\xf7\xa4\x19\x76\xe4\x41\x66\x7d\xee\x2a\x82\ +\x72\x58\x2f\xc6\x84\x37\x34\xde\xa6\x6d\x27\x9c\x75\x61\x90\x4a\ +\x8a\x1e\x39\x75\x22\xaf\x32\xd3\x86\xb9\xb3\xe3\xb1\x08\xbe\x56\ +\xd2\x62\xea\xee\x42\xe9\x5a\x85\xba\x6c\x26\xed\x4a\x76\xb0\x0b\ +\x15\xe9\x34\x94\x27\xe5\x16\xc9\x0e\xbe\xd8\x04\x65\xe3\xef\x05\ +\x89\xca\x5e\x1f\xad\x44\xaf\xdb\xda\x3f\xc5\x26\xfe\x78\xd3\x36\ +\x27\xeb\xb6\xd1\x2a\x8d\xb4\x7d\xb8\x69\xc7\x8f\x37\x6d\xfb\xe8\ +\xa4\x6d\xdf\xd8\xb6\xe3\xaf\x1c\xb7\xb3\xb7\xb4\x88\x7b\xe7\x41\ +\x3b\xfd\xea\x71\x3b\xfd\xda\xb6\x6d\xde\xde\xb4\x93\x37\xb7\xed\ +\xee\x4d\xc5\xe0\x3f\x93\xf9\x19\xb7\x53\xa5\x63\xc5\xdb\x68\x7f\ +\xa9\xdf\xb9\xa0\xea\xf2\x6f\xd4\x8c\x2b\xf1\x97\x2a\xf7\xb9\x64\ +\xe7\xd2\xbf\xa0\xbd\xaa\xa7\xda\xec\x55\x23\x7d\x4c\x8b\xdc\x40\ +\x5a\x14\xfb\xc5\x37\x17\xa9\x77\xb6\xa1\xfa\x2f\x7e\xee\x44\xb4\ +\xf6\x71\xf4\xad\x95\x5d\x47\x0f\x43\x43\x55\x0c\x9e\x56\x31\x9c\ +\x63\x8f\x9f\x05\x7e\x75\x88\xe4\x62\xc1\x6c\x6d\x58\x6a\x64\xb8\ +\x66\x5f\x83\xc9\x13\x2a\xe5\xda\x60\x63\xd1\x64\x90\x28\xcf\x7d\ +\x18\x75\xe9\xa8\x2c\xaa\xbc\x8c\x87\x62\x60\x07\xa6\xcb\x7c\x30\ +\x04\x17\xdb\x8c\xd1\x91\x2d\xaf\x0d\x6f\x5c\x06\x59\x75\x5b\x08\ +\xb2\xaf\x52\x17\x5b\x78\x92\x77\x4a\x4a\x52\x87\xc8\xfa\xd0\x18\ +\x45\xb8\x10\x72\xce\xe5\x24\x87\xed\x3e\xf8\x18\x20\xcf\x36\x75\ +\xf4\x58\xe8\x14\x4f\xea\x7d\x51\xa6\xbd\x26\xd8\x36\xe2\xcd\xa3\ +\x71\xf4\xbd\x0c\xd2\xaa\xc2\xb5\x3b\xf6\x95\x03\x4a\x6e\x9b\xaa\ +\x6f\x37\xae\x1e\x82\x0a\x21\xdb\x92\x19\xee\xbb\xc4\x58\xc8\xcc\ +\x48\xc8\x4e\x89\x0b\x95\xbb\x88\x36\x6a\xa3\x05\xba\xcf\x35\x8f\ +\x9f\x99\x73\x73\x9a\x24\xda\x37\xcb\x78\xf2\x8c\x5c\xc9\x4f\x88\ +\xe6\x8d\xb5\xb8\xc1\x26\x99\x6d\xc8\x65\xcf\x05\x1f\xe4\xa6\x35\ +\x36\xa7\xfc\x4e\xb4\x93\xc6\xb2\xa6\xb1\x8c\x9f\x74\xbd\x46\xc7\ +\x58\x76\x24\x7e\x7d\xab\x71\xe7\xb6\x6d\x8e\xd5\xc4\xf5\x49\x3b\ +\x65\xcc\xf9\xca\x51\xdb\xbe\xb5\x6e\xc7\xc7\xc7\x6d\xa3\x71\xa4\ +\x9d\x6a\x2c\x7a\xbc\x6a\xa7\x6f\x9f\xf9\x46\xda\xc3\xdf\xd1\x18\ +\xf4\xad\xd3\x76\xf2\xbb\xc7\x6d\xfd\xbb\x1a\x9f\xbe\x29\xdb\x77\ +\x94\xbf\xa9\xf4\x95\x95\xd2\xba\x9d\x3c\x3e\xd1\x78\x70\xda\x56\ +\x7c\xa1\x77\xab\xb1\xe6\x94\xa7\xd9\x8e\xdb\xf1\x23\xa5\x37\x34\ +\x96\x3d\x38\x6d\xdb\x93\x53\x8f\x71\xc7\xc7\x8a\xdf\xd6\x7e\xc2\ +\x83\x63\x22\x8e\x71\xfa\x2f\xfb\xb0\x77\x25\x44\x75\xf8\xb0\xcf\ +\xe4\x17\x63\x4e\xe6\x8c\x35\x2a\xf3\xee\x64\xe3\x9f\xbd\x6d\xfa\ +\xec\x5a\x69\x0c\x5c\x6f\xf9\x69\xca\xb0\xf1\x0b\x17\x47\x61\x7f\ +\x90\x22\xeb\xc0\x60\x2f\x52\xee\x2c\xe2\xb0\xa9\xb2\xf9\x89\x3f\ +\xc6\x42\xca\x8a\x42\x6c\x68\x98\x62\x7c\xe5\xcb\x04\xfa\xfc\x6c\ +\x24\xf6\x45\x35\x72\x28\x1f\x32\xea\x23\x6d\x56\xcc\x76\x26\x89\ +\x14\xe7\xf8\x76\xa5\xde\xdb\xe8\x33\x42\xfb\x6b\xbb\xdd\x2a\x1c\ +\xfb\x74\xd3\x3e\xd3\xfe\xfe\xe1\xb3\xab\xf6\xf8\xdb\xbf\xdf\xfe\ +\xf0\x7f\xff\xef\xb7\xd3\xa1\x1e\x1d\x5d\x24\x62\x54\xef\x31\xfd\ +\x52\xf0\xba\xe5\xfc\xb2\xea\xf3\x45\xc0\x75\x9d\x57\x98\x7d\xfd\ +\xdd\xbf\xf8\x17\xed\xe9\xd1\x0f\xb4\x9f\xb8\x21\xa3\x9d\xe8\x63\ +\x86\x8c\x0d\x87\x8e\x19\x91\xc1\x4f\x98\xec\x2c\x26\x2f\x5e\xf9\ +\x5a\x93\x09\xfe\xdf\xa7\x7e\x5a\xd5\x4f\x82\xc6\x60\x6f\xcc\x42\ +\x19\x48\xf2\x78\x52\xe6\x9f\x38\xd3\xcc\x0e\x51\x96\x30\x60\xe2\ +\x29\x6b\x06\xf1\xb6\x8f\xb7\x0d\xdc\x16\x93\x99\x2b\x69\xc8\x6a\ +\xe7\xfc\x0c\xb4\x39\x3c\x42\x37\x0b\x58\xa2\xc8\x4c\x40\xc7\x78\ +\x5c\xca\xec\x33\x68\xd7\x15\x19\x9b\x29\x2f\x76\x09\xe4\xfb\x74\ +\x9c\xa2\x20\xca\x89\xcf\x1a\xf7\x1c\x9f\x29\xc9\x87\x09\x9f\x31\ +\x31\x36\x69\x64\xb1\x6c\x2d\x1b\xfa\x7a\xab\xbe\x5e\x6f\x6e\xdb\ +\x56\xe7\xfc\x31\x5f\x12\xd8\x68\x9c\x61\x2e\x04\x4d\xc2\x89\xb7\ +\x9b\x22\x9e\x4c\xcc\x2d\x9f\x15\x9a\x20\x55\x8f\xf8\xff\xd7\xf4\ +\xd6\xc8\x21\x3d\xbe\x92\x67\x1f\x1d\x79\x22\x15\xbe\x18\x45\xcc\ +\xf0\xb4\xac\xe2\x2a\xe5\x50\x61\xc6\x7e\x26\x4a\x1b\xb0\x17\xac\ +\x6d\x27\xb9\xe7\x67\x82\xeb\xe2\x40\xe4\x16\x45\x2e\xd6\xed\x00\ +\xc9\x47\x1c\x36\xbb\xc8\x70\xd9\x63\x41\x45\xbd\x13\x93\x81\xe3\ +\x44\x68\x11\xf1\xce\x0d\x79\x09\x40\xb6\x7a\x66\x30\x07\xd2\xc1\ +\x7c\x0f\x10\x52\x17\xbd\xa3\xd0\x01\x08\x93\x74\xbd\x82\x1f\x6a\ +\x2d\xa4\xcd\x28\x9a\x41\x8e\xee\xc3\x64\xb3\xac\x40\x09\xc9\x49\ +\xf3\x58\x51\x9f\xb4\x1f\x4c\xe6\xb0\x51\x18\x27\xd9\xc1\x2e\xef\ +\xb2\xb2\x63\xb3\x30\xec\x07\x4a\xa2\xca\x33\x82\x70\x5d\xb2\x0c\ +\x6e\x06\x4d\xbb\x2b\x64\xe1\x32\xdb\xbb\x7d\x3b\x47\xc9\xc2\x6f\ +\xc2\xe0\x31\xab\x63\xe6\x59\xa7\xf8\x7c\x0c\x59\x7c\x16\xea\xf3\ +\x53\xf9\x1d\x3f\xe3\xc8\xaa\x54\x9f\x79\xbe\xe9\xcc\x0d\x35\xd1\ +\xfc\xbc\x63\x3c\x85\x96\xe9\x46\xf3\x1e\xdf\x78\xe3\xa9\xb3\x2b\ +\x7d\xfc\xf2\x93\x8f\xfc\x7f\xda\x75\xbb\xf2\x0d\x49\x6e\xa6\xc5\ +\xba\xf6\x4a\x9f\xc7\xdc\x58\x63\x39\x74\xa9\xe9\xd8\xb9\xe6\x4f\ +\x57\x1a\x23\xaf\x25\xe0\xb6\xf9\x5a\x6b\xa9\x8d\x3a\xe2\x94\xef\ +\x39\xae\x55\x95\x2b\x8e\x0c\x7d\x06\x73\x0e\xba\xc3\x54\x2f\xdf\ +\x58\xa3\xae\x70\xfa\xc0\xf7\x79\x88\x20\x84\x53\x7f\x61\x90\x1c\ +\xc6\x8a\x5b\x7d\x5c\xd8\xed\xdf\x29\x9f\x81\x50\x91\x0d\x06\x83\ +\xa5\x83\xb0\x89\x68\xd3\x39\x24\x60\x36\xb0\x33\x58\x1e\x71\x18\ +\xef\xd6\x1a\xdb\xce\x34\x2f\x3c\xd6\xfa\x92\x97\x97\x8c\x6c\x7a\ +\x59\x11\x65\x1e\x6b\x90\xb1\x71\x79\x69\xa1\xcc\x75\x81\x4c\x7a\ +\xa5\xb9\xda\x9a\x5f\x6a\x59\x76\xc6\x02\x2c\xcb\x09\xc5\x74\x9a\ +\xef\x3b\xf8\x8b\x9f\x7e\x25\x76\x89\x39\xa6\x2a\x24\x26\xef\x3e\ +\xe7\xba\x5b\xb7\x4f\x3e\xbb\x6e\xff\xe4\x77\xfe\xc3\xf6\x6f\xfc\ +\xc1\x3f\xf4\x6e\xea\x3f\x63\xdc\xeb\xf7\xf2\x7a\x1e\xf0\xeb\x83\ +\xc3\x9e\x3c\xe0\x80\x2f\x0e\x87\x1b\x6a\x07\x1c\x70\xc0\x2f\x07\ +\x5f\xf0\xa7\xf7\x2f\x34\xbd\xb3\x93\x36\xe4\x37\x97\xed\xbd\x7f\ +\xf5\xdd\xf6\xfc\x47\x7f\xd1\xde\xd8\xdc\x71\x7d\x52\x72\x96\x13\ +\x2c\x5c\xf8\x36\xad\x92\x26\xaf\xf1\xed\x3f\xfc\x86\x09\xa6\x12\ +\x13\xe1\x20\x35\x39\xe6\x62\x0f\x37\x8b\xb8\xb1\xd3\x75\xa1\xe7\ +\xce\x12\x17\x0e\x7c\x31\x88\x9b\x4a\x55\x3e\xc9\x19\x84\x62\xf3\ +\x76\xd2\x74\x57\xe5\xe5\x5c\xd7\xf1\x6c\x95\xf6\x51\x0d\x31\xb1\ +\x12\x84\xf1\x7a\xc5\x54\x96\xe9\xb2\xf3\x62\x85\x6f\xf4\xa0\xb4\ +\x41\xc0\x65\xf0\x34\x16\x17\x81\xf8\xc9\x43\x2d\xa8\x7c\xe1\x53\ +\x72\xa6\xeb\xbe\x18\x46\x78\xa5\xc1\x2d\x90\x32\xd4\x80\xc9\xb9\ +\x79\x6d\x8e\x78\xf0\x4c\xed\x5d\xb1\x50\x50\x5f\x6c\x4f\x5a\x3b\ +\x39\xdb\xb6\x87\x8f\xb6\xfe\xd9\xb5\xb3\xaf\x6c\xda\xd9\xd7\x8f\ +\xdb\x83\xdf\xda\xb4\xd3\xdf\xd9\xb6\xb3\xdf\x53\xfa\x83\x93\x76\ +\xf6\x87\xa7\xed\xf4\x1f\x9c\xb4\xe3\x7f\x7c\xd6\x4e\xff\xd1\x59\ +\xdb\xfc\xc3\xb3\xb6\xfe\x47\x9b\x76\xf2\x6f\x68\xd1\xf1\xf7\x6e\ +\xda\xfa\xb7\xf4\xa1\xf5\x15\xd5\xf3\x81\xea\x79\xca\x62\x44\x89\ +\x7d\xa4\x05\x1f\x3d\xba\xbd\x55\x79\x97\xea\xd9\xab\x95\xda\xa3\ +\xfd\xf0\x54\x0b\xcb\x67\x5a\x3c\x3e\xaf\x9b\x69\x6a\x95\x16\x8b\ +\xdc\x20\x65\x85\xe2\x65\xa3\xfa\xc6\x6d\xa0\xc3\x68\x01\x39\xbb\ +\x8f\x0d\x6d\x34\x8b\x0e\x96\xbe\xb4\x32\x73\xb5\x11\x03\x2e\x2a\ +\x9b\x8f\xbe\xae\x9c\x17\xb4\x36\xce\x7c\xf1\xc8\x84\x25\x7a\x65\ +\xef\x61\xc2\x06\x16\xda\xe5\xa6\xee\xb5\x30\xd8\xd6\x01\xe3\x18\ +\x41\x76\x94\x99\xe5\x30\x59\xd8\xcb\x30\xc4\xa0\x89\xc1\xbb\x65\ +\x13\x08\x51\x09\xe8\x20\x18\xeb\x6f\x4a\x0e\xc3\xa1\x1a\x11\x32\ +\x56\xc9\x7a\x2e\x62\xaa\x7b\x27\x84\x2a\x57\x5b\xde\x66\xb2\x52\ +\xa1\x50\x36\xd1\x18\x40\xf6\x62\x4b\x9e\x7d\xe4\xfe\x1f\xfa\xab\ +\xa3\xec\x06\x38\x52\xd9\xce\x30\xc9\x66\x6e\xb2\xdd\x09\x29\x01\ +\x21\x62\xbf\xb3\xcd\x0b\x08\xa3\xe1\x3e\x94\xde\xfd\x9a\x74\x22\ +\x22\x25\x1c\x7b\xe2\xbb\x2d\xb9\x63\xb0\xa9\x60\xa1\xb7\x49\x89\ +\xca\xbe\x20\x1e\xd5\x4c\xdc\x99\x74\x5a\xfa\xc2\xab\x91\xd1\xb7\ +\x3a\x4f\xb9\x12\x70\xab\x73\x56\x83\xa7\x9f\xf4\xbc\xe1\x29\x4f\ +\xf1\xdc\x3c\xbb\xbe\x12\xcf\x13\x69\xdc\x1c\x8b\x9b\x66\x91\xea\ +\x06\x1b\x63\x92\xec\x90\x61\xcf\x45\x04\xf3\xc8\xb9\x78\x44\xcc\ +\xa0\x91\xf1\x33\x90\x37\x1a\xc3\x6e\x78\x62\xed\xc5\x95\xce\x7b\ +\x25\xc6\x80\xcb\xbb\xb6\x62\xec\xe6\x62\xcf\x5a\xb4\x7f\xe2\x91\ +\xf1\x43\xe7\xe3\xe9\x6d\xdb\x7e\xa5\xb5\xeb\x77\x4e\xda\xe6\x9b\ +\xad\x9d\x7d\x43\x63\xd1\xb7\x56\xed\xc1\xef\x1d\xb7\x47\xbf\xbf\ +\x69\xc7\xdf\xd6\x11\xf6\xcd\xa3\x76\xf2\xd5\xd6\x36\xef\x1c\xb5\ +\xd3\x37\x36\x6d\xfb\x58\x63\xcd\x5b\xab\xb6\x7e\x24\xdd\xa3\xbb\ +\xb6\x7e\xac\x58\x0f\xd6\xed\xe4\x6d\x8d\x6b\xbf\x75\xd2\x4e\xbf\ +\x7d\xd6\xb6\x7f\xff\x8d\xb6\xf9\xbd\xb3\x76\xfc\xbb\x1a\xd3\x7e\ +\xe7\xb8\x1d\x7f\x6d\xdb\x8e\x79\xd2\xf6\x84\x3a\xc4\xff\xbc\xf1\ +\xc4\x06\xc7\x2f\xa3\x6d\x9c\x2e\xde\x44\x36\xec\xbc\x38\xf6\xe2\ +\x58\xb6\x58\xc9\xe3\x3a\xe9\x78\xdd\x6e\x14\xf7\x88\x1b\x6b\x8c\ +\x43\xbe\xa1\xa6\xbc\xc6\x7d\x5e\xdd\x51\x50\x1c\x5f\x40\x71\xd9\ +\x89\x5e\xd6\x12\x29\x77\x36\xc5\xa9\xb2\xe3\x62\xba\x84\x59\xd6\ +\x18\x87\xf6\xc4\x67\x98\x08\xae\x00\xf9\x4b\x0c\x71\xcc\xf7\xe3\ +\x7e\x06\x49\x65\x62\xf9\x50\x3f\x8f\xc3\xde\x1e\xb5\xcd\x6a\xdd\ +\x36\xc7\xfa\xcc\x38\xd1\xbe\x5a\xf3\xe3\x53\xea\xfb\xcd\xb6\x7d\ +\x7c\x71\xdb\xfe\xe6\xf9\x75\x7b\xe7\x1f\xff\xa3\xf6\x87\xff\xee\ +\xff\x5a\x9f\xe1\x35\x62\x0f\x18\x05\xd4\x33\xc2\xff\xf2\xb0\xdb\ +\xe0\xc0\xb2\x1e\xf7\xd9\xfd\xaa\xa1\xef\xeb\x79\x85\xb9\x41\xf1\ +\x67\xdf\xff\xb3\xf6\xe1\x8b\xbf\x68\xc7\x67\x17\xd3\x71\xcd\x71\ +\x23\xd3\xdd\xcf\x47\xbb\x75\x58\x6e\x9d\x19\xde\xe6\x7d\xf3\x4c\ +\xfb\xb5\x6e\xa8\xe1\xc8\x5e\xf6\xe7\x70\x62\x11\x2a\x41\xac\x38\ +\xee\xb8\x50\xcc\x93\x1e\xae\xce\x8e\xf5\x82\x2f\x36\x73\xdb\xc7\ +\x5b\x1b\xca\x0d\x45\xe5\x40\x43\x54\x7b\x7e\x11\x73\xa7\xb0\xcc\ +\x52\xa6\xcd\x22\x23\x8e\x09\xa8\xe1\xf3\x51\x9b\xc1\x2e\xc9\xfc\ +\xd2\xce\xc4\xf7\x62\x32\x2b\x79\xf4\xc8\x74\x8e\x4d\x79\xc8\x3c\ +\x36\x0b\x9c\xba\x96\x65\x0e\x5c\x9f\x41\xae\x2e\xd7\x79\x77\xd4\ +\x74\xda\xb5\x93\x63\x8d\x83\x5b\x8d\x89\x62\x3c\xbf\xcb\xf9\x8f\ +\x5f\x35\x39\x20\x8c\x52\x5d\xa4\xe5\xe6\x22\xed\x72\xfc\x0a\x4e\ +\x3b\x2c\xcc\xb2\x3d\xb6\x41\x44\x1e\x7d\xaa\xbd\x4b\x46\x2e\x3d\ +\x7e\xde\xe3\x12\x9a\x05\xb8\x64\x5e\xe8\x3c\xc5\x47\x80\x54\x97\ +\x51\xe6\x33\x96\xd8\x51\xdf\x10\x14\x0d\x06\x43\xc8\xb4\x07\x2e\ +\x62\xb0\x8d\xba\x9b\xe8\x21\x6a\x1e\x14\xb6\x6c\xc2\x03\xbb\x4a\ +\x80\x1b\x7c\xa6\xa7\x70\xe9\x30\xe5\xc5\x2e\x29\xbe\x30\x12\xd4\ +\x24\x0f\x64\x30\x0f\xac\x4b\xdd\x04\x5b\x49\x4d\xfd\x8d\xcc\xf8\ +\xf8\x8e\xb1\x98\xdc\xa2\x9d\x12\x00\x2a\x87\x77\x4a\x7b\x1b\xa6\ +\x53\x01\xa3\x3e\xae\x97\x36\x6d\xbc\x53\x17\xf6\xc6\x24\x1b\xfb\ +\xba\x23\x0e\xae\x48\xfb\xf4\x59\x5e\xc1\x37\xcb\x68\x17\xb4\x5d\ +\xc3\x1f\xab\xa8\xc1\x68\x1f\x74\xc9\x23\x2f\x8c\x76\x40\x7c\x17\ +\x8d\xba\xa0\xc7\xed\xa8\x8f\x66\x8b\x57\x9d\xfc\x59\x69\x15\x1b\ +\x8d\x22\xda\x01\x91\x34\x87\x39\xd2\x3c\x07\x9a\x75\x28\xcf\x74\ +\x22\xf3\xd3\x69\xa2\x7d\x43\x4d\xb4\x6f\x9e\x89\xe6\x55\x37\xd8\ +\x32\xb1\x7e\xf5\x93\xa1\xfa\x2c\xf6\x4d\x34\xad\x81\xf8\x2f\x35\ +\xe4\x8c\x8b\x2c\xfd\xf8\x3e\x65\xdc\x58\x8b\x9b\x6b\xb4\x78\x75\ +\x74\xa5\xcf\xf9\x3b\x9d\xff\xeb\xf6\xe0\x54\xf3\xa3\x93\xab\xf6\ +\x40\x75\x7e\x80\x4c\xe3\xc2\xe6\x46\x6b\x33\xed\x57\xbe\xcf\x73\ +\xa2\x31\xe1\x98\x9b\x70\x9a\x5b\xad\xf9\xf2\x52\xdb\xaa\xaf\xd5\ +\xc3\xec\x77\xf6\x93\x64\x34\x57\x83\x87\x36\x5a\xab\x41\xf3\xa5\ +\x1c\x53\xe6\xe2\x10\x61\x1f\xf9\x80\x02\xc3\x1e\xa9\xee\x01\x22\ +\xd2\xc3\x5b\xa3\x93\x22\x92\xb6\x3d\x6c\x1f\x34\x04\x93\x6c\x4a\ +\x16\x51\x7b\x91\xca\x21\xb7\x5a\xbf\x3e\x50\x63\x8f\xf9\x8b\x01\ +\x81\xf5\xbf\xbf\xa0\xd5\x6b\x51\x0e\x03\xaa\xc0\x84\xa9\x0a\xac\ +\xac\xce\x31\xda\xc7\x6b\xad\xf1\xd4\xbf\x60\x80\x3c\xcd\x76\xa1\ +\x12\x15\xd7\x87\x89\x92\xa6\xd1\xde\xcf\xd3\xa1\x1d\x44\x67\x77\ +\x20\x0d\xfd\x3f\x80\xe3\x7e\x74\x8f\xd8\x37\xed\xd9\x27\xdb\xf6\ +\xef\xff\xd3\xff\xac\x7d\xf3\xab\xbf\xe5\xf6\x32\xfe\x1b\x63\xe7\ +\x1c\xf0\x77\x02\x87\x3d\x79\xc0\x01\x5f\x1c\x0e\x37\xd4\x0e\x38\ +\xe0\x80\x5f\x0e\xc6\x4f\x6f\xe8\x2f\xe8\xd3\xfc\xf5\xc3\x54\xa1\ +\xe5\xa1\xdc\xef\xdb\xf6\xfe\x77\xff\xaa\x7d\xfc\xdd\xef\xb4\xaf\ +\x1e\x33\xbf\x67\xf2\x79\xc4\x77\x01\x3d\x79\xf6\x13\x6a\x2c\x46\ +\xb8\x70\xdb\x17\x3c\x40\x53\x60\x26\x99\xbc\x73\x72\xec\x8b\x98\ +\x5c\xa8\xe5\x46\x12\x57\x2b\xe0\xb9\x78\x60\x3a\x2e\x06\xd4\xc5\ +\x48\xd3\x12\xe3\x3f\x87\x26\xba\xb5\xb8\x52\x3e\x95\x57\xa6\x4b\ +\xa7\x89\x36\x95\xea\xa8\x53\xe6\x14\xc4\x4d\x2e\x72\x84\x61\x12\ +\x13\x72\x2d\xac\xf8\xcf\x30\x9e\x0c\xb9\xe5\xe9\x0e\xff\xb2\x0f\ +\x8a\x9c\xc4\x63\x2b\x02\xdf\xa8\x0a\x13\xf1\xa0\xe8\x23\x40\x35\ +\x09\xe8\x0b\x3e\x1b\x12\x0b\x85\x55\x5b\x9d\x1c\xb5\x93\x07\xeb\ +\xb6\xf9\xca\xba\xdd\xfd\xf6\x49\x5b\x7f\xfb\xb8\x6d\x7e\xef\xb8\ +\xad\xfe\xe0\xac\xdd\xfd\x9b\xab\xb6\xfe\xc3\x75\xdb\xfe\xe1\xb6\ +\x1d\xff\xbd\x6d\xdb\xfc\x1b\x9b\xf6\xe0\x0f\x4f\xdb\xf6\xf7\x37\ +\xed\xec\x0f\x6e\xdb\xd9\xef\x5d\xb7\x37\x7f\xf7\xae\x3d\xfc\xed\ +\x9b\xf6\xf0\x6b\xfc\x77\x91\x62\x3e\x96\x5c\x0b\xa3\xa3\x1b\x6e\ +\x96\xa9\xa0\xf3\x23\x2d\x04\xd5\xaf\x57\x5a\xd8\x3d\xdb\xb6\x15\ +\x3f\xf3\xf6\x42\x0b\xc4\x67\x37\x6d\xf3\x99\x16\x92\x2f\xb4\x0f\ +\xf9\x8f\x34\x3f\x7d\xa7\xfa\x71\x51\x97\x2f\x54\xaa\xcd\xb1\x2b\ +\xe9\x23\x7a\x82\x45\x1f\xdb\x68\x23\x17\x6e\x58\x80\xd0\x66\x2e\ +\x18\xb9\x95\xda\x67\xbe\x69\x86\x4a\x32\xf6\xe1\x8a\x3b\x87\xec\ +\x57\xef\x5f\xd9\x91\xdb\x86\xbc\x12\xfb\x5d\x19\x31\x2c\x0a\xb9\ +\x79\x23\xfa\xb0\xaf\x8e\xa2\x02\x1d\x03\x19\xd8\x11\x08\xe5\xdb\ +\x31\xc4\x72\x92\x93\xf7\xa1\xa5\x86\x8b\x41\x4c\x6e\xc9\x12\xd1\ +\x3b\x65\x07\xc8\x2a\xa1\xad\xed\x04\x71\x65\x60\xcf\x09\x63\x8b\ +\x8b\x74\x5f\xc0\x64\x36\x47\x08\xba\x5f\x9a\xc5\x36\x18\xeb\xc6\ +\x18\x96\x98\x30\x3d\xc9\x3b\x97\x29\x8e\xed\xdc\xb3\xaa\x6a\xe4\ +\x7d\xeb\x98\x70\xe1\x5c\xdc\x2e\x22\x4e\x07\x63\xc7\x5e\x43\x09\ +\xf3\x66\x42\x44\x4c\x60\x3b\x13\x08\x1e\x7f\xc8\xcd\xf4\x78\xe1\ +\x8b\x0e\x85\xf2\x94\xdb\x2e\x5d\x02\x41\x85\x3a\x8d\xc6\x8b\x09\ +\x00\xb1\x44\x84\x8a\x7e\x98\x10\x2a\x95\x84\x5e\x9c\x6d\x2c\x79\ +\x05\x7a\x19\x0c\x5e\xca\x14\x98\x0b\x40\x5e\x95\x73\x43\x25\x6f\ +\xa4\xf9\xe7\x1d\x7d\x33\x8d\xab\x02\x39\xee\x70\xe3\x8c\xdc\x37\ +\xce\x78\x32\x2d\x74\xd8\x95\xed\xed\x65\xe9\x74\x2e\x73\xf3\x8c\ +\xa7\x4d\xb8\x41\x97\x7c\xdc\x2c\x97\xec\xf2\xca\x37\xd6\xb8\x89\ +\xe6\x1b\x69\x17\xaa\x0c\xff\x99\xf8\x5c\x36\xfc\x57\x22\xe7\xbe\ +\x5e\xe7\xeb\x2b\x9d\xaf\x57\xad\x9d\x6a\xbc\xd0\xd8\x72\xfb\x78\ +\xd3\x36\x5f\xbf\x6a\xa7\xdf\x6c\xed\xe4\x9b\x47\xed\xec\xeb\x47\ +\xed\xf8\x1d\xa5\xb7\x6e\xdb\xc3\xb7\xc4\xf3\xc4\x99\xec\x78\xfa\ +\x6c\xf3\xa6\xc6\x36\xd9\xaf\x4f\xd6\x6d\xf5\x70\xd3\x8e\xde\x58\ +\xb5\xed\x57\xb6\xed\xe4\xab\xab\x76\xfc\xed\x07\xed\xe8\xef\x1f\ +\xb7\xf5\xdf\xd7\xd8\xf7\xcd\xb3\xb6\xf9\x96\xc6\xaa\x6f\xe8\xf3\ +\xe0\xad\x55\xbb\x7c\x47\x75\x78\x2c\x7e\xa5\xb1\x70\xa5\x36\x70\ +\x65\x84\x9e\xf5\xb7\xba\xe3\x42\x3f\xfd\xb6\x3c\x86\x8b\x37\x17\ +\x22\xe5\xda\x6c\x56\xed\xee\x58\x63\xab\xea\xd1\xb6\x4a\x79\x93\ +\x90\x2f\x74\xf4\x1b\x6a\x24\xbb\xb0\x55\xf8\xfa\x5c\x21\x01\x8b\ +\x43\xb7\x0b\xc9\xe3\xad\x4d\x46\x70\x5c\x8d\x69\xdc\x4c\xcb\x1b\ +\x6a\x5c\x5c\xef\x7a\xea\x45\x43\xaa\x1c\xbe\xbc\x30\x24\x6d\x65\ +\xc3\x36\xcf\x3e\x0e\x40\x08\x33\xb0\xb2\x71\x20\x98\xcc\x05\xa2\ +\x73\x43\xed\xf8\xe4\xb8\x9d\x9e\x9e\xfa\x5b\xdd\xea\x4d\x7f\x56\ +\xbe\xff\xec\xb2\xfd\x54\xdd\xf7\x8d\xff\xe5\xbf\xdb\xfe\xe0\x9f\ +\xfc\x13\x0d\xd1\x8b\xf3\xac\x50\x42\xd7\xf1\x4b\xc2\x7d\xa1\x5f\ +\x47\xfe\x25\x56\xeb\xcb\xc3\x58\xe9\x38\x76\x3f\xfb\xec\x79\xfb\ +\xab\x9f\xfd\x51\x3b\x3e\x7d\xe1\xae\xc6\x62\x9a\xf7\x88\xf6\x67\ +\x22\x96\xa9\x1c\x50\xc7\x6c\xd0\xa8\xa1\x43\xc6\xcd\x34\x9e\x1a\ +\x28\x9b\x9e\x32\xc8\x22\xd4\x80\x38\x90\xae\xaf\x34\x9f\xf3\x44\ +\xa0\xe2\x8e\x18\xf8\x51\x95\xb4\xed\x79\xcb\x37\x6e\x7e\xa0\x20\ +\x4f\xbd\x72\x0d\x4f\xed\x85\xc6\x1c\x7e\xae\xd0\xc6\xe1\x15\x64\ +\x6c\x96\xd9\x40\x40\xba\x62\xae\x6d\x9e\x1d\x5d\xcd\x4f\x66\x33\ +\x4a\xf4\xf2\x2a\x69\xd3\x69\x25\x8e\x7d\x00\x5d\xed\x8e\x8f\x94\ +\xe9\x9c\xa8\xd8\xeb\x74\xb2\x2e\x3f\x77\x8e\x74\x42\x69\x44\xf1\ +\x17\xcb\xb6\x32\xf0\xff\x29\x6d\x35\x27\x3b\xdb\xb4\x93\x93\x55\ +\xdb\x68\x9c\x39\xd2\xbc\x27\xfa\x83\x2d\xe7\xbe\xe2\x30\xc4\x73\ +\xbe\x2b\x8c\xeb\x4a\x4e\x78\xc2\xfa\xaa\x2c\x44\xd8\x47\x1b\xc4\ +\x13\x45\x27\xfb\xfc\x05\x94\x63\xcb\x71\x92\x4f\xbc\x10\xcf\x4a\ +\x64\xdd\x2e\x81\x8e\x9f\xf5\x8d\x1e\xb2\xc8\x5b\x8f\x33\x92\x93\ +\x15\x42\x91\xa5\xcf\x36\x32\x95\x34\x49\x13\xf1\x0e\xba\x30\x74\ +\xb8\xdb\x31\xa8\x8c\x2a\x4b\xf2\x18\xc7\x30\x0c\xb3\x69\x0f\x08\ +\xb6\xcb\x76\xb8\x5f\x94\x21\x8b\xe6\x96\x43\x0a\xe9\x0b\x84\x7b\ +\x90\x71\x6c\x17\x1f\xda\xa3\x5b\x80\x3c\x69\x1f\xbb\x41\xee\x85\ +\x8f\x6b\x42\x29\x85\xdd\x58\x6b\x7c\x09\x1c\x34\x85\x94\x5d\x49\ +\x27\xa4\xc4\x59\x1a\x4d\x81\xec\x6b\xcc\x1c\xc5\xc0\x77\xbb\x64\ +\x7c\x3e\x05\x19\x48\xbb\xa0\x24\x4e\x66\x07\x92\xdb\x27\x3f\x77\ +\x0a\x15\x4f\x88\x7d\xb8\xf4\xbf\x8f\x5f\xc8\x87\x38\xe8\xcc\xd5\ +\x86\xb8\x83\x3e\x76\x4d\xd5\xa3\xe4\xe4\xf1\x19\x66\x9a\xb7\xeb\ +\x22\x81\x7c\xfd\x92\x92\x19\x4b\xe5\xdc\x4c\xf3\x8d\xb4\x5b\xcd\ +\x85\x34\x96\x4d\x37\xcc\x34\xef\x21\x97\x5d\xfc\xbc\x2a\x32\x92\ +\xe6\x37\xbe\xe1\x26\x6f\xe5\xdc\x4c\x8b\x27\xd6\xe2\x06\x1b\x4f\ +\xab\x5d\x2b\x27\xdd\x68\x5d\xc5\x4f\x44\x6a\x2a\xd6\x2e\xb4\xa6\ +\x7a\xca\x4f\x41\x9e\x6b\x7e\xa3\x13\x3a\x96\x3a\xb7\x6d\x7b\xb7\ +\x6e\x67\xc7\xab\xf6\xf0\x64\xd3\x1e\x6a\x9e\xf1\x40\x9f\xc3\x9a\ +\x1a\xb5\xb7\xce\xee\xda\x57\x1e\xad\x94\x8b\xd7\x98\xf1\xa6\x3e\ +\xa7\x1f\x9f\xc9\x4e\xe3\xc6\xf6\xf8\xa4\x1d\x6f\x95\xd6\x67\x5a\ +\x17\x6a\xad\xb7\x3e\x69\x9b\x93\x1b\x7f\x1e\x30\x0f\xf2\xf1\xaf\ +\xfe\x11\xeb\x6e\xe3\x0c\x77\x67\x00\xfa\x90\x31\x42\xa2\xa9\xf7\ +\xd0\x2f\x91\xe7\xb4\xed\xc8\xc3\x86\x2d\x29\xa3\x25\x13\xba\x31\ +\x8c\xc9\x81\x67\xdd\xc7\x58\xf7\xd0\xff\x93\x8b\x42\x73\x44\xf5\ +\x55\x7c\x09\x8a\x1d\x56\x27\xea\x00\x17\x12\x41\x2a\x54\xc4\x4d\ +\x4e\x59\x9d\x7d\xf5\x19\xb8\xe6\x29\xdf\xbc\x36\x10\x8a\xc8\x96\ +\x60\xde\x46\xa9\x9e\x4e\xf3\xa5\x50\x1f\x0f\x13\x46\x7a\xc2\x28\ +\x25\xf0\x14\xdc\x7d\xa9\x32\x89\xcb\x8b\xb8\x3a\x64\xda\x8b\x67\ +\xa7\xed\x3f\xfd\xdf\xfc\x9f\xdb\xe9\xf1\x63\xcb\x3d\x74\x83\xaa\ +\xdf\x7d\x15\x3c\xe0\xd7\x0e\x87\x3d\x79\xc0\x01\x5f\x1c\x0e\x37\ +\xd4\x0e\x38\xe0\x80\x2f\x16\xfb\x67\x76\x5f\xda\xa7\xf7\xeb\x87\ +\xa5\x62\x58\x57\x9e\x99\x16\x30\xef\xfd\xe9\x5f\xb7\x0f\xff\xc5\ +\xbf\x6a\xef\x3c\xbc\x6e\x6b\xbe\xbe\xa8\x99\xbd\x17\x20\x9a\xb4\ +\xc6\x53\x10\x2c\x3e\x58\x9c\xc8\xb7\xda\x27\x5f\x26\xc1\x3d\x21\ +\x92\x9f\x7f\xf2\x51\xc9\xdf\xa2\xce\x89\x32\xf2\xb8\x10\x19\xb4\ +\xe6\xd2\x33\xdf\x19\x58\x48\x51\x4c\x96\xe5\xf9\xfb\x3e\xb8\xc0\ +\x20\x03\xb5\xa0\x50\xcc\xe4\xa7\xf2\x28\x3f\x74\x28\xbb\x1b\xf1\ +\xb9\xc9\xc4\x13\x1e\x17\x4a\xac\xa4\xb8\xf0\xc9\x24\x9b\xf2\xd5\ +\x15\x7e\x4a\x6d\x74\x12\xcb\x1c\x3b\xc4\x2a\x33\x73\x2e\xa2\xdc\ +\xad\xe2\xe2\xee\x91\x16\x52\xc7\x0f\x57\xed\xd1\xdb\x5a\x85\xfd\ +\xde\xb6\xb5\xbf\x77\xdc\x56\xbf\xbf\x6e\xeb\xdf\x5b\xb5\xcd\xef\ +\xdf\xb4\xe3\x6f\xdf\xb4\x07\xdf\x5c\xb5\x93\x6f\x9c\xb6\xd3\xaf\ +\x6f\xdb\xd9\x57\x45\xbf\x71\xd6\x8e\x95\xb6\x0f\x64\xab\x45\xd7\ +\x7a\x75\xa6\x78\x9b\xb6\xba\x3c\x53\x75\x56\xaa\x8f\x16\x81\x17\ +\xd7\xed\xee\xe9\x5d\xbb\xf8\x4c\x55\xfb\x4c\x75\x7c\xa2\x0a\x3e\ +\xd5\xbe\x7a\xae\x72\xf8\x0f\xa5\x4f\x6e\xda\xf5\x53\x2d\x32\x25\ +\xbf\x3d\x5f\xb5\xeb\xcb\x58\x7c\xb4\x2b\xd9\xb2\x6e\xa3\x6d\xd4\ +\xd7\x8b\x08\x2a\x1c\xed\x71\x83\x14\x2a\xda\x48\x7f\x25\xcd\x55\ +\x1c\xfa\xd0\x09\x5e\xfb\x97\x7d\xea\xfd\x2a\x23\xd3\x8a\xa4\x76\ +\xd7\x45\x65\x6c\x62\x5f\xa3\x43\xe4\xa0\x8e\x27\x69\xd8\x24\x4c\ +\x52\xbe\x36\xce\xb4\x8d\xbd\x58\x48\x7a\x72\x31\xca\x6d\x2e\x1e\ +\xfd\x96\x90\xae\x42\xc9\x69\xb4\xa4\x7e\x2e\x1d\xa1\x92\xd7\xf3\ +\x43\x60\xd7\x39\x88\x31\x73\x1c\xd3\xa3\x7d\xe5\x85\x81\x8f\xb6\ +\xa7\x71\xca\x7b\xdf\x74\x41\x64\x1d\x5e\xf8\x2a\xf9\x3d\xd9\x44\ +\x2c\xbd\x47\x7f\xd3\xd2\x58\x44\x9b\xa0\x91\xfb\x6d\x54\x1e\xed\ +\x9d\x2f\xcb\xf3\x88\x98\xc9\x40\xf4\x0f\xd0\x76\xa4\x83\x18\x80\ +\xbe\x53\x43\x1c\x6c\xa3\x8f\x97\xb1\xe7\x90\x9e\xfe\xa9\xc5\x3e\ +\x30\x19\x05\x55\x04\x8b\xf6\x04\x7a\x69\x6c\x94\xa3\xc1\xcc\x78\ +\xee\x59\xdc\x5c\x2a\x44\x35\x42\xbe\xa3\x04\xd4\x5d\x89\xf3\x48\ +\xb9\x97\xff\x3a\xcf\xb8\x88\xc3\x95\x56\x7e\x82\xc8\x4f\x93\xe5\ +\x4d\x32\xbe\x66\x5b\x37\xd2\xf8\xb3\x33\x3f\xad\x36\x3e\x91\xc6\ +\x53\x6a\xb2\xbf\xb9\xbc\xb4\x8e\x9b\x64\xf1\x53\x8f\x3a\xb7\x19\ +\xaf\xb0\x75\x52\x6c\x12\xb1\x55\x0e\x37\xe2\x18\xcf\xfa\x53\x6b\ +\x3c\x7d\x7b\x79\xdd\xae\x9f\xf3\x3f\x6b\xe2\x35\x6e\xdc\x3e\xd5\ +\xf9\xfa\x5c\xd5\x54\x7f\xdf\x6e\x5a\xbb\x7e\xa0\xfa\x3e\xbc\xf1\ +\x4f\x09\xae\xf8\xef\xb4\xb3\x07\x6d\xfd\xe0\xb4\x6d\x4e\x35\x0e\ +\x9d\x9c\xb5\xcd\xf1\x83\xd6\x8e\x4f\x79\x44\xa3\x1d\x3d\xd8\xb4\ +\xbb\x07\x1a\xe3\x4f\x4f\xda\x11\x57\x92\xf8\xc2\xc0\xe3\xe3\xb6\ +\x7d\xe7\xa8\x6d\xbf\x7a\xd6\x4e\xbe\x06\x2d\x3b\xfe\xf3\xf1\x6c\ +\xdb\x8e\x14\xe3\xe8\x4c\xe3\xe2\xd9\x75\x5b\x9d\xa8\x2d\x5b\xd5\ +\xf5\xf4\xa2\x9d\xdf\x9d\xbb\x5f\xe2\x22\x0d\x75\xd7\x60\xa1\xcf\ +\x1b\xc0\x5e\x9e\x2e\x34\x23\x60\x1b\xb4\x0f\x69\x36\x1a\x63\xee\ +\xb8\x22\x7e\xb2\x69\xb7\xc7\x6a\x0f\x57\xc0\xeb\x8b\x0c\x1b\xc6\ +\x1e\xd9\x93\xf4\x62\x48\x8a\x18\xb1\x8b\x62\x1f\xf9\x1d\x48\xdd\ +\x2e\x24\x2f\x95\x6c\x6c\x46\x9e\xb1\xf9\xac\x8b\x31\x10\xbb\xb2\ +\x4d\x07\x97\xc3\xf1\xa0\xa4\x36\xfa\xa7\x85\xa3\x79\x42\x96\xac\ +\x8c\x63\x1a\x2e\xd2\x24\x8f\x38\x48\xdc\x02\xa7\xe3\xcd\xa6\x6d\ +\xb6\xf1\x84\x1a\xe5\x71\xf1\x8f\xf6\x7c\x78\x71\xdb\x7e\xaa\xfe\ +\xfb\xc3\x7f\xff\x3f\x68\xbf\xfd\xfb\xbf\xe7\xe1\x3c\x6b\x31\x61\ +\x14\xf4\xba\xfe\x92\xf1\xb2\x32\xff\x36\xea\xf3\x85\x60\x5e\x71\ +\x8e\xdb\x67\x97\xe7\xed\x8f\xff\xe2\xff\xd5\x36\x0f\x2e\x74\xec\ +\xdd\xc8\x82\xcf\x4d\xec\x94\xea\xf8\x21\x37\x1f\x7e\x05\xcb\xd9\ +\x3f\xa6\x51\xc3\x73\xb8\x73\x1c\x73\x01\x36\xe6\x56\xd8\xf0\x64\ +\x44\x8f\x83\xbd\xb7\xfb\xc1\x71\xe4\x9b\xf0\xbe\xa1\x96\x1e\x33\ +\x87\x81\x59\x06\x52\x19\xce\x72\x63\x6f\xc9\x3c\xc7\xb3\x8c\xa3\ +\x53\xe3\x88\x8e\xf3\x73\x7e\x5a\xda\x07\xb3\x0d\xd3\xd6\x46\x6c\ +\x96\xd9\x40\x50\x43\x41\x9b\xe5\x4d\x31\x38\x4e\xf5\xa8\xb5\x38\ +\xd3\x4a\x99\x73\x76\x98\x2e\xa1\x31\xc5\x08\x79\xe4\xd6\x26\xcd\ +\x97\xc7\x88\x4b\xdd\x8b\x3e\xd1\x39\xad\x61\xab\x3d\x3c\x8d\xa7\ +\x33\x1e\x6a\xbc\x3b\x3d\x5d\xb5\xed\x56\x65\x70\xae\xcb\xba\xef\ +\x4a\x15\xe1\xa1\xc4\xd3\x46\xd5\xd3\x7c\x08\x7b\xe9\xd8\x42\xb1\ +\xdf\xc4\x54\x5d\xd8\xf8\x95\x82\xa2\x79\x61\x14\x6e\x21\x0b\x27\ +\x65\xbe\x53\x17\x67\x77\x48\x28\x05\x1b\x48\xec\x6a\x34\xb1\xc0\ +\x6f\x3f\x99\x62\xe3\xa8\x51\x47\xc5\x54\x66\x0d\x95\xc7\x16\x59\ +\x38\x18\x94\x8f\xbe\x34\x20\xf7\x54\x96\x1b\xfe\xcc\x93\xfd\x92\ +\xac\x6c\xb3\x08\x87\x36\x49\x87\x75\x84\xe1\x58\x96\x41\x3c\x39\ +\x86\xbd\x25\x81\x1d\x81\x30\x86\x1b\x74\xe1\x4d\x6d\x42\x56\x6d\ +\x84\x4b\x89\xb7\x23\x4a\x57\x75\x2d\x0b\xcb\x82\xec\x28\x1d\x30\ +\xad\x8d\xe7\xc1\xa3\x53\xa5\xa5\x77\xf5\x41\x17\x57\x81\x95\x5b\ +\x38\xd7\x97\x10\x9b\x2e\x07\xd5\x42\x10\x8a\xb2\xa6\x1d\xb1\x4f\ +\x91\x82\x24\x3a\x2f\xcc\xf6\x07\x18\x6d\x92\x76\x9d\x82\x76\xdf\ +\x88\x76\x6c\x17\x9c\x36\xce\x92\xce\x9c\xde\x9f\x00\xad\xe4\x2c\ +\xfd\x93\x8e\x73\x05\x06\xe8\xec\x61\xfd\x89\x4d\x18\x88\xe4\x8c\ +\x62\xdc\xe2\xb3\x0e\x5a\xf3\x1a\x6e\x96\x35\x9e\x46\xd3\xbc\x48\ +\x9f\x81\x8c\x69\xbc\xbc\x5e\x95\x8e\x1b\x68\x7e\x5a\x4d\xbc\xa4\ +\x9a\x12\x21\xcb\x1b\x68\xd2\xb1\xa6\x85\xf6\xf7\x0b\xc9\xa5\xbb\ +\xbc\x3a\x6a\x97\xa2\xb9\x91\xe6\xbf\x96\xd6\x58\xa6\xa9\x57\x7b\ +\xa1\x31\xf3\xd9\xf9\x55\xbb\xd0\xb8\x46\x2c\xf7\xc5\x46\xf1\xd6\ +\xd7\x9a\x6e\x6c\x34\x3e\xdc\xb5\xb7\x34\x07\x7a\xeb\x8d\xa3\xf6\ +\xf6\xc3\x75\xfb\xda\xa3\x55\xfb\xfa\xe3\xa3\xf6\x8d\xb7\x56\xed\ +\x9b\x5f\x69\xed\x1b\xef\xac\xdb\x37\xdf\xbc\x93\xfc\xa8\xbd\xf3\ +\x78\xdd\xde\x56\xfe\xa6\xd2\x99\xa6\x53\x9a\x6e\xb5\xd5\xcd\xda\ +\xe3\xc9\x6a\x7d\xa3\xb1\xfd\x4e\x9f\xef\x37\x3e\xc5\x49\x71\x4c\ +\xf1\xdf\xe6\xd1\x4f\x9c\x5c\xbd\xdb\xbd\x93\xc9\x2d\x31\x4a\x84\ +\xcc\xd2\xd4\x95\xb9\xb7\xa1\x30\x57\x59\xa1\x54\xb8\x31\xb6\x6f\ +\x78\x2a\x8f\x1b\x6a\xcc\x73\x24\x63\x6a\xc9\x0d\xca\x38\x1e\x26\ +\xe7\x28\xad\x52\xa0\x28\xe7\x59\x8f\xc8\x8a\xce\xcf\x33\x95\xc1\ +\x67\x5a\xd9\x44\x03\x46\xe4\x91\xa0\x7d\x43\xee\x2f\xf9\x6a\xdf\ +\xc4\x97\x36\x12\x4b\x9f\x9d\x18\x89\x3c\x8e\x7d\x0c\x43\x68\x13\ +\x71\x14\x93\xfe\xd5\xbe\x78\xfe\xec\x71\xfb\x4f\xfe\xbd\xff\x93\ +\x6a\xc9\xff\x01\xab\x65\xd5\x56\xaa\x67\x32\xeb\x79\xc0\xaf\x3d\ +\x0e\x7b\xf2\x80\x03\xbe\x38\x1c\x6e\xa8\x1d\x70\xc0\x01\x5f\x2c\ +\xf6\x7d\x4a\x97\xcc\xb3\xb8\x2f\x0e\x7d\x8e\x67\xee\x75\x91\xd6\ +\xdd\xe9\xae\x3d\x79\xf7\xbd\xf6\xe1\x9f\xfc\x4f\xed\xd1\xed\xb3\ +\xc6\x97\xfd\x99\xcd\x33\xbf\xac\x27\xd3\x98\x43\xb3\x70\xd1\xfa\ +\xc4\x13\xdb\x2a\x94\x89\x74\x5d\x1c\x92\x93\x2f\x1a\xf1\x93\x8f\ +\x3c\xa1\x56\x4f\x08\x78\xb5\xa0\x3c\x4c\xc2\xde\x17\x84\x52\x9f\ +\x6b\xf8\x09\x2c\xa6\x28\x82\x0d\xe5\x51\xd6\xcb\x90\x75\x09\x28\ +\x26\x5b\x6f\x22\xa7\x8c\xaa\x47\xdd\x28\xc2\x25\x92\x16\x2c\x9a\ +\x9c\x1f\xf1\xcd\x6d\x6e\xa8\xd5\xef\x7e\xa8\x8d\x9e\x68\x53\x17\ +\xd9\x11\x88\x90\x55\x19\x59\x38\x8e\x33\xc5\xe5\xc9\xac\x23\x2d\ +\x8e\x8e\xf8\xe9\xb1\x07\x9b\x76\xa2\x05\x53\xfb\xc6\xa6\xdd\xfd\ +\x3e\x4f\xa2\x5d\xb7\xb3\xaf\xdd\xb5\xe3\x6f\x5e\xb5\x87\x5a\x64\ +\xf1\xf3\x6a\x8f\xce\x4e\xda\xf6\xf1\x49\x3b\x79\x78\xdc\xd6\x5c\ +\xa4\x3e\x3e\x6b\x47\xdb\xe3\x76\xb3\xda\x68\x11\xb8\x56\x31\xab\ +\xe6\x27\x49\xf8\xf9\xa4\xcb\xeb\x76\xf1\xfc\xba\x5d\x3e\x79\xd1\ +\x2e\xde\xbf\x6e\x57\x3f\x6a\xed\xc9\x4f\x2f\xda\xf5\x87\x5a\xf0\ +\x7d\x76\xd4\xae\x9e\x6b\x31\xf8\x44\xcb\xc9\x67\xb7\xed\x8a\x8b\ +\x59\x5a\x04\xde\x5e\xf3\xe4\x9a\xea\xae\x18\xbe\x98\xab\xcc\xeb\ +\x02\xa5\xd8\x87\xf4\x09\x02\xed\x0b\xed\x6b\xf6\x01\xfb\xcb\x4f\ +\xd8\xb9\xd3\x44\xc0\x63\x42\xdb\x10\xd1\x07\xa2\x79\x4a\xed\x2e\ +\xee\x94\xd9\x37\xf4\x71\x51\xb9\xe7\xb5\x40\x72\x22\x13\xdf\x3b\ +\xac\x36\x4a\xc4\x8f\x4d\xcf\xc3\x2a\x68\xb6\x51\xcf\xfd\x20\x7c\ +\xc1\x56\x76\x48\xc2\x8b\xcf\xc1\xb7\x6c\x67\xf1\x52\xb8\x10\x21\ +\x9d\x2e\x0c\x55\x4e\xfb\x30\x0d\xe3\x28\xbb\x2c\x04\x48\x12\xea\ +\x41\x5c\xb4\x55\x3e\xd8\x65\xe0\xba\x49\x36\x36\x60\x74\x4a\x32\ +\xf6\x85\xa9\xac\x36\x4c\xd4\x83\x4d\x46\x31\x1d\x42\xb2\x94\x95\ +\x5d\x50\xda\x8c\x8d\x14\xb4\x73\x43\x8d\x9c\x3a\x29\xeb\xf6\x53\ +\x32\x20\xdc\x21\x2c\xf0\x53\xc7\xcd\x56\xc3\x4a\x53\x15\x82\x14\ +\x88\xb8\x3e\xfe\x52\x02\x6c\xed\x4d\xa2\xd7\x6d\xb4\x02\x29\x4f\ +\x31\xed\xf0\x39\x3b\xd8\x21\x81\x0b\xcb\xd0\x40\x2f\x9b\x5b\x16\ +\xd6\x99\x02\x13\x65\x0c\x3e\xb1\xff\xa3\x3c\xc3\xa6\x3d\x3a\x8c\ +\x51\x94\xad\xd8\xa8\xb1\xd1\x5e\xc6\x4b\xc6\x92\xc8\xe3\x46\x5a\ +\xdc\x04\xe3\xca\x84\x7f\xfe\x31\x65\xb7\x57\x57\xf9\x94\xd9\xb5\ +\xcf\xf7\x49\x1e\xf9\xcd\x65\xe9\x18\x9f\x94\x67\x9c\x5b\x6e\xa4\ +\xc9\xa6\x41\x73\x9e\x73\x21\xc9\x37\xd5\xa0\x95\x18\x43\xb8\x91\ +\xc3\x85\x10\x99\x5d\x71\x83\xed\x85\xc6\x0d\x8d\x27\x3c\xc5\x7a\ +\xf3\x5c\x72\xc5\x3c\xd6\xd8\x77\x74\x2c\xa3\x53\xf9\xf2\x5f\x67\ +\x5b\xc9\x78\x12\x63\xb3\x69\xeb\x53\xbe\x9a\xcd\x7f\x05\x6d\x94\ +\x9f\xb5\xdb\xb5\xc6\xab\xd5\x03\x8d\x15\x27\xed\x6e\x7d\xa2\x31\ +\x6f\x2b\xb1\x64\xa7\xdc\x84\x3b\x91\xff\x56\x3a\xfe\xe0\xf1\x58\ +\xb9\x7c\x5d\xf6\x95\xc6\xa3\xe7\xed\xe2\xfa\x5c\x4d\xff\xa4\xdd\ +\x3d\x7b\xde\xae\x2f\x2e\xdb\xf9\xe9\x75\xdb\x5c\x9f\xb4\xab\x1b\ +\x3e\x6f\x6e\xfc\xf3\x49\x77\x7c\x8e\xd0\x81\xda\x01\x71\x61\x95\ +\x1e\xae\x3d\xae\x5c\x04\x63\x0c\xe3\x4e\x5e\x01\x6f\x77\xfc\x1e\ +\x9b\x68\x3f\x1d\xcd\x37\x9e\xf3\x86\x9a\x3f\x83\xec\x83\xb7\xf7\ +\x90\xf7\x8d\x07\x70\xb3\x6c\x08\x08\xbd\x44\x0a\x4b\x47\x5d\x48\ +\x94\x4b\xce\x97\x46\x94\x8a\x77\xb2\x5d\x64\x7c\x86\x38\x3c\x63\ +\x30\x9f\x27\xec\x17\xbd\xb5\x37\x42\xef\xb1\x60\x40\x89\xed\xe6\ +\x8d\x6d\xd4\x0a\x11\xe4\x47\xed\x78\xbd\x6d\x27\xc7\xdb\xb6\xe5\ +\x86\x9a\x0c\xfd\x03\x52\xb2\xfb\x9b\x67\x57\xed\xe3\xcd\x59\xfb\ +\xa7\xff\xc7\xff\xb4\x7d\xe5\x2b\x6f\xcb\x1c\xe7\x45\x7c\x58\xc4\ +\x10\x9d\xfe\x92\xb0\x28\xba\xe3\x3e\x79\xe1\x55\xfa\x5f\x39\xec\ +\xa9\x30\xc7\xad\xfa\xf6\x8f\xbe\xf3\xdf\x6a\x3f\x5d\xb5\xd5\xf1\ +\x85\x6f\xa4\xc4\x31\xc2\x5b\x2f\xe7\x92\xe2\x5e\xc7\x4d\xc2\xc7\ +\x58\xca\xc2\x2e\xed\xb5\xe1\x78\xe6\xe2\x66\x1c\x72\x92\x73\x7c\ +\x93\xeb\x55\x98\xa8\x01\xb2\x61\x3e\xc5\x05\x51\xfe\x53\x28\xa2\ +\x3a\x9b\x1c\x28\xa4\xb0\x0c\x92\xc6\xdd\x34\x37\x53\x3d\xa3\x0e\ +\x5c\xa4\x7e\xfe\x82\x43\x9e\x03\x1d\x83\xb2\x0d\xbb\x49\x50\x59\ +\x1e\xa7\x15\x27\x37\x1c\xbe\x21\x8a\xb1\x3d\xb4\x25\x23\x0f\x69\ +\xbd\x0a\x21\xf5\x8f\x2c\xea\x35\xf8\xfa\x5c\xa3\xdf\xf8\xa9\x59\ +\xfe\x17\x89\xbf\x5e\x5c\xb5\x53\x0d\x1b\xc7\x1a\xa2\x4e\x8f\x6f\ +\xdb\x03\x8d\x21\x0f\x4f\x5b\x7b\xac\xf1\xec\x4d\xcf\xe1\x56\x3a\ +\xd7\x56\xfc\xb0\x41\xe3\xc9\x40\xfc\x89\x8a\x3f\xf9\xed\x8d\xe6\ +\x58\x3a\xb7\x79\xc8\x56\xc3\xaf\xa7\x8d\xec\xf7\x1b\x26\x51\x9a\ +\x5f\xf9\x67\xdb\x38\x7f\xe5\x3a\xf5\x53\x34\x2c\xbe\x2c\x60\x81\ +\xf7\x25\x73\x2a\xcf\x9d\x78\x31\x77\x52\xce\xff\x4c\x86\x95\xb6\ +\xf8\xe4\x1c\xaa\xfa\x86\x9e\x03\x8e\x63\x26\x84\x1e\x3f\xe0\xd9\ +\x58\x99\xea\x64\xb2\x2a\x06\xf1\x6d\x4b\xd0\x32\x26\x53\x0a\xbb\ +\x32\xae\x1c\x24\x8d\x8d\x32\xfb\x17\x90\x15\x5f\xfa\x2c\x30\xc6\ +\x3d\xda\x61\xd6\xa0\x5d\x36\xd7\xa6\xc4\x65\x9f\xce\x6c\xc2\xb3\ +\x1c\x5d\x62\x00\x00\xff\xf4\x49\x44\x41\x54\xc7\xb4\x90\xd9\x84\ +\xb0\xe9\x64\x25\xfc\xc8\x80\x89\xe0\xba\xac\x03\x49\xfa\x67\x19\ +\xbb\x36\xbb\x28\x2f\xdb\x6a\xd7\xf4\x7e\x70\x5e\x4c\x42\x9d\xd2\ +\x6d\x21\x66\xcc\x98\x0f\xb0\x0f\x7b\x68\x32\x77\x0e\x51\x9d\xac\ +\x2c\x9e\xe8\x5a\x22\x3d\xac\x4a\x7d\xf9\x91\x03\xe7\xe2\xb3\x8f\ +\x27\x0c\x34\x75\x80\xad\xcf\x32\x40\x8e\xd0\x79\x17\x24\xe9\x2d\ +\x44\xcf\xad\x09\x93\x49\x8f\xc8\x31\x94\xb2\xfe\x7c\x9a\xf1\x01\ +\x59\xbf\x0e\x42\xf2\x8b\x2f\xdb\xf8\x83\x33\x68\x6e\xa2\x4d\x3f\ +\xed\xc8\x53\x6a\xc8\x6e\xda\xf5\x9d\xe6\x45\xc8\x94\xb8\xf1\x16\ +\x4f\xa5\x31\x1f\xaa\x9b\x69\x3c\x95\x26\x99\xe6\x43\x5e\xe6\xd9\ +\xef\xce\x5f\x02\xe0\x06\x1b\x4f\xac\x71\x3e\x5f\xca\x86\x74\xad\ +\xf2\x5c\xb2\x6c\x34\x6d\x6a\xe7\x3a\xc9\x79\x62\xed\xd9\x45\x6b\ +\xcf\xcf\x39\x0f\x35\x16\x6b\x7c\x3f\x5a\x71\x03\x8c\xff\x55\xdc\ +\xf8\x09\xf2\xb5\xd6\x70\xa7\x9b\x63\x8d\x25\xc7\xed\x81\x3e\xa7\ +\xcf\x34\x1f\x79\xb8\x3d\x69\x5f\x39\x3d\x69\x6f\x3f\xba\x6b\xef\ +\x68\x7e\xf5\xf6\xd9\x5d\x7b\x53\x63\xcd\x23\xcd\xb1\x4e\xf9\x82\ +\xcc\x4a\xb6\xc7\x77\xed\x01\x37\xee\x35\x77\x39\xd9\xde\x29\x69\ +\x5c\x82\x96\x3f\x4f\x88\x71\x43\x9f\xff\xe0\x56\x81\x1a\xbf\x34\ +\x2e\xa9\x1c\x8e\x85\x23\xe6\x96\x7a\xf5\xdd\x5d\x90\xd2\xbb\xb8\ +\xf2\x0e\xce\x41\xec\xd3\x61\x50\x42\xc6\xf1\xc5\x74\x8a\x2f\x11\ +\xac\xda\x83\x33\x3e\x73\xc2\x88\x8f\x0e\xe6\x69\x81\x72\x5c\xc6\ +\x07\x71\xe4\x76\xb9\x83\xa6\x07\xf5\x09\x42\x39\x5f\x80\xca\x9f\ +\x7c\x4c\x9b\x19\x54\x3f\x0e\x4f\x3f\xb5\x2f\x7b\x0e\x0d\xf6\x99\ +\xbf\xe4\xcb\x67\x4c\x1a\x4d\xed\x4e\x6a\x16\x2a\x64\x53\xf8\xe0\ +\xc3\x9b\x63\x2a\x22\xb0\xde\x3f\xba\x7c\xd0\xae\x9f\x3f\x68\xff\ +\xd1\xbf\xf7\x9f\x89\xc7\x81\x3a\xca\x60\xac\xdb\xbe\x7a\x1e\xf0\ +\x6b\x89\xc3\x9e\x3c\xe0\x80\x2f\x0e\x87\x1b\x6a\x07\x1c\x70\xc0\ +\x17\x8f\x7d\x9f\xd4\x5f\xd2\xa7\xf7\xeb\x87\xc5\xb2\xac\x99\x54\ +\x06\xcf\x37\x02\x5f\xfc\xe4\xfd\xf6\xde\xbf\xfc\x9f\xda\xfa\xfc\ +\xe3\xf6\xf8\x64\x63\x95\x97\x37\x5e\xa0\x68\xba\xc9\xa2\x43\x13\ +\x77\xff\x7e\xba\xf2\x0e\xd9\xf9\xa2\x8e\x5e\x71\x0f\x45\x39\xee\ +\x79\xb1\x91\xab\x05\xd6\x93\xa4\x73\x12\xcd\x85\x21\x5f\x49\x88\ +\x2a\x74\x40\x7a\x7a\x4c\xf5\x98\x44\x43\x0e\xc5\xdd\x8b\x8c\x51\ +\xa1\x9c\x6b\xd3\xbf\x41\xed\xba\x29\x65\x99\xfe\xd6\x6e\x96\xc3\ +\x0d\x35\x9e\xec\xe0\x09\xb5\xb8\x70\xad\xc9\x3a\x13\x76\x95\x1b\ +\x8b\xbb\xb2\x55\xdd\xf5\x0a\x11\x17\x02\x44\xb0\x90\x56\x6a\xc7\ +\xd7\x6d\x75\xa6\x85\xce\xdb\xfc\xcc\xd9\x75\x3b\xfa\x56\x6b\x27\ +\xdf\x3a\x69\xeb\x3f\xb8\x94\xec\xba\xad\xbf\xa2\xc5\xd6\xa3\x8d\ +\xff\x47\xed\xf8\xc1\x59\x6b\x6f\x6c\xdb\xe6\xec\xb4\xad\xb6\xa7\ +\x6d\xcd\x4f\x96\x1d\x1f\xb5\x5b\x7e\x5f\x5f\x8b\xb3\x63\x9e\x56\ +\x39\x3a\x57\xbd\x2e\xb5\x72\xbb\x6a\xeb\x4f\x5e\xb4\xf5\xbb\x17\ +\xed\xfa\x6f\x3e\x6d\xb7\x7f\xf9\xa2\x9d\xff\xb5\xe8\x77\xb5\x94\ +\xfc\xac\xb5\x17\x4f\xb5\xbc\x79\x76\xd4\xae\xb5\xc8\xe3\xe7\xdd\ +\xda\x8d\xe2\x78\xc7\x69\x71\xa0\xfa\x52\x35\x6a\x1f\x17\x70\xe2\ +\x95\xef\xdc\x1f\x22\x68\x87\x24\xbe\x29\x08\xaf\x3c\xda\x2d\x69\ +\xed\x23\xb1\xb1\x0f\xb9\x28\x45\xae\xd8\xfc\xac\x27\xfb\xd9\x4f\ +\xa7\xc9\x87\x8b\xcb\xd2\xfb\x5b\xdc\x5c\xdc\xc6\xae\x16\x4a\xf6\ +\x71\x44\x36\x21\x33\xc1\x3b\xca\xaa\x2c\x4d\xf6\x02\x95\xfb\xbd\ +\xa7\x57\x81\x65\x58\x58\x46\x99\x74\xce\x50\x40\x27\x83\x70\x5d\ +\xa8\xab\xfd\x26\xbb\xa1\xba\x81\xe2\xc9\xd5\xb7\xae\x89\xe8\xb2\ +\x1b\x5c\x03\xb6\x0b\x72\x02\xc2\xea\x97\xc2\xc2\xd1\x6c\xc8\x6c\ +\x37\x14\xe0\xfa\xc1\xb3\x6f\xc9\xad\x62\x53\x31\x17\xb1\xcb\xa4\ +\xea\xa1\x7d\x0c\x1f\x8b\xd5\x09\xe5\xa2\xb0\xa1\x0f\x76\x06\xcb\ +\xd8\x94\x71\xa2\xfb\x7a\x13\x9e\x64\x21\x8f\x72\x5c\xef\xd4\xed\ +\x83\x7b\x33\x0c\x9d\x8f\x96\x88\x52\x6c\x44\xac\x64\x5e\x01\x87\ +\xf4\xc6\xec\x44\x2b\xa7\xad\x19\xcd\x82\xfb\x43\xa6\xb1\xfd\xf6\ +\x58\x59\xc4\xb9\xa7\x18\x95\x3c\x96\x30\xae\x5c\x8b\xbe\xd6\x39\ +\xca\x4d\x32\x9e\x46\x8b\x1b\x67\xfe\xaf\x34\xdf\x4c\xe3\xaa\xec\ +\xb5\xd4\xd2\xe5\xd3\x6b\xfe\xa9\x47\x9e\x4c\xf3\x13\x6a\x1a\xa3\ +\x6e\x24\xd3\x18\xc5\xcd\x99\xba\xd9\xe6\xf8\x4e\x77\x92\xab\x6c\ +\x8f\xd1\x51\x07\x5f\x0b\xa0\x52\xc8\xa8\x0b\x17\x95\x54\x77\xb1\ +\x1e\xeb\xae\x9e\x2b\xf6\x67\x97\x7e\xea\xf5\xec\xa9\xce\xe5\x27\ +\x47\xed\xf4\xfc\xae\xad\x6f\x35\x5e\x9d\x1d\xb7\x63\xae\x36\x1f\ +\xf1\x1f\x21\x0f\xdb\x4a\xf4\xea\x58\x31\xd7\xdb\x18\x17\xb8\xc9\ +\xc6\x53\x61\xe2\xdb\x76\xdb\x56\xfc\x73\x3f\x5f\x0e\xd8\x9c\xaa\ +\x4c\x7d\x08\xb0\x55\xbd\x8f\xaf\xce\xdb\xe6\xea\x59\x5b\x3d\x7d\ +\xda\xb6\x9f\x5e\xb6\xdb\x4f\xd5\x07\x2f\x9e\xab\x56\xb7\x8a\x27\ +\x2b\xc5\xe1\x86\x22\x3f\xc5\xd4\xae\xc4\xdf\x6a\x6c\xb9\xe5\x19\ +\x95\xdc\x1f\x3a\x88\x63\x24\x73\x63\x7c\xac\xfb\xb8\xe6\xf3\x85\ +\x2b\xe3\x7c\x5e\xe5\xcf\x3d\x22\xe3\x09\x35\xff\x8c\x10\x76\x8c\ +\x59\xbc\x86\x13\xc1\xe3\x3a\xc3\x40\x07\x16\xce\x3a\xbc\x1b\x85\ +\xf2\x73\x99\x10\x1e\x03\x45\x69\x5c\xab\x9b\x69\xd1\x17\x4a\x55\ +\x06\x19\x01\xdc\xdf\x24\x91\x7c\xc6\xf0\x75\x78\x64\x36\xaa\x12\ +\x80\x64\xa8\x9c\x9b\x18\x40\x30\xca\x56\x79\x7a\x1d\xab\x9f\x4f\ +\x4e\xf4\xb9\xb2\x89\x8b\x50\xfe\xff\x4b\xc5\xff\xde\x8b\xab\x76\ +\xfe\xe0\xcd\xf6\x4f\xfe\xe3\xff\xa4\x3d\x7e\xf4\x40\x3d\xdb\x7b\ +\x6f\x42\x84\x8a\xcd\x42\xf5\xa5\xa3\xca\xbb\xaf\x5c\xe4\xbf\xec\ +\x3a\x7d\x49\xe0\xf8\xb8\xbb\x5d\xb7\x7f\xf6\x2f\xff\xeb\x76\xb9\ +\xfe\xb8\x1d\x9f\xdc\xe8\xf0\xc8\xcf\x41\xf4\x79\xac\xf8\x06\x49\ +\x90\x48\xad\x03\x3e\xd6\x52\xd6\x75\x7a\x73\x06\xf8\x1b\xfd\x79\ +\x0c\xf2\xe2\xa2\x67\xd0\x69\xd7\xb7\x0b\x48\xc8\x61\xe5\xe1\xe7\ +\x56\x27\x99\x04\xb6\x2b\x63\xf2\x18\x04\x03\xe6\xc9\x53\xe6\x2c\ +\xe8\xb2\x8a\x7a\x46\x0a\x5e\xb1\xb9\xf0\x7c\x11\x4f\x7e\x4c\x96\ +\x61\xdb\x81\xcf\x14\x65\x34\x73\x8c\xf8\x79\xed\x10\xab\x75\xce\ +\x2b\x51\x29\x87\x52\x22\xa6\xfb\x43\xf4\x86\xff\x33\xd2\x7c\xe4\ +\x44\xcc\xc9\xf6\xa8\x9d\x69\x3e\xc5\x0d\xb2\x47\x27\x5c\xcc\xde\ +\xb6\x07\x1a\x23\x4e\x25\x3b\x3d\x39\x92\x6c\xd3\xde\x38\x5b\xb7\ +\xaf\x3c\xe4\xe7\xcc\x8e\xda\x1b\x1a\xb7\xa0\xdf\x7a\x7c\xd7\xde\ +\x78\xb0\xd6\xf9\xa3\xe1\x44\x53\x34\x8d\x20\xaa\x0b\x05\xf9\x74\ +\x57\x06\xcd\xc5\x5c\xfe\x67\xe9\xae\x3d\xd7\x7c\xeb\xc5\xe5\xaa\ +\x9d\xeb\xdc\xf6\x8d\x35\x9d\x87\x24\x8f\x2d\x9a\x53\xc7\x19\x98\ +\xf5\x35\x90\xe4\xfe\x72\xdd\x25\x22\x27\x78\x68\xcc\x87\x18\x9b\ +\x18\x03\xdd\x07\x96\x5b\x13\xc7\x8f\xa9\x69\x5b\x19\x08\xab\x81\ +\x32\xa3\x48\x6a\x8b\x77\x4b\x8e\x2f\x16\x97\xba\xb0\x64\xba\x3e\ +\xc7\x26\x71\x11\x45\x89\xb7\x92\xaa\xd6\x51\x6d\xc6\xae\xdf\x18\ +\x13\x3d\xe5\xe8\xa6\xac\xe7\x1d\xb2\xf1\x3b\x73\xf7\x83\xc4\xd4\ +\xdd\xe5\x4b\xa6\x8c\x2f\x26\x8d\x9f\xe5\xae\x88\x98\xdc\x5d\x01\ +\x08\xba\x16\x0c\x0a\x32\xea\x39\xd1\xc9\x61\x93\x98\x28\xf4\xfb\ +\x10\x9e\xe5\x13\x75\x14\x3f\x3a\x2e\x60\x1b\x57\x9a\x3c\xb2\x00\ +\x07\x4d\xf6\x9a\xe4\xd4\x07\xd8\xdc\xbc\x60\xa5\x36\xe4\x95\xc4\ +\x47\xb9\x4a\xb1\x19\x50\xbc\x72\x07\x22\x57\xea\x6d\x84\x4e\xd2\ +\xa8\x52\x41\xf4\x87\x79\x36\xd9\xef\xb6\x11\x19\xba\xc9\xda\x46\ +\x59\xb7\x2e\xb7\x21\x82\xb4\x16\x4f\x0b\x43\x4f\xe2\xfc\x48\x5b\ +\x3f\x91\xc6\x49\x13\xe7\xcc\x74\xa3\x24\x6c\xfa\x13\x6a\xfe\x89\ +\x47\xad\xd1\x98\x1b\x71\xa3\xec\x48\xf3\x1f\x72\x92\xe6\x57\xf1\ +\xf3\x8f\xe8\x34\xc7\x91\xcc\x37\xd1\xb4\x96\xf3\x8d\xb2\xc6\x3a\ +\x16\x5f\xf1\x0a\xcf\xcd\x32\x6e\xa0\xf0\x85\x51\xe6\x4c\x57\xa2\ +\x79\x52\xed\x4a\xe7\xb5\x6f\xb0\x89\xf7\x7c\x49\x49\xac\x6f\xac\ +\x5d\x6b\x5e\x72\x75\x75\xdc\xce\xaf\x74\xce\x6b\x08\x7d\x76\x7e\ +\xdb\x2e\xe4\x7f\xc1\x4f\x6c\x53\x96\xda\xaa\xe8\xfa\x6c\x56\x93\ +\x18\xa3\x57\x5b\xf9\xf3\x4b\x23\xdc\x68\x53\xce\x0d\x32\x4d\x78\ +\xce\x34\x2e\x31\x3e\xf9\x46\x9b\xe6\x3f\x0f\x4f\x56\xed\xcd\x47\ +\x77\x4a\xeb\xf6\x26\x3f\x11\xf9\x40\x32\xcd\xb5\x1e\x9f\x1e\xb5\ +\xc7\x1a\x9f\x1e\x6b\x4c\x7a\xe3\xa1\xc6\xad\x07\x77\xb2\xbd\xd5\ +\x18\xc6\x8d\xae\x8d\xa7\x3c\xdc\x5f\x8b\x2f\x0d\xa9\x8e\xee\x4e\ +\x36\x70\x21\xcb\x83\x2e\x44\x41\x25\xc9\x79\x25\xdb\x54\x61\x9d\ +\x26\x76\x41\xc7\x53\x63\xc7\xc7\xab\xf6\x48\x65\x7b\x1d\x2d\x73\ +\x75\xa1\xfb\xd7\x60\xdf\xda\x29\x7c\x4d\x76\x84\xac\x6a\x13\xf5\ +\x98\xe8\x1a\x03\x19\xdd\x3c\x57\xd3\xd8\x7d\x2f\xe4\xa4\xdd\xe0\ +\x7d\x11\x7f\x41\x91\xfb\x0d\xa1\x4b\xd8\x03\xeb\xb2\xbc\x82\xda\ +\x34\xf1\xa2\xd9\xb7\x50\xc4\xe6\x25\x66\x75\x7d\xdc\x36\x9b\x6f\ +\xb7\xff\xdd\x3f\xf9\x0f\x65\x1f\xd7\x41\xb2\xea\x13\x76\x04\x07\ +\xfc\xba\xe2\xb0\x27\x0f\x38\xe0\x8b\xc3\xe1\x86\xda\x01\x07\x1c\ +\xf0\xe5\xa0\x3e\xad\xbf\xe4\x4f\xed\xcf\x17\x9e\x89\xe6\xe8\xc1\ +\xc4\x56\x13\xcb\x17\x97\xed\xa7\x7f\xf4\x47\x6d\xf5\xf4\xfd\xf6\ +\xd6\xe9\xd6\x0b\x08\x16\xf4\x9e\xb8\x7a\x02\x1b\x93\x58\x5f\x18\ +\x8c\x19\x68\x84\x61\x72\xa9\xc4\x1a\xdf\x37\x53\x78\xad\xc5\xd7\ +\x05\x47\x26\xcd\xb6\x91\xad\x17\x19\xc1\xfb\x5a\x52\x5e\x0c\xd2\ +\x86\x8a\x18\x31\x0d\x0e\x30\x6f\xaf\xa7\xe1\x2c\x9f\xcc\x76\xb1\ +\x47\x17\xa2\xb1\xcc\x48\x29\x4e\xbd\x22\xab\x9c\x23\x2d\xa4\xb8\ +\xc0\xcc\x53\x6a\xbe\xf0\xa9\x85\xd7\x34\x5f\xa7\xcd\xb1\x36\xf7\ +\x94\x5c\xef\xbb\x95\xf4\x6b\x2d\xb2\x36\xca\x35\xef\xbe\x7e\x53\ +\x61\xbe\x7e\xd7\x56\xdf\xd6\x4a\xeb\xeb\xad\x9d\x7d\x6d\xd5\x4e\ +\xbe\x79\xde\x1e\x3e\xbe\x6b\x27\x67\x6b\x7f\x63\x91\x6f\x1e\xae\ +\x37\x0f\xda\xe6\x84\xa7\xd2\xb8\x99\x76\xe2\x85\x96\x9f\xac\x50\ +\x70\x16\x8e\x9b\x8b\xdb\x76\xf4\xfc\xaa\xdd\x3d\xbf\x6c\xab\x0f\ +\x94\xbf\x7b\xd1\xae\x7e\x70\xd5\x9e\x7d\xef\xaa\x7d\xfa\x57\xb7\ +\xed\xf9\x0f\xaf\xda\xf9\xa7\xd7\xed\xc5\xb3\x55\xbb\x7e\xae\x05\ +\xde\xa5\x1c\xaf\xb5\x08\xf5\x37\x07\x5d\xd9\x80\xda\x4b\x7d\x15\ +\x79\xea\xde\xcc\xfd\xd4\x47\xf6\x43\x5d\x30\xb2\x25\x32\x2e\xee\ +\x28\x0c\x3e\xb4\x95\xa7\x0d\xd1\x3b\x8e\x54\x2c\xac\x2a\xd9\x3e\ +\x6f\xa2\xf1\x5f\x46\xbe\x49\xca\x3e\x25\x86\x78\x82\xb8\xdf\x23\ +\x40\x94\x01\x69\xb9\xd9\x10\x67\x1f\x43\x43\xb2\xd0\x59\xc2\x72\ +\x08\x6f\x04\x6c\x1c\x64\x12\x75\xec\x08\x00\xc7\x73\xec\xc7\x70\ +\x5b\x18\xc1\xba\x72\x41\xf6\xf2\x06\xf8\x58\x25\xf7\x56\x28\x5b\ +\x9a\x1a\x6c\x87\xe9\xbe\x89\xf6\xd0\x42\xd6\xb0\xa3\x61\xd5\x25\ +\x43\x27\x26\x26\x28\x6d\x79\x0f\xfb\x2a\x40\xcf\xc6\x2b\x54\x6c\ +\x4a\x17\x95\xaa\x3a\x17\x66\xac\x3a\xc3\xf5\xa1\x7e\x7a\xc7\x25\ +\x9d\x01\xdd\x76\x1e\x23\xac\xec\xd0\x33\x0b\x45\xb0\x30\x0d\x42\ +\x39\x95\x0a\x4e\x08\x4d\x6c\x06\xd8\x1c\x5b\x72\x4b\x02\xa2\xa3\ +\x6e\x81\x5e\x4f\xe4\x6c\x92\xa7\x3d\x93\x59\x50\x6c\x6d\x63\xa6\ +\x6a\x94\xbc\x00\x45\xea\x7e\xc5\x84\xe1\xa4\x70\xbd\xba\x55\xe8\ +\xf6\x61\x30\xb1\x39\x65\x7a\xf0\xc2\x5f\x67\x25\xe3\xe6\x35\x27\ +\x68\xdc\x34\xf3\x8d\x34\xae\xca\x9a\x56\xca\x9b\x6c\xdc\x54\xf2\ +\x0d\x34\xdf\x44\x0b\x9d\x6f\xa0\x5d\x71\x93\x8d\x9b\x6e\x8a\x23\ +\x3e\x7e\xe2\x31\x7d\xf9\xaa\x35\x57\x52\x28\x23\xae\x76\x44\x72\ +\xd9\x4a\x89\xa0\xe2\xf8\xd7\xd0\xe5\xb2\x79\x8a\x62\x25\xdb\xa3\ +\xcb\x4d\xbb\x7b\xaa\xf1\xe4\x53\x29\x3f\x3b\x6e\xab\x0b\x9d\xcb\ +\xd7\xeb\x76\xa4\x3a\xad\x1e\x6c\xda\xc5\xe3\xd6\x8e\x75\x5e\xdf\ +\x9c\xaa\x0e\xb7\xbe\x03\xa6\x48\x5c\x00\x89\x2b\x3a\x9c\xef\x7e\ +\x7a\x6d\xb3\xd5\xb8\xb0\xf6\x6e\xe7\x42\x85\x1a\xa2\xcf\x93\x17\ +\x6d\xf5\xe4\x79\xbb\xfe\xe8\x59\x7b\xf1\xfe\x65\xbb\xf9\xe8\xbc\ +\x1d\xbd\xb8\x6a\xeb\x17\x27\x6d\xfd\xe0\xa2\xdd\xbd\xc9\x98\x48\ +\x24\x8d\x7b\x17\xdb\x76\xf7\x82\xf6\xac\xdb\xda\xdf\x52\x00\x0a\ +\xc6\xdb\x07\xb8\xea\xa7\x14\xff\xe3\x28\x9e\xb1\x89\x1b\x7a\x27\ +\xaa\xbf\x72\x9e\x4e\x8b\x27\xd4\x54\x1f\xa5\x3e\xe6\xf3\x1a\x0e\ +\x7c\x2e\x9c\x0c\x5d\x23\x4c\xba\x22\xc9\xc2\x2f\x78\x08\xd3\x94\ +\x5d\x71\x79\x0a\x9b\x3a\x78\xdc\xcb\x64\xdb\xc8\xe2\x66\x9a\x0a\ +\xca\xc4\x67\x27\x3b\xc2\x65\xcb\x86\xf1\xc0\x76\x25\x23\xb1\x8f\ +\xfc\x0a\x9a\x3a\x60\xcc\x76\x75\xc4\x85\xb8\xe3\x76\x7c\xb2\xf5\ +\x0d\x35\xa4\x57\x3a\xbe\xd6\xda\x07\xdf\x3b\xd7\x67\xd7\x1b\x5f\ +\x6b\x7f\xff\x3f\xfa\x0f\xdb\x23\xd9\x44\x11\x59\x91\xca\x7b\xfd\ +\x4a\xfe\x0b\xe0\xf3\x86\xc0\xfe\x0b\x28\xf6\x57\x1b\xb1\xd7\x38\ +\xbd\x4e\xb5\xaf\xfe\xf9\x9f\xfd\x51\xbb\x5c\x7d\xa0\xfd\x75\x95\ +\x17\x3d\xd5\x01\xf1\x8e\xe3\x27\x8f\x99\xd8\x1d\xde\x18\x21\xb6\ +\x55\xd7\x95\x6c\x7a\x42\x0d\x01\xc7\x44\x1e\xe7\x98\xcd\xb6\x09\ +\x98\x12\x28\xe7\x69\xd5\x6b\x3f\xa1\x16\x88\xf8\x42\x1c\x30\x4a\ +\x79\xde\x8d\x7e\x60\xc7\x30\x4d\x74\xee\xd7\xb9\x45\xc6\x71\xec\ +\x1b\x6a\x3e\xf6\x25\x08\x55\xb7\x31\x4c\xd7\xd1\x5f\x36\xd1\x06\ +\xdf\x4c\xf3\x8b\xe7\x54\xe3\x14\x57\x09\xbe\x89\xc8\xcf\x5b\x9a\ +\xd6\x18\xb3\xd1\xb9\x77\xac\x73\x7c\xa3\xf3\x9e\x27\x69\x1f\x1d\ +\xf3\xd4\xc7\x49\x7b\xe7\xe1\x49\xfb\xe6\x9b\xc7\xed\xb7\xbf\xba\ +\x6d\xbf\xfb\xb5\xd3\xf6\x3b\x5f\x55\x7a\x7b\xdd\xbe\xf9\xf6\xaa\ +\x7d\xf5\xad\xbb\xf6\xd5\x87\xdb\xf6\xf5\x37\xd6\xed\x1b\x6f\xb7\ +\xf6\xd5\x37\x8e\xda\x5b\xfc\xfc\x9a\xe6\x67\x6f\x9c\x1d\xb5\xb3\ +\x93\x23\xc5\xd2\x78\x44\xf9\xd4\x9d\xf3\x36\x3f\x84\xb8\x58\xcf\ +\xc5\xf6\x67\xe7\x77\xed\xb3\xe7\xeb\xf6\xe9\xf3\xbb\xf6\x54\x73\ +\xaf\x4b\xcd\x13\xb9\x48\xcf\xd3\x0c\xf5\x93\x8f\xbe\x41\x20\x70\ +\x16\x8f\x6d\xb2\x4a\xed\x88\x1e\xce\x76\xaa\xbf\x3d\x97\x92\xa1\ +\x5b\x47\xde\xf7\x69\xf5\x85\xa3\xa0\x48\x79\x48\xc2\x38\xf6\x88\ +\xd9\x90\x5a\x36\xe5\x8a\x91\xf5\xf2\x93\x4c\xaa\x67\xa9\x0d\x9c\ +\x5d\xb1\xcc\x0d\x31\xc4\x5e\xc2\xa2\x41\xee\xc6\x06\xc2\x7c\xd2\ +\x41\xb9\xc5\x93\x89\x85\x55\xd4\x68\x0b\x96\xfe\x41\xaa\xae\xca\ +\x5d\x4c\x3a\xd6\x1c\xc8\x6a\xc1\xe1\x8b\xa9\x5c\x04\xe4\x58\xf4\ +\x84\x6e\x14\x06\x99\x06\x69\x62\x61\x57\x28\xf1\x32\xf8\x6e\x00\ +\x21\x8d\xc8\xd0\x57\x7f\xf9\x73\x2c\x48\x1f\x23\xb4\x89\x3c\x44\ +\x43\x28\xc9\xcc\x84\xbe\x14\xbe\x11\x02\x1c\x37\x69\x43\x74\x67\ +\x15\x59\xba\xb0\x0d\xe1\x68\x19\x4c\x94\xb9\xab\x15\xcd\x1b\x91\ +\xc5\xa5\xab\x5c\x80\xec\x65\x73\x7c\x41\x0f\x7a\xcb\xc8\xb4\xa9\ +\x76\x5b\x4f\x8b\x23\x0f\x5a\xe7\x4a\xce\x95\xc2\x2c\x69\x8f\xa2\ +\x9a\xd3\xe8\xc3\x1a\x3a\x7e\xee\x91\x9b\x65\x71\x53\x8d\x1b\x57\ +\xdc\x0e\x41\x1e\x5f\xfa\xd4\x1c\x89\x55\xab\x68\x9e\xa0\xe2\x5c\ +\x45\x1e\x3f\xfd\x28\x89\x12\x37\xd6\xb8\x09\xe3\xff\x4a\xa3\x0c\ +\xe5\xdc\x74\x63\x2a\x64\x99\x86\xc5\xb8\x99\xe6\x2a\x4c\x49\x2f\ +\x3a\x9f\x73\xfc\x76\x45\xa9\xfc\xfa\x07\x3f\x0b\xb9\x6a\x4f\xcf\ +\xd7\xed\xe9\xf3\x6d\xfb\x54\xeb\xb1\x17\xe7\xdb\x76\xce\x7c\xac\ +\x6d\xb5\xfc\xb9\xd3\x7a\xef\x48\xd3\x13\x9e\x22\x8b\x39\xd1\x9d\ +\xa6\x4b\x6e\x95\x76\xea\x2d\x36\xfa\x8c\x60\x4d\x78\xb6\xde\xb6\ +\xc7\xa7\x71\x93\xff\xf1\xe9\x89\xf2\xe3\xf6\x58\x6b\xc4\x47\x0f\ +\xd7\xed\x6c\xab\x31\x49\x65\x11\xef\x81\x06\x8e\x47\x27\xb7\xed\ +\xad\xb3\x1b\x8f\x57\xc7\x7c\x41\x40\x93\xa7\xed\x96\xfd\xa8\x32\ +\x14\x9c\x9b\x7a\x81\xc8\xfb\xb8\x5b\x39\x80\x34\xab\xf3\x24\x9a\ +\x36\x03\xa6\x8c\x49\x1b\x8d\xed\x27\xa7\xeb\xf6\x50\x65\x69\xd8\ +\x72\x5f\xd0\x47\xf4\x40\x77\xca\xb8\xde\x12\xab\x83\x3a\x8d\x63\ +\x8d\x28\xbf\x33\x97\x5f\x8d\x7d\xf5\x1f\x6a\x7b\xa1\x0a\xc6\x8d\ +\x4d\x33\xde\xdf\xfc\xdc\x23\x29\xf6\x4b\x61\x4f\x43\x84\x59\x95\ +\x46\x35\x31\xc9\x82\x0c\x4a\xef\xdb\xf3\xb3\xf6\xcd\x77\xfe\x57\ +\xed\xdf\xf9\x07\xff\x9e\xf7\x37\x2e\xae\xda\xe8\x9b\x6d\x3e\xe0\ +\xd7\x1f\x87\x3d\x79\xc0\x01\x5f\x1c\x0e\x37\xd4\x0e\x38\xe0\x80\ +\x2f\x1f\x5f\xd2\x27\xf7\xe7\x0f\xbb\xf4\xd0\xb2\xf7\xe8\xb6\x5d\ +\x3d\xbf\x6c\x1f\xfd\xf3\xef\xb4\xbb\x8f\x7f\xd0\x1e\x1e\x6b\xa2\ +\xcb\x0c\x5a\x13\x47\x2f\x46\x58\x88\x68\x02\x5b\xdf\xe8\x8b\x1b\ +\x6a\x4a\x9e\x58\xc6\x64\x9b\x59\xa7\x73\x25\x5f\x3c\x5a\x6b\xa2\ +\xbc\xd6\x4c\x14\xba\x27\xf4\xab\xb8\xa8\x50\x32\x7c\x86\x3a\x41\ +\xf5\xf9\x2d\x93\x5e\x56\x20\xd0\x7a\x65\xf8\x5d\xec\x15\x86\xd8\ +\x65\x8a\xf2\x04\x5e\x75\x9a\xca\x1c\xa0\x32\x78\x4a\xcd\x4f\xa8\ +\xf1\x1f\x65\xfe\x3d\x10\xda\x29\x9d\xcb\x06\xea\x27\x11\xc4\xf3\ +\x42\x55\xed\xbd\x3b\x96\xeb\x63\x99\x7e\x4d\xb2\xdf\x5e\xb5\xed\ +\x37\xb4\x62\xfa\x66\x6b\x67\x6f\x9f\xb5\xa3\x6f\x68\xc9\xf4\x70\ +\xd3\xee\xb4\x40\xe2\x27\x2d\x78\x82\xe3\xe4\x58\x8b\xab\xd3\x63\ +\x3f\x99\x76\x74\x72\xaa\x4f\x9f\x4d\xbb\xd6\x82\xca\x4f\x86\xdd\ +\xa8\xbf\xb8\xa8\xfe\x91\x16\x8c\xef\x5e\xb5\xab\xbf\xb9\x68\x97\ +\x7f\x79\xd9\x3e\xfe\xeb\x67\xed\xc9\x5f\x5d\xb5\x27\x3f\x7a\xd1\ +\x9e\x7e\x70\xdd\x9e\x3f\x3d\x6a\xd7\xe7\x27\xaa\xa7\x7c\x6f\xb6\ +\xbe\x72\x4d\xfd\xf2\x1a\x8e\x2f\xd6\xc4\x45\x97\x29\xcf\x66\x18\ +\x96\x8b\xf3\x4d\x35\x77\x2e\xfb\x03\xbd\x34\x5e\x39\x38\x5a\x6c\ +\x55\x2f\xae\x6b\x6f\xb0\xa5\xbd\xc8\xb8\x88\xec\x7d\x27\x85\xe4\ +\xfe\x09\x12\xf6\x33\x37\xd6\x24\x73\x92\x8d\x2f\x6e\x53\x1b\xd9\ +\xd4\x1a\x2f\xca\x9e\x36\x94\x62\xb2\x2a\x37\x11\x42\xd1\xe4\xb2\ +\xb3\x73\xd0\xde\x0f\xa8\x40\x12\xc5\x63\x31\xe9\xa0\xc2\x07\x29\ +\xdc\xa4\xcb\xdc\x08\x86\x8b\x0f\x14\x81\xf5\xa8\x77\x4d\x87\xc0\ +\x64\xc8\xca\x64\x30\x9d\x63\xa1\x70\x75\x40\x15\x00\x2f\x21\x72\ +\x2f\x7c\x2d\x4f\xd8\xb6\xca\x98\xca\x9a\x82\x28\x8f\x77\xd0\x66\ +\x26\xfb\x42\x37\x1f\x65\x99\xd3\x28\xf6\x41\x5c\x0c\x99\x17\x6f\ +\x4c\x2e\x42\x31\xb1\xcf\xbc\x2b\x46\x48\xb0\xe3\x0f\xec\x26\xcd\ +\xa8\xec\xce\x52\xfa\xdb\xc9\x45\x2b\x4b\x55\x45\x1b\x2c\x07\x48\ +\x5a\x0a\xf2\x52\x96\x4c\xa8\x76\x87\x88\xed\xa0\x14\x96\xf1\xdc\ +\x05\x99\xbc\x2b\xc8\xe1\x6d\x48\x6d\xc4\x20\xcc\x3e\x0b\x94\x11\ +\xfe\xe4\xfc\xd4\x58\xf0\xbe\x29\xac\xb1\x92\x71\x53\x03\x68\xf3\ +\x13\x64\xbe\x91\xa6\x5c\xe7\x79\xdc\x14\xe3\xc6\x19\xe3\xcd\x8d\ +\x6f\xa2\x71\x65\xa7\xdf\x28\x73\x42\x7f\xe9\x9b\x6b\x8c\x47\x37\ +\xc8\xfc\x54\x9a\xfa\xec\x2a\xc6\x62\x7e\xf2\x91\x72\xfa\xcd\x9b\ +\xac\xa3\x06\xeb\xa8\xa5\x79\x08\x10\x04\x67\x39\xf5\x5c\x4b\xe7\ +\x8b\xde\xec\x02\x65\xd7\x17\x77\xed\xfc\xc9\x6d\x3b\x7f\x7f\xe5\ +\x9f\x83\xbc\x3b\x8f\x73\x9d\xff\x4f\xe3\x27\x8d\x6e\x4f\xce\x64\ +\xa7\x31\x4d\xfe\x7e\x32\x46\xe7\x3a\x2f\x6e\xaa\x79\xec\x90\xec\ +\x36\x06\x13\xae\xec\xb4\xa3\x8b\x8b\x76\xf4\xc9\x93\x76\xfd\xee\ +\xb3\x76\xfe\xc1\xf3\x76\xf3\xec\x53\xd5\x97\x27\xf3\xf8\x6c\x90\ +\xc9\xe3\xbb\xb6\x7a\xe3\xb2\xb5\x13\x95\xc1\xcf\x36\x9e\xeb\x73\ +\xe8\x53\xf9\x6b\xfc\x3d\xf2\x13\x6a\xd4\x33\xf6\x54\x9c\x1f\x4a\ +\x1c\xe3\x1e\x7f\x24\xec\x37\xd4\xb6\xf1\x5f\x6a\x8c\xef\x75\x43\ +\x2d\x6f\x3a\xc4\x78\xaf\x94\x71\x00\x5f\x0e\xe1\x29\xbe\xa9\x63\ +\x26\xdd\x9c\x4c\x46\x31\x80\xcb\x44\x96\xe3\x9f\xbf\x30\xe2\xcf\ +\x38\xc4\x92\x93\x06\xb0\xaf\xd9\x0f\xd5\x1f\xde\xe7\x12\x59\xe7\ +\x6d\x1d\x2d\x6c\x42\x12\x50\xfb\xdd\x56\xde\xc4\xe4\x33\x76\xe5\ +\x1b\x67\xa7\x27\xc7\x7e\x4a\xcd\xe3\xac\x5e\xb7\xca\xaf\x14\xf7\ +\x7b\xcf\xf4\xb9\xf1\xcd\xdf\x69\xff\xf8\x3f\xf8\x3f\xb4\xd3\x0d\ +\xb7\x04\xca\xd7\x44\xe6\x21\x35\xc6\xe2\xbe\x6c\x54\xf9\xbf\x21\ +\xf0\x98\xaa\xbe\xfe\xf3\xef\xff\x59\xfb\xc1\xfb\xff\x73\x7b\xfc\ +\xa6\x8e\x77\xf1\x9c\x91\x71\xe1\x50\xc7\x9f\xf6\xa7\x8f\x69\x25\ +\xef\x96\xa1\x93\xcc\x23\xe7\x95\x3a\x72\x1f\xc7\x4a\xbe\xb9\x94\ +\xc7\xb5\x8f\x82\x3a\x3e\xf5\x8a\x3c\x37\xc1\x76\xa0\xe7\xd8\xe7\ +\x22\x73\xed\xff\x88\x9f\x80\xae\xe3\xa2\xe8\xae\x17\xb1\xd4\x0b\ +\x7e\x4a\xdd\x14\xc7\xa8\xd4\x3a\x6e\x2f\x2e\xf8\xe9\xb4\xc9\x14\ +\xb8\xad\x05\xd3\x55\xdb\x80\x45\x79\x0e\xd0\x43\x9c\xfd\x3c\x81\ +\xc1\xff\x99\x9d\x1e\x33\x77\xe2\xa7\xcf\x36\xed\x58\xc7\xf6\x83\ +\xd3\x23\xcd\x51\x95\x4e\xef\xda\xa3\x93\x3b\x7f\x01\xec\x1b\x8f\ +\x37\xed\xb7\xff\xff\xec\xfd\x79\xcf\x6d\x4b\x72\xe6\x87\xc5\x9e\ +\xdf\xe1\x4c\xf7\x9c\x3b\xdf\xba\xc5\x2a\x16\x87\x22\xd5\x6c\x52\ +\x94\xd4\x6a\x0b\x2d\xbb\x25\x58\x32\x04\xd9\x94\x61\x03\xb6\x1b\ +\xb6\xdb\xb0\x0d\x03\x06\x0c\xf8\x33\xe8\x13\xf9\x2f\x03\x86\x24\ +\xcb\x50\x8f\x92\x5a\xcd\x66\x4b\x64\x93\xc5\x6e\xb2\xe6\xba\x75\ +\xe7\x33\xbe\xc3\x9e\xfd\xfc\x9e\x88\x5c\x6b\xed\xf7\x9c\x7b\xab\ +\x8a\x3c\x75\xc9\x2a\xee\xd8\x3b\x57\x44\x46\x44\x46\x46\x0e\x2b\ +\x57\xe6\xca\xbd\xd6\x7e\x75\x1c\x6f\xde\x1f\xc5\x9b\x0f\xa6\xf1\ +\xfa\xfd\x49\xbc\x72\x77\x1a\xf7\x4e\xc7\x71\x9b\xa7\x3b\x4e\xc6\ +\x71\x47\x81\x57\xae\xdd\xbb\xb5\x53\xda\x91\x5f\xa7\xc6\x93\x22\ +\xbc\x5a\xcd\xf5\xc9\x0f\x04\x46\x1a\xf7\xe4\x07\x73\x5d\x6e\xd0\ +\xaf\x76\x9b\xb8\xd2\x78\xf4\xf4\x62\x14\x0f\x9f\x8d\xe3\xd3\xa7\ +\x93\x78\x72\x3d\x8a\x4b\x5e\x11\xae\x93\x19\x97\x19\xe2\x35\x04\ +\x77\xa7\x30\x28\xfb\x40\x96\xd2\xe5\xf4\x7f\x21\x65\x1d\xb9\x1d\ +\xd1\x01\x5b\x27\xf5\x78\x8d\x36\x1f\xeb\xc3\x49\x25\xcb\x8c\x07\ +\xba\x49\x09\x94\x49\x51\x03\x48\x4e\x5d\x9a\x44\xe4\x38\xd3\xec\ +\xe5\xfc\x9d\x88\x7c\xc2\xcf\xa1\x05\x2b\x25\x94\x15\x6b\x34\x7e\ +\xdb\xcc\x71\x59\x6d\x34\x45\x78\xd1\x3f\x91\x96\x3a\x46\x26\x33\ +\x6e\xb1\x48\x63\x05\xb8\x4e\x51\x07\x8b\x4d\x27\x38\x2f\x27\x2d\ +\xe5\x0e\x06\x11\xf4\x2b\xfd\xc0\x62\x82\x59\xc5\x6f\x78\x20\x3e\ +\x04\x09\x3c\x8e\x43\xa3\x0f\x6e\x50\x75\xef\x36\x14\xd6\xc1\x73\ +\xc5\x66\xcb\x98\xc3\x30\xff\xa1\x81\x43\x7a\xa8\x55\xd5\x69\xf7\ +\xaa\xa6\x9f\x87\x62\xb6\xba\x37\x74\x9d\x4d\xb8\x65\x6d\x18\xda\ +\xef\xf5\x5f\xf4\x23\xb5\x4e\x0e\x72\x50\x5a\xf5\x63\x9b\xeb\xf4\ +\x6f\xe0\x0e\x89\x70\xfb\x70\x41\x03\x27\x37\x8f\xc8\x20\x06\xf1\ +\x26\x6b\xfa\x70\x3d\xf7\x13\x6d\x3d\xb4\x4a\x0f\x3f\xf8\xec\x35\ +\xd7\xd1\x39\xd8\x3d\xa1\xe6\xcd\x34\x68\xcd\x8b\xc4\xe7\x29\x7d\ +\x36\xdc\xfc\xaa\x47\xf1\xfd\x1f\xdf\xfa\xb0\x71\xe6\x57\x3b\xea\ +\xa4\x34\x4f\x32\x3f\xad\x56\x98\x4b\xb2\x5f\xf5\xe8\xe0\xa9\x95\ +\xc7\x45\xcb\x35\x6e\x71\xd9\xc6\x93\x1e\x54\x98\x62\x30\xc3\xa3\ +\x04\x5a\xae\xf9\x29\x5c\x36\xb0\x56\x1b\x36\xd6\xc7\x71\xa5\x71\ +\x6f\xa5\x39\xdb\x72\xa5\x39\xd4\x4a\x86\x94\x17\x1b\xfe\x6c\xfe\ +\x4f\x34\x2f\x49\xc8\x4e\x46\x0c\x1b\xde\x7c\xd3\x3a\x70\x3a\x99\ +\x69\xf4\x39\x8d\x99\xe6\x5a\xe7\xf3\x93\xfc\xdf\x46\x7e\x34\x83\ +\x2f\x9a\x2f\x8d\x15\xa8\x13\xe6\x5d\xf3\x09\xaf\x83\xdc\xf9\x49\ +\xb7\x5b\x1a\xc7\x4e\x3d\x36\x6a\xc4\x94\xb2\xfd\x97\xe1\x36\xef\ +\xe9\xe0\x80\x2e\x0c\x88\xa6\x68\x8d\x45\x2e\x44\x50\xe7\x87\x1b\ +\xa7\xa7\x8c\xb7\xf2\x59\x6d\xe2\x7a\x53\xa1\x69\x8b\x3e\x05\x90\ +\xe5\xa9\x2a\xea\x20\xb9\x05\x95\xbf\x79\x7c\x15\x77\xd0\xf5\x70\ +\xc2\x7c\xcd\xd7\xc5\xd4\xb8\x09\xd8\xcd\xae\xc4\x9c\x37\x37\xd3\ +\x68\xdb\x06\xd9\x57\x2b\xdd\xc0\x89\x03\x7f\x9e\x33\x9b\x7d\x0c\ +\x01\xc9\x73\x0c\xd4\xba\xfb\xf2\x76\xfc\xf2\x57\xfe\xdd\xf8\xa5\ +\x77\xbe\x6e\x7e\x8e\xd7\x4e\xd0\xc3\x73\x8c\x23\xfc\xac\xc2\xb1\ +\x25\x8f\x70\x84\x97\x07\x6d\x14\x3f\xc2\x11\x8e\x70\x84\x97\x0f\ +\x5c\xb1\x09\x07\xb3\xbb\x97\x03\x7f\xbe\xc9\x40\x9f\x7a\xb4\xd7\ +\x84\xfc\xc1\x79\x4c\xde\x78\xa0\xc9\xea\xc4\x8b\x0d\x7e\xc1\xc7\ +\x7a\xa9\x9b\xf8\xf2\x29\xba\x52\x29\x64\xa1\xbc\x18\xcc\x19\x6f\ +\x72\x21\x65\xc3\x1c\x1d\x72\xc2\x5a\xfc\xc6\x18\xe4\xdf\xc0\x3a\ +\x0a\x48\x32\x90\x9f\x88\x8a\x1b\x4a\xd8\xc5\x05\xe8\x25\x1e\x82\ +\x33\x63\x05\x24\x48\x5f\xcc\x31\x61\xcb\x22\x12\x93\x87\xcb\xc5\ +\xec\x59\xc1\x6b\x6f\xcb\x13\x52\x37\x17\xd0\xf6\x0f\x82\x9b\xa9\ +\x27\xd3\x98\xbf\xae\x05\xd3\x3b\x8b\x38\x79\x73\x17\x8b\x37\x76\ +\x71\xfb\x7c\x1a\xb3\xbb\x5b\x2d\x12\x66\xb1\xd3\x82\x67\xaf\x05\ +\xd3\x6e\x7f\x22\x9b\xb3\xd8\xcf\xb4\x40\x5a\xa8\x7e\x7d\x07\x47\ +\x32\xdf\x8c\x1d\x87\xd6\x63\xfe\xc5\xe3\x96\xff\x43\xfb\xde\x75\ +\x3c\xfe\x97\xab\xf8\xf8\xf7\x96\xf1\xc3\xff\xe1\x2a\x3e\xfc\x83\ +\x65\x7c\xf4\xed\xab\xf8\xf4\xc3\x6d\x5c\x3d\x19\xc7\xee\x72\x1a\ +\xbb\xeb\x49\xec\xfc\x04\x89\x7c\xa1\x2c\xdc\x14\x17\xe4\xc5\x2c\ +\xbd\x05\xbb\xde\xab\xe0\x20\x22\x7c\x5c\x25\x6e\x1f\x34\xb5\xc0\ +\x64\x71\xd2\x82\x16\x4c\x23\xad\x28\xd9\x60\xd4\x8a\x95\x15\x63\ +\x2e\x5c\xb5\x40\xcd\xff\x9a\xe3\x46\xbf\xd2\xfa\xe6\x30\x37\xf9\ +\xd7\xc2\xe2\xf1\x24\x0d\x36\x33\x23\x63\x2f\xce\x20\xe0\x0f\x82\ +\x57\x66\x95\x9f\x9f\xde\xd1\x42\x56\x84\x83\xe3\x96\x95\x0e\xe9\ +\xe1\x23\x87\xa7\x38\x7f\xd2\x2d\x4b\x64\xa4\x78\x06\xab\x15\xdd\ +\x44\x4a\x50\x02\x91\xc2\xf9\x29\x71\x23\x06\x91\xa6\x6a\xe8\x08\ +\x81\xc5\x3a\xc8\x9c\x4d\x82\xbb\xcc\x20\x49\x7b\x60\x3d\xa1\xa2\ +\xdd\x7d\x90\x86\xa9\xf6\x62\xba\x8e\x80\xce\x5e\x8b\xa7\x5a\xc6\ +\x6e\x5a\xce\x16\x4e\x38\x94\x34\xaa\xe7\x34\x3a\xf5\x32\x3f\x05\ +\xe7\xd7\xa1\x17\x82\x45\x9d\xbc\xd2\x10\x2f\x94\x50\x0c\x81\x8b\ +\x64\xb2\x97\x76\x19\xc8\x65\x9f\xcb\x52\xea\xea\x23\x7b\x62\x15\ +\x47\xcc\xaa\x83\x2c\x6d\x52\x00\xfa\xa6\x0e\x9c\x85\x96\x06\xb2\ +\x14\x72\x80\x93\x47\x31\x73\xa1\x9d\xfc\x84\x16\x47\x4b\xb8\x4f\ +\x6c\x5e\xc3\xb0\x5a\xdd\x67\x9f\x15\xd1\xda\x5c\x21\x93\xe4\x8d\ +\x57\xf7\x55\x29\x78\x73\x5a\xa1\xc5\x7d\x13\xc8\x7d\x38\x6f\x08\ +\x79\xf3\xcb\x06\x33\x7d\xca\x53\x8f\xff\xc0\xe0\xbc\xcb\xbe\x2f\ +\x7d\x74\xb9\x11\xc4\x39\xa6\xe0\xd7\x3b\xea\xfc\xe2\xce\x8f\x37\ +\x69\x38\x1f\x7d\x6e\x92\x6f\xf9\x24\xe3\xde\x24\x92\x38\x33\xca\ +\xbc\x5c\xcc\x22\x5d\x2a\xd7\xb5\x10\xbb\x43\xdc\xd4\xd7\xd8\xef\ +\xcd\xab\xb5\xe2\x9b\xdc\xa0\xbf\x7e\xba\x8f\x4f\xbf\xb1\x8b\x4f\ +\xfe\xdb\x67\xf1\xe4\x1f\xed\x63\xf3\x4f\xae\x63\xff\xaf\xf6\x31\ +\x7f\x88\xee\xdc\xbf\xb0\x96\x9a\xc7\x49\x42\xfe\xe2\x5a\x01\x3f\ +\x28\x2b\x37\x3c\x18\x17\xae\x56\xb1\xbe\xb8\x8e\xe5\xc5\x32\xd6\ +\xab\x25\x43\x89\x75\x63\xa2\x71\x63\xc2\x43\xac\x1a\x3b\xc7\x8b\ +\x98\xdc\x9d\xc6\xf8\x95\x69\x4c\xee\xcf\x63\x72\x2a\x37\xe4\x57\ +\xb6\x5d\xfa\x8e\xd3\xb2\x5c\xee\xe7\xf8\xe6\x23\xb6\x64\x23\xfb\ +\x15\x51\x71\x09\xfe\xa4\x3e\xd0\xf7\x37\x01\x74\x17\x2f\x85\x21\ +\x0c\x74\xad\xda\x54\x8c\x33\xd2\x1d\x95\x57\xaa\x37\xa5\x01\xc8\ +\xff\xc6\x6d\x7d\x31\x75\x07\x19\x00\x83\x4c\xd0\xf0\x47\x71\x6b\ +\x95\xac\x95\xa9\x3d\xc9\xd2\x5e\x11\xe7\xbe\x29\xc6\x52\x75\xce\ +\xbf\x74\xbd\xfe\x4b\x5f\x8b\x19\xaf\xdc\x54\xba\x17\x78\x54\x20\ +\x61\xd5\x6d\x07\x9f\xad\xfc\xd9\x30\x4c\x73\x33\x3d\xf1\x16\xfe\ +\x8a\x01\x35\xbb\x53\x03\xd0\x42\x5f\x7a\xfb\xeb\xf1\xf8\xd1\x2a\ +\x36\x6c\xa4\x57\x5d\xd0\xbe\xd9\x3b\x75\x0e\xfb\x2c\xfa\xfc\x4a\ +\xba\xd1\x52\x06\x9a\xaf\xf1\x13\x57\x5f\xeb\xf2\xf8\x6c\x68\xe7\ +\x08\xba\x20\xc0\xfa\x44\x20\xe0\x35\xc1\x4d\xb8\x69\x98\x78\xf5\ +\xa5\x96\x82\x61\x85\x1b\xb1\x37\x55\x0f\xa0\x13\x66\xaa\xdc\x28\ +\xc8\x32\x68\x58\xd0\x98\x10\x7e\xf2\xe2\xb6\xe6\x4f\x77\x35\x9f\ +\xba\x77\x36\x8e\xbb\x27\xe3\x78\x45\xe1\xb5\xdb\x9b\x78\xf5\x6c\ +\x1d\xaf\x9c\x6e\xe2\xd6\x7c\x1f\x77\x26\x93\x78\xfb\xee\x3e\xbe\ +\xf4\xea\x28\x5e\xbd\x3b\x89\xfb\x77\x4f\x35\x07\x5b\xc4\x7c\xb6\ +\xd0\x79\xa0\xb9\x96\x5a\x62\xb7\x9b\xd8\x3a\xbe\xed\xe1\x69\x9c\ +\xdb\x6e\x79\x1d\x9b\xc6\x0e\xc9\x3d\x06\xea\x1c\xd2\xc8\xa7\x21\ +\x75\x15\xd7\xeb\x4d\x3c\xbb\x5e\xc7\xa7\x4f\x76\xf1\xfe\xc7\xa3\ +\xf8\xfe\x87\x93\xf8\xc1\x27\x93\xf8\xe8\xc9\x2c\x9e\xae\x26\x71\ +\xad\xf1\x99\x9b\xe9\xbc\xe6\x71\x29\x82\xa7\x5a\x1c\x18\xc6\x75\ +\x4e\x72\xc3\x97\xff\xaf\xf5\xb0\x2e\x0c\x9f\xe1\x3b\xff\xff\x09\ +\x3e\xd7\x02\x30\x73\x26\xe8\xba\xf1\xbf\x63\xa3\x80\xcd\x01\xae\ +\x19\xb9\x21\x60\xda\xd7\x1a\xf1\xbb\x74\x99\xd6\x4f\xe3\x18\xab\ +\x2f\x31\xee\x2a\xd0\xbf\xc4\x70\x60\xcc\x31\xc7\x71\xf1\x85\x94\ +\x40\x03\x08\xe3\x06\x7c\xec\x50\xf5\x99\xce\xad\x80\x5e\x05\xc7\ +\x7d\xb4\x20\x79\x98\xd2\xc7\x6d\x26\x3b\x0c\x36\x9d\x5e\x97\x36\ +\x93\x1c\x82\x34\x24\xa3\x8d\x51\x49\x25\x52\x35\xe5\x21\x5d\x7d\ +\xa2\xa2\xf6\xc9\x7d\x44\xe0\x3c\x85\x89\x3b\x6f\x61\xca\xd0\xa5\ +\x05\x17\x6d\xd4\xe2\x56\x12\x94\xec\x39\x90\x6f\xcd\x7f\xa0\xec\ +\xb7\xbc\x5c\x93\x25\xc6\x9f\xa1\x6a\x42\x8b\x50\xc6\x2c\xa7\x79\ +\x56\xca\x60\x5f\x0f\x40\x9c\x54\xcc\x7a\x71\x5e\x95\xa5\x43\x6f\ +\xd3\xba\xce\x97\xd0\xda\x8b\x0f\x9a\x40\xcb\x07\x10\x6e\xce\x81\ +\x3b\xba\x1d\x8a\x37\x0c\xf0\xca\x94\xeb\x3b\xa9\x42\xe8\x64\xd4\ +\x79\xb2\xcb\x43\x7d\xaa\x1f\x9a\x5d\xe9\xdb\xc7\x8a\xc8\xc4\xb7\ +\xaf\xc6\x0a\xee\xa7\xe8\xe3\xbf\x82\xe3\xf4\x6d\xf5\x5d\x52\xc2\ +\x17\xcf\x7d\x9e\x1f\x17\x3a\x6d\x05\x9d\x1b\x49\xab\xcf\x0b\x7b\ +\x4e\x24\xec\xf3\x09\xec\xf3\xa4\xe2\xd8\x50\x90\xa6\xd7\xb1\xf9\ +\xff\x69\x72\x89\x29\x53\xcb\xdf\x69\x5a\xaf\xc0\x86\x68\xd6\x51\ +\x6a\x04\xf3\xac\x47\x48\x5e\xdf\x1a\x30\x4b\xa6\x8f\x6d\x8c\x77\ +\xb1\xd6\xf9\x79\x25\x9b\x9f\x5e\x8f\xe3\x07\x4f\xd7\xf1\x9d\x8f\ +\x57\xf1\x27\x1f\x2c\xe3\x9b\x3f\x7c\x1a\x1f\x3f\xbe\x8e\x35\x3f\ +\x12\xd2\x82\x2d\xff\x7f\x91\x7c\xe9\x6f\x36\xa5\x33\xbe\xe6\x3c\ +\x33\x85\xc9\x48\xeb\x41\xe1\xf1\x59\x9c\xcc\xef\xc4\x9d\xf3\xdb\ +\x71\x7a\x72\x16\xb3\xe9\x3c\xa6\x5a\x3f\x4e\xf8\x25\x12\x3f\x60\ +\xda\xcf\x63\xa6\xb5\xea\x29\xe3\xe2\xf9\x2c\xde\xbc\x3b\x8b\xb7\ +\x35\x87\x7a\xe5\xb4\x7e\xb8\xc9\x60\xe7\x71\x9c\xd0\x35\xed\x0b\ +\xe1\x40\x56\x63\xbf\xd7\x95\x32\x31\xae\x4d\x64\xb4\xb2\x3e\xf0\ +\x98\x30\x04\x6a\xe2\xd0\x0e\xd7\xb8\x1f\x07\xd0\x3b\xd4\x1d\xd8\ +\x6e\x64\xe1\xcc\x9f\x00\x83\xfe\x92\xfc\x1e\x0e\x19\x9d\x55\xb7\ +\x61\xd1\x1d\x88\x81\x82\x0d\x0a\xab\x31\x76\xdb\xb1\x7f\xa8\xfa\ +\xca\xe9\x03\x6b\x64\xb9\xb3\x6c\x86\xa1\x9b\x47\x38\xc2\x11\x8e\ +\x70\x84\x03\xd0\x25\xe3\x08\x47\x38\xc2\x11\x7e\xca\xd0\x26\x63\ +\xe0\x97\x34\x31\x7b\x6e\x8e\xf8\x13\xc1\x20\xb5\x66\xce\x73\x26\ +\xec\x77\x6e\xc7\xf5\x78\x1e\x17\x6b\xfe\x63\x83\xb9\x66\xbf\x5c\ +\x63\xa3\xa9\xbb\x61\x69\x66\x4d\x44\x75\x60\x61\x60\x8a\xc9\x69\ +\x45\x3c\xd9\xd5\x2a\xa5\x4b\xdf\x26\xae\x29\xee\xa2\x2d\x0e\x1c\ +\x54\x0b\x91\xc6\x30\xce\x48\x67\x71\xc0\x7b\x31\xf4\x32\x2f\xe6\ +\x9c\x61\xbf\xd4\x35\x64\x41\xac\xea\x35\xd3\xf0\x09\xb6\x81\x9a\ +\x5d\x14\xb3\xb9\x4a\x1d\xf0\x64\xd6\x8c\x5f\xee\x9d\x4f\xe3\xe4\ +\xae\x96\x44\x77\xc7\xfe\xd5\xf3\xe8\x56\xd9\x92\x01\xb2\x9c\x6f\ +\x78\x1f\xe4\x28\xa6\x62\x72\x43\x34\x66\x23\xbf\xce\xcc\x8b\x3a\ +\x2d\xb0\xe6\x5a\x91\x9d\x3f\xde\xc6\xd9\xfb\x4f\x63\xf7\x8d\x4f\ +\xe2\xd9\x37\x9e\xc4\xa3\xdf\x7f\x14\x9f\xfc\xf7\xab\x78\xf8\xa7\ +\xeb\xb8\xf8\x78\x12\xeb\xa7\x8b\x88\xab\x45\x8c\x97\x73\xd9\xe2\ +\xd5\x1e\xca\xa7\x9c\x49\x37\xb3\x54\xe2\x3a\x66\xae\x19\x2a\x77\ +\x85\x26\xc9\xe5\x81\x02\xce\xb1\xf8\x6c\xb4\xfc\xf0\xeb\xe4\xb4\ +\xf8\x74\xbb\x81\xc5\x1b\x6d\xb4\x10\xf4\xaa\x51\xd6\xc5\x4a\x79\ +\xe9\x79\x95\xca\x42\x84\xc5\xad\x74\xf0\x83\xfc\x58\x84\x0d\x17\ +\x31\x92\xb5\x9b\x15\xc6\xb9\x7a\x2d\xac\x55\xae\x68\x2f\xae\xcd\ +\x53\x60\x71\x4c\x1e\xb5\xf0\x4d\x97\x33\xbd\xdb\x12\xff\xda\xa2\ +\x3e\x85\x45\x67\xa0\x8c\xd9\xde\x8a\x1a\x8a\x30\xe2\x60\x0d\x7f\ +\x0c\xc9\x2a\xf9\x00\x8a\x47\xfd\x39\x8a\x3f\xd8\x97\xed\xdc\x3c\ +\x80\x4f\x9e\x09\x56\x73\xe8\x08\x07\x8e\x79\x38\x04\xf7\x28\xfb\ +\x79\x53\x98\xf1\xb4\xdf\x83\xdb\xd0\xac\xe2\x0b\x59\xa5\xfc\x73\ +\x84\xfa\x57\xe0\xd7\xd4\xfe\xd8\x3e\xb2\x54\x39\x00\x27\x26\x8d\ +\x23\x37\xec\xd3\x56\xd0\x26\x3f\x17\x9e\x13\xd3\xf6\x9d\x4f\xd9\ +\x0f\x5a\x5d\xd1\xfe\x7c\x92\x69\x8d\x0e\x1b\x59\x84\x8c\x90\x74\ +\xa7\x8f\x83\xc4\x11\x61\xdf\x79\x64\x48\xf5\x8a\xb7\xb4\x86\x3e\ +\x6e\x04\xdf\xa1\xd9\x2d\x9e\xe9\xd6\x9f\xb2\x9d\xbb\x78\xcb\xa7\ +\xcb\x93\x3e\x0b\xab\xca\xe3\x20\x06\xfd\x19\x63\xea\xc3\x6d\x83\ +\x2d\xe5\x3b\x4d\x34\xa9\xdf\xec\x37\xde\x78\xae\x73\xc7\x9b\x22\ +\xe4\xe7\xf4\xc2\xe2\xf3\x74\xda\xf0\xc9\x33\xeb\xd5\x86\x9b\xf3\ +\x20\xc8\x0e\x1b\x68\xde\x44\x6b\xb4\x48\xbb\x97\x2d\x79\x00\xc3\ +\x9b\xd6\x9d\x58\x98\x7e\xe2\x38\x36\xf0\x93\xb1\x6a\xba\x8d\xe9\ +\x6c\x1b\xeb\x47\x93\xf8\xe8\x8f\x3e\x8e\x8f\xff\xf1\x45\x5c\xfe\ +\xb3\xeb\xd8\xfc\xb3\xa7\x71\xf6\xc1\x3a\x16\x97\xa7\xd2\x9b\xc5\ +\x76\xad\x52\x29\xdf\x8d\x6c\xf3\x2a\xa4\xfd\x44\xfe\x8e\xd6\x72\ +\x7b\x13\xd3\x67\x1a\x13\x2e\x45\x13\xae\xf7\x31\xd3\x18\xe2\x27\ +\x5d\xfd\x14\xd9\x38\xa6\x8b\x9d\xff\x9f\x83\xff\x03\x3b\x3f\x3d\ +\x89\xd3\x7b\x63\x8d\xa3\x93\x18\x9d\x51\x1f\xdc\x04\x67\x6a\x6e\ +\xc7\xf0\x34\x81\xe8\x20\xf0\xf4\x9c\x9f\x96\x15\xdd\x87\x56\x4e\ +\x94\x52\x75\x08\x96\xea\x60\xab\x10\x9f\x0b\x29\xc7\x06\xb6\x0d\ +\xc2\xee\xde\x66\x2a\x7c\xce\x0a\xc2\xf9\x74\x99\x15\x63\x00\x94\ +\x14\x4e\x5e\x59\xaa\x6d\xac\xa2\x03\xe5\x50\x46\x29\x2f\x50\xa6\ +\xc3\x57\x23\x21\xe3\x06\xe2\xb3\xd5\x5a\x75\x3a\x8f\x3b\xef\xbe\ +\x1b\xe7\xd2\x61\x43\x67\x90\xea\x06\x34\xc7\x07\x80\xfa\x4f\x0b\ +\x3e\xcb\x8d\x9f\x63\x18\xab\xdd\x36\xe3\x6d\x7c\xf9\xad\x5f\x8c\ +\xd3\xe9\xdd\xd8\x72\xcd\xf6\x78\xc0\x29\xad\x83\xda\xa8\x1f\xdb\ +\x6f\xe2\x43\xc8\xea\x4b\x19\x47\x8f\x35\x7c\x3a\xf5\xa4\x1d\xbd\ +\xd1\xbf\x9e\x03\x19\xcb\x7e\xcc\xa1\xb7\xdc\xce\x95\x44\x65\xe3\ +\x85\xa6\x06\xcc\xa6\x46\x9e\x9d\x39\xce\x45\xf5\xd1\xa9\xce\x60\ +\x67\x54\x76\x05\xcf\x99\x1b\xfa\x0a\xa9\xa0\x53\xd9\xaf\x71\xbc\ +\xbd\x98\xc5\x83\x5b\x93\x78\xc0\x66\x1a\xff\x29\xc4\xff\x0c\x69\ +\x1a\x75\x32\x5d\xc5\x4c\xe3\x0c\x7f\xeb\xb8\x50\x1f\x9f\xa9\x4e\ +\x6f\x9d\x48\xef\xce\x34\xce\x6f\x4f\xe2\xe4\x74\xea\xff\x29\x62\ +\x57\xce\x23\x80\x74\x38\x83\x98\x2b\xd8\x13\xde\xb9\x26\x21\x63\ +\xde\x78\xb4\x11\x5e\x6b\x8a\xb3\x89\xab\xd5\x75\x3c\xbe\x5a\xc6\ +\x27\x8f\x37\xf1\xc3\x0f\x37\xf1\xbd\xf7\x77\xf1\xcd\x1f\xee\xe3\ +\xdb\xef\x4f\xe3\x87\x0f\x17\xf1\xf8\x72\x16\x57\x9a\xc7\x6d\x94\ +\x1f\x4f\xc9\x68\x7a\xe2\x71\x8f\xe1\x98\xeb\x00\x98\xe2\xf8\x87\ +\x04\xdc\xb4\x2f\x59\x62\x02\x37\xf8\xf3\xe6\x3b\xfd\xc0\xd7\x00\ +\xe1\x7c\x45\x24\x32\x05\xf9\x29\xae\xf8\xb9\x31\xe0\xcd\x84\xba\ +\x2e\x78\x03\xc1\xa1\x36\xdd\x78\x72\xa7\x78\x3d\xb6\x71\xc7\x7b\ +\x9e\x1d\xed\xaf\x21\xc8\xa9\x06\xe2\xe2\x7b\x42\xc7\xab\xcb\x3d\ +\xd6\x14\xcf\x36\xd2\x17\xec\x24\x9f\x44\x0a\x0d\x4a\xbd\xe3\x5b\ +\x27\xd3\x75\x4c\x10\x95\xee\xeb\x4b\x05\x7f\x11\x08\x27\x32\x64\ +\xba\x04\xd4\x00\x9b\x34\xf6\xb1\xb7\x5d\x02\x23\x85\x34\x9b\x11\ +\x1d\x07\x40\xac\x05\x81\x7c\x49\x3d\x58\x85\x4b\x96\xc7\xc4\xce\ +\xbf\x31\x0c\x8d\xd1\x9d\x25\x82\xc6\x1b\x84\xe6\x90\x68\x7f\x06\ +\x79\x18\x15\x34\xba\x71\xb1\x49\xfd\x3b\xae\xea\x26\x90\xb6\x38\ +\x48\x7d\x34\x36\xa9\x83\x12\x71\x7a\xf9\x5a\x97\x93\x72\xf3\xfb\ +\x54\x85\xed\x0f\xd0\xf3\x0f\xfd\xec\x65\xce\xd3\xfc\xb4\x85\xcd\ +\xe4\x15\xf6\xa7\x1c\x74\xff\x29\x0b\x9d\xad\xa2\x9d\x86\x90\xfd\ +\xc7\x36\x1b\x8d\x0e\x9b\xc3\xb2\xe1\xf9\xfe\x40\x57\x1d\x5b\x98\ +\x39\x3f\x73\x7f\x36\x96\x8b\x76\xda\xdc\x5c\x6b\xe7\x51\xfa\x53\ +\x7d\x9c\x74\x75\xfe\xf0\x84\x59\x6e\x52\x2b\x1f\xf1\xf2\x55\xac\ +\xce\xcd\x38\x37\xdf\xb4\x84\x82\x86\x4f\xb6\x5a\xba\xf1\x1a\x43\ +\x96\x21\xac\xab\x70\x85\xb9\x5a\xfd\x46\xb1\x03\x3c\x77\x0f\xe0\ +\xe2\x2f\xe0\x2a\xcc\x76\x3c\xed\x60\xfb\x22\xd6\x6a\x0f\x5d\x89\ +\xe3\x72\x33\x8f\x87\xcb\x49\xbc\xf7\x74\x1d\xdf\xfa\xf0\x3a\xfe\ +\xe5\xf7\x2f\xe2\xdb\x1f\x3c\x89\x67\xcf\x56\xf2\x01\x0d\x65\x92\ +\x06\x05\x10\x09\x8d\xe2\x1a\xcf\x93\x5b\xfc\xb2\x60\xbe\xb8\x1d\ +\xe7\xb7\xce\xe3\xe4\x76\xfe\x0f\x1b\xed\xad\xea\xf0\xa6\xfd\x46\ +\xcb\xf4\x89\xc6\xda\xd9\x7c\x16\x67\xa7\x8b\x78\xfd\xde\x22\xde\ +\x7e\x65\x12\x77\xcf\xf9\x8f\x35\xc6\x3c\xd9\x18\x8c\xc3\x79\xec\ +\x61\xc8\xed\xb5\xc0\x6d\xec\xe4\x95\x94\xc5\x94\x77\x1e\x37\x7a\ +\xc7\x0f\x00\x4e\xf3\xff\x79\xe9\x8b\x20\xb5\xda\x8f\x3b\x32\xf1\ +\x20\xa5\xb3\xc9\x76\x6b\x76\xed\x03\x71\xf3\x7a\x6e\x97\x6e\xc8\ +\xfa\x4c\x40\x29\x15\x39\x7d\x92\xc2\xa6\xae\xd9\x6b\xf5\x33\x8d\ +\xf3\x5f\x7a\xe7\x4b\xe6\x5a\x38\x70\x29\xe1\x39\xc6\x11\x8e\x70\ +\x84\x23\x1c\x41\xf0\x39\xcb\xe1\x23\x1c\xe1\x08\x47\x78\x89\xf0\ +\x92\xe7\x62\x2f\xc5\x1c\x93\x46\xcd\xef\x47\xd3\x59\x2c\x5e\x7b\ +\x45\x13\xd8\x85\xff\x17\x82\xb9\x73\x4e\x36\x47\x7e\x75\x63\x7b\ +\xad\x50\xde\x28\x39\x84\xd4\x4b\xc8\x5f\xf4\xe5\xa4\xf7\x70\x32\ +\x0c\x64\x2c\xb9\x0a\x87\xc2\x17\x83\xcc\x0d\xb3\x6c\xe4\x8b\xec\ +\x02\xbd\x6a\xf2\xe4\x42\x92\x0a\x8d\xce\x5b\x97\x6d\x81\xac\xa3\ +\x32\xa0\x7c\x5e\xc8\xf0\xea\x30\x30\xbc\x4e\xe7\x06\x38\x39\xcb\ +\x28\x5e\x9b\x76\xe9\x57\x35\xde\x5e\xca\xb0\x16\x38\x27\x4f\xb5\ +\x98\xb9\xdc\xc6\xf8\x52\xf5\xf6\x48\x0b\xa0\x8b\x59\x8c\xd7\x92\ +\xad\x64\x73\x79\x16\xe3\xeb\x13\x3f\x61\x16\xcf\xe6\xb1\xf8\x78\ +\x1a\x93\x6f\xaf\x63\xf3\xcf\x9f\xc6\xe3\x7f\xf8\x34\x3e\xfe\x7b\ +\x57\xf1\xc9\x7f\xf7\x2c\x2e\xfe\xe5\xb3\xb8\x7e\xb4\x8a\xd5\xb5\ +\x7c\x52\x88\xb5\x56\x35\xfb\x89\xdb\x84\xf7\xba\x53\x0e\xea\x37\ +\x0b\x94\xee\x00\xad\xb6\x8d\x21\xd5\xae\xc5\xb2\x0e\xa4\xa3\x4a\ +\xd7\x7d\xdc\xd0\x50\xac\x2e\xfb\x8d\x00\x78\xfc\xd7\x92\xff\x6f\ +\x49\x2a\x3c\xb5\x96\x37\xf4\x15\x37\x8f\xc5\x6b\x2e\x5a\x73\xb1\ +\x4c\xb5\x29\x17\x5d\x51\x55\x52\xb7\x99\xeb\xd9\x8b\x30\xf4\x85\ +\x45\xfb\xbf\xa3\xba\x4d\xb4\x4d\xd9\xcc\x15\xad\x69\xf2\x1e\x62\ +\xeb\x11\x57\x5a\xf3\xca\x5f\x99\x10\x21\xc7\xb0\x8f\x0c\x76\xe2\ +\x3a\xe4\x07\x5e\x1f\xb3\xcc\x3c\x99\xa2\x1c\x99\x26\x35\x1c\x5a\ +\xfc\x80\x47\xf9\xa0\x8b\x65\x1e\x7a\x46\x72\xa1\xe2\x16\x26\x86\ +\xd5\x43\xf2\x33\x41\x92\xe5\x76\x07\x8d\x1c\xb0\xb2\x5d\x3b\x43\ +\x2f\xd2\xc8\x9e\x0c\xcb\x79\x13\xf1\xf9\xa7\x6f\x45\x13\x86\x69\ +\x86\xd0\xf3\xa1\x32\x2b\x1d\x1c\x29\xba\xa0\xb1\xaa\x74\x03\x4e\ +\x42\x16\x2d\x79\xde\x06\x80\xe4\x66\x0f\x05\x55\x60\x81\xde\x8a\ +\xdf\xc0\xee\x36\x86\x85\x44\x86\x1a\x43\x20\x7d\x93\xa3\xab\x2f\ +\x64\xab\xc8\x96\x9e\x68\xe9\x64\x3b\x76\xb1\x9e\xcf\x07\xb2\x62\ +\xc9\x17\xd8\x96\xa0\xd9\x71\x14\xba\x3a\x8b\x4f\x40\x3a\x8d\xbe\ +\xf0\xa4\xd7\x6e\x06\x75\x7d\x56\xe7\x83\x69\x9f\x2f\xd9\xa7\xd9\ +\xec\x6a\xfa\x4e\x5c\x0d\xc3\xf8\xd8\x99\x17\x9d\x37\x82\xa4\x6b\ +\x7b\x5a\xdc\x73\x7e\x6c\xe1\xd7\x39\x60\x7b\xc8\xd1\x23\x4e\xe2\ +\x4c\x93\x20\x4c\x5d\x57\x8c\xc9\x2d\x74\xd7\x0f\x5e\x14\xe1\x44\ +\x35\xe2\xe6\xcb\x58\xdd\x67\xa2\x73\x5e\xe3\xcd\x76\x12\xfb\x99\ +\xce\xf1\xcb\x69\x3c\xfe\xe6\xd3\xf8\xf0\xbf\xfd\x24\x2e\xfe\xf1\ +\x93\xb8\xfc\x2f\x9e\xc6\xec\x5b\xcf\x62\xf1\x64\x1f\xb3\xa5\xce\ +\x73\xf5\xb7\xa9\x0a\xb0\x51\x5b\x6f\x15\x26\xd7\xf3\x98\x5d\x69\ +\xcc\x7b\x26\x1b\x17\x1a\x09\x2e\x67\x31\x5a\xcf\x55\x7b\xf9\xab\ +\xe9\xd9\x7e\xec\x8d\x35\x1e\xce\x9d\xcc\x26\xb1\x38\x99\xc7\xe9\ +\xc9\x49\xcc\xa7\x8b\x38\x99\x2c\x62\x12\xd2\x97\x0e\xe5\xa2\x54\ +\x2e\x59\xf9\x6c\x8f\xed\x6b\x8e\x2f\x04\x8f\x39\x82\xae\xac\x96\ +\x51\x16\xbe\x29\x33\xea\x8c\x01\x49\x74\xd1\x01\x05\x74\x31\x6c\ +\x15\x99\x46\x2a\x54\xe6\xa0\x1e\x0e\x22\x69\xa4\xda\xd7\x30\xc8\ +\x22\x4b\xd6\xa0\x8f\x1d\x70\x49\x2b\x70\x56\xfe\xa8\xbe\x74\x5d\ +\xf2\x35\xca\x59\x91\x4e\x1f\xf5\x03\x2e\x2f\x8b\xb3\xf3\xf8\xd2\ +\x2f\xfd\xaa\xf5\x0e\x3d\xa9\x58\x63\x96\xdd\x3f\x37\x1c\x38\x5b\ +\x18\x38\xcc\xfc\x50\xf6\xf3\x0a\xc3\x3a\x85\xa4\x81\x76\xe3\x78\ +\xfd\xde\xfd\x98\x2c\x6e\xc7\x9a\x57\xba\x72\xfa\x57\x65\x78\x2c\ +\x30\x56\x9c\x31\xb2\x6f\x9c\xc2\x0d\xfa\xbe\xd1\x80\x78\x66\x97\ +\x12\x86\xfb\x06\xc5\xf1\xf1\xb3\xa0\xf5\xa7\x8a\x39\x74\x29\x86\ +\xc6\x9e\x83\x17\xd8\x75\x39\x19\x6f\x84\x25\x46\x83\x71\xde\x9b\ +\xdc\x96\xf3\x6d\x36\x87\x65\x69\x54\xcf\x41\x8f\xd7\x9a\x2e\x66\ +\xe3\xb8\x73\x1a\x71\xf7\x6c\xaf\x71\x41\xf3\x2b\x6f\x7e\x29\x68\ +\x04\xe1\x69\x89\x09\x34\x63\x8e\xe8\x93\xf1\x24\xee\xdd\x9e\xc5\ +\xe9\xad\x69\x2c\xe6\x33\xcd\x53\x35\x76\x70\xee\xbb\x1c\x39\x56\ +\x7a\x17\x4b\x55\x0c\x67\xac\x8a\x9b\x8c\x57\xb6\xc7\x30\x7d\x71\ +\xbd\x8b\x0f\x3f\xbd\x8e\xef\x7c\x78\x15\xdf\x7c\x6f\x15\x7f\xf2\ +\xde\x2e\xbe\xf9\xc1\x24\xbe\xff\xf1\x3c\x3e\x7a\x72\x1a\x4f\x56\ +\xb3\x58\xca\x06\x37\xe0\x7d\x43\x5f\xb8\xd5\xbd\xb1\x02\x37\xe1\ +\xbb\x6c\x1c\x17\xbd\x1d\xe5\x93\x69\x1e\xbb\x79\x42\x46\x53\x38\ +\xd2\x6b\xce\xd2\x9e\x62\xf3\x98\x2e\x23\x7e\x0a\xcd\x41\x7d\xc4\ +\x79\x54\x9c\x4d\x04\xf1\xbc\x49\x70\x23\x70\xce\x1b\xff\x38\xc1\ +\xf9\x28\xa8\x12\xc0\x32\x9a\x7e\xe7\x41\x01\x4c\x79\x90\xc3\x4d\ +\xdd\x8e\x6f\x25\xc5\xc1\x4d\x3f\x89\x83\xc0\xd1\xd8\x69\x92\xe3\ +\xfe\x4d\xbc\x30\x5c\x63\xfc\x68\xb4\x70\xce\x17\xa0\x89\xa5\x3e\ +\x1f\xeb\xa8\xad\x0c\x6a\xc0\x94\x25\x26\x4d\xf6\xdc\xfe\x7a\xd7\ +\x7e\xac\x93\x9f\x02\xf4\x53\xad\xb7\xe1\x08\x3e\x00\xbd\x1d\x4b\ +\xc9\xcf\x79\x0e\x03\x48\x32\x05\xcf\xf5\x6e\x42\x53\xc1\x11\xd1\ +\xcd\xff\xac\x4b\x4b\x5e\x10\x38\x96\xcd\x8c\xd4\x21\x65\xbd\xd3\ +\xf8\x59\xed\xe7\xb1\x42\x3c\x64\xe4\x61\x15\xac\xa4\x66\x2f\x2b\ +\x7a\x20\x01\xe7\xc6\x9d\x29\x7f\xd2\x46\x71\x9c\x2e\x71\xf3\x1f\ +\xbe\xa1\xd5\x87\x75\xf8\xf6\xf2\xa6\x6f\x59\xe3\xb7\xbe\x34\x08\ +\xc8\x7c\x4e\x22\x73\x9f\x6c\x7a\x19\xfc\xa4\x65\x8b\x53\xd6\xa1\ +\x8c\x0f\x7d\xbe\xd6\x20\xd9\xf7\xd3\xa6\x28\xc7\xa9\x23\x6f\xb6\ +\x99\xa3\x73\x0e\xec\xf3\x2c\xcf\x75\x3f\xcd\xa9\x34\x19\x9c\x75\ +\xca\x44\x9b\x67\x5d\xac\xa8\x37\xa4\xe9\x04\x74\x2b\x0e\xae\x26\ +\xee\xa1\xc6\x4c\x36\xe0\x48\xbb\x71\xd8\xc7\x4a\xe3\xd0\xc5\x66\ +\x1e\x9f\x5c\x8f\xe3\xbb\x4f\xae\xe2\x8f\xbf\x7f\x1d\x7f\xf8\xed\ +\x55\xfc\xe0\xa3\xab\xb8\x5c\xe2\x3f\xff\xc4\x96\x6d\x5f\xe6\x33\ +\x1f\x73\x32\x30\x17\x1b\x4d\xf9\xa1\xc0\x59\x9c\x9f\xde\xd2\xf8\ +\x37\x89\xcd\x66\x14\xcb\x55\xc4\xd5\xd5\x3e\xae\x65\x7b\xbb\xda\ +\xc5\x6c\xaa\x71\x4d\xd3\xad\xd3\xd9\x3c\x5e\x7d\x30\x8d\x57\xcf\ +\x35\xaf\xd2\x5c\x8a\x07\xd9\x72\xc3\x0a\x7b\x43\x28\xfb\x19\x11\ +\x94\x5c\x7a\x96\x90\x44\x23\xae\xff\x03\x8e\x1f\x28\x48\x11\x5d\ +\x8f\x7f\x2a\xe5\x8b\x00\x79\x5a\x4d\x7a\x08\x65\xbd\x83\x16\x6f\ +\x9b\x69\x0d\x77\x19\x35\xe8\xce\xc3\x04\x28\xb7\x1d\x15\xd5\x4e\ +\x36\x43\xaf\xf3\x93\x00\x3d\x85\xb4\x3e\x2f\x68\xfb\x0d\xaf\xdf\ +\xbc\x1d\xf7\x55\xd7\x6e\x6b\x26\x95\x9d\x69\xf2\x6b\x7e\x1e\xe1\ +\x08\x47\x38\xc2\x11\x6e\x02\x43\xe6\x11\x8e\x70\x84\x23\x7c\x31\ +\x90\x73\xb8\x17\xc3\x17\x3a\x59\xbb\x91\xd9\x78\x14\xb7\xdf\x78\ +\x2d\x46\x8b\xd3\xe0\xf5\xef\x76\xb1\x54\x98\xf0\xfa\x69\x00\x4f\ +\x7c\x2b\x34\x21\x13\x4f\x4f\xb4\x0b\xa0\x15\xe9\x6e\xfc\x12\x41\ +\xda\x14\x2c\x2c\x5a\x90\xe4\xf0\x28\x18\xda\xef\x9c\xe8\x0e\x09\ +\x07\x36\x7a\xfe\xa1\x25\x70\xfa\xc6\xb1\x7d\x0c\x4d\xa5\x99\x57\ +\x9e\x7e\x3a\x8d\x1b\x96\xdc\x8f\xe5\x46\x2d\x32\xf8\xc6\x19\x48\ +\xcf\x02\xcf\xbf\x70\x5c\x8b\x75\x31\x8f\xf9\xc3\x79\x4c\x1e\x4e\ +\x63\xf2\xf1\x24\x26\x9f\x4c\x63\x24\x7c\xfa\xc3\x69\xcc\xde\x9b\ +\xc4\xea\xa3\x55\x6c\x1f\x6b\xb2\x7e\xb1\x8b\xcd\x33\xa5\x7b\xb8\ +\x89\xcd\x23\x2d\x1e\x3f\xdc\xc5\x52\x0b\xac\x27\x7f\x74\x15\x1f\ +\xfd\xe1\x65\x3c\xf9\x83\xeb\x78\xfa\x27\x97\x71\xfd\xde\x2c\x56\ +\x97\xb7\x63\xb4\x9d\xc5\x84\x97\xec\x13\x98\xed\x2b\xf8\x66\x15\ +\x8b\x0c\x2d\xac\xed\x0e\x07\xf9\x63\xdf\xbb\xd0\xf3\xb3\x6c\xe2\ +\x25\xca\x34\x62\x53\x74\x2f\x74\x93\x4a\xda\xed\x22\x9c\xab\x4a\ +\xd3\x6d\xa3\x28\x9f\x50\x13\x16\x9f\xf4\x79\x83\x5f\x84\x7d\x91\ +\xee\x64\x14\xd3\xb9\x56\x74\x33\xd5\x5d\xbd\xc6\xd2\xbe\x48\x64\ +\x60\x21\xcc\xaa\xd6\x3f\x05\x4d\x7a\xcf\x6b\xb0\x36\x85\x59\x4c\ +\x2b\xa4\x1e\xb4\x30\x41\x65\x36\x1f\xec\x5f\xab\xe2\x0f\xfe\x29\ +\x58\x46\xbc\xca\x61\x99\xf2\x72\x3c\xb1\x43\x93\xa1\xab\xe0\x34\ +\x04\x2f\xa7\xd2\x0e\x72\x2f\xc6\xad\xef\x25\x75\xa6\x21\x6a\x9e\ +\x8a\xa9\xb2\x96\xe5\x1e\xca\x87\x4c\x97\xfa\xa5\x3e\xb0\x01\xa3\ +\x98\x86\x8c\xa7\x2d\xe4\x66\x66\x5d\xdf\x80\x8e\x73\x93\x00\x75\ +\x19\x95\x57\x8a\xb7\x36\x34\x10\x4f\xa2\x8e\x03\x99\x79\x8d\x16\ +\x74\xe9\x92\xd7\xa5\x34\x22\xd6\xcb\xbb\x36\x2d\x40\x86\xef\xed\ +\xe6\x00\xa1\x92\x65\xa0\x8f\x40\x98\x59\x50\xf9\x39\x6d\x13\x94\ +\xe1\xa1\x5a\x07\xd6\x2f\x95\x4a\xfb\x5c\xb0\xb5\xf6\xc9\x58\xe3\ +\x81\x3b\xda\xba\x02\xfc\x72\x5a\x8b\x7a\x9a\x3e\xe1\x7e\x2d\xcc\ +\x93\x68\xee\x23\xc8\xac\x94\xb8\xeb\x7f\xea\x93\xf4\x6b\xe2\xee\ +\xb3\xd2\x37\x8f\x1b\xe8\xd0\xb5\x51\xbc\xdf\xc8\x1c\x71\x6c\xa6\ +\x1f\x3b\xc6\x97\x1a\x63\x68\x37\x02\xf5\x48\x3f\xc4\xb6\xed\xe9\ +\xfc\xd8\x6d\x78\xd5\x6a\xe5\xa7\xf3\x30\xcf\x45\xe4\x98\x52\xdc\ +\xfa\x55\x37\x3a\xe6\x47\x54\x1d\x3c\x1e\x94\x24\xa9\x06\x4a\x54\ +\x01\x9d\xbc\x91\xa8\xa8\x7c\x82\x6b\x3e\x79\xa9\x0e\x76\xa3\x6d\ +\x7c\xf4\xd1\x55\x7c\xeb\xf7\x1e\xc6\x0f\xfe\xf1\x07\xf1\xd1\x7f\ +\xfe\x2c\xae\xff\xe9\x45\x4c\xbf\x77\x1d\x73\x8d\x6d\xf3\xd5\x28\ +\xce\xd7\xa3\x98\x2c\xf9\x1f\x10\xe9\xcf\x97\x31\x3f\x5b\xc5\x64\ +\xbe\x8e\xfd\x62\x13\x93\x19\x4f\x4d\x69\x7c\xd8\xe4\x6b\xd8\xc6\ +\x6c\x9b\xed\xe6\xb1\x38\x3d\x89\xd9\x82\xff\x0a\xe1\x46\x3a\x1b\ +\x46\xca\x73\xac\x41\x55\xe5\xf2\x53\x6f\xc2\xf8\xc1\x27\xcb\x83\ +\x5f\x42\xa6\x75\xa8\xe0\xb1\x5a\xc1\x51\x3e\xdc\x84\xef\xca\x2a\ +\x9c\x05\x32\xe4\x39\x62\xca\xf1\x1e\x5a\x5e\x4e\x51\x50\x3a\x1d\ +\x43\x71\xf9\xe5\x28\x07\x85\x5e\x77\x08\xd9\x9e\x94\xa3\x05\x7f\ +\x20\x4b\xa3\x27\x04\x96\x83\x2b\x74\x42\x6e\x6b\x65\x0e\x39\xb6\ +\x57\x3d\x08\xb0\x45\x17\xe0\x07\x0f\x0f\x61\x9c\xcc\xe3\xf6\xbd\ +\x3b\xd6\x6e\xa9\xd3\xc1\x3e\x96\x00\x2f\xd1\x4f\x05\x86\xd9\x41\ +\xff\xb4\xf2\xf9\x4b\x05\x14\x32\x0b\xde\xda\x47\x97\xc0\x38\x99\ +\x9c\xc6\xed\xb3\xd7\xd5\x35\x79\xb2\x40\xe7\x95\x54\x98\x43\x65\ +\xbf\xe6\x39\x08\x70\xa6\x6b\xd0\xaa\xeb\xf3\xaa\xcd\x37\x36\x07\ +\xc9\x0e\x2d\x24\xbc\x88\x67\x9b\xca\xbf\x6d\x42\x03\x50\x9f\x97\ +\x57\xc2\x67\x69\xe0\x47\xe5\x34\x50\x69\xff\xef\x76\x33\x15\xf1\ +\xd4\x86\xca\xfa\x18\x3a\x0a\x97\x71\xe0\x74\xc6\x38\x50\xe7\x84\ +\xc0\xd7\x16\x09\xb1\xd8\x9d\x0f\x12\xde\xbb\x7d\x12\x0f\x1e\x8c\ +\xe3\xe4\x84\x8d\x34\x8d\x2d\x54\xba\xe5\x8c\xc1\x32\xdd\x5d\x9b\ +\x73\x1c\x1f\x8d\x34\x1e\xe9\x73\xb5\xdc\xc7\xa3\x8b\xeb\x78\xef\ +\xe3\x55\x7c\x4f\xf3\xb0\xef\x7f\x34\x8d\x1f\x3e\x9e\xc4\x47\xcf\ +\xe6\xf1\xe8\xfa\x34\x2e\xf7\xa3\x58\x29\x6d\x3e\xf1\xa2\xdc\x6d\ +\x47\x26\xec\x50\xf9\x2d\x68\xaf\x66\x25\x4e\x3e\x84\xee\xa9\xb4\ +\xbc\x14\x74\xf1\x7d\x6d\xb2\xe5\xe6\x99\xe6\x81\x0e\x5c\x27\x84\ +\xe5\x5b\xf2\x32\xbe\x91\xf3\xf9\xa4\x4d\xfe\xa8\x62\x03\xf6\xfc\ +\x27\x43\x3e\xa1\x26\x5a\xba\x7c\x72\x9e\x94\x36\x08\x6d\xfe\xd4\ +\x36\x1e\x94\x6b\xf5\x19\x28\x05\xa7\x05\x27\x4f\x07\x07\x7f\x4c\ +\x67\x79\xa4\xa4\x42\x94\x0d\x07\xc5\x9d\xd7\x40\x8f\xf2\x67\x65\ +\x14\xaf\xe9\xc1\x4c\x94\x2d\x06\x5d\x72\x3e\x9d\x8d\x8a\xf3\xc1\ +\xb6\x3e\x6e\x6f\xa7\x4f\x23\x7e\x8a\xda\x74\x86\xaa\xf5\xfa\xf4\ +\x14\x1f\xf2\x72\x28\xdb\x0d\xa0\xb0\xe9\x7e\xd4\x2b\x1d\x06\x6b\ +\x11\x06\xa4\x43\x1f\xf1\x75\x72\x28\x1c\xc8\x72\x0e\x37\xe4\x03\ +\x89\x5b\xac\x87\x2c\x23\xbe\xe0\xf7\x81\x3e\x34\x42\x30\x55\x29\ +\xdc\x5c\x1c\x96\xbd\xd3\x6d\x18\xb2\xf1\x15\x9a\x8e\xdb\x4e\x76\ +\xb0\xa5\x46\x2f\x71\xe9\x21\x2b\xba\x61\x2b\xba\x9c\x99\xa8\xb5\ +\x7b\xca\x14\x2a\x4d\xaf\x9f\xb4\xc7\xb5\xd6\x5f\xda\x62\x81\xff\ +\x24\x14\xed\x7e\x7b\xd0\xe7\xaa\x7f\xd2\xcf\xc1\xd6\xe9\xfb\x75\ +\xf6\x75\x30\x3a\xe4\x91\xf6\x90\x91\xd6\x3d\x59\x38\xe7\x69\x1a\ +\x53\x3d\x57\xc9\x7e\xce\xda\x0c\x9e\xb4\x7d\x3e\x70\xae\xb1\xc9\ +\x65\x0d\xe9\x61\x6f\xc3\x46\xb8\x92\xe6\xbc\x5f\x98\x73\x19\x05\ +\xf2\x61\xb3\x06\x5a\xf8\xe6\xc7\xff\x3d\xad\x4f\xda\x4f\xca\xc9\ +\x7c\xc8\xd6\x61\x05\xc1\x7f\xab\xf1\x43\x97\xab\xdd\x38\x9e\x2e\ +\x35\xbe\x3c\xdd\xc6\xbf\xfc\xf0\x22\xfe\xf0\x7b\xcf\xe2\x4f\xdf\ +\x7b\x12\x9f\x3c\x5e\xf9\x89\x28\x3f\x3d\x4b\xb9\xfc\x01\xf0\x27\ +\x6d\x93\x3f\x4f\xbe\x4d\xb4\xae\x9a\x68\x7c\xe3\x47\x95\xcb\xeb\ +\x51\x3c\xbb\x1c\x7b\x33\x6d\xb9\x5c\xc7\xd5\xa5\xd6\x98\xd7\x3b\ +\x3f\xa9\xc6\x7f\xba\x2e\xc6\xb3\xb8\x7b\x36\x8d\x5b\x8b\x89\xd2\ +\x52\x4f\x78\xf5\x62\x68\x25\x79\x11\x30\x7e\x2b\xdb\x98\x68\x6d\ +\x67\x7f\x64\x88\xea\x76\x9b\x2a\x5e\xce\x76\x30\xb4\xf3\xbc\xcd\ +\x01\xa7\x48\x90\xf3\xe7\x04\x78\x3e\x41\xf2\x5a\xbe\x8a\xb8\x7e\ +\x14\x71\xb8\x99\xb9\xe1\xc7\xe5\x15\x64\x63\x5b\x85\x1f\x85\xd1\ +\xff\xd6\xeb\x79\xdc\xbf\xfb\xe5\x58\xe8\xba\x4d\xdf\x30\x74\xbe\ +\x7d\x8e\xad\x23\x1c\xe1\x08\x47\x38\x82\xe6\xe7\x47\x38\xc2\x11\ +\x8e\xf0\x17\x09\x6d\xd2\xf6\x13\xce\xd9\x5e\xce\x14\xaf\xb7\x72\ +\xfb\xb5\x7b\xb1\x9c\xcd\xe3\x8a\x57\x1f\xb4\x09\x25\x13\xce\xe6\ +\x1f\xaf\xeb\xaa\x05\x45\xc7\x93\x82\x2d\x70\x68\xa6\x72\x16\x7c\ +\x10\xac\x05\x5d\xb8\xcd\x67\x3b\x33\x86\x62\x02\x12\x38\x2f\x2b\ +\x90\xe3\x0d\x5d\x47\x06\xfa\x05\x43\x1d\xa4\xd6\xd0\xc1\x2e\x39\ +\xd3\xde\x96\x17\x2d\xc4\x95\x09\x6b\x04\x6e\xca\xfa\x0f\x92\xf9\ +\xa3\x7d\x32\xae\x42\xda\x46\x61\x07\x1d\x58\x04\x6e\xd9\x10\x7a\ +\x38\x89\xfd\x87\x93\x88\x0f\xe6\xb1\x53\xd8\x7c\xa8\xc5\xcf\xf7\ +\x4f\x63\xff\x1d\x2d\xaa\xbe\x27\x5b\x3f\x90\x99\xef\xce\x62\xac\ +\xf8\xf8\x4f\x95\xf6\x1b\x5a\x44\xfd\xe1\x55\xac\xfe\xe0\x71\x3c\ +\xfe\xbd\x87\xf1\xd1\x3f\x7b\x12\x8f\xfe\x87\x55\x7c\xfa\xed\x65\ +\x5c\x3e\x62\x71\xb4\x50\xdd\xf3\x8a\x28\xd9\x14\xc6\x07\x96\x13\ +\x3d\x94\xd7\xe9\xda\x80\x10\x39\x3c\xf0\x85\x76\x3c\x7d\x4e\xef\ +\x07\xa0\x68\xd6\x0b\xb4\x0e\x5a\x5c\xfa\xdd\xf9\x2c\x9a\xd4\xfe\ +\x5e\x0f\x23\xa3\x2f\x74\x37\x96\xd0\x61\x39\x5b\xec\x29\xaf\x88\ +\x9b\xc6\x9e\xf7\x30\x51\x77\xbe\x59\xa7\x44\x3c\x89\xc6\x66\xd9\ +\x7a\x5d\x9b\x67\x84\x5a\x2c\x6f\x45\x83\xdb\x86\x03\xf5\x58\xf1\ +\x94\x67\x9c\x4e\x98\x71\xe9\xb0\x60\x6e\x8b\x6c\x3e\xe5\x78\xd3\ +\xeb\x76\xfb\xca\xe1\x4e\x07\x9f\xcb\x6f\x07\x7d\xec\x5f\x4b\xef\ +\xa0\xb4\xd8\x95\x9e\xdc\x31\xb6\x1a\x25\x2c\xd5\x3a\x64\x3e\xcd\ +\x86\x81\xf4\x46\xaa\xea\xe4\xb5\x9b\x39\xc5\x3e\x4c\xff\x63\xc3\ +\x50\x57\xf4\xcd\xe4\xad\x5d\xf3\xa7\xb1\x1d\x38\x57\xe7\x55\x31\ +\x91\xae\x92\x82\xac\xb7\x8a\x00\x15\x37\xd2\xa1\xc9\x8d\x4b\x71\ +\xd0\x8d\xfa\xa4\x16\xd3\x17\x7a\x5e\x26\xe5\x60\x61\x31\x7b\xd2\ +\x84\x65\x03\x96\x81\xba\x17\x32\x93\x43\xe9\xb5\x00\x47\xd8\xc1\ +\xb1\x9b\x00\x1f\x49\x9f\xc6\x6d\x58\xc1\xed\xdf\xe8\x92\x39\x3f\ +\x03\x6d\xdc\xa7\x4b\x13\xa9\x6b\xda\x38\xd3\xb5\xfe\x48\xe2\x7e\ +\x23\x4d\x7d\x96\x8d\xe2\xd6\xdf\x89\x77\xfd\x9e\x7e\x8b\x3c\xfb\ +\x96\xfb\x59\xd9\xa5\x3e\x69\xba\xb6\x19\x64\x86\xf8\xe2\x9a\x48\ +\x77\x38\x54\x9e\x32\x8f\x9c\x1b\x44\xd8\xa0\x8f\xb9\xee\x49\x43\ +\x9c\x40\xf2\x66\xbc\xb5\x18\xa6\x21\xc1\x20\xc6\x13\x18\x2d\x68\ +\x0a\x5c\xdb\xf3\x39\x06\x62\x94\x1b\x98\xa2\x77\x63\x8d\x43\x23\ +\x85\xdd\x4c\xe7\xf8\x3c\x2e\xb6\xa3\xf8\xc1\x77\xaf\xe2\xbb\xff\ +\xf0\xbd\x78\xef\x3f\xfb\x30\x3e\xfa\xcf\x1e\xc6\xb3\x7f\xf4\x2c\ +\xf6\xdf\x7a\x12\x93\x47\xab\x38\x7d\x76\x11\x9b\xd1\x3a\x36\x73\ +\x8d\x65\x67\xd7\xb1\xbe\xb7\x8c\xd1\x1d\xd9\x7d\xe5\x32\x26\x73\ +\x79\xb6\xd1\x38\xb8\x3d\x8d\xe9\xf6\xcc\x4f\xa6\x4d\x17\x11\xf3\ +\x85\xe4\xdc\x80\xdf\xcf\x35\x9e\xee\x63\xba\x9f\xa9\x04\xaa\x33\ +\x15\x2c\x6f\x9a\x51\x40\x97\x2a\x8f\xe9\x6a\xe7\xbe\x7f\xfc\x90\ +\x2c\x97\xcb\x3c\x2b\x94\x9e\x50\x1e\xd2\x86\xab\xb4\x45\x7a\xd4\ +\x41\xa9\x16\xb4\x33\x7a\xa8\x87\xd1\xcc\x87\x43\xd6\x99\x05\x3d\ +\x34\xdb\xe0\xce\x40\x8b\x34\x06\x2c\xd1\xf9\x75\x7b\x32\xb6\xf8\ +\xc6\x62\x8a\x0d\x59\x1e\x70\xb5\x9b\xfb\x0a\x1c\xea\x87\x9b\x82\ +\x3b\x5d\xaf\x23\x4e\xef\xbf\xa6\xc3\x89\xba\x42\xb6\x66\x82\x2d\ +\x57\x28\xc8\xa4\x19\xbe\x08\xf8\xa2\xf2\xf9\x0b\x87\x61\x3d\x0b\ +\xab\x8d\xe6\x0a\x8b\xd1\x9d\xb8\xb8\xf4\xf3\x12\x6e\x3f\x4e\x7f\ +\x36\xd5\xb2\x5f\xff\xa4\x0d\x41\x9b\xf7\x63\x43\xa6\xfc\xc9\x6c\ +\xd0\x75\x78\x8a\xab\x79\x7a\x90\xb2\x31\xe1\x76\xf4\x67\x43\xfa\ +\x21\xa2\x74\x39\xef\xf8\x8c\xc7\xbb\x98\xfa\xc4\x3c\xf4\xab\xc5\ +\x9a\xe7\x07\x99\x94\xee\x44\x0e\xe6\x06\x4a\x6e\x8e\xe1\xaf\xa1\ +\x61\x89\x32\x8f\x93\xb8\x7b\x67\x12\xf3\xb3\xa9\x62\x27\x79\x5e\ +\xd8\x99\x5d\xde\x34\xd7\x79\xc0\xc6\x51\x8c\x57\xae\x2b\x36\xa8\ +\x96\x3a\x4f\xf8\x5f\xb4\xef\x7e\xb4\x8c\x3f\xf9\xc1\x3a\xbe\xf9\ +\xfe\x28\xde\x7b\x34\x8e\x87\x9a\x73\x3d\x5b\x9d\xc7\xf5\x76\xaa\ +\x91\x67\xeb\x27\xcc\xbc\x39\xa0\xe0\xb4\x49\xe6\xc8\x4c\x16\xca\ +\xb1\x6d\xa6\xa5\x1e\x7c\x78\x26\x13\x33\x4c\xeb\xdc\xf4\x86\x5a\ +\xe9\x71\x6e\x3a\x88\x8f\xcd\x8e\x87\x4e\xf1\xf9\x2f\xa8\x4e\x4f\ +\x21\x37\x1c\x72\x53\x8d\xd7\x53\x6e\x85\x89\xb3\xf9\xe6\xff\x8d\ +\xc2\x96\xed\x25\xed\x78\x4b\xeb\x90\x73\xa7\x36\xa7\xca\xeb\x56\ +\x39\x68\x39\x79\xd3\x22\x5c\x4f\xb2\x00\x19\xe3\xe3\xa8\x0e\x8d\ +\x1a\x70\x49\x63\xfd\xa2\xdd\x3e\xc2\x2e\x2c\x35\x84\xfd\x5e\xaf\ +\xe9\xf2\x31\x5f\xed\xed\x8d\x04\xa2\x56\x85\xc0\x04\x07\x20\x65\ +\x1c\x3a\x96\xc1\x16\x1c\x12\x5a\xec\x40\xa9\xef\x2f\xe2\xd3\x52\ +\x04\x6b\xe8\x70\x43\xb3\x4f\xde\x85\xe7\x18\x83\x30\x20\x2b\xda\ +\x20\x59\x3a\x42\x74\xf9\x0b\x4a\x0f\x56\xf3\x85\xee\x9e\xec\x46\ +\x70\x68\x9c\xe4\xb9\x4e\x3a\x5e\xf2\x87\xb1\x56\x31\xae\xdf\xe2\ +\xb5\xba\x26\xe6\x32\x7b\xde\x50\xba\x6e\x1c\xf1\xdc\x4f\xc0\xe8\ +\x9a\x55\x07\xe4\x35\xc7\xb6\x2c\x83\xa5\x45\x5b\xd6\x74\x91\x55\ +\xf0\xdc\xa6\x64\x4e\xe3\xf4\x2d\x1f\xfa\x23\x7a\xa9\x43\xa0\x7f\ +\xe2\x1c\x67\x87\x37\xd2\x98\x37\x29\xee\x27\x33\x09\xac\x0b\xcc\ +\xd3\xdc\x2a\xff\x2c\xda\x7e\x50\x89\xce\x4b\xe0\x27\x8b\x9c\x77\ +\x8a\xdd\x8f\xad\x86\x1f\xd8\x57\x5c\x1f\x11\xce\x36\x7d\x90\xc4\ +\x9b\x69\x39\x16\x23\x95\x7b\x4e\x57\xa9\x9c\x87\xc7\x49\xe8\x8c\ +\xf6\xb4\xf4\x86\xfc\xb4\x5f\x1a\x90\x04\xd1\xb6\xa7\x93\x02\x7b\ +\x2a\x45\xac\x84\x9f\xad\xf7\xf1\x83\x87\x11\xdf\x78\xef\x32\xfe\ +\xf0\xbb\x6c\xac\x5d\xc5\x27\x4f\xf2\x3f\x1b\xa9\xf7\x31\xe5\x2c\ +\x9f\xd3\x1f\x5e\x7d\xad\xbe\xc2\x0f\x84\xe6\x1a\x1b\xc4\x5f\x6a\ +\xad\xb4\xda\xad\x63\xb5\x5f\xc5\x46\xe7\xf2\xe3\x27\xdb\x78\x78\ +\xb1\xf7\xff\x39\x8e\x59\x7f\xc5\x3c\x66\x33\xad\xc9\x58\xab\x6b\ +\xde\x86\xc3\x79\x6e\x96\x6b\x03\x18\xb8\x6b\x28\xd4\x4a\xa3\xb5\ +\x30\x23\x2d\x63\x30\xfe\x64\x48\xb8\x69\xe9\x45\x9c\x1e\xc8\x3f\ +\x6d\x56\x0e\xad\x72\x41\x1e\xe0\x09\x2f\xb0\xe9\xfc\x4a\x2e\x92\ +\xa8\xbb\x8d\x55\x53\xbf\xf3\xa9\x50\x42\x8b\x64\xba\x03\x68\x71\ +\x63\x6c\x27\xe6\xff\xed\x2e\x96\x11\x77\x66\x6f\x6a\xfd\x3f\xf7\ +\x0f\x62\x2c\xbd\x99\xfe\x08\x47\x38\xc2\x11\x8e\xf0\x42\x38\x6e\ +\xa8\x1d\xe1\x08\x47\xf8\xe2\xa1\xcd\xe5\x1a\xdc\x8c\x7f\xd1\xa0\ +\x59\xef\xf9\x6b\xaf\x44\xbc\x72\x2f\xae\xd8\xe0\x60\x68\xf4\x64\ +\x95\x05\xe0\xc8\xbf\x7e\xcb\xd7\x4d\xc9\xd1\x17\xfa\xda\xcf\x3c\ +\x73\x41\x50\x01\xbe\x30\x0b\x11\xab\xf4\x6a\x7d\xb4\xe3\xf5\x86\ +\x3b\x8a\xec\x88\x74\xf9\xa6\x72\xca\xf3\xd8\x2b\x03\x83\x0c\x86\ +\xd0\x65\x06\xd2\x82\xa7\xd2\x34\x6d\x9b\x1f\x53\x4e\x6e\xd6\x28\ +\xc2\x4d\xde\x92\x01\xd6\xb3\x52\x2e\xc4\x7c\x13\xe4\x6a\x17\xeb\ +\x27\x9b\xb8\xf8\x64\x1d\xcf\x7e\xb8\x8a\xcb\x1f\xac\xe2\xea\x7b\ +\xeb\xb8\xfe\xde\x75\x5c\xfc\xe0\x3a\xd6\xdf\x5f\xc6\xfa\x3b\xeb\ +\xd8\x7d\xeb\x3a\x36\x7f\xbc\x89\xab\xdf\xbf\x8a\xd5\x3f\xbf\x8a\ +\xa7\xff\xf5\x93\x78\xf8\x5f\x7f\x1a\x9f\xfc\xb7\x4f\xe3\xe1\x37\ +\x2e\xe2\xe2\x87\x1b\xd9\x59\xc4\x76\xb5\x90\x79\x16\x75\x2c\x32\ +\x6b\x21\xa5\x40\xb6\xfe\x0f\x26\xb7\x47\xba\x81\x73\x76\xc7\x0c\ +\x7d\x69\x2e\x22\xa8\x38\x10\x51\x19\xd2\x71\x7d\x33\x6d\x95\xc4\ +\x90\x94\x8e\x6e\xa7\x24\xad\xa6\xc5\x19\x79\x79\x13\x8b\x05\x1d\ +\xbe\xc8\x27\xf2\xb3\x58\x78\xc7\x2f\x17\xa7\x93\x98\x2e\x66\xb1\ +\x3f\x9d\xfa\xc9\x34\x16\xf0\x5a\x12\x7b\x43\x61\xb3\x56\xb9\x97\ +\x2b\x85\x75\xec\x57\xeb\x88\xb6\xb1\xc6\xff\xf3\x6d\xb4\x70\xf4\ +\x06\x1b\xba\x0a\xbe\xd1\xc3\x62\x32\x43\xf7\xa4\x8f\xb1\x72\xd4\ +\x2a\xca\x37\x96\xfc\x3f\x52\xf8\xc4\xaa\x4a\xbc\xb6\xba\x22\xb0\ +\x72\xc5\xe7\x8a\x77\xd8\x1e\x13\x50\xa8\x74\x1d\xef\x66\x48\x9d\ +\xec\xb7\xe4\xa9\xa8\xd3\x48\xa6\xaf\xeb\x06\x1e\x04\xd5\x6b\x48\ +\x66\x65\xe7\x38\x28\xc9\xa4\x0e\x54\xf3\x60\x48\x2a\x75\x1a\x74\ +\xba\x86\xe4\x27\xaf\xec\xda\x37\x7d\x14\x49\xff\x86\xa9\x7b\x2a\ +\x15\x8a\x84\x28\x5f\xba\x30\x94\x8b\xce\x9b\x69\x37\xc2\x00\xfa\ +\x58\x93\x25\xa7\xe3\x37\x5e\x7e\x15\x5a\x3c\x43\xb6\x87\x15\x1d\ +\xdc\xbf\x2a\x4d\xde\x9c\x4c\xbd\x14\x27\xbf\x85\xd4\x03\x0e\xf9\ +\xe8\xb9\x3e\x86\xec\x1e\x09\xe7\xc7\x0a\x4d\xc9\x34\x6d\xaa\x40\ +\xbf\x83\xdd\xb5\x71\xda\x6b\x78\x48\xa7\x6e\x06\xbf\x8a\x91\xe0\ +\x27\xd1\x14\xdf\xaa\xbf\xab\x3f\x6f\x79\xb5\xdb\x5a\xd8\xfd\x3c\ +\xfb\x3a\x7d\x9e\xfe\xee\xfe\xcd\xcd\xcc\xb2\x09\xb4\xf3\x29\x47\ +\x9a\x1a\x93\xc4\x74\x7b\x4b\x27\xe5\x3a\xef\x38\x07\x45\x79\x1c\ +\x4e\x61\x26\x54\xc8\x31\x80\x52\x16\x03\x80\xaf\x83\x55\x01\xeb\ +\x0c\x30\x24\x7d\x18\xf5\x51\xfe\x42\xda\x37\xb1\x11\x5a\xa1\xec\ +\x89\xcf\xa6\xdf\x76\x22\xac\x72\x4e\xe5\xd3\x78\xb6\x8d\x8b\xf5\ +\x75\xfc\xf0\x5f\x7d\x1c\xdf\xf9\x6f\x7e\x18\xdf\xfe\xaf\xbe\x17\ +\x3f\xfc\x7f\x3f\x8d\xcb\xbf\xff\x30\x76\x7f\x70\x11\x8b\xef\x3c\ +\x89\xb3\xf7\x57\x1a\xcb\xae\x5d\xcc\xf1\xd9\x26\x56\x77\xd7\xc2\ +\xeb\x18\xcd\xf8\x45\xf6\xc4\xd7\x11\x9e\x5c\x8b\xf1\xd2\xff\xb7\ +\xb8\x0d\x9e\xe0\x9b\xc6\xea\x19\xf5\xa5\x3a\xa6\xae\x7c\xa2\xa5\ +\x8b\x59\x5d\x3e\x54\x79\x15\x34\xde\x71\x4d\x72\x85\xf0\x65\xbc\ +\x6e\xc1\x75\x68\x2d\xa7\x49\xac\xf4\xbd\xb1\x12\x0d\xea\xa8\x83\ +\x92\x1b\x44\x97\x82\x51\x65\xee\x76\x19\xf2\x0f\xa0\xd2\x93\x8f\ +\x42\xeb\x43\x99\x77\x8a\x0e\x22\x92\xb9\x2d\xb0\x59\x6c\x47\xcd\ +\xaa\x72\xe8\xcb\x42\x85\x57\x3e\x4e\x78\x8f\x13\x20\x39\xbf\xc4\ +\xbf\x56\x7d\x5d\xad\xf7\x71\xff\x4b\x5f\x8e\xc9\x94\xd7\x6a\xe2\ +\xd1\x4d\xaf\x30\xfc\x05\xc1\x30\xeb\x17\xb9\xf2\xf3\x02\x54\xe9\ +\xe7\x54\xab\x8b\x3e\x1d\xc7\x5b\xb7\xdf\x55\xbb\x9e\x49\x95\xf3\ +\x5b\x5c\xb5\x99\xcf\x2d\xf7\x09\xb4\x30\x92\x7d\xdd\x40\xc3\x1b\ +\x6e\x1a\xaf\x38\xc9\xf4\xe1\x32\x98\x36\x92\x7d\x00\x2f\xaa\xf3\ +\xc6\x13\xf6\x2b\x19\x39\x81\x32\x7a\x03\x06\x8a\x9f\x03\x5d\xb6\ +\x94\x47\x91\xd6\xed\xc0\xbc\x22\x3c\xf3\x80\x67\x47\xd1\x1c\xe0\ +\x9b\xd0\xf2\xe2\xe9\x12\x1d\x49\xa8\xaf\x6b\x8a\x24\x16\x73\x9e\ +\x24\xcd\xb5\xc3\xaf\x7f\x3c\x65\x56\x34\x95\x7e\xda\xe5\xe8\x34\ +\xbe\x59\x9e\xe3\x1a\xaf\x5d\xbc\x5e\x45\x3c\xbc\x5c\xc7\xf7\x3f\ +\xd9\xc4\x1f\xff\x60\x1d\xff\xea\xbd\x7d\x7c\xfb\xa3\x59\x7c\xf8\ +\x74\x1e\x8f\xaf\x4f\x74\xfe\x8c\x63\xad\xf1\x3c\xff\x57\x69\xac\ +\xb4\xb4\x56\x7f\xc3\xdd\xa1\x08\xb7\x23\x74\x46\x07\xb2\x6c\x13\ +\xe8\xc6\x67\x6b\xdb\x3c\x1d\x3c\x5f\x94\x2f\x4c\x5d\xe0\x79\xd3\ +\x0b\x9e\x12\xe4\x75\x05\xcf\xe1\x89\x96\x2f\x3a\xfa\x09\x13\xa8\ +\xdc\x20\x13\xa5\xeb\x0c\xb7\xd5\xf3\x35\x90\x9a\x5f\xd5\xc6\x03\ +\xd8\x9b\x16\xa4\xc2\x16\x99\xd8\x26\x7a\x69\x5f\x87\x94\xa1\x83\ +\xae\xf3\x49\x1d\x9c\xb2\x8f\x03\x5d\x0a\xd0\xc6\x2e\xa7\xb2\x4c\ +\x41\x7a\xdd\x98\x96\x4a\x3a\x16\x26\x69\xd1\xd6\x57\xca\x06\x68\ +\x1f\x80\xe5\x82\xd6\xdf\x9d\x4c\x3c\xdb\x01\xd3\xd4\xa5\x43\xa4\ +\x41\x32\x32\xc0\xef\x42\xf2\xbb\xf4\x2e\x46\xc5\xfd\x29\x39\x54\ +\xe3\x3b\x54\x52\x4b\x6f\x62\x6b\x77\xd8\x40\x82\x24\x06\x38\x03\ +\xfe\x1a\xdc\x5f\x05\x36\xae\x50\xe7\x40\xfa\x26\x0a\xff\x2a\x0d\ +\xbc\x22\x15\x2a\x6e\x29\x38\xd9\xbd\x02\x50\x12\x1d\x52\xab\xc9\ +\x44\x29\xad\x7d\x20\x3f\x65\x44\x5e\x1e\x5b\x6c\x97\x56\x4c\x9c\ +\xfa\xc9\x4f\xac\xfe\xc3\x76\x0d\x3a\xb0\x00\x88\x2e\xf4\x69\xd3\ +\x5f\x85\x2a\x43\xf2\xd2\x66\xa3\xdd\x63\x3a\x1a\xbe\xfc\x92\x7e\ +\xdf\xd7\x33\x78\xd3\xb7\xfa\x60\x3e\xc1\x46\x50\x9f\x26\x8e\x0d\ +\x85\xec\xd3\x58\x51\x1e\x35\x57\x49\xc0\x8f\x44\x19\xab\x6b\x65\ +\xf9\xe7\x9a\x60\xac\x28\x96\x75\x84\xbd\xa4\x29\x1a\xb6\xb2\x12\ +\xcd\x79\x9a\xbe\x75\xc2\x82\xd6\x94\xe0\x9c\x57\x14\xed\x4f\x45\ +\x04\x59\xf3\x15\xba\xe4\xd0\xd8\x6e\x4f\xac\x8d\x63\xb9\x1d\xc7\ +\x27\x17\x11\xdf\xfd\x74\x1b\x7f\xf4\xfe\x32\x7e\xff\xbb\xcf\xe2\ +\x5b\xef\x5f\xc6\x07\x9f\xae\xe3\xe9\xa5\xd6\x81\x1b\xce\x6b\xca\ +\x89\x4d\x5e\x51\xab\x7c\x46\xdb\x58\x69\xce\x75\xbd\xd4\x5a\x73\ +\x79\x1d\x4b\xcd\x33\x57\x0a\xcb\xf5\x4e\xf6\x96\x71\x75\xb5\x8e\ +\xd5\x6a\x97\xba\x9a\x1e\x50\x6e\x3f\x71\xc7\xc7\x05\x85\x7a\x1e\ +\xb2\x1c\x82\x17\x08\xb9\x3c\xe8\xf2\xe5\x71\x1c\xa5\x34\xe3\xca\ +\x49\x85\x1f\x13\xba\x3c\x06\x90\x71\xca\x55\xf7\x13\x9a\xcd\xce\ +\x74\x12\x59\x8f\x29\x87\xb4\x0f\xbd\xd2\x67\x40\xa5\x1d\x1c\x9f\ +\x87\xde\x5e\x12\x6a\xa3\xed\x2a\x96\xcf\x46\xf1\xb5\x2f\xff\xaa\ +\x0a\x3d\x55\xfd\xa1\x27\xb8\xe9\xfc\x11\x8e\x70\x84\x23\x1c\xe1\ +\x85\x30\xf9\x4f\x05\x45\x1f\xe1\x08\x47\x38\xc2\x17\x0b\x83\xf9\ +\xa4\xe9\x9f\x60\x02\xf7\xf2\xe6\x7a\xb2\xa4\x85\xca\x6c\x3c\x89\ +\x3f\xfa\xef\x7e\x37\xae\xbf\xf9\x2f\xe3\xc1\xd9\xa9\xff\xa7\xc2\ +\x99\x30\xa9\x16\x91\x37\x05\x78\x32\x8b\xcd\x0e\x4d\xae\x3d\x19\ +\x4e\x95\x76\x23\xd3\x71\x66\xe3\xa2\xd9\x9c\x9a\x4c\xf9\x13\x78\ +\xf1\x2d\x1f\xe8\x09\xf3\x4b\x6d\x2f\x52\x6c\x80\x6f\x56\x04\x51\ +\x20\x27\xf1\x8d\x68\xd5\x54\xd2\xa6\x44\x62\x2b\x41\x3e\x3f\xdd\ +\x26\xae\x1c\x72\x71\xc5\x66\x19\x1b\x3f\xf8\x00\x8f\x23\x7c\xd2\ +\x53\x1e\x95\xcd\x9b\x36\x5a\xac\xec\xb5\x40\xc9\xff\x07\x93\x0c\ +\x23\x69\xc8\x90\xa9\x85\xa9\x82\x9d\xec\x6c\x54\x37\x2b\x99\x58\ +\x4a\xed\x62\x1f\x1b\x85\xed\xa5\xcc\x69\xe1\xb4\x7d\x3c\x8e\xdd\ +\x53\x2d\x80\x3e\xdd\xc4\xf2\x93\x55\x5c\x6a\xe1\x74\xf9\xf1\x2a\ +\x1e\x7f\xb8\xd6\x04\x5e\x0b\xc8\x2b\xde\x83\x9f\xc6\x70\xa1\x4d\ +\xe4\xdb\x6b\x6e\x5c\x37\xf6\xb4\xc0\xf5\xd5\x39\xe2\xe0\x58\xc3\ +\x3a\xfa\x06\xf9\x21\xb3\xc3\x4d\xc7\x84\x42\x6b\x03\xb6\xc3\x7c\ +\x13\xcc\xed\x92\x0b\x9d\x7c\xfd\xa5\x30\x75\xa6\xd5\x15\x78\xcf\ +\x2f\x1f\x17\xd3\x18\xcd\x27\x31\x39\x5b\xc4\xe4\xd6\x49\x8c\x4f\ +\xe6\x4a\xa3\x7a\x93\x3d\xfa\xc5\xc8\xf5\xb7\x16\xde\x88\xb1\x55\ +\xd1\x72\x21\xc6\x7f\x98\xd0\x56\xae\x4a\x70\xd5\xad\x97\x7e\xd0\ +\xa8\xe9\x80\x6b\xe8\xf8\x08\xbf\xe3\xb4\xa0\xb8\xbf\xc8\x15\x05\ +\x50\x01\x15\x86\xdf\x48\x83\x23\x95\x76\x00\x19\x2b\xde\xa1\xa8\ +\x8f\x0e\xf8\x2a\xfd\xc0\x4c\xd1\x05\xce\x7b\x28\x1e\x1c\xf3\x55\ +\x31\x03\x70\x44\x3c\xdf\x20\x50\x64\x20\x77\xbf\x2c\xba\x03\xc9\ +\x33\xab\x5e\xd2\x92\x9a\x4e\x64\x80\x6e\x37\x25\xcd\x6f\x38\xc9\ +\x04\xd7\xbf\x2a\xdc\xf5\x4b\x9b\x54\x1b\x34\x05\x48\xfb\x54\x0c\ +\x32\x43\x55\xe0\x73\xc9\x29\x0a\x1a\xbf\xe7\x24\xaf\xd3\xab\x08\ +\x79\x5a\xd8\x40\x31\x16\xfe\xe2\x93\x4b\xca\x0e\x35\x32\x29\x7a\ +\x37\xe5\xe5\x57\x8b\x37\x74\xc0\x6e\xba\x05\xc8\x2c\x87\xdf\x02\ +\x50\xb8\xea\x22\xe9\x3c\x64\x1f\xbd\x11\x6a\xa3\x97\x4d\x5e\xdf\ +\x10\xda\x70\xe2\xb2\x61\xa6\xb8\xc7\x90\xbc\xd1\xc9\x09\xed\x71\ +\xd2\x1b\x6a\xa2\x2d\xaf\x8d\xb5\x96\x96\x27\xd8\xd8\x60\xe6\x29\ +\xb7\xb6\x49\x87\x5e\x93\x6d\x55\x37\xde\x74\x26\x3f\xa5\x23\xee\ +\xbb\x42\x3a\x4f\x84\xf0\xc7\x4f\x29\xda\x5d\xfc\x13\xb6\xa0\x41\ +\xc9\x84\xe8\x12\x26\xb9\x97\xae\x8a\xa2\x6d\x60\xb9\xab\x94\xd0\ +\xc7\xc6\x1c\xd8\x72\x7f\x02\x2b\x8f\x11\x3b\xea\x8a\xaf\xae\xd6\ +\xf1\xec\xe3\x65\x5c\x7c\xf8\x24\x2e\x7f\xb0\x8b\xab\xef\x2d\x63\ +\xf5\x9d\x51\x5c\x7f\x72\x19\xf3\x27\xf2\xf5\xea\x32\xb6\x57\xd3\ +\x58\xc9\xff\xd5\x7a\x1d\xdb\x35\x63\x80\xd2\xce\x79\xa4\x6a\x12\ +\xf3\xc5\x38\x36\x9b\x71\x4c\xb7\x1a\x43\x3e\x1c\xc5\x93\xef\x2c\ +\xe3\xd9\xfb\xd7\xb1\xd2\xf8\x39\x12\x9f\xa7\x55\xc8\xc7\xd7\x0f\ +\xe1\xfc\x71\x41\x8e\x53\xfe\x81\x47\x3d\x15\xeb\xa0\x38\x81\xff\ +\x65\x03\x7b\xac\x27\x9d\x0b\x9e\x45\xa1\xf7\xb5\x2e\x8f\x24\xfb\ +\xca\x8b\xcf\xb5\x0e\xf3\x2d\x3b\xae\x23\x05\x8f\x89\x8c\x8d\xca\ +\x2a\xaf\x75\x56\x2e\x9c\xf6\xdd\x3f\x68\x27\x22\xca\x93\x76\xa3\ +\x0d\xbb\xcc\x1b\xa8\x7e\x69\x05\x8e\x99\x30\xfd\xe2\x7f\xe4\x5c\ +\x4e\xf2\xd1\x67\xaa\x6b\xf3\xc9\xc9\x22\x4e\xe6\xf3\xf4\x47\xba\ +\xdc\x04\x7c\xa6\x6b\xcf\x87\x31\x8b\x5f\xf9\x8f\xff\xe3\x78\xe3\ +\x9d\x77\xbd\xf1\x86\x79\x2c\x75\x25\xeb\xf2\xeb\x88\x82\xd4\x7a\ +\xa9\xf0\x92\xcd\xfd\xa5\x85\x56\x4e\xe3\x6c\xb7\xae\xdf\x88\x09\ +\x45\xfb\x3c\x7e\xfa\x34\xbe\xf5\xfe\xef\xc6\xe2\xd6\x2a\xa6\x53\ +\x64\x5c\xdf\x24\xa5\x1f\xa9\xed\x5b\xfb\xea\x4a\x8c\xb0\x4c\x20\ +\x3b\xc4\x56\x21\x8d\x79\xf4\x87\xea\x1b\xa2\x7d\x0d\xb7\x5a\x8f\ +\x1b\xf4\x94\xa0\x22\xcc\xe3\xba\xb9\xcd\x67\x42\x29\x1f\x18\x48\ +\x70\x2a\x1d\xc8\x06\xb1\xe7\x54\x1e\x54\x32\x8e\x7c\x79\x1d\xb1\ +\x66\x0c\xb3\x72\x29\x1a\x92\x28\x4f\x7d\xb4\x1d\x85\xa9\xca\x33\ +\x9d\xec\xe3\x94\x27\x2c\xa6\x96\xf8\x8b\x09\xce\x10\xa0\x5d\x2b\ +\xe6\x3a\xcf\x6f\xdf\x99\xc4\x6c\x31\x53\x9c\xfc\x19\x1b\x24\xd7\ +\x50\xba\xd1\x78\xb3\xd1\xf8\xba\x5c\x8d\xe2\x62\xb9\x8f\x8f\x1e\ +\xee\xe3\x87\x0f\x57\xf1\xfd\x8f\x77\xf1\xde\xa7\xa3\x78\x74\x3d\ +\x89\xeb\xcd\x2c\x36\x3a\xd1\xe4\xa1\x6c\xe2\x27\x56\xd3\xbe\x33\ +\xb8\x01\xae\x52\x05\x8b\x8a\xa6\xde\x1d\x2d\x3e\x6d\x61\x5c\x43\ +\x82\xdb\x46\x14\x58\xc3\x51\xea\xa1\x43\xdb\x0d\x70\xa3\x5b\x5b\ +\x92\x06\x0b\xa9\x6b\x2a\xd3\xda\x47\x42\xd6\x05\x43\xb3\xeb\xc6\ +\x58\xe5\x77\x65\xa3\xd8\x69\x38\x1d\x38\xe3\xe8\xa4\xbc\xa2\x09\ +\x18\x00\x84\x3a\x1b\x40\xd3\x33\x64\xbd\x5b\xb3\xf4\x3d\x66\x35\ +\xc8\x86\x36\x38\x59\xd5\xa7\xe7\xe4\x03\x35\x83\x44\x94\xa9\xd1\ +\x69\xaf\x94\x70\x58\xa4\xa5\xf6\x35\xf3\x85\xd7\xcc\x38\x6e\x28\ +\xaa\x53\x10\x31\x2c\x9f\xc0\x79\x37\x7b\x1d\x7f\xa0\xf0\x22\x68\ +\x62\xd2\x1d\xa8\xf6\x91\x81\xca\x0d\x28\x4e\x13\xa0\x08\xdd\x29\ +\x0e\x52\xb4\x7a\xb7\x0e\xb5\x39\x94\x71\xc8\x38\xc7\xd6\x82\xe8\ +\xa5\xc9\xe4\xa6\xb4\x64\xc5\xcb\x39\x4b\xc6\xd3\x74\xd3\x31\x33\ +\xa1\xcb\x2f\x03\x2a\xcd\x5a\x03\x5f\x95\xcc\x68\xba\x90\xa9\x9f\ +\x20\xec\x6f\xf2\x5a\x3e\x29\x45\x50\xe9\x3a\x9c\x63\x8e\x69\x8e\ +\xc4\x7d\x71\xec\xe9\xde\x57\xcd\x81\xc0\x8a\xfb\x49\xd3\x4e\x87\ +\x0d\x64\xc9\x10\x75\x9f\xa4\xf3\x49\x4d\x36\xe5\xd9\x98\x23\x1d\ +\x97\x5d\x49\xcc\x53\x50\x56\xc8\xe1\xfb\xe9\x31\x5d\x93\x3d\xa5\ +\x12\x43\x6c\x5f\x9f\xb3\xc6\x86\xa1\x3f\x9a\xe3\x13\xb1\xf5\x5e\ +\xb0\xb9\xfa\x60\x20\xb9\x09\xa5\xe1\x0e\x84\x94\x76\x61\xf4\x27\ +\x6f\xfe\x53\x71\x1f\x17\xd7\xfb\x78\x72\x15\xf1\x44\xeb\x44\x9e\ +\x34\xbb\xbc\xda\x68\xae\x94\x3e\x6c\xd5\x37\x58\x3f\xef\x47\x9b\ +\x78\xfa\xec\x32\x3e\xfa\x78\x13\x1f\x3c\xbc\x8a\xc7\x57\x4b\x7e\ +\x9b\x98\x65\xb2\x4d\xc6\xca\x5d\xcc\xfc\x7f\xb4\x53\xcf\xa7\x1e\ +\x5d\xad\xe2\x93\xa7\x11\x97\xfc\xa8\x4b\x7a\x43\xaf\xec\xd7\x21\ +\xc3\xe0\x92\xa4\xab\x1a\x7f\xd8\xc8\x9b\xc6\xed\x5b\x1a\x5f\xe7\ +\x29\xe7\xed\x01\xd4\xab\x0b\x61\x03\x37\x8d\x64\x4d\xbc\x08\xa8\ +\x03\xa7\xaa\x7a\xf3\x46\x9a\x72\xe1\x4d\x30\x7e\x0a\xce\xf1\xe7\ +\xc1\xf3\x25\xe6\x3a\x82\x76\xcd\x22\x40\x7f\x1e\x7c\x96\xb4\x0d\ +\x0d\xee\x83\x84\x8e\xd6\x35\x43\xd7\x8a\x87\x1f\x9e\xc7\xff\xe1\ +\x77\xfe\x2f\xba\xb6\x9c\x21\xc8\xfa\xe8\xe0\x45\x1e\x1e\xe1\x67\ +\x1d\x8e\xad\x7a\x84\x23\xbc\x3c\x38\x6e\xa8\x1d\xe1\x08\x47\xf8\ +\xe2\x80\x2b\xf8\x67\x5d\xc5\x7f\xc2\xab\xfb\x4b\x99\x0c\xd8\x88\ +\x0e\xe0\xdd\x26\xbe\xff\xc7\x7f\x1c\x8f\xfe\xe8\x1b\x71\xef\x64\ +\x1c\x27\x33\xa6\xbd\x39\x11\x65\x93\x85\x05\xcb\x76\xcd\xa4\x36\ +\x17\x2c\x2d\xff\xb6\xc8\x18\xb3\xf8\xef\x26\xcd\x79\xa3\xa5\x7b\ +\xe2\xcb\x0c\x26\xcf\x0a\x60\x29\xb7\x0d\x1c\x44\x6d\x2d\x52\xa8\ +\x40\x31\xe5\xc3\xa4\x97\xd9\x2f\xa8\xb8\x37\xf4\x0a\x5e\xc0\x4c\ +\x96\xf2\x00\xe1\x0b\x37\x7f\xec\x8f\xbe\x64\x2c\xc3\x6d\xa3\x27\ +\x58\xcc\x6c\x34\x61\x5f\x69\xe1\xd6\x36\xd4\x98\xbc\x57\xbe\x09\ +\xf8\x9b\x56\xb9\x39\xec\xa7\x47\xb4\xce\x98\xf8\x46\xb7\xa4\x9a\ +\x98\xc7\x5a\x4b\x92\xb5\x16\x11\x2c\x7c\x14\x56\x97\xfb\x58\x5f\ +\x6d\x63\x75\xb5\x8b\xd5\xb5\xf0\x52\xc5\x12\x3f\xcb\x46\x22\x16\ +\x88\xa2\xf9\x05\xa6\x6f\x1a\xe7\xa6\x52\x65\x93\xde\x17\xc3\x2c\ +\xd3\x8e\xa6\x8e\x99\x00\x72\x9c\x6d\x02\x81\x2b\x4d\x34\xbe\x76\ +\x7a\x88\x33\x92\xed\x95\x6d\xe4\x1b\x3b\x7c\x68\x1b\xee\xe4\x70\ +\xc3\x98\x46\x55\xbd\xed\xa8\xb7\x99\xca\xc5\x4d\xec\xc5\x34\x26\ +\x67\xb3\x18\xdd\x65\x33\x6d\x16\x33\x36\x03\x31\xb7\x56\x59\x56\ +\x9b\xd8\x2d\x97\xaa\x87\xb5\x8a\x55\x9b\x69\x0a\xfe\x0f\x29\x2d\ +\x88\xf1\xa7\xbb\xb1\x5c\x81\x8f\x31\x37\x18\xf4\x45\x8f\xfa\xf0\ +\x66\x93\x79\x30\x05\x03\xff\x01\x47\x7d\x38\x94\xbb\x68\xc5\xba\ +\x99\x06\x38\x60\xb5\x7a\xf0\xb1\xa0\x78\xc0\x90\x82\xc6\x6c\x8a\ +\x59\xcc\x96\x9c\x43\x0b\x79\xa8\xa3\xe0\x05\xbc\xbe\xaf\x8b\x20\ +\xc2\xb7\xdd\x5c\x01\x06\xc5\x69\xba\x9f\x05\xfd\x0d\xb0\xf2\x6f\ +\xe0\xbb\x79\x15\x6d\xdc\x3e\x17\x51\xd4\xb1\x70\x9e\x5f\xbd\x24\ +\x21\xed\x92\xfe\x50\x82\x6e\xf6\x32\x1f\x14\x9e\xf7\x7d\x10\xa7\ +\xc9\x6d\x87\x5b\x09\xf6\xd0\x6c\x83\xc8\x76\x6e\x27\x40\xa4\x8e\ +\xdd\x69\x7c\xb3\x75\x68\x71\xc3\x50\xa1\x51\x15\x37\xd2\x21\xbf\ +\x06\x97\x83\xf2\x2a\x34\x5e\x02\xde\x71\x1c\x28\xb7\xcc\xed\x1b\ +\xbe\x54\xdf\xe5\x8e\x0c\x7d\x93\xcd\x11\x36\xc6\xd4\xa7\xf9\x81\ +\x81\x06\x0a\xcb\x72\x13\x4c\xe7\x32\xa1\x3d\x95\xc6\x66\x19\x9b\ +\x67\xc2\x6c\xb2\x75\xff\xa5\x06\x0f\x3d\x8f\x1f\x3a\x67\x4a\xee\ +\xa7\x32\xa1\x5b\x5a\xec\xe2\x8e\xcf\x21\xe9\xda\x05\xd1\xe6\xc9\ +\x0f\x78\x9d\xaf\xe2\xa9\x30\xf4\x04\xca\xe4\xb6\x6f\x71\x45\xda\ +\xb9\x0e\x90\xde\x63\x80\x43\x2a\xdb\x8e\xc5\xa9\x83\x41\x9b\xe4\ +\x22\x30\x94\x8d\xc9\x5f\x8e\x38\xdd\x2e\x96\xab\x7d\x3c\x7d\xb6\ +\x8c\x47\x9f\x5c\xc6\xc3\x8f\x9e\xc6\xd3\xf7\x34\xc6\xbd\xaf\xa1\ +\xe0\x03\x7e\x44\xa0\x32\x3c\x54\x79\x9e\x4e\x62\xbb\x9c\xc4\x2a\ +\x96\x1a\x4b\x48\xbf\x8e\xfd\x52\x06\x34\x56\xc6\xd3\x88\x27\x7f\ +\xba\x89\xa7\xdf\xdd\xc5\xe5\x07\x6b\x8d\xbf\x13\xc9\x35\xde\xd8\ +\x67\xb2\x61\x6c\x12\xe6\xfa\xc2\x38\x45\x98\x6a\x8c\x9a\x4d\x62\ +\xcf\x8d\xf7\xda\x54\x1b\xf3\xe3\x8d\xb9\xd2\x71\xdd\xd1\xb8\x95\ +\xe5\xf3\xd7\xe5\xe0\x40\x7d\xe1\x7a\x03\x64\xed\x08\xb8\xbc\x2d\ +\x51\xe5\x9f\x4e\x40\x0b\x2b\xef\xdc\x4c\x03\x17\x0f\x9d\x4a\xe3\ +\xb6\x92\x15\x8f\x71\xf4\x0d\xf2\xaa\x36\x73\x7b\x59\xb7\x00\x7f\ +\x84\xf2\x1c\x2c\x86\x11\x1c\xca\xc9\x38\xac\x2c\xf5\x61\xb3\x61\ +\x3e\x9f\xc5\x7c\x31\x97\x24\x37\x02\xc6\x9b\x88\x1f\xe8\x3a\xf5\ +\x83\xfd\x34\x7e\xfd\x7f\xf6\x1f\xc5\xdd\x07\x0f\x94\x18\x69\x42\ +\x52\xb2\x89\x8f\xce\xa8\x24\x4d\xa1\x27\x5e\x1e\x0c\x4d\x66\xe1\ +\x7e\xbe\xc1\xe5\xe3\xa0\xd0\x95\x95\x9a\xa7\xf0\xe3\x58\xeb\x1c\ +\xfe\xa7\x7f\xf8\x5f\xc6\xc9\xdd\x6b\xb5\xa1\x5a\x95\xe6\xa0\x51\ +\x8d\x39\xa4\xb6\x3f\x65\xc6\x9c\xc2\xf9\x2d\x5c\xed\xe7\x3e\xa1\ +\x93\x81\x27\x12\x3c\x87\x52\x3e\xd9\x0f\xad\x69\xdc\xa0\xa3\x7a\ +\x96\xfb\x1a\xe3\xd6\xe0\x34\x78\x01\x54\x82\x81\xad\x9b\xd0\x44\ +\x3e\x1f\x39\x27\x1c\xcb\x92\xaf\x34\xff\x59\xa9\xec\xe4\xf5\xbc\ +\x05\x71\xca\x57\x8e\xd8\xc1\x7f\x2c\x50\x47\xea\xe2\xa1\xae\x6e\ +\xb9\xaf\x0f\x86\x3c\x6f\x75\x14\x7f\x1f\x53\x9d\xef\xa7\x67\xbc\ +\xe5\x94\x0d\x66\x6a\x5a\xda\x3a\xc7\x56\xd7\xa3\x78\x7a\xb1\x8b\ +\x27\x17\x9b\x78\x74\xb9\x8a\x8f\x1e\x2d\xe3\x83\xc7\xcb\x78\xff\ +\x11\xaf\x46\x1b\xc5\xc5\x7a\xa2\x69\xde\xe0\x7c\x83\xe0\xa4\xbc\ +\x71\xa1\x6d\xb9\x36\xc8\x1f\xa8\xa4\x8e\xcf\x7b\xe5\x88\x27\xc5\ +\x29\x19\xdc\x24\x4b\xd5\x1a\x94\xcd\x63\x97\xf9\xe6\xe8\x43\x1b\ +\x96\xcc\xbc\x8c\xe7\xe6\x1a\xed\xe9\xc4\x96\x99\x20\x88\xdf\x39\ +\x66\xd7\x87\x5e\x62\x83\xda\x81\x37\x48\xe3\x68\xbb\x46\x28\x0e\ +\x7b\x08\xb0\xc1\xe8\x94\x8a\x41\xb6\x33\x6f\x4b\x0d\x4d\x06\x32\ +\x69\x31\xf2\xd4\x21\x7d\x0f\x19\xc9\xf6\x1a\x24\x2c\x70\x52\x1d\ +\x8c\x89\x43\x1c\x3a\x50\xa1\x10\xe7\x4a\x45\x13\x32\xb1\xd3\xbb\ +\x0d\xa9\xe0\x8c\xe7\x21\x61\x40\x4a\xa7\x3c\x39\x60\x0e\xc0\xf6\ +\x55\x53\xea\x67\x9d\x8a\x0b\xd5\x27\x68\x14\xf8\xc0\x9d\x17\x41\ +\x2b\xcf\x41\x3b\x15\xdd\x9b\x14\x54\x7f\x44\xbd\xe2\x19\x49\x9c\ +\x67\x54\x82\xdb\x97\xa8\x6d\xf7\xe9\xbc\x4b\x63\x9a\xc3\x00\x9b\ +\xd9\xa2\x87\x3c\x70\xf6\xa1\x2a\x4d\x63\x1b\x2a\x22\x79\xcb\x73\ +\x78\x2e\x0e\x43\xf2\xad\x25\xe4\xa3\x71\xa6\xe3\x4a\xd5\xe8\xa2\ +\x7c\x01\x4e\xbc\xf7\x95\x8c\x39\x0e\xe9\xc0\x6c\x8a\x69\xdc\xf0\ +\x47\xf3\x06\xd2\xb0\x41\x06\x5f\x71\xd2\x75\x4f\x57\x52\x07\xae\ +\x5e\x2c\xe4\xe6\x11\x1f\xac\x67\x3a\x36\x81\x92\x66\xd3\x0c\x5a\ +\x64\x4e\xbf\x14\x7c\x79\x26\x88\xd9\xf0\xb0\x61\x38\x97\xa9\xfd\ +\x21\xaf\xf5\x59\xe0\x40\xd2\xf5\x5b\xd2\x24\xf4\x9c\xa4\x93\x4f\ +\x6b\xea\xfa\xad\x08\x1b\x62\xbc\xaa\xf1\xea\x9a\x57\x39\x46\x3c\ +\xbb\xda\xc4\xe5\xf5\x52\x71\x9e\x3e\xdb\xc4\xf5\x7a\x19\x4f\x9e\ +\xad\xe2\xfd\x8f\x2e\xe2\x87\x1f\x5f\xc6\x27\x9a\x63\xf1\x3f\x8c\ +\x3c\xed\xc6\x93\xb4\x9b\x2d\x4f\xd3\xca\xa4\x1c\x65\x0c\xe6\xff\ +\xce\xae\xb4\xfe\x7a\xf8\x74\x1d\x8f\x97\x3c\xc5\x46\x7d\xde\xf0\ +\xd3\x44\xef\x59\x8b\xda\x2b\x22\x0a\x13\x0d\x56\xb3\xc9\x24\xee\ +\xdc\xd5\xb4\x4a\x73\x29\xea\x94\x1f\x29\xf0\x24\x6c\x42\x29\x1e\ +\x40\x77\x96\xdf\x00\xf1\x25\xb0\x34\xbf\x1e\x57\x3c\xce\xc9\x36\ +\x3e\xa3\x00\xff\x26\xd0\x26\x52\x34\x4d\xbf\xf0\x86\x9a\x98\x94\ +\xc9\x4d\x45\xb8\x01\x2f\x60\x1d\x00\xd6\xb0\xc5\x26\x1e\x4f\xfa\ +\xc2\xd8\x6d\x75\x4d\x50\xd1\x96\xd7\xaf\xc5\xef\xfc\x3b\xff\x6b\ +\x35\x25\x4f\x3d\xe3\x63\xa6\x49\x78\x91\x87\x47\xf8\x59\x87\x63\ +\xab\x1e\xe1\x08\x2f\x0f\x8e\x1b\x6a\x47\x38\xc2\x11\xbe\x78\x18\ +\x5e\xc9\x1b\x0d\x66\x46\xf8\x63\x5e\xe5\x5f\xde\x64\x40\x96\x30\ +\xb6\xdb\xc4\xa3\x8f\x1f\xc6\xf7\xfe\xc9\x7f\x1d\xf7\xa7\xbb\x38\ +\x9f\xf1\x7a\x2e\x6e\x12\x68\x52\x2d\xb9\x7f\xf5\xa7\x05\x00\x1b\ +\x6a\xfe\x2f\x86\x06\x24\x67\x52\xac\xe0\xc9\x31\x58\x4c\x5e\xfd\ +\xe3\x9b\x0f\x60\xf3\xc5\x26\xae\xc9\xac\xf9\xdc\x30\x74\x3c\xb3\ +\xcf\x43\x03\x45\x3c\x71\xd6\x41\x59\x19\x0f\x66\xcb\x9e\x50\xb7\ +\xc5\x6e\xa5\x73\x1e\x49\x76\x18\x0d\x6e\xb6\x58\x46\x59\xb8\xf1\ +\xca\x8d\x09\x26\xf2\x12\xa2\xe7\x4d\x09\x26\xea\x04\x9e\x06\xd9\ +\xa8\x9c\xeb\xad\x5f\xe1\xc6\xbd\x74\x32\xeb\xed\x3a\x45\x6e\xa6\ +\x41\x71\xe3\x77\x27\xda\x15\xa4\x7a\x62\x61\xef\x57\x0e\xb1\xe8\ +\xe1\x8f\xe8\xf9\x93\xf9\x9d\x7f\xad\xbd\x56\xfd\xc9\xbc\x17\x26\ +\x6c\x9e\x25\xb0\x5c\x91\x1d\x25\x77\xfd\x00\x03\xda\xb9\x98\x4e\ +\x46\x6e\x32\x35\xba\x71\x8b\x76\xa4\x97\x65\xf9\xca\x4f\xd7\x95\ +\x8b\x32\x48\x93\xd2\x6c\x1b\x82\x6b\xca\xf7\x6d\x68\x27\x7e\x41\ +\xb8\x57\xdb\xf1\xc4\x07\x37\xae\x77\xd3\x49\xc4\xc9\x24\xa6\x67\ +\x8b\x18\xdf\x3e\x89\xe9\xc9\x54\xba\xb9\x80\xe5\x67\x93\x93\xcb\ +\x55\xf0\x22\xfa\xfd\x72\x1d\x63\x6f\x06\x68\xc9\xa8\x7e\x92\x4f\ +\x6a\x64\x9f\xf1\xd3\x3c\xaa\x0f\x2f\xa6\x59\x0d\xba\xee\x31\x00\ +\xe0\x23\x0b\xe1\x8c\x39\x8a\x8e\x5c\x70\xfd\xa6\xb8\xf3\xdf\xad\ +\x42\x3c\x0b\xfe\x42\x20\xc9\x81\xb4\x22\x4e\xd2\x04\x28\x01\x8a\ +\x53\xfe\x9b\x69\xf2\x57\xdd\x4d\xa9\x80\x3e\x31\x54\x1a\x40\xcf\ +\x6f\x04\x69\x6f\xa4\x47\x64\x56\xf5\x2d\xfa\x53\x53\x13\xe1\x3a\ +\xe8\xf2\x3c\xcc\xe8\x79\x2e\x5e\x37\x48\x69\xf3\x61\xa8\xe3\xbc\ +\x2c\x90\x8e\xd5\xc0\xd5\x7e\x00\xbc\x96\xa7\xe9\x0a\x82\xe2\x26\ +\xa1\x90\xec\x8e\xab\x78\x7f\x8e\x00\xee\xd5\x18\xb6\x8a\x0e\x4d\ +\x15\xac\x3c\xbb\x36\x86\xa1\x84\x19\xb5\xb0\x43\x40\x9e\x1d\x52\ +\x01\xb9\x5e\x7a\x61\xa9\xf4\x50\x8c\xc3\xb1\x42\xc6\x9d\xb8\xe7\ +\x75\xa2\x02\xe2\xf6\xbd\xd9\xb6\x7f\xd9\x4f\x33\x88\xe7\x85\xbc\ +\x30\x37\x89\x45\xb7\x0d\xb1\xb6\x99\xc6\x86\xd8\x88\x57\x3d\x6e\ +\xeb\xd5\xa6\xc4\x2d\x4b\x1a\xdd\xdc\x30\xe3\x7c\xc8\x78\xff\x74\ +\x1a\xe7\x42\xca\x6d\x9f\x74\xb6\x5f\xe7\x48\x61\x9e\x54\xf3\xf9\ +\x60\x7f\xe4\xaa\xe8\xf4\xb3\x2a\x50\xa1\x6b\x03\xda\x59\xa1\x8b\ +\x03\xe8\xc0\x46\x8f\x73\x3c\x55\x92\xe8\x10\xcc\x46\x0b\x49\xc1\ +\xd5\x52\xf6\xfc\x1f\x5f\x22\xd9\x40\x67\xa8\xf3\xeb\x3a\x35\x56\ +\x30\x9e\xd2\x03\x56\xdc\x98\x78\xb2\x8b\xcb\x0f\x97\xb1\xfc\x78\ +\x1d\xab\x0f\x47\x71\xf5\xa1\x86\x85\xf7\x36\xb1\xf9\x54\x45\x79\ +\xaa\x72\x5e\x6e\x62\x7b\xad\x3a\xbb\x92\xef\x9f\x4e\xe3\xa3\x3f\ +\xba\x8a\x27\x7f\xb2\x8f\xc7\x3f\x7c\x16\xdb\xab\x09\x45\xd7\xf0\ +\xc3\x49\x2f\xbb\xd8\x26\x7b\x8d\x33\xbe\x16\x89\xcf\x5b\x0f\x19\ +\xc7\xd9\xe0\xf7\x66\x1a\x63\x39\x63\x13\xd7\x2b\xf8\xed\xba\xa3\ +\xf4\x98\x70\x93\x82\xba\x3a\x73\x4c\x41\x76\x7d\x4c\x68\x3d\xb8\ +\x1b\x4f\x5a\x7a\x57\x56\xf2\x1d\xb0\xaf\x3c\xfb\x1b\xdf\x4d\x3f\ +\x91\x4d\x93\x0f\x6d\x55\xc1\xd7\x4b\xf2\x2f\x71\x62\x51\x8e\x50\ +\x77\x43\xc0\x13\x36\x4c\xaa\x1c\xa2\x67\x2a\xdf\x62\x31\x8b\xd9\ +\x7c\xce\x70\x28\x53\x5c\x4b\xf6\xf1\x27\x4f\x57\xf1\x70\x37\x8f\ +\x7f\xe3\x7f\xf7\xbf\x89\xc5\x5c\xe3\xb2\xd3\xf2\x11\xa4\x73\xe9\ +\x57\xf3\xf1\x30\xa3\x97\x03\x65\xda\xf0\x59\xf4\xcf\x23\x50\xbe\ +\x61\x7d\xde\x2c\xaf\xe2\xb3\xfd\x34\xfe\xfe\xef\xff\x67\x71\x7a\ +\x7a\x15\x93\xb9\xc6\x04\xf5\x3d\xcf\x3f\x2c\x17\xcd\x35\x97\x3e\ +\x15\xfc\x6f\x6b\xa6\xe1\x90\xcd\xa5\x83\xbf\x85\xad\x97\x71\x6e\ +\x48\xe6\x2b\x40\xd1\xcd\x50\x89\x92\x2e\xe8\xa8\x22\x90\xd1\xfd\ +\xb7\xba\x26\x6b\x26\xf7\x39\xfd\x81\x04\x0a\x1e\x3b\x3f\x03\x10\ +\x53\x06\xfa\x2a\xe7\x5f\x03\xf1\x96\x4b\x8d\x03\x6b\x5d\x5b\x2a\ +\x79\xe7\x87\xc1\x09\x5b\x0e\x7d\x10\x8f\x27\xef\xe6\xd3\x7d\xfe\ +\x07\x50\x73\x4e\x88\x73\xd6\x1f\xd1\xe8\x6a\x6a\xa2\x3c\x95\xef\ +\x8c\xb2\x6b\xd8\xd4\x9c\xed\xfa\x2a\xe2\xf1\xc5\x3a\x1e\x3f\xd5\ +\x3c\x56\xf8\xd3\xa7\xeb\xf8\x58\x63\xd1\xc7\x4f\x47\xf1\xf4\x6a\ +\x1a\x57\x2b\xce\x0e\x0d\x50\x0c\x60\x02\x1f\x9d\x85\xcf\x44\xc7\ +\x2b\xc7\x0e\x88\xbb\xb5\x24\x24\x1f\xce\x45\x33\xb9\x5e\xc3\x17\ +\x40\xc9\x6d\x49\xa0\xd2\x1f\x30\x37\x65\xdd\x36\xe6\xd1\xee\xc9\ +\xa7\x4a\x39\xaf\xb9\x99\x6c\xb9\x82\x6f\x88\x93\x90\xb1\x05\x9b\ +\xd8\xe0\x60\x1a\x1d\xf2\x25\x61\xf3\xd0\x99\x1c\x00\xc5\x72\x92\ +\xa6\x22\x6c\xb2\x3b\xa8\x9c\x4e\x83\x22\x71\x61\x6c\xa6\x28\xd3\ +\x43\xd8\x06\xcc\x84\x7e\x74\xea\x79\xa9\x03\x86\x28\xc0\x66\x6b\ +\x20\xc0\x36\x30\xda\x46\xd6\x04\xfb\xd0\xf2\x05\x1c\x4f\x0d\xea\ +\x29\x53\x0d\x53\xa4\xca\x21\x8b\x7c\x14\x3c\xa6\xf6\x02\xbb\x43\ +\x68\xb6\x0d\x07\x09\xb3\xe8\x5d\x90\xcc\xbe\x0c\x6c\x28\x20\x32\ +\xa7\x63\x27\xd1\x6b\xbd\x08\x48\x55\xa8\x19\x29\xd6\x80\x48\xb0\ +\x13\xa5\x64\x12\x0c\x41\x00\x54\xb0\x46\x0a\xd2\x4d\xd5\x23\x49\ +\xa8\x23\xca\x6d\xf9\x30\x8d\x70\x7e\x8b\x56\x68\x0e\x63\xdf\x34\ +\xf5\x5b\xb2\x06\x26\x33\xce\xb1\xfb\xd1\x91\x31\x94\x42\xa7\x2f\ +\x8e\xdd\xce\x78\x5e\x4b\x4d\xf5\xbc\x4a\xd3\xae\xb3\x0d\xb3\x29\ +\xd6\xc7\x75\x05\x53\x9c\x31\x08\x7d\x36\xcd\xa0\x73\x33\x2d\x5f\ +\xfb\x38\x7c\xf5\xa3\xe5\xcc\x3d\xb0\xa1\xb2\xec\x5c\x07\x69\x8b\ +\x57\xa3\x7a\x03\x2d\xad\x67\x5a\xb0\xe4\xb6\x2a\x41\x6e\x9a\x21\ +\xf3\x74\x2a\x65\x15\x30\x09\x3f\xd3\x67\xe8\x80\x7a\x57\xa0\xde\ +\xf3\x5c\x36\x2b\xdb\xa1\xc0\x64\xc9\x4c\x56\x48\x3b\xf0\x1b\xa7\ +\x71\x39\xa3\x14\xac\x20\x9e\x4e\x6d\x9e\xfe\x62\x73\xed\x72\xb9\ +\x8f\xa7\xd7\x9b\x78\xf8\x84\xf1\x6b\x17\x1f\x3d\xbe\xf2\x8f\x02\ +\x1e\x5f\xad\xfc\x43\x80\xf5\x66\x22\x9f\x15\xe4\x14\x1b\x72\xf8\ +\xe6\xa7\xef\x64\x89\xa7\xdb\xae\x56\xeb\xb8\xd2\xbc\xea\x62\xc5\ +\xff\xaa\x29\xb7\xcc\xc4\x39\x0f\x0e\x87\x20\x96\xcb\x57\x34\xd7\ +\xa4\xf9\x7c\x12\xaf\xdc\xe1\xff\x6c\xb3\x8e\x73\x43\x8d\xf6\x43\ +\xcb\x9a\x37\xe0\xe6\x19\xdb\x40\xfc\x66\x98\x2f\xf5\xe4\xc0\x3c\ +\x4e\xf3\x35\xd6\x97\x37\xd3\x2a\x42\x7b\xc1\xdb\xd7\xb8\xc7\x66\ +\x9a\x7d\x90\x0b\xad\x4c\xd9\xe2\x43\x18\xc6\x45\x3b\x8a\x56\xb3\ +\x6e\x8b\xfa\x66\x4a\xcc\x60\x8b\x57\x8e\xaf\x2e\xee\xc5\xf9\xe8\ +\xab\xf1\xb7\x7e\xf3\x7f\x12\xa3\x7c\x94\xbc\xfc\x2e\x70\x27\x28\ +\xfa\x08\x3f\x37\x70\x6c\xd2\x23\x1c\xe1\xe5\xc1\x71\x43\xed\x08\ +\x47\x38\xc2\xcf\x2c\xbc\x9c\x09\x41\x4d\x16\x77\xeb\x58\x5e\x2c\ +\xe3\x9b\x7f\xef\x1f\xc4\xdd\xd1\x2a\x6e\x2d\xf8\x65\x3c\x82\x9c\ +\xf0\x7a\xf1\xa2\x49\xfb\x66\xbb\xd5\xa4\x3e\x6f\xc6\x38\xff\x6e\ +\x92\x8c\x1e\x38\xf9\x7e\x1a\x4c\x81\xa7\xd4\xbc\x99\x65\x41\xea\ +\x71\x77\xc1\xfc\x16\xc7\x8c\x8f\x09\xb0\x3c\x6f\xae\x49\x6f\xae\ +\x2f\x89\xa4\xdc\xca\x9a\xe4\x76\x8b\x7d\xc5\x4d\x0f\x8d\x08\x88\ +\xb2\x96\x04\x78\x5d\xa1\xf3\xe4\xa6\x2b\x1f\xeb\x8a\xe7\x45\x15\ +\x4f\x80\x68\x19\x06\xcd\x86\x1a\x4f\xa8\xf9\x66\xb7\xe2\x5d\x16\ +\x4a\xe0\x2c\xfa\x4c\x5c\x3d\xbe\xb3\x9c\x36\x3d\xf1\xee\xa0\x12\ +\x0a\xdb\xf7\xa2\xd1\x68\x9b\x57\xfe\x88\xc1\xb2\xc2\x73\x76\x02\ +\x72\x54\x81\x5a\x08\x73\xa3\xc1\xfe\x5a\xce\x27\xa1\xe9\x77\xb4\ +\x0e\xd6\x23\x1f\x70\x0b\x02\x3c\xe8\x78\x02\x6e\x84\x65\x1a\x30\ +\x1e\x88\xa6\x40\xd8\xf0\xdd\x1f\xd1\xdc\x27\x63\xd1\x33\x1f\xc7\ +\x9e\xfe\x70\x36\x8f\xc9\xf9\x2c\x26\x27\xb9\xd9\xca\x22\x8b\x8d\ +\xb4\xfd\xc5\x75\xec\x9f\x5d\xc7\xe8\x6a\x19\xb1\x56\x63\x6d\x36\ +\x31\x52\xfd\xb1\x01\xcb\x1d\x72\xbf\x5e\x85\xfa\xac\xba\xa6\x52\ +\xbd\x91\xd9\x02\xde\x79\x55\xdb\xc7\x39\x82\xa9\x82\x5c\x44\x1d\ +\x96\xdb\x38\x51\xe2\x16\x11\xd1\x16\x5d\xc0\x80\x6d\xba\xa5\xed\ +\xc0\xcc\x24\x9d\x1f\x39\x1f\xe8\x34\x5b\xc8\x80\xe7\x0d\x74\x9c\ +\xea\x6c\xc4\xb3\x04\xbd\x1f\x49\x67\x70\x99\x44\x65\xba\x5e\xa7\ +\x51\xa4\x6d\x56\xfb\xbe\x33\x00\xfa\x43\x27\x4f\x9c\xc7\x06\xbd\ +\x25\xc0\x32\x1d\x3a\x1d\xd5\x8f\xeb\x68\x18\x60\xa3\x6f\x52\x07\ +\xfa\x41\x25\x04\x99\x44\x4f\x79\xb7\xff\xad\x49\x68\x69\x12\x7c\ +\x0a\x10\x2f\x9b\x4d\xee\x58\xe3\xa5\xb1\x8e\xef\xbe\x60\xc8\xc4\ +\x9d\x0d\x43\x11\x42\xc3\x8d\xe1\x64\x28\x28\x92\xed\x9d\x74\x07\ +\xd8\xe0\x26\x8c\x3e\xf9\xba\x2c\x97\x2e\x61\xa0\x66\x68\x71\xa7\ +\x57\xff\xa4\x9f\x42\x13\xe8\xc3\x6c\x80\xd1\x6f\xd9\xe8\xf2\xc6\ +\x16\x63\x43\xdb\x2c\xdb\xb8\xbf\x7b\x33\x8d\xff\x0b\xdc\x10\x24\ +\x17\x4e\xb9\x7c\x90\x2c\x75\x2a\x8d\xd3\x23\xe3\xdc\x10\x0f\xbb\ +\x60\x6f\xa6\xed\xc4\x4b\xec\xf1\x08\xec\x73\x47\xae\x31\x1e\x89\ +\x97\x63\x56\x73\x9a\xa2\x0e\xca\xe6\xba\x15\x98\x31\xec\x9b\x43\ +\xdc\x71\x4d\x65\xd0\xd1\x6c\x12\x16\xed\x78\x61\xfa\x5c\xf5\x09\ +\x8d\x96\x6e\x23\x6b\xd2\x06\xf2\x8b\x27\xe8\xc6\xfb\xad\xc6\x57\ +\xc5\xc7\x7b\x3f\xb9\x76\x7d\xb5\x89\xeb\x0b\x9e\xce\x15\xfd\x78\ +\x17\xab\x87\x93\x58\x3f\x1a\xc7\xea\x83\x69\x5c\xbd\x37\x8a\xa7\ +\xdf\xde\xc7\x93\xf7\x77\xf1\xf4\xd3\x2b\xd5\xdd\x89\xca\xc4\x75\ +\x82\xb1\xd1\x86\x2b\x5f\x6e\x38\x67\xde\xbe\xf1\xac\xf1\xbb\x6d\ +\x9c\x85\x9f\x50\xe3\x49\x35\xd1\xb3\x49\xf7\x6a\xda\x7c\xd2\xc3\ +\x89\xed\xa3\xef\x05\x89\xc8\x36\x15\x5d\xe0\x7c\x3a\xc8\x98\x8f\ +\xe4\xad\xf4\x20\x0e\x0d\xc3\xe3\x46\x90\x65\x03\x39\x26\x4d\x03\ +\xb4\x0b\xed\x53\x9b\x68\xce\x9b\x3e\x54\xf9\x36\xb5\x84\x6c\x37\ +\x8b\x50\x14\x21\xab\xfe\xb4\xa7\xec\x28\x0b\x1b\x6a\xf3\xd9\xcc\ +\x81\x3a\x58\x4b\xce\x0f\x3e\xbe\x79\xb5\x8d\xf9\x97\xbf\x16\xbf\ +\xf1\x1f\xfe\x87\x31\x97\x61\x36\x37\xab\xf6\xca\x21\x0c\x1e\xe6\ +\xd8\xc4\x2f\x05\x9a\xad\x9b\xf8\xaf\x02\x54\x7b\xba\xcc\xc3\x72\ +\xc3\x57\x9c\x76\xe3\x49\xad\x7f\xfa\x2f\xfe\x71\x6c\x26\x1f\xc5\ +\xc9\xe9\x96\x6d\xb3\x6c\x0e\x85\xdc\x44\x6b\xe7\x54\xb6\x79\x7e\ +\x13\x57\xa4\x8b\xa7\x0e\x18\xdb\xea\xe3\x6a\x6b\xff\x5f\x99\xd3\ +\xa7\x20\x11\xc7\x04\x53\x7d\xd4\xc0\x39\x90\x37\x94\xb3\xbf\xbd\ +\x18\x2a\xd1\xc0\x16\x70\xa0\x2e\x51\xe5\x98\x4f\x87\x9a\x97\xf1\ +\x8d\xca\x7d\xad\xfe\xe9\xa7\x3e\x34\x50\x1c\x66\x93\x3a\xa8\x26\ +\xa5\x00\xad\xc3\x94\xa0\x39\xda\x6c\xaa\x79\x85\x78\x79\xba\xea\ +\x83\xcf\x0a\xc6\xd2\xdf\x6a\xbe\xc5\x90\xe8\xd7\xc9\xae\x26\x71\ +\xa5\xf9\xda\x63\xcd\x43\x1e\x3f\xdb\xf8\xb5\x68\x8f\x2e\xb7\xf1\ +\xd1\xe3\xbd\x5f\x7d\xa6\x29\x6d\xac\x38\xff\xba\x1f\x31\x91\x27\ +\xb9\xa6\xfd\x21\x10\x4d\x49\x82\x7d\xf3\x54\x08\x67\x20\xd4\x5e\ +\x7c\x14\x1d\x06\x14\xdd\x96\xf5\x61\xfa\x64\x1e\xb4\xb0\xc7\xaf\ +\x1a\x2f\x9c\x07\x3c\xda\xd0\x58\x71\x64\x0a\x9c\xbb\xb6\x49\x7a\ +\x0c\x18\x81\x87\x9e\xa1\xc0\x17\x5d\x08\x28\x81\xaf\x71\xe0\x3a\ +\x28\xee\xa4\xa2\xf1\x0c\x60\xa8\x76\x6b\x94\x8c\x24\x95\xca\xe0\ +\xfa\x40\x07\x66\x27\x70\xa2\x46\x25\x40\x98\x97\x96\xcd\x2f\x5e\ +\xb1\x33\xd2\x41\xa5\x6c\xca\x03\x51\x79\x6f\x6a\x88\xd0\x33\x89\ +\xd3\x50\xcd\x39\x30\x24\x5c\x8b\x8a\x0f\x59\x69\x2b\xe6\x63\x07\ +\x95\xa6\x8c\x1a\x39\x79\xe1\x17\x02\xf5\x04\x1e\x2a\xe7\xa1\xa0\ +\x52\x0e\x0d\x58\x97\xbe\xda\x12\x0d\x00\xdf\xc5\xb6\x9f\x22\x53\ +\x5a\x3a\x2e\x5f\x61\x95\xc9\xc9\x07\x90\x69\xf2\x1c\xc8\x24\x1c\ +\x32\x98\x67\x40\xd6\xf8\x64\xc4\x39\x4e\xfb\xc3\x6a\x3a\x05\x83\ +\x78\xa6\xaf\xe0\x2f\x07\xe2\x40\xa5\x4f\x41\xe9\xf6\x71\x0e\x4d\ +\x23\x59\xd0\x39\xb6\xa4\x04\x82\x73\x0f\x9c\xb2\x7c\xea\x0c\x49\ +\xd2\x0d\xf3\x14\x9a\xcf\x71\xcb\x9b\x9e\xb0\x37\xd3\x9a\xb5\xfc\ +\x34\xeb\x29\xef\xf3\xf6\xe6\x19\xba\x15\x18\xe6\xc8\x81\xf6\xf0\ +\xff\x0f\x6a\xdc\xe0\xc7\x28\xf0\x5b\x90\x1a\xc9\x65\x87\x3a\x4b\ +\xba\x61\x4c\xb7\x8e\xc5\x0f\x28\xcd\xf0\x7a\x0f\x06\x07\x90\x08\ +\xe9\x64\x6f\x19\x86\x84\xe7\x28\x67\x00\xe4\xd8\xc8\x94\x81\x21\ +\x2a\x37\xcd\xf6\x71\xb5\xde\xc4\xb3\x6b\x05\x9e\x5a\x5b\x6b\xcd\ +\xcd\x78\xd7\x7e\xa8\xa9\x34\x2e\x8f\x4c\xe5\x38\xa8\xf9\x94\xd6\ +\x5c\xd7\x1a\x73\xf9\x3f\xd5\x6b\x95\x6f\xc9\xff\x42\x32\x57\xac\ +\x12\x64\xb1\x7a\x2f\x6e\x82\x25\x55\x34\xfe\xa7\xf5\xf4\x64\x1a\ +\xb7\x6e\xcb\x4d\xea\x4e\xce\xb1\x99\xa5\x1a\x2b\xcd\x1b\x76\x32\ +\x0b\x1f\x6e\x48\x92\xe3\x24\x55\x33\x60\xd6\xfe\x8a\x8d\x67\x79\ +\x0d\x7b\x3e\x15\xf5\x21\xa3\x95\x06\xf3\xfc\x00\x84\xff\xc3\xe4\ +\xba\xf5\x59\xf0\x62\x49\xe7\x5c\x22\x0a\x44\x9f\x10\x0d\x09\xec\ +\x34\x37\xbf\x7c\x3a\x8f\xaf\xbf\xfb\x1f\xc4\x6f\xfc\xea\x6f\x75\ +\x29\xa8\xb3\x0e\x0e\x22\x47\xf8\x79\x81\x63\xab\x1e\xe1\x08\x2f\ +\x0f\x3c\x6d\x3d\xc2\x11\x8e\x70\x84\x9f\x45\xf8\xec\xe9\xe5\x8f\ +\x03\x6d\x3a\x51\x56\x26\xb3\xb8\xfb\xf6\x6b\x31\xbf\xfb\x20\x76\ +\x93\x29\xab\x10\x2f\x34\xac\x27\x9c\xbf\x2a\x63\xd6\x7d\x73\x12\ +\x9c\xe9\x73\xf2\x5e\xb4\x12\x12\x98\xb5\xda\x06\xa4\x25\x85\x53\ +\x94\xd0\x04\x37\xa7\x37\x44\x15\xcc\xe5\xc0\x0a\xc2\x91\x01\x6f\ +\x88\x1b\xdc\x8c\x37\x20\x4f\x39\x83\x98\xf9\xb1\x9f\x30\x48\x49\ +\x31\xe0\x71\x73\x48\xe5\xe4\xc6\xec\x58\x75\x70\xa3\xac\xa6\xf0\ +\x83\xc0\x13\x69\x0a\x6d\x43\x0d\x1e\x37\xee\xad\x8f\xdc\x97\x97\ +\xc4\x63\xdf\x4a\x23\xf0\x2b\x69\xd9\x96\xdc\xc5\x46\x2c\x80\x2e\ +\x32\x41\x0b\xea\xb6\x89\x66\x3e\x7e\x98\x4e\x2d\xd3\x49\x1a\x92\ +\xd6\xc1\x46\x29\x68\xa2\x21\xf8\xbe\x03\x98\xe0\x43\xd3\x53\x5b\ +\x69\x55\x99\x8b\x4f\xda\x8d\xff\x20\xd1\xd2\x56\x71\x16\x78\x14\ +\x71\x57\xbf\x08\x1f\xcd\x22\xa6\xb3\x6d\x4c\x36\xbc\xa6\x6e\x19\ +\xd3\xc7\x57\xb1\x7d\x78\x11\xbb\x87\xcf\x72\x53\xed\x7a\x1d\xbb\ +\xcb\x65\xec\x2e\x14\xae\x56\xb1\xbd\xbc\x76\xd8\x5d\x5c\xc5\xfe\ +\x6a\x19\xdb\x2b\xe9\x38\xac\x24\xe7\x69\xb6\x95\x9f\x68\xd3\x8a\ +\x30\xf6\x6b\xa5\xe5\xbd\xff\xfc\xf7\x9a\x37\x23\x72\x83\xc1\x9b\ +\x09\xde\x98\x68\x1b\x0e\xa2\xbd\x0a\xc6\xe7\x16\x28\x83\xf8\x55\ +\x16\x97\x55\xb4\xab\x02\x9c\xc4\x80\xf6\xb7\xe3\xf7\xc1\xcc\xa4\ +\x89\xb8\x5e\x4b\x06\x95\x86\xfd\xe9\xd3\x64\xfe\xa6\xe9\xd3\xc2\ +\xcf\xe5\x79\x23\x24\xaf\xfc\x86\x2e\xab\x6d\xc3\xc8\x4d\x83\xcc\ +\x36\x50\x35\x03\x22\x31\xc8\x99\x01\x69\xa3\xab\x07\x74\xbc\xf0\ +\xec\xfd\xb2\xac\xda\x18\x7d\x42\x65\x65\x70\x3a\xea\x14\x1d\x07\ +\xd2\x55\x5e\x76\x40\xf2\x2c\x5c\xda\x90\x3c\x37\x44\x9b\x8e\x25\ +\xa9\xdb\x7c\x85\xb6\x4e\xa5\x29\xbd\x2c\x1c\xe9\x88\x94\x1d\x93\ +\xa5\xd3\x82\x6f\x80\x36\x59\xe6\x63\x3f\x91\x99\x8f\x5e\xa2\xb4\ +\x41\x00\x25\xdd\xea\xc3\x75\x65\xba\x64\x07\x01\x21\x32\xb0\xfa\ +\x17\xa1\xea\x20\xef\xb6\xd0\xd7\xe0\xd1\x07\x85\xe9\x8b\xf4\x43\ +\xf5\xd5\xfd\x4a\x7d\x97\xf7\xb7\x2a\xec\x57\xd7\xe1\xc7\x32\xc4\ +\x0b\xf5\xe9\xe4\xd1\xbf\xaf\xfc\x5f\x62\x71\xad\x73\xc0\xba\x4a\ +\xb3\xce\xb0\xe3\xcf\x30\xd4\xcf\xfd\x64\x5b\xd9\xee\xcb\xa7\xac\ +\x35\x16\x31\x8c\x78\x28\xd1\x09\x4b\xdf\xcb\xd7\x1c\x09\x77\x6d\ +\xaf\xa8\x82\x6a\x31\xbb\x6a\x9e\xd8\x89\xcd\x20\x9a\xb2\x16\x4d\ +\xf9\x30\xde\x83\x79\x2d\xad\x6d\x55\x34\xc9\x02\x46\x31\x78\x3a\ +\xcf\xc6\xf8\x23\xdf\xb8\xfb\x6d\xa5\x89\xce\x51\x9e\xce\xe5\x89\ +\x8c\x9d\xc6\xd1\x95\xdc\xd5\x38\xb0\xdc\x2a\xec\xe2\xfa\xf1\x26\ +\x1e\xff\x60\x17\x0f\xbf\xbd\x89\x4f\xbf\xb5\x8b\x0f\xbf\xbf\x8a\ +\x67\x9f\x6e\x63\x73\x75\xe6\x1b\x37\xe4\x9b\x37\xb5\xc8\x21\xc1\ +\x59\x73\x03\x0b\xa2\x6e\x4c\xc3\xcc\x1b\xd8\x90\xc2\x4e\x43\x1d\ +\x15\xa7\xd2\xbb\x26\x39\x50\xaf\xd8\x37\x50\x7f\x05\x45\x74\x71\ +\x03\x36\x06\xd0\xa2\x95\x47\xd2\x1c\xd2\x4e\x67\xd5\x11\x1d\xf8\ +\x16\xae\x08\x44\x07\x83\xdc\x13\x88\xe2\x1f\xb4\xec\x9a\x52\x3e\ +\xbe\xf9\x44\xd0\x87\x2b\x95\x7f\x0c\x82\x8e\x35\x76\x71\x75\xbd\ +\x89\x8b\xdd\x28\x5e\xfd\xfa\xd7\x23\x16\x8b\xe0\x55\x4d\x34\xc7\ +\x21\x94\xbf\x47\xf8\xe9\x81\xdb\xaf\x42\x01\x24\x37\x87\x4f\x4e\ +\xe6\xf1\xd5\xb7\x7f\x23\xd6\xd7\xf3\x6a\xcf\x26\xcd\xbe\x5b\x0d\ +\xfe\x5c\xda\x06\x07\xad\x37\xd4\x51\x7f\x19\xde\x5c\x4c\x6a\x98\ +\xf2\x26\xf4\x96\xf0\xc3\x3f\x6e\xfa\x91\x20\x7b\x9f\x65\x92\xe4\ +\x9d\x4c\x84\xcf\xdd\xec\xab\x98\x9e\x4e\x74\xee\x3b\xf6\xa3\x81\ +\x9a\xc0\x14\xa7\x49\x3e\xcd\x1f\xb1\x6e\x4f\x44\x70\x5e\x28\x78\ +\x2e\xa2\x28\xff\x7b\xb6\xdc\x8e\xe3\x99\x86\xce\x87\x1a\x5a\x3f\ +\xf8\x74\x14\xdf\xfd\x70\x19\xdf\xf9\xf0\x32\x7e\xf8\x70\x19\x1f\ +\x3e\x5d\xc5\x7b\x0f\xb7\xf1\xc3\x8f\x23\x3e\x7d\xaa\xa1\x77\x4d\ +\x5a\xb9\xa6\xb1\x28\x21\x3d\x72\x7e\xdd\xa7\xc5\x0f\xc1\x55\xc4\ +\x18\x5c\x73\x3b\x34\xfa\xf2\xe0\x5b\xb3\x29\x50\x62\x3f\xad\xeb\ +\x8f\xa4\x88\xec\x3b\x3c\x05\x6e\x86\xab\x8e\xfc\xba\x3a\x7d\xa8\ +\x2e\x36\x34\x3d\xdf\x62\x3c\xb7\xae\xe2\xf5\x69\x71\x74\xcd\x57\ +\xe0\x29\x96\x8d\xfa\x14\xfd\xca\x1b\x0e\xc2\xf0\x3a\x3d\xcb\x34\ +\x2f\xb3\x9c\x3c\x36\xaa\x33\xc5\xc9\xc3\x7a\xa9\x9b\x9b\x0d\x69\ +\x93\x72\x64\xda\xe4\xe9\x60\xda\x69\xb8\x21\x6f\x1f\xb3\xa8\x1e\ +\x3f\xe1\xdb\x9e\xd2\x21\x87\xa5\x8f\xd3\x39\x92\xb8\xbf\x4e\x09\ +\xdb\x36\xa1\xb7\xcf\x07\xa3\xc9\x77\xcc\x7a\xc8\xb1\x61\x5a\x83\ +\x99\x29\xcb\x95\x16\x40\x0e\xb3\x74\xe1\xa7\x8d\x94\x75\xb6\x06\ +\x3a\x5d\x30\xb3\x8f\xa3\x6b\xdc\xf8\x07\xa1\x01\x7a\x46\x2e\x4f\ +\x82\x70\xa5\xed\x54\xdd\x31\x88\x48\xdf\x75\x50\xf1\x26\x6f\xfa\ +\x05\xe9\x67\xf6\xfc\x4c\x2a\xd9\xc0\x86\x91\xa1\xe2\x0a\xa4\xf1\ +\x39\x4f\xda\x2e\x10\x6d\x3a\x59\xbf\x49\x63\x7d\x30\x9f\xa0\xee\ +\xe1\x37\xba\xe2\x59\x7f\x15\x57\x70\xbb\x16\x0f\x69\xab\xdf\x94\ +\x65\x5c\x44\xca\x07\xb8\xe7\x35\x3b\x83\x38\x7d\xde\x3a\x19\xef\ +\x37\xcb\x72\x5e\xe5\xb8\xf0\xa6\xc3\xea\xe5\xea\xb7\xdb\xdd\xda\ +\xfd\x7b\x5b\xfd\xd8\xb4\xf2\x27\xad\xff\x7e\x80\x3c\xaa\x8c\xcd\ +\xb6\x18\x82\x1c\x87\x7c\x02\x57\xe0\x83\x9a\x77\x52\x7c\xbe\xe1\ +\xb2\xd2\x38\x01\x47\xd2\x43\x42\xa3\xd3\xec\x80\x38\x7f\x91\xa5\ +\xa6\xd3\xa6\xd8\x1a\xd6\x79\x01\x0c\xf9\x99\x8b\x42\x23\x3a\xc0\ +\x1e\x56\x69\x3d\xc6\xaa\x91\xff\x5f\x6d\x23\x46\xbe\xdd\x44\xe3\ +\x84\x02\x4f\x9b\x79\xea\x49\xdc\x7a\x63\xe9\x4d\x62\xa5\xc5\xd9\ +\x52\x65\xba\x5c\x8f\xe3\xc9\xd5\x3e\x1e\x5f\xec\xe2\xd9\xf5\xc8\ +\x9b\x4f\xcc\x89\xed\x5f\x95\xe5\x00\xf0\x1d\xd6\x30\x14\x30\xa7\ +\x9b\xcf\xb9\x46\x68\xd1\x27\xbe\xfb\x9c\xdb\x7d\xa0\xd4\x00\xd1\ +\x10\xdf\x80\xc3\x24\x8a\x54\xa6\xfe\x30\x8f\x7b\x01\xf8\xed\x2d\ +\xb6\x97\x72\xea\x27\xfb\xbd\x63\x15\x06\xd0\xf1\x1b\x88\x1e\xf2\ +\x32\x4b\x45\xdd\x7a\xfe\xb4\x9c\xd1\x60\x8c\xbe\xba\xdc\xc5\xd7\ +\xbe\xfa\xab\x1d\x33\xeb\x0c\x68\x89\x8f\x70\x84\x23\x1c\xe1\x08\ +\x9f\x07\xfd\xaa\xfd\x08\x47\x38\xc2\x11\xbe\x08\xa8\x79\xde\xcb\ +\x02\x4f\x0a\x93\xfc\x09\xa1\x52\x79\xb2\xa9\x30\x9e\xc6\xe2\xfc\ +\x34\x6e\xbf\xf5\xa5\xb8\x58\x31\x71\x87\x9f\x93\x4f\x7e\x4d\x2b\ +\xd2\xba\x79\xf3\x32\x69\xc0\xc8\xc2\x84\x5c\x1e\x08\xb3\xb0\xf4\ +\xe2\x32\x83\xd9\x15\x1c\x07\x86\xe9\x6a\xc1\x5a\x66\xc9\xa8\x70\ +\x91\x9d\x20\xa1\x8b\x76\x26\x92\xd3\xf8\x37\xd4\xfb\xbc\x64\xcc\ +\xf7\x5b\xa5\xd0\xdf\xb4\xa4\x8c\x66\xf8\x75\x5e\xf9\x04\x84\x70\ +\xdd\xbc\xe5\x90\xc9\x1d\xd1\x62\x85\xdb\x45\x43\xa8\xa5\xb1\xd2\ +\x27\x56\x06\xfc\xd7\x90\x90\x7f\x7d\x8c\x5d\x30\xbf\xce\x33\xb3\ +\xbf\xa9\xe5\x23\x49\x8a\x2e\x76\x09\x0a\x29\x73\x6e\xca\xb4\xfa\ +\xbb\x19\xbc\xe0\xab\xc5\xb6\x79\xcd\x46\xc9\xbb\x7b\x01\x05\x59\ +\x62\x89\x30\x69\x1d\xca\x97\xab\x46\x3f\x80\x23\x9a\xa7\x10\x7d\ +\x23\x8b\xff\x78\x9b\xaa\x54\x0b\xf9\x3c\x63\xb3\x40\xfc\xed\x2a\ +\x46\x8f\x2e\x63\xfb\xe9\xd3\xd8\x3c\xbd\xe4\x1f\xb0\x63\x7f\xb5\ +\x8e\xcd\xb5\xf0\x52\x0b\xe1\xd5\x26\xd6\xc2\xbb\xe5\x4a\xbc\x95\ +\xff\x57\x6d\x77\xcd\x26\xdb\x52\xf1\x65\x6c\xaf\xaf\x63\x2b\xde\ +\x56\xf2\xdd\x8a\x1b\xee\x0a\x2b\xfe\x3f\x89\x4d\xb5\xdc\x58\x4b\ +\xac\xbc\xfd\x04\x8f\x96\x9b\x6c\x3a\xc8\xa7\x7c\xf2\x43\x98\x0d\ +\x88\x76\xb7\xc7\xaf\x72\x2a\x5a\xa1\x95\xc5\x0b\x41\xe1\xec\x7f\ +\x19\xdc\x1f\xf5\xc9\x0d\xa1\x41\x80\x47\x9a\xa2\x0d\xa6\x0b\xa0\ +\x31\xa7\x43\x6b\x93\xd4\x23\x90\xa7\xf0\x80\xd7\xf2\xe9\x75\x2a\ +\x34\xbe\x70\x2e\x7a\x01\xc5\x07\x37\xa0\xba\x06\x33\x92\x8e\x6f\ +\x02\xf4\xc1\x02\x8a\xaa\x72\xf2\x9b\xd5\xd4\x57\x40\x36\x90\x77\ +\xb4\x03\xa8\xd2\x83\x4b\x3f\x6f\x44\x64\x9d\xb5\x9b\x65\xaa\x64\ +\x61\x6b\xa4\x0e\xf6\x33\xe2\x2f\x3e\x3b\x5a\x80\xa6\x55\x60\x72\ +\x30\x01\x60\xaf\x48\xa0\x7e\x69\x6c\xb0\x5e\x23\x93\xb6\x0f\xa6\ +\x9b\xac\x68\x53\xcd\x16\x07\xf8\x20\x30\x12\x10\x72\xa5\x47\xa5\ +\x93\x17\x6d\x70\x85\xe8\x5b\x82\xca\xab\xf5\x21\xca\xee\x73\xa8\ +\x8b\x67\xd0\x89\x60\xec\x57\x36\x6e\xe8\x93\xfd\x86\x98\x37\x81\ +\xe9\xc3\x0e\xea\xdf\x0e\xea\xdb\x57\x57\xea\xeb\xb9\x79\x4c\x9c\ +\x0d\xe4\x50\xbf\xdf\xab\xdf\xe7\xfb\xd0\x44\x3b\xbd\xd2\xb1\x79\ +\xcc\x46\x32\xfd\x5c\x7d\x9c\x1b\x4c\xfc\x29\xbd\x6f\x8c\xd2\xee\ +\x78\x3b\x66\x1b\xbe\xfa\x0b\xae\xd3\x02\x35\x86\x01\x46\x0c\x1c\ +\x0e\x44\x5a\x9d\x54\x30\x67\x08\xc4\x18\x05\x2a\xcd\x00\x88\xb5\ +\xd0\xc9\x84\xba\xb1\x92\xc0\xd8\xa6\x71\xcc\xff\xf9\xd8\xc6\x37\ +\x3f\xcd\x2a\xb7\x26\xf2\x55\xc1\xff\x9b\xb7\x95\x8e\xc6\x96\xf1\ +\x98\x17\x14\x6d\x62\xbc\x58\xc7\x64\xa1\x73\x75\x2e\x0f\xe4\xff\ +\x64\x34\x55\x31\x66\x1a\x6f\x37\xd2\xc7\xe7\xcc\xcf\x37\x55\xc8\ +\xdb\x21\xf3\xcf\x02\x0b\x8a\xcf\xe6\x99\x6f\xd8\x74\x3a\x29\xe7\ +\xa6\x53\xde\x44\x56\x44\xa1\xc7\xf0\x88\xa4\x3a\xe0\xf1\xaf\xe8\ +\xc6\x6b\xf9\x75\xb6\x0d\x89\x7d\xd4\x21\x71\x23\x2a\x83\x06\xad\ +\xc2\x75\x30\xe9\x30\x90\x0b\xdc\x3a\x4d\x56\x3c\xcc\x99\xa6\x62\ +\x5c\x96\x14\x72\x9d\xe0\x3a\xe4\x0d\x0a\x61\xf5\xc6\x58\xa8\xa2\ +\x3f\x56\x41\x9f\x6d\x46\x71\xf2\xe6\x83\xb8\x25\xed\x2d\xee\x74\ +\xfe\x36\x68\xd6\x8f\xf0\xd2\x61\x58\xd5\xad\x1f\x0c\xaa\x9b\x16\ +\xe3\x37\x39\xbf\xf0\xc6\x2f\xc7\xc7\x1f\x69\x0c\x58\x9b\xd9\x0d\ +\xd5\xa9\xaf\x76\x26\x18\x0e\xd3\x03\x5d\x74\xc0\x87\xcc\x7e\x53\ +\xfd\xf9\x66\x93\xbf\x10\x7a\x03\xee\xb6\x3e\x67\x89\x24\xef\xc5\ +\xf0\x62\x61\xc7\x2d\xc2\xfe\x30\x6e\x16\x83\xfe\xca\xeb\x0c\xfb\ +\xb9\x53\x0f\xbd\x17\x95\x2e\x49\x13\x94\x87\x27\x30\x98\x77\xf0\ +\x43\x1e\x5e\xe3\xc8\x3c\x04\xcc\x0d\x65\x36\xdc\x57\xea\xef\x57\ +\x04\x75\xf6\x67\xe2\x3f\xbc\xda\xc5\x07\x8f\xd6\xf1\xc3\x8f\xb7\ +\xf1\x83\x0f\x09\xa3\xf8\xf8\xe1\x3e\x9e\x5c\x6d\xfd\x9a\x6d\xf2\ +\xf7\x38\xe4\x1f\x3e\x0d\x9d\x71\x86\x89\x0d\xe0\x36\xfa\x08\x44\ +\x38\x66\x76\xca\x12\xd0\x18\xd2\x25\x36\xf8\xac\xce\xb6\x51\x96\ +\xc6\x8c\xe3\xc2\x94\x2b\xf5\x99\x67\xd1\x6e\xe2\x29\xe6\xcd\x2d\ +\x9d\xc7\xa9\x07\x1f\x6e\x5a\xc2\x56\x6e\x3c\x70\xc6\x63\xb0\xae\ +\x43\x6c\x3c\xb0\x71\xa6\x7a\x82\xde\x50\x5f\x6c\x38\xf0\x91\x7c\ +\x3b\x62\x53\x4d\xd7\x25\x6f\x58\xa0\x47\xa8\x8d\x08\xae\xeb\xd0\ +\xd8\x27\x3f\xd1\xd8\xce\x7c\xc9\x33\xe9\xf4\x31\xb1\xf3\x6d\x72\ +\xe3\xa6\xa3\xa0\xf4\x22\x9c\xd2\x73\x27\x82\xd3\x94\xae\xaf\xf7\ +\x7d\xf0\x8d\xf1\x34\x81\x4a\xa5\x21\xc2\x7c\x23\x75\x86\x36\xfc\ +\xa3\x9a\x3a\x61\x52\x6e\x2a\x65\x80\x11\x07\xc9\x8c\x93\x36\x6e\ +\x36\x8a\xce\xb2\x28\x6a\x28\xbe\x65\xa0\x86\x5b\x20\x5e\x11\xe7\ +\xab\xf4\x36\x5b\x3c\x5f\xab\x92\x4e\x19\xb8\x17\x67\x38\x88\x28\ +\x08\xfa\x93\xdf\x90\xb1\x8a\x5b\x5f\x50\xdd\xae\x49\x93\xcc\x3c\ +\x8c\xad\x97\x65\xcc\x3a\xe9\xb1\x79\xae\x0b\xc9\x89\x3f\x17\xd0\ +\x1b\x04\xda\x1f\x2c\x7d\x8e\xcd\x96\x0e\x7d\x18\xf0\x0f\xe5\x4e\ +\x51\xfc\x92\x61\xa5\xe4\xf6\xc7\xbc\xd4\xf1\x66\xb2\xfb\x5f\xf5\ +\x41\xfa\xae\xfa\xa8\xe7\x3b\x0a\x2d\xee\xcd\x34\x36\xd1\x6a\x23\ +\x2d\xfb\xb7\xce\x67\xcd\x93\xd6\x9a\x1f\xad\x35\x4f\x42\x9e\x1b\ +\xc6\xf4\x1b\x0d\x0e\xf4\x43\xe5\x43\xbd\xd0\xa7\xda\xa9\xae\x51\ +\x2e\xc7\xbb\xa2\xd9\x3c\x51\x92\xce\x07\xff\x60\x8f\x7a\x45\x56\ +\x8a\xfc\xa7\x76\x7b\xa3\x81\xf9\xdd\xb9\x0b\x34\x2c\x80\xaf\xd0\ +\x8d\x1a\xd6\x4b\x8d\xa6\xd5\xe8\x2e\x28\x8f\x3c\x53\x5a\x3a\x05\ +\xf3\xb2\x45\x79\x7d\x25\x6b\xae\xb5\x18\x3c\x45\xb7\xd6\xdc\x33\ +\x37\xde\xa9\x1f\xd5\xae\xf8\xfc\x95\x00\xa5\x64\x19\xe4\x8d\x37\ +\xeb\x6b\x6c\x14\xe3\x9a\x27\x76\xfd\x63\x04\x09\x30\xcd\x01\xe3\ +\x02\xda\xa1\x01\x39\x0f\x31\x80\x1c\xfd\xf1\x9e\xa7\xe1\x25\x63\ +\xfc\x16\x50\xb5\x98\x33\x0c\xca\x78\x13\xdc\xb5\x3f\x03\xac\x5f\ +\x89\xa8\x66\x0e\x9e\x33\x26\xeb\x10\x18\xab\x05\xee\x37\x7c\x94\ +\x79\x0b\xe6\x83\x3e\x2b\x2f\x84\xf9\xcd\x28\x19\x98\x57\xb6\x92\ +\x5d\xb6\x54\x5e\x5d\x7b\x37\xfc\x81\xdd\xfe\x5e\xbc\xfb\xf6\x97\ +\x52\x28\xe8\x35\x8f\x70\x84\x23\x1c\xe1\x08\x3f\x0e\xb4\x95\xcc\ +\x11\x8e\x70\x84\x23\x7c\x71\xf0\x92\xe7\x6b\x2f\x9c\x98\xfe\xc4\ +\x30\x8a\xb3\x93\xd3\xb8\xf5\xee\x5b\xc1\x43\x43\xbb\x4d\x4d\xfa\ +\x73\xee\xe9\x1b\x24\x9e\x02\xf3\xf5\xac\xb8\x13\x39\x70\xf0\x44\ +\xb4\x22\x35\x8f\x95\x21\xe2\x40\x9b\xd2\xa6\x20\x27\xc9\x8e\x25\ +\xd4\x64\xbd\x34\x0c\x6d\xf2\x9d\x79\x36\x5e\xaf\x57\xee\x38\x98\ +\xd1\x74\x12\x1d\x42\x67\x94\xc0\x84\x3e\x71\x2e\x23\x1c\x51\x19\ +\x75\x24\xf0\xdf\x1c\x53\x25\xa9\x9b\x42\x03\xd3\x06\x9b\xd2\xc2\ +\xc3\x41\x80\x2d\x2f\x96\x92\xc8\x10\xbc\x8b\x9d\xd7\x3a\xc9\xa0\ +\x6f\x60\x1d\x06\x2c\xf2\x51\x24\xb1\x43\x01\xec\x44\x86\xa6\x91\ +\xb4\x00\x07\x5a\x79\x0a\x1a\xcb\x75\xde\xc9\x32\xc2\xc7\x25\x6d\ +\x7c\x29\x41\x13\xb8\x99\xe3\x57\xaa\x48\xa3\xff\xd5\xa7\x16\x65\ +\x63\xe1\x89\x3a\xc2\x64\xeb\x1b\x83\xfb\xd1\x3a\x46\x5a\xe9\xed\ +\x37\xab\x88\xcb\xab\xd8\x5c\x2e\x63\xc5\x66\xd9\xb5\x16\xb8\x2b\ +\x2d\x7a\xd9\x04\x5b\xad\x63\xb3\x81\xd6\x02\x70\x05\x7f\xe3\xcd\ +\x82\x1d\x9b\x70\xa2\xbd\x61\x56\x1b\x6d\xde\x78\xeb\x36\x23\x88\ +\x0b\xf3\xa4\x1a\x7a\x6c\x30\xd4\x93\x3b\xbc\x2a\xb2\x6d\xa4\xf5\ +\x0b\xe1\x5c\x9c\xfb\xb5\x79\x2c\x20\xb9\xa1\xe1\xe0\x65\xa9\xca\ +\x50\xab\xc0\xae\x32\x28\x57\xd1\xfa\x8e\xda\x0d\x80\x0a\xa9\x0b\ +\x2a\x3d\x7d\x93\x57\x71\x07\xa0\xc5\xb2\x53\x67\x5a\x93\x82\x92\ +\xc1\x4a\xa5\x2e\x24\x4f\xf2\x0a\xc5\x70\x0a\x3e\x28\xb5\xf6\xa8\ +\x68\xe9\xb4\xf4\x10\x0d\xd2\x86\xd3\x59\x06\xab\xd1\x44\x12\x97\ +\x46\x77\xcc\x65\xbb\x95\xcc\xb3\x0e\xfa\xd4\x67\xd1\xdd\x8d\x91\ +\x0a\xdd\x93\x5f\x1d\x16\x32\x55\xf1\x8c\x28\x88\x43\xc7\x2c\x56\ +\xc7\x73\xbc\x98\xdc\x1c\x33\xbf\x82\x51\xe6\xd3\xe8\x84\x54\xc8\ +\x78\x62\xd3\xe8\x11\xa8\x7a\x44\x70\xc9\xa3\x93\x15\xbf\xca\xd0\ +\xf4\x93\x7e\x9e\x77\x10\x77\x1d\x54\xd9\x5b\x5f\x22\xbe\x55\x4b\ +\x4b\xe6\xd7\x95\xd2\x1f\xeb\x89\x49\x6f\x80\xd1\x37\xd7\xea\xc3\ +\xde\x64\x53\x58\xd1\x8f\xd9\x24\xae\x8d\x35\x9e\x4a\x63\x13\xed\ +\x4a\xf4\xe5\x65\xec\x9e\x29\x5c\x5c\xf5\x81\x4d\x37\xf5\xf7\xed\ +\x5a\x3a\x3a\xa7\x78\xf5\xcc\x6e\xaf\xb0\x93\x6d\x07\xf9\x40\x5f\ +\xf6\x4d\x45\xf6\xa6\x34\x06\x4c\xc6\x7e\x72\xad\x3d\xc9\x08\x40\ +\x39\x26\x9d\x36\x46\x64\x44\x81\x19\xae\x99\x1c\x06\xc1\x8d\xa5\ +\x90\xdf\x1c\x8f\x5e\x30\x0e\x99\xaa\xb1\xaa\x17\x71\xe0\x69\x5b\ +\x3e\xfc\x8a\x59\x47\x7e\x28\x30\xe6\x35\xb0\x44\xc7\xb6\x67\x5c\ +\x4f\xae\xe5\x0d\x2a\x09\xb7\xd2\xf7\x0d\x13\xca\xa5\xf2\x4d\x35\ +\xbe\x68\x5c\xc9\xfa\xce\xdc\x81\xfd\x58\xe5\xf7\x09\xa1\x88\x30\ +\x2e\x64\xc0\x36\xbc\x1c\x6b\x5b\xf0\xd9\x08\xbf\x3d\x75\x4c\x7b\ +\xba\xfe\x04\x6e\x6b\x88\x43\xb0\x99\x24\x13\x2a\xbb\x84\xde\x17\ +\xe3\xa6\xec\xcc\x3b\x74\x03\x64\x20\xbf\x09\x10\xd5\xbf\x7a\x66\ +\xd9\xeb\xa0\x97\xa5\x8f\x9c\x73\x94\x91\x08\x75\x98\xda\x3c\x19\ +\xce\xff\x54\xd1\x3f\x11\x71\x03\xed\x3d\xf5\x2d\x76\x31\x7f\xf9\ +\x37\x7f\xdb\x3a\xd6\x2c\x5b\x1d\xbc\xd0\xcf\x97\x00\xd8\xfd\x69\ +\xd9\xfe\x59\x03\xea\xa1\xd5\x7b\xab\x17\xc5\xab\x05\xe3\x97\xbe\ +\xf6\xab\xb1\x18\xdf\x8e\x15\x63\xc6\x4e\xfd\x95\x36\xb4\x12\xc0\ +\x98\x53\xe4\x8b\xe0\x86\xcc\xba\x65\x1b\x3a\x37\x8e\x6f\x28\x0d\ +\xa0\x97\x64\x7e\x2d\xee\xf3\xd3\x5b\xb4\x3f\x02\x6e\x28\x54\xd1\ +\x3a\x68\x34\xe3\x67\xeb\xab\x9c\xa3\xbc\xe0\x60\xc2\x0e\xbb\x7c\ +\xf3\x59\x08\xbe\xe9\x67\x45\x41\x0e\x3a\xff\x5d\x26\x8d\xbb\xdb\ +\xcd\x3e\x56\xab\xfc\x2f\xb6\x95\x4e\x6e\x5e\x77\xb6\xd4\x7c\xf4\ +\x62\x35\x8a\xa7\xd7\x11\xcf\xae\xf6\xf1\xec\x72\x17\x4f\x2e\xf9\ +\xbf\xa1\x7d\x3c\x7c\xb4\x8f\x4f\x1e\xf2\x1f\x6a\x2b\xbf\xde\x91\ +\x1f\x20\x78\x23\xcd\x96\xe5\x57\x8d\x21\x1d\x54\xde\x1a\x3c\xc8\ +\xb8\x22\x09\x1e\xaa\x4c\x70\xe8\x5b\xaa\x2b\x3d\x27\x20\xbe\x66\ +\xcc\x90\x34\x3f\x3a\xd3\x58\x84\x98\x0f\x86\xb8\x79\x2f\xfb\xb4\ +\x13\x97\x10\x64\xbe\xe5\x5f\xf5\xc1\xc7\x9b\x66\x08\x9c\xc6\x1c\ +\x12\x29\x0b\xf1\x64\x42\xd2\xac\x13\x97\x47\xd7\xa2\x8a\xf3\x34\ +\x1f\x4f\xf5\x68\xb6\x95\x9b\x10\xca\xc0\x1b\x13\x9a\x1b\xf9\xc7\ +\x1f\xfc\x10\xaa\x74\xbd\xa9\x66\x7e\xc9\xb8\xbe\xec\x15\xf8\x90\ +\x3f\x56\x95\xd6\x79\x57\x70\x7b\xd9\xcf\xa4\xc1\x9d\x8f\x04\xf4\ +\x90\xc1\x2e\x7d\x3e\x2e\x74\xeb\x97\x85\x4d\x1b\xd0\x1b\xd8\x4e\ +\x13\xa6\xb1\x4d\xe0\x83\x9e\xe5\xa5\x67\x99\xc7\xc4\x8c\xfb\x33\ +\x48\xe3\xa6\x91\xdc\x75\x06\xb8\xee\x14\xd4\x0f\xcc\x2f\x3d\x7f\ +\x3a\xbb\xa9\xda\xe9\xde\x0c\xd6\x4d\x95\x96\x8f\xaf\x29\xb8\xe6\ +\x5f\x6d\x64\x1c\x57\x53\xac\x03\xb8\x74\x93\x82\x57\xfc\xce\x66\ +\xe2\x3e\x80\x84\x6f\xca\xb1\xcd\x97\xfa\x32\x5d\x7c\x33\x33\x8d\ +\x9f\xd2\xee\xfa\x39\x69\xab\x1d\x2a\x24\xbf\xd5\xf9\xa1\x8c\xb8\ +\xe5\x4d\xb7\xf2\xb0\xcc\x1f\xe9\xf3\x41\x36\x0c\xc5\x4b\xfe\xd0\ +\xa6\x68\xea\xa4\xd1\x5d\xa0\xaf\xa9\x6f\xd1\x37\xbd\x31\x44\x50\ +\x7f\x34\x8f\xfe\x59\xfd\x56\xb2\xb6\xb1\xd6\x6d\xb0\xa9\x9f\x7a\ +\xb3\x78\xb7\x8e\xb5\xf0\x6a\xb3\xd4\x38\xb0\x52\x58\xea\x7c\xd2\ +\xdc\x89\xbe\xcc\x46\xb2\x1b\x81\xf1\x95\xff\xae\xdd\xa8\x2a\x19\ +\x63\x05\x3e\xd8\x4d\xd9\x97\x5f\xfa\x78\xb3\x89\x31\x02\xf7\x91\ +\x55\x60\x4d\x00\xe1\x66\x80\xe8\x04\x19\x37\xdb\x90\x46\x9b\x38\ +\xe3\x5c\xab\x87\x63\xcc\x70\xdc\x68\x90\x9c\xd4\x4e\xe8\x6d\x24\ +\xb4\x78\xd6\x0b\x4d\x92\x18\x5f\xa1\xbd\x61\x2e\x0d\xb0\xeb\x59\ +\x1f\xcb\x65\xd1\x73\x21\xe1\xd4\xaf\xf2\x59\x46\xe0\xd8\x43\xc6\ +\x1a\xb7\x64\x42\xf6\x6d\xb2\x8f\xf9\x42\x73\x39\xd6\xad\xd8\xe5\ +\x9a\xd5\xe9\x26\x60\xb7\x31\x86\x65\xb9\x09\x4d\x06\x64\xb9\xeb\ +\xe8\x39\xac\xd9\x1d\xb4\xf4\xee\x33\xa5\x07\xb3\xd5\x85\x7d\x28\ +\xa5\x2e\x2f\x13\x5d\xac\xcb\x10\x94\x5c\xca\x50\xa0\xc4\xf4\x8b\ +\xb4\x8e\x94\xb0\x8b\xd5\xe5\x79\xdc\x39\x7d\x2b\xce\x75\xbd\xa2\ +\x0b\xd8\x2f\x89\x06\x56\x8f\x70\x84\x23\x1c\xe1\x08\x3f\x02\x06\ +\xa3\xed\x11\x8e\x70\x84\x23\xfc\xec\x41\xcd\x21\xff\x0c\x70\x23\ +\x25\x33\xc8\xf1\x24\x5e\xfb\xd2\x3b\x31\x99\xf3\x0a\x2e\x56\x21\ +\x4c\xd0\x6b\x7a\xcb\x4c\x33\x09\x4f\x3a\x6f\xa4\x16\x1c\x4e\x41\ +\x73\xf1\xc9\x24\x98\xd9\x69\x4e\x86\x6b\xcd\x98\x60\x3a\x65\x09\ +\xc2\x07\x46\x89\x1f\x2e\x4c\x3c\xd9\x35\x51\x18\x42\x5f\x9b\x82\ +\xd7\x4c\x75\xf2\x04\x26\xe3\x3e\x56\x7e\x7e\x3a\x8c\xcd\xb2\x76\ +\x05\x68\xe9\x04\x4c\xf6\xfd\x7a\xad\xb9\xa6\xdd\xec\x89\xc1\x73\ +\x81\x31\x3a\x30\xdc\x48\xf1\xc9\xdb\xf9\xb7\xe0\x85\x3c\x98\xb8\ +\xea\x4f\x34\xeb\x93\x66\xc6\xa6\x5a\xa6\xa5\xda\x82\xc1\x06\x8b\ +\x86\x5b\x74\x27\x6f\x30\xe0\x77\xa1\xab\x64\x85\x46\x76\x90\x3c\ +\xaa\x81\x76\x75\x7d\xa8\x8d\x72\xc1\xa2\xa5\x86\x6f\xde\xef\x62\ +\xa7\x45\xd5\x6e\x2e\xbf\x17\x11\x93\xc5\x58\xf5\xb0\x8c\x29\x0b\ +\x9d\x8d\x16\xb8\x4b\x2d\x66\x79\xad\xe3\xd5\x2a\x46\xcb\x75\x8c\ +\x57\x5a\xe2\x55\xe0\x3f\xf6\xbc\x01\xc6\xcd\x9b\xad\x16\xba\xa2\ +\x79\xca\x2c\x37\x1d\x72\xa3\x2c\xc0\xde\x6c\x5b\x7b\x53\x8d\x0d\ +\x36\xff\xf7\x14\x37\x1c\x6b\x83\xc2\x4f\xef\xd4\x86\x5a\x6e\x62\ +\x80\xc9\x1f\xdb\x45\x13\x58\x50\x6b\xe1\x5d\x3f\x3b\x75\xa0\xcf\ +\xe5\x2d\x76\xe2\x59\xde\xc4\xd9\x07\x13\x13\x4f\x7d\xc7\xf9\x40\ +\x57\xe5\xb4\x0f\xd0\x57\x67\xc9\xc0\x03\xb9\x29\x8b\x52\xee\x20\ +\x5e\x3e\x4d\x94\xf4\x41\x3e\x8e\xfb\x9b\x50\x2a\x87\x8c\x06\xa5\ +\x6f\xf2\x40\xa9\xc8\x3e\xde\xf4\xd2\x3f\x08\x47\x0a\x27\xbf\xf9\ +\x9e\xaa\xc4\x55\x5f\xd6\xa9\x20\x9e\x17\x9b\xfa\xe2\xbb\x3f\xc9\ +\xb6\x1e\x1f\x47\x00\x93\x8d\x97\xb4\x99\xc3\x74\x4d\xe6\xb6\x10\ +\x52\x70\x1f\x46\x07\x85\xd2\xe9\xfd\xca\x74\x7d\xb4\x22\xf0\x4b\ +\xcf\x81\x1b\x0a\x6e\xae\x26\xbf\x59\xbf\x85\x2b\x34\x3b\xe0\xfc\ +\x95\x7c\xe3\x57\xf9\xd1\x03\xfb\x46\x45\x06\x68\xfa\x95\x5f\x33\ +\xaa\x3e\x47\x7f\xa6\xcf\xb1\x89\xeb\x1b\x43\xd5\x9f\xbd\x49\x4c\ +\x5f\x66\x53\x6d\xbd\xe2\x0f\x2c\xdc\xaf\x1d\xd8\x70\xf6\xb9\xc2\ +\xa6\x9a\x82\x37\xd3\xea\x35\xa8\x6c\xb2\x29\x6c\x57\x4b\x99\xbf\ +\x56\x11\x74\x6e\x28\xec\x46\x3a\x17\x9a\x0f\xf8\xa4\x71\x63\xaf\ +\xf3\x91\x9b\xc4\xdc\x54\xe5\x49\x35\x6e\x9e\xb4\x5f\x10\x03\xbe\ +\x41\x91\x35\x3b\xc0\x1c\x4a\xcf\xe3\x50\x63\x02\x22\x5c\xde\x62\ +\xfa\xdb\x09\x05\xc5\x1f\x50\x29\x57\x60\x3c\x93\xc1\xbc\x29\x9f\ +\xaf\xb1\xcd\xf1\x0c\x91\x68\xf9\xc9\xad\xfa\xbc\x69\xd2\xff\x48\ +\x01\xdc\x05\xe9\x4f\x64\xc7\x7a\xe8\xf8\x89\x16\x1b\x48\xfb\x7e\ +\xdd\x10\xf9\x08\x55\xb6\x04\x68\x8f\xc5\x02\xf7\x54\x0c\x11\x57\ +\x62\xa5\x34\x77\xaa\xe6\x52\x75\xb9\xc8\xbe\xfe\x58\x5f\xda\x94\ +\x37\x95\x12\xa0\x87\xf1\x34\xfb\x99\x90\xd7\x80\xc4\xe9\x99\x60\ +\x68\xc3\x74\x45\x1a\x5f\x4d\x98\x7d\xed\x06\x88\x95\xfd\x0e\x83\ +\x29\xc7\xa2\x5f\x05\x5c\xf5\x42\xb9\xf8\xf0\xf5\x8f\x59\xc8\x57\ +\x7d\x62\xa3\x38\xe3\xe0\xa5\xfa\xd7\xe4\xec\x24\xee\xbf\xf5\x25\ +\xa7\xb5\xbe\x89\x01\x0c\xb3\x36\x4d\xc6\x8e\x1d\xe1\xcf\x0b\xc3\ +\x7a\x6c\xf5\x6e\x9e\x22\xd5\x76\x9a\x4e\xc5\xad\xf9\x6b\x71\x32\ +\x3b\x55\x5f\x9c\x56\x1b\x4a\x0d\xbd\x16\x40\x62\x14\x99\xd0\x22\ +\xc3\xf6\x6c\xba\x0e\x3a\xea\xeb\x9b\xc3\x86\x3e\x7d\xc3\x06\x77\ +\x88\x66\x24\xb1\x3d\xf3\x79\x98\x7e\xfe\xa4\xf0\xa2\x14\xad\x8b\ +\x53\x3e\x3e\xfc\x0f\xcf\x74\x2a\x9f\xe8\xcf\x03\xdf\x80\x03\xba\ +\x22\x89\x73\x2c\xd6\xa5\xde\x9b\x4f\x6c\xa2\xe5\x93\x17\x11\xd7\ +\xea\xf4\x17\xab\x71\x3c\x5b\x8e\xe3\x62\x39\x8a\x27\x97\xfb\x78\ +\xf4\x28\x14\x76\x71\xa1\x31\xf6\x52\xf3\x89\xcd\x5e\xe3\x6d\xcb\ +\x8d\x6f\x4d\xc8\xea\xf4\x4a\xbe\x43\x03\xd1\x08\x6f\x16\xa8\xa9\ +\xc0\xef\xea\xd7\x91\x24\x1b\x0b\x30\xdd\xc6\x03\xe5\x50\x99\xe5\ +\xa6\x99\x38\x8c\x3f\x8c\xe5\xfa\x50\x47\xf0\x86\x73\x02\x4b\x94\ +\x34\x7f\xd0\x81\x16\xd7\x27\xd1\xe2\x65\xd3\x98\x93\x98\x73\xdf\ +\x4f\xe5\xac\x62\xb9\x5d\xab\x6e\x56\x2e\x33\xf1\x8d\x37\x1c\x98\ +\x3b\xe9\xfa\xc1\x66\x84\x3e\x3c\xbd\xa3\xa3\x6c\xe9\xba\xe5\xf4\ +\x39\x57\x62\x83\xc3\x79\xc8\xa1\xdc\x5c\xe3\x3a\x93\x32\x7c\x4a\ +\x3f\xf0\xa1\xb0\x79\x2d\xa4\x4e\x06\x5b\x95\x6f\xca\x83\x72\x5a\ +\x57\x47\xf8\xd6\x6d\xf2\xac\x3d\xf4\x75\x50\xc7\xf3\xa0\x98\x3a\ +\x6c\xbe\x59\x17\x49\xc9\x9d\x3e\x6d\x34\x3a\x2b\x4f\x62\x0c\xb9\ +\x8e\x15\x74\x2d\xcc\x1f\x82\x21\x2b\xb9\x71\x1f\xd2\x8e\x68\xb7\ +\xf3\x61\xf0\x5c\xf7\x66\xda\x24\x14\x04\xd2\x61\xb3\xaa\xb7\x5f\ +\xfc\x26\xef\x74\xb3\x3c\x8d\x46\xbf\xd5\x1b\x69\x9c\x94\xfc\xf8\ +\xb4\xa4\x07\x90\xb2\xfc\x51\x58\xf3\x29\xb1\x7d\x77\x22\x42\xcb\ +\x43\xa1\x95\x1d\xfb\x66\xa7\x6e\xa7\x4f\xa8\xf4\x9e\xef\xf8\x8b\ +\x6f\xe9\x13\xa1\xe9\xb7\x8f\xf5\x0b\x37\x9d\xd4\x6b\x65\x2a\x1a\ +\xbe\xcb\x47\x3c\xf5\xf9\x28\xa2\x00\x7f\x18\x98\x2b\x65\x3a\xf7\ +\x4b\xc7\x33\x78\xd3\x8c\xcd\x60\xf3\x39\x7f\x8b\x66\x7b\x4c\xfa\ +\xde\x3c\x52\x1c\x3e\x9b\x69\x6b\xf5\xf5\x35\xb4\xfa\xfd\x52\xf3\ +\xac\xeb\x35\x9b\x6a\x2b\x3f\xb5\xc6\xff\xd0\xf2\xdf\xde\xcc\x9f\ +\x48\x33\x92\xde\x58\x96\xf2\x9a\x2f\x3f\x9a\x97\x2a\x3e\xd7\xd8\ +\x9d\xe6\x0b\xf9\xc4\xbf\xe2\x92\x65\xd0\x78\x8d\xba\x22\x2d\xee\ +\x3e\x60\x1b\xc9\x49\x3b\x0a\x1c\x80\x86\x0f\x00\xdd\xc4\xed\xd3\ +\xf3\x04\x45\x0e\x38\x3d\x0c\xec\x65\x5e\x39\x8e\xd0\xc4\x19\xb2\ +\x3d\x69\x52\x95\x56\xd8\x35\xef\x90\xcd\x9c\xe3\x2d\x32\x78\x2e\ +\x60\x52\x05\xa2\x07\xbc\xde\x07\xfa\xba\xe2\xaa\x00\xc6\xee\xf9\ +\x7c\x2c\xcc\xe2\x97\xf5\x7f\x69\x09\x3b\xd5\xd0\x9c\x80\x68\x2b\ +\xe5\x21\xbc\xa0\x84\xe4\x21\xc4\xb5\xa7\xab\x43\x41\xda\xc8\xb2\ +\x18\x70\x86\xb2\x89\xe1\x72\x55\x39\xfb\xcc\x3b\x4d\x53\x5d\x6c\ +\x20\x4e\x6f\x33\xb4\x8f\xaf\x97\xb6\x0d\xdb\x1c\xf5\x9f\x49\xbc\ +\x79\xf7\x57\x62\x3e\x39\x49\x9f\x08\x47\x38\xc2\x11\x8e\x70\x84\ +\x9f\x08\x58\x73\x1f\xe1\x08\x47\x38\xc2\x11\x98\x6b\x4e\x67\xf1\ +\xfa\x57\xdf\x8d\xd9\xec\x9e\x17\x34\x4c\x40\x99\x2a\x33\xa9\x66\ +\x22\xdc\x6e\x92\x12\x6e\x82\xe7\xa1\x3a\x78\x4e\x5a\x07\x4f\x84\ +\xbd\x48\x4c\x68\x3a\xd6\xb3\x1c\xda\x5c\x01\x13\xdd\xde\xae\xb3\ +\xe8\x02\x79\xc2\x2d\x50\x92\x61\x14\xf0\x3a\xe1\x06\xd7\x31\x1d\ +\x8c\x71\x23\x33\xd4\xc8\x2f\x4e\xdd\x50\x72\x96\xc5\x46\x93\xc9\ +\xfe\x78\x3a\x8a\xe9\x8c\x9b\x42\x13\xee\xfc\x96\x01\xc0\x4a\x3d\ +\x74\x7c\x01\x34\xaa\x8d\xc7\x62\x4c\xfa\x66\xc3\x37\x8f\x83\x40\ +\x66\xa8\x51\xcb\x1a\x33\x23\x0d\xf9\x68\x59\xf9\x65\xb8\x91\x3d\ +\x60\x49\xb7\x48\x52\x7e\xd8\xae\xd0\x78\x14\x9b\xe0\x05\x99\x08\ +\x02\xb7\x59\xbc\x28\xb3\x73\xd2\xd1\xd5\x90\x9b\xf6\x7b\x95\x9d\ +\x57\xb2\x8d\xb4\xa8\x9a\x9e\x2a\x9c\x6c\xb5\xd8\xc0\xce\x3a\xd8\ +\xcc\xda\xb0\x71\x70\xbd\x8a\x3d\x1b\x04\x4b\x2d\x60\xd7\x2d\xe4\ +\x06\xda\x96\x27\xc6\x58\xe4\x0a\x73\xe3\x97\x0d\xb6\xee\xd5\x8d\ +\x6c\x4c\xb0\x39\x46\x60\x13\x8d\x8d\x08\x6f\x48\x88\xef\xff\xa4\ +\x52\x9c\xcd\xb7\x6e\x13\xad\xee\xae\xd5\x62\x99\x0d\x34\x3f\x95\ +\xc6\xe6\x03\xd8\x34\x58\x79\x75\x37\x87\x14\xfc\x0b\x54\x61\x57\ +\x82\xf8\xae\x00\x91\x1c\x58\x60\x2b\xde\x16\x69\x3e\x22\x87\x2e\ +\x9e\xe3\x16\x12\xef\x3f\x66\x82\xdc\xa5\x7b\x9d\x2e\xbd\x79\xc9\ +\xef\xd2\x74\xb2\x3a\x94\xac\xa5\xf3\xc2\xcf\x3a\x16\x64\xe8\x89\ +\x03\xb2\xa7\x07\xcc\xb2\xd3\xf3\x1b\xce\xbe\x80\x2c\xcb\x95\x3c\ +\x6e\x7e\xc1\x4b\x59\x06\x68\xfa\x11\xd1\xe4\x95\x3e\x76\x93\x81\ +\xa4\x27\x3b\x7b\x0d\x92\xce\x7a\x6d\xd1\x26\x2f\xdc\x78\x4e\x3b\ +\xa0\xcb\x16\xe9\x52\x92\xfc\xb6\x01\x92\x36\x93\x67\x46\x56\xbe\ +\x48\xda\x3a\x65\x70\xfd\x04\x1c\xb2\x81\xfe\x41\xba\x01\xcd\x42\ +\xda\xfd\xc3\x3c\x61\xea\xa4\xf5\x1d\xc7\xab\x9f\xd1\xff\xb6\xf4\ +\x7b\xe2\xf4\x67\xf5\x73\xf8\xf4\x4d\x36\x7d\xdb\xc6\x2f\xaf\x6e\ +\xe4\x29\x4b\xf5\xdf\x0d\x34\xaf\x31\x25\xe8\x3c\xf1\x13\x6b\x60\ +\x6f\xaa\xb1\xc1\xc6\x2b\x21\xf9\x3f\x41\x5e\x87\xca\x93\x6a\x8a\ +\xfb\x09\x35\xa5\x8f\xfc\x75\x35\x4f\x85\x8e\xa6\x1b\x8d\x43\xc2\ +\xa2\xf7\x0e\xca\x9f\x8d\x6e\x9f\xa7\x0a\x34\x98\x02\xb4\x8e\xd9\ +\x80\x35\xd0\xb4\x31\xa8\x90\x20\xf9\x5d\x00\x9a\x12\x86\xda\xb8\ +\x2b\x04\x55\xb1\xe7\x20\x65\xa5\xc4\xf4\x19\xd2\xb4\xb8\x22\x78\ +\x22\xad\x93\x53\xd5\x00\x7c\x94\x9a\xae\x71\xe9\x5a\x66\x96\x20\ +\xcb\x60\x5d\x36\xe6\x1c\x51\x5b\x58\xa8\xfe\x40\x94\x31\x1b\x20\ +\x6b\x48\x82\xeb\x03\x62\xeb\x8d\xb4\xd9\xd9\x3c\xce\x6e\xdd\x8f\ +\xc5\x9d\x7b\x71\x32\x3b\xb1\x92\x75\xf1\xc7\xed\x9f\x64\x03\xf2\ +\x71\x5e\x15\x3b\x00\xa2\x4a\xdc\xfb\x9f\xf2\x3c\x96\x2d\x45\x86\ +\xf6\x32\x52\xfd\xd2\xc1\xdc\x0e\x6e\x44\x05\x65\x8d\x31\x58\xc1\ +\x75\x62\x4e\x4a\x28\x33\xff\x67\x42\x3a\x6c\x81\x79\x15\xd4\xc5\ +\x68\x1c\x0f\xbe\xfc\x95\xb8\x54\x7f\xe4\x06\x24\xba\x5d\x5e\x9d\ +\x81\x46\x34\xb8\x19\xff\x33\xc2\xcd\x42\xdc\x8c\xff\x55\x03\x97\ +\xbf\xaf\x5b\xb7\x45\xe1\x73\x5d\x47\xdf\x7c\xf0\xab\xb1\x5e\x4e\ +\xdd\x57\xb3\xc3\x0c\x1b\x4a\x7d\x1c\x78\x51\x1d\x0e\x78\x8c\x5a\ +\x45\x38\x18\x31\x5c\x0d\x3b\x58\xef\xc2\x67\x83\x74\xe8\x16\x3c\ +\x55\x8a\xfa\x8f\x4e\x82\xfd\x43\xad\x61\xcc\x7d\x52\x07\x9e\xda\ +\xc9\xf3\x39\xe7\x50\x13\xf6\xc4\xc9\xa8\xdc\x1b\x78\x29\xe8\x63\ +\x76\x1f\x35\x9d\xf3\xfe\x0f\xa1\xed\x28\xae\xd7\xbc\xda\x31\xe2\ +\x72\x33\x8a\x8b\xeb\x71\x3c\xbb\x56\x7f\xe7\x69\x35\x4d\x19\xf8\ +\x4d\x03\xaf\x3d\xe3\xc7\x05\x7e\x12\x2d\x26\xf9\x03\x28\xf2\xbe\ +\xe9\x27\xbe\x89\xe5\xeb\x9b\xb3\x44\xde\x45\x9e\x03\xb8\xb6\x60\ +\xb1\x6c\x73\x87\x9d\x32\x94\xbf\x2d\x95\xdb\x82\x48\xa1\x4e\xa2\ +\xcc\xcc\x56\x92\xbc\xc1\x9d\xad\x2b\x4f\x65\x57\x63\x37\xed\x05\ +\x8d\x49\x85\x76\xed\xcf\x0f\xd7\xa4\x16\x87\xce\x40\x9c\x27\xd0\ +\xd6\xba\x0e\x5d\xaf\x96\xf1\xec\xf2\x22\x9e\x5d\x3d\x89\xcb\xeb\ +\x67\x8a\x5f\xfb\x15\x78\x6c\x3a\xec\x35\x3f\xdb\xee\x79\x6a\x47\ +\xd7\x28\x05\x3f\xe9\x03\xde\x69\x3e\xa5\xeb\x0a\x9b\x6c\x7e\x5a\ +\x8d\xbc\xc0\x92\x33\x5f\xf2\x06\x87\xf3\x82\x4f\x10\xdf\x7e\xa0\ +\xa9\xe0\xba\x42\xb7\xc9\x09\x59\x0e\x08\xc7\x6d\x33\xd3\x98\xad\ +\x4f\x5e\xbf\x15\x52\x9a\x1f\xe2\xae\x18\xe9\x79\x6c\x6f\x12\xe6\ +\x77\xca\xcb\x79\x0c\x7d\x91\x8e\xd3\xc1\x93\x0e\xbe\xe9\x03\x4f\ +\x0c\x23\xec\x65\x3d\xb1\x81\x02\xab\xff\x34\xbd\xf4\x8d\x68\xc6\ +\x7b\x51\xaf\xeb\x8f\x75\x8b\x8f\x8e\x21\xf9\xa6\x52\x68\x9e\xf9\ +\xc9\xed\x3f\x9d\x6c\x08\xa5\x4b\xb9\x1b\xdd\xec\x0c\x43\xc9\x5c\ +\x37\x50\x2f\x90\xb9\x3d\x08\xf0\x28\xb2\x70\xf2\xd0\xcb\xba\x32\ +\x76\xba\xd6\x8e\xe4\x57\x3c\x6b\xe6\x27\x75\x08\x92\x55\xdb\xb6\ +\xb4\x7d\x1b\xa4\x6d\xf2\x68\xf6\xbb\xfc\x2b\xdf\x56\xf7\x4d\xb7\ +\xa3\x15\xdc\xc7\x14\xda\xeb\x1e\xdb\x86\xd9\x76\x44\x9f\xcb\xe0\ +\xcf\x00\xf3\xd4\xa5\x9f\x4c\x53\x9f\x36\xd6\xfc\x8a\x0d\x35\x9e\ +\x48\xf3\xc6\xb1\xfb\xfb\x36\x56\x9a\x33\x5d\xe9\x7c\x60\x73\xcd\ +\x9b\x6a\xee\xf3\xea\x03\xea\x04\x23\xc9\xc7\x3a\x17\xa6\xc2\x13\ +\xd9\xa5\x2e\x9a\x5f\x3c\xd5\x36\x76\x5b\xd4\x68\xe1\xf3\x30\x87\ +\x66\xff\xbe\xa8\x20\x49\x1d\x39\x99\x01\x92\xb4\x00\x34\xdc\x01\ +\x7a\x37\x47\xa0\x84\x8e\x77\x23\x4d\xa6\x38\x84\x61\x16\x40\x8b\ +\x67\xa8\xf1\x85\x50\x04\x45\x31\x5d\x3c\xb7\x1b\xed\xd9\xda\xf4\ +\x00\x94\x1b\xac\x8e\x8d\xc5\x06\xa2\x34\xb9\x9c\xcf\xa7\x71\x32\ +\x3f\x8b\xe9\x64\x26\x0e\x83\xb8\xc6\x96\x56\x07\x05\xc3\xd8\xa1\ +\x64\x00\x4d\xd0\x0d\x76\x39\x3e\xfb\x9a\x60\xba\x77\xa3\xa7\xf1\ +\xb9\xaf\xc3\x2c\x0b\xd8\x91\x62\x26\xfa\x7c\x50\x3a\x1b\x6d\x69\ +\xca\x3a\x59\x23\xd3\xc7\xb9\x88\xff\x6c\xb5\x8f\xaf\xbe\xfd\xb5\ +\x58\xcc\x4f\x35\xde\x5b\xed\x08\x47\x38\xc2\x11\x8e\xf0\x13\xc2\ +\x71\xf8\x3c\xc2\x11\x8e\x70\x84\x36\x83\xd5\x8c\xf2\xf6\xbb\x6f\ +\xc6\xfe\xec\x4e\x3c\xd6\x42\x25\x7f\xa5\x56\x93\xd0\x9a\x9b\x72\ +\xef\x32\xff\x07\x2c\xe3\xcf\xc3\x60\xe2\xeb\x35\x98\x08\x68\x1b\ +\xc8\xe0\x89\x3e\xdf\x2e\xc0\x97\x49\x4f\x78\x0b\x3c\xfb\x15\x9f\ +\x0c\x61\x3a\xa4\xb4\xd0\xe7\x40\xda\x6b\xd0\xc5\x58\x64\x70\x47\ +\x86\x09\x3d\x66\x65\xdb\x13\xfc\xca\xb5\x7b\x32\x80\x1b\x42\x53\ +\x36\xd6\x26\x75\xe3\xd7\xe2\x84\x5e\xbd\xa7\x2b\xde\x4c\xd9\x76\ +\x13\x80\x0a\x7c\x6f\xc2\x44\x61\x00\x1a\xbe\x2b\xa2\x17\x60\x83\ +\xc5\x04\x32\x6e\x4e\x74\x12\xd7\x15\xba\x6d\x79\xc5\x8a\x23\xcd\ +\xf4\xa9\x0f\x81\xff\x05\x70\x3a\xad\x18\xbd\x48\x21\x88\xef\x5f\ +\xb9\x2a\x6c\xc6\x5a\x68\x72\xf3\x68\xa6\x32\x9f\x4f\x62\x7a\x67\ +\x1a\x8b\x3b\x63\xd1\xd4\xc3\x2e\x26\xf2\x8b\x57\xd2\xf1\x8a\xc6\ +\xfd\xe5\x3a\x76\x57\x6b\x7e\x36\x1e\xbb\xa5\x16\xc1\x4b\x2d\x70\ +\x57\x5a\xf4\xae\xb5\x10\xe6\x55\x8f\xde\x50\xcb\xc0\x26\x17\xbf\ +\x1e\x65\x53\xcc\x1b\x6e\x96\xb3\xf9\xa6\xf4\x6c\x44\x78\xf3\x4c\ +\x36\xb5\x38\x6e\x1b\x14\x5a\x29\x9b\x4f\x1a\xbf\x2e\x92\xc5\x32\ +\x4f\xad\x69\xc1\xcc\x46\x47\xfe\x99\x79\x2e\xa0\x73\xa3\x43\x3c\ +\x02\x77\xab\x7c\x53\x26\x17\xce\x5e\x69\xc2\xa3\x9e\x7c\xf3\x46\ +\xa1\x6e\x02\x74\x50\xf5\x62\x0e\xf4\x10\x5b\x33\xe5\x56\x28\xb2\ +\x5b\xd2\x5a\x8f\x00\x54\xbc\x63\x27\x91\xf5\xdc\xec\x64\x3b\x36\ +\x59\x83\x01\x29\xa8\x08\xc8\x6a\x1d\x91\x3c\xc3\x80\x36\x49\xa4\ +\x05\x50\x1f\xef\x6e\x7e\x10\xa5\xf8\x56\x11\x5f\xbc\xce\x76\x72\ +\x3a\x3d\xcb\xf4\x71\x5f\x55\xe8\xfa\xac\x71\x32\x39\xd2\xd7\x92\ +\x52\x30\xe2\x20\x20\x41\x4b\x6c\x0d\x7d\x6e\xe4\x65\x67\x2a\x9f\ +\xcc\xb7\xfa\xb2\xd5\x92\x6e\x1f\x43\xe9\x64\x20\x4e\x61\x20\xfb\ +\x73\xa0\xd9\xf9\xcc\x60\x6d\x70\xe6\x3d\xe4\x63\x8f\x1b\x10\x3c\ +\x61\xc9\x2b\x44\x19\x23\xda\x93\x96\x7e\xbd\x13\x98\x7e\x58\x9b\ +\x69\x7e\x25\x29\x7d\x53\xfd\x95\xa7\xd3\xbc\xc9\xac\xe0\xa7\x2e\ +\x15\xfc\x9f\x80\x57\xb9\xc9\x06\xcd\x53\x9d\x6c\xae\x6d\xd8\x44\ +\xe3\x09\xb5\xa7\x57\x19\x9e\xd5\x93\x6b\xfc\x07\xe1\x7a\xa9\x2e\ +\xaa\xf3\x60\xbc\xd6\xb8\xbb\x89\xc9\x7c\x17\xd3\x93\x5d\x8c\x4f\ +\xb6\xa6\x27\x0b\xf9\x30\x53\x98\xca\x07\x9d\x93\xbe\xd1\xa9\x46\ +\xe0\x19\xb1\x6c\x8d\xc1\x91\x31\xcc\x83\x50\x72\x12\xa0\xe1\x09\ +\x75\x33\xdf\x92\xbb\x1a\x44\xe7\x1d\x07\x03\x88\x31\xac\x1b\xc7\ +\xba\xd0\x8e\x09\x07\x12\xec\x14\x64\xf6\xd9\x3a\x08\xdb\x38\x0b\ +\xf6\xe5\x03\x9e\x31\x44\xea\x00\xad\x5c\xd9\x8f\x92\x07\xb4\xf4\ +\xdc\xf4\xf2\xff\x8a\xc9\x32\x1b\x68\xed\xff\x4e\xc6\x3a\xd7\xcf\ +\xee\xdd\x8a\xfb\xbf\xf9\x1b\xf1\xc6\xdf\xfe\x9b\x71\xef\xdf\xfa\ +\xad\x58\x3c\x78\x5d\xb2\xdc\x6c\xf2\x8d\x36\xe1\xa1\x8f\x06\xe2\ +\x2d\x2b\x2b\xa2\x9b\xa1\xb8\xc5\xe3\x50\xfc\x62\xf7\x20\x03\xee\ +\x4f\x88\x12\xb7\x60\xd5\x62\x19\xa0\xbb\x08\x90\x11\xca\x91\x65\ +\x21\x92\xe9\xa8\xfb\xc9\x64\xa2\xeb\x50\x3e\x81\xe7\x5f\xdf\xeb\ +\x73\xad\xd2\xaf\xf6\xe3\xb8\xf5\x8b\x5f\x8d\xf3\x79\xbd\x56\xf8\ +\xc0\x66\x73\x70\xc0\x6c\xac\x97\x05\xcd\xf4\x41\xbe\x7f\x45\xc1\ +\x75\x7b\x58\x11\xb0\xe0\xcc\x66\x11\x6f\xbe\xf2\x15\x5d\x8e\x4e\ +\x82\xd7\xf4\xd1\x81\xe0\x7b\x34\x72\x9f\xb9\xd9\x30\x9f\x5d\xa1\ +\x39\x7e\x25\xb4\xe1\xeb\x60\x6c\xed\xc5\x2f\x6c\x6f\xfa\x8e\xb1\ +\x7c\xc8\xa7\x1e\xcd\x7c\x91\x6a\xc1\xd0\x60\x0f\x2f\xe2\xda\x8f\ +\x7a\xfc\xd4\xf3\x27\xce\x6d\x04\xce\xa4\x80\x84\x2f\x4c\x9c\xe9\ +\x19\x6a\xd7\xaa\x8f\xcb\xd5\x28\x9e\x2d\x47\xf1\xf4\x6a\xe4\x8d\ +\xb4\xab\xe5\x58\xd3\x05\x05\xf4\x6a\xf8\x6e\x9b\xee\x98\x4f\x9c\ +\x74\x03\x78\xa8\xf9\x52\x04\x58\xd6\x22\x82\x81\x6e\x83\x8e\xd5\ +\x08\xe7\xa3\xc3\x00\xb7\x27\xdf\x88\x40\xba\x4d\x44\xf8\x4a\x64\ +\x91\x72\x96\x8f\x79\x85\x42\xa1\xc6\x1d\x62\xe5\x23\xc1\xbf\xd3\ +\x2a\x87\xf1\x51\x55\xe6\xf1\x90\xb1\x99\x8d\x06\x36\x13\xc0\x6c\ +\x1c\x5c\xeb\x1a\xf2\xec\xea\x32\x2e\x2e\x9e\xa9\x3e\xae\x54\x1f\ +\x4b\xe1\xcb\xb8\x5e\x5d\x6a\xde\xb5\x0c\xff\xbf\x94\x37\xce\x94\ +\x8e\x8f\xe6\x48\xde\xb0\x50\xdc\x98\x79\x93\x62\x6c\x5c\xf9\x75\ +\x7b\x35\x7f\x32\xdf\x73\x27\xfa\x22\x9b\x6b\xd2\xa1\x82\x8d\xc5\ +\xab\x39\x94\x37\x54\x3c\x7f\xa2\x38\xe2\x11\xe7\x9a\x89\x4d\xa2\ +\xae\x9b\xd6\x3b\xb1\x95\xf6\xac\x7b\x23\xa4\x4c\x81\x3c\x09\xb6\ +\xa1\xa3\xf9\x2d\x4d\x61\x6c\x61\xd5\x8d\x88\xbc\x97\x65\x10\xed\ +\xf4\xf2\x5d\x65\xcb\x9f\x88\xf5\xf5\x4d\xd2\x3c\x54\xda\x0e\x92\ +\xe7\x60\x9b\x03\x99\xe9\x0c\xc3\x34\x49\x8b\x57\x7c\x4b\xc0\x4d\ +\xbd\x01\x8c\xc6\x47\x40\xbd\x81\x0e\x94\x32\x89\x43\xc7\xee\x38\ +\xe2\x51\xd7\x7d\x1c\x1b\x6e\x03\xdb\x55\x1c\x4c\x5c\x47\xc7\x6b\ +\x9e\xdb\xe6\xbe\xde\x38\xb5\x1e\xe9\xea\x93\x2a\x95\xa6\xf8\xe0\ +\x9b\xa1\xb5\x3d\x74\xd5\xad\xff\xe7\x8f\xf4\x6e\xb3\x86\xcb\xbe\ +\x03\xfa\x99\xc6\xed\x58\x7e\x74\x76\xd4\x07\xbd\x99\xe6\x80\x8e\ +\xda\xaa\x78\x6c\xfa\xf2\x31\x5d\x9b\x68\x7e\x1a\xcd\x4f\x5d\xae\ +\x4c\x9b\xa7\xbe\xca\x66\x5a\x0b\x2b\xc5\x79\x52\xf3\x9a\xf3\x43\ +\x6b\x88\x15\x1b\x6d\x5e\x0f\xf0\xa3\x24\x02\x4f\xf3\x2f\x35\x47\ +\xd8\x6b\x59\xa3\xb9\x94\xc2\x64\xa4\xb9\x54\x6d\x92\x73\xea\xf9\ +\xc7\x93\xaa\x91\x09\xd5\xa2\xb8\xcf\x49\xe8\x8c\xba\xdb\x31\x6f\ +\x60\x58\xeb\xc6\x17\x2b\x34\x2d\x01\x75\xea\x7a\x15\x4f\x03\x40\ +\x8e\x04\xcf\x43\xe3\x75\xe3\xd1\x10\x10\xb6\x50\xd0\xcc\x5a\xfd\ +\x45\x69\x04\x39\xb3\x29\xbd\xa1\x4e\x8d\x2b\x07\x06\x0d\xa5\x74\ +\x93\x2d\xa7\x60\x51\x1f\xf3\xf9\x2c\x4e\xe6\xf3\x9c\x77\xb8\xe0\ +\xb4\xe1\x61\x82\x61\x09\x0f\x5c\xeb\x22\x4d\x4e\x7d\xe8\xd8\x0a\ +\x6d\xb6\x78\x54\x7a\x81\xac\xfb\x63\x51\xa9\x25\x27\xb1\x37\xfb\ +\xdd\xd7\x15\x3f\xc8\xec\x26\x34\x61\x67\xa4\x50\xcf\x27\x5b\x77\ +\x5b\x7d\x7c\xca\xa8\xaf\xec\xd7\xd3\xf8\x95\xaf\xfc\x9a\x1b\x1f\ +\x5e\xe7\xeb\x11\x8e\x70\x84\x23\x1c\xe1\xc7\x86\xc1\xb0\x7e\x84\ +\x23\x1c\xe1\x08\x7f\xd5\xa0\x9f\x18\x9b\xd4\x04\xfa\xec\x95\x57\ +\x62\xf4\xce\xab\x71\x71\xc9\xaf\xfa\xf4\x65\x7e\xe9\xc5\x44\x2d\ +\x09\xb9\x61\xd2\x56\x16\xdd\xc4\x5d\xe0\x89\x6a\xd3\x4f\xdc\x16\ +\x5a\x7e\xed\x08\x60\x5e\x91\x26\x2a\xd2\xc0\xd1\xb2\x69\x44\x1e\ +\x9a\x6c\x43\x43\x16\xfb\x46\xaa\x4e\x95\x90\x56\xcd\x31\xb4\xa9\ +\xb9\xa7\xf6\xe9\x54\xc6\xa7\x2a\x0f\x3f\xc0\xf3\x9d\x0c\x7d\xcd\ +\xa6\x6c\x2a\xa2\x26\xd7\xdc\xc4\xe4\x49\x35\x36\xd4\x2c\x57\x68\ +\x66\xa1\x6f\xac\x31\x2c\x4b\xcb\xb6\x6e\x56\xa2\xac\xb7\x16\x0c\ +\xc3\xc4\xf2\xc7\x32\x78\x38\x51\x4a\x5a\x47\x14\x81\xbc\x8c\x1b\ +\x92\xee\x2c\x0c\xe9\x0e\x50\x56\x28\x84\xa9\x5a\x92\x64\xd6\xac\ +\x93\x4a\xb8\x9b\xca\xfa\x4c\xe1\x44\x71\x36\xd1\x5e\x51\xd9\xef\ +\x4b\xef\xce\x26\xc6\xf3\x55\x6c\x55\xd8\xd5\x7e\x15\xbb\xf5\x2e\ +\xb6\xd7\x5a\x10\x5f\x6c\x63\x73\xa9\x45\xed\x52\x98\xff\x46\x63\ +\xa3\x8c\x4d\x30\x36\x19\xb4\xa0\xe5\xb5\x43\x3c\xc5\xc3\x46\x9a\ +\x5f\xf9\xc8\x66\x1a\x9b\x13\x60\xf8\x45\xf3\xd4\x5a\xdb\x98\xc8\ +\xa7\x7c\xc4\x6f\xf1\xe5\x46\x7a\x0a\xdc\xec\x61\xd1\x53\xfa\xed\ +\x89\x37\x6f\x8a\xb2\x68\x57\xb0\x1e\x37\x86\x1a\x9f\xcd\x0f\x2f\ +\xe2\x55\x86\xc2\x5e\x45\x71\x13\x00\x9a\x62\xeb\xe0\xcd\xad\xaa\ +\x83\x8e\xa6\xd2\xd1\xb3\x6d\xc5\xa9\x34\x44\x96\xa5\x4e\xda\x20\ +\x24\xdf\xc8\xc7\x3e\x34\xae\xa1\xd8\xd4\x77\xc7\x15\x91\xfe\x99\ +\x90\xb0\xb0\xbf\x3a\x14\xd0\x54\xad\x6d\x6d\x15\x9d\x06\xa4\x2f\ +\xdd\xe4\x93\x58\x41\xb6\x6c\xca\xe5\x4d\x76\x2b\x48\xe6\x47\xbc\ +\x04\x2d\xda\xc0\x72\x85\xaa\x2b\x3e\xaa\x89\x4c\x27\xdc\x7c\x71\ +\x59\xac\xa7\x08\xf5\x54\xe9\xb4\x24\x15\x03\xba\x61\x42\x2b\x43\ +\xa5\x31\xbb\x6a\x83\x34\x15\x5a\x1e\x7c\x32\x4f\xd9\x70\x48\x7e\ +\x0b\xfe\x38\x69\xca\xd0\x2e\x46\x86\x81\xde\x01\x9f\x30\xf0\xd5\ +\x81\x9c\xfc\x9a\x52\xda\x1b\x3b\x1a\xf3\xd4\x97\xbc\x71\x4b\x70\ +\xff\x53\x9f\x53\x9f\xa2\x8f\x0d\x37\x79\xb7\x5e\x8c\x4b\xc6\x26\ +\x9a\x78\x6c\xa6\xf9\x3f\x01\x79\x1a\xed\x9a\xcd\x35\x36\xd2\x92\ +\xde\x10\x17\x7f\x7d\xb9\x8c\xcd\x85\x78\x17\xcb\xd8\x3e\x25\x5c\ +\xc7\x46\x61\x7f\x71\xe5\xd7\x40\x6e\x56\xcb\x98\x6c\x57\xae\xc7\ +\x11\xe7\xe5\x22\x62\x76\xbe\x8f\xd9\xad\x88\xe9\xf9\x2e\xa6\xa7\ +\x5b\x9d\xa7\xf2\x63\xc6\x13\x6c\x92\x33\x36\xb1\xf1\xef\x71\x4c\ +\xc5\x51\xd4\xe3\x94\xe0\x60\x7c\xea\x68\xca\x9d\xc8\x3c\xdf\x5c\ +\xaa\x88\xb1\xe0\x20\x61\xc2\x21\x87\x18\xa3\x29\x63\x25\xe9\x88\ +\x26\x86\x2c\x46\x05\x1d\xed\x50\xd2\xe9\x1c\x29\x71\xb6\x1c\x26\ +\xde\x9c\x16\x4a\x4a\x65\x6b\x2c\x78\x07\x21\x7b\x19\x38\x37\xe4\ +\xf8\x9f\xa5\x4d\x9c\xdd\xbb\x1d\xf7\x7e\xe5\xd7\xe3\xe4\xb7\xff\ +\x46\x9c\xfc\xd6\xbf\x16\x77\x7e\xed\xeb\x31\xfa\x85\x37\x63\xba\ +\x91\x32\xfd\x99\xe6\xb5\x45\xa5\x29\x42\x49\x33\x3f\x1d\x94\x23\ +\x54\x46\xea\x88\xa7\x19\xe9\x31\x49\xdd\xb7\x8c\x6f\x80\xfa\x94\ +\xbb\x15\x07\xfa\x5a\x9d\x47\xcf\x83\x78\xd6\x4d\xfd\x36\x36\x78\ +\x53\x8d\x72\x39\xbf\xcc\x7d\xa2\x42\x12\x47\x83\x9b\x95\x63\xf5\ +\xbd\x4f\xd9\xa0\xdd\x8d\xe3\x97\xff\x8d\xdf\x0e\x75\x11\xd9\xa0\ +\x46\x06\x70\x33\xcf\x17\xb9\xf0\x32\x60\x68\xb7\xaa\xe8\xaf\x0c\ +\x64\x13\xf5\xd0\xfa\xc8\x0d\xa0\xe5\xde\x79\xfd\x2b\xf1\xec\x42\ +\xd7\xcc\x15\xad\xa8\x4a\x1b\xb4\x4f\x72\x74\x4e\x5b\x73\x00\xa5\ +\x73\xc8\xcb\x78\x0b\xf4\x07\xdf\xc0\xb6\xcc\xc7\xe7\xe0\x26\x97\ +\x78\x9e\x3b\xf5\x14\x68\xe3\x55\x48\x50\x7f\x6a\x27\xc9\x80\xdb\ +\xe0\x26\xa7\x8d\xeb\xad\xef\xf2\x83\x2b\x9e\x50\x9b\xec\x39\x41\ +\xcb\xce\x70\x5c\x69\xa6\x0b\x88\x3a\xc8\xce\x66\xab\xf9\xc6\x26\ +\x37\xd5\x2e\x97\x63\xbf\xee\x91\xa7\xd6\x34\x44\xf7\x97\x03\x41\ +\xfa\x5e\x03\x80\xe9\x0c\xc9\x27\xd4\x51\xf9\xfb\xff\x85\x9c\xae\ +\x97\xbd\x08\x6e\xb8\x95\x30\xa8\x87\xdc\x44\x10\xd9\x58\x32\x8a\ +\xcf\x6e\x07\xcb\xd0\x81\x9d\xf9\xf9\x89\x17\x05\x5c\xcc\xb1\x6a\ +\xaf\xe1\x7a\x1c\x33\xcd\x39\xa7\x1a\xbb\x67\x0a\x53\x1e\x5c\x64\ +\xfc\xa6\xee\x30\xc9\x9c\x46\xd7\x1a\xae\x2f\x17\xd7\x57\xf1\xe4\ +\xd9\x65\x3c\x7a\xf6\x2c\x2e\xae\xae\xe2\x7a\xbb\xce\xcd\x33\x82\ +\x5f\x7b\x27\xde\xe6\xda\x9b\x0e\xde\x50\xe0\xb5\x8f\x4a\x9b\x1b\ +\x17\xb2\x81\x2d\xae\x71\xb5\x89\x96\xf3\x21\x05\xbf\x06\x52\x12\ +\xf8\xea\x7b\xa4\xf1\xff\x51\x11\xd4\x15\xe9\x8f\x6c\x78\xb8\x6c\ +\x8a\x51\xa6\xf6\x94\x91\x37\x77\xaa\xdc\xdd\xc6\x89\xaf\x9d\x94\ +\x3f\x65\x58\xe0\x63\x4c\xe2\xe2\xb5\x30\xfc\x64\xba\x9e\x0f\x9d\ +\x36\xb0\x65\xe4\xfc\xad\xc6\xc7\x44\x32\xda\xc7\x12\xd5\xbf\x5f\ +\x2f\xd8\x78\x96\x97\x3f\xc5\xaf\xda\x38\xf8\x74\x60\xbb\x69\x6b\ +\x48\x77\xfe\x0f\x65\x37\x74\xba\x38\xce\xba\xcd\x45\x7b\x13\x8c\ +\xf4\x48\x2b\x27\x45\x92\x6a\x01\xdb\xb0\x7d\x48\x5e\x87\xf8\x60\ +\x43\xa1\xeb\x77\x60\xf1\x3b\xcc\x53\x79\xa9\xe9\x76\xa8\x8f\x95\ +\xfd\x95\x7d\xd2\x23\x23\x30\x37\x66\xd7\xda\xe9\x07\xfc\x4e\x87\ +\xd4\x95\x86\x0f\xba\xd4\x9d\x75\xe8\x0f\xf8\xdb\xf7\x8d\x0c\x2d\ +\x6d\xca\x09\xd9\xe7\x32\xf0\xbf\xcc\x6d\x23\x2d\x37\x74\xab\xbf\ +\x81\xd5\xff\x72\x53\xad\xc5\xb5\xa6\xa8\xa7\x2c\xf3\x29\x35\xe2\ +\x5b\x3f\xa1\x96\x1b\x69\xa2\x75\xfd\xe3\x7a\x6f\x5a\xbe\x5d\x69\ +\x0d\xf2\xec\x7a\x19\x17\x9a\x7f\xad\x78\x8a\x4d\x1f\x75\x04\x97\ +\x8f\xeb\xe9\x54\x73\x9c\x93\xc9\x38\x4e\x75\x9e\xcd\x75\xee\x4d\ +\x27\x3a\x07\xc7\x3b\x6f\x60\xd3\x56\xde\x33\x92\x67\x3e\x4f\x93\ +\xe5\x00\x98\x96\x48\x05\xb1\x3d\x30\xba\x4d\xdf\xd0\x30\x7a\xae\ +\xb7\xfc\xd1\x4f\x0f\xb6\xe2\xc0\x11\xb5\x9e\xa3\xc0\xe1\x45\x60\ +\x7e\x0a\xd3\x05\x68\xea\xbb\xe2\x08\x04\xed\x47\x38\x2d\xee\x79\ +\x4c\x8b\xf4\xc4\xe7\x80\x74\xf4\xa5\x3e\x08\x27\xb3\x45\x9c\xcc\ +\x4f\x35\x2e\xcd\x55\xe4\x85\x44\x83\x31\xdc\x90\xf9\x35\x38\x8c\ +\xf5\x70\x53\xcb\x71\x99\x69\xeb\xed\x17\x81\xfb\x9e\x64\x94\x91\ +\x03\x55\x4e\x53\xda\xc5\xce\x85\xa1\x2f\x43\x3a\xc1\xe5\xbf\x61\ +\x9f\xa8\xac\x61\x3d\xed\x13\xd7\xf9\xb9\xbd\x3a\x8f\xc9\x72\x1e\ +\xaf\xbf\xf6\x9a\xed\x7b\x33\xed\x79\x93\x47\x38\xc2\x11\x8e\x70\ +\x84\x1f\x01\xba\x52\x1c\xe1\x08\x47\x38\xc2\xcf\x2e\xbc\xbc\xf9\ +\x1f\x33\x4d\x2d\x40\x16\x8b\x78\xed\xdd\xb7\xe3\xc9\x66\xaa\x85\ +\x0b\xbf\x81\xf3\x14\x35\x35\x44\xf8\xe6\x5e\x61\xf8\x35\x55\x2e\ +\xc0\x1b\x2f\x37\x84\xda\x82\x4b\xb4\x17\x71\x25\xc6\x5e\x9b\x1d\ +\xf3\xcb\xc7\xa2\xb1\x82\xdd\x92\x98\xb0\x65\xaf\x38\x2a\x0c\x50\ +\x1e\x7a\x20\x1d\x93\xe6\x0e\x6e\xc8\xad\xc1\x4a\x47\x5f\x6e\x0e\ +\x70\x87\x63\xc4\xcf\xa8\x27\x94\x40\x3e\x2b\x73\x97\x15\x2c\x1d\ +\xbf\xb6\x68\x5a\x72\xa1\xa1\x6d\xd3\x94\xaf\xe2\x87\x79\x65\x04\ +\x59\x0b\x2f\x02\x6a\xf5\x50\x2e\x7b\x9e\xf1\x43\x0e\x52\xbb\xfc\ +\x83\xb8\x03\xc7\x01\x2d\x44\xbc\xff\x34\x1e\x58\x0b\x09\xbb\x24\ +\xbe\x7c\xf6\xa2\x41\x8b\x4c\x5e\x97\x44\xd9\xa6\x27\xbc\x26\x6d\ +\x1a\xa7\xaf\xcc\x63\xfe\x86\xca\x7c\x7f\x15\x71\xeb\xda\xbf\x30\ +\xdf\xec\x27\xde\xc0\xda\x2c\x45\x5f\x69\xb1\x78\xa9\x05\xf1\x95\ +\x16\xce\x97\xfb\xd8\xac\x65\x77\xb9\x93\x6c\x13\xbb\x95\x96\xd0\ +\x6b\xf4\xd8\x58\x20\xae\xc0\x26\x03\xf1\x01\x6f\xdf\x64\x6c\x48\ +\xb0\x11\x86\x0e\x1b\x14\xe2\x19\x6f\x78\xd2\x87\xa7\xd5\xe0\xad\ +\x73\x93\xcc\x1b\x65\x19\x48\xe7\x4d\x0d\xe2\xed\x06\x10\x05\xad\ +\x4d\x34\xff\xf2\xb5\x36\xd5\x72\x53\x44\x32\xdf\x10\xc8\x5a\xa1\ +\xe8\xae\x95\x8a\x83\xab\x66\x92\x07\x82\xae\xe0\x25\x98\x99\x34\ +\x4c\xea\x58\xaf\xa4\xa6\x5a\x3a\x98\x25\x49\x5e\x62\xf7\xf5\x16\ +\x6f\xa0\xc5\x5c\x36\x09\x32\x70\xb6\x71\xda\x2b\x7e\xc5\x33\x5d\ +\xf1\xa1\x9c\xc6\x9a\xc9\x2b\x1b\x79\xd3\x45\xf5\x80\xcb\xd0\x96\ +\x27\x8f\x3a\x10\xd1\xf9\xe2\xf4\x60\x65\x4b\x2f\x84\xec\xf8\xf5\ +\x69\xd0\x9d\xab\xc8\x6c\x5f\xd8\x79\xb5\x90\x32\x08\x6c\x3a\x14\ +\x0b\xca\xf6\xf5\xc9\x7b\x1c\x29\x77\x84\x78\xa7\x5b\xfc\x61\x30\ +\x38\x65\x27\xef\x74\x32\x55\xca\xca\xe6\x30\x7d\xa3\xfd\xa9\xb8\ +\x79\xa4\x1b\x60\x36\xd3\x28\x93\xe3\xf6\x49\xf6\xdc\xd7\x44\x57\ +\x9f\x23\xf0\xab\x67\xf7\x3f\x63\x36\xd2\xb2\xef\xfa\xc9\x49\xe1\ +\xb8\xe6\x49\x35\xf1\xe9\xeb\xd7\xf4\x73\xc5\x6b\x23\x6d\xe3\x8d\ +\x36\x61\x05\xb0\x37\xdb\x2e\x15\xbf\x5c\xc5\xea\xe9\x2a\x36\x4f\ +\x96\xb1\x7a\xbc\x8a\xed\x93\x55\xec\x9e\x29\x5c\x65\x1e\xbc\x62\ +\x75\x14\xa2\xd9\xd4\x5f\xec\x63\x72\xb6\x8b\xc9\xed\x6d\x4c\x6e\ +\x6d\x62\x72\xbe\x8d\xd1\xa9\xe4\x0b\xe9\x4d\xe5\xab\xce\xe3\xbc\ +\x23\xa2\x64\xd9\xc9\x0b\x54\xbe\x01\x45\xd1\x89\x1b\x2b\xb8\x19\ +\x6f\xca\x50\xa6\x63\x78\x30\xae\xa0\xf8\xf0\xd3\x54\x12\x3a\xc2\ +\x64\x6a\xdf\x80\x62\x7a\x7c\xc5\x3f\xfb\x48\x86\x89\x69\x1b\xf8\ +\x1e\x11\xc1\x4d\xae\x34\x8c\x59\xfe\xcf\x4b\xa0\x30\xfe\x9a\x56\ +\x3a\xe4\xa7\xd3\x69\x2c\x5e\xb9\x1f\xe3\xdf\xfa\x8d\x38\xbb\x75\ +\x27\x62\x39\x8f\xc9\xe9\xad\xb8\x73\xfb\xae\x6f\xc8\x51\x4e\x6e\ +\x7a\xa3\x5f\x96\x0c\xce\x65\xc0\x80\x74\xd4\x04\x07\x7c\x29\x05\ +\xe1\xa2\xcc\x23\x6d\x59\xe8\x51\xe5\xd1\xd3\xa5\xd2\x60\x48\x03\ +\x8a\x67\x2e\x1c\xd8\x28\x6c\x65\x65\xcb\x51\x18\x9a\x76\x15\xed\ +\xff\x4e\x41\x4d\xca\x8f\xd4\xe7\xa6\x77\xce\xe3\xd5\xaf\xfe\x52\ +\x4c\xc5\xc8\x32\xf8\x30\xc0\x40\xd1\xa0\x9b\x79\xbf\x0c\x78\x51\ +\x96\x9f\x07\xf8\xd0\xfc\xf8\x69\xf8\xf3\x17\x0d\xad\xaf\x14\x10\ +\xe3\x87\x3b\x5f\x7d\xfb\x97\xe3\xfa\xe9\x34\x96\xd7\xbc\xaa\x90\ +\xa7\x0c\xb3\xcf\xb7\x3e\xe2\xfe\xec\xd6\x15\x74\xf5\x92\xb6\x7c\ +\x2a\x74\x30\xb0\x4f\x7a\x21\x9f\xc3\x84\xe4\x0a\x0e\x12\x18\x86\ +\x1c\xf7\x62\xbe\x1a\x2b\xfc\x64\xa3\xa3\xa9\xd1\xeb\x0d\xf2\xf9\ +\x3c\x70\x82\x4c\x85\x1f\x38\xc2\x06\xf0\x84\x79\xc5\x84\x39\x14\ +\x03\x52\xd3\x68\xd6\xd3\x6f\x8e\x8d\x03\xb8\x0c\x0a\xd8\xa9\xfb\ +\xf8\x3e\x67\xb3\x9e\x90\xf9\x70\x90\x2a\xbd\xa4\x00\x2e\x44\x07\ +\x26\x39\x50\x79\x6c\xea\x39\x89\x18\xe0\x2e\x98\x79\x00\x9d\x89\ +\x12\x75\x1a\xb2\x03\xed\xb3\xb2\xec\xda\x04\x32\x1d\x6c\x4a\x87\ +\x91\x9c\xb6\xbf\x92\xb7\x7f\x75\xf4\xf8\xa1\x3a\x61\x2a\xb9\x50\ +\x5f\x38\x25\xcc\xc3\x61\x31\xdf\xc7\x42\x75\x35\x63\x8c\xc7\xc4\ +\x4e\xd7\x14\x05\x7e\x8c\x71\x75\x79\x1d\x97\x57\xeb\x58\xae\xd7\ +\xde\x30\xf3\x66\x83\xae\x4f\x04\x36\x18\x96\xba\x46\xac\x74\xfd\ +\xe1\x09\xb6\x95\x26\x68\xdb\xad\x68\x9e\xe6\xb1\xae\x6c\x68\xfe\ +\x93\x5b\x1b\xf5\xf1\x38\xa8\xeb\x59\xbb\x86\x83\xd9\xf4\xf1\x06\ +\x19\x7c\x78\x60\x7c\xa0\x7c\xea\x8f\x5c\x1b\xcd\xf7\xc8\x93\x3a\ +\x96\xf5\x1f\xcb\x2b\x8f\x6c\x23\x61\xf8\x1c\x9d\x9e\xbc\x2d\x6d\ +\x5c\x1f\x1d\xac\x0f\x4d\x54\xf5\x47\x74\x28\xaf\x4d\x1c\xdb\xa1\ +\x43\x58\x17\xbb\x68\xa1\x9f\x3c\xe7\xdb\xd2\x34\x5e\x35\x26\xdc\ +\x1d\x86\x4d\xd1\x86\x45\x0f\xd2\x0e\x3f\xc8\xba\x8f\x64\x5c\x8b\ +\x5c\x47\x15\x3f\x08\xcd\x2e\x3a\xfe\x60\x12\x99\x08\xc7\x1a\xa4\ +\x1e\x9f\x4c\xa2\x43\x2a\xa5\xbe\xca\xd9\xeb\x90\x57\xab\x77\x42\ +\x72\xb3\x1e\x1a\x2f\x69\x1d\x3a\x9a\x54\x19\x4f\xac\x52\x6b\x1e\ +\xa1\x38\xf5\xe6\xf6\x6e\xba\xaa\x53\xf5\x21\x7e\x24\x84\xcc\x1b\ +\xc1\xc8\x99\xfb\x38\x64\x9a\x36\xb7\x46\x5f\x87\xce\x76\x1f\xca\ +\x16\x34\xe9\x84\xbd\x69\x56\x81\x8d\xda\xec\x6f\xea\x8b\xb4\xa3\ +\x38\xd9\x0f\x88\xd5\x47\x72\x42\x6e\xea\x4a\xcf\xfd\x56\x6b\x8b\ +\xda\x68\xdb\xc8\xc7\xdc\xec\x55\x3a\xe1\xdc\x64\xa3\xff\x13\xf6\ +\xc6\xea\xad\xfe\x9f\xc5\x2b\xcd\xb3\xae\xb5\x3e\x60\x5d\xb2\x91\ +\x8c\xbc\x78\x65\xeb\x5c\xe7\xdd\xc9\x74\x1f\xe7\xb3\x51\xdc\x3e\ +\x05\x8f\xe3\x44\xe7\x1d\xaf\xb1\x17\xa9\xcb\xab\xfc\x17\x6e\xfd\ +\x02\xdc\xd1\x2a\x53\x91\xe2\xf9\xc4\x17\x3d\xe8\x58\x34\x26\xd8\ +\x29\xcc\xf0\x71\x6c\x9d\x16\x0a\x2c\x96\x95\x1b\xd7\x08\xb2\x30\ +\x07\x39\x01\x80\x81\x8d\x41\xfe\x00\xaf\xc5\xcd\x0e\xd4\x43\x53\ +\x43\xe7\x40\x42\x3e\x9d\x1f\x87\x69\xba\x04\x0a\xd6\xd0\x81\xf1\ +\x6a\x3a\x99\xc6\xd9\xe2\x24\x4e\x17\xe7\x71\x76\x7a\x2e\xc9\x54\ +\xf5\x2e\x84\xee\x0d\x13\x0d\x6e\xb2\xfb\x38\x65\x4d\x6c\xa0\xec\ +\x7c\xd4\x26\xc5\x39\x00\x7b\xa3\x85\x6a\xa6\xcf\xda\xf4\x6d\x03\ +\xf9\x9a\xb1\x84\x8e\xea\x59\x3f\x06\x68\x3c\xc6\x96\x32\xa6\xe8\ +\xea\xa1\xce\x8b\xcf\xab\xaf\xfe\x46\x2c\xd8\x5c\xa3\x9c\xf2\xf1\ +\xc0\xbe\xeb\xe9\x08\x47\x38\xc2\x11\x8e\xf0\xa3\x40\x57\xa7\x23\ +\x1c\xe1\x08\x47\xf8\x82\xe1\x45\x33\xca\x3f\x23\xfc\xf9\x4d\x0d\ +\x2d\x68\xb2\x3b\x9a\xc6\x3b\xbf\xfd\x5b\x31\x3f\x3b\x8f\xa7\x17\ +\x57\x9a\x84\x4a\x7e\x23\x93\xbc\x49\x60\x22\x19\x4c\x56\xf9\x78\ +\xfe\xd9\x4f\x42\xdb\xbc\x9d\x05\x16\x11\x26\xc7\x9d\xae\x17\x3d\ +\x99\x26\x27\xcd\xa9\x5b\x07\xdb\x2f\xca\xb4\xb3\xac\xec\x1a\x74\ +\x51\x64\x20\x25\x30\x36\xb3\x22\x40\xc9\x0d\x4c\xda\x31\x2c\x63\ +\xfe\xef\x0d\x6e\x46\x2b\xdc\xcc\xab\x6d\xa8\x4d\x78\xed\xe3\x30\ +\xf3\x9b\x0b\x9a\x0a\x4e\xd8\xe7\x32\x20\x6f\xea\x57\x5e\x07\xec\ +\xde\x4a\x56\xc8\xc0\x8e\xe3\xa0\xf4\x3b\x83\x0e\xbd\x48\xa1\xaf\ +\x5f\xff\x5a\x5a\x81\x65\x2a\xbe\x76\x8b\x45\x61\x9e\xc8\xf3\x9f\ +\xc2\x8b\x1e\x2f\x26\x31\xb9\x3d\x8a\xc5\xdd\x59\x4c\xdf\x1d\xc7\ +\xf8\x4b\x57\x71\x76\x6f\x19\xb3\x93\xad\x96\x51\x5a\x5e\xb1\xc2\ +\xd0\x4a\x75\x77\x2d\x1b\x17\xb2\xa7\xb0\xba\xd0\xe2\xf6\x5a\x8b\ +\x0f\x9e\x4c\x5b\x6e\x62\xb5\xde\xc4\x7e\xcd\xe2\x5c\x79\x0a\xfb\ +\x29\xb3\x8d\x64\xe2\xf3\xe4\x1a\xaf\xcf\xe3\x35\x7a\x3c\x69\xe6\ +\xa7\xd4\x78\xa2\x07\xb9\x9f\x6c\x5b\x7b\x53\xad\xdb\x3c\xab\x8d\ +\xb4\x20\x1d\x3c\x30\x1b\x6d\x6c\x60\xb0\x91\xd6\x36\x38\x58\xe8\ +\x93\xae\xe2\xe6\xc3\x2b\xba\x6d\xaa\xe5\x8d\x80\x5c\xdc\x67\x45\ +\x11\x06\x74\x56\x6a\x17\x92\x05\x2d\x2c\x35\x63\x43\xc9\xc0\xfe\ +\x24\x6d\xa6\xf5\xe0\x64\x70\xf2\x2e\xad\x0f\x75\x2c\x90\x42\x3b\ +\x07\xfa\x7e\x94\xbc\x34\x83\x8c\x3c\x5a\xdc\x0a\x85\x91\x65\xb2\ +\x8c\x72\x34\x55\x58\x69\x5c\xbc\xfc\xd5\x72\xb3\x45\x48\xe4\x65\ +\x64\xea\x9a\xe1\x84\xbe\x99\xc2\xe6\x63\xd3\x6d\x2a\xf9\x8b\x7b\ +\x7b\x92\x7c\xa8\xb6\x22\x6d\x7a\xf0\xe8\x63\x50\x5d\x5a\xb0\x89\ +\xfc\x8a\xf6\x4d\x1d\x3b\x97\xf2\x4c\x51\x15\x55\xba\xbd\xcf\x20\ +\x69\x38\x48\x64\x5d\x50\xc9\x15\xa7\xbf\x3f\x97\x9f\x42\x4b\x37\ +\xe4\xe9\xd0\x87\xac\x20\x0a\xa7\x3e\x82\x2e\x75\x25\x1e\xf1\x16\ +\xe0\xbb\x6f\x81\x25\x13\xdd\xfa\x29\xfd\x8e\x4d\x5d\x6f\x78\xb9\ +\xdf\x8a\x66\xf3\x0c\x99\xe9\xe4\x79\xa3\xd8\x7d\x7c\xe3\xd7\xa1\ +\x0e\x03\x4f\xb2\x99\xbe\x52\xff\x57\xd8\x5c\x0a\x3f\x63\x43\x4d\ +\xf4\xe3\x75\x2c\x45\xaf\x2e\x97\xd6\xdb\xfa\xff\x2b\xd6\x1a\x9f\ +\x74\xbe\x9e\x8e\x62\x76\x7b\x1c\xb3\xbb\xa3\x98\xde\xdb\xc7\xe4\ +\x8e\xc2\xed\x7d\x4c\xd9\x5c\x5b\xb4\x27\xd6\x14\x34\x6e\x71\x9f\ +\xbc\x1b\x8e\x68\x32\x97\x5f\xd8\x74\x0b\xd4\x47\x8e\x15\xf9\xb1\ +\x46\x86\xe2\x0d\xe3\x43\xf0\xad\x08\x19\x73\x17\x56\x20\x9b\x76\ +\x34\x6a\xa1\xa0\x8b\xea\xd0\x36\xcb\x18\x93\x72\x58\x05\x97\xfd\ +\x41\x9a\x06\xe4\x95\xe9\x1c\x29\x5a\x07\x7c\x1a\x8f\xf9\x3d\x7a\ +\x9c\x9e\x2e\x62\xf1\xa5\x5f\x88\xd3\x93\x3b\xd9\xad\x62\xa5\xf6\ +\xb9\x8a\xd1\xb3\xa7\x52\x9e\x66\xbb\xe2\xe8\x00\x5a\x96\x43\x30\ +\xcb\x79\x60\xbf\xb0\xf3\x2b\x3e\x80\x68\x50\x1f\xcf\x51\x20\xe4\ +\xd5\xbd\x81\xa6\xd3\x44\x1d\x43\xd0\xf5\x59\x31\x5d\xaf\xa2\x9c\ +\x9f\x60\x3a\x9e\x28\x30\x80\x27\x83\x1b\x85\x90\x0f\x85\x6f\xbf\ +\xf1\x56\x6c\x74\x6d\xe2\x66\x63\xda\x1b\x18\xed\x9c\x2d\xf8\x1c\ +\xd1\x9f\x0b\x86\x76\x7f\x12\x20\xdd\xcb\xf4\xe3\x2f\x29\xd0\xe7\ +\x76\xe3\x7d\x7c\xe5\xd5\xb7\xe3\x95\x3b\x5f\x56\x9f\x98\xab\xd8\ +\x6a\x2f\xce\xcf\x02\xc6\x32\xea\xa3\xeb\x9f\xaa\x97\xa4\x86\xc7\ +\x01\xa0\x4b\x80\xd4\xc1\x1b\xad\xd5\x7f\x6e\xf6\xf1\xd4\x7a\x1e\ +\xe8\x65\x7e\x6d\xaa\x9f\x52\xeb\xb5\x3e\xbf\x49\x7a\xe9\xd0\x6a\ +\xfa\xd2\xe7\xcd\xf8\x33\x9d\x68\x6e\xc1\x13\x6a\xcc\x37\x90\xdc\ +\x70\x03\x4b\x9c\x7f\x39\x13\x3a\xf4\x7a\x78\x5e\xba\xdb\x3b\x9e\ +\xcc\x3c\x8a\xe9\xf9\x51\xef\x8f\x01\x1e\x09\x0e\x44\x15\x37\x45\ +\xea\xf2\xb3\x93\x1f\x90\xce\x20\xb5\xea\xd0\xc5\xf3\xbc\xf3\x5d\ +\x59\x73\x40\x07\x29\xf3\x32\xaa\x82\x72\x83\xde\xe3\x99\xc4\xa4\ +\xa1\x9e\xe7\x6a\xf0\x33\xcd\x25\x6f\x9d\xec\xe2\xfc\x64\x1f\x8b\ +\x93\x88\xf9\x94\xf3\x3b\xe5\x79\x5d\xd2\x58\xaf\x6b\xcd\x5a\xd7\ +\x86\x27\x17\x9b\xb8\xb8\x5a\xf9\xff\xa1\x74\xc5\x50\xfd\x31\xf7\ +\xa3\x9d\x73\x53\xa2\x8d\x19\x1b\x5d\xb7\xd9\x4c\x63\x53\x6d\xb9\ +\x95\x2e\xaf\xe5\x26\xf0\xa4\x9a\x37\x27\x14\x6a\x73\xc2\x9b\x16\ +\xc2\x50\x5c\xf7\xdc\x67\xfc\xc5\x57\x06\x2b\xf1\x44\x7b\xa4\xc4\ +\xbe\xae\x7d\x6d\x83\x44\x07\xf3\xc0\x99\x28\x79\xa6\x5b\x28\xb9\ +\x3f\x95\xce\x3e\x97\x7c\xe4\x71\x8a\x79\xc6\x20\x99\x0e\x7c\x9c\ +\xd6\x31\xfc\x68\x36\x4a\x09\xdf\x6c\x8b\x7a\xc8\x39\x5d\x8b\x37\ +\xdb\x19\x80\xc4\x6c\xa0\xa5\x3e\x18\x7d\xb3\xd5\xb7\x44\x94\x7a\ +\x21\x85\xca\xab\x42\x77\x3d\xac\x38\xc9\x0d\x6e\xd3\x1b\xa1\xf4\ +\x3c\xbf\x11\xed\x50\xe9\xba\x30\xe4\x39\xc6\xa7\x28\x13\x1c\xa0\ +\xb3\x4d\xd2\x67\x74\xb2\x2e\xb2\xbc\x60\xf4\x8a\x2e\xfd\xd4\xeb\ +\x75\xba\xfa\x83\x96\x4f\x69\x2b\xf5\xb2\x20\xad\x1e\xc1\xd4\x5e\ +\xce\xfb\x5c\xaf\x2d\x9d\x65\x6d\x3e\x58\x75\xe8\x74\x7d\x1c\xe8\ +\x79\xd8\x21\x14\x5d\x81\x0d\x30\x6f\xe2\xd2\xef\x44\xb3\x19\xd6\ +\x36\xd0\xc8\x37\xfb\x62\x61\xfa\x68\xd3\x73\xbf\xad\x8d\x34\x64\ +\x8d\xd6\xb9\xb1\xd1\x9c\x8c\x27\xd3\xfc\x5f\xcd\xc5\xdb\x7a\xae\ +\xcf\x93\xad\x11\x57\xeb\x7d\x68\x59\xa2\x3c\xd9\x4c\xe3\x47\x6b\ +\xf2\xa9\xce\x43\x9e\x04\x3d\x9b\x4d\xe3\xee\xc9\x38\xee\x9d\x4e\ +\xbc\xb9\x76\xb6\xd0\xb9\xc9\xe6\x7f\xbb\xc4\x12\x00\x92\xc9\x66\ +\x46\x87\x38\xcb\x0e\x40\x79\x3e\xac\x2f\xd5\x80\x4e\x6a\x0e\xb5\ +\x06\x90\x0a\x19\x1c\x49\x30\xfb\x66\x02\xc7\x75\x48\x73\x0a\x95\ +\xd8\xe7\x82\x68\xe4\x83\x34\x48\x0d\x03\x5e\x1f\x39\x60\x0a\xfa\ +\x78\x4b\x07\x9e\x68\xdc\x5e\x4c\x17\x71\x4b\xeb\xfe\xb3\xb3\xfb\ +\x1a\xa7\x1e\x68\x3e\x75\xaa\xac\xeb\x62\xd5\x65\x32\x84\xc6\x3c\ +\xb4\x69\x77\x1b\x14\xa3\x9b\xdb\xf0\x4b\xcd\xe7\x40\xe9\x5b\x25\ +\x16\xb8\xdf\x31\x07\x77\x3f\x36\xc7\xfc\xa1\xe9\x3e\xd7\x1e\x90\ +\xdf\xe4\x3b\x2e\x41\xca\x38\xca\x87\xc9\x2a\xae\x9e\x2d\xe2\x5f\ +\xfb\xda\x6f\xc4\x64\x3e\x63\x2a\xd9\xdb\x36\xc1\xa1\xe3\x1c\xe1\ +\x08\x47\x38\xc2\x11\x3e\x07\x5e\x34\xb2\x1f\xe1\x08\x47\x38\xc2\ +\xcf\x0c\xbc\x68\x52\xf9\xe3\x41\x4b\x59\x98\xb9\x23\xa4\x26\xbf\ +\x67\xaf\xbe\x11\x77\xef\xbf\x1d\x97\x5a\x04\x4d\x34\x01\x66\x29\ +\xc6\x4d\x4c\xdf\xfc\xb4\xaa\x8e\x6d\x92\xdf\x8e\x65\xa6\x90\x27\ +\xc4\x44\xfc\xaa\x98\xb6\xb8\xe3\x93\xb3\x63\x34\xf4\xcd\x1b\x05\ +\xa9\xdb\xf8\xfd\x24\x36\x29\xf2\x02\x15\xdf\x74\x92\x07\x30\xe0\ +\x63\x29\x83\xfc\xed\x74\x93\x66\xf3\xc7\x79\x89\x1e\x4d\x26\x31\ +\xf2\x6a\x6a\x1c\xfe\x5f\x38\x31\x59\x0e\x91\xc4\x1b\x6a\x2c\xb6\ +\xfc\x3f\x6a\xed\x97\xc9\xd8\xb9\x81\x1b\xdd\xe0\x45\xbc\x82\xb4\ +\x4c\xfe\x19\x4f\x9c\x91\x4c\x96\x0b\xe2\x76\xd3\xb9\xaf\x13\x80\ +\x7a\x32\x2a\x51\xca\x73\xb3\x42\xe5\xca\x68\xa7\x43\x5e\x2c\x29\ +\x79\x3a\x6d\x3b\xd1\x12\x96\x3f\x1c\x1a\xef\x63\x7c\xa2\x32\xdd\ +\x1a\xc7\xe2\xd5\x49\x8c\x7f\x51\x79\xfe\xd2\x3a\x4e\x5e\xbf\x8a\ +\xc5\xc9\x3e\xae\xb5\xaa\xd8\xee\xb5\xf2\xdc\xaa\x1e\x56\xbb\x98\ +\x5d\xca\xfe\xb5\x16\xc0\xbc\xfe\xf3\x99\x7c\x5b\x49\xb4\xda\xc6\ +\x7a\xc9\xa6\x9a\xda\x55\x61\xa3\x95\xec\x86\x0d\x04\x16\xb9\xeb\ +\x0c\xf9\x3a\x47\xe8\xdc\x5c\xd8\x29\x0d\x9b\x69\x29\xdf\x84\x9f\ +\x3a\x63\x23\x4e\xb8\x3d\xa5\xe6\xcd\x33\xd3\x6c\x50\xe4\x06\xdb\ +\xce\xff\xad\x86\x3e\xf6\xf3\x86\x93\x37\x33\xb8\xd9\x03\xdf\x71\ +\xf9\xc6\xa2\xda\xfd\x4c\x3e\x6a\xa1\xcd\x42\x5e\x2b\x73\xc9\x88\ +\xf7\xfc\xae\x9f\x75\x15\x45\x5d\x81\x33\xd0\xc6\x79\x33\x8c\x90\ +\x6d\xc1\xc7\x18\x64\x10\xc1\xd7\xec\x22\xba\xca\x27\x8d\x42\xe3\ +\x2b\xb8\x7f\xd7\x47\x0c\xb7\x73\x92\x19\xef\xda\xd1\x4c\x80\x78\ +\xc3\x15\x06\x74\xfb\xc0\xf3\x79\xd5\x16\x9d\x04\xe5\xdf\xfd\x4a\ +\xbe\xe9\x0f\xe9\xaa\x0b\xc7\xb1\xe1\xb8\xea\x4a\x69\xfc\xab\xf4\ +\x81\x8e\xe5\x8a\x67\x57\x6c\x76\x5a\x5a\xa0\x61\x80\x32\x83\x07\ +\x32\xeb\x55\x1c\x9a\x30\x52\x5e\xd4\xab\x82\xac\x75\x3a\xed\xd8\ +\x6e\x28\x15\x23\xe5\xc6\xe5\x8f\xf2\xc1\x87\xc3\xfa\x26\xe5\xe0\ +\x53\x36\xda\x8d\x1d\x74\x72\x73\x4c\xc1\x51\x30\x69\xb7\xbe\x69\ +\xe2\xb2\xb6\x7e\x42\x5f\x42\xdf\xbc\xec\x5b\xf9\xda\x51\x05\xfa\ +\x9f\xfa\x28\x4f\xa1\x79\xe3\x4c\xfd\x8f\xff\x01\x6c\x21\xfb\x29\ +\x7d\x51\xe7\x43\x6d\xa6\xb9\xff\xa3\x5b\x81\xb8\xcf\x17\x6f\xaa\ +\xad\x63\x7d\xa5\x70\xb1\xca\xf0\x64\x15\xab\x87\x8a\x7f\x0c\x56\ +\x78\xbc\xf2\x53\x6c\x7e\x2a\x73\xaf\x73\x62\x2c\x7f\x35\x44\x8d\ +\x4f\xc7\x31\x3f\x1f\xc7\xc9\x83\x88\xc5\xeb\x11\xf3\x57\xf6\x31\ +\xbb\x13\x31\xb9\x25\xf9\x89\x7c\x9f\xcb\xe7\x89\x92\xa8\xa3\xa9\ +\x14\xaa\x11\x80\x5e\xa7\xc4\x44\xba\xaa\x63\xec\x15\xdf\x63\x30\ +\x7c\xea\xac\xe4\x42\x4d\xb7\x01\x16\xdc\x77\x6f\xc0\x70\x58\x7e\ +\x91\xc6\x0b\xd3\xc0\xed\x04\x45\x18\xb5\x4c\xe5\x8b\x3e\x66\xa1\ +\x9a\x27\x66\xa7\x0a\xf0\x43\x0f\x95\x58\x63\xf3\x2e\xe6\x77\xce\ +\x63\xf2\xe5\x77\xfc\x0b\x6b\xf4\x76\xc8\xae\x97\xf1\xec\xfb\xef\ +\xa1\x49\xaf\xe9\x6c\x61\xdd\x13\xff\xc6\xb8\x01\x2e\xb2\x0e\xfe\ +\x21\x49\x01\xd5\x94\x70\xa8\xdf\x74\x0d\xe0\x9b\x74\x8b\x77\xd0\ +\x2b\xb8\xae\x9b\xd2\x40\x8f\x1c\xa8\x9f\x89\xf2\xe7\xc7\x1c\xba\ +\x0c\xf9\x1a\x6a\x35\x5d\x8f\x9e\x68\x6c\xbc\xd4\xb8\x7b\xf2\xd5\ +\xaf\xc5\xbd\xf3\x33\x15\x46\xda\xf6\xb5\xf9\x56\x36\x87\x30\x74\ +\xfb\x86\xe8\x0b\x85\xe6\x26\xe1\x2f\xd2\x8f\x9f\x3a\x64\xe1\x5a\ +\x11\x37\xba\xf6\xde\x3e\x79\x3d\x1e\x3d\xbe\x52\xac\xfe\xf3\xce\ +\x52\xfa\x41\x35\x0e\xbf\x7c\x31\x4e\xf4\xa3\xc0\xe7\x70\xc3\xd9\ +\x99\x0c\xe6\x75\xed\xdd\x11\xcf\x01\x7d\x86\x39\x0e\x2a\xd9\x7f\ +\x6e\x80\x0d\x25\xf9\x42\x18\xc8\xba\xfc\x85\x6d\x57\x81\x57\x1a\ +\x8e\x75\x6e\x1e\xf8\xd0\xd4\x5a\xd0\xc1\xac\xe2\x1b\xd2\xa5\x1e\ +\x88\xc8\xde\x0b\x3c\x14\x24\xbf\x54\x8a\xbe\xa9\x89\x4f\x95\x1f\ +\x32\x8f\x79\x29\x01\x1a\xc9\x75\xae\xd5\xdb\x4d\x1b\x7e\xe2\xc4\ +\x65\x4c\xed\x31\x93\x2a\x41\x9b\x2a\x00\xfe\x9f\x5a\x72\x30\xa3\ +\xea\x40\xbc\x53\xd5\xc3\x9d\xd3\x6d\xdc\x3d\xdb\xc7\xf9\xb9\xe6\ +\x54\x1a\xa3\x27\xd2\x49\x7f\x69\x03\xcd\xb1\x35\x42\x31\x17\xba\ +\x5e\x6e\xe3\xf1\x33\x5e\x61\xb7\x8b\xa5\xd2\xb2\x31\xb0\xad\xeb\ +\x3b\x4f\xee\xf8\xda\xa5\x4f\xdb\xf4\x01\xfb\x75\x78\x9a\x27\xad\ +\x79\x1d\x24\x9b\x6a\xfe\xef\x29\x36\xd6\x74\x0d\x62\x13\x43\xf3\ +\x25\x36\x26\xfc\x7a\x47\x61\x36\x4b\x14\x13\x96\x75\xae\x75\x0e\ +\xb6\x26\xbf\x19\x29\x89\xa3\x37\x90\x29\xf8\xba\xa8\x60\x1b\xed\ +\x63\x59\xaf\x63\x7b\xbe\xb6\x12\xa8\x8e\xa4\xb1\xd7\x6f\x16\x91\ +\x5e\xd7\x49\xe7\x53\x72\x7f\x14\xd7\x87\xb8\x03\x31\xeb\x8b\x5f\ +\x73\x06\xeb\x12\x5c\xc7\xe8\xf5\x7e\xea\xc2\xab\x71\x12\xdb\x03\ +\x3d\x64\xd6\x4b\x1d\xe8\x2e\x9f\x16\xa4\x97\xf2\x94\x7a\xfe\x2f\ +\x56\xdf\x03\x9a\x4e\x86\xb4\x3b\xe0\x21\x27\x65\xc5\xf9\x38\xde\ +\x8e\xd6\x69\x90\xdc\x0c\x40\xf9\x44\xbb\xa2\xc7\x1c\xa4\xd9\xb4\ +\x3d\xca\x85\xac\xe1\xa4\xbb\x78\xd5\xa1\x3f\x83\x74\xb6\xe7\x76\ +\x68\x72\xf2\xa1\xd5\x85\x55\x38\xd7\x51\x57\x9f\xa5\x83\x4d\x07\ +\xe8\x3e\x88\x51\x34\x75\x0d\x46\xbf\x6f\xbf\x3e\x64\x7f\x72\x1e\ +\x2a\x87\x37\xd3\x08\x6e\x13\xf2\xa6\xff\xa9\x5f\xb2\x45\x2c\x7e\ +\x6e\xf4\x2a\x04\x4f\x55\x66\x5f\x25\x46\x7f\x65\xa3\xd8\x3c\x05\ +\x68\x36\xcd\x56\x3a\x0f\x56\xc2\xde\x58\xd3\xb9\xc2\xab\x1f\xaf\ +\xb5\x36\xe1\x95\x8f\xd7\x9a\x57\x2d\x25\xbf\xde\xec\xe2\x52\x41\ +\x4b\x0b\xfb\x94\x6d\x98\xe7\x64\x9e\x6b\x9a\x2b\xcc\x22\x6e\xcf\ +\x47\x71\xef\x6c\xa2\x20\xfa\x6c\x17\x8b\x19\xaf\x81\xe4\xe9\x5a\ +\x74\x55\x35\x1c\x9c\xb2\xea\x94\x50\xe5\x04\x13\xe8\x27\xd6\x81\ +\x76\x9d\xfe\x08\xf8\x1c\x85\xbe\xaf\x09\xe8\x7c\x1d\x07\x4c\x10\ +\x0f\x7e\x3f\xb0\x27\xa0\x8a\x5f\xd0\xc8\xad\xca\x7c\x0e\x8e\x22\ +\xb6\x65\x15\xe9\x40\x67\x7c\x68\x05\x9a\x2b\x0f\xf8\xd6\xe9\xad\ +\xb8\x7b\xef\x5e\x9c\x2e\xee\x68\xee\xb1\x90\xfa\xd4\x75\x91\x9f\ +\x9b\xd0\x38\xe0\xa2\x9f\x53\xca\x74\x66\xeb\xd0\xfe\x3e\x21\xa1\ +\xf9\x93\x3e\x35\x04\xd8\x5f\x07\xbc\xae\x48\xc1\x8b\xa8\x43\x2e\ +\x6d\xd3\x20\x69\x07\xab\x90\xbf\x34\xf6\x13\xff\xef\xf1\xe6\x7a\ +\x16\xff\xfa\x6f\xfd\xeb\xe6\x3b\x8b\x3e\x61\x4b\x70\x84\x23\x1c\ +\xe1\x08\x47\xf8\x31\xa0\x56\x30\x47\x38\xc2\x11\x8e\xf0\x05\x01\ +\x93\xb6\x97\x3c\x57\xfb\xb3\x99\x6b\xb3\xc7\x86\x65\xc5\x0b\x89\ +\x71\xdc\x7a\xeb\x95\x18\xbd\xf5\x4e\x2c\x37\xfc\x22\x30\x17\x4a\ +\x9e\x1a\x77\xbf\x56\x53\x2c\x57\x1e\x19\x1f\x82\xcc\x78\x12\x2c\ +\x91\xa7\xc3\xb5\xb8\x23\x30\x47\xc5\x57\x2f\x42\x98\x2c\xb3\xa8\ +\x83\x53\xfc\x21\x58\xcf\x59\x88\x22\x9b\xca\xea\x60\x6a\x3f\x20\ +\x3d\x21\x76\x82\x8c\x37\x68\x76\xc1\x6d\x51\xcf\xfd\x49\xd4\xf8\ +\x9f\xb4\xd1\x4c\x8b\x06\x6e\xc4\x8e\x27\xd2\x69\x3e\x52\x3e\xe4\ +\xa3\x98\xcc\xb4\x10\x43\xaf\x6e\x3e\xa5\x7d\x7c\x72\x86\x44\x04\ +\x66\x1a\x35\x4e\x52\x7d\xec\x00\xda\x64\xbd\x92\x0d\x21\x59\x83\ +\xb4\xd2\xe5\x93\x00\x95\x8b\x62\x40\x54\xf1\xc0\x6a\x23\xf1\x47\ +\xd4\xe9\x24\x17\x87\xbc\xc6\x83\x0d\x51\xff\x57\xc7\x5c\xf8\xd6\ +\x24\xa6\xaf\x2d\x62\xfa\x8b\xb3\x38\xf9\xda\x36\xee\xbd\xb9\x8d\ +\xc5\xd9\x52\x29\x27\xb1\xe6\x5e\xb4\x16\xb4\x71\x35\x89\x11\x1b\ +\x69\x97\x11\xeb\x4b\x2d\x66\x9f\x6a\x01\x2b\xbc\xe1\x09\xb4\x6b\ +\x36\x06\xc4\x63\x23\x0d\xac\xbe\xc1\xe2\x96\xcd\xb4\x86\xd9\x70\ +\x3b\xd8\x4c\x63\x83\xac\x64\x6c\x0e\xf8\xbf\xd8\xd0\x61\x73\xc2\ +\x1b\x6f\xea\x5f\xe8\x79\x53\x82\xd7\x3c\xb2\x31\x91\x9b\x13\x3c\ +\xe1\xe6\x27\x81\xbc\xa9\x21\x9e\x37\x36\xe4\x1b\x1b\x20\x34\xb8\ +\x16\xdc\xe0\xdc\x54\x43\x27\x83\x37\xd5\xa0\x59\xcc\xa3\xcb\xcd\ +\x85\x76\x83\x01\x9e\xd3\x56\xa0\xee\x8c\x06\x3c\xc7\x07\x3c\x43\ +\xf1\x9d\x75\xf2\xbb\x05\x9f\x65\x25\x27\xe6\x36\x23\xda\xcb\xdc\ +\x64\x96\xf7\x92\x1e\x0e\x63\x8e\x0f\x59\x45\x67\x6e\xc8\x74\xe4\ +\x46\x9b\xf3\x6c\x75\x41\x00\xc1\xaf\x72\xb6\x1b\x34\xe8\x70\x0e\ +\x5a\x56\x01\x59\xc9\xfd\x71\x9a\xb4\x05\x8f\x27\xb7\x3a\x99\x3e\ +\x80\xfb\x17\xbf\xd2\xa7\x9f\xbb\xaf\x3b\x43\xcb\x32\x46\x3a\x78\ +\x7d\xbc\xf3\xc1\xa0\x38\xb4\xb2\x41\x07\x6e\xaa\xa2\x69\xa2\x82\ +\xfa\x72\xb3\xe3\xb4\xa4\x2b\x3b\xd6\xad\x0f\x74\xf1\xb2\x7d\x53\ +\xd7\xb8\x42\x27\x77\xa0\x7c\x83\xfa\x52\x1d\x11\xf7\x0d\x22\xca\ +\xee\x3a\xc9\x3e\xc4\xab\xb7\x46\xee\x4f\xd9\x17\xdd\x5f\x79\xc5\ +\xa3\xe2\xde\xcc\x75\x7f\xad\x80\xac\xf5\x7b\xe1\xf6\xa4\x66\xdb\ +\x44\x36\x1f\x1b\xd2\xe5\xd5\x8f\x3c\xa1\xb6\x52\xc8\xd7\x41\x72\ +\x7e\x6d\x74\xae\xad\x63\xfd\x6c\x15\x9b\x47\x0a\x9f\xe8\x9c\xfc\ +\x04\xac\xf0\x94\x85\xbf\xf2\x95\x3e\xf5\x32\xe1\xdc\x3e\xe1\x69\ +\x35\x9d\xd3\xf7\x76\x31\x7b\x3d\xe2\xe4\xad\x7d\x2c\x5e\x1f\xc5\ +\xfc\x7e\xc4\xfc\xde\x3e\xa6\xb7\x34\x04\x9c\xed\x62\x3c\x53\xf9\ +\x35\x66\xb7\x5f\x19\x6b\x24\xd3\x81\xb8\xc6\x37\x6f\xc4\xc0\x54\ +\x3d\x14\xb4\xe1\xe8\x60\x0c\x2a\xd4\xd7\x61\xc7\x50\x38\x84\x96\ +\xbe\x03\xdb\xaf\x30\x84\x16\x1f\xca\x9e\x37\x67\x99\x55\x0a\x1b\ +\xcc\x48\xf5\xad\xc6\xba\x93\xf9\x2c\x26\xaf\xdc\x8b\xd1\x9d\x3b\ +\xb1\x55\xdf\xdc\xed\x46\xb1\xe4\x36\xdd\x77\xdf\x8b\xcb\x4f\x3e\ +\xd1\xb8\xb4\xf4\xbd\xc3\x66\x00\x74\x98\x55\xc6\x2c\xa6\x5e\xca\ +\x7e\xc6\x93\xd7\x07\xc5\xeb\x12\x48\x2a\xa2\x06\x22\x15\xdc\x6f\ +\xbb\xbe\x58\x50\xb2\x0c\x3d\xbf\xab\x4e\x81\x4d\x2b\x0f\xfa\x35\ +\x4d\x42\x76\xfc\x6a\x7c\x52\xd7\x25\xff\x10\x44\x5a\x4f\xe9\x43\ +\xd3\xb3\xf8\xb5\x7f\xef\xdf\x8f\x53\xda\x10\x5d\xdb\x48\x79\x16\ +\xe0\x06\x58\xfe\x53\x82\x17\x64\xf7\x99\x30\xf4\xe3\x27\x49\xf7\ +\x33\x07\x59\x38\x8e\xb4\xdd\x6c\x16\xf1\xcb\xbf\xf8\x6f\xc7\xa7\ +\x9f\xe8\x3c\x67\xac\xa0\x1e\x14\x5c\x1d\x6a\xbc\x1c\x92\x0e\x1b\ +\xc9\xb1\xfe\xd0\x41\x8b\x81\x73\xfc\x03\xdf\xd4\xfa\x7c\xb0\xae\ +\xfa\x49\x7b\x42\xad\xc1\x8f\xb6\x81\xf6\x8b\x1b\x2e\xff\x63\x6b\ +\xec\x4d\x3a\x02\x63\x8c\xff\xff\x0f\x61\x37\xc6\x1c\x62\xcb\x6e\ +\x66\xea\xb8\xd2\x1f\x7c\x12\xba\xdc\x3b\xe2\xc5\xf0\xbc\xa8\xe6\ +\xaf\x32\xee\xf9\xa4\x33\x39\xd4\xea\xef\x55\x37\x22\xf1\x50\x9d\ +\x53\x1f\x2e\xd7\x77\xe6\x56\xa9\x01\x56\xd9\x15\xf1\x9c\x58\x84\ +\x86\xdd\x38\x99\xee\xe2\xce\xe9\x2e\x1e\x9c\x45\xdc\xbf\xbb\x8f\ +\x93\x5b\xeb\xdc\x64\xcc\x24\xd2\x65\x63\x4d\x7d\x41\xf5\x76\xa5\ +\x6b\xc0\x23\x8d\xf3\x9f\x2a\x5c\xf2\xa3\x25\xfe\xe3\x4c\x8d\x9a\ +\xaf\x5e\xc4\xfb\xc4\x0e\x1c\x4c\xd3\xf6\xd2\x51\x60\x13\x6d\xe3\ +\x27\xd4\xd4\xbf\x76\xab\xdc\x9c\x60\xf3\xa2\x9e\x54\xf3\x6b\x24\ +\xa5\x97\xd7\x50\xac\xc9\x3e\xc1\x1d\x2f\x43\x3f\x1f\x40\x86\x0e\ +\x99\x20\xd3\xb5\xb1\x3c\xe8\x3e\x9e\x43\xc1\x27\xa6\x63\xd9\xd6\ +\xa1\xd2\x64\xdc\xba\xa6\x2b\x5e\xb4\x0e\x89\x5d\x6f\xa2\x9d\xb7\ +\xe2\x4e\x6a\x8b\xa2\x07\x7a\x49\x9a\xe6\xd3\xf3\x13\x13\xb2\xff\ +\x91\xa7\x1d\x52\x48\x7d\x68\x78\x1c\x9b\xee\x41\xf0\xa7\x97\xe7\ +\x1a\x01\x3b\xf5\xb9\xa1\x6b\xc3\x29\x39\xf8\x00\x89\x75\x94\xae\ +\x0e\x0e\xfe\x08\xb3\x86\xb2\xd8\x50\x3a\x66\x54\x3d\xa2\xdb\xf1\ +\x28\x4b\xe3\xa5\x2f\xb9\xf9\x09\xd5\xf3\x75\x30\x0d\x76\x1a\x5d\ +\x23\xfa\x7a\xc8\xcd\x2d\xec\x67\x7b\xa3\x2f\x3e\x7d\xaa\xe1\xf6\ +\x29\x3b\xe8\x38\x38\x0e\xad\x8f\xec\xd9\x86\xe5\x95\x8f\x42\xbe\ +\xc1\x20\x69\xb0\x69\xdb\xd5\x5c\x47\x1f\xcd\xf2\xe5\x73\x06\xf7\ +\x41\x30\x1f\xe4\x8a\xf3\x31\x9f\x35\x84\xf2\xe0\x55\x8e\x5b\xcd\ +\xf7\xe9\xa7\xfe\xdf\x35\xd9\x67\x13\x19\x7d\x9e\x4a\xcb\x8d\xb5\ +\xad\xd7\xa4\x4b\xe9\x5d\x2f\xf7\x71\x79\xb5\x53\xd8\xc6\x33\x9d\ +\x3f\x57\xba\x2e\x5e\x69\x2d\xf1\x4c\x6b\x88\x27\x9a\x63\x2d\x97\ +\xfc\xef\x22\xfe\xa6\xcf\x4c\x02\x38\x5f\x19\x91\x38\x4d\x79\xd5\ +\xea\xed\xc5\x38\x5e\x39\x9d\xc4\x83\xd3\x69\xdc\x39\x19\xc7\x5c\ +\xeb\xc0\x09\x3f\x5c\x52\x9f\xec\xc6\x09\xbe\x2e\x7b\x5a\x4a\x2a\ +\x23\xde\x7c\x4d\xb2\xa0\xb4\x0a\x1d\x84\x03\x78\x8e\x61\x3b\x84\ +\x7e\x20\x6a\x96\x15\xf0\xa5\x1f\xa0\x0a\x4a\x06\x58\xae\x91\x45\ +\x3a\xf8\x9a\x53\x80\x92\x09\xf7\x23\xe8\x10\x5a\x5a\x7d\x1d\xb4\ +\xee\xbf\x77\x3b\x4e\xe7\xa7\x66\xd3\x3f\x36\x3b\x46\x2b\xda\xb6\ +\x59\x79\x91\x9d\xce\xd2\x80\x40\xaf\xe9\x66\x06\xbc\xd1\x60\xcc\ +\x0f\x53\xd1\x79\x81\x99\xec\x5d\xb5\xb1\x05\x4d\x1f\xa0\xde\x3b\ +\x9b\x9f\x07\xbd\x41\xa8\x61\x12\xd7\x87\x18\x59\x7d\x10\x42\xea\ +\x0b\xab\xab\xbb\x3a\x5f\xe6\xf1\xca\x44\x93\x65\xf1\x78\x42\x2d\ +\x65\xe8\x71\xe8\x6d\x1e\xe1\x08\x47\x38\xc2\x11\x3e\x1f\x3c\xb7\ +\x3d\xc2\x11\x8e\x70\x84\x2f\x0c\x98\xb4\xfd\x14\xe0\xa5\x98\xb5\ +\x91\x49\x4c\xcf\x16\x31\x7f\xf7\xad\x78\xb4\x1e\xc5\x43\x5e\xfb\ +\x68\x11\x37\x11\xb8\xe9\xc7\x0d\x59\x02\x0b\x93\x7e\xe2\xe9\x89\ +\x6f\x73\x42\xb8\x9b\xff\x43\x4b\xc8\x62\x08\x6c\x45\xf4\x08\x9a\ +\xab\xb3\xe6\xf1\xba\xe7\x33\x81\x69\xbc\x72\xc6\xde\x58\x07\xcd\ +\x8e\x33\xef\x94\x36\x38\x88\xde\x90\x01\x9e\xb0\x2b\xbf\xfc\xc5\ +\xaf\x16\x84\xb2\x33\x3d\x99\xc5\xf4\x7c\x11\x63\xe1\x98\x4e\xe4\ +\x73\x3e\xd1\x95\x8b\x2e\x05\x2d\xba\x26\xb3\xb1\x02\xef\x2f\x2a\ +\x1f\x80\x21\x6e\x61\x00\xe4\x35\xe4\xb7\xe2\xb6\xa3\xc1\x0b\xbc\ +\xda\x04\xa3\x22\x9a\xcc\x69\x44\x53\x81\xfa\xb6\x14\xfe\x1f\x08\ +\x58\xb8\x01\x9f\xbb\xc4\x63\xe5\xd4\xf8\x0a\xd6\x56\x9c\x5b\xb0\ +\xd3\xf9\x2e\x4e\x6f\x8d\xe2\xce\xbd\x49\xdc\x79\xb0\x88\xfb\x5f\ +\x9a\xc6\xd9\xaf\x8d\x62\xfe\xeb\x9b\x98\xfd\xe2\x55\xc4\x9b\x57\ +\xb1\x95\xce\x66\x7c\x1a\xeb\xb9\x16\xad\xcb\x71\xcc\x3e\xd5\x82\ +\xf2\xe1\x26\xf6\x9f\xee\x62\xfd\x44\x8b\x8e\xa7\x5a\xe0\x5e\x8e\ +\x63\x27\xf5\x9d\x16\xb0\x6c\xaa\x6d\xd7\x94\x2e\x17\xcf\xfc\xc7\ +\x81\x5f\xf7\xb8\xd1\x62\xb7\x85\x35\x9b\x6f\x5a\x2c\x7b\x53\x41\ +\x32\x36\xcc\xd8\x64\xe0\x89\x36\xa5\xe5\xe7\xa3\x6c\x94\x79\xf1\ +\xcf\xa6\x83\xfa\x05\x1d\x20\x37\xcf\xd0\xc9\x8d\x07\x6f\x90\x21\ +\x37\x0f\x59\xea\x78\xd3\x8c\x45\x3e\x37\x0e\xdc\x79\x44\xd3\xb0\ +\x5a\x70\x3b\x70\xe3\x99\xa0\x05\x7c\xdb\x60\xcb\xa0\xf4\xdd\x46\ +\x5c\xa5\xed\xfa\x22\x87\xc4\xee\xa3\x30\x1b\x0f\x18\xc8\x7b\x19\ +\x21\xed\x65\x1a\x40\xf1\x26\x77\x70\x73\x18\xe7\x21\x79\x19\x8a\ +\x40\xa1\xf1\x74\x30\x32\x14\x13\xfb\x7c\x5a\x1e\xc5\x36\x9f\x3a\ +\x18\x60\xd7\x83\xb1\x42\x2b\x5f\xd3\x69\xfc\x1b\xbc\xc6\xcf\x0d\ +\x2c\xe2\xd8\x68\x37\x4c\x08\x83\xfc\x1a\xab\x11\x4d\xe8\x6c\xe1\ +\xf1\xe5\x50\x76\xb1\xa1\xf2\xe5\xcd\x09\xf2\xcc\x05\x33\x31\xe4\ +\xde\x3e\x90\x0e\xbc\xf4\xd7\x82\x4c\xef\x48\xd6\xa7\x6d\x01\xf0\ +\x4b\xde\xf4\x89\x77\xc1\xed\x9e\xfe\x1f\xd4\x85\x69\xf5\x8d\x16\ +\x77\x5f\x91\x7e\x85\xec\x4b\xd9\x7f\xda\x06\x1a\x7c\xc6\x2c\x3f\ +\x6d\xc9\x4d\x70\xf5\x49\x6f\xa4\xad\xd8\xdc\x5a\xe7\x46\x2f\x9b\ +\xc5\xd5\x5f\x33\xf0\x64\xa5\xe2\x4a\xef\x73\x82\x73\x40\xc1\x9b\ +\x69\xf5\x5f\x82\x6c\x44\xaf\xe1\x09\x6f\x74\x7e\xe4\x39\xa3\xfa\ +\xd6\xf9\xb5\xf5\x7f\x12\x8a\xff\x6c\x1f\xcb\x4f\xa5\xf7\xb1\xce\ +\xb7\x8f\x24\xfb\x58\xe7\xca\x63\xf9\x29\xd9\x88\x72\x8c\xa5\xc3\ +\x2b\x8d\x34\x3e\xed\x6e\xcb\x97\x07\xd7\x31\x7b\xe7\x32\x4e\xbf\ +\x76\x15\xa7\x5f\x59\xc7\xc9\xbb\xeb\x38\x7d\x73\x1f\xa7\x6f\x8c\ +\xe2\xf4\xf5\x6d\xcc\xee\xed\x63\xc6\x26\x1b\xff\xc5\x36\xd3\x38\ +\xce\x8d\x5d\xdf\xf4\xe6\x06\x78\xde\x04\x67\x00\xa1\x45\x3c\x8c\ +\x08\x78\x42\x2a\x3f\x8c\x87\x02\xc6\x23\xb9\x00\xb8\x39\x0b\xa0\ +\x5b\x1a\xa0\xd1\xe0\x21\x3f\x61\x90\xb0\x83\x17\xf1\x94\xb6\x12\ +\x1b\xe3\x9b\xb0\xaf\x29\xca\x90\x14\xbb\x09\xe5\x10\x71\x7e\x1e\ +\x93\x37\x5e\x8b\x38\x3b\xd3\x70\x38\x8e\xd5\x68\x1d\xe3\x27\x4f\ +\xe3\xd9\xef\x7f\x23\xae\x1f\x3d\x76\xbf\xc8\x1d\xb5\x02\xec\x74\ +\x24\xfd\x3e\xcb\x88\x6d\x70\x07\xce\xab\x31\x0b\x9b\x3e\x04\xd7\ +\x85\xf2\xe8\xfb\x25\xf1\x16\xd2\x57\x22\x1d\x25\x1b\x49\x15\xb4\ +\x88\x1d\x68\x75\xae\xb2\xa9\x70\x6c\xa8\xe5\x4d\x7a\x86\x34\xb5\ +\xbd\xc6\xaf\xc7\xea\xab\xb3\xd3\x3b\xf1\xe6\x57\xbe\xa2\x76\x51\ +\xbf\xe8\xfc\x22\xbd\x0d\x71\xe8\xe1\x46\xf4\x2f\x14\xec\xdf\xcf\ +\x09\xfc\x18\xf5\xca\xf9\x34\x51\x9f\xdc\x4c\x76\xf1\x1b\x5f\xfe\ +\x6b\xba\x2e\xbf\x12\xcb\xd5\x54\x7c\x12\xeb\xa8\x31\xc6\xad\xed\ +\x8e\xcd\x18\x25\x34\xa8\xa3\xae\xcf\xdc\xc8\xab\x45\xdd\xe5\xf4\ +\xe1\x1a\xec\xfe\x37\x80\x4a\xe9\x23\x30\x94\xba\x5b\x13\x3c\x0e\ +\xe8\x24\x72\x9e\x68\xb4\xf0\xa3\x20\x9d\xec\x34\x45\x64\xaf\x15\ +\x30\xa6\x68\xae\x34\xe5\xc7\x48\x52\x53\xcc\x0a\x1e\x9f\xad\xdb\ +\x52\xb5\xd2\xfd\x98\x90\x59\x1a\x20\x1d\x1d\xf0\x0e\x21\xcf\x22\ +\x03\x99\xa8\x7e\x55\x4b\xe2\x64\x9e\x87\xd7\x21\x94\x80\x3e\x4d\ +\xb3\xcf\x3c\xd0\x5f\x05\x4a\x61\xbe\xf4\x8d\x33\xb5\x83\x5b\x51\ +\x02\x9e\x0e\x9f\x4b\x78\xfb\x74\x1b\x6f\x68\xee\xf5\xf6\x83\x6d\ +\x3c\x78\xed\x3a\x4e\x4e\xd7\x7e\x8d\x36\x63\x0d\xfa\x13\x9e\xd4\ +\xd6\xb5\xe6\x5a\xd7\x80\x4f\x9e\xec\xe3\x87\x0f\x77\xf1\xe1\x93\ +\x88\xc7\x9a\x6b\x5d\x78\x93\x20\x62\xa5\xf9\x4e\x6e\x2c\xf4\xd7\ +\x6a\xdf\x60\xee\x3e\xcd\xff\xd4\xe3\x75\x8f\x7e\x4a\x4d\xd7\x93\ +\xd5\x6e\xe5\x4d\x36\x3f\x0f\xc4\x53\x40\x6c\x66\xd4\xa6\x06\xa1\ +\x3d\x6d\xa4\x2b\x8b\x3e\xe2\x29\x10\xeb\x2c\x4b\xa6\x11\x47\xd5\ +\x56\x9c\x41\xbe\xbe\x6e\x12\x27\xe0\x9b\xd2\x35\xe8\x6c\x74\xfa\ +\x39\x18\x62\xcd\x58\xd7\x61\xf3\x9b\xdc\x36\x12\x8b\x10\x56\x9e\ +\x2e\xaf\xfc\xd2\x98\x9d\x7c\x34\x33\x1d\x36\x1c\x87\x2f\x1e\x5c\ +\xfb\xc9\xf5\xdd\x34\x08\x4d\xd1\xb4\x87\xaf\x6b\xe2\x11\x10\x25\ +\x12\x1c\x0c\xd2\xcf\x05\x7f\x5a\xbd\x17\xcf\x81\x7c\x0f\xc2\x30\ +\xd9\x20\xae\xc3\x30\x9d\xeb\xc1\x65\xcf\x72\xa4\xdd\xb4\x7f\xa0\ +\xeb\x8b\x49\xb6\x4d\xea\xa7\x6e\xda\x4e\x9e\x71\xa5\x68\x7c\xdb\ +\x33\x59\x3e\x53\x8f\xb2\x43\x39\x33\x6f\xf1\x8c\x7a\x7d\xf2\xa2\ +\x8c\xce\xa7\xa5\xa9\xba\xcf\xfe\xd1\xe2\xe8\x65\x3a\x1d\x32\xe7\ +\x01\x6d\xb9\xb1\x6c\x99\xea\xfb\x98\x66\x33\x8a\xf5\xfd\xcf\x9b\ +\x62\xa2\xf3\x7f\x4d\x13\x77\xfd\x52\x79\x59\x4f\x3a\xa6\x1d\x88\ +\xd3\xb7\x73\xad\xb1\xd1\xfc\x9f\xb9\xd3\x6a\xa5\xf9\x91\xd6\x13\ +\x5e\x4e\x94\x0f\x52\x95\x8e\x74\x35\xa7\xba\xd6\x94\xe8\xa9\x74\ +\x2e\x14\x56\x4a\xc3\x9a\x8f\xf3\x75\xcc\x8f\xc1\x84\x73\xdd\xaa\ +\x31\x4a\x75\x70\x4b\x4b\xbf\xd7\x6e\x6f\xe3\xad\x3b\xdb\x78\xe5\ +\xf6\x2e\x4e\xa6\xd3\x98\x4d\xd7\xba\xf6\xf2\x1f\xb6\x59\xa6\x5a\ +\xa9\x41\xaa\xde\x64\x89\xba\x73\x14\x46\x42\xeb\x66\x6e\x42\xf3\ +\x3f\x2b\xe8\x98\xe8\x85\x80\x8d\xe7\xd2\x78\xdc\x78\x1e\x9a\x06\ +\x9b\x69\xd8\x74\xbb\x12\x85\x06\x77\x21\xf9\x3d\x64\xbc\xf3\x59\ +\x61\x3a\x9d\xc7\x9d\xf3\x5b\xc2\xaa\x10\xc1\x4a\x63\xd3\x72\xa5\ +\xb5\xbf\x6d\x76\xa3\xe9\x0b\xa1\x93\x89\xe8\x34\x41\xc4\x1d\x15\ +\x97\x75\x2b\x17\x84\x12\x0f\x9c\x2b\x7f\x7b\x01\x71\x35\x7f\xe5\ +\x9d\xf1\x84\x22\xac\x3f\x84\xcf\xe0\x2b\x62\xab\x32\x60\x1b\x9a\ +\x2c\xd1\x05\xe8\x97\x4b\x75\x92\xfb\x77\xbe\x16\xa7\xb3\x05\x43\ +\x9a\x21\xd7\x29\x03\x68\x2e\x1d\xe1\x08\x47\x38\xc2\x11\x3e\x17\ +\x26\xff\xa9\xa0\xe8\x23\x1c\xe1\x08\x47\xf8\x99\x85\x1f\x67\xee\ +\xc7\x74\xf1\xf3\xf5\x52\x3a\x19\x8f\x63\xb9\xbc\x88\x4f\xff\xd1\ +\xef\xc6\x62\xba\x8a\xd3\xf9\xd4\xbf\x36\xf6\xe2\x5e\x72\x16\x36\ +\x2c\xb2\x0e\x6e\xba\xb7\xc9\x28\x37\x01\x89\xe6\x4c\x5a\xb4\x66\ +\xd2\x9a\xc5\x8e\xb8\x71\xcb\xc6\x14\x13\x6b\x64\x2d\x48\xbf\xfd\ +\xa2\xd9\x29\x33\x59\x43\x49\xb4\x19\xb5\xf2\xeb\x27\xd7\x05\x9d\ +\x62\xba\x31\x30\x61\x28\x6f\x32\x02\xec\x79\xcd\xe3\x28\x26\x67\ +\xb3\x38\x7b\x70\x1e\x93\xd3\x99\xcb\x92\x37\xca\x57\x75\x53\x5e\ +\x7a\x9a\xd0\xe7\x26\x83\x16\x53\xdc\xdc\xf0\x66\x0e\x0b\x2c\x81\ +\x4d\xea\xc0\x8d\x19\x47\x45\x77\x59\xd8\x0b\x41\xe6\xec\x03\x62\ +\xea\xc7\x65\x6c\xf2\x5c\x42\x28\xe7\xa4\xad\x97\x74\x26\xf2\xfc\ +\x3f\xe9\x09\xf5\x27\x92\xaa\x64\x45\x30\xde\xc5\x58\x3c\xfe\x13\ +\xcd\x4f\xd1\xf1\xff\x49\xc2\xd3\xc5\x2e\x66\x0b\x2d\x08\xcf\xc5\ +\x7b\xf5\x24\x66\xef\x4c\xe3\xf4\xf5\x59\x8c\x7f\x71\x1f\xd3\x77\ +\x57\x71\xeb\xf5\x4d\x4c\xcf\x2f\x62\x3e\xd5\xa2\x75\x35\x89\x15\ +\x0b\xb1\x6b\x95\xeb\xa9\x74\x1e\x6a\x21\xf5\x48\x8b\xdc\x0b\x2d\ +\x48\x2f\xe5\xc5\x95\xc2\xa5\xbc\x55\xb9\x77\x1b\xd5\x81\xda\xde\ +\xed\xcd\x42\xc7\x8b\x1d\x7c\x1b\x42\x63\xd0\x47\x54\x4e\xd7\x5d\ +\x0b\x59\x22\x6b\x88\x80\xa6\x6c\xd9\x0f\xc0\x87\x74\x3e\x55\x93\ +\x3c\x16\x61\x79\x63\x04\x1a\x03\x22\xf9\x39\xa1\xea\xca\x7d\xcb\ +\xc9\x38\x64\x1d\x9a\x26\x3f\x21\xda\x27\xeb\x3d\xd3\xd9\x17\xd3\ +\xa4\x75\x92\x02\x88\x52\x72\xc2\x0e\x19\xd2\x56\xd2\x2f\x84\xcc\ +\x38\xf3\xca\xaf\xe8\xb2\xe3\x23\x38\x75\xba\x9c\x24\x37\xaf\xf8\ +\x69\x22\x39\x40\x66\x47\xbc\xa5\xc0\x30\xfd\x3f\x25\x09\xa5\x2d\ +\x96\xf5\x10\x49\xde\x6c\xc0\x48\x37\x7a\x99\x71\x1e\xd2\x96\xcf\ +\xa9\xb2\x5b\x01\xda\x75\xcc\x79\x49\xdd\x5b\x59\xa1\x6c\xb9\xde\ +\xa0\xc1\x3a\x24\x2a\x2c\x18\xf6\xf1\x26\x6b\x08\x59\xd6\xbb\xc6\ +\x0f\xe2\x29\x12\x40\xa4\x7e\xe3\x75\x65\x1d\xd8\xb6\x5e\x63\x27\ +\xb2\x3c\x71\xa5\xf5\x41\xc1\xa8\xb0\xe3\xd9\x79\xad\xee\xc3\x2e\ +\xfc\xdf\x2e\xdc\x8d\xd1\xb9\x9d\x9b\xb5\xe2\x0b\xc7\x46\x34\x1b\ +\x68\x9b\x4d\x84\x37\xca\x32\x78\xb3\x17\x3e\xf1\xd5\x66\xf0\xa4\ +\xe5\x36\xc7\x08\x6e\xe0\x90\x96\x4d\x34\xf1\x5a\x3c\x9f\xc4\x14\ +\x66\x93\x0e\x1e\x63\x69\xbb\x11\x8e\x2b\x00\xc3\x4b\x85\xb1\x5c\ +\x60\x03\x7a\xa4\x30\x51\x96\x6c\xa6\xe0\xda\x9e\x4d\x74\x7f\xa4\ +\xc0\xbd\x0f\xc6\x83\xb9\xd0\x2d\x9d\xe3\x67\x9b\x18\xdf\xde\xc6\ +\xe2\xde\x38\x4e\xef\xcf\xe2\xe4\x81\xf0\xbd\x99\xe2\xd3\x98\xdf\ +\x19\xeb\xdc\xd7\x18\x71\xba\x8f\xd9\x89\xf4\x35\x56\xf0\x60\x2e\ +\x1b\x6c\x3c\x75\xd8\x6d\xb2\x79\x8c\x49\x9a\x27\xa6\x68\x66\x07\ +\xf1\x21\x7c\x4e\xba\x1f\x24\xbf\x03\x22\x2e\x4a\x2f\x3f\x00\xd2\ +\x16\x69\x70\xa4\x15\x1c\x48\x1a\xb6\x45\x32\x42\xfe\xcd\x17\xf7\ +\x47\xc6\xbb\xc9\x38\xb6\xf2\x75\xa7\x31\x6f\x7f\x32\x8d\xfb\xef\ +\xbc\x11\xf3\xbf\xf6\xaf\xc5\xec\xc1\xeb\xaa\x91\x51\x6c\xd7\xd7\ +\x71\xfd\x47\xdf\x88\x87\xbf\xff\xfb\xfe\x7f\x21\x7e\x64\x2d\x55\ +\xd9\x13\x51\x3e\xd8\xbe\x8e\xce\x91\xf2\x18\xe9\xa8\x7c\xdc\xe7\ +\x85\xda\x8f\x46\xba\x73\x00\x3d\x63\x12\x91\xa0\xb0\x08\x77\xb7\ +\x6a\x37\xf6\xee\xf8\xd5\x3d\x3f\x26\xc8\xfa\xe0\x23\xc8\x68\x1e\ +\x1c\xc4\x27\xe8\x63\x0f\x64\x9f\x4d\x4c\x97\x59\x61\x31\x9f\xc5\ +\x74\x36\x75\xd9\xd1\xf1\x13\x26\xea\x00\x1f\x73\x53\xe8\x17\xbe\ +\x1e\xef\xfe\x4f\xfe\xbd\x38\xe7\x75\xc5\x06\x5b\xb0\x0d\x68\x07\ +\x33\xbe\x00\xf8\xa2\xf2\xf9\xcb\x06\x37\xcb\x4d\x9b\xc2\xe3\x7c\ +\x76\x3b\xf4\xf4\x48\xd7\xd9\x93\xf1\x59\xfc\x57\xff\xfc\xbf\xd4\ +\x35\xfa\xd3\x38\x3d\x6b\xed\x95\xed\x87\xba\xbb\x67\xb5\x5f\xbb\ +\x76\x00\x3d\xcf\x31\x0e\x07\x3c\x2c\x81\x79\x3d\x35\xfd\x13\xd9\ +\x41\xfa\x4a\xd3\xa0\x8b\x41\xb8\x0f\xd2\x5f\x19\x6c\x92\x6d\x01\ +\xcc\x46\x1f\x26\x7f\x0e\x7c\x16\x29\x3f\x36\xe6\xe6\x8b\x93\x38\ +\x59\x68\x2e\xa1\xc2\xd0\x67\xaf\x2e\x57\x71\xbd\x1e\x07\x4f\xa0\ +\xa4\x5a\xf3\xa6\x8c\x0e\xfc\xfc\x91\x70\xe3\xa6\xf2\xd0\xdd\x1f\ +\xe5\x23\x90\x9b\x59\x0a\xd6\xcd\xd4\x9c\xb7\x8e\x76\xe9\x55\x8e\ +\x74\xd4\x42\xd8\xfc\x38\x89\xb8\xe7\x33\x68\x20\x32\xa5\x31\xd3\ +\xb4\xe6\x62\x92\xcd\x34\x86\xde\x99\xed\xe2\xfe\xad\x71\xbc\x71\ +\x7f\x1f\x0f\x78\x7a\xf8\x7c\x1d\x93\xad\xe6\x9b\x6a\x7f\x5f\xf7\ +\xf8\x11\x95\xae\x3f\x3c\x71\xf3\xe8\xe9\x28\x3e\x78\x18\xf1\xe9\ +\xb3\x51\x3c\xf1\x06\x9a\xe6\x63\x1a\xe7\x57\xab\x9d\x37\x0c\xb6\ +\x1a\x3f\xd8\xeb\x64\x8c\x4e\xa0\x5d\x2b\x6f\x0e\x55\x77\x8d\x87\ +\x77\x6c\x6a\x78\x6a\xc4\x40\x59\xfa\x9e\x32\x95\x4e\xe3\x01\xfc\ +\x78\x0c\x32\x8f\xa4\xee\x34\x74\xa8\xb1\xb1\xe2\xad\xea\x53\xbf\ +\xb4\x8b\xa0\xfc\xf4\x17\x8f\x52\xc5\x6c\x7d\xa2\xe9\x36\x20\x9e\ +\x83\x64\xa3\x91\x0e\x34\x3a\xbe\x00\x76\xb5\x41\x6a\x28\x5d\x03\ +\x0f\xb8\x0d\xe8\x69\x5c\xd3\x9d\x40\xf3\xe0\x56\x61\x8a\x8b\x67\ +\x4d\x2e\x9c\x02\xfb\x98\x9c\x1e\x2a\x83\x96\x4f\x2b\x97\xb5\x9c\ +\xff\x0d\xfd\x03\x48\xff\x6e\x02\x29\xbc\x31\x55\x69\xbb\x79\x8c\ +\x94\x53\xdf\x1a\xf9\xb5\x88\xb2\x11\x94\x02\x9f\x2d\x46\xd8\xca\ +\x5c\xbc\x01\x2e\x42\x94\x74\x4c\x0b\xdb\x78\x61\xf1\x52\xb5\xf4\ +\x0a\x93\xc2\x32\x4f\x26\x88\x66\x1e\xa9\x4d\x20\xbd\x70\xd9\xf2\ +\x0f\xf6\x0c\x29\xb3\x9e\x59\x65\x1f\x2c\x5b\xb9\x01\x9a\xed\xc0\ +\x86\x85\x66\x38\xde\x20\xcb\xd7\x40\x8a\xd6\xa7\x61\x6f\x9c\x11\ +\xd7\xb8\x60\x2e\x73\x22\xd3\xfa\x08\x93\x66\x4b\x3a\xb9\xc2\x66\ +\x98\xa6\x4f\xde\x28\xf3\x1b\x53\x14\x56\x60\xf1\x58\x8f\x38\x3f\ +\xca\x46\xdd\xb6\x73\x5c\x17\xfd\x8d\x78\xd8\xe0\x3c\xda\x6a\xfd\ +\x02\x9f\xd7\x3a\xba\x7d\x0b\x4c\xea\xc0\xff\x1e\x2e\xb4\x26\x5a\ +\xcc\x34\x7f\xda\x4d\xfc\xc3\x1c\x78\x9c\x4b\xa9\xa4\xf3\x57\xb4\ +\x66\x50\xac\x38\x54\xe4\xcc\x2f\x83\x15\xb2\x4e\x44\x56\xac\x87\ +\xe2\x57\x65\x19\x9e\xd3\x01\x06\xcc\x24\x5b\xc2\x9b\xda\x69\xa8\ +\x37\xf7\x82\x0c\x1a\x74\x6d\x27\x90\x4a\xb3\x64\xab\xc4\x8b\xc7\ +\xbc\xe3\xfc\xf4\x56\x7c\xf9\x9d\xb7\xe3\xec\xfc\x96\xd6\xff\x93\ +\xb8\xb8\xb8\x8c\x4f\x1e\x7e\xa2\x7a\x7e\x2a\xd3\xad\x9f\x3b\xa5\ +\xa9\x21\x74\x1c\x11\x6d\xfc\xf0\x35\xc8\x24\x63\x9f\xc6\x55\xad\ +\xfd\x59\xbf\xf9\xf5\xb9\xc8\x1a\xe0\xa3\xdd\x84\x97\x7c\xda\xdd\ +\x4f\x28\x7a\xce\x5b\x65\x38\x28\xde\x41\xa4\x07\xd8\x03\xd3\x40\ +\xf6\x57\xf5\x11\x1a\x8e\x3e\xaf\xbc\x79\x62\xf7\xfd\xf7\x23\xfe\ +\xe6\xd7\x7e\x27\xbe\xfe\x2b\x7f\x5d\x4e\xe1\xa3\xd5\x2a\xfd\x0d\ +\x23\x47\xf8\xb9\x84\x63\x2b\x1f\xe1\x08\x2f\x0f\x8e\x1b\x6a\x47\ +\x38\xc2\x11\xfe\x62\xe0\x25\x5f\xcd\x7f\x1c\x73\x3f\x52\xa7\x4d\ +\x74\x35\xf9\xd4\xf2\x25\xde\xfb\x07\xbf\x17\xdb\xcb\x8f\xe2\xf6\ +\x62\xee\xd7\x06\x7a\xe1\xc4\xe4\x94\x4d\x16\xcd\x7a\xdb\x02\x2a\ +\x27\xb2\x4c\xa2\x95\x14\x13\x65\xa7\xdd\x40\x01\x73\xc3\xd6\x37\ +\x7c\x7c\xa3\x3e\x79\xe8\x11\xef\x6f\x04\x75\x49\x6d\xb2\x01\x0b\ +\xa5\x5c\x68\x6a\x62\x5f\x02\x4f\x7e\x05\xb6\xaf\xd0\x16\xfd\x40\ +\xb3\xd1\x58\xb2\x9c\x2e\x2a\x8c\x3d\xab\x9f\xc4\xfc\xf6\x22\xe6\ +\xaf\x9e\xc4\x42\x0b\x08\x5e\x8d\xb6\xbb\xd8\xc4\x92\xff\x2c\x5a\ +\x6f\xfc\x4b\x63\xe7\xa3\x80\x2d\xcd\xbf\x63\xc3\xcd\x70\x56\x76\ +\x43\xcf\x6a\x01\xd7\x1f\x0b\x92\x91\x61\x00\x8e\xfa\x90\x0b\x3b\ +\x16\xab\x78\x06\xab\x2d\x4f\x9b\x35\xe6\xfe\xdc\xa0\x80\xcf\x06\ +\x93\x27\xfd\x3c\x25\x27\xdf\x47\x73\x2d\xf6\xa6\x93\x98\xce\x46\ +\x31\x3f\x57\x59\xee\xec\x63\x7e\x7f\x1f\xb3\x57\x46\x71\xf2\xd6\ +\x24\x26\x5f\x9e\xc4\xe2\xdd\x51\xcc\xbe\xb4\x8b\xf9\xdb\xeb\x98\ +\xbc\x72\xe9\x9b\x33\xfc\xe6\x72\xaf\x45\xe1\x76\x37\x53\x79\x46\ +\x31\x61\x23\xed\xd1\x3e\x26\x9f\x4e\x62\xf7\x6c\x17\xab\x4b\x95\ +\xf3\x6a\x1c\xdb\xeb\x71\xec\x57\x63\xd5\x85\x7c\xd0\xe2\xc6\xed\ +\x4c\x7b\xb3\x01\x20\x9f\x3b\x5f\xab\x2a\xc0\x45\x26\x4e\xe7\xdd\ +\x46\xb9\xc8\x15\x64\xb1\xba\xb6\x01\x5a\x9b\xdb\x80\x31\x1d\x03\ +\xa4\xb2\x5a\x46\xdf\xb0\xa2\xda\x4d\xf1\xd6\x7f\xa4\x94\x72\x05\ +\xc5\x80\xc4\x3a\x96\xa9\x8a\x91\xb4\x28\xea\x19\x79\xe2\x03\xbf\ +\x3a\x84\xf7\xc5\x10\x98\xea\x0f\x07\x80\x66\x02\x7e\x18\x65\xde\ +\xc2\xbd\x57\x82\x74\x20\xc1\x3a\xa5\x4f\xb4\x61\x0b\x14\x2a\x3e\ +\x20\x12\xb8\xe7\x21\xdb\xad\xde\xb3\xef\x67\xbf\x49\x41\xf2\xbb\ +\x5f\x58\x0e\xcd\x89\xd5\xe9\x0d\x31\x69\x08\xbb\xad\x37\x01\x38\ +\xb7\xbb\x9b\x40\xa8\xa8\x9e\xfd\x4a\x30\x39\x49\xfa\x4a\xd5\x01\ +\x7a\x1d\xbf\xe5\x4f\x0c\xb2\x3a\x84\xb9\x25\x23\xd2\xe4\xa4\xa5\ +\x5f\xa5\x46\x7b\x72\x20\x65\x0d\xba\x71\xa5\xa5\xef\x20\xf9\xd6\ +\x37\x51\x95\x73\x10\x17\x98\x0d\x2f\x71\x56\x8d\x52\xc1\xb3\x8a\ +\x0e\x2a\x3b\x9b\xe4\x0e\x94\x9d\xcd\x74\x3f\xa1\xc6\xd3\x66\xb5\ +\xa1\xd6\x36\xcf\x84\x73\xf3\xac\x36\xd7\x4c\x13\xb6\x7e\x12\xcd\ +\x4f\x5b\x1a\xcb\x8e\xf8\xb9\xb9\x86\x0c\xcc\x8d\x1d\xc9\x6a\xa3\ +\xc5\x9b\x69\xae\x6f\xfc\x25\xf0\xcd\x7a\x76\xef\x56\x9c\x7e\x62\ +\xbe\xce\xc1\xcd\x86\x8d\x22\xc6\x5d\xf1\x75\xde\xf2\x80\x03\xb7\ +\xac\xd8\x08\x1b\xcd\x79\x0d\xa4\xc6\x63\x36\xd6\x75\x92\x8f\x17\ +\x33\x8d\x07\xdb\x98\xdd\xdf\x68\x3c\xd8\xc6\xfc\xc1\x26\x4e\x5e\ +\x8d\x38\x7f\x63\x1c\xa7\xaf\x47\x9c\xde\x9b\xc6\xe2\xee\x38\x4e\ +\x6e\x4f\x44\xf3\x1a\x58\xc6\x90\x59\x9c\xf0\xbf\x8a\x67\x4a\x7b\ +\xa6\xf1\x63\x3e\xd1\x78\x3f\xcd\x0d\x1d\xb5\x7f\xfe\x3a\x5b\xb6\ +\x95\x3d\x3e\xd9\xd3\xea\x17\x07\x20\xc7\x93\x8b\x3c\x59\x0d\x1c\ +\x1d\xf2\x28\x63\x63\x94\xb0\x89\x39\x2f\x72\x63\x69\xac\x32\x89\ +\xcf\x20\x50\xd7\x0f\x31\x63\x3b\x8d\xb8\x9e\xee\xe3\xec\xee\x59\ +\xdc\xfd\xe5\xaf\x45\xfc\xea\xaf\xc4\xe4\xf4\x3c\xae\x54\x2b\xb3\ +\xf7\x3e\x88\xc7\xbf\xf7\xcf\xe3\xfa\xf1\x43\x59\x52\xfb\xc8\x6b\ +\xec\xe5\x41\xa8\x9d\xf7\x2d\x3f\xca\xd1\xe4\x15\xdc\xe7\x2b\x2f\ +\x11\x45\x83\xe9\x75\xa2\x87\x40\x7d\xb8\x4f\xf5\xc1\xe3\xa4\xda\ +\xbc\xc4\x75\x18\x14\x59\x44\x35\xbb\x0f\xe4\xc7\x93\x3c\xc6\xca\ +\x6b\x36\x9e\xc6\x9c\x36\x50\xfd\x5b\x45\x3a\x4b\xc9\x26\xbb\x71\ +\xfc\x8b\xd5\x3e\x5e\xff\x9b\x7f\x2b\x7e\xf1\xb7\x7f\x3b\x66\xf8\ +\x66\x0d\xcc\x16\x05\x1a\xba\x38\xa4\x7f\x1a\xf0\xd3\xb6\xff\x97\ +\x1d\x68\xc4\x83\x3a\x17\x51\x34\xed\x99\x58\xdd\x67\x3b\x8a\xdf\ +\xfd\xc3\x7f\xa6\xbe\xfb\x41\x9c\xdf\x61\x63\x45\xd7\xf1\xa6\x8b\ +\x9c\x3e\xae\xaf\xfb\x3a\x92\x4c\x5a\x36\xaa\x75\x3b\x7b\xad\xb5\ +\xf3\xba\x48\x5a\xba\x28\x3f\x84\x4a\x99\x22\xa9\x90\xf4\x00\x1c\ +\x2b\x16\xae\x13\xfc\xf6\x00\x73\x0a\x2a\x1f\x2b\x1e\x26\x2f\x38\ +\xd0\x96\x8a\xfa\xe6\x64\x16\xe7\xb7\x67\x71\x76\xbe\xd0\xf5\x24\ +\x47\xf4\x95\xc6\xc9\x8b\x25\x4f\xa6\x48\x49\x49\xba\xfa\x68\x46\ +\xab\x1c\x5d\x38\x34\xdb\x43\x77\xce\xde\x84\x4c\xe0\xb4\x3a\x1c\ +\x6a\x49\x36\xb0\x97\xe4\x4d\x06\x5e\x52\xed\x99\xd8\xe3\x1b\xf1\ +\xb2\x65\x6c\x5a\x1f\x45\xf2\x2c\xad\x8d\x34\x39\x3b\x51\x9b\xce\ +\x34\x9f\x3c\x9f\xad\xe2\xd5\xb3\x88\xb7\x1e\x6c\xe3\x8d\x57\x97\ +\x71\xeb\x8e\x66\x5a\x4c\x33\x37\xb3\x4c\xcf\x0f\x16\x74\x91\xdd\ +\x69\x42\x75\x79\x1d\xf1\xf1\xc3\x51\x7c\xf4\x70\x1a\x8f\xaf\x46\ +\x71\xb9\xac\xf1\x5d\xd7\x84\x7c\xc5\x5d\xfa\xb4\xd9\x6a\x1e\xa6\ +\x71\x64\xaa\x39\x9f\x37\x4b\x19\x5b\x71\x0a\x5f\x06\x7e\xf1\x4d\ +\x6e\x96\x86\xa7\xef\xf0\xcf\x22\x7c\x1e\xd6\x9d\xc9\x8c\x93\x47\ +\xb6\x92\x09\x73\x73\x6c\xd3\x31\x85\x8e\xe5\x28\x26\x80\xa7\xd0\ +\x46\x78\xa0\x4b\x2f\x80\x62\xb3\xd0\xdc\x52\xb0\x99\xd6\xa8\x0c\ +\x62\xe6\xa3\x87\x9f\xe6\x8a\x27\xc2\x11\x42\x9f\x63\xcb\xa3\x93\ +\xc3\x40\x85\xbb\xed\x44\x94\x49\x9f\x7f\x1e\xa9\x14\xe6\x2c\x2d\ +\xda\xd6\x0c\x19\xd7\xa1\x37\xda\x1d\x11\x75\xec\x1f\x01\x7d\x2a\ +\x20\xf3\xd6\x55\xb9\xcb\xa7\x7d\x2c\xb3\x61\xda\xaa\xb7\x9e\x14\ +\x82\xa4\x5b\x5a\xe6\x2c\x4e\x09\xcd\x35\xc4\x71\x95\x13\x12\x1d\ +\x12\xd8\x20\xa8\xe6\x4b\xc9\x74\x38\xa4\x53\xaf\xd7\x4f\x7e\x45\ +\x92\xed\xa8\x68\x88\xc6\x50\x3d\x3b\x9e\xa2\x4e\x27\x21\x19\x65\ +\x12\xca\xac\x8c\x52\x86\xf4\x57\xbd\x57\xee\xeb\xe8\x8d\x34\x9e\ +\x4e\x53\x9f\xd7\xc7\x9b\x67\xe2\xf1\x5a\xc7\x9d\x26\x2f\x96\xf3\ +\xf4\x19\x32\xb0\xd2\x58\xae\xb2\x77\xe9\xbd\x89\x46\x10\xdf\x1b\ +\x69\xe1\xff\x51\xdb\xe8\x9c\xcb\x27\xd6\xb2\xaa\x72\x53\xad\xea\ +\x58\x68\x27\x9a\x57\xcf\xe2\xe3\x46\x34\x63\x0f\xf6\xd8\x88\x1b\ +\xe9\xfa\x99\xe7\x91\xea\xd0\xb8\xda\xc4\x7d\x4c\xe7\xb2\xfc\xe1\ +\x55\xad\xa7\xb3\x5d\x2c\x34\x9f\x3a\x9d\x45\xdc\x9a\x8d\x43\x43\ +\x9a\x82\x78\x27\x9a\x2b\x69\xbe\xc5\x1a\xd2\xeb\x20\xf7\x41\x6c\ +\xb0\xf9\x96\x14\x81\x73\x2e\x25\x43\x40\xab\x51\x43\x68\xb1\x26\ +\x15\x88\xf5\x7c\xfa\x84\x81\x56\x07\x2a\x49\x51\x37\x60\xc8\xb6\ +\xcd\x22\x8b\xa6\x6f\x32\xe6\x31\xc6\xdc\xb9\x75\x37\xde\x79\xf3\ +\xad\x98\x6b\xad\x4f\xdb\x3c\x79\x72\x15\x1f\x3d\xfe\x81\x68\x7e\ +\x59\x89\xfe\xd0\xd8\x21\x74\x12\xf7\x77\x13\xb6\xed\x7c\x54\x2f\ +\xbe\x3e\xcd\x73\xf4\x4c\x71\x4b\x41\x69\xb2\x5e\x98\xa7\xb5\x7e\ +\x45\x9b\xf2\xb4\x61\xde\x63\xb0\x62\x27\xbb\x09\xad\x56\xd1\xab\ +\xac\x89\x71\x30\xe4\x58\xd3\x9d\x45\x3a\xb5\xf8\x61\xf0\x2a\x3e\ +\xfa\xfe\x24\xfe\xee\x7f\xf2\xff\x8c\xd3\xb3\x7b\x8a\xf7\x63\xfe\ +\xe0\x70\x84\x9f\x73\x38\xb6\xf2\x11\x8e\xf0\xf2\xe0\xb8\xa1\x76\ +\x84\x23\x1c\xe1\x8b\x81\x36\xc7\xe3\x2a\xde\xae\xe4\x2f\xf1\x8a\ +\xfe\xe7\x33\x35\x74\x28\x67\xa6\x4c\xb2\x7f\xff\x9f\xfc\x37\xb1\ +\xfc\xce\x9f\xc6\xbd\x93\x13\x2d\x24\xc4\x64\x8d\x27\xc4\xa2\x3f\ +\x5f\x33\xa4\x69\x2a\xab\x1a\x92\x90\xd4\xa1\x9f\x4c\x77\xb4\xe4\ +\x7e\x7f\x3a\x93\x6b\x36\x85\xa4\x68\xb9\x67\xb1\xa2\x85\x3d\xb9\ +\x07\x8b\x9d\x07\xa0\x11\x35\x6d\xf6\xa1\xa0\xa3\x53\xd6\x6b\x62\ +\x33\xa9\x1e\xd2\x2e\x93\xf2\xf6\x0b\xb9\xc9\x39\xff\xbd\x73\x12\ +\x67\x77\xcf\x63\x32\x1d\xc7\xfa\x5a\x8b\xb6\x27\xd7\x5a\xb5\x69\ +\xe5\xa6\x32\xe1\xb3\x6d\xa0\x2f\x7a\xc5\xcd\x73\x2d\xca\x98\x9c\ +\xe7\xe4\x3d\xed\xa4\x56\x62\xa3\x22\x6f\x3a\x9b\x3a\x84\x5c\xc8\ +\x19\x63\xc8\x94\x70\xd1\x15\xcb\xba\xe1\x06\x39\x3f\x51\xde\xe7\ +\xe6\xd9\xe2\xd6\x24\x16\xe7\xd3\x58\xdc\xd6\x62\xef\xce\x2c\x4e\ +\x5f\x9d\xc4\xf9\x9b\xe3\x58\xbc\x33\x8e\xf9\xbb\xd2\xfd\xd2\x34\ +\xa6\x5f\xda\xc7\xe9\x83\x88\xc5\x6b\x57\x71\x76\xb2\xf1\xaf\xa7\ +\xb7\xab\xb9\xff\x6f\x88\x5f\x6d\xee\x78\xe5\xd4\x95\xbc\x79\x22\ +\xfa\xe1\x28\xb6\x8f\x67\xb1\x7e\x16\xb1\xd4\xba\x69\xa3\x3a\xd8\ +\xb2\x89\xb6\xd2\xe2\xc6\x4e\xe4\xa2\x9e\x26\x4e\xa7\x12\x11\x86\ +\xb5\x8e\xc7\x2e\x5f\xe9\x98\x5b\x07\xdf\xd0\x69\x0c\x0a\xae\xe0\ +\x0f\x6d\xad\xae\x40\xbb\xa7\xac\xa9\x64\x3f\x49\x61\xc5\xe9\x33\ +\xbe\x59\xa8\x25\x99\x6f\x6c\x4b\xd7\x71\xe4\xa4\x23\xff\x84\xa1\ +\xb9\x8e\x29\xbf\x92\x14\x51\xed\xef\x7e\x8b\xdf\xf6\x19\x8f\x5e\ +\x0c\xf0\x51\x49\x79\x67\xa5\x83\x2e\x9d\x95\x06\x56\x44\x0e\x62\ +\x8e\xb4\x05\x38\x3e\x80\x53\x5d\x87\xfc\x16\x0c\x28\x91\x7b\xf6\ +\x70\x05\xbe\x31\x52\x7d\x31\x21\xcb\x5c\xc5\x39\x00\x47\xa5\x77\ +\xb3\x54\xd6\x37\xc6\x16\x11\xf5\x81\xba\xdb\x99\x37\x45\x92\x67\ +\x1d\xd5\x6f\xdb\x50\xbb\x61\x26\xe5\x60\x13\x3a\xf8\x9b\xb8\x03\ +\xd3\x1c\x92\x9f\xa2\x3a\x92\x65\xf0\xfa\xc2\x94\x73\x2c\x33\x3d\ +\x58\x96\xd8\xf2\x8c\x09\xf0\x35\x71\x26\x48\x79\xc6\x5b\x3f\x48\ +\x3a\xc9\x86\x8b\xae\x90\xaf\x78\x64\xc1\x0e\xad\xc0\x4d\x65\x7e\ +\x11\xcb\xc6\x18\x34\x1b\x60\xde\x58\xd3\x79\x5f\xaf\x78\x1c\x6e\ +\xa4\xed\xcc\x93\x3e\x9b\x68\xde\x7c\xe3\x26\xd0\xd6\xbf\xaa\xf5\ +\xab\x4e\x55\xaf\x1e\x23\xa1\xcb\x36\x1b\x2d\xfe\x41\x02\xf9\xd1\ +\xff\xc0\xe5\x56\xd7\x88\xc2\xdc\x78\x50\xcd\x4b\x27\xcf\x43\xec\ +\xf0\x4b\x6b\x9e\x94\x1d\xc9\xee\x68\x49\x7d\xc9\xbe\x3a\x87\xfb\ +\x08\xfd\x9f\xcd\x35\xda\xec\x8c\xa7\x25\xa6\x31\x3e\xd7\x18\xbe\ +\xd0\x69\x72\x67\x17\xf3\xbb\xeb\x98\x9e\x89\xbe\xb5\xcd\xff\x5d\ +\xbb\x3b\x12\x6f\x1a\x27\xaf\x8e\xe2\xfc\x8d\x79\xdc\x7e\x73\x1a\ +\x77\x5e\x9f\xc7\xd9\xeb\x9b\x98\xdf\x39\x8d\x13\x05\x9e\x70\x3b\ +\xbd\x73\x1e\xf3\xd3\x79\xcc\xa6\x27\x7e\x52\x42\xa3\xe6\xa0\x1d\ +\xdc\x88\x78\x59\xb8\xc0\x44\x2b\x0b\x07\x17\xae\x48\x8e\x37\x65\ +\x09\xdd\x8d\x57\x41\x6e\x12\xc8\x7f\x1d\x7c\x4d\x98\x80\x55\x23\ +\x13\xe9\x4d\x26\xa1\x21\x2c\x36\xf3\x7d\x9c\xbf\xf3\x7a\xcc\xfe\ +\xda\xaf\x0a\xbf\x1b\xcf\x54\x51\xb3\xeb\x8b\xd8\xfd\xf3\x7f\x11\ +\xeb\xef\x7f\x4f\xc3\xf8\x95\xfb\x59\xfe\xc2\x1e\x2f\xfb\xb3\x21\ +\x69\xd5\xbd\xeb\x5c\x81\x2f\xb4\xc7\x1d\xc9\xc8\xd3\x71\xc6\x9d\ +\x46\xa7\x6a\x1d\x3a\xb0\x79\x02\x79\x81\xdd\xe6\x8a\xb8\x6d\xb3\ +\x4c\x99\x42\x74\x46\xdd\xe7\x32\x5a\x72\xf2\xe4\x43\x79\xf5\x99\ +\xcf\x34\xce\xcf\xe7\xc1\xff\x5f\x3a\xb1\x6c\xa9\xf9\xe3\x07\xcb\ +\x4d\xfc\xe9\xb3\x7d\xfc\x9b\x7f\xf7\xef\xc6\x2b\x0f\xde\x90\x88\ +\x9b\xab\x69\xdd\xf8\xd0\xb5\x2e\xbf\x9f\x2a\x0c\xf3\x24\xbf\x9b\ +\x3e\xfc\xbc\xc3\x8b\xca\xdb\x78\xb4\xb3\xda\x96\x76\x56\xd7\x8d\ +\x0f\x3e\xfa\x24\xbe\xf1\xde\x3f\x8e\xf3\xdb\xfb\x58\xcc\x66\xbe\ +\x61\xe8\x0d\x00\x25\x20\x89\xfb\x1d\x1d\x8d\xfe\x50\x36\xdc\xf7\ +\x4a\xde\x31\x01\xeb\x24\xdf\x37\x2c\x95\xd6\x9b\xcf\xcd\x5e\x4b\ +\x9f\x29\x3b\x30\x5f\x6e\xf9\xba\x01\x09\xcd\xb8\xa4\xf1\xf8\xa0\ +\xbf\xb4\x64\xc3\x3c\x3f\x03\xf2\x14\x1b\xc7\xd9\xe9\x79\xdc\xb9\ +\x73\x16\x53\xa5\xe1\x07\x04\xd7\x9a\x53\x3c\xd3\x38\xe9\x1f\x17\ +\x50\x15\x99\x63\x99\x2e\xbb\x55\x06\xfb\x64\xc6\x8f\x07\xcd\xab\ +\xb4\x58\xf1\xc6\x2c\x20\xda\xeb\x55\xbe\x56\xc6\x99\x1c\xb9\x1a\ +\xdf\xa1\x0e\xf0\xfc\x03\x9e\x12\x80\x47\x3b\xcd\xc1\x14\xe1\xbf\ +\x69\x67\x0a\x0b\x55\xb3\x86\xc6\xb8\x73\x32\x89\xd7\x5f\xd9\xc5\ +\xdb\xaf\x8b\x7e\x65\x15\x1a\x7a\x35\x06\xcc\xfd\x94\xcb\x68\xbc\ +\xd5\xfc\x2d\x7f\xb0\x72\xad\xeb\xc3\xa3\xa7\xe3\xf8\xf0\x93\x79\ +\x7c\xfc\x64\x14\x97\x9b\x69\xac\x19\xd7\x55\xed\xba\x3a\x78\xac\ +\xd2\xd7\xde\x10\xd8\x18\xd8\xad\x55\x8f\xe2\x2e\x34\xf7\x1b\x4d\ +\xb2\x76\xec\x8b\x1d\x23\x92\xc8\x3e\x76\x58\xb6\x54\xd9\xee\x1b\ +\x30\x33\x81\x8a\x4c\x84\x72\xfb\xeb\x38\x1f\x20\x31\x82\xcc\x9d\ +\xaf\xc1\x15\xd4\x3c\xaa\x28\x7c\x8f\x3b\xca\xa7\xf9\xd1\x25\x48\ +\xa0\x7a\x61\x1d\x6c\xa6\xd1\xad\x3b\xb5\x52\x00\xd9\xcf\x26\x18\ +\x62\xe4\xcd\xbe\xb0\x45\x43\x79\xce\x57\xd8\x1c\xd9\xf3\xba\x03\ +\xca\xcc\xf8\x59\xfd\xdf\xaf\x33\x34\x54\x1a\xa9\xb4\xf2\xda\x11\ +\x7c\x1a\x40\x2b\x8a\xb9\x3a\x38\xca\xa1\xf9\x60\x1a\x3d\xce\xe6\ +\xac\x8f\x4e\x39\xbf\x2f\x04\x74\x33\x2f\x05\x67\x92\x9a\xbe\x06\ +\x98\x46\x43\xbe\x2a\x9e\xaf\x60\x14\xee\x64\x44\x7b\xda\x32\x3e\ +\x8e\xf6\x3c\xe8\x8e\x57\x3a\x86\x9c\x68\x15\x4f\xc0\x9c\xc3\xd2\ +\xca\x07\x9e\x8f\x8a\x53\xae\x14\x9b\x4e\xa2\x47\x10\x26\x6f\xa4\ +\x23\x4d\x5e\x63\xd9\x1c\xd3\x9c\x04\xbc\x5f\x27\xe6\xbf\x00\xd5\ +\x83\xfd\x5a\x47\x7d\x92\x56\x40\x4f\xbe\x41\x7b\x4d\x02\x8d\x54\ +\xfc\x7c\xe5\xa3\x78\x9b\xfc\x0f\x34\xd6\x9a\x9c\x27\x04\x36\xd8\ +\xfc\xbf\xcd\x5b\x9d\x17\x04\xb5\x3b\x55\xc6\xff\xa6\xf2\xca\x0b\ +\xf7\x4a\xce\x1b\x45\x8d\x15\xd7\x69\x17\xd7\x0a\x6c\xc6\x71\x0e\ +\x2e\x35\x6d\x63\xdc\xd5\x09\xea\x73\x79\x34\xce\xba\xc0\x7f\xec\ +\x8a\xad\xb5\xaf\xe6\x16\x9a\x67\xbc\x72\x1a\x71\x5f\xf3\xa8\xfb\ +\x67\xbb\x78\x45\x73\xa7\x57\x84\xef\x68\x7e\x75\x72\x32\x8d\xf9\ +\x82\x09\x91\xd6\x52\xd4\xa9\xfa\x20\x1b\xe6\xb3\x89\x72\x74\x3f\ +\x9f\x78\x13\x3c\xc7\x10\xcf\xe4\xf4\x01\xf3\x0c\x3d\x35\xa7\x7c\ +\xc9\x72\x00\x74\x0d\x64\x07\xd0\x3a\x65\x41\xab\xf9\x43\x40\xe7\ +\xb9\x94\xcf\xb3\x14\x87\x85\x85\x96\x57\x8e\x11\xfc\x80\x47\x65\ +\xbd\xfb\x4a\xbc\xfe\xfa\xab\x71\x32\x9b\xfb\xc9\xfe\x8f\x3e\xfe\ +\x34\x1e\x5f\x7e\xa4\xaa\x51\x85\x49\xbb\x37\xf7\xbc\x0f\x9d\x0c\ +\x7b\xc6\xbd\x6d\xff\x28\x8a\xeb\xd3\x2c\xe7\xb4\x29\x44\xa9\xd9\ +\xc9\x36\x23\x2d\x2c\xb8\xed\xe9\x34\xfa\x3e\xd5\xfb\x82\x2c\x07\ +\xa0\x0a\x2f\x39\xf5\x9c\xb6\xd3\x16\x87\x7c\xc2\x4d\xf6\x6c\x9f\ +\x7e\xa7\x3e\x74\xbd\x88\xdd\xd3\x37\xe2\x77\xfe\xfd\xbf\xa3\xbe\ +\xc2\x13\xc4\xf8\x9a\xc9\x12\x3a\xe2\x08\x3f\xc7\x70\x6c\xe5\x23\ +\x1c\xe1\xe5\xc1\x71\x43\xed\x08\x47\x38\xc2\x4f\x1f\x6a\xc2\xf7\ +\xdc\x15\xbc\xf1\x5f\x02\xbc\xbc\xc9\x81\x2c\xe9\x3b\xd5\xe4\xff\ +\xfb\xdf\xfc\x76\x3c\xfa\x83\x7f\x11\x77\xe6\xe3\x38\xd3\x22\x02\ +\x87\x99\x32\xfb\x57\x84\x4c\x78\x35\x3b\xf5\x93\x4b\x99\xd0\x93\ +\xd2\x36\xf5\x06\x37\x9f\xa0\xc6\x53\x6e\x88\xe6\x04\x9b\xa7\x0d\ +\x10\x7a\xb1\xe1\x44\xc2\xdc\x0c\x32\xaf\x64\x95\xb6\x07\x26\xde\ +\xe0\xcc\x2d\xe9\xd2\x3a\x50\x96\x8f\x15\x47\x05\xb2\x61\x83\x26\ +\xcf\x3c\xf1\x35\xd5\x04\x7f\x7a\x77\x11\x27\x77\x4f\xe5\xce\x42\ +\xf2\x75\xac\x1e\x2f\x63\x7b\xb5\xf4\xeb\xd5\xb4\xbe\xf2\x44\xdb\ +\x49\xf4\xf1\x42\x8e\x1b\x43\x5a\x98\x19\x24\xca\x12\xe2\xb7\x23\ +\x03\x28\x1d\xa0\x56\x4e\xbd\xb8\x2d\x8b\x74\x74\xb2\x43\x39\x8b\ +\x4b\xdf\x38\xf6\x6b\x82\x22\x16\xb3\x7d\xdc\x7a\x65\x1d\xb7\xde\ +\x9e\xc6\xab\x5f\x3d\x8d\xdb\xef\xcc\xe2\x95\xaf\x2c\xe2\xfc\x2b\ +\xb3\xb8\xf5\x8b\xb7\x63\xf1\x25\xe9\xbc\x39\x8a\xc5\x2b\x5a\xb2\ +\xdd\xd3\xe2\xe8\x54\xe5\xe7\xd5\x6f\x7b\x5a\x70\xa6\x45\xe7\xd8\ +\xff\xa5\xc1\x3e\xe1\xec\xe9\x34\xc6\x8f\xb4\xa8\xf8\x58\xe1\x53\ +\x2d\x66\x1f\xee\x63\x75\xa1\xc5\xe6\xe5\xc4\x9b\x6c\xfb\xb5\xda\ +\x66\xcb\x4d\x7c\xf9\x94\x15\x9c\xde\x42\xca\x99\xe4\x88\x7c\x6e\ +\x35\xd8\xfb\xdf\x29\x2a\xb8\x5e\xcc\x01\x37\x0d\xc5\xd4\xd6\x34\ +\x12\xf2\xd4\xc9\x7e\x01\x99\x1b\xae\xe2\xd0\x1f\xe8\x27\x75\x93\ +\xd0\x7a\x2c\x56\x49\xe3\x0d\x36\x52\x19\xa5\x65\x0e\x2c\x90\x21\ +\xf8\x1a\x65\x5d\xdb\xdd\x64\x9b\x70\xdc\xfe\x65\xbc\x2f\xa0\x53\ +\xbf\x10\x3a\xd5\x17\x40\xda\x29\xe8\xe8\xb4\xe5\xb5\x22\x98\x63\ +\x97\x27\xf9\x09\xaa\xcc\x43\xe8\xa2\xa8\x93\xd8\xaa\x3a\xa8\x3d\ +\x5a\xff\xef\x93\x94\xbc\x02\x39\x3a\x57\xeb\xc1\x13\x31\x90\x1f\ +\xf0\x01\x36\x7a\x74\x0e\xbb\x9e\xc4\xcb\x66\x6d\x75\xa8\xa3\xea\ +\x39\x6f\xd0\xf6\x49\x81\xd6\x67\x51\xe3\x3c\x69\xe6\xd0\xea\x68\ +\xee\x22\x0e\xf8\xa6\x41\x56\x90\x0c\x5d\x8e\x1c\x9a\xfc\x00\x92\ +\x67\xad\x92\x91\x5d\x1f\x4f\x9c\x56\xfa\xb8\x0d\xea\x8b\xae\xc1\ +\x71\x0b\x3a\x9a\xcd\x43\xd3\x5e\x5d\xd7\xc6\x9a\xce\xeb\x1d\x4f\ +\xa7\xed\x54\x27\x6c\xa6\x75\x4f\xa0\xb1\x89\x96\x4f\xa8\x71\x47\ +\xc7\x9b\x69\xdc\xa5\x51\xe8\x5e\xed\x48\x3d\x82\xd7\xb2\xcd\x18\ +\x51\xe3\x44\x3e\x91\x06\x9d\x71\x8f\x95\xe4\x59\xd9\xeb\x5b\x07\ +\xfc\xa5\xce\xe9\xee\xd9\x86\xea\x1a\x44\x1d\xda\xf9\xc8\xc6\x1a\ +\xbf\xd6\xe6\x89\x86\xfd\x95\xda\x69\xa5\xf3\x66\xad\x34\xb2\x37\ +\x96\x8c\xcd\xf3\xf1\x94\xd7\xbe\x2a\xd1\xc9\x2e\xa6\x6c\xac\x2d\ +\x46\xfe\xef\xb4\xd1\x89\x64\x1a\x1b\xa6\xa7\xbb\x98\x9c\x6f\x63\ +\x7a\x7b\x13\xd3\x7b\x6c\xb0\xad\x35\x0e\x6e\x63\x72\xf7\x3a\xc6\ +\xb7\x97\x31\xe6\xb5\x90\xaf\x2a\xfd\x5b\xe3\x98\xbf\xa1\xf0\xd6\ +\xa9\xc6\x97\x59\x2c\x4e\xe6\x1a\xb7\xf1\x5f\xe3\x83\x9b\x56\x79\ +\x4b\xcd\x0e\x16\x0c\xc8\x04\x33\x74\xa8\x32\x02\xdd\xd0\x71\x43\ +\xb9\xa9\x72\x3e\x70\x8e\x53\x0f\xdc\x98\xdf\x73\xee\xbb\x1f\x4a\ +\x40\x86\x8a\x2f\xe5\xca\x19\xe3\xf6\xd7\xbf\x1a\xf3\x5f\xfa\x45\ +\x0d\x6c\x73\x95\x5f\x63\xf7\xb7\xbe\x17\xab\x3f\xfa\xe3\x58\x5f\ +\x3e\x8d\x0d\x6d\xa9\x8f\x52\xba\xb7\xb9\x7e\x87\x75\xcd\x11\x04\ +\xcd\xd7\xd7\x9f\xac\x74\x8f\x31\xf4\x7b\x14\x3c\x0e\x89\x26\x6f\ +\xeb\x03\x45\xc8\x9e\xcf\x05\xae\x83\x5d\x7f\x12\xad\x00\x6e\xd0\ +\xda\x3a\x71\x45\xa0\x3c\x38\xc8\xbe\xe2\x2d\xff\xa9\x02\xaf\x7b\ +\x9c\x2b\x8c\x78\x1a\x59\x9a\xbe\xe9\x28\xfd\xf7\x2e\x56\x71\x7d\ +\xef\xcd\xf8\xb7\xff\xce\xff\x3e\x4e\x26\x53\xd5\x4d\x6e\x71\xa6\ +\x37\x1c\x31\x54\xb4\xf3\xf8\x82\x20\x1d\xe8\xf1\x5f\x35\xa0\xae\ +\x87\x65\x3f\xa8\x0f\xce\x13\xfa\xf1\x28\xce\x16\x77\xe3\xef\xfd\ +\xee\x7f\x1e\xb7\x75\x3d\x5f\xf8\x07\x4a\x3a\x8b\xc4\x4f\xa0\xcf\ +\xa9\xbf\xfa\xe2\xaf\x6f\x76\xce\xc2\xd5\xc6\xc5\x03\x92\x43\x9f\ +\xc9\x73\x85\x7e\x3a\x55\x9f\x6d\x3f\x4a\xf2\xd1\xea\x3e\xd4\x51\ +\x58\x44\xbb\x26\xe5\x51\x7d\x4b\x27\x08\x37\xb3\x9f\xeb\x33\x56\ +\x4a\xcd\xcf\x84\x4a\xc3\x79\x30\x9d\x9e\xc5\x2b\x77\x4e\x63\x36\ +\x99\x6b\x7e\x15\x71\xbd\x5c\xc6\x93\x8b\x5d\xfe\x18\xc9\x5d\x13\ +\x5b\x79\xec\xed\xb6\xf8\x4f\x06\x9c\x47\xa4\x1b\x56\xfd\x41\x33\ +\xd8\x2f\x9f\x9d\xc9\x53\xc1\x9d\xa2\x4b\xc4\xed\x76\x0b\x1c\x7c\ +\xce\x8b\xa4\xad\x92\x66\xec\xe0\x7c\x9c\xc4\x7c\xba\x8f\xd3\xd9\ +\x24\x18\x02\x79\x62\xe5\x95\xb3\x71\xbc\x7e\x67\x14\x6f\xbc\xb6\ +\x89\x77\x14\x5e\x7b\x7d\x19\x27\xb7\x34\xe7\xda\x9e\x7a\xe3\x6d\ +\x34\xd9\x28\xbd\xae\x11\x3a\x6b\xf9\xcf\x3c\x5e\xef\xf8\xe1\xa7\ +\x93\xf8\xe0\xe1\x22\x1e\x5e\x8e\xe3\x6a\x33\xd5\x39\xad\x3a\xf1\ +\xb8\x21\x77\xec\x8f\x1d\xb6\x6b\xb9\x19\x90\x98\x6b\x15\x3e\x4d\ +\x26\x7b\x6f\xb0\xe3\x23\xd0\xfa\x47\x16\x42\x07\x7f\xb3\x0c\xb4\ +\x2f\xf6\x86\x9b\x66\x20\x4d\x29\x1d\xcf\xa1\x4c\xb6\x5d\xce\xa6\ +\x93\x47\xa0\xdb\x28\xb3\x63\x80\xe2\x6d\x6c\xc4\x43\x61\x8b\x74\ +\xe8\x53\x09\x6c\x4f\xd8\x0e\x34\x90\xa2\x93\x90\x98\x3e\x96\xe9\ +\x1b\xd8\x1e\x7e\x16\xaf\xb5\xab\x81\x24\xc8\x5b\x68\x02\x30\x2c\ +\x5f\x48\xf5\x4d\x67\x52\x9f\x57\x31\x54\xbd\x35\x36\x87\x6e\x43\ +\xd1\x09\xc8\xaf\x13\xde\x80\x96\x89\xc0\xbe\xa6\x3f\x4d\xf3\x26\ +\x46\x07\xd3\x59\xee\x62\x25\x4a\x9e\x02\x65\x72\xdc\x0e\x8a\xe8\ +\x1d\x4b\x6c\x5f\xf1\xb1\xf8\xca\xd3\x69\x9a\x8a\xe9\xb2\x62\x1d\ +\x10\x18\xbe\x63\x15\x4f\xba\xe9\x98\xef\x2a\x6f\xbc\xe4\x77\x69\ +\xa9\x3f\xb5\x89\xb9\x29\x2a\x38\x88\x18\x9a\xfd\x76\x6c\x36\xc0\ +\x7c\xd8\x1c\x83\xd6\xaa\x42\xb1\xfc\xef\x34\xfe\xe7\x59\xb3\x24\ +\x7d\xb4\xde\x60\xa3\x4c\x1f\xbf\xca\x51\x81\x58\xbe\xc6\x98\x39\ +\x28\xe3\x0f\x36\xb0\x27\x7f\x74\xed\xf4\x06\x9a\x4e\x21\x5d\xc6\ +\xbd\x29\xb6\xd6\x9c\x87\xa7\xcc\xe0\xb1\xd1\xc6\x26\x2a\x97\xdb\ +\x7c\x8b\x47\x5e\x7a\x29\x8e\x37\xd5\xc4\xdb\x69\x9e\xc2\x86\xdb\ +\x4a\xfa\x2b\x9d\x93\xeb\x0d\xaf\x54\x9d\xc4\x52\x76\x96\x9a\xa7\ +\x2d\xb1\x4d\x5e\xb4\x2f\x7d\xc1\xf3\x1a\x8d\x85\x22\x47\xbb\xa9\ +\xae\xab\x3a\xe7\x75\xde\x9f\xcc\xb7\x1a\xab\xf7\xb1\xd0\xb9\xc7\ +\x93\x6a\x67\x8a\xdf\x3b\xdb\xc7\x3d\xcd\xa1\x6e\x9f\xe6\xf5\x7a\ +\xa3\x75\xd3\x64\xb4\xf1\x26\xfb\x89\x0e\xb7\xbc\xe9\x16\xfe\x61\ +\x8c\xff\x4b\xd2\xa7\x0e\xf5\xac\xc6\x97\x8f\xb4\xaf\xfb\x41\x75\ +\x07\x42\x42\x9e\x07\x2d\x4e\x7f\x31\xdd\x29\xf4\x9a\x09\x14\x5a\ +\x3c\xd0\x4d\x20\x8f\x21\x48\x8d\xd4\x9c\xfb\x64\xd2\x8f\x71\x8c\ +\x2d\xb3\x78\xfb\xcd\xb7\xe2\xd5\xfb\xf7\x74\x19\xd1\xfc\x6a\x7d\ +\x15\xef\x7f\xf0\x89\xea\xee\x91\xda\x83\xb1\xec\x66\xbe\x3d\x0c\ +\x25\xd6\xf3\x57\x07\x5d\x87\x3c\x97\x15\xf6\xb8\xa5\x7a\x48\x3b\ +\xc3\x14\x72\x9d\x73\x15\xa2\xf2\xa0\x0f\x31\xc7\x65\xd3\x93\x8d\ +\x35\x0a\x77\x50\x92\x8a\x0c\xad\x74\x72\x97\x59\x12\xfa\x91\x91\ +\x7a\x83\x68\xfa\x04\xf7\x2c\x48\x43\x3f\xbc\x7e\x32\x89\x2f\xbf\ +\xf1\x1f\xc4\x6f\xff\xea\xbf\x21\x1f\xfd\x4b\x31\xd7\x45\x9f\xcf\ +\xd0\xfa\x11\x7e\x5e\xe1\xd8\xca\x47\x38\xc2\xcb\x83\xe3\x86\xda\ +\x11\x8e\x70\x84\x2f\x0e\x7e\x0a\x57\xf0\x66\xf2\xcf\x67\x7a\x38\ +\x65\x95\x25\x1b\xd3\x64\x7b\x3c\x8d\x6f\xfe\x7f\xff\x5e\xdc\x3b\ +\x8d\xb8\x35\xe7\xf5\x5f\x29\xcf\x49\xaf\x56\x24\x2c\x40\xea\x46\ +\x4c\xe7\x07\x93\x68\x22\x1c\xf8\xd6\x44\x99\x89\xb5\xef\x51\xfa\ +\xa6\x40\x4d\xae\x1d\xc4\xb4\xac\x6e\x0c\x29\x91\x53\x20\xea\xdc\ +\x12\xe1\x05\x71\x7a\xea\x29\x38\x3f\x43\x2c\x70\x0a\xa2\xd6\x4f\ +\xba\x49\x1b\x4e\x53\xcd\xb6\x7c\x90\xef\xf3\x5b\xb3\x38\x7d\xe5\ +\x2c\xc6\xf3\x85\x16\x16\x5a\x18\x3d\xbd\xf4\x53\x6a\xfb\x35\x13\ +\x71\xa5\x51\x48\x9f\x44\x53\x5c\x5e\xdf\x46\x71\x11\x38\x13\x64\ +\x29\x2f\xcb\x3d\x58\x94\xb9\x76\xb4\x55\x74\x28\x3e\x47\xff\x9a\ +\xb2\xe8\xb6\xb8\xf3\xd3\x26\xfb\x69\xcc\x4f\x2e\xe3\xee\xfd\x65\ +\xbc\xfa\xeb\xf7\xe2\xde\xdf\x3e\x8d\xfb\xff\xf6\x83\x38\xfb\xcd\ +\xd7\xe2\xde\x5f\x7b\x2b\xc6\xbf\x7e\x1a\xb7\xde\x3d\x8d\x93\xd9\ +\x22\xd4\x3c\xf2\x53\xe5\x61\x91\x89\x6d\x2d\xf0\x58\x94\x6e\x37\ +\xe3\xd8\x5d\x69\x71\x7a\x35\x89\xf1\xe3\x49\xec\x3e\xd2\x62\xf4\ +\xe3\x7d\x5c\x7d\xa2\x85\xe6\xa3\x49\x5c\x5f\x68\x51\x79\xad\xb0\ +\x96\x13\x6b\xc9\xbb\xb2\xe1\x65\x2e\x30\x08\xb8\x9d\xdc\x3c\x1a\ +\x5c\x96\x01\x50\xac\x8e\x84\xd2\x11\x5b\xd5\x6e\xc5\xc9\x26\xd7\ +\xa1\x6d\xa0\x21\xa0\x6f\xa0\xc6\xaf\x8b\xc1\xad\x0f\xf9\x86\x32\ +\x84\xf8\xad\xcf\xf8\x49\x47\x56\xa8\xb6\x25\x99\x12\xf0\xb1\x21\ +\xf9\xe7\x1b\x27\xca\x37\xab\x58\x18\x04\x0c\xca\x65\xb9\x04\x99\ +\x02\xba\xd2\x3a\x88\x56\xfd\xa3\x6d\xdd\x01\x74\xb6\x5e\x00\xb6\ +\xa0\x43\xea\x24\x01\x6d\x17\x11\x14\x24\x55\x71\xe7\x9b\xde\x73\ +\x28\xca\x5e\x78\xe1\x5d\x65\xa0\x4d\x6c\x03\xd7\x5d\x30\x88\xf4\ +\x11\xc8\xf4\xa4\x4e\x0e\x71\x8a\x6b\x8c\x21\xca\x0b\xc3\x18\x5e\ +\xc9\xb2\xc1\x8b\x57\xf9\x58\x2a\x1e\xe7\xe3\xb4\xea\x1f\x7d\x21\ +\x67\x9d\xd1\x04\xf4\xe1\x39\x4d\x13\xd8\x58\xb1\x4a\x6e\x16\xa5\ +\x52\xb0\x5a\xf2\x5b\x5f\x43\x5e\x4a\x03\x68\xf1\xc4\x90\x2e\x7b\ +\x26\x44\x50\xb4\xbe\x5d\x39\x84\x87\x3a\x3a\xc7\x29\xb7\x28\x9f\ +\xef\xae\x0a\x63\x02\x37\x80\x88\x0b\xfb\x31\x81\xbc\xd1\xb3\xf7\ +\xa6\x19\x77\x61\xd8\x40\xcb\x8d\xb4\xee\x35\x8f\xe2\x5b\xbe\xda\ +\xfa\x49\xb6\xdc\x48\x93\x7d\xd2\xfa\xd5\x8e\x4a\xd7\x36\xd4\x08\ +\x95\x97\x37\xd3\x14\xfc\x6b\x59\xe7\xc9\x21\xe9\x1e\xd4\x7e\xd4\ +\xb1\x0e\xf4\xee\x76\xa3\xa8\x55\xab\xfb\xb5\xfd\x17\x9f\xb1\x48\ +\x21\x56\xe2\xcb\xcd\xf1\x52\xa3\xd7\x5a\xda\xa2\x47\x53\x09\x46\ +\xf2\xf5\x7c\x1b\x93\x93\x51\x4c\x16\xeb\x98\x8e\x35\xbe\xf1\xfa\ +\x46\x9f\x3b\xdc\xe4\x99\xc4\xe4\x54\xf2\xb9\x7c\x9a\x29\xdd\x48\ +\x65\x19\xaf\x75\x4e\x4e\xe3\x16\xff\x83\x74\x77\x14\x67\x77\x4f\ +\x62\xf1\xfa\x69\x4c\xde\x1c\xc7\xe4\xb5\x79\xc4\x83\x59\x2c\xc6\ +\x73\xe5\x3b\x8d\x58\x2e\x55\x7e\x61\x7e\xce\xed\xfa\x1d\x16\x04\ +\xfa\xf0\xcc\x69\x3d\xc3\xfd\xa7\xe4\x1d\xb3\x80\x68\x17\xa8\x03\ +\x05\x6f\xa4\x4f\xa8\x17\xc5\x19\x1b\xa6\x8c\x0f\xa3\xd8\x9e\x8d\ +\xe3\xd6\x5b\xf7\xe2\xec\x97\x7f\x31\xc6\x6f\xbe\x13\x93\xcd\x75\ +\x9c\x7c\xfc\x30\x2e\xfe\xe8\x8f\x63\xf9\xd1\x87\x6a\x8b\x55\xf0\ +\x7a\x29\x67\xc1\xeb\x9f\x5c\x97\xf4\xbd\xf4\xcb\x67\x4a\xcb\x9f\ +\x7c\x32\xd3\xa4\xd5\xef\x09\x72\x20\x7f\xf8\xc1\x45\x0b\x1e\x3a\ +\x40\xc3\x02\x97\x47\x81\xa6\xf4\xf9\x4a\xfb\xa8\x9d\xe9\x4b\xd9\ +\xc6\x7c\xab\x76\xea\x60\xdd\x02\x4b\xe4\x88\x4a\x29\xfb\x6a\x2b\ +\x8d\x89\x94\xfb\x74\xb1\xf0\xeb\x1e\xe1\x91\x60\xab\x8c\xd4\xa4\ +\xf1\x2f\xae\xd6\xf1\xea\xbf\xf5\xef\xc6\x2f\xfc\xad\xbf\x15\x67\ +\x18\x28\x5f\x8c\xec\xa0\x42\xe7\xe8\x17\x04\x5f\x70\x76\x3f\x33\ +\x90\x8d\x62\xd2\x2d\x2d\xf2\xd6\xf4\x76\xfc\xd3\x3f\xfe\x27\x31\ +\x5b\x3c\x89\xd9\x89\xce\x37\x5a\x5e\xed\x95\x5a\xd0\xa4\xa0\x2f\ +\xd0\x23\x04\xc4\x5b\xbb\x72\xec\xda\x36\xd3\xa4\x7e\xc6\xe9\x37\ +\xbc\x56\xdb\x37\x2f\x53\x6a\x79\xaf\x51\xc7\xfc\x56\x3f\xcc\xce\ +\xc8\x38\xdc\x9e\x08\x30\x2b\x95\x0b\x0e\x22\x07\xd0\x4b\x94\x48\ +\xe7\xc9\x54\x73\x91\xfb\x77\x4f\xe5\xc7\x24\x16\x93\x13\x8d\x33\ +\x9b\xf8\xe4\xd1\x36\x2e\xaf\xb9\xc9\xce\x9c\xaa\xf9\x04\x34\x22\ +\xbd\xfd\x4c\x48\x17\x6f\x40\x32\x87\xe9\x7a\x6b\x3a\x57\x8a\x06\ +\x4c\x73\x59\x10\x9f\x9a\xe1\xc5\xb5\x3c\x3d\xc2\xff\x06\xb1\x61\ +\xcf\x7f\xbf\xcd\x7c\xd3\x5b\xf1\x09\x4f\xc5\x8e\x63\xae\x53\xfe\ +\x44\xfc\x73\xf1\xef\x9e\x4e\xe3\xf5\xbb\x11\x6f\xde\x9f\xc4\x1b\ +\x77\x46\xf1\xd6\x03\xd1\x0f\x36\xf1\xc6\xfd\x6d\x3c\xb8\xbb\x8b\ +\x5b\xb7\x35\x8e\x8e\x67\x1a\x8b\x79\xbd\xe3\x4e\xd7\x4c\x8d\xbd\ +\x1a\x03\x56\x8a\x3f\xb9\xe0\x89\xb4\x69\xfc\xf0\xe1\x38\x1e\x3e\ +\x9b\xc7\x25\xff\x93\x26\x67\xd8\x70\xf0\x38\x2e\xd7\x5a\xf1\x86\ +\xc5\x34\xad\x83\xe7\x72\x3b\xcd\x4b\x19\xef\x35\x9e\xa8\x5a\xeb\ +\x49\xe1\x2c\x61\xeb\x3b\xd4\xa9\xfb\x06\x01\x29\xa4\xda\xd2\x3f\ +\x1c\x51\x9c\xcd\x5c\x36\x4e\x26\x74\x42\xab\x80\xd1\xeb\xeb\x1e\ +\x9a\x71\x32\x23\x0a\x76\x22\x75\x32\x4d\x5d\x5f\xb3\xe3\x98\x97\ +\xda\xd4\x37\x91\xc2\x12\xf7\x9b\x55\xc3\xb6\xc8\xf1\xd8\xe3\x2e\ +\x36\xac\xdf\xd2\xa6\x9f\xd6\xb5\x7c\x80\x1b\x58\x48\xfe\xe0\xb4\ +\x8d\x8d\x8e\x06\xe4\x2b\x6b\x16\xfa\x1a\x63\xab\xb9\xa8\x35\xc3\ +\x9d\x4d\xea\x86\xb8\x22\x95\x34\x21\x79\x9e\x2b\x21\x73\x42\xe9\ +\x72\xad\x85\xcf\xe6\x93\xcb\xdf\x12\x1d\x24\xee\x01\x36\xa6\x48\ +\x0e\xd9\x4c\x39\x5e\x69\xca\xce\x1e\xe3\xcc\x3b\x08\xf5\xf1\xfc\ +\x24\x29\xfb\xe2\x14\x03\x8c\xcc\x60\x9e\x68\xf3\x86\xf1\xa2\x8d\ +\xa9\x5b\xe8\xd2\xa1\x0e\xab\x7e\xac\x58\x6c\x50\x95\x36\xdd\x84\ +\x6e\x49\x9c\xa6\x54\xcb\xcf\xd4\xe4\x43\x9c\xcd\xb1\xdc\x3a\xdb\ +\xf3\x4a\x47\xb0\x8f\x3c\x81\xa6\xb9\x05\x81\x98\xd2\xfa\x15\x8f\ +\xa4\xa9\xf9\x56\xbe\xee\x11\x9a\xcb\xa6\xb0\x08\x89\xbc\x79\xc6\ +\x53\x68\x6b\xf1\x78\x3d\xbd\x5f\xf7\xc8\x94\x4c\xd5\xb5\xd5\x39\ +\x4c\xfb\xf1\xbc\x17\x9e\xf8\x35\x8f\xf6\x7a\x2c\x9e\x3c\xf3\xd3\ +\x6b\x5a\xf7\x28\x9d\xa6\x65\x4a\x03\xe6\x89\x37\xce\xa5\xb1\x69\ +\x9e\x54\xbb\x5a\xc9\xe6\x4a\x23\x82\x1a\xc8\xe7\x96\x2b\x80\x3e\ +\xaf\x72\xed\x34\x47\xf2\xf9\x4c\xbb\xf3\xa6\x90\x1c\x2b\x26\x6c\ +\xb0\x8f\x77\x71\x3a\xd9\xc7\xed\xf9\x75\xdc\xd1\xe2\x6b\xb1\x9f\ +\xc4\x29\x3f\x7c\x9c\x8d\xe3\xfe\x99\xc6\x85\x3b\xdb\xb8\xbb\xd8\ +\xc5\xed\x85\xc6\x7c\xc9\x4f\xe7\xfc\xbf\xa4\xc6\x15\xdb\x90\xbf\ +\x9c\xfb\x72\xdc\xf5\xdc\x2a\xfb\x00\xc4\x2c\xbe\xcb\xa5\xaf\xeb\ +\xbe\x8e\x06\x48\xf8\xec\x92\xbf\x08\x48\x6f\x9d\x52\xc4\x52\xf5\ +\x67\xcf\xad\x44\x12\x58\x4a\x9d\x2e\xee\xc5\xd7\xde\x7d\x2b\x6e\ +\xdf\xb9\xa5\x3a\x5b\xc5\x93\x27\x17\xf1\xe1\xc7\xef\xab\x2a\x2e\ +\xbc\x26\xcc\x74\x9f\x0d\x96\x62\xb3\x61\xdb\x06\xab\xbc\xe2\xf2\ +\xff\x69\xfe\xa1\x47\xe7\x7e\xda\x73\x54\x07\x7e\xe0\xda\xce\xab\ +\x7c\x3a\x0d\xac\x3e\x42\xb7\x6b\x69\xd0\x6b\x44\x77\x2c\x20\x62\ +\x93\xc5\x85\x96\xbd\xdc\x54\x57\x60\xfc\x93\x2d\xea\x92\x0d\xc2\ +\x4f\x3e\x18\xc7\x7f\xf8\xef\xfc\x9f\xe3\x9d\xd7\xbf\x64\x5d\xfb\ +\xeb\x64\x79\x3c\xc2\x5f\x0d\x38\xb6\xf4\x11\x8e\xf0\xf2\xe0\xb8\ +\xa1\x76\x84\x23\x1c\xe1\xa7\x0f\x9f\x35\x4f\x7b\x49\x57\x74\xcc\ +\x74\x73\xca\x3f\x13\x0c\x53\x8a\x66\x86\x29\xe0\xbf\x74\xbe\xf3\ +\x0f\x7e\x37\x66\xeb\xc7\x71\x77\x3e\xf5\x82\xc3\x53\x56\x4d\x52\ +\x79\x8f\xbd\x7f\xd1\xc7\xc4\xb7\x5f\x79\x29\x35\xe9\x31\x91\x13\ +\xeb\x04\xd1\x2c\x26\xb8\x61\xc8\x0c\x9e\x55\x45\xa7\xa3\xc0\x84\ +\x97\x09\x77\xc5\x53\xd6\x52\xe6\x91\x25\x53\x2e\x9a\x0e\xa1\xcb\ +\xfa\x46\x05\xa4\x99\x9e\x01\xe5\x20\x01\xf3\xf4\x71\x68\x11\x74\ +\x32\x8b\xc9\x9d\xb3\x38\x39\x39\x89\xfd\x6c\x1a\x9b\xeb\xab\xd8\ +\x3f\xde\xc4\xe6\x72\xe5\xc5\x9d\xd6\x58\xd6\x34\xc8\x3e\xff\x87\ +\xe4\xa7\x4e\x58\x65\x90\x9f\x82\xb3\x2d\x67\x33\x3f\x71\x1c\x45\ +\xd2\xe0\xd0\xf3\xd2\x32\xb0\x30\x64\xa1\xe1\xb5\x83\xea\x67\xc7\ +\x0d\x60\x65\x7c\x72\xf7\x3a\xee\xbf\x35\x89\x07\x7f\xfd\x76\xdc\ +\xff\xf7\x5e\x8d\xf3\xff\xf1\xab\x31\xf9\xb5\x77\x62\xf6\xb5\x57\ +\x63\xff\xd6\xab\x31\x7f\xf5\x5e\x8c\xee\x2d\xfc\x3f\x1d\xbb\xf5\ +\x75\x6c\xb5\xda\xdc\x8c\x15\xb4\x60\x18\xaf\x27\x8a\xaf\x63\xf4\ +\x4c\x8b\x93\x87\xaa\xb9\x4f\xb5\x70\xfc\x78\x1c\xcb\x8f\xb6\x71\ +\xf5\x58\x0b\xc9\x27\x5a\x60\x5e\x4d\x63\xaf\xc5\xe4\x9e\x4d\x37\ +\x85\xb6\xc0\xa3\x96\x29\xb1\xd6\x7c\x9f\x0f\x37\xe5\x15\xef\x6e\ +\x9a\x39\xde\x98\xc9\x73\x3d\xd1\xce\x62\xb1\xc0\x32\x5d\xed\x4e\ +\x9f\x30\xbf\xe9\x90\xa6\xb0\x17\x63\xdc\x64\xa4\xdf\xa0\x47\x9c\ +\x0f\x3a\x0e\xe9\x77\xe6\xdd\xea\x5f\x48\x85\x82\x74\x5d\x9b\x0d\ +\x85\x5e\xd1\x14\xda\x3a\x99\x20\xe5\x02\xa3\xd6\x66\xc5\xfb\x0c\ +\x40\xda\x52\x7b\x31\x6e\xba\x40\xf1\x83\xe4\x08\x5b\xfd\x34\x4d\ +\xe4\xe8\x75\x34\x41\x07\xeb\xf2\x65\x61\x98\xc1\x2b\x4c\xe4\x74\ +\x16\x00\x2c\x3d\xa7\xb6\x1c\x4c\x84\x73\xd2\xcc\x8a\xf7\x90\x6c\ +\xf8\xcd\x66\x65\xe5\x3e\x9d\x7c\xdb\xd5\xf9\xca\xe6\x0b\xed\x91\ +\xee\x0d\xcb\x96\x89\x50\x35\x4d\xc0\x1e\xd1\x76\x2c\xdb\x3e\x48\ +\x97\xba\x6d\xbc\x64\x67\xfd\xfa\xe6\x55\x32\xea\x4b\xa4\xc2\x81\ +\x4d\xe2\xa0\xc4\xde\xb0\x60\xf3\x02\x67\x41\x60\xfc\x56\xe8\x6e\ +\xfc\xb5\x80\x6e\x26\xaa\x40\x94\x3a\xca\x31\x8c\xb2\xf3\xcb\x55\ +\xee\xe4\xb0\x99\xee\x0d\x35\x9d\x4f\x7e\xdd\xa3\x9f\x4c\xdb\xc6\ +\xa8\x36\xd3\xe0\xe7\xeb\x20\xa5\x27\xec\xa7\xcf\xc0\xb5\xb1\x06\ +\x26\x4f\xb2\x71\x1e\xdc\x1c\x40\x06\xaf\x42\xfa\xdb\xd7\xa6\xeb\ +\x81\x7e\x7c\x03\x03\xa0\x56\xf3\xc6\x9c\x98\xd8\x90\x2b\xdc\x70\ +\xda\xf1\x9a\xd6\x15\xff\x7b\x28\xf6\x72\x12\x13\x5e\x0b\xb9\x9d\ +\xfa\x3f\xd5\xe6\x1a\xb3\x47\x8b\xa9\x9f\x54\x8b\x69\xbe\x0a\x72\ +\x34\xd7\x18\xcc\xf0\x0b\x4f\x03\x8d\x7f\x09\xbc\x96\xce\x66\x11\ +\xf3\xf1\x59\xcc\x4f\x6f\xc7\xf4\xde\xad\x98\xbe\x76\x3b\x66\xb7\ +\xef\xc4\xfc\xfc\x24\x4e\x63\xee\x9b\x22\xab\x5b\x3a\xfd\xa6\x2a\ +\xeb\xd3\x99\xca\x75\xad\xb1\x50\xf9\xbb\xbe\x55\x2e\x1c\xc4\x2f\ +\xa0\xf9\xac\x68\x15\x43\x20\xbf\xa0\x5b\xbc\xe3\x1f\xb2\x08\xed\ +\xc7\x15\x1e\x23\x84\x7d\xbe\xeb\xba\xb1\x55\x58\xab\x5f\xf2\x5a\ +\xca\xd3\x5f\x7c\x2b\xce\x7e\xe1\xdd\xd8\xca\xbf\xd1\xb3\x8b\xd8\ +\x7d\xe7\x7b\xb1\xfe\xd6\xf7\x62\x79\x7d\xe9\x1b\x74\xf4\xae\x3c\ +\xfd\x38\x70\x54\xbc\xf9\xd3\x3b\x95\xf6\x89\x7b\x98\x2f\xda\x3c\ +\xc6\x9a\xa2\x8d\x2d\xee\x01\x5b\x0d\x53\x6c\xda\x9b\x7b\xa3\xde\ +\x48\xcd\x3e\x06\x9b\x00\x24\x0d\xb3\x8c\x08\xb9\xba\x14\x72\x9c\ +\xcb\x57\x23\xb1\x21\xb2\x58\xcc\xfd\xca\x65\x74\x70\x6b\x25\xfe\ +\xc7\x57\x9b\xf8\xc6\xd5\x28\xbe\xf6\xbf\xfa\x5f\xc6\xd7\xbf\xfa\ +\x4b\xa1\xaa\x77\x1d\x95\x35\x01\x14\xc6\x30\x9c\x9c\x2f\x04\x7a\ +\x07\x32\xdf\x61\xfc\xaf\x02\x0c\xeb\x7a\x58\x76\xd3\xad\x42\xb2\ +\x9d\xb8\x91\xfa\x27\xdf\xfe\x57\xf1\xc3\xc7\xdf\x88\xbb\x77\x69\ +\xf3\x3e\x01\x1a\xd9\x0f\xa0\x75\x8d\xcb\x64\xe6\x67\x04\x48\x79\ +\x71\x3b\x39\x1f\xce\x15\x36\x85\xd8\x2c\x4a\xbd\x4c\x73\x98\x47\ +\x41\xaa\xf8\x60\xb1\xdc\xf4\x86\x9a\x3b\xf1\x4d\xe8\xd3\x1f\x40\ +\xb1\x9b\x7d\x5f\xa3\x35\x77\x39\x3d\x3d\x53\xff\x9d\xf9\x7c\x9d\ +\xc4\x22\xae\x57\xd7\xf1\xf4\x82\x71\x6f\xad\x80\xa7\x43\x20\xf6\ +\x19\xf6\x07\x30\xec\x56\x7d\x8d\x1e\xf2\xcd\x6b\xe3\x8f\xc0\x3f\ +\x4c\x52\xd4\xf5\x22\x1f\xe7\x93\x69\x9c\xc9\xaf\x93\xf9\x4c\x78\ +\x14\xa7\x1a\x1b\x17\x27\xcc\x01\xf7\xa1\xd3\xcd\x4f\xa1\x9c\x69\ +\x8c\x3b\x9b\x8d\xe3\xae\x78\xf7\xcf\x47\xf1\xf6\x83\x75\x7c\xe9\ +\xd5\x7d\xbc\xf5\xfa\x3a\x5e\x7f\x65\x15\x0f\x34\x27\xbb\x7b\x6b\ +\xa9\xb4\xfb\x98\xcc\xc8\x4f\x13\xb5\x9d\xca\xaa\xf6\x1a\x4f\xf9\ +\x35\xc3\x3a\xb8\x5c\x3c\xbb\x1c\xc5\x27\x8f\xc7\xf1\xfe\x27\xe3\ +\xf8\xf0\xf1\x3c\x9e\x2c\x67\xb1\x52\xdd\xb0\xa1\x80\xd3\x7e\x45\ +\xa1\x52\xf5\xde\x26\x10\xef\x78\x38\xaf\xfa\xe2\x7e\x79\xfe\x18\ +\x83\x0d\x49\xc6\x07\x5d\x9a\xeb\xf5\x8f\x06\x57\x80\x0e\xf9\x35\ +\x80\xd1\x68\xad\x49\x9c\x76\x72\x9d\x94\x96\xc7\x37\xc6\xc5\x52\ +\x46\xdf\xe3\x98\x28\x67\x0d\x07\xa1\x99\x75\xdd\xaa\xb4\xc8\xba\ +\xba\x36\x2b\xe9\xee\x07\x2f\x05\xd9\x35\xf0\xa2\xe4\x4e\x27\xa2\ +\xf2\x4c\x54\xfa\x12\x58\xce\x88\xd7\x99\xa8\xb4\xe5\x43\x62\x41\ +\x8b\x17\x02\x32\x2f\xa5\x57\xbf\x2b\x96\xa1\x6d\x2a\x3a\x0d\xbe\ +\x51\x0f\x16\x64\x30\xed\x03\x30\x4c\x09\x90\x86\xaf\xea\x1e\xff\ +\x6e\x8a\x05\x24\x85\xdd\x70\x83\xe1\x79\xd7\x4b\x12\x77\x2d\x2f\ +\x83\xe9\x9f\x82\x69\x5d\x40\x74\xed\xe0\xc9\xae\x54\xd1\xa1\x53\ +\x85\xe0\x1c\x6d\xbc\x4c\x93\x40\x5a\x05\xef\x26\x21\x6f\x7c\x6c\ +\x13\xed\xe3\xf9\x83\xac\x61\xd2\x46\x00\x25\x73\xe0\xd8\xe7\x91\ +\x63\x03\x5c\xc5\x7d\x7d\xad\x20\x9a\x0f\xb4\x56\x85\x7e\xb5\xbc\ +\xb1\x3e\xac\x45\x72\xb3\x8c\x8d\xb3\xdc\x74\xf3\xb5\x99\x4d\x13\ +\xd9\x75\x60\xfe\x21\x4c\x36\xd6\x53\x19\x98\x7e\xf1\x64\x1a\x9b\ +\x67\x4c\xb9\xfc\xdb\x26\xcd\xa1\xf2\x3f\xd6\xf2\x3a\x4e\x51\x01\ +\x7a\x4c\xc3\x59\xda\x92\x2b\xc2\x65\x98\xcd\x19\x99\x15\x9d\xf9\ +\x99\xa7\xf3\x6f\xad\x0b\xe8\xca\x4f\xbd\x29\x4f\x6c\x48\x30\xd6\ +\x9c\x89\x31\x2a\x7d\xd9\xfa\xfa\xca\xb8\x30\x9b\x32\x9e\x49\x8b\ +\x4b\x72\x35\x2b\x6b\x0d\x5e\xeb\x7a\xae\x79\xd5\xdd\xf3\x75\x9c\ +\xcd\x77\x71\xce\xb8\x32\xe3\x3f\xd8\x34\x9e\x4c\xc7\xde\x94\x5f\ +\x4c\xa7\x71\xae\x75\xf4\x2d\xc9\xce\x4f\xb6\x1a\x37\x18\xdb\xb5\ +\xee\xc2\xd9\xca\x0b\x9f\x7b\x68\xb4\xb0\xc9\x8c\x67\xbe\x3a\x58\ +\x1f\x12\x22\x65\x2f\x84\x26\x77\xc2\x4c\x94\x26\x18\x07\x92\x4d\ +\xf9\xf8\x31\xc0\x1b\xaf\xbe\x1e\xef\xbc\x7d\x3f\x66\x1a\xd4\xae\ +\x97\x57\xf1\xc9\x27\x8f\xe2\x72\xf3\xb1\xd6\xbb\x8c\x69\x4a\x53\ +\x79\x3a\xfd\x0d\x48\x1e\x06\x8b\xee\xec\x73\x4d\x62\xae\xa9\x31\ +\x8b\x5f\x2a\xa4\x56\x41\x52\x9c\x89\x2e\x3f\x09\x04\xd0\x6a\x0e\ +\xcd\x2b\x69\x27\x11\x59\x39\x48\x0a\xf7\xa0\x94\x3e\x1e\xd4\x07\ +\x5f\x4c\x29\x1d\x7d\x9e\x91\xc0\x76\x64\xdf\xe7\xc0\x7e\x1a\xeb\ +\xeb\x55\xec\xaf\xbe\x14\xbf\xf3\x3f\xfd\xbb\x9a\xef\xf2\x2a\x07\ +\xd2\xfa\x2b\xed\xf4\xa3\x99\x3e\xc2\xcf\x37\x1c\x9b\xf8\x08\x47\ +\x78\x79\x70\xdc\x50\x3b\xc2\x11\x8e\xf0\x17\x07\x6d\x32\x08\xfc\ +\x39\xaf\xee\x2f\x6d\x72\x80\x21\x66\xa5\xfa\x72\x23\xe2\x5b\xff\ +\xe2\xf7\x63\xfd\x9d\xef\xc6\x2b\x0b\x7e\xa5\xa7\x29\x27\xf3\x5c\ +\xa9\x78\x81\xa2\xd9\x2f\x8b\x20\x4f\x7c\x6b\x52\x0c\xe2\x97\xae\ +\x5e\xc0\x3b\x9e\xd8\xbf\xc6\xd6\xbc\x9a\x09\x76\x7b\xea\xc0\xca\ +\x84\x71\x86\xee\xb5\x7f\x4a\xd1\xe6\xb4\x5d\x15\x11\x29\x46\xce\ +\xb3\x21\xc4\xc8\x48\xca\x06\x80\x9d\x8e\x37\x90\xd9\x1b\xe2\xf2\ +\x63\x36\x9e\xc7\xf8\xf6\x22\x16\x77\x4e\x63\xcf\x2b\x75\x64\xeb\ +\xea\xd3\xcb\xd8\x3c\x5b\xe6\x82\xc7\x80\x32\x11\x2d\xd8\x54\xde\ +\x35\xab\x3c\x16\x69\x55\xe6\x2c\x1f\xd8\xca\x09\xb5\x68\x4d\xb8\ +\x41\x4b\xaf\x71\x58\x9c\x32\xe9\xdf\xab\x3e\xb8\x19\xb6\x1f\x69\ +\xe1\xa6\x05\xd8\xec\x7c\x19\xe7\xaf\xed\xe3\xd5\x5f\xbb\x13\x77\ +\xfe\xe6\xdd\x38\xfd\x9b\xef\x46\xbc\xf3\x5a\x8c\x67\x5f\x52\xa2\ +\xfb\xca\xeb\x8e\x1a\xe7\x96\xf0\x79\x8c\xb8\xb9\xff\xec\x2a\x36\ +\x17\xcf\x62\x79\xb5\x8e\xf5\x72\x1b\xfb\x4b\xf9\xf9\x68\x17\xab\ +\xf7\xb7\xb1\xfa\x60\x12\x57\x84\x87\xbb\xb8\x7c\xba\x8d\xf5\xe5\ +\x58\x0b\x25\x2d\xe8\xb6\xaa\x65\xd7\x5f\x3a\xde\xaf\xcf\xe4\x8f\ +\x0a\xe3\xe2\x59\x60\x56\x1e\x52\xb5\xc7\x37\xc1\x2a\x29\xec\xd2\ +\x36\x5d\xe5\xc3\xcd\x12\xea\xc9\x75\xa6\xe0\x1b\xc2\x5d\x40\xc9\ +\xc2\x4e\x46\x94\x5f\x86\xd2\x56\xbe\xd9\xa8\x05\x6a\xbb\xd9\x2e\ +\x53\xf6\x59\x94\xd3\x24\x92\x8e\x78\xee\x7f\x72\x86\xb8\xed\x0d\ +\xcb\x08\xce\xa8\x74\x8a\xb0\x2e\x42\xe2\x69\x23\x45\x18\x4b\x32\ +\x59\x1c\x93\x3e\x00\x33\xda\x72\xac\xa4\x2e\x6f\x03\x51\x7c\x61\ +\x80\x3b\x03\x10\xd2\xeb\x15\x45\xa7\xae\x03\x80\x8a\x43\xf6\xb9\ +\x7e\xf3\x22\x0f\xb9\x21\xd5\xdb\x28\x69\xc9\xd3\x4c\x91\x05\xcd\ +\x4f\x20\x6d\xba\xb1\xd9\x58\xc2\x76\x8b\x4f\xd8\xfc\x6e\x4f\xa8\ +\x29\x54\xa2\x96\x36\xf5\x4c\x0d\xec\x27\xcf\x32\x47\x9b\xa4\xec\ +\x26\xd5\xf1\x93\x37\xe0\x17\x95\xdf\xc4\xc9\xea\xe9\x4c\xc2\x8d\ +\x1c\xc7\x14\xb8\xd1\x88\x9c\xc0\x79\x6a\x81\x11\xed\x45\xcc\xf5\ +\x9d\x09\xf3\xdc\x55\x1a\xe7\x4d\x99\xb9\x91\x8c\x3d\x2d\xbc\xdb\ +\x7f\xa7\xf5\x9b\x69\x75\x47\x07\xba\x9e\x56\xdb\xad\x34\xe6\xb1\ +\x69\x52\x1b\x68\x6c\x96\xf9\xe9\x34\xec\xf8\xe6\x0d\x79\xe0\x8a\ +\xf8\xdc\x18\xc0\x66\x57\xb7\xe9\x42\x03\xf7\x57\xb7\x77\xf6\x15\ +\xc7\x53\xa0\xe0\x2e\x6e\xa0\xfb\x22\x71\xcb\x11\xe1\x86\x6c\x85\ +\x91\x02\x37\x9f\xf8\x4b\xb7\xcd\x52\xf4\xa5\xce\x8f\x2b\x8d\x21\ +\xe4\x77\x32\x89\xc9\x19\x4f\xa6\x69\x9c\x99\xeb\x9c\x67\xfc\x55\ +\xfe\xb6\xa3\x74\xfc\x57\xe2\x74\xa5\xb1\x87\x1b\xb5\xd3\xd3\x98\ +\xce\x6e\xc7\xe4\xf4\x95\x88\x07\x1a\x5f\x1e\xdc\x8d\xfd\xad\xdb\ +\xb1\x3b\x55\x1f\x58\x28\xff\xc5\x75\xac\xa7\x57\x4a\xc6\x4d\xb2\ +\xab\xd8\x5f\xcc\x62\xab\xb2\x71\x5e\xf2\x6b\x6e\x1d\x14\x86\x85\ +\xcb\x62\x24\x40\xc8\xd7\x3a\x0f\x07\x82\x0e\x52\x03\x11\xe7\x77\ +\x62\x6c\xe7\xb9\x4e\x18\xc7\x4e\x7d\x72\x35\x1f\xc5\xad\xd7\xef\ +\xc4\xe2\xab\xaf\xc7\xe4\xad\xd7\x7d\x0d\x9a\x3e\x7e\x14\xd7\xdf\ +\x7d\x2f\x96\x0f\x9f\xc4\x86\x27\x09\x65\x47\x2d\xa3\xfc\x3c\xba\ +\xb6\xdc\x33\x03\x1d\x3a\x2f\xcd\xc2\x76\x6a\x80\x73\x9c\x51\xcd\ +\x7b\xdc\x69\xbc\x52\x1e\x80\x63\x18\x6a\x81\x36\x76\xdb\xd3\x97\ +\x84\xa9\x0e\x04\x7c\x91\x73\xa0\xfc\xb4\x8b\xa2\x86\x22\xb2\xcc\ +\x0a\xb2\x3a\xd1\x39\xc7\x2b\x1f\xf9\x5f\x4f\xe7\x42\x32\x51\x7f\ +\xf0\x48\xe3\xfb\xec\x6e\xfc\xed\xff\xdb\xff\x23\xce\x4e\x17\x36\ +\x45\x5b\x26\x0c\x7d\x2b\x7a\xc8\xfa\x69\xc2\xcd\x7c\xbe\xa8\x7c\ +\xff\xb2\x00\xe5\xfd\xac\x32\x17\x3f\x9b\x49\xfd\x50\xfd\xea\xf4\ +\xfc\x6e\xfc\xde\x1f\xfe\x97\x71\xeb\xde\x46\x6d\x5e\x67\x38\x7d\ +\xdd\x48\x71\x0d\x56\xdc\x70\x85\x41\xd7\x87\xf0\x18\x61\x80\x4e\ +\xdc\x1d\xe9\x37\x24\xc3\x86\x02\x1b\xb1\xd6\x21\x6e\x94\xba\x40\ +\x47\x35\xa2\x17\xf9\xf4\xcd\x9b\x98\xc5\x38\x80\x81\xa2\xa1\xe2\ +\x03\x76\x5e\xcb\xd9\x68\x5a\xc4\xed\xb3\x13\x71\xe4\xcb\x74\x12\ +\xb3\xc9\x36\x3e\xd2\xdc\x63\xbd\xbd\xf6\x4d\xee\xf4\xaa\x41\xd2\ +\x87\xbc\x43\xc0\x1d\xa4\xcd\xad\x96\xe2\x39\x7e\x8d\x3d\x48\xf2\ +\xcc\xc9\xf3\x69\xa6\xf3\xe9\x4c\x63\xd8\x9d\x5b\xf3\xb8\x73\x67\ +\x12\xb7\x6f\xf1\xbf\x67\x23\x87\x5b\xa7\xbc\xd2\x6d\x14\x67\x33\ +\xd1\x1a\xe3\xee\xca\xed\x57\xcf\xf6\xf1\xfa\x1d\x85\x7b\xfb\x78\ +\x4d\x43\xe1\x5d\xfe\x83\x72\xa6\x31\x30\xf8\xf1\xc1\x54\xe3\xbe\ +\x02\x3f\x44\xd8\x92\x83\xda\x6a\x7e\xe5\x72\xaf\x35\x96\x5e\x5e\ +\x8f\xe2\xe3\x4f\xa7\xf1\xfe\xa7\x11\x1f\x3c\x9a\xc6\xa7\x17\xd3\ +\xb8\xda\xce\xbc\xbd\xc0\x90\xe0\xcd\x13\xaa\x58\x8e\x77\x63\x83\ +\x7c\x6d\xc1\x70\xb3\x2a\xa4\xcc\x1b\x0b\x7c\xa3\x5f\x46\x68\xcf\ +\x39\xaf\x4f\xcb\x81\x5c\xa0\x04\xd5\xd6\xd8\x1d\x34\x77\x9a\xd2\ +\xa1\x6d\xa2\xa0\xef\xa7\x7e\xf9\xb0\x53\xe7\x36\xcb\x44\xa8\x64\ +\x52\xe5\x43\x1f\x74\x2c\xd3\x75\x4f\xae\x75\x9e\x92\xc6\x0c\xeb\ +\xf5\x73\xa7\x7c\x0a\xcd\x5c\x16\x0a\x2d\xdf\x2e\x1d\x70\x68\xbb\ +\x12\x74\xed\xd7\x74\xc9\x32\xfd\xee\xe3\x09\x4d\x0f\x28\x3b\x66\ +\x49\x47\x36\x46\x3c\xc2\x47\x0c\x9e\xd2\x67\x3d\x97\x8e\xd4\xb3\ +\xe7\x08\xac\x40\xbd\x1e\x44\x85\x39\x24\x2f\x41\x11\xec\x34\x1e\ +\x36\xa0\xbb\xb2\x25\x98\xe5\x63\x1f\x9a\xcf\xb6\x49\x3a\xbb\x8b\ +\x2c\x75\xdd\x1f\x9c\x9f\xae\x19\x15\x88\xa7\x0a\x34\x5f\xf1\x4d\ +\x28\x5e\x30\x9c\x37\xa5\xbe\x15\x05\xe8\x24\x9f\x74\x65\x28\xc1\ +\xff\x67\x06\xab\xe9\x02\xbd\x3c\xf3\x28\x6c\x3b\x30\xa1\xc5\x71\ +\x39\x9a\x3f\x1c\x38\xf6\x1f\xb6\xa4\x8c\xe5\xa3\x37\xd3\x6a\xe3\ +\xcc\x1b\x64\x3b\xcd\x17\x92\xab\x38\x4f\xa9\x49\x13\x99\xcc\x39\ +\x15\x71\xf5\xeb\x7c\x32\x29\x9f\x28\x63\x3e\xc3\x58\xb1\x59\xef\ +\xfd\x74\x99\xa7\x64\xe8\x70\x0e\xd8\xa3\x76\x48\xa4\x9a\x36\xed\ +\xea\xf5\x51\x7a\x38\x8d\xab\xcc\x93\xc0\x4d\x5f\x7c\x4a\xb7\x55\ +\xff\xd7\xf4\x4c\xb6\xc7\xb1\xd4\xbc\x69\x49\x9e\xcc\xe5\x78\x5a\ +\x5f\xfe\xad\x99\xdb\x69\xae\x73\x32\xdf\xc7\x7c\x4e\xdb\xd1\x9e\ +\xac\x62\x6d\x2e\x33\x53\x7c\x3b\xe6\x87\x97\x6c\xd8\x47\xcc\x17\ +\x6c\xbc\xd2\xf7\x75\xfd\x1e\x2b\x8c\xa6\xfe\x81\xcc\x44\xe7\xdc\ +\x4c\x78\xae\xf5\x26\xaf\x8d\xf5\x13\xb1\xba\xbe\xf3\x5a\x49\xea\ +\x81\xa7\x50\xcb\xaa\x8e\x79\x76\x38\x03\x7f\x33\xf6\x1c\x28\xef\ +\x56\x26\x03\xf4\x81\x6a\x31\xcc\x03\xcb\x52\x63\x95\x9e\x5c\x8a\ +\xd9\xec\x56\x7c\xed\xdd\xd7\xe2\xde\xbd\x3b\x2a\xff\x2a\x2e\x2e\ +\xae\xe2\xa3\x4f\x3f\x8c\xd5\xf6\x89\xeb\xae\x3b\x5f\x0c\x49\x57\ +\x72\x43\xd2\x18\x4d\xda\xe5\x67\xce\x24\xec\x1f\xd0\xf2\x96\x0b\ +\xcd\xa5\x28\x61\x83\xce\xa2\x89\x96\x03\x7d\x81\xe9\x36\x75\x42\ +\xff\xa0\x47\x15\x34\xa2\x63\x00\xb2\xa8\x78\x57\x07\x1e\x6f\xf4\ +\x1d\x26\x92\xd0\x4f\xf7\x33\xb7\x97\x18\x8b\x97\x8f\x4e\x35\xc6\ +\xff\x76\xfc\x8d\xaf\xff\x3b\x32\x31\xf3\xb5\xd3\x46\x5c\x10\x1d\ +\x48\x6f\xfa\x08\x3f\xef\x70\x6c\xe6\x23\x1c\xe1\xe5\xc1\x71\x43\ +\xed\x08\x47\x38\xc2\x5f\x1c\xbc\xe8\x8a\xfe\x67\xbc\xca\xbf\xdc\ +\xc9\x01\xd6\x14\xb4\xa0\x78\xf2\x83\x0f\xe2\xa3\xdf\xfb\xe7\x71\ +\x5f\x0b\x0b\xdf\xe3\xab\x09\x2b\x0b\xa1\x7c\x45\x07\x0b\xc1\x9c\ +\xbc\x1a\x48\xd6\x3e\xd0\x98\xd2\x22\x26\x17\x1a\x0a\xed\x86\x25\ +\x0b\x7b\xcb\xa1\xc1\x4d\x86\x1e\x76\x38\x0c\xc0\x36\xc8\x86\xc5\ +\x12\x71\xf2\x31\xea\xc0\x49\xcc\x28\xdd\x62\x82\x65\xb6\xb3\xe9\ +\xc9\x3e\xa9\xf7\xd3\xd8\x9f\x4e\x62\xf6\xea\x69\x4c\xe7\x9a\x5c\ +\xcb\x97\xcd\xe3\x8b\xb8\x7e\xa4\x45\xa0\x56\x75\xfe\x4f\x22\xa7\ +\xc8\x34\x94\x77\xc3\xcd\x73\x4d\xf6\xb5\xea\x6a\x92\x81\x1f\xe5\ +\x7b\x07\x4d\xa7\x41\x09\xcb\x27\xdf\x7e\xe0\xcb\xc3\x22\xdc\xb0\ +\x61\xc3\xe8\xce\x75\xdc\xfb\x85\x5d\xdc\xff\xfa\x3c\x1e\xfc\xf6\ +\x83\x38\xfb\x37\xdf\x88\xf8\xf2\x1b\x5a\x28\xbc\xa9\x14\xb7\xa5\ +\xcc\xcd\x36\xec\x08\x4f\xb4\xd2\xbc\x7e\x12\x57\xef\x5d\xc4\xc5\ +\x27\x4f\x62\xf9\xc1\x55\xac\xdf\xbf\x8a\x67\x1f\x68\xf9\xfa\xdd\ +\x8d\xf8\x9b\xb8\xfc\x64\x14\x17\x4f\x55\x2e\xfe\x23\x6d\xa9\xf2\ +\x6e\xa7\xac\xad\x13\x58\x74\x2a\x67\xdf\x98\x15\x59\xa8\x07\x7c\ +\xf3\x81\xc5\x64\xf1\x80\x03\xa5\x06\x30\x09\xb2\x52\x72\xa7\xed\ +\x8c\xea\x60\x3b\x70\xa9\xa7\xc2\xf4\x05\xdf\x3f\x2c\x1e\x6a\xb5\ +\xe1\xda\xfa\x4a\xea\x68\x71\xc6\x8d\x2d\x6e\x74\x4b\x96\xed\x92\ +\x7a\xad\xef\x41\x72\xf0\xa2\x2a\x59\xd2\xe0\xa0\x08\x0b\x57\x27\ +\xd5\x41\x8b\x60\x50\x5b\xca\x75\x69\x00\x61\xa7\x21\x4e\xb0\xc0\ +\xca\x37\x60\x90\xa0\xa0\x53\x81\x90\x4f\xe4\xe1\xd4\xcd\x78\x21\ +\xe5\x96\x04\x60\x12\x8e\x08\xe9\x91\xc6\x50\x6d\x43\xe0\x46\x11\ +\x0b\x42\x8b\x28\x6b\x13\x01\x8e\xb2\x18\x25\x7d\xcf\xb3\x39\x47\ +\x86\xcc\x04\x73\x1c\xd5\x01\x7b\x5e\xbc\x16\x5d\x61\xcf\x8d\x00\ +\x9d\x0f\xd4\x7d\x33\x2d\x49\x26\xf3\x11\xa6\x70\xf3\xb9\x19\x35\ +\x06\x52\x1b\x73\x1d\xcf\x91\x02\xd3\x25\x47\xb7\x64\x7d\x9c\x64\ +\x25\x37\x2d\xc4\x39\x97\x2b\xe3\xd2\x11\xed\xf3\x10\x4c\x03\xc3\ +\x93\xae\xf5\x14\x86\x58\x72\x37\x03\x71\x82\x37\xba\xb0\xa5\x93\ +\x01\x5a\x98\xa7\x8b\x46\xd0\x6c\xca\x6c\x84\x35\x06\x8c\x78\x22\ +\x4d\xd8\xaf\x7b\xf4\xc6\x19\x7a\x4a\xcf\xa6\x1a\x1b\x66\xf0\x8a\ +\x76\x3e\xde\x54\xd3\xb8\x58\x38\x43\xe6\x49\xb6\xd9\x15\xfa\x1e\ +\x90\x7d\x5e\xa1\x8d\x7b\x85\x2d\xe7\xd0\xe8\x06\x25\xf0\xc7\x65\ +\x19\x67\xd1\x77\x23\x67\xcf\xab\x91\x56\x4b\x69\x5c\x8e\x62\xa6\ +\x13\x6b\xb6\x9d\x7b\x53\x7a\x3c\xe3\x9c\x99\xc4\x76\x9a\xff\x4f\ +\x32\xd3\x58\x30\xd9\xcf\x63\x32\xbd\x15\x93\xdb\xb7\x62\x7e\xf7\ +\xd5\x98\xdc\x7f\x3b\xe2\xfe\xeb\x1a\x66\x5e\x8d\xb8\x73\x3f\x76\ +\xf7\x66\x31\x5a\x28\xdd\x86\xbc\xae\x63\xb4\xbc\x88\xdd\x35\xb7\ +\xc6\x96\xce\x93\x7a\xe1\xc9\x3e\x6e\x82\xb0\xa9\xc6\x78\x29\x6e\ +\xef\xaf\xfd\x87\x27\x42\xc8\xe7\x9b\x0b\x99\x7a\x0d\x9a\xbe\xd5\ +\x25\xcf\x9b\xf3\xa2\x19\xb4\x21\x84\x19\x1b\x77\x33\x95\xf5\xb6\ +\xfc\xfe\xd2\x9d\x98\xbd\xfb\x46\x4c\x4f\xce\x62\xb4\x5e\x45\x7c\ +\xf2\x69\xec\x7e\xf0\x61\xac\x2e\x2f\x7d\x93\x4c\x95\xa1\x90\x9b\ +\x69\x63\x9f\x47\xe9\x55\xba\x42\xcd\x15\x74\xb4\x3c\x73\xbd\xd3\ +\xdf\x85\xc9\xb7\x42\xe7\x83\x20\x3d\xb6\xa5\xb4\x65\x86\x0e\x94\ +\x9b\x2c\x69\x73\x1c\x50\x43\x74\x37\x2e\x0b\xe3\x8b\xcf\x51\x81\ +\xeb\x01\x99\x23\xb6\xa6\xac\xf2\xc6\xdb\x74\x32\xf1\x93\x85\xd0\ +\xa8\xf3\x24\x1a\x77\xfb\xbe\xf1\x6c\x19\xa7\xef\xfe\x52\xfc\xea\ +\xff\xe2\x77\xe2\x54\xe7\x26\x6c\x8f\x65\x50\x85\x12\x2a\xfe\xb2\ +\xe1\xf3\x6c\x36\xd9\x4f\x23\xdf\x9f\x25\xa0\xfc\xc3\x60\xc8\x88\ +\xdb\x58\x17\xad\xd9\xe4\x6e\xfc\x83\x7f\xf2\xff\x8a\x5b\xaf\xac\ +\x74\x5e\x8a\xc1\x89\x44\x1f\x90\x9a\x35\xeb\x90\xe3\x42\xa6\xcf\ +\x76\x2e\xda\x28\xe3\xa9\x0a\x2f\x75\xe8\xab\x3c\xa1\x96\xbc\x94\ +\x39\x4d\xaa\x1b\x4c\xb6\x38\x7d\x70\xc0\xc8\xa7\xd4\x60\xd2\x3f\ +\xc5\x6b\x7a\x3d\x31\x00\x78\xc5\xaf\x0c\xf2\x94\x99\xc7\xdd\xdb\ +\xa7\xc2\xba\x56\xab\xc0\x7c\x9e\x5d\xac\xe2\xf1\xe5\x4a\xa7\xc5\ +\x1a\xe5\x4c\xe5\xfe\x2f\x8a\xc8\x41\x5e\xbd\x5b\x89\x5b\xac\x41\ +\x1b\x5f\xca\x0e\x50\x2a\xb8\x91\xe7\x91\xc6\x3e\xe5\x7d\x32\xe7\ +\xff\x8c\x16\x71\xe7\xf6\x38\xce\xee\x6e\xfc\x7f\xb4\xfc\x2f\xd2\ +\x42\x75\x74\x26\xd9\xf9\xe9\xcc\xff\x0d\x7c\xaa\xb1\xe5\x6c\xba\ +\x8b\x7b\x67\xbb\x78\xf5\xde\x36\xee\xdf\xd9\x48\xa6\xf9\xee\x42\ +\xf3\x25\x66\x1a\x9c\xdb\xe4\x2b\x3f\xf3\xb5\x7f\xe9\xd7\x68\xbc\ +\xb2\x37\xcf\x2e\xe6\xf1\xf1\xd3\x51\xfc\xe0\xe3\x69\x7c\xff\xd3\ +\x49\x7c\xfc\x64\x11\x4f\xae\x67\xb1\xdc\x6a\xcc\xe2\x06\x7d\xdd\ +\xd4\xa7\x9c\x65\xca\xc1\x75\xdd\x15\xa2\x01\xe5\x92\x84\xf2\x14\ +\xc7\x63\x09\x5c\x25\x86\xe6\x26\x3d\x0f\x7d\xb4\xa1\x29\xab\xbf\ +\xd5\x47\xc7\xe8\xf8\x1e\x4f\xf1\xdd\x5c\x00\x3a\xf5\xac\x23\xf3\ +\xdd\xeb\xb6\x2d\x2e\x39\x22\x14\x70\xb3\x02\xe0\x7e\x95\x62\x44\ +\x75\x44\xa1\xa7\x5d\xb6\xf2\x1b\xf0\xb1\x4b\x06\x7f\x08\xaa\x53\ +\x09\xcc\xe5\xc6\xb8\xc0\x29\x7d\xc8\x14\x43\xb0\x4b\x56\xd6\x01\ +\xb1\x82\x11\xbc\x09\xaf\xca\x45\x56\x3a\x1c\x06\x7e\x38\x8d\xa0\ +\x9b\x93\x81\x25\xb7\xbf\x3e\x26\xee\x03\xe2\xa4\xbb\x34\x82\x92\ +\x54\xe0\xbc\x81\xea\xe5\x64\x67\x6b\x4a\x63\x7f\xb2\xf1\x4a\x54\ +\xe7\x99\x78\x9a\x41\xa0\x28\xd1\xa6\xe2\x44\xf8\x8a\x46\xdf\x69\ +\x85\x01\xa3\x94\xe3\x77\xae\x43\x10\xc3\xc8\x7a\x33\x90\x17\xa8\ +\xa5\x63\xeb\x0a\xd2\xd1\x24\x52\x52\xf2\xd2\x83\x9b\x2a\x1c\xcb\ +\x46\xb3\x2b\x5e\xd2\x9a\xdb\xa0\x57\x71\xa7\xe1\x9c\xd0\x87\xd7\ +\x2c\xb3\x09\x05\x46\xe6\x0d\x35\xf3\xb6\x5a\x3b\x11\xe0\xc9\x02\ +\x72\xc6\x1a\xd1\x2c\x45\x72\xf3\x4d\xb4\xaa\x80\x0d\x34\x9e\x2a\ +\xf3\x2b\x1b\xd9\x4c\xd3\xdc\x82\x4d\x36\x74\x33\x77\x7c\xf1\xd7\ +\x21\xa1\x35\x78\xab\xae\x8c\xbb\x18\xe0\x44\x09\x83\xfe\x94\xbd\ +\xdc\x67\xb2\xce\x51\x9e\x80\x93\x0f\x4a\x04\xe6\x55\x93\x2b\xf9\ +\xc5\x18\x76\xba\xd8\x7b\x53\x9d\xa1\x5a\x0c\x99\x90\x0d\x85\x34\ +\xa5\xb4\x60\x9d\x8c\x3e\xc7\x34\x96\xf0\x43\x54\x74\xf8\xf1\xdf\ +\x94\xb8\x4e\x56\x36\xd0\xa6\x1a\x77\x66\xbc\x2c\x40\xe7\xee\x4c\ +\xe3\xe3\x6c\x26\xfb\xea\xaf\xbc\xed\x85\xa7\xe6\xa8\x35\x4c\x71\ +\x4c\x2f\xc9\xa7\xf0\x10\x14\x6d\x65\x3c\x80\x8e\xd5\x4a\x2c\xc6\ +\x40\xad\xdc\x36\x0b\x3c\x89\x69\xdc\xbf\x77\x2f\xbe\xf4\xf6\xed\ +\x58\xcc\x17\xb1\x5a\x5d\xc7\xa3\x47\xcf\xe2\xf1\xb3\x0f\xd5\x06\ +\x6a\x8c\xc3\x9a\xeb\x4c\x35\x0c\x98\xa6\xbc\x0d\x57\xf0\x0f\x1f\ +\xc5\xf5\xeb\x1e\x9b\x5c\x30\xb4\x48\xfb\xf0\x56\x16\xb8\xa6\x75\ +\xf0\xa6\xa6\x2a\xba\xb5\xdd\x67\x43\x5a\xe4\xe8\xd3\x92\x3f\x12\ +\x26\xe6\x48\x86\xd6\xff\x39\x4f\xf8\x01\xc1\x6e\x7c\x1d\x0f\x3f\ +\x1d\xc7\xdf\xfc\xd5\xff\x63\xfc\xca\xd7\xbe\x26\x8d\xf4\xcb\x96\ +\xd2\x9c\x70\x23\x8e\xf0\xf3\x0e\xc7\x96\x3e\xc2\x11\x5e\x1e\x1c\ +\x37\xd4\x8e\x70\x84\x23\xfc\xe5\x80\x36\xb3\xfb\x91\x13\xc9\x17\ +\xc3\xe7\x4d\x0e\x30\x79\x53\xfe\x3c\x6f\x18\x4b\x9a\x89\xf1\xd9\ +\xed\x45\xfc\xc9\xff\xe7\xef\xc7\x2b\xd3\x6b\x2d\x06\x72\x1b\xc3\ +\x93\x5f\x7d\x78\xfd\x21\x8b\x24\x56\x1a\xdd\xe2\x4d\x49\xdb\xa4\ +\xda\x73\x53\x70\xb2\xcd\xe3\xe6\xae\xb1\x6c\x79\xb1\x8e\xbc\xe1\ +\x9a\x84\x0f\x6f\x62\x76\xa0\x68\x37\xc9\xee\xb0\x1d\xa9\x68\xea\ +\xe7\x31\x17\x26\x36\xeb\x78\x03\x7c\x91\xb6\x98\x2c\x48\x98\x82\ +\xcf\x16\xf2\xe3\xde\x3c\x66\xa7\x33\xdf\x88\xdf\xae\x54\xa6\x4f\ +\xb7\xb1\x5e\x5f\xc7\x48\xe5\xcb\x34\x58\x84\x56\x51\xb9\x61\xca\ +\xda\xd7\xb2\x82\xe6\x6b\x2a\x3e\xe7\xfa\x10\xd2\xd7\x02\x36\x76\ +\x84\x36\x73\x2d\x22\x85\xf7\xf7\x97\x31\xfb\x85\x5d\xdc\xfe\xb5\ +\xb3\xb8\xff\xeb\x67\x71\xf7\xaf\xbf\x16\xf1\x95\x2f\x49\xef\x55\ +\x19\x3d\x57\xd0\x4a\x8c\x1b\x3c\xec\x40\x39\x88\x7e\x72\x15\x57\ +\x1f\x3c\x8a\x4f\xbe\xf9\x71\x3c\xfb\xf6\xa3\x78\xfa\xfd\x4d\x5c\ +\x7c\x77\x15\x57\x1f\x8d\xe2\xf2\x4a\x8b\xc0\x95\xca\xc7\xff\xa3\ +\x69\x71\xba\xe7\x97\x90\xac\x5c\x81\x81\x9f\xac\xcd\x20\x09\x07\ +\xfe\x15\xff\x47\xc2\x73\x09\xc5\xaa\x84\xd4\x9e\x69\x6c\x89\x80\ +\x66\xe1\xa9\x75\xa6\x17\x5d\xac\xa7\x58\x70\xd1\xe4\xb4\x5a\x7b\ +\x02\xcd\x1b\x67\x92\xe5\xcd\xed\xb1\x17\xa5\x3c\x35\x62\x19\x8b\ +\x5a\x0c\x56\xa6\xfd\xaf\xd3\x0b\x14\x77\x3b\x77\x7c\x7a\xeb\x40\ +\x0f\x64\x5a\x7a\xcd\xcc\x41\x3c\x69\xc0\xba\x36\x8c\x4d\x11\xbe\ +\xe1\x23\xa6\xc5\x65\x37\x39\x26\xac\x3a\x84\xe7\x78\x7d\x2c\xcb\ +\x50\x54\xff\xb8\x89\xc1\xfe\x23\x17\x4a\x77\x72\xd1\x69\x06\x6d\ +\x68\x1e\x71\x90\x7c\x43\xd8\x1a\xb2\xd2\x25\x55\xfe\x02\xd6\xc1\ +\x0e\xfd\x2e\x7d\xa7\x1f\x3b\x89\x65\xd2\xd5\xd7\xe7\x32\x6d\xc2\ +\x13\x6a\xd4\xff\x00\xba\x2c\x3a\x9b\x89\x86\xf1\xf4\x5d\xe4\x81\ +\x2c\xf3\xeb\x69\x61\xe7\x59\x3c\x7f\x07\x71\x8e\xad\x9c\xe6\xe3\ +\x1b\x65\x11\x69\xc3\x76\xb4\x74\x88\x67\x1d\x38\xce\xb9\x09\x16\ +\xe2\xd7\xa9\x99\x8f\xe4\xe2\xf9\x97\xe0\xf0\xb6\x5b\xcb\xfa\x1f\ +\x04\x08\x7b\x33\x2d\x65\xb9\xa1\x06\x66\x33\x6d\x13\xbb\xf5\xda\ +\xe3\x5d\xfe\x8f\x1a\x37\x49\x35\x22\x74\x1b\x69\x60\x5c\xca\xbc\ +\xb1\xe7\x4d\xb5\xe6\x0f\xf9\xa6\xe3\x1c\x0d\xd9\x97\xb2\x07\xd0\ +\xe7\xf2\xdc\x20\x64\xdc\x62\x21\xce\x76\x83\x92\xf6\x75\x0f\xa4\ +\x12\xbd\xd2\xff\xa3\x21\x21\x55\x34\xda\x4d\x1c\xdf\xaf\x66\xb1\ +\xbb\x9c\xc4\x64\xa5\xb0\x9c\xc4\x54\xea\xd3\x1d\x4f\xab\x09\x3f\ +\x9d\xc5\x34\xce\x62\x7a\xfe\x20\x46\xaf\xdf\x8f\xf1\xbb\xaf\x2b\ +\xbc\x13\xf1\xb6\xc2\x83\xd7\x23\xce\xef\xc6\x7e\x76\xaa\xbc\x75\ +\x9e\x5d\x5f\x47\x70\x33\xfc\xf2\x22\x76\x8f\x54\xc8\xfd\x75\xec\ +\xe7\xf9\x74\x8d\xc7\x72\xb1\xf8\x25\xb9\x0a\xae\xbc\xf1\x23\xbd\ +\xb2\x7b\x2e\x6e\x2b\xa3\x8e\x2e\x98\x99\xf6\xb7\x07\x4a\xc1\x38\ +\xa0\x83\x74\xf2\x1c\xcf\xc0\x78\xb0\x13\xe6\x29\xde\xed\x62\x12\ +\xb3\x7b\xe7\x31\xfd\xd2\xdd\x58\xbc\xf1\x20\x56\x92\x4d\x9f\x5e\ +\xc6\xfe\x87\x1f\xc6\xd5\x27\x8f\xb2\x9d\x74\xc2\x3a\x7f\xdb\xcf\ +\xbc\xc1\x3e\x1a\xdd\xa0\xf9\x32\x9e\x74\x63\x8d\xd2\x80\x51\x28\ +\x7e\x25\x69\x29\xf5\xa1\xaf\x29\x46\x31\x29\x0e\x98\x6e\xe6\x0d\ +\x35\x11\xee\x67\xb0\xab\xdd\x01\xb1\x81\x16\xb7\x84\x74\xfa\xf8\ +\xd5\x48\xca\x8f\x4d\x80\xd9\x74\x1a\xd3\xd9\x54\xe3\x5f\xb5\xbc\ +\xb2\xb9\x54\x9f\xfc\xd3\xcb\x6d\x7c\xe5\x3f\xfa\x4f\xe2\xdd\xdf\ +\xfc\xcd\x58\xe0\x1a\x02\x1b\xc3\x48\x7a\x66\x65\x48\xf8\x8d\xf5\ +\x45\xc0\x17\x99\xd7\xcf\x1a\xd0\x36\xea\x0c\xee\xcf\x8a\x4e\x75\ +\xdd\xfe\xbd\x6f\xfc\xb3\xd8\x4e\x3e\x8c\xc9\x29\x63\x8d\xb8\xfa\ +\x72\x3e\xb9\xcb\x91\x44\xfd\xa0\xe9\xc3\x6c\x18\x69\x4f\x13\xcb\ +\x63\xe3\x91\x46\xdd\xc7\xd8\x3a\xf0\xf8\xa4\xa2\xa1\x23\x21\x08\ +\xea\xc7\x96\x2b\xf8\x15\xae\x0c\x64\xee\x3f\x9d\x66\xc1\xcd\x78\ +\x82\xbb\xa0\xc0\x26\xd4\x65\x79\x5e\x83\xff\x61\x9c\xcd\xe7\xb9\ +\x99\x2d\xe6\x4a\x73\xaa\x8f\x9f\xac\x34\x6d\x5a\xd5\x8f\x79\xd2\ +\x16\xbe\x35\xc8\xa7\xca\x13\x38\xbf\x5a\xd7\x7e\x31\xf4\xe9\xda\ +\x98\x0a\x07\x97\x27\x1a\xb3\xb8\x71\x7d\xeb\x24\xe2\xee\xf9\x38\ +\xee\x68\xda\x74\x72\xb2\x11\x6f\x1f\xd3\xfd\x26\xe6\xaa\xf2\x53\ +\x55\xd2\xed\xdb\xd3\x38\x3f\xbf\x15\x77\xef\x9d\xc6\xed\x73\x8d\ +\x8f\x1a\x33\x79\xb6\xe9\xf4\x64\x6b\xdf\x79\x25\x2e\x36\xc7\x3a\ +\x97\x27\xdc\xac\x65\x1c\xc7\x21\x30\xed\xa9\x7a\x5a\x09\x3f\x79\ +\x76\x1a\xdf\xff\x78\x17\xdf\xfb\x60\x1e\xef\x3f\x9c\xc4\xe3\xeb\ +\x69\x5c\x69\x7e\xe8\x21\x51\xe9\x18\x93\x9b\xbf\xe9\x69\x42\xa3\ +\x3d\x7e\x34\x90\x9a\xcb\x41\x16\x19\xad\x94\x02\xe5\xc5\xe6\x0c\ +\xff\x0f\x85\x94\xcd\x58\xff\x5f\x5e\x53\x80\xf0\x37\x19\xee\x03\ +\xad\x6d\xa5\xcf\xfc\x95\xe3\x50\xde\xe6\x51\x8c\x3d\xc9\x2b\x67\ +\x3a\x44\x39\x1b\xa5\x0f\x6a\xce\x07\x3b\x38\x89\xb0\x94\x01\x0a\ +\x5b\xfa\x69\xb1\xf4\x88\xf9\x2b\xda\x82\x5e\x6e\x9b\x82\x16\xef\ +\x54\x04\x9d\x8e\x99\x25\x83\x29\xdc\x94\x1a\x99\x51\xca\xa4\x39\ +\x4b\x95\x27\xa1\xd2\x5b\x06\x4e\x80\x6a\x31\xae\xd7\xbd\x6f\x37\ +\x21\x53\x3f\x07\xe5\x4f\x47\x1b\xc0\x2d\x14\x38\xaa\x83\x75\x92\ +\xef\x27\xd1\x7c\x41\x90\x6d\xe6\x22\xfc\x98\x47\xc1\xff\xb1\xea\ +\xb9\x42\xe9\x29\xa4\xe9\x96\x2e\xb1\xed\x91\xcc\x71\x08\x05\x7c\ +\x57\xd4\xeb\x94\x4e\x4d\x44\xcd\x57\x33\x29\xb4\xa0\xa5\x33\x30\ +\x5f\xa9\x74\x05\xe9\x41\xf2\x53\x0f\x02\x1b\xc5\xf7\x91\xf9\x8d\ +\xd6\x4a\xfa\x98\xd6\xd9\xed\x23\xe5\x30\x97\x8f\xe6\x4e\xe8\xb2\ +\x41\x26\xae\xfd\x51\xf9\x72\xaa\x54\x1b\x70\xc4\x1d\xc6\xde\xc8\ +\xf2\x13\x4a\xcc\x29\x14\xb6\xbc\x92\x51\xd8\x3f\x4e\xc2\x03\x75\ +\x16\xbb\x04\x4d\xa8\x08\x7d\xb8\xb5\x7f\xf6\xac\x12\x94\x7e\x4b\ +\x93\x95\x94\xc7\xae\x8b\xb4\x88\xbe\x5b\xe9\x7b\x79\xb7\xe3\x3f\ +\xdb\x46\xb1\x14\xbd\xdd\x4f\x63\xa1\xf1\xf8\xd6\x99\xce\x39\xe9\ +\x61\x8b\x19\x33\x67\x8e\xf3\xf2\x97\x3e\x27\xe7\xc7\x94\x6c\x21\ +\x7a\x26\x5a\x21\x66\x3a\x4f\xe7\xb9\xa9\xc6\xf2\x45\xe3\xd2\x74\ +\xca\x78\xa2\x20\x7d\x96\xd3\x6c\xb0\xb1\x69\xcf\x8f\x9c\xfc\xdf\ +\x6a\x4a\xd5\x39\x5c\x4e\xb6\xfe\x9c\xc7\x04\x97\x18\xbd\x43\x66\ +\xc1\x40\x30\xe8\xf3\x70\xcc\x15\xcf\xff\x1b\x37\x3e\x8f\x5f\xf8\ +\xd2\xab\xf1\xe0\xc1\x2d\x25\xd9\xc5\xd5\x72\x19\x1f\x7c\xf8\x69\ +\x2c\x79\x3a\x4d\x73\xdf\x96\xff\x10\x86\x9c\xa4\x75\xcc\xaf\xfd\ +\x74\xf0\x1c\x4a\x35\xc4\xbc\x86\xa7\x69\xe1\x59\x77\x00\x72\x0b\ +\xcf\xec\x1d\xb4\x1a\x33\xff\x3b\x2d\x83\xdb\xd6\xc2\x21\xdc\x60\ +\xc8\x68\xa6\x57\xdd\x1f\x64\xd0\xf4\x64\xab\x68\xfa\xea\x64\x7b\ +\x12\x4f\x3e\x39\x8f\xbf\xf3\x3b\xff\xf7\x58\x4c\xf9\xe7\x71\xd5\ +\x83\xda\xc0\x1a\x4e\xff\x9c\x97\x47\xf8\x39\x86\x63\x6b\x1f\xe1\ +\x08\x2f\x0f\x8e\x1b\x6a\x47\x38\xc2\x11\xfe\x72\x40\xbb\xba\xff\ +\x39\xae\xf2\x2f\x4a\xda\xa6\x96\x37\x65\xcf\xeb\x36\x4d\x81\x85\ +\x3a\x68\xb2\x39\x3d\x9b\xc4\x37\xff\x7f\xbf\x1b\x17\x9f\x7c\x33\ +\x5e\xbf\x7d\x5b\x5a\x9b\x6e\x91\xb7\xd1\xaa\x87\x79\xb7\xa7\xad\ +\x6d\x75\x23\xf0\xf4\xd9\x93\xeb\x41\x9c\xa3\x16\x12\xdc\x08\xf0\ +\x0d\x53\xad\x30\xb8\x0f\xdc\x26\xe1\x28\x73\x63\xd1\x89\x32\x5a\ +\x29\x4d\x18\x1a\x0f\x57\xcb\x05\x85\x8c\x38\xde\x41\xa5\x11\x4a\ +\x2a\xad\xf8\x28\x23\xf8\xdf\x6e\x22\xec\xe5\xd3\xec\x7c\x1c\x93\ +\xdb\x27\x7e\x2a\x80\xdf\x24\x2f\x2f\x36\xb1\xbe\x58\xc7\x96\xf7\ +\xa8\xb1\x7c\x92\x3e\xda\xce\x8a\x45\x9a\x56\x7e\x5e\x07\x57\xde\ +\x96\xa6\xb9\x1e\x0b\x06\xa4\x80\x45\xa1\x38\x24\x01\xb1\xa8\xd1\ +\x22\x8b\x7b\xd0\x9b\xd9\x3e\xd6\xb7\xd7\x71\xe7\xd7\x27\xf1\xe0\ +\xd7\x6f\xc5\xab\xbf\xb6\x88\x57\xbe\xfe\x46\x4c\xbe\xf2\x4e\xc4\ +\xe9\x6d\x19\xba\xa3\xf4\x2c\xd0\xa4\xec\x8d\x34\x02\xf4\x75\xc4\ +\xe3\xa7\xf1\xf4\x0f\x3f\x89\xc7\x7f\xf0\x41\x3c\xfa\xde\x93\xb8\ +\xfa\x58\xfe\x3f\x9b\xc6\x7a\xad\x05\xc3\x66\xae\xc5\xa8\xea\xd9\ +\xbe\x52\x7a\x11\xe9\xb0\x7d\xb3\x7f\x55\x0f\x8d\x51\xb1\x01\x71\ +\x40\x3e\x0f\x08\xd3\x64\x0f\xc4\x8b\x4f\x59\x01\x10\x1e\xf8\xa3\ +\x88\xdb\x9d\x1b\xf2\x5a\x7c\xb9\x2d\x14\xfc\x3a\xd0\xee\x66\xb6\ +\x12\x20\xa3\xbf\xf0\xda\x10\x16\x66\x04\x96\xb2\xc8\x00\xd5\x3f\ +\x37\xbc\x5a\x76\x26\xaa\x1f\xb2\x34\xcd\xf6\xa9\x60\x67\x92\x6f\ +\x79\x39\x96\xa9\x05\x34\xb2\x49\x94\x20\xd4\x5a\x8e\x93\x27\xb2\ +\x41\x48\xb6\x55\x53\x9e\x90\xb6\x5b\xec\x90\x32\xdd\x1c\x07\x49\ +\x35\xa3\x92\x75\x79\xc3\xe8\xed\x01\xdd\x26\x51\x97\xbf\x98\x0e\ +\x78\x5e\x11\x37\x6b\xd2\xe9\x7a\xf3\x5d\x82\x26\x1b\x04\xdb\xbb\ +\x91\xce\xb8\xf2\x71\xbd\x8d\xb2\xde\xd9\xd0\xa0\xaa\xca\xd5\x03\ +\xdf\x12\x48\xdf\x23\x88\xfe\xbc\xe8\x98\x05\x4d\x37\x71\xfa\x4f\ +\xb4\xf1\xeb\x80\x0f\xf8\xe6\x68\xc6\x71\x36\xd5\x88\x6f\xb3\x0c\ +\xf6\x3f\x15\x7d\x93\x8a\xfb\x19\x3e\x31\x09\xd4\x41\xd1\xad\xfe\ +\xd8\xf8\x2a\x39\xe9\x9d\x86\xbb\x37\x92\x39\xce\x60\xc6\x26\x99\ +\xef\xe8\xe4\x2b\x1e\xbd\x79\x56\x98\xbb\x3b\xde\x34\xe1\xce\x0f\ +\x1b\x67\xdc\xfc\xe1\xe9\x2c\x6f\xa2\x28\x0e\x0f\x73\xb5\xa9\xc6\ +\x8d\x81\xb4\x8d\x83\xd4\x1d\x6d\x2d\xba\x82\xbb\x79\xf5\x7f\xd3\ +\x15\x80\x42\x89\x31\x03\x61\x1b\xca\x0a\x5e\x41\xeb\x2d\x3e\x9f\ +\x50\xda\x09\xfb\xc6\xcc\x38\x36\xcb\x49\x6c\x2e\x47\x31\x59\x4e\ +\x63\x7a\x3d\x8f\xd1\x5a\xdc\xab\x4d\xdc\x5a\xdd\x8f\xed\xd9\x38\ +\x66\xbf\xf4\x5a\x8c\xdf\x7d\x23\xe2\xc1\x5b\xb1\x3f\x7d\x57\x43\ +\xcc\xeb\x31\x9a\xdd\x8f\xfd\xe2\x3c\xb6\x27\x6a\xfb\x27\x1a\xff\ +\x3e\xe6\x4f\x17\x2f\x94\xee\x99\xaa\xea\x91\xc6\x7b\xe5\xc1\x4d\ +\xa1\xd3\x55\xc4\xad\x91\xc6\xcb\x59\x6c\x44\xfa\xff\x36\xb8\x8b\ +\x2c\x1f\xf8\x50\xfe\x56\x16\xfb\xdd\xe8\x0e\xc4\x2c\x68\x65\x40\ +\x29\x4f\x7f\x71\x44\xb4\xeb\xc2\x46\xe3\x04\x4f\x4c\xc6\xb9\xc6\ +\xe8\xb7\xee\x2a\xdc\xd1\x98\x7d\xa6\xf2\xad\x63\xf6\xc1\xc3\x58\ +\xbd\xff\x49\x2c\xaf\xaf\xc9\x95\xea\xb6\x65\x92\xb6\x1c\xba\xfe\ +\xdb\xe5\xd3\x1d\x8c\x5a\x3e\xce\x97\x5d\x01\x86\x56\xae\x45\x1e\ +\x9f\x52\x0d\xb0\xdd\x22\xb8\xa1\xe6\xcc\x00\x35\x48\x6e\xa6\x65\ +\x5f\x70\xb7\x43\xad\x39\xa0\x58\xe3\xb5\x63\xda\x11\xad\x3c\xdb\ +\xaf\xb9\x79\x3a\x8d\xd7\xe4\x11\xf0\x85\xfe\x39\x1e\xcf\xe2\xd1\ +\x7a\x17\xdf\xd2\x58\xfe\x37\xfe\x4f\xff\xd7\x78\xf3\xc1\x03\x65\ +\x27\x7e\x5a\x10\x14\x6e\x51\x60\x48\xbf\x6c\xf8\x2c\xdb\x9f\xc5\ +\xa7\xb8\x3f\x4d\x7f\xfe\x32\x01\xe5\x6c\xa1\x41\xf5\x2b\x93\xaa\ +\x0c\x36\x99\x3e\xfe\xe4\x71\x7c\xe7\xd1\x7f\x1f\x8b\xb3\xa5\xe7\ +\x1c\xd4\xd1\xb8\xfb\x41\x05\xd7\xb7\x76\x8d\x1b\xa4\x2d\x6c\x1e\ +\x19\x54\xb4\xd1\x44\xbd\xc9\x4d\xb7\xf5\x46\x4b\xa6\xb5\x5a\xc3\ +\x05\xc9\x33\x79\x00\xfe\x11\x00\xe3\x58\x73\xe5\x00\xfa\x04\x50\ +\x2d\xd6\xf9\x65\xac\x7c\xc7\x3b\xf5\xe3\x79\xdc\x39\x3f\x87\x29\ +\x36\x9b\xf8\xbb\xf8\xf0\xd3\x4d\x2c\xd7\x57\x1e\x9e\xe9\xed\x09\ +\x87\x36\xf3\xd8\x32\xef\x65\x87\x74\x81\xd4\x74\x56\x75\x12\x30\ +\xf3\x87\xa9\xe6\x08\xe7\xb3\x51\xdc\x55\xf6\xb7\xce\xd7\xb1\x58\ +\x6c\x35\x46\xe9\xdc\xd2\xc0\x3c\x57\xbe\xa7\xb3\x59\xdc\xbe\xbd\ +\x88\x7b\xf7\xcf\xe3\xec\xfe\xed\xb8\x73\xfb\x34\xce\x6e\x2d\x62\ +\x76\x32\xd5\x7c\x4f\x63\xe5\x6e\x19\x27\x27\xd8\x1d\xab\x1e\xc0\ +\x9c\xcf\xb4\x11\xe3\xd9\x4a\x71\x5a\x71\x13\x57\xab\x7d\x7c\xf2\ +\x34\xe2\xbb\xef\x47\x7c\xef\x23\x0d\x93\xcf\x26\x71\xc9\x06\x80\ +\xae\x1d\x6c\x16\xb4\xb1\xb8\xf9\x06\xb4\x92\x1d\x54\xef\xb0\x00\ +\x05\x96\x0f\xe2\xbd\x95\x4c\x99\x9b\x6a\xf2\x55\xe3\xc6\x94\xff\ +\x72\x53\x14\xbf\xac\x37\x6c\x6b\x11\xa4\x68\x72\xa0\x8b\x6b\xf2\ +\xed\x1f\x34\x0d\x24\x9d\x5f\x22\x2a\xa7\x3c\xa6\x82\xf4\x9a\x06\ +\x63\x13\x98\x83\x82\x23\x19\xda\xeb\x21\xd3\x5a\xb3\x49\x3d\x92\ +\x69\x6f\x03\x89\xa5\xbe\x5e\x08\x90\x21\xca\xe4\xc2\xaa\x77\x21\ +\x6b\x67\xd2\x0e\xb8\xae\x93\x36\xcb\xd5\x69\x09\x34\x2e\x32\x60\ +\xab\xff\x77\x39\xcb\x37\xdc\x23\x7d\xd3\xea\xc0\x7e\x67\x3e\x86\ +\x17\x2a\x01\x18\x68\x02\xae\xbe\xa2\x49\xdb\x02\xd0\x0d\xfa\x19\ +\x98\xd3\xa5\x08\x4f\x44\x34\x19\xe9\x8b\x4f\x1a\xfb\x47\x9f\xf1\ +\xbc\xa4\xd2\x34\x3f\x9a\x9e\xe2\x98\xb7\xb0\x61\xfb\xdd\xff\x30\ +\x0a\xc8\x8d\x3a\x08\x0e\xd0\xd2\xc1\x6f\x4c\x5b\x77\xa0\x83\xac\ +\xd2\x22\x4b\x20\xff\x4a\x57\x12\xc0\x4f\x94\x29\x4f\x6f\x76\xc8\ +\x1e\x1b\x66\x6c\xbc\x73\x1d\xda\xf3\x04\x26\x1c\xc7\x79\xdd\x23\ +\x9b\x68\x8a\x8f\x84\x95\x9c\x74\xfc\xe8\x12\x1e\x36\xd9\x3c\xf3\ +\x13\x69\xb6\x2b\x8e\x64\xba\x6c\xe6\xd3\x69\xe8\x33\xf5\x62\x2a\ +\xa1\x73\x69\x23\x81\xff\x03\x4d\x9e\xd7\x54\x4a\x40\x89\x29\xc9\ +\x30\x08\x90\x57\xdf\x4b\xb0\x72\xa5\x01\x06\xba\x1d\x2a\xa1\xe2\ +\xca\xd6\x31\x6f\xea\x89\xd8\xe8\x9c\x67\xae\xb3\x5d\x69\x1e\x34\ +\x1d\xc7\xf9\x62\x13\x0b\xde\xeb\x88\x12\x46\x19\x68\x05\x39\xce\ +\xaa\xbf\xf1\xb4\xea\x7e\xae\xf1\xe7\x5c\xe7\xe4\x2d\x8d\x79\x77\ +\x85\x5f\x89\xa9\xe6\x52\xb3\xd1\x4c\x32\x9d\xaf\x4a\x46\x72\x36\ +\xde\xc6\xea\xdf\xac\x87\xfd\x43\x27\x9d\x87\xfc\x8e\x6b\xa9\xf9\ +\x93\x5f\x51\x59\xfe\xa1\xdb\x8f\xaf\x89\x1a\x64\x1d\x08\x1a\xff\ +\x40\xee\x94\x49\x82\xf1\xb1\xc5\x44\x70\x0d\x22\xcf\x3b\xf7\x1e\ +\xc4\x57\xbf\x7c\x37\x4e\x17\x27\xca\xfb\x3a\x1e\x3f\xbc\x8a\xc7\ +\x97\x9f\xa8\x2d\x96\x4d\x7b\x70\xb4\xe7\x9d\x1d\xa0\x93\xf2\x75\ +\x3d\x64\xf0\x3a\x4e\x3c\x9e\xca\xeb\xe6\x71\x2f\x00\xca\x90\x56\ +\x45\x8b\x60\xfa\xed\xbe\x42\xa4\x1a\xae\x93\x17\x3e\x00\x98\xe8\ +\x61\xbe\x65\xe1\xa8\x05\xfe\xd2\xb7\x20\x6c\xf2\x8a\x05\xf7\x2f\ +\xc6\xdf\xfe\xcd\xff\xb9\x78\xf2\x8d\xf9\xdd\x81\x6b\x8a\xbc\xd8\ +\xd5\x23\xfc\x1c\xc2\xb1\xa9\x8f\x70\x84\x97\x07\xc7\x0d\xb5\x23\ +\x1c\xe1\x08\x5f\x3c\x78\x92\x27\x68\x57\xf4\xe1\x95\xbd\xc9\xfe\ +\x0c\xf0\x79\x13\x04\x64\x98\xfe\x6c\x9d\x17\x48\x34\x31\x9e\x8c\ +\x27\xf1\xfe\xb7\xbe\x13\xdf\xf9\x6f\xfe\x51\xbc\x73\xef\x96\x98\ +\x5a\x08\xd4\x5d\xc6\xd5\x86\x5f\x56\xc2\xaa\x49\x30\xc0\xa4\x1a\ +\xc4\xd1\x5f\x26\xad\x99\x33\xd8\x9b\x66\xa2\xc7\xfe\x73\xe6\xd4\ +\x71\x1a\xf8\x7c\x3d\x01\x17\x21\x9e\xc8\x0e\x6c\x9d\x95\xbd\x6c\ +\xd8\x9c\xe3\x4c\x94\x15\xc1\x8e\x79\x83\x04\xe4\x97\x68\x00\x3d\ +\xcf\xf7\xaf\x38\x68\xe1\x34\x9d\x69\x61\x73\x6b\x1e\xa7\x27\x8b\ +\xd8\x2a\xeb\xfd\x76\x19\xeb\xc7\xdb\xd8\x2c\xaf\x62\xa4\x15\x96\ +\x53\xb1\xf0\x77\x3e\x9a\xae\x33\xf1\xe7\xe9\x15\xad\xf2\xfa\x25\ +\xc1\x41\x46\x06\x38\x48\xd1\x69\x5a\xe5\x68\xa6\x1b\x4f\x63\xb3\ +\x58\xc5\xf8\xce\x2a\xe6\x5f\xd9\xc7\x1b\xff\xfa\x69\xbc\xf5\x1b\ +\xe7\x71\xf7\xd7\xee\xc7\xfc\x8d\xb7\x23\xee\x3c\x90\xe6\x99\x34\ +\x6f\x55\x3e\xfc\x86\xba\xe5\xa3\x38\x8b\xd7\x3f\xfd\x24\x7e\xf0\ +\x0f\xff\x34\x9e\xfe\xf1\xa7\xf1\xec\xd1\x45\xec\x2e\xe6\x5a\x8c\ +\x2e\x62\xc2\x6f\xb5\x55\x36\x2f\x44\xa5\xed\x32\x54\x52\xd5\x7c\ +\x12\x1d\x8f\x03\x74\x96\x91\x62\x0e\xb8\x9f\x09\x69\x17\xac\x23\ +\x91\x82\x17\xa5\x69\xf9\x83\x73\x91\x25\x3f\xb8\x01\xa8\x45\x0d\ +\x0d\x9d\x9b\x69\x56\x74\x9c\xc0\x53\x1a\x04\x16\xb4\xfc\x9c\xd3\ +\xbf\xe2\xaf\x4e\xe1\xfa\x68\x65\x6b\x7d\x0f\x4f\xe0\x11\x87\x55\ +\x7c\x1f\x75\xc8\x94\x40\xc9\xf3\x60\x5b\x2c\x78\x9b\x3e\x50\x5d\ +\xb6\x6c\xdb\x7b\x41\x2e\xcc\x3a\x7e\x19\xa4\x2c\xad\xce\x2c\x4b\ +\xa4\x83\x74\xd0\x87\x54\xa0\x17\xa4\x5a\x7f\x24\xdd\x30\x87\x83\ +\x04\x20\xe5\xe3\xcd\x1e\x1a\x12\x19\xf1\x52\x31\x1e\x04\xdf\xc4\ +\x41\xcf\x69\x4b\xcf\x37\x48\x44\x38\x1d\xd8\x12\x4e\x63\xcb\x60\ +\xb9\x2c\x15\xac\x63\x1b\xdc\x70\xcb\xfa\xc7\x5e\x96\xaf\xf7\x91\ +\xea\xc2\x8c\x59\xa4\x69\xd0\xd1\x85\x87\x71\x48\x8f\x15\xb0\xe5\ +\x80\xbe\x87\x6d\x55\x3e\xbb\xac\x00\xb2\xe6\xb7\xbd\x96\xaf\xdc\ +\x7c\x42\x94\xbc\xa6\x93\x1d\xdd\x06\x4d\x7b\x33\x4d\x8a\x2e\x1b\ +\x09\x08\x94\xd7\x9b\x5f\xb2\x85\x1f\xc3\x00\xbf\x6d\xa6\x29\xf0\ +\x64\x1a\x77\x76\xbc\xa1\x66\x2c\x59\xdb\x48\xd3\x2a\x9d\x5f\x4d\ +\xf3\x84\x1a\x71\xdf\x8d\xe1\xc6\x8f\x68\x6e\x8c\xf9\x17\xb6\xc4\ +\xed\x63\xba\xd4\xa0\x27\x69\x71\x7d\xaa\x6e\xfb\xf6\xcf\x2a\x35\ +\x88\xb0\x7e\x2f\x1a\xa4\x07\x72\x54\x48\x39\xb4\xac\xf0\x74\x9a\ +\xc2\x88\x9b\x41\xdc\x19\xe2\x86\xd0\x95\xa4\x4b\xd5\x85\xe8\xcd\ +\xe5\x3e\x4e\xf9\x6f\x8f\x57\x34\xa6\xfc\x12\xaf\x78\xfc\xb2\x9a\ +\xfa\xcb\xb1\x1d\xdd\xd3\x70\x78\x4b\x4d\x32\x57\x98\xea\x5c\x9b\ +\xc5\xe8\xe9\x45\xc4\x47\x1f\x45\x5c\x3c\x91\x9d\xa7\xb1\xd6\x98\ +\xb7\xf3\x53\x17\xea\x1b\xfc\x08\xfb\x4c\xd9\x0a\xb3\xbd\xbf\xbf\ +\x1e\xc7\x9a\x7c\x54\x6d\xd9\xed\x7b\x4f\x71\x8f\x58\xb9\x99\x30\ +\x28\x13\xa4\xc7\x1d\x61\x2e\x03\x39\x06\xb5\xf1\x60\x14\x3b\x9d\ +\xfb\xd7\x1a\xfa\xc6\xaf\xdd\x89\xf9\xdb\xb7\xe3\xfc\x15\x7e\xd8\ +\xa1\x66\xc2\xbf\xf7\x3e\x89\xe5\xe5\x95\xdb\xed\x20\xdf\x42\x99\ +\x27\xb6\x87\x75\x05\x88\xf0\x57\x07\xc6\x14\x74\xda\xb8\x53\x98\ +\xeb\x11\xbe\x94\x29\x83\xc7\x05\x05\x70\xd2\x3a\xb4\xf6\x56\xf0\ +\x1d\x1c\xe2\x2d\x95\x90\xdb\x5f\xdd\xa4\x1c\x3c\x90\x31\xa6\xb1\ +\xa9\x02\x9e\xf3\xff\x99\x33\x5e\x0f\x45\x8d\xd2\xad\xf6\x31\x17\ +\xff\x5f\x5e\xad\xe3\x62\xf1\x20\x7e\xeb\x7f\xfb\x77\xe2\x64\xce\ +\x0f\x2b\x74\x1d\x75\xe5\x08\xe4\x66\x8f\x65\x50\xfe\xda\x7c\xe3\ +\xbf\x6c\xc0\x6e\x0b\xc0\x90\xfe\x2c\xf8\x51\xf2\x9f\x07\x18\x96\ +\xb1\x9a\xd7\xcc\x83\xb2\xab\x6f\x29\xbe\x98\x9e\xc7\x3f\xfc\xa3\ +\xff\x22\x4e\x16\x4b\xff\xa8\x86\x31\x2a\xfb\x3c\x7d\x8f\x36\xe4\ +\x4c\x76\xe7\xcb\xe4\xc6\xcd\xd6\x90\xae\x18\xd1\xd2\x01\x4f\x6b\ +\x2e\x95\x0a\xc9\x2b\xf5\x0e\xca\x54\x85\x26\x65\x5c\xd3\xf9\x3d\ +\x1c\xb0\x0e\xa0\xb7\x32\xec\x62\xbd\x7d\xcd\xa3\x44\xc9\x83\xb8\ +\x75\x56\xaf\xd1\xe6\xa6\xf1\x64\x16\x4f\x9e\xae\xe3\xf1\xd3\xa7\ +\xb2\x2d\xfb\xa4\xe9\x53\x17\xfe\x09\xc0\xee\xa5\x8f\xa4\xce\x33\ +\x54\xe7\x91\xce\x09\xfe\x13\xed\xce\x99\x66\x4c\x67\x6b\xd5\x83\ +\xce\x25\xf9\xc6\x14\x63\xaa\xcf\xe9\x62\x1e\xb7\xef\x9c\xc6\x9d\ +\xfb\xa7\x71\x76\xe7\x76\x9c\x9d\xbe\x16\xb3\xc9\x59\x4c\x26\x27\ +\xb1\x38\xcd\xff\xd3\xd9\xad\x36\x3a\x0f\xd7\xba\xbe\xc9\xa6\xea\ +\x61\xcf\x80\x26\x9f\xc7\x23\x78\xdb\x58\xae\x27\xf1\xe8\x72\x13\ +\x1f\x7c\xb4\x88\x6f\x7f\xbc\x8d\xf7\x3e\x55\xd9\x34\xae\xae\xa4\ +\x4e\xc9\x7c\x43\xdc\x80\x4f\x0a\x44\x31\x05\xd1\x44\x00\x22\x0f\ +\x22\x15\x17\x01\xe9\xa8\x0f\xa4\x4f\xd2\xd7\x5a\xc7\x4d\xc8\x2d\ +\x61\x45\xb9\x34\xf3\x9f\x79\xde\x54\x43\xea\x76\xd0\x47\x91\xd6\ +\xa4\xe6\x2b\xd0\xa6\x5d\x3b\x39\x5b\x7a\x98\x8e\x8c\x77\xe6\xd6\ +\x38\x47\xdb\x57\x5a\xc0\xf5\xa0\xb8\xfb\xa8\x34\xf8\x74\xf6\xc0\ +\x1e\xd8\x48\xd9\x49\x2a\x08\x6c\x67\x68\x2f\xdb\xbe\x9b\x3b\x08\ +\x9a\xa8\x53\x21\xbf\x26\x34\x30\xff\x4e\x39\x79\xe5\x5a\x22\x43\ +\x9b\x17\x10\xd2\x37\xf9\xe2\x13\x4a\xda\xb0\xad\x33\xf4\x8f\x8f\ +\x20\x8d\x39\x4d\xa3\x13\x44\x60\xef\x39\x68\xbc\xde\x96\x91\xeb\ +\x06\xba\x70\xe3\xeb\x00\x4a\xfb\xe9\x43\xcb\xdd\x73\x0d\x7d\xe8\ +\x53\xd6\x83\x44\x4e\x5c\x91\x4a\x2e\x20\x2e\x84\x7f\x75\x3d\x69\ +\xf5\x9f\x32\xb0\x62\xd6\x05\xd2\xae\xe7\x8b\xc8\xed\x4f\xa9\x91\ +\xa6\xd9\x36\x5d\x3e\x74\x1c\x7c\x01\xe0\x03\xd8\x25\x68\x2e\x83\ +\x01\x85\xdc\x04\x63\x6e\xb3\xd5\x5c\x01\x3d\x62\x9a\x0f\x30\x1f\ +\xf3\x66\x5a\x7e\xe0\x73\xdd\xca\x32\xed\x75\x39\x24\x27\xd2\x29\ +\xc8\x14\xa7\x87\xe7\x47\x0a\x1b\x64\xca\x9a\xdf\x2a\x79\x1a\x05\ +\xd6\x9c\x85\xdf\xe6\xac\xcc\x53\x4a\xf1\xf1\xae\x79\xdb\xc2\x01\ +\x88\xe1\xba\x71\x5b\xaa\x37\xbb\xfd\xe1\xb4\xc6\x65\x83\x35\xab\ +\xb2\x07\xb7\x4e\x41\xa3\xc4\xd3\x18\xb2\xf3\x1c\x4a\xd1\x3d\x3f\ +\x46\x9c\xf8\xf5\x8f\xfc\x00\x74\xa1\x79\x88\x2f\xcd\x2a\x2f\xe7\ +\x4d\xd7\x22\xca\x8f\x57\x46\x2f\x46\xb7\x62\xae\xeb\xf4\x64\xfe\ +\x66\xcc\x4e\xdf\x8a\x93\x3b\x6f\xc6\xfc\xec\x41\x8c\x17\x5a\x37\ +\x6b\x3e\xb5\xdb\x5c\x69\x8a\xc9\x7f\xbc\xf2\x34\x1f\x19\x68\x5c\ +\x91\x3d\x2f\x81\x14\x5f\xad\xc6\x2a\x37\xf5\x96\xbe\x71\x5e\x52\ +\xa6\xce\xef\x41\x01\xda\x39\xdb\x43\x53\xcc\x94\x43\x68\xb1\x36\ +\x26\x4c\x34\x8e\xf1\xff\xdb\x5f\x7a\xfb\xb5\x78\xf3\xad\x85\x1b\ +\xe5\xf2\xea\x3a\xde\xff\xe1\x23\x8d\x63\x0f\xdd\x26\x94\xbf\xe9\ +\x53\xc6\x06\x43\xcb\x49\x53\xdf\xa0\xac\x77\xaf\xdf\x15\x3c\xb6\ +\x4c\x85\x6f\xce\x53\x04\xb6\xa6\x83\xdb\x87\x3e\x50\xc1\xaf\x7b\ +\x74\xbf\x29\x1d\xa0\x11\x1d\x23\x01\x9d\x3a\x38\x6e\xc0\x9c\x91\ +\x8e\x92\x6d\xc8\x13\x52\xe7\x02\xe7\xc5\xfa\xd1\x9d\xf8\xea\x1b\ +\xff\xa3\xf8\xeb\x5f\xff\x1b\xfe\x9b\x05\xff\xe8\x01\x1d\x42\x1e\ +\x3a\x74\x84\x9f\x7f\x38\x36\xf5\x11\x8e\xf0\xf2\xe0\xb8\xa1\x76\ +\x84\x23\x1c\xe1\x8b\x83\x9c\xed\x25\xdc\xc4\x2f\x09\x6e\x9a\x23\ +\xfe\xe3\x67\x35\xd0\x68\xb3\x69\x4d\xfa\x17\xe2\x7f\xf7\x1f\xfc\ +\xd3\x38\x9d\x5d\xc5\x39\xbf\x9e\xaf\xe5\x80\xdf\x8f\xef\x9f\x15\ +\xe6\x44\xd8\xe9\x15\xcd\x09\x36\xdf\x9c\x64\xc3\xd0\x1c\xdb\x13\ +\x77\x36\x47\x98\xf0\x8e\x58\x99\x30\xf9\x96\xac\x85\x4c\x04\x2d\ +\x44\x02\x7f\xe1\x9b\x4c\x3e\x19\x13\x23\x5b\x48\x0e\xd0\x0a\xb5\ +\x86\x2c\xc2\x29\xfa\x34\xd8\x45\xd6\x01\x02\xb9\xa0\x49\x35\x8b\ +\x80\x38\x9d\xc6\xec\xf6\x34\x9f\xca\x99\xc9\xd5\xcb\xab\xb8\x7c\ +\xba\xf2\x0d\x16\xca\xeb\x25\x02\x13\x70\x51\x3c\x99\xc2\x2f\x27\ +\xbd\x78\x65\x95\xd8\xc1\xcd\x1c\x32\x7e\xc8\x55\x5c\x0c\xff\x29\ +\xfc\x58\xcb\xa8\x93\x75\x9c\xbc\x19\xf1\xf6\x6f\xdd\x8a\xd7\x7f\ +\xfb\x4e\x3c\xf8\x95\xfb\x31\x79\xfb\x41\xc4\xd9\x2b\xd2\x3c\x75\ +\xed\x6f\xfd\x6f\x48\x3c\x3b\xc7\xed\x2a\x56\x74\x2c\x52\x56\x11\ +\x0f\x3f\x8e\x67\x7f\xff\x07\xf1\xfe\x3f\xfe\xd3\xb8\xfc\x40\x0b\ +\x88\x4b\xb5\xc3\xe6\x24\x26\x7b\x95\xa3\x2d\x16\x58\xdc\x94\x8b\ +\x8e\x72\x84\x10\xf8\x35\x4b\x44\x2b\x9e\xa2\x8c\x34\x56\xab\xc9\ +\x9b\x30\x2c\xf5\x61\xa4\xc0\x8b\x98\xa2\x9b\xcd\xb2\xdf\x2f\xbc\ +\x72\xd3\xc6\x4f\xe8\x70\x37\x4b\x72\xb7\x05\xe1\xff\xcf\xde\x9f\ +\x7f\xdb\x96\x24\x79\x7d\xa0\x9d\xf9\xdc\xe1\x0d\x31\x66\x46\xe4\ +\x5c\x33\x50\x40\x81\x04\x88\x41\x6a\x58\x6a\x01\x02\x34\x2c\x24\ +\xb5\x7e\x91\xd4\x9a\xd0\xd2\xd0\x62\x69\xec\xff\xa8\xd7\xea\xdf\ +\x7a\xd2\x8c\x24\xa0\x4a\xa2\x90\x18\x54\x42\x14\x55\x45\x55\x56\ +\x91\x95\x19\x11\x99\x31\xbf\xf7\xee\xbb\xf7\x9e\xb9\xbf\x9f\xaf\ +\x99\xef\xbd\xcf\x7d\x2f\x32\x13\x2a\x32\x32\x92\x3c\x76\x8e\x6f\ +\x33\x37\x33\x37\x37\x1f\xb6\x6f\xf7\xed\x67\xef\xc3\x2a\x93\x0d\ +\xb5\x19\x37\xef\xf3\x86\x73\xde\xfc\xb1\x69\x81\x0e\xaa\xfb\x21\ +\xcd\xc6\x86\xa3\x00\x1d\x82\x98\x19\xb9\x60\xeb\x78\x83\x23\xe9\ +\x75\xb4\x2c\xeb\x01\x1e\x71\xdc\x41\xcb\xcc\x01\x38\x81\xd9\x2e\ +\x8b\x23\x40\xea\x65\x1f\x29\xb0\x5e\xc9\x0b\xe5\x62\xaf\x74\xab\ +\xe2\x6d\x45\x7a\x2d\x96\x20\x6c\x9f\x45\xaa\x6c\xcd\x7f\x3e\x8e\ +\x5b\x20\x28\x64\x22\x55\x8c\xf3\x57\xf2\x99\x0e\x9e\xf9\xee\xab\ +\x15\x69\x81\x3b\x16\x95\x96\xb8\x6f\xf8\x08\xfb\x9c\xe4\x5c\xa7\ +\x0d\xec\x52\xd6\x7d\x5f\x3c\x12\x0c\xc0\x26\xca\x8e\xa9\x94\x67\ +\x34\x69\xf2\xca\x6c\x33\x4f\x97\x09\x20\x5f\x34\xcd\x2e\x5e\xc5\ +\xed\x3f\xb4\xf9\xbb\xf0\xaf\xf3\x45\x67\x3d\xa2\x20\x36\x1b\x60\ +\xf0\x7c\xf7\x45\x79\x14\x46\xce\x46\x4b\xc6\xb9\x43\x43\xfa\xbc\ +\x7b\x63\x1f\x4a\xd7\x72\x36\xce\x85\xf9\xef\xc4\xc3\x3e\xff\x3b\ +\x6d\xef\xf7\x0d\x09\x73\xc7\x87\x0d\x35\x6f\x9a\x48\x57\xd8\xaf\ +\x7e\x15\x3d\x82\x47\x56\xa2\xfd\x74\x07\x71\x7c\x16\x2f\x7d\x06\ +\x73\x90\xdf\xfe\xd6\x07\x9a\x2e\x5f\xf5\xd9\xea\xb8\x1d\x49\xd2\ +\xf4\x3a\x80\x6e\x71\x14\xea\x5e\x45\xf2\x4a\x20\x44\xb6\xd4\xd9\ +\x18\x7f\x18\xab\x71\x7f\xc5\x8d\x2a\x71\x37\x87\x98\x6b\xec\x59\ +\x3c\xe0\x75\xb2\x1a\x78\xee\x7f\x59\x69\x1e\x4a\xef\x4c\x6d\x3b\ +\x53\xd0\x98\x34\xf2\xdf\xe5\xc7\xe4\xfa\x69\xc4\xb7\xbe\x19\xf1\ +\xf4\x89\x86\x9b\x9b\xe0\xc9\x34\x7e\x70\x30\x1d\x6f\x63\x32\x59\ +\xc4\xf4\x4c\xa9\x78\x92\x0d\xfe\x7e\x15\xbb\xf7\x95\xc7\x4a\xfd\ +\x85\x3a\xb0\x33\xb4\x53\xfa\xd5\xdc\xee\x08\x29\x34\x92\xb6\x74\ +\x7d\xa8\x73\x75\x63\x83\xb0\xef\xc5\x88\xde\xe8\x9a\xb1\xbf\xb7\ +\x88\xe5\xeb\x97\x31\xff\xec\x65\x2c\x94\xf7\x76\xcb\xd3\x73\x4f\ +\xe2\xf0\x98\x57\xf3\x72\x53\x8f\x46\x90\x0d\x0c\x39\xf3\xb2\x3e\ +\xac\xc0\x01\x49\xc4\x22\x0e\x84\x1a\x77\x3c\xc6\x14\x8d\x7e\x3b\ +\x47\x01\xa8\x2e\x90\x47\x56\xb4\xfa\x88\x10\x65\xde\xd0\x97\x84\ +\x2d\xcb\x40\x4d\x64\x9c\x43\x42\x4b\xcf\xf8\xcb\x53\x26\x8c\x6d\ +\x7c\x16\x8b\xa9\x9f\x52\xf3\xeb\x92\xa4\xc3\xab\x2e\xf9\xe1\xc6\ +\xaf\x5c\xad\xe3\xe2\x67\x7e\x7f\xfc\xe8\x1f\xf9\xa3\xb1\xa4\xcf\ +\x20\xf7\x89\x88\x4d\x70\xa1\x81\xaf\xdf\x53\x68\xd9\x34\x3c\x70\ +\xe3\x23\xe1\x13\x72\xed\x53\x01\xc3\xb2\x1e\x95\x3b\xc7\xd5\xd9\ +\xe8\x22\x7e\xee\xaf\xff\x45\x5d\xfb\x9f\xc4\x62\xbe\xf6\x86\x6a\ +\x2a\x12\x44\xf3\x2a\xe8\x91\xae\xf5\x8a\xb6\xfe\xa7\x5e\x59\xb6\ +\xa0\x1a\x5d\x31\xe8\xd2\xe3\xdc\xe1\xd5\x62\xf9\xd4\x6b\x1f\x1a\ +\x34\xaa\xe3\x14\x81\x8a\xbb\xa9\xc6\x0c\xe6\x36\xcf\x87\x63\x3b\ +\xcf\xd3\xe2\x8c\x47\x30\x9b\x9d\xc5\xe5\xe5\x5c\xfe\xa8\x1c\x2a\ +\xdf\x6c\xbc\x89\xf7\x3f\xd8\xc7\xed\xfe\xda\xe3\x91\xfd\x72\x8a\ +\xde\xe6\xb3\xf0\xed\x64\x92\xba\xdf\xa5\x17\x9c\x31\x9a\x26\xc4\ +\xf9\x72\x1f\xf7\xce\xf7\x31\x9f\x1c\xfc\x0a\x55\x5e\xd7\x38\x97\ +\x6c\x39\x9d\xc7\xf9\x83\x49\x3c\x78\xf9\x22\x2e\xee\xdf\x8b\x29\ +\xaf\xb4\xf5\xb8\xe7\xd1\x47\x3e\xcf\x62\x7e\x36\x8e\xf5\x2d\x4f\ +\x7f\x5e\xc9\xe2\xc6\xe7\x32\xaf\x46\xe3\x5a\xc1\xb0\xff\xe8\x66\ +\x14\x6f\xbd\x3f\x89\x6f\xbc\x7b\x88\x6f\xbc\x37\xd5\xf0\xb3\x88\ +\xab\xed\x34\x36\xde\x25\xa0\xee\xd2\x5f\x6f\x78\x35\x90\x7b\xf6\ +\xf0\x4e\x51\xb2\x49\x38\x64\xc8\x8d\xa2\x63\x40\xd2\xb8\x2d\x39\ +\x71\xeb\x1e\x26\xde\x70\x60\xf3\x5d\xc3\xa3\x30\x42\x69\x75\xf5\ +\x0a\x89\xdd\x8a\x00\x1e\x83\x92\x51\xaa\xae\x37\x8f\xb3\x03\xc5\ +\xbc\xe6\xa6\x26\x57\x10\x5e\x95\xec\xb9\x84\x18\xde\x60\x33\x50\ +\x6b\x2a\xf4\x30\x03\xcb\x32\x6d\x66\x83\x2f\xe8\x11\x11\x37\x07\ +\xc2\xc4\xd2\xed\xf8\xcd\x04\xaf\xcd\x1b\x40\xda\x4f\x31\xd7\x23\ +\xd2\x78\xce\xe0\xf2\x83\xa9\x74\x14\xc9\x13\x42\xa4\xfa\x5b\x16\ +\x28\x55\xda\xfc\xc1\xe9\x3a\x20\x6f\xd2\xa3\x90\xf1\x22\x92\x67\ +\xc0\xb6\x68\xe2\xf6\xaf\xf1\x05\x36\x0c\xae\x00\x6a\xf9\xd4\x07\ +\x81\x3f\xce\x97\x40\xd9\x84\x7d\x9d\x1a\xe8\x28\xee\xb9\x08\x3c\ +\xeb\x12\x6f\x69\xd0\xaf\xe0\xf4\x69\xa3\x2b\x8b\x65\xfa\xba\xde\ +\xe0\x65\xb0\x1c\x92\x98\x6c\x67\xfd\x0d\xd2\x91\x87\x71\xd3\x17\ +\x92\x8d\x7c\xd5\x9e\x6a\x9a\x79\x10\x73\x87\xf2\x8d\x8f\xe7\x11\ +\xde\x2a\x23\x28\x36\x62\xce\x85\x1c\x8e\x34\x4a\xcf\x1b\x22\x9a\ +\x6b\x59\x5b\x32\xeb\x96\x5e\x3e\x91\x86\xbe\x3c\x10\x76\x5c\x63\ +\x8d\x7f\xbb\xa4\x73\x47\x6a\x1a\x7b\x74\xbd\xdf\xea\xba\x27\x5a\ +\x2a\x19\x70\xf5\xbb\x00\xf7\x27\x17\xd6\x0d\x96\xd8\xfd\x33\xfb\ +\x9a\x8b\x69\xc1\x00\x8a\x71\x74\x9e\x08\xf6\x4a\x4b\xcd\xf1\x0a\ +\x5b\x9e\x9e\x5b\xc9\x2f\xca\xb7\x98\xee\x63\xaa\xf9\x91\x7f\x08\ +\xc8\x58\xcd\xb5\x5b\x03\xcf\x62\x72\xa9\xb1\xe7\xe5\x98\xdc\xff\ +\x71\x0d\x42\x5f\xd1\xdc\xe8\xf5\x18\x2f\x5e\x8d\xf1\xfc\x41\xcc\ +\xe6\x2f\x6a\x8e\x34\x53\x19\x1f\xc5\x76\xfd\x94\x9a\xd1\xfc\x91\ +\x1a\x92\x0d\xcd\xc5\x18\xb3\x19\xaf\xa8\x8f\x9b\xcd\xc4\xaf\xc2\ +\xa4\x2e\x10\xb7\x32\x91\x9b\x01\xe2\xa8\x20\x10\xc5\xec\x78\xc7\ +\x90\x25\x17\xae\xf3\x86\xb3\xe3\xec\xec\xe5\xf8\xca\x57\xce\xe3\ +\xe2\xec\x32\xd6\x9b\x9b\x78\xf7\xed\xab\xf8\xf0\xe9\x07\x12\xf3\ +\x74\xda\xc0\x50\x23\x31\x7f\xc7\xbe\xa3\x62\x82\x3d\xd6\xd4\x5c\ +\x86\x1f\x43\xf9\x7f\x7b\x59\x3b\x0c\x6d\x1d\x41\xf3\x0a\x97\x54\ +\x23\xea\x07\xd9\xff\xa8\x97\x21\x1c\xc7\x86\x30\x94\x40\xdb\x0f\ +\x47\x14\x93\x1d\x0f\xc7\x90\x9a\xb4\xee\xb6\xd7\xb1\xfa\xf0\x5e\ +\xfc\x33\x7f\xfc\x3f\x88\x17\xef\x6b\x6d\xad\xf6\xf5\x30\xd1\x12\ +\x1a\x44\x74\xf4\x09\xfe\x61\x87\x53\x53\x9f\xe0\x04\x1f\x1f\xe4\ +\xac\xeb\x04\x27\x38\xc1\x09\x3e\x09\x18\x5e\xc1\x87\xb3\xc1\x8f\ +\x11\x7e\xeb\x66\x9b\x93\xcd\xd2\x38\x5e\xfc\xed\x3f\x12\x0f\xbf\ +\xf4\xe5\xb8\xba\x59\x69\xd2\xeb\x65\xae\xc5\xbe\xe7\xd8\x82\x3f\ +\x02\x0e\x9e\xd0\x12\x01\xb4\x6c\x50\x3c\x3f\x8a\xb1\x90\x50\x7c\ +\xcf\x8d\x6d\x26\xcf\xc8\xac\x9f\x38\x83\xa3\x82\x7e\xd2\xdd\x83\ +\x33\xcb\xb5\x0c\x19\x97\x13\xc7\x37\x8d\x88\x67\x4a\xdb\x41\xf4\ +\xac\xa1\xca\x73\x1f\x9b\x47\x9b\x18\x3d\x5a\xc5\xea\x76\xed\x5f\ +\xfb\x2e\x2e\x2e\x62\xf1\xd9\x07\x5a\x74\x5c\xc6\x61\x3e\x8e\xad\ +\x6c\xd9\x47\x01\xf9\x4c\x66\xd3\x98\x4d\xf2\xd7\xcf\x4c\xca\x31\ +\xef\xec\x7a\x17\x8e\x60\x98\xb5\xcd\x70\xc3\x4a\x09\x78\xda\x43\ +\xc6\x62\x76\x31\x8f\xf3\x87\xb3\xb8\xf7\xf2\x83\x38\x5c\x5c\x9a\ +\xe7\x05\x81\x3e\x5b\x2f\x3f\xb1\x31\xe2\x1f\x48\xca\xd6\x24\xe2\ +\xea\x69\xec\xff\xfa\xbb\xf1\xfe\xdf\xf8\x7a\x3c\x79\x6f\xab\x85\ +\xda\x26\xf6\xeb\xf3\x18\xef\xb5\xd8\x63\xb1\x80\x33\xf2\xcf\x17\ +\xb9\x41\xdd\xb0\xc6\xb4\x0d\x7c\x37\x47\x00\xc3\x91\xe2\x34\x7d\ +\xdb\x01\x5a\x3c\x51\x83\xe2\x3e\x1f\xa4\xdb\xab\x17\x65\x1e\x87\ +\x12\xba\xfe\x87\xa1\x2d\xa0\x33\x8e\x52\xba\x82\xbe\xea\x81\x3e\ +\xc3\x46\x87\x5f\xc7\xb7\x16\xde\xc6\x41\xe5\x3e\xac\xc4\xaf\xff\ +\xb6\xe2\x3f\xae\x62\x95\x9b\x21\xf9\x7f\x57\xd2\xa9\x57\xf6\x79\ +\xa1\xef\x8d\x11\xd1\x0e\xaa\x61\xfa\xa3\x7f\x22\x4b\x50\x7b\x10\ +\xc8\x8b\x80\x33\x1d\x2d\x7d\x7c\x6a\xa1\xc9\xba\xf2\x54\x18\xc6\ +\x01\xb3\x74\x70\x07\xa9\xa0\xb6\x85\xd7\xec\x81\xf3\x5e\x52\xc6\ +\xef\x06\x6f\xda\x82\x89\xe3\x8e\x31\x7c\x45\xe4\x37\xbf\x1a\xa6\ +\x3c\x9c\x53\x94\x65\x47\x59\x55\xce\x8c\x67\xf9\xb2\xfc\xa2\xa9\ +\x03\xf8\xf2\x9d\xbe\x8f\x5d\x87\xca\xbb\xb3\x6d\xda\x99\x25\x8f\ +\x73\xf5\xc8\x3f\x92\x24\x6d\xdd\x26\x83\x02\x63\x1a\xbf\x4d\x10\ +\x57\x7a\xf0\xdd\x3c\xb3\xb5\xfb\x78\xe9\x64\xfe\xc3\x34\xf2\xd7\ +\xd5\x8d\x4f\xe5\x3f\xe5\x56\xb9\x68\x43\xea\xa1\x95\x93\x9f\x3c\ +\xd3\x37\xdc\x3f\xdc\x0f\x44\xaf\xb3\xaf\xc4\x46\x81\x3e\xb3\x5e\ +\x4b\x97\x7e\x44\x7c\xab\xf4\x92\x2b\xb0\x39\x63\x5b\xae\x03\x61\ +\x95\x81\x2e\x98\x3e\xe2\x6b\xd2\x8c\x69\xe6\x9b\x81\x9f\xcd\x67\ +\xf4\x52\xcb\x5f\x48\x40\xca\xe8\xd3\x9f\x5b\x28\x76\x67\x87\xb3\ +\xdb\xe3\x58\xc9\xc8\xe7\xe8\xe6\x2c\x30\xb0\x67\xdb\x4e\x0c\x8d\ +\x6e\x13\x27\xcd\x30\xb3\x5b\x47\xdc\xdc\x6c\xe3\xe9\x93\x4d\x5c\ +\x7d\x73\x17\x8f\xdf\xd8\xc7\xfb\x5f\x9b\xc7\xf6\xeb\x52\x7b\x63\ +\xa9\x73\x85\xc7\xcc\xb8\x89\xbc\x93\xa9\x9d\x30\xb7\x90\x0a\xce\ +\x35\x0e\x9d\xcd\x45\xc8\x90\xf2\x99\x68\x6c\x59\x6c\xf9\x95\xf6\ +\x24\x66\xcb\x43\x4c\xa7\xcb\x98\xbf\x34\x8e\xb3\xd7\xd6\x71\xff\ +\x85\x71\x2c\xee\xa9\xfe\xfc\x04\x1b\x4e\xd5\x58\x95\xe4\x33\x30\ +\x2c\x7f\x77\x00\x37\x7e\x55\xd2\x6e\x32\x8e\xc3\x62\x12\xe7\xf7\ +\xcf\x62\xf9\xc2\x45\x9c\x2b\xef\xf5\x5e\x85\xba\xbe\x89\xf1\xd5\ +\x4a\xa7\xab\xda\x88\xfe\x41\x1a\x02\xf5\x65\xe3\xb4\x4f\x19\x03\ +\x06\xa4\xa1\xe2\x59\x5f\x02\xe2\xad\xee\x9b\xae\x30\x6d\x30\xd0\ +\x4a\xaa\xa2\x49\x4b\x43\x7d\xa4\xdb\x48\x15\xb3\x61\x03\xb8\xd1\ +\x02\x49\x52\xae\x8f\xc7\x66\xcb\x0f\x47\x9b\x20\xdc\x80\xe4\x66\ +\x39\x1b\x6e\x4f\x45\x4f\x66\x67\xf1\x53\x7f\xec\x9f\x8c\x07\x73\ +\x36\x3a\xa5\x63\x7b\x1c\x9a\xa3\x05\x83\x7c\xbe\xa7\x70\x37\x9f\ +\xa1\x1b\x2e\x4f\x92\x3f\x74\xf0\xbc\x7a\xb9\xc3\xa3\xdd\x2f\x75\ +\x5e\x7d\xe5\x73\x3f\x13\x57\x4f\xc4\x70\x9f\xe3\x26\x64\xf6\x09\ +\x37\x2e\x4f\x46\xd0\xa7\xb3\x33\x55\xba\x76\x18\x42\x56\x3c\xec\ +\xec\x53\x89\xb9\x91\x5d\x97\x8c\x82\x67\x12\x3e\x87\x93\xae\xf0\ +\xbf\x99\xf4\x45\xe8\xef\x04\xa8\x70\x8e\xf1\x69\x31\xf2\xdf\x6e\ +\x6f\xe3\xf1\xd3\x5b\x8f\xbf\xc1\xa6\x96\xec\x3d\x78\x70\x2f\x5e\ +\xba\xbc\x70\x1f\x67\x53\x06\xdf\xd2\x87\xe7\x7a\x52\xe1\x58\x46\ +\x2c\xc3\xb0\xae\x98\x0d\x8d\x34\x1f\x3b\xc4\x7c\x76\x88\xa5\x86\ +\x2c\xbf\x46\x4d\x32\x5e\xab\xc6\x4f\x91\xf8\x31\xd2\x74\x2e\x1d\ +\x4d\xee\x16\xcb\x0b\xf9\x73\xae\xf2\xcd\x94\x94\x33\x50\x09\x24\ +\xf7\x23\x0b\x71\x2f\xce\x1e\x68\xce\x77\xb8\xf4\x26\xd2\xe1\xb0\ +\xf1\xff\xbf\x3d\x7a\xba\x8d\x6f\xbc\x73\x88\x5f\xfb\xcd\x69\xfc\ +\xca\x6f\x4e\xe2\x6b\xef\x9c\xc5\x7b\x37\xcb\xb8\xd1\x78\xa8\xd1\ +\x87\xe1\x5f\xf5\x6d\x8f\x5c\xfe\xfc\x21\x0b\xb4\x18\xf0\xba\x43\ +\x87\x24\xa3\xae\x4a\x07\x6c\x66\xc5\x3b\x3a\x6d\x72\xc8\x6d\x11\ +\x68\x36\xd9\x75\x19\xd3\xb8\xb7\xda\x1e\xe2\xe9\xf5\x3e\x6e\x57\ +\x92\xef\xa8\x05\xe9\x90\x2e\x35\x33\x7d\xc5\x09\xb9\x51\xc2\x7c\ +\x41\xe3\xcb\x41\x73\x46\x5d\x1c\x36\x0a\xeb\x1d\xff\x0f\xaa\xb8\ +\xae\x77\x7e\x75\x1f\x41\x7a\x3b\x7e\x4c\x22\x3e\x3c\x7f\x18\x6b\ +\x95\xf9\x1e\x7d\xc9\xe0\xf9\x1a\xcc\x75\x52\xb4\x04\x95\x67\x86\ +\x7c\x7a\x89\xfe\x58\x36\xcd\xaf\xeb\xa4\xeb\x37\xaf\xe5\xa4\x43\ +\x4e\x45\x8a\x6b\x0c\x1f\xda\x7e\xa3\x6f\x7e\xca\x9c\x56\x1f\x15\ +\xc3\xd8\xf3\x1a\xf1\x73\x13\x48\x76\xe0\xa1\x2b\xec\xc0\xd7\xe7\ +\x17\xd7\x89\xd2\x6d\x76\x6c\x33\xb1\xcb\xe1\x74\xc2\xd8\x6a\x1f\ +\xf3\x5b\x3a\xc5\xb1\xc5\x75\x4e\xfd\xab\x0b\x65\xb7\x0b\xd8\xd0\ +\xec\xdd\xc1\x3c\xec\xd8\x5a\x4f\x3b\x54\x9b\x0c\xf2\xe8\xf5\x1b\ +\xdd\x64\xe2\xb9\xd0\x03\x39\xf5\x4e\xde\xf8\xdb\xca\xd3\xe5\x41\ +\x9d\xb6\x76\x68\xf5\x92\xb6\xe0\xa3\xd3\x36\x31\xf8\xe1\x46\xf6\ +\x0f\xb5\x39\xfa\x7e\x8a\xaa\xda\xdd\x9f\x6c\x6f\x9e\x4e\xa3\x5f\ +\x38\xa8\x0f\x99\x0f\x56\x9a\x8e\xa7\xf2\xa4\x3d\xe5\x59\x7d\x82\ +\x7a\x03\x94\x5d\xf9\xa9\x88\xc4\x9e\xa3\xe0\x99\x30\x3a\xac\x2f\ +\xf3\xbf\xcc\x74\x7e\xb0\xc9\x46\x22\x1f\x04\xd9\xbd\x7b\x20\xd2\ +\x29\x48\xc8\x29\xc2\xf5\xdf\xd0\x09\x3b\xb0\xb8\x42\x07\x8a\x98\ +\x57\xd8\x71\xd9\x60\x43\x6d\xab\xb0\x51\xdd\xac\x84\x3f\xbc\x1a\ +\xc5\xd7\xdf\x99\xc4\xdf\x7b\x7b\x12\x1f\x5c\x73\xde\xeb\x6c\xd3\ +\xdc\x64\x3c\x9e\xc4\x7c\x72\x3f\x1e\x5e\x7e\x21\x16\x2f\xfc\x58\ +\xc4\xe5\x4f\x69\x6e\xf4\x85\x18\xcd\x3e\xa3\x61\xfd\xbe\xc6\x19\ +\x85\xb1\xd6\x65\x8b\x45\xfe\x40\x8d\xbe\xa3\xf2\xe7\xd9\x2a\xac\ +\xfa\xe4\x3f\x1f\x17\x9a\x66\xbd\x70\xb9\x8f\xcb\x25\x3f\x99\x94\ +\xa7\xac\x6b\xad\x71\x07\x5a\xf9\x24\xf0\x1a\x97\xe0\x48\x31\x89\ +\x1e\x41\x32\x5c\x76\x91\x3c\x09\x37\x8a\x17\xe2\x8b\x9f\x3f\x8b\ +\xfb\xf7\xc7\x5a\xf3\xae\xe2\xd1\xd5\xe3\x78\xff\xc3\x0f\x65\xfa\ +\x56\x4a\x9e\x95\xa0\xdd\x27\x82\xac\x6c\x3f\x12\x2c\xd7\x41\x5f\ +\x6f\xa3\xa9\x4c\x77\x7d\x21\x6a\x56\x9a\x54\x80\xc8\xbe\x40\xb7\ +\xce\xf1\x01\x41\x29\x14\x98\xd7\x01\x76\x9d\x59\x07\xd8\x69\x9c\ +\xa6\xca\x99\x41\xd5\xf8\x3c\x50\x91\x76\xab\x45\x2c\xa6\xaf\xc4\ +\x67\x2e\x5f\xb0\x3d\xff\x86\x05\x70\x42\x0e\xc7\x36\x4f\x70\x82\ +\x13\x9c\xe0\x04\xdf\x3d\xb4\x21\xf5\x04\x27\x38\xc1\x09\x3e\x39\ +\xf8\x1e\xcf\xdd\x8e\xe6\x9f\xbf\x15\xc0\xd0\x78\x1a\xe3\xfb\xf7\ +\xe2\xc1\x97\x7f\x34\x9e\x5c\x6b\xb1\xa4\xc5\xb4\x17\xee\x9a\x61\ +\xe7\x93\x45\x9a\xb8\xfa\x8f\xc0\xdb\xb4\xd4\xd3\x64\x66\xb2\x15\ +\x98\xdc\x02\x92\x68\x86\xcb\xc4\xd9\x13\x62\xdf\xf0\xcf\x9b\x0f\ +\x4d\xd7\xb4\xd7\x7a\xc2\xd8\x31\x06\xee\x54\x98\xb3\x57\xde\x15\ +\xba\x91\xdc\x6a\x6d\x11\x82\x92\x89\x8a\x37\xbb\x0d\x98\x84\x4b\ +\x41\x0b\xc1\xed\xe6\x10\xeb\x0f\x56\x11\x8f\xb9\x41\x2b\x73\xf3\ +\x59\x9c\xbf\x7a\x19\xb3\xd7\x96\x31\x5d\xf0\xe4\x06\xaf\x01\xc9\ +\xc9\x3e\x5b\x54\x3c\x55\x35\x9d\x73\xe3\x49\x41\x0b\xaa\xfe\x69\ +\xba\x1e\x92\x26\x8f\x02\xa7\xa7\x6e\xf2\xe3\x7a\x52\x7c\xb2\x9f\ +\xc5\x7c\xb5\x8c\xf1\x63\x69\xde\xac\x62\x74\xa3\x4c\x6e\xb9\xf9\ +\xbf\x8a\x5b\x05\xfe\xc8\x7f\x17\x37\xd2\x96\xcc\x61\x1d\xf1\xe8\ +\xfd\xd8\xfe\x2f\x6f\xc6\x7b\x3f\xfb\x9b\xf1\xce\xaf\x7c\x18\xfb\ +\x2b\x2d\x93\xd6\x67\xde\x4c\x9b\xf2\xeb\x40\xd7\x8b\x7c\xc0\xdf\ +\x56\x64\x33\x08\x49\x83\xf2\x20\xa8\xfa\x6b\x51\x65\x26\x68\x31\ +\xb0\x18\xcd\x0e\xd0\xec\x0e\x79\x47\xd0\x0b\x8e\x93\x29\x56\xe9\ +\x92\x56\x2d\xb8\xbd\x95\x07\x95\x8b\x48\x86\x2d\xa3\x4e\xf9\xd3\ +\x01\xd1\x7e\x7d\x9f\x3a\x86\x6f\xee\x78\x93\x84\x0d\x11\xe1\x15\ +\x9b\x88\x0a\xdb\x75\xec\xe1\xd5\x06\x49\x6e\xb8\x09\xb3\x91\x52\ +\x1b\x6d\xdc\x85\xda\xaf\xa1\xc5\xab\x8d\x97\xfc\x6f\x2c\x05\x6f\ +\xa6\x28\xae\xe0\x76\xea\x6e\x04\x28\x94\x2c\x6f\x42\xc0\xc7\x17\ +\x7c\xcf\x9b\x1a\x90\x06\xd1\xae\x29\xf3\x9e\x13\xb8\x73\x20\xec\ +\xb2\x51\xc6\x4e\x96\x69\xdd\x37\xd0\x41\xa3\x93\xf5\xb4\x6f\xd8\ +\x13\xea\x06\x85\x6f\x4a\xb0\x19\x88\xaf\x94\x05\xba\xca\x40\x99\ +\x28\x6f\xa7\xef\x20\xb9\x37\xd7\xe4\x3f\xf9\xb4\x40\x79\xbc\x21\ +\x25\x5d\xca\x68\x9b\x69\xd7\xfe\x64\x03\x29\xa4\x9f\xf6\x85\x60\ +\x3f\x93\x35\x20\xa4\x2e\xec\x1b\x26\xc5\x2b\x3a\xeb\x4f\x76\xd3\ +\x50\x27\x4f\x7d\xf1\x4b\x07\xb9\x79\xf6\x07\x1d\xda\xa4\xca\x02\ +\x46\x07\x7d\xfc\xe4\x89\x2b\xda\xac\xda\xb3\xf1\x7d\xe3\x8f\x40\ +\x5b\x73\xf3\xcf\xfd\x61\xe5\x0d\x35\x36\xd2\x76\x0a\x3a\xb9\xe2\ +\x40\x50\x1f\x4a\x3e\x3f\x93\xde\x28\xdf\x5d\x8c\xb0\xad\xbc\xf2\ +\xc6\xa8\x68\x06\x25\xda\xcc\xa7\x84\xb0\x8e\x45\x5a\x87\x32\x4a\ +\xd1\x3e\x5b\x58\xe7\x0e\xac\x16\x4f\x0e\xc7\x0c\xed\xd3\x74\x7d\ +\xe4\xfc\x14\x38\x5d\x07\x2d\x22\x19\x5f\x54\x1c\x9a\xcd\x5e\xa3\ +\x31\x88\x27\xa9\x63\xf5\xb5\x8d\xc6\xb8\x9b\x9b\x75\x5c\xbf\xb7\ +\x8f\xb7\xdf\x5a\xc7\x37\x7e\xf1\x49\xec\xff\xda\x93\x88\x37\x1e\ +\x47\x6c\xb0\xb5\xd2\x30\xb0\x96\x3a\x9b\x6a\xb7\x31\x23\xed\xa5\ +\xc2\x83\xb9\xf0\x24\x62\x26\x9d\xcd\x38\x66\x9b\xb9\x7f\x4c\x30\ +\x9a\x2f\x62\x7c\x2e\xf9\x61\x1a\x93\x99\xc6\x30\xa9\x8d\x17\xe4\ +\xa8\xfa\x1f\xe9\x5c\x2d\xaf\x28\x8b\xa9\x74\x68\xe0\x6c\x01\x2e\ +\x96\x30\xc7\x73\x13\x0e\xbb\xc9\x28\xb6\xd3\x51\xcc\x97\xb3\x18\ +\xbf\x74\xe6\x27\xb8\xb8\xd1\x35\xd2\xb9\x3d\x7a\x4a\x3b\x6e\x54\ +\xe5\x6a\x67\x95\x91\x8d\x34\x6e\x3a\x67\xeb\x00\xed\x3a\xf0\x3c\ +\x68\xce\x08\x9c\x97\x09\x47\xd3\x01\x70\xa2\xde\x88\x08\x7d\x95\ +\x55\xf2\x2a\x74\xfd\xb8\x15\xb4\x2b\x70\xf2\xd2\x1f\x33\x52\x66\ +\xbe\x91\xb3\x20\x3b\x86\x5f\x6f\x62\xd4\xd3\xa0\x4e\xa7\xa0\x5e\ +\x17\x8f\xd4\xa7\xce\x5e\xfe\x4c\x7c\xf6\xa7\x7e\x9b\x86\x43\xf1\ +\x29\xab\xf8\x4e\x6d\x03\xd0\x65\x1f\xba\xc8\xef\x29\xa4\x03\xcf\ +\xc2\xdd\xbc\x3f\x09\x5f\x3e\x4d\x30\xac\x97\x46\x1f\xd5\x15\x3d\ +\x5d\xfd\x72\x7a\x88\xdf\xfb\xdb\xfe\x50\xac\x6e\xc7\xb1\xd3\x39\ +\xa5\x01\x44\x43\x60\x56\x56\xb6\x7d\x26\x82\x33\xac\xc2\x46\x3f\ +\x53\xad\xc5\x70\x5a\x5f\xba\xb2\x8f\xf5\xfd\xcf\xd2\x0a\x1f\x0d\ +\x9c\x7f\xfc\xff\x1a\x73\x9a\xee\x3c\xf8\xfb\x00\x52\x90\x2f\xe7\ +\xe1\xd3\x9b\x27\xf1\xf8\xf1\x56\x66\xf0\x60\x14\xb3\xc5\x22\x5e\ +\xd3\x7c\x6a\x39\x7d\xc8\x7e\x61\xf9\xf5\xed\xce\xd1\x84\xe6\x75\ +\xa7\x27\xa2\xd1\x5c\x52\x78\x82\x6c\xa1\x31\xe2\x7c\x39\x89\x7b\ +\x67\x63\xff\x06\x60\xa1\x2a\xe5\x7e\x2e\x4f\xa8\x21\x9f\x4c\x35\ +\xb6\x1f\x14\xf6\x1a\xab\x46\x73\xf9\x94\x3f\x19\xe0\xc6\x2f\xb6\ +\xf2\x16\xb6\xe6\xb9\xfa\xcc\x97\x67\x1a\x63\xce\x62\xb5\x9a\xc7\ +\xf5\x6a\x1b\xef\x3d\x5a\xc5\x1b\x6f\x6f\xe2\xd7\x35\x66\xfe\xfa\ +\x9b\xe3\xf8\xd6\x93\x89\xa6\x89\xd3\x58\xe9\xfa\xc2\x06\x14\x3e\ +\x64\x5d\xcb\x96\x09\xca\x9f\xf5\x8e\xed\x6a\x56\xd3\xed\x00\xca\ +\x34\x49\x34\x59\x51\x29\x6b\x31\xcb\xf5\x11\x6e\xb6\xfc\xf4\x8c\ +\xae\x75\x1a\x06\xe3\xe6\x76\x1f\x4f\x6f\x35\x3b\xd4\x18\x5e\x33\ +\x90\x54\x12\x74\xbd\xc8\x06\x65\x43\x6d\x8a\x94\x6b\x1b\xf3\x85\ +\x2d\x9b\x68\xbb\xb5\xa6\xe2\x9b\x58\x1f\x34\x96\xea\x5a\x09\xbd\ +\xf5\xa6\xc8\x26\x36\xc2\xde\x38\x73\x3c\x79\xdd\xa6\x09\x41\xd7\ +\xca\x6e\x73\x45\xf5\xc1\x1b\x2b\x7c\xed\xd5\x8c\x35\xaf\xd5\x15\ +\xe0\x71\x1d\x25\x5f\xe1\xdc\x3c\x13\xad\x32\x78\xf3\xb7\xf4\xbd\ +\xc9\xc5\xbc\xa5\x7d\x70\xdb\x69\xb1\x41\xbc\xf1\x15\x1c\x97\xbe\ +\xf3\xc3\x76\xc6\x3d\xb7\xa3\x90\x2a\x7c\xa7\x4b\x7e\x3e\x27\x32\ +\xef\x7c\x62\xaa\xd1\xf2\x5b\x1f\xfb\x60\x3b\xf0\xa8\x6b\xe4\x95\ +\xbe\xb3\x43\x90\x9e\x6c\x79\xf3\xc9\x3a\x19\xd0\x21\xc7\x16\x52\ +\x17\xff\x7b\x3f\x92\x21\x31\x07\xcb\x09\xe9\x4b\xb3\xdd\x7c\xd3\ +\x21\x83\x7d\x6a\x72\x05\x7f\xb8\x32\xc8\x0f\x9e\x12\x43\x4e\x5d\ +\xf0\x29\x1b\x60\x0f\x04\x4a\x27\x69\xf1\x45\xb7\x76\x10\x77\xc7\ +\x3c\xc9\xed\xa7\xc0\x1c\xd7\xfc\xda\x44\x73\xfb\xd2\xbf\xab\x9d\ +\xd5\x37\xa0\xdd\x37\xe8\x2f\x07\x5d\x7b\x69\x3b\xa5\xdd\x62\x43\ +\xc1\x75\x69\x9b\x0a\xd0\x55\x3f\x7e\x4a\xad\x82\xeb\xd3\x17\xd0\ +\x2c\xda\x8e\x1f\x67\xd6\x58\xa7\xcc\xe5\x32\x1b\x69\xe8\xa5\x3c\ +\x71\xeb\xb3\x9c\x5f\xa9\x6a\x10\x5d\x29\x0b\x90\xb7\xfe\x4f\x42\ +\x33\x7b\x20\xef\x22\x9f\x07\x4e\xa5\x03\x79\x52\xbb\x68\xe3\x33\ +\x1b\x7b\x6b\x31\x57\x62\x3e\x7a\x1a\xf1\x8d\x77\xc6\xf1\x1b\xef\ +\x6a\x0e\xf5\x61\x88\x87\x7c\xaa\xb9\x8f\xe6\x26\x0f\x3e\xab\x31\ +\xee\x0b\x1a\x45\x2e\x34\x8a\x9c\x69\xfe\xa4\x35\x1d\x1b\xf9\xc1\ +\xeb\xf7\xcf\x34\x57\x79\x1c\xeb\x9b\x0f\x54\x3f\x37\x9e\x63\xd2\ +\x36\x8c\xfc\x0c\xb3\x8c\x91\x63\x8d\x49\xf3\xf9\x48\x63\xd8\x3e\ +\xa6\x7e\x8b\xcb\xa0\x74\x9d\xe3\xc7\x25\x56\x65\x7a\x3e\xd2\x0d\ +\xd5\x94\x1f\xba\xe9\x53\xa0\xa2\x29\x8f\x37\xd3\x34\xfe\xbd\xf8\ +\xc2\x22\x5e\x7d\x75\x1b\x9b\x9b\x59\x3c\x5d\x3d\x8e\x77\xbf\xf5\ +\x54\xad\xce\x7f\xd0\x52\x72\x2b\x0b\x64\xa8\xd2\x3e\xef\x52\x90\ +\xac\x12\x18\xc9\x17\x61\xcf\xe1\x18\x7c\x9b\xac\xa0\xb9\x04\x40\ +\xbb\x2d\x15\x40\x79\x9e\x55\x1f\x2f\x39\x40\x1c\x48\x4b\xd0\xa2\ +\x84\x52\x4b\x31\xd3\x09\x0d\x03\x1e\x43\x70\x46\xe9\xc7\x07\xde\ +\xb8\xb0\x89\x27\x57\x93\x78\xed\xe5\x9f\x89\xb3\xf9\xb9\xdb\x18\ +\x38\xf2\x90\xc8\x11\xe3\x04\x27\x38\xc1\x09\x4e\xf0\xdd\xc2\xe9\ +\x95\x8f\x27\x38\xc1\x09\xbe\x3f\xf0\x3d\x9e\xbc\xfd\xd6\xcc\xb7\ +\xd4\x60\x4d\xc2\xc7\x93\x78\x74\xf3\x61\x7c\xf3\x67\xff\x4a\x3c\ +\x5c\x46\x4e\xf8\xc7\x63\x2f\x9a\x34\x0f\xce\x89\x6f\x4d\x7e\xa1\ +\xbb\xd4\x9a\xd4\x32\xb1\xad\xfd\xa6\x9a\x98\xb3\x54\x60\xd2\xcd\ +\xcd\xc3\xdc\x9c\xe2\xfd\xf3\x7c\xda\x0a\x83\xd7\x45\xe4\xcd\xd5\ +\xe2\x3b\x5d\xc1\x90\x56\x5e\x7d\x6e\xe9\x42\x8b\x95\x37\x3e\x02\ +\xf0\x53\xa6\x63\x1f\x51\x96\xf2\x91\x1b\x3c\x5a\xcc\xf1\x9f\x1f\ +\xd3\x07\x5a\x00\x9d\x2f\x63\x2f\x9f\xc6\xa3\x6d\xac\x1e\xad\x23\ +\x9e\x6a\x82\xce\xab\xe6\xf8\x25\x39\x8b\x16\xf2\x55\xf0\x2f\x4b\ +\xbd\x50\x6f\x53\xfc\x84\x32\x6d\xde\x90\x1e\xfa\x44\xb9\xf6\xa3\ +\x5c\xc0\xcc\x76\xd3\x38\x9b\xec\x43\xeb\x32\xdf\x0c\xda\x6d\x0e\ +\xb1\xb9\x92\xfc\xe9\x26\xa6\xfc\x41\xf4\xf5\x6d\x8c\x9f\xdc\xc6\ +\x4c\x0b\x9f\xed\xaf\x7c\x10\x9b\xbf\xf0\xd5\xf8\x7b\xff\xf5\x2f\ +\xc6\x7b\x7f\xfb\xfd\xb8\x7a\xb2\x8d\xd1\xed\x5c\x66\x69\x08\x85\ +\xaa\xef\x3e\x6f\x1d\x5b\x3d\x72\x34\x5d\x6c\x70\x92\xa8\x14\xa3\ +\x71\x05\x5e\xb1\x28\x3e\x60\x35\xe8\xec\x3f\x47\x76\x17\x50\x71\ +\x28\x3f\x68\x5f\xfe\xef\xc4\xaf\x08\xa1\xed\x55\x66\xfe\xa3\x80\ +\x5f\x12\xf2\xde\x7d\xad\x51\x8d\x79\xdd\x23\xaf\x32\x72\x79\x70\ +\x45\x8b\x75\x13\xf4\x3b\xad\x49\xb5\x9a\xd5\x01\x41\x05\xad\x94\ +\xdc\x16\x8e\x66\x9c\x3a\x31\xdd\xe9\x26\xca\x50\xf1\x01\x74\xc5\ +\x11\x3f\x37\x7b\x45\x53\x39\xf8\x6e\xba\x74\xea\xd0\xe9\x0f\xc0\ +\xfd\xbe\xd1\x83\x23\x40\x13\x01\xae\xef\x06\x44\x9c\xa0\x98\x0d\ +\x91\xbd\x7c\xe0\xa6\x51\xb8\xec\x55\x7e\xf3\x84\x29\xaf\xcb\x5c\ +\x65\x24\x60\xbf\xc5\x5d\x7e\xe2\x0a\xa6\x5b\x5c\x07\xc5\xf3\x7f\ +\xc6\x2a\x3d\x02\xd3\x19\x5c\x5e\x5e\x7f\xea\x73\x9d\x72\x92\x50\ +\x49\xe1\x0b\x53\x37\xf0\x58\x84\xbb\x5e\xb0\x51\x79\x67\x3e\x60\ +\xfc\x20\x15\x34\x6c\x1f\x12\x93\xa3\x51\x8b\x37\x3a\xb1\xd3\x92\ +\x48\x6d\x9d\x7e\x59\xc1\x71\x6f\xf4\x11\x90\x21\x80\x47\x7e\xd6\ +\x55\xa0\xae\x54\x67\x23\x6e\xae\x35\x9a\x9b\x18\x8a\xf3\x24\x23\ +\x9b\xf9\x3c\xb5\xc6\x9f\x75\x78\xf1\x0d\x1f\x39\x76\x7c\x4e\xb3\ +\xb9\x26\xbe\x74\xb9\x29\xe4\xb2\x88\x6f\x5b\x9c\xef\xde\x94\x94\ +\x3b\xf8\x25\x9e\xff\x4f\xcd\xf9\xe0\x31\xb5\x82\x1d\x5c\xb3\xd3\ +\xd9\x9e\x0a\xd4\x93\xc9\x6a\xdf\xc6\xf7\x61\xd0\x21\xe8\x3f\x25\ +\x70\x91\x3b\x99\x10\xa7\x63\x07\x8d\x16\xb6\x8a\xb3\x83\x48\x41\ +\x13\xa7\x5c\x7e\x31\x86\xc9\xd7\xed\x7a\x1f\xb7\x1f\x68\xdc\xd8\ +\xac\xe2\x62\x32\x8f\xf1\xbd\xf3\xf0\xbb\x04\x35\x8c\xf8\x57\xcf\ +\xa1\xf2\xc7\xb5\xc2\xad\x06\x24\xfe\x43\xed\x83\x88\xab\x79\xfe\ +\x3f\xda\x42\xe7\xec\x99\x06\x4c\x36\xd0\xd8\xf0\x56\x5d\xac\x3f\ +\xdc\xc7\xd3\x6f\xed\x62\xf3\xcd\x43\x5c\x7d\xb0\x8f\xed\xb6\xce\ +\x0b\xf2\x05\x27\xd9\x1d\x3b\x7e\x1f\xb5\xff\x8c\xc5\x1e\x23\x3c\ +\x26\x8c\x62\xa7\xbe\xb7\x9b\x8f\x62\xfe\xf2\x79\x4c\x5e\xbd\xf0\ +\xc6\x1a\xbf\x1a\xf7\x46\xf9\xf5\x26\xf6\x2b\x39\xa4\x7a\xe7\x15\ +\x93\x14\xde\xc5\xff\xae\x40\x75\x81\x0f\x95\x97\x3d\x00\xeb\x5a\ +\xe4\xb1\xc8\x34\xfc\x82\x22\x29\x95\xab\x07\x3a\x3b\xaa\xda\x5c\ +\x47\xb5\xbb\xaf\x03\x04\xc5\x8f\x1c\x29\x9a\xbe\xd0\x3e\x58\x52\ +\x36\xca\x82\x71\x50\x41\xf9\xce\x67\xba\xf6\xcc\xf8\x61\x4a\x66\ +\xc6\x8d\xc5\x8d\xea\xf6\xef\x5d\xad\xe3\xfe\xef\xfd\x27\xe2\x33\ +\x7f\xf0\x8f\xc4\x52\x22\xdf\xab\x4a\x4f\xd2\x2f\xdb\x1f\xd2\x9f\ +\x00\xd8\x87\xef\x02\x86\x7a\xdf\x6d\x9a\x7f\xd8\x20\x9b\xbb\x03\ +\x48\xce\xb1\x7b\xcb\x97\xe3\x2f\xff\x8d\xff\x2e\xc6\xf3\xab\x58\ +\x9c\x71\xe3\x4f\xd7\x3f\x09\xdd\xf7\xab\x0f\xa0\xed\x3e\x4a\xaa\ +\xe2\x35\x59\xe3\x75\x9a\x44\x93\xca\xeb\x2b\x76\xa0\x61\x0e\xf4\ +\x80\x16\xeb\x78\x43\x21\x3d\x54\x3e\xfb\x87\x19\xc5\x39\x86\x23\ +\x65\x81\xe2\xf9\x4d\x70\x5e\x30\x76\xf2\x61\x19\xf7\xee\x69\xc2\ +\x68\xf9\x41\xe5\x1c\xc5\x7b\x1f\xec\xe2\xea\xfa\xa9\xf2\x28\xdf\ +\xba\x94\x5c\x8f\x8a\x96\x8d\x36\x74\x5a\x5c\x74\xe7\x0f\x84\x74\ +\x78\x95\xb5\xa6\x91\x31\x9f\x8f\xe3\xfe\xf9\x28\x2e\x97\xdb\x58\ +\x4e\xf7\x9a\x43\x4d\x62\xae\xf9\x83\x2e\x5f\xa1\x69\x85\x54\xa5\ +\x3b\x53\x9d\x1c\xce\xe3\xec\xc1\x85\xe6\xaf\x1a\xbc\x6c\xf8\x4c\ +\x47\x3c\x4b\x60\x9b\x4d\xa3\x59\x5c\x3f\xba\x8a\xc7\x57\x57\xf1\ +\xc1\xa3\xdb\xf8\xe6\xbb\x07\xfe\xa6\x31\xde\x7e\xbc\x8c\xab\xdd\ +\x2c\xd6\x4a\x86\x6f\x39\xbe\x2b\x81\x7d\x21\x75\x9e\xd9\x49\xc9\ +\x2a\x65\x10\x5d\x25\x52\xbc\x49\xb3\x7e\xfa\x8d\xf1\xa6\xe3\x5a\ +\x13\x72\x6a\x19\x29\xa9\x11\x37\xc3\x49\x63\x4e\xb2\x38\x7a\xfe\ +\x28\x89\x1c\x51\x09\xf3\xbf\x80\x99\x57\xdb\x31\xe4\x56\x14\x86\ +\xc8\x38\x76\x9a\x08\x97\xf8\xb1\x58\x79\xe4\x8f\xbf\x9a\x5c\x65\ +\xfd\x3b\xa2\xaf\xae\x67\xca\x2b\x4b\x58\x47\xe7\x29\x1a\x23\xb2\ +\xdf\xa5\x57\xe8\x68\x32\x81\x82\x6d\x68\x44\xea\xb5\x90\xe9\x2a\ +\xea\x34\xe5\xa0\xc6\x55\x98\xc9\x1a\x0e\xac\x43\x5a\xb8\x48\x90\ +\xcf\x17\x4d\x1a\x93\x45\xde\x19\x2a\x66\x9c\x80\x0d\x2c\xc3\x6b\ +\xfc\xa4\x87\x1b\x33\x5d\x1a\x21\xe8\x94\x28\xad\x9d\x1a\x80\xf3\ +\x18\xe8\x17\xf4\x6a\x29\x27\xd0\x3e\x9e\x23\xb8\x13\x31\x57\x80\ +\xa6\xce\x4b\xde\x74\x41\x95\x57\xda\x45\xbf\x64\x70\x28\x02\xb4\ +\xf5\x14\x17\x83\xb4\x6e\x29\xe9\x81\x53\x9e\x94\xd3\xca\x96\x37\ +\x30\x2c\xc5\x40\x62\xd6\x22\xde\x1c\xe4\xc3\x86\x98\x3f\x39\xff\ +\xe1\x29\xb4\xdc\x20\xcb\xad\x47\xf3\x99\x27\xa1\x6f\xbe\xae\xf9\ +\xd0\x07\xe9\x09\x3b\x6f\xfa\x0b\xf9\xd4\xdc\xcd\x39\x12\x47\xa6\ +\xeb\xa4\xa7\x63\xf0\xd3\x3d\xc9\x74\x5d\x67\xda\xe5\x4b\xba\xae\ +\xfb\x5c\x4b\x29\x0d\x72\x2a\xd1\x15\x59\x84\x78\x40\x21\x41\xd6\ +\x18\x98\x0f\x09\xaa\xd7\xf8\x08\xed\x58\xb2\x06\x12\x40\x29\x45\ +\x92\x8f\xa1\xb1\x45\xb4\xb1\x36\x37\xf5\x44\x6b\xc0\x61\xd3\x78\ +\xa5\xf9\xc7\x9a\x77\x5f\xef\x75\xd6\x8d\x17\x1a\xc7\xee\xc5\xe2\ +\xfe\xe7\x74\x6d\x7e\x59\x2c\xc6\x14\x9f\xad\x4a\xc9\x16\xbd\xf4\ +\x0e\x57\xf1\xe8\x9d\x5f\x88\xdb\x0f\xbf\xa5\xb2\xdf\x64\x99\x74\ +\xb0\xfd\x2e\xbf\xfc\xd1\xe6\x0d\x9b\xe4\xab\x49\xac\x3c\xa7\x49\ +\x40\xc5\x75\xd0\x29\x77\x89\x9c\xcb\x77\x82\xbe\x76\x26\x71\xb6\ +\xbc\x88\x1f\xf9\xf2\x3c\x2e\x2f\xef\xc7\x6a\x7b\x13\x1f\xbc\x7b\ +\x15\x4f\x9e\x5e\x29\x7b\xcd\xf5\x54\xef\x09\xe8\x3b\x57\xc7\xaa\ +\x1a\x8e\x20\xdd\x69\xf5\x4a\x3d\x28\x68\x2c\xc9\xff\xc2\x56\x90\ +\xa0\xd5\xdf\x33\x20\xb3\xad\x7d\xa8\x0b\xfe\x36\x82\x0d\xda\xd6\ +\x57\x2a\xdb\x0e\xca\x8b\x4a\x97\x0c\xb0\x7f\xac\x91\x42\xe7\x67\ +\x2e\x63\x86\x6c\xed\x60\x58\xa8\x79\xa4\x3a\xdb\x5b\xdf\x98\xc4\ +\x9f\xf9\xfd\xff\x5a\x7c\xf6\xf5\x2f\xd2\x22\x36\x67\xb9\xd3\xf9\ +\x70\x82\x1f\x32\x38\xb5\xfa\x09\x4e\xf0\xf1\xc1\x69\x43\xed\x04\ +\x27\x38\xc1\x27\x0f\x35\x09\xfc\x5e\x5e\xd1\xbf\x1b\xd3\x39\xdd\ +\xfc\x36\xe0\x49\xa9\x26\xcd\x5a\x3c\x2d\x5f\x5c\xc6\xaf\xfe\x77\ +\x3f\x1b\xbb\xa7\x1f\xc4\xbd\xb3\x85\x6f\x64\x30\x79\x65\x4e\xea\ +\x89\x30\x1f\x45\xf8\x00\x3e\x2a\xbd\x17\xb8\x49\x56\xdc\x82\xba\ +\x51\xaf\x69\x35\x86\x9a\x1e\x81\xbb\x2c\x2c\xf2\x85\x4c\x56\xba\ +\x06\xad\xea\x7c\xe3\xc1\xaf\xa7\xc0\x01\xbe\x5e\x5d\xde\x81\x3e\ +\x1d\x94\x27\xf1\xf9\x35\x80\xd3\x3b\x6e\x58\x4c\x63\x22\x9f\x0e\ +\xf7\x16\x31\xbf\xbf\xf4\xe6\xce\x74\xa2\xa5\xe4\xed\x4d\xac\x1e\ +\xef\x63\xb3\xde\xc7\x44\x13\x75\xdf\x3f\x90\xbe\x6f\x24\x6c\x84\ +\xc9\x16\xa7\x28\x3b\x58\xe0\x1b\x1a\x95\x4f\xb1\x32\xe2\x74\xca\ +\x51\xcc\xb6\x9c\x45\x61\xe7\x27\x2e\x0e\x31\x7b\xb4\x8b\xd9\x9b\ +\x87\x58\xbd\xb9\x8e\xf5\xd7\x6f\x62\xfc\x6b\xab\x88\xaf\x5e\x47\ +\xfc\xd2\xa3\xb8\xfd\xdf\x3f\x88\xab\x9f\xfb\x46\x7c\xeb\xff\xfd\ +\xcb\xf1\xe6\xcf\xff\x46\xbc\xfb\x1b\xe2\xdd\xb0\x02\x65\x33\x4d\ +\xe6\xb5\x80\xe5\x06\x13\x75\x48\x9e\x5e\x34\x94\x13\x64\x4d\x15\ +\x76\xd5\x58\xbc\x22\xf3\x88\x30\x57\x6d\x06\x7c\x4c\x28\x5e\x2f\ +\x7a\x16\x5c\x70\x6c\x64\x74\xa8\x0b\xe9\xa8\x0e\x2c\x33\x69\x5f\ +\xdf\xec\x63\x01\x26\x27\x27\x53\x09\xb8\x8b\xcd\xdd\x2c\x85\x3d\ +\x6f\x5e\x9a\x49\x36\x93\x3e\x1b\x6b\x2e\x88\xea\x6d\x97\x0b\x2e\ +\x36\x46\xd8\xd0\xf0\x82\x1b\x1e\x79\xc3\x57\x60\x71\xef\xc2\xd3\ +\x28\xf0\xed\x57\x62\x93\xd8\xa9\x38\x74\xd6\x54\x05\x7d\xfb\x38\ +\x28\xf1\x70\x51\x68\x52\x87\x2c\x4f\xf1\x49\xd7\x54\x52\x60\xb2\ +\x41\xc6\x6c\xbc\x8b\x35\xb2\xab\xe3\xca\x8b\x5e\x61\x99\x16\xea\ +\xb6\x29\x76\x6e\x14\xc9\xeb\x5a\x70\x9a\x47\x1c\x02\x4c\x5a\x7d\ +\xf3\x15\x55\xa4\x49\x7d\x78\x66\x28\x20\xc3\x36\x0b\x4d\xf3\x94\ +\x71\xde\xcc\x41\xae\x8c\x32\x61\xf6\x4b\x93\x92\xbb\x8d\xb4\x40\ +\xe6\x8e\xa4\x9d\x15\x82\x6a\xfe\x90\x14\x9f\xc0\xcd\x16\x5e\x55\ +\x7a\xc0\xbe\x91\x2f\x3a\x66\xa4\x3e\x87\x94\x0d\xf4\xcd\x43\x89\ +\xb8\xf4\xec\x2f\x3c\xd5\x49\xe7\xbf\x44\xde\xb4\xe0\x3c\x2c\x39\ +\x65\x72\x90\x8e\xf5\xd9\x3c\xcb\x8d\x16\xf2\xc8\xfe\x92\x61\xc4\ +\x46\x9a\x37\xd5\xb6\xc5\x23\x5e\x9b\x6a\x6c\x98\x79\xd3\x2c\x65\ +\x7e\x5d\xa4\x79\xe4\xc1\x66\x1b\x78\x90\x1f\x37\x3c\xb8\x11\x00\ +\x26\x2f\xe7\x97\x8d\x96\x7d\xd2\x25\xe9\xea\xad\xaf\xc0\x01\x99\ +\xea\x09\x8d\x1e\xf2\x80\xd6\xb9\xaa\xb3\x80\x8a\xd3\x81\x7b\x24\ +\x7c\x0b\xe8\x3b\xcd\x50\x02\x51\xa7\x2e\x62\xec\x3a\x62\x13\xec\ +\x51\xc4\xa3\x55\x9c\xdf\x6e\x34\xb6\x49\xce\x13\x7a\xb3\x1b\x61\ +\x8d\x39\x93\xb7\x54\x86\x0f\xa4\x7f\x15\xf1\x84\x77\x8a\x29\x2c\ +\x95\xf8\x42\x27\xe4\x85\xc6\x9a\xa9\x6c\x60\xf3\xe9\x36\xd6\x6f\ +\x6f\xe3\xc9\xdf\x5b\xc5\xe3\xb7\xb6\xb1\x7a\x42\x1d\xb6\x1b\x2a\ +\x47\x5e\xe8\x63\x2f\x0c\x5d\xb1\xea\x00\x66\x83\x29\x37\xd8\x27\ +\xde\x50\xe7\xe9\xb4\xc9\xc5\x3c\x26\xaf\x9e\xc7\x99\xc6\xe5\xed\ +\x64\x96\x6d\x71\xab\xf6\xbd\xe6\xa9\xc3\xad\x8a\x44\x99\xb2\xef\ +\xaa\xe6\x6d\xa7\xe5\x02\x6d\xfb\x03\x48\x19\x79\x64\xa6\x1e\x8f\ +\x71\x86\xb8\x8a\xe6\x9b\x41\x25\xeb\x80\x28\x09\xb9\x16\x12\x6f\ +\x1d\x15\xe4\xfe\x28\xb2\xfe\x3f\xcd\xfd\x84\x8f\x48\x70\x42\xc3\ +\xd8\x91\x0d\xfc\x25\x5f\xe5\xc5\x0f\x0b\xbc\xa1\x36\xd7\xf5\xc7\ +\x3f\x32\x19\xb9\x7b\xad\x95\x46\x4d\x14\xbf\xa2\xa6\xf8\xe9\x7f\ +\xf5\xdf\x88\xd7\x3e\xff\x79\xd7\x4f\x73\xab\xa7\xb0\x8d\x83\x19\ +\xfb\x9e\x42\x9f\xf9\x31\xf4\xc5\xeb\x01\x9d\x21\xff\x93\xf0\xef\ +\xd3\x0a\x83\xb2\x27\x39\x8a\xf9\x61\x12\xbf\xf0\xb7\xff\x76\x5c\ +\xc5\x37\xe3\xfc\x9e\xe6\x16\xfc\x6f\xa1\xea\x8b\xae\x38\xac\x2a\ +\xf7\x45\x71\xdc\xde\xfe\x1e\xe3\xa2\x1a\x59\xe9\xb9\xb9\xa9\xf9\ +\x0b\x17\x58\x11\x96\x99\x5b\x3a\xc5\x01\x1a\x2f\x01\x09\x11\xae\ +\xa5\x3a\xd2\x9f\x9f\x81\x3e\x6d\x82\xe2\x47\xe9\x8b\x92\x23\x87\ +\xfd\x2c\xce\x2f\x66\x31\x9f\x71\x21\xe7\xf5\x66\xb3\xd8\xef\x56\ +\xf1\xee\x07\x1b\x3f\x79\xcf\x79\xe3\xf3\x80\x04\x5d\x56\xbe\xe0\ +\x3f\x03\xcf\xf3\x84\xc2\xf2\x6a\x47\x9d\x3a\x71\x79\xbe\x8b\xb3\ +\xf9\x21\xce\x34\x66\x2c\xe7\x93\x58\xcc\x73\x9e\x91\x1b\x8b\xb2\ +\xaa\xb9\xdd\x78\x3c\x8f\xe5\xe5\xbd\x98\xcd\xf3\x75\x8f\x87\xe0\ +\x75\xb7\xe9\x31\xc7\x09\x1b\x07\xbb\x75\x5c\x3d\x79\x1c\xef\x7d\ +\x78\x15\x6f\xbe\xfb\x24\xbe\xf9\xc1\x24\xde\xbb\x5a\xc4\xd5\xe6\ +\x2c\x36\x0c\x02\xbc\x86\x4e\xe7\x30\xfe\x30\xda\xe4\x50\x90\xe3\ +\xce\x11\x88\xd1\x78\xbe\xf1\x4b\x4c\x93\x4a\x78\x5c\x26\x9a\xec\ +\x08\x3c\xc8\x98\xe8\x0a\x9c\x7a\x24\x48\x06\x71\xda\x38\x41\x3c\ +\xd1\xb4\x15\xd5\x36\x56\xd9\xe7\xbc\x56\x4e\xd1\x76\x0d\xc8\xfe\ +\x60\x86\xfb\x84\xa1\xea\xdc\x16\xad\xa6\x43\x8d\x5b\x7b\x68\x15\ +\x8a\x6b\x58\xdb\x1c\x49\x3d\xd1\x4d\x9d\xb8\x21\x65\x4e\xa2\x4f\ +\x96\x13\xbd\xd4\x70\x5a\x2b\x54\x6e\x66\xbb\xd6\x20\xba\x78\x07\ +\x28\xd3\xfc\xf6\xa7\xd2\xf8\x48\x01\xa1\x5b\x40\x45\x58\xa1\x79\ +\x95\x9e\xa8\x55\x7d\xed\xe0\x35\x9e\xc4\x69\x1f\x49\xa8\x20\x3b\ +\xa9\xb8\xcc\x16\x59\x3a\x68\x01\x49\x03\xbe\x7e\x03\x28\x8a\xdf\ +\x3e\x72\x8a\x6a\x2a\x3e\x90\x72\x42\xda\x20\x2d\xc7\xde\x5f\xa7\ +\xc3\x07\x3c\xc5\x5f\xd7\x23\x76\x90\x27\x2f\x37\xd3\xa0\xf1\x05\ +\x79\xa6\x49\x1b\x43\x24\xbb\xa6\x7b\x59\xea\x92\x5f\xd9\x6f\x32\ +\x7f\x93\x9f\x6d\x97\x3e\xf8\x15\x8f\xd6\x55\x9e\xc4\x6b\xd3\xcc\ +\x94\x78\xde\x4c\xf3\xe6\x5a\xf2\xfd\x3f\xd9\xb6\xcb\x66\x99\xb0\ +\xae\xbf\xe6\xf3\x51\xbd\xfa\x55\x8f\x0e\xba\x1e\xab\x5e\x9a\x2d\ +\x21\xe5\x4b\x3c\x73\x16\x32\xa6\x29\xb6\xf2\xa1\xa6\x54\xe6\x1b\ +\xab\xbd\xfd\x5b\xa7\xad\xae\xfb\x25\x73\xda\xea\x06\xfa\x0e\xa0\ +\xd5\x76\xe3\x73\x84\xd7\xb5\x82\x42\xaf\x33\x04\x9b\x7b\x46\x24\ +\x86\xdb\xb4\x04\x43\x79\x47\x53\x06\xe9\x4c\xd8\xf8\x1b\x6b\xea\ +\xc7\x53\x9d\x8a\x93\x6c\x7f\x19\x17\x67\x2f\xc7\xfc\xec\x45\xd5\ +\x12\xff\x73\xcd\x79\x4e\x05\xb0\xb1\x7b\x1b\xb7\x8f\xfe\x6e\x3c\ +\x7d\xeb\x97\x55\xae\xc7\xaa\x5b\x15\x8e\x34\x00\x73\x8d\x76\x82\ +\x6a\x6c\x60\x83\xf1\x7a\x35\xd6\x58\xa3\x35\xe0\x5a\x2c\x57\x62\ +\x0f\x4e\xe6\x73\xe9\xef\x07\x32\x33\x4e\xab\xe9\x68\x19\x9f\x7f\ +\xfd\x5e\xbc\xf8\x99\x7c\x32\xfa\xfa\xe6\x3a\xde\x7f\xff\x56\xf5\ +\xa1\x39\x5f\x1a\xe7\x30\xc0\x09\x77\xb3\xec\xa2\x35\x8e\xe4\x5a\ +\x4e\xe3\x2b\x1b\x6a\x04\x7e\xf5\xd3\x12\xdd\x49\xeb\x2a\x23\xc0\ +\xa7\x7d\x15\x76\x2a\xb8\xcf\x0b\xfb\x90\xfe\xba\xae\x8d\x7d\x54\ +\x68\x86\xe8\x45\x46\x62\xe9\xd0\x9d\x8b\x80\x68\x75\x30\x86\x0e\ +\xfa\x39\xe3\xdd\x5e\xd7\xd9\xdd\x6a\x13\xab\x77\x3f\x1b\xff\xd2\ +\x9f\xfe\xb7\xfc\x63\x0a\xfa\x16\x32\xa7\xb4\xd9\x66\xfb\x04\x3f\ +\x4c\x70\x6a\xf5\x13\x9c\xe0\xe3\x83\xd3\x86\xda\x09\x4e\x70\x82\ +\xef\x2f\x0c\xaf\xea\xc3\xb9\xe1\xc7\x00\xdf\x6e\xc2\xd0\xb2\x7a\ +\xbe\x4e\x49\xdb\x8c\x73\x32\x8e\xb9\x26\xcc\x5f\xfd\xdf\xfe\x4e\ +\x7c\xf0\xcb\x7f\x2b\x1e\x5e\x9e\xc7\x4c\x93\x66\xfe\xab\xeb\x30\ +\x66\x71\xc4\xc4\x58\xea\x5e\x19\x39\xa5\x31\xb6\x3d\xaf\x2e\x22\ +\xf3\xca\xa3\x6f\x9c\xc2\x93\x1d\x26\xe4\xfe\x98\xc7\x22\x43\x0b\ +\xd4\x26\xc7\x40\x67\xa4\x1d\x1b\x10\x6b\x13\xec\x92\xc8\x91\x7e\ +\x79\xdb\xc3\x11\x47\x11\x16\xf5\xf9\x8b\x68\x47\x04\x63\xfb\x3f\ +\x3e\x9f\xc4\xe4\xe1\xc2\xff\xb9\x71\x38\x4c\x63\xab\xbc\xf7\x1f\ +\x6a\xb2\x7f\xa3\x85\xe4\x36\x5f\x77\x49\x5a\x26\xed\xde\xc0\xf2\ +\x0d\x16\x4d\xe2\x7d\x43\x5d\x71\xf2\xc7\x6f\x4c\x0a\x1a\x06\x9c\ +\x72\xc0\xc8\x9b\x1e\x2a\xaf\xea\x76\x7b\x3b\x8a\xdb\x77\x23\x9e\ +\xbc\xb9\x8d\x27\xbf\xa6\xf0\xcb\xb7\x71\xf5\x7f\xec\xe2\xea\x7f\ +\xbf\x8a\x0f\xfe\xd6\x07\xf1\xe8\x17\xde\x8e\xf7\xff\xce\xbb\xf1\ +\xee\x5b\xef\xc5\x93\xa7\x4a\x35\xe1\xd5\x44\xf9\x7f\x69\x72\xc2\ +\x0b\x08\xea\x89\x45\x2d\xcb\x39\xea\xc0\xd5\x96\x2b\x92\x72\x04\ +\x5d\xc7\x1a\x4a\x48\xc5\xaa\x43\xa7\xcc\xb8\x50\xd2\x26\x0c\x58\ +\x2b\xb2\x60\xc0\x71\x79\x7a\x69\x47\x89\x60\x41\xc7\x62\x0b\xc2\ +\x0b\x4e\xe5\xc9\x86\x19\x8b\x4a\x56\x37\x07\x16\xaa\xec\xdd\xa8\ +\xde\xf9\x35\xf9\x68\xca\xaf\xad\x95\x90\x45\xa5\x17\x5b\xb2\x4d\ +\x3f\x63\x13\x44\xd8\x1b\x48\x94\x19\x8c\x0c\x9a\xef\x51\x9c\x74\ +\xa4\xc7\x09\x0e\xc9\xb7\x5f\xb4\x53\xb1\x71\xdb\xae\x1b\xe8\x17\ +\xa5\x33\x84\x4c\xa4\x64\xf8\x94\x74\x16\x57\x71\x07\x7d\xc9\xd3\ +\xa2\x86\x2b\x90\xd6\xb8\xa5\x51\xa0\x03\x59\x8f\x00\x2b\xfd\x41\ +\x64\x68\x32\xfc\x6c\x1b\x36\xac\xaf\x53\xdd\xfa\xbe\x3b\x21\xc8\ +\xec\xa4\x47\xd9\x94\x81\xe3\xc8\xc0\xa4\x6f\x01\x06\x42\x0c\xd9\ +\x96\x15\x1c\x68\x1f\xd7\x9d\xd2\x19\x2b\xee\x85\xf2\x8c\xb6\x4a\ +\x35\xea\xc5\x37\x82\x14\xb2\x8e\x92\xce\x90\xc8\x04\xc7\xaa\x0b\ +\xb7\x45\x52\x49\x2b\x98\x65\x5c\xb2\x46\x3b\xaa\xfc\x21\xf0\xa1\ +\xf4\x2c\x67\xe3\x8a\x32\x61\xd7\xb8\x68\xca\x52\xf5\xe3\xbb\x34\ +\xea\x1f\xde\x89\x40\xee\x8d\x31\x78\x0a\x1b\x36\xd4\xd8\x2c\x93\ +\xae\xf0\x88\x0d\x90\xda\x58\xe3\xb5\x56\x79\x87\x47\x34\x9b\x6b\ +\xae\x6b\x36\xd3\x08\xb2\xa3\xfc\xbd\xe0\x77\x9c\xfc\x15\xb6\xf8\ +\xa4\xf3\xae\x70\xf2\xb1\xd5\x97\xc7\xa7\x66\xf5\x8f\xac\xc3\xa2\ +\xf9\x98\x91\x71\x90\x01\x2c\x33\x3d\x94\x8c\x4e\x73\xc4\x17\xb4\ +\x34\x86\x3e\x92\x54\xa6\x6b\x7d\xca\xc1\xfe\x40\x89\xeb\xf3\x87\ +\xf2\x6e\xe3\xe6\xdd\xa7\xb1\x7a\xf3\x3a\x96\xdf\xd2\xa0\xf2\xc6\ +\x7b\x31\x79\x5f\xf8\xea\x71\x78\x30\xba\xb9\x52\x78\x14\xb1\x52\ +\xb2\xb9\x0a\xe6\xa7\xd8\x64\x63\x46\x7d\xa9\x0c\xab\x69\x6c\x1e\ +\xef\xe3\xf6\x37\x37\xf1\xf8\x57\x77\xf1\xe8\xad\x5d\xec\x56\xa3\ +\x98\x70\xe3\x98\x0e\xe5\xdc\xf0\xa8\x79\x95\x18\xe4\x8d\xa5\x8a\ +\xba\x4e\x14\x72\x43\x4d\x69\xa7\x63\x8d\x05\x12\x9e\xcd\x62\xfa\ +\xf0\x2c\x96\x2f\x9e\xc7\x74\x39\x0f\xb5\x16\xef\x59\x8a\xf1\x2d\ +\xaf\x73\xcd\xf6\xa2\x5c\xcd\x4c\xcb\xc1\xc5\x7c\x0e\x98\x6d\x85\ +\xcc\xaf\xa5\x64\xfc\xf5\x1d\x16\xf8\xbe\xee\x40\xa6\xac\x81\x93\ +\x61\xa0\x9d\xff\x2d\xa8\xdd\xfd\x9a\x31\xfa\xa7\x5c\x82\x35\x38\ +\x74\xa8\x11\x6e\x11\x7d\x7d\x03\x4a\x81\xdb\xdf\xb3\xe9\x24\x66\ +\xf3\xa9\xc6\x43\x9e\x50\x93\x98\x32\xa9\x02\xbf\xb6\xda\xc6\xf8\ +\xc5\xcf\xc7\xef\xfe\x57\xff\x0d\x5d\x6f\x73\x53\x82\xb1\x1d\xe8\ +\xfd\x6b\xf8\x13\x82\xbb\xd9\x75\xe5\xfb\x0e\xf0\x09\xbb\xf9\xa9\ +\x82\x3b\x65\x27\x4a\xb8\x55\x5f\xfe\xc5\xaf\xff\x95\xb8\xbc\xc7\ +\x6b\x09\xc5\x53\x5f\xa2\xdd\x11\xd2\x93\xf9\xc1\x51\xea\xc3\xab\ +\x7e\x99\x42\x73\xb3\x0b\x98\x63\x00\x3b\xa6\x64\xf4\xe3\x69\xdb\ +\x5c\xe1\xe8\x2f\x31\xe1\xae\xef\x98\x9d\xd0\x78\xa5\x97\xc3\x9c\ +\xc6\x35\xf5\xc5\x67\xa1\x4f\xdf\xd1\x46\xbe\x22\x08\x38\x8a\x16\ +\x5a\xce\x96\x71\x7e\x6f\x21\x96\xc6\x05\x71\xe7\x67\x87\x78\xf7\ +\xed\x5d\x3c\xdd\x3c\xd1\xe9\x9b\xe7\x7c\xeb\x44\x69\x69\x68\x3b\ +\x61\xe8\xc1\xd0\x1d\x92\xb2\x21\x3d\x9f\xed\xe3\x62\xbe\x8d\x8b\ +\x25\x7f\xf9\x38\x8d\x85\xb2\x6b\x9b\xd3\xbc\xf2\xd1\xaf\x78\x54\ +\xc2\xe9\x7c\x19\xf3\xf3\xa5\xe4\x67\xaa\x51\xce\xa4\xa5\x7c\xca\ +\x51\x20\xf1\x75\x3c\xbd\xbe\x8a\xf7\x3f\xfc\x20\xde\x7c\xef\x36\ +\xde\xfe\x70\x17\x1f\x5e\x9f\xc7\xcd\x6e\xc6\xd4\x23\x5d\xe3\xfc\ +\x4f\xc2\xbe\xb4\x12\x03\x1e\xde\x8b\xc6\x37\x27\x61\xd0\xd0\x78\ +\xd8\x92\x17\xd7\xb8\xd7\xad\xb8\x19\x3a\xd8\x64\xc9\x75\x68\x23\ +\x95\xb3\x2e\xa8\x24\x0a\x8c\x28\xf8\xa2\xfa\x55\x31\x99\x33\xb1\ +\x7f\xe9\xf4\x69\xb0\x6c\x0c\x08\xf1\x1d\x37\xc6\x3f\xb5\xb5\xa2\ +\x69\x07\x41\xd1\xed\x63\x26\xed\xc9\x00\x57\x71\x0f\x86\x99\xca\ +\xda\xc4\xcd\x23\x2a\x8c\x1e\x32\xea\x3f\x99\xea\x4f\xc4\x1d\x71\ +\x2a\x43\xf9\x92\xf5\x58\xe5\x74\x2c\xe3\xb6\xc9\x35\xbe\x12\x24\ +\x5f\xd8\xf6\x3b\xf6\x00\xab\x1e\xfc\x04\x22\xc0\xbc\x98\x3e\xac\ +\xa0\x98\xc7\x55\x51\xc3\x94\xce\x37\x33\x35\x3f\xaf\x91\x15\x86\ +\xb4\x83\x8e\xf8\x92\xd4\xb7\x09\x24\x55\x79\x2b\x9e\xbe\x8a\xa6\ +\xfc\xc5\x6b\x34\xf3\x06\xcf\x3f\xcc\xca\xf3\x2d\xab\xb1\xf4\x2c\ +\xc0\x52\xfa\x4e\xbc\xf7\x81\x7a\xc9\x34\xed\x93\x76\x93\x97\xa0\ +\x3a\x10\xed\x4d\x32\x75\xe2\xee\x35\x91\xd6\xd1\x7c\x05\x4a\x36\ +\xda\xd3\x65\xfe\x80\x55\x6f\x3e\xff\xfd\xa4\x99\xf4\xd8\x34\xd3\ +\xf5\x96\x4d\xb4\xe1\x26\x9c\x3f\xf4\x0b\x72\x27\xfb\xf6\x71\xf6\ +\x8d\xce\x80\x1f\xed\x95\x8e\xf9\xdf\x6d\x6d\x9c\x61\xca\xc6\x46\ +\xda\x28\x36\x6c\xae\x88\x86\x87\x89\x16\x00\xe3\x8a\x34\x5e\x42\ +\x75\xaa\x67\x70\x01\xce\xdc\x61\x19\xcc\xd3\x01\x63\x9c\x5c\x1e\ +\x6f\x7b\xc5\x76\xbe\xf9\x2c\x29\x91\x5f\x61\xa9\x06\xda\xed\xc6\ +\x9e\x66\x6e\x37\x33\xf5\x37\xfe\x53\xfb\x22\x96\xf7\x5f\xd2\x3a\ +\x59\x73\x16\xf4\x55\x2f\x1c\x77\x9b\x6f\xc6\xd5\x1b\x7f\x2b\x0e\ +\xeb\x6f\x6a\xca\xa8\x19\x0c\x36\x6d\x2b\x8d\xf3\xaa\x67\x0c\x63\ +\x7f\xbd\x1d\xc5\xa3\xeb\x43\x3c\xba\x39\xc4\x7a\x63\xa7\xfc\x6d\ +\xa7\xb1\xa1\x8b\xf4\xcc\xa1\xb8\x87\x4c\x0b\xe0\x07\xd7\x90\x8b\ +\x8b\xcb\xf8\xc2\x17\x34\xcf\xd0\xc2\x6b\xbd\x5d\xc7\xfb\xef\x5f\ +\xab\xbe\x6f\x25\xe5\xbc\xa6\x94\xb2\x74\xc7\xd8\x51\xde\x82\xa3\ +\x5c\xf9\x72\xfe\x12\x98\xcf\x68\x2c\xf6\x0f\x64\x99\x43\x35\xcd\ +\x96\xa0\xb9\xd3\xbb\xe5\x32\xd3\x2f\xf8\x51\x9a\x37\x4f\x87\xc2\ +\x67\xa0\xcf\xb9\xe9\xd0\x0e\x3d\x97\xfe\xa4\x23\x73\x72\x31\x4d\ +\x5b\x71\x1b\x57\xef\x2c\xe2\x47\xbe\xf0\x47\xe3\x1f\xfd\x6d\x7f\ +\x88\x0a\x77\x99\x7c\x8f\xc1\x89\x07\x76\x4f\xf0\x43\x05\xa7\x96\ +\x3f\xc1\x09\x3e\x3e\x38\x6d\xa8\x9d\xe0\x04\x27\xf8\x74\x00\x57\ +\xf7\x8f\xf9\x0a\xff\xdd\x98\xfb\xb6\x3a\x16\xea\xc0\x84\x59\x14\ +\x8b\xaf\xb7\x7f\xfe\x7f\x8d\x8b\xf9\x28\xce\xe6\xdc\x92\x60\xd2\ +\xca\x62\x48\x53\x57\x2f\x90\x58\x7c\xe5\x34\x16\xe8\x92\x9b\x32\ +\x51\x4c\xcd\xb9\xe1\x32\xf1\xe6\x06\x6a\xdd\xfc\xf0\x0c\xd7\x3c\ +\x05\xf2\x44\x96\xb3\xde\x0e\xf7\x50\x71\x10\x93\x67\x66\xd0\x40\ +\xcb\xbc\xc9\x3b\x9c\xe0\x98\x0e\xb2\x6e\x3a\xa5\x19\xdb\x69\x41\ +\x33\x9e\xed\x63\x7a\xa1\xd8\xe5\x3c\x46\x5a\x28\x2d\xc6\xf3\xfc\ +\xd5\xe4\xd5\x26\x36\xab\x75\x8c\xb7\x5b\xad\xbb\xaa\xe4\x5a\x84\ +\xb0\x06\xf3\x53\x33\x9e\xc1\x67\xd9\x8f\x73\x4c\x87\x1a\x4f\x45\ +\x13\x64\xde\x2c\x07\xfc\x37\x61\x5a\x9c\xb1\x88\xbc\xd1\x22\xea\ +\x43\xee\x67\x6b\xa1\xf3\xe4\x83\xdb\xb8\xfa\x50\x58\xe1\xe9\xe3\ +\x6d\x3c\x15\x7f\xcd\xaf\x18\xc7\x67\x31\x9e\xce\x63\xa7\xc5\x8b\ +\xd3\xe2\x4a\xe5\xea\x2a\x64\xc5\xd6\x32\x03\x88\x16\xcb\xa5\xbc\ +\x23\x4e\x6e\xf3\x1a\x8f\x7a\xe9\x90\x6e\x90\x5a\xcf\x83\xd2\x2d\ +\x85\xd6\x5c\x20\x97\xb9\x18\x79\x23\x99\xa8\x72\xa5\x7d\x25\x64\ +\x33\x2d\x78\x52\x6d\x2a\x39\x0f\xdc\xf1\x7a\x26\xe4\x5a\xf4\x64\ +\xb5\xca\x2f\x7e\xbe\xa9\xfa\xe1\xa6\x80\x57\xb2\xca\x84\x5f\xb5\ +\x5a\x01\xa0\xee\xd5\xff\x32\x9e\xb4\x37\x39\x4a\xee\xcd\x2e\xec\ +\x20\xb3\x3c\xd3\xe0\x95\xad\x79\x81\xd5\xd2\x6b\x41\xef\xa3\x68\ +\x29\x48\x54\x69\xc8\x4f\x82\x3c\x08\x48\x4d\x50\xda\x96\x0f\xf9\ +\x22\x2f\x3b\xb6\x61\x80\x97\xb6\xcc\xb2\x3c\xcf\x97\x4c\x5b\xb5\ +\xed\x43\xe9\x01\x3e\xb7\xb2\x2c\x14\xaf\xa5\xf3\xd3\x78\x76\xd7\ +\xb9\xe5\xcd\xd8\xca\x23\x0b\x04\x4d\x04\x68\x74\xc3\xc3\x96\xc5\ +\x48\xf9\x69\x71\x2e\x6e\x01\x2f\x92\xd9\x50\xa3\xbd\x9e\x67\xab\ +\xa5\x31\x9d\xd0\x95\xbd\x90\x09\x82\x32\xcc\x9b\x8b\x66\x3a\x9f\ +\xce\x8e\x59\x1c\xb2\x3e\xcc\x27\x6a\x2c\x9e\xef\xd7\x50\x5e\xea\ +\x01\x2c\x3e\xf5\x21\x81\xff\xef\xcc\x3c\xf4\xa4\x38\xd8\x10\xf3\ +\x46\x1a\x1b\x6c\x3c\xc9\xc4\xeb\x1b\xd9\x84\x59\x57\xe0\xa9\x50\ +\xdf\xbc\x11\xbf\x6d\xc2\x79\xb3\x36\xd3\x1a\xbb\xc2\x13\x37\x5e\ +\xb6\x87\xf2\xe7\xe9\x54\xeb\x8b\x16\xe6\x06\x11\xe3\x60\xfa\xad\ +\x40\x1d\x57\x9f\x6f\x75\x0d\xee\xeb\x7d\x00\xd6\xff\x08\x70\x9d\ +\xb5\x94\xbd\x05\xb7\x60\x3b\xc9\x3a\x1a\x0c\x4a\x9a\xfe\x5c\x2d\ +\x9b\xac\x66\x4a\xc5\xe0\x16\x2f\x37\xec\xf7\x12\x5c\x3f\xe6\xe9\ +\xb2\xeb\xb8\x7d\xfb\x2a\xce\xde\x7b\x1a\x93\x0f\xd6\x31\x7a\xff\ +\x49\xc4\x8a\xd7\x00\xa9\xae\xe2\x2a\xf6\x0b\x95\x77\xb2\x8e\xfd\ +\x64\xa3\xf2\x2e\x54\x27\xeb\xd8\x3d\xde\xc7\xcd\x37\x57\x71\xcd\ +\x0f\x00\x7e\x73\x17\xd7\x8f\x76\x1a\x0f\x67\x69\x7b\xe8\x5b\x77\ +\x2c\xac\x43\x8a\x5d\x0a\xeb\x3a\x68\x1c\xe0\xa6\xcc\x61\xaa\x71\ +\x6e\x3a\x89\x29\x3f\x6c\x78\xf9\x3c\xe6\x17\xf3\xd8\x8f\x27\xde\ +\x14\x8d\xd5\x2e\x76\x6a\x4f\xda\xd6\x7d\x52\xa1\xd9\xa6\x7c\x65\ +\x71\x10\xee\x40\x0e\xc0\x64\xda\x05\xc6\x20\x5f\x77\x94\xbf\x37\ +\xd7\xac\x82\xcc\x9a\x06\x9a\xa1\x8b\x52\xa1\xca\xd7\xe7\x1e\x63\ +\x3f\x81\x8d\x55\xb7\xbf\x30\x1f\x74\x0a\x4c\x0f\x82\xb3\xd5\x87\ +\x1f\x95\x78\x43\xa0\x6d\xa8\x91\xb7\x1a\x88\x1a\x67\xa3\xf6\x97\ +\x1e\x5d\xc7\xe4\xb7\xff\xde\xf8\xb1\x3f\xfc\x47\x63\xc1\x6e\x04\ +\x69\x7c\xe5\x4c\x7a\x88\x3a\xfc\xbd\x86\xbb\xf9\x7c\xbb\x7c\x87\ +\xbe\x51\xf6\x4f\xca\xc7\xef\x27\xb4\x72\xde\x2d\xaf\x69\xfa\x6a\ +\x32\x0f\xba\x78\xbf\x70\xf1\x99\xf8\xd9\xbf\xfe\x5f\xc6\xd9\xfd\ +\x4d\xcc\x34\xef\x70\x9f\xa0\x73\x08\xda\xf9\xe3\xb8\xbb\x24\x73\ +\x21\xb0\x0f\x68\x14\x6a\x16\x0b\x4a\x87\xd3\x45\xdd\xca\xe7\x53\ +\x29\x76\x36\x9b\xce\x10\xd2\x76\x86\x3c\xe6\x8d\xce\xa3\x8e\xdc\ +\xc1\x71\xda\xee\x07\x44\x9d\x2f\x79\x3c\xc4\x46\x7d\x7a\x16\x0f\ +\xef\x9f\xa9\x9f\x4f\x9d\xff\x7c\x32\x89\xf5\x66\x1d\xef\x68\xec\ +\xd8\x1e\x78\xf2\x95\x4d\x62\xf9\xd8\xa0\x65\x97\x2e\x1c\xc1\x5d\ +\x4f\x72\xdc\xa0\x9c\xfb\xb8\x37\xdf\xc7\x7d\xde\x5c\xcb\x93\x69\ +\x2a\xb3\x7f\x98\xc5\x39\x6d\x4d\x4e\x1e\xf1\x95\xf7\x44\x27\x12\ +\x9b\x6a\x6c\x35\x4e\x62\xa1\x9c\x39\xdb\x34\x9e\xc4\x4a\x43\xca\ +\x55\xbc\xff\xee\x93\x78\xe3\x9d\xc7\xf1\xd6\x07\x9b\xd0\x14\x2c\ +\xae\xd7\x4b\x5f\x42\x18\x00\xf8\xb4\xd7\x52\xe2\x4b\x77\x4d\x4c\ +\x96\x7d\xe9\xc0\x17\x70\x18\x94\x8d\x74\x15\x25\xbd\xf5\x52\x39\ +\x8f\x0d\xac\xe0\x6f\xb3\x95\x73\x90\x4a\x9c\x5f\x07\x20\x75\x32\ +\xc6\x58\xc4\x1b\x1b\x68\xef\xd9\x6c\xe7\x0d\xc5\x66\xc7\xa1\x34\ +\xa9\x91\x56\x2b\x00\xa3\x09\xd7\x00\x94\x72\x8c\x63\xec\x12\xa1\ +\xe0\xa2\x9a\xf6\xb6\x09\x92\xea\x0e\x25\x2f\x3d\xe2\x1e\x0b\x45\ +\x52\x27\xed\xc3\xb7\xd9\xd3\x95\x86\x84\xe6\x25\xe6\x5c\x68\x32\ +\x3e\xb8\x90\x38\x95\x2a\x60\xd4\x54\xd3\x82\x2e\x5b\xcf\x01\x97\ +\x8e\x57\x3e\xaa\x3c\xe8\xf9\xba\x6c\x1b\x19\x9a\x8d\x56\x1f\x4d\ +\x42\xe9\x3e\x0a\x9a\x0e\xa1\xa5\x31\x54\x04\x34\x84\x3e\x17\xd1\ +\x55\x3e\x2b\x56\x59\x92\x4e\xcc\xdc\x82\x39\x88\xcb\x84\xbc\xf4\ +\x8f\x3e\xe5\x7f\xfb\xa4\x1d\xf8\x1c\x99\x9f\xf4\xf2\x96\x9e\x36\ +\x03\x67\xbb\xa1\x43\x9d\x25\xc7\xf3\x19\xe9\x59\x83\xcd\x32\xf5\ +\x7f\x3c\x48\x5e\x4b\xd1\x7f\x98\xd7\x38\x98\xcf\xd3\x68\xe2\xda\ +\x6f\xc5\x95\x9e\xec\x99\x82\xe5\x66\x24\x2e\xd8\x03\xa8\xfc\xba\ +\x9e\xd2\x3e\x4f\xa7\xe1\x8a\x90\xe2\x6a\x23\x82\xe2\x9e\xde\x6b\ +\x38\xe0\x12\x6f\x7b\x4e\x2f\x20\xa2\x1a\xe6\x08\x34\xdc\xd5\xba\ +\xc5\x1c\xe8\xef\xa9\x6b\x68\x64\x4b\xd0\x35\x52\x09\x5a\x5c\x51\ +\x7c\xe0\x14\xe8\xcf\xcd\x3e\x99\x01\x9e\xf9\x94\x0b\x9d\x64\xb0\ +\x01\xb8\xe6\x6f\x77\xf9\x25\xa0\xc6\x96\x85\xae\xdf\xe7\x67\xe7\ +\x7e\xe2\x7c\xaf\xf1\xe4\xb0\x7d\x37\xae\xdf\xfd\x8d\xd8\xde\x7e\ +\x43\x53\xd0\xa7\xb1\x19\x31\x67\x51\x59\x94\x7c\x2c\x5f\x73\x73\ +\x91\xbc\x27\xc2\xdb\xb8\x5e\xed\xe3\x3d\x4d\xbb\x1e\x3d\x65\x43\ +\x91\x8a\xa0\x37\x67\xd6\xa4\x31\x38\xef\xef\x00\x9d\xf3\x49\x30\ +\x02\xf1\xdf\x91\x9f\xfb\xc2\x45\x3c\x78\x38\x89\xcd\x7a\x14\x4f\ +\x9e\xac\xe2\xc9\xf5\xb5\xec\xf1\x28\x5c\x8e\x8f\x80\xf3\xd3\x81\ +\x1a\xcf\xeb\xc5\x71\x7e\x9d\x96\xbf\x59\x6f\xb9\x99\xc6\x35\xa7\ +\x8d\xb9\xca\xf1\x38\x99\x01\x16\x4d\x84\x57\xee\x23\xd4\x81\xae\ +\x31\xd9\x8f\x60\xa2\x95\xb2\x24\x12\x25\xe4\x8f\x12\x7c\xc0\x10\ +\x73\x5b\x6c\xe0\x03\x7c\xc0\xe9\xd4\x43\x61\xd8\xe0\x44\x73\x45\ +\xcd\x6d\xdf\x9f\xc6\x9f\xf9\xa7\xfe\xe3\xf8\xec\x8b\xaf\xc8\xcf\ +\x32\x51\x38\xa1\xb3\x70\x82\x1f\x22\x38\xb5\xfa\x09\x4e\xf0\xf1\ +\xc1\x69\x43\xed\x04\x27\x38\xc1\xa7\x03\xb8\xba\xf7\x33\xbc\x8f\ +\x05\xbe\xdd\x84\xa1\xc9\x9e\xaf\x73\x97\xab\xb8\x26\xf8\xf7\x5e\ +\x7a\x21\x7e\xe5\x7f\xf8\x4b\x71\xbe\xb9\x8a\x25\x93\x68\x36\x42\ +\x58\x48\x69\x22\xeb\x45\x21\x0b\x25\x33\xda\x24\xb7\x0a\xc4\x64\ +\xdb\x33\x6f\x93\x9a\x08\x33\xf1\x86\x96\xde\xe0\x46\xa6\x65\x75\ +\x23\x04\x5d\x6e\x38\xc2\x6c\x37\x4e\x60\x1e\x55\x91\x16\x52\x66\ +\x37\x26\xd8\x93\x6c\x8b\x9e\x0b\xd6\x2f\xdc\x68\x6e\x2a\xe4\x13\ +\x13\xbc\x6f\x5d\x36\xa7\xfb\x18\x9f\xcf\x62\x7a\xb6\x8c\xc3\x94\ +\x57\x71\x8d\x62\xf5\x64\x13\x9b\xc7\xb7\x5a\x7f\xf0\x6b\x52\x4d\ +\xe6\xf7\xe9\x0b\x9b\x0f\x6c\x66\xe4\xa2\x1d\x9e\xe2\x77\xf2\xee\ +\xf2\x34\xa1\x03\xe5\xe1\x03\xa9\x0f\x8b\x47\x2f\x78\xd9\xa8\x93\ +\x1d\xde\xff\x7e\xe0\x77\x8e\x5a\xa0\xec\x26\xd3\xd8\xa9\x1e\x78\ +\x62\x83\x5b\x6e\x7c\xd1\xe7\x17\xd5\x2c\x7c\x95\x00\x96\xc1\x31\ +\x22\x95\x3f\x74\x93\x0d\xa9\x63\x52\x79\x55\xa2\x76\x4c\x71\xaf\ +\x64\xaa\x8f\x0e\xc9\x04\x18\x59\xb8\x0e\x5c\x36\x2a\xc2\x65\x05\ +\x51\xde\xd2\x41\x46\xdb\xb2\x1b\xa9\x32\xee\xa7\xf2\x61\x2e\xf9\ +\x42\xb2\x79\xc9\x26\xb9\xe0\x72\x6b\x52\xb7\x1b\x2d\x94\xb8\x69\ +\xcd\xcd\x6b\x2a\xc0\x2b\x72\x61\x64\x54\x9d\x0f\xa5\x4b\x20\xa5\ +\x10\x39\xfa\xd7\x8f\x04\x7f\x60\x54\xba\x82\x74\xab\xb5\x9b\x23\ +\x8d\xd9\xf9\xec\x3c\x05\xc4\xdc\xf2\xf0\xdd\x89\x33\x6e\xad\xde\ +\x64\x07\xe6\xe3\x2b\x04\x79\x42\x56\xde\x4d\x9d\x1a\xb2\xd8\x07\ +\xe4\x0a\x4e\xa8\x28\x37\x35\xf7\x79\xf3\x82\x7e\xe6\xc5\xe6\xa0\ +\xec\xf6\xd9\x77\x33\x90\x41\x43\xea\x80\xbf\xb2\x91\x66\x9a\x7e\ +\xf1\xc0\x49\x3e\x83\xb3\x7e\xb9\xe1\x92\xe7\x5f\x7b\x6a\xc6\x32\ +\xdb\x69\x86\x8a\xb6\x00\x49\xc6\x5b\x3d\x59\xe6\x88\x25\xa0\xe2\ +\x99\xc8\xb8\xb1\xe4\xe6\x65\x9e\xde\x94\x28\xb9\x17\xcc\x94\xdf\ +\x18\x5b\x94\x2b\xf5\x47\xdc\x70\xf0\x06\x97\xc6\x9d\xda\x08\xf3\ +\x66\x1a\x75\xe1\x57\x3e\xc2\x97\x0e\x4f\xa1\xa9\xef\x78\x13\x0d\ +\x3d\xe2\x6b\xc5\xd9\x04\xe3\x29\x35\x9e\x5a\xe3\x2e\x8e\xd2\xf0\ +\x94\x29\xe3\x18\xf5\x99\x75\x58\x3e\xe1\x0c\x7c\x22\xa2\x3d\x46\ +\x30\x0c\x58\x5f\xbc\xda\x50\xab\xe2\x1a\xba\x3a\x13\xe1\xb6\x54\ +\xe3\x66\x2f\x69\xe7\x01\xa1\xa0\xc5\xcd\x4a\x7e\x27\xb5\xec\x2e\ +\x0c\x74\x38\x34\x1d\xa1\xec\x4b\x38\x4d\x6e\xa5\x67\x3e\x38\x65\ +\x76\x91\xf1\x04\x7f\x25\xd8\xea\x5c\xe3\xf5\x45\xab\x9b\x4d\x5c\ +\x7d\x70\x1d\x87\xf7\x9f\xc4\xf4\x6a\x1b\xa3\xc7\x52\xe0\xff\x35\ +\x6e\xf6\xaa\xc6\x55\x6c\xb9\x49\xa4\x73\x76\xac\x31\xf0\xf6\xbd\ +\x6d\x5c\x7f\x63\x15\x37\xbf\x16\xf1\xf8\xd7\xf7\xf1\xf4\x9d\x55\ +\x6c\x56\xdc\x4a\x91\x3c\xb3\x15\x74\x44\x47\xd9\xa7\xfc\x66\x28\ +\xe7\x38\xe7\xbd\xa1\xa4\xf1\x60\x3b\x93\x97\x17\x1a\x7f\x5f\x3a\ +\x8b\xb3\xcb\xa5\xc6\x04\x6e\x38\xc9\x17\xb5\xdb\x41\xed\xc8\xc6\ +\x29\x4f\xd8\x35\x1b\x59\xa0\x04\xe2\x83\xa8\xc0\xb5\x91\xba\x56\ +\xae\x54\xc5\xc8\x71\x48\xf9\x0a\x43\x73\x4a\x5b\xbf\xd3\xd5\x51\ +\x0c\x9f\x33\x5d\xd0\x41\x21\x37\xb9\x15\x38\x67\x08\xf0\x9a\x4e\ +\x83\x21\xad\x08\x16\x61\xf1\x2a\x3a\x6e\x7e\x73\x8e\xf1\xdf\x69\ +\xbc\x16\xcf\xf9\xcb\x1e\x37\x84\xde\xbc\xba\x8e\x6f\xde\x4e\xe3\ +\xf7\xfe\x9b\xff\x4e\x7c\xe6\x2b\x5f\xd6\x70\x58\xd7\x50\x81\xeb\ +\xf0\x2e\x3c\x87\xf5\xb1\xc3\xf3\xf2\xa0\x30\xf0\xef\xca\x5a\xfc\ +\x2e\xfe\x87\x1d\x3e\xaa\xbc\x8e\x37\xa6\xfa\x89\xc6\xb2\xe5\x78\ +\x11\x7f\xeb\xef\xfe\x42\x3c\xb9\x7d\x33\x2e\x1e\xb0\xc1\xa3\xce\ +\x57\xe0\xf3\x82\x0b\x02\x97\x18\xe6\x44\x7c\xdc\xfe\xd5\xfa\x3a\ +\x98\x6a\xb8\x00\x2a\xcf\x73\xce\x27\x05\xe6\x68\xc4\x48\x6b\x7e\ +\x29\x59\xa3\x07\x9b\x36\xa0\x97\xd8\x7d\xbb\xc6\xe5\x67\x61\x90\ +\xda\x49\x32\x9e\xaa\x49\x73\xfd\x67\xce\x72\x36\x9d\xc5\xd9\x52\ +\x17\xf7\x91\xae\x25\x87\x49\xdc\xbf\x3f\x8f\xf7\x1e\x69\x58\xb9\ +\x7d\x92\xe3\x27\xba\x95\x26\x61\x48\x27\x0c\x5d\xc0\x9f\xf4\x97\ +\x72\x1d\x42\xa7\x4f\x9c\xcd\x0e\x7e\x42\x6d\x31\x67\xfe\xa8\x9a\ +\xa4\xac\xd2\x49\x35\xea\x95\xb2\xb0\x79\xc7\x93\xa0\x7b\xbf\x6a\ +\x9a\xea\xdd\x69\x4c\xcb\xd7\xd9\x5d\xc5\xd3\x0f\xaf\xe2\x9b\x6f\ +\x3f\x8e\x37\xde\xbe\x89\x6f\x3d\xd9\xc6\xd3\xdb\x99\x6f\x9a\x93\ +\xb9\xe7\x17\x77\xfc\x22\xe6\x6b\xf6\x80\xee\x34\xba\x0a\xed\x38\ +\xc9\x72\x74\x58\x9a\x5e\xc3\x78\x10\xc9\x91\xab\xc6\xf1\xfc\xf6\ +\xf2\x06\x1d\x93\xff\x9d\xd2\x98\xa8\x3a\x9e\x4c\x0f\x1a\x4f\xe8\ +\x33\xa4\x6d\x79\x95\x81\xaa\x94\xbe\xbe\x13\x73\xcc\xd1\x09\xc8\ +\x54\x1e\xf7\x84\x1b\xdf\x98\x1f\x1d\x59\x5a\x63\x1d\x14\x44\x05\ +\xb3\x32\x51\x17\x6f\x36\x5a\x79\xf2\x73\x4c\xd9\xb4\xe9\xa6\x9f\ +\xb4\xc1\x83\x2f\x38\x65\x3d\x64\xf9\x52\x17\x49\xb5\x91\xe6\x2c\ +\xad\x5d\xfc\x94\x55\xe7\x68\x22\x44\x54\x43\x9f\x83\xd2\x95\x7e\ +\x32\x7b\x49\xb3\xd3\x20\x4d\x29\xc7\xe2\x83\x86\x49\x12\x71\x6c\ +\xbe\x49\x47\x87\xbe\x3c\x8e\xa4\xcc\xa4\xfc\x63\x0e\x83\x0f\x36\ +\x0e\xb3\x70\x0b\x77\xe3\xc5\x33\x5b\x74\x9e\xa3\xc9\x6f\x18\xa1\ +\x66\x25\x96\xc2\xd2\x55\x45\x75\x91\xbc\xfe\xe9\x32\x78\x6c\xa8\ +\x21\x47\x17\x19\xca\xc2\x72\x9a\x39\x90\xff\xef\x4c\xfe\xa1\x9d\ +\xa9\xe5\xab\xcd\xdb\xb2\x3e\x09\xa6\xe0\xb5\x50\xb6\x48\x65\xbe\ +\x74\x78\x5a\x54\xc9\x63\xbd\x51\xad\x8d\x25\x57\xc6\x4c\xef\x3c\ +\x75\xd3\x7c\xea\x56\xf3\x07\xd6\x51\xf0\xd0\x17\x99\xb8\x02\x75\ +\xed\xae\x20\x02\x64\x70\x3b\x70\xd1\x6e\x02\xe1\xee\xc4\x4f\xda\ +\xba\xc2\x6e\x07\x70\x67\x2d\xed\xe4\xb8\x9a\x3e\x9a\xfc\x28\xb0\ +\x59\x1d\xd2\xa0\xd0\x48\x53\x3f\xcd\x8d\x14\xf6\xbb\x8d\xca\xb0\ +\x8e\xe9\x41\x05\x99\x6e\x63\xb7\x79\x1c\xeb\x27\xef\xc6\x7a\xf5\ +\xcd\xd8\xae\xaf\x63\x33\xba\x72\x19\xa9\x6b\x1e\xa1\xa2\x6e\x48\ +\xbb\x5a\xab\x8e\x54\xcf\x3b\x55\xc2\xd5\xcd\x21\xde\x79\x34\x8e\ +\xa7\x6b\x2b\x91\x53\xe6\xd7\xf9\x34\xa4\xcb\x8d\x23\xa8\x32\x64\ +\x24\x41\xf9\x50\xee\x87\xf7\x2e\xe3\xb5\xcf\xc1\xe0\xe9\xb4\x55\ +\x3c\x7e\x72\x6b\x9f\xe9\xc8\xce\x43\x70\x94\xee\xa8\x22\xa0\x9b\ +\x5e\xf1\x85\x7c\x9d\x51\xf0\x8f\x24\xa1\xdb\x86\xda\x47\x54\x62\ +\xd7\x9e\x26\xe4\xab\xc6\x7e\xfa\x97\xe7\xce\xcf\x29\x4d\x0f\xb2\ +\xc7\x09\x67\x95\xa2\x19\x87\xc8\xd3\x29\xf5\x71\x39\x55\xa7\x2a\ +\x6c\xfe\x78\x32\xd5\x36\xd7\x93\x98\x6d\xbe\x10\x7f\xea\x0f\xff\ +\x5f\xfc\xba\x47\xbb\x46\x72\x4c\x35\x5b\x45\x9e\xe0\x87\x0b\x4e\ +\x4d\x7e\x82\x13\x7c\x7c\x70\xda\x50\x3b\xc1\x09\x4e\xf0\x0f\x2d\ +\x7c\xbb\x09\x03\x73\xd3\xbf\xaf\x09\x85\x26\xca\x3c\x41\xf4\xc6\ +\xff\xf6\x4b\xf1\xe4\x37\xff\x6e\x3c\xa8\x27\xd4\xf2\xa1\x9e\x9c\ +\xc0\x7a\x62\xcc\x44\xd9\xb3\x59\x72\x60\xbe\xca\xa4\x37\x73\xea\ +\xa9\xcc\xdb\xaf\x88\xe0\x86\x91\x6f\xfc\xe4\x64\xdc\x13\x73\x2b\ +\xe8\x48\x9c\x9b\x9d\xd8\xab\x84\x6d\x42\xdc\x01\x74\x4d\x8a\x9d\ +\x6f\x12\x1d\xa4\x64\x98\xa0\x92\x14\x36\x28\x3d\x9f\xfd\x58\x93\ +\x71\x9e\x52\x93\x70\x3f\x9f\xc7\xfc\xde\x32\x0e\xb3\x99\x7c\x13\ +\x63\xb7\x8e\x9b\xf7\xd7\xb1\xbd\xdd\xf8\xa9\x18\xa7\x50\x3a\xff\ +\x2a\x93\xaf\x57\x4a\x59\xfe\x56\xf6\x21\x64\x0e\xe4\x98\xe9\xf2\ +\x06\x17\x29\x7c\x70\xb9\x30\x45\x18\x1f\xb8\xf1\x94\x66\xba\xfb\ +\x17\xa9\x59\x75\x04\x91\x37\xae\xf3\x95\x8f\xfe\x5a\xdf\x32\xc4\ +\x3e\x38\x21\x44\xe1\x82\xd2\x27\xe4\x66\x1a\x74\xe3\x24\x58\xe6\ +\x3c\x6b\x41\xfa\x1c\x38\x4e\xd9\x62\x0a\x3e\x28\x95\xcb\x99\x36\ +\x9a\x4e\xca\xb2\xad\xb9\xa9\xcf\x7f\x25\x1d\x66\x62\x2d\x15\xb8\ +\x19\x26\xde\x94\x27\x67\xc8\x5d\x05\x1a\x6b\xd1\xc9\x86\x08\x4f\ +\x6c\xf8\xa9\x20\xf6\x35\xa8\x13\xaf\xba\x15\x6f\x8b\xb1\xaa\xa7\ +\xbe\xfe\x65\xb7\xfa\xa3\x56\xac\x96\x19\x2c\xab\x08\xbe\x98\x96\ +\x8f\x66\x99\x61\xec\xc5\x22\x71\xd7\x8f\x84\x74\x43\x4b\xea\x88\ +\xff\x7c\x29\x9f\xcb\x09\x1f\x27\x94\xaf\xd4\x53\x4f\x44\x6b\xbf\ +\x0a\x59\x9b\x04\x5b\x37\x06\x9a\x5b\x69\xa7\x80\x27\xf0\x5c\x06\ +\x36\x11\x54\x0f\x2e\x07\x71\xe9\x61\x97\x04\xc2\x2e\x63\x41\x92\ +\x2d\x8e\x6f\xa2\x5b\x14\xdb\x45\xb7\xae\x51\xa5\xac\xa3\x80\xfa\ +\x76\x1a\xa5\x55\x19\x79\x42\x2d\x6f\xe4\x57\x62\xf1\x91\xfb\x3f\ +\xcc\x1c\xd5\xb9\x80\x2d\xfc\x51\xa0\x7c\x6c\xfd\x5a\xd8\x32\x29\ +\x94\x09\x0a\x93\x9c\xf2\x58\x27\xcb\xd4\x64\xf6\x59\x7e\xd8\x0c\ +\xed\x2c\x62\xe4\x78\xf1\xc9\x1f\xdc\x6d\xa0\x15\xed\x4d\xb4\xa4\ +\xf9\xa9\x33\x1b\x65\xb9\xa9\x56\x7c\x6f\xae\xed\x6a\x23\xad\xe9\ +\xa7\xcc\xaf\x86\x94\x9d\x7c\x75\x6b\xd6\x81\x31\xfe\x54\x79\x92\ +\xcf\x4d\x28\x61\xd9\x18\xf9\x6e\x50\x06\xfb\x6f\x5f\x55\x24\xfa\ +\x4e\xab\x33\x7d\xb1\x00\x01\xab\x6b\x5f\xe3\xae\xd6\x33\xde\xfa\ +\x9a\x21\xf5\xbb\xe8\x00\x60\x55\x72\xd5\x15\x07\x7d\xe9\x87\x03\ +\xe3\x1d\x3d\x54\xf6\x31\x4b\xe3\x12\xa9\x7d\xe1\xf2\xb4\x63\xbe\ +\x5e\x2e\xcb\x7d\xb5\xde\xc7\x93\xab\x75\xac\xaf\x0f\xb1\x79\xbc\ +\x8a\xed\xe3\x6d\xc4\x23\x95\xfb\x03\x69\x7f\xeb\x26\x46\x5f\xdd\ +\xc7\xa3\x5f\x7c\x12\x4f\xff\xce\x75\x7c\xf0\x1b\x9b\xb8\xfa\xd6\ +\x3a\x36\x4f\x19\xb3\x24\xc7\xa0\xb1\x42\x97\x77\x21\xd8\x03\xec\ +\xe0\xf3\x68\x1c\x53\x8d\xff\x9c\x53\xfc\x87\xe2\x7e\x31\x89\xd9\ +\x0b\x67\xb1\xbc\x5c\xc6\x64\x39\x0e\xb5\x5a\xfe\x84\x9d\x36\xa2\ +\x1d\xbd\xb9\x99\xe9\x01\x67\xc3\x61\x80\x7b\xc8\xda\x37\xb8\x4e\ +\x32\x66\x92\xf2\xd7\x66\x5a\xd2\xc2\xf9\xed\x0e\x46\xa6\x04\xd8\ +\x2e\xfb\x6e\x6f\xce\x4d\x02\xe3\xd2\xe0\xdc\x4c\x25\xa5\x20\x4e\ +\xb4\x01\x11\xf1\xf8\x05\x7b\x3e\xa9\x2b\xfb\x72\x84\x0d\xb5\x19\ +\xff\xfb\x83\x53\xfa\x6e\x55\xce\x5f\x7f\x72\x1d\xa3\x97\x3e\x1f\ +\x7f\xf8\x3f\xfc\x8f\xe3\x4c\x09\x77\x72\x93\xa7\x76\x7b\x8f\x80\ +\xca\x07\xd6\x51\x46\xdf\x43\x18\x66\xdf\xe0\xbb\xe5\xfd\x30\x02\ +\xf5\xd0\xd5\x45\xb5\x97\x02\x97\x13\x4d\x35\xd4\x6f\x16\xf1\x37\ +\x7f\xf9\x2f\xc4\x0b\xaf\xa8\x3f\x1c\xd8\x8e\x66\xcc\xa9\x44\x52\ +\xf7\x8f\x8a\xa4\x9c\xed\x4e\x7f\x29\xba\x61\xc0\xfd\xa2\xc8\x14\ +\x38\x2d\x7d\x8b\xff\x85\x75\xb7\x6e\xa1\x69\x0e\xe9\x02\x8f\x19\ +\x7c\xc1\x80\x6c\xe4\xff\x92\x3e\xaf\x73\xa5\x4e\x93\x74\x69\xba\ +\xa4\x10\xba\x9e\x73\x07\x7d\x3f\x8b\xcb\xf3\x65\xcc\x17\xf3\x98\ +\xa8\xaf\x9f\x4d\x17\x31\x3b\x3c\x8d\xf7\xde\x67\x23\xff\xda\xa7\ +\xb3\x9d\x03\xec\x37\x38\xe3\xc3\x21\xb1\xf7\x42\xcc\xfc\x9a\x66\ +\xe8\x98\xa9\x90\xe7\x8b\x88\xe5\x32\x37\xd3\xe0\xfb\x7c\xb6\x22\ +\xd7\x64\x9e\x1a\x61\xf8\xd8\xc4\x61\x25\xef\x64\x6c\xab\x8f\x06\ +\x71\x9d\xc6\x57\x71\x7b\xf5\x38\xde\x7f\xef\xfd\xf8\xcd\x6f\x5e\ +\xc5\x37\xde\xd9\xc5\xe3\x9b\x99\x2e\x17\xf2\x9f\x31\xbd\xfb\xdf\ +\xa3\x96\x63\x86\x72\xb1\xb8\xc2\x8d\x00\x3c\x10\xe5\xd5\x7e\xe0\ +\x78\x81\x14\xf9\xa6\x8a\xe5\x7d\xda\x54\x76\xd4\x6a\x7d\x2b\xb9\ +\x38\x80\xf9\x03\x19\xe5\x73\x5c\x65\x94\xab\x53\x36\xd5\x66\x87\ +\x98\xb6\x57\x3f\xf2\x71\x02\x70\xd1\xe5\x53\x1b\xb2\x01\xfc\xb1\ +\xae\x3f\x09\x56\xb3\x7d\xa8\xe1\x78\xd6\x68\x27\x32\xdd\xba\x49\ +\xce\x47\x14\x40\xce\xab\x4f\x9d\x1f\xd8\x1c\x13\x1c\x97\x0e\xed\ +\x93\x19\xeb\xd0\x1c\x10\x34\xb2\x1f\xc9\xd3\xbf\x66\x2b\x21\x29\ +\x5f\xd3\x34\x96\xb6\x12\xe0\x8b\xfb\x70\x07\xd9\xf6\x9d\x27\x5d\ +\x3e\xa4\x6f\x01\x48\xcc\xb1\x53\x69\xe0\xf2\xe4\xdc\xe0\xee\xa7\ +\x4b\x5f\x65\xb6\x9f\x22\x28\x6f\xab\x45\xff\x50\xc8\xb2\xf4\xcd\ +\xf3\x3b\x94\x60\x52\x0b\x0d\x9b\x90\xae\xf5\x93\x76\x70\x1c\xbd\ +\xc6\xcf\xeb\x76\xd3\x05\xdb\x3b\xe4\xa5\x9b\x4f\xa2\xe9\x03\xd6\ +\xe4\xb1\xfb\xbf\x34\xa7\x47\xc3\x29\x72\x6e\x23\x9f\xe4\x91\x37\ +\x79\xd0\x85\x9f\x56\xf8\xd1\x51\x96\xe2\x28\x1f\x7d\x00\x68\xca\ +\xb3\x95\xcc\x4f\xb4\x95\x8e\xfb\xb9\x4a\x4b\x4a\xfe\x7b\x95\x37\ +\x81\x70\x19\xa7\xef\x31\x75\x63\xdd\xb8\x59\x8f\x75\xbe\xe1\x85\ +\xe2\x99\x2c\xc1\x27\x19\x69\xb3\x15\x1a\xfb\x18\xb2\x76\xe5\x54\ +\xc5\xbf\x0d\xd8\x4c\xb3\x76\x0c\xcc\xa1\xba\xa7\xd5\x9e\x01\xf2\ +\x40\xa7\x84\x3e\x27\xf0\x47\x73\x16\x15\x62\xbb\xda\xc5\x76\xbd\ +\x8e\xd5\xfa\x26\x6e\x6f\x9e\xc4\xea\xfa\xb1\xea\xf1\x56\xf3\xca\ +\x0f\x55\xb6\x6b\xf1\xf3\x75\x99\x54\x46\x5f\xa3\x94\x75\x17\xc1\ +\x23\x57\x3d\x00\x00\xff\xf4\x49\x44\x41\x54\x6b\xcd\x49\x6f\x36\ +\x3c\x99\x36\x8e\xf7\xae\xc7\xb1\xd6\xbc\x34\xdd\xe4\x2a\xe1\xac\ +\x0a\x44\x3c\xd7\x37\xa0\xf5\x6b\x54\xd2\xb3\xf2\x4e\xa3\x02\xff\ +\x9d\x76\x1e\x8b\x4b\xa6\xc0\x9a\xdf\x3d\x91\x9f\x1b\x65\xc8\xd8\ +\x2c\x8d\x66\x32\x71\x5a\xb8\x0b\xc7\x1c\xd9\x65\x0d\x27\xc7\xbc\ +\x46\x10\xce\xff\xa8\x94\x16\xbc\xde\xe1\x0e\xb0\xca\x81\xb2\x43\ +\xd0\x7f\xbc\xe1\xaa\xc6\xae\xa9\x53\x2a\x11\x00\x78\x1d\x71\x6c\ +\x8f\x32\xe5\xeb\x1e\xb3\xa4\xa9\x99\xf6\x86\x76\x0e\x87\x4d\x3c\ +\x7d\x3c\x8a\xdf\xf6\xc5\x7f\x21\x7e\xf7\x8f\xff\x6e\x95\x56\x73\ +\x54\x57\x69\xa6\x32\xe0\xeb\xb3\xee\x9e\xe0\x87\x00\x4e\xcd\x7e\ +\x82\x13\x7c\x7c\x70\xda\x50\x3b\xc1\x09\x4e\xf0\xe9\x80\xbb\x57\ +\xf7\x8f\xe1\x6a\xff\xed\x4c\x7c\xb4\xac\x4d\x36\x4b\xc3\x48\x07\ +\xcd\x44\x27\x9a\xfc\xef\xc6\x87\xf8\xda\xff\xf0\xb3\xf1\xe2\x62\ +\xc4\x7e\x48\x8a\x99\xc5\x8a\xc8\x9b\xd1\xcc\x64\x61\xa5\x9d\x2e\ +\xb9\x27\xda\x0d\xc3\x05\x1f\xfc\x6a\x1a\xa2\xf9\x24\x8c\x15\x32\ +\x70\x13\xc9\x7a\x29\xe7\x90\x37\x48\x0a\x4c\x66\x3c\x27\xd6\xe5\ +\x37\x93\x6a\xbf\x0a\xd0\x91\xa6\x72\x04\xb0\x1a\xbb\xb7\xd0\x22\ +\xb2\xa5\x05\xdf\x64\x2e\x7f\x16\xf3\x98\x5d\x4c\x54\xae\xfc\xaf\ +\x9b\xc3\xe3\x5b\x2d\x96\x6e\xe3\xc0\x53\x6a\xc4\x95\x97\xef\x43\ +\xb3\xb8\xc0\x03\x56\x87\x8a\xc3\x37\x3b\xcd\x1d\x01\x51\x97\xc7\ +\x74\x12\xdc\x08\xf1\x42\xce\x71\xdf\x3d\xd3\xe2\x48\xb1\x52\x1e\ +\x2b\x13\x6b\xba\x4e\x32\xc0\x70\x1e\xd0\x95\x19\x34\xa4\x95\x89\ +\x43\xfb\x68\xae\xa0\xcf\x71\x48\x27\x4e\xa0\x1c\x3d\xdf\xa5\xea\ +\x33\x1a\x28\x42\x56\xb6\x09\x8a\x98\xe6\xa0\xc0\xe2\x8e\xf6\xeb\ +\x75\x44\xb3\x98\xa1\x0d\x85\x59\x7c\xf1\x6a\xb7\xe0\xff\xd2\x96\ +\xca\x93\x8d\x9b\x19\x4f\x6e\xa0\x4a\x3f\x12\x66\xa5\xa5\x05\xe0\ +\x8e\x27\x8c\xf8\x31\x25\xbf\xf0\x64\x51\xca\x06\x06\x55\x2d\x39\ +\x6a\xdd\x06\x08\x31\xbe\xee\x03\x0a\x18\xb1\xa1\x06\x49\xa7\x3f\ +\xd0\x2d\x08\x9a\xdf\xf2\xb9\xeb\x87\x0d\xe0\xa1\x56\x7c\xcb\xbd\ +\x90\x2c\x71\x97\x4f\xe2\x2e\x0e\xab\xd9\x1f\x60\xd7\x8a\xe4\xfd\ +\x3a\x91\x34\x46\xe6\xb7\xf4\xf0\xba\xcd\xb4\xad\x02\x37\xf7\xa8\ +\x13\xaf\x40\xa9\x00\x97\xd8\xb8\x43\x4e\x84\xe1\xe4\x01\xd9\x0a\ +\x02\x44\xc4\xb1\x5d\x71\x70\x86\x14\x66\x5d\x82\xa5\xa3\x7e\xed\ +\xf3\x92\x36\x71\xca\xc2\x56\x50\x2a\x74\x2a\xda\x43\x9e\x03\x2d\ +\x94\x87\x19\x2f\x26\xae\x67\xa2\xd4\xed\xdb\x49\xf6\x68\x37\x82\ +\xca\xea\x4d\x33\x94\x5b\x5b\xba\xec\xf9\x74\x92\x5f\xb1\x87\xcc\ +\x1b\x63\xd4\x8d\x30\x1b\x66\xc2\x6c\x98\x8d\xb8\x63\xc3\xc6\x1a\ +\x4f\x9e\xf1\x8a\x40\x36\xd2\xa8\x43\x07\x6e\xea\xa0\x9f\xe9\xf2\ +\x95\x8f\xd2\x15\xcf\x37\xb8\x5a\xc0\x23\x6e\xa6\xe2\xb3\x0a\xca\ +\x78\xc5\xad\x26\x25\xd2\x57\xb4\x7c\x60\x03\x9e\xcd\x4d\xdf\x3c\ +\x72\x9b\xb8\x66\x0d\x39\x7e\x09\x5a\x7b\x38\xde\xcb\xb1\xaf\xd4\ +\xfe\x18\x8c\x4a\x07\x84\x02\x50\xe2\x06\x77\xa2\xa5\x4a\xbf\xac\ +\x48\x53\x30\x9d\xb9\xd8\x98\x7c\x44\xa7\xb9\x45\x79\x8c\xc7\x93\ +\x74\x9d\xfa\x56\x1d\x33\x8e\x33\xc4\x3d\x79\xb4\x8e\xeb\x47\x3c\ +\x7d\xb6\x8b\xd5\xb7\x6e\x62\xf5\x1b\xe3\xf8\xf0\x97\xae\xe3\xd1\ +\x2f\x1d\xe2\xc3\xdf\xd8\xc6\xa3\x37\xd6\x71\xf3\xe1\x26\x76\xd7\ +\x1a\x23\x65\x87\xb1\x90\xa2\xfa\xbc\xb7\xe9\x96\x59\x95\xd0\x87\ +\xf2\x81\xa8\x08\x07\x5d\x48\x78\x92\x86\x57\xbf\xee\x66\x93\x98\ +\xdc\x5f\xc4\xf2\xc1\x79\x4c\xcf\xf8\x53\x7f\xe9\xd1\xde\x8c\xad\ +\xf4\x7f\x3b\x9a\x7e\x23\xb4\x1d\xd8\x15\x37\x38\x9f\x3b\x20\x1e\ +\xcf\xa7\x64\xa2\xcc\x97\x13\xd8\xd7\x14\x63\x06\xa5\x54\x45\x37\ +\x4d\x88\x6f\x2c\xca\x79\x2a\x26\xdc\x8d\x2f\x74\x05\xf7\x27\x68\ +\xf8\x68\x26\x26\x5d\xc6\x05\x72\x30\xfb\x78\xf2\x73\x33\x2d\x6f\ +\x48\x81\xf9\x0f\x35\x36\x1a\x18\xe7\x79\xfd\xda\x6e\xb5\x8d\x5f\ +\xb9\xdd\xc5\x6b\xff\xd8\x1f\x8d\xcf\xfc\x81\x3f\xcc\xdf\x4a\xfa\ +\x5a\xdb\x97\x8f\x88\x89\xca\x28\x63\x9f\x18\xb4\xec\x87\x70\x97\ +\xf7\x3c\x9d\x1f\x26\xa0\x4d\x9e\x5b\x07\xad\xc1\xd8\x08\x3a\xc4\ +\x4b\x2f\x7e\x3e\xfe\xe7\xff\xf5\xbf\x8a\xc5\xe5\x2a\xc6\x0b\xf1\ +\x79\xf2\x5d\x2a\xde\x6c\xb5\x2e\x9b\xdd\xd9\x57\x48\x03\x32\x9f\ +\x68\x52\x42\x85\x21\xf9\x94\x0e\x69\xa6\x13\xf5\x7a\x5f\xa8\xcc\ +\xe9\x75\x2b\x41\xa2\x21\x2f\xaf\x16\xc5\xd1\x78\xa8\x31\x11\x06\ +\xe1\x19\x68\x5a\xa2\xc8\x14\x5c\x87\xcc\x4b\x89\x54\x18\x6e\x74\ +\x4e\x27\x67\xf1\xe0\x72\xa1\x82\x4d\x45\x4f\xe2\xe2\x6c\x12\x4f\ +\xde\xdf\xc5\x7b\x4f\x1f\xab\x84\x1a\x13\x98\xb3\x75\xd6\x86\x90\ +\xbc\x67\xb3\xa7\x9e\xd2\x53\xa4\x3c\xf1\x39\x9f\x8e\xfc\x94\x5a\ +\x3e\xfd\x29\x0f\x74\x3e\xab\x96\x75\xee\xe1\xcb\xce\x7b\xf2\xfc\ +\x47\xe6\x96\x9b\xdb\xc2\x79\xd3\xff\x36\xae\x1e\xdf\xc4\xfb\xef\ +\x3d\x89\x37\xde\x7a\x14\x6f\x7c\x6b\x1f\xef\x3f\x9d\x68\xfc\xe3\ +\xa9\x58\x6e\x6c\x6b\xbc\x51\xf2\x96\x7f\x8e\x20\x59\x6e\x9b\x35\ +\x57\xb8\x08\xeb\xc1\xef\x1c\x6e\x1a\xa4\x3a\x86\xa3\x38\x69\x9c\ +\x3a\x13\xb6\x9a\xf5\xd1\xb2\x02\x0c\x3b\xde\x6b\x64\x3a\x51\x92\ +\xe1\x9f\xa6\x51\xfe\xf1\xdb\x4c\x93\x29\x5e\x87\x99\x90\x29\x3c\ +\x36\x59\xbd\x52\xab\x10\xfe\x21\x04\x74\x1d\x2b\x6a\xcc\x0f\xe2\ +\x48\x94\xa9\x21\xab\x1c\xb2\xa1\x51\x4d\x69\x39\x26\xe0\x47\x17\ +\x6b\x7c\x65\xd6\xe4\xad\xc2\xca\x52\xb2\x7c\xb4\x45\x81\x62\x66\ +\xc8\x2e\xc3\x7c\xcb\x08\xb0\xd3\x99\x77\xe6\x92\xf1\x0e\xca\x04\ +\xe5\xe3\x3f\xad\x92\x21\x2d\x31\xda\x53\x90\x43\x7d\x77\xb7\x06\ +\x43\x5a\x2a\x68\x65\x50\x7e\xf6\xbf\x3e\xba\xf6\x80\x73\x66\x50\ +\xa0\xb4\xe4\x99\x7d\x11\x9d\x4a\x5d\xd8\x5b\x44\xa2\xf3\x03\x0c\ +\x30\x7c\x5d\x73\x79\xdd\x9f\x9c\xb4\xc4\x9f\x4e\x3f\xed\x18\x93\ +\x6b\xe3\x0b\xa7\x9d\x9e\xe7\x38\xe5\x94\x1f\xed\xa9\x3c\xdb\xb6\ +\x5d\x7e\x92\x42\x3e\xba\x8e\x3a\x0d\xe7\x34\x7c\xea\xa1\x74\x15\ +\x92\x97\x9b\x69\xf8\xdd\x6c\x7b\xe3\x43\xb2\x7c\x92\x08\x7e\xea\ +\x79\x03\x43\x3c\xcb\x44\xe7\x2b\x0c\x93\x47\xda\xae\x5a\xb9\xb4\ +\x3a\x1f\x8d\x63\x6a\xd4\xd9\x4c\xba\xeb\x03\x2f\x9d\xf0\x25\x9d\ +\x0d\xb6\x8d\xf8\x5b\xcd\xf1\x9d\x5e\x29\x85\x9c\x37\x40\x3c\xfb\ +\x16\xf4\xf3\xa0\xe5\x74\xb7\x51\x15\xe8\xbf\x43\x36\x70\x37\x6e\ +\xab\xa5\xdf\xe0\x19\x9d\x04\xb3\x4b\x96\xfd\x58\xa9\x95\x9c\x71\ +\x65\xa5\x79\xe6\xf5\x7a\x15\x57\xd7\xd7\x71\xbd\xb9\x56\xb9\x9e\ +\xc4\x7e\xb5\x8a\xcd\x66\xad\x20\xa5\xd1\xb6\xfa\x53\x03\x5d\xeb\ +\x55\x57\xb7\xdb\x71\x3c\xbe\x19\xc7\xa3\xdb\x71\x3c\xd9\xe4\x78\ +\x89\x65\xc6\x54\x63\x85\x3c\x17\x74\x30\xfe\x28\xc8\x72\x34\x15\ +\xba\x24\x36\xee\x9d\xdd\x8b\x57\x5f\xa7\xcd\xc7\x71\x73\x2b\x1f\ +\xaf\x57\x52\x65\xf2\x62\xad\x3b\x55\xf4\xfc\x0c\x86\x5c\x8f\xf5\ +\xac\x79\x85\xb9\xb6\xf8\x87\x3e\xac\xe3\xb9\x4e\xa1\x79\xc7\x44\ +\x2b\x6f\xf6\x31\x70\xb5\x33\x7d\x47\x7d\xa0\xf1\xac\x33\xa8\x1d\ +\x43\x16\xbc\xb9\x6a\xb9\xfb\x02\x79\x36\x89\xbe\xd0\xc8\xb2\xee\ +\x38\xe7\xd4\xe7\xf6\x93\x78\xf4\xde\xbd\xf8\x17\xff\xc4\xbf\x17\ +\xf7\x2e\x5f\xc8\x72\xa6\x62\xf9\x98\x16\x4e\xf0\xc3\x09\xa7\xd6\ +\x3f\xc1\x09\x3e\x3e\x38\x6d\xa8\x9d\xe0\x04\x27\xf8\x74\x00\x57\ +\xf7\xe1\x15\xfe\x6e\xfc\x1f\x10\xbe\x9d\x89\x6e\x5e\x79\x04\x2d\ +\x63\xa4\x05\xcc\x42\xad\x7c\x88\xfb\xaf\xde\x8b\x5f\xfb\xff\xfd\ +\xd5\xb8\x7d\xfc\x8d\x78\xe1\xf2\x5c\xfc\xbd\x17\x49\x88\x59\xbc\ +\x31\x41\xb6\x72\xcd\x90\xd3\x7e\xb3\x09\x2a\x2c\x60\x4a\x9c\x37\ +\x16\x35\xf9\x65\x27\x45\x84\x17\x11\x66\x28\xf0\x6d\xbc\x09\xda\ +\x47\xc9\x2d\x77\xc8\xc3\x73\xc1\x5e\x7c\x84\x8e\xbd\xf6\x2e\x4f\ +\x2e\xd9\xd2\xb6\x96\x9f\x62\x8f\xb5\xc6\x9d\xf0\x5a\x92\x05\x7f\ +\x72\x2f\x81\xca\xce\x2b\x3d\xf6\x4f\xf7\x71\xab\x05\xd2\x6e\xbd\ +\x8f\x7c\xf3\x7c\xfa\x65\x33\xbe\xa9\x4a\x1c\xbb\xd8\x12\x10\xc7\ +\x7f\x91\xbd\x07\x2d\x95\x28\xee\xfa\x48\x27\xef\x79\x61\x44\x84\ +\xbe\xdd\xaf\xfd\xa8\x16\xad\x48\xf9\x5f\x7d\xd7\x4b\xb2\x0d\x68\ +\x3b\x52\xf1\x96\x65\x0f\x08\xe0\x0a\xd7\xc2\xc4\x60\xb2\xc5\x13\ +\xf7\x52\xa8\x3e\x66\xba\x65\x78\x07\x58\xb0\x59\xb5\xcb\x58\xf5\ +\x88\xcf\x36\x91\x69\x5c\x22\xc9\xc9\xde\xae\x22\x57\xd9\x0e\x53\ +\xf1\x66\x62\x2c\xa5\xb3\x98\xc4\x98\x8d\x35\xca\x2a\xd6\x8e\x04\ +\xac\xf7\xb4\xe2\xde\xb1\x10\xe5\x09\x90\x7a\x3a\x8d\x7e\xa5\x2e\ +\x27\x44\x1c\xc3\x66\x21\x48\x02\xbe\xd9\x30\xa9\x65\x2d\xb2\x90\ +\xda\x09\xec\xc3\xaf\x00\x72\xf9\x40\x2c\x06\x81\x6c\x03\xb3\x38\ +\xe2\x6f\x95\xc5\x1c\xfb\x8f\x0e\x39\x34\x1b\x92\x64\xa6\x02\xd5\ +\x41\xf9\xd0\x84\xd9\x1f\x08\xdc\x88\x28\x59\xd3\x2f\x3a\xd3\xb8\ +\x60\xfa\xca\x67\xfa\x12\x1b\x09\x9c\x50\xea\x90\x6c\x72\xf8\xe4\ +\x22\x5d\x67\x83\x68\xf1\x3a\x86\x50\x1e\xcc\x72\x71\x5b\xc4\x0c\ +\x7f\x4d\x67\x19\x4b\xc1\xa2\xb4\xeb\xba\x45\xae\x76\x1a\x79\x43\ +\x0d\xcd\x81\x9e\xc9\x8a\x1b\x0f\xc2\xb1\x6a\x1e\x4d\x70\x50\x0e\ +\xce\x80\x2f\x87\xcc\xa7\x93\x73\x23\x86\x8f\x07\x11\xf8\x55\x36\ +\xe2\xc8\x8c\x55\x87\xae\x0b\x75\x06\xf3\x72\xb3\xc5\x9b\x69\xb5\ +\x31\xc6\x66\x99\x0e\x7e\x22\x8d\x27\xcf\xfc\xa4\x9a\x03\xaf\xe2\ +\x91\x2e\xbc\x8e\x4f\x1c\x9b\x3b\xd7\xb1\x9f\x60\xa3\x9d\xa0\x59\ +\xe9\x73\x67\x0f\x6f\x34\x16\xd0\x87\xf2\x46\x9c\xc6\x3c\x64\xf4\ +\x3f\x65\x43\x07\xb3\x1a\x71\xcb\x41\x7c\x5c\x8a\x02\xc5\xf4\x25\ +\x5e\x2a\x06\xba\x56\xaf\x33\x80\xae\xe1\xbe\x0d\x60\xa8\x8c\x75\ +\x5d\xb4\x92\xa5\x28\x99\x29\x2b\x5a\x1f\x5a\xbe\xe3\x89\x50\x69\ +\xa0\x5c\xd5\xb4\x07\xaf\x22\xda\xaa\x1e\xd6\xeb\x5d\xac\x9e\x1e\ +\xe2\xfa\xc9\x2e\x1e\xbd\xbb\x89\x0f\xdf\xbe\x89\xab\x0f\x0e\xf1\ +\xe8\xd1\x3a\x6e\x6e\xc7\xb1\xdd\xce\x55\x77\x73\xd5\xd7\x98\x11\ +\x8a\xe6\x48\xbb\x3a\xd9\x71\xa3\xcb\x02\x0c\x14\xd1\xf1\xa5\x9c\ +\x9b\x69\x13\x6f\xa6\xed\xa7\xe3\x38\x9c\x4f\xbc\x99\x36\x3b\x63\ +\x77\x3d\xad\x64\xdd\x2a\xd0\x2e\xf2\xaf\xd9\xab\xa2\xf6\xd0\x04\ +\xe0\x8e\x76\x46\x2d\x92\x01\x44\x9f\xa6\x7f\x73\x2e\xdb\x07\x44\ +\xa9\xd7\xa9\x4b\x31\x87\x8b\xca\xb3\x65\x08\xa6\xb0\x0a\xde\x8c\ +\x65\x43\x4d\x34\xbe\x75\x3e\x39\x1d\xb6\x3a\x8e\xf5\xb9\xce\xf1\ +\x84\x1a\x65\xe7\x46\x14\xe3\xfc\x54\xe7\x18\x9b\x0c\x94\x6f\x2f\ +\xd9\x63\xd5\xfd\x9b\xbb\x45\xfc\xae\x7f\xeb\xdf\x89\xd7\x5e\x7f\ +\x5d\x6e\xd2\x3e\xcd\xa9\xc2\xc3\x68\xa3\x3f\x29\x20\x3f\x8a\x35\ +\xcc\xf7\xae\x0f\x9f\xb4\x4f\x9f\x46\xb8\x5b\x07\xbe\x08\x42\x70\ +\xc8\x36\x9d\x89\xf7\x77\x7f\xed\xef\xc4\x07\x9b\x6f\xc6\xf2\xde\ +\x26\xc6\xf5\x63\x20\xfa\xa0\xb5\x7c\xe0\xfc\xca\x88\xfb\x81\x71\ +\x8b\x9b\x48\xbd\xa4\x38\x18\xc3\x72\xf7\xe6\x66\xa7\x99\xa9\xd7\ +\x74\x52\xbf\x3f\x1a\x5a\x7f\x35\x4b\x34\x3e\xd3\xaf\x07\xe7\x5d\ +\x0f\x7d\xea\x2c\x5a\x77\x35\x51\x04\xae\x99\x4a\xab\x71\xf7\x30\ +\x8b\x8b\xc5\x59\x9c\x9d\xf3\xda\x2d\xf9\x33\x9e\xc7\xd9\xfc\x10\ +\x6f\xbc\xb5\x8e\xcd\xe8\x96\xae\x6f\xe0\x89\x7b\xdf\x2c\xad\xac\ +\xb3\x9f\x41\x24\x74\xf6\x0d\xd8\xc7\x37\x7e\x8c\x85\xda\x21\x96\ +\x8b\x43\xcc\xa6\x78\x42\x8d\xb1\x29\x36\xf5\xa6\x01\x4f\xa3\xed\ +\x54\xb7\xeb\xf5\x21\xd6\x1a\xdb\x79\x2a\x64\xb5\xdb\xc4\xf5\xed\ +\x36\xde\x7f\xf7\x26\xde\xfa\xd6\x75\xbc\xf5\x0e\x1b\x7c\x63\xcd\ +\xef\x94\x4e\x63\xa0\x4b\x63\x47\x32\xaf\xf4\x82\x8c\x7a\x64\x28\ +\x7a\xe8\x5b\xc6\x3b\x8d\x0e\x8e\x38\xd4\xa9\x18\xe8\x75\xf3\x12\ +\x15\xba\xcd\x37\x9a\xae\xcb\x56\x34\x04\x9e\x38\x5e\xfc\x3e\x1c\ +\x62\xca\xb8\x36\xd9\xc7\x62\x36\x8e\xcb\xb9\xea\xb3\xe6\x8d\x7c\ +\x3c\x3a\xf1\x6d\x8e\x42\x14\x8d\x0f\xde\x3c\xc3\x10\x3c\x2b\x29\ +\x55\x87\x5d\x1b\x09\xe2\xa5\xad\x8e\x93\x71\xd2\x9a\x2a\xbe\x9a\ +\x20\x69\x0b\x7a\x20\xbd\xdb\xad\xe2\x4d\xbf\x30\x5d\x21\xd3\x0d\ +\x52\x97\xb2\x46\xc8\x92\x34\x5c\x1f\x45\x3c\x17\xd2\x77\x34\xa3\ +\x8f\x65\x79\xf3\x07\x32\xd4\x73\xea\x0c\x5d\xc9\x7a\x4e\xbb\x8d\ +\xca\xbc\x8f\x01\x3b\x8d\xdb\x64\xe6\xd8\xa0\x73\x4f\xb3\xee\xc3\ +\xe4\x03\x27\x3d\x6d\x1b\x6d\x16\x0a\x41\xb5\xa3\xaf\x67\xcc\x5f\ +\xd8\xe8\xf2\x09\xd0\xeb\xe5\x41\xe9\xf1\x1d\x4c\xdc\xf9\x29\x8d\ +\xed\x43\x4b\x52\xe9\xfc\x11\x3f\x37\x2a\xc8\x39\xf5\xd8\x1e\xc3\ +\x13\x7f\xa4\xcb\x47\xb9\x59\x0f\x1a\x9b\x60\xec\xf8\x43\x9c\x0b\ +\xae\xf9\x69\x93\x27\xab\x9c\x27\x3c\x63\xc5\xa5\xd2\x6f\xa4\x31\ +\xf5\x91\x8c\x39\x93\x68\xdb\x50\x1a\xcb\xc0\xb2\xa3\x53\xd2\x3f\ +\x20\x60\x53\x6d\x2a\xfb\xd3\xb9\xce\x3f\xcd\x21\x56\xb2\xb3\x91\ +\x81\xad\xce\x4d\x4d\xc1\x94\xa6\x8a\x69\xa8\x3e\x57\xf1\x7e\x3c\ +\x70\x54\x90\x44\xd5\xfe\x00\x2a\xde\xce\x5d\x45\xcd\x79\xae\x5a\ +\x19\x7f\x46\x38\x80\x3b\xa2\x3a\xfb\x7a\x90\x09\xea\x94\x6d\x4b\ +\x5e\xff\xc8\xb8\x72\xb3\xe2\x69\x35\xf0\x26\x6e\x6f\x25\x55\xc1\ +\x78\x8d\x66\xb6\x16\xed\xa6\x69\x83\xca\xbc\xd9\x4f\x62\xbd\x9f\ +\xc5\x93\xd5\x48\x61\xa6\xb4\x8c\xf5\x6d\x46\x56\xc7\x61\x76\x47\ +\x91\x63\xe8\x4b\x42\x3d\x0b\xeb\x30\x9b\x9c\xc7\x67\x5f\x9f\xc4\ +\xe2\x5c\x63\x1e\xff\x09\x79\xbd\x52\x9b\x30\x69\x4d\xcd\x66\xed\ +\xa3\xad\x3e\x2b\xf3\x30\xa1\x03\xeb\x02\xbf\xb6\x9a\xb5\x3b\x73\ +\x29\x78\x68\x0f\x12\x34\x9f\x20\xf0\x29\xfb\x4f\x05\xea\x84\x80\ +\xa0\x74\x9e\x8b\x1b\x58\x8f\x90\x19\x54\xef\x70\x8c\xb2\xd2\x77\ +\xa8\x5f\x74\x58\x87\x8f\x57\xcb\x98\x8d\xbe\x1c\xff\xe7\x7f\xec\ +\x5f\x74\x1c\xc7\xbb\xea\x33\x6e\x91\x13\xfc\x30\xc2\xa9\xf5\x4f\ +\x70\x82\x8f\x0f\x4e\x1b\x6a\x27\x38\xc1\x09\x3e\x39\xb8\x3b\x41\ +\x1c\xc2\xf7\xe8\xea\xfe\x9d\xcc\x7e\xb4\x1c\x49\x49\x9b\xdf\x9a\ +\x3c\x4f\xe6\xb3\x78\xe7\x97\xbf\x1a\x6f\xfc\xc2\xff\x12\xaf\xde\ +\xbf\x94\xc6\xde\x37\xfc\x00\xff\x59\xb5\xd7\x62\x39\x61\xee\x6d\ +\x27\xf5\xec\x84\x9b\x09\x79\xf2\x7d\x53\xb3\x26\xe5\x9e\xf8\xf2\ +\x81\x14\x9f\x85\x79\x8b\x57\xb2\x01\x10\x91\x83\xe8\x0a\xa5\xab\ +\xe4\x9f\xec\x63\xc8\x29\x38\x29\x9c\x8a\x9b\x17\x4e\x48\xe8\xd5\ +\x79\x9d\xdd\x7e\x2d\xff\x59\x29\x6a\xc1\x3b\x3e\x1b\xc7\xe8\x62\ +\xac\x05\xc0\x24\x0e\x5a\x01\xee\xaf\x54\xd6\xed\xad\xf3\xcb\x5f\ +\xf8\x8a\xe0\xfe\x8d\x6c\x0c\x7f\x0d\x4b\x1e\x00\x22\xdf\xac\x30\ +\x27\xb9\x68\x39\x6f\xd2\x9b\x95\xb2\xf4\x27\xa3\x59\x5f\x02\x2a\ +\xa9\xa0\xab\x03\x41\x9a\xf4\xc1\x21\xb5\x87\x01\x10\x6e\x2e\x35\ +\xb0\xa8\xc9\xa1\x7a\xfa\xa3\xe1\xae\x11\x81\x93\x65\x49\x12\x64\ +\xa9\x48\x90\xe9\x26\x56\x70\x79\xb8\x71\xcd\x0f\x88\xf9\xaf\xb4\ +\x33\xd5\xd1\x82\x3e\x25\x21\x77\xfe\xb4\xe0\xa6\x0f\x79\xc3\x64\ +\x23\x9a\x36\x50\xf0\xd3\x69\xf4\x2b\xd5\x2d\x18\x9b\xad\x7d\x59\ +\xd4\x27\x83\x6f\x2e\xd0\xf8\x00\xb9\x49\x85\xa0\x02\x7e\xc0\x6f\ +\x84\xa0\xab\xc3\xea\x0b\xf6\x91\x1b\x7e\xf0\xf8\x26\x2a\x82\xe0\ +\xce\x58\x20\x5d\x3b\x22\x28\xec\x1e\x26\xda\xfd\x1f\x3d\xfa\x03\ +\x22\xe4\xe6\x43\x23\x48\x7e\xfa\x88\x68\xe0\x6b\x9e\x44\xc6\x94\ +\x99\xf7\xe3\x18\xeb\x8b\xbd\xa6\xd6\xec\x82\x80\x96\x9d\x4d\x2b\ +\x74\x6e\x16\x0f\xe8\xfc\x35\x24\x0d\x0f\x5d\x7b\x45\xfd\xa3\x23\ +\x43\x5e\x30\x73\x73\x52\x05\xe9\x6c\x01\x8a\x38\x2e\x35\x72\xef\ +\xee\x19\x01\xf0\x48\xdf\x78\x65\xbb\x04\x03\x5e\x95\xd1\x0d\x5b\ +\x32\x84\x14\x40\xe5\xb6\x9f\x94\xb5\xe2\x7e\x02\xc8\x9b\x68\xd2\ +\x77\x90\x36\x37\x70\xda\xe6\x98\x37\xc0\x84\xd9\x24\x43\x0f\x2c\ +\x3e\x4f\xab\xf1\xff\x69\x9d\x9e\xfb\x93\xf8\xc8\x1c\xb0\x51\x76\ +\xc8\x8b\xbe\x27\xfb\xb9\x81\xa9\xb8\x4f\x72\x7d\xb9\x19\xa4\xe0\ +\x57\x23\x8e\xb9\xe1\xa1\x71\x41\xbe\xfb\x06\xc1\x56\xbe\x6c\xd4\ +\xf2\xd2\x75\xbf\x91\x0a\x89\xdc\xcc\x2e\xbd\xea\xcf\xe7\x70\xab\ +\x0b\x7a\x89\xa8\x64\x15\x28\x92\x09\x0c\xc8\xb3\xde\x8b\x07\x6a\ +\xa1\x41\xa3\x87\x3c\xc1\x73\x55\x44\x98\xd6\x81\x6c\xd2\xb2\x3e\ +\x12\xa4\xbb\x62\xba\x6c\xb9\x31\x06\xd3\x37\xe6\x14\x76\x6c\x44\ +\x6e\xb9\x39\xc6\x2f\xaa\x3d\xe2\xc7\x68\x3b\xf1\xa6\x22\xe5\x87\ +\xe3\xd3\x90\xf2\xeb\xd3\x8a\x04\xcd\x37\xe9\x06\xe4\x99\x98\xbc\ +\xfc\xaa\x5f\x85\x83\xfa\x19\x3f\x5e\x98\x3d\x58\xc6\xf2\x72\xe1\ +\x7e\x47\x7d\x63\xcc\x37\x5c\x68\x73\xc0\xfd\x44\xa9\x2b\x93\xde\ +\x6e\x01\x8c\x92\x1d\x0b\x2b\xd2\x2a\xc2\xe3\x8d\x7c\x21\xf8\x1a\ +\xd3\xe4\x03\x24\x3b\x7e\x7a\xc3\x38\xe3\xed\x3c\xa5\xaf\x78\xac\ +\xf1\x66\x6c\xc6\x53\x81\x84\x00\x16\x5a\xc4\x09\x65\x83\x0d\x35\ +\x9e\x44\xa3\x66\x78\x4a\x8d\x6b\xde\x38\x66\x3c\x95\xc7\x86\xa2\ +\xf4\x96\xaa\x8b\x5f\xba\xd9\xc4\xe6\xf2\x33\xf1\x7b\xff\xaf\x7f\ +\x2e\x16\x6c\x36\xea\xd3\x5e\x63\xf7\xa9\x85\xbb\xae\x7d\x8a\x5d\ +\xfd\x44\x60\x58\xfe\xae\x4f\x88\xc8\xce\xdf\x81\x7a\xbf\x2e\x87\ +\xf7\xe2\xe7\x7f\xf5\x2f\xc4\xc5\x39\x4f\x72\x49\x4e\x5f\x91\x9e\ +\xc7\x12\xc9\x47\x8c\x37\xc4\x99\x49\x98\x6f\x6e\xd2\xb6\x92\xbc\ +\xa4\x0a\x0f\x74\xe8\x5b\xde\x94\x1d\xf0\xa0\x1b\xf4\x24\xfc\x81\ +\xc0\xa0\xde\xa7\xe1\xd4\x63\xfa\x33\x90\xba\x48\x48\x96\x1a\xce\ +\x61\x40\xe5\x71\xb3\x5f\x69\xbc\x58\xc6\xc3\x7b\xcb\xe0\x29\x4c\ +\x9e\x58\xb9\xd0\x79\x7e\x73\x1d\xf1\xe1\x87\xb7\xb1\x1b\xf1\x78\ +\x4a\xea\x57\xb2\x66\xb0\x03\x46\x97\x06\xbd\x88\x3a\xd1\x99\x73\ +\xe0\x55\x8f\x70\x35\x3a\xb1\x37\x2d\xfe\x86\x27\x5f\x76\xa3\x58\ +\xed\xb6\xb1\xd9\x4c\x19\xf6\xe3\xe9\xcd\x3e\x6e\x34\x87\x7b\xba\ +\xda\xc5\x93\x9b\x5d\xbc\xf7\xde\x3e\xde\xf9\x60\x15\x6f\xbf\xbf\ +\x8b\x47\xd7\xe3\xb8\xd9\x8e\x6b\x4c\xc3\x96\x82\xce\x7f\x86\x00\ +\xe5\x22\x48\xba\xf7\x42\x70\x14\xc9\xe8\x90\xd5\x7c\x1e\xf2\xda\ +\xd8\xd5\xc0\x75\x0e\x13\xe3\x05\xa6\x60\x3b\x06\x48\x4e\xa4\x09\ +\x04\xe9\x53\xe6\xc0\x86\x51\x1b\x79\x67\x1a\x53\x5e\xbe\x98\xc5\ +\xf9\xc5\x4a\x3a\xfc\x72\x09\x49\x8e\x51\x34\xe3\x9e\x31\x9c\x31\ +\x8b\x2c\x9d\x82\xf4\x65\x15\x1f\x3a\x01\x34\x58\xe0\xf6\x57\x90\ +\x22\x94\xe7\x2d\xf0\x95\xaf\x9f\x8b\xab\x78\xf6\x83\xce\x58\xa2\ +\x82\xf4\x02\x55\x1d\x9d\x98\x88\x82\x6d\x24\xaf\x34\xee\xd4\x73\ +\x72\x7b\xaa\x74\xac\xd1\x68\x7d\xec\x83\xbc\x99\xcd\xf2\x9a\xa2\ +\x8f\xc7\x68\xe6\x34\x65\x2c\x53\xb4\x94\x7c\xba\xd4\xd2\x69\xb9\ +\x34\x48\x39\xb8\x81\xab\xa1\x8b\xa7\x7c\xe8\x05\xe0\xe2\x75\xf9\ +\x11\x49\xba\x07\x78\x19\xf2\x09\x50\xcd\x3d\x3c\xfa\x17\x7f\x88\ +\xcd\x3d\xa6\x1d\x97\xdc\x98\x63\xe9\x7a\x2e\xd2\x7d\x34\x37\xc9\ +\xad\xb3\x8c\x4b\x66\xca\x3a\x9c\x2f\x49\x3b\x1d\x01\x5a\x81\x14\ +\xbe\xb6\x35\xcc\x5c\x4a\xfc\x96\x16\x3d\xe7\x23\x75\xb6\x65\xd2\ +\x8e\x08\x5b\xe2\x5a\x4d\x60\x1e\xcf\xb4\xeb\x10\x37\x9a\x7f\xdd\ +\xf2\xa3\x25\xd5\xc4\x62\xc6\x93\xa4\xf2\x6a\xaf\x39\xbf\xea\x67\ +\x3c\xd9\xc7\xd5\xd5\x34\xd6\x92\x6a\x8a\x11\xdb\xea\x93\xd8\xc0\ +\x18\x28\xa1\xf5\xec\x8f\x00\x3a\x5d\x07\xad\x35\x1a\x34\x5a\xfc\ +\xa1\x1a\xd0\xc5\x5b\x9a\xbb\x0a\x1f\xc1\x35\x43\x07\x09\x5b\x4a\ +\x03\xe7\x06\xe7\x9a\x02\xd3\x95\x9b\xf5\x3e\xae\xf7\xdb\x78\xaa\ +\xb9\xd3\x5a\x75\xb0\x15\x9f\x4d\x34\xbf\x12\x73\x37\x76\xb9\x6f\ +\x77\x33\xe9\x8d\xe3\x6a\xa5\xb8\x30\xf5\x46\x69\xdb\x28\xda\x17\ +\x4d\x44\x17\xe9\x72\x4c\xa0\xd2\x2c\xe2\x80\x2c\xe5\x87\xc3\x2c\ +\x5e\x7e\x70\x16\x0f\x5f\x5d\x6b\x1e\x3c\x8f\xd5\x7a\xed\xd7\x49\ +\xab\x96\x2d\x6f\xd6\xfa\x11\xbb\x07\x38\x2d\x0c\xc1\x2e\xe8\xc0\ +\x98\xd5\x3d\x69\xcf\x1c\xce\x73\x9a\xa6\x90\xe0\x5c\x32\x2b\xf9\ +\x92\xfd\xc7\xde\x99\x16\x56\xd7\xa2\xbc\x3d\xf4\x91\x23\x36\x90\ +\x09\x93\x56\x64\xe8\x17\xf5\x85\x4d\x4a\x06\x30\x3b\x67\x52\x7e\ +\xfb\xfe\x59\xfc\xee\x9f\xf8\x67\xe3\x27\xbf\xf4\x3b\xfd\x77\x0e\ +\x4c\xf1\xd2\x7f\xab\x49\x07\x46\xd1\x27\xf8\xa1\x83\x53\xd3\x9f\ +\xe0\x04\x1f\x1f\x9c\x36\xd4\x4e\x70\x82\x13\x7c\xb2\x30\xbc\x8a\ +\xdf\xa5\x9f\x99\x45\xfe\xd6\xe1\xbb\x99\x34\x7c\x3b\x1d\x5c\xca\ +\x39\xb2\x0e\x7c\x15\x59\x88\xf8\xda\xcf\xfd\xd5\x58\x4e\xd6\x71\ +\xa6\x95\x51\x4e\xa5\x6b\xd1\x55\x33\x64\x26\xb8\x0d\x4c\x0d\x66\ +\xb2\xbe\x39\x94\x64\xd1\x0a\x35\x29\xd7\x0c\xdd\x5a\x4c\xd4\xad\ +\x64\x9e\xe4\xdc\x3d\x40\xcf\x89\x38\x0c\x40\xf1\x64\xe5\x91\xfc\ +\xc8\xde\x3f\xb4\x34\x67\x08\x65\xa3\x56\xbc\xe4\x6d\x2d\x63\x65\ +\x95\x31\xa7\xdd\xdc\xe6\x82\x92\x65\xc0\xe4\xe1\x3c\x66\x93\x79\ +\x8c\xb7\x9b\xd8\xdd\xf2\xe4\xcb\x46\x8b\x94\x9d\xef\x83\xd8\x86\ +\x93\xb3\x90\xd2\x64\x5f\x69\x2b\x97\x67\xa0\x71\x13\xa3\xa5\x8f\ +\x27\xf6\x99\xa2\x2f\x27\x1f\xd9\xb2\x28\x65\x1c\x88\x1b\x5b\xd6\ +\x18\x09\xb9\x5c\x81\xb0\x82\xc1\xfe\x25\x69\xdc\x6b\x0b\x1c\x29\ +\xdb\xcf\x83\xaa\x16\xf2\x02\xac\x57\x59\x18\x60\x38\x6e\xa5\x0e\ +\x01\x15\xcd\x6a\x86\x0f\xe6\xc6\x1e\xed\x3c\x17\x79\xae\xc5\xd8\ +\x32\x37\xd3\x46\x3c\x89\x22\xf9\x86\x46\xdb\xb2\x99\xa9\xc0\x46\ +\x08\xff\x75\xc2\x66\x1a\xff\xdb\xa0\xc5\x97\x37\x2b\xf9\x12\x24\ +\x06\x5c\x4b\xd4\xb9\x68\xf7\x39\x7d\x0d\xa2\x89\x02\xc8\x00\xa2\ +\xad\xb4\x59\x2e\x0e\x1c\x1b\x4f\x54\x6d\xa6\x1d\xb5\x03\xca\xa5\ +\x4b\x07\x69\xed\x61\x59\x65\x92\x58\xc1\x51\x70\xd1\x85\x69\x87\ +\x54\x4d\xc2\x9b\x31\x44\xdb\xc6\x0d\x2b\x70\x07\x95\x45\x72\xff\ +\xf2\x18\x55\xe4\x9c\x53\xe2\xe7\x42\x34\xd3\x5b\xe8\xfa\xc0\x13\ +\xe2\x0d\x51\x17\x19\x47\xd2\x80\xbe\xd1\xe2\x96\x57\x12\xdb\x6a\ +\x02\xe8\x2e\x1f\x6e\xe2\xaa\x8d\xa6\x55\x1f\xd6\xc9\x74\x26\x71\ +\xcf\xbe\x24\x7b\x08\x7e\x7a\x4b\xcc\xe6\x47\x22\x1d\xf8\x76\x69\ +\x7c\xe8\x68\xf8\x2e\x37\x3f\x53\x46\xa6\xba\x38\x7a\x22\x0d\x79\ +\xd5\x4f\xd6\x89\xea\x0f\xdd\xa2\xf3\x95\x8f\x6c\xa0\xe9\x9c\x6c\ +\xf4\x56\x72\xe1\xdc\x70\xe3\x9c\x95\x5d\xc5\xfd\xc4\x1f\x37\xb2\ +\xb8\x81\x53\x9b\x95\xee\x5b\xc4\x8d\xe5\x13\x58\x79\x32\xa6\x51\ +\x60\xfa\x03\x37\xb6\xf7\x13\xd9\x57\x63\x72\x63\x08\xa9\x7f\xa5\ +\x8d\x5f\x5b\xc9\x0f\xaa\x2b\xb5\x87\x9b\xa4\xc0\x3d\x85\xbe\x94\ +\x91\x3c\xb8\x32\x65\xd7\x30\x50\x36\x74\xb5\x56\x75\x0e\xb4\x34\ +\x15\x8c\x38\x3c\x0b\x43\x35\x87\x3c\x24\x94\xb0\xf5\xe7\xf6\x43\ +\x88\x5e\x37\xb1\x7f\xcd\xeb\x72\x57\x7d\x08\xa3\xca\x4d\x70\xff\ +\x80\x40\xf5\x33\x82\xe6\x83\x8c\x64\x52\xa8\x54\xc6\x40\x33\x0f\ +\x0c\xc8\xd4\xd5\x98\xce\x58\xe0\x57\x3d\xf2\x64\xda\x62\x12\x93\ +\xcb\x45\x2c\xef\x2f\x63\xb2\x50\x3d\xaa\xce\xb0\xe5\xf3\x9c\x7e\ +\x41\x9f\x68\x30\x20\x39\xaf\x80\x61\xbe\xbd\x03\x3d\xbf\xbc\xcc\ +\x88\x83\x0e\x5c\x57\x18\x8f\x06\x4f\xa7\x59\x56\xa8\x95\xc8\x79\ +\x28\xc8\x8b\x34\xa8\x3a\xc1\xaf\xdc\x8c\x15\x83\x7e\x83\x0a\x07\ +\xa0\x61\x03\xbe\x1b\x39\x8f\xd9\x84\xa7\x69\xa8\x37\x6e\x46\x69\ +\x1c\x54\xf9\xa7\xd3\xa9\xf2\x38\xc4\x4e\x0c\xfa\xe5\xaf\x3e\xd9\ +\xc6\xab\xff\xa7\x3f\x11\x5f\xfa\xbd\x7f\x50\xfa\x4a\x86\x9f\xc3\ +\x4e\x85\xb1\xe6\x2f\x30\x14\x7d\x9a\xe0\xd3\xea\xd7\x27\x01\x6e\ +\xef\x24\x8d\x4d\xeb\x70\xa7\x4e\xd8\xa0\xbf\x7f\xf6\x4a\xfc\x85\ +\x9f\xff\xaf\x63\x72\x76\x13\xcb\xe5\x56\xd7\x06\x06\x9b\x52\xf0\ +\x05\x87\xf3\x8f\xb4\xf4\x9d\xa4\xb3\x6f\x8a\xe5\x7e\x40\x7f\x72\ +\xd4\x60\x59\x7e\x7d\xe3\x9a\xfe\x9d\x9b\xb8\x44\x52\xd7\x74\x2a\ +\x37\xaa\x87\x5e\xe4\x72\x30\x06\x30\x0b\xa2\x23\xc3\xeb\xf5\x93\ +\xf2\x51\x87\x41\xac\xa0\x71\x10\xf2\x9a\xc5\x51\x9c\xcd\x97\x71\ +\x79\x39\x37\x6f\x3c\x9a\xc6\xc3\x7b\x87\x78\xfb\xed\x4d\xdc\x6c\ +\xaf\x75\x1a\x71\xb2\x97\xfe\x00\xa8\xca\x84\xe4\x67\x1c\xba\xf4\ +\xc4\x60\x34\x62\x53\x8d\x73\x4d\x39\xc5\x5a\x79\xdd\x6c\xc6\xf1\ +\xe4\xe6\x10\x8f\x9f\x1e\xe2\xa9\xe6\x72\x4f\xaf\x79\xb5\xda\x2e\ +\x9e\xdc\x8e\xe2\xd1\x53\xc2\x21\x3e\x7c\xc2\x13\xb7\x11\x57\x37\ +\x9a\x6e\x30\xcf\xd8\xb3\x11\xc3\xab\x1e\x29\x6f\x8e\xc5\xdd\x66\ +\x76\x65\x57\x28\x61\x10\x31\xe9\x64\xa4\x4a\x80\x97\xe5\x51\x80\ +\x5d\xfa\x69\xb9\xf8\xb4\x69\x71\x87\x90\x3a\x26\x52\x52\x7e\xf8\ +\x72\x62\x5e\xca\xc1\x78\x0d\x6f\xae\x71\xe5\x85\xf9\x2c\x5e\x7d\ +\x45\xfd\x88\x17\x95\x2b\x0d\xd7\x72\xae\x75\x0c\xe5\xbe\x54\x69\ +\xfc\x66\xc4\xe2\x47\x5e\xd4\x97\xc7\x27\xd2\xe7\x37\xb1\x99\x35\ +\x76\x25\x0b\x66\x11\xf6\x26\x49\x03\x1e\xf4\x31\x24\x54\x81\x39\ +\xe0\x54\x2f\x0d\x8e\x2d\x70\xac\x94\x95\x9f\xa1\xa1\xca\xdc\x4f\ +\xb3\x81\xeb\x93\x0a\xa2\x5c\xcf\xa5\x53\x18\x6a\xc4\x86\x1a\x17\ +\x10\xb8\xb2\xe1\xcd\x22\xc3\x40\x6b\x90\xb6\xc7\x40\xe3\x27\x2f\ +\x67\x00\x99\x4e\xb5\x68\x5e\xc2\x40\x67\xe0\xbb\x35\xaa\xbc\xc5\ +\xea\x6a\xcb\xd8\xbc\xa6\x2f\xeb\x7b\x9e\x6b\xe2\x17\x39\xc5\xa9\ +\x73\x20\xeb\x43\x88\xc5\x84\x24\x7c\xbc\x91\x95\x5a\x1d\x46\xcf\ +\xb4\xb0\xa7\x2c\x3e\x53\x49\x83\xdf\x6c\xd6\xa5\xfc\xe8\x03\xcf\ +\xfa\x2d\x48\x17\x2c\x99\x4b\xcb\xf5\xad\x64\x00\xb4\x7f\x2c\x69\ +\x1d\xc5\x3d\x1e\x24\x46\x25\x75\xc5\x80\x2f\x9a\x29\xd6\xad\xe6\ +\xed\xd7\x9b\x51\xac\xb6\x93\xb8\xd5\x75\x72\xa5\x39\x3d\xd7\xfa\ +\xb3\xa9\xea\x81\xf6\x54\xa7\x58\x88\xde\xaa\xfc\x4f\x56\x63\x4d\ +\xc9\xb8\xf6\xb1\xd1\x8b\x07\xd9\xb3\xa9\xaf\xf4\x00\xaa\x85\x1e\ +\x52\x67\xc0\x6f\x89\x0c\x99\xb2\x41\xd3\x3d\x52\x71\x1f\x78\x16\ +\x9a\x4e\x2f\xed\x52\x0c\x60\x98\xb6\x97\x7b\x03\x57\x98\x7a\x60\ +\xc3\x71\xa3\x38\xaf\xb3\xdc\xb0\x81\xa6\xca\x5b\xa9\x4e\x6e\x14\ +\xae\x45\x3f\x5d\x6b\x7c\x5a\x31\xf6\x4c\x82\xb7\x30\x52\xa7\xaa\ +\x54\xa5\x1f\xe4\xdc\x3b\x5b\xd9\x0c\xf3\x2d\x40\x49\xec\x2c\x9d\ +\x30\x48\x79\x2e\x17\x8b\x78\xf5\xd5\x88\xe9\x6c\xec\xff\x70\xe3\ +\x89\xb9\xae\x7f\x49\xbb\x99\xbe\x3b\xde\x1e\xc7\x8e\x81\xac\x7c\ +\xfd\xd1\x5c\x65\xa2\x73\x0c\x9c\x6b\xf5\x81\x9d\x66\xa0\x5c\xb5\ +\x3b\x3a\x24\x4e\x82\x7a\x72\x20\x6a\x41\xca\xf3\xd0\x30\x87\x56\ +\xaa\x23\x41\x49\x2a\x2b\x19\x70\xad\xd5\x40\xc3\x53\xc9\xbb\x9b\ +\x55\xec\xae\xef\xc7\x9f\xfd\x93\x7f\x3e\x16\x8b\x73\x8d\x85\xf2\ +\xae\xaf\xcc\x32\xa3\xf8\x80\x75\x82\x1f\x2e\x38\x35\xfd\x09\x4e\ +\xf0\xf1\xc1\x69\x43\xed\x04\x27\x38\xc1\x27\x07\x5c\xc1\xdb\xbc\ +\x10\x20\xde\xae\xea\xdf\xa3\xab\x7b\xcb\xf2\xa3\xcc\x7f\xa7\x6c\ +\x8f\x26\xdb\x90\x9a\x01\x2f\x3f\x73\x3f\xbe\xfe\x97\xfe\x66\x6c\ +\x3e\xfc\x5a\x5c\x4e\xe7\xfc\x2d\x86\x33\x61\xb2\xec\x0f\x58\x7a\ +\xe4\xfb\x4c\x71\x6b\x52\xcb\xa2\xc9\x37\x2a\xf4\x65\xb2\xcb\xab\ +\x23\x78\x87\x22\x37\x7e\xb8\xd3\x08\xaf\x12\xf8\xae\x50\x9b\x10\ +\x3b\x79\xd9\xe8\xa1\xe9\x2a\xb4\x0c\x3d\x4b\x07\x27\x6a\x72\x50\ +\x0f\x30\x50\x48\x2e\x66\x89\x79\x29\xae\xc9\xb9\x27\xe8\x6b\xca\ +\xb1\x8b\xd1\x64\x12\xb3\xc5\x54\x8b\x23\x2d\x0c\x37\xab\xd8\xde\ +\x68\x81\xb9\xcd\x9b\xf2\x4c\xf9\x7d\xd3\xb3\x8c\xe7\x1a\xb8\x8c\ +\x01\x85\xa9\x4b\xb4\x33\x3f\xc5\xcc\x17\x9d\xdf\xa2\xd1\xe2\x43\ +\x34\xb1\x43\x32\x7a\xba\x64\xc7\x50\x1c\x50\x2d\x2e\x1a\x3c\xab\ +\x2b\x10\xb3\x59\xa1\xba\x7a\x9d\xf4\x33\xdb\x2a\xdb\xb1\x5b\x7b\ +\x76\x4a\x5d\xa1\x7a\x24\xa5\x41\x75\xa6\x06\xed\x29\x18\xf9\x9d\ +\x2f\x6a\xc7\xb9\x16\x62\x67\xc2\x0a\x93\x25\x1b\x36\xaa\x2c\xe5\ +\xc3\x7d\x69\xbf\x7e\x4f\x0b\xf1\x7c\x32\x4d\x89\x6a\x33\x8d\x95\ +\x26\xeb\x40\xfa\x14\x75\xcb\xe6\x1a\x0e\x9b\x87\xe3\xf9\xed\xca\ +\xd0\x78\xd6\x01\x11\x24\x48\x4f\x9c\x9d\xe8\x64\xf8\x97\xfb\xa6\ +\xd5\xc3\x44\x3b\xae\xe0\xd7\x4e\x95\x9e\xeb\x81\xaf\x02\x87\x8a\ +\xfa\x5c\xa0\xa6\x9c\xb1\xa1\x68\x7d\xe1\xe3\x87\xf5\xc0\xe6\x37\ +\xac\x72\x82\x59\x4d\xd2\x7f\xbc\xc8\x2d\x9e\x42\x46\x85\x25\x6b\ +\x1b\x6e\x3e\x9f\x08\x62\xb9\x8e\x5b\x7a\x32\x03\x93\x4e\xa1\xb5\ +\x53\xcb\x1f\xbe\xdd\x26\x9e\x02\x01\x3c\x13\x75\xec\xd3\x35\xbf\ +\x6c\x4b\x6d\xc7\xeb\xc2\xba\x8d\x17\x00\xb9\x2d\x29\x38\x0d\xb8\ +\xf1\x04\xf8\x6e\x51\x6f\x33\x55\x74\x90\x99\x2c\x3f\x71\xf8\x8d\ +\x46\x57\x29\x94\xaf\xe5\x6c\xa2\x41\x7b\x03\x2d\x03\x9b\x6b\x6d\ +\x03\x2d\x37\xd8\x76\xe6\x79\xf3\x8c\x3b\x84\xde\x34\xeb\xe3\xfb\ +\xed\x36\x0e\x6b\x9d\xb7\x6c\xd0\xb2\xf1\xe1\x8d\xb5\x4c\xcb\x4d\ +\x9b\x9d\x68\x6f\xca\x51\x77\xc2\xf8\x90\xf5\x2e\x1b\xce\x3b\xfd\ +\xb1\xdf\xb8\xca\x2f\x5c\xf9\x3f\x9a\xc9\x2e\xbb\x34\x9b\xc0\xe3\ +\xad\xba\xa6\xf2\x50\x42\xfa\xe5\x6e\xa7\x01\x6c\x4f\xcd\x2a\x52\ +\x75\x86\xc9\x6c\x2f\x8a\x0f\x4f\xc1\x63\x83\x42\x45\x9b\x2e\x6a\ +\x49\x95\x2c\xb3\xee\x21\x85\x82\x46\x80\xfb\xd0\x89\x65\xdb\x1c\ +\x1d\x92\xd7\x49\x3a\xb2\x4e\x4b\xc3\x20\xa5\xc0\x3d\x3a\x5d\xf2\ +\x98\xd6\xc2\x73\x64\xe6\x1c\x03\xb2\x4e\x67\x00\xd6\xae\x04\x3e\ +\xcf\xd8\xc8\xaa\x31\x81\xcd\xb4\xd1\xf9\x3c\x96\x0f\x96\x31\x5d\ +\x4e\x72\x93\xcd\xe9\x65\xc9\x5f\x2c\x96\x5d\x53\x05\x62\x10\x6f\ +\xfc\x23\xf9\x91\x22\x20\x06\x0d\x81\x63\x04\x6e\x02\x29\x1f\x8f\ +\xdb\xc2\x4d\xa5\x01\x64\x6b\x37\x03\xfd\x80\x6f\xf5\x53\x3f\x95\ +\xe6\x3e\x44\x1c\x51\x53\x4c\xc8\x9a\xca\xe4\xc8\x6c\x4f\x81\xd7\ +\x3d\xf2\x1f\x4f\xae\x53\xe5\x3b\x1d\xe7\x13\x6b\x74\x43\xe2\xef\ +\xa9\xff\x5e\xef\x2f\xe3\xa7\xff\xdd\x3f\x1f\x9f\x79\xe5\x25\xf3\ +\xd9\xef\xc3\x8e\xeb\xd0\x30\x70\xf4\xd3\x02\xcf\x73\xe9\x53\xe8\ +\xe6\x27\x0e\xd4\x41\x76\x85\xe7\xd4\x07\xfd\xe2\x10\xf3\xc9\x34\ +\xde\x7a\xef\xbd\x78\xe3\xdd\x5f\x8c\x7b\x0f\xf9\x25\x3d\x1b\x43\ +\x99\x28\xf7\x05\xf2\xda\xe4\xae\x5b\x1f\x22\x98\x83\x9f\x5c\xa3\ +\x8e\x36\x1b\x8a\xb1\x40\x63\x57\x7b\xcd\xa8\x6d\x54\x5a\xcb\xf3\ +\xfb\x6d\xc1\x9e\x0c\xc6\x42\xa7\xe9\x12\x15\xd1\xa1\xa1\x35\x62\ +\xc4\x95\xce\x37\xcc\x37\x72\x67\x12\x2f\xde\x3f\xd7\xf9\xa7\x7e\ +\xaf\xf3\x66\x76\xa6\xb2\x6a\xbc\x7e\xfb\x5d\xcd\xa9\xe2\x46\xe7\ +\x52\x33\xd4\xa5\x1c\x40\x9d\x55\x98\xb3\x34\x61\xaf\x32\x72\x9e\ +\xf0\x1b\x1c\xe6\x11\xb7\xab\xb1\xc3\x93\xeb\x71\x3c\xba\x8a\x78\ +\x72\xa3\x20\xfa\xc9\x75\xc4\xa3\xa7\x11\x57\x37\x23\xf3\x6e\x57\ +\x87\xb8\xdd\x1c\x62\xc5\x35\x42\xf9\x62\x9b\x27\x8f\x9d\xef\x70\ +\x0c\x25\x3f\x47\xfc\x3d\x86\x23\x86\x14\x1d\xd7\x81\x04\x03\x59\ +\xda\x1e\x42\xc6\x7c\xec\x04\xc3\xda\x23\x45\x8a\xba\xba\x76\x9d\ +\xf4\x23\x0d\xb4\x7f\xdc\xe1\x88\xb0\xea\xf8\xc5\xe5\x3c\x3e\xf3\ +\xf2\x3e\x96\xe7\x2a\xc7\x5e\xe3\xaa\xae\x51\x5c\xe3\x78\xad\x1e\ +\x4f\xeb\xe9\xb2\xe8\x40\x7d\x79\x43\x4d\x49\xdd\x0b\x69\x5b\x2e\ +\x56\xcd\x78\xc3\x82\xee\x1a\x58\xde\xb5\x9a\xb2\x52\xd3\x23\xea\ +\x71\xb0\x68\xd2\x28\x64\x73\xc2\x6d\x7e\xeb\xd8\x0d\xac\xf0\x84\ +\x4b\xd7\x90\x59\x58\x6a\x2c\xbe\x83\xd2\x78\x13\xcc\xb4\x25\x29\ +\x7f\xe6\x23\x13\xd3\x99\xca\xcd\xeb\x3e\xb9\x61\xaf\xb6\x55\xc8\ +\x32\xa4\x7c\xb8\x99\x96\x65\x01\x7a\x5c\x5a\xc5\x69\x47\x2a\x07\ +\x6d\x7d\xf0\x45\x71\x4c\xe6\xad\xfc\x96\x2a\x75\x01\x67\xa1\x78\ +\xab\xe1\xfc\x0e\x75\x64\x8f\x39\xcd\x81\xf6\x61\xe3\x2b\x2b\xbf\ +\xaf\xeb\xa4\x1d\x6f\x98\x1f\xb1\x40\x5b\xa1\xe6\x2c\xd6\x93\x1d\ +\xe1\xfd\x48\x73\x9c\xa4\xaa\xcc\x03\x3b\xed\x03\xad\xa0\x1c\xb3\ +\x1c\xa2\x9d\xba\x74\x3c\x1f\xe2\x6b\xdf\xc4\x51\x1c\xcf\xcc\x56\ +\x00\x7b\xa3\xcd\xf1\xcc\xcd\x7c\x29\xd1\xc7\x78\xfa\xf3\x4a\x6b\ +\xa3\xc7\xb7\xfb\xb8\xd6\xfc\x9d\x4d\x6a\xfe\x23\x8d\x29\xda\xb5\ +\xe6\x63\x8b\xe9\x24\xce\x16\x2a\x87\xd2\x8d\x37\x93\x58\x2c\x37\ +\xb1\xd6\xf9\x88\xee\x76\x3b\xd1\xe5\x54\xf5\x81\x41\xad\xc2\x38\ +\xba\x2b\x71\xac\x7e\xd1\x11\x9d\xb0\x64\xf8\x53\xac\xa4\xda\xb1\ +\xc0\x82\x94\x36\xf0\x79\x55\x4a\x46\x03\xf1\xb1\xe6\xf3\xc1\x69\ +\xba\xf3\xbc\xc6\x0b\x85\xaa\x42\x47\x4c\xeb\x24\xd8\x49\x8f\x4d\ +\xfe\x95\xd6\x35\x3c\x05\x7b\xb5\x9a\x68\x0c\x1a\xc7\x53\x95\x7d\ +\xa5\x41\x8b\xa9\xbe\xcb\xad\x04\x7d\x79\x65\xb3\xb0\xa1\xd0\xb3\ +\xe0\xdc\x0c\xf4\x3b\xd4\xa6\x93\x59\x3c\xb8\x37\x8d\x8b\xfb\x3b\ +\x3f\xf9\xb7\x5a\x6b\x3e\xec\x1f\x87\x36\x3f\xd3\xd8\xf0\x08\xf4\ +\xd4\xb3\x60\x5f\x18\x83\x14\xfc\x74\x1a\x6b\x26\xe6\x71\x9e\x0b\ +\xd6\xa8\x50\x06\xdc\x84\x05\xad\xcf\xf1\x41\x90\xfd\x2a\xfb\x8c\ +\x79\x77\xa0\x4f\x2b\x63\xa6\x39\x1c\xeb\x35\x3f\xcd\xa5\xaf\x3a\ +\x46\x5a\xae\x05\xbb\xb8\x7d\x3a\x8d\x97\xa6\x3f\x1d\x7f\xe8\xf7\ +\xfc\x89\xd8\x8f\xa7\x4c\xf5\x90\x5a\x27\x53\x97\x85\x66\xe8\x04\ +\x3f\x74\x70\x6a\xfa\x13\x9c\xe0\xe3\x83\xd3\x86\xda\x09\x4e\x70\ +\x82\x4f\x16\x3e\xea\x2a\x7e\x97\xff\x31\x5e\xed\xbf\xdb\x2c\x9f\ +\x0f\x35\x09\xb5\xb2\x0e\x9a\x48\x1f\x66\x93\x78\xf4\x9b\x6f\xc4\ +\x3b\xff\xdb\x5f\x8b\x87\x3c\x65\xc4\x2c\x5a\x93\x6a\x66\xc9\xde\ +\x88\x62\xa2\x5c\x8b\xb5\x4c\x9f\x39\x35\x13\xc3\xc9\x3c\x49\xf3\ +\x97\x6e\xa2\x09\x9a\xa0\x63\x4b\x1c\x6b\x1c\x7c\xf3\x11\x19\x07\ +\xbe\xf0\x2d\xea\xa0\xcf\xa1\x41\xc6\xec\xb9\x0e\xc4\x4c\x17\x0c\ +\x17\x68\xd8\x26\xce\x7d\xab\x0e\x4a\xd9\xd3\x74\x7e\x66\xc8\x6a\ +\x47\xdf\xf1\x02\x07\xb5\xf2\x63\x95\x74\xab\x85\xca\x46\x1a\xdc\ +\xc0\x97\x0a\x7e\xb1\x04\x64\x91\x31\x61\x91\x25\xa6\x37\x07\x04\ +\xb9\xa0\x30\xd9\x41\x96\x83\x63\x62\x02\x45\x44\xd1\x8b\x12\x05\ +\x50\x07\x8e\xa7\x11\xd7\x47\x17\xeb\xdc\x4d\x70\xde\x83\xd2\x10\ +\x2d\x12\x18\xda\xcc\xbc\x13\x86\x54\xe5\xa2\x7c\xf0\x1b\xc9\x50\ +\x33\xa1\xf9\x88\x32\x7a\xd0\x44\x9d\x73\xf1\x1d\x91\x22\xff\x8f\ +\xe4\x15\x8d\x16\xd3\x93\x8b\x51\x4c\xce\x27\x31\x3e\x93\x0c\x9e\ +\xd2\xf2\x6b\xce\x83\x16\xe0\x3c\x91\xb6\xad\xd7\x3c\x8e\xd6\x92\ +\xb1\x71\xa6\xc5\x27\xfd\x29\x57\xf5\x59\xf5\x60\xb7\x61\x3a\x2a\ +\x24\xc2\xe5\x6e\x8c\xbe\xbe\x41\x7d\x4d\xa5\x6b\x0d\x5a\xa9\xf2\ +\x46\xa3\x82\xfb\x9a\x78\xc3\x00\x98\x2f\x1b\xe0\xe4\xe4\x0d\x13\ +\x32\xa9\x8c\x9c\x87\xe3\xfa\x22\xb4\xa3\x8d\xc7\x8d\x0a\x9c\xcf\ +\x1b\x17\xc4\xbb\x0d\x23\x9f\x33\xe5\xaf\x83\x0e\xe8\x21\xe3\x86\ +\x3d\x60\x35\xd2\x29\x1f\xe1\xd4\x57\xfa\xc2\x7c\x2a\x71\x06\x6c\ +\x0c\x81\xa8\x1c\x87\x8d\xff\xf6\x7d\x88\x7d\x4c\x7b\x99\x9c\x0c\ +\xc5\xa7\x4e\xbc\xa1\xe6\x68\x42\xd9\xee\xca\x0f\x18\xe9\xe0\x73\ +\x1f\x4c\x7a\x30\x02\x05\x32\x28\xff\x9d\x10\xbe\x8b\x06\x83\x9b\ +\x44\xb0\x92\x66\xb3\xcb\x4f\xb8\x51\x4e\x36\xd0\x8c\x55\x1f\xd0\ +\x3a\x0f\x13\xe7\x79\x37\xf6\x06\x99\xce\xbf\xdd\x36\x37\x63\xb9\ +\x53\xe8\x8d\x33\xc5\xd9\x60\x83\x5e\x8b\x2f\xcc\xe6\x37\x9b\x6b\ +\xfc\x09\xbc\xff\xf7\xca\x36\xb0\xa7\x40\x1e\xd4\xb9\xcf\xf3\xca\ +\xcf\xee\xa0\xa7\x38\x3c\xfc\xe4\xa9\xb4\xa9\xec\x8c\x64\x87\xd7\ +\x11\x0a\x46\x3c\xb1\xa6\x40\x5f\xf1\xab\x1f\xe9\x87\xfb\x3c\xff\ +\xb2\x4c\x59\xbb\x59\xf1\xad\x7f\xc1\xe0\x06\x77\x13\xf4\xa8\x41\ +\xaa\xc1\xbc\x13\x32\x91\xa1\xa7\x1a\xad\xa3\xcf\xd7\x96\x6f\xf6\ +\xdb\xa2\x74\x4c\xe8\x68\x21\x9b\xd3\xa1\x37\x3b\x90\x81\x90\xf1\ +\x51\x27\xf0\x46\x90\x8a\xc6\x5e\x54\xf2\x4b\x71\x00\xd8\xf1\xb9\ +\xf2\x1c\x68\xe7\x16\xd8\xff\xbb\xc1\xf9\xcf\x66\xda\xd9\x2c\xe6\ +\xf7\x17\x31\x3d\x9b\x7a\x33\x8d\x0e\xc7\xff\x8d\xb8\x5f\xb8\x2c\ +\x59\xa2\x22\xfb\x1c\x21\xb0\x79\xc7\x07\x00\x8e\xd5\x3b\xb1\x0e\ +\xce\x5f\x24\x1d\xda\xf9\xa8\x6f\x0b\xdf\x35\xe1\x68\xe5\xd5\x01\ +\x71\xda\x93\x40\xf7\x56\xbf\xe0\x89\x47\xf7\x1d\xf3\x53\xad\xc3\ +\x0d\x4a\x86\x3d\xea\x8f\x8d\x0d\xdf\x8c\x92\x68\x32\x65\xc3\x7a\ +\x92\x4d\x46\x90\xdd\xdf\x5c\xed\xe2\xfc\xc7\x7f\x26\xbe\xf8\x4f\ +\xff\xb3\xb1\x9c\xf0\xa4\x05\xed\x97\x1f\xeb\x10\x80\x21\xfd\xfd\ +\x80\xef\x26\xef\xef\xa7\x7f\x9f\x26\x18\xd6\x83\x69\x3a\x09\x44\ +\xb6\x2b\x9b\xf5\x2f\xdf\xff\x5c\xfc\x95\x5f\xf8\x2f\xe2\xfc\x92\ +\x27\x0a\x18\x47\xd1\x93\x8e\xcf\x17\x10\x27\x9d\x58\x8c\x3b\xed\ +\x3f\xc3\xd0\x70\xe7\x05\xdc\x43\x60\x14\xe6\xe0\xa8\x25\xf4\xf3\ +\xdc\xc8\xed\x79\x56\x02\x25\xf5\x1c\xe8\x85\x39\xa4\x57\x5f\x6f\ +\x60\xb1\x0e\x83\xc4\x29\x6d\xd6\x7d\x55\x2c\x9c\xe3\xd0\xfe\xb0\ +\x89\x99\xfa\xf5\xfd\x8b\x45\x9e\xe7\xfb\x69\xdc\xbb\x37\x8d\x77\ +\xde\x5b\xc7\xe3\xa7\x57\xd6\xe3\xcb\xfc\xcf\xe7\xc5\x00\x6c\x21\ +\xc5\x02\x68\x74\xb0\x9d\x8a\xb8\xc6\xcd\xe3\xb5\xe6\x0c\x2b\xcd\ +\x1f\x6e\x56\xa3\xb8\x15\xe6\x75\x72\xeb\xcd\x58\x81\x27\x44\x90\ +\x6b\x9e\xa1\x31\x9e\x0d\x00\x36\x10\xba\xcd\x33\xec\xd9\xba\xe2\ +\x66\x60\x55\xa8\x30\xf1\x46\x1a\x2a\x92\xfe\x00\x30\x14\x1a\x43\ +\x09\xe1\xe0\x97\x31\x2c\xf8\x03\xe8\x6c\x0b\x3c\xe6\x54\xbc\xd7\ +\xcf\x9a\xeb\xfc\xc1\x96\xb1\xb8\x8c\x0d\x0e\x8c\x2d\x87\xb8\x3f\ +\x9e\xc4\xe7\x5e\x1c\xc7\x83\x17\x6f\x35\x4d\x3d\x8f\xd1\x8c\xa7\ +\xb2\xf7\xb1\xda\x8e\xe2\x7a\x9d\xff\x0d\xb7\x5a\x65\x1d\xf0\x14\ +\x91\x37\xd6\xf6\xdc\x80\x26\x17\xcd\xb3\x5c\xe1\xe4\xe5\xce\xa7\ +\x3c\xa0\xb3\x46\x7c\xc8\x8c\xd3\x87\x62\x01\xcc\x17\x48\xef\x82\ +\x5a\x8e\x3d\xf1\x9a\x9f\x0a\xd6\x35\xd6\x07\x15\xd3\xee\x54\xe6\ +\x59\x5c\x14\xf2\x04\xec\x28\x5e\x76\x3a\x0d\xec\x2b\xee\x1b\xf3\ +\x8d\xd7\x3c\xd2\x77\xcc\x13\xbf\xaa\x0b\xb8\xfe\x2f\x2f\xda\x38\ +\xa5\x70\x14\x94\x9e\x72\xd9\xcf\xe1\xa7\xf2\xe3\x63\x73\x55\x0f\ +\x02\x78\xce\xa2\x34\x2a\x62\x3e\xa5\x6f\xa2\x9e\x8b\x8e\x28\xa1\ +\xa2\xba\x90\xf5\xa5\x74\x9a\xbb\xec\x74\x3e\xf0\x9f\x56\x7e\x32\ +\x4b\xf5\xee\x72\x69\xe2\x9b\x3a\x19\x6f\x1f\xe6\x42\x2e\x73\xc7\ +\x53\xd9\xf8\x38\x0d\xba\x4a\xc7\xc7\x72\xe2\xf8\x6f\xaa\xf2\xc5\ +\x84\x35\x2d\xf3\x06\x0e\xf2\x76\x0d\xc3\x7e\xd3\x43\x52\x71\xa6\ +\x45\x22\x8d\x53\x26\xbe\x08\x6c\xc9\x6d\x6f\x96\xdd\x6a\xce\xfe\ +\x74\x1d\x71\xa5\x79\xfc\xd5\xed\x21\x6e\x74\x8e\xd1\xc7\x98\x6f\ +\xf9\x3f\x59\xd5\x07\x57\xd2\xd9\xed\x77\x71\xa6\x35\x23\x4b\x29\ +\xea\x78\xb6\x9f\xc4\xf9\x82\x27\xd8\x78\x52\xad\xfa\xa2\x6c\x7a\ +\x0e\x8d\x82\xbf\x59\xab\x0d\x24\x19\x00\x31\xc9\x85\xe8\x9e\x78\ +\x9c\x40\x9a\x41\x3a\x93\x83\xf8\xc0\x4a\xc7\x1d\xaa\x37\xf1\xf3\ +\x93\x0c\xc9\x84\x66\x5f\x4e\x40\x7a\x5c\xc6\x7f\x29\x32\x8d\xa4\ +\xaf\xb9\xae\x74\xbe\xad\x54\x27\x1b\x36\x10\xc5\x60\x79\xe9\xf2\ +\x76\x16\xf3\x7c\xf6\x0f\xb3\x44\x64\x15\x20\x83\x29\x0c\xfa\x48\ +\x90\x5c\xf5\xca\xff\x70\x9e\x9f\xcf\xe3\xe1\x8b\x7b\xcd\x35\x34\ +\xfe\x55\xbd\x53\xa8\xf2\xce\xda\xbd\xa9\x21\xf7\xf9\x60\x9f\xd0\ +\x13\xf6\x6b\x1e\x45\x74\x9b\x69\xd0\x95\x3a\xf5\x7a\x70\xbf\xca\ +\x6f\x62\x05\xcf\xc1\x45\xb8\xdc\x08\x2c\xf7\xe1\x18\x86\xf1\xbb\ +\xb2\x62\xb8\x9b\x30\x77\x77\xc6\xd8\x64\x23\xfd\x26\xde\x7f\x37\ +\xe2\x4f\xfc\x81\x7f\x2f\x3e\xff\xfa\x57\xd0\x6a\xdf\x82\x8a\xf4\ +\x8c\x13\xfc\x10\xc2\xa9\xf9\x4f\x70\x82\x8f\x0f\x4e\x1b\x6a\x27\ +\x38\xc1\x09\x3e\x1d\xf0\x3d\xba\xba\xff\x83\x9a\x65\xba\x9a\x69\ +\x07\x16\x98\xdd\x4b\xc2\x2f\xa8\xc7\x2f\x2e\xe3\x37\xfe\x5f\xff\ +\x7d\x2c\x27\x37\xfe\x0f\x18\x3f\x61\x66\x5d\x4d\x96\x35\x77\xf7\ +\xe4\x96\x49\xb3\x78\x70\x99\xf8\x6a\x9e\x6f\xc0\x36\x37\x4c\xf2\ +\x66\x90\x82\xb0\xe3\x2c\x06\xb4\x10\x86\x6f\x7b\xfa\xe6\xab\x5b\ +\x84\x7d\xe3\xb3\xd2\x38\x98\x3d\x80\x64\x64\x6e\xca\xc3\x13\x79\ +\x68\x72\x03\xa0\x9f\x49\x94\x5c\xec\x66\xf4\x18\x5a\x25\x68\xf1\ +\xc3\x26\xd9\x4e\x2b\xc7\xcd\x78\xa3\xb2\x8c\xfd\xab\x4b\xdf\xbc\ +\xd7\x92\x88\xc5\x1f\x7f\x24\x8d\x3e\xea\xbe\xd7\x2e\x7d\x3e\xfd\ +\xc6\xe2\xd0\x93\xfc\xa4\x76\x0f\x8e\x51\xb6\x92\x76\x2a\x8e\x24\ +\xee\xea\xcc\xc6\xcc\xd0\xb1\xf1\xc0\x88\x92\x93\xcb\x7c\x05\xa7\ +\x49\x28\x8e\x43\x3b\xf6\x90\x4b\xb7\xa4\x7a\x7f\x81\xa6\xd9\xd2\ +\x0e\xf5\x7c\xd4\xd7\xf7\xfa\x1c\xcf\x9c\xed\xdb\x54\x1c\xfe\xc6\ +\x63\x71\x88\xc9\xf9\x28\xa6\x97\x53\x61\xc5\x67\xaa\x3b\xff\x9f\ +\x82\xe4\x2b\xf5\x99\x5b\xd5\xef\x8d\xea\x6a\xa3\xb4\x5a\x98\x8f\ +\x76\x4a\xab\xe0\x66\x64\xc1\x24\xbd\x5c\x80\x55\x26\xf4\xad\xcc\ +\x5c\x40\x3f\x13\x93\x78\xa1\x0e\x5c\xf7\x04\xd9\x93\x20\x65\x5d\ +\x8d\x99\xca\x7e\x45\x44\x38\x77\x0b\xbc\x10\xb5\xae\x0e\x74\xc1\ +\xac\x53\x73\x72\xb1\x4d\xe0\x20\xfb\xae\xb5\x16\x2f\x5e\x92\x3a\ +\xe0\x33\x65\xac\xe0\x0f\x18\xff\x1d\x50\xeb\xe5\xdc\xcb\x32\x9f\ +\xd5\xb7\x58\xfc\x8f\x5f\xd3\xa5\x02\x44\xa1\x60\x19\x60\x84\x5b\ +\x3d\x2b\xa1\x22\x16\x95\x3e\x7e\x67\x09\x04\xe2\xe1\x77\xca\x39\ +\x98\xeb\x48\xf3\x87\x72\xb3\x01\x90\x15\x27\x9e\xbf\x99\xc6\x9b\ +\x5e\xb6\x9b\xfa\xd8\xca\x7c\x52\xcf\xba\x85\x93\x70\x4e\x59\x17\ +\x4d\x0f\x68\x34\xa1\xda\xd9\x77\x20\x4c\xef\xbd\x09\xd6\x6f\xa8\ +\x25\x2f\xef\x4c\xa8\xff\x80\xc5\xf7\x06\x19\x77\x4d\x4d\x6f\xfd\ +\xda\x47\xe2\xf4\xa5\xb6\x99\xc6\xd3\x44\x7e\xc2\x8d\xc7\x18\x7c\ +\x23\x95\xb8\xe4\x2d\x28\x7f\x59\x17\x1f\x5f\x28\x9f\xf4\xf4\x25\ +\x0f\xd2\xc1\xf7\x26\x0f\x9b\x6a\x85\x7d\x33\xd3\xff\x07\x28\xfb\ +\x6a\xb8\xf1\x3e\xff\x7f\xe7\xb0\x1b\x2b\xd0\x97\x64\xa8\xca\x9d\ +\x38\x49\xf7\xb5\xac\x31\x7f\x60\x76\x6d\x84\xc8\x00\x75\x37\x14\ +\x64\x67\x4d\xba\xe0\x38\xd6\xa0\xfa\x6c\x09\x33\x96\x11\x5a\x2c\ +\xe9\x96\x52\xb1\x74\xcc\xf8\xe8\xa3\x78\x3e\x4d\x9c\xb8\xc9\x89\ +\x1b\x39\x35\xa1\x2b\x5c\xc7\x6b\x60\x9a\x74\x9c\x57\xdc\x88\xe1\ +\x3f\xd3\x66\xe2\x9e\x4d\x63\x76\x6f\x1e\xd3\xb3\x59\x8c\xf9\x2f\ +\xc5\xb2\x69\x0f\xb3\x4a\x0c\xd0\x0d\x2c\x16\xe4\x8d\xf0\x81\x12\ +\xd0\x84\x02\xbb\x32\x94\x29\x6f\x33\xd9\x4c\xc3\x07\x07\x29\x74\ +\x3e\xbb\x54\x49\x93\xae\x0b\x3a\xf0\x75\x50\x3f\x70\x9f\x50\x3f\ +\xa0\x5f\xa9\x8f\xd4\xd0\x9f\x0a\xb6\xd0\xf4\xfb\x76\xe5\xfa\xc6\ +\xe6\x99\x7f\xd5\x2d\x3f\xf8\x11\x0a\xaf\x7a\xf4\xc6\x22\x7d\x4e\ +\xf1\x0f\x64\xf3\x8d\x47\xfb\xf8\xca\xbf\xf2\x6f\xc6\x2b\x3f\xf1\ +\x93\x31\x53\xc2\x67\x3d\x2b\xa8\x6c\xbe\x6f\x70\xc7\x9d\xe7\xc2\ +\x77\xa3\xf3\xc3\x02\xd4\x45\x6b\xb3\xea\x6f\x44\xdc\xb2\xea\x6c\ +\x97\xb3\xfb\xf1\xd7\xff\xd6\x5f\x89\x27\xdb\x77\x63\x71\x6f\xaf\ +\xfe\x91\x1b\x02\x3e\xd7\x18\x83\x01\x3a\xe5\xe0\x06\x66\x9a\x69\ +\xd8\x94\x6d\x37\xeb\xf0\xad\xc7\x87\x0d\x35\xfa\x7b\x7d\x7a\x3d\ +\x2b\x35\xea\x59\xb0\xd8\x67\x59\x8e\x8d\x83\x4e\x67\xfd\x96\xb9\ +\x9d\x4d\x32\xa1\xd9\xef\x81\x38\x37\xe1\xd7\xab\x88\x8b\xf9\x3c\ +\x16\x3a\xf7\x19\x07\xf8\xcf\x2b\x5d\xe8\xe2\xfd\xb7\x0e\xb1\x1e\ +\x5d\xfb\x34\xe2\xb4\xb2\x8d\x81\xf9\xe3\x0c\xd2\xa7\x06\x75\x9a\ +\xe9\xbc\x64\x93\xee\xe0\xff\x4f\x63\x73\xcd\xaf\x3a\x64\xec\x56\ +\xd8\x31\xa6\xfb\x1c\x4d\xe8\xac\x69\x1c\xf1\x5c\x82\xfa\x55\x86\ +\x8c\xc9\xc3\x9c\x0c\x77\x18\xb4\x41\xdb\x80\xea\xc3\x10\xd2\x06\ +\xb9\xf5\xb8\xcf\x7b\xc8\x6d\xb1\x06\x96\xe8\x90\xfa\xbd\xdc\xae\ +\xcb\x47\x36\xa8\x5a\xbd\xd0\xa2\xfc\x77\xdc\x0b\x1a\x4b\x5e\x7f\ +\xe5\x10\x2f\x3e\xdc\xea\xda\xb5\x54\x7b\xef\x54\xde\x75\x5c\x5d\ +\x4f\xe3\xb1\xc2\x35\x9b\x69\x9a\xc7\xae\x55\x2f\x6b\x5d\x06\x79\ +\x72\x88\x27\x66\x78\x15\xdd\xb6\x7b\x42\x86\xfa\x96\x61\xbb\xa9\ +\x03\x4e\x98\xce\xa8\x61\xc0\xa2\xba\xb2\xae\xca\x19\x62\x34\x1c\ +\x7c\x3b\x8b\xaf\x8e\x22\x29\xbe\x02\xea\x22\xe0\x03\x96\xbb\xee\ +\x9b\x50\xe0\x0e\x90\x3a\x79\xe4\xea\x5c\x34\x69\x9d\x3e\x79\x4d\ +\x83\xf4\x78\xd3\x6f\xa8\x31\xbf\x94\x8e\x74\x73\x53\x4f\x1f\x57\ +\x5c\xea\x8b\x95\x69\x9a\xac\xfb\xa0\xa1\x60\x7b\xc5\x69\x45\xb4\ +\x24\x21\xf5\xb2\x8c\x8e\x17\xe1\xa3\x0e\x5d\x0c\xfb\x9e\xd8\x61\ +\x46\xb4\x2b\x89\x69\xcc\xd6\x6d\x94\xaf\x7d\x4c\x3f\xbd\x91\x46\ +\x70\x3c\x2b\xb3\xfb\x94\x9f\xba\xfa\x14\xa7\xe9\x36\x3a\x29\x19\ +\x4c\xce\xb0\x5c\xa6\x95\x52\xd8\x4f\xaf\x11\xe3\xbc\x70\x3c\xe5\ +\x9c\xde\x6d\xc3\x2d\x79\xf2\x11\x0f\xa0\x39\x77\xc4\xf7\x94\x4b\ +\x81\x4d\xb4\xb5\xa6\x5c\x7e\xb5\xa3\xe6\xef\xd7\x6b\x02\xfd\x4a\ +\xe7\x9e\xd6\x47\x07\x02\xa5\xb5\x4d\x05\xd7\x1f\x9b\xdc\x6c\xae\ +\x6d\x62\xa1\x36\x5a\xcc\xf9\x31\xd5\x38\xe6\x1a\xde\xce\x96\xbb\ +\xb8\xf5\x53\x6d\x4a\xa3\x6b\x24\x79\xb8\xc2\x7c\x94\xa5\xd6\xe1\ +\x0d\xa2\x53\xd4\xb7\x0b\x2c\x78\x6e\x83\x3b\xba\x1d\x6a\xfc\x96\ +\xf8\x3b\xc0\xd0\xcc\x20\xc9\xb3\xa9\x51\x6c\xca\xc2\xe5\xab\x5d\ +\x51\xe0\x09\xb5\x1c\x83\xb2\x3e\xe9\xcb\xa9\x53\xe7\x1b\x4a\xee\ +\x6b\x66\xb9\xee\x0c\x9e\x3f\x02\x83\xb1\xb4\x23\xee\x42\xab\x23\ +\xfe\x87\x73\x1e\x2f\xdc\x1f\xc5\xf2\x42\xfd\x6b\x33\x8d\x2d\xaf\ +\xfd\x10\x3f\xe7\x4b\x09\x03\x8b\x47\xf4\x73\x41\x62\x34\xb0\x4f\ +\xf0\xda\x48\xe7\x97\xdf\x32\x50\xbc\x52\x33\x34\xaf\xc1\x0e\xee\ +\x4b\x83\x40\x3d\x48\x00\x9d\xd0\xf0\x1d\x90\xc1\xa1\xc6\xf1\xf8\ +\x29\xe8\x6c\x56\xbd\x16\x3d\xda\xcc\xe3\xe9\xdb\x0f\xe2\x5f\xff\ +\x17\xfe\x23\xc5\x27\x6e\x87\x72\xb1\xe0\x28\x72\x82\x1f\x52\x38\ +\xf5\x82\x13\x9c\xe0\xe3\x83\xd3\x86\xda\x09\x4e\x70\x82\x1f\x0a\ +\xf8\x4e\x93\x87\x36\x55\x6d\x7a\xc7\xfa\x15\xf3\xac\x94\xb0\x8f\ +\x8b\x07\xf7\xe2\xab\xbf\xf0\x8b\xf1\xe4\xd7\x7f\x25\xee\x9f\x2f\ +\x7d\x8f\x52\x53\xed\x92\x33\x69\xd6\x02\x02\xab\x35\xc9\x35\x30\ +\xf9\x6e\xb8\x4d\xc2\x9d\x0e\x0c\xaf\xb0\x27\xec\x39\x59\x2f\x26\ +\x77\x0e\x52\xe6\x38\x09\x12\x35\xda\xd0\x30\x04\x0b\x32\x21\x26\ +\xdc\xfd\xff\x1a\x35\x47\x80\x52\x16\xca\x75\x70\xc5\x0b\xd0\x6f\ +\x49\x58\x28\xef\xb4\x68\x3c\x6c\xb7\xb1\xdd\x4f\x63\x3f\xe5\xbf\ +\x70\x76\xb6\xbb\x53\x46\xa3\xb1\xa6\xf3\x14\x52\x5f\x5e\x63\x24\ +\x2f\xd3\x80\xc0\xfe\xda\x88\x90\x64\xb9\xa0\x07\x84\x8b\xb4\x7e\ +\x17\x7a\x32\xd1\x50\xda\x53\x0d\x30\x7b\xcc\x43\x2b\xb9\x86\x96\ +\xbf\x21\x2d\x64\xe1\x9a\x3e\x00\x3d\x8c\x17\x90\xec\x39\x6c\x04\ +\x8d\xed\x94\x3a\x78\xd1\xa2\x8f\x73\x22\xce\xeb\x3b\x55\x4f\x2c\ +\xbc\xd8\x54\x9b\xdd\x1b\xc5\xe4\x85\x51\x4c\xef\x6d\xe3\x30\xdf\ +\xc4\x61\x37\xf3\x2f\x57\xf7\xb7\xd2\xbf\xa1\x7e\x85\xd9\x48\xd3\ +\x82\x9a\x8d\x34\xd7\x95\x8c\xb5\x05\x18\x0b\x7c\x8c\x7b\x11\xc6\ +\x0a\x9d\x4c\x40\xe6\x25\x6e\x6d\x00\x34\x9e\xa3\xb4\x09\x65\xae\ +\x46\xd5\x57\x07\xbc\xd5\x07\xac\xe0\x45\xa2\x0b\xa2\x8e\xc6\x42\ +\xb1\xba\xb2\x59\x24\x40\xcf\xe9\xf8\x42\x61\x7c\x10\x2a\x9e\xaf\ +\x0a\x54\x34\x57\x8c\xca\x1b\xe7\xbb\xc2\xf8\xbc\xf0\x46\x91\x31\ +\xfa\x2e\x9c\x64\x3a\x5b\x78\xe2\xa5\xd2\x21\x77\xbf\xb4\x1e\xe6\ +\x85\x31\xc7\x61\x00\xee\x66\xc8\xd3\x3b\x79\x91\x72\xb7\x84\x13\ +\xc0\x53\x1c\x7b\xf6\xfd\x0e\x94\x3d\xf8\x96\x11\xaf\xe0\xba\x69\ +\xa7\x74\x25\xec\xec\xb6\x20\xff\x9d\xa7\xe8\xbe\x6d\x04\x4d\x9e\ +\x91\x3e\xd8\xd7\xa2\x3b\x36\x7c\xe2\x19\x7c\xf3\x86\xd7\xd3\xb0\ +\x51\xc6\x9d\x9b\x9d\xea\x4b\x21\x37\xd5\xc4\x67\x23\xdb\xbc\xb6\ +\x59\x26\xbe\x82\x69\x6f\xa6\x09\xf3\x87\x15\x60\xea\xd4\x72\x36\ +\x41\x44\xdb\x8e\xc6\x26\xb0\xeb\x56\xd8\x79\x2a\x90\x7d\x8b\x9b\ +\x2e\x3d\xf2\x95\x1d\xd3\x2e\x80\x7f\xcf\x1f\xa3\xd9\x3e\x76\x33\ +\x9e\x58\xe3\x66\xb5\x74\xe6\xdc\x1c\x53\x3e\x6c\xb6\xef\xd5\x87\ +\xea\x49\x35\x40\xda\x69\xd3\x34\x41\x76\x44\xb4\xf6\x6c\xd5\x66\ +\xa1\x74\xf9\x40\x66\x5f\x6b\x9d\x31\x65\xd9\x21\x8b\x56\x68\xb1\ +\x52\x28\x4c\x68\x16\x44\xf7\x4a\x86\xce\x84\xa0\x69\x9b\xa5\x83\ +\xfb\x09\x6d\xdf\x61\xbc\x1f\xc6\x89\x95\x5e\xa5\xa9\x01\xc0\x00\ +\xbf\x0a\x52\xac\x3a\xea\x1c\x6b\xaf\x7a\xe4\xbf\xf9\x0e\xf3\x49\ +\xcc\xee\xcf\x63\x7a\x3e\x8b\x09\x77\xd5\xa4\x86\x8e\xfb\x34\xc9\ +\xd3\x84\x61\x40\x1e\x45\x6c\x39\xcd\x27\x0c\xe8\xf4\xb2\xa0\x39\ +\xcb\xe6\x04\xe7\x7a\x77\x8e\xc3\x47\x73\xa0\x2b\xfb\x5d\xac\xf9\ +\xe1\x3e\x21\xc2\x5d\x53\xfd\x40\xfd\x81\x73\xdc\x3c\x05\x3f\xdd\ +\xd9\xc0\x2c\x0e\x49\xbb\x6a\x74\x81\x9c\x8e\xa7\xde\xd3\xe3\x17\ +\xde\x7e\x95\x2a\x3e\x58\x87\x5f\xaa\x1f\xe2\xad\xdb\x7d\xdc\xbc\ +\xf8\xb9\xf8\x7d\x7f\xee\xdf\x8b\x8b\xc9\xcc\x0f\x3a\x4a\xc3\x26\ +\x8f\xfc\xfb\x34\xc0\x47\xb9\xd3\xf8\x9f\x32\x77\x3f\x71\x78\x5e\ +\xf9\x87\xbc\x8e\xce\x96\xa5\x5b\x6e\x6f\x17\xf1\x7f\x7c\xfd\x7f\ +\x8d\xb3\x7b\xfb\x98\x73\xed\xa4\xdf\xe4\xc9\x04\xa1\x7e\x22\x1e\ +\xa7\x89\x48\xe6\x5a\x29\xaa\x9e\xd1\xe8\x3b\x3c\x28\xba\x18\x1b\ +\xe1\x13\x5d\x93\x6d\x4f\xc1\x9f\xa6\x54\xa8\xa8\x23\x48\x4b\x25\ +\x64\x3c\x54\x5f\x75\x9f\xed\x40\x02\xe2\x95\xb8\x50\x41\xa6\x4e\ +\x9c\x94\xce\x98\xd8\x68\x1e\xb5\xba\x1d\xc5\x7c\xbe\x88\x39\x1b\ +\xea\x93\xb3\x38\xbb\x58\xc7\xe3\x47\x3c\xa5\xb6\xd3\xb9\xa0\xc9\ +\x40\xcb\x23\x9d\x2c\x18\xd0\x96\xdf\x19\x53\x4d\xd7\xd8\xed\x03\ +\x63\x75\xf2\xa1\x41\x44\x8c\x3b\x48\xcf\xe0\x25\xee\xe3\x26\x5a\ +\xe8\xe0\x2e\xe3\xd8\x5a\xc2\x80\xd7\x0c\x03\xa2\x8f\x8a\x53\x7a\ +\x66\xa9\x6d\xdb\x0f\xce\x86\xe0\xb1\xb6\xcc\xb9\x4c\x4a\x93\x9b\ +\x2e\xbc\xe2\x51\x63\x8a\xe4\x0f\x66\x93\xf8\xd2\x2b\xe3\x78\xf0\ +\x60\xad\x6b\xe2\x52\x7d\x84\x59\x29\x9b\x69\xe3\xf8\xe0\x7a\x12\ +\x4f\xd7\x33\x6f\xa0\xf1\x7f\x4e\x1a\xba\x34\x6c\xa9\xde\x34\xb8\ +\x50\xd6\xf6\x84\xda\x56\x72\x2e\x93\x6c\x48\xba\x6f\xb9\x7f\x91\ +\xd7\xa0\x3e\x8e\xea\xae\xe3\x0e\xc8\x8c\x73\x6d\x33\x95\x05\xcb\ +\x58\xa9\xc2\x83\x6d\x91\x0f\x09\x88\x89\x66\x0e\x15\x72\x70\xac\ +\x18\xbe\x88\xb0\x35\x05\x7c\xab\x8a\x41\x66\xae\x14\xf8\xd1\xcb\ +\x78\x32\xd5\x1c\x6e\x92\xd7\x62\x78\xf6\x3b\x75\x0d\xd2\xe1\x7a\ +\x4b\x2a\xe8\x26\x25\x9e\xb8\xd9\xe5\xdc\xa1\x0f\xb5\xb4\x85\x69\ +\x44\xf7\xa7\x9e\x6f\x5f\xf8\xa6\x93\x25\xd3\xd1\xec\xe4\x41\x91\ +\xaf\x8b\x2d\xc1\xce\x3f\xd4\xd1\x9c\x81\x27\xcb\x9c\x0e\xe5\xec\ +\xb3\x8d\x26\x7f\x3e\xe9\x5b\x05\xe9\x9a\x07\x76\x48\x1a\xae\x2f\ +\x50\x4e\x4d\xde\xe8\xd7\x47\xe6\x52\xcf\xa7\x71\xea\x2b\x9e\x75\ +\x03\x2f\x6d\xa5\x4d\xe4\x3c\x27\x07\x4e\xdd\xec\x37\x07\x3f\x69\ +\xc6\xa6\x2c\x9b\xb3\x37\x9a\xaf\xf3\xca\xd4\xdb\xf5\xd8\x9b\xb4\ +\x4c\xd7\x48\x93\xe9\x15\x6c\x59\x40\x75\x11\x57\x1d\x69\x14\x72\ +\x1a\x36\x3a\x97\x1a\xe3\x16\xf3\xb4\x7f\x3e\x1b\xc7\xe5\xd9\x2a\ +\x1e\x6b\x5c\xb8\x92\x6d\xaf\xd9\xc4\xcf\x32\x09\x30\x20\x18\xf4\ +\xc6\x82\xbe\xd7\x24\x28\xee\x0a\x1e\x02\x8c\x1c\x07\x1b\x74\x2a\ +\xcf\xe8\xf6\x80\xbe\xcf\x57\x11\xa6\x8b\xf7\x51\xd0\xc6\x8e\x66\ +\xb3\xe9\x82\x1d\x5c\x1e\x69\x95\x1c\xed\x8e\x2e\x9c\xa0\x08\x71\ +\xf3\xca\x66\x83\xa3\x08\x76\xc9\x55\xa0\x03\x25\xd4\x6a\x2b\xce\ +\xcf\x66\x71\xef\xc1\x56\xc2\x85\xce\x07\x5e\x29\x9a\xfd\xa3\xb7\ +\x54\xf9\x56\xf4\x4e\x0e\x1d\x98\xab\x43\x4a\xa5\xc5\xfc\x4d\x09\ +\x19\x93\x98\xbb\xe4\x7f\xa7\xf5\xa9\x5b\x1d\x0d\x81\x66\x73\xb9\ +\x2b\xd0\x37\x68\x52\xe3\x16\x80\xbb\x18\x30\x4d\x3a\xd9\xf5\xc1\ +\x5c\x41\x2a\x71\x84\xef\x7e\xda\xba\x89\xd6\x0d\x57\x1f\x1e\xe2\ +\xa7\x3e\xff\xc7\xe3\xa7\x7f\xfc\x0f\xda\x3f\xd2\x81\x32\x15\x70\ +\xd7\xcb\x13\xfc\x30\xc2\xa9\x17\x9c\xe0\x04\x1f\x1f\x9c\x36\xd4\ +\x4e\x70\x82\x13\x7c\xf2\xc0\x95\xfc\xee\xd5\xbc\xc5\x87\xf8\xae\ +\xce\x6f\x01\xbe\x93\xa9\xbb\xd9\x7b\xb2\x9a\xa4\x80\x69\xbb\xe2\ +\x3e\x88\x3b\xd2\x64\x5a\x0b\xf1\xf1\x83\x65\xbc\xf1\x17\xfe\x62\ +\x9c\xcf\x27\x31\x91\x90\x9b\x84\xcc\x7b\x01\x7e\x91\x97\x93\xe8\ +\x8c\x03\x4c\xc4\x89\x72\x1f\x13\xf0\xcd\x1d\x72\xd1\x97\x1b\x8d\ +\x3c\x8d\x66\xf3\x3c\x8d\x96\x0c\xc7\x49\xa1\xf5\x95\x79\xbe\xc1\ +\x60\x19\x5f\xd9\x4b\xb2\xa0\xa7\x20\xdb\x13\x53\x9e\x8b\xdb\x8f\ +\x94\x77\x5a\x95\x3f\x9f\x04\x94\xda\xc2\x8b\x44\xbd\x8c\x85\x04\ +\xbf\xe4\x65\x11\x91\xcf\xa3\xed\xfc\x67\xcf\xd6\x48\xd5\xcc\xa3\ +\x15\x2e\x73\xd6\x04\x5f\x72\x09\xf1\x81\x5a\xcc\x1c\x81\x76\x4c\ +\xdc\xc0\xf6\x4c\x0c\xf9\xa4\x27\xae\x00\xc2\x34\x3c\xc7\x4b\xaf\ +\xe3\x01\x2c\x74\x32\x9e\x52\xf4\x84\xb8\x39\x82\x2f\x70\x2a\xde\ +\x64\x5d\x3b\xdd\xb1\x97\xe9\xa0\x9b\x68\x58\x06\x81\x0a\x9d\x75\ +\x9b\xe6\xd0\x71\x3b\x79\x33\x6d\x1c\x33\xf5\x8d\xe9\xfd\x49\xcc\ +\x5f\x1c\xc7\xfc\x52\xab\x9e\xc5\x2a\xf6\x3c\xc1\xc3\xe6\xd9\xad\ +\x6a\xe4\x56\xe9\x9e\x6a\xa1\xa5\x38\xff\x57\x17\x6c\xa6\x0d\xfa\ +\x8d\x9f\x1e\x62\xb1\x64\x9e\x98\xfe\xb6\xdc\x4b\x49\xd0\x73\x2a\ +\x2d\x41\xe9\x40\x29\xcb\xba\x30\xad\x83\x63\xee\x4f\x49\xbb\x6c\ +\xf2\xb7\xeb\x63\xf0\xa1\xad\x47\xbf\x44\xa1\xd2\x2b\x03\xff\xe2\ +\xb9\xb0\x73\xa1\xbf\xe3\x27\x77\x1e\x9a\xac\x36\xc7\x90\x79\x51\ +\x2b\x99\xff\x2f\x4d\xfc\xf6\xff\x60\xf9\xda\x47\xe9\xb3\x69\x83\ +\xae\x03\x99\x28\x2f\x9f\x43\x49\xfb\x5c\x2a\x41\x7a\x92\x6a\x98\ +\xc3\x35\xdf\x78\x10\xc3\x6d\x51\x38\xd3\x26\x91\xee\x43\xa7\xbe\ +\x01\xda\x58\xf2\x16\x87\x60\xb5\x8b\x5f\xa2\xd9\x68\x44\xd0\xe9\ +\x61\x02\xc3\x0e\xe5\x3b\x98\x34\xd2\x63\x13\xca\x32\xd2\xe0\x3f\ +\x76\x04\x59\x96\x5e\x66\xdc\xd2\x9a\x55\x72\xe9\x3b\x8d\xef\xe0\ +\x64\x9d\x19\xf3\xe4\x19\x77\x6c\xbc\xd1\xd6\x07\x3f\x75\x06\x8d\ +\x4e\x6d\xa6\x71\x77\x27\xf5\xc1\xa4\x95\x5d\xe4\xf2\xc1\x4f\x2c\ +\xc0\xab\xb8\xb3\xb7\x6f\xe4\x93\x3e\xa4\x9e\x7c\xc2\x17\xe7\x2d\ +\x1d\xe1\xee\x15\x7f\x7c\x66\xfb\x98\xcc\xc1\xbc\xf2\x51\xbd\x84\ +\xa7\x30\xa7\xf2\x87\x8d\xf6\x0d\xe3\x82\x64\x87\x89\x98\xae\x50\ +\x55\x00\x71\xa7\x14\x16\x0b\x80\x30\x9d\xd8\x75\xac\x63\xc3\x77\ +\x39\xa8\xb6\x7e\x98\x0d\x75\x2c\x6f\xf1\x06\xf0\xeb\x6c\xcf\x6f\ +\xa2\x84\x63\xd5\x0e\x60\x67\x38\x56\xe8\xfb\x7f\x61\x21\xeb\x81\ +\x55\xb6\x21\x36\x08\x53\xf4\xf4\x59\x07\xce\x25\x05\x36\xd2\x46\ +\x84\xa5\xc6\x85\x8b\x79\xcc\x2e\x17\x31\x5d\x28\x9e\xbf\xc8\xc8\ +\x40\x22\x10\xe9\x89\x0b\x0a\x3d\x03\xc9\xd7\x11\xa2\x53\xaa\x32\ +\x1b\x0a\xe3\x04\x7d\xd9\x7e\x68\x7c\x64\x7c\x4a\xa7\x7b\x9f\x07\ +\x40\x3f\x4f\x3f\x74\xe0\x5b\xf1\x7c\xa2\x91\x3e\x21\x4c\xdf\x69\ +\x82\x06\x47\x24\x1f\x88\x83\x9f\x46\xf3\x2b\x1f\x9d\xdf\x38\x26\ +\xba\x76\x70\x6e\xa1\xb1\x13\xde\x6f\xf6\xf1\xab\xd7\x87\xf8\xd1\ +\x3f\xf3\x67\xe3\x73\xbf\xef\x0f\xc6\xe4\xc0\x46\x2d\xde\xe7\xe7\ +\x07\x02\x9a\x9b\x3f\x20\xee\x7e\xff\x40\xbd\x82\xc6\xa5\x73\xd0\ +\x1f\x60\xa9\x0f\x7c\xe6\x85\x2f\xc5\xcf\xfd\xcd\xff\x5a\xd7\xcc\ +\x55\xcc\xce\xf6\xba\x8a\x77\x33\xa5\xec\x0b\x07\xae\x43\x24\x01\ +\x43\xf8\xdb\xc9\x8d\x8d\x06\x3d\xc6\x3a\x19\xa7\xbf\xf9\x29\x35\ +\xf3\x90\x35\xbd\xc6\x48\x18\x90\x09\xa9\xac\xfc\xb3\xcf\xab\xf7\ +\x9b\xfd\x8c\x66\x45\x87\xdc\xcc\x1b\x4e\xcf\x55\x6f\x8f\xd5\x76\ +\x1d\xd7\xd7\xa3\x58\x2e\x26\x71\x76\x2e\x9f\x64\x7b\x34\x7f\x12\ +\xef\xbd\x37\x8a\xdb\xd5\x5a\x43\xb1\x32\x12\x64\x4e\xcd\x4f\x20\ +\xa9\xc6\xef\x00\x06\x36\x84\x92\xab\x34\xae\x94\x63\x9d\xe6\xb9\ +\x21\x2b\xad\xd3\x20\x35\xb4\x7f\xf4\xd4\x25\xeb\x88\x01\xf4\x29\ +\x6c\xb0\xec\xf4\x50\xf1\xa3\xcc\x04\xb0\xc5\xeb\xd5\x93\xf0\x35\ +\xd5\x54\x97\x52\x38\xc7\x52\xf3\x75\xd0\x95\x4c\xbc\xda\xcc\x44\ +\x5f\xd7\x26\x7e\xbc\xf5\xa2\xea\xef\x8b\x2f\x8d\xe2\xc5\x57\x78\ +\x42\x7b\xce\x54\x45\x70\x1d\x4f\x9f\xce\xe2\x9d\x47\xd3\x78\xb4\ +\x9a\xc6\xcd\x7e\xe2\xb9\x6b\x5e\x06\xdb\x26\x1a\x36\x7c\x65\x32\ +\xaf\x05\x5e\x83\x49\x3d\xe6\x5c\x8e\xff\x7b\xc4\x9e\x80\x7c\x9b\ +\x43\x92\x9b\xd5\x9c\xcd\x68\xc9\x20\x10\xe4\xd8\x87\x6a\xaa\x89\ +\xb0\x0c\x28\xfb\xa6\x12\xdc\x72\xe4\xeb\x8f\xc8\x8c\x66\xb0\x9c\ +\xa0\xa3\x8d\xe5\xb8\xe9\x79\x15\x72\x15\xc4\xe9\x48\x2f\x9a\xff\ +\x3b\x8e\x31\xff\xc7\x05\x5f\x33\x75\x8c\x64\x8a\x0e\xc3\xef\x39\ +\xc9\xc5\x87\xc4\x7c\x52\x62\xbf\x54\xe9\xcf\x7e\x0a\xb0\xdd\x7c\ +\x4d\x86\x43\x6a\x14\x86\xb4\x8d\x72\x1f\xae\x12\x6c\x37\x9a\x0b\ +\xc7\x46\x65\x90\x2f\x36\xd0\x7c\x4a\x79\x51\x49\x0f\x82\xf5\x95\ +\xb2\x6d\x80\xf9\x47\x40\xbc\x2e\x52\xed\x47\xbd\x1d\x6f\xb2\x95\ +\x0e\x29\xd4\xd8\x7d\x7a\xe8\xb4\x21\x22\xd3\xc0\x63\x7e\x23\x5f\ +\xb3\x8f\x08\x33\xbd\x92\xc0\xd3\xaa\xcd\x28\x5f\x9b\xaa\x8e\x44\ +\xa0\xaf\xf0\x0a\x43\xde\x32\xe1\x20\x53\xce\x43\x76\x12\xdc\x8b\ +\x8b\x26\x1b\xfc\x23\xbf\x49\xac\x74\x0d\xdd\xca\xf0\x52\x63\xd2\ +\xe2\x4c\xd7\x47\xf1\xee\xcd\xb7\x71\xb6\x5c\xc7\xd5\xe3\x51\xdc\ +\x68\x5e\x77\xd0\xa4\x0a\xaf\xbc\x96\x94\x1d\xe6\x17\x06\xf5\xc3\ +\xde\xea\x30\xbf\xe7\x40\x29\xa6\x4e\x4b\x35\x48\x2d\xb2\xc5\xd0\ +\x19\x48\x8e\xe0\xa3\xf8\x0d\x9e\x9f\xb6\xe7\x40\x0d\x9f\xee\x27\ +\xde\xcf\xa9\x32\x75\xc6\x39\xe1\x5a\x89\x14\x4f\x95\x44\x45\x0f\ +\x01\x96\x6b\x19\x55\xd5\xef\x72\x3e\x8d\xfb\x0f\x46\x31\xd7\x9c\ +\x8a\x76\xf6\x8f\xc8\xd4\x8e\x99\x63\x26\x68\xf9\x92\x4d\x92\x15\ +\x2f\x68\x31\x70\x93\xdb\x6f\x02\xd7\x10\xaf\x93\xf2\x1a\xd4\xd9\ +\x7a\x0e\xe4\xbc\xba\xfa\x95\x82\xa2\xd9\xdf\xcc\xb7\x8a\x80\xb6\ +\xfd\xf6\x90\xf5\x23\x4d\x65\xd5\x68\x0c\x78\xce\x2e\x5b\x7b\xf9\ +\x80\x3d\x9b\xd6\x3a\xf2\xe6\x6a\x16\x7f\xe6\x9f\xfc\xf3\xf1\xf2\ +\x83\x97\xca\x7f\xca\xd1\xea\xe0\xa3\xfd\x3d\xc1\x0f\x17\x9c\x7a\ +\xc2\x09\x4e\xf0\xf1\xc1\x69\x43\xed\x04\x27\x38\xc1\xf7\x0f\x86\ +\x57\xf4\x46\x7f\x0f\xe6\x7c\x98\x63\x1a\xfa\xdd\x98\x1d\xea\xf4\ +\x74\x52\x9e\x9c\x7a\xa5\x2b\x3c\xd9\xc7\xfd\x17\x5f\x88\x5f\xff\ +\x4b\x7f\x2d\x76\x57\xdf\x8a\x25\xaf\x7d\xd4\x8c\xd6\x2a\x2d\x78\ +\x21\x04\x91\x18\x59\x4e\x6a\x0b\x27\x69\xc3\x29\xe3\xa6\x0f\x93\ +\xf5\xc4\xbe\xf9\x89\x1a\x13\x66\x74\xf8\x85\x35\x5a\x8d\xef\xb4\ +\x3d\x36\xb4\x38\x47\xcf\xb2\x1d\x31\x86\xdf\xa2\x4d\xfd\x59\xc8\ +\x29\x7b\x67\x83\x8c\x4c\xa6\x8f\x7b\x5e\x49\x28\x0d\x16\x06\xb8\ +\x08\x8f\xcd\x02\xc3\x38\x17\x36\x5e\x13\x15\x4d\xc9\xfd\x74\x14\ +\x80\x3f\xa4\x10\x6a\xac\x84\xb4\x9d\x47\x60\x80\x6d\xa4\xc5\x01\ +\xe8\x5c\x40\x74\x6a\x03\xb0\xb4\x7c\x3d\x4e\x55\xd6\x8b\xd9\xcb\ +\x28\x0d\x31\x9c\xfe\x28\x48\x0d\xff\xc2\x54\xf9\xe2\x12\x4b\x72\ +\x78\x69\x27\x8f\xf9\xff\x47\x92\x4d\x69\xbb\x71\xcc\x97\xb3\x58\ +\xbe\x34\x8a\xd9\x2b\x6a\xd3\x17\x57\x11\xb3\x9d\xea\x6d\xe2\x57\ +\x3a\x1e\xae\x54\x87\xd7\x5a\x90\x7b\x53\x4d\xfa\x6b\x12\xca\x47\ +\xec\xcb\x96\x17\xdf\x94\x51\x07\x50\xc3\x99\x93\xa2\xc4\x2c\x00\ +\x4a\xa7\x2d\xe6\x39\x94\xac\xc5\xb3\x94\xd8\x97\xae\x6c\xd3\x26\ +\xfe\x50\x57\x32\xea\x85\x61\xdd\xa8\x84\x2c\xa6\x83\x65\xb0\x6c\ +\x57\x07\x16\x72\x60\xda\x1d\xec\x3b\x09\xe0\xe4\x73\x83\xc3\x4f\ +\x54\x71\xa3\x83\x05\x1f\x7c\xe4\x0a\xb9\x08\x64\x73\xa6\xc9\x53\ +\x27\x17\x9f\x6c\xb0\xd1\xb7\x32\x2f\x4c\xdb\xde\x80\xce\xb2\x71\ +\x00\xb2\x0d\x0c\x43\x99\x71\x92\x94\x1b\x70\x91\x8a\x0f\x3d\x30\ +\x51\x40\xdb\x2a\x52\x02\x36\x00\x29\xbb\x4e\xb5\xcc\xc3\x7c\x05\ +\xf8\xe5\x77\x87\x29\xab\x7c\x6f\x65\xe9\x74\x28\x8f\xd2\x65\x99\ +\x6d\x24\xed\x10\xaa\xcc\x2e\x6c\xb3\x6d\x3e\xbf\xda\x06\x2b\xfd\ +\x36\xef\xe6\xf8\x7f\xd2\xb6\xbc\xc2\x91\x78\x86\x51\x6d\xa2\xf1\ +\x94\x9a\x5f\xeb\x88\x8c\xcd\xb5\x55\xf2\xf3\x69\x35\x6c\x10\xc8\ +\x0b\x3f\x69\x0b\xd9\xae\xb6\xe9\x36\xfd\x0b\x73\x4e\xe3\x2a\x71\ +\xcb\x08\xb2\x99\x4f\xa9\x55\x3b\x6e\x71\x51\x75\xa5\xf1\x6f\x3c\ +\x13\x9e\x12\x24\x9f\x08\xab\xcf\x4f\xc6\xf2\x6d\xc6\x2b\x76\xd4\ +\x9f\x77\xfc\x4a\x5e\xfd\xa7\xbd\xfe\x88\x52\xfa\xa0\x00\x14\x76\ +\x9e\xad\x9e\x81\xea\x9f\xc9\x49\xae\xbb\x62\xd3\xa8\xfe\x98\xd1\ +\xc6\x2d\x1e\x18\xb2\xd0\x90\x3f\x4c\xe6\xa0\x43\xda\xed\x43\x0f\ +\x69\xd7\xa1\x04\x5d\x4e\xf2\xdb\xfe\x16\x3f\xa1\x15\x2a\xa1\x8b\ +\x59\x47\x29\xd9\x74\x54\x60\x43\x8d\xff\x4d\x1b\x5f\x4c\xfd\xbf\ +\x69\x93\x45\xbe\xf6\x2d\xcf\x3f\xa9\xb6\x3a\x69\x64\xb1\x7b\xf8\ +\x76\x31\x80\x54\xcd\x90\xea\x9c\xf4\x44\x39\x70\x77\x58\xb8\x6d\ +\xf6\x9b\x97\xdf\x04\x37\x8e\xe2\x2d\xf3\xea\x0f\xc6\x30\xdc\x1f\ +\xaa\x3f\x71\x77\xda\xfd\xa6\x74\x87\x00\xb3\x82\x72\xf2\x67\xca\ +\xeb\x1e\x75\x32\x75\xaf\x7c\xac\x5f\x78\x73\x7e\xac\x14\xde\xba\ +\xd9\xc6\xd5\xf8\x7e\xfc\x9e\xff\xf8\x3f\x8b\x97\x2e\x2e\x35\x14\ +\x4a\xd6\x7d\x06\x70\x14\xf9\x3e\xc2\x5d\x3f\x3e\x2d\x7e\x7d\x1a\ +\xa1\xd5\x4d\x57\x47\x22\xa0\x07\x75\xe6\xd1\x41\xe3\xc4\x6f\xbe\ +\xf5\xb5\x78\xef\xc9\x57\xe3\xfc\xbe\xfa\x0e\x4f\xb9\xc2\xb7\x3a\ +\x07\xcd\x39\xd8\xa4\x57\xd7\x75\x3f\xe6\x63\x1b\xd5\x47\x1a\xdd\ +\xf4\x89\x35\x81\xbe\xde\x50\x53\xdf\xc7\xaa\xd3\xdb\x46\x2f\x6f\ +\x30\x20\x05\x9d\x86\xc1\xe3\xa5\xfb\xb6\x63\xc9\xcf\x0c\x9f\x0b\ +\x99\x43\x13\x26\x26\xe9\x61\xb4\x89\xdb\xdb\x9b\xb8\x7a\xba\x93\ +\x4f\x5b\xcd\x15\x76\x31\xe3\x46\xfd\xea\x2a\x9e\x5c\x8d\x63\xc3\ +\xf8\xec\xe7\x36\xef\xda\x00\xca\x6f\x8f\x91\xe0\x44\x70\x4b\x52\ +\xe5\x86\x28\x0c\xd1\xd1\x03\x80\x9d\x99\x24\xdd\xe9\x14\xa3\x19\ +\xff\x28\xe8\xf4\x07\x40\xfd\xb4\xe4\x43\xf9\x1d\xda\xd1\x32\x4f\ +\x92\x06\xe6\xeb\x90\x2c\x1d\x5b\x9d\x73\x2d\x51\xbd\x8c\x77\xa3\ +\x98\x8f\xf7\xf1\xc2\x62\x1c\x5f\xfa\xcc\x28\x5e\x79\xed\x46\xfc\ +\x59\xce\xe0\x46\xd7\x71\x73\x3b\xf1\x66\xda\xfb\x37\x93\xb8\xda\ +\xb2\xb1\xa4\x6b\x21\x33\x36\xa5\x77\x3e\x98\xaa\xc0\x46\x88\xaf\ +\xdd\x12\xf8\xc9\x35\xf1\xb6\xe6\xa9\x6d\x35\x06\xb1\x09\x30\xe6\ +\x75\x85\x00\x83\x61\x55\x10\x66\xfa\xfe\x23\xfd\xa2\x12\xf2\x82\ +\x46\xdf\x75\xff\x2d\x80\x42\x93\x4c\xc8\x07\xda\x1f\x22\x4d\x46\ +\x8a\x1a\x80\xf9\xd0\x0b\x52\x0e\x76\xd2\x94\x41\x0f\xe4\xb9\x21\ +\xe4\xc1\xba\xdb\x50\xa3\x61\x29\xa3\x95\xed\x5e\xa6\xe0\xc8\x17\ +\x9e\xe9\x2e\x00\x45\xf3\xc5\x0f\x7f\x87\x5a\xed\x63\x8f\x9c\x37\ +\xa6\xc9\xa2\x38\xf5\x01\xfa\x54\x0d\x5a\x7d\x31\xbf\x5a\xef\x6e\ +\x84\xd5\xc7\x73\xd2\x51\xe5\x28\x2c\x1d\x7f\x44\x0f\x3f\x4e\x6d\ +\x1d\x30\x9c\xd2\x84\x26\x1d\x32\xd9\xb6\x0e\x32\xb7\xa5\x3c\xe3\ +\xba\x55\x3c\xcf\x73\xc0\xe8\x41\x71\xae\x61\x0f\x1a\x99\xdc\x61\ +\x13\x2d\x37\xd3\x34\x47\x17\xe6\xc7\x44\x6c\xa6\xad\x35\xf7\x61\ +\x33\x8d\xd7\xa9\x12\x76\xec\xe3\x4a\x87\x9a\xcf\x8d\x2f\xec\x0c\ +\x03\xc7\x06\xd8\x57\xfb\xf2\xda\x6c\x8d\x6d\xeb\x35\xaf\x87\xdc\ +\xc6\xf9\x2c\xe2\xfc\x6c\x15\x93\xdd\x2c\x1e\x68\x1c\xb8\x5c\xee\ +\xe3\x6a\xb5\xf7\x7f\xaa\xb1\xc9\x9b\xaf\x1d\xc7\x47\x46\x2e\x8f\ +\x5e\x69\x37\x2b\xf3\x3b\x42\xef\x01\x94\x12\x75\x27\x7c\x8f\xbe\ +\x13\x64\x9e\x1f\x0d\xc7\x66\x88\x75\x23\x91\xbe\x19\xea\xd4\x49\ +\x30\x0d\x3f\xb1\x65\xce\x00\x5e\x9e\x3b\x86\x5e\x50\xba\x43\xc8\ +\xbe\xd7\xec\x4e\xf4\xb9\x7f\x7f\x1a\xe7\x97\x3a\xdf\x99\x73\xd2\ +\x1f\x68\x58\xa7\x4f\xa5\xb6\x96\x01\x92\xd4\xa1\x67\x19\x3a\x76\ +\xf1\x73\x6e\x56\x73\x17\x30\x3f\xca\xa8\xf9\x53\x4b\x5a\x1e\x1e\ +\x81\xe7\xcc\x92\xf4\x7d\x53\x5a\xf4\x2b\x21\xe2\x1d\x3c\x9f\x14\ +\x10\x4b\x8e\xe7\x71\x15\xab\xd3\xd2\xf7\x1b\xe8\x77\x36\x45\xdf\ +\x56\xff\xb9\xb9\x5a\xc7\x67\xef\xfd\x4c\xfc\x13\xbf\xff\xcf\xba\ +\x3e\x9c\xa8\x39\x69\x38\x8a\x9c\xe0\x87\x18\x4e\x3d\xe1\x04\x27\ +\xf8\xf8\xe0\xb4\xa1\x76\x82\x13\x9c\xe0\xfb\x0b\xed\xaa\xfe\xcc\ +\xc4\xef\x23\xe0\xbb\xd5\x2b\x40\xd5\x93\x50\xc7\xbe\x3d\x34\x1d\ +\xf4\x81\x61\x9a\x8e\x36\xa1\x83\xbe\x93\xe9\x24\xae\xaf\x1f\xc7\ +\xb7\xfe\xea\x5f\xd3\x42\x88\xd7\x59\xe5\x86\x00\x9b\x5f\x2c\x46\ +\xbd\x98\x63\xc6\x4b\x5c\x53\xdf\x6e\xfa\xad\x78\xb3\xe3\x45\xb9\ +\xa3\xe0\x7c\x02\x8c\x9b\xf8\x4c\xda\x11\xb0\xa8\x2f\x05\x63\x3f\ +\x31\xc3\xb7\xe3\x61\x67\x08\xc9\xf0\xd1\x37\x5c\x5a\x69\x04\xae\ +\x88\x67\x12\xdc\x01\x3c\x49\x0c\x38\xf5\x20\x0d\x24\x8b\x53\x6e\ +\x34\xb4\x0d\x04\xa4\xed\x69\x38\xdc\xa5\x00\x87\x29\x74\x4b\x27\ +\x1d\x6e\x86\xe8\x93\xde\xa8\x5e\x74\x6c\x0b\x83\x04\x74\xfb\x90\ +\x29\x5b\x7a\xa0\x64\x5d\x82\x8a\x3f\xaf\x3c\xa5\x76\x57\x92\xf1\ +\xc6\x4d\x7f\x1a\xdd\xf3\x7b\x8f\xa0\x9b\xa4\x2d\x68\x9a\x1a\xc5\ +\x2c\x32\x41\x0c\x36\xd4\xc6\x3c\x79\x21\x9f\x26\x17\x93\x98\x7f\ +\x7e\x1a\xb3\xd7\x78\xcd\xe3\x26\xf6\xb3\x95\x16\x77\x5a\xe4\x69\ +\x91\x3c\x7a\x32\x89\xed\xb5\x16\xeb\xd7\xea\x15\x2b\xf1\x36\x4a\ +\xdc\xdd\x80\x91\x55\x16\xdd\xad\x04\x43\x77\xee\x82\x65\x3a\xf0\ +\x85\xe6\x40\xf0\x2a\x4b\x01\x07\xb1\xa5\xb8\x4b\xab\xb8\x17\xe4\ +\x22\xdc\xd7\xc0\x8a\xbb\x4b\x21\x14\xe1\xa7\xd2\x92\x51\x7a\xe8\ +\xa4\xb9\x5c\x04\x92\x87\x90\xda\x9e\x9b\x5b\xde\xa8\x61\xd3\x86\ +\x4c\xb8\x03\xa1\xbe\xe1\x5f\x85\x96\xcc\x72\x36\x62\x7c\x2e\xb0\ +\x39\xa3\xc5\x2e\x2b\x4a\xf8\x4d\x87\xc5\xa0\xa2\xe8\xd0\x27\xbc\ +\xe2\x74\xae\x02\xb2\x53\xbe\x2d\xeb\x1e\x10\xa4\xaa\xed\xe9\x9b\ +\x9b\x57\x5d\x4a\x41\xd9\x13\x33\x79\x44\x52\xee\x9e\x38\xd4\x2d\ +\x9a\xf4\xb4\xad\x3c\xb2\x8e\xfb\x33\x4c\x6c\x94\xaf\xde\x6c\x63\ +\xf3\xca\xfe\xb3\x81\x45\x80\xce\x3a\x69\xe5\x75\xa1\x54\x17\x59\ +\x76\xd1\x22\x0d\xb2\xe5\x32\xf1\x11\xdb\x07\xf4\x15\xbc\xe8\x56\ +\x1c\x7b\xbe\xab\xb3\xdd\x06\xff\xe0\x9e\xff\x8b\x56\xc1\x9b\x69\ +\x19\xfc\xd4\x9a\x75\x53\xe6\x8d\x4a\xb0\xf5\x44\xdb\x46\xe6\xef\ +\x76\x61\x91\x6f\xbf\x93\x67\xbe\x7d\x23\x9e\x21\x37\xda\x68\x27\ +\x17\xb1\xf8\xaa\x1f\x99\xf4\xf8\xd6\xca\xa7\x7e\x32\x9e\x1c\x62\ +\xc2\xe6\xf9\x74\x1f\xd3\xc9\x36\x46\x0b\xe9\x9c\x6d\x62\xc2\x7f\ +\x73\xed\xf9\x3f\x48\xd5\x09\x45\xda\x69\x71\x4f\x7d\xba\x4f\x89\ +\x74\xc3\xc0\x41\x48\x5d\x27\xd0\x1f\x1b\xe5\x3e\xe9\x13\x8f\x3e\ +\x98\x1f\xbe\x69\x00\xc8\x78\x8b\xa5\x4d\x2b\x24\xaf\x13\x00\x92\ +\xa1\x7b\xc4\x13\xdc\x89\x13\xcd\x50\x82\x81\x7c\xc8\xeb\xd8\x10\ +\x55\x96\x21\xb8\x7f\xe9\x68\xb1\xc6\x05\x36\x90\x82\x27\x7a\xe7\ +\xe2\x9d\x4f\x34\x26\x2c\x63\x76\xc6\x7f\x88\x61\x4c\xbc\x1a\x40\ +\x6d\xa9\x8c\x3b\x6d\x92\xc9\x37\x24\xa7\xf1\x1b\xae\xec\xda\xa1\ +\x70\xd6\xb7\x69\xb5\xd5\x81\x6b\x0b\x1b\x7b\x53\xc5\x7d\x5d\xe9\ +\xb5\x1b\xe4\xf9\x02\x45\x1f\x10\xa2\xbd\x89\x0a\xd3\x2f\x7c\xfe\ +\xd2\xa7\x7d\x8e\x0b\xbb\x1f\x97\x1d\x2b\x96\xbe\x00\x1e\x1b\xa3\ +\xde\xc8\x20\xef\xba\x09\x95\x4f\x0a\xd1\x1f\xa4\x2d\xa5\xd5\x6a\ +\x13\xbf\xb2\xda\xc6\x2b\x3f\xfd\x07\xe2\x27\xff\xd4\x3f\x27\xd7\ +\xa4\x5b\xe9\x81\xae\xde\x3f\xcd\xf0\x03\xe0\xe2\x27\x0e\xee\x00\ +\x49\x1a\xb7\x8e\x31\x84\x41\xbd\xd1\x2f\x1e\x3e\xfc\x6c\xfc\x8d\ +\xbf\xfd\xdf\xc7\xf9\xfd\x5d\x8d\xbd\x48\xd4\x03\xa4\xe7\x7e\xa0\ +\x0e\x9a\x5d\x97\xeb\x98\xb0\xfb\x77\xc9\x4c\x14\xd5\x30\x80\x9e\ +\x3e\x98\x9b\x70\x8d\x56\x3e\xc8\x38\x66\xf2\x4e\xb3\x23\x13\x35\ +\xbe\xb0\xbe\xb8\xe2\xde\xad\xe1\x2f\x29\x5f\x21\x3a\xad\x21\xc0\ +\x4b\x7e\x49\xed\x6c\x92\x80\xff\x67\x72\xb2\x8b\x9b\xf5\x2a\x9e\ +\x5e\x6d\x43\x33\x82\x98\x8c\xa6\x31\x9d\xae\x74\x8e\x46\xdc\xdc\ +\xe6\xcd\x7b\xb2\x23\xdf\xbb\xe5\x84\x97\x64\xe3\xf7\xe0\x72\x19\ +\x17\x3c\x4b\xa4\x4d\x53\x59\x07\xfd\x08\x2c\x80\x1c\x44\x7b\xb8\ +\x2b\xb0\x17\x05\x77\x13\xb4\x11\x70\x08\xc4\x8e\xb9\xe6\x0c\xcd\ +\x94\x4d\x52\xeb\xea\x54\x51\xc6\x9a\x7d\x6c\x79\x13\xe6\xfa\x10\ +\x73\x5d\x88\x5e\x3b\x9b\xc5\x57\xbe\xb0\x8d\xcf\x7c\x46\xfd\x84\ +\xcd\x79\xe9\xed\x62\x15\x57\x9a\x5f\xbd\xfd\xde\x59\x7c\x20\x7c\ +\xad\xf9\x96\xae\x6e\x69\x83\xcd\x34\x5b\x4a\x68\x74\x9b\x33\xd0\ +\xa4\xc4\x99\xa5\xf3\x23\x90\xac\x7a\x0e\x63\xb5\x8d\xb8\x64\x20\ +\x3e\x90\xf5\x45\x5a\x47\x05\xd8\xe8\x22\x06\x34\xc9\x31\xfb\x48\ +\xe6\xe1\x54\xe4\x07\xb6\x5b\x83\x34\x95\xde\xb6\x4d\xaa\xf4\xca\ +\xa0\xdf\x5c\xab\xa3\x84\xad\x5e\xc0\xfe\x60\xb3\x7c\x22\xf8\xe9\ +\x99\x29\x4f\x37\x21\x1b\xe8\xf1\x51\x06\xa9\x07\x0d\x05\x34\xec\ +\x8e\x9d\x40\xde\xd8\xf5\xa7\xd9\x3e\xfe\x68\x32\xf0\x0c\xd7\x79\ +\xb9\x00\x19\x9c\x5b\xd9\x71\x9d\x94\x9f\xfb\xdd\x56\x53\x9b\x5b\ +\x5d\x56\x34\xa9\x60\x72\x81\x8e\x03\x2d\x96\xd8\x73\x4a\xa7\xe4\ +\x03\x55\x25\x41\x46\xdc\xd7\xa6\x16\x47\x5f\xb4\x7c\x72\x1c\xff\ +\x2d\xcf\x38\x1a\xfe\x34\x1a\x1d\xbb\x76\xc8\x57\xe6\x89\xf6\xf5\ +\x4d\x59\xfa\x49\x45\xcd\x9b\x3c\xa5\x12\x8f\xbf\xa7\x65\x3a\xb5\ +\xd6\xbc\x87\x73\x92\x29\x19\xd3\x3f\xa6\x41\xe8\xe2\x65\x7a\x5a\ +\x01\xbb\xa6\x39\x26\x6d\xa0\xf0\x00\x0c\x0d\x46\xfc\x17\xf7\xed\ +\x66\x2f\xfb\xab\x38\xd7\x7a\x69\xb6\xd4\x5c\x6a\xbf\x88\x07\xe7\ +\x87\xb8\x7f\x4f\xb6\xe5\xc3\xed\x66\xa4\x30\xf3\xff\x80\x79\x83\ +\x84\xd7\x99\xaa\x6c\xba\x82\x96\x21\xcc\xaa\x4c\x26\xcb\x3e\x60\ +\xd2\x35\x0e\x31\x00\xc5\x9b\x1f\x43\x78\x0e\xeb\x79\x40\x36\xd9\ +\x83\x9e\x07\xcf\xe6\xd7\x62\x43\xae\x69\x1d\x92\xa7\xf1\xc7\x73\ +\x1f\x55\x88\x90\x5d\x6b\xb2\x54\x38\x86\x8e\xd7\x46\x2c\x61\xa5\ +\x63\x7e\x75\x71\x36\x8f\xfb\x0f\x79\xb2\xb9\x24\xb4\xb5\x2b\xa6\ +\x37\xd4\x8f\xa3\x0d\x8a\x12\x82\x72\xac\xe8\x84\x1c\x1f\x59\x13\ +\x61\x77\xac\x35\xbf\xd7\xe0\xbe\x86\x1c\x69\x15\x95\xe0\xbe\xa7\ +\x8e\x40\x5f\xa3\x43\xb8\x4f\xa8\x93\x98\x87\x4b\xe8\x14\x7e\x2e\ +\x58\xd6\x14\x12\x93\x43\xe6\x42\x9c\xbe\xaa\x71\x4a\x6d\xef\xea\ +\x13\xcd\xda\xe3\xd1\x07\xd3\xf8\x23\xbf\xe7\xdf\x88\x1f\x79\xed\ +\x4b\xca\x9b\xf9\x37\xaa\x52\x70\x42\x1d\x9a\xc9\x34\x74\x82\x1f\ +\x62\x38\x75\x81\x13\x9c\xe0\xe3\x83\xd3\x86\xda\x09\x4e\x70\x82\ +\xef\x2f\x30\xc1\x1b\x5e\xd9\x87\x13\xbe\x46\x7f\x4c\xf0\xdd\x4e\ +\x20\xd0\xfb\xb6\xba\xcc\x52\xbd\x00\xd8\xc6\x0b\x5f\x7c\x39\x7e\ +\xf9\xff\xfb\x73\x71\x78\xfa\x76\xdc\x3b\x5b\x68\x71\x56\x13\x5c\ +\x85\x5c\x64\x31\xe1\xa7\x20\x84\x66\xb5\xb7\xee\x09\x3e\x5f\xdf\ +\x24\xca\x49\xbb\xbf\xfe\x15\x5c\x0a\x3c\x75\xaf\x85\x00\x13\x79\ +\x16\x63\xc4\x1b\x0b\xfd\x23\x0c\x34\xba\xb2\x66\x22\x7f\xac\x30\ +\x88\x0d\x88\xa6\x05\x4e\xe8\xd3\xe0\x87\xa3\x2a\x18\xbf\x04\x6d\ +\x8b\xa0\x84\x5c\xe0\x70\xf4\xe2\x43\xeb\x3d\x97\xc9\x65\x10\xdf\ +\x8b\x09\x34\x88\x40\x67\x1a\xeb\x43\x1a\x97\xbc\x38\x09\x15\x77\ +\xda\x1e\xba\xd8\x11\xbb\x8f\x98\xaa\x28\x0b\xae\x56\x57\xf6\xf2\ +\xc8\x96\x2b\x53\x18\x87\x70\xac\x25\xca\xe4\x5e\x10\x19\x94\xb2\ +\x17\xa5\xba\x08\x90\x6f\x52\xab\x9c\x93\xe0\x8f\xc6\xc7\xb1\x7c\ +\x38\x8a\xc5\x97\x45\x7f\x7e\x1f\xf3\x7b\x37\xb1\x5a\x6c\xe3\xb0\ +\x9e\xc7\xfe\x46\xba\x57\xfb\xd8\x3d\xd5\x02\xfd\xa9\x16\xf2\x2b\ +\xb5\x2d\x1b\x0d\x3b\xda\xbd\x80\x7c\xcb\x8d\xca\xee\xf9\xd0\xdc\ +\x6a\x84\xfd\x26\x61\xa2\x3c\xc8\xaf\x2a\x8f\xfb\x4b\xc3\x15\xd8\ +\x50\xa3\x50\x6e\xa7\x14\xba\x1c\x96\x0b\xd3\xbc\xb9\xe9\x06\xa8\ +\xfc\xd9\x88\x5a\xb8\xb1\xd9\x22\xfb\x5a\xc0\x71\x73\xbd\xdf\x44\ +\x22\x5e\xb8\xe3\x49\xcf\x77\xa7\xd8\xec\xd9\xf9\xc9\x35\xf8\xb9\ +\x99\x53\x36\x4b\xd7\x9b\x35\xe6\x91\x5f\xdd\xf8\xf1\x81\xb8\x0f\ +\xc6\xfe\x38\x7f\x79\x96\x1d\xa9\x17\x0b\xfa\xf3\x2d\x99\x69\xaf\ +\xd1\x89\x81\xee\xc6\x40\xcf\x4a\xa0\x5a\xb0\xaf\x2f\xdd\x57\x99\ +\x29\x2f\xf9\x2f\xec\x72\xe1\x3b\x1b\x0b\xf6\x37\x9f\x16\x6b\x65\ +\xdf\x2b\xde\xea\xa2\x6d\xa6\x39\x4f\xe2\xc6\xd8\x6b\xfe\x67\x99\ +\x1d\x17\x4a\xac\x50\x75\xe4\xff\x4b\x63\xf3\x6c\xb5\xe5\x3d\x43\ +\xdc\xd1\xc9\x7c\xe1\x51\x5f\xb2\xef\x27\xd0\xf8\x99\xb4\x31\x32\ +\xf9\x20\x3d\x5e\xa1\x97\x76\xc8\x07\x9b\x69\x37\x7d\x66\x31\x9e\ +\x37\x1b\x1c\xef\xfc\x41\xb5\xfc\x71\x91\x90\xe1\x97\xbf\x03\x2c\ +\xfe\x76\xa2\xf6\x54\x1f\x92\x22\x1b\x6a\xd3\x89\xfc\x59\x88\x7f\ +\xb6\x8b\xf1\xfc\x10\xf3\xe5\x36\x46\x67\x5b\xde\x2c\xa8\x7e\xa4\ +\x3a\x18\xa9\x9e\x94\x94\x0d\xb8\xb1\xe3\xd9\xe9\xfa\xbe\xa8\x73\ +\xc1\x81\xfe\x46\x03\xe8\xe8\xcc\x2a\x9e\xa4\xf9\x49\x17\xb6\x6e\ +\xa3\x1a\xaf\x58\x4e\xdf\x40\x52\x98\x47\xbc\xef\x04\x9d\xe1\x21\ +\x32\x0c\xe9\x1e\x30\x9e\x92\x74\x5d\x3d\x8c\x1b\xf8\x84\x99\xca\ +\xcb\x53\xcc\xe7\xd3\x98\xdd\x5f\xc4\xf4\x6c\x9e\x1b\x5b\x62\xfb\ +\x14\xfd\xce\xc6\x0b\x52\xb9\x95\xb5\x53\x7d\x5e\x1a\x0a\x6c\x75\ +\x1d\xb8\xc9\xea\x1b\xad\x4a\xe9\x31\x39\x13\xe4\x51\x58\x6d\xda\ +\x68\x3b\xef\xa0\x03\x5f\x63\xfa\x84\xfa\x0d\xfd\x89\xbe\x44\x7f\ +\x81\xa7\x4f\x6f\x49\x31\xb1\xcd\x77\x9a\xe4\xf2\xc3\x93\x7c\xd5\ +\x63\xe6\x3d\xe5\xda\x86\x40\x36\x76\x2a\xff\xf5\x7a\x1f\xef\xdd\ +\x4e\xe2\xb7\xfd\xdb\xff\x6e\xbc\xf8\x95\x1f\x89\xb9\x64\x62\x2b\ +\x6d\x7e\x7a\xc0\xb8\xe2\x43\x56\x07\x25\xfb\x7e\xc1\xf7\x31\xeb\ +\x1f\x08\xa0\x79\x86\x40\x7d\xb9\xce\x1a\x41\xdf\xd8\xc7\xbd\xe5\ +\x4b\xf1\x77\x7e\xf5\x6f\xc4\x4d\x3c\x8e\xd9\xf2\x56\xe3\x23\x3d\ +\x81\xf1\x42\x3a\x7c\x8d\x89\x93\x04\x59\xf1\x48\x9f\x91\x63\x9c\ +\x64\xa7\x93\x9b\xbb\x92\x21\x37\xab\xe9\x35\x6d\x41\x91\x8d\x3f\ +\x90\x18\x7c\x39\x70\xff\x1e\xf6\xfd\x6f\x07\xcd\xa0\xb0\xbe\x54\ +\x45\x56\x07\xe3\xde\x21\xd6\xbc\xe2\x71\xa5\x79\xc0\x6c\xa7\x21\ +\x62\x16\x97\x0b\x36\x13\x57\x71\x7b\x33\x8d\xb5\x86\x76\x6b\x53\ +\xe6\x2e\x9f\x61\x7e\x55\x0e\xa8\x23\xb1\x0e\xf9\x4d\xe8\x64\x43\ +\x66\x83\xb4\x3c\x0c\x80\x71\x8b\xd8\xe3\x2e\x22\x68\xf1\x21\x4f\ +\xb4\x0b\x06\xaf\x95\x30\x71\x9f\xba\x74\x5a\xb2\x14\x0b\x3a\x42\ +\x90\xe3\x88\x39\x22\x78\x45\xf6\xf6\xa9\xc6\x8c\xcd\x24\x2e\xa7\ +\xd3\xf8\xc2\xcb\x93\xf8\xf1\xaf\xac\xe2\x95\x57\xf7\x31\x1d\xcf\ +\x35\x1e\x8d\x63\x73\x58\xc5\x13\x8d\x21\xdf\x7c\xff\x3c\xde\xbd\ +\x9a\xc6\xb5\xe6\x54\xba\x1a\x3a\x7d\x37\x99\x2a\xcc\x98\xd5\x80\ +\x6b\x0c\xd3\x88\x52\xb0\x44\x57\x49\x27\x63\xb3\x04\x3e\x73\x20\ +\x1e\x2c\xee\xea\x19\x5d\x45\x7c\xdd\x24\x81\x83\xda\x87\x78\xd7\ +\x4e\xea\x24\x35\xf7\x72\x14\x45\xe1\x54\x37\xc3\xc1\xc3\x28\xb4\ +\xd2\x65\xbe\x8e\xd9\x0e\x84\xc7\x51\xa7\xab\x8f\xae\xa3\xb0\x3c\ +\x17\x41\x47\x42\x6f\x1e\xf1\xa9\xb4\x3c\xa1\xd6\x6f\xa8\x95\x5d\ +\x7f\x7a\x3b\x36\xde\xa8\x2a\x8b\x33\x1a\x40\x4a\xab\x9c\xce\x03\ +\x4b\x84\xb2\x03\x0f\xfb\xb5\xb1\xc6\x51\x0c\x1d\xa4\xc3\x7c\x27\ +\xb5\xf4\x49\x3e\xd5\xe1\x39\xa7\x38\x9b\xcd\x4a\xf5\xcb\x86\x9a\ +\x74\x1d\xd2\x96\x69\xd2\x77\xbc\xa4\x31\xe2\xa7\xc7\xf8\xa8\xd2\ +\xd0\x6a\x32\xfb\x60\xd9\x80\x06\x33\x7f\xb1\x5e\xe9\xb3\xd9\x06\ +\x4f\x69\x5c\xef\x4d\x4f\x8e\xa1\xbb\xd3\x75\x6d\xa7\x39\x12\x4f\ +\xa5\xed\xd4\x7f\x34\x85\xf2\x66\x1a\xff\x8f\xb6\xd2\xbc\x6a\xe3\ +\x27\xd3\xd4\xaf\x3c\xc5\x93\x4e\xb5\x23\x25\xc5\x3e\x20\x73\x47\ +\xd0\xa2\x77\xd8\xf2\x63\xac\x7a\x93\x85\xfd\xcc\x9b\x6a\xab\xed\ +\x38\xce\xe6\xdb\x58\x2e\xd5\x3b\x36\x67\xf1\xe0\x72\x14\x5f\x7c\ +\x65\x14\x67\x9a\x53\x5d\x6f\xb7\xb1\xd1\x5a\x61\xb5\xe6\xff\xda\ +\xf8\x4f\x30\x7e\x90\x42\xbf\x54\xeb\x68\x2e\xa5\x19\x95\x3c\xe1\ +\x4c\xd3\x1c\xcc\xd6\x39\x26\x05\xc2\xa7\xec\xbb\xe8\x34\x1a\xe8\ +\x88\x63\xf8\x08\x36\x60\x91\x8d\x74\xa8\xe0\xa3\x13\xdd\x95\x38\ +\xae\x43\x8f\x75\x28\x63\xf8\x86\x97\xed\x94\x3d\x82\x8e\x81\x32\ +\xba\x79\x26\x21\xb8\x58\xce\xe2\x85\x17\x35\x1e\x4c\x15\xd5\xc2\ +\x85\x79\x78\xb6\xaf\x15\x0c\x4d\xb7\x2f\x3f\xd0\xb8\x1d\xa9\xbc\ +\xf3\x0c\x4e\x10\xad\x8a\xe6\xba\xe1\x1f\xbb\xf2\x9f\xd8\xae\xf8\ +\xa1\x0e\x1e\x11\x4b\x0e\x59\x7a\xae\x04\x56\xc4\xc1\xfd\x2e\xfd\ +\xa1\xc5\x3a\xe8\x48\x04\x65\xb1\x9c\xf6\x91\x03\x81\x2c\x1b\x0f\ +\x10\xc1\xf8\x66\xbb\xe4\xa4\x31\x70\xac\x8e\x39\xd9\x7d\x31\xfe\ +\xec\x3f\xfd\x6f\x49\x77\x99\x69\xb2\x42\xfb\x84\x2d\x7e\x82\x1f\ +\x7a\x38\x75\x83\x13\x9c\xe0\xe3\x83\xd3\x86\xda\x09\x4e\x70\x82\ +\xef\x2f\x7c\x42\x57\xf5\xef\x26\x9b\x9a\xb7\xf6\x73\xcf\xc2\x09\ +\x83\x58\x37\xab\x8d\x98\x9e\x5f\xc6\xdb\xff\xc7\xaf\xc5\x9b\xbf\ +\xf8\xd7\xe2\xa5\x8b\x73\xad\xac\xb4\xa8\xe1\xdd\x8c\x52\xf2\x82\ +\x53\x13\x5e\x2f\x10\x48\xd3\x32\xe0\xd0\xcc\x41\xb6\x49\x6e\x4d\ +\xd2\x7d\xb3\xc7\x9b\x34\xdc\x04\x15\x56\x3c\x17\xa2\x5a\xf8\xb1\ +\xb0\x57\xe8\x36\x43\x60\x03\x85\x8d\x8a\xd9\xbd\x73\xbf\x09\x99\ +\xb0\xdb\x91\x8c\x0f\x8a\xd1\xcd\xe5\x81\x01\x69\xe8\x16\x18\x3a\ +\xf8\xf6\x56\x45\x7c\x13\x56\x32\xa6\xf4\xbe\x99\x00\xcf\xc7\xf2\ +\xcf\x9b\x82\xd2\x14\xe6\x4d\x4d\xbe\x69\xa0\xc5\x20\xeb\x63\x32\ +\x27\x45\x03\x96\x84\x99\x73\xe5\xc5\x11\xbd\x8a\x25\x34\x7a\xc0\ +\x83\xf4\xea\xab\x78\x03\xd1\x11\x58\x0f\x82\x12\x00\xe4\xd3\xd2\ +\xd9\x19\xf3\x7a\x80\xa1\x80\x8a\xb0\xb5\x06\x34\x07\xd7\x8b\xda\ +\x89\x9b\xe6\x3c\x71\x31\xd7\x6a\xee\xfc\xe5\x79\x4c\x7e\x6a\x19\ +\x67\x5f\x5c\x69\x81\xac\x95\xb7\x96\x3d\x3b\x2d\x96\x79\xc5\xe3\ +\xe1\x83\x51\xac\x1f\x6b\xa1\x2e\x9a\x1b\x68\xbb\x8d\xd2\xa3\x22\ +\x63\xb6\xd9\x51\x7d\x8c\xaf\x5d\x1b\x00\x3e\x74\xbc\xa1\xd0\x0d\ +\x93\x01\x76\xb3\x4a\x11\xa1\xdd\xaf\x1c\x51\x7f\x72\x5c\x24\xed\ +\x53\x44\x93\xbb\xcf\xb9\xdd\x26\x5e\xb4\x3b\x13\xfa\x0d\x37\x49\ +\xba\x20\xc7\xb7\xe2\x71\x77\x81\x3e\xce\x02\x96\x0d\x1b\x36\x7a\ +\x90\xa1\xc3\x86\x8e\x30\x1b\x3d\xe8\xe5\x13\x6d\xd8\x91\xae\x6d\ +\x60\x97\x8d\xa1\xa2\x7d\xa3\xbe\x6e\x0a\xe8\x1c\xa2\x7e\x5d\x10\ +\xfa\x99\x51\x95\xdb\x75\x06\x24\xdf\xdd\x7c\x18\x38\xd0\xc9\x4c\ +\x67\x34\x4f\x05\xf8\x03\xac\x32\x3a\x2a\x70\x9e\x85\x4d\xa3\x82\ +\x6f\x2e\x37\xfe\xe3\xbb\xca\x00\xde\xee\xc4\x92\x7d\x36\xd2\xfc\ +\x24\x57\xca\x72\x93\x2b\xe3\xa3\x2d\xf9\x67\xb9\xf0\xdb\x76\x6c\ +\x8b\xfa\x48\x9e\xeb\x48\xd8\xe9\xc9\x53\x47\x6f\xb0\xb9\x2e\x64\ +\x07\xfb\xfe\x69\xf4\x36\x46\x9b\x6d\xf7\xd4\x99\x7d\xc0\x46\xd5\ +\x57\x6e\x9c\xed\xe5\x13\x1b\x69\xb5\x99\x46\xfe\x04\xe9\x50\x5f\ +\x4d\xbf\x6d\xa4\xf9\xa6\x13\xf1\xaa\xa7\xa3\x9b\x50\x0a\xad\xbe\ +\x39\x07\xc5\xc1\x33\x7f\x7c\x4e\xf2\xa4\x25\xa6\x79\xb3\x23\x65\ +\xa6\x1e\xd5\xd7\xa7\x17\x8a\x9f\x09\x4f\xa6\xb1\x58\xea\x9c\xb8\ +\x14\x3d\x1f\xc5\x5c\x61\x76\x76\x88\xd9\x7c\x1a\xd3\xe5\xbe\xfe\ +\x3f\x4b\xd5\xef\xa7\x58\x95\x46\xd0\x5e\xaf\x45\xa7\xec\x3f\xd5\ +\x27\x53\x23\x1b\xc6\x28\xf5\xf0\xbb\xf1\xea\xa0\x63\x32\x33\x36\ +\x00\x31\x06\x6a\xc7\xb8\xd1\xcf\x85\x14\x1e\xa9\x54\xa4\xf5\xa9\ +\x1c\x17\xcc\xf1\x31\x4f\x43\x1d\x74\xf2\x70\xe3\x8b\x71\x70\x3c\ +\x57\xe0\x7f\xd3\xee\x2d\x63\x7e\xa6\x31\x62\x26\x1f\x29\xbb\xc4\ +\x99\x2a\x8b\xd3\x45\x04\x8e\x17\xc0\x76\xa9\x8a\xd9\x8d\x43\x40\ +\x16\xf9\x18\x5a\xbc\xea\xd4\x63\x31\xff\xdd\xc6\x38\xcc\x75\x05\ +\x91\x15\x12\x4c\x63\xc7\x41\x87\xa2\x69\xf9\xec\xa3\xc2\xee\x43\ +\xd9\xa7\xdc\x6d\xc4\xa7\x0e\x50\xed\x6c\x11\x29\x40\xce\x93\x69\ +\x53\x6e\x44\xd1\x8e\x04\xea\xa4\x7c\xa2\xd7\x4f\x64\xe8\xd7\x6e\ +\x36\x31\x7b\xf1\x4b\xf1\x8f\xfc\xfb\xff\x61\x2c\xb8\x61\x25\xbe\ +\x37\x5c\x9f\x81\xa1\xc7\x77\xe1\xdb\xc9\x3e\x01\xf8\x3e\x67\xff\ +\xa9\x85\xa3\xce\xf1\x1c\x40\x36\xd0\xf1\x06\xfc\xe6\x3c\xfe\xe6\ +\xd7\xfe\x72\x9c\x5f\x6c\xdd\x77\x7c\x9e\xd1\x77\xac\x91\xfd\xc8\ +\xd8\xe3\x03\xa2\x16\x37\x1a\xd0\x2d\x4d\xea\x38\xa6\xaf\x37\xd4\ +\xb8\xb0\x0d\x78\xc6\x0d\x3a\x72\xc8\x85\xca\x51\x10\x77\x72\xcc\ +\x4e\x5e\xd3\xeb\x75\xef\xc2\x40\xd2\x7c\x2a\x16\x3f\x78\xd1\xa9\ +\x19\x5b\x7d\xf6\x9a\x0f\x4c\x34\x8e\x8e\x76\x8b\x38\xe7\x7f\x95\ +\x26\x6b\xbf\xbe\xd0\x97\x19\x4e\xb8\x2e\x2f\x25\xee\x4c\x0e\x6c\ +\x23\xe6\xc0\x2f\x61\x1a\xbf\xcb\xa7\xd1\x56\x1a\xa6\xea\xd3\x0d\ +\xa0\xbb\x5e\x1a\xc0\xa4\x50\x28\xd6\xf1\x4d\xe7\x06\x59\x37\x43\ +\x40\xc7\xa9\x55\x4e\xf0\x5d\x39\x9c\x6e\x0c\x11\xc1\xd0\x43\xcc\ +\x88\xeb\xd4\x56\x16\x34\x7f\xba\x38\x5c\xc4\xe7\x5f\x1a\xc7\xef\ +\xf8\xd1\x5d\xfc\xd8\x17\xb7\xf1\xf0\xa5\x4d\x8c\x77\x97\x9e\x9f\ +\xec\x47\x37\xf1\xe4\x7a\x11\x6f\xbe\x37\x8b\x77\x1e\x2f\xe2\x29\ +\xd7\x38\x6c\x3a\xf3\xe6\x65\xc3\x99\x57\x83\x5d\xcf\x2e\x70\x22\ +\x5f\x9a\xb9\x16\xf2\x3f\x57\xfc\x07\x99\x8a\x5b\x9b\x18\x99\x00\ +\x94\x81\x83\x39\x1d\x76\xdd\x75\x99\x14\x61\x59\xc5\x74\xa0\x9c\ +\x29\xe1\x48\xb9\x13\xd3\xab\x10\xa2\x0e\xcf\x3a\xb0\x90\xa9\x0f\ +\x24\x87\xba\x4c\x7d\x8a\x97\x9b\x49\x4e\xa6\xb8\x0e\x1a\xe4\xd9\ +\x50\x43\xae\x59\x84\xe5\x4d\xd7\xf9\x80\xcd\x01\x86\xd4\xb7\xf9\ +\xd0\x36\xfe\x28\xef\xe3\x02\x9a\x22\xa4\x57\x5c\x18\x92\xcb\x27\ +\x21\xcb\xe3\xa0\xfa\x62\xe4\x5f\xaf\x6f\xd4\xaf\xd7\x79\x1e\xa9\ +\x9e\xa9\x63\x6f\x8e\x89\x76\xb9\x87\x61\xf8\xa9\x3a\x48\x99\xca\ +\x4e\x8d\x35\x5e\xfb\x3c\x93\xa6\xf4\xe8\x4f\xe8\x3a\x2d\x75\x93\ +\x75\xb7\x6b\x73\x22\xb9\xbe\x55\x25\x31\x5d\x6d\xaf\x7a\xcc\x29\ +\x18\x4f\xab\xe5\x66\x1a\x3f\x28\x71\xba\x0a\x69\x3b\x03\x40\x89\ +\x1d\x38\xb8\x46\x8e\x21\xe3\xd4\x04\xbe\xb0\xa9\x86\x5f\xf3\xb8\ +\xe5\x89\xbd\xf5\x2e\x2e\xd4\xa1\xc7\x8b\x5d\xcc\x47\x1a\x03\x96\ +\xe3\xf8\xcc\x4b\x87\xf8\xc2\xab\xfb\x78\xf9\x72\x12\x33\xcd\xc7\ +\xb7\xb7\x33\xd5\xd5\x3c\xae\xb7\x37\xca\x43\x75\xa9\x53\x3d\xfb\ +\x20\x25\xa5\xef\x69\x6e\xe6\x5c\xe4\x11\xd9\x34\x18\xd2\x82\xf4\ +\xa0\xf0\x1d\x19\xd0\x58\x96\x49\xf1\x58\x85\x3e\xa0\xa3\xf8\xc6\ +\xc5\xfb\x6e\xa0\xd3\x72\x3a\x0c\xe7\x75\xde\x7c\x78\x2d\x98\x7b\ +\x17\x86\x8e\x64\x9f\x62\xa3\xeb\x6c\x3e\x8b\x17\x5f\xc8\x27\xfc\ +\xfc\x9a\x71\x7a\x3d\x6d\x2a\x79\x53\x4f\xac\x63\x7e\x93\x1e\x50\ +\x1d\x58\x9e\xb2\xf4\x45\xed\xc1\x35\x08\xcc\x46\x35\xd7\x0e\xd1\ +\xc8\x12\x52\x37\x41\xf9\x73\x74\x3f\xcb\x56\xe0\xd0\xfa\x1b\x7d\ +\xc2\xfd\xa2\x85\xd2\x37\xa8\x22\x5d\xa2\x8e\x25\x62\xa8\xa3\xca\ +\x4e\xbf\x32\x37\xb8\xe4\x90\x7f\x0d\x80\x6c\x17\xb7\x1f\x2c\xe2\ +\xf7\xfd\xae\x7f\x21\x7e\xf4\xf5\xdf\xa3\x3e\xc2\x5b\x64\xf0\xdf\ +\x49\xca\xcd\x16\x39\xc1\x09\xb2\x4b\x9c\xe0\x04\x27\xf8\x78\xe0\ +\xb4\xa1\x76\x82\x13\x9c\xe0\xfb\x07\xdd\xe4\x51\x70\xf7\xea\xfe\ +\x31\x5f\xed\xbf\x1b\x73\xe8\xe0\x12\xf8\x59\xfd\x94\xf8\xd8\x84\ +\x9e\x5c\x4f\x62\xa1\x09\xf7\xaf\xfe\xc5\x9f\x8b\xb3\xf1\x26\x96\ +\xdc\x40\xf5\x84\x5b\x98\x49\x34\x0b\x46\x2f\x1a\x94\x92\xd9\x74\ +\x25\xf6\xf4\xd8\x93\x64\x81\x93\xa4\x6d\x60\xc2\x8d\x22\x16\x4a\ +\xd8\x97\x6d\x6e\x5e\xb4\x9b\xcd\xbe\x91\x51\xfa\x0e\x24\xe0\x00\ +\xb3\x48\x43\x27\x10\xb0\xea\xa9\xec\xc1\xa8\xe6\xf4\x1c\x79\xea\ +\xf8\x98\xe4\x33\x60\x2d\xdb\x67\x29\x0c\x0d\x45\x5c\x56\xf0\x41\ +\x24\x8b\x08\x73\x94\xc9\x98\x49\x3e\x11\x67\xa6\x82\xa8\x1c\xf9\ +\x9a\x0c\x0a\x45\x9d\x48\x84\xbe\x30\x2e\xb5\xa7\xa8\xb0\xda\x2c\ +\x3b\x29\x94\x23\xc5\x33\xf4\x54\x07\xf6\x0d\xc0\xda\x47\x01\x3a\ +\x0a\x5d\xf2\xe7\xd8\xb9\x03\xb8\x55\xa9\x64\x39\x7f\x07\x0a\xb4\ +\xba\x0f\x36\xd3\x28\xd3\x74\x1c\xb3\xcb\x71\x9c\x7f\x71\x19\xd3\ +\x9f\x9a\xc5\xd9\x6b\xfb\x98\xcd\xf8\x69\xf9\x28\x6e\xa5\x33\x7d\ +\xac\xe2\xbe\xb7\x8b\xdd\x07\xbb\x58\x5f\x1d\x62\x73\x33\xd5\xa2\ +\x5d\x8b\xb3\x5a\xf3\xb2\x30\x4d\xd3\x69\x3f\xa3\xa2\xdb\x8a\xb5\ +\x93\x17\x14\x9d\x68\x20\x77\x43\x08\x3b\xde\xd7\x99\x45\x7c\xbc\ +\xc2\xea\xe3\x44\x81\x5c\x24\xd2\x4e\x45\x2b\xf0\x4b\xcc\x7c\x1d\ +\x5d\xea\xd3\x8f\xdd\x81\xe8\xcf\xd0\xdc\x58\xaf\x38\x9b\x45\x7e\ +\x75\x8f\xda\xd4\x0b\x59\xc9\xbc\xc1\xc4\xc2\x12\x7d\xc7\x6b\x91\ +\xe9\xf4\xa4\x53\xd8\x65\xfa\xdc\xac\xea\x83\x7d\xe1\x17\xd6\x12\ +\xdb\x45\xe1\x3c\x64\xdf\xe1\x4c\x71\x9d\x39\xe8\x60\x39\x74\x1d\ +\xcc\x6f\x69\x2b\x22\x70\x1a\xa0\x64\x96\x2b\xd2\xd3\x00\x4a\xf2\ +\x83\x74\xf8\xe2\xcd\x03\xb5\x25\x9b\x55\xf8\xa9\xc0\x0d\x98\xdc\ +\x58\xd8\xe6\x13\x61\xdc\xa4\x11\x8f\xbb\x2f\xb9\xc9\x25\x9c\x8f\ +\x78\x71\x67\xc6\x1b\x5d\xde\x9c\xb3\x2c\x75\xb3\x4e\xc0\xca\xc7\ +\x79\x49\x26\xec\xf3\x88\x74\x4e\xcb\x4d\x56\xe5\xbd\xd9\xc5\x48\ +\x61\x07\xad\x74\xde\xf4\xa2\x22\xc0\xa5\xdb\x5e\xff\x98\xff\x9d\ +\xe6\xbb\x40\xd2\x95\x88\xd7\x3d\x2a\x8f\xac\x7b\x65\x25\xdd\xbc\ +\x79\xa4\x34\xf0\x5a\x40\x26\xdc\xd5\x80\x0e\xee\x7e\xe6\xb4\xfa\ +\x71\xcd\x9b\xe9\xa7\x70\xb1\xb3\x51\x3b\xb1\x71\xb7\x38\xc4\xec\ +\x4c\x3e\x9c\x8f\x63\xb9\xd8\xc4\x78\x36\x8b\xf9\x22\x62\x76\x6f\ +\x14\x8b\xfb\xfb\x38\xbb\x3f\x17\x1e\xc7\x82\x57\xa1\x9e\x49\xb6\ +\xd4\x79\xc1\x06\x9b\xce\x9d\xa9\x74\xf3\x97\xbf\xe3\x3c\xc7\xf8\ +\x9f\x41\x53\xad\x55\xc0\x7d\x3b\xd9\x27\x0e\xea\x26\x09\xf4\xdf\ +\x46\xd5\x51\xf2\xc6\x2b\xa6\xa1\xeb\x03\xf0\x08\x2d\x3e\x54\x7a\ +\x0e\xf4\xbe\x08\x44\x3a\x56\xc6\x86\x29\xbd\x09\x0c\x83\x93\x4b\ +\xe7\x8f\x9f\x08\xe3\x3f\xd3\xce\xd8\x4c\x9b\xc7\xec\x7c\xa1\xba\ +\x11\x8f\xb1\x43\x2a\xad\x08\xcd\x0d\x8f\x39\x8a\x74\x6e\x09\xb2\ +\x1c\xd2\xef\x98\x59\x17\x44\x4b\xf4\x0c\xd8\x4e\xe7\x8b\xea\x92\ +\xcd\x34\x76\x2b\xf0\xa9\x12\xf8\x58\x36\x3b\x9a\x4c\xf8\xd2\x27\ +\x8a\x97\xfd\x83\x3e\x26\xda\xe7\x40\xf2\x1a\xa4\x35\x41\x25\xb0\ +\x4c\x5f\xca\x31\x9d\xaa\xdc\x6c\xe6\xe9\x9c\xf6\xb8\x22\x9f\xb0\ +\x4c\xeb\x6e\xa5\xb0\x52\x7f\xfd\xe6\x6a\x12\x5f\xf9\x97\xff\xf5\ +\xf8\xfc\xef\xf8\x19\xf1\x49\x48\xbd\x74\x56\x7f\x70\xe0\x07\xd0\ +\xe5\x4f\x04\x5a\xbd\x3c\x53\x3f\x62\xb4\x3e\xea\x43\xb6\xfd\x8b\ +\x17\xaf\xc5\x5f\xfe\x1b\xff\xad\xce\x95\xdb\x98\x2d\xb6\x31\xde\ +\x4f\xd5\x97\xe8\x35\xea\xb9\xd6\x9d\xf4\xe9\xcc\x68\xfc\x01\x06\ +\x41\x25\x03\xaa\x4f\xa2\x7e\x38\x51\x7f\xe4\x14\x85\x31\xd4\x19\ +\xa2\x46\xd0\x63\x13\x32\x8e\x1f\xd9\xc7\xab\xaf\x1b\x9a\x6e\xa3\ +\x86\x30\xe0\x98\xec\x75\x5d\x2a\x0d\xa6\x8c\xc7\x3c\x68\x3c\x1b\ +\x6b\x7c\x1e\xeb\x04\xdb\xce\xe2\x62\xb1\xd3\x3c\x62\x1f\xd7\xab\ +\x51\xac\x37\xcc\x03\x35\xce\xda\x17\x52\xf6\x36\xd3\x03\xc5\x7b\ +\x96\x20\x23\xcd\x3b\xa2\x1d\x2d\x60\x7c\xe8\x60\x30\x28\xe6\x5b\ +\x04\x72\x7c\x21\x37\x20\xeb\x67\x90\xa0\xc8\x8e\xa3\xe4\x99\x6c\ +\xa0\x53\x52\x5a\xa2\x51\x3d\x4f\x30\x70\x06\xd2\x3f\xfe\x52\x7a\ +\xae\xb1\x3c\x1d\xc4\x2b\xc2\x67\xd2\xbc\xb7\x60\x23\x6d\x1a\xbf\ +\xe3\xc7\x37\xf1\xd3\x3f\xf1\x34\x3e\xf7\xd9\x4d\x5c\x5e\xe8\x7a\ +\xb1\xbe\xd4\xfc\x64\x17\xdb\xb8\x89\xa7\xd7\xe3\xf8\xe6\x7b\xd3\ +\xf8\xd6\xa3\x59\x3c\x56\x1d\x72\xad\xf3\xe6\xdc\x9e\x71\x27\xf3\ +\x00\xd2\xbd\xd6\x9a\x3a\x4a\xd8\xc4\x43\xbd\x24\xd5\x26\x3a\x62\ +\x6b\xab\x6b\x28\x97\x69\x5e\xfe\xc8\x3e\xd5\xc4\xed\x00\xf4\xe9\ +\x81\xdc\x64\xd4\x87\xa2\x10\xf7\x47\x98\x38\x8a\xc9\x34\x74\xfd\ +\x06\xbe\x8d\x64\xdc\xba\xc6\xca\x5f\x7c\xab\x71\x9d\x15\xde\xcb\ +\x3e\xfe\xf8\x62\x6d\x7b\x5d\x0e\x99\x8e\x32\x2b\xc6\x78\x3f\xf6\ +\x86\x1a\x2a\xc8\xc4\x75\x1e\x30\xfc\x55\xb0\x81\xa4\x3b\x5b\x1a\ +\xdb\xc9\x33\x29\x08\x6f\xf8\x24\x28\x52\x7a\x8e\xa5\xd8\xc1\x07\ +\xe7\x2d\xdd\xac\xe4\xd4\xb5\xad\x06\xc8\x73\xce\xb9\x53\x47\x5f\ +\x6d\xae\x8d\x3d\x97\x62\x4e\xa2\x32\xf9\x1a\x53\x38\xf3\x27\x0d\ +\x65\xc7\x2e\x51\xe4\xe2\x74\xfc\xc4\xfe\x20\xf3\x07\xdd\xa2\x9b\ +\x5c\xf1\xac\xb7\xf4\xa6\xd1\x6c\xe2\xb9\x5e\xa1\x45\xd0\xef\xb6\ +\xa2\x99\xce\xd0\xe6\x5b\xf5\x45\x02\x53\x29\x36\xd6\xa8\x09\xeb\ +\x97\x0d\xac\x99\x56\x70\xa4\x50\x0b\x1d\xd3\x40\xbf\xeb\x2b\xa5\ +\x55\xd3\x4e\x73\x1d\xfe\x53\x8d\x27\xd5\x56\x2b\xf2\x3a\xc4\x7c\ +\xba\x8d\xcb\x7b\xb2\x3f\xe2\x7f\x01\x67\xf1\xc2\xc5\x22\x5e\x7b\ +\x79\x1e\x3f\xfa\xda\x3c\x3e\xfb\xe2\x28\x1e\x5c\x28\xb1\xae\xa9\ +\x6c\xac\x6d\x37\x39\xd5\xdb\xcb\xc6\x84\x57\x6c\xf3\xf4\xbf\xe6\ +\x52\xde\x68\x91\x67\xdd\x46\xa8\x5d\x51\xdf\xa4\x73\x76\x90\xfd\ +\xb5\xc8\x23\x20\x3a\xd4\x3c\x86\x81\xa4\x25\xa7\x40\x77\x6c\x3c\ +\x0f\xac\xe2\x03\xb5\x51\x69\x64\xae\x8d\xc1\xbc\xbe\x72\x78\x5e\ +\x02\x59\xd3\x05\x4e\x42\x8d\x8b\xd0\xf9\x7d\xb6\x98\xc6\x4b\x2f\ +\x84\xe6\x94\x2a\xab\x5f\x2b\xae\xb6\x66\x9e\x9d\x05\xb6\x9d\xcc\ +\x27\x2d\x16\x12\x54\xdc\xc7\xbb\xd0\x74\x95\x52\xc1\x3f\x06\xe2\ +\xc7\x85\x9e\xa3\x22\x95\xfc\x8e\x9d\x06\xce\x57\x21\xfb\x44\xfa\ +\x51\xac\x0a\xe9\x97\x8f\x49\x1a\xbb\x6f\x94\x2c\x6d\x42\x5b\x60\ +\x68\x3f\x60\xb0\x44\x07\x7e\x78\xe7\xff\xe3\x53\x7c\xaf\xbe\xc3\ +\x8f\xee\xc6\x87\xcb\xf8\x67\xff\xd8\x7f\x1a\xf3\xd9\x99\x7f\xc8\ +\x04\xf4\xe5\x05\x8e\x22\x27\xf8\x21\x87\x53\x6f\x38\xc1\x09\x3e\ +\x3e\x38\x6d\xa8\x9d\xe0\x04\x27\xf8\x74\xc0\xf3\xae\xee\x8d\x07\ +\xfe\x98\xae\xfe\x98\x61\x12\xfa\x51\xe6\xbe\x53\x36\x47\x72\x66\ +\xab\x5a\xfc\x4d\x3f\xf7\x30\xde\xfc\xab\xff\x7b\x5c\xbd\xf1\xab\ +\xf1\x60\xb1\xf4\x22\x86\x1b\x36\x9e\x3c\x4b\xc7\xa8\x26\xc6\x2d\ +\x73\xec\x74\x2c\xc7\xfb\xc9\x3b\x60\xcc\x0d\x48\x56\xa0\xbe\xf9\ +\x03\x96\x2d\xcb\xa5\xcb\xc4\x5e\xb4\x17\x22\xe6\x99\x9d\xc1\x90\ +\x84\x8f\xca\xa8\x9b\xc8\x93\x19\x70\x8c\x7a\x80\x31\x64\x3a\x9e\ +\x93\xf9\x26\xf0\x51\x07\x97\xa9\xca\x93\x44\xf2\x92\x12\xa0\x83\ +\x8c\x83\xca\x91\xff\x25\x04\xad\x6a\x63\x91\xcc\xcf\x83\xbd\x28\ +\xc8\x25\x13\xaa\x65\x25\x23\xa6\x8a\x30\xd5\x68\x60\x40\x9b\xec\ +\x72\x7d\x0e\x0c\xd3\x01\x77\xe3\x43\xc8\x65\x2f\xe0\xaa\xef\x3d\ +\x4a\x3e\x75\x21\x82\x5f\x95\xf3\x1a\xb7\xf9\x7c\xea\x8d\x82\xc9\ +\x17\xee\xc7\xf9\x6f\x9f\xc6\xf9\x2b\xbb\x98\x69\x51\xb8\x95\xd2\ +\x66\xbc\x8e\xd1\x23\x2d\xf2\xde\x89\xb8\x7d\x5f\xe1\xc9\xde\xaf\ +\x79\xdc\x6e\xc5\x63\xdd\xa8\x36\xf1\x8d\xe3\x34\xcc\xa1\x03\x62\ +\xb5\xe4\xbc\x2b\x52\xbc\x18\xad\xd2\x9a\x5e\x03\x35\x42\xe3\xb4\ +\x23\x49\x72\xe3\x4c\x58\x87\xec\x6b\xd2\xa3\x90\xc8\x55\x9e\x83\ +\xdb\x48\xb1\x7a\x9a\x25\xff\xc7\x4f\x62\xe5\xe3\x25\xa2\x17\xaa\ +\xc2\xdc\xb0\xf0\x9d\x05\x68\x49\xc0\xdc\x68\x6f\x58\xbc\xbc\x01\ +\x8f\x0e\x69\x30\x20\x19\x8b\x40\xe2\xa4\x45\xc6\x46\xd3\x36\x37\ +\x82\xb8\x8b\x41\x1a\xfa\xcf\x68\xaa\x05\xe2\x98\x57\x16\x61\x3f\ +\xf3\x77\x10\x64\x79\x0a\xaa\x4f\xf7\x70\x27\x5e\x51\xd4\x5a\xba\ +\x21\x76\x5d\x64\xd4\x18\xf5\xbe\xbd\xe5\x8f\x7c\xda\xad\x36\xf2\ +\x69\xa7\x62\xb1\x59\x26\x5f\x65\x2c\x5f\x71\x99\x34\x9b\x67\x94\ +\x39\xeb\x86\x45\x6e\x96\xd3\x65\xdc\x12\xe7\x6e\x47\x96\xcf\xaf\ +\x83\x2c\x1a\x5b\x3c\x69\xe6\xba\xc3\x41\xa7\xc1\x09\xe2\x0a\xe2\ +\xfb\x15\x8e\xd4\x27\xef\xfd\xe2\x75\x8f\xd4\x93\xf3\x16\x0f\x37\ +\xcb\x17\xd7\x3b\x1b\x67\x1b\xe9\xac\x93\xb6\x3f\xce\x47\x7a\xe5\ +\x0f\xfe\x7a\x23\x4d\xa1\xf7\x13\x44\x7f\x41\x8f\x43\x41\x56\x43\ +\x82\xce\x51\x8f\x33\x05\x99\xb5\x78\xca\x83\x27\x2c\xf7\x6b\xd5\ +\x97\x0c\x1d\xe6\x11\xb3\x8b\x91\x6f\x3a\x2e\x2e\x23\xce\x16\x73\ +\xe1\x69\xcc\x5f\x38\xc4\xf2\xc1\x24\x66\x2f\xec\x63\x76\x4f\xe7\ +\xcc\xe5\x24\xce\xee\x4d\xe2\xfc\x85\x51\x9c\xdf\x5f\x8a\x3e\xb3\ +\xde\x44\x09\xc7\xa3\xb9\x02\x37\x46\x2a\x4f\x7f\xf1\x2f\x69\x80\ +\x38\xe7\x4d\xe3\xc1\xb6\xbb\xe5\xa3\xc7\x25\xd1\x0d\x27\xc8\xc6\ +\xb0\x4c\x2d\x51\x13\x7f\x07\xe8\xd4\x44\xe4\xcd\x23\x25\x6e\x63\ +\xa9\xc0\xa6\x1d\xd5\x41\x63\x9c\x37\xa3\x35\x3e\x4c\x96\xd3\x18\ +\x9d\x4d\x63\x7a\xb9\x88\xf9\x39\xaf\x79\xe4\x66\x27\x6a\x59\xbe\ +\xa1\x4b\x40\x73\xb7\x59\x26\xee\x31\xbb\x53\xac\xba\x10\x34\x9d\ +\x9e\x48\xe8\xdc\x22\x0f\x36\xd0\x38\xb9\xd9\x50\xf3\xf9\x3f\x48\ +\x2b\x9b\x19\xeb\xeb\xc6\xfd\xaa\x61\x1d\xf2\xdc\x15\xa6\x3f\x55\ +\x70\xbf\x49\x76\x9f\x75\xe9\x67\x00\xa9\x8d\x94\xd7\x54\x6d\x3a\ +\x75\xbe\x83\xfc\xf5\xf5\x4d\x4e\xd9\x79\x53\xfd\x7a\xfe\xf0\x2b\ +\xf1\xbb\xfe\x93\xff\x3c\xee\xa9\xbf\x50\x56\xaa\x0e\x73\xd2\xb6\ +\xe9\x1f\x18\xf8\x01\x73\xf7\x13\x81\xbb\x75\xf2\xdc\x78\xcf\x64\ +\xee\xb4\xd0\xf8\xff\xfe\xa3\xa7\xf1\x6b\xdf\xf8\x85\x38\xbf\xe0\ +\x5a\xab\xfe\x0b\xd0\x9f\xab\xff\x10\x38\x0f\x1d\x35\xdf\x0a\x9d\ +\xb9\xae\xef\x20\x33\x86\xd4\xf9\xa6\x8e\x45\xbf\x64\x5e\xd5\xae\ +\x87\x9d\x4e\x4b\x03\xb4\x44\xd5\x13\x1d\x03\x99\xc5\xc5\x52\x5f\ +\x0f\xae\x0d\x52\xe7\x18\x1a\xef\x8e\x4c\x51\x72\xec\xce\x7e\x21\ +\x68\x9e\x7d\xc1\xbf\xc9\x58\x63\xa9\x06\xd6\xdd\x6e\xa6\x31\x74\ +\xef\x39\xd3\xed\x8a\x57\xd0\xe1\xbf\x74\x9c\x08\x9b\xcd\xef\x06\ +\xc9\x6b\xcc\xb2\xfe\x1d\xa0\x69\x35\x6f\x38\xf6\x36\x5c\xe6\x1a\ +\x50\xf0\xcd\x54\x93\x29\x58\x7b\xa0\xd3\x43\xb3\x2b\x38\x4a\x0f\ +\x3d\xcc\x8b\xf4\x8c\x2b\x22\xf6\x6c\xbe\x6b\x0e\xb5\x98\xc5\x4b\ +\x97\x97\xf1\x85\x57\x17\xf1\x33\x3f\x36\x8b\x9f\xfa\xca\x2e\x3e\ +\xff\xda\x2e\xee\x3f\x5c\x48\xef\x4c\xd7\xb5\xb9\xea\x64\xcb\x33\ +\x19\xf1\xf8\x7a\x1a\x6f\xbe\x33\x8e\x37\x3f\x98\xc5\xa3\x0d\x9b\ +\x0c\xfd\x58\x96\x7e\x25\x7d\x17\x70\xc9\x62\x63\xa8\x8c\x1b\x3a\ +\x02\xd2\x5b\xfc\xb1\xf7\x66\x0b\x6d\x73\x88\x19\xaf\x2d\x26\x9d\ +\xe2\x56\x25\x23\x85\x96\x0c\xdc\xaa\x03\x64\x31\x85\x6f\x99\x0a\ +\x3c\xae\x1a\xc4\xb0\x1d\xda\x1f\x32\x37\xcd\x92\x26\x8d\x8e\xa8\ +\x58\x8d\xb2\x95\x0c\x11\xc9\x49\x8f\xcc\x11\x6b\xa8\x5f\x33\x7f\ +\x6b\x1b\x6a\xed\xb2\x9e\xb2\x04\x12\x2b\x6e\x5b\xf0\xd4\xdf\x4a\ +\xce\xff\x73\x59\x9c\x8a\xb2\x2d\xaa\x05\x33\x39\x3c\x27\x74\xf2\ +\x02\xd3\xd8\xc4\x3d\xf2\x2a\x96\xb2\xdb\xac\x57\xb1\xd9\xb1\xa1\ +\x46\x7f\x67\x96\x87\x3c\xe7\x27\xe9\xd3\x10\x4b\x6a\xbe\x4a\x61\ +\x1b\x2d\x8e\xb5\xf2\x1b\xba\xf1\xd0\x27\x1f\x64\x9e\xe7\x90\x26\ +\xe5\xcd\xbe\xe7\x41\x62\xb5\xa7\xe2\x1c\xd7\xb9\xb5\x01\xeb\xfa\ +\xe6\x0d\xb4\x8d\xf7\x28\x14\xc6\x3e\xef\x6a\x1a\x65\x5b\x60\xea\ +\x54\xea\x95\x57\x5f\x7c\x07\xaa\x14\xe1\x00\x32\x96\xad\x6c\x31\ +\x47\x7f\xb1\x07\x81\x81\x59\xdc\xf0\xba\xee\xdd\x36\xce\xcf\xb6\ +\x71\x71\xa1\xf9\xc2\x78\xae\xf5\xc2\x32\xd6\x1b\x5e\x9b\x3c\x8d\ +\x97\x1e\xce\xbc\xc1\xfc\x63\x9f\x9d\xc5\x2b\x9a\x4b\x4d\xe7\xea\ +\x9f\x5b\x7e\xa0\xb7\x0b\x4d\x55\x95\x7e\x13\x53\xcd\x9f\xa6\x7e\ +\x15\xa4\x6c\x3b\x30\x5b\x92\xc7\xee\x88\x76\xa4\xa1\x67\xe1\x23\ +\x05\x0d\x8e\xcb\x05\x64\x92\xde\xf6\x47\x41\x27\xbe\x43\x70\xcc\ +\x79\x89\x6a\x25\x23\x9d\x0a\x65\x68\x94\x41\x82\x54\x19\xc7\x4c\ +\x7d\xfc\xa5\xfb\xa3\x38\xbb\xe0\xed\x17\xbc\xd1\x42\x5a\x6e\xd3\ +\x4c\x85\x9e\xb1\x8d\x82\x8d\x04\x15\xf7\x71\x08\x8d\x23\xcc\xd7\ +\x61\xe2\xf4\x7e\x4a\xad\xe6\x2f\xbd\x1d\xa0\x45\xd2\x3f\x8e\x4c\ +\xc7\x3b\x3f\x1c\x88\x27\xaf\x53\x2a\xfd\x1e\x86\x46\x49\xa3\x7c\ +\xe8\x68\x66\x83\xfb\x3a\x61\xfe\x4f\x7f\xb4\x3d\xec\xab\x6d\x9f\ +\x3c\x8a\xf8\xe9\x2f\xfc\xa9\xf8\xe9\x1f\xfd\xc3\x92\x69\xde\x89\ +\x72\x97\x40\x84\x3b\x65\x92\x27\x38\x01\x70\xea\x0a\x27\x38\xc1\ +\xc7\x07\xa7\x0d\xb5\x13\x9c\xe0\x04\x9f\x0e\xf8\x4e\x57\xf7\xdf\ +\xc2\xd5\x9f\xa4\x77\x93\x7f\x37\xe6\x98\xf2\xf6\x7a\xcd\x4a\x71\ +\x40\x28\x8c\xf9\xd5\xaa\x16\x3b\x0f\xe7\xf1\xb5\xff\xea\x2f\xc5\ +\x7c\xbc\x8d\x05\xff\x97\xc3\xaf\xd9\x50\xf2\x4e\x05\x8a\x20\x26\ +\xc6\x4c\x82\xe1\x9b\x55\x93\xf3\x9c\x2c\x43\x13\x98\x22\x8f\xf9\ +\x10\xd7\xcc\xd8\xff\xd1\xc5\x84\x9a\x9b\x92\xc6\xa9\x88\x69\xa7\ +\xed\x12\x13\xef\x50\x11\x16\x42\x74\x7e\x74\x3c\x7c\x31\x34\x9d\ +\x16\x8e\xc9\x46\xa0\xed\xbc\x0b\x06\xa4\x34\xf2\xd6\x03\x0b\x38\ +\xd8\xd6\x2d\x09\xc1\x45\x66\x41\xc2\x4c\x9f\x0d\x1b\xf9\xce\x42\ +\x36\x57\xaa\xa9\xd9\x79\x63\x3f\xb1\xe8\x88\x69\xc0\xf2\xa6\x64\ +\xc0\x28\x41\xa4\x33\x80\x68\x61\x08\x7d\xdc\x56\x6d\xa3\x78\xa0\ +\xa1\xcd\x41\xd2\x46\xda\x2c\x3a\xf2\x19\xbf\x7d\x93\x7a\x32\x89\ +\xb3\xd9\x2c\x16\x2f\x4c\x62\xf9\x95\xcb\x38\xe3\xc9\xb4\x97\x6e\ +\x62\xbe\x1b\xc7\x6a\xca\xe2\x7c\x1b\xdb\x27\xa3\x98\xbe\x7b\x1b\ +\xb7\xef\x68\xb1\xab\x05\xcf\xea\x7a\xa2\xb5\x90\xfa\x85\x16\xea\ +\x2c\x71\xf3\x86\xa0\x8c\xd7\x62\x87\x2c\x5a\x71\x28\x77\xd5\xc0\ +\x31\xc0\x1a\xfa\x2f\x68\x6d\x92\xe9\x7a\xba\x48\xcb\x21\xb9\x91\ +\x68\x7a\x10\x28\x90\xfb\x51\x92\x19\xe4\xff\x98\xff\x7b\xe2\x26\ +\x3c\x99\xd1\x1e\x6c\xc4\xb0\x71\xe4\x0d\xa4\x8c\x7b\x63\x07\x3e\ +\x37\x31\x7c\x97\x41\x3d\xb7\xc3\xac\x2a\xbd\xb2\xec\x82\x79\x96\ +\xf3\xb4\x16\x1b\x44\xdc\x3c\x50\x5a\x9e\xbc\x12\x9f\x1b\xec\xfe\ +\x2f\xad\xf9\xc2\x4f\xfe\xa5\xd7\xe9\x9b\x52\x49\x87\x03\xb6\xc4\ +\xc2\x5e\x45\xed\xa3\x02\xda\x64\x55\xa9\x7a\xb9\x89\x02\xe2\x94\ +\xb5\x98\x5d\x1e\x05\xb6\x81\x92\xbe\x3c\xed\xb5\xbf\x5e\xc7\x7e\ +\xb3\x91\x80\xcd\x3e\xca\x8c\x0c\x21\xbf\x2a\x4e\xbd\x56\x0f\xae\ +\x1b\x97\x5b\xbe\xb4\xb2\xa2\x4f\xbd\xb9\xee\xa4\xd7\x36\xc5\xa8\ +\x33\xc9\xbc\x21\x67\x3b\x8a\x73\x32\xa0\x23\x9a\xfa\x61\xd3\xce\ +\x1b\x77\x7e\x4a\x4d\x81\x0d\x32\xe4\x4e\x4f\x1a\xa5\x47\x97\x8d\ +\x3b\x64\xd8\xde\x24\xed\x57\x52\xda\xbe\xfc\x93\x7d\xda\xa5\xb5\ +\x93\x6d\x28\x39\xd9\xca\x08\x45\x73\x31\x38\x66\x2d\x26\x1c\x0d\ +\x0f\x05\xd4\x1d\xfd\xd5\x75\x48\x39\x9d\x66\x1a\xdb\xcd\xdc\x4f\ +\xa6\x8e\xfd\x3f\x82\xb7\xb1\x38\x9b\xc6\xfc\xc1\x34\xa6\x0f\x47\ +\x31\xbf\x10\xf7\x52\xe7\xc2\x79\xd2\x8b\xfb\xbb\x38\x7b\x61\x14\ +\x67\x2f\x6f\x63\x2e\xf9\xec\xfe\xc1\x61\xb1\x9c\xc5\x6c\x39\xcf\ +\x8d\x35\x8d\x9f\xae\x73\x77\x4e\x61\x7e\x79\x6d\x0f\xd2\xa9\xee\ +\x97\xd6\x66\x0e\x5a\x11\x82\x73\x47\x62\x73\x9b\x9e\xe3\x77\x00\ +\x06\x62\x42\x13\x0e\xe9\x82\x3e\x0a\xa5\x60\x93\x58\xa7\x72\xb3\ +\xf7\x19\x70\xd5\x63\x1c\x9b\x66\xc2\x73\x5d\x1b\x2e\x78\x2a\x6d\ +\x16\x93\x33\xd5\x8f\xce\x29\xef\x15\xfa\xc6\x8c\x53\x08\xee\x64\ +\x56\xd0\xd9\x34\x34\x9d\x74\x6e\x90\xa3\x40\xb2\xbb\x26\x88\x2b\ +\x83\xee\x1c\x67\x63\x9c\xd7\x6c\x16\xdf\x49\x9a\x89\xc2\x8e\xbb\ +\x4f\x35\x4c\x7f\x29\x4c\x47\x51\x57\x1c\x6e\xa8\xe5\x18\x5d\x60\ +\x92\x7e\x80\xba\x8e\xfa\x72\xf6\x72\x13\x6a\xae\x71\xd2\xaf\x78\ +\xf4\xa6\x88\x35\x68\x4e\x99\xd8\xc7\x4a\x36\xdf\xbe\x9d\xc4\x6b\ +\xff\xfc\xbf\x14\x9f\xfd\x3d\xbf\x4f\x3d\x47\x40\xdb\xd5\x87\xef\ +\xa7\x1e\x9a\x8f\x3f\x08\xbe\x7e\x1a\xa1\xab\x37\xfa\x06\xfd\x46\ +\xb3\x08\x9d\xeb\xaf\x5e\x7e\x21\x7e\xf6\xaf\xff\xb7\x31\x5d\x68\ +\x5c\x38\xe7\xd7\xf7\xf4\x9f\xec\x13\xee\xd7\x26\x18\x1f\x60\x0d\ +\xfb\x8b\xa9\xec\xf7\x05\x77\x69\xba\x28\xc3\x4a\x7b\xf5\x63\x26\ +\x2b\x1b\x43\x48\x81\x42\xfa\x06\x34\x2d\x73\x75\x1e\xf8\x09\x9e\ +\x4e\xdc\xa7\x4f\xaa\x69\xde\x81\x01\x3b\xfd\x4f\x03\x58\xe6\xfc\ +\x19\x2b\xe0\x27\xb6\xf7\xfb\x69\x5c\xf0\xca\xdc\xc5\x26\xae\x6f\ +\x26\xba\x0c\xa0\xdd\xfb\xd3\x1b\x4a\x94\xc4\xb1\x06\x90\xf1\xe1\ +\x51\x50\x69\xda\xc8\xda\x09\x3c\x18\xc8\x1b\x9b\x4a\x59\x3b\xdd\ +\xd3\xba\xb0\x08\xd7\x63\xc5\x87\x54\xd2\x05\xb0\x14\x40\x5d\xda\ +\xd2\xe3\xf5\x74\x8c\xe3\xbb\x0d\xef\x64\x98\xc5\x83\xc5\x2c\xbe\ +\xfc\xfa\x65\xfc\xc4\x17\x27\xf1\x93\x5f\x19\xc5\x8f\x7f\xf1\x10\ +\xaf\xbf\xba\x89\x07\x0f\xd8\x68\x5f\xc6\x6e\xb5\xf4\x50\x36\x99\ +\xac\x75\x39\x5d\xc7\xd5\xed\x21\xbe\xf1\xee\x34\xfe\xde\xdb\xb3\ +\xf8\x60\xa5\xba\xb1\x93\xba\x4e\x3a\xa7\xf4\x21\x73\x12\xb8\x30\ +\x05\x8d\x2c\x0c\xaa\x62\x8a\xce\xfa\x1d\x68\x5b\xc1\x97\x51\x1d\ +\xb6\xfb\xbc\x59\xad\x29\x7f\xde\xb4\x46\xd8\x29\x67\x9d\xe5\x08\ +\x96\x6d\xd8\xc0\x7e\x54\x25\x62\xbf\x6b\x21\xf3\xfa\xeb\xb1\x25\ +\x16\x71\x50\xff\x52\x44\x52\xc7\x92\x97\xb5\xd7\xf4\xd4\x43\x72\ +\x7c\xae\x7c\xd9\x90\x66\x5e\x39\x9e\x53\x67\xa5\x57\x29\x1b\x65\ +\x3d\x51\xe9\x7b\x5a\xb7\xc4\xed\xfe\x3c\x10\x1f\x11\x7d\xfd\x19\ +\x90\xe0\x3b\xa5\xd3\x21\xfb\x4b\xfa\xba\xd9\x5c\xc7\x5a\xed\xe7\ +\x0d\x35\xcf\x45\xb2\x9c\x60\x7f\x9c\x2c\x3f\x65\xa5\xa0\x64\x4d\ +\xcf\x9c\x16\xef\xe5\xc6\x8e\x0b\x2a\xae\x8c\xd4\x7e\x55\x9f\xca\ +\xd3\xd3\x31\x68\x44\xba\xa6\xf1\x3a\x47\x5e\xf7\xb8\x11\xde\xac\ +\x35\x57\x17\x6f\xa3\xf8\x4e\x75\x44\xa9\xb1\xeb\x7c\x8c\x15\xca\ +\xb4\x43\xc5\xfb\xda\x69\xf9\xd3\xfe\xaa\xeb\x76\x0e\xf9\x28\xc8\ +\xa8\xe2\xf4\x13\x13\xf2\xa3\xda\x4e\xe7\xc1\x5a\x0e\x4c\x34\xff\ +\xb9\x3c\xdf\xc7\xc5\xd9\x4c\xfa\xba\x86\xea\x3a\x7a\x10\x6f\xbb\ +\x65\x1c\x64\xed\xc1\x93\x59\x87\xf8\xdc\x0b\xe3\x78\x45\xf3\xa9\ +\xc5\x68\x67\x7f\x37\xbb\x85\xca\xa6\x39\xe3\x64\xaf\xf3\x83\xbe\ +\xaa\x30\xc5\x9f\xca\x14\x5c\x64\xe3\x34\xb0\x3f\x77\x99\xdf\x05\ +\x64\x92\xde\x2e\xd0\x72\xa4\xcc\xee\x1e\x03\xd9\xd1\xa9\x48\xc4\ +\x5f\xf2\x2e\xc5\x81\x7c\x08\xa9\x2a\xbb\x5a\x2f\x4e\x55\xfe\x87\ +\xf7\x47\x71\x79\x49\xbc\x36\xd3\xdc\x97\x08\x95\x40\xe0\x1a\x3e\ +\x32\x99\x54\x1f\x6f\xd0\x38\x59\x07\xc4\xf0\x8d\x30\xf1\x7a\x95\ +\x90\xf1\x1e\x92\x6e\xd9\x39\xdf\xea\x63\xee\x13\x25\x90\x4b\xee\ +\x67\x56\x84\x9f\x07\x43\xa1\x81\x3f\xa4\xad\x18\x76\xa8\x13\x45\ +\x5d\x0e\xc9\x98\x77\xd1\x8f\x19\xe5\xb8\x4e\xec\xf9\x0f\x88\xfd\ +\x6d\x5c\x3d\x5a\xc4\x3f\xfd\x87\xfe\xa3\x78\xf8\xf0\xc5\x9c\x6f\ +\x3d\x17\x6c\xe8\x04\x27\x30\x9c\xba\xc2\x09\x4e\xf0\xf1\xc1\x69\ +\x43\xed\x04\x27\x38\xc1\xf7\x0f\x86\x57\xf4\xef\x74\x75\xff\x18\ +\xae\xfe\x7f\x3f\xd9\x01\x43\x9d\x5c\x20\xdc\x4d\xa5\x78\x7e\xe3\ +\xa5\x2f\x7d\x29\x7e\xf9\xbf\xf8\xb9\xb8\x79\xf7\xef\xc5\xc5\xf9\ +\xd2\xf7\x56\xf9\x65\x35\x13\x66\x36\x32\xfc\x64\x8e\x68\x16\x65\ +\x40\x3e\x69\x96\x80\x6e\xb3\x03\x9b\x9c\xda\xaf\xa8\xdb\x2f\xa9\ +\x7d\x07\x08\xe4\x74\xb9\x20\x36\xdf\xf2\x4a\x58\x46\x8a\xea\x8f\ +\x20\x26\xe7\x99\x35\x19\x64\x68\x90\x6a\x86\x4c\x9b\xc7\x84\x5e\ +\xd8\x28\xe7\x6d\xa3\x80\xb4\x6b\x41\x6d\x8e\x48\x7b\x67\x0c\x87\ +\x85\x62\x51\xf2\xd3\x34\x7e\xb3\x48\x11\xf2\x93\x32\xac\x0e\xd8\ +\x54\xc3\x0e\xa6\x50\x36\x38\x55\x92\x60\x64\x15\x1f\x90\x3d\x1c\ +\xc5\x89\x78\xf9\xd5\xc5\x4c\x3f\x63\xff\x0e\x88\xe5\x54\x54\x96\ +\xcb\xe5\x9c\xb2\x0e\xe5\xb7\x9f\xb0\x9b\x4d\x62\xb6\x9c\xc6\xe2\ +\xa5\x69\x4c\xbe\x78\x11\x67\x3f\x0e\x7d\x15\x8b\xcd\x3c\x36\x33\ +\xf4\x37\x71\x78\x22\x1b\xdf\x8a\xb8\x7e\x7b\x1f\x37\xef\x45\xac\ +\xaf\xc7\xbe\x19\x36\xf2\x53\x79\xb4\x39\x06\xa9\x3b\x67\xd9\xbb\ +\xe5\x03\x20\x2f\xc4\x4c\x79\xc7\x1c\xc8\x81\x16\x49\x3b\x44\xd1\ +\xf5\x13\x34\x44\xc5\x74\x5a\x7d\xdd\x9f\xd8\xa3\x80\x37\x08\xbe\ +\xcf\x0d\xad\xb2\xf1\x3f\x77\xf9\x87\xf6\x5a\xc0\xcf\xa7\x31\x9e\ +\xed\x49\xaa\xbe\xbb\xcd\xd7\x08\xb2\xc1\xc3\xca\x30\xef\x46\xb8\ +\x2f\xbb\x3f\x73\x93\x1d\xba\x6e\xb6\xb3\xf1\xe6\xfb\x8c\x4d\x0e\ +\xcf\x41\x4c\xc9\xd8\x48\x23\xec\x8c\x69\x7f\x64\x76\xc3\x4f\xa7\ +\x8d\xe6\x73\x39\xcc\xb9\x23\x06\x65\x01\x51\x43\xfa\x02\x6d\x33\ +\x0d\xdf\x68\x2b\x0b\x9c\x97\xe2\xd6\xbd\x0b\xc9\xe9\xf4\x31\x09\ +\x0b\x46\x8f\x0c\xa4\x37\x56\x60\x23\x6b\x7f\xbd\x8a\xf5\xe3\x9b\ +\x18\xad\x57\x92\x95\xe5\xae\x5c\x83\x7a\x30\xdd\xc7\xbd\x99\xc5\ +\x0d\x23\x0a\xa6\x32\xf3\x74\x9a\xff\x2b\xce\x81\xba\xa4\x1e\xa8\ +\x27\x6c\x4a\x8e\x1e\x20\x1b\xd4\x1d\x7c\x3f\x11\x27\x1f\x46\xdb\ +\xdc\x4c\xdb\x51\x57\xd8\x95\xae\xfb\x27\x5f\x9f\x3f\xb2\xc5\x3f\ +\xe8\x83\xd9\x5c\xeb\xea\x98\x05\x37\x36\x33\x4d\xbe\xae\xaf\xfc\ +\xcb\x6f\x1d\x80\x46\xf4\xb5\x31\xac\x97\x21\x1c\xf1\xb9\x29\x6a\ +\x5b\x93\xd8\xae\xa1\x77\xb1\x5c\xec\x62\x7a\x6f\x1b\x8b\x97\x27\ +\x31\x7d\xa8\x73\xe5\x6c\x19\xf3\xc5\xb9\xff\x63\x70\x36\xcf\xa7\ +\xd1\xe6\x0f\x0f\xfe\xcf\xb5\xc9\x42\xf4\x72\x2c\xfe\x38\xe6\x17\ +\x3a\xbf\xce\xd0\x9f\xab\xff\x8d\x73\xec\x9b\xc8\x5f\xc6\x0d\xf7\ +\x69\xf9\x7f\xec\xb4\x20\xbd\xa9\x6e\x92\x31\xfa\x33\x71\x37\xa6\ +\x39\x5d\xbb\x92\x32\x75\x2a\x02\x94\xac\x17\xf6\x90\xd1\x01\xd3\ +\x69\x14\xa7\xd0\xa0\x3c\x64\xf0\x46\xbb\x08\x8d\x0f\xb1\xd0\x39\ +\x74\xae\xf1\xe1\x62\x1e\xd3\xf3\x59\x6d\xa6\xa9\x47\xdb\xb1\xd2\ +\xaf\xfc\x5b\xb6\x9d\xe9\x8a\xb7\x70\xc4\x34\x90\x6b\x31\x5a\x9f\ +\x2c\xf0\x75\xa5\x0a\x4b\xfd\x1d\xbc\xb9\xa7\xbc\xb9\x7c\x30\xee\ +\x0e\x92\x50\x97\x9c\x0f\x8e\x57\x9f\x00\xbb\x7f\x00\xb0\xa0\xdd\ +\x17\xe9\x53\xd9\x7f\xb2\xbd\x33\xa4\x2d\xd2\x80\x1c\x49\xbe\xc2\ +\x6c\x32\xf5\xeb\x1e\xfb\xff\xac\x4a\x3e\x7d\x9d\xd7\x97\xbd\xa1\ +\xb1\x70\xf4\xe0\xf5\xf8\xe9\xff\xdb\x7f\x18\xe7\xe7\xe7\xbc\xc8\ +\xcf\xf5\x83\x4e\x6a\xfe\x80\xc0\x0f\x90\xab\x9f\x18\xb4\x4e\xd0\ +\x70\xab\xa3\x67\xea\xaa\x14\x4a\x37\xcf\x8f\x43\x5c\xce\x2f\xe2\ +\x8d\x6f\x7e\x2b\xde\x7a\xfa\x2b\x71\x7e\x8f\x27\xfe\xd5\x3b\xd4\ +\xbf\xb2\x7f\xd4\x87\x3e\x45\x42\xae\x61\x79\xe8\xfb\x0f\x66\x92\ +\x72\x04\xb3\x45\xe5\x47\x79\xb0\xe1\xeb\x27\x49\x3b\x5e\xd3\x6f\ +\xd0\xa7\x4f\x03\x0a\x1a\x68\x72\xbe\xc5\x41\xfd\x5e\xe3\xab\x8e\ +\x28\x09\x8e\xd3\xa7\xd5\xe4\x36\xc9\xb1\x46\x83\xd4\x20\x0b\x5b\ +\x65\x2e\x24\xc2\xd7\xf1\x71\xd6\xcf\x99\xc6\xc3\xd9\x64\x1b\x37\ +\x3c\xe1\xae\xf3\xd1\x37\x6d\x2b\x25\x90\x39\xf5\x40\xcc\x72\x1d\ +\x9a\x77\x3d\x51\x80\xcc\xc9\x8e\xd3\x02\x6d\xce\xd6\x55\x9c\xc0\ +\x36\x2b\xda\xb8\xe0\x3e\xef\x86\x33\xa3\x7e\x23\xa1\x32\x76\x7e\ +\x99\xa9\x37\xd2\x18\x07\x76\x1a\xf7\x47\xd3\xf8\xe2\xc3\x65\xfc\ +\x8e\x1f\x1b\xc7\x4f\x7e\x69\x1b\xaf\xbd\x74\x88\x17\xee\xed\xe2\ +\xe2\x6c\xa1\xeb\xd7\x32\xb6\x9b\x85\xcb\x31\x1a\xeb\x5a\x38\xda\ +\xc6\x78\x37\x8d\xeb\xcd\x3a\xde\x7c\x7f\x1f\x5f\x7d\x73\x16\xef\ +\xf9\x7f\xe6\x34\x36\xb1\xfd\xe1\x8d\xd7\x1e\xba\x72\x14\x50\x1c\ +\xbc\xc9\x62\xb9\x21\xed\x8b\x31\x2c\x60\x90\xa0\x91\x94\x81\xe9\ +\x4d\x5d\xba\x95\x66\x1f\x73\x7e\x74\xa4\x31\x3d\x0d\x36\x1b\x4a\ +\x31\x48\x5f\x19\x59\x87\xb2\x7b\x3c\x15\x0b\x7b\xa4\x30\x16\x81\ +\xf7\xbe\x96\xfb\x5a\x6d\x2e\xa4\x8e\x19\xac\xc4\x17\x73\xc8\x15\ +\x90\xd3\x01\x5d\x8f\xe6\xa1\x28\xd0\x79\x31\xd6\xd8\x4b\x9c\xcb\ +\x7f\x0f\xd2\x69\xbe\xe1\x03\xfe\x88\x74\x5e\xc5\xb3\xff\xb6\x93\ +\x12\xa2\x77\xad\x18\x28\xef\x50\xaf\xc0\xd5\x00\x80\x6d\x6f\x00\ +\xa5\xbf\x5a\x5f\xc7\x86\xb9\x15\xf3\x23\x17\x32\xcb\x63\x3f\x0a\ +\xa3\xe7\xba\x72\xac\xc7\x7d\x2c\x39\x7d\xa1\x93\x6f\x5b\x15\x4f\ +\x31\x65\x2b\xbb\xd0\x0a\x6a\xc2\xa4\x95\x37\x6d\xc9\xd4\xd6\x41\ +\xd3\xac\xd5\xda\x2f\x03\xc8\xcd\x34\xa7\x4f\x5d\x6c\xba\xbe\x49\ +\xdb\xc2\x20\x9e\x20\xca\x15\xdc\x42\xf3\xc5\x57\x59\x53\x49\x0f\ +\x41\xfc\x26\x32\xc8\xa1\xf1\x3c\x9e\xde\x8e\xbc\x69\x7b\x79\x71\ +\x88\xc5\x7c\x29\x15\x94\x34\xbf\xd2\x78\xc5\xac\x7c\x2d\x23\x7b\ +\xad\x37\xf8\xcf\xd1\xfb\x9a\x37\xbd\xfc\x70\x1a\x9f\x7b\xb0\x8f\ +\x57\xee\xef\xe3\xfe\xfd\x69\x9c\x3f\xbc\x54\xd9\x0e\xb1\x5e\x4d\ +\x14\xf6\xf9\x03\x1f\x6f\x88\xca\x8e\x1d\x20\x0e\x16\x94\x43\xdd\ +\xf8\x07\x82\xd7\x54\x3b\xc8\x58\x4b\x36\x84\xe4\xe9\xe8\xb4\x39\ +\x4e\xdb\x44\x33\x50\xa2\x22\xfb\x88\xc0\x63\xb6\xe5\x03\xa5\xce\ +\x29\x0e\xa2\x65\x08\x92\xc0\xb8\xfd\xa2\xca\x78\xff\x3e\x71\x06\ +\x4a\xd5\x85\xca\xea\x39\xee\x20\x59\xb3\x07\xdd\x38\x8d\x1a\x42\ +\x17\x17\x91\x55\x90\x04\x7e\x91\x17\xeb\x78\x36\xd4\x92\x57\xf2\ +\x23\x2b\x99\x69\xeb\x53\xc3\x8f\xfb\x9d\xaa\x1d\xbf\x4a\xcb\xc7\ +\x0e\x2a\xda\xfc\xee\xec\xc2\x70\xe5\x51\x0a\xfc\x49\x36\x13\x7a\ +\xbf\xfa\x55\xf9\xb8\x5f\xab\x03\xdf\x3e\x99\xc4\x97\x5e\xf9\x23\ +\xf1\x8f\xff\xa3\x7f\x5a\x9c\xf2\xbb\xd4\x13\x48\x5f\x06\x9a\x9d\ +\x13\xfc\xd0\xc3\xa9\x2b\x9c\xe0\x04\x1f\x1f\x9c\x36\xd4\x4e\x70\ +\x82\x13\x7c\xff\x61\x78\x65\x87\xfe\x1e\x5d\xe9\xef\x66\xf3\xf7\ +\x0b\x9e\xd8\x16\xe5\xa9\x2e\x51\x16\x50\xfa\x1e\x46\x5a\xd4\xcf\ +\x23\xde\xfa\x9f\xfe\x6a\x2c\xe7\xd3\x7c\x2d\x0c\x29\xa4\x98\x8b\ +\x60\x4d\x82\x99\x59\x0f\x60\xb8\x80\x49\xdb\x39\x19\x6e\x0b\x0c\ +\x2f\xf7\x21\xf4\xe5\x17\x8b\xbe\x39\x50\x21\xff\x97\x2d\x65\xe6\ +\xf9\xe6\x52\x02\xd4\xdd\xf9\x79\xc7\xc0\x1f\xd3\x9d\x46\xaa\x94\ +\x5e\x6f\x05\x79\x1f\x1b\xc2\x91\x3e\x58\x65\x33\x36\x3c\x9b\x26\ +\x39\xf9\x4b\xcf\xbc\x07\xa6\x09\x3f\x98\x1b\xd0\x2c\x54\xbc\xe8\ +\xd0\x52\x80\x95\x2e\x65\x71\x85\x01\xc3\xc5\xa7\x28\xa7\xbd\xe3\ +\x57\xb7\x62\x1b\xc0\x50\x5c\x21\xb5\x06\x82\x21\x94\xc9\x66\xb9\ +\x2d\x46\x32\x6d\xd5\x2d\x7e\x71\x73\x7a\x36\x8d\xc5\xc5\x34\xa6\ +\xaf\x4d\x62\xfc\x63\x67\xb1\xf8\x11\xb5\xf5\x83\x6d\xcc\x36\x8b\ +\xd8\xcc\xf0\x57\xe5\xd0\x62\x78\xfc\xde\x6d\xac\xdf\x5c\xc7\xf5\ +\x3b\x5a\xa4\x5f\x8d\x62\xb3\x99\xc9\x55\xe5\xa0\x80\x4d\x5b\x77\ +\x59\x9d\x95\x39\x86\x22\x9a\x2f\x2d\xde\xa5\x79\x06\x52\xd2\xc0\ +\xfd\x65\x80\x11\x42\xb6\xa7\xd3\x8c\x55\x1e\xba\x0f\xe5\xf4\x66\ +\x05\x3a\xc2\xfc\xd8\x71\xc4\x93\x2c\x73\x95\xed\x4c\x18\x7d\x6f\ +\xea\x68\x11\xc7\xcd\x74\x2d\xe6\xbc\x31\x46\x7b\xb9\x13\x65\xbb\ +\xd1\xb0\x89\x45\x94\xbc\xdd\xc0\xb0\x3e\x37\x4e\xd8\xc8\x21\x3d\ +\xaf\xb4\xf1\xab\x09\xb7\xb6\x39\xd6\x82\x30\xff\xf3\x60\x2f\x1f\ +\x26\x31\x39\x5b\x44\xcc\xf9\x55\x2e\x8e\xa5\xef\xae\x0c\xe7\xa5\ +\x78\x92\x26\xdc\x3b\x3a\xb9\x19\x3d\x98\x57\xb8\x42\x13\xbb\x27\ +\x56\x1f\x3b\xda\x0c\x2e\x85\x44\x59\x86\xd5\xe3\xeb\xd8\x7d\x70\ +\x15\xdb\x0f\x9f\xda\x67\xbf\xb2\x4f\x69\xbc\xa9\x67\xbb\x59\x66\ +\x22\x3e\xbd\x85\xf3\xe9\x30\x16\xf7\xe2\xbb\x6c\x29\x67\x43\xcd\ +\xaf\x68\x54\x3f\xcf\x57\x45\x2a\x38\x9e\x81\x5f\x9c\xa2\x37\x76\ +\x3d\xa7\x8c\x8d\x38\xea\xcf\xff\xd7\x86\x1e\xed\x20\x1d\x54\xbd\ +\xe9\x46\xa6\x6c\x48\x7a\x43\x4d\x75\x6b\x5b\x8a\x7b\x63\x4d\x4a\ +\xe8\x28\xb8\x3d\x9a\x2f\x06\xf2\x4a\x0a\xb7\xe9\x45\xf4\x4c\x00\ +\x76\xab\x0f\xd7\x7f\xb2\x0b\x32\x92\xec\xa4\x65\x35\x34\x3a\xe5\ +\x98\xb4\x1d\xc7\x44\x9d\x6a\x79\x7f\x1b\x4b\x9e\x50\x7b\x61\x19\ +\xf3\x73\x85\xe5\x34\xc6\xd3\xf3\x18\x2f\x74\x1e\x2c\x79\xa5\xe7\ +\x5c\xb6\xf9\xaf\x87\x45\x6e\xaa\x2d\x94\xee\x5e\xc4\xec\x7c\x12\ +\xd3\x4b\x8d\x9c\x97\xaa\x87\xe9\x2c\x0e\xdc\x08\x52\x5b\xe5\xeb\ +\xce\x9c\x99\xe3\x2e\xbf\x73\x17\x14\x81\xaf\x2e\x83\xbf\x30\x5b\ +\x89\x04\x55\xa8\xae\x3c\xc4\xbf\x0d\xa0\x77\x37\x6d\xa6\x41\x00\ +\xd1\x98\x02\x15\xdb\x03\x1a\x3f\x12\xe0\xe9\xe4\xf9\x38\xa6\x67\ +\xb3\x98\x5e\x28\x08\xb7\x27\xd3\xfc\xb4\x5d\xe7\x40\xa6\x7d\x9e\ +\x1b\xd9\x16\x0d\x2a\x0f\x40\xcc\x4c\xd9\x78\xc9\xe8\x3c\x31\x2d\ +\xa9\x95\x74\xe0\x3c\xe7\x29\x53\xdf\x4c\x23\x2e\xf6\x20\x43\xe7\ +\x42\xbc\x82\xfb\x95\x25\x8d\xd6\x47\x9d\xc3\xe7\xaf\xfa\x93\xfb\ +\x19\x15\xef\x86\xa8\x3c\x01\xa2\x8d\xaf\x2f\x7c\x9e\x34\x9d\x69\ +\xac\xcc\x9b\x51\xb8\xd3\xb4\xe9\x8b\xa3\xb8\x95\xd6\x1b\x4f\x76\ +\xf1\xda\x9f\xfa\xe7\xe3\xcb\x7f\xe0\x1f\x0f\xb9\xa8\xf1\x67\xa4\ +\x7e\x44\x65\x02\x9d\xf5\x4f\x2f\xe0\xe2\x0f\x80\x9b\x9f\x38\x64\ +\xf7\x48\xe8\x9b\xfd\x23\x00\x05\x3a\x8d\xb0\x75\xb3\x77\xf3\xbf\ +\x42\xf7\x16\x9f\x8d\xff\xe5\x17\xff\x7b\x3f\x85\x30\xe1\xc7\x1d\ +\x3c\xdd\x5d\x3a\xa9\xc4\x46\x31\x3d\xbe\xe7\xa7\x19\x47\xba\xb8\ +\xa9\x8e\x80\x16\x56\x1f\xa4\x5f\xfa\x47\x4b\xe6\x23\xe0\x5b\x7a\ +\x1d\x54\x7c\xc8\x86\xe6\xfa\xa1\x34\x6d\xcc\xcf\x53\x82\xc3\x5d\ +\xc5\x1e\x5a\xec\x98\x2b\x28\x86\x5d\x50\x60\xac\xe6\xdc\x6c\x9b\ +\x7d\x69\x7a\x12\xe7\x4b\xd5\xc3\x74\x1f\xb7\xeb\x51\xac\xb7\xc8\ +\x34\xd6\xa7\xb4\x0d\xe2\x3e\x14\xc7\x60\x96\x21\xb9\x43\x99\x8b\ +\x60\xaa\xd7\x02\xe0\x03\x46\x8a\x50\x36\xe8\xe7\xd9\xed\x53\x16\ +\x55\x4a\x1e\x79\xb3\x52\x52\x62\x23\xc9\x3b\xa8\x2c\x7b\xb5\x25\ +\x3f\x99\x79\xb8\x38\x8b\x1f\xff\x7c\xf8\x3f\xd2\xbe\xf8\xf9\x43\ +\x9c\x9f\xb3\x09\xbf\x94\xce\xc2\xaf\xc6\x9e\x8c\x98\x0b\xe8\xba\ +\xab\xe4\x0c\xb1\x3c\x25\x7e\xbb\xdf\xc4\xdb\x1f\xec\xe2\x37\xbe\ +\x39\x8e\x37\x3f\x9c\x28\xce\x73\x44\x5c\x54\x3d\xd0\x64\x7e\xfd\ +\xa1\xc3\x64\x9f\x44\x77\xd0\x51\xd8\xe4\xdd\xd2\xa9\x04\x5d\x82\ +\x6c\x5f\x47\x47\x5c\x93\x79\xc2\x49\xbd\x4e\x0e\x4d\xd5\x46\xed\ +\x89\x10\xd0\x91\x95\x2e\x7d\x82\xe3\xfe\x66\x1b\x55\x2a\x72\xf2\ +\x14\x02\x66\x76\x27\xae\xf1\x16\x12\x31\x4d\x34\x65\x29\xe0\x75\ +\x85\x70\xb9\xb9\x4e\x1f\xc0\xa7\xdc\x54\xa0\x4f\xeb\x7c\xd0\xd8\ +\x7b\x37\xff\x06\x4e\x49\x85\xa2\x3c\x50\x71\x5d\x20\xf4\x09\x01\ +\x31\xc4\xa2\x9a\x93\x4a\x6b\x8a\x43\x4b\x5f\x6a\xa5\xa1\x80\x2f\ +\xa2\x2a\x1f\x78\xb8\xb3\xd3\x35\xe4\xe6\xf6\x4a\xf5\xb7\xd1\xf4\ +\x47\xe5\x64\xae\x23\xb9\xbc\x4f\x7d\x27\xe6\x1a\x21\x9c\x64\xda\ +\xf2\xa7\xc4\xdd\xa7\xc9\x93\x07\xb4\xfa\x31\x07\x99\x0e\xba\x7a\ +\x41\x18\x13\x6f\x81\x3a\x64\x6a\xc5\xdc\x62\xab\xb0\x5e\x6b\xbe\ +\x47\x5c\x7d\x9e\x4d\x2b\xd2\xf8\xfa\x27\x6b\xd4\x7d\xd6\x7f\x06\ +\xcb\x1b\xc0\xb3\x56\xb6\x85\x2b\xc5\xbc\xd4\x81\x93\x98\x78\xc6\ +\x7c\x2c\x13\xd8\xa3\x9e\xa8\x2a\x65\x2f\xd9\x58\x53\xb9\xa9\x5f\ +\x37\xb9\x5c\x8e\xe2\x85\x7b\x3a\x0f\xf8\x51\x4c\xeb\xdf\x0a\xac\ +\x2d\x35\x79\x8e\x8d\x68\x9e\x52\x9a\xa9\x1f\x9e\x9f\x4d\xe2\xc1\ +\xbd\x55\x7c\xee\x85\x59\xfc\xe8\xab\xcb\xf8\xd1\xcf\xce\xe2\x4c\ +\xf3\xe9\x6b\x8d\x17\xb7\xab\xb1\xea\x54\x25\x60\x1e\xa2\x0c\xdb\ +\x26\x72\x83\x8e\xaa\x3e\xe3\x31\x60\xa8\x82\x93\x45\x77\xba\x03\ +\xe8\xd4\xa0\x06\x0a\x1d\x39\x4c\xd4\xa9\x70\xcc\xf3\xd5\xd9\x76\ +\x7c\x32\x6e\xd0\xe7\x3b\x56\x39\xf9\xcf\xdd\xfb\xf7\xa6\x2a\xa7\ +\xe2\x8c\x8f\x12\xd3\x96\x94\x0d\x17\x5d\x97\x69\x11\xc2\xd0\xce\ +\x83\xc6\xe9\x25\x09\x8e\x4b\xa7\x3c\xd1\x97\xfa\xd1\x3c\x5f\x34\ +\xaf\xbd\xf7\xbc\x8d\xb9\x54\xd9\x19\x5a\x68\x9e\xe6\xa9\x91\xfd\ +\x16\x7f\xec\x17\x7d\x87\x30\xe4\xa1\xec\x43\xf2\x1b\xa4\xe9\xc6\ +\x50\x59\x74\x4c\x7f\x5a\x6e\x70\x38\x5f\xd4\x47\xc4\xf0\xb9\x78\ +\x98\x6a\x0d\xb5\x89\x9b\xeb\x49\xfc\xf1\x3f\xf2\x1f\xc4\x67\x1f\ +\x7e\x5e\x6e\x32\x96\xa8\x07\xf5\x2e\x0a\x2a\x72\xc4\x3b\xc1\x0f\ +\x3b\x9c\xba\xc3\x09\x4e\xf0\xf1\xc1\x69\x43\xed\x04\x27\x38\xc1\ +\xf7\x17\x3e\xea\xaa\xfe\x3c\xfe\xc7\x30\x03\x68\x26\xfe\x7e\x4d\ +\xb5\xc9\xed\x10\x3a\x8e\x26\xdc\xa3\xfd\x3a\x3e\xfb\xdb\x7f\x22\ +\x7e\xf1\xbf\xfb\x8b\x31\xfe\xe0\x9d\xb8\x98\x71\x23\x80\x5f\xcc\ +\x4a\x4b\x5f\xa6\xc3\xb9\x90\x23\x41\x2e\xad\x80\xe1\xa2\xb7\x91\ +\xe0\x0c\xb5\x01\xa2\x09\xfe\x98\x27\x87\xd8\x7c\x02\x58\x57\x61\ +\x21\xd7\x57\xc6\x44\x87\xb6\x1a\xf4\x93\xf2\xc4\x9e\xd8\x1b\x9a\ +\x6e\x93\x77\x64\xdd\x50\x69\xf2\x63\xb8\x2b\x82\xf4\x22\xd2\x89\ +\x52\xf0\x1c\x37\x52\xa4\x40\xee\x16\xeb\x40\x79\xf8\xe5\x24\xc5\ +\xf2\x62\x8f\x27\xb8\xb8\x71\x6e\xad\x3b\x7e\xca\x7e\xa6\x23\x21\ +\x98\x08\x58\x44\xd5\xf1\x11\x54\x7c\x68\xc5\x16\xee\xea\x95\x42\ +\x9a\x60\x29\x9b\x79\x43\xb3\xb0\x72\xb1\xa6\xbc\xe2\x87\xff\x4b\ +\x9b\xc5\x44\x8b\xb9\xe5\x6b\x8b\x98\xfc\xc8\x79\x9c\x7d\x61\x1c\ +\x8b\xcb\x43\xcc\xb4\xb0\xd9\xfa\xb5\x2a\xfb\xd8\x69\x51\x3e\xfa\ +\xe0\x10\xeb\xb7\x36\x71\xf5\xd6\x36\xd6\x57\x5a\xa4\x6f\xa6\xf9\ +\x1a\x27\x4c\x36\x7f\x05\xad\x4d\x3a\x18\x44\x8f\x17\x44\x0d\x5a\ +\x69\x8e\xa1\x53\x15\x81\x4d\xd7\x7f\xa3\x1d\xcf\x40\x3d\x77\x74\ +\xe9\x5b\x99\x9b\x92\xd0\xdc\x1c\xa2\x3d\xb4\x30\x9f\x9c\x8b\x21\ +\x3f\xf3\x3f\xb9\x54\xae\x9d\xb0\x17\x71\x60\x21\xfa\x51\xae\x1e\ +\xbd\x80\x33\x5d\xf1\xec\xe7\x0a\xde\x18\x62\xc3\x4c\x78\xbd\x8b\ +\xed\x26\x9f\xb8\x62\xf3\xc7\x4f\xba\xf8\x86\x4a\x9f\x6e\xac\xfa\ +\x1d\x9d\x9f\x45\xfe\xff\x07\x0e\xf5\x40\x16\x80\xdb\xa5\x61\x5c\ +\x84\x96\x3f\x06\x22\x2d\x00\x4a\x64\x51\xaa\x3a\x8d\xef\x23\x00\ +\x10\x6e\x07\xca\x4e\x2d\x15\x88\xa6\x25\x01\x8e\x9b\xeb\x9b\xd8\ +\x7d\x78\x1d\xfb\xa7\xb7\xb1\xbf\x59\xc5\x7e\xb5\x53\x32\xea\x32\ +\x33\x77\x3d\xb8\xac\x59\xe6\x56\x0f\xbe\x29\x66\xba\x74\xd8\xdc\ +\x82\x67\x1d\xea\xb0\xf4\xbd\x59\xb1\xf7\x26\x5a\xaf\x43\x5a\xe2\ +\x92\x51\x7f\x87\xad\xf8\x6b\x95\x73\xa3\x20\xbe\x37\x37\xf0\x30\ +\xed\xf0\xca\x47\x6f\x96\xb1\xf1\xe9\xcd\xcf\x83\x9f\x66\xb3\x4f\ +\x0e\xe2\x49\x15\x50\xca\x3b\xa1\x2b\xb9\x00\x8e\xea\xc2\x27\x03\ +\xfc\x0c\xfe\xb8\x8e\xf8\x24\xb4\x3a\xd3\xe9\xaa\x64\x9c\xc0\xaa\ +\x13\xe5\x31\xae\x57\x26\xcd\xa6\x93\x38\x3f\xd3\x79\xf2\x22\x1b\ +\x64\x73\x9d\x3f\xf7\x22\xce\x08\x4b\xf5\xb3\x0b\x9d\x50\x0a\x63\ +\x85\x99\x02\xaf\x35\x52\x7f\x9b\x5c\x8c\x63\x76\x7f\x17\xb3\x73\ +\xd9\xe4\xe9\xb5\x7b\xb2\xb9\xd4\x19\xc9\xf9\xb5\x53\x9e\xce\x67\ +\xe2\x32\xab\x50\xe5\x3f\xc7\x74\xd7\x6e\x17\x3d\x84\x9e\x27\x9f\ +\xeb\xdc\x7b\x2e\x58\xb1\xc8\xa6\x96\xe6\x7b\x30\x3f\xeb\xc9\x00\ +\xd2\x79\xe3\xa7\xc1\x78\x62\x61\x49\x98\xea\xfc\xe1\x55\x8f\xfc\ +\x67\x9a\x64\x6c\x68\x71\xc2\xd9\x68\x6f\xf0\xb8\xee\x0b\x06\xce\ +\x27\xa5\x23\xfd\x84\x48\x89\x06\xad\xd0\x86\x12\x73\x4c\x2b\x3d\ +\x26\xd8\xd0\x62\x83\xcf\xaf\x6d\xa5\xaf\xf2\x95\xc0\x9e\x63\x0f\ +\xc2\x81\x03\x48\x35\x59\x71\xf7\x4b\x84\xc2\xf9\xb4\xa3\x78\xee\ +\x63\x29\x07\x38\xe6\xb9\x94\xf1\xa6\x4f\x46\xb8\x31\xd5\x60\xd3\ +\x3d\x9d\x26\x9c\x0e\xa2\xb2\x77\xf7\x7d\x5b\x7d\xe4\x3a\x1e\xc4\ +\xcf\xfc\x67\xff\x79\xbc\xf0\xe2\x0b\xaa\x3f\x6e\x60\xa5\x5a\x3b\ +\x0e\xe1\x59\xce\xa7\x00\x3e\x95\x4e\x7d\x0a\x80\x7a\x69\xe1\x2e\ +\x3c\x97\x2f\x06\x3c\x77\x9f\x12\x6a\x50\x7f\x70\xf6\x52\x7c\xf5\ +\xeb\x7f\x37\x3e\x7c\xf2\x8d\x58\xde\xe3\xda\x2c\x19\x7d\x08\x75\ +\xfa\x39\x11\xe6\x5e\x4e\x92\xfd\xde\xbd\xaf\x61\xb8\x65\xaf\xc3\ +\x75\xf4\x47\x11\x4d\xab\x7c\xee\xa6\x3d\x31\x8c\x87\x70\x1c\xcb\ +\x68\xa6\xcd\x71\x32\xcf\x97\x3c\x67\xee\xc2\x9d\xb4\x03\x68\x12\ +\xb0\xc3\x80\x61\x92\xa2\xf1\x71\x1c\x4c\x1e\xe3\xb8\x64\xf8\x14\ +\xbe\xd5\x49\xc4\x83\xcb\xbe\x56\x64\x32\x1d\x9a\x11\x92\x93\xea\ +\x18\xee\x7a\xe8\x2b\x9d\x99\xa5\x09\x52\x30\x2a\x7e\x13\x97\xa8\ +\x0e\x83\x78\x07\x8a\x55\x06\x1e\xd7\xaa\x3e\x3c\x54\x5b\xa0\xf6\ +\xc3\xd7\x9d\xc6\x7a\x7d\x97\xe3\x65\x7c\xfe\x85\x79\xfc\xf4\x8f\ +\x8e\xe3\xc7\xbe\x38\x8a\x17\x5f\xa6\x7d\xef\x69\x58\x5f\x7a\xbc\ +\xa2\x28\x8c\x61\xcc\x59\x32\xb9\xae\x91\x9a\xa7\xac\x35\x1e\xbd\ +\xff\x64\x1b\xbf\xf6\xc6\x3e\xbe\xfe\x4e\xc4\x53\x9e\xc4\xd6\xc7\ +\x75\xe4\x8f\x40\x07\x53\x32\xd2\xe2\x49\x00\x18\x13\xbf\xea\xaa\ +\x63\x0b\xa0\x2d\x1d\x32\xef\x80\xfb\x89\x7c\xe2\xd5\xc6\x5b\xae\ +\xcf\x4a\xc0\x66\x06\x43\x1c\x4f\xe4\xa5\x75\x81\x88\xee\xc9\x37\ +\x31\xa0\x08\xc4\x8b\xeb\x18\x90\xfc\x01\x46\xdf\xf5\x27\x5d\x12\ +\xd3\xf6\xd0\xd8\x87\xe6\x9a\x2e\x29\x2d\x6f\x3d\x42\xcb\x04\xdf\ +\xf8\x61\xd2\x8c\xff\xa0\xcd\xbc\x5a\x56\x6e\x17\xc0\xa8\xe8\x0e\ +\x88\x63\x27\x63\xaa\x6e\x9b\x6d\x4f\xd5\x65\x8e\xd6\x30\x8d\x8f\ +\xcf\x42\x69\x91\x8e\x8f\x71\x71\xf9\x8a\xb1\x5e\x6f\xe2\x7a\xf5\ +\x48\x53\x1b\xfe\x23\x90\xb9\x8d\x4a\x81\xac\xb2\xb7\xb6\x70\x46\ +\xa1\x15\x14\x81\x57\x87\xf6\xed\x01\x1d\xd0\x40\xd0\x68\xcf\x4d\ +\x4d\xa7\xad\x86\xe9\x97\x5c\xce\x76\x32\xce\xdc\x62\xad\xf3\xc9\ +\x1b\x6b\xd4\x31\x81\x54\x3a\xb8\x8e\x8b\x36\x76\xc8\xc2\x67\x1e\ +\xa5\xdb\xea\x8f\x23\x0e\x1b\xeb\xe0\xce\x84\xa6\x5a\x1c\x86\xe3\ +\x77\x21\x79\x6e\x6a\x35\x20\x79\x82\x79\xbd\xe3\x68\x7c\x16\xf7\ +\x96\xfb\x78\xa8\x75\xc7\x9e\xf9\x0f\x0d\x9c\x8a\xd6\xb1\x39\xb5\ +\x91\x6a\x52\x72\x36\x53\xe6\x9e\x7f\xf1\x8a\xdc\xfb\xe7\xcb\xf8\ +\xd2\xe7\xe6\xf1\xda\x67\x96\xb1\x51\x7f\x7d\xfc\x68\x12\x2b\x5d\ +\xc4\xf9\x1f\x40\x57\xaa\xbf\x18\xe8\xc1\xb1\xe7\xfa\x58\x50\xa2\ +\x67\x35\x7a\x4e\xb3\xd9\x38\x95\xd5\x00\x38\x27\x06\xfa\xc8\x07\ +\xe7\x4a\x07\xf0\x9c\x56\xf5\x21\xcc\x8f\x4a\x1f\x6a\x4e\xf5\xe0\ +\x81\x68\xd6\x5b\xd4\x07\x65\x67\x8e\x42\x91\x30\x71\x37\xa7\x3b\ +\x65\x39\x8e\xb9\x36\x05\xce\xa4\x93\xf9\x1c\x57\xc8\xa7\xd3\xfc\ +\x4b\xa8\xb4\x63\x85\xa6\xd5\x80\x8c\xc9\x9b\x3e\x45\x3b\xbb\x57\ +\x38\x9e\xfd\xad\xe8\xd2\xbd\x9b\xba\x83\x54\x10\xe4\x44\xbd\xf3\ +\xc5\xc7\x4a\x2d\x3b\x9e\xf6\x63\x8f\xf3\x53\xba\x9b\xf5\x24\x5e\ +\x98\xfc\x4c\xfc\xc9\x3f\xf0\x2f\x6b\x1a\xae\x75\x93\x12\xb8\x4c\ +\x4e\x78\x6c\xe5\x04\x27\x18\xc2\xa9\x57\x9c\xe0\x04\x1f\x1f\x9c\ +\x36\xd4\x4e\x70\x82\x13\x7c\x7a\x61\x78\xc5\x87\xee\x26\x9d\xbf\ +\x75\xf8\xad\x4e\x26\xba\xf4\xcd\x2f\x4d\xbc\x59\x38\xf0\xff\x1f\ +\xbf\xfe\x97\xff\xa7\x78\xc0\x53\x0a\x2c\x46\x99\x8c\x5b\x91\x79\ +\x30\x93\x6c\x25\x19\x66\xde\x22\x03\xec\x09\x3d\xa9\xf4\xe5\x26\ +\x92\x6f\x88\x7a\x5e\x0f\x23\x65\x4c\x9a\xfd\x44\x08\xbc\x96\x46\ +\x24\x69\x1a\x34\xd2\xfc\x23\x02\x5f\x88\xe6\x62\x10\x7b\xa9\xad\ +\x00\x72\x41\x14\x72\xb5\x61\x28\xa9\xd9\x43\x38\x8a\x56\xd9\x1a\ +\x0f\xdb\xc4\x3a\x1d\x33\xbc\x3c\xb2\x6d\xff\x5f\x16\x79\x4c\xd0\ +\xd1\x62\x70\xa7\x25\x82\x56\xba\xf9\x04\x0a\x1c\x16\x22\x4a\x54\ +\xe9\x86\x70\x1c\x13\x0c\xca\xd6\x81\x58\x70\x09\x94\x37\xc1\xb1\ +\xc4\xcd\xb4\x80\x2a\x06\x6a\x5d\xe7\xc0\xaf\xdf\xa9\x77\xfe\x87\ +\x60\xbe\x98\xc6\xe2\x85\x79\x4c\x3e\x37\x8d\xc9\x97\x17\x71\xf1\ +\x85\x51\x2c\xce\xa7\x4a\x37\xcb\x7b\xfc\x4a\xc8\x26\xc6\xe8\xf1\ +\x3a\x76\xdf\x5a\xc5\xcd\x9b\xdb\xb8\x7d\x5f\x0b\x75\x9e\x4c\xd3\ +\xe2\xc7\x26\x65\x2e\x4b\x9a\x9f\x67\x60\xc0\x7a\x8e\x54\x90\xa9\ +\x5a\x00\xc0\xcd\x65\x43\xd5\x83\x75\xe8\x1e\x66\x29\x9d\x88\xee\ +\xc6\x21\x41\x9f\x03\xf5\x4e\xfd\xd3\x16\xec\x61\x4d\xa6\x31\x9b\ +\xcd\x62\xfc\x22\xbf\x88\x55\x82\xb5\xda\xc3\x7f\x92\xce\x8d\x23\ +\xe5\x42\xdb\x28\xb0\xe4\xf3\x93\x56\x10\x6c\x02\x71\x83\x87\xe0\ +\xfe\x4d\x90\x8c\xb6\xe4\x49\xb4\xda\xe4\xd9\xb1\x99\xb6\xce\x57\ +\x47\xfa\x69\xaa\x4a\x03\x06\xb8\xe9\x3e\x59\x2e\x62\x74\x76\x26\ +\x9f\x70\xaa\xf5\x4d\xca\xc7\x31\x23\xc9\x55\x30\x2b\xf9\xa9\x23\ +\x5e\xb1\xd1\x48\xb0\xa7\xe6\xa5\xe6\xb1\x5e\x02\xf5\x51\x64\x03\ +\xcb\x53\x6f\x73\x73\x13\xfb\xc7\xd7\xb1\xbf\x59\xe7\x7f\x93\xad\ +\xd6\xb1\x5d\xf1\xb4\x98\xbc\x52\x3a\xce\x6f\x7e\xfb\x4c\x56\xfc\ +\x7a\xbe\xd5\x01\x69\x5d\xb6\x2a\xa7\x9f\x68\xe3\x03\xcf\x1b\x89\ +\xd4\x11\x38\xeb\x34\x37\xd0\x32\x64\x3f\x21\xad\xea\x8c\xd7\x6d\ +\x1e\xb8\x69\xb8\x53\x7e\x1b\xd9\x55\x5e\x5a\x55\xfb\x69\x4e\x1a\ +\x40\xdf\xc3\x86\x5f\x5a\xcb\xc6\x5a\xc9\xdd\x5e\xf2\x73\xab\xfa\ +\x87\x47\x7e\x06\xe7\x8e\xd5\xf4\xad\xd5\x80\xfc\x32\xd5\x78\x44\ +\xe4\x40\x4a\x4b\xa7\x41\x45\xdb\xb8\xe1\x0a\x50\x68\xfe\xda\x47\ +\x75\xa6\x83\x4e\x88\x15\xbf\xae\xe6\xfc\xb8\x9c\xc5\x84\x57\x3c\ +\xde\x7f\x10\x71\xce\xe6\xd9\xa5\xb0\xc2\xbd\xfb\x11\x17\xe7\x11\ +\x8b\x85\x02\x76\xb8\x19\x20\x3c\xd6\xf9\x32\xe3\xe9\xa6\x51\x4c\ +\xce\xd9\xc4\x5e\xc6\x6e\x79\xa6\xbe\x39\x51\xff\x19\xc7\x56\x65\ +\xa5\xd8\x9c\x9a\xf9\x94\x20\xed\x20\x8c\x09\x1c\xd4\xb7\x87\x8c\ +\xf8\x88\xc8\x83\x97\x3d\x3f\x86\x62\x91\x3d\x74\xa6\x4a\x40\x34\ +\x8c\x0f\x23\xd4\x83\xc7\x63\xce\x23\xf9\xcb\x7f\xa6\x8d\xcf\xa6\ +\x31\x3d\xd7\x38\xc1\x6b\x2b\x55\x0e\xbf\x02\xb2\xc6\xb7\x4a\xe5\ +\x40\x0d\x67\x2d\xde\x95\xf5\xd0\xf3\x05\x90\xcd\xcf\xc6\x17\x82\ +\x72\xcc\xce\x27\xc3\xe7\x77\xdb\x4c\xe3\x97\xed\xc4\x91\x53\x36\ +\x6c\x0c\x30\xc8\x07\x87\x62\x80\x08\xee\xa3\xaa\x5b\x85\x50\xbd\ +\x73\xae\x23\x06\x9c\x27\x60\xdd\x6c\x13\x00\xdf\x90\xf1\x03\x90\ +\x39\xe7\xb4\x42\xcb\xdb\x1b\xbb\x22\x79\xb5\xd6\x6f\x5e\xed\xe2\ +\x8b\x7f\xfc\x4f\xc7\x97\xff\xf8\x9f\x8c\x25\x32\xc6\xa0\x2a\x43\ +\xda\x7e\x26\xa7\x4f\x1f\x7c\x8a\x5d\xfb\xd4\xc1\xf3\xea\x6a\xc8\ +\x83\x1e\xc4\x47\x3c\x7d\x36\xdd\xc5\xbd\xf9\xe7\xe2\xaf\xff\xf2\ +\xff\x18\x67\x17\xcc\x15\xd6\x52\x69\xe7\x8e\xb5\xb2\x6f\x31\x5e\ +\x31\x97\xa8\xf4\xee\xef\x4d\xa3\x31\xad\xdb\xc8\x4a\xa7\xf1\xc0\ +\x53\x2b\x5d\x6f\x9c\xc6\x0a\x03\x3d\xc3\x51\xa4\x87\x1c\xf4\x20\ +\x1c\xf5\x98\xff\x0c\x7c\x44\xda\x82\x8f\x96\xaa\x8c\xf2\x6d\xef\ +\x5f\x2b\xe4\xeb\xda\x7c\xfe\x28\xc6\x4d\xe4\x8b\xa5\xc6\xc6\xd9\ +\x2e\x6e\x6e\x78\xd5\xa1\x99\xbe\x0e\xe5\x29\x93\x56\x39\xa6\x47\ +\x3d\xd5\x32\xcc\x98\x8e\x1e\x0f\x8b\xd9\x74\x8c\x93\xef\xa7\x98\ +\x8a\x06\x4c\x35\x75\x41\x23\x33\x65\xc6\x4c\xeb\x90\x3c\x8e\x79\ +\x2d\x39\xec\x98\xdf\xe5\xd3\x67\x2f\x5f\x8c\xe2\x27\xbe\x30\x8e\ +\x9f\xfc\xf2\x2e\x5e\x7f\x7d\x1d\x97\x17\x1a\xfb\x77\xba\x26\xf8\ +\xbf\xa2\xf6\x9e\x6f\xb5\xb9\x0a\x65\x13\xa5\x76\xa2\x8d\xf7\xf1\ +\xe4\xe9\x36\xbe\xfe\xce\x36\xbe\xfa\xc6\x28\x3e\xb8\xd5\x35\x4e\ +\x72\x66\x0b\x1a\x3d\x7c\x24\x33\xb7\xa5\x73\x25\xe2\x6f\x79\x92\ +\x2c\x6f\xcd\x96\x5d\x03\xb6\x69\xbf\x2a\x1c\x3d\xcc\xf5\xe9\x14\ +\x8d\x07\xd8\x02\x2e\x65\xd5\x69\x72\xa8\x11\x2d\xd8\xba\x9a\xd7\ +\xe5\x8b\x7e\xe0\xd9\x4b\x26\xb0\x2f\x69\x85\xfa\x6c\x16\x4a\x58\ +\xbc\xa4\x04\xd8\x35\xca\x34\x80\xc7\xd6\xc6\x87\x66\xae\x20\xcc\ +\x65\xdd\x3a\x96\xa7\x76\xc3\x3c\xe9\xcf\x9b\x14\xa8\x93\xe4\x54\ +\x7a\xca\xd9\xc5\x8a\x67\xaa\xc9\x64\x4b\x47\xa6\x22\x48\x2c\x23\ +\x01\x79\x80\xca\x57\x30\x24\xd7\x60\x88\x66\x23\x89\x8a\xe1\xa3\ +\xd3\xf2\xc5\x47\xd5\x94\xec\x5e\x5f\x5f\xc7\x7a\xa7\xf9\x14\xd7\ +\x94\x14\x1b\xda\xc6\x57\x3b\xba\xac\xa6\x15\x4a\xa9\xf1\x9d\xb9\ +\xe3\x29\x6b\x9b\xca\x96\x17\xcf\x31\xcb\x4a\x92\xc8\x07\xf2\x22\ +\x68\x3a\xe7\x27\x0d\xd7\xea\x9b\x6b\x4d\xad\xf8\xff\x34\x36\xad\ +\xfc\xf4\x9f\xbe\xd4\x31\x55\xd1\x92\x9a\x4e\x51\x82\x2a\xa2\xc9\ +\x9c\x73\x09\x5c\xcb\x15\xcd\x2a\xc8\x9e\x96\x35\xdc\xb9\x7f\x5c\ +\x77\x80\xec\x65\xbf\x91\x1e\x1b\xfd\xea\x5f\xeb\xd5\x21\xce\xd5\ +\xb9\x3e\xf3\x92\x64\xec\xfe\x1f\xea\xc9\x43\x87\x6c\x83\xb4\x9f\ +\x96\xc0\xac\x43\xd8\x78\xe1\x3f\xd7\xf6\xdb\x45\xdc\xd3\x3c\xeb\ +\x0b\x9f\xd3\xdc\x5a\x5d\xe2\xdd\x77\xd4\x06\x9a\x23\xe6\xb5\x56\ +\x29\x39\xc7\xbb\x7c\x07\x70\x14\x3f\xf2\x32\x21\xb3\x1f\x00\xb1\ +\x2c\x67\x03\xe8\xd6\x67\x8e\x25\x02\x65\xe8\x14\x66\x57\xfe\xf8\ +\xe2\x58\x4f\xdb\x47\x91\xac\x47\xee\x9d\x4f\xe2\xe1\x03\x9e\x56\ +\xa6\x3d\xe9\xdf\x6a\xc7\x9a\x43\x0f\x52\x16\x60\x5f\xf1\x01\x6b\ +\x28\x05\x88\x0f\x75\x8c\x88\xca\x19\xc6\x20\xbf\xfe\x9e\xb5\x48\ +\xf9\x5a\xce\x3e\x03\xe4\xee\xfe\x2a\x27\x08\x1c\x3c\xed\x76\xbc\ +\xf9\x96\x60\xf9\x00\x5b\x69\x00\xe8\xb7\x1f\x7d\x81\xfa\x1c\xb1\ +\xa9\xd6\x65\xa2\x45\xd8\x31\xca\x6c\xe3\xea\xd1\x34\xfe\xd8\x3f\ +\xf2\xef\xc7\x17\x5e\xff\xa2\x64\x59\x8f\xcf\xba\xf9\x0c\xe3\x04\ +\x27\x38\xf5\x8a\x13\x9c\xe0\x63\x84\xd3\x86\xda\x09\x4e\x70\x82\ +\x4f\x07\x30\xaf\xfc\x76\x57\xf8\x8f\xf1\xea\xff\x0f\x62\xea\xd8\ +\xbd\xbb\xce\x8a\x66\xd2\xbd\xdb\xc6\xab\x3f\xf5\x23\xf1\x37\xff\ +\x9f\xff\x4d\x6c\xaf\xbe\x15\x97\xcb\x85\x6f\x04\xb0\x34\xca\x49\ +\xae\x26\xd7\x9a\x0b\x43\x76\xd3\xe8\xc1\xec\xb7\x4d\xee\x7d\x6b\ +\x20\x49\x07\xbf\x7a\x2f\x09\xd3\x2c\xf6\xbd\x20\xd2\xd7\x1b\x76\ +\x96\x29\x0a\xcd\xc7\x78\x00\x35\x33\xb7\x9e\xe3\x95\x3b\xa8\x39\ +\xd2\xc9\x39\x88\x59\x74\xb3\x85\x1a\xb8\xb3\x51\x30\x8c\x26\x5d\ +\x06\x4b\xb1\xcb\xc2\x87\xd2\x16\x52\x8d\xd8\x2d\xca\xc5\x2f\x01\ +\xed\xbf\x0e\xbb\xda\x30\xf0\xba\x41\x9f\x4c\xc1\x31\xa9\xe6\xc7\ +\x50\x62\xe8\x88\x8f\x86\x5e\xe5\x59\x65\x38\xe9\xb2\x2c\x6b\x95\ +\xea\x30\x1b\xc5\x6c\xc1\x4d\x72\xb5\xe3\xcb\x5a\x90\x7e\x6e\x12\ +\xd3\xd7\x66\x71\xf1\xea\x21\x66\x0f\xc6\x31\x1b\xcf\x63\x3f\xf7\ +\x03\x6c\xb1\x53\xdb\x4f\x1e\xef\x63\xf7\xf6\x3a\x6e\xde\xd8\xc4\ +\xf5\xdb\x87\xd8\xdc\x8e\xe3\xa0\x85\x0f\x5d\x00\xd3\x6e\x2b\xb2\ +\xd0\xb1\x95\xc3\xe0\xcc\x93\xec\xe0\x6e\xbc\x12\xa4\x85\x14\x36\ +\x15\x70\xb3\x67\x39\x5f\x23\x7d\xaa\x5f\xd0\x5f\xc0\xee\x0a\x60\ +\xf8\x2c\xda\xa9\x7a\x36\x03\xb4\x78\x9c\x8d\x16\x31\xbf\xa7\xb2\ +\xbe\xa0\x05\xf7\x46\x8a\x4f\x77\xb1\xf5\xc6\xcc\xde\x4f\x93\xb1\ +\x4a\xf4\x8d\x1c\xee\x8c\x40\xa8\xa9\xf2\x06\x4f\x2d\x6a\x5b\x60\ +\x91\xab\x45\x3d\xff\x91\xb6\x5f\xef\x73\x53\x6e\x23\x9e\x5f\xf5\ +\xa8\x74\x03\x5d\xe8\xdc\x30\x9e\x78\x43\x6d\xec\x0d\x35\xc5\x0d\ +\x85\x29\x1c\x30\x38\x77\xda\xa2\x33\xe3\x3a\xd2\x61\x86\x50\x69\ +\x5c\xd3\x1d\xdd\xb0\x52\xb0\xf8\xf4\xae\x8c\xbe\x54\x96\x00\x3b\ +\xa6\x4a\x9f\x0c\xb7\xd7\x37\x71\x78\x7c\x1d\xe3\x9b\x6d\xb4\xd7\ +\x2a\xed\x78\xca\xee\x66\xe3\x8d\x41\xd7\x85\xc0\xaf\x6b\x54\x62\ +\xdf\x18\x62\x51\xcc\x0d\x23\xec\xc8\xaf\x7c\x35\x63\x95\xb9\xe4\ +\xa4\x83\x9f\x75\x91\x76\x3c\x54\x20\xf7\x6b\x1e\xc5\xf3\x93\x69\ +\xdc\x31\x55\xfd\xf1\xb4\xeb\x78\xa3\x2c\x94\x9f\x6c\xfb\xa9\x3c\ +\xdf\xa4\x14\xe1\x0d\x4b\x85\x15\xf5\xad\xc0\xc6\x1f\xe9\x5b\x7e\ +\x80\x6d\xb7\x1a\x10\x90\xb7\xa0\xdd\xb7\x18\x48\x04\x8a\x0d\x6e\ +\x50\x3b\x4a\x80\x2c\x1e\x98\xa4\x44\x6d\xba\xf2\xa1\x5e\xf9\x75\ +\x34\x7f\xae\x7f\x23\x3c\x5f\x2c\xe2\xec\x72\x16\xcb\xcf\x2d\x22\ +\x96\xf7\x75\xb2\x5c\x46\x3c\xbc\x10\xfd\x42\x84\xda\x5a\x27\x98\ +\x12\xa9\x13\x6e\x66\x3a\xef\x85\xb9\x61\x14\xcb\xe0\x75\x8f\xe3\ +\x83\xfa\xc3\xe2\x5e\x4c\x1f\x48\xe7\xde\x99\xdc\x9f\xfb\xd5\x4c\ +\xbb\xdb\xec\x4b\x8c\xad\x7c\xec\x41\xf9\x05\x74\x7e\x0b\x4c\xda\ +\xc9\x64\x0e\x44\xc7\x20\x01\xb2\x96\x36\xed\x36\xa8\x7e\xd1\x2a\ +\x8b\xb8\x14\x0f\xea\xa7\xee\xab\x7e\x4d\xea\xd4\x4f\xa6\xf1\x7f\ +\x69\xbc\xe6\x91\xcd\x34\xdf\x08\x97\x5e\xeb\x5f\x0d\x7a\xcb\x43\ +\x3e\x34\x92\x96\x17\xe1\x38\x1d\x92\x94\xe9\xa8\x6f\xfa\x98\x5c\ +\xa8\xd6\xbc\xbc\xa6\x88\x47\x26\x26\xc3\xa7\xd3\x2c\xc9\xfe\x40\ +\x31\x8c\x93\x45\xa4\x70\xf2\x6d\x17\xcc\x06\x1a\xfd\x58\x63\x80\ +\x69\xf4\x0c\xd8\x20\x35\x3c\x50\xf1\x85\x28\x2b\x37\xc3\x67\x63\ +\x6e\x8e\xe7\x8d\x71\xc4\xbe\x89\xa9\x7e\x0c\xfd\xb6\xc6\x96\xd5\ +\xee\x5e\xfc\xae\xff\xfb\x7f\x12\x2f\xbc\xfc\xa2\xfd\xa7\xc7\xd8\ +\x80\x01\xba\x85\x4f\x39\xfc\x00\xb8\xf8\xa9\x80\xd6\xb4\xdf\x0e\ +\x5c\x97\xad\x42\xd5\x2b\xc6\xbb\x78\xe9\xde\xab\xf1\x4b\xbf\xf6\ +\x4b\xf1\x78\xf3\xa6\xce\xad\x55\x4c\xb8\xd3\xec\xae\x91\xfd\x3e\ +\x55\xb9\x98\x15\xd9\xf8\xc6\x3d\xaf\x28\xd8\x49\x0d\xb0\x37\x6f\ +\x08\x95\xe6\xf8\x7c\x1d\xd2\x43\x80\xef\x0e\xef\x98\xcf\x8d\x16\ +\x0c\x1f\x95\xee\x3b\x83\x53\x96\x79\x86\x79\x95\x4e\x07\xf9\xa6\ +\x73\x8e\xa2\x02\xe7\x4b\x9d\xdf\x3a\x91\xaf\xf9\xff\x30\x5d\x63\ +\xb8\x2e\xe5\x89\x4d\x39\xd0\x38\xce\xdf\x5e\x35\xd7\x3a\x42\x3a\ +\x24\xa9\xd8\x11\xdf\xf9\x53\x1f\xbd\xb4\x01\xa2\x66\xbd\x93\xda\ +\x8e\x0f\xc6\xe6\xab\x2e\xb8\x2e\xf2\x4a\x3a\x66\x49\x0b\x8d\xf5\ +\x3f\xf2\xda\x38\x7e\xe2\xf5\x6d\x7c\xe9\xb5\x6d\x3c\xe0\x55\x76\ +\xe3\x73\x5d\xa7\x16\x1a\x2b\x18\x03\xa4\x3f\xd2\x38\xea\x0d\x4e\ +\xd2\x10\xcf\x72\x4f\xa7\xdb\xd8\x68\x8e\xf5\xe6\xbb\xeb\xf8\xea\ +\x5b\x9b\xf8\xd6\x07\xe3\x58\x73\x6d\x95\x7d\xbc\xb4\x4f\x14\xdc\ +\x5f\x7d\x44\x33\x44\x59\xa2\xaf\xfd\xf1\xf8\xad\x88\xc3\x33\xa8\ +\xc3\x10\x4d\xd3\x50\x6d\xdc\xe2\xd8\xe5\x7f\xcb\x7c\x03\x5b\xbe\ +\xd2\xe4\x73\xe1\xd9\x9c\xd7\x36\xd3\x17\xe5\x57\xeb\x4f\x03\x43\ +\xcd\xca\xb1\x35\xf2\xa2\x96\x19\x4b\x93\x47\x12\x4f\x0d\xcc\x03\ +\xf3\x11\x5f\x11\xe2\x39\xb5\xe0\x93\x3c\x98\x89\x34\x37\x51\x42\ +\x7e\xcc\x30\xe1\x7f\x68\x9f\x01\xd2\x0c\xf3\x4d\x1b\xad\x8d\x6d\ +\x8f\x8c\xa4\x52\xd6\xbb\x0f\x60\x5d\x93\x59\x86\xd4\x48\x30\x8d\ +\x1f\x03\xba\x65\xc5\x3c\xc4\x65\xd9\xed\xe2\xc9\xf5\x23\xcf\xa3\ +\xd0\x42\x27\x4b\x4e\x34\x53\x82\x72\x83\x8c\x6b\x8c\x23\x0e\xe8\ +\x52\x27\x44\x5b\xbd\x38\x3f\xb0\xfd\x6d\x01\x46\x8f\xad\x00\x18\ +\x27\x0f\x92\x7a\xc2\xde\x4a\xf3\xf3\x5b\x5d\x8f\x78\x85\xaa\x37\ +\xd4\x34\xbf\xf0\xc6\x85\xb4\xfd\xc4\x97\x3c\x6c\xa1\xab\x29\x6c\ +\x80\x93\x4c\x83\x80\xfd\x48\x67\x92\xd3\x88\x4a\x5b\xfd\xa8\x41\ +\xa5\x2a\x18\xc8\x6c\x42\xfd\x4a\xf3\xbd\x03\xe7\xce\x6e\x1a\x2f\ +\x3c\x58\xc6\xe5\xbd\xb4\xc3\x88\x90\x63\x94\x82\xc7\x3e\xd5\xa7\ +\xfa\xdd\x74\x42\x3d\xaf\xbd\x49\x78\xab\xb9\x20\x7d\x73\x32\x67\ +\x0d\xba\x88\xf3\xf1\x45\xbc\xfe\x19\xe6\x25\x11\x6f\xbe\xb1\xd5\ +\xd4\x71\xed\xed\x60\xd2\xa5\x5b\xf4\x57\x70\x0f\xd4\xeb\x1d\xd6\ +\xb3\xd0\xd2\x3a\x02\xf4\x74\x87\x21\x28\x6c\xaf\x34\xc8\x13\x81\ +\x6a\x8d\x78\xc9\x5d\xcb\xa2\xe1\x11\x78\xca\xfd\x81\xe6\x55\x0f\ +\x1f\x68\x1c\xd0\x39\x76\x38\xa8\x10\x8c\x79\x0a\x9c\x0b\x77\x2a\ +\x52\x69\xaa\x2c\x65\x0f\x18\x90\x1d\xe0\xa9\xdd\x22\x9f\x64\x24\ +\x4d\x9d\xb0\x29\xad\x90\x97\x96\x4a\xdd\x94\x0a\xba\xbe\xa6\xf6\ +\xef\x37\x84\xf5\x81\xa7\xce\xd5\xfa\x27\x3a\x10\x20\xc3\x5d\xe2\ +\x28\x9e\xb9\x75\x75\x5f\xd9\xf9\x4c\xa1\xcc\x8e\x71\x06\xa8\x17\ +\xdc\xde\x8b\xe5\xe4\xc7\xe2\x9f\xfb\xa7\xfe\x15\xe5\xc7\x8e\xbe\ +\x2f\x13\x03\x20\x72\xc4\x38\xc1\x09\x3a\x38\xf5\x8c\x13\x9c\xe0\ +\xe3\x83\xd3\x86\xda\x09\x4e\x70\x82\x4f\x07\x7c\xa7\xab\xfb\xc7\ +\x78\xf5\xff\x07\x31\x75\x9c\x86\x58\x4e\x7e\x0d\x8e\xea\xe0\x27\ +\x7e\xe6\xb1\x79\x7a\x1d\xbf\xf2\x3f\xff\x6c\xbc\x74\xb1\x14\x8b\ +\x1b\xe2\x4c\x92\x5b\x9a\x4a\xe7\x99\x76\x8b\xf6\x76\x52\x4f\x47\ +\x2f\x0a\x08\x66\xcb\x6e\xde\xa8\xcc\x5f\xee\x32\xcb\x4f\x41\x3e\ +\xa5\x86\x42\x9f\xc6\xf1\x3c\x74\x90\xb1\x5c\xb8\x64\xd6\x25\x2f\ +\x37\x88\x15\x29\xba\x4f\x0b\xcd\x64\xde\x9c\x96\xb6\x17\x0b\x8a\ +\x81\x40\x08\x91\xf5\x73\xe5\x5d\x30\xb4\x78\x27\xb9\x22\x5e\x04\ +\xe0\xd8\x44\x98\xc5\x2c\x9b\x01\xac\x94\xbc\x7a\xa8\xb4\x8a\x7a\ +\x91\x01\x26\x2e\xa0\xac\xc3\x5c\x6c\xe3\x0e\x20\x7f\x96\x5b\x20\ +\x7d\x64\x19\xa4\x09\xe1\xcd\x34\xa1\xa9\x16\xa3\x8b\x79\xcc\x2e\ +\x16\x31\x7d\x65\x16\xa3\x2f\x8a\xf7\xd9\xb1\xf7\x01\x26\x0f\xc6\ +\x31\x9f\x4e\x62\xcb\xff\x25\x8d\xf8\xf3\x77\x39\x7a\xb3\x89\xdd\ +\x5b\xb7\x71\xf3\xc6\x2a\xae\xbf\xb9\x57\x1f\x80\xaf\x45\xb1\x16\ +\x56\xbd\x97\xca\x80\xf2\x25\x95\x60\x22\x3d\xe8\x00\x92\xc2\x0e\ +\x92\x75\xa8\x53\x83\xa8\x20\xdd\x56\x74\x97\x48\x5f\xea\xd4\xfd\ +\x81\x8f\xe3\x66\x24\x46\x8f\x1f\xbb\xba\x9c\x0a\xdc\xfc\x9e\xcd\ +\x63\xce\x93\x69\xaf\x71\x43\x46\x7e\xdf\x8c\x62\x7d\xab\x85\xf7\ +\x56\x4e\xa8\x7c\x7e\x3d\x23\x3f\x7b\xe5\x2e\x04\x8b\xc5\xba\xc1\ +\xce\x42\xd2\x34\x9b\x42\x6c\xb0\xb9\xed\xf2\x29\xb4\x7c\x3a\x0d\ +\x3a\xe3\xf9\x93\xe0\xa6\x4f\x7a\xd9\xc3\x09\xf9\x32\x65\x03\xe5\ +\x7c\x19\xa3\xe5\x02\xef\xec\x6b\x96\x3f\xfd\x6d\xa0\x54\x1d\xa7\ +\x93\xe0\xa2\x42\x76\x39\x1f\x06\x90\x4b\xd0\x26\x72\x9a\x96\xd0\ +\x1d\x4a\xb8\xea\xa4\x01\x31\xf4\xfd\x34\xde\xed\x2a\xe2\xc3\x6b\ +\x3f\xf9\xc5\x4d\x34\x6e\xc4\xe4\xd3\x03\x7b\x3f\xa9\xb6\x57\x98\ +\x70\x8a\xcb\x01\xf2\x77\xeb\x52\x47\xd4\x0b\x01\x83\x38\xa7\xb4\ +\x74\x13\xdf\x24\xf2\xe6\x99\x64\xd8\xb2\xbd\xac\xc7\xe4\x49\x09\ +\x1d\x55\xa6\x5f\x83\x2a\x7c\xe0\x86\xc9\x78\xa7\x76\x52\x46\x53\ +\xca\xc3\x86\xe7\xc4\xbe\xc4\x5a\x39\xae\xd8\xe4\x93\x7f\xb7\xf2\ +\x89\x4d\x4c\x02\x32\xbc\xc1\x56\x07\xd8\x15\x72\x01\xdd\x53\x4c\ +\xbb\xf8\x0a\x3e\x0f\x21\x3d\xa4\x20\x40\x96\x7d\x28\x23\x29\x6f\ +\xd1\x21\x50\x95\xde\x9f\x14\x66\xa3\x69\x36\x1e\xc7\xed\x4a\x29\ +\xd5\xc1\x5e\xbc\xbf\x88\xe5\xab\xf7\x22\xee\xbf\x14\x71\xf6\x20\ +\xe2\xe2\x52\x6d\xae\xc0\xe6\x1a\x61\xb1\x94\x05\x75\xc4\xdb\x99\ +\xea\x46\x65\x1c\xcd\x23\x78\xda\x8b\x57\xac\x2e\xee\x47\xf0\x9a\ +\xd5\x07\x67\x31\x79\x49\xe7\xe2\x64\x11\xdb\xab\x51\xdc\xb2\xd1\ +\xe9\xa1\x95\x9b\x98\x59\xe5\xad\x19\x8d\x06\xfe\x0d\xc8\xbb\x6e\ +\x67\x7d\x08\x32\x8d\x22\x83\xf8\x30\x74\x60\x86\x0e\x8c\xc3\x54\ +\xd8\x4c\xc1\x4f\xa6\xe5\x7f\xa6\x4d\x96\x0a\x8a\xfb\xa9\x35\x02\ +\xba\xa4\x29\x28\xf3\x1f\x01\x28\x52\x10\xd0\x20\x91\xa0\x95\xad\ +\x27\xe8\x2f\xa2\xf5\xc5\x66\x91\x99\x1f\x37\x54\x79\x3a\x8e\x57\ +\x4d\x2a\x0e\x9f\x9e\xe8\xfe\x85\xf9\xd6\x27\x9c\x50\x07\x47\x93\ +\x97\x2c\x1d\xe9\x97\x9c\xa7\x6c\xa6\x11\xa8\xe0\xd2\xcb\xf3\x4c\ +\x40\x7f\x86\x49\x97\xac\xf4\xfc\x9f\xd0\x84\xcd\x79\xb5\xbf\x37\ +\xf6\x14\xa7\x1f\x93\x66\x23\xbb\x3c\x51\xf3\x8d\xab\x43\xbc\xf2\ +\x4f\xfd\x99\xf8\x6d\x7f\xfa\xcf\xc4\x5c\x16\x78\x92\x41\xde\x3a\ +\x7d\x96\xe2\x07\x08\x7e\xc0\xdc\xfd\xbe\x01\xf5\xf4\xdd\x36\xb1\ +\x75\xe9\xb7\x6c\xc8\x1e\x62\x39\x79\x39\x7e\xfe\x97\xff\xc7\x38\ +\xbf\xb7\x8d\x69\xfb\x2f\x35\xa9\xa8\x57\x66\xff\x26\xa8\x7f\x65\ +\x5f\x97\xc4\x3c\xcc\x64\x46\xc9\x2b\x2a\x59\x82\xe2\x91\x8e\xeb\ +\xa0\x04\xed\x1a\x99\x3a\x4d\xb1\xe1\xbb\x40\x7f\xc7\xb2\x7c\xb0\ +\x8e\x02\xe7\xcc\x40\x36\x84\x8f\xb2\xf2\x6d\xa1\x25\xe2\xfc\xc2\ +\x47\xc6\x1c\x7d\xb0\x3e\x3e\x4c\xe3\xe2\x5c\xd7\x6a\x5d\x0f\xae\ +\x6f\x26\xa1\xe1\x7f\x00\x99\x30\x87\xb3\x32\x92\x8e\x15\x88\xc7\ +\x80\x61\xf9\x5d\xa8\xb4\x84\x4a\xda\x78\x0d\x5a\xac\x4b\x6b\x3b\ +\x69\x0c\x6c\x9a\x93\x5a\x0e\xf0\x3f\x68\x23\x8d\xe7\xaf\xf0\xbf\ +\x4e\x5f\x58\xc7\x8f\x7e\x7e\x1d\xaf\xbc\x78\xd0\x90\x39\x57\x79\ +\xe6\xba\xf4\x6b\xcc\x1f\x6d\x7d\xed\xe1\xf5\x6a\xb4\x05\xf3\xa6\ +\x2c\x2b\x71\x9e\x16\xc1\xee\x3a\x3e\xf8\x70\x15\x5f\xfd\xe6\x3a\ +\xbe\xf6\xad\x51\x3c\xe5\x55\xd4\xaa\x98\xdc\xd8\xc7\x57\xe9\x43\ +\x2a\x6e\xa4\xa3\x25\x55\x88\x36\x3e\x12\x2f\x8e\xbf\xc5\x2d\x19\ +\x9e\x67\x1c\xe8\xcb\x5f\x50\x71\xb4\x18\x0e\x3d\xae\xa9\x9c\xfc\ +\xdf\x1f\xe9\xa6\x9a\x54\x2d\x66\x6c\x02\xa6\x16\xb8\x8d\xbf\xe6\ +\x28\x0d\xad\x47\xb6\x04\xa5\x36\xe1\x21\x98\x60\x2d\xec\x92\x42\ +\x7a\x2a\x22\xa5\x6c\x72\x72\x21\x8d\x9b\x0e\x9e\xc6\x67\x6e\xb1\ +\x43\xd3\xfc\xfe\xd1\x02\x42\xea\x4c\xf3\xa9\x32\x6f\x40\x27\x0b\ +\x00\xd1\xb8\x09\x78\x64\x6e\xcb\x97\x58\x53\x73\x5e\x15\x37\xb4\ +\xfa\x55\x28\xfb\x69\x1b\xb0\xb7\xc9\xe4\x90\x0d\xe2\xf4\x04\x7e\ +\x2c\x77\xa5\xeb\x36\xf5\x96\xbe\x92\x56\xe5\x29\xda\x49\x2b\x00\ +\xbd\x8e\xa7\x8d\x0a\xcc\xbb\xe0\x67\xc8\xd2\x93\x1e\x1d\xf2\xa8\ +\xb4\xd0\x18\xb0\x4e\xca\xf0\x24\x99\x19\x47\x8f\xb7\x4a\xdc\x6e\ +\x47\x71\xbd\x61\x33\x8d\xdf\xf1\xd1\x3a\xc8\x73\x03\x8d\xd2\x18\ +\x9c\xae\x12\x0b\x92\xaf\x78\x7e\xab\x9e\x49\x3b\xa8\x90\x26\x03\ +\x4a\x09\x94\x35\x52\x60\xa7\x12\x52\x96\x3a\xe6\x2b\x50\x56\x2e\ +\xa1\xcc\xe9\x16\x67\x0f\xe3\xd5\x97\x7d\x46\x94\x01\x7e\x58\x40\ +\x3b\x8b\x54\x65\xf0\xf4\xe6\x28\x56\x71\x73\xcd\x8f\xe0\x78\x8d\ +\xe5\x3a\x36\xcc\x09\x0f\x93\xb8\xa7\x79\xf5\x64\xb1\x88\x45\x9c\ +\xc7\x17\x5e\x3f\x8f\xc3\x6c\x13\x6f\xbd\xc3\x0f\xc4\x54\x62\xce\ +\x33\x1a\xb2\x7c\x29\xe4\xb6\xed\xa0\x17\x1b\x5a\x39\x3a\xa0\x9d\ +\xc5\xec\x78\x77\x4e\x1c\xc7\x38\x74\x09\x95\x67\xa9\x74\xaa\xc2\ +\x29\x52\x59\x6a\x22\xa9\x51\xc0\xaf\x8e\xbe\x7f\xae\x39\x24\x9b\ +\x69\x0b\xf1\xf7\xea\xd7\xb4\xbb\xfa\x90\xd7\x1c\x62\x61\xb6\x87\ +\xde\x76\x83\x3b\x51\x43\xf6\x62\x13\x9d\x9c\x74\xfe\x1b\x02\x15\ +\xde\xff\x25\x2d\x06\xe7\x6f\x0f\x03\xe5\x02\x6f\xfe\xda\x87\xfa\ +\xb8\x6f\x29\xa8\xed\xcc\x2f\x59\x2a\x27\x7a\x06\x64\xd3\xa2\xd6\ +\xe1\x48\x44\xde\xbd\x67\xe2\x51\xe6\x14\x79\xf3\x4c\x8b\xb1\xf5\ +\x93\x59\xfc\x91\xdf\xff\xaf\xc5\x17\x5f\xfe\x09\x27\xb5\xff\x43\ +\xff\x30\x7a\xc4\x38\xc1\x09\x7a\x38\xf5\x8c\x13\x9c\xe0\xe3\x83\ +\xd3\x86\xda\x09\x4e\x70\x82\x4f\x1f\x78\x22\x98\xa4\x31\x01\xde\ +\xc7\x00\x1f\xdf\x24\xe2\xae\x53\x8a\x6b\x32\xce\x1d\xc3\x97\x7e\ +\xc7\x97\xe2\x17\xff\x3f\xff\x4d\xc4\xd3\x0f\xe2\x82\x15\xcf\xe4\ +\x10\xbc\x42\x82\xd9\x30\x7f\x22\xee\x27\x53\x86\x70\x77\xd2\xab\ +\x28\x37\x43\xcc\x86\x06\x29\x3d\x37\x97\xda\x2b\x28\x7c\xf3\x27\ +\x57\xee\x89\x95\xa0\xdb\x2c\x01\x9b\x2c\x79\xa1\x24\x14\xaa\x7e\ +\x99\xf8\x1b\x6a\x41\xc5\x82\x10\x8d\x76\x00\x1d\x95\x10\x35\x42\ +\xa5\xef\x81\x48\x09\x2b\x6a\x1f\x28\x83\x3f\x69\x3b\x45\xe0\x3e\ +\xb0\x84\x6c\x37\x54\x7d\x63\x8b\x8d\x1e\xd5\x8f\xff\x60\xdd\xef\ +\x2d\x91\x86\x9d\xc8\x4c\x8f\xb2\x36\xd1\xc5\x12\xec\x43\xcf\x83\ +\x72\xf2\xe7\xc2\xd0\x1b\xea\x36\x9b\x90\x1b\xd1\x93\xf9\x38\x26\ +\x17\xd3\x18\xbd\x34\x8d\xf1\xeb\xbb\x98\xbd\xb4\x8f\xf9\xe5\x21\ +\xa6\xfc\xcf\xd3\x72\x16\x3b\x2d\xee\xc6\x5a\xa2\xee\x26\x3b\xf9\ +\xa9\x05\xec\x23\x2d\x60\x7f\xf3\x69\xdc\xbc\xb1\x8d\xdb\x27\xfc\ +\x6a\x59\x86\x76\xb2\x69\x57\x5a\x2e\x3a\x26\x4a\x50\x24\x3f\x9d\ +\x74\x10\x0a\x06\xa4\xe1\x6e\x1c\xe8\x1a\x24\x85\xe4\x91\x41\xb6\ +\x2b\xb4\x1b\x86\xfa\x52\xd9\x5d\x39\x47\x94\x73\x3c\x8d\xf9\x2b\ +\x62\xfc\xc8\x24\xc6\x0f\xb4\xc8\xbe\x9d\xc5\xf6\x6a\xef\xff\x3c\ +\xe3\x49\xb3\xe0\x29\xa8\xf6\x94\xca\xe0\x69\x15\x6f\x06\x49\xe6\ +\x57\x0b\x8a\xcf\x93\x51\xe8\x7b\x23\x8d\x27\xd3\xd8\x54\x5b\x73\ +\xa7\x02\x39\x76\xe4\x27\x6d\x2a\x16\x6e\xd0\xae\xbe\x91\x2e\xa7\ +\xa6\xf3\x79\x8c\x2f\x96\x31\x5a\x08\xdb\xc9\x16\x9e\x6d\xbf\xac\ +\xb1\xb2\xc1\x0d\x2d\x19\xf2\xf9\x92\x9c\x0a\x75\xac\xc4\xf9\x6a\ +\x9b\xa4\x9b\x5d\xa7\x80\xc7\x02\x1e\xdc\xd8\xbe\x9b\x90\xca\xbb\ +\xdb\xdb\xd8\x3f\xb9\x51\x79\xb6\x2a\x86\x1c\x57\x31\xfc\x4b\x51\ +\xca\xc2\x2a\x96\xf2\xaa\x8c\xde\x34\x84\x97\xc9\x6c\x4a\x12\x94\ +\xd9\xf3\x71\x59\xe9\x63\xad\xde\xb8\x5b\xd2\x36\xd3\x2c\xe3\x60\ +\x75\x8c\x8a\xe7\x8c\x14\x46\xb2\xab\x3e\x36\x9e\xec\x63\x3c\x13\ +\x77\xb1\xf5\x4d\x94\xb1\xea\x71\xb7\x55\x5b\xdd\xa8\x2f\xde\xee\ +\xfc\xdf\x7d\xde\xf4\xdb\xe5\x66\x9a\xcf\x37\x6c\x97\x2f\x00\x74\ +\x16\xad\x6a\x50\x07\x6e\x5b\x24\x09\x07\x06\x21\x79\x1e\x57\x8e\ +\x20\xe5\x3e\xb7\x1d\x83\x36\xe9\xd4\xd8\x26\xa4\xad\x09\xc3\x9e\ +\xff\xcf\xe3\xde\xf2\x2c\x2e\x5e\x3e\x8b\xd1\x6b\xf7\x22\x2e\x5f\ +\x89\x98\x3d\x54\xe9\x1e\x48\xeb\x61\x1c\xc6\xf7\xd4\x0f\x2f\x22\ +\xe6\x8b\x88\x95\xf2\xf5\x78\x39\x97\x8e\x0a\x38\x99\xc9\x15\x85\ +\xe9\x79\x4c\x1f\x3c\x8c\x8b\x57\xee\x05\xaf\x23\x5d\x6d\xa7\x1a\ +\x5a\x9f\xc6\xe6\x7a\x13\x23\xd5\x3f\x37\x93\xa8\x3e\x97\xd0\xfe\ +\xa4\x07\x79\xe8\x50\x61\x8e\xc5\x29\x75\xc7\x38\xd8\xc6\x77\x00\ +\x0a\xac\x31\x8a\xa7\x28\x0e\x53\x8d\xc9\x7e\x82\x75\x1a\x13\x9e\ +\x4a\x3b\xe7\x17\xe0\xe2\x71\x5e\x7d\xd4\x66\x5a\xc5\x07\xec\x01\ +\x94\x43\xae\xc8\x46\xc3\xa7\x3c\x8a\xc8\x5e\xba\x48\x7f\x17\x3d\ +\x34\x22\xba\x5d\x13\x26\xfc\x97\x1b\x4f\xc7\xd9\x87\x94\xb9\x9f\ +\x13\xd4\xa5\xea\x5e\x77\xe6\x51\x38\x49\x0e\x0a\xee\x9b\xe2\x73\ +\x5e\xfb\x9c\xb5\xd0\x72\xa7\x6b\x80\xaa\x13\x92\x1e\x81\xce\x63\ +\x0d\xe0\xfc\x77\x9a\xff\x13\xad\x6e\xd6\x91\xce\x37\x9e\x94\xf1\ +\xbb\x1a\x2b\x6f\xc6\x2f\xc5\x4f\xfd\xa7\xff\x69\x7c\xe6\x95\x97\ +\x9d\x9d\x2f\x5f\x36\xc8\x31\xed\x3c\x1f\x8e\x65\x1f\xa5\xf5\x89\ +\xc3\xa7\xc6\x91\x4f\x21\xdc\x6d\xce\xef\x54\x57\x74\x58\xa7\x49\ +\x45\xce\xa1\x97\xcf\x3f\x1b\x3f\xff\x8b\x3f\x1f\xd7\xab\xf7\xe3\ +\x8c\x4d\xa4\x4e\xa7\xd7\xeb\x3b\x7a\x92\x79\xbe\x14\xe6\x08\x32\ +\x24\x5d\xdc\xc4\x66\xc0\xd7\xb9\x53\x37\x73\x53\xd2\x60\x48\x0f\ +\x00\x1f\x04\x24\xb7\x4e\x77\x8d\xf1\xe8\xfb\x4c\xaa\x8f\xb0\x72\ +\x07\x8e\xb5\xf0\x83\xcb\x05\x67\x91\xaf\xdf\x9c\x2c\x9c\xf8\xcc\ +\x05\xf5\xb9\xe4\x6d\xb8\x87\x49\xdc\xf0\xba\xdf\x76\x3d\xb1\x13\ +\x6d\xac\x40\x0b\x4e\x96\xc8\x92\x14\x94\xbc\x22\x29\xb1\x0e\x60\ +\x2c\x56\x96\xa4\x87\xb4\x31\xe0\xb5\xe4\x02\x86\x0c\x1b\xe7\x9a\ +\x1c\x1b\x0d\x23\x8b\x58\xce\xcf\xe3\x0b\xaf\x8e\xe3\x47\xbe\xb8\ +\x89\xd7\x3f\x33\x8e\x7b\xe7\xfc\x00\xe2\x52\xe3\x93\xae\x0f\x8c\ +\x13\xbc\xe2\x51\x1f\x5e\x9d\x3d\x99\x2c\x54\xbe\x89\xed\x4f\x74\ +\x1d\xf0\x13\xb6\x5c\x45\x75\x0d\xbc\xba\xda\xc6\xd7\xdf\x7e\x12\ +\xbf\xfe\xd6\x2e\xde\x7f\x3a\x95\x75\xfe\x9f\x38\x3d\xa6\xfe\xdb\ +\x35\xa9\xcd\x27\x78\xb0\xc7\x1c\xea\xcc\x4e\xc2\xe7\x0b\xd7\x92\ +\xc6\xea\xc0\x26\xa8\x5b\x19\xee\x6a\x62\xa0\x80\x95\xac\xdb\xa2\ +\x55\xdf\xba\x0a\xc8\x7b\x9e\xbd\x1d\xe9\x7a\x3c\x89\xcb\xf3\x55\ +\xcc\x98\xab\x7b\x70\x96\x96\xc7\x3f\x28\xc5\x89\xb6\xb4\xd0\x0e\ +\xb4\x19\xe3\x68\xc6\x13\x67\x7b\x89\x34\x34\x9a\xfa\xf5\xdc\xa1\ +\xd3\x49\xcc\x66\x1a\xaf\x29\x84\x46\x07\xdf\xc7\x33\x5d\x37\x49\ +\x27\xa5\x6c\x17\x27\xeb\xc0\x69\x91\xb7\x48\xd7\x77\xa1\x39\x64\ +\xc4\x22\x1d\x07\x35\x62\xb0\x2f\x08\x49\xd6\x04\x2d\x3d\x00\xdf\ +\x0a\x29\x67\xfc\x67\x83\xe7\xe9\xd3\x1b\xf9\xcb\x3c\x85\xfe\xaa\ +\x79\xb3\x02\xfd\x96\x57\x56\x73\xa9\x21\x50\x44\xc2\x56\x8d\x48\ +\xb9\x8e\xf8\x3a\xa4\xd9\xbe\xfc\x19\x77\x29\x8f\x7c\x44\xa7\xf9\ +\xd4\xfa\x7c\xe3\x51\xa6\x8d\xae\x73\x4f\x37\xe3\xb8\x51\xbb\xe5\ +\x7f\xa7\x65\x1e\x40\xc3\x20\x07\x1d\x3a\x9a\xa3\x3b\x0b\x69\x28\ +\x5c\xd5\x23\x90\xce\x54\x3b\xe4\xa1\xa5\x73\x0d\x9a\x79\x0c\x4e\ +\xd1\xf1\xb1\x95\x75\xed\x5a\x57\x3e\xf4\xe9\xd9\x6c\x1f\x2f\x3d\ +\xbc\x1f\xe7\x33\x26\xcf\x92\xab\x40\xfc\xd0\xea\xb0\xdf\xa9\xff\ +\x2d\x63\xa7\xeb\xed\x76\x7f\x19\xab\x9b\x85\x37\xe0\x56\x37\x5b\ +\xcd\x0b\x55\x87\x9a\x9f\xf3\xc3\xa4\x8b\x7b\x17\xfe\xb1\x1a\xff\ +\x51\xf8\xc5\xcf\x2d\x34\x87\x3a\xc4\x1b\xdf\x5c\xe9\x84\xd1\x1c\ +\x52\x6b\x15\x8a\xd3\x5c\x30\xee\xfc\x49\x68\xbe\x67\x39\x86\x70\ +\x47\x51\xe0\xaa\x19\x80\xa3\x8d\x57\x91\x2e\xbf\xe2\x3b\x4d\x9e\ +\xd0\x39\xce\x09\xf3\xe3\x1c\xfe\x33\xed\xe1\x83\x88\xe9\x42\xf3\ +\x60\x36\xd3\x3c\xd7\xa3\xdc\xd9\xee\x55\xdd\x05\x59\x6f\x47\x86\ +\x0b\x8e\x62\x65\x1f\x66\xc7\xe7\x9c\x1f\xb1\x5d\xc9\x26\xa5\xea\ +\x43\xf5\x49\xdd\x97\x45\x14\x8e\x90\xfb\x80\xf3\xc7\x0f\x7c\x4a\ +\x5f\x5a\xc8\x79\x91\xbf\x75\xf8\x2e\xa0\x94\x7d\x3e\x39\x6f\x80\ +\xa3\xd6\x1b\xf0\x4b\xce\xf9\xbe\xb9\x89\x58\x1e\xbe\x10\x7f\xea\ +\x0f\xfd\xdb\x1a\x4b\x35\x76\xd6\x5c\xdd\xe5\x1a\xc2\x33\x8c\x13\ +\x9c\x20\xe1\xd4\x33\x4e\x70\x82\x8f\x0f\x4e\x1b\x6a\x27\x38\xc1\ +\x09\xbe\xff\xd0\x26\x9c\xed\x0a\xff\x3d\xba\xd2\xdf\x35\x4b\xb6\ +\xbf\xb5\xac\x06\xa9\x21\x99\x09\x4f\xb4\x00\x9a\xf8\x65\x1a\xf1\ +\x8d\xbf\xf8\xb3\xb1\xf0\xc3\x16\xe2\x8d\x27\x5e\x18\x31\x01\xf7\ +\x2f\x02\x85\xb3\xd8\xe5\x45\x33\x05\xc9\x02\x0d\xcc\xa4\x1a\x7e\ +\x4d\xae\xfd\x2a\x1c\x4d\x9c\x59\x70\xf8\x75\x63\xe8\xf0\x31\x91\ +\xd8\xa1\xbf\x43\x39\x00\x34\x1b\x20\x67\xd9\x66\x64\x60\x61\xc8\ +\xcd\x81\xae\x4e\xfa\x43\x01\xb6\x93\xb2\x6f\x26\x14\x9a\x5e\xc7\ +\x10\x39\xa4\x4d\x99\x61\xe8\x29\x68\xf2\x13\xc7\x8f\x4a\x95\x3f\ +\x22\xf9\x6f\x2f\x92\xb3\x49\x13\xdb\xa4\x93\x01\xd1\xfb\x61\x10\ +\x3d\x8c\x1a\x9e\x61\x3c\x1f\xac\xc6\x81\xc0\x0d\x18\xee\xe7\x2b\ +\xf0\xd4\xc9\xf8\x7c\x1c\x93\x57\xc4\xfb\xec\x3e\xb6\xaf\x6c\x63\ +\xa6\xf8\x78\x3e\x8f\xf9\x5c\xca\x0a\xbb\xc9\x4c\xed\xc0\xee\xdf\ +\x26\x26\x4f\xb5\xe0\x79\x73\x15\xb7\x6f\x6e\x62\xf3\xde\x28\xf8\ +\xaf\x27\xdf\xd1\xb1\xe3\xf2\x57\x15\xe6\x36\xa2\xe2\xc8\x0c\x1a\ +\x12\x19\xa8\xa0\xa4\xcf\xf0\x8e\xe0\x2e\x23\xb3\x68\x07\x03\x39\ +\x13\x6d\xfd\x81\xfc\xf8\xe4\x0d\x77\x7d\xdd\x47\xd5\x97\x78\x8a\ +\x45\xe5\x98\xbf\x20\x95\x1f\x1b\xc5\xd9\x43\x09\x57\xf3\xd8\x5f\ +\x1f\x62\x7b\xc5\x7f\x85\xa9\x17\xf3\x33\x59\xfe\xb7\xca\xff\x5d\ +\x55\x61\x97\x78\x0f\x8f\xcd\x32\x3f\x95\x06\xcd\x26\xda\x2e\x37\ +\xd3\x6a\x13\xad\xdb\x80\xe3\x0e\x45\x2d\x32\xf1\xb4\xf5\x3b\x7c\ +\xa2\x5f\x4f\x96\xf3\x18\x9f\x29\x70\xc2\xd8\x67\x09\x55\x5f\x56\ +\x6b\xca\x02\x9f\x3b\x0d\xd2\x9c\x80\xb3\xad\xe9\x50\x52\xe5\xd7\ +\x84\xb6\xd3\xe3\x4c\x5d\x3d\x92\x83\x42\x47\x37\x3d\x03\x11\x2d\ +\x5e\x57\xab\x38\x3c\xba\x15\xde\xaa\x0c\x2c\x9c\xc5\xaf\xb2\xf8\ +\x69\x32\x7d\x79\x8a\x8f\x72\xa3\x03\x86\xc7\xad\xad\x71\x2d\xfc\ +\x61\x64\x92\xb4\x69\x44\x9d\x94\x2d\x36\xd3\x28\x22\x6c\xc0\x8b\ +\x74\xf3\x95\x7e\xcc\xab\x7b\x14\x66\x32\x3a\x13\x8f\xcd\x9a\x85\ +\xfa\x9c\xf4\xf6\x6b\x1d\x9e\xea\x14\xb9\xd9\xb9\xad\x78\x5a\xae\ +\xbd\xca\xc8\xd6\x8c\xe9\x03\xbd\xed\xae\x78\xee\x13\x60\xda\x40\ +\x72\x77\x1a\xb3\x49\x21\x9c\xe9\x8e\x42\xaa\x18\xdc\xaf\x04\xcd\ +\xae\x41\x86\xdc\x3c\x62\xb6\x57\x60\xf2\x3f\x7c\x31\x5e\xc6\x83\ +\x7b\xf3\x98\x7d\xf6\x2c\xe2\xd5\xd7\x23\xa6\x9f\x89\x75\x3c\x94\ +\xf0\x9e\xc2\x52\x6a\xe7\x3a\xf1\xee\xc7\xe8\x4c\xba\xf7\x44\x9f\ +\xab\x74\x57\xa2\x3f\x90\x81\xd5\x34\xc6\xf7\x2e\x62\xfc\x8a\xc2\ +\xe5\xfd\x18\xbf\x74\x16\xdb\xa5\xce\xb3\x0f\xf6\x71\xf3\xf5\x0f\ +\xbc\xb1\x48\x3d\x65\xa5\x92\x61\x96\xab\xdc\x13\x54\x39\xec\xa9\ +\x0a\x09\x32\xa4\x5e\x07\x83\x3e\xf6\x3c\xb0\x75\x12\x30\xee\xb2\ +\x51\x35\x95\xad\xd9\xc4\x9b\x68\x7e\xc5\xe3\x72\x1a\x93\x99\x7c\ +\xe5\xbc\xa2\x8d\xb0\x7e\x94\x41\x0f\xb0\x9f\xcd\x6d\xc8\x79\x36\ +\x6d\xb3\x07\x7b\x68\xdb\xa9\x44\xbb\xf9\xb8\x3e\xd4\x86\x9e\xfd\ +\x90\xc3\x56\xa3\x6e\xe8\x53\x46\x99\x4f\xdb\xc0\x4d\x26\xdf\x3e\ +\xee\xfe\x47\xff\xf4\x39\x2d\xa6\x30\xfc\xae\x8a\x1a\x26\x55\xb3\ +\x23\xe0\x5c\x9e\x8d\xf9\x9f\x24\xf2\xc7\xc7\x74\x32\x5f\x95\xaa\ +\x71\xf4\x30\x89\x77\x6e\x47\xf1\xca\x1f\xff\xd3\xf1\x63\x7f\xf2\ +\x4f\xfa\xaf\xf3\xd8\xdc\x93\xa7\xd2\x92\xaf\xa9\x2e\x68\x04\x86\ +\x3b\xa6\x60\x48\x27\x3c\xcb\xf9\x3e\xc1\xa7\xc6\x91\x4f\x19\xdc\ +\xad\x97\xbb\x4d\x7a\x04\x08\xa4\x30\x90\x43\x72\x5d\x5e\x1e\x5e\ +\x88\xbf\xf1\x77\xff\x62\x9c\xeb\x1a\x31\xd3\xf9\x9f\xaf\xd6\xa3\ +\x7f\x67\xbf\xc9\x00\xdd\x78\x69\xe4\x2e\x16\xa5\x8f\x91\x83\xf9\ +\x64\x29\x44\x9f\x6d\xe9\xad\x07\x32\xfd\x7c\xe8\xe4\xfe\x72\x50\ +\xf0\xf9\x03\xdf\x87\xd4\x49\x95\xc6\xf1\xf1\xa3\xa1\x12\x0c\xf4\ +\xb0\xed\x73\x92\x73\x50\x06\x3d\x0f\x84\xaf\x03\xff\x25\xa4\xe1\ +\x51\xbe\xef\xe3\xe9\xcd\xd8\x1b\x15\x76\xa0\x92\xb7\x73\x36\xa3\ +\xb2\xa4\x78\xb1\x04\x43\x8f\xb2\xd4\x0d\x4c\xfb\x80\x8e\x47\x97\ +\x67\xa1\x0c\x81\x4c\xca\x38\xd7\x67\x5e\x9b\xb7\x91\x73\xe7\xd3\ +\x8b\xf8\x89\x2f\xcf\xe2\x8b\x5f\x5a\xc5\xc3\x07\x9a\x43\x8d\xd5\ +\x76\x93\x69\xcc\xa6\x33\x05\xca\xa0\xeb\xfe\x64\x1e\xd3\xd9\x79\ +\xcc\xe6\xe7\x1a\xb7\xce\xd5\xd6\x33\x8d\xaf\xdc\xd8\x66\x43\x1e\ +\x9d\x7d\xac\x77\xab\x78\xfb\xfd\xeb\xf8\xd5\x37\x6e\xe2\xad\x77\ +\x23\x6e\x3c\xe6\xb3\xc1\x88\x3c\x3f\xf9\xd5\x47\xf9\x76\xd3\x2c\ +\x7c\xd2\x91\x78\x8e\xff\x79\x4c\x19\x75\x59\x91\x86\xac\xa8\x6b\ +\x89\x22\x29\x13\x54\x19\x1b\x0f\x69\xf2\x52\x40\x9b\x8c\x0f\x9a\ +\x1b\x48\x36\x55\xdd\xbf\x7c\x39\x8a\xe5\x62\x17\xd3\xd0\x5c\x46\ +\x97\x31\xff\x00\x8e\x11\x4e\x72\x9a\x85\x64\xc6\x26\xf5\xa9\xeb\ +\xb5\x9f\xc6\x12\xcf\xa1\xe2\xa9\x53\xd0\xfc\x11\x81\x88\xb4\xfc\ +\x38\x4f\x23\x6b\x2a\x61\x07\xae\x84\xd4\xc3\x94\x27\xfd\xab\xb1\ +\x49\xea\xd7\x0d\x2a\x9e\x4f\xa1\x01\xce\x1d\xb1\xc0\x29\x8b\x6e\ +\x54\xea\x99\xd7\x3a\x51\x81\xc7\xfc\xce\x9f\x4c\xd1\x43\xd1\x43\ +\xb9\xf4\xd9\xf8\xd9\x6c\x36\x71\x75\xab\xb9\x94\xae\xd7\x3c\xa9\ +\x9c\xaf\x57\xe4\xf2\x92\x65\xe2\x32\xc3\x6f\xb7\xd8\x68\xdb\x88\ +\xd7\x64\xf0\xa0\xd1\x31\xc6\xa6\xed\xf6\xb8\x83\xe2\x01\xad\x04\ +\xcd\x95\x0e\xe3\xcf\x61\x17\x2b\xcd\x5f\xaf\xb7\xd3\xb8\x2d\x5f\ +\x1a\xd8\x1e\x76\xca\x16\x6d\xd2\x68\x83\xea\xb2\xd5\x63\xe6\xdd\ +\x49\x8e\xf5\x0a\xac\x43\x9a\x8c\x76\x7e\xb4\xa6\xe8\x73\x2e\x9e\ +\x15\xb3\x7f\x52\x27\x38\x30\x51\x8f\xba\x77\xbe\x88\x97\x5e\x50\ +\x7f\xdb\x4f\x3c\x2f\x64\x0e\x38\x5e\x5f\x6a\xad\xf2\x82\xe6\x1f\ +\x9a\x57\x2d\x7e\x3c\x96\xf7\x5f\x8d\xd1\xfc\xa1\xea\x6c\x1a\xab\ +\xdd\x55\x8c\x76\x6b\x5d\xc3\x67\xb1\x7c\x70\xa1\x73\xec\xcc\x3f\ +\xce\x1a\xed\xce\xe3\xf3\xaf\xef\xe3\xbd\xf7\x74\x5e\x7d\x78\xd0\ +\x39\xa8\xfe\x2b\x2f\xc8\x7a\xe8\xcb\x30\x62\xb7\xee\xc4\x13\x1a\ +\xe5\x42\x66\xcc\x87\x8c\x37\xe8\xa8\x52\x70\x77\x14\x85\xcd\x64\ +\xd5\xf9\xe8\xb8\xfa\xaf\xc6\xe2\xcb\xc5\x34\x5e\xd4\xda\x64\xba\ +\xa0\x53\xb0\x2e\x90\x4d\xf5\x1d\xff\x70\x40\xac\xde\x9f\x4c\x98\ +\x76\xba\x83\x39\xf9\xc9\x58\x0b\xce\xe7\xd8\x3d\x8d\x35\x44\x34\ +\x9f\x63\xcc\xf1\xd8\x84\x5e\x29\x38\x99\x0e\x03\x7d\xd2\x7b\x23\ +\x0d\x52\x0d\x3c\x0c\x29\xcb\xc0\x01\x94\x87\x44\x43\x33\x40\xea\ +\xf1\x2d\x5d\x41\x97\x37\xe7\xa6\x98\xee\x07\xd8\xa2\xed\x63\x15\ +\x4f\x3e\x9c\xc6\x3f\xf2\xa3\xff\x72\xfc\xd4\x8f\xfe\x4e\xc5\x35\ +\x56\x36\x1f\x1b\xd8\x90\xe2\x77\x33\x3b\xc1\x09\x0a\x4e\x5d\xe3\ +\x04\x27\xf8\xf8\xe0\xb4\xa1\x76\x82\x13\x9c\xe0\xfb\x0f\x9e\x0c\ +\x26\xf9\x0c\x30\x31\xfc\x18\xaf\xfc\x77\x4d\xfd\x83\x9b\x6e\x8e\ +\x0d\x2d\x88\xd6\xa4\x96\x1b\x8b\xaf\xff\xce\x9f\x8c\xbf\xf9\xff\ +\xf8\x2f\xe3\x70\xfb\x6e\x2c\xe6\xb3\x98\x6a\xc6\xcb\x0d\x02\xd2\ +\x91\x82\x85\xa1\x4d\x94\x19\x5b\xa9\x09\xb1\x91\x0e\xb9\xe8\x4f\ +\xa1\x6f\xa4\x08\x7b\xe2\xef\x7b\x49\xc5\x27\xce\x97\xbb\x4e\x4e\ +\xa6\x54\x8e\x27\xff\x18\x4a\xb7\x62\x49\xb0\x08\x28\x9a\xb4\xb0\ +\x9a\x02\xba\xe2\x1d\xeb\x83\xac\x85\xd0\x28\xf3\x33\x99\x40\x3c\ +\x0f\x77\xa0\x67\x40\xb5\x6c\x49\xec\x27\x88\x48\x42\x60\x51\x03\ +\xb1\x55\x3d\xb1\x21\xc3\xc6\x45\x65\x69\x38\xca\x4c\x70\x27\x5a\ +\x46\x4d\x0e\x93\x25\x1c\x19\xd2\x87\xb8\xea\x99\xf6\x99\xf2\x6b\ +\x4e\x45\x97\xa2\xef\x4b\xf2\xb2\x16\xad\x97\xfb\x98\x2e\xf7\x7e\ +\xf2\x64\xc6\xab\xdc\xb4\xd8\x1a\xcf\xa4\x34\xd5\x32\x46\xab\x9c\ +\x11\xab\xf1\xf7\xb6\xb1\xf9\xda\x36\x6e\xbe\xb5\x8d\xd5\xb5\xac\ +\x71\x53\xeb\x4e\xce\x2d\x66\x2c\xd7\xc8\xf9\xae\xdb\x66\x28\xa0\ +\x53\xd5\x61\x28\x76\x42\x47\x08\xac\x08\xd6\xa1\xf8\x46\x3a\xb8\ +\x5b\xb8\x5e\xb3\x3f\x52\x67\xde\xb7\x34\xd6\x82\x55\xe5\xd8\x4f\ +\xc6\x71\xbe\xd0\x22\xf2\x4b\xa3\xb8\xf8\x82\x74\x54\xcd\xe3\x6b\ +\xc9\x3f\xdc\xc7\xea\xe9\x2e\x0e\x2b\x15\x84\x1b\xea\xde\x38\x93\ +\x5d\xca\x25\x1d\x9e\xce\xf2\xd3\x67\xde\x2c\x13\xe6\x89\x34\x68\ +\xf3\x32\x90\xce\x1b\x6c\xde\x74\x12\xaf\xd2\x66\x7d\xb7\x63\xfa\ +\x43\x7b\x4f\xce\xe7\x0a\xcb\x08\xff\xb2\x1a\xe0\x28\x2d\x14\x93\ +\x4a\x10\x61\x79\x27\x56\x1b\x74\xc2\x92\x39\xce\x61\x20\x10\xe4\ +\x26\x82\x34\xf8\x5a\x11\x10\xcf\xf5\x53\xbc\xc6\xaf\x55\xae\x37\ +\xd4\x3e\xbc\x8e\xfd\x6a\xa3\x72\xab\x10\x4a\x6f\x33\x1c\x54\x1e\ +\x6e\x88\xb9\x7f\x52\x0f\x94\x9b\xff\x30\x5b\xb3\xb1\x46\xd9\x25\ +\xc3\x8c\xec\xd8\x4f\x4e\x7a\x82\x98\xb9\xf0\x1e\x06\xf4\x04\x1e\ +\x18\x6c\x58\x58\x34\xaf\x8c\xf5\xab\x1e\x85\x16\x7b\xf5\x3f\xb1\ +\xa6\xbc\x22\x4b\xf5\xc6\x93\x71\x8f\x94\xe5\xd3\x4d\x6c\xd8\x54\ +\x53\x9e\xe2\xc8\x1c\x69\xbb\x02\xca\xe5\xec\x6b\xf2\xc0\xb8\x2b\ +\x27\xe6\x85\xd4\x00\x1c\xc5\xcf\xfe\x92\x72\xfc\xb0\xb4\xc7\xe6\ +\x27\x09\x58\x0f\x86\xf9\xbd\x80\x9b\x4d\xec\xa7\xd0\x37\x26\xb4\ +\xfd\x5a\xfd\xeb\xec\x2c\x2e\x5e\x7a\x29\xe2\x77\xbc\x2a\x8d\xd7\ +\x62\x13\xe7\x2a\xe5\x4c\x2e\x64\xd8\x8c\xe6\x3a\xaf\x1e\x44\xcc\ +\xb9\x99\xa1\xf2\x7e\xed\x49\xc4\xa3\x5b\x9c\x8f\xb8\xaf\xf3\xed\ +\x85\x33\x9d\x97\x97\x31\x9d\x9f\xc7\xd9\x4b\x93\x98\xae\x27\xf1\ +\xe8\x17\xdf\x51\xd9\x6f\x54\x45\x55\xbf\x14\x48\xc7\xa1\x3b\x46\ +\x75\x28\xd6\x11\x74\xdc\x42\xc3\x52\x03\xd8\x6d\x1c\xc6\x08\x36\ +\xd3\x34\x98\xc7\x88\xd7\x3c\xd6\x7f\xa6\x4d\x78\x42\x4d\x71\x9e\ +\xcc\x3a\x78\x23\x4b\xba\x47\x0e\x1c\xc3\x73\x58\x77\x40\x1a\x64\ +\xdb\x41\x79\xe9\x43\xfa\xc3\xd1\xa1\x8c\x39\x3f\xe5\x8d\x1f\x7e\ +\x42\xce\xd7\x1a\x40\x5a\x7c\xdd\x9d\x48\x21\xdd\x41\x7f\x2b\x64\ +\xa2\x7b\xda\x8c\x7e\x5b\xe7\xb5\xfb\xb4\xfb\x2c\x5f\xce\xb5\xca\ +\x90\x9b\x49\xd5\x45\x39\xe0\x21\x37\xa3\x08\x8c\x2d\x23\xf9\x92\ +\x12\x25\xe7\xa9\x49\x75\xe0\xb7\x76\x93\xd8\x5f\xbc\x1a\xbf\xfb\ +\x3f\xf9\xf3\x71\xff\xe1\x8b\xb6\xc7\x3f\xe6\x65\x63\x95\x5d\x63\ +\x52\x0d\x79\x40\xe3\x7d\x0a\xe1\x53\xea\xd6\xa7\x16\xee\x36\xed\ +\x33\x20\x61\xc9\xdd\xf3\x27\x87\xf8\xfc\xcb\x5f\x8c\xbf\xf6\x0b\ +\x3f\x1f\x57\xdb\x6f\xc5\xd9\x7d\xb1\xbc\x99\x22\x70\x37\x13\xa5\ +\x7e\xe9\xb1\x0b\xda\x27\x60\xa6\xcd\xd3\xb0\xf1\xa1\x33\x76\x44\ +\xab\x6b\xa1\xc7\xdc\xca\x9b\x38\x1a\xfb\x52\xc7\x47\x6b\x3d\x0b\ +\x77\x24\x43\x15\x9d\x43\xd8\xeb\xce\xcd\x44\x05\xc4\x5a\x48\x38\ +\x96\x03\x8d\x93\x7a\xad\x0c\x79\x7a\xb2\x91\xa4\x98\x0e\x78\xe9\ +\xb7\x16\xe8\x73\xce\x0f\x7e\xf6\x93\xb8\xba\xd5\x35\x6b\x9c\xd7\ +\x9e\x2e\x3d\xc9\x3b\x20\x86\x0c\x48\x59\x8b\x0d\xe1\xf8\x9a\xaa\ +\x48\x3a\x51\x20\xba\xe4\x9d\x1a\x65\x06\xed\x79\xf1\x5c\xc4\x83\ +\xe5\x83\xf8\x89\x2f\xef\xe2\x4b\x5f\x7a\x1a\x67\x4b\x36\x9d\x74\ +\x7d\x67\xde\xa1\xfa\x3d\xd7\x35\x7e\x36\x3d\x57\xb8\xd0\xdc\xf8\ +\x5e\xcc\x96\x67\x31\x5b\x5c\xc4\xd8\x4f\x27\x33\x27\x60\xab\x80\ +\x6b\x88\xb7\xd3\xe2\xe9\xcd\x26\xbe\xf6\xcd\x75\x7c\xf5\xeb\x87\ +\x78\xac\x6b\x09\xc3\x8e\x4a\x6b\x97\x5c\x0b\x22\x5c\x12\x1c\x28\ +\x3f\xf3\xd8\x45\x07\xee\xd3\x6f\x28\x4f\x45\x3b\xbe\xc0\x06\xb3\ +\x3e\x5d\xd7\x62\xb9\x7c\x03\x9d\xae\xbc\x0d\x3c\x36\xf2\x94\xcf\ +\x24\x5e\x9c\x4d\xe3\x8b\xaf\x6e\x35\xfe\x31\x06\xd7\x18\xa8\xf6\ +\xf1\xab\xbf\x51\x63\x5c\x6d\xc9\x38\x88\xc9\x93\x6d\xd0\x6d\x28\ +\x45\x8f\x8d\x32\x34\xad\xad\x4e\x64\xbe\x65\x2d\xbd\xb0\x74\x2c\ +\xe1\x0b\x53\x3e\x7a\x4e\x01\x8c\x27\xaa\xcf\x7c\xd2\xdf\xd7\x05\ +\x42\x41\x8e\xdf\x4a\x2f\x55\x73\xeb\x3a\xcf\xd1\xa9\x8b\x40\x0e\ +\x99\xda\xa5\x5b\x40\x1c\x46\xca\x5c\xf3\x05\x24\x1a\x6a\x02\x2e\ +\xa9\x7d\x5b\x6b\x5e\xf4\xf4\x76\x13\x6c\xa8\x51\x6d\x79\x59\xa1\ +\xae\xdb\x66\x20\x57\x7e\x5f\xfd\x99\x32\x5a\xce\x94\x8b\x29\x28\ +\x9b\x6c\x6c\x2a\xec\x55\x97\xbc\xd6\x92\xcb\x92\x5f\x01\x49\x1a\ +\x30\x71\xa5\x4b\x1d\xdc\xd0\x41\x80\x37\x94\x2e\x71\x42\xfe\x70\ +\x50\x3d\xcb\xaf\x7b\x9c\xc6\x8a\x34\x4a\xef\x32\xe3\xae\x30\xc9\ +\x4d\x62\x3b\x59\x55\x55\xa4\x54\xbb\xa2\x6c\x6e\xc2\xb0\xbe\x0c\ +\x8e\x54\xce\x6e\xab\x3b\xf2\x01\x28\x8b\x01\x3f\x29\x74\x6d\x33\ +\x0f\xde\x54\x9c\xa9\x5f\xbd\xf0\xe0\x22\x96\x67\x2a\xa9\xce\xf5\ +\xe5\xe1\x5e\xcc\xef\x7d\x21\x26\xf7\x3f\x1f\x8b\xc5\xeb\x9a\x1b\ +\xbd\xa6\xf0\x6a\xcc\x97\x9f\x8b\xc5\x83\x17\x62\x32\xbd\x89\xdb\ +\xd5\x93\xd8\x5f\xf3\x5f\x6c\xb3\xb8\xf7\xe2\xb9\xac\x4f\x63\x3f\ +\x56\x1f\xdd\x4f\x83\xe9\xd8\xaf\xfd\xc6\x6d\xdc\x6e\x74\xc6\xe2\ +\x84\xa0\x1b\xfb\x1a\x98\x3c\xe2\x0c\x78\x43\x6e\x4f\x7b\x2d\x97\ +\x54\xe1\x81\xcd\x2e\x6d\xea\x65\xff\x94\x3e\xa7\x8a\x48\xfa\x2c\ +\x63\xda\x7d\xf5\xdf\x17\x1e\xca\xdb\x85\xca\xba\xe3\xc9\x34\xfa\ +\x07\xe3\x5a\xb6\xaf\x2b\xc8\x76\xd2\xae\xbb\x78\x1e\x32\xee\x63\ +\x83\x41\x4c\xa4\x63\x43\x16\x3c\x8d\x39\x8c\x0c\xfc\x10\x29\xcf\ +\x9b\x9c\xbf\x64\x82\x81\xb2\xa0\x9d\x67\xe0\xee\x9c\x86\x16\x91\ +\xbe\x25\x9d\x07\x70\x22\x83\xe8\x63\x6b\x09\xf4\x7f\x57\x5b\x09\ +\xa9\x17\x2c\x6b\x28\xef\xfa\xb5\xb5\x84\x37\x1a\xe3\x67\xeb\x2f\ +\xc5\x3f\xf3\x4f\xfe\xb9\x58\x68\xec\x6c\x4f\xa7\xf5\x19\x11\x6f\ +\x86\x14\x06\x76\x4f\x70\x82\x06\xa7\x2e\x71\x82\x13\x7c\x7c\xd0\ +\xae\x18\x27\x38\xc1\x09\x4e\xf0\xe9\x83\x36\x3f\x6c\xf8\x63\x80\ +\xa1\xa9\x8f\x7d\x42\xc1\x8c\xd8\x93\x57\x4d\xca\xe7\x97\xf1\xdb\ +\xff\xdc\xbf\x1a\x57\xeb\x59\xac\xb5\xd8\xf6\x22\x52\xab\x22\xbf\ +\x0a\x86\x2f\x93\x76\xdf\x19\x51\x60\x02\xae\x0f\x37\x3a\x3b\x9f\ +\x6a\x15\xd7\x16\x54\xdc\x20\xd9\x29\xbd\x37\x33\xb4\x9a\x1c\x79\ +\x05\xa8\xaf\x70\x3e\x29\x93\x79\x33\xc1\xcf\x74\x99\xbe\x5b\x72\ +\x94\xe1\x8e\xf6\x22\x41\xa1\xfc\x28\xb1\x2f\x0a\x5d\x9a\x01\x58\ +\xbb\x6c\xfa\xd7\x99\x0a\xbe\x31\x3b\xe0\x9b\xa8\x3a\xb0\x68\xf0\ +\xab\xcf\xbb\x40\xf1\xb0\x9a\xeb\x38\x97\x5e\xb4\x72\x9f\xe8\x3b\ +\xd3\x42\x6a\x39\x8d\xf9\x25\x4f\x2d\xa9\x2e\xc5\xce\x1f\xa4\x4b\ +\xb9\xf4\x9b\xe5\x8c\xb6\x18\x92\x3c\xb8\xda\xcc\x19\x42\x71\x40\ +\x26\x93\xe0\x9d\xfd\x84\x31\xaf\xe7\x9f\x8b\x5e\x8a\x7b\xb9\x8b\ +\xed\xe2\xd6\x8b\x4f\x16\xf9\xdc\xc0\x58\x4b\x77\x73\x98\xc6\x7a\ +\xb4\x8b\x35\x6d\xc1\x53\x49\x57\xfb\xd8\x3c\xda\xc6\xfe\xd1\x3e\ +\x76\x6c\xa6\x6d\xeb\xe6\xc9\x20\x0b\x63\x00\x37\x15\x9a\xb7\x9d\ +\x4e\xf1\x1d\x51\xc5\xb8\x3e\x1d\x69\x9a\xa9\xf0\x6c\xab\x08\xac\ +\x9b\x38\xd3\x25\xb4\x5f\xd0\xc2\xef\x6e\x7c\x43\x17\xc1\x02\x6e\ +\xc6\xee\xcc\x8b\xe3\x98\xbc\xae\x25\xdb\x62\xa2\x2e\xa4\x25\xe5\ +\xb5\xca\xf1\x74\x1b\xfc\x6c\x77\xb4\x92\x96\x16\x6f\xfb\xcd\xa8\ +\x9e\x38\x93\x7b\x3c\x09\x75\x4b\x50\xd9\x09\x37\xfc\x8f\x18\x7a\ +\x19\x47\xc6\x7f\x7a\x1d\xd6\xc2\x1b\xe5\xb5\x51\x1a\x05\x56\x84\ +\xf9\xd4\x8b\xe8\xea\xa3\xae\x28\xaf\x40\x05\xbc\xea\x89\xbe\x58\ +\x22\x1f\xdc\x49\x94\x86\x02\x28\xf0\x24\x52\xfe\xba\x38\x03\x65\ +\x40\x89\x23\xa6\x20\x72\xb1\xab\x40\xdf\x33\x49\x5a\x0b\x5c\x8d\ +\xa4\x82\xce\x3a\x81\x2f\x8c\x0f\x5d\x5e\x15\x37\x28\x4e\x0a\x39\ +\x95\xe7\x45\xf2\xa0\xbb\x38\x86\xf6\x2a\xf7\x76\xa7\xf2\x52\x07\ +\xea\x2f\x4f\xd6\xb1\xfd\xe0\x36\xd6\xef\x5c\xc7\xe6\xfd\xdb\xd8\ +\x3e\xde\xa8\x5e\x14\xb6\x9b\xd8\xee\x54\x5f\xe8\xea\x9c\xcd\x8f\ +\xd2\xc8\x06\xbf\xe0\xe6\xae\x09\xff\x55\xc7\x06\x66\xb0\x39\xc6\ +\xa6\x9c\xce\x75\x36\x37\xb8\x93\xe0\x27\xb1\x78\xc5\x28\x4f\xab\ +\x9d\xad\x62\x34\x53\x5a\xf5\xc5\xad\x74\x78\xfd\x23\xdb\x16\xbe\ +\xe3\x60\xbf\x64\x83\x62\xb4\x20\x48\xff\x39\x56\x4f\xf2\xf9\xd4\ +\xb8\xc9\x6f\xc1\x71\x8b\x4a\xd7\xc7\x01\x3f\x99\x3d\x16\x38\x9b\ +\x3a\x47\xb7\xae\xc8\xac\xbf\xed\xd3\x55\xbc\xf3\xf5\x9b\xd8\x28\ +\xc4\x15\x27\xd9\xc8\xbf\xb8\x3e\xf0\xca\xd4\x98\xeb\xbc\x3a\x8b\ +\x95\xc2\xee\xf0\xa2\x92\x3c\x8c\x78\x67\x1d\xf1\x58\x61\xcb\x86\ +\x1a\xef\x32\x53\xba\xb8\xf0\x13\x7a\x3c\x3d\x3a\x7f\x70\x19\x2f\ +\xfd\xce\x17\x63\xf9\xd9\x8b\xd8\xb0\x81\xe9\xfe\x44\x7e\xcf\x38\ +\x93\x68\x70\x2e\x34\x80\x93\x25\x4b\x1f\x9b\xcc\xe7\x50\x45\x73\ +\xec\x35\x3b\x13\xd0\xe8\x53\x1d\x78\xb2\x93\x8d\x68\x36\xd2\xc0\ +\x3c\xa9\xc6\xcd\x53\x6e\xc6\x08\x79\x9c\x2a\x18\x9a\x68\x70\x37\ +\x7e\x04\x83\xb4\x0d\xcc\x52\x48\x4f\xfb\x1b\xb0\x00\xfe\x3a\x85\ +\xc6\x70\x6e\xe2\xfa\x29\x9b\xba\xc1\xe2\xe3\xff\x9f\xbd\x3f\x0d\ +\xb6\x2d\xc9\xee\xfb\xb0\x75\xe6\x3b\xbe\xb9\xe6\xea\xaa\xae\x9e\ +\x27\x00\x0d\x02\x0d\xa0\x01\x70\x00\x38\x42\x24\x05\x50\x26\x35\ +\x51\xa4\x25\x91\x94\x48\x89\x32\xad\xa0\x1c\x0a\x2b\x64\x9a\x0e\ +\xea\x83\xe5\x21\xe4\x08\x47\xf8\x8b\x23\xfc\xc9\x96\x23\x3c\x48\ +\x61\x85\x2c\xd0\x92\xc8\xa0\x24\x87\x05\x52\x12\x41\x08\x43\xa3\ +\xbb\xd1\x73\xcd\x6f\x7e\xef\x4e\x67\xf6\xff\xf7\x5f\x99\x7b\xef\ +\x73\xdf\x7d\x55\xd5\xdd\xd5\xd5\x05\xe0\xfc\xef\xcd\x9d\x2b\x57\ +\xae\x5c\xb9\x72\xd8\xb9\x33\x77\xee\xbd\x0f\xf9\x63\x84\x12\x64\ +\x93\xc0\x20\xa2\xf0\xfd\x0f\x23\x05\xb8\x7e\x50\x9f\x3e\xdf\xb9\ +\x8b\xe3\xfe\x9d\xf2\xfc\x5e\x90\x81\x1c\x49\x9c\x1e\x82\xaa\x51\ +\xbe\x32\xd4\x97\x34\x36\x25\xfc\x47\x1a\xf5\xdf\xde\x20\x8e\xd4\ +\x06\x77\x1e\x2e\xe3\xca\xcf\xfe\xa1\xb8\xf1\xcc\x8b\xde\x68\x75\ +\xc1\x4a\x79\x8b\x66\x01\x7d\x6d\xa8\xc5\x45\xbc\xc4\xe3\x63\xb6\ +\x78\xdf\xe1\xed\x1a\xcb\x7d\xa2\xed\x03\xd9\xbb\xd4\xeb\xc7\xcb\ +\xf8\xc3\x9f\xfb\xe7\xe3\xfe\x5d\x0d\x07\x67\xba\x56\x0c\xe8\x94\ +\xf4\xb3\x56\x65\xf6\x63\x5c\xe9\xb0\x85\xd3\x50\x25\xd0\x72\x93\ +\x26\xc4\x27\xe7\x18\x47\x79\x00\xc4\xdd\x5a\x3c\x9b\x61\xb4\xf2\ +\x2d\x0a\xcf\x99\xa7\x05\x9e\x47\xa9\xef\xe7\x83\x53\x3a\x17\xcc\ +\x15\xac\x2c\xcf\x88\x6a\x6f\xba\x0c\x3f\xaa\x7d\x93\xc3\x39\xcf\ +\xb5\xd1\x4e\xc6\xf1\x29\xe6\xee\x1b\x4c\xb8\xc1\x7a\x14\xcf\x3e\ +\xb9\x96\xe3\x96\xb9\xc6\x58\x6f\xe2\x50\x36\xae\x8f\x45\x9f\x3d\ +\xc2\x9b\x48\xeb\x37\xc1\x90\x89\x5c\x5a\x88\x8f\x15\x49\x95\x88\ +\x44\x55\x46\x78\x35\xd0\xe5\x7e\x1d\x7b\xa3\xbd\xf8\xe4\x47\xa6\ +\xf1\xa1\x8f\x9e\xc6\x64\xb2\xf6\x27\x29\x7b\x9a\x47\x61\xf2\x6a\ +\xa6\x79\xdd\x64\x2f\x76\x0f\xae\xc6\xfe\xa5\x27\x62\xe7\xd2\xe5\ +\x18\xef\x5e\xd1\xdc\x8b\xcf\x3d\x8e\x54\x77\x13\x7f\xfa\x71\x38\ +\xe0\x26\x7a\x6e\x9e\x3c\x78\xb8\x8e\xd7\xef\xf4\xe3\xe1\x19\x9f\ +\x00\x24\x33\x1d\xf0\x4d\x53\x27\xf8\x00\x2b\x13\x35\x3a\xad\x66\ +\xe3\x85\x6d\x14\x68\x71\x8b\x50\x95\xad\x70\x3d\xe9\x3f\xeb\x16\ +\xba\xfa\x8e\xce\x69\x81\x9d\x24\xd5\xc5\x98\x97\xd0\x5d\x75\xd4\ +\xb5\xaa\x1f\x97\x77\x74\x25\xdb\xd3\x75\x79\xc5\xa7\x8a\x35\x4f\ +\xe0\x6d\xb7\xa5\x6a\x90\x87\x62\x94\x86\xf4\xe9\xd8\x00\xea\x95\ +\x4d\x22\x3e\xd5\x07\x2d\x15\xc5\xb5\x9f\x43\x64\x1a\xa0\xf9\xa5\ +\x0a\x3d\xd7\x78\xec\x78\x68\x09\xd3\x57\xe7\x72\xfe\x5c\xa2\x64\ +\xf8\xb4\xdf\x02\x9f\xb1\x1b\x9e\x6c\xcb\x96\xcf\xd6\x77\x5f\xc0\ +\x95\xcf\x23\x9b\xc7\x1f\x74\x16\xc6\x2e\xff\x6a\x1c\xc7\x8c\x6b\ +\xff\x14\xc6\x2f\x49\x1c\xa7\xfc\xa0\xed\x9c\x6b\xc9\x59\x0c\xca\ +\xeb\x30\x55\x24\xfb\xbc\x01\xa6\xb4\x7e\x93\x5e\xbe\xed\x95\x9a\ +\x7c\x2b\x8d\xb0\x7c\xca\xae\x3a\xd0\xa5\x3d\x66\x8a\xe7\xe7\xf2\ +\x4c\xab\x2e\x79\xc6\x6b\xaa\x79\x28\x4e\x53\xaa\x38\x91\x3b\x9e\ +\xf5\xe2\x48\x73\xd4\x87\x53\x39\xa6\x0e\x9a\x7f\x3e\x9c\x86\xd6\ +\x5e\xa4\xe5\x11\xa3\x34\x96\xde\x31\x60\x2e\x27\xc7\x03\x8e\x23\ +\xcd\xa5\xb4\x32\xc3\x40\xfe\x6d\x8f\xaf\x7d\xf2\xe9\x67\xd8\x0e\ +\x4d\xb9\x52\x26\xe3\x4a\x41\x93\x27\x87\x5c\x85\x49\xf8\xce\xad\ +\x40\x95\x45\x5d\x74\x1f\x64\x31\x2a\x0d\xdb\x51\xa5\x7f\x1a\xa2\ +\xa9\x34\xf9\xb2\x30\xa6\x3a\xe7\x6f\x3e\x38\x8d\x6f\xdd\x5c\xaa\ +\x9e\x76\x63\xdc\xbb\x1c\x7b\xbb\xcf\xc4\xe8\xf0\x03\x9a\x12\x3d\ +\xad\xf4\x97\x25\xcf\xdb\xfe\x3c\xd8\x33\x88\xc3\xc9\xf3\x71\xe3\ +\xa9\xcf\xc7\xfe\xb5\x8f\x68\x8e\xa2\xba\xb8\x73\x3b\x4e\x8f\x1f\ +\x7a\x4c\x62\xd4\x5c\x69\xee\x7f\xe3\xf2\xe5\xf8\xe0\xb3\x9a\x57\ +\x2d\x77\x94\x2b\x63\x1f\x6d\x49\xde\xa0\xd8\xb1\xe9\x25\x08\x6c\ +\x30\x36\x41\x59\x5a\x19\x0e\xcd\x48\x58\xa0\x4c\x9a\x31\x3e\x4b\ +\x8d\xd3\xc8\xe9\xf9\xcb\xfe\x64\x14\x57\x35\x0d\x1c\xb1\x71\xb8\ +\xb1\x99\x26\x47\xc3\x58\x6f\xf1\x94\x30\xe7\x5b\xb8\x16\x45\xa4\ +\xc5\xa3\x22\x86\x93\x5a\x49\xd2\xb9\x16\xee\x08\x76\x48\x94\xd2\ +\x8e\x26\xa9\x2b\xc2\x30\x65\x17\x5c\xc7\xf1\xef\x80\xff\xed\x1a\ +\x38\x50\xb9\x72\x0d\x59\x3a\x59\xc9\x0b\x0f\xbd\x54\x51\x76\x37\ +\x64\x69\x9b\x91\xb2\x5a\xc4\xe9\x83\x88\x1f\xf9\xe4\xcf\xc5\xb5\ +\xcb\xd7\xc5\x66\x0c\xb1\x15\x9b\x20\x71\xb5\xbd\x5b\x86\x2d\xb6\ +\xd8\x62\x8b\x2d\xde\x75\x9c\xbf\xca\x6d\xb1\xc5\x16\x5b\xfc\x8e\ +\xc7\x23\x93\xcf\xef\x08\xdd\x59\xea\xb9\x19\xeb\x7a\xa0\x95\xe1\ +\x22\x7e\xf2\x2f\xfd\xf9\xe8\x3d\xff\xe1\x38\x9b\x2d\xbc\xd1\xe2\ +\x1f\x52\x2e\x93\x63\xdf\xf8\x2c\xe2\xf6\xbb\x46\x99\xce\x85\xa6\ +\x69\x1c\x0b\x3d\xf9\x6c\xaa\xb1\xda\x63\x73\xae\x6e\xaa\x79\x7d\ +\x02\xcd\xc4\xbe\xc8\x36\xab\x3c\x7b\x25\x27\x7b\x3a\xe0\xe3\xf1\ +\x94\xb7\xef\x80\x6a\xf2\xae\xab\xc1\xc6\xba\xa4\x86\x1f\x03\xd4\ +\xb2\x14\xda\x10\xf1\x02\xb0\x85\x65\x8a\x19\x2d\xba\x99\x08\x4a\ +\xb3\x21\xe2\x4d\x35\x2d\x0b\x79\x09\xec\x40\x8b\xde\x43\xd9\x38\ +\xe1\xa9\x45\xc9\xb1\xf1\x85\x74\xfe\x1b\x55\x7f\x0d\x57\xcd\xf6\ +\x2b\xd3\xe8\x04\x6c\x02\xb5\x2b\x9e\x68\xcc\xf6\x27\xca\xb8\x51\ +\xee\xcd\xb4\x45\xac\x76\xe6\x2a\xbf\x16\x2b\xc4\x53\xb5\xaa\x73\ +\x16\xfd\xb3\xde\x34\x96\x5a\xb4\xf3\x74\xeb\xe2\x54\xfc\xfb\x6a\ +\xea\x5b\x5a\xe4\x3e\x5c\x89\x9f\x37\xd1\xfc\x14\x30\xd9\x91\x45\ +\x81\x38\x3e\x76\x2f\xba\xf0\xcc\x47\xb6\xba\x47\x90\x29\x13\x65\ +\xf1\xf9\x18\xd9\xba\xac\x72\x3c\xb4\xf2\x87\xc7\x72\x2f\x7b\x53\ +\x26\xec\x0f\x54\x96\xa1\xea\x78\x57\x8b\xd5\x67\xd7\xf2\xc7\x31\ +\xa3\xef\xf0\xc9\xc0\x87\xeb\x98\x1f\xe5\xe6\xd8\xa2\x6c\x8a\xad\ +\x78\x13\x4a\xb4\x79\xd3\xf4\x97\x67\xf2\xa7\xf2\x09\xcb\xe7\x33\ +\x8f\x7e\x53\x8d\xb7\x5a\xfc\x66\x8b\xf2\x64\xf1\xcb\xe3\xc5\x0b\ +\xe5\xca\x5d\x01\xc2\xdc\xbf\xa8\x7d\xd7\xfd\x94\x12\xaa\x54\xa5\ +\xb3\xe5\xcd\x1d\xfc\x2c\x4d\x5d\xa4\x26\x0f\xf1\x12\xa8\x7d\x5c\ +\xff\xd9\x83\xda\x30\x82\xd6\x43\x7e\x14\x1b\xa6\x79\x8e\xd4\x1f\ +\xcc\xe4\xd9\x61\x0b\x7c\xa7\x4f\x19\xdb\x27\x64\x7b\xea\xa0\x30\ +\xf9\xd8\x4a\x37\x02\x52\x49\x5a\x15\x7f\xd4\x21\x6e\x21\xc7\xe6\ +\xe2\xd1\x3c\x16\x77\x4f\x62\x76\xfb\x38\xe6\x77\x4e\xfd\x26\x19\ +\x1b\x6b\x8b\x79\x6e\xae\x05\x77\xc8\xc8\xc6\xe9\x64\x15\x37\x7f\ +\x38\xbf\x49\x4f\xbd\xb9\x3e\x15\x8d\x53\x3c\x0b\x67\x6f\x2a\xca\ +\xa8\xd5\x70\x16\xeb\xa1\xe4\x87\xeb\x98\xa9\x72\xb9\x19\xa5\x54\ +\xfe\xe3\xbf\x58\x66\x9f\xbf\x62\x79\x07\xe2\x8a\x05\xd7\xae\xd0\ +\x5d\xd4\x38\xab\xeb\xa0\x7b\xd6\x43\xd5\x3e\xcd\xf9\xe2\x98\x92\ +\x70\x89\x52\x9d\x0b\xab\xfe\x32\x8e\x5e\x3d\x8b\x5b\xdf\x3c\x8a\ +\xf8\x2a\xef\x2f\xf4\xfd\x66\x52\xda\x34\x92\xdd\x23\x71\xc6\x31\ +\xd7\x39\xe9\x6e\xf0\xc6\xb1\x12\xeb\xe4\xa2\xfd\x7a\x3a\xd9\xe8\ +\x40\x83\xf2\x14\x35\x9b\x6a\xab\x7e\x4c\x76\x27\x31\xd9\xeb\xab\ +\x8a\xd8\x46\x54\xc9\x49\x77\x1e\x9d\x7a\xd8\xf8\x54\xe8\x3b\x81\ +\xfb\x81\x40\x32\x8f\x8f\xb2\xb7\x6c\xa6\xb1\xf9\xdc\xe3\x13\x8f\ +\x3b\x1a\x2f\x46\xbc\xb5\xaa\x72\xfb\x6d\x84\x4c\x72\x1e\xdd\x9c\ +\x2f\xb6\xa2\x53\xc3\xd9\x15\x5b\xa8\x42\xdc\xa6\xe7\x61\xbb\xe4\ +\x94\xa7\x6f\x02\xb1\x99\x86\x73\x05\xd6\x16\x52\x3a\xe9\xe3\x54\ +\x48\x42\x9a\xc4\xf2\xb9\x45\x5f\x37\x52\xc6\x41\xf1\xe9\x67\xe5\ +\x8e\x67\x9e\xbf\x4e\x2b\xbf\xd4\xc7\xc5\xf6\x2b\x3f\x45\x50\xfc\ +\x7c\xc3\x27\xf3\xcf\xcd\x09\x6e\xfe\xae\xe3\x4d\xc6\x89\xd1\xe5\ +\xf8\xd0\x3f\xfe\x8f\x6b\x6c\x57\xeb\x0f\x55\x7f\x4e\x0b\x90\xb6\ +\x01\x0d\xfd\x68\x3e\x6d\xfe\xe7\xe3\x6a\xaa\x47\xd3\xbc\x47\xa8\ +\xa6\x77\xdd\x16\x8f\xc7\xf9\xfa\xa9\x8d\x87\x73\xfd\x95\x96\x6c\ +\xe4\xfa\xbe\xf6\x7f\xfe\xb3\x3f\x1e\xcf\x5d\xf9\x4c\x3c\xbc\xad\ +\x7e\xea\x4d\x1a\x9d\x1b\x92\xed\xf6\x6f\xf7\x5f\x40\x1f\xb7\xdf\ +\x1c\x3a\x7e\x45\x9e\x0f\xf6\x75\x64\x6e\xc5\xc6\x04\x2a\x72\x2c\ +\x2f\x3a\x64\x0e\x67\x61\x8b\x2e\x9d\x66\x73\x74\x11\xe8\xfb\x8c\ +\x05\x0c\xd2\x3e\x39\x1d\x25\x28\x0d\x17\x92\x26\x9c\xd8\xd4\xd4\ +\xc5\xc5\x31\x9c\x19\x6c\x3a\xf8\xf7\x4d\x29\xb8\xc4\xe0\xe5\xa7\ +\x81\xfb\xf1\xfc\x93\xfd\x78\xe6\xca\x30\xc6\x1a\x97\xc8\xc7\xe7\ +\x3a\x32\xae\x8f\x52\x1e\xf4\x88\x68\x6e\xf0\x37\xcc\x73\xae\xf1\ +\xb2\x9e\x1f\x89\x84\x4f\x1e\x50\xab\x81\xdf\x8c\xeb\xf5\x77\xe2\ +\xc5\xe7\xfb\xf1\xc2\x8b\x47\x31\xe0\xf3\x64\xb3\xb1\xea\x53\x17\ +\x7d\xd9\xcc\x83\x24\xfd\xc5\x38\x86\x3b\xd7\x62\xe7\xf0\x4a\x0c\ +\xf7\xf7\x34\xa6\x4e\x64\x3b\x9b\x7f\x6a\xcf\xc1\x40\xe3\x07\xaf\ +\x62\x6b\x6c\xd0\x04\x10\xf3\x4e\x74\x19\xb8\x73\x34\x8b\xfb\xf7\ +\xd6\xfe\xf9\x55\x72\x53\x57\xb0\xdf\xc0\x63\xe4\x06\xa7\x04\xb0\ +\xbb\x8c\x6d\x82\x8b\x8b\x73\xc0\xac\x06\x95\xc7\x35\x74\x03\x0a\ +\xc2\x61\x93\xcd\xcd\x26\x65\xee\x1f\x85\xef\x39\x85\xda\x75\xa0\ +\x31\xee\xf2\x21\x6d\xb2\xef\x87\x5e\xbc\x7d\x67\x99\xd4\xc8\x43\ +\x39\x94\x31\x37\x94\xd2\xcd\x75\x1d\x63\x0a\x90\x9b\x67\xf0\x98\ +\x63\xb2\x71\x26\xa7\xb1\x77\xae\xc9\xa7\x9a\xd9\x9b\x69\x5a\x42\ +\xc4\x4c\xf3\x80\xd9\xbc\x17\x53\xb9\x99\xe6\x06\x33\x45\x4e\xe5\ +\xb3\xc1\xc6\xa6\x1b\x9b\x50\xf4\x61\xba\x85\x37\x47\x64\x1b\xb9\ +\xe3\xd2\x56\x39\x8c\x27\xc4\xc6\x5a\xe7\x8f\x92\xdb\xc1\x67\x6e\ +\x5c\x9c\xd3\xc8\xe9\x74\x70\xb9\x9d\xbc\xc8\x77\xd3\x67\x5e\x25\ +\x0f\xc7\xea\x8f\x32\x77\x79\x52\xc2\x1a\x08\x5d\x4b\xe6\xcf\xf8\ +\xd4\x83\x69\xea\x83\xa9\x8f\xea\x80\x32\x4b\xde\x53\x20\xf9\x2a\ +\x52\xd2\xe2\xb3\xb1\xd6\x6c\xa8\x41\x4b\x80\x4f\x80\x9e\x4a\xc7\ +\xd1\xac\x1f\xf7\xa7\x3d\xbb\x3b\x27\xbd\xb8\x7d\xa2\xbe\x23\x77\ +\xa2\xc4\xcb\x52\x1e\xda\x90\xa9\x3e\x6f\x3f\x8e\x34\x7e\x70\x39\ +\xa7\xad\xf2\x4f\x32\x3e\xa6\xb3\xe1\xf2\xeb\x79\x92\xe3\x8c\x59\ +\x59\x27\x19\x9d\xac\xe2\x3b\x8e\x8b\x21\x19\x39\x5d\x4d\xe4\xa8\ +\xf4\x21\xe4\x88\x69\x63\x85\x9a\x4f\x89\x07\xfe\x84\xaa\xea\x91\ +\x8f\x88\x3e\xd0\xfc\xf1\xcd\xbb\x47\x71\xf7\xee\x2a\xc6\xe3\xcb\ +\x5a\x1f\x3d\xaf\xf8\x7d\x89\xf2\xf9\xf9\x3d\x39\xb6\xa4\xc6\x72\ +\x23\xf1\x97\x9a\xa6\x3c\x1f\xd7\x9e\xf8\xb4\xe6\x4a\x07\x2a\xe4\ +\x59\xdc\x7e\xf5\x65\xd5\x2d\x67\x51\xbe\xfd\xb9\x5e\x8f\xe3\x07\ +\x3e\x71\x3d\xf6\xc7\x07\xb2\xb9\x96\x3e\x6d\xca\xde\x5e\x8c\x30\ +\x08\xe3\x2a\x68\xf3\x4d\x89\x0c\x55\x4e\x57\xb6\x72\x49\x50\xe2\ +\x21\xab\xac\x44\xa9\x32\x4e\xec\x3d\x9d\xf7\xd7\x2f\xf3\x3b\xd5\ +\xb2\x73\xc1\xe7\x18\xc8\x87\x3e\x23\xab\x8a\x78\x27\x59\x73\xec\ +\x02\x4e\xe5\x76\x63\xbb\x7c\xe0\x3c\xed\x6b\x5d\x26\x9d\xfe\x4c\ +\xb6\xc7\xec\x8b\x52\x0b\x25\x98\x63\x2a\xd6\xd7\x3f\x78\xc5\xa9\ +\x53\xe0\xd7\x07\x1e\x1a\x0d\xc4\xe9\x8f\x70\xc6\x24\xf2\x2c\x4a\ +\xb9\xea\x1b\x16\x62\xcc\x2b\xad\xa2\xff\x55\x6f\xa1\x35\x59\x2f\ +\xf6\xe3\xe3\xf1\x63\x3f\xf8\xb3\x1e\x2b\xfc\x56\xb5\x24\x72\x04\ +\xec\x42\x9a\xce\xb3\xb6\xd8\x62\x8b\x2d\xb6\xf8\x9e\x80\x71\x78\ +\x8b\x2d\xb6\xd8\xe2\x77\x1d\xbe\xfb\xb9\xe6\x05\x13\x58\x7b\x85\ +\x3f\xe4\x53\x66\x83\xf8\x91\xbf\xf8\xe7\xe2\x4d\x2d\xea\xce\xe6\ +\x0b\x4d\xb6\x73\xfa\xcc\xad\x17\x4f\xa0\x75\xc0\xcf\x09\x31\x0c\ +\xa5\x95\x2b\x9a\x4c\x33\x31\xb7\x23\xc8\x82\x94\x1b\x3e\xf2\xf3\ +\x6d\xb5\xa5\xd6\x88\x5a\x24\x2a\xde\x0b\x65\xf9\xac\x56\xf5\x6f\ +\xc7\x5a\x0e\x6b\x60\x37\xf6\x09\xe4\xae\x79\xb8\x17\x30\x10\xfe\ +\x8c\xa4\xc3\x44\x2a\x56\x65\xa8\xd2\xf6\x6b\xe0\x3c\x0a\x7f\x23\ +\x5a\x85\x72\x76\xc6\x26\xd5\x75\x99\xaa\xa6\x6c\x35\x68\x89\xe0\ +\xb2\xfa\x77\x8a\x26\xbd\x18\xee\x0f\x63\xe0\xdf\x2f\x93\x79\xb6\ +\x93\x45\x8f\xec\xcb\x42\x15\x10\xae\x7a\x2b\x36\xe3\x5b\x40\x67\ +\x38\x2d\xcd\x45\x89\xdf\xaa\x18\xcb\x3f\x54\x5d\x1f\x2e\xa2\xb7\ +\xb3\xe4\x21\xef\xac\x52\x2d\x42\x17\x6a\xbf\x99\xdc\xfc\x4c\xf5\ +\x7d\xb4\x8e\xc9\xed\x65\xf4\xdf\x50\xfd\xbf\x2a\xde\x1b\xeb\x98\ +\x1f\x4b\x95\x77\xdf\xb2\x2c\xd8\x73\xbe\x74\x8f\x2e\x7a\x0a\xba\ +\x6c\x84\xed\x38\xa4\x7d\xad\x2b\x16\x57\x85\x1b\x20\x26\x7d\x4b\ +\xea\xe0\x3e\x53\xd8\xa6\x69\x57\xda\x78\x30\x88\x21\x37\xae\x6e\ +\x2c\x62\xf7\x7a\x8f\xaf\xec\xc5\xf8\x54\xeb\xd7\xfb\x2a\xcb\x83\ +\xd3\x98\x9f\xe6\x27\x04\x97\x53\x2d\xe8\x78\x03\x8d\xcf\x09\xb2\ +\x89\xe6\x0d\x34\x39\xde\x0a\xb2\x53\x5d\xb1\xd9\x33\x57\x7f\x5c\ +\x28\xcc\xae\xce\x32\xfb\xa2\x9f\x24\xc5\xc9\x00\xd7\x45\x31\xc4\ +\xf7\x17\x56\x2a\x80\xfd\x62\x2d\x65\xc5\x30\x44\xe8\xc7\xee\xcb\ +\x48\x4b\xa0\xc8\xd9\xc1\x23\xca\xe9\x0a\x20\x24\xef\x73\x80\x80\ +\x3a\x7e\x2e\x76\x75\x1e\xf0\x47\xbe\x85\x57\x75\xb8\xfa\x90\x81\ +\xb6\x2c\x41\x45\xfa\xa4\x49\x3d\xf0\xf2\x80\x79\x3d\x27\x6d\x99\ +\x0e\xe5\x39\x44\x63\x28\xc8\x8d\x8f\xd4\xa3\xa0\x74\xf1\x1b\x1d\ +\xd6\xa7\x3a\x5a\x1f\xab\xff\xdc\x9b\xc6\xe2\xb6\xdc\xfd\x59\x2c\ +\x4f\xd8\x58\xd3\x78\x40\x1d\xaa\x4f\x71\x67\x29\x9f\xbe\x55\x3a\ +\x36\x30\x17\x4a\x43\xdd\x71\xef\x63\x26\x9d\xec\x29\xb1\x0f\x45\ +\x3d\x4b\xce\xf5\xd9\x93\xfc\xae\x74\x8c\xc4\xf3\x1f\xc6\x60\x97\ +\x7c\x8c\xc0\x9a\xea\xd9\xaf\x4f\xe8\xe3\x08\x73\x10\xed\x7e\xe6\ +\x33\x0a\x46\x4a\x98\xcc\xb0\x45\xf0\x7c\x68\xb8\xf2\xbb\x81\x0e\ +\x5d\x08\xab\x17\x28\x06\x9b\xa8\x31\x9b\xc6\x83\xaf\xde\x8b\xf5\ +\x17\x5e\x57\x59\x4e\x35\xf4\xe4\xcd\x2d\xa2\x39\xe3\xb1\xe0\x14\ +\xfb\x67\x47\x11\x47\x72\xf3\x33\xdf\x98\xa4\xfc\x79\x73\x4f\x83\ +\xa8\x5f\x77\x94\xa7\x71\x61\xf1\xe0\x6e\x8c\x8e\xb8\x81\x39\xcf\ +\x7e\x2d\x36\x15\x93\xb6\x03\x5b\xe8\xba\x82\x36\x7c\xe2\x54\x07\ +\xb2\xa5\x1d\x42\xae\x18\x5d\xbc\x06\xde\xb0\xd2\x78\xe4\xcf\x78\ +\xf1\x49\xca\x49\x3f\x06\x3b\x03\x8d\x49\x1a\x9b\x08\x6f\x6c\xa6\ +\x55\xdd\x89\x0c\xb5\xbc\xf3\xba\x93\x43\xbc\x5c\x73\x62\x77\xa5\ +\x32\xbe\x4a\x55\xd1\x56\x52\x14\x6f\xc6\x15\x47\x05\x38\x8e\x7e\ +\xac\xba\x72\xdb\xeb\xfc\xa8\x5d\x22\x89\x02\xea\x52\x41\xea\xc0\ +\xff\xc8\xd5\x7e\xc8\x5d\x4c\x74\x20\x6e\x85\x45\xaf\xcf\x4d\xf8\ +\xc8\x12\xe9\x2c\x0d\x7f\xae\xc9\x37\xa5\x24\x56\x74\x71\x23\xf4\ +\x44\xfd\xf6\xc1\x83\x55\xbc\xf8\x0b\x7f\x3c\x6e\x3c\xf7\x01\xb5\ +\x3d\xe9\x68\x2b\x24\x53\x6f\xd1\x54\xa8\x2c\x6f\x45\xaa\xcf\x63\ +\x97\xdf\x45\x6a\xfc\x3e\x23\x4d\x6c\xfd\x2d\x2e\xc6\xf9\xfa\xa9\ +\x8d\xd7\x6d\x40\x68\xcb\x25\xb3\xc7\xc5\x78\xb8\x8c\x3f\xf6\xb9\ +\xff\x61\x3c\xbc\x37\xd0\xf5\x68\x1c\x73\x06\xc6\xd2\x97\xf0\xf2\ +\x26\x26\xfd\xae\xa6\x2a\xe1\x42\xa7\x9f\xf0\xf5\xc0\x0c\xae\x14\ +\x89\xb5\xae\xdf\xcd\x5b\x6a\x0a\x27\x3f\x95\x65\xda\x32\x56\x18\ +\x17\x35\x32\xf3\x2a\x5c\xbe\xb1\xea\x71\x83\x81\xa1\x11\xbd\x38\ +\xcd\x3b\x47\x19\xa7\x95\x87\x37\x5c\x66\xd8\x2a\xcb\x34\xc8\x65\ +\xf9\x35\x14\xc4\x30\x5e\x7c\x6e\x1d\x4f\xf2\x59\x5c\x7e\x8f\x4c\ +\x9c\xe6\xe6\x2f\x85\xb0\xe3\x90\xa8\xac\x3c\x54\x54\x9b\x92\x59\ +\xa3\x9a\xd2\xe3\x89\x09\x9f\x12\x7a\x8c\x75\x65\x8d\xe2\xfa\xb5\ +\x71\xbc\xf4\xe1\xa3\x18\x4a\x66\x3d\xe7\x86\xb8\xae\x75\xba\xa6\ +\x2d\x66\x1a\xe5\x57\xba\xa0\x69\x0c\xe5\xf3\xd9\x7d\xd9\xe6\xdf\ +\xad\x5a\xaa\x7e\x94\x1e\x95\xd4\x55\xf3\x90\x17\x1c\xfd\x1f\x9d\ +\xcd\xe2\xf6\x5d\x7e\x7b\x4b\xd7\x4a\x35\x6c\x6e\xa6\x39\x57\x08\ +\xa3\xa5\x04\xe2\x2d\xa3\x83\xfe\xb3\x0d\xa1\xcd\x6c\x50\x43\xf4\ +\x15\x07\x10\x41\x1a\x9b\x24\xeb\x61\xae\x44\xa5\x90\xd9\x25\x2c\ +\x97\x62\xf2\xe9\x2b\xeb\x18\xaf\x07\xb1\xbb\x97\x96\xf0\x46\x9a\ +\x47\x30\xf9\xbe\x25\x2e\x65\x4b\xc5\x6b\x56\xe9\x4d\x34\x36\x85\ +\x72\xf3\x48\xc5\x57\x9c\xdf\x2c\x53\x7b\x2e\xe8\x7f\xe6\x65\x1c\ +\xfc\x7c\x5b\x4d\x66\x41\x2b\x43\xf3\xe4\x73\x5d\xc5\x46\xd6\x01\ +\xc8\x40\xb7\xae\xb4\xb7\x64\x6d\xac\xc2\xdd\xf9\x32\x73\x9d\x7a\ +\xe3\xbf\x9e\x07\xc4\xda\x71\x20\xce\xf1\x68\xc9\xf2\x99\x26\x52\ +\xf5\x43\x1e\xc9\x53\x1c\x4e\x7f\x3e\x92\xa6\xe8\xb0\x4c\x49\x5f\ +\x34\xe4\x5c\x00\x4a\x3e\x6f\xd0\x79\x03\x11\xfb\xf1\xe5\x30\x97\ +\x74\x58\x6d\xdf\x3a\xe4\x17\x3e\xf5\x87\x0e\xdc\x42\xd7\xca\x25\ +\x1b\x8e\xb2\x87\xb7\xe1\x5d\xa7\xe2\xcf\xd4\x9f\xa6\x72\xa7\xe2\ +\x1f\x2d\x86\x71\x47\xe3\xc4\x9b\x27\x83\x78\x98\xfb\x48\xea\x7e\ +\xfe\x60\xa3\xfa\xe7\x3a\x46\xba\xa6\x8f\xfb\x0b\xcf\x3f\x94\xb4\ +\x4e\xe5\x12\x22\xe0\x01\x37\x3f\x06\x38\x50\x64\x30\x4c\x30\xbb\ +\x24\xf2\xe6\x3e\x99\xa4\x36\xf3\x12\xed\xf5\xac\xfa\x4d\x3e\xe7\ +\x44\xbb\xa9\x1a\xac\x06\xde\x4c\x99\xaa\x53\xbc\x71\x67\x16\xaf\ +\xdd\x7c\xe0\x67\x36\x63\x31\xd6\x92\x63\x22\xed\x13\x95\x41\x63\ +\x0e\xe7\xba\x35\x48\xbb\xf9\xab\xd8\x1f\x5f\x89\x29\x73\x4d\xf5\ +\xc5\xe3\xa3\xfb\x71\xeb\x8d\x57\x35\x42\x08\xbc\x35\xa9\x7a\x7a\ +\xee\xe9\x71\x5c\xb9\xaa\xf2\xf3\x96\x1a\xe3\x08\xe9\x8b\x11\xd5\ +\x16\x8a\x5a\xe9\x0b\xe1\xba\xd8\x94\x68\x42\xd4\x49\xa9\x2b\x50\ +\x29\x4f\x75\x18\x1a\xe5\xb3\x0d\xc8\x67\x0b\xc7\xfd\x41\x5c\xb9\ +\xac\x73\x69\x4f\xf6\xaa\x6c\x54\x65\xed\x77\xf4\x81\x8e\x9a\x4c\ +\xe8\xf9\x43\x02\xaa\xba\x2e\x9c\x04\x51\x87\x2e\x00\xe3\xb5\x62\ +\x3d\x7f\x52\xfe\x56\x9b\x11\x3e\x6e\x22\x0d\xb0\x3d\xfa\xf3\x9a\ +\x41\x2c\xda\x32\xe7\x4e\xd5\xce\x8e\xa1\x0d\x59\xd2\xfa\xd8\x01\ +\x8c\x47\xc4\xd5\x8b\xd4\x16\x6a\xa1\x32\x7f\x55\x58\xfd\x99\xdf\ +\x6a\x9c\x3e\x1c\xc5\xe7\x3e\xfb\xf3\x71\x79\xff\x12\x5c\x39\x09\ +\xc8\xd4\x8e\x8a\x2d\xb6\xd8\x62\x8b\x2d\xde\x63\x30\xaf\xd8\x62\ +\x8b\x2d\xb6\x78\xef\xc1\x0c\xf0\xad\x66\x81\xdf\xe3\x19\xe2\x63\ +\x27\xd8\xdf\x11\xaa\xb1\x45\xab\x3d\x4d\xce\xb5\x58\xfc\xa1\x7f\ +\xea\x4f\xc7\xe0\xa9\x8f\xc5\x1b\xc7\xa7\x5e\xf4\xe5\xcd\x9a\x9c\ +\x01\xf3\xa4\x64\xae\x09\xca\x4d\x09\x7c\x1d\x4d\xea\x50\x1e\xaa\ +\x34\x9d\x8b\x60\xa5\x17\xed\x1b\x9e\xd2\xb3\xd4\x4a\x1a\xdf\x0b\ +\x67\x47\xe2\x5b\xb8\x24\x22\x8c\xb2\x8a\xcd\xdb\x10\xb9\x78\xd0\ +\x81\xcd\x24\x6e\xfe\x40\x22\x60\xa3\x70\x15\xa2\xcb\x4a\xc3\x5e\ +\x1b\x6c\xd0\xd2\x25\x43\x9b\x90\xdc\x6a\xce\xa6\x2d\x89\x56\x8c\ +\x43\xd1\xd2\xeb\x7b\xc1\xc8\x5b\x63\x83\x49\x3f\x86\x7b\xc3\xe8\ +\xf3\x96\x1a\x9b\x6c\x16\x63\x25\x26\x5f\x8a\x4b\x16\x06\x75\xd8\ +\xcd\xa6\x13\x55\x70\xde\x80\x76\xf9\xbb\x1a\x48\xd7\x48\x8e\xdf\ +\x72\x1f\x6b\x41\x37\x5e\x46\x6f\xc0\xa2\x69\xe1\x05\xfb\x34\x66\ +\xb1\x9a\xaa\xbe\xef\x4b\xe6\xee\x3c\x7a\x2f\xab\x6e\x5f\x5e\xc6\ +\xfc\x95\x45\xcc\xee\x2c\x62\x3e\x65\xe1\x88\xb2\x92\x07\x86\x61\ +\xac\x79\xc9\x02\x1d\x52\x90\xae\xca\xe8\x46\x34\x69\x6a\x09\xf0\ +\xcb\xa2\xbc\x5b\xe0\x06\x8a\xd1\x3f\x31\xa9\x4f\x7a\x53\xda\x8b\ +\x3d\x7a\x1c\xfe\x92\x05\xf3\x50\xae\x37\xd6\xa2\xb5\x17\x3b\xcf\ +\xae\x62\xb2\xa3\x74\xab\x45\x0c\x8e\x24\xf1\x5a\xc4\xe9\x03\x2d\ +\xe4\xce\xd8\x40\x53\xff\x2a\x1b\x69\xfe\xac\x9e\xdc\x72\xce\x06\ +\x90\xb4\x2d\xa4\x6f\x29\x3d\xea\x6f\x6c\xea\xfa\x53\x8e\x0b\xf2\ +\x86\x2f\x1f\x27\x1a\x0b\x6c\x45\x76\x6e\x98\x1c\xf2\xcf\x64\xf2\ +\xf3\xad\x16\x47\xa5\xc1\x26\xf5\x67\xba\x32\x33\x6d\x0d\xfb\x06\ +\x11\xce\x0b\x59\xda\xa9\x84\xcb\x49\xe2\xf3\xc6\x40\x53\xa5\x60\ +\xca\x59\x2c\xe5\xf1\x5d\xb3\xe8\x21\xd6\x3a\x2c\xee\xf8\xac\xd5\ +\x02\x64\xd3\xa8\x4c\x43\x7a\x87\x84\x42\x73\xb4\x0a\x1c\x3a\x21\ +\x54\x5f\x3d\x5e\xb0\x7a\x38\xf7\xc6\xda\xf2\xfe\x2c\xe6\x0f\x44\ +\x1f\xcb\xb1\x71\xc9\xcd\x42\xfa\x16\x1b\x94\x0b\xea\x57\x79\x88\ +\xf6\x5d\x37\x36\xe4\x94\x76\x79\x26\x35\x6c\xa8\xa9\xa2\x7d\x63\ +\x6d\xac\xf3\xe1\xf2\x3c\xfa\x87\x33\x9d\x17\x23\x0d\x26\x34\x40\ +\xad\xc4\x84\x6d\xf1\x5f\x81\xe2\x93\x96\x9c\x37\x30\xe5\x9b\x51\ +\xe8\x3c\xb9\x32\x0c\xb8\x89\x6d\x59\x78\x19\xf3\x38\x70\x53\xa2\ +\x88\xc9\x17\x81\x4a\xfd\x71\xe3\x61\x49\x99\xe6\x8b\x98\x7e\xeb\ +\x6e\x9c\xfe\xfa\x1b\x11\xdf\xb8\x2d\xa1\x59\x8c\xfc\x81\x30\x6e\ +\x3e\xca\xa9\x5c\xce\xf5\xd6\x51\xc4\xf1\xb1\x12\xab\x13\xd1\x6f\ +\x74\xfe\x87\xce\xc5\x18\xaa\x02\xfa\xaa\x88\x11\x15\x79\x2f\xa6\ +\xbf\xf5\xad\x38\xbb\x77\x1a\xe3\xb1\xc6\x06\xe5\xc7\xb8\x55\xed\ +\xf3\x98\xd6\x05\x65\x3c\x77\xde\xd4\x3a\x41\x96\x26\x02\x16\x2b\ +\x47\x03\x9d\x2e\x8b\xf4\xf3\xf6\x17\xbf\x4f\x36\x19\xc4\x70\x32\ +\xf2\x6f\x95\x0d\xf8\xad\x1c\x8f\x9b\x99\x63\x75\x2d\xd5\x72\x6a\ +\x7e\x0d\xcc\x86\x2b\xa2\x93\x65\x4b\x88\x5f\x2b\xd4\x9d\x89\x9e\ +\x9b\x1b\xbb\x8d\xa8\xa2\xfd\x84\xf2\xa0\x1f\x03\xc6\xc6\xda\x5c\ +\x19\xeb\xfe\x9a\x4e\xb4\x13\x95\x94\x8d\x82\xda\x3f\x52\x8e\x6b\ +\x93\xef\xde\xaa\xba\xed\xaa\x9c\xfc\x46\x27\x80\x5f\xe2\x68\x22\ +\xb2\xe5\xe9\xf8\xfc\xd4\xa3\xa2\xc4\xf3\xa6\xb2\x68\xfa\xec\xab\ +\xd3\x55\xec\x5d\x7b\x2e\x3e\xfd\x4f\xff\x99\x18\xeb\xc4\xc4\x9c\ +\xe6\x2d\x5e\x1d\xf0\xda\x36\xb3\x86\x24\x37\x90\xbc\x0d\x3b\xde\ +\xcf\xb8\xa8\x08\x5b\x6c\xe2\xdb\x6a\x4c\xf5\x2d\x5d\x9f\x7f\xf4\ +\x53\x3f\x12\x1f\xbc\xfe\x63\xf1\xc6\x1b\x47\xbe\x2e\xb7\xbf\xd7\ +\x23\xf8\x3c\x29\x9d\xbd\x9c\x33\x8e\x85\x6e\xd0\xd2\x0d\x25\x22\ +\x1f\x5a\xe2\x06\xff\x3a\xe6\x5c\xe7\x88\x44\x37\xea\x36\xc0\xf5\ +\x82\xbf\x4c\x4d\x11\xaa\x33\x94\x46\xa7\x81\x37\xd4\xbc\xb9\xcc\ +\xf8\xd0\xc6\x3e\x06\x9b\x32\x2d\xd5\x58\xd8\x41\x9b\xb3\x3f\xfb\ +\xa7\x71\x35\xdf\xca\x4b\x2e\xc7\xc1\x60\x18\x1f\x78\x7a\x10\x37\ +\x0e\xf9\x84\xa2\x8c\xd1\xbf\x37\xb8\xfd\xd7\x4a\xa6\xff\x18\x74\ +\xc7\xcb\xf3\x82\x0a\xb7\xac\xa4\x18\x36\x46\xbd\xdd\xf8\xf0\xf3\ +\xb3\x38\xd8\x39\xd5\xf5\x6c\xac\x18\xcd\x99\x74\x59\xf2\x9b\x7f\ +\x7c\xee\x58\xd7\xc1\xf9\x6a\x1a\x27\xba\x0e\x02\x36\x20\x72\x2a\ +\xa7\xbc\xea\x58\x27\x9f\x87\xaa\x32\xa2\x1f\x0f\x4f\x96\xf1\xfa\ +\x9b\xeb\x38\xe1\x53\xc9\x6e\x47\xe4\x70\xb4\x43\x1e\xb3\x79\x4b\ +\x7a\x81\x3d\xb1\x1c\x2b\x31\x34\xed\xcb\xa3\x00\x51\x02\xb5\x5b\ +\x74\x58\x46\xd2\x3a\x22\x90\xff\x3e\x78\xee\xee\x6c\x54\x77\x8a\ +\x73\xfe\x7d\xf1\x54\xd6\xab\x07\x83\x98\xa8\x7f\x32\xee\x51\x1e\ +\x3f\x24\xc2\x1b\x25\x2a\x3b\x0f\x14\xf0\x15\xed\x23\x15\xfb\x78\ +\xba\x8e\x53\xf9\x27\xb3\x55\x9c\xa9\xfd\xce\xe6\x9a\x5b\x2a\x7e\ +\xaa\x7e\x37\x95\xac\xdf\x44\xa3\x9e\x14\xf6\x1b\x67\x6a\x37\xfa\ +\xb9\x82\xb9\xe9\xa4\x3f\x1e\xaa\xa1\xbe\xd9\x54\x22\x37\xc7\xe9\ +\x00\x8f\x4d\x4a\x77\xd9\x32\xfe\xd6\x03\x29\x29\x8f\x37\x02\xc4\ +\xb1\x8c\x8f\x84\xe5\x90\xc7\x51\x46\x71\xed\x1a\x05\xd9\x73\x32\ +\x4e\x1a\xb0\x43\xf9\x94\xea\x71\xbb\x78\x73\xa1\xa3\xa7\x3e\xe0\ +\xe4\x37\xd2\xac\x57\x92\x3a\x37\xaa\x3c\x44\x5e\x23\x2c\xa5\x36\ +\xcb\xf4\xfe\x73\x1a\xd2\xe2\x54\x36\xa7\x51\x12\xf2\x15\xcf\xe5\ +\x35\x9f\xd9\x03\xe7\x2c\x61\xca\x9f\x71\x4c\x9f\xa8\x8b\xb9\x78\ +\x9a\xc6\xc6\xbd\xb3\x71\xdc\x3a\x53\xbd\x2f\xb5\x9e\xd0\x9c\x7e\ +\xa8\xb9\xfe\xa8\x3f\x88\x3d\xb5\xd7\x9e\xe6\x16\xc3\xc1\x5c\xb9\ +\x4a\x7f\xc9\x2f\xe7\xae\xfa\xc3\xe7\x9a\x48\x9c\x8f\xc4\xa9\xd5\ +\x15\x40\xae\x9e\x23\xf4\x04\xde\x3c\x4c\x90\x0e\xcf\x87\x8c\x33\ +\x9f\xd0\xc5\x48\xf1\x7a\x5e\x77\x91\x75\x8c\x66\xea\x84\xbe\x74\ +\xf7\xe8\x38\x6e\x3f\x3c\x8b\xd7\xde\x90\xd6\x21\x6f\xa3\xf1\x99\ +\xc7\xb1\x1c\x0f\x4c\x01\x8e\x7d\x97\x9d\xa7\x91\x16\x47\xaf\xc7\ +\xf4\xec\x58\x75\xc2\x6f\xfb\x0d\xe3\xcd\x57\xbf\x15\x47\xf7\xdf\ +\x8c\xa1\xac\x1a\x8d\x56\xb1\xd3\x5f\xc4\x13\x4f\x8d\x25\x3b\x54\ +\x52\x55\x24\x0b\x2f\x92\xda\xd5\x73\x0b\x5a\xff\x04\x6a\xd8\x50\ +\xe9\x3a\xf1\x9b\x71\x09\x6a\xa0\x10\x8f\x44\x53\x2e\xcf\x9d\x74\ +\xaa\xb3\x99\x76\xf5\x60\x18\xbb\x07\x0c\x18\xb2\xc5\x3b\xe7\xa4\ +\x56\x9b\x94\x0a\x6c\x6c\xa9\x63\x45\xc1\x66\xe8\x1c\x14\x79\x51\ +\xbc\x55\x90\xb7\xea\x0a\xa7\xc1\xda\xcd\x99\xb2\x1e\x91\x92\xea\ +\x1a\x4d\x19\x64\x04\xe3\x00\xed\x8f\x59\xf4\xe0\xe4\xcb\x55\x3b\ +\xd3\xb3\x8f\x43\x47\x8e\x16\x1d\x88\xe7\xb4\x76\xa9\xab\xc2\x9f\ +\xf6\x45\xde\x32\xf2\x50\xae\x3e\x1b\x27\x87\x71\x69\xf2\xa9\xf8\ +\xf1\xcf\xfe\xa4\xfa\x3d\x1b\x80\x29\xdf\x82\x3c\x32\x9d\x71\x2e\ +\xcb\x2d\xb6\xd8\x62\x8b\x2d\xbe\x37\x78\x64\x38\xde\x62\x8b\x2d\ +\xb6\x78\xcf\x51\x27\x80\x5d\x5c\x34\x19\xfc\x1e\x4c\x10\x2f\xca\ +\xfa\x9d\xa1\x6b\x0c\x74\x57\x93\x68\x82\x7e\x4b\x6d\x2f\x7e\xfc\ +\x2f\xff\x73\x71\xfb\xb4\x1f\x0f\xe7\x4b\x3f\x61\xca\x93\xba\x4c\ +\xb2\x49\xc5\x8d\x60\x90\x37\x65\xcb\xc2\xd3\xab\xb5\x84\xa9\xb2\ +\x90\x31\xad\x38\x2f\x9c\xb9\xd9\xae\xf5\x4f\xfd\xf4\xa3\x6f\xde\ +\x3b\x2d\x91\x35\x4c\x52\xa7\x32\x9c\x55\xc7\x6c\x2f\x1b\xfc\xcf\ +\xcd\x0b\x11\x18\x53\x48\xfd\xa7\x5f\x5c\xa2\x10\xa8\x2c\xae\x2e\ +\x14\xba\xb9\x34\x4b\x43\x45\xb5\xd9\xb7\x69\x1b\x75\x86\xe4\xb5\ +\x92\xf1\xc2\x01\x57\x22\xb9\x51\xb0\xe6\x26\xb1\xd6\x56\x03\x2d\ +\xb4\x86\xbb\xc3\xe8\xfb\xc9\x66\xf1\x3a\x0a\xf2\xc9\xdb\x26\xc7\ +\x06\xd8\x95\xbc\x4e\x0c\xe9\x5c\xf1\xf0\x6a\x6c\x2e\xde\xd5\x32\ +\x5a\x8c\x2f\x09\x69\x71\x2f\x41\xad\xf2\x96\xca\x8b\xcf\xd6\xf1\ +\x92\xcc\x6a\xaa\x05\x2b\xbf\x2f\xf6\x40\x32\xb7\x24\x7d\x6b\x1e\ +\xa7\x37\x67\x71\x76\x5f\xe1\x53\x2d\x42\x79\x3b\x8d\x9b\x19\xae\ +\xf3\x34\x30\xdb\x18\x7b\x33\xdc\xb1\xc4\xa6\xd4\xa3\xd1\x21\x37\ +\xa1\x88\x26\xae\x68\xa0\xb2\x1a\xc0\x43\x20\xcb\x6b\x51\x11\x96\ +\x74\xa5\x72\x93\x40\xfd\x41\xc6\x50\x96\xb3\xc1\x80\x87\x57\x23\ +\x5e\xd0\x82\xfa\x7a\x2f\x06\x43\x49\xce\x46\x11\x77\x17\xb1\xb8\ +\xbb\x8a\xe9\xd1\x3c\x66\x27\x92\x9d\xc9\x95\x3e\xc6\x06\xda\x92\ +\x4d\x34\xdc\xb2\x2c\x28\xdd\xc7\x28\x6c\xe6\xe7\x03\x7d\xae\xfc\ +\x19\xb4\x0d\xff\xc5\x51\x3f\x8d\xa5\x62\xc0\x73\x53\xd0\xef\x64\ +\x5b\xde\x94\x01\xc4\x97\xb2\x14\xd0\x4e\x8e\xa7\x8f\xeb\x9f\xac\ +\x37\xea\xc1\xb6\xd0\x7a\xc9\x76\x14\xba\xab\x6f\x03\x92\xce\x9b\ +\x24\xc8\x57\x4b\xa1\x6b\x1a\x04\xd2\xb9\x6f\xa5\xc1\xc5\x16\xf8\ +\x26\x1a\x54\x1b\x11\xb5\x82\x12\x8f\x67\x52\x11\xb9\x08\x2f\x1b\ +\x8f\xd3\x55\x2c\x8e\xf8\xb4\xe6\x3c\xe6\xbc\xad\xf6\x60\x16\xab\ +\xe3\x85\x9c\x2a\x5a\xfd\x6b\xcd\x1d\x20\x9c\xe4\x70\xfc\x26\xdd\ +\xe2\x34\xdd\x4c\x34\xbf\x67\xc7\xa6\xda\x74\xb2\x8a\xf1\xe1\x3a\ +\x76\x9f\x5a\xc4\xe4\x09\x36\xd5\x54\xb7\x6c\x80\x69\x95\xed\x4f\ +\x18\x51\x4f\xce\x5f\x3a\xb1\x04\x3b\xb0\x96\x9b\x24\x8d\xd5\x4c\ +\x01\x73\x1a\x68\x8e\xef\x28\x64\x38\x07\x02\xfc\x2a\x8b\xaf\xb4\ +\x35\x28\xb8\x35\x93\x2d\x57\x22\x3a\x1e\x8e\x9b\x9b\xb4\xf1\x92\ +\x1b\xaa\xf7\x4f\xe2\xee\x6f\x7c\x33\xe2\xbf\xff\x5a\xc4\xe9\xbd\ +\x18\xe9\x9c\xdb\x91\x7d\x3c\x6c\x3d\xea\xcd\x62\x6f\x75\x33\xe2\ +\xe5\x57\xd4\x1f\x8f\x75\xd2\x2b\xff\x5d\x39\xf5\xd1\xb8\x3c\x97\ +\x02\x7e\x47\xed\xa1\xd2\xbd\x1e\xf3\x5f\xfb\xad\x78\xf3\x57\xbe\ +\x19\xa7\x0f\x1e\xc4\x68\xc4\xe7\x8b\x8a\xcd\x32\x2e\x7b\x58\x35\ +\x83\x63\xe1\x24\x29\x99\x74\xe6\x99\xce\xda\x80\xec\xa2\x09\xd3\ +\x37\xb1\x65\x22\x2b\x27\xaa\xdb\x91\xc6\x22\x3e\xf7\xc8\xa7\x1e\ +\x55\xe7\xd9\x77\x8b\xac\x08\xd7\x4f\x13\x4e\xb8\xfe\x93\x68\xe1\ +\x0e\xe3\x33\xa1\x00\xaa\x86\x64\xb3\x75\x94\xb0\x03\x25\xbe\xd8\ +\x6b\xd0\xd6\xbc\xf1\x21\xe7\xa7\x33\x84\x2a\x59\xfb\x62\x9e\x52\ +\x58\xa0\xbf\xa2\x0e\xe4\xb8\x29\x31\x3c\x5f\x2b\x24\xa8\x6b\x89\ +\xf7\x31\xe9\xa7\x62\xd3\x6f\x7d\x7e\x36\x39\x16\x05\x19\x69\x9d\ +\x98\xe6\xb7\x4a\xe4\x53\x15\xa8\xf5\xc6\x9c\x74\xce\xe5\xee\xcd\ +\xd4\x77\xe7\xe3\x78\xf1\xcf\xfe\x33\x71\xe3\xfa\x53\xba\x56\x31\ +\xd6\x16\x3d\x42\x6d\xaf\x92\xa3\xe9\xda\x8a\xd5\x55\x6e\xa5\xbe\ +\xaf\xa8\x46\x75\xd1\x35\xf4\xbc\xff\xbb\x11\x6f\x55\x6e\xe2\xba\ +\xf1\xb5\xee\xc0\x79\x9a\x93\xa9\xca\x8b\xe4\xf7\x67\xfb\x93\x45\ +\xfc\x89\x9f\xfa\x17\xe3\xa6\x86\x8a\xb3\x23\x8d\x85\xfd\x9c\x4b\ +\x79\xbc\x63\xac\xc3\xd3\x1f\x57\x02\x92\x65\x3f\xb5\xc7\xb1\xf1\ +\x37\x91\x61\x7f\xa2\x4e\x03\x96\xdf\x16\xd2\x5c\xcd\x9b\x03\xc4\ +\x72\x7e\x58\xa2\x82\x50\xed\xb9\x0a\x15\x22\x3d\x1d\xa5\xa7\xd7\ +\x63\xb3\x3d\x6f\x7a\x72\xfd\xcf\x4f\xb1\x5a\x9b\xa5\x9a\xc4\x42\ +\x25\xdb\x73\xe1\xed\x90\x63\x38\x9f\x4a\xe4\x26\xfb\x7c\x36\xd7\ +\x39\x57\xf5\xaa\xec\x32\x68\x67\x38\x88\x17\x9f\x8f\xb8\x72\x49\ +\xe3\x14\x0f\x77\xe9\x1c\xad\x75\xc3\xb1\x8a\x57\x34\x36\x98\xaf\ +\x83\x2b\x55\xdc\x73\x72\xa0\xcb\x42\x27\x73\x35\x26\x6a\xfc\x5e\ +\xda\x95\x83\xb3\xe8\x73\x43\x5c\x11\x9e\x77\x78\x40\x59\x69\x9c\ +\x62\x7e\xa5\xb9\x85\xc6\xf6\xbb\x77\x6e\xc7\xc9\xc9\x91\x15\x61\ +\xab\x7f\x3b\x95\x31\xdc\xe3\x48\x0d\xf3\xb6\xd6\x22\x8e\x8e\xfb\ +\x71\xef\x74\xe1\xb1\x24\x33\xc6\xd2\x22\x5f\xe1\xba\x2d\xb0\x8c\ +\x0f\x86\x63\x4a\x30\xdb\xbe\x2b\x52\xda\xb5\xd2\x65\xac\xcc\x70\ +\x7a\x65\x18\x35\xe1\xb2\xba\x2f\x64\xcc\x7a\xa9\x3a\x55\x3d\x8d\ +\xe5\x3f\xf1\xe4\x4c\xd3\xfd\x41\x0c\x75\x0d\x1e\xb3\x19\x30\x98\ +\xc7\xc9\x99\xa6\x55\xc7\xbd\xb8\x7d\x3c\x88\x3b\x47\x1a\x0b\x75\ +\x0d\x3f\xd2\xbc\xea\x78\xb1\xca\xcf\x14\xce\xd7\x71\xa6\x39\x95\ +\xdf\xae\x3a\xe7\xd8\x4c\x63\x63\xc8\x53\x30\xe5\x99\x6e\x69\x3f\ +\xeb\x9c\x39\x05\xf6\xa4\x63\x23\x29\x37\xd5\xa8\x77\x64\xb0\x11\ +\xdb\x53\x9e\x90\xcf\x09\xa7\x05\x49\x53\xe6\xca\x4b\x99\x92\x46\ +\x7f\xc8\x4b\x9d\xdb\xd1\xf9\x39\x8e\x63\x86\x9d\xde\xf1\x79\x1d\ +\x4b\x19\xd2\x28\x4e\x46\xe1\x57\xc0\xa7\xc5\xac\x4f\x2a\x5a\xc7\ +\x66\x54\xa1\xad\x6b\xd3\x51\x2e\xf4\x2e\x95\x07\xe1\xcc\x53\x1c\ +\xeb\x57\x1c\xe9\xa4\x97\x35\x91\xd7\x45\xc4\x11\x2e\xb2\x0b\x85\ +\x79\x6c\xe7\xe1\xe9\x38\x6e\x9d\x68\x06\x31\x8d\x18\xf3\x3b\xac\ +\x6a\xab\x83\xe1\x38\xae\x1c\xf6\x63\x97\x07\x63\x24\xb3\x66\xfe\ +\xa4\x0e\xc3\xe6\x1e\x3a\x5d\x37\xf8\x0e\xa5\x3e\xe7\x46\x90\x7e\ +\xea\x58\x50\xa4\x24\x90\x92\x84\x88\x6f\xfb\xa8\x25\x75\x48\xfb\ +\xcd\x3a\x07\x22\xd2\x2b\xa1\x06\xa6\x65\x1b\x9b\x86\x64\x70\xf3\ +\xfe\x51\xbc\x72\xf3\xd8\x7d\x84\xb9\x13\x9b\xb7\x5a\x99\x88\xa2\ +\x8e\x91\x53\x79\x74\x3e\xae\xe6\x27\xf1\xc6\x9b\xff\xbd\xd6\x51\ +\x33\xcd\x11\x14\xeb\xdd\xed\x69\xbc\xf6\xf5\x57\x34\xb7\x3f\xd1\ +\xe9\xb6\x50\x19\x67\xf1\xc1\x67\xf7\x3c\x4e\x51\x97\x94\x89\xbe\ +\x93\x65\xcb\x52\xa4\x03\xd9\xce\xe5\xac\x32\xaa\x64\x83\x4e\x60\ +\x33\x46\xb4\xfe\x6b\x4a\x4e\x59\xc6\x3b\xce\x73\x3e\xbb\x79\x79\ +\x6f\x10\x87\x57\xe6\x9a\x7b\xc8\x50\xa7\x53\x6a\xea\x53\x8d\xec\ +\x73\xae\xa8\xc2\x12\x74\x74\x5d\x17\x4d\xf8\xa2\xc8\x73\x40\x93\ +\x1f\xc6\xe2\x93\xdd\xb2\xa1\x6d\xad\xb4\xa0\x49\x6e\x73\xb2\x34\ +\xdd\x3e\x9d\x7c\xfd\x63\x9f\x6d\x4c\x67\x3e\x28\x7e\x0d\x36\xb0\ +\x88\x0e\x6d\x67\x11\xb2\x2e\xfc\x00\x86\xfb\x3a\x7d\x89\x08\xca\ +\x3f\x16\x6f\xa1\xeb\xdd\x3a\x3e\xff\x7b\x7e\x2e\x76\x47\x87\x8e\ +\xf7\xc6\x75\x6b\xa5\x50\x72\x7a\x9b\x72\x6f\xb1\xc5\x16\x5b\x6c\ +\xf1\xee\x62\xf0\x37\x85\x42\x6f\xb1\xc5\x16\x5b\xbc\xf7\xa8\x93\ +\xbf\xb7\x9a\x04\xbe\x13\x99\xef\x00\xa8\x7b\xf7\x54\xa2\xa9\x4c\ +\x68\x81\x57\x0c\x7d\xbf\xfd\x73\xf5\x33\x1f\x89\x97\xff\xdb\x5f\ +\x89\xfb\x5f\xfe\xcd\x38\x9c\x8c\x78\x18\x2e\x06\x1c\x98\x7c\x6b\ +\x16\xcf\xc3\x99\x2c\x04\x4b\xc2\x9c\x58\xfb\x46\x83\x83\x92\x43\ +\x17\x0e\xcf\xdb\x5f\x5a\x5f\x21\x97\xd1\xdc\x4c\x85\xef\x00\x3e\ +\x77\x36\x81\xf2\xe7\xf9\x3b\x78\x35\xaa\xcc\xdd\x0d\xe8\x14\x4d\ +\x5d\xc9\x17\x57\x76\x15\x91\x06\xbe\x7f\xd1\x29\x5e\x43\x9e\x17\ +\xac\x38\xc7\xb7\x7e\x33\xe5\x32\xd0\x88\x64\x54\xb1\x01\x52\x2e\ +\xf5\x63\xb7\x6c\xd1\x6a\xcf\xd5\xa3\xf5\x20\x6f\x42\x61\x9f\x17\ +\x24\x46\xa9\xa7\x0e\xaa\x1e\xa3\xa1\x91\x97\xab\x61\xf9\xf5\xe9\ +\x76\x9e\x32\xe6\x89\x48\xde\xde\x8a\x91\x18\x5a\x6c\x73\x7f\x7a\ +\xa5\x26\x62\x21\x6f\x4c\x87\xd1\x3f\x91\x1d\xc7\xaa\xff\x3b\xab\ +\x58\xdc\x63\x73\x4d\x32\x53\x2d\x67\xf9\x12\xdd\xb2\x3c\xd5\x7e\ +\xde\x2e\xb9\xca\xa9\x28\x1a\xd3\x9c\x22\x63\xe0\x23\x5c\x79\xdd\ +\xb8\x8a\x0d\x65\x35\x90\x37\x76\xea\x82\xb0\xaa\xe0\x00\x9f\x85\ +\x19\x9b\x0e\xab\xb1\x0a\xb4\x33\x88\xdd\x67\xd7\xb1\xf7\x89\x7e\ +\x1c\xee\xf7\x62\x81\x8c\x16\x6a\xf3\x57\x57\x71\x7a\x67\x11\xb3\ +\xd3\x88\xb9\xca\x53\x1e\x18\xce\x7a\x97\xab\x0b\x49\x7b\x1d\x47\ +\x3e\xd9\x1a\x2a\xaf\x2a\xc0\x7d\x57\x3c\xc7\x21\x63\x23\x20\x6a\ +\x1f\x2c\x34\x95\x23\x83\xfb\x6c\xf0\xed\x8d\xa3\xbf\x3b\x51\xfd\ +\x0f\xca\x53\xfd\x9c\x14\x4e\xfc\x68\x7e\x56\xe7\x1c\x1a\x10\x22\ +\xda\x5c\x57\x68\x86\x52\xca\x96\x91\xa8\x24\x2e\xa4\xe3\x8a\x38\ +\xec\xe2\xbb\xbf\x39\x06\xa8\x8d\x79\x03\xe0\xc1\x59\xac\x4e\xa6\ +\x5a\xd8\xb2\x29\x86\x0a\x2a\x46\xd1\x76\x3a\x50\x47\x5d\xc0\x37\ +\x44\x34\x74\x21\x75\xe0\xf3\x2d\xbc\xb5\x66\x37\x57\x7e\x85\xf6\ +\x9b\x69\x0a\x7b\xb3\xdc\x77\xd4\xe4\xb8\xbb\xc6\x9d\x0e\x25\x5c\ +\xa9\x5a\xc6\x23\x9d\x00\x13\x2d\xa4\x77\x17\x71\xc0\xef\x89\xad\ +\x87\xb2\x69\x1a\xcb\x7b\x7b\xea\x8b\x0a\x73\xc6\xab\xee\xa8\x3e\ +\x2f\xf0\xdd\x1e\xfa\x63\x2c\x22\xff\x5a\x60\xf9\x2e\x29\x05\x47\ +\xbe\xfc\xf1\xdf\x88\x5d\x00\xb3\x89\x84\xb0\x97\x84\x6f\x24\x78\ +\xb4\xc1\x2f\xd1\xce\x33\x6d\x19\x50\x65\xfc\xbe\xfc\xd1\x2c\xae\ +\xec\xf7\x63\x70\x63\x37\xd6\xcf\x72\x9e\x4d\x63\xb8\x3e\x89\xc1\ +\x83\x37\x62\xf8\xd5\xdf\x8a\xd5\x37\xbe\x15\xbd\xc1\x49\xc4\x81\ +\x34\x5c\x53\x7f\x7d\x42\x89\xd9\x58\xe3\x35\xbd\xa3\xe3\x88\x2f\ +\xbe\x1e\x77\x7f\xe9\x1b\xf1\xea\x3f\xb8\x15\xa7\x6f\xaa\x4e\x96\ +\xab\x18\x2c\x95\x87\x6f\x44\x38\xd3\x62\xbb\x0f\x79\xe4\x40\x9c\ +\xcb\x0a\x43\xf2\x16\x4e\x76\xa2\x50\xf2\xbc\x09\x28\xd2\x9f\x9d\ +\xf5\x67\x1e\x87\xd1\x9b\xe8\xfc\xdf\x91\xdd\x3b\xa3\x18\x88\x1e\ +\x70\x13\x86\x8d\xac\x26\x3f\x50\xf5\xbf\x05\xaa\x70\xa7\x0f\xd7\ +\x3a\x6b\x12\x5b\xa6\xb5\x0c\x59\xb7\x95\xb2\xcb\x2c\xf4\xa7\xf2\ +\x72\xee\xf0\xf9\x34\x36\xd4\x7c\xde\x95\xe4\xde\x5c\x90\xf3\x4d\ +\x76\x9d\xc0\xf4\x9e\x52\xdc\xd2\x57\x33\xe0\x73\x5a\xce\x3e\x77\ +\x23\x3d\xbe\x6a\xb4\xa0\x3e\x9d\x36\x2d\xf2\xb9\x0a\x14\xf6\x75\ +\xca\xe9\xb2\xb5\xf9\x54\x13\x9b\xb9\x3c\xe8\x30\x90\x3d\xd8\xe9\ +\x1b\xb0\xd2\xc7\x9b\x16\x2f\x9f\xae\xe3\xda\x47\x7e\x38\x7e\xf0\ +\xaf\xff\x35\xdf\xb8\xc4\x48\x1d\x13\xd8\x6c\x5b\x5c\xa2\xe4\x75\ +\xa8\x8c\x49\x97\x68\xa9\xef\x1b\x5a\x33\xcf\x1b\xb7\x19\xd7\xf5\ +\x6b\x41\xaa\xff\x3b\x1d\xdd\x32\x9e\x2f\xf3\xf9\xf2\xbf\x6d\xb8\ +\x30\xe4\xd3\xb7\x7a\xba\x4e\x5f\x3f\xbc\x1e\xdf\x78\xf5\xd5\xf8\ +\xe6\x6b\x9a\x4f\xed\xef\xc4\x60\xcc\xc7\xe0\xb8\x25\x2e\x31\xc6\ +\x81\x4c\x20\x27\x8e\xc3\x85\xe7\xfe\x86\xe7\x23\x9c\x56\x3d\x07\ +\xf5\xf3\x1c\x3b\x95\x97\xfc\xda\xaf\x89\xf5\xa9\x67\x3e\x82\x35\ +\x75\x16\xaf\x8b\xca\x4f\x42\x07\x7c\x09\xf9\x6d\x2c\xd1\x29\x5f\ +\xed\xd1\x3f\x44\xc3\x07\x8e\x39\x87\xc7\xf3\xb0\xcc\xe7\xb9\xec\ +\xe5\x5c\x84\x83\x8d\xe4\x37\x19\xf7\x62\x67\x47\xd7\xf5\x87\xe5\ +\x37\x52\xd9\xca\xf6\xf9\x9f\xf9\x73\x1a\x57\x2d\xdf\x16\xba\xe2\ +\x14\x80\xba\x5a\x0f\x62\xa2\x71\xfd\xe9\x27\xa7\x3a\xcf\xcb\x38\ +\x01\x34\x98\x5a\x9c\x02\xea\x02\xc6\x38\xb4\x5e\x9f\xc5\xec\x6c\ +\x2d\xfb\xf6\x62\x34\xde\x71\x14\x6a\xb8\xb9\xcd\x75\xc4\x6f\xdd\ +\xf6\x16\x71\xf7\xfe\xc3\xf8\xd2\x57\x4e\xe3\xf5\xbb\x67\xba\x2c\ +\x32\xee\xa0\x2b\xf5\x65\x5d\x8a\xb6\x72\x1d\xec\x67\x36\xc9\x2a\ +\x8c\x82\x0c\x66\x6c\x9d\x83\x80\xec\x0b\x1e\xb5\x92\x57\x92\xd9\ +\x2b\x34\xd2\x1c\xb2\xed\x99\xeb\xe0\x29\x45\x6f\x1e\xeb\xd9\x28\ +\x9e\xbd\xbc\x8c\x8f\xbf\x38\x8b\x21\x6f\xfe\xab\x7f\xf2\x08\xd6\ +\xcd\xe3\x41\xbc\x7e\x73\x14\xb7\x8f\x47\x71\xaa\x4b\xf8\x54\x63\ +\x21\x6f\x9a\x71\x0b\xbc\x0c\xad\x72\xd9\xa7\xdd\x5e\x84\x1b\x7e\ +\x27\x2c\xe7\x9b\xe7\x0a\x7b\xf3\x48\xc2\xb4\xad\x37\x3f\x88\xdb\ +\xd0\xa7\x3a\xd4\xdc\x89\x71\x78\x34\x19\xf3\x75\xcd\xec\xff\x2a\ +\x23\xf9\xe4\x3f\x85\x50\xc8\xe5\xc6\xa5\x47\x5a\x1f\x90\xa9\xca\ +\xf0\x14\x30\x5b\x07\xb3\x1c\x48\xa2\xfe\x61\x08\xb6\x14\xb2\x28\ +\x28\x34\x07\xff\xaf\xe3\x6c\x3a\x8f\xd3\xb3\x45\xbe\xb1\xee\xb8\ +\x2c\x8b\xeb\xa0\x96\x2b\xc5\x8d\x9c\x53\x10\x9b\xe5\x75\x9c\xe5\ +\x9d\xab\x9d\xf9\x96\x4d\x1f\x19\xe0\x78\x1d\xd8\x24\xf3\xdb\x6f\ +\xab\xa1\x7f\x6f\x6d\x20\xfa\x60\xbc\x8a\xfd\x5d\x1e\xc4\x99\x84\ +\xba\x9f\xa6\xfb\x03\xc5\x2d\xe3\x74\x4e\x3e\x69\x9b\xd5\x88\xc8\ +\xb7\x85\xaa\x32\x6c\x14\x5d\xaa\x0d\x88\xd5\x01\x95\x57\xe4\xa1\ +\x6d\x58\x57\x20\x13\x73\x3c\xcf\xa6\x39\x32\x5d\x07\xc8\x28\xc2\ +\x9e\xc3\x2b\x35\xa7\xb7\xfe\x62\x6f\x32\x88\xab\xbb\xd7\xe3\xaa\ +\xc6\x42\x95\xaa\x6c\xa7\xf1\xd1\xc7\x81\xfa\x61\x3f\xa6\x47\xb7\ +\xe2\x8d\xd7\xff\x5e\xdc\xbb\xff\xc5\x18\x0e\x17\x3e\xb7\xf8\xa2\ +\xc9\x50\x63\xc2\xe9\xf1\x69\x0c\x77\x76\xfd\x1b\xb4\xd3\xe5\x22\ +\x26\x5a\xef\x7c\xf9\x37\xd5\x36\x8b\x53\xf5\x1d\xf2\xca\x3a\xc7\ +\xa6\x6c\x77\x08\x0c\xa8\xc8\xb8\x2e\x6a\x30\x4b\x58\xa9\x12\xee\ +\x24\xf7\xf8\xea\xf5\x6a\x9e\xef\x43\xad\x83\x2f\x6b\xc0\xb8\x74\ +\x75\xa1\xf1\x8b\xf1\x81\x39\x15\x99\x32\x7f\x61\x2e\xd2\xa4\x2c\ +\xae\x7b\x6c\x79\x15\x4d\x48\x84\xcb\x50\x03\x1d\xd8\x76\x1d\xfa\ +\xca\x8b\x73\xc5\x9f\xf2\xbe\x40\x16\x8a\x26\xc4\xa7\x1c\x9e\x27\ +\xa9\x83\x41\x67\xdf\xcc\xbe\xe2\x73\x51\x0d\x00\xa7\x41\x0d\x6c\ +\x30\x2b\x92\x99\x6f\x71\x42\xa8\x2e\x38\xf0\xef\xcc\x72\x7b\xd4\ +\xa0\x1e\xa4\xfc\xf4\x7e\xc4\x61\xef\xa3\xf1\x73\x3f\xfd\x2f\xea\ +\xba\x34\x8c\x21\xeb\x24\x52\x23\xbf\x81\x47\x18\x5b\x6c\x71\x21\ +\xb6\x3d\x65\x8b\x2d\xde\x3d\x6c\x37\xd4\xb6\xd8\x62\x8b\xef\x2f\ +\xb8\xaa\xbf\xdd\x95\xbd\xc6\xbf\xcb\x33\x80\x77\x7f\x42\x71\xbe\ +\x30\xa2\xb5\xb8\xe1\xe9\xc2\xcb\x1f\x7e\x2e\x7e\xe5\xdf\xff\x8f\ +\xb5\x80\x98\xc6\xfe\x48\x93\x61\x4d\x88\x3d\x89\xd6\x9c\xd8\x93\ +\xea\x3a\xb9\x16\x72\xb1\x9b\xf0\x34\x5f\x61\x58\xcd\x94\x5f\x9e\ +\x6f\x3e\x40\xfb\x26\x0a\x0b\x69\x33\x11\xb2\xf3\x2d\xa0\xaa\x47\ +\x9e\x37\xe0\x20\xcd\xb3\x80\x51\x3c\x11\xb2\xc6\xab\xbc\xba\x84\ +\xc8\xa3\xf3\xa8\xb2\x36\x50\x01\xfe\x8b\x33\x1a\xc3\xfd\x9f\x44\ +\x01\x54\x13\x6a\xd9\x9b\xb4\x90\xba\x92\x99\x26\xca\x5e\x67\x9e\ +\xca\x5d\x1e\x56\x19\x3c\x7a\xca\xe6\x03\x77\xbd\xc9\x38\x85\x8a\ +\xa1\x72\xc0\x7e\xa6\x6b\x78\x15\xe7\xc3\x02\x35\x49\x7d\x2e\xb4\ +\x60\xa5\x7e\xd8\x4c\xa3\xb6\xb8\x87\xd3\x5b\x28\x7c\xa6\xc5\xe8\ +\x49\xc4\xf0\x81\xb8\xf7\xe7\xb1\xbe\x27\x5b\x1e\x0e\xf2\xad\xb5\ +\xa5\x68\xad\xa8\x78\x7a\xd4\x2d\xa8\x3a\x74\x16\x45\x87\xc9\x92\ +\x27\x5e\x21\x8b\x75\x3a\xd6\xc8\x62\xae\x51\x79\x15\x4d\x5c\x97\ +\xdf\x26\xe0\x36\x4d\x5d\xa1\x9b\x2b\x92\x85\x5e\x4a\x68\x01\xab\ +\xb6\x67\xd1\x18\xfd\x49\x1c\x1c\xf4\x63\xf7\x93\x8b\x38\x7c\x66\ +\x20\xbe\xdc\x59\x3f\xe6\x6f\xce\xe2\xf4\x55\x16\x6d\xeb\xe0\xc7\ +\xe2\xd7\x72\xde\xf4\x41\xad\x6f\x8c\x15\x65\x56\xc8\xa1\x96\x4c\ +\x20\x23\xfb\x72\x62\xc2\x77\x93\x14\x7b\xaa\x1c\xa7\x01\xc5\xb2\ +\x98\x0e\xd4\x33\xe1\xfe\x70\x10\x83\x83\x1d\x99\x96\x1b\x6a\x7c\ +\x46\xcf\x1b\x6a\x56\x5b\x75\x38\x60\xd4\x8d\x90\xcc\xb7\x38\xbc\ +\x9a\x11\xf9\x2a\x5c\x83\x96\x2b\x81\x86\x07\x4a\xfe\xe8\x26\x09\ +\x71\xb8\xa4\xf9\xf3\x6d\x84\xe0\x37\xce\xd6\x0f\x4f\xd5\xfe\x33\ +\x6f\x9a\xb2\x90\x86\x6f\x90\x35\x79\xe3\xa8\x26\x33\xf0\x0b\x44\ +\x5b\xa7\x9c\xcb\x8c\x5f\xf8\xc0\x71\x5a\xa0\xb3\xf9\xe0\x37\xff\ +\xf0\x17\x72\xe5\x11\x75\xde\x0c\xf4\xc6\x06\x7d\x7e\xc5\x6f\xe1\ +\x70\xf3\x87\x4f\xf5\xf4\xfc\x25\xc4\xd1\x50\xfd\x72\xb8\x8a\xfe\ +\x68\x19\xa3\x59\x3f\x66\x47\x03\xa5\x1b\xa7\x8d\x22\xfd\xa6\x10\ +\xa3\x4c\x29\x2b\x96\xf3\x97\x01\x39\x6e\xfe\xb9\xc0\x72\x35\xce\ +\x46\x4b\x39\x7e\xad\x98\x0d\x54\x46\x27\x82\x24\xfe\x13\x21\x94\ +\x21\x49\x48\x8d\xdc\x38\xc0\x67\x6b\x87\x27\x90\x7b\xab\x65\x5c\ +\x9a\x28\xee\xe0\xa1\xd2\xde\x8d\xf8\xad\x57\x22\x7e\xe3\x8b\xf2\ +\xef\xc5\xb2\x77\x37\xfa\x97\x25\xfc\xb4\x6c\xb8\xae\x7a\xe0\xf1\ +\x65\x36\x7b\x4e\x25\xfb\xf5\x07\xb1\xf8\xf5\x57\xe3\xe6\x2f\xdf\ +\x8e\xa3\xdf\xe2\x13\x59\xd2\xba\xe0\x76\x92\x74\x89\x64\x8c\xf0\ +\x98\x8a\xcb\xff\x16\x36\x4d\x7a\x0a\x33\xbd\xb4\xab\x41\x9a\x9f\ +\x55\x43\x15\xe8\x9c\xf1\x67\x1e\xf9\xbd\x34\xbb\x61\x0c\xd9\x4c\ +\xe3\x4d\x59\x36\xd4\x4a\xa7\x76\x29\xe5\x93\xce\x28\x7a\x12\x9d\ +\x80\xe3\x75\xd8\x60\xd5\x40\x49\x5c\x75\x74\x90\x12\x8a\xa8\x22\ +\xe4\xa9\xeb\x07\x6f\xc9\x79\x33\xcd\xe3\x7e\xda\xe1\x9b\xeb\xdc\ +\x88\xa2\xe9\xe5\x67\xb7\x2c\xe5\x54\x54\xcd\xcf\x9b\x6e\xd0\xdc\ +\x20\xc2\xa9\x8f\x55\xc7\x38\x4b\x5f\xab\xa7\x9a\xcb\x07\xa4\x8c\ +\xbe\x45\x1c\xf0\x66\x9a\xe2\x72\x53\x4d\xad\x20\x31\xe2\xf8\x3d\ +\x45\xde\x0a\xb8\xb7\xe8\xc7\xb4\x7f\x18\x1f\xf9\x57\xff\x72\x3c\ +\xff\xd1\x8f\x3b\x32\xbb\x14\xfa\x74\x44\x3e\x55\x35\xa8\x79\x49\ +\xd2\xa1\x4d\x5c\xc4\x7b\x0f\xf1\x76\x59\x57\xf3\xde\xca\xcc\xef\ +\xa3\xf9\xdf\x13\xbc\x93\x26\x39\x1f\x5f\xc3\xef\xb4\x2e\xe8\x28\ +\x64\x24\x8f\xed\xd8\x65\x6f\x11\x2f\x5c\xfa\x68\xfc\x17\xff\xcd\ +\x2f\x6a\x7c\x88\xd8\xbd\xb4\xf4\x03\x23\xf5\x04\x4c\x93\x10\x66\ +\xbb\x81\x3f\xc6\x40\x33\x1d\xf2\xd1\xa2\x66\x14\x5e\xf1\xf9\x27\ +\x28\x5d\xfc\xf1\x72\x2a\x73\x03\x98\x35\x3e\x65\x3b\x45\x87\xd8\ +\x00\x92\xc5\x5e\xdf\x20\x96\x08\x32\xd9\xf9\x33\x0e\xa2\x83\xb4\ +\xa7\x82\x40\x97\xd1\xa1\x6b\x94\x59\x85\xaf\xf3\x8f\x37\x76\xfc\ +\x40\x0b\x37\xa5\xb1\x55\x51\xab\x95\xae\xf5\x1a\x67\x79\x73\xec\ +\xe1\xf1\x2a\xe6\x3a\x1f\x6d\x88\x4e\x6c\x8f\xfb\x94\x11\xcf\x9a\ +\x8a\xae\xb7\x01\xb2\x17\xa1\x17\x8c\x8b\xf3\x78\xfa\x46\x2f\xf6\ +\x77\x78\xf3\x25\x75\x5a\x6b\x29\x3b\x75\x41\xf6\x0c\x57\x8b\xf9\ +\x59\xac\x66\xbd\xd8\x3d\xd8\xd3\x18\x36\xf2\xa6\x47\xbd\xb6\x33\ +\x9e\xcf\x57\xa7\xf1\xca\xcb\x77\xe2\x0b\x5f\x3f\x8a\x07\x67\xdc\ +\x58\xf7\x47\xce\x1c\x6f\x9d\x3a\xe0\xe7\x03\x23\x95\x89\xcf\xc8\ +\x91\x3c\x97\xab\xf2\xcd\x15\x74\x70\x6c\x0d\x34\x5e\x4d\x95\xa0\ +\x7a\xec\xa7\x97\xbe\x75\x13\x48\xd9\xd9\x62\x11\xe3\xf5\x4e\xbc\ +\xf4\xcc\x59\x7c\xe8\xca\x28\x0e\x77\x7a\x71\x32\x9f\xc6\xad\xe3\ +\x49\xbc\x7c\x73\x18\x77\x4e\xc6\xfe\xe9\xd3\xe8\x2f\x9b\x87\x34\ +\x5c\xfd\xf2\x4d\x13\x27\x78\x8c\x16\x87\xb0\xfb\x09\xbe\x1d\x37\ +\xec\x19\x6f\x73\xa3\x29\x37\xd3\x3c\x64\x17\x9f\x9b\xed\xc8\xe9\ +\xaf\xb4\x29\xd7\x2d\x6e\xb6\x8f\xf9\x2c\x31\x37\xdd\xdd\x1f\x52\ +\x67\x2d\x77\x06\x75\x24\x6d\x89\xeb\x42\x6c\x3b\x0b\x9a\xc0\x43\ +\x7f\x06\x8b\xa5\xe5\x1f\xfb\x14\x97\xea\xdc\x86\x84\x53\x3f\xb1\ +\x20\x65\x4f\xa7\xcb\x38\x3b\x9b\xeb\x72\xae\xeb\x12\xd7\x1c\xa2\ +\x9c\x0e\x8d\x0a\x51\x98\x92\xa9\x55\x98\xc2\xd1\x6f\x92\x47\x5d\ +\xc1\xc3\xaf\x34\x7c\xca\xd1\xa4\x29\x7e\x05\x73\xf4\x15\x6d\xb0\ +\x62\xa7\x97\xdf\x16\x9c\xc6\xa5\xb1\xe6\x51\xbb\x6c\x80\x0e\xe3\ +\xda\xfe\x32\x76\xc7\x73\xbf\x31\x78\xe2\x73\x64\x58\x74\x66\x99\ +\xad\x1c\xb3\x0c\xd9\x6a\xa6\xd8\x69\xbc\x5d\x6d\xdf\x34\x84\x76\ +\x4a\x19\xa3\x49\x5b\xd2\x14\xb8\x5d\x8a\x18\x5e\xdb\x57\x4b\x18\ +\xa2\x1e\x14\xc9\x1f\x5f\xd1\x60\xde\xb1\x5a\xcd\xfc\x80\xca\x07\ +\x9e\x7c\x4e\x53\x24\x3e\xe0\xa8\xf5\x88\xea\x69\x19\xc7\x71\xef\ +\xcd\x2f\xc5\x9b\xdf\xfa\x2f\xe3\xe8\xf8\x97\x75\xfe\x2b\xe9\x5a\ +\x71\xd9\xc9\x64\x97\xce\x33\xcd\x21\x67\x73\xde\x08\xdb\xf5\xdc\ +\x91\xb7\xff\xbf\xf0\x25\x9d\x67\xc7\x0b\x3e\xaa\xe2\x2c\x19\x43\ +\x2c\x6f\x1a\x2a\xc3\x19\x48\xeb\x5a\x7b\x21\xdc\xbb\x1a\x9c\xa7\ +\x6b\x15\x32\x2f\x65\x3c\xcd\xcf\xbc\xf7\x74\xce\x8c\xe2\x8a\xe6\ +\x79\x23\x06\x5a\x36\xdc\x79\xbb\x53\xff\xf4\x8f\xb4\xd9\xa9\x20\ +\x8c\xa4\xda\x70\x62\x33\xec\x90\x0e\xad\x45\xf8\xad\x4c\x3e\x74\ +\xc1\xd8\xce\x03\x7c\xcc\x5b\xaa\x64\x47\x46\x8e\x52\x82\xec\xef\ +\x0a\xbb\xcf\x72\xce\x95\xb0\x7c\xdb\xc8\xd8\x4b\x9b\x9b\x0b\xbf\ +\x10\x06\x81\x56\x2f\x41\x47\x4b\xa8\x2b\x66\x9b\x64\x07\x69\xf9\ +\x42\x4a\xf6\x77\xc6\xf4\xb1\xdb\xe7\xe8\xce\x61\xfc\xde\x1f\xfe\ +\xe7\xe3\x43\x2f\x7e\x54\xf9\x23\x4b\xa2\x4c\x6b\x54\x65\x44\x40\ +\x77\xe3\xb6\xd8\xe2\x02\x6c\xbb\xc8\x16\x5b\xbc\x7b\xd8\x6e\xa8\ +\x6d\xb1\xc5\x16\xdf\x1f\x9c\x9f\x10\x7e\x9f\xf0\x6e\x99\xc0\xf4\ +\xb8\x4e\xcb\x5b\xad\x59\xc8\x7e\x6f\x19\x97\x9f\x79\x2e\x5e\xff\ +\xd6\x2b\x71\xff\x1f\xfe\x43\x2d\xe4\x26\x5a\xfe\xf0\x24\x6e\xde\ +\x22\xa8\x13\x70\x7c\x4f\xcb\xf1\x99\x18\x3b\x79\x4e\xb4\x41\xbd\ +\x31\x5d\xe3\x78\x5a\xb1\xca\xb0\x48\xc9\x1b\xab\x24\x4f\x1f\xb1\ +\xfc\x7c\x4e\xda\x56\xf5\x10\xd7\x7a\xf0\x4b\x1a\x39\x2f\x16\xeb\ +\x84\x9d\x38\x1d\x31\xaf\x04\x33\x90\x21\x03\x2a\x43\xe5\xd8\x44\ +\xb5\x32\x0d\x1a\x45\xf8\x10\x25\x8d\x9c\x2d\x14\x51\xed\xe0\xcf\ +\x4b\x0e\x31\xf3\x0f\x21\x71\xbc\xe1\xc0\x82\xdc\x0c\x0e\x19\xc7\ +\x31\x89\xc6\x76\xa3\x78\x89\x56\x26\x91\x01\x2d\xe3\xec\x13\x86\ +\xa2\x5e\xfb\xeb\x51\xf4\x96\x0a\x9f\x69\xe1\x75\x5f\x8b\x9c\xfb\ +\x92\x7a\xa8\x25\xeb\x43\x2d\xb6\x4f\x24\x35\x93\x7d\xbc\xd1\xe1\ +\x45\x56\xde\xcc\x4a\x6b\xc4\x43\xc9\x46\x59\x15\xe8\x84\x2d\x57\ +\x85\x1b\xa1\x82\x1a\xac\xf2\x8d\x30\xb6\xd5\x44\x4d\x62\x51\x49\ +\x23\x5a\x17\xf5\xf5\x46\x03\x20\xdc\xd3\x22\x79\xc8\x9b\x2c\x83\ +\x49\x1c\x3e\xd7\x8b\xdd\x8f\xf7\x63\x7f\x8f\x7d\x0a\x2d\xae\x6f\ +\x46\x4c\xbf\xa5\x65\xf8\x9d\x65\x9c\xf1\x89\xc1\xb9\xca\xce\x8d\ +\x0d\xea\x1a\x05\x55\x11\x7e\xb2\x5b\xd4\x00\x9e\xf3\x46\x00\x86\ +\x6c\x75\xc6\xfa\x2f\x2b\xe9\x6c\xcd\xd2\x8e\x84\x11\x50\xf7\xe5\ +\x13\x7a\x6c\xa8\xf1\x16\x50\xb0\xa1\xc6\x02\x97\x93\x22\x13\xb9\ +\xcf\x9b\x68\x4a\x25\x4d\x22\xcb\x3d\x8d\xc7\xc2\xe9\x70\xca\xa7\ +\x98\x50\xc2\xb2\xc2\x89\xad\xbc\x44\x40\x26\x0f\xb3\xba\xba\x57\ +\xcb\x45\xac\x8f\xa6\xb1\x3c\x3a\xf3\x86\x97\xc5\xaa\x63\x83\x17\ +\x94\xf0\x86\x4d\xa2\x9b\x60\x21\xba\xd1\xb5\x2d\x5d\xcb\x52\x9a\ +\x6f\x13\x29\xc4\xe2\x9c\x7c\xd8\xdc\x10\x2f\x37\xda\x64\x07\xbf\ +\x6d\x81\x7d\xfd\x61\x8c\x87\xab\x18\x5e\x5a\xc7\xee\x6a\x12\xeb\ +\xcb\x3c\x6d\x1c\xb1\xa3\xfe\xba\x3e\x1b\xc6\x62\x3e\x88\x15\xbf\ +\xbb\xc6\xeb\x95\xd2\x5d\x6a\x5c\xb6\x51\x30\xe8\x52\x60\x23\x6f\ +\x6a\xb8\x21\x1a\xeb\xda\x78\x53\x5d\xf1\x8a\x52\x57\x1b\x70\x9b\ +\x75\xf2\xab\x94\x0e\xae\x66\x76\xa9\xd9\xac\x91\xdc\xec\x78\x15\ +\x83\x7b\xc7\x31\xbc\x79\x14\x83\x6f\xbc\x19\xbd\x2f\xbd\x19\x71\ +\xfb\xb6\x66\xa4\x27\xd1\xbf\x2a\x99\xe7\xd4\xc0\x4f\x2b\x2d\x3f\ +\xed\x41\xb3\x9f\x4e\x23\x5e\x3b\x8e\xd5\x97\xee\xc6\x9d\x2f\x1c\ +\xc5\xad\x2f\x9e\xc6\x7d\x36\xb4\xdd\x57\xd5\xaf\x4b\x5e\x3e\xe6\ +\xbf\x5d\x1e\xc8\x1c\x9f\x4e\x83\x9f\x68\x49\xca\x92\xa0\x2d\x7c\ +\xee\xaa\x4e\xf2\xed\xb4\xdc\x44\xeb\xef\xaa\x8f\xf2\x99\x47\x36\ +\xd3\xc6\x83\x18\x7a\x73\x5a\xf1\xe5\x26\x88\xd1\xd1\xdd\x45\xab\ +\x3d\x41\xd5\x3d\x2a\x2a\x8e\xf3\x3d\x2f\x5d\xd2\x2b\x2e\xed\xc2\ +\xe5\xcd\x28\x3e\x7f\xcb\x27\xc6\xb8\x83\x8a\x0d\x98\xe1\x9b\x78\ +\x2a\xa6\xc7\x22\xfa\x11\x69\xa9\x3f\xc5\x55\xd5\x78\xd0\x0e\x36\ +\xfd\x4d\xfe\x82\x7e\x26\x61\xde\x00\x26\x8d\xe0\x76\x23\x4f\xe0\ +\xf1\xad\x55\x02\x9f\x4d\x8c\x5a\x07\xbc\xcd\x03\x9f\x67\xab\xe9\ +\xca\x67\x8b\x41\x7c\xfd\x58\xcd\xf8\xb9\x9f\x8e\xdf\xf3\x17\xff\ +\x05\xc5\x61\x04\xcd\xaf\xba\xb3\x4e\xa5\x6b\x8e\xe9\x57\xaa\xe4\ +\x52\x90\xdc\x16\xe7\xc3\xef\x21\xde\x49\xd6\x5d\x99\x4a\x77\x7d\ +\x0a\xf7\x4e\xf4\xbc\x5b\x78\x2f\xf2\xbb\x48\x7f\xcd\xf7\x9d\xe4\ +\xdd\x95\xbb\x50\x5e\xca\xc4\x6f\x44\xfa\xeb\xb8\xbc\x77\x39\xee\ +\xdc\xba\x1f\xbf\xf6\xf2\x2f\xc5\xe5\xcb\x93\x18\x4e\x74\x6d\xf6\ +\x05\x10\xa9\x94\x54\xaf\xd4\xb1\xf4\x37\xa2\x7c\x28\xfd\xae\x2b\ +\x67\x2f\xe9\x14\x91\x0c\x4c\xf7\xd9\x7c\x63\xaa\xfe\x71\x0e\x64\ +\xda\x4d\x74\x39\xa6\x95\x36\xaf\x33\xcc\x2e\x52\x0f\xe5\xe0\xc6\ +\x2b\xc1\xe6\x5c\xea\xa4\xbc\x40\xed\x26\xce\x0b\x10\x34\x4f\x39\ +\x48\x2f\xbf\x55\xc6\xfc\xcd\x6f\x79\xf3\x27\x7a\xa5\xeb\xc0\xde\ +\xae\xac\xd0\x50\x71\xf4\xa0\xaf\xf3\x53\x32\x9c\xf7\x59\xa5\xa9\ +\x24\xff\x93\x3e\x87\x6a\xe5\x23\xe8\xda\x42\xd9\x34\x16\x0c\x87\ +\xeb\x78\xfa\x0a\x6f\xff\x30\x08\x29\xde\x89\x5b\xbf\xda\xe4\x70\ +\x7f\xa1\xf1\x46\xd7\x54\xd1\xbb\xfb\xbb\x31\xe8\x6b\xbe\x25\x9d\ +\x0c\x23\x83\xde\x22\xee\xdd\x3f\x8a\x2f\x7d\xe9\x76\x7c\xe3\xee\ +\xd4\xbf\x33\x86\xc1\xa4\xb7\xa6\x26\x6b\x11\x85\xde\xa8\x1a\x05\ +\xc8\x02\x56\x93\x9f\x45\x8b\x7c\x11\x6e\x47\x9a\xa2\x3b\xd9\x89\ +\xcc\xd2\x3e\x2a\xb2\x8c\x0a\x32\x67\x52\xc4\xaa\xaf\x6b\xd8\x74\ +\x3f\x3e\xf6\xdc\x20\x3e\x78\xbd\x1f\x7b\x83\xbd\x98\xad\x66\x71\ +\xfb\xc1\x2a\xbe\xf5\x60\x14\x0f\x74\x2d\x3e\x63\x33\x75\xc0\xa3\ +\x05\x80\xc4\xa5\xfc\xce\xaa\xe4\xae\x30\xd9\xfa\x86\x3c\xf1\x0e\ +\x25\x4a\x6f\x13\xdf\x06\xf8\x1f\x8a\xa0\xab\x37\x15\x98\xe9\x54\ +\xd2\xc5\xf8\x3a\xd2\x75\x61\xcc\x35\x4b\xfd\xc0\x9b\xc1\x8a\xad\ +\x7d\xb6\xce\x73\x6a\xf3\x64\x1f\x15\xe0\x8b\xce\x3f\xe2\xaa\x9f\ +\xf9\x3b\x9d\x75\x88\x5f\x32\x6f\xde\xde\x2a\xba\x32\x55\x22\xd3\ +\x96\x7a\x35\xbd\x8a\xe9\xe9\x22\x4e\x67\xcb\xe0\x33\xa5\xed\x6f\ +\xb0\xa5\x8e\xc6\xc1\xab\xce\x3c\x36\x13\x73\x43\x91\x30\x70\x2e\ +\xe2\x11\xe6\x52\x65\x39\x0e\xca\x4a\xcd\xe3\xb2\x35\xc2\x82\xe3\ +\x3d\x36\xb0\xa9\x4c\x59\x34\x5f\x1a\x2d\xe3\xd2\x25\xfa\xac\xdc\ +\x7a\x18\x87\x7b\x83\xd8\xd7\x18\x32\xd5\x7c\xe2\x78\x36\x92\x1e\ +\xcd\xfb\xb0\x0d\x65\xae\x97\x56\x29\x74\xb7\x9d\x80\xf3\x37\x5a\ +\xbe\x59\x0a\x3a\x7f\xff\x11\xcc\xf8\xee\xf1\x11\x34\x69\x8a\x7c\ +\x09\x7b\x5c\x22\x7e\xbd\x8c\xf9\x9c\xdf\xa0\x5d\xc7\x15\xcd\x4b\ +\x2e\x5f\xda\x51\xfd\x4c\xe3\x78\xfa\xcd\xb8\x7d\xeb\x97\xe3\xd5\ +\xaf\xfe\xbd\x18\xf6\xbf\x16\xe3\x31\x09\xd9\x1c\x64\x1c\x50\xfe\ +\x6c\xd0\xa8\x3c\xfc\xde\x2a\x9f\x07\x1d\x6a\x3d\x30\xd9\xeb\xc5\ +\xf1\xf1\x3c\x7e\xe5\x0b\xf3\x38\x39\x39\x8d\x11\xbf\x55\x4d\x3b\ +\x67\xe6\x86\xbd\xd2\x7f\x8c\x42\x27\xbf\x39\x74\xd2\x64\x6d\x55\ +\xb8\xa5\xc4\x60\x5e\xaf\xa1\xd4\xf3\x06\x1e\x48\xda\x19\x8c\xe2\ +\xfa\xb5\x75\x4c\x54\xef\x7e\x60\x8c\x86\x51\x3c\x0f\x82\xd1\x8e\ +\xd9\x90\xe7\x71\x01\xaf\xc3\x32\xa9\xc3\xa3\x52\xc9\xc1\x06\xd5\ +\x80\xcb\xc8\x5a\x83\x01\x87\xd1\xf2\xa2\x14\x00\xdb\x29\x96\xe7\ +\x54\xaa\xbf\x32\xab\x82\xc1\xbf\xc7\x03\x7c\xcc\xcd\x28\x0e\xe8\ +\x92\x5f\x45\xd3\x2b\xc8\x10\xf2\x9c\x53\xb9\x3e\x17\x8d\x61\x06\ +\x67\x8a\xda\xc7\xf9\xad\xd5\x4e\x8b\x98\x3e\x18\xc4\xf3\x57\x7e\ +\x22\xfe\xf0\xef\xfd\xd3\x7e\xf8\x20\xcf\xe9\x2e\x6a\x18\x45\x2d\ +\xb9\xc5\x16\x6f\x85\x6d\x17\xd9\x62\x8b\x77\x0f\xdb\x0d\xb5\x2d\ +\xb6\xd8\xe2\xfd\x8b\xf7\xf0\x8a\xff\x6e\x64\xd5\x5d\x64\xd5\x69\ +\x75\xce\x9f\x79\xc2\x72\x19\xcf\x7d\xe6\x23\xf1\xab\xff\xd7\x5f\ +\x8c\x65\xef\x34\x76\xc4\xe5\xe6\x41\x5d\x24\x79\x8e\x6c\xd9\xa2\ +\xa3\xd2\xc4\x8b\x46\x8a\xf5\x05\x93\x69\x2f\x57\xe4\x43\xf3\xe7\ +\xb7\xd3\x24\x54\x37\xd4\x52\x19\xf2\x8a\x45\xde\xbe\x16\xdb\x25\ +\xdc\x2c\xa2\x11\x33\x32\xbd\x3d\xc5\x3b\x73\x2f\x24\x21\xc9\xa1\ +\x98\x23\x40\xd7\x83\xbd\x06\x19\x72\xf2\x73\x70\xda\xa2\xa7\x49\ +\x54\xfc\xe4\x66\x20\xf3\xce\x90\x29\x95\xc7\x8b\x57\x6c\x61\xd5\ +\x22\xf8\xa6\x51\xf9\x2c\x59\x2e\x62\x33\x4d\xe3\x77\x82\x90\x4d\ +\xfd\x9a\x29\x14\xa2\x86\x89\xcd\x1b\x6f\x3a\x62\xa3\x16\x76\x7e\ +\xaa\x7c\xa9\xc5\xd6\xbc\xef\x37\xd3\xe2\x48\x76\x9c\x28\x8e\xdf\ +\x4a\x3b\x83\xaf\x30\x9b\x29\x5a\xf4\xf8\x77\x57\xa8\x2e\x6b\x68\ +\x7d\x90\x0b\x44\x1b\x99\xbc\x26\xa2\x1c\x28\x6f\xe5\xe1\x57\x7a\ +\x53\x4b\xf1\x15\xae\x64\x07\x4e\x26\x3e\xb5\x93\xa9\xd2\x1e\xd7\ +\x96\x3a\x58\x6f\xa0\x70\x7f\x14\x31\x1a\xc5\xe1\x93\xbd\xd8\xfb\ +\x81\x5e\x1c\x3e\xc5\xef\xd1\xad\x54\x36\x2d\xdc\x5e\x99\xc7\xc3\ +\xd7\x17\x71\x7a\xa4\x30\x1b\x88\x94\xab\xb3\x51\x44\xfd\x53\xf5\ +\xe4\x23\x4d\x2d\xdf\x8b\x41\x93\x06\x45\x71\x13\xb9\xbe\x95\xaa\ +\x69\xcb\x4c\x59\x05\x5d\x1d\x5e\x3b\x2a\x46\xed\x3b\x1c\xcb\x96\ +\x83\xdd\x58\x8f\x86\xfe\x84\xde\x60\x38\xcc\x55\xb7\xe0\x7e\x6e\ +\xa2\x24\xc6\x73\x3f\x82\x50\x9c\xa3\xcd\x2c\xae\xe4\xd5\xd0\x3a\ +\x16\x15\xce\xf7\x3c\x2d\x87\xb6\x5c\xd8\x8a\x49\x58\x7e\x8d\x47\ +\x64\xed\x0d\xb5\xb3\x98\x3f\x3c\x0b\x7e\xd4\xa4\x6e\x9c\x5a\x46\ +\xce\xa6\xe1\x40\x87\xae\x2c\xcb\x35\xa1\x1a\xee\x72\x2a\xc4\x41\ +\xb7\x1c\x4a\xfd\x99\x27\xc2\x6c\xa8\xa9\x62\xeb\xa7\x9e\x78\x23\ +\x6d\xb4\x3f\x8f\xf5\xd5\x65\xec\x4f\x64\xe1\xde\x3c\x46\x63\x35\ +\xef\x84\x0d\x96\x5e\x2c\xe8\x9b\xbc\x75\x38\x53\xbd\xf2\x36\x18\ +\x37\x10\x5c\x3e\xca\x43\x89\x04\x57\x4a\xd2\x59\x3f\x85\x7f\x01\ +\x6a\x7c\x93\xc4\x86\x57\xa2\xa4\x2b\x9e\x09\xd3\xd5\xa7\x1f\x74\ +\xc2\x72\x2e\xcb\xaa\x1f\xa7\x0f\x16\x31\xbb\xfd\x30\x06\x77\xee\ +\xc7\x78\xfd\x20\x7a\x3b\xaa\xdf\x2b\x8b\x88\xe7\xd5\xf9\x9e\x91\ +\xe0\xbe\x3a\x13\x1b\x70\xfc\x10\xcd\xeb\xc7\xb1\x7c\xf9\x4e\xdc\ +\xfb\xe2\x9d\x78\xf3\xd7\xd6\x71\xf7\x4e\x2f\x66\x67\x6c\x78\xab\ +\x8b\xab\xaf\xb8\xaf\x59\x3f\x87\x73\x68\x58\xd4\xab\x3c\x87\xb1\ +\xab\xb4\x63\x06\xf5\x4f\x28\x55\xf8\xed\x61\x36\xcd\x78\x3b\x8d\ +\x1b\x93\xb8\xf1\x28\x86\x93\xf2\x06\xa5\x07\xee\xdc\xc8\x02\xd4\ +\x6d\x83\x54\x63\x74\x48\xc3\x7d\x45\xe8\x8a\x67\x86\x10\xe7\xa5\ +\x37\x39\x16\x51\x59\xfd\x39\x34\x7f\xa6\x28\xed\xf0\xcd\x7e\x22\ +\x39\xf9\x38\xff\xdc\x87\x48\x9b\xbe\xcf\x45\xd2\x0a\x79\x63\xd6\ +\x14\x81\xbc\xc9\xe6\x9b\x57\x92\xe1\xad\x5f\xea\xdb\x77\x24\x95\ +\xae\x88\xb6\x69\x0b\x21\xd0\x9f\x18\x33\x6d\x8b\x04\xb8\x41\xc7\ +\xa6\x26\x79\x92\xff\xd9\xaa\x17\x6f\x2e\xfa\xf1\x60\x3a\x8a\x1f\ +\xfa\x37\xfe\x7a\x3c\xf9\xfc\x0b\x1e\x27\xd1\xe6\x87\x40\xe4\xdb\ +\x64\x53\xa9\x38\x39\x19\xca\x3c\xeb\x31\xfd\x44\x97\x7e\x8f\x50\ +\xb3\x7c\xab\xac\xab\xd1\xb8\xb6\x00\x9b\x69\x6a\x5c\x17\xdd\xf8\ +\xef\x25\xbe\x97\xf9\xbc\x95\xee\x77\x92\x6f\xad\x97\xae\xec\x79\ +\xda\x61\x1d\xaa\x1c\xe3\x60\x6f\x1e\x1f\x7c\xfa\xd3\xf1\x5f\xfe\ +\xfd\xff\xb7\xce\x8b\x93\x38\xb8\x32\x50\x5f\xd6\x39\x69\x99\x1c\ +\x13\xd2\x11\xe4\x7c\xb7\x92\x0c\x17\xa5\x2d\x9d\x11\x85\x2a\xd9\ +\xe8\xd8\x79\xa3\x8a\x31\x21\xe7\x4d\xa4\xab\x92\x84\x9c\xf4\x31\ +\x50\x04\x6f\x5c\x08\xbe\x69\x6b\x39\x9d\x25\xb2\xbf\x4d\xb3\x99\ +\xd8\xfc\x8d\xb8\x4e\xfc\xe3\x32\x72\x16\x8a\x23\xde\x37\x78\xd9\ +\x04\xd4\x19\x49\x18\x9b\x57\xa3\xd8\xdf\x53\x59\x78\x7f\x45\xf3\ +\x19\x4e\xf3\x16\xb2\x45\xe1\xca\xa2\x16\x36\xa2\xc1\x85\xd9\xc2\ +\x2c\x11\xd4\xaf\x3c\x36\xed\xae\xed\xf5\xe2\xf2\xa5\x39\x4c\x29\ +\x2d\x9a\x3c\x5e\xe0\xa7\x7c\xad\xc7\x3e\x9b\x6a\x0b\x3e\x47\x37\ +\x88\xb1\x2e\x62\x43\xc6\xb5\xde\x2a\x16\xcb\xe3\x78\xfd\xf5\x87\ +\xf1\xeb\xbf\x75\x2f\x6e\x1d\x2f\x7d\xf3\x1f\x79\xfe\x32\xbd\x8f\ +\xfe\xaf\xa8\x55\xe3\x1c\x4b\x80\x63\x23\x52\xea\x22\x75\x30\x50\ +\x4a\x52\xbc\x94\x29\x52\x78\xc5\xe4\xf3\xc8\x14\x2b\x6f\x06\x2c\ +\x7a\xb3\xe8\xcd\x27\xf1\xd1\x1b\xc3\xf8\xb1\x8f\xed\xc4\x73\x4f\ +\xeb\x02\xac\x3a\xff\xc2\xcb\x6b\xdb\x3b\xe5\x13\x6d\xb3\x89\x2a\ +\x64\xa6\x34\x69\x37\x73\x58\x9b\x25\x47\x98\xaa\x21\xec\x92\xf9\ +\x20\x97\x91\x09\x7c\xd7\x1f\x44\x65\x22\x4f\xff\x81\x90\x8e\x52\ +\xce\x94\x4d\x9f\xcf\xe6\x0d\x35\x97\x9a\xec\xe4\xc3\x49\xb9\x36\ +\xb0\x94\xbc\x14\xa2\x19\x72\x83\xac\x84\xfd\x57\x62\x39\x14\xb9\ +\x14\x24\x9c\x1e\x52\x49\x25\x33\x9b\x53\x29\x95\x28\x35\x28\x44\ +\x5b\xa3\x44\x7e\x72\x12\x84\xce\x4e\x17\xf1\xf0\x6c\x19\x33\x1e\ +\x8a\x53\x85\xb2\x71\x90\xf3\x29\xf9\x4e\x82\x5f\x68\x25\xa5\xce\ +\x71\x7e\x52\x4c\x40\x92\xa3\x92\x58\xae\x04\xd3\xd4\x14\xd8\x40\ +\xea\x2c\x01\x61\xad\x09\x03\xed\xb0\x5e\x2d\x63\x77\x77\x10\x87\ +\x9a\x3b\xed\xef\x4a\x7d\x7f\x22\x15\xe3\xb8\xba\xdf\x8f\x4b\x7b\ +\x6a\x3b\xcd\x83\x1f\xce\x34\xf7\xd7\xfc\xdf\x65\x23\x2f\x94\xfb\ +\x9f\xcc\x70\x69\x8d\x33\xf7\x7f\xfa\x60\xb3\xdc\xb0\x8b\x11\xee\ +\x6f\xc9\x31\x17\x7d\xe2\x21\xdf\xa6\x28\x68\x18\x29\xeb\x7f\xf3\ +\xd8\x5c\x54\x0a\xcd\xed\x16\x2b\xf5\xc3\xc5\x59\x5c\xbe\xbc\x8e\ +\xf9\xc9\x6b\x71\xef\xe6\x3f\x8c\x07\xb7\x7f\x3d\x26\xc3\x3b\x72\ +\xa3\x98\x2f\x27\xca\x83\x4d\x74\xa7\x72\x7e\xea\x1e\xca\x6f\x1d\ +\xe3\xc9\x3a\xa6\x27\xcb\x38\x9b\xcf\xe3\xe5\x9b\xf3\xf8\xc6\xcb\ +\x4b\xc9\x9f\xe5\x1b\xef\x25\xef\x92\x9d\x0f\x95\x67\x74\xe8\x2a\ +\xe3\x31\x8d\xb2\x75\xe5\x84\xd2\xc5\x9c\xde\x5d\x51\x04\x6f\x86\ +\xed\x68\xae\x7a\xed\x72\x2f\x76\x35\xcf\xeb\xf1\xe6\xa0\x04\x49\ +\xea\xb7\x2e\xe9\x13\xae\xf3\xac\x3f\x03\x05\x1b\x86\x75\x50\xc3\ +\x1d\x91\xc4\x39\x41\x05\x99\x7f\xd0\x07\xbc\xd9\xdc\xd9\x70\x3e\ +\x8f\xcc\x97\x33\x9e\xb2\x29\x24\x9b\x54\x83\x25\x02\xfb\xc4\x82\ +\x97\x51\xef\x0c\x25\xb9\xdf\x70\xab\x69\x94\x7f\x5d\x97\xbb\x47\ +\xc9\x14\x7f\xed\x44\x19\xaf\x17\xe3\x98\x9e\x9d\xc4\xf2\xe1\xe5\ +\xf8\xc7\x7e\xdf\xbf\x14\x4f\xdf\xf8\x80\x24\x52\x6e\xd3\x62\x85\ +\x5c\x8c\xc2\xdd\x8c\xdc\x62\x8b\x0b\xb1\xed\x26\x5b\x6c\xf1\xee\ +\x61\xbb\xa1\xb6\xc5\x16\x5b\x6c\x51\xf0\xdd\x4c\x30\x36\x97\x44\ +\x39\x5b\x6e\x39\x8a\x5d\x2f\x62\x72\xe9\x5a\x9c\x2e\x1e\xc6\x9b\ +\x7f\xf7\x97\x62\xb8\x37\xf0\xef\x2d\xf8\x73\x59\x88\xcb\xf7\x3c\ +\x9b\x39\x75\x49\x88\x9f\x9b\x66\x04\x0a\x03\x82\xc5\x07\x0b\x03\ +\x4f\xc0\x73\x32\x9e\x4e\x41\x56\x4c\x55\x16\xdf\xa4\x24\xe5\xbc\ +\x78\xf0\x7f\x1b\x07\x3c\x91\x17\x72\x21\x9c\xf9\x79\xd2\xce\xa2\ +\xc6\x01\x6e\x82\xc2\x41\x4e\x7a\xf0\x3b\xfa\x73\x7a\x0f\xaf\x61\ +\x15\x74\x43\x69\x5f\x21\x1b\xbf\x91\x28\x44\xe6\x5e\xd0\x8d\x2f\ +\xb9\xb3\xb8\x59\x95\xb7\x29\xea\xf7\xf5\xbd\xe0\xf1\xca\x0d\x94\ +\x44\xf6\x0a\x6d\xa4\x66\xd7\x93\xc3\xbe\xc5\x25\x97\xf5\xc5\x27\ +\x0e\x33\x46\xe1\xa5\x16\x3d\x73\xe5\x37\x93\xce\x53\xd1\x33\xc5\ +\xcc\x25\xe9\x4f\x21\x0e\xb2\xa8\x72\x2e\x37\x49\x44\xf3\xec\x62\ +\x13\x00\x8d\x3d\x02\x6c\x1c\x20\x6d\xa6\x6c\x6c\xa9\x55\x59\x45\ +\x4c\xb5\x81\x84\xda\xa2\xd5\x58\x23\xc5\xc9\x7f\x65\x47\x7b\xb1\ +\x18\x53\xbd\x14\x65\x3d\x2d\x5a\x83\xdf\x7f\x1a\xec\xc6\xe4\xca\ +\x30\xae\x7e\xaa\x17\xfb\x1f\xef\xc7\xe5\xf1\x2a\x4e\x86\xcb\x98\ +\xdd\x5a\xc5\xe2\xab\xbd\x38\xbe\x3f\xd7\xc2\xad\x94\x11\xb5\xe5\ +\x06\x86\x15\x53\xb7\x2c\xee\x58\xe1\x49\x29\x56\xc0\x36\x4a\x3c\ +\xe5\xc8\x40\xc6\xd7\x76\x4e\x3e\x84\xff\x2d\xd2\xb2\x44\xa8\xcf\ +\x0f\x77\xc7\xd1\x3b\x98\xf8\x6d\x20\xad\x72\xa3\x3f\x94\xbd\x12\ +\x72\x1e\x14\xc8\x4f\x16\x3b\x49\x41\xe6\x53\xeb\x17\x6b\x4c\x3a\ +\xa8\x83\x65\x39\x64\xa2\x4a\x39\x95\x08\xd7\x0d\xb4\xfb\x8c\xac\ +\x80\x97\x8c\x92\x94\xa3\xf8\x8a\xa7\x2e\x56\x8b\x65\xac\x1e\x96\ +\x0d\x35\xfa\x9c\x57\xcf\x99\xe7\xc6\x4d\x1d\xea\x48\x1e\xa8\xbe\ +\x65\x4a\xa8\x98\xfb\x28\x3a\x89\x92\x54\x8a\xc2\x73\x95\xc3\x75\ +\xfd\x43\xa9\xcf\x0e\xe6\xd1\xdf\x5f\xc6\xce\xb5\x65\x8c\x76\xb9\ +\x69\xd6\x8f\x9d\x3d\xe9\x3f\x5c\xc6\xe0\x40\x12\x13\xde\x54\xdb\ +\x8d\xf9\x6c\xa9\xf6\x54\x09\x78\xb3\xad\xb7\xb4\xee\x2c\x72\xad\ +\x00\x5a\x40\xb4\xc3\xc4\xaa\xce\xf1\x00\x6c\xc2\x90\xa6\x93\x67\ +\x46\x03\x73\xed\x15\xaa\x45\x87\x57\xaa\x53\xba\x55\x2e\xf9\x7c\ +\x96\x08\x7b\x96\x6a\xeb\xa9\x6c\xe4\x26\xc5\x68\xbc\x88\x9d\x27\ +\xe6\x11\xd7\x94\xc1\xd3\xf2\x47\xc3\xcc\xeb\xce\x3c\x56\x5f\x7c\ +\x18\xc7\x5f\x79\x18\x77\xbe\x7c\x1c\x37\x7f\x73\x19\x77\x5e\x1b\ +\xc4\xec\x88\xcd\x42\xe9\xe9\xf3\x19\x30\xda\x90\x0c\xe4\xc8\xab\ +\x36\xb0\x81\x12\x39\xfd\x9b\x6b\x91\xd2\xce\x06\xf1\x1d\x9f\x78\ +\xf5\xc9\xde\x50\xe7\x41\xf9\xd4\xe3\x60\x77\x94\x6f\xa7\xb1\xf1\ +\xeb\x4f\xf5\x2a\x5e\xb6\xbb\x5c\x05\x1d\xf2\x51\x38\x52\x87\x36\ +\x8b\x4d\x74\x19\xc8\x74\xe5\x4b\x9c\x49\xd1\xfe\xcc\x23\x8e\x37\ +\x39\xb9\xf1\xe5\xb7\xd3\x52\xc0\xf5\xab\xbe\x99\x1b\xb0\x99\x99\ +\xfb\x78\x41\xdb\x0f\xe5\x23\x87\x2f\xc7\x1b\x90\xfe\xa4\xa6\xdf\ +\x4c\x43\x47\x93\xad\x61\xba\xa8\xb1\x3a\x1d\xf0\xa8\x77\xff\x66\ +\x93\xfe\xed\xab\x39\xf8\x24\x2a\x06\x3d\x98\xad\xfc\xdb\x69\x1f\ +\xfc\xfd\x7f\x30\x7e\xcf\x9f\xfb\x73\x4e\x8b\xa0\x7a\xa2\xe5\xdd\ +\xef\xaa\x52\x87\x08\x77\x39\x38\x42\x19\x93\xb1\x15\xc9\x7f\xcf\ +\xf0\xa8\x01\xef\x0c\xa4\xe9\x9a\xda\x2d\x5c\xc5\x77\xa2\xf7\xdb\ +\xc5\x7b\x91\xc7\x45\x4d\x42\xf8\xa2\x32\x57\xc0\x7b\x9c\x6d\x95\ +\xdf\xe8\x10\xd1\x91\x75\x76\xfd\x55\xec\xed\xee\xc5\x70\x79\x18\ +\xbf\xfc\x85\xbf\x17\x97\x2e\xef\x47\x6f\xb2\x88\x3e\xd7\x67\xc9\ +\xd2\x25\x3d\x14\x78\x5c\xcf\xc4\x8c\x13\xa6\xed\x23\xa6\x5e\xe6\ +\x28\x51\xb0\xcd\x75\xd0\xe1\x34\x3f\x8f\x03\xd2\x48\x69\xde\x80\ +\x15\x8a\x8e\x34\xa6\x4a\xb5\xe8\x88\x59\xce\x56\xd4\x80\x42\xbe\ +\x01\x5d\xe8\x84\x03\x86\x29\x0e\xd5\x71\xa8\x0a\x2f\x42\x23\x8b\ +\x4d\x8c\xe3\x3a\xaf\x15\x64\xa3\xbb\xfe\xe6\x52\xaf\x37\x88\x83\ +\xc3\x7c\xd9\xf7\xec\x94\x31\xd8\x17\x97\x92\x3d\xfa\x53\xc5\x26\ +\x3a\x9c\xf3\x91\x2e\x77\x61\xca\x23\xc8\x98\x70\xa0\xeb\xcf\xd5\ +\x2b\x27\x99\x2f\xc3\x41\x49\x98\x37\xdc\x09\x3b\xa1\x1d\x73\x58\ +\xbe\xde\xc0\x27\x8e\x79\xeb\x10\x4b\x7b\x83\x69\x3c\xb8\x7f\x2f\ +\x7e\xfd\x4b\x77\xe2\xeb\xaf\x9e\xc5\x91\xe2\x78\xbb\x48\x16\x3b\ +\x99\xb5\xb9\x9c\x05\xf0\xe4\xb2\x34\xd2\x4d\x44\xb9\x06\x30\x9f\ +\xb5\x64\x63\x27\x3e\xdb\x38\x1d\x38\xc0\x61\x83\xdb\x80\xba\x73\ +\x15\xe1\x8b\x58\x68\x1e\xcf\x48\xf6\xc2\xe1\x95\xf8\xfc\xa7\x96\ +\xf1\xe2\x33\xa3\x18\xf6\x35\xbf\xda\x59\xc4\x3c\x86\xf1\xca\xc3\ +\x55\x9c\x9d\x2d\x35\x9c\xf2\x19\x3e\x25\x70\x3b\xa7\xee\xbc\x4e\ +\xa1\x4a\x7e\x21\x39\x38\xba\x86\xa1\x0d\x42\x0a\x50\x30\x0f\xbc\ +\x05\x4d\x7c\xa2\x24\xd5\xa1\xd4\xaf\xfa\xe8\x58\xd7\xaa\x09\x9f\ +\x7c\xe4\xfa\xe0\xd3\x81\xbf\xa2\xcf\x2e\x69\x53\xc5\xb6\xe4\x17\ +\x64\x44\x92\x35\x99\x51\xed\x90\x6f\x1e\xe1\xca\x6b\x73\xa8\xdc\ +\xcc\x17\x5a\x35\x21\xc6\xe9\xd9\x3c\x4e\x4e\x55\x4f\xde\x50\xcb\ +\xfa\xa4\x78\xde\xe4\x12\x6d\xa7\x04\xa4\xad\xc5\x46\x2b\x61\xbb\ +\x12\xdf\x22\x03\xf0\x0b\xd9\x02\x5e\x85\x69\xf4\xd0\x8f\xd4\xcf\ +\xe8\x17\x83\xa5\xa6\xc6\xcb\xd8\xd7\x5c\x63\x3c\x19\xf2\x22\x97\ +\xf8\x7c\xb6\x73\x10\x97\xf6\x67\x6a\xe7\x81\xec\x1d\xc4\x9c\x07\ +\xaa\x6c\x1f\x2e\x33\x6a\xb3\xaa\xd6\x41\x66\x9c\x45\x84\xd6\xce\ +\xd2\x07\xed\xaa\x6c\xea\xcb\xeb\xb3\xf8\xf9\x6f\x14\x09\xab\x33\ +\xdd\xc4\x91\x97\x78\x85\xa9\x95\xa3\xea\x51\xb6\xf5\x17\xb1\x37\ +\x5a\xc4\x68\x75\x33\x16\xd3\xbb\x3e\x9f\xb4\xd2\x54\x9c\xca\xb4\ +\x62\x33\x8d\x7a\x96\x0d\xe4\xa9\x94\x7e\x00\xa7\xcc\x1b\x18\x43\ +\x5f\xbb\x75\x1c\xbf\xf5\xcd\x59\xdc\x39\x9d\x49\x4e\x73\x8b\x72\ +\xa2\x39\xcf\x6a\x14\x44\x43\x8b\xec\xd0\x5d\xc0\x26\x0f\x47\x93\ +\xc4\xb6\x2a\x7f\xe8\xd2\x0f\xd9\xc4\x9a\xc8\x5d\x3d\x18\xc6\xe1\ +\x65\x36\xd3\x18\x8b\x52\xa1\xdf\x00\xd3\x98\xe1\xc4\x84\x7d\x14\ +\x6a\x86\x8d\xf2\x4d\x9f\x7c\x6c\xb1\xe4\xd2\xf2\xea\x36\xe1\xb9\ +\x9d\xda\xd5\xe3\xa2\xd7\x19\x25\xdd\x39\xd9\xcc\xb7\xb4\x6c\x99\ +\xef\xd7\x31\x15\xd0\x06\x7e\xee\x48\xae\x3c\x7f\x54\x0e\x9b\x3e\ +\xe4\x23\x9a\x0b\xdf\x47\xdb\x9b\x76\x39\x28\x9a\x69\x18\x01\xff\ +\x94\x80\xc6\x9a\x93\x7b\x83\xf8\xc1\x17\xfe\x64\xfc\xf4\x8f\xfc\ +\x51\x2d\x4b\x19\xcf\x33\xcd\x26\xac\x25\x15\x3f\x1a\xb9\xc5\x16\ +\x17\x62\xdb\x55\xb6\xd8\xe2\xdd\x83\x2f\x9d\x5b\x6c\xb1\xc5\x16\ +\x5b\xe4\x7c\xf4\xdd\x01\x93\xde\x32\x5d\xf1\x5c\x97\xd9\xf2\x44\ +\x0b\x8b\x55\xfc\xf4\x5f\xfe\x0b\x31\x78\xe9\xd3\x71\x9f\x37\x2f\ +\xca\xa6\x18\x4b\x2e\x67\xae\x11\x99\xb9\xb5\x37\xb2\x72\xe5\xd4\ +\xf8\x3e\x7a\x26\x5f\x02\x3c\x89\xcc\xc6\xcf\x92\xc9\x37\x0b\x91\ +\x72\x73\x54\x8b\x55\xcb\xf8\x11\x50\xe4\x15\x6f\x1f\x16\x34\xc9\ +\x51\xd0\xc2\x26\x56\x8a\xab\x02\x4f\x37\xdb\x10\xfd\xb3\xea\x80\ +\x67\x01\x26\xf4\x4a\x2b\x1a\x1d\x8d\x16\xf3\x2c\x60\x5e\x52\x15\ +\x84\x54\x1b\x92\x21\xae\x5d\x68\x66\xb2\xc4\x66\x0a\x87\x1b\x96\ +\x08\xe5\xef\x9b\x59\x2c\x84\x78\x4b\x64\x9f\x9b\xdd\xd2\xc9\x83\ +\x8d\x5e\x1c\x96\xda\xee\xaa\x91\x6e\xab\xf7\xa1\x46\x9c\xf7\x13\ +\x59\xc5\xc9\xa3\x2e\x97\x6c\xa6\x4d\xe5\x78\x3b\xed\xac\x1f\xfd\ +\x99\xf2\x60\x73\x62\xa9\xd6\xa2\x6e\x25\x5f\x6f\xcb\x64\x5a\x1f\ +\x84\xc2\xad\x37\xab\x1a\xbe\xa8\x92\xae\xe5\x49\xb2\x8d\x7e\x6b\ +\x28\x93\x66\x39\xe7\x0c\x4b\x5d\x16\xae\x69\xf1\x1b\x9a\xfa\x1a\ +\xb1\x94\xe6\xc3\xa2\xa3\x18\xdd\x58\xc7\xd5\x0f\xad\xe2\xf0\x23\ +\xa3\xb8\xbc\x3f\x8f\x99\x16\xe0\xeb\x53\xc9\xbf\x39\x8b\xe9\xbd\ +\x79\xcc\x45\xb3\x92\x63\x71\xcb\x26\x25\x59\x78\xb1\x48\xbe\xf4\ +\x1d\xe7\x99\xca\x09\x26\x20\x6a\x40\x79\xd9\xbc\xb4\xb1\x11\xaf\ +\x22\xb8\x92\xb0\x44\x15\xa8\x0e\xd4\xa6\x6e\x5f\x87\x2d\x58\x7c\ +\x39\x0b\xa7\x9f\x4f\x32\x9b\x91\x80\xb4\x91\x19\x04\x66\xa9\x83\ +\x65\xbe\x8a\x90\x73\x3a\xe7\x5d\xd2\x73\x5e\x58\x52\x20\xae\x18\ +\x89\xd7\xa6\x43\xae\x38\x68\x8c\x83\x74\x3a\x9d\xad\x85\x4d\x5a\ +\x38\x79\xa8\x65\x00\xc8\xa4\x6c\x45\x4b\x75\x60\x99\x2e\x14\x2e\ +\x2c\xd7\xa7\x14\x72\x4a\x43\xfb\x76\xc8\x6a\xe1\x4d\xcf\x38\x13\ +\xad\x73\x9f\xf3\x61\x3c\x1e\x45\x6f\x6f\x14\xe3\xc3\x61\xec\x3e\ +\x33\x88\x4b\x9f\x5c\xc6\xb5\x1f\x59\xc6\xa5\x17\x47\x3a\x4f\x74\ +\x5e\xf4\x75\x92\xc4\x58\xe9\x39\x4f\x54\x1f\x4d\x9e\xa5\x1e\xf0\ +\x00\x6c\x9f\x9c\x72\xb5\x0e\x61\x35\x3e\xfc\xa4\x0d\x8b\xb6\x0c\ +\x07\x75\xb0\x6f\x0e\xe1\x0c\x59\xb5\xce\x5f\x6f\x51\x8a\xb7\x10\ +\x63\x36\x9d\xfa\xf3\x4f\xb7\xef\x2d\xe2\xd6\xfd\x71\x1c\xdd\x1f\ +\xf8\x77\xb7\xd6\x27\x93\x88\x37\x4f\x63\xf1\xea\x51\x4c\x7f\xed\ +\x24\x1e\xfe\xfa\xbd\x78\xe3\xd7\xee\xc7\xeb\xbf\x7a\x16\xf7\xbf\ +\x3e\x8c\xb3\x63\xa9\x58\x8c\x54\x78\x46\x4d\xc6\x4f\xe9\x24\x03\ +\xb2\xda\xa8\x4f\x8f\xaa\xe7\x50\x5b\x30\x8f\x36\x5f\xce\xa9\xaa\ +\xe1\xaa\x53\xde\x94\xec\x4f\x70\x1a\x67\xc6\xf2\xf9\xad\xb2\x91\ +\x72\xe2\x61\x05\xc6\xc5\x77\x00\xeb\xac\x28\x81\x0b\x53\x56\xc1\ +\x4e\x02\xc8\xae\x73\x42\xc6\x3f\xe5\xcf\x9b\x69\xf9\x7b\x88\x2e\ +\xb9\x05\x5c\x1e\xfa\x32\xd7\x01\xa7\xe0\x46\x95\x53\x3a\x94\xe5\ +\x05\x19\xe7\x7e\x8b\x3c\x32\xbe\x66\x90\x56\x7e\xe9\x12\xf8\xb5\ +\x3a\xf2\x74\x50\x3c\x75\xcb\xbf\x1c\xa3\x6d\x56\x83\x5a\xb4\xd4\ +\x07\xbf\xfd\x47\x52\x6e\xf2\xdd\x9d\xad\x63\x7f\xef\x7a\x7c\xfa\ +\x2f\xfc\x79\xc7\x91\xd6\x0f\x8d\x94\xfe\x60\x9e\x8f\x49\x9f\x47\ +\xc6\x11\x0b\x55\xad\x4f\xfa\x3d\xc5\xc5\xe6\xbd\x33\x54\x53\xbb\ +\x26\xa3\x8f\x70\x5b\x0d\xbf\xfd\xf1\xdd\x36\xc9\xf9\xfa\x01\x8f\ +\xe8\x2c\x0c\xf7\x1f\x3c\xf5\xc0\xf5\x38\x96\xfd\x45\xfc\xe1\x9f\ +\xfe\xf9\xf8\xd0\x93\x9f\x8f\x6f\x7c\x8b\x8b\x35\xe7\xae\xfa\x7e\ +\x9d\x64\x90\x4c\xae\x3b\xc4\x35\x4c\x1f\xd3\xaf\x68\xc2\xf2\xf2\ +\xf4\xc9\x13\x62\xa9\x6b\x23\x9b\x00\x7c\x86\x2b\x7b\xb9\xd9\x76\ +\xc5\xbb\x10\x36\xb7\xd8\x02\xed\x39\x0c\x9b\x48\xcc\x59\x7c\xf2\ +\x76\xe6\x2e\xe7\xb4\x94\x12\x24\x36\x02\x6f\x0d\xbf\xf1\x22\xc7\ +\xe6\xf6\x6c\xba\x8c\xc5\x82\xdf\x5c\x42\xc1\x2a\x46\xbd\x71\x7c\ +\xe0\xd9\x41\x1c\x1e\xf4\x34\xcc\x31\x37\xe0\x33\x6b\xc4\x50\x10\ +\x95\xed\xad\x0a\x53\xe3\x52\xb4\x09\x36\x60\x30\xd5\xfc\xe1\x78\ +\xda\x8b\xe9\x0c\xdd\x99\xa7\xe5\x5c\x07\x59\x88\x9a\x86\xf9\x20\ +\x9f\xfd\x63\xd8\x89\xde\x59\x9c\x1d\x3d\x88\x07\xb7\x6e\xc5\xcd\ +\x37\x6e\xc5\x57\xbe\x71\x27\xbe\xfc\xf5\xa3\x78\xa8\xeb\x43\x26\ +\xa8\xa9\xc0\xa6\x1e\xe0\xf6\xed\x32\x36\xa0\x08\x0c\x2e\x64\xca\ +\xe5\xc8\x92\x40\x5f\x0d\x89\x2f\x5b\xd9\xc0\xa3\x2e\xaa\x73\x7a\ +\xea\x74\xad\x72\xc9\x3d\xbb\x73\x29\x7e\xea\x33\xbd\x78\xe9\xf9\ +\x3d\x8d\xc5\x3b\x1a\x6b\x47\xba\x46\xec\xc6\x47\x3e\x3c\x8a\x1b\ +\x07\x23\xbf\xe9\xbf\x5c\xf1\xe9\x5b\x1a\x59\xfa\x6b\x07\xb4\x32\ +\x50\xfc\xc2\x27\x94\x6f\xad\xe0\x60\xa4\x8f\x87\x08\xb3\x4a\xf7\ +\xc4\x0d\x9e\x45\xd2\x29\x60\x5b\x0b\x93\xf6\xa6\xfe\x3d\x23\x44\ +\x40\x07\xcb\xe9\xe0\xb1\x3c\xc5\xac\x23\x99\xc5\xcf\xc2\x96\x3c\ +\xb2\xaf\xfb\x4f\x19\xe4\xe7\xee\xe0\x77\xff\xb2\xcf\x54\x7e\xa6\ +\xea\x80\x34\x76\x19\xcf\x73\x1b\xce\xdd\x42\x99\x0f\x87\xaa\x87\ +\x60\x97\x06\x75\xc3\xc2\x3c\xb7\x4b\xdf\x2e\x65\x5b\x97\x36\x97\ +\x74\x0a\xe0\x5b\x7f\x01\xad\x4c\x6b\xf0\xa6\xf4\x52\xfd\xfe\xc1\ +\x99\xae\x53\x0f\x46\x71\x36\xd7\x5a\x67\x98\x0f\x87\xf0\x51\x8a\ +\x85\xc6\x95\x27\x0f\x76\xe3\x73\x2f\xae\xe2\x93\x2f\xce\xbd\xc1\ +\xe6\x73\x95\xfe\x4a\x53\xba\x2e\xaa\x8d\x99\x01\xf9\x88\x9d\xbe\ +\xff\x10\xa4\x2f\x39\xda\xe8\x90\x25\xa0\x83\xcf\x4b\x02\x59\x6f\ +\xd8\x5f\xd1\xc8\x8b\x48\xbd\xd0\xc8\x67\x78\xa1\xbf\x99\x12\xdc\ +\x39\x5d\xc4\xb7\xee\xdd\x8f\xd9\xf0\x2c\x56\xfc\x16\xe1\x5a\xeb\ +\xcc\xd5\x50\xa2\xaa\x23\xd9\xec\x7e\x40\x9d\xb1\xb9\x86\x12\xf8\ +\xf2\x56\x2a\x37\x9f\xde\x7c\xf0\x70\x1e\xb7\x1e\x0c\x63\xb6\x1c\ +\x7b\xdd\xd0\xad\xfb\x0d\x34\x4c\xe9\x34\xbd\x29\x95\x25\x49\xfb\ +\x8c\x12\xed\xfd\x32\x39\x57\xa1\x8e\x23\xd5\xf3\xe1\x7e\x3f\x0e\ +\xd8\x4c\x33\x17\x27\x71\xc9\xd3\x3f\x4c\x17\x67\xb8\x8e\x52\x7f\ +\x47\xbb\x41\x14\xc3\x0e\xa0\x6a\xce\xc7\xa7\x96\x1c\x5f\xeb\x5c\ +\x94\x29\x9c\x3f\xf5\xd8\xc4\x80\x8d\x1c\x5b\xb8\xa0\x6a\x1b\x55\ +\x0a\xbd\x14\x19\x9f\x3f\x0a\xf3\x59\xca\x5c\x57\x98\xdd\xf8\x26\ +\x4b\x3b\x81\x0c\xe3\xd0\x01\xd9\x74\x94\x8c\x2b\xa2\xd0\xec\x25\ +\x36\x7d\x4b\x95\xb6\x3a\x5e\xc5\xa4\xff\x44\xfc\xc4\xe7\xfe\xb8\ +\x5a\x9b\xb9\x2e\xe7\xb4\x53\x6d\xb1\xc5\x16\x5b\x6c\xf1\x3e\xc2\ +\xf6\x0d\xb5\x2d\xb6\xd8\xe2\xfd\x8d\x9c\x07\x7f\xcf\x51\xb3\xf8\ +\xce\xb3\x62\xa2\xfb\x68\x6a\x73\xcb\x6c\xbf\xc7\xaa\x6b\xb0\x1f\ +\x83\x27\x26\xf1\x95\xff\xe0\x3f\x8d\xe1\xb8\x17\x23\x4d\xa0\xb9\ +\x41\xca\x74\x19\x69\x4f\x97\x3d\x21\x2f\xcb\x93\x66\xa5\xe0\x43\ +\x2e\x22\x38\x98\xaf\x29\xb6\xbd\x92\x77\xb2\x32\xde\x0b\x2a\xb3\ +\xf2\x50\x09\xfe\x49\x47\xb0\x02\xf9\x82\x14\xd3\xb1\xd8\xc0\xbf\ +\xa7\xf1\x96\xa9\x53\xfa\x94\x4f\xd9\xf4\xab\x03\xd5\xaf\xd8\x08\ +\x2b\xd0\x9a\xeb\x43\x06\x08\x99\x2e\xb0\x8d\x6d\x7c\x7d\x7b\xce\ +\x42\xfa\xf7\x02\x76\xa1\x45\x99\x9f\x68\x44\x61\xf1\x8b\x9d\x86\ +\x45\x53\xbe\xe1\x55\x1f\x8f\x15\x64\x13\x27\xa7\xb4\xb9\xdc\x54\ +\x2a\xe5\x95\x0e\xb9\x92\xa6\x2c\x6a\xaa\x9d\x36\x07\x3f\x83\x05\ +\xd8\xd0\xe1\x41\x7b\xe1\x85\xb0\x7c\x93\xa4\x2a\x20\x9e\x24\x66\ +\x15\xb9\x06\x84\x3b\x70\xf2\x1a\xcf\xd2\x0c\x6b\xd4\x1e\xf0\xd1\ +\x43\x94\x1c\x3f\x3a\xee\x37\xbe\xfa\xc3\xd8\xd9\x5f\xc7\x95\x0f\ +\xf7\xe3\xda\x67\x07\x71\xf5\x86\xca\x37\x9c\xc7\x62\xa1\xa8\x97\ +\x17\x31\xff\x52\x3f\x1e\xde\xd7\xc2\x7c\xaa\xc5\xe1\x7c\xe8\xd5\ +\x2f\xb6\xa2\x86\xfa\xad\xb0\x15\xe8\x37\x95\x79\x16\x52\x48\x79\ +\xb8\x20\xcb\xd1\xd2\xd9\xf7\xad\xa1\x29\xb6\xfb\x1f\x81\x41\x2f\ +\x06\x07\x93\x18\xec\xf1\x86\x9a\x57\xba\xc1\xe7\x60\xfc\x7b\x02\ +\x45\x36\x91\xe9\x2b\x88\x6a\x39\x0a\xb9\x02\x0b\x0d\x4a\x64\xcd\ +\x0f\xc2\xb7\xa4\x4a\x45\xd7\xf3\x11\x41\x6f\x7c\x11\x2c\x3c\x92\ +\xe6\x12\x1f\x1b\x15\x9a\xab\x6e\x4e\xce\x62\xf6\x60\xaa\x15\xef\ +\x52\x0b\x69\xf1\xf8\xaf\xf5\xe3\xca\xc7\x4f\xaf\x43\x24\xba\x74\ +\x17\xa4\xb3\xcf\x7f\x97\x96\x2b\x0b\x75\x1f\x75\xa0\x57\x72\x33\ +\x76\x35\x58\xc7\x80\xcd\x9d\xbd\x55\x8c\x6f\xac\x63\xff\xea\x3a\ +\xc6\x57\xd5\xd6\x07\xfd\x18\x4d\xc6\xaa\x43\xde\xa6\x52\xdc\xe1\ +\x2a\x46\xfd\x49\x2c\x67\x63\x99\xbc\x94\xcf\x0d\x00\xa9\xea\xd1\ +\x63\xf0\x5d\x3a\x97\xd7\x94\x18\xf0\xda\x0a\xcb\xfc\x33\xbe\xc0\ +\xf1\xe9\x52\xac\xc8\x08\x5d\xb1\x06\x8d\x2e\x40\x8d\xaa\xae\xc5\ +\xeb\x96\x75\x15\xbc\x9d\xc0\x8d\x14\xc9\x8e\x87\x31\xdc\xe5\x8e\ +\xd6\x20\x56\x47\xd3\x38\x7a\xf3\x38\x1e\x7e\xf5\x34\xee\x7f\x6d\ +\x1a\x27\xdf\x88\x38\xbe\x39\x8a\xd3\x99\x34\xcd\xd8\x45\x4f\xf5\ +\x7d\xbf\x7d\xa7\x7f\xe9\xca\x51\x89\x3c\x53\x3f\x14\x11\xf6\xcd\ +\xb3\x50\x22\x99\x05\x62\x96\xb0\xdf\x3e\xe3\x2d\x34\x7e\x2b\xad\ +\xbe\x99\x36\xc9\x4f\x3d\xfa\x13\x8b\xde\xbc\x3f\xdf\x37\x5b\xb5\ +\x46\x27\xae\x8e\x59\x69\xdb\x63\x40\x44\xed\x0b\xa2\x93\xaa\x36\ +\xe9\xc0\x3f\x37\xe2\x95\x37\x6d\xcf\x79\xcd\x9b\x6a\x44\x38\x29\ +\x8e\xfe\xb2\x2c\x37\x62\xe8\x98\xfa\x77\x72\xc1\xe7\x2a\x3e\x2a\ +\xe9\x03\xfa\xf3\xcd\x5b\x6e\x08\x95\xcd\xb4\xe0\x37\x8a\x7c\x83\ +\xa8\xf6\xfd\x94\x6f\x20\x3e\x0a\xb9\x99\x08\x9f\x9b\x8f\xf5\xad\ +\xb4\xb4\x82\x9b\x41\x7c\x4e\x2b\xe2\xbe\xc6\x90\xbb\x47\xeb\xf8\ +\xf4\x9f\xff\x8b\xf1\x91\x3f\xf4\x87\xd5\xb6\x2b\x6f\xbe\xf9\x53\ +\x4b\x56\x93\x16\xd5\x74\x1c\xb3\x4f\x24\x05\x3f\x29\x90\x32\xad\ +\x0f\xba\xf4\xf7\x18\xdf\x4e\x56\x17\xc9\x76\xcd\xef\xd2\xbf\xd3\ +\xf0\xb8\x32\x75\xcb\x5d\xd1\x36\x75\xa2\x1b\xff\x38\x3d\x86\x22\ +\x89\x6f\xd2\xea\x9c\xa0\x43\x6b\x4c\x7c\x6a\xff\x63\xf1\xb7\x7f\ +\xe9\xff\x1e\x97\x76\xfa\x31\xd9\x17\x9f\x8d\x0f\x44\x90\xea\xe8\ +\x74\xcf\x12\xa3\xf5\xf1\x52\x20\x43\x10\x85\xd2\xc1\x3a\x3c\x30\ +\xca\xd3\x39\x83\x68\xf3\x89\xd5\xa6\x20\xc5\x2b\xe4\x63\xe1\x78\ +\x1d\xfc\x5f\x85\xa5\xc3\x83\x71\xb5\x16\xd4\xb8\xa4\xda\xd0\xb7\ +\x03\x72\xd0\xf5\x42\xe7\x1e\x0f\x59\x31\x64\xf1\x66\x08\x6f\xac\ +\x8c\x27\x8a\x56\xf8\xe8\x78\x1d\x0b\xde\x82\xf0\x75\xd1\x89\x0a\ +\x6a\xf9\x33\xe7\x5a\xca\x0d\x91\x0e\x5a\x3e\xed\xc1\x38\x35\x88\ +\xfd\x3d\x5d\x9b\xf6\x17\x1a\x6f\x34\x3e\x53\x6f\xf5\xcf\x75\x5b\ +\x4b\x84\x9f\xe3\x48\x6f\x95\x3f\x96\x79\x74\x3c\x8d\xaf\xbf\xf2\ +\x30\xbe\xf8\x8d\xe3\x78\xe3\xde\xca\x9f\x4e\xec\x6b\x8e\x26\xad\ +\x2e\x83\x4d\xaa\xc9\x85\x62\x62\x01\xed\xc3\xd8\x22\xa6\x8c\x62\ +\xec\x75\xb4\x0e\xce\xd3\x81\xb4\xb6\xa6\x4b\x8f\xb8\xb4\x8a\xf1\ +\xaf\x34\x77\xf1\x8b\xbc\x3c\x36\xda\x86\xaa\xc3\x17\xaf\x1d\xc6\ +\x4f\x7e\x6a\x1d\x1f\x79\x9e\xe8\x7d\x8d\x89\xc3\xd0\xa5\x56\xf1\ +\x83\x18\x61\xe4\xa2\x17\x6f\x6a\xfc\x3b\x5b\xcc\x55\x22\xe6\x32\ +\x4d\x2e\x09\xdb\x48\xd8\x39\x96\x08\x1d\xf2\x3f\xf3\x82\xe5\x43\ +\x45\x61\x4a\xa0\x78\x86\x2f\x1b\x95\x8f\x2f\x0c\x75\x7d\x98\xe8\ +\xfa\x35\x1a\xe7\xdb\xcc\xd4\x9e\x37\x59\x15\x97\x22\x99\x11\x3a\ +\x32\xdc\xc6\x54\xca\x5d\xb2\xe1\xe5\xd5\x8b\x50\xd7\x72\x93\xa6\ +\x4a\x3d\x0b\xd5\x07\xcc\x29\xb8\xac\xb7\xe0\x93\x8f\xcb\x38\x99\ +\x2e\xca\x6f\xa8\xc1\x92\x80\xf4\x54\xfd\xd5\x11\x65\x7e\x46\xa7\ +\x53\xc0\x96\xa0\xb7\xf0\x74\xc5\x82\x23\x8a\x30\x09\x4c\x26\x48\ +\x5c\xd1\x21\x11\xe1\xcd\x2c\xe6\xba\xc3\xf5\x28\x6e\x5c\xeb\xc7\ +\xfe\xae\xe6\x14\x25\xed\x7a\xc8\x75\x71\x18\x93\xf1\x20\x2e\xef\ +\xcd\x55\x9f\xbd\x38\x3d\x8d\x98\xf2\xa5\x02\x8f\x2b\x35\x1f\x53\ +\x42\xa9\x29\xec\x23\x1f\xb9\x76\x3e\x45\x44\x05\x11\x95\x49\x0a\ +\xce\xbd\x44\x8a\x15\x61\xc4\x92\x4a\xc9\x4e\xb8\xe9\xb8\xc0\x6b\ +\x97\x75\xcc\x75\x0e\xf3\x9b\x79\xbb\xbb\x9a\x0b\x8e\x67\xf9\x3b\ +\x92\xc5\xb2\x55\x3d\x69\xf4\xcf\xdc\x80\xb9\x75\xd6\x17\x8f\x36\ +\xf5\xe3\x54\x0b\x81\x57\x6e\x8f\xe2\xf5\x07\x03\x4d\x1f\x38\xcb\ +\xf8\xfc\x6a\xb1\x0b\x31\x27\x85\x28\x68\xc8\x24\xba\xe6\x54\xb2\ +\xfa\xb4\x11\x35\x83\x4c\x5e\xff\x71\xd4\xa9\xd6\x21\x57\xfd\x73\ +\xc9\x42\xce\xdf\xbc\x89\x44\x87\x90\x8d\xb5\x3d\x6d\xb6\x0e\x84\ +\x92\x23\x34\xc4\x06\x99\x40\xbe\x90\x9b\x90\x0e\x47\xe4\xb9\x30\ +\x60\x7e\x27\x46\x53\xce\x73\xc8\x9a\xeb\xfa\xfa\xd3\xc0\xe0\x30\ +\xf6\x15\x5b\xcb\x34\xab\x91\x4b\xc9\x16\x0d\x5d\x12\xda\x2b\xf3\ +\x7a\xc0\x39\xe9\x3f\x55\x8c\xcf\x05\x99\x83\xc7\x91\xdf\xbd\xe4\ +\xe1\xb9\x53\xb5\xcd\xe7\x3f\xf3\xcf\xc6\x0f\x7c\xfc\x47\x74\xce\ +\xf0\xf0\x12\x75\xd8\x2d\x25\x74\x27\x7c\x71\x05\x6c\xb1\xc5\x85\ +\xd8\x76\x97\x2d\xb6\x78\xf7\xb0\xdd\x50\xdb\x62\x8b\x2d\xde\x5f\ +\x60\xce\x79\xd1\x95\xfe\x7b\x7c\xf5\x47\x7d\xcd\xe2\x71\x26\xbc\ +\x35\xce\xa7\x68\xb5\x78\x0e\xec\x15\x16\x33\xe2\x65\x3c\xf5\xd1\ +\x0f\xc5\xab\xbf\xf1\x95\xb8\xfd\xa5\x2f\xc4\x44\x13\xfc\x91\x16\ +\x46\xfd\xc1\xd0\x8b\x69\xd2\x78\x89\xd6\x4c\x9c\x0b\x8d\x47\x0c\ +\x37\x20\xca\xdf\x9a\xcf\xe4\x28\x8e\xc5\x26\xd2\x45\xcc\x3c\x26\ +\xea\x30\x08\x7b\x51\x5f\x5c\xc6\xa7\x70\x11\x49\x40\x57\xb2\xd2\ +\x10\x2c\x26\x58\x6c\xc9\x74\x78\x38\xeb\x20\x1e\x64\x06\x49\xcb\ +\xab\xf1\x9b\xe8\x72\x52\xd6\x47\xa5\xcb\x1b\x0e\x56\xd2\xa8\x31\ +\x44\xd7\x60\x4a\xc8\xf6\x2a\x8b\x31\xd4\x27\x6f\x45\x70\xc3\x88\ +\xb5\x98\x6f\xdc\x80\xd4\xb5\xa1\x6f\x43\x31\xa0\xbe\x92\xd7\xdc\ +\xf0\x70\x92\xe4\xfb\x06\x4e\xe1\x55\x3e\x77\x74\x20\xb3\x24\x84\ +\x4d\xa4\xc7\x9b\x3f\x78\x04\xe4\x52\x26\x81\x5d\x8f\x20\x13\x99\ +\xac\x70\x5a\x03\x05\xe7\xd3\x10\x49\xdb\x89\x6f\xc1\xba\xc0\xc3\ +\x56\xca\x9d\xf1\xbc\xb1\xc4\x3a\x71\xdd\x1b\x6b\xc5\x1a\x71\xe9\ +\xfa\x3a\x2e\xbd\xd4\x8f\x1b\x3f\x38\x8a\xc3\x0f\x72\x43\x68\x1d\ +\x33\xe4\xee\xaf\xe2\xf4\xd5\x93\x38\xf9\x56\x2f\x8e\x1f\x6a\x51\ +\xce\x53\xba\x2c\xe2\x96\x99\x53\xcd\xdd\x37\x77\x5a\xc3\x8c\x0c\ +\x75\xec\x2b\xd1\x5d\x29\xd3\x4a\x57\x65\x2b\x05\x50\x47\xd8\xf5\ +\xce\xe6\xd0\xe1\x38\x86\x13\xd9\x3b\x50\xfd\xf2\xc9\x47\x3e\xa7\ +\x47\xe7\x52\x1d\x90\x0b\x1b\x5e\xd9\xb2\x35\x4f\x85\x7d\x2e\x89\ +\x6b\x01\xff\x67\x74\x75\x62\x58\x5a\x07\x6f\x6a\x20\x60\x21\xc2\ +\xa5\x1e\x1d\xd7\xb0\x2d\x6f\x59\x71\xc8\x13\x39\xe2\xd7\x8b\x65\ +\x2c\xcf\xa6\x31\x7b\x70\xe6\x8d\x07\x7e\x73\x2a\x81\x5c\x9b\x4f\ +\xe3\xba\x68\x22\xc9\x45\x7e\x27\xbe\xc3\x6d\xd0\xd0\x16\xcd\xf3\ +\x2e\xc3\x9c\x7c\xa2\xd9\x80\x1c\xf6\x63\x70\xb0\x8a\xc3\xeb\xab\ +\xd8\x61\x83\xf4\x0a\x1b\x6c\xd8\xbb\x63\x99\x7e\x7f\x14\xfd\xf1\ +\x3a\xf6\x76\x23\xc6\x97\x97\xb1\xea\x0f\x63\x71\xc4\x1b\x61\xd2\ +\xe3\xcf\xa1\x51\x6f\x2a\x07\xe5\xb3\x05\x40\x7e\xfe\x3b\x3e\x29\ +\xf9\x35\xba\x12\x4d\x78\x83\x34\x7d\x5e\xd4\xc0\x66\xfe\xf1\x6b\ +\x84\xcf\x23\x5a\x94\xfa\xc3\xef\xc7\x62\x26\x7b\x66\xe2\x3e\xec\ +\xc5\xfc\xe8\x34\x4e\xbf\xb1\x8c\x7b\x5f\x3a\x8b\xa3\xaf\x9e\xc5\ +\xdd\x57\x22\xce\x6e\x4f\x62\x3a\xcd\x4f\x18\x0d\x7a\xf9\x23\xfb\ +\xf9\xe9\x1b\xfd\x49\xad\xeb\xcd\xe1\xac\xc1\x92\x93\x79\xc9\x49\ +\x5e\xe3\x3a\x0d\x97\x69\xe5\xa8\x62\xd5\x6d\x6f\xac\xfa\xdc\x1d\ +\xfa\xb7\xd3\x86\xe5\x53\x8f\xde\xc8\x62\x13\x8b\x7e\xe9\xb2\xb4\ +\xa8\xfa\xcf\xa3\xf6\xa5\x1a\xbf\x99\xaa\xc0\xcc\x8e\x86\x73\x42\ +\xd9\x07\x39\xaf\xfb\xde\xd0\xe3\x53\x8f\xd0\xc8\x61\x8a\x6f\xe8\ +\xac\x54\x06\x36\xc6\x18\x03\x49\xa3\x30\x6a\x52\x6b\xd2\x36\x85\ +\x9b\x40\x78\xe5\xe0\x1b\x58\x0b\x49\xd0\xa7\x79\x28\xc1\x11\xa5\ +\x5d\x44\x35\xf0\xf9\x87\x72\x95\x45\x32\x64\x3f\xf4\x38\xd3\xca\ +\xf9\xc6\xbd\xa4\x4e\xa6\xeb\xb8\xa5\xd3\xe4\xfa\x27\x7f\x24\x7e\ +\xf0\x7f\xf2\xd7\x75\x7a\xd7\x1b\xca\x2a\x43\xf1\x41\xab\xbf\xe6\ +\x07\x27\x6d\xad\x68\x25\x6b\x3e\x49\xbf\xa7\x78\xa7\xd9\xbd\x95\ +\x5c\x8d\xa3\x7a\xdf\x63\xf3\xdf\x33\x7c\x27\xe5\xea\xa6\x39\x9f\ +\xbe\x86\xf1\x4d\x9f\x13\x30\x3f\x23\x79\x48\xe0\xda\xe5\x1b\x71\ +\x7c\xef\x38\x7e\xe5\x8b\xff\xbf\xb8\x7e\xed\x50\xe7\x70\x7e\x0a\ +\xd6\xa2\xc8\xc9\xd5\x73\xa9\xf6\x47\xb3\x91\x81\x67\xc9\x1a\x2e\ +\x7e\x32\x0c\xff\xbe\x26\xed\x57\xe2\xfd\xf9\x47\xa7\x33\x33\x7b\ +\x71\x91\xdd\x80\xa2\x2b\x1b\x3f\xe9\x7a\xfe\x12\xca\xf4\x9c\x5b\ +\x79\x92\x56\xa4\x64\x05\xa1\x4d\xce\xe3\xd0\x4a\xb9\x7c\xc5\xa8\ +\xa5\xe6\x49\xf9\x89\x58\x65\xb5\x1e\xfa\xe6\xfb\x74\xce\xf4\xa9\ +\x17\x8b\x05\x82\x4b\x5f\x6b\x30\x21\x93\x14\x3d\x17\x16\xea\x22\ +\x20\xc7\xa3\x48\x6c\xe0\xe9\x1a\xa3\x71\x6a\x7f\x77\x1e\x23\xc6\ +\xab\xa5\xc6\x2e\xb2\xe0\x15\x55\xf2\x28\xf3\x28\xde\x4e\x6b\xc6\ +\x12\xe5\xb3\xd0\x18\x72\xef\x64\x1a\x5f\x79\xfd\x24\x5e\xbd\xd5\ +\x8f\x33\x8d\x35\xbc\x59\xc3\x38\xe7\xb9\xac\x52\x6d\x58\xb3\x11\ +\x50\x90\xb0\xaf\x93\x84\xd4\x22\x25\xbe\xd6\x41\x53\x14\x13\x94\ +\xb5\x95\xb5\x2f\xdb\x18\x4f\xdd\xd4\x4c\x28\x0d\xc9\x29\xef\xb5\ +\xae\x9b\xe3\x61\x2f\x9e\x3d\x18\xc4\x8f\x7d\xa2\x1f\x1f\x79\x51\ +\x76\xad\x27\x7e\x16\xa1\xaf\xe2\xb2\x71\x45\xf9\x16\x8b\x7e\xec\ +\xec\x8f\xe3\x95\x5b\x8b\xb8\x77\xba\x60\x3a\x95\xcd\xaa\x3c\x6b\ +\xf6\x6e\x72\x85\xf1\x70\x35\xa2\xc6\x9b\xa7\x31\x37\x6d\x4a\x67\ +\x5e\x92\xd9\x46\x85\x0f\xf2\xb7\x5f\x33\x35\xde\x48\xed\xbc\xb3\ +\x33\x8e\xb1\xd6\x15\xf9\x7b\x58\x9c\x23\xa8\x2b\x32\x3e\x82\x36\ +\x4c\x69\xf3\x4a\xc8\x91\xde\x0c\x5d\xe2\xed\xb5\xb2\x1b\xa3\x74\ +\x16\x2e\xe9\x82\x62\x96\xf5\xe4\x1c\x83\x80\xb8\xca\x64\x3a\x5d\ +\xc4\xf1\xe9\xca\x6d\xed\xb7\xcd\x5c\xcd\xf2\x15\x8d\x08\x69\xd3\ +\xd6\x42\xeb\x40\xfe\x7e\x23\x8d\xfe\x50\x22\xec\x5b\xa2\x83\x4e\ +\x30\x6d\x4c\x86\x8f\x8f\x88\xd2\x3f\xfa\xde\x2c\xbb\x7e\xd0\x8b\ +\xcb\x87\xf4\x85\xec\x0f\xf4\x0b\x1e\x5c\xe2\x93\x8f\x23\xcd\x9d\ +\xae\x1d\x44\x4c\x76\x96\x71\x7a\xd6\x93\x1b\xa5\xdd\xd6\x20\x3d\ +\x36\x5a\x89\xe4\x9a\x7a\x22\xa2\xd3\x26\xe9\x17\x3a\x23\x4b\x90\ +\xb4\x55\xae\xc6\x5f\x0c\x44\x48\x99\x87\xf4\xa9\x5b\x7e\x5b\x70\ +\xa5\x8b\xf7\x74\x31\x8c\xf9\x92\x79\xca\x3a\x46\x6c\x18\x21\xa7\ +\x78\xce\x69\x3b\xeb\xa7\x1f\xa8\x1e\x15\x1e\x68\x7d\xc0\xb3\x48\ +\x77\x4f\xfa\xf1\xb5\x37\xf6\xe3\xa1\xe6\x86\x3d\x35\xc6\xa0\xcf\ +\xc3\x2f\x59\x96\x4c\x51\x88\x0e\x1e\xe1\x95\x60\x35\x0d\x24\x4d\ +\x1d\x2b\x4e\xce\x3a\x75\x8e\xec\x69\x1e\x75\xfd\x3a\xfd\x53\x12\ +\xfe\xdd\x34\xc4\x72\x2e\x42\x55\x24\x60\x56\xf7\x28\x1e\x89\x29\ +\x8c\x8b\xa4\x1b\x59\xe6\x2a\xb2\xc1\x9f\xcb\xf6\xdb\x69\x9c\x17\ +\x44\x6c\xa2\x5b\x06\x3a\x25\xed\xeb\x26\xe6\x0f\xbf\xda\xaa\x7e\ +\x9b\x7c\xa1\x1e\xec\x27\x09\x1e\x51\x4f\xda\x42\x26\xd2\x26\xe4\ +\xd0\xbf\xb2\x41\xa2\xd4\xbf\x78\x08\xee\xf4\xde\x32\x6e\x1c\x7c\ +\x2c\xfe\xe4\xcf\xfe\x4b\x6a\x97\x89\xe6\x52\x8c\x84\xd4\x29\x72\ +\x5d\xed\x8f\xe4\xb4\xc5\x16\xef\x08\xdb\x9e\xb3\xc5\x16\xef\x1e\ +\x18\xa1\xb7\xd8\x62\x8b\x2d\xbe\x7f\x60\x02\x7a\x6e\x32\xfa\x58\ +\x7c\x0f\x67\x00\xd5\x8c\xb7\x33\xe1\xed\x51\x35\xa4\xb1\x39\x65\ +\x86\x10\xdf\x93\x61\x2d\x6a\x34\x41\xfe\xa9\xff\xc5\xbf\x19\xd3\ +\xd1\xe5\x38\x59\xf6\xb5\x78\x63\xc1\xa8\xe9\x36\x13\x6c\x44\xce\ +\x19\xe3\xa4\x0e\x8a\xc8\x99\x7d\xa1\xf5\x4f\x3a\xcd\xf0\xf1\x56\ +\x0b\xb9\xb9\x16\xac\x0b\x85\xe5\xca\x8a\xd5\x32\x96\xb3\x5f\x17\ +\x05\xd2\x90\x2a\xca\x41\x50\x26\xc5\x5a\x13\xb9\x10\x62\x83\x23\ +\xf5\xe4\xdd\x0d\xf8\x85\xee\xe2\x91\x89\x7e\x17\x8f\xf2\x33\x5f\ +\x16\x10\xf8\x94\x1b\xce\xa6\x5c\x72\xc4\xe3\xbf\x2e\x78\x07\xdc\ +\x60\xee\xc5\x70\x47\xee\x40\xb6\xed\x4a\xa8\xdc\xe0\x75\x72\x9c\ +\x96\x2e\x79\x7b\xe4\x3c\x1c\x59\x8e\xad\xdf\x24\x24\x43\xd9\x92\ +\x50\x7e\xb4\x8b\x0b\x0a\x9d\xd1\x8d\x18\xb4\xfd\x4a\x25\x9d\xa1\ +\x2a\xd1\xc6\x6d\xa2\xcd\xb9\x85\x64\xc9\x9b\x46\xd9\x40\x57\x27\ +\x0b\x64\x16\x66\x92\x53\xf1\x58\x2a\xb3\x58\x66\x71\x3d\xe0\x13\ +\x78\xfd\x71\x8c\xc6\x93\x18\x1e\x8e\xe3\xf2\x13\xbd\xb8\xfc\xc9\ +\x88\x27\x7e\x4f\x3f\x0e\x3e\x3a\x88\xe1\x78\x11\x4b\x9e\xbe\x9d\ +\x45\x4c\x6f\x47\xcc\xee\x0e\x63\x7a\xb6\x8a\xf9\x5c\xe9\xfd\xdb\ +\x70\xe4\xaf\x2c\xec\x43\x94\xd2\xb8\x7d\xaa\x0d\x29\x52\x69\x83\ +\x80\x64\xba\x7c\xfb\xb5\x1c\xa5\x48\xbe\xf9\x40\x4c\x61\x1b\x8a\ +\xf3\x9b\x69\x42\x5b\xca\x8b\xda\xad\x24\x2a\x2a\x8a\xc2\x74\xc5\ +\xbe\x24\x5a\xe7\xb7\x41\xe5\x3b\x7a\x23\x7d\xa1\x15\xf0\x46\x2c\ +\x24\x65\x46\xaa\x13\xef\xf3\x83\xc4\x06\xfd\x33\x65\x6b\x56\xd4\ +\x7d\xd6\x15\xf1\x3e\x24\x3a\x64\x1b\x48\x0b\xba\x0e\x54\x1f\xe4\ +\xcd\x99\xe2\x9b\xc0\xcb\x8d\x0a\x3e\x53\xe4\x20\x6c\x2d\xb8\x09\ +\x0c\xfa\x3b\x31\x18\x0d\x55\x7f\x6c\x49\x0d\x7c\x4e\xf2\x04\x3d\ +\x1b\x92\xfd\xc1\x24\x06\x57\x97\x71\xe9\xc3\xcb\x78\xf6\x47\xe6\ +\x71\xe3\xd3\x93\x98\xdc\xe8\x07\xfb\xac\xeb\xf5\xd8\xfd\x25\x6f\ +\x0e\x58\x61\x27\x3f\x37\x89\xcb\xda\x2e\xdc\x71\x05\xee\x9f\x85\ +\xa6\x4e\xfc\x97\xec\x56\x4c\x44\x43\x83\x0c\x58\x9d\x68\xbc\xfc\ +\x1c\x51\x51\x27\x1b\xb8\x81\xf0\xe0\xcd\x59\xbc\xf2\x85\xb3\x78\ +\xf9\xbf\x9e\xc7\xab\xbf\x34\x8f\x5b\xbf\xd2\x8f\xdb\x5f\x19\xc5\ +\xc9\xed\x89\xdf\x4c\xe3\xa6\x30\xbf\x61\x48\x25\xa8\x24\x59\x17\ +\xe5\x0f\xa5\x1e\x3e\x1a\x94\x80\x8b\xe6\x33\x24\xc3\xa0\x6c\x7e\ +\x37\xc0\x20\x75\x41\xde\x00\x5b\xab\x2e\x7b\xbc\x8d\xb6\x23\xe7\ +\xcf\x3d\xca\x8d\x14\xa9\xf1\xc5\x72\xef\x04\x28\x47\x56\x7e\x56\ +\x2d\xf9\x5f\x0c\xdb\x55\xe5\x8b\x50\x7a\x85\xa1\x7f\x7f\xe6\x91\ +\x1b\x41\x3a\x4f\xf0\x19\x06\x29\xbf\x81\x6e\xf7\x53\xce\x9a\xcc\ +\x10\x75\x55\x65\x0b\x38\x1c\xe5\xfb\x3a\x20\x6a\xa9\x30\x77\x84\ +\xf9\xce\x12\x3c\xc1\xc3\xbc\x1c\x75\x6b\xe0\xbb\x8f\xc0\x2b\x6f\ +\x9a\xe9\xe0\x4f\xd6\x95\x1c\xc8\x79\xb5\x5a\xc6\x62\xba\x8c\x37\ +\xa6\xab\x98\x2d\xf7\xe3\x63\x7f\xf1\x2f\xc4\xee\xc1\x81\xfb\x2d\ +\xe0\x16\x56\x69\xa9\x72\x4c\x54\x1d\x60\xd3\x5e\x67\x29\x5e\x5b\ +\x77\xe7\xe3\xdf\x37\xa8\xc5\x69\x8b\xb5\x89\xc7\xf1\x7f\xa7\xe0\ +\xdb\x6d\x98\x6f\x47\xfe\xa2\xba\xf3\x40\x8c\xcb\x9e\xe4\xb7\x54\ +\x47\xf3\xf8\x33\x7f\xf4\x5f\x8a\x9d\xd5\xf3\xf1\xad\x57\x1e\xf8\ +\xd3\x6d\xee\x39\xe4\x85\x3c\x7d\x9a\x6e\x4e\x1a\x77\xee\x54\x5c\ +\x7b\x64\x1b\xce\x43\xd3\x47\x8b\x57\xfd\xa5\xce\x97\x39\xf3\xab\ +\xf2\x86\x0d\xec\x8c\xd2\xb1\xca\xbe\x15\x74\x3e\xf4\x79\x08\x0a\ +\xc3\xca\x98\x93\x37\xb0\xe5\x57\x7b\x8d\x8b\x95\x35\xd1\x17\x81\ +\x72\xf2\x5f\xfc\x46\x03\x89\xe4\x66\xd3\x45\xf8\x77\x67\x55\x7e\ +\xcd\x06\xe2\x99\x27\xfa\xf1\xc4\xd5\x81\x6f\xc0\xb7\x67\xa8\xab\ +\xaa\x05\x75\xf5\x96\xe5\x2a\xca\x01\xa2\x4a\x3c\xd7\x58\x7e\xe7\ +\x5e\x2f\x5e\xbd\x39\x89\x07\x27\x5c\xbf\x96\x2a\x23\x0f\x40\xf4\ +\x63\x28\x37\x18\x64\xf9\x07\xbc\x45\xdf\xd7\xb8\x21\x9b\x8e\xe6\ +\x67\xf1\xfa\x9d\x69\x7c\xeb\xe6\x71\xdc\xba\xdb\x8f\x93\x05\xf3\ +\x61\x8d\xbd\xad\xea\xe2\xe7\x48\xee\xeb\x4d\x17\x8c\x33\xcc\xd5\ +\xec\x2b\x58\xe3\xe5\xd7\xb6\x74\x3a\x5c\xb9\x7e\x02\xe2\xac\x53\ +\x0a\x0b\x4b\x3e\x75\x24\x1f\xa7\xf2\xa8\x38\x31\x19\xf7\xe3\xd9\ +\x6b\x93\xf8\xe8\x07\x7a\xf1\xfc\x33\xb2\x79\xbe\xab\x52\xf1\x1b\ +\x69\x1a\x13\x65\x24\xf5\x9a\x6f\xef\x6a\x4e\x3a\xea\xc5\xee\x1e\ +\x6f\x02\xf1\x80\x4b\xd6\xa7\xaf\xb5\x72\x4d\x75\x56\xfd\x8e\x6b\ +\x86\x58\xb9\x32\x8e\xa7\x48\xe3\x40\xb6\xcb\x66\x5c\x53\x14\x94\ +\x40\xd9\x57\xbf\xd2\xf5\xaa\x70\x72\x0c\x76\x20\x39\x1c\x13\x8e\ +\xed\x84\x2f\x02\x19\xe0\xb0\xbd\x5e\x5b\x28\x75\xb1\xd4\x0c\xca\ +\x06\x2f\xff\x88\xc9\x3f\x50\xe3\x32\x9d\x99\xd5\x71\x0d\x2a\x24\ +\x68\xa2\x74\xb0\x5e\x85\xf0\xa8\x1b\xbf\x51\x9d\x2c\x97\x39\xc9\ +\x52\x46\x1d\x3a\xd1\x49\xc3\xab\x8c\x82\xc2\x2e\x8e\x36\x5f\xc7\ +\x42\xca\xd9\x7a\x77\x47\x73\x5d\xaa\x2d\xad\x5f\xe7\xa4\x2e\x86\ +\xcb\x3e\x0f\xd4\xec\xc4\x8b\x4f\xee\xc6\x67\x3f\x3a\x8c\x17\x6e\ +\xf4\x62\xcc\x9c\x4b\x69\xd2\x2e\xd2\xd4\x3f\x21\x19\x76\x5e\x73\ +\xc1\xab\xe1\x86\xd4\x1f\xfd\x8d\x40\x29\x8b\x41\xb8\xf5\x8c\x4a\ +\xd7\x32\x55\x54\xfb\x19\x44\x96\x5a\x3f\xde\x3f\x9a\xc5\x57\x6f\ +\x4e\xe3\x0b\xdf\x88\xf8\xda\xad\x75\xdc\x3e\x63\x83\x5a\xb1\x23\ +\x9d\x6b\x9c\x6f\xea\x03\xbc\x5d\x4f\xbe\xbc\x41\xaa\xb3\x2f\x66\ +\x3a\x5f\x6e\xdf\x1f\xc7\x9d\x87\x4b\xcf\x05\x94\x42\xfa\x30\xa8\ +\xeb\x1e\x45\xa7\xb4\x89\x0d\xdb\x94\x4f\xa1\x9b\xd4\x22\x18\xdf\ +\x76\x86\x83\xb8\x72\x79\x10\xaa\x4e\x9f\xdb\x9e\x87\xa9\x0c\xf4\ +\x8f\x2a\xd8\xd1\xfa\x6d\xa3\x6b\x6d\xa3\x89\x81\x40\xcd\xcb\x3c\ +\x83\x71\xd6\x0f\x23\x11\xba\xb8\x68\x0d\xb2\xed\x3a\x4e\xea\x6c\ +\xab\xda\x17\x73\x3d\x85\xb2\x60\x1e\x1c\x5f\xc2\xf8\xa6\x41\x61\ +\x22\x9b\xa5\x6c\x62\x44\x22\x9c\x75\xc0\x29\xe6\xae\xe3\x7c\x65\ +\xa3\xc6\x93\xb3\xe3\x49\xfc\xd8\xa7\xfe\xe9\xd8\x99\xec\x35\x7d\ +\xfe\xed\xec\xde\x62\x8b\x2d\xb6\xd8\xe2\xfb\x83\xed\x1b\x6a\x5b\ +\x6c\xb1\xc5\xfb\x03\x75\xb2\xf8\x3e\x98\x34\x7e\xf7\x26\x3c\x4e\ +\x03\xfc\xbe\x16\x1d\xcb\xd8\xbb\xf2\x24\x2b\xf5\xf8\xf2\x2f\xfe\ +\xa7\xb1\xbb\x3f\x8c\x1d\xcd\xa3\x59\x28\xe5\xdb\x23\x29\xc9\xf4\ +\x9b\x45\xba\xb5\x31\x9b\xf6\x3f\x32\x5a\x32\x68\x11\xd8\xc4\x95\ +\x23\xe9\x8b\x90\xc4\x15\x87\x2f\x39\xad\x9d\x60\xa4\x7e\xcb\x39\ +\xd8\xc8\x19\xd5\x17\x1a\xaa\xcf\x62\x01\x3d\x3c\x45\xea\x54\xe5\ +\x66\x46\x91\x10\xab\x93\xcc\xe1\xb4\xe1\x62\xb4\x31\x50\x19\xf2\ +\x51\x4a\x28\x4b\x09\xa4\x2b\xc1\xcc\xb5\x04\xe4\xfa\xb6\x27\x83\ +\x2c\x84\x79\x3b\x63\x3d\x5f\x95\xcd\x91\xb2\xa0\x23\x9e\x45\x72\ +\x49\x6d\x90\x47\x12\xfe\xab\xec\x2e\x99\x71\xf6\x1a\x3a\xf3\xd2\ +\x1f\x7e\xa1\x1d\x61\x50\x01\x49\x35\xac\x42\xb8\xba\x2e\x82\xe3\ +\x1b\x69\xe3\x3c\xab\x25\xa9\xff\x2c\x45\x09\xf9\x48\x23\x20\xc3\ +\xc6\x08\x05\xe6\x26\x55\x2f\x26\x5a\xb4\xf5\xa3\xbf\xb7\x8a\x1b\ +\x1f\x58\xc7\xd3\x1f\x9a\xc4\xb5\x4f\x8d\xe2\xaa\xfc\xc9\xde\x52\ +\x8b\x32\x7e\x60\x5d\xcb\xb5\x37\x17\x71\xf4\xda\x69\x9c\xbc\xb2\ +\x8e\xe3\xdb\xf0\x94\x66\x91\x0b\xcd\x6a\xb3\x75\x17\xbf\xe6\x9a\ +\x9c\x8a\xac\x8f\x0d\x94\x44\x95\xed\x78\x16\xf2\x0d\x27\xe3\xb2\ +\x5f\x8a\xc2\x1f\xf7\x63\x78\x69\x47\x0b\xff\x21\x3b\x44\x76\x5e\ +\xf0\x6b\xf1\x5f\xe5\x9d\x2b\x07\x8c\x6b\x54\x49\x2f\xab\x4c\x1a\ +\xdb\x02\x42\x89\xab\xf2\x64\x51\xfb\x6a\x93\x4c\x69\xdc\xcd\x1c\ +\x5f\x12\x16\x59\xce\x8e\x8c\x14\x0f\xdb\xf8\x13\xbd\xe6\x93\x89\ +\xa7\xb3\x98\xf3\x18\xef\x7c\xe9\x05\x35\x22\x4d\xbb\xb8\xdf\xe1\ +\x92\x61\x1e\x28\xc4\xf9\xf0\x06\xcc\xcb\x36\x4e\x5c\x24\x94\xb6\ +\x70\xf3\x35\x86\x3d\x6f\xac\xec\x5c\x5a\xc7\xe1\x0b\xa3\xd8\x7d\ +\x52\xfc\x3d\x49\x0c\x87\xae\xb7\x50\x1b\xfb\x06\x2d\x37\x6d\xd5\ +\xff\x79\xab\x69\xbc\xbf\x8a\xc9\x25\xde\x46\x18\xc6\xc9\x83\x55\ +\x2c\x67\xb2\x5e\x34\xe5\xf5\xa6\xb3\xcb\xaa\x7c\x5d\x74\x17\x5e\ +\xff\x1d\x3b\x6a\x85\x39\x0e\xc8\xcf\xe6\x79\x14\x55\xc4\x3a\x0a\ +\xd9\x01\xf5\x59\xf9\x6c\x0c\xd5\x3a\xf4\x67\x0a\x35\x48\xcd\x97\ +\x8b\x38\x3d\x1b\xc4\xe9\x9c\x1b\x42\xfd\x58\x2d\xb9\xfb\x22\xd9\ +\xa5\x2c\x2b\x7d\x1e\x40\x75\x4d\xca\x18\x04\x1b\x96\x80\x40\x37\ +\x2c\x74\xda\xdc\x20\x92\x34\x6c\xc8\xb3\x99\x36\x1e\xc4\x70\x6f\ +\x1c\x43\x3e\xf7\xc8\x9b\x69\x7c\xfa\xd1\x0f\x14\x48\x08\xe7\x02\ +\xb4\xa8\x6a\x36\x81\x1d\x9c\x4b\xc8\x52\xc7\x8f\x87\xe3\x1e\x27\ +\x20\xfe\xe6\x9b\x69\x6a\x5f\xec\x2c\x09\xb8\x01\xc3\x9d\x1d\xff\ +\x88\xbf\x6f\xc4\x70\x4e\x38\xaa\xa0\xe4\x5d\x6e\xf2\x39\x0a\xda\ +\x37\x85\xe4\xe6\xeb\x58\xf9\x53\x8f\x25\x52\x1e\xba\xe5\x25\x44\ +\xf8\x26\x2a\xba\xa9\x7b\x29\xe3\xf3\x6c\xdc\x14\xa7\xed\x2c\x62\ +\xdd\x6b\xff\x0e\xd2\x43\x9d\x5b\x77\x1f\xf6\xe3\xe9\x5f\xf8\x27\ +\xe2\x07\xff\x99\x7f\x2a\x7a\x7e\x7d\x83\x8d\x02\xc1\x09\xaa\xe5\ +\x89\xcd\x50\x17\xc9\xe7\x88\x2d\x8f\x97\x7b\x3b\x64\xea\xef\x1a\ +\xef\x82\x0a\xeb\x78\x37\xf4\xbc\xdf\x41\x95\x83\xb7\x2b\x2b\xf1\ +\x55\xf6\xdb\x45\xa7\x2e\xb3\x6f\xd0\x37\x57\x31\x1e\xef\xc4\xfe\ +\xe8\x85\xf8\xdb\xff\xcd\x7f\x10\xd7\xae\x71\xcd\xd3\xf8\xc7\x8d\ +\x5b\x81\x33\xc1\xa7\xae\xf2\xa4\x2b\xd6\xb9\x51\x6a\x10\x91\xff\ +\x29\x20\xb4\xbc\xe4\x5a\x36\x49\x89\x70\xa6\x71\x9d\xca\x78\xe2\ +\xf0\xdb\xde\x56\x05\x5b\x54\x3d\x19\x97\x92\x5d\x1b\xe0\x3d\x5a\ +\x1d\x8f\xea\x01\xad\xae\x2e\xc4\x2b\xec\xf4\x38\xb6\x72\xbe\x9c\ +\x2a\x03\x6e\x08\xb3\xa1\xa7\x0b\x09\x53\xcf\x18\x8d\x22\x8e\xce\ +\x56\x31\x3b\xc3\x7e\x3f\xa6\x53\xcd\xd3\x7f\x4d\xef\xc0\x85\x48\ +\x9b\x89\x6c\x65\xe1\x2d\xb8\x54\xce\xfb\x31\xd5\x38\x9e\x6f\xbd\ +\xb0\x89\x37\x76\x1c\x63\xfe\x4a\xed\xc5\xb0\xc5\x38\x7f\xeb\xfe\ +\x22\x5e\xbb\x39\x8f\x57\x6e\x2d\xe3\xb5\xdb\xab\x78\x70\xc2\xef\ +\x40\x31\xdc\x92\xce\x95\xdc\x66\xef\xac\x32\xbf\x6a\x9f\x8f\xb5\ +\x81\x92\xe5\xb0\xe3\x33\xb2\x61\x37\x44\xd1\xdb\x14\x56\xf0\xfc\ +\x36\xff\x05\xc6\x6f\xfa\x4e\x2f\xae\xec\x4f\xe2\x83\x4f\xae\xe2\ +\xc3\xcf\xcd\xe3\x85\x67\x7b\x31\x1e\x8c\x65\xd7\xc8\x65\xf2\x0d\ +\x7a\x25\x70\xf6\x4e\xc8\x47\xf3\x96\x71\xef\x68\x11\xaf\xdc\x9f\ +\x6b\xee\x90\xd7\x57\xf4\xa4\x48\x19\x5f\xcd\x4b\xd4\x29\x07\xb1\ +\xc4\x99\xb6\x2d\x19\x61\x79\x0e\x72\x29\x97\x30\xbf\x70\x6a\xfe\ +\x5c\xa2\xc6\x6a\xd4\xbd\x3d\xae\x5b\xaa\x7b\x95\x93\x6b\x57\x91\ +\x2a\xc7\x4c\x59\xc3\x35\xff\x4d\x6e\x45\xc6\x60\x4e\x03\x0b\x54\ +\xa9\xd4\xb6\x99\x36\x79\x99\xb2\x42\x94\xfe\xcf\xce\x78\xd3\x6b\ +\x91\x0f\xfc\x99\x25\xa9\x22\x6c\x59\x0e\x72\x5c\xa6\x9d\xa7\xf8\ +\xbe\x6e\x99\xc1\x86\x50\xd1\xab\x30\xac\x04\xf5\x56\x72\xf3\x35\ +\xd7\x54\xc7\xc7\xfe\x12\x5f\x8e\x84\x98\x33\x8f\x44\xbd\xf0\xe4\ +\xc4\xbf\x29\xb8\xb2\x4c\xa6\x4f\xa8\xee\x14\xf4\x34\xb3\x3f\x8e\ +\x4b\x07\xc3\xb8\x7a\xf9\x2c\xce\xb4\xd6\xb8\x7f\xa2\x3e\xae\x32\ +\x68\x84\x51\x96\x79\xd1\xcd\xb6\x45\xb8\xe8\xc1\x93\xce\x62\x52\ +\xa2\xd3\xee\x29\x50\xda\xa6\xb2\x8b\x8f\x57\xcb\x60\x96\x02\xe8\ +\xe9\xf2\x6b\x39\x52\x7f\x3f\x66\xb2\x0b\x77\x7c\xac\x79\x3d\x0f\ +\xca\xa9\x82\x17\xe4\xaf\x93\x9f\xae\x3c\x1c\x8e\xd2\x56\x85\xcf\ +\x74\x4e\xbe\x76\x2b\xe2\x4b\xdf\x1c\xc5\x83\xb3\x79\x8c\x87\x0b\ +\x9d\xa7\xea\xcf\x9e\x3f\x96\x3c\x7d\x90\x27\xbf\xe6\xd5\xc5\x46\ +\x51\x8c\x6c\x05\x50\xab\xc0\x9b\x58\xca\x6f\xd8\x1f\xc6\x8d\xc3\ +\x71\x1c\x5e\xe5\xd7\xeb\x18\x8c\x04\xca\xe4\x79\x0b\xe7\x1e\x8c\ +\x92\xe8\x6d\xf0\x38\x89\x9a\xba\xda\x55\xcf\x7f\x3f\xac\xa0\x7a\ +\xf0\xa7\x1e\x59\x5b\x38\xbe\x08\x5d\x04\x75\xb2\x6c\xd1\x2c\xb7\ +\x4d\xf3\x3c\x28\x37\xd4\x64\x72\xe1\x35\x87\x84\xc8\x4e\xa8\x41\ +\x8a\xb5\x91\x78\xd5\x04\x7c\xde\x4c\x23\x3f\xcf\xc9\x56\x1a\xfb\ +\x34\xa1\x3b\xb9\xd5\x8b\x8f\x3c\xf5\x07\xe3\x0f\xfc\xe4\xcf\xab\ +\xfe\x1e\x63\xb3\xf5\x15\x25\x5b\x6c\xf1\x1d\x60\xdb\x75\xb6\xd8\ +\xe2\xdd\xc3\x76\x43\x6d\x8b\x2d\xb6\xf8\xfe\x82\xab\x7a\xbd\xb2\ +\xbf\xdd\x15\xbe\x4c\x4a\xbf\x97\xf8\xee\x26\x19\xcd\x74\x59\xa8\ +\x74\x87\x57\xed\xe7\xb3\x65\xf3\xb3\x78\xee\xc7\x7e\x3c\xbe\xfa\ +\x5f\xff\x52\x9c\x7e\xf5\xeb\xb1\xb3\x33\x52\x04\x4f\xbc\xe6\x82\ +\x83\x49\x74\xb3\x90\x15\xed\xe5\x9a\x99\x19\x67\x36\x3e\x07\x39\ +\x16\x98\xc9\x2f\x8b\xf7\x92\x2d\x37\x41\x59\x54\x55\xa4\x08\xda\ +\x58\xf0\xb0\x08\xd2\x1f\xab\x28\xa3\xfa\x05\xe8\x95\x0c\x37\x17\ +\x9a\xcf\xa4\xe1\x2a\x9c\xf7\x23\xa9\x1c\x3e\xcf\xdb\xe4\x54\x3a\ +\x6d\x35\xc8\xcb\xbe\x43\x0e\x57\x40\xa5\x63\x81\x2a\x8a\x7f\xf9\ +\x2c\xd8\x58\x90\xf0\x5b\x6a\x7c\x9a\x8f\xf5\xa2\x8b\xed\x43\x4d\ +\x5f\x7c\x27\xeb\xe6\x01\x03\xa2\x75\xcd\x51\x7c\x68\x90\x0b\xd9\ +\x1a\x4a\x3f\x6b\xaf\xc0\x99\x91\x6f\xb7\x62\xde\x02\x55\x95\xd1\ +\x09\x5c\x4c\x36\xc8\x27\x52\x05\xad\xf0\xdd\x26\xd0\x2c\x94\x59\ +\x30\xfb\xb7\x95\xc6\xb1\x73\x79\x16\x97\x9f\x8a\x78\xfe\x43\x97\ +\xe2\xda\x87\xf6\xe3\xf0\xf9\xdd\x18\x5c\x1e\x49\x6c\xe0\x4d\xd5\ +\xb9\x16\xd1\xf3\x6f\x9e\xc4\xf1\xab\x67\x71\xf2\xda\xc8\xbf\x0d\ +\xb1\x5a\x0e\x5d\x6f\x14\x23\xcb\x25\xe7\x15\x9e\xfa\x86\x9c\x17\ +\xec\xb0\x6d\x54\x25\xf0\x13\xa4\xd9\xac\xa3\x94\x68\x37\xac\x32\ +\xc6\xb1\xc8\x95\x3a\x67\xd3\x8c\x37\x80\x06\x97\x76\xa3\xdf\x7c\ +\x52\x4f\x61\x36\x0e\x68\xd3\x9a\x00\x3b\x20\x1b\x14\xfb\xf0\x8b\ +\x71\xa8\x74\x6e\x5d\xc1\x42\x3b\xbb\x6e\xa4\xf5\x89\x41\x84\x6c\ +\x4c\x3a\xa3\xed\x95\x7a\xa6\x6f\xf9\x89\x77\x9e\x3e\xe7\x93\x8f\ +\x47\x67\xb1\xe2\x57\xe0\xb5\xa2\x2e\x9a\x0c\xb7\x0b\x49\xaa\x4d\ +\xf6\x3a\xbd\xa1\x21\x12\x8e\xa9\xbc\x73\x71\x15\x4d\x74\xb1\x09\ +\x46\xde\x1c\x93\xaf\xba\xda\xbd\xd2\x8b\x83\x17\x7b\x31\xbe\x26\ +\x3b\x77\x55\x77\x63\xce\x05\xb5\x23\x9b\x3f\xb2\xdb\xbf\xf3\x33\ +\x18\xb9\x8e\x79\x2d\x6d\xb4\xdb\x8f\xc1\x44\x26\xce\x87\x71\x76\ +\x36\xcf\xcd\x14\x36\xa9\x50\x4c\xdb\x93\x87\xd2\xe1\x3b\x4f\xb1\ +\xdb\xcf\x9c\x09\xb5\x2d\x01\x42\x4e\x50\xd1\xb6\x6f\xd7\x99\x8f\ +\x4e\x05\xb2\xcd\x5b\x50\x8e\x44\xde\xb4\x72\xe7\x94\xcf\x0d\x1d\ +\x36\xf1\xf1\xfd\x19\x42\x75\x4c\xfb\x8a\xac\x49\xac\x4b\x46\x62\ +\x51\xaa\xcd\xfc\x0d\x11\x0d\x6d\x64\x3b\xb4\x12\x9d\x32\x09\x94\ +\x95\xa7\xf9\xbd\x51\xc5\xdb\x68\xbb\x43\xff\x76\x5a\xf3\xa9\xc7\ +\x21\xf6\xa0\xb4\x38\x50\xbc\x8e\x9a\x16\x99\x59\x2a\xc6\xaf\xee\ +\x1c\xcc\xaa\x7c\xf9\xee\x72\x5d\x39\xd1\x7e\x7b\x65\xc8\x9b\x69\ +\x43\xfb\xd8\xe1\xfa\x54\xb4\xf3\xe6\x66\x94\xea\x26\x37\x23\x2b\ +\x33\xd5\xd8\x75\x78\xd9\xe7\x74\x2c\x37\x85\x3c\x5e\xce\xc4\x83\ +\x96\x57\xee\x09\x36\xc8\xb4\x19\x5f\xa1\x9a\x88\x21\x6f\x3f\xca\ +\x14\x3f\x55\x2d\xe7\xcf\x46\x4a\xf7\x5c\x7d\xe9\xb5\x59\x2f\x06\ +\xd7\x3e\x18\x3f\xf6\x3f\xfb\x37\xe3\xf0\xe0\x4a\xf6\x1f\xc1\x16\ +\x17\xbb\x9b\x70\xc7\x7f\x14\x2d\xff\x51\x19\x74\x3e\x2e\x5d\x17\ +\xd5\xee\x77\x22\xfb\x0e\xf1\xf6\xe6\x5e\x8c\x77\xd1\x84\xdf\x36\ +\x78\xbb\x32\xbf\x5d\xf3\x74\xf9\x6f\x27\x23\x5f\x3d\x4f\xfd\x6d\ +\x19\x2f\x3d\xf7\x52\x7c\xfd\x6b\x5f\x8b\xaf\xbf\xf2\x85\xb8\xf1\ +\xc4\xa1\x3a\x6c\xce\x09\xea\xb9\x53\x91\xa7\x27\x3c\x87\x4c\x97\ +\x7f\xa1\xf6\xba\xca\xcb\x10\xa7\x43\x13\x76\x80\x73\x14\x1d\x19\ +\xdf\xca\x57\xb4\xd4\x06\xc8\xbc\xe9\xc7\x5c\x63\xda\x70\xe5\xb6\ +\xb8\x48\xc7\x45\x3c\xa1\x53\xbe\x4a\x35\xb6\x43\x89\x64\xa8\xc0\ +\x76\x9f\xc3\xab\x7e\x8c\xf8\xb4\x9d\x78\xa7\xa7\xba\xc6\xc9\x67\ +\x53\x89\x14\x55\x55\x4d\x6f\x8d\x95\x7c\x04\x19\x51\xeb\x21\x87\ +\xa3\xb5\xae\x33\xfd\x38\x3a\x1e\xc6\x83\x93\x41\x68\x6a\xe6\xcb\ +\xe3\x4c\x03\xd6\xa9\xae\x3d\x47\xb3\x79\x3c\x3c\x1d\xc6\x1b\x77\ +\x7a\xf1\xad\xd7\x7b\xf2\xd7\x71\xef\x78\x10\xa7\x8b\x61\xac\x54\ +\xa7\xba\x2a\x48\x61\xb6\x0b\x5a\x9b\xac\x1b\xa2\x25\xb3\xfa\x3a\ +\x11\xc0\x63\x4f\x4d\x0d\xa5\x30\xa4\x5c\x9a\x99\x31\x24\x73\x53\ +\xca\x41\xf3\x2e\x55\x8f\x07\x39\xc4\xe2\x1a\xf4\xc4\xe5\x7e\xfc\ +\xc0\x4b\x11\x1f\x7d\x76\x1a\xcf\xdf\x58\xc4\xde\xe8\x30\xfa\x2b\ +\x5d\x48\xd1\x23\x99\xa1\xc6\xe6\xe5\x5c\x7d\x4c\x73\x97\x9a\xe3\ +\x62\x35\x8d\x7b\x0f\x17\xf1\xea\x7d\xde\x64\x64\x80\xa6\x34\x64\ +\x84\x15\xe9\x9c\x5f\xc9\xdf\xa8\xbe\x80\x44\x9a\x54\xfa\x83\xe3\ +\xd4\x66\x84\x15\x70\x9c\x23\x36\x92\x89\x8f\x4c\x3f\x26\x93\x41\ +\xec\xec\x69\xce\x47\x3d\xd2\x3f\x71\x8d\x64\xfa\x19\xee\x28\x11\ +\x59\x9a\x6f\x03\xe4\x93\x52\xcc\x79\x98\x6b\x27\x1f\x9c\xaf\x72\ +\x90\x2c\x52\x74\x50\x82\xd8\xc7\x17\x11\x8e\x4f\x96\xaa\x23\x7e\ +\x8f\x4c\x3c\x2b\x69\xe5\xb3\xf7\xa5\x2c\x5c\xc7\xb4\xd1\x86\x25\ +\xe0\x95\xfc\x33\x8d\xac\x93\xb1\x49\x97\xc8\x92\xae\x9b\xdc\x5a\ +\xf5\xcf\x06\x3c\x73\x90\x5d\x5d\x57\x3f\xf8\xd4\x24\x76\x77\x14\ +\x29\x86\xd3\xab\xbe\xac\x4f\xf1\xd4\x09\xf3\x40\xe6\x24\x6a\xe4\ +\x38\xe0\xf7\xbf\x2e\x2d\xbc\x71\xf5\xd0\xfd\x1a\x8d\xa4\x4b\x7b\ +\x5d\x87\x26\x9c\x09\x5a\x14\x10\x59\x0e\x8e\x92\xa3\xd8\x9d\x18\ +\xa3\xa1\x5a\x56\x76\xe3\x8a\x26\x4d\x45\x86\x7c\xde\x31\x3d\x50\ +\xbf\xa5\xbf\x9d\xaa\x3f\xde\x3f\xea\xc5\xed\x87\xc3\xb8\xfd\x20\ +\xe2\xbe\xce\xab\xe3\xe9\x50\xfc\x88\x07\xa7\xeb\xb8\x7f\x3a\x89\ +\xd7\xee\xae\xe2\x2b\xdf\x1c\xc7\xed\xe3\x65\x4c\x46\x73\x5d\xd7\ +\x29\xb9\x7a\x0f\x36\x77\xf3\xdf\xcc\x50\x8c\xda\x42\x89\x8d\xf8\ +\x2c\x72\x68\x2a\x20\x19\xc9\x61\x93\xfe\x98\x33\x5c\x39\x18\xc5\ +\xd5\xab\x6b\xad\x55\x24\xe4\x4a\xc8\x5e\xee\x7e\x9c\x49\x85\xf3\ +\x99\x5d\x8c\xac\xd3\x94\xbd\x28\x85\x6d\xe2\xa0\xbc\xfc\x55\x13\ +\xdb\xa0\x70\x99\x1b\xd7\x36\x39\x0f\xdb\xe0\x3e\x94\x34\xb6\xb9\ +\x8f\x96\x71\xb1\xa1\x91\x33\x90\x4a\x8f\x76\x2a\xa1\x56\x7b\xd1\ +\xd5\xc6\x54\x4a\x65\x17\xc1\xf3\x6f\xd4\x26\x3c\xfa\xa3\x16\x71\ +\x1a\x83\xe7\x71\xfc\x60\x11\x93\xb3\x0f\xc6\x9f\xfc\x99\x7f\x25\ +\xae\x5d\xb9\xea\x14\xe7\xeb\xbd\xcd\x45\xfe\xc5\xc5\xd9\x62\x8b\ +\xb7\xc5\xb6\xeb\x6c\xb1\xc5\xbb\x87\xed\x86\xda\x16\x5b\x6c\xf1\ +\xbb\x1e\xdd\x89\xc5\x77\x3f\xc9\xb8\x48\x1b\xbe\x5c\x13\xa5\x69\ +\xbd\x16\x73\xab\xf9\x34\x9e\xfa\xc1\x8f\xc5\xdf\xff\x3f\xff\x27\ +\xb1\x8c\x93\xb8\xcc\xe7\x77\x58\x08\x7b\xf1\x8d\x54\x33\x05\xf7\ +\xe4\x1b\x9f\x45\x01\x0b\xeb\xbc\xf1\x0f\x6d\xcf\x7c\xfb\xe6\xd5\ +\x9b\x12\x9a\xa7\x43\x97\x38\xa6\xf0\xd6\x48\x7a\x87\x32\xbd\xa3\ +\x39\x64\x24\x87\x72\x14\x1c\x27\x49\x9e\x10\x45\x80\x7c\x33\xeb\ +\x56\x46\xa8\x74\x37\x5d\xc7\x2b\xc8\x50\xe6\xbe\x89\x5c\xec\x40\ +\x14\xe7\x3c\xe0\x55\x46\x39\x52\x3f\x95\xcb\x81\x35\x93\x84\xf9\ +\xc4\x65\x6f\x41\x0d\x39\x58\x90\xe9\xec\xe7\xbf\x13\x55\xad\xe7\ +\x01\xcf\x31\x45\xd6\x6a\xaa\x5d\x46\x52\x8d\x7a\x28\xb1\xda\xf0\ +\x26\xdd\xa0\x55\x50\x68\x0e\xb8\x8e\x74\x57\xc6\x50\x6d\x97\xe8\ +\x66\xc1\xa6\x55\x5d\x8a\xc9\x26\x11\x3c\xbd\xb8\xec\x8d\x62\x30\ +\x1a\xc5\xce\xb5\x69\x3c\xfb\xe9\x49\x7c\xe0\x53\x07\x71\xf8\x99\ +\xab\x31\xfe\xd0\x61\xac\x6f\xec\x46\xef\x80\xb7\x7c\x76\xa2\x7f\ +\x77\x16\xa7\x5f\x99\xc6\x83\xaf\xcb\xbd\x1a\x31\xbd\x37\x8e\xe5\ +\x7c\xa5\xf6\xd7\xca\x8e\x57\x4c\xaa\x66\x67\xd4\x31\x06\xb2\x1a\ +\xd0\x61\x6f\xd8\x2e\x38\x5d\x89\xaf\x49\x9a\xb0\xfd\x0c\x24\x29\ +\xfb\xb9\xab\xb7\x33\x88\xc1\xe5\x49\xd9\xb8\x50\xab\xf2\x34\x26\ +\x0b\x5f\x16\xde\x48\x4a\x89\x6b\x9f\x55\xac\xef\x8c\x52\x27\xa9\ +\x67\x03\x99\x41\x4d\xd2\xc0\x6c\x85\x2b\x2b\x7b\x47\xd6\x9d\x0f\ +\x0a\x6e\xd2\x35\x3e\xc3\xce\x78\xb5\x8a\xd5\xe9\x2c\x96\x6c\xa8\ +\x4d\x15\xa6\xae\x1c\x27\xaf\x6c\x38\x34\x7e\xe5\xa7\xd7\x21\x0a\ +\x10\x20\xbf\x73\x28\x67\x65\xa2\xab\xc3\x87\xbc\x99\xc5\xcd\x31\ +\x6e\x0a\x8c\xc6\x83\xd8\xbf\x11\x71\xe9\x45\xd5\xdb\x15\xb5\xdf\ +\x1e\x9f\x99\x1a\xb9\x2f\xf8\x77\x18\xa9\x57\xc9\xb1\x69\xcf\xb9\ +\x12\x3c\x4d\xaf\xb8\xf1\x68\x1d\xe3\xfd\xb9\x7f\xf7\x65\x76\x24\ +\xad\x73\xd5\xed\x02\x99\xb5\xef\x17\x91\x57\x39\x7b\x7c\xcc\xaa\ +\x30\x13\xa2\x70\x0b\xd9\xc1\xb9\x60\xc3\x68\xf9\x49\xf9\xfc\xae\ +\xae\xf2\x38\x77\xc9\x42\x41\xdf\xf8\x93\x9f\x6f\xa0\x52\x66\x9b\ +\x66\x59\xf3\x25\xcc\x99\x4f\xa0\x34\x93\x0f\xf6\xaa\x6d\x40\x91\ +\xc4\x5b\x84\xf4\x16\x20\x44\x2d\x17\x69\x3c\xf2\x76\x5d\xc9\x69\ +\x2c\xee\xef\x0c\xfd\x66\xda\x88\xb7\xd3\x26\xaa\x33\x9e\x68\x26\ +\xce\x77\x86\x94\xa0\x66\x91\x2a\x2e\x86\xe3\x54\x8b\x96\x2d\x09\ +\x2e\x90\x4f\xb1\xaa\xb0\xa0\xca\xc9\xa7\x0d\xf9\xbd\x0f\xbf\x9d\ +\x36\x2a\xe7\x86\xff\xf2\x54\xf0\x93\xdd\x22\xdc\xef\xe4\xe0\x75\ +\xd1\xb6\x63\xf6\x2c\x36\xdd\x7c\xcf\x06\x79\x8d\x93\x8c\x95\xde\ +\xa8\x2c\xe9\x1b\x13\x15\x34\xed\x31\x9e\x38\x73\xcd\xf3\x93\xe6\ +\xdc\x98\x12\xbc\x91\xa6\x78\xec\x98\x2f\x57\x71\x5b\xe7\xc5\x83\ +\xe9\x38\x7e\xe0\x5f\xff\x6b\xf1\xd2\x8f\xfd\x84\xf2\xe2\x73\x59\ +\xf9\x86\x04\xa9\x7d\x3e\x35\xa8\xf9\x6d\xf2\x1e\x45\x1b\x4f\x6c\ +\x1b\xea\xa6\x7b\x2b\xbc\x53\xb9\x6f\x13\x17\xa9\x7d\x5c\x56\xdf\ +\x23\x13\xde\xb7\xa0\xbc\xe7\xcb\x5c\x9b\x16\x7e\xb7\x99\xdf\xaa\ +\xce\xce\xcb\x5d\x28\x2b\xe6\x39\xfe\x6a\x35\x8b\x8f\x3d\xfd\x43\ +\xf1\x77\xfe\xbf\xff\x51\xc4\x6e\xc4\xc1\x65\x89\xd0\x87\xd1\x47\ +\x57\x04\x4e\x26\x06\x7d\xb2\x8c\x25\x75\xdc\x77\x74\xe9\xab\x3e\ +\xdb\xf2\xbf\x03\x18\x79\x76\xf9\x1c\x57\x90\x71\xc9\x63\x73\xd1\ +\x81\xe7\x39\x55\x11\xcf\x43\xe7\x1c\x73\x5c\xf2\x1c\xc4\x86\x46\ +\x0e\xbd\x84\x33\xce\x20\x92\xa8\xea\xec\x9d\x63\x18\xa2\xf3\xbf\ +\x86\x0a\x0a\x45\x9c\x9c\x4f\x6d\xfd\x71\x3e\xf7\x34\xeb\xe4\x61\ +\x9b\x13\xde\x52\xe3\x73\xe1\x8c\x07\x29\x5a\x90\x39\x65\x62\x13\ +\x17\x80\x88\x1a\xd9\x96\x85\x77\xd0\xd8\x70\x38\x99\xf6\xe3\xf4\ +\xb4\xa7\x3c\x22\x1e\x1e\x0d\xe2\xce\x83\x75\xdc\xbe\xd7\x8b\x5b\ +\xf7\xfa\x71\xf3\x6e\x2f\x1e\x9c\xf4\x63\xba\x1c\x06\x6f\xd0\x93\ +\x58\x57\xff\xa2\xae\xcd\xbb\x04\x37\x50\xeb\x28\xeb\x3a\xdb\xa4\ +\x11\x29\x09\xba\x49\x6c\x57\x61\x20\x4d\xb7\xa8\xcd\x9e\xa3\x64\ +\x6e\x7e\xd1\x51\xfa\xf2\x9f\xba\x31\x8c\x1f\xfc\x70\xc4\x87\x9f\ +\x99\xc6\x15\x5d\x1b\x76\xfb\x07\x8a\xd7\x75\x81\x6b\x82\x12\x73\ +\xbd\x72\x1f\x20\xad\xfa\x40\x3e\xf0\xb4\x8e\xc5\x7c\x16\xf7\x4e\ +\xcf\xe2\xcd\xfb\xaa\xd7\xd9\x32\xad\xc8\x4a\x91\x57\xfc\xe6\x90\ +\x51\x36\xa3\xea\x12\xf2\xf7\x94\x52\xa4\xb5\xb1\xc8\xc9\x55\x10\ +\x67\xbe\x08\xf8\x74\xc3\x1d\xd9\xca\xc3\x79\xee\x93\x6a\x63\xfb\ +\x92\xca\xda\x38\xaf\xa1\x8b\x8c\xaf\x12\xbe\x46\x1a\x4a\x2b\x9a\ +\x75\x04\x48\xa9\x24\xd2\xe6\xa4\x13\x62\x94\x48\xb7\x0b\x97\x09\ +\x09\xc1\xa2\x7e\xce\xd8\x50\x3b\xd5\x1c\x84\x6b\x96\x5d\x26\xc1\ +\xb1\x59\x57\xc8\x56\x5d\x45\x61\x62\x82\xdb\xcd\x12\x85\x41\x46\ +\x8a\x77\x7e\x45\xce\xe7\x90\x48\xa7\x13\x65\xcf\x87\xf4\xd4\xd3\ +\x5c\x57\x97\xc6\xa3\x78\xe9\xb9\x61\xfe\xee\x98\x53\xe0\xd4\xbe\ +\x2e\xab\x38\xf2\xb9\x84\xd1\xd7\xfa\x7c\x02\x72\x35\x8c\x83\xdd\ +\x41\x5c\x3f\x9c\xab\xb7\xac\xe3\x9e\xfa\xf3\x82\x07\x53\x78\x00\ +\xc8\x76\xa8\xac\x4a\x93\xfd\x42\xe1\x64\xa5\x8f\x87\x5a\x23\xe3\ +\x92\x6a\x98\x17\xa2\x51\x25\xa2\xd2\x49\x00\x6c\x24\x8e\x03\xfd\ +\x37\xa7\xa7\x4b\x85\xf9\x8d\xc4\x63\x9d\x7b\xf7\x35\xd7\xbb\xff\ +\x30\xe2\xb6\xce\xbb\x5b\x77\x23\xde\xb8\xdd\x8b\x37\x6e\xf6\xe2\ +\x48\xd7\xec\xe1\x68\x16\xa3\x21\x8a\xdb\xcd\xa6\x6a\x2f\xd9\x34\ +\xbe\xa1\x88\x8d\xb0\x40\x00\x79\x1d\x4c\xea\xe0\x87\x34\x09\x58\ +\xdf\x30\xae\xec\x8f\xe2\xc6\xb5\x95\xea\x98\xce\x40\xcd\x67\x92\ +\x3a\xd6\x64\x76\xad\xd6\x96\x7a\x14\xce\xa3\x91\xc8\x54\x5d\x07\ +\xec\xdb\x06\x51\xca\x8f\xa9\xb0\xdf\xf4\x67\x9c\x16\xab\x9b\x17\ +\x48\x2b\x04\xda\xce\x9e\x8e\xd0\x72\xf9\x55\x16\xd1\x98\x5e\x1d\ +\xd1\x35\x55\xf1\x00\xe4\xa6\x66\x41\x4c\xfa\x6b\x92\x6d\x1a\xb7\ +\x99\xcf\xcb\x4c\x47\x3e\x6b\x36\xd4\x8e\x67\x71\xf2\x60\x2f\xfe\ +\xc0\x8f\xfc\xf9\xf8\x81\x8f\xff\xb0\xda\x91\x7e\x97\x72\x9b\xba\ +\x51\xd0\xf5\xb7\xd8\xe2\xdb\xc7\xb6\xeb\x6c\xb1\xc5\xbb\x87\xed\ +\x86\xda\x16\x5b\x6c\xf1\xdb\x1f\xcc\x0c\xbe\x8b\xd9\x41\x4d\xfa\ +\xdd\x4f\x30\xba\x1a\xa0\xeb\x34\xbb\xfa\x72\x16\x49\x9a\x4f\x3f\ +\xee\x3f\xfd\x6c\x9c\x9e\x1e\xc5\xd7\xff\xb3\xbf\x1b\x93\xbd\x9d\ +\x98\x70\xf3\x53\x0b\x00\x3f\x71\x59\x93\x31\x2b\x27\x29\x8b\x14\ +\xaf\x56\x92\x8d\xde\xba\x40\x30\xdb\xf1\x19\x57\xc3\x5e\x20\x88\ +\xf6\x9b\x18\x30\x9b\x09\x7a\xfa\x5e\x8b\x79\x96\x0f\x33\xd3\x6f\ +\xc2\x02\xe6\x97\x65\x53\xf2\x48\x98\x54\x89\x4b\x34\x0b\x87\x8c\ +\xae\x5e\x13\xff\x28\x8a\x9e\x92\x71\x5d\x14\x13\x6a\x6c\xa9\x81\ +\xc2\x87\xe6\xcf\xb6\x2b\x01\x9f\xbf\x64\x25\xe9\x4d\x02\x1e\x91\ +\x24\xb7\xa2\xa7\x21\x9c\x26\x51\xf5\xe2\x35\xae\x1e\xf0\x2b\x4c\ +\x77\x19\xe7\xf0\xd8\xa8\x73\x11\xef\x50\x67\x53\x47\xb4\x7d\x4b\ +\x72\x74\x7f\x48\x64\xdc\x88\xf6\xec\xef\x44\x6f\x12\x71\xe3\xb9\ +\x88\xe7\x3e\xb5\x1f\x4f\xff\xc4\xe5\xd8\xfb\xc1\xcb\xd1\xff\xd4\ +\xe5\x88\xe7\x2f\x45\xef\xea\xb5\x88\xfd\x49\xac\x1e\x8c\x63\xfa\ +\xf2\x3c\xee\x7c\xe9\x34\x1e\x7e\x7d\xa9\x45\x5b\x3f\xe6\x67\x3d\ +\xff\x7c\x92\x6f\x60\xa9\x22\x5d\x7e\x29\xbe\xd0\x32\x44\xd2\x6b\ +\x51\x03\xa4\xa9\x91\xb8\x8e\x8e\x5a\xcf\xa0\xa9\x73\xd7\xb1\xf2\ +\x53\x1f\x5f\xef\x0e\x63\xc4\x1b\x6a\xdc\xa4\xa2\xcf\x6b\xf5\x0b\ +\x9d\x32\x29\xdf\xde\xf9\x12\xf0\x6a\x58\x36\x3b\x5b\xe4\xa8\x1b\ +\x39\x27\x69\x64\xf3\xfc\xe9\xca\xb8\x07\x90\x77\x0a\x64\x3e\x16\ +\xa0\x4e\x4d\xa4\xb0\x5c\x4d\xb7\xe6\x69\x6a\x3e\x53\xf4\x70\x16\ +\xab\x29\x8f\xda\x13\x53\xda\x47\x87\x66\x33\xcd\x47\xf9\x0d\x51\ +\xfc\x0a\xec\x29\x64\x83\x92\xbd\x51\x88\x46\x4a\xe5\xf4\x8d\x32\ +\x05\xb1\x98\xa7\x6d\x7b\xc3\x41\x8c\x76\x7a\x71\xe5\xc9\x71\x1c\ +\x3e\xbf\x13\xfd\x4b\x8b\xe8\xa9\x0e\xfb\xe3\x89\xaa\x4f\x1d\x61\ +\xc0\x06\x19\x37\x26\xe5\x73\xdb\xa8\xc7\x5b\x6a\x28\x83\xee\xc5\ +\x70\x77\x1d\x3b\xbb\x6c\x4b\xf5\x63\x7a\xa2\xf3\x85\x9b\x41\xeb\ +\xa1\xf2\xc8\x4d\x3b\x1b\x41\xf6\x54\x01\xc9\x38\x98\xa8\xa8\x11\ +\x89\x96\xdc\x10\x6a\x41\x05\x5e\x04\xb1\xb9\x69\xc9\xb9\x9b\x4f\ +\x11\x23\x2a\x0b\x74\x1e\xbb\x9c\xf5\xa9\x7e\x2c\x95\x87\xc5\x3c\ +\x09\x0e\xc7\x1a\xdd\x30\xc8\x12\xb8\x08\x59\x87\xd6\x81\xa8\x43\ +\x42\x25\x48\x87\xe3\x1c\x1a\xca\x4d\x06\x31\xd8\xcb\xcd\x34\x36\ +\xd6\xbc\x91\xe5\x3e\x29\x19\x6c\xaa\x69\x8a\x5f\xaa\xe8\x42\x64\ +\xfb\x97\x8c\x10\x6a\x32\x2f\x69\x38\xd0\xa8\x1d\xbe\x01\x9f\x9b\ +\x77\xca\x8f\x0d\x50\x3e\xed\x99\x1b\xcd\xb4\x9d\xa3\xf2\xe6\x0c\ +\xfd\x8d\xb1\x4e\x27\x6f\xfd\x64\x12\xca\xac\x5b\x70\xcf\xed\xaa\ +\xa7\xdf\xfb\xe6\xa5\x7a\x16\xfe\x42\x3e\x9f\x7a\x94\x0e\xd2\xfb\ +\x66\x9c\x60\xb3\x94\x8a\xeb\x45\xeb\xb2\x0a\x88\x1b\xa8\xb2\xb9\ +\xb9\x93\x6f\xa5\xc9\x5f\x2e\x34\x7e\xac\x82\x53\xe2\x1b\x77\xa6\ +\xf1\xf4\x1f\xf8\x63\xf1\x53\xff\xe3\xbf\xea\x3c\x18\x8f\x07\x45\ +\xaf\x13\xfb\x50\x6d\xe4\x58\xe2\x5a\x2b\x3b\xe8\xc6\x83\x2a\x73\ +\x9e\xff\x56\x78\xa7\x72\xdf\x01\x2e\x52\x7d\x51\x31\xc0\xf7\xd0\ +\x8c\xdf\x16\x78\x5c\xf3\x56\xff\x9d\x34\x3f\x78\x6c\x3d\x2a\xa2\ +\x19\x04\x34\x3e\xf4\x57\x71\x78\xe9\x6a\xec\xae\xaf\xc6\xdf\xfe\ +\x07\xff\xb7\xb8\x71\x75\x3f\x86\xfc\x16\xa2\xe5\xba\x6a\xda\xb0\ +\xe7\x0f\xa2\x72\xc4\x27\xec\x63\xd2\xf8\x49\xa6\x27\x11\xa4\x11\ +\x72\x0a\x9d\x0a\xc8\xfb\x93\xb1\xfa\xe3\x1c\x75\x2f\x6f\x93\xbd\ +\x25\xb8\xf9\x5c\x25\x73\x83\x08\x3a\xcf\xbb\xa6\x58\xf6\xcf\x69\ +\x73\xfe\x95\xdb\x52\xe7\x3c\x2c\x6d\x60\x9e\x0e\xe8\xe5\xdc\xf6\ +\x83\x17\xb2\x9f\xb7\xd4\xd8\x0c\x38\xf2\xef\x54\x12\xe7\x51\x46\ +\xa2\x55\x4b\xeb\x37\x36\x6d\x00\x26\x4a\x33\x04\xed\x92\x88\xe5\ +\x07\x63\x34\x1e\xcc\xe6\x6c\xa8\xf5\xe3\xc1\x49\xc4\xc3\xe3\x41\ +\x1c\x9d\x8c\xe2\xe8\x74\xe0\xb1\x23\xc7\x7d\xae\x48\x49\x93\x1e\ +\x7a\x03\xe7\x32\xce\x60\x95\xaa\x71\x2a\x53\x26\x17\x79\xce\x56\ +\xae\x33\x8d\x5c\x41\x09\xfa\x4d\x5a\x1c\xe3\x15\x3c\xd9\xf2\xd4\ +\x95\x61\x7c\xe6\x83\x83\xf8\xd0\xf3\xf3\x38\x18\x8d\x63\xa4\x79\ +\xd6\x9a\x71\x58\xc0\xc6\xb4\x56\xae\x64\xe8\x4d\x14\x95\x93\x86\ +\x5b\xaf\x34\x57\x98\x9f\xc5\x6b\xf7\xd6\xf1\x40\x65\x46\x04\x29\ +\xd7\x09\x76\xc9\xf7\xc1\x84\x93\x48\x46\xe3\xb8\xc2\xc8\xd4\xc8\ +\x6a\x16\xc1\x22\xba\x49\x0b\xd0\x9e\x23\xc0\x97\x2c\x0f\xce\xed\ +\xea\x3a\xb6\xbb\xa3\xeb\xbe\x68\xf8\x36\xb3\xa4\x4a\xfd\x00\x9b\ +\xbb\x61\x68\xfe\x5a\xb9\x2e\xe5\x23\x07\x8c\x25\x94\x91\x05\x85\ +\x47\x5c\xa9\x43\x38\xf9\xc6\x18\xb2\x08\x67\xdc\x54\xf3\xa8\x93\ +\x53\x3e\xf9\xa8\x18\xa6\x52\x45\x37\xa8\xaa\x9d\xc4\x9c\x4d\x64\ +\x54\x37\x52\x69\x1d\x24\x26\x61\x19\xea\xb8\x64\x99\x3d\x59\x04\ +\x76\x09\xbe\x5a\x8a\x39\xe4\x1a\xab\xf0\x33\xd7\x27\xf1\xdc\x13\ +\xba\x56\x31\xe7\xa4\x55\xc5\x44\x07\xe9\xad\x03\x40\xe7\x41\x97\ +\x62\xde\xae\xeb\xc5\x64\x32\x8a\x4b\x7b\x6b\x9d\x3b\x11\xa7\xd3\ +\x88\xe9\x94\xfa\x5c\xe5\xd4\x90\x24\x56\x80\xae\xac\x79\x5c\x1e\ +\x88\xf3\x31\x5d\x31\x34\xa3\xf2\xe8\xfc\x4d\xbd\x3d\xba\xe9\xd2\ +\x27\x3f\x95\x44\x24\x7d\x61\xe0\xa7\x09\x74\x5e\x6b\xae\xc0\x86\ +\xf9\x99\xce\xf1\x19\x9f\x30\x57\x2e\xa3\xe1\xca\x6f\x31\xf2\x83\ +\x93\xc5\x5c\x1f\xf0\x6b\x79\xcd\x03\xf4\xb1\x42\x82\x2c\x43\x82\ +\x76\x26\xcc\x6f\xf5\xb9\x2d\x14\x20\x6f\x36\xec\xf7\x27\xc3\x78\ +\xf2\x3a\x9b\xbc\xb2\xc3\x9b\xd5\xd9\x26\xcc\x3b\x80\xab\x4b\x87\ +\x52\x6d\x46\xaa\xe6\xd8\x66\xd2\x0d\x65\x8d\x96\x70\x2b\x62\xd8\ +\x2e\x3a\xaa\x7c\x36\xf3\x3c\x67\xe1\x53\xde\x3a\x77\x89\xab\x69\ +\x1f\x81\x3b\x1f\x76\x94\x3f\x85\xfd\xdb\x6e\x62\x7b\xe3\x57\x34\ +\x26\xa7\xd5\x05\xd5\xee\x4c\x6a\xcd\x90\xce\x41\xe9\x93\x5d\xfc\ +\xaa\x1f\x5f\x02\xcc\xa3\x3c\x66\x88\xb7\xf2\x93\x4d\x23\x8f\x19\ +\x47\x6f\xec\xc4\x87\x6f\xfc\x6c\xfc\xe1\xdf\xff\xa7\xd4\x27\x79\ +\x38\x2e\xed\xdd\xb0\x9a\x44\x66\x70\x40\xdf\x46\xec\x16\x5b\xbc\ +\x63\x6c\x7b\xce\x16\x5b\xbc\x7b\xc8\x2b\xdc\x16\x5b\x6c\xb1\xc5\ +\xef\x62\xe4\x74\xf7\x7b\x89\x32\xf9\xad\x60\xd2\xcf\xea\xab\x3f\ +\x8a\xb5\x16\x97\x3f\xf3\x6f\xfc\x95\xb8\xf1\xa3\x3f\x1d\x77\x8f\ +\xce\x62\x3a\xd7\xa2\x6d\x31\xcb\x35\xa0\xe4\xea\x67\xb5\xb8\x7b\ +\xc3\x42\x24\x27\xfa\x4c\xfa\xed\x29\x86\x99\x7e\x2e\xe6\x7c\x33\ +\x13\x47\x3c\x3c\x1e\x57\x94\xfe\xe5\x8c\xdf\x4e\x92\x9c\x16\x56\ +\x79\xf3\x9c\x54\x99\x0e\x1e\x1b\x2b\xf9\x83\xf5\x9a\xdc\xa3\x14\ +\x28\xff\x3a\xe1\xf2\x72\x4a\xff\x6c\xca\x71\xb3\xd7\x57\x0e\x16\ +\x50\x4c\xf8\x73\x15\x63\x39\x90\xf3\x7b\x1d\xca\x22\xb6\x68\x7b\ +\x1b\x20\x8f\x5f\x16\x20\xb2\x27\x55\xa6\x0e\x00\xb5\xb1\x20\x52\ +\x46\xbe\x11\x33\x1c\xf8\x13\x6d\xc3\x03\x2d\x40\x76\xc5\x63\x01\ +\xc5\x4d\xf9\xee\xd5\xad\x79\x4c\x3d\x01\xd5\xb5\xab\x98\xfa\x18\ +\x74\x25\x1f\x45\x13\x8b\x92\xc7\x89\x5e\x98\x41\x15\xa6\x35\x70\ +\x6d\xe2\x4a\xa5\xdf\x51\x4a\x99\xe5\x86\x2a\xe3\x6a\xb5\xab\x05\ +\x71\x3f\xae\x3f\xb9\x88\x0f\x7d\xee\x52\x3c\xf3\xb3\x4f\xc4\xe4\ +\xf7\x3c\x15\xf1\xb1\x67\x23\x9e\xfc\x60\xc4\xe1\x87\x22\xae\x7c\ +\x20\x62\xff\xa5\x98\x5d\x7a\x21\x8e\xe2\x46\x2c\x8f\xae\xc5\xd9\ +\x74\x14\xfd\xf9\xb8\xac\x3b\xa9\x24\xb7\xae\xeb\x3c\x6f\x82\xb4\ +\xf9\x66\x88\x7e\x57\xed\x2f\xb6\x54\xa1\x4e\xd0\xa0\x9a\x1b\x88\ +\x5b\xfb\x12\xa8\x4d\x50\x9c\xab\x44\xe5\x70\x33\x95\x85\xa3\x21\ +\x39\xba\xb8\xe5\xaa\x3e\xe4\x45\xfb\x54\x20\x68\xbf\x2a\x82\x4e\ +\x38\x59\x61\xdb\x39\x01\xfd\xda\xb7\x52\x52\x14\x01\x4e\x16\x87\ +\x0b\xb7\x78\x99\x9f\x0e\x56\x92\x69\x1c\xcd\x8d\x41\x19\x9a\xc5\ +\x29\xb6\x22\x96\x54\xa2\x29\x2b\x09\x0a\x69\x42\xb9\x28\x6e\x43\ +\x56\xb0\x78\x1e\x52\xcc\x72\xf8\xa2\x6c\x5f\x66\x00\x2f\xd3\xc3\ +\xe3\xf7\xf2\x96\x31\xde\xe3\x17\x69\x86\x31\x52\xbd\x4d\xfa\x13\ +\x9d\x97\x3b\xaa\xcb\x7d\x99\x86\xdb\x13\xcd\x67\xa9\x86\x72\x9c\ +\xab\xf2\xcb\xa6\xd1\xf0\x60\x5f\x5d\x62\x12\xcf\xfe\x70\xc4\xf5\ +\x8f\x8d\xa3\x7f\xb9\xcf\x43\xf7\xd2\x3a\x96\x2c\x4f\xd9\x3b\x77\ +\xf7\x46\x7c\xc3\x75\x22\x34\x7d\xb8\xf0\x0b\xda\x10\xf1\xd5\xe1\ +\x55\x79\x40\xbf\x3d\x27\xe1\x86\xaf\x32\xf5\x64\x95\x6f\x01\x1d\ +\x64\x8f\xdf\xac\x15\x4f\xa9\xdd\x5f\x01\xb4\xfd\x92\xb4\x78\x05\ +\x9b\xd6\x70\xf0\x4d\x0c\x20\xcf\xa7\x28\x11\x38\xfa\x1c\x1b\x6a\ +\x7c\xea\x51\xe3\x07\xbf\x97\xd6\xe7\xe6\x3b\x6f\xab\x79\xb3\x5a\ +\x8e\x71\xc4\x89\x0b\x14\xa8\x39\xb4\x39\x09\x55\xa8\x32\x09\xe3\ +\x36\x84\x2a\x2e\x60\x96\xf4\xbe\xad\xe7\x31\x2d\xc7\x35\x1e\xaf\ +\x26\x8a\xda\xc9\xae\xa9\x5e\xa0\x71\x3a\xc7\xea\xa6\x61\x1a\x95\ +\xae\xa3\xaa\x9e\x3e\xa4\xb2\xb3\x99\xe6\x3a\x90\xcf\x66\x1a\x8e\ +\x6b\x82\x6f\x6a\x21\x52\xd3\x5f\xe0\x6c\x96\x2a\x9a\xaa\xe0\xb7\ +\x97\xf2\x89\x6d\x7e\x3f\x66\xa1\x53\x4b\xd7\x15\x5d\x2e\xee\x4d\ +\x57\x31\x3e\x78\x32\x3e\xfd\x57\xfe\x52\xfe\x66\x55\x91\x69\x6e\ +\xe8\x4a\x4b\x29\xde\xb7\x89\x6a\x48\x57\x43\x86\xbf\x6f\x78\xbb\ +\x82\x7c\x67\x05\xfd\xdd\x09\x9a\xf2\xa2\xfa\xba\xa8\x89\x2f\xe2\ +\x91\x16\x47\x7f\x73\x3c\xfe\x48\xe7\xc9\x3c\xfe\xc8\xcf\xfc\xa9\ +\xf8\xd1\x0f\xfc\xf1\xf8\xea\x97\x5f\x77\x3f\xf7\xa6\x03\x3e\xe7\ +\x8c\xe4\x99\x53\x99\x1f\xf9\xe9\x39\x27\x45\x05\x64\xd5\xe5\x63\ +\x89\x68\xbd\x84\xd2\xfa\x33\x60\x4a\x3c\x5f\x2c\x63\x3e\x2f\x73\ +\x28\x47\x2a\x2f\xc5\x59\x4f\x93\x20\xd1\x14\x57\x44\xd2\x10\x12\ +\xe2\x04\x67\xbc\x63\xf8\xd3\xc9\xe6\xcd\x2e\xc5\xd5\x31\x6e\xc3\ +\x80\xca\xc3\x27\x39\x2e\x39\x1b\xf9\x55\xd1\x26\xae\x03\x78\x4b\ +\x6e\xac\x6b\x7e\x48\x56\xd7\xaf\xac\xe2\xea\xe1\x3a\x86\x3c\x44\ +\x50\x26\x4e\x94\x3d\xd5\x55\xa5\x59\xa6\x36\xd4\xd5\x5e\xb9\x09\ +\x1e\x7f\xe0\xdf\x73\x0c\x8d\x1b\xa8\x55\x6d\xc5\x52\xf5\x4f\x1d\ +\xe5\x26\x16\xbf\xf8\x9a\xd7\x1a\x3f\x2c\x04\xcb\xa9\x45\x74\xfc\ +\xd6\xfe\x96\x82\xee\xda\x02\xba\xb1\x80\xb8\x26\xbe\x23\x9b\x6d\ +\x24\x54\x06\x8a\x98\xdf\xe8\x7a\xc9\xd8\x7b\xe3\x60\x14\x1f\x7d\ +\x7e\x12\xcf\x3f\xbd\x88\x5d\x7e\x53\x53\xc6\xf7\xc7\xb3\x18\x0c\ +\xe7\x8a\x57\x6a\x89\x2e\x7d\xad\x24\xc7\xac\xaf\xbc\x5e\xa3\x9b\ +\x8c\x06\xb1\x33\x5a\xc7\x9e\xe4\x57\xeb\xbc\xa6\x32\xe3\x4e\x1b\ +\xb2\x4e\xdd\x0d\xe5\xd4\x8d\x92\x27\x5d\xfe\x0d\x2f\xfb\x56\x64\ +\x3b\xed\x48\x6f\x39\x12\x12\xc8\xb4\x76\xfe\x2b\x42\x44\x2b\x1f\ +\xca\x90\xfd\xa9\x38\x45\x11\x8b\x2e\x80\x6f\x3b\x49\x53\x15\xa5\ +\x96\xe2\x27\x5d\xa9\x1a\x53\x52\xd9\xd9\xa6\x8e\xb3\x4d\xfa\x43\ +\x82\xa3\x19\x02\x51\x3e\x54\xa2\x43\xa7\x04\x10\xad\x72\x55\x73\ +\x41\x15\x73\xe9\x28\x73\x03\x49\x94\xb9\x68\xd5\x40\xac\x6d\x00\ +\x96\x55\x2a\x79\x1d\x0b\xec\x67\x54\xb9\x92\x88\xde\x1d\xa9\xad\ +\x2f\x2d\xd4\xbe\x68\x15\x97\x3a\xf3\x83\x3c\x10\xcc\x9b\x70\xe2\ +\xfb\x04\x23\x31\x52\xac\x2b\x74\xce\xcb\x86\xfd\xdd\xbd\xf8\xf4\ +\x4b\x83\xf8\xec\xc7\x07\x3a\x7f\xb2\x6f\xf4\xd7\xfe\x76\xa4\xfb\ +\x77\xe6\x9c\xe5\x32\x9d\x8c\x52\x9c\x1a\x68\x1d\x29\x0a\xb7\xf1\ +\xdf\x0a\x2e\x47\x07\x58\x5d\x95\x91\x87\xe7\xbc\x26\xd8\xb5\xc6\ +\x8e\xa5\x8a\xb4\x62\x4a\x91\x65\xb6\x68\x96\x0d\x5d\x5d\x7d\xb6\ +\x44\x69\xd3\x22\x68\x07\x1b\x98\x2e\xe1\x0e\x69\x25\xb9\x92\xe9\ +\xeb\xdc\x51\xfd\x5e\x5d\xc7\x64\x07\x3b\xd2\x3a\x83\xce\x7c\x01\ +\xaa\x0d\xe8\xea\xda\xe2\xcd\x49\xe9\xc3\xca\xb4\xb4\xc4\xbb\x00\ +\x05\x4d\x02\xf1\x44\xf3\x9e\x2b\x39\x32\xf5\xed\x69\x0e\x4c\x74\ +\x15\xc9\x54\x1c\xa9\x27\x69\x2c\x05\x73\xef\xe6\xdf\x63\x3b\x4e\ +\xb4\xe2\x9a\xcd\x34\x47\x23\x9b\x72\x46\xf5\x3b\x68\xea\x49\x84\ +\xc9\x8e\xb8\xa1\x3e\xc5\x66\x5a\x9e\x3b\x7c\x92\x78\x2c\xfd\xd3\ +\xb8\x7f\x7b\x11\xa3\xe5\x13\xf1\xfb\x7f\xfc\xe7\x55\x77\x9a\xc3\ +\xdb\xe2\xee\x96\x73\x17\x4d\x81\xb7\xd8\x62\x8b\x2d\xb6\x78\x1f\ +\xa0\x73\x95\xdb\x62\x8b\x2d\xb6\x78\x1f\x82\xf9\x64\x75\x6f\x85\ +\xb7\x8b\x7f\x07\x78\x17\x54\x14\x54\x83\xbb\xd3\x78\xe8\x4e\x0e\ +\x1e\x7d\x59\xa0\x69\xda\x3c\x3a\x8c\xdf\xf7\xbf\xfe\x9b\xf1\x60\ +\x3a\x8a\x07\x9a\xbc\xf3\x83\xd2\xcb\xc5\x42\x93\xfb\x94\x67\x52\ +\xcf\xba\xb7\xbe\x65\xc0\x62\x89\x1b\x44\xa8\x6b\x26\xf0\xe2\x3b\ +\x9e\x45\x80\x65\xc5\xe3\xf3\x5e\xe8\x58\xb2\xa9\xb6\x8c\xf5\x8c\ +\x74\xe8\x20\x2d\x09\xe5\x44\x73\x93\xd6\x37\x84\x78\xf3\x81\x78\ +\x62\x8a\x5e\xac\xb6\xa9\x2c\x46\x59\xc4\xf0\x12\x8c\x16\xed\xcd\ +\xa7\x64\xf0\xe4\x7c\x1f\x06\x5a\x87\xfc\x64\x5f\x09\x16\x14\x31\ +\x1f\xab\x9f\xd5\x91\xb2\xe4\x5a\x4d\xb2\x57\xfc\x9a\x8a\xb5\x9f\ +\xc9\x72\x07\xc9\xf9\xb1\x30\x1c\x68\xf9\xa4\xc5\xf1\x70\x7f\x1c\ +\xa3\x83\x51\xc4\x8e\x6c\xb2\x6d\x38\x69\x28\x0b\x2f\x42\x46\x43\ +\x94\x7c\x3a\xe1\x9a\xe3\x3b\x81\xd3\xfa\x90\xae\x92\x2d\xb1\xa1\ +\xf8\x1c\x2c\xd0\x01\x8d\x95\xc8\xda\xaf\x68\x69\xb4\xb1\x68\xe7\ +\xe9\xda\x18\x8f\xa2\xb7\x1b\x71\xe5\xf9\x69\xbc\xf0\x13\x4f\xc5\ +\xa5\xdf\xf7\x5c\xf4\x3f\x7b\x25\xe2\xb9\xa7\xf8\x16\xa0\xda\xe8\ +\x59\xd5\xcd\x93\x4a\x71\x3d\x62\xf4\x6c\x0c\x9f\x7a\x26\xd6\x4f\ +\x3d\x15\xab\x2b\x57\xb5\xc8\xdc\x8b\x65\x6f\xe9\x27\x4a\x87\x68\ +\x75\x05\xb8\xf6\x33\xb7\xa6\x50\x89\xa4\xe8\x2f\x35\xd0\xc6\x25\ +\x4a\x44\xd3\x78\xb4\x23\x7e\x59\x0a\x9a\x86\xd8\x04\x0b\x65\x36\ +\x0e\x68\xce\x6e\x74\x5a\x81\xa3\x4e\x72\x19\x5d\x48\xd1\x10\xa5\ +\xae\xe4\x65\xd3\xea\x90\xff\xe2\x15\xda\x9d\xbf\x80\x08\x47\xe2\ +\x8b\x70\xff\x56\x7c\x51\x85\xad\x9c\x5b\xa9\x0b\x46\xfa\xb9\x07\ +\x5b\x13\x66\x1d\xe1\x90\x85\x74\x4c\xf1\x5d\x5e\xfb\xf6\x0c\x97\ +\x83\xff\x0e\xaf\x81\x79\x59\xd2\x4d\xb4\x3c\xfb\x94\x07\x7b\xc9\ +\x14\xd7\x5f\xaa\xce\xd6\xb1\x77\x30\x89\x3e\x9f\x25\x9c\x4c\xd4\ +\x17\xc6\xd1\x1f\xb0\x00\x97\x5b\xab\x0f\xf4\x71\x07\x6a\x7f\x36\ +\xd5\xe0\xab\xa3\x0c\x76\x25\x2b\xb7\xa3\x74\x97\x26\xb1\xff\xf4\ +\x4e\x3c\xf9\xe9\x51\x5c\x7b\x89\xdf\xd8\x53\x1d\x8f\xb8\xd1\xa9\ +\x32\xea\xbc\x4d\xbb\x29\xa4\x40\xb6\xf8\xd5\xa8\x96\x30\x6a\x88\ +\xda\xd9\x44\xe1\xb8\xf0\x8c\x1b\x04\x74\xc2\xda\xd7\xa1\xf4\xb9\ +\x0a\xdf\x3f\xee\x68\x69\xa9\x44\xf7\xdc\x87\x3e\x1f\xbf\x01\xd4\ +\xca\x91\x75\xb7\x5d\x0a\x5b\x0e\x05\x72\xdc\xd8\x60\xe3\x6a\x32\ +\x8c\x01\x6f\xa5\x69\x0c\xe1\xed\x48\x36\xa9\x7d\x43\xbb\x93\x49\ +\x9b\x36\xb1\x91\x7f\x19\x5f\x88\x4c\xaa\x10\x85\xdd\x85\x6f\x24\ +\x97\xb8\x2a\x52\xcb\xc6\x78\xca\xb8\xca\x6f\x08\xd6\x4f\xa0\x82\ +\xe6\xfc\xa0\x1f\xf8\x53\x8d\xa5\x2f\x08\xf0\x4b\xf2\x02\x4b\x66\ +\xb5\x03\xa5\x61\x3c\x67\x03\x81\xcf\x3c\xfa\x53\x8f\x38\x8f\xff\ +\x29\x92\xb9\x90\x86\x7e\x26\x26\xaa\xe5\x61\x2a\x23\x35\x7e\x6e\ +\x6c\x0a\x5c\x2b\xd0\xa5\xfc\x11\xbd\xb3\xea\xc7\xf1\x69\x2f\x7e\ +\xe2\x5f\xfb\xab\xf1\xc2\xc7\x3f\x99\x7c\x0d\xcc\xb2\x5e\x2a\x50\ +\x80\x86\xec\x53\x75\xd4\x4f\x28\xce\xee\x22\x9c\x8f\xeb\xa6\xfb\ +\x3e\x60\xb3\x82\x1f\x8f\xef\xb3\x99\xef\x3b\x5c\xd4\xbc\xd4\xd1\ +\x79\xfe\x45\xf5\xf6\xb8\xae\xd1\x85\xbb\xc9\xa6\x20\xbd\x8c\xbe\ +\xba\xec\xcd\xe2\xaf\xfc\xe9\xff\x79\xac\x1e\x5e\x8e\x37\x5f\x7b\ +\x18\xcb\xa1\xe6\x3e\xee\xf3\xd9\x17\xed\x73\x3e\xf1\x36\xbb\x4f\ +\x25\x78\x90\x56\x6a\xb5\x96\xcb\x90\xfd\xea\x01\x92\xf8\x46\xab\ +\xfe\x96\xd2\xb3\x58\xf0\x10\x54\x6e\x32\x53\x9e\x73\x29\x37\x70\ +\x51\x71\x39\x47\xf2\x3c\x64\x5e\x95\x73\xab\x7c\x73\x17\xe9\xea\ +\xde\x02\xe7\x44\xce\xe7\xdb\x44\x29\x22\xe3\xc4\xa1\x90\x7c\xc6\ +\x4e\x03\x10\x6f\xe8\x3c\x7d\xb5\x1f\x87\xbb\x83\x18\x31\xf6\x74\ +\x90\xf2\x55\x63\x2a\x70\x88\x43\xd7\x6d\x80\x76\xa8\x94\x08\x0d\ +\x22\xf9\xc6\x0c\x5b\x12\x6a\x25\xb1\xea\x33\x0b\x0c\x80\x16\xd5\ +\xa1\x19\xaf\x7d\x3c\x8f\x96\x5b\xc4\x1a\x38\x7d\x39\x9e\x4f\x9c\ +\x41\x94\xb7\x51\xf8\xb4\x1f\x14\x6f\x8d\x0d\x98\xaf\xca\x1d\x8e\ +\xc6\xf1\xd1\xe7\x76\xe2\x63\x2f\x8c\xe2\x89\x4b\xc3\xd8\x19\xf1\ +\xb6\xf2\x22\xe6\x7c\x12\x73\xce\x96\x84\x34\xa9\x5d\xfa\xfc\xe6\ +\x94\xae\xc3\xde\x38\xc1\x18\xab\xd7\x38\x2b\x12\xc7\xdb\xe2\x7b\ +\x9a\x87\x0e\xcb\x86\x6d\x76\xbd\xec\x0f\x8d\x2f\xe7\x54\x4a\xeb\ +\xcd\xb4\x15\x0f\x49\x65\x4c\x9d\x9f\xd0\x1f\xbd\x71\x0b\x57\x51\ +\x35\x36\x91\xfc\xf6\x92\x92\x7c\xbf\xed\x7f\x0e\x59\xaf\x48\xcb\ +\x51\x6e\x5c\x79\x7b\xc9\x69\x53\x41\xc7\xe9\x80\x2d\xa6\x91\x4f\ +\xed\xec\x65\x79\x9e\xd0\xc4\xe9\xa0\x68\x34\x71\xee\x35\x01\x5c\ +\x41\xb5\x2b\x45\x9d\xc8\x61\x03\x66\x09\xba\xac\xb0\x70\xf5\xa0\ +\x7a\x21\x3f\xab\xa4\x8e\x0c\xf8\x38\xe8\x36\x23\xa7\xb1\x0d\x5d\ +\xb9\xe4\xa7\xde\xf2\x47\x9b\xc9\xfe\xab\xfb\x9a\x3f\xef\x49\xbb\ +\xf5\xd2\x0f\xe4\x54\x75\xfc\x16\xad\x3f\x9f\xad\x80\xaf\x5e\x45\ +\x87\x7f\xe7\x4a\x72\x6a\x7d\xf5\x5d\x31\x06\xf3\x18\xa9\x7f\x7c\ +\x50\x53\xed\x1f\xfe\xf8\x2a\x9e\xbe\xb2\x50\xba\xbc\xfe\x61\x2b\ +\x9b\xa4\x4e\xab\x3f\x13\xa0\x7a\xe6\xe3\x38\xf3\xb3\x8c\xe6\x57\ +\x01\x21\xe3\x3b\xd8\x08\x24\x6a\x69\x6b\x89\xb1\x2d\xff\x92\x97\ +\x6d\x42\x39\xa0\xe1\xab\x44\x56\xac\x10\xf3\x0d\x73\xdf\x02\x92\ +\xed\x66\x5b\x8b\x01\x6a\xb9\xe8\x13\xd5\xee\x3c\x93\x7b\x31\x1e\ +\xf6\xe2\xfa\xc1\x20\x0e\x0e\xa8\x57\x47\x19\xf5\x81\x1c\xd0\x61\ +\x3b\x55\x1e\xe4\x31\x38\xe0\x4b\x02\xda\x75\x54\x84\x8b\x88\x88\ +\x4e\xea\xca\x84\x27\x3a\xcb\xaf\x73\x9a\x87\xc8\x98\xcb\x11\x95\ +\x12\x1b\x79\xd6\x40\xed\x1b\xfe\xa7\x3c\xf2\xcb\x69\x98\xf3\x26\ +\x77\xbe\x22\x8e\x4c\x7a\x19\xee\xa0\xc6\x73\x28\x49\x4a\x79\x71\ +\x94\x43\xd0\xa0\x57\xcb\x44\x7f\x67\xa3\x71\xa9\x7e\x35\x3d\x5a\ +\xc5\xe9\x9d\x9d\xf8\xfd\x3f\xf6\x4f\xc6\x07\x5f\x78\x3e\x16\x4a\ +\x97\x6f\x2c\x83\xea\x03\x95\x84\xfa\x69\x2a\xe4\xc2\x92\x6d\xb1\ +\xc5\x16\x5b\x6c\xf1\x1e\x63\xfb\xc9\xc7\x2d\xb6\xd8\xe2\xb7\x37\ +\xea\x9c\xf2\x5d\xc6\x77\xaf\x16\x0d\x4c\x74\xf1\xbb\x74\x07\x0e\ +\xf2\x04\xdd\x32\x2e\x3f\xf3\x42\xac\x46\xfd\xf8\xc2\x7f\xfc\xff\ +\x89\x4b\x97\x76\x83\x67\xad\x49\x41\x2c\x6b\x3e\x8b\x96\xc9\xb4\ +\x17\x7a\xcd\x64\x1a\x3f\x97\x32\x1b\xab\x23\xc5\xe7\xd4\xbd\x4c\ +\xe6\xeb\x9c\x5b\x82\xfe\xd4\x87\xfe\xcd\x42\x4e\x3a\xc9\xa3\x8a\ +\x98\xe7\xf4\x1d\x38\x3e\x6f\x94\x38\x06\x82\x89\x3d\x13\xff\x54\ +\x64\xf3\x88\x72\x08\xdf\x8b\x55\x02\xe9\x01\xb3\x1b\xaa\xba\xd6\ +\x83\x20\xad\xd7\x13\xf8\x0e\xe0\xda\xe2\xf9\x66\x53\x9f\x45\x47\ +\x72\xb0\x87\x1b\x36\x6c\xa4\xf9\x86\x31\xbf\x0d\xa6\x15\x8d\x92\ +\xa4\x89\x16\x42\x07\x4a\x29\x45\xd6\x0b\x2c\x47\xd5\x83\x5d\x97\ +\x79\x1e\xc9\x4c\xfb\xc1\x79\xa1\x4e\xf8\xc2\xf4\x05\x1b\x71\xd8\ +\x02\x38\x4a\x73\x51\x5e\x17\x79\xb5\x00\x6c\x52\x52\x5e\x3e\x3d\ +\xb4\x1e\x8e\xe2\xd2\x93\xd3\x78\xe1\x8f\x3c\x15\x4f\xc8\xad\x3f\ +\x7e\x35\x7a\x57\x9e\x88\x98\x3c\xa9\x7a\xb9\x24\xc7\x66\xca\x48\ +\x89\x79\xf3\x68\xa4\x7a\x9b\xb0\xb6\x8c\xd5\xc9\xfd\x58\xdd\x3e\ +\x8b\xd9\xbd\x45\xac\x66\xe8\xd6\x82\x53\xba\x7d\x6f\x49\xd8\x30\ +\xcb\x01\x0c\x68\xb9\x0d\x05\x61\x3b\x7d\x30\x5a\xa9\x4c\x53\x93\ +\xd7\xea\x34\x44\xd3\x4e\xf4\xdd\x1e\xbf\x5b\x71\x30\x8e\xd1\xbe\ +\x6c\xf4\x4d\x44\xda\x54\x3c\x9a\x94\x83\xd3\x2a\x01\x8b\xd9\xda\ +\xcf\x00\xed\xda\x28\xa7\x96\xb2\x3d\x7d\x5e\xc8\x21\x4a\x3e\x4d\ +\xb6\x25\x69\xd7\x8e\x4a\x57\x95\x16\x6e\x84\x8a\xed\x55\x89\x56\ +\xd4\xeb\xe9\x3c\x56\x0f\xa7\xb1\x3a\x65\x93\x1b\x1e\xb2\xf2\x6b\ +\x7e\x49\x72\xac\xff\xe5\xf0\x78\x64\x1e\x42\x11\x6e\xc4\xd1\x49\ +\xc8\xff\x70\xe5\x64\x5b\x4f\x23\xc2\x70\xb2\x88\xdd\x4b\xbd\x78\ +\xe6\x93\x57\xa2\xff\xf4\x20\x7c\x57\x68\x8f\x6f\xea\xc8\xf5\x9e\ +\x56\x73\xcb\x8d\xae\xe8\x04\xe7\x2d\xb5\x1d\xf1\x14\xcf\x4d\x63\ +\x5e\x43\x1b\xf2\xb8\xee\x42\xfa\x54\xc7\x83\x75\xa8\x0b\xc5\x60\ +\x38\x8b\xd9\x71\xc4\xf4\x61\xde\x70\xce\x37\x05\x90\xaf\xf9\xd2\ +\x56\x22\xe5\xa8\xe3\x1c\x87\x7c\xd8\x40\x11\x69\x5d\x8d\x17\x91\ +\xb4\x0e\xa8\x94\x4f\xd8\xce\x74\x9e\xb7\x8e\x29\xbc\xa4\x1d\x9b\ +\xb4\xc3\x19\x97\x9c\x0c\x3f\x82\xa2\x3f\xd1\x15\x48\xba\x89\x56\ +\xd7\x62\xc3\x6c\x3d\x92\xbe\xc9\x30\x86\x7b\xaa\x57\xde\x50\xe3\ +\x6d\x84\xf1\x30\xf8\xac\x26\x9b\xf4\x46\xc9\xc8\x69\x0b\xba\x9a\ +\x0d\x18\x2b\xf7\x40\xa1\x23\x79\x5e\xb0\x13\x46\x0a\x57\xcb\xc1\ +\xb8\xc5\x46\xde\xe6\x9b\x69\xfa\x2b\xf1\xbe\x31\x53\x36\xc2\xbc\ +\x69\x05\xb3\x1c\x6a\x1f\x2e\x5e\x02\x79\xf5\x51\x9f\x37\xf2\x79\ +\xa3\x6d\x39\x57\x58\xe3\x22\xfd\xb9\xdc\x4b\x35\xdc\xed\x8b\x43\ +\x49\x7d\x8b\xa7\x34\xb6\xaa\x4b\x79\x50\x1f\x62\xf9\x06\x13\xf9\ +\xab\xbc\x0f\x57\xfd\x78\xe3\xce\x59\x3c\xff\xc7\x7e\x3e\x3e\xf7\ +\xd7\xff\xf5\x8c\x93\xc1\x43\x1b\xed\x93\xb8\x2d\x5f\x73\x2c\x8c\ +\xc6\x07\x5d\xfa\x22\xb8\xe7\x35\xf4\x7b\x8e\x8b\x4c\x3e\x8f\xf3\ +\x71\x84\xbf\x0f\xa6\xbe\xaf\xf1\xb8\xfa\xf8\xae\xea\x49\x89\xe9\ +\x64\xa5\xa3\xa5\xc7\xf9\xbb\x8a\xbd\x83\xc3\xb8\x3a\x7c\x3e\x7e\ +\xf1\xef\xff\x3f\xe3\xe9\x27\xf6\x63\xb4\xab\x3e\xb9\xa0\x5f\xaa\ +\x2f\x49\x90\x31\x86\x5e\x95\x69\xd4\xcb\x51\xa3\x3f\x5f\x9b\x60\ +\x39\x84\x97\xa1\x26\x0c\x20\x9c\x58\xff\x4a\x48\xff\xf4\x90\x49\ +\x58\xe7\xb2\xa7\x46\x5d\xf9\x0d\xda\x62\xe5\xd0\x78\x26\x3c\xee\ +\x75\xf2\x4b\xa0\x38\x6d\xde\x10\xbe\x08\x17\xb0\x37\x58\x9d\x80\ +\xd5\x35\xe1\x41\xec\x8c\xd9\xcc\x5f\xc5\xd1\x59\x3f\xe6\x5c\x26\ +\xea\xa4\xc0\xa8\x82\x94\xa3\xab\xb1\x4b\x83\x12\x6e\xc4\xdb\xf8\ +\xa4\x28\x4b\xb2\x33\x9c\x04\x74\x86\x0b\x2c\x56\xc7\xd4\x8b\xb0\ +\x21\xdd\x41\xc7\xba\x73\x22\x35\xe8\xd6\xa2\xb1\x60\x68\xd0\xf3\ +\x07\x41\x45\xef\xed\xf4\xe3\x03\x37\x76\xe3\x07\x3e\x3a\x89\x67\ +\x9f\x5f\xc7\x8e\xc6\xe3\x15\x1b\xa5\x53\x6e\x90\x4f\x34\xb6\x69\ +\x5e\x25\xbf\xa7\x6b\x29\x9f\x75\xec\xf7\x96\xa4\x44\x5b\xd9\x54\ +\xc8\x71\x9a\x4d\x31\x0d\xd5\x31\x9f\xcd\xe3\xe5\xbb\xfe\x00\x44\ +\x36\x9f\xb3\x94\x60\x6b\x48\xa6\xae\x6f\xef\x28\x6d\x19\x72\xc5\ +\xcd\xb2\xd7\xd2\xf8\x08\x03\xbe\x03\xc9\xc7\x2b\x94\xfd\xa1\xae\ +\x1b\x07\x97\x34\xa7\xf2\x83\x4a\x4a\x8d\x93\xfa\xda\x17\xad\x93\ +\x43\x39\x0d\xea\x38\x6d\xba\x71\x3a\x54\x43\xea\x45\x41\x0e\x1d\ +\x29\x5b\xb4\x39\x0e\x5e\x6b\x77\xe7\x60\x64\x9a\xa4\x70\x67\x67\ +\x8b\x38\x3d\x5d\xaa\x7f\x29\x0d\x97\x99\x1a\xdf\x11\x43\x17\xd2\ +\x30\xfd\x16\x60\x26\x55\xb0\xd0\x8f\x24\x11\x65\x5b\x6a\x3a\x90\ +\x82\x1c\xed\x4a\x04\x9f\x3a\xe4\x37\x5a\x87\xbd\x79\xbc\xf0\xc4\ +\x28\x9e\xb9\xc1\x03\x34\x3c\x56\xc6\x06\x07\x73\xd0\x92\x8d\xe4\ +\x99\x97\xf4\x79\x9d\x0b\xa6\x77\x58\x4e\xf3\x33\xc6\xca\x2b\xdf\ +\x3c\x64\x3b\x5d\xa9\xc4\x3a\xdc\x5b\xc5\xc1\xee\x22\x1e\xa8\x6c\ +\x0f\x4e\x27\x2a\x9b\xc6\x20\x6c\xb2\xcb\xbc\x21\xac\x1b\x15\x0a\ +\xa5\xdd\xd9\x2e\x89\x8c\x30\xa7\xd8\xeb\xc8\x4a\x5f\x84\x36\x71\ +\x82\x0c\x0a\xcf\xeb\x21\x82\x35\x4c\x84\x69\x95\x4b\xae\xda\x61\ +\x14\xa2\xca\x36\x7e\x39\x94\x60\x41\x69\xb5\x86\xa9\xf9\x44\x43\ +\x0f\x62\x3c\xee\xc5\x8d\xc3\x61\x5c\xb9\xc2\xd7\x14\xe0\x51\xa9\ +\x4a\x55\x1a\x61\xa3\x38\xdd\x00\x3a\x5a\x45\x45\xbf\xd2\x96\x74\ +\x8e\xaa\xee\x02\x10\x9f\x25\x53\xfb\xd2\x28\xca\xdc\xa1\x22\xff\ +\xf8\x6a\x54\x0c\xff\x65\xbe\xe4\x51\xaf\x86\xed\x28\x61\xf2\x8c\ +\xc7\x2b\x12\x24\x6f\xaf\x15\x82\x72\x9b\xba\x6f\x79\x36\x25\x7d\ +\xa9\x7b\xb5\x9e\xc4\xf4\xf4\x34\x1e\xbc\xd2\x8f\xcf\xbc\xf0\x87\ +\xe2\xe7\xfe\xf0\x3f\x25\x69\xf5\x47\xdb\x5c\xcf\x8e\x4e\x01\x9a\ +\xfa\x91\x5f\xc9\x06\x8f\x30\xb6\xd8\xe2\x2d\xb1\xed\x31\x5b\x6c\ +\xf1\xee\x61\xbb\xa1\xb6\xc5\x16\x5b\xfc\xf6\xc7\xf7\x60\x66\xf0\ +\xdd\xa9\xac\xa9\xbb\x5a\xa0\x73\x7a\xfd\x08\x7a\x83\x58\x4d\x4f\ +\xe3\xc5\x9f\xfa\x7c\xbc\xf6\xab\xbf\x16\x77\x7f\xf5\x0b\xb1\xbb\ +\xbf\xa3\xe5\x09\xdf\xb9\xd7\xb2\x80\xd5\x8f\x26\xe4\x2c\xec\xaa\ +\x86\xea\x37\xda\xb4\x88\xa8\x7c\x16\x72\x88\x33\x01\xf7\x42\x43\ +\xcc\x9c\xcc\xeb\xcf\x34\x7c\x45\xf0\x64\xae\x52\x39\x2c\x2a\x6f\ +\x34\x90\xa0\xa6\x4d\x3e\x80\x5d\xa4\xbd\x48\x37\x25\x86\x79\x1c\ +\x8a\x64\xf7\x58\x97\x04\xd5\xab\x48\xad\xe4\xa5\x7f\xc8\x3c\x10\ +\x55\xe8\x9a\x57\x0d\x66\x7c\xde\x20\xc0\x87\x97\x30\x2d\xbb\x59\ +\x3e\xbb\x4c\xa2\xf3\x2d\x0c\xc8\x8e\x20\xe9\x7d\x2c\x07\x97\xa1\ +\xa4\xef\x2a\x04\x8d\xd0\x26\x9a\xf2\x74\xe0\xa2\x3f\x0e\x8f\x8a\ +\x27\xce\xf1\x53\x6f\x47\x53\xb3\x20\x2b\xbe\xa2\x07\x3c\x35\xdb\ +\x1f\xc7\x7a\xbc\x88\xc3\x27\xb5\x68\xfd\xd1\xab\xf1\xdc\x1f\x7f\ +\x31\x7a\x1f\x3d\x8c\xde\xfe\x53\x12\x60\x53\xe5\x50\x6e\xac\x04\ +\xbc\x99\xb4\xa3\xe4\xa3\x12\x1e\xc7\x48\xe1\x9d\xbe\x16\xbf\x77\ +\xe6\x71\xf2\xf2\x69\x2c\xb5\xf8\xe7\x09\x75\xd7\x97\xea\xc9\x26\ +\xd5\xf6\x37\x1e\x2d\xd9\x39\xb3\x1f\x41\xea\x80\x80\x6a\x6b\xcb\ +\xda\x09\xc8\x79\x03\x45\xae\x37\x1e\xc4\xe0\x70\x12\xc3\x1d\xd9\ +\x48\x1f\x2f\xce\x71\x55\x06\xdb\x52\x85\xf5\xda\xbc\x12\x34\x10\ +\xc3\x57\x31\x5a\x3e\xe9\x49\x55\x1d\xc8\xfe\x91\x0a\xe0\x15\x19\ +\xc2\xc4\xb1\x59\xe9\xbe\x52\xb5\xa4\xe2\x9a\x66\x35\x9b\xc7\xf2\ +\x78\x1a\x8b\x93\x79\xe6\xa5\xce\x55\x34\xa6\x0e\x13\x02\xd5\x89\ +\x0a\xeb\xed\xc0\xe1\xd4\xdd\x29\x51\x03\x73\xce\xb3\x9d\x46\x0a\ +\x15\xb1\x52\x9f\x1f\xf0\xc3\xf7\x83\x69\x3c\xf5\xcc\x4e\x5c\xfd\ +\x21\xb5\xf3\x0b\x57\x22\xae\xa9\xdd\xf7\x5f\x88\xd8\xfd\xa0\xfc\ +\x17\xd5\xec\xa2\x47\x4f\x6b\x4d\x8e\x7b\x46\xf5\x2a\x99\x21\x1b\ +\x96\x83\xd4\xc7\x49\x11\x0b\x6f\xb2\x31\x1a\x8c\x76\xa6\x7e\x4b\ +\xe3\xf4\x7e\x2f\x66\xb3\xd3\xe8\xcd\x46\x12\x2b\xed\xe6\x43\x1a\ +\xd5\x84\x69\x93\x86\xd1\xe2\x5c\xd0\xb0\x78\x92\x52\x03\x85\x2e\ +\xea\xdd\x9c\x06\x19\x4c\xe9\x4d\x3a\x7d\x27\xe8\xb4\x0d\xc7\xf3\ +\x55\xf5\x28\x03\x90\x2e\x93\x36\xa5\xa0\x7b\x0d\xd4\x6e\x43\x69\ +\xdf\xc9\xdf\x4d\xf3\xdb\x69\xe3\xa1\xaa\x69\x10\xbd\x11\x37\xe3\ +\xd5\x0f\xc9\xe4\x9c\xa1\x35\x84\xdf\x98\x53\x02\xa9\xff\x51\x23\ +\x9c\xa6\xca\xd9\x18\xfc\x02\xf1\x1c\xa5\xb6\xf5\x5b\x29\xbc\x1d\ +\x37\xe2\xf5\x5f\xd9\x00\xcf\x69\x04\xb5\x87\x3f\xf3\xb8\x52\xdb\ +\x79\xd3\x0a\x1e\x69\xb9\x39\x98\x22\x89\x0c\xf8\xcd\x65\x77\x1b\ +\xf5\x1b\xdf\x10\x52\x1a\x3e\xf3\xc8\x66\x1a\xbf\x91\x24\x9e\xf3\ +\x95\xe3\xf4\x37\x14\xed\xb1\xdf\xfd\xc3\x41\x63\x00\xaf\xd8\xe2\ +\x9b\x4d\x7e\x3b\x6e\x1d\x67\xd2\xf5\xfa\xf1\x22\x86\xd7\x3f\x10\ +\xbf\xff\xdf\xfd\x5f\xc6\xf8\xf0\x4a\xf0\xbb\x69\xc8\x71\x13\x0b\ +\xed\x1c\x13\x19\x4e\xad\x5d\xbf\x4a\x54\xff\x22\x54\xf9\x2e\xde\ +\x4a\xfe\x7b\x80\xef\x24\xbb\xf7\xd8\xc4\xf7\x25\xce\xd7\xc1\x45\ +\x4d\xf9\x6e\xa2\x9e\xaf\xf2\x34\x5a\x6a\x88\x9b\xc6\x87\x5e\xfc\ +\x64\x7c\xf3\x1b\xaf\xc4\x17\xbf\xfa\xcb\xf1\xe4\x13\x57\x62\x39\ +\x58\xa8\x4f\xeb\x5c\x43\x14\x79\xdb\xa4\xbe\x6a\x06\xac\xec\x9b\ +\x75\x53\xad\x8c\x84\xe2\xa7\x4f\x5c\xa5\x0c\x8b\xeb\xe0\x01\x41\ +\x9e\x48\x64\xf3\x0d\x33\xa2\x38\xa4\x48\x26\xe4\xd0\x04\x1a\x34\ +\x5a\x91\xe5\x2f\x13\x9b\xd5\x4a\x77\xd3\x55\xbf\x05\x9c\x8b\x62\ +\x37\x24\x4b\xc0\xb2\x3a\xe0\xe7\xf5\x98\xff\x7e\xec\xee\xf2\x09\ +\xcb\x7e\x9c\x9e\xf2\x96\x0d\x9f\xff\xae\xd2\x15\x95\x4e\x8b\xa9\ +\x9f\xca\x49\x6b\x41\x2b\x0f\xe5\xf2\x94\x50\xf5\x2b\x2a\xe5\x7a\ +\x33\xd5\xc6\x55\xc0\xc9\x92\x77\xe3\x2a\xfd\xa8\x3c\x68\xb8\xae\ +\xc3\x4c\x5d\xd1\xd8\xe9\xf9\xdf\x3a\xf8\xd9\xd1\xe1\x7a\x10\x1f\ +\x7c\x7a\x18\x1f\xfe\xc0\x20\x9e\x7c\x66\x15\x7b\xbb\xe3\x38\x9b\ +\x69\xee\x3d\xdf\x89\xc5\xe2\x5a\x8c\x0e\x5e\x8a\xc9\xfe\x07\x25\ +\xfb\x8c\xda\x56\x63\xdd\x7a\xa2\x7a\x9b\xeb\x9a\xcc\x53\x49\x3c\ +\xa0\x90\x6f\x19\x79\xd8\xd5\xf8\xca\x5b\x8b\x7c\x52\xf3\xe5\x9b\ +\x2b\x7f\x1e\x90\x3c\xc9\x8e\xaa\x26\x50\xe7\xa5\xb6\xac\x32\x81\ +\x68\xbf\xd9\xd4\x70\xca\xb1\x44\x93\x8c\xbe\x99\x33\xf9\xac\x11\ +\x6b\xd2\x81\x10\x6f\x17\x1e\x5c\xd2\x9c\x8a\x87\x45\x92\xd9\xf8\ +\xe5\x50\x78\xd2\xe3\x5d\x40\xe9\x29\x75\x54\x8f\xf9\x47\x3e\x3a\ +\x98\x97\xce\xc1\xc2\x03\x35\xbe\xd1\x67\xa9\xae\x48\x96\x83\x70\ +\xc6\x47\x4c\xcf\x96\x71\x72\xb2\x8a\x85\xae\x23\x9e\x9f\x17\xe9\ +\x4c\xd9\x81\xd8\x3e\x77\x1c\x71\x2e\x96\xfa\x2a\x75\xd4\xc6\xd5\ +\xdc\x85\x42\xa4\x27\x39\xb5\x45\x66\x23\x19\xf9\x9c\xff\xe3\x98\ +\xc5\x47\x9e\x9d\xc4\xa5\x03\xcd\xa9\xf9\xec\x38\x6f\x1b\xaa\xbf\ +\xf7\xfb\x9a\x33\xcb\x0d\x46\x4f\xc4\x60\xf2\x4c\x0c\x77\x5f\xd0\ +\xfc\xf4\x69\x5d\x92\x0f\xad\x4f\xb3\x24\xb5\x2d\x5f\x77\x50\x40\ +\x7a\x73\x03\x95\x87\xac\xfa\xb1\xbf\xb7\x8e\xfd\x49\x2f\xee\x9c\ +\xf4\xe2\xe1\xd9\x44\x63\xca\x5c\x69\x6a\x3b\xf8\xe8\xfc\xf1\xdd\ +\xe4\xe6\x77\xcf\x20\x38\xd0\x99\x13\xa8\x54\xcb\x69\x61\x5e\xc3\ +\xac\x44\xf1\x4b\x7e\x2d\x4a\xb8\x1c\xce\x49\x37\x44\xd5\x57\xc4\ +\x8c\x4a\x67\x90\x5c\xbb\x28\x9b\x69\xc4\xe3\x34\x8f\xb9\xb6\x3f\ +\x8c\x6b\x57\xe9\x8b\xc4\xe7\x6c\xa0\x41\xe9\xc8\x1b\x5a\x4a\xfa\ +\x72\x48\xd4\x01\x53\x9e\xa3\x6b\x94\xfd\xf3\x36\xa4\x10\xbf\xbb\ +\x4b\x6e\x03\xcd\xef\xea\xef\x30\xdb\xa5\xc4\x26\xc4\x68\x78\x9e\ +\xd2\xa8\x1d\xcd\xa1\x4d\x35\x5f\x12\x69\x5f\x71\xc9\x2f\x5a\x6a\ +\xa2\xea\x77\xd1\x9c\xa4\xe5\x80\x5f\x1b\x5c\xc0\x16\xe6\x48\xee\ +\x33\xbc\xeb\xaa\x31\x64\xb9\x3a\x8b\xfb\xb7\x23\xae\x2c\x3e\x1d\ +\xff\x83\x3f\xfe\x97\xe2\xf0\xe0\xb2\x92\x61\xb3\x8e\x2e\x74\x49\ +\x5c\xe1\x60\xab\xb3\xc5\x23\x8c\x2d\xb6\x78\x5b\x6c\x7b\xcd\x16\ +\x5b\xbc\x7b\xd8\x6e\xa8\x6d\xb1\xc5\x16\xef\x0f\x30\x01\xfd\x4e\ +\xaf\xf0\xef\xd2\xcc\x00\x35\xd5\x7d\xf7\x28\x13\xec\x77\xa8\x8d\ +\x9b\xb9\xab\xe9\x2c\x5e\xfc\x89\xcf\xc6\x2f\xfd\x87\xff\x69\x0c\ +\x4e\xee\xc5\xc1\xee\xc8\x9f\xc6\xd1\x4a\x45\x5a\xfa\x9e\xdc\x43\ +\xb9\xaa\x98\xc0\x2b\x8e\x85\x04\x77\x88\x58\x52\x7a\x81\xca\x4d\ +\x63\x2f\x46\xdb\x49\xb9\x17\x16\x4e\x24\x5f\xab\x05\xfe\x2c\xca\ +\x06\x86\x6f\x2c\x90\xc6\x2c\x62\xec\x4a\x2e\x24\x31\xdf\x84\x00\ +\x17\x4e\x73\x53\x4a\x8c\xe4\x39\xf7\x22\xcb\xa1\xe3\xa7\x40\xfa\ +\x99\xa4\x81\xd5\x56\xc7\x01\xdf\x72\xb2\xb2\xe8\x4f\x99\x12\x87\ +\x47\x19\xa9\x13\x2f\x48\x93\x5d\x6f\x0c\xb0\xd8\x35\xc9\xef\xc7\ +\xf1\x8d\x1e\xc5\x3a\x3d\xc0\xe8\x4a\xe3\x97\xb2\xb7\xa8\x91\x2d\ +\xc8\x01\x6e\xe6\xd4\x22\x4d\xe4\x58\xf0\x68\xd2\xc4\xb7\xcb\x6f\ +\x50\x74\x93\x47\x9f\x9b\xe7\xe3\x88\xd1\x32\x46\x97\x17\xf1\xd4\ +\x27\x77\xe2\x89\x3f\xfa\x74\xec\x7e\xfc\x6a\xc4\xce\xb3\xe2\x5f\ +\x96\xbe\x89\x84\xd9\x3c\xdb\x95\x63\x35\x8b\x63\x43\x4d\x19\xad\ +\x79\xd2\x56\x7d\x69\x39\x88\xf5\xfd\xb3\x38\x7e\xf9\x6e\x9c\xdd\ +\x3f\xd1\xe2\x6e\x19\x2b\xd5\x51\xed\x3d\xc0\xe5\xc2\xef\xd8\xe7\ +\xfa\x2c\x44\xc3\xae\xbc\x96\x28\x71\x3a\x36\x09\x5a\x5e\xf5\x7d\ +\x03\x4f\x9d\x7a\x30\x96\x3d\x97\x27\xf2\x65\x27\x6f\xe4\x88\xef\ +\x1b\x9b\xf8\x76\x8d\x25\x4e\x09\xb2\x4f\xb6\xf0\x29\x20\x67\x2e\ +\x77\xb3\x04\x17\x17\x0e\x4c\x67\x5a\x08\x79\xc4\x39\x08\x4d\x14\ +\x07\x39\xf8\xb6\xd0\x61\xf2\x4e\x32\x4f\x31\xf5\xa9\xf9\x22\x96\ +\x0f\xa7\xb1\x3c\x9d\xbb\x4f\xe5\x46\x9f\x62\x8a\x2e\xbc\x0c\x98\ +\x28\xfe\x45\x40\x6b\x07\x4e\xdb\x91\x87\x2c\x41\x3f\x1d\xdb\xc4\ +\xf1\xf4\xb4\xfa\xc0\x70\x1e\x2f\x7c\xea\x6a\xec\x7c\xee\x99\x88\ +\x0f\xbe\x10\x71\xed\xa5\x88\x03\x36\xd3\x3e\x10\xab\xdd\x67\x63\ +\xb5\xf3\x54\xac\x87\x4f\xaa\x0b\x28\x1e\x7a\x72\x23\x7a\x7b\x37\ +\x44\xab\x1f\x2c\xa6\x72\xa7\xfc\x2a\x7d\xac\x97\x73\x95\x41\x15\ +\x36\xe4\xf3\x45\x2a\xdb\xd9\x2c\x8e\xb5\xb0\xef\x9d\x2a\x3f\x4f\ +\x26\x45\xc6\x00\x00\xff\xf4\x49\x44\x41\x54\x9d\x40\xae\x67\x99\ +\x4a\xee\x1e\x43\x30\xbb\x78\x49\xbb\xb6\x1a\x74\xe9\xb7\x02\xaa\ +\x1a\x69\x79\x35\x1d\xda\x92\x4e\xdf\x61\xe7\x6b\x0b\x1c\x53\x12\ +\x1b\x9d\xee\x25\x23\xb3\x96\x1c\x5b\xda\xc0\xf7\x31\xaa\x0c\x11\ +\xea\x57\x4e\xce\x78\xc7\x80\x3a\xee\x97\x37\xd3\x46\xd1\x1f\x0f\ +\x62\xc4\xdb\x19\xf2\x79\x3b\xac\xc9\xa6\x9b\x9f\x5c\x37\xcb\x2e\ +\x4a\x8e\x3e\x6e\xa2\xe4\x09\xba\x36\x02\x11\xd0\xf5\x33\x8f\xdc\ +\x00\x72\xde\x3e\x0f\x30\xb7\x48\x72\xd3\x6e\xc5\xcd\xc7\xb2\xa1\ +\x26\xd4\xfc\xda\xcd\x34\x11\xfa\x77\x79\x95\x4f\x7e\x99\x2a\x6f\ +\x58\xfa\x13\xbe\xfe\xdd\xb4\x55\xf4\xfc\x76\x5a\x93\xa8\xb3\x99\ +\x26\xdb\x50\x61\xa7\xf4\xf2\x89\xe2\x6a\x83\x19\x6c\x30\x3a\x7f\ +\x6e\x82\xf2\x27\xff\xf5\xe9\x32\x4e\x8e\xfb\xf1\x7b\xff\xdd\xbf\ +\x15\x4f\xff\xd0\x8f\x46\x6f\xa9\x3e\x25\x61\x3e\x93\x45\xe5\xbb\ +\xed\x8c\x9a\x5f\x0d\x77\x71\x11\xef\x3c\x52\x66\x53\xf2\x9d\xa4\ +\x7b\x17\xf1\xed\x66\xf7\x1e\x9b\xf7\xbe\x46\xad\x0b\x7c\xba\x42\ +\xb7\x6e\xde\xd5\x7a\x2a\xca\x4b\xbf\x23\x34\xd0\x35\x6f\xba\x9e\ +\xc6\xa7\x9e\xfb\x7c\xfc\xbd\x5f\xfa\xcf\xe3\x68\xf6\x20\xae\x5c\ +\xd7\xf9\xce\xe7\xfa\xfc\x06\x09\x92\xf4\x55\xf5\x69\x27\x55\x2a\ +\x31\xf9\x33\x8a\xae\x1a\xb6\x6f\xb2\x86\x0b\x94\x8c\xb9\x07\xf1\ +\x9c\x43\x30\xf2\xfa\x95\xae\x19\xc3\x4a\x02\x3c\x8b\x9d\x43\xe6\ +\x93\xb1\x99\x56\xe7\x5d\x49\x83\xf6\x47\x71\x11\xef\x71\xdc\x0e\ +\xbf\x2b\x20\x9a\x7c\xb3\xa8\x9c\xbf\xc3\xd8\xdf\x5d\xc4\x74\xd6\ +\x0b\x2e\x75\xb9\xb9\x53\x06\x0a\x57\x52\xca\x9b\x30\xaa\x7f\x01\ +\xce\x8b\xb9\x4c\x6d\xd0\x95\x20\xc2\x51\x84\x2b\x3a\x95\x53\xf9\ +\xf6\x5d\x8f\x4d\xb2\xe6\x78\x21\x5a\x21\xfb\xf9\xb0\xcc\x26\xd6\ +\x1a\x28\xfb\xab\x61\xac\x86\x8b\xd8\x9b\x0c\xe2\xb3\x1f\xda\x8d\ +\xe7\x9f\x9f\xbb\x2d\x57\x67\xb2\x75\x79\x10\xe3\xd1\x75\x4d\xad\ +\x7e\x30\x26\xfb\x9f\x88\xe1\xee\x73\x31\x9c\x3c\x13\xa3\xc9\x53\ +\xa2\xaf\xc6\x68\xe7\x92\xfa\xd2\x48\x59\xf5\x63\xd2\x3b\x8e\xb9\ +\xc6\xd8\x39\xc3\x1f\xc3\xac\xae\xa1\x6c\x1a\xdd\x7c\x70\x16\x47\ +\x67\x7c\x2d\x20\x5b\x90\x76\xad\xa6\x61\x92\xb9\x49\x98\x99\x57\ +\x89\xa4\x93\x01\x91\x69\x92\x97\x21\xea\xb1\x04\x1d\x46\x8c\xcf\ +\x69\xf2\x09\xc2\x83\xc3\x71\x0c\x75\x8d\xf3\x1c\x99\x58\xc5\x91\ +\x8f\xeb\xde\x8a\x24\x2f\x26\x79\x39\x5b\x1d\x90\x29\xb9\x74\x80\ +\x1c\x79\x65\x4e\x4e\xee\xb0\x83\x86\xcf\x19\xf1\xf8\x4b\x7e\xd1\ +\xa2\x03\x41\xe7\x6f\x36\x72\x11\xd3\xe9\x2a\x4e\x4e\xf9\x3c\x6a\ +\x6e\x5a\x00\x9f\x33\x45\x27\x64\x0d\x66\x74\x9b\x59\x11\x77\x02\ +\xaf\x0b\x84\x0d\xb9\xa6\xae\xd2\x07\xb4\x85\x7d\x9c\xd9\x6b\xd5\ +\xd3\x2a\x76\xd5\xe6\x1f\x7d\xfa\x72\x4c\x26\xfc\xa6\x98\xc6\x04\ +\x19\xb3\x3b\x39\x54\x9b\x3e\x1d\xbd\xdd\xcf\xc4\x58\xed\xdd\x9b\ +\x7c\x42\xf3\x84\x97\x74\x5d\x7e\x4e\x73\x83\x67\x14\xbe\xac\x25\ +\xc5\x59\x2c\x66\xa7\xb1\x62\xb3\x4c\xf3\x40\x5f\x9b\x29\x80\xda\ +\x1b\x7f\x6f\x57\xf3\xda\x9d\x7e\xdc\xba\x3f\x56\x59\x4b\x9d\xc8\ +\x88\x5a\x37\x86\xed\x68\xbc\x52\xf7\x50\x89\xa4\x5d\xa3\x25\x9c\ +\x68\x25\x5a\xb4\x6d\x01\xb1\x29\xd1\x0d\x6d\x88\x15\x98\xac\xe1\ +\xe2\xb7\xbc\x92\xbb\x0e\xdd\x36\xa4\x19\x6b\x3c\xa4\x97\x4f\x0a\ +\xe7\x3c\xa6\x17\xfb\x9a\x4f\x3e\x71\x63\xa8\xba\x54\xac\x0b\x46\ +\x5a\x24\x09\xfb\x7f\x13\x35\x93\x24\x0a\x90\xea\x86\x0b\xcc\xa2\ +\x41\xcf\xcb\x8a\x43\x45\xa8\xc3\xd3\xef\xfd\xc9\x53\xec\xb1\xd8\ +\x05\x7a\x1a\x3b\xb0\x4c\x7f\x6a\xb7\x32\xb3\x71\x5f\x64\x9a\xe5\ +\xb7\xed\xf1\x11\x4c\xe1\x4e\xba\x4d\x98\x47\x42\x7b\xa9\x0b\x33\ +\x59\x87\xfa\xc1\x0c\x9c\xa7\x45\xcc\xa8\x90\x47\x11\x1f\x83\xd5\ +\xf9\x70\x67\x16\xf3\xfb\x07\xf1\x27\xfe\xe0\xbf\x1c\x1f\x7b\xe9\ +\x13\xb1\x54\x22\xcc\xa7\xde\x1e\xb1\x9c\x32\x92\x0d\xfe\x23\x70\ +\x44\x92\x5b\x6c\xf1\x0e\xb1\xed\x31\x5b\x6c\xf1\xee\xc1\xd7\xc3\ +\x2d\xb6\xd8\x62\x8b\xf7\x3d\x1e\x77\xf5\x87\x9f\xf3\xd9\xf7\x09\ +\x30\xa6\x3b\xc1\xad\xe1\x2e\xaf\x42\x61\x58\x2e\x03\x37\x55\x87\ +\xb1\xff\xc2\x47\xe2\x27\xff\xd6\xff\x34\x5e\x7e\xfd\x24\x1e\xce\ +\x79\x62\x58\x53\x74\x6e\xa6\x23\x2a\xe7\x85\x61\x05\x13\x77\xa6\ +\xf0\x9a\xc8\x7b\xb1\xe3\x15\x01\x0e\x5e\x68\x82\x2e\xdf\x8b\x03\ +\x4d\xf4\x59\x21\xa0\x8b\xcf\xad\xcc\x57\xb1\x3c\x5b\xc6\x5a\x0b\ +\xdc\xfe\x52\x61\x64\x50\x66\x3d\x0a\xf3\x9b\x6b\x4b\x7e\x1f\xa4\ +\x2c\x2c\x32\x2b\x17\xa1\x7b\xd1\xe0\xfe\x74\x8f\x27\x3c\x79\x22\ +\xb0\xb3\x39\x67\x78\x51\x80\xd1\x04\x30\x2e\x01\x95\x45\xe0\xc8\ +\x42\x54\x7e\x8d\x2e\x0b\x6f\x93\x1c\xc8\x94\x70\x57\x46\xf0\x72\ +\x8f\xbc\xbc\x90\x13\xc1\x27\x6e\x46\xe9\xf7\x27\xe2\xed\x0f\x62\ +\xb8\x3f\x8c\xa1\x16\xb7\x83\xd1\x20\x6f\x58\x2b\x3a\x97\x86\x72\ +\xa6\x37\xc1\x42\x27\xff\x5a\x24\x5d\xd2\x54\x63\xa8\x58\x3b\xd5\ +\x25\xd1\x15\x04\xcc\xcf\xe0\xc5\x50\xe4\xf9\x8c\x85\x4d\x56\x51\ +\x80\x2a\xe5\xe1\x3f\xe8\x9e\xda\x63\x3c\x8b\xf1\x8d\x5e\x8c\x9f\ +\xde\x89\xc3\x67\x95\x8a\x4f\xfb\x8d\xd9\x44\x03\x54\x08\x9b\x68\ +\xf8\x45\x23\xf5\xe9\x86\x13\x60\x1f\xec\xc5\xce\xb3\x57\x62\xef\ +\xa9\xdd\x58\xf4\xd9\x58\x21\x3e\xfb\x8a\x51\xfc\xda\xd6\x35\xdc\ +\x40\x61\xcb\x9e\xe7\x37\x50\xbe\xd9\x11\x53\xa6\x91\xeb\x26\x28\ +\x0b\x74\xda\xaa\x63\x6a\x85\x83\xd8\x24\x23\x90\x23\x5c\x52\x18\ +\x35\x7f\x3f\x79\x5c\x7d\x9c\xc0\xef\x5c\xb0\xa4\xb5\x09\x00\xbf\ +\xba\x3c\x14\xb4\x6d\x57\xb3\xaf\x9c\x7c\xce\x1c\x94\x84\xca\xd0\ +\xf9\x4b\x90\xde\x91\x2d\x42\xaa\x94\xf7\xb1\xa9\xc0\x73\x80\xef\ +\xff\x5a\x8a\x22\xd7\x88\x77\xc3\x6d\xdf\xab\xbf\xa5\x52\xe1\xd3\ +\x42\x6e\x57\x4d\x3d\xb9\xae\x36\x7f\xe6\x7a\xc4\xd5\x97\x22\x2e\ +\x7d\x34\x62\xef\xc5\x88\x9d\x67\x62\x31\xba\x11\xab\xd1\xb5\x58\ +\xee\x5e\x8d\xe5\xe4\x4a\x2c\x76\xae\xc5\xea\xe0\x59\xb5\xb9\x64\ +\x76\x5f\x50\xc2\x83\x88\xb9\xfa\x07\x6f\x2b\xf1\x19\x48\x2d\xf0\ +\x7b\xfd\x51\x8c\x0e\x7b\x71\xf0\xf4\x2c\x0e\xaf\xf0\x56\x47\xd6\ +\x5f\x42\x72\x2e\xf3\xe3\x91\xa5\x7a\x3c\x72\xed\x9f\x12\xad\x1c\ +\x1a\xbb\x37\x0c\xba\x54\xe6\xd6\xdc\x33\x20\xd8\xb8\x8c\x33\xba\ +\xf1\x35\x20\xba\xd6\x73\xf2\x55\x9f\x55\x0e\x68\xac\x60\x5f\x99\ +\xcd\x34\x7e\x37\x8d\xb7\xd2\xf8\xdd\x34\xc6\x87\xe1\x68\x98\x1b\ +\x47\x55\xde\xbe\x33\x85\x28\xc7\x8a\x36\xe4\x1b\x76\x9b\x91\x1b\ +\xc8\x61\xeb\xe2\xd4\xde\x48\xc3\x29\x5f\x7e\x33\xcd\x63\xa8\xe4\ +\x75\xb4\x10\xfd\x3a\x6f\xec\xa8\x4d\x34\x16\xc3\xe4\x48\x1d\xb1\ +\x99\x86\xde\xaa\x9b\xa3\x63\x7d\xde\x90\x46\xa4\xd2\xf8\x77\xd3\ +\x66\x0a\xe8\x3a\x02\x0f\x39\xfa\x92\x9a\x39\xa1\x3a\x6d\xba\x5a\ +\x15\x10\xfa\xdc\x04\x94\xef\xfa\x10\xdf\xd7\x02\xc9\x2e\x17\xcb\ +\xb8\x27\xe6\xfd\x3b\xa7\xf1\x89\x7f\xf2\x9f\x8b\x97\x7e\xf6\xe7\ +\x74\x49\x59\xa8\xdf\x70\x03\x4b\x6d\x8a\xee\x8d\xc6\xab\x80\xae\ +\x7c\x60\xed\x49\x3e\x16\x55\x1e\xbf\xf6\x97\xae\x8e\xf7\x00\x6f\ +\x97\xdd\xdb\x15\x61\x8b\xcd\x66\xac\xfe\x79\xde\x79\x3c\x8e\xbf\ +\x81\x6e\xe5\x97\x04\x9d\x31\x82\x1e\x3c\xd6\x39\x75\xf5\xc9\xab\ +\xf1\x17\x7e\xee\x6f\xc4\xd7\xbf\x76\x3f\xee\xbf\x32\xd7\xf9\x81\ +\xac\xce\x13\x8b\x16\x79\x9d\x04\x3e\x97\x7d\x0a\x94\x93\x03\x01\ +\xff\xa7\x8c\xcf\x36\xc8\x92\x47\x1e\x13\xa4\xf5\x39\xa7\x3f\x36\ +\x52\x66\x9a\x5f\xe5\xa6\x41\x91\xf5\x00\x6e\x72\x23\xdd\x79\x64\ +\x29\x38\x6a\x24\x93\xc7\x06\x35\xbf\x6f\xe6\x37\xde\x7c\x01\x07\ +\xa5\xac\x6f\x81\x8b\xf2\x68\x78\x10\x35\x50\x7c\x97\x5d\x01\xc6\ +\x82\xd1\x70\x14\x1f\x78\xa6\x17\x97\x0f\x06\xca\x7b\xa0\xdc\xea\ +\xa8\xdc\xc5\x39\x05\x8f\x41\x57\xca\x57\xbf\x8d\x01\xb9\xc4\x77\ +\x54\x3c\xae\x64\x39\x8e\xbe\x7d\xb9\x2f\x84\x12\x53\x3c\xb2\xc9\ +\xab\x9b\x8e\xb4\x07\xfd\xa0\xc7\x1b\xda\xa3\xf8\xd0\xf3\xfb\xf1\ +\xd1\x8f\xe4\x86\xc8\x7a\xb1\x88\xe3\x7b\x92\x39\xbe\x14\xa3\xf1\ +\xc7\xe2\x70\xef\xe3\x1a\x9f\x9f\x54\xed\x5f\x56\x3b\x5c\xf2\xc3\ +\x4b\xde\x58\xdb\xf9\x44\x8c\x0e\x7e\x3c\xc6\x87\xbf\x27\x06\x07\ +\x2f\xc5\xee\xce\x20\x46\x1a\xcf\xd7\xbd\x91\x54\xe7\x7c\x78\x6f\ +\x67\xae\x3c\x74\x9d\x51\x3f\xf0\x03\x32\xd5\x10\x50\x0a\x9f\x76\ +\xf1\xe6\x0a\xe5\x2b\xae\xa9\xa7\x8c\xf7\x0c\x24\x2b\xc1\x12\x74\ +\xab\x3a\x6e\xe3\xe5\xa1\xd7\x6c\xa4\x3d\x0a\xc6\x7f\xfa\x3c\xae\ +\xf6\x70\x27\x4a\x74\xc8\x0d\x90\x19\x19\x61\x7f\xed\xcb\xe8\x70\ +\x02\xb9\x52\x1e\xa2\xd2\x25\x9f\x3f\xa2\x5c\xd7\x25\x5d\x1a\xee\ +\x7f\x3b\x50\xa3\xf0\xd3\x26\xa1\xc8\x70\xcc\xd6\x2a\x71\xce\x00\ +\xa2\xd0\xd4\x49\x3d\x27\xaa\x22\x60\x39\xa5\x55\x22\xb8\xb6\xd5\ +\xf1\x99\x03\xf6\xec\xe9\x7a\x3f\xe1\xb7\x53\x35\x07\x5d\xf7\x96\ +\x31\x5a\x5d\xd2\xd4\xf8\x23\x31\xd8\xff\xd1\x98\xec\xfe\xb0\x4e\ +\xbc\x8f\x4b\xfb\x07\xb4\x36\x7a\x42\xd7\xb4\x6b\x4a\xf5\x4c\x0c\ +\xc6\x9f\x8a\xfe\xce\xc7\x63\x35\x3c\xd0\xe5\x94\x6f\x87\x2c\xca\ +\x1b\xdb\xf4\x2f\xd6\x4a\x7d\x9d\xfb\xc3\x78\xfe\x60\x1d\xd7\x2e\ +\x2d\xc4\xe6\x41\x14\xf2\xa7\xe0\xb8\x0e\x30\x29\xbd\x02\x5b\x59\ +\xa8\x96\x5f\x53\x55\xbf\x95\x2f\xbc\x26\x51\x37\xd5\x66\x6e\xe7\ +\x72\x7e\x14\x1d\x81\xd4\xd0\xc9\x45\x64\x5a\x66\xc2\x35\x48\xd8\ +\xd9\x01\xd2\x96\xf4\x3b\xaa\xcb\x6b\x97\x07\xb1\xb3\x43\xa4\x98\ +\xfa\x6f\x4a\x95\xc9\x2b\x79\x0e\x5d\x0e\x74\x51\xfa\xa8\xe0\x06\ +\x3c\x2a\x49\x4c\xa3\x63\xf4\x55\xf7\xca\xde\x73\x38\x06\xce\xec\ +\x15\xe8\xe9\x00\x7d\x72\x56\x4b\xff\xc0\x57\x81\xb2\x4c\x79\x68\ +\xde\xe8\x87\x89\xcb\x98\x72\x7c\x14\x9c\x09\xb5\x32\xf2\xcd\x33\ +\xc1\xc1\x52\x86\x62\x02\x7d\x80\x78\xa2\x38\x9d\x78\x77\x71\x76\ +\x32\x8d\xb3\x7b\x93\xf8\xf1\x8f\xff\x42\xfc\xf0\x67\x7e\x58\xd3\ +\x72\xe6\x50\x48\x34\xbd\xba\x83\xa2\xe8\x5c\x91\x12\xa4\xb9\x30\ +\x62\x8b\x2d\xb6\xd8\x62\x8b\xf7\x08\x8f\x8e\xdb\x5b\x6c\xb1\xc5\ +\x16\xdf\x0f\x30\x27\xf4\x64\xb4\xe3\x03\xf8\x6f\x35\x5f\xec\xca\ +\xbe\x2f\xf0\x1d\x1a\xcb\xea\x4b\x8b\x6f\xe6\xe7\x9f\xfb\x53\x7f\ +\x3a\x3e\xf1\x3f\xfa\x2b\xf1\x9b\x5f\xbf\x1b\x0f\xe6\xcb\x58\xcf\ +\xb5\x78\xd3\x68\x3d\xd0\x90\xdd\xde\x5a\x29\x8b\x56\xcd\xd0\x9b\ +\x0d\x33\x2f\x7e\x3d\xcd\x67\xb6\x6f\x5d\xb9\x90\xd7\x22\xc1\x74\ +\xca\xac\xf8\x8d\x0c\x6e\xfa\x4c\x17\xb1\xf4\xa6\x1a\xf2\xe8\x23\ +\x5e\xcb\x7b\xcb\xe9\x7f\xb9\x2c\x9b\x72\x8a\xf7\x41\x9e\x5c\x36\ +\x95\x97\x34\xde\x14\xf1\x67\x53\x06\xe2\x6b\x31\xc3\x0b\x73\xc0\ +\xb5\xa0\x83\x7d\xf3\x24\xdd\xa9\x1a\xc8\xea\x0c\xa2\xad\x9c\x83\ +\x82\x5a\x60\x64\x0e\x94\x0d\xb3\x44\xcb\xf7\xfa\x25\x45\x94\x1f\ +\x95\xa2\x3a\x61\x73\x86\x9b\xd2\x23\xf9\xbc\x69\xb2\xd7\x8f\x01\ +\x37\x84\xf6\x86\x31\x9a\xf4\x62\xa8\x38\x16\xcf\x7d\x9e\x60\xe4\ +\xe6\x14\x99\x62\x53\x31\x80\xb0\x79\xe6\x67\x06\x90\x00\xbf\x64\ +\x27\x82\xba\xa5\x96\xb2\x2e\x12\xd5\xa0\x46\xaa\x90\x25\xdc\x61\ +\x6f\xe0\x22\x7e\xc3\x63\xf1\x55\x03\xd4\x7f\x3f\x96\x03\xf5\x83\ +\xc9\x22\x7a\x07\x2a\xdb\x15\xda\x4c\x96\x8d\x68\x38\x5c\x35\x1e\ +\xb8\xb1\xd2\xf9\xb3\x4d\xd0\xc8\xc8\xdf\x5d\xc5\x70\x7f\x12\x97\ +\xf6\x0e\x63\x31\x1f\x38\xaa\xf6\x1b\x9a\x17\xc9\x2c\x1a\x54\xeb\ +\xea\xdb\x7f\x8f\xe2\x02\x9e\x58\x1b\x37\xce\x1a\x91\xd2\x63\x14\ +\xe5\x1e\xcc\xe2\xb7\xb4\x85\xa5\x6b\x12\xdb\x5b\x21\xda\xc5\xc1\ +\x86\x6a\x20\x87\xda\x3e\xf2\x15\x07\xed\xcd\x34\x17\x08\x6e\xca\ +\xb8\xe3\x18\x56\xa2\x32\xd2\x7e\x56\x22\x14\x1e\x05\xa7\x6f\x81\ +\x4e\x25\x64\x2c\x71\x85\xd7\xd8\x47\x29\x1c\x23\x71\x22\x6a\xda\ +\x86\x4a\x94\xb0\xf3\xe3\x3f\x03\x0d\x08\x77\x82\x25\x80\x74\x72\ +\x39\xba\x3c\x55\x50\x6d\xc0\xd3\xcf\xbd\xfd\xbd\x88\xbd\x2b\x11\ +\x3b\xcf\xc7\x7a\x78\x5d\xf5\x78\x28\x5b\xf6\x63\xd0\xe3\x13\xb1\ +\x43\xff\xa9\x87\x28\x01\x1b\xad\xfb\xaa\x63\x7e\xfb\xe5\xb2\xba\ +\xc0\xae\xce\x79\xd5\xf9\x62\x5e\xde\x62\xca\x05\xfc\x7a\x24\xbd\ +\x87\xeb\xd8\x39\x60\x9f\x8d\x1f\x49\x57\x5f\xa9\x3b\x2e\xca\x3b\ +\xcf\x41\xe8\xd6\x2b\xa7\xe8\xe3\x51\xeb\x0a\x54\xd9\x2e\x0f\x34\ +\x7d\xa4\x08\x9c\x8b\xcf\xb2\x8b\xd9\xf0\x3b\x02\xe7\xf2\xdf\xb4\ +\x27\xfb\x43\xc3\x52\x07\xe3\xcd\x47\x3e\xb7\x13\x8c\x0f\xfc\x5e\ +\x9a\x5c\x8f\x8d\x35\x8d\x15\x7c\xea\xd1\x1b\xf2\x1e\x00\x1e\xc5\ +\x66\x56\x35\xa4\x7a\x6b\x22\x36\x25\x0c\x54\x51\xb7\xc4\x95\x68\ +\x3c\x93\x6a\x02\xf2\xc2\x9c\xba\x99\x96\x37\x82\x64\x0f\xf1\x92\ +\xca\xdf\x29\x53\x1f\xe4\x86\x1d\x1b\x63\xe6\x83\xaa\x2f\x95\x5a\ +\x67\x76\xc4\xd2\x9d\x39\x07\xe4\x97\xb4\xfe\xcd\xb4\x85\x1c\xa7\ +\xbf\xe3\x8b\xc3\x93\x20\xb2\xd4\x5d\x9e\x17\x85\x27\xda\x76\x60\ +\x92\xfe\xea\x66\x1a\xe3\xc4\xd1\x6c\x1d\x77\xef\x9c\xc4\x0b\x3f\ +\xf4\x13\xf1\xc3\x7f\xed\xaf\xfa\xfa\xc0\x35\x89\xba\x75\xed\x5d\ +\x5c\x85\x05\x25\x63\xa3\x4b\x5f\x04\x14\x55\x19\xd7\xa2\xd0\xe5\ +\x6d\xf1\xbe\x46\xdb\x74\x9b\x74\x45\x97\xff\x6e\xa1\x0e\x02\xf2\ +\xb2\x2f\x8a\xe0\xf7\xae\xfa\x67\xf1\x63\x9f\xff\xa9\xf8\x27\x7f\ +\xfa\xaf\xc6\x6f\xfc\xfa\x6b\x71\x72\x6f\x1d\xcb\xa1\xb7\x30\x2c\ +\x82\x6c\x1d\xe3\x7c\x16\xf0\xaf\xf3\x88\xd3\xe5\x51\x23\x4b\x5f\ +\xf4\x49\x96\xb1\x29\x27\x9f\x34\x3e\x4f\x74\xca\xe9\x9c\x99\xd7\ +\x4d\x35\xae\x11\x9c\x57\x48\x92\x20\x93\x3e\x16\x79\x0a\x65\x5f\ +\xf7\x5b\xc9\x9a\x60\x79\x53\x8d\xcd\x12\x8f\x51\xed\xb5\xef\x71\ +\xc8\xf8\x47\xd1\xcd\xbe\x14\x41\xe1\x24\xb0\x9b\xd2\xac\x56\xc3\ +\xd8\xdf\x19\xc5\x8b\xcf\xf4\xe2\x70\x9f\x71\x4a\xe3\x13\x83\x55\ +\x51\x5a\xe5\xab\xa6\x36\x5c\x70\x3e\xf3\xda\x2e\x9d\x08\x73\x8a\ +\x4a\xe8\x2a\x61\x5d\x30\x8b\xa8\xe3\x44\xdb\xd6\x62\x70\xa6\xc9\ +\x16\x4b\x57\x84\x1b\x28\xfc\x98\xb1\xbc\x49\xa4\x72\x62\x16\x7b\ +\x6a\x4f\x1e\xec\xc4\x8f\x7e\x6a\x19\xd7\xae\xce\x62\xb0\x5e\xf8\ +\x81\xb3\x95\xae\x91\xa7\xf3\x63\xb5\x27\xd7\xd4\x03\x25\xd1\xbc\ +\x3c\x46\x4a\x33\x51\xfa\xb1\xc6\xc3\x5d\xb9\x7d\xa5\xbf\xa6\xeb\ +\xc7\x4b\xd1\xdb\xfd\xf1\x98\xec\xbd\x18\x7b\x83\x4b\x1a\x0d\x75\ +\xdd\x65\x52\x3c\x18\xc6\x21\x6f\x3f\xfb\xb3\x90\x09\xfa\xd7\xc6\ +\xc6\x5a\xb1\xa5\x10\xf6\xb2\x3e\xc5\x43\x4e\x7f\x65\x64\x76\x34\ +\x65\xe3\x37\xd7\xe8\xbd\xc0\x4d\x26\xd4\xfe\xcb\x3c\xbc\x7e\xbe\ +\xb4\xd6\x54\xce\x6f\x52\x92\xa3\xf7\x11\x7d\x7d\x2f\xf1\x44\x38\ +\x97\x92\x5f\xe9\xab\xb5\x7f\x20\x59\x73\xaf\xbe\x09\x39\x3c\xef\ +\x4f\xcb\x15\x96\x13\xd8\x47\x41\xfe\x4b\x67\xe6\x65\x36\x61\xfc\ +\x0c\x56\xb6\xfd\x0d\x5e\xa1\x5d\x36\xff\xd7\x36\x47\x97\x50\x0d\ +\x93\x6e\x8b\xea\x50\x37\x2d\x70\x44\x57\x70\x36\xfb\x3c\x2c\xb1\ +\x3b\xc3\x91\xd6\x05\x6a\xd5\xfe\x38\x86\xea\xef\x7b\xbb\x97\x63\ +\xbd\xf3\xa9\xe8\x8d\x3e\xa5\x6b\xda\x35\x5d\x2f\x0f\xa2\xbf\x52\ +\xdb\x6b\xce\xd4\x5f\xee\xc9\x3f\x88\xe1\xec\x7a\x0c\xc6\x2f\x68\ +\x1d\x76\x59\x32\xf4\x87\xb9\xed\xe5\x0b\x0f\x7c\xe2\x93\x6b\x21\ +\x55\xbd\x54\xbf\xb9\x7c\x70\xa6\xb5\x48\xf9\x15\x6c\x99\xdb\xb5\ +\xa5\x58\xdf\x42\x22\x58\x95\xfc\xb4\xaf\x1b\x4a\xbf\xa6\xca\xf2\ +\x3d\x02\xa2\x2f\x8c\x28\x20\xbe\xaa\xe8\xe2\xa2\x34\x85\xd7\x8d\ +\x6a\x4e\x61\x50\x68\x6a\x9d\xf2\x73\xe5\x57\xb7\x8b\x2b\xfb\xea\ +\xef\x97\x57\x9e\x79\x6e\x64\x26\xa1\x5a\xfe\xae\x9a\x8b\x90\xb3\ +\x08\xb9\xa6\x23\x08\x85\x95\x48\xc2\x47\x1d\xbc\x8e\x10\xf2\x33\ +\x8f\x39\x4e\x25\xa7\x9e\x11\x9b\x48\x5e\x89\x91\x51\xd8\x45\x9b\ +\xb9\x1d\x69\x43\x9d\x27\xe5\x54\x69\xd2\x3f\xa2\xa7\x30\xdc\x12\ +\x95\xae\xf6\x16\xbf\x9e\x13\x49\x67\xf9\x99\x55\xb1\x09\xbb\x5e\ +\x4d\x62\x39\x3b\x8b\x3b\x37\x67\xf1\xdc\xe5\x4f\xc5\xcf\xfe\xfe\ +\x3f\xa5\xfa\x1d\x2b\xb6\x96\xad\x24\xac\xb0\x4a\x0e\xb8\x73\x71\ +\x5b\x6c\xb1\xc5\x16\x5b\xbc\x2f\x90\xd7\x9e\x2d\xb6\xd8\x62\x8b\ +\xf7\x0b\xbe\x8f\xf3\xc6\x9c\x0e\xbf\x1b\xa0\x00\x6f\xa5\xad\x16\ +\xb0\x53\xd8\xea\x69\xc1\xbc\xd6\xe2\xec\xe7\xfe\xd6\xbf\x1d\x4f\ +\xff\xc1\x9f\x89\x37\x6f\x4d\xe3\xc1\x42\x0b\x04\x7e\x29\x5e\x93\ +\xf3\x66\xbd\x2c\x34\xcb\x06\x16\x8b\xac\x04\xbc\x32\x50\x58\x9e\ +\xa7\xf1\xe2\x2d\xb9\xd1\xc3\xe2\x9c\x1b\xb3\xf0\x91\xe3\x46\x0f\ +\xbf\xa7\x33\x53\xfc\xd9\x22\x56\x53\xf1\x7c\xd3\x15\x59\xf4\x70\ +\xc3\xc1\x4a\x9c\x8e\x9b\xaa\xb0\x9b\xc5\xb6\x44\x73\x91\x85\x31\ +\x5a\x0a\xb0\x90\xf1\x86\x95\x1c\x57\x15\x39\x47\x97\xa3\xe5\xf4\ +\xbf\xc9\x6b\xc1\x22\xa2\x53\xac\xa2\x5c\xae\xdc\x18\xa9\x8b\x17\ +\x73\xcb\xc2\x87\x85\x90\x19\xe4\xad\x4c\xfd\xb9\xb4\x31\x37\xca\ +\x87\xd1\xdf\xc9\x4d\xb5\xe1\x81\x16\x7b\xe5\x33\x2c\xbc\x91\xc2\ +\x67\xdd\x78\x23\xa5\xde\xa0\xca\x4f\x95\xa0\x43\xff\xa6\xe5\x14\ +\x4c\x63\x1e\x59\xc2\x6f\x20\x63\x30\x62\x13\xf0\x39\xa6\x7f\x01\ +\x2e\x88\x68\x59\x25\xb5\x32\x6c\xee\x09\xc1\xea\x2f\x65\x83\xca\ +\x3c\x57\x3d\xcd\xf9\x5d\xbd\x59\xc4\x4c\x11\xcb\x53\x09\xce\x53\ +\xce\x82\xe5\xce\xb9\x37\xd2\x70\xd0\x6a\x68\xf5\x27\xcb\xce\xee\ +\xcb\xdd\x53\x7b\x2f\xb8\x3d\x44\x83\x66\x4a\x37\x6e\xad\x50\xb9\ +\xfc\x4f\x14\x56\x87\x93\x28\xfd\xa3\x8d\xc7\xcb\xbe\xd1\x30\x2a\ +\x9a\x60\x29\x14\xfd\x83\x47\x4a\x55\xf9\xb5\x76\x39\xd6\x85\xbb\ +\x69\x08\xcc\x97\xd7\x6a\x93\x74\x65\x94\x3e\xef\x38\x36\xd3\xa0\ +\x7c\xe3\x46\xa8\x32\x86\x62\x88\xaa\xe1\x1a\x67\x47\x99\x93\xec\ +\xd2\x96\xf5\xc9\x62\x96\x8d\xe1\xf3\x2d\x5e\x28\x83\x5a\x55\xc0\ +\x09\x6a\xb0\x30\x6b\xdc\x06\x3a\x71\xd6\xd3\x86\xb1\xbd\x49\x52\ +\x09\x19\x51\xb3\x73\xa1\xf5\xcf\xf9\x35\xe5\xc7\x29\x26\x07\xb1\ +\xee\x73\xc3\xa6\xaf\x16\xe7\x16\x86\xfa\xb3\xca\xce\xa2\x9c\x3e\ +\x4b\x3a\xfa\x71\xd6\x09\x3b\xdd\x3b\x3c\x16\x2b\xbb\xd5\x0f\x78\ +\x43\xad\x66\xc2\xef\xf2\xf1\x76\xd6\x9e\x74\xed\x2d\x63\x35\x50\ +\x8a\xd2\x08\xd5\xa2\x22\x69\x74\xe9\xa6\xae\x1f\x41\xcb\xcf\x3a\ +\x97\x3d\x1b\xa2\x9b\xe9\x1e\xd1\x22\x46\xd3\x56\x3e\x19\x15\xa8\ +\x3e\xfc\x12\x47\xba\xea\x2a\xc5\xb1\x11\x29\x91\x7e\x62\x5f\xae\ +\x37\x52\xfd\x30\x36\x68\x0c\xe8\x4d\xfa\x1a\x0b\xf8\xdd\x34\x85\ +\xdd\x0f\x55\x6b\xc8\xd4\x74\x05\x9d\x16\x10\xd0\x9a\xb5\x5b\xba\ +\x8a\x50\x8c\xd9\x40\x27\x8d\xe4\x08\x35\x55\x55\xf2\xf0\xa6\x3e\ +\x63\x10\x1b\x79\x0c\x40\xcd\x66\x9a\x62\x51\xa9\xbe\x97\xe7\x64\ +\x76\xb5\x0a\x64\xb0\xc0\x65\x6c\xb2\x46\x48\x01\xc9\xe7\x69\xcc\ +\xd8\xae\x33\xd1\x2e\x79\xc4\x3b\x5f\xd1\xb9\x99\xaa\xff\xc2\x47\ +\x91\x35\xd6\x3c\xa1\x8b\x9d\x75\x63\x8f\xdf\x03\x9a\x2f\x96\x71\ +\xfb\x74\x16\xbb\x87\xcf\xc5\xe7\xfe\x67\xff\x76\xec\x5c\xbb\x5a\ +\xcc\xd5\x18\x2b\x59\xc3\x0d\xad\xf4\x06\x74\xf5\x2b\x5d\x71\x3e\ +\x5c\x71\x5e\x36\xcb\x9a\x14\x78\x5c\xba\xf7\x18\xe7\x8b\xf8\xbb\ +\x01\xb5\xcc\xdf\x09\x1e\x97\xf6\xed\xf8\x6f\x59\xbf\xe7\x22\x1b\ +\x5d\xe2\x8b\x26\x96\xde\xc3\x4d\xf3\x45\x7f\x1a\x7f\xf6\x4f\xfc\ +\xd5\xf8\xf0\x53\x3f\x1d\xbf\xf6\xc5\xd7\x63\x3a\xe7\x77\x90\xb8\ +\x56\x96\xbe\x2f\x69\xdf\x14\xe5\xdc\xe1\x9c\x00\x0a\x73\x36\x20\ +\x53\xae\x2e\x9b\x80\x71\x8e\xc9\x39\x05\x0b\x1d\xb9\xa9\xb6\xb4\ +\x9f\x7a\x40\xc9\xcf\xe7\xdc\xe3\x91\x25\xd3\x91\x7f\xb9\x76\x53\ +\x4d\x63\x97\x18\x6d\x5a\xa8\xc7\x85\xde\x1e\xc8\x52\xdc\x6a\x1f\ +\xa7\x7f\x8f\x4f\x00\xaf\x06\x71\xf9\x60\x1c\x2f\x3c\xdd\x8b\xbd\ +\x5d\x8d\x91\xbd\x91\xc6\xb0\xb6\x16\x7c\x8d\x48\x23\x0d\xf3\x15\ +\x66\x9c\x43\xc2\xe3\x9d\x5c\x1d\xf7\xf1\x9d\xb2\x84\x2b\xda\x31\ +\xac\xc4\x77\x60\x5d\x35\x7d\x73\x40\x2e\x47\xca\x4c\x91\xa9\xba\ +\x69\x5b\xba\x52\x28\x3a\x27\xe3\x80\x0e\x8b\x49\x7c\xf2\xc5\x61\ +\x3c\xf5\xd4\x22\xe6\x27\x3c\x60\xa4\xba\xe5\xe1\xb5\x38\x8d\x59\ +\xdc\x8c\xfb\xf7\x5e\x8f\xd9\x52\xd7\x47\x3f\x9c\xc2\x26\x0a\xd7\ +\x18\xc6\x6a\xe8\x89\xe6\xd6\x7c\xba\x4d\xf1\xbd\xab\xb1\x88\xe7\ +\xe4\xef\xc7\x90\x4f\x6f\x6b\x3c\x47\x6e\x67\x32\x51\xca\x33\x65\ +\x45\x9b\xc9\xee\xd2\x3f\x00\xbe\xed\xe8\x10\xae\x47\xc6\x61\x79\ +\x70\x72\x23\x8a\x28\x18\xd9\x1f\xe1\x5b\x0c\xbf\x03\x5d\x52\xfc\ +\xd0\x58\x49\x61\x5d\xc8\xd6\x70\x83\xaa\xa0\x6d\x75\x39\x85\x4b\ +\x1e\xd0\xf6\x6c\x6c\x86\x33\x1a\xba\xcc\xb7\x74\x84\xca\x1e\xe1\ +\x48\xf3\xc8\xcb\xf1\xa9\xc0\xc8\x3e\x20\x49\xb1\xf8\xad\xda\xf3\ +\x68\xca\x74\x0e\x6c\x1a\x26\x9f\x23\x89\x4b\x49\x44\xba\x9d\xf8\ +\xf3\xf9\x0a\x2f\x3f\x87\x5f\xd1\x64\x8f\x6c\x2d\xa6\x02\x7c\xee\ +\x9e\xcf\x54\xf2\x90\xdd\x78\x34\x56\x0e\x43\xb5\xcf\x65\x55\xdc\ +\x33\xb1\x18\xbc\xa4\xeb\xe3\x9e\xe4\xf7\xc5\x9f\x68\x56\xa5\xab\ +\x1a\xf3\x02\xb5\x31\x1b\xf3\xfd\xbe\xda\x79\xfd\x84\xb4\x1c\x6a\ +\x2e\x35\x54\xbe\x9c\xd7\xba\x36\xca\x77\x1e\x32\xaf\xaf\xb9\xf6\ +\x42\x73\xaa\x1b\x97\xd5\x2b\x78\x50\x47\xbc\xda\x86\x8d\x49\xd8\ +\x84\x5f\x9c\x61\x22\x43\xd4\x62\xc3\x17\x5c\xbf\xf6\x0b\xac\x8e\ +\x43\xea\x6d\xd1\x86\x37\xd3\x5f\x0c\xf3\xcf\xa9\x68\x54\x17\x58\ +\x46\x07\x7c\x5c\xb5\xac\xb6\x23\x6f\xd0\x32\x7d\xb9\xb4\x3b\x88\ +\x4b\x97\x35\xd6\x6a\x4d\x55\x91\x5d\xa2\xb5\x3e\xfd\x8b\x40\x1a\ +\x0b\x3b\xb4\x81\x0d\x83\x32\xde\x36\x38\x89\xce\x30\x91\x1e\x17\ +\xd9\xd1\x53\xff\x48\xf1\x2a\xdf\x81\xe4\x32\x75\x12\x34\x17\x6d\ +\xe7\x1e\xac\xc6\xa3\x2d\xbd\x29\x8a\x04\x22\x96\xa1\x7f\x65\xba\ +\xda\x66\x15\x2e\x4d\x61\xa4\x2e\xa1\x94\xd5\xb4\x28\xf7\xc7\x62\ +\x8a\xdf\x56\xd4\xb8\x1a\xab\xb1\xe6\xd8\xd3\x38\xb9\xb7\x8a\xc9\ +\xf1\xd3\xf1\x87\x7e\xef\xbf\x10\x87\xbb\x3c\x10\xc7\xba\x1e\xe7\ +\x82\x59\xcf\xa3\xb8\xa0\x5c\xc6\xe3\xf8\x5b\x6c\xb1\xc5\x16\x5b\ +\xbc\x57\xa8\x33\xd3\x2d\xb6\xd8\x62\x8b\xef\x3f\xde\x6e\x6e\xf8\ +\x1e\xcc\x1d\x99\xcc\x5e\x3c\xa1\x7d\xa7\xa8\xa9\xdf\x89\xb1\x5d\ +\x19\xd1\x0e\xb2\x28\x1e\xc4\x68\x30\x89\x5f\xf8\xf7\xfe\x57\x71\ +\x6f\xef\x46\x1c\xcd\xe7\x5a\xb0\xb3\x0f\xe6\x1f\xb6\xd0\x82\x46\ +\x8b\x07\x56\xd0\x06\xb3\x7e\x4d\xe0\x95\x6d\xde\x14\x12\xcd\x22\ +\x8f\x30\x8b\x73\x16\x7e\x5a\x19\xf8\xc6\x28\xb4\x52\xd4\x9b\x47\ +\xec\xbf\xf0\xd9\xc7\xc5\xd9\x42\xfe\x32\x98\xf3\x93\x30\xa3\x15\ +\x6f\x87\x0e\x7e\x6b\x2b\x75\xb0\xc8\xf0\xef\x2f\x09\xb9\xac\x4d\ +\xe4\xa6\x9a\xac\x1f\x0c\xf2\x86\xb1\x56\x3b\x2c\x71\xb8\x01\x94\ +\x96\x42\xdb\x7b\x0c\xca\x72\xad\x28\x6c\xd7\x45\x35\x3d\xa6\xa4\ +\xcd\x38\x7f\xd2\x0c\xdb\x90\x47\x98\x37\x3d\x86\xc3\x18\x4c\x46\ +\x5a\xcc\x8e\x62\xb0\xa7\x25\xf1\xa5\x41\x0c\x0e\x79\x53\xad\x1f\ +\xc3\x1d\x85\x27\xc3\x18\x6a\xf1\x67\x9a\x1b\xea\x23\xd5\x35\x37\ +\x21\x58\x08\x72\x13\x59\xae\xdc\xdf\xf6\x5b\x17\x95\xe7\x0d\x0d\ +\x1c\x34\x3c\x79\xd5\x50\xaf\x97\xe5\x08\xd9\x94\xe2\x6f\xc0\x8c\ +\x73\xb1\xe8\xeb\x4a\x36\x24\xf5\x96\x7e\x65\xf6\xbc\x6d\xa2\xf6\ +\x99\x8f\xa3\x77\xac\xc2\xdf\x57\x3d\xcc\xe4\x3f\x7c\x10\x71\x72\ +\xa4\x8e\xf1\x50\x15\x72\x8f\x1f\xa9\x10\xff\x4c\xf5\x03\x4f\x6e\ +\x7e\x2c\xde\x89\x78\x0f\x63\xfd\xf0\x8d\x88\xd7\x5e\x8f\xd9\xd7\ +\xbe\x1a\xc7\xb7\xee\xaa\x9c\x53\xdf\x60\x60\x51\xea\xbe\x82\x93\ +\xda\xcc\x51\x80\x68\x02\x85\x2c\xbc\xe6\x89\xcc\x2e\x4a\x1c\x87\ +\xd6\xfe\x0b\x40\x24\x95\xac\x7a\xa7\x9f\x58\x1f\xfc\x0d\x71\xda\ +\x95\x3e\x86\xae\xe2\x17\xdb\xe8\x71\xb9\x5c\x2d\x09\x54\x8f\xd9\ +\x9f\x09\xa4\x44\x3a\x33\x5c\xa6\x06\xca\xae\xd1\x57\xd3\x1b\xe2\ +\xc1\xb6\xab\xba\x24\x5b\xfd\xe6\xa0\x94\xa5\xec\x35\xae\x41\xcd\ +\xb6\xa8\x6d\xec\x03\x6e\xeb\x0e\x14\x4c\x75\x9b\xfc\xb6\x5a\x3b\ +\xfc\x42\xae\xd9\x18\x5b\xf5\x62\x8a\x7d\xb3\x91\xc6\x02\x0c\x98\ +\xab\x57\x2c\xec\xc8\xcf\x6f\x12\xc9\xe7\x66\x94\xcd\x23\x4c\xde\ +\xa7\xea\x27\xc7\xf7\xd5\x17\x44\xb3\xa9\x46\xa5\xb0\x91\xc6\xe7\ +\x0e\x27\x3a\x5f\x75\xce\xac\x79\x03\x42\xcd\x82\x7a\x9f\xf7\x24\ +\xf7\x71\x13\xa8\x33\xdf\x65\xa2\x14\x5d\x57\x50\x12\x9a\xdb\x61\ +\x27\x87\xc8\x8e\x00\x9e\xfc\x46\x4c\x36\x3b\x8d\x6f\xda\xd4\x4a\ +\x2e\xf2\x5d\x74\x59\xc8\x37\x0a\x8a\x32\x9f\xbf\x72\xec\x37\xf2\ +\xe4\xfe\x44\xfd\x8d\x8d\x75\x9d\xfb\x03\x8d\x03\x23\xde\x54\x53\ +\xf9\xfd\x9b\x6a\x25\x49\xab\xa3\xaa\xaf\x99\xc8\xaf\x71\x66\x11\ +\xe8\x1a\x50\xd1\x51\x20\x74\x43\xd4\x2d\x23\x59\xfb\x99\xc7\x61\ +\xde\x20\x27\x5c\x64\x50\x49\xd5\xd3\x0f\xb2\x09\x6a\x1e\xe5\x9c\ +\x52\x84\x39\xe5\xe0\x71\x18\xe1\x2a\xcf\x78\xb8\xd0\x38\xcf\x46\ +\xda\x9c\xb1\x3a\x23\x52\x1c\x1a\x42\x70\x23\x27\x38\xcf\x52\x0d\ +\xdb\xb3\xd2\x59\xc7\x37\xc9\xf0\x89\xc7\xa5\x78\xf3\xd9\x22\xee\ +\x48\xdf\xd9\x51\x2f\x7e\xf0\xdf\xfa\x37\xe3\xca\x67\x3f\x1b\x6b\ +\xde\x9c\xa6\x44\xee\x07\x94\xa0\x5b\x5a\x78\x35\x8f\x36\xaf\x16\ +\x17\xf1\xba\x20\x3e\xf5\x51\x67\x5d\xcd\xef\x09\xc8\xf0\x3d\xcf\ +\xf4\x7d\x8c\xb6\x39\xde\x1e\x5d\xd9\xef\x69\x1d\x76\xfb\x50\x37\ +\xd3\xc2\x97\xe7\xcd\xa7\xb5\xae\xfd\xf8\xe3\x79\xfc\xcb\xff\xc4\ +\xdf\x8c\x07\xb7\x46\xf1\xad\xaf\x3e\xd0\xb9\x37\x56\xdf\xd6\x35\ +\x95\xf3\x42\xc2\xad\xa9\x3a\x1f\xcc\xe3\xa4\x60\xee\x94\x5c\x64\ +\x92\x4c\x9f\xa3\xc3\x3a\x34\x22\x82\xe7\x48\xf8\x72\x3c\xc7\x92\ +\x6f\xaa\xe9\x5c\x42\x1d\x02\x8d\x99\x55\xea\x62\x58\xcc\x93\x0b\ +\xc9\xe8\x1c\x6b\x36\xd5\xfa\x6c\xaa\xe5\x88\xd1\x9e\x19\x9b\x7a\ +\x1e\xaf\x35\xd1\xe6\x4c\x7a\x39\x05\x28\x4d\x7d\xc3\xae\xc7\xe7\ +\xa0\xd7\xa3\xb8\x71\x65\x12\xcf\x3d\x1b\x31\xe1\xed\xff\x5e\x6e\ +\x10\xe4\xb8\x5f\x75\xb4\xf5\x56\x6a\xa3\x41\xd6\x8f\x78\xa9\x3e\ +\xe9\x8d\x70\x22\xfd\xca\xd9\xbc\x2a\xbb\x7c\x62\xe4\x9e\x04\x9b\ +\x26\x8c\x50\x44\x54\xa9\xea\x6f\xa6\x6b\x63\x8b\x7c\xcd\xd4\x10\ +\xad\xeb\x28\x73\xe1\xb1\xfa\xc5\x8b\x4f\xaf\x63\xa2\xeb\xc4\x5c\ +\x8d\xb5\xd0\xf5\x71\xa6\xf9\xf0\x72\xa6\xf0\xf1\x59\x3c\xbc\xfb\ +\x72\x1c\x9f\xde\x94\x16\x36\x5f\x06\xb2\x43\x6d\xeb\x8b\x93\x0d\ +\x32\x4f\x17\x52\x5d\x77\x99\x90\x8e\x55\x77\xbb\x9a\x4f\x8e\xd5\ +\x46\x23\xb7\x11\xd7\x97\x91\xd2\x88\xea\x0e\xb9\xf4\xb0\xc6\x1e\ +\x6a\xd0\xb5\xe8\x70\xd5\x9d\xfa\x0d\x8f\xd9\xa5\x7c\x52\x42\xda\ +\x8e\xaa\x8c\x26\x07\xfa\x07\x9f\x3d\x37\xa7\x95\x80\x82\xd3\xf6\ +\x4a\x1d\x4b\x74\x69\x21\x21\xf5\x17\x76\x83\x6a\x57\x6d\x3b\xd2\ +\xb9\x8f\x64\xb4\xd1\x6d\x8a\x3c\x6f\x92\xd1\xe8\xae\x99\x19\xb4\ +\x68\xb6\x09\xb1\x4d\x9d\xc8\x37\x4f\x87\xb4\xb5\x65\xe6\xd7\x0e\ +\xc8\x3b\xf3\x47\xae\xc6\xb9\x9e\xd2\xc4\x16\x35\x20\xbf\x29\x73\ +\xc3\x83\xc9\xef\xa8\x69\x4c\x50\xff\x1e\xac\xf7\x35\xef\xb9\xa4\ +\x36\x7d\x46\x27\xeb\xae\xae\x77\x63\xb5\x17\x7d\x9d\x3c\x65\xab\ +\x9f\xb2\xa1\x16\xfa\xb1\xec\x4f\x3c\xbd\x8e\xf9\x28\x56\x0b\x85\ +\x69\x8b\x5a\x36\xb2\xc0\x4e\xe9\xdd\xd1\x75\xfd\xea\x2e\x6d\xc1\ +\x5a\x4d\x6b\x0b\x74\xb5\x62\x2d\xb2\x53\xb7\x20\x12\xde\x86\x50\ +\x85\x23\xe5\xd2\xae\x0c\xf1\x87\x7c\x71\x6e\x08\x39\xd9\xd4\xb4\ +\x09\x20\xc9\x63\xd0\x15\x23\x94\x7f\xe7\xf9\x82\x75\x14\x6e\x51\ +\xee\x21\x48\xfc\x7d\xcd\xab\x2e\x5f\x55\x3f\xe7\x27\x9c\xfd\x29\ +\x4c\x79\x8c\x9b\x92\xef\xf6\x93\xc7\xa3\xe8\xd3\x5f\x93\x2f\xf9\ +\xa9\xde\xd2\x74\xb8\x55\x26\x0f\x25\x5a\x7d\x5e\x2d\xa3\x31\x51\ +\x27\x9c\x5a\xa8\x44\x9e\x87\x92\x66\xea\x24\xaa\x7d\xf0\xdc\x1d\ +\xe4\x33\xe6\xb9\x29\x71\x25\x5c\xe9\xc6\x07\xa2\xb3\x86\x2a\x60\ +\xa4\x70\x37\x49\x3e\x78\x97\x0f\xe0\xe5\x6f\xa7\x2d\xb4\x5e\xe0\ +\xb1\xa3\x55\x9c\x3c\x98\xc5\xf2\xce\x4e\xfc\x91\x9f\xfc\xb3\xf1\ +\x91\x97\x3e\xa9\x7c\xd9\x48\x6b\xd3\xba\x4d\x93\x48\x57\x74\x25\ +\xaa\xd4\x16\x5b\x6c\xb1\xc5\x16\xef\x27\xe4\x35\x68\x8b\x2d\xb6\ +\xd8\xe2\xfd\x02\xe6\x8e\x6f\x35\x6f\x24\xbe\xce\x2f\xcf\xe3\x71\ +\xfc\xef\x00\xdf\xf9\xd4\xb5\x6b\xc4\xe3\x0c\xea\x6a\x6f\x66\xcd\ +\x85\xad\x43\x7f\xe8\x17\x8c\xae\xbc\xf4\x89\xf8\x99\xff\xed\xdf\ +\x88\x6f\xbe\x36\x8f\xd7\x67\xab\x98\xad\xd8\x56\xc9\xb4\x1c\xbd\ +\x00\x12\x51\x27\xf9\x6c\x30\x35\x8b\x48\xaf\x0a\x60\x2a\x24\xda\ +\x13\x7e\x68\x7e\x33\x0d\x11\xc9\x72\xf3\x55\x0a\xdb\x37\xd5\xf8\ +\xbd\x1d\xdf\x6f\x97\x5f\x9c\x69\xf2\x60\x91\x84\x9e\xb2\x91\x95\ +\x4b\x26\x99\x2a\x65\xb9\xf4\xd1\x91\x85\x8d\x3f\xff\xd8\xf3\x67\ +\x38\xb8\xc2\x20\x43\xb4\xd7\xa8\x86\x16\x4e\x0d\xbd\x89\x2e\xdb\ +\xe9\xd2\xea\x12\xd0\x01\x53\x08\x42\x72\x0f\x43\xf6\xf8\xed\x39\ +\x85\xd9\xd0\xe3\xd3\x8e\xc3\x89\x16\xc5\x7b\x3b\x31\xbc\xb4\x1b\ +\xc3\x83\xdd\x18\x5c\xd6\xc2\x79\x7f\x18\x83\x5d\xd9\xa7\x85\x6e\ +\x9f\xb7\x53\xec\xb3\x91\x20\x5a\xfe\x60\x9c\x37\x23\xfc\xc9\x1c\ +\x36\x7a\xec\x58\xa7\x51\x06\xca\x85\x7e\x99\x90\x41\x97\x8b\xf2\ +\x98\xb6\x71\xd4\x41\x3a\x00\xdb\x51\x15\x1b\x2b\x5c\xd2\x66\x9a\ +\x92\x34\x5d\x49\x6b\x14\x92\x2c\xb9\x91\x36\x64\x61\xaf\xb2\x0f\ +\x55\xf0\xd9\x83\x7e\xcc\x5e\x1f\x44\xbc\xa1\xd5\xfd\xd1\x59\xc4\ +\x9d\x37\x22\xd8\x2c\x9b\xde\x8e\x38\x93\x5b\xbc\x19\x71\x7a\x53\ +\xbc\xd7\x63\xfd\xe0\xe5\x58\xdf\xf9\x46\xc4\x37\x7e\x2b\x7a\xbf\ +\xf9\xc5\x98\xff\xfd\x2f\xc4\xad\xff\xf6\xb5\x78\xf8\xe6\x2d\xe9\ +\x53\x26\xac\xf8\xe4\xf2\x53\x52\xc5\xe6\x8e\x19\x8f\xa2\x8d\x7c\ +\x2b\x31\xf7\x2f\xe3\x9c\x7c\xa9\x14\xf7\x13\xf5\x0f\xd7\x9f\x5c\ +\xd3\x37\x8a\x01\x6d\x7a\x41\x74\xb3\x79\x05\x1f\xa7\x70\x49\xaa\ +\xb0\x18\xea\x50\xae\xfb\x1a\xdf\xb8\x24\xb2\x6d\x12\xa9\x5b\x07\ +\x11\x19\xad\x43\xd5\xdf\x10\xf9\x86\x26\x7f\x86\x0c\xb4\x8d\x3e\ +\x24\xcf\xbd\x9f\xb4\x55\x24\xbd\x4d\x10\x57\xe2\xcf\xc3\x16\x5d\ +\x10\xd7\xb2\x9c\xa1\xff\x6c\xa7\xfc\x25\x6f\x25\x3e\x98\xab\xcd\ +\xef\x47\x6f\x7a\xaa\xfe\x3f\x8f\xe1\x6a\xaa\x7e\x52\x16\xef\x92\ +\xf2\x8d\x5b\x3e\x5d\xa5\xf6\xf5\xa7\x5b\x67\x47\x11\x37\x5f\x76\ +\x1a\x6f\xc2\x72\x13\x90\xce\x3c\x56\x82\x91\xce\x8d\x1d\xb5\x03\ +\x7d\x7c\x21\x2d\xa4\x95\x44\x6b\xc3\x66\x28\xcb\x88\x45\xe9\xb7\ +\x68\xe5\x6a\x5d\x77\x63\x5b\xb4\xba\x0c\xb5\x5b\xde\xa0\x2c\xfc\ +\x26\x11\xf5\x5f\xc8\x06\xd2\xab\xf8\xaa\xbb\x11\x15\x92\x56\x02\ +\x9f\x97\x92\xe3\xc4\x81\xc9\x1b\x77\xdc\x64\xd4\x39\xde\xe3\x37\ +\x53\xf8\x9d\x9b\xdd\x51\x4c\xe4\x38\xdf\xb9\x47\xdc\xb4\x2d\x28\ +\x79\x6e\x64\x5d\x0d\xc1\x56\xf7\x09\x07\xce\x09\x81\xaa\x24\xfb\ +\x50\xde\x5c\x6c\xc5\xd4\xe3\x5d\xcf\x75\x33\x6d\xf3\x33\x8f\x82\ +\x04\xf3\x01\x81\x1c\x73\xf3\xa6\x14\xba\x8a\x86\x26\x6f\xa0\x32\ +\x2a\x90\x1b\x66\xa4\xcb\x34\x7e\x23\x6d\x21\x39\xf9\x7c\xba\x8c\ +\xb1\x3c\x55\xa4\xbc\x2d\x24\x8d\x40\xdf\x20\x3f\xe7\xab\xbc\xd8\ +\x82\xb5\x7d\x44\x4a\x9e\xbc\x19\xa7\x67\xf3\x79\xdc\x97\xdc\x83\ +\x5b\xd3\xf8\xcc\x5f\xfa\xcb\xf1\xa1\x3f\xf9\xf3\xfe\x94\x24\x43\ +\x12\x4a\x4b\x8a\x44\xaa\xbe\x00\x8f\x8d\x38\x87\x2a\x57\xeb\x32\ +\xfd\x77\x9a\xfa\x3d\x43\x35\xef\x77\x0b\x6a\x79\xbf\x9d\x66\xac\ +\xae\x02\x1d\xe7\x79\x6f\x87\xb7\x95\xed\x0a\x40\x77\x1a\xa6\xe6\ +\xe7\xf3\x77\xac\xfe\xba\x8a\x97\x3e\xf1\xe1\xf8\xab\xbf\xf0\xef\ +\xc4\xd7\xbf\xf0\x20\xde\xd4\xf5\x93\x6b\x3d\xe7\x8d\x37\xd5\xba\ +\x65\xe4\x1c\xcc\x50\xa2\x9c\xcb\x44\x76\xf9\x8c\x75\x0e\xeb\xd0\ +\xe5\x7b\x9e\x24\xc7\x5c\xad\x7d\x53\x4d\xe7\x54\x39\xdf\x90\x6d\ +\xb3\xeb\xa6\xbc\x08\x45\x52\x1e\xe3\x14\x6f\x21\x0d\xe5\x72\x53\ +\x6d\x53\x13\x54\x0d\x55\xff\xad\x90\xc5\xca\x9b\xc1\x65\x58\xb0\ +\x8d\x2b\x7e\x5b\xb5\xb7\x50\x1e\x3b\xf1\xec\x13\xe3\x78\xee\xe9\ +\x7e\x4c\x46\x63\x6f\xe8\x21\x96\xa2\x3a\x62\x82\x1c\xa6\x64\x7e\ +\x35\x36\x25\x00\x54\x1d\xb7\x9b\x79\x9f\xfd\x4d\x99\xce\x61\x33\ +\xa6\x24\x6c\x9a\xa0\x8e\xc7\x06\x8a\x9b\x08\x49\x2b\xec\x4c\xa8\ +\xd5\x1c\x97\x9c\x55\x03\xe4\x93\x5a\x2d\x06\x71\xe5\xa0\x1f\xd7\ +\x2f\x9f\xc4\xea\x8c\x0d\x92\xbe\xdb\x69\x29\x9a\xb1\x6f\xa5\x09\ +\xe6\x6c\xf9\xad\xb8\xfb\xe0\x0b\x19\x96\x3e\x36\xd0\x52\x7b\x81\ +\xf2\x76\x4f\x51\x05\xf0\xd0\x01\x9f\xcb\xec\x0d\x27\x9e\x87\xfa\ +\x46\xff\x5a\xd7\x9b\xb1\xe6\xec\xb6\x09\x1d\xd4\x73\xa6\xf6\x91\ +\x43\x75\x78\xf2\x2d\x03\x6d\x4e\x82\x3c\x1e\xe1\x8b\x30\x5d\x18\ +\x7c\xf2\x3c\xfb\x45\xcb\xa7\x16\x4c\xb7\xc5\x6e\x50\x92\x19\xd0\ +\x38\x64\xaa\x4b\x88\xeb\xfa\x4d\xdb\x9b\x34\x2e\x03\xb5\xdd\xe4\ +\xf0\x28\x2c\x92\x76\x23\x5e\xaf\x87\x46\x26\x2f\x28\x81\x4e\x74\ +\xea\xaf\x80\xee\x58\x6f\x65\xd9\xd6\x39\x77\x80\xa7\x5c\x10\x23\ +\x4a\x1e\x26\xe3\x83\xc2\x56\x32\x64\x95\x4a\x91\xc4\x2f\x34\x8d\ +\x1a\xb0\x09\xaa\x3e\xbe\x8e\x9d\x98\xf3\x09\x75\xe7\xa3\xeb\xb3\ +\x7c\x9f\x5f\x72\x7e\x43\x2d\x86\xb1\x9c\x0e\x62\x7e\x76\x37\xd6\ +\xd3\x63\x55\xc7\x4c\x8e\xc9\x43\xb5\x8c\xab\x20\xfd\x8d\x75\x4f\ +\x3f\xc6\xa3\xdc\x84\xe6\xb7\x6a\x73\xae\xff\x76\x28\xe5\x10\xaa\ +\x15\x2d\xba\x21\xd1\x4d\x81\x08\x97\xfa\xef\x88\x24\xb9\x99\x67\ +\x37\xb4\x11\xa3\x40\x86\x3b\x5c\x91\x5d\x93\x3b\x64\x51\x9e\xf3\ +\x3f\x8e\x7b\x9a\x43\x5e\xbd\x34\x8a\xdd\x3d\x85\x75\xfe\x54\x59\ +\xda\x3c\xf1\x16\xfd\xa3\xa0\xea\x6a\xe1\xb3\xb8\xc3\xc9\x9e\xe7\ +\xb0\x0d\x63\x9e\xaa\x7a\xd6\x1a\xa2\xa7\x3a\xf6\x1b\xfe\x8e\x6b\ +\x53\x34\x39\x8a\x48\x3a\x89\x1c\xd5\xd3\x3a\xfa\xa3\xc7\x3a\x3b\ +\xce\x77\x59\xda\xc8\xe0\xf2\xd8\x68\x55\x20\xb9\x82\x08\xcb\x55\ +\x46\x25\x25\xdc\xcc\x67\x31\xcb\xfd\x94\x18\xcd\xae\x14\x5e\x68\ +\xce\x7e\xf4\x4a\x3f\x7e\xf4\x63\x7f\x3a\x3e\xff\xf9\x3f\xe2\x79\ +\x17\xf2\xb5\x8e\xf2\x78\x11\x6a\x4c\xd1\xbd\xc5\x16\x5b\x6c\xb1\ +\xc5\xfb\x0a\x83\xbf\x29\x14\x7a\x8b\x2d\xb6\xd8\xe2\xfd\x81\x76\ +\x6e\xfc\x28\xba\xf3\xc9\xb7\x92\x7b\x17\xf0\x9d\xa9\xc7\xc0\x9a\ +\xf2\x9d\x4c\x7e\x3b\x93\x64\xc8\x12\xec\xb1\xa9\xb6\x3a\x8b\xe7\ +\x3f\xfd\xc3\x71\xeb\xe8\x61\xfc\xc6\x7f\xf2\x77\xe3\xf0\xfa\x7e\ +\xec\x68\x12\xce\xd2\xde\x82\xf9\x5f\x12\x98\x90\x97\x7f\xb9\xb2\ +\x66\x01\x49\x74\xe1\x15\x40\x6d\x6e\xa2\xe8\x28\x15\x2c\x28\xe0\ +\xfb\x09\x4d\x2f\x5e\x4a\x2a\x82\xf8\x26\xa0\x4a\x48\xb4\xa9\xa2\ +\x0b\x38\x96\x9d\x12\xe2\xac\x13\x3d\x05\x62\x13\x65\xcd\x16\xcc\ +\x3c\x0c\x87\x95\x46\x3e\x6c\x73\xeb\x01\xbf\x88\xe2\xd9\x4e\xfd\ +\xb1\x48\x46\xde\x51\xac\x7f\x79\x3b\x8e\x37\x6f\x78\xfb\x63\xa4\ +\xc5\x16\x37\x18\xc4\x5f\x6b\x89\x9c\x4f\x2b\x4b\xde\x37\xb5\x25\ +\xe7\xb7\xe9\xea\xc6\x0e\x72\x49\xe3\xdb\xc1\x57\x3c\xbe\x9d\x6d\ +\x23\x5e\xf9\x14\x1a\x7b\x30\xcd\x28\x76\x9c\xe7\x99\x5b\x8d\xac\ +\x80\xef\x05\x7e\x22\x6f\x0f\x54\x9a\x83\x2d\xcd\x74\x8a\x93\x15\ +\x62\xf5\x7d\x33\xa6\xbf\x50\xf9\x7a\xc3\xd8\xdd\xd1\xc2\xfd\x60\ +\xa1\x42\xcc\xa3\xc7\x9b\x47\xdc\x40\x9f\x9f\xc4\x5a\x7d\x25\xee\ +\x1e\x47\xef\x8d\x7b\xd1\x7b\xe5\x66\xf4\xbe\xf6\x7a\xac\xbe\xfc\ +\x66\x9c\xfe\xfa\xb7\xe2\xce\xaf\xbc\x1a\x77\xbe\x76\x14\xc7\xf7\ +\xe6\xb1\x9e\x0f\xfc\x29\x37\x43\xd9\x70\x43\x80\xc5\x9d\xb3\x34\ +\x4a\xdf\x11\xf0\x1a\x76\x07\x4d\xf3\x65\x83\xb4\xed\x26\x74\x7d\ +\x8a\x9a\x37\x28\xa8\x3f\x95\x66\x3c\x88\xe1\xa5\x89\x3f\xc1\xe9\ +\x37\x0b\xa9\x7b\xe2\xe9\x1c\x55\x9e\xb4\xd2\x4b\x16\xc0\x14\xf9\ +\x14\x46\x2e\x43\x09\x64\x9a\x8b\x40\xdf\xab\x65\x40\x96\x34\xc8\ +\x9b\x57\x93\x39\xd0\x2d\x6b\x91\xa9\xaa\xb1\x81\x9b\xa2\xa7\xb3\ +\x58\x1c\xcd\x54\x6f\x92\x65\x53\x5a\x71\x98\x43\x5a\x02\x69\x4b\ +\xa2\xb2\x37\x50\xc2\xe9\xd5\xc8\xcc\xfb\x11\x59\x23\x99\x36\x4b\ +\xc6\x8c\xd4\x87\x77\x06\x8b\x38\x78\x76\x2f\x0e\x3e\x7a\x39\xfa\ +\xe3\x7d\xad\xea\x97\x31\x58\xb2\xa1\x26\x59\x09\x7a\x73\xbb\xbf\ +\x88\xfe\x52\x2e\xe4\xa6\xc7\xd1\xbf\xf5\x1b\x11\x2f\xff\x5a\xc4\ +\xd1\xab\x92\x29\x9f\x08\x9d\xa8\xde\x71\x3a\x3f\x62\x35\x8f\xa3\ +\xdb\x67\x71\xfa\xb5\x55\x3c\x78\x8d\xb7\x92\x16\x31\xe0\x9e\x83\ +\xf4\xa9\x16\x74\x30\x61\x3a\xeb\xa8\xd6\x15\x87\xcc\xd7\x9e\x65\ +\xde\x1e\xa9\x07\x61\xca\x97\x89\xda\x74\x35\x0f\x80\xa4\x8e\x8e\ +\xef\xf2\x01\x81\xac\x1f\x93\x15\xd2\xe9\xb1\x47\xc5\xe2\x0d\x37\ +\x36\xd3\xfc\x56\xda\x2e\x1b\xea\xc3\x18\xee\x8d\x62\xec\x37\x58\ +\xd5\xe7\x74\x4e\x5b\x4e\x8a\xdd\xe6\xfe\x17\xaf\xab\x0f\x28\xbe\ +\xde\x8c\x73\x24\x75\xec\x88\x2e\x2a\x27\x7b\x41\x0d\xd9\x66\xba\ +\x3d\x63\x8e\x1d\x1b\xf7\xbc\x99\x96\x7d\x9d\x1b\x77\x15\xb9\x89\ +\xa6\xd4\xe5\x66\x7c\x85\xab\xc9\x5a\x8b\xef\x3b\xdf\x4a\x57\x64\ +\xbc\x91\xa6\xfe\xd9\xe3\x13\x8f\x6c\x74\x71\x33\x5c\xc3\x02\xf7\ +\x18\xb9\x77\x64\x13\xa0\xc5\xf6\xc6\x34\xc9\xe9\xd3\xa6\x75\x50\ +\x98\xfe\xc3\x98\xef\xba\x13\xfc\x19\x2b\xd4\x2c\x96\xf1\x60\x3a\ +\x8f\xbb\xf7\x97\xf1\x81\x3f\xf8\x27\xe2\xf3\x7f\xeb\x6f\xf8\xc6\ +\x99\xeb\x16\xfb\xbd\xab\x26\x34\x8d\x83\xf2\xef\x16\x6d\x9d\x80\ +\x56\x23\xd4\x66\xdc\xf7\x1c\xef\x71\x76\xef\x6b\xd4\x86\x78\xbb\ +\x3a\xa9\xf1\xf8\x5d\xf7\xae\xa2\xdb\xcf\xba\x19\x74\xe8\x86\x05\ +\xc1\x39\xab\xf9\x94\xc6\xbe\x8f\xbe\xf4\xe9\xb8\x77\x7b\x16\xff\ +\xe5\x7f\xfb\x8b\xf1\xdc\x73\xd7\x63\x67\x57\x7d\x7d\xe1\x81\x40\ +\xfd\xdf\x09\xca\x3f\x07\xc6\x9d\xcd\x82\xa3\x0e\xca\xbd\xb1\x5e\ +\xa8\x52\xda\xa8\xac\x66\x2c\x91\x20\xa3\x02\xe7\x93\xaf\x47\xca\ +\x63\x20\x9d\xd6\x5a\x84\x11\xdb\x44\x72\x2a\x3f\xb5\x2b\x2d\xb2\ +\xd8\x44\xd8\x91\xe8\xb5\x25\xc5\xa1\xb7\xb5\xe5\xed\x90\x29\x4a\ +\x6a\xe9\x45\x15\x79\x58\xa7\x88\xc1\xb0\x17\xe3\xc1\x6e\x5c\x3e\ +\xec\xc5\x5c\x63\xc2\xc9\xf1\xc0\xef\x42\xfb\x37\xb8\x6c\x8c\xff\ +\x53\x83\xc3\x72\xb5\x0e\x0b\xac\xcf\xb9\xc0\x4d\x7e\xbe\x15\xcf\ +\x16\x3e\xe3\x4f\xda\x4c\x55\xa4\x54\xa6\xae\x69\x0c\x18\x28\x42\ +\x12\x39\xcc\x2b\x69\x40\x5b\xe2\x6e\x9a\xc2\x93\x10\xfa\x9b\x28\ +\x91\xc4\xf4\x56\x83\x78\xe6\x89\x49\x7c\xe6\xc3\x67\x1a\xef\x26\ +\x7e\x40\x6b\x3a\x5d\xc6\xec\x4c\x36\x31\x60\x7a\x8c\x5b\xc4\x82\ +\x07\x56\x26\x4f\xc7\xde\xf8\x5a\xda\xdc\x5b\x4a\xb5\xe2\xb1\x9e\ +\xeb\x8d\xae\xcc\x8b\xd9\xc3\x38\x3d\xf9\xba\x74\xea\x9a\x3b\xd1\ +\x38\xbc\x9c\xfb\xad\xb5\xa3\x7b\x67\x71\xeb\xa4\x17\x47\xd2\xeb\ +\x07\x97\x32\x7b\xb9\xb4\xc9\xf6\xe3\x4c\xc3\x51\x00\x3b\x8b\x23\ +\x0a\xd2\x5d\x50\xc2\x14\x29\x69\x98\x19\x0f\x6f\xa0\xc3\xce\xee\ +\x28\xf6\x78\x70\xac\xcc\x55\x41\xad\x02\x00\x59\x92\x35\x38\x1f\ +\xae\xf4\x4a\x09\xb3\x5f\xb5\xf5\x0d\xb2\xef\xb5\x76\x36\x69\x0b\ +\x81\x47\xcd\x80\x94\x34\x51\xa3\x63\xa6\xeb\xd3\xf1\xc9\xb2\xfc\ +\xb6\xa0\xf8\x45\x2f\x0f\x03\xa5\x8c\x52\xc1\xab\x09\xaa\x85\x54\ +\x94\xfb\x09\x28\x91\xa5\x22\xaa\x6d\x95\x0f\xdb\x75\x2b\xba\xc6\ +\xd9\x97\xed\x7c\x56\x6f\x24\xf2\xda\xde\x38\x9e\xb9\xba\xa3\xa9\ +\xa7\xd6\x01\xfd\x51\x2c\xe3\x30\x7a\x93\xeb\x92\x99\xe4\x3c\x94\ +\x2b\xb3\xdb\x1a\x3b\xc7\xee\x13\xcb\xb3\x97\xe3\xec\xe8\xbf\x8f\ +\xc5\xe9\x57\x74\x0e\x6b\x8e\x2d\xa0\xb6\xcf\xbc\x9c\x1c\x95\x8c\ +\xba\xc2\x51\xb8\x6f\xde\xde\x8d\xa3\xfb\xba\x2e\x6b\x32\x85\x46\ +\xc7\x91\x08\x74\x08\xd7\xa5\xc3\xc9\x74\xfa\x6a\x77\x91\xcb\xd2\ +\x10\x80\xca\x36\x71\xb8\xc4\x43\x34\x2c\xb9\x4c\x57\x78\xa0\x21\ +\x12\x6d\x50\x7a\x4b\x20\xa5\xe5\xf2\xbf\xe1\x53\xa1\x35\x4c\xee\ +\x5e\x8b\xf4\x06\x9a\x47\xf5\xe2\xfa\xa5\x91\x3f\xf5\xe8\x17\x23\ +\x3d\xd1\xa1\x3d\x8a\xf1\xb6\x59\xa8\x7a\x5a\x62\x03\x70\xd1\x6a\ +\x53\x9c\x47\x05\x25\xcd\xbe\x66\xdb\xdc\xde\xa2\x54\xb8\x21\xeb\ +\x36\xd6\x77\xac\x25\x92\xeb\x14\xc0\xb9\x96\xac\x49\x5f\x69\xf7\ +\x4b\xd1\x4c\x9f\x74\x86\xaa\x89\xd8\x48\xa3\xa9\x3c\x0a\x59\xc0\ +\x9b\xdd\x45\x3e\x8b\x91\x81\x76\xfe\xd7\xe1\xfb\xdf\x39\xd8\x61\ +\x42\xcd\x83\xe2\xf8\x1c\xc2\x69\x8d\xb5\x8e\x71\x9c\x9e\x1d\xc7\ +\xbd\xaf\xaf\xe2\xc3\x4f\xff\x64\xfc\xe3\x7f\xe4\xaf\xc4\xce\x68\ +\x2c\xbe\x2c\x77\xfd\x56\xfd\x6d\x39\x4a\x23\x17\xbf\x1b\x5f\x69\ +\x50\x64\xb6\xd8\xe2\x3b\xc0\xb6\xf7\x6c\xb1\xc5\xbb\x87\xed\x86\ +\xda\x16\x5b\x6c\xb1\xc5\x5b\xe0\xdb\x9f\x74\x74\x53\xbc\x93\xd4\ +\x8f\x97\x67\x83\x68\x7d\x7a\x16\xcf\xff\xbe\x9f\x8c\x2f\xfe\x37\ +\xff\x20\xee\xfd\xa3\xdf\x8c\xc3\x6b\xfc\x4e\xc3\x2a\x86\xdc\xfc\ +\xf4\xbc\x3a\x27\xf5\x1c\xf2\xa6\x48\x4e\xb6\xad\x49\x87\x5c\x5c\ +\xb7\x0b\x31\x2f\x8f\x1c\x29\x1a\x06\xff\x24\x61\xd1\xe0\x05\x45\ +\x4e\xf0\xeb\x91\xf8\x14\x90\x97\xe2\x05\x85\x32\xd3\x5a\x8b\x98\ +\x28\xd9\xe6\xb0\x8f\xe8\x4c\x8f\x10\xb0\x49\x15\x29\x58\x0f\x9b\ +\xe8\x0a\x4a\x79\xe6\x82\xbe\xd4\x6c\x12\xdd\x22\x6c\xaf\xe4\xfd\ +\xd4\x22\x0b\xae\xf1\x48\x8b\x2e\x2d\xb8\xf8\xb4\xdb\x5e\xde\xd0\ +\x66\xe1\x9b\xf7\x8c\x59\x48\xe3\x64\xaa\x37\xd5\xd2\xd5\xdf\x35\ +\x22\x9d\x7f\x6b\xad\xd0\xdc\x7c\xf7\xe7\x96\xb8\x41\x8f\xef\x32\ +\x8b\x2f\xaf\xa9\xa7\x02\x9b\x5c\x9d\xf9\x16\x2a\xe1\x44\x92\x6d\ +\x9a\x0a\xeb\x71\xd9\x3a\x71\x6e\x67\x96\x9c\x7d\xdf\x3c\xe7\xd5\ +\x10\xde\x26\xe4\x89\xea\xb1\xfa\xc1\xce\x8c\xf8\x45\xc4\xc9\x32\ +\xe2\xcd\x59\xf4\x5e\xbf\x1b\xbd\x2f\xdd\x8e\xe5\x17\x6f\xc7\xd9\ +\xaf\xbd\x1e\xc7\x5f\xb8\x1d\x0f\xbe\x7c\x2b\x6e\x7e\xe5\x7e\xdc\ +\x7f\xfd\x24\xa6\x0f\xf8\xb4\xd1\xc4\x4f\x47\xb2\xa8\xac\x59\xb9\ +\x9f\x14\x1b\x73\x91\x67\xa2\xb2\xce\x21\x4b\x5d\x69\x90\xf2\x26\ +\x1f\x4d\x23\x86\xdb\x06\xc7\x26\xa7\xda\x66\x78\x79\xe2\xfa\xa5\ +\x8f\xf3\xd9\x3d\x51\xbe\x29\x91\xc2\xa9\xc3\xfd\x49\x44\xe6\xa0\ +\xa3\x2b\x17\x16\xed\xad\x3f\x58\x85\x03\xea\xef\x7f\x19\x5e\x04\ +\x17\x14\xd2\xc9\x71\x25\x9d\x4b\xe1\x0e\x44\x69\xc4\x21\xbd\xed\ +\x14\x8b\xb0\xe5\x94\xcf\x72\x15\x8b\x93\x59\x2c\x8f\xe6\xb1\x9e\ +\x29\x95\xd2\xf0\xe7\x7f\x92\x23\x6b\x67\x56\x65\xb6\x38\x17\x6c\ +\x91\x65\x48\xea\x62\x90\x3f\x5d\x60\xb8\xe2\xf3\x51\x8b\xb8\xf1\ +\xc4\x4e\xec\xfe\xc0\xd5\x88\xb1\xf8\x27\x0f\xf2\x33\x9f\xa7\xf7\ +\xa3\xb7\x38\x89\xde\xe9\xbd\xe8\x9f\xdd\x13\x2d\x77\xf4\x7a\xf4\ +\xee\x7c\x2d\xe2\xe5\x7f\x14\xf1\xe0\x1b\xea\x47\xf7\x55\xcf\x73\ +\x69\x54\x25\xef\x2a\xb7\x1d\x91\x83\x75\x2c\x67\xd3\x38\x7e\x7d\ +\x1e\x27\xbf\xb5\xf6\x9e\xdb\x6a\x39\x43\xa2\xdc\xac\x50\xc6\xbe\ +\x53\xc4\x7f\xa9\x17\xd3\x1d\xd4\xf0\x06\xf3\x22\x20\x80\x8e\x4e\ +\x49\x4b\x9a\x9a\x34\xfd\x0e\xb3\xb4\x77\x0b\x85\x31\x0e\x15\x90\ +\x69\x9a\xdf\x96\x4a\x9b\x75\x90\x5b\x71\xc7\x76\xac\x33\x66\x4f\ +\xe7\x3e\x37\x19\xe5\xf3\x66\x1a\x2e\xfb\x1c\x89\xcb\x59\xa6\x83\ +\x75\x70\x84\x38\x87\xee\xcd\x14\x70\x81\x88\xd0\xca\x34\x54\x11\ +\xa4\xcf\xfb\xb7\x46\x34\x6e\x0c\x34\x36\xb1\x99\x9f\xfd\x1d\x91\ +\x22\xc4\x4d\x1d\x12\xe1\x37\x77\x65\x14\x2f\xcf\xfd\xac\xc2\x71\ +\xf8\xf4\x9b\xb5\x6f\x00\x79\x4c\xe0\x8d\xb4\xb9\xc2\x6c\xa4\xb1\ +\xd9\xab\x78\x77\x65\x3a\x17\xbe\xb5\xe8\x28\x59\xf2\xe4\x26\x92\ +\x7d\x2b\xf4\xed\x2c\x8f\x8f\xa9\x7a\x55\x36\xd4\x56\x71\xcc\xa7\ +\x1e\x1f\xce\x62\xf7\xca\x0b\xf1\x53\xff\xfb\x7f\x2f\xf6\xaf\x3e\ +\x19\xfc\x26\x27\x1b\x6f\x2a\x89\xe5\xa5\xe6\x5d\xc6\xa6\xc2\xb7\ +\x0a\xbd\x27\xf8\x3e\x64\xf9\xbe\x04\xf5\xf0\xed\xd4\xc5\x79\xd9\ +\x4e\x37\xfe\xee\xf0\x38\x45\x64\x48\xdc\x39\x43\xeb\x18\xc2\x79\ +\xa8\x73\x79\x11\xf3\xf8\xf4\x8b\x3f\x1d\xff\xe8\x57\xff\xbb\x78\ +\xf5\xb5\x2f\xc7\x93\x4f\x5e\x8b\xd5\x84\x87\x10\x74\x7e\x68\xdc\ +\xf0\x75\x50\x72\x9c\x5f\x8d\x36\xf1\xca\x68\x61\x3d\x9c\x4b\xf0\ +\xcd\x71\x9c\x89\xe2\x9b\xc5\x51\x02\x9c\x87\xf2\x09\x4b\x98\xfd\ +\x6b\x08\x36\xd6\x9d\x8f\x50\x53\xb1\xa9\x00\x8a\x27\x64\xa2\x4d\ +\xb9\x2e\x4f\x9c\x12\x97\x73\xbe\xa4\x5b\xff\x9d\xc3\xe3\x8c\x1c\ +\xfa\xb2\xd4\x30\xa4\x5f\x4c\x3e\x8d\xbd\xb7\xb3\x17\x07\x07\x8c\ +\x2b\xbd\x38\xd3\xe5\x66\xc1\xa6\x7a\x19\xc7\xb9\x4e\xa4\x69\x8c\ +\x73\x66\x79\x6c\xad\xb6\x51\x68\x36\x2d\x56\x6b\x3e\x23\xc9\x9b\ +\x7a\xfc\x46\x99\x78\x8a\x66\xe4\x61\x24\xf2\xe8\xe4\x30\xa5\x24\ +\xef\x4c\xda\xc0\xaa\x38\x54\x87\x40\xd2\x35\x1d\xf0\xd1\x76\x89\ +\x4a\x96\x25\xab\x74\xe5\xc1\x61\xf4\xba\xb4\xb7\x13\x1f\x7b\x89\ +\x41\x53\xd7\x41\x5d\xe3\x67\x1a\xef\x74\x39\x94\x1c\x0d\x45\xf9\ +\x07\xba\x96\x4c\x63\x71\x76\x12\x3b\xfb\x87\x31\x1a\xee\x2a\x1d\ +\x9f\x78\x94\x95\x3d\x95\x45\x32\xf3\xd9\x2c\x1e\xde\xff\x8d\x58\ +\x9d\xde\x8d\xd1\x84\xdf\x91\x62\x96\x49\x39\xe7\x71\xf7\xc1\x49\ +\xbc\x7a\x7f\x1d\xa7\x7c\xfd\x2f\x55\x3a\xdf\x7c\x70\x29\x8d\xc9\ +\x6a\x14\x2d\xdf\xed\x20\xb2\x9a\x59\xcb\xb5\x51\x3e\x0b\xba\x96\ +\x5c\x87\xa8\xe1\x73\x9c\x7b\x07\x83\xd8\xd5\x75\xce\xe3\xb8\xf9\ +\x59\x97\xc8\x65\xba\xf6\x08\xef\x3c\x2a\xff\xa2\x38\xd0\xa4\x4b\ +\x35\x09\xd3\x2d\xa3\xa6\xad\x1c\x97\x85\x83\xc0\x71\x31\x5b\xc5\ +\xd1\xf1\x3a\xe6\xf4\x01\xf6\x18\x1d\xd3\x22\x25\xd1\x42\xc2\x24\ +\xf9\x64\xeb\xc6\xbc\xce\xf5\x96\x29\x93\x4b\x38\x53\xc2\xc8\x64\ +\x25\x2c\x64\x9f\x4a\x59\xe6\xed\x3c\xc4\x72\x65\x67\x10\x4f\xb3\ +\xa1\xc6\x43\x75\x9a\x53\x2d\x74\xbd\x1c\x8e\xc7\x31\x1a\xed\x69\ +\x9e\x3f\xca\x34\xba\x4c\xf3\x40\xc9\x62\x75\xaa\x29\xd6\x6f\xc5\ +\x83\xbb\xff\x95\xfa\xc1\xaf\x4b\xcb\x43\x99\x80\x04\xc6\xa5\x5e\ +\x1f\xbd\x1e\x20\xa4\x3a\x5f\xac\xe3\x2b\x37\x77\xe3\xc1\xbd\x88\ +\xd1\x78\xee\xfc\xab\x33\x4c\x64\xa8\x43\x1a\x95\x74\xb5\xa1\xce\ +\x79\x29\x40\x9f\x73\x3e\x59\x1e\xe3\x82\x74\x49\x64\x88\xa3\x55\ +\x38\x24\x14\xa2\x09\x03\xd7\xe7\x39\x9d\x72\x19\x26\xbf\x1a\xd6\ +\x39\x23\x1b\x7a\x9a\x33\xee\x8e\x07\x71\x8d\xcd\xb4\x2b\xfe\x72\ +\xb8\xdb\x28\xad\x23\x37\xd0\x52\x56\x5f\xb4\x9d\x47\x72\x3b\xc7\ +\x22\x96\x69\xb1\xa9\x58\x5f\xf8\x6c\x5e\xb2\x0e\xf3\x1c\x8e\x31\ +\xa6\x46\x74\x51\x32\xb6\x05\x85\xa6\xb7\xb0\x89\x66\x8d\x3a\xd7\ +\x99\x37\x31\x6d\xf2\x4f\x08\xe8\x9f\xb1\xcf\x9b\x69\x52\x67\xbf\ +\xa0\xb0\x1a\x64\x94\x0e\xc5\xc7\xab\xe2\x8c\xdf\xe6\xe0\x7b\x70\ +\x63\x7e\xc5\x08\xa1\xf1\x62\x79\x12\x6f\x7c\xeb\x24\xae\x2d\x7e\ +\x30\xfe\xcc\x9f\xf8\xd7\xe2\x89\x6b\x37\x34\x86\xa8\x3e\x25\xd6\ +\x8c\x93\xa0\x9c\x2b\x99\x29\x91\x0e\x15\x6c\x04\x0a\x2e\xe2\x6d\ +\xb1\xc5\x3b\xc3\xb6\xf7\x6c\xb1\xc5\xbb\x87\xed\x86\xda\x16\x5b\ +\x6c\xf1\xfe\x47\x99\xb4\x7e\x3f\xf0\xdd\x4d\x3a\x30\xfc\x9d\x68\ +\xa8\x32\xc5\xaf\x41\x16\x2a\x23\x05\xd7\xe3\x78\xfe\x27\x7e\x20\ +\x7e\xf9\x3f\xfb\xaf\x62\x7d\xf7\x66\x5c\xe6\x53\x86\xdc\xa0\xd0\ +\x64\xdc\x9f\xfd\xf2\x04\x5e\xff\x9a\xa4\x6f\x2e\xa4\x51\xd4\xde\ +\xbc\xa9\xd6\xb0\x44\x03\x1c\x73\x91\x91\x34\xab\x1f\xd3\x25\x5c\ +\x6f\x7e\xd7\x85\x0b\x6a\x52\xae\xa5\xab\x63\x31\xe0\x6c\xe4\xf2\ +\x56\xab\x74\x71\xaf\xc5\x91\x1c\x52\x57\x45\xcb\x37\xd1\xf1\x85\ +\x2e\xbb\x03\xb3\x6b\x3e\x00\x63\x15\xf6\x0d\x25\x6e\x32\xc3\xea\ +\xe7\x82\xab\xbf\x33\x8c\xe1\x64\x12\xbd\xfd\x49\x0c\xb9\xd1\xa0\ +\x45\x34\x8b\x64\x3e\x17\xe2\x62\x95\x85\x6a\xde\xec\x96\xcd\xfc\ +\x36\x09\x0b\x35\x7f\xe1\x45\x31\xe5\xf3\x8f\xe8\xf2\xe6\x1a\xbf\ +\xbb\xc6\x27\x22\xe1\x6b\x51\xc7\x2d\x71\xea\xb9\x16\x8b\xdc\x1b\ +\xbb\x2a\xea\x02\x09\xa1\x4e\xdc\xc6\xa6\x42\x17\x66\x4b\x10\x71\ +\x29\x23\x89\x75\xa2\x47\x69\xb8\x21\x40\x9d\x2e\x17\x2a\xee\xd1\ +\x2a\xd6\x0f\x06\x31\x39\x52\x3f\x38\x11\xe3\x8d\x79\x2c\x5f\x3e\ +\x8b\xe9\x57\x6e\xc5\xf1\x2f\xbf\x19\xb7\xbe\x7c\x33\xee\x7c\xeb\ +\x4e\xdc\x7a\xed\x38\xee\xbf\x7e\x1c\x47\xf7\x17\xb1\x38\x55\xba\ +\xf9\x44\xea\xfb\x79\xe3\xbe\xe4\x97\x1b\x84\xfe\x4f\x1f\x02\x57\ +\xec\xcf\xa3\x50\x88\xac\x3f\x9c\x0f\xb0\x0c\x07\x0d\x09\x58\xa6\ +\x26\x80\x54\x79\x58\x04\x53\x77\xbb\xa3\x18\x1e\x8e\xfd\xb6\x8e\ +\x37\x31\xe1\xfb\x26\x63\x0a\xe3\xb9\x69\x09\x56\x54\x66\x47\x77\ +\x9b\x1f\x2c\xf8\x62\x14\x91\x34\x12\x38\x61\xca\x13\xac\x6c\xfb\ +\xe5\x66\x05\x11\xf4\x87\xaa\x33\x0f\x8a\x56\x25\x41\x2e\x57\xb1\ +\x3a\x9b\xc7\xfc\x78\xe6\x0d\xb5\xbc\x3b\x26\xd8\x9e\x0a\xe4\x53\ +\xfc\x62\x74\x65\x01\x7a\x0a\xf9\x38\x48\x19\x37\x31\x38\x9f\xf2\ +\xa9\xfe\x61\x5c\xd9\x5f\xc7\xee\x07\x76\xa3\xf7\xb4\x06\x06\xf2\ +\xe7\x0e\xe7\xbd\xb3\x88\xe9\xad\x88\x07\x37\x23\x5e\x7d\x2d\xe2\ +\xd6\xd7\x23\x5e\xff\x62\xc4\xed\x2f\x47\x9c\xbc\xa2\xc4\xbc\x99\ +\x76\x22\x5f\xfd\x64\xac\x0e\xbe\x83\xaf\xb4\x3d\x2d\xf9\x8f\xe6\ +\x71\xf2\xb5\x59\x3c\x94\xe8\xd1\x1b\x2a\x5f\x2c\x95\x5f\xb6\x09\ +\x37\x89\x9a\x7a\x73\xdd\x90\xc6\xff\x0d\x5c\x55\x26\x8a\xff\x58\ +\xa0\x87\x02\xa3\x63\x53\x98\x10\x8e\x58\xa4\xda\xd8\x42\xd1\x3f\ +\x14\xe9\x7e\x22\x96\x65\x30\x8d\xb8\x2a\xec\x37\x0a\xd4\xbf\xb9\ +\xc1\x33\x52\x9d\xed\x0f\x62\x7c\xa8\x31\x60\x7f\x1c\x23\xde\x4e\ +\xe3\x77\xd3\xf8\x0c\x93\x37\xd3\x48\x20\x9f\x0c\x0b\x79\xde\x26\ +\x50\xa3\xdf\x09\xd2\xf6\x4c\x51\x35\xa5\x9d\x1a\x33\x70\xde\x98\ +\xcf\xa7\xaa\x11\x60\xf4\x00\xbe\xa7\x93\x77\x77\xd4\x9c\xf4\xe2\ +\x92\x6b\xed\x5b\x56\xac\x03\xe3\xbc\xfa\x82\xbb\x38\x3c\x25\xf1\ +\xe6\x99\x1c\x1b\x69\xf9\x56\x9a\xc6\x04\xba\xa6\x9c\xef\x09\x57\ +\x40\x17\x7d\xfc\x6e\x22\xa4\xc7\x4c\x39\xaa\x23\xfb\xbd\x5a\xde\ +\x1b\x69\xea\xee\x72\xf3\xc5\x2a\xee\xcd\x44\x2f\x77\xe3\xa7\xff\ +\x9d\xbf\x11\x4f\x7f\xee\x27\x63\xbd\x58\xa8\x0c\xc8\x16\xeb\xdb\ +\x43\xc7\x7f\x37\x80\x2e\xec\xad\x35\x9a\xc7\x44\x1b\xf7\x9e\xe0\ +\x3d\xca\xe6\x77\x1c\xbe\x27\xf5\x56\xdb\xfd\xad\x94\x3f\x26\x4e\ +\x6c\x46\x7b\xae\x75\xc3\xe1\x3a\x3e\xf1\x81\x1f\x8b\xbf\xf3\x77\ +\xff\xa3\x78\xb0\x9e\xc6\xf5\x27\x27\x3c\xb1\x10\xfd\x15\x6f\xb2\ +\x23\x9b\x3a\xf0\x98\x63\xf9\xba\x4b\x18\x25\x25\x8e\x71\xd9\x59\ +\xc9\x4f\x56\xf2\xf3\x28\x94\xe8\x0a\xcb\xc8\xf9\x7c\x97\xb2\x7a\ +\x3d\x44\x4d\x15\xe6\x34\xaf\x89\xd2\x2b\x4c\x12\xf3\x5f\xe2\x40\ +\x9e\xb3\x30\x6c\x55\x9e\xcf\x85\xfe\xb6\x51\x12\x35\x63\x8b\x1c\ +\x9b\x18\x4b\x0d\x04\x94\x7c\xac\x79\xd4\xa1\xe6\x51\x57\xaf\x88\ +\xa7\x81\xe5\xe8\x74\xa8\x31\x6b\xc9\x80\xcc\xd0\x2c\x19\x8d\x07\ +\x8c\xa9\xe8\xc1\x2e\x08\xf9\x8c\x7b\xab\xb5\xe6\x25\xab\x33\xff\ +\x36\x99\x2a\xd9\x73\x97\xfe\x92\xb7\x82\x94\x6a\x54\x46\x3b\x65\ +\x9c\xd6\xeb\xe8\xf4\x17\x01\x6e\x4a\xd5\x50\xfa\x95\x6a\xe3\x1a\ +\x56\x01\x41\x5f\xe9\x45\x90\x23\xf9\xf4\x65\xcb\x70\xc4\x1b\x8b\ +\xea\x0f\xb2\x7d\xb9\x58\xfb\xcd\xa9\x39\x6f\xfa\x93\xc0\x17\x18\ +\x36\x11\xe4\xad\xee\xc6\xe9\xe2\x96\xe7\x4c\xc3\xe1\x8e\xae\x21\ +\xf9\x5b\x51\x67\xa7\xc7\x71\xef\xe6\xaf\xc5\xfc\xc1\x97\x62\x47\ +\xfd\x67\xbc\xab\xf1\x51\x15\xd8\xef\x2d\xe3\x6c\x3e\x8d\x9b\x77\ +\xce\xe2\xb5\x07\xa2\xcf\x8a\x05\x98\x28\x34\xed\x26\x0f\xaa\xc2\ +\x25\x10\xa3\x2d\x49\x1b\x4b\x5a\x6f\xc4\xa1\x87\x74\x44\xc9\x79\ +\x93\x48\xf5\xbc\x7f\x38\x8a\x9d\x9d\x32\x87\x42\xae\x26\x2d\xca\ +\x6a\x30\xfd\x5a\xdf\x2d\xe0\xc0\xeb\x72\xa1\xaa\x03\xd5\x47\x2e\ +\xfb\x6d\xa2\x25\x53\x4b\x86\xeb\x11\x1f\xe3\xd9\xa0\x5a\xc7\xd1\ +\xc9\x2a\x66\x0b\xcd\x59\x39\x0f\x2c\xd1\x02\xc9\xdc\x60\xad\xae\ +\xa0\xcd\xa0\xe5\x89\x99\xba\x01\xd7\xb4\xa4\x6b\x3c\xfd\x38\x6b\ +\x4b\x50\x94\xa3\xd5\xa6\x7d\xcd\xa1\x2e\xed\xad\xe3\x89\x2b\xa3\ +\x18\x8f\x57\xea\xcf\x0b\xf1\x4e\x62\xb5\x3c\x8a\x55\x7f\xa6\xf9\ +\xfd\x3c\x16\xea\xb3\x53\x85\x1f\x1c\xbd\x1c\x0f\x1e\xfc\xb2\xa6\ +\x58\xff\x75\x2c\x66\x5f\x50\xb3\x3f\xf4\x26\x5c\x1a\xc4\xc6\x29\ +\x90\xa5\x9c\xc7\xa6\x15\xa3\xa8\xa9\xfa\xf8\x57\x5e\xdf\x89\x87\ +\x0f\x16\x31\x1c\xd3\xd3\xb3\x4e\x1a\x7b\xed\xb5\xd6\xb7\xc4\x39\ +\xb8\xc3\x48\xae\xa9\xec\xf4\x73\x1e\xb6\x99\xc8\x16\x64\xe3\x97\ +\x70\x5b\x17\x15\xdd\x75\x87\xa5\x9a\x03\xf6\xc9\x2f\xf1\xa9\x4b\ +\x84\xe7\x49\x8a\x2b\x7a\x29\xe7\xee\x78\x14\xd7\x2f\xf7\xe3\xca\ +\x95\x9c\x4a\x7a\xd2\xe5\xd8\x56\x77\x43\x59\x7f\xf5\x4a\xa0\xa0\ +\x86\x90\xcd\xbc\x33\x5c\x39\x20\x8f\xd8\x82\x04\xe7\xe9\xc0\x0f\ +\x3c\xe6\xc3\x5e\xa0\x49\x64\x78\xec\xc2\x27\x4d\xa1\xe9\x63\x6c\ +\xa6\xf1\x0f\x8b\xcd\xfc\x9c\x6e\xe5\x5c\x89\x78\xb7\xa4\xfe\x37\ +\x36\xd3\x8a\x5f\x91\xe1\x22\x07\x95\xa4\x4d\xc8\x87\x21\x14\x92\ +\x9d\xbc\x99\x06\x93\xcf\xae\xc7\x5a\xeb\x4f\xd5\xe9\x9d\x3b\xb7\ +\xa3\x77\xfb\xe9\xf8\x85\x3f\xf6\xaf\xc6\x27\x3e\xfc\x69\x8d\x87\ +\x9a\x77\x79\xe0\x74\xc9\x0b\x0a\x85\x87\xe2\x36\xe2\x02\x10\xf9\ +\x96\x02\x5b\x6c\xf1\xb6\xd8\xf6\xa0\x2d\xb6\x78\xf7\xb0\xdd\x50\ +\xdb\x62\x8b\x2d\xde\xff\xa8\xf3\xc7\xf3\x33\x80\xf7\x68\x46\xf0\ +\xdd\x65\xf3\x9d\xa4\x56\x9a\x9a\xac\x37\xd0\x42\x6e\x11\x97\x6f\ +\x3c\x17\x3b\x3f\xf4\xb1\xf8\xef\xfe\x4f\xff\x61\x5c\x1e\x72\x93\ +\x63\xac\x05\xc1\x3c\xfc\xb4\x33\x33\x7c\x4f\xe4\x4b\x32\xcf\xed\ +\x73\x19\x97\x7f\xed\x0c\x9d\x45\x39\xab\x81\xfa\x09\xbe\x14\x2e\ +\x1e\x62\x45\x1e\x96\x37\xaf\x1c\x2a\x61\xc4\xbc\x08\x48\xde\x23\ +\x20\xae\xe8\x42\xd8\x92\xe6\x25\xdf\x4f\x9a\x62\x6b\x01\xa2\x89\ +\x96\xda\xa4\x1f\x8f\xb4\x48\xd2\x5e\xd9\x88\x96\x5e\x7f\xee\x4c\ +\xff\xfd\xe1\x28\x56\xbc\x05\xb2\x37\x8e\xd1\x64\x27\xfa\xa3\x49\ +\xf4\x77\x27\x31\xda\xc9\x37\x54\xfa\xc1\xce\x9a\x34\x28\x0d\x76\ +\xf5\xb4\x50\x5b\xb3\xd1\x03\x9b\xb7\x48\x58\xb4\xb1\x91\x36\x56\ +\xdd\xb3\x99\xe6\xdf\x5b\x93\x1b\x27\x5f\xab\x21\xe5\x5e\x6a\x40\ +\xf9\xe7\xcd\xac\xcc\xbb\xae\x7d\x9b\x52\x40\x34\x01\x48\xc9\x93\ +\xa7\xe9\x8d\x28\x07\xcc\xdb\x60\x2a\x9c\x6b\x56\xc1\xb7\xae\x72\ +\x01\x3f\xe7\xe7\xb1\x16\x71\x74\x77\x11\x67\x2f\x4f\xe3\xe1\xd7\ +\x4f\xe3\xc1\xb7\x4e\xe2\xd6\x57\x4f\xe2\xe6\xeb\x67\x71\xff\xee\ +\x32\x4e\x8f\xfb\x71\x76\x3a\x88\xb3\x29\x37\xb2\xb4\xfa\x5d\x72\ +\x23\x8c\xa7\xc2\xf3\xc6\x39\xed\x93\x8b\x66\x54\x53\x06\x74\x67\ +\x90\xa8\x8a\xae\x39\xb6\xcd\x8d\x59\x03\x9b\x30\xa7\xb2\x4b\x7c\ +\x4d\x83\xdd\xd4\x5d\x1c\x8c\x62\x7c\xa0\x76\x61\x83\x81\xba\x64\ +\x33\x13\xa1\x92\x0e\xd5\x80\xba\x22\x64\xbf\xb9\xa9\x20\x88\xb4\ +\x8c\x0e\x70\x5d\xfd\x0d\xcc\x49\xd2\x40\x48\x3c\x39\x6f\x36\x08\ +\xb6\xc7\x44\x1e\xf0\x2a\xaf\x84\xe4\xb2\x7d\x7b\x4a\xd4\xd7\x0a\ +\x7c\x31\x9d\xc7\xfc\xe1\x2c\x96\xb3\xa5\x6f\xb2\xb9\xdb\x91\xa0\ +\x62\x23\xf0\x18\x48\xa6\xc9\xfb\x42\x64\x64\x5a\xd0\x2a\xe4\x93\ +\x7c\x79\x33\x64\xac\xbc\x67\x71\xe5\x70\x14\xfd\x0f\xec\x45\x6f\ +\x9f\x36\x9d\xaa\x23\x9c\x46\x9c\xdc\x8b\x78\xf0\x66\xc4\xf1\x1b\ +\x11\xf7\x6f\x45\x9c\x8a\x5e\xdd\x51\x62\xc5\x0f\x66\x52\xa8\x05\ +\xbe\xc6\x0d\x6f\xa4\xf1\xfb\x69\x43\x55\x86\x16\xf6\x8b\x57\xe6\ +\xf1\xf0\x4b\xd3\xb8\xff\x25\xa9\x78\x38\x75\xfb\xab\xc7\x2b\x7f\ +\x11\x9c\x23\x58\x22\xa3\xfb\x14\x1a\x28\x69\x5a\x99\xe1\x8d\xf2\ +\x74\xe9\x0b\x90\xd1\xd2\x58\x75\x14\xf9\xda\xe5\x08\xc3\xf2\x78\ +\x51\x18\xbe\xef\x60\x3f\xd3\x15\x81\xe2\xa7\xe3\xcd\x12\xde\xb6\ +\xf3\xef\xbe\xeb\x3c\x1d\xec\x8f\x62\x74\x30\x8e\xa1\xfa\xd9\x90\ +\x8d\x75\xde\x56\xf3\x8d\x98\x4e\xba\x52\x9c\xee\xf9\x9a\xa5\x6d\ +\xa2\x4c\x40\x17\x91\x06\x1b\xbc\x86\x20\x75\x49\x2b\x82\x51\xc6\ +\x9f\x78\x64\xc3\xb8\x6e\xc2\x2b\x7f\xca\xe6\xf2\xca\x67\x23\x8d\ +\x07\x22\x70\x7e\xdb\x0c\x3e\x51\x9d\x0e\x9d\x7d\x5f\x84\x9d\x0e\ +\xc8\xcb\x67\x63\x8c\xdf\x4c\x8b\xf2\x99\xc7\xfa\x09\x23\x7e\x1b\ +\xcd\xd7\x03\x5c\x4d\xd7\xd0\xe4\x85\x90\x68\x31\xb0\x83\x2a\x21\ +\xec\xcd\x38\xb8\xa2\xf9\x3d\xa0\xfb\xeb\x61\xbc\xf1\xc6\x49\x7c\ +\xf6\xaf\xfd\xeb\xf1\x89\x3f\xf7\xcf\xb3\xb3\x16\x2b\x09\xd3\x33\ +\xf2\x5c\x2d\x09\x9d\xea\xdb\x80\xd3\x55\x74\xe9\x8a\x56\x67\x1e\ +\x6b\x3e\xa0\xc6\x9d\x4f\x77\x11\xef\x5d\xc2\xf7\x48\xed\xef\x38\ +\x74\x9b\xe0\x7b\xde\x3c\xe7\x95\xbd\x85\x72\xa2\x6a\xb4\xc7\x33\ +\x5d\xe4\x87\xf3\xb8\x76\xe3\x46\x5c\xdd\xf9\x50\xfc\xed\xff\xe2\ +\xdf\x8f\xdd\xab\x87\x71\xf5\xd2\x58\xe7\xcf\x42\xe7\x03\x67\x85\ +\xce\x0d\xf5\xf5\xec\x7f\x69\x3c\x7d\xde\x94\x74\x31\x2f\xf2\x3c\ +\x28\x05\xcc\xcc\x2c\xba\x47\xa1\xf0\x53\x0c\x3a\x75\xc1\xe1\x9c\ +\x27\x8f\x7c\x98\x25\xe5\x9c\xce\x87\x2a\x05\x9f\xf8\xe4\x91\x3c\ +\x25\x81\x28\x93\xf2\x39\x89\xb1\xc9\xe3\x46\x1d\xc5\xbe\x3b\x54\ +\x5d\x6c\x82\xf4\x35\xa0\x8c\x76\x72\x53\xed\xf0\xa0\x17\xe3\xf1\ +\x32\x66\xf3\xa1\xc6\x09\xae\x11\xfa\xe7\xb7\x2a\x49\xe4\xba\xcb\ +\xfa\x8b\xfe\x52\xfc\x65\x8c\xfb\xfb\xb1\xbf\x73\x35\x3e\xf0\xd4\ +\x4b\xf1\x91\x17\x3f\x10\x1f\xfb\xd0\xb3\xf1\xcc\x93\xcf\x68\xcc\ +\xde\x8b\xe9\x74\x1d\xf3\xf5\xb1\x54\xa0\x27\x75\x5c\x6c\x39\xdc\ +\x5a\xaa\x7a\x94\xb4\xeb\xce\x41\xa1\x21\x84\x2e\x6d\x6b\x36\xe4\ +\xf8\x64\x23\x1b\x2b\xbd\xe1\x2c\x5e\x7a\x6e\x1d\xfb\xba\x66\xf0\ +\x50\x02\xbf\x77\xb7\x5c\xf1\x89\x36\x49\xad\x19\xe9\x18\x1f\x15\ +\xd1\x5b\xaa\xac\xf7\x62\xc6\xf5\x75\xfd\x20\xd6\x8b\xdb\x71\x7c\ +\x72\x3b\xa6\xf7\xbe\x14\xb3\xe3\x2f\xc6\x5e\xef\x38\x76\x76\x67\ +\x31\xe8\x0d\x95\x56\x7f\x6b\xcd\xbd\xe6\xd3\x78\xfd\xe6\x69\xbc\ +\x7e\x6f\x1d\x53\x3e\x13\xed\x61\x97\xbc\xe5\xbb\xe1\xd2\x20\xc8\ +\xdc\x44\x4a\x8e\xfb\x94\x88\x1a\x36\xa5\xb6\xcd\xd2\x4b\x77\x32\ +\x73\xdc\x2e\xfe\x58\xd7\xb6\x83\x43\xde\xb0\x2a\xed\x81\x2b\xa9\ +\xbb\x80\x53\xd3\x57\x98\x97\x59\x34\x29\x6a\x5e\x1c\x71\xed\xa5\ +\x04\x21\x28\x90\x34\xb2\x19\x07\xa7\xed\x7b\xf5\x98\x7e\x62\xa1\ +\x7a\xe0\x93\x8f\xb3\x05\xbf\x37\x47\x3d\x95\xd8\xe2\xb9\xee\xf2\ +\xea\xf8\x08\x32\x57\x04\x53\x67\x57\x6f\xb5\x08\xa4\x1d\xe9\x57\ +\x7e\xf2\xb2\x5f\x0e\xd5\x46\x93\xe1\x22\x6e\x1c\xf6\x63\x6f\x57\ +\x16\xeb\xba\x36\x18\x9d\xc6\x2c\x6e\xc5\x6c\x7a\x33\xce\xd6\xb7\ +\xe2\xe1\xd9\xcd\xb8\x77\xf7\x4b\x71\x7c\xfa\x0f\x63\x7e\xfa\x6b\ +\x9a\xf3\xbd\x19\xbb\x13\x36\xc6\x24\xef\x49\x64\x5e\xaf\xc9\xc8\ +\x4d\x29\xe4\x26\x8f\xe2\x15\x7e\xa8\x7e\xfd\xd5\xd7\xf7\x35\xf7\ +\x56\x9f\x18\xe5\x9b\x51\x88\xe5\x11\xa2\xa1\x12\xdd\x40\x43\xa3\ +\x5f\x01\xd7\x51\x96\x24\x53\x65\xbb\x18\x0e\xea\xe0\xff\xf4\xcb\ +\xa1\x1c\x3b\x28\x8c\x2e\xbf\xda\x5e\xd1\x94\x45\x84\xeb\x4c\x61\ +\x9b\xa0\x32\x33\x8f\xd9\x9b\xf4\xe2\xc6\xd5\x61\x5c\xbe\xd4\x8b\ +\x91\xe6\x92\xbc\x99\x96\xa0\xdd\x24\xdb\x50\x25\x50\x90\x64\xcb\ +\xe8\x44\x75\xe2\x4a\x3a\x21\xfb\x91\xc2\x36\x48\xf3\x27\x79\x6c\ +\x1a\xf7\xf9\xed\x59\xf1\xba\xe7\x0f\x70\xca\x26\x79\xab\xc7\xfd\ +\xc9\x9d\x1b\x9f\xa9\x13\xed\x46\x90\x79\x97\xc2\x38\xe4\xed\x77\ +\x80\x8a\x56\x7d\x6a\x44\x81\x90\x72\xa5\x94\x92\x69\xe2\x5c\x59\ +\x90\xd0\x4b\x31\xb5\xd6\x8a\x69\xdc\xb9\x7b\x3f\x66\xdf\xba\x1c\ +\x7f\xe0\x87\xff\x62\xfc\xd4\xe7\x7f\xc6\x09\xfc\xb0\x9a\x88\xb6\ +\xa7\x97\xcc\x8a\x67\x74\xe9\xc7\x47\xbc\x05\x94\x11\xc6\xb9\xae\ +\xb6\xd8\xe2\x51\x6c\x7b\xc6\x16\x5b\xbc\x7b\xd8\x6e\xa8\x6d\xb1\ +\xc5\x16\x5b\xbc\x03\x7c\x67\x93\x0f\x52\x31\xab\xfd\x76\xd0\xc9\ +\xa9\x26\x67\xa1\xbe\x9a\xc5\x73\x2f\x7e\x24\x86\x4f\x1c\xc6\xdf\ +\xf9\xbf\xfc\x62\xec\x6b\x41\x78\xc0\x02\x63\x20\x01\xcd\xf2\x3d\ +\xdf\x67\xa2\xee\x05\xaf\x9c\xfe\xeb\xe6\x48\x5d\xf7\xd4\x65\x9c\ +\x17\x24\x5a\x88\x59\x3d\x0b\x14\xf3\x08\x20\x83\x57\x8e\xf2\xd0\ +\x96\xcb\xab\x84\xe5\x70\xa6\x49\xab\x00\xff\x38\xa7\xcf\x45\x25\ +\xbc\x2a\xe3\x85\x37\xb2\x65\x71\x98\x3a\x05\xd9\x55\x45\xab\x03\ +\xd5\xdf\xc4\x26\xb7\xca\x37\x96\xa1\x5b\xab\xa5\x1e\x37\x99\x97\ +\x5a\x26\x69\x01\xb6\xd6\x02\xd0\x37\xd4\x47\x23\x2f\xc6\x06\x3b\ +\x93\x18\xee\x8a\xf6\x93\xbc\xaa\x3b\x27\x94\xdc\x60\x10\x7c\x93\ +\x9f\x8d\xb8\xc1\xb8\xb8\x9d\x91\xdf\x6a\x19\xee\x0c\xfc\xfb\x4b\ +\xfd\x3d\x6e\xc4\xf1\x19\x0f\xe5\xdb\x93\x7e\x2a\x5c\xff\x2c\xd0\ +\x38\xd8\xaf\x28\xa6\xe6\x26\x48\xa9\x5f\x3b\x85\x45\x94\xe8\x06\ +\x6d\x78\x33\x26\xd3\x90\x80\x23\xbe\xac\xe5\x0d\xbb\x12\x3b\x53\ +\xa6\x67\xc7\xeb\x38\xba\x3b\x8f\x87\xf7\x16\x71\x24\x77\xfc\x90\ +\x1b\xe2\xc3\x58\x2c\x26\xde\x44\x5b\x2c\x47\xb1\x5a\x0e\x65\xa3\ +\x2a\x5b\x75\xe4\xa7\x29\xa5\x8f\x36\xa6\x4d\xf2\xc6\x99\x59\xd6\ +\x7f\x9e\x06\x1d\x32\xe3\xbc\x68\xcc\x70\x83\x2c\xaa\xe2\x73\xf1\ +\xea\x68\x0b\xa7\xe7\x45\xa4\x9c\x17\xc5\x07\xe3\x18\xef\x8e\xa3\ +\xc7\xa7\x35\xd5\x4e\x3c\x22\x4e\xa9\xdc\x3d\x40\x4d\x8f\x5f\x79\ +\x05\xce\xa6\xd4\x3d\x09\x5c\xc5\xc0\x11\x1b\x84\xa8\x1a\xa9\xb0\ +\xd2\x64\xfd\xa7\x6b\xd2\x29\x03\x6c\x76\x98\xcc\xec\x90\x05\xf0\ +\xe5\x54\xcf\xf3\xb3\x79\x2c\x8e\x67\xb1\x9a\xad\xb8\x57\x98\xb1\ +\x55\x47\xf1\xd3\xab\x4c\x20\x9a\x42\x35\x82\x05\x56\x6e\x6b\x5a\ +\x94\xc0\xf9\xf2\x56\x3b\xb8\xf1\xca\xe2\x9f\xa7\x5b\x0f\x46\xab\ +\xd8\x3b\xd8\x8d\xb8\x8e\x21\xd4\xdf\x5c\x7d\x7e\x26\x31\xde\x42\ +\x3b\x95\x13\x3d\x54\xdc\x48\xfe\x60\xa1\x30\x6f\x13\xa8\xe7\x8e\ +\xa4\x4d\xdd\xd8\x1b\x6b\x7c\x7a\xf0\x68\x11\x27\x5f\x3c\x8d\x5b\ +\xbf\xba\x8e\x3b\xdf\x3a\x53\x5f\x59\xe6\x66\x5a\x1d\x38\x8a\x9d\ +\xb4\x9b\xed\x92\x33\xab\x18\x5b\xa3\x0b\xb3\xf5\x37\x50\x4b\xe9\ +\x16\xb6\x4c\x8a\x25\xe1\x9c\xe4\xd7\xb6\x47\x2a\xc7\x0c\xc5\x39\ +\xdf\xbc\xa1\x62\x03\x70\xf4\x17\xca\x00\x53\x7e\x4f\x65\x5a\x8f\ +\xd4\xbd\xd9\x24\xd4\x79\x3d\x38\x18\xc6\xf8\x92\xce\xdd\xbd\x71\ +\x9e\xbf\xea\x5b\xfe\x9c\xab\x92\xb5\x96\xe4\xb1\xcd\x93\xb8\x3c\ +\xd6\xd8\x2e\x36\x38\x04\xe4\x6a\x7d\xb4\x5a\x9b\x28\xdb\x4c\x7e\ +\xfe\xc4\xa3\xc6\x8c\xcc\x5f\x76\xe8\xaf\x14\x4d\xc9\x72\x13\x8c\ +\x81\xa3\xd1\x20\xa2\xbb\x99\x26\x89\x4a\xf8\xc0\x46\xb8\xdf\x30\ +\x5b\xe2\xd4\x1b\x3c\xd6\xb1\x31\x97\xe7\x1c\x77\x88\xe8\xc7\xde\ +\x50\x23\x6c\xa7\x80\x7c\x6f\xd8\x95\x78\x34\x79\x1c\xe1\x6d\x33\ +\x92\xf9\xee\x92\x54\xc9\xe7\x37\xf4\xee\x4c\x97\x71\xff\xce\x59\ +\x3c\xf7\x8f\xfd\x42\xfc\xc4\xbf\xfd\x6f\xa9\x9a\xdb\xfe\xd0\xf4\ +\x0d\xa7\x24\x83\x6f\x03\xae\xb4\x4c\x65\xaa\x84\x37\x01\xaf\xe5\ +\x27\x55\x79\x35\xbf\x36\xbe\xc5\x45\xbc\x77\x01\xdf\x23\xb5\xbf\ +\x63\x50\x1b\xb3\xd6\x53\x0d\x9f\xef\x1a\xef\x4a\x3d\x56\x25\xdd\ +\x0c\x41\x37\x7c\x8e\xae\x7d\x8c\x6b\x45\x7a\x3a\x07\x06\xba\x0e\ +\xce\xe3\x43\x1f\xfa\x68\xec\x2e\x2f\xc7\xdf\xf9\xcf\xff\x5f\x71\ +\xfd\xb9\x6b\xb1\x77\x79\x10\xeb\x39\x6f\xe8\x6a\x60\x69\xba\x7c\ +\x19\x27\x54\x1e\x5f\x2f\x7d\x02\x17\x9d\x82\xc7\xaa\x26\xbf\x4a\ +\x65\x5e\xc0\xd5\x51\xe5\xe5\x79\x0c\x04\xf2\xea\xa6\xda\x80\xb7\ +\x6b\x93\x2b\x58\xa8\x41\xb1\xba\xf0\x92\x6e\x78\x70\x20\x6d\x53\ +\xb2\x9a\xeb\x79\x73\x24\x9c\xa1\x0d\xa4\xd8\x23\xc0\x92\x2a\x6d\ +\x5f\x03\xc6\xf4\x8c\x2b\xcf\x2a\xc6\xe3\x41\x1c\x4c\x26\xf1\xe4\ +\xe1\x24\x0e\x0e\x78\xfb\xac\x1f\x53\xcd\x35\xe6\x8c\x45\xf9\xce\ +\x99\xcb\x92\x83\x0c\x9f\x28\xde\x8b\x8f\x6b\xce\xfa\x53\x3f\xf2\ +\xd9\xf8\xb1\x4f\x7c\x3c\x3e\xfd\xa1\xe7\xe3\x93\x2f\xbd\x18\x1f\ +\x7e\xe1\xb9\x78\xf6\xa9\x9d\x78\xf3\x8d\xb3\xb8\x79\x6f\xea\x0d\ +\x8d\xba\xb9\x72\x81\xa5\x02\x5c\x4a\x8d\x5f\x0c\x4f\xe3\x2e\x28\ +\x47\xd5\x40\x1c\xb5\x5d\xc2\xc8\x51\x4f\x98\x86\x7d\x2b\x5d\xe7\ +\x74\xdd\x7c\xea\xea\x20\x9e\xb8\x3a\xd7\xb8\xd7\xf7\x1b\x79\x0c\ +\x85\x9e\x53\x4b\x76\x45\x7a\xe4\x19\x37\x95\xbc\xdf\x3b\x8a\x98\ +\xbd\x11\xa7\x0f\xde\x88\x29\x6f\x7e\x2f\x5e\x8e\xdd\xf1\x59\xec\ +\x6b\x9e\x99\xe3\x36\x17\x26\xf2\x9c\xc7\xf1\x74\x16\xdf\x7c\xf5\ +\x38\xde\xb8\xa7\x71\xd5\x99\xe6\x35\x3c\xe7\x5c\x12\x93\x5c\x31\ +\x47\x4e\x44\xd7\xcc\x64\x66\x35\xd6\x28\x7c\x47\x96\x30\xa4\x08\ +\xde\x30\x1e\xeb\x3a\xc7\x86\xda\x90\x6b\x4d\x1d\x9e\x2d\x45\x82\ +\x4a\x35\x3d\xaf\x89\xc1\xef\x02\x7d\xf6\x71\x45\x00\xaf\xa6\x33\ +\xc4\xab\xe9\x9a\x7e\xcd\xf5\x06\x10\x57\x4e\x16\x9f\x27\x66\x65\ +\xbe\x84\xfc\x86\xda\x31\x6f\x01\x2e\x75\xa9\x12\xbf\x24\x6f\x14\ +\x3a\x23\x1d\x6a\x05\x14\x81\xca\xb6\x20\xff\x85\xe1\xdf\xa9\x32\ +\x99\x3d\xa3\x81\x99\x15\xc4\x94\x58\x25\xd4\x8a\x40\x75\x34\x0f\ +\x2d\x03\x62\x6f\xe7\x2c\x06\xe5\x77\x84\x35\x13\xd2\xfc\xe7\x38\ +\x1e\x9c\x3c\x8c\xe3\xd3\xd7\x63\x31\xfd\xa6\x5a\xf3\x66\x4c\x7a\ +\xd3\x98\x68\x8e\xc1\x35\xd5\x9f\xfa\xf4\x1f\x1a\x75\xb4\x5a\xe9\ +\x54\xa5\x3b\x17\xe6\x24\x72\x77\x1f\xf6\xe3\xeb\x37\x47\x31\x9f\ +\xf3\xc0\x63\xf6\xc0\x94\x40\xa8\xf8\x42\x43\xb5\xac\x04\x05\x44\ +\xae\xd4\xa5\x59\x85\xaa\xa2\x95\x76\x58\x6d\x5e\x6b\xa0\xae\xe7\ +\x0c\x74\xd4\x40\xc3\x84\x9d\xb6\x9b\x55\x65\x54\x40\xa7\xcc\xca\ +\x15\xa5\x72\xea\xfc\xe6\xf7\xd2\x78\xb3\xff\xca\xfe\x30\x6e\x5c\ +\xed\xc5\xe1\x25\x3e\x6b\x2a\x01\x9d\xdf\xad\x15\x99\x66\x03\x55\ +\x6d\x0d\x74\xb0\x19\x7a\x0c\x2c\x94\xb5\xc6\x1a\xa1\xc7\xfa\xac\ +\xd4\xb3\x6d\xee\xc2\xd9\x17\x1b\x3a\xa6\x94\xa1\x50\x3e\xa3\x97\ +\x1c\xbe\xc6\x5c\x6f\xa4\xe1\x10\xb6\x6f\xa1\x94\xe5\x80\x7a\x11\ +\x25\x79\x43\x20\xe2\xf6\x77\x98\xb7\x75\x25\x48\x40\x3e\x9f\x19\ +\xa7\xfe\xf8\x5d\x45\x3e\x8d\xcb\x58\xf0\xf0\xc1\xbd\xb8\xf7\xcd\ +\x41\xfc\xe8\x87\xff\x54\xfc\xdc\x1f\xfa\x67\x63\x47\xeb\x50\x64\ +\xd1\x91\x25\xa9\x4e\xa8\x99\x75\x58\x9b\xa8\xcc\x0b\x23\x05\x14\ +\xd4\xb8\xaa\x4c\x38\x5f\x57\x5b\x6c\x51\xb0\xed\x19\x5b\x6c\xf1\ +\xee\x61\xbb\xa1\xb6\xc5\x16\x5b\xfc\xf6\xc2\xf7\x69\x16\xf0\x9d\ +\x65\xdb\x99\xd8\x1a\xef\x44\x0b\x32\xdd\x09\xb1\x9c\x82\x7e\x8b\ +\x6a\x7e\x12\x2f\x7e\xee\x27\xe3\xfe\x7a\x1e\xbf\xf1\xff\xf8\x8f\ +\xe3\xf2\x8d\xc3\xd8\x91\x40\xde\x18\x95\xa0\x27\xf7\x99\x0c\xa2\ +\xd9\xdc\xe0\x06\x6f\xe1\xb3\x08\xf6\x9a\xa9\xea\xb5\xd7\x44\x96\ +\xf5\x14\xe1\x12\x23\xcf\xba\x7d\x54\x38\x57\x13\x05\x49\x67\x8c\ +\x09\xbb\x9a\x47\xcd\x13\x82\x1f\x04\x2f\x91\x35\x59\x15\x2f\x87\ +\x04\x64\xb5\xa7\xc3\x16\x4a\xfa\x0e\xb7\x72\x0c\xd9\xe5\x3c\xb9\ +\xb9\x3c\xe3\x71\x63\x6e\x1a\x6b\xa5\xa9\x05\xee\x9a\x4f\x35\xee\ +\x8c\x45\xf7\xcb\xdb\x6a\x43\xdf\x7c\xd7\xda\xba\xfc\xc0\x75\x2f\ +\x06\xfc\xc6\x92\x16\x8d\x43\xde\x6e\x39\x1c\xc5\xf0\x12\x61\xc9\ +\x1e\x8c\x63\x74\x30\x8c\xd5\x44\x79\xb0\x91\xc6\x8f\x4c\x73\x03\ +\x49\x79\xb1\x30\xd2\x2a\x8d\x3b\x26\x0a\xcb\x12\x19\xc0\xfd\x24\ +\x5b\x46\x10\x52\x68\x2d\x2e\x78\x84\x91\x2c\xdb\x9f\x41\xd6\xc8\ +\x52\xa3\x10\xff\xc5\x67\xbd\x4e\xdd\x90\x57\xbe\xa1\x92\x0b\x43\ +\x99\x13\xab\x25\xbf\xb1\x56\x16\x8b\xe2\xfb\x1e\xb9\xec\x42\xce\ +\xed\x26\x75\xb4\x93\xdb\xd3\x0b\xf5\x5c\xfc\x41\xe5\xa1\xf5\xdd\ +\x6e\xb6\x85\x78\x05\x6a\x7c\x81\x83\x45\xc6\x28\xbe\xd3\x15\xd9\ +\xf4\x74\xe4\xdf\x4e\xda\x5c\xff\x83\x18\x70\xf3\x47\xf5\xcd\x22\ +\x99\x27\x5f\xf3\xcd\xa1\x92\xa2\xd6\x81\x2a\xb8\xaa\xaf\xc8\xfa\ +\x36\x91\x61\xcb\xc8\x46\x12\x39\x55\x46\xd4\x90\xd1\x10\xad\x84\ +\xf3\xb0\x51\x25\xad\x65\xb2\x6e\x1c\x59\x69\xe5\xe5\x28\xd5\xe1\ +\x82\x0d\xb5\x93\x59\xac\xce\xd8\xd4\x10\x4f\x62\x48\x96\x2c\x1b\ +\x58\x05\x44\xc3\x77\xc8\x38\x27\x7a\x31\x3a\x42\x26\x65\x48\xb6\ +\x3f\x4e\x8b\xf8\xfe\x48\x76\x9c\xc5\xc1\x70\x15\xa3\x4b\xc3\x58\ +\x5f\x2f\x1b\x60\x23\x36\xd0\x06\xb9\x91\x36\x3c\xd3\xec\x4e\x9d\ +\x80\xef\x00\xd2\x21\x59\xe0\xd3\x29\x76\xe7\x11\x13\xf9\xf4\xe5\ +\xd3\x5e\x9c\x7c\xed\x38\x6e\xff\xea\x3c\x5e\xf9\x47\xbd\x98\xab\ +\x6c\x64\xa8\x26\xa2\xf4\x6a\x13\x32\x77\xc0\xfd\x2e\xeb\xc6\xff\ +\x0d\x4c\x57\x46\xf5\x31\xda\x74\xa7\x20\x1d\x74\xd3\x90\x4f\x21\ +\x4c\x91\x25\xed\xc2\x8d\x47\x6e\x9e\xf8\xf7\x0a\x19\xdb\xe4\xf3\ +\xb6\x68\x4f\xe7\xb1\xdf\x12\x1d\x8b\xc7\x06\xda\x44\x72\x3a\x67\ +\x7b\xbb\xea\x47\xbc\x8d\xa6\x7e\x35\x3e\x98\xe4\x6f\xa5\xf1\x76\ +\x69\xed\x5b\x52\xdc\xb5\x86\xbc\xdc\xf3\x21\x4a\xf8\x51\x10\x4f\ +\xff\x38\x17\x2b\x45\x0d\xcb\x4a\x39\x4b\x5a\xd4\xb1\x36\xdf\x4e\ +\x93\x7d\xbc\x85\x59\xca\x94\x3a\x95\x4c\x09\x38\x57\xe9\x57\xd9\ +\x95\xf2\x58\x35\xb9\x57\x23\x54\xf3\xe1\xa4\x56\x98\x24\xa4\xf3\ +\xf8\x33\x63\x2c\x22\x4a\x61\xfa\xa9\x64\x78\x30\xda\xdd\xb7\x82\ +\x08\xa7\xc9\xf4\x38\x59\x67\xfd\xb6\x86\xb1\x51\x32\x1e\x37\xa4\ +\x73\xa5\xb1\xed\x78\xb1\x8e\xd7\x6e\x1e\xc5\xe1\x27\x7e\x38\xfe\ +\xc8\xff\xee\x7f\x13\xbb\x97\xaf\x4a\x52\xe9\x25\xab\xda\x57\xa2\ +\x52\x0e\x14\x6f\xa0\x1a\xfb\x38\x28\x1e\x11\x0a\x51\xc8\xb6\x22\ +\xcf\xe3\x22\x7e\xe5\xe1\x93\x77\x57\xe6\x71\x7a\xde\x05\x7c\x0f\ +\x55\xff\x8e\x42\x6d\x96\xf3\x78\x57\xeb\xef\x5c\xbb\x6f\xf4\xc5\ +\x4a\x57\x54\xba\x18\x55\x82\x96\xd6\x49\x92\x9f\x6c\x9c\xc7\x27\ +\x3f\xf1\xb9\xb8\xff\xfa\x51\xfc\xe2\x2f\xfd\x27\xf1\xc1\x17\x9e\ +\xf2\xef\x60\xf9\xe1\x13\xf5\x77\x64\xfd\x89\x56\xd2\x28\xe4\xeb\ +\x2e\x5c\xfd\x73\x1e\xe5\x3f\x52\x08\x14\x5f\xa8\x63\x46\xe5\xe0\ +\xc3\xe3\x14\xcc\x40\xe5\x2a\x19\xe7\xa6\xc6\x0c\x3f\x70\x52\xf8\ +\x9d\xe8\x16\x84\xab\x6b\x3d\xa3\x56\x43\x6e\x76\xe7\xf9\x8d\x0f\ +\xb5\x89\x6e\xaa\xc7\x21\x65\x7c\x2c\xc9\xb9\x11\xbd\x98\xcd\xfd\ +\x53\xad\xa3\xe1\x30\x76\x27\x7b\x71\x55\xf3\xa3\x1b\xd7\x46\xb1\ +\xb3\xab\x4b\xcd\x7a\x2f\x86\xba\x2e\x0d\xd6\x93\xe0\x53\x66\xc3\ +\xe1\x28\x26\xc3\x83\xf8\xf8\xf3\x9f\x88\x9f\xfd\xdc\xa7\xe2\x63\ +\x4f\x3f\x11\x97\x76\x27\x31\x1e\x32\x5b\x1d\xc7\x44\xb2\x97\xf7\ +\xc7\xd1\xdf\x9b\xc7\xd7\x74\x0d\x3a\x5b\xde\x77\x66\xcd\xd8\xe4\ +\xb6\xc9\xec\xcb\xe5\xb8\x1c\x72\xdc\x4a\x64\x59\x3b\x8c\x47\x51\ +\xa2\xd1\xe7\x94\x96\x2d\xed\xc0\x0d\x70\x55\xdc\xe1\x64\x1c\xcf\ +\xf1\x60\x8a\xd4\x31\x5f\xe2\x02\xc8\x26\x95\x1f\xe6\xe0\xda\xe9\ +\x3a\xc0\x97\xbc\x64\xd6\xfd\xa5\xe2\x17\x31\x18\x4e\xfd\x7b\x69\ +\x13\x1e\xd8\x60\x73\x61\xcd\x7b\xe4\x4b\xd5\x15\x89\x97\x71\xf3\ +\xde\x49\x7c\xf5\x95\x75\xdc\x3b\x5b\xe4\xf8\x5c\xca\x44\xab\xd0\ +\x5e\xe4\x2d\xcf\x9b\x42\xf8\x30\x73\xec\xe6\x80\x8c\x03\x0a\x96\ +\x78\x07\x55\x43\x18\x0f\x43\x8e\x39\xf5\xa0\x37\x88\xdd\x9d\x61\ +\xec\x69\x8e\xca\x46\x07\xba\x53\xe0\xf1\x28\xc9\x1b\x64\x0e\xe5\ +\xaa\x50\x22\xc8\x0e\x93\x1b\x14\x73\xb2\x4f\x21\x27\xca\x97\x95\ +\x6e\x9b\x80\x8c\xcf\x39\x66\x09\x59\xbc\x17\xcb\x39\xbf\xa1\xc6\ +\x86\x5a\x7e\x76\xaf\xa8\xb4\x3a\x8a\x95\x9b\xd5\x0a\x77\x23\x2e\ +\xd0\xde\xba\x6e\xdc\xa6\x5c\x45\x55\x65\x1f\xfd\x6a\x27\x3f\x20\ +\x32\x98\xab\xed\xa6\x31\x1e\xf0\x3b\x69\xb3\x58\x2e\x65\x9f\x3a\ +\x40\x6f\x3e\xd7\x14\xea\x4c\x7d\x75\xae\x9e\x4a\x39\xb2\x57\xfa\ +\xda\xab\x02\xfb\x9a\xc9\xe6\x93\xbb\x1f\x5a\xf3\xda\x6e\xde\x72\ +\x18\x9a\x21\xc6\x6b\x77\x47\xf1\xcd\xd7\x07\xb1\xe8\x4d\x75\x5d\ +\xa6\x76\xf5\x47\xde\xf2\xf9\x07\x8d\xb5\x9d\xb0\xc9\x1a\xa1\x7c\ +\x6d\x75\x66\xd1\xb0\x61\x54\x1a\x89\x36\x32\xf3\xf1\x3f\x69\x3c\ +\x7e\xa5\x6c\x63\xab\x03\xe8\xc4\x9e\x54\x9d\xc2\xa6\x04\x95\x01\ +\x1a\x39\x69\xd7\xa9\x1e\x87\x7b\xc3\xb8\x71\x25\xe2\xea\x95\x5e\ +\xec\xee\x71\x6e\x20\xe1\xd1\xcf\xc8\xb1\xe6\x51\xb8\xb8\x44\x59\ +\xb0\x4a\x27\x36\xa2\x1e\x41\xf6\x43\x9f\x1f\xb2\x93\xf9\x5f\x5f\ +\x1d\x9b\xb0\xe7\x50\x56\x5c\x2c\xae\xa6\x3a\x8d\x68\x1d\xd4\xad\ +\x4a\x1c\x94\x6c\x55\xc7\x82\xa2\xbf\xd9\x21\x63\xb9\x14\xb6\x9f\ +\xff\xe5\x20\x74\x0d\x2b\x11\xe8\x30\xb5\x11\x56\x40\xf6\xd0\xd5\ +\xb1\xd9\x5c\xcf\x6f\xfa\x71\x36\x3d\x8b\xfb\x5f\x5f\xc4\x67\x9e\ +\xfc\x33\xf1\x27\xff\xe4\x9f\x8d\x2b\x07\x87\x8c\x0e\xaa\x39\x14\ +\xb8\xa5\x4c\x3d\x82\x6e\xde\x17\xe2\x22\x81\xd4\xd9\xfa\x40\x7e\ +\xa9\xab\x2d\xb6\xb8\x08\xdb\xde\xb1\xc5\x16\xef\x1e\xb6\x1b\x6a\ +\x5b\x6c\xb1\xc5\x16\xdf\x06\xde\x7e\x12\x72\xe1\x34\xb9\xe0\xbb\ +\x98\xc2\xb0\x70\xe5\x07\xb3\xb5\xe0\xfb\xf4\xcf\x7c\x3e\x6e\xde\ +\xbc\x19\x5f\xfa\x7b\xff\x20\x2e\x5f\x9a\x68\xe1\xb7\xf4\xa2\xc3\ +\x6b\x08\xe5\x9f\x4f\x29\xca\x0e\xfe\x45\x7b\x3d\x55\xf2\xae\x37\ +\x88\x72\xc1\x8b\x93\x5e\x79\x8d\xd5\x0e\xd4\x89\x39\x2e\x59\x49\ +\x81\xd4\xdb\xc4\x12\x69\x3a\xff\x4c\x67\x84\xfc\xd4\xe3\x1c\xc5\ +\xcc\xcd\x8b\x5c\x8c\x95\xf5\xb6\xb3\x82\x2c\x6a\x1a\x54\x5d\x1b\ +\x20\x91\x75\xb6\x70\xda\xc2\x4a\x1d\x2a\x3f\xe1\x99\x2a\x63\xaa\ +\xb2\xe1\x44\x7a\x7d\xca\xe2\x8c\xcf\xbf\xf5\x47\xfe\x1d\xaf\xde\ +\xde\xc8\xbf\xb5\xd4\xdf\x95\x4d\x7b\xe3\x18\x1c\x8e\x62\x74\x75\ +\x27\x06\x97\x27\x31\xba\xb4\x17\x83\x4b\x3b\xd1\xdf\x9b\xf8\xcd\ +\x1e\x9e\xbf\xf6\x26\xdd\x7c\xe5\xbd\x09\x68\x6e\x42\x7b\xb3\xc2\ +\x19\x72\xb3\x43\x5e\xa7\x7e\x2a\xba\x34\x70\xb8\x32\x49\x53\xe9\ +\xe2\xa7\xc7\x12\x8d\x3f\x04\xd0\x99\x35\x42\x19\x7d\xb3\xdd\x79\ +\xa8\xac\x5a\xc0\xf9\x26\x8b\xfe\x57\x7c\xf2\x92\xb2\xf2\x27\x9e\ +\xe5\x39\x8a\x0d\xea\xa2\xbe\xd1\x09\x25\xa3\x2d\x93\xff\x72\x74\ +\xa2\x2a\x03\x4a\x44\x09\x9b\xb4\x11\xa6\x1a\xdd\x16\x93\x2e\x4c\ +\x29\x31\x09\xc9\x7a\x71\xac\x76\xe7\xc7\xba\x7b\x6c\x74\xa8\x5e\ +\x79\xf3\xcf\x9f\xd7\x64\xb5\x2f\x7e\x93\x0d\x90\x0e\xd4\xe2\x92\ +\xd7\x61\x00\x82\x9d\x7e\x60\x99\x92\xb8\xe5\x82\x1a\xaa\x9a\x55\ +\xd6\x2a\x5c\x58\x19\x86\xd0\x7f\x2d\x93\xd0\xf4\x29\x0e\x2a\xd4\ +\x6a\xb6\x8c\xf9\xf1\x3c\x56\x53\xf5\x84\x65\x6a\xee\x98\x90\x61\ +\x7c\x11\xa9\xa5\x70\x60\x94\xd0\x79\xb4\xb9\x55\x6c\x4a\x35\x37\ +\x98\x8a\x24\x37\x73\xb0\x71\x3a\x8b\x98\x4f\x4f\xe2\xaa\xc6\x83\ +\x3e\xfb\x1d\xd7\x95\x6e\xa1\x7a\xec\x4d\x55\x97\x6a\x3f\x3e\x53\ +\x65\x5f\x71\x34\x27\xdf\x07\xed\x9f\xa9\x1f\xd3\x71\xc5\x3c\x1e\ +\xc6\xd9\x57\x1f\xc6\x9b\xbf\x3c\x8d\xd7\xe4\x1e\xbe\x0e\x57\x7d\ +\x5b\x05\xe2\xec\xf4\x8d\x59\xe5\xed\x27\xea\x95\x82\x83\xeb\x49\ +\xf1\x0e\x17\x34\x34\x44\x29\x6e\x42\x01\xd1\x5d\xd9\x0d\xd4\x38\ +\x0e\x2a\x53\x8e\x08\xe4\xab\x20\x61\xb9\xa1\xfa\x86\xdf\xf0\xe2\ +\xc9\xe4\x5d\x39\x9d\xa7\x83\x3d\x39\x9f\xaf\xea\x3b\x3a\x67\xf9\ +\xb4\x23\x6e\xa8\xf3\x78\xa4\xf3\x74\xac\x73\x9a\xb7\xd2\x7c\x13\ +\x86\xba\x92\x3e\x9f\xf7\xc2\x86\x79\x95\x6a\x19\x17\x80\xc4\xc5\ +\xbf\x00\x8e\xd2\x91\xf6\xb0\x84\x0e\x6e\x1f\xdb\x2f\xdb\xfc\xb6\ +\x80\x4a\xe6\xf1\x36\x6d\xc1\xe7\xa6\x8b\x37\xc5\xb8\xf1\x22\x34\ +\xe7\x72\x06\x37\x61\x9e\x4f\x68\x6f\x9c\x71\x47\x68\xcd\x27\x1e\ +\x35\xf6\xf8\xf3\xb6\xbc\x9d\x86\x8c\xc6\x21\x6f\xf2\x22\x5a\xf4\ +\xb9\xdf\x65\xd2\xe4\x09\x59\x12\xea\x3b\x6f\x0c\x92\x29\xd7\x0c\ +\x7f\xe6\x4c\x22\x53\xe9\xb9\xfb\xf0\x2c\xee\x9f\xed\xc4\x1f\xfa\ +\x3f\xfe\x1f\xe2\x89\x8f\x7d\x22\x56\xf3\x45\x96\x8b\x02\x64\x27\ +\xb0\x96\xd6\x7f\x27\xa8\xb2\xca\x04\x12\xcf\xaa\xde\x4a\xc7\x45\ +\x71\x95\x57\x94\x5c\x28\xf3\x2e\xe3\x3d\xc8\xe2\x77\x34\xba\x4d\ +\xf6\x6d\xe1\x7c\xfb\x12\xee\x42\x71\x3e\x69\x90\xc1\x55\xba\xca\ +\x75\x69\xa1\xf6\x35\x79\x39\xce\x73\x5e\x2a\x5e\x17\xf3\xcf\x7c\ +\xea\x67\xe2\xcb\xbf\xf1\xa5\xf8\xb5\xdf\xfa\x07\xf1\xfc\x0b\x4f\ +\xc4\x7a\xbc\x8a\x01\x32\xa5\xcf\x7b\xd4\x2b\x27\xa8\xe7\x56\xe6\ +\xa1\x8a\x3f\xf1\xea\x18\x60\x24\x95\xd7\xda\x44\xd7\x22\x1f\x21\ +\x18\x4b\xe5\xfb\x34\x2d\x37\xdd\x19\xb7\x60\x12\xed\xec\x33\x93\ +\x84\x99\xc5\xb7\xeb\xe6\x49\x50\x61\x31\xea\x79\xba\x79\xce\x0b\ +\x5d\x5d\x00\x1a\xd9\x73\x30\x5b\x7f\x99\x3a\xc1\x75\xc1\xe3\x83\ +\xae\x81\xcb\x39\x6f\xf4\xf7\x62\x34\x1e\xc5\xa5\xfd\x71\x3c\x79\ +\x69\x3f\x3e\xf0\xc4\x41\x3c\x79\x63\x37\xae\x1e\xee\xc6\xde\x64\ +\x27\xae\x1f\x5e\x8a\x8f\x7f\xf0\x99\xf8\x89\x1f\xf8\x48\x3c\x75\ +\xf9\x52\x2c\xd6\x83\x98\x4a\x23\x37\xaf\xf9\xcd\xaa\xd9\x7a\xa6\ +\xf9\xd4\x20\x9e\xbd\xba\x1b\x5f\x79\xf9\x66\xbc\x79\xfb\x9e\xca\ +\xce\x00\xa6\xbc\x95\x8f\xcb\x6e\x4b\x5a\xd4\xb9\x64\xa2\x8d\xa3\ +\x08\xdd\x98\x8b\x68\xfb\x22\x5a\x9d\xf2\xfd\xa0\x89\xe6\x80\x8a\ +\x78\xe6\xfa\x38\xf6\x77\x17\x1a\x07\x89\x4f\xc7\x78\xea\xb7\x8b\ +\x3d\x4e\x92\x86\xb1\x52\xe3\xfa\x68\x18\xe3\xc1\x30\x06\x83\x01\ +\xbf\xc2\x26\x36\xd7\x4a\xa9\x92\xa3\x8e\xc8\x63\xd6\x9b\xc5\x37\ +\x5e\x5b\xc4\x37\x6e\xae\xe2\x44\x75\x86\x01\x6e\x1f\xfe\x50\x67\ +\x95\xaa\xe3\x42\xdb\xc0\x2c\xb4\xf9\x3e\xba\xbc\x89\x7a\xd5\xcd\ +\x63\xa6\xa9\x8e\x07\xc2\xf6\x74\x0d\x64\xb3\x83\x07\x50\x10\x4a\ +\x39\x8e\xad\x8e\xca\xad\xe8\x86\x9c\xbd\xdc\xa6\x44\x41\x57\x8d\ +\xe8\xb4\x4f\xe5\x75\x9f\xef\xea\x17\x8a\xcd\x78\xd8\x96\x3a\x29\ +\x4b\xfa\x7c\xf2\xb1\x79\x43\xad\xcc\xa1\x00\x45\x57\x74\x41\x0d\ +\x90\x48\x75\xde\x84\xab\x3c\xb9\xd6\xbc\x93\x9f\x50\xb8\x2a\x14\ +\x20\x3b\x41\x05\xaa\x4e\xcd\x73\xb8\x2e\xeb\xfc\xdf\x99\xf4\xe3\ +\x70\x6f\xaa\x6b\x35\x17\x4a\xcd\x39\xd4\x96\x6a\x72\x4d\xf7\x7b\ +\xde\xa8\x24\x17\x27\xf5\x58\x21\xd4\xec\x8a\x2a\x93\x54\x79\x69\ +\x3b\xce\xb9\xd9\xec\x2c\x7e\xf3\xd5\x49\xbc\x71\x4b\xa9\xf9\x4d\ +\x36\x45\xd4\xb6\xca\x04\xfe\x97\xce\xaa\x5d\x28\x84\x3d\x57\x5c\ +\x4a\x34\x70\x44\x2d\x51\xa6\xab\x2e\x37\x64\x2d\xd0\xe8\x74\xa8\ +\x64\x58\xe7\xe4\xa4\xa4\x2b\xc3\xa7\xee\x5c\xaf\x7e\xcb\x8c\x2d\ +\x1e\x22\xd8\x8d\x55\x1f\xe2\x93\x98\xa3\x7e\x1c\x68\xae\xc5\x46\ +\xda\xf5\x2b\xbd\x38\x3c\x58\xc7\x90\xe7\x11\xd1\x53\xfa\x3b\xf3\ +\xc5\xb4\x66\x13\x35\xdc\xf0\x4d\x54\x0b\x33\x48\x3a\xd0\xc8\x54\ +\xb8\xe3\xa4\x34\x71\x7e\x20\xca\x6b\x84\xc2\xa9\x09\xca\xd8\x06\ +\x1a\x1d\xd8\x96\x9e\x0e\x69\x1b\xed\xc1\x67\xb5\xf3\xcd\x34\x95\ +\x1a\x19\xcf\xbd\x10\x52\xdd\xd5\x44\xa0\xfa\x05\x0e\x96\x83\xc5\ +\x0b\x8d\x57\x1d\xe7\xb4\x9b\x0a\x2b\xc8\x43\xae\x1f\x23\x2d\x0d\ +\xa7\xf1\xfa\xcb\x0f\xe2\xf9\xc1\xe7\xe3\xcf\xfc\xfc\xbf\x12\x4f\ +\x5e\x7f\x22\x96\x8a\xab\xa2\x94\xc5\xea\xba\xa8\x05\xa9\xfe\x5b\ +\xe2\x71\x42\xdf\x96\x92\x2d\x7e\x97\x63\xdb\x4b\xb6\xd8\xe2\xdd\ +\xc3\x76\x43\x6d\x8b\x2d\xb6\xf8\xed\x85\x47\x66\xa2\xef\x2d\xbe\ +\x2f\x93\x10\x32\x75\xc6\xdc\xa0\xd5\xf4\x7e\xb1\x8e\x0f\xfe\xd1\ +\x3f\x10\xbf\xf9\xf7\xff\xbb\x38\xfb\xd2\x97\x63\x70\xb0\x13\xc3\ +\xf9\xc2\x37\x00\x3c\x59\x57\x1d\x79\x03\x83\x64\x04\xf0\x71\xac\ +\x85\x4c\xa4\x42\x2f\x52\x0c\x4d\xf6\xe1\x79\xe1\x52\x97\x65\xf0\ +\xbc\x4e\x30\x1c\x8d\x5f\xe3\x0a\xcf\x79\x34\x71\x79\x28\x49\x44\ +\x48\x5a\x91\x4d\x58\xb0\xac\x9d\xa5\x0d\xdb\x2b\xbf\x72\x3a\x51\ +\x1d\x14\x66\x27\xae\x2b\x66\xcb\x8b\x1e\x8e\x7e\x63\x8c\x9b\xcf\ +\x53\x2d\x82\x8e\xe6\xb1\x3c\x9b\x3b\xbe\xaf\x03\x1b\x3b\x6b\x2d\ +\xd4\x7a\x3b\x63\x6f\xac\x05\x9f\x87\xe3\x6d\xb4\xc3\x5d\xb9\xbd\ +\xe8\x1f\xec\x47\x7f\x77\x57\xf1\xe2\x49\xce\x4f\x1d\xb3\x48\xe3\ +\xcd\x10\xd5\x3d\x1b\x69\xf9\x96\x5a\x5d\x60\x51\x4e\x13\xce\xb7\ +\xb1\x5f\x7e\xb9\xc7\xd0\xa0\x13\x55\xea\xa1\xd0\x1d\xd7\x22\x43\ +\xc9\xcf\x96\xc9\x3a\x75\x56\x8e\xc8\xa5\x7e\x91\xb0\x57\x64\x7c\ +\xd3\x00\x39\x6e\x1d\x88\xaa\x99\x89\x93\x36\x97\x20\x3e\x52\x0e\ +\xb0\x74\x24\x94\xed\x9b\x20\x5d\x5b\x08\xec\xc8\xc4\x3a\xb4\xec\ +\x14\x2b\x89\xda\xb4\x85\xa7\x83\xfb\x01\xfd\x53\x75\x3e\xba\x34\ +\x89\xd1\x98\x8d\x0f\xb5\x01\x1b\x0e\x35\x21\xa8\x6a\x4b\x1e\x8e\ +\x81\xc7\x3d\x0f\xfd\x71\xf3\xc2\x4b\x5c\xca\x48\xb8\x93\x69\xc6\ +\x67\xb0\x41\x47\x35\x70\xb0\x1e\xf0\x4b\x7c\x97\xd5\x30\xd1\x27\ +\x47\xe6\xcb\xd9\x22\x96\xc7\xf4\xa3\x65\xf4\xd4\x07\x9a\x7c\xba\ +\xf9\x9d\xcf\xbb\xd1\xf3\xf6\xd8\x94\x6c\xad\x70\x3e\x26\xe4\xaa\ +\x7e\x95\x99\x9f\x4d\x5b\x9e\x9e\xc5\xce\x70\x18\xff\x7f\xf6\xfe\ +\x04\x6c\xb6\xed\x3c\x0b\x03\xbf\x9a\xff\xf1\xcc\xe7\xce\xb3\xae\ +\xac\xd9\xb2\x25\x4f\xb2\xe4\x11\xb0\x63\x82\x6d\x86\x26\xc4\x06\ +\xb9\xe9\x40\x43\xd2\x8c\xb6\xa1\x43\x77\x93\xc4\x84\x24\x9d\x3c\ +\x09\xf4\xe3\x84\x84\x1e\x9e\xa4\x1b\xba\x9f\x40\xc0\x89\x20\xd8\ +\xd8\x18\xd9\x18\x3c\x80\xb1\x31\x9e\x64\x49\xd6\x78\x75\x07\x9d\ +\x79\xfc\xc7\x1a\xfb\x7d\xdf\xef\xfb\xd6\x5e\x55\x7f\xfd\xe7\x9e\ +\x2b\x9d\x2b\xeb\x9e\x5b\x6f\xd5\x5e\xeb\x9b\xd6\xb7\x86\xbd\xf6\ +\xaa\xb5\xf6\xaa\x5d\xd5\x3b\x89\xf6\x38\x01\x03\x7d\x05\x97\x77\ +\xaa\x40\xd3\x96\x8f\x14\xf0\x29\x35\x3a\x69\x8f\x6d\x36\xea\x98\ +\xdd\x34\x1b\x7e\xfc\xd0\xae\xfe\xab\x89\x5d\xfc\xb5\x7d\xbb\xf1\ +\xd2\x8c\x7f\x3f\x06\x4c\xe1\x96\xf5\xed\x7a\x5e\xba\x6f\x02\x82\ +\xe7\x8e\x6a\x76\xb4\xe8\x7b\x44\x44\x4b\x10\x05\xf6\x77\x39\x1a\ +\x44\x25\xe8\x97\x36\x8c\xe3\xa6\xa5\x3f\xd5\x85\x98\x37\x2b\x07\ +\x5d\x6b\x0d\x7c\xd3\xbb\xbb\x85\x32\x71\x33\x6d\xad\x6d\xed\x35\ +\xca\x61\xb7\xc6\x9f\x6e\xed\xca\xae\xc3\xbe\xc4\x9f\x0d\x65\xff\ +\xa2\x2b\x94\x95\x4d\xc0\x3b\x48\xcc\x8d\x43\x66\x16\xcb\x23\x2a\ +\x9d\xcf\xe2\xa4\xc8\x89\x64\xc2\x20\x2b\x4d\xb0\x2d\xc5\xb3\xad\ +\xaa\xe4\x28\x3b\xcb\xaf\x27\x5e\x79\xe8\xfa\x53\x23\x52\x8b\x24\ +\xe8\x9d\xdc\xfd\xe2\x20\x14\x9b\x69\xbc\x01\x23\x3f\x2a\x2c\xc1\ +\x1e\xac\x5e\x1c\x3c\xcf\x27\xde\xdc\x48\xe3\xb9\xe5\x46\x1a\x0e\ +\x8e\xff\x64\x39\xfe\xe8\xc6\x2f\x0e\xf9\x74\x77\x9e\x9a\x7a\xc5\ +\xf1\xad\x73\xf0\x6a\x1b\xa6\x09\xf7\x7a\x3a\x8d\x5a\xa8\x47\x38\ +\xae\xec\x8f\xed\xfa\xcd\x89\x7d\xdd\x5f\xfa\x01\x7b\xd3\xef\xfa\ +\x76\xcf\x0f\x6d\xa8\x9b\xca\x71\x23\xed\x73\x03\xd3\xab\x34\xa5\ +\x6b\xca\x95\x0a\xb2\xe8\xd4\x79\xb7\x4e\xa4\x0d\xe3\x92\xba\x8a\ +\x89\x94\xd7\xfa\x7b\x80\x7b\xe8\xea\xbe\xc4\xdd\xb4\x4f\x9e\x96\ +\x7b\x82\x65\x19\xde\x6d\x21\x22\xca\x43\x37\x91\xf9\x60\xef\xd4\ +\xde\xfd\xe6\x6f\xb2\x9f\xfe\xb9\x7f\x62\xcf\x5f\x7d\xde\x1e\x7f\ +\xfa\x0c\x74\x98\x4f\xa1\xcf\xeb\x4b\x0d\x99\x56\xb1\xf7\x2f\x7d\ +\x9e\x91\x07\xeb\xda\x1c\x55\xd2\x36\xa8\xb8\xd8\x18\xe6\xa1\x34\ +\x4a\xef\x31\x09\x6d\x98\x03\xbc\xd6\x52\x4e\xca\xf3\x8f\x74\x0c\ +\xdc\x8c\x06\x1e\x29\x74\x28\x0d\x04\x7a\x4a\x96\x86\x69\x2b\x87\ +\x0a\xc4\x36\xa0\x71\x90\x15\x32\x59\xa3\x93\x53\x1c\x33\x1b\x8e\ +\x47\x36\x3c\x1c\xdb\x74\x8c\xbc\xda\x5d\x5b\xef\x6f\xd8\xa9\xd3\ +\x03\x3b\x7b\x7a\xc3\xce\xe1\x78\xf8\x81\x13\xf6\xe4\x43\x38\x1e\ +\x3b\x6f\xa7\x36\x4e\xd8\x21\x6f\x64\x6b\xb7\x9f\x7e\x35\xda\x78\ +\x71\x30\x36\xae\xb7\x46\xf6\xe9\xcb\x37\xec\xc5\x8b\x97\x6d\x0a\ +\x1b\x8e\x47\x3e\x57\x91\x71\xc0\x0b\x51\x42\x11\x8d\x2c\x6b\x55\ +\xcc\x97\x80\x63\x8e\xa7\x20\x82\xe1\x67\x19\x06\xce\xc9\xb8\x67\ +\x5b\x1b\x5d\x3b\x7f\x66\x1f\x1f\x17\x7d\x1f\x47\x61\xa0\x76\xa7\ +\x8d\x37\x68\x7c\x36\xf9\xcf\xdf\xb5\xf8\xe8\xce\x0c\x07\x4a\xdb\ +\x6e\x79\x1f\xe2\x58\xcc\x27\xd5\x66\xbd\xa9\x5d\xb9\x3d\xb2\x8f\ +\x7e\xa6\x6b\x17\x6e\x1f\xea\x4b\x4e\x9c\x73\x72\xfc\x57\xdd\x70\ +\x34\xe7\x1e\x07\x88\x1c\xfe\x5d\x4e\x67\xf4\x07\x01\xf3\x77\x95\ +\x40\x9a\x1b\x77\x1c\xc3\xa9\x46\xee\xd6\xef\x75\x6c\x6b\xbb\x6b\ +\x7d\xfe\xc7\xaf\x3e\x47\xe5\x59\xb6\x4e\x05\xc8\x2c\x40\x59\x90\ +\x60\x41\x18\x95\x80\x88\xb2\xe0\x70\x6f\xde\x26\x4a\x13\x7d\x35\ +\x92\x01\xe0\x49\xbb\x58\x68\xfa\x2d\x5e\xa0\x99\x92\x3f\xf9\xb8\ +\xb7\x3f\xb5\x21\xbf\x94\xc6\x9f\xd7\x94\x85\x27\x65\xa0\xa2\x57\ +\xf0\x76\x71\x3f\xf3\xaa\xf4\xed\x68\xbe\x14\xc6\xaf\x8a\xd0\x96\ +\xb9\x31\x85\x97\x97\x50\x4c\x13\x26\xc2\xc1\xef\xa3\x70\xae\x71\ +\x62\x63\x6a\x27\xf8\x85\x1d\xb4\x1d\xff\x5f\x71\x86\xf3\xc9\x5e\ +\xc8\xb1\x41\xf5\x0f\x7b\x7e\x52\xba\x03\xf7\x25\x31\xfa\x04\xc1\ +\xf9\xa8\xe6\x50\xbd\x89\x5d\xba\x3e\xb6\x8f\x3c\xbf\x61\xbb\xc3\ +\x43\x8e\x2e\x9c\x82\x34\x1b\x42\x0c\xb3\x00\xce\x29\x2e\x85\x4a\ +\xbe\x86\x44\x2a\xbd\x50\xd2\x24\xe4\x3b\x11\xb9\xa8\x1f\x38\xef\ +\x02\xf6\x5f\x3e\x3f\x09\x92\xdd\x15\xf3\xa4\x5e\xaf\x6b\x6b\xdc\ +\x1c\xee\x77\x6c\x6d\xd0\xc2\x75\xdc\xb6\xed\xcd\x96\x9d\x3a\x31\ +\xb3\x53\xdb\x6d\x3b\xbd\xdd\xb2\x13\x9b\x1d\x1b\xf0\x3f\x77\xf9\ +\xd9\xaf\xcd\x66\xba\x42\xab\xb0\xff\x65\x16\x4b\x50\xe4\x41\x1c\ +\x29\x33\x90\x12\x9e\x27\xa7\xe9\x93\x96\x9a\x35\xf9\x1c\x0a\x27\ +\xc8\xcf\x0b\xa0\x36\x62\x59\xc8\x34\x20\xab\x6b\x45\xa0\xde\xcf\ +\xfc\xfc\x66\x5a\xf2\x4e\x6b\xaa\x54\xd2\x38\x5d\xb1\x0e\x09\x78\ +\x66\x9d\x96\xd7\xb0\xa3\x3d\xdb\xd8\xc7\x08\x08\x54\x36\xf4\x10\ +\xc4\xfb\xc3\xa1\x5d\x7a\xee\x8a\x6d\xed\xbe\xdd\x7e\xff\x77\x7c\ +\xaf\x3d\xf9\xf8\x93\x98\xae\xa1\x7f\xc8\xc6\xfb\x43\x53\xfb\x80\ +\x7c\xc4\x71\x57\x48\xc3\x4c\x48\xd4\x89\x29\x27\xee\xda\xe1\x0a\ +\xaf\x43\xac\x7a\xc7\x0a\x2b\xdc\x3b\xac\x36\xd4\x56\x58\x61\x85\ +\xd7\x2e\xbe\xc0\x33\x82\xbb\xcb\x8e\x56\xaf\x46\xc1\xe0\x53\xae\ +\xb1\xd0\xc3\xe2\x68\xd0\x5d\xb7\xc7\xde\xf3\x15\xf6\x8b\xff\xe0\ +\x83\x66\xd7\x6f\xf8\x7f\x85\x8d\xc7\x58\x84\x70\xb1\x9f\x29\x72\ +\x61\x19\xd0\x8d\x16\x3a\xc1\x22\xc6\x23\xc4\x4d\x59\xa5\x23\x8f\ +\x23\xac\x5c\x1e\x2e\xf4\xd3\x26\xb2\x72\x0d\xc5\x8c\x99\x44\x8b\ +\x5f\xde\x00\xa0\x0d\xd3\x2b\x8d\xdb\x4a\x49\xbd\x07\xb2\xe7\x93\ +\x49\x8c\x5d\x16\x19\xc8\x9e\x3e\x44\x06\x1f\x24\x21\xa7\xe0\xe8\ +\x3f\x84\x61\x26\xd0\x3a\x3d\xb9\x81\x2f\xa2\xc6\xa3\x89\xcd\x0e\ +\x71\x1c\x8c\x6d\x72\x38\xb5\xc9\x88\xdf\x46\x1e\x43\x3d\x41\x7b\ +\xcd\xac\xd3\x1f\x58\xab\xd7\xb7\xd9\x60\xc0\x3f\xa4\xd0\x7f\x7b\ +\x19\x16\x74\xfc\x49\x44\xae\x23\xdb\xb4\xc7\x31\xc6\x31\x45\x1b\ +\xeb\x3f\x8c\xe8\x1d\x01\x6d\xb2\x81\xf8\x0d\x4e\x95\x5f\x5a\x2c\ +\x0c\xeb\x55\x1b\xe0\xc5\x74\x5d\x41\x92\xc5\xd4\xeb\xac\x98\x04\ +\x83\xa8\x4b\x01\x78\x3f\x93\xb4\xe1\xc1\xf3\xc9\x83\x6d\x8a\x18\ +\xab\x36\x2d\xdc\xa4\x0b\x3b\xbc\xf8\xf6\x40\x84\xa2\x22\x2a\xfe\ +\x5d\x17\x16\x0e\x32\x50\xb3\x18\xda\xa8\x04\x33\xa7\x07\xa8\x53\ +\xec\x51\x81\xe4\x2c\x03\x0a\x34\xed\xb4\xac\xbb\xd9\xb7\xee\x56\ +\x5f\x9b\x20\xfc\x29\x3f\x3d\x0d\xc5\x54\x78\x37\x35\x64\x66\x78\ +\x53\x80\x43\xcd\x18\xca\x3c\xc3\x9e\x0f\x38\x6f\x74\x95\x8b\xb2\ +\x94\xd7\x91\x92\x24\x1d\x60\xb9\x54\x36\xb9\x43\x5a\x65\xc6\x38\ +\x94\x55\x3e\x5c\x8c\x73\x43\x6d\xbc\x8b\x7e\xb0\x8f\x7e\x83\x3e\ +\x45\xf3\xbc\xb6\xd8\x1a\x4a\x1e\x60\x1a\x41\x6d\xf5\x4a\xe0\xf6\ +\x0c\x55\x04\x52\x20\x48\x7a\x8b\xf3\xa6\x1c\xdb\x8b\x5c\xcf\x6e\ +\xed\x4e\x6d\x8a\x72\xad\x43\xd2\xde\x1a\x59\x7b\xa3\x67\xc6\x6f\ +\x5b\xa3\x4f\x4f\xdb\x43\xfd\xe4\xd0\x74\xc2\x4d\x40\xfe\xaf\x5e\ +\xcb\x86\x17\x27\x76\xfb\x93\x23\xbb\xf6\xa1\x91\x5d\xfc\xe8\x8e\ +\xdd\xb8\xc0\x27\x9b\x7a\xf0\xa6\xdb\x06\xf0\x09\xdf\x38\x4f\xcc\ +\x5b\xe3\x02\xb3\x94\x9c\x81\xb7\x8f\xc8\x46\x05\xb8\xbc\x6a\x09\ +\x51\xd9\x20\x91\xc2\xeb\x83\xc3\x6f\x28\x00\xcc\x07\x2f\xff\x19\ +\x1f\xbc\xc1\x77\x78\x2d\x76\xfa\xd6\xd3\x7f\x1d\xf6\xad\xb5\xcd\ +\xff\x2e\x44\xbc\xd6\xb1\x36\xae\x49\x5e\x97\xad\xdc\x38\xd3\x0d\ +\x17\xc4\xf4\x43\xa7\xf4\x9b\x47\x12\x7c\xa3\x6a\x12\x01\x79\x3a\ +\x98\x6f\x01\x49\x1e\x52\xe2\xa8\x54\x82\xf8\x90\x57\x27\xb9\x98\ +\x51\xa5\xcd\x34\xde\xa0\x63\xec\xb4\xfa\x75\xa9\x6c\xd8\xb3\x23\ +\xe3\xa0\x17\xbf\x41\x07\xb9\x22\x06\xcd\x48\xcd\x9f\x69\x95\x8c\ +\x37\x7f\xb8\x71\x3f\xc5\xb1\xb0\x99\xa6\x53\xc6\x7e\xa8\xbb\x43\ +\xc1\x03\x3a\x13\xf1\x6d\x6c\x6e\x04\xcb\x3f\x0e\xf6\x1a\x3f\x4b\ +\x38\x58\x66\x18\xf0\xa6\x26\xc7\xaf\xe1\xc1\xc8\xae\x1c\x8e\xed\ +\xc2\xf3\x37\xed\x4b\xff\xcf\xff\x27\xfb\xea\xff\xc3\x9f\x40\x87\ +\x19\xa1\x0f\xc5\x38\xa2\xd4\x80\x4e\x62\xa2\xa6\x5f\x39\x3c\xf5\ +\xa2\xbf\xe4\x8f\x8b\x6b\x1c\x27\x5b\x26\xff\x3c\xf1\x2a\xb8\x7c\ +\x5d\xe1\x73\x6a\xbf\xe3\x12\xdd\x83\x93\x21\x17\x08\x74\x71\x74\ +\xd0\xbd\x27\xb6\xbe\xb5\x6e\x6f\x7e\xf4\x2b\xed\xc7\xff\xe9\x8f\ +\xd8\xe1\x70\xcf\x1e\x7d\xfc\x94\x1d\x8e\xf9\x84\x49\x27\xc6\x2e\ +\x04\xba\xa8\x48\xe3\x98\x61\x1c\x2a\x3e\x72\x44\xa9\x47\x96\x8a\ +\x8a\xeb\x46\xa9\x99\x24\x19\xf9\x6c\xec\xf8\x04\x14\x15\x9c\x93\ +\x50\x2e\x4d\x75\xcd\x55\x64\x38\x59\x02\x18\xf9\x75\x8e\xf2\xc1\ +\x9d\x86\x1c\xca\x99\x4f\x94\x75\x1e\x35\x9f\x7a\xff\xb4\x59\x04\ +\x3d\xf3\xff\x63\xc7\x98\x3b\x1d\xee\x8f\xec\x60\x6f\x6a\x43\x8c\ +\x4f\x63\x64\xd2\xea\x74\x6c\x13\x9f\xed\x27\x31\x5e\x9f\xda\x58\ +\xb7\x01\x78\xfe\x77\x18\xc7\xc1\x5e\xab\xcb\x1f\x07\xd0\x58\xd2\ +\x46\xfa\x0e\xca\x31\x69\xed\xda\xad\xe1\x15\xfb\xe4\xf3\x2f\xda\ +\x95\xdb\xbb\xf0\xc9\x2f\x3c\xd1\x1e\xe3\xa0\x0a\x9c\x9f\x29\xf3\ +\x25\x52\xab\x38\x99\x51\x89\x8f\x03\xf5\xe9\xcb\x93\x33\xa0\xff\ +\x89\xd9\x64\xc0\xaf\x9c\xd8\x89\xed\x8e\x9d\xd8\x60\x33\x51\x06\ +\xb5\x0f\xe2\x4a\xc8\xba\x69\x8c\xe7\x67\x0f\x68\x7e\x0a\x73\xd8\ +\xd5\x26\x28\x37\x1b\x10\xe1\x13\xca\x66\xf8\xec\xbd\xb1\x3f\xb1\ +\x4f\xbc\xd0\xb5\x8f\xbe\x74\x68\xfb\xf8\x6c\xe6\xf6\x0c\xcf\xbf\ +\xa6\x29\xf4\x47\x97\xa4\x59\x14\xc4\x22\x12\x3c\x47\x94\x21\x90\ +\xbe\x04\xf3\x48\x3f\xfc\xec\xdc\x58\xef\xda\xf6\xa9\xae\xf5\xbc\ +\x71\xa1\x5b\x74\x0a\x4e\x3e\xc3\x35\x40\x6d\xd2\xce\x20\x28\x49\ +\x40\x54\x7d\xd2\x4f\x46\xf0\x24\x93\x97\x28\xcf\x0a\xb0\x2c\x5f\ +\xaf\x40\x30\x68\x56\x6d\xa8\x4d\x70\x7d\x61\x0e\xce\x1d\x2d\xa0\ +\x4e\xe5\x12\x87\xd3\xa9\xc9\x38\xa1\x33\xd8\x00\xf9\x70\xfe\x57\ +\x17\xdb\x7b\x4f\x6d\x45\x9a\x4f\x74\xf3\xa7\x1d\xdb\x7a\x62\xe8\ +\x60\x3c\xd1\x67\xf6\xfa\x60\x66\xeb\x98\x8f\xca\x26\x36\xd1\xe3\ +\x0c\xa8\xba\xec\x97\xca\x83\x92\xa8\x93\x97\xcf\xcb\xc9\x8d\x33\ +\xfe\x7f\xdd\x2e\xd6\x06\xbf\xf1\x99\x0d\xbb\x70\x99\xd7\x31\xd6\ +\x62\xb0\xd5\x3a\x07\x1c\x0f\x42\xc9\x19\x7b\xe4\x44\x29\x38\xf3\ +\x09\x52\xc8\x5c\x12\xa8\x37\x44\x75\x3d\xe9\x50\x2e\x9c\xd1\x5c\ +\xc8\x79\x5e\x67\xc8\x1b\x09\xd8\xd4\xad\xde\x1a\xe6\xdc\x7d\x1b\ +\x0c\x36\x6c\x03\x6b\xc5\xd3\xdb\x3d\x3b\x7d\xd2\xec\xd4\xf6\x0c\ +\xf4\xcc\x4e\x6c\xe2\xd8\x9a\xda\x36\x26\x93\x1b\x6b\xfc\x85\x00\ +\xb9\xd6\x98\xe4\x55\x66\x0e\xf3\xed\x2e\xbd\x72\x5e\x90\x97\xc0\ +\x41\x92\xed\x99\x22\xe7\x09\x6f\x65\x79\x50\x26\x6d\x6d\x4c\xea\ +\xcb\x48\xdc\xb8\x86\x4c\xad\x17\x46\x9e\xd3\x3c\x5d\xcd\x9a\x5c\ +\x08\xe8\x8b\x4a\x73\x9b\x69\x7e\xad\x26\xed\x88\x94\xc1\xcb\xef\ +\x1c\xa0\xf0\xb7\x68\xf9\x00\x95\x5f\x48\xe2\x53\xba\x9e\x86\xeb\ +\x44\xcc\xbd\xa7\x6b\x36\x1a\x1f\xd8\x8b\x9f\xb9\x69\xdd\xcb\x8f\ +\xd9\x77\x7d\xfb\xf7\xd9\xdb\xdf\xf2\x65\xc8\x93\xd7\x7f\x8c\x01\ +\x91\x89\x6a\x1d\xf9\x96\x8c\x33\xbe\x2b\xd0\x38\x1d\x24\x52\x56\ +\x3b\x7a\x45\x4e\x57\x78\x9d\x61\xd5\x3b\x56\x58\xe1\xde\x61\xb5\ +\xa1\xb6\xc2\x0a\x2b\xbc\x76\xf1\x05\x9e\x11\x7c\x51\x4c\x40\x30\ +\x67\xe6\x1f\x45\xcf\xc6\x43\x3b\x71\xee\x21\x3b\xf9\x8e\xb7\xdb\ +\x3f\xff\xbb\x7f\xcf\xd6\x67\x63\x6b\xf5\x7b\xfa\xf9\x47\xdd\x00\ +\x40\x61\xe7\xa7\xd7\x35\x15\x8b\x01\x18\xf9\x02\x5c\xa4\x64\xb9\ +\x90\x74\x01\x0e\xe6\x47\xb9\x9b\x41\xc4\xc5\x24\x18\xc9\x69\x53\ +\xe7\xe3\x72\x67\xe8\x9b\x31\x28\xe4\xa1\x9f\x46\x73\x73\x0a\x14\ +\xfb\x22\xc3\xe9\xf9\x45\xa2\xdb\x29\xbd\x02\xe7\x0b\xe8\x0b\x91\ +\x16\x97\x2e\x91\x81\xb2\x86\x3d\xeb\xa0\x3c\x99\x56\x86\x08\xb0\ +\xa0\xe2\xff\x0e\x4d\x0f\x46\x36\xda\x3d\xb4\xc9\xce\x81\xd9\x90\ +\x4f\xed\x8c\xb1\x26\x42\x4a\x3a\xc3\x3a\x98\x37\x7b\xb8\x8c\xb3\ +\xe9\x44\x3f\x77\x66\xfb\x43\x6b\xed\xec\xfb\xff\x67\x1d\x0e\xd1\ +\xee\x13\xf9\xa2\x4f\xfe\x77\x1d\x57\x49\xbc\xf7\xc2\x24\x5e\x2a\ +\x2c\xbb\x22\x5b\x27\x4a\x09\xc1\x25\xed\xda\xa5\x08\x55\x5a\x30\ +\xa6\x0b\xc5\x51\x1f\xe5\x23\x81\x84\xc8\xbb\xdc\x4d\x97\x0d\x45\ +\x64\x62\x39\xea\x36\x89\x20\x5d\xe4\x67\x3b\x65\xbe\x29\x35\x2f\ +\xab\x51\x8b\x16\xd5\xf4\xc7\xda\x51\x9e\xb1\x6c\xa8\xc0\xc1\x85\ +\xfe\x0c\xfd\x92\xff\x9f\xd6\xdf\x18\x68\xc1\xcc\x6f\xa1\xce\x9d\ +\x23\x26\x64\x47\x23\x49\x9a\xed\x5c\x3c\x7a\xb9\x52\xc2\xf6\x96\ +\x44\x0c\x23\x68\x4a\x27\xca\x18\xc8\x04\x68\x44\x27\x5d\xa7\x6c\ +\x99\x44\x74\x25\x13\x11\x96\xd9\xe9\x11\xf3\x27\x1f\x27\x7b\x23\ +\x1b\xef\xf3\x27\x1f\x23\x21\xe4\xb2\x88\x7c\x3d\x64\x4c\x3d\xb9\ +\x48\xbf\x14\xd4\x65\x0a\x87\xe7\x2d\x52\x88\x62\x49\xe6\x34\x09\ +\x44\xe8\x82\x2c\x1a\x7f\x86\xf4\xe0\x96\xff\xbf\xdb\x60\xd6\xb6\ +\xfe\x26\x94\x7d\xfe\x53\xc3\x08\x6d\x87\xfe\x7a\x73\x62\xfb\x17\ +\x76\x6d\xef\xf9\x89\x5d\xff\xcc\xd8\x6e\x7e\x64\x64\x17\x3e\x74\ +\x68\xd7\x3f\x35\xb2\x9d\x6b\xec\xcb\x6b\xf2\xa9\xff\x06\xe1\x8b\ +\xfd\x58\x79\x29\xb3\xa6\x3d\x12\x51\x64\xc9\x18\xa0\x10\x69\xdb\ +\xd4\x95\x9e\xa2\x3f\x12\xa9\x66\x3a\xf6\x2f\xda\xf3\xe6\x24\x04\ +\xba\x6e\xc8\xa2\x1f\x74\x7b\xe0\x7b\x5d\xdb\xd8\x5e\xb3\xf5\xb3\ +\x6b\xd6\x39\xbb\x6e\xed\x2d\x6e\x70\x77\x65\xef\x65\xa3\x31\x62\ +\x26\xa4\x5f\xf1\x38\x48\xeb\x6e\xc5\xe2\xd1\x40\xa5\x83\x88\xa5\ +\x9b\x43\x61\x83\x60\x54\xaa\x12\x15\x4e\x7e\x8e\x76\x92\x37\xcc\ +\xf8\xbf\x41\xda\x4c\xc3\xa1\xf1\x40\x85\x05\x58\x3e\x9e\x28\xc4\ +\xfc\x56\xbf\x36\xb1\x90\x2a\xae\x30\x0f\xa1\xa6\xa4\xb8\x55\xd3\ +\x81\xe3\x78\xc5\x23\x9e\x86\xf5\xa7\xd3\x28\x77\x35\xef\x0e\x71\ +\xb3\x10\xa7\x4e\xb1\x64\x71\x94\x27\xe1\xf0\x56\x1e\xa8\x87\x36\ +\xf7\xa3\xf8\xec\x9f\xf2\x4b\x67\xe3\xb1\x5d\x3e\x44\xbf\x78\xe9\ +\xa6\x7d\xe9\x9f\xf8\x13\xf6\xb5\x7f\xe1\x2f\x58\x7b\x02\x0b\xb5\ +\x33\x6d\xab\xba\x28\x75\xc2\xeb\xb0\x14\x9e\x49\x83\x2a\x19\xc5\ +\x52\x95\x20\x95\x99\xc0\x13\xfb\x79\x4a\x47\xb5\xc3\xc5\x38\x91\ +\x7c\x6d\x7b\x8f\x70\x8f\xdd\xbd\xe6\x71\x37\x4d\x9c\xfa\xc5\xf8\ +\x15\xe1\x55\x6c\x78\xf5\x67\x1c\xb8\x36\x5a\xb3\xae\x4d\x66\x43\ +\x3b\xf7\xc0\x43\xf6\xc6\x93\x6f\xb5\x0f\xfc\xf8\x0f\x59\x7f\xbd\ +\x6b\x67\x1f\xdb\xd6\x1c\xc0\x37\xfd\x79\x28\x61\xc4\x24\xbd\x9f\ +\xf2\x7a\x2a\x63\xa6\xb8\x34\x89\x50\x51\x26\x0a\x80\xd5\xf5\x1b\ +\xe3\x97\xa7\xc7\x75\xc9\xeb\x14\x02\xb1\x0c\xc0\x4b\x07\x31\x45\ +\xcb\x50\xcb\x39\x64\xd1\xdc\x0f\xf7\x93\xe9\x1d\x59\xba\x8c\x19\ +\x25\xef\x08\xa9\x62\xa9\xd2\x0c\x36\x9a\x53\x40\x38\xb5\xb1\x1d\ +\x0e\x87\xb6\xb7\x77\x60\xbb\x98\x4b\xed\x60\x8e\x74\x1b\xc7\xce\ +\xfe\xa1\xed\x1e\x4c\xec\x70\x72\x80\xa9\xd3\xbe\x5d\xdf\x83\x0c\ +\x9f\x9d\x87\xf8\x3c\xe2\x4f\x3d\x1e\x8c\x86\x76\x75\xe7\x86\x5d\ +\xbd\xf1\x9c\x3d\xff\xd2\x8b\x76\x7b\xf7\x2a\xe6\x51\xf8\x9c\xc2\ +\x7c\x6b\x3c\x46\x46\x9a\x83\x64\xe9\xc8\x4b\xa4\xcf\x0b\x87\xeb\ +\x0b\x7b\x17\x68\x6a\xb6\x00\x38\xe6\xd3\x73\x87\x87\xf8\x2c\x9d\ +\x0d\x6c\xd0\x1f\xd9\x89\xb5\x91\x4d\xb9\x11\x31\xe5\xc6\x8a\x6f\ +\xae\xe8\xcb\x11\xd1\x10\x53\x0c\xb8\xdc\x18\xf2\xb2\x71\xe7\x6d\ +\xa8\x71\x72\x34\xc5\xe7\xeb\xc1\xa1\x7d\xfc\xd3\x6d\xfb\xf0\x0b\ +\x23\xbb\xb1\xc7\x27\x94\xf8\xa5\x2d\x4f\xea\x65\xf6\x42\x8b\x0f\ +\x9a\x8a\xa0\x02\xe0\x58\xe1\x48\x34\xa7\x0b\x46\x49\x71\x74\xf1\ +\x39\xb8\xb1\xd9\xb5\x4d\x7e\xf1\x04\x73\x58\xcd\xe5\x4b\x1a\x86\ +\x6c\xbc\xa4\x8f\x81\x54\x4c\x04\x43\x7e\x8e\x64\xba\x72\x00\xd4\ +\x25\x2d\xd0\x5e\xc6\x2e\x46\x81\xf8\x12\x99\x22\x1c\x6e\xc7\xb7\ +\x5a\x4b\x9b\x68\xb9\xa1\x56\x3f\xa1\xb6\x88\xa3\x72\xf7\x46\xb0\ +\xe5\x09\xe6\xc6\x59\x8b\xe7\x95\x7a\x5e\x3f\x41\xa2\x4c\x49\xba\ +\xcc\x79\xd2\xda\x54\xe3\x7f\xa6\x4d\x3a\x76\x80\xcf\xc1\x36\xa6\ +\x18\xfc\x65\xf7\x75\xfe\xb7\x2c\xed\x60\x93\x69\x49\xe8\xa9\x40\ +\xbe\x94\x0d\xf4\xd9\x1e\xf0\xc3\x67\xe2\x3a\xdd\x19\xfa\xef\xd4\ +\x9e\x7b\xa9\x6d\x1f\x79\xae\x6b\xbb\x87\xfc\x9f\x3d\x4d\x05\x90\ +\x26\x6b\x1f\xb1\x3b\x69\x20\xb6\x92\x91\x64\x01\x14\x3b\x4f\x52\ +\x59\x3a\x1b\x01\x91\x4a\xa7\x7d\xda\x41\x06\x9f\xf7\x2d\x3e\xb5\ +\x3f\x41\xf9\x06\xb6\xb1\xb5\x6d\x4f\x3c\xfe\x80\x3d\xf9\xe4\xb6\ +\x9d\xde\x1e\xd8\xc9\x8d\xa9\x6d\xad\x8d\x6d\x73\x73\x6c\xeb\x7d\ +\x4c\xb1\x50\xd8\x1e\xbf\xcc\xa4\xb2\xc1\x09\xfb\x1f\xfd\xb1\x00\ +\xc8\x58\xee\x19\xe6\x39\x17\xc8\xbb\xce\xeb\x27\x49\x50\x40\x21\ +\x1a\x44\x0b\x00\x5e\x99\xda\x96\x2d\xa9\x39\x21\x37\xaa\xba\xdd\ +\x68\x37\xc8\xa3\xbd\xbc\x29\x10\x46\x3b\x10\x24\x93\xd5\x53\x73\ +\xb0\xd0\xd4\x07\xe7\x82\x53\x26\x9d\x47\x1c\x13\xf0\x9c\x27\x51\ +\x47\x1f\x4c\xc3\x23\x13\x33\x2a\x65\x01\x13\x62\xc5\xf5\x51\xce\ +\x4b\xb6\xb3\xc6\x0f\xce\xb5\xd7\x50\xce\x89\x5d\xb9\x72\xc9\x5a\ +\x2f\x3d\x69\xbf\xff\xdb\xfe\xbc\x7d\xe5\x57\x7c\x0d\xa6\x68\xb8\ +\xfe\x55\x7e\xd4\xab\xd4\x83\xe9\x44\x3a\x5c\xed\x32\x37\xb9\x87\ +\xb8\xe7\x0e\x57\xb8\x8f\xb0\xea\x1d\x2b\xac\x70\xef\x80\xcf\x20\ +\x7e\x42\xac\xb0\xc2\x0a\xaf\x47\xbc\x26\x2f\xfe\xdf\xe2\x42\xdf\ +\xfd\x24\xe4\x55\x2a\x68\xba\xc5\x6a\x6d\x3a\x3a\xb0\x76\x6f\xcd\ +\xfe\xe5\x3f\xf8\x80\xfd\x2f\x7f\xe8\xdf\xb1\x77\x3e\xbe\x61\x5b\ +\x90\xf7\xb1\x7a\xe8\xf1\x47\xef\xb5\xc8\x20\xbc\xd4\x5a\xd0\x74\ +\x78\x03\x98\x37\xa8\x79\x93\x20\x6e\x53\x20\x8d\xcf\xfb\x65\x81\ +\x88\x7a\x2c\x02\xb8\x22\xa4\x2d\x4d\x44\xe3\xdd\x85\x9c\x5f\xe6\ +\xc4\xc2\x87\xb4\xfe\x17\x8b\xab\x47\x6e\x8e\x70\x31\x44\xbf\xba\ +\xb1\xcc\x9f\xc8\x71\x5e\x3f\xc9\xc2\x45\x1a\xb3\xa4\x37\xbc\x73\ +\x6d\x42\x68\x71\x8d\x83\x0b\x1f\xff\xd6\x2f\x84\x59\x4f\xa1\x5a\ +\x28\x8b\xa6\x03\xa7\xc3\x9d\xf4\xe9\xb3\xb1\x45\x96\x94\x8b\x42\ +\x59\xa1\xe0\xc2\x94\x65\x66\x1b\xf4\xd6\x50\xc6\xb5\x9e\xf5\xb7\ +\xf9\x9f\x6a\xfc\x99\x39\xc4\x58\xcc\xcd\x3a\x38\xc6\x7c\x2a\x69\ +\x64\xb3\x7d\x2c\x98\xf6\x0e\x6c\x38\x3c\xd4\xd3\x69\x93\xbc\xc1\ +\x8d\x72\xea\x5b\x8f\x23\xfe\xaf\x48\x3c\xf5\xb6\x3f\xb1\xe9\x21\ +\x37\xe9\x90\xdd\x08\xba\x21\x0e\xde\x73\x51\x9d\x50\xee\xb2\x1e\ +\xe5\xb2\xca\x6b\xcf\xb2\xa9\xcc\x92\x21\x76\x66\x1e\x85\x77\x6b\ +\xda\xd2\x50\xe7\x4c\x64\x1a\xa0\x81\x29\x0f\x2e\x3d\x7b\x3c\x4f\ +\x32\xce\x3c\xa5\x80\x33\xb5\xcf\x42\x92\x9a\x61\xce\xca\x43\x71\ +\x0d\xa6\x8f\x08\x71\x93\x82\x3c\xcb\x09\x8e\xdf\xec\x1e\xa0\x8d\ +\x1f\xdc\xb4\xcd\x53\x1b\x66\x7c\xa2\x52\x1b\xbf\xd0\xe1\x7c\x14\ +\x8f\x24\x70\x34\x53\x13\x32\x41\x02\x24\xa3\x05\x1c\x22\x98\x07\ +\xda\x9a\x34\x1b\xb0\xb4\x47\x53\x0e\x6d\x10\x00\xc9\x33\x9d\xf2\ +\xe6\x9b\xf6\x22\xa3\x4d\x03\x4e\x43\x87\x7e\x39\xdc\x39\xb4\x83\ +\xcb\x7b\x76\x70\xe5\xc0\x5a\x7c\xda\x51\xe7\xd3\xcb\xa1\x3e\x45\ +\x53\xa2\x08\x98\xb8\x48\x0b\x1a\x89\xdb\x38\x5f\xdb\xc1\x67\x61\ +\x69\x93\x5a\x86\xf0\x49\x25\xf2\xe5\x1e\xea\x14\x41\xab\x33\x40\ +\x3f\x9e\xd8\x03\x4f\x6e\xdb\xf9\x37\x6f\xd9\xc6\x39\xb3\xc9\xda\ +\xcc\x3a\xe3\x7d\x94\x75\x6a\x37\x5e\xda\xb1\xdb\x97\x26\x76\x7d\ +\x67\x62\xe3\x9d\xb6\x4d\xf7\x67\x36\x1e\xa2\xdf\x4f\xd7\xb4\xc8\ +\x9f\xcc\x26\xa8\xa7\x7f\x83\x56\x39\xa8\xce\x08\x14\x93\xf7\xdc\ +\xc5\x67\xff\x28\x88\x32\x45\x03\x50\xd7\xf4\xa9\x40\x30\x1e\x21\ +\x8c\x31\x40\x3c\x68\x8d\x11\x1c\x4b\x3a\x3d\xdb\x3e\xb5\x6e\x6b\ +\x0f\x6f\xd8\xda\xf9\x0d\x1b\x77\x3b\x36\x39\x6c\xd9\x70\x8f\x4f\ +\x86\x0e\x71\x1d\xf1\xa2\x82\xff\xb9\xf2\x78\xac\x88\x71\xa8\x6a\ +\x34\xfd\x68\xfe\xdc\x1e\xc5\x12\x65\x7d\x1e\x97\xf8\xd6\x53\x0b\ +\xa8\x83\x3f\x95\x46\x82\x37\x4e\xa4\x91\x5e\x65\x63\x3a\x04\xf9\ +\x33\x59\x0a\xe9\x97\x77\xe9\x34\x20\xf8\xf9\x56\x36\xbc\xf1\xc3\ +\x17\xfb\x15\x54\xda\xf4\x8a\x27\xd3\xf8\x33\xa3\xfe\xb4\x9a\xa7\ +\xe3\xbd\x5c\x75\x78\xda\xd1\x29\x83\x89\x67\xa8\x9f\x72\x44\xac\ +\x56\xa6\x8e\xe7\x97\x72\xe6\xa1\x71\x76\x84\xa4\xd4\xce\xec\xc6\ +\x78\x62\x9f\x7c\xfe\xaa\x3d\xf2\x0d\xdf\x6a\xdf\xf9\xb7\xfe\xa6\ +\x75\x5b\x03\xf8\xc6\x38\x86\x73\x82\xab\x93\x89\xf1\x66\x4c\xd0\ +\xd9\x31\x50\x3e\x4e\xce\xd1\x64\x94\x71\x05\xb1\x0c\xee\xe0\x0f\ +\x7a\xb6\x45\x63\xb7\xe0\xe3\x58\x19\xb1\x28\xff\x3c\x71\x8f\xdd\ +\xbd\x66\x70\x5c\x73\x2e\xca\x93\x4f\x1c\x67\xff\x39\xe1\xf3\x4a\ +\xfc\x32\x40\x41\x71\x2d\xf2\xd2\xe1\xd5\x30\xb1\x43\xf5\xff\x1f\ +\xff\x87\x3f\x6a\xff\xe5\x0f\xfd\xbb\xf6\xb5\xdf\xfc\xa4\x3d\xf5\ +\xcc\xb6\xed\x62\xec\xef\x58\x4f\x4f\x73\xd2\x36\xd3\xf9\x7f\x9f\ +\xe1\xda\x67\x7d\x71\x8d\xf0\xb2\x26\x29\x7f\xe0\xe3\x0a\x2c\x10\ +\x1d\xd7\x92\xd2\xe0\xda\xe5\x4d\x70\x3d\x91\x81\xc4\x9c\x69\x69\ +\xef\x06\xb9\xf1\x09\x91\x6e\x8f\x37\x99\x99\x21\x8c\xa1\x60\x9a\ +\xe0\x96\x42\x45\x23\x40\x68\x9c\xe4\x35\xcf\x27\x6e\x30\x1e\xf0\ +\x49\x09\x5c\xd6\xa2\x8b\x25\xaf\xcb\xda\x59\x71\x70\x14\x54\xd1\ +\x65\x0d\x96\x59\x4f\xcf\x72\x2c\x41\x3e\xd3\x69\x07\xe3\x79\x0f\ +\x9f\xeb\x5d\xeb\xf1\xb3\x1e\xe5\x1f\x4e\x7a\x36\x1a\x77\xfd\x3f\ +\x25\x39\x47\x44\xf6\x87\xa3\x7d\x9b\x0d\x77\x6d\x3c\xd9\xc1\xfc\ +\x15\xf3\x27\xeb\xda\xc5\x5b\x66\x57\xaf\x4d\xed\xd6\x35\x16\x8b\ +\xe3\x1c\xe6\x51\x78\xf1\x67\x37\x59\x46\xb6\x8d\xca\xa0\x03\xf4\ +\x42\xd1\x97\x02\x09\x8e\x56\x09\xa9\x42\x48\xff\x3c\x09\xed\x69\ +\xd7\x06\x28\xef\xa3\x0f\x8e\xec\x5d\xcf\x1e\xd8\x83\xa7\x7a\x18\ +\x26\xd1\x6e\x18\x2b\xb9\xb9\xa6\x34\x4c\xa6\x4d\x20\x96\x0d\xe7\ +\x02\x49\xdb\x6d\x7e\x79\xa5\x65\x07\xc3\x8e\x5d\xbe\x3a\xb3\xcf\ +\x5e\x9e\xda\x0b\xfc\xcc\x3d\x40\xdd\x59\xd7\xd8\x80\x90\x07\x9d\ +\x77\x7e\x7e\x46\xa9\xe9\x52\x0d\x1a\xf2\x90\xa9\xcf\x54\x85\xe6\ +\x46\x59\xea\x25\x96\x21\x37\x4c\xda\xb6\x86\xf6\x3d\x7b\x6e\xcd\ +\x4e\x9e\x8e\xb9\xb6\x3a\x14\xe3\x40\xe5\x27\x12\x56\x70\xa5\x3c\ +\xd7\x76\x8b\x66\x81\xc6\xeb\x9c\xd3\x06\x25\x9d\x13\x19\xea\x3a\ +\x40\x3f\xe4\x5c\x63\x78\x38\xb5\x4b\x57\x86\x76\xeb\xf6\x18\xf3\ +\x69\xf4\x49\xd9\x38\x6a\xaf\x8b\x39\x78\x19\xd9\x97\x11\xcb\x31\ +\x2c\xc8\x67\x5b\x02\x7a\x42\x4d\xf2\x10\x50\x45\x1b\x46\x21\x10\ +\x1d\x26\xe8\xb6\x90\xa0\x5f\xa2\x7d\xcf\x9e\x9e\xd8\x53\x0f\x8c\ +\xec\x89\xb3\x33\x3b\x89\x7e\x30\x9d\xf0\x09\x36\x95\x5e\x1f\xb1\ +\x9e\x0f\x0f\x9e\x49\xfa\xe0\x59\xc7\xdc\x85\xbf\x06\x80\x39\xd8\ +\x6d\xac\x01\x9e\x7f\x69\x60\x1f\xf9\x64\xc7\x2e\xdc\x9a\x48\xde\ +\xc5\x49\xe4\x75\xcc\x93\x99\xa5\x54\x9c\x4c\x29\xe8\x22\x98\x31\ +\x33\xa5\x1e\xc6\x7c\x87\xa9\x22\xf0\xa1\x51\xa8\x26\xe1\x39\xa7\ +\x80\x3a\xa4\xe3\xda\x86\xfd\xb4\xdf\x5a\xb3\xb3\x67\xce\xd9\xb3\ +\x4f\xe3\x78\x63\xdf\xd6\xd7\xcc\xae\x5c\xbe\x61\x2f\xbd\x78\xc5\ +\x0e\xc6\xb7\xe1\x17\xed\x83\xba\xaa\x4d\x58\xa7\xc8\x47\xbe\x3d\ +\x03\xc4\x99\x9b\x2b\xb3\xc9\xdd\x26\x8d\x80\xc6\xc4\x51\xa9\x96\ +\x21\xd5\x4a\xc2\xb1\x0d\x12\x8e\x6f\xfe\x64\x1a\xf5\x0b\x0e\x50\ +\xc8\x94\x1c\xe9\x37\x08\x78\xa6\x73\x4e\x3e\xe6\xfc\x89\x62\xc4\ +\xbe\xa6\x54\x72\x19\x2a\x96\x7d\x83\x42\xa7\x0d\xc3\xca\x46\x6b\ +\xd2\x68\x1c\x3e\xb5\xaf\xd2\x83\x9d\x18\x9f\x4c\xeb\x83\x9c\xda\ +\xc5\x6b\x97\x6d\xf2\xf1\x35\xfb\xd6\x6f\xf8\xf3\xf6\xdb\xbf\xe9\ +\xdb\x35\xde\xf2\xc5\x4d\x4a\xf6\x1f\xf6\x9c\xa6\x06\x01\xba\x4c\ +\x51\x4d\xbf\x62\x30\xa1\x97\xcf\x91\x7c\xed\xf0\xf3\xca\x60\x85\ +\xfb\x10\xab\xde\xb0\xc2\x0a\xf7\x0e\xab\x27\xd4\x56\x58\x61\x85\ +\x15\x5e\x21\x8e\x4e\x44\x96\x4d\x66\x5f\x25\x64\xe6\xc8\xa2\xd5\ +\xed\xd9\xf4\x70\xdf\x1e\x7b\xeb\x3b\xac\xfd\xf8\x79\xfb\x17\x7f\ +\xe3\x87\xec\xd4\xc9\x0d\xd3\x7f\x10\xcd\xfc\xe7\x4c\x1c\x48\x84\ +\x05\x01\x93\x2a\x39\xd3\xa6\xb8\x91\x8a\x16\x4f\x5b\x2d\x50\x29\ +\x67\xe8\x8b\x02\x4a\x7c\x61\x02\x13\xa8\xa4\x21\x41\x1e\xaf\x0c\ +\x97\x02\x0a\x3d\xa1\xc2\x15\x60\xf2\x4e\x61\x3d\x45\x3f\xa2\xe2\ +\x88\x02\x32\xaf\x94\xa7\x8a\x01\x6f\x32\x90\xd6\x6a\xb2\x51\x45\ +\x51\x44\x3b\xdc\x2e\xcb\xae\x32\x93\x56\x39\x40\xf3\x3f\xd6\xb0\ +\xb0\x9f\xed\x8e\x6d\x7a\x6b\x68\xa3\x1b\x07\x36\xba\xbe\x6f\xa3\ +\x2b\xbb\x36\xba\xb6\x67\x93\x9b\xe0\xf7\x86\xfe\xff\x59\xfc\xa9\ +\x47\xad\xae\xe1\x16\x7e\xbc\xde\x71\x93\x88\xe5\xc7\xd1\xe6\xfa\ +\x99\x71\x16\x04\xf0\xfa\x32\x63\xa6\x61\x7a\xe7\xd3\xa2\x8e\xe9\ +\x7a\x29\xd2\x48\xf0\xb4\x0a\x43\x4e\xda\x5f\x5c\x96\x26\x2a\x6f\ +\xd1\x4e\x95\x52\xa8\x8a\x09\xc8\xe3\x12\x3b\x67\x8a\x6e\x5e\x19\ +\x80\x2c\xc4\x8c\xd2\x4c\x4d\x45\x15\x17\xa1\xec\x8b\x83\xb6\x75\ +\x4f\xae\x5b\x6f\xad\x67\x7c\x8a\x52\xff\x8f\x00\x03\xbf\x61\x01\ +\x30\x01\x17\xc5\x28\xaf\xfa\x99\xfa\xa1\x34\x05\x3c\x8f\x59\x35\ +\xe9\x94\xd4\xd3\x10\xd2\x87\xbf\xf0\xea\xe6\x14\x23\x0a\x73\x11\ +\xdc\x03\x11\x1f\x86\x4a\x96\x74\x10\x92\xa1\x30\x93\x31\x96\xcf\ +\x7b\x23\x9b\xec\x8d\xb5\x29\xe1\x4e\x1d\x91\x64\x4e\xd6\x08\xe7\ +\x31\x2f\xce\x5c\x6a\x40\x52\x0b\x0b\x9b\x42\xb6\x99\x5f\x99\x5e\ +\x0e\x2c\xdb\x47\x33\x3b\xbc\x3e\xb2\x9d\x0b\x43\xdb\xfd\xd4\x81\ +\xdd\xfa\xcd\x43\xbb\xf4\xd1\x1d\xbb\xfa\xd1\x03\xbb\xf4\xdc\x18\ +\xf2\x89\x1d\xdc\x36\x1b\xf1\xe9\xba\x31\x3a\x29\xff\xff\x85\x0e\ +\x50\x2f\xbf\x2e\x4a\x26\x73\x34\x11\x4d\x19\x32\xe6\x2d\x6e\x29\ +\x16\x92\x16\x86\x11\x4f\x4f\x5e\x17\xcc\x43\xb6\x9d\x96\x6e\xbe\ +\x5a\xaf\x6d\x5b\xe8\x17\x5b\x4f\x9d\xb2\xcd\xa7\x1f\xb6\xf5\xf3\ +\xa7\x20\xc3\xd8\x86\x36\xe7\x06\xf5\x74\xca\x1f\x0f\xd3\x1d\x30\ +\x87\x62\x3a\x20\xb1\xac\x0d\x03\x3a\x1f\x95\xcd\x52\xc3\x14\x56\ +\x4a\x4f\xa2\x42\xd3\xc5\x91\x64\xbc\x01\x84\xbe\x8b\x2e\x8c\x98\ +\x34\x3a\x12\xfb\x32\x55\x51\x47\x65\x9d\xfd\x21\x6e\xf0\x14\x90\ +\x61\x3f\xc7\x2b\xbf\x59\xcd\xf3\x28\x2b\xda\xf2\x06\x90\x36\xd3\ +\x26\xfa\x89\x47\x6d\xaa\xf1\x5c\xf3\x4e\x52\x8e\x41\x8c\xe3\xce\ +\x12\x7d\x68\x33\x8d\x37\xb7\xa9\xa4\x1e\x87\x97\x85\x3c\xa4\x20\ +\x69\xc7\x27\x2c\x98\x94\x99\x5c\x9d\xb6\xec\xb3\x17\x6f\xd8\xe6\ +\x97\xbc\xd3\xbe\xe5\xaf\xfe\x15\xdb\x3a\xf7\x90\xb7\x35\xeb\x35\ +\xe3\x0d\x61\x26\xa2\x0f\x82\x89\x16\x40\x51\x64\x31\x87\x4c\xa2\ +\xbc\x19\x17\x41\x45\x56\x32\x61\x9e\x77\x97\x94\x65\x26\x8b\x48\ +\xd9\xa2\x7e\x99\xed\x71\x38\xce\x77\x85\x57\xe2\xee\x7e\xc5\x71\ +\x6d\x70\x5c\xb3\xd7\xb4\x9f\xc8\x2f\x6e\xa0\xbc\xfc\x88\xe2\x53\ +\x1d\xe3\xc9\xa1\xbd\xf1\x4d\x6f\xb6\x8d\xc3\xb3\xf6\xc3\x3f\xf1\ +\x3f\xd9\x83\x8f\x9e\xb3\xed\x33\x3d\x3d\x05\xac\x1b\xd5\xba\x33\ +\xda\x54\xd0\xaf\x2b\xba\x70\x19\xab\xab\x59\x97\xd8\x18\xa7\x23\ +\x4c\xf0\xba\x52\xb3\x84\x58\x5f\xb8\x61\x01\xf4\x76\xa1\x6e\x0e\ +\x53\x47\x19\x02\xc5\x99\x19\xe5\x99\xb8\x42\x91\x84\xad\x2e\x5d\ +\x09\x49\x63\x76\x80\x82\xe5\xe7\x64\x73\x5e\x68\xdc\x90\x73\x71\ +\x05\x89\x18\x14\x9d\x4a\x07\xbf\x1c\xff\x40\x62\x4e\xd6\xe2\xff\ +\x74\xce\x30\x8f\x9a\x1c\xd8\x10\xf3\xd2\xc3\xc3\x5d\x3b\x1c\xee\ +\xd8\x78\x74\x0d\x34\x8e\xfd\xab\x76\x70\x78\x05\xe3\xfa\x4d\x3e\ +\xdf\x06\x7b\x7c\x1e\xa1\x9e\xed\xf6\xc0\xb6\xba\x5d\x5b\x1b\xcc\ +\x6c\x88\xf1\xe7\xe0\x90\x3f\xab\xe8\x2f\xcf\x83\xf9\x31\x70\x3e\ +\xa4\x12\x95\xe2\xdc\x35\x94\xb2\x24\xd4\xb9\x43\xd9\x87\x07\x66\ +\xb7\x77\x5a\x76\x30\xee\xda\x46\x7f\xaa\xff\x8f\xf2\xf3\xcc\x31\ +\x15\x69\xb8\xc1\x06\x8e\x43\xad\xce\x1f\xc6\xcf\x43\x8c\xcd\x97\ +\x6f\xb6\xed\xe3\x9f\x99\xd9\x47\x9f\x9b\xd9\x8b\x57\x66\xb6\x8b\ +\xb1\xba\x8f\xcf\x34\x3e\xb5\x2c\xff\xf1\x12\x8d\x74\x25\x6f\x7e\ +\x86\x7b\xc5\xc8\x44\x84\x58\x99\x38\xe9\x76\xcc\x3b\x8a\x22\x11\ +\x95\x98\x4e\x41\xce\xff\xa1\x3d\x71\xb2\x67\x83\x35\xce\x39\xa9\ +\xcd\x84\x9e\xb4\x06\xdd\x36\x1a\x72\x11\xa6\x63\x82\x95\xcb\x94\ +\x4d\x01\xe2\x60\xe8\xe9\xee\x08\x99\xba\x3d\x51\xea\x88\x98\x5f\ +\x9c\xdb\xdd\xe7\x13\x81\xfe\x93\x8f\x99\xdd\xa2\x57\xa6\xc8\xc3\ +\xd1\x50\x59\xbf\x8c\x4b\x5a\xf0\xde\xba\x38\x40\x4b\x1e\xac\xc3\ +\x09\x3f\x77\x22\x50\x75\xcc\x2f\x26\x1d\xdb\x1b\xb6\x6d\x87\x3f\ +\x89\x8d\x72\xf1\x67\x12\xd7\xd7\x27\x98\x92\x70\xa3\xc9\x0f\x7d\ +\xf9\x85\x57\x35\x4e\x04\x7f\xb2\x54\xdb\x3f\x1d\xd4\x63\x36\xb2\ +\x97\x6e\xb4\xed\x63\x9f\xe9\xd9\x47\x3f\xb5\x6e\x57\x77\x67\xd6\ +\xed\x8e\xad\x1b\x65\x53\x89\x4a\xfe\x8e\x45\x7e\x1e\x51\x1b\xd9\ +\x20\x08\x5b\x46\xd4\x64\x5d\xc5\x33\x08\xbd\xbe\xec\x18\xe3\x82\ +\xe6\xd4\xa8\xe0\xe6\x60\xdb\x9e\x7a\xe4\x19\x7b\xfb\xdb\x1f\xb0\ +\xb7\xbc\x61\xdb\x4e\x6f\x41\x87\x6b\xeb\xc6\x95\x5b\x76\xeb\xd6\ +\x2e\x7c\xf1\x17\x0a\x34\x20\x20\x15\xea\x85\x43\x65\x63\xc0\xbe\ +\x99\xb9\x46\x1e\x42\xd0\xbc\xdc\xc5\xe0\xcd\xd4\x12\xd7\x76\x04\ +\xd5\x45\x79\x14\x3c\x43\x3e\xef\x47\x6b\x22\xe6\x18\xa2\x9f\xf3\ +\x46\xfb\x7b\x92\x2a\xa1\xca\xe8\x79\x39\x55\x01\x3a\xbd\xa0\xe0\ +\x17\x8e\x34\x25\xd6\xc1\x8d\x34\xc8\x35\x67\x62\x3a\x08\x17\xca\ +\x32\xe7\x2b\x18\x0e\xc5\xb5\x99\xc4\xcc\x43\x45\x45\xd9\xa4\x67\ +\xe9\x39\x76\x75\xb5\xa9\x76\xe9\xca\x05\xbb\xf9\x9b\x3d\xfb\xed\ +\x5f\xf1\xa7\xed\xb7\x7d\xcb\xef\x54\x7a\xa6\xd3\xf9\xc7\xf9\x60\ +\x7b\xb9\x7b\x68\x9c\xf0\x4c\xea\x8c\x6a\xfa\x15\xe3\x38\x47\xa4\ +\xbd\x24\x8e\xcf\x2b\x93\x15\xee\x33\xac\x7a\xc3\x0a\x2b\xdc\x3b\ +\xac\x36\xd4\x56\x58\x61\x85\xd7\x16\xbe\x48\x66\x01\xc7\x17\x83\ +\x9a\x57\xb9\x90\xe9\x9e\x93\xfb\x2e\x26\xf5\xe3\xb1\xbd\xe1\xcb\ +\xbf\xc2\xf6\x4f\x6c\xda\xcf\xff\xad\x7f\x60\xe7\x4e\xad\x59\xaf\ +\xd7\xb1\xd6\x84\x9b\x6a\x1d\x19\x6a\x72\xef\x49\xca\xa4\x3e\x17\ +\x50\x5a\x7e\x82\x0e\x16\x7a\x67\x48\x0a\x5c\xec\x20\xca\x65\x56\ +\x58\x56\x21\xe1\x7e\x98\x34\xdc\x0b\xbe\x5e\xa7\x0e\xaf\xcc\x4b\ +\x34\x42\x27\x05\xae\x09\xfd\x9b\xda\x6e\x4b\xd0\x46\x79\xd2\x36\ +\x0d\x19\x79\x71\x43\xee\xf9\xb9\x6d\xc4\x58\x00\x51\xee\x46\x24\ +\x3c\x2e\x2c\x32\xf6\x1b\x56\x78\x61\x05\x36\x42\xfb\x8d\x87\x58\ +\x1a\x1d\x8e\xb5\xe9\x30\xde\x47\x7c\x88\xc5\xf6\x90\xff\x99\x86\ +\x45\x16\x6f\x54\xc3\x79\x73\x93\xcb\x6b\xe1\x05\xf0\x92\x69\x51\ +\xc8\xb6\xc6\xa2\x50\xed\xc5\x66\xd7\xb7\x94\x99\x50\x59\x82\xe6\ +\x62\x31\xca\x06\x78\x59\x78\xc8\x9b\x68\xb1\xce\x95\xb8\x41\xa5\ +\xa9\x8d\x74\xb8\x80\x9e\x52\x45\xaa\xf0\xa1\x4f\x48\x5e\x64\x8b\ +\x71\x00\xac\x97\x37\xe4\xb4\xaf\x4f\x5a\x8d\x34\xc1\xa1\xda\x54\ +\x49\xb8\x01\xc1\x27\x23\x6d\xd0\xb1\xfe\x49\xfe\x97\x43\xfc\x7f\ +\x9a\x6e\x04\x84\x61\x93\xb2\x8a\x5d\x2a\x8b\x6c\xa3\x88\xb4\x89\ +\x20\x02\x07\xc8\x38\x23\x61\xab\xb0\x24\x21\x5c\x94\x75\x41\x8c\ +\x88\x07\x4d\x28\x5b\x2c\x86\xd8\xb0\xe1\xc9\x9f\x8e\xa6\x36\xda\ +\x45\x3f\x39\x18\xeb\x69\xa1\xc8\x2e\x62\x1a\xe5\x11\x10\xe9\xde\ +\x85\xb4\x2f\xa0\xdc\x85\x55\x2a\xa1\xe1\x83\x42\x94\x32\x2f\x67\ +\x53\x5b\x7f\xfa\x91\xff\x0b\x62\xb6\xbb\x3b\xb4\x9b\x28\xe3\xad\ +\x1b\x23\xbb\x7a\x6b\x6a\xfb\x38\xd0\xa5\x01\xfe\xc3\x4b\x0f\x07\ +\x3b\x25\x6f\x07\x79\x7f\x0d\x57\xa5\x1d\x48\xb8\xcc\xfb\xa8\x38\ +\x09\x02\x34\xa2\x48\xb1\x33\x2a\x0f\x65\x75\x63\x27\x4a\xf2\x24\ +\xc2\xbf\x9e\x48\xe3\x4d\x14\x94\x04\xd7\xcb\xc6\xc6\x9a\x9d\x79\ +\xe6\xb4\xad\xbf\xe9\x09\xdb\x7c\xec\x9c\x4d\x37\xd6\x6d\x36\x9a\ +\xd8\xc1\xce\x01\xae\x45\x3e\x19\xca\x9b\x9a\xb1\x7b\x24\x5f\xee\ +\xb5\x14\x03\x32\x1f\x67\x80\x85\x62\x50\x9c\x65\x3c\x8a\x14\x22\ +\x5e\xd4\x27\x0f\x7f\x5e\x6a\x1e\xde\x67\x79\xd3\x8a\x1b\xe9\x8a\ +\x59\x07\xf6\x63\xe8\xfd\xea\x26\x98\x08\x32\x32\xba\xa3\x43\x92\ +\x0c\xed\x78\x77\x87\x76\x52\x2a\xf4\x18\x54\xde\x00\xe2\x66\x1a\ +\xea\xcf\x9f\x79\xe4\x1d\xa2\xdc\x4c\x2b\x1b\xfa\xa0\x55\x6f\x8e\ +\x47\xa4\xa5\xa3\xf7\xb0\x83\x8a\xe7\x58\x7a\x72\x30\xe6\x0d\x76\ +\x6e\x96\x41\x8d\xf6\x9c\xd9\x0d\x88\x2f\xbf\x74\x1d\x6d\xfe\x4e\ +\xfb\x96\xbf\xfa\x5f\xd8\x03\x6f\x7f\x27\xf2\x1b\xd9\x0c\xf5\xd1\ +\xff\xbe\xe8\xda\xa4\x13\x06\xf4\xf8\x72\xa0\x8d\x12\x44\x04\x9e\ +\x99\xc5\xb9\x2a\x58\xea\xb3\xe1\xb3\xe7\x35\x48\x5d\x2d\x5b\x44\ +\xea\xee\x64\x73\x27\xbc\x4c\xba\xcf\xd5\xed\x6b\x19\xf5\xe9\x49\ +\xd4\xed\x70\x1c\x4d\x90\x5f\x96\xfe\x15\xe3\x9e\x38\x79\x59\xb0\ +\x8b\xb2\xc8\xfc\xcf\x9d\xf6\xac\x63\x93\xf6\xd0\xde\xfe\x96\x77\ +\xdb\xf0\x7a\xdb\x7e\xf4\x67\x7f\xd8\x1e\x79\xe8\x8c\x9d\x3c\xd3\ +\xb7\x43\x8c\xfd\x1d\x7e\x6b\x86\x9f\x3d\x48\xc4\xd2\xf1\x3a\x53\ +\x9f\xd5\xdb\x2b\xce\xb1\x88\x32\x1f\x22\x29\x75\xb9\xe7\xe2\xc8\ +\xcf\xde\xd4\x10\x2e\x8b\xd1\x06\x01\x9f\x84\xe2\x9c\x63\xc1\x48\ +\xba\x45\x78\x2a\x37\x15\x94\x86\xb6\x9e\x2f\xd3\x68\x6e\xc5\x18\ +\x2f\xb9\x13\xe3\x7a\x85\x4e\x2e\x16\xf5\x28\xa4\x4b\x43\x84\x88\ +\xb8\x51\x47\xff\x3e\x36\xa2\x5d\x30\xbe\xd3\x86\x61\x8f\x4f\xdb\ +\x61\x9c\xe7\xcf\xfa\xf6\x31\x2f\xe5\x9c\x94\xed\xc8\x27\x84\xa0\ +\x81\x17\x8e\x9d\x33\x5b\xeb\x74\x6d\x6d\x63\x6c\x07\x87\x6d\x3b\ +\x18\x62\x1c\xd2\x4f\xcf\xf2\x87\x8d\xdd\x4f\x83\x8a\x67\x9d\x82\ +\x74\x78\xbe\x3e\x8e\xd4\x70\xb9\x28\x44\xe2\x34\x1f\x83\x2d\xca\ +\xcf\x32\x8f\x87\x1d\xdb\xd9\xe9\xda\xee\x70\xca\xa9\x0a\xca\x8b\ +\x72\xb2\xec\xa8\x0b\xa7\x76\x4c\xc7\xff\xf9\xe4\x58\xbb\x77\x38\ +\xb3\x0b\xd7\xa6\xf6\x89\xe7\x3b\xf6\xdc\x85\x99\xdd\xda\x43\xff\ +\xc1\xd8\xd9\xeb\xf4\xf3\xe3\x20\xda\x9f\x39\x06\x82\x96\x4c\xb4\ +\x46\xe9\x10\x23\xac\xda\x5d\x7d\x01\x07\xcf\x89\xfb\x20\xcf\xb7\ +\xc7\x6c\xe7\xb5\x41\xcf\x4e\x9c\x62\x9b\x7a\x2f\x2c\x60\x3a\x44\ +\xe9\xae\xd2\x00\xea\x99\x3a\x5f\x73\xda\x34\x52\xe1\x01\x45\x41\ +\x57\x1e\x52\xe2\xc8\x1c\x2a\x14\xd6\xcb\x90\x20\xcd\x27\x85\xf6\ +\x31\xbf\x3e\x40\xdb\x69\x43\x2d\x35\xb5\xe1\x82\xcb\xb9\xf3\x28\ +\x32\xfa\x2a\xc9\x88\x4b\xbf\x65\x90\x0a\x80\x24\xcf\x6d\x83\x48\ +\xab\xba\x83\xe2\xbb\xcd\xb9\x7d\xc7\x46\xe8\x6f\xfb\x87\xfc\x09\ +\x48\x3e\xc6\xc9\xcd\xf3\x89\x9a\xa2\xdb\x9b\xa2\x39\x31\x2e\x74\ +\xa6\xe8\x07\x7c\xb2\x7b\x66\x3b\x58\x17\x5c\xdb\x99\xd8\x67\x2e\ +\x76\xed\xc3\x9f\x58\xb3\xe7\x2e\xf5\x6d\x1f\x7d\xa6\xa3\xcd\x34\ +\x7e\xe8\xf9\x79\xcd\xa6\x4c\x88\xad\x0b\x05\x9a\xad\xe0\x66\x0c\ +\x9d\x6a\x62\x42\x25\x76\x12\x48\x2b\x56\xc1\xbb\x08\x03\xf8\x40\ +\xcc\xfc\xd8\x8f\xb7\xba\x67\xed\x2b\xbe\xf4\x4b\xec\xed\x5f\x76\ +\x1a\x63\xd7\x09\xeb\xf5\x51\xbf\xd1\xc8\x2e\x5d\xba\x6a\x17\x2e\ +\x5c\xb7\xf1\x64\x5f\x6b\x9a\x84\xfc\x29\x56\xcf\x28\x32\x0f\x2a\ +\x78\x56\xca\x4b\x4d\x58\xdb\xa6\x71\x95\x46\x64\xc5\x3b\xe4\xc0\ +\x0f\xb4\x93\xca\x4c\x3a\x36\xd3\x38\x0e\x64\x22\xb5\x8d\x67\x11\ +\x39\x39\xd2\x22\xa7\x43\x6c\x4f\x6e\xd6\x72\x0e\xac\x5a\xa1\x6e\ +\x13\xce\xa5\x20\x67\x53\x97\x9a\x86\x93\x88\x1c\x95\x8c\x79\x31\ +\xd6\xc1\x84\x2c\x17\xfc\x30\x2f\xff\xcf\x34\x52\x7c\x92\x79\xac\ +\xa7\x5a\xc9\x5e\xb8\x74\xdd\x6e\xfc\xe6\xd4\xde\xfb\xd6\xf7\xdb\ +\xef\xfa\xdd\xdf\x8d\x71\xa3\x8f\xfc\xfc\xe7\x33\x51\x1d\xd9\x33\ +\x95\x8c\x95\x89\x98\x88\xe7\x98\x63\x70\x27\xdd\x32\xd0\x9e\x19\ +\xd5\xa0\xec\x95\xfa\x59\xe1\x7e\xc7\xaa\x47\xac\xb0\xc2\xbd\xc3\ +\x6a\x43\x6d\x85\x15\x56\x78\xed\xe1\x8b\x68\x26\xe0\x45\x59\x2c\ +\xd0\x3d\x28\x60\xce\x89\x8f\x73\x45\xb9\x56\x1b\x7e\x13\x63\x7a\ +\x70\x60\x6f\x7a\xdf\xd7\xd9\x7e\x6b\x64\xbf\xf8\x77\x7f\xd4\xce\ +\x9c\xdd\x32\x3e\x05\xd4\x83\x8d\xfe\xd3\x87\xf6\xe1\xd3\x5d\x72\ +\xf1\x92\xb4\xfb\x60\xac\x05\x9a\x8b\xa4\xab\xd7\x00\x5c\x60\x24\ +\x3d\x37\x65\x57\x9a\x58\x78\x04\x5b\xd2\x08\x73\xd6\xa1\x63\x5e\ +\xb5\x2d\x17\x54\x94\xc1\x0f\xca\xa2\x9c\xc8\xd7\x49\xdd\x90\x96\ +\x0d\x53\x45\x3c\xb4\x4c\xaf\xd4\x42\xd2\x88\x9d\x0c\xa7\x60\xf2\ +\xff\x10\xf8\x23\x2e\x2c\x8b\x6a\x41\xa3\x58\x0c\xf9\x82\x97\xa1\ +\xbf\x12\x94\xba\x2f\x58\x65\x25\x58\x6e\x1e\x58\x1c\xea\xc9\x35\ +\x1d\x10\xd3\x17\xbf\xc1\xcd\xa7\x3e\x64\xc8\xbc\xa2\x9c\x15\xe8\ +\x26\x65\xa9\x4a\x51\xf2\xc7\xc3\x2d\xe6\xed\x9a\x32\x92\x28\x4f\ +\x71\xa5\x10\x71\xd1\x1f\x03\xb7\xad\xac\x16\x79\xa1\x69\x17\x81\ +\x6a\x56\x0f\xb1\xd2\x6b\xd3\x01\xc7\x7a\xd7\x06\x27\x06\xd6\xe6\ +\x7f\x24\x70\x81\xca\xb6\x92\x91\x52\xb9\x9b\x70\xe5\x69\x9d\x91\ +\x9a\x81\x58\x04\xfe\x16\x32\xce\x9a\xea\xbc\x30\x5d\x2a\x80\x74\ +\xef\x3e\x10\xf0\x9d\x42\x10\x3c\xbf\x4a\x2f\x3d\x12\x8a\x74\x5e\ +\x76\x5c\xb0\x8f\xb8\xd1\x3a\xb2\xd1\xfe\xd8\xf8\xb7\x09\x5a\x68\ +\x67\x36\xe1\xf3\xce\x48\x03\xe6\x75\x17\x28\x46\x24\x70\xf8\x5b\ +\x50\x9e\x60\xfc\x1b\xbe\xfc\xa1\xa7\xd0\x50\xc6\x6f\x55\x43\xde\ +\x61\x99\xd0\xe6\xdc\x4a\x53\x5d\x90\x48\x1b\x25\xac\x2f\xd3\xf1\ +\x9b\xd7\x4d\x32\x04\xb2\xf2\xfa\x12\x88\x93\x6c\xe0\x15\x96\x4d\ +\x18\xce\x9d\xa3\x05\xb8\x09\x5a\x97\x59\x91\xc6\xf9\xc6\x5b\xe7\ +\xbd\xc7\x3b\x94\xfd\x8e\x0d\x36\x5a\x76\xfa\xb1\x93\xd6\x7f\xeb\ +\x33\x76\xe6\x0d\x8f\xd9\x60\x6d\xdd\x86\xb3\xa9\x1d\xde\xb8\x6d\ +\x07\x37\x6f\x63\x5c\x1b\x9a\x7e\x56\x8c\x37\x48\xe8\x2e\xa0\xae\ +\xcc\xb2\x78\x74\x67\xa8\x1c\x8b\x58\x10\xd6\x2c\xea\x54\x9e\xe4\ +\x00\xbc\xbe\x78\xa3\x3d\xfd\x89\x34\x1f\x2f\x79\x03\x88\x4a\xea\ +\xd9\xca\x73\x25\x64\x3f\xe2\x01\xf0\x06\x8b\x03\xf1\x94\x21\x79\ +\x84\xf5\x9d\x1e\xca\x27\x88\x58\xd7\xe1\x24\x9e\x4a\x63\xbd\x91\ +\x05\xed\xe4\xcf\x4d\x25\x0c\x7b\xf5\xc1\x90\xf1\x26\x90\x9f\x0e\ +\xc6\x1c\xf7\x49\x49\x20\x3d\x7d\x53\x7e\x03\xfe\x2f\x5c\xbb\x6d\ +\x93\xf3\x4f\xd8\xb7\xfe\xe0\x0f\xda\x23\xef\xfe\x2a\xe4\x37\xb6\ +\x19\xc7\x2b\xd6\xd3\xef\x04\xbd\x02\x44\x1e\x02\x1d\x80\x67\x99\ +\x45\x4b\xd8\x40\xfc\x52\xa1\xe2\x46\xd3\xc8\x1a\x2c\xa6\x23\x96\ +\xc9\xee\x16\xcb\xf2\x58\x82\xcf\x27\x8b\xd7\x1a\xea\x53\x79\x27\ +\x2c\xb6\xc9\xdd\xa6\xfb\x22\x44\x29\x3a\xeb\xc4\x6b\x1b\xaf\x29\ +\x06\xf9\x77\xbe\xe9\x7d\x76\xf9\x85\x9b\xf6\x33\xbf\xf0\x8f\xec\ +\x91\x87\xce\xd9\xda\xe9\xae\xd9\x21\xae\x21\x8c\x01\x1a\x13\x30\ +\x46\xe8\x85\x34\xf9\x53\xb4\x7a\x92\x09\x3a\x6f\x1e\xd7\xf3\x7a\ +\xe0\x4d\x7c\x97\xbb\x86\x20\xad\x61\x46\x07\x6c\x70\x3d\xfb\x05\ +\x48\x5f\x9e\x47\x29\x1b\xae\x5b\x5d\xe7\x90\xc8\x6b\xad\x64\x7a\ +\x05\xae\x73\x05\xe2\xca\x0f\xe1\x63\x3f\x45\x21\xf0\x84\x40\xa6\ +\x03\x16\x55\x42\x29\x05\xb0\x60\x47\x80\xf6\xcf\x5c\x0a\x55\xba\ +\x10\x52\x8e\x3a\xb2\x4d\x74\x80\xe6\x26\x21\xca\x54\xf4\xa2\x30\ +\x36\x89\x68\xd9\x1a\x3e\x17\x36\x37\x66\x36\x9c\xf0\xff\xb6\xf8\ +\xf3\x6f\x6c\x14\xf8\x86\x7f\x7e\xae\xd1\x8c\x29\x54\x0f\x21\x9c\ +\x04\x4a\x3d\x04\xd2\x79\x34\x70\x2e\x64\xe9\x13\x31\x37\x51\x46\ +\xf8\x6c\xdf\xd9\x6d\xdb\xce\xed\xa9\x0d\x87\x66\x23\x3e\x25\x8d\ +\x32\x4c\xda\x23\xfd\x0f\xdc\xed\xbd\xb1\x5d\xb9\xd9\xb2\x4f\xbf\ +\x38\xb3\x4f\x7e\xa6\x65\x9f\xbd\xd6\xb1\xc9\xa4\xad\x0d\x43\x0c\ +\x9f\xfa\xca\x8a\xc6\xe1\xe2\x1b\x54\x66\x95\x81\x44\x41\x30\xf4\ +\xc8\x51\xc4\xec\x87\x4e\xb2\xde\x71\x46\x65\xcb\xb8\xdb\xee\xd8\ +\xfa\x46\xdb\x4e\x9c\xe4\x93\xfe\xd5\xf9\x5b\x8a\x05\x5d\xe9\x74\ +\x0b\xe7\x55\xce\xd9\xd6\x60\xa5\xf2\x76\x6f\x40\x45\x84\x14\x83\ +\xa8\x73\x0e\x91\x43\x75\x17\x51\x42\x7e\x86\xef\xef\x4f\xb5\xa1\ +\xc6\x87\xaf\x29\x55\x9a\xda\x01\x01\x5e\x1f\x1f\x82\x2b\xbd\x45\ +\xd3\x10\xc8\xcc\x32\x0d\x90\x64\x71\xc3\xfe\xe6\x94\x42\xc5\x4a\ +\x87\xb8\x64\xea\xdb\xba\x7c\x32\x6d\x8c\xbe\xb9\x3f\x6c\xd9\xcd\ +\x9d\xb6\xed\xee\x4c\x6d\xff\x70\x62\xbb\xe8\x04\x3b\x07\x53\xbb\ +\xb1\x37\xb2\x4b\xd7\x67\xf6\xfc\xc5\xb6\x7d\xf2\xc5\xa9\x7d\xfc\ +\x85\x81\x3d\x7f\xa9\x0b\x39\xcb\xca\xa7\x12\x87\x70\x09\xe7\x31\ +\xaf\x2a\x97\x58\x05\x89\x42\xce\x53\x90\x26\x8d\xe9\x32\x8a\x70\ +\x2e\x3f\x95\x23\x8b\x46\x00\xae\xdb\x45\x0b\xa1\x0e\x27\x37\x1e\ +\xb0\xaf\xf9\xaa\xb7\xd8\x97\xbe\xe5\x01\x3b\xb1\xd5\x87\xac\xaf\ +\xff\xf7\xbb\x7a\xf9\x96\x5d\xb8\x78\xd1\xf6\x0f\xf6\xd1\x3f\x47\ +\x38\x17\x75\x0e\xd9\x62\x8e\xba\xcf\x26\xc8\xe6\xa1\xff\x7d\x5c\ +\x68\xd9\x42\x35\x82\x30\x76\x52\x84\x74\x08\xd4\xf6\x9c\x99\xa2\ +\x0a\x5c\x07\xf0\xcb\x49\x90\x71\x0e\x95\x89\x38\xd6\xc9\x1c\x60\ +\x5f\x48\x5a\xee\x38\x16\x4a\xc2\x39\x0f\xce\x31\xe6\x49\xfc\xee\ +\x91\x74\xb1\x99\x86\x48\x3e\xd4\xd5\x09\xd2\x41\x12\xee\x47\x64\ +\xa1\x19\xeb\x48\x79\xc4\x3c\x99\xee\x86\x63\x17\x37\xf8\x7b\x9a\ +\xff\xdd\xd8\xbb\x6a\x97\x7e\x6d\x62\xef\x79\xf3\x1f\xb2\xdf\xfd\ +\x9d\xef\xb7\xad\xf5\x75\x6d\xea\xe9\xcb\x6a\x9a\x43\x45\xe6\xf4\ +\xa3\x3e\xe7\xac\xe2\x94\x09\x8c\x93\x5e\x04\xe4\xb2\x0d\xfa\xae\ +\x50\xdb\xdd\x6d\x9a\x15\x5e\x6f\x58\xf5\x8c\x15\x56\xb8\x77\x58\ +\x6d\xa8\xad\xb0\xc2\x0a\xaf\x4d\x7c\x11\xcd\x06\x5e\xd5\xa2\x1c\ +\xe7\x3c\x27\xfb\x04\x56\x0d\xad\x5e\xc7\x66\xc3\x91\xbd\xf9\x9b\ +\xbe\xce\xae\x8d\x86\xf6\xab\x7f\xef\x27\xed\xdc\x03\xeb\xd6\x45\ +\x7a\xde\x90\xe6\xcf\x15\x31\x0d\xdd\xd5\x73\x79\x46\x3e\xf7\xe7\ +\x8d\x17\x1a\xc7\x4d\x6f\x2e\x54\x18\x87\x8d\x16\x26\xb0\xd3\x0d\ +\x12\xc9\x18\x53\x18\x10\xe9\xd6\x8d\x05\x10\x79\x12\xc5\x1a\x84\ +\xe7\x0f\x0f\x99\x89\xc0\x85\x88\x33\xb9\xd9\x42\x4f\xe1\x0e\xe0\ +\xad\x2e\x3a\xcc\x34\xcc\x83\xb4\xf3\x5a\x00\x05\x2b\x48\x5c\x2f\ +\xc5\x69\x0d\x23\x7f\x07\x9c\xd2\x1a\x91\xd0\x0d\x05\x2e\x4e\xc5\ +\xc8\x9e\x0b\xd8\x66\x75\xe5\x28\xf7\x19\x18\xc3\x96\xd5\xe0\x4d\ +\x35\xa6\xd0\x82\x8a\x37\xdd\x78\xf3\x9d\xdf\xbc\xd4\xe6\x11\xcc\ +\xf4\x53\x95\xb4\x88\x7a\x21\xf4\xfa\xd0\x07\xa5\x4e\x2e\x45\x94\ +\xe9\x58\x1b\x94\xcf\x97\x99\xee\x5b\xe5\x46\xa1\xe6\x6c\xc5\x84\ +\x13\xc1\xf3\x6e\x6c\xbc\x54\x35\xe4\xa1\x31\x08\xa4\x20\xec\x3d\ +\xc3\x06\x99\x84\x31\x0a\xad\xff\xd9\xe3\x26\xe3\x7a\xcf\xfa\x5b\ +\xeb\xd6\x41\x5f\xe5\x86\x63\xb6\x45\x22\xcb\xbd\x0c\x45\x57\xa9\ +\x45\x66\x72\x19\xb8\x55\x44\x99\x68\xde\x84\x21\xf3\xa5\xb0\xd2\ +\x25\x9f\x70\x9e\xa5\xa3\x3d\xd2\x62\xa5\x3c\xe2\x86\xda\x1e\x37\ +\xd4\xd8\xb6\xde\xaf\xe8\x53\x06\x55\x5a\xc2\xd9\x5a\x98\xd6\x6e\ +\x3b\x5f\xf3\xa3\xa0\x4e\x65\x28\xf0\x74\xa2\x52\x1e\x46\xba\x36\ +\xa3\x3c\xea\x62\x14\x43\xe8\x37\xf7\xfc\x06\x31\xaf\x27\x6d\x02\ +\x91\x96\x05\x8d\x78\x45\xc9\x5a\x3e\x25\x55\xcc\x60\x79\xf9\x52\ +\xe7\xca\xe6\x56\x87\x42\x04\x51\x43\x0f\x58\x36\x9c\x66\xcf\x31\ +\xc6\x15\x1c\x5d\x0e\x4a\xed\x8e\xf5\xd0\x1f\x4e\x9d\xdf\xb6\x53\ +\x6f\x7c\xd4\x3a\x6f\x79\xc0\xb6\x4f\x9e\xd2\xff\xfc\x0c\xaf\xdf\ +\xb4\x9d\x0b\xd7\x6c\x74\x73\x4f\x3f\xb5\xc9\xba\xd1\xa1\xea\x19\ +\xe0\x39\xa6\x2f\x6a\x32\x5c\x04\xcd\x69\xb3\x1c\xb5\x33\x1c\xa5\ +\xe0\x11\x33\x33\xbc\xf3\x8b\x06\xdc\x48\xe3\xcf\x78\x95\xcd\x34\ +\x29\x15\x0a\x8a\x11\x64\x79\xd4\x07\x11\xb3\x85\x1c\x10\xe4\x4d\ +\x1f\x86\x4e\xe8\x26\xa3\xe4\xa8\xa3\xfe\x23\x6d\xe4\x9b\x69\xfc\ +\xa9\x47\xf9\xe0\xc6\x2d\x6f\x7e\x91\xc6\xd1\xe2\x9d\x22\xda\xa3\ +\x59\xf4\x64\x9a\xda\x26\x8f\x28\x07\x48\x16\x3b\xc7\x03\xb6\x21\ +\x6f\xf4\xf0\x5a\xdc\x81\xdf\x17\xb9\x59\x39\xdb\xb0\xdf\xfe\xd7\ +\x7f\xd0\x9e\x7e\xef\xd7\x6b\x03\x4f\x29\xe3\x5c\x89\x96\xa3\x80\ +\xbb\x76\x50\x5e\xf8\x20\x18\xa5\x7d\x49\xb7\xe0\x83\x58\xe4\x0b\ +\xa8\xd0\x95\xa6\x50\x9c\x4e\x1c\x8f\xc5\xcc\xef\x35\x5e\xc6\xe7\ +\xab\x91\xe5\x6b\x15\xd9\x16\x79\x5a\xea\xf8\x9e\xb5\xd3\xab\x7d\ +\xbe\x8f\x22\x73\x61\x9f\x63\xff\xe3\x25\xd5\xc6\xf5\xdf\xea\x4f\ +\xed\xcb\xbe\xe4\xeb\xed\xb9\x4f\x5d\xb4\x9f\xfd\xc5\x9f\xb2\x07\ +\x1f\x39\x69\xdb\x27\xfa\x36\xc6\x35\x9a\x5f\x52\xca\xd2\xa6\x0f\ +\xbf\xe2\x00\x04\x8c\xd5\x9f\x4b\x1b\xb9\x55\x33\x6a\x50\x04\x1a\ +\x7a\xc6\xba\x94\xd3\x83\x4c\x40\xb3\x4c\x50\x64\x3e\x84\xec\x20\ +\xd7\x93\x1d\x89\x8a\x9c\x87\x2b\xfc\x7a\xf2\x98\xa4\xdf\xf4\xa5\ +\xaf\x2a\x61\x16\xd4\x07\x2f\x91\x77\xc4\x9c\x9e\xe9\x82\x62\x9c\ +\x07\x23\xff\xa8\x6f\xe4\x35\xc4\xb3\xc6\x34\x98\xaa\x5c\x1b\x7d\ +\xb3\xad\xad\x89\xed\x63\x1c\xdc\x3f\x00\xe3\x3b\x8d\x38\xbc\x5c\ +\xd9\x1a\x4a\x23\x62\xa9\xd3\x3b\xa2\xa4\x15\x9c\xd6\x86\x08\x49\ +\x8c\xb9\x7b\xfb\x2d\xbb\x7a\xdd\xec\xca\xb5\xb6\x5d\xba\xde\xb1\ +\x8b\x57\xda\xf6\x59\x1c\xcf\xbd\x68\xda\x4c\x7b\xe9\x32\x37\x53\ +\x30\x5a\xc2\xbe\xdb\xf1\x79\x9c\xdf\x44\x8f\xb2\x41\xee\xc5\x22\ +\x21\x91\x47\x0c\x90\x0f\xce\x9e\x9b\x86\xd0\x23\x84\x24\xdc\x85\ +\x43\x0a\x8f\xdd\x86\x69\xf9\x8b\xc8\x2d\xdb\xdc\xee\xd8\xe6\x66\ +\x37\x92\xa5\xe1\x71\xa0\x9e\x8e\x59\xc6\xa4\x23\x22\xab\xc2\x92\ +\xc1\xe1\x05\xaf\x10\xbc\x4c\x9c\xae\x48\x60\x59\x6b\x12\x90\xc3\ +\x97\x9f\x2f\xf6\xef\x19\xce\x27\x0f\xff\xc9\xc7\x30\x99\x4b\x4b\ +\xe4\x5e\x8f\x47\x08\xc3\x94\x1d\xdf\xbf\x44\x04\xa0\x1d\xea\xbe\ +\x9b\x26\x05\x9e\xa5\xf2\x77\x30\x8e\x6b\x4b\x1c\x63\x84\xf4\x11\ +\xd7\x57\x8b\x5f\x3a\x19\x77\xec\x60\xd4\xd2\x93\x8a\x57\x6f\xb7\ +\xed\xe2\xb5\x96\x5d\xb8\xd6\xb7\x97\xae\xf4\xec\x05\xf6\x81\xeb\ +\x3d\xbb\x72\xab\x6b\xbb\x87\x1d\x1b\xe2\x83\xb8\xdb\xe1\x53\xab\ +\xf8\x70\x05\x38\x66\xd0\x2d\x5b\x58\x05\xa8\xda\x51\x14\x03\x5d\ +\xbc\x4e\x6b\x6c\x70\x0e\xa0\x3c\x74\x40\xca\xd3\x82\xb6\xf4\x17\ +\x59\x28\x13\x96\x5a\x79\x75\x46\xe0\xbb\x76\x76\xed\x61\xfb\xda\ +\xaf\x79\x9b\xbd\xed\xcd\x67\xad\xcf\xbf\x03\x98\x0d\x50\xc2\xb1\ +\xdd\xbe\xb1\x63\x2f\x7c\xe6\x25\xdb\xdd\xbd\x8e\x14\x07\x90\x7b\ +\x09\xe9\x27\xf3\xc9\x98\x94\x17\xbb\xd2\x32\x6b\xc6\x29\xc2\xa1\ +\x21\x82\x31\xe5\x42\x43\x1d\x45\xd4\x4b\x26\x9c\x61\x60\x46\x8a\ +\x89\xaa\xff\x5c\x3e\xaf\x21\x2a\x32\x3d\x6c\x2b\x73\x6f\xd9\xca\ +\x7b\xe8\x58\x77\xf6\x27\x3e\xbd\xaf\xcd\x34\x26\xd3\x97\x86\x20\ +\x63\xa2\x74\x53\xec\x17\x50\xcb\x23\x68\x68\xe4\x87\x58\xdd\x4b\ +\x4d\x05\x02\x0c\xff\xed\xd1\xa6\x5e\xde\xab\xbb\xb7\xec\xf2\xaf\ +\x5d\xb7\x77\xbe\xe1\xf7\xda\xef\xff\x3d\x7f\xcc\x4e\x9d\x38\x65\ +\x23\xe4\x8b\xa5\x1e\xf4\x4c\x44\x47\x59\x6a\x0a\x11\x85\xef\x5a\ +\xdc\x60\x8e\x39\x8a\xaa\x2f\xdd\x19\xb5\xdd\xb2\x34\x59\x88\xc4\ +\xdd\xfa\x5d\xe1\x7e\xc3\xea\xcc\xaf\xb0\xc2\xbd\xc3\x6a\x43\x6d\ +\x85\x15\x56\x78\xed\xe2\xb7\x78\x46\x90\xd9\xbf\x2a\xc5\x58\x74\ +\x5e\xcf\xcf\x93\xae\x27\xd9\x98\xf0\xb7\xb0\xb0\xb7\xe1\xc4\xde\ +\xf0\xad\xbf\xdd\xae\xdd\xbc\x62\x1f\xfd\xd1\x9f\xb2\xad\x13\x1b\ +\xfe\x13\x3b\xf1\x9f\x6a\xcb\x92\x8a\x67\x08\x21\x6f\x2a\x1c\xfd\ +\x66\x67\x65\x03\x8d\x16\x40\x3c\x72\x71\x58\x41\xe2\xb0\xf4\x20\ +\xa2\x12\xe4\x81\x50\xf9\x44\x4e\x9e\x90\x04\xb4\x2c\x07\x0f\xb0\ +\xbc\x69\x2d\x3a\xf4\x91\x96\x4b\x16\x51\xb4\x61\x5c\x08\x06\x91\ +\x36\xd9\x88\x93\x14\x91\x07\x11\xba\xca\x3d\x22\x0a\x21\x61\xde\ +\x2e\x3a\x8a\xd0\x79\x0d\x22\x8d\x13\x2a\xaf\x6e\xc6\xb3\xfc\xfc\ +\xa3\x6d\x2e\x1e\x11\x73\x5f\x93\x87\xaa\xaa\x15\x1b\xf4\xca\x46\ +\x92\x38\x12\x8d\x67\x4f\xe0\x5c\x4a\x05\x30\x73\xbc\x04\x68\x55\ +\x95\x8d\xad\xcb\x97\x53\x2a\x9f\x7c\x78\x49\x83\xf4\x58\x68\xa8\ +\x44\xda\x34\x58\xb0\x51\xe6\x90\xf9\xbb\x68\x95\x23\xcb\x80\x83\ +\x6d\xd0\xee\xb5\xad\xb3\xc9\x0d\xb5\x35\x6d\xfe\x96\x73\x2a\xe3\ +\xec\x6f\x51\x13\x44\x29\x21\xbc\x9b\xb1\xfc\xc5\xa2\x80\x2e\xd4\ +\x74\xa1\x77\xb8\x15\x79\xe6\x91\x69\x44\x95\x2c\x3d\xa1\xb7\x04\ +\x05\x45\xd5\xd8\x44\xc0\x98\x9b\x1d\xe3\xfd\x89\x36\xd4\x6c\x04\ +\x3f\xdc\xd8\x20\xe4\x3c\x8c\x2a\xcc\xb3\x35\x47\x5b\xf2\x59\x2a\ +\x07\x25\x79\x2c\xa3\xc4\x45\x7f\x21\xbc\x5e\x6c\xc3\x90\x60\x11\ +\xaf\x85\x3c\x79\x08\x79\xd3\x82\x71\x3e\x95\xa6\x1b\xc0\xe5\xaa\ +\xf1\x44\x4e\x45\xfb\x84\x78\x8e\xa4\xf3\x14\x02\x6a\x2b\x89\x98\ +\x22\xcb\x5f\x5a\xb0\x6a\x0a\xf8\x44\xcc\x9b\xa3\xfa\x36\x35\xaf\ +\x01\x5d\xc7\x33\xeb\xe4\xb5\xb0\xd6\xb2\x13\x67\x36\xed\xcc\x33\ +\x8f\xd9\xe0\xcd\x8f\xd8\xda\x03\x27\x6c\x36\x6c\xd9\x68\x7f\xd7\ +\x76\x9f\xbb\x68\xfb\x17\x6f\xda\x78\x38\x34\xfe\xe7\x97\x00\x7f\ +\x3a\xc3\x6a\x03\xb1\x4d\xb9\x23\x0a\x52\x48\xbd\xaa\x70\x2c\xe6\ +\x13\xcb\x1f\x02\xb2\x7e\xc3\x19\x14\xde\xfc\xf6\x7a\xd9\x48\x4b\ +\x39\x69\xda\x07\x4a\x59\xb8\x41\xe6\x6f\x97\x25\x78\xd3\x27\x09\ +\xde\xf4\x91\x01\x02\xd0\xfa\x36\x35\x9f\x84\xe0\xe6\x21\xfb\x16\ +\x7f\x0e\x0b\x72\x35\x33\xab\x2f\x9f\x70\x5e\x6d\xa6\xb9\x8f\xb0\ +\xa1\x1f\xd2\x51\xd9\xb6\x9c\x3b\xf8\x54\x1a\x7f\xa1\x94\x3f\x0d\ +\x7a\x03\xc4\xe5\xdd\x3d\xbb\xb2\x63\xf6\x8d\xff\xf9\x7f\x69\x6f\ +\xff\x8e\xdf\x6d\x33\x3e\x92\xc1\x9d\x57\xd6\x51\xe9\x71\xb8\x1b\ +\xf8\x8c\xb8\xe0\x88\xa0\x11\x65\x1a\xc6\xbc\x23\x9a\x7c\x8d\x65\ +\xb2\x25\xa0\x59\xb9\x71\x2a\xae\xa6\xbf\xc0\xf8\x2d\xc8\xf2\x8b\ +\x16\x79\x2a\xea\x73\x9e\xfc\xe7\xdd\x4e\x4b\xfa\xd6\xe7\xef\xf4\ +\xae\xc0\x4b\xab\xce\xc9\x9f\x36\xe3\x58\x39\xb5\xfe\x5a\xdb\xde\ +\xf6\xf4\xfb\xec\x13\x1f\xfb\x4d\xfb\x8d\x0f\xff\xb2\x3d\xf8\xf0\ +\x49\xeb\x6d\xe1\x82\x19\x4d\x31\x1e\xd0\x26\x4b\x9e\x4e\x78\xc1\ +\x72\x6c\xf0\xf1\x21\x9b\xc6\x3f\x8f\x09\x86\xa4\xa1\x89\x3e\x1e\ +\x9c\xab\x08\x32\x45\xe0\x76\x64\xd3\x83\x20\x3d\x64\x0b\xe3\xd0\ +\x11\xd4\xca\xa0\x99\xc2\x2f\x75\x7e\x2e\xb8\xc4\x11\x4e\x5f\x09\ +\xe4\x87\x07\xcb\x19\x74\x0d\xf1\x5e\xfa\x79\x2c\xf0\x60\xf9\x65\ +\x10\xfe\x04\xdf\x14\x27\x64\xad\xdb\xb5\xed\xcd\xa9\x0d\x31\x96\ +\xec\xed\x77\xa3\x59\xf9\x2c\x36\xf3\x51\x0d\x40\x79\x3d\xdc\x7b\ +\xe5\x2f\x3e\x23\xee\x08\xd8\xa8\x0d\x98\x98\xc0\x98\xa9\x2f\x20\ +\xa1\x1e\x6d\xfe\xac\x23\x44\x87\x18\x67\x77\x0e\x3a\x76\x73\xa7\ +\x65\x57\x6f\xb6\xed\xca\x8d\x96\xdd\xde\xed\xda\xee\x3e\x8b\x83\ +\xf9\x4c\xa7\x65\x5d\x16\x5a\xe9\xf9\x41\x87\xf4\x60\xd5\x2b\xe0\ +\x5b\xfe\x13\x41\x4b\xa6\x7c\x5d\xa0\x72\x23\x11\x63\x8a\xe4\x8e\ +\x22\x69\x1d\xb9\xd1\x27\x99\xe2\xb6\x0d\x30\x9f\x3a\x71\xaa\x6b\ +\x03\xf4\xcf\xf9\x73\x78\x27\xd0\x66\x89\x5d\x11\x45\xe6\x77\x84\ +\xeb\x65\x09\xd2\xb9\xa3\x69\x8a\x24\x08\x46\x7c\x2a\xea\xe0\x60\ +\x82\xf3\x89\x8f\x38\x7e\xc6\xa5\xa2\x32\xca\x71\x3f\x24\x40\x43\ +\x65\x83\xea\xe3\x8d\xa4\xd8\x4a\x1f\x28\x12\x10\xca\x23\xc0\x66\ +\x74\xb8\x82\x6d\x5e\xce\x11\x9d\x92\x46\x1f\xe3\xf5\x3f\xc2\xc9\ +\x38\x98\xb4\x6d\x7f\xc4\x9f\x00\xed\xd8\x3e\x0e\xf6\xc5\x29\x12\ +\xf0\x54\x77\x3a\xfc\xbf\x35\xbf\xd6\xd5\x97\x18\x23\x9d\x8f\x08\ +\x9e\x6f\xf1\x2d\x6d\xf8\x0f\x54\xaa\x05\xc8\x93\x3e\xf2\x5d\xc5\ +\xbe\x01\x9e\x41\xd8\xea\x73\x5a\x7d\xc6\x8f\xb6\xf5\xed\xec\x89\ +\x27\xed\xeb\xdf\xf3\x46\x7b\xeb\xb3\xa7\x21\xe9\xe2\x33\x9f\xf3\ +\xbe\x09\xca\xbd\x63\xcf\x7d\xfc\x25\xbb\x71\xeb\xb3\x90\x1f\xe2\ +\x20\x98\x9e\x87\x18\xc0\x89\xa8\x45\x25\x77\x64\x9d\x24\xc7\x91\ +\xea\x62\x76\x94\x10\xbc\x0d\xbc\x22\x33\xce\x43\xf5\x82\x3f\x5c\ +\x37\xfa\x49\xd8\xb6\xff\x7e\x82\x84\x71\x3d\x88\x06\xd8\x3b\xbc\ +\xac\x09\xd4\x94\x73\x1c\x48\xd9\xea\x54\xfa\xcf\x3c\x72\xfe\x84\ +\x44\xdc\x4c\xe3\x35\xcc\xf9\x11\x75\x34\x08\x07\x73\x7e\x1a\xb1\ +\xc7\xea\x4c\xde\xde\x29\xf7\xbe\xc0\x72\xd1\x2f\x73\xe6\x79\x67\ +\xae\x9c\x28\x4d\xed\xca\xed\xab\xf6\xc2\xaf\xdd\xb0\xb7\x9d\xfd\ +\x9d\xf6\x5d\xff\xd6\x9f\xb4\x33\xa7\xce\xd9\x18\x0e\x7c\x33\x8d\ +\x0e\x14\x34\xb1\x0b\x1d\x0b\xaa\x3b\x23\xd3\x67\x50\x4a\x78\x07\ +\x2c\xda\x25\x1f\xbe\x8e\xe0\x38\xf9\x0a\xf7\x3b\x56\x67\x7e\x85\ +\x15\xee\x1d\x56\x1b\x6a\x2b\xac\xb0\xc2\x17\x3f\xee\x34\x1f\xfc\ +\x2d\x83\x2f\x82\x9b\x62\xbd\x1a\x05\xd4\x6c\x1e\x40\x50\xdc\x47\ +\x63\x68\x75\x48\x61\xea\xc8\x63\xc2\x8f\x77\x7b\x62\xf6\xa6\x6f\ +\xfc\x1a\x7b\xe1\xda\x0d\xfb\xe8\x3f\xfa\x79\x4c\xf8\xd7\xad\xc7\ +\x1b\xd9\x93\x89\xbe\x15\x78\x74\x01\xee\xf5\xa8\x25\x29\xe3\x62\ +\x20\x6b\xc9\x78\xfe\x54\x34\xa9\xb2\x38\xe2\x62\x01\xe1\x74\xc4\ +\x44\x21\x08\x2a\xe0\x51\x11\x02\xa4\xf7\x1b\xc2\x8d\x91\x6e\x5e\ +\xf3\x25\x3b\x3f\x94\x91\x16\xb0\x80\x57\xa4\x24\xe1\xe2\x6c\x6e\ +\x5d\x86\x40\x96\xf2\x1b\x28\x24\x0b\x5c\xb1\x84\xdf\x13\x91\x50\ +\x72\xe5\x27\x42\xe4\x7c\xdd\x9d\xae\x6f\xfc\xaa\x0d\x44\xb6\x21\ +\x0f\xff\x2c\x23\x0e\xfd\xac\x09\x56\x5c\xad\x2e\x0f\x94\x14\xb1\ +\x6e\xc8\x65\x7a\x2c\x80\x55\x1d\x24\xe3\xde\x47\x90\x01\xa4\x09\ +\x2a\x41\x7e\x51\x26\x44\x22\xad\x09\x49\xc8\xbf\xf7\x55\x01\x7c\ +\x43\xe3\xbd\xb0\x90\x5d\x86\x52\xc5\x39\x44\x46\xd4\x45\x1e\x64\ +\xe6\x4c\x99\x17\x75\xdc\x40\xe9\x75\xac\xbb\x39\xb0\xde\x66\x1f\ +\xed\xd0\x6c\xa8\xc9\x4b\x26\xca\x32\xab\xbc\x99\x83\x87\x92\x3b\ +\x19\x70\x9b\x1a\xcb\xf8\xac\x5e\x22\x37\x2e\xbd\xa4\x2c\x03\xa3\ +\x94\x55\x00\xe3\x3a\xbd\x6d\x32\xe6\x86\xda\xd8\xc6\x7b\x23\xb3\ +\x21\xec\xb9\x02\x27\x94\x48\x41\xc1\x3c\x47\x50\x52\x17\x9e\xbc\ +\x5b\x1d\xb5\x5d\xd0\x36\x8c\x43\x7c\xd1\x2a\x40\xcf\x51\x5b\xb2\ +\xff\x70\x53\xcd\xaf\x13\xf2\x1e\xfb\x46\x1b\xad\xa0\x63\x5f\xe4\ +\xf5\x43\xb9\x27\xa6\x09\x02\xbd\x75\x24\x92\x96\x9b\xa0\xbd\xad\ +\xd0\xf6\x92\xf1\x55\xd7\x2b\x6c\xe5\x10\x60\x5e\xfc\x06\x32\x0b\ +\x86\x71\xa9\xd5\x43\xdc\xed\x5a\x67\xd0\xb6\xad\x53\x6b\x76\xf2\ +\x99\x07\xac\xf7\xd6\xc7\x6c\xfd\xa1\x53\x36\x69\xf7\x6d\xff\x60\ +\xcf\xc6\xcf\x5f\xb6\xdd\x97\xae\xd9\xe1\xee\x1e\xb2\xe1\xce\x51\ +\xf8\x0a\x24\x97\xb9\x2a\x3f\x32\xa1\x60\x34\x97\x62\x8e\x49\xa0\ +\xd4\x48\xa3\xfa\x67\x02\xf1\x0e\x5e\x97\xa9\xe3\x46\xa4\x36\xd2\ +\xd4\x4e\x6c\x5b\x5a\x80\x4f\x63\xa0\xb4\x40\x10\x7e\x2b\x08\x06\ +\x11\xf9\x8e\x19\x08\xde\xac\x63\xbf\xd1\xdd\x9b\x99\x6e\x00\xe9\ +\x4b\xcf\x7c\x32\x0d\xfd\x6b\x36\x9a\xfa\xc3\x18\x4c\x27\x1b\xfa\ +\x20\x43\x19\xda\x9c\x6e\xf8\xcd\x7e\xc6\x38\xbc\x08\xb4\x73\x99\ +\xb3\xf0\x21\x45\x4b\x9b\x69\x54\xd1\xf6\xe6\x78\x62\x97\x6e\xec\ +\xda\xad\x51\xc7\xbe\xf1\x07\xfe\x63\x7b\xf7\x1f\xfe\xdf\xfa\xff\ +\xb4\xd1\x8b\xea\xc6\x44\x3c\x90\x80\x34\xa2\x79\x1c\x11\x34\x22\ +\xe5\x47\x30\xb3\xda\x0f\x23\x04\xa9\xcf\xf8\x4e\x60\x32\x25\x99\ +\x6f\xe3\x70\x16\xf1\x17\x10\x5f\xe0\xec\x7e\xcb\x91\xf5\x3d\xae\ +\xde\x2f\xa7\xff\x9c\xf1\xaa\x39\x3e\x8a\x3a\x8b\xa0\x19\x79\x77\ +\x8e\x7e\x27\x79\x07\x97\xe1\xd8\x36\xb7\xd7\xec\xed\x4f\x7f\xb5\ +\x7d\xf4\xa3\x1f\xb6\xdf\xf8\xc4\x6f\xd8\x03\x0f\x6d\xda\xe6\x89\ +\xbe\x8d\x46\xbc\x89\x8a\x31\x21\xba\xa5\xa2\xea\xda\x29\x9f\x62\ +\x88\xe4\x0e\xa1\xc7\x91\x80\x61\x74\xf2\xd4\x28\x74\x52\x70\xcb\ +\xd0\x16\xb9\x13\x3e\xce\x84\xff\xf0\xd3\x78\x3e\x8a\x23\xd7\x13\ +\xdf\xb8\xf6\xcb\x97\x07\x00\x7f\xe2\xb5\x42\xa6\x99\x4b\xbb\x88\ +\x85\x34\x77\x04\x1d\xf1\x53\xa3\x4a\x13\xbe\xbd\x08\xce\x70\x53\ +\x6d\x1d\x9f\x15\x5b\x1b\x18\xcf\x30\x6f\x3a\x1c\xcf\x6c\x7c\xc8\ +\xc9\x6d\x58\x44\x1a\x12\x59\xaf\x6c\x43\x47\x4d\x2f\x40\x59\x2f\ +\xd7\x53\xaa\x27\x9f\xf8\xee\xe0\x0c\x76\xf8\x13\x9f\xbc\x3d\xcf\ +\x01\x96\xbf\xf4\xc0\xcf\x07\xfe\x3c\x24\x74\xe1\x27\x5f\x73\x48\ +\x36\x62\x45\xf4\x29\x02\x4e\x02\x69\xe6\x0a\x7e\xae\xd2\x69\x7a\ +\xf3\x30\x87\x50\x99\x40\xdf\x69\x75\x6c\x7d\xd0\xb5\x93\x67\x3a\ +\x98\xd7\xe7\x67\x52\xc2\xd3\x2f\x05\x1c\xd5\xc3\x31\x4f\xb5\x3e\ +\xbf\xe1\x60\x3e\xd5\x7c\xfa\x5a\x57\x3e\xdb\x50\x0e\x16\x75\x3e\ +\x6f\xc2\x05\x8d\x98\xb6\xce\x33\x3f\x3e\x9d\xb6\xbf\xcf\x9f\x7c\ +\xa4\x9f\x80\x8c\x59\x06\x4f\xd5\xb4\x25\xe3\xa4\x01\x2f\x30\x80\ +\x00\x19\x2f\x96\x3a\x51\xa4\x0c\xaa\x6c\x5c\xe0\xe9\xe6\xce\x97\ +\x7c\x35\xa6\xfa\xcc\x4c\x35\x63\x9e\x6b\x1e\x12\x30\xf6\x1c\xf4\ +\x85\x40\x08\xfd\x8b\x28\x90\x33\x8a\xa3\x6e\x97\x8a\x3c\x0a\x28\ +\x33\x5f\xda\xa9\x64\xcc\x5f\x94\x43\x72\x04\xe2\x11\xb0\x37\xea\ +\x9a\x25\xdb\xe9\xda\x23\x27\xde\x60\xef\x7d\xef\x33\xf6\x86\x67\ +\xb6\x21\xeb\xd9\x44\x9b\xbb\x23\x3b\x1c\xee\xda\xc5\x97\x2e\xdb\ +\xe5\x4b\x2f\xd8\x78\xb6\xab\x32\x71\x33\xb6\x46\xe6\x1d\xde\x4b\ +\xe4\xf0\x32\xd4\xf5\x22\xe6\x4c\x08\x08\xbc\x45\x9c\x71\x9f\xe1\ +\x19\x42\xe6\x49\x9d\xe6\x52\x9c\x07\x72\x7e\x85\x3e\x5c\x4a\x12\ +\xe9\x15\x36\x8e\x80\x42\x14\x77\x8c\x78\x7e\xf8\x3f\xb0\x7c\xea\ +\xde\xa7\x52\x68\x2d\x10\x9a\x4f\x51\x97\x86\x19\xd5\x74\x80\xa6\ +\xe9\x5e\x3e\x44\xa1\xbe\x22\x50\x07\x36\xa1\xc8\xb6\xfe\x33\xad\ +\x35\xe3\x97\x21\xdb\x76\xe5\xe6\x6d\x7b\xfe\x57\xaf\xda\x97\x9c\ +\xfa\x06\x7b\xff\x1f\xfc\x3e\x7b\xe0\xdc\x23\x36\xc6\x3c\xcb\xe7\ +\xda\x7c\x33\x55\x1e\x35\x5c\xbf\x14\x59\xb0\x23\xfa\xf4\xc3\x23\ +\x8d\x3e\x57\xa4\xf3\x3a\x4e\x9a\xa0\xff\x9a\x5f\xe1\x7e\xc7\xea\ +\x6c\xaf\xb0\xc2\xbd\xc3\x6a\x43\x6d\x85\x15\x56\x78\x6d\xe0\x8b\ +\xf2\xd3\xdf\xa7\xcf\x44\x7d\x83\xe0\xf3\x2a\xaa\x66\xfa\x01\x92\ +\xf5\x3c\x3a\x79\xde\xa0\x2e\x72\xe6\x86\x23\x33\xc5\x42\xa5\x35\ +\x1b\x5b\xb7\xb3\x66\x4f\x7d\xfd\xfb\xec\xca\x85\x17\xed\xa3\x3f\ +\xf9\xf3\x76\xe2\xd4\xa6\x9e\x90\xea\x21\xa1\xdf\x18\x86\x83\x7a\ +\x75\x0d\xb8\x27\xac\x24\x78\x03\x99\xaa\x58\x24\x30\x2f\xaf\xa9\ +\x08\x1d\xe4\xfd\xb7\xf4\x45\x79\x71\x4a\x99\x9c\xcc\x05\x93\xb2\ +\x81\xa0\x52\x17\xa4\x07\x7f\x3b\xe7\xf9\x30\x76\x8e\xe5\xc8\x43\ +\x82\xf4\x0e\xa7\xfc\x99\x95\x92\x97\xd4\xb4\x23\xe3\x74\x83\x46\ +\x4e\x31\xe9\x92\x86\x72\xc6\xe4\x9d\x54\xa0\xf2\x42\x99\x7c\x41\ +\xca\x88\x5a\x2e\xc6\x05\xda\xa8\x0a\xc7\x2a\x37\xda\x4a\x37\xe6\ +\x79\x03\xa4\xc7\x83\x34\x8e\x1e\x54\x94\xeb\x25\x6b\xe4\x1b\x3e\ +\xe4\xc2\xeb\xe7\xf5\x97\xb8\xb4\x2b\x21\x1b\xc4\x2a\x6b\xa0\xa1\ +\x5d\xe9\xc9\x0a\x01\x30\x07\x9c\x33\x89\x42\x2b\x9a\x7d\xc3\xcd\ +\x5c\xea\xf0\x7c\xab\x1c\x82\x3c\x6a\x9b\x75\x70\x4a\x7a\x06\x5c\ +\x40\x0f\x3a\xd6\xdd\x1a\x58\x77\x7d\xa0\x36\x60\x9d\xc3\x71\x85\ +\x5c\xd0\x06\xaa\x6b\x81\x96\xfc\x39\x97\x92\x37\x25\x48\x4f\x13\ +\xa6\x51\x2b\x1d\xf1\xd7\x40\x9a\x08\xfc\xa6\x15\xc0\x06\x00\xd4\ +\xb6\xa2\xe4\x48\x50\xf9\x9d\x54\xcc\xcd\x09\x3e\x9d\xe6\xff\xa1\ +\x36\xd5\xe6\x46\xa2\xb1\x74\xd4\xe9\x1c\xf3\x7a\xc7\x51\xab\x45\ +\xb8\x86\x21\x0e\x7f\x97\x83\x75\xf5\x72\x47\xac\x6b\xba\x91\xf1\ +\x0c\x93\x66\x6f\x21\xcf\x50\x29\xd9\xd7\x24\x97\x0a\xa0\x36\xe3\ +\xf9\x97\x4b\x33\x60\xcc\x76\xe3\x01\x6d\xca\x12\xe0\x75\x4e\xa9\ +\xe3\x4d\x13\xde\xa9\x8d\x4d\x64\xc6\xdc\x44\xb3\x5e\xdf\x7a\x5b\ +\x3d\xdb\x3c\xbd\x61\xeb\x4f\x3d\x6c\x5b\x5f\xf2\xa8\xf5\x1f\x3a\ +\x05\xdb\xbe\x0d\xf9\x64\xda\x67\x2f\xdb\xc1\xa7\x2f\xdb\x70\x67\ +\xdf\x26\xdc\x4c\x8b\xd3\x44\xe8\x54\x55\x3c\xa1\x32\xa4\x8c\x74\ +\x01\x18\x7f\xcb\x88\xb1\x1f\x08\x63\xbc\x70\x2e\x12\x47\x3f\xa0\ +\x1a\x5d\x15\x31\xdb\x92\xc5\xae\x36\xd3\xd8\x82\x61\x16\x9e\x64\ +\x5f\x8a\x14\x77\x68\x34\x12\x8a\x74\x9e\xbb\x59\xce\x86\x5c\xf7\ +\x65\xf9\xad\x6a\x44\x13\xc4\x65\x33\x0d\x67\x8c\xdf\xda\x67\x59\ +\xf4\x35\x6b\xa4\x61\x7f\x27\x28\x47\x73\x88\x67\x7a\x89\x11\xf0\ +\xad\xc3\xaf\x1b\xcf\x9d\x4a\xfa\x60\x1e\x6e\x7c\x6b\x7f\x64\x17\ +\x76\xf7\xed\xe6\xb0\x63\x5f\xf7\x03\x7f\xd9\xde\xfd\x47\xff\x08\ +\x7c\x8e\x60\x06\x3b\xbe\x59\x41\x12\x02\x63\xfa\x78\x05\x60\xe6\ +\x25\x49\xa6\x77\xdf\x42\x36\x5c\xf2\x47\xd0\x28\x48\x79\xdf\x85\ +\x0f\x9e\xbb\x23\x69\x8e\x75\xf2\xea\xe1\xb7\x20\xcb\x57\x15\x71\ +\x7a\x8e\x45\xea\x16\x6d\x96\xc9\xcb\x79\xff\x7c\x50\x17\x88\xf1\ +\x62\xc6\xf7\x18\x0b\xf5\xd0\xa5\x1a\xa8\x73\xe6\x97\x62\xda\xd6\ +\x45\x3c\xb2\xed\x93\x27\xed\xd9\x87\xdf\x65\xbf\xfc\x91\x0f\xd9\ +\x27\x3e\xf6\xab\x76\xfe\xc1\xb3\xd6\x3f\x81\xb9\x16\x7f\x6f\x2c\ +\xfb\x69\x8c\x2d\x3e\xbe\xe6\x75\x0f\x3a\x3a\x31\xc3\x18\x39\xa2\ +\xca\x21\xa1\x89\x44\x45\xab\x21\xc9\x7d\xe2\x8d\x83\x3e\x75\x95\ +\xca\x80\x01\x0e\xe6\x97\xe3\x0a\x25\x71\xcd\x88\xc6\x11\xe2\xe2\ +\x93\x98\xa7\xfd\xa5\xb7\x0e\xcf\xdf\xc7\x90\x0a\x99\x28\xe3\x57\ +\x0c\x26\xcc\xc3\xe1\x5c\x13\x12\x69\xe1\x65\xf1\x27\x6b\x07\x98\ +\x23\x6d\x6d\xb4\x6c\x7d\x6d\xc6\x61\xd0\x86\x43\xb7\x62\x19\xd5\ +\xda\x4a\x9c\x3e\xb2\xfc\x2e\xa6\xc5\x22\x1a\xc9\x51\x9d\x8b\x42\ +\xce\x48\xee\x9d\xe7\x47\x9b\xbe\x10\xc5\xb1\x96\x9f\x09\xcc\x04\ +\x50\x9b\x41\x57\x3e\x53\x01\x25\x95\xac\xe1\x85\xe4\x53\x41\xff\ +\x24\x83\x67\xa8\x74\x7e\xa6\x9b\x74\xa4\xc8\x30\xc2\xc1\x0d\xb5\ +\xcd\xcd\xb6\x6d\xa3\xff\xf1\x69\xba\xc6\x36\x0a\x25\x34\x12\x51\ +\x20\x5c\xeb\x72\x86\x3c\x4a\x1b\xcd\x47\x40\xf4\x65\x67\xe6\xe4\ +\xd4\xa8\x0e\x47\xd2\x24\xe6\xad\x95\x33\xec\xd9\x55\xf7\xf5\x84\ +\x9a\x6f\x86\x44\x81\x96\x39\x00\x22\x9d\xe2\xba\x2d\x88\xe4\x5c\ +\x97\x6e\x88\x4c\x91\x68\x68\xf4\x18\x31\x9e\xa6\x86\xcf\x8d\x2a\ +\x29\x88\xb9\x31\x81\xe7\x3c\xe8\x84\xf4\xb4\x43\x94\xa6\x69\x73\ +\xc4\x36\xe2\x79\xd4\xa5\x76\xd4\x76\x73\x69\xc0\x88\x47\xc0\x8d\ +\xdd\x0e\xdb\x9e\x5d\x64\xba\x69\x4f\x3d\xf9\xac\x7d\xd5\x57\x3f\ +\x86\x78\x03\xca\x75\x4d\x0f\x5a\xad\x7d\xdb\xdf\x1d\xda\x85\x17\ +\xaf\xd8\xa5\x4b\x2f\xd9\x78\x72\x9b\xa9\xa1\x47\x3b\x16\xc7\x47\ +\xae\x72\x00\x12\xea\x43\x91\xb6\x64\x45\x06\x5f\x5c\x00\xde\x5f\ +\x1d\x45\xce\x04\x9c\x33\x49\xe7\xad\xeb\x9b\x69\xe0\x34\xff\xcc\ +\x16\xcf\xac\x22\xc3\x88\x1a\x47\x4e\x68\xfc\x73\x4a\xf4\x44\x9b\ +\x69\xa0\xa3\x0f\x35\x4f\xa6\x2d\xf4\x85\x9a\x99\x03\x15\xf0\xc8\ +\xb4\xc1\x31\xe4\x39\xe5\x99\xf6\x9f\xee\x27\xf8\x8b\x2e\x98\xef\ +\x63\xd5\xdc\xc5\x5c\xf0\xe6\xc1\x4d\xfb\xf4\x6f\x5c\xb6\x37\x6c\ +\x7d\x83\xbd\xff\xbb\xbe\xcf\x1e\x7b\xf8\x69\x1b\x4f\xf9\xf3\xbf\ +\xde\xae\x7e\xdd\x12\x9e\x5a\x8e\x83\x6c\x68\x96\x31\xfc\x7b\xc6\ +\x40\x18\xa5\x6d\x41\x2d\x38\xa2\x7c\x19\xd0\x7e\x31\xcd\xcb\xf9\ +\x7b\xa5\x79\xac\xf0\x5a\xc6\xea\x6c\xaf\xb0\xc2\xbd\xc3\x6a\x43\ +\x6d\x85\x15\x56\xf8\xe2\xc7\x17\xe5\x27\x3f\x0b\x95\xb3\xe4\x7a\ +\xe6\x7c\xaf\x8b\x0b\xdf\x9c\xad\x73\x75\x50\xb2\x21\x9f\x74\x05\ +\xad\xf2\x68\xdf\x45\x38\xb5\xf5\xfe\x86\xbd\xe1\x3d\xef\xb6\x8b\ +\xb7\xaf\xdb\x47\x7e\xfc\xe7\xed\xf4\xf9\x75\xeb\x61\x41\x33\x9b\ +\x8d\xf5\xcd\xea\xe2\x20\x56\x4e\xb9\x6c\x65\x58\x2f\x10\x52\x9e\ +\x3f\x5b\xc4\x83\x3f\xe1\x41\xf0\x26\x8e\x96\x07\xc5\xc7\xf2\x62\ +\xd6\xc5\xcd\x98\x48\x3b\x42\x37\x86\x41\xd3\x9f\xbb\x6b\x2c\x49\ +\x69\x11\xcf\x05\x19\x39\xbd\x19\xc0\x9a\x3f\x6f\x82\xe2\x28\x0f\ +\x1a\x4a\x23\x42\x02\x52\x2e\x27\x11\x71\x63\x21\x88\x96\x21\x89\ +\x88\x83\x96\x25\x9d\x3b\x23\x5a\x2a\xd1\xa1\x0b\xbd\xa2\xc8\x93\ +\x06\xbe\xe0\x54\xa0\xb2\x4b\x87\xb2\xea\x67\xef\x7a\x68\xe1\x5e\ +\xc7\x3a\x8a\x29\x87\xbe\xa3\x64\x00\x3d\x31\x25\x5e\xac\x63\xb8\ +\xc8\x1b\x38\x64\x22\x72\x5d\x1c\x4a\x15\xc2\x22\x97\x15\x65\x7a\ +\xcf\x21\x7d\x3b\x83\xa3\xae\x07\x02\xf7\x15\x42\xc1\x8d\x1b\x3f\ +\xa0\xf4\x2e\xb9\x34\xa0\x9c\x95\x45\xbd\x3a\x6b\xb1\xa1\x36\xe8\ +\x79\xdd\xb3\x70\x35\x32\x9b\x58\x09\x37\xda\x58\x3c\xcf\x01\x5a\ +\x9a\xa9\x8c\x24\xf8\xb3\x2c\x0c\x9d\x76\xb8\x9f\x84\x67\x97\xe5\ +\x8c\x90\x69\x74\xa3\xe1\xa8\x6d\xde\x34\xa2\xa5\xfe\xf8\xfc\x60\ +\xec\xff\xa1\x36\xe4\x93\x44\xb0\x8f\x24\xd4\x67\x48\x34\x54\xe2\ +\x38\x09\x42\xbe\xe3\x58\x86\x39\x71\xc5\xf0\xea\x23\xdb\xa4\x4b\ +\x42\xd2\x28\x3b\xaf\x60\x3f\x33\xb2\x93\x2c\x2d\xc8\xfa\xb5\x4b\ +\x9a\x12\x8f\x81\x24\xd8\x26\xc5\xd8\x2b\xeb\x7e\xeb\x3e\x83\x74\ +\xbc\x26\x19\x53\xa5\x82\x81\xe0\x13\x98\xda\x34\x06\xdb\x47\x29\ +\xfa\x3d\x5b\xdb\x1c\xd8\xd6\xd9\x2d\xdb\x7c\xea\x9c\x75\xbf\xe4\ +\xac\xad\x3d\x70\xd6\x3a\xb8\x76\x0f\x0e\xf7\xed\xe0\xc2\x15\x3b\ +\xfc\xf4\x65\x3b\xb8\xb5\x67\xad\xd1\xd8\xbf\x6d\x1c\x50\x56\x99\ +\x5f\x60\x4e\xd6\x14\xa6\x8a\x71\xe8\x1d\x34\x8f\x72\xbe\x9a\x5a\ +\x3b\x64\x08\x37\xde\x5a\xbc\x41\xe2\x1b\x69\x10\xf2\x5a\x4d\x7d\ +\x58\x87\x44\xd7\xb6\x23\x1c\x97\x32\x23\x26\xa9\x36\xc3\xa1\x9b\ +\x3d\x38\xb4\x8b\x86\x36\x07\xa3\xcd\x34\x6e\xa4\xf1\x86\xbc\x9e\ +\x4c\xa3\x41\x73\xe8\x46\x3c\x48\x7d\x7d\x7a\x02\xba\x7e\x72\x8d\ +\x24\x7d\xc9\x16\xba\xd6\xb4\xfc\x54\x18\x0b\x3c\x9d\x4c\x6c\x42\ +\x1f\xa0\x77\xd0\x96\x9f\xdd\xdb\xb7\xdb\xb7\x86\xf6\x55\xff\xc1\ +\x5f\xb4\xaf\xfe\xe3\x7f\x5c\x3f\x0b\xcc\x27\x40\xf4\x04\x86\x12\ +\xd1\x07\xd3\x22\x70\xf7\x0e\xc9\x02\x55\xd9\xca\x41\x63\xd6\xb1\ +\x69\x08\x47\xfa\x62\x9c\x74\x15\x1d\x85\x1b\xa6\x9a\xa5\xa2\x77\ +\x4f\x8a\xb0\xa4\x6b\x2c\x2a\xe1\xab\x8f\x2f\x60\x56\x5f\x30\xdc\ +\x4d\x9d\xd8\xcc\x35\x5e\x95\x76\x58\xcc\x84\x78\x15\x32\xa2\xcb\ +\x97\x71\x9b\xea\xbc\x26\x78\xf9\xab\x6b\xf3\xa7\xde\x70\x01\x9e\ +\x3e\x7b\xd6\x9e\x7d\xf0\x4b\xed\x57\x3e\xf4\x21\xfb\xf0\xc7\x3f\ +\x6a\xe7\xf9\xa4\xda\x96\xff\xa7\x5a\x8e\x8b\xac\x8e\xd2\xc7\x75\ +\xc1\xda\x69\x6c\x04\xa5\x90\xd7\x1d\x33\x11\xc2\x8e\x72\x92\x29\ +\x03\x38\x8c\xea\x0a\x06\xcb\xd8\xaf\xb7\x94\x71\xdc\x26\xe8\xcb\ +\xf3\x10\x8f\xc0\x53\xbb\x9d\x34\x65\x6c\x74\x90\x9b\x97\x04\x8f\ +\xc0\xeb\xc0\x37\x73\x77\xd9\x11\xcc\xc9\x98\xeb\x32\xa3\xbb\x41\ +\x93\x8e\xd4\x9c\x17\x31\x28\x3f\x62\x8c\x8c\xda\x40\xd8\x5a\x6b\ +\xdb\x89\xad\x89\x9e\x06\xe1\xcf\xef\xf1\x27\x03\xbd\x5d\x69\xa7\ +\xda\x83\x8a\xf2\x14\x87\x0a\x8e\x42\x26\x8b\xba\x8a\x4f\xbf\x92\ +\xf1\x88\x27\x82\x98\x2e\x74\xb2\xa1\x80\x88\x58\x21\x83\x79\x71\ +\xb2\x8d\x5c\x41\xc3\x24\xe9\x48\xff\x5e\x97\x54\xc9\x06\x07\xfb\ +\x03\x9f\x4a\xdb\x3e\xd1\xb5\x8d\x4d\x7c\x5e\x2d\x39\x55\x79\x56\ +\xbc\xdf\xcc\xeb\xc4\x65\x33\x45\xbb\x39\x53\xa8\x02\xd2\xf2\xa1\ +\x04\xa9\x8b\xf2\x39\xe9\xfe\x11\xcb\x65\xf8\x6d\xd0\x94\x5f\x0a\ +\xf4\x61\xfe\x87\xda\xde\x1e\xce\xab\x3e\x07\x43\x3b\x97\xa6\x41\ +\x71\x57\xda\x8a\x31\x0f\x2f\x8f\x97\x8d\x48\x99\xf3\x8d\x45\x13\ +\xcf\xa3\xb1\xab\x63\xf7\x87\x43\x89\xc2\x26\x69\xc4\x75\x6d\xe6\ +\x11\x57\x0c\xd4\x6a\x0b\xc6\xc9\x33\x3e\x02\x2f\x15\x43\xea\xf3\ +\x70\x69\x4d\xbb\x85\x57\x1f\x9f\xf7\xc8\x84\xdf\x4f\x1a\x61\xce\ +\xd4\xeb\x61\x6d\xf7\xd8\x33\xf6\xd5\x5f\xfb\xb8\x3d\xfc\xd0\x00\ +\xea\x35\xe8\x61\xd3\x1a\xda\x8d\x6b\xbb\xf6\xc2\x73\x17\xec\xea\ +\x95\xcf\xda\x68\x72\xdd\xfd\xc0\x49\xf6\xd7\x1c\x3d\xe6\x71\x54\ +\xa6\x72\x78\x92\x1c\x11\xa2\x2c\x61\x0d\x5a\xac\xbb\x2f\x1e\x48\ +\xab\xad\x40\x68\x2e\xc5\x2f\x56\xf1\x4b\x75\xa0\x73\x33\xcd\x6d\ +\x11\x66\xa2\x1a\x72\x0a\x50\x27\xda\x4b\xcc\x21\x90\xbf\x14\xc1\ +\xcd\x58\xff\xce\x11\xe6\x4f\x14\x8a\xf6\x83\x60\x5c\xba\x76\x20\ +\x86\x4f\xd4\x27\x7b\x0d\xc7\x74\xda\xca\x5a\x32\xae\x6f\x67\xf9\ +\x24\x22\x2a\x3e\xc6\xcb\xa6\x1d\x5c\x63\x6d\xbb\xbc\x73\xc3\x9e\ +\xff\xf5\x17\xed\xa9\xad\xf7\xd9\xfb\xff\xe0\x9f\xb5\xa7\x1e\x7d\ +\x13\xe6\x58\x18\x9d\xbc\xb2\xe1\x41\x29\x3d\x86\x5b\x79\xae\x44\ +\x12\x54\xf9\x25\xd4\x5f\x98\x37\xe8\x5a\xee\xf6\x80\x84\x0c\xe6\ +\xb4\xc7\x20\x6d\x18\xa7\x83\x44\xad\x5b\xc4\xdd\xf8\x5e\xe1\x7e\ +\xc2\xea\x8c\xaf\xb0\xc2\xbd\xc3\x6a\x43\x6d\x85\x15\x56\x58\xe1\ +\x73\xc6\xd1\x49\xeb\xe7\x35\x49\xc9\x59\x7f\x82\xce\x6a\x87\x9c\ +\x9d\x6b\xd6\x5d\xdb\x85\x81\xa2\x34\xc6\xa2\xa0\xd5\x41\x38\xb6\ +\xc1\xc6\x09\x7b\xe4\x7d\xef\xb3\x6b\x37\x2f\xdb\x6f\xfe\xe3\x9f\ +\xb5\xcd\xed\x0d\x7d\xdb\xae\x3d\x9d\x5a\x17\x0b\x73\x79\x92\x4f\ +\xa6\xcd\xe5\x05\x8f\xf8\xbf\x35\xac\xa4\x7c\x71\xe4\x0a\xfd\xc4\ +\x21\x69\xac\x02\x72\x59\xa0\x85\x12\x8c\x25\x0e\x99\x12\x03\x6e\ +\x93\xb6\x08\x69\x1b\xf9\x68\x25\x11\x70\x73\xe7\x65\x49\x9d\x56\ +\x1a\x2a\x85\xe4\x04\x53\x73\x91\xc6\xf2\x7a\x51\x62\x21\x22\xd3\ +\x6a\xb1\xc6\x15\x60\xfa\xa7\x32\x62\xbd\x94\xae\xe1\x83\x6b\x90\ +\xe6\x85\xf4\x50\xc5\x49\x1d\x62\x77\x9f\x3e\x22\xdf\x02\x96\x8b\ +\x72\x48\x9b\x0c\x4b\xdc\x6a\x73\xa1\x06\x86\xe7\x82\x3f\xc7\xd9\ +\x47\x81\xfb\x90\xe3\xe8\x74\x21\xd7\x53\x3e\x4c\x4b\x7b\xa5\x10\ +\xa9\xba\x8b\x67\x00\x19\x17\xa8\xf4\xa3\x13\x85\xb6\x01\xcd\x27\ +\x84\xb4\x00\xce\xb4\x94\xd3\x24\xca\x91\x4b\x37\xa9\x5d\x14\x92\ +\xcc\x4f\x41\x43\x3a\x1b\x88\x74\x05\xe0\x6a\x81\x3b\x72\x50\x85\ +\x3c\x67\xa8\x4f\x77\xbd\x67\xbd\xcd\x81\x75\xfa\x5d\x7f\x4a\xcf\ +\x95\x30\xca\x04\x8c\x19\x45\x0c\x38\x85\x90\x2b\x5f\x1e\x69\xa3\ +\x7a\x90\xc6\x01\x52\x54\xf4\x15\x7a\x9a\x03\x95\xb5\x90\x66\x41\ +\x92\x52\x11\x00\x3f\x97\x4c\xef\x02\xc9\x95\x8f\xdb\x73\x03\x64\ +\x7c\x30\xb1\x31\xff\x43\x8d\x3f\xf9\x58\xbe\x62\xed\xf6\x6e\xb7\ +\xd8\x36\x89\xa3\xd2\x62\xa9\x7a\x1c\x07\xd7\xd1\x72\xfe\x88\xb4\ +\xa2\x1a\xda\x49\xe7\x53\x53\xce\x39\x3a\x84\xf7\x01\x08\xe1\x56\ +\x3f\x61\x14\x7c\x1e\xb2\xe3\x41\xd2\xbb\x93\xe8\xa6\x8c\x9e\x86\ +\x50\xcc\x4e\x56\xd9\x28\xc7\x2e\x68\x3e\x81\x38\x40\x9f\x03\xdd\ +\x5d\xeb\x58\x7b\xad\x8b\xa3\x63\x9b\xe7\x36\x6d\xf0\xe4\x19\xeb\ +\xbd\xe1\x01\xeb\x9f\xd9\xb2\xd6\xb4\x65\xe3\xfd\x03\x1b\x5f\xba\ +\x61\xfb\xcf\x5d\xb1\xe1\x8d\x7d\x9b\x4d\x7c\xe7\x48\xa7\xdb\x3d\ +\x7b\x97\xe0\x21\x76\xe1\x1c\x17\x26\x89\x8c\x59\x49\xd2\xe8\x7f\ +\x59\xfc\xe2\x24\x6c\x54\x41\xde\xe8\x61\xdb\xf0\xa6\x8f\x5f\x3f\ +\x6a\x27\x05\x32\xf2\x14\xa2\x1d\x94\xc8\x25\x65\x74\x2e\xa6\xba\ +\x4d\x45\x22\xe4\xda\x18\xd4\xb7\xa9\x19\xfb\x9f\xe6\x73\x73\x8c\ +\x1b\xb4\x53\xde\x88\xd7\xff\xf1\xb9\xde\xbb\x30\x78\xbc\xb5\x71\ +\xc6\x46\xa0\xad\xba\x9a\xdb\x09\x10\xc8\x9f\x0a\xc5\xa7\x74\x99\ +\x16\x34\x44\xfa\x63\x7e\x9a\xe1\xb8\x35\x9e\xd9\xb5\xe1\xc8\x2e\ +\xdf\x3c\xb4\x77\x7f\xdf\xbf\x6f\xef\xfd\xde\x3f\x65\x2d\xfe\x57\ +\x1b\x6b\x50\x7e\xc2\x8a\x27\x5a\x04\x13\x33\xc0\x11\x02\x9e\x77\ +\x89\x18\x93\x58\x00\xcd\x94\x6f\x3a\x00\x92\x4c\x5d\xd2\x45\x11\ +\x58\x60\x23\x81\x17\x47\xd9\x82\xd6\x1b\xaf\x23\xb6\x09\x2a\x58\ +\xae\x63\x0d\xee\x0d\x5e\x65\xf7\x5f\x70\xbc\x92\xfa\xd4\xb6\x8b\ +\xe9\x96\x74\x09\x81\x76\x79\x7c\x31\x60\xb1\x03\xdd\xa9\x7c\x21\ +\x53\x92\xe8\x5a\xbc\xb2\xdb\x9a\x4f\x1d\xda\xb9\x73\x0f\xda\x33\ +\x0f\x7c\xa9\xfd\xea\x47\x7e\xd9\x3e\xfd\xa9\x4f\xdb\xd9\xf3\xdb\ +\xd6\x3f\xd9\xb5\xd9\x90\x3f\xfb\xe5\xd7\x92\x37\x8b\x8f\x2b\xba\ +\xa6\x21\xf1\x31\xc3\x9d\xf2\x1a\xf7\x2f\x27\xd1\x33\xfb\x37\x3b\ +\xbc\xf7\x73\x5a\x28\x14\xc1\x20\xe9\xec\xe7\x38\x40\x32\x2b\x89\ +\x4a\xe4\x72\x0e\x15\xca\x49\x69\x14\x20\x44\xec\xa4\xe0\xa3\x17\ +\x05\xe1\xc0\x2d\x10\x21\xd6\x98\xee\x65\xa7\x3a\x2d\xab\xe4\xe1\ +\xfb\xf3\x43\xe6\x4c\x44\xee\xf3\x08\x51\x6a\xd8\x4e\xfd\x5e\xd7\ +\x4e\x6c\xb6\x6d\xd0\xc7\x67\x31\xda\x6b\x34\xf4\x2f\x8e\xe9\x33\ +\x8e\x1e\x11\x35\x9e\x42\x56\x62\x22\xb5\x8d\x61\x4a\x1c\xe0\xa2\ +\x5d\x25\xe7\xe9\xa4\x29\xdb\x45\x6a\xce\x5b\x1c\x3e\x0f\x93\x52\ +\xbc\xeb\xf9\x76\x9e\x20\x95\x43\x63\x4a\x69\xae\xd2\x20\xf6\x72\ +\x37\x3a\xc9\x1a\x4e\x74\x7e\x49\x48\xe9\x70\xb0\x8f\xf5\x31\x5f\ +\x3c\x79\xaa\x63\x83\x75\x4f\x9b\x7e\xb2\x96\x35\xd2\x5f\xa3\x03\ +\xef\xa2\x4a\xd8\xc8\x18\xa5\x38\xcd\x18\x27\xed\xa0\xd7\xc6\x6a\ +\xae\x8e\x0c\xa8\x2a\x8c\x43\x14\xe4\x07\x87\x13\x3b\xd8\xe3\x77\ +\x48\xc0\x14\x3b\x47\x45\x06\xb2\xf4\x19\x22\x16\xc9\x20\xcb\xe0\ +\xba\x44\x7e\x64\x35\xb5\x68\x40\x9d\xac\x8b\x0a\x9f\xf5\x08\xc5\ +\xca\x75\xf8\x42\x7b\xf2\xca\x74\xeb\x46\xa6\x28\x64\x3e\xaf\x2a\ +\x9c\x7e\x22\x90\x08\x6b\x11\xa2\xdd\xe0\x58\xa4\xea\x68\x69\x1d\ +\xaa\x23\x3f\xab\xe1\x9f\x6b\xb6\x49\xab\x6f\xdd\xd6\x96\x3d\xfb\ +\xec\xd3\xf6\x35\x5f\xfb\x80\x3d\x70\xa6\x8f\x8b\x7e\x1d\xf3\x16\ +\x8c\x4e\xe3\xeb\x76\xf9\xc5\x7d\x7b\xfe\x33\xcf\xd9\x8d\x9b\x2f\ +\xe1\xca\xb8\x8d\x22\x6a\xf4\x8a\x7c\x8e\xcb\x65\x89\x1c\x09\x94\ +\x26\xe2\x3c\x18\xa4\xb5\x9a\x04\x8c\x78\x29\x09\xb6\x29\xdb\xc7\ +\xfb\xaa\x75\xfc\xa7\x12\x65\x1b\xed\x25\xfb\x65\xf3\x89\x25\xe0\ +\xfc\x89\x69\xf9\x84\xfe\x04\x73\x26\x6e\xa4\xf3\xcb\x40\x9c\x03\ +\xe5\x93\x69\xa5\x0c\x08\xe9\x56\xf6\xe2\x9b\x98\x10\x8d\xb4\x7a\ +\x92\x8d\x8c\x7e\x66\x82\xc6\x6c\x5f\xc4\x7c\x53\x4e\xbd\x74\x5c\ +\x84\x4d\xed\xc2\x8d\x2b\xf6\xdc\xaf\x5d\xb6\xa7\x07\x5f\x6b\xef\ +\xff\xee\x3f\x6f\xcf\x3c\xf6\x56\x4c\xff\xa1\x87\x3d\x0f\xcc\x1c\ +\x9d\xa8\x11\x3a\x49\xab\x42\x28\xdb\xb9\xd8\x8d\x94\xaf\x48\x4a\ +\x1d\x99\xac\x48\xd4\x88\x89\x9a\xae\x41\xf9\xa2\xdd\xa2\xec\x6e\ +\x90\x25\x5c\xe1\x7e\xc5\xea\xec\xae\xb0\xc2\xbd\xc3\x6a\x43\x6d\ +\x85\x15\x56\x78\x6d\xe3\xb7\x74\x56\x90\x53\xde\x79\x7c\x6e\x45\ +\x0a\x5f\x73\xb3\x68\x30\x73\x59\x80\xe1\xa4\x9a\xba\xb9\x4c\x16\ +\x72\x0c\x96\x9b\x36\x7c\x92\x61\x7d\x7d\xdb\x9e\xfd\xda\x77\xd9\ +\x85\xdb\xb7\xed\x63\xff\xf8\x17\xec\xc4\x89\x75\xeb\xf7\x3a\xfe\ +\x9f\x6a\x5d\x5f\x09\x36\x13\x79\x2e\x4a\xb4\x8c\xd3\x22\x8e\x1a\ +\xae\x5f\x8a\x53\x80\xb6\x2a\x86\x8a\x97\x8b\xa4\x46\x5f\x80\x84\ +\xf4\x54\x57\x21\xe9\xda\x5a\x32\xcf\x04\xa0\x6f\xd2\x8c\x55\x0a\ +\xbc\xc9\x23\x87\xb0\x61\xd4\x34\x83\xdb\xab\x1c\x88\x45\x41\x41\ +\x1b\xae\x91\xd2\x2f\x35\x0d\x2a\x9a\xa4\x0e\x04\xb5\x49\x41\x08\ +\x33\x62\xac\x02\x83\x50\x41\x5c\xa5\xfa\x07\x4f\x44\xc9\x4b\xe8\ +\x86\xa1\x2f\x79\x21\x40\x21\xb9\x98\xd3\x82\x8e\x1b\x11\x3d\xc4\ +\x38\x37\xed\x81\x6f\xb2\xe9\x09\x1f\x6d\xba\x31\x99\xd7\xcd\xf8\ +\x67\xde\xfc\x2f\xaa\x6e\x0f\xf6\x5d\xd1\xed\x5e\xdb\xba\xdd\x8e\ +\x64\x9d\x3e\x0e\x3e\xf9\x26\x9b\xae\xfb\x8e\xec\x82\xf2\x1b\x42\ +\x6a\x5f\xc2\xdb\x8d\xc8\x2a\xa8\xbd\x2a\x7d\xbc\x75\x1c\x05\xa5\ +\x4d\x8d\x4b\x84\x3c\xf8\x34\x1a\xeb\xd8\xd9\xec\x5b\x6f\xa3\x8f\ +\x7a\xa1\xac\xf1\x84\x9a\x4e\x4d\x66\x41\x68\x95\xeb\x65\x28\xe0\ +\xba\x96\xd0\x4a\x39\x68\xa6\x65\x9c\x59\xa6\x0f\xc6\x34\xc3\x21\ +\x73\xf2\xd4\x17\xc2\x21\x0a\x81\xda\x32\x0e\xc9\x32\x84\xbd\xd7\ +\x3f\x24\x08\x78\x1d\x8d\x0e\x26\x36\xda\xe5\x7f\xa8\x71\x75\x4f\ +\x9f\xa1\x94\x51\x89\x8e\x14\xcb\x39\xd7\xa6\x4d\xb1\x98\x37\xac\ +\xb0\x54\x18\xae\x10\xb0\x6d\x0b\x8f\xfe\x21\xde\x65\x79\xdd\x8a\ +\xe6\x81\x20\x6f\x72\x24\x2f\x90\x8f\x83\x81\xce\x17\x79\x67\x43\ +\xce\xb4\x21\x4b\x02\x31\x23\x17\xe2\xcd\x9f\x9d\xe2\xcf\x61\xf5\ +\x40\x0f\x90\xd3\x7a\xcb\xda\x6b\x8c\xd1\x27\xd7\xd1\x07\x37\x7a\ +\x36\x38\x35\xb0\xfe\x53\x67\x6d\xf3\x89\xb3\xb6\x76\x6a\xd3\x26\ +\xfc\xe3\xfc\xbd\x43\x9b\x5e\xb9\x65\x87\x2f\x5e\xb7\xc3\x9b\x7b\ +\x36\x9b\x8c\xab\x9f\x91\xf5\x0c\xb2\x15\x9a\x3e\x51\x08\xc7\x02\ +\x5b\x40\xb9\x12\xd5\x06\xee\x37\xeb\x48\x82\x75\xee\xc4\xf5\xd7\ +\xd4\x39\x0d\x18\x39\xa1\x70\x4e\xd6\x9c\x1f\x52\xa1\x02\x3d\x2d\ +\xfd\x8f\x9b\x5b\x8a\xf9\x34\xc5\x14\x1a\x1c\xa4\xf3\xc9\x34\xfe\ +\x74\xa8\xfa\x77\xf4\x7b\xdd\x68\xe7\x7d\x1a\xb0\x7c\x62\x8d\x1b\ +\x8e\xf9\x9f\x6b\x7a\xb2\x25\x6c\xfd\xa7\x4f\x9b\x83\xd5\x64\x3d\ +\xf4\x13\x8f\x34\x47\xba\x5b\xe3\x89\x5d\xdb\x3d\xb4\x1b\xb7\x47\ +\xf6\xae\x3f\xf5\x67\xec\x6b\xfe\xdc\xf7\x5a\x77\xd6\xd3\x46\x9e\ +\x6f\xa6\x22\x51\x36\xaa\x68\xfa\x22\x1d\x7e\xc9\x64\x1e\x92\xc9\ +\xb2\x41\xb6\x91\x32\xa7\x32\x0e\xc9\x69\x1f\x7a\x06\x8a\x89\x42\ +\xcc\x91\x0d\x68\x9b\x0a\x8f\x9d\xa5\x5c\xec\xcb\xe0\xae\x8c\x5e\ +\x39\x5e\x25\xb7\x5f\xf4\x60\xbd\x79\x5a\xb3\xfe\x75\x3b\x50\xbe\ +\x0c\xaf\xa8\xad\xd2\xf9\x2b\x4a\x74\x14\xea\x73\x3c\x48\xbb\x68\ +\xce\x65\xf6\x29\xbf\x3c\xa0\x8a\xc2\xcb\x1e\x81\xe2\x38\x04\xe8\ +\x41\x67\x15\x33\xb9\x4d\xf9\xdf\xa8\x23\x3b\xff\xc0\xc3\xf6\xe6\ +\x87\xde\x69\xbf\xf1\x9b\xbf\x6e\x1f\x7b\xe1\x33\x76\xee\xdc\x9a\ +\x9d\x38\x39\xb0\xc3\x83\xb1\xc6\x12\x42\x9f\x6f\xee\xa6\xf2\xeb\ +\x84\x5f\x1a\x5e\x92\x94\x91\xe7\xfc\x26\x2f\x1b\x6d\xb8\x55\x26\ +\x7e\x09\x4a\x13\xd6\xfa\x58\x75\xa5\x44\x62\x64\x21\x40\xc6\x71\ +\x8a\xfe\x9c\x0a\x14\xa7\x8c\x13\xe4\xdd\x86\xa1\x37\x49\xc4\xaa\ +\x87\x9c\x85\x3c\x20\xa2\x70\x9f\x13\x32\xb5\xc7\x4b\x7c\x15\x91\ +\x13\x1c\xd7\x06\x98\x23\x6d\x6f\xb4\xec\xe4\x06\x7f\xee\x10\x9f\ +\xc7\xe3\x16\xda\x1d\x34\x0a\xc7\xf2\xc9\x54\xe6\x9c\x77\x92\x60\ +\xe8\xed\x45\x90\x2e\x8e\xd1\x16\x1a\x07\x09\x7e\xa6\x81\xcc\x23\ +\xcd\x1a\x3a\x53\xa6\xb0\x44\x2e\x13\x51\xa8\x12\x13\x99\x07\xc3\ +\xa3\xe9\x9b\x34\xa2\x83\x29\xe7\x1a\x51\x98\x41\x37\xb3\x36\xe6\ +\x7e\x83\xb5\x8e\x9d\x39\x8d\xe9\x22\xbf\x78\x55\xa5\x11\x9a\x8a\ +\x66\xf2\xf0\x55\x81\x36\x29\x62\xe2\xba\xa3\xcd\x29\xe7\x25\x8c\ +\x17\xa1\xe4\x7c\x85\xb2\xe9\xbf\x1e\x2f\x86\xfb\x98\x3b\x1d\xec\ +\x9b\x8d\x38\x7f\x92\x63\xd7\x34\x68\x78\xfa\xf5\xbc\x21\xf3\x49\ +\x8d\xb8\x26\x0c\x9d\xe2\xe5\x28\x76\x55\xe1\x1b\xdb\xf9\x54\x9e\ +\x17\x6d\x4b\xaa\x30\x41\xb0\x24\xbd\xab\x68\x13\x29\xf9\x8e\x43\ +\x2a\x8f\x1c\x64\xea\x42\x00\x73\xfa\x02\xda\xb8\x9d\xfc\xc4\x5c\ +\x8b\x4f\xa5\x5a\x6b\xc3\x36\x37\x37\xec\xed\x6f\x79\xcc\xbe\xf2\ +\xdd\xe7\xed\xdc\x29\x2c\x0a\xf0\x99\xde\x6e\x1f\xd8\xce\xde\x4d\ +\x7b\xe9\xe3\xb7\xed\xb3\x9f\x7d\xde\x76\xf7\x3f\x8b\x39\xd9\x21\ +\x92\x62\xbc\x9a\x61\x1d\x01\x07\xbc\x1a\x88\x8c\x05\x91\x2e\x59\ +\x2c\x4b\xa9\x43\x51\x44\x8f\x6c\x04\xe0\xe3\x1a\x93\x88\x01\x73\ +\x24\x8f\x42\x63\x8e\xcf\x9f\xcc\x66\xdf\xf7\x14\x61\xa7\xb9\xc5\ +\x9d\x91\xe5\xe1\x34\x87\xe0\xb4\x86\x5f\x68\xe3\xcf\x3c\x92\xa6\ +\x8f\xb9\x29\x90\xac\x50\x96\xb0\x2f\x7d\xd1\x23\xc1\x4b\xea\x25\ +\xe1\x78\xa6\x17\x58\x4c\x85\x1c\x2a\x27\xf5\x2d\xcc\x4d\xf9\x33\ +\x8f\xfc\x66\x58\xcb\x2e\x5e\xbb\x66\x2f\xfe\xea\x0d\x7b\x66\xeb\ +\x6b\xec\x7b\xde\xff\xe7\xed\x99\x27\xde\x82\xbc\xc7\xb2\xa7\x57\ +\x6d\x1a\x2a\x5d\x94\x02\x91\xfc\xf8\xdb\x41\x02\x47\x76\xab\x45\ +\x79\xf6\xb7\xa6\x69\x83\x48\xbd\x73\x4b\x88\x30\x10\x16\x63\xa2\ +\xa6\xef\x04\x96\x7d\x99\xed\xdd\xa6\x5f\xe1\xb5\x88\xd5\xd9\x5d\ +\x61\x85\x7b\x87\xd5\x86\xda\x0a\x2b\xac\xb0\xc2\xe7\x84\xc5\x49\ +\xa8\xd3\x47\x27\x29\x29\x39\x66\xfa\x92\xab\x00\xa1\xb2\x59\x58\ +\x7c\xb9\x1d\x0e\xc5\xb0\xcb\x74\x62\x43\x57\x97\x89\x11\x58\x3d\ +\x09\x35\x1d\x59\x7f\xb0\x65\x4f\xbd\xf7\x6b\xed\xc6\xf5\x8b\xf6\ +\x6b\x3f\xfe\x2f\xec\xe4\xa9\x75\xae\xc8\xad\x07\x3f\x5d\x2c\x7e\ +\xb4\xc0\x28\xab\x60\x72\x24\xc9\xe4\x91\xcb\x72\x84\x50\x52\x9f\ +\xb2\x5c\xaa\x70\xb1\xc5\xe5\x85\x74\x6e\xe0\x40\x1e\xf2\x07\x23\ +\xda\xf9\xd2\xc5\x0d\x1a\x0a\x48\x02\x71\x29\x0a\xa0\xa7\x36\xca\ +\x82\x87\x46\x4e\x6b\xb1\x46\x3b\x39\x75\x5a\x25\x42\x62\xd7\x33\ +\x1d\xde\x4c\x32\xbf\x1e\x9f\xcb\x80\x91\x93\x8d\xac\x41\x23\x53\ +\x54\xeb\x49\x2b\x2f\xd2\x5e\x2e\x1d\x2e\xf0\x48\x08\xb9\xc0\x72\ +\xd1\x26\xea\x04\x52\x37\xcf\xb8\x30\xc3\x7b\xd6\xc1\xf9\xe2\x26\ +\x27\x0e\xff\xaf\x35\x6e\xa6\xa1\x5d\xb9\x38\xd5\x13\x3f\x5d\xeb\ +\x6f\x0d\x6c\x70\x72\x60\xfd\xed\x35\x1c\x5d\xeb\x6e\xf5\xac\xb7\ +\xd1\xb1\xde\x1a\x37\xd3\x3a\xd6\x1d\x74\x11\xf7\xad\xa7\x18\x32\ +\xfa\xe2\xc1\xcc\x94\xbf\x42\x2f\x03\x91\xed\xcb\xc8\x25\x73\xa0\ +\x6d\x91\x8b\x58\xb0\x92\x5f\xef\x0b\xae\x76\x7d\x6e\x14\xce\xf8\ +\xdf\x7d\xfa\xff\xb4\xbe\xf1\x27\x2e\xf5\x93\x8f\x7a\x35\x88\x92\ +\x34\x80\x40\x3f\xcf\x42\x85\xca\xe7\x62\x8f\xb3\xc7\x25\x68\xcc\ +\x98\x32\xe8\x42\x25\x9b\xda\x2c\xcb\x15\x41\xda\x11\x4e\x33\x88\ +\x7a\xa4\xad\x18\x48\xb1\x92\x9f\x1c\x4e\x6c\xb4\xc7\x0d\x35\x64\ +\xc6\x9f\xea\x13\xa0\xa4\x8d\xf2\xbf\x13\xc2\x9f\xc2\x1a\x4c\x98\ +\xd2\x9a\x6e\x20\x29\x02\x69\xaa\x42\x3b\xcf\x77\xc8\x18\xa5\x1a\ +\x71\xde\x64\xcc\x3a\xd0\x4e\x34\xba\x97\x5f\x3b\xf5\x91\x76\x35\ +\x8f\x98\x2f\xd9\x3b\xcf\xcb\x86\x37\x72\xb5\x49\x8b\x83\x7d\x93\ +\x7d\xb4\xb3\x86\x63\xbd\x67\xed\xf5\x8e\x6f\xa6\xb1\xef\xe1\x68\ +\xad\xe1\xdc\x6f\xf7\x6c\xe3\xa1\xb3\x76\xe2\xe1\x33\xb6\x7e\x72\ +\x13\xf5\x69\xdb\xf0\xf0\xc0\x46\x17\x6f\xd8\xe8\xa5\x9b\x36\xba\ +\xb5\xab\x9f\xf2\x42\xcf\x88\x16\xc8\xd0\xcf\x3f\xf3\x24\x22\x9a\ +\xc7\x32\x21\x12\xd5\x3d\x84\xb1\x8e\x24\x08\x96\x1d\x02\x6d\x2c\ +\x83\xf6\xfb\x22\x1c\xbf\x3c\x9d\xc4\x32\x0c\x3f\x99\xae\x02\x4b\ +\xe9\xf0\x8d\x33\x05\x38\xf4\xd3\xb5\xa4\x75\x27\x08\xf1\x04\x7a\ +\x6d\xa4\x41\x87\x7e\x33\xe5\xff\xa5\xb1\xff\xe0\xad\x9b\xd5\x78\ +\xe7\x93\x69\xda\x34\x53\x1a\xca\x90\x29\x79\xc6\xb9\x39\xc7\x18\ +\x32\xda\xb3\x6d\xc0\xc1\x80\x76\xf0\xcd\xfc\x20\xbf\xb9\x77\x68\ +\x57\xf6\x0f\xed\xea\xce\xc4\xbe\xe6\xfb\xff\xbc\x7d\xf5\x9f\xfe\ +\x53\xd6\xeb\xf4\xf4\x7f\x6d\x2d\x6e\x7c\xb2\x72\xf4\x89\x37\x08\ +\xa5\xd1\x21\x9a\x51\xf0\xcc\x9b\x48\x19\xc1\xb4\x14\xc8\x07\x05\ +\x21\x2f\x0d\x14\x3a\x91\x0b\xb1\xa2\x9a\x5e\x82\x4c\x5b\x81\x22\ +\x95\xf9\xb8\x34\x73\xb8\x2b\xa3\xbb\xc7\x3d\x76\xf7\x9a\x44\xb6\ +\xc1\xcb\xb5\xc5\x32\xfd\xb1\x69\x16\xfb\xcd\xe7\x81\xd2\xdf\x48\ +\x3b\x79\xc4\x6d\x66\x07\x22\x55\xd9\xa5\x1d\x94\x42\x00\xa1\xc6\ +\xb6\x39\x9d\x83\xdd\x98\xe3\xc3\xac\x35\xb4\xb3\xe7\x1f\xb1\x37\ +\x3c\xf0\x56\xfb\x95\x8f\x7f\xd4\x3e\xf9\xb1\x5f\xb3\xed\xb3\x27\ +\x6c\xeb\xf4\xc0\xa6\xc3\x11\x2c\xe2\x26\x76\xf8\xd0\x08\x42\xf7\ +\x55\x01\x3d\x74\xa4\x84\x23\x5e\xb9\x99\xcf\xa2\x44\x9f\xf7\x31\ +\x90\xf2\x48\x4f\x1b\x39\xe7\xb5\xcc\x98\x54\xf0\x08\x8b\x84\x36\ +\x78\xbb\x0d\x09\xbd\x5d\xc7\xd0\x99\x40\xc3\xd0\x8b\xc6\x7e\xb6\ +\x03\x63\xda\x33\x01\x6d\xe4\x8b\x12\xa9\x32\x88\xe3\xee\x91\xd6\ +\x8b\xa9\xdc\x7b\xa0\x22\x48\xb2\x1e\x7a\x62\x05\xaf\x41\xbf\x6d\ +\x9b\x6b\x2d\xdb\xc4\x34\xb6\xd3\x9d\xd9\x78\xdc\xc2\xf8\xc6\x39\ +\x8e\x9f\x5f\xfd\xa4\xad\x12\xc1\x27\xeb\x10\xb4\x13\x4d\x1f\x90\ +\x67\x7d\xbe\x79\xfb\xa4\x82\x66\xf2\x25\x19\x3f\x27\x18\xeb\xa3\ +\x22\x4d\x5c\x97\x71\x30\x19\xca\x2f\x0f\xc8\x9d\x72\x8d\xcb\x82\ +\x22\x89\x72\x96\xa6\x65\x7e\xe4\x1b\x13\xc1\xfd\x33\x46\xcf\xc2\ +\xf8\xbd\xb5\xdd\xb1\x13\x27\x30\x2f\xd4\x6e\x00\x15\x55\xab\xd5\ +\x09\x8f\x60\xc1\xe6\x88\x2d\x05\x8d\xaf\xe4\x88\x2a\x87\x79\x06\ +\x71\x92\x2c\x37\x75\xaa\x6b\x91\x37\x35\x27\x7d\x88\xb9\xd3\xfe\ +\x6e\x4b\x4f\xf8\x44\x17\xce\x60\x21\x6e\xe8\xe8\xad\x45\xa4\xcf\ +\x02\xc6\x21\xf0\x10\x36\xd9\x70\x2e\x28\x20\x4b\x0f\x84\xe2\x30\ +\x73\x32\xda\x5f\x74\x85\x38\x6f\x41\xfa\x7f\x35\xb3\x9f\x64\x51\ +\x78\xb8\x5a\xa0\xb5\xe6\x0b\xa9\xf7\x48\x87\x23\x72\xa9\x13\xdd\ +\x09\xf2\xc1\x0f\x7a\x78\xd6\x07\x7e\xcf\xb6\x37\x4f\xda\xbb\xdf\ +\x71\xde\xde\xf5\xae\x93\x76\x62\x93\x4f\x67\xf2\x49\xbf\x7d\xbb\ +\x7a\xe5\x86\xbd\xf0\x89\xab\x76\xed\xda\x45\x1b\xdb\x55\xcf\x17\ +\x85\xf5\x27\xd3\xd8\x87\x23\x6f\xbf\x88\x2b\x34\xfc\x62\xb1\xc8\ +\x7b\x73\x36\x36\xa4\x64\xa7\xf6\x07\x47\x3d\x27\x4e\xfc\x65\x10\ +\xc8\xf8\x73\x94\xdc\x48\xd3\x7f\x0d\xf2\x4b\x80\x2c\x3b\xed\x85\ +\x48\xf3\x32\x90\x05\x02\xc6\x9c\xc5\xf1\xed\x9b\x69\x7c\xba\xdf\ +\x75\x8a\x50\x17\x56\x87\x36\x73\xd5\xf2\x24\x01\xa7\x14\x32\x40\ +\x85\xe0\xa5\xe8\xbd\x6c\xa8\x61\x96\x93\xfa\xd6\x08\xad\xd6\x43\ +\xfb\x4d\xec\xd2\xce\x15\x7b\xfe\x43\xd7\xec\x99\x13\xef\xb3\xf7\ +\x7f\xf7\xf7\xda\x1b\x9e\x7c\x1b\xca\x31\xf6\x76\x41\x9b\xfa\x66\ +\x1a\xd3\xa1\x0c\x6c\x93\x92\xb1\x7b\xa6\x80\xed\x52\xc4\x00\xb9\ +\x32\xfa\xd0\x8f\x53\x92\x91\xa6\x2d\x5d\x51\xc3\x28\xc8\xc6\x30\ +\x09\x55\x3a\xe8\x39\xa3\xf9\xdc\x5e\x19\x6a\xfb\x57\x9a\x76\x85\ +\xd7\x1a\x56\x67\x78\x85\x15\xee\x1d\x56\x1b\x6a\x2b\xac\xb0\xc2\ +\x6b\x1f\xbf\x25\x33\x83\xc5\xc9\xa7\x4f\x64\x1b\x69\x52\x8b\x71\ +\x85\x32\x29\x8e\x23\xe7\xc2\x5c\x00\x71\xd6\x9e\x90\x9c\x32\x1e\ +\x15\x2f\xc0\x4e\xa6\xc9\x13\xf4\x05\x9e\xf3\x7d\xc6\xfc\x4f\xb5\ +\xe9\xc4\xd6\x06\xeb\xf6\xcc\x7b\xbe\xdc\x6e\xdb\xd0\x7e\xe9\x87\ +\xff\xb9\x9d\x39\xbb\xa6\xff\x54\xb3\xc9\x18\x0b\x75\x7e\x9b\x31\ +\xd2\x6a\x46\xdf\xf8\x93\x7b\xc9\xa8\xc3\x1b\x65\x73\x0b\x0f\x85\ +\x5c\xb4\xc5\xc2\x82\x1a\x1e\xac\x47\xde\xd8\x51\x50\xea\xe5\x16\ +\x5c\x5e\x34\x80\x5f\xa5\x8d\x34\xb2\x69\xc0\x0d\x16\xa6\xf7\x05\ +\xb5\xa7\x53\x76\x08\x28\x93\x38\x68\x69\x25\xc8\x98\xa5\xe5\x02\ +\xd3\xbd\x16\x95\x47\x82\xd3\x08\x65\x20\x26\xe2\x64\x80\x52\xac\ +\x90\x31\x2f\x90\xf2\x17\xf9\x30\x0e\x6a\x01\x51\x2e\x40\x6d\x47\ +\xfb\x48\xa7\x66\x61\x3a\x2e\xda\x79\x4e\x70\x70\x51\xca\x9f\x4b\ +\x9c\x61\x81\x3a\xe5\xcf\x38\x6e\xf5\x6c\x70\x7a\xdd\xd6\x1f\xde\ +\xb6\xee\x03\x9b\xd6\x3b\xb7\x6e\xbd\x33\x1b\xd6\x3b\x89\xf3\xb8\ +\xd5\xb7\xf6\x1a\x6a\xc8\x9f\x8d\xa4\xad\xfe\x9b\x8d\xdf\xe2\x66\ +\xcc\xa7\xd7\xba\xbe\x91\x15\x77\x84\x54\x8e\x38\x2f\xcc\xda\x8b\ +\x23\x6a\x0e\x47\x25\x44\x48\xe9\x84\x64\x9c\x7b\x49\x43\xa5\x16\ +\x60\x7d\xd8\xaf\xfa\x1d\x6d\x02\x72\x33\xb0\xd5\x65\x99\xb8\xd8\ +\xa7\x91\x1b\x7b\xbf\x73\x1f\x82\x0b\xbc\x6c\x41\x7b\x16\x8d\x8d\ +\xda\xdc\x73\x29\x62\x5f\xaa\x7a\x1b\x4b\xee\x45\x68\x78\x82\xb2\ +\x20\x14\x87\x62\x91\x66\x3a\xb5\x07\xde\xcc\xab\x6c\xa8\xed\x63\ +\x41\x7d\x88\x25\xfd\x04\x87\xf2\xa5\xf5\x51\x1c\x91\x46\x5d\x97\ +\x83\x3a\xbf\x9a\x6a\x94\xda\x82\xa0\xce\x0f\xbc\xd0\x18\xcd\x8d\ +\x37\xd6\xd7\xeb\x9d\xa8\xcb\x1e\x51\x91\xf9\xe6\x18\xfa\x09\xfa\ +\x41\x1e\xec\x13\xae\x0b\x7d\x1c\xbc\x61\xc7\x74\x6c\x7c\x8f\x3d\ +\xad\xee\x2a\x76\x31\x81\x5c\x43\xdf\xc2\x39\xe5\x53\x68\x5d\xf4\ +\xbf\xce\x46\x57\x1b\x6a\xad\x81\xcb\x3b\x3d\xdf\x60\xdb\x3a\xbd\ +\x61\x6b\xda\x4c\x5b\xb3\x09\x9c\x1c\xee\x1f\xda\xf8\xa5\x1b\x36\ +\x79\xf1\xa6\x0d\x77\xf6\xac\x85\xb1\x89\x75\xf5\xab\x93\xf9\x54\ +\xe7\x10\xd0\xb5\xa1\x3a\x36\x50\x79\x44\x44\x3c\x07\x08\xd9\x66\ +\xea\x34\x61\x50\xec\x50\x47\xe4\xa4\xcd\xb4\xa8\x2f\x75\xcc\x9b\ +\x64\x81\xec\x9b\xb4\x25\x79\x80\x9e\x15\xc4\x46\x57\x1a\xf0\xde\ +\x17\x05\x8c\xf5\x74\x19\x37\xd2\x70\xe8\x27\x1e\xf5\x64\x1a\xea\ +\x81\x43\x9b\x66\x4a\xaf\x54\xde\xbf\x29\xd3\x01\xc9\xa4\xf2\xc3\ +\x98\x37\x82\xb8\x69\xc6\xcc\x70\x94\xb3\x8e\x7a\xe8\x3f\xd3\xd0\ +\x3f\x79\x23\xff\xf6\x68\x6c\x17\x0e\x0e\xec\xd6\xad\x91\xbd\xfb\ +\xfb\xbf\xd7\xbe\xe6\xfb\xff\x14\xea\xba\x66\x53\xc8\xf5\xb4\x2b\ +\xb3\xcb\xc2\x32\x73\x95\xa3\x3e\x94\x61\x13\xd3\x86\x11\xd3\xb0\ +\x90\x25\x69\xe8\x84\x10\xe6\x49\xa1\x38\xe9\x72\xa2\x08\xd0\x62\ +\x33\x5e\x86\x46\xe1\x54\xf6\x73\x1c\xc5\xd7\x62\x5c\x63\x99\xec\ +\x73\xc4\x3d\x74\xf5\x9a\xc5\x71\x4d\x7d\x37\x4d\xaf\x7e\xe0\xe4\ +\x3c\x52\xc1\x23\xfb\xd0\x3d\xc0\x9d\x5c\x45\xdf\x65\x17\x72\xb3\ +\xda\xb8\xa2\x65\xe3\xe3\x0f\xe5\x2a\x25\x03\xc5\x54\x82\xc0\xa5\ +\x31\x6d\x8d\xed\xdc\xf9\x47\xed\x8d\xe7\xdf\x6c\x1f\xf9\xe4\x27\ +\xed\x37\x3e\xfa\x61\xdb\x3e\xbd\x66\xa7\x4e\x6d\xd8\x68\x32\x84\ +\x01\x3f\x6b\x61\xab\x6c\xfd\xa5\xb4\x72\x2c\x2e\x00\x4a\x36\x88\ +\x94\x91\xae\x6a\x84\x88\xc1\x6a\x83\x8d\x62\x06\x8c\xb3\x30\xb2\ +\x01\x8d\xeb\xd0\xc7\x30\xea\xdd\x11\xc9\x28\xb9\xf4\x5e\x97\x30\ +\xc1\x8b\x3c\xb5\xc5\xb5\xd0\x50\x09\x95\x9a\x36\x3a\x90\x89\xae\ +\x79\xca\x98\x8f\xdb\x33\x14\x25\xa2\x70\x9f\x23\x3c\x6d\xf1\x70\ +\x94\xd0\x18\xcd\x62\x4c\x50\xf8\x1e\xe6\x47\x1b\xeb\x66\xa7\xb7\ +\x5a\x88\xf1\xc9\x82\xf1\x7c\x34\x6c\xdb\x98\x1b\x6b\xfc\x3f\x29\ +\x59\xd7\x3e\x59\x7e\x96\x1d\xef\xd2\x56\x2e\x63\x5d\x0b\x5a\x18\ +\x4b\xbd\xb1\x54\x25\x7d\xe9\x02\x76\x1e\xbb\x8c\x87\xb7\x77\xb6\ +\x68\x83\xda\x97\xec\xa8\x96\x28\x6c\x3d\x71\x75\x6e\xc9\x82\x57\ +\x59\x22\x35\x02\x3f\x87\xa4\xa9\x63\x6d\xda\xfa\x72\xd4\xe9\xd3\ +\x1d\xd5\xbb\x8c\x87\x99\xe0\x65\x51\xd9\x94\x32\x2d\x40\x65\x9a\ +\x57\x92\x23\x52\x52\x62\x12\xc1\x28\x4a\x45\x40\x35\x29\x7a\x7f\ +\x0d\x87\xfe\x1f\x6a\x23\x7e\xc9\x64\xce\xb1\x1b\x32\x8c\x24\x02\ +\x69\xef\x76\x08\x50\xb6\x46\x57\x5b\x71\x93\xa4\xd1\x31\xae\xb5\ +\x59\x81\x25\xd9\x09\x22\x2b\xdf\x65\x83\x05\x60\xcc\x5e\xe4\x02\ +\x04\x95\x8e\xfe\xd4\x5c\x79\x1e\x08\xf2\x11\x67\x8e\x95\xd6\x41\ +\x41\xf4\x1d\xc6\x7e\x85\xd2\x2f\xfa\x6c\x24\x96\xcb\x19\x26\xf2\ +\x9d\x99\x9f\xf3\xcd\x6d\x7b\xfb\xb3\xdb\xf6\xb6\x2f\x3d\x6d\xfd\ +\xc1\xd8\x76\x0e\x86\x76\xed\xd2\xa1\xbd\xf4\xc2\x15\xbb\xf4\xd2\ +\x55\xdb\xd9\xbd\x86\xcf\xf7\x5b\xea\x23\xd9\xef\x7d\xae\x0f\xdf\ +\x7a\xcb\xb1\xe0\xb9\x31\x74\x34\x9a\x0a\x12\xce\xdb\x14\x3b\x10\ +\x5e\x67\x5c\x67\x68\x00\x66\xd3\xe6\xaf\x23\xf2\x4b\x7f\xdc\x50\ +\xab\xda\xe8\x6e\x51\x72\xaa\x3a\x85\xae\x73\x7e\x01\x89\x73\x28\ +\xd0\x3e\x25\xf1\x7e\xa3\x83\xa9\xf0\x2e\x28\x6c\x10\x28\x44\x51\ +\x83\x60\x2f\x11\xcf\xf2\xc5\xe1\xff\x99\x86\x18\xbe\x27\x58\x17\ +\xb7\x26\x7d\xcc\xa5\x46\xf6\x99\xcb\x57\xec\xe2\x47\x2f\xdb\x1b\ +\xce\x7c\xa3\x7d\xf7\x77\xff\x49\x7b\xe3\x13\xdc\x4c\xe3\xb7\x9c\ +\xe4\xcd\xc7\x02\x31\x48\x4f\xba\x64\x44\x90\xe1\xc1\x3a\x20\xc6\ +\xc1\x75\x0c\xe9\xf9\xbe\x52\xd1\x5e\x8a\x88\x15\x65\x30\x0f\x76\ +\xb8\xf9\xcc\x1a\x2c\xf8\x6b\xe0\x7e\x8f\x47\xea\x32\x7e\x39\xfb\ +\x15\xee\x07\xac\xce\xf0\x0a\x2b\xdc\x3b\xac\x36\xd4\x56\x58\x61\ +\x85\xd7\x3e\x8e\x99\x5f\xbe\x3a\xa8\x27\x9b\x99\xf1\xfc\xd4\xa4\ +\xe1\xee\x76\xca\x42\x3b\xf8\x9a\x33\x0f\x99\x26\xd0\x5a\x49\x44\ +\x76\x0c\xd2\xb6\x4a\x50\xf4\x90\x51\x9c\xaa\x48\xe3\x3f\xff\x38\ +\xb6\xfe\xfa\x09\x7b\xf2\xeb\xbe\xce\x0e\xda\x87\xf6\x4b\x1f\xf8\ +\x27\x76\xea\x24\x56\xe6\x58\x08\x75\xb0\x62\xe9\xf5\x7c\x4a\xaf\ +\x3c\xb9\x4a\xe2\x22\x80\x3c\x40\x4d\x43\xf3\xa0\x24\x33\x01\x32\ +\x6f\xc1\x17\x05\xae\xcf\x30\x82\x70\x52\x64\x81\xc8\xb9\x32\x64\ +\xc4\xb4\x59\xa6\xf4\x8a\x70\x61\xc1\x2f\x0a\x01\xf5\x5c\x53\xcc\ +\xc5\x78\xb1\x69\xc4\x41\xe8\xa9\x3c\xbd\x16\x37\x14\xa8\x8d\x1b\ +\xb8\x15\x75\x11\x27\xe4\x07\x90\x28\x6d\x48\x23\x4a\x1f\x4a\xe3\ +\x48\x8a\x71\x43\x2f\xb4\x1b\x69\x95\x0b\x52\xc6\xb1\xd0\xd6\x82\ +\x8d\x5f\xf9\x44\xcc\x27\xbc\xf4\xa4\x0f\x37\x26\x1e\x3f\x63\x83\ +\x47\xce\x58\xef\xec\x09\xf0\xdb\x36\x38\xb9\x65\xdd\xad\x0d\x6b\ +\x6f\xf6\xac\xa5\x0d\x34\xf8\xe0\xc6\x19\xe2\xdc\x30\xa0\x8c\xe7\ +\x53\x32\xfe\x92\x09\x64\xcc\xab\x5e\x9b\xf1\x74\x13\x2c\x89\xc7\ +\x7e\x78\x4b\x2d\xc1\x5c\x5b\x54\x00\x9f\x3e\x3c\x4f\x94\x65\xad\ +\xab\xff\x4f\x6b\xf3\xe9\x39\xd6\x05\xfd\x4d\x65\xa0\x9d\x9f\x9c\ +\x40\x95\x1b\x48\xb6\x49\x83\x9a\x06\x94\x0f\x64\xd1\xee\xf3\xbd\ +\x33\x42\x06\x3c\xe8\x2b\x05\x8a\x43\xe5\xc2\x5a\xec\x20\xaf\xa3\ +\x91\x6a\x43\x6d\xc8\xff\x50\x1b\xd9\xec\x20\x7e\xf2\x51\x59\xce\ +\xa5\x3c\x1e\x0b\x7d\xac\x81\xcb\xf5\x93\x7e\xc7\x98\x50\x9c\xb5\ +\x23\xca\x39\x0a\xfb\xe0\xe6\x42\xc6\xd9\xbf\xd9\x07\xb8\x5d\xa4\ +\x1b\xaf\x38\x27\x65\x23\x8d\x7d\x85\x9b\x2c\x3c\xf9\xba\x21\x42\ +\x3d\x63\xf6\x45\x39\x00\x8f\x9c\x21\xe3\xb7\xb3\x79\x7f\x87\x1b\ +\x69\xfc\x29\x52\x3e\x85\xd6\xdd\xec\xe2\xe8\x59\x97\x4f\x49\x6e\ +\xf4\x7c\x83\x0d\xe7\xb8\x85\xa3\xc3\x9f\x22\xed\xb5\x31\xde\xf4\ +\x6c\x0d\x7d\x75\x70\xaa\x6f\x13\x64\x32\xbe\x79\x68\x23\x6e\xa6\ +\xbd\x74\xdb\x46\x07\x43\x34\x4b\x5e\x0d\x1e\x12\x79\x63\xd9\x69\ +\x6a\xea\xda\xa7\x0c\x60\x10\x04\xbb\x91\x48\xc1\xc7\x8d\xd4\x29\ +\x44\xe5\xd0\x02\xaa\x2b\xab\xeb\x37\x9b\x28\x67\x14\x36\x0a\x01\ +\x11\xc1\x15\xa1\x93\x2a\x49\x09\xd8\xeb\xa2\x6c\x1c\x2b\x59\x08\ +\x8c\xa3\xfc\xe9\x45\xf6\x17\x3e\x95\xa6\x27\xd3\x62\x43\x8d\x4f\ +\xa7\xf1\xc9\x33\xbf\x3b\xa4\x24\xf0\xe9\xb4\xee\xa5\x71\x98\xc7\ +\x51\x68\xca\x09\xde\x44\x42\x3a\x6e\xaa\x29\xad\x12\x78\xab\x70\ +\x93\xcd\x7f\x02\xb2\x6d\x37\x11\xdf\x18\x0e\xed\xe2\xcd\xb1\xbd\ +\xf3\xcf\x7c\x9f\x7d\xfd\xf7\xff\x19\xd4\xb5\x67\x93\x31\x7f\xda\ +\x97\x29\x50\x03\x25\xa2\x3d\x7c\x69\x53\x38\x68\x2a\x44\x2f\x1c\ +\x4a\x00\xb0\xf2\xd9\x00\x3c\x01\xd4\x91\xf7\x00\x11\xe2\x9a\x67\ +\x4c\x72\x4e\x06\xe8\xdc\x8a\x98\x13\x37\x68\x84\x4e\xa1\xd4\x91\ +\xa6\xbe\x1e\x1b\x3b\xc6\xf5\x71\x8f\x70\x0f\x5d\xbd\xa6\x10\xa7\ +\x5b\x38\xae\x0d\x6a\x9b\x1a\xcb\xec\x8f\x6d\xc7\xcf\xb3\x81\xd5\ +\xdf\x78\x24\xbf\x10\x1f\x03\x2f\x7a\x5d\x01\xd2\x38\xe2\x73\x97\ +\x57\x95\x5f\xd3\x6e\x53\xf7\x39\x5d\x71\xb0\xe3\xe8\xc2\xb1\x64\ +\xda\x3a\xb0\x73\xe7\x1f\xb3\x37\x3e\xf2\x0e\xfb\xcc\x8b\x9f\xb6\ +\x8f\xfe\xc6\x87\x6d\x1d\xf3\xa9\xed\x33\xdc\xc0\x1e\x22\xad\x3f\ +\xa9\xe6\x20\x81\x83\x91\x5c\x3b\x9f\xea\x8c\x7d\xe4\xf2\xbc\x09\ +\xa6\xe7\x78\xc8\xa1\x59\xa0\x8a\x32\xda\xe1\x3a\x4c\x4b\xa5\xe7\ +\x75\x29\x50\x17\x9e\x28\x92\x11\x02\xc6\x1c\xf7\x00\x4d\xa1\x12\ +\x10\x65\xca\x9a\x22\xb2\x84\x6c\x87\xfc\x3c\xa1\x1f\x46\xa5\x6e\ +\xfc\xcc\x40\x24\x76\x4e\xf1\xca\xe1\xf9\xf9\xc1\x22\xba\xcf\xc6\ +\x5f\x52\xae\xc5\x31\x6d\xe9\x17\x16\xd6\xd7\xbb\xb6\xb5\x81\x78\ +\x03\xc5\xe9\x74\x30\x26\x76\x6c\x38\x81\x35\xe7\x1a\x4c\xc5\x84\ +\x3c\xe2\xc3\x43\x2d\x4a\x1e\x3e\x5c\x8c\x31\x50\x7c\x80\x9f\x4b\ +\x34\x49\x7b\xea\x14\xb3\x1d\x94\xf3\xbc\x79\x15\xbb\x2e\x5b\xce\ +\x41\x5a\xbc\x08\x04\x30\x22\xe9\x9b\x37\xd2\xf8\x39\x71\x52\x3e\ +\x48\x8b\x8d\x98\xc9\xd6\x50\xcf\x33\x67\xcd\xfa\xfc\xf5\x82\x2c\ +\x45\x1a\x91\xcf\x84\x4b\x11\x72\xd9\x04\x22\x59\x03\x67\xbc\xda\ +\xf3\xfd\x4b\x1b\x02\xa4\xc3\x4d\x43\x1c\x85\x6b\x10\x2e\x98\x0c\ +\x47\x53\xdb\xe5\x4f\x3e\xf2\xcb\x25\xa9\xac\x6d\x98\xe1\x42\x9a\ +\x02\xc9\x53\x39\x57\x68\x61\x3e\xd9\x3c\x37\x57\x0f\x27\x05\xcf\ +\xce\xcf\x40\x63\x03\x0e\xcc\xbc\x07\xe7\x75\xb0\xde\xc1\xa4\xcc\ +\x09\xf7\x30\x2f\xc3\x3b\x0f\xb1\x9e\xa3\x23\xec\xa5\x40\x6b\xa4\ +\x98\x93\x04\x7c\x9e\x77\xb1\x1e\xdb\x5a\x1b\xd8\xd9\x13\x3d\x7b\ +\xfa\xd1\x35\x7b\xf4\xc9\x16\xda\x6f\x6c\x97\x3e\x7b\x68\x57\x2f\ +\xde\xb4\x6b\x97\x2e\xd9\xed\xdb\x98\x4b\x4d\x6f\x5b\xa7\x3b\xc6\ +\xc7\x38\xff\xe7\xd1\xeb\xa2\xb9\x5c\xf8\xaf\x43\x46\xd4\x93\x2b\ +\xd9\xcd\xe1\x78\x03\xaf\x37\x85\xe8\x7b\x9a\x4f\xe1\x85\x7c\xf8\ +\x05\x39\xfd\x82\x06\x0e\x65\xfb\x0a\x11\x25\x73\x02\x07\x7b\x06\ +\xe7\x34\x7a\x32\x8d\x5f\x44\xd2\x34\x05\x2d\xc7\x79\x4a\xd8\x68\ +\x94\xae\xca\xa7\xa9\x4a\x12\x90\x4b\xa7\x80\x0c\xa7\x4d\xf3\xf6\ +\xac\x0b\x79\x3e\x79\xa8\xcd\x2e\xcd\x79\x7b\x18\x33\xf6\xec\x53\ +\x2f\x7c\xd6\x2e\x7f\x64\xc7\xbe\xe4\xd4\x37\xdb\x1f\xfa\x83\xdf\ +\x6b\xcf\x3e\xc6\xcd\x34\x94\x8a\xe7\x08\x69\xb5\x36\x53\x7e\x2c\ +\x05\x43\xf2\xf5\xf9\x03\xa0\x48\x6d\x5e\x37\x51\x14\xd1\xba\xee\ +\x45\x88\x81\x30\x35\x2e\x54\x5b\x0b\xd1\x63\x52\x7d\x27\x28\x4d\ +\x93\xce\x9d\xd7\x48\xdd\x32\x67\x2f\xc7\xaf\x70\xbf\x61\x75\x86\ +\x57\x58\xe1\xde\x61\xb5\xa1\xb6\xc2\x0a\x2b\xac\xf0\x8a\xc1\xa9\ +\xc8\xe2\x64\x35\xe1\x0b\x1a\x47\x6d\xb7\x30\x7d\x91\x98\xb2\xb0\ +\x29\x73\x5c\xd2\x38\x38\x83\xa6\xcc\x83\x06\x64\x53\x57\xf4\x22\ +\x02\xa1\x93\xaf\xf0\x1d\x93\xf3\xfc\x4f\xb5\x5e\x7b\x60\x6f\xfa\ +\xda\x77\xd9\xfe\xa0\x6f\xbf\xf0\x81\x9f\xb4\x13\x9b\xeb\xd6\xe3\ +\x53\x25\xfa\x4f\x35\xd8\x68\x01\x90\x4b\x3f\x2e\x08\xc2\x25\xdc\ +\xa4\x9c\x8c\x2f\x18\x28\xc1\x8b\x46\x04\x22\x16\x8f\xb7\x68\x49\ +\xc8\x3e\xd2\x09\xd0\xd1\xbf\xcc\x23\x89\x64\x88\xc2\xc2\x75\x8c\ +\x33\x08\xa5\x16\x15\xc9\x70\x21\xc4\x48\x32\x17\x11\xba\x69\x0e\ +\x85\xca\xda\xf6\x38\xcb\xe1\x8b\x14\x4f\x1f\xe6\x40\xd8\x32\x8d\ +\x38\x47\x4d\xcf\x21\x84\xae\x8f\xb4\xc1\x7b\x66\x55\x2c\x0b\x8f\ +\x1b\xba\xe1\xf2\xe5\x40\x8c\x74\xda\x4c\xc0\xa1\xb2\xb2\xdc\x58\ +\xa4\xea\x67\x1c\x71\x8e\xd6\x1f\x38\x65\x6b\x0f\x9f\xb3\xc1\xd6\ +\xb6\xf5\x37\x70\xce\x36\x36\xac\xb3\xd6\xb7\x76\xbf\x6b\x33\x1c\ +\xbe\x91\xa6\xe4\xbe\x01\x82\xf4\xbe\x50\x84\x80\x2b\x5d\x6e\x8e\ +\x68\x53\x0d\x0b\x5f\x1c\xda\xdc\xa2\x8e\x60\x7b\x32\xa6\x69\xca\ +\x02\x3a\xb7\xf3\x22\x00\x02\x3f\x21\x73\xa0\x99\x5a\x18\x0b\x6e\ +\xfd\x1f\x16\x37\x6d\xf8\x14\x93\x36\xd4\xba\xd6\xe9\xa0\x80\x5a\ +\x75\xb3\x8e\x8c\x3d\x4d\x90\x11\x7b\xd8\xf4\x91\x85\x7c\xc0\x66\ +\xd6\x7a\x6a\xb1\x02\x6b\xa1\xd4\xe9\x90\x00\x4d\xa9\xaa\xc1\xce\ +\x48\x0e\x99\x97\x6a\x4a\x5f\x81\xbc\xcc\xdc\x97\x3f\x19\x69\xda\ +\x50\xd3\x13\x6a\xdc\x50\x1b\xd5\xf9\x56\xa9\x99\x47\x71\x5c\x63\ +\x99\x8c\x3e\x94\x83\xc7\x91\x2e\xa5\x09\x8a\xe7\xf8\x8a\xf3\x7e\ +\x42\x3e\xfa\x78\xc8\x8a\x9c\xed\x8f\x7e\x61\xf9\xd3\x8c\xfc\x8f\ +\xbe\x3e\x4e\x41\xbf\x65\x9d\xf8\x9f\x3e\xeb\x21\x51\x17\x7d\x05\ +\x87\x62\xf6\x21\x1c\xbe\x81\xc6\x74\x48\xc3\xff\x46\xd3\xff\xa3\ +\x61\x9c\xe0\x46\xda\x96\x6f\xa6\xf5\x18\x73\x23\x8d\x3f\xf1\x88\ +\x3e\xa5\xfe\xc5\x3e\x8b\x3c\xbb\xdc\x50\x5b\xe3\x53\x6a\xfc\x23\ +\xfd\xae\x1d\x5c\xdb\xb7\xc3\x8b\xb7\x6c\x72\x79\xcf\x86\xc3\x31\ +\xfa\xb6\x97\x19\xb9\xa9\x4b\x4c\x49\x12\x28\x06\x4f\x53\xdd\x3a\ +\x05\x61\x93\xa6\x89\x39\x5e\x75\xe7\x9b\x5e\x91\x03\x6f\xf4\x80\ +\xf4\x26\x41\x90\x9b\x69\x6e\xed\x0a\x46\x25\x20\x82\x40\x44\x8a\ +\x47\x19\x6b\x40\x68\xf3\xac\x3a\x74\xc3\x86\x47\x6c\xa0\xf1\x27\ +\x41\xf9\x34\x9a\x0e\x6e\xa8\x69\x33\x0d\xf5\xa5\x0f\x0e\x8e\xe1\ +\x50\xb9\x90\xa7\x9e\x0d\xa0\xcd\xb1\x38\xa0\xe5\x93\xc5\x14\xf1\ +\xae\x52\x7e\xcb\x99\x89\xd8\x6e\xfc\x09\x47\x62\x82\x74\xdc\x4c\ +\xbb\x76\x7b\xcf\xae\x1d\x9a\x7d\xd9\x9f\xf9\xb3\xf6\xde\xef\xfb\ +\x93\xd6\xeb\x6c\xd8\x0c\xed\xcc\xcd\x52\xdd\x47\xa7\x1f\x1d\x2c\ +\x0b\x0e\x6e\xd4\x45\x5e\x3e\x7e\xf3\x20\x10\x2f\x9e\x8c\xa2\x03\ +\xa2\x0c\x3a\x3c\x40\x84\x58\x26\x88\x43\x34\x2f\x23\x11\x8a\x68\ +\x6f\x97\x07\x59\x23\xdc\x2b\x69\x82\xa6\x4c\xb7\xcc\xfe\x5e\xe3\ +\xb8\x3c\xaa\x2a\xbc\x2e\x70\xa7\xba\xd6\xba\xa4\x17\xed\x97\xa6\ +\xcf\x46\x9c\x3b\xbb\xaf\x00\x48\x9b\xfd\x47\x7d\x36\xb0\x34\x2f\ +\x20\x4d\x33\x54\x5f\x3e\x0e\xd0\xcb\x37\xad\xc3\x8e\xfd\x96\xd7\ +\x82\x7e\x8b\xd5\x51\x9e\x6e\xc2\x87\xec\xcc\x86\x76\xe6\xec\x83\ +\xf6\xe6\x27\xde\x69\x17\x2e\x5f\xb4\x7f\xfd\xe1\xdf\xb0\x35\x8c\ +\x79\x67\xce\x6e\xda\x68\x7a\x80\x64\x18\x33\xd5\x6f\x71\xf0\x3a\ +\x63\x24\x27\x25\xc0\xf8\x34\x97\x23\xe8\xa0\x18\xe1\xd0\xc6\x19\ +\x63\xb0\xb2\x43\x80\x91\x80\x16\x21\x64\x80\x88\x97\xb4\x93\x40\ +\xb1\x0e\x8e\x9f\x7f\x9e\x8a\xa5\x96\xbf\x68\x47\x59\x92\x17\x47\ +\x34\x72\xc5\xd4\x49\xef\x84\x97\x87\x34\xeb\x23\x69\x01\x69\x1d\ +\x95\xbc\xd6\xdf\x35\x90\x48\x65\x56\xe8\x7c\x41\xf8\x66\xc8\x98\ +\xdf\x51\xe0\x7f\x45\x75\xf1\xf9\xb3\xb5\xd1\xb1\x53\x1b\x7c\x72\ +\xcd\x9f\xe6\xe2\xff\x38\xe9\x49\xfd\x1e\x6a\x8e\x0f\xb5\x76\xa7\ +\xab\xcf\x27\xff\x86\x01\xe6\x4d\xad\x1e\xc6\x57\xd0\x9c\x1b\xf3\ +\x43\x4f\xff\x9d\xd4\x85\x0c\xe3\xeb\x14\xf6\xf8\x8c\xea\xe0\x04\ +\xe9\xb3\x2a\x9a\x53\x2d\x0f\xc6\xcf\x53\x96\xd0\x39\x19\x44\x18\ +\x25\x17\x44\x65\xd0\x30\x8a\xe7\x9e\x4c\x4b\xc8\xcc\xcf\x97\x5a\ +\x01\x75\x66\xb1\x4f\x9c\xe8\xd9\xc9\x93\x4e\xbb\xbd\x0c\x1d\x2a\ +\x18\x31\xe7\xa9\x02\xe4\xc5\xc6\x91\x39\x30\x85\x36\x0c\x32\x69\ +\xc4\x8c\xa4\x8b\x74\x6e\xc7\x32\x83\xca\x06\xb9\x03\x64\x97\x66\ +\xa0\x87\x43\xb3\x3d\xfd\x87\x1a\x3f\x7b\x42\x5e\x23\xcc\x85\x2a\ +\x4f\x41\x6d\x0e\xa8\x93\xbb\x34\x75\xfa\x6c\x0c\xba\xa4\x07\x92\ +\x6e\x52\x00\x95\x41\x7a\x91\xcb\x1a\xd1\x10\x29\x66\x9c\xb4\x27\ +\xcf\xd9\x85\x43\x53\x0a\x1e\xa0\x53\xc6\xf3\x2a\x37\x29\x20\x68\ +\x43\xb9\x93\x00\xbd\x85\x01\xaf\x2b\xbc\xf8\xa4\xf9\x1a\xd6\x66\ +\x67\xb6\x3b\xf6\xf0\x99\xae\x3d\x78\x7e\x64\xeb\xdb\x63\x3b\xc0\ +\xbc\xf3\xc6\xd5\x43\xdb\xbd\xb9\x63\xfb\x07\x3b\x98\x36\xec\xa3\ +\x1b\x63\x1e\xc5\x4c\xf8\x13\x16\xf2\xcd\x83\xfe\xe0\xd7\xdf\x8e\ +\xa0\x23\x27\xa1\xa6\x97\x42\x06\x91\x0a\x3e\xbd\x97\xe0\x5a\xe0\ +\x81\x0a\xfb\x65\xc4\xf1\x8d\x32\xf6\x09\xda\x3b\x16\xf3\x3a\x0e\ +\xd9\x07\xf2\xec\x91\xd7\x7f\xa5\xc5\x3c\x4a\xd3\x21\x8e\x6b\x7c\ +\x81\x66\x97\xe3\x86\x9b\xac\x15\x44\x4c\x85\xbf\xa3\x1c\x68\x4b\ +\xe9\x7d\x8e\xa3\x16\xf7\xb7\xc0\x31\x57\xe3\x18\xd3\xb4\xb0\xee\ +\x9d\xf6\xd0\xa6\xfb\xf6\xa9\x4f\x5f\xb2\x9b\x9f\x1c\xdb\xdb\x9f\ +\xf8\x66\xfb\xae\xef\xfa\xd3\xf6\xcc\x63\x6f\x44\x19\xf8\x33\x8f\ +\x4c\x39\x55\xed\xd5\xff\x95\x19\x69\x78\x8e\x8f\x86\xd2\x87\x94\ +\x2f\x41\x1b\xc6\xb2\x46\xe4\x2d\x48\x5a\xee\x42\xa7\x64\x25\x90\ +\x96\x4c\x6a\x04\x3f\xa7\x81\xc6\xe4\x28\x64\xc7\x43\xce\x2b\x2c\ +\x26\xa8\xf9\x45\x87\x8b\xb6\x2b\xdc\x8f\x58\x9d\xe5\x15\x56\xb8\ +\x77\xc0\x1c\xc4\x3f\x72\x56\x58\x61\x85\xd7\x1f\xee\xab\x8b\x3f\ +\xe7\x84\x5f\xb0\x4a\xdd\x39\xa3\x6a\xea\xdc\xc4\x77\x1a\x6e\x53\ +\xa7\x19\x3e\x0e\xcd\x76\x48\x7b\xc4\xc9\xbc\x0b\x11\x6b\x02\x2f\ +\xe1\x02\x68\x0f\x1b\xad\xb6\x41\x6b\xd5\xc0\x7c\x71\xc8\x1f\x01\ +\x62\x72\x08\x1f\x98\xe4\xf7\xda\xf6\xe3\x7f\xf5\xff\x66\xff\xe8\ +\xff\xf2\x9f\xda\x97\x3d\x72\xc2\xb6\x4e\xf4\xed\x14\xd6\x65\xfc\ +\xb3\x73\x3d\x55\xc1\x2c\xb8\x52\x64\x0c\x5f\xfa\x16\x22\xfc\xe9\ +\x86\x04\xfd\xe2\x28\x0b\x13\xb0\xdc\x88\x51\x56\x45\xc7\x85\x17\ +\x7d\x20\x2d\xcb\xa3\x38\x4a\xce\xf5\x1f\x18\x6d\x00\x75\x94\xd8\ +\x9f\xa4\xe2\x06\x00\x69\x26\xa4\x5e\x7e\x9a\x58\x7e\xf9\x02\xe9\ +\x01\x23\x5f\xb0\x38\xd7\x20\x17\x61\x7a\x8a\x23\xbe\xdd\xe8\x7c\ +\x68\xc1\xf0\xf0\x1b\xd5\x4c\x4d\x2f\x34\x88\x05\x50\x84\x35\x28\ +\x29\xf9\x44\xfe\x05\x2c\x47\x11\x1d\x4d\xeb\x60\xa9\xe6\x21\x1e\ +\xe9\x94\x6b\x66\x20\x12\x65\x63\xbb\xf3\xc6\xd0\x89\x0d\x5b\x7f\ +\xe8\xb4\xf5\x4e\x9d\xb0\x6e\xaf\xaf\x6f\x65\xb3\xde\x13\x2d\x3c\ +\xc7\x36\x19\x0e\x6d\xb6\x7f\x60\xd3\xfd\x5d\x1b\xef\x1e\xd8\x64\ +\xff\xd0\x66\x07\x58\x4c\x8e\x26\x36\x1d\xc2\xd3\x78\x62\x93\x11\ +\x6c\x47\xec\x3f\x70\xce\x1b\xea\x4c\x0b\xfd\x78\x7f\x6c\xa3\xc3\ +\x89\xcd\xf8\xdf\x60\xba\xd1\xce\x42\xa8\x00\x2a\x03\xdf\x8b\x50\ +\xd5\x43\x55\xaa\x1c\x84\x64\x38\xd7\xda\x50\x1b\x74\xac\x7d\x72\ +\xcd\xd6\xf9\xd3\x94\xfc\x0f\x35\xfe\xe4\x23\xfa\x97\xda\xca\xcd\ +\x0b\x54\x5f\xc6\x54\xe8\x9c\xc0\x0c\x87\xca\x90\x10\xc9\x20\xd2\ +\xc7\x42\x7a\x1e\x51\x90\x88\x4a\x0c\x3b\x27\xd9\x97\x10\xd6\x66\ +\x69\x43\x80\x66\xb7\x95\x4c\xe5\x44\x3b\x4d\xa7\x36\xbc\x7d\x68\ +\xfb\x57\xf6\x6c\xcc\x5d\x8b\xfd\x89\xda\xd1\x17\xda\x81\x52\x0e\ +\xaf\x87\xa8\x2c\x1f\x63\x4a\x8b\x4d\x8d\xac\x21\xfb\x8f\xdb\x57\ +\x5e\x9b\xe4\x8c\x3d\x02\xe2\x1a\x10\xc9\x2b\xc2\x63\x2e\xf8\xd9\ +\xc6\xac\xa0\x6f\x88\x41\xc2\x6b\x8a\x1b\x63\xbc\x57\xd8\x99\xe1\ +\x32\x04\xad\xeb\x0c\x36\xb1\xa9\xa2\x27\xaa\x92\x66\x11\x10\xe8\ +\x9a\xa3\x67\x9e\x47\xa6\x67\x3a\xf8\xe3\x93\x67\xfc\xe9\x4e\xde\ +\xb0\xe4\xb7\x93\xfd\x86\x60\x56\xcd\x43\xbf\xf6\x5b\xe8\xab\x3d\ +\xeb\xaf\xf5\x31\x64\xb5\xec\x60\x07\xed\x76\x00\x3d\xbb\x60\x6b\ +\x4a\x97\x2a\x33\xf3\x63\x36\xec\x96\xf3\x68\x04\xa2\x60\xe3\x2d\ +\x85\x72\x90\xd6\x75\x1c\xa0\xaf\x26\x92\x95\xc6\x10\x08\x18\x39\ +\x3c\xdd\x1c\x42\x50\xc4\x22\x1a\xa3\xa4\xbc\x24\x6c\x1b\x48\x54\ +\x60\xbf\x8e\x72\x0c\x29\x6d\x18\xff\x93\x96\x4f\xa7\xf1\x1a\xf3\ +\x9f\x7e\x64\x72\xc4\x7a\x73\xcc\x91\x3b\xaf\x03\xaf\x39\xd8\x48\ +\x06\x52\xbe\x40\x72\x13\x2d\x7d\x4b\x0f\xa9\xda\x48\x45\x20\xed\ +\xf2\x6b\xc3\xa9\x5d\xbe\x7d\xdb\xae\x4f\xfa\xf6\xf5\x7f\xf1\x2f\ +\xda\x97\xff\xef\xbe\xc7\x7a\xdd\x81\x36\xdc\xda\x74\xc8\x4a\x70\ +\x4c\x63\x66\xca\x87\x3e\x95\x11\x73\x29\x28\xb5\x56\xe3\x32\x76\ +\xb6\x10\x6c\x48\x6e\xca\xb3\x0d\x24\xaa\xe4\x4c\xa0\xf6\x66\x42\ +\x6f\x77\x1d\xf2\x93\xfa\xb0\x27\xe6\x4e\x04\xe8\x9a\x65\x1a\x02\ +\xb2\xba\x88\x1a\xff\x81\x85\x62\xdf\x7b\xd4\x65\xa9\xa1\xba\x38\ +\x79\xdf\xa2\x6e\xdb\x65\x75\xad\xdb\xe0\xe5\x6c\x6b\x14\xdb\xe3\ +\x1c\xbc\x02\xa8\x7f\xde\x65\x5a\x9a\xa2\xab\xfb\x23\x9f\x14\x78\ +\xba\x26\xe4\x08\x17\xd7\x18\x79\x16\xad\xf6\x4f\x51\x8c\x93\x1c\ +\x0f\xd3\x9e\x98\xa2\xaf\x63\x38\x45\xcc\xff\xdd\xd9\xb4\xcf\xbe\ +\xf8\x69\xfb\x5b\x3f\xf1\xff\xb1\x9f\xfb\xd5\xbf\x6d\x6f\x79\xc7\ +\x63\xf6\xd0\xe3\x03\x5c\x2e\x63\xb3\x31\x52\xe8\xcb\x4c\xba\xf2\ +\x95\x05\x29\xcf\x12\x1c\xc7\x55\xd0\xee\x15\x39\x90\x46\x5e\xbc\ +\xd4\xc4\x33\x05\x78\x5d\x5e\x21\xc9\xd0\x2f\x39\xe8\xa8\x97\x19\ +\x72\x60\x5a\x24\xce\xff\xf8\xd1\xbc\x8c\x79\x44\x0e\xbc\x8c\xf4\ +\x94\x72\x38\xa4\x9f\x72\x49\x47\x98\xa0\x4f\x26\x63\x79\x09\x96\ +\x59\x07\xea\xe2\x73\x2a\xaf\x07\xd3\xab\xa1\xd3\x11\xcd\xa9\x00\ +\xcd\xe8\x15\x23\x7d\x10\x49\x33\x26\xe8\x96\x05\x9b\xf3\x5b\x6a\ +\xc7\x29\x24\x47\x3d\x1b\xa1\xe9\xf7\xf1\x79\xb3\x3f\xea\xd8\x21\ +\xc6\xe4\x11\x7f\x6e\x97\xe7\x4c\x1f\x8f\x6e\xcd\x4d\x33\x3d\xfd\ +\xc2\xd7\x04\xa3\x25\x0b\x8b\x58\xff\xd9\x34\x69\xd9\x18\x69\x30\ +\xad\xb2\xf1\x84\xe7\x18\x7d\x80\x3f\x25\xa9\x7a\x32\x35\xcf\xa6\ +\xa2\x52\x1e\x9d\x2b\xc9\xa5\x01\x42\x1e\x6c\x25\xad\xda\x9c\xf0\ +\xf3\x27\xb7\xee\x08\x6f\x95\x4a\x72\xfa\xe3\xbc\xfc\xd1\xc7\xfb\ +\x76\xfa\x14\xcf\x9d\x34\xb2\x56\xc8\xb4\x9e\x18\x68\x72\x9f\x07\ +\x3c\x16\x23\x5a\x38\x9d\xb6\x7e\x0e\x71\x54\x89\x8b\x28\x92\x69\ +\x33\xa1\x76\x41\x46\x7c\x95\xa8\x82\x4b\xdd\x0b\x4a\x6d\xb7\x77\ +\x27\x76\xe9\xb2\xd9\xee\xc1\x58\x6b\x8c\x48\x5c\x30\xc7\x15\x86\ +\x75\x4d\x16\xa1\x36\xb2\x93\xf6\x36\x0a\x6e\x2e\x26\x44\xd7\x02\ +\x80\xa5\x61\xff\x50\xd9\xa0\x6b\xd4\x6c\x9f\x20\x05\x58\x14\x1e\ +\x04\xea\x4e\xbd\xd2\x49\x35\x67\x1c\x80\x2c\xc4\x8d\xb6\x91\x79\ +\xdc\x18\xe0\x2a\xc2\x81\xb6\x41\xe3\xb7\x31\x46\x0c\xfa\x3d\x6d\ +\x0a\x9f\x39\x33\xb3\x93\x9b\x23\xf0\x9c\x39\xa1\xff\x61\x0c\x99\ +\x8c\xd1\x71\xf5\xa4\x39\x26\x13\xcc\x9f\xed\xa0\x93\x46\x34\x7d\ +\x4e\xfd\xa2\xae\x48\x93\xdd\x1c\x68\x4d\x59\xa6\x12\xe6\x85\x1e\ +\xa9\x03\x62\xae\x27\x09\x49\xf6\x55\x1c\x1a\x53\xc2\xf0\x38\xdc\ +\x41\xed\x45\x44\x00\x1b\x5e\x52\x7a\x2a\x4d\x07\xa7\x44\x68\x15\ +\x8d\x31\x6e\xe8\x91\x12\xcc\x55\x4d\xe9\xf1\xd6\xf7\x7f\x42\xce\ +\x32\x31\x9d\xe6\xb3\x29\x04\x58\x66\x6f\x2e\x2f\xb5\xeb\xc1\xa1\ +\x1d\x77\x0f\x76\xec\x53\x2f\x3d\x6f\xb7\x3f\xde\xb7\xaf\x78\xeb\ +\xef\xb4\xdf\xf7\x9d\x7f\xd4\x9e\x78\xe8\x0d\x28\xc7\x48\x63\x27\ +\xcb\xc2\x66\xa0\x83\x92\x15\xf3\x50\x7a\x32\x90\xfa\x5b\x65\xd1\ +\xf0\xa2\xfe\x42\x82\x2d\x87\x98\x6d\x86\xf4\x52\xe1\xf0\x40\x03\ +\x78\xaa\x43\x98\xad\xea\xa1\x50\x74\x00\x1d\xcc\x01\x72\xe6\x43\ +\xb5\x3b\x01\x8e\x18\x01\xd4\x51\x9e\x36\x89\xb4\x5d\x94\xaf\x70\ +\x3f\x63\x75\xb6\x57\x58\xe1\xde\x61\xb5\xa1\xb6\xc2\x0a\xaf\x63\ +\xdc\x57\x17\xff\x17\xac\x32\x39\x21\xbd\x53\x86\x39\x21\x4e\x84\ +\xed\x91\x24\x0b\x02\x0e\xc7\x79\x10\xca\xa6\xe2\x19\xd7\x32\x8a\ +\x43\x25\xe4\xe2\x96\x77\x4c\x04\xc4\x9c\x60\x6b\x92\x8d\x43\x72\ +\x18\x4c\xb9\x10\x1b\xc3\x1c\x93\xf9\xde\xc8\x7e\xea\x6f\xfc\x8f\ +\xf6\x81\xef\xff\x0f\xec\x1d\xdb\x5d\x7b\xe0\x54\xcf\x36\xb0\x60\ +\xe3\x86\x0d\xbf\xa5\xcb\x6c\x78\xd3\xdc\x81\x7a\xc1\x57\x6e\xac\ +\xf1\x46\x93\xca\xa3\x7c\xf0\xe6\x0d\x9a\x30\x85\x85\xdf\xc4\xa1\ +\x09\x02\xa9\x98\xbf\xca\x83\xb7\x68\x19\xfa\xa6\x1a\xfd\xf1\x0e\ +\x7b\x07\xfe\x79\xb3\x5f\x69\x98\x3e\x0e\xe5\xa7\x84\x5e\x0d\xfa\ +\x89\x7c\xe9\xd7\x9b\xc6\xf9\x39\xa0\x4d\x74\xc3\x84\x0b\x34\xbc\ +\xb8\x58\xe3\xea\x2d\x37\xd0\x28\xe7\xea\xcb\x9b\x54\x4e\x24\xd7\ +\x1b\xc7\x1c\x8a\x2e\x16\x45\x25\x2f\xe5\xec\x8b\xb5\xb4\x09\x2c\ +\xba\x20\x58\x8e\x92\x34\xa0\xb4\x0b\x90\x3b\xb4\x31\x37\x25\xda\ +\x27\x37\xac\x7f\x6e\xdb\xfa\xa7\x36\xad\x3d\x18\x40\x8e\x46\x43\ +\x22\xde\x00\x9a\x8c\xf9\xbf\x5e\x07\x36\x3d\x3c\x34\x1b\x1d\x22\ +\xc6\x22\x90\xff\x99\x34\x9c\x28\xe6\x7f\x7e\x4d\xb8\xb1\x76\x38\ +\xb1\xf1\x08\x75\x1f\x43\xae\x27\x66\xb8\x8a\x45\x9b\x40\x36\x1e\ +\x4e\x6d\xba\xeb\x4f\x5f\x4d\xc7\x28\xb5\xda\x84\xed\x14\x35\x40\ +\xc4\xf2\x90\x5b\x8c\x89\x22\x03\xa1\x4d\x26\x1c\x33\x6e\xb8\x0c\ +\xda\xd6\x39\xb5\x6e\x83\xd3\x28\xbf\x36\xd4\xd8\x11\xfc\x7c\x66\ +\x5a\x27\xd8\x2a\x95\x4f\x9d\x2f\xf0\xc8\xbf\xd8\x11\x0b\x27\x65\ +\x9e\x4b\x94\xd2\x38\x99\x80\x48\xe7\x0c\x81\x17\xd1\x6d\x64\x52\ +\xd9\x49\x87\x98\xe7\x84\x34\x4b\xc0\x85\xfe\x70\x67\x68\xfb\x57\ +\x76\x6d\x72\x6d\x68\xb3\xbd\x31\x14\xd4\xc8\x92\xa9\x3c\x12\x0a\ +\x01\x31\xe8\x65\x72\x42\x85\x81\x0f\x9d\x7c\xc4\x8c\x44\x39\xa2\ +\x57\x29\x8c\x52\x82\x6d\xfc\xe9\x72\x90\x12\x6d\x89\xeb\xa2\xd3\ +\xe5\xff\x96\x75\xac\xd7\xef\xd9\x0c\xd7\x2c\x37\xcc\xb9\xa1\xc6\ +\xa7\xce\xb8\x99\xc6\x2e\xe3\x4f\x90\x21\x09\x13\x23\xd6\xf9\xd5\ +\x9b\x01\xcb\xc2\x83\xde\x79\x03\xc1\xcf\x93\x17\x80\xe7\x0d\x32\ +\x5e\xfb\x3c\x7f\xca\x5c\x59\xcb\x56\xe9\xb3\x8c\x80\x27\xe1\x4d\ +\x18\x1f\x2b\xf8\x5f\x18\x13\xf4\x2b\xfd\xc4\x4e\x58\xb3\x02\xf0\ +\x0a\x1a\x12\x95\x81\xf0\x70\x0e\x70\x96\x52\xc6\x3c\x6f\x6a\x33\ +\x31\x12\x2b\xa2\x1f\x15\x97\xce\x58\x4e\x0a\xbd\x80\x0e\xea\x82\ +\x14\x42\x57\x64\x22\x1a\x0b\x52\x9e\x45\xb4\x09\xf3\xd5\xf8\x01\ +\x26\x8e\x09\x0e\x6e\xa4\xe9\x3a\xe2\x35\x85\x3a\xea\xc9\xb1\xdc\ +\x50\x03\xd9\x62\x5f\xe6\x5d\x16\xda\xd2\x0f\x4b\xca\xe4\x90\xd3\ +\x8e\x69\x65\xc7\x7c\x10\x13\xb8\x1a\x91\x1e\x0c\xed\x25\x8c\x56\ +\x03\x39\x9a\x4c\xe4\x8b\x37\xc4\x6f\x22\xef\x17\xaf\x5c\xb3\xdb\ +\xad\x0d\xfb\xfa\xff\xec\x2f\xd9\x57\x7e\xcf\x1f\x84\x41\x4f\xff\ +\x99\xc6\xf3\xde\x66\xde\x4c\x1d\x7e\xf4\xd3\x93\x20\x45\xcb\x6b\ +\x03\x95\x89\x02\xb4\x8b\xda\x51\xda\xb4\x90\x20\x8e\x4a\xee\x86\ +\x24\xc4\xea\x86\xab\xd4\x08\xe8\x4c\x34\x35\x0a\x5c\x5e\x10\x7a\ +\xa1\xa2\x55\x08\x2f\x77\x0d\xf5\x39\xc0\xdb\xf0\x55\x44\x29\xd3\ +\xeb\x14\xd9\xbe\x75\x3b\x1c\x39\x19\x38\x6a\x3b\xd2\x8b\xed\x56\ +\xcb\x64\x7b\x44\x00\xd4\x8e\xee\x12\x99\xa4\x76\x77\x8c\x1b\xff\ +\xfc\xc2\x51\x6c\x41\x20\xf6\xde\xc5\x23\xa2\x62\x87\x83\x76\xe1\ +\x4f\x11\xfb\x9d\xee\xd8\x82\x47\xa4\x31\x11\xd0\x97\x1f\x44\xf0\ +\x5a\x9a\x62\x68\xed\xda\xf5\xab\x37\xec\x03\xff\xf4\x6f\xd9\x8f\ +\xfc\xec\xdf\xb0\xa7\xde\xb0\x6d\x4f\xbf\x61\x1d\xe3\x32\x72\xd3\ +\x25\xdb\x81\x1d\xaf\x0f\xa4\x47\x3e\x4c\x95\x37\x58\x1d\x94\x7b\ +\x1e\x8a\x95\x3b\xe1\xb1\xf2\xe6\x0b\xe5\x61\xf9\x45\x87\x56\x4f\ +\x95\x73\x5c\x77\x4b\x7d\x36\x68\x9c\x87\x9c\x43\x37\xf3\xa0\x35\ +\xc7\x5b\x1a\xd1\x5c\x4f\xa8\xa3\x1c\x9c\x06\x52\xc0\xea\x50\x2e\ +\x83\x0a\xe4\x54\x46\x11\xa4\x90\x06\xed\xa1\xa7\x72\x39\xbe\x48\ +\xc9\x12\xc5\xe0\x05\x5e\x32\xd8\xe7\xe7\x8b\x92\x16\x47\x40\x4d\ +\x2f\x82\x3a\x22\x7c\x08\x0b\xe9\x54\xf3\x39\x1f\x6e\x48\x96\x59\ +\x52\xcf\x8d\x35\x4a\xa6\x98\xef\x4e\xb8\x59\x66\x23\xf0\xdc\x98\ +\xea\x58\x7f\x0d\x7a\xcc\x37\xf5\xdf\xb2\x68\x00\x0e\xb5\xfe\xc4\ +\x21\x37\x30\xf8\x74\x1a\x3e\xaf\x30\x36\x1f\x4e\x46\x76\x63\xb7\ +\x65\x37\x6e\xb5\xec\xd6\x4e\xdb\xf6\xf6\x86\x36\xc2\xd8\xda\x6b\ +\x73\x83\x2d\xc6\xf1\x16\xd2\xb0\x72\x51\x41\xd1\xcc\x89\x8d\x19\ +\xe5\xcb\x3e\x43\x14\x8a\x6d\x1e\x64\x41\x11\xa8\x26\xe2\x99\x94\ +\xe7\x73\x30\xe8\xda\x93\xcf\xb4\x6c\x63\x0d\xe7\xcd\x8d\xd2\xfd\ +\x12\xb8\x85\x87\xb4\x62\x9f\x01\x97\x27\x46\xa0\x24\x75\xde\x9f\ +\xe4\x6f\xc1\x79\x6d\xad\x77\xed\x42\x0d\x10\x74\x11\x36\xa0\x44\ +\xe9\x14\xb6\x6c\x77\x6f\x62\x97\x2e\xb5\x6d\xe7\x60\xe4\x1b\x6a\ +\xf2\x55\x1c\x08\x29\x4a\x29\xcb\xe6\x31\x03\x84\x70\x97\x9f\xff\ +\xae\xe3\x11\x65\x0f\x49\x01\x6d\xea\x62\xcd\x29\x1d\xea\xa2\x92\ +\xd7\x86\xf3\x89\x0a\x17\xe7\xd1\x73\x21\xed\x0e\xe7\xdc\x8a\x09\ +\x49\xb6\xb7\x67\xe0\x11\x0a\xa4\x9f\x18\x95\x00\xf3\x36\x9c\xdc\ +\x01\xe6\x6d\x9b\x1b\x2d\x3b\x77\xaa\x63\x27\x4e\x8e\xc0\x33\xab\ +\x19\xe6\xeb\x9c\xdf\xd3\x10\xad\xd7\xf1\x5c\x95\xb2\x54\xaa\x29\ +\x83\x50\x91\xae\x03\x96\xaa\xe7\x0c\xa3\x5a\xe9\x93\xf0\xf3\x25\ +\x19\x94\x1c\x4b\xf2\x8b\x94\xb4\x75\x9d\xab\x17\xfd\x87\xa6\x22\ +\xe6\x11\x4d\x11\x40\x9d\x30\x86\x4c\x31\x9e\x68\x13\x5b\xe3\x89\ +\xd3\x65\x6e\xea\x11\x2d\x9d\x10\x0d\xf7\x50\x44\x2b\x42\xa0\x42\ +\x21\xa6\x15\x08\x8c\xc9\x31\xd3\x89\x72\x78\xb9\x95\x0e\x2f\x5e\ +\xdf\xa4\x98\xc7\xcd\xdd\x5b\xf6\xe9\x4f\x5e\xb1\xd1\xd5\xa1\x7d\ +\xcd\x97\xfe\xdb\xf6\x9d\xbf\xeb\x0f\xdb\xa3\x67\x1e\xb7\xb1\xe6\ +\x4e\x2c\x87\x2c\xe9\x04\xb4\xd7\x3c\x3c\x0b\x72\x1f\x21\x15\x2a\ +\x8a\x32\x22\xc1\x37\xcf\x37\xc2\x72\xce\x1a\xe4\xb8\xe0\x36\x1e\ +\x3b\x32\x9f\x88\xa5\x73\xf9\x5c\xe6\x8b\x90\x91\x5b\x3a\xd2\x98\ +\xb2\xc5\x84\x8b\x76\x35\xbf\xc2\xfd\x8e\xd5\xd9\x5e\x61\x85\x7b\ +\x87\xd5\x86\xda\x0a\x2b\xbc\x8e\x71\xdf\x5d\xfc\x39\x27\x7c\xd5\ +\x2a\xf6\x72\x8e\x9b\x29\x8a\x53\x0b\xf6\x4b\x93\x43\x48\x39\x67\ +\xe0\x9c\xe3\x6b\x48\x0e\x19\x03\x3a\xc2\xc4\x5e\x7a\xca\x34\xbb\ +\x27\x8d\x23\xed\x95\x19\x95\x59\xf9\xa6\x1c\xa2\xb9\x1a\xaf\xe3\ +\xb8\xc3\x32\x9b\x8d\xac\xc5\x27\x27\x36\x36\xec\x9f\x7d\xe0\xef\ +\xda\xff\xfa\xc7\xff\x9c\xbd\xb1\x37\xb4\x93\x27\xfb\x76\x86\x0b\ +\x28\x2c\xea\xda\x7e\xb7\xa5\xdc\xcc\x14\xcd\xc5\x01\x78\x6d\xa0\ +\x89\x66\x2c\xd2\xf5\x62\x44\x7a\x3a\xda\xe0\xf0\x9f\xda\x71\x99\ +\x6c\x79\x24\x4d\x39\xef\x80\xc4\x86\x9a\x9e\xa2\x61\x5a\xa4\x49\ +\x5a\x8b\x0f\xfa\xa2\x9c\xb1\x78\x92\xa0\x45\xf0\xed\x71\x81\x68\ +\x56\x96\x4b\x22\xbc\xd0\x66\xfc\xd8\x63\xb3\xe9\x86\x36\xb5\xbc\ +\xf9\x8d\x57\x3e\xf1\xa1\x34\xd9\xae\x34\xc1\x71\x64\x2d\x44\x39\ +\x21\x79\x28\x6b\x1b\xad\xa8\x1c\x0d\xb5\x80\x63\x6c\xdc\x8d\x6a\ +\x82\xe6\xc1\x82\xbb\xd7\xb5\xce\xfa\xc0\x7a\x27\x36\xac\x7f\x66\ +\x53\x3f\xff\x68\x7d\xfe\x4e\x1f\xd2\xb1\x42\x87\x63\x1b\x1e\xec\ +\xdb\x64\x32\xd4\x7f\xb7\xb4\x27\x58\x30\x4e\x26\xa8\x17\x56\xe2\ +\x23\xc6\xf0\xce\x0d\x35\x1d\x58\x20\x72\x73\x83\x1b\x68\xdc\x88\ +\xe3\x13\x6b\xe8\x03\xfc\x9f\x25\xe3\xb7\x86\xf7\x60\x73\x30\x81\ +\x1e\xed\x41\x1f\x6c\x0f\xb4\x85\x36\x29\x50\x22\x0f\xbd\xbc\x1e\ +\x93\x4a\x78\x99\xb5\xa1\x86\x73\xc4\x0d\xb5\xd6\x7a\xdb\xba\x28\ +\xf3\xfa\xc9\x0d\xeb\xae\xf7\x74\xf3\x40\x37\x28\xf5\x46\xa0\xe4\ +\xf3\x5e\xc8\xe4\x39\x72\x06\x91\x1c\x37\x56\x45\x24\x2e\x41\x49\ +\x8d\xd0\x4a\xec\x79\xb1\x68\x24\xbd\xef\xe4\x8d\x92\x08\x3d\x2a\ +\xe6\xe5\x40\xbe\xec\x1b\xa3\xdd\x91\x3f\xa1\x76\xf5\xa0\xda\x50\ +\x4b\xc0\xb0\x30\x49\x34\x5a\x47\xc3\x8b\x92\x6f\xc6\xde\x37\xe5\ +\x2f\x0b\x11\x60\x1b\x51\x2b\x29\x3a\x21\x9b\x4e\xf6\x38\x70\xc9\ +\xa0\x5c\x38\x7f\xdd\x96\x6d\x6f\x6f\x5a\x6f\xb3\x6f\xdd\x0d\x7f\ +\x0a\x50\x0f\x22\x76\x70\x5e\xb9\x09\xc6\x9b\x37\x4c\x87\xc4\x74\ +\x5f\xfe\x23\xcd\x4b\x51\x90\x9c\x8a\x44\x22\x83\x1c\x7b\xc8\xc9\ +\x41\xa8\x24\x6c\xca\xcc\x3a\x88\x92\x03\x2f\x1f\x6f\x22\xf0\x66\ +\x25\xcb\x4e\x1d\xdb\x51\x37\x71\xa1\x97\x2f\xa2\x71\x5f\x50\x78\ +\x98\x24\x2d\xeb\xc8\xc0\x37\x21\x9d\xf5\xec\xdc\x3f\xc5\xe8\x75\ +\x0c\x42\xeb\x10\xd5\xb0\x00\x98\xe0\x3d\x6a\x78\xc2\x49\xe6\xe3\ +\x3e\xb9\x29\xa6\x1b\xe0\x71\x3d\x68\xac\x60\x3d\x28\xe7\xcd\x1f\ +\x5c\x53\x7e\x40\x4c\x1b\x6e\x4a\x4b\x8f\xa2\xf0\x5c\xa4\x23\xb9\ +\x9d\xc2\x0f\xaf\x51\x29\x64\xa7\xa1\x80\x87\xd4\xb8\x36\x61\xa3\ +\xe9\x39\xf5\xd9\xfe\x64\x59\x26\x24\xe3\x71\x15\xa2\x4b\xd7\xae\ +\xd9\xb5\xce\x96\x7d\xf3\x0f\xfc\x65\xfb\xaa\x3f\xfc\x07\x70\x0d\ +\x4f\x95\x35\x2d\xd9\xce\x59\x5e\xe6\xac\x3a\xa4\x5f\x80\x61\x55\ +\xe5\x22\xf0\x73\xac\x14\x6a\x4b\x7d\x31\x82\x6e\x38\x46\xcb\x30\ +\xf4\x3a\x98\xcc\xcf\xa5\xbc\x4a\x4c\x61\xa3\xd7\x21\x9e\x06\x00\ +\xe5\x05\x0b\x72\xd2\xa8\x1b\xe1\xa5\x04\x64\xef\x75\x20\x2d\x79\ +\x51\x26\x91\x4e\x16\x41\xfd\x71\xba\x63\xf0\x0a\xcd\xef\x2b\x94\ +\x76\x05\xb2\x1d\x6a\x59\x82\xba\x45\xf9\xa2\x7d\xdd\x8e\x47\x7c\ +\x2c\x1a\x2d\xcb\xe4\x18\xb0\x3f\xb0\x0f\x33\x49\x9d\xc7\x02\x70\ +\xa5\x84\x5b\xf7\x5d\xf8\x78\x3a\xa9\xe9\x68\xc1\x2b\x86\x15\xaf\ +\x17\x0d\xae\x38\x18\xa3\xef\x4a\x85\xbc\x38\xca\x68\xfa\x04\x9e\ +\x59\xeb\x92\xc6\xc5\x41\x97\xf8\x54\xc5\xf4\xa5\x63\xbb\x3b\x23\ +\xfb\xf1\x9f\xfb\x5f\xec\x87\x7e\xf2\xbf\xb3\x53\x0f\x76\xed\xa9\ +\x37\x9f\xb4\x13\x5d\x7c\x7e\xf0\x0b\x05\xfe\x67\x86\x72\xa6\xeb\ +\x98\x05\x02\x9f\x97\x39\xfd\x73\xef\x8e\xfe\x74\x5d\xd1\x54\xd6\ +\xa4\x28\xe1\x17\x05\xa0\x24\x8f\xeb\x52\xc3\x1c\xb9\xb8\xa6\xf2\ +\x12\x92\x06\x4e\xf8\x79\xc1\x69\x95\xab\x11\x50\xc0\x37\x5c\x74\ +\xa0\xe0\x5c\x4a\x3e\x60\x90\x69\xfd\x52\x25\xd5\x40\x72\x27\x01\ +\xa7\xd8\x06\x3a\x34\xae\x44\xbb\x41\xa7\xf1\x05\x09\xa4\x83\x9d\ +\x3c\x91\x61\xa4\x30\x30\xc7\xcc\x23\x73\x57\xfb\x8a\x60\xe0\x0c\ +\xcb\xa9\x2c\xe6\x74\x09\x2a\x9d\x62\x44\x13\xd6\x85\xb1\x97\x0e\ +\xf4\x8c\x3f\x8f\xed\xff\xbd\xb6\x36\xe8\x58\x7f\x80\x66\x61\x5b\ +\x58\x07\xcd\xe3\x3f\x83\xcd\xd1\x9e\x29\x26\x9c\x23\x63\x0e\xba\ +\x3f\x1a\xdb\xad\xdd\xb6\x5d\xb9\x31\xb2\x6b\x57\x67\x76\xf3\xf6\ +\xd8\x0e\x0f\x46\xf8\xe8\x85\x9e\x13\xa8\xc8\x93\x9b\x72\x2a\x96\ +\x78\xfa\xf4\x52\x38\xd5\x9c\xd1\x72\xbe\x14\x06\x24\x83\x7d\x71\ +\x00\xfb\x30\xd0\xcf\x59\x6e\x76\xec\xc9\xa7\x51\x4a\x94\x27\xe5\ +\x91\xed\x1d\x91\xa5\xf0\x20\x73\x8c\xbe\x2f\xb8\x8c\xe1\x32\x7f\ +\xf3\xf2\x48\x1f\xc2\xd4\x79\x9f\x24\x42\xbf\x04\xac\xf3\xde\xee\ +\xcc\x2e\x5f\x9e\xd9\x0e\xe6\x99\x63\x6d\x6a\x10\x8d\xf7\xe8\x26\ +\x73\xd0\x35\x12\xf0\xcf\x2e\xd4\x07\x51\x50\x8a\x2b\x8b\x8a\x76\ +\x2c\xf2\x09\xb9\x92\x12\x65\x56\xb1\xbd\xec\x45\x1e\xe7\x43\x52\ +\x0a\x9d\x28\x72\x01\xf5\xd6\x75\x0b\x51\x58\x02\xa4\x20\x64\xe7\ +\x0d\x33\x1a\x65\x99\xd9\x43\xd0\xfb\xd4\x1e\xfc\x2f\xbc\xcd\xcd\ +\x99\x9d\xdc\xea\xd8\xd6\xc6\xd8\xd6\xd6\x26\xd0\x77\x30\x37\xc0\ +\xdc\x0d\xf3\x78\xd5\x46\x9b\x6f\x8c\x11\x72\x2c\xc2\xab\x9c\xd3\ +\x1a\x47\x04\x5e\x1e\x89\xef\x60\xac\xea\xc8\xb9\x47\x99\x8e\xe5\ +\xf3\x2f\x4f\xba\x8d\xbe\x4c\x15\xba\x25\x0e\x85\xe2\x82\x28\x44\ +\x03\xb5\x2d\xe5\x8c\xc1\xb0\x0b\x68\xf3\x1a\xbc\xcf\xa5\xbc\x9d\ +\x38\x1e\xea\x5c\xfb\xdb\xe9\x48\xc6\xf6\x96\x4c\x61\x40\x32\x6f\ +\x15\xda\xfa\x2b\x80\xc2\x2b\x4b\x04\xfa\x02\x03\x16\xbd\xad\x56\ +\x17\xfd\xef\xc0\x6e\xdc\xd8\xb1\x8f\x7f\xf8\x45\x9b\xdd\x38\x69\ +\xef\xfb\x8a\xdf\x63\xbf\xf7\x77\x7f\x8f\x3d\x70\xf2\x51\x1b\xe2\ +\x04\x94\x2f\x14\xe2\xad\xfa\x93\x8c\xb2\x2b\x27\xca\xe8\x5e\xc2\ +\x46\x87\xb7\xf4\x02\x13\x92\xd3\x1c\x0a\xb4\x94\xa1\x23\x40\xd6\ +\xb6\xa4\xbc\x1e\x69\xd3\xd8\x32\x99\xfb\x06\x22\xcf\x23\x90\xb8\ +\xd6\x31\x05\x41\x59\xd2\x44\xcd\x1f\xe3\x6b\x85\xfb\x1a\xab\xb3\ +\xbe\xc2\x0a\xf7\x0e\xab\x0d\xb5\x15\x56\x78\x1d\xe3\xbe\xba\xf8\ +\x8f\x9b\x2b\xde\x53\xdc\xc9\xe9\xfc\xf4\xc4\xb9\x25\xf6\xb5\x88\ +\xc3\xaf\xca\x8a\x38\xe5\xbc\xcb\xa2\x38\x02\xc5\x90\xa5\x5e\x34\ +\xe5\x3c\x90\x58\xf6\x45\xe9\x98\xab\x3f\x08\xad\x06\xda\x11\x27\ +\x1d\xb7\x62\xb4\x68\x00\xbb\x36\xb0\x5f\xfa\xe0\x8f\xda\xdf\xff\ +\x13\x7f\xc1\xb6\xae\x5d\xb2\x87\xce\x0c\xec\xdc\x00\x0b\xbe\x36\ +\xff\x43\xa2\xa3\x05\x8f\x16\x05\x9e\x4a\x7e\xfc\x29\x32\x2e\xb8\ +\xdc\x2f\x23\x10\xc1\xa7\x7d\x2c\x3c\xa8\x27\xaf\x34\x10\xf0\x66\ +\x0f\x63\xbc\x95\x96\xc5\x51\x11\x21\xe0\x13\x6b\xdc\x8c\x81\xbe\ +\xd9\x58\x0b\x5a\xbe\x43\x46\xef\x21\xd3\xe6\x1e\xd3\xb3\xde\x8a\ +\xa9\x0f\x48\xd8\xf0\xde\x7c\x0c\xb8\x70\xc3\xc2\x8b\x37\xc4\x43\ +\xa6\x45\x14\xef\x68\x29\x09\x03\x82\xca\x4c\xef\x32\x85\xb2\x21\ +\x51\xe9\x58\x3e\x42\x91\xdb\x2e\xa2\x29\x5a\xa3\x2f\xa2\x39\x0a\ +\x75\x66\xdd\x3a\x6d\xeb\x75\x7b\xd6\x1d\xf4\xad\xbb\xb9\x66\xbd\ +\xed\x35\x6b\x0d\x7a\xfe\xa5\x79\x9e\x98\xc3\x91\x0d\x47\x43\xf4\ +\x8c\x31\x5e\x58\x90\xb3\x2d\x51\x97\x09\xfb\x06\x37\x0b\x27\x53\ +\x6b\xd1\x2e\x0e\xdd\xf8\xe7\xe6\x1a\x37\xd6\xb8\xa9\x96\x4f\xd5\ +\x0c\x91\x06\xbe\x26\xfc\x9f\x30\x3e\xcd\xb6\x8f\x45\xe5\x10\x69\ +\x79\x87\x9e\xdd\x6c\xa1\x3e\xce\xb1\xcd\xbc\xd4\x3a\xcf\x78\x69\ +\x83\xa5\x83\x3e\xc3\xf3\xb8\xd5\xb3\xf5\x73\x1b\x36\xd8\x5a\xb7\ +\x0e\xff\x6b\x8b\x85\xd3\xb9\x0b\x20\xed\x11\xaf\x70\xe4\xe7\xc7\ +\x35\x11\x01\x8d\x25\x29\xe5\x29\x8e\x08\x4e\x8d\x8b\xb8\xca\x42\ +\x00\x2f\x51\x9c\x9f\x0c\x75\x23\x48\x32\x5f\xc6\xf2\x9c\x17\x3b\ +\x37\x82\x86\x75\x9c\xd9\x78\x6f\x6c\x7b\x57\x76\x9b\x0d\x35\xb4\ +\x19\xeb\x9a\x65\x11\x31\x87\x5a\xd0\xd0\xa2\xc2\x77\x0d\x55\x39\ +\xe4\x2c\x0b\xc9\x34\x53\x3f\xc7\x8b\xa5\xe3\x4d\x95\x41\x9f\xff\ +\x9d\x67\xb6\x7e\x62\xd3\x36\x4f\xae\xd9\xe0\xa1\x93\xd6\xde\x1a\ +\xf8\xe6\xd5\x64\x64\xfb\xb7\xf6\xec\x70\x32\xc4\xb9\x47\x7f\x40\ +\x9d\xf8\xb4\x29\x14\xc5\xd7\x5c\xdf\x8e\x30\xf3\x72\x89\x73\x29\ +\x23\xc1\x76\x28\x52\x11\xb5\xa5\x77\x91\xe2\x36\x20\x9e\xe7\x13\ +\x56\xda\x48\x23\x4b\x39\x53\x91\x67\x3b\x47\x1a\x97\x17\xb6\x71\ +\x0c\x89\xd2\xd3\x19\x7d\x21\x92\x2a\xf4\xf2\x45\x9a\x51\x39\x6f\ +\x0a\x22\x0c\x14\x26\x6d\x22\x62\xc0\xf6\x09\x99\x32\x60\x84\x83\ +\x25\xd7\x4d\x2c\x5e\x4b\x94\xeb\x86\x0f\xdb\x93\xf4\x54\xd7\x4d\ +\xd9\x4c\x63\xe3\x8f\xe1\x44\x3a\x44\x6c\x10\xd1\xca\xa0\xc8\x45\ +\xf2\x5a\xf4\xbb\x46\x71\x40\xce\x02\xcc\x70\x5d\x66\x7a\xc6\x20\ +\x18\xa9\xea\x74\x88\xfa\x0d\x71\x4d\x5e\xc7\xf8\x78\xe1\x33\x17\ +\x6c\xfc\xd8\x53\xf6\xde\xbf\xf4\x1f\xda\x97\xff\x9e\x6f\xb7\xd6\ +\x1e\x46\x00\x5e\xdf\xed\x89\x36\xcf\x98\x2b\x63\xfa\x69\x71\x8c\ +\x53\x5d\x98\x0f\x7c\x45\x5d\x65\x43\xdf\xce\xaa\xfd\xd8\x3f\xf8\ +\x73\x52\x32\x41\xa0\x36\x25\xa1\x7e\x43\x21\x21\x45\x73\xa4\x08\ +\x2f\xe5\x4c\x3f\x3a\xf9\xd4\x49\xe1\x28\xb6\x29\x20\x42\x9f\x32\ +\x15\xce\x4b\xe4\xb5\x00\xe0\x4b\x14\x6c\xa4\xc9\x02\x37\x04\x90\ +\xe9\x22\xcd\xe7\x83\x7b\xe0\xe2\x35\x8b\x65\x4d\x58\x37\x33\x91\ +\x4d\x4d\xd4\xb6\xc5\x2e\x9c\xa4\x6e\x31\x7d\xea\x4b\x4c\x1c\x31\ +\x6a\x50\xf2\x88\x34\x34\x4d\xf3\x3a\x79\xd0\xec\xeb\xfe\x0e\xa3\ +\xec\xf8\xea\x93\x54\x38\xef\xfa\x3c\x18\x45\x1c\x3c\xbb\xa4\x28\ +\x04\xb2\x05\xcf\x2d\x28\xf5\xc2\xe8\xaf\x8a\xc2\x90\x9b\x6a\x7a\ +\x72\x69\xda\xb5\x9f\xfe\xa5\x9f\xb0\xff\xf7\x0f\xff\x37\xd6\x6b\ +\xdd\xb0\x67\xdf\x71\xda\x4e\x9d\xe9\xe2\xda\x1d\x49\xa7\x6b\x89\ +\x79\x21\x1d\xaf\x77\xba\x00\x87\x00\x14\x64\xcc\x4b\x45\x8d\x0a\ +\x79\xa8\xa9\x0d\x35\x7a\xc9\x05\x02\xda\x69\xfe\xc4\x98\x2f\xb9\ +\x60\x62\x6e\x0e\x31\xab\xa9\xbe\xc8\x42\xf8\x17\x19\x28\x43\xcc\ +\xb4\x88\xa9\xd2\x55\x4b\x85\xe4\xe9\x0b\x68\x82\x00\xfd\x92\x67\ +\xec\xd0\xd0\xc8\x18\x81\xbe\x5c\xa0\x36\xe4\x40\x47\x61\x6d\x09\ +\x14\xc6\x5b\x9e\xc5\x9c\xd3\xb3\x08\x41\xd6\x72\x94\x4a\x82\x22\ +\xa3\x1d\x99\x65\xc6\x04\x78\xa6\x91\xb8\x8c\x27\xce\xb3\xfd\x7c\ +\x38\xe7\x99\xe4\x7f\x7f\x9a\x9e\x58\x5b\x5b\x6f\x5b\xbf\xdf\x45\ +\x7b\x74\xa1\xf7\xff\x12\xa6\x7d\x97\x3f\x93\xdc\xc1\x3c\x08\xed\ +\x38\xc6\x18\xbf\xb7\xd3\xb2\xab\xb7\x87\x76\xf9\xea\xc4\xae\xdf\ +\x18\xd9\xee\xee\x04\x9f\xbb\x43\x4c\x69\xe1\x4f\x3b\xab\xe8\x1f\ +\x88\x78\xe3\xde\x4b\xd1\x9c\x35\xa2\xc4\x6c\xef\x40\x6a\x9c\xf0\ +\x52\xd2\x89\x4e\x09\x38\xfe\x1f\xe9\xe9\x33\x6d\x7b\xe4\xd1\x8e\ +\x7a\x1f\xe5\xb4\xba\x3b\xc8\x69\x95\x20\x09\x97\x87\xf6\xee\xfc\ +\xd1\xb8\x1a\x9f\x1d\xe1\x81\xe5\x65\x4c\x55\x55\xb7\x04\xeb\x7d\ +\x70\x60\xda\x50\xbb\x85\x36\x1b\x63\x6e\xe2\x9e\xc2\xd7\x7c\x24\ +\x38\x1d\xa1\xa2\x9a\x76\x24\x19\x9a\x2a\x6c\x62\xcf\x08\x39\xa1\ +\xec\xde\xa6\x0a\xc0\xb3\xbf\x62\xd6\x3c\xe2\x75\xc8\xfe\x81\x39\ +\x2a\xe6\xdb\xfa\x3f\x58\x26\x66\x9d\xf0\x59\xc8\x32\x7a\x7f\xc1\ +\x35\xd5\x66\x5f\xe0\x2f\x65\x70\xae\x4d\x7f\x3c\x4f\xf2\x28\x7b\ +\x1e\x3c\x47\xba\xae\xe8\x26\x2e\x10\xe6\x4b\xfb\x1e\xfa\xd3\xa0\ +\xdb\xb1\x35\xcc\xdf\xd6\x06\x13\xeb\xf5\x21\xe3\xcf\x68\x23\x1d\ +\xc7\x82\xe9\x38\x9f\x94\x74\x5f\x4c\xcc\x70\x11\x45\xa6\xf3\x71\ +\x3c\xd8\x56\xb4\x38\xe2\xc3\x0b\xec\x11\x63\xb6\x0f\x0a\xa9\x3a\ +\xb1\x06\x28\x7b\xf3\xe4\x2b\xfb\x70\x8d\x65\x25\x5a\xc0\x42\xb1\ +\x74\xce\x20\x53\x84\x26\x99\xe0\x5a\xe2\x53\x8a\xbc\x4a\xb8\x99\ +\xa6\x79\x95\x68\xda\x92\x87\x1d\x65\xf4\x03\x5a\x39\x36\x81\x42\ +\xf9\x14\x1a\x19\xe7\x55\xa5\x49\x10\xab\x86\xcc\x57\x42\xe6\xd6\ +\xd1\x4f\xb8\x5e\xba\x78\xc5\x3e\xf5\xf1\xeb\xb6\x75\xf0\xa0\x7d\ +\xc3\x37\x7e\x87\x7d\xeb\x37\x7d\x97\x9d\x3f\x79\xda\x0e\x39\x86\ +\x21\xd3\xe9\x94\x63\x39\xce\x02\xdb\xa0\xca\xc7\xd7\x96\xee\x33\ +\x7d\x0b\x94\xd3\x96\x36\x12\x86\x02\x32\xf6\x17\xb9\x40\x90\xf3\ +\x29\x1f\x8d\x48\x32\x97\x44\xa4\x63\x9f\x52\x9b\xd3\x86\xb6\x61\ +\x4d\x15\xe3\x64\x8e\x45\x6d\x48\x22\xf2\x3a\x82\xd4\xdd\xc9\xd7\ +\x0a\xf7\x23\x56\x67\x7c\x85\x15\xee\x1d\x56\x1b\x6a\x2b\xac\xf0\ +\x3a\xc6\x7d\x75\xf1\xdf\xd3\xca\xd4\x13\xcc\xa4\x8f\xcb\xe0\xe8\ +\xb4\xc4\x25\x69\x7f\x4c\x5a\x0e\xbd\x29\x2e\xc3\xb0\x2f\xbc\x84\ +\xa2\x4f\x19\x03\xca\x70\xf0\x46\x6c\x63\x58\x54\x47\xd2\x17\xa0\ +\x0c\x5a\xdd\xe5\xc1\x89\x7a\xc8\xb8\xc1\x01\x5b\x6e\xb0\xb4\xb6\ +\x36\xed\xc3\x3f\xf3\x33\xf6\x63\x3f\xf0\x03\x76\xfd\xa7\xff\x85\ +\xbd\xe9\xa9\xb3\x76\x6a\xad\x6b\x83\xf6\x58\x9b\x6a\xfa\xf6\x20\ +\x17\x5b\x58\x38\x68\x01\x59\x1d\xee\x97\x8b\x48\xad\xbe\x3c\x0b\ +\x11\x3c\x18\xd1\x8e\x22\x2e\xd4\x9c\xce\x98\xe5\x90\x0f\xde\x8c\ +\xd0\x86\x0b\x16\x13\xfc\xc6\x70\x7c\x83\x3a\x0f\xdf\x5c\xe3\xc2\ +\x93\x7e\x40\xbb\x93\x58\xf4\x85\x1d\x75\xc8\x50\x11\x41\x93\x86\ +\x2b\x50\xeb\x70\xb1\x8a\xb7\x7f\x2b\x92\xb4\x2f\xe2\xfc\xa6\x10\ +\x58\x34\x27\xfd\x51\x47\x0f\x10\x79\x18\xab\x35\x8f\x28\xa5\x11\ +\x69\x27\xe7\x50\xdb\x30\x0e\x7d\x9a\x27\xd5\x24\x73\x2a\x43\xd6\ +\x51\x37\xbf\xd0\xfe\xfc\xe5\xcd\x4e\xa7\x67\xed\x9e\x7f\x8b\x5a\ +\x0b\x4d\xf6\x05\xde\xd8\x47\x61\x27\x5d\xd0\x7d\x18\xf1\x4b\xf0\ +\xdc\x90\x84\xba\x2c\x4c\x51\x17\x6e\xa6\xb5\xb8\x01\xc0\x83\x75\ +\x44\xac\xff\x2a\x40\xec\x1b\x6d\xfc\x89\x99\xb1\x36\xd1\x66\xdc\ +\x58\x8b\x27\xd6\x66\xda\x58\x83\xaf\x71\xf4\xaf\xb2\xc8\x67\xcb\ +\xba\xff\x02\x36\x18\x8f\x4e\xc7\x46\x38\x7f\x9d\x53\x7d\xdb\x38\ +\xcb\xa7\xa7\x06\xd6\x1b\xf0\xdc\xf1\xfc\x7a\xed\x04\xa4\xad\x93\ +\xcb\x2f\xcb\xca\x72\x23\x8a\x53\x24\x79\x8d\x79\x4e\xa5\x90\xb0\ +\xf2\x3c\xcf\x90\xc6\xa1\xbe\xc0\xc4\xa2\x9d\xd7\x3a\x98\x7d\x2e\ +\x9d\x92\x67\x1d\x82\xa6\x6f\xb6\xe3\x84\x1b\x6a\x57\x77\x6d\x78\ +\x65\xdf\x66\x68\x17\xb5\x25\xec\xa8\x9f\xdb\xc0\x0d\x44\xa9\x2a\ +\x54\x7c\x6d\xce\xbc\x58\x5f\x44\x14\x4f\xc1\x33\xf6\xa6\xc2\x79\ +\x07\xc7\x9f\x16\xe4\xb7\xe8\x37\xd6\xd6\x6d\xfd\xcc\x29\xeb\x3f\ +\x7c\xca\x66\x27\xd7\xec\xc4\xb9\x73\xd6\x3e\x7d\xc2\x26\xdb\x5c\ +\x7e\x8f\xec\xf0\xc6\x0d\x9b\x5c\xb8\x61\x07\xd7\x6e\xd9\xf8\x80\ +\xff\x95\x88\x32\xe2\xd5\x52\xa3\x22\x1b\x66\x15\xf9\xb0\x3c\x09\ +\xd9\x28\xf6\x10\x39\xcb\xc8\xdb\xc4\xcb\x96\xda\x4c\x4d\x24\x55\ +\xd5\xac\x01\x44\xec\x1b\x73\xd6\x61\x46\xb9\x14\xe2\xdd\xa2\x22\ +\x41\x37\x25\x51\x6b\x04\x23\x5e\x4e\xc3\x90\x6d\x55\x48\x94\x59\ +\x04\x8e\xb0\x09\x95\x43\x4c\x1a\x17\x4a\x76\x02\x9d\x23\x50\xc4\ +\x38\x78\xbf\xcb\x43\x1e\x87\x6e\xb6\x90\xae\x37\xd3\x60\xa3\x0d\ +\x35\x37\x4f\x7b\x5e\xa0\x1a\x3b\x94\x2e\x74\x7e\xf7\x48\x3e\x68\ +\xc3\x7e\x53\x6e\xb8\x21\xd0\x06\x3f\xed\x68\x83\x48\x37\x87\x94\ +\x18\x97\x14\x04\xb8\x22\xed\xd2\xc1\xc8\x5e\x7c\xf1\x86\xf5\xbf\ +\xec\xcb\xec\xb7\xfd\x87\x7f\xd1\x9e\xfd\xed\xdf\xc4\x3f\x0b\xb2\ +\xf1\xac\x8d\xd3\xcd\x9f\xf2\x85\xa1\xfc\xc3\xa7\x7c\x33\x3f\x38\ +\xa0\xef\xa6\xfa\x0a\x19\xeb\x86\x11\x39\x46\x6a\x33\x11\x3a\x52\ +\x26\x5e\x5d\x82\x31\x79\x02\x25\xa6\x3d\xf5\x12\x55\xb1\xa2\x48\ +\x5f\xf1\x4b\xe3\x3a\x1d\x63\x55\xdc\x91\x3d\x4e\x60\x67\xa4\x4f\ +\x90\x6a\xa3\x62\x98\x36\x55\xc2\x23\xb2\xca\xcf\xdd\xe2\x73\x48\ +\x72\xdf\xa2\x6e\xda\x1a\xcb\x9a\x5e\xa0\xe0\xb8\x06\x5c\x3c\x4f\ +\xc7\x39\xaf\x90\x7d\xc5\x4f\xbc\x63\x21\x8b\xd2\x27\x8a\x29\xe8\ +\x62\x8e\xbe\x5f\x98\xbc\x18\x69\xe8\xd7\x96\xf3\x69\x1f\x76\xbc\ +\x68\x68\x82\xc3\xaf\xf9\x70\xcd\xb2\x68\x60\x8c\xbe\x8f\x98\x73\ +\x13\xfe\x04\xa4\x6e\xbe\x6b\x23\x65\x8a\x71\xfb\xa4\xfd\xd2\x2f\ +\xfd\x13\xfb\x1f\x3f\xf8\xff\xb4\x4f\x5f\xff\x90\x7d\xd9\x97\x3e\ +\x60\xe7\xce\x0d\x6c\xc4\xff\xe3\xe2\xcf\x6e\x73\xae\x83\xf4\x2a\ +\xb7\xdc\x31\x0f\xef\xdf\x84\xc6\x69\x15\xc5\x25\x31\xba\xb9\x29\ +\x0e\x7d\xc2\xab\x2c\xae\xe3\xb5\x42\x56\x76\x51\x2e\x85\x34\xc1\ +\xe7\x1b\x3e\x3e\x60\xe3\xf3\x27\x1e\x7a\x42\x8d\xb6\x9c\x53\x95\ +\x24\xb4\xd3\x85\xee\xba\x02\x0a\x32\xe7\x1a\x2a\x60\x44\x18\xbf\ +\x38\xdc\xc0\x86\x37\xa3\x49\xe9\x1c\x24\x40\x8a\xa5\x8b\xb0\x57\ +\x98\xb2\x26\x92\xa6\xc9\x29\x28\x08\x4b\x9b\x50\xe4\xc9\x97\x23\ +\x74\x32\x0b\xba\x49\xe6\x14\xe5\x3c\xc5\xd3\x31\x3f\x61\xdb\xd6\ +\x1d\x4c\xad\x8f\x39\x0a\x37\xd6\xb8\xc1\xd1\xe9\x72\xf3\x0a\xe7\ +\x69\xca\x5f\x03\x40\xcb\x21\x63\x3e\xb1\xd3\xe9\x4e\x50\xbf\xa9\ +\x1d\x1c\x4c\xed\xe2\xb5\x91\x5d\xba\x36\xb1\xdb\x3b\x63\xe3\x2f\ +\x6e\x1f\x72\xbe\xa4\xcf\x5c\x3e\xaa\x8c\xdc\xa2\xc0\x71\x26\x22\ +\x24\x28\xa7\xaa\x70\x30\xf5\xf3\xe7\xf0\x3e\xca\xf3\xc6\x32\x74\ +\x7a\x2d\x7b\xf0\xe1\x8e\x9d\x3b\x4f\xce\xfd\x44\xb5\xe6\x91\x95\ +\xac\x11\x79\x34\x98\x4f\x39\xef\x6b\xd1\x76\x19\x16\x73\xcf\x34\ +\xac\x67\x50\x20\x9c\x4e\x09\x29\x7e\x19\xa4\x65\x97\xae\x4c\xed\ +\xe6\xad\x29\x3e\x32\xf9\x59\x95\x9e\x9c\xa8\xbd\x12\x47\x75\x7e\ +\x1d\x06\x19\xb2\x00\xb2\x6a\x78\x3f\xcb\xa2\xb2\xc3\x20\x62\x7b\ +\xce\xf0\x41\x3d\xe1\x17\x8d\x54\xc8\x35\xcc\xab\xb6\xad\xd7\x1f\ +\xe8\xbf\x89\xf9\x8d\xa4\xf1\xf4\xd0\x26\xe3\x21\xec\xb0\xee\x61\ +\xfb\xc3\x8e\xd7\x4a\xaf\x07\x9e\x73\x5a\x24\xe3\x5c\x1c\xdd\xc3\ +\xf5\x38\x78\xde\xb8\xf6\xa1\x7f\x2f\x45\x5c\x67\x6d\xf4\x07\x16\ +\x02\xd7\x7b\xbb\x8d\x31\x01\x69\xba\x98\x9f\x73\xbf\xae\xab\xb5\ +\x0c\xfa\x0a\xc7\x0c\x54\x6a\x8a\x98\x1d\x52\xe3\x48\x29\x7f\x13\ +\x2f\xa2\xb4\x83\x80\xcc\x2a\x48\x55\xe9\xa9\x2d\xac\x4c\xbd\x0f\ +\x95\x74\x88\x7c\x9d\xc1\x32\x31\xc6\xa1\xba\xd4\x76\x73\x19\xce\ +\xc1\x2d\x9b\x58\x90\x80\x35\x01\x19\x27\x9a\x34\xaf\x39\xfe\x04\ +\xf8\x18\x15\x20\xed\x32\xb6\x43\xd0\x7c\xa9\xfb\x93\xf3\xc8\x29\ +\x22\x64\x70\x4e\xb9\xda\x29\xec\x28\x2d\xb6\x59\x08\xc4\x9a\x63\ +\x21\xe6\x35\xd9\x69\x0f\xd0\x07\xf7\xec\xf9\x0b\x97\xec\xd3\x1f\ +\xbb\x60\xe7\x27\x6f\xb5\x7f\xe3\xdb\xbf\xdb\xbe\xe9\x3d\xdf\x66\ +\xdb\x6b\x27\xed\x70\x8c\xeb\x16\x96\xfc\xc5\x0e\xb5\x87\xd2\xba\ +\x33\xf9\x45\x06\x6c\x11\x4a\x14\x72\xdc\x4f\x1a\x04\xdb\x8d\x79\ +\x31\x50\x1b\x4a\x49\x1b\x5a\xb8\x1f\x7d\x66\x38\x09\x84\x54\x73\ +\x57\xb7\x72\xb8\x4d\xcd\x27\x4d\xff\x4e\xc3\xb9\x32\x5b\x80\x17\ +\x08\x47\xad\xa3\xf0\x4e\x58\xe2\x67\x85\xfb\x1a\xab\x33\xbe\xc2\ +\x0a\xf7\x0e\xab\x0d\xb5\x15\x56\x78\x1d\xe3\xbe\xb9\xf8\x5f\xb5\ +\x8a\xdc\x8d\xe3\xf9\x69\x09\x39\x4f\xc5\xc9\x31\xd1\x48\x84\x42\ +\x82\x10\xcd\x38\x8f\xe0\x13\x5a\x55\x30\xae\x74\xba\x51\x0a\xb9\ +\x66\xea\x2e\x6a\xe4\x71\x48\x14\xb1\x0a\x81\xa0\xc4\x71\x50\xcd\ +\x1b\x3a\xfe\x0f\xed\x5c\xff\xd9\x74\x38\xb5\xf6\xd6\x86\x3d\xff\ +\x1b\xbf\x62\x1f\xfc\x2b\x7f\xc5\x7e\xe1\x7f\xf8\x80\xbd\xef\x8d\ +\xa7\x6c\x63\xa3\x67\x9b\xd3\x91\xb5\xbb\x3d\xfd\x14\x89\xcc\x63\ +\xb2\xae\x0d\x34\xdd\x60\xc5\x81\xd8\xe5\x98\xee\x2b\x62\xdc\xf0\ +\xe5\x86\x01\xec\x7c\xc1\xe6\x3c\x63\x15\x2d\x78\x2d\x60\xe0\x96\ +\xff\xfb\xa4\x0d\x34\xca\xb1\x8a\xf5\x0d\xb5\x4c\xc7\x04\x1e\x97\ +\xa3\x96\x23\x3d\xeb\x48\x99\xea\x4a\x31\x03\x17\x37\x31\x17\xaf\ +\x24\xb8\x70\x42\xbb\xb2\xd9\x74\x53\x3b\x6f\x64\x43\x5e\xbe\x41\ +\x0e\x9d\x3c\x20\x81\x9e\x62\xcb\x73\x10\x70\x7f\x22\x83\x01\x92\ +\x2f\x82\xc0\x9c\x9c\x79\x87\x88\xe5\x29\x4a\xa7\x74\xb0\x5e\x3c\ +\xed\xa8\x18\x17\x79\x64\x09\x94\x04\x7a\x0f\xf9\x13\x7f\xed\x1e\ +\x16\xee\x7d\x2c\xd0\xbb\x3c\x17\xd0\xf3\x1c\x93\xc8\x1b\x82\xfa\ +\x2d\x19\x3e\xbd\x06\x86\x07\xe5\x3a\xe0\x9c\x3f\x15\x29\x3d\x1c\ +\x63\x41\xc9\x9f\x87\x9c\x1e\x0c\x6d\xbc\x3f\xb2\xf1\xae\x6f\xae\ +\xe9\xb7\x04\x61\xa7\x9b\xf6\xca\x57\x11\x5c\x45\xb9\x59\xae\xe8\ +\x57\x63\xde\x94\x3a\x3d\xf0\x0d\xb5\x8d\xbe\x6e\x0a\xf1\x7c\x0a\ +\xac\x80\x12\x47\x54\x02\xca\x59\x56\x3a\x0d\x71\x84\x35\x52\xc2\ +\xec\x48\xab\x38\x00\xf9\x82\x39\x86\x59\x42\x90\x09\xc8\x47\x90\ +\x72\xb6\xa3\x40\x05\x64\xa9\x67\x2d\xd9\x17\x26\xa8\xff\xde\xb5\ +\x3d\x1b\x5e\xde\x33\x63\x5b\xe8\xc6\x99\xbb\xcb\x1b\x63\x09\x72\ +\xd1\x3a\x81\xe0\xe4\x2f\x08\xbe\x95\x58\xef\x08\xa0\x47\xde\x74\ +\xa7\x6f\x43\x23\xec\x0f\xba\xb6\x75\x66\xdb\xb6\xcf\x9d\xb2\xd6\ +\x63\x0f\xd8\xf6\x93\x0f\x9a\x9d\x3f\x6d\xad\xfe\xba\x75\xb7\xd6\ +\x6c\xaf\x3b\xb4\xe1\xde\xae\xb5\x6f\xdd\xb0\xd9\x0b\x17\xed\xe0\ +\xb3\x57\xec\xe0\xe6\x2e\xce\x13\x4f\x24\xca\x88\xf3\x8b\x5e\x43\ +\xaa\x64\xc4\xd2\x44\x76\x0d\x32\xff\x86\x3c\x06\xe9\x67\x01\x5e\ +\x31\x20\xf4\xe4\x43\xe6\x11\x84\xc5\xa6\x92\xbd\x1c\x78\xbd\xb1\ +\x41\x90\xa0\x79\xea\x89\x51\x73\x1d\x48\xc6\x37\xf9\x3c\x17\x2e\ +\x6a\x90\xc6\xf3\x11\xe0\x94\xce\x10\xdf\xcc\x23\x3b\x14\x87\x00\ +\x5e\x1b\xe4\xd1\x8e\xbc\x91\xaa\x0d\x77\xd2\xda\x4c\x43\x1b\x8f\ +\xe1\x01\x51\xf6\x59\xed\x74\x83\xa6\x8d\xf3\x3c\x98\x9e\x72\xa4\ +\xe1\x46\x1c\x5e\xaa\x0a\xa0\x48\x69\x61\xc8\xac\xc4\x72\x93\x9c\ +\x32\x5e\xae\x13\xeb\xf0\x54\x76\xbb\xb6\x7b\xb8\x6f\x1f\x7a\xee\ +\xb2\x6d\x7d\xdd\xb7\xd8\x6f\xfb\xbf\xfe\x1f\xed\x0d\x5f\xfe\x15\ +\x66\x37\x0f\x8c\x3f\x3c\x36\xe5\x4f\x19\xd1\x37\xd2\xb4\x99\x3f\ +\x09\x5e\xcf\xee\x86\x4e\x4b\x1b\xd4\x75\x67\x7f\xd3\x55\xc9\x71\ +\x02\x3c\x39\xb6\xb3\xc6\x6b\x5a\x72\xcc\xa1\x87\xd4\x43\xce\x7b\ +\x7f\xde\x49\xa9\x0f\x3b\x1e\x92\x93\xa4\x5c\xd6\x60\x99\x26\x64\ +\x09\xe9\x17\x78\x4f\x10\x85\x75\x38\x49\x39\x28\xf9\xc5\x1b\xb6\ +\xac\x4a\x83\x39\xe6\x18\xd0\xf1\x5d\x20\xf3\x5f\x34\x4f\xd9\x32\ +\xdd\xeb\x09\xd9\xd4\xd9\x16\x47\x50\x1b\x1c\x87\xa5\x09\x8f\x87\ +\xfa\x06\xd2\xdc\x21\x99\x54\x4d\xa0\xec\xfd\x7a\x6c\x12\xf9\xf5\ +\x4d\x1e\x87\x2e\xbe\xd4\x25\xed\xbc\x3e\xcb\xc2\x2e\x24\x71\x50\ +\xa7\x10\xaf\xe8\xf1\x28\x9b\x7f\x7e\x78\xac\xa1\x07\x36\xfc\x8f\ +\x24\x3d\x19\x66\xeb\xf6\x9b\x1f\xfb\x90\xfd\xff\x3e\xf8\x77\xec\ +\x37\x3e\xf1\xe3\xf6\x96\xb7\x9c\xb0\x07\x1e\x1e\x58\x9b\xff\x87\ +\xa4\x6f\xc4\x60\x92\x43\x30\x2d\xd2\x45\x72\x21\xa7\x18\x7e\x0d\ +\xf9\xa5\x25\x0b\x18\x92\xe6\x17\x2f\xf0\x49\xdf\xe8\xa3\x0c\x02\ +\x69\x46\x85\x86\x1d\x18\x9f\x0e\xb8\xbd\x36\xd4\xa8\xa3\x82\x31\ +\x74\xac\x37\x7d\xf3\x73\x9a\xb6\x59\x16\xf7\x4a\x3b\x4a\xdc\x77\ +\xea\x9c\x60\xe0\x12\x8e\xd5\x65\x0e\xc5\x17\x68\xb7\xe7\xcb\x5d\ +\xb8\x65\x80\x15\x0f\x48\xef\xa4\xe0\xbc\x4b\x16\x75\x73\x82\xc6\ +\x45\x83\x5a\x16\xb4\xa2\x8a\xce\x1b\xfd\xd3\x31\xca\x3c\x51\xcd\ +\xad\xd3\xee\x5a\xa7\x6f\xda\x5c\x1b\x0c\x3a\xb6\xb6\xc1\x5f\xd8\ +\x66\x29\x5a\xf8\x48\xcd\x16\x67\xfb\x8c\x6d\x34\x19\xdb\xde\x2e\ +\xe6\x05\x7b\x53\xdb\x3b\x18\xdb\xf5\x1b\x53\xbb\x79\x7b\x66\xbb\ +\x98\x33\x0d\x0f\x39\x8e\x8e\x65\xeb\xcd\xc6\xc1\xdd\x0b\x2c\x19\ +\x63\xb1\x51\x89\xa0\x3d\xe2\x87\x06\x12\x21\x61\x17\x2f\xfe\x2c\ +\xe5\x23\x4f\xb6\xec\xe4\x09\x4c\xf2\xe0\x43\x7d\x4d\x35\xa8\x90\ +\x6c\xb8\x2b\x88\x3c\x1b\x2c\xa4\x43\x82\x26\x29\x29\xda\x1f\xeb\ +\x0c\x07\x64\xd9\xd1\xbd\x02\x8e\xaa\x7e\x84\x28\x99\x85\x0c\xd1\ +\x64\xd4\xb1\x4b\x7a\xb2\x0f\x73\x50\xac\x29\xe8\xa2\xd4\x43\xf4\ +\x3c\x9c\x77\xc5\x1c\xed\x8c\x03\x7e\x0b\x1f\x59\x31\x4b\xf6\x3b\ +\x7c\x4a\x83\xe3\x26\x28\x3f\xb7\xfd\x9c\x74\x07\x03\x5b\xeb\x9f\ +\xb2\xcd\xed\x75\x3b\xbd\xb9\x69\x67\xce\x6c\xda\xc9\x93\x9b\xb6\ +\xb1\x8e\x6b\x11\x9f\xbb\x87\x87\x7b\x76\xfd\xfa\x2d\xbb\x7d\xf3\ +\xa6\x8d\x0e\x77\x71\x0a\x86\xd6\xe7\x26\x58\xdf\x37\xa5\x79\xee\ +\x3a\x38\x2f\x5a\x63\xe8\xc4\x7a\xc4\x3c\xb9\xe9\x4a\x49\x39\xd4\ +\xf7\x75\xf5\xd1\x4c\xcd\xc5\x43\x67\x97\x81\xe4\xcd\xf5\x91\xd0\ +\xd8\xe5\x54\x2d\x2d\x51\x23\x4b\xb8\xff\x22\x3f\x6a\x10\x7d\x86\ +\x96\x6e\x2b\x8a\xf5\xd0\x85\xef\x7d\xca\x3f\xce\xbd\x34\xd4\x17\ +\x53\x20\xa5\x89\x4a\x55\x10\xa9\x4a\xc8\xd2\xab\xfe\x6a\x20\x4e\ +\x49\x39\x6f\xf2\xf5\x87\xc6\x08\x6a\x39\x9f\x82\x4e\x7c\x64\xe0\ +\xb1\xf3\x21\x8a\x98\x02\xf8\x53\x9f\x62\x6a\x9e\x61\x3e\xcd\xe7\ +\x6d\x5a\x43\xed\x0c\x73\xdf\x14\xc3\x75\xd8\x5a\xb3\xe1\x78\xc7\ +\x3e\xfd\xdc\x0b\xf6\xfc\x6f\x1e\xd8\xa3\x27\x1f\xb3\xdf\xfd\x1d\ +\x7f\xca\xde\xf3\x15\x5f\x6f\xfd\xf6\x86\x0d\xf9\x65\x42\xcd\xcd\ +\xd8\x8f\x59\x03\x7f\x11\x9e\xb7\xd3\x0c\x93\xca\x36\x8d\x19\x12\ +\x44\xd0\xf0\x40\x9e\x99\x96\xbc\x68\xa9\x28\x73\x0d\xed\x0b\x2f\ +\x01\x0d\x52\x4b\x71\x52\x0c\x43\x26\xc8\x08\xef\x90\xb1\xe2\xa9\ +\xf6\x82\x3a\x2f\xa7\x35\x52\xb9\x0c\x8b\x0e\x88\xc5\xf4\x2b\xdc\ +\x4f\x58\x9d\xdd\x15\x56\xb8\x77\x58\x6d\xa8\xad\xb0\xc2\xeb\x18\ +\xf7\xc5\xc5\xff\xaa\x56\xe2\xe5\x26\xa0\xd4\x37\x31\xe7\xaf\xb9\ +\x10\x58\x3a\x59\x29\xe6\x20\x48\x97\xe1\x97\x7c\xc8\x5c\x41\xc2\ +\x65\x5c\x11\x24\xb8\x02\x2b\xb2\x38\xe4\x83\x31\xa3\xe0\x25\x03\ +\x54\x88\x2c\x1f\x11\xa5\x62\x41\xf3\xc0\x52\x40\x5f\xb7\xe4\xdd\ +\x13\xb0\xfc\xdf\xac\xf6\xe6\xb6\x5d\xbf\x74\xd1\x7e\xe4\x07\xff\ +\x2b\xfb\xf9\xff\xec\xbf\xb5\x77\x3e\x79\xc2\x4e\x6e\x6f\xd8\x86\ +\x8d\xac\xd7\xe9\x58\x87\x77\x7a\x74\x33\xc6\xd3\xc8\x25\x09\xac\ +\xc6\xb8\x40\xd0\x51\xf1\xcc\x47\xbc\x68\x19\xbb\x8d\xf4\xe0\xd3\ +\x8e\xc5\x40\x94\x1b\x6a\xb2\xeb\x86\x1d\xf3\x43\xcc\x4d\x35\x1e\ +\x75\x5e\x72\x82\x43\x37\x94\xe6\xe4\x34\xf3\x85\x4e\xd9\x58\x4b\ +\x50\x0f\x50\xd4\xfc\x24\x1e\x38\xbe\x75\x38\xe1\x37\xcf\x43\x16\ +\x7a\x82\xc9\x6b\x3e\xd6\x42\xc9\x3a\x92\xf1\xac\x80\x39\x6d\x25\ +\x87\x06\x2a\xb2\x12\x85\xdc\xf9\x5c\xb0\x71\x71\x99\x12\x7f\xa5\ +\xbf\x30\x77\x82\xf5\xe7\xd7\x5f\xb9\xf2\x67\x1b\xc6\x4d\xb3\xcc\ +\x59\x8b\x4f\x30\xe5\xa3\x9f\x7d\x09\x15\x14\x8b\x80\x75\x95\x9e\ +\x8b\x34\xd4\x9d\xdf\xd4\x9c\x0e\x27\x36\x39\x18\xd9\x6c\x6f\x64\ +\xd3\x5d\x1c\x7b\x94\xa1\x6d\xb0\x38\x6e\xcb\x90\x49\x91\x1f\x7d\ +\xa8\x0c\x58\x5e\xa2\x4f\x8d\xd7\xba\xd6\x3d\xb3\x66\x1b\xe7\x36\ +\xac\xb7\xd6\xf3\xa7\xe6\xa8\x8f\xb6\x2f\x85\x8a\xb8\xb0\x24\x58\ +\x96\x5a\xcf\x42\x05\x1a\x8a\x20\xe7\xdf\xf0\x0d\xaf\x0d\x16\x04\ +\x25\x6f\x39\xf0\x85\xbe\xde\x92\x53\xe6\xc8\xe2\x95\x62\x22\xe6\ +\xa6\xca\xe4\x70\x62\x7b\x57\xf7\x6c\x74\x79\xcf\x66\xbb\x13\xb5\ +\x8f\xf4\x25\xf0\x04\x0c\xd5\x37\x2a\x90\xa7\x5c\xf7\x50\x13\xd1\ +\x57\x69\xea\x1b\x45\x00\xd8\x96\xf1\xbf\x5c\x5a\x36\xd8\x5e\xb7\ +\xed\x73\x27\xad\xfb\xd8\x79\x3b\xf9\xc4\x93\xd6\x7f\xfa\x69\xeb\ +\x9f\x3d\xa1\xa7\xfd\x26\xbd\x99\xed\x4c\x46\x66\xe3\x7d\x6b\xdd\ +\xba\x6e\xad\x0b\x97\x6d\xff\xc2\x25\x1b\x5f\xb8\x6e\xc3\xdb\xbb\ +\x36\xe4\x37\xac\xe9\xab\x2a\x97\x97\x36\x20\xd1\x7c\x19\xe7\xe0\ +\x49\x5e\x06\x55\x7a\xda\x83\x55\x3d\x17\xdc\x3a\x0b\x83\x4a\xde\ +\x90\x91\x50\xf0\x4c\xc9\x95\xec\xa5\x66\x5f\x60\x5b\xb9\x48\x08\ +\xc6\x23\x04\xa1\x2b\x26\xa9\x57\x08\xd4\x89\x41\x26\x97\x79\x65\ +\x09\xbc\xef\xa1\xa5\x48\x90\xc6\x39\xf6\x27\x58\x39\x0e\x20\xc6\ +\x91\x4f\xa6\xf1\xc6\x10\xaf\x1f\xfe\x24\xaa\xca\xc7\x6b\x89\x89\ +\x68\x37\x81\x57\x36\x78\xf8\xd1\xf5\x26\x7e\xe2\x4f\xb2\x41\xa8\ +\x32\xc8\x1c\x01\x08\x6d\xc0\x31\xa6\x9c\xf9\xe8\x62\xc4\x35\x83\ +\xeb\x6c\xd8\xeb\xda\xcd\x9b\xb7\xec\xd3\x37\xf6\xed\xec\xb7\xff\ +\x1b\xf6\x8d\x7f\xee\xdf\xb7\xc7\xbf\xe4\x59\x1b\xee\x1c\x28\x05\ +\x7f\x3e\xab\xcd\xf4\x78\xf3\x6a\xf7\x2f\xca\x53\x83\x97\x1c\x4a\ +\xd5\x8c\x87\x71\xe8\x2a\x50\x3f\x04\xa3\x01\xa3\xcd\x6e\xa9\xbe\ +\xa3\xfe\xa9\x4e\x84\x98\xd6\x61\xd7\x6c\xb4\x05\xad\x3b\x8b\x00\ +\x78\x06\x39\xf6\x2a\x20\xed\xd2\x4a\xc6\xc8\xe5\x25\x2e\x72\x1c\ +\xca\xdc\x11\xad\x04\x79\x54\x02\x28\xe3\x59\x13\x2c\x81\x1c\x39\ +\x99\x3e\xee\x06\x99\x2c\x93\x24\x5d\xcb\x12\xcb\x64\xf7\x3b\x16\ +\xdb\x86\xc8\xf6\x39\xb6\x91\x88\x5a\x9e\xb2\x44\x71\x70\x14\xea\ +\x1f\xd0\x1d\xa3\x4e\x48\x9d\x1d\x5d\xf0\xbe\x5f\x68\x92\x45\x1f\ +\x23\x21\xfb\x94\x44\xbc\x89\x2a\x03\x67\xdd\x58\x07\x37\x98\xf8\ +\x52\x8f\x43\x51\x24\x4d\x35\xe0\xfd\x1a\xfd\x1f\xbe\xb2\xdf\xb3\ +\xfb\xe2\x2a\x82\x09\x6f\xe2\xb6\xad\xdb\xea\xd8\xa5\x0b\xd7\xec\ +\x03\x3f\xfd\xb7\xed\xc7\xfe\xd5\x0f\xd9\xb9\xb3\x33\x7b\xf6\xc9\ +\x93\xb6\x79\xa2\xaf\xb1\x84\x4f\x9f\xeb\xa2\x23\xe0\x37\x5c\x17\ +\xb8\xa6\x0e\x23\x96\x2d\x6f\xef\x33\x85\x5f\x77\xee\x06\x41\x18\ +\xaa\x4c\xb4\x62\x19\x61\xc6\xa7\x64\xd2\x2e\xe7\x4a\x9a\xfa\xa9\ +\xec\xfe\xf9\xcc\x14\x7c\xb2\xb5\xad\x79\xa1\x6a\x98\xee\xee\x1a\ +\x1c\x0f\x39\xe6\xf1\xf0\x2f\x06\x44\x9b\xa3\x10\xa5\x7e\x2a\x7f\ +\xe3\x5b\x66\x78\x79\x8e\x69\xb5\x24\x67\x9d\x00\xc8\x6b\x55\x9a\ +\x2f\x62\x51\xae\x3c\x02\xe1\x47\x43\x5c\xd0\xfc\x48\xf7\xe1\x9f\ +\x42\x3e\x99\xd4\xb3\x3e\x7f\x9a\x6f\xbd\x63\x1b\x5b\x33\xcd\x7f\ +\x6d\xd6\x83\x0f\x6e\xc0\xd1\x19\x3f\x1f\xf8\x7f\x60\x98\x13\xe1\ +\x33\xe1\x60\x34\xb2\xdb\x3b\x66\x57\x6f\x4e\xec\xda\xcd\x96\xed\ +\x63\xae\x84\x8f\x62\x60\x84\x3c\x78\xae\xd8\x93\xb8\x01\xc0\xc2\ +\x33\xf4\x7a\x38\x2f\x51\x80\xe7\x8c\x65\x9a\xa9\xff\x6c\x6d\x77\ +\xec\xb1\xa7\x5a\xfa\xcf\xb7\xac\x3e\x75\x73\xa8\x59\xea\x8b\x1d\ +\xc0\xfa\x14\xcc\x1b\x8a\x43\xc0\x73\xdf\xa0\xb6\x21\x8a\x23\x1c\ +\xa4\x8f\xf3\x37\x0f\x5a\xa5\x96\x75\xe4\xa6\xe5\xe5\xab\x66\xd7\ +\x6e\xf0\x27\x1f\x8f\x6e\xa8\x55\x91\x40\xda\xaf\xc1\xa0\x11\xaa\ +\xfe\x71\xa8\x5a\x68\x27\x9e\x0f\x17\x3a\xd2\x84\xfd\x9d\x3f\xc7\ +\x39\x9d\xf6\xac\x37\xd8\xb0\xd3\x5b\x0f\xda\x83\xe7\x4f\xda\x23\ +\x0f\x9e\xb1\x93\x27\x37\x6c\x1b\x73\xa9\x8d\x4d\x9c\xdf\x1e\x7f\ +\xfc\x93\xe7\xe7\xd0\xf6\x26\xb7\xec\xc2\x85\xab\x76\xe3\xfa\x75\ +\xdb\xdb\xbb\xe9\x4f\xa1\x2b\x53\x5e\x43\x1c\x2b\x1a\x78\x3e\x08\ +\xf5\xce\x52\xb0\x8c\xd4\x34\x6d\xe4\xbd\x3f\xf8\xa2\x22\x91\x70\ +\x1f\x41\x95\x90\x90\x7f\x11\x8d\x8c\x98\xe7\x88\xe6\x5c\x3a\x48\ +\x20\x23\xbd\xa1\x2b\x2c\x5e\xcc\x3f\xae\x77\xce\x09\x48\x78\x7f\ +\xa3\x96\x91\xc2\x06\xc5\x67\x20\xd4\x0b\x56\x40\x25\x21\xa9\x74\ +\x1c\x03\xb8\x99\xc6\xf5\x84\x8f\x07\xbe\x5e\xe0\x6a\xc4\x6d\x54\ +\x36\xc9\x19\x79\x8d\x79\x38\xc8\xd3\xde\x25\x0a\x91\xbe\x69\x97\ +\xea\x9c\x28\xfb\x92\xb1\xc0\xa7\x00\x5b\xed\xbe\xed\x1e\x5c\xb7\ +\x4f\x7d\xe4\xaa\x5d\xf8\xe4\x4d\x7b\xe6\x91\xaf\xb4\xdf\xf5\x9d\ +\xef\xb7\xf7\x7c\xf9\x7b\x31\x87\xee\xeb\xc9\x34\xfe\xe7\x34\xf3\ +\xe6\x58\xe8\xd5\x57\xd0\x84\x94\xcb\x6d\x48\x18\xb1\x1e\x94\x17\ +\x81\x1f\x92\x48\x5e\xc5\x2c\xd3\x9c\xad\x5b\x66\x3a\xa7\x59\x53\ +\xe7\xd3\xa6\xe8\x2a\xb8\x6d\xc8\x9a\xaa\xce\xa3\xa4\x4f\xd4\x86\ +\xd4\x2d\x26\x5c\x94\x2d\xa6\x5f\xe1\x7e\xc2\xea\xec\xae\xb0\xc2\ +\xbd\xc3\x6a\x43\x6d\x85\x15\x5e\xc7\xb8\x2f\x2e\xfe\x57\xb5\x12\ +\xe9\x7c\xd9\xe4\x33\x91\xba\x88\xc3\x4c\x73\xd9\x14\xcf\x01\x42\ +\xae\x22\xea\xa1\x57\x34\x8e\x12\x4b\xaa\x9b\xaa\xf3\x72\x1e\x24\ +\x19\xcb\x89\xc7\x94\x89\x03\xa1\x9b\xaa\x14\xb8\x70\xbe\x18\xb1\ +\xe0\x22\xc5\x02\xe6\x84\x9b\x31\xff\x48\x82\x37\x5d\xba\x1d\x9b\ +\x8e\xc6\xd6\xc6\x2a\x73\x34\xbe\x69\x1f\xfc\xbf\xff\x0f\xf6\x23\ +\xff\xd1\x5f\xb1\x27\x3a\x23\x7b\xe6\x89\xd3\xb6\x3e\x3e\xb4\x81\ +\xee\xc6\xc0\x17\x0e\x3d\xa1\x06\xaf\x3e\xc1\xe7\xe2\x4c\x77\x67\ +\x74\xb3\x86\x82\xbc\x69\x23\x25\xdf\x4c\x47\x39\xe9\xf0\xe3\x49\ +\x5c\xa6\x9f\x94\x44\xec\x3f\xa1\x84\x64\x74\x4f\x19\x37\x86\x70\ +\xe4\x53\x6a\x19\x2b\xbd\xa2\xa0\x29\x97\x2c\x68\x66\x0a\x1f\x7e\ +\x23\x83\x90\x84\xd1\x3c\xc8\xc3\xc0\x6d\xa2\x95\x10\xe9\x66\x3a\ +\x49\xc6\x68\x57\x1d\xfa\xea\xb8\x9b\xd0\xab\xf4\x90\xb3\x08\x09\ +\x49\x55\x81\x40\xda\x73\xf1\x1f\xee\xeb\x32\x90\xa4\xd8\x4b\xe9\ +\x0a\x86\x29\x27\x9a\xa7\xa0\xbc\x0e\x69\xa5\x7c\x99\x1d\x39\xd0\ +\xbe\x21\x09\xb9\xda\x07\x6f\xc4\x4a\xca\x23\xa0\x8d\x35\xc4\x92\ +\x33\x61\xd4\xad\x14\xce\xef\x00\xf0\xf1\x18\xd5\xdd\xa6\x13\x9b\ +\x8d\xa6\x36\xde\x1f\xda\x78\x77\x68\x93\x1d\x6e\xac\x8d\xcd\x0e\ +\x66\xd6\x81\xad\x6e\x49\x2a\x29\xf2\xd2\xe6\x67\xc7\x26\x1b\x5d\ +\xeb\x9d\xdf\xb0\x8d\x33\x1b\xd6\x19\x74\xfd\x1c\xaa\x1c\x51\x10\ +\xe5\xeb\x51\x0d\xdf\x58\x88\xa2\x88\x44\x90\xe5\xcc\x28\x5c\x14\ +\x84\x2e\xc1\xb4\xd1\x35\x8b\x6d\x66\x5b\x27\xa6\xcc\xcb\x84\x83\ +\x69\x92\x66\x14\x31\xbf\x5d\xcb\x32\x71\x43\x6d\x9f\x3f\xf9\xa8\ +\x27\xd4\x50\x63\x7d\x9b\x95\xe6\x91\x09\x1a\x93\x94\x67\x3a\x0f\ +\x78\x90\x3f\xfd\x9c\x23\xd5\x2c\x1b\x78\x70\x90\xc3\x37\x0b\x3b\ +\x6b\x5b\x07\x3e\x06\xeb\x3d\xdb\x3e\xbf\x65\x1b\x6f\x7c\xc8\x06\ +\x6f\x79\xa3\x6d\x3c\xfc\x90\xf5\x4f\x9d\xb5\xf6\xc9\x6d\x6b\xa3\ +\xef\x4d\xf0\x1a\x8f\xf7\x6d\x74\xeb\x9a\x4d\xae\x5c\xc6\x71\xdd\ +\x5a\x7c\x2a\xed\xda\x2d\xdb\x3f\x3c\xb4\xf6\x78\x6c\x63\x7d\x5b\ +\xdc\x33\xe2\x39\x26\xc5\x23\xaa\x54\x95\xb0\xa1\x8a\xf2\x4e\x38\ +\x62\x13\xe9\x2b\x37\x64\xe6\xd8\x4c\x04\xe1\xbc\x7c\x11\x95\xf3\ +\xaa\xa0\x4c\x33\x97\xad\x98\xe8\x4b\x02\x88\xa0\x3d\x72\x3e\x44\ +\x20\x0a\xd5\xc8\xe9\x37\xc5\xa2\x23\x23\xb4\x99\xfa\x9f\x62\x76\ +\xec\x59\xb3\xa1\xc6\xf3\x1d\xdf\xb0\xd6\xcf\xa4\x22\x6e\xe1\x7c\ +\xe4\x75\xe3\x4d\xce\x74\x70\x0c\x3a\xff\xbf\x4c\xfe\x71\xf0\x9b\ +\xd8\xdc\xa0\x17\x43\xde\x73\x57\x3e\xb0\x8c\xec\x99\x1e\x3a\x32\ +\xdc\x15\x43\x1e\x7b\xdd\xae\xdd\xba\x76\xcd\x9e\xdf\x9b\xd9\xa9\ +\xf7\x7f\xb7\x7d\xf3\xf7\xff\x7b\xf6\xc4\xf9\xc7\xec\xf0\xc6\xae\ +\xf1\xa1\x0a\xde\x98\xe4\x93\x69\x1c\x1f\xf8\xb3\x90\x74\xee\xbe\ +\x99\x3f\x28\xbc\x29\xf6\xbe\xe6\x63\x01\xf5\xbc\x7d\x48\x22\xc7\ +\x4e\x1f\x25\xa9\xf0\xb6\xcd\x8d\xb3\xa2\xd7\x78\xea\x7a\x1d\x9e\ +\x58\xc7\x9c\x5c\x6f\x8f\x3d\x20\x4d\x3f\xe4\xc9\x06\xa1\x98\x3a\ +\x67\x0b\x5f\xc0\xeb\xc9\x4b\xee\x0d\x92\x70\x5f\x6c\x46\xaf\xd9\ +\x32\xa4\x9f\x48\xff\x4a\xc1\x24\xf3\x59\xae\x40\xd4\xcd\x99\xed\ +\xb3\xd8\x56\x47\xb0\xec\x1c\xdc\x31\x41\x65\x0e\xc2\x4f\xf4\x1d\ +\xa1\xeb\xac\xc0\x7b\x8d\xa7\x6b\xe4\x94\xf2\xa5\x5e\x55\xec\x19\ +\xe3\x82\x0b\x9d\x7f\xe3\x61\x12\xf9\x87\x1d\x8f\x1c\x1f\x24\x75\ +\xb5\x74\xb2\xe3\x60\x0e\x12\x36\xdc\xb8\x92\x9e\x9f\xbd\x01\x3e\ +\x1d\x31\x68\xf7\x6c\x17\x9f\x9b\x3f\xf6\xf3\x1f\xb4\x1f\xfa\x99\ +\xbf\x6d\xed\xfd\x17\xed\x4d\x6f\x3c\x61\x67\x1e\xda\xd0\x13\xa8\ +\x7e\x5d\xfa\xf5\xe7\x65\x6c\xd2\xbb\x8c\xc3\x41\x73\xed\x0a\x91\ +\xbd\x5f\xa7\x29\xe7\xd7\x31\x5c\x16\xac\x97\x2e\xae\x2d\xd6\x9d\ +\xa4\xca\xca\x2f\xbe\x80\xf7\x2f\x22\x81\xa6\x21\x68\xf1\x94\x8b\ +\x05\x1f\x9f\xdb\x6a\x32\xa6\x45\x74\x47\xc0\x8e\xe5\x74\x3a\x9e\ +\x56\xe3\xf8\xc9\xf4\x6c\x6b\x27\x68\x16\xc1\x3c\x42\x0d\x90\x38\ +\x26\x37\x1a\xb1\x50\x35\x96\xf8\x2a\x58\xd4\x81\xaf\x45\xa2\x35\ +\xa7\x0e\xa0\x7d\xbc\x1c\x38\x9f\xe3\x2e\xe6\x9b\x6d\xeb\xf6\x5b\ +\xb6\xd6\xef\xd9\xda\x46\xcb\xba\x3d\xb6\x1f\x6c\x26\x2d\x7c\x16\ +\x73\x0c\x46\x72\xa4\xe7\x13\x69\xfc\xbc\x18\x61\xae\x74\x7b\xb7\ +\x65\x37\x6f\x4e\xec\xe6\xad\x99\xed\xec\x4c\xec\x60\x9f\xe5\x9d\ +\xfa\x77\x9d\xd0\xb8\x3c\xcf\x9e\xb3\x9f\x77\xd5\xa6\xf4\x1b\x2f\ +\x0b\x5a\xcf\x7a\x98\x4b\x9d\x3e\xd3\xb3\x87\x9f\x44\xbe\xda\xd0\ +\x43\x9a\x1c\x0f\x19\x65\x92\x10\xdd\x3d\x78\x96\x81\x0c\xa2\x3d\ +\x99\x67\xea\xd2\xf5\x51\x2c\x66\x7a\xbc\x65\x0d\xfe\x37\xdd\xd5\ +\x2b\x66\x57\x6e\x62\x8e\x32\x41\xc3\xb1\x3b\xa4\x0f\x44\xe9\x2d\ +\x21\x3e\x3b\x84\x33\x4e\x22\x92\x98\x9f\x91\x71\x51\x90\xe5\x67\ +\xb7\xaf\x0d\xa6\xb8\x8a\x31\x4f\x3d\xec\x58\x7f\x7d\xcb\xb6\x4f\ +\x9e\xb5\x27\x1e\x3c\x6d\xcf\x3c\x75\xde\x1e\x3a\x73\xd2\x36\xd6\ +\x3a\xb0\xf5\x74\x4c\xcf\x9f\x6d\x9c\xcc\x0e\x6c\x6f\x77\xcf\x6e\ +\xdc\xb8\x6e\x57\xaf\x5f\xb2\xc3\xf1\x0e\xa6\xbd\xfc\x1f\xda\xb6\ +\xff\x34\x3a\x32\xe0\x97\x5c\xe6\xbb\x1d\x73\x05\xe4\x87\xef\xe0\ +\x05\x4f\x73\x77\x88\x94\x4d\x20\x38\x15\xfc\x82\x33\x8e\x12\x49\ +\x25\xfc\xf3\xde\x79\x15\x09\x3c\x5f\x6e\xca\xeb\xd8\x69\xc6\x7e\ +\x90\xa6\x4e\x5a\x85\x77\x85\x92\x26\xe1\x14\x73\x26\xc5\x62\x08\ +\x10\x70\xce\xc4\xff\x1e\x9c\x68\xfe\xc3\x32\xa5\x82\xed\xe9\xbc\ +\x6a\x8f\x37\x37\x4f\xd9\xfb\x40\x06\x9a\x76\x99\x8b\x95\x8b\xcf\ +\x9b\x42\xe0\x50\xbe\xe8\xbb\x14\x73\x5c\xe5\x20\x36\xeb\xd9\xce\ +\xde\x4d\xfb\xc4\x47\x9f\xb7\xeb\xcf\xf7\xec\x4b\xdf\xf4\x5e\xfb\ +\x37\xbf\xe3\xf7\xd9\x9b\xdf\xf8\x2e\xeb\x8d\x5b\x98\x33\x63\x6d\ +\x13\xf6\x6d\x3e\x7a\x9f\xf3\x1c\x26\xc5\x91\xed\xe2\x4d\xc7\xc0\ +\xb5\xf3\xed\x05\x4e\xd7\x2e\xa5\x11\xfb\x80\x9a\x6f\x07\xdb\xdc\ +\x09\x90\x41\x29\x56\x41\x29\x9d\xb3\xf1\x23\xb0\x20\x67\x32\x95\ +\xaf\x34\x76\x20\xdb\x43\x66\x0c\x52\xb0\x88\x3b\xe9\x12\x0b\xbe\ +\x57\xb8\x6f\xb0\x3a\xb3\x2b\xac\x70\xef\xb0\xda\x50\x5b\x61\x85\ +\xd7\x31\xee\x8b\x8b\xff\x0b\x56\x09\x66\xb4\x6c\x02\x5a\x4f\x4b\ +\xa0\xab\xd4\xd2\xcc\xa9\x53\x5f\xdb\x91\x26\x13\xb1\xe4\x1e\xe7\ +\xcd\x1c\x5f\x1f\x91\xd6\xea\x53\x72\x2d\x7a\x11\x8b\x66\x4c\x85\ +\xcc\x28\xe3\xe0\xce\xc5\x86\x04\x4a\x4f\x5a\x13\x70\x09\x7d\x32\ +\xce\xa2\x69\x0a\x2f\x39\x62\x6e\xaa\xe9\x8f\xba\xf8\xa7\xec\x63\ +\xf0\x3d\xe3\xd7\x73\x7f\xfa\xef\xff\xcf\xf6\xc1\xbf\xf8\x1f\x5b\ +\xff\xd3\x2f\xda\xb3\xcf\x9e\xb5\x01\xd6\xf4\x1b\x5c\x7c\x30\x1d\ +\xbd\xc0\x81\xfe\x3f\xc0\x5d\xeb\x86\x8c\x6e\x0e\x69\x61\x42\xff\ +\x6e\x93\xb1\x92\xc8\x36\x64\xb4\x0b\x95\x9c\x52\x14\x31\x37\xd8\ +\xb4\xd6\xc0\xa1\x0d\x35\xa6\xd1\x86\x0d\x17\xc1\x10\x32\x2d\x75\ +\xcc\x8f\x49\xc2\x91\x47\x94\x25\xcd\x80\x6f\x1a\x7b\xcb\x38\x5c\ +\xaf\xf6\x71\x01\xc0\xd6\x24\xe7\x0d\x47\x9d\xff\xec\x1b\x17\x6a\ +\xfe\x6d\x4b\xde\x24\x2a\xed\xca\x24\xa0\xca\x39\x00\x0a\xd5\x88\ +\x00\x30\xcc\xac\x12\x2a\xef\x5a\xec\xce\x0a\x0a\x4b\x1b\x11\x28\ +\x6f\xc4\x1e\x2e\x24\x48\xc0\xa1\x7c\x32\xc0\x5b\x6b\x2e\xca\xe0\ +\x88\xd9\xe8\x27\xdb\x40\x51\xed\x7d\x02\x01\xdf\x34\x77\xd2\x79\ +\xd6\x53\x34\xd2\xa1\xe2\x7c\x62\x8d\xff\xb7\x37\xdb\x1b\xda\xf4\ +\xd6\xd0\x26\x38\x66\x7b\x68\x0f\x6e\x32\xa8\x4f\xa2\xdf\xb5\x3b\ +\xea\x3b\xe3\xcd\xb6\xad\x3d\xb2\x65\x6b\x27\xd7\xad\xcb\xff\x7d\ +\xd3\x8d\x39\xbf\x51\x23\x04\x51\x78\x82\xf9\x50\xc0\xbc\x3d\x70\ +\xb0\x10\x41\xa7\x48\x50\x61\x55\xc2\x39\xd0\x07\xfb\x05\x8d\xa5\ +\x4d\x13\xc4\xac\x11\xd9\x94\xab\x9d\x12\xe4\x23\x56\x84\x98\xe5\ +\xd0\x79\x1f\x36\x1b\x6a\xfc\x0f\x35\x6e\x76\xa8\x8c\x6e\xe9\x07\ +\x8b\x53\x64\x04\x38\x65\xc0\x82\xc4\x39\x21\xc7\x6e\x88\xd8\x37\ +\x3b\xb9\x91\xd6\xb5\xb5\xc1\xc0\x7a\x67\xd6\xac\xff\xc4\x29\xdb\ +\x7a\xcb\x13\xb6\xf9\xf8\xe3\xd6\x3a\x77\xce\x06\x6b\x5b\x36\x41\ +\xfb\xb5\x27\x63\x9b\xee\xef\xdb\x64\x6f\xd7\x7a\xd7\xae\xdb\xf0\ +\xc2\x45\x3b\xb8\x76\xcd\x86\xd7\x6f\xdb\x68\xef\xd0\x26\xd0\x73\ +\x63\xce\x7f\x76\x48\x05\x61\x0e\x79\xdb\x41\xf9\x29\x66\x31\xa9\ +\x56\x59\x64\xd4\xe8\x22\x16\x71\x07\xb8\xda\xd3\x26\xe6\xb9\x05\ +\x84\xf2\x38\x1b\xca\xfd\xac\x34\x90\x2d\x82\xfc\xe6\xb4\xa0\xa8\ +\x69\xc7\x94\x37\x3c\x01\xc6\xdf\x85\x2e\x64\x14\x20\x22\xc4\xee\ +\x9b\x37\x43\xd9\x28\xba\xa1\xc3\x9b\x67\xdc\xe4\x52\x5c\xd1\xfc\ +\xa6\x3a\x37\x98\x71\xde\xb9\xd1\xac\x3b\x3f\x90\xcb\x3d\x58\xd9\ +\x48\xee\xe3\x84\x3f\xb1\x46\x9a\x6a\x18\x73\x43\x8e\x69\x10\xa8\ +\xbc\x54\xc3\xc6\xcf\x8f\x8c\xc4\x8f\xa1\xcf\x8d\xb1\xbd\x6e\xcb\ +\x2e\x7d\xfa\x39\xbb\xb9\xf9\x90\x3d\xf1\xbd\xff\x9e\xbd\xfb\xfd\ +\x7f\xc8\xce\xac\x6f\xdb\x78\xef\x00\xa6\x63\x94\x85\x8f\xbb\x61\ +\x54\x43\x26\x7a\x2a\x8d\x1c\x68\xe6\xa9\x2c\x98\x11\x0e\x95\x11\ +\xa1\xae\x3f\xf1\x78\xf1\xfa\x08\x5a\xd6\xa0\xf5\x6d\xf5\xa0\x25\ +\xa6\x56\x34\x0e\x8e\xb5\x95\x5e\x24\x69\x8e\xd1\x22\xc3\x57\xa5\ +\xd3\xb5\x56\xec\x3c\xe6\x4b\xe3\x0c\x65\xd4\xb9\x41\x13\x4b\xe8\ +\x11\xeb\x21\xa2\x3e\x71\x64\x61\x2b\x89\x1b\x2c\x80\xe9\xc3\xb0\ +\xc4\xaf\x10\x99\x74\x11\x9f\x83\xab\xfb\x1a\x75\xf3\x2e\x6b\x2f\ +\x21\x15\xc7\x35\xea\x12\x94\xbe\x00\xf0\x1c\xd7\xf9\x04\xd4\xc7\ +\x21\xe3\xb5\xd6\x40\x57\x92\x43\xf2\xe4\x11\x82\x6f\xb4\xae\x93\ +\xde\x2f\xca\xa0\x11\xe9\xc2\x4e\x3b\x52\xdc\xac\x06\xaf\xf4\x89\ +\xb4\x75\xa8\x1c\x2c\x20\x08\x76\x73\xa4\x88\xeb\x8b\x52\x7e\xa9\ +\x61\x6a\x5d\xce\xad\x26\x5d\xfb\xd7\xbf\xf6\x8b\xf6\x37\x7f\xfc\ +\xef\xd8\x67\x2e\xfe\x9c\xbd\xf5\x4b\xce\xda\xf9\x47\xb7\xa1\x1b\ +\x85\x3f\x25\xca\x77\x40\x57\x8c\x2e\x01\xcf\x23\x75\x90\x4b\x26\ +\xd2\xf7\x16\x40\x72\x26\x56\x9a\x2f\x08\x85\x21\xa3\x37\xdf\x50\ +\x23\x45\x01\x4a\x88\xc4\x5d\x5e\xc7\x92\x51\x1f\x07\xd4\xba\xbc\ +\x51\x2c\x71\x8a\x01\x64\x54\xf2\x58\x80\xca\xc3\xca\xa4\x81\xca\ +\xe5\xed\xa5\x73\x85\xc3\xcf\x19\x8f\x0c\x1b\xdb\x94\x14\x80\x5d\ +\x90\x38\x52\x58\x97\x63\xa9\x21\xb0\x4c\x4e\x19\xd2\xaa\x28\x64\ +\x11\x6b\xdc\xc6\x2b\x3f\x1b\x55\x05\xe9\x69\xc8\x36\xc1\x67\x35\ +\xe6\x31\xdc\xd8\xea\x74\xb9\x79\xe3\xe7\x4b\x1b\x64\x38\xc7\xee\ +\x83\x67\x9f\x18\xdb\x68\xc8\x1b\xf6\x53\xbb\x75\xdb\xf4\x53\x90\ +\xb7\x6f\xcd\xec\x60\x17\x36\xed\x91\xce\x13\xe1\xff\x99\x45\xff\ +\xf0\xc4\x0c\xd9\xc6\x70\xc4\x17\xb7\x67\xfb\xe8\x37\x67\xcf\xf7\ +\xed\xc1\xc7\xf9\x73\x94\x28\x9b\xec\x64\xce\xcc\xc4\xd0\x13\x49\ +\xc2\xbd\x2e\x82\xde\xdc\xae\x86\x36\x60\xdc\x53\x80\x75\xe4\x27\ +\x92\x5b\xa6\xb6\x4e\xb7\xc8\x37\x48\x69\x6d\x11\xb4\xb2\x40\x30\ +\xeb\xd8\xd5\xeb\x2d\xbb\x7a\x6d\xa2\x9f\xcb\xe4\x67\x26\xe5\xa9\ +\x4e\x14\x92\x49\x14\x57\x4a\xb4\x57\x7d\xcd\x97\xb2\xb2\x51\x5a\ +\x23\x1b\x1d\x62\xed\xd2\xc5\x5c\xaa\xbb\x6d\x27\xb6\xcf\xd8\xe3\ +\x8f\x9d\xb6\xc7\x1e\x3b\x61\xe7\x4e\xad\xdb\xe6\xa0\x6b\xbd\x4e\ +\x5f\xe7\x57\x5f\x8a\xd1\x67\xf6\xc8\xf6\xf7\x0f\x71\x8e\x76\xed\ +\xda\xed\x4b\xb6\xb7\x73\x5d\x4f\xb5\x69\x1c\x80\x4f\x95\x2e\xca\ +\xc1\x23\x6b\xa6\x8b\xaf\x86\x6c\xc2\x50\xec\x82\xbe\xc2\xbc\x26\ +\xd2\xd0\xb1\x14\xae\x6d\x6c\x82\x9a\x8f\x2a\x50\x92\xa5\x4a\x27\ +\x15\x8f\x3a\xe8\x73\x5d\xfd\x04\x3a\xc6\xa1\x56\x9b\x39\x55\x85\ +\x2f\x83\x39\xa3\x86\x49\x2a\xcb\xc7\x61\x95\x5f\x20\xe2\xcf\x3c\ +\xf2\xd0\x0b\x4a\x75\x59\xd0\x3c\xf5\x3c\x8f\x92\x29\x81\xc2\x86\ +\x47\x18\x25\x0e\x19\x78\xc6\x3c\xff\x52\x4b\x83\xa3\x29\x83\x73\ +\x6d\xf8\xe6\x97\x22\x78\xfd\x74\xec\xfa\x8d\xeb\xf6\xd1\x8f\x3d\ +\x6f\x87\x97\x4e\xda\x7b\xdf\xfd\x9d\xf6\x6f\xfe\xce\x6f\xb1\x07\ +\x1e\x78\x1a\x73\xac\x0e\xae\x4f\x14\x12\x7e\x38\xe7\xe3\x98\xe8\ +\xff\xab\xe7\x79\x0a\x20\xe4\x5d\x6d\xe7\x3a\xd1\x6a\x37\xc4\xb2\ +\x97\x81\xcb\xa8\x8b\x71\x22\x14\x8a\x9c\x72\x9b\x6c\xf3\xf4\xe1\ +\x72\x89\x00\xd0\x94\xa5\x0d\xe9\xa0\xfc\x4d\x3e\x0e\x46\xc1\xa9\ +\x43\x2f\x43\xe3\x18\x28\xb5\x7a\x85\x38\xc6\xf7\x0a\xaf\x69\xac\ +\xce\xea\x0a\x2b\xdc\x3b\x60\xce\x16\x9f\x60\x2b\xac\xb0\xc2\xeb\ +\x0e\xf7\xc5\xc5\xbf\x58\x09\xce\x12\x5e\x95\x8a\x1d\xe7\xf4\xf8\ +\x09\xab\xd6\x5b\x73\x6a\x08\x28\x2b\xc3\x2e\xf9\x90\xb9\xa2\xd0\ +\x1a\x9a\x7d\xc5\x41\x81\x64\xcd\x13\x0f\x5c\x58\x70\x51\xe1\x8b\ +\x81\x72\x10\x5c\x6c\x44\x3a\xbe\xf8\xa6\x2d\x2c\x9b\xa2\x60\x92\ +\x5d\x68\x26\x53\x9b\x71\xd1\xc5\x08\xcb\x7c\xfe\x6b\x36\x37\xd5\ +\xc6\x58\x98\x0e\xfa\x66\x9b\x3d\xfb\xc4\x2f\xfe\xaa\xfd\xc8\x7f\ +\xf2\x9f\xd8\x0b\x3f\xfa\xd3\xf6\xae\x37\x9e\xb0\x01\xd6\x0b\x03\ +\xac\x98\x78\x93\x48\x69\x90\x87\x36\xbb\xaa\x43\xf9\x70\x61\xc1\ +\xb8\xcd\x1f\x41\xc2\x42\xc5\xc5\xca\x54\xb1\xec\xa0\x61\x63\x39\ +\x29\x99\xbe\xed\x27\x1e\x69\xe4\x82\x32\xe8\xc0\xcb\x37\xe8\x76\ +\x97\xff\x63\xc1\x9b\x19\xb4\x71\x7f\x47\xf3\x67\x44\xff\x21\xa7\ +\x8f\x00\x54\xa8\x7e\xca\xc8\x65\xe8\xcd\xe2\x4d\x23\x0b\x34\x27\ +\x38\xbe\x71\xf8\x37\xae\xb9\x20\x64\x1c\x7e\x68\x2c\x5b\x25\x72\ +\x7b\x49\x02\x85\x20\x32\x11\x22\xe6\x4d\x5d\xf0\x02\x68\xf9\x01\ +\xaf\xf6\x0a\x39\x65\x2c\x8b\xc3\xe3\x0c\xd3\x05\x21\x1a\x8c\x97\ +\xdc\xe5\xf4\x53\xd6\x5c\x19\x13\x41\xab\xaf\x2c\xca\x95\xaf\x34\ +\x4e\xe3\x20\xc7\x7e\xc8\x9f\xa1\x9b\x1e\x8c\x6c\x7a\xfb\xc0\x46\ +\xd7\x47\x76\x78\x7b\x64\x76\x38\x46\x3f\xf3\x9b\x31\xad\x5e\xcf\ +\xda\xdb\x7d\x6d\xa8\x0d\x4e\xac\x5b\x87\x1b\x6a\xf0\xe9\x65\xf0\ +\x8c\xb2\x8d\x08\x4a\xf4\xb3\x9b\x94\x45\x86\x95\x3a\x10\x65\x29\ +\x70\x3f\x05\x54\xa6\x88\x74\x7c\x7b\x59\xa2\x90\xcb\x24\x04\x1e\ +\xa3\xb4\x4e\x38\x40\x26\x27\x31\x0e\xe6\xaa\xf3\x3d\x9c\xd8\xc1\ +\xb5\x3d\x3b\xbc\xbc\xeb\x1b\x6a\x23\xd6\x35\xed\xfd\x1c\x10\x8a\ +\x43\x91\xb2\x92\x05\x4f\x26\xce\xb9\x6f\x38\x63\xb9\xdf\xed\x58\ +\x97\x37\x79\x4e\x6e\x5a\xef\xf1\x2d\x9b\x3d\x71\xd6\x4e\x3d\xf9\ +\xb0\xad\x9d\x3b\x67\xed\x8d\x6d\xeb\xce\xf8\x53\x99\x1d\x33\xfe\ +\xa4\xdf\x95\x5b\xd6\xba\x72\xc5\x0e\xaf\xdf\x02\x7d\xcd\x0e\x6e\ +\xdd\xb2\x1d\x6e\xac\x8c\x46\x36\x61\xff\xe7\x35\x81\x8c\xb8\x61\ +\xe2\x55\xf7\x32\xf1\x7c\x78\xcb\x79\xec\x54\x40\x04\x25\xf3\x48\ +\x9b\xd4\x88\x4e\xdb\x39\x07\x77\x81\x70\x92\xbe\xe6\xb1\xc4\x51\ +\x64\x41\x94\x76\x23\x40\x8b\x6d\x1a\xb3\x09\x53\x14\x46\x0d\xeb\ +\x54\xe1\x01\xfa\x56\x2b\x44\x7f\xf3\x7e\x88\x38\xbe\x3e\x5d\x6f\ +\xa6\x69\x73\x8d\x1b\x61\xbc\x21\xc4\xcd\xb2\x31\x6c\xb8\x87\xc5\ +\x01\x35\x3a\xa8\xc6\x65\x6e\xa2\x69\xc3\x8c\x7e\x21\xa4\x8d\x08\ +\xc8\x31\x4e\xea\xa6\x3d\x75\x4c\x07\x39\xcb\xc3\xe4\x48\x29\x31\ +\x19\xfe\x74\x58\x5e\x13\x38\xdb\x76\x38\x3a\xb4\xdb\x57\x2e\xdb\ +\xed\x37\xbc\xdd\xde\xf0\xe7\xbe\xd7\xde\xf5\xed\xdf\x64\x6b\xfb\ +\x5d\xdb\xdb\xd9\x43\x1a\xf7\xc9\x27\xd3\x3a\xed\x8e\x75\x22\x1d\ +\xd3\xb3\xc7\xcb\x0f\xfb\x01\x32\xd2\xcd\x7d\xd0\x39\x26\x6a\x0c\ +\x0d\x19\xcb\xc7\x17\xe5\x8d\x0d\x59\x97\xe9\x28\xb6\xec\x60\xa1\ +\x93\x11\x23\xa6\xa6\x30\x68\xc5\xe0\x05\xb7\x29\xf6\x32\x23\x8d\ +\x72\x2a\x1d\xca\x19\x7a\x96\x5e\x66\x10\xa8\x75\x24\x57\xb3\x50\ +\x83\xb7\xd7\x8f\xa0\x19\x95\x92\x34\xc1\x02\x64\x05\x50\x97\xf4\ +\x2b\x40\x9d\xbc\xc6\xe7\xe0\xea\xbe\xc5\xb2\xa6\x5d\x76\x2a\x84\ +\xda\xf8\x58\xa3\x06\x32\x0d\x7b\x5e\x20\xc7\xb4\x7b\x5e\x2f\x0e\ +\x5e\x4d\x01\xc8\x1b\x8e\x31\x38\xd9\xd6\x32\x9a\x21\xe6\xb5\xa4\ +\xab\x84\x36\x10\xaa\xaf\x51\x2e\x0b\xe9\x9c\x09\x1f\x7a\x4b\x29\ +\x53\xa7\x1c\xea\xcf\xf4\x04\xa1\x36\xac\x58\x6e\x5e\x84\xe0\xa7\ +\x36\xd6\x4f\x06\xf2\x89\xa3\x8f\x7e\xfc\x25\xfb\x3b\x3f\xfb\xf7\ +\xec\x57\x3e\xfc\x41\x3b\x7f\xea\xd0\x1e\x79\x72\xdb\x4e\x9c\x1e\ +\xc0\x98\x4f\xed\x60\xbc\xd7\x35\x4a\xcf\x9c\x35\x05\xe0\x54\x34\ +\x03\xcf\x48\xa8\x9f\x50\xe0\x95\x17\x23\x80\xab\xe9\x87\x65\x04\ +\x53\x3c\x89\x06\x58\x2e\xb2\x88\x78\x0d\x92\xe5\xc6\x90\x3f\xb9\ +\x46\x9a\xe5\xa7\x2f\x1a\xb9\x79\xd2\x4c\xa4\x74\xf4\xed\xac\x08\ +\xd1\x4e\x06\x6a\x8a\x06\x5e\xab\xb2\x91\xa2\x06\x77\x90\x92\x7f\ +\xc0\xc5\x8d\x6e\x0e\x10\x1f\xa3\xb9\x83\x02\x38\xde\x5d\x03\xf9\ +\xa6\x04\x25\x49\x85\x2a\x84\xf6\x54\xe1\x5c\xa7\x8d\x28\x4c\x4c\ +\x29\xeb\x74\x5b\x86\xe9\x8e\x1a\xcf\x4d\x59\x2f\x9a\xf1\x7f\xf4\ +\x60\x8b\xba\x72\xae\x38\xc6\x67\xc7\xce\xae\xd9\xd5\xab\x33\xbb\ +\x71\x73\x62\xfb\x7b\xca\x2c\xda\x99\xf6\xcc\x83\x7e\x9d\xe6\xf8\ +\xce\xf3\xb4\x86\xcf\xff\xf3\x0f\xf7\x70\xc0\x3f\x4f\x82\x37\x4e\ +\x20\xe8\x4c\x77\x0c\x54\xae\x88\x93\x52\x0f\x99\xf3\x45\xb8\x05\ +\xcb\x5e\xf7\x31\x82\x64\x5a\x2f\xd2\x0d\xe8\x37\xfa\x5e\x0d\x9d\ +\xf7\xd8\xe0\xb8\xd9\xb2\xcb\x97\x67\x36\xe4\xa6\x15\xe7\x91\xf4\ +\x54\x15\xa3\x90\x21\xf6\xfe\xcb\xc0\x35\x9e\xb7\xd3\x6c\x57\xd6\ +\xbd\xd3\x41\xfb\x8e\xf8\x74\xe0\x1a\xe6\x53\x1b\x76\xf6\xec\x29\ +\x7b\xf4\xdc\x49\x7b\xf4\xf1\x6d\x3b\xb5\xb5\x6e\x1b\xfc\xc9\xf1\ +\x16\xff\x93\xb6\xa3\xfc\x86\x07\x43\x1b\x1d\x0e\x6d\xb8\xbf\x67\ +\x3b\x38\x29\xb7\xf7\x6e\xdb\x68\xbc\x8b\xab\xef\x16\x9c\x62\x2c\ +\xe0\xfc\x8c\xad\xcf\xf3\xc7\xbc\x94\x5d\x9d\x73\x0d\x97\xcc\xcb\ +\x97\xc9\x8e\x43\x58\xcd\x19\x2f\xe4\xa3\x7a\x32\x76\x96\x98\xd3\ +\x53\x09\x01\x65\xe5\x9a\xcd\xeb\x97\x75\x61\xfb\x95\x14\xd1\xdf\ +\xdc\x6a\x01\x91\xf6\xe5\xb0\x90\xbe\x4e\xc3\xa2\xf2\xe7\x50\xf9\ +\x54\x1f\x0f\xad\x93\xd0\x9d\x7c\x1d\x0a\x3a\x8b\x41\x3e\x8a\xc5\ +\x98\x2d\xad\xe9\x91\xd7\xc2\x29\xd8\x90\xf2\x9f\xe4\xf7\x31\xda\ +\x6d\x00\x56\x82\xe9\x18\xd1\x69\x8c\x2d\x93\x19\x37\xab\xb1\x86\ +\x6d\x4f\xed\xf2\xc5\x5d\x7b\xfe\x53\x1f\xb3\xd9\xc1\x13\xf6\x0d\ +\xef\xf9\x4e\xfb\xb6\xdf\xf6\xed\x76\x62\xfb\x14\xce\x3b\x7d\x72\ +\x0e\x55\xf5\xd5\xe2\x2b\x78\x21\xda\x4a\x3a\xf6\x09\xe4\x01\x81\ +\xd6\xba\x4c\x49\xa5\x12\xd1\x88\xed\xac\x14\x7e\xdd\x07\xad\x90\ +\x0a\x02\xb1\x5e\xc1\x4b\x2f\x92\xb1\xb8\x90\x36\xf2\x94\xca\x79\ +\xe1\x9c\x16\x15\xea\xac\x7f\xb2\x05\xc5\x80\x98\xab\xdc\x5d\xe2\ +\x88\xc7\x15\xee\x03\xac\xce\xea\x0a\x2b\xdc\x3b\xac\x36\xd4\x56\ +\x58\xe1\x75\x8c\xfb\xe6\xe2\xff\x82\x55\x64\x59\x46\x8b\xd3\x92\ +\xc6\x46\x6b\x18\x11\x38\x34\xe1\x27\x53\xc5\x49\xc7\x30\xec\xc3\ +\x71\x25\xd3\x6a\x83\x93\x7e\xe7\xb9\x20\x49\x5b\xbf\x09\x14\x3c\ +\xed\xa8\x97\x84\x0b\x96\x90\xe3\x70\x1b\x25\xc0\x3b\xcb\x0a\x5b\ +\x4c\xb2\x29\xd6\x3a\x95\xbc\xcf\xfe\xc1\xcc\xf4\xa7\xec\xc6\x9b\ +\xf8\x88\x67\x58\x94\x68\xa1\x70\xea\xb4\x5d\xf8\xcc\x67\xec\x27\ +\xff\xbb\xbf\x6a\xbf\xf0\x83\x7f\xd3\xde\xfa\xd0\xc0\xb6\x4f\xac\ +\xd9\xc6\x64\x6a\x3d\x2c\x66\x3b\x5a\x4c\x60\xb2\x9f\x87\x16\xfe\ +\xf4\xe9\x3c\x17\x18\xba\xe1\xc0\x98\x32\xe6\x1d\x34\x99\xcc\x3e\ +\x37\xd2\x64\xa3\x9b\x3b\x60\xb4\x30\x64\x31\x5c\xe7\x37\xaa\x28\ +\xc7\x9b\x4f\x3d\xc5\x13\x6b\x99\xaf\x5c\x7a\x20\xda\xe3\xf9\x43\ +\x7e\xa0\x2a\x44\x2e\x3a\xd5\x56\x14\xf9\x82\x88\x02\x9a\x97\x6f\ +\xf2\xf2\x0d\x9a\x6d\x9c\x07\xef\xc3\x83\x80\x8a\xe7\x20\xec\xe0\ +\x0b\xa2\x02\x27\x3d\x0c\x8b\xaa\x7f\xb0\x4c\x8d\xbd\xb2\x5d\x02\ +\xca\x55\x2e\x67\x45\x37\x58\x48\x15\x6c\x6d\x93\x25\xe4\x9b\x37\ +\x6a\xd2\x0f\x79\x6a\x54\x51\xb2\xe2\x13\xd2\xcc\x79\x49\xe8\xcf\ +\xc4\x47\x13\x1b\xdf\x3a\xb4\xe1\x8d\x03\x3b\xbc\x7e\x68\xe3\x03\ +\x6e\x0a\x60\xe1\xdb\x6f\x5b\xff\xc4\x96\xad\x3f\xb8\x65\x83\x93\ +\x03\x6d\x7e\xd2\x71\x36\x23\x3d\xba\xa7\xf0\x47\x85\xda\x90\x74\ +\xca\xea\x28\x74\x47\xe0\xe7\x42\xf5\xcc\x42\xc2\x50\xb6\x12\x91\ +\x8a\x56\x48\x3d\x91\xe6\x6a\x7b\x49\x80\xb0\x8d\x13\xc3\x7e\xa2\ +\x1b\x39\x80\xce\x33\xea\xaa\x27\xd4\xae\xf8\x4f\x3e\xda\x10\x75\ +\x95\x96\x70\x27\xe4\x8b\x2c\xfc\x92\xd7\xf9\x65\x5e\xec\xc3\xbc\ +\x6b\x89\xeb\xab\xbf\x81\x03\xd7\x90\x3d\xb8\x61\xfd\x47\xce\xd8\ +\xe0\xd1\x33\xd6\x3e\xb3\x69\xeb\x5b\x1b\x36\x69\xf7\xac\x3b\xed\ +\xda\xfa\x01\x52\xf3\x27\x58\xaf\xde\xb0\xc9\x0b\x97\x6c\xef\xfa\ +\x8e\x4d\xf6\x0e\x6d\x34\xf1\xcd\x97\xd1\xcc\x63\x5d\x03\xca\x27\ +\x2b\xe3\x35\x9f\x2b\x0f\xe0\x7d\xba\x46\x68\x2b\x79\x6d\xbf\x1c\ +\x47\xd3\x2c\x05\xcc\x68\x49\xb3\x79\x9f\x29\xe1\xb9\x93\x60\xce\ +\x15\xcb\x78\xc4\xb5\x04\x5e\x47\xa5\x8c\x7a\xba\x38\x73\x61\x54\ +\xcb\x2b\x3a\x40\x4b\xf6\x24\xb6\x19\x19\xfd\x0c\xa3\x68\xc8\x30\ +\x8e\x6a\xf3\x2b\x36\xcf\x68\xe3\x74\x23\xe3\x0d\x40\xde\x6b\x0c\ +\x47\xc8\x9a\xd7\x3f\xe5\x60\x19\x6b\xcc\x06\xca\x5d\x1f\xa4\xe3\ +\x75\xc2\xb4\xc1\x2b\x2f\x46\xe0\xf4\x3f\x69\x48\xc3\xd1\x9c\x92\ +\xd6\xb8\x65\xbb\x18\x7a\x77\xf7\xf6\xed\xd2\xcd\xdb\xf6\xc8\xef\ +\xf8\x36\x7b\xcb\x9f\xfd\xe3\xf6\xd0\x97\x7d\x99\xf5\x6f\x0e\x6d\ +\x6f\x6f\x87\x1e\x6d\x32\x1c\xeb\x29\x36\x8e\xab\x1d\x1c\xd9\x1e\ +\xf4\x42\x8a\x31\xeb\xef\xd7\x39\xf5\xb4\xf5\x2f\x3f\x70\x1c\xc5\ +\x68\x27\xbd\x9b\x81\x63\xbf\x0c\x3b\x06\x3e\x46\x36\xb1\x0e\x8d\ +\xf1\xae\xe7\xc1\x17\xdf\xa2\x5d\x51\xe9\xee\x64\x87\x32\x85\x0d\ +\x63\x81\xb1\x48\x06\x99\x3e\xea\x91\x95\x0a\x38\x89\x90\xfa\x62\ +\x50\xa3\x32\xfe\x5c\x41\x17\xaf\x82\xdb\xfb\x16\x8b\x6d\x75\x04\ +\x2f\x6b\x30\x0f\xb5\xb5\x37\xb8\xc6\x37\x51\xf3\x58\x3c\xf7\xba\ +\xa6\x65\xe8\xd7\x97\xeb\x9c\xe6\x68\xa8\x4d\x6d\xea\x21\xf0\x54\ +\xa9\x67\xcc\x9b\xb5\x54\x85\x0c\x2f\xa5\xc1\x8b\x3a\xf7\x8d\x43\ +\x63\x04\x8e\xf0\x23\x35\x49\x8f\x0a\xc8\xd3\x44\xd7\x95\xfa\xb6\ +\x4b\xe4\x13\xd7\xf7\x5a\xa7\x6f\xd7\x2f\xed\xd8\x07\x7f\xf5\xa7\ +\xec\x7f\xfd\x97\x1f\xb0\xd1\xc1\xf3\xf6\xf4\xa3\x27\xed\x81\x87\ +\x36\xcc\x7a\x43\x6b\x4f\xb9\x01\x80\x14\x18\xd7\x75\xad\x12\xca\ +\x04\xe5\x4a\xe7\xf4\x17\xb1\x90\x85\x40\xcc\x9c\xf8\x74\x13\xcb\ +\xc9\x31\x80\x86\xba\x11\x2c\x03\x00\x72\x5e\x8b\x99\xdc\x29\xe8\ +\xb9\x09\xa4\xfd\x3c\x8e\x09\x61\x43\x1a\x99\xca\x22\xd3\x90\x8e\ +\xb9\xd6\xdd\x01\x85\xe2\x9b\x85\x9f\xa1\x64\x2a\xab\xb7\xa5\x2b\ +\x40\x53\xb4\x00\xaa\x99\x45\xa3\xab\xac\x82\x3c\x92\xee\x88\x20\ +\x70\x9c\x1c\x58\xa6\x2a\xb2\x4a\xe9\x6d\xc0\xb2\xa2\x2f\xa1\x71\ +\xa9\xe2\x53\x6a\xda\x14\xe3\x8b\x0d\xc2\xb6\x42\xa4\xaa\x55\xed\ +\xc3\xb6\xe7\x93\x33\x98\x36\xd8\xed\xdb\x33\xbb\x7e\x1d\xe3\xfc\ +\xce\xd4\xf6\x77\xdb\x36\x9e\xf0\x89\xa8\x99\xf5\xb4\x33\xe7\x1f\ +\x30\xfc\xdc\xe0\xb9\x5f\x5f\xeb\xd8\x43\x8f\x76\xec\xcc\x03\x98\ +\x97\x13\x73\x85\x9d\x63\x02\x55\xa6\x0b\xf0\x12\x33\x15\x0b\x28\ +\x72\x09\x98\x1e\x4a\x9d\xab\xf0\xb5\xc4\x65\x58\x09\xb5\xfa\x88\ +\x2c\x04\x8c\xd8\xaf\x6e\xdd\xee\xd8\x45\x6e\xa8\x8d\xf7\x6d\xa6\ +\x5f\x7d\x84\xa5\x77\x08\xc0\x53\x95\xb6\xd3\xe7\x29\xfb\xb1\xeb\ +\x43\x8b\x37\x6b\x82\x94\x6d\x3e\xfd\x34\xb6\xf1\xa8\x6f\xed\xfe\ +\xa6\x9d\x3b\x75\xce\x1e\x7f\x62\xcd\x9e\x78\xec\xa4\x6d\x6f\xf5\ +\x6d\xc0\x2f\x06\xd2\x76\xda\xb6\xe1\xe8\xd0\x0e\xf6\x46\x76\xb0\ +\x7b\x60\xd7\x77\x6e\xda\x04\xf9\x4f\xc6\x07\x48\x8f\xb6\xef\x8c\ +\xe0\x97\xbf\xba\xe1\x9b\x6e\xa5\xe3\x09\xcc\xcb\xf3\x27\x1a\xea\ +\xce\x58\xde\xa3\x8f\x03\xeb\x14\x64\xc1\x62\xae\x51\xa0\x39\x53\ +\x32\x90\x47\x87\xf3\x6b\x92\x3c\xde\x9c\x67\x02\x91\x2a\xf0\xf2\ +\xd7\x2c\xd5\xec\x1f\x77\x36\x63\x06\x85\x12\x34\x95\xe1\x5c\x06\ +\xc7\x04\x0c\x4f\x1d\x9b\x91\x72\x8d\xbd\x51\x6e\xc9\x74\x82\x23\ +\x46\xf9\x39\xff\xa1\x64\xb1\x7f\x8a\x93\xad\x1f\x92\x07\x54\x65\ +\xf1\xd0\x31\x6f\xe6\x21\x49\xd7\x86\xb3\x7d\x7b\xe1\xb9\x6b\x76\ +\xf1\x33\x97\x6d\xb3\xf7\x36\xfb\xf6\xdf\xf6\x7b\xed\x3d\xef\x79\ +\xaf\xad\xf5\xb7\xec\x70\x1f\x7e\x60\xeb\x9b\xfa\x5e\x7e\xf7\x15\ +\x10\xe1\x25\xd1\xc6\x99\xb2\xe0\xd8\x08\x59\xb4\xb5\x8f\x8b\x41\ +\xeb\xca\x66\x1c\xb2\x8c\xa5\x23\xeb\x69\x29\x77\xf6\x28\xad\x28\ +\xd3\x09\x21\x17\xc9\x18\x54\xa5\x73\xaa\xe2\xdd\xb0\xaa\x44\x20\ +\xe5\x52\xa4\xfd\xa2\x11\x91\x36\xcb\x90\xe9\x56\xb8\x9f\xb0\x3a\ +\xab\x2b\xac\x70\xef\xb0\xda\x50\x5b\x61\x85\xd7\x31\xee\xab\x8b\ +\xff\x0b\x52\x99\xe3\x26\xa2\x8b\x08\x3b\x44\x8d\x16\x8c\xc4\x8c\ +\x53\xef\x32\x2d\x13\x40\x6b\x49\x21\xb5\x02\x1d\x5a\xca\x81\x74\ +\x5e\x2b\x13\x3f\x4a\x7a\x5f\x1c\x30\xe6\x93\x12\x5c\x98\x78\x9a\ +\xc6\x26\xfd\x85\x44\x79\x35\x93\x73\x40\x36\x2c\x2b\xd2\xc6\xe4\ +\x5d\x37\x51\x3a\xfc\x99\x3e\x2c\xe2\x21\xe3\xd3\x13\xed\xed\x6d\ +\x3b\xd8\xdf\xb3\x7f\xf6\x3f\xff\x7d\xfb\x89\xbf\xfc\x9f\xdb\xa9\ +\xfd\x5b\xf6\xe4\xf9\x81\xad\x63\xb1\xcb\x83\x37\x16\xf4\xf3\x75\ +\x48\xaf\xcd\x33\xe5\x08\x9a\x3e\x25\x82\x86\x72\xe5\x4d\xb9\x54\ +\x11\x30\x72\x19\x79\x89\xb8\x38\xe4\x5a\x25\x6f\xdc\x54\xb1\x16\ +\x28\x95\x0d\xff\x40\xdf\x37\x2b\xdc\x8f\xd2\x31\xd6\xe1\x32\xe7\ +\x99\x7f\xf2\x7c\x23\x20\xa4\x0b\x92\x2f\xd0\xd9\x5e\x73\x28\x36\ +\xd0\x6b\x11\xc7\xe6\xf3\x73\xe0\x71\x24\x94\x9d\x94\xee\x47\x32\ +\x51\x0e\x39\x70\xb2\x46\xb8\x17\x94\x24\x05\x62\xf8\x46\x50\xa7\ +\x63\xb9\x43\x47\xb9\x54\x94\x31\x5e\x04\xcb\x46\x8b\xa6\xa2\x80\ +\x3b\x63\xaf\x91\x16\xc1\xb2\x98\x16\xec\x23\xc1\x00\xde\xcf\x98\ +\x37\x7f\x76\x6e\xb8\x7b\x68\xa3\x5b\x43\xdb\xbf\x36\xb2\xc3\x5d\ +\x34\x4c\x77\x6a\x83\xd3\x6b\x76\xe2\x81\x13\x36\xd8\xea\xeb\xfc\ +\x28\x7b\xa5\x24\xc0\xb0\x6d\xd2\x1f\x85\xf4\xe5\x4a\xa0\x6e\x37\ +\xc6\xc1\x03\x62\x9d\x04\x91\xbd\x0c\x61\xd4\x8b\xe7\x81\xb5\x91\ +\x3c\xfd\x03\x35\x2d\x27\x8c\x2a\xa1\x28\x54\xc8\xe3\x14\x78\x4c\ +\x9f\xda\x50\xbb\xe6\x1b\x6a\x2d\xd6\x71\x94\xcf\xe3\xb9\x91\xca\ +\x84\x80\x37\x2e\x75\xc3\x2d\x30\x6d\xb3\x9e\x5d\x6b\xf7\x70\x1d\ +\x0d\xba\xd6\xd9\xe8\x5a\x7f\xab\x67\x9d\x73\x7d\xdb\x38\x7f\xd2\ +\xd6\xcf\x6e\x5a\xeb\x14\x8e\xb5\x35\x1b\x74\xbb\x36\x6a\xc3\x66\ +\x67\x64\x9d\x1b\x87\xd6\xd9\x1b\x99\xed\xee\xdb\xf8\xda\x2d\xdb\ +\xbb\xbd\x6f\x87\x28\x47\x67\x36\xb6\x29\xae\x4d\x76\x77\xde\x8c\ +\x62\x6e\xac\x46\x39\x67\x59\x96\xa0\x13\x92\x35\x6c\xc0\x2d\x4b\ +\x5a\x9d\x10\x97\xf9\x8d\xc3\x23\x09\x02\x99\xc3\x02\x60\xde\x9c\ +\xc3\x3b\xc1\xfd\xd2\xb4\xe4\x30\xc7\x54\x90\xac\x52\xa0\xb2\x7e\ +\xda\x50\x3a\xa5\x21\x13\xfa\x3a\x72\xa3\x02\x9d\x15\xf6\x17\x6e\ +\x70\xb1\x8f\xc4\x4d\x15\xbf\x6e\x71\xc4\x13\x66\x4e\x37\x87\x7e\ +\xde\x91\x07\x2f\x76\x9e\x56\x9d\x5a\xe8\x44\x33\x0e\x79\xa4\x53\ +\xbe\x88\x14\x44\x1e\xd2\x51\xa5\x32\x48\xe9\x79\x21\xdd\x44\x4f\ +\xa5\x20\x0d\x8e\x9d\xbe\xd9\xd5\x17\xae\xda\x6c\xb0\x61\x67\xbe\ +\xeb\x0f\xd8\x3b\xfe\xf4\xbf\x63\x0f\x9e\x7f\xc0\x26\xd7\xf6\xed\ +\x60\x84\xbe\xc0\x0d\x54\x5c\x6f\x6d\xd4\x81\xde\xba\x74\xc5\xfc\ +\xa2\xae\x7e\x1e\x15\x50\x51\x68\xdd\x68\xe3\xa3\xbe\x8c\x61\xcb\ +\xe7\x85\xf3\xa9\x5e\xd9\xb1\x33\x51\x8a\x48\x9b\x5d\xe1\x33\x9f\ +\x56\xd1\x13\x95\xb2\xe5\x00\xcb\x24\xd0\xc9\x71\x63\xeb\xac\x06\ +\x60\x1a\xd2\xc8\xc9\xda\x46\x62\xd2\x22\xfc\x50\x24\xc1\x5c\x1c\ +\x94\xda\xad\x06\x59\x15\x17\x36\xae\x5b\x30\x28\x29\x5f\x01\x8e\ +\x4b\x72\x0f\x5c\xdf\xf7\x60\x1b\xb1\x5d\x16\xdb\x4a\xb8\xa3\xf2\ +\xce\x50\x5b\xf3\x1c\xe7\x75\x4e\xbe\x81\x3c\x66\xe7\x80\x8e\x76\ +\x92\xea\xed\xb4\x8b\xc8\xc5\x48\xa6\x27\x6f\x42\x1f\x72\x39\x4f\ +\x3f\xbc\x5e\x29\x8b\x43\x3e\x91\x46\xd7\x70\x25\xf3\xbc\x5c\x44\ +\x7b\x76\xdb\x14\xb9\x1d\x04\x2a\x74\x5c\x2f\x44\xf4\x6d\x85\x9d\ +\x99\xad\xe1\x33\x91\x3f\x95\xfc\xaf\x3e\xfe\x11\xfb\xc0\x4f\xfd\ +\xb0\x7d\xe4\x93\x3f\x67\x8f\x3c\xd8\xb5\x27\x9e\xd9\xb6\xb5\x35\ +\x5a\xb1\xcc\xda\xdd\xa2\x17\xd0\xe4\x19\x7a\x7b\xf0\x9a\x52\x4e\ +\x75\xe6\x91\x35\x03\xd9\x90\x14\x38\x67\x82\x9a\xbe\x20\xd7\x38\ +\xa1\xc3\x2d\x14\x82\x66\xcc\xdb\xdb\x9a\x53\xc5\x5c\x4d\x1b\xf6\ +\x79\x59\xcb\x26\xf8\xc8\x8b\x9b\x49\x2f\x0f\x66\xea\xc5\xab\xe1\ +\xc5\x46\x8d\xd8\xbe\x3a\x0f\x12\xcf\xdb\x85\x98\xb9\x34\xf2\xa3\ +\x86\x15\xe9\x38\x22\x58\x00\xf5\xe1\xf4\x4e\xa6\xd2\x21\x38\x52\ +\x4b\x35\x80\x83\xed\x44\xbd\xda\x13\x72\x45\xe0\x79\xc6\xb2\x5e\ +\xa2\x69\x83\xb6\x63\xfb\xf3\xe7\x20\xf7\xf6\x27\x76\xed\x4a\xcb\ +\x6e\xdd\x18\x83\xe6\x26\x44\xcb\x7a\xfa\x29\xc9\x98\x73\x23\xdd\ +\xe6\x66\xd7\x1e\x7d\xdc\x6c\xfb\x14\x3e\x1c\x04\xe6\xeb\xde\xef\ +\x0e\x2c\x9b\xdb\x7a\x4a\x5e\x53\x62\x5f\x06\x69\xed\xe5\xad\x91\ +\xa7\xaa\xd6\x89\x86\x70\x99\x2c\xc1\x0d\xb5\x9d\xdd\xae\x5d\xbc\ +\x34\xc3\xe7\xd9\x7e\xfc\x54\x38\x50\xd9\x30\x55\xf6\x0b\xcf\x84\ +\x81\xb7\x9e\x9b\xb1\x7d\x70\x4d\xea\xff\xeb\x66\xd6\xeb\xf7\x6c\ +\x63\xeb\x84\x3d\xfc\xe0\x19\x7b\xe6\xd9\x2d\x3b\x7d\xb2\x6b\xbd\ +\xf6\xba\xe6\x46\x9c\xcf\x8c\x31\x6f\xdb\xb9\xb9\x67\xd7\xaf\xee\ +\xda\xed\x9d\x1b\x36\x99\xee\xe1\xa3\x76\x17\x5a\x3e\x41\xc8\x9f\ +\xf0\xec\xe8\xa7\x34\xa7\x7c\xca\x1c\xc3\x83\xbe\x50\xa5\xce\xee\ +\x79\xb1\x32\xa5\xfe\x5e\x00\x41\x64\xca\x8f\xa0\x32\x5c\x44\xaa\ +\xe6\x7c\x2e\xb3\x8f\xb6\x51\x08\x63\x44\xce\x7b\x42\x86\x99\x2a\ +\x37\xb7\x39\x52\x70\x93\x31\x6d\x28\x3c\xba\xde\x8b\x98\xa8\x9d\ +\x04\x24\x62\x3a\x67\x8f\x81\x6b\xd9\x2e\x5a\xbb\x72\x1e\x83\xb9\ +\x8f\x36\xd4\x28\xe7\x8b\xf3\x1b\xf8\xf6\xf1\x92\xb1\x52\x14\xda\ +\xc7\x50\x3f\xd7\xb4\x07\x85\x17\x25\x38\x17\x74\xaf\xa1\x9a\x4a\ +\x9e\x14\xd2\xcc\x8b\x01\x33\x75\x3b\xb2\x9a\x83\xc1\x98\x7e\x78\ +\x6d\xed\xec\xee\xd8\xa7\x3f\x72\xd1\xae\x5e\x99\xd8\x9b\x9e\xfa\ +\x2a\xfb\x96\x6f\xfc\x7d\xf6\xb6\xb7\xbc\xd5\xba\x9d\xbe\x1d\xe2\ +\x7a\xd3\xbc\x8e\x6e\xe4\x8f\x8e\x70\x70\x3c\x93\x1f\x22\xea\xce\ +\x36\x50\xbb\x89\x53\xac\x57\xc8\x72\xce\x94\x32\xb5\x3d\x75\x91\ +\x8e\x2f\xbd\x0b\x1d\x31\x21\x5a\x84\xf4\x1e\xa7\xdc\x79\x42\x21\ +\x2b\x25\x3a\xe4\x2e\x64\x10\xb2\xa0\x48\xb2\x3e\x59\xb9\x8c\x13\ +\x32\x48\xd4\x46\x89\x9a\x5f\xe6\x60\x85\xfb\x09\xab\x33\xbb\xc2\ +\x0a\xf7\x0e\xab\x0d\xb5\x15\x56\x78\x1d\xe3\xbe\xb8\xf8\x73\xce\ +\x77\xcf\x2b\xb3\x38\x99\x5c\xcc\xe0\xb8\x09\xe7\xbc\x9d\xaf\x05\ +\x53\x86\x58\x6f\x2c\x1e\x20\x93\x54\xab\x09\x52\xc1\xf3\xc6\x42\ +\x91\x01\x49\xc7\xc1\x21\xbb\x49\xcb\x15\x07\x65\x58\x3a\x86\x8e\ +\x3c\x69\xde\x16\xe2\xfc\xb9\xb9\x99\xcb\x14\x8c\x99\xb0\x29\xb5\ +\xf3\x2e\x8f\xe5\x09\x16\x99\xbe\xc8\xe1\x62\xa3\xdd\xe5\x26\x58\ +\x07\x71\xd7\x26\xe3\x43\xeb\x6c\x9c\x30\xc3\xe2\xf5\x43\x3f\xf5\ +\x13\xf6\xa3\xff\xc5\x7f\x6a\xd7\x7e\xee\x17\xec\xd9\x73\x5b\xb6\ +\xb6\xd9\xb7\xb5\xd9\xc4\x36\x61\xc7\x9b\x01\xbe\x00\xf5\x1b\xb4\ +\x74\xcb\x1b\xad\xda\xf4\xe2\x82\x81\x05\xe3\x22\x81\x91\x68\xbe\ +\x3d\x66\xa1\x63\xfd\x10\x0b\x16\x40\x8b\xc5\x90\xd3\x2c\x78\x2e\ +\x82\xd2\x5e\x6e\xba\x5c\x4c\x92\x80\x4a\x31\xed\xaa\xf4\x32\x72\ +\x99\x6f\xc8\x85\x9e\xb9\x47\xec\x6f\x8f\x13\x4a\xb7\x0c\x12\xa3\ +\xed\xb8\x10\x47\x83\xf9\xc1\x36\x6d\x68\x4f\x09\x5a\xf1\x22\x8e\ +\x4a\x97\xe6\x94\x42\x34\x2a\x49\xde\x24\xf0\x45\x3f\x85\x92\x48\ +\x97\x64\xca\x15\x25\x68\x92\x49\xa2\x7d\x85\x39\xa3\x60\x10\xd1\ +\x8d\x48\xd0\x94\x92\xe7\xb7\x84\x7d\x41\xeb\x82\xa6\x56\xe8\x6f\ +\x93\x89\x7e\x12\xf1\xf0\xd6\xa1\xdd\xb8\x3a\xb2\xc9\x68\x6a\x5b\ +\xa7\xfb\x76\xf2\xdc\x49\xeb\xaf\x75\xbd\x7d\x71\x70\xb1\x4d\x64\ +\xca\x1a\x2c\x9f\x07\x8c\xe7\x22\x60\x19\x55\x41\x42\xef\xc1\xd9\ +\x8f\x51\x5a\x15\x35\x0b\xbd\x78\x1a\xbd\x4c\x08\xc2\xa1\xd2\x65\ +\xdb\x40\xdc\xd8\xb3\xa6\xa8\x23\xea\xc4\x0d\xb5\xd1\xd5\x7d\xb3\ +\x9d\x89\xb5\xc6\xfc\xe3\x7b\xe6\x02\x5b\x65\x11\xbe\x10\xf3\xff\ +\x54\x78\x53\x40\x4f\xe0\xf0\x1a\x5a\xeb\xdb\x8c\x9b\x68\x27\xfa\ +\xd6\x3b\xd3\xb1\x8d\xd3\xdb\xb6\x76\xaa\x6f\xfd\xed\x35\xfd\xa4\ +\xe3\x6c\xd6\xb1\xee\x21\xae\xda\x83\xb1\x8d\x87\x33\xeb\x5f\x3f\ +\xb4\xd9\xce\xa1\x8d\xf9\x24\xda\xe1\xd8\x0e\x27\xc8\x8b\x6d\xd3\ +\x46\x7e\x28\x23\x4f\xb7\x36\xae\x01\x5e\xeb\x0e\xe7\xc9\xa5\x44\ +\x32\x17\x37\xb2\xe0\x53\xa2\x90\xb2\x30\x60\x94\x26\x55\xf3\x54\ +\x68\x24\x85\x82\x1d\xc7\x0b\xe7\x11\x92\x50\x03\x36\xb6\x82\x44\ +\xb0\x83\x58\xea\x97\x43\xf8\x28\xbd\x19\x3c\x73\x91\x7b\xca\x8a\ +\x0f\x27\xdc\x67\x0a\x23\x6f\xb0\xde\xb7\x18\xf3\x46\x1c\x6f\xbe\ +\x80\xd1\x0d\x1f\x3f\x68\xa0\xff\x48\x43\xcc\x9f\x2b\x2a\x1b\x69\ +\x94\x23\x6e\x8d\x41\x6a\x2c\x85\x1f\x75\x62\xc8\x19\xd3\x47\xca\ +\xe5\x87\x99\x51\xcf\xb3\x02\x42\x79\xa4\x8e\x12\xe7\x7d\x53\x8f\ +\x6a\x38\x19\xcf\x6c\x8c\x0e\x74\x63\x3a\xb6\xdb\x9f\xbd\x66\xdd\ +\x27\x9f\xb2\x67\xff\xf7\x7f\xcc\xde\xf2\x07\x7e\xaf\xcd\xfa\x5d\ +\x1b\xdd\xd8\xc5\xf5\x34\xc2\xb9\x9f\x5a\x1b\xb6\x1d\xb8\x6b\xc3\ +\x0f\xff\xef\xc3\x37\xe7\x90\xa7\xde\x1e\xab\xb5\x10\x93\xd1\x58\ +\xce\x36\x43\xa7\x71\x11\xe8\xfc\x52\x03\x65\x14\x22\xe0\x8d\x45\ +\xe9\x82\xe7\x0b\x83\x28\x48\xda\x49\x18\xfa\x86\xf7\xa8\x92\xd7\ +\x36\x85\x06\x59\xd3\x0c\x5c\x38\x1f\x2f\x93\x31\xc2\xa1\x2a\x56\ +\x50\x8d\x95\x84\xfd\x68\x41\x29\x84\x8f\x57\x82\x65\x49\xee\x91\ +\xeb\xfb\x1e\xd1\x05\x05\xb5\x59\x36\x1c\x85\x47\x94\x77\x87\xec\ +\x07\x4c\x73\x24\x19\xaf\xa1\x79\x9f\xbc\xae\xd2\x56\x74\xc6\x22\ +\x18\x3b\xaf\xcf\x4d\xf0\x92\x28\x0e\x9b\x38\x72\x2c\xd0\x26\x1a\ +\xf5\xa4\x79\xc1\x57\xb6\x2e\x63\xcc\x28\xe5\x24\x3d\x26\xf2\x1a\ +\xa8\x9f\x70\xa6\x2c\xe7\x34\xbc\x2e\x27\xb8\x9e\xfb\xb8\x92\xd7\ +\xbb\x3d\xfb\xf4\xf3\x9f\xb5\x1f\xfe\xd9\x1f\xb5\x1f\xfb\xe5\x1f\ +\xb3\xed\x8d\x5d\x7b\xe3\x53\xa7\x6d\xeb\xd4\x00\x73\x26\x3e\x35\ +\x83\xeb\x33\x36\xb6\x99\x3c\xb3\x91\x27\xfa\x0c\x9a\xc3\x91\x64\ +\xd2\x8b\x52\x48\x96\x63\x26\x3d\xe8\xf3\x08\xd0\xc7\x5c\x3c\xd5\ +\x4c\x6d\x88\x3d\x46\xdb\xb2\x9d\x90\xa5\xf4\x1c\x1a\x98\x3f\x37\ +\x1d\x64\xc6\x71\x23\x74\x62\x41\xf8\x81\x00\x99\xf1\xd4\xa8\x99\ +\xbd\x20\xb2\x73\x6a\x19\x3c\x41\x69\x53\x17\x46\x82\x45\xde\x51\ +\x91\x40\x70\xf3\xc2\xa5\xe9\x96\xe1\x6e\xed\x08\x9a\xb0\x2e\x8e\ +\xc5\x04\xac\x74\xe8\x23\xce\x36\x5d\x84\xba\x2e\x7f\x2e\xb2\x83\ +\xfa\x81\x19\xe2\xf3\xfe\xd6\xad\xa9\x5d\xbd\x6c\x76\xf3\xd6\x08\ +\x9f\xf9\x68\x7b\x36\x20\xec\xf8\xdf\x98\x27\x31\x6f\x78\xec\xe9\ +\xa9\x6d\x6c\xae\x31\xa1\x7c\x44\x53\x7b\x7e\x77\x82\x8c\xd0\xf7\ +\xf4\xbb\xe9\x60\x17\x8b\x4d\x1c\x71\x94\x46\x14\xba\x52\xe7\x94\ +\x22\xb0\x8d\x14\x71\x32\x44\x4d\x13\x8b\x3c\x18\xfe\x14\xdf\xde\ +\x01\x37\xd4\x30\x97\x3a\xe4\x13\x62\x6e\xa0\xb0\xb6\x05\x9d\x79\ +\xb2\x17\x28\x46\xe1\xb5\x91\x86\xcf\xe2\x56\xab\x6b\x1d\x5c\x37\ +\xeb\x83\x0d\x3b\xf7\xe0\xa6\x3d\xf1\xf4\xc0\xce\x9d\xde\xb4\x75\ +\x7c\x5e\xf2\xaa\x1a\x1d\xce\x6c\x38\x3a\xb0\xbd\xdd\xa9\xed\xdc\ +\xda\xb5\xdd\xdd\x1d\x1b\x8d\xf6\xe0\xf3\x00\x8d\x3a\xd5\x67\xa8\ +\xe6\xd1\xf4\xcc\xce\xcc\xbc\xd9\x4e\x24\x74\xe2\x58\x00\x44\x81\ +\x8a\x5c\x82\xb0\xaf\x41\x51\x8d\x05\x35\xd9\xcc\xc6\xd1\x18\xcc\ +\x9b\x26\xc7\x32\xc6\x15\x8e\x84\x72\xcf\x20\x3a\x99\xc6\x16\xaa\ +\xc4\x01\x21\x27\x78\xce\x55\xaf\x39\x34\xfa\x23\x68\x9c\x44\xbc\ +\x1c\xd4\xb2\x0d\xf9\x3f\x69\xdc\x18\xe5\xa9\x64\x2e\xcc\x8b\xe7\ +\x8a\xc5\xf5\xa7\xff\xbd\x0c\x3c\x8f\x7c\xf1\xc4\x16\x1e\xb1\x83\ +\x75\xf2\x75\xab\xf4\x14\x49\xc9\x19\x36\x91\x75\xf6\x32\x05\x27\ +\xdd\x0c\xeb\x4e\xf6\xef\xf1\x6c\x68\x37\x31\x57\xfa\xd4\xc7\x3f\ +\x61\xc3\x1b\x8f\xd9\x97\xbf\xe3\x9b\xed\xdb\xbe\xe5\x5b\xed\xe1\ +\x07\x1f\x41\x3f\x83\x1e\xf3\x77\x5f\x27\x67\xfa\x0c\x7d\xec\x8c\ +\x8c\x94\x87\xe4\xa5\x41\x71\xad\x4a\x87\x98\x3a\x57\xe2\x8d\x73\ +\x42\x19\x5f\xe2\x31\x23\x67\x12\x19\x30\xa9\x18\x8d\xdf\x8c\x93\ +\x57\x2c\x83\xa0\x42\xe6\xe9\x68\xc3\x77\xd0\x0a\x1b\xb9\x73\x35\ +\xed\xb1\x68\x46\xbc\x68\x58\x56\x57\xcc\xd3\x32\x48\x64\x65\x97\ +\xa1\x4e\x4c\x90\xaf\x1d\xad\x70\x3f\x60\x75\x36\x57\x58\xe1\xde\ +\x01\x9f\x2d\xcd\xc7\xd9\x0a\x2b\xac\xf0\xfa\xc2\x7d\x73\xf1\xbf\ +\x2a\x15\xa9\x27\x90\xcb\x32\xa8\xa7\x23\xc7\x17\x20\x27\xf0\x0e\ +\x10\xc1\x94\x0d\x30\x42\x71\xd8\xf1\xe6\x6c\xb1\x0b\x9b\x94\x73\ +\x85\x22\x1e\x72\xbc\x8a\x8f\x94\x41\xef\x13\x7f\xbf\x19\x44\xa4\ +\x9e\x2f\xb7\x91\x50\x3a\x41\x64\xc8\x81\x5c\x0c\x91\xca\x1a\x76\ +\x78\x33\x87\x9b\x6a\x7a\x5a\x6d\x82\x18\x0b\xfb\xf3\xa7\xec\xc5\ +\xdf\xfc\x98\xfd\xb3\xff\xfe\xff\x65\x3f\xf1\xff\xf8\xff\xda\x5b\ +\xd7\x3a\x76\xee\x5c\xdf\xb6\xb0\xb8\x5a\xeb\xf2\xbf\xa1\xf8\xf3\ +\x34\x5c\x04\xf2\xe6\x00\x27\xfb\xf4\xd7\xd2\x4d\x99\x59\x75\xa3\ +\xd6\x17\x22\xcc\x85\x3c\x45\x2e\x97\x44\xb4\x08\xbf\x81\x23\x1a\ +\x6f\xde\x55\xe2\xcd\x1d\xd2\x0c\xb8\xae\x49\x9b\xd4\x61\xc5\xec\ +\xbe\x33\xad\x8c\x83\x67\xdc\xe8\xe9\x53\x37\x9e\x95\x59\xe4\xe1\ +\x81\x4b\x68\xe3\x62\x0f\xf1\xce\x16\x74\x3d\x0e\x0a\x70\x70\x01\ +\xc9\x6f\x69\xb2\x0d\xbd\xed\x53\xc9\xb0\xe4\x10\x48\x2f\x0d\x28\ +\x99\xb7\x01\x8a\x8b\xd0\x54\x46\x2a\xa7\x88\xa3\x29\x8b\x8e\x50\ +\x79\x42\xc2\xf6\x5a\x04\x15\x70\xc1\xe2\x7a\xaa\x10\x90\xc7\xa1\ +\xa5\x3c\x09\x95\x83\x11\x8d\x11\xaa\xfd\x70\x8e\x59\xef\x09\x7f\ +\x8a\x6e\x62\xb7\x77\x0f\xed\x60\x77\x64\xeb\x83\x81\x9d\x38\xb5\ +\x65\xdd\x7e\xc7\x3a\xb0\x9f\xa2\xdd\x99\x2e\x4b\x1a\xae\x9c\xa0\ +\x6b\xc6\x0a\x4a\x14\x08\x99\xc2\xc0\x1c\x03\xd0\x21\x31\xd7\xde\ +\x51\x5f\x05\x94\x81\x4f\x3b\xc0\x69\x17\x78\x08\x9b\xaa\x6d\xa4\ +\x97\xc2\x4b\x3d\xc3\x82\x7c\xef\xfa\x9e\x8d\xae\xec\x9b\xed\x8d\ +\xcd\x46\xfa\xa3\xac\x68\x57\x3f\xb7\x6c\xa3\x99\x36\xbd\xd0\x01\ +\x71\x1d\xcc\xd6\xba\x36\xdb\x1c\x58\x97\x37\x47\x4f\xb4\x6d\x00\ +\x7a\x70\x62\xcd\xba\x5b\x5d\x6d\xa4\x75\xd0\x66\xa3\xe1\xc8\x3a\ +\x3b\x53\xeb\xc3\x2d\x7f\x0f\x6a\x72\x38\xd6\xff\xad\x70\xd3\x05\ +\x9c\xb5\xb4\xe1\xc2\x85\xbb\xe7\x91\xdf\x1e\x56\x55\x55\x32\xc7\ +\x71\xbd\xcb\xed\x5c\x47\xeb\x8a\x55\x2c\xbb\x34\x06\x48\xa6\x5a\ +\x44\x0a\xe6\x14\x9e\x6f\x94\x04\xaf\xa2\xa8\x90\x4e\x43\xc7\x3e\ +\x8a\xc2\x28\xdd\x82\xea\x28\xa0\xf0\xb7\xf7\x05\xd2\x3c\x21\xf2\ +\x41\x16\x7e\xa8\x74\x95\x42\xc5\x21\x2b\x40\x62\x95\x0d\xb1\xff\ +\xbc\x22\xda\x15\x6d\xae\x6b\x13\xd7\x69\xf9\xb9\x47\xca\x78\x48\ +\xcf\x03\xfe\x78\x1d\x73\xdc\xe5\x69\xd6\xf8\xeb\x31\x93\x88\x07\ +\xa4\x0f\x59\xd6\x49\xbe\xc9\x68\xb8\x46\x4c\xff\x11\xc3\xb3\x4d\ +\xe0\xdf\x78\xa0\xaf\xf1\x6f\x64\xf6\x3b\x33\xbb\x79\xf3\xa6\x5d\ +\xbe\x3d\xb4\x47\xbe\xfe\x9b\xed\x6d\x7f\xf2\x7b\xec\xc1\xf7\x7d\ +\xad\xad\x1d\xb6\x6c\xf7\xea\x4d\x1b\xd9\x18\xe5\xf1\xa7\x15\x7a\ +\x38\x74\x73\x9d\xfe\x98\x17\x0b\xc5\x36\x8d\xca\x6b\x1c\x63\xff\ +\x00\xaf\xf6\x62\x26\x41\xe7\xc1\x01\xb1\xa1\x43\xce\x71\x13\x86\ +\xb5\x2c\xed\x6a\x5e\xb9\x84\x0c\x81\xc7\xd2\x4b\x81\xf7\x82\x8d\ +\x2b\xf4\xe2\xb8\xcc\x76\x41\x29\x55\x5e\xd9\xb8\xb1\x6c\xf8\x76\ +\x9a\x08\x9e\xf0\xaa\x3a\x28\x23\x4f\x35\x6c\xa3\x19\x80\x45\xa3\ +\x57\x88\xe3\x92\xd4\x6e\x89\xcf\xc1\xf5\xeb\x0a\x6a\xaf\x65\x8d\ +\xb6\x28\x7b\x19\x94\x7e\x80\x74\x0b\x49\x75\x2d\x55\x3e\x33\xf4\ +\xbe\xc0\x20\xaf\xb7\x8a\x27\xc9\x50\xe3\x47\xc8\x32\x0e\x2d\xe7\ +\x57\x14\x71\x84\xe2\x95\x2a\x1d\xc7\x83\xa0\x33\x8d\xa7\x8b\x94\ +\x31\x27\x73\x11\x25\x5e\xb2\x1a\x4a\x83\xfa\x64\x95\xf4\x65\x1f\ +\x5e\x26\xba\x6e\x67\xdc\xd7\xb2\xb5\x5e\xd7\x6e\x5c\xbd\x65\xff\ +\xfc\x43\xff\xda\xfe\xe1\xbf\xfe\x71\xbb\x78\xe3\xd3\xf6\xe4\xb9\ +\xb6\x3d\xf0\xc8\x9a\xad\xaf\xf1\x69\x52\x5e\xff\xbc\x96\xf9\x39\ +\xc0\x4b\x09\x61\x94\x35\x1d\x97\xbc\x55\x96\x2c\x47\x84\x90\xe9\ +\x9a\x83\x92\xd7\x22\x69\x96\x43\xd7\xa5\x9b\x08\x79\x4d\x4a\x43\ +\x15\x7d\x61\xe0\xa1\x6d\x1e\x92\xeb\xf0\xcf\x24\x32\x8c\x35\xcf\ +\x83\xb9\x8f\x45\x77\x09\x95\xd5\x0b\x5c\xb7\x61\x41\x2d\x9b\x53\ +\x38\x8e\x88\xe2\xdc\x10\xf3\xba\x28\xd4\x82\xa3\x42\xcd\x1b\x1f\ +\x41\xaa\xb3\x6a\x0b\xa5\x84\x3c\x34\x19\x21\x4e\x5b\x12\xa4\x8f\ +\x66\x01\x29\x77\x2d\xa1\x99\xcc\xf8\x9f\x6a\x1d\xbb\x74\x69\x64\ +\x57\xae\xb5\x6c\xb8\x8f\x31\x1f\x5d\xab\xdb\x1e\xdb\xe9\xd3\x1d\ +\x7b\xf2\xa9\x8e\xad\xad\xf7\xc2\x29\xce\x21\x32\x58\x2c\xd3\xb1\ +\x80\x61\x7e\x3e\xeb\x7c\x1e\x9b\xe0\x68\x09\x1b\x2c\x26\x72\x47\ +\x73\xee\x48\x1c\x71\x31\x9f\x21\x7f\x52\x71\xff\x90\xf5\x9c\xd9\ +\xee\x7e\xb3\xa1\x46\x3b\xff\x9c\x4e\xce\xbd\x47\x6f\x45\x7d\x21\ +\xe1\x7b\xcc\xb5\x45\xdb\xb6\x36\xb6\xec\xcc\xe9\x96\x3d\xf8\xe8\ +\xba\x9d\x3a\x3b\xb0\xcd\xc1\xb6\xd6\x29\xe3\x11\xfc\xee\x1d\xda\ +\xde\xde\xbe\x0d\x31\x47\xdb\x3b\xd8\xc7\x34\xed\x00\x97\xcd\x04\ +\x7a\x5e\xc7\xf0\x86\x3e\xc2\xa7\xd1\xd8\x57\x74\x2d\x2a\xb7\xa6\ +\xf8\x5e\xda\xc5\x33\xfc\xca\xd0\xf8\x71\xd4\x7c\xed\x57\xb2\x3c\ +\x29\x88\x8e\xf4\x2b\x37\xd0\xc1\x72\xeb\xba\x97\x3d\x45\x7e\x2d\ +\x52\xa7\x88\x70\x81\x90\xe3\x54\x22\x35\x91\x5b\xc4\x8d\xfd\x3c\ +\x20\xaf\x13\x10\xe0\x0b\x89\x39\x0f\xa7\x3e\xe8\xb6\x36\x0e\x9a\ +\x23\xa5\xce\x96\xc6\x51\x2a\xf1\xe6\xf0\xa8\x17\x20\x51\xc8\x39\ +\xf6\x05\xed\x52\x5e\x07\xf4\x40\x96\x19\x51\x86\xb9\xaf\x58\x2f\ +\x48\x3d\x36\x11\xfe\x1f\x68\x24\xba\x76\x30\xde\xb3\x0b\x2f\xbe\ +\x60\x57\x9e\x1b\xa1\x2f\x3c\x6d\xdf\xf0\xcd\xdf\x62\xef\x7e\xc7\ +\x7b\xec\xf4\xf6\x29\x3b\xd8\x9f\x60\x6d\x52\xa7\xe7\xf3\xf9\xa4\ +\x71\xa0\x2d\x59\x96\x50\x44\xd3\x36\xed\x2a\x68\x9c\x8b\x17\x15\ +\x38\x18\xbb\xbf\xd0\xd1\x46\x32\xc6\x34\xa1\xae\xb1\xe3\x4b\x8a\ +\x90\x11\xb5\x5c\xb1\x0b\x83\x42\x1c\x76\xa2\x29\xcd\x74\xa4\x83\ +\x4f\x89\x47\xce\x97\x75\x5e\x82\x75\xa2\xa0\xf8\x4b\xa8\xb2\x77\ +\x89\xc5\xb4\x2b\xbc\xd6\xb1\x3a\xa3\x2b\xac\x70\xef\xb0\xda\x50\ +\x5b\x61\x85\xd7\x31\xee\x9b\x8b\xff\x55\xa9\xc8\xcb\x39\xcd\xe9\ +\xc8\xcb\xd8\xc5\xc2\x42\x41\x89\x45\x78\x8c\xc3\xc5\x41\x4b\xe7\ +\xb4\x1f\xb5\xae\x79\x12\x8d\x47\xb3\x29\x97\xb6\xf5\xe1\x8b\x0d\ +\x58\x38\x2f\x37\x55\x3a\xbe\x28\xce\x23\x16\x69\x8c\xfc\xb7\xe8\ +\x9b\x1a\x6a\xf1\x81\x77\xb7\xd3\xf5\x9f\x80\xc4\xc2\xa7\x35\xeb\ +\x58\xfb\xa1\xf3\xb6\x77\xed\x96\xfd\xf4\x8f\xfe\x3d\xfb\xb9\xff\ +\xea\xaf\xda\xe4\x13\x2f\xd8\xe3\x8f\x6e\xdb\x3a\x16\xbc\x27\xb1\ +\x70\xee\x0d\x90\x86\xdf\x05\x85\x4f\xfd\xd7\x19\x17\x4d\xf0\xe3\ +\x8b\x58\x12\x90\x61\x92\x4f\xff\xbe\x31\x83\x37\x16\x24\x8a\x95\ +\xb3\xeb\xc5\x50\x5c\x6c\xc8\x43\x07\x59\xde\x40\x2e\x36\x3a\xdc\ +\x28\x37\xd5\x94\x1f\xf9\xe2\x83\x7e\x9d\xf6\xcd\x35\x3f\x3c\x53\ +\xd7\x05\x53\xe8\x22\xf3\x77\xa1\x93\xf4\x26\x66\xdb\x92\xe6\x93\ +\x23\x8c\xe3\x1c\x90\x51\x23\x13\x68\x77\x26\x15\xcb\x20\x9d\x10\ +\x69\xb3\x0c\x28\x43\x50\x47\x92\x25\x24\x6b\x14\x4c\x91\xa6\x3c\ +\xdf\xbe\x50\x05\x8f\x76\x38\x0e\xb2\x0f\x17\xa4\x85\xc6\x65\xf8\ +\x6a\x44\xbc\xc7\xe7\x86\x5c\x4c\x9b\x4d\x46\x33\x1b\x8d\xa7\x36\ +\x3c\x1c\x83\x6f\xd9\xc6\xda\x9a\xf5\xfa\xfe\x2c\x95\x67\x5f\xbc\ +\xca\x49\x24\x15\x9c\x8e\x7e\x49\x4e\x71\xe4\xa4\x86\x0d\xd1\xcb\ +\x20\x6d\x3c\x25\x42\x11\x94\x16\x89\xf7\x15\x52\xcc\x2c\x2b\x0c\ +\x9b\x6c\x1b\x49\x18\xe4\x01\x3b\xfe\xe4\x23\x37\xd4\x86\xdc\x50\ +\xdb\x1f\x5b\x1b\xf5\xe4\x86\x4c\xba\x60\x0e\xed\x1e\x9f\xc4\xec\ +\xd8\x8c\x37\xbf\x36\xbb\xd6\xdf\xee\x5b\xe7\x64\xdf\x7a\x9b\x03\ +\x6b\xa1\x1d\xba\xdc\x44\xe3\x4f\x7d\x71\xab\x8c\x6d\xb4\x07\x3f\ +\x87\x13\xff\x0b\x0f\x2d\x84\xa1\xc3\xe5\xa7\x9f\xbc\xd1\x0d\x06\ +\x94\x89\x37\x75\xe9\x5c\x55\x88\x1b\x11\xb0\x64\xcc\x36\x6d\xe0\ +\x0c\xb5\x89\x79\xbd\x23\xf5\xac\xab\xce\x9a\x7c\xbb\x94\xf6\x4a\ +\xe2\x59\x2c\x47\x24\x71\x54\x86\x49\xce\xa5\x0d\x46\x1d\x1e\x65\ +\x46\xb4\xa8\x9a\x47\xf4\x73\x06\xa9\x63\x63\x70\x37\x89\xbc\xda\ +\xc8\x91\x75\xf3\xc8\xe5\xa5\xfc\xa4\x99\x04\xd7\xa0\x36\xcd\xd0\ +\x86\x3a\x57\xfa\x1a\x35\x62\xc9\x78\x63\x0d\x86\x6c\xdf\x09\xc4\ +\xdc\x48\x0b\x5a\x17\x70\xc6\xbc\x29\x44\x7b\xbc\xe5\x54\x3c\x68\ +\x0a\xa0\xe7\xf5\xad\x3c\x43\xe6\x3a\xda\x44\x3e\x8c\x99\x17\x74\ +\x6c\x86\xd1\x68\x08\x59\xcb\x78\x85\x5c\xc7\x18\x75\xed\xa5\xcb\ +\x76\xb8\x7e\xca\x1e\xfb\x7d\xdf\x61\x5f\xf5\x47\xbf\xc7\xb6\x9e\ +\x7a\xdc\xda\xb7\x87\x76\xb8\xb3\x6b\x93\xe9\x48\x1b\xd5\xfa\xbf\ +\x34\xf8\xd4\x50\x16\x35\x64\x36\xde\x0b\x9c\xd7\x38\x46\x09\x63\ +\xda\x29\x88\x1b\x3d\x1c\xe7\x68\x27\x1d\x64\x74\x44\x89\x1b\x56\ +\x63\x72\xd8\x53\x5e\xec\x19\xf3\x82\xa9\x78\xa5\x55\xa6\x73\xb2\ +\x42\x07\xef\xb4\xdb\xf1\xe5\x7a\x56\xdf\x63\x29\x9d\xf0\xb8\xa6\ +\x6b\x44\x9b\xca\x17\x9b\x14\xb1\xc6\x7e\xca\x52\xd7\x10\x81\x05\ +\x1f\x77\x42\x9a\xd2\xc5\x2b\x48\xb6\xc2\x02\xb2\xf3\xcf\xa1\x6e\ +\xdc\xbb\x80\xcc\x11\x2c\xf5\xd5\x5c\x5f\x84\x68\xd9\x83\xe0\x75\ +\x46\x52\x36\xce\x07\xa7\xb0\x3e\xa4\x27\xad\x34\xa4\x49\xe6\x85\ +\x9d\x32\xea\x39\xf6\x26\x4f\x5a\x96\xe2\x5c\x97\x7a\xc4\x1c\x4b\ +\x6a\xb0\x5c\x72\x03\x2d\xe8\x64\xcb\x7c\x04\x83\x01\xaf\x0f\x8d\ +\x4f\xa0\xbb\x90\xf7\xe0\xe4\xe3\x2f\xbc\x68\x1f\xfc\xd5\x9f\xb6\ +\x9f\xfb\xd0\xbf\xb0\xcd\xc1\x2d\x7b\xfc\xb1\x4d\x3b\xb5\xdd\xc3\ +\x7c\xe6\x10\x63\x40\x5f\x8e\xe8\x83\xfe\xa2\x40\x82\xf8\x08\x13\ +\x8d\x0c\x87\x17\x1a\x14\xf3\xa3\x8f\xfc\xb0\xab\xae\xc5\x12\x02\ +\x20\x98\x0b\x75\x3c\x54\x6c\x8c\xc3\xfc\x52\x54\x3e\x31\x27\x21\ +\x6d\x50\x8e\xb4\x0b\x67\x42\x43\xbd\x1c\xb2\x4d\x2b\x9a\x28\x04\ +\xe1\x8c\xaa\x4c\xc7\xa1\x5b\x60\x1d\x15\x73\x27\x79\x93\x0e\xe1\ +\x9c\x61\x83\x79\xf1\x31\x46\x51\xd3\xaa\xea\xde\x34\x44\x25\xab\ +\xa1\x31\x50\xb1\x66\xc0\xb0\x9b\xd9\xc1\xe1\xd4\x2e\x5f\x6a\xd9\ +\x95\xab\x33\xdb\xdb\x3d\xe0\x84\xca\xce\x9e\xee\xda\x13\x4f\x76\ +\xf4\x84\x9a\x5a\x06\x89\xd8\x6f\xbc\x95\xdc\xc7\x52\xb8\x9a\x19\ +\x88\x54\xc3\x31\x2d\x69\xb2\x4c\x9b\x36\x82\xac\x84\x92\x54\x5c\ +\x9a\x14\xc3\xd0\xcf\x25\x3e\x06\x95\x0d\x22\xfe\x20\xfc\xc1\x88\ +\x1b\x6a\x66\xbb\xbb\x7b\xda\x50\xf3\xff\xd5\x73\x13\x16\xd1\x3f\ +\xd7\x19\x78\x5f\xe5\xd3\xd8\x93\x09\x7f\xfc\x14\x6d\xb0\xbe\x6e\ +\xa7\xce\x98\x3d\xfc\x48\xd7\xb6\xb6\x06\xb6\xbe\xd6\x47\x5f\x1c\ +\xe0\x33\xb2\xad\x9f\x7f\xdc\xdd\x39\xd0\x13\x69\xa3\xe9\x10\xe9\ +\x26\x98\x9f\x8e\xe5\x8b\x5b\x28\xfc\x28\xd7\x35\xca\x9f\x7d\xcd\ +\x72\xf1\x1a\x04\x45\x78\x31\xa2\x20\x77\x89\x97\xb3\xf6\x5a\x34\ +\x71\x0d\xe5\xab\x4c\xf3\xfc\x80\xcd\x13\xe2\xef\x92\x56\x1d\x8b\ +\xef\x14\xb8\xd0\x23\xc1\xf5\xe9\x48\xd1\x31\xc8\x34\xf3\x36\x2e\ +\x6d\x74\x15\x8f\x20\xba\x8e\xd2\xe8\x09\x7e\x08\x10\xf9\xbc\x86\ +\xb1\x9c\x51\xce\xc8\x65\x21\x54\xa4\x73\xaa\xf1\x91\xe3\x64\xfc\ +\xa4\xa3\xf4\xee\x35\x4c\x01\xcf\x8c\x9b\x69\xa5\x0c\x71\x51\x29\ +\x86\x9d\x52\xe0\x1c\xe6\x5c\xf9\xfa\xce\x55\xbb\xf0\x89\xeb\xb6\ +\x73\x65\x62\xcf\x3c\xf1\xf5\xf6\x8d\xef\xfb\x7a\x7b\xfa\x8d\x5f\ +\x62\xbd\x4e\xcf\x86\xfa\xbf\x34\x24\x98\xc6\xaf\xa5\xe4\x7c\x28\ +\x7d\xe2\xe5\xa5\x48\x3e\x42\xbd\x3d\xd6\xdc\x07\x15\xd0\x4b\x69\ +\x79\xbd\x3a\x8d\x20\xe8\xf4\x5b\xfb\xf7\x78\x8e\x0f\x19\x82\xd0\ +\x33\x0a\x39\x48\xca\x9c\x08\x59\xd8\x49\x92\x69\xc4\xe3\xd0\xdb\ +\x75\x62\x52\xe6\x17\x50\x83\x6c\x66\xa5\x5f\x44\x69\xf8\xbb\xc0\ +\xb2\xf4\x2b\xbc\x56\xb1\x3a\x9b\x2b\xac\x70\xef\xb0\xda\x50\x5b\ +\x61\x85\xd7\x31\x5e\xb3\x17\x7f\x4e\x10\x6b\xdc\xf3\xca\xbc\x9c\ +\xc3\x2c\xc0\x1d\xec\xa4\x42\xb0\x10\x73\xd8\xd5\x34\x5e\x0b\x07\ +\x40\xeb\x3b\x97\xbb\x1d\x04\xa4\x25\x73\x5d\x7d\xc8\x2e\x6d\xd2\ +\x8f\x48\xa7\x7d\xd5\xe8\x37\x78\x94\x03\x75\xc5\xae\x89\x53\xc7\ +\x9a\x78\xde\x0e\xc9\x7d\x45\x24\xde\x6f\xbb\xf8\x44\x9e\x37\x52\ +\xf8\xf3\x60\x7c\x5a\x8d\x9b\x02\xbd\xcd\x13\x66\x83\xb6\x7d\xfc\ +\xd7\x3f\x6c\x3f\xfe\xd7\xff\x9a\xfd\xfa\xff\xf4\x63\xf6\xcc\x99\ +\x4d\x3b\x75\xa2\x6d\x67\x3a\x2d\x5b\xef\xfa\x46\xdc\x04\xfe\x74\ +\x43\x86\xff\xcb\x46\x9f\x9c\xdc\x73\x21\x11\x87\xd3\xcc\x86\x0b\ +\x12\xc6\x0c\x10\xd1\x3a\x78\x49\xf2\x67\x8a\x28\xa6\x2c\xee\x32\ +\x93\xd6\x93\x41\xd4\x91\x57\x66\x20\x45\x83\x24\x2f\xbb\x2a\x1d\ +\xe3\x3c\xa4\xf3\x34\xa0\x96\xc6\xa2\x98\x8e\x8b\x2b\xf1\x89\x60\ +\x18\xb1\xc9\xb4\xea\x45\x13\x62\xd5\xa8\x76\x46\xdd\xfd\x66\x9d\ +\xab\xd9\xbe\x99\x9c\xfd\x80\x9c\xf3\x6a\xf9\x25\x70\xbd\x5c\x8b\ +\x3f\x06\xf3\x85\x2a\xd0\x4f\xf1\xf9\xdd\x02\x72\xf9\x9e\x43\x9d\ +\x2f\xdd\x24\x5f\xdb\x55\xc9\x8f\xd2\x80\xb2\x40\x5d\xd9\x75\xb8\ +\x68\xe6\x66\x46\x8b\xff\x07\xc6\x73\x86\xf6\xad\xfb\x18\x91\x3e\ +\xa0\x10\xc1\x48\x2d\x20\x45\xc6\x1e\xd1\x2c\x11\xe2\x63\xe1\xad\ +\xdb\xb4\xb1\x13\x2e\x13\x55\xb5\x53\x51\x65\xa4\xf3\x4b\x9b\x10\ +\x14\x1d\x96\xf8\xe3\xa9\xed\x5d\xdd\xd1\x86\x5a\xeb\x70\xa2\xa7\ +\x8c\x78\x5e\xb9\xb4\xe7\xd3\x66\x6d\x3e\x91\xd6\xeb\x5b\x6b\xbb\ +\x63\x9d\x13\x03\xeb\x6f\xb4\x71\xf4\xad\xd3\xe3\xd3\x68\x6d\x9b\ +\xd0\x29\xfb\x02\xd2\x75\x90\x7e\x76\x80\xf4\xf0\xc9\xa7\xfb\x08\ +\x66\x3d\x85\x8d\x67\xe9\x31\x75\xd4\xfa\xf5\x8a\x98\x42\x10\x9e\ +\xa2\x02\xd2\x49\x16\x7a\xa2\xf0\x0b\x98\x93\xa7\xc3\x1a\xd2\x2d\ +\x91\x57\x38\xb2\x66\x87\xe9\x82\xe8\x88\x20\xaa\xe9\x6d\x4b\x7a\ +\x49\x02\x89\x18\xa8\x33\x81\xf0\x77\x94\x44\xda\xc6\x06\x58\xea\ +\x06\x50\x1a\xba\xe0\x06\xd9\x14\x6d\x3d\x41\xbf\xe4\xdd\x17\x0d\ +\x9b\x54\xa0\x3d\x35\x4c\x22\xe6\x4d\x3d\xde\x24\xe2\x41\x9b\xc5\ +\x8d\x34\xda\x31\x23\x06\x41\x93\xd5\x35\x4d\x7b\x30\x99\x5f\x22\ +\xf3\x40\xee\xee\x8b\x11\xca\x31\x19\xe1\x00\x8d\x1e\x64\xd7\xc0\ +\xdf\xbc\x74\xd5\x5a\xcf\xbc\xcd\x9e\xfa\x63\x7f\xd0\xde\xf5\xbb\ +\xbe\xc9\xb6\x7b\x27\x6d\xb8\x77\x60\xc3\x83\x21\x92\xe3\x18\x8d\ +\x31\x6c\x75\xac\x4b\x1f\x6a\x38\x40\x51\x45\x43\x45\x5d\x8e\xa9\ +\x12\x07\x5d\x36\xcf\x48\xf3\x95\x72\xdd\x10\x0f\x9e\x63\x1f\x5e\ +\x18\x2c\x0b\xcd\x74\x14\xf9\xb5\x42\x9a\x32\x4f\x3b\x47\xcb\xb6\ +\x96\x53\xe2\xf6\x4c\xef\x32\x11\x1e\x87\x4c\x72\x90\x49\x0b\x8b\ +\x74\x62\x49\x1f\xa5\x68\xf9\x86\x5a\x95\xee\x38\x1c\x75\x77\x54\ +\x76\x17\x6e\x56\x08\xd4\xcd\xae\x36\x5c\x6c\xdc\xc4\x9c\xd1\xf1\ +\x90\x59\x65\x5b\x99\xfb\x35\x56\x0b\xf0\xd6\x58\xe1\xb2\x1c\x27\ +\xdd\x86\x74\xea\x40\x85\x0d\x7b\x0d\xaf\x4c\x41\xf6\x1c\xc7\x53\ +\xcf\xeb\xd9\xed\xdc\x86\xe9\x79\x09\x53\x86\x71\x44\x2a\xa6\xc1\ +\xe7\x0b\x18\xff\x42\x45\xa4\x97\xca\xfd\xb2\xf4\x4e\x79\x7a\xe9\ +\x18\x42\xd1\x5c\x3b\xf0\x81\x88\x3a\x96\x89\x5f\x64\xea\xe2\xb3\ +\xb2\x8f\xcf\x92\xbd\xbd\xdb\xf6\xf3\x1f\xfe\xa8\xfd\xc8\x2f\xfc\ +\x8c\x5d\xba\xfe\x71\x7b\xe4\xf4\xa1\x3d\xf6\xf8\x86\x0d\xf8\xdf\ +\x6a\x1a\x0b\x78\x5d\x33\x5d\xf8\x99\x8b\x49\xba\x57\x7f\x87\x0c\ +\x60\x53\xf9\xe6\x1e\x9f\xce\xe1\x18\x10\x40\x41\xf8\x52\xbd\xc4\ +\x4b\x2a\x99\x8a\xab\x98\x07\x3e\xed\xc0\x77\x98\x37\x7f\xc2\xbb\ +\xe8\x69\x4c\x0e\x11\x74\x62\xc9\x49\x71\x14\x14\xb3\x84\x19\xce\ +\x41\xa2\x6c\x4f\x06\x35\x22\x15\x23\xba\x47\x4c\x32\xd8\xa3\xe6\ +\x44\xd8\x2c\x07\x52\xe5\xb9\x4b\x2b\x46\x0b\xce\x1a\xb2\x12\x16\ +\xd0\xd8\xa3\xa0\x0a\xd4\x36\x8b\x42\x20\x5a\x79\x2e\x01\x37\xd8\ +\xf8\x53\x8f\xa3\xe1\xd4\xae\xdf\x9e\xd9\xe5\x0b\x43\x3b\xd8\x99\ +\xd8\xf6\x76\xcb\x1e\x7b\x62\x66\x1b\x1b\x9b\x25\x77\x9e\x0b\xb6\ +\x81\x92\x2f\xf1\x2f\xcc\x95\x1f\x46\x25\x81\x04\x40\x95\x10\xf9\ +\xd6\x2a\xd2\x99\xbc\xb2\x2a\xf0\x9e\x56\x65\x20\x2c\xb7\x2c\x72\ +\xf5\x8f\x96\x8d\xc6\x3d\xbb\x78\x91\x9b\x5f\xfb\x36\x9e\x72\xc3\ +\x2b\xf2\x42\x40\xbf\xee\xd5\x9f\xc6\xe2\x67\x72\xbb\xd5\xb3\x41\ +\xbf\x67\x27\xb6\xcd\xce\x3f\x64\x76\xe2\x34\xd6\x15\xbd\x4d\x7d\ +\x5e\x4d\x27\x1d\x1b\x0f\xdb\x36\x1c\x0e\x6d\x88\x39\xd5\xe8\xf0\ +\x10\x9f\xaf\x23\xac\x4f\xbc\x9f\xfa\xd3\x47\x24\xe8\x37\xaf\x4d\ +\x5e\xb3\xc8\x65\xae\xb8\xca\x5c\x22\xe6\x3f\xa7\x5a\x02\x2f\xe3\ +\x32\xa4\xa6\xf1\x90\x3e\x1b\x38\x97\xe7\x50\x16\x61\xa0\xb1\x01\ +\x0c\x37\xd6\x72\xc3\x95\x90\x38\xb9\xb9\x88\xa1\x27\x66\xd8\x70\ +\xc7\x63\xb9\x4d\x38\x2d\x48\xab\x90\xa3\xe9\xf4\xcb\x1b\x38\x38\ +\x7f\x99\xc6\x85\xe7\xd3\x1f\xa7\x55\x19\xbe\xe3\xd0\xdc\x87\x50\ +\xc4\x36\x17\x57\x4c\x6b\x19\xe1\xe7\x8a\x82\x6a\x33\x4d\x81\xf7\ +\x9b\x04\xd7\x9d\xdc\x5c\x9d\x4c\x26\x76\xf1\xda\x75\xbb\xf6\xc9\ +\x2b\x36\xdb\x3b\x67\x6f\x7e\xc7\xd7\xda\x37\x7d\xe3\x37\xdb\x03\ +\x67\xce\xa3\x1f\xa0\x4f\x8c\x46\x48\x95\x63\x5c\x07\x87\x66\x26\ +\x70\x17\x03\x14\x35\x7a\xe3\xc5\x06\x66\xd6\xde\xd0\x8a\xfc\x5c\ +\x34\xb6\xf2\xc5\xb2\xf0\xc0\x8b\x46\x65\x03\x8d\xaf\xa4\xe3\xd0\ +\x18\x5d\x74\xf4\xd5\xe8\xf8\x02\x11\x72\xf7\x2e\x3e\x38\x7f\xa7\ +\x8c\xd2\x88\x49\x26\x1d\x87\xbb\x50\xe0\x31\xda\x71\x4e\x94\x6d\ +\x4c\x3e\xf2\x6b\x50\x9d\x80\x3b\x62\x31\xdd\x0a\xaf\x75\xac\xce\ +\xe8\x0a\x2b\xdc\x3b\xac\x36\xd4\x56\x58\xe1\x75\x8c\xd7\xf4\xc5\ +\xaf\xc9\xaf\x93\xc2\xab\x52\x99\x3b\x39\x65\xe6\x2f\x93\x29\x87\ +\x57\x9a\x30\x96\xb9\xf3\x3e\xec\x3a\xcd\x80\x8b\x94\xb2\xc8\xa3\ +\x90\x37\x4c\x40\xf3\xe5\x69\xdc\x86\x3a\x3d\x5d\x16\x32\xc9\x8f\ +\xa1\x11\xe0\xcd\x1b\x3d\x24\xe9\xa9\xd1\xd1\x6e\x8e\x87\x09\x63\ +\x4e\xc3\xb5\x08\x92\x0d\x65\xbe\x00\xe5\x92\x82\x3c\xef\xcb\x8a\ +\x6f\x75\xfc\x66\x4c\x9b\xbf\x19\x3f\xb3\x4e\xb7\x6f\xed\x07\x1f\ +\xb0\xab\x17\xae\xda\xaf\xfc\xdd\xbf\x6d\xff\xf0\xbf\xfe\x41\xdb\ +\xba\xb2\x63\x0f\x3f\xb4\x61\x27\xd7\xfb\xb6\xd1\x1a\xdb\x00\xb6\ +\x74\x99\x0b\x0a\xfe\x11\x38\xbc\x8a\x66\xe3\x30\xd6\x02\x3a\xf4\ +\xba\xb9\xcb\x45\x3e\x17\x59\x7a\xe3\xa5\x1b\xc3\x72\x82\xc0\x49\ +\xae\x93\xd2\xa7\x04\x4c\x26\x1b\xd2\x4c\x03\x92\x31\x79\x6e\xec\ +\xd0\x56\x36\x6e\x9f\x69\x73\x43\xcd\xe5\x8c\x2b\x1b\x0f\x4a\xcc\ +\x4c\xfc\x9b\xa4\x60\x69\x73\x04\x3c\x9b\x04\x42\xa8\xf5\xf4\x8b\ +\xda\x34\xda\x95\xad\xec\x06\x80\xb7\xbb\x6c\x05\xf5\x84\xa0\x23\ +\xbb\x08\x8f\x83\x5b\xb3\xcc\xa4\x2a\xdb\x64\x1b\xd7\x21\x6b\x6c\ +\x92\x9a\x33\x0d\x61\x31\x8f\x78\x0e\x14\xe2\x08\x53\xb7\xa9\x8c\ +\x54\x94\x38\x77\xde\x5e\x8d\x2f\xef\x55\x91\xa6\x8a\x3d\xbd\xb7\ +\x53\x9d\x61\x88\x1b\xc8\x27\x05\x22\xe6\xe0\x6d\x87\x13\x0c\x1f\ +\x5e\xcd\x6c\x17\x87\x52\x85\x3c\x5d\x14\x2f\x24\x2a\x9e\xfd\xc4\ +\x79\xbe\x66\x36\x1e\x4f\x6c\xff\xca\xae\x1d\x5e\xdd\xb5\xd9\x90\ +\x1b\x6a\x13\xd8\xb4\xad\xbd\xd6\xc5\xd1\x33\x5b\x1b\x58\x1b\xfd\ +\xbd\xb3\xd5\xb6\x1e\xf8\x6e\x9f\x1b\xcf\x2d\xff\x26\x2f\xaf\x45\ +\x3e\x1d\xc5\x9f\x72\xe4\x26\x1a\xff\x07\x44\x0d\xc1\x65\xba\xdf\ +\xea\xe1\x43\x58\x2e\xf1\x3e\x51\xca\x85\xba\x70\x8f\x87\x05\x67\ +\x55\x78\x03\x39\x9b\x28\x6d\x78\xdd\xd4\x90\xab\x79\xd1\x1c\x98\ +\x03\xdb\x6a\xa9\x89\x7c\xd1\x43\x9d\x83\xe3\x88\x5f\x08\x8e\x5a\ +\x2d\xc1\x1d\x0d\xa2\xae\x0a\x94\x03\x00\xa6\xa4\x71\x62\x81\x2d\ +\x50\x9b\x04\x4d\x4a\xfd\x08\x81\x36\xd0\xd8\xee\xdc\x28\xd3\x5d\ +\x20\xbf\xee\xa4\xe7\x78\x8a\x43\x9b\x69\x11\xf3\x24\x68\x93\x0c\ +\xe7\xc6\x87\xbe\x30\x76\x37\xea\x47\xdc\x28\xa6\x5c\xd7\x72\x6c\ +\xa6\x25\xbc\x1c\x2e\xa0\x9e\x2d\xcc\x9f\x77\xd4\x70\x3e\x45\x5f\ +\x41\x19\x86\x48\xb3\x0f\xc1\x67\x6f\xed\xd9\x95\xc3\x43\x7b\xfa\ +\x5b\x7e\x87\xbd\xf3\x8f\xbc\xdf\xce\xbd\xeb\x4b\x6d\x6d\x7f\x6a\ +\x3b\xfb\xfb\x28\xcb\xd8\x26\xe8\x6b\x6d\x64\xca\x9f\x04\xe5\x4f\ +\x59\xb1\x1c\x1c\x6b\x54\x76\x64\xe4\xbd\x86\x65\x8a\xde\xc2\x62\ +\x21\xd0\x4d\x1d\x6a\xe2\x66\x8e\x64\x1a\xb8\xa9\x73\x5a\xb1\x0f\ +\x82\xa2\x33\x96\x8c\xe3\x7a\xd8\xfa\x80\xdf\xe8\x19\x17\xbf\xb2\ +\xf1\x3c\x79\xf0\x55\xe8\x9a\x8f\xfc\xc0\xc4\x3b\xe5\x10\x05\x2d\ +\x75\xca\xdd\x28\xe8\x40\xb9\xd1\xd6\x80\xa2\xe5\x1b\x6a\x89\x4c\ +\x9f\xb2\xca\xdf\x51\x77\x8e\x5a\x5e\x99\xaf\x70\x97\x98\x6b\x53\ +\x32\x75\x23\xd6\xfc\xb2\xc6\x5f\x40\x9e\x7f\x5e\x67\x64\x9d\xd3\ +\x75\x95\xc8\x6b\xc1\x69\xc6\x38\xf4\x76\xba\xc8\x42\xa2\x04\x21\ +\x4b\x1b\x3f\x72\x5c\xe0\x45\x1f\xe9\x70\x70\x54\x96\x1d\x69\xa5\ +\xe3\xf5\x1e\x72\xb2\xa4\xa8\xe6\x38\x40\x3b\x0d\x00\xb4\x75\x1d\ +\x31\x81\x4f\xef\xf3\xae\x2b\x9f\x89\xaa\x10\x78\xd4\xb3\x54\x55\ +\xfe\xf1\x6e\x4f\xad\x8b\xf9\xd2\x00\xd7\xe2\xc7\x5e\xf8\xac\x7d\ +\xf0\xe7\x7f\xca\xfe\xe9\x87\xfe\x85\x9d\xda\xbe\x69\xcf\x3e\x7e\ +\xd2\xff\x5b\xad\x35\xf2\x71\x81\xe9\x91\xd6\xaf\xb1\xc6\xad\xf2\ +\x12\x83\x00\xef\x18\x15\x04\xd6\x85\xa9\x94\x9c\xbc\x4c\x64\x0c\ +\xb8\x7d\x72\x4e\xa7\xac\xb1\xe2\x2f\x1a\x73\x78\x68\xf3\x4b\x4c\ +\x1a\x13\xa0\x57\x59\x38\x8f\x4b\x9f\x34\x44\xcc\x3a\x49\xc3\x12\ +\xa4\x22\x21\xe5\x11\xb8\xa8\x52\x2c\xd8\xe8\xbc\x00\xee\xfb\x28\ +\x96\xc9\x0a\x32\x0d\xcb\x51\x0c\x2b\x46\x7a\xd2\x29\x6b\x74\xde\ +\x0f\xb2\x02\x2e\x4b\x5e\x56\x08\x52\x2b\x1e\xaf\x3c\x37\x45\x51\ +\x30\x2f\x2f\xae\x51\x29\x3e\x05\xb4\x73\x6b\x62\xb7\x6e\x8f\x31\ +\x57\x36\x3b\x77\xae\x65\x6b\xfd\x78\x42\x2d\x91\x7e\x97\x21\xcc\ +\xdc\x25\x53\xe1\x44\x64\x9f\xc8\x7c\x64\x13\x3e\xd8\x90\x77\x40\ +\xe6\xb4\x68\x35\x5f\x82\x79\x2e\xad\xfd\xdc\xbb\x8e\x6d\x31\x9e\ +\xf8\x7f\xa8\xed\xdc\x3a\xc4\xbc\x66\xe4\xf5\x46\xc3\x29\xa2\x0d\ +\xc2\xc9\xa4\xad\x35\xc2\xfa\x60\xcd\x36\xb7\x26\x76\xe6\xbc\xd9\ +\xd6\x26\xda\x80\x5f\x4e\x6a\xf3\xff\x9c\xf9\xf3\x8e\x13\xfd\xff\ +\xdc\x94\x73\x2a\x24\x9c\xc1\x57\xa9\x87\x78\x8f\xeb\xf9\x1f\x0d\ +\xe7\xda\x70\x0e\x8d\x3c\xfb\x55\x5d\xa3\xe3\x52\xcd\x83\xb5\xcd\ +\xd0\xd3\x37\xe9\x82\x92\x90\x41\xd8\x24\xcf\x77\x5d\xd6\x38\xbf\ +\x1e\x02\x85\x58\x0e\xaa\x97\x96\x91\xc2\x2a\xed\x1c\xab\x04\xe5\ +\xca\x14\xd2\x07\xcf\x15\x87\x44\xcd\x8f\x70\xf0\x3f\x7c\x39\xd2\ +\xd1\x80\x36\xbc\x16\xa4\xa7\x0c\xa1\xce\x81\x8e\x90\x28\xa2\x00\ +\x7e\x10\x31\x17\xa5\x97\x6d\x94\xd6\xdf\x0e\x18\xa5\x05\xeb\xee\ +\x5f\x04\x64\x3a\xbc\x58\x96\xd9\x18\x31\x2e\x06\x08\xf7\x0f\x76\ +\xec\xc5\x4b\x57\x6c\xef\xb3\x43\x3b\xd3\x7b\xd6\xbe\xfc\x2b\xbf\ +\xd1\xde\xf9\xce\x77\xdb\xd6\xc6\x86\x0d\x0f\x50\x56\xcc\x9f\x34\ +\x1e\x29\x1f\xa6\xaf\xc6\x4a\xbc\xf4\xb3\x88\x62\x98\x01\x69\xd7\ +\x51\xab\x30\x64\xbe\x11\xc7\x12\x86\x8d\xec\x7c\x8e\x04\x46\x73\ +\x90\x9c\x13\xf9\x41\x1d\x55\x94\x35\xf2\x3a\xfd\x51\x1a\x91\xa7\ +\x12\x8d\xd0\x79\xda\x28\x5e\x90\xa9\x38\xa1\x4b\x19\x28\xd1\x3c\ +\xa0\x17\x4f\x67\xa5\x71\x01\x37\x72\x50\x27\xd4\x06\x2f\x87\xda\ +\xc1\x0a\xaf\x75\xac\xce\xe6\x0a\x2b\xdc\x3b\xac\x36\xd4\x56\x58\ +\xe1\x75\x8c\xd7\xec\xc5\xcf\x82\x2f\xce\x06\xee\x79\x65\x32\x93\ +\xe3\x1c\xbf\xcc\x84\x54\x62\x04\x1c\x62\xc3\xc4\x87\xdb\xe4\xb9\ +\xa8\x08\x5a\x71\x1c\xd2\xfb\xe1\xf6\x58\x2c\x72\x8d\x51\x56\x2e\ +\x90\xeb\x2e\x0e\x0f\xca\xd2\xce\x65\xa2\xa5\x77\x5b\xbf\x09\x44\ +\x95\x02\xa6\x46\x94\xb2\x4c\x4f\x53\x06\x12\x2b\xf4\x3c\x58\x4b\ +\xde\x54\x02\xc0\xe7\x1c\x5c\x4b\x06\x30\x7a\x5a\xad\xcd\x9f\xb0\ +\xe3\x22\x67\x66\xbd\xd3\x67\xcc\x7a\x1d\xfb\xc8\x2f\xfc\xa2\xfd\ +\xe3\xbf\xfe\x5f\xdb\xaf\xff\xfd\x9f\xb6\xb7\x9d\x1d\xd8\x03\x0f\ +\xac\xdb\xda\x74\x62\xfd\x36\x17\x20\x58\xd8\xd0\x03\x5c\x70\x31\ +\xa2\xff\x54\x43\x4c\xd7\x0a\xa5\xc8\x85\x08\x73\xa3\x8c\x62\xf2\ +\x14\xc4\xe2\x81\x77\x6d\x08\xe9\x90\x3d\x7d\x93\x75\xf7\xae\xe0\ +\x1a\x4a\x42\xa4\x41\xac\x9f\x5a\xc2\x21\x37\x19\x23\x90\x2b\xf1\ +\xcd\x91\x7a\xe7\xa1\x87\x3f\xa6\x67\x33\x79\x39\x94\x34\x02\x6a\ +\x3d\xce\x88\x60\xbb\x49\xcd\xa6\x2c\x07\xdb\x1b\xcb\x46\x9d\x54\ +\xa4\xa2\x91\xb7\x70\x80\x74\xe5\xa4\x46\x2d\xce\x24\x90\xa9\x4c\ +\x20\x9b\xa5\x7c\x18\xa6\x7d\xed\x9e\x90\x1c\x41\xc8\x3d\x55\x38\ +\xc9\x44\x88\x82\x2a\x28\x6e\x3c\x41\x69\x97\x65\x86\x45\xa4\x15\ +\x31\xda\x0d\xa4\x64\xe9\xa4\x4a\xc3\xf2\xb3\x21\xb4\xc8\x66\xfb\ +\xd0\x28\xed\x00\x91\x85\x97\xb1\x93\x8c\x2a\x96\x50\x5a\x11\xd1\ +\x0a\x08\x8a\x1a\x44\x71\x03\x86\x6d\xef\xe7\xd0\x25\x84\xf3\xd1\ +\x86\x60\xc8\x53\xc4\x85\x3e\xff\xd7\x8c\x9b\x69\x07\xd7\xf6\x6c\ +\x3c\x1a\x5b\xb7\xd3\xb6\xee\x5a\xcf\x3a\xfc\x8f\xb4\xcd\xbe\xb5\ +\x06\xa0\xfb\xfc\xb3\x7c\xa4\xc1\x31\xeb\xb0\xbf\x4c\xf4\x74\x26\ +\x77\xc4\x5a\xbc\xdf\xa3\x8d\x1b\x5e\x53\xe8\x4f\x20\x59\x5e\xc6\ +\xba\xa6\x98\x35\x0e\xf6\x0c\x6e\x97\x24\x0d\x52\x50\xa4\xb6\x74\ +\x41\x88\xa3\x7c\x4e\xb9\xce\x7d\x09\x15\x49\x64\x9a\x2a\x51\x85\ +\x10\x2e\xa4\x21\xe6\x4c\x97\xa6\x6d\x44\x47\x92\xa7\x7d\x1d\x0b\ +\x4e\xa8\xcd\xa1\x50\x8d\xf9\x5e\x62\x43\x34\x22\x52\x91\x5b\x66\ +\xaa\x18\x3e\xd0\xd6\xda\xbc\x44\xec\x4f\xa4\x41\xa1\x27\x09\xa1\ +\xa6\x8c\x31\xfb\x18\x37\xd8\x70\x94\x8d\x34\xf1\xae\x13\x4f\x87\ +\xa4\xf1\x66\x22\x46\x2c\x97\x8b\xdc\xaf\xc6\xc8\x1a\xec\x2f\xd2\ +\x7b\xde\xfc\x46\x37\xb9\xe1\xe1\x21\xec\xdb\x76\x80\x72\xed\x63\ +\x1c\xfc\xcd\x0b\x97\x6d\xef\xd4\x83\xf6\x8e\x7f\xeb\xf7\xd8\x57\ +\xfd\xbb\xff\xb6\x3d\x70\xf6\xbc\x4d\x6e\x4e\xec\xf6\x81\x7f\xbb\ +\x5e\x4f\xa5\x21\x2d\xfb\x05\x7f\x60\x97\x7e\x39\x8c\xa9\x2f\x00\ +\xec\x9b\xa4\x35\x36\xe1\xc5\xff\xa4\xe4\x93\x0d\xa2\xd9\x7e\x6c\ +\x1f\xde\xcc\xc1\x4b\x37\x7c\x38\xc0\xd1\x96\x32\x36\x5d\xd2\x1a\ +\xe3\x38\x48\x52\xa4\x81\x12\xef\x94\x47\x1a\x57\xba\x3c\x64\x92\ +\xd7\x74\xb1\x71\x39\x49\xcf\xdf\x63\x97\x47\xbe\xc5\xd6\x79\x57\ +\x84\x4e\x74\xa5\x4b\xb0\x52\x3c\x03\x11\x11\x8c\x34\x1e\x8b\x09\ +\xe1\x1c\xaa\xf4\x35\x52\x7c\x5c\x92\x5a\x5e\xbb\x48\xf9\x31\x6e\ +\x5f\xd7\x58\xd6\x96\x12\x46\x63\x1d\x69\xc7\xa5\x09\xe6\xa1\xf3\ +\x0f\x3b\x7f\xfb\x75\xe5\x17\x97\x03\x6a\x9f\xf7\x30\x56\x28\xc2\ +\xaf\x5b\xe7\x45\x8b\xaf\x69\xd7\x88\xc0\x55\x24\xba\xa4\x43\x98\ +\x73\x23\xea\x72\x7e\x24\x3a\xd2\xe8\xdd\xc8\x24\x0f\x1d\x5f\xb2\ +\xe7\x01\x89\x68\xa7\x42\xe7\x54\x70\x82\xae\x17\xf5\x63\xbf\xba\ +\x15\x43\xc9\x8d\xb8\x6e\xb7\x6d\x27\xf0\x99\x72\xed\xe6\x0d\xfb\ +\x99\x5f\xf9\x88\x7d\xf0\xd7\x7f\xce\xf6\xf6\x3e\x65\x8f\x9c\x9e\ +\xd9\xa9\x73\x03\xdb\xda\xea\x20\x2d\xca\xc1\xa7\xc1\x75\x7d\xfa\ +\x18\xa0\xe6\x56\xb9\xa2\xe9\xe3\x5a\xd2\x65\x04\x64\x33\x96\x9f\ +\x8d\x54\x88\x43\x8c\xb6\x5e\x50\x0a\xfa\x0c\x11\x21\xc2\xed\x95\ +\x57\x88\xf8\x13\x90\x6d\x94\x41\xff\xb1\xab\xa1\x24\xd2\xf1\x50\ +\x92\xcc\xc3\xf9\x52\x06\xbc\xd8\x0a\xa9\x3b\x0e\xa5\xa5\x22\x5a\ +\x84\x8b\x59\x21\x78\x52\x06\x94\x88\xa0\xe2\xb8\x64\x47\x20\xbb\ +\x2c\x9c\xd0\xa4\xcc\x79\x89\x17\x16\x25\x72\x63\x06\x0d\x58\x4f\ +\x88\xb2\x18\x05\xe2\x69\x1b\xd2\x45\x25\x50\x8a\xee\x1c\x5e\xd9\ +\x66\x63\x3b\x3c\x64\x7e\x33\x5b\x5f\xe7\x8f\x25\x0e\xf0\xb1\xc3\ +\xa7\x77\xa2\xdd\xd8\xc8\x59\x8c\x74\xd0\x38\x2a\xaa\x46\x11\xca\ +\x46\x01\x50\xc6\xa8\x11\x66\x3d\x8e\x20\xdd\x54\x98\x67\x9d\x5b\ +\x34\x4b\x9e\xf3\x7c\xf6\x9c\xe9\xac\x67\x17\x2f\x8d\xec\xc6\xb5\ +\x03\x74\x42\x3e\xf5\xd9\x58\xb3\xae\xd3\x69\xcf\xfa\x58\x47\x9c\ +\xda\x6e\xdb\xe9\x73\x6d\x5b\xdf\x9e\x58\x8f\x5f\xda\x9b\x75\x34\ +\x97\x1a\xf3\x7f\x66\xf1\x39\x3a\x1b\xa3\x65\xf9\x39\x8c\xfe\xc7\ +\xb5\x08\x4f\x0c\xfb\xad\x4e\x90\x1a\xd5\xaf\x29\xe5\x9d\x95\xf6\ +\x93\x77\x0c\x16\x74\x60\x3d\xad\xa3\xa6\x97\xa3\xd2\xca\xb8\x4a\ +\x41\x52\x00\x51\xd5\xd7\x3f\x47\x43\xbd\xa4\x03\x25\x49\x2f\x6e\ +\x13\x0c\x51\xd9\x1d\x91\x25\x7f\x0c\xe6\xd5\x47\x9d\x6a\x0c\x8b\ +\x5f\xd8\xe0\x34\x8a\xed\x97\xd3\x1d\x8e\x9a\x1a\xa6\xd4\xce\x91\ +\x92\x31\xd3\x24\xcd\xa8\x62\x78\x26\x7c\xdc\x91\x30\x74\x0e\x92\ +\x1a\x0d\x24\xc4\x51\x8d\x2f\x4a\x27\x8a\x1b\x64\x7d\x94\x61\x68\ +\x37\x6e\xdc\xb4\x8b\x9f\xc1\x5c\x69\xc7\xec\xd9\xa7\xbf\xdc\xbe\ +\xfc\x5d\xef\xb3\x27\x1e\x7f\xda\x06\x9d\x35\xdb\xdf\xe3\xcf\x69\ +\xe3\xfa\x60\xbb\x22\x9d\x3c\xf1\xda\x94\x0f\xd2\x78\xa3\x8d\xe7\ +\xd6\x9c\x39\xdf\x21\x17\xed\xaf\x71\x59\x32\x8e\x86\xce\x4b\xaf\ +\x74\xa1\x43\x39\x7d\x43\x2d\xe4\x1a\x83\x53\xcf\x9c\x83\xaf\x6d\ +\x22\xad\x64\xa0\xdd\xa7\xc2\x62\xe3\x9c\x84\x73\xb4\x62\xaf\x91\ +\xcb\x8b\x0f\x46\x61\x27\xb9\x04\x0c\xbc\x01\x09\xb2\xde\xd0\x0e\ +\x37\x02\xaa\x13\xf1\xb2\xc8\x34\x2b\xdc\x0f\x58\x9d\xcd\x15\x56\ +\xb8\x77\x58\x6d\xa8\xad\xb0\xc2\xeb\x18\xaf\xd9\x8b\xbf\x9e\x18\ +\x26\xee\x79\x65\x16\x33\x59\xcc\xe0\x65\x26\xa4\x12\x23\xc0\x10\ +\xeb\x24\xe9\x46\xe6\x11\x05\xcb\x78\xcc\x82\xb9\x50\x2c\x3a\x50\ +\x5c\xcd\xcc\xd9\xc7\x02\x24\x6e\xfa\x38\x4f\xb5\xf3\xae\x03\xaf\ +\x00\x47\xf8\x73\x79\x1d\x33\x0a\x1f\xd2\x33\x92\xa5\x62\x3d\x11\ +\x27\x11\x17\xf1\x94\xf9\x84\x9d\xb5\xe7\x84\x3e\x37\xd5\xb8\x8b\ +\xd0\x9a\x8c\x6c\xb0\xb9\x65\xad\x87\x1e\xb5\x8b\xcf\xbf\x68\xbf\ +\xf4\x63\x7f\xdf\x7e\xee\xaf\xfd\x35\xeb\x3f\x77\xc5\x1e\x7b\x6c\ +\xc3\xd6\xfb\x5d\xdb\x44\x56\xed\x0e\xff\x88\xdf\x17\x23\x7a\xc2\ +\x47\x93\x7b\x6f\x4f\x2d\x12\x28\xa7\x6f\x1c\x5a\xf8\x48\x86\xb7\ +\xf2\x76\x9a\x36\x91\x44\x24\x03\xbf\x11\x4c\x1a\x6f\xd0\x6e\x47\ +\x55\xd0\xfc\x36\x35\x6d\xc2\x2e\x6d\xa4\xd7\x7d\x5f\xf7\x2f\x9d\ +\x64\x5e\x06\x4f\xef\xf2\x12\x23\x21\x93\xb3\x55\x92\x57\x1e\xe4\ +\x19\x2d\x80\xeb\x34\x5a\xf3\xf7\x96\xfc\xe7\xa3\xaa\xb6\x16\x51\ +\x21\x1d\x2c\x88\x89\x45\x95\xfc\x2e\xda\xe5\xa2\x10\xe4\x11\x35\ +\x05\x08\x98\xa5\x48\x69\x9d\x42\x03\x87\x7d\x53\x87\xa2\x75\x85\ +\xe2\x2a\x45\x64\xa5\x40\xa8\xee\xcb\x00\x21\x8c\xf2\x38\x1d\x06\ +\xde\x68\x82\xf7\x30\x96\x09\x71\xa8\xbd\x4d\x82\x01\x44\xc1\x0f\ +\x63\x86\xa5\x8c\x4b\x6e\x42\xb8\xf5\x9c\xa0\xb0\x8d\x14\x54\x98\ +\xa5\xcc\xcf\x2f\x8f\xa6\x05\x7c\xc1\x0c\x53\x5c\x23\xfa\x46\xf4\ +\xcd\x03\x3b\xb8\x7d\x20\x5d\x6f\xbd\x6b\xbd\xcd\x35\xeb\x0e\x7a\ +\x66\xe8\xdb\xf9\xf3\xa2\xfc\x7f\x07\x3a\x57\xbd\x62\xa3\x46\x59\ +\x41\x1c\xaa\x0c\x14\x73\xe3\x44\xed\xc6\x7c\x5c\xe4\xf0\x22\x08\ +\x24\x59\xaa\x54\x91\x6b\xe8\x06\x3a\x83\x99\xae\xf6\x59\x81\x6a\ +\x16\xc3\xf5\xac\xe9\x82\x45\xa6\x07\x8e\xe4\x91\xed\xbd\x04\xb5\ +\xed\x42\x11\x1c\x35\x21\x5a\xa5\x15\x9a\x16\x07\x8a\xd0\xed\xc8\ +\xa6\x9f\x92\x07\xe5\x64\xd0\x4f\x24\xc3\xf9\xf1\xff\x3f\x03\xcf\ +\xb1\x8e\x72\xde\x09\x62\xdb\x73\x7c\xc3\xdb\x65\xb0\xa5\x9e\x1b\ +\x69\xd4\x71\x5c\xe5\x46\x1a\xcf\x53\xea\x03\xde\x1f\x79\x88\xf3\ +\x98\x36\x94\xd1\x9f\x2b\x1a\xb0\x4c\x90\xeb\x9b\xdc\xb4\x9b\x4c\ +\x54\x9e\x03\xd0\x7b\xd0\x5d\xba\x79\xcb\x3e\x75\x7b\x68\x27\xde\ +\xf3\x2e\x7b\xef\xff\xe6\xbb\xec\x8d\xdf\xf2\x5e\xdb\xe8\xf6\xed\ +\x60\xe7\xc0\xc6\x07\x43\xa4\x1b\x5b\x6b\xac\x5b\x82\xd6\x41\x1a\ +\xc6\x3c\x32\xa4\x86\x63\x8e\x9f\x33\x02\x67\x8e\xb4\x0e\xef\xab\ +\xbc\x1d\x4e\x5a\x36\x38\x9a\x31\x54\x03\x5c\xa5\x83\x1d\xc6\x5e\ +\x4f\x0b\xa1\x2b\xe0\x24\x6f\x12\xd1\x9e\x62\xb7\x91\x1e\x47\x6d\ +\xeb\x74\xda\x55\xfa\xa2\x6b\x64\x85\x97\x31\xc9\xe0\x25\xa3\xb8\ +\x49\xcb\xb7\x0e\x06\x6a\x62\x32\x20\x22\x22\xd8\x35\xbc\xbe\x64\ +\x16\xce\x43\x41\x95\xc0\x1d\xde\x19\xb5\x39\x71\x17\x49\xee\x5b\ +\xb0\x1d\xee\xb6\xfe\xc7\x35\x7f\x62\xae\x5d\x5f\xce\x18\x50\xbe\ +\x91\x39\xaf\x23\x72\x08\xb4\xa1\x26\x19\x05\x54\x39\xef\xd7\xa9\ +\x28\xbd\x8a\x4c\x34\x24\xf2\x11\xa3\x67\xd0\x29\xf7\x98\x17\xbd\ +\xf3\x35\xcd\x2b\xee\xa8\x0c\x14\x65\x45\xe7\x3e\x59\x5a\xdd\x68\ +\xae\xe5\x4a\xa3\x14\xd2\x40\x85\x4e\x9b\x7a\x89\x75\xf9\xa8\x32\ +\x71\xf3\x5f\x96\x51\x4f\x8e\x21\xfc\xc2\xd1\x60\xd0\x35\x1b\xcd\ +\xec\x53\x17\x2e\xda\x3f\xfb\xd5\x7f\x69\xbf\xfc\x99\x5f\xc6\xf8\ +\xf5\x59\x7b\xfc\xfc\xa6\x9d\x3d\x3b\xc0\x7c\x8a\x4f\x6e\xe0\xfa\ +\xe1\xb5\xaf\x39\x8b\x1c\xe1\x70\x3f\xc9\xea\x1a\x63\x0c\x90\xd7\ +\x17\x8c\x04\xca\x9d\xe6\x56\xbd\xdb\xc7\xb8\xe1\x42\xbc\xd3\x16\ +\x34\x3f\xb0\x66\xfe\xd3\xdd\xda\xc4\x43\xd9\xb9\x9f\xa1\x5f\x2d\ +\x60\x1a\xd2\x9e\x88\xd3\x2a\x1a\xe1\x60\xcd\x58\xc2\x06\x4c\x7f\ +\xcc\x47\x49\x05\xaf\x83\x50\x91\x44\xcd\xaa\x7f\x88\xc0\x51\x14\ +\x4e\xd4\x76\xc7\x23\x13\xe6\x98\x92\x41\x14\x10\xa7\xa7\x29\x2b\ +\xe5\x38\xa4\x96\x21\x48\x4f\xef\xed\x54\xa5\x53\xe4\x7c\x49\x2e\ +\xa2\x70\x8e\x60\xdd\x9b\xb3\xfa\xf8\x63\xb7\x40\xd0\xe1\x1c\x1b\ +\xad\xc7\x9f\x0d\x7e\x25\xc8\xd2\xc9\x63\x3a\x2f\xa8\xca\xc0\xf3\ +\x18\xfa\xa5\xe7\x24\x75\x38\xfc\x29\xaa\xc6\x68\xde\xdc\xb9\xda\ +\x22\x92\x82\xc7\x0b\x7d\x61\x36\xeb\xda\x85\x4b\x87\x76\xeb\xc6\ +\xa1\x7f\x4e\xa2\x71\xf9\x44\x1a\xfb\x4c\xa7\x8b\x35\xc2\x66\xd7\ +\x4e\x9f\x9d\xd8\xf6\x56\xcb\x7a\xe0\xb9\x59\x3b\x1e\xa2\x67\xe2\ +\xb3\x7a\x3a\x1b\xd9\x64\x84\x46\x41\x27\x63\xf7\x65\xd7\x62\x3f\ +\x65\x26\xcd\xc6\x9c\x5f\x4b\x0d\xb2\x04\x34\x0a\x72\x29\x16\x94\ +\x77\xb4\x5d\x44\x65\x1c\xe5\x71\x24\xc1\xb2\x65\xf9\x68\x02\xda\ +\xdf\x11\xd0\xae\xd1\x2f\x22\x35\xb5\xd5\xb2\x14\xcb\xf4\xcb\x64\ +\x75\x0b\xf9\xb8\xe8\x4f\xbc\x73\xa8\xd3\x18\x84\xf3\xe2\x1b\x69\ +\x1c\x87\x64\xe4\x73\x25\xc6\x9a\x63\x85\x0e\x07\xe1\xe3\x1d\x09\ +\x98\xe0\xa0\x5c\x57\x3c\x68\x6a\x52\x4d\x46\xfe\xe5\x88\x94\x2b\ +\xe6\xca\x97\xe7\x93\x02\xf6\x4b\x78\x6b\xb7\xbb\x76\x38\xda\xb3\ +\x6b\x97\xf6\xec\xfa\xf3\x43\x5b\xef\x3c\x6c\x6f\x7a\xdb\x97\xd9\ +\xbb\xbf\xfc\x2b\xec\xd4\x89\xf3\x18\x0f\x31\x44\x0e\x47\x7e\xcd\ +\x20\xd0\x1c\x46\xa0\x40\x3d\x4f\xb4\x4b\x6b\x19\x49\x8e\x9b\x20\ +\xf4\x87\xd0\xe0\xd1\xb1\x7c\x3c\xf5\x34\x3c\xc4\xcb\xa7\xcb\x93\ +\x6f\x8e\x18\xfb\xe8\x08\xb1\xc6\x3f\x86\x45\xde\xd8\x21\x90\xd6\ +\x63\x51\x92\x83\x75\x9e\x84\x28\x09\x3c\x66\x18\xf2\x46\x17\x31\ +\x51\xd3\x49\xc9\x1e\xe0\xc9\x20\x19\xcd\x5e\x90\xfa\x38\x07\xc7\ +\xa3\x4e\xb4\xc2\xfd\x82\xd5\x59\x5d\x61\x85\x7b\x87\xd5\x86\xda\ +\x0a\x2b\xbc\x8e\xf1\x9a\xbb\xf8\xb3\xc0\xcb\x66\x02\xaf\x6a\x65\ +\x96\x39\xbf\xc3\x64\x54\x22\x04\x7a\x87\x9e\x43\x6d\xc8\x35\xec\ +\x26\x1f\xb4\xec\x92\xc6\xc1\xff\x9f\x22\x5b\x74\x5c\xcc\xf0\x86\ +\x71\xb1\xa3\x8e\xab\x1a\xe7\x8b\x0d\x29\xf2\x94\x8b\x67\x49\x1b\ +\x99\x6e\x0e\xa5\x3d\xdf\x62\x75\xd7\xb9\x4a\x4b\x92\x01\x95\x49\ +\x4b\xab\xd8\x17\xde\x08\x14\xf3\xe7\x1b\xb1\x18\x88\x05\x7f\x07\ +\xcd\xc2\xff\x49\x5b\x3f\xff\x20\x92\x1f\xda\xc7\x7f\xed\x23\xf6\ +\x93\x7f\xf3\xbf\xb7\x8f\xfe\xd0\x8f\xda\xa3\x9b\x3d\x7b\xe0\xdc\ +\x9a\x6d\x22\xbf\x35\xde\xf8\xc1\xc1\xc5\x30\xbf\x7b\xab\x45\x0c\ +\x1c\xe6\xa2\x81\x91\x7c\x82\x70\x19\xc9\xa0\x83\xe7\x29\x08\x8d\ +\xbf\x29\xd7\x62\x88\x7e\x7c\x81\xa2\x05\x16\xd7\x30\x20\xb4\x5e\ +\xd2\xa6\x9a\xdb\x32\x76\x7b\xda\x78\xcc\xc0\x63\xea\x72\xd1\x4e\ +\xdb\x58\xf0\x78\xe0\x32\xda\xc0\xb0\xc4\x34\xf6\x26\x72\xbb\x05\ +\x50\xa5\xc5\x2b\x69\x96\x07\xe7\x47\x3f\xdf\xc7\x95\xab\x64\x8a\ +\x1a\x78\x02\x15\x45\x01\xf8\xc6\xc4\x95\x61\x32\x97\xd6\xed\x15\ +\x36\x88\xf4\xae\x04\xd8\x30\x95\x37\x2a\x3c\x5d\x9e\x65\x80\x3e\ +\xc0\x64\x12\x42\xc9\x16\x50\xd7\x35\x29\xcf\xaa\x32\x4e\x3f\x21\ +\xe2\x32\x59\x60\x7e\x34\xc6\x91\x31\x83\x2c\x85\x87\x9e\x2c\xe9\ +\x42\xb0\x30\x3c\x97\x24\x29\x4b\x42\x31\x02\xc6\x15\x54\xcc\xda\ +\x61\x18\x30\x2c\xac\x8b\x0a\x8f\xb3\xae\x98\xd7\xcd\x6c\x3c\xb1\ +\x83\xfd\x89\x4d\x47\x53\xeb\x0e\xba\xd6\x5d\xeb\x58\xa7\xdb\x41\ +\x56\xbc\x19\x41\xc7\xcc\xdb\x33\x60\xd8\xd2\x35\x8b\x83\x97\x17\ +\x5e\xb9\x39\x4d\xdf\xf2\xcf\x38\x64\x0c\xb2\xc8\x74\x21\x19\x91\ +\x86\x42\x32\xd9\x3a\x81\x10\xbb\x6c\x2e\xc1\xbc\x5d\x80\x16\xde\ +\xe3\x1c\x8d\x57\xa7\x15\x83\x58\x96\x36\x0d\x52\x97\xf6\x77\x82\ +\xfa\x01\x0d\x6b\x4b\xf1\xd0\x50\x24\x3a\xb0\xd8\x6f\x01\x4a\xe6\ +\xf3\x70\x4e\xed\xc4\xf6\xe3\xb8\xc8\xf3\xc3\x27\xd1\x78\xb3\x87\ +\x72\x5e\x53\x6a\xff\xb4\xa1\x10\x6f\xea\xb9\x79\xc6\xbf\x6e\x49\ +\x9a\x8d\x81\xa8\x64\x42\x3b\x05\x71\x50\x84\x88\x57\x1b\x7d\xc9\ +\xaf\x8b\x3d\x42\x01\x59\x16\xdf\x28\xe7\xed\x1f\xf4\x11\x7e\x8b\ +\x1e\xec\xcd\x83\x43\xdb\x45\xff\xb8\x7c\xfd\xaa\x3d\xd7\xde\xb4\ +\x07\x7f\xcf\xb7\xd9\xef\xf8\x23\x7f\xc8\x9e\x7a\xec\x71\xeb\x1d\ +\x8c\xed\xf6\xde\x81\x8d\x26\x63\x94\x6f\x6c\x6d\xfe\xb7\x5e\x38\ +\xe4\x68\x2a\x52\x60\x06\x19\xa3\xcd\x78\x14\xb9\xeb\x24\xe3\x18\ +\x85\x4e\xa4\xeb\x31\x0e\xa7\x49\x72\x8c\x66\xba\x90\x73\xac\xca\ +\x1b\xe0\xb4\xd1\xcd\x9f\xd0\xf9\x00\x59\xf1\x1e\x23\xd1\x51\x19\ +\x3d\x56\x7c\x63\xbb\x20\x0b\x3b\xf2\x2e\xa3\x88\x41\xc4\x92\x55\ +\x3c\xcb\x59\x40\xba\x69\x0d\x8d\x1d\x68\xf0\xbb\xdb\x50\xfb\x1c\ +\xf1\x79\x24\x7d\xdd\x61\xb1\xf9\xe7\x4f\x17\x40\xe6\x88\xf0\x78\ +\x64\x3f\x80\x7d\x9e\x5a\x1f\x13\x11\xa4\x1b\xc4\xba\x16\x53\x4e\ +\x80\x17\x9d\xb1\x0b\xdd\x4e\x3c\xc7\x89\xc6\x46\x5a\x4d\x80\x5c\ +\xbe\xa8\xd7\x4b\x3a\x1f\x2d\x15\x33\x5f\x5c\xff\x8d\xae\xf2\xa5\ +\x10\x32\x1e\x1c\x23\x64\x43\x4b\x82\x34\x93\x73\x53\x00\x84\xd2\ +\xe4\x01\xa7\x9c\x8b\xc8\x86\x46\x61\x0b\x99\x2c\x10\xf4\xfa\x1d\ +\xdb\xe8\x76\xed\xe6\xed\x1d\xfb\x95\xcf\x7c\xc2\x7e\xf6\x5f\xff\ +\x82\x3d\x7f\xf1\x37\xed\xd4\xd6\xa1\x3d\xfc\xf0\xc0\x4e\x6e\x77\ +\xe5\xc3\xeb\xe1\xf3\x16\x96\x05\x57\x15\xbd\x2a\x16\x78\x9d\x31\ +\x0e\xff\x29\x26\xe1\x2f\xcf\x93\x70\x9a\x37\xa7\x93\xcb\x88\x16\ +\xb0\x05\xad\x14\x78\xeb\x76\x3c\x49\x1c\xfc\xcf\x54\xcf\xe7\xff\ +\xcf\xde\x9f\x3d\xcb\x96\x64\xe7\x9d\x98\x9f\x13\x71\xa6\x3b\xe5\ +\x9c\x95\x99\x55\x00\x48\x34\x88\xa9\x41\x82\x93\x89\x32\x36\x65\ +\x1a\x5a\x46\xb5\xa9\x35\x98\x4c\x6f\xfa\xbf\x64\x32\x59\x9b\xa4\ +\x07\x49\x4f\x52\x6b\x26\xdb\x68\xd6\x93\x48\x8a\xec\xc9\x88\x06\ +\xd8\x20\x8a\x04\x50\x85\xa1\xe6\x9c\xef\x70\xc6\x88\x73\xf4\xfd\ +\xbe\xb5\x96\x6f\xdf\x71\xe2\xdc\xbc\x55\xbc\x85\x42\xe6\x8d\x15\ +\xe1\x7b\xad\xf5\xad\xc1\x7d\x8f\xe1\xdb\x3d\x76\x44\xfa\x30\xe1\ +\x66\xa7\xc0\x78\x43\xc9\x26\x02\x18\x2b\x37\x15\x20\x1a\xc4\x4e\ +\xc2\xc6\x90\x6d\x2e\xa0\xdb\xf1\x4d\xaa\x4a\xf1\xde\x90\xc5\x22\ +\x87\x96\xa3\x29\xed\x2c\xd9\xef\xac\x67\xd4\x56\x4e\x41\xd6\xe6\ +\x50\x52\x82\xc9\x9c\x52\x14\xea\xb0\xe4\xda\x9b\xc7\x67\x91\xfb\ +\x0b\x63\xc0\x64\x1a\x45\xd1\x3c\xab\x79\x77\x90\x30\xc6\x96\x0b\ +\x34\x4f\x12\xe4\x0a\x23\xbe\x1f\x55\x19\x13\x69\x7c\x75\xee\xb6\ +\x79\x8a\x98\xe8\xb8\xb9\x59\xb4\x1f\x7d\x72\xd6\x3e\xff\xe8\xba\ +\x5d\x5d\x91\x48\xbe\xcb\x7d\x3f\x85\xf7\xda\x23\x95\xb7\xd6\xed\ +\xe8\x80\xf5\x3d\xf0\xa4\x0e\xff\x5d\xcb\x13\xdf\xe4\x8e\xf3\x8a\ +\xe3\x5b\x35\xa8\x82\xeb\xea\x34\x09\x46\x9f\x36\xcf\xbc\x66\x74\ +\x10\x5c\x4d\x33\xf3\x68\xd9\x88\xdb\x4c\xb3\x95\x46\xa7\xc8\x33\ +\x65\xec\x35\x26\x69\x5d\x7d\xae\xa7\xa5\xb6\xe7\x73\xa9\xf2\x8f\ +\x7e\x7d\xeb\x3f\xb7\x89\x78\x6c\xda\xfb\x36\xa2\x6e\xcb\x3a\x7b\ +\x11\x29\xea\xb4\xb0\xa5\xa1\x8e\xf9\x05\x10\x20\x97\xc1\xb8\x22\ +\xa2\x4e\x36\x73\x0b\xe4\xb3\xb3\xde\x61\xb7\x9a\x84\x4c\xdb\xa9\ +\x89\x25\xcd\xf0\x7f\x07\xb3\x03\xed\x50\xe7\xd3\x4a\x76\x8e\x83\ +\x65\x7b\x76\xf6\xb4\x7d\xf8\xfd\x8f\xdb\xf9\xc7\x0f\xda\x7b\x6f\ +\xff\x62\xfb\xcd\xbf\xf9\x9b\xed\x97\x7e\xf1\x2f\xb7\x93\xbd\x63\ +\xff\xe7\x20\x3f\xad\x4d\x44\xf8\x2b\x5e\xdb\xd8\x4f\x9b\x99\x40\ +\x90\xb3\x0e\xea\x4a\xdc\xb2\x19\x17\xcf\xb0\x4f\x3e\x78\x45\x31\ +\x5e\xd7\xaf\xd2\x55\x62\xe2\x0e\x5b\xd4\x1b\xf7\x9d\x96\x04\x97\ +\x9c\x9c\x92\x7e\x52\x58\x1a\xab\x7c\xc5\xc3\x6e\xcd\x58\xf9\x96\ +\x3d\xf4\x38\x88\xba\x0f\xcb\xcc\xd1\x75\x38\x62\xed\xac\x24\xef\ +\x0a\xe1\xbd\xff\x64\x42\xc2\x79\x42\x2a\xcf\x8e\xbe\x9a\xb4\xdb\ +\xbb\x3b\xda\xd1\xcb\xa3\xdd\x84\xda\x8e\x76\xf4\x0a\xd3\x97\xe6\ +\xe4\xaf\x86\x56\x0f\xa0\xfa\x7e\x23\xfd\xd4\x56\xe6\xae\xc4\x63\ +\x63\x36\x48\x90\x6f\x23\x6c\x1a\x79\x94\xb8\xea\xc2\x27\x2c\xcc\ +\xdc\x10\x08\xe7\x2e\x52\x72\xe4\x98\x4a\xe1\xc0\x2c\xe6\xf1\x51\ +\x0a\x83\xd7\x40\x10\x83\xf6\x02\x7d\x33\xda\xed\x15\x6f\x2c\x6e\ +\x46\xc2\x86\x99\x45\x60\xdc\xbf\x3a\x5e\x05\x24\x72\x41\x81\x4d\ +\xb7\x75\x2d\xbe\x45\xab\x82\xee\x3f\xd7\x3f\x38\x6e\x07\xef\x7d\ +\xad\x7d\xf2\xe1\xe3\xf6\xcd\x7f\xf0\xff\x6e\xff\xe9\xff\xf6\x7f\ +\xdd\x6e\xbe\xf5\xdd\xf6\xee\x9b\x47\xed\xf8\xde\x51\xbb\x27\xc7\ +\x7b\x4b\x7e\x2a\xc8\xb7\x55\x91\x87\x9b\x16\xa5\xe6\xa7\x21\x2f\ +\xb8\xc1\x9d\x00\x00\xff\xf4\x49\x44\x41\x54\x63\x92\x2b\x0a\x37\ +\x11\xbe\x91\x28\xdd\x84\x9c\xd2\x24\x70\x1f\xe3\x7c\x0a\x8f\x7c\ +\xbe\xf9\x26\x1e\x7b\x14\x7c\x8a\x7b\x70\xd9\x72\xc4\x56\xd2\xa8\ +\x3f\xd4\x3e\x20\x4d\x7e\x8a\x63\x4a\xb7\xb7\xe5\x90\x58\x0c\x32\ +\x54\x42\x6e\xbe\x7e\xaf\x17\x9b\x51\x65\xfa\xe9\x1b\x6f\xff\x0d\ +\xc2\x62\xb4\x4c\x05\x8c\x79\xc4\x4a\x0d\xa1\x6b\x12\x71\x90\x0e\ +\x54\x39\x6e\x11\x76\xb6\x5c\xb9\x84\x6e\x72\x72\x2c\xb7\x49\x6b\ +\x6e\xd7\x4d\x32\x0e\xa7\xea\x00\x4c\x89\x26\xc6\x71\x27\x8e\x8f\ +\x37\x04\x20\x6c\x92\xa1\xde\x74\x6f\x23\x0c\xe2\x0e\x4c\x43\x61\ +\xb5\x9e\x45\x29\xc2\xbc\x66\x8a\xf1\x6a\xa8\x84\x29\x96\x50\xe1\ +\x96\x73\xc1\x3a\x58\x56\x1c\x13\x36\x6b\xe5\x66\x12\x6d\x79\xb0\ +\xef\x6a\x18\x1c\xe5\x1c\xa9\x73\x28\xdf\x26\xfe\x33\xcb\x8a\x07\ +\x81\xea\x9b\xff\x41\xc8\xb1\x5d\x0a\x81\xa2\xae\x5a\x77\x2c\xe3\ +\x26\xb7\xe7\x98\x44\xd4\x31\xd3\xe4\x6c\x7c\xf0\x1b\x4c\x93\x2d\ +\xb1\x8d\x94\x41\x05\x0e\x71\x50\x6d\xf2\x17\xa5\xe9\xd8\xa8\x1a\ +\xa6\x60\x4b\xb3\x5c\xe5\x5b\x14\x31\x55\x65\xaf\xdb\x1b\x1c\x3d\ +\x07\xae\x19\x6c\x13\x67\xff\x60\xc3\x0f\x1b\x13\x9a\xec\x16\xdb\ +\x6c\x97\xcc\x3e\xc9\x27\xd2\xfc\xed\x7f\xdb\xc5\x4d\x95\x57\xc7\ +\x26\x46\xc5\xb8\x39\xc2\x4c\x1c\x03\xe1\xe0\x3a\xca\xc0\x92\x7d\ +\x29\x77\x0f\xfc\x5d\xad\xd6\xed\x52\xe5\xf1\xfa\xaa\x7d\xfc\xe4\ +\x49\xfb\xee\xe7\x4f\xdb\xcd\x2f\xfd\x7a\xfb\x8d\xff\xd5\xff\xbc\ +\xfd\x8d\xff\xe9\xff\xb8\xbd\x79\xef\x51\x3b\xbb\xb8\x68\xab\xd3\ +\x73\x55\x4f\xdb\x99\x48\x8b\x49\x34\xae\xaf\xb1\x09\xa6\x65\x7f\ +\x0a\x0d\x8d\x03\x42\x85\x61\x99\x70\xc1\x86\x4f\x0d\xda\x14\x0f\ +\x7b\xf0\xd0\x27\x3c\xf9\x3e\x17\x3f\x64\xb2\x0d\xb8\x73\x90\x3a\ +\x73\xa5\x5f\x94\xca\x4f\xdd\x9c\x03\x39\xa8\x94\xa5\xdb\xe4\x17\ +\xed\x8b\x5c\x1e\xb0\x4a\xbb\xf1\xf2\xcb\x7a\x27\x9b\xc1\xc0\x3b\ +\x21\x6b\xe3\x26\xf3\x16\xd2\x06\x7f\xfe\x84\x5a\x3a\x9b\xc6\x5c\ +\x77\xd0\xe8\x5e\xf4\x02\x61\x5f\x09\x62\xbd\x37\xd7\x75\x1b\xf6\ +\x3c\x1a\xb7\x5d\xc5\xcd\xb6\xe7\xe6\xc6\xbd\x83\x1c\x3b\x24\x88\ +\xb7\x91\xcd\xcf\xc5\x38\x17\x93\x1b\x18\xce\x4f\x63\x25\x23\xe5\ +\x89\xbe\xc5\xc7\xd7\x11\xe9\x25\xcf\x7d\xe2\xda\xa2\xa5\x74\x2f\ +\xbb\xbd\xfb\x96\x7f\xb7\xe1\x17\xf1\x5a\x98\x95\xee\x97\x01\x24\ +\xe2\xd3\xe6\x15\xd4\x82\xcf\x43\xe7\x91\x0d\x55\xfd\x0c\xeb\xc8\ +\x2a\xfc\x87\xd4\x52\xed\xf9\xee\x87\x9f\xb4\x7f\xfc\x3b\xff\x55\ +\xfb\x9d\x3f\xf9\xdd\xf6\xd9\xb3\x3f\x69\x5f\x7f\xeb\xc0\x4f\xab\ +\xdd\xbf\x7f\x20\xff\x95\xcf\x0d\x52\x7a\xc9\xc5\xc9\x5a\x50\x97\ +\xe8\xc3\x88\x7c\xce\x22\xd0\x16\x0b\xa9\x43\x34\x0d\x25\xf1\xc9\ +\x56\x86\x60\x61\x0e\x3d\xbb\x46\xd1\x06\x2b\x3c\x37\x9b\x7e\x5a\ +\x70\x39\xb1\x92\x29\x68\x5d\x91\xd4\x81\x46\xcb\xdd\x64\xaf\x4d\ +\xd7\x4a\x34\x18\x9f\x9f\x8d\x00\x3c\xe6\x2d\x08\xda\x96\x7c\xca\ +\x39\x69\x1b\xe4\x7d\x2c\x7b\x4f\x39\xf7\xac\x58\xd3\x6d\xc1\x34\ +\x8f\x98\xa8\xe7\xdc\x62\xbc\x0d\x65\x4d\xdd\x50\x59\x13\xdf\xa4\ +\x59\xa5\x21\x70\xcd\xb5\x27\x69\xba\x2d\x68\xca\x90\x92\x8f\x37\ +\x0b\xc9\x83\xc8\x00\xc2\x7f\x30\x7f\xff\xa3\xb3\xf6\xe1\x8f\xd4\ +\xf7\x57\xb2\x07\xf7\xd6\xed\xf5\x37\xf7\xda\x09\xff\x3d\x7b\x10\ +\x3f\x1d\x7a\xb3\x5e\x78\x32\x8d\x9f\xb8\x74\x85\xdb\x0e\x94\x6a\ +\x88\x6c\x9c\x25\xfe\x5c\xd8\x6c\x5c\xa7\xdc\x17\xa1\xcc\x73\x89\ +\x66\xb6\x4d\x23\x94\xd0\x68\x89\x3a\xe1\x79\x8e\x26\x4d\x79\x24\ +\xa1\x84\x93\x9a\x39\x59\x0c\xda\x16\xdb\x24\x5d\x82\xd8\x7e\x05\ +\xc0\xa1\x31\x74\x0b\xf5\xfd\x33\x52\xc6\x56\x8a\xa0\xba\xbe\x4c\ +\xde\x79\x19\x13\xce\xff\xbd\x6a\x5d\x2a\x40\x02\x7d\x9a\x14\x23\ +\x92\x7d\x92\x3a\x88\x09\x5b\xd9\x51\x99\xcd\xb2\x43\xd5\x15\x8b\ +\x88\x61\x55\x02\xaf\x16\x30\xf1\xc5\x5f\xd3\xfa\xf3\x5c\x86\xc8\ +\xc5\x35\xec\x40\xd6\x55\xfb\xe4\xb3\x27\xed\xc3\xef\x9f\xb5\xbd\ +\x67\x6f\xb6\x5f\xfd\xe5\xbf\xda\xfe\xfa\xdf\xf8\xf5\xf6\xc6\xeb\ +\xdf\x68\xcb\x76\xd0\xae\xce\x57\xce\xc6\x3a\xd4\x35\xcf\x35\xe8\ +\xba\x53\x13\x6a\x81\xa6\xcc\x3e\x50\x5f\x84\xcb\x92\xb7\x99\xf7\ +\x09\x1e\xd5\xe7\x41\x1e\xf0\xd4\x8d\x93\x13\x39\x7a\x5f\x5d\x9f\ +\x72\xa6\x0d\xdf\xea\x27\xe1\x39\xea\x03\x1e\x3a\x31\x24\x0b\x4c\ +\x42\xb7\x07\x36\xb7\xcd\xfc\x92\x43\x53\xae\xd0\xbb\x1d\x95\x1d\ +\x56\x94\x66\x6f\x7f\xfb\x17\xe5\xce\x99\xd1\x68\xdf\xd1\x57\x8d\ +\x76\x7b\x77\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\x8e\x5e\x61\xfa\ +\xd2\x9c\xfc\x63\x43\x9f\xd7\x0b\x78\xe9\x2b\xf4\xbc\x84\xd5\x90\ +\x2d\x3e\x86\xea\x06\x42\x8b\xba\xcc\x8a\xc7\x60\x8a\x15\x0f\xd4\ +\x74\xbb\x6d\xa8\x75\x77\x53\xbe\x06\xc3\xd7\x7a\xd8\x0d\x67\xac\ +\x07\x76\xd2\x3e\x0d\xd6\x04\x8f\x92\xbe\x2a\xfe\x5f\x1f\xf9\x03\ +\x07\x9f\x62\x26\x3c\x73\x92\x25\x6d\x85\x43\xc6\x8a\x6c\x93\xae\ +\xce\xb9\xbf\xa5\xac\xed\xc2\x4f\x40\xf2\x74\xd9\xc1\x22\xff\x58\ +\xfc\xf5\x37\x5a\x3b\x7e\xd0\xfe\xf8\x9b\xff\xbc\xfd\xd3\xff\xe3\ +\xff\xa1\xfd\xff\xfe\xfd\xbf\xd7\x7e\x41\xf7\xc9\x6f\xbd\x77\xd8\ +\xee\x2b\xe4\xbe\xfd\xfc\xc3\x1e\x54\x49\xaa\xf8\x49\x48\xa9\x75\ +\x03\x12\xa4\x5b\x04\x0f\xd0\xc4\xcd\x43\xdd\x30\x04\xc7\x27\xea\ +\x47\x0a\x1f\x71\xe7\x98\xf4\x90\xb3\x50\x9d\x6e\x5e\xc9\xc9\xa4\ +\x5e\x3c\x31\x27\x93\x70\x1c\xc2\x5f\x1c\xdd\x72\xdd\x14\x49\xe1\ +\x66\x4a\x9c\x18\xeb\x85\xc7\x3b\x74\xb8\xc5\x92\x26\xa2\xa5\xb1\ +\xb2\xc1\x3c\x88\xcf\x76\x64\x7b\x02\x8d\xdb\x78\x24\x42\x14\x73\ +\xcb\x5a\x40\xe6\xb3\x53\x51\xee\x1f\xc7\xdd\x0a\xdc\x42\xf8\x2a\ +\x89\x5d\x1d\x93\xeb\xc2\xb6\x0a\xc9\x34\xa5\x1a\xd6\x55\xa5\xf0\ +\x8e\x16\x38\x85\xa6\x18\xeb\x5c\xfe\xb4\x2d\xb6\x81\xb5\x29\x2e\ +\x99\x63\xb4\xf0\xa4\x5a\xc6\x05\x36\x38\x5a\xc4\x9e\x32\x34\x98\ +\x21\x0f\xd8\x48\x8f\x4d\x14\xbe\xde\x36\x68\x1c\x2f\x43\x6c\xb8\ +\x68\x3f\x0b\xf3\x39\xa8\xe0\xbd\x03\xf6\xbb\x4e\x39\xe9\x3e\x9d\ +\x88\xcc\x9b\xd6\xda\x87\x96\x6b\x42\xcd\x0b\x6d\xbb\x80\x3b\x45\ +\x15\x13\x88\x04\xe6\xb6\xc1\xbd\x70\xf5\x83\xd7\x44\x85\xd9\x2f\ +\x29\xf6\x5c\x11\x2d\x9b\xf6\x4d\x36\x2b\x09\x25\x2d\x43\xfc\x8c\ +\x12\x9f\xc7\x25\xdd\x15\x63\x8a\x3a\x69\x57\xb8\x55\x82\x29\xc8\ +\xd2\xa4\x8a\x06\xa5\x36\xd4\xc0\x58\x2b\xb6\xb5\x1b\x23\xc1\xc7\ +\x4d\x4e\xa4\xf9\x49\x33\xb8\x74\x86\xb2\x6b\x22\xcd\x7e\xc5\x3d\ +\x91\x06\x97\xae\xe2\x2a\xc8\xa5\x46\x7a\xfd\x72\x25\xc7\xe3\x2f\ +\xa1\x6e\x73\x0b\x25\xfb\x05\xa4\xe2\x1a\xc5\xfd\x74\x9c\xa0\xf3\ +\x8b\xeb\xf6\x78\x7d\xd9\x3e\xbd\x38\x6b\xdf\xfb\xe1\xa7\xed\xf2\ +\xed\xf7\xdb\x5b\x7f\xf7\xef\xb4\xbf\xfe\xbf\xfc\x77\xdb\x2f\xff\ +\xfa\xaf\xb5\xfb\x97\x7b\xed\xd3\xa7\xcf\xe2\xbf\x60\xd4\x18\x9e\ +\x4a\xe3\x7a\xb9\x24\x58\x15\xd4\x84\x5a\xdf\x6f\x3e\x48\x25\x8b\ +\x8f\xd7\x19\x17\xbd\xbc\x8d\xcb\xa6\x0b\x9a\x07\x75\x66\xd7\xa4\ +\xc8\xe1\x57\x5c\x50\x5d\x3c\x78\x55\x79\x13\xe7\xfa\x16\x3c\x0a\ +\x32\x27\xc4\xa6\xec\x6b\xb0\x62\x8d\x55\x8e\xf4\x19\x65\xda\x71\ +\xdb\x4e\x1d\xd9\x26\xf1\x6a\x43\xe8\xc1\x4d\x61\x4c\x02\x93\x92\ +\xcc\x5b\x48\x3b\x30\xd6\x01\xac\x3b\xde\x41\x99\xf3\x8b\xa8\xdc\ +\x48\xf7\x82\x21\x5f\x59\xfa\x49\xb6\xc1\x18\x33\xdb\x25\x65\x98\ +\x81\xdb\xa9\xf6\x3f\xe4\x73\x6d\x48\x39\xec\xe7\x90\xb4\x4c\x1f\ +\x8b\x96\x0a\x1b\x38\xcb\xb1\x3f\x73\x97\x9e\xfe\x9b\xb2\xaf\x35\ +\x59\x2a\x86\x57\x8f\xc7\xa7\xcb\x46\x65\x8b\xb8\xd2\x6e\xfb\x71\ +\x3d\x83\xeb\xbd\xc7\xa4\x81\x9c\x20\xad\x2c\xf6\xd9\xb5\x53\xdb\ +\x84\x73\x2e\xf2\xed\xb5\xa5\xe4\xa3\xc3\x83\x76\xf6\xe4\x49\xfb\ +\xc3\x1f\x7d\xb7\xfd\x67\xdf\xfc\xed\xf6\x7b\x7f\xfa\x87\x6d\x71\ +\xfd\x61\xfb\xe0\x6b\xcb\xf6\xce\xdb\x27\xed\x70\xc9\x95\xa9\xc2\ +\x75\xde\x22\x8b\x94\xc9\x89\x9d\xc9\xe7\xa7\xd5\xa4\xb0\x45\x5b\ +\xec\x99\x14\x78\x9c\x6d\x81\xd6\xe9\x99\x9a\x74\x1c\x0a\xd1\xf5\ +\xc5\x15\xc7\x67\x6d\xf4\x91\xc2\x66\x2b\x18\x6d\xe2\xd7\x02\xa4\ +\x63\x81\x90\x9d\x18\xb2\xbb\xec\x69\x9c\xb6\x47\x50\xc5\xdc\xa2\ +\x59\xb2\xa4\xee\x1c\xfb\xe2\xa7\x41\x3f\x5e\xde\xdb\xde\x46\xbc\ +\x8e\x63\xc3\xef\xa6\xe7\x79\xcd\xb3\xa3\xc9\x7b\x06\x26\xf6\x85\ +\xc4\xf6\x8a\x16\x05\xcf\xed\x37\xaf\xa0\xa7\x0a\xa6\x25\x02\x3b\ +\x8e\x9d\xb6\x41\xec\x77\x0e\xe3\x4f\x3e\x6d\xed\xf1\xe3\xbd\xf6\ +\xe8\xe1\x79\x7b\xed\x2d\xfe\x7a\x99\x7f\x0b\xe5\x18\xdf\x6f\xd7\ +\x7c\x4e\x73\x0e\x50\x51\xd6\x35\x65\x1a\x73\x6e\x36\x64\xa4\x2d\ +\xb6\x11\x22\x4d\xea\xb0\xcd\xac\xf9\xc9\xd2\xc9\x5a\x87\x24\x38\ +\x40\x8b\xb9\xdb\x94\x67\xbc\x8e\x09\x9d\xd4\x8d\x80\x81\x70\x29\ +\xeb\x18\x6d\x2c\x81\x3a\x1f\x8a\x26\x7f\x39\x0c\x09\x82\x8d\x4b\ +\xd1\x60\x23\x8f\x27\xcf\xd0\xb8\xdc\x81\x7b\x9b\xb3\x0f\xc2\x11\ +\x66\x2c\xd4\xd0\xf1\xd4\xdb\xd7\x16\x28\x40\xb1\x7e\x74\x74\xdd\ +\x02\x4b\x33\x67\x16\xe7\x3e\x4f\xc7\x01\x50\xad\x53\x09\xc4\xe9\ +\x75\x4d\x9f\x48\xf7\x8d\xab\xd5\x79\xfb\xc1\x77\xcf\xda\x93\x4f\ +\x2e\xda\x9b\xf7\xff\x8d\xf6\xab\xbf\xf1\x97\xdb\xaf\xff\xca\xaf\ +\xb7\xd7\x4e\x1e\xb6\xcb\x8b\x45\x5b\xaf\xae\x22\xce\x19\x22\x4b\ +\xd4\xaa\xa5\x36\x78\xe5\x35\xf7\x1b\x1d\x21\x26\xd4\x62\xa7\x08\ +\x35\x8f\x6b\x24\x72\xe8\xc1\x1d\x53\x58\x72\xbf\x52\x77\x14\xd7\ +\xb2\xc4\x23\xf7\x84\xc5\x7f\x86\x87\x7f\xd9\x2d\x57\x49\x1b\x3e\ +\x12\x06\x1d\x35\xf4\xc2\x47\x1f\xe4\xe0\x50\xc8\xbd\x5f\x66\x0a\ +\xee\x5c\xb1\x1b\x26\x2e\xea\xd7\xd3\xac\x2b\x68\x70\x30\x8d\xb6\ +\x1d\x7d\xd5\x68\xb7\x77\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\xed\ +\xe8\x15\xa6\xaf\xdc\xc9\xff\x52\x57\xe8\x79\xc9\x9e\xd7\x09\x15\ +\x09\xaa\x1b\x8f\x50\xa2\x84\x9a\x32\x4a\x97\xad\xcc\xf5\x1a\xd4\ +\x49\x2c\x6e\x7a\xb4\x60\xe0\x18\x3d\xfd\xcb\x3e\x8f\x99\x72\x6b\ +\x91\x36\x89\x8a\xb7\xcc\x00\x73\xda\xfd\x72\xce\x69\x00\xc8\x76\ +\xfb\xa2\x06\x2f\x7f\xec\xc8\x16\xf1\x35\x9b\x38\xb6\x05\x93\x0e\ +\xba\xd5\x58\xea\xa6\x88\x1b\x88\xc5\xde\x75\x3b\x79\xf0\xa8\x2d\ +\xdf\xfd\xa0\x3d\xf9\xf4\xd3\xf6\xdb\xff\xf1\x7f\xd8\xfe\xeb\xff\ +\xf3\xff\xae\x7d\xef\x9f\x7c\xb3\x7d\xf0\xd6\x41\xbb\xf7\xf0\xa0\ +\x3d\xdc\x5b\xb6\x83\xfd\xb5\x9f\x72\xe3\x69\x8d\xfd\x45\xdc\x8c\ +\xec\xf3\x73\x92\xe4\xce\x4d\xee\x9b\x08\x70\x6e\x04\xb8\xb9\x48\ +\xe3\xec\xc6\xa1\x63\x21\x07\xe7\x86\x03\x26\xa5\xdf\xcd\x29\x00\ +\x3b\x38\x18\xb3\x26\x6a\x7b\xdd\x6c\x4d\xf1\x2c\x82\xfb\xa6\xc5\ +\x38\xed\x53\xb1\x1e\xf5\x63\x33\x57\x09\x4c\x7e\xb8\xe2\x43\xdb\ +\x4a\x0f\x66\xaa\x26\x43\x6c\xf5\xd8\xcf\x2a\xe2\x75\xf7\xcc\xe6\ +\x25\x66\xf4\x2d\xea\x38\x8b\xd1\xc9\x95\x14\x20\x0e\x63\x1d\xcb\ +\xbe\x8d\xec\x9e\x31\x5d\x86\xd0\x4b\x9e\x08\xc8\xe9\xe4\xd7\xd7\ +\x15\x35\x44\x51\x80\x5b\x42\x27\xbf\x74\x86\xf9\x38\x4c\xd9\x0b\ +\x0f\xca\xa4\x08\x96\xd4\xed\x45\x32\xda\x47\x15\x8d\xc7\xa5\x63\ +\xfa\x9d\x63\xd2\xa0\xc2\x6b\xa0\x08\x0d\x7d\x2f\x7f\x6b\x6f\x6a\ +\x73\x04\xd8\x46\x2e\x1d\x97\xf8\xc7\x7f\x7f\xc8\x35\xaa\xb2\xec\ +\x25\x82\xd7\x23\x7c\x9c\x46\xaa\xeb\xe0\x0d\x60\x7d\x1b\x11\x37\ +\xb1\xc9\x09\x20\x94\x32\x75\x12\x3c\x61\x19\x30\x38\x4d\xe2\xad\ +\xc8\x21\x7f\x17\x4c\x78\x16\xb2\x25\x2a\x68\x1e\x92\x14\xdb\x90\ +\xfd\x56\x71\x93\xdb\x5c\xea\x87\x56\xd2\x86\x6a\x8a\xeb\x91\x25\ +\x1f\x1b\xd6\x93\x97\x5c\x93\x69\x55\xd8\xce\x3e\x77\x0a\x4f\x1e\ +\x3f\xf1\xa8\x82\x8d\xd6\xe9\xdd\x1b\x09\x81\x93\x57\x8c\x49\x2d\ +\xd2\x07\x85\xc0\xd2\x93\xaa\xbc\x64\x64\x32\x35\xbd\xdb\xea\xea\ +\xaa\xad\xb4\x42\xcf\xd6\xd7\xed\xc3\xab\xcb\xf6\xd1\x67\x8f\xdb\ +\xa7\xab\x45\x3b\xf9\x5b\x7f\xa5\xfd\xb5\xff\xc9\xdf\x6d\xbf\xfc\ +\x6f\xfd\xad\xf6\xf0\xd1\x6b\xed\xfa\xe9\xaa\x5d\x3e\x7b\xe6\x9f\ +\x37\xba\x5e\xc5\xff\x1e\x2d\x54\x7c\x1d\x51\x71\x36\x37\xde\x17\ +\x28\x29\x9c\x57\x53\x41\xa7\x3e\xe4\xba\xfe\x51\x6c\x4b\xbc\xfc\ +\x62\xf2\x7f\x23\x47\x5e\xab\x8c\xe9\x65\x99\x21\x21\x5f\xb7\xb8\ +\x08\x86\xdf\xc4\x27\xcc\x93\x6e\x19\x53\xf2\xdc\xf7\xf9\x7c\x13\ +\x73\x81\x36\x31\xf4\x30\x78\x19\x84\x1c\xfb\x01\x8a\x01\xb3\xbb\ +\x26\xd4\xe6\xbe\x73\x1a\x73\x6e\xd0\x73\x4c\xaf\x14\x6d\x6e\xca\ +\x17\x25\xe2\x36\xfd\x67\xbb\x61\x73\x9f\xdc\xb1\x9f\x38\x06\x8a\ +\x66\xfb\x15\x75\xd2\x43\x8a\x73\x31\xc4\x38\x1b\x27\x0c\xee\x93\ +\x3d\x6d\x3e\xc1\x37\x6c\x81\x07\x14\xfd\x9f\x98\x40\x93\xcd\x31\ +\x7a\xf1\x98\x8c\x9a\x64\xb9\xfb\x84\x3f\x34\xe2\x18\x42\x8f\x3a\ +\xb8\xa8\xb0\xec\x38\x2f\xbe\x04\x30\xfa\x11\x9b\x32\xbe\x5e\x7b\ +\x30\x6f\x07\x70\x36\x89\xce\x89\xbc\x24\xb8\x2d\xc6\x5a\x3b\x3a\ +\xa0\xaf\xb4\x6e\x4f\x4e\x9f\xb5\xdf\xf9\xe3\x3f\x6c\xff\xe5\xbf\ +\xfc\xe7\xed\x8f\x7e\xf0\xed\xf6\xc6\xc3\xd3\xf6\xb5\x37\x8f\xda\ +\x1b\xaf\xf1\xff\x6a\x5c\xf4\xf0\x8f\x04\x64\x25\x96\xc1\x74\xfa\ +\x58\x85\x41\xfe\x2c\x44\x71\xa3\x47\xca\x3e\x58\x78\x58\xea\x41\ +\x08\xf1\xee\xe4\xf3\x39\x69\x9f\x49\x33\xa9\x71\xbd\x0a\x3f\xae\ +\xfd\xe8\xc6\xd5\x2c\x2e\x4b\x95\x01\x1b\x75\xf8\xa3\x3f\x3f\xff\ +\x4d\x9c\xef\xe6\xb1\x98\x35\x11\x05\xbc\x83\x05\x4c\x2c\x6c\xe1\ +\xd0\xdd\x7e\x0a\x54\x35\x57\x1d\xac\x23\xfb\x6b\x46\xe3\x7a\x8d\ +\x54\x6d\x9d\x84\x81\x2a\xf3\x44\x55\x4f\xf1\xed\x44\x5d\x1b\xf9\ +\x62\xe3\x86\xa8\xb2\x2d\xd6\x5f\x34\x93\x4f\xb7\x95\xb0\x35\x20\ +\x01\xf6\x29\x0e\xf8\xa4\x1f\x47\x35\xe2\x04\xea\x63\xf8\x7a\xa1\ +\xcf\xbf\x6b\xf5\xb5\x56\xed\xe0\x68\x2d\xf4\xa0\xad\x57\xfa\x4c\ +\xf4\x29\xa5\x20\xd7\x6d\xd7\x2d\xe4\x1a\x92\x36\x9d\x6e\x07\x4d\ +\x47\xac\x1b\x63\x8f\x29\x7e\x9b\x5e\xed\x9d\x93\xf7\xe1\x66\xe0\ +\x16\xb2\x0b\x3b\xdd\x3c\xd8\x26\xdd\x01\x7f\x21\xbd\x40\xf5\x41\ +\x32\x8e\x76\xef\x6a\x80\x04\xb9\x74\x59\xd5\x82\x4d\xee\x3e\x13\ +\xcb\x02\x55\xe8\x32\x61\x24\xd6\x10\x11\xf1\x36\xd9\x37\x39\xfb\ +\x2a\xaf\x74\xe1\x77\x9d\xb9\x66\x04\x10\xf5\xe4\x51\xa2\xcd\x94\ +\x6b\x24\x13\x16\x9e\xee\xb7\x4d\xf0\xd3\xd3\xa7\xed\xc3\xef\x9d\ +\xb7\xf5\xe9\x49\x7b\xef\xed\x5f\x6d\x7f\xed\xaf\xfe\x66\xfb\xfa\ +\x37\xbe\xa1\x23\xe5\xb0\xad\x2e\x74\xac\x68\x25\xdc\x4f\xe3\x98\ +\x93\x7f\x64\x2c\x9e\xb2\xf3\x63\x8f\x42\x3d\x38\xfb\x55\x7d\x9e\ +\xb4\x07\xa5\x0d\xbd\xfc\xe0\x69\x1f\xfb\x48\xbc\xf8\xcf\xc8\x8a\ +\xe7\xc5\x45\xba\xe4\xe8\x7f\x8d\x9c\x1c\x93\xec\x62\x9d\x14\xe2\ +\x8e\xf7\x72\x23\x67\x71\xde\xd4\x6f\x6b\xf8\xc4\x15\x31\x65\x61\ +\xac\x13\xbc\x63\x30\x2d\xc7\x7d\x91\x32\xfb\xb5\xdb\x4d\xde\x38\ +\xc9\x47\x2a\xfb\x8e\xbe\x6a\xb4\xdb\xb3\x3b\xda\xd1\xcb\xa3\xdd\ +\x84\xda\x8e\x76\xf4\x0a\xd3\x57\xee\xe4\x7f\xe9\x2b\xb4\x2d\xe1\ +\xd0\x0d\x71\xff\xf3\xb6\x4f\xbf\xac\xc2\x2d\xaa\xe3\x3f\xc3\xd0\ +\x43\x8e\xc1\x1b\x1b\x74\xa3\x63\x50\x6f\x61\x35\x60\x0b\xcf\x98\ +\x2a\x35\xe0\xe3\x38\xeb\xc8\x31\x50\xe3\x5b\x60\xbb\x8d\x7e\x89\ +\x85\x21\x78\xe6\x1d\x63\x83\x93\x33\xf4\xc0\x46\x3f\x1b\x65\x56\ +\x5e\x4b\xa2\xb8\x9b\x0a\x3b\x98\x78\xfc\xe8\x23\x03\x20\x6a\x8d\ +\x6e\x16\x18\x3c\x61\xe2\xe9\x68\x71\xd0\xee\xbf\xfd\x4e\x6b\xf7\ +\x8e\xda\xf7\xbf\xf7\xa3\xf6\x2f\xfe\x83\xff\x47\xfb\x0f\xff\xbd\ +\xff\x53\x3b\xfc\xe8\xac\xbd\xf3\xd6\xaa\xbd\x75\x72\xd2\x4e\xda\ +\xba\x1d\xe8\x3e\xc1\xb7\x18\xba\x61\xe1\xc6\xc2\x83\x2f\x31\xea\ +\x22\x92\xec\x9b\x80\xc8\x19\x75\x24\x46\x13\x6c\x0a\xdf\x8a\x80\ +\x7c\x83\xc2\xfd\x87\x6f\xa4\xf0\x55\xa1\xed\x30\x8a\x4c\xfe\xdd\ +\xfd\xa5\xb6\x61\xde\x98\xd8\x1f\x83\x7d\xd2\xc9\xf1\x09\x5b\xa6\ +\x8d\x69\xcf\xdc\x81\x47\xfb\x78\xb9\x7d\x79\xef\x83\x9b\xeb\xbe\ +\x83\xb4\x75\x53\xf0\x9e\x14\xcf\x6d\x8f\xa8\xe2\xf0\x12\x92\x85\ +\x1f\x0b\x51\x07\x06\x32\x96\x01\x3d\xcb\xc4\x26\x48\x0b\x78\xd6\ +\x37\x23\x1a\xbe\x25\xaf\xc3\x44\x71\xa3\x4c\xeb\x03\x2c\x9c\x7a\ +\x09\xed\xba\xc8\x4d\x51\xae\x64\x2e\xb1\x9e\x08\x16\x9d\xa9\x7c\ +\xbc\x9f\x4c\xb5\x4d\xac\xf4\xa4\xa8\xd4\xee\xa8\x4c\x9e\x26\x53\ +\xec\x83\x94\x47\x83\x29\xfd\x8d\xb3\xcf\xb4\x8c\x84\xb1\x88\x77\ +\x5f\xd8\x8f\xd3\x13\x55\x54\xe7\x45\x6f\x73\x80\x81\x49\x74\x18\ +\xd2\xa4\x4c\xab\x73\x8b\x32\x46\x7e\xa4\xd8\x4a\x99\x03\xb2\x0f\ +\xba\xf8\xe8\x9e\xd0\xf3\xa9\xf2\x10\xdb\x73\xc6\x56\x2c\xfa\x71\ +\x72\xd0\x68\xef\x9d\xb1\x72\xdb\xc7\x8c\xa2\x0d\xb5\x88\x6d\xd2\ +\xb7\x5f\x26\x61\xdb\x7a\xfb\xd6\x20\x34\xd7\x47\xde\xc6\x42\xdf\ +\x5f\x33\xf8\x33\xd9\xd8\x28\xfc\x41\xfd\x38\xa1\x16\x3f\xf1\x98\ +\x75\x10\x8b\x1f\x54\xdc\x75\x99\xc5\x62\xf4\x81\xd4\x9c\xda\x67\ +\xae\x2b\xcb\x7a\xbd\xf2\xff\xe9\x9d\xea\x60\xf8\xfc\x7a\xdd\x7e\ +\x74\x71\xde\x7e\xf4\xe9\xe7\xed\xfc\xb5\xf7\xda\x7b\xff\xb3\xff\ +\x7e\xfb\xdb\xff\x8b\xbf\xdb\xde\xfb\xda\xfb\xed\xde\xf5\x7e\x7b\ +\x72\x76\x25\xdf\x95\xe3\xfc\x14\x1a\x45\x17\x85\xa5\xb6\x9b\xaf\ +\x0f\xae\x44\x15\x90\x1b\x0d\x0c\x48\x3e\x31\x18\x8d\x31\x65\x8e\ +\x51\x5e\xba\xbe\xd4\x45\x2a\xfc\x8d\xda\x37\x6c\x81\x15\xb7\x9c\ +\xd7\xa4\xc0\xe2\xfa\x8a\x5c\x25\xfc\xa8\x60\xd2\xa9\xc3\x58\xd6\ +\x63\xdc\xd7\xb8\x4d\xbf\xe0\x21\xa3\x86\x7d\xd3\x56\xd7\x6b\xbd\ +\xfb\xba\x5a\x49\x9c\x4d\x2d\x49\x4b\x0b\xb1\xf0\xf6\x82\xd5\xb9\ +\xfc\xe3\x3c\xa1\x56\x94\x39\xef\xa2\x2f\x30\xbf\x32\x54\x9b\xf3\ +\xc7\xd9\x1e\x63\x4c\xdf\x1d\x29\xc4\x8e\x0b\xb9\x93\x30\xfb\x6e\ +\xe0\xf8\x9a\x84\x8f\x26\xa7\x98\x30\xce\x92\x90\x2d\x61\x1c\x38\ +\x92\x96\xf4\x7f\x4c\x25\xc3\x89\xd3\xf5\x64\xc4\x52\x46\x8d\xff\ +\x93\xcd\xeb\x8d\x71\x8e\x50\x5d\x63\xb8\x00\x70\x3d\x49\xcc\x79\ +\x06\x39\xf4\xa9\x0e\x5e\x10\x7c\x4f\xd7\xaf\xac\x51\xa9\xa7\xdc\ +\x12\x02\x53\x7d\x91\x3e\x73\x62\x4b\xc9\x9b\xa9\xb6\x09\xb0\xc5\ +\xf4\x91\xcc\x93\xfc\x07\xea\x30\xed\xeb\xfa\xf3\xdd\x4f\x3e\x6a\ +\xbf\xf5\xfb\xff\xaa\xfd\xb3\x6f\xfd\x7e\x3b\x7d\xfc\xc7\xed\xed\ +\x37\xaf\xdb\x07\xef\x1e\xb7\xfb\xf7\xf6\xdb\x9a\xa7\xe0\xf8\x5d\ +\x35\x9f\x93\xd1\x37\xdb\xf3\x97\x43\x58\xbb\x48\x1c\xb5\x64\x5d\ +\x50\x34\xc3\xe7\x1b\x68\x3f\x27\x07\xcf\xb8\x76\x05\x99\xbb\xad\ +\x19\x68\x92\x9d\xfa\x04\xdb\x44\xf5\x78\x0a\xa3\xf7\x86\xc8\xff\ +\x61\x2d\xb8\x9e\x48\x35\x90\x4b\xb6\x66\x68\x41\xb4\xd4\xd7\x1d\ +\xf2\xbb\xc9\x92\xc6\xaa\x3a\x15\x48\xf4\xdc\x61\xab\xfb\x4b\x20\ +\x37\x27\xc4\x59\x1d\xe3\xae\x9b\x1b\xa4\x94\x3e\xae\xe4\x56\x1a\ +\x33\x87\xcc\xb2\xb4\x09\xad\x94\x63\xe2\xb4\x16\x24\xce\x93\x81\ +\xd1\x4f\x9a\x3c\x8a\x38\x16\x02\x0b\xfb\xcc\x38\x52\x9a\x4d\xe5\ +\x23\x2c\xf7\x4e\x98\xf9\xd9\x64\x5f\xaf\xbd\xc7\x13\x67\x32\x84\ +\xcf\x93\xeb\xb6\x58\xae\xf5\xd1\xbe\xd7\xd6\xab\x38\x26\xc3\x41\ +\x35\x57\xbe\x2d\x54\x79\xa0\x6a\x42\xe8\xb7\x83\xc2\x37\xbd\x86\ +\x03\x65\x1e\x57\x14\xda\x2c\x66\x33\x27\x2a\x3b\x74\xfb\x41\x27\ +\x92\x2d\x43\x83\xc9\xcf\x42\x82\x1b\x54\xeb\xe9\xb4\x70\x2d\xcc\ +\x01\x45\xb7\xa2\xc6\x6a\xd3\xe8\xa6\x8c\x8e\x95\xb3\xb8\x5f\xda\ +\xea\xd2\xbd\xcf\x65\xe0\x32\xe0\x73\xde\x58\xfa\x99\x07\xe6\xfe\ +\x2d\x62\xb8\x9b\xe2\x9a\x65\x49\x6f\xed\x2f\x58\xe2\xec\x71\xfc\ +\x8d\xc4\x2e\x0f\xb2\x60\x43\x52\xe8\xee\x77\x58\x8b\x63\xc5\xd7\ +\x5c\x35\x8a\x9f\x02\x5d\xdd\x9c\xb7\x4f\x3e\xfe\xb4\x7d\xfe\xfd\ +\x65\x5b\x2e\xbf\xd6\x7e\xe3\x37\x7e\xad\xfd\xa5\xbf\xf0\x6f\xb6\ +\xd7\x1e\xbe\xa6\xc3\x69\xd9\xae\x2e\xd7\x5a\x97\x5c\x27\x25\x21\ +\x47\xbf\x3e\xf6\xe3\x2c\xee\x0b\xad\xdb\xc9\x5e\x38\x20\x26\xe7\ +\x18\x2c\x2c\xf9\x28\x13\x83\xec\x77\xc9\x89\x1b\xa4\xbd\x91\x23\ +\xd6\x67\xb4\x67\xee\xb2\x95\x9f\xf1\xa8\xdf\x4f\xae\xd9\x5e\x31\ +\xe9\x0f\x67\x19\x8e\xb7\x6d\xc6\x43\xb6\x4e\xc1\xc6\xb6\xae\xbe\ +\x9d\x29\xb8\xf3\x70\x21\xdd\xa0\xda\x47\xbd\x0f\xd5\x69\xae\x05\ +\x55\xce\x1d\x7d\x95\x68\xb7\x57\x77\xb4\xa3\x97\x47\xbb\x09\xb5\ +\x1d\xed\xe8\x15\xa6\xaf\xdc\xc9\xff\x53\x59\xa1\xcd\xa4\x9b\xdd\ +\x90\x0d\xbb\xd4\xba\xf5\xf0\xdd\x48\xe9\x96\xd3\x52\x72\xf2\xb9\ +\x8c\x3d\x06\x5d\x26\x1b\x77\x29\x61\xb3\xec\xbb\x1d\x15\x32\x27\ +\xde\x63\xa4\x70\xf3\xe4\xc1\x19\x15\x4f\x7e\x25\x6e\x5d\x92\x75\ +\xe4\x8c\x89\xc1\xe8\xd0\x2b\x17\xdf\x00\x44\xf1\xa0\x74\xc6\x86\ +\x8f\x78\x62\xb8\x3a\xc0\x26\x34\x6c\x81\xb1\x95\x88\xa5\x3f\x1f\ +\x9d\xf6\xf8\x6f\x04\x06\x90\x8f\xee\x3f\x6c\xf7\xdf\xff\xc0\xbf\ +\x73\xff\x87\xff\xe8\x9f\xb6\x7f\xfa\x7f\xfb\xdf\xb7\xdf\xfe\xbf\ +\xff\xc3\xf6\xf6\xe2\xa6\x7d\xed\xbd\x87\xed\x9e\xf0\x13\xc5\x2d\ +\xfc\xed\xe6\xbc\x71\x61\x72\x8d\x17\x83\x2e\xaa\x26\x70\x10\x01\ +\xdc\x48\x48\x36\x99\x71\xe3\x12\xed\xb2\x9a\xb6\xf2\x81\xd3\xc2\ +\xbc\xa7\xd1\x22\x7c\x23\x0f\x5c\x56\x6c\xd4\x25\x20\x38\xa2\x16\ +\x8e\x49\x3f\x16\x2a\x0a\xb3\x58\xff\x63\x14\x4f\xad\xc9\x35\x0d\ +\x1e\x04\x57\x99\xc5\x25\x75\x69\x82\xdc\x94\xa2\xda\xac\xb1\x0f\ +\x02\x2b\x42\x75\xd3\x49\x9f\xb6\x0d\x97\xa1\xae\x0d\x07\x62\xf4\ +\xba\xe5\x5f\x84\x61\x68\xd3\xa4\x0c\x09\x92\x2c\x69\xe1\x6d\x3a\ +\x06\x8a\x21\x15\x82\x15\x9a\xea\xac\x63\x48\x54\x87\x9e\x01\x2d\ +\xe2\x1d\x72\xa7\x29\x6f\x10\xb6\xa9\xc6\x88\x1d\xcc\x49\xb6\xe5\ +\x76\x60\x97\x8c\x19\x8b\xb0\x7a\xff\xb0\xaf\x53\x67\x19\xb1\x56\ +\x6c\x27\xd8\xc7\x7e\x26\x99\xce\x9d\x69\x5d\x68\x11\xb2\x63\x13\ +\x75\xf5\x16\xbb\xd0\xd9\x20\xdc\x49\x78\xb8\xfa\x31\x47\xbc\x03\ +\x07\xfe\x09\x68\x4a\xa7\x75\xdd\x9a\xc7\x35\x58\xca\x5a\x6f\x93\ +\x02\xed\x51\xe7\x51\x91\x57\x7a\xa0\x4a\x50\x70\xf7\x8d\xb8\xbe\ +\x05\x73\x7b\x72\x9d\xa9\xeb\x98\xaf\x39\xe0\x5c\x5f\x86\x6d\xce\ +\xff\xd4\xf9\x1a\x05\xc6\x31\xe4\xc9\x33\x09\xe6\xf8\x92\x2f\x8a\ +\xbc\x42\xf6\xb1\x86\xcc\x3a\x93\x87\x26\x05\xa7\xd8\x09\x9e\xed\ +\x64\x35\xbc\x6a\xd4\x23\x85\x27\xd2\xd6\x57\xab\x76\x25\xf9\x74\ +\xbd\x6e\x4f\x2f\x2e\xda\x1f\x7c\xf4\xb4\x7d\xbe\x58\xb4\x0f\xfe\ +\xce\x6f\xb6\x5f\xfb\x77\xfe\xed\xf6\xfe\xdf\xf8\x6b\xed\xd1\xd1\ +\x83\xb6\xba\xbc\x6e\x57\x17\x97\x6a\xcb\xda\x79\x96\xd4\x99\x39\ +\xb9\xa2\xd5\xe4\x12\x95\xc1\xfa\xf9\x6c\xdc\x17\x1b\x5f\x3f\x2c\ +\xcb\xc7\xd7\x92\xbc\xae\x38\x8e\x6b\x4e\xc6\x96\xaf\x73\xca\xc7\ +\x2f\x7c\x6d\x4f\x5f\x70\xcb\x51\x7a\xdd\xc3\xb7\xad\xc3\x16\xbe\ +\xe1\x13\xed\x28\xbb\xf5\xcc\xc3\xab\xfb\x96\xdd\xa9\x2a\x36\xed\ +\x83\x3e\xc9\x6c\xe6\x49\x0f\xac\xce\x67\xe9\x10\xcc\x1b\x84\xb7\ +\xf7\x9a\xf6\x11\x4a\x4e\xa8\xc5\x0e\x7b\x41\xca\x9c\x9b\x74\x07\ +\xfc\xca\x52\x6d\xd2\x1f\x67\xbb\x8c\x31\x7d\x97\xdc\x95\x28\x71\ +\xf6\xf9\xb8\xff\xec\x56\xbe\xc2\x07\x13\x14\xe7\xec\x5c\x8e\x23\ +\x02\x00\x29\xe4\x38\x26\xa4\xcd\x78\x5c\x08\x90\xdd\xcf\x91\x5e\ +\x78\x4c\x92\x73\x51\xc8\xfe\x50\xd7\xc5\xe5\x31\xf9\x02\x81\x49\ +\xe7\x5a\x50\xb9\x8d\x61\x47\x27\xb7\xa5\xf0\x75\xa9\x5c\x83\xee\ +\xf6\x64\x3e\x15\xec\xf4\xb9\xea\xa9\x2c\x7c\xd3\x41\x0b\x6d\x13\ +\xce\x29\xae\x71\x6c\x1e\x15\x6f\x3a\xfb\xec\x79\xb2\xef\x40\xe7\ +\x2f\xff\x5b\xbb\xbe\xbc\x6a\xff\xea\xfb\xdf\x6d\xff\xf4\xbf\xf9\ +\xed\xf6\xad\xef\x7d\xb3\x1d\x1d\x3e\x6e\xdf\x78\xf7\x61\x7b\xfd\ +\xe1\xa2\xed\x1d\xc4\x7f\xab\x11\x05\xe7\xe9\x7f\xe7\x73\x55\x08\ +\xb1\x2c\x28\xb2\x73\x3d\x11\xcf\xeb\x16\x14\xee\x8a\x4f\x19\x8b\ +\x63\xca\x61\x20\xda\x89\x07\x9e\xf6\x57\xdf\xca\xd7\x30\x50\xda\ +\xa2\x04\xa8\x14\x9a\xe3\x2f\xb4\xd0\xd7\x63\x3b\x10\xe7\xca\x62\ +\x6b\x11\x15\xad\x8f\xf6\xc7\xc4\x90\x55\x13\xd7\x12\xa8\x7c\x8a\ +\x4a\xc3\x3a\xb7\xbc\x7c\xda\xac\x2b\x5a\x14\xd4\x9f\xb8\x1b\x1b\ +\x32\x3a\xbc\x10\x6d\x06\x54\xa2\x4c\x2b\xd5\xdc\x6e\x5a\x14\xc0\ +\xd6\xcf\x8d\x65\x7b\x36\x24\x96\x45\x75\xd4\x25\x12\xca\x6d\xb2\ +\x79\x30\x6e\xdd\xf1\xc5\xc8\xc9\x4e\x1d\x6b\xd2\xbe\x93\x18\xc7\ +\x7e\x42\x45\xd6\xef\xaa\x38\xa8\xaa\x9f\xaa\x1d\xfd\x91\xbb\xe1\ +\x8b\x52\x25\xc9\xc9\x0d\x0a\x71\x46\x55\x19\x65\xdb\x7a\x42\xc4\ +\xce\x28\x92\x04\xaa\x25\x82\xa1\xcd\xe4\x5f\x40\x1c\xe3\xde\x40\ +\xb5\x9f\xd8\x96\x53\x5d\x95\x36\xb2\x86\x47\x1d\x62\xbe\xa6\x24\ +\xca\x82\x38\xa0\xda\xc3\x81\xc7\xf6\x27\xc6\xdf\x91\x54\x7d\x71\ +\x5d\xeb\x57\xa7\x74\xb4\x6b\x89\x12\x54\x33\xb1\x88\x06\xc3\x88\ +\xe8\x36\x1a\x13\x81\xe5\xea\xbb\x6d\x40\x5a\xec\xfb\x4a\x80\x12\ +\x39\x16\x7a\xdd\xec\x5d\xb5\xd3\xd3\xb3\xf6\xc9\x87\x67\xed\xe2\ +\xf3\xc3\xf6\xd6\x6b\xbf\xda\x7e\xe3\xdf\xfc\xd5\xf6\xc1\xd7\x7f\ +\xbe\x1d\x2f\x8f\xd4\xdf\xe2\x09\x46\xfe\x67\x9a\x73\x9f\x1c\xaa\ +\x89\xed\xa3\x78\x2f\x69\x7b\xe2\xde\x6e\xf5\x52\xdf\x03\x3f\x77\ +\x4f\xb0\x19\x2b\x8e\x77\xe8\xbc\x78\xf7\x58\xf7\x59\x22\x24\x74\ +\x84\xc1\x3f\x4b\xf5\x6d\x02\x9f\xec\x5a\x48\xe2\xb8\xa7\xee\xf4\ +\x49\xee\x8c\xd6\xb3\xd0\xea\x01\x0f\x2e\x36\xd3\x93\xeb\xd5\xb9\ +\xb0\xd2\xc3\x07\x28\xb7\xad\x31\x74\xf1\xd8\x99\x33\x62\x9b\xb0\ +\x83\x22\x2f\x54\x3b\x6d\x93\xca\xbe\xa3\xaf\x1a\xed\xf6\xec\x8e\ +\x76\xf4\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\xf4\xa5\x39\xf9\xab\ +\xa1\x63\x0f\x00\x6c\x53\xff\xa9\xd0\xb6\xca\x93\x80\xc6\x4b\xa8\ +\xc5\xe1\x86\x02\x20\x6f\x1a\x0c\x22\xa7\x8f\x65\x06\x48\x4a\xce\ +\x62\x07\x70\x0f\xc2\xa0\xc2\xd3\x27\x7d\xb1\x77\x5f\xa7\x43\x66\ +\xd0\x27\x63\x62\x11\x58\xfa\xfa\x46\xc7\x77\x4d\x41\x51\x9f\x74\ +\xdb\xa3\x8e\xa9\x0d\x31\x80\xd4\x7d\xc0\x88\xc9\x6f\x57\xa3\x9b\ +\x83\x59\xb7\x60\x99\x7a\xe4\x65\xcc\x7a\xfa\xb9\xeb\xef\xbb\x9a\ +\x45\x3b\x10\x63\xb2\xe9\xad\xb7\xde\x69\xed\xed\xb7\xdb\xe3\x4f\ +\x3f\x69\x7f\xf8\x8f\xfe\x61\xfb\xfb\xff\x9b\x7f\xaf\x9d\x7d\xf3\ +\x8f\xdb\x7b\x6f\x2d\xda\x9b\x8f\x0e\xda\xf1\x7a\xaf\x1d\x71\x4f\ +\xb2\x20\x17\x37\x26\xf1\xec\x1b\x69\xb8\x11\xa8\x9c\x71\x23\x13\ +\x18\xb5\x81\xe7\xdb\x9a\xef\xdf\xae\xf1\x13\xb7\x03\x71\xc9\xc5\ +\x7c\x47\x99\x46\xe7\x90\x8e\x66\x1f\x7e\x02\x50\x75\x78\xbc\x39\ +\x73\xd1\x76\xdf\xbc\x11\xc3\x9b\x3c\x0e\x80\x87\xdc\x6f\xe2\x88\ +\x05\x48\x9b\xe3\x07\x1d\x97\x61\x31\x11\xaa\xdb\xaa\x05\x95\xa1\ +\xa2\xb3\x9d\xad\xa8\x08\xee\x2e\x60\xc8\xc9\x4b\x88\x35\x49\xca\ +\x7d\xd1\x8d\x83\xa9\x53\xb9\x40\xdb\xec\x33\x30\x9c\xa9\xc3\xa8\ +\x16\x61\x2d\x9f\xb0\x70\xd4\x81\xb0\xda\x16\x72\x7d\xbc\x2e\xd6\ +\x2d\x86\x6e\x43\xea\x33\x41\x8e\x3d\x5e\x18\xc9\xd2\x64\x51\xf2\ +\xe0\x39\x27\x01\xd9\xc2\x4e\x3d\x3c\x61\x18\x3e\x75\x3f\x3a\x7a\ +\x8f\xeb\x47\x10\xad\x74\xb3\xb4\xf0\x13\x50\x01\x67\x50\x6c\xf1\ +\x40\xa1\x92\x84\xe6\xba\xf4\x5c\xd8\xe2\x1d\xaa\xa8\xbc\x21\x6f\ +\xaf\x24\xe3\xf8\x5a\xc0\x90\x9e\x83\x8f\x69\x4c\x00\xa5\x1d\x78\ +\x9b\xab\x33\xcd\x0c\x52\x7a\x0e\x09\x6a\x84\xcd\x86\xcb\x30\x06\ +\x84\x5c\x13\xd8\xa1\xa8\x90\x74\x74\xbb\x45\x93\xff\xfc\x5a\xa2\ +\x5a\x7c\xfd\x63\x1b\x47\xe1\x1a\x15\xff\xfd\x88\x6c\xc7\xe9\x1a\ +\xe8\x89\x33\xc9\xec\x07\xae\x4f\xd2\xf7\x74\xdd\xf0\x75\xa7\x2e\ +\x5d\x6a\x8b\x3c\x42\x49\x66\xc1\x2b\x65\x25\xb9\x1b\x3e\x53\x41\ +\xa8\x92\x9f\xa1\xe5\x39\x93\xd5\xc5\x55\xbb\x54\x3d\xcf\x54\xdf\ +\xe9\xd5\x45\xfb\xc1\xd3\xa7\xed\x5b\x4f\xce\xdb\xf2\x2f\xfe\x4a\ +\xfb\xb5\x7f\xf7\x6f\xb7\xdf\xf8\x1f\xfd\x5b\xba\xa4\xbd\xd5\x16\ +\xe7\x07\xed\xd9\x39\xdf\xc0\x8f\xb2\xbf\x5e\xb7\xa5\x0e\x2e\xae\ +\x60\x5c\x1b\xf8\xa9\x47\x5e\xde\x4c\xc8\x2a\x54\xc9\x95\x6c\x1a\ +\x00\xf2\xc5\xc2\xd7\x0b\x5f\xe3\x0c\xa6\x2c\x4c\x8b\x19\xaf\x82\ +\x1e\xae\x8a\xdf\xc0\x43\x8f\xbc\xc6\xf5\x0a\x3c\x72\x4e\x7e\x55\ +\x07\x39\x60\x19\x07\x46\x2b\x07\xdf\x90\x87\xba\x24\x22\x57\x99\ +\xd9\xb3\x3e\xc7\xe2\x07\x82\x9c\x05\x39\x36\xbd\xf4\x30\x6b\x67\ +\x84\x8c\x85\xb3\xcb\x7b\x48\xc7\x1b\xdb\xa5\x8e\x9d\xbb\xc9\x09\ +\x42\xac\x9c\x9b\x74\x07\xbc\xa3\x1f\x83\x62\xa7\x05\xf5\x5d\x92\ +\x02\xfb\x76\x66\x1f\xf1\x92\xfb\x22\x68\xcb\x7e\x0d\x44\x4b\xbf\ +\x83\xa7\x24\x06\x07\x4b\x1d\x8d\x1c\xd6\xe9\x91\x20\xfb\xe2\x11\ +\x38\x18\x36\xf7\x75\x4a\x0e\x1f\x7c\xad\x67\x0c\xf1\x16\xbd\x60\ +\xe2\x2b\xec\xc8\xe6\xb6\xc0\xc9\x93\x5a\xe5\xe4\xba\x95\xf5\x87\ +\x6b\xe4\x43\x07\x08\x9c\x92\xfe\xe0\x90\x31\x0b\x85\x88\x52\x62\ +\xbb\x65\x1f\x85\x85\xf3\x61\x92\x7c\x7c\x74\xd8\xf6\x6f\xae\xda\ +\x0f\x3f\xf9\xbc\xfd\xce\xb7\xff\xb0\xfd\x8b\x3f\xfa\x57\xed\xb3\ +\xa7\x7f\xd2\x4e\x0e\x2f\xdb\xd7\xde\x39\x68\xaf\x3d\x5a\xea\xbc\ +\x89\x9c\xfc\x4f\x51\xef\xc3\xe8\x45\xfd\x75\xde\x4d\x75\xa6\xcd\ +\x3c\xb4\x58\x06\x87\x4a\xe2\xba\xd5\x51\x09\x53\x0c\x34\x65\xae\ +\xc9\x32\x5f\x27\x90\xf0\x15\x14\x6d\xc1\xae\xeb\xad\xfa\x5d\x9e\ +\xf0\x83\x7a\x63\xb0\x97\xc4\xcf\xc3\xc9\xc7\x17\xba\xc1\x45\x04\ +\x32\xea\x3f\x6d\xaa\xba\xb2\x69\x2f\x50\xf7\x86\x47\x05\xfe\x58\ +\x74\x47\x6d\xdb\x2a\xf7\x06\x49\x7f\xd9\xfd\x99\x53\x4a\x97\xe2\ +\x78\xf2\x72\x5b\x8e\x4e\x69\x0c\xe7\x20\xef\x4f\xed\xab\xd4\xeb\ +\x58\x34\xd9\x86\xda\x81\xc9\x26\x53\x86\x04\x59\x99\x21\xdb\x49\ +\x2e\xfe\x2c\xa8\x3c\x9d\x04\x50\x39\x07\x50\xe5\xb9\x95\x0e\x60\ +\x68\x00\xe4\x03\xb0\xd4\x5b\x01\xe9\x9e\xb8\x2a\x45\xaa\x0c\x51\ +\x57\x11\xd7\x17\x68\xc2\x4a\xda\x92\xb5\xd3\x98\x01\x9a\xe5\x2f\ +\x12\x48\x55\x55\x03\x54\x67\x6b\x5c\x83\x10\xa2\x6d\x5d\x2f\x92\ +\x0a\xe2\x4b\x11\x24\xbb\xc5\xb8\xac\xc5\xfe\x32\x8f\x3e\x4e\x27\ +\xe1\x75\x3c\x84\x4f\xc6\xb1\xb0\x2d\x94\xb2\x99\x12\x77\xfb\x69\ +\x8f\x04\xcb\xb4\xd5\xc2\x74\x1d\xb8\xd1\x3d\x19\x7f\x9d\x77\x79\ +\x7e\xd9\x3e\xfe\xe8\xb2\x3d\xfb\xfc\xb4\x1d\x2d\xde\x69\xbf\xf0\ +\x8d\x5f\x6b\xbf\xf2\xcb\xbf\xda\xde\x78\xf8\x46\xbb\x5e\xef\xb7\ +\xd5\x8a\xa7\xd2\x88\x27\x56\xd9\x75\xe1\xa0\xff\x54\xeb\x6f\x72\ +\xf2\xe9\x5e\xcb\xdc\x48\xfc\xed\x40\xc0\x61\xb3\xc5\x9c\xeb\x4b\ +\xe4\x95\x87\xda\x0a\x16\xba\xed\xb0\xd4\xa7\xd8\x51\x9e\xfa\x41\ +\xd5\x27\xe3\x15\xf5\x6d\xc8\xe5\x33\x8b\x89\xc2\xb9\x63\xd9\xed\ +\xc2\x07\xdc\x4a\xda\x8d\x88\x6d\x70\x2f\x47\x3b\xa6\xbc\x66\x1a\ +\x47\x17\x67\x97\x86\x3a\xed\x26\xe7\xd5\x16\x34\x2f\x4a\xe3\x2d\ +\x1a\x7d\x76\xf4\x55\xa1\xdd\x5e\xdd\xd1\x8e\x5e\x1e\xed\x26\xd4\ +\x76\xb4\xa3\x57\x98\xbe\x34\x27\x7f\x35\x74\x5b\x0f\xe0\xa5\xad\ +\x04\x89\x7e\x92\x2e\xc6\xd0\x00\x5f\x4e\xd5\x31\xef\x97\x55\x71\ +\xc9\xfd\x86\xc3\x32\x0a\x37\x13\xb0\xc0\xac\x97\xcd\x03\xc7\x31\ +\xb8\xd2\xed\x65\x1b\x73\xd4\x00\xb3\xf1\x1c\x50\xb1\x1e\x32\x3e\ +\x0c\x2a\xc3\x23\x17\x77\x4f\x92\xe5\x66\x6e\x0c\x2e\xbc\x06\xa7\ +\x7b\x3b\xd6\x1d\xeb\x7e\xae\x5b\x30\x93\x72\x89\x85\xff\x54\xb7\ +\xfb\xed\xe9\x3b\x0e\x8a\xc3\xe9\xb7\xfb\x56\x61\x9f\x5b\x0a\xff\ +\x65\x7d\x5b\x28\x76\x79\x7c\xaf\xbd\xf5\xc1\xfb\xad\xdd\x7b\xab\ +\x7d\xe7\xf7\xff\x79\xfb\x67\x7f\xef\xdf\x6f\xbf\xf7\xff\xfa\x8f\ +\xda\xfe\x77\x7e\xd4\xde\x7e\x77\xbf\x1d\x1f\x1d\xb4\xc3\xeb\xfd\ +\x76\xa0\x08\xfe\x8f\x63\xd1\x18\x10\x52\x3d\xe4\xf1\xcd\x8a\x12\ +\x41\xbe\x11\xb1\x90\x18\xdc\xb7\x19\x12\x59\xd2\x96\x49\x8f\xfb\ +\x0e\x69\xb4\x4f\xb2\x2d\x36\x8a\x8d\xf7\x24\xc0\xe5\xaf\xfa\xa9\ +\x1c\xd9\x58\xd9\xe0\x6e\x54\xe8\x26\xe3\xac\xb7\x93\xf7\x18\x9e\ +\xca\xeb\x37\x7d\xe4\xb2\x5f\xe8\x0e\xeb\x0b\xa8\x04\xb6\x68\x12\ +\xed\x35\xe7\xdd\x1d\xad\x9b\x06\x68\x24\x3f\xd5\x31\x65\xe9\xf5\ +\xdd\xa2\xc1\xc5\xb9\xd0\xbb\x2b\x37\xb1\x43\xad\xb6\xcd\x9d\xba\ +\x6a\x96\xd8\xb0\x88\x6a\xcb\x9f\x7d\x12\xaa\x0f\x13\x0b\xd8\x8b\ +\xa5\x02\x4d\x77\xe6\x62\x43\x2b\x18\xb0\xf1\xba\xdd\x4d\x7d\x9f\ +\x0c\x54\x83\x7a\xae\xc1\xa9\xb5\x90\x92\x0f\xea\x4c\x34\x34\x01\ +\x0a\x35\xdb\x9d\xe7\x08\xee\x75\x83\x3a\xa7\xd4\x37\x61\x48\x18\ +\xdf\xb0\x2f\x79\x60\x1b\x34\xe4\x15\x0b\x89\xa5\xf0\x6d\x55\x1a\ +\x4b\x50\x72\x48\x80\xcf\x27\x9a\x5f\x61\x26\x87\x78\xab\x88\x79\ +\xcf\x58\x7f\x1e\x8d\xd6\xd8\x1e\x13\x59\xa3\x02\x09\x5c\x72\x62\ +\xbf\x05\xd6\xaf\x31\x70\x6d\x53\x06\xac\x31\xd7\x24\x5a\x3c\x65\ +\x2b\x5f\xb6\x37\xb1\x60\x9e\x48\x93\x82\xce\x64\x9a\x74\x6c\x7b\ +\x8e\xc1\x47\x05\x42\xb5\x1c\x38\x72\x5c\xa3\xaa\x4d\x2c\x60\x61\ +\x2f\xa2\x2d\xfc\x34\x92\x0f\x13\xd1\x7a\xbd\x6e\x2b\xd5\x73\xb1\ +\x5a\xb5\xcf\x54\xef\x27\x17\xe7\xed\x5b\x9f\x3e\x6d\xab\x07\x8f\ +\xda\xbb\xff\x83\xff\x76\xfb\x9b\xff\xf6\x7f\xb7\xbd\xf5\x2b\x3f\ +\xd7\x4e\x0e\x4e\xda\xe5\xb9\x1a\x73\xc1\x20\x90\xf2\xa8\xed\x1c\ +\x65\x0b\xc9\x5c\xa1\xf8\xb5\x24\x26\xd5\xb8\x2e\xf4\x01\x68\x71\ +\xae\x09\xe8\x75\x6d\x00\x8f\xeb\x42\xfc\xcc\x63\xfd\xfc\xad\x00\ +\x63\x75\xdd\x88\xeb\x0e\x72\xda\x0b\xdf\x22\xcf\x75\x5f\x90\x7a\ +\x7d\xa5\xf7\x38\xf2\xd2\xd8\xe1\x7a\xd5\xeb\xc5\xe6\x8b\xe6\xe4\ +\x3f\xf9\x84\x9d\x17\x27\x13\x50\x2c\x24\x83\x97\x8f\xb9\x60\x3c\ +\x67\x18\xa0\x0d\xc1\x11\x73\x1f\xf8\xbc\x97\xdd\xe7\x9c\x5d\x43\ +\xbe\x4d\x15\x0f\x61\x1f\xf5\x3b\xe8\x05\x5c\x5e\x59\x7a\x91\x4d\ +\x58\xbb\x01\x3f\xcb\xe3\x7e\x11\xb8\x19\xef\x13\x51\xe0\xb8\xff\ +\xec\x93\x09\xc6\xf0\xa4\x80\xc2\x56\xe7\x6b\x9c\xc9\xc0\x92\x32\ +\x57\x60\xe8\xd9\x8f\x4a\x19\x3e\xc7\xe1\x21\xcf\x7d\xb3\x70\x71\ +\x31\x6e\x54\x0b\x96\x69\x33\x98\xb1\x8a\xf2\x85\x28\xfd\xfc\x02\ +\x67\x82\xdf\xf6\xa8\xbb\xe2\x28\xae\xbb\x30\x64\xae\x5b\xf0\xcc\ +\x11\xfe\x30\x7b\x85\x9c\xdb\x30\xb6\x10\x40\x6c\x42\x6b\x03\x5f\ +\x2e\x62\xc0\x79\x7d\x79\xd9\xbe\xf3\xe9\x8f\xda\x7f\xfd\xad\xdf\ +\x6b\x7f\xf8\x9d\x3f\x6c\xa7\x17\xea\x53\x3d\x5a\xb4\x77\xde\x3c\ +\x6e\xf7\x8f\xe5\x7e\x40\x2e\x06\x9c\x7d\x9a\x2b\x9a\x85\x1b\x30\ +\x5d\x9b\x44\x96\x02\xf6\x39\x37\x51\xc8\x23\x62\x6d\x0e\x04\x19\ +\xc6\x40\x2d\xd1\xf6\x6c\x7c\xb1\x88\x73\x25\x9c\xdf\xba\xa6\x70\ +\xed\x51\xf3\xf8\xab\xb7\x38\xd7\x69\x57\xb8\x55\x0a\x04\x5d\x89\ +\xda\xde\x72\x6a\xef\x2d\x2a\xdf\xc1\xc1\xd5\x84\xf8\x52\xa8\xf2\ +\x8d\x55\xf5\x26\x6e\xa5\x0d\xeb\x4f\xd2\x98\x71\x25\x9e\x57\x19\ +\x1b\xb8\xec\x43\x4c\x1d\x43\x13\x0d\x7e\x33\x7a\x5e\xf2\xa2\xf2\ +\x61\xef\x52\x81\x74\x7f\x00\x4a\x76\x7d\x59\xa9\x29\xe4\xf4\xd2\ +\x62\xcc\x5f\x68\xb7\xce\x29\x7d\xcb\xa3\xd6\xad\xaf\x8b\x58\x3f\ +\x9e\x8a\xba\x33\x94\x7e\x45\x15\x6f\xb8\xb7\xbc\x53\xcf\x55\x6d\ +\xb4\xce\x62\xf4\x2c\x5e\xce\x73\x1a\x3d\xb7\xd1\x68\xaf\x0c\xd6\ +\x37\x82\x46\x9f\xb1\xa5\x7d\xf3\xe9\x32\xc3\x95\x26\xf0\xc8\x84\ +\x64\xb3\x16\xb5\x8e\x71\xad\x91\xa4\x0e\x0e\x92\x7f\xce\x36\xa0\ +\x20\xed\xb3\x74\xc5\x3b\x79\x12\x49\x52\x77\x1b\x9c\x74\xc2\x82\ +\xa6\x73\x11\x1f\x77\x17\xc4\x71\x8d\x2f\x5e\xf1\x65\x98\xa5\x2e\ +\x3a\x17\xed\xd9\xe7\xab\xf6\xc9\x87\xe7\xed\xfa\xfc\xa8\x3d\x78\ +\xf0\xf5\xf6\xeb\x7f\xe9\xd7\xdb\x7b\xef\x7d\xbd\x9d\x1c\x9d\xb4\ +\xf5\x4a\x6d\xe3\xcb\x48\x5c\xa3\x7a\x1e\xc4\xec\x57\x80\x55\x4d\ +\x62\xd4\xea\xfb\x2d\x39\x2e\x64\xa1\x6e\xae\x1b\xf8\x9a\x73\xa5\ +\xb0\x4e\x4c\x14\x5e\x85\x85\x4f\xe9\x58\xb3\xbf\x93\xc5\xfe\x36\ +\xe0\x55\xf8\xe4\x43\xbb\xdc\x9e\xc4\xcb\x7f\xf2\xc1\x3a\xe9\x5a\ +\xa4\x3e\xf1\x11\xab\x78\x73\xbd\xca\xd6\x7d\x52\x66\x7f\x85\x1f\ +\x2a\xbc\x4a\xea\x1c\x14\xa1\xf6\x9d\x14\xfd\xf3\xfc\x52\x52\x40\ +\x03\x6d\x22\x15\xbc\xa3\xaf\x12\xed\xf6\xea\x8e\x76\xf4\xf2\x68\ +\x37\xa1\xb6\xa3\x1d\xbd\xc2\xf4\xa5\x39\xf9\xab\xa1\xdb\x7a\x00\ +\x3f\xf3\x95\x18\x1a\xe0\xcb\x29\x37\x0e\x89\x99\xeb\x96\xc4\x2a\ +\x5c\x42\xda\x36\x27\x9c\x6c\x9f\x61\x0c\xd0\x14\x47\x0c\x1b\x4a\ +\xf9\x95\xdd\x70\xe6\x67\xb0\x38\x7e\x26\x2d\xe2\xca\x0f\x5b\xcf\ +\x2b\x43\x8c\xdf\xc4\xa0\x8e\x15\xe7\x99\x7c\xa8\xc3\xaf\xcc\x13\ +\x83\x4b\x5a\x37\x0f\x6e\x87\xaf\x16\x33\x4e\x36\xe4\x09\x47\x4c\ +\xcc\x4d\xa1\x7d\x8c\xb3\xea\x06\x40\x9c\x6a\xe9\xce\x1f\x2d\x16\ +\xed\xf0\xd1\xc3\xf6\xc6\x3b\xef\xb6\xab\x76\xdc\x7e\xf0\xbb\xff\ +\x79\xfb\xcf\xfe\x9f\xff\x9f\xf6\x5b\x7f\xff\x9f\xb4\x37\x4f\x9f\ +\xb4\xb7\xde\x3b\x68\xc7\x8a\xb9\xa7\xce\xff\x81\x02\xfd\xad\x64\ +\xdf\xa8\x73\x93\xc5\xcd\x04\x22\x07\x87\x6f\x31\x8c\x53\x79\x3d\ +\xd1\x06\x1a\x03\xb1\x98\xbc\xc0\x0b\x97\x10\x59\x20\x73\x0f\x84\ +\x77\x9a\x23\x59\xf0\xee\xb7\xaf\x75\xe0\xbe\x8c\x36\xa0\xb2\x2e\ +\xbe\x4f\x53\x7e\x71\xdf\xa0\x80\x13\x07\xae\x17\x4f\xbc\xa1\xbb\ +\x8d\xce\x41\x1d\x2a\xfc\x87\x49\xde\x5c\xd5\x60\x73\xb9\xf8\x66\ +\x90\x1c\x45\x28\x6a\x63\x91\x45\xad\x50\x41\x65\x0e\xee\x04\x41\ +\xdd\x80\x2f\x0a\x36\x01\xc6\xc3\x38\x2d\xbf\x80\xca\x65\xcc\xbd\ +\x25\x6e\x8e\xa4\xd6\x41\xd6\x2b\x12\x78\xa9\x85\xd7\x22\xde\xe3\ +\x22\x97\x45\x4a\x00\xe0\x3c\x61\xf1\x76\xf2\x3a\xdc\xa6\xee\x0a\ +\xc7\x11\x12\x88\x94\x87\x8e\xd4\xc9\xcb\x2e\xd8\x25\xc4\x84\x41\ +\x1c\xef\xde\x56\x61\xea\x44\x1c\xa7\x45\x4d\xcc\x40\xc4\x59\xe6\ +\xf8\x1a\x9d\x4b\xd9\x8a\xb1\xbf\x43\x66\x59\x52\xb4\x48\x12\x76\ +\x84\x6c\xdb\xe4\x99\x1e\xc6\x03\xed\x41\x49\x86\x33\x2e\x56\x7f\ +\x8a\xa9\x90\xe7\x12\xdb\xc1\x5c\xce\xf6\x97\x96\x29\xa0\x17\x49\ +\x71\x8b\xa8\xd8\xef\xcc\x99\xd7\x19\xab\xb6\xb1\x5d\xd9\xee\xe2\ +\x6c\x7b\xd9\x3c\xb9\x56\x3e\x5c\x93\x64\x8e\x09\x34\x09\x96\x55\ +\xf8\xcf\xb4\xcc\x1d\xb9\xc4\x8b\xc8\x95\xa2\x0d\xec\x37\xc4\x40\ +\xba\xdc\xf7\x65\x72\x17\xc9\xfc\xa4\xe4\x4a\x4e\x97\x97\x37\xed\ +\xc9\xd5\x45\xfb\xe1\xfa\xa2\x7d\xfc\xf1\x67\xed\x07\xd7\xf7\xda\ +\xe2\x6f\xfe\x7a\xfb\x95\x7f\xe7\x6f\xb7\xbf\xfe\xd7\xff\x6a\x7b\ +\x78\x78\xdc\x56\xcc\xa3\xf1\x3f\x69\x8a\xdd\xe7\x3f\x41\xc4\x3d\ +\x14\xa4\x75\x81\x87\x81\x7d\x4e\xf1\xc5\xc1\x32\xdb\xba\x26\xa4\ +\xc2\x46\xab\xc2\x07\xd9\xd7\xbb\x6e\x23\x6e\x9b\x9c\x3e\x1b\xf9\ +\xb9\x38\x75\x1b\x25\x2a\x8d\x63\x3c\x6d\x61\x8f\x5c\xb6\xa5\x6e\ +\x5f\xf9\x45\xdb\xe6\xf6\x38\x47\xe6\xf5\x47\xdc\xc0\xfb\x84\x5a\ +\xb4\xa5\xd6\xc7\xb6\xe4\xd0\xb4\x1e\xda\x44\x70\x9c\x6d\xe8\x0b\ +\x6f\x3b\xdb\x2d\x72\x3d\x8d\xeb\xec\x7c\x67\x17\x65\xcc\x8b\xd2\ +\x8f\xe9\xfe\x4a\x12\x9b\x79\x73\x3b\xd5\xa6\xf7\x7e\x08\x71\xa2\ +\xcd\x00\xe9\xb5\x03\x67\xf0\x46\x60\xd9\x6e\xe5\x2b\x48\xcb\xb4\ +\xf9\x9a\x21\xc5\x6a\x9e\xb7\xc1\xe3\x15\x72\x5e\x4f\xac\x97\x4c\ +\xff\x85\xde\x4a\xfa\x20\x17\x4f\xbf\xd0\xc3\xee\xa7\x36\xd0\xb1\ +\xb1\xb4\x0b\x5a\xe0\x81\x85\x75\x92\x23\x47\x7d\x01\xc9\xaf\xf2\ +\x4d\x5b\xaf\x97\x97\xfc\xf8\x2c\x28\x9d\xb7\xfb\x71\x68\x70\xbf\ +\xd1\x73\x73\x7b\x3b\x85\xee\xff\xaa\x12\x1a\x9a\xbc\x94\x87\xd3\ +\xf3\x40\xfd\xaa\x85\x6c\x9f\x3f\x7b\xd6\xfe\xf8\xc3\xef\xb6\x7f\ +\xf1\xad\x3f\x6c\x7f\xfa\xc3\xef\xb4\xab\xf5\xa7\xed\x9d\xb7\x5a\ +\xfb\xfa\x7b\x27\x8d\x71\x6d\x56\x83\x78\x5f\x3b\x9c\x87\xcf\xa0\ +\xd8\x11\xb5\x3b\x48\xde\x51\xf6\x23\xe4\x0a\x25\x77\xa7\x12\xa7\ +\xa5\xbf\x94\x60\x2d\x08\x99\xb0\x6a\x6d\x37\x0e\x7e\x71\x0d\xc0\ +\x1e\xd7\x8f\xfd\xfd\xeb\xb6\xe0\x5a\x12\x97\x11\x37\xd7\xff\x19\ +\xe4\xcf\xce\xf0\x65\xdb\x71\x9d\xda\x57\x9f\x2a\xd0\x20\xd7\x92\ +\x55\x15\x61\x73\x78\xa8\x2f\x85\x36\xaa\x78\x01\xfa\x31\x23\xb6\ +\x35\xb6\x56\xf4\x0b\x52\x4d\x7b\x73\x22\x7f\xbe\x7a\xfb\x0d\xc1\ +\x71\x50\x6d\x50\xf8\x90\x03\x1a\x3d\xc6\xea\x8b\xd7\x72\xee\x59\ +\xb4\x0d\x0b\xaa\x1c\xcf\x25\xa7\xae\xfc\x50\x1c\xab\xa6\x11\x16\ +\xd5\x21\x6a\x92\x0d\x73\x60\x73\x47\x6b\x5e\xef\x8d\x04\x03\x55\ +\x2d\xb1\x15\x25\x39\xcf\x18\x63\xe0\x6e\x92\x5b\x3f\xde\x7c\x4e\ +\x97\x22\xda\x4c\x51\x7a\xd2\x86\x6a\x1d\x57\xe3\x69\x8c\xcb\x44\ +\xb4\x31\x2e\x15\x99\x3f\x31\x13\x38\x3a\x00\x97\x24\x58\x4f\x14\ +\xd4\xfb\xd2\xf8\xc6\x22\xfc\x07\xf2\xfd\xa0\x92\x97\xdd\x94\xbc\ +\x8e\xb3\x48\xab\xa5\xd3\xd1\x0f\x92\xbf\x12\x71\x1d\x65\x72\x6c\ +\xa1\xeb\xd2\xc5\xf9\x79\xfb\xfc\xb3\xf3\x76\xfa\xf8\xba\x1d\x5c\ +\xbf\xd1\x7e\xfe\x2f\x7c\xbd\xfd\xdc\xd7\x7f\xad\xbd\xf9\xe0\x2d\ +\x9d\xc7\x3c\x95\x46\x06\xfc\x75\xd2\xd3\x7b\xa2\x1f\xe2\x8a\xa8\ +\x43\x2f\x76\xa6\xdf\x5a\xe4\x75\xab\xfe\x47\x2c\xae\x1b\xd4\x2a\ +\xbb\x78\xf4\x5f\xf4\xe6\x1a\x12\xa8\x5f\xd4\x60\x77\x7c\xb1\x6b\ +\x61\x3b\x3c\x65\x73\x8c\x29\xdb\x77\xc0\x03\x83\x8f\x38\x6d\x4e\ +\xac\x6c\xf0\x19\x16\x25\xda\x1a\xb6\xaa\xc3\x78\x62\xe1\x13\x72\ +\x61\x9d\xb3\x2c\xbb\x0f\xb0\x40\xe1\x61\xb3\x92\x17\x4c\x64\x51\ +\xed\x2b\x1b\xe3\x9a\x59\xbb\x71\xa2\x4d\xa4\x82\x77\xf4\x55\xa2\ +\xdd\x5e\xdd\xd1\x8e\x5e\x1e\xed\x26\xd4\x76\xb4\xa3\x57\x98\xbe\ +\x14\x27\xff\xd8\xc8\x6d\x3d\x80\x3f\x93\x95\xa0\x92\x17\xa8\xdc\ +\x83\x2c\x03\xf9\xf2\xca\x4d\x4c\xa0\xe6\x25\x7b\x90\x38\x6d\x1e\ +\x58\xb1\x03\x0b\x0f\xae\x04\xa6\x2e\x7f\xf7\x29\xff\xf4\xeb\x25\ +\xfc\xa8\x58\xd6\xd4\xe5\x43\x0e\xd7\x3d\xf9\xf7\xba\x8c\x4b\xa6\ +\xbd\xe1\x20\x38\x6d\xf6\x53\x6c\xda\x90\x3d\x49\xd7\x73\xe1\x53\ +\xf6\xd2\x89\x2d\x1f\xc9\x15\x2b\xb3\x9d\x90\x5d\x58\x2f\x40\x3e\ +\x7c\x72\x8b\xb2\x60\x26\x6a\x6f\xd5\x16\xba\xc3\x7b\xf7\x83\xf7\ +\xdb\xf1\x9b\xef\xb7\xd3\xcb\xcf\xdb\xbf\xfa\xc7\xff\x49\xfb\xe7\ +\xff\xd7\x7f\xd0\xbe\xf5\x5f\xfc\x76\x7b\xb0\x3e\x6b\x6f\xf2\x07\ +\xfb\x07\x87\xed\xe8\x7a\xdd\x96\x39\xb8\xc2\x2d\x44\xfc\xc7\x5a\ +\xdc\x5c\xe4\x7d\x82\x71\x64\x6e\x60\xa8\xb2\x6e\x3c\x4c\xe0\x01\ +\x86\x2e\xb2\xe4\x00\xab\x93\xbd\x20\x16\xc8\xdc\x81\x31\x80\x95\ +\xb2\xd2\x47\xc1\xd7\x6d\x48\xbf\x8a\x4d\xdd\x72\x2c\x06\x9b\xda\ +\xbd\x88\x1b\x4e\xfe\x40\xa4\xda\x3f\xae\x8b\xde\x43\xfb\x27\x62\ +\xb3\xd6\x8d\x7e\x50\xf7\xb4\xd6\xf1\xc9\xa1\x4c\x8e\x85\x9c\xb3\ +\x14\x51\x48\xf3\x7a\xbe\x90\x36\xda\x85\x46\x9e\x42\xbb\x5c\x7e\ +\x53\x75\x26\x1f\x2f\x49\xa3\x4c\x54\xac\xdd\x94\x31\x32\x84\x4f\ +\x21\x53\x44\xf9\x0e\x24\x35\xf6\xa3\x4a\x39\x66\x3b\xbc\xea\x96\ +\xc2\x6c\x97\xf4\x75\x4d\xdc\x13\x03\xdc\xda\x3e\x22\x61\x1d\x76\ +\x60\x0a\x54\x36\xb9\x8b\x66\xca\x9c\x48\x50\xb1\xd5\xc8\x64\x08\ +\x1e\x90\x18\xea\x9e\x91\x1a\x5f\xe1\x11\x94\x94\x29\xc2\x52\x78\ +\x6d\xa5\xf0\x0e\x9f\xf2\x8a\x3c\x33\xb2\x5b\xc6\x8b\xb9\x69\x68\ +\xc3\x7e\x4e\xeb\xf3\x49\x89\xf1\xb1\xaf\x9d\xb5\xe0\x5d\xd7\x9c\ +\x2a\xbe\xd6\xd1\x0e\x64\x5d\x43\xc4\x99\x40\xd3\x5b\x75\x73\x6d\ +\x51\x06\x26\xd0\x88\x63\xf2\x4c\xdc\xff\x9b\x26\xd9\xe3\xc8\x99\ +\x86\x05\xcc\x0b\x03\x29\x9b\x4f\x7a\x98\xbd\x75\x83\x24\x58\xc6\ +\x46\x0e\x17\xc9\xca\xbd\xd6\x62\xad\x73\xf4\xd9\xe5\x55\xfb\xec\ +\xea\xa2\x7d\xef\xf3\xcf\xda\xc7\x67\x3a\x34\x3e\xf8\xa0\xbd\xf5\ +\xdf\xf9\xcd\xf6\x2b\xff\xc3\xbf\xd3\xde\x78\xf7\xdd\x76\x7f\xbd\ +\x68\x67\x17\x17\xce\xc1\x36\xe5\xbc\x5a\xea\x00\xe2\xbc\x66\x22\ +\x2d\x06\x2d\x38\xcf\xa9\x2f\xae\x55\xec\x43\xfc\x6a\xb2\x0a\x28\ +\x2e\x24\xe1\x1f\xf6\xba\x26\xf8\x02\xd3\xe5\xba\x3e\xcc\xb0\x8c\ +\x1f\x71\x73\x7c\x49\x5a\x71\x96\xcb\x27\xb0\x92\x27\x3c\xfd\x9f\ +\xa3\x17\x36\xd7\x07\xd9\x6d\xbc\xdd\x1e\xe3\xd9\x86\xf0\xad\xf5\ +\x0e\x99\xed\x14\x83\x43\xe0\x2c\x44\xec\x34\x13\x1b\x98\x6d\x39\ +\x0c\x04\xd5\xbe\x9d\x51\xc6\xbd\x28\xfd\x98\xee\x3b\x12\x8d\x9b\ +\xbd\xb6\xdf\x6c\x57\xa0\xa4\x01\xb6\xb9\x9b\x66\xdb\x3c\x7d\x6b\ +\x5f\x6e\xcd\x57\xaa\x96\xf1\xd6\xa2\x90\xc2\xe2\xfc\xe5\xc8\xa0\ +\x2f\x82\xdd\xd7\x15\x34\x38\x27\xb5\xbd\xd0\xf1\x80\xe3\xc6\x35\ +\x08\x5f\xec\xe1\xdb\x8b\xf3\x24\xc6\xcb\x1c\xb7\xd0\x05\x68\x19\ +\x76\x72\x43\x11\xcb\x7f\xb3\x4d\x75\xd8\x2f\xf3\xe0\xe7\xff\xa8\ +\x2d\xac\x7c\x1c\x1f\x32\x59\x23\x8f\x0d\xe1\x97\x32\xe4\x49\xa7\ +\x6e\xd7\x06\xdb\x4f\x3b\xdb\x4e\x85\xc1\x68\x2c\x9c\x27\x4b\x9d\ +\x73\xab\xd5\x65\x7b\xfc\xec\x69\xfb\xbd\x3f\xfd\x4e\xfb\xdd\x6f\ +\xff\x5e\xfb\xd3\x0f\xff\xb8\xbd\xff\xd6\x55\x7b\xff\x6b\x0f\xdb\ +\xbd\x7b\x0b\xff\xf4\x1a\xd7\x61\x9f\xa7\x8a\x86\x21\x55\xca\xac\ +\xc5\xcb\x90\x43\x9b\xf4\xa0\x5b\xbe\x69\xe8\xb8\x05\x49\xe2\xb3\ +\xb8\x2e\xa8\x74\x47\xc8\x57\x84\xbc\x44\x70\xbd\x64\xe2\x11\x3d\ +\x5b\xa0\x85\xd3\x89\xf3\x59\x65\x8e\xaf\xec\x7a\xdb\xb6\x95\x1c\ +\xdc\xd9\x9d\x34\xb6\xb1\xe4\x4d\xec\x36\x8d\x1e\x77\xd1\xf6\xc8\ +\xe7\xd2\xb6\x94\x1b\x69\xb6\xd5\xec\x4f\x3b\x6f\x88\xb4\xc0\x2a\ +\xae\x9c\x47\x7b\xd2\x94\xda\x19\x52\xfa\xd7\xa1\xc8\x72\xbb\xa6\ +\xbb\xa9\xfb\xf6\x8a\x43\x98\xd6\x49\x84\x43\x39\x16\x94\x15\xdc\ +\xde\xff\x8a\xb4\x4d\xc7\xe6\x9d\x07\x07\x74\xdb\x16\x29\x39\xa6\ +\x95\x43\x66\x3c\xb2\x9a\x24\x69\x00\x43\xa8\xff\x37\xcf\x42\xb0\ +\x31\x62\x1e\xbb\x9d\xb8\x22\x99\x86\x9c\x90\x55\xb5\x9f\x55\xe0\ +\x52\x62\x35\x57\x9a\x6b\x47\x0a\xb1\xfe\x70\x74\x2e\x39\x7e\x45\ +\xde\xaa\xbf\xbe\xb8\x15\x13\xf8\xd2\x7b\xa5\xd8\x52\xe8\xc4\x75\ +\x26\x23\xbb\x71\xb8\x26\xa4\x09\xd9\xba\x0c\xae\x53\xbe\x8b\xfd\ +\xa5\xa4\xab\xf6\xe4\xf1\xaa\x7d\xfa\xd9\x79\x6b\xa7\xc7\xed\x8d\ +\xd7\xbf\xd6\x7e\xf1\x17\x7e\xa1\xbd\xf5\xd6\xcf\xb5\x7b\x47\xf7\ +\xd5\xaf\x53\x2e\xfa\x78\xca\xc1\x7d\xdd\xbe\xea\xf2\xb5\x2e\xfb\ +\x0d\x4e\x8f\x8e\xe4\xb7\x16\xfb\x31\xed\x16\x3b\x56\xe7\xbd\x27\ +\xce\xb2\xef\x81\x07\x9c\x5c\xa5\x77\x0c\xee\x40\x73\xf0\xc0\x88\ +\x87\x4f\x25\x7c\xd2\x6e\x39\xf2\xdf\x89\x65\xfd\x23\x56\x6d\x02\ +\xd3\x62\x03\xcb\x3a\x9c\x67\xaa\x8f\x97\x84\x39\x67\x39\xf8\x98\ +\x17\xae\x25\x7e\x93\x4d\x34\xdb\xd9\xc9\x6c\x1b\x27\xd4\x62\x0f\ +\x76\x87\x2e\x57\xe0\x8e\xbe\x6a\xb4\xdb\xb3\x3b\xda\xd1\xcb\xa3\ +\xdd\x84\xda\x8e\x76\xf4\x0a\xd3\x97\xe6\xe4\x1f\xfb\x78\xd0\x66\ +\xc3\xef\xc2\xff\x4c\x68\xa8\x54\xa2\x6f\x57\x0c\x4d\xdc\x97\x59\ +\xbf\x59\x18\xf4\x4d\x43\xe0\x51\x26\x39\x07\x46\x3a\xc6\x5d\x50\ +\xe9\x04\x86\x1c\xfa\x86\x3d\x12\x27\xc4\x4d\x1f\x58\xf8\x84\xaf\ +\x1d\x24\x87\x5e\x6d\xa0\x4b\x1d\xb2\x02\x3d\x50\x14\x5c\x5e\x8e\ +\x35\x46\x3c\x16\x43\x54\x30\xb5\x33\x64\x44\xf1\xf4\x75\x2e\xb0\ +\x6c\x53\x3c\x35\x87\x4c\x8e\xb8\x61\x72\xdd\x96\xe3\x46\x80\x41\ +\xa6\xc3\xfd\x9b\x76\xb2\xb8\xd7\xee\xbf\xf3\x66\xbb\xff\xf0\x61\ +\x7b\x7c\x75\xd5\xbe\xfd\x0f\xff\x41\xfb\x4f\xff\x2f\xff\xa0\xfd\ +\xe8\x9f\x7d\xb3\xbd\x75\xb2\x6e\x6f\xbd\x73\xd4\x1e\xec\x2d\xda\ +\xa1\xf2\xf1\x0d\x6c\x93\x6e\xbc\xe2\x46\x4a\x2f\xdd\xaf\xc4\x8d\ +\x18\xdf\x6d\xd4\x82\x9b\x07\x2a\xf0\xc2\x42\x48\x79\x33\xd1\x11\ +\x0b\xd1\x96\x04\xe3\xde\xa4\x0b\x6a\x2b\x31\xdc\x50\x4b\x35\x44\ +\xe1\x66\x4f\x0a\x03\x38\x8c\xa0\x83\xfb\x46\x25\xed\xbe\x7f\x42\ +\x74\x90\x85\x48\x0f\xa7\x28\xd0\x37\x8d\x4c\xae\x59\x9f\xdb\xc4\ +\xe4\x9f\xb1\xa6\x2e\x0c\xe4\x2d\x9d\x14\x76\x23\xb5\xad\x2b\x66\ +\x0c\xb5\x43\x58\xa1\xf2\x9c\x9c\xa8\x55\xfb\x72\x72\x21\x9d\xdb\ +\x53\xe4\x75\xb2\x10\x0c\x3b\x34\xb8\x24\xdd\x46\xc8\xc9\xd1\x66\ +\xb1\x02\x93\x41\xb4\xc7\x51\x3d\x34\x7d\xbd\x2c\xc2\x28\x04\x90\ +\xed\x65\x2e\x35\xe1\xa2\x48\xa1\x65\x08\x29\x46\xed\x86\x38\x5e\ +\xf4\x8a\xf5\x89\x9a\x6d\xad\x76\xd9\x2b\xfd\x81\x43\xb5\x0e\x39\ +\x07\x94\x78\xf7\x45\x84\xba\x12\x11\xe9\xd2\x29\x36\x63\xda\x36\ +\x1b\x3f\x88\x31\x72\x30\x51\x0c\x86\x64\x9c\x4a\xdf\x37\xe2\x46\ +\x9d\x4b\xaa\x14\xc4\xf8\xc9\x9d\x5a\x57\x9b\x90\x42\xd8\x42\x58\ +\x22\xc5\x36\x1f\x72\xa5\x38\x50\xd4\x5b\x36\xd5\x04\xd7\x82\x6b\ +\x83\x31\xae\x11\xbe\x4e\xc4\x75\x23\x7c\x55\x38\x95\x11\xed\x27\ +\xbb\x27\xd2\xc2\xdf\xa7\xb9\x9f\x4a\x53\x3b\x04\x77\x5f\x64\xd7\ +\x61\x21\x6c\xc4\x76\x99\x96\x63\x07\xd8\xa4\x38\xbe\xc2\x97\xef\ +\x4f\xab\x9e\xd5\x4d\xbb\x54\x3d\x2b\x05\x9c\xaf\xae\xdb\xe3\xf5\ +\x65\xfb\xc1\x93\xc7\xed\x87\x67\xf2\xfa\xc6\xcf\xb5\x87\xbf\xf9\ +\x4b\xed\xdd\xbf\xf5\x2b\xed\x2f\xfe\xc2\x5f\x6c\xaf\x9d\x3c\x6c\ +\x37\xe7\xd7\xed\xf2\x9a\xd9\x3d\xda\xc5\x4f\x3b\xee\x79\xe0\xa8\ +\xfe\x23\xcd\xa7\x32\xe7\x70\xfe\x7c\xa2\xcf\x69\x17\x5d\xab\x52\ +\xf7\x80\x10\x9c\xd6\x08\xf3\x55\x0c\x1f\xae\x67\xe9\xcf\x45\xa1\ +\xcb\x8e\x1b\x6d\xc1\x43\x0e\x9c\x5c\xc6\xe4\x1b\x76\x2e\x42\xe5\ +\x33\xf8\x56\x1b\x1c\x57\x3e\x84\x8b\xd3\xfa\x99\x7d\x8c\x85\x4f\ +\x39\x47\xac\xcb\x8e\xf5\x06\xe8\x98\xf1\xe2\xb9\xbe\x53\x2c\xfb\ +\x42\xdc\x07\x6a\xb4\xc1\x34\xec\xbb\x38\x16\x73\x20\x28\x76\x1c\ +\x8b\x0d\xca\x38\x13\xf6\x51\xdf\x42\x5f\x60\xde\xd1\x16\x1a\x37\ +\x7b\x6d\xbf\xda\xd4\x23\x9f\xd1\xb8\x2f\x24\x77\x5f\x09\x9b\x27\ +\x68\xdf\xf7\x73\xdc\x9a\xb0\x40\xb5\xf4\x7b\xe0\x2c\x6d\x07\x08\ +\x99\x73\x3b\x6c\xba\x68\x48\x47\x63\x46\x7e\xf2\xe3\x3a\x14\x05\ +\xbb\x5f\x19\x1b\xf2\x26\x4e\x35\xce\x92\x38\xb1\xe4\x49\x1f\x5e\ +\xf6\x4b\x3c\xed\x13\x3e\xd9\x66\x76\x64\x2e\x74\x96\x8d\xa6\xac\ +\x52\xb2\x39\x15\x5b\x15\xd9\x0b\x4d\x2f\xf2\xe4\xa6\x53\x89\xab\ +\xbc\x23\x84\x31\xb1\x76\xd3\xae\x56\x97\xed\x7b\x9f\x7c\xd4\x7e\ +\xfb\xf7\xbf\xd5\x7e\xfb\x8f\xfe\x85\xfa\x5a\x9f\xb4\xf7\xdf\x3b\ +\xf1\xcf\x40\x1e\x1d\xec\xb7\x9b\x7d\xea\x57\xaf\x49\xfe\x4e\xd3\ +\xf7\x43\xd4\x60\xd4\xb2\x28\x6d\x2c\xd3\x72\x07\xc9\x32\x33\x3a\ +\xba\x53\x99\x48\x17\xe7\x77\x52\x34\x7c\xb0\x23\x09\xd4\x67\x58\ +\x5c\xd6\xb4\x88\x4b\x90\x7c\x24\x38\x20\x72\x83\x2d\xf2\xda\xc2\ +\x4f\x2b\xd7\x35\xc5\x29\xed\x91\xbc\x94\x3b\x29\xb6\x5f\x10\xce\ +\x63\x06\x68\xb2\x3e\x9f\x2a\xf6\x27\xa4\xcd\x76\x6e\xa4\xaa\x56\ +\x6d\xb6\x0e\x2d\x8e\x93\xc1\xf2\x02\x4d\x09\x73\xc4\xc4\x71\xf4\ +\x42\x61\x77\x52\xc5\xb3\xec\xc7\x91\xa8\x1f\xaf\x9b\x74\xab\xa2\ +\x09\x20\x3a\x57\x2a\xa8\xe2\x6f\xc5\x8c\x54\x46\x78\x05\x6c\xe4\ +\x81\x6c\xd2\x39\xd0\x7d\x46\xe9\x0b\xaa\x30\xc5\xf6\xaa\xa8\xf0\ +\xdf\x8c\x0a\x5b\xe5\x1d\xad\x60\xe8\xb4\x00\xa1\xb2\x54\x33\x6d\ +\xd7\x82\x2f\x14\x81\x01\xfb\x9c\x49\xb9\x53\x1a\x7d\xe9\x42\x1d\ +\x0a\x4b\xb7\x32\x94\xe0\x2a\xa5\x17\x95\x1a\xd7\x28\x4b\x7a\x47\ +\x8b\x4c\xc0\x14\xda\x43\xc6\xdc\x91\x71\x3e\x92\x3f\x1c\x98\x24\ +\x53\x97\xa8\xad\x2e\xf9\x79\xc7\x8b\xf6\xec\xe9\x4a\xd7\x9d\xb7\ +\xda\xd7\xde\xfb\xa0\xfd\xfc\x37\x7e\xa1\xbd\xfe\xf0\xcd\xb6\xb8\ +\x3e\x52\x37\x8f\x44\x3a\xb7\x9d\x92\x7c\xd9\x6f\x90\xec\xfe\x91\ +\x4a\x54\x91\x75\xe9\x2d\x0f\xf1\xec\x3f\x61\xcf\x0b\x82\xcf\x7b\ +\x17\x3c\xe2\x15\x76\xbd\xc4\x2d\x73\x7d\x70\xfb\x13\x4b\x5b\xc5\ +\x14\xee\xb2\xa9\x57\x5e\xc9\xc6\x2d\x67\x7b\xad\x87\x5c\x98\x71\ +\x61\xd3\x7a\x4c\xf1\x2e\x43\xbb\x25\xf4\x57\x61\x61\x0f\x8b\x97\ +\xe9\x57\x72\xc7\xb5\x64\x7b\x98\xd9\x47\xe4\x83\x49\x94\x2a\xe4\ +\x73\x48\x4b\xf7\xa3\x02\x12\xe5\xce\xec\x48\x05\x14\xbe\xa3\xaf\ +\x12\xed\xf6\xe8\x8e\x76\xf4\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\ +\xf4\xa5\x3e\xf9\xb7\xf5\xf1\x7e\x26\x2b\xb4\x51\xa9\xd4\xba\x91\ +\x08\x13\x37\x43\x21\xfb\xb6\x54\x72\xd7\xcd\x29\x31\xa0\x62\xb0\ +\x06\x93\xb3\xc4\x1d\x11\xb2\xcc\x9e\xc8\x42\xc0\x95\x6c\xd2\x07\ +\x7f\xdb\x8c\xa7\x7f\xc7\x32\xbf\xd5\x49\x8f\x81\xa2\x0d\xac\xe7\ +\x5b\x63\x72\x9d\x93\x2f\x93\x61\x95\xb7\x70\xc9\xe9\x13\x76\xc9\ +\x72\xb2\x9e\x03\x3c\x84\x22\x8f\xb1\xac\x4a\x18\xd4\xb5\x17\x44\ +\xe7\x9f\xa7\x39\xec\x73\xbd\xf2\xc0\xf4\xc1\xe2\xa8\xbd\xf5\x8b\ +\x5f\x6b\xf7\x4e\x5e\x6b\xdf\xff\xfe\x77\xdb\xef\xfc\xa3\xff\xa8\ +\xfd\xcb\xbf\xff\x1f\xb7\x4f\xfe\x9b\xef\xb5\xb7\xee\x5d\xb7\x37\ +\xdf\xde\x6f\xc7\x37\x4b\xdd\x8c\xdd\xb4\xa5\x8e\x05\x26\xba\x96\ +\x7b\xfc\x7a\xbe\x6e\x2c\x74\x4f\xe1\x9b\x17\x0e\x92\xbc\xb1\xc8\ +\xdb\x8d\xe9\x46\x03\xc4\x62\x58\xa8\x3a\x24\x95\xfc\x7f\xab\xc9\ +\x35\x84\xae\x43\x92\xd1\x3d\x68\x5d\x3a\x2b\x21\xce\x2d\x0d\x36\ +\xff\x67\x5a\xdc\x0b\x49\x0f\x83\xeb\x30\x50\x32\x78\xb6\x05\x15\ +\xd9\x39\xe1\xe8\x79\x53\x06\x2e\x14\xc7\x58\x07\x6f\x38\x90\xa0\ +\x58\x81\x24\xed\x83\x60\x1b\x94\x0e\xe5\x57\x77\xe3\xb9\x0c\x78\ +\xf2\x71\x96\x9e\x63\xba\x09\xa7\xda\xee\x8b\x60\x05\xdf\x40\xb7\ +\x13\xb6\xac\x25\x13\x79\x49\x58\x48\x41\x16\x33\x4f\xe5\xed\xcb\ +\x6e\x91\x5e\xf9\xa0\x90\xfb\x60\x7c\x8f\x09\xef\x58\x8a\xfa\xf6\ +\x0a\x3b\xda\xed\xbc\x89\x7b\x51\xd6\xa4\x0d\xd5\x07\x6f\xae\x33\ +\xeb\x30\xe6\x30\x49\xa8\x9f\x75\x84\x48\xe7\xb4\xa1\x26\xa1\xdd\ +\x46\x3b\x95\xb9\x7c\xca\x55\xbc\xef\x8f\x60\x83\x20\x2a\xb9\xf6\ +\x09\x6c\x23\x20\xb5\x0d\x1a\xfc\xb7\x90\x63\xc6\xc0\x8d\x6d\x54\ +\xd7\x02\x7c\x42\xd6\x9b\x13\x5b\x32\x9c\x31\x63\x4f\xb0\x1b\x53\ +\x35\xe0\x4c\x9e\x49\xb1\x1f\x83\x45\x70\x17\xc1\xc9\xf7\xf2\x37\ +\x8a\x08\x25\xce\x24\x1e\xd7\x1a\x64\x94\xc0\x62\x21\x7f\x72\xb3\ +\xcf\xc5\x1d\x9d\xae\xc8\xfc\xbb\x19\x7e\x60\xfc\x57\xc7\xf5\x9a\ +\xeb\xd2\x4d\x3b\x53\x5d\x9f\x5d\x5d\xb5\x8f\xcf\x9f\xb5\xef\x3e\ +\xbe\x6a\x37\x5f\x7b\xbb\xbd\xfe\x37\x7e\xb9\x7d\xf0\xb7\x7e\xbd\ +\xbd\xf6\xf5\xf7\xdb\x9b\x7c\x93\x7a\xef\xa8\xb5\xd3\xab\x48\xc8\ +\x7f\x16\x69\x1b\x33\xe8\xb1\x40\xe6\x24\xe7\xbc\x55\xbd\x7c\x77\ +\xda\x67\x2d\xe7\xb3\x4e\x66\xff\x2f\x10\x18\xe7\xb2\x4f\xee\xb0\ +\x71\xad\xf2\x39\x4d\x8c\xe5\xf2\x09\x8c\x28\xcb\xc3\x24\x5b\xff\ +\x5f\xb5\xd2\xbb\x1c\x79\x51\x69\xc8\x94\x67\xee\x6f\x5d\xb6\xd0\ +\x15\x43\x4b\xf1\xa5\xbd\xd8\x7b\x5d\x95\x6f\x8c\x9d\xe3\xa3\xad\ +\x70\x0a\xd7\xbe\xb1\x5e\x8a\xeb\xa4\x96\xd2\x3b\x17\xec\xf3\x17\ +\x01\x17\xf1\xdc\x5f\x41\xb1\x2f\x19\x02\x22\xa6\xef\xf7\xad\x94\ +\x39\xea\x38\x78\x1e\x7d\x81\xf9\x95\xa7\xbb\x36\xe1\x88\x3f\x6f\ +\x57\x6c\x12\x31\xf6\xcf\xa0\xda\xdf\xec\xcf\x92\xa1\x3b\xf6\xaf\ +\x8e\x02\x87\xce\x38\xb8\xfd\x39\x9f\x01\x41\x27\xdd\xfd\x17\xfa\ +\x23\xd6\x25\xab\x78\x52\x0b\x1f\xfa\x2f\xc6\xd3\xd6\x65\xa3\xe1\ +\x27\x79\x86\xa7\x2e\x21\x7d\x06\x39\xf5\x1e\x97\xf5\x38\xc2\x58\ +\x5c\x67\x02\x17\xe3\xe2\x66\xff\xf4\x32\xe7\x22\x88\x38\xe0\x2c\ +\xc1\x4a\x8e\xa6\xea\x9c\x88\x7a\x8c\xe3\xc0\x26\xd4\x67\x4e\x6d\ +\xe6\xb4\x58\x3a\xe0\x67\xa6\x75\x4e\x9e\x3d\x3b\x6d\xdf\xfc\xce\ +\xf7\xda\xef\x7c\xfb\xf7\xda\x77\x3e\xf9\xe3\xf6\xda\xc9\x45\x7b\ +\xff\x9d\xfb\xed\xad\xd7\x8f\xdb\xfe\x92\xdf\xd0\xd5\x39\xab\x73\ +\x91\x9f\x50\xcc\xd0\x60\xca\x1f\x67\x60\x40\xc8\xf9\x96\x9e\xbe\ +\x22\x4b\x19\x63\x12\xd0\x5b\xe4\x7d\x3c\x7a\x07\x95\x5e\x1f\x57\ +\x13\x85\x3f\x4f\xac\xd4\x9a\x38\x5e\x70\x5e\x5e\x24\xb8\x25\x41\ +\xd1\x30\xd9\xa3\x0e\xd6\x21\x06\xb2\x23\x53\x88\x48\x28\xbc\xab\ +\x4d\x41\x48\x53\x2d\x2c\x4a\x1b\x68\xf0\x9f\xbc\x7f\xb6\xb4\xd9\ +\x8a\x58\x0f\x2d\xdd\xfe\x5a\xab\xb1\xdd\x9b\x14\x19\x46\x6f\x93\ +\x81\x40\x67\xf8\x0b\x11\x7b\x8c\x36\x48\xac\xaa\x33\x41\x1d\x47\ +\xb3\x4d\x09\x0d\x15\xd4\xfe\x9e\x87\xa6\xd6\xf7\x8b\x78\x77\x28\ +\x9b\x4a\xcf\x3b\xf8\x75\x1a\xfc\x8a\x0c\x8d\xc0\x9c\x30\xdf\x6d\ +\x0d\x8a\xac\xac\xd7\xa6\xe7\x10\xed\xcf\xb8\x54\xc5\x47\xcf\xe9\ +\x50\x93\x30\x33\x84\xea\x82\x93\x72\x74\x5d\x25\x16\x59\xb3\x2f\ +\x27\xd1\x86\x6e\x87\xba\x00\xc9\xae\x3c\xae\x4f\xc5\x26\x16\x43\ +\x33\x11\x9c\x21\x75\xf6\x23\x66\x77\x79\x03\x32\xc5\x67\xb2\x5e\ +\xde\x91\xe2\xd8\xb9\x26\xa9\x4f\xc7\x39\xcb\xaf\x8f\x3c\x51\x3f\ +\x8a\xb2\x3a\x3b\xd6\xb5\xe6\xdd\xf6\x17\x7e\xfe\xe7\xda\xdb\xef\ +\xbc\xd7\x8e\x0f\xef\xa9\xbf\xb7\x50\x9b\xf3\x1c\x55\x2c\x79\xc8\ +\xc4\x81\x61\x99\xed\x95\x7d\x98\xde\x37\x12\x64\x2f\x74\x5e\x3e\ +\xff\xe3\xdb\x8c\x7e\xd9\x6f\x2a\xf6\x1e\xf8\xad\x1c\x55\x4a\x87\ +\xb3\x74\x1f\x08\x69\xea\xc3\xf8\x05\x77\x8e\xdb\xd8\xa4\x63\x0f\ +\x9f\xee\xaf\x97\x84\x2e\x77\x1b\x57\x32\xcb\x30\xc9\x5a\x67\x70\ +\x69\x83\xdd\xda\x80\x21\x57\x7d\x50\x62\x8e\x43\x4d\x9c\xcf\x89\ +\x81\xd8\x9c\xf8\xb2\xb1\xd9\x9e\xb1\x2f\xc7\x3d\x0a\x65\x8e\x1d\ +\x7d\x65\x69\xb7\x87\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\xed\xe8\ +\x15\xa6\x2f\xf5\xc9\x3f\x36\xbe\x7a\x06\x3f\xd5\x15\x22\xf9\xb6\ +\x2e\xc8\x46\xa5\x52\xe3\x26\xc4\x82\x81\xb8\x69\xa9\x9b\x93\xe4\ +\xbe\xe9\x09\xdd\x58\x8e\x8e\xd4\xc0\x73\xc7\x4a\xb6\x39\x75\xfc\ +\x8c\x67\xde\xc4\xe7\xf9\xc2\xa6\x85\xd8\x90\x27\x8b\x71\xd5\x15\ +\x36\x4c\x2c\x74\x13\xd4\xb1\x1c\xa4\x31\x1e\x98\x6d\xe1\xcc\xbb\ +\xfb\x87\x6f\xfa\x67\x7c\xc5\x4e\x39\x62\x38\xcb\x83\xe7\xce\xb3\ +\xf6\x36\xf0\xd3\x6a\x4e\x89\x03\x1d\x7c\x71\xb6\xb3\xe4\xeb\xf5\ +\x95\xe7\xb5\x1e\x3e\x7a\xbd\xbd\xf1\xce\x5b\xed\xde\xe1\x51\xfb\ +\xe8\xa3\x8f\xda\xef\xfc\x93\xff\xa0\xfd\xd6\xdf\xfb\x2f\xda\xe3\ +\xdf\xff\x6e\x7b\xf3\xe4\xba\xbd\xf5\xc6\xa2\x1d\xcb\xef\x68\x6f\ +\xd1\x0e\xf6\x78\x5a\x84\x1b\x92\xc8\xd3\x6f\x58\xea\xe6\xc2\x58\ +\x72\x90\x2e\xbb\x89\xf6\xb3\xd4\xfd\x45\x25\xb3\x48\xb0\xc7\x26\ +\xf3\xcd\x26\x32\x45\xd5\x1b\xc7\x80\xe8\x7b\x9e\xb0\x73\xff\x53\ +\x83\x3b\x55\x66\xb9\x64\x8b\xfb\x47\x38\x37\x90\x99\x80\x37\x37\ +\x77\xbe\xb1\x04\x93\x0d\x23\x0a\x3a\xd0\x24\xe4\xfa\xcf\xa9\x90\ +\xf0\xca\x1b\x29\xfb\x66\x9c\x37\xc0\xf6\x38\xbb\x59\x4b\xdf\x4e\ +\x59\xeb\x26\x7c\x27\xc9\xd1\x89\x38\x2e\x0c\x98\x38\x22\x52\x10\ +\xc9\xc7\xf9\x06\x87\x2d\x84\x15\x37\xf2\xb0\x19\xbc\x0f\x12\x24\ +\x9f\x6d\x56\x9d\x2c\xc8\x1b\x6f\x4b\x5e\x72\xc0\xa6\x20\x53\xa8\ +\xe1\x9f\x50\x68\x7d\xc1\x7e\xe2\x18\x96\x55\xaa\x65\x2c\x93\x53\ +\x50\x24\x9a\xe7\xc8\xf8\xa0\x68\x31\xe7\x47\x87\x92\x9c\x4b\xed\ +\x0e\x58\x27\xcd\xe8\x80\x58\xfb\xcf\x2b\x3f\xe6\x14\x95\x08\x3c\ +\x50\x0f\xd1\x2b\xd6\xcf\x89\x8c\x21\x1b\x11\x34\x0b\x9b\xef\xb0\ +\x4e\x3e\x77\x43\x08\x17\x16\x96\xc5\x7d\xe9\x81\xa7\x4d\xdc\xb1\ +\xcc\xa8\x5f\xab\x1e\x5d\x2b\x98\x28\xf3\x75\x04\x1f\xb8\x4e\x61\ +\xfb\xb1\xaa\x14\x05\xb2\x6a\x8e\x87\x92\xd3\x6e\x5e\x65\xf3\x1a\ +\x20\x94\x5f\x52\x6c\x39\x40\x56\x88\x88\x50\xaf\xf5\xa2\xee\xb5\ +\xf8\xfa\xea\xa6\x9d\x33\x89\xb6\xba\x68\x8f\x2f\xcf\xdb\xf7\x3e\ +\x5f\xb5\x4f\xef\x3f\x6a\xf7\xfe\xca\x2f\xb5\x5f\xf8\xef\xfd\x95\ +\xf6\x8d\xbf\xf0\xf5\x76\xff\xe8\x44\xd7\x97\xfd\x76\xbd\xda\x53\ +\xf3\x74\xfe\x71\xa9\x51\x1e\x9e\x46\x63\x78\x64\xc1\x80\xce\x72\ +\xe1\x73\x37\xae\x23\xc1\x39\x6f\xe3\x9c\x97\x5d\xe7\xac\x9f\x5e\ +\xf3\x39\xcd\xf9\xbd\xef\x7d\xe1\x18\x9f\xcf\x43\x7c\x72\x17\xdb\ +\xc8\xe3\x8b\x49\xd8\x85\x75\xfb\x80\x87\x4c\xf5\x92\x69\x99\x78\ +\xf8\x0e\x3e\x99\x0f\x7b\x61\xf6\x21\xb0\xeb\x19\x8b\x9f\x79\xe2\ +\xe6\x73\xcc\x72\xd5\x41\x96\xd1\x36\xb4\x13\x1f\x70\xdb\xaa\xae\ +\xac\x37\x06\xe6\x20\xf0\xe4\xda\xbe\xb8\x7b\x9f\x89\xbc\xbf\x11\ +\x0c\x16\xba\x8d\xf0\x2a\xbb\x23\x6e\x53\xb9\xdc\x61\xde\xd1\x0b\ +\x52\xdf\x0d\xdb\x36\xe6\x06\xb6\x6d\x5b\x6f\xee\x47\xf6\x2d\x71\ +\x1b\x30\x34\x41\x3a\x12\xac\xe0\x57\xe7\x34\x1c\x1c\x6d\xce\xdd\ +\xa7\xd1\x79\x8e\x3d\xfa\x2b\x81\x19\x87\xe7\x4b\x40\xe2\x89\x0c\ +\x7a\xcf\xc5\xcb\xd7\x31\x24\x28\xed\x65\x1b\x39\xf9\xbb\x1c\xfa\ +\x24\xeb\xca\xc3\xe7\x85\xe4\x78\x82\x3f\xed\xe9\x3f\xe5\x8d\x6b\ +\x15\x14\x78\x62\x69\xab\x18\x09\xe6\x71\x6a\x48\x57\x6e\xfb\x68\ +\xa3\xc7\x4f\xcf\x29\x87\x6c\x5c\x8f\x0e\x96\x2a\xba\xd6\xfc\xe8\ +\xf3\x4f\xdb\x6f\x7f\xeb\x0f\xda\xbf\xf8\xf6\xb7\xda\xd3\xc7\xea\ +\x4f\xbd\xb9\xd7\xbe\xfe\xc1\xbd\xf6\xe8\xfe\x52\x8e\x4c\xfc\xb1\ +\x3b\xe2\x6b\x01\x54\x46\x16\xa7\x16\x9f\x68\xd4\x24\x87\x6b\x69\ +\xf1\x59\x93\x31\x86\x11\x92\xba\x3d\x65\x93\x9c\xc0\xba\x5e\xe7\ +\xba\x81\x42\x43\x67\xdb\xf9\x70\x91\x62\x9e\xc5\x57\x12\x6f\x5b\ +\xf4\xf0\x89\xeb\x2a\x3a\xd7\xe4\x94\xc3\x9c\xf5\xe1\x8c\x19\xbb\ +\x6b\x70\x3a\x6f\x42\x78\x30\x83\xce\xbb\x85\x0c\x57\xde\x60\x3f\ +\x16\x6d\xa6\xdd\x96\x03\x9f\xc2\xef\x68\x86\x08\x4b\xae\xc4\x8c\ +\x32\x9a\x04\xb5\x62\x1b\x34\xa1\xe9\x9b\x22\xdb\x6b\x7b\xc4\x16\ +\x92\x63\xed\x43\x3f\x71\xef\xfd\x07\x80\x21\x5c\x82\x72\x3f\x0c\ +\x18\x22\xfb\xa2\x20\xcc\x50\x77\x91\x50\x3e\xdb\xa9\x22\x20\x7c\ +\x5e\xc0\xcf\x39\x39\x4e\x10\x68\x67\xe2\x3f\x11\x45\xcb\x6e\xb7\ +\x8f\xa4\x91\xbf\x2c\x9b\x1e\xe3\x3e\xb1\x88\x7b\xc9\xa1\xc6\x95\ +\xc0\x38\x9a\x8f\x74\xd9\xd3\x41\xc6\xee\x03\x25\x0c\x95\xbf\x5b\ +\x46\x5f\x0b\x75\xb0\x17\x79\x82\xdf\xc2\x7c\x0d\xc6\x63\xde\x99\ +\xb4\xe3\xcc\x2d\xf3\x5b\x20\xb1\x7e\x7c\xa9\x12\x79\xa1\xc3\xef\ +\xf4\xf4\xb2\x7d\xfe\xe9\x59\xbb\x78\x72\xd0\x96\x87\x0f\xdb\x07\ +\xef\x7d\xd0\x7e\xee\x9d\x9f\x6f\x8f\x1e\xbd\xa6\xf3\x71\xd9\xae\ +\xaf\x94\x43\x49\xdc\x9f\x70\x2e\xb8\x24\xde\x18\xb2\x4f\x41\xbf\ +\x27\xfa\x10\xe2\xc2\x7c\x2e\xe3\xc4\x92\x3e\x45\xf6\x73\xfc\xb2\ +\x1f\x09\x22\x27\xd7\x3b\x27\x1c\x6c\x36\x0f\x7d\x9f\x1e\x53\x3e\ +\xf8\xcf\x6c\xd5\x2e\x96\x81\x59\xee\xed\x2a\x3c\x73\xa6\xdc\x63\ +\x93\xf7\xfc\x60\x5d\xb6\x24\xd3\x94\x8b\x6d\xef\x17\x72\xae\x9b\ +\x5d\x58\x0c\xeb\x1a\x60\x48\xb6\xda\x3f\x35\x64\x76\x50\xed\xa4\ +\xa4\x80\x88\x79\xde\x84\x5a\xd1\x10\xb8\xa3\xaf\x14\xed\xf6\xec\ +\x8e\x76\xf4\xf2\x48\x9f\x57\xf5\x29\xbc\xa3\x1d\xed\xe8\x55\xa3\ +\x2f\xf5\xc9\x3f\x36\x9e\x9e\xc1\xcf\x62\x65\x5c\xef\x46\xc5\x52\ +\x7d\xe3\x02\x6e\x53\xde\xb8\x98\x07\x1e\x76\xbd\x19\xad\xc0\x06\ +\x66\x27\xe9\xbe\xd1\x49\x3f\x73\x06\x55\x30\xa1\xeb\x46\x05\x9c\ +\x20\x06\x74\x9c\x64\xd3\xbf\x64\x99\xbb\xbd\x06\x66\xca\x07\x53\ +\x60\xd8\x02\x07\x13\x57\x9b\xe2\xff\x3d\x0a\x1f\x72\xa8\x4e\x86\ +\x6e\xf8\x8f\x23\xc7\x92\x28\xdb\xe5\x3c\x85\x5b\x4f\xb9\xec\x91\ +\xde\x32\x42\xe4\x55\x5d\xfc\x1f\x52\xfa\x83\x7b\xfd\x24\xfa\x66\ +\x8a\xce\x3e\xf6\xb6\x6e\x07\xd7\x7b\xed\xfe\xc9\x71\x7b\xef\xe7\ +\x3e\x68\xcb\xfd\xeb\xf6\x9d\x3f\xfa\x76\xfb\xdd\x7f\xf2\x8f\xdb\ +\x1f\xfe\x27\xbf\xdd\x3e\xf9\x83\xef\xb6\x37\x8e\xaf\xdb\x1b\x3c\ +\xb1\xb6\x3c\x6e\xc7\x5a\x07\xee\xb1\xc8\xcb\x2e\xda\xe7\x66\xcf\ +\x37\x66\xc3\x8d\x07\xcb\xe1\xe6\x83\xba\x26\x56\x72\xfa\xe7\x02\ +\xd6\xef\xb5\x71\x44\x80\xa9\xa9\x26\x43\x7a\x31\x0b\x28\xd9\x6d\ +\x40\x07\xa7\xe4\x7d\x9d\xeb\x20\x37\xdc\xed\x4a\x5d\x2c\x16\x63\ +\x3d\xdc\xa0\xc1\x73\x10\x88\xa4\xb5\x2e\x98\x24\xc7\x20\x3b\x2e\ +\xda\x5e\xc9\x63\xfb\x39\x01\x0b\xef\xab\xd9\x20\x90\xe0\x49\x0d\ +\x1f\x68\xf2\x23\x91\xa1\x19\xf5\x18\x9b\x67\x49\x44\xb4\x2b\x72\ +\xcc\x69\xf2\x83\x55\x5a\x9a\x18\x14\xc2\xa4\x93\x5c\x4a\xd7\x07\ +\xea\xc1\x93\xb9\x20\x0b\x80\x83\x4f\xc8\xdd\x23\x89\x76\x46\x74\ +\xe5\x98\x84\xa4\x9e\x43\x86\xca\xbb\x8d\x6c\xc3\xc8\xc0\x40\x38\ +\x95\x3b\xb7\xaa\x53\x18\x5b\x6b\xd2\xc2\x3e\xa6\x0d\x5f\x37\xcb\ +\xeb\x2e\xab\xde\x61\xcf\xd8\xa1\xae\x4e\x16\x0b\xdb\xb0\x15\x09\ +\x72\x1e\x2f\x92\xb6\xb8\x8d\x44\xf5\x21\x24\x17\xd5\xfa\xf5\x64\ +\x3a\xb7\xa3\x5a\xb5\x0e\xd9\xe7\x31\x95\xd5\x75\x22\x07\x64\x7d\ +\x0d\x90\x9f\x4f\x7d\xae\x61\xf2\xc9\x9f\x73\x24\x0e\x3b\x72\x14\ +\xe4\xc8\x11\x25\x58\x70\x04\x64\xd9\xb5\x8d\xd0\xbd\x5d\x88\x03\ +\x0e\x66\xc2\x95\xa6\xd5\x7a\xe6\xee\x76\x4c\xe5\xe3\x3a\xb7\x96\ +\xc3\xf9\xe5\xba\x3d\x59\x5f\xb4\xc7\xcf\x4e\xdb\xf7\x9f\x88\x2f\ +\x8e\x5b\xfb\xa5\x9f\x6b\x6f\xff\xb7\xfe\x52\x7b\xef\x2f\xff\xa5\ +\xf6\xd6\x83\x87\x6d\x6f\x71\xd4\x6e\x2e\xd6\x8c\x65\xe8\x9c\x5b\ +\xb4\x43\xb5\x71\xa1\xeb\x4a\x0c\x23\xe5\xb9\x89\xd1\x93\x67\xfb\ +\xf2\x89\x41\x0f\x9f\x9b\x92\x99\x44\xf3\x09\x9b\xe7\x6b\x5c\x8f\ +\x8a\x63\xab\xf3\x38\xf0\x3e\xe0\x8b\x8f\x31\x29\xce\x1d\xbe\x11\ +\x93\xb6\xcc\x55\x38\xe5\x66\x8c\xeb\x78\xfa\xc8\x9f\x15\x99\x74\ +\xd8\x10\xaf\x17\x75\x09\x90\x6d\xc2\xe7\x7c\xf0\x2f\x9c\xbc\xc2\ +\xb5\x9c\xdb\x73\x1d\x2b\x57\x14\xd8\xe4\x6f\x8c\xfa\xcc\x93\x10\ +\xb5\xaf\x93\x99\x38\x4b\x88\xb0\xee\x1d\x69\x01\xd3\x73\x28\x83\ +\x47\xda\x0c\xdb\xe2\xb2\xa3\x17\xa4\xd9\xe6\xaf\x7d\x52\x34\xec\ +\x23\xf6\xed\xe6\x36\xef\xfa\x68\x4f\xd9\xe2\x18\x30\x91\xaf\x96\ +\x7e\x8f\x5c\x45\x14\x93\x48\xd9\x07\x29\xdc\x72\xfc\xcc\xa3\xbd\ +\x7d\xad\x8a\xd2\x75\x73\x7c\xe7\xb1\x7e\xea\xbe\xc7\x05\x1e\x7e\ +\xc9\xb7\xe1\x25\xab\x1d\x71\x69\xcc\xfa\xf4\xc2\xdf\x3e\x4c\xa8\ +\xd9\x5f\x38\xd7\x33\x35\x25\xea\x9a\xea\xb3\x5f\xbe\x78\xb3\x70\ +\x5d\x55\x0c\xaa\x8d\xae\xa4\x74\x7b\xd9\x6e\x9b\x8a\xaf\x93\x14\ +\x6d\x57\x26\xf1\xb8\x8e\x2c\x0f\x0e\xda\xa1\xce\xbf\xeb\xd5\x55\ +\xfb\xd6\xf7\xbf\xdb\xfe\xd9\x37\x7f\xa7\x7d\xeb\x87\x7f\xaa\x53\ +\xf2\xb4\xfd\xfc\xfb\x27\xed\xad\x37\x8f\xdb\xc3\x7b\xcb\x76\xc9\ +\x17\x9b\x7c\x3e\xab\x14\xb9\x9a\xa8\xcb\x1f\x57\x96\x44\xca\x8b\ +\x1c\x7b\x2f\x96\x65\x23\x1a\xb9\xdb\x73\x17\x4f\x24\xc0\xd7\xf5\ +\xc1\x34\xf3\x09\xbb\x4f\x7e\xe3\x95\x19\x62\x1d\x13\xe6\x7a\xc3\ +\xb6\x50\x85\x55\x27\xdc\xd7\x21\xec\x84\xab\xc4\x35\x1b\x39\xda\ +\x5c\x64\x4d\x06\xff\x64\x64\x25\x48\x42\x24\x66\xf4\x9f\x53\x59\ +\xf0\x9a\x58\x0f\x7c\x89\x74\x77\x3b\x40\xd5\x70\xef\xff\xa2\xb1\ +\xf2\xc0\xb7\x35\xe9\xee\x7c\xf2\x64\x9b\x6a\x5b\xb1\x0b\x9e\xbb\ +\x2e\x99\x24\xae\xd1\x21\x47\x8a\x0a\x2a\x90\x34\xb5\xed\x0b\x1b\ +\x83\x92\x36\xd4\x2d\xc0\x06\x65\x8e\x7e\x20\x69\x31\x3b\xa8\xb0\ +\xb2\x1e\x85\xe1\x0b\x1f\x1c\xa0\x54\x31\x95\x65\x94\xb7\x91\xd3\ +\x0c\x84\xef\xb4\x1b\xa6\x48\xce\xcf\xb4\x5a\xef\x81\xe2\xf8\x73\ +\x3a\xa7\x1a\x98\x5c\x43\x8e\xc8\x58\x04\xf9\x94\x90\x43\x74\x9d\ +\x50\xa6\x9a\xec\x9d\xe7\x4b\x9f\xd8\xe4\xad\x32\x11\xfb\x00\x20\ +\x8b\x77\x5c\x68\xb1\x08\x02\xf5\x59\x16\xef\x44\x58\xea\x58\xab\ +\x7a\x75\xc2\xe8\xb4\x69\x97\x57\x97\xed\xa9\xfa\x52\xcf\x9e\xad\ +\xdb\xd5\x93\x7b\xed\xed\x37\xde\x6b\xdf\x78\xef\x83\xf6\xe6\x9b\ +\xef\xb4\x93\xe3\x63\xdd\xd7\xed\xb7\xf5\x8a\x0b\x9e\xfc\x95\x21\ +\xfa\x02\x9c\xba\x25\xc7\x71\x46\x3e\xf7\xa5\x94\x34\x26\xd1\x42\ +\x1f\xfb\x41\xbc\x42\x76\x26\x63\x24\xb3\xad\x17\xd9\x52\xd6\x22\ +\xfc\xca\x37\x71\x5e\x5d\x06\x4f\x7b\x94\xc8\x2d\x21\xf4\x99\xef\ +\x68\xcb\x7a\x78\xf5\x3a\x0b\x63\x3b\xc5\x7a\x70\x61\x99\xfc\xc2\ +\x06\xc7\x6e\xbf\xb0\xa0\x4e\x98\x39\x98\x41\xbf\xe0\x81\x43\x93\ +\xcd\x1a\x32\xfb\x8f\x02\x94\xbc\x20\x6a\x21\x36\xb4\xbb\x28\x72\ +\xed\xe8\xab\x47\xbb\x3d\xbb\xa3\x1d\xbd\x3c\x52\x7f\x62\xfe\xb1\ +\xba\xa3\x1d\xed\xe8\xd5\xa1\xaf\xc4\xc9\xff\x33\x5f\x89\x8d\x06\ +\x48\x8d\x9b\x98\x52\xa4\xa5\xec\xcb\x2d\x3a\xb8\xee\x25\x4a\xaf\ +\xe2\x57\x8c\xaa\x0c\x36\x06\x57\x60\x4c\x0e\x09\x67\xfc\x27\x82\ +\x23\xc6\x9c\xf4\x8e\x96\x29\xfd\xb5\xf0\x0d\xa3\xf1\x1c\xa0\x41\ +\xbe\xc5\xc3\xdf\x89\x81\x18\x04\x27\x3f\x23\xe1\x83\x5f\x0c\xf4\ +\x50\x35\x78\xe6\x73\x58\xe6\x70\xbd\x95\x2f\x62\x62\x72\x2e\x72\ +\x04\x46\x40\xe6\x22\xce\x31\x2a\x99\xc7\x31\x43\x2e\x0c\x5e\x07\ +\xad\xf9\x1e\xff\x53\x74\xb3\x6e\x07\x6d\xd1\xde\x7c\xed\x8d\xf6\ +\xfa\x9b\xf7\x85\x5f\xb7\xa7\x1f\x7e\xbf\xfd\xd6\x7f\xf9\x8f\xda\ +\xef\xfe\x7f\xff\x65\xfb\xec\x5f\xfe\x69\x7b\xf3\x60\xdd\x1e\xbd\ +\xb9\x6c\xaf\x1d\x2e\xdb\x11\xb1\x4c\xc8\xf9\x7f\x49\xb8\x91\xe1\ +\xbf\x41\xf2\xa6\x4d\xd1\xce\xeb\x1b\x0a\xc4\xc2\x44\x25\xc3\xcb\ +\x5c\xd6\x30\x04\xa7\xd0\xc6\x34\xd9\xdf\xcd\xd5\xb6\xb7\x7d\x88\ +\x4f\xff\xb8\x69\xa2\x0d\xa9\x33\x68\x63\x39\x78\xde\xfb\x9a\x8c\ +\x4b\x63\x60\x88\xfa\x89\xb5\x9d\x60\xfb\xab\x10\x8f\xdd\x5c\xeb\ +\x88\x0d\x42\xcf\xf8\xa2\x92\x68\x62\x11\x58\x6c\xe1\x39\x9e\xc1\ +\x77\x52\xc5\xc4\x52\xa5\x00\x83\x52\x26\x87\x4c\x5c\x4a\x90\x77\ +\x6b\x91\x65\xed\x27\x2d\xd5\xea\x00\x92\x8d\x6e\x23\x85\xef\x36\ +\x12\xea\x9d\x30\xd2\xe4\x19\xfb\x27\x8b\xa8\x7b\x6e\x84\x78\xf5\ +\x39\x1e\xad\x20\x23\x24\x8d\xb2\xf3\x4c\x40\xad\x57\x84\xc4\x20\ +\x9f\x29\x85\x6e\x87\x0b\x8b\x27\x07\x20\x71\xbf\x73\x0b\x94\x5f\ +\x34\xc4\x01\x60\x3d\x5f\x49\x1d\x20\x60\xb2\x8e\xe4\x54\x65\xca\ +\xbc\xa6\xc1\xbd\xa2\x47\x33\xe4\x81\x49\x04\x2d\x2c\x95\x03\xe7\ +\x2f\x9c\x46\xf9\x52\xc1\x79\x1d\x6d\xc4\x66\x6f\x38\xff\x7b\xc6\ +\x41\xcb\x39\x7d\xad\x75\xc3\x47\x50\x4c\xa8\x51\x84\x89\x73\x8a\ +\x3a\x21\x93\x69\xae\x27\xf3\x43\x24\xf5\x3b\x39\x3a\x6e\xc4\x0c\ +\xe4\x48\x99\x20\x58\x1d\x4b\x96\x55\xc7\xb5\xce\x93\xfd\xd5\xb5\ +\xaa\xbe\x69\x6b\x5d\x4e\xce\xd4\xb6\xcf\x2f\xcf\xdb\x53\x95\x3f\ +\x7d\x7a\xda\x4e\x0f\x1f\xb4\x83\x5f\xfc\x85\x76\xf2\x57\x7e\xae\ +\x7d\xed\x57\x7e\x51\xd7\x98\xd7\xda\xa3\xeb\x45\x5b\xb5\x7d\x35\ +\x35\xce\xbd\x85\x4e\xb6\x03\xe9\x3c\xa9\xc6\xf5\x84\x89\xb2\x6b\ +\x15\x70\x06\x4e\xfc\x14\x69\xca\x31\xa9\xa6\xb2\x00\xa7\x35\x31\ +\x28\x12\x93\x65\xd8\xc5\xed\x13\xdc\x2d\xc6\xae\x22\x27\x5c\xc3\ +\x0f\x7b\xfa\xf8\x78\x48\x4c\x8b\xc4\x6f\x63\x12\x06\x7f\xb0\xa8\ +\xdb\xbe\x6a\x87\xe3\xc0\xdc\x96\x29\x2e\xe4\xed\xf5\x4c\x7c\x8e\ +\x5b\xae\x75\x42\xce\xf5\xd0\xc2\xf5\xb9\x50\x57\xf9\x0e\xdc\xb2\ +\x5e\xf1\x4e\xac\x08\xb9\xf6\x67\x87\x87\x6f\x55\x7b\x67\x63\x48\ +\xa7\x19\x0d\x79\xa0\x4d\xb7\x32\x57\x8a\x57\x99\x7e\xd2\x6d\xb0\ +\x6d\xb3\x77\x70\x33\x61\x56\x02\x5c\x27\xa9\x69\xc0\xbc\xbf\xd3\ +\x56\xc7\xc1\xcc\x37\x68\x42\x24\xf1\x96\x4f\xbf\x5a\xa4\x1c\xfd\ +\x07\x7a\x32\x76\x08\xdc\x7d\x8d\xb8\xd0\xc0\xd1\xf1\x89\x6b\x57\ +\x5e\x80\xba\x5f\xe4\x88\x12\x3e\x8e\xb3\x4e\x45\x31\x51\x56\xf1\ +\xb6\xa5\x1d\x07\xfb\x59\xcf\x5c\x72\x2e\x99\xa3\xd7\xd7\x4a\x26\ +\xf8\x12\x9f\xe2\x95\x39\xfb\x45\x28\xbc\x6c\xc3\x90\x76\x78\x4c\ +\xc4\x85\xdd\x75\x91\x87\x75\x33\x06\xcb\x7a\x71\x87\xa7\x6f\x90\ +\x38\x9b\x37\xaf\x31\x47\xcb\x03\x5d\x97\xd7\xed\xd9\xe9\xd3\xf6\ +\x07\xdf\xfb\x76\xfb\x9d\x6f\x7f\xab\x7d\xe7\x47\x1f\xb5\x47\xf7\ +\x9e\xb5\x9f\xfb\xf9\xfb\xed\xdd\x47\xc7\xba\xf0\xe5\xb6\xd4\x45\ +\xd4\xe7\x33\x6b\xe1\x76\xb3\x36\xc2\x33\x25\x35\xd8\x26\x6e\x20\ +\x16\xa6\xb2\xdf\xa2\xc9\x45\x62\x28\xd5\xd6\xc1\xd4\x95\xf8\x8c\ +\x0c\x8f\x99\x1d\xd2\xe7\x24\xdf\x67\x62\xe2\x07\xa3\xed\xe6\xf9\ +\x59\xec\xb6\x27\x49\xe0\x47\x24\xe3\x3a\x29\x55\x36\xb6\x53\xd9\ +\x1d\xe3\xeb\x17\x7e\x38\xa4\x41\x24\x37\xab\xbe\x2e\xb9\xa9\xd1\ +\x5e\xd3\xdc\x55\x34\x6a\xe5\x77\xcb\xe9\x25\x11\xf9\xd5\x60\xef\ +\x6f\x2a\x60\x99\xfb\xa3\x13\x18\xc8\x26\xfe\x02\xe4\x00\xe5\xd6\ +\x06\x8b\xe6\x47\x1e\x63\xa9\x56\xad\x93\x2d\xc9\xea\xa0\x47\xc4\ +\x2d\xb7\x19\xa5\x4b\x50\x28\x33\x28\xe9\x76\xb8\xbc\xf2\x33\x3b\ +\x6c\x1b\x51\xb9\xe3\xa6\xfd\x37\xa7\xca\x67\xfb\x06\xdd\x86\xd8\ +\x8e\x99\x64\x5b\xe3\x44\xd3\xf6\x18\x5c\x52\x70\x9f\x48\x72\x94\ +\xd8\x27\x9c\x59\x50\xf9\x56\xb4\x75\x39\xd2\x6d\xb4\xcc\x29\x9f\ +\x78\x9d\x8d\x7d\xa5\xcb\x27\x15\xe7\xaf\xc4\x9d\xc2\xc3\xc6\x88\ +\x0e\xea\x42\x10\x19\x58\xd2\x3d\xab\x73\xc1\xff\x0b\x2b\xce\x17\ +\x03\xb8\x49\x59\x2e\x97\xba\x76\x5d\xb5\xa7\x9f\x5d\xb5\x27\x4f\ +\xd7\xed\xe2\xec\xa6\xdd\x3b\x7a\xd4\xbe\xf6\xce\xd7\xdb\x07\xef\ +\xbc\xdf\x1e\x9e\x3c\x94\xfb\x41\x5b\xa9\xf3\xe5\xbf\x9d\xed\x5f\ +\x47\xd2\x8b\xbc\x2a\xa0\xf4\x0d\xa2\x70\xad\xd9\x6f\x0b\x95\xf8\ +\x62\x12\x11\xc1\xc3\x1e\x3f\xf1\x48\x9c\x34\x2d\xdc\xb2\x88\xb3\ +\x5e\x7e\xe4\x41\x05\xc5\x43\xba\x64\xec\x7d\x62\x2e\x5f\x96\xb3\ +\x48\xe9\xb2\x5f\x91\xa4\x63\x93\x5d\xb8\x64\xdf\x57\x96\x4f\xfa\ +\x97\x3d\x72\x84\x6d\xf4\x73\xfd\xf6\x9e\xda\x64\x3f\x63\xf8\x15\ +\x96\x72\x72\x5e\xc8\xd8\xd8\xdf\x93\x0d\x88\xfd\x18\x1e\xde\x8f\ +\xc3\xbe\x8c\xe3\x39\x8e\x57\x6a\x71\xc0\xe8\x30\x23\x3b\xef\xe8\ +\x2b\x4a\xbb\xbd\xbb\xa3\x1d\xbd\x3c\xd2\xe7\xb8\x3f\x45\x77\xb4\ +\xa3\x1d\xbd\x82\xf4\xa5\x3a\xf9\x69\xec\xd8\x03\x18\x1b\xff\xbc\ +\x3e\xe1\x4b\xa3\xcd\x06\x14\x6d\xa9\x58\x97\x55\xa3\xbe\x83\x29\ +\x9d\x1b\x9a\xf0\x35\xa7\x78\x30\xc5\x0e\xd6\x19\x24\x89\x01\x67\ +\x06\x54\xd2\x87\x81\x11\x8b\x3c\xd9\x81\xaa\x05\xb7\x4e\x1e\x40\ +\x29\x1f\xf2\x38\x73\xc8\x99\x37\x06\xc3\xc1\x94\xe3\x96\x7f\xf1\ +\xa9\xae\xc9\x27\xfc\xe1\x7d\xe0\x26\x8b\x07\xc6\x1d\xe3\x15\x49\ +\x1b\x03\x43\x88\x65\x13\x96\x6d\xa8\x1c\xbd\x0e\x97\xc8\xcf\xb7\ +\xaa\x67\xfe\xd4\x9d\x18\x83\x4a\x21\xd3\xf1\xd7\xba\xa8\xe3\xcf\ +\x40\xc9\x7a\x7d\xdd\x96\xda\x10\x4c\xac\x1d\xdf\x3b\x6e\x8f\xde\ +\xbc\xdf\x16\xcb\xeb\xf6\x47\xdf\xfd\x41\xfb\xe3\xdf\xfa\xad\xf6\ +\xc7\xff\xe4\xb7\xdb\xe3\x6f\x7d\xdc\x5e\x5b\x9d\xb5\x37\xdf\x3e\ +\x68\xc7\x87\xba\x85\x5b\xe9\x16\x8a\x3a\x14\xb7\xcc\x1b\x97\x28\ +\xda\xa3\xbe\x19\x12\x21\xd7\xfe\x4d\xd9\x37\x29\xf1\x2e\x30\x29\ +\x62\x95\x12\x49\x0b\x09\x36\x02\x60\x4b\x9d\x77\x95\xbc\xc9\x45\ +\xb6\xab\x04\x6e\x04\x0d\xab\xc4\x8d\x9d\x70\xee\xb3\xc4\x58\xda\ +\x37\x44\xc9\xa1\xf8\x46\x89\xfc\xbe\x21\x4b\x5b\xdc\x51\xb6\x3d\ +\xfe\x1f\x45\x7e\xf0\xfe\xf3\x90\xd8\xa0\x70\x09\x61\x46\x64\xa4\ +\x1d\x9b\x78\x92\xe1\x3b\x6c\xe0\xb4\x25\xee\xd2\xbe\x98\xd8\x2c\ +\x50\xb9\x2b\xce\x10\x1b\xd2\x94\x06\xe7\x0c\xb1\x68\xa6\xf6\xf8\ +\xe4\x9d\xb4\xbe\x66\x93\x21\xa4\x08\x60\x49\xd9\x6c\x2e\x3e\x55\ +\x65\x37\x09\xe8\xcd\x2a\x2a\x07\xf1\x29\x4f\x6e\x3f\xc4\x72\xe8\ +\x71\x5d\xe8\x94\x1e\x93\x94\x15\x87\x67\x60\x96\x55\x79\xed\xf3\ +\xbb\xb6\x47\x5a\x07\x61\x4e\x53\x08\x0e\xf3\x04\x53\xab\x6f\xdb\ +\x20\xaf\x9b\x60\x3f\x5d\x16\x48\x6c\x0f\xe9\x06\xa4\xa0\xfb\xbc\ +\xf6\xb9\x8f\x8e\x2c\xce\xa0\x8d\x65\xce\x73\xe5\xc0\x06\x46\x2c\ +\x23\x32\x9c\xdb\xc4\x32\xa8\x92\xbe\xf5\x93\x99\x9d\x88\x37\x4f\ +\xb8\xeb\xd9\x0e\xa3\x34\x32\x68\xd8\xe5\x93\x2b\x66\xda\x43\x6a\ +\xd5\x19\x4f\xc3\xde\xb4\x73\xf1\xcf\x2e\x2f\xdb\x93\xf3\xb3\xf6\ +\xfd\xf3\xab\x76\x7a\x78\xdc\x96\x7f\xf1\x83\xf6\xe0\x2f\xff\x42\ +\x7b\xe3\xdf\xf8\xb9\xf6\xda\x6b\xaf\xfb\x49\xd7\xb5\x62\x17\x2b\ +\x95\xfd\x85\x6a\x13\xd7\xc9\xb9\x64\x80\xc7\xd7\x90\xfd\xb6\xcf\ +\x44\x19\xe7\x1b\xba\x07\x65\x65\xe9\x83\x3f\x3c\x95\x16\xe7\xa0\ +\x65\x15\x29\x2a\x9c\x9b\x9c\xa7\x79\x7e\xc2\x39\x6f\x7d\xe2\xa3\ +\x07\x16\x3e\x8a\x1d\x30\x2e\x18\xd3\x53\x6c\xb7\x6d\x13\x46\x5b\ +\x26\x3b\xf5\x76\x9d\x76\xa8\xb6\xee\xd3\xe3\x42\xef\x7e\xe4\x9c\ +\xe9\xc1\x67\x7e\xca\xa5\x65\xd8\xb7\xe4\x71\x1d\xc2\x6d\xb7\x6d\ +\xe2\xb7\x30\xda\x94\xb9\x82\x82\xb3\x64\x77\xd6\xb9\x06\xb1\xcd\ +\x6f\x1f\x03\x77\xc9\x49\xa3\x09\xda\x30\xef\xe8\x27\xa4\x71\x7b\ +\x96\x3c\x6e\xff\xbb\xb6\x7b\xf7\x15\xdd\xda\x17\x32\xe6\x05\xe8\ +\x79\x6e\x65\xf5\x75\x47\xc5\x9a\x79\xe9\x7a\xf9\x40\x09\x1e\x03\ +\xbf\xa0\xba\x2e\x51\xb0\xb9\xff\x91\x7d\x90\xb8\x90\xe1\x3d\x61\ +\x2e\xe5\x8b\xc5\x95\x04\x86\xe4\xfe\x10\x78\xd4\x63\x9f\x2a\xbc\ +\xec\xa7\xd7\xe8\x27\xae\x0b\x93\x2e\x4d\x69\x57\x71\x3f\x0b\x1b\ +\xcb\xac\xcf\x31\xc6\xf0\x4b\x1b\xba\xae\x4b\x8a\x70\x9e\x88\x43\ +\x94\xcc\xf5\x95\x38\xd6\x2d\xf3\xc7\x47\x47\x20\x96\xb8\x1e\x82\ +\xfb\x32\xa0\x2d\xaa\x37\x9b\x9a\x2f\x06\x1c\x2e\x75\xdd\xb9\xbe\ +\x6a\x8f\x4f\x1f\xb7\xff\xe6\x4f\xbe\xd5\x7e\xf7\x5b\xdf\x6f\x9f\ +\x3e\xf9\x41\x7b\xe7\xed\x9b\xf6\xc1\x5b\x27\xed\xd1\xc3\xc3\xb6\ +\x38\x50\xf5\x7c\x49\xc2\xe7\x29\xd7\x88\xa8\x93\xdc\x51\x37\x50\ +\x0c\xe8\xc6\x0e\x2b\x1e\x64\x57\xac\xfd\x3c\x0f\x42\x73\x0c\x19\ +\xb0\xc1\x6c\x89\x9c\x26\x03\xe5\x83\x3c\x52\x5e\x3f\x64\xcb\x4f\ +\x50\x4b\xe5\x57\xb6\x82\xa8\x9f\xcc\xc6\xb5\x0e\xe8\x5c\x73\x7d\ +\x99\x0e\x70\x6a\x2b\x9a\xf0\x7a\x62\x0d\xdd\x4f\xfb\x90\x2f\x32\ +\x88\x24\x47\xb5\x79\xad\x4a\x4b\x99\x93\x42\x1d\x62\xa0\x8d\x6d\ +\xe1\x8a\x37\x31\x53\xd5\x97\x5c\xac\xd7\x35\x41\xe1\x31\x6b\x1f\ +\x1c\x2a\x1e\x41\xa3\x65\x3b\xcd\xfd\x4d\xb1\x51\x7a\x66\xe8\xf9\ +\x39\xd2\x6b\x96\x4a\x8b\xcc\xd3\x69\x4c\x76\x2b\xf1\xe4\xbb\xd5\ +\x9c\x34\xeb\x03\xa4\x53\xf9\xe2\x5d\xe6\x99\x5f\xf2\x4d\xda\x6c\ +\x4e\xdf\x9c\xd0\x94\x34\x49\xc0\xe6\xfa\x24\xe5\x11\x26\xb3\xec\ +\xce\x11\x7e\x5d\xd5\xa9\xe4\x2f\xeb\xf8\x15\xe4\x98\x8d\x74\xb6\ +\xd2\x57\x42\x96\x48\x7b\x88\xed\xae\xe3\xfe\xee\xc9\x03\x71\x95\ +\x55\xc0\x21\xfb\xa8\xb8\x6e\x74\xa3\xb7\xa9\x70\xce\x17\x15\xc2\ +\x75\x95\x08\x58\xf1\xac\x97\xfb\x43\x8b\x55\xbb\x38\xdb\x6b\x8f\ +\x1f\x5f\xb4\x67\x4f\x74\xcf\xb5\x77\xd2\x5e\xbf\xf7\x56\xfb\xda\ +\xd7\xbe\xd6\xde\x78\xfd\xcd\x76\xb8\x77\xe0\x49\x34\xbe\xc8\xb4\ +\xaf\x3e\x20\x4f\xd0\x57\x5f\x89\xac\x3e\xaf\x9c\x1f\x19\x5c\x5c\ +\x65\x5f\x7d\xaf\xd2\xed\x4b\xc9\xbe\x06\xd3\x6b\x02\xb9\x0a\x29\ +\x98\x3c\xe4\xc0\x27\xec\x00\xe1\x37\x61\xbd\xdf\x43\x3d\x89\x69\ +\x81\x36\xc3\x7a\x01\x4f\x3e\xf6\x89\x66\x36\xd7\x9d\x58\xe5\xdf\ +\x82\xf1\x02\x8f\x75\x4b\x0c\xdf\x6a\x9f\xed\x81\xc5\x5a\x95\x8c\ +\x0f\x72\xe4\xb4\x4f\x62\xf1\x4e\xbb\x15\xe4\xc4\x10\xd9\x51\xc3\ +\xbe\xf5\x71\x93\x06\xae\xf9\x61\x1a\x1c\xb6\x52\xe4\xdc\xd1\x57\ +\x8b\x76\x7b\x75\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\x8e\x5e\x61\ +\xfa\x52\x9d\xfc\xd5\xd8\xb1\x17\x30\x62\x7f\x26\x2b\x43\x25\xdb\ +\xba\x21\x1b\x95\x4b\xf5\x0d\x10\x97\x57\x33\xec\x29\xf3\x32\x1e\ +\x65\x9b\xec\x41\x92\xb8\xd3\x0a\x8c\xc0\x1a\x2c\x49\xdb\x18\x17\ +\x78\x54\x0c\x6e\x5b\x0e\x5a\x7b\x81\xbf\xd5\x90\xc3\x1f\x79\xf0\ +\x37\xaf\xbc\xc9\x5d\x7f\xc8\xc1\x71\x03\xcf\x1c\x35\xe0\x63\x7b\ +\xe8\xfe\xa6\x37\xbe\x76\x09\x5b\x3c\xdd\x36\xf7\x83\xc7\x93\x6a\ +\x8a\xe9\x03\x41\xd8\x08\x27\x8f\xee\xbc\x24\xc7\xa0\x10\xf6\xa8\ +\xd3\x5b\x1f\x5f\x06\x75\xae\x79\x76\x64\xaf\x3d\xbc\x77\xbf\x9d\ +\x3c\x3a\x69\xcb\x83\xfd\x76\xfe\xd1\x0f\xdb\xef\xfd\xde\x6f\xb5\ +\x6f\xff\xe7\xdf\x6e\x9f\xfc\xfe\x77\xdb\x6b\x97\x67\xba\xa1\x5b\ +\xb6\xe3\xfd\xeb\x76\x4f\x37\x67\xbe\x15\x74\x3e\xed\x49\xdd\xa0\ +\xf8\xe6\x44\x49\x7d\x63\x13\x6f\x51\xde\xa2\x84\x21\xb0\xb4\x2b\ +\xcc\x56\xd4\xa0\x04\x53\x34\xcc\xcc\x5f\xf9\x20\x72\x03\x08\x92\ +\x0b\xfb\x84\x18\xba\x78\xc8\xf0\x8c\x43\xb6\x13\x0b\x18\x37\xa1\ +\x79\x2b\x84\x4f\xe9\xb6\xb3\x1e\xc9\xb0\xa9\x3e\xdf\x68\x66\x19\ +\x75\xfc\x88\xe5\xdd\x9b\x2d\xd9\xc0\xc0\x82\xec\xe9\x9b\xb0\x4e\ +\xc3\xba\x4e\xb4\xe9\x30\xe8\xe5\xbf\x41\x73\xaf\x90\x7c\x8c\x14\ +\x78\x47\xdc\x44\xf8\x96\xb3\xb8\xfd\x87\x78\x11\x50\xa8\xd8\xd3\ +\x7f\xb0\x77\x07\x71\x44\xc8\xaa\x7d\x02\x9c\xb9\xa7\x7f\x86\xf4\ +\x25\x74\x1b\xcb\x48\x07\x59\x10\x24\x6c\x0a\x49\x9a\x47\xd5\x20\ +\x47\x27\xeb\x29\x27\xa1\x0e\x1e\x61\x1e\x43\x54\x36\x42\x6e\xe9\ +\xa6\x0e\x72\xe6\x05\x71\x8b\xcd\x51\xc6\xe9\x66\x87\x3c\x57\x42\ +\x0c\x3d\x26\xdb\xf5\x16\xe7\xdc\xf4\xf8\x6a\xe1\x5c\x33\x88\xc5\ +\xb7\xf8\x3a\x5a\xc4\x29\xdd\x71\x62\xf0\x87\xb6\x1d\x60\x66\x5a\ +\xc0\x13\x22\xb6\x06\x90\x2b\x22\x8e\xd0\x81\x08\x71\x89\x41\x64\ +\xae\x0f\x2b\x55\xbc\xba\x6a\xfe\x8f\xb4\x4f\x57\x97\xed\xf3\xf3\ +\xd3\xf6\xd1\xf9\x75\xfb\x6c\x7f\xd9\x96\xdf\xf8\xa0\x3d\xfc\xcd\ +\xbf\xd8\xde\xfc\xb5\x5f\x68\xaf\x3f\x7c\xd0\xee\x31\x62\xdc\x96\ +\x99\x44\xa2\xae\x11\x4b\xe5\xa0\x30\x41\xe6\x41\x9d\x1a\x08\x62\ +\x7f\x72\x4d\x91\x1e\x4f\xa8\xe5\xe0\x8f\x4a\x1f\x14\x4a\xd9\x36\ +\xb9\x87\xdd\x82\xde\x83\x9d\x17\xfe\xce\x09\xc6\xba\xa5\x2f\x6b\ +\xe1\x98\xf4\xd7\x8b\xf3\x79\x36\x28\xd3\xf9\x26\x96\xd7\xb8\xf4\ +\xf7\x4f\x41\xf2\xaa\x7c\xa3\x4f\xc9\xf8\x52\xc7\x86\x0d\x6e\xd9\ +\xb9\x90\xc7\xb6\x0c\x98\xdd\xb2\x1d\x6a\x6f\xa4\xf2\xc2\x25\xf0\ +\xe0\x1c\x6b\xb6\x99\x8b\xd9\x39\x39\x4b\x76\x83\x44\x76\x05\x4b\ +\x79\x85\x29\x8f\x83\x89\xc2\xff\x4e\x2a\x73\x85\x7d\x81\xfb\x2b\ +\x45\x3e\xce\x43\xbc\x93\x36\x7d\x46\x7d\x9b\x0c\xdf\x0c\xda\x8c\ +\x87\x46\x6c\xa4\x9e\x27\x1c\xb7\xb9\x73\xa5\x32\xcf\x73\x35\x74\ +\x2d\x2b\x86\xfe\x85\x65\x78\xe8\x61\xe7\x42\x14\xb6\xde\xbf\xb1\ +\x5e\xfe\x13\xae\x45\x5e\x73\xca\x5f\x62\xd6\xe1\x17\xd7\x3b\x7c\ +\xf5\x02\xc7\xa1\xdb\x2c\x63\x13\xec\x3e\x4f\xe6\xac\x5c\xe5\x93\ +\x75\x6b\x21\x09\xe7\xc4\x6f\xf9\xdb\x18\xb9\xd0\xf0\xb7\x1d\x11\ +\x1c\xb4\xfa\x60\x92\x1d\x13\x7c\x5c\x87\x20\x30\x31\x36\xa8\x0a\ +\x71\x9c\x8d\x07\xcb\x85\x8a\xa4\xf5\x55\xfb\xe1\xe3\x4f\xdb\xef\ +\x7c\xeb\x8f\xda\x1f\xfc\xd1\x8f\xda\xd5\xea\xa3\xf6\xde\xbb\xad\ +\x7d\xed\xed\x07\xed\xc1\x89\xae\x8f\x07\x6b\x7f\xb9\x29\x06\xb5\ +\x49\xa4\x92\xd7\xf3\xaa\xc2\xfb\x2a\x4e\xea\x50\x6e\xe8\x7d\x79\ +\x0d\x45\x3e\x93\x4d\x9c\xdf\x96\x15\xe7\x50\x2b\xd8\x33\x91\x81\ +\xcc\xed\x7c\x5c\x07\x82\x40\x4b\xee\x12\x17\x8d\xf4\x0f\x44\x4b\ +\x0b\x43\x5c\xb9\x06\x4b\x17\xd9\xc5\xb9\x64\x69\xc9\xa5\xcc\xeb\ +\x82\x4f\x5c\xa3\xf8\x72\x05\x72\xe8\xf6\x53\xa2\x6c\x99\x97\x10\ +\x12\xde\xa6\x2e\xcc\xc4\x89\x6e\x81\x00\x53\xdb\x2d\x8d\x3e\x53\ +\x35\xb7\x1d\xba\x9f\x84\xee\x57\x02\x7c\x4c\xf4\xa2\xc4\xf1\x93\ +\x22\xf1\x4e\xa1\xed\x94\x58\x37\x3d\x97\xa2\x3d\xbd\x05\x2c\x86\ +\x40\x8e\x51\x40\xdb\x44\xe8\xa5\x85\x3c\xb8\x97\x50\xce\xa2\xde\ +\x45\x12\x36\xca\x41\x15\x10\x64\xb8\x7c\xbe\x80\x66\xf5\xce\x14\ +\xe8\x16\xb0\x25\xef\x1e\x67\x5c\x78\xd6\xb9\x91\x0b\xb6\x29\x72\ +\x15\x53\x17\x52\x64\xc1\xc1\xc6\x75\x80\x49\x28\x30\x96\x3a\xe6\ +\xea\x2c\xea\x04\x5c\x6d\xe2\x1d\xce\x41\xc8\xa4\x11\x27\x4b\x6d\ +\x6f\xb3\x81\x12\x0d\x6e\x1b\x9a\x74\xb1\xf8\xdc\x55\x7f\x04\x5d\ +\xb5\xb3\x3a\xfc\xe4\xf5\xfe\xe2\xba\x5d\x5d\x5e\xb5\x27\x8f\xd5\ +\xbf\x3a\xbf\x6c\xed\xf2\xb0\xdd\x3b\x7e\xd4\xde\x7a\xeb\xed\xf6\ +\xc6\xa3\xb7\x75\xdf\x75\xdf\x09\xf8\xdf\x59\xfa\x43\xee\x1f\xf0\ +\xd2\xe7\x3f\x77\x63\xf4\x1d\xea\xe7\xb0\xdd\x2f\xa0\x0e\x61\x35\ +\x79\xe6\xbe\xd4\x06\x56\x7d\x99\xf0\xa7\x8d\xd1\xae\x9e\x03\x3b\ +\xaa\xf3\x22\xe3\x37\xf8\x23\x1b\x9b\x8a\xc0\xc1\x77\x28\xc6\x33\ +\xd6\x72\xe2\x2e\x91\xa7\x63\xbc\x84\x85\x5e\x75\x4c\xf5\xd2\x9f\ +\xeb\x71\x85\x8d\x39\xd2\x2e\x25\x6c\x23\xde\xe5\x39\xb7\x2f\x72\ +\x4a\xdd\x76\x07\x71\x8c\xc4\x7e\x1e\x9e\xf4\xcf\xe5\xdd\x74\x77\ +\xbe\x1d\x7d\x79\x69\xb7\x57\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\ +\xed\xe8\x15\xa6\x2f\xc5\xc9\xbf\xd9\xc8\xb1\x17\x50\x36\xb0\x9f\ +\xf9\xca\x0c\x0d\x90\xe8\x9b\x96\xbc\x6b\xea\x32\x26\x63\x42\xea\ +\xd2\xcb\x20\x48\x61\xdc\x26\xa5\x1e\x58\x0d\x8c\x20\x86\x3c\x96\ +\x8a\xeb\x32\x35\x59\x46\xcc\x5c\x7a\x79\xb0\xbb\x7c\x5c\x72\x60\ +\x05\x2c\x63\xa6\x7a\xab\xce\xf4\x31\x1e\x72\x8f\x31\x0e\xb6\x81\ +\x7b\x22\x8c\x7a\x09\x9b\xda\x3b\xfa\xb9\x38\x96\x01\x9d\x8c\x19\ +\xea\x0e\xbb\x6c\x5e\x5f\xe9\x59\xbf\x16\xf6\x8b\x75\x71\x05\x91\ +\x9f\xaf\x3c\xaa\xc2\x85\x6e\xda\x8e\x0e\x17\xed\x8d\x37\x1e\xb6\ +\x9b\xc5\x4d\x3b\x7b\xfc\x49\xfb\xf6\xef\xfe\x4e\xfb\xf0\xbf\xfa\ +\x76\xfb\xf4\x5b\x3f\x68\x27\x67\xcf\xda\xc3\x47\x0b\xdd\xec\x2d\ +\xdb\x92\x6f\x49\xb2\x89\xc8\x2f\xce\x7d\x09\x37\x2d\xfb\x7e\x52\ +\x04\x80\xb7\x5e\x75\xc3\x62\x10\xb2\x21\x4a\xe2\x8e\x2f\xdc\xf2\ +\x44\x81\xa7\x47\xdc\x89\xfa\x66\x2f\xb8\x8a\x9d\xed\xe5\x9b\xd6\ +\xf8\xe6\x62\xe2\xf0\x30\x07\x90\x31\x33\x22\x97\x49\xdb\x25\x46\ +\x81\xd2\x9f\xe4\xc2\xc8\x87\x0f\x6f\xa0\xba\x11\xd5\x7a\xb2\x01\ +\xb8\x59\x75\x88\x63\x58\xc0\x82\x77\xda\xd4\xb7\x51\xb9\xb0\xaa\ +\x5f\x40\xde\x1a\xac\x2c\xb4\x99\x7a\x88\x7f\x81\x54\x11\xef\x84\ +\xc9\xa1\xcd\x9c\x45\x31\x2a\xa0\x12\x01\x63\x88\x8f\x23\x53\xfa\ +\x6c\x69\x48\xb8\xc4\x36\xf5\xcf\x34\xea\x6d\xd7\x81\x70\x89\x01\ +\x8b\x81\x32\xae\x53\x05\x09\x8a\x3c\xd1\x96\x80\xf0\x43\x0b\xff\ +\xd2\x46\x0a\xcb\xe8\x35\xd2\x18\x31\xb5\x63\xab\xaf\x80\x09\x4b\ +\x09\xe6\xf3\xcb\x2c\x16\x3e\xf7\xb4\x56\x79\xbe\x01\xfb\xe7\x1a\ +\x6d\x92\xee\xd3\x34\xce\x5b\x8f\xf2\x88\x7b\x13\xf7\xc9\x33\xd5\ +\xde\x6d\x63\xc9\x5c\xa9\xfb\xa9\xcb\x78\xc7\x53\x6b\x01\xf7\x25\ +\x66\x60\x9f\xff\x46\x82\xf2\xa8\x8f\x75\xc4\x40\x7b\x52\x5e\xa9\ +\x71\x97\x6a\xe3\xd9\xe5\xaa\x3d\x59\x5d\xb4\x67\xa7\xe7\xed\x87\ +\x17\xeb\xf6\x6c\xef\xb0\xb5\x0f\xde\x69\x27\xbf\xf2\x5e\x7b\xf3\ +\xd7\x7f\xa1\x3d\x78\xed\x51\x3b\x3a\x38\x51\x12\x06\x2e\xc8\xb5\ +\x68\x07\xda\xcf\x0c\xe0\x2c\xb5\xee\x9c\x97\x58\xfa\xe0\x0e\x7e\ +\x92\x63\x80\x87\x41\x25\x06\x7c\x98\x30\x63\x72\x8d\x73\x0e\x3d\ +\x7c\x7d\xce\x55\x1c\xdc\xe7\x63\x9d\x87\xe4\x40\xc7\x2e\xee\x9c\ +\xf8\x73\x4c\x54\x5c\xf9\x53\x38\x69\x07\xb9\xe3\x53\x8e\x51\xd6\ +\x22\x7c\xb2\x0d\xde\x5a\xe9\x13\xf1\xa4\x0b\xcc\x31\xbd\x6d\xc5\ +\xe7\xf5\x4b\xc8\xfa\xc1\x51\xe7\xf6\x90\x03\x73\xa9\xf5\xc5\xd5\ +\xb6\xf4\x35\x56\xb6\x8c\x2b\x9f\x22\xfc\xb4\x27\x75\x34\x0d\xfb\ +\x7b\x18\x04\xf2\xce\xbe\x8b\x86\x3c\xcf\x23\xdc\x48\xf3\x82\xee\ +\x5f\x59\x1a\x37\xe5\x8b\x6c\x8b\xf2\x1f\x7d\x6b\x3b\x8e\xbc\x68\ +\x5b\xce\xcd\x1c\x15\x77\x17\x6d\xd9\xdf\x1d\xf1\x35\x41\x2f\xfb\ +\xa8\xf8\x9d\xba\x3f\xe3\xe3\x65\x19\x5f\x2e\x5a\x46\x56\x71\xfd\ +\xf2\x45\x03\x3d\xfb\x1b\x70\x1b\xf0\x45\x4f\x9e\x25\x62\x07\x8c\ +\xeb\x1f\xed\xa8\x3c\x94\x6e\x0f\x5b\xbf\x46\x5a\x2f\x3c\x73\x95\ +\x9f\x0a\x2d\x93\x60\xcc\x1c\x9f\x1b\xfe\x6b\xcd\x06\xe3\xd1\x3e\ +\x54\xfa\x5b\x95\x03\x77\x78\xd4\xe3\x5c\x7d\x5d\xe0\x60\xd2\x22\ +\x91\xb6\xf5\xb5\x27\xc4\x42\x8e\x1c\x71\xe1\xd5\x4e\xd8\xbf\x69\ +\x4b\x5d\x9b\x0e\x96\x37\xfe\x9f\xa3\x6f\xff\xe0\x7b\xed\x9f\xfd\ +\xcb\x3f\x6a\x3f\xfc\xf0\x7b\xed\xf8\xf8\xbc\xbd\xfb\xce\xbd\xf6\ +\xd6\x5b\x27\xed\xfe\x3d\xce\x61\xd5\xc3\x7f\x21\x71\xee\x3a\xb5\ +\x1b\xe2\xfa\x82\x38\xbf\x41\x59\xe8\xdc\x55\x5d\x9c\xd9\xb6\xe0\ +\x1a\xe2\x8c\x88\x34\xec\xeb\x81\x23\x67\x4b\x48\x55\xd8\x89\x78\ +\xb0\xb0\x06\x95\x4f\x90\xd0\x0e\x84\xd7\x4c\x15\xf5\xfa\x44\xb4\ +\x1b\x99\xcb\x65\x5c\xc7\xe0\x58\xe2\xba\xe3\x4d\x25\x7d\x5f\x02\ +\xfd\xc5\x59\x9f\x2d\xa9\xda\x51\x14\xe1\x5a\x7a\xbb\x24\x90\x4e\ +\x3d\x4e\xbc\x44\x28\xab\xf9\x31\x28\xbd\x7b\x90\x04\x6f\x24\xe8\ +\xc7\xcf\x36\x12\xc7\xcd\x9c\x22\x57\x5c\x9f\x9f\x4f\x53\xcd\xf2\ +\x4e\xe7\x6a\x49\xa8\xb7\x33\x60\xaf\xb8\x99\xd5\x4a\x59\x26\x9a\ +\xf9\xcd\x4c\x89\x96\xf1\x56\xc2\x2f\xa6\xbb\xdc\x73\x77\x6e\x38\ +\xe8\xfc\x42\x77\x1b\x74\x00\x79\x7f\xeb\x25\xee\x63\x9d\xe3\x3f\ +\xfd\x39\xd3\x66\xa1\x49\xf1\x74\xa7\x43\x23\x9e\x38\x44\xbf\x48\ +\x4d\x8e\x8d\x15\x49\xd1\x47\x6e\xc6\x04\xe8\x86\x24\xa1\xab\x6c\ +\x9c\x70\xe5\x45\x4c\x59\xc0\x20\xd7\xa5\x15\xad\x57\x80\xe4\x68\ +\x6d\xa1\x7b\xac\x95\xae\x69\xa7\x8f\x57\xed\xd9\xd9\xba\x9d\x3f\ +\x3b\x68\x0f\x0f\x1e\xb4\x37\xdf\x78\xbd\xbd\xf1\xfa\x1b\x6d\x79\ +\x70\x4f\x7d\x40\xf5\x89\xae\x97\x6d\x9f\xff\x49\x53\xff\x88\xc9\ +\x68\xf7\x37\xb2\x9f\x53\x7d\x9f\x38\x87\x28\x29\x2f\xf0\xad\x7e\ +\x04\xd7\x18\xbe\xb0\x34\xc9\x1d\x87\xd3\x2e\x64\x5e\xd2\x23\x3f\ +\x5b\x02\x3c\xf5\xf4\x9b\xc5\xa9\xc8\x90\x3e\xc1\xeb\x65\x39\xcb\ +\x98\x1b\x1c\x2d\xec\xf3\x3c\x96\x37\xfa\x57\x14\xe7\x2e\x7b\xc5\ +\x90\x65\xd4\x13\x93\x80\xe7\xdc\x1f\x5d\x32\xc7\x93\x2d\x85\xb1\ +\x84\xa5\x6c\xdd\x1c\x4a\xa9\xd4\x81\xd8\x32\x1c\x49\xd1\x2d\x63\ +\x11\xfb\x73\x9b\xef\x44\xcf\x35\xee\xe8\x4b\x4a\xbb\xbd\xba\xa3\ +\x1d\xbd\x3c\xda\x4d\xa8\xed\x68\x47\xaf\x30\x7d\x29\x4e\xfe\x17\ +\x69\x64\xf6\x0b\x7f\xf6\x94\x8d\x10\xf3\xed\x8f\x55\x6e\x70\x90\ +\xcb\x36\xe9\x86\x4a\xb7\xbf\x64\x0f\xce\x24\xc6\xdd\x99\x07\x48\ +\x64\xee\x03\x32\x53\xe1\x65\x6e\xbf\x09\x43\xb4\xac\x58\xf8\xe6\ +\x84\xda\x9c\x67\x7d\xbe\xc3\xcb\xc1\x17\xc7\x4d\xf5\x4d\x83\x41\ +\xdc\x30\x0e\xb1\xd7\xf9\x27\xff\x03\x5e\x4f\x9d\xf5\x01\x78\x70\ +\xe7\x8f\xbc\xe8\xe6\xd6\xc1\xaf\xfd\xd3\x6a\x35\x68\x04\xe6\x1c\ +\xfc\x3c\x9b\xeb\xa5\xb0\xfa\x34\x30\xe3\xf8\x0d\x7e\x9c\x1d\x10\ +\xdf\xac\x66\xfb\xf0\xc4\xda\xf2\x66\xbf\x9d\x1c\x1e\xb5\x93\x87\ +\xba\x09\x5b\xee\xb7\x8b\x27\x9f\xb6\xef\xfe\xc1\x37\xdb\x0f\xbe\ +\xf9\xa3\xf6\xec\x0f\xbf\xd7\x96\x8f\xcf\xda\xbd\xc3\xeb\x76\xc2\ +\xdf\x82\xe8\xe6\x70\xa1\xe4\x0b\xff\x17\x40\xd4\xe3\x9b\x1d\x0f\ +\x1a\x23\xc3\x2d\xf0\xce\x9b\xcb\xa4\xb8\x9b\x99\x6e\x6a\xe2\x4d\ +\x4b\x4c\x8e\x15\xef\x03\x3e\x2c\xa0\x31\x0e\x1b\x75\xd6\xa0\x33\ +\x2f\xb0\xb2\x51\x2c\xa4\x6e\x2f\x51\xfa\x9b\x52\x34\x63\x11\x41\ +\x93\xce\x8d\x9a\x5a\x45\x1d\xf1\x44\x1b\xeb\x27\xd3\x52\x99\xf3\ +\xc6\xb6\xff\x54\xa4\xf3\xc2\x73\x3d\x7a\x1e\x2d\x6b\xc5\x66\x54\ +\x0e\x03\x6d\xf5\xdb\x46\x9b\x81\x5f\x4c\xa4\xee\x51\x63\x93\x86\ +\x3a\x6d\x4f\xa7\xcd\xa6\x84\xad\x67\x90\x5d\x1e\x7a\x7b\xf5\x6a\ +\xa0\x21\x07\x0c\xa6\x8a\x44\x40\x3a\x38\x3c\x11\xc8\xe6\xb4\x43\ +\xd1\x28\x4f\x34\x43\x39\xb0\x66\x24\xbd\x6f\xd3\xb0\x79\x49\x9d\ +\x9b\xae\x9d\x06\x3f\x91\x5d\xef\xf4\x0d\x9a\x47\x0c\xd2\x18\x27\ +\xd9\xe7\x28\x98\x38\xa7\x94\xaf\x17\x3e\xb7\xca\x16\xa5\x63\x3e\ +\xf7\x36\xb8\xde\x04\xe3\x1a\x3f\xe3\x38\x15\x36\x69\xd7\x21\x71\ +\x6f\xfb\x10\xa2\xb0\x39\xc4\xa9\x7b\x46\x83\x6a\x3b\xbc\xe2\x38\ +\x66\x69\x97\xc4\x7d\xea\xc6\x78\x75\xd3\xae\x84\x5c\xad\xaf\xdb\ +\xd3\xab\xab\xf6\xf1\xd5\x45\x7b\x76\x79\xd1\x3e\x3c\x5f\xb5\xb3\ +\x83\x93\xb6\xf8\xe0\xfd\x76\xf0\xcb\xef\xb5\xd7\x7e\xfe\x6b\xed\ +\xcd\xb7\x5f\x6b\xc7\x8b\x83\xb6\xbf\xbf\x24\x83\xff\x0b\x6d\x6f\ +\xc1\xc3\x17\x8b\xb6\x6c\x8b\xb6\xd0\x79\xc1\x93\x69\xfe\x79\x22\ +\xd9\x18\x9c\xf1\x24\xb4\xcf\x1b\xe4\x78\x22\x8d\x9f\x84\x9c\x7e\ +\x9a\x48\xf6\x9c\x28\x8b\xc1\x1d\xfc\x38\xa7\x38\xef\x54\xa8\x43\ +\x78\xe8\x81\x6b\x91\x78\xfa\x39\x56\x2b\xe3\x92\x36\x7c\x47\xbd\ +\xe4\xc4\x79\x51\x97\x94\xb4\x25\xee\x73\x3a\xfe\x6b\xa4\xc7\x14\ +\x2e\x1e\xf5\x04\x06\x2f\xbf\xc9\x37\xb7\xf3\x2d\x5b\xda\x9d\x47\ +\x55\xa7\x0e\x3e\xe6\xac\x7a\xe6\x71\x83\x4e\xb0\x65\x89\xc8\x9d\ +\x42\xae\xd3\xd2\xbb\x5b\x4b\x72\xfb\x98\xfc\x42\x1a\x73\x7d\x01\ +\xfd\x18\xae\x5f\x49\x1a\x37\xe7\x8b\x6e\x8b\xd8\x21\x73\xda\xdc\ +\x2d\xd8\x0b\xbb\x4b\x36\x65\xb2\xca\x67\x55\x8b\x84\x27\x83\x68\ +\xdc\xf7\x79\x41\x80\xc5\x35\x21\xae\x05\xd6\x0c\xa2\x97\xac\xcf\ +\x77\xac\xee\x4f\x20\x71\x91\xa2\xcf\x91\x7e\x83\xdd\x5f\xf4\x11\ +\x07\xf7\x14\x97\xf5\x28\x52\x42\xb6\x6f\xc8\x31\x49\x35\xb7\xf5\ +\xbe\x4e\x61\x99\x2f\x30\x6c\x61\x77\x8c\x7d\xa4\x2b\x4f\x6f\x8f\ +\x5e\x91\x2f\xf3\x10\x5f\xde\x76\x49\xac\xec\xc6\xa7\xe2\x3e\xd4\ +\x68\x53\xff\x28\x9a\x49\x9f\x8d\x73\x68\xed\xff\x92\x74\x1f\x6b\ +\xbc\x40\xb3\xa9\xb9\x80\x83\xe9\x5c\xbb\x7f\x74\xd4\xf6\x17\xeb\ +\xf6\xf1\xe3\x27\xed\x9b\x7f\xf4\x27\xed\xdb\xdf\xf9\xa8\x7d\xfc\ +\xf9\x87\xed\xe0\xfe\x45\x7b\xef\xed\xe3\xf6\xc1\xdb\x0f\xda\xf1\ +\x11\xf5\xad\xb2\xed\x4a\xe0\x7c\x50\xea\xce\xcd\xd9\x0b\xe9\x5c\ +\xef\x08\xd7\x56\x78\x50\x45\x15\x05\x1e\xde\xbd\xef\x45\x1d\x46\ +\x44\x43\x6c\xa7\x70\xdf\x62\x18\x21\x39\x58\xd1\x62\xe6\x1f\xb9\ +\xa1\xf2\x8d\x9f\xd7\x8e\xba\xb9\xbc\xf5\x7e\x82\xc8\x97\x56\xd9\ +\xf3\x12\xe7\xeb\x7c\x60\x93\x4f\x55\xb1\x9d\xaa\xbe\xba\xfe\xdd\ +\x4d\x36\x6b\x31\xb5\x30\x28\xc2\xe6\xc1\xec\xef\x71\x2b\xff\xeb\ +\x12\xf9\x9c\x6a\x46\x95\x7f\x3b\x55\xcd\x9d\x0f\xdb\xad\x83\x66\ +\xce\x7e\x9b\x0c\xca\xa9\x1f\x4b\x22\x8b\xa1\xb3\x8c\x14\xf8\x00\ +\x4c\x88\xad\xc6\x42\xdb\xa4\xf2\x2c\xf3\xa6\x6b\x65\x81\xc0\xcb\ +\x7f\x93\x5c\xa5\x4a\x1c\x92\x1c\xa3\x70\x28\x05\x19\xb0\xb9\x7f\ +\x24\x88\x6d\x10\x67\xb1\xc8\x31\x13\x79\xfb\xe0\xe3\x93\x94\xdb\ +\x19\x78\x9d\x33\xd0\x20\x8d\xdb\xd2\x24\x5b\x9a\x83\x91\xc8\x82\ +\x88\xed\x5b\xf6\x8c\xeb\xb6\x89\x6c\xc1\xcd\x82\x16\x7e\xa3\xe8\ +\xa0\x37\xa4\x96\xaf\xf7\xdc\x27\xe2\x3c\x3f\x7b\x76\xdd\x9e\x3d\ +\xbb\x68\x17\xe7\x0a\xba\x3e\x6e\x6f\xbe\xf6\x7a\x7b\xfb\xd1\x5b\ +\xed\xf8\xf0\x9e\xd2\xec\xb7\x9b\x95\x7a\x50\xfb\x07\x6d\xc9\x93\ +\xf9\x4c\xa6\x91\x42\x27\x07\xfd\x1b\xfa\x45\x7c\xf6\x9b\x83\x89\ +\xf3\xb9\xde\xbf\xb0\x84\x4f\xf7\x1b\x7c\x6c\xcf\x38\x4e\x18\xcb\ +\x70\xe9\xbc\x12\x83\x97\x3e\x16\xfb\x0d\x36\x01\xe2\x60\x84\xc5\ +\x7a\xce\xf1\xf0\xbb\x85\xe9\x25\x21\x6d\x51\xf7\xa4\xe3\x5b\x6d\ +\x27\x0c\x39\xb0\xee\x5f\x9c\xd7\x86\x5c\xf5\x04\x37\x1a\xb1\xa9\ +\x6b\x11\x58\xb7\x21\xeb\xed\x1d\x97\x32\x8b\x91\xfa\x7e\x45\x44\ +\xd8\xf8\xb9\xc7\x10\x1c\x6b\x79\x16\xbe\x15\xdc\xd1\x57\x80\x76\ +\x7b\x74\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\x8e\x5e\x61\xfa\x52\ +\x9c\xfc\x9b\x8d\xac\xfe\x5d\xd1\x66\xaf\xe0\xcf\x74\xa5\xa8\x6c\ +\x6c\x40\x56\x2e\x16\x12\x42\x28\x71\xa9\x4d\x39\x71\x63\xe6\x98\ +\x90\x6b\xf0\xa4\x70\x06\x4c\x52\xd7\x0d\x96\x75\x6e\xb4\xd0\xc9\ +\xd2\xfd\x12\xc3\xc7\x78\xe4\xeb\xb8\x4b\xe6\xda\x16\x27\x9b\xef\ +\xdf\xc0\x3c\x89\x15\xd8\xc8\xc1\x6d\x37\x16\xdc\x03\x36\x89\x8f\ +\x03\x53\xfe\x66\x74\xf9\xeb\x55\x6d\x96\xb7\xf1\x1e\xeb\xf4\x4c\ +\xa8\xb1\x5e\xe4\xc2\x27\xb8\x71\xe7\x8f\x78\x06\x88\x9c\xc6\xf1\ +\xeb\xf8\x56\xb4\xeb\xba\xf6\xff\xa3\xb1\x17\x3c\xb8\xbe\x5e\x4b\ +\xe7\xff\xe6\x6e\xda\xe1\x62\xdf\xff\xb3\x76\x73\xb0\x6e\x9f\x3e\ +\x3d\x6d\xcf\xbe\xfb\x9d\x76\xfe\xc7\xdf\x69\x8f\xff\xe0\xbb\xed\ +\xfa\xe3\xab\x76\xb4\xba\x68\xc7\xc7\xad\x1d\x1e\x5d\xb5\xe5\x9a\ +\xd1\x12\xbd\x75\x03\x4f\xac\x6f\x61\xb8\xb1\xd1\x3b\x7e\xae\x4d\ +\xc6\xbc\x09\xe9\x7b\xdc\x37\x35\xc1\xcd\x54\x6c\x97\x10\x2d\x8a\ +\xdb\xd1\xba\x99\xf1\x8d\x15\x0e\xe4\x2c\x2e\xe6\xc1\x22\x39\xed\ +\xe5\x4f\x45\x12\x63\x43\xe6\x67\x90\xa6\xdf\xe8\xba\x3d\xc8\xe2\ +\x80\x25\xd7\x02\xa8\x3b\xb0\x98\x5a\xe2\x7d\x91\xeb\x61\x1f\x72\ +\x71\xb3\xca\x84\x9a\x6e\x56\x17\xda\x5e\x6e\x0b\xc5\x37\xb1\x0a\ +\xc3\x4d\x02\x2d\x73\x9c\xda\xc8\x7e\xc3\x10\x79\x45\x5d\x98\x08\ +\x9f\x19\xec\x64\xcf\xa3\x2f\xb2\x6f\x50\xb9\xbb\x2d\x03\x09\x07\ +\xc2\x3c\x9a\xbc\xbd\x2b\xc6\x6d\xf1\xd6\x30\x3e\x9a\x8a\x6a\x9f\ +\xf5\x15\xd1\xe1\x66\x92\x1c\xd1\x45\x93\xb4\x49\x61\xd1\x72\xe6\ +\xd2\xd1\x8d\x3c\x13\xd1\x32\xb7\x37\x69\x9b\x8f\xd1\x0d\xc3\x2d\ +\x3f\x03\x5a\xa8\xa2\x6e\x4b\x8c\x9f\x10\xb2\xac\xf5\x8b\xf3\x5b\ +\x8a\xf5\xb4\xf3\xf4\x42\xd9\x59\xf7\xb4\xc7\xf9\x08\x9c\x1c\x9b\ +\x73\x38\x2c\x68\xc8\x35\xad\x07\x18\x6b\x8c\x98\x60\xb7\x01\xd5\ +\x71\x1a\xf0\xb8\xfe\xd0\xa8\xc7\xb5\x46\x02\x01\xaa\x0b\x76\x25\ +\xce\x35\xe1\x6c\xb5\x6e\x4f\x2f\x2f\xdb\xe7\x17\x97\xed\x93\xf5\ +\xaa\x3d\x55\xfb\xae\x8e\xef\xb5\xfd\xaf\xbf\xdd\x8e\x7f\xe9\xbd\ +\xf6\xe8\x83\x77\xda\x83\x47\xaf\xb5\xa3\x83\xc3\x76\xa3\x63\x7c\ +\x5f\xf6\xc5\xfe\xd2\xc7\x3d\xe7\xfc\x52\x9c\xff\x59\x8c\x27\xce\ +\x62\xc0\xa6\x06\x81\x24\xf8\x9b\xd3\x1e\xd8\x31\x96\x93\x68\x0c\ +\x18\xe9\xdc\xa9\x9f\x7c\xe4\xdc\xa9\xc1\x1f\x06\x93\x62\x42\x4d\ +\xad\x94\x1d\x99\xe3\x2f\xfc\xc8\x21\x5d\x3e\x50\x0c\x30\xa9\x1e\ +\xde\xae\x2f\x7c\xc7\x01\xa4\x89\x47\x3d\x5a\x18\x2b\xbc\x6c\xe6\ +\xd4\xeb\x93\x3c\xf1\x6a\x93\xf5\x41\x06\x67\x2b\x5a\x0e\xac\xe7\ +\x00\xc3\xd6\xf1\xc4\x32\x5e\x8b\x09\xcb\x3c\xd6\xd3\x1f\x3b\x65\ +\xf4\x75\xae\x6c\x97\xb4\x09\xdf\x42\xec\x97\x3a\x20\xec\x8d\x5b\ +\x1d\x3f\xcf\xa5\xed\xf9\x6e\x91\xf3\x25\x7f\x95\xa9\x36\xe9\x4f\ +\xba\x1d\xb6\xee\x92\x71\xc3\x96\xbc\x59\xd1\x10\xe8\x7d\x3d\xea\ +\x2a\xfe\x8c\x1b\xf2\x6c\xee\x7b\xe9\x81\xe4\x35\x08\x0e\x62\x1c\ +\x0c\x30\xb8\xfb\x4f\x96\xb9\x70\x61\x55\x5f\x82\x8b\x18\x7d\x8a\ +\xf2\x91\x4e\x9f\xc2\x71\xf2\xb3\x8f\x65\x2e\x77\x89\x39\x57\xe5\ +\x25\x55\xc4\xa1\x84\x1c\xdc\xba\xa3\xf4\xd2\xf5\x29\xe2\xc6\x9c\ +\xb6\xc4\x6b\xc8\x1b\x36\xf7\x84\xcc\x3b\x36\x79\xd3\x98\x90\xb0\ +\x93\xdb\x72\x15\x62\x22\x2e\x26\xd6\xb0\x2a\xdf\x9a\x2a\x47\x5b\ +\xf9\x62\x4f\xd9\xdf\x86\x60\x57\xa8\x0e\x7d\xd6\x73\x7d\x3a\x38\ +\x64\x60\x9c\x7e\xda\xba\xfd\xe8\xf3\xcf\xda\x37\xff\xf8\x8f\xda\ +\xb7\xfe\xf4\xb3\xf6\xf8\xd9\x87\xed\xb5\x47\xad\x7d\xe3\xbd\x07\ +\xed\xdd\xb7\x4f\xda\x62\xb9\x8a\x6d\xc7\xf5\x5f\xe7\x78\xee\x40\ +\xe7\x87\x43\x81\x70\x26\x4f\x93\x05\x9c\xfb\xc8\x54\xc9\xc7\xd2\ +\xb8\xbb\x27\xaa\xc8\x69\x09\xcd\xdc\x6e\xc5\x0c\x74\xcb\xa6\x78\ +\x61\xd5\x8e\x6e\x9e\x55\x1e\x75\x40\x75\x79\x2a\xde\x7d\xec\x4e\ +\x8b\xd4\xe7\xf4\x35\x8f\xcb\x20\x9f\x13\xf8\x4a\x41\xef\x31\x95\ +\x71\x5a\x83\xd9\x76\x50\xe1\x70\x77\x37\x30\x65\x93\xb8\x9b\x35\ +\x52\xd9\x3a\xdd\x02\xee\xa4\xf2\x8c\xfa\xe7\x34\x62\x53\x95\x92\ +\x36\xeb\xbf\x83\x1c\x9f\xbe\x53\x1f\x4a\x98\x64\xaf\xf5\x2c\x0f\ +\x8a\x23\xac\xcd\x09\x5f\x02\x55\x94\x88\xe3\xb3\x08\xef\x8a\x32\ +\x2a\xc1\x6e\xc8\xa1\x4e\x44\x9a\x60\x16\xca\xe7\x45\x89\x36\x4f\ +\x7b\x48\x7a\x8a\x71\x3e\x87\xcc\x31\x5b\x54\x22\xb6\xf0\x89\xe8\ +\x29\x83\x08\x05\x47\x6f\xa0\x21\x4f\x3a\x5a\xd7\x06\x9b\xce\x1b\ +\x03\x59\xd2\x5e\x90\x49\x0a\x7a\x48\x41\x16\xd2\x29\xd9\x64\x1c\ +\xc8\x36\xad\xa3\x38\x22\x4d\x62\x8d\xbd\xd6\xc8\xc4\xe9\x92\xc0\ +\xb1\x4c\xdf\xff\xfc\x74\xd5\x9e\x3c\x5d\xb7\x8b\x53\x5d\x0f\x56\ +\x8b\xf6\xf0\xe4\x61\x7b\xeb\xe1\x1b\xed\xc1\xbd\x87\xf2\x51\x3f\ +\xe6\x5a\x07\xfe\xcd\xbe\xae\x17\x47\x6d\xb9\x54\x4f\xca\x7d\x02\ +\x72\x8a\x0f\x5f\x34\xaa\xbe\x4f\xf4\x93\xe8\x43\xc1\xd1\xe9\x77\ +\x45\x3f\x8b\xbe\x53\xd4\x4b\x4c\xc6\x39\x56\x98\x74\x67\x95\x9f\ +\xce\x18\xb7\x37\xa0\xf0\x8d\x73\x0f\x1e\x79\xc3\x9e\x78\xc9\x7a\ +\x29\xd9\x84\x27\x76\xcb\xcf\x85\x7a\x36\x6d\x53\x2c\x2f\x09\x13\ +\x46\x9b\xca\x06\x36\xf8\x53\xa7\xdb\xe8\x98\x0d\x7f\x63\xa1\x07\ +\x4f\x7f\x38\x9a\xb0\xe0\x62\x89\xd9\x2f\xf7\x23\x3b\x2d\x6c\x03\ +\xb1\x6f\x0d\xc6\x59\x84\x44\xfd\xc8\x61\x4c\xb0\xf8\x2d\xda\x0a\ +\xee\xe8\x4b\x4e\xbb\xbd\xba\xa3\x1d\xbd\x3c\xda\x4d\xa8\xed\x68\ +\x47\xaf\x30\x7d\x29\x4e\xfe\xcd\x46\x56\xc7\x6f\xa4\xb1\x67\x50\ +\x9d\xc2\x9f\xfa\xca\x55\x45\x23\x0d\x95\x4a\x74\xf7\xd5\x10\x37\ +\x4d\x29\x8b\x07\x5e\x5c\xef\xf1\x4e\x8a\x41\x0d\xdf\x88\x45\xb1\ +\x9f\xb0\xf0\x8b\x41\x9b\xb8\xf3\x62\x20\x24\xf3\xd9\x2f\x6c\x71\ +\x49\x87\x73\x43\x26\x0c\xdf\x6e\xb7\x25\x7c\xec\x9b\xf9\x54\xa6\ +\x09\xb1\xc4\xfb\xa0\x92\x23\xb2\xee\xc4\x68\x5f\x62\xe1\x0f\x36\ +\xc9\x1e\xa8\xc1\xbf\x72\xc8\x57\x42\xe0\xe8\x8a\xef\x03\x3d\x25\ +\x5f\xf3\xd4\x19\x18\xee\x0c\x6a\x15\x1e\x72\x6d\x13\xe7\x58\xe3\ +\xb7\x12\x97\xee\x81\xff\x2c\xd4\x29\xda\x73\xdd\xeb\x98\x5c\x93\ +\xce\xcd\xd9\xd1\x11\x37\x31\xd7\x6d\x75\x71\xd1\x9e\x7d\xfa\x51\ +\x3b\xfd\xf0\xfb\xed\xd3\x6f\x7f\xd4\x2e\x7e\x78\xda\x16\xcf\xce\ +\xda\xf1\xde\x59\x3b\x91\xcf\x81\xda\xba\xd4\x0d\x8c\x1b\xe2\xc6\ +\x68\x1f\x73\x33\xa2\xc2\x60\x38\x08\x77\x2f\xbe\xd1\x41\xac\xbb\ +\x97\xe2\x23\x25\x46\x1b\x7c\x73\x1a\x8b\x88\x8d\x37\xf7\x9e\xc6\ +\xc3\x55\xdc\xce\x8a\xa9\x20\xec\xf8\xa6\x0c\xc5\x4d\x99\xdf\x6e\ +\x22\x31\xc8\x01\x88\xa5\xdd\x84\xc8\x36\xeb\x0a\x5c\x1a\x40\x0e\ +\x00\x79\xa1\x0a\x3d\xf0\xef\x87\x59\x74\xfb\x46\x5d\xe8\xbc\x4a\ +\x4e\x1d\x19\x56\xa1\x91\x5b\x04\x50\x44\x7b\x6d\x49\x47\x4b\x83\ +\x43\x99\x8b\x6c\x1a\xec\x3f\x11\x29\xa1\x57\x28\xc4\x59\x1d\x9b\ +\xa9\xa5\xdb\x65\x6c\x83\x90\x18\xea\x0a\xb9\xc2\xa7\x34\x5a\xe6\ +\x3e\xbc\x45\xe9\xd8\xfd\x06\x86\x90\xe6\x4e\xdd\x64\xca\xfd\xa3\ +\x45\xf7\x71\xc0\x84\xdf\x22\x1f\x9b\x16\x24\x46\x9b\xa6\xa3\x52\ +\x24\x73\x44\x23\xe4\x71\xab\x05\xff\x5b\x86\x2c\x26\x5d\x0b\x04\ +\xde\x79\xee\xb1\x6a\xbe\x1e\x71\x2a\x71\xdc\xc0\xbb\x8e\x2d\x78\ +\xb7\x59\x04\x40\xb0\x62\xdc\xed\x48\xd8\x83\xb3\x90\x18\x92\xeb\ +\x80\x03\xd9\xe4\x45\x67\xb5\x0e\x7d\x5d\x44\xc4\xb8\x3a\x2d\x18\ +\x6a\x8e\x15\x50\x88\xc4\x73\x9d\xe7\x57\xab\xeb\xf6\xe9\xf9\x59\ +\xfb\x74\x75\xd5\x3e\x39\x3f\x6f\x4f\xae\x8f\xdb\xf5\x6b\x27\xed\ +\xe8\xbd\x77\xdb\xbd\x5f\x7c\xaf\x3d\xf8\xb9\xb7\xdb\xc3\x7b\xf7\ +\xda\xe1\xc1\x81\x8e\xe3\x85\x72\xc7\x36\xe1\x58\x67\x70\x81\x9f\ +\x8c\xe5\x3f\x41\x16\x1c\xe3\x4c\x7c\xf9\x1c\x40\x0e\xde\x27\xcf\ +\xf0\x17\xe7\xa9\x34\xeb\x9d\xc7\x20\x50\x9c\x47\x0c\x8e\xa8\xe4\ +\x44\x35\x31\x5a\x38\xaf\x07\x4d\x7a\xde\xc8\xad\x45\xe0\xc6\xd0\ +\xa9\x0f\x3d\x6d\x60\x0c\xa9\xf4\xd8\x0d\x5b\xc6\x6b\xb1\xc1\xb9\ +\x30\x20\x63\x4f\x99\x78\x36\x9c\xdb\x18\x36\xe3\x9d\x6f\xcb\x13\ +\xf6\x4d\x2c\xd6\xa9\xca\x14\x5f\xbe\xd1\x6e\xc1\xaa\xab\x6c\x33\ +\x4e\x4b\xac\xdb\xcb\xbe\xc1\xb4\xf0\xce\x09\xc6\x11\x0b\xec\x41\ +\xa0\x3a\xd6\x3a\x61\x49\x67\x73\x68\xc4\x9e\x43\x65\x1e\x53\x7e\ +\x41\xc8\x8e\xee\xa0\xcd\xdd\x72\x1b\xd8\xa0\x71\x7f\x25\x71\x20\ +\xf4\xfd\x9b\x76\x1f\x1c\x60\xc9\xd3\x3c\xf3\xea\xd7\x1f\x8e\x14\ +\x5e\x93\x8c\x67\xd8\xb9\xbe\x51\x26\xcc\xfd\x9c\x16\x4f\xd9\xbb\ +\x0c\x3e\xc1\xd3\xdf\xb6\xf4\xe9\x85\x58\x50\xcc\x81\xb9\x0e\x5d\ +\x97\xfc\xb2\x1e\x3c\xf2\x8a\xdb\xa6\x38\x63\x7a\x0d\xf9\x25\x85\ +\x9e\x1c\xcc\x31\x55\xe4\x11\xd7\xc0\xf0\xf7\xab\xdb\x33\xff\x4c\ +\x1f\xb1\x90\xe3\x0b\x4a\x13\xde\xfb\x60\xc9\xd1\x29\x3c\x8d\x12\ +\xe7\xb1\xea\x52\xe1\xec\xe3\x14\x3e\x3c\x58\xb6\x83\xe5\x75\x3b\ +\xbf\xba\x6c\xdf\xf9\xe8\xe3\xf6\xbb\xbf\xff\xbd\xf6\xdd\xef\x7d\ +\xaa\xeb\xef\xc7\xed\xfd\xf7\x4f\xda\xfb\xef\x1c\xb6\x37\xdf\xe0\ +\xa7\x73\xf9\x7f\x35\x6d\x57\xda\xea\x4e\x4b\x6c\x2b\x88\x7e\x4c\ +\x64\x4c\x8a\x93\x7f\xa0\xb9\x6e\x4f\xbf\x59\x6f\x01\x92\x93\xdd\ +\x22\x30\xd7\x92\xc6\xae\x0f\xe4\x43\x0c\xae\x05\x1f\x9b\x68\x71\ +\x1d\x42\xbe\x4d\xfd\xb3\x4b\x54\xf9\xa6\x26\x97\x10\x6b\xea\x5c\ +\x82\xe2\xb2\x17\xfd\x45\xf4\xc2\x1c\x67\xee\x1a\x33\xc6\x50\x2e\ +\xe6\x32\xe4\xfa\x42\xec\x54\xba\x3f\xf6\x2d\xc5\x72\x9b\xef\x17\ +\xd1\xa6\x7f\xb5\x69\x94\x4c\x1b\x2a\x74\xab\x3e\x01\x85\xd9\xbd\ +\x0b\x49\x9b\xba\x94\x3a\x12\xc6\x3c\x76\xd1\x22\x7b\x2d\xa6\x59\ +\x58\xd2\x98\xae\xe4\x8e\x8d\x09\x21\x81\xa3\xff\x5d\x34\xd9\x07\ +\x6f\x9d\x1b\xd6\xf5\xe6\xf4\x88\xf3\x98\xa3\xba\x2a\x09\x3f\x2f\ +\xf1\x8d\x77\x88\xd9\xf7\x0a\x4f\x24\x91\x53\x93\x4c\x39\xf0\xe1\ +\xf4\x30\xd9\xe0\x18\x1f\xa0\x96\x6d\x98\x51\x3f\x7b\x36\x8d\xdb\ +\x7c\x85\xa5\xb7\xa9\x5c\x8c\xc5\x09\x60\x25\xce\x82\x3c\x2e\x39\ +\x50\x7d\x4d\x50\x9f\x48\x07\xae\xba\x38\xed\xe2\xec\xa6\x9d\x9d\ +\x5d\xb6\x27\x4f\xd4\xd7\xba\xdc\x6b\xc7\xcb\xe3\xf6\xfa\xc3\x47\ +\xed\xd1\xc9\xeb\xed\xe4\x50\xe7\xbc\x27\xd2\x14\xbc\xbf\x54\x3f\ +\x8a\xa7\xd3\xf8\x5a\x52\x64\xf4\xa4\x97\x0a\x9f\xdf\xee\x27\xd1\ +\x3f\x10\xaf\xbe\x11\xdc\x3f\xe9\x68\x9d\x2f\x1d\x81\xc9\xd7\xfd\ +\xa5\x92\xc3\x1e\xd7\x25\x4a\xca\x79\x83\x14\x18\xab\x52\xf2\x88\ +\x67\xc9\x3e\x54\xc7\xf5\x42\x16\x7a\x0b\x8b\x18\xae\x5d\x25\x67\ +\x19\xea\x9b\xdb\xc8\xa2\x17\x6d\xd4\xcb\x3e\xbc\xaa\x9d\xe6\x29\ +\x8f\x78\xca\x91\x6b\xc2\x24\x24\x17\x16\x2d\xec\xf5\x75\x1b\xc5\ +\xb2\xc8\xc7\x8c\x3d\xd0\x36\x28\xae\xb9\xc5\xa9\x8d\xb8\xd8\x61\ +\x5f\x44\xe5\xb7\x2d\xef\x8e\xbe\xcc\xb4\xdb\xa3\x3b\xda\xd1\xcb\ +\xa3\xdd\x84\xda\x8e\x76\xf4\x0a\xd3\x97\xe2\xe4\xdf\x6c\xe4\xd8\ +\x0f\xdc\xec\x11\xfc\x4c\x56\x88\x4a\xab\x21\x1b\x0d\x90\xea\x8e\ +\xac\x2e\xb3\xfd\x52\x0b\x4f\xdd\x08\x7a\x0e\xc2\xcc\x6c\x59\x7c\ +\xb7\x85\xdd\x26\x64\x6e\x74\x88\x8b\xa7\xb0\x22\x4f\xc6\xf9\xee\ +\xcc\xc6\x64\x70\xf9\x83\xdb\x87\xbb\xc1\xc4\xed\x23\xa5\x0f\xb0\ +\x44\x4e\x84\x98\x5c\x5b\xf7\xb8\x68\x07\x3c\x73\x59\x86\x87\x1e\ +\xf1\xc8\x99\xcb\xa9\x26\x1d\x3f\xc0\xf0\x0b\xdf\x1a\xcc\x61\xac\ +\x25\x26\xce\x6a\x42\x4d\x76\xe5\x8c\xc9\xb7\xc8\xe1\xc9\x35\xea\ +\x71\x5d\xe8\xc2\xfd\xb3\x8f\xb4\xd1\x09\x3c\x58\x24\xa0\x17\xfc\ +\xdc\x10\xf9\x30\xc1\xc6\x53\x6c\x3c\x07\xb2\x60\x57\x2d\xf7\xdb\ +\x6a\x75\xd6\xae\x9e\x7c\xd4\x9e\xfd\xf0\xa3\x76\xfa\xa7\x9f\xb6\ +\x8b\x0f\x9f\xb6\x83\x27\xa7\x6d\xb1\xbe\x6a\x47\x87\x0c\x1e\xc9\ +\x3f\xbf\x7a\x1a\x03\x4b\x16\x4d\xbe\xa9\x61\x84\x44\xc4\x8d\x1e\ +\x54\xf7\xc0\xf1\x4d\xc0\x20\x4b\xa9\xc3\x58\xdd\xb8\x61\x02\xe0\ +\x1d\x36\x58\xe5\x99\xd9\xe2\xcd\x3d\x55\x81\xa1\xb3\xe4\xbe\x8e\ +\xfa\x6c\x07\xb1\x84\xa3\xa9\x37\x23\x02\xee\x24\xfb\x11\xca\xfa\ +\xf0\x36\x57\x3e\x0c\xd4\xc1\x8b\xfa\xa9\x03\xce\x0d\x1e\x38\x76\ +\xfc\x0c\x79\x19\x76\x91\xb7\x05\x90\x9b\x24\x3c\x65\xc7\x98\x70\ +\x48\x71\x2b\x95\x71\xbe\x4e\x26\x54\x60\x53\xd9\x13\x98\x85\x8d\ +\x71\x3d\x40\x24\x5c\xef\x39\xa2\xe3\x0a\xc1\x71\x08\x5b\xa8\x3b\ +\xcc\x89\x48\x6f\x05\xed\x0c\xef\x5f\x63\x49\x1c\xc3\x29\x6e\x8b\ +\x2d\x22\xae\xef\xcc\x5b\x34\xe1\xce\xc6\xc6\x25\x60\xf4\x75\xa5\ +\x58\xcb\x8e\x5e\x2e\xd1\x06\xd7\xc1\x82\xd3\xc2\x5c\x85\x37\x71\ +\xd8\x84\x5b\xd7\xb9\xe2\x87\x14\xfa\x7f\x9f\x69\xeb\xc0\xf1\xc9\ +\x62\x1d\x22\x87\x08\x95\x73\x84\x53\x2e\x08\xa7\x61\x4b\x24\xcb\ +\x66\xce\xb7\xd1\xe0\x83\x84\x0d\x29\x78\xea\x18\xa8\x8b\x7d\xaa\ +\x3a\x56\x3a\xf7\x57\x40\xeb\xd6\xce\x56\xab\xf6\xf8\xfc\xa2\x7d\ +\x76\x71\xd1\x7e\xb8\xbe\x6e\xe7\x7b\x3a\xcb\x1f\x3c\x6a\x8b\xaf\ +\xbf\xde\x1e\xfe\xfc\xdb\xed\xe4\x6b\x6f\xb6\xfb\xf7\x1e\xb6\x83\ +\x83\x83\x76\xb3\xaf\x03\x54\xc7\x2a\x93\x60\xfc\x94\x23\xd9\x0f\ +\xcc\x63\x40\x67\x7f\xc1\x44\x1a\xc7\x2b\x93\x64\xf0\x1a\xf0\x89\ +\x98\xe9\x89\x34\x06\x9a\x4a\xae\x01\x20\xe4\x28\x31\xf0\xa3\xc2\ +\x53\x6b\xc4\xfa\x84\xc9\xba\xcd\xb1\x73\xbe\x84\xdd\x03\x2a\xd4\ +\xcf\xfa\xa5\xcd\xb2\x4b\xfa\x52\xb0\xd1\xde\x21\xc6\xe7\x54\xe7\ +\xe1\x6b\xbb\xfd\xc2\x9f\xb8\xf0\x61\x95\x2b\x5f\x62\xf2\xed\x71\ +\x9d\x3b\x2a\x38\xba\xeb\x9b\x0a\x7e\xdd\xd6\x71\x30\x54\xe5\xc8\ +\xf6\x61\x66\x31\xfa\x99\x53\xa7\x8e\x8f\x19\xbe\x49\x89\xc5\xd1\ +\xa1\xe3\xa1\x7c\xea\xd8\xeb\x34\xc6\x8e\xb6\xcd\x9c\xd8\x06\xec\ +\x45\xc3\x76\x74\x9b\xc6\x4d\xb9\x6d\xdb\x19\x2b\xa7\xd1\xa1\x68\ +\x5b\xf0\x1d\xe4\xfd\x2e\x3f\xa7\x1b\xe2\x32\xd4\xb0\x8e\x89\x54\ +\xc5\xb9\x9e\xa1\x6d\xe3\xd1\xbf\x70\x14\xb2\x5f\xd5\xcf\x09\x9b\ +\x7d\x4a\xce\x7e\x84\x23\x86\xd8\xfe\xc5\x20\xe2\x9d\x8a\x3c\x71\ +\x01\x2d\x3f\x9b\x2b\x8f\x5e\x00\xbd\xcf\x33\xfa\xe1\xe3\xf8\xc2\ +\x47\x5b\xc5\xc1\x95\x1f\x39\xb1\xb2\xf9\xa5\xf8\xca\xdd\xe3\xd3\ +\xee\x09\x32\xd9\x3d\xbd\x05\xae\x75\xba\x76\xdf\x0e\x38\xb1\xf4\ +\x8b\xfe\x17\xb1\xda\xa6\xfb\x2b\xe3\xf1\x61\xce\xf9\x07\xc8\x14\ +\xc2\x5e\x5b\x1e\xe8\x1a\x7b\x73\xd9\x1e\x9f\x9d\xb5\x3f\xf9\xd1\ +\xc7\xed\x5b\x7f\xfa\xa3\xf6\xd1\xc7\x8f\x65\x7f\xdc\x5e\x7f\xfb\ +\xb0\xbd\xff\xee\xfd\xf6\xe8\xc1\xb2\x1d\x1e\xa9\x5e\xea\xbb\x52\ +\x1c\xd7\x20\xd2\x69\x0d\xfa\x6e\xbc\x45\xae\xc4\x76\xda\x00\x81\ +\xc4\x27\xac\xd7\x28\x28\xe3\x0b\x0d\x35\xc1\xc9\xcb\xe4\x8f\x21\ +\x51\x59\x83\x46\x5f\x15\xab\x83\x87\xc4\xd0\xb0\x23\x45\xce\x72\ +\x2b\x34\x9d\x06\x60\x4e\xd1\x27\x13\xc7\xa6\x02\xa7\xc4\xff\x41\ +\xa9\xf8\x3a\x69\x53\xb7\x5b\xb4\x10\xeb\x9b\xd0\x5d\x55\x38\x66\ +\xfa\xb4\x0c\xda\xe6\xf7\x3c\xea\xfe\xaa\x24\xb6\x57\xb4\x7b\x46\ +\x09\x6d\xb6\x69\x46\x03\x30\xfa\x75\x12\x18\x3f\x2f\x9a\x94\x7d\ +\x04\x2f\x73\x9d\xbd\x4f\xed\x32\xf8\xdd\x22\xd9\xbc\xe2\x11\x13\ +\x34\xf9\xfb\x90\x75\xd6\xb2\xab\xd4\x81\x90\x04\x5a\xc8\x14\x99\ +\xf2\xe0\x5b\xfd\x1a\x67\xe1\x7c\x49\x99\xe8\x3a\x22\x4b\xf2\xe9\ +\x42\x7f\xc9\xb2\x96\x55\x7d\xa7\xb0\xb1\x09\x7c\xc9\x49\x5b\xf8\ +\xea\xfc\x10\xe0\x4c\x89\x57\x02\x54\xaf\x8f\x4d\x61\xec\x2e\x5d\ +\x18\x68\xc0\x6e\x35\xc1\x48\x51\xc8\xb1\xa4\x7e\x11\xeb\xab\x00\ +\x7f\x39\x68\x8f\xc9\xb3\xeb\x76\xfa\xec\x46\xe5\xb2\x9d\x9f\xb5\ +\x76\xb0\x3c\x6c\x0f\x0f\x1f\xb6\x87\xf7\x1f\xb6\x07\x27\x0f\x74\ +\x2c\x1f\x2a\x5e\xfd\x9e\x1b\x15\xf7\x9f\x90\xf9\x56\x5e\x7c\xfe\ +\x73\x2c\xd7\xa4\x19\x3c\x9e\x3c\xcb\x7e\x52\xe1\x2a\xee\x7f\xd1\ +\xa7\xea\x18\xe7\x46\xf4\xc7\x90\xc9\x17\x31\x6c\x09\xbd\xc0\x54\ +\x6f\xf4\x33\xbc\x75\xc4\x59\x50\x8f\x85\xc9\x96\x05\x87\xf0\x0d\ +\xdc\xba\xfd\xca\x3f\xe5\x01\x27\xc7\x5c\x9f\x7c\x03\x1f\xeb\xa8\ +\xb6\xa4\x0d\xdd\xbe\xb4\x29\xf2\x14\x2f\xbf\xd1\x27\xb0\xa9\x3e\ +\x09\xc6\x58\xa7\xf8\x32\x66\xe0\xc6\x4c\x25\xab\x68\x9f\x4d\xf8\ +\x40\xec\x7c\x9b\xcb\x16\xbf\xbe\x12\xa7\x0e\x41\x81\x6e\x27\x3b\ +\x25\xdf\xd1\x57\x8d\x76\x7b\x75\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\ +\xd1\x8e\x5e\x61\xfa\xd2\x9c\xfc\xd5\xd0\xea\x01\x6c\xd3\xab\xef\ +\x57\xb4\xa9\xbf\x34\x1a\x2b\xaf\x8a\x8b\x36\x6c\x56\xb9\x41\x09\ +\x39\x6e\x96\x36\xe5\xb0\x97\x8f\x2d\xdc\xb5\x31\xc8\xd2\x71\x06\ +\x3a\x30\x69\x91\x83\x27\x71\x67\x87\x0d\x9f\xb0\x39\x2e\x7d\x80\ +\xa4\xc8\x6d\xca\x61\x1b\x7e\x58\xfd\xd6\x82\x41\x14\x8a\xbc\x6b\ +\x82\xae\xe7\xef\xb1\x11\x53\xed\x62\xe0\x05\xcc\xb8\x30\xb7\x53\ +\x38\x31\x4c\x7c\xc9\x09\x37\xe7\x05\xeb\x03\x46\xf6\x0f\xdf\x1e\ +\x67\x1d\xff\xc4\xd6\x29\xd3\xa6\xe4\x35\x59\x76\xcd\xff\xaa\xe9\ +\xc5\x20\x8d\xfd\xd6\xfc\xc4\x90\x6e\x15\xd2\xc7\x79\xb1\xe5\x44\ +\x5b\xb5\x89\x1b\x58\xf4\x7d\x26\xd7\x14\xc7\xde\x59\x28\xcf\x72\ +\x7f\xdd\x56\xd7\x17\xed\xec\xe9\xe3\x76\xf1\xf9\xd3\x76\xf9\xc9\ +\x27\x6d\xfd\xa3\x67\xed\xea\xd3\xf3\xb6\x38\xbd\x6c\xcb\x83\xab\ +\xb6\x5c\xae\xdb\x91\x6e\x41\x0e\x14\xa4\x5b\x1d\xd6\x6c\xda\xe3\ +\x75\x33\xc3\x3d\x50\x20\x13\xc6\xfa\x8a\x1b\xd7\x22\xb4\x54\x42\ +\x10\xe3\x86\x48\xdc\x3a\x37\x5b\x93\x1f\x37\x47\xdc\xf4\x70\xf3\ +\xc3\x0a\xe0\xcb\xa0\x03\x7f\x86\x1f\x94\xb1\x7e\x25\x59\xcf\x1c\ +\x69\x33\xa9\x7d\xbd\xfe\x84\x0c\x98\x22\x77\x36\xc2\x75\x76\x3f\ +\x61\x91\x47\xc5\xbf\x61\xa4\xa0\xc4\xbc\x88\x7b\x3f\x15\x61\xbe\ +\x01\x06\x4b\x9e\x2e\x81\x89\x57\x1d\x36\x15\xdf\x42\xd5\xf8\xa4\ +\x92\x66\xed\x97\xe2\xe6\x8f\x46\xc8\xdb\x66\x8a\x1d\xc9\x61\x5a\ +\x8c\xd6\x0a\x0b\x49\x96\x1e\x3e\xb7\x40\x3d\xb5\x8e\xc9\x72\x9d\ +\x8c\x2a\xc8\x5d\xd7\x71\x38\x73\x28\x9a\xf4\x99\x44\xc3\x38\xd6\ +\xc5\x72\xc8\x25\x8e\x5d\x57\x34\x7a\x4a\xf6\x31\x4d\x85\x00\x3a\ +\x2f\xd8\xb8\xce\x11\x76\xbb\xbb\xd8\xdb\x14\xe7\x81\x1d\x38\x80\ +\x25\x72\x3e\xc1\xf1\x27\x3e\x75\x15\xfb\x5d\x6b\x6f\xd9\x9f\xfa\ +\xd5\x16\xe4\x34\xb1\x1d\x4a\x37\x59\x04\xb4\x26\x0a\x21\x5c\x12\ +\xec\xb6\x20\x5a\x9f\x47\x9d\xa5\xd1\x1e\x36\x16\x2c\xc3\x46\x0b\ +\x99\xe4\xe3\x57\x5e\xaf\x84\x9f\x5d\xad\x55\x2e\xdb\xe7\xe7\x67\ +\xed\x47\x3a\xaf\x9f\xae\x6e\xda\x29\xcf\x96\xbe\xf7\x7a\x3b\xfc\ +\xda\x5b\xed\xde\xd7\xdf\x6c\x0f\x1f\x3e\x68\x0f\x1e\xdc\x6b\x47\ +\x8b\x45\xbb\xe6\xdb\xd2\x7b\xe2\x7e\x62\x8c\x73\x3f\xff\x23\x4d\ +\xc7\x2a\x03\x39\x1c\x6f\x1e\xf4\xc8\xc9\x31\x9c\x8c\x33\xb0\x83\ +\x6c\x1c\xbf\xb0\xbb\xf8\x27\x1e\xa7\x18\x0f\x06\x0d\x4f\xa4\xf9\ +\x29\x38\xce\x05\xe9\x3e\x3f\x32\x9f\x07\x4e\x3a\x9e\xb2\x38\x6b\ +\xde\xcf\x21\x95\x3e\xf0\x32\xc6\xdb\x1f\x4f\x2d\x2a\xae\xdb\x26\ +\x9f\x51\x76\xac\x73\x50\xc5\x3c\x26\xe4\xd4\xc9\xc7\xd6\x4f\xdb\ +\xc4\x65\x97\xcd\xed\xc1\x23\xf3\xc4\xba\x94\x2e\xd9\x36\x15\x70\ +\xb7\x4d\xb8\xda\x69\x2e\x0c\x61\x96\x57\x14\x7c\xd2\x27\x8a\x6b\ +\x9f\x77\x3f\x21\x12\x18\x24\x9b\x1d\x77\x9d\x2a\x76\xd3\x36\xe6\ +\xc4\xb6\x59\x87\x68\x33\x74\x8b\xcb\x8e\xbe\x80\xc6\xcd\x7e\xd7\ +\xae\xd8\xea\x04\xdd\x72\xdc\x4e\x75\x7c\xd4\xfe\xb7\xaa\x45\xea\ +\x5c\xe9\x80\x42\xe5\x9a\x06\x22\xc5\xbc\xb0\xe8\x4f\x70\x91\x0b\ +\x14\x0c\x0e\x5e\x05\x4b\x5c\x08\x91\xab\x1f\x34\x9f\x40\xc3\x27\ +\x79\x2f\xf8\xd9\x1a\xf9\xe8\x87\x0c\x3e\x11\x97\xf9\xe1\xf5\xea\ +\xf1\x6b\xfb\xf0\xa6\xce\xf2\x89\x77\xf9\xa8\x0e\xfa\x34\x23\xce\ +\x2b\x73\x54\x9f\xcc\xb2\xd7\x01\xab\xfc\x69\x8b\x62\xab\x7f\xe5\ +\xfc\xf2\xed\x5f\x52\xc2\xc7\xf5\xae\xd5\x9f\x22\x7f\x16\xf2\xb8\ +\x4e\xf9\xf8\x1b\x16\xec\x06\xfc\x79\xa9\x1f\x25\xfd\xe8\x68\xd1\ +\x2e\xae\xae\xda\x93\xd3\xd3\xf6\xfd\x4f\x3e\x6f\xdf\xfd\xc1\x27\ +\xed\xb3\xc7\xa7\xed\xd9\xe5\xe3\xf6\xda\x6b\xab\xf6\xfe\xd7\xee\ +\xb5\x77\xdf\x7e\xd8\x16\xcb\x9b\xb6\xd2\xf5\xda\x7b\x29\xdb\x15\ +\xbb\x50\xe7\xbe\x98\xaa\x8f\xcf\x9b\xbc\x1e\x04\x60\x8f\x4e\xf5\ +\x91\x57\x68\xf6\x88\x6e\xf9\x4d\x44\x92\x81\x36\xdc\x50\x5d\x4d\ +\x72\xc8\x2e\x9b\xe9\xb6\xc4\x15\x39\x76\xd3\xbf\x67\x85\x52\xf6\ +\x1b\x59\xad\x76\x7b\xe1\xd8\x85\x4b\x88\x09\x00\x61\xbe\x06\x83\ +\x45\x41\x11\x64\x05\xb6\x49\xe5\xc3\xa6\xb3\xee\xc5\xe4\xb9\x2d\ +\x66\xa4\xd1\x5e\xdb\x20\x28\xb5\x6c\xbe\x17\x92\xd9\x73\x45\xdd\ +\x04\x4d\xf0\x1c\x4f\xea\x66\x0b\xa1\x6d\xf3\xeb\x6d\x1f\xfc\x46\ +\xa2\xfe\x70\xe1\xb3\x00\x21\x7c\xd8\xb6\x33\x6f\x9b\xf8\xbc\xe2\ +\x28\x29\xaf\xd1\x83\x88\xdc\xd6\x2a\x3e\xba\xbd\x11\xf9\x7f\x30\ +\x8e\x4d\xf2\x03\x02\xbb\x56\x24\x2e\x05\x3d\x57\xd5\xef\xa5\x40\ +\xe3\x15\x43\x49\xb9\x28\xea\x23\x07\x4b\x03\xa6\x60\x99\xdf\x1a\ +\xf2\x06\x65\xdb\x2c\x7a\x29\xda\xac\x00\xba\x05\x0d\xb9\x64\x43\ +\xf3\xff\xc4\x06\x22\x92\x8c\xe2\x0f\x59\xd6\x09\x84\xcf\xec\xeb\ +\x76\x79\x71\xdd\x4e\x4f\xd5\xcf\x3a\x5f\xb7\x8b\x33\xad\xf8\x7a\ +\xd9\xee\x1d\x1d\xb5\xd7\xef\x3f\x6c\xf7\x0e\x1f\xb4\xc3\xe5\xb1\ +\xce\x6b\xbe\x8e\x44\x6f\x8a\xcf\x7c\x2f\x15\x1b\x93\x62\xf5\x85\ +\x20\x4f\x88\xd1\x3f\x50\x1f\xa0\x9e\x4c\xab\x3e\x14\x7e\x4b\xb8\ +\xfb\x4a\x11\x53\x3f\xf3\x18\x72\xf9\x55\xde\x3c\x57\xac\x53\x22\ +\x07\xab\x00\x1c\x78\xfa\xbb\x2d\xf8\x56\xbc\x1d\xcc\x9d\xc3\xeb\ +\x09\x27\x0c\xbf\x29\x66\xcc\x61\xbc\xcb\xb7\x73\x45\x29\xff\xa9\ +\x9f\xe3\x57\xf7\x1f\x78\x8f\x0b\x59\x82\xb7\x4f\xb5\xa7\x30\x72\ +\xa1\x53\x8f\xeb\x65\xdf\xa4\x3e\xe7\xa2\xbc\x08\x75\x1d\xe2\x58\ +\x28\xb3\x84\x38\x34\x24\x09\x73\x1d\x89\x6c\xa7\x21\xcf\x8e\xbe\ +\xb2\xb4\xdb\xcb\x3b\xda\xd1\xcb\xa3\xdd\x84\xda\x8e\x76\xf4\x0a\ +\xd3\x97\xf6\xe4\xbf\xab\xe1\x63\x3f\xf1\x8b\xfa\x8c\x2f\x85\xa8\ +\x60\xb3\x5b\x52\x58\x54\xee\x4b\xac\xc5\xe0\x71\xc9\xb5\x10\xf7\ +\x44\xe6\xa5\x8b\x73\x63\x73\x3d\xe9\x31\x90\x22\x9e\xf1\x1e\x54\ +\xc1\x8f\xc7\x33\xec\x96\xbe\xbc\x52\x8e\x81\x97\xaa\x26\xed\xbe\ +\x1b\x8c\x3b\xc2\x31\x06\x2c\x06\x5d\xd4\xd9\xb6\x5f\xf8\xce\xe3\ +\x12\xc7\x9f\xdc\xf8\x67\x1b\x05\x78\x60\x86\x3c\x1e\xa0\x49\x7f\ +\xa0\xc8\x4d\xae\xca\x01\x0b\x9f\x9e\x3f\x63\xd0\x3d\xd8\xc3\xcf\ +\x38\xf6\xb8\xb0\xaf\x18\x70\x42\x4f\x5b\xf9\xad\x19\x00\x62\x3b\ +\xa8\x44\xdd\xb2\xcb\x8f\x27\xd7\xe0\xfc\xbc\x9d\x6f\x90\x33\xd7\ +\x3e\x5c\x98\x27\xd6\xd0\xb5\xad\xb9\xd5\xe0\x0f\xf5\x2f\xdb\xaa\ +\xdd\x9c\xad\xdb\xfa\xe9\xe7\xed\xfa\xf3\x4f\xdb\xd9\x47\xcf\xda\ +\xcd\xa7\xe7\x6d\xef\xc9\x65\xdb\xbb\x3c\x6b\x87\xfb\xeb\x76\x70\ +\xc2\x53\x6b\xd7\x6d\xa1\x58\x53\xed\x7a\xa9\xbe\x99\xf1\x3d\x3c\ +\x3c\xf6\xbf\x7f\xde\x48\xa2\x35\x16\xa2\xb8\x61\x9a\xe4\x7e\x83\ +\x53\x98\x79\x28\xfe\x4f\xb5\x1b\x6e\xac\xa4\x54\x1d\x7a\x53\x8d\ +\x17\xd2\xc3\x33\xa8\xf2\x80\xd1\x42\x37\x23\x65\x44\xab\x8a\x63\ +\xad\xd3\x94\x94\x48\x39\x52\x17\x7e\x92\x53\x8d\xba\x21\x18\xb8\ +\xdb\x82\x63\xc9\xca\x40\x85\xa5\x4b\xd0\xbd\xb1\xb9\xef\x17\xb1\ +\x67\x41\x2e\xdd\xfe\xb8\x99\x50\xa8\x2d\xc4\x60\x21\xf8\xbf\xed\ +\x2c\xa5\xee\x65\x90\x11\x2f\xdc\xd2\x99\x0d\x9a\xe2\xa2\xbd\xec\ +\xbe\x18\x1c\xec\xa8\x8e\x21\x49\xbc\x6d\x0f\xbf\x89\xa4\xdb\xd9\ +\xc6\x69\xbb\xf4\x04\x12\x32\x1e\x62\x00\x92\xd5\xe8\x76\xc7\xdb\ +\xd1\xef\x20\x8e\xd7\xc0\x78\x65\x68\xda\x27\x1b\x71\x9c\x1f\xce\ +\x87\x97\x8e\xdf\xc0\xf1\x43\xf4\x11\x1c\x3a\x30\x95\x76\x19\x4e\ +\x2e\x71\xb9\x58\x48\x9c\x3a\x43\xd6\x22\x4e\x4f\xeb\xa3\x0f\xb9\ +\xbd\x35\x91\xd3\x54\xf2\x6d\x9a\xfc\x82\x26\x3d\xd7\x64\xb2\x0b\ +\xf0\xfa\x4a\xef\xfb\x37\x8d\xfe\x49\x4a\x41\x9e\x00\x97\xce\xea\ +\x5e\x48\x3e\x5f\xad\xdb\xe5\xc5\xba\x3d\xbe\xb8\x6c\x4f\x56\xab\ +\xf6\xc9\x6a\xbf\x3d\x3d\x50\xeb\x8e\x8e\x5b\x7b\xe7\x61\x3b\x7a\ +\xff\xb5\x76\xff\xdd\x37\xda\xf1\x3d\x06\x7c\x8e\xda\xde\x41\x0c\ +\xf0\xc4\xe0\xcd\x52\x89\x63\xc0\x46\xaa\x27\xd3\xa6\x41\x9d\x38\ +\x0e\x2d\x33\x28\xc4\xe0\x05\xb6\xc4\x38\x88\x99\x2c\x63\x30\xc8\ +\x03\x31\x8e\x53\x86\x9a\x50\xe3\x5b\xd9\xfc\x37\x08\x83\xa1\x65\ +\x27\x87\x70\xe7\x76\x0e\x6c\xe1\xef\xc2\x8a\x09\x0f\x19\x9b\x7c\ +\x79\x59\x66\x23\x94\x3f\x58\x70\x82\x82\x63\x56\x02\xfb\x44\x7d\ +\x81\xa7\x6e\x3e\xd9\x2d\x93\x97\xad\x39\xf3\x19\x6c\x33\xff\xb0\ +\x6b\xe1\xf6\x4c\xf5\x4e\x58\xf9\xb9\xa4\x0f\xb6\xd8\x76\xd2\x49\ +\xa7\x17\x31\x15\x6b\x4e\x6c\xe1\xc9\xed\x09\xdb\xa0\xf8\xd9\xa9\ +\x38\x16\xd8\x3a\xf0\x38\x00\x37\x69\x0c\x1e\xed\x0e\x08\xb1\x53\ +\xfa\x8e\x21\x3b\xfa\xd7\xa3\xcd\x4d\x0e\x81\xf5\xcd\x7f\xc7\x3e\ +\x98\xd1\xa6\xcf\x16\xca\xe3\x21\xe4\xbe\x98\x30\x53\x5c\xeb\xb8\ +\x96\x44\x9f\x23\x31\x04\x19\xd4\x33\x30\xa7\x04\xa6\xfe\x00\x2f\ +\xfa\x17\xc6\xa2\x9f\xe0\xfe\x88\x71\xf4\xe8\x33\x74\xdd\x9c\xb4\ +\xf6\x16\x93\x42\xbf\x42\x2f\xb0\xb0\x13\x17\x36\x5e\x13\xce\x52\ +\x6d\x50\xbe\x69\x92\x2e\xfa\x33\xa6\x59\x1c\x18\xb2\x97\xe2\xb2\ +\x8d\xf5\x50\xbc\x8d\xe5\x09\x1e\x8e\x7a\x57\x0e\x78\xc8\x65\x77\ +\xbf\x69\xc0\x3c\xa9\xd6\xb1\xd0\x99\x2c\xf3\x93\xff\xca\x15\xb6\ +\xa8\xcb\x3f\x8d\xa9\x25\x9f\x9b\x8e\xd5\x8b\xd3\x9e\x2f\x1e\x08\ +\x51\x17\xec\xaa\x9d\x9e\x5f\xb4\x8f\x9f\x3e\x6b\x7f\xf2\x83\x8f\ +\xdb\x0f\x7e\xf0\xa4\x9d\x5e\x7e\xd4\xde\x78\x63\xd1\xbe\xf1\x8d\ +\x47\xed\xed\x37\x4f\xda\xd1\xbd\x1b\x5f\xc3\x59\x0f\x37\x56\xfb\ +\x90\xd4\x5c\x3d\xf8\x3f\xcb\x4e\x98\x06\xe2\xda\x11\xde\x93\x29\ +\xae\x1f\xa9\x0c\x64\xfb\x80\x87\xc8\x7a\x95\x5c\x71\x91\x69\xc2\ +\x07\x1a\x80\x99\x6d\x54\x14\xe8\x43\xf2\x56\x70\x65\xa4\x44\x1d\ +\xe1\xac\x4f\x6f\x9c\x79\x7b\x7d\xe2\x33\x9f\x6d\x4b\x1e\x08\xe6\ +\x6b\xaa\x05\x43\x92\xe3\x89\x92\xb8\x44\x63\x4b\x43\xcf\x3d\xe2\ +\xe4\x14\xa7\x2e\xbd\xc6\xb5\x86\x2a\x94\xbe\xc4\x00\xdb\x57\x7b\ +\x3a\x14\xb3\x72\x48\x5e\xa2\xa9\x0b\x26\xf6\xdf\x68\x8e\x88\x59\ +\x40\x68\x56\xa3\x45\x10\x18\x14\xfe\x2c\xb4\x8c\x03\xda\x2f\xb7\ +\x3e\xb7\x57\xf8\x68\x39\xf8\x04\x58\xb2\x7c\x11\x93\x62\xdd\x45\ +\x84\x04\x0b\x5d\x4b\x74\x8e\x3e\xb7\x91\x50\xe3\x22\x72\x80\xf9\ +\xd8\x2e\x08\x07\xfe\x7b\xd8\x5a\x96\xa8\x28\xd6\x27\x11\x2d\xac\ +\x16\x0f\x31\xc8\x82\xda\x83\xad\x83\x23\x65\x5b\xa7\x08\x8b\xa5\ +\x55\xfb\x4d\x83\x4b\x91\xa1\xc4\xa3\x65\x49\x89\xf9\x48\xb0\x21\ +\x32\xc5\xbe\x89\x3a\x29\xde\x56\x6a\x98\xbf\x40\x24\xe4\xf2\x72\ +\xdd\x9e\x3e\xbb\x69\xe7\xcf\x2e\xdb\xd9\x39\x5b\x62\xd1\x4e\x16\ +\xc7\xed\xe1\xbd\xe3\x76\xff\xf8\x5e\x3b\x59\xde\x53\xdf\xe7\x48\ +\x1f\xe5\xd9\x27\x52\x5f\xa8\x26\xbb\x28\xee\x03\x70\xc4\xba\x1f\ +\x84\x0e\xbe\xdf\xff\x63\xd6\xfd\x24\xd9\xfc\x25\xa5\x38\xa8\x85\ +\xf1\xe5\x26\xec\xe4\x83\x67\x2e\x64\xd9\x22\xaf\xda\x67\x5c\x18\ +\xaf\x92\x0d\xbb\xc3\x11\xf5\x1a\x4f\xdf\xf4\xb3\x6c\x3d\xeb\x2b\ +\xac\xec\xc9\xab\x70\xb2\x85\xff\xdc\xa6\xc5\x84\x67\x3b\xaa\x4f\ +\x68\xb4\xdb\x4a\xce\xbe\x60\xe5\x4b\xae\x45\xfa\x57\x1c\x3c\xda\ +\x66\xbb\xb5\xb9\xce\x01\x1e\x39\x25\x57\x3f\x0a\xca\x03\xdf\x7a\ +\x42\xde\xb1\x49\xf5\xe4\x67\x1c\xf9\xfc\x4a\x8b\xf6\xb7\xfd\x06\ +\xa7\x5b\x34\x26\x2a\x79\x93\x9e\x67\xdb\xd1\x97\x81\x76\x7b\x6f\ +\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\x8e\x5e\x61\xfa\x52\x9f\xfc\ +\x7f\x6e\x1a\xbf\xd9\xb1\xdc\x68\x98\x55\x6e\x0e\x53\x91\x10\x97\ +\xdd\xc4\x4a\x2f\x99\x17\x03\x0e\x29\x37\x06\x39\x6c\x67\x70\x63\ +\xf0\x67\x22\xa9\x64\xde\x5d\xce\xd8\xf4\x0d\x79\xc3\x16\x01\xbc\ +\x8d\x31\xb8\xc3\x8d\x24\xb7\x59\xc6\xb8\xa9\x0c\x41\xe6\xf0\xa5\ +\xf8\xa6\x1b\x7f\xb0\x6a\xa3\x6d\x39\xf0\xe2\xb6\xa6\xec\x82\x09\ +\x9d\x49\x2f\xe9\x6e\x52\xe6\x80\xdf\xf2\x57\xa1\x6e\xd7\x9f\xf9\ +\xe5\xb3\xa2\x2e\xf2\xf8\xe9\x35\xfc\xa3\x0d\xfc\x4f\x47\x03\x63\ +\x00\x08\x77\xb5\x90\x6f\x59\xc7\x60\x51\x3c\x8d\xb6\x56\x8e\x3d\ +\xfc\xc5\x9d\x43\x05\x9d\xba\x09\xe2\xa7\x20\xc9\xc7\xa4\x9b\xcb\ +\xd5\x85\x52\x5e\xe9\xc6\xf2\xac\xdd\x3c\x39\x6d\xab\xa7\xcf\xda\ +\xd5\xb3\xf3\xb6\xfe\xe4\x59\xbb\x79\x7c\xd6\xf6\x65\x3b\x58\x5c\ +\xb7\x63\xdd\x45\x1f\xfa\xc6\x26\xf6\x3e\xed\xaa\x9b\x9a\xb8\x79\ +\x91\x68\x16\x98\x29\xf5\x52\x7d\xc3\x34\xe3\xe5\x12\x1e\x2c\xb9\ +\xf9\x99\x06\x62\xc2\xa6\x5b\x2d\xee\xe7\x8c\x63\x42\xaf\x1c\x6c\ +\x63\xf4\xb8\x69\x82\x84\x13\x9b\x9a\xd6\x16\x24\x73\x05\x66\x52\ +\x40\xdc\x66\xc7\xd2\x39\xc0\xcb\x07\x1e\x66\x97\xae\x8e\x76\x2d\ +\xdc\x2e\xcb\xba\x49\x24\x09\xed\x42\x2f\xce\xc0\x19\x6f\x74\x0f\ +\xa2\x95\x5d\xc5\x94\xf6\x14\x4d\xf8\x16\xae\xed\xee\x76\x79\x61\ +\x53\x52\x08\x5e\xa6\x0f\xf2\x9c\x4b\xd2\xdb\x93\x73\x6c\xbb\xc1\ +\x56\x64\xdd\x23\x24\x69\x29\x27\x28\xe5\x82\xe0\x1c\xa3\xdd\x37\ +\x29\xe2\x11\xb4\x28\xd3\x64\x16\x9c\x4a\x72\x96\x7d\xdb\x97\x0d\ +\x42\x54\x89\x73\x44\xd6\xd4\x4d\x96\x31\x06\x9b\x7c\x39\x9e\x27\ +\xbd\xb0\x00\x33\x7f\xaa\x55\x57\xb0\x8c\xd3\xa9\xd1\x63\x0b\x9b\ +\xd6\xd6\x54\x1a\x7c\x24\xe3\x99\xb3\xc8\x6d\x0e\x43\x0a\x53\x9c\ +\xf7\x87\xc8\x7b\x2b\xaf\x0f\xcc\x21\xf3\xb4\x29\xe7\xf7\x6a\x75\ +\xdd\x9e\xad\x57\xed\xc9\xc5\x55\xfb\xfc\xf2\xaa\x9d\xae\x56\xed\ +\x73\xe1\x97\xfb\x87\xed\xf2\xb5\x07\x6d\xf1\xf5\xb7\xda\xbd\x37\ +\x1f\xb5\x07\x6f\x3f\x6c\x27\xc7\x27\xed\xe4\xe0\xa0\xad\x17\x31\ +\xd0\x53\x83\x2c\xf5\x33\x44\x5a\x7a\x80\x26\xbe\x25\xad\x73\xa8\ +\x0f\xd6\xc8\x4d\x58\x3c\x71\xc6\xe0\x50\xc8\xfc\x34\xac\x07\x8a\ +\x18\xf8\x91\x2f\x39\x18\x0c\x72\x3e\x62\x19\x50\x92\x5f\x63\x32\ +\x2d\x6d\xe1\x2f\x9b\x73\x51\x39\x36\x78\xda\x5c\x37\x2b\x0e\x0f\ +\x9f\x98\xa0\x8a\x93\x26\x06\x7a\x12\xb7\x2d\xf0\xd2\xcb\x56\x58\ +\xf0\xf4\x51\x9e\x09\x1f\xfd\xe6\x72\xf0\xc9\xcf\x7a\xb6\xa5\x6c\ +\x12\x12\x0f\x9f\x6e\xe3\x85\xec\xb0\xc0\xc3\x96\xb2\xd7\xa5\xb0\ +\x8c\x19\x74\xe7\xf3\x3e\x07\x83\xa5\x6d\x24\xed\xff\xe9\x67\x73\ +\x63\x30\x39\x4e\x2f\x8e\x8e\x6d\xb4\x11\xef\xa3\x08\x72\x50\x88\ +\xa6\xf4\xdb\x74\xdf\xd1\x4f\x4e\x9b\xbb\xa4\xb6\xed\xad\x5d\x75\ +\x97\x63\xd1\xad\x80\x2f\x26\xa7\xd0\xa2\x1f\x17\x75\xad\x82\x90\ +\xa3\x44\x6e\x26\x8e\x26\x39\xae\x81\xba\xa6\x96\xcc\x64\x91\xfd\ +\xb9\xce\xa2\xd3\x5f\x18\x65\xd9\xd4\x37\x10\x90\x7d\x20\x47\xda\ +\x3e\x15\x77\x40\xf4\x1e\xf2\xa6\x0d\x9e\xa8\xe4\xc8\x1d\xb6\xf4\ +\xb7\x90\xb8\x7d\xa6\xf6\x3a\x77\xf1\xf4\x43\xc7\xc7\x1e\x5c\x37\ +\x2d\x67\xfb\x46\xbb\x0b\xd7\xd2\xa8\xc3\x32\x76\x99\x6b\x42\x8d\ +\xbe\xd9\xda\xfd\x27\xa2\xca\x9e\xb6\x6c\x5b\xc4\xb1\x8d\x42\xaf\ +\x0f\x22\xe2\xfc\x81\xe1\xf3\x58\x9f\xa9\xe2\xd7\x2b\x5d\xa7\x2f\ +\xce\xda\xc7\xea\x2b\xfd\xd1\x77\x3e\x69\x3f\xfa\xf0\x93\x76\x76\ +\xf5\xb4\xbd\xfd\xde\x41\xfb\xc6\xfb\x27\xed\xad\xb7\x1f\xb5\xa3\ +\x23\x6d\xf1\xfc\xc9\x6e\x55\x93\x75\x47\x4e\x65\x8a\x6b\x02\xaa\ +\x51\x76\xb4\x95\x94\xf0\x48\x25\x79\xe1\xe5\x6f\x29\xed\xc9\x32\ +\xc3\xa0\x4b\xe8\x9f\x4d\x33\x9a\xc0\x6a\xc6\xcc\x05\x85\x6d\x50\ +\xf2\x06\x75\x48\xc1\x53\x6b\xd8\xaf\x41\xe4\x84\x7a\x3b\x87\x5c\ +\x36\xc1\xd3\xc7\x95\x8b\xba\xae\x06\x73\x3d\xb4\x23\x65\x6c\x86\ +\x9c\x0c\xe3\xcc\xbe\x00\x13\xa5\x8b\x88\xcf\x97\x94\x58\xf1\x4a\ +\x2a\xee\xef\x6d\xd9\x53\x39\xbc\x51\x90\xc6\xd8\x20\x6a\x88\xb0\ +\xb0\xd0\xf4\x68\xfe\xe4\x89\x14\x2d\x41\x08\x3c\x99\x6d\x3e\x7c\ +\x42\x35\x81\xc5\xe7\x9e\x64\x6f\x26\x5a\xa2\xf6\xcb\xc0\x77\x94\ +\x20\xb3\x6a\x2f\x3b\xae\x27\xa1\x26\x1d\x9b\x61\xb0\xee\x75\xbf\ +\xd9\xe7\xc8\x9d\xd5\x1b\x14\x6b\x59\x00\xf5\x55\xd7\xad\xd6\x03\ +\x16\xed\x00\xcb\x3a\xc9\x59\xba\xde\x95\x83\xfc\xe5\x63\x2c\x09\ +\xd9\xb6\x50\x45\xe4\xd5\x87\xa6\xc5\x6c\xc3\x8c\x84\x55\x5d\x9b\ +\xb4\xe1\x7c\x2b\xb6\x80\x6e\x98\xe7\x89\x7d\x56\xbd\x4b\x3e\x4b\ +\x25\xf9\x7c\x0b\x3f\xfa\x2d\x5c\x6b\x2e\xcf\xd7\xed\x5c\xe5\xe9\ +\xb3\xeb\xa6\x5b\xa0\xb6\xe6\x7f\xd2\x8e\x0e\xda\x7d\x9d\xac\x0f\ +\x4f\xee\xb7\x7b\x87\xc7\xea\xef\x1c\xa8\x1f\x75\xa0\x18\xfa\x54\ +\xea\xff\xb0\x4e\xf4\x51\xc4\xdd\xff\x31\x8f\xbe\x16\xfd\x22\xea\ +\x65\xdf\xee\xf1\x05\x24\x55\x17\x13\x6a\xd1\x47\xf2\x7f\xb3\xc9\ +\x93\xbe\x83\xfb\x5b\xf4\x41\xc0\xe8\x4b\x90\xcb\x7d\x8a\xc0\xed\ +\x43\x73\xc9\x05\xae\x48\x72\xc7\xb1\xce\x7b\xd2\x03\x13\xe7\x55\ +\xf2\xa6\x3e\xfa\xeb\x05\x16\x78\x62\x5e\x17\x61\xa9\x07\xbf\x1d\ +\x33\x61\xc1\xcb\x3f\xf2\xe3\x02\xa7\xed\x69\x87\x97\x4f\xf7\x63\ +\xfb\x95\x0e\x2f\x7d\xc2\xb5\xd0\xf1\x34\xe5\xb7\x2e\xcd\xd4\xf1\ +\x50\x83\x50\x62\x8f\xc7\x61\x11\xfb\xbb\x26\xe7\xb7\x1d\x81\xb7\ +\x69\x96\x70\x83\x22\xf7\x8e\xbe\xdc\xb4\xdb\x83\x3b\xda\xd1\xcb\ +\xa3\xdd\x84\xda\x8e\x76\xf4\x0a\xd3\x97\xfa\xe4\xff\x73\xd5\xf8\ +\xb1\x83\xb9\xa5\x61\x82\xdc\x89\xe5\x72\xcb\x0d\x95\x5d\xe0\x36\ +\x04\xde\xf5\xe0\x73\x99\x3b\x3f\xbd\x3d\xa8\x83\x6b\x0e\x6c\xc0\ +\x19\x91\x18\x72\x85\xef\x14\x1f\x18\x8b\x8a\x49\x5b\x18\x2c\xbb\ +\xe4\x80\x51\x94\xf0\x1d\xfd\x27\x99\x5b\x55\xc9\x9e\xdc\x4a\xff\ +\x71\xf0\x85\x3c\x39\x40\x52\x71\xf1\x13\x8c\x19\x6f\x3c\xd6\x21\ +\x06\x74\xa6\xf6\x56\x3c\xbe\xfe\x99\x47\xeb\xca\xec\x78\xf9\x67\ +\x9d\xc4\xc4\x20\x91\xf8\xaa\x9e\x4e\x23\x2e\x7d\x9c\x23\x9e\x52\ +\x73\xbe\xcc\x53\x3e\x32\x38\x4f\x4d\xac\xf1\xb4\xda\x1e\x93\x73\ +\xd8\x57\x2b\xfb\xec\x5f\xaf\xb4\x8e\xe7\xba\xb1\xbc\xd4\x0d\xe6\ +\x65\xbb\x3e\x3d\x6d\xab\xcf\x9f\xb4\xeb\xcf\x2f\xda\xde\xb3\x8b\ +\xb6\xb8\x5c\xb7\xfd\xf5\x95\x7f\x36\xf2\x60\xc9\xad\x11\x79\xb4\ +\x5e\xb3\x5e\xaa\x00\x6e\x7e\x46\x6c\x50\x42\xcc\x9b\x23\xfc\xc4\ +\x18\x4c\x86\x63\xe3\x26\x28\xdf\xd6\xb1\xe4\x3d\xbd\x65\x63\x28\ +\x25\x4b\x8a\x26\xf0\xb2\x60\x2a\xb9\x9a\x97\xb0\xb9\xb1\x74\x18\ +\x9b\x9f\x10\x0d\x42\x0a\xea\x46\x79\xe2\x6c\x79\x60\x5a\xc0\xbd\ +\x0e\x08\x09\x56\x7e\xbf\xb9\x33\x46\x77\xb9\xed\x37\xb5\x67\x10\ +\xc4\x90\x42\x0d\xa5\xfb\x98\x42\x31\x46\x02\xee\xc1\x25\x4c\xeb\ +\x33\xae\x9b\x96\x16\x6a\x05\x82\x66\x76\x13\xc7\x8d\x64\xbb\x65\ +\x2e\x9b\xca\x0e\x71\x4c\xa5\x88\x47\xca\xe1\x1d\x9e\xb6\x53\x2a\ +\x8c\x63\x11\xae\xe3\x6e\xa8\xca\x32\xc7\x69\x46\x05\x56\xba\x18\ +\x62\x3c\x41\x0a\xa2\xf5\x49\xbd\x6c\x14\xc8\xbb\xc6\x32\x42\x70\ +\xd6\x83\xdc\x99\xd9\x72\xc5\xb1\xb0\x1b\x84\xdc\x15\x91\xe5\xb4\ +\x0f\x78\x35\x7b\xa4\x5b\xd8\x66\x90\x68\xf4\x89\x01\x02\x91\x2a\ +\x64\xbb\x52\xaf\x7f\xd2\x51\xe7\x21\xff\x8b\x76\x71\xb5\x6e\xab\ +\xd5\x65\xfb\xe4\x6c\xd5\x1e\x0b\x7f\xb6\xbf\xdf\xd6\xc7\x27\xed\ +\xfa\xcd\x07\xed\xe0\xed\x07\xed\xf8\xad\x87\xed\xf8\xe1\xa3\xb6\ +\x38\x3e\x6a\x87\x3c\x0d\xb6\xe4\x67\x1c\x75\x16\x72\x7c\xc9\xf7\ +\x80\xa1\x03\x06\x6e\x94\xdc\x13\x5e\x14\xf9\xb0\xed\xe2\xe7\x19\ +\x63\x90\xc3\x03\x1e\x96\xf1\x5d\xf0\xc8\x85\x7d\x99\x78\x93\xc1\ +\x18\x63\x3a\x9e\x54\xcb\xa7\xce\x90\xfd\xe7\xfb\xc4\xe5\xe0\x4f\ +\x0d\x14\xf1\xb3\x8f\x1e\x38\x21\x37\xba\x79\xda\x5c\x9f\xd6\x99\ +\x5c\xe4\xef\x3e\xc2\x2a\x26\xb9\x75\xe7\x46\x2e\x5e\x3e\x81\xcd\ +\x74\x9f\x57\x73\x7b\xf0\xd1\x47\x32\x7b\x61\x66\x53\x71\xac\x0a\ +\xd6\xee\x3b\xf9\x04\x0e\x83\xe3\x3f\xb6\x37\x31\xf8\xd0\x5e\xc8\ +\x72\xae\xb7\xab\xe5\xc4\x2c\x5c\xc5\x7c\x20\x34\x7e\x92\xca\xc7\ +\x21\x76\x1d\x3f\x0c\xc8\xc5\x79\xb1\x8d\x88\xc0\x36\xcf\x73\x9b\ +\x36\x7c\xbe\xc8\x7d\x47\x2f\x46\x9b\xbb\xa5\xb6\x6b\xe1\xb5\x7b\ +\x3a\xd5\x7e\x18\xc1\x31\x68\xdc\x31\xb3\xc0\xed\x34\xa6\xe2\x98\ +\x49\x11\xb2\xc6\x67\xbe\x51\x5d\xcb\xc1\x7c\x1c\xa9\xf0\x39\x6f\ +\x7f\x5f\x64\x3b\xee\xfe\x41\x15\x5f\xff\xd3\xcf\xa5\x74\xb9\x66\ +\x4c\xe4\x18\xe4\xf2\xd7\xcb\x3e\xd9\xf7\xb0\xcc\x6b\xc3\x2f\x70\ +\x2d\x8d\x4d\x93\x7a\x6e\xaf\x0c\xe5\x6f\x3f\x64\x73\xd9\x2d\xc3\ +\xca\x2f\x30\xfc\xfa\x64\x9d\x7d\xa3\xc4\xcf\x61\xe3\x0b\x9f\x70\ +\xff\xcc\xa3\xf0\x3e\xa1\x26\xbb\x34\xcb\x7d\x62\xcd\xbe\x70\xda\ +\x17\x18\xe4\xda\x88\xcb\xc9\x48\xdb\x85\xe9\x6c\xb7\xcf\xe5\xfa\ +\xb2\x5d\x5c\x5e\xb5\x4f\x9f\x9d\xb5\x3f\xf9\xfe\x27\xed\xc3\x8f\ +\x9e\xb6\xcb\x9b\x4f\xdb\x83\x07\xfb\xed\xdd\xb7\xef\xb7\x07\x8f\ +\x8e\xda\x1b\x6f\x1c\xb5\x7b\x27\x5a\x5b\xd5\x77\xa5\xeb\xfd\xcd\ +\x9a\x5e\x14\x3f\x27\x99\x9f\x6f\xca\xe7\x5d\xac\x05\xb5\x72\x3d\ +\x28\xc2\xc7\x1f\x76\x21\x99\xd7\x04\x4c\x91\x63\x73\x99\x4e\x9d\ +\x22\xb2\x16\xb7\x69\x84\x37\xbb\x40\x3d\x76\x68\x0f\xc0\xad\xfe\ +\x9f\xe4\xf2\x28\xff\x6a\xad\x27\x36\xec\x80\x2e\x59\x2c\x2c\xe2\ +\xb6\x4d\x91\xb7\x25\x91\xaf\x9d\x53\xbe\xca\x61\x17\xe7\x8a\x35\ +\x8f\xed\xd4\x61\xf3\xa2\xd1\x5e\x97\xe2\xc2\x68\x56\x40\x91\x37\ +\xe4\xb0\xce\x31\x48\xc7\x88\x96\xd6\x73\x7d\xa2\x65\x51\x9b\x97\ +\x21\xba\x1e\x2c\x71\x14\x45\x4c\x79\xd1\x4f\xe1\xe7\x06\x43\xb5\ +\xa3\x8b\x8f\x29\xa0\x3c\x76\xa7\xc6\x1a\x95\x15\x5f\x64\xf9\x19\ +\x92\xce\xb1\x8a\x28\x19\x3e\x91\xb4\x04\xcc\x50\xb3\xa4\x2a\xca\ +\xfc\xe0\xce\x0b\x91\x53\xac\x54\xdb\xc2\x0f\xc8\x52\xd9\x92\xba\ +\xfb\x0c\x2f\xef\xe0\xb7\xed\x69\x1b\xb0\xf0\x4c\x3e\x37\x4d\x64\ +\x30\xda\x63\x62\x5b\x96\x0e\x53\xe9\x5f\xc0\x53\xe1\x3c\x5b\xe9\ +\x5e\xe9\xe2\x8c\xff\x47\x53\x9f\xeb\x19\x7d\x2e\xf9\x5d\x1f\xb4\ +\x63\x3f\x91\xb6\x6c\xf7\x8f\x8e\xdb\xf1\xe1\x49\x3b\x58\x1c\xb6\ +\x05\x4f\xa2\xb9\xdf\xc2\x44\x1a\xfd\x20\xf5\x95\x94\x88\x7d\x43\ +\x5f\x80\xcf\x69\x26\xd2\xdc\x47\xca\xcf\x7c\x4f\xa0\x89\xc7\x17\ +\x90\xa2\xcf\xd3\x27\xd4\xf8\x79\x6c\xfc\xe5\x43\xbf\xc1\xfd\x2b\ +\xfc\x90\xc1\xe4\x2b\x21\xfa\x61\xe4\x60\x5b\x93\x53\x31\xe0\x51\ +\x6f\xac\x63\xd4\x15\xc5\x58\xe2\xa3\xdc\x6d\x5d\x26\xc3\x36\x3c\ +\x38\xaf\x8e\x97\xac\x7a\xfd\xca\x36\xb9\xdf\x63\x3d\x0b\x6d\x2b\ +\x59\x36\x4f\x26\xe2\xe3\x12\xf6\x4d\x5f\x79\x99\x6b\x31\xf7\xe9\ +\x38\x44\x3d\xa8\x93\x5f\x90\xb8\xf6\x3b\xde\x76\x28\xf2\x81\x52\ +\x62\x1c\x63\x9e\x4c\xcb\xfd\x1f\x0e\x49\x83\xef\x6d\xba\xd3\x20\ +\x7a\x6e\xe0\x8e\xbe\x04\xb4\xdb\x7b\x3b\xda\xd1\xcb\xa3\xdd\x84\ +\xda\x8e\x76\xf4\x0a\xd3\x97\xfa\xe4\xff\x73\xdd\xf8\x8d\xc6\x49\ +\xf5\x2d\xa7\x61\x78\xde\x18\xa2\x23\x87\x90\xd8\x9c\x23\xfa\xe6\ +\xb0\x6e\x26\x87\xe2\xc1\x0d\xe1\xc8\x9e\xdc\x9a\xe5\x16\x4f\x5b\ +\x8f\xf3\x40\x0d\x32\x6a\xda\xaa\x5e\x4f\x32\xf1\xf4\x56\xd6\x87\ +\xad\x7c\x52\x8f\x9f\x50\xc4\x21\x74\x06\x42\xf0\x75\x1b\x94\xc7\ +\x36\x06\x6e\xa4\x3b\x36\x73\x4f\xb8\x8a\x5e\xbc\xfb\xc0\x0f\x18\ +\xbc\x8a\xeb\x08\x5f\xec\x21\x8b\xaf\x73\x40\xa7\x7e\xf6\xd1\x75\ +\x08\xb3\x2d\x06\x7c\x98\xe4\x8b\xa7\x5b\xf0\x13\xe7\x5b\xd0\xd2\ +\xb5\xa0\xfa\x88\xb7\x5f\xe6\x4d\x5b\xd5\xc5\x13\x6a\xc4\x30\xb9\ +\xb6\x77\x1d\xbc\xf1\x3f\x6d\xab\xab\xb6\xbe\xba\x90\x4d\xfc\xec\ +\xa2\xb5\xb3\xb3\xb6\xbe\xb8\x68\x7b\xa7\x97\xed\xe6\xe9\xa9\xf4\ +\x95\x6e\x56\xae\x75\x93\xc8\xad\xcf\x75\xe3\x6f\xba\x97\xea\xad\ +\x46\x87\x55\x2b\x9b\x72\x6c\x91\x90\x7d\x53\x14\x0e\x22\x6e\x92\ +\xb0\xe9\x36\xca\x1c\xc8\xb7\x49\xa6\xb9\xaf\x28\x6d\xba\xe5\xb2\ +\x8c\x82\x5c\xf1\xdc\x42\x59\xb6\x3d\x70\xbf\xb5\x8e\xf0\x22\xc4\ +\x28\x01\xc6\xcd\xd6\xe0\x42\x6e\x98\x97\x5b\x08\x83\x1b\x2b\x1a\ +\x9d\x8c\x6b\xc1\xc1\x04\x8b\x45\x37\xb1\xb0\x99\x97\x01\xfc\x24\ +\xd0\xf8\xa4\xac\xda\x84\xaf\x6f\x29\x7d\x70\x56\x4c\x38\x94\xdf\ +\xe8\x1f\x37\x9c\x6c\x83\xf4\x0a\xb5\xb4\x89\x89\xb3\x49\x2c\xab\ +\x74\x17\x07\x72\x7c\xa5\xc2\xe1\x01\x94\x71\x23\x4d\x9b\x54\x42\ +\xbc\x55\x78\x5a\x11\x21\x07\x4c\xa0\xaa\x48\x08\xeb\x1d\xe7\x51\ +\x90\x6b\x71\x2c\x0b\x69\x28\xaa\x13\xc4\x56\x31\x56\xdd\xfb\x31\ +\xe3\x60\x71\xae\x06\xee\xfa\x24\x05\x2e\x8d\xf6\xd3\xee\x10\x71\ +\x0b\x5b\xfa\xa0\x8f\xb9\x12\x99\xc9\x1b\x6c\x43\xa0\xce\x0e\xf4\ +\x16\x40\x93\x14\x72\x78\xc3\xd5\x52\x29\x9c\xe7\x0c\x24\x18\xd3\ +\xf9\x77\xa9\xf3\xee\x5c\xe7\xeb\x13\x9d\x53\x4f\x2f\xaf\xda\xd9\ +\xd5\xaa\x3d\x93\xef\x99\xec\x17\xfb\x47\x6d\xf5\xe8\xb8\xed\x3f\ +\x7c\xd8\x96\xef\xbe\xde\x4e\xde\x78\xd0\x4e\xee\x1d\xb7\xa3\x83\ +\xa3\xb6\xd4\xf1\xb2\xf6\x04\x18\x03\x37\x31\x00\xc1\xa0\x07\xdf\ +\xa3\xf6\x37\x9e\x6d\xa3\x60\x13\xb6\x64\x50\x28\x7c\x8c\x31\xb0\ +\x43\x2c\x13\x63\xb4\x07\x7c\x9f\x09\x34\xc9\xb2\x07\xc7\xbe\x97\ +\xdf\xa0\xc6\x46\x7c\x0d\xfe\xc4\xc0\x8f\xe3\xad\xe3\x4f\x5d\x4a\ +\x2d\x2c\xda\x23\xcc\xb9\xb1\x45\xdd\x5a\x84\xec\x36\xd0\x96\xc0\ +\xf0\xef\x03\x47\x69\xeb\x7e\x70\x27\x0e\xcc\x7a\xe6\x41\x0e\x7c\ +\xd2\x83\x57\x3d\x21\x17\x1e\x65\x5f\xc7\x86\xec\x55\x87\x73\xcb\ +\xc5\x0b\x64\x62\x11\xd9\xcb\x61\x77\x7e\xfc\xe5\x32\xe6\x8e\x1c\ +\x0e\xb6\x9f\x94\x6e\xf3\xc4\x18\x76\x70\x96\xd2\xc3\x2e\xd5\xd8\ +\x40\xf8\x8b\x71\x0c\xf2\x73\xb7\x7d\x00\x28\x8f\xd3\xed\x54\x39\ +\xea\x28\xfb\x02\x7a\x01\x97\x1d\xbd\x20\xd5\x6e\xd9\xdc\xa6\x9b\ +\xbb\xc2\x7e\x05\x56\x50\xd1\x88\x65\x90\xa1\x4d\xbf\x2d\xb4\x99\ +\x4e\x31\x93\xca\x75\x0e\x5d\x48\x71\x63\xb0\xfc\xec\x37\x0a\x10\ +\x9f\xff\xd5\xb7\xe9\x7d\x03\xf3\xf4\x4a\x0c\x1b\x9f\xa3\xd2\x6c\ +\x63\x21\xd4\xd7\xb1\x29\x27\xb0\x38\xfd\x10\xbd\xfc\x14\x0d\xa0\ +\x63\xc2\x0f\xae\x85\xed\xce\x26\x95\x7e\x0b\xf5\x5b\x8f\x80\xee\ +\xcb\x2b\xde\xd8\xc5\xab\xbe\xca\x61\x77\x7c\xd3\xbf\xe3\x8a\x28\ +\xac\x26\xce\x0a\xb7\x4e\xdb\x6e\x72\x52\x0d\x39\xfa\x59\xf5\x25\ +\xa5\x8a\xb5\x6f\xe9\x6e\x57\xe5\xc9\x36\x13\xdb\xdb\x46\x3f\x4c\ +\xfd\x27\x5d\x12\xf8\xbf\xdb\x8b\x8b\xcb\xf6\xf4\xfc\xaa\x7d\xf7\ +\x87\x1f\xb5\x8f\x3f\x7a\xda\x9e\x3c\x7b\xaa\xeb\xf6\x79\x7b\xe3\ +\xcd\x45\x7b\xf7\xdd\x7b\xed\xe1\xfd\xe3\xf6\x48\xd7\xf8\xa3\x63\ +\x6d\xa9\xf5\x9e\xbf\x48\x41\x9c\xaf\xd1\xd4\xa1\xfd\x5c\x87\x44\ +\x5c\x37\x50\x92\x27\xf9\xb3\x31\x6d\x61\xe2\x1a\x43\x0b\x37\x68\ +\x72\x1b\xe8\x36\x18\x6a\x44\x7b\x39\xd8\x6f\xc7\x07\x55\x8c\xaf\ +\x59\xa9\x4d\x9f\x91\x48\x92\x05\x63\x01\x9d\xdc\x58\x04\x8a\xd7\ +\x68\x8f\xba\x43\xb3\xde\x03\xc3\x2f\x6c\x16\x92\x17\x85\xbd\xa3\ +\x9b\x66\xd1\x26\x54\x3a\xdb\x98\xac\x6c\x7d\x93\xf4\xb2\xc5\x16\ +\x8d\xb6\x74\x30\xc9\x68\x62\x5e\xdb\xb8\x78\x47\x9b\x7d\xbc\x08\ +\xe7\xda\xcf\xcb\xc9\xe5\x95\xb8\xed\x2a\x7d\xff\x8a\xf8\xdc\x70\ +\x6c\x26\xf5\x17\x8a\x10\xcc\x25\x09\x8e\x9c\x60\xe1\x4b\x8e\x91\ +\xc6\xfc\x04\x78\xdd\x68\x57\x77\xa3\xa5\x66\x1b\x58\x2a\xb1\x33\ +\xe7\x24\x53\x77\x75\xe0\x1d\x34\xf3\xbb\x4d\xb6\x79\xb1\x91\x63\ +\x33\x28\xd7\x61\xd6\xc4\x8a\x49\x80\xd5\xf3\xf6\xb7\x63\x72\x53\ +\x08\xd1\x8f\x91\xa6\xf3\xea\x54\xf7\x2b\xe7\xa7\xf0\xcb\x76\xf1\ +\x8c\xff\x4b\xe3\x0c\x3e\x68\xc7\x07\x07\xed\xf5\x07\x47\xed\xfe\ +\xf1\x71\x3b\x5c\x1e\xb5\x03\xf5\x97\x0e\x16\x47\x7d\x32\xcd\x3f\ +\xf1\xe8\xbe\x16\x4f\x96\xa9\x0e\x15\xf5\x02\xc2\x26\xc9\x93\x65\ +\xb2\xd5\x97\x95\x3c\x81\x86\x07\x76\xed\xef\xe8\x5b\x45\x9f\x29\ +\xfa\x43\xc4\xc8\xcf\xfd\x07\xf2\x4e\x32\xf6\x69\x42\x8a\xba\xd0\ +\x59\x13\x12\x45\xbd\x32\x78\x9d\xa7\x3e\xc5\x16\x3d\x31\xeb\x03\ +\x8f\xbc\xa8\x1c\x88\xe8\x51\x4a\xde\x86\x4d\x3a\xeb\x30\xc7\x78\ +\xd1\xc6\x09\xf3\x9a\x9b\xd7\x3a\x98\x8f\x7e\x65\x37\x36\xe9\x55\ +\x5f\xe7\x3e\x06\x43\xe6\x15\x44\x8c\xd1\xd4\x07\xd2\x2e\x1f\x27\ +\x7b\x59\xc6\x4f\xf3\x22\x6a\x89\x29\x0c\x21\xdf\x49\xcf\x35\xee\ +\xe8\x4b\x4e\xbb\xbd\xbb\xa3\x1d\xbd\x3c\xda\x4d\xa8\xed\x68\x47\ +\xaf\x30\x7d\xe9\x4f\xfe\x3f\x17\x2b\x40\x23\xb6\xf5\x50\x37\x1a\ +\x97\x37\x45\xee\xd0\x86\x20\x11\x39\xb9\xa1\x39\xc6\xcb\x32\x83\ +\x2b\x83\xad\x64\x0f\x66\xa0\x7b\xf0\x23\xf1\x9e\x57\x6f\xdd\x3c\ +\xd9\x0e\x9e\xbe\xb6\xb9\xaa\x09\x37\x22\x5f\xfb\xf4\xba\x18\x28\ +\x09\x3f\xfb\x08\xf7\x0d\x6d\x8f\x81\xcb\x7e\xcd\x93\x5d\x81\x3b\ +\x91\xf2\xd4\x20\x4c\xe1\x2e\x6e\x4b\xe1\x54\x03\x97\x6f\xb6\x3d\ +\xd6\x31\xf2\x7a\x42\x4c\x32\x6d\x99\x06\x76\x22\x87\x9f\x3c\xf3\ +\x04\x1a\x49\x22\x9e\xc1\xa0\xfa\xbf\x34\x7c\xfc\xad\xeb\xd5\xca\ +\x36\x0f\x52\xc9\x97\x18\x7f\x9b\x9a\x7c\xe9\x13\xed\x60\xe2\x2c\ +\xea\x65\x42\x2e\x7e\x2a\x32\xea\x6c\x9e\x5c\x5b\xc9\x89\x3a\xc5\ +\xaf\x56\xca\x7b\xd5\x6e\xd6\x57\xfe\x93\xfd\xbd\xcb\x55\x5b\x5e\ +\x5c\xb4\xf5\xe9\x45\x5b\x9d\x9f\xb7\xbd\xd3\xab\xb6\x7f\xc5\x24\ +\xdc\xba\x1d\xea\x16\x75\x79\xa0\xa2\x34\xfc\xa4\x8e\xef\x8b\xb4\ +\x79\x7c\x9f\x43\xdb\x3b\x80\x18\x37\x3b\xdc\x5a\xf9\x46\x28\x07\ +\x50\xfa\xa1\x24\xcc\xe2\x86\x8e\x2b\x44\x9c\x01\xd2\xf2\x42\x4d\ +\x9b\x59\x2a\x21\x5b\xec\xc4\xed\x1b\xb5\x15\xc5\x4d\xdb\x40\x83\ +\x32\xb3\x8c\x4e\xb5\x3e\x45\x16\x85\xe5\x1f\xc3\x63\xf3\x1a\x16\ +\x0e\xa5\x3b\xb7\xc6\xde\xf6\x63\x3e\xd1\xad\x74\x05\x88\x85\x94\ +\x4b\xb3\xaa\x03\xa0\x2f\xc2\xe6\xb6\x59\x15\x19\x48\x1e\xac\x8f\ +\x47\x15\x09\x0b\x28\x7c\xe3\x78\xad\xb8\xa0\x8c\x0e\xc2\x9c\x62\ +\xf8\xa7\x08\x61\x9b\x01\x41\x3d\x9b\x16\x59\x4b\x34\xb3\x40\xbd\ +\x75\xd8\x58\x0f\x28\xd6\x0d\x3f\x6f\x49\x81\xd6\x31\x52\x50\xd2\ +\x39\x98\x00\xbd\xbb\x1d\x33\xba\x0f\xf9\x18\x68\x8b\x66\xd9\x39\ +\x5d\x72\x19\x4c\x1a\xe7\x7b\xa1\x41\xc4\xcd\x48\x46\xe7\x95\x58\ +\x36\xda\x67\xd9\x95\x88\x91\x83\x85\xce\x3b\x7c\x11\xd7\x92\xaf\ +\x74\xfe\x5d\xe9\x3c\x3b\x5d\xad\xdb\xb3\x4b\x06\x5c\xd7\xed\xa9\ +\x30\x26\xd1\x56\xcb\xfd\xb6\xba\x77\xaf\x5d\xbf\xf6\xa0\x1d\xbc\ +\x7e\xaf\x1d\x3e\xba\xdf\x0e\xa5\x1f\xdc\x3b\x69\x07\xcb\x45\x3c\ +\x69\xc6\xfe\x56\xf1\x80\x8c\x7f\xaa\x11\x9d\x07\xcc\xf6\xdb\x92\ +\x41\x8a\xfd\xa5\xfc\x72\xe0\x85\xc1\x19\x0f\xe6\x88\x7b\xd6\x1b\ +\x5f\x06\x68\x64\x5d\xa4\xcd\xb9\x62\xb0\xc7\x3f\xe5\x08\x97\x3f\ +\x49\x17\x8a\x89\x09\x34\x7c\xa7\x38\xce\x1e\x4f\x9c\x25\xee\xc1\ +\x11\x37\x62\x92\x3d\x70\x64\x5b\xb4\x8f\x45\x0d\x26\x49\x91\x0c\ +\xce\x86\x29\x1f\x0a\x39\x83\x87\x2d\x7d\xd2\x3f\xf4\x68\x5b\xb7\ +\x67\x1d\x33\xac\xfb\x4c\xbe\xb6\x91\x9b\x33\x7f\x8c\x51\x76\x73\ +\x61\xe6\xbd\x6e\x1b\x52\x97\x98\xb1\x65\xeb\xeb\x56\xb9\xec\x9b\ +\xb9\xec\x13\x85\xd7\xc4\x11\xb5\xd8\xa0\x1a\xbb\xe4\x78\xf2\xc4\ +\xa2\x15\xb4\x6d\x74\x3b\xfe\x85\xe8\x27\x0c\xdb\xd1\x16\xaa\x5d\ +\xf3\x45\xdb\xf4\xd6\x2e\xdc\xb6\x4f\x37\x93\xdc\xb5\xdf\x37\x88\ +\xb0\x74\x85\xf5\x41\x77\x2d\xeb\x1a\x67\xc4\x78\x72\x1b\xf2\x33\ +\xdf\x38\x17\xc6\xc9\x5e\x93\x4a\xe0\x76\x35\x56\xba\x7c\xe9\x57\ +\xd8\x97\xb7\x5e\xc4\x62\xb7\x0f\x01\xc2\xe9\x67\x18\x03\xa9\xfc\ +\x99\x0b\xa9\x6c\x2a\xd5\x16\xa7\x46\xe6\x4b\x3f\xb8\x00\x48\x88\ +\xbe\x92\x3d\xac\x87\x0a\x8f\xbc\x78\x19\x24\x96\x7a\xed\x93\xc5\ +\xf9\xc4\xed\x5a\x5f\x30\x72\x2d\xee\xeb\x10\xe6\xfe\x90\x70\x4f\ +\xaa\x89\x83\xd3\x3f\x72\x3f\xcc\x39\x23\x07\x3e\xde\x0e\xce\x4b\ +\xce\xc8\x4f\x12\x78\xd9\x05\xf8\xc5\xa4\x18\xbe\xbe\xe8\x4b\xbe\ +\xb8\x5c\xb7\x0b\xf5\x9f\xbe\xff\xf1\xc7\xed\xfb\x3f\xfc\xac\x7d\ +\xfc\xc9\x93\x76\x76\xf1\xac\x1d\x9f\xdc\xb4\xd7\xde\x3c\x6c\xef\ +\xbf\xf7\xa0\xbd\xa1\xeb\xfd\x6b\xaf\x1d\xf2\xfd\x07\xff\xfa\x00\ +\xdf\x69\x22\x97\x77\x34\x17\x08\x18\xeb\x9b\x14\xb6\xf8\x4c\x8b\ +\x83\x21\x69\x10\x67\xb2\x29\x81\x4d\x7c\xa6\xa3\x8c\x35\x4d\x14\ +\x6e\x69\x1b\x62\xe8\xe3\xd4\x67\x6f\xe8\xb7\xc9\x1e\x36\x8c\x81\ +\xd1\xfe\x5c\x4b\xe7\x88\x1e\x61\x00\x65\xdb\xa4\xc9\x67\x8c\x9e\ +\xa8\xdb\x45\xb6\x64\xae\x22\x5b\xd9\x3f\xa2\xba\xdc\x86\xdf\xdc\ +\x8b\xdd\xd7\x03\xe1\x95\xb6\xb8\x30\x9b\xbd\xaf\xc3\xd1\x75\x4b\ +\xf4\x9a\x71\x7c\x94\xaf\xc8\x6b\xe7\x75\x16\xd7\x31\xe4\x0a\xb0\ +\xcf\x1a\x91\xe4\x58\x79\x82\x55\x43\x38\xee\x32\x26\x26\xdd\x22\ +\xbf\x0f\xbd\x48\x84\x10\x34\x6b\xbc\x28\xc2\x44\x63\x25\x29\x87\ +\xc1\x14\x7b\x64\x83\xb2\x1f\xb8\xd5\x06\xf5\xf8\xf0\x9b\x68\xdc\ +\x13\x49\xb7\x80\xa4\x11\xef\x72\x6c\x83\x92\xef\x6a\x3b\x3e\x0e\ +\xf1\x39\x2a\x5c\xfd\x6f\x77\x4f\x16\x3c\x01\xba\x6a\xa7\x67\x57\ +\xed\xc9\xe3\x75\x3b\x7d\x7a\xd5\x2e\x4f\x95\xf3\xfa\xa0\x2d\xd5\ +\x47\xba\x7f\x70\xd8\xee\xdd\x3b\x6c\x27\x47\x47\xed\xf8\xe8\x44\ +\xd8\x52\x71\x07\x2e\x4b\xfa\x46\xf4\x7f\xf4\xf9\xef\xbe\x0f\x53\ +\x67\xda\x19\x37\xe3\x04\x98\xbf\xc0\xc4\x3e\xa2\x6f\x15\xfd\xa3\ +\x69\x32\x8c\xfe\x94\x5a\x49\x7f\x0c\x5c\xde\xee\x2b\xa8\xf0\x65\ +\x26\xf7\x7f\x1c\x4b\x7e\xe5\x4b\xcc\x7d\xac\x9e\x43\xeb\x82\x5d\ +\x45\x0a\x6f\xb2\x68\x45\x91\x51\x82\x1b\x2b\xb9\xe2\xd9\x1e\x69\ +\x03\x2b\xd9\x1c\x96\x7d\x19\xe7\xb1\x4f\xda\xf0\x61\x49\xdb\x90\ +\x85\x79\xbd\xd3\xdf\x6b\xe2\x76\x67\xe1\xd5\xdb\x17\xeb\x59\x72\ +\xd9\xa6\xf6\x17\xc6\x52\x58\xca\xac\xa3\x71\xbd\xec\x97\x9c\xe3\ +\x6e\xc2\xa0\x58\x5a\xdf\x3c\x1c\xf2\x98\xf1\x7d\x24\xe7\x05\x61\ +\xd2\x9d\x9f\x93\x04\x25\x7d\x66\x71\xb7\xe8\xb9\xc6\x1d\x7d\x05\ +\x68\xb7\x87\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\xed\xe8\x15\xa6\ +\xaf\xc4\xc9\xff\xe7\x62\x25\x68\x44\xf5\x54\xab\x9b\x72\xbb\x61\ +\xbe\xdc\xd6\x25\x37\x65\x6b\xf0\xc1\x56\xf2\xc8\x5d\xf0\xf6\x40\ +\x0d\x37\xb9\x39\x58\x01\x9e\x83\x28\xb6\xc1\xed\xaf\x44\x39\xa0\ +\x61\x99\xbb\xcd\x8c\x61\xd0\x49\x92\xfd\x28\xdc\xd3\xc2\x3d\x90\ +\x83\x62\x3c\x63\x2b\x6f\xfa\x4e\x9c\x0c\x61\xab\xc9\xb1\x6e\xab\ +\x81\x14\xfb\x0d\xc5\x78\x0e\xc0\xd8\x0c\x17\x46\x7e\x0a\xad\xb2\ +\x81\xc1\x9c\xf4\xcf\xba\x3d\xd0\x03\x37\x86\x9d\xc1\x1f\xe9\xab\ +\xeb\xb6\x52\x1c\x4f\x97\xf9\xa9\xb4\x6e\x8f\x01\x22\x38\x13\x64\ +\xf5\xb3\x47\x93\x3d\xb6\x49\xb5\x1d\x5c\x09\xb5\x3e\x4c\x9e\x31\ +\x29\x86\xae\x3a\xe0\xc4\x30\xa1\xc6\xcf\x4b\xaa\xf0\xb3\x90\xf8\ +\xed\xf1\xf3\x90\xf2\xbd\x59\x5f\xb6\xf5\xd5\x65\xdb\xe7\xa7\x21\ +\x2f\x2f\xdb\xcd\xd5\x55\xdb\x3f\xbf\x68\xd7\xa7\x57\x6d\xa1\x9c\ +\x07\x5a\x33\x9e\x58\x3b\x90\x5c\x3f\x0d\xa9\x96\xc7\x4d\x0e\xc7\ +\x4b\x1d\x32\xa3\x6c\x3e\xe9\xe5\xaa\x50\x43\xdc\x5a\x31\x5f\xc5\ +\xd3\x48\xb6\x89\xe2\x86\xaf\xec\xe1\x93\xef\xee\x83\x90\xb7\xdd\ +\x03\x0d\x7e\x2a\x58\xb9\xcd\x83\x18\x3c\xe8\xb1\x49\xf6\x49\xac\ +\xfc\x67\x2e\x5d\x29\x21\xeb\x93\x6a\x44\xaa\x91\xae\x84\x01\xd5\ +\xb9\x12\x2a\xa2\xfe\xb2\x95\x5f\x09\xc8\x14\xc7\x85\xa1\x53\xe8\ +\xde\x0a\xb2\x7b\x4d\x22\xc7\x40\x1b\x21\x26\x7c\x38\x14\x1c\xbf\ +\x19\x00\x61\x1c\x68\x43\xbd\x33\x66\x1b\x0c\xd8\x2d\xe5\x30\xf2\ +\xde\x86\x50\x5c\x57\xd9\x8b\xc6\x76\x4a\x9e\xb5\xc7\x32\xeb\x1e\ +\x78\x98\x86\x65\x88\xa2\x3a\x2e\x6f\x13\x71\xc4\x6f\x52\x61\x70\ +\xcb\xda\x60\xdd\x8f\x5c\x0a\x8c\xe3\x28\xae\x31\xd7\x3a\x0f\x2f\ +\x85\x9d\xe9\xfc\xf0\x53\x68\x97\xab\xf6\x54\xe7\x10\x4f\xa3\x5d\ +\x2c\x0e\xda\xf5\xc9\x49\xdb\xbb\x7f\xaf\xb5\x47\xf7\xda\xe2\xe1\ +\xfd\x76\xf8\xe0\x5e\xdb\x3f\x39\x6c\x27\xb2\xed\x1d\x31\xd9\xc5\ +\xc4\x96\xea\xf0\x40\x06\xd5\x2d\x74\x5e\x49\xc8\xc9\x1c\x26\xd3\ +\xfc\x2d\xea\x05\x83\x32\xe2\x39\x70\x83\x7d\x99\xdc\x03\x35\xe6\ +\xe4\xc1\x87\x9c\x2a\x7e\x9a\x2d\xff\x43\x8d\xfc\x8b\x29\x9e\x9c\ +\xf0\xf0\x4f\xd9\xf1\xb4\x23\xf3\x52\xa7\xfd\x68\x18\xf6\x2c\x9e\ +\x5c\xa3\xad\x2c\x30\xe1\x87\xae\x38\x72\x58\xc1\x27\xe4\xc8\xb7\ +\x81\x11\xe8\x3a\xb5\x29\x87\x38\x4a\xc9\x61\x47\xc6\x0e\xcc\x82\ +\xba\x06\x1f\x73\x72\x2c\x55\x08\x19\xda\x00\x29\xd6\x83\x3e\x86\ +\x23\x8f\xdb\xe1\x84\x88\x48\xe9\x9f\x71\x7d\x1b\xd8\x0f\x58\x4b\ +\x63\x19\x0b\xcf\xa3\x20\xb6\x8d\x6c\xf6\x04\x28\x56\x3f\x01\x96\ +\x67\xa9\x0e\x44\xb2\xf9\xbc\xd8\x76\x40\x76\xca\x04\x3f\x2e\xfd\ +\x84\x61\x3b\x12\xd5\xfe\xa8\x6d\x88\xfe\x45\xdb\x73\xb6\x0f\xef\ +\xda\xa1\x63\x92\xe7\xee\xf4\x39\x0d\xed\x70\x94\xae\x2f\x40\xc8\ +\xee\x4b\x64\xae\x38\x96\x58\xc2\xf5\x79\x6e\xd5\x9d\x00\xbd\x82\ +\x97\x3d\xfa\x1b\xfa\x6c\x07\x72\x9f\x84\xbe\x40\xf4\x73\xf8\x52\ +\x4e\xf4\x15\x22\xeb\x38\xd9\x15\x71\x48\x61\xb7\xbf\xeb\x22\x7f\ +\x60\x76\xb7\x2f\x58\xf8\x03\xca\x4b\x2f\x7c\x03\x73\x3f\x47\x2f\ +\xb7\xd5\x55\x85\x1e\xee\x89\xc3\xba\x0f\x36\x1b\xbb\xec\x62\x59\ +\xf6\xde\x8f\x52\x2d\xea\xbb\xd0\x1e\xbe\xd8\x50\xed\xab\x7e\x11\ +\x93\x60\x31\x29\xb6\xf2\x7f\x58\xda\xd6\xe3\x25\xf3\x93\x7c\xc8\ +\x7a\xb9\x8f\xe6\xf5\x62\x89\x5f\x4c\xc8\xa9\x15\xc6\xfc\x6b\x01\ +\x2a\xc8\xbc\xd2\xd0\x2e\xd5\x57\x7a\xf2\xec\xbc\x7d\xf6\xf4\xb4\ +\xfd\xf0\xc3\xcf\x55\x9e\xb6\xcf\x1e\x3f\xd6\x35\xf4\xbc\x3d\x78\ +\x63\xd1\xde\x7f\xef\x61\x7b\xe7\x6d\x26\xd7\xf4\x19\x70\xc4\x93\ +\xff\x87\x6a\x17\x3f\xc5\xad\x7a\x94\x2b\xd3\x0f\x87\x4c\x60\x9b\ +\x07\x22\x75\x1a\x49\xb8\x8e\x0b\xf3\xee\x2a\xa1\xcb\x41\x5c\xc3\ +\x7a\x7b\xc7\xa0\x0d\x0a\x28\xeb\xce\x34\xa9\x4d\xee\x5b\xe2\x36\ +\x31\xc7\x69\xb1\xcd\x95\x8c\x85\xf7\xe6\xf8\x1a\xea\x16\x9a\x7a\ +\xdc\xd6\x1c\xe1\x15\x78\x5e\x79\x59\xe4\x76\x1c\x29\x7e\x6a\x12\ +\xe3\x98\x05\x6c\x3a\xa7\x20\xfb\xe5\x06\x24\x8d\xaf\xf1\x65\x14\ +\x21\x56\x4f\x6b\x56\x4d\x4f\x1b\x01\xdd\x24\xc1\xfe\x33\x7b\xc6\ +\xba\x82\x8a\x88\xa5\x29\x3b\x2b\xf6\x11\x5c\x13\x4e\xa5\x07\xd5\ +\xe7\xc8\x00\x49\xe2\xe8\xf6\xaa\xce\x68\xf2\x98\x9b\x12\xbf\xe5\ +\x9f\xd0\x16\xbc\x7f\xbe\x89\x66\xed\xd9\xe2\x3b\xa3\xb4\x3b\xa4\ +\xe4\x8a\x29\x3e\xa5\xee\x64\x1f\xad\xff\xcd\x35\x9f\xc3\xda\xae\ +\x02\xb8\x3f\xe4\x29\xd1\xcb\xf3\xeb\xf6\xe4\xb3\x55\x3b\x7b\x76\ +\xd5\x4e\x4f\x2f\xdb\xf9\xc5\xa2\x1d\xa8\x5f\x70\xb4\x3c\x6c\x0f\ +\xee\x1f\xb5\x07\x0f\x96\xed\x5e\x9f\x44\x3b\xd4\xb9\xc6\x44\x1a\ +\x13\x64\x2a\x8b\x9c\x04\xa3\x7f\xe4\xcf\x72\x3e\x9b\x63\x22\xcc\ +\x9f\xed\xea\x3f\xf0\xe4\x13\xfd\x0c\x4f\x86\x71\x43\x92\x5f\x26\ +\xe2\x13\xdf\xb1\xee\x47\xa9\xbf\x21\x24\x26\xe4\x94\x03\x2e\xdc\ +\xfd\x2a\xa5\xe2\x89\x2f\xa9\x8a\x23\xaf\xf2\xf4\xfa\x50\xa9\x93\ +\x12\x36\xcb\x8a\x80\x6b\x99\x36\x3b\xa6\xee\x1a\xdc\xd7\xe0\x15\ +\x6f\xbd\x84\xe3\x13\xf1\xe1\xef\x57\xc6\xde\xc2\x91\xdd\x8f\x11\ +\x97\xcc\xfa\xc5\x17\x04\x03\xf3\x3a\x66\x1d\xa5\x6b\xc1\x5a\x4e\ +\xf9\x28\xac\xb1\xd7\x85\x12\x7e\xa0\xc8\x6c\x93\x99\x6c\x7f\xc9\ +\x03\x77\x7d\xc8\x29\xb1\x34\xd3\xfe\xb6\x79\x2b\xc5\x31\x4f\xd9\ +\xfa\x53\x8f\x36\x84\x78\x9b\xee\x34\xec\xe8\x2b\x46\xbb\x3d\xbd\ +\xa3\x1d\xbd\x3c\xda\x4d\xa8\xed\x68\x47\xaf\x30\x7d\x25\x4f\xfe\ +\x3f\x17\x2b\x55\x3d\xd6\x8d\xc6\xe8\x72\x6b\x84\xcb\x6e\x5d\x7a\ +\xc1\x52\x0f\x28\x70\xb0\x09\xdf\xc6\x19\xec\xc0\x11\x3e\xb7\x87\ +\x2c\x1b\x83\x24\x1d\xbf\xed\xc7\xab\x74\x20\xcb\x0c\xb6\xa0\xa4\ +\xff\x66\x4c\xc8\x51\x77\x0d\xa6\x58\xbf\x9e\xfb\x15\x86\xca\x22\ +\x06\x56\xf4\x56\x9b\x9a\xff\x77\x03\x58\x76\x0f\xe4\x88\xf3\x72\ +\x7b\x03\x67\xd0\x86\x41\x1a\xff\x4c\x91\x9f\x18\xb3\xc1\x79\x18\ +\xfc\xf1\xa0\x16\x3e\x96\x65\x63\xa0\x8b\x27\xcd\x9c\xaf\x7c\x72\ +\xf0\x2b\xfd\x18\x2c\x92\x10\x83\x46\xc4\xf8\xeb\xcf\xd4\x43\xdd\ +\xaa\x07\x0c\x9b\xdb\x4e\xbd\xe1\xef\x9c\xe4\xc6\x1f\x3b\x13\x6a\ +\x57\x0c\xf0\xe4\x04\xdb\x7a\xe5\x9f\x88\xf4\xcf\x43\xae\x2f\xe3\ +\x7f\xd8\x56\x57\xad\x9d\xf3\x14\xdb\x55\x5b\x9c\x5f\xb5\xe5\xea\ +\xba\x2d\x14\xbb\x54\xe8\xfe\xfe\x8a\xdb\x2e\x17\x8e\x12\xdf\x3c\ +\xeb\xee\x28\xc7\x04\x82\x52\x4e\x93\x39\x98\xe1\xbc\x93\x0a\x56\ +\x37\x56\xe3\x0d\x56\x08\xdc\x03\x16\x04\x8f\x1b\x36\xe5\x4a\x90\ +\xfa\x9d\x1f\xa5\x1c\x45\xf6\x4a\x1d\x16\x22\x4b\x79\x4f\x95\x24\ +\xb9\x65\x22\xe1\x69\x9a\x0f\x61\xb0\x67\x95\x31\xdd\xd0\xa0\xcc\ +\x36\xb9\x21\x0c\xa9\x26\x45\x24\xb1\xb7\x29\xfd\xfd\x47\xfa\xac\ +\x80\xc8\x70\xd7\xc3\x21\xc4\x21\x47\xe2\x19\x6e\xb2\x95\xdc\x09\ +\x96\xb7\x73\x51\x84\x67\x15\x13\x81\x77\x31\x94\x31\x27\x44\xac\ +\x31\x1c\xcb\x18\xae\x25\xf6\x65\xb0\x51\x1e\x48\xfa\x26\x34\x12\ +\xf5\x84\x10\x8c\xaa\x46\x7f\xcb\xdd\xa9\xc4\xd4\x3b\xbb\x3d\x60\ +\xb7\x49\x53\x86\xc9\x3e\x72\x1f\x57\xe5\x24\x6e\x4c\x45\xa7\xad\ +\xca\x4d\x3b\xd7\xf9\x70\xa5\x73\xeb\xf2\x6a\xdd\x4e\x2f\x55\x74\ +\x1e\x9d\x6a\xe3\x9e\xf3\xcd\xe9\xc3\xa3\xb6\x7f\xff\xa4\xed\x3f\ +\x54\xb9\x7f\xaf\x2d\x1e\xa8\x1c\x1f\xb7\xbd\xc3\xc3\x76\xb8\xd8\ +\x6f\xeb\x03\x06\x57\xf6\xda\x72\xa1\x8c\x1e\x54\xe1\xb8\x66\x30\ +\x86\x7a\x63\x10\xc2\x83\x39\xb2\x31\x08\x14\x03\x38\x53\xd1\x42\ +\x6f\x26\xd8\x62\xb0\x83\x09\x2e\x9e\x3c\x33\x46\x3c\x72\xc6\x48\ +\xb1\x0d\xce\xcf\x45\xd6\xe4\x9c\x07\x77\x84\xcf\x0a\xeb\xcc\x80\ +\x8a\x6c\x51\x07\x58\xc8\x1c\xab\xb6\xb9\x0e\x38\xcd\xa6\xc1\xc4\ +\x4a\x32\x00\xa7\xb0\xb1\x22\x16\x9d\x93\xb6\xec\x14\xd6\x3d\xec\ +\x70\xa0\x29\xd6\x5c\xf5\x95\xde\xb1\xcc\xe7\x5c\x11\xb4\xe1\x53\ +\x03\x62\xa5\xf3\x4e\x9f\x5c\x37\xcb\x62\xc1\x4b\x97\x0d\x3f\x57\ +\x89\x14\x39\xb0\xd9\xce\xab\xe4\xc4\xb5\xec\xb6\xde\x9e\x22\xc4\ +\x3c\xe8\x38\x0a\x43\xcc\x41\x50\xdb\xea\xa0\xda\x46\x43\x9e\x1f\ +\x87\x86\x3a\x77\xf4\x13\x50\xed\x92\x1f\x67\xfb\xdd\xda\x8d\x9b\ +\xc0\x98\xec\x79\xfb\xfc\x0e\xaa\x7d\x9a\xac\x3f\xa5\x66\x1e\x86\ +\xb8\x56\x97\xac\xcf\x72\x64\xec\xc6\xb0\xd2\x2f\x01\x0f\x8f\xe8\ +\xe3\x0c\xc5\x18\x85\xbe\x0b\x7d\x84\x8c\xb7\x7b\xda\xba\x4f\xf9\ +\x93\x69\xca\x41\x15\xe0\x11\x12\x7e\x46\x6c\x77\x04\xaa\xdc\xa4\ +\xeb\x7a\xe9\x36\xd9\x27\xfd\x8d\xe3\x12\xfe\xe1\xce\x62\x8a\x07\ +\x36\x0a\x66\x1e\x76\xba\x36\xee\x07\xe1\x67\x7f\xfa\x41\xea\x8c\ +\x08\x67\x22\x8c\xfe\x11\xbe\x6b\xfa\x38\xce\x1f\xfd\x24\x74\x4f\ +\x94\xb9\xa9\xd2\xb3\x4d\xd5\x1e\xf2\x46\xbe\xf4\x73\x9d\x53\x1b\ +\xdc\x5f\xb3\x1d\x3f\x45\x44\x40\x5b\xf1\xf4\xd9\xf5\x65\xbb\x14\ +\x7f\x72\x7a\xd6\x3e\xfa\xfc\x69\xfb\xe4\x93\x67\xed\xc3\x4f\x3e\ +\x6b\xcf\xce\x4e\xdb\xe1\xd1\x4d\x7b\xf3\xad\xe3\xf6\xe8\xb5\x7b\ +\xed\xcd\xd7\x97\xed\xc1\x83\xc3\x76\xff\xc1\x41\x3b\x38\x38\xf0\ +\x35\x8a\x9c\x6b\x4f\xf8\xe9\xca\xc1\x35\x67\x3c\x08\x06\x02\xb1\ +\x19\xca\x0f\xa9\xc2\x26\xef\x70\x08\xbf\x72\x2e\x62\x8d\x82\xb0\ +\x38\xd6\x5a\x52\xe6\xf4\x75\xcd\x86\x29\x6b\xa7\x8d\x94\xbd\x3d\ +\xdb\x68\x8b\x6d\x84\x5c\xff\x0c\x18\xea\x13\x6e\x53\xd9\xcb\xa4\ +\x36\x4e\x21\xa3\x34\xb6\xd5\xbd\x34\xf1\x01\xed\xae\x19\x4f\x5d\ +\x12\x0a\x36\x9a\xf5\x83\x8d\xb5\xa0\x75\xea\x6d\x0c\xbb\xb5\x5b\ +\xae\x9b\xd1\x91\xd1\xef\x6e\xa0\x85\xb5\x3f\xc2\xc6\xc2\xbe\x7a\ +\x87\x9a\x71\x66\x21\xd7\xff\xb5\xda\x9e\xe6\x12\x6b\x19\x34\xca\ +\x49\xe9\x0b\x4d\x62\xfa\x0d\xb6\x19\xdd\x85\x9b\x14\x4b\x78\xfa\ +\x98\x8d\xfb\x70\x8c\xbd\x4b\xee\x39\xb4\x50\x2c\xe7\x21\xf7\x3f\ +\x5c\x33\xae\xd4\xbf\x3a\x3f\xbd\x69\xcf\x9e\xae\xda\xd9\x99\x0a\ +\xfc\x19\x3f\x41\xbe\x6c\xc7\xfb\x87\xfe\x0f\xc3\x87\x0f\xef\xb7\ +\xe3\xa3\xfc\x49\xc7\x03\x26\xd1\x96\xee\xe7\x2c\xf7\x0f\xdc\x2f\ +\xa2\x2f\xe3\xbe\x94\xfb\x10\xea\xdb\x88\x47\x9f\x2b\xfa\x4c\xee\ +\x0f\xa9\xcf\x14\xb2\xf6\x09\x7d\x06\xbf\xa6\x7e\x50\xf4\xc9\xe0\ +\xea\x6b\x90\x4b\x2d\xc4\x16\x4f\xa0\x45\x9c\x9f\xee\x87\xa7\x4e\ +\xc7\x22\x62\xc5\x31\xf1\x22\xbf\xfb\x2b\x21\x83\xd2\xb5\x08\x3d\ +\xfc\x21\x20\x82\xc2\xdf\x5e\xe9\xa3\x82\x75\x53\xe6\x25\x7e\x17\ +\xce\xeb\x86\x76\x91\x16\x3f\xdb\x95\x9f\x57\xae\x5b\xf8\x61\xc7\ +\x8b\x36\xa7\x1d\xdc\xb6\x6a\x0f\xbc\x6c\x81\x91\xaf\xb0\x58\x6f\ +\x5b\x49\x96\x18\x62\xd8\x2c\x1b\x0b\x1c\x1f\x8e\x07\x9b\x6f\x51\ +\x9c\xbf\x71\xb8\xa8\x2f\xd5\x9d\x84\x00\x6e\x8d\xd9\xa4\x17\x72\ +\xda\xd1\x97\x9c\x76\x7b\x79\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\ +\x8e\x5e\x61\xfa\xca\x9f\xfc\x7f\x2e\x56\x70\xa3\x11\xdc\x00\xd5\ +\x65\x17\xee\x37\x8b\x28\xb6\x6c\xc8\xf8\x3b\x66\xe0\x25\x4f\x78\ +\x0e\x2e\x58\x16\xe4\x81\x8b\xc0\xca\xde\xeb\xca\xc1\x13\x6b\x39\ +\xc0\x61\xdc\x7e\x14\xf9\x0a\x8f\x98\xc0\xcc\x1d\x8b\xcc\x20\x49\ +\x61\x30\x26\x9a\xe0\x93\x7f\xc4\xa8\x9e\x8e\x13\x9a\x31\xe0\x65\ +\x37\x94\x03\x2d\xb4\x8b\x44\x92\x91\x62\x82\x0d\xce\x20\x96\x38\ +\x13\x6b\x78\x80\xa7\xcd\x03\x44\xeb\xb0\x77\x5c\xc5\x32\x38\xb9\ +\x54\x4f\xfc\x07\x9b\x64\x26\xc6\xd0\x99\x0c\xf3\x44\x5d\xc6\x64\ +\x7e\x06\x85\xa8\xdf\x03\x67\x99\xcb\x7a\xca\xe4\x74\x2e\x3f\x9d\ +\x06\x96\xb2\xf5\x95\x9f\x5a\x13\x68\x9f\xbd\x6b\x26\xd8\x72\xf2\ +\x8d\x27\xd8\xc4\x17\xb2\xef\xeb\xa6\x77\x6f\xb5\xf6\xcf\x41\xb2\ +\xbf\xfc\xfd\x4d\xb8\x36\x81\xef\x95\x54\xe2\x66\x4a\xf5\xb2\xac\ +\x01\x91\x5a\xf8\x1d\x7c\xd2\x11\xbd\x34\x0d\xa6\x20\x09\x75\xfb\ +\x46\x71\x1d\xc6\x7d\xeb\x39\x23\xdb\xe1\xf6\xd1\x0d\x1a\x9c\xb6\ +\x61\xc9\x01\xa4\x91\xca\xb7\x53\xba\x74\x4c\x7a\xf9\x68\x35\x4d\ +\x98\x52\x0c\xda\x12\x6f\xea\xf5\xa5\x43\xc5\x4b\x1d\x73\x94\xce\ +\x92\xad\x36\x6b\x4f\xaf\xd8\x6b\x63\x0e\x59\x9a\xd4\x89\x32\x69\ +\x98\xca\x41\x3c\x07\x66\x82\xa8\x25\x6c\x46\x33\x06\x1a\xc4\x19\ +\x39\x97\xde\xda\xed\x91\xf1\x2e\x47\xe1\x59\xe3\x2d\xe2\x38\xad\ +\x75\xdb\x8c\x47\x1f\x5b\x48\x3d\xe5\xe4\xe5\xb4\x18\x48\x3a\x90\ +\x03\x23\x7a\xcc\xd1\x4d\x5d\x08\xe6\xb5\xa6\x2d\x46\xe0\x1c\x5d\ +\x86\xda\x4a\xe7\xc9\x85\xce\x99\x53\x9e\x42\xbb\xba\x6a\x17\x3a\ +\xd6\x4f\x75\xae\x9c\xa9\xe1\x97\xfb\x8b\x76\xb5\x5c\xb4\x9b\xa3\ +\x83\xd6\x1e\xde\x6f\x07\x0f\x4e\xda\xd1\xfd\xfb\xed\xf0\xf8\xb8\ +\x2d\x0f\x97\x6d\x6f\x29\x9c\x9f\x74\xf4\xa0\xca\x7e\xbb\xe1\xc9\ +\x31\x06\x36\x14\xcb\x39\xc1\x44\x5a\xff\x59\x20\xe3\x0c\x46\x84\ +\xaf\x27\xbf\x72\xa0\x27\x26\xcd\x88\x91\xee\x6f\x5a\x2b\xce\x3e\ +\xc4\xe8\x8c\x13\xc0\x30\x8f\x7f\xba\x91\x3a\x94\xd3\x83\x3c\x4b\ +\x61\xe0\x8e\xc7\x37\x7c\x3c\x39\x56\xba\xc7\x4f\xc2\x5f\x4e\xc6\ +\x11\x89\xe3\xf7\x8d\x0c\x33\x08\x44\xfd\xbc\xa8\xdc\x71\xa1\xe3\ +\xe0\xf3\xdb\x9c\x58\x07\x98\x07\x0e\x96\xb8\xdd\x94\xb7\xd7\x61\ +\x20\x6d\xe0\x9b\x71\x98\xa9\x3b\xe4\x5c\xd8\xde\x7d\x64\x8b\xb6\ +\x49\xd6\xab\xae\x37\x51\x8f\xf8\xd0\x4e\xca\x14\xcb\x76\x12\xc7\ +\x8a\xaa\x3c\x3c\x2d\x51\xfb\xc6\xa0\x92\x91\x06\x99\x97\xb9\xf2\ +\x45\x0c\x7c\x83\x08\xd1\x82\xc3\x0b\xc9\xae\x06\x03\xd9\x4e\x5b\ +\xf2\x6c\xa3\xbb\xdc\x86\x63\x79\x47\x3f\x65\x1a\xb7\xf5\xad\x5d\ +\xba\xb9\x23\x46\x87\x3b\x83\x6e\x93\x8f\x2b\xf9\xc5\x5b\x8b\x8a\ +\x29\x2c\x74\x7d\xba\x4f\xba\x7c\xb8\x96\x5a\x43\xb6\x2d\xf4\x09\ +\x8b\x3e\x83\xfb\x08\xf4\x48\x2c\x4b\xa2\x1f\x60\x9d\x2b\xac\x30\ +\xa7\x8d\x97\xc0\xf0\x49\x1b\x6f\xbc\xa3\x3f\x31\xe5\x86\x7a\x4e\ +\xfa\x18\x83\x2f\x09\xc9\x55\xf5\xe1\x27\x81\x6e\x48\xd8\xd2\x1e\ +\x6f\x9d\x3d\xd2\xf9\xe2\x42\xe4\x04\x24\x2e\x72\x1b\x31\x14\x7a\ +\xd4\xc7\xe4\x97\xf2\x65\xbf\xca\xfd\x32\xd5\xb1\xa6\x3f\x64\x8c\ +\xfe\x1d\xfe\xab\xfc\xf2\x51\x94\x09\xcf\x3c\x5a\x27\xb7\xdc\x98\ +\x64\x6f\x17\x5e\x10\xb9\xc8\x1d\x98\x1c\xfc\xc4\x1a\x55\xb9\x0e\ +\xd9\x56\xf4\xa5\xc8\x79\x7d\xe5\x89\xb5\x67\x67\x67\xed\xec\xfc\ +\xaa\x7d\xfe\xec\xb4\x7d\xfc\xd9\xd3\xf6\xf8\xf1\x65\xbb\x38\x57\ +\xbf\x69\x71\xd3\x0e\x4f\xae\xdb\xeb\x6f\x2c\xda\x9b\x6f\x1e\xb7\ +\xfb\x27\x87\xed\xde\x83\xe3\x76\xa4\xcf\x90\x83\x43\xae\x41\x4c\ +\x04\xd6\x67\x11\xf5\x71\x48\x84\x76\xeb\x92\x23\x3d\xda\xb7\x85\ +\xb6\x5d\x9f\x46\xef\x6d\x66\xd1\xed\x3a\xe6\x35\xd8\x7c\x47\xac\ +\x29\x6d\x30\xaf\x85\xdf\x5e\x0b\x6f\xaf\x22\xbb\x6d\xc9\x1d\x08\ +\x91\x19\xd5\x3b\x35\xe5\x3b\xc9\x5b\x57\x11\xb2\x39\xfc\x62\xdb\ +\x65\x6c\x8a\x15\xc6\xbe\x9c\x52\x48\xaa\x06\x1a\x4c\x0b\xf5\xeb\ +\x73\xa0\x8e\x04\xfa\xb8\x50\xb4\xd0\xe9\xba\xab\xb5\xea\x57\x85\ +\x9b\x48\xc2\x26\x94\x34\x6e\x0f\xc8\xbf\xd4\xa1\xf6\x6e\xfa\x75\ +\x4a\x43\xd5\x0d\xf5\xaa\x67\x34\xa0\xb3\x64\x5b\xbc\xb7\x55\x56\ +\x18\x5c\x21\xc9\xfa\x92\xf3\xa5\xe7\xaa\x94\x9b\x79\xac\x27\x68\ +\x77\x12\x69\x2b\x22\x1b\x46\xe7\x73\x54\x8a\x8a\xcf\x27\x1d\xf7\ +\x57\x97\xea\x6f\x9d\xaf\xda\xe9\x93\xeb\xf6\xec\xc9\x99\x7f\xd2\ +\x91\xff\x48\x5b\xaf\xf6\xdb\xf1\xf2\xa8\xdd\x3b\x5e\xb6\xa3\x93\ +\x83\xf6\xe0\xe1\xb1\xff\x27\xed\xe0\xf0\xd0\x13\x66\x3c\x8d\xb6\ +\x54\xdf\x88\xc2\xa4\x9a\x27\xd1\xf4\x99\x1e\x7d\xa1\xe8\x27\xb8\ +\xcf\xa3\x57\xd8\xe8\xdb\x50\x7f\xf4\x47\xf8\xc2\x11\x6d\xf4\x93\ +\x66\xbc\xf4\xe1\x3d\x3d\xcd\x2f\xdf\xde\x8f\xa2\x8f\x40\xa7\x40\ +\x31\xd9\x9f\x73\x1e\x72\x3a\x0e\x9d\x9c\x74\x3f\xb2\x0e\x5e\x5a\ +\x5d\xfa\x32\x3e\x1e\xb3\xf8\x45\xb5\x8e\x8c\xfa\xfd\x82\xcb\xc5\ +\x3a\xae\x1b\xb6\x99\x3c\x62\x55\xf4\xb2\x5e\x5c\x05\x4e\x2d\xf1\ +\x44\xa8\x5b\x6a\xbc\xda\x5f\x79\xd8\x3e\x34\xca\x32\xb8\x8a\xfd\ +\xe1\x89\xd3\xdb\x0c\x3d\xe3\xca\xae\x97\x63\xcd\x53\xb7\x8c\xaa\ +\x85\xcf\x8d\x40\x0d\xb2\x74\x8e\xdb\x54\x67\xa6\x8f\x35\xe7\x8a\ +\x09\xb5\x3a\x0f\x3b\xa1\x6e\x4f\x21\xba\xd3\xb0\xa3\xaf\x18\xed\ +\xf6\xf4\x8e\x76\xf4\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\xf4\x95\ +\x3f\xf9\x7f\x66\x2b\x18\x3d\x56\xf7\x87\xb7\x5d\x62\x7d\x93\x24\ +\xbc\x6c\xb0\xc4\x7a\xe7\x77\xf0\x31\x66\x19\x96\xd8\xc0\xe7\x58\ +\x0d\x5a\x68\x91\x71\x1e\xb0\x81\xf3\xb2\x71\xc0\x52\xd7\x62\xb2\ +\xb9\x28\x0f\x39\x9c\x2f\x71\xf2\x19\x0b\x3b\xaa\x51\xec\x35\x98\ +\x52\x76\x06\x36\x3c\xda\x42\x3c\xc5\x70\xea\x19\x03\x97\x7f\x0c\ +\xd4\xa4\xc3\x60\xa7\x8d\xc6\xc9\x9d\x32\x78\x4c\x8e\x91\x9c\x87\ +\xcc\xb0\xc7\x00\x11\xb1\x7d\xf0\xc7\x25\x72\xd4\x93\x69\xce\xc1\ +\x60\xce\x3a\xfd\xc8\x95\x36\xff\x7c\x91\x8a\xff\x4c\x9f\x7c\x5e\ +\x8f\xc0\xb1\x47\x3e\x8a\x6c\xaa\x5f\x49\xcd\x43\xe6\xff\xda\x64\ +\xcb\x89\x35\x35\xca\x6d\xa2\x54\x9d\xf6\x5b\x05\xb6\xcf\xff\xb0\ +\x5d\xad\xda\x81\x6e\x84\x97\xc2\x16\xca\xb5\x58\xdd\xe8\x96\x4b\ +\x75\xab\x4d\x4b\xdd\x2c\xfb\xa7\x1c\xb5\x15\xdd\xeb\x15\xe3\x06\ +\x1a\xaa\xb1\x07\xdf\x62\x59\x0e\xde\x6f\xb2\x92\x15\x15\xce\x72\ +\x74\xf1\xb1\xa9\x85\x6e\x05\x3b\xc5\x60\x76\x56\x57\x89\xc4\x52\ +\xea\x74\x4b\x77\x62\xf6\x4d\x8f\x0a\x4a\x25\xac\x51\x58\x7a\xbc\ +\xc5\x72\x92\xfd\xc2\xab\x6c\x15\x53\xe4\xdb\xc2\xcc\x07\x95\x98\ +\x5b\x29\xe5\xa4\xc1\xaf\x3c\x68\x9b\xff\xad\xad\x36\x82\x29\x23\ +\xc7\xc4\x90\xd5\xc1\x36\x34\x84\xc1\x0c\xab\x43\xa5\x6e\xb3\x4a\ +\x64\x09\x60\x08\x99\xf9\x76\x99\x80\xe7\x50\xe5\xbb\xe5\x25\x20\ +\xb0\xb4\xc0\x06\xc7\x64\x41\x52\x36\x5a\x12\x64\x68\x0b\x2e\xf2\ +\x3a\xcc\xb6\x51\x62\x70\xf2\xa9\xc4\xf6\x0c\x37\x9e\x14\x64\x30\ +\xf7\x8a\xa2\x73\xe5\x42\xc7\xf9\xd9\xd5\x75\x3b\xe5\x69\x34\x9d\ +\x9b\xa7\x3a\xbd\x56\x8b\xbd\x76\x79\x70\xd8\xf6\xef\x1d\xb7\x76\ +\xef\xa8\x2d\x4e\x0e\xdb\x42\xfc\xe0\xe4\xb8\x1d\x1c\xf2\x3f\x1e\ +\x07\x6d\xef\x20\x27\x81\xf6\x83\x33\x08\x73\xb3\xc7\x40\x0e\xbf\ +\x22\xc4\xe0\x83\x30\x06\x1e\x72\xd0\x26\x7c\xa2\x80\x05\x5f\x84\ +\xcd\x13\x60\x39\xe0\x63\x1f\xc5\x78\x52\x4d\x38\x36\xb8\x8a\x9f\ +\x46\x23\x56\x18\xb6\x69\xa0\x27\x64\xc7\xe2\x0b\x6e\x2c\x6c\xe0\ +\x6e\x0f\x83\x22\xc2\x5c\x1f\x71\xc2\x22\x86\x63\x2e\x72\x03\x49\ +\xb0\x9f\xcf\x93\xf4\xc3\x23\x64\x7c\x26\xdc\x01\x85\x27\x86\x3d\ +\x26\xae\xbc\x17\x22\x6f\xe5\x70\xdb\xd0\x31\x4d\xdf\xe4\x8e\x5c\ +\xa8\x5e\x04\x4e\x3b\xc0\x1d\x83\x39\x7c\xba\x8d\x0a\xc8\x05\xe8\ +\x1c\x51\x4a\xee\x98\x9b\x21\xee\xed\x30\xd9\x5c\x38\x2e\xdc\xd0\ +\xf4\x4d\xdc\x7c\x0b\xf9\xd4\xe3\xb8\xb2\x9d\x6b\x20\xeb\x8a\x28\ +\xf0\x4e\xda\x9e\xcb\x70\x85\xdd\xe1\x32\x23\x7c\x5f\xc4\x6f\x47\ +\x2f\x87\x66\xbb\x74\x54\x6a\x27\xdc\xb5\xf3\x66\x81\xdb\x69\x48\ +\x81\xb7\xbf\x58\x34\x00\x68\xee\x73\x74\x14\x70\xc2\xdc\x47\x49\ +\x4c\x1d\x00\xe3\xf6\x74\x7f\x04\x5b\x62\x59\xfc\x34\x96\x70\x2d\ +\xcc\x33\x4b\xd8\xe9\x0b\x14\x42\x4a\x73\x61\xe0\x00\xb6\xa9\x2b\ +\x30\xc6\x27\x5e\xfe\xc6\xab\x4e\xe3\xc8\xc0\x2c\x24\xe3\x9d\xf1\ +\xca\xe4\xbe\x0c\x9b\x60\xf2\x97\x6c\xee\x20\xbd\x33\x97\x79\xc8\ +\xee\xb3\x48\x8e\x76\xd0\x1e\xfa\x2b\x74\x51\xd6\xea\x89\xa8\xaf\ +\x92\x36\xf7\x95\xe8\xc3\x58\xce\x3e\x8d\xd3\xca\xd9\x75\x0f\xf9\ +\xf6\x88\x23\x97\x1b\x23\x6e\x21\x6c\xd5\x9e\x5c\xaf\x2b\xf5\x7d\ +\xf8\x82\x13\x75\x61\xe7\xa7\x20\xd1\x57\xeb\xab\x76\x79\xb9\x12\ +\x5f\xb5\xa7\xcf\x4e\xdb\x87\x9f\x9d\xb6\x4f\x3f\xbd\x68\xcf\x9e\ +\x9c\xfa\xba\x75\xfc\xe0\xa6\x3d\x78\xb8\x68\x0f\x1f\x2d\xda\x6b\ +\xaf\xdd\x6f\x0f\xee\x1f\xb6\xc3\x93\x45\x3b\x3a\xe6\xb3\x64\xe9\ +\x7a\x62\xdd\x54\x15\x75\x69\x39\x5d\x8b\xdc\x1c\x63\x45\x5d\xee\ +\x87\x5d\x0e\x4d\xe7\x35\xa9\xec\xca\x60\x39\xdc\x24\x75\xff\xa0\ +\xb8\xc4\x4d\xfe\x45\x81\x27\xa5\x5c\xd0\x94\x5b\xb2\x16\xd4\x71\ +\x8b\xe4\x64\x1b\x1f\xc0\xa2\xb9\x0f\xf5\x85\x1e\xad\x1b\xa8\xdc\ +\x12\x9e\xda\x01\x90\x31\xfe\x50\x1f\xd6\x6b\xe6\x33\xa9\x99\x62\ +\x32\xf7\x88\x0d\x0f\xd4\x72\x2e\x92\x6e\xa8\x07\x4f\x0e\x76\x2f\ +\xb5\xc3\x5a\xa7\xee\x9b\x34\x85\x84\x98\x3a\x6c\xb6\x7d\x07\xea\ +\x79\x07\x9a\xbb\x6a\x4b\xde\xf2\xb9\x23\x19\xe4\xca\xe0\xe9\xe3\ +\x0a\x26\xff\x59\x2a\x2b\x23\x32\xed\x9d\x88\x98\xd7\x13\xe7\x45\ +\x91\x6c\xa8\x2a\xde\x3d\x3a\x86\xa9\xd3\x3f\x7b\x2a\xbf\xcb\xcb\ +\x75\xbb\xba\xb8\x6e\xcf\x4e\x57\xed\xf4\xd9\x75\x3b\x7b\x76\xd6\ +\x2e\x9f\xad\x8d\xef\xdd\x2c\xdb\xe2\x66\xbf\x1d\xf0\x93\x8e\xea\ +\x5f\xbd\xf6\xc6\x41\x3b\xe2\x57\x00\x74\x5e\xc4\xe4\x19\x4f\x78\ +\xd2\x4f\xda\xf3\xd3\x9e\xcb\xfd\x69\x32\x8d\xcf\x73\x4f\x71\xd1\ +\xb7\xe0\xcb\x49\xf4\x65\xdc\x2f\x60\x22\x0c\xbc\x26\x85\xa6\xcf\ +\x7d\x4f\x80\xe9\xe5\x49\x33\x72\xd8\x16\xc5\x7d\x2a\x7c\x7a\x9f\ +\x4b\x9e\xe4\xa4\x0b\xe2\x5c\x21\xd3\x6f\x89\x1c\x53\x5e\x2d\x40\ +\x26\xd9\xba\x5e\xbd\x6f\xe1\xc0\x09\xc7\xcf\xdd\x99\x8c\xc1\x6a\ +\x1b\x20\x76\x23\x7e\xa1\xf4\x89\x2f\x4a\x62\x9d\x6f\xe0\xf4\x43\ +\x95\xd5\x2f\xf7\x01\x59\x97\xb4\x55\x1d\xb1\x7e\x14\xc1\xd9\x86\ +\x8e\x55\x9b\xec\x9b\x2f\xe1\x78\x86\x8f\x6c\x89\xe3\x53\x2d\x65\ +\x39\x93\xfd\x0e\x6c\x46\x1c\x23\x8e\x8b\x63\x88\x25\x6a\xff\xa9\ +\x47\x8e\xad\x2d\x61\xb7\xe9\x85\x9c\x76\xf4\x15\xa1\xdd\xde\xde\ +\xd1\x8e\x5e\x1e\xed\x26\xd4\x76\xb4\xa3\x57\x98\xbe\xd2\x27\xff\ +\x4f\x7d\xe5\xdc\x6d\x0d\x71\x56\x99\x7b\xb0\x21\x4a\x9e\xb4\x8d\ +\x06\xe9\xd2\xcb\xc0\x44\x27\xf4\xba\x1c\x23\x27\x0f\x39\x6d\x56\ +\x99\x74\x08\xbd\x8a\x16\xc1\xf1\x23\x65\x0e\x70\x50\x66\xff\xb5\ +\x36\x94\x46\xdd\x25\xf7\xfc\x1b\x3e\x24\x13\xf7\xa0\xc8\xb5\x30\ +\x1a\x90\x71\x55\xfc\x32\x57\x3d\xd4\x5d\x79\x79\x65\x4c\xe5\x82\ +\x15\x37\x26\xfb\x6c\x50\xa9\xea\xb0\xae\xe2\x41\x1c\x42\x62\xa0\ +\xa7\xf1\x2d\x68\x72\xa8\x0e\xbe\x9d\x69\xd7\x35\x83\x31\xe4\x12\ +\xb7\x4b\x0c\xf0\x38\x2f\xf9\xc4\x57\xc2\xf6\xc1\xc4\xd9\xe6\xfc\ +\xb7\x9a\x27\xc4\x84\xf1\x3f\x22\xfc\xff\x9a\x65\x62\x84\x4b\xc8\ +\xfc\x31\x30\x83\x9d\x49\xb9\xe2\x6e\x8f\xea\xa5\x2e\xff\x44\x92\ +\x27\xd4\x0a\x53\x3b\x3c\x50\x44\x9b\x89\x61\x12\x4d\x31\xf8\x65\ +\x7e\xda\xe4\x89\x3b\xf9\xed\xf1\x7f\x6b\xb2\x2d\x98\x58\xbb\x8a\ +\x09\xb6\x7d\xb9\xd2\x5e\xfe\x7f\x8d\x49\xa0\x85\x64\x26\x2e\xea\ +\x70\xe3\xe6\xc9\x62\xea\x79\x0f\x16\x42\xc9\xa2\xd1\x07\xea\x7e\ +\xa2\x90\x95\x47\x9c\x5b\x3b\x53\x3a\x0c\x6e\x56\xc6\x9b\x38\x4b\ +\x83\x03\xa2\x55\xf6\xc5\x80\x77\x02\xa3\xed\x49\x88\xd4\xa7\x2d\ +\x61\x62\x98\x41\xab\xa9\xe3\x34\x1c\x61\x95\x66\x08\xbb\x45\xf3\ +\xaa\xf0\x9c\x10\x6e\xd2\xc9\x19\x75\x7b\xe1\x37\x52\xdc\xd8\x46\ +\xe6\x58\x8a\x10\xe4\x97\x9e\xd1\xc0\x34\xf6\x61\x10\x31\x24\x6f\ +\x22\x04\x2b\x03\x87\x24\x1b\x2a\xbd\x08\x1f\x58\xd9\x43\xbd\x4d\ +\x36\xc4\xf0\x58\x8a\x77\xfb\x8a\xb4\xb5\x6e\x39\xdc\xf2\xef\xc0\ +\xed\x4c\x9b\xcd\x04\x29\xec\x96\x4d\x8d\xe7\x9c\xe4\x26\x5d\x47\ +\xb6\x21\xce\x9d\x0b\x1d\xdb\xe7\x3a\x66\x79\x0a\xed\x4c\x3b\xf5\ +\x42\xc7\x37\x4f\xa2\x5d\x68\x27\xac\x0e\x0e\xdb\xf5\xf1\x61\x6b\ +\xc7\xc7\xed\xe0\xe4\xa0\x2d\xee\x9d\xb4\xe5\xe1\xa1\xca\x41\x5b\ +\xf2\xd3\x5d\x4b\x6d\x68\x06\x62\x18\x70\x61\xa7\x31\xb8\xc0\x80\ +\x05\x93\x6a\xca\xc1\x50\x04\xff\x7d\x16\x4f\x88\xe5\x04\x18\x38\ +\x58\x95\xd4\x63\x72\x8c\x01\x9a\x2c\x0c\x58\x24\xee\x27\xd7\xc4\ +\x19\xb8\xf1\x9f\xe7\xfb\x29\x32\xea\x09\x3f\xfe\x3f\x8d\x81\x8d\ +\x9e\x37\x6d\x65\x77\x1b\x73\xc0\x89\xfa\x6b\xa0\xc4\x39\xdd\xde\ +\xd4\xd9\x28\xc3\xe0\x11\x1b\x31\x38\xb9\xd8\xa2\xc4\x66\x41\xb7\ +\x1f\x3e\x91\xd7\x7a\x04\x49\x0c\x5b\xf8\x48\xc0\x85\x2d\x12\x01\ +\x7a\x4b\x76\x8e\xc8\x17\x7e\xd5\xbe\x11\x47\x94\xcd\x82\x38\x8f\ +\xf8\x75\x5d\xc5\x55\x68\x7b\x8b\xd8\x0e\x61\x03\x0c\x3b\x39\xc6\ +\x7c\x51\xb0\x6b\x9b\x9a\x87\x2d\x42\x0c\x28\x45\xf2\xb2\xf9\x0d\ +\x96\x04\xe6\x93\x21\xce\x2e\x4a\x48\x5a\x43\x9b\xe2\xf8\xba\x9b\ +\x86\x5c\x77\xd1\x0b\xb8\x98\xa2\xda\x1d\xfd\x59\xd0\xad\xdd\xba\ +\x6d\x3f\x6f\xee\x8c\x2f\x3a\x16\x92\x2a\x4c\xee\xde\xa5\x5c\xaf\ +\x02\x11\xc5\x67\x8c\xaf\x61\xa0\x1e\xa5\x4e\x19\x0e\x4b\x39\x70\ +\x7d\x00\x7b\x22\x86\xa4\xd8\xe3\x33\x9b\x02\x6a\x1f\x97\xc4\xf4\ +\x59\x0e\x45\x1e\xe9\xba\x26\x22\x01\x20\xd1\x16\xfa\x17\x3e\xae\ +\xe1\xce\x89\x87\x16\x2a\xf6\x4f\x3c\x0c\x69\x31\x8f\xb8\xc8\x94\ +\x98\x5d\x32\x06\x39\xaf\xc8\x7b\xf4\x77\x7a\x9c\x9d\xcc\xa3\x5e\ +\x67\x12\x53\x9c\xfc\x68\x73\x7c\x09\x29\xb0\x6a\x1f\xf2\x9a\x3e\ +\x0a\xfd\x29\x74\xd7\xcf\x3a\x45\x7f\x06\x3f\xda\x5b\x1c\x9b\xbd\ +\x94\x93\xf6\x28\xda\x79\x7a\x6e\x21\xce\x33\x16\xbd\x78\xbb\x0d\ +\x6e\x73\xd4\xc9\x04\xda\xe5\xd5\x4a\x72\xf4\xa7\xbc\x0f\x64\x3f\ +\xbb\x38\xf7\x64\xc1\xe9\xd9\x79\xfb\xfc\xe9\x69\xfb\xe4\xa3\x8b\ +\xf6\xe4\xc9\x33\x61\x57\xed\xe8\xfe\x7e\xbb\xff\xda\x51\x7b\xf4\ +\xfa\xa2\x3d\x7a\x70\x28\x7e\xdc\x8e\x4f\x0e\xdb\xc1\xe1\xa2\x1d\ +\x1c\x70\x4d\xe4\xda\xbf\x97\xed\xe5\x1a\x47\xd5\xb4\xbb\xae\x63\ +\xc9\x45\xb4\x4d\x40\x1c\x1f\x5b\xc8\x6e\x5a\x84\xd7\xe0\x93\xf1\ +\xb6\x74\x79\x83\x48\x9b\xa2\x69\xab\x5f\x5e\x25\xd3\x36\xf4\x04\ +\x3a\xf5\x30\x09\x96\x65\x8e\xfe\xc6\xdc\x0f\x32\xcc\x62\xd6\x21\ +\xa1\x8d\x04\x89\xd5\x8a\x97\x79\x4c\x21\x9f\xe9\x9a\x7d\x3b\xb7\ +\xa1\x9e\x76\xcc\x0f\x65\x7e\xbd\x70\xeb\xbf\xb0\x90\x31\x6c\xe6\ +\x31\x33\xf2\xb4\xae\x71\x8c\x54\xdd\x20\x9d\xa4\xb0\x2a\xf6\xf4\ +\xbe\x7a\x1e\xa9\x6e\xb9\xb8\x05\x95\x7a\x83\xa6\xf5\x9b\xe8\x16\ +\xb6\x11\x57\x2a\xfd\xd5\x99\x29\x95\x2f\x6c\x96\x29\x1b\xe4\xed\ +\xcf\xfa\x46\x5c\x7e\xf2\x8a\x38\x3e\x49\x84\x4d\xe7\xc6\x4a\xfd\ +\xac\x73\xf5\xb3\xce\x2f\xdb\xd3\xcf\xd6\xed\xb3\x4f\x2f\xdb\xe9\ +\xe9\x45\xbb\xba\x58\xb5\xab\x2b\xfa\x64\x8b\xb6\x6c\x8b\x76\xa8\ +\x3e\xd5\xc9\xbd\x65\x7b\xeb\xf5\x47\xed\xde\xfd\x43\x3f\xc1\xb9\ +\xf4\x24\x97\xce\x01\xf5\x4b\x16\x7b\x4c\x9e\x85\x7c\x20\x7c\x9f\ +\x9f\x78\x44\xd7\x67\x7e\x7d\x69\x89\xc2\x7f\x9e\xb9\x0f\xc5\x4b\ +\xe7\xce\xd4\x0f\x0a\xce\x71\x63\xae\x97\x39\xb8\x72\xf2\x9b\xeb\ +\xfe\xc9\x48\x9f\x53\xd1\x67\xb2\x2c\xbb\x80\xa8\x83\x7c\xb6\x4f\ +\xb9\xdc\x6f\x11\x2e\xc4\xba\x16\x89\xab\xb0\x4d\x06\x5d\x09\xa8\ +\x15\x48\x54\x3e\xe4\xc5\x0d\x10\x3d\x63\x78\x39\x26\x79\x5a\x4b\ +\x8f\xf5\x05\x89\x17\x78\xd9\xec\xdb\x65\xea\x64\x7d\xf0\x0f\xd9\ +\x30\x76\x5a\xed\xca\x33\x97\x31\x78\xfa\x76\x7f\x07\x0c\x72\xd8\ +\x8c\x65\x4c\xbc\x03\x0b\x32\x6a\x1e\xef\xc2\x37\xa9\x8e\x45\xae\ +\xa5\xe4\xe3\xbe\x71\xc2\x3a\x21\x56\x8a\x51\xee\x74\x57\xfe\x1d\ +\x7d\x15\x69\xb7\xb7\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\xed\xe8\ +\x15\xa6\xaf\xf4\xc9\xff\x67\xb2\x72\x9b\x3d\x54\x68\xec\xa6\x6c\ +\x62\xa1\xa3\xc5\x4d\x54\x0c\x92\x84\xc2\xdb\xa0\x8b\x96\x79\xdf\ +\x1b\x2f\x63\xe9\x37\xc9\xb6\x88\x73\x03\x86\xca\x22\xe4\x96\x03\ +\x15\x8c\x22\x44\x35\x5a\xe0\x8f\x0b\x2f\x04\x06\x49\xc4\x5d\x8f\ +\x6d\x16\xf4\xce\x1b\xba\x51\x26\xc6\x03\x28\xc4\xa1\x93\x2f\xe2\ +\xcc\x2b\xe7\x96\x58\xd4\xd0\xe1\x85\xa9\xac\x55\xb2\x5d\x1e\x80\ +\x59\x4b\xe6\xdb\xe1\x86\xf0\x49\x5f\x06\x78\xb8\xc9\x94\x3f\x03\ +\x23\x26\x06\x75\x24\xc6\xb7\xaa\x89\x49\x5f\xd6\x5b\x3e\x7e\x2a\ +\x8d\xbc\xf6\x53\x6e\xdb\xc9\x81\xce\x7a\x47\x8c\x07\xb3\x64\xb7\ +\x9f\xeb\x48\x0c\xee\x7c\xd8\x33\x1f\x3e\x2a\x11\xa7\x1c\x39\x79\ +\x26\x60\xd2\x99\x48\x53\xf1\xa0\x14\x85\xc1\xb6\xc4\x22\x17\xfe\ +\xb9\x6e\xab\x88\x8b\xf8\x6b\x4f\xac\x2d\xaf\x56\x59\xae\xdb\x52\ +\xed\x5a\xc8\xcc\xa4\x1c\x83\x72\xfc\x2c\x24\xb7\x49\x4c\xb2\x71\ +\x0c\x31\xf8\x0c\xc5\x8d\x9c\xd2\x84\xea\x03\x2c\x4c\x89\xa4\x1f\ +\x54\x03\x12\xe1\x13\x06\x62\x03\x4b\xdd\xcb\xe0\x71\xb3\x17\x44\ +\xb6\x74\xe9\xd4\x55\x19\x2d\x6b\xd1\xdb\xb1\x85\x9c\x23\x44\xc9\ +\xd2\xca\x39\xb9\xed\xe9\xc0\x71\x59\x64\xb1\xf0\x49\xe4\xe8\xe9\ +\x72\x04\xcf\xed\x50\xa4\x09\x24\xbe\x91\x6d\x71\xe6\x83\xc6\x61\ +\x62\xcc\x8b\x48\x16\x6d\x89\x18\x6d\x7e\x9b\x7a\x1c\x02\xb8\x78\ +\x77\x53\x81\xca\x27\xd5\x3b\xc9\xf6\x1e\x13\x42\x61\xa5\xf5\xfa\ +\x36\x88\x75\xaf\x46\x0c\xab\x75\x8b\xa2\x4d\x93\x75\xcc\xc7\xde\ +\x9d\xf4\x71\x5f\x57\xed\xb1\xa0\xae\x2b\x1d\xa7\x4c\x4e\xaf\x56\ +\x3c\x8d\xc6\xcf\x3a\x5e\xb7\x33\xc9\xe7\xb2\x9d\x2b\x72\xb5\xbf\ +\x68\xeb\xa3\x03\xff\xff\xd9\xde\xc9\x51\xdb\x3f\x3e\x6a\xcb\x93\ +\x03\x4f\xa2\x2d\x96\x07\x6d\xc1\x53\x68\xfc\x9c\x23\x13\x5a\x8b\ +\xf8\xb9\x40\x6f\x60\x06\x7b\x14\x1f\x03\x16\x81\x31\x48\xb1\x2f\ +\xdf\x1a\x90\xf1\xe0\x4c\x0e\xee\x78\x90\xc2\x58\xf8\xd5\x53\x67\ +\x31\x60\x03\xae\x22\xcc\x39\x14\xe7\x01\x1d\x30\xe5\x62\x40\x89\ +\x09\x24\x99\x5c\x97\xed\xbd\x8e\xcc\xe5\xc1\x8e\xac\xab\x62\xa9\ +\x5b\xad\x54\x12\xfb\xc9\x21\xfc\x29\x6e\x72\xc4\xe0\xeb\xd8\x00\ +\x8d\x07\x2f\x2c\x7c\x03\xab\x18\xc9\x7a\x79\xa2\xdc\x58\xf8\x84\ +\x9f\xde\x62\x72\xb2\x6f\xe4\x00\x97\xee\x34\x76\x4e\xdf\xcc\xd7\ +\xe3\xc3\xd7\x9c\x78\x4f\x1c\x96\xbf\x20\x62\x6e\xc0\x81\x06\x5f\ +\xbf\xf5\x62\x3d\x71\xeb\x31\xe9\xc3\x0b\xd9\xdb\xdf\x0e\xf6\x0b\ +\x5e\x7e\x96\x8c\x59\xdf\xa4\x84\xe2\xe8\xd6\x12\x3f\x1d\x67\x1e\ +\xfb\xad\x93\xe8\x4e\xda\x92\x6f\x93\x5e\xc0\x65\x47\x7f\xc6\xd4\ +\x77\xeb\xb8\x7f\x63\xff\x6f\xdf\x61\x5f\x74\x1c\x6c\x50\xa6\xe8\ +\xd7\x60\x09\x21\xf2\x79\x6b\x41\x04\x26\x05\x9b\xc1\x28\x61\x4f\ +\x0c\x9b\x3f\x7c\xf8\xfc\x2e\x3f\x7d\x46\xeb\xfa\x67\x5b\xbd\x74\ +\xfd\xf3\x4f\x39\x16\x86\x1f\x9f\xe5\x63\x9c\xdf\x21\x57\x7f\xc6\ +\x08\xfa\xc0\xd5\x01\xd0\x12\x3b\x55\x84\x8f\xeb\xa7\x4a\xcb\xf8\ +\x66\x5e\x69\x3d\x87\x4b\xb4\xc1\x31\xbc\xed\x63\x81\x65\xd8\x12\ +\x8b\x7e\x4f\xf5\xa3\x32\x9f\x0a\x7a\x7c\xa1\x29\xfa\x22\xee\xe3\ +\xd8\xc6\xc4\x5a\xae\xa3\x30\xff\xcc\x9c\x6d\xc9\x29\xce\x43\xff\ +\x26\xf3\xa8\xd4\x17\x92\x1c\xef\xb6\x44\x3b\xa2\xa0\x46\x9b\x68\ +\x05\xfe\x91\x6f\xad\xcf\x97\x75\xbb\x62\x62\xed\xf2\xb2\x5d\xf9\ +\xe7\xb3\xb5\x53\x9d\x9b\xc9\xb7\xeb\x76\x75\x75\xe5\x72\x7e\xb9\ +\x6e\x17\x17\x57\xed\xa3\x8f\x9f\xb4\x4f\x3e\x3b\x6f\xa7\xe7\x17\ +\xfa\x9c\x69\xed\x84\x09\xb6\x07\x07\xed\xf8\xc1\xb2\x3d\xb8\x77\ +\xd0\x1e\x3e\x3a\x88\x89\x05\x7d\xf6\x1c\x1c\xe9\x0a\xae\xcf\x21\ +\x9e\xd4\xd1\xe5\x70\x6a\x07\x94\xed\xf3\x80\x7f\x20\x93\xad\x48\ +\x06\xdb\xca\x61\xb4\x8f\x9d\x15\x53\xea\xdd\x17\xaa\x04\x1b\xf0\ +\x80\x43\x25\xf6\x8c\x73\xf3\x9c\xd2\xc6\xba\x6c\xd6\x39\x8f\x29\ +\x0d\x9f\xf0\x0b\x44\x4b\x5f\x9f\x7b\x6d\x33\xb2\x05\x97\x50\x4d\ +\x6c\x27\x88\x2d\x85\x64\xdb\xcc\x21\xb2\xf5\xeb\x79\xc5\x8f\x38\ +\x7a\x81\x16\xe2\xd8\x28\x39\x8d\x41\x76\xb6\x47\x08\x5b\x28\x9b\ +\xb4\x41\x01\xf6\x8c\x3d\x0f\x98\x50\xde\x43\x5c\x61\x63\x35\xb5\ +\x8e\x9d\xa4\xdc\xa9\x0f\x86\xed\xed\x19\xa8\x3e\x17\x89\xd7\xf1\ +\xbd\xa7\xfb\x1e\xee\x05\x56\xba\x27\xb8\xba\xd4\x31\x7e\x71\xdd\ +\xce\x4f\x5b\x3b\x3b\x5d\xb7\xcf\x3f\xbf\x90\x7c\xd9\x2e\x85\x51\ +\x6e\x56\xd1\x97\x59\xee\x2d\xdb\xe1\xf1\xb2\xdd\xd7\xf1\xfd\xe8\ +\xe1\x49\x7b\x70\xff\x48\xc7\xfa\xa1\xbf\xac\x44\xdf\xa7\xff\x8c\ +\xa3\x7c\xe9\x4b\xd5\xe4\x9a\xbf\x64\xe4\x49\x33\xfa\x54\xe4\xca\ +\xbe\x0f\xbc\xcb\xd5\xf7\xe2\x33\x3e\x6c\xee\xeb\xf0\xb2\x5f\xf4\ +\x7f\x6c\xa3\x4f\x45\xff\x82\xa5\xb1\xf0\xc1\x9f\x7e\x13\x27\x9b\ +\xff\x7f\x8d\x7e\x06\xf9\x38\xf9\x04\x53\x3f\x42\xd4\x47\x0c\xbe\ +\xc9\x53\xc7\x1b\xdf\xb0\xd3\x1f\x29\xdf\xdc\x86\xd6\xc3\x8e\x63\ +\xc4\x4c\xf1\x85\x4d\x1c\x53\xc5\x88\x17\xae\x32\xca\xe1\x07\xc7\ +\x77\x58\x27\x63\xc8\x2c\xc3\x56\x78\x95\x58\xbf\x8c\x93\x17\x4f\ +\xb8\x39\x0a\x3b\x36\xc7\x21\x93\x84\x18\x41\xc8\x3a\x59\x3a\x66\ +\x9e\xb8\x97\xc1\xb7\x51\x1d\x6a\xf4\xa5\x66\x93\x69\x1c\x84\x77\ +\x85\xe1\xd0\x6d\x08\x33\x60\x47\xaf\x00\xed\xf6\xf6\x8e\x76\xf4\ +\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\xf4\x95\x3c\xf9\xab\x5f\xf8\ +\x33\x59\xb9\xcd\x4e\x69\x35\x22\x30\xba\xb9\xfd\x8a\xeb\x36\x86\ +\xe2\xcb\xb0\x8b\xb5\xd0\x2d\xce\xed\x85\x77\x5d\x2f\xdf\x9c\xa6\ +\xad\x70\xdb\x3c\x38\x82\x78\xdd\x78\xe2\x8a\xa1\x8b\x78\x5a\x4d\ +\x18\x96\xf4\x67\x50\xa4\xcb\xe0\xc4\xe5\x60\xc8\x84\x97\x0f\x83\ +\x1e\x5a\x0b\xdb\x27\x1f\xa7\xe3\x95\xfe\x60\x13\xa7\x4e\xc9\x69\ +\x0f\x2c\x65\xea\x72\x3b\xd1\xc9\x8d\x5b\xf8\x4f\x85\xc1\x14\xe0\ +\xcc\x83\x5d\x2f\x7f\xb3\x39\xb1\x1a\xd8\x61\xd0\x45\x00\x69\xbb\ +\x8d\x89\x2d\x4f\x1c\x32\xac\x53\x79\xd0\xe5\xe4\x41\xa5\x1e\x1b\ +\x3c\x64\xda\x16\x93\x68\x91\x27\xb9\x27\xc8\x12\xcf\x09\x32\x0f\ +\xf4\x80\xc3\x13\x2f\xee\xb6\xa5\x5f\x4d\xb4\x95\x3f\xf9\xbd\x3e\ +\xd2\xb3\xc1\x7a\xa3\xf3\x93\x91\xb2\xcb\x97\x9f\x82\xdc\x13\xdf\ +\x17\xdf\xbf\xd2\x4d\x37\x9c\x22\xb7\x7d\xc5\x73\x3c\x2d\x54\x96\ +\x92\xf6\xf3\x46\x8a\xfb\x57\x6e\xd9\x38\xbe\xe4\xc6\x06\xb5\xec\ +\xc3\x2d\xe0\x18\xe4\x28\x42\x8e\x3b\xba\x2e\x72\x63\xe6\xfb\xe0\ +\xa4\x12\x6d\x2f\x61\x46\xca\xec\x9b\x41\x91\x16\x3e\xce\x47\xa7\ +\x68\x88\x5c\x7a\x0b\x74\x2c\xe2\x15\x32\xc4\xa6\x08\x99\x04\xb3\ +\x68\x93\x43\x45\xb4\xbd\xa2\x82\x53\xef\x86\x31\xd1\xa2\x90\xc2\ +\x27\x3d\x4d\x93\x47\x52\xae\x83\xdb\x49\xae\x99\x77\x90\x63\x6e\ +\xc3\x9d\x30\x8d\x79\x37\xeb\xeb\xfa\x6d\x61\xab\x4d\x47\xc2\xed\ +\x76\x6e\x41\x46\x72\x3d\x53\xda\xa4\xdc\x26\x1b\x95\xe0\x6b\x7f\ +\x14\x16\x3a\x00\x18\x48\xc5\x97\xba\x99\x34\xe3\xa9\xb3\x4b\x1d\ +\x9b\x97\xab\xeb\x76\x2e\x7d\x25\xf9\x5c\xdb\x68\xb5\xb7\xdf\x56\ +\xfb\xfb\xed\x8a\xff\x3d\x63\x22\x8d\x3f\xba\xbf\xc7\x7f\xdb\x1c\ +\x79\x50\x67\x79\xb8\xf0\x7f\xa2\x79\x92\xaa\x8a\xfc\xfd\x67\xef\ +\x3c\x0d\x45\xcd\xaa\x2f\x06\x65\xc2\xe6\x01\x09\xec\x2a\x5a\x48\ +\x47\x06\x9b\x26\xbe\x6a\xe2\xcc\x36\xe2\x86\x98\x9a\x40\x63\xf2\ +\x68\xc1\x34\x9d\x4f\x88\xc9\x16\x79\x55\xad\x78\xfd\x24\x64\xff\ +\x76\x36\x5c\xfe\xfe\x69\x23\x7c\x8c\x65\x0e\xea\x4e\x1f\x3f\xd1\ +\x46\x12\xc7\x79\x2d\xec\xc7\x49\x03\x4e\x7b\x2c\x3b\xcc\xb3\x55\ +\x81\x99\xe3\xac\x9c\x8e\x49\xdf\x00\x5d\x4f\xe8\x81\x77\x1b\xe7\ +\x03\x98\xeb\x04\x2f\x4e\x54\xe5\xcf\xbc\x32\x91\xdc\x3e\xe0\xb1\ +\xb2\x99\x9b\xbc\xd8\x1d\x38\xf9\x18\x37\xd0\x39\x85\x41\x24\xcb\ +\x0e\x29\xdb\xd4\xb6\x30\xa5\x4f\xe9\x01\x0a\x4d\x1c\x39\x39\x90\ +\x89\x73\x1f\x59\xc7\x1b\xe7\x9a\x9b\x2c\x1f\x5f\x0f\x9f\x4b\x95\ +\xe0\x39\xd4\xeb\x50\xc9\x3a\x3a\xbd\x40\xf8\x8e\x7e\x8a\x34\xdb\ +\xbd\x9b\x3b\x48\xf2\xb8\xef\x66\x74\x0b\xd8\x4e\x8e\xd7\x42\xc7\ +\x51\x65\x0f\x39\xe3\xc5\x4a\xf6\xb1\xd6\x6d\x36\x74\xd9\x9f\xdb\ +\xd9\xe7\xb1\x2f\x7d\x07\x30\x3e\xa3\xe9\x33\xe8\x98\x8d\xf8\xc0\ +\xd5\x23\x10\xc7\x9d\x2b\x26\x1f\xe7\xe9\x4f\x3f\x83\x9c\x7e\x4f\ +\xfe\x2e\xbc\x8a\xbb\x92\xb1\x0e\x27\x03\x9c\x7c\xac\x03\x27\x9e\ +\xed\x73\xd7\xc1\x31\xd9\x5e\x3e\xbb\x24\x0a\xe9\xf1\xe0\x95\xa3\ +\xc7\x8b\xf7\x89\xb2\x5e\xa2\x6e\x06\xf6\xfd\x05\x27\x64\xfa\x2c\ +\x5a\xbf\xd0\xe9\x1f\x95\x3d\x7d\x8d\x51\xc0\xe8\xdf\x48\xc6\xa6\ +\x5a\xdc\x0f\xa2\x31\x2c\x91\xe5\xef\xc2\xcb\xf9\xa8\x02\x9f\xc4\ +\x5d\x94\x47\x75\xf0\xb4\x1a\x93\x6b\x2e\x57\x57\x2e\xf1\x34\x5b\ +\xd4\xa3\x74\xea\x26\xad\xda\xd5\xc5\x55\xbb\xe2\xa7\x85\xcf\x57\ +\xed\xe9\xd3\xb3\xf6\xf9\xa7\xcf\xda\xd9\xd9\x65\xbb\xba\x92\xc3\ +\xe2\xa6\x1d\x1c\xef\xb7\xe3\x7b\x7b\x6d\x79\xd4\xda\xfd\x7b\x47\ +\xed\xfe\xc3\xa3\x76\x7c\xb2\x6c\xf7\x1e\x1c\xb5\xa3\xe3\xc3\xb6\ +\x5c\xee\xb7\x83\x23\x26\x0f\xe2\x5a\xe8\x2f\x38\x45\x8b\xcc\x39\ +\x8a\xe2\xb0\xe2\xfa\x86\x9e\x54\xc7\xaa\x29\xf0\x88\x19\x68\xf0\ +\x71\x1f\xa5\xae\x83\x9d\x52\x17\x9b\x59\xec\x27\x7f\x5f\x24\xd1\ +\x83\xdd\x49\xb4\x8b\xaa\x07\x3f\x8b\x99\x02\x39\xaa\x4e\xbf\xc4\ +\xc3\x29\xd7\x0f\x52\x1e\xc3\x76\x4b\xb4\x1b\x09\x4c\x4a\x11\x93\ +\xd3\x49\x88\xeb\x7d\x26\x56\x01\x8f\x1e\x44\x5c\xeb\xf1\xed\x81\ +\xb8\x89\x81\x25\x92\x14\x86\xf8\x05\x86\x94\xd3\xb2\x9d\xc2\xca\ +\xa1\xb4\x95\x36\x0c\xd1\x06\xf1\xcc\x3b\xac\xb9\x28\xb4\x68\x53\ +\xe0\x6e\x77\xa6\xe8\x99\x00\x61\xb5\x08\xb5\x3b\xf8\xb8\x0e\xc1\ +\x8c\xf3\xd3\x64\x8e\xb3\xea\x21\xaf\x12\xeb\x4c\xf1\xf9\x72\xa5\ +\xbe\xfd\xe5\xc5\xaa\x3d\x7b\xb6\x6a\xe7\xcf\xd6\xed\xf4\xc9\x55\ +\x3b\x7b\xba\x6e\xe7\x1c\xc7\x17\xf2\xd2\x2d\x81\x9f\xfe\xd2\x31\ +\x4a\x5f\xe5\x48\xc7\xeb\xc9\xbd\xc3\xf6\xe8\x01\x93\x68\xc7\xed\ +\xe0\x20\xff\x07\x8d\x49\x33\x26\xb7\xd4\x0f\xc0\xcf\xb2\xfa\x47\ +\x4c\x66\x55\xff\x28\x26\xca\xaa\x2f\x14\x38\xfd\x20\x1f\xff\xf8\ +\xa8\x71\xee\x8f\xd1\xef\x61\x3f\xd8\x37\xb9\xda\x1e\x36\xb0\xf0\ +\x01\x73\xff\x01\x49\xeb\x55\xb8\x7d\xbc\xa2\x95\x53\x7e\xd9\x6f\ +\x62\xe9\xfe\x88\x7c\x08\xb2\xcd\x39\xbc\x61\xf4\x1e\xb7\x13\x93\ +\x6e\x70\xf2\x53\x06\x1b\x3d\x87\x08\x99\xe4\x04\xca\x57\x9a\xfd\ +\x03\x8b\x82\xcc\xda\x18\xb3\x39\x6d\x3d\x1f\x72\xf8\x51\xe2\x67\ +\x2d\x23\x1f\xad\x8c\xe3\x19\x5c\x82\xb7\x41\xe6\xa2\x38\x1d\xdb\ +\x0e\x34\x70\xc0\x88\xb4\xd5\x36\xcb\xe9\xef\x09\x37\x1d\x1f\x1d\ +\x23\xc6\x14\x76\xf8\x8c\xea\x98\x12\xec\x63\x95\xeb\xa6\x73\xa9\ +\x2f\x25\x1e\xe6\x72\x4a\x42\x1d\xd3\x6c\xea\x73\x65\x47\xaf\x00\ +\xed\xf6\xf8\x8e\x76\xf4\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\xf4\ +\x95\x3a\xf9\xab\x83\xf8\x33\x5f\xa9\xcd\x06\x44\xa3\x58\x72\x7b\ +\x59\x66\x75\xb5\x43\xb4\x01\x49\x9d\xe2\xbc\x1c\x9b\xbb\x58\x33\ +\x86\xee\x41\x0d\x8b\xca\x94\x70\x0c\xc4\xc0\x23\xde\x37\xf5\x1e\ +\x78\x10\x4f\xdc\x4f\x68\xdd\xc4\xc4\x4d\xe1\xf6\x75\x1e\xb8\x01\ +\xa5\x1a\xb1\x98\xb0\x89\x09\xaf\xf0\x67\x0d\xc2\x07\x20\x06\x4f\ +\x6c\xc4\xcf\x39\x2c\x69\x81\x3e\xe5\xee\xf9\xbb\x4d\x3c\xdb\x82\ +\x1f\x4d\xe3\xf6\x12\x38\x26\xff\xc8\x5d\x79\x19\xa0\x11\x97\x3f\ +\x60\xe5\x63\x80\x06\x3d\xd6\x0d\x11\x39\x27\xd4\x90\x49\x20\x5b\ +\x0c\xe4\x44\x6e\x7e\xb2\x91\xc9\x00\x06\xba\x9c\xcb\x36\x74\x62\ +\x43\xf7\xe4\x58\xd6\x63\x8c\x01\xa5\xcc\x43\x4c\xf9\xd5\xd3\x67\ +\xfc\xec\x5d\x5b\x31\xc0\xb3\x4a\x3f\xf9\xcb\x66\x7f\x15\x0f\x34\ +\xe1\x4f\x3d\xca\x15\x93\x71\xd8\x84\x4b\xaf\xbc\xb4\x8d\xbc\x7c\ +\xab\x3e\x06\xad\x12\xc3\x46\x5d\x2a\xfb\xab\x9c\x50\xbb\x5a\x49\ +\x5e\x37\xff\x2c\xa4\x7c\x99\x54\xc3\x77\xa1\xbb\xb2\xa5\xb6\x1a\ +\xc7\x96\x9f\x68\xd3\xb1\xc5\xe1\x55\x1c\x52\x2b\x52\x12\x01\xba\ +\x84\x35\x6e\xe8\x2c\x4e\x3c\xc9\x6e\x21\x06\x1f\xec\x1b\xae\xa6\ +\x7e\x4f\xe8\xea\x50\xa2\xde\x5e\x7b\x42\x31\xb1\x36\x6b\xd5\xe8\ +\xde\x69\x5b\x1d\x90\xf1\xd1\xb8\x11\x07\xcd\x63\xfb\x50\xd1\x86\ +\x6b\xdc\x90\x9a\xb6\xe4\x80\x7a\xdc\x1d\xf6\x17\x25\x8e\x85\xa2\ +\x59\xaa\x2f\xca\x3b\xac\xc8\x24\x0e\xa0\xf3\x4e\x7a\x69\x1c\x0b\ +\x5d\xcf\x3a\xbc\xc5\x2d\xeb\x58\x93\x17\xa2\x0f\x65\xf9\xf2\x5f\ +\x68\xfc\x27\x9a\x27\xd1\x74\x3e\x5e\x09\x37\xd7\x8d\xff\x25\x37\ +\xec\xcb\x45\xbb\x3e\x3c\x68\x8b\xe3\xc3\xb6\x7f\xc4\x93\x67\xc1\ +\x0f\x0f\x19\xd4\x59\xfa\xff\x3a\x6e\x86\x09\x34\x06\x6a\x18\x40\ +\x01\x63\xf0\xc6\x03\x0f\xc6\x19\x66\x08\x5b\x93\x2d\x06\x6b\x84\ +\x79\x40\x46\x3e\xd2\x89\xe5\x67\x1a\x05\xa4\x5d\x85\x3c\xf0\xd4\ +\x19\xf0\xe1\x9b\xd8\xf8\x7a\x70\xc6\x58\x0c\x16\x85\x0c\x8f\xbc\ +\xcc\x46\x7b\x80\x24\xf3\x63\x2b\x3f\xe7\x73\x3c\x25\x06\x45\x64\ +\xec\xbe\x93\x0d\x99\x6d\x17\x3e\x7b\xca\xe9\x41\x10\xec\x0c\x00\ +\x99\xa7\x2f\x39\x4a\xf7\xce\x48\x3b\x22\x80\xf3\x5a\xb1\x1e\xb9\ +\x0d\xa4\x3d\xca\x24\x53\x5f\xfa\x3a\xb7\x5c\xd9\x86\xc6\x71\x99\ +\xea\x4b\xc0\xf2\x84\x6f\xf8\x64\x8c\x65\x92\x15\x9e\x3c\x64\xde\ +\x21\x7b\xf0\xa7\x6c\x54\x6d\x7b\xca\x6a\x57\x50\xd8\x2d\x25\xef\ +\x24\x95\x9f\x5b\xeb\x07\xa2\x48\x19\x63\x9c\x72\x38\x2f\x6e\xd3\ +\x46\x9e\x6d\xb4\xe9\xb2\x99\xce\x75\x6c\xf0\x1d\xbd\x5c\xfa\xa2\ +\xed\x7a\x6b\x17\x17\x70\xd7\xce\xab\x9d\xf5\x82\x94\xee\x3d\xba\ +\x5f\xfb\x02\x34\xe7\x98\x14\x1e\xd7\xe1\x28\x88\x73\x5d\x9f\xcb\ +\x89\xeb\xca\x88\x84\x83\x71\xe4\x49\xe7\xfa\xa9\xcf\x7c\x1c\xd1\ +\xb3\x1f\x83\xee\x09\x35\x3f\x79\x82\x5f\xe4\x0b\x1f\xf4\x2c\xa4\ +\x9f\x61\x95\x8b\x77\xf4\x0d\x42\xb5\xe7\xcc\x37\x3d\xdc\xcf\x70\ +\x9f\xc9\xf1\xb1\xce\xf1\x4a\xff\xd4\x91\xf1\xec\x98\x0b\xff\xcb\ +\xc4\xb5\x1f\x9c\x1c\x74\xc1\xe8\x87\xf0\x94\x19\x18\x7d\x22\xe1\ +\x8a\x74\x5f\x8b\x4c\xf4\x5d\x64\xf3\x64\x9a\x78\xf4\x9f\xe8\xcb\ +\x80\x91\x2f\x70\xf7\x6d\x88\x2b\x5f\x74\xfc\x9d\x23\x39\x2f\xd9\ +\xaa\xed\xe4\xf7\x84\x5c\xda\xf9\xf9\xc7\x95\xfa\x3a\x57\x57\x97\ +\xed\xe2\xea\xa2\xad\x25\xf3\x93\xdd\xb1\x4e\xb9\xbb\x59\x7f\x15\ +\x7e\x7e\x9b\x27\xa8\x99\x9c\x78\xf2\xf8\xb4\x3d\x7b\x76\xd1\x9e\ +\x3e\x5d\xb5\x67\x17\x17\xed\x5c\xd8\x5a\x6d\x3b\x3c\x39\x68\x27\ +\x27\x7b\xed\xe4\xe1\x5e\x3b\x3e\xe6\x27\xf2\x8e\xda\xc3\x47\xc7\ +\xed\x48\xf8\xd1\xb1\x3e\x57\xf4\xd9\x72\xc0\xe7\x98\x3f\xbb\x74\ +\x1d\xd3\xf5\x91\x8a\xd4\x2a\x2d\xb8\xf6\xa9\x5e\x15\x5f\xd6\x7c\ +\xdd\xe3\xb3\xd3\x0d\x0f\xee\x46\x4d\xc7\x2c\x92\xa9\x84\x0e\xa4\ +\x38\xea\x1b\x80\x53\x85\x38\xf3\xa3\x9e\x50\x59\x46\x3d\x5b\x49\ +\x66\x5f\x66\x87\x58\xfb\xf3\xc6\x96\x88\xf9\xcc\x27\xb2\x6e\x40\ +\xcf\xa5\xfc\x04\x30\xb1\xd7\xd9\x2a\xd0\x3c\x0f\x52\x21\x69\x17\ +\x0b\xdf\xcd\x88\xd0\x66\x54\x26\x28\xcd\x93\xd7\x06\x10\x89\x47\ +\x07\x93\xdb\xb9\x81\x4d\x49\x65\x8d\x9d\x90\xc7\x62\xfa\x0f\xb4\ +\x3d\x2d\x5a\x1c\x28\xd8\x1d\xab\x45\xff\xf2\x21\xb8\x6d\x2b\x9d\ +\x4b\xea\x47\xe9\x38\xbd\x38\xbb\x6a\x67\xa7\x37\xed\xfc\x9c\xff\ +\x41\x63\x22\x6d\xd5\x2e\xf8\x09\xc7\x73\x1d\xc7\x74\xb8\x56\x0b\ +\x3f\x4d\x4f\x7f\x89\x27\xcb\x98\x40\xbb\xa7\xe3\xf5\xc1\x83\xa5\ +\x8e\xdb\x23\xff\x6c\xf6\xe1\x92\x9f\x6c\x8c\x89\x33\x0e\x54\xfa\ +\x47\xf4\x85\xd0\xa3\xff\xc3\xa4\x0f\x38\xfd\x9d\xb0\xc7\x13\x6b\ +\xe8\xd5\x3f\x52\xdf\x49\x78\xf4\x1f\x58\x7f\xfc\x22\xae\x62\xe2\ +\xb3\x5e\x32\xfd\x2e\xe3\xbe\xe3\x70\x1e\x85\x64\xdd\xf2\x49\xff\ +\xf8\x92\x13\xdb\x29\x62\x6b\x42\xae\xf7\x33\xf0\x4d\xd9\x05\xbb\ +\x7b\x01\x4e\x96\x7a\xe4\x9d\xf9\xa9\x18\x36\x07\x4f\x1f\x18\xcb\ +\x00\xba\x6f\xc7\xfc\x06\xdb\xcc\x55\xfe\x2c\xc3\x86\x32\xd7\x81\ +\xf8\xff\x5d\x09\x78\x9b\xcb\x07\x0f\x6d\x07\xe7\xe4\xe5\x38\x6c\ +\xc4\x81\x71\x3c\x68\xe9\x1c\xe1\x6f\x1f\xf0\xd4\xb1\x9b\x11\xc3\ +\x31\x53\x38\x31\x49\xe8\x75\xcc\xc5\x42\x64\xdf\x3c\xce\xe0\x5a\ +\xf8\xc9\x34\xee\xa5\xf0\xe9\x01\x77\x10\x71\x9b\x64\xff\xe7\x05\ +\xed\xe8\xab\x46\xbb\xbd\xbd\xa3\x1d\xbd\x3c\x52\xbf\xdb\x97\xe4\ +\x1d\xed\x68\x47\xaf\x20\x7d\x25\x4f\xfe\x3f\x37\x2b\x35\x36\xc4\ +\xdd\x62\xdf\x68\x82\xd2\x91\x71\x07\x1a\x2e\x25\x2e\xc3\x2a\xbc\ +\x25\xdb\x07\x5e\x97\x67\xb3\x49\x37\xb7\x0c\x66\xc0\xc5\x83\x22\ +\x4e\x82\x1a\xd8\x34\x58\xa1\x6e\xb7\x07\x76\x0a\x57\x09\x47\xbd\ +\x63\x00\x43\x09\x8c\x85\x4f\x0c\x7e\x04\xcf\x01\x97\xb4\x19\x76\ +\x8c\x6c\xc4\x79\xb0\xc1\x56\x0c\xf6\x49\xa7\x88\x03\xeb\xb6\xa9\ +\xbd\x7e\x31\x18\x42\xbc\xab\x43\xc7\x07\x85\xfc\x62\xdd\x27\x6d\ +\xc8\x91\xc4\x7a\x4c\x9c\xc5\x60\x4d\xd4\x85\xa9\x06\x77\x26\x1b\ +\x22\x0b\x0f\x6e\x79\x40\x06\x2c\x7c\xbc\x1e\xae\x3b\x06\x65\x7a\ +\x7d\x4c\x64\x09\xf7\x40\x90\x4a\xe4\xc9\x22\x1b\xff\x83\x06\xce\ +\x24\xa0\x07\x79\x72\x82\xcc\x79\xd0\xc5\x67\x31\x94\xcc\x2f\x4f\ +\xbe\x62\xed\x09\x3c\x4f\xc2\xa9\x2d\xe4\xa2\x5d\x31\x91\x86\x1e\ +\x98\xd7\x09\x4e\xdb\x15\xcf\xd3\x6b\xe4\xf5\x13\x6b\x8a\xe5\xbf\ +\xd8\xfc\xdf\x6b\xc2\xf8\xdf\x35\x4f\xae\x89\x73\x4b\xc7\xcf\x44\ +\x72\xfb\x8b\xec\x87\x82\x44\x1c\x73\x3e\x06\xad\x24\x90\x72\x88\ +\x93\xbe\x8d\xb6\xb9\xd4\x70\x08\x14\x98\x96\xf1\x1e\x2c\x13\xb1\ +\x7a\xe1\x28\x81\x1b\x41\x31\x9f\x0b\x40\x9d\xb0\x89\xc9\x60\xd7\ +\x2d\x14\xc3\x18\x03\x39\xf1\xf3\xe9\xae\x5c\x26\x57\x19\x03\x56\ +\xae\xda\xe0\x9c\x3a\x3e\x54\x55\x7e\x5f\x58\xbb\x1c\x22\xf7\xe0\ +\xb9\x21\xde\xaa\x53\xc0\xe6\x16\x08\x6d\x8e\x45\x1a\x65\xce\x3a\ +\x74\xc4\x78\xff\x1b\x15\xa3\x4e\x0e\x29\x24\x1d\x39\x92\x39\x6e\ +\x63\xe2\x4c\x47\x60\x5b\x29\xe0\x52\xc7\xdf\x95\xa2\x57\x2a\x3a\ +\xb2\x2c\x5f\xef\x2d\xda\xf5\xc1\x7e\xbb\x39\x3a\x6a\x8d\x89\xb4\ +\xa3\x83\xf8\x43\x7b\x7e\x5a\x68\x19\x03\x3f\x7b\xe2\xfe\x06\xf2\ +\xbe\xf6\x08\x45\xb2\xff\xcc\x9d\xc1\x91\x7d\x06\x7c\xf4\x96\xce\ +\x44\x98\x27\xdb\xd8\xa7\x92\xd1\xed\x2f\x3f\x06\x6b\x42\x96\x7d\ +\xd0\xf1\xf5\xc4\x17\x03\x15\x70\x8a\x72\x84\x9e\x03\x1b\x1e\x84\ +\x09\x3b\x13\x6e\xe1\xc3\x80\x4f\xc8\xa4\xe2\x38\x1a\xf3\x54\x2e\ +\x0f\x80\x10\x9f\x9c\x49\xaf\x6a\xdf\xc4\xd3\xa6\xf5\x62\xe0\x42\ +\x40\xb7\xd3\x76\x5e\xc6\xf0\x03\xe3\xed\x01\x97\xc0\x09\x15\x60\ +\x59\x01\x66\x65\x33\x94\x71\x53\x7c\xd9\xe6\x7c\xf2\x1b\x71\xea\ +\xb1\x29\x65\x70\xc9\x9c\x1d\x6e\x23\xae\x18\x43\x66\xe1\xb8\x6a\ +\x7f\xea\xbc\x2c\x7b\x5b\xe0\x88\x1a\x98\xf1\xe4\x35\xb8\x64\xcc\ +\x31\x56\x6c\xe7\xf0\xea\xb1\x5e\x69\x4b\xc9\x83\x38\x0e\x3d\x20\ +\xc7\x32\x63\x5e\xe4\xbc\xdd\xcc\x33\x23\x4c\xae\x3c\x39\xf4\x3c\ +\x79\x47\x2f\x9f\xc6\xed\x7f\xd7\x36\xae\x7d\x60\xda\x74\x9c\x19\ +\x45\xcf\xb3\xdd\x41\x1c\x7b\x75\xcd\xf3\x52\x90\x85\xec\x0f\x28\ +\x67\xb8\x00\xc6\xb5\x32\x3c\xe3\xa8\xf4\x5b\x60\xd9\x8d\x3b\x2e\ +\x3c\x08\xe0\xea\x19\x58\xf8\xb9\x24\x86\x34\x71\xdc\x65\xe1\xcb\ +\x36\x1b\x39\x62\x72\x8a\x98\x40\x29\x40\x8e\x4d\xae\x4e\x01\xa8\ +\x5a\x1c\x36\x7c\xa2\x5d\x96\x70\xb2\xee\x57\xc9\x2a\x3c\x19\x54\ +\x78\xbc\x27\x5b\xe5\x88\xa2\xab\xbe\xd3\xc9\x5f\x15\x44\xbb\xd5\ +\x1f\x71\xea\xcc\x91\xdc\x7d\x94\x92\xc5\xa3\x6f\x15\x72\x60\xd1\ +\x87\xa1\x5f\xe2\x49\x35\xf3\x8a\x95\xcc\x8b\xbe\x8f\xdb\x46\x7e\ +\xe5\xa6\x4e\x7e\xe2\x1b\x99\xc2\x8b\x1c\xe2\x38\x45\x5e\xf2\xa8\ +\xbf\xa3\xbe\xce\x6a\xb5\xf2\xcf\x40\x32\xb9\x76\xb5\xba\xf2\x67\ +\x17\xdb\xc6\xdb\x8a\x18\x8e\x17\x31\xf6\x2f\x93\x70\x6b\xf9\xf2\ +\xff\x53\xa7\x67\x57\xed\xf3\xcf\x4f\xdb\x67\x9f\x9f\xb5\xc7\x4f\ +\xcf\xda\xe9\xe9\xa5\xea\xd0\x27\x9c\xfc\x16\x87\xfb\xed\xe4\xe4\ +\xa8\x1d\xdd\xe3\xaf\x3e\x25\x3f\x88\x27\xd8\x98\xc0\x38\x3c\x5a\ +\x08\x5b\xfa\xff\xd8\x98\x3c\x58\x1c\xca\x9f\x49\x0e\x7d\xbe\x98\ +\xb8\x76\xa9\x8d\xbe\xb4\x66\xf5\x08\xf1\x84\x3b\x32\xc4\xf1\x96\ +\x8d\x12\x68\x17\x2d\xba\x7b\x51\x2a\x5c\x4f\x2b\xd4\x21\xa2\xd1\ +\x37\x6c\xe5\x31\xa7\xf2\x0f\xda\xee\xb3\x8d\x7a\xd8\x2c\xfe\xc5\ +\x69\x0a\xf3\xde\xb0\xbe\xad\xf6\xf0\x8b\xa5\xfd\xe4\x04\xf7\xc7\ +\xa9\x51\x2d\xb5\x3d\xb7\x11\x28\x3e\x5b\xad\x63\x4c\x17\x53\x18\ +\x03\x3c\xdb\xb0\x49\x85\xb1\xe5\x53\xae\x8a\xcc\xb5\x88\x77\x10\ +\xc7\x65\x30\x61\x71\x1c\x58\xd6\xca\xe8\x30\x97\x1c\xc7\x2b\x4e\ +\x71\xdc\xde\xb4\xab\x4b\x26\xcb\xae\x3d\x61\xf6\xec\xc9\xaa\x9d\ +\x3e\x5e\xb7\xd3\x67\x97\xed\xfc\xfc\xaa\x5d\x9e\xeb\x9c\x58\xe9\ +\x8c\x5d\xd3\x2f\x51\x0b\xf4\x99\x7c\x74\xb0\x6c\x87\x87\x87\xed\ +\xde\xc9\xb1\xca\xb2\xbd\xf1\xda\x89\x27\x7b\x97\xfc\x5c\xa9\xec\ +\xd1\xdf\xc9\xbe\x85\x88\xcf\x59\xfa\x51\xe0\xc1\xf5\xb9\x0e\xe7\ +\x65\x7d\xe9\xbe\x54\x4d\xa2\xf9\xe7\x17\xad\x73\x6c\x6a\x2d\xf0\ +\x97\xee\xfa\x65\x8b\x89\x38\x64\xb0\xb0\xd1\xb7\xdb\x67\x62\x49\ +\x6b\xed\x7e\x0f\xaf\xf2\x91\x2e\xd0\xdc\x1f\xf9\xe4\x95\xa7\x6a\ +\x09\x5f\x40\xec\x19\x23\x26\xd5\x56\x60\x51\xc9\x32\xb0\x2d\x5d\ +\xbf\xfa\x8c\x69\xc7\xa6\xc0\x88\x0d\x14\x27\x20\xd7\x9f\x48\xf8\ +\xf0\x72\xd0\x26\x26\xad\xb7\x7b\x8a\xa3\xb8\xcd\x83\x5f\xd4\x43\ +\x7e\xe4\xa9\x1e\xec\x50\x4c\x92\xe5\x36\x4c\xbc\xe2\x78\x71\xc7\ +\x05\xb7\x85\x7a\x6c\x73\x4d\xbd\x1e\xb4\x90\xa1\xd0\xa3\xde\x40\ +\x82\xca\xbe\x9d\xf2\x6a\xa2\x38\xa4\xbc\x6e\xc4\x81\xf9\xe2\x44\ +\x90\xfd\x7f\x9c\xa0\x1d\x7d\x15\x68\xb7\xc7\x77\xb4\xa3\x97\x47\ +\xbb\x09\xb5\x1d\xed\xe8\x15\xa6\xaf\xe4\xc9\xff\xa2\x2b\x45\x6f\ +\xe2\xa7\xb6\x01\xc6\xc4\x59\x11\x9d\x67\x5d\x6e\xb9\xf5\xa7\x2b\ +\x0f\xcd\xaa\xe7\x52\x6c\x40\x37\x6c\x9d\x83\xe5\x0d\x6a\x62\xf1\ +\x9e\x6c\x46\xcd\x0b\x4b\x3d\x0b\xb2\x07\x1c\x3a\x3e\xc9\xe5\x57\ +\x03\x25\x93\xac\x74\xba\x3b\x94\x26\x1e\x37\x87\x40\x61\x07\x8d\ +\x1c\x9e\xc0\xc2\x4f\x25\xbe\x15\x6d\xa7\x29\x47\xe7\x5a\x60\xb7\ +\x0f\x72\x60\x7e\x31\xa8\xe2\x36\xc1\xd3\x0f\x8c\x61\x15\x71\xf4\ +\x18\x98\xc9\x5c\xf6\x8f\x81\xa0\x8a\xf5\x44\x55\xc6\xc6\xa4\x5a\ +\xc4\x22\x63\xf7\xe0\x95\xdb\x39\xf9\xf7\x01\x21\xc7\x06\xe6\xf6\ +\xc1\x73\xd2\x8b\x78\xec\xf8\x09\xf0\x37\xb7\x3d\xc9\x86\x0f\xf6\ +\xe4\xfe\xc6\xb6\x70\xea\xf0\xe0\x11\x83\x4f\x9e\x28\x0b\xd9\xdc\ +\xf5\x4d\x71\x8e\xa5\xad\x5d\x57\x5d\x59\x2f\x58\xb5\xc5\x75\x8b\ +\x7b\xfb\x66\x7b\xfd\xd3\x9d\x89\x33\x29\xe7\x27\xee\x14\xcb\x04\ +\xdb\xde\x6a\xd5\x16\x92\xf7\x65\xe7\x69\x36\x9e\x60\x63\xe0\x9a\ +\x12\xdf\x2b\xe5\xb6\x2e\x26\xd8\xb8\x05\xe3\x1e\x2e\x06\xc8\x43\ +\x06\xb5\xcd\x72\x1c\xbd\xf6\x64\xf4\x23\x29\xbc\xc3\x27\xdd\x1c\ +\x53\x1e\x85\x41\xf6\x1d\x81\x4e\x13\x18\x71\xce\x18\xb2\xd6\x75\ +\x0c\x01\xab\x73\x06\xaa\x7a\xa0\xcd\xba\x6e\x93\xbc\x87\x80\xe7\ +\xc5\x8e\x36\xe4\x19\x96\xc2\xf6\x3a\x36\x68\x4c\x34\x57\x6e\xa9\ +\x26\x8e\x83\x2d\xc4\x0d\x36\x96\xa8\x73\x5c\xce\xdb\x51\xd1\x3e\ +\x9c\xa4\x85\x9e\x5c\x0b\x26\xc6\x38\x9e\x78\x3a\x53\x47\x8a\x0e\ +\x19\x8e\x47\xfe\x13\xed\x26\x9f\x46\xdb\x6b\x97\xc2\x57\xda\xca\ +\xfc\x84\x23\x3f\xc9\xb8\xb7\x5c\xb6\xbd\x83\x83\xd6\xf8\xd9\x46\ +\xff\x7c\xe3\x41\x5b\xa8\x2c\x0f\xf3\xbf\x37\x98\x14\x63\x24\x02\ +\x7f\x06\x15\x52\x76\x9b\x25\x7b\x40\x27\x75\x0f\xb0\xa0\x33\xf1\ +\x96\x58\x70\x7c\x32\x0e\x3b\xb2\xb1\xd4\xf1\x73\xee\x28\x3c\xa9\ +\xe6\x81\x18\xcb\xc4\x67\x1e\x97\x18\x54\x0a\xff\x18\x38\xf2\x4f\ +\x33\x4a\xa7\xfe\x3e\x19\x97\x31\x5a\x84\xbf\x63\xc0\xca\x97\x81\ +\x92\xd2\xe1\x0c\x8e\x88\x6a\x12\xd0\x25\x64\xaf\x17\x1c\x1d\xaf\ +\x6e\x4f\x8c\x6a\xac\x5b\x48\x3f\x91\xb8\x42\xb5\xdd\xb0\x49\x05\ +\xab\x7a\xb3\x84\x81\x32\xd5\x1b\x55\x54\xae\xc8\xeb\xb3\xd5\xd0\ +\xe8\x37\xe4\xa8\xbc\x11\x6c\x28\x1b\x26\x36\xe2\x51\x4a\xee\x1c\ +\xf7\x41\xa7\x1e\x8e\xab\x30\x4d\x3e\x65\x0f\x31\x31\x13\x72\x1c\ +\x91\x10\xd7\x82\xb8\x0a\x71\x0d\xd2\xd2\xe6\xc9\x3e\x51\xe5\x18\ +\x6d\x63\xde\xa4\x11\xda\x96\x66\x1b\x6d\x49\xb3\xa3\x97\x44\xb5\ +\x0f\xb6\x6d\xe3\x17\xda\x3f\x38\xfd\x84\xc1\x0e\xab\x58\xf9\x8f\ +\x21\x3a\xc6\xa6\x2b\x63\x52\x1e\x77\xfe\x1c\xb6\x35\x78\xbc\x59\ +\x68\x99\xb6\x44\x02\xe3\x2a\xcb\x67\x70\xe1\xc8\x55\xec\x93\xfd\ +\x13\xbd\xa2\x0f\x42\x01\x0b\xd9\x57\xe9\xc2\x89\xe0\x6d\x39\xe3\ +\x75\x4d\xf6\x2b\x73\x86\x3f\x86\xf0\xab\x7e\x64\xc4\xa6\x2f\x2f\ +\x7c\x71\x04\x83\x1b\x45\x0d\x4c\x57\xfd\x6e\x8b\x12\xed\xb4\x5f\ +\x61\xe9\x53\xfd\x28\xda\xb2\xd6\x67\xbf\x6d\x7c\x6e\xf8\xb3\x03\ +\x9f\x68\x9b\xfd\x84\xf9\xc9\x7b\x26\xc7\xd6\x51\x8f\xbf\x28\xe4\ +\xfc\xe2\xc4\xf0\x15\xa2\x8c\xf7\x7a\xb1\x8e\x54\xe1\xaf\x72\x0c\ +\xf9\x25\x47\x7b\x68\x06\x39\x90\x89\x51\x5e\xd9\xa9\xc7\x4f\xad\ +\xa9\x8f\x73\x79\x75\xe1\x9f\x82\x74\xae\xcc\x11\x87\x80\xae\x2f\ +\xa4\x09\x94\xdd\x21\x71\xcf\xff\xbd\x76\x71\x71\xd1\x1e\x3f\x3d\ +\x6d\x8f\x1f\x5f\xb4\x67\x67\x97\xed\xf1\x67\x67\xed\xec\x5c\x39\ +\x14\x48\x39\x38\x54\x39\xde\xd3\xe7\xdc\x9e\x9f\xb8\x3e\x3a\x5e\ +\xb4\x23\x7d\x06\x1e\x1c\xec\x4b\x96\x7e\x12\x13\x6c\xfe\x4f\x36\ +\xf9\x30\xee\xbf\x3c\xe0\xa9\x20\x7d\x5e\x2e\xe3\x1a\xec\x49\x0d\ +\x7d\xd6\xd1\x98\xba\x16\xf6\xf6\x81\x59\x67\xa9\xed\x18\x57\x41\ +\x5c\xa6\x43\x17\x1a\xe5\x6d\x14\x49\xe6\xd4\x63\x36\x0d\x93\x09\ +\xcb\x94\x9a\x56\x05\x05\xa6\x65\x77\xdc\xd2\x26\x2b\xb7\x73\x07\ +\x71\x4d\x9f\xd3\x94\x1d\xba\x6d\xa7\x8e\x6b\x81\xc6\xc7\x86\x20\ +\x0f\xce\xec\x4b\x9b\xcb\xd6\x69\x50\x36\xf1\xd4\x79\x1a\xba\xa7\ +\xea\x3e\xf4\x87\x52\xec\x56\xb8\x8a\xdf\x65\xd4\xe7\x64\x12\xbf\ +\xa4\x10\x0d\xf1\x9e\xd4\x7e\x8c\x27\x25\x39\xce\x39\x26\x57\x57\ +\x4c\x9a\xc9\xac\xe3\x7f\x75\x75\xd3\x2e\xce\xf9\xc9\xc6\xf8\x09\ +\xc7\x67\xfe\xff\xb3\x75\xbb\xba\xe4\xe7\x4b\xb5\xce\x6b\xe5\xbd\ +\xd6\x31\xa2\x9a\xe8\x97\x1c\xea\xa0\x3b\x3a\x59\xb4\x63\xf5\xaf\ +\x1e\x88\x3f\xb8\x7f\xd2\x8e\x4f\x0e\xe3\x89\xff\x03\x1d\x6f\xfb\ +\x4b\xd5\x2d\x5f\xfa\x2d\xb4\xc3\x0d\x52\xeb\x38\xce\x13\x77\x9f\ +\x8c\x3e\x80\x3e\xd3\xe1\x31\xb9\x96\x13\x68\xfb\xf1\x9f\x6a\xd5\ +\x4f\xa2\xcf\xd0\x7d\xa5\x55\x1f\xc8\x79\x52\x77\x8e\x1e\x43\x3e\ +\xf1\x9b\xa9\x6f\xe4\x5e\x11\x98\x7c\xe2\x17\x04\x68\x0b\xbe\x70\ +\x95\xaa\x43\x7d\x30\x1a\x6b\x44\x38\x7e\x94\xaa\xdf\xeb\x43\x7e\ +\x38\xfd\x35\x5a\xe0\xf8\x58\xc7\xe8\xe3\x58\x30\x0e\x38\xea\x81\ +\x01\x07\x1e\xb1\x61\xa7\x78\x0f\x92\x43\xc5\xba\xdd\x59\x44\xf1\ +\x17\xbe\xd2\xbf\x62\x9d\xd3\x31\x6e\x4d\xd8\x0a\xcf\xf6\xf9\x29\ +\xbf\xc4\x6d\x77\x61\xff\xc8\xce\x76\xa1\x1a\x5b\xf1\x47\x8e\xb8\ +\x7a\x05\x08\x17\xf3\x31\x3a\xe8\x10\x58\xc9\x1b\xe4\x63\xd7\xc6\ +\xb8\x9e\x64\x12\xbf\x4b\xec\x79\xa0\x3b\xf5\x6d\xce\x3b\x7a\x55\ +\x68\xb7\xd7\x77\xb4\xa3\x97\x47\xbb\x09\xb5\x1d\xed\xe8\x15\xa6\ +\xaf\xec\xc9\xbf\x6d\xc5\xaa\xef\x58\xb4\xa9\xbf\x34\xba\xab\xf2\ +\x60\xfd\xe6\x70\xd3\x6f\xb8\x14\xfb\xc6\xdb\x7e\x2c\xb4\x1c\x2f\ +\xd3\xd6\x2d\x58\x36\x81\x99\x05\x06\x2f\xd9\x7a\xf9\xe4\xc0\x04\ +\x4f\xaa\x79\xe0\xa2\xec\x59\x18\x3c\x89\xc1\x92\xc0\xf1\xf1\xcf\ +\x0d\xfa\xc6\x1f\x3b\xcb\x21\x86\x97\x07\x47\x30\x93\xdb\x15\xd9\ +\xd6\x75\xe7\x83\x4f\x31\xd4\x13\x7e\xc0\x5e\x4c\xf5\x0e\x83\x23\ +\xce\x51\xfa\xd0\x36\xdb\x3c\x30\x23\x2c\xb9\xe3\xd0\xe5\xe3\x01\ +\x27\x30\x15\x49\xf2\x89\xf8\x18\xc4\x41\x5f\xa7\x3f\xf9\xa3\xf4\ +\x81\x1b\xfb\x25\x96\xbc\xd7\x45\xfd\xc6\xe5\xb3\x8e\x01\xa2\xd1\ +\x8f\xbc\x6c\x2f\x6e\xb0\xc3\x2f\x64\x4f\xb8\x99\x93\x63\x9d\x3c\ +\x62\x28\x7c\xd3\xda\xf5\x64\x1d\x9e\x8c\x53\x21\x47\x5f\x57\x97\ +\xd8\x26\xfd\x49\x43\x62\xb2\x78\x7d\x89\x59\xaf\xa4\x66\xac\x6e\ +\xee\x79\x6a\x8d\x11\x25\x4f\xb6\xa9\xf0\xe4\x1a\x93\x6c\x4c\xca\ +\xc5\xd3\x6b\x7c\x3f\x34\x8e\x50\xff\x6c\x48\xea\xdc\x78\xf2\x5f\ +\x6d\xdc\x23\x62\x1d\x6f\xee\xc2\x37\x05\x6c\x30\x4b\x6a\x57\x2a\ +\x0e\x1b\xa8\x7c\x94\xd2\x94\xa1\x06\x18\x54\x81\x58\x85\x22\x43\ +\xe8\x12\x06\xd8\xc4\xb9\x11\x42\x72\x05\xa6\xeb\x73\x28\x82\xee\ +\xf4\x91\x79\x9b\xed\x56\xdd\xc9\x6f\xd1\x86\xe3\xcc\x4f\xb6\xcd\ +\x3c\xb7\x81\x22\x0c\x11\x5d\xd2\x98\x6b\x16\x26\x05\x3d\x26\x3b\ +\xf9\xff\x17\x06\x3f\xb5\x3d\xa5\xf2\xd3\x8d\x1c\xae\x4c\x9a\xe9\ +\x30\xf0\xb0\x65\xf0\xb0\xf3\xd3\x8d\x4c\xb4\xad\xe0\xfb\xfb\x6d\ +\xbd\x58\xb6\x76\x10\x3f\xd9\xc8\x20\x0e\x4f\x9f\x2d\x0e\x16\x6d\ +\x9f\x6f\x45\x2f\xe1\xd8\x62\x50\x82\xe2\xc1\x10\x71\x4f\x0a\x31\ +\x80\xe0\x03\x26\x07\x0d\x18\x8c\xa8\x09\x37\xe9\xf1\xa4\x98\x8e\ +\x2a\x63\x40\x31\xd8\x62\x7f\x06\x34\x86\xb8\x18\x1c\x0a\xac\xfb\ +\x38\x47\x0e\x62\x58\x0f\x3f\x62\x19\xbc\xe4\x60\x8d\x3a\xa5\xcb\ +\x27\x6c\x61\x37\xde\x63\xaa\xae\x8c\x77\xdb\x2b\x96\x86\x31\x4c\ +\x54\x58\xad\x27\xf1\xe8\xd4\x2d\xa8\x06\x7e\xca\x4e\x2c\x32\x71\ +\xd6\x25\xe3\xaf\x57\xb4\x5d\x26\xce\x86\xb4\x85\xbf\xdd\xc3\x87\ +\xb7\x13\x67\x9e\xf4\xeb\x3c\xdb\x87\xa3\xe3\xa5\x23\x87\x3d\xf2\ +\xaa\x1a\x71\x06\x70\x3d\x7c\x63\x1e\x76\xe2\xab\x3e\x2c\xe8\x53\ +\x9c\xf3\xc9\xd4\x65\x1c\x6f\x71\xc4\xd4\xed\x4d\x49\xcc\xc6\x94\ +\x8b\xa7\x3d\x18\x0b\x1d\x6c\xf1\x36\xf5\xff\xfa\x60\x69\x73\x59\ +\x46\xca\xb8\xce\x8b\x9c\x74\x4e\x05\x6d\x4b\x03\x6d\x09\xd9\xd1\ +\x9f\x13\xda\xdc\xb5\xb3\x7d\x98\xfb\xff\x2e\x7c\x0e\x4e\x54\x26\ +\x38\x8b\xf1\xf8\x92\x48\x7f\x60\x16\x69\x3b\x9f\xa7\x56\xfc\xb2\ +\x83\x3b\x60\x9b\xb8\x97\x62\xba\xb0\x92\xa7\x62\xa3\x63\x24\x3d\ +\x26\x90\x8c\x94\x4d\x7c\xea\xb7\x70\x15\x46\x8c\x58\xc7\xc3\xd3\ +\x2f\x72\x0a\xa2\xd9\xfe\x8c\x27\x5f\xd8\xfc\xd4\x99\x33\xe2\x16\ +\x31\x68\xb6\x23\x3b\x1e\x3d\xfd\x9c\x28\xbc\xba\x9f\x4b\xd4\x0d\ +\x16\xed\xca\x3a\xf1\x94\xcc\x67\x43\x4c\xd8\x85\x0e\x1e\x6d\x89\ +\x75\xb2\x45\xfd\x19\xe7\xa2\xdf\x41\xd1\x2b\x62\xb1\xc9\xc3\x9b\ +\x23\xfb\x3c\xf2\xf3\xc4\x43\x95\x5c\xa7\xe8\xe7\x90\x4d\xce\xe4\ +\xac\x7c\x51\xa3\xf4\x6a\x53\xe8\xae\x87\xc4\xc8\xf4\xbd\x14\xcf\ +\xaf\x09\x50\xfc\xb4\x9a\x38\xd9\xfc\xa6\x5e\xaf\x08\x57\x9a\xc0\ +\x62\x7f\x3a\x5a\xbe\x2a\xab\x1b\xc5\xad\xdb\xe5\xe5\xba\x5d\x5c\ +\x5d\xb5\x67\x4f\xcf\xda\xd3\x27\x17\xed\xf4\xf4\xbc\x5d\x9c\xc5\ +\xcf\x4c\xd2\x96\xc5\x42\x41\x5c\x73\xf7\x94\x44\x39\x98\x3c\xe3\ +\x73\x10\xce\x7f\xaf\x1d\x1c\x33\xb1\xc6\xc4\x1b\x4f\x6c\xef\x4b\ +\xe7\xe9\xa2\x85\x75\x9e\x70\xe3\xda\x7c\xc0\x4f\x22\xf3\xf9\xc5\ +\x24\x9b\xb2\xc6\x75\x52\x79\x39\x3e\xc9\x8b\x04\x54\x34\xca\x9b\ +\xf4\x3c\x9b\x89\xbc\x5f\x40\xb9\x2d\xb6\x53\xb5\xed\x36\xcd\xda\ +\x78\x8b\xb6\x19\x63\x3f\x76\xcb\x46\x82\xd8\xbf\x69\xc7\x86\xf3\ +\x26\x55\xc8\xf6\x26\x89\x36\x0c\xa9\x46\xbd\x28\xe4\x0d\xd8\x9f\ +\x3c\x3e\xb0\xc2\x12\x84\x9d\x4a\xaa\x22\x49\x5d\x54\x0b\xb5\x7f\ +\xd8\x5c\x71\xbc\x51\x98\x30\xd3\x31\xe3\x27\xce\xd6\x6d\x75\x89\ +\x7e\xd5\xce\xf9\xf9\xc6\x33\xfe\xeb\x4f\xc7\x94\x8e\x9f\x98\x3c\ +\xe3\x18\x57\xbe\xeb\x7d\xd5\x9b\x9f\x9e\x7b\x4b\x1d\x0f\x3a\x3e\ +\x78\x0a\xf2\xe8\xa0\xdd\x3b\x39\x6a\xf7\xee\x1d\x78\x02\x0d\xfc\ +\xc0\xff\x83\x76\xa0\xe3\x46\xfe\xee\x13\xd0\x77\xca\xcf\x7f\x98\ +\x25\xf2\xf0\xb9\x8f\x1d\x9e\x7d\x1e\x39\xe0\x8b\x1c\x93\x69\xf1\ +\xe5\x27\x9e\x4e\xf3\x04\x16\xfd\x2f\xd6\x55\xb9\xed\x07\x96\xf5\ +\x30\xd9\x55\x98\x16\x91\xc3\x72\x4c\x1c\xc9\xb3\xfb\xe9\xa4\x88\ +\x7e\x86\x7d\xc0\x69\x90\x10\xcb\xf2\x71\x5b\x43\xc6\x68\xdc\xf1\ +\x51\xc2\x97\xf5\x60\x85\x24\xdb\xb7\x4a\xac\xa1\x63\x91\xd2\xd7\ +\x98\x5e\x28\x3d\x6f\xa2\x21\x83\x97\x3d\x2d\xc1\xf4\xa6\xef\x16\ +\xb8\x7f\x62\xde\x1c\xd7\xa1\x6e\x3b\xc6\x7a\xc2\xa3\xde\xc0\xe7\ +\xf9\xd8\x1e\xac\x63\xb4\x6b\x6a\x1f\x91\xb4\x0b\x1e\x2f\x0c\x11\ +\x59\x38\x4a\x20\x65\x37\x34\x1e\x7f\xc5\xc0\x52\x36\xc5\x01\x6c\ +\xc6\xa7\x01\x4b\x6f\x21\xe7\x10\x9a\x76\xd3\x5d\xf2\x2d\xba\xd3\ +\xb0\xa3\x57\x80\x76\x7b\x7f\x47\x3b\x7a\x79\xb4\x9b\x50\xdb\xd1\ +\x8e\x5e\x61\xfa\x4a\x9f\xfc\xcf\x5b\xb9\xb1\xb3\xf9\x53\xa1\x31\ +\xf1\xd8\x6d\x01\x47\x0f\xbb\x25\x89\xf6\xd0\xc2\x68\x5d\x92\xc5\ +\xe2\x86\x93\x9b\x52\x26\x40\x02\xdc\xee\x13\x4a\x5d\xce\xe1\x1e\ +\xf4\x31\x37\x90\x32\xde\x92\x73\x80\xa4\xf0\x98\x7c\x8a\x41\x8d\ +\xc2\xca\xd7\x9c\xc1\x89\x9b\x95\x8a\xab\x09\xbf\x10\x78\x4b\x9a\ +\x62\x83\x23\x96\xac\x3b\x4a\xb1\xb2\x19\xa3\xfe\xbc\xa9\x0f\x9f\ +\xb4\x31\xf2\x51\xb2\xeb\x4c\xb9\x17\xd9\x19\x58\x91\xa9\xda\xeb\ +\x89\x26\x71\xeb\x61\x30\x8f\x01\x2d\x60\x06\x70\x48\x25\x4c\xf8\ +\xde\xf5\xca\xb6\x18\x0c\xaa\x78\xea\x25\x3e\x9e\xde\xf1\xa0\x93\ +\x38\x15\xc5\xa0\x90\x72\xd8\x97\x92\x83\x49\xf2\xf1\xa4\x17\x83\ +\x3a\x54\x40\x3e\x06\x7a\xf0\xcf\x52\xb2\x6d\x94\xcc\x6b\x9b\x62\ +\x25\x19\x2f\x3b\xf9\xe3\x7f\x4b\xb2\x5d\x2a\xd6\xe5\xdb\xf3\xd0\ +\x48\xf9\x09\xf0\x04\x59\xed\x3b\xb0\xd8\x3e\x19\x8b\xcc\xbc\xa1\ +\xda\x4b\x1c\xeb\x85\x3f\x13\x6c\x7b\x6a\x27\xed\xf6\xff\xaf\x29\ +\x9e\x01\x34\x26\xd7\x5c\xb4\x5f\xe0\x1c\x93\xfe\xa9\x48\x09\xdc\ +\xb8\xc5\x0d\xa8\x37\x69\xde\xc8\x59\x34\xc7\x27\x6e\x11\x15\x97\ +\x37\x78\x3e\x5e\x43\x9c\x7c\x3b\xdd\x02\x3a\xe1\x1e\xbc\xa4\xf0\ +\xd6\xda\x74\xaa\xe8\x31\x0b\xdb\x72\x6b\x56\xda\x9d\xe2\x94\xfd\ +\x79\x2d\x28\x8a\x9b\xe1\xa2\x2e\x4f\x29\x3a\x3d\xcf\x06\x61\x2f\ +\x93\x7d\x53\x29\x2c\xb8\x96\x05\x24\xcd\xec\x98\xb5\x51\xaf\x19\ +\x10\x48\x0b\x6b\x8c\xc4\xbe\xd6\x1e\x15\xdf\x6b\x97\xda\x77\xfc\ +\x87\xbd\x27\xcf\x90\x85\x5d\x6b\x9f\x78\xeb\xe8\xa6\x9e\x09\xb7\ +\x9b\xc5\xa2\x5d\x2f\x97\xad\xf9\x29\xb4\x85\x7f\xae\x71\xb1\x58\ +\xb6\x7d\xcb\x4c\x9c\x31\x00\xa1\x92\x93\x62\x4c\x2a\x11\xcb\x00\ +\x0a\xbb\x97\x7d\x1c\x4f\x57\x45\x61\xf0\xc5\x36\xf9\xc6\x80\xcc\ +\x7e\xe3\x09\x36\x73\x7c\xc8\x65\x3b\x85\x54\xe4\x21\x16\x9f\xc8\ +\xef\xc1\x1d\xfb\x86\x5f\x4c\x94\x21\x93\x13\x5c\x6d\x15\xf7\xb7\ +\xa1\xc1\xe5\x4f\xbd\x51\xb4\xc2\xa9\x3b\x17\xed\x46\xaf\x7c\x59\ +\x57\xb5\xa9\xeb\x04\xa6\x4e\x7c\xc4\x44\x2e\x64\xbd\x59\xd9\xc8\ +\x89\xa2\xb7\x34\xeb\xc6\xed\x97\x3e\x21\x0c\xf9\x51\x19\x40\xb5\ +\x39\xb1\x8a\x33\x1a\xdc\x58\xc4\x78\x17\x61\x1f\xf2\xe0\x34\xc5\ +\x85\x4e\xf1\xc0\x96\x0b\xed\xcc\x18\xe9\x63\xcc\xe4\x0f\x4b\xbd\ +\xda\x37\xf3\xe7\x5d\xf6\x68\x93\xa4\xb4\x45\x41\xc7\xcb\x4b\xb0\ +\x10\xba\x4f\x40\x89\x9b\x90\xe3\x38\x85\x2c\x55\x18\x82\xcd\x93\ +\x7d\xa2\x8a\x4b\x67\x53\xf9\x8d\x98\xa8\x5c\x9f\x47\x1b\x21\x3b\ +\xfa\x33\xa0\x3b\x76\xd7\x2d\xaa\xdd\x3c\xee\xee\xbe\x3f\xef\x32\ +\xde\x72\x7c\x21\xb2\xb7\x16\x71\xf5\x8c\x58\x67\xd3\x31\x58\x99\ +\xfc\x99\xd9\x49\x78\x1e\x9f\xe0\x78\x55\x6b\x38\x6e\x99\x30\x0a\ +\x3b\xb2\xb8\x31\xbd\xf8\xfc\xd5\xa7\x11\x9f\xd3\xd4\xe5\xcf\xfc\ +\x01\x8f\xbe\x03\x05\x3c\x74\xc7\xc2\x9d\x1a\xbf\x7c\x39\xbd\x7c\ +\x2a\x56\x25\x9d\x66\xfe\x5a\xf6\xb8\x92\xed\xe3\xfc\x16\x4d\xae\ +\x73\x66\xc3\x50\x7d\x08\xe2\xa8\xc3\x8e\x69\x0b\x1e\x45\x7e\x58\ +\xd5\x16\xa6\x9a\xe8\x53\x80\x47\x7f\x04\x9b\xf4\x81\x13\xee\x3e\ +\x0d\x35\x65\x9f\xc9\xba\xfa\x52\xc4\xc4\x93\x3d\xe0\x92\xc5\x9d\ +\x07\x5f\x02\xf1\xdd\xe8\x1f\x82\x7b\x5b\x12\xaf\x36\xb8\xdf\x24\ +\xcc\xf1\xe2\x57\xeb\x2b\x75\x35\xaf\xfd\xe4\xda\x7a\x75\x65\x1f\ +\x62\xd9\x67\xd8\xf5\x46\x22\xa5\xf6\x39\x9f\x5f\xc2\x68\xaf\xfd\ +\x68\x8f\x3e\x2b\x15\x7b\x75\xb5\x6e\xe7\xa7\x67\xed\xd9\xd3\xf3\ +\x76\xc9\xe4\xc8\xc5\xba\x9d\x9d\x9d\xb7\x73\x71\xba\x4d\x0a\x8c\ +\xd8\x7c\x42\xe9\x66\xa1\x3a\x54\xc9\xfe\x52\x7d\x29\x26\xda\x54\ +\x0e\x79\xaa\xed\xde\x61\x3e\xd9\xb6\x6c\x47\x4c\xbc\x1d\xc5\x44\ +\x0a\x3e\x07\x87\x4c\xc8\x21\xeb\xaa\x9b\x13\x6d\x0b\x38\x9f\x2b\ +\xb4\x30\xaf\xa7\x71\x9d\x0d\x9d\x0e\x55\x6a\x49\x6a\x83\x96\x76\ +\xb1\x25\x28\xf4\xf0\x62\x9d\xcb\x32\xf9\x42\xd2\xe2\x9d\x0b\x91\ +\x8c\x53\x96\x39\x51\x73\xd8\xe4\x8c\x50\x31\x9d\xc2\xda\x3f\x17\ +\xd2\x21\xb6\x39\x94\xc2\x46\x1d\x93\xdd\xa6\x24\x81\x7e\xcf\x3c\ +\x7b\xb5\x13\x3a\x04\x17\x25\xe4\xbc\xec\x27\x71\xce\xc1\x8e\xa1\ +\xf9\x14\xe2\x38\x62\xfb\x45\x56\x1f\xf7\x3a\x0e\x20\xf6\xa9\xff\ +\xa7\x4f\xc7\xd2\xd5\xe5\x9e\x27\xc8\x56\x4c\xbe\x5e\x31\x71\xc6\ +\x93\x68\x37\x3e\x2e\x2e\xce\xb1\xeb\x58\xc4\x2e\x5c\xb7\x15\xee\ +\xff\xfb\xdb\x61\x37\xfb\xae\x67\xa9\xcf\xe5\x25\x3f\xdf\xa8\xbe\ +\xd5\x21\x13\xad\xcb\x03\xff\x84\xe8\xc9\xf1\x81\x8e\x0f\xe9\x7c\ +\x69\x49\xfd\xad\x03\x95\xfa\x09\x6b\xda\xe8\xcf\x7b\x24\x6d\x14\ +\x3e\xe7\xc1\xb5\x3a\x6e\x2d\xeb\x13\xfd\x1c\x26\xcb\xc2\x66\x3d\ +\x39\x13\x69\x7e\x42\x9f\x89\x38\xe9\xf6\xf1\x67\x3b\x31\xf0\x8c\ +\xc9\x62\xac\xf2\x50\x37\x7d\x09\x26\x8d\x88\xe5\xe5\x18\x5a\x53\ +\x7e\xe4\xa5\x31\xf8\x65\x91\x0f\xf6\x68\xab\xd7\x20\x30\x6c\xc4\ +\xd9\x9d\x05\x72\xc6\x90\xb2\x4f\x74\x61\xcf\x75\x07\xb6\xcf\xb4\ +\x0d\x8c\x8e\x3c\x4b\xf8\x4f\x36\x72\x19\x2b\x1b\xe7\x0c\x79\x58\ +\x37\x20\xb5\x25\x28\x7c\xbc\xfe\x76\x15\x37\x36\xca\xd9\x56\xbd\ +\x30\xf0\x72\x7f\xd2\x76\x15\x25\xbc\x61\x5b\x70\xd8\x80\x6f\x3e\ +\x99\x16\xc9\x6c\x63\x3b\x96\x6c\x18\x39\x77\x68\x4c\xa6\x05\x66\ +\x5b\x1e\xa7\x9d\x12\xdb\x84\xa9\x29\x42\xcb\x98\x54\x3e\x23\x06\ +\x8d\x78\xcf\x33\x24\xdc\xd1\x2b\x47\xbb\xbd\xbf\xa3\x1d\xbd\x3c\ +\xda\x4d\xa8\xed\x68\x47\xaf\x30\x7d\xa5\x4f\xfe\x3f\x77\x2b\x37\ +\x36\x88\xae\x4c\xdc\xce\xf9\xfe\x4e\xa6\x59\x1f\xb7\x2e\xcb\xbe\ +\xe9\x0b\x6e\x82\xfb\x3d\xe8\x66\xb7\xf5\x2a\x81\xc1\x55\x57\xea\ +\xdc\x40\x1a\xb7\xca\x22\x6f\x30\x29\xdc\x58\xa6\x9e\x0e\x69\x53\ +\x0c\x61\x89\x19\xe7\x65\x39\xf1\x1c\x40\xb1\xcd\x85\x14\x99\x2b\ +\x4b\xc9\xa3\x1f\xdc\xf7\xb3\x65\x73\x89\x36\x76\xff\x59\x21\x27\ +\xfe\x6b\xdf\xb8\x06\xc6\xcd\xac\x38\x2f\xaf\x43\xf0\xf0\x85\x57\ +\x49\x5d\x37\xcc\xe6\x1e\xe4\x51\x31\x27\x8c\x41\x96\xd4\x7b\x1e\ +\x06\x6d\x54\x97\x62\xbc\x0d\xd3\x5e\x7e\x31\xb8\x53\xba\xd6\xc5\ +\x37\xd6\x93\xdd\xf9\x3d\x80\x14\x7e\xf6\x29\x7b\xd6\xcd\x53\x6a\ +\x1e\x30\xa2\x4e\x95\x6a\x67\xcf\x29\x9d\xff\x46\xab\x81\x22\x70\ +\x7e\xd2\x91\x9f\xa1\x14\xe0\xbc\xc4\x21\x13\x1b\x39\xaa\xad\xb1\ +\x0e\x70\x26\xd3\x58\x17\xec\x3c\xe9\xe6\xc9\x35\xd9\xfc\x04\x1b\ +\x39\x15\xc3\xd3\x6b\x7d\x92\x4d\x9b\x39\x26\xd8\xc0\xe1\xdc\x3c\ +\x2a\xaf\x88\x43\x95\x9b\x40\x0a\x3f\x04\x17\x7c\xc0\x53\x86\x1c\ +\x5f\x9a\x19\x0b\xf2\x94\x87\x48\x22\xa9\x23\x7b\x2c\x67\x54\xae\ +\xb7\x4c\xb7\x7d\x87\xac\x92\xe7\x76\xc6\xea\x36\x69\x4b\x6b\x44\ +\xa1\xcd\xb0\x2d\xb1\xd0\xa6\x4f\xb9\x8d\x78\xcf\x6f\x3b\xaf\x20\ +\x1f\x87\x70\x2b\x2c\x82\x69\x2f\xba\x94\xcc\x04\x19\xc5\xba\x16\ +\xdc\x50\xdb\x47\x02\x13\x5c\x4c\x9c\xad\x75\xc3\x7f\xcd\xcd\xbe\ +\x6a\x32\x47\xe7\x1b\xc5\x14\x4f\xa2\x31\x51\xc6\xa0\x88\xf8\x52\ +\xb7\xfa\x92\x63\xe2\x2c\x07\x37\x88\xf1\x20\x8a\x92\xab\x78\x90\ +\xc2\xb2\xec\x34\x1e\x1f\x09\xde\x9b\xf2\xf3\x37\x94\xf1\xa7\x38\ +\x2f\x3c\x75\xd9\x18\x7c\x61\xe0\xa1\xe4\x18\x8c\xd1\x51\x22\x7b\ +\x0c\x50\x0c\xf1\x60\x5d\x96\x6f\x0d\x6a\xd0\xc6\xac\xcf\x31\xe9\ +\x33\x4d\xba\xd1\xac\x85\x27\xdb\xc0\x25\x84\xbf\x0c\xfe\xd9\x47\ +\x86\x1f\xf0\x33\x8e\x8c\x5f\xd8\x63\xbd\x90\xb3\xe4\xd3\x67\xf8\ +\xd5\x93\x68\xf5\x0d\x67\x29\x7a\x73\x9c\x2b\x87\x64\x81\x96\xe5\ +\x10\x5c\x6f\x09\x52\x23\x2e\x00\xdc\xca\x1f\x73\xe4\xc0\x56\x39\ +\x24\xf0\x0e\x3b\x31\xe4\x75\xfb\x1c\xa0\x77\xf8\x44\x7c\xf9\x97\ +\x3d\xf2\x84\x4c\x6d\xa9\xb3\x1d\x12\xe7\x65\xd9\xeb\xb0\xe9\x3f\ +\xb7\x17\x1e\x3c\x6d\x2e\xb0\xe0\x63\x7c\xf9\xcd\x88\xd5\x83\x80\ +\x7d\x9c\x86\xc0\x12\x7f\x9b\xf3\x1a\x72\x9b\x2a\x17\xf6\x8d\xbc\ +\xdb\x28\xeb\xb8\x93\x5e\x20\xc5\x8e\x5e\x22\xd5\xbe\x78\xd1\xed\ +\xbe\xb9\x9b\x67\xfb\x72\x54\xd2\xa9\xef\xef\x99\xe3\x76\xea\xbe\ +\x49\xc8\x4e\x93\xd7\xdb\xf1\x18\xb4\xac\x92\xd7\xd7\xf2\x29\xbc\ +\xfb\x72\xee\x72\xbd\xd5\x67\xa4\xfb\x1c\xa2\xcc\xa6\x57\x7c\x66\ +\x13\x13\xd7\x74\x7d\x5e\xd3\x6f\x70\x28\x32\xa6\xf0\x31\xe7\xea\ +\x5d\xb2\x7d\x88\xc1\x09\x38\xe2\x8d\x60\xb3\x1f\xa5\xe2\xca\x1f\ +\x36\xc6\xc3\xe0\xe1\x8b\xcc\x67\x44\x38\x80\x21\xe2\x0f\x9a\xba\ +\x5e\x91\x03\x5d\xed\x4d\x7c\xcc\x1b\x7d\xc7\xf2\xc1\x83\xf5\x49\ +\x39\x71\x75\x7c\xdc\xc7\xb1\xd5\x93\x65\x11\xd7\xdb\x21\x5e\x38\ +\xc5\x4f\x98\x59\x8f\x12\x13\x66\xb2\x29\x47\xb5\xd9\x58\xee\xc8\ +\xe8\x1f\xa1\xcb\xce\xd3\x6d\xe4\xb5\x1b\x79\xa7\x12\x4f\xae\xad\ +\xa2\xbf\xa5\x8d\x1e\xf5\x72\xdd\x16\xf7\x7a\x79\x6f\x28\x17\xeb\ +\x14\x6d\x01\x8b\x27\xbd\xc5\x85\x93\x03\x8c\x27\x92\x2e\xce\x57\ +\xed\xf2\x82\xff\x6e\xbb\xf2\xff\x61\x9d\x9e\x5f\xb4\xb3\xb3\xcb\ +\x76\xaa\xc2\xff\x62\xf1\xbf\x6e\xfe\x82\x94\xae\x6d\x5c\x9e\xa1\ +\xfd\x03\x5a\xcd\x35\x98\x07\xbf\xe3\x27\x24\xf7\x99\x4c\x3b\xe0\ +\xe9\xb5\x65\x3b\xe0\x3f\xb1\x24\x1f\x7a\x72\x2d\x26\xe1\x62\xb2\ +\x8d\x27\xde\x98\x98\xe3\x67\x25\x15\xc3\xe7\xb2\x72\x78\xb2\x44\ +\x9f\x47\xf5\xf9\x1b\xc7\x61\x56\xa6\x4a\x58\x07\x60\xb6\x7d\x5c\ +\xb3\x25\xa5\x1b\x04\x03\x8d\x45\x82\xe9\x5d\xc6\x78\x2a\xa6\x6c\ +\x76\x9c\x5c\x51\x59\xbf\xd0\x26\xbc\x13\xb1\x3d\xca\x99\x53\x30\ +\xd1\xb6\x89\x66\x4a\x6c\x7f\xd1\x1c\x1d\xab\x4e\x4b\x6f\x9b\x48\ +\x6d\x05\xad\x2f\xe6\xf1\xa9\xe2\xdd\xe8\xc2\x64\x36\x3c\xfc\xe3\ +\x98\x0e\x9c\x49\x30\x26\xcc\xd8\xf5\xeb\x95\xf4\x2b\x26\xcb\x74\ +\xcc\x5c\x22\xef\xf9\x3f\xcd\x2e\xcf\x85\xc9\xef\x4a\x76\x7c\x78\ +\x9a\x71\x8d\x8f\x82\x74\xb8\xfa\x98\xe2\xcb\x4b\x5a\xb8\x0e\xf5\ +\x32\xb4\x7e\xda\x67\xda\x3f\xfc\xbf\xde\xa1\xfa\x59\x87\x27\x47\ +\xed\xe4\xf8\xa8\xdd\xd3\xbe\xbe\x77\xc2\x7f\xce\xb2\xef\xe3\x29\ +\xff\x03\x7e\x1e\x54\xfb\x33\x26\xab\x94\x67\xf8\x4c\x87\xe0\x94\ +\xea\x1f\xb1\x76\x10\xba\x7f\x4e\x94\xc9\x34\xd5\x13\xfd\xa3\xc8\ +\xe3\x42\x5f\x86\xb6\xe8\x18\x09\x3d\xf2\x97\x1f\xc5\xf1\xc8\x19\ +\x13\x75\x95\xdf\x24\x07\x57\x7f\xce\xd5\xd3\xcf\xa3\x8d\xc4\xe1\ +\x37\xb5\xd1\x98\x4b\xe8\xbd\xcd\x85\xe5\x8b\xa0\xf2\xb1\xdd\xdb\ +\xcc\x6b\x65\xae\x48\x16\xe1\xdb\x7d\xd2\x3f\x79\xe1\x85\x45\xc0\ +\x60\xcb\x57\xc9\x21\x2a\x3f\x75\x93\x1f\xe2\x40\x70\x0c\xdb\x42\ +\x0e\x56\xa3\xad\xa1\x68\xbb\x10\xdd\xdb\xaf\x90\x01\xeb\xeb\x45\ +\x61\x12\x0d\x0f\xdb\x65\x73\x15\x11\x53\x38\x92\x9c\xad\xbb\x0a\ +\x8e\x1b\x30\x2f\x53\x8e\x77\xc8\x5b\x28\x8e\xe2\x4a\x9f\xfd\x27\ +\x93\xa4\x52\xb6\x85\x7a\x5d\x43\xec\xd4\xfd\xb7\xd7\xb5\xa3\x57\ +\x87\x76\x47\xc0\x8e\x76\xf4\xf2\x68\x37\xa1\xb6\xa3\x1d\xbd\xc2\ +\xf4\x95\x3f\xf9\xff\xdc\xac\x60\xf5\x6c\xc7\x06\x45\x07\x7b\xbc\ +\x04\x97\x87\xb9\xe1\xb4\xe5\x8d\x5b\xc9\xc1\x79\xb3\x08\x1d\x7b\ +\xaf\x21\xfd\x2d\x33\xa8\x00\x75\x2c\xb9\x0a\x98\x9d\x74\xa3\x19\ +\x6a\x0c\x40\xd4\x00\x08\x85\xe1\x0b\xb8\x63\x36\x72\xc1\xb5\x08\ +\x5b\xea\xbc\xcc\x9d\xa3\x06\x9e\xc2\xcf\xb9\xbb\x3d\x4a\xc9\x13\ +\x47\xd4\x02\x4f\x63\xd5\x26\x4a\xd5\x9d\x39\x91\x47\xbf\x75\xe0\ +\x61\x23\x2c\x26\x8e\x3c\xa1\x94\x31\xb7\x8a\xd6\xc9\xb6\xaa\x43\ +\x7a\x0c\xdc\x84\xac\x85\x65\x30\x26\x9c\xfc\xa4\x97\xfc\x62\xb0\ +\x86\x81\x1a\xec\x51\x46\xb9\x17\xc5\x31\xf8\xc3\xe4\x5f\xff\x66\ +\xb5\xee\xca\x25\x4e\xfe\xf8\xa4\x2d\xf4\x9c\x38\xc1\xd7\x3c\xea\ +\x07\x97\x93\xb9\x0b\xeb\x2b\x9b\x63\xfc\x38\x1a\xcd\xcd\x18\xc7\ +\x95\x4c\x9d\xe9\x97\xf1\x1e\x9b\x50\x3c\x6d\x21\x0f\x79\x5d\xd6\ +\x6b\x4f\xb4\x59\xc6\x4f\x72\xfd\x3c\x24\xeb\x4d\xbc\x27\xd4\x88\ +\xd7\x82\x3c\x1c\xc7\x4c\xa8\x71\x7f\x4a\xf1\xb8\x0f\xba\x3c\x38\ +\x26\xb9\x05\x0c\xde\xef\x39\x23\xde\x27\x40\x30\x68\x36\x9e\x93\ +\x34\xaa\xb3\x7b\x40\x19\xc2\x16\xb9\xb7\xd1\x78\xeb\x09\x75\xbf\ +\x84\xef\x8e\x0b\xaa\xe8\x99\x7e\x47\x6c\xf9\xb2\x69\xb6\xd1\x68\ +\x47\xd6\xd6\xed\x20\x7b\x0f\xd1\xb8\x16\x14\xcb\xaa\x05\x3f\x8e\ +\x05\x73\x17\x8e\x05\xfc\x63\x02\x2d\x36\xbe\x6e\xec\x17\x0b\x4f\ +\x84\xf1\x73\x3c\xc8\x4c\x9c\x79\xb2\xac\x26\xd0\xfa\x93\x67\xe1\ +\x4b\x1c\x83\x02\x71\x7f\xef\x85\xe2\xf3\xa6\xdf\x03\x07\x92\xd9\ +\x99\xe9\x17\x7a\xe2\x2a\x1e\x8c\x21\x2f\x03\x0c\x92\x99\x28\x73\ +\x5d\xb6\x27\xe6\x38\xfc\xc4\x98\x94\x22\x2f\x6f\x62\x33\x07\xf1\ +\xb4\xdf\x13\x6d\x19\x43\x2c\xeb\xc2\x64\x1d\x03\x8a\xe0\xbd\x4e\ +\xe7\x96\x8f\x0e\xb2\x1a\xbc\xf1\x40\x12\xb1\xd8\xd3\x57\xa0\x7d\ +\x2b\x9f\x63\xd0\xe1\xe4\xc4\x07\x9b\x1b\x54\xb9\xa8\x0b\x18\x9f\ +\xd0\x71\x73\xfd\xde\x4c\x60\xc4\x51\x1f\x72\x6d\x2b\x6c\x0e\xb4\ +\x5f\x1a\xcc\x89\x9c\xb6\x63\xd8\xec\x65\x9d\x6f\x9e\x07\x4e\xe1\ +\x8c\x71\x84\x52\x01\xb0\x3e\x12\x32\x3e\xeb\xb1\x5d\x02\xb8\x63\ +\x33\xd8\xb2\x60\xb6\x33\x27\xa0\xe3\xa6\x76\xfb\x7f\xee\xec\x93\ +\x31\xb4\x3f\xac\x19\x9b\xc5\xb9\x1d\xe4\x83\xd0\xbe\x86\xc2\x1e\ +\xa6\x94\x69\x5e\x18\x27\xe2\xc0\x1d\xc8\xc7\x97\xc8\xc7\x82\xc8\ +\xe6\xbb\x4e\x92\x5b\x34\xe6\x26\x66\xa3\xae\x17\xa1\x9f\x20\x64\ +\x47\x3f\x21\x8d\xbb\xf5\x45\xb7\xfb\x66\xcc\x5d\x87\xc6\x66\xbe\ +\x17\x3d\x86\x7c\xdc\xc9\x77\x8b\xbb\x3f\x4f\x65\x88\x54\xe5\x10\ +\xbe\x71\x45\x0e\xbd\xdb\x25\x18\xef\x29\xb1\x71\x65\x8e\xcf\xd4\ +\xf0\x8a\x89\x18\x7f\xfe\xda\x8e\xce\xf5\x3b\xae\xf2\xe0\xbe\x7e\ +\xf3\xf9\x9a\xf6\xc2\xf1\x73\x16\xb8\x65\x38\x00\xb1\xc0\x59\x4f\ +\xda\x22\x1e\x16\xf6\x74\x0e\x1f\x21\x46\xbb\xbf\xea\x93\xe8\x89\ +\x31\xfb\x54\xbb\xad\x60\x15\x47\x27\x8a\x18\xb5\xd8\x7a\xe0\x50\ +\xc4\xaa\x48\x55\x4f\xc8\x71\xb5\x3e\xe0\x31\x71\x95\x39\xf0\xb9\ +\x59\x89\x93\x4d\x36\x66\x22\xc0\x79\x11\x23\x3c\xfc\xe9\x17\x11\ +\x43\x9f\x28\xfa\x48\xf1\xc5\x23\xf4\xc8\xcd\x2b\x62\xa9\x86\xbe\ +\x91\x93\x47\x3c\xb8\x4b\xe4\x84\xa3\x87\x1c\xed\x59\xe5\xcf\x60\ +\xfb\x3f\x6a\xf1\x25\x0f\xa9\x5c\x6f\xc4\x4c\xc7\x17\x75\xd5\xf5\ +\x30\x55\xea\x54\x1f\x0e\x7f\x26\x00\x99\x6c\xb9\x38\xbf\x6a\x97\ +\x57\xab\x76\x7e\x7e\xde\xce\xce\xf9\xa9\xc8\xab\xc6\xd3\x6d\xfc\ +\x0c\xe0\xc5\x25\x3f\x41\x79\xe3\x27\x9b\xbc\x9e\x4a\x93\x97\x3f\ +\xa5\xa6\x76\xf5\xb1\xea\xc9\x36\x7d\xe4\x30\xe1\xb6\xcf\x4f\x49\ +\xea\xf3\x94\x9f\x59\x3e\x3a\xe2\x27\x97\xf7\xdb\xa1\x38\x13\x30\ +\x4c\xa4\x2d\xd0\xf9\x4f\x2d\xe9\x4c\xc4\xf9\x7f\xdb\xb0\xf9\x29\ +\xb7\xc8\xcf\x47\x04\x6d\x8d\x2f\xae\xc4\xe7\x84\xeb\xd5\x22\xab\ +\x17\x51\x7f\x7e\xde\x86\xd1\xa8\x2f\xd4\x6a\x9b\x2f\xe9\xa6\xb0\ +\xe1\x6d\x62\x1b\x89\x2a\xdf\x64\x28\x8a\x3a\x6c\xaf\x9c\xca\x07\ +\xaa\x2d\x67\x7f\x42\x9c\xd1\xed\x91\x0f\x6d\x40\x15\x8e\x0f\x9b\ +\xa6\x4f\x6a\x52\x9f\x0a\x7a\x64\x63\x3f\x89\x59\xc1\xa6\xfd\xba\ +\xe2\x38\x01\x8f\x63\xc6\x93\xac\x3a\xcc\xbc\xcd\x3d\x11\xd6\xbc\ +\x0f\x56\xfc\xfc\x22\xf2\xe5\x8d\xf6\x57\xec\xbf\x6b\x9e\x3a\x53\ +\xbf\x77\x75\x89\x5f\x16\xf6\xb1\x70\x57\xcd\xff\x9c\xb9\x7d\x7c\ +\x6e\xd2\x06\xb6\x4c\xac\x0d\x93\x52\xfc\x42\x36\x3f\x2f\xbd\x3c\ +\x64\x82\xec\xa0\x9d\x9c\x1c\xb4\x63\xed\x2f\xf8\x11\x3f\x01\x7a\ +\xc8\x24\x1a\x4f\xa0\xc5\xd3\x87\xbd\x7f\x42\xf3\x63\x23\xe5\x76\ +\xf0\xda\x48\x94\x0c\xce\x5b\xfb\xa2\xfa\x3a\xe8\xf4\x91\xfc\xb3\ +\x8d\xf4\xb7\xf8\x25\x01\xf7\x4b\xe4\x43\x0c\x79\x91\x9d\x9b\x98\ +\xc8\x13\xfd\x32\x90\xac\x57\x25\x7e\xfa\x91\xfe\x41\xfa\x39\x26\ +\xfd\x7d\xac\xd0\x9f\xa3\x45\x69\xc3\x87\x78\x72\x11\x1b\x9b\xc0\ +\xb2\xe3\x32\xc6\x11\xf8\xba\xd4\xc1\xc8\x7b\x7a\x29\x49\xf8\xf3\ +\xca\xbc\xc0\xc1\xd1\x61\x5e\x86\x9e\x72\xe4\x04\x0a\x3f\x6a\x36\ +\x90\xb6\xc9\x27\x65\xdb\x71\x01\x8b\x75\x98\x7c\xc3\xa3\xb6\x5f\ +\x34\xa1\xec\x2c\x73\x9d\xa9\xcb\xd8\x84\x87\x1e\x71\x91\x2b\xe3\ +\x12\x77\xbb\x70\x63\xdf\x49\xf6\x97\x88\xa8\x3f\x76\x6e\xc4\x20\ +\x67\x8c\xc9\x79\x40\xa6\xe5\x9d\x64\x33\x0b\x0e\xce\x49\xec\x7c\ +\xa4\x31\xd5\x68\x1b\x7d\xb3\xee\x1d\xbd\xba\xb4\x3b\x02\x76\xb4\ +\xa3\x97\x47\xbb\x09\xb5\x1d\xed\xe8\x15\xa6\x57\xe2\xe4\xff\x99\ +\xaf\xe4\xb6\x06\x54\xcf\x96\xae\xb5\x6e\xe0\xba\xc6\x45\x39\xe5\ +\xec\xed\x20\xc7\x1d\x5e\xf8\x59\x4e\x3e\xd3\xd1\xfc\xce\x1b\xd3\ +\x94\x43\x90\x94\x7e\xf0\xc2\x75\x4f\x2a\x16\x13\x24\x58\xed\xe3\ +\x41\x86\xb8\x51\xb5\x8f\x6d\xc1\x3d\xa8\x11\x8e\xa9\x27\xef\xf6\ +\x81\x47\x65\x89\x65\x5c\x0e\xe0\x58\x4e\x6c\x5e\x17\x72\xc4\xc9\ +\x9a\xd8\x64\x43\x64\x20\x65\x8a\x21\x63\xc8\xb6\x31\x38\x65\x39\ +\x0b\xbe\xac\x8f\x5c\x6e\xd9\x9c\x2f\x72\xc4\xc0\x4a\xe8\x1e\x88\ +\x91\x4e\xd0\x38\x40\x63\x4c\xc5\x83\x47\xf0\xd4\x6d\x87\xab\x70\ +\x53\xef\xc9\x29\xc7\x96\xcf\x14\x8f\x6e\x6e\xbd\xe2\x54\x67\xfa\ +\x1b\x2b\xd9\x79\xc3\x56\xb2\x16\xae\xdf\x71\xb4\x03\x39\xb9\xc7\ +\xab\x9c\x37\xd7\x33\xfd\x6d\xee\xf9\x68\x1b\xc7\x47\xc6\xe3\xe3\ +\xa2\x18\xd7\x4f\x19\xf2\x67\x8e\xf0\x11\xf7\xb7\xb6\xe1\x14\xea\ +\xc6\xa6\x22\x5f\x4f\xb8\xe9\x98\xd5\x3d\xb3\xef\x2b\x63\x42\x2d\ +\x06\x68\x38\xc6\x03\x9b\x8e\x71\xb0\xb8\xb5\x94\x02\x86\x01\xdc\ +\xc7\x7d\x2a\x25\x9a\x75\x21\x28\x73\x14\x15\x5c\x14\xfa\x64\x2f\ +\xea\xb8\xe3\xb7\xd3\x3c\x6a\xca\xa4\x35\x9e\x19\xa7\x9f\x6b\x29\ +\xbb\x8a\xed\x78\x86\x4d\x5b\xa7\xdb\x20\x36\xa5\xb6\x62\xf7\x2d\ +\x3b\xdc\x9b\x1b\x4c\xa1\x4c\xa6\x91\x63\xad\x8d\x65\xce\x86\x95\ +\x6d\xb5\xd0\x56\x64\x23\xe5\xe4\x98\xff\xf3\xcc\x03\x2d\xfb\x31\ +\xd8\x62\xae\x1b\x79\xbe\xd9\xbe\x84\x33\x10\x12\xdc\x37\xf5\x2a\ +\xe6\xca\xe7\x6f\x59\xef\x2b\x3f\xba\x72\x7b\x32\xa5\x7c\x18\x3d\ +\x31\x0f\xd9\x03\x2d\xe6\xca\x43\x1d\x0c\x2e\xb8\x9e\xb0\xc5\x24\ +\x15\x21\xd4\x97\x39\xf0\x9d\xc5\xc7\x80\x8d\x07\x25\xc0\x54\x5c\ +\x27\x5c\x58\x4c\xae\x85\x1d\x1b\x25\x6c\x69\x07\xc3\x87\xc1\x48\ +\xd6\x4f\x47\x54\x0d\x1e\x4e\xbe\x19\xef\xba\x29\xd4\x05\x46\xfb\ +\x42\x97\x63\xf8\x49\x72\x3b\xb4\x1e\x81\x19\x08\x1b\x7e\xce\x55\ +\x3a\x1b\x28\xf2\xa0\x87\x1c\xbc\x64\x44\x29\x51\xac\x0f\xb1\x95\ +\x5f\x36\xda\xed\x59\x67\x64\x33\x16\xb4\x01\x1d\x7f\x20\x64\x0b\ +\x96\x13\xe4\x2d\x1e\x6d\x08\xdc\x3b\x2e\x74\xe7\x95\xea\xba\xb0\ +\xa5\x8f\x90\xda\xae\x55\x5c\x1f\x0c\xef\x5c\x57\xe4\x80\xd0\x53\ +\xb3\x7f\xf8\xc5\xb6\x4b\x3d\xc0\x89\x58\xc5\x81\x7c\x76\xab\x6d\ +\xe1\xa5\xa5\xde\xbe\xa6\xfc\x58\x44\xf4\x18\xb3\x51\xe7\x17\xd1\ +\x8f\xe9\xbe\xa3\x97\x40\x3f\xee\xee\x7a\xd1\x43\xa2\x0e\x05\xf3\ +\x1f\xe3\x38\x72\x1b\x32\xf8\x56\x98\xaf\xe8\x1b\xc7\x25\x7e\xa1\ +\x17\x1e\x5e\x08\x48\x71\x4c\x1b\x8b\xb7\xe0\xbc\xa2\xdb\x0e\xe9\ +\xf3\xd3\x7a\x7c\x5e\xa3\x9b\xf3\xb9\xab\x97\x3f\xc3\x91\xcd\x41\ +\xca\x96\x9f\xbb\x7e\xb3\x28\x7b\xe9\x19\x43\x15\x96\x2d\x44\x8c\ +\xed\xe9\x6b\x6e\x63\x62\xf1\x19\x4d\x0d\x11\xc7\xb5\x9f\x7f\xd0\ +\x94\x6a\x2c\xda\x14\xbe\x30\x78\xf4\x23\xa2\x5d\x30\xf8\xe8\x43\ +\x4e\xb8\x74\xfb\x54\x0e\xad\x2b\xf5\x69\x93\xac\xd9\x2e\x65\x53\ +\x1f\xc3\xfd\x21\x34\xf9\x79\x1b\x48\xaf\xbe\x90\xfb\x40\xee\xa3\ +\xc5\xcf\xed\xc5\x93\x6b\x99\x2f\xfd\xbd\x5d\xa5\xab\xeb\x41\xc5\ +\x96\x29\xe4\xa5\x16\xd7\x25\x56\xfd\x27\x74\x4f\xb4\xf4\xa2\x36\ +\xa8\x0f\x33\xfe\x9c\x64\xe4\xc8\x7c\xda\x20\xee\x53\x58\xb7\x12\ +\x3e\x6a\x9f\x5f\x92\x69\xa7\x16\x8e\x41\x27\xff\xd5\xd5\xaa\xad\ +\xd4\x28\x26\x64\xae\x2e\x2f\xfd\x64\xd3\xc5\xf9\xa5\x27\xd6\xf8\ +\x3f\xad\x73\xf8\x39\x13\x6d\xab\x76\x7d\xd5\xfc\xf3\x94\x2b\xc5\ +\xe0\x17\xc7\x0a\xf5\x51\x25\x4f\x20\xa9\x05\xba\x9e\xf3\x9d\x17\ +\x3e\x97\x98\xb0\xe1\xba\xeb\xcf\x39\xae\xed\x3c\xed\xc6\x44\xda\ +\x01\x3f\x27\x59\x5c\x9f\xab\xc2\x79\x3a\xca\xff\x23\x2a\x3f\x26\ +\xde\xfc\xd9\xc6\x84\x9b\x2e\xf5\xf1\x39\xc9\xc7\x00\xd7\x71\xf5\ +\xc7\xfc\xd9\xcd\xa7\x80\x70\xf9\xc6\xe7\x32\xeb\xa6\x3a\x38\x30\ +\xe4\xef\xcf\x2f\x35\xcc\xf5\xb3\x31\xc0\x65\x77\x7b\x51\x6d\x47\ +\x90\x0f\x36\xc8\x46\x48\x82\x73\x22\x87\xb1\xb6\x23\x3a\xdb\xcf\ +\x0b\x9b\x62\xdb\xc6\x53\x5f\xc0\x1c\x2f\x89\x19\xd0\xb1\xa4\x6d\ +\xab\x4d\xed\x10\xed\x46\xeb\xfe\xa9\x45\xcb\xda\xcf\x57\xda\xfe\ +\x14\x4f\x92\xf1\x33\x8c\x2a\xe6\xf8\xc5\x04\x9a\x27\xda\x54\xc8\ +\xc7\x7a\x20\xdc\xa8\xb3\xc5\xf6\xa0\x19\xac\x4f\xf4\x1b\xb4\xfd\ +\xd8\x8e\xee\x3f\x30\x21\xc6\x93\x83\xcb\xf8\x39\xcf\xc3\x45\x3b\ +\x14\xe7\x29\xc2\xc3\xa3\xf8\x9f\x3c\x7e\xba\x71\xa9\x8d\xee\x09\ +\x34\xf9\x32\x71\xe5\x6d\xc6\x44\x0b\xdb\x91\x3c\xaa\x80\x6d\x45\ +\xd5\x96\xd0\xa3\xd2\xd8\x04\xde\x96\xff\x7f\xf6\xfe\x05\x48\xba\ +\x6f\xbb\x0b\xc3\xf6\xf4\xcc\x7c\xdf\xff\x75\x1f\xd2\x7d\x48\x20\ +\xa1\x2b\x4b\xe8\x81\x10\xb1\x31\x65\x1e\x4e\x70\xa5\x64\x12\xc7\ +\x15\xb0\x43\x9c\x04\x5c\x15\x57\xa5\x52\x8e\xcb\xe0\xd8\xc1\x65\ +\x62\x57\xe1\xd8\x09\x21\x96\x64\x97\x0d\x24\xc1\x21\x14\x26\x45\ +\xc5\x85\x49\x1c\x12\x03\x8e\xc1\x15\x9e\x36\x2e\x09\x81\x40\xc8\ +\xb2\x9e\x58\xf7\xea\xde\xab\xfb\xfc\xdf\x7b\xff\xef\xef\xff\x7d\ +\x33\xd3\x3d\x59\xbf\xdf\x5a\x6b\x9f\x75\xf6\x9c\x73\xfa\x74\x4f\ +\xf7\x4c\xcf\xf4\xfa\x75\x9f\xbd\xd7\x7b\xaf\xbd\xcf\x39\x7d\xf6\ +\xd9\x67\xba\x07\x2c\x74\xb6\x3f\xb0\xff\xa4\xd6\xff\x91\x86\x9f\ +\x78\x44\x5c\x91\xd1\x1f\x31\xd1\x86\xda\x29\xad\xb5\xc7\xe0\x03\ +\x34\xcc\x93\xa0\x63\x2c\xf0\x3c\x18\x10\xc1\x7c\xd4\x96\xf3\x2a\ +\xa1\xb1\x79\x1c\x1d\x0b\xd8\xf2\x40\xc1\x9b\x79\xc2\x07\x76\xde\ +\x8e\xc6\x82\x2d\x7b\xa0\x3a\xbe\x40\x4a\x89\xd0\x2c\x20\x33\x7b\ +\x8c\x8b\xc5\x63\x45\x46\x74\xe6\x4b\x5b\xd2\x50\xaa\xaf\xe6\x0a\ +\x89\xe9\xf1\x02\x0f\x9d\xd0\xd8\x8b\x64\xe5\x45\x3d\x72\x32\x3b\ +\xf2\x1e\x9f\xac\xca\xbb\x78\x6c\x5d\x6a\x9b\x5b\x91\x56\xbd\xd2\ +\xb2\x0f\x98\x8b\xd0\xb4\x44\x8d\x9c\x84\x66\x5f\x84\xb7\xcf\x0c\ +\x16\xd6\x2f\x8d\x29\x04\x8f\x6d\xb1\x82\x3f\x78\x29\x58\x11\x1d\ +\x05\xe0\x18\xa7\xcc\xe7\x4f\x6c\x13\xb0\x63\x17\xac\xd7\x80\x1e\ +\x54\x0a\x97\x39\x5a\x9d\xf3\x35\x66\xe2\x58\x91\x47\x40\x22\xb1\ +\x3b\xe4\x03\xb5\x44\xe2\x88\x71\x14\x27\xff\x9d\x75\x12\x0d\x0d\ +\x4d\x51\x62\x02\xc3\x53\x18\xdc\x0a\xf0\xfe\xce\x21\x2e\xdd\xad\ +\x57\x88\x40\xc2\x38\xdc\x6c\x1a\xaf\x95\xf2\xf4\xa3\x02\x14\x35\ +\xa6\x53\x39\x24\x95\x46\x0d\x89\xdc\xa9\x82\x72\x59\x7d\xa0\x62\ +\x9b\xdb\x51\x17\x65\x71\x31\x42\x09\x93\x3b\xdf\xe9\xf0\xea\xd1\ +\xbc\x39\x0e\xb6\xb5\xd6\xb6\x69\x53\x65\x20\xa3\x9d\xdd\x59\x57\ +\x99\xe6\xa1\x36\x5d\xee\x6a\x26\x77\xdc\xbc\x39\x37\x1b\x69\x98\ +\x76\xb8\xb1\xae\x72\xa9\xf1\x82\x01\x64\xb2\x71\xf1\x47\x78\x5f\ +\xf8\xa1\x9d\xc9\x3a\x5e\xed\xd0\x06\x17\x0b\x84\x26\x4f\x99\xd9\ +\xc9\x86\xf1\xd5\x05\x82\x61\x7d\xa7\x33\x99\xe9\xd8\xb6\xb5\x13\ +\x79\xcf\x91\x2f\xe7\xf1\x62\x7a\x90\x81\xb6\x38\x81\x46\x1e\x3c\ +\xd2\x60\x27\x2f\xf0\xa2\x60\xbb\xa8\x69\x87\x58\xb0\x35\xde\xbf\ +\x95\x46\x5f\x3c\x50\x93\x9a\x3f\xdb\x74\x85\x0d\xf6\x88\xad\x7a\ +\xd8\x72\x43\x6c\xa9\xf9\x40\x0d\xbc\x1c\xc4\xb8\xbd\x84\x1c\xc7\ +\x33\x9f\x2f\xc8\xa6\x72\x95\x61\x8d\x0b\x04\x68\x2d\x55\xee\x34\ +\x6a\xe5\x41\xbb\x5d\xac\xd9\xa3\xca\x03\x3d\x99\xba\x09\x63\x71\ +\x8d\x77\xbd\xab\x23\x20\x93\xf4\x55\x2f\x05\x6d\x28\x94\xcd\x9c\ +\xa0\x07\x43\xb1\xcb\xb4\xaa\xd0\x87\x63\x5c\x63\xc4\xd0\xeb\x03\ +\x35\xda\xe9\x37\xd0\xb8\xc1\x97\x41\x45\xce\x9b\x6e\xf1\xe1\xcd\ +\xba\x6c\xa7\x32\x7a\x5c\x2c\x93\x9b\x7d\x3c\x48\xe3\x5f\x3d\x9f\ +\x69\x6d\x0f\xd6\x7c\x51\x45\xee\xf0\x75\xe1\x85\x31\x10\x46\x63\ +\x19\xc3\x9a\x79\x82\xc2\x3a\x85\x30\xe4\xcd\x87\xe6\x16\xcf\xe3\ +\xb0\x5d\x2c\xcc\x60\xe1\x80\x36\x58\xf0\x13\x43\x5f\xac\x31\x99\ +\x14\xdc\xd4\x57\x65\x1a\xcb\x73\x0a\x31\x84\x67\xae\x46\xfb\x82\ +\x8c\xc7\xe7\x02\x10\x6c\x4c\x2e\xc2\x82\x6f\xac\xc1\xa7\xda\x0b\ +\xcf\xb8\x88\x23\xb9\x50\x07\x19\x96\x31\xcc\x4e\x14\x94\xb9\x3d\ +\x37\x1b\x0b\x7d\x30\xa8\x79\xa3\x52\xb1\xf6\x09\x0c\xdb\x45\x4d\ +\xbd\xd9\xd9\x06\xba\xe3\x6d\x30\x19\xb9\x91\x23\x0f\x1c\xfd\x14\ +\xab\x8e\x7a\xbc\x48\x63\x7f\x4b\x6e\x7c\x21\x6f\x84\x71\x9d\xd9\ +\x72\xb3\x18\xc8\x89\x7f\x35\x6f\x36\x31\x47\xe3\x69\x4b\x63\x89\ +\x48\x35\xe2\x2a\x8f\x17\x6a\xe8\x51\xe9\xb8\x08\x5b\xe5\xa8\x40\ +\xab\x4c\x69\x7a\x69\x0d\x82\x45\x40\x3c\xd8\x05\x64\xc5\x04\x59\ +\xc0\x56\xcf\x91\xc6\x88\x11\x87\x64\x43\x80\xdd\x98\x6e\x0d\xb6\ +\x74\x4b\xdc\x12\xed\x2e\x9b\xda\x85\xf1\x30\x80\x4d\xb4\xa5\x4e\ +\x0a\x1c\x73\xd5\x2e\x3a\xcc\x40\x88\x05\xcf\x36\x0d\x5e\x25\xf4\ +\x20\x25\x94\xaf\x14\x6b\x7d\xa3\x70\x89\xd4\xb8\x68\xf1\x83\x1b\ +\x9c\x7c\x8a\x8b\xce\x6d\xae\x4f\x70\x5d\x74\x7b\x68\x71\x8d\xd4\ +\x5a\xaf\xcb\x52\xe3\x15\x7c\xf8\x8d\x7a\xea\x28\xe1\xb5\x14\x34\ +\x2c\x11\x43\x48\xab\x55\x2f\x17\x5f\x95\x91\x17\xc2\x62\xea\x9b\ +\x0a\xda\xd2\xd4\x6d\x4c\xa6\x1b\xda\xc3\xb5\x09\x57\x20\x95\xc1\ +\x84\xed\x99\x3d\xaf\xed\x64\x21\x45\x7b\xa6\x93\x8a\x57\x2e\x21\ +\x38\x2f\x31\x1d\xe5\x62\xcb\x17\xd5\x90\x23\x3e\x78\x7d\x48\x06\ +\x9e\x6d\x60\x3c\x40\x73\x0e\x01\xb9\xe9\xa4\x5e\xad\xf4\x27\x1b\ +\x75\x9e\x83\x1a\xf2\x25\xbf\x9d\xc6\x5f\x0a\x60\x52\x9e\xab\xea\ +\x21\x63\x7b\x36\x87\xd1\x6f\xf9\x7b\x9b\xaa\xf3\x07\x7b\xd8\x44\ +\x00\xef\xaa\x07\x8f\x8d\xf3\x21\x80\xbb\x16\x39\x82\x41\x8d\x78\ +\x12\x9f\x4e\x48\x5f\xe2\x40\xc5\x1c\x48\x30\x0e\xfe\x17\x1b\xdb\ +\xc0\x43\x36\x99\x23\x5d\x5c\xe0\xa7\x22\x97\xac\x2f\xf0\xcd\xb6\ +\x8b\x2b\xe1\xaf\xf8\xbf\xb8\xf0\x2d\x2b\xfc\xe4\xe0\xc5\x85\x3e\ +\x0c\x42\xdb\x57\x52\xe3\x1b\x52\x88\xee\xd7\x47\x3d\x68\xa5\xe6\ +\x47\xbb\xb4\x8a\x87\x62\x90\x9b\xf8\x64\x01\x99\x18\xc9\x31\xc9\ +\x9f\x39\x96\x8d\x6e\x78\x30\x64\x0f\xdb\x10\x0b\x32\xfc\x6f\x2f\ +\x5e\xfb\xf0\x20\x49\xe8\x33\xcc\x2d\xa0\x43\x5b\xf0\x87\x1e\x1b\ +\xc2\xc9\xcb\x79\x5e\x2b\x01\xe9\x2b\x74\xc8\x09\x7a\x04\x65\x6d\ +\xe3\xa0\x43\x21\xf9\x88\x11\x68\xe8\x38\xeb\x92\xf1\x02\x74\xff\ +\x60\xfc\x74\x2e\xc6\x5d\xa1\x2a\x8e\x1f\x37\xe1\x75\x5e\xac\xfb\ +\x03\xfb\x00\xdf\x38\x03\xcf\x69\x28\x1f\xa8\xc1\x4e\x36\x8e\x33\ +\x64\x78\x60\x2a\x36\xdc\x18\x99\x6f\xe1\x50\x30\x8b\x22\xe3\x24\ +\x3d\xe1\x38\xf0\xe7\x0f\xf1\xf0\x51\xe6\x37\xf8\x46\x20\x7e\x66\ +\x13\x0f\xcb\x58\x3f\xc1\x1c\xe7\xb4\x9c\x0b\xcf\xfa\x29\xbe\x19\ +\x88\xff\x77\x06\x5b\x9d\x77\xf1\xff\x95\x49\x1f\xf9\x20\x13\xe3\ +\x23\x2f\xcc\xdd\x74\x1c\xb1\x61\x08\x6c\xfc\xb8\xe3\xa4\xbf\x32\ +\x86\xc2\xda\xbe\x12\xb9\x9c\x7f\xf5\x1a\x0b\x5b\x5e\x8f\xe1\x03\ +\x3b\xc4\x45\x1b\xc8\x17\x7a\x1d\xe7\x6e\xce\xe4\xf6\x41\x6f\x32\ +\x3e\x0c\x34\x9d\xc7\x43\x4d\x3f\xc9\x45\x48\xc6\xae\xb9\x22\x0f\ +\xb4\x05\x2d\x8e\x1f\x4c\x0a\xe1\xcb\xb8\x42\xe2\x65\xb1\x50\x0b\ +\xab\x3c\xe5\x18\x5c\xd5\xd1\x12\x36\xa0\xaa\x1c\x7d\x77\x1d\x4a\ +\x8b\x4b\x9e\x02\x41\x8c\xa5\x3a\x33\x96\xb7\x8e\xb3\x6f\x80\xb6\ +\x81\x3c\x4c\xae\x42\xa9\xe1\x10\x73\x71\x5b\xd0\xd8\xd0\x8e\xca\ +\x60\x47\xb7\x9e\x4e\x69\xf5\x75\x5a\xe5\x32\x58\x72\xda\x61\xce\ +\x8e\x96\xb5\x8d\x6a\xe3\xfb\x11\x76\x90\x59\xcd\x63\x0f\x63\x59\ +\xf5\x10\x6b\x4d\xdb\x16\x30\x47\x2d\x2a\x6a\x3d\x46\x44\x64\x3d\ +\x04\x64\xd1\xd4\xe5\x40\xd4\xd5\x78\xd1\x20\x71\x8c\xc8\x23\x20\ +\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\x38\x8a\x93\xff\xde\x3b\xd9\ +\x26\x10\x27\xb4\x5a\x63\x8e\xeb\x1f\xc5\xd1\x9a\x0f\x19\x50\x6b\ +\x65\x36\xc1\x42\x48\xb9\x9d\x34\x5a\x6f\x42\x55\x1f\x6c\x00\xe8\ +\xe0\x8b\xda\x78\x00\x37\xb4\x51\xe7\x34\x5f\xb6\xe0\x70\x43\x0e\ +\xde\x6e\x74\xd1\xa0\x94\x9d\x0d\x38\xd4\xb6\x91\x35\x99\xcb\x29\ +\x01\xad\x09\x28\x1d\xf5\x56\xe3\x15\x65\xd8\xba\x7c\xbb\xdc\x50\ +\x69\x0d\x5e\x17\x3b\xaa\x3f\x17\x3f\x64\xc3\xdd\x38\x6d\x50\xa9\ +\x4c\x28\x8e\x97\xeb\x3d\x26\x5f\x42\xfa\x82\x0b\x62\xf0\xaf\xa8\ +\xa1\x13\x1a\x8b\x5c\x5c\x58\x51\xa3\x6e\xd1\x07\xf6\x52\xeb\xa2\ +\x91\x2e\x8c\x20\x10\x17\x8b\x8c\x46\xcd\x85\x16\xfa\x22\x4e\x53\ +\xc3\x16\xf1\x19\x0b\x76\x1a\x97\x6d\x5b\xbb\x90\x43\xa6\x8b\x0d\ +\xaa\x93\x42\x75\xb2\x91\x77\xdf\x20\xab\x1b\xfd\x5c\x8e\x58\x18\ +\x0a\xb5\x87\x4c\xe5\x1d\xcd\xfe\x2e\x35\x1f\xe6\xc2\xc5\x22\xfc\ +\xc5\xaf\xd0\x57\x58\xf4\xc2\x22\x86\xe9\xe1\x23\x35\x17\x02\xe5\ +\x85\x1a\xc7\x2e\x6a\x09\xa6\x34\x79\x29\x00\x91\xe3\xe1\x1a\x1f\ +\xaa\x49\x1d\xcf\x03\x82\x64\xe0\x05\x1a\x4b\xe3\x54\x04\x3b\x5d\ +\xc2\x51\x4a\x3b\x67\xb6\xee\xc0\x9c\xc0\xa8\x9d\x5b\x07\xaf\x4a\ +\x03\x1a\x81\x6e\x7d\xe0\x06\x59\x2a\xe9\xb5\x94\x42\x49\xf2\x6a\ +\x62\x86\xc6\xf3\xe1\x98\xe8\x71\x4f\x8d\x9f\x68\x94\x1e\xd3\x9c\ +\xeb\x3d\x90\xcb\x4d\x3a\x64\xb8\xb7\xd7\x87\x43\x24\x8c\x3e\xd5\ +\xc5\x0d\xf0\xf6\xed\x33\x3e\x50\xab\x7a\x5d\x50\x60\x22\x56\xfb\ +\x62\x07\x78\x54\x55\xaf\x85\x55\x32\xe2\x58\x1c\x10\x1d\xe2\x50\ +\x8c\x78\x58\x50\x80\x1c\x34\x17\x89\x94\x17\x46\xc3\x40\x8f\xb8\ +\x22\x87\x9b\xb6\x25\xbc\xf9\xf1\x05\x9d\xd9\xa8\x9d\xd6\x70\x50\ +\xb9\xe9\x42\x2c\xca\x3c\x86\xd5\x5c\xbc\x13\xbd\x2e\x14\x61\xfc\ +\x2c\xaf\xe8\x27\x35\x16\xb3\x84\xa9\x3c\x5f\x8c\xa9\x3c\x16\x41\ +\x84\xc0\x08\x8b\x0c\x9d\x07\xaf\x79\x61\x6c\xa1\x73\x3f\xa7\x51\ +\xc3\x86\x72\xb2\x91\x77\x3d\x68\xb4\x83\xbd\x7c\x6a\x71\xf1\x96\ +\x97\xb5\x23\x6a\xad\x61\xef\x75\xf5\x55\x3b\xee\x7b\x68\x21\xaf\ +\x7e\xb2\x41\x0a\x99\xd5\x94\x81\xc7\xbe\x50\xa9\xd8\xe3\x58\xa0\ +\xa5\xda\x50\x8f\x3c\x3b\x5e\x69\x7c\xb5\x01\x76\x78\x09\x2c\x3e\ +\xf3\x84\x01\xdf\x34\x84\x96\x7e\xca\x8a\x54\x03\xd0\x4c\x8b\x01\ +\xd8\x21\x6f\xee\x04\xe2\xe1\x98\xbf\x79\xe2\x4c\x61\x24\xfe\x26\ +\xf0\x10\x03\x39\x25\xee\x08\x18\x7b\xee\x7b\xab\x37\x41\xeb\x13\ +\x63\xdd\x80\x08\x71\x4c\xae\x3b\xc6\x82\x3f\x2a\x6c\x38\xf3\x74\ +\xd1\x98\x62\xe1\x44\x6a\x71\x6a\x49\xc2\xb9\xc0\x8b\x9d\x4a\x05\ +\xb8\x70\x51\xa4\xd7\x3c\xea\x10\x47\xe4\x9c\x23\x58\x1d\x75\x7a\ +\xdd\x56\x19\xaf\xbb\xa6\x93\xab\xb0\xd6\xb8\x96\x32\x34\x64\xe6\ +\x87\x17\x6d\xc1\x7a\xad\x57\x27\xe5\x11\x4b\xfd\xb1\x41\x82\x3e\ +\xaa\x3f\xde\xfa\xd2\x37\xec\x44\xcb\xb9\x0a\x2c\x35\x17\x00\x31\ +\xd1\xee\x52\x39\xd5\xd3\x06\x56\xe2\x67\xd7\x79\x9d\x2f\x98\x9f\ +\xd0\x9e\x53\x9d\xcb\xa0\xdf\xa6\xe3\x37\xcf\x30\xef\x60\xbb\x52\ +\x4b\x0c\x3c\xec\x12\x86\x0f\xc8\x64\x12\xa1\xf1\xd0\x02\x6a\xf8\ +\xc3\x5b\x74\x88\xc7\xff\x4f\x26\x31\xf0\x90\x0d\xed\x70\xfe\xe3\ +\xb6\xe0\x11\x09\x32\x6c\xc2\xfb\x38\x70\xbe\x25\x3d\xf1\xff\x33\ +\x0b\x1d\x63\xca\x1c\x86\x3a\xa1\xb1\xfb\x5d\x4e\x1f\x6e\x42\x5a\ +\xfb\xfc\x06\x13\x0e\xb1\xca\x83\x82\x29\x78\xad\x3d\x0f\x04\x23\ +\x89\x31\x42\xff\x11\x12\xd6\xf0\x91\x0a\x73\x45\xfc\x6f\x36\xfc\ +\x21\xd2\x95\xc8\xae\xae\xf4\xdb\x78\x97\xf8\xd9\xc1\x25\xec\xf1\ +\x60\x08\x0f\xd8\xf0\xcd\x2a\xa9\xf1\xbf\xbe\xf0\xe0\x88\x0f\x8f\ +\x30\xd7\xc4\xc3\x24\xa1\x2d\x0e\x1e\xdc\x31\x1f\x09\x2e\xe1\xb1\ +\x6b\x58\x33\x0f\xd4\x28\xd0\x41\xd9\xe4\x72\x27\x3c\x66\x5a\x2b\ +\xa5\x25\x3f\xfe\x2f\x4f\xe9\x1c\x78\x3e\x5c\xb3\xcf\x77\x5c\x16\ +\xe1\x04\x16\x1b\xae\xc1\x72\xa9\x11\x1a\xd7\x5a\xd3\x69\x45\xca\ +\xed\xc4\x12\x05\xfb\xca\x3a\xd0\x16\x9a\xf6\x2a\x12\x81\xe4\x0b\ +\x03\xe9\x02\xfb\xc0\x0b\x06\x9d\x94\x77\x3b\x3e\x20\xc3\xff\x8b\ +\x63\x30\x6c\x08\x86\x38\x98\xcb\x41\x84\x31\x00\x21\x40\xbf\x58\ +\xeb\x1f\xfd\x9c\x4a\xde\x78\x60\x88\x07\x66\xfc\xff\x65\x78\x60\ +\x26\x3c\x1f\x32\x4a\xc7\xf9\x6f\x65\xf9\x90\x0c\xb6\x52\x83\x16\ +\x3f\x7c\xe3\x0c\x3c\x7f\x76\x1a\x73\x21\xc6\xd3\x9a\x0f\x2b\xa5\ +\x15\xd0\xfc\x08\xb1\x01\xd0\xb1\x10\x1d\x78\x8c\x99\x26\x42\x99\ +\x8a\xcc\x1f\xd7\x5f\xb3\x87\xa2\xce\x97\x48\x9b\x8d\x6d\xd4\x85\ +\x8d\xb1\x4d\x4e\x5b\xf1\x53\x1b\xd4\xce\xcb\x66\xf1\x34\x0e\x12\ +\x11\x7b\xe6\xa4\xfb\x90\x73\x4b\x25\xd4\x4e\x38\xce\xa5\xa4\x43\ +\x9a\x9f\x8e\xa1\x7a\x82\x8f\x1b\x62\x98\x0e\x86\x8c\x21\x8c\xd9\ +\xa1\x5e\xf0\xd8\xf2\x79\x07\x6c\x69\x00\x95\xbc\x31\x6f\x81\xca\ +\xe2\x51\xa8\x9b\xda\xb9\x1c\x24\x68\x31\x46\x0c\x9a\x98\x05\x19\ +\xc8\xdc\x1e\xc6\xd6\x0e\x6d\x90\x03\x85\xea\x63\x9b\xfb\xe0\xa5\ +\x7e\x46\x51\x8e\x76\x20\x63\x09\x21\xf5\x88\xcb\x58\xd8\xd9\xb4\ +\x76\x7b\xd5\xf5\xec\xa9\x57\x9a\xc7\xea\x0a\x1d\x55\xbd\xda\x03\ +\x5e\x1b\xea\xb1\xab\x24\xb4\xb0\x55\xb1\x2b\x03\xdc\xa8\xad\x01\ +\x37\x77\xde\x41\x9b\xd6\x38\x71\xcc\xc8\xa3\x20\x91\xd8\x1d\x64\ +\xde\x5c\xa7\x21\x89\x44\xe2\xc8\x70\x74\x27\x7f\xec\xb0\xcf\x2d\ +\xf7\x8a\xa1\x06\x06\x26\xb5\x42\x92\x13\xb1\xdf\x46\xba\x67\xb5\ +\x12\x01\x3d\xfd\x23\xbb\x73\x20\xf4\x86\x54\x19\x54\x3a\x1d\x87\ +\x8c\xef\xa0\xc3\x42\x12\x64\xb6\x10\x40\x99\x2e\x26\x60\xd3\x0a\ +\xc5\xca\x6a\x97\x77\x9b\xf3\xac\xd9\x40\xa4\x41\x9a\x9e\x0b\x0b\ +\x6c\xe0\x86\x1e\x84\x56\x62\xc3\x4a\x4a\xd8\xe3\x05\x9a\x7a\xa9\ +\xab\xad\xda\xd7\xd8\x21\x3f\xd6\xf4\x81\x0c\xe6\x66\x2f\x2f\xda\ +\xa1\x7b\xbc\x6b\x57\x7d\x5d\x3c\xa1\xbd\x08\x44\x47\xfb\xba\x89\ +\xde\x65\x5c\xa5\x50\xda\x1f\x92\x91\x96\x0d\xf9\xd6\x07\x5b\xc8\ +\x1d\xb6\xe0\x21\xc7\x22\x12\xfd\x90\x96\x2e\xf4\xc0\x97\x8b\x65\ +\x66\x53\x17\x68\x48\x23\xbe\xd6\xce\xb7\xfa\xbe\xce\x68\xb6\x1f\ +\x7c\x65\x93\x82\x7d\x77\x1d\x37\x8e\x05\x54\x48\xa8\xd3\xc1\x96\ +\x0b\x50\x58\xd0\x09\xb6\xd0\x9b\x43\xd7\x4f\x3e\x3c\x93\x7e\x89\ +\xed\x6a\x79\xc5\x6f\xa9\xe1\xff\x93\xe8\x37\xd5\x44\x27\xf6\xf8\ +\x9f\x6b\xc8\x85\xbe\x52\x71\xd1\x06\xa1\xc0\x48\xed\x87\xad\x1d\ +\xcc\xa4\xfd\xff\xb3\xe9\xc1\x82\x7e\xa8\x4a\x01\x3f\x7a\x99\x7d\ +\xb7\x88\xe2\x20\x25\x85\x5a\x99\xbc\xd1\x63\xe3\x4f\xd0\x51\x2c\ +\x85\xbe\xdd\x49\xcc\x85\xc3\x0d\x67\xf0\x03\xd0\x1a\xc6\x43\x01\ +\xbd\x51\xe6\xe7\x01\xf4\x5e\x9b\x85\x4a\xa4\xe0\x4d\x31\x64\x0b\ +\xb9\xa9\xc6\xea\x0a\x68\x2c\xca\x60\xb1\x83\xbc\xd4\xc2\xfb\x43\ +\x27\x3e\x3c\x62\xed\x36\x5c\x75\x30\xfa\x84\x72\xf2\x26\xd3\xfc\ +\x11\xc7\x1b\x04\xcb\x42\x6d\x28\x47\x6e\x20\x3a\x19\x16\x38\xbc\ +\x2d\x3e\x38\xc3\xc2\xc7\xa9\xea\xbb\x85\x18\x31\x74\x1a\xb6\xe2\ +\x83\x3e\x54\x9d\xc5\xd3\x07\x5e\x9a\x1f\x6a\x2e\xee\x88\x1f\xe2\ +\x30\x5f\xc4\x88\x71\x82\xad\xfa\xbb\x0d\x64\xae\x37\x7b\xdb\xa4\ +\xe8\xcb\x6a\x3c\x6b\x03\xed\x8a\x3f\x76\x02\xe2\xd4\x98\xb4\x51\ +\x1f\x82\xfe\x78\x38\x08\x7b\xe1\xe1\xca\x05\x11\xd9\xe4\x05\x3d\ +\x37\xf8\x54\x7b\x6c\x30\x34\x1a\xed\xc0\x06\x74\xf5\x81\x3f\x2b\ +\x06\x85\x28\xda\x80\xed\xd9\x23\x1c\x56\x28\x8d\xe7\x8b\x71\xc1\ +\x22\x88\xf0\x42\xbb\x9e\x36\xde\x0f\x7b\xa0\x86\x0e\xc0\x85\xba\ +\x68\x87\xda\xfc\x31\x3e\x58\x44\xd5\x5d\xa7\x72\xb5\xa1\x05\x84\ +\x6a\x0f\x15\x0b\xd5\x69\x6d\x72\x15\x28\x3f\x07\xb0\xab\xa7\x50\ +\x38\x6f\x48\x7b\x8c\x6a\x10\x30\x33\xfe\x3a\xc4\x26\x76\x14\x32\ +\x71\x87\x88\x87\x0c\x30\xb4\x1f\xeb\xe1\x33\x74\x1c\x8d\xc0\x8f\ +\x5f\xf9\x7c\x6f\x9b\x00\x5c\xea\x73\x23\x02\xb6\x30\x22\x6b\x52\ +\x5e\x1f\x54\x1f\x4b\x54\xb4\x60\x7c\xd4\xb8\x1a\x42\x27\x25\x69\ +\x50\x7c\x32\xa0\x34\xe2\xe0\x21\x91\xc5\xe3\x0b\x22\x29\xf4\x9b\ +\x6a\xe6\x0f\xb5\x14\xfe\xd0\x86\xac\xc9\x19\x95\x32\xab\x7d\xce\ +\x41\x9e\x86\x02\xa5\x29\x03\x67\x7a\xb5\x91\x92\x1b\xae\xb9\xd8\ +\xd4\x5e\x5a\xa3\x0f\xae\x7c\x5d\x1b\x54\x71\xae\xe0\xf6\x94\x53\ +\x07\xad\xf9\x43\x07\x5e\x06\x0e\xf9\x70\x1a\x01\x1d\xe6\x0f\x7c\ +\x29\xad\x71\x84\x97\xcd\x63\x22\x80\xcc\x34\xb4\x1d\xcc\x67\xd4\ +\x1a\x8d\xea\xfc\x03\xf1\x64\x9e\x81\x9f\x92\xa4\x2f\xe6\x25\xa8\ +\x3d\xbe\xc7\x82\x3d\xbc\x31\x27\xa1\x8d\x70\x1e\x1f\x1b\xe7\x33\ +\x2a\xe3\x5c\x05\xb5\xc7\x91\x1a\x4d\x82\xc3\x9c\xa8\xfe\x3c\xa4\ +\x4a\x18\xbb\x1e\x12\x90\x09\x81\xf8\x8c\x8d\x1c\x4c\xce\x37\x94\ +\x2e\xa1\x08\xfb\xd5\x44\x3c\xb0\xd0\xae\x90\x14\xcb\x8b\x61\xf0\ +\xb0\x4c\x1f\xb0\xe9\x37\xd6\x56\xfc\xc9\x42\xca\x64\xbe\x85\x87\ +\x6c\x4a\x8b\x1e\xdf\xe2\xc3\x03\x36\x99\x7f\x2d\x97\x27\x95\x46\ +\x97\xf8\x80\x4e\x1a\xe5\xff\x5f\x45\x5e\x18\x13\x91\x73\x63\xfb\ +\x9a\xab\x9e\x16\xfa\xb9\xcf\x74\x29\x05\x44\x80\x37\xe6\x4c\x90\ +\xd1\x0e\x31\x51\x51\xa2\x72\x83\x52\xb8\xaa\xc0\x90\xc6\x66\x63\ +\x2f\xfc\xe1\x09\xae\x45\x80\xa8\xb5\x2d\x05\x1f\xf2\x88\x35\xe7\ +\x66\x6c\x53\xae\xca\xb2\xf9\x03\x3f\xbe\x20\x83\x19\x6b\xa5\x61\ +\xc3\xff\x21\x27\x3c\x7f\x06\x53\x2e\xa9\xe7\x67\x2b\xca\xce\xcf\ +\x21\xd7\x87\x68\x78\x48\xa6\x7f\x98\x24\x35\x7d\xf1\xf0\x4c\xe7\ +\x0e\xb8\x46\xe2\xa1\x19\xae\xaf\xfc\xc6\x9a\x5c\x5f\x85\x64\xad\ +\xd7\x5c\xcd\x27\x6e\x10\xb2\x06\xaa\x1e\x64\xa7\xd3\xfc\x7d\x43\ +\x5c\x6d\xab\x93\x75\x3a\x29\xd9\x56\xdf\x06\x72\x84\xeb\x7c\x34\ +\x66\xc7\xfb\xb7\xd0\xd8\x0f\xd4\xae\xb3\x18\x6e\xcf\x3f\x46\x42\ +\x1b\xc6\xb3\x5f\x94\x98\x9d\xd8\x23\x7b\xad\xa0\x73\x5b\xa3\x39\ +\x61\x91\x37\xe3\x6a\xa7\x19\x87\x24\x74\x66\xc7\x1d\xe8\x36\x98\ +\x67\x99\x9d\x76\x04\x85\xbd\x40\x22\x5f\xad\xa1\xa2\x34\xda\x20\ +\x17\xc8\x18\x07\x2a\xd3\x49\x4d\x15\xfe\x98\xc8\x78\x40\xd5\x28\ +\x10\x8f\x9a\x50\xc3\x43\x8e\x2f\xce\xfd\x10\xc5\xfa\xc3\x42\xed\ +\x24\x9b\x4a\x03\x9d\x9f\xc4\x63\x83\x22\xc7\x2f\x03\x90\x32\x7f\ +\xda\xea\xa6\x6d\x81\x74\x99\x00\xf3\x51\xa7\xa9\x37\x7a\x2d\xc4\ +\x0e\xa6\x38\x49\x58\xab\x68\xb2\x8e\x80\xac\x22\x1a\x26\x12\x1d\ +\xf2\x88\x48\x24\x76\x87\x7c\xa0\x96\x48\x1c\x31\x8e\xee\xe4\x8f\ +\x1d\x1e\x9a\x88\xee\x1c\x9b\x4d\x64\x6d\x2e\x2f\x6e\x7a\xb3\x1b\ +\xc1\x48\x55\x28\x84\xd1\xf0\x89\x1f\xe3\xf5\x26\x1e\x6f\xb9\x79\ +\x26\xc1\xb8\x10\xa8\x5c\xd5\x20\x20\xc2\x4d\xb2\x0b\x95\x26\x4f\ +\x96\x77\xf8\xdc\x7c\x41\x07\x9b\xea\x83\x6d\xf0\xf5\x98\xe4\xb9\ +\x40\x21\xb7\xdd\x7a\x07\x4f\x19\x6b\xdc\xe0\xab\x25\x6d\xc9\x51\ +\x26\xf6\xac\xd5\x96\x7e\xf4\x41\x25\x3c\x68\xab\x29\x66\x6d\x8b\ +\x25\x6c\x03\x32\xe4\x8c\x37\xe4\x30\xd1\x3e\x30\xae\x0a\x4c\x8e\ +\xc2\x16\x50\xd0\x22\xe5\x42\xaf\x2c\x07\xe7\x59\x9b\x9d\xc8\xfd\ +\xaf\x9d\xc1\xf3\xa7\x87\x40\xbb\x0f\x6a\xf2\x1e\x5b\x17\x44\xf8\ +\x97\xe6\x8c\x29\x32\x24\x27\x34\x17\x70\x68\xdf\xf9\xea\x22\x8f\ +\xea\xd5\xd7\x7c\x4c\xcf\xd8\x90\x57\x1b\x95\x7b\x2c\x11\x54\x3b\ +\xdf\x5f\xea\x23\x1b\xc7\x46\x6b\xf0\x52\x6a\xad\x02\x8c\x96\xd6\ +\x90\x21\x36\x5e\xde\x86\xb4\xc9\x71\xc1\x22\x0d\xda\xc3\x42\x15\ +\xff\x7a\xda\xeb\x2b\xb5\xa5\x0e\xed\x6b\x0e\x7a\xd8\xa1\x01\x12\ +\xf2\xb2\x5b\x4a\xc4\x23\x85\xd8\x4e\xc1\xd4\x6c\x51\xab\x40\xdd\ +\xad\xd6\x5c\xba\xbe\x39\xa4\x69\x8e\x31\x4d\x51\x56\xba\xb6\x22\ +\x25\x08\xf4\x93\x19\x80\x51\xa9\x35\xde\x2d\x11\xa9\x2d\x79\xbf\ +\x49\x26\xef\x05\x2a\x79\x09\xcd\x9b\x68\x2c\x8c\x49\x8d\xc5\x0b\ +\xda\x63\xe3\x42\x4c\xa8\xb9\x61\xe1\x43\x6c\x64\xe3\x02\x52\xb5\ +\xb1\x05\x91\x6a\x6b\x0b\x02\x3d\x5e\x1a\x25\xcf\x3b\x7b\xd3\xe9\ +\x5f\x47\x53\x49\x3b\x6a\xba\x1c\x28\xc7\x5b\xe9\xba\xe8\xe2\x6d\ +\xe1\x81\x8e\xd4\x58\x6c\xa1\x29\x6b\x6d\x0b\x39\x81\xf0\x38\x8c\ +\xd5\xcb\x87\x0e\xec\x07\x62\x49\xc1\xb8\x5c\xc0\x41\x6d\x0f\x0d\ +\xc1\xf3\xe7\x0c\x29\x37\x7b\xf8\x46\x5b\xd8\x48\x1d\xf5\xa0\x99\ +\x17\x73\x77\x1d\x68\xf5\xed\x6c\x95\x46\x2d\x49\x18\x8d\x5a\xe4\ +\x78\x9d\x8a\xbd\xd4\x22\x24\xdf\xf9\xfa\xb8\x69\xfb\xee\xcb\x9a\ +\x72\x5a\x6b\x9f\x41\x59\x3b\x94\xbb\x9e\xb5\xb6\xd3\xf1\x1a\x97\ +\x15\x4a\xfa\x1b\xd0\x36\xf2\xa4\x1d\xe4\x56\xdb\xd6\x97\x83\x94\ +\x02\x9c\xf8\x99\x40\x65\x12\xd3\x73\x76\x99\xfb\x57\x1f\x56\x52\ +\xc7\x45\x22\xd6\x22\x67\xcc\xd6\x4e\x6b\xc8\x94\x47\x6d\xac\xd3\ +\x63\xd0\xa0\xf1\x64\xf3\xa2\x41\x55\x06\xb8\x6c\xaa\x81\x0d\xb1\ +\xc3\x50\x89\x0d\xb0\xab\xdd\x38\x74\xe8\x38\xe2\xe1\x12\x3e\xff\ +\x3b\x88\x02\x93\xa4\xa8\x72\x1f\x20\xd2\x2d\x82\x2e\x5e\x43\x3a\ +\xb1\xca\x94\x02\x4d\x92\x34\xae\x15\xc6\xd2\x46\xf5\x52\xd2\xcc\ +\x68\xfc\x20\x21\x04\xf8\xb9\x3e\xc9\x11\x97\x40\xbd\x9e\x2d\xe9\ +\xc6\x87\x3e\xd5\x16\xd7\x4f\xc8\xc0\xe3\x5a\x09\x19\x04\x4e\xc9\ +\x4b\x58\x70\xfa\x76\x99\xda\x33\xae\x1a\x23\xb2\x6c\x92\xa1\x3a\ +\x98\x0e\x76\x2c\xd5\x9e\x7a\xf8\xf9\x1f\x01\xc9\x55\x52\x3a\xae\ +\x2e\x6e\x0b\xb9\xfb\xa0\xb6\x76\x7c\x8e\xc0\x76\x54\x06\x23\x5a\ +\xd6\x5c\xe0\x82\x5a\x5e\x2e\x63\xbb\xa8\x95\x46\x5f\x31\x9f\xe2\ +\xc3\x29\x91\xf3\x1b\x6c\xb2\xe9\xc3\x2a\xf3\x27\x8f\x4d\xf2\x34\ +\x5b\xb4\x8f\x9a\x34\x6c\x44\x2e\x5a\x71\xe8\x78\xd5\x6b\x3b\xde\ +\x9e\xfa\x21\x8e\xfa\xab\x0e\x72\xd9\x2c\x5f\xc8\xa5\x40\xaf\x98\ +\x0b\x7d\x45\xe7\xc7\x84\xf3\xf0\x83\x5e\xf7\x97\xca\x49\x00\xa4\ +\x15\x2a\x86\x8f\xf4\xd5\xe4\x6c\x87\xee\xce\x4b\xae\x1c\x53\xb2\ +\xb4\x05\x0d\x19\xe7\x5d\x90\x43\x2f\x2f\x9f\x1f\xc2\x1f\x46\x6a\ +\x23\x32\xaf\xe9\x87\x3e\x29\xcf\x6f\xb5\xf1\x81\x9b\xd9\x32\x96\ +\x1e\xbd\xf8\x26\x9e\xca\xb5\x4d\xf7\xd7\x8f\x77\x21\x10\xcb\xdb\ +\x82\x1d\xa4\x28\x68\x2d\xa5\xdb\xe2\x21\x02\x2e\x3b\x50\x09\xba\ +\x6b\x12\x36\x86\x61\x41\x5a\x6c\x71\x79\x73\x9d\xce\x09\xf4\x61\ +\x17\x62\xe8\x25\x17\x0f\x8e\x34\x26\xbe\x39\xc6\x69\x0b\xae\x81\ +\xa0\xc5\xb9\xa3\xd5\x17\x76\x08\xe6\xf3\x05\xce\x05\x20\x17\x85\ +\xb0\x55\x1e\xe7\x2b\x90\xe3\xf1\x8c\xfe\xaf\x32\xb7\xb5\x98\x96\ +\x3b\x3a\x24\x6f\x29\x10\x0f\xbd\x90\x9a\x3c\x9a\x73\x1b\xb4\xab\ +\xbe\x1e\x03\x9b\xcf\x55\x84\xa0\x4f\x27\x53\xbd\xe6\xa0\x32\x21\ +\xa4\xb6\x58\x0c\xee\x3a\xd8\xe9\x43\x2a\xef\x03\xfe\x47\x1a\xf4\ +\xde\x0f\x95\x8b\xbd\xb4\x43\x7f\x9b\x9b\xd2\xc7\xda\x40\x54\xca\ +\x40\xc1\xbf\xfa\x69\x67\x62\x9b\x24\xf1\x82\x1e\x31\x83\x2f\x5f\ +\x10\x55\x3b\xd7\x01\x42\xcb\x26\xa1\x45\x04\x1a\xb6\xaa\x71\x1f\ +\xd1\x9a\x3d\x9c\x5d\x6f\xb5\x7c\x3e\x9e\xe0\xe1\xab\xf9\x22\x3f\ +\x9a\x99\x5e\x6d\x34\x6f\x4a\xbd\x96\xd2\x73\xaf\x32\xa9\xb4\x2d\ +\xbc\xad\x5f\xb4\x83\xbd\xda\xf1\x41\x5b\x95\xd1\x8b\xf3\x4f\x8e\ +\x0f\x6d\xa4\xe6\x81\xeb\xf6\x6a\x45\x49\xa5\x45\xee\xe3\x4d\x8d\ +\xc0\x74\xca\x57\xa9\xc5\x12\x04\x11\x41\x1e\x85\x19\xb8\x9d\xa3\ +\xb5\x8f\x80\xad\xeb\x5b\x1a\xa8\xb1\x13\x09\x45\x1e\x0d\x89\xc4\ +\xee\x90\x0f\xd4\x12\x89\x23\xc6\x51\x9e\xfc\x43\x93\xcd\x7b\x43\ +\x4c\xa6\x03\xe7\xe1\xcc\xcd\x6e\x56\x95\x14\xa8\x42\x3d\x44\xc0\ +\x15\x75\xa9\x63\x08\xfb\x48\xe7\x47\x3b\x48\xa9\x51\xa9\x25\x28\ +\xb9\x0b\xc6\x4d\x34\x6f\x5a\xd4\x9c\x72\xd8\x91\xb1\x1a\x52\x56\ +\x7a\x43\x8e\x17\x1f\x5a\xb8\x3e\xd6\xd1\x1f\x2e\xac\x85\xb7\x9b\ +\x73\x5d\x00\x20\x43\x3b\x4a\x69\x1a\x7c\xac\x0d\x28\x3c\x2e\x16\ +\x03\xc8\x9b\x5c\x2b\xb3\xe1\xe2\x8d\xf3\xa0\x55\x4f\x9d\x36\x6c\ +\xb2\xce\x1f\x6d\x40\x01\x79\xcf\x0f\x6d\xd3\x44\xfc\xa0\x87\x9d\ +\xd9\x30\x2f\xc6\x33\x5e\x36\x7f\x48\x06\xb9\x54\xd5\x46\xed\xa5\ +\xf6\x76\x84\xe6\x42\x0e\xfb\xa1\x72\xb6\x27\x5b\x5c\x00\xba\x51\ +\xc7\x78\x41\x46\x1f\xc4\x16\x99\xd3\x6e\x87\x3e\xf8\x03\x39\x1f\ +\x37\xb5\xd3\x5a\x63\x09\xe9\x63\x21\x15\x39\x25\xb4\x96\x4d\x22\ +\x40\x2c\xa4\xf5\x19\x6d\xe0\xc5\x5a\xdb\xe4\xcf\x3d\xda\x5f\x4f\ +\x2f\xaf\x2e\xf5\xc1\x9a\xb7\x6f\xdf\x54\xf3\x3c\xf1\xc2\x71\xa6\ +\x07\x20\x88\x3e\xfa\x22\xf8\x18\x55\xfd\xc1\x48\x89\x74\xf0\x42\ +\x1e\x90\x43\x66\xce\xca\xa3\x55\x39\xae\xa1\xb7\x63\x83\x90\x93\ +\x09\x12\x6d\x1e\x14\x85\x94\x91\xc2\xc9\xc6\x9b\x60\x48\x10\x93\ +\xac\xf0\x2c\xc2\x62\x83\xd2\x0e\xde\x58\x2f\xf4\x66\x5f\x6d\x3b\ +\x9e\x74\xdc\xb0\x90\x82\x9b\x72\xaa\x3a\xbd\xf3\x78\x79\x4c\xca\ +\xf0\x82\x1c\x7e\x10\xf8\x62\x08\xed\xbb\x05\x03\xda\x63\xa1\x43\ +\xde\x58\x36\xe8\xe4\x6a\xa7\xb9\xcb\x86\xbc\xce\xce\x58\x43\x59\ +\x73\x91\x97\xae\x01\xd8\x42\x83\xd3\xd6\x5e\xc7\xab\x4f\x8d\xef\ +\xf9\xa0\x36\x1a\x0b\x36\xcc\x13\x6d\xd1\xd7\xe5\xc1\xd7\x6c\x6b\ +\x7f\xa4\x8e\xe3\x85\x05\x0c\xfc\x14\x25\x75\xd8\xf0\x32\x9e\xf1\ +\x10\xdb\xe2\x91\x77\xbd\xd5\x8c\x8b\x97\xd9\x0a\x41\x1e\x63\xc4\ +\xf8\xe2\x06\x99\xfb\x52\x2f\x95\xd6\x54\xaa\xfc\x54\x8e\x97\x13\ +\xfd\x06\x99\xc6\x51\x0d\xfd\x68\x8f\x9a\x84\xd6\xb6\x31\x67\x88\ +\xd5\x9a\xed\x82\x56\x1d\xe2\x83\x15\x1a\xf9\x44\x39\xc9\x4e\x86\ +\x8a\x3a\x2c\x04\x59\xee\x9d\xce\x78\xa7\xf1\xa2\x3d\xe2\x38\xad\ +\x72\xe5\x75\x13\x46\x75\xa8\x3d\x2f\x94\x10\xaa\xc2\x68\x52\x0d\ +\xbf\x0e\x30\xf2\x13\xae\x45\xd4\x39\x1d\x6b\x47\xcb\x6f\x81\x5b\ +\xba\x27\x6e\x81\xb8\x8b\xb7\x85\xc7\x18\x3b\x16\x5c\x44\xbb\x6a\ +\xdc\x00\x46\x23\x3a\x1c\xcf\x76\x0d\xa8\x16\xc2\xf3\x1c\x81\xa0\ +\x36\x69\x57\x87\xce\xc8\x4a\x13\xd8\xc5\xa5\xe3\x6b\xa1\xb2\x7a\ +\x9d\x91\xda\x6c\x8b\x3d\x50\xe3\x0b\xd7\x56\xb7\x80\xcc\xae\xe1\ +\x7a\xdd\x42\x0d\x60\xee\x40\x03\xf5\x91\xeb\x2a\xe3\x41\x25\x05\ +\x29\xfa\x2a\xed\x2f\x7c\x43\x5c\xdd\xf0\x58\x89\x4a\xf3\x53\x5a\ +\x6b\xb7\x61\xa9\x32\x5e\x5f\x51\x20\x07\x5c\x4b\x4d\x47\x73\xa5\ +\x71\x8d\xe4\x65\x19\x3a\xc6\x20\x63\xd7\x5c\x6d\x8f\xb6\xf4\x67\ +\x03\xe4\x35\x2e\x6a\x54\x88\x11\x64\xb2\xa1\x66\x8b\xa4\x6d\xce\ +\x64\xb9\xe0\x67\x0e\x29\xab\x7a\xb0\x9a\x5f\x8d\x45\x1f\x91\x59\ +\x8d\x9f\x90\xc4\x1f\x3e\xc1\x06\xc0\xbc\x44\x7f\x8a\x5b\x6d\xd5\ +\x4f\x6b\xfa\x20\x1e\xe9\x76\xb3\xb8\xa6\xf7\x36\x44\x23\xb5\x1c\ +\x2e\xb4\xf1\x99\x83\xe6\x09\x3b\xf9\xd0\xb6\xda\xec\xa0\x03\x60\ +\x02\x1f\x10\x92\x26\x8e\x47\x6d\xc7\xf4\x80\xd0\x9c\xb3\x29\x59\ +\xed\x9d\xa6\x2b\x6a\x1c\xab\x88\xa1\x5a\x1e\xbf\xd5\x8e\x63\xa6\ +\x72\xa1\xaa\x1f\x64\xf0\xd5\x87\x65\x2a\x63\x25\x85\xa4\xae\x63\ +\x26\x3a\x8e\xa9\xc5\x26\x2c\x4f\x9f\xe3\xa9\x23\x14\x88\x6f\xe7\ +\x0e\x29\x10\x5a\xaa\x06\x90\x52\xdf\x8c\x03\x2d\x4e\x43\x63\x65\ +\xb3\x6b\xa9\x6c\x3e\x5f\xd1\x6b\xbc\xc9\xcc\xb9\xfe\xff\x54\xb3\ +\x01\x4b\x45\xa4\xad\x82\x1e\xed\xbb\x00\xd7\x3b\xc4\xc6\x43\x12\ +\xff\x36\x1a\xe6\x1a\x90\xa1\x2d\xb6\xcb\xb9\x88\xb4\x86\x36\xc4\ +\x8b\xdf\x50\x83\xdc\xe2\x69\x28\xd8\x21\xae\xcf\x03\x60\xab\xf9\ +\x63\xd3\xfc\xf5\x3a\x0c\x9a\xfa\xba\x99\x1d\xbc\xd9\x8e\xf2\x52\ +\xa8\x5f\x9d\xbb\xd8\x46\x5a\x6d\xba\x39\x94\xf1\xb4\x89\x73\x27\ +\xa1\xc5\xc6\x69\xda\xa0\x25\xd4\xa4\x55\x06\x9d\x90\x9a\xbf\xbc\ +\xea\x38\x5b\x5b\xa8\xa9\x86\xcc\xec\x55\x2f\x2c\xe2\xd3\x8f\xd6\ +\x2a\x87\x0f\x2a\x4a\x01\xd8\x0b\x0f\x3f\xd0\xf4\xa1\x49\x67\xc7\ +\x98\xd8\xcc\x8b\x35\xe4\x52\xaa\xb3\x1c\x3c\x1d\xcd\x38\x30\xb3\ +\xf1\x71\x3b\x4a\x61\xc3\x10\xd0\x40\x6e\xf9\x54\xde\xf5\xb0\x86\ +\x0e\x52\x3d\x46\xdd\x86\xdf\xf8\x07\x4d\x3f\x6d\x4b\x7f\x86\x5b\ +\x65\xb0\xa5\xbd\xe5\xc4\x38\x18\x24\x4e\x9c\x55\x8b\xcf\x00\xbc\ +\xe0\xa0\x35\x84\x70\x13\xce\xea\x8a\xee\xb0\xb4\xda\x09\x53\x44\ +\x3d\x7d\x43\x0d\xb4\x32\xb7\x07\xdc\x26\xa2\xfa\x0e\x29\x13\xc7\ +\x8c\x3c\x22\x12\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\xa3\x3c\xf9\ +\xeb\x04\x53\x70\xef\x03\xe0\x09\xf4\xa7\x36\xbd\xf9\xaf\x7d\x44\ +\xa3\xac\xe9\x1a\x01\x13\x6c\x60\x39\x2f\xa7\xdc\x6e\x25\xdd\x0f\ +\xb5\x92\x4a\x93\x51\x59\xe7\x02\x1f\x79\x51\x85\x45\x81\x4e\xc6\ +\xda\x6e\xc0\x79\x9b\x0a\xa5\xe9\x40\x3b\xaf\x32\xf3\xab\x3c\x68\ +\x95\x91\x47\x1c\x61\xb9\x10\xc1\x05\x13\xbc\x59\x58\x2d\xa5\x6d\ +\xa4\x3d\x9e\x2d\x86\xa8\x89\xeb\xcc\x1f\x34\x0c\x59\x43\x00\x39\ +\x16\x3d\x50\xb9\xad\xea\xa5\x50\x19\x96\x67\x68\x0b\x31\x0b\x79\ +\x87\x7e\xdb\x56\xc2\x42\x8b\xcb\x59\x9b\x1c\x34\x17\x70\xe4\x86\ +\x8a\x0b\x0d\x8c\x01\x3f\x8f\x11\xfd\x85\x16\x1b\x2e\x86\x78\x0d\ +\x1d\x6d\x83\x1d\x74\x2e\x6b\xe3\x08\xcf\xf6\x5c\x6e\x79\x40\x0f\ +\x19\xfe\x47\x87\x30\x3d\x5d\x1d\x23\xbc\x5c\x67\x1b\x94\x5a\x49\ +\x2d\x15\x6b\x08\x64\x63\x7e\x14\x49\x6d\xf9\xf2\x85\x1a\xed\x43\ +\x86\x07\x69\xdc\x90\x33\x1e\xaa\x69\xce\x75\xf1\x4a\x68\xdc\x51\ +\xf2\x38\x43\x38\xc8\x50\x9b\xc0\x49\x02\x4c\x84\xf7\x11\x0a\xfa\ +\xca\x26\xb1\x74\x4c\xc0\x4b\x5b\xb0\xb3\x38\x4a\x42\x67\xfa\x0a\ +\x63\xec\x04\xe9\xeb\x04\x4c\x40\x63\xd0\x42\xec\xb8\x36\xc1\x17\ +\x84\xa8\x7d\x11\x88\x0a\x6a\xc0\xeb\xc2\x80\xca\xfd\xa6\xdc\x14\ +\xca\x93\x05\x2f\xf7\xe0\x52\x33\xb6\xc8\xf4\xdb\x57\x6a\x0b\x75\ +\x5d\x7a\x02\xe3\xb5\x6c\xdd\x82\x89\xd0\x5c\xf0\x11\xda\x17\x62\ +\x70\xd3\x4f\x5e\xed\xf9\x57\xb6\xb8\xd7\xa7\x0c\xbe\x60\xc4\x86\ +\x9d\xd1\x3c\x61\xc7\xb6\xf8\xa6\xa0\x5b\x54\x81\x0d\x5e\x1e\x5f\ +\x36\x2e\x2e\xa1\x26\xed\xed\x69\x4c\xf6\xfd\x86\xcc\xe2\x48\xcd\ +\x3c\xc0\x8b\xce\xf3\x16\x41\x67\x4f\x5a\x65\xbe\x18\x14\xfb\x4b\ +\xdf\x4a\xab\xbd\x18\x54\x5f\xb4\x23\x94\xd4\x30\x13\xca\x73\x0a\ +\xb6\x1c\x4b\xf6\x09\x3a\xb5\x85\x9f\xd3\xb4\x55\x42\x79\x14\x35\ +\x8e\xcb\xdd\x57\x36\xb8\x8b\x8e\x35\xec\xcc\x9e\x36\xa0\xdd\x56\ +\x0d\x50\xe8\xbb\xca\xb5\xae\xf1\xa2\x1c\x43\xa1\xc6\xc3\xfa\x41\ +\x19\x58\x14\xc8\xd7\x68\xc4\x30\x7b\xd5\x75\x72\xe4\x0c\x43\x70\ +\xaa\xf0\xda\x24\x5e\xbb\x8e\x2c\x8a\xf6\xa4\xd9\x16\x1a\x7f\xe7\ +\xf0\x14\xf7\x14\x3e\x31\x03\x7e\x88\x0c\xed\x83\x29\x5d\x8b\x7a\ +\xa8\xad\x73\xf2\x1d\x5e\x1d\xa6\xe1\xa6\x38\xfe\xe5\x22\x20\x57\ +\xca\x1b\x2d\xe8\xe2\xa7\xd2\x1d\xfc\x9a\xd1\xb5\xa3\x57\x0b\x10\ +\x5a\xd7\x92\x6f\xbb\xde\x91\x91\x4d\x18\x5c\x93\x94\xc5\x35\x0b\ +\xd7\x65\x69\x5d\x9f\x42\x50\xa7\x9b\x66\xc4\xab\x1a\x78\xa5\x48\ +\x63\x3e\x20\x17\x44\xb5\x83\xcc\x68\x9a\x6a\xa1\x35\x4b\x79\x21\ +\x14\xea\x7a\x8d\x44\x0d\x23\x72\xea\x8b\x9a\x36\x2c\xc9\x61\x1e\ +\xa3\xb9\xd8\xc3\x3b\x04\x82\x98\x0f\x03\xe9\x22\x50\x1f\xd6\x28\ +\x9d\xf6\x38\x36\x07\x30\xce\x74\xda\x37\xe6\x13\xed\xcd\x07\x22\ +\xd6\xf0\xc3\x35\x1e\xf6\x36\x7f\x91\x99\x85\x28\x31\x06\xc2\x63\ +\xcc\xe0\x63\xf1\x29\xe7\x16\xda\x14\x9a\x3c\x1e\xaa\x51\x82\x58\ +\x90\xe3\x5b\x6f\xb0\xd3\xb8\x9e\x8b\xa8\x04\x98\xbf\x88\x8c\x76\ +\x90\x23\x86\xd1\x18\xeb\x65\x6c\x43\xfd\xa4\x50\x99\xbc\x98\x3d\ +\x2b\x70\xfa\xc2\x5b\x77\xbe\x91\xf0\x15\x16\xc7\x86\xee\xcf\x0e\ +\xf4\x55\x2b\xa9\x10\x1f\x9c\xbc\x50\x2b\x63\xbc\x6f\x6a\x0a\x50\ +\xcf\xa0\x22\x47\xdf\xd8\x26\x6a\x87\xfb\xe0\x7a\xa0\x52\xfc\x5f\ +\x36\xbc\xd4\x11\xfd\x80\x1e\x1a\xdd\xff\x8e\x4a\x41\xaf\x15\x85\ +\xbc\xb4\x81\x81\x1c\xe7\x13\x76\x2f\x63\x43\xa6\x95\x15\x15\xb8\ +\xb4\x20\x37\xfc\x6f\x2d\x5c\x5f\xf4\xa7\x24\x45\x88\x14\x54\xa2\ +\x75\xb8\x16\x29\xd9\xd6\x40\x25\x94\x84\x6d\xa0\xab\x5e\x2a\x8d\ +\xc3\x8b\x2b\xe7\x0b\xb8\x06\xe2\xa7\x12\x61\xa7\xf3\x0d\xcc\x23\ +\xc0\x8a\x96\xd7\x7e\x9a\xca\x86\x07\x2d\x90\xab\x00\x2d\x90\xb6\ +\xeb\xbe\xe7\xe7\xf1\x39\x2f\xf1\x39\x99\xc8\x51\x90\xa6\x2d\xdc\ +\xa4\x15\xb1\xa9\xf3\xa2\xaa\xc3\x36\x20\x97\x76\x38\xc3\x01\xcf\ +\x39\x4f\x67\xc3\xf6\xdc\xce\x64\xec\x0b\xf3\x87\x94\x9e\xe4\x49\ +\xd9\x37\xf5\xe9\xe7\x7d\x05\xe1\xf1\x21\xe5\x9b\x42\xca\x30\x2e\ +\xde\x0e\x8c\xe1\x89\x3d\x2a\x21\x61\xa1\xbf\x2a\x80\x9f\x40\x84\ +\xbf\xc9\x60\xd0\xcd\xcf\x34\x9a\x96\xb2\xaf\x25\x96\xc7\x84\x08\ +\xf2\xae\x6d\xdd\xb0\x1f\x7a\x0f\xb3\x30\x5e\xd0\x83\x47\xdf\x78\ +\x02\x41\x47\x0b\xd6\x80\xd6\xe0\x2d\x1f\xd7\xf1\x6d\x3e\x16\xa9\ +\x93\xa9\x2d\xc6\x40\x8f\x03\xd9\x70\x8e\xd0\x46\x73\x20\x49\x5f\ +\xd0\x52\xb2\xf3\x26\x37\x19\x07\xc5\x6d\xa8\x12\xca\xc5\x2a\x50\ +\x46\x05\x1d\x60\x44\x40\x31\x80\x21\x31\x5c\x5c\xde\xba\x0f\xf1\ +\x3d\x9d\x1b\x24\x12\x8a\x3c\x22\x12\x89\xdd\x21\x1f\xa8\x25\x12\ +\x47\x8c\xa3\x3c\xf9\x0f\xa6\xd3\x48\xc4\x67\xbd\xed\xec\xd7\x65\ +\x52\x8e\xcd\x7a\xc2\x47\xb7\x92\xca\xd7\x49\xbc\xf0\x2a\x56\x39\ +\x39\x90\xa8\x28\xe3\xad\x37\x45\xfa\x97\xb6\x42\x08\x47\x1d\x78\ +\x70\x66\xc7\x87\x2b\xd8\xb8\x10\xa0\xb4\x8a\x70\x27\x0d\x91\x2e\ +\x32\x40\xd6\xe9\xb5\xa6\x05\xe4\xbe\x50\x00\x1f\xb3\x83\x0d\x6e\ +\xd3\x54\x4e\xa1\xd6\xb2\x31\x1e\x0c\x8d\xe6\x82\x81\xb5\x43\x19\ +\x8d\x9d\x87\x08\x05\x16\x12\x94\xef\x68\x69\x81\xbe\x14\xca\x86\ +\x05\x16\x50\x90\x41\x04\x1b\xa1\x57\xda\x17\xd8\xd5\x45\x13\xf4\ +\x17\xbc\x6d\x95\xf6\x78\xec\x8b\x2e\xac\x30\xa6\xe9\x21\x63\xae\ +\xd5\x4e\x6a\xb4\x2d\xbc\x3f\x78\xe3\x62\x8c\xd9\xc3\x8e\x36\xb2\ +\x31\x96\xc9\x54\x1f\xe3\xd8\xc2\x0f\xf5\xee\xdf\xe9\xab\xac\xda\ +\xab\x5e\x6b\x54\x5d\x9b\x48\x47\xa8\x8e\x86\x0e\x84\x8f\x01\x37\ +\x32\x28\x2c\xa6\xd9\xb9\x1e\x0f\xd1\xf0\x13\x42\xcc\x41\x6a\x7e\ +\x53\xcd\x73\x90\x76\x19\x5f\xe3\x11\x5c\x10\x03\x0f\x95\xc9\xcc\ +\x06\x18\x3a\x76\xe9\xeb\x06\x20\x8d\xa8\xee\x02\xd2\x52\xf0\x38\ +\x75\x0b\x56\x4a\xc7\x53\x08\xf7\xe4\x31\x4e\x04\xce\x35\xbd\xc9\ +\xd6\x5c\xd4\x14\x8b\x01\x14\x69\x2d\x05\x5f\x34\x16\x1e\x21\xb8\ +\x46\xa0\x46\x2a\x0f\xb4\xd7\x24\xe1\x47\x01\xd9\x9e\xde\x22\x50\ +\x62\x37\xee\x90\x73\x61\x45\x6e\xf0\xf9\x93\x3d\xa7\xb0\x91\x1a\ +\x0b\x0d\xd4\x61\x51\x40\x17\x06\xb8\xe0\x80\x3c\xf8\x17\xb7\x5d\ +\x4c\xa4\x47\x12\x91\x95\xa0\x8e\xf6\xa8\xe1\x84\x98\xa4\xa1\x63\ +\x10\x8d\xcd\xb6\x85\xf5\x76\xa4\x86\x40\x69\x8d\xe7\xb4\xfa\x6b\ +\xae\x6a\xe3\xdb\x4d\xbe\xf3\x0d\xb2\xc0\xeb\x43\x4d\xad\xc1\xc3\ +\x5c\x9c\xf4\xc1\x1b\x72\x00\x2d\x72\x2e\x80\x30\x5d\x16\x42\x23\ +\x0e\x3b\x48\x3f\xd2\x18\x47\xee\x20\x95\x31\x18\x68\x8e\x87\xe9\ +\x51\x43\xc6\xd8\xd0\x48\x4d\x12\x3a\x2a\xd5\x26\xc6\xc1\x9b\xb5\ +\xe6\x6e\x06\x55\x07\xdb\xce\xd7\x64\x52\xf7\x65\x5a\x43\x02\xba\ +\xf2\x95\x46\x7b\xe6\x07\x22\xd4\x5a\x81\x13\x1b\x98\xe8\x20\xa9\ +\x2c\xe8\x69\x0b\x8d\xd1\xf4\x57\x81\x55\xad\x0d\x49\x03\x98\xfe\ +\x39\x72\x3b\x78\xbc\x5e\x23\xdb\xa3\x4d\x6f\x47\x61\x13\x1b\x62\ +\xce\x3e\x98\xbb\xdb\x37\x3e\xdc\x36\x74\x60\x0e\x72\x16\xd8\x05\ +\x44\x7f\x70\x51\x0f\x24\x94\xc3\x29\xaa\x6d\x6d\xc9\x7c\x7b\x72\ +\xbb\xf6\x28\x5d\x0b\x11\x4b\x2d\x41\xa9\xc1\xa5\x18\x2d\xf2\x5a\ +\x0b\x1a\xd7\x48\xb3\x81\x85\xd4\x94\xd1\x55\x79\xbd\x2a\xc3\x17\ +\xbc\x71\xb4\xd7\x18\x1a\x0b\x0d\xd0\xca\x74\xb0\x61\xa9\x7a\x1a\ +\xaa\xaf\xda\xb9\x4c\xc0\x1a\xf6\x90\xeb\x0b\x6f\xb5\x8b\xf6\xe6\ +\x2f\x34\xe7\x54\xc2\xab\x27\x0a\x3a\xb0\x52\x5b\x21\x30\x1f\x10\ +\x0e\x57\x20\x8d\x0d\x33\xd3\x55\x19\x1c\xc4\x83\x34\x7e\x8c\xd9\ +\xe4\x8c\x63\x74\xed\xb7\xfa\x82\x82\x41\xcd\x87\x6f\x9d\x17\xa9\ +\xdc\x7a\x0a\x3d\x72\xc0\x86\x5c\xe1\x6b\xed\x7b\x1e\xea\xd2\x97\ +\xa1\xd6\x39\x96\xd9\x60\x3e\x83\x88\x30\x0e\x7d\xc0\x8b\x3a\xea\ +\x5d\x07\x3f\x24\x40\x0f\xca\x44\xa0\x35\x78\xaa\xc0\xbb\xcc\xd4\ +\x54\x49\x21\x9f\xbf\x88\x4f\x9e\x72\x6d\x47\xdf\x88\x0d\x11\x6a\ +\x28\x55\xc6\x37\x2b\x3f\x6e\x14\x6e\x03\x61\xa5\x59\x29\x5d\x4d\ +\x85\x60\x1c\x90\x26\xd4\xb3\x01\x3c\x4a\xe5\x4c\x65\xfb\x48\x88\ +\xaa\x92\x96\x4d\xc0\x6b\x8b\xbe\xa9\xc4\xf5\x04\x31\x94\xef\xa0\ +\x97\x1b\xd5\x1b\x45\x27\xc4\xee\xc9\x1b\xbd\x15\x1d\x44\xaf\x62\ +\xf8\x90\x50\x1f\xbc\x29\xc3\xa6\x73\x02\x95\xe3\x6a\xa9\xd7\x54\ +\x7a\x82\x97\x0a\xad\x42\xae\xd7\x50\xd5\xb9\x3f\x79\xa3\xc9\x4a\ +\x3c\x9d\x7b\x81\xc7\x9c\xa4\xbb\xce\x47\x5b\xa5\x55\x57\xed\xd9\ +\xb6\x94\xa4\xc5\xc6\x6c\xab\x0d\x36\xe4\x51\x79\xb1\x97\xf8\x9c\ +\xeb\x04\x9d\x6e\x22\xc2\xcb\x78\x08\xf8\xcd\x37\xd0\x9c\x17\x85\ +\x18\xae\x67\x9b\x28\x65\x9f\xb0\x56\xb9\x14\x52\xa1\x76\x53\xd0\ +\xfe\xcd\x2d\x5a\x51\x41\x31\x6d\xf1\xff\x7b\x19\x8d\x7a\x4a\xa9\ +\xf7\x98\x94\x74\x3a\xca\x44\x07\x1b\xd2\xd0\xb9\xc6\x79\x6c\x98\ +\xcb\xc0\x0e\xc7\x8c\xda\x53\x87\x97\x3a\xf4\xed\x29\x87\x0c\x7d\ +\xf4\xf8\x30\x32\x5d\x88\xa1\x62\xc4\x95\x7e\xc9\xcb\x7f\x8a\x5c\ +\x77\x39\x0a\xd9\x30\x6e\x34\x47\x1e\x80\x46\x81\xb0\xd6\x30\x05\ +\x0d\xc0\x9e\xb4\xf1\x30\x61\x2d\xa5\x9f\x1f\x0e\xf0\x11\xb4\x09\ +\x42\xd8\xba\x4f\x6b\x3b\x04\x8f\x1d\x6d\x5b\x59\x8d\xe9\x8a\x44\ +\xa2\x43\x1e\x15\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\xc6\x51\x9e\ +\xfc\x63\x9d\xf6\xc9\x67\x44\x94\x0d\xe9\x6f\x85\xa9\xc0\x53\x53\ +\x1d\xbb\x71\xa5\x4f\xe7\xdb\xce\xcd\x5d\xef\x37\xdd\x6e\x47\x96\ +\xa4\x2e\x32\x78\x08\x88\x46\x1f\xac\xa1\xe4\x22\x83\xca\x54\x8f\ +\x0a\x1a\x95\x75\xf6\x5e\x43\x6f\x8b\x0f\x5c\x80\x81\xdc\x17\x0b\ +\xa0\x85\x9c\x46\x10\x74\xbc\x14\x51\x7f\x23\x6e\xc8\xa3\x57\x63\ +\x09\x83\xf1\x21\xd3\xf6\xf0\x12\x86\x22\x14\xba\x28\x82\xcd\x78\ +\xda\x36\x35\x16\x48\x38\x26\x66\x8f\x9a\x31\x94\xe6\x66\x39\xe8\ +\xa6\x6d\xea\x82\x8e\xf7\x17\xfe\x42\x8b\x4c\x4a\x1b\x57\xf5\xe5\ +\xe2\x91\xe5\xe1\x7d\xf1\x38\x94\x43\xc6\xbe\x98\x4c\xea\x7e\x7b\ +\xb2\x21\xc7\x96\xb6\x5a\x1f\xd8\xa1\x79\xe1\x41\x5b\xee\xd8\xa4\ +\xa8\xb4\xb2\x52\x40\x4f\x07\x34\x83\x42\x44\x2a\x11\xbd\xf6\x8d\ +\xb6\x96\x93\xdb\x81\xd6\xe7\x63\xf2\x92\x76\x96\xfc\x3f\x6a\xda\ +\x26\xfb\xcd\x7f\x8a\x6f\x3e\x8c\x66\x15\x0f\x4e\xf3\x07\x49\x0e\ +\xc0\x51\xad\x94\x9b\x21\x3e\x73\xe2\xa6\x82\x9e\x8f\x76\xd5\xda\ +\x00\xad\x35\x40\x4a\xe4\xd0\x75\x6d\xd9\x0d\xb1\x28\xd5\x52\xf2\ +\x63\xad\xa8\x37\xe9\x42\x77\xb1\xa4\xa6\x5c\xf5\x20\x40\x57\xd8\ +\xcd\x2a\x4b\xd8\x29\x61\x6f\xad\xa3\xbc\xd3\x2b\xad\xac\x2d\x76\ +\x60\xf1\x44\xee\xf0\x71\xb3\x5f\x17\x58\xa0\xc3\x02\x0c\x17\x00\ +\x70\xa3\x2f\x34\x16\x71\x28\xd3\x58\xac\xb5\xd0\x05\x02\xa1\xd1\ +\x63\xd7\x47\x1b\x5d\x44\x10\x06\xf1\xa0\xc3\x9b\xbc\xea\xd8\x0e\ +\x62\xdb\x42\x51\xd7\x96\xf2\x68\xa0\xda\x98\x4f\x5c\xf4\xc1\x4f\ +\x2a\xe9\x83\x30\xed\x8b\x3f\xa4\xc2\xe6\xf6\xdc\x20\x97\x5e\xd7\ +\xc5\x22\xa9\xb4\x06\x0f\x32\xfa\x84\x05\x13\x90\xfc\xff\x1a\x10\ +\x99\x0d\x5e\xfc\x2b\x6c\xd8\x74\x71\xf0\x52\x5a\xed\x4d\x69\x6f\ +\x79\x21\x85\x1a\xdb\x68\x6a\x40\x42\x4e\x2b\x88\x54\x6f\x44\x97\ +\x13\x6a\x88\x4d\x6e\xb6\xdc\x6c\x31\x87\xb2\x90\xa7\xbe\xdd\xd7\ +\x78\xd9\xdc\xbe\x93\x1b\x0d\x95\xd5\x6d\x3f\xf8\x72\x3b\x8c\x35\ +\x94\x64\x4d\x66\x3c\x0a\xba\xa8\x12\x44\x4f\xef\x79\xec\x06\x08\ +\x14\xcf\xaa\x08\x6f\x04\xfa\x1d\x34\xe8\x4d\xc5\x26\x77\x10\x36\ +\xb1\x21\xe2\xee\xde\xc5\xf8\xb7\x87\x4f\xdc\xcf\x40\xab\x1f\xc4\ +\x1a\x23\x1c\xff\x72\x5d\xd0\x2b\xa4\x22\xa6\xce\x6b\x11\x26\x02\ +\xb5\xed\x2e\x5e\xa5\xda\xeb\x0e\xae\x35\x4a\xb0\x24\x7a\x36\xd8\ +\x24\x32\xaf\xf1\xf6\xad\x7b\x7c\xbd\x47\x2a\x5e\xa7\xa8\x57\x9e\ +\x57\x26\x93\xa9\x9d\xd4\xf8\xa9\x6e\xfe\x94\x23\x54\xb0\xf3\xeb\ +\x97\xda\xf1\xcd\xf6\x94\x27\xe9\x1c\x18\xc4\x83\x1f\x79\xa9\xd1\ +\x37\x36\x67\x3a\x68\x5c\x2f\xa5\xda\x45\x9d\x3e\x7e\xe4\xa8\x51\ +\x8c\x9f\xbe\x06\xa9\x2f\xd5\xa1\x80\x05\x6c\xcc\x1f\x5a\xb3\xd7\ +\x9c\xcd\x96\x71\xa9\xa8\x34\x6b\x18\x3b\x2d\x2f\x7f\x10\x86\x7d\ +\xe2\xf3\x27\xea\x38\x76\x46\x9b\xce\xfb\x83\xb6\x28\x97\x4d\xfd\ +\x9d\xd7\xba\xfe\x61\x92\x38\x50\x16\xfd\xea\x7c\x4b\x1f\xc6\x75\ +\xbe\x21\x6f\xd2\x6e\xd7\x6c\x78\x85\xb9\x97\x14\x75\x4e\x09\xa8\ +\x8d\xf2\x5a\xe3\xed\xb6\x10\x28\x4f\xda\x6c\x6a\x6c\xd8\x90\x47\ +\x4e\xa4\x94\x67\xa1\xb4\x02\xb4\x34\x0a\x1f\xb3\x71\xf4\xfc\x50\ +\xa1\xe0\xf5\xc0\x75\xa8\x8d\x68\x50\x7d\x85\xa8\xa4\x54\xf0\x25\ +\x85\x38\xca\x44\x85\x40\xe3\xab\x90\x66\x1d\x84\x26\x6f\xe7\x1b\ +\xae\xef\x1a\xdd\x7d\x4c\x4e\xd2\x24\x6c\x07\x42\xd8\x80\xa6\x94\ +\x35\x78\xca\x29\xf4\x1a\x22\xa3\x51\xab\x84\x97\x66\xf0\x8b\x82\ +\x7f\xce\x06\x09\x58\xb9\x16\xf3\x7a\xaa\x36\xea\xa2\xbe\x55\xe7\ +\x34\x95\xf2\x66\xee\x2a\x07\xfc\x61\x96\xea\xdd\xde\x36\xc6\x94\ +\x0d\x73\x2b\xa3\xdd\xbe\xce\xcd\xc8\x0b\x2d\x36\xf8\xf1\x69\xfd\ +\x55\x03\xb4\x8d\xe6\x2c\x26\x7d\xc1\x77\xf6\xf4\x11\x5e\xa7\x1c\ +\x3a\xcf\xc0\x86\x96\x30\xf6\x35\x27\x93\x50\x5f\xe3\x80\x35\x3d\ +\x7c\xc1\xeb\x00\xf1\xc5\x39\x25\x5e\xd4\xa1\xb6\x1d\x2c\x3c\x5e\ +\x16\x96\xbb\x58\xed\x20\x10\xc4\x9f\x55\xa4\x3d\xe4\xb4\x20\xcd\ +\x17\xf5\xce\x7b\x8e\x60\x51\x6b\xae\xda\xae\xca\xb8\x91\x41\x5f\ +\xad\x9f\x60\x19\x4b\x6b\xe8\xd4\xce\x74\xb4\xf1\xfe\x55\xa9\xbc\ +\x34\xae\xd2\xf2\xa2\x9d\xf1\xb0\x23\x6f\x1b\x2a\xeb\x9f\x32\x06\ +\xf3\xe1\x75\xa3\xfa\x1b\x30\x4c\x80\xf9\x12\x63\x34\xd0\xf2\x43\ +\xf0\x26\x5a\x3f\x00\x32\xd2\x2e\x48\x24\x6e\x22\x8f\x8e\x44\x62\ +\x77\xc8\x07\x6a\x89\xc4\x11\xe3\xa8\x4f\xfe\x4d\x26\xac\xa0\x77\ +\x3a\x58\x31\x58\x6c\x08\xf0\xc6\xa6\xa6\x3b\xfe\x80\x00\x50\x7b\ +\xdc\xbe\x7b\x88\xe8\xc9\xb9\x7d\x6d\x0e\x37\xe4\x4e\x82\x16\x86\ +\x4d\xc1\xdb\x0c\x6d\x61\x81\x30\x1b\x72\x6e\x4f\x1b\xc8\x1a\x1b\ +\xe8\x50\x43\x4e\xd2\xf4\xb6\xb0\x82\xf5\x05\xd5\x99\x1d\xd4\xa8\ +\xcd\x5e\x05\xba\x48\xd0\x8b\x51\x6d\xa4\xac\x3a\x29\x97\x51\xa7\ +\x0b\x1e\x6a\x13\xe5\x78\xa3\x61\xed\x1b\x75\xb5\x7f\x66\xe7\xf6\ +\xac\xa9\xa4\xf6\xa6\xae\xab\x9d\x06\xc9\xb6\xa5\x73\x58\xcc\xe1\ +\x02\x1d\x84\x8c\xa3\xfa\x9e\xaf\xa0\x7b\x40\xe4\xb6\xd0\x21\x86\ +\xd9\x90\x37\x19\x6a\x91\xab\x4c\xdb\x11\x8e\x35\x64\xd5\x1f\x72\ +\xab\xb1\x00\x04\x75\x27\x57\x5b\x6c\x6a\x0f\x52\x74\x4a\x50\x05\ +\x92\x91\xc9\xa3\x46\xa6\xa6\x93\x3a\xe6\x19\x6d\x50\x53\x67\xed\ +\x70\x91\x8a\xfd\x10\x3e\xe4\x54\x01\x5b\x0d\x4e\x12\xc7\x26\x38\ +\x2e\x22\xd4\xf6\x00\xb4\x23\x32\x88\xb5\x21\x4a\x21\x03\x65\xd6\ +\x54\x91\x42\x3b\x94\x57\x8d\xe9\x00\xb5\x33\xa9\xf2\x06\x86\x17\ +\xb8\x84\xde\x26\xd4\x2a\x5a\x50\xcb\x4a\xdb\x51\xe8\xcd\xb6\xe9\ +\xf1\x16\xbe\xbb\x21\x17\x98\x8c\x2b\x0d\xb6\x00\xa1\x36\x9d\xad\ +\x6e\x72\xa3\x7f\x1a\xfe\x2a\x18\x9b\xdf\xe8\x73\x71\x87\x0e\x78\ +\x23\x04\xf5\x31\x16\x85\xac\x02\xcf\x37\x0a\x96\xba\x38\x82\x76\ +\x7c\x51\x01\x29\x51\x6f\x0b\x0f\xdc\x84\x86\xdc\x6d\x21\xc3\xc2\ +\x0f\xeb\xce\x46\x8a\x1e\x8f\x1a\x32\xfd\x86\x9a\xfa\xbb\x9d\xee\ +\x5f\xa9\x11\xd3\x62\x81\xc7\x4b\xdb\x00\x0b\x7b\xaf\x45\x06\x1d\ +\x62\x60\xa3\x9d\x6e\x6a\x62\x34\xe2\x89\x44\x17\xa1\x84\x27\xdb\ +\xe5\x02\x1d\x36\xa4\xe1\x3c\x4a\x13\x8b\xe8\x4c\xff\x67\x1b\x5e\ +\xf4\xd7\x4d\x6d\x61\x03\x8d\xd5\x81\xee\xda\x40\x8d\x63\xc2\xfc\ +\x18\x14\x95\xea\xd5\x86\x4e\x95\xc6\xd8\xab\xbd\xca\x49\x90\x87\ +\xc0\xed\x82\x3d\x6a\x39\x28\x3b\x39\xcc\xa4\xb6\x97\x86\xa3\xb0\ +\xfa\xeb\xb8\x80\xa5\x05\x08\xd2\x4a\x9a\x0c\x35\x08\x97\xdf\x09\ +\x62\x5b\x7e\x4e\x6d\x00\x98\xc3\xcd\xd1\xba\x6f\x11\x32\x71\x80\ +\x68\xf7\x71\xbb\x5f\xa9\x37\xe1\x90\x1c\xc7\x74\x77\x31\x19\x07\ +\xce\x01\xb1\xe3\xe5\x52\x25\x3d\xd4\xd0\x08\x69\x24\xc1\xcf\xf1\ +\xe8\x23\x94\xbe\x8d\xee\x34\xad\x4e\xaf\x43\x52\xb2\x02\x87\x2b\ +\xaf\x3e\x2c\x82\x4c\xaf\x65\xfa\xe0\x4a\x08\xea\xf8\xc2\x35\x55\ +\x5e\x14\xd3\x4e\xaf\xaf\x60\xfc\x15\x63\xd8\x44\xc7\x34\x66\x4f\ +\xe7\x4e\xcf\x9e\x1b\x0f\x09\xc6\x02\x02\xb9\x92\x83\x83\x82\x1c\ +\xf5\xaa\x12\xe8\x68\xa9\xdc\x7d\xa9\x10\x7f\x6d\x43\x37\x2a\xb9\ +\x39\x4d\xad\xd8\xa8\x4c\x2a\xbc\x68\x63\xb1\x4c\x4f\x1d\xec\x4c\ +\xef\x9b\x42\xe2\x54\x99\xce\xbb\x20\xa3\xad\xcc\x3d\x98\x3b\x74\ +\x98\x37\xc9\x7e\xd2\xe9\x13\xe2\xab\x4c\x2d\x40\x43\x66\x72\xb7\ +\x81\x86\xee\x21\x1e\x6d\x54\x07\x43\x6a\xe0\x2b\x35\xa0\xfe\xba\ +\x75\x63\x0e\x39\xfc\x42\x6c\x10\x76\x5c\x56\x1f\x37\x56\xaa\xca\ +\x69\x03\xb1\xc3\xed\xd9\x2e\x34\xb2\xa7\x9d\x97\x3e\xea\x27\x3a\ +\x6c\x68\x5d\x81\x6b\x01\xed\x2d\x9e\x1f\xc3\x3d\x3b\xe8\x2a\xdf\ +\x59\x21\x3e\xfd\xa9\x57\x1a\xaf\x15\x1e\xaa\xd6\xf9\x34\xcc\x51\ +\xd8\xe6\xd7\x29\x70\xc2\x2a\xa9\x7c\x47\x22\x0a\x94\xc1\x9f\x7e\ +\xd0\x19\xae\xf1\x08\x89\x04\xad\x3b\x3f\x54\x6a\xab\x72\xf3\x43\ +\x8d\x17\x79\x5a\x99\x4c\x6b\xa6\x57\x75\x9d\xdc\xed\x31\xdf\xd0\ +\x6f\x77\x51\xc1\xeb\xa7\xcf\x59\xdc\x86\x73\x17\xb3\xa5\x4c\x4d\ +\x61\x61\x44\xe7\xd3\xcd\x47\x74\xa3\x15\xae\xd3\x78\x51\x86\x18\ +\x68\x93\x12\xd2\x52\x98\x0e\xfe\x34\x86\x88\x3a\x8f\x01\x01\xbe\ +\x5f\x85\x37\x0a\xda\xdb\x5c\x0e\xaf\x6e\x2e\xa0\x7d\xa1\xaf\xbc\ +\xb0\xf7\x6b\x4e\xd8\x77\x6e\x8f\x1a\x15\x5e\x20\x10\xc0\xe6\x43\ +\xaa\x83\x4c\x36\xec\x9f\x20\x53\x39\x58\xd4\xde\x16\x25\xdc\x68\ +\x43\x7b\xc8\x2c\xbf\xa0\xc7\x26\x2d\x89\x4a\xf3\xf3\x98\x6a\x02\ +\x5a\xe5\x1c\x34\x1e\x03\xa8\xfb\x76\x5a\x0b\x15\x62\xa8\x8d\x54\ +\x94\x60\x30\xd8\x3a\x8c\x29\x51\x81\xea\x68\x8f\xe3\x02\x52\xf7\ +\x75\x1b\xa3\xe8\x57\x75\x0e\xb7\x51\xf4\x28\x9e\x0b\xa8\x55\xa2\ +\xc7\x9d\x92\x3d\xb4\x72\xe7\x2d\x9f\x49\xb8\x5d\x6c\x03\xa8\xf1\ +\x84\xe0\xc9\x67\x74\x22\x31\x82\x3c\x3a\x12\x89\xdd\x21\x1f\xa8\ +\x25\x12\x47\x8c\xa3\x3e\xf9\xe7\x74\x1e\x33\x0e\xd8\xb5\xf5\xad\ +\x11\x83\x8c\x4d\x6b\xbc\x41\xe0\x66\xa3\x71\x8a\xaf\x79\xe1\xb6\ +\xa9\x83\xdd\xa7\x76\x10\x9e\xac\xdf\xc8\x02\xb0\xd1\x15\x04\x2a\ +\xe9\x53\x15\xa8\x34\xa6\x5e\x26\xcc\x8f\x32\xe8\xb1\x09\x6f\x34\ +\x5f\x58\xb0\x10\x16\xb7\x70\xba\xd0\x01\xad\xea\x49\xf9\x62\x05\ +\x17\x18\x20\x32\xb9\xd4\x20\xb5\x1b\x90\x75\x7a\xbe\xdc\x56\x36\ +\x7f\xb8\x23\x85\x54\x52\xb3\x4d\xa3\x45\x46\x1e\x75\x95\x41\xec\ +\x32\x7a\xd1\x46\xc5\xa8\x61\x67\x8b\x25\x52\x69\x12\xd2\x7e\xa5\ +\xa1\x87\x63\x57\x77\x34\xf2\x14\xa3\xb0\x38\xe3\x3a\xbc\xba\x5c\ +\x20\xb6\x5a\x19\xb5\x91\x4d\xfb\x23\x8d\x21\x27\xf0\xd0\x3b\xcd\ +\x3c\xd4\x4e\xdb\x82\xd8\x65\x9a\x73\xfc\x79\x22\xda\x09\xaf\x8b\ +\x40\xc2\x4b\x5e\xb0\x81\xbd\xee\x13\xb0\xc2\xe3\x05\x5b\xd0\xa8\ +\xd0\xa6\xbc\xc9\x83\x40\xdf\x95\xa2\x1d\x8e\x0b\x8f\x49\xb9\xd4\ +\xbe\x1f\xba\x38\xb2\x2d\x61\x63\xf9\x71\x13\x5a\x5e\x3a\x8c\xc8\ +\xa5\x8b\xab\x05\x20\x7a\xde\xb4\x2a\x68\x0b\x65\xb0\xed\xb4\xea\ +\x84\x26\x15\x6a\xe7\xbc\x45\x0e\xf6\x01\xc8\x4f\x09\xbe\x09\x31\ +\x1c\xb4\x05\x2c\x27\x94\xd5\x8f\x30\xb9\x3f\xb4\x30\x78\x1f\x58\ +\x93\xf4\x9b\x71\x92\x46\x43\x86\x4a\x75\x6a\xdb\xd0\x6e\x23\x35\ +\x16\x41\x74\xfd\x43\x17\x07\xa0\xeb\x6a\xd8\x91\x52\x5a\x15\x04\ +\x63\x29\x51\x75\xcc\x17\xb4\xcb\x9c\xa6\xce\x16\x18\xa4\x1d\x5d\ +\x38\x82\x89\xcb\xd4\x6e\xc1\x6f\x80\x9d\xd6\x85\x19\x97\x23\x6e\ +\xb4\x43\x8d\x05\x21\xd8\xeb\x5f\x55\x07\x5b\x6c\xf6\xb3\x95\x18\ +\x4d\xb1\x42\x11\x6c\x3c\x67\x5d\x6c\xe2\x4f\x3f\x42\xeb\xb9\xd3\ +\x4e\x6d\x6a\x3c\xf2\xba\xe0\x02\x30\x87\x9e\x7d\x90\x03\x6c\x0f\ +\x05\x78\xd9\xa4\xef\x30\x47\x0c\xd8\xeb\x67\x66\x88\xad\x1c\x63\ +\x7a\x6c\xd6\x68\x13\x0b\x4d\x66\xa4\xc7\x83\xeb\x40\x76\x74\xd7\ +\x1e\x8e\x75\xa5\xd5\x0f\x4a\xd0\x42\x56\xdf\xc6\x4f\x80\x33\x88\ +\x8b\x6f\x68\x9b\x0a\xd3\xcb\x46\x7b\x63\xc8\x93\xc6\x9b\x4a\xca\ +\x29\x65\xa5\x3c\x69\x93\xcf\x07\xec\xfd\x1c\xd8\x16\x9b\xb6\xd9\ +\xc0\xdd\xdb\x34\x6e\x19\x36\x71\x80\xe8\x7f\xdc\xf6\x11\xf7\x7f\ +\x3c\x2c\x7b\xc7\x47\x7b\x90\x0c\x80\xf6\x72\x3e\xc8\xb5\x81\x97\ +\x3c\x41\x1b\xba\x07\x51\x56\x19\x17\x4f\x15\x3d\x8a\x8c\x5f\x6b\ +\x04\x76\x71\x0a\x12\x81\xda\xf9\x35\xdc\xff\x37\x98\x5e\x76\x61\ +\x09\x5b\x70\xe6\x85\x6b\x29\x6a\x91\xf1\xba\x6b\x13\x35\xd0\xf5\ +\xfa\x4b\x8b\x8e\x86\x98\xfe\x68\x43\xb2\xd6\xda\x74\x50\xf1\xdb\ +\x6e\xb8\x3e\xe3\xa7\x16\x97\x12\x4b\x7a\x46\x5f\x40\xe3\xa8\xbd\ +\x5e\xf7\x79\x15\xb7\xd8\x9d\x1d\x1e\xae\xd0\x42\x6a\x8c\x8c\xda\ +\x9b\x92\x1c\xf3\xf3\xda\xfd\xc9\xb3\xb7\xe8\x1a\x4a\xd3\x77\x39\ +\xc1\xc6\xed\x31\x97\x40\x9f\xd9\x77\x68\x3c\x96\x6c\xfa\xf0\x0f\ +\x3a\x98\x28\x4f\xbd\xcc\x3d\x34\x2f\xb5\xe3\x66\xb1\xf8\xa2\xcc\ +\xc6\x13\x6d\x56\x1b\xa7\x91\x8b\xda\x68\xae\xb0\x45\x53\x88\x0a\ +\x39\x42\x5b\x7c\x79\xf1\x5d\x69\x96\x5a\xdb\xa6\x32\x46\xe7\x31\ +\x54\xe5\x90\x42\x2d\x2f\x34\xa0\x31\x54\xdf\x41\x73\xe1\xaf\x0f\ +\x50\x1b\xfc\xb1\xf1\x58\xf4\x23\xb3\xf3\xa3\x8a\xbb\x0d\x6d\x4a\ +\x0c\x95\xca\x5b\x84\x9a\x04\x25\x84\x91\xac\x82\x58\x19\x1a\x07\ +\x73\xa7\x3d\x07\x21\xfd\xba\x22\x3c\x5e\xf0\x01\xab\x85\x71\x46\ +\x57\x1d\xfd\xab\x81\x42\x5c\xe3\xa5\xc9\xaf\x93\x5a\xc1\x4f\x08\ +\xbe\x51\x58\x1c\xd4\x4e\x03\x6a\xac\xb4\x04\x54\x9d\xf6\x1f\x75\ +\x7d\xb8\xc4\x4d\xe7\x39\x73\x36\x7a\x83\xc6\xb5\xbe\xe6\x69\x32\ +\xab\xc9\x87\xeb\x74\xd5\xe1\xc5\x4b\xbf\xff\xd1\x94\xb6\xab\xd3\ +\x06\x5c\xe7\x21\x83\x1e\xf3\x10\xe4\xdc\xe5\xa5\x3a\xd9\xe4\xe5\ +\x76\x28\x30\x7f\x62\x5b\x14\x20\xb8\xed\x67\xea\x18\x4c\xde\x90\ +\x69\x7c\xdf\xf4\x81\x1d\x8e\x25\xe8\x61\x29\x2f\x24\x62\x79\xa8\ +\x0d\x46\x4b\x1f\x6c\x42\xaf\x04\xec\x41\xdb\x9c\xc9\xdb\xa4\x1f\ +\xbd\x50\x90\xd2\x4a\xe3\x52\x8f\x70\x9a\x15\xe1\x7f\x78\x55\xf3\ +\xa4\x2f\xb4\xda\x86\xf7\x1b\xc7\x2a\x5f\xc2\xcb\x54\xcd\x6c\xc1\ +\x23\x4a\xf7\x07\x68\xea\xc7\x52\x8e\x29\x89\x6a\x72\x95\x01\x20\ +\xb4\x7d\xcd\x47\xa5\x14\xa3\x6d\x90\x16\x87\x34\x15\x28\xcd\x8e\ +\x30\x5d\x15\x45\x9d\xa0\x61\x27\xa1\x07\xa3\x82\x63\x23\x68\xfd\ +\x5d\x0e\x44\x5d\xb4\x8f\x71\x7a\x01\xdb\x60\x89\x44\x1f\x79\x84\ +\x24\x12\xbb\x43\x3e\x50\x4b\x24\x8e\x18\x47\x7f\xf2\xfb\xbc\xb3\ +\x1d\x08\x97\xc5\xf9\x29\xd0\xda\x0e\xf9\xce\x46\x0c\x3a\x84\x56\ +\xdf\x36\xa4\x72\x4f\xa1\x9b\xe4\x07\xd0\x45\xfd\xe2\x27\x3d\x6f\ +\x2d\xc5\x81\x32\xde\x10\xfb\x4d\xb0\x47\xc5\x8d\xae\xd6\x14\x1b\ +\x8d\xcb\x05\x59\x75\x04\xa1\x15\xd5\xd0\xfb\x42\x08\x58\x4a\xab\ +\xad\x9a\x4a\x11\x16\x34\xc0\x6a\x8d\x45\x0b\x5a\xf3\x4d\xca\xfc\ +\xa0\xc0\xa2\x07\x16\x4b\x20\xea\xe2\xa9\x0e\x75\xa4\xa1\xab\x74\ +\x95\x01\xa0\x51\xb9\x0d\x48\xa5\xb5\xf2\x1c\xa4\x0f\xf2\x26\xe9\ +\x76\x2c\x62\x4c\x98\xc1\xa8\x93\xb3\xef\x46\x77\x3e\x58\x3e\x81\ +\xad\xc9\x55\x4a\x5f\x35\xb3\xb6\xcc\xaf\xda\xd0\xbe\x8b\xa7\xbc\ +\xd3\x22\x47\x08\xc4\x36\xbb\x5a\xc3\x3f\xda\xa2\x35\xe3\xa5\xe8\ +\xcb\x29\xd2\x3c\x00\xd6\x95\xd7\xf1\x16\x57\xda\xf3\x18\x93\x5a\ +\x4d\x29\x94\xcd\x16\x98\xd8\x17\x8f\x6d\xb4\xfd\x13\x7f\x35\x50\ +\x1d\xec\x2b\x28\x46\x3c\xc4\x96\xe8\x38\x78\x79\xe3\x0f\xb1\xc9\ +\x00\x15\x90\x44\xa9\xd2\x48\x21\x2e\x49\xda\x39\x59\x4f\x06\xf3\ +\xf5\x1a\x62\x25\xfb\x72\x02\xa4\xb9\xc1\x90\x64\x2f\x8c\xe7\x2a\ +\x24\xf4\xde\x46\x44\xf5\x8b\xfe\x52\xd0\x5e\xe5\xe0\x9d\xf6\x9b\ +\x7e\x05\xec\xa8\xad\x3a\x72\xd5\x4e\xad\x3a\x1d\x48\xa1\xa5\xe6\ +\x02\x8a\x1b\xf4\x74\xf2\x5a\xe8\x02\x0b\x17\x11\xa0\x33\x39\xdf\ +\x58\x60\x00\xcf\xc5\x14\xf0\xa6\xb3\x07\x6c\x7c\x61\x41\xc4\xfe\ +\x0a\x18\x46\x6a\x2b\xb5\xf9\x69\x5c\xf3\xb5\x36\x54\x47\x6b\x93\ +\x6b\x4c\xd7\x51\x83\x9a\xbc\xda\xf1\xcd\x7c\xa0\x16\x5b\xc4\x0e\ +\x76\xa6\x50\x52\x8d\x69\xc6\xda\x78\x68\x74\xa5\x87\x12\xe3\x59\ +\x4a\x51\x09\x31\xf5\x5c\x50\x31\x08\x69\x7d\x00\x08\x4e\x64\x14\ +\x83\xd7\xd7\xf5\x02\x7f\xe5\xad\x7e\x2e\xe7\x11\x41\x1e\x22\x95\ +\x53\xe7\xb5\x2a\x28\x16\x42\xe5\x51\x86\x1a\x3c\xe0\xb4\xe9\x60\ +\xab\x67\x84\xed\x5b\xca\x83\x0e\xb4\xf9\xa9\x1b\x38\xd9\xe4\x58\ +\x55\x5a\x75\x7d\x5a\xeb\xbb\x85\xb7\x17\x4f\xb0\x88\x31\xf9\x00\ +\x6e\xe9\x9e\x78\x00\xe0\x67\x6d\xc0\xd8\x3e\x77\xb4\x7a\xea\xda\ +\x20\x6b\x80\x73\xc3\x48\x7c\xd8\x47\x6f\xa7\x51\x77\x36\x46\xf7\ +\xda\x56\xcb\xce\x57\x28\x32\x16\xcf\xae\x35\x28\x71\x66\xbb\x0c\ +\xaf\xee\x81\x9e\xf2\x7a\xa9\x44\xa1\x3c\xeb\xea\x2f\xb5\xf9\x55\ +\x9a\x0f\x7f\x70\xed\xed\xa2\xc0\xdf\x5c\x3a\x7b\xf2\x22\x57\xa1\ +\xf2\xf0\x83\x84\x71\x4c\xe3\xf6\x94\x07\x1b\xb9\x46\x77\x3e\xa8\ +\xf1\x96\x36\x59\xe3\xa5\xb4\x72\xa8\x54\xaa\x35\x74\x94\x52\xa6\ +\x73\x82\x3e\xdf\xc9\x11\x5f\x06\xd7\xda\xa5\x15\x68\x25\x74\x5a\ +\x81\x78\xe8\x8b\xf5\x9d\x51\x3c\x9e\xd4\xfa\x07\x40\xfd\x87\x6a\ +\xa8\xbb\xb9\x24\x74\x8c\x56\x75\xa8\xf9\xaa\x73\x1a\x44\x33\x3a\ +\xc4\xe1\x8b\x5d\x35\x9e\x86\x56\x3b\x0d\x57\xb0\x7c\xd1\xd8\xec\ +\x54\x51\x1f\x86\x42\xcf\x4a\x7d\x6a\x3c\xaf\x09\xf4\x51\x7c\x74\ +\xc2\x45\x49\x55\xd1\x9f\x9e\xca\x0a\x18\xa3\xf2\x7a\x15\xd1\xf1\ +\x54\xbe\x3a\xfb\xb5\x80\xf6\x76\x7d\xa8\x61\xf4\x9c\x60\x2c\xf7\ +\x0b\x68\x65\x16\x49\x24\x7d\xbb\x3e\xd8\x0a\xdb\xed\xae\x57\x62\ +\xdf\x39\x1b\xad\x02\xd8\xc2\x8e\xb6\xb6\xb9\xa9\x02\x3a\xa3\x9c\ +\x10\x74\x34\x7c\x68\x45\x3b\x3e\x4e\xc1\x35\x3c\xcc\x2d\xea\x46\ +\x5e\xaf\xef\xca\xc3\xdd\x68\xd9\x8c\x35\xba\xb3\xd1\x5a\xe7\x4b\ +\x6a\x40\x6d\xd5\x43\xc6\x17\xe7\x4d\xa7\x62\xe9\x6d\xc0\x67\x45\ +\xbb\x6a\xc3\x97\xe0\x54\xe7\x5b\x95\x37\x3d\x6a\x54\xfa\x2d\x35\ +\x6d\xb3\xb6\xab\x16\xa4\xdd\x56\x79\x4c\x64\xa0\x05\x40\x63\x3e\ +\x61\x02\xb1\xc1\x9c\xc6\xed\x4d\xa8\x2e\x7c\xe0\x04\x9d\x8a\x75\ +\x9e\x64\x6d\xba\x4c\x29\xd5\xd1\x3f\xc8\x20\x02\x2d\x7d\x06\x45\ +\x19\x37\x79\x2d\xd8\x03\xc6\xa2\x04\x31\x69\x22\x05\xe9\x6a\x69\ +\x2f\x6b\x97\x89\xab\x1f\x5e\x68\x84\x35\x64\xde\x29\x7f\x98\xa6\ +\x52\x84\xab\xf1\xc0\xf0\x0f\xb5\x20\x87\xda\x1e\xd6\x41\x6e\x12\ +\xd2\x5a\x19\xef\x72\x3b\xac\xc9\xb9\xce\x4d\x1c\x43\x87\x3e\x6c\ +\xea\x71\x3d\x02\xf7\x1b\xb3\x19\x8a\x0b\x54\x7b\x27\xd6\x05\x4a\ +\x24\x3a\xe4\x51\x92\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\xe4\xc9\ +\x6f\x98\x9a\xb0\xb6\xba\x21\xd9\x5e\xe0\x8d\xb4\x93\xe5\xf5\x50\ +\x8f\x7e\xa2\xb8\x17\xf7\x48\x80\xde\x13\x88\xd0\xfe\x52\x8f\x97\ +\x82\x7a\x39\xe8\xfc\x20\x23\x47\x9d\xdf\x5c\x83\x55\xbe\xd3\x9b\ +\x8c\x72\x2c\x20\xe8\xb2\x91\xca\xf0\x56\x1d\xfe\x1a\x9b\x8b\x11\ +\x6e\x0b\x19\x2b\x29\xd4\x90\x75\x17\x0b\x2c\xbc\xe1\xa7\x32\xbe\ +\x5c\x27\x32\xe5\x19\x14\x6f\x81\xd9\x81\xe1\x86\x37\x15\x9d\x3c\ +\xd2\xa8\x55\x22\xb4\x2f\x58\x68\x1f\x18\xdf\xfe\x57\x07\xe3\x58\ +\x7b\x74\xa0\xbf\xeb\x40\xeb\x46\xd0\x4e\x63\xb0\x46\xee\x82\xda\ +\x9e\x6f\x08\x44\x35\x6c\x61\xa0\x0b\x38\xfa\x97\xd3\xc1\xce\x79\ +\xc4\x35\xda\x17\x87\xfc\xdb\x63\xba\x10\xa4\x6d\xb9\x0f\xf6\x6e\ +\x5d\xbc\xb1\x9a\xb4\xe5\x82\x17\xe4\xd4\x41\x88\x34\x8c\xe6\x1e\ +\xa4\x0e\x6f\x79\x49\x5c\x3d\x5a\xd0\x8e\xda\x91\xb3\xf6\xbb\x76\ +\x85\x47\x7f\xf9\x8d\x35\xd8\x78\xdf\x18\x85\x3e\x3c\x1a\x2b\x29\ +\x7a\x25\x2c\x3e\xb5\x55\x1d\x0c\x95\xc4\x5f\xcf\xb2\xa6\x90\xa0\ +\x85\xc4\x47\x84\xae\x0d\x87\xf1\x3c\xd6\xf1\x17\xf9\xc3\xd1\xe1\ +\xd7\x65\x20\x20\xe9\xb6\xa2\x31\x15\x39\x61\x54\x1d\xec\x2b\x44\ +\x86\x77\xbd\xf1\xee\x45\x55\x1e\x3a\xd9\xb0\x0e\xc0\x56\x8d\x57\ +\x3b\xf0\x66\x07\x89\xbc\xeb\x42\x00\x64\x50\xd2\x50\x6b\x6d\xc7\ +\xe5\x6d\x4d\x4d\x5d\x44\x22\x1a\xdd\x0d\x3f\x7e\x6b\x4b\x79\x5d\ +\xa8\xd0\x05\x13\xa8\xb5\xc6\xa2\x05\x68\x5b\xbc\x00\x63\x75\x9f\ +\x47\x25\x85\xfe\x69\xb1\xd2\x0c\x11\xec\x29\x97\x11\xb5\x45\x99\ +\xa8\xf3\xf8\x42\xe8\x1b\x64\xa0\x75\x21\x87\x2b\x37\x94\xab\x2d\ +\x49\x70\x55\xae\xb5\xc5\x92\xad\xd6\xc1\xa6\xb6\xa7\xa6\x04\xf5\ +\x18\x37\xd3\x01\xfa\xe0\x12\xfb\x42\x4a\xcf\x8f\x22\xd8\xa1\xee\ +\xda\x81\x9c\x31\x94\xa8\x72\xca\xa2\x5e\xde\x4a\xa9\x1c\x2a\x15\ +\x82\x96\x8d\x43\xa3\xed\xd7\xd8\x95\xc6\xdb\xf2\x01\xa3\x8a\x2a\ +\x07\x4d\x73\xf3\xd9\x0d\x10\x0b\x2d\xce\x81\xb7\xab\x19\xde\x0a\ +\xad\x7b\x4c\x61\x97\xdd\x4b\xdc\x2d\x6e\x73\x28\xb9\x6f\xe5\xe7\ +\x06\x1b\xc0\x8d\x73\x44\x62\xe9\xbb\x36\x03\xd0\x4a\x04\xac\x5b\ +\x17\x22\x5e\x81\x94\xf2\x6b\x25\xf9\xaa\xb4\xeb\x21\xdf\xa1\x46\ +\x09\x1a\xd7\x72\xe3\xd1\x0e\x63\xc8\xa6\x2f\xe3\x4d\x6f\x2a\xd9\ +\xd4\xa7\xea\xf0\xd9\x8a\xeb\xb2\x4a\x69\xc4\x17\x54\x4a\xa9\x1f\ +\xaf\xe9\x6a\xa5\x36\x20\xa1\x23\x45\x3d\xca\xee\x01\x96\x5e\xb3\ +\xe9\x61\x7e\x5d\xdb\xae\x71\x9d\xc4\x56\x46\x6a\x0c\x18\xda\x72\ +\x1e\x95\xfa\x71\x13\xba\x93\xa1\x06\xa7\xbc\xca\xc1\xe1\x1b\x75\ +\x3a\xf4\xd0\xeb\x06\x3d\x94\xe8\x95\xf8\x9a\x8c\xf3\x28\x68\xa4\ +\xe6\x7c\xc9\x68\x6e\x46\xbb\x5e\x0a\xda\xa8\x0e\x39\x8a\x7d\x6d\ +\x57\xed\xf8\x8b\x00\xec\x02\xf2\xc3\x58\xa8\x1f\x5f\xa8\xcd\x4e\ +\xc5\x52\x68\x92\xf0\x84\x58\xde\x10\x98\xce\xed\x5c\x47\x3b\x12\ +\x4a\x1b\x0f\x1b\x2d\x00\xcd\x41\x1d\xf0\x56\x3b\x05\x38\x6b\x12\ +\x9b\xc9\xb5\x45\xd3\x52\xa4\x72\x47\xd5\x4b\xc7\x70\x2d\x86\x1b\ +\xaf\x2d\xc1\x4c\xdd\x4c\x40\x5d\x3f\x86\x42\x7d\x1d\xc3\x97\x1c\ +\xbd\x1e\x31\x7e\xcd\xb4\x6f\xa8\x7e\x2a\x53\x3b\x45\xef\xfa\x66\ +\xe8\xc8\x60\xcf\x77\xc7\x93\x96\xb7\xff\x41\x0c\x5f\x50\xf3\x5a\ +\x0d\x95\xc9\xdd\x96\x7a\xb3\xa9\xb6\xaa\xe3\x1f\x11\x91\x85\xa3\ +\xca\x50\x73\xe6\x40\x99\xbc\x39\x8e\x46\x5b\x6c\x7e\xf3\x5f\xad\ +\x84\xf5\xf6\xb4\xef\xee\x4b\x1f\xea\xf5\x81\x93\xd2\xa6\x33\x09\ +\xc2\x74\xfe\x38\x9a\xbd\x0f\xd4\x92\x76\x67\xfc\x40\x24\x19\xfa\ +\xb3\x92\x9a\x05\x6b\x8d\x2d\xb1\x20\x20\x2f\xf9\x60\x4c\xa4\x62\ +\x5c\xc8\x85\xc1\x4f\x63\xd3\x14\x66\x6a\x69\xb5\xe6\x81\xcd\x25\ +\xa4\x16\xe8\x17\xfc\xbb\x6f\xb8\xd1\x17\x76\x88\x0f\x12\xcd\xda\ +\x38\xd5\x7e\x7b\x3c\xb5\xe8\xe6\xa0\xf0\xa1\x89\xd0\x78\x91\x09\ +\x32\xd6\x96\xaf\xe9\x3d\xa6\x02\x1a\xd1\x73\x1f\xa0\x73\xae\x57\ +\x0f\xf6\x19\x54\x74\x71\xdd\x0d\x04\x29\x48\x74\x35\x62\xc8\x09\ +\x36\x2e\x77\xfb\x68\x17\xf5\x40\xcb\x3b\x6e\xb4\x35\x64\x94\x48\ +\xcc\x43\x1e\x3d\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\ +\x01\x43\x83\x81\x19\x87\x4f\x6e\x63\xbd\x77\xb4\x8d\x02\x73\x1b\ +\x56\xbf\xfe\xed\x80\xde\x68\x13\x4d\x98\x68\x05\xd4\x4b\x02\x6a\ +\xde\xf0\x81\xd6\x08\x64\x8d\x56\x12\x32\x29\xc9\x58\x0d\x8d\xf9\ +\x56\x39\xc5\x9d\x9e\x12\xbc\x29\x23\xd1\xd1\x34\x89\x34\xde\x6a\ +\x43\x0a\x8b\x09\x55\x6f\x35\x45\x58\x00\xd1\x45\x18\xe5\xe1\x05\ +\x42\x17\x2b\x48\x76\x4a\xbc\x2b\x4d\x9e\x2c\x4b\xa9\x50\x0f\xd8\ +\xa8\x58\xde\x12\x33\xe6\xc1\x0d\x6f\x29\xb0\xe0\x62\x0b\x3a\xaa\ +\xd7\x18\x6a\x27\xa3\xcd\x1c\x55\x0e\xcb\xe8\xcf\xc5\x1f\xf6\x83\ +\x0c\xa2\x50\x07\x3e\x6e\xd5\x06\x3c\xda\xa3\x5c\x65\x94\x87\x6f\ +\x8d\x49\xa1\x74\x88\xc5\x3a\xf2\xcc\xc3\x78\xca\x49\x9a\xbc\x32\ +\x41\xc6\xcc\x40\xca\x66\x8b\x56\xb2\xb9\x2d\x7f\x9a\x08\xf9\x70\ +\x18\x20\x23\x41\x07\x56\x74\x74\x40\x2f\x15\x6e\x82\x51\x41\x62\ +\x34\xed\x5d\xe6\x12\x09\xe0\x0b\x11\x16\xcc\xa0\x56\x7d\x08\xcf\ +\xb7\x7b\xc3\x07\x55\xdf\x0e\x61\x78\x6f\x5a\x09\xad\x3a\x2b\x97\ +\x69\xad\x60\xa0\xae\xe6\x1b\x45\x5f\xd6\x87\x0a\x68\x22\x85\xda\ +\x83\x64\xa1\x35\xa4\xe4\x49\x55\x5d\xe4\x7d\x83\x8c\xd2\x5a\x43\ +\xa6\x9b\xd3\xac\x0d\xd1\xc7\x75\x54\xdb\x82\x02\x17\x1c\xaa\xdc\ +\xf8\x6b\x2c\x72\x14\x2e\x6e\xd4\x6f\xc2\x05\x1a\x2c\x0c\xea\xcf\ +\x46\x82\x46\xed\x3a\x89\xa1\x0f\x83\x8c\xc7\xe6\x0b\x29\x6c\x0f\ +\x7e\x3a\xee\xba\xa0\x02\x1b\xa3\xc9\xc2\x86\x22\x81\xea\x35\x9e\ +\x00\x42\xbe\xab\x01\x2b\x3d\x7e\x94\xa7\x0f\xfb\x21\xc7\x80\xe7\ +\x02\x3d\xd5\xa8\xcd\x8e\x79\x50\xc4\x82\x2f\x11\x30\x16\x14\xa8\ +\xa1\x74\xbd\xcb\x98\x3b\xf2\x89\x32\xad\x69\xe9\x32\x32\xd6\x06\ +\xe3\x98\x1e\xb9\xc1\x57\x2d\x82\x1e\x34\x0b\xad\xa9\x43\x8d\x7d\ +\x45\x06\x6f\x83\x11\x10\xf0\x8d\xc2\xf4\x9d\xd1\x1e\x80\xd8\x38\ +\xd6\x23\xa2\x6c\x93\xb6\xed\x9c\x19\xc3\x3e\xbb\x91\xb8\x5f\xb4\ +\x87\x10\x31\x71\x0c\x45\x11\xcd\xa4\xc0\x71\xee\xf4\x6d\xc0\xf3\ +\xa5\xdf\x36\xff\x68\x85\x94\x22\x6a\xfd\x52\xd4\x47\x3f\x07\x72\ +\x5e\xe0\x4d\x27\x0a\x4c\xe4\xb4\x53\x76\x9d\x24\xef\x2d\x53\xc0\ +\x97\xbe\x51\xb0\x54\x1a\x25\x45\x2e\xd7\x17\x85\x81\xd6\x5a\x25\ +\x5e\xf2\x5a\x4d\xd6\xf4\x28\x21\xe0\xdb\x64\x51\x87\x0e\xc3\x87\ +\x3c\x54\xb8\xbe\xab\x46\xe5\x94\x6a\x4c\xca\xaa\x25\x37\x15\xa3\ +\x36\x9d\x0a\x28\xaf\x73\x0b\xe1\xf8\x47\x46\x66\x43\xa9\xe9\x62\ +\x6e\xca\xdb\x7c\x47\xac\x34\x16\xf2\xc1\xc3\x06\xc4\x86\x00\xb5\ +\x7d\xa3\x1e\xb6\x2e\xa7\x8f\xeb\x6d\x03\xef\x34\x37\xeb\x8f\xf9\ +\xa9\x2d\x05\xf6\x46\x5b\x7c\x8b\x09\x4b\x9d\x0f\x49\xad\x95\xd1\ +\xb0\xc0\xdb\x8e\x15\xef\x27\x2a\xfe\x1f\x34\xb6\x45\x13\x28\xe5\ +\x6d\x1b\x7b\xee\x3c\x94\xf0\x31\x19\x4a\xb3\x03\x4f\x01\xc0\x73\ +\x01\x7a\x17\x08\x48\xaa\xc4\xaf\x35\x7d\x40\xe6\xf6\xdd\x7c\x49\ +\x63\x83\xd4\x98\x4a\xcb\x06\x92\xc1\xd0\x3e\x84\x30\xe9\xc7\xad\ +\xd7\xad\x5a\xb4\xe8\xae\x6d\xa4\x59\x75\x3e\x0c\x8b\xe0\xaa\x40\ +\xd1\xc5\x6c\xda\x52\xb8\x0e\x94\xc6\xc6\xbc\xc4\x38\xaa\x69\xc1\ +\x42\xe7\x2b\x8c\x83\x26\x38\x37\x30\x3b\x94\xae\x33\x1a\x62\x6a\ +\xcd\x06\x22\x9d\x03\x21\x16\x94\x9c\xb1\xa8\xbd\xf1\xd8\xf8\xe2\ +\xfc\x03\x94\xcf\x31\x50\xe3\x0f\xbb\x6c\x2e\x82\x17\x6a\xfa\x20\ +\xc6\x29\x8f\x07\x33\x66\xa5\xed\xba\x2f\x09\xa9\xf5\xa7\xb3\x5d\ +\x47\xff\x5a\x63\xf3\xf8\xac\x14\xf0\x87\x84\x6f\x6a\xf4\x85\xe4\ +\x71\x70\xc2\xd0\xe6\x67\x34\xf7\xf6\xb4\xa8\x1e\x95\xb7\x5a\xdf\ +\xf2\xb2\xbe\xea\xf8\x32\x3b\x79\xb3\xe7\xea\x42\x39\x2d\x55\xc5\ +\x76\xed\x01\x62\x94\xe3\xc5\xb6\x5d\xa6\xb5\xb7\xd7\xd5\xa8\xc4\ +\x8e\x6d\xba\x8d\x90\x52\x2b\xd4\x56\xed\x1d\xd1\xd6\xe4\x56\x77\ +\x56\xd1\xde\x10\x45\xe8\x9a\xc3\xe5\x43\xb2\x88\xa8\x9f\x83\x36\ +\x46\xeb\x4f\xfd\x50\x43\x89\xc4\x7a\xe4\x91\x93\x48\xec\x0e\xf9\ +\x40\x2d\x91\x38\x62\xe4\xc9\x1f\x30\x34\x18\x98\x71\x44\x79\xcb\ +\xef\x04\x6d\x03\x00\x64\xde\x58\x5b\xcf\x85\xda\xe3\xa6\x81\x64\ +\x80\x7e\xea\x77\xb1\x70\xdf\xe3\x5c\xd7\x0a\x84\x9d\x8d\xc2\x0c\ +\x45\xee\x36\x35\x16\xde\x64\x94\x26\xb0\x08\x61\x34\x3d\xdc\x2f\ +\xd6\xe6\x83\x8a\xb4\xd7\x94\xa1\x06\xa9\x7a\x2b\x28\x57\xdb\xae\ +\x56\x33\xd0\xda\xa6\x2f\x74\x70\x2b\x4b\x91\xe9\x02\x8b\xca\x4c\ +\xc1\x37\x16\x33\x20\x02\x05\xb9\xea\x69\x42\x03\x93\x42\xd0\xa3\ +\xa5\x1d\x2c\xa0\x50\x86\x5a\xe4\xe0\xb1\xc0\xc0\xf5\x8e\x6e\x21\ +\x06\x37\x98\x35\x1f\x88\x42\x6e\xa4\xf9\x50\x0c\x8b\x17\x90\x83\ +\xd6\x8d\x7a\xc6\x51\xba\xd3\x61\x71\x08\x7e\xb2\xb7\x40\xdb\x42\ +\x0e\x6d\x49\x76\x71\xf8\x57\xd9\x46\xbb\x0c\xb5\x58\xc0\x85\xb1\ +\xe1\x02\x19\xc6\xc1\x17\x83\x68\xeb\x36\x94\x69\x5b\x94\x82\x45\ +\xce\xf2\x82\x04\xf7\xc4\x78\x88\x46\x2b\xa9\x19\xbb\x3e\xd4\x43\ +\x9e\x0c\xc2\x4d\x63\x21\x44\xb7\x68\xc3\x92\x15\x6e\x70\x45\xcf\ +\x00\x02\x09\xcc\x98\xb2\xa1\x15\x2c\x24\xa9\x9d\xc6\x50\xa8\xbf\ +\x83\x7b\x19\x4d\x99\x4d\x77\x23\x4d\x21\xf3\xe1\x39\xe1\xe8\xbb\ +\xd7\x73\x81\x71\xc4\x97\xea\x1a\xa3\x81\xe9\x69\x4f\x42\x0a\x37\ +\x65\xad\x8c\x8b\xba\x78\x78\x83\x92\x92\x15\x04\x90\x34\x7c\xa8\ +\xb5\x1f\xaa\x8f\x74\xad\xa5\x50\x96\x06\x55\x67\x84\xc9\x1a\x5a\ +\xb6\xf6\x41\x19\x2a\x5d\x88\x91\x37\x57\x8b\xb0\x14\xa2\xd0\x87\ +\x51\x5a\xab\x3f\x6c\xa0\x81\x8d\x10\x50\x33\x80\xc6\x71\x7f\x06\ +\xc0\x20\x09\x0f\x3d\x97\x57\xa0\xab\xf6\xa8\xcd\x0e\xbe\xa2\xf0\ +\xa1\x54\xb9\x38\x93\x17\x9a\x31\x35\x4e\x05\x1b\x83\x1f\x19\xdd\ +\x28\x92\xc2\xed\x55\x60\x2a\xc8\x10\x13\x79\xcb\x0b\x6d\xf0\xaf\ +\xaa\x01\xb5\xd3\x3c\x85\x36\x7f\xd5\x40\x07\x4a\xfb\x7f\x72\xca\ +\x3d\xaf\xfe\x8c\xad\x1b\x4d\x50\x07\x5b\x8a\xc4\x4c\x4a\x6e\x14\ +\x69\xc1\x97\xcb\xd4\x94\x85\x32\xb2\xb9\xac\xd3\x81\x0e\x36\xac\ +\xa4\xae\xb4\x17\xfb\x84\xc7\xf7\x71\x73\x40\x1e\xc6\x72\x1b\xc4\ +\x10\x8e\xd8\xdc\x96\x61\x13\x07\x88\x76\x3f\xb7\x88\xfb\x3a\xda\ +\xde\x38\x46\xfc\xc0\x58\x17\x70\x26\x6a\xbb\xcd\xc1\x66\xd7\xaf\ +\x49\xb4\x79\x49\x08\x8a\x4c\xee\xd7\x40\xd5\xb9\xd0\x2b\x21\xa0\ +\x87\x0f\x49\xe5\xf1\xc2\xb5\x91\x66\xc6\x6b\xad\x5e\xfa\xb6\x17\ +\x84\x3d\x1b\x0a\x7a\x34\xa7\x0c\x3d\x99\x90\x76\x0d\xa7\xbc\xea\ +\x50\xe9\xb5\x5c\x35\x7a\x71\xc6\x7c\x05\x17\x6a\x95\xeb\xa6\x26\ +\xa8\x11\x07\x7a\x11\x58\x0c\xca\x8d\x77\x4e\x69\xd8\x9b\x4d\xb4\ +\x35\x9a\x73\x17\x6b\x47\x25\xd0\xb1\xa4\x3d\xad\x59\x41\x8e\x76\ +\x25\x3f\xda\x52\x04\xa9\xda\x63\x1e\x02\x91\xf7\x45\x6a\xcd\x92\ +\x4a\xca\x68\x01\x1d\xbd\x04\x2b\x99\x37\xe2\x25\x0c\xac\xf5\xdb\ +\x6a\xca\x53\x4f\x1e\x35\x4b\xd2\x88\x27\xc3\xc8\x78\x3a\x3e\x26\ +\x17\x42\x7d\x85\xc3\x7e\xc4\xff\xb0\xa3\x06\xc6\x27\x32\x95\xd3\ +\xf9\x97\x43\x75\xb0\x83\x8f\xc5\x61\x4c\x35\x02\x5d\xc7\x85\x72\ +\x4a\x69\xe7\x36\x80\x1f\xbd\xd5\xc4\x41\x05\x0e\x32\x72\x02\x5c\ +\x85\x8c\xe1\xb5\x43\x68\x38\x81\xa6\x18\xed\xa9\xf8\x26\x3a\x61\ +\xbd\x2e\x19\x94\x55\x19\x74\x5d\x1e\x20\xd0\x26\xaa\xce\x87\xd7\ +\x52\xaa\xdc\x10\x36\xd0\x0b\x6f\xb1\xaa\x75\xe4\x25\x86\xcb\xe9\ +\x81\xb6\x20\x73\xb9\xb5\x41\x0e\x34\xc3\x43\xdf\xc9\x68\x4b\x3b\ +\x9d\x0f\x69\x0c\xd5\xbb\x5c\xaf\xe1\xb8\xa6\x4b\x00\x2a\x39\x2b\ +\x51\x3d\x7c\xe4\xa5\xb5\xdb\x49\x85\x3f\x4a\x62\x0c\x54\xa8\x4d\ +\x2f\xc1\x30\xbd\x70\x9f\x6a\x8f\x42\x62\xd7\x36\x25\x59\x25\xbb\ +\xb9\x84\xce\x5d\x54\xcb\x37\xc5\xe0\xc0\x58\x7b\x2a\x32\x99\x94\ +\xee\x8b\x76\x58\x53\x59\x7d\xfd\x8f\xa7\xcc\x53\xc2\xe0\x9b\x69\ +\xba\x1f\x54\xe6\x31\xba\x58\x94\x93\x14\x4a\x3a\xa3\x0f\xb6\x38\ +\x48\x5d\x5c\xe1\x17\x32\xbf\x52\x1f\x6b\x5b\xe8\x1a\x8b\xaf\xae\ +\xef\x55\x8f\x38\xac\xe5\x45\xa5\x78\x4b\x7d\xcd\xbe\x2b\x6f\x5a\ +\xa5\x38\x57\x83\x8b\xf2\x3c\x64\x9c\xe6\xd6\x95\x94\x5b\x4c\x2d\ +\x69\x4e\x30\x1e\x84\x9d\x40\x69\x37\x04\x5a\x7e\x0a\x1e\x27\x22\ +\xc6\x77\xb4\xb2\x1a\xdf\x09\x51\xba\x9e\xa2\x6a\x90\x48\x6c\x8c\ +\x3c\x7a\x12\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\x3c\xf9\x03\xee\ +\x7d\x30\x90\x00\xa6\x38\xbd\x19\xb3\xc0\xe5\xc0\x54\x92\xd1\x77\ +\x1a\x9d\xa5\xde\x8a\xd8\xad\x32\x29\xde\x24\x1a\x3a\x1d\xe4\x14\ +\x75\xbe\x76\xe9\xa0\x5e\x05\x2a\x92\x42\x55\x64\x94\xaf\xac\xd1\ +\x94\xe3\x0d\x5b\xa5\x95\xb3\x9a\x8b\x08\x2e\xc6\x82\x83\xbc\x51\ +\x93\xa7\x57\xe1\x03\x1d\x18\x51\x44\x83\xaa\xeb\xc5\x74\x9d\xdb\ +\xd5\x5a\x17\x32\x60\xc3\x37\x65\x4a\xa3\x50\x53\x2a\x02\x0d\x16\ +\x4c\xa0\xa9\x47\x8d\xfc\xba\xb6\xab\x4e\xa4\xfa\x40\x0b\x6a\xeb\ +\x83\x40\x17\x7f\x40\xa0\xd0\x5c\xe8\x63\xfd\xf2\x98\xa4\x35\x20\ +\x6b\x95\x83\x15\x1a\x0b\x60\x70\x45\xe1\x35\xd5\x52\x9b\xad\xda\ +\xa9\x3f\x40\x7f\xa5\x2a\xad\x76\xd8\xb7\xe2\x89\x5a\x18\x44\xe8\ +\xf9\xc0\x46\x5e\x2a\x50\x99\xdb\x57\x1d\x6a\xd8\xd6\x3e\x30\x29\ +\x95\x09\x8d\xd1\x56\x7b\x46\x27\xaf\xc0\x0d\xae\x52\x50\xeb\x5e\ +\x81\x8f\x1d\x9f\x52\x40\x8f\x30\x00\xa5\x88\x8b\x45\x28\x08\x4c\ +\xae\x8c\xb2\x5c\xef\x40\x6d\x4a\xf8\x82\x56\x4e\x4d\xa9\xf7\xa0\ +\x02\xb6\xd3\x79\xd0\x46\x33\x20\xa1\xed\x53\xe8\xd2\x90\x9f\x49\ +\x88\x4a\x52\x61\xac\x09\xed\x46\x9e\xfd\x65\x81\x8a\x4c\x95\x31\ +\x16\x18\x56\x1d\xaf\x6a\xa9\x4d\xa7\x32\xc9\x57\x68\x2e\x61\x50\ +\x0e\x85\xd2\x4c\x97\x36\xa8\xf5\x21\x95\x3f\x40\xe3\x4b\x15\xd4\ +\xf3\xff\xa6\xa1\x36\x9d\x31\xba\x36\xa3\xd1\x35\x06\x38\x38\xe2\ +\x0d\x5b\xd2\x58\xf8\x90\xf1\x5a\xe8\x4f\x0c\x41\xa4\x21\x68\x64\ +\xb4\x2d\x8e\x50\x27\x6d\x59\xdc\xce\x56\x79\x53\x68\xa5\x03\x2b\ +\x1b\x6a\x6b\x4b\x04\xac\xaa\x93\xd6\x4a\xa2\x44\xab\x10\x48\xc9\ +\x50\x4a\xb3\xc2\x4b\x68\xec\x59\xb5\x51\x99\x0d\x9e\xd2\xf2\x36\ +\x05\x6d\x3d\x1f\x15\x41\x29\x25\x62\x93\xa4\x91\xd9\x19\xad\x86\ +\x1d\x4d\xde\x6c\x04\x3e\x76\x56\xb0\x76\x7f\x9a\x50\x6d\xc7\xa0\ +\x08\x74\x18\x4c\x47\x0d\x0d\x48\xeb\x1b\x05\x4b\xd6\x4a\xdc\x15\ +\xd0\x98\x9e\x2d\x8a\x5b\x36\xee\xe1\x3c\x8c\x87\x8e\x61\x87\x64\ +\x89\x87\x8b\x6d\x0f\x9f\xe8\xe7\xf0\xe3\x67\x50\xb9\x05\x3c\x5e\ +\x2f\x2f\x67\x5c\x61\x6d\xb5\x4d\x46\xbe\xfa\xab\x30\x5c\x72\xc8\ +\xe8\x37\xd6\xc8\xd4\xaa\xbb\x52\x09\x45\xd2\x24\xb0\x07\x45\xa1\ +\xdb\xa8\x56\xaf\xb3\x4a\x9b\x44\x2a\xc8\x83\x9e\x58\xca\xa6\x72\ +\xa0\xea\xe4\xba\x1c\x65\x6a\x13\x6a\xd9\x54\x8d\x1a\x32\x21\x39\ +\x04\x3a\x4f\x21\x82\x8d\xd3\x2e\x51\x5e\x5e\x6e\x4b\xce\xe6\x08\ +\xc6\x2b\x01\x1b\xcc\x11\xe4\x73\xb0\xc6\x90\x9c\xdd\x4e\xae\x0b\ +\x9d\x9f\xfa\xd8\x8c\x85\x7e\x9e\xb3\xea\xd5\x56\x45\x28\x30\x55\ +\x52\x5f\xea\x69\xa3\xaf\xae\x1f\xa0\xf1\x96\x17\xed\x44\xce\x17\ +\x20\xb5\x4c\x62\xf4\xdb\x73\xc2\xa1\xff\x98\xef\x70\xc2\xa1\x57\ +\x16\xca\x19\x47\x6b\x86\x20\xab\x71\xf4\x0d\x81\xda\x93\xb2\x78\ +\x0a\xd5\xa2\xe8\xe2\x98\x0d\xe2\xe1\x45\xb9\xd6\x6e\x43\x5e\x5e\ +\x3e\xf7\xe9\x50\x0f\x40\x43\x67\xdf\x55\x62\xa3\x6f\xa5\x4d\xc7\ +\xd2\xcd\x2b\x81\xda\x63\xaa\xcc\xfb\x5d\x41\xb6\xb3\xf3\xeb\x54\ +\x27\x42\xd1\xfc\x71\x93\x03\xa6\x7a\x51\x56\x06\xa5\x5e\x00\x89\ +\x40\x12\xbc\x1e\xd3\x49\x37\x9d\x6b\x88\x42\xda\xd2\x87\xd0\x90\ +\xe3\x0d\xa1\xd4\x9c\x57\x18\x4d\x85\x94\xac\xc0\x05\x1d\x78\x7b\ +\x48\x04\x11\xf7\x96\xd9\x29\x68\x2d\xb0\x79\x0c\x79\x1a\x50\xca\ +\x8a\xff\xd3\x8b\x1c\xfd\x30\x87\xe2\x1e\x27\x0d\x05\x3c\x34\xdf\ +\xae\x7d\xd8\xc7\x98\x5a\x63\x2e\xa2\x0f\xb8\x10\xc3\x44\xdc\x30\ +\x56\x3a\x5e\xea\x6f\x3e\x5e\x33\xbe\x52\x3d\xb9\xd5\x7a\x14\xc2\ +\x5f\x77\x0e\x7e\x72\x12\x0a\x7d\x3e\x05\x1d\x08\xd9\xf0\x66\x1c\ +\xdd\x58\x8a\x11\x47\x18\x3f\x53\x49\x77\xcd\x0d\x9b\xce\x9d\x24\ +\xb2\xed\x03\xf6\xbd\xd7\x36\x28\xcd\x5b\x7f\x8e\x53\xfd\x74\x8c\ +\xc0\x90\xa3\x8c\xf6\xf4\xc1\x1c\x54\x65\x6e\x53\x6b\x35\xac\x35\ +\xba\xa3\x63\x63\xc0\x7e\x44\x1d\x6c\x69\xc6\xf3\x87\x02\x96\x1d\ +\x37\x01\x37\x04\xdc\x38\xf2\x4e\xdf\x16\x8c\x1d\xb3\x69\x1b\x4d\ +\x24\xb6\x43\x1e\x41\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\ +\xfc\x01\x18\x8c\x5d\x4e\x84\xf7\x86\xdd\x25\xd8\x4d\xa8\xba\x8e\ +\x73\x18\xa4\x88\xad\xa8\xb6\x13\xea\x4d\x9d\xdc\x48\xf9\xe5\x03\ +\x37\xf5\x4a\xe8\xe2\x02\x19\x29\x50\x8b\xb3\x2e\x7e\xb8\xc8\xe4\ +\x60\x69\xd8\xd9\x6b\xa5\x4a\x72\xbe\xee\x01\x1a\x8b\x1a\x75\xcd\ +\xc1\x16\x16\xaa\x3f\x8d\xaa\xcc\xe5\x7c\x93\xf6\xda\x64\x78\xa9\ +\x18\x8a\xaa\xeb\xfa\x6d\xf9\xba\x5d\x67\xcc\xc5\x14\x2a\xf1\x86\ +\xdc\xfc\x9d\x36\x85\xf2\xe0\xaa\x1c\x0c\xe2\xda\x68\x52\x64\x0b\ +\x3d\xce\x6b\x21\x95\xd4\xb2\xe9\x83\x30\x90\x90\x69\x4e\xba\x38\ +\xe4\xf6\x1d\xcd\x9f\x01\x22\x6d\xfd\x30\x9a\x9b\x06\x51\x3d\x9a\ +\x83\xab\xd0\xcc\xc4\xf4\xdc\xa5\x51\x6f\x32\xba\xe1\xa5\x04\x69\ +\x0a\x61\xc3\x1a\x3a\x32\xe4\xab\xde\x79\xe8\x6c\xcc\xf4\xa7\x8a\ +\x7c\x6c\x61\x22\x04\xef\x6c\x91\x8b\xd4\xbc\xd1\x85\x2f\x68\xe8\ +\xd5\x4e\xa1\xf9\x42\xa1\xb5\x9a\xa9\x0d\x0a\xcb\x17\x31\xcc\xb1\ +\xba\x0b\x8f\x66\xc0\xeb\xb2\x01\x0c\xa9\x61\x0e\x88\x07\xd6\xe3\ +\x76\x82\x2a\x21\xe8\x0f\x99\xbc\xe1\xc5\x58\xca\x0a\x74\x61\x2c\ +\xfa\x6a\x5b\x06\xf0\x1e\x4f\x6a\xf8\x29\x8f\x3e\x5b\x04\xd4\xb2\ +\x29\x6b\xb4\x2a\xaa\x0e\x8b\x1c\x6c\x9b\x46\x90\xf5\x73\x20\x41\ +\x1d\x48\x8b\x85\x02\x0b\x43\xaa\x24\x8b\x18\x1a\x93\x6f\x81\x2e\ +\x3c\x50\x06\x5b\x19\xcc\x93\x6b\xfb\xa6\x18\x0c\xa4\x80\x4e\x17\ +\xa3\x3a\x9e\xff\x1f\x0d\xbc\xc5\xc3\x0b\x3a\xca\xc4\x96\x7f\x35\ +\x2c\x3c\x17\x4c\xd0\x04\x6d\x68\x2e\xc0\x02\x4b\x57\xfb\xff\x03\ +\x61\x08\x2d\x6c\x93\x42\x07\x8c\x6c\x8d\xe1\x36\xb5\x46\x2e\x68\ +\x13\x95\x5b\x40\xa7\x74\xdf\x4f\x68\x30\x5a\x98\x9d\xeb\x54\xae\ +\xd6\xca\x73\x6f\x9a\x3f\xff\xcf\x7e\xd5\x89\x8c\xa4\xd9\x83\x61\ +\x85\xce\x02\xd0\xeb\x06\xb9\x15\x46\x9a\x8f\xf7\x0b\x25\xde\xaa\ +\xe4\x1b\x05\x78\x7c\xa3\xc1\x63\xc4\x58\x7d\xdb\xfb\xc4\x8e\x12\ +\x88\x61\xfc\xe4\x59\x27\x4b\x3c\x6c\x6c\xbb\x4f\xeb\x87\x6b\xc4\ +\xa0\x70\x33\x78\x1e\x31\x14\x64\x63\xa1\xdb\xbc\xd7\xa6\xa0\x06\ +\x2c\xcd\x56\xaf\x85\xa4\xc8\x2b\xec\xfa\xe9\xf6\x76\x5d\xa3\x1c\ +\x32\xf2\xa4\x14\xc2\xbb\x8d\x59\xf0\x5a\xc8\x17\xcd\xa3\xbd\xce\ +\x17\x9c\xaf\x7a\xcc\x29\xcc\x42\x75\x54\x28\x65\xf6\xfa\x06\xaf\ +\x36\x5a\x42\x48\xa9\x72\x3d\x1d\x0a\xd5\x54\x9b\xaa\x57\x5e\x1f\ +\x28\x81\x3f\xc1\x0c\x87\x76\xad\xad\xd2\xd0\xe2\x5a\xeb\xf9\xeb\ +\x8e\xd1\x6f\xd6\xeb\x7c\xa8\xfa\x41\x43\xb9\x70\x55\xae\xe0\x83\ +\x37\x70\x14\x9b\xbd\xcf\xa7\xf0\xa2\x1f\x0d\x85\xd3\xb6\x20\x01\ +\xcd\x79\x86\x71\x31\xbe\x79\x80\xb5\x42\x1f\x36\xb0\x36\x99\xff\ +\x3c\x36\xfe\x6f\x2c\x2b\x35\xae\x25\xed\xc8\x04\xb9\x08\xd1\x67\ +\xd6\x75\xd3\xf1\x72\xbe\x83\xf0\xbc\x76\xab\x6f\x3c\x6c\x71\x95\ +\x51\xda\x25\x66\x04\xd0\x01\xd7\x38\xb5\x73\x50\x5d\xe3\x87\x68\ +\xa8\xe0\x83\x8a\xa5\xa1\x32\x4e\x04\x5f\x21\x79\xbd\xd2\x8b\x96\ +\x56\xb8\xae\x57\x84\xeb\x19\x68\x90\x11\xa2\xac\xfe\x16\x96\x56\ +\x7c\x5b\xad\x06\x6a\x67\x36\x5d\x06\xaa\x23\x70\xcd\xb5\xb9\x8c\ +\x5e\x9f\x21\xb4\x1a\x3c\xe7\x2e\xb8\x86\xeb\x9c\x0b\x32\xc4\xe1\ +\x17\xd9\xe9\x46\xa1\x6c\x50\xa9\xae\x9b\x1b\xc1\x8f\x33\x2c\xa9\ +\x75\x1e\xc0\x36\x94\x50\x5a\x36\x35\x36\x1d\x79\xff\xe9\x43\xd3\ +\x50\x66\x7a\x8b\x03\x99\x4a\x55\xee\x0f\xad\xba\xbe\xf8\x9c\x4a\ +\x32\x22\x81\x87\x53\x30\xe9\xfc\x68\x2f\x1d\xb9\xe6\x37\xe7\xa0\ +\xc7\x0b\xf6\xf0\x55\x0e\xae\xda\x55\x21\x4c\x46\x4e\x83\x69\x8d\ +\xb6\x31\x4e\x10\x51\x26\x3c\xcd\x21\x03\x81\xb7\x8d\x83\xc5\xa6\ +\x10\x25\x6d\x60\xaf\xb6\x54\x51\xae\xf9\xb8\xc0\x69\xb2\xcc\x17\ +\xfb\x03\x4c\xa7\xd7\x6f\xa6\xc1\x8e\x22\x81\xc8\x98\xbc\xf5\x9d\ +\x30\x0a\x66\x16\xdb\x0f\xeb\xce\xc6\x61\x63\x67\xfa\x0a\x18\xba\ +\x2c\xd2\x43\x58\xa7\x8f\xf0\x04\xc6\xda\xb3\x7c\x6f\x80\xf6\x52\ +\x8c\xe9\x13\x89\x09\xe4\x51\x93\x48\xec\x0e\xf9\x40\x2d\x91\x38\ +\x62\xe4\xc9\x1f\xc0\x89\xab\xd5\x73\xe0\xb3\x91\x7b\x19\xc4\x4d\ +\x93\x9d\x46\x7f\x62\x85\x5b\x20\x89\x8b\x77\x68\xa2\xb3\xd1\xb6\ +\xf5\x06\x4c\x25\x6a\xce\x82\x0c\xef\xf5\x2b\x6f\x3a\x94\xb8\xdc\ +\x98\x8d\xd6\xa6\xe3\xbb\x0a\x64\xab\x1e\x2a\xc0\x1b\x0f\xea\x10\ +\x57\xee\x94\x34\x0e\x16\x44\x5c\x2d\x05\x1f\xda\xe8\x22\x05\x1f\ +\xea\xa9\x56\x6d\xd5\xc8\x68\xc0\x63\xf0\x0d\x45\x4f\xa6\x50\x5a\ +\xe3\x98\x1c\x5b\x5d\xb4\x91\xb7\xc5\xf3\x87\x59\xd8\x68\x4f\xb1\ +\xc5\x53\x52\x75\xbe\x08\x82\xf1\x73\x5f\xc8\x64\xa0\xd5\xcf\xe3\ +\x08\x5f\x63\x49\x7b\xde\x1f\xe8\x68\xd2\xf1\x7c\x09\xa9\x7d\x56\ +\x5b\xa8\xa8\xe3\x06\x07\xb6\x44\x3b\x58\x51\x07\x11\x60\xb4\x2e\ +\xbc\x81\xaf\x05\xfd\x2b\xa0\xaf\x3c\x68\xd5\x9b\xa5\xb6\x4b\xb9\ +\x2e\xe6\xb8\x3d\xf5\x7c\x90\x26\xd9\x89\x8d\xf6\x54\x6d\x94\xa2\ +\x8a\xf7\x84\xb8\x5d\xc6\x41\x85\xd8\x64\xa8\x54\xc0\x0f\x51\x70\ +\xe4\x29\xa4\xd6\x20\x1d\xe8\xa8\xb0\xf5\x85\x2a\x43\xc5\xb6\x51\ +\x43\x21\x35\xf3\x60\x49\xb6\x46\x76\x4a\xef\xa9\xb9\xb7\xc8\x2b\ +\x84\xc6\x9b\x22\xd1\x08\xe1\xcd\xaa\x0c\x3e\x21\x4b\x21\xc8\x57\ +\x7b\x6f\x4b\x69\xfa\xcb\x86\x5b\x7f\x3e\x0c\xe4\xe2\x80\x74\xdf\ +\xe5\xb2\xc1\xb0\x5d\x8c\x50\x12\xf2\x7e\xe6\x1a\x4b\x50\x17\x19\ +\xb4\xd6\xaa\xb3\x43\x0c\x97\x51\x2a\xb5\xe6\x2d\x2f\xac\x1a\xd9\ +\x00\xaa\x56\x4a\x18\x93\x44\xad\x5b\x5d\xc8\xa0\x5e\x2a\x80\x84\ +\x2d\x9e\xf0\x6d\x34\x62\x72\x51\x85\xd6\x30\x04\x6b\x83\x21\x84\ +\xf5\x9b\x72\x0f\x66\x31\x3a\xdb\x20\x57\x85\x91\x88\x28\x04\x18\ +\xb1\x73\x5a\x6b\x5a\x59\xc5\x52\x6b\xbe\x69\x0c\x81\xa9\x5c\xae\ +\xb5\x32\xd0\x91\x61\x7d\x2d\x79\xfa\x0b\x6f\x14\x54\x07\x3b\x4d\ +\x56\xed\xd5\x8e\x25\x6b\x22\xf0\xaa\x27\x53\x65\x5d\xa5\x34\x01\ +\x41\xcf\x0f\xb5\xc9\xef\x05\x68\xb7\x7f\xec\xed\x0c\x31\xe4\x9e\ +\x9a\x48\x3c\x12\xe0\xf8\x18\xc4\xa8\x62\xbf\xe0\xb1\x6a\xe7\xc6\ +\x64\x0a\x76\x60\x9b\x8d\x5d\x09\x49\x75\x50\xda\x4b\xbd\xce\xa0\ +\x90\xcf\x21\xcc\x0b\xea\x85\x07\xb5\x6c\x7c\x6b\x4d\xca\x79\xa2\ +\xf3\x77\x3f\xbd\xa2\x82\xd0\x58\x6a\x6b\x1e\xe0\x61\x67\xd7\x58\ +\xea\xab\x9f\xd3\xa4\xa8\x57\xda\x6a\xd3\x99\xa0\xd3\x54\x1f\x32\ +\x55\x0e\x9a\x15\x78\x93\x47\x1a\x6f\xd3\xb2\xa6\x3c\xf8\x7b\x5e\ +\x6a\xaf\xf3\x1d\xe9\x91\x8a\x8c\xa7\x2d\xfb\xa9\xd2\x5a\x53\x0f\ +\x9e\x16\x4a\x83\x82\x81\x6c\x8c\x03\x1a\x52\xcc\xa5\x68\x83\x6b\ +\xa5\xd9\x79\xcd\xb7\xdb\x02\x56\xab\x4a\x89\x0a\xb1\x44\x3b\x68\ +\x5a\x0e\x01\x44\x83\x8c\x3f\xcf\x0d\xb5\x14\x98\x32\x91\x86\x5c\ +\x36\xa5\x85\x83\x5f\xdd\x5f\x14\xd4\x1a\xb6\xba\x69\x09\x9f\x8e\ +\x03\xaf\x2d\xdd\x00\x8d\xa5\x40\x2d\x5b\x77\x5d\x07\x6b\x42\xbf\ +\xf6\x92\x17\xda\x2a\x10\x5d\xd4\x2a\x14\xf0\x82\x2d\x6f\x97\xc9\ +\x26\x6d\xf0\x1a\x2a\x22\xe4\x82\x4b\x97\xfe\x01\x14\xd4\xea\xc7\ +\x2b\x27\x49\xbb\x86\xca\x06\x35\x00\x13\x5e\x63\x31\xfe\xf0\xf3\ +\xf6\xf4\x4d\x03\xbc\x22\x68\xce\xdc\x4d\x67\x6a\x4a\x34\xa0\xc5\ +\x14\x41\xbd\xb6\x53\x09\x41\xa0\xe1\x23\xb5\x92\x4a\xa3\x36\x1d\ +\xe1\x13\x1a\x69\x8f\x62\xdd\xb9\x42\x8b\x1c\x32\x7b\x1a\xa7\xf3\ +\x0e\x8b\x80\x5a\x09\xb3\x57\x1e\x71\x75\x26\xa7\x63\x46\x3d\xdf\ +\x4a\xd7\xdc\x69\x03\x19\x58\xd4\xd8\x1f\x34\x14\xe8\x7c\x8b\xf6\ +\xd4\xd0\x45\x8b\xde\x98\xe8\x1c\x4d\x6d\x21\xd5\x52\xe3\x45\x1a\ +\xb6\xe4\x3a\x9e\x90\x2c\x18\x03\x47\x0b\xb5\x16\xcb\xec\x64\xc3\ +\x4b\x79\xc8\x41\xe9\xb7\xe0\xa8\x71\x5b\xcf\x57\x0b\xd3\x61\x2f\ +\x2b\xad\x32\xa8\x95\x26\x2f\x34\x28\x85\x50\x64\xdc\xbe\x8f\x2e\ +\xb6\x00\x83\x71\xc8\x40\x9a\x7a\xb8\x78\x31\x00\x1c\x6b\x46\x7a\ +\xbf\x12\x89\x99\xc8\x23\x26\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\ +\xc8\x93\x3f\xc0\x27\xaf\x07\x37\x28\x6d\x62\xed\x34\x68\x37\x09\ +\xf7\xa2\xd6\x9b\x0e\xbb\x9d\xb6\x14\xfc\x9e\xbb\xb3\xd5\xb6\xa3\ +\x2f\x25\x76\x59\xe1\xe5\x85\x9b\x30\x62\x04\x1e\xb7\x47\xaa\x56\ +\x39\x49\x2b\x95\x77\xb9\xd6\x2a\x06\x61\x7e\x52\x78\xed\x7f\xed\ +\x5b\x2f\x63\xc6\x63\x39\x85\xcf\x70\x6a\x80\xce\x26\xda\xf2\x67\ +\x7a\xfc\x7f\x59\x40\x4e\x15\x0a\xa5\x3b\x5b\xbc\x55\x0e\x11\x17\ +\x00\x48\x63\xf3\x45\x16\xe7\xa5\x8f\xa8\x61\x5f\xed\x54\xaf\x7c\ +\xb0\x67\xad\x05\xdb\xc2\x5b\x8d\x41\x70\x23\x8b\x25\x95\xaa\xc7\ +\x06\xa1\xfb\x68\x4d\x91\x74\x9a\x0f\xb6\x6c\xac\xa9\xd3\x81\x80\ +\xb5\x36\xcd\x9d\xa8\xf6\x1a\x07\x32\xa1\xe9\x07\x7b\xb2\x0a\xd8\ +\xf8\x4e\x87\xb3\xdc\x84\x33\x0e\x79\x54\x4a\xd4\x07\x7e\xd8\x60\ +\xc6\x95\x22\xd4\x2c\xd4\xd2\x69\xb0\x27\xa2\x67\x38\xe7\xd9\xb4\ +\x9a\x06\xf0\x46\x9a\xc9\xa8\x02\xb4\x9a\x4b\x1e\xe2\x4f\xc0\x91\ +\x50\x8d\x43\x8f\x33\xf0\x9a\x59\x7d\x80\x19\xe9\xd0\xa0\x3e\x98\ +\x22\xa5\x79\x30\x14\x5b\x02\x01\x03\xca\xfa\x37\xea\x4a\xeb\xa2\ +\x41\x75\x82\x80\x94\xe7\x0b\x40\x02\x19\xd7\x4c\xf0\x12\x25\x68\ +\x3e\x38\x13\xde\x1f\xa0\xc1\x68\xe8\x21\x1a\x16\x7b\x10\x4c\xdb\ +\x82\x0e\x42\xd0\xda\xae\x59\x55\xbd\x1a\x54\xa9\xbf\x19\x87\x7f\ +\xcd\xec\x0f\xcd\xc0\x43\x21\x45\xfd\x0b\x6b\x65\x2d\xd9\xb8\xa1\ +\x92\x42\x09\x35\xad\x32\xa4\xd7\x2d\x88\xf0\x75\x8a\xc5\x1e\xf0\ +\x78\xd3\x10\x65\xd5\x23\x3c\x34\x0b\xc9\x41\x17\xc8\x54\x47\x6b\ +\xa9\x74\x21\x45\x60\x7d\x17\x02\x2a\x95\x01\x5c\xc4\x41\x8d\x0d\ +\x3e\xa6\x01\xed\x56\xa4\xb5\x26\xaa\x9d\x6c\xaa\x30\x55\x57\x93\ +\x30\x1b\x96\x52\x30\x3f\x93\xe9\x1b\x34\x74\x42\xb1\x9b\xd6\x57\ +\x68\x60\x87\x77\xb5\x77\x6b\x93\x91\x51\x1d\x4d\x08\xa7\xa3\xde\ +\x2b\xd5\xa9\xaf\xc9\x0f\x02\x9e\x4b\x77\x94\xef\x14\x31\xfc\x21\ +\x75\x3b\x71\x58\xf0\xc3\xaf\x87\x41\xe1\x34\x70\x6e\xb5\x17\xa1\ +\x6d\x31\x74\xbc\xc6\xd0\x4e\xc3\x0e\xb4\xd9\x6b\xf3\xa6\xf4\xa7\ +\x00\x8b\x28\x00\x00\xff\xf4\x49\x44\x41\x54\x6b\x92\x54\x4a\x19\ +\x2f\xc0\xb5\x2b\x5e\x5f\xd5\xdf\xac\x20\x26\x4d\xc2\x64\x42\xb0\ +\x2d\x68\x54\xce\x87\x49\xe0\x68\xa3\x1e\x9d\x5e\x6b\xbd\x46\x52\ +\x13\x64\x66\xed\xb6\xaa\xa4\x5c\x35\xaa\x53\x0e\x45\xb0\xab\x72\ +\xb7\x53\x4e\x21\x12\x8a\xf0\x3f\x6f\x9d\xc7\x55\x40\x2d\x68\x0f\ +\xd0\x06\x3a\x4c\x22\x5c\xea\x16\x98\x7f\xc9\xf4\x82\x01\x60\x13\ +\xf4\xa0\xc5\x87\x1a\xc6\xd5\x11\xd0\xc9\x84\xda\xd2\xc6\xf4\x98\ +\xa4\x80\x23\xa9\x05\x75\xb0\x67\x0d\x98\x3d\x74\x4a\xe8\xc4\xc4\ +\xa2\xd0\x0d\x9f\xfe\xd6\x92\xd4\xd2\x1b\x75\xe8\xed\x0f\xfe\x7f\ +\x36\x84\x40\xf2\xd4\x83\xc7\xe7\xbe\xc6\x80\x50\x47\x42\x29\xf5\ +\x83\x0d\x94\x88\x09\x5e\xfb\xc4\xb7\x88\xea\x1f\x49\xa9\x05\x33\ +\x40\x78\xa7\x75\xee\xe1\x30\x5b\xe8\x79\xdc\x69\x5b\x04\x58\xb4\ +\x43\x91\x14\x61\x9e\xa0\x90\x68\xe6\xe2\x66\x6c\x8b\x14\x36\x99\ +\x19\xa0\x1f\xc6\xf3\x32\x26\x2f\xba\x08\x03\xa9\xda\xc9\x66\x71\ +\x90\xa8\xa6\x01\x7b\xd3\x51\xa9\x95\xff\xe1\x11\x1f\x28\x29\xd9\ +\x87\xf9\x68\x09\x1b\xb7\x57\x0c\x5f\x87\x3b\x1a\xb9\x2a\xe7\x72\ +\x54\x90\xe9\x4b\x45\x26\x87\x04\xa4\xa5\x47\x70\x52\x20\x51\x58\ +\xbb\x1e\xb5\xfa\x6a\x0c\x96\x02\xb5\x01\x20\x41\xdf\x6a\x9f\xf9\ +\x36\x1d\x2b\x99\xf3\x50\x48\x4b\xea\x83\x85\xbf\xa5\x40\x4c\xa7\ +\x4d\x2f\x35\xfb\xc5\x89\x97\xd4\x1a\x90\xb5\x3e\x0c\x43\x6c\xf7\ +\x51\x1a\x3e\x5a\xa9\xc6\x75\xec\xab\xc8\xd8\x0a\xfd\xcd\x0e\x16\ +\xe0\x4d\xee\x71\x20\x61\x4a\xde\x36\x5e\xd4\x83\x02\x9c\x36\x39\ +\x24\xac\xad\xad\x1b\x72\xb5\x55\x81\x16\xa6\x65\xa9\x80\x0f\x2b\ +\x45\xdc\x3f\x11\xd1\xa5\x05\xfb\xa9\xe4\xa8\xff\x5c\x20\xce\x36\ +\x31\xac\xdf\x89\xc4\x2e\x91\x47\x55\x22\xb1\x3b\xe4\x03\xb5\x44\ +\xe2\x88\x91\x27\xff\x08\x86\x06\x66\x6c\xf6\x71\x27\x83\x88\x46\ +\x86\x66\xe3\x73\x65\x9b\x83\xb7\x27\xb1\xcf\x76\xa9\xf0\xc8\x7e\ +\xe5\x88\x26\x0e\xdc\xb6\x51\xed\x05\xdf\x5a\xd7\x1b\x7f\x71\xd4\ +\x05\x0c\x15\x07\xc2\x48\xdc\xfa\x69\x8d\xb7\x56\xf6\x12\x3f\x2c\ +\x16\xac\xe4\xe6\x8c\x7a\x3c\x48\x82\x0d\x68\xd6\xb8\xc1\x87\x9d\ +\xb1\xb0\xaa\x8c\xd6\xf4\x83\x8c\x79\x48\x9c\x6b\xfc\x94\x0f\xa5\ +\x94\x43\x45\x43\x35\xae\x75\xbd\x64\x9a\x4c\xe3\xc6\xf6\x21\xc3\ +\x72\x82\xb1\xac\x59\x9a\xad\xd2\xf5\x89\x10\x65\xda\x0f\xbc\xc0\ +\x57\x3b\x56\x52\xd0\x0c\xb5\xca\x68\x83\x3e\xfa\x83\x2c\x7b\x28\ +\xd8\x7d\x4b\xcc\x74\xf0\x61\xff\x20\xb6\x31\xf1\x51\x85\x10\x72\ +\x02\x7c\x25\xbd\x10\x19\x6c\x35\x4f\x2c\x6e\xc0\xdb\xe1\xfe\x5c\ +\x00\x52\x89\x3e\xc4\xa4\x5c\xe3\xc7\x9c\x75\xf1\x4b\xf5\xfc\x51\ +\x27\xea\x25\x2e\x9a\x50\x71\x1f\xa2\x80\x08\x6a\xf6\xce\x6d\x31\ +\x56\xf4\xc1\x31\x80\x5a\x18\x79\x6b\x5b\x0a\x9a\x91\xea\xca\x13\ +\x8e\x0d\xd0\xd9\xdd\x6c\x34\x80\xed\xeb\x68\x29\x6b\x94\xd7\x84\ +\xdd\xb0\x33\x07\xb6\x42\xfb\xd6\x16\x25\x72\x86\x09\x75\xbe\x18\ +\x44\x3d\x62\x40\xd9\xf1\xf4\x03\x69\x34\x49\xd2\x5a\xd3\x0c\x94\ +\xd5\x2e\xd3\x38\xba\x90\x82\xcc\xe9\xc9\x07\x67\x6a\xc3\x58\xf0\ +\x61\x81\x64\xf0\x36\x39\x4c\x6a\x29\x7d\x97\x30\xac\xdd\xc7\x75\ +\xca\x48\x33\x18\x9f\x2a\x85\x40\x75\x55\x8f\x02\x11\xc0\x23\x86\ +\xc5\x81\x42\x07\x42\x18\x2c\x96\x48\xcd\x05\xa4\x18\x4d\x6a\x92\ +\x42\x21\x0e\xf7\x39\xa5\x0a\xf8\xe2\x6d\x35\xe3\xc0\x96\xac\xcb\ +\x20\x52\xc2\xf3\xc2\x8b\xfb\xa1\xda\x90\x52\x40\x6f\x76\xdc\x54\ +\x84\x52\xad\x28\x57\x8e\x10\xde\xf5\xa6\x50\x5d\x90\x77\xed\x2a\ +\xaf\x44\xf4\xa3\xba\xd2\x9d\xde\x78\xc0\x68\x5f\x40\x3c\x3c\x20\ +\x2f\x1e\x60\x82\x1d\xe4\x18\xc3\x39\x5c\x76\xa8\x43\x90\x38\x3c\ +\xf0\x18\x8a\x07\xd2\xd0\x81\xd5\xc0\xcf\xbb\xa9\xeb\xc2\x6d\xc0\ +\xf0\x96\x87\x37\x11\xc8\x78\x78\xe3\xda\x03\x89\x2e\x74\xab\xa4\ +\xc2\x7d\x24\x4f\x6a\x2d\x5f\xb7\xf4\x6b\x36\xc5\xb5\x39\x16\x84\ +\xda\x81\xc7\x7f\x13\x73\xb9\x2a\x79\x5d\x96\x17\xe7\x57\x94\xe0\ +\xba\xed\x91\xa5\x56\x82\x36\x64\x6e\xe8\xa4\x66\x9b\x90\x9b\x8d\ +\x4a\x59\x6b\x15\x6c\xf9\x52\xba\x8b\x25\xa8\xfe\x9c\x54\xa8\x1c\ +\xac\x52\x04\x2d\x10\x88\xb6\xd6\x67\x16\xe8\x15\xf2\x56\x89\x56\ +\x6a\x4b\xae\x57\xbb\x99\xd0\xb2\x81\xf3\xf9\x5b\x67\x13\x6b\x68\ +\xfc\x81\x1f\x40\x29\xf5\x4a\xeb\x80\xb3\x36\x19\x37\xd2\x7a\xfd\ +\xa1\x88\x32\xd4\x02\x5e\xfb\x60\x22\x7e\x51\x47\x79\xa7\x03\x4d\ +\xb1\xc5\xe6\x4b\x1d\x04\xaa\x23\x25\x32\x36\x23\x05\xfe\x76\x09\ +\x71\x3a\x2b\xf8\x77\x40\x13\x34\x51\x56\x09\x37\x76\xc8\x79\x11\ +\xdb\xf1\x1a\xbe\xe0\x98\x8f\xf9\x91\x57\xa1\xc0\xae\xf5\x06\xb7\ +\xa3\x9f\xb9\xa8\x40\x2a\x11\xe0\xa5\xae\x52\x42\x8c\x76\xd5\xc2\ +\x00\x4a\xac\xcc\xc5\x4b\x9d\x1b\x74\xed\x40\xce\x3f\x4a\x12\x60\ +\x24\x94\xb4\x07\x44\x02\xbd\xbe\x56\xce\xdf\x06\x4e\x38\xcc\x06\ +\x70\x7f\x14\x68\xc7\xdb\x0b\x7a\xad\x8c\xee\xe4\x2e\x53\xb9\xc6\ +\xf4\xb6\xbb\xf8\x68\x0f\x9b\x5a\x71\x2e\x04\x5a\x0a\xda\x73\xac\ +\xba\xf9\x4d\xcd\x8f\xb6\xd2\x27\x0e\x10\x38\x10\x1a\x47\x79\xd4\ +\x20\xcd\x1e\x35\x0f\x3e\x6a\x4c\xaf\x3c\xbe\x39\xa7\x7f\x4c\x65\ +\x3c\x74\x28\x6b\x9c\xa6\x46\x3b\xd8\x5f\x6c\x6e\xc1\x5f\xfd\x56\ +\x40\x0f\x3f\xa5\x58\x32\xa6\x50\x98\xbf\xa0\x0d\xf8\x51\x2f\x4e\ +\xa8\x49\x73\x74\x68\x2b\x2c\xac\x25\xac\xd0\x35\x5f\x93\x47\x3d\ +\xdf\xca\x91\x09\xa0\xbc\x2f\x5a\x0f\xb7\xf7\xc3\x08\x7c\xff\x90\ +\xea\xf3\x77\x05\x0c\x10\xce\x3d\xd4\x89\xc4\x0e\x91\x47\x54\x22\ +\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\xff\x08\xda\x89\x74\x04\ +\x74\x43\xb2\x3b\x83\x27\x30\x95\x88\xeb\x77\x09\xb9\x4d\xf1\xe6\ +\xe4\xb2\x81\xe8\x6c\x21\x34\xd3\x66\xa3\x10\x03\x37\xe4\x3b\xf0\ +\x15\x76\xc3\x1f\xe5\xa8\xac\x1d\xa0\xfa\x55\x99\x95\x58\x37\x81\ +\x4c\x09\x95\x4a\x61\xff\x89\x83\x3a\x17\x2a\x89\x9b\x47\x5d\x7e\ +\xe1\xcd\xaa\x2a\x55\xc7\x18\x64\x55\x60\xb5\xdb\x68\x85\x38\x34\ +\x56\xbe\xea\x95\xf7\x4b\x6a\x67\x03\x1e\x3e\x94\x9a\xdc\xc7\xca\ +\x1e\xc4\xa9\x92\x80\xde\xf3\xd0\x58\xe6\x6b\xb4\xbd\x6b\xe1\xf1\ +\x58\xf3\x01\xdb\x52\xd7\xc0\xaa\x4e\x37\x54\xe8\xb0\x3e\x74\x93\ +\xd6\xb5\xf3\x78\xd3\x8f\xbc\xc8\xdd\x8e\x6a\x32\x0a\x1e\x51\x64\ +\x39\x72\xea\x47\x21\x44\x12\x17\xb1\xc1\x42\xcd\xf6\x70\x8b\x8c\ +\x87\x6c\x22\x35\x9a\x2f\xd0\xd0\xcb\x8b\x63\xc0\xb6\x35\xb6\xb7\ +\x87\x05\x0b\xfd\xeb\x69\xf7\xd5\xf6\x68\x2f\x50\xab\xbe\x54\x8f\ +\x4d\xd8\xab\x9e\x36\x8c\xe7\xfe\xae\x70\xad\x47\x73\xb4\x72\x78\ +\xc9\xfe\x41\x2e\xc2\xa1\xee\x43\x78\x91\x41\xaa\x8b\x9e\xb0\x83\ +\x8c\x02\xb7\xd0\x52\xde\x5c\xaf\xc0\x8b\x3e\x9a\xb9\x7e\x13\x0d\ +\x26\x2a\x77\x3f\xf2\xb0\x01\x2f\x86\x94\x9a\xba\xcb\x10\x3e\xa8\ +\xcc\xd7\x0d\x40\x72\x21\x02\x8e\x56\xa3\x07\x5c\xf4\xc0\xd8\x4b\ +\x85\x95\x10\xd3\xe9\x83\x2c\x64\x0e\x7b\xc8\x69\x40\x3d\x2c\x94\ +\xee\x6a\x95\x82\x10\x0f\xba\x08\x8d\x45\x12\xfe\x82\x0f\xfc\xa1\ +\x86\x15\x6c\x10\xdf\xf4\xb0\x63\x0e\xfa\xe0\x4d\x17\xa5\x34\x14\ +\x0a\xad\xba\xba\x53\xea\x58\x69\x5a\x2a\xe7\xff\xd9\x90\x9a\xdd\ +\x14\x01\xbd\x2a\x8d\x4a\x79\x95\x2b\x4d\xce\xea\xca\xa3\xea\xc9\ +\x85\x46\x9e\x84\xca\x6b\x9e\xd4\xf3\x2d\x72\x96\x26\xeb\xfc\xbd\ +\xa6\x8c\x24\xcb\x8e\xa7\x0e\xef\x4e\xae\xb5\x16\xd5\xdf\x2a\xda\ +\xf9\xfe\xe0\x06\xfa\x3e\xb1\x2e\x07\xe8\x6f\x89\xb6\x09\x0f\xe9\ +\xc3\x90\x48\xcc\x85\x1f\x47\x7e\x4c\xb1\x1e\x14\x42\x60\xc7\x97\ +\x14\xd5\x66\x4f\x60\x3b\x86\x35\x4d\x75\xa9\xe0\xb3\xd4\xcc\x83\ +\x8c\xa5\x09\xf5\xfa\x89\x5a\x9a\x60\x1b\xb8\x2e\x99\x0d\x0b\xa5\ +\x01\x95\x07\x1f\xf0\x24\x83\x87\xd1\x6a\xa3\xf3\x29\x82\x72\xe7\ +\x84\x82\x29\x79\x12\x2e\xa5\x5c\x65\xe4\x28\xef\x78\xe3\xd4\xc8\ +\xf4\xc1\x87\x70\xde\xda\xb6\x38\xf0\x41\xf7\xd4\x0a\x12\x41\x9d\ +\xf3\x60\x02\xa2\x82\xfa\xc7\x3e\x98\x9f\x50\xd7\xe9\x3d\x9e\x3e\ +\x7c\x73\x5f\xa5\xc8\xb1\xea\x64\xfe\x80\x0e\x9c\xce\x2d\x2d\x0e\ +\x65\x90\x02\xbe\x83\x14\x5d\x3c\xcf\x09\x96\xb0\xe9\x8c\x48\xda\ +\x75\x00\x71\x31\x1d\xa2\x0f\xdf\xb0\x36\x5b\x31\xf4\x76\x82\x3b\ +\x9b\xa4\x25\x65\xae\x90\xda\x49\x0d\xed\x9e\x55\x05\x31\x6b\xbf\ +\x06\x99\x90\x73\x33\xa3\x51\x79\x63\xb4\x32\x53\x97\xa1\xe2\x31\ +\xc9\x87\x35\x10\x40\xba\xf2\xee\x08\x90\x3f\x18\x13\x78\x3f\xa5\ +\x82\xdc\xcc\x39\xed\x80\x10\xbc\x59\x30\x0f\x72\xc1\x56\x63\x19\ +\x48\xaa\xa4\xce\xad\x20\x42\xd9\x25\xa0\x7a\xe8\x28\xaa\x16\x66\ +\xa3\x3c\x6a\x77\x41\xa5\x47\x17\x4c\x3a\x1b\x46\x27\xab\x7d\xed\ +\xfd\x01\x10\xec\x38\x19\xd1\x79\x09\xf4\x38\xf6\x6c\xe6\xa8\xbe\ +\x28\xa1\xe4\xdc\xc5\x8c\x38\x5f\x82\x16\x3c\xa0\xf3\x5e\x52\x52\ +\xc7\xbc\xd5\x03\xf3\x34\x40\xdb\x31\x53\x81\xc5\x26\x05\x39\xe2\ +\x56\xae\xd2\x8c\x82\x66\x41\x31\x80\xab\xba\x1c\x55\x47\x21\x6d\ +\x40\x76\x73\x35\xa9\xe3\xff\xd9\x03\x4f\x45\xe0\x8d\x53\xda\xf5\ +\x52\x70\x7c\xc0\xeb\xa6\x30\x9a\x6f\x95\x55\x9d\xb4\x43\x59\xd0\ +\x59\xb0\x8e\xaf\x70\x39\x0a\xdb\x2f\x60\xd8\xd7\x11\xc4\x10\xe6\ +\x52\x6b\x60\xca\x77\x08\xdb\xfa\x4d\x01\xfd\x8d\x39\x25\x12\x3b\ +\x44\x1e\x56\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x03\ +\xf0\x09\xac\x0f\xce\xd0\xac\xa3\x9d\xe4\xb6\x3e\x7b\x47\x6c\xc8\ +\x13\x89\x09\xef\x39\x11\x99\xe8\xeb\x43\x91\xd0\x92\x10\x9c\xff\ +\xa3\x36\x51\x1f\xa2\xa8\xc6\x02\xf3\xf7\x9b\x73\x28\xe3\xd5\x48\ +\xef\x25\xe0\x83\x8d\x6f\xed\x99\x19\xd5\x1a\x2f\xae\x57\xc0\x08\ +\x31\xd4\x98\x5a\xd0\x72\x83\xe5\x32\x8a\xaa\x9d\x72\x04\x78\xa5\ +\x54\x44\xbd\x4a\x7a\xb5\x6c\xc8\x01\xcb\x29\xba\xf0\x00\x19\xb5\ +\x95\x66\x24\xd0\x90\x52\x06\x9a\x0a\x95\xc9\x0b\xf7\x7c\xa8\xa1\ +\xd2\x71\xd4\xc5\x1a\x6e\xd4\xa0\x92\x1a\xdf\xbc\x03\x47\x81\xc9\ +\x58\x83\x04\xe5\x3a\xad\xa9\xc5\xe2\x11\x75\xe2\x0b\x99\x14\x35\ +\x57\xb5\x84\x50\x09\x8e\x0d\x04\x02\x55\x58\xad\xbd\x44\xad\xa5\ +\x15\x66\xcb\x58\xc2\xfb\x62\x0f\x63\x90\x54\x82\x8b\x42\x22\xa4\ +\x9d\xbc\x61\x07\x5a\x79\xdb\xcc\xb6\xfb\x56\x9d\x94\xb2\xd3\xb9\ +\x04\x01\x91\xc8\xb4\x5d\x5d\x94\x00\x78\x63\x4f\x25\x35\x5a\x51\ +\xe5\x84\xda\x59\x80\x0a\x89\x2e\xa5\xd8\xe8\x6a\x55\x03\xd5\xb2\ +\xbf\x5c\x99\x41\xbb\x1a\x2f\xde\xc8\x5b\x04\x21\x5d\x86\x02\xb9\ +\x09\xdc\xc7\x74\xa0\x41\xd2\x87\x32\x93\x93\x74\x1b\xa7\xc5\x16\ +\x0f\x71\x54\x60\xf6\x80\x2f\x8a\x48\x14\xd4\x92\x9b\x99\x28\x60\ +\x27\x1b\x8e\x25\x4d\x43\x78\xd8\x2c\xd0\x1f\xe8\x44\xe1\x8b\x18\ +\xf5\x5b\x6a\x60\x6b\x00\x7d\x93\x55\x3b\xa5\x20\x44\x9b\xc6\x47\ +\x7b\x56\xd0\x83\xd0\xfd\xa2\x0f\xb7\x4c\xc6\x5a\xf3\xf4\x7e\x6b\ +\x25\xe3\x47\x15\xfa\x04\x01\x35\x28\x68\x6b\x46\xce\xa0\x90\xd2\ +\x79\x00\xb4\xf2\x90\x83\x64\xbc\x3a\xfe\x2a\x57\x1a\x0c\x05\x2a\ +\xa3\x58\x65\x4a\xb2\x54\xda\xf5\xd0\xb9\x8f\x26\xaa\x72\x29\x3a\ +\x92\x25\x08\x6e\xca\x9a\x1f\x61\x32\x2d\x3a\x73\xd8\x93\x16\x19\ +\x2b\x53\x48\x6d\x62\x2f\x82\x7f\x04\x78\xdf\x79\xf7\x0d\xcf\x25\ +\xe6\xd4\xe6\xd7\xe6\xbf\x01\xa2\x6b\x1b\xd2\x9b\x4d\x24\x36\x45\ +\x3c\x96\x06\x0f\xac\x7b\x02\x8f\x67\xcb\x61\x2c\x8d\x46\x5e\xaf\ +\x65\x44\x5f\x59\xaf\xf1\xa8\xf9\xf9\x4f\x56\x68\xbd\x8a\xbb\x5e\ +\x81\x48\xb0\x51\x99\xd3\xce\xe9\x5b\x5e\xd4\x9b\x8e\xcd\x9a\xcc\ +\x6c\x99\x3d\x69\x70\x06\xa8\x5d\x42\x7f\x40\x1f\x5c\xf9\x03\x2c\ +\x02\x76\x1a\x40\x63\x9a\xa6\x8b\xa5\x14\xae\xf9\xf4\xaa\x76\xc1\ +\x86\x15\x38\xe8\x8c\xb6\x58\x6e\x59\xdb\x84\x3f\x6b\xf0\xae\x85\ +\x1e\x3e\x22\xa3\x1e\x72\x1b\x2b\x9d\x58\x76\x36\xc6\xa9\x44\xae\ +\x7d\x41\x06\x73\x45\x95\x18\x59\x15\x02\xd3\xf5\x44\x1e\xc3\x60\ +\xe3\x01\xd4\x18\x90\x61\x5e\xa7\x12\x64\x67\x26\x6a\x57\x2b\xcc\ +\x43\x84\xd6\x07\x89\xdc\x59\x9d\x3f\xc1\x99\x81\x9b\x2b\x9c\x71\ +\x1b\xda\x4b\x81\x07\x27\x64\xd4\xc0\xcd\x08\x34\x8e\xb6\xe4\x45\ +\xd2\x9d\x45\xc6\x0c\x69\x5c\xa5\x42\x5a\xab\x90\xf3\xba\x27\x7c\ +\xbd\xfe\x41\xae\x96\xca\x2b\x6d\x9c\xc1\x6d\xa3\x8c\xc1\x4c\x23\ +\x34\xe7\x89\x66\x59\xcd\x4c\xa7\x52\x93\xab\x5e\xbf\xfd\xe4\x2c\ +\x46\x34\xda\x74\x73\x1b\x13\x98\x4e\xca\xda\xf7\x05\x7d\xd8\x34\ +\xe5\xb2\x89\xb9\x45\xe9\x4a\xcb\x99\x53\x1f\x8e\x29\x8d\x68\x57\ +\x33\xa3\x99\x50\x14\xf8\x83\x24\xd1\xbb\x0c\x62\x12\xa7\x4a\x57\ +\x9f\xca\x09\xf4\x21\x9b\x15\x2a\x55\x85\xc0\x6c\x20\x32\xbd\xb1\ +\x06\x26\x67\x56\x52\x6a\x60\xe5\x85\x26\x07\x12\x76\xa4\x4d\x26\ +\x65\xb5\x71\x23\x56\x2a\xa7\x8c\xe3\xac\xbc\xcb\xf1\x56\x99\xd5\ +\xea\x6c\xb4\xd5\xa6\x05\x62\xce\x8a\xa0\x63\xa1\x23\x69\x8c\x6c\ +\xc2\xdb\xb8\x3d\x3c\x78\x3f\x12\x89\xfd\x22\x0f\xb3\x44\x62\x77\ +\x90\xf9\xa0\xcd\xdc\x12\x89\xc4\xd1\x21\x4f\xfe\x35\xf0\x01\xb2\ +\x39\xfa\x24\xe2\xec\xe4\xce\x06\x76\x93\x04\x77\x0c\xde\x1c\x09\ +\xec\x12\xd2\xb6\x1e\xaf\x2c\x37\x27\x6e\x41\x19\x0c\xeb\xe5\x88\ +\xb5\xf5\xa9\x76\xcd\x17\x11\x00\xa3\x4d\xc0\x05\x04\xfc\xec\xa1\ +\x0a\x29\x07\xe9\xf1\x70\xeb\xea\x37\xfa\xb5\x36\x1d\x25\x24\xa9\ +\x21\x68\x5f\xd5\x34\x56\x1d\x48\x14\x5c\xdc\x80\x58\x75\xa6\x08\ +\x7c\xa4\x3d\x96\xca\x09\x11\xa8\xca\x64\xac\x75\x41\x47\x79\xb7\ +\xb6\x12\x0b\x3b\x90\x81\x95\x82\x52\x30\xa0\xdd\x47\xa4\xae\x57\ +\x16\xbc\x3d\x0e\x53\x85\xa9\xa4\xa0\xce\xec\x0c\xca\x9a\x3d\x5b\ +\x80\x1f\x64\x00\x64\x60\x4d\x60\x6a\x2e\x38\xc9\x0d\xb3\xca\xd5\ +\x8f\xb4\xc5\x66\x45\x1b\x12\x3a\x6e\x24\x03\x4f\x7b\xbc\xe5\x86\ +\x7e\xa1\xb1\xb0\x3b\xb9\x58\xc1\xb7\xc6\x55\xe8\x3e\x86\x84\x22\ +\xdc\xdf\xcb\x7e\xc7\xb1\xa8\x71\x44\x17\xe8\x0a\x09\xc8\xff\x47\ +\xe2\x32\x56\x9d\x1e\x1e\x11\x58\xc8\x80\xa8\xfd\x2b\x64\x5a\x41\ +\x87\x8a\xdf\xcc\x22\xa9\x60\x1a\x92\x10\xdb\x90\xb6\xd4\x8c\xf2\ +\x8e\x37\x21\xf2\xe4\x43\x34\xf4\x4e\x6b\x85\xd4\xe8\x13\x72\x45\ +\x28\xea\xcc\x8b\x8b\x3b\x6e\x6a\x6d\xa8\xc6\x0c\x0c\x35\x96\x80\ +\x3e\x9a\x24\xa5\xfc\xf6\x95\xea\x69\xc6\xc5\x0e\xc0\xf7\xbb\x45\ +\x24\xe9\x3a\x01\x68\x36\x29\x7a\xd0\x18\x97\x93\xd3\x8e\xae\x7e\ +\xe0\x41\xb9\x9d\xd4\x6c\x13\xd0\x9a\x6a\xea\xad\x7f\xd8\xf8\x46\ +\xe1\x71\x6a\xa1\x35\x48\xe8\x58\xcb\x86\xf1\xd1\x40\x2a\xb7\x9a\ +\x20\x2f\x34\xf8\x2a\x32\x02\x1a\x92\xee\x83\x0d\xb2\x4e\xcf\xd2\ +\xe4\xd4\xb9\xa0\x8e\x15\x58\xa5\xb5\x8f\xa4\x3a\x5e\x09\xad\x20\ +\x77\xbd\xd5\x6e\x62\xda\x46\x7f\xa8\xf0\xe4\x74\x5f\xf7\xa1\xc7\ +\x97\xe2\x96\x9d\x18\x72\xdf\x61\xf8\xc4\x11\xc3\x3e\x97\xfb\xc7\ +\xb0\x1f\x5c\x2d\x7f\xc7\x18\x3b\xae\x99\x4e\xcc\xd7\x30\x90\xa6\ +\x8a\x3a\x85\xba\xa2\xc4\xb5\x4f\x2a\x7e\x4e\x93\xb0\x9a\x1a\xa5\ +\xf9\x46\x81\x52\x75\x5a\x99\x85\xc5\x71\x19\x1e\x47\xd9\x55\x16\ +\x4a\xad\x9d\x17\xf8\x03\x30\x36\x29\x70\x39\x2c\x54\x07\x06\x5c\ +\xa7\xb1\x77\x90\xfb\x06\x88\x44\xe4\xde\x56\xaf\x14\x19\x47\x47\ +\x0a\xfd\xe9\x6e\x91\xae\x96\xc1\x02\x00\x05\x3b\xcc\xb1\x60\x87\ +\xec\xd4\x57\xd5\x6e\x89\x1a\x36\x12\xcc\xff\x98\xc9\x36\xea\x69\ +\xd7\xf6\x5d\x28\x30\xe8\xac\xc5\x53\xad\x5a\x71\xb4\x79\xed\x80\ +\x4c\xe5\x1d\x0d\x9d\xd4\x14\xa3\x76\x1f\xd4\xd4\xb2\x44\xad\xa1\ +\x61\x03\x0b\xad\x29\x67\x38\xbf\x96\x40\x66\xbe\x96\x0b\x6c\x08\ +\x1a\x78\x33\xc2\x54\xbd\xc0\x52\xa2\x44\x0a\xbd\x8e\x71\x0f\x42\ +\xa2\x32\x54\x74\x86\xde\xc4\x68\x3c\xb6\x23\xac\xaa\x24\x07\x88\ +\xcd\x0e\x95\x91\x0a\x32\x9c\xe0\xf4\xae\x87\x9d\xbd\x13\x52\xb3\ +\x83\x0a\x9d\x8f\x39\xaa\x31\x0b\xed\x7a\xb4\xd5\x71\xe8\xc5\x42\ +\xe5\x25\xde\x3a\x18\x55\x4a\xf0\x81\x16\x09\x13\x1b\x27\xfe\x95\ +\xbd\x5e\xb0\x7f\x35\xb6\x0a\xd5\xc6\x8d\x48\xe8\xe6\x32\xb5\x87\ +\x4e\xde\x9a\x9c\xbc\x65\x1c\xa8\x47\x25\x04\x7f\x3f\xd1\x2c\x25\ +\x37\x4f\x8f\x76\xf0\x81\xce\xdb\x81\x1c\x06\x60\x20\xa3\x9a\x25\ +\xac\x58\x03\xa4\xf5\x6d\xfa\xa0\xa5\x9f\xca\xf4\xad\xb5\x51\xa2\ +\x66\xa9\x7c\x90\x2b\x84\xa2\x3f\x2a\xa3\xa9\xf4\x5c\x01\xe8\x5d\ +\xae\x36\x2e\x65\xe9\x72\x42\xa5\x8c\x63\x7c\x84\xe6\x22\xb0\xb1\ +\x6b\xd4\x8a\xda\xae\x60\x9d\xfe\x10\xe1\x7d\x4c\x24\xf6\x8c\x3c\ +\xd2\x12\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\x3c\xf9\x37\x40\x3b\ +\x58\xeb\x66\x23\x77\x36\xb8\x68\x28\x26\x73\xb7\x7b\xb5\xde\xe4\ +\xf4\xa0\x0b\x00\xd0\x70\xf1\x04\x30\xbe\xcd\x56\x61\x39\xb3\x92\ +\xa2\xc7\x1a\x43\x08\x2d\xce\x2a\x92\xc2\x55\x66\xc3\xa5\x06\x90\ +\xdc\x40\x9b\xdc\x6a\x05\xad\x78\x43\xab\x66\x2c\xfd\x2d\xe1\xa1\ +\x55\x11\x8a\x4a\xd7\x18\x1a\x17\x6c\x17\xdf\x1e\x1a\x55\x1e\xb5\ +\xda\xa8\x9c\xd2\x5a\x5b\xd4\x4e\xef\x8c\x0a\xf4\x6d\x72\xb7\x05\ +\xd8\x8c\x2a\x59\xfb\xfa\x02\x6d\xcd\x9e\xba\xc0\xbb\x7d\xc7\x7b\ +\xe1\x3a\xa5\x08\x54\x76\xa7\x4f\xf3\x7a\x03\xab\xfa\xae\x5f\x22\ +\x8f\x3b\x11\xb4\x3a\x88\x16\xff\x8b\x0e\x3b\xc9\xec\x7b\xdf\xb2\ +\xa3\xb0\x6e\x31\x37\x29\x7b\x21\xb5\x6d\x6c\x12\x0f\x25\x57\x16\ +\x20\xd1\x3d\xe4\xb6\xf4\x13\x06\x61\x00\xd5\xa3\xc6\xff\x39\x81\ +\x95\x72\x2c\x69\x63\x86\x84\xd3\x6a\xe3\xb5\xde\xce\x0b\xed\x8d\ +\x80\x08\x34\xc9\xa8\x13\x5b\x3d\x0f\xb0\x38\x62\x31\x6b\x52\x66\ +\x28\x72\xf3\xa4\x8e\xd4\xc2\x25\x26\x0f\x0f\xbc\x50\x79\x4c\xf6\ +\xd8\x7c\x18\x1d\x34\x75\xd6\x96\x68\xe8\xc5\x02\xc0\xa2\x4c\x97\ +\xff\xe0\x39\x1a\x1c\x3c\x0b\x02\x24\xd3\x36\x9d\x54\x9a\xb9\x10\ +\x10\x51\x2e\x1c\x1f\x08\x56\x8d\xe9\xd0\x7f\xc8\xcd\x06\x42\x2a\ +\xc9\x2a\xd9\xea\x8c\x27\x28\x32\x1a\x14\x48\xec\x43\xfe\x9c\xa4\ +\xca\x54\x68\xbc\xd1\xac\x65\xd3\x7e\x82\xe6\x5b\x69\xab\x10\x57\ +\x0f\x5b\x8b\x0b\x7b\xea\x7c\xac\x28\x84\x15\x6b\xd2\x6a\x80\x82\ +\x75\xe5\xf1\xee\xe9\x80\xbe\x3e\xd6\x16\x1a\x54\x95\x3d\x0c\x20\ +\x4f\x1f\x8f\x29\xcc\xb1\x99\x81\xa1\x10\x08\xed\x78\x28\xc3\x96\ +\x38\x3c\xf0\x38\xf2\x83\x49\x0e\xa4\xf6\x58\xf2\x0b\x08\x15\xf1\ +\xa0\xbb\x47\x30\xc7\x35\xf9\xf4\x54\xc2\xe8\x5b\xe0\x1d\x54\xce\ +\xaf\xdd\x1d\x84\xb6\x6b\x15\x74\xa4\xcc\x46\x87\xa2\xd1\x59\x09\ +\x74\xb1\xdc\xd6\xa1\x0f\xaa\x20\x44\xcd\xcc\xdd\x40\x2a\xbb\x84\ +\x0b\xc0\xc0\xc6\x6b\x97\x1a\x4f\x81\xe9\x91\x63\xe5\xb5\x86\xc1\ +\x4a\xb6\xae\x87\x6a\x43\x0f\x1f\x2e\xc6\x21\xc1\x1a\x2f\x55\x58\ +\x79\xbd\x54\x9b\xca\x2b\x85\xca\x63\xe8\xbc\x4e\x1f\xce\x01\xb4\ +\x86\xec\xc6\x3e\x81\x1f\x78\x58\xb8\xb3\xca\x3b\x58\x6c\xea\x2d\ +\x06\x7d\xa8\x61\xe9\x60\x04\xd3\xa9\x16\x34\xae\x1e\x4a\xab\xaa\ +\xd3\x7b\xa5\x76\x2d\x20\xab\x59\xf5\x01\x01\x14\x28\xa4\xd3\xea\ +\x2f\x1b\x2e\x58\xd2\x08\xaf\xa7\x68\xac\x3a\x9b\x03\xc5\x10\x02\ +\x22\x63\x42\x90\x77\xb4\x6a\xcd\xc6\x8e\x33\x82\x31\x21\xd7\xfe\ +\x54\x13\x27\x08\xa1\xf9\x86\x85\xca\x55\x8f\xb9\x60\x77\x85\xf6\ +\x39\x91\x72\x56\xb3\x2d\xc8\x41\x2b\xe5\xf6\x5a\x5a\xbf\x42\x1e\ +\x90\xd1\x12\x73\x1a\x90\xe0\xa0\x37\x28\xa5\x73\x3b\xfd\xd9\x45\ +\xcc\x19\x00\x64\xe7\x31\x3a\x9f\xf8\x90\x8c\x60\x5b\xfa\x0d\x32\ +\xcf\x4b\xe1\xde\x66\x6f\x7f\x34\x05\x74\x76\x28\xd0\x8e\xb5\x0b\ +\x31\xe5\x6e\xa3\x31\x74\x2c\x54\xc1\xd2\x8c\x6a\x19\xf5\x35\x80\ +\x49\xd8\x7d\xb7\x51\xc0\x06\xf4\x8a\xed\x76\x3e\x34\xe3\xb1\xa2\ +\x0c\xa5\xa8\x41\xf8\xcf\x34\x12\x26\x0b\x35\xe1\x3e\x90\x83\x02\ +\x83\xfd\x60\xa4\x97\x5d\x6d\xfb\x0b\x2d\xb2\x36\x1a\xb0\xea\xd1\ +\x40\x07\x2a\x91\xb8\x13\xe4\xd1\x96\x48\xec\x0e\xf9\x40\x2d\x91\ +\x38\x62\xe4\xc9\xbf\x01\xe2\x60\xcd\x9d\x89\xec\x7d\x80\xd1\x80\ +\xdf\x60\xc4\xa4\xee\x7f\xcf\xe2\x26\x88\x59\xd8\x25\xa6\x66\x14\ +\x52\x1b\x1f\x46\x33\x0a\xb6\x60\xf0\xf3\x80\xdd\xcd\x95\x94\xf6\ +\x4d\x31\x85\x50\x78\x53\x2d\x04\x9f\x71\x41\xab\x72\x14\x76\xaf\ +\xaf\x7c\xb8\xf9\xf7\xcb\x60\x7f\x11\x83\x95\x16\x7c\x6b\xad\x40\ +\x2c\x61\x90\x03\xd7\x65\xa0\x80\xde\xda\x60\xe3\x2e\x17\x98\x9e\ +\x3c\x6c\x54\x28\x6f\x4b\x86\x02\xc8\xf5\x61\x54\xf4\x53\x95\xfb\ +\x80\x8c\xf6\x14\x28\x4f\x1b\xa5\x51\x9f\x70\xe1\x07\x72\xe5\xbb\ +\x58\x94\x0a\x68\xc5\x3a\x42\x6d\xe4\x56\x17\x2e\x2c\xe4\x8d\x36\ +\xaa\x1d\x7c\x14\x90\x70\x2f\xf3\x2d\x05\xf6\x0d\xcd\x84\xe3\xbe\ +\x02\x29\xb4\xe5\x48\x1b\xc6\x0a\x72\x93\xe9\x4d\xba\x66\xc4\x71\ +\x75\x3b\xc6\x40\x68\x10\xba\xf5\xf3\x11\x74\x4e\x4a\x0a\xa8\xf5\ +\x42\x84\xbc\x79\x17\x52\x73\x30\x1d\x7f\x0a\x0b\x80\x4c\x2c\x68\ +\x82\x08\xd8\x44\xc6\x05\x16\x5d\xc4\x81\x92\x2e\xd8\x98\x8b\x31\ +\x8e\x9a\x9f\x58\x21\x2c\x1e\x96\x19\x4b\xbf\x68\x2b\xf0\xfe\x68\ +\xe5\x4a\xa9\x85\x36\x95\x15\xc2\x33\x0f\x44\x31\xd4\x85\x1f\x1a\ +\xd5\x8a\xb6\x74\x16\x25\x2b\xec\x03\x5d\xa4\x61\x0e\x20\xb0\x4f\ +\x85\xe0\x43\x4f\x2c\xd0\x68\x20\xd3\x43\xe1\x12\xe7\xc1\xd9\x42\ +\x0e\x0b\xb5\xd1\x94\x29\x11\x35\xf4\x68\x1b\xbe\x90\xa9\x0d\x10\ +\x69\x75\xea\x16\x85\x90\x2b\xdb\xa5\x5e\x63\xf9\x1e\x64\x3f\x68\ +\x03\x21\x0a\xe5\x1d\x1e\x57\x6b\xd9\x30\x26\x9d\x86\xba\x8e\x96\ +\x12\x6f\x06\xa3\x84\xb5\x52\x52\x0b\xd1\xef\xb3\x51\xa8\xa5\x70\ +\x3b\x23\x04\x2a\x43\x5a\x14\xd1\x90\x04\x69\x95\xc9\x9b\x39\xb9\ +\xee\xa1\x00\xf9\xfa\x68\x38\xf6\xdc\x87\xa9\xf0\xdd\x8e\x49\x24\ +\xb6\x07\x8f\xa3\xe6\x60\xf2\x63\xaa\xa7\x13\xf0\x03\x21\xf0\xfb\ +\x04\x72\xd8\xb6\xa9\x78\x4e\xc4\xae\x79\x7f\xf8\xb9\x29\x60\x77\ +\xd4\x40\x2b\x37\x96\x9a\x26\xae\x43\xcd\x2b\x24\x18\x97\x56\xba\ +\x0b\xed\x0f\xce\xb4\x60\x05\xb8\x8f\x5c\x33\xd4\x56\x38\xbe\xcd\ +\xa2\x33\xac\xa5\x7e\x5b\x0c\x9f\x99\x52\x6b\x72\x54\xc0\x47\x59\ +\xd3\x4b\xcc\xaa\xa7\xce\x6d\x35\xba\x96\xce\x3b\xcd\xb7\xd9\xea\ +\x46\x9d\xf9\xaa\x1d\xda\x35\xae\xd6\x20\xcc\x46\x68\x72\x9c\x4f\ +\x09\xc5\xb7\xe9\x51\xa1\xb0\x79\x12\x39\xe9\x38\xbe\x85\x07\x56\ +\x4b\x07\x6c\xf0\xcd\x26\xd5\x28\x20\x03\x8d\x9f\x0f\xb4\xf8\x1c\ +\x39\x00\xbc\xd0\x3e\xd6\x26\x47\x4c\x1d\x5b\x87\xe6\xaf\xb2\x68\ +\xd9\xf1\xc3\x30\x9d\x57\x88\x61\x8e\x10\x85\x1f\xfb\xee\x6a\xce\ +\x05\x84\x96\x4e\x6a\x9b\x36\x76\x54\xa3\x58\x4a\xe9\x3e\x55\xa1\ +\x75\xb5\xd1\x5a\x29\xc8\xeb\x15\x9f\xe5\x4d\x40\xee\x16\x68\x14\ +\x73\x16\xf0\x31\xbe\x51\xf5\x5a\x0d\x9d\xce\x33\x00\x4a\x41\xb3\ +\x52\xe2\x1a\xbf\x6c\x00\x4a\x2b\x21\xf0\xc0\x4b\x63\xaa\x4d\x3f\ +\x86\xd6\x52\xe0\x67\x1b\xa5\xd3\x71\x2e\x51\x4b\x12\xe2\xed\x41\ +\x2d\x1f\xfd\x26\x1f\x58\x8b\xbd\x40\x9f\x11\x5b\x79\xc8\xd9\xb2\ +\x14\xa8\x61\x62\x1a\xa3\xf5\xe7\x25\xfb\xd3\x89\xa8\x77\xa1\xf2\ +\x2e\x51\xbd\x6b\x3b\x5d\x2d\xab\x4e\xda\xad\xb9\x08\x83\xc2\x73\ +\xa6\x56\x4a\xbc\xa9\x34\x35\x6d\xcd\xdf\x3e\x67\x7c\xae\x49\x33\ +\x9e\x08\xa6\x37\x3f\x85\xc9\xe8\xaf\x75\x85\xf1\xdc\x0d\x4a\x56\ +\x19\xc1\x83\xed\x91\xa2\x37\x46\x89\xc4\xfe\x91\x47\x5c\x22\xb1\ +\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\xff\x4c\xb4\x03\xb5\x6e\x26\ +\x02\x7b\xb7\xb9\x97\x41\x3e\x94\x3d\xeb\x37\x4d\x02\xbb\xd4\xf8\ +\x6d\x7a\x7b\xe5\x59\x3f\xb9\x13\x07\xf7\xf1\x1a\x77\x5e\xe2\xa8\ +\xff\x87\xcb\x80\xc0\x90\x41\x24\x8d\x71\x51\xc1\x1a\x1b\xbc\xdc\ +\xe1\xa1\x0a\x6f\x1e\x75\xf9\x01\x9b\x2f\x88\x28\x87\xca\x38\x56\ +\x52\xf0\xad\x35\x72\x80\x9c\x39\xd0\x00\xbc\xd6\xd4\x0b\xed\x3c\ +\xca\x21\x59\xbd\x91\x46\x49\x42\x6b\x6a\xab\x88\x25\x6b\xe5\xc9\ +\x11\x8c\x85\x85\x17\xd6\x9d\xa2\xe5\x85\x09\xac\xc5\x01\x82\x09\ +\x48\xee\x1f\x72\x00\x07\xd8\x6a\xd5\xe8\xff\xe8\x30\x58\x40\x97\ +\x40\xb5\x92\x02\x35\xad\xa1\xc0\x83\x4f\x76\xd2\x16\x60\x50\xd8\ +\xc6\x1b\x73\xd0\x3c\x50\xb0\x78\xa4\xbe\x08\x88\x0a\x41\xa8\xe2\ +\x5f\xf8\x82\x80\x5c\xf7\x19\xef\xd9\x69\xc4\x82\x71\xae\xc3\x83\ +\x15\xcd\xdb\x68\xda\x98\xce\xe4\xee\x4a\xa9\xab\x84\x30\x52\xa0\ +\x71\x29\x70\x77\xd9\xd4\xc2\xad\x28\x08\x00\xaf\x51\x42\x8b\x82\ +\xce\x8e\x0f\xb3\xb0\xf6\x60\x1d\xd0\xff\x2d\x26\xd6\xe8\x23\xfe\ +\xdf\x19\x17\x5b\xba\x9a\xed\xdd\xb8\xe1\xee\x25\xd4\x81\xf6\x00\ +\xc6\x8b\x84\xc2\xc2\xd1\x18\xb4\x83\x36\xd1\x50\x50\x59\x10\xd2\ +\x3a\x2b\x14\xc8\x15\x72\x40\x08\x61\xb8\x4f\x6c\xa3\xca\x6b\x2b\ +\x59\x41\x0f\x42\xf6\x0d\xa5\xc1\xd6\xbb\x41\xbe\x12\x5a\xab\x95\ +\xcb\x14\x94\x91\x37\x21\x62\x31\x3e\xc8\x4e\xd6\x55\x52\x80\x90\ +\x76\x94\x45\xe9\xed\x1b\x2b\x84\xa6\x01\x81\xf2\x16\x42\xe0\xb4\ +\xeb\x1c\x81\x11\x83\xce\xdc\xec\xbb\x00\x0f\x08\xc8\xf9\xc6\xc1\ +\xb1\x1b\xb4\xa1\x1d\xeb\x9a\xb0\xe3\x23\x91\xd8\x0b\x78\x4c\xfa\ +\x41\x66\x35\x8f\x37\xa1\xa9\x7b\xc8\x40\x1f\xfa\xd7\xa1\xae\x4b\ +\xa0\x94\xc3\x3c\xc1\x3f\xe3\x70\xfd\x8d\xf2\x5a\xfb\xf0\xd0\x42\ +\xe5\xa8\x48\xbb\xdc\xc4\x0a\x61\x78\x0d\x13\xca\xf4\x5a\x9a\x91\ +\x55\x80\x3e\xac\xea\x74\xb5\x5d\xf0\x20\x85\x77\x1d\xf2\x5c\xc9\ +\xab\x9b\xa3\x09\x68\x86\x22\xc8\x54\xc2\x9a\xf2\x10\x43\xe3\x9b\ +\x3c\xec\xeb\xce\x26\xe8\xc0\x42\x1a\x7f\x02\x92\x6f\xf0\x0e\x9b\ +\x1f\x55\x88\x65\xa7\x34\x7b\x17\xa0\x56\x5b\xd8\xf8\xcf\x18\xb2\ +\xe4\x38\xa8\x9e\xf6\x2a\x34\x09\x49\xe3\x8c\x19\x80\x8f\x9d\xa2\ +\x7a\x0a\x86\xed\x3b\x1b\x6c\xad\x6f\x0b\xf4\xcb\xe3\x01\x5d\x7c\ +\xfd\xf9\x44\xe3\xe5\x8d\x3c\x39\xcf\x61\xff\x20\x50\xbb\x0a\x35\ +\x53\x82\xa5\xf4\x19\xa4\x98\x47\x79\xf5\x67\x69\x32\x03\x1f\x02\ +\xd5\x36\x31\xef\xe1\x04\x47\xe8\xc6\x12\x6a\x99\x63\xd1\x54\x1a\ +\xf1\x63\xbd\x33\xf2\xb9\x12\x62\xd0\x58\x68\x55\xc6\x92\xb5\xbe\ +\xdd\x92\xb2\x3a\xff\x90\xf8\x90\xd3\xdf\xd3\x82\x8a\x1d\x53\x46\ +\x5f\xa2\xf4\x07\x83\x7c\xe3\xd5\x1d\x45\x35\x1e\x5e\x9c\x1b\x42\ +\x26\x02\x3c\xcc\xb3\xc0\x6a\x42\xeb\x40\x2b\x18\x8d\x6f\x14\x28\ +\x95\x77\x9d\xa5\x66\x30\x1b\x9a\xa8\x8e\x63\xe4\x2a\x2d\x94\xa1\ +\x12\xb6\x14\xd4\x1a\x50\xda\xfd\xd4\xb6\xd3\x4b\x6d\xa4\x56\x2e\ +\x77\x98\x1f\x00\xa2\x55\xb3\xdd\xc7\x0c\xe9\x70\xdb\xe7\x44\x62\ +\xcf\xc8\x43\x2e\x91\xd8\x1d\x64\x2e\xd2\x9b\x7d\x25\x12\x89\x23\ +\x42\x9e\xfc\x1b\x02\x03\xb6\xcd\x2c\xe4\x20\x06\xda\x93\xbf\xa7\ +\x64\xe4\xe6\x6a\x70\xe8\xc2\x25\xa8\x52\x6b\x53\x34\x03\xb7\xab\ +\x37\xdd\xb8\xe1\x47\x25\x85\x77\x55\x68\x9a\x41\x46\x02\x55\x25\ +\xd4\xae\xf2\xea\xdf\x8d\x92\x94\xfa\x16\x99\xc5\x86\x94\x31\x4d\ +\x41\x40\x07\xde\x6d\x54\xa7\x36\x14\x50\xcf\x1b\x6e\xd8\x40\x6e\ +\x32\x85\xf1\xba\xae\x24\x80\x21\xde\x28\x74\xa3\x05\x0b\xc0\x62\ +\x54\x5e\x00\x1b\x8b\xa7\xb5\xe9\xe9\x6b\x74\x05\x6c\x9d\xf2\x52\ +\x7a\x28\x15\x87\x43\x0a\x95\x80\x80\x90\x52\x81\x5a\xa3\x52\xbd\ +\xc2\xa4\x02\x5d\x12\xd0\x38\x5d\x3e\x10\xe8\x03\x47\xbc\xc5\xa6\ +\x3a\x40\x10\x6c\xe4\xa5\x47\x89\xc8\xec\xa6\x1c\x32\xb6\x44\x91\ +\xd4\xfa\x56\x39\x64\xa0\x69\x5b\x97\x23\x64\x03\xe0\xa7\xbe\x2c\ +\x51\x18\x5f\x97\x2e\x28\x53\x74\x24\x97\x44\x8c\x72\x7b\xc9\xca\ +\x85\x40\x18\x8f\xb8\xa8\xa0\x50\x7b\x25\xdd\x1f\x2e\xd1\x2e\xc6\ +\x33\x9a\xbc\x14\xae\xb0\x9a\xe3\x61\xa2\x5a\x13\x21\x86\x99\x84\ +\xd6\x58\x12\x46\xa2\x7d\x3d\xbe\xac\xa7\xf4\xd1\xb1\x31\x16\x46\ +\xa4\x89\x9a\x87\x58\xd8\x22\x94\xff\xc4\x52\x97\x13\x6a\xa5\x3b\ +\x99\xd1\xd8\xb8\x16\x04\xb9\xb4\x43\x56\x6b\xd5\x2b\xa2\x9f\xb7\ +\x39\xb5\x10\x53\x75\xd5\x96\xa5\xd1\x31\xbe\xc9\x50\x2b\x09\x03\ +\x25\xbb\xc2\x60\x72\x7f\xe0\x87\x32\xaa\x5d\xdf\x15\x8a\x9a\x4b\ +\xa8\x5c\xf6\x28\x80\xbe\x74\x47\xd5\x34\x26\xec\x5c\xec\x07\x5b\ +\xc4\x58\x68\x0f\xe7\x3e\x73\x52\x48\x24\x36\x85\x5f\x7f\x22\x06\ +\xcf\x61\x3b\x20\x87\xec\x0f\x11\xec\x82\x9d\x40\x31\x65\xeb\x86\ +\x8a\x03\x43\x44\x43\xe1\xa8\xc6\xf5\x5a\x6c\xe4\x3a\xa0\x5d\x47\ +\x01\xda\x83\x68\x94\x0e\x90\xd1\xc2\x78\x40\x68\x98\x43\x4a\xb1\ +\xea\xba\xa1\x14\x82\x6f\x97\xa3\xee\xcb\x48\x81\x64\xb3\x42\x78\ +\x3c\x56\xa8\x69\x5c\x7d\x29\xaf\xd0\x6b\x3a\x1f\x82\x71\xfa\xe1\ +\x36\xa8\x71\x5d\x8c\x3c\x60\x3c\xe3\xd2\xc2\x68\x95\xeb\x1b\x17\ +\x53\xa7\x01\xd7\xdb\xb8\x60\xe3\x18\x01\xf0\xaf\x94\x58\xd8\x75\ +\xca\xcc\x35\x65\x29\x68\x0e\xdb\x4e\x61\x94\xd4\x36\x67\x61\x2d\ +\xf0\x80\x84\xda\xb9\xe5\x0d\x30\x48\x23\x37\xb6\x6b\xa1\x83\x72\ +\x26\x63\xa5\xc7\x00\x5d\x6a\x2c\xf7\xd1\x40\xaa\xf5\x07\x3e\x0e\ +\xb5\xf3\x54\x79\x15\xe5\x7c\x82\x8c\x4a\x3c\x8c\x0a\x68\xe3\x11\ +\x20\xf1\x19\x61\x85\x30\x5d\x57\x82\x86\x81\x42\xbc\xca\xc3\x58\ +\xf2\xe2\x3e\xd6\x87\x53\x9e\x40\xef\x1b\x55\x04\x08\xb4\xe8\x76\ +\xb4\x0a\xf9\x54\x43\x61\xb4\xaf\xed\x43\x3c\xdb\xbb\x10\xa8\xd8\ +\xc6\x8d\x5a\x34\x84\xd0\xdc\xf9\x1e\x4d\x6a\x25\x04\x55\xa2\xc7\ +\x87\xb4\x01\x9d\x5a\x62\x0b\x71\x59\xa9\xdc\x69\xb5\x0b\x60\x1b\ +\x6e\x2f\xb5\xbe\xbb\x7c\x9c\x76\x3b\x30\x26\x07\x7a\xf3\x30\x96\ +\x52\xf3\xad\xf5\xa0\xdc\x11\xda\x6e\x51\xe3\x76\xdd\xe9\x6a\x12\ +\xa2\x60\x2e\x0d\x86\xc2\x0d\xd9\x3d\x38\x48\xc7\x86\xfa\x96\x48\ +\xec\x11\x79\xc8\x25\x12\xbb\x43\x3e\x50\x4b\x24\x8e\x18\x79\xf2\ +\xef\x10\x18\x4c\x9f\xa1\xf8\xc0\x82\xdf\xdb\x20\xc7\x06\xe7\x60\ +\x28\xa9\xbd\x26\x38\x03\x31\x7f\xc9\xa3\xde\xc0\x01\x96\x97\x55\ +\x7e\x1f\x6e\x2c\x51\xad\xab\x30\x68\xd9\x35\xe5\xab\x94\x37\xd5\ +\x10\x07\x3b\x00\xbc\x05\xe3\x82\x87\xb0\x43\x97\x46\x97\x55\x1b\ +\xbc\x28\x22\xa3\x1a\xd4\x28\x64\x53\x91\xd6\x28\xf9\x57\xd5\x66\ +\xa7\x6f\xad\x15\xd0\xb9\x5e\x38\x21\xbc\x7f\x6a\xa7\x0a\x94\x31\ +\xbf\x41\xbb\xaa\xc7\x26\x5a\xca\xa8\x75\xab\x8e\x72\x86\xe3\xd5\ +\x2d\x1e\xe8\x0d\x31\xdc\xf4\xbf\x46\x50\xee\x3b\x41\xd0\xd9\xc9\ +\xc6\xb6\x00\xd8\x85\x7c\x96\xc2\x89\x0f\x17\x15\x56\xf8\x6d\x4c\ +\x11\x0a\xef\x0b\x58\x35\x8a\x54\x0c\x43\x1a\x65\x17\xc7\x4b\xc8\ +\x78\x78\x70\xa5\x01\x31\x21\xa5\x87\x00\x0a\x87\xda\x56\x11\x4d\ +\xdc\xce\x74\x52\xd1\xd7\xc5\x0e\xf8\x50\x66\x76\x15\xc6\xf3\x6d\ +\x72\x56\x4a\x77\x0b\x0f\x62\x07\x9a\xe6\x52\xbb\xd8\xd0\xd9\x39\ +\xac\x4f\xa0\x6c\x81\xa6\xf3\x53\x05\x4a\x8e\x01\xdf\xba\x1f\x6a\ +\x18\x0e\x82\x65\xe4\x32\x03\xda\x82\x2d\xbd\xe1\x00\x86\xce\x14\ +\x2a\x3c\x90\x1a\x92\x45\x5b\xfe\x57\xf3\x6e\x8c\xd2\x1f\xa6\xc1\ +\x88\xbb\x00\x9c\xaa\x19\x1f\x2f\xfa\x42\x88\x45\x23\x35\xa6\xad\ +\x1e\x3f\xa2\x31\x7b\xa0\x1b\x0b\xad\xc9\x06\x19\xa8\x5e\xba\xa2\ +\xab\x36\xa0\x55\xc8\x92\xa0\xac\xe5\x49\xf4\xcd\x9c\xc7\x86\xe4\ +\x40\xb2\x32\xb9\x14\xce\x5a\x51\xab\x40\x98\xba\xe3\x83\xea\x11\ +\x01\x9d\x6a\x0f\x9a\x2d\xe0\xee\x7e\x58\x45\x8c\x85\x8e\xb6\x8f\ +\x72\x6c\x13\x07\x81\x7a\xed\x32\xc4\x73\x7a\x0a\xad\xdf\xa1\x82\ +\xdd\x41\x31\x92\xaf\x88\xa1\xa9\xda\xb6\x5f\xe4\x1b\x59\x85\x5c\ +\x45\xa9\x92\x02\xe3\x26\x8c\x5a\x4a\x69\x2e\xf5\x1a\x5d\xe3\x8a\ +\xa4\x0e\x31\x64\x16\xc3\xd5\x02\xfa\x98\x90\x8f\x8f\xa8\xeb\x8c\ +\xa0\xd2\x1e\x29\x0f\xd4\x07\x5c\xca\x54\x9d\xcf\x93\x3a\x40\x43\ +\x03\xea\xd4\xce\x6d\x59\xf2\xa5\xdf\x80\xd3\x97\x4b\x69\xc0\x37\ +\x64\x2a\x07\xdc\x86\x54\xaf\x3d\xf0\x5a\x2b\x6a\xc7\x29\x82\x14\ +\x57\xc6\xce\x43\x85\xca\xa3\x0c\x1a\x92\x1d\xdf\x59\x21\xa6\x3d\ +\x64\x03\xa2\x09\x21\x02\x9b\x27\x74\xcd\x07\x23\x92\x37\x9c\x04\ +\x21\x57\x03\x1f\xa2\xf2\x67\xb2\xa1\x43\x4c\x4a\x8d\x0f\x1e\xd1\ +\xb5\x7e\xab\x4a\x20\x79\x60\x7c\xf4\x0a\x2b\x9b\x5f\xa3\xbb\xc2\ +\x4c\x8d\x16\xf4\x28\xb3\xe3\xa1\x26\x2f\x7a\x33\xa7\x10\x33\x82\ +\xac\xca\x1b\x8d\xc4\xd0\x07\x61\x1e\x87\x16\x6e\x6f\x75\xe7\xa3\ +\x94\xcf\xa9\x38\x9f\x11\xa2\x1b\xd2\xa6\xe4\x5b\xe3\x13\xde\x4f\ +\x29\xf1\xe2\x88\x89\x80\x35\x5f\x88\x15\x6c\xa0\x74\x8e\x15\x64\ +\x5a\x13\x1c\x23\xe8\xd4\xae\x67\xcf\x02\xa5\x46\x27\x84\x87\x08\ +\x2d\xc4\xc3\x13\x7c\x9d\x87\xd1\xc5\x68\x6a\x50\x29\xaf\xb4\x16\ +\xd4\xa8\x58\x60\x76\xa8\x85\x40\xec\x1a\x2f\x00\x92\x2e\x1b\xc9\ +\xc1\x4c\x58\xd5\x42\x2c\x42\x6e\x6b\x61\x2e\x0f\x1f\xd2\x11\xef\ +\x0b\xc7\x22\x91\xb8\x1b\xe4\xe1\x96\x48\xec\x0e\xf9\x40\x2d\x91\ +\x38\x62\xe4\xc9\xbf\x67\x1c\xcc\x00\xb7\x89\x0c\x4d\xa5\xe6\x24\ +\xeb\x33\xff\xbb\x45\xbd\x49\xb3\xcb\x15\x4a\x52\x96\xca\xf8\xc4\ +\x70\x20\x57\x3a\xe3\x36\x3a\xe8\x9a\xcb\x60\xd5\xf5\xc4\xc2\xb8\ +\xd8\xf3\x68\xea\x6a\xc3\xf8\x5e\x9b\xae\x56\x72\x03\x4f\x33\x79\ +\xc1\x4f\xdf\xd4\xe8\xbb\x5f\x77\xe8\xec\xc9\xb1\x4d\xe5\x55\x64\ +\x04\x77\x91\x4a\xbc\x66\xd9\xda\x47\x1d\x20\xbc\xfe\x84\x8e\x90\ +\xa8\x4d\xdc\x07\xac\x55\xd3\xf5\x59\xd1\x69\x14\xfa\xb3\x90\x8b\ +\x52\xf0\x53\x49\x2b\xe9\xb3\x28\xf5\x9f\xfc\x8b\x98\x0f\xd4\xec\ +\x27\x94\xe4\xee\x9a\x29\x53\x41\x82\x74\x77\x5f\x6e\x04\xd5\x46\ +\x4b\x65\xcb\x12\xca\x23\x77\xa5\xd4\xae\xfa\x0a\x48\x4b\x51\xf3\ +\x95\xba\x1a\x1b\xc8\x5b\x0c\xd8\xb9\xcf\x10\x4c\xa7\xf9\x49\xc1\ +\xb7\xd9\xd6\xa4\x11\xc9\x6d\x46\x20\x4a\xa8\x7d\x39\x07\xff\x57\ +\x83\xc1\x0c\x5d\x7c\x93\x99\xbd\xd6\xc3\xfd\xd5\xaa\x63\x40\x71\ +\xf1\xa2\x2e\x94\x08\xd8\x3f\x6f\x1b\x36\x30\x04\xc5\x51\xc7\xa4\ +\x30\xec\x7f\xe8\x60\xce\x82\x92\x08\xc8\xb1\xe9\x42\x1b\xde\x52\ +\xe0\x61\x9a\xfd\xb3\x0f\xf5\xd0\xb2\xab\x4c\xca\x4a\x0a\xbe\x7d\ +\x91\xc5\xb5\x0a\x72\x26\xd0\x9c\xa2\xbe\xd3\x55\x3f\x2f\xf8\xd6\ +\x5a\xa1\x44\x6c\xb3\x2a\xc9\xba\x0c\xa8\x04\x41\x2e\xea\x38\x56\ +\x7d\x9b\xe3\xc0\x9e\xfa\x7c\x8c\x43\x99\x38\x2c\xf8\xb5\x01\x1f\ +\x10\xb3\x4f\x6f\x31\x34\xb7\x07\x8b\xd8\x4f\xf6\x45\xaf\x01\xb1\ +\x5b\xfc\xb8\x1b\xec\x68\x27\xab\x97\xd6\xc6\xae\x5e\xa5\x58\x09\ +\x67\xb5\x71\xac\x15\xf6\xf3\x89\x26\xa2\xce\x04\x3d\x3b\x5e\x9b\ +\xa0\xc3\x7e\x72\xb9\x59\xb0\x2f\x2a\xab\xfe\xb0\x37\x19\x61\x3e\ +\xd5\x8a\x44\xe5\xa8\x57\x7b\xa5\x5d\x1e\xe7\x77\xa0\x78\xfd\xa5\ +\xc8\x74\x61\x1c\xab\x69\xb5\x71\x80\x51\x7f\x2d\x1c\x3d\xc6\x2d\ +\x0c\x46\x4b\xe5\xf3\x3d\x4a\xd8\xa6\x37\x8a\x3d\x46\x93\x80\x3e\ +\x37\x0b\xe6\xa2\xd5\xcd\x98\xf5\xda\x09\x48\xfb\x78\x29\x17\x66\ +\x23\xa8\xcc\xc4\xd1\xb0\xca\x4b\xb0\x38\x36\x1e\xc7\x94\xe4\x80\ +\x2a\x77\xf4\xe2\x0b\x41\xda\xe7\x04\x56\x46\x7d\xaf\x76\x4b\xd9\ +\x28\xf2\x60\x5d\xd0\x6e\x1e\x60\x7c\xa0\xc1\x98\x94\xa5\x77\x99\ +\xb0\x46\xab\xc5\x09\x7e\x5e\x12\x9c\x18\x99\x5f\x9d\x53\xb1\xb9\ +\x10\x4b\x09\x81\xc9\xa8\x33\x21\xe8\xa0\xb7\x49\x52\xd0\x1b\xed\ +\x35\x65\x5a\x77\x7e\x80\x31\xc8\xa9\xca\x8d\xb6\x7c\xdc\x86\xa5\ +\xf0\x95\x53\x42\x50\x5b\x10\x98\xb6\xd7\x88\xd1\x72\x7e\xf6\xe5\ +\x11\x26\xe7\xf1\xab\x64\x6f\x1c\x1d\xd0\x31\x2f\x72\xc3\x36\xdb\ +\x20\xc6\x8d\xf5\xbd\xc1\x3a\xe8\xfd\x4c\x24\xee\x10\x79\xd8\x25\ +\x12\xbb\x43\x3e\x50\x4b\x24\x8e\x18\x79\xf2\xdf\x01\x0e\x66\x90\ +\xfd\x0e\x62\x0c\x73\x12\x75\xff\x7b\xea\x54\xbd\xd1\x93\xf6\x2d\ +\x05\xcf\xe4\xe6\x0d\x7a\x8b\x26\xe7\xca\x82\x10\x0f\x2e\x12\x18\ +\x84\xc6\x3d\x61\xcf\x83\x37\x81\xc1\x8e\xb5\x50\xca\xd8\x7b\x98\ +\x87\x48\xff\xe2\xd9\xe1\x72\x53\x52\xe2\x84\x50\x68\x0b\xa4\xf1\ +\x1d\x4d\x52\x20\x04\xdf\x26\x80\x8d\xbe\x95\x26\xb4\x46\x2c\x8c\ +\x87\xeb\x5c\xdb\xd9\xb9\xce\x8a\x70\x33\xac\x16\xf1\x46\x1a\x12\ +\x8f\x66\x0b\x29\x2e\xb2\xb1\x21\x2f\xd0\x4a\xca\xee\x4f\xcc\x99\ +\x0b\x81\x07\x6c\x22\x5b\x91\x37\x19\x2b\xa3\x1d\x58\x40\xe8\x1a\ +\x47\x00\xe3\x51\x20\x86\x2a\x69\x26\x2a\x78\xe3\xdb\x55\x31\x6c\ +\xb5\xf7\xb6\x81\x40\x7b\x4e\x9e\x7e\x04\x58\x6d\x41\x69\x14\xfa\ +\xb0\xa8\xa1\x01\x23\xe3\x68\x55\x19\x03\x09\x63\x3c\x33\x77\x5d\ +\x94\x91\xea\xec\xb4\xee\x6c\x3b\x85\x50\x22\xf4\xfc\xba\x61\x22\ +\xc7\x9a\x3e\x5c\x80\x11\xde\x0d\x21\x04\x4d\x08\x01\x99\x2b\x8d\ +\xa5\x9a\x72\x29\xf8\x46\xe1\xb9\x09\x7a\x3a\xa3\xf1\x10\x8d\x05\ +\xda\xc5\xf8\xa3\x36\xad\x56\x06\x97\x99\x30\xd4\xa4\xa4\x30\x0b\ +\xd9\x90\x10\x16\xde\xbc\x6d\x2b\xb5\x32\xa0\x1d\xad\x4d\x6d\x75\ +\xdf\xc7\x65\x44\x08\xe0\xbe\x9d\xc4\xe0\x02\xb7\x45\x65\xc3\xa4\ +\x03\xf4\xd8\x30\xd4\x31\x1f\x04\xef\xf8\x96\x98\x1a\xb3\x5b\x84\ +\x4d\x24\x76\x06\x3f\x3e\xe7\x1e\x8f\xed\x85\xe2\x21\xa3\xd7\xe7\ +\x70\xb2\xb2\x42\xd1\x1f\x14\x74\x5d\x2d\xa2\x4e\x25\x83\x88\xd7\ +\x5a\x2f\x49\xa0\xb0\x6b\x35\x68\x0b\x55\xe7\x14\x4a\x29\x2c\x86\ +\x4a\xa0\xd7\x3c\x79\xed\xae\x29\xbb\x8d\x81\x17\x5d\xd9\xf4\x1d\ +\xe8\x6e\x3e\x64\x51\xa0\x64\x2c\xd2\xb5\xa6\xd4\x74\xfe\xff\xd2\ +\xdc\x57\x39\x52\x35\x37\x43\xcb\x83\xd2\xb7\x77\xd1\x74\x66\x11\ +\xec\x6b\x57\x88\x48\x09\xcd\xb7\xca\x4e\xf8\x00\x52\xac\xcd\xd7\ +\x01\xce\xf3\xf3\xb6\x1c\x7d\xcb\xb6\xad\x2e\x37\x85\xcd\xed\x0c\ +\xb4\x25\x2b\x85\x30\xb4\x15\x92\xf3\x0e\xab\x09\xb7\x69\x40\x7f\ +\xd6\x70\xd0\xeb\x6d\xcf\x54\x27\x48\xaa\xef\xc1\x24\xe2\xd3\xd9\ +\xaf\x54\x6a\xd7\x66\xd0\xea\xad\x9c\x56\x56\x1b\xba\x07\x3c\x9d\ +\x3c\xc6\x50\x78\x0e\xa0\xba\x76\x59\xb1\x04\x84\x72\x1f\x6b\xd4\ +\x2c\x8d\x07\xad\x19\x5d\xe3\xe7\x1a\x3b\xad\x82\x8c\x14\x62\x1b\ +\xe7\x6f\xbd\xfc\xf4\x0d\xa1\xc6\x14\x4e\xb5\x50\x28\x05\xb8\xac\ +\xf3\x15\x08\x1d\x38\x81\x59\xb1\xea\x34\x43\xe3\x01\xa8\x37\x62\ +\x2a\x17\xd1\x6b\xa7\x07\x6b\xd3\xd5\xa8\x99\xf7\x08\xdc\xce\x3b\ +\x3f\x65\x7b\x68\xc0\x18\x34\xe7\xdc\x76\x90\x38\xb5\xef\x36\x10\ +\xe0\x13\x89\x3b\x44\x1e\x72\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\ +\x46\x9e\xfc\x7b\xc6\xc1\x0c\x70\x4c\xc4\x67\xf2\xed\x74\xea\x21\ +\x1d\x0d\x7e\xd3\x17\x61\xf9\x4b\xb5\xb6\x27\x37\x0c\x20\xf0\x71\ +\x41\x65\x3c\xea\x2a\x8e\x4b\x0c\x80\x70\x26\xa8\x8b\x2a\xac\x55\ +\xae\x6b\x3e\x72\x6b\x4e\x36\xea\x63\x48\x97\x6b\x61\x9c\x96\x5a\ +\x09\x84\xd0\x77\xa5\x51\x74\x7a\x87\xcb\xb4\xd6\x36\x82\xbd\x94\ +\x9a\x12\x05\x03\xfe\x23\x80\x13\xc0\xd5\x13\xbc\x35\x96\xc7\x03\ +\xa1\x12\xf0\xb6\xf0\xa1\x42\xd6\xfc\x81\x20\xb0\x6c\xd0\xe5\x16\ +\x07\x32\xbe\x51\x98\x22\x56\x4c\xd8\xda\x19\x80\xa9\x03\x1a\x07\ +\x57\x1a\x8f\x26\x98\x21\xe4\xac\xdc\xe0\x26\xa0\xa1\x9b\xf9\x32\ +\x72\xbb\x82\x04\x56\x8b\x00\x3f\x36\x6b\x84\x50\xd9\x22\x0a\x79\ +\x29\xfa\x6a\x41\x27\x8b\x07\x78\x5c\x7c\x69\x0f\x7c\x70\xf5\xaf\ +\x9f\x99\x9b\xfd\xd4\x10\x3b\x4b\xad\xf2\x62\xd1\xfe\x94\x23\x41\ +\x11\x0a\x91\xe1\xad\x81\x50\x74\xb0\x36\x55\x65\xb4\xdb\xe1\x39\ +\x9a\x1d\x1b\x2c\x58\xa3\x32\x9a\xf1\x55\xc8\x45\x19\xbc\x65\xe3\ +\xa2\x15\xc5\x9a\x7b\x4d\xa3\xda\xb2\x12\xb8\x5d\x84\x09\x44\xd1\ +\xd7\x81\x91\xad\x56\x46\x6b\xd1\x83\x8a\x1b\xb9\xb3\xa8\x99\xcb\ +\x31\xc1\x3b\x1d\xeb\x3d\x62\xcf\xe1\x13\x89\x9d\xc1\xaf\x4d\x37\ +\x30\xf1\x41\x81\xcf\x96\x51\xbf\x03\x06\xcf\x4b\x3f\x39\x07\xf2\ +\x9f\xd5\x25\xbb\xb2\x4a\xd1\x3d\xda\xb9\xe9\xa8\x73\x00\x50\x34\ +\x04\x67\x4d\xab\xad\xab\xa8\xa9\x63\xe9\x3e\x40\x25\x0c\xde\x2e\ +\x4a\x04\x92\xda\xe2\x75\xfe\x50\x47\xbf\xe8\x23\x1b\xde\x74\xf5\ +\x87\x68\x80\xe9\x50\x56\x21\xfc\x8c\x11\x21\x69\xbe\xab\xc1\x30\ +\x68\xeb\x50\xaa\xf2\xbd\xbc\xba\x58\xda\x13\xa1\xc9\xaa\xac\x2b\ +\xad\x9f\xfa\x76\x6e\xa0\x46\xa9\xf4\x4d\xa8\x14\xd7\xcb\x9b\xfa\ +\x28\xb1\xbd\xc9\x63\x5b\x35\x1e\x1f\x50\xda\x6c\x4c\x0f\x44\x1b\ +\x5e\xb3\xdd\x51\x0a\x56\x56\x76\x86\xc6\x03\x66\xd7\x95\x2d\xfa\ +\xd2\xfe\x83\x1f\xd0\x9c\x69\x74\x73\x24\x70\x24\x94\xaf\x79\x19\ +\xef\x7d\x23\x6e\xd8\xa9\x2f\x76\x13\x64\xd0\xf8\xd4\x47\x5b\x81\ +\x90\x25\x08\xab\x23\x05\x08\x67\x36\xf8\x51\x02\xe4\x05\x68\xb3\ +\x1a\x43\x45\x10\xa8\xce\xe1\x7d\xeb\xfa\x88\x1a\x99\xb9\x9c\x25\ +\x69\xd4\x4e\x99\x02\x84\xca\x2a\xdf\x59\x03\xfd\xb8\x2d\x1a\x99\ +\xb1\xac\x5c\xe5\xe3\xb6\x0e\xb0\xef\xd2\xee\x23\xc6\x70\xbb\xbb\ +\xc6\xc6\xed\x6e\x93\x68\x33\x08\x56\x25\x12\x77\x85\x3c\xe4\x12\ +\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\x3c\xf9\xef\x00\x07\x31\xc8\ +\x9e\x44\x3b\x85\x0a\x13\xfa\x4a\xaf\x4b\x78\x8e\xcd\x03\x42\xe8\ +\x4a\x1c\x0d\x62\xe8\xf2\x48\x91\x14\x34\xbc\x36\x13\x29\xf0\x86\ +\x0c\xbf\x6a\x18\xfd\x84\x06\xa7\xcf\x61\x50\x98\x21\x69\x35\x51\ +\xda\x63\x29\x94\x0c\x25\xfd\xc8\x56\x69\x0d\x61\x49\xb3\x5d\xb7\ +\x13\x59\xcd\x83\x22\x5d\xe8\x30\x09\x94\x5a\xc9\xd6\x97\xcb\x86\ +\xf4\x28\x05\x90\x97\xd3\x06\x61\x11\x9b\x52\xb9\x09\xa7\x2f\xe2\ +\x99\x19\x7d\x85\xb7\x9e\xeb\x4f\x3e\x0a\x45\x1e\x72\x6b\x9b\x3e\ +\xb4\x83\x0e\x58\x49\x9f\x3c\x9e\x6c\xe2\x54\xfd\x88\xb0\x48\xd0\ +\x89\xac\x30\x07\xd6\x4e\x47\x58\x14\xf7\x03\xd0\x3e\x16\x11\x82\ +\x82\x11\xdc\x35\xd8\xba\x8c\x19\xe8\xce\x34\xde\x4b\x18\x43\x87\ +\x2a\xea\x60\x2a\x5e\xce\x00\x16\x57\x65\x41\x01\x81\xbe\x0d\x46\ +\x55\x41\x13\x07\x40\x6c\xa9\xd8\x15\xa6\x20\x9c\xdb\x58\x3b\x50\ +\x40\x6c\x7b\x2c\xa6\xdf\x85\xae\xf0\x36\x82\x46\x48\x15\x99\x0c\ +\x55\x1d\xa4\x26\x27\xea\x8c\x64\x2e\xc8\xcf\x0c\x58\x55\x4e\x79\ +\x6c\x88\x55\x85\xc1\x82\x55\x13\xbf\xc2\x7d\x54\x09\x1b\xf4\xaf\ +\x9a\x9a\x93\x9a\x54\xa9\x01\x83\xd5\xca\x8e\x05\x03\x63\x51\x11\ +\x75\x90\xef\x79\x8c\x8e\x75\x17\x24\x1e\x0e\x78\x7a\xc4\x73\x64\ +\x04\xfc\x00\x32\x3b\x7e\xb6\x84\xf3\xc7\xe5\x8f\x01\xdb\x9c\xb3\ +\xa1\xfb\x20\x39\x1c\x1e\x87\x3a\xcc\x09\x20\xa2\x56\x36\x1b\x3f\ +\x23\xbb\xf9\x54\x37\x13\x20\x4c\x1e\xcb\x1e\x44\x54\x67\x17\x6c\ +\xcf\x2c\xe9\x37\x30\x1f\x20\xcc\x86\x05\x6c\x84\x72\x7b\x15\xd2\ +\xbf\x7e\x13\x1e\xb0\xd8\x5d\x9e\x8a\xca\xc7\xbe\xf6\xba\xc6\xe8\ +\x30\xec\xc9\x5d\xab\x32\x95\x40\xa6\xa4\xf3\x1d\xdc\x87\xd7\x75\ +\xd2\x02\x8b\x67\x95\x12\x40\x35\x10\xb8\x8c\x30\x45\xa3\xd7\x2b\ +\xaa\xe5\x29\x88\x61\xf0\xab\x0b\x4e\xaf\x83\x46\x89\x08\xd7\x6a\ +\x22\x72\xed\x35\x3f\x78\xb3\x61\x57\xc6\xeb\xbd\x6d\x75\x5e\x62\ +\x5a\xb3\x05\x4d\x57\x72\x82\x2a\x47\xc8\x98\x8b\x50\x7c\xdb\x3c\ +\x54\x25\xc1\xd7\x2c\x61\xc3\x18\x62\x27\x4a\x9d\x7b\x41\x81\xb1\ +\xd2\xff\xa0\xc6\xb8\xa6\xd0\x63\x06\x06\xf8\xe6\x1a\x44\x6a\xd7\ +\xf9\x59\x0e\x16\x93\x24\x74\x15\x22\xc3\xdb\xf2\x76\x1b\xcf\x8c\ +\x5c\xd5\x55\x89\x42\xe4\x51\xc3\x37\x63\x3b\xa1\x5a\x5a\x91\x8c\ +\xfb\x5b\x75\x37\x10\xc5\xbd\x3c\x67\x02\xfe\xdb\xf8\xdd\x05\x36\ +\xca\x4d\x8c\x69\x3f\xe2\x80\x7d\x02\xd5\x0d\x1b\x08\xba\x2a\x91\ +\xb8\x6b\xe4\xa1\x97\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\xe4\xc9\ +\x7f\x47\x38\xb8\x81\x6e\x13\xf2\xa9\x15\xe4\x91\x1e\x42\xab\x07\ +\x7f\x70\x1d\xdc\x0a\xb8\xb7\xd4\x1f\x94\x19\xeb\x8f\xc8\xa3\xaa\ +\x0e\x85\xdc\x80\xd2\x59\x04\xbc\xa4\xaa\x5d\xbd\x2d\x35\x5a\x6f\ +\x4e\x85\xa2\xd8\x74\x82\x8e\x42\x48\xf3\x72\xa1\x5d\xa2\xa3\x8d\ +\x22\xc8\x7b\x97\x71\x8b\xaf\x0a\xaf\xbc\x68\xab\x00\x97\x78\xa7\ +\x0c\xe8\x12\xea\xe8\xd0\x6b\x0f\xb0\x7e\x29\x63\x11\x90\x87\xca\ +\x95\x46\xa5\x16\xb4\x34\xde\x25\x0a\x34\xe6\xb4\x22\x4e\x51\x74\ +\xcf\xd8\x38\x7a\x68\xf7\x0d\x8b\x09\x8a\xce\x8f\x21\x7a\xf6\xd6\ +\x8e\xcb\x0d\x34\x71\x9e\xb6\x01\xd1\xce\x5c\x2b\x44\xe7\x47\x8d\ +\x2f\xb2\xc0\x82\x65\x5c\xcc\xa0\x9d\xc8\xd4\x50\x53\xf6\xe4\x68\ +\xc4\x42\x6d\x5c\x64\x65\x0f\xee\x0b\x1d\xea\x90\x4c\xdf\xda\x39\ +\x31\x68\xec\x00\x17\x21\x16\x47\x95\xe6\x5e\x1b\x68\x24\x05\xde\ +\x35\x29\x16\x1d\x7a\xac\x32\xbd\x58\x21\xa0\x48\x8c\x0a\x88\xb6\ +\x84\x11\xa8\x6c\x78\xaa\x4c\x50\x17\x95\xaa\xa8\xe3\x95\x42\x59\ +\x1d\x15\x4e\xba\xea\xe8\xe0\x03\xd0\x8c\xcb\x20\xdc\x66\x8e\xed\ +\x2d\xb0\xc7\xd0\x89\xc4\xd6\x68\x0f\x7b\x7e\x5e\xb0\xd8\x0e\x7e\ +\x2a\x4d\x61\x8e\xcd\x43\xc5\xd8\x79\x1e\xfa\xeb\x64\xbc\xde\x83\ +\xa2\x6b\x23\x03\x4f\xb9\xc5\x75\x9f\x58\x12\xad\x1c\x84\xe7\x72\ +\xb2\x32\xb5\xc9\x95\xd2\x12\x84\x3e\x71\xb0\xd8\x36\x4f\xb1\x78\ +\xac\x25\x4e\x6d\x17\x95\xf0\xfa\x90\xcd\x6d\xb4\x30\xae\x83\xd9\ +\x2a\x54\x5b\x6d\xcc\x27\xa2\xc6\x83\x8f\x90\x3a\xff\xd1\x9a\xa8\ +\x3e\x48\x00\xb4\xc1\xd4\x81\x58\x0f\xf7\x17\x17\xf7\xea\x44\xde\ +\xae\x22\x36\xd5\x53\x10\x1e\x40\xe6\x44\xa2\xa3\x5a\x78\x37\x73\ +\xdf\x38\xc7\x71\x59\xa7\xb5\xf9\x14\x69\xa3\x3a\x23\x81\xfa\x50\ +\x43\xb9\x14\x08\x68\xa4\x51\xae\xa4\x75\x6c\xdb\x8d\x34\x0a\x36\ +\xd1\xd2\x56\x36\x1f\x73\xca\x03\x8c\xd5\xca\x7f\x09\x40\x2b\x02\ +\x8a\xda\x08\xe6\x33\x60\xc4\x8e\x36\x4a\x77\x73\x1c\x81\xd0\x5d\ +\xee\x52\xf9\x3c\x4b\x8b\x00\x65\x3a\xdf\xae\xef\x80\x72\x24\x58\ +\x58\xe5\x94\x32\xa1\xea\x43\xac\x4c\x5e\xd3\x34\x50\x3c\xe8\x23\ +\x08\x76\x37\x00\x1f\xe8\xdd\x77\xca\xf6\x10\x81\x01\xa9\xc7\xc0\ +\x14\xc4\x2e\x8e\x0f\x7d\x42\xe7\xa3\x0e\x68\x43\xb6\xfa\x44\xe2\ +\x0e\x91\x87\x5f\x22\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\xff\ +\x1d\xe1\xc1\x0d\xf4\x50\xc2\xeb\xee\x0e\x1e\x07\x78\x49\xe4\x0d\ +\x95\x09\x02\x30\x02\x10\xd7\x91\x18\xbc\x7c\x62\x51\xc5\x48\x58\ +\x3b\x8d\x90\xae\x60\x15\x74\x02\x90\x1e\x1f\xe5\x60\x0a\xe2\x4f\ +\x99\x2b\xaa\x53\x6c\x13\x10\x06\xef\x2e\x51\x7d\xbb\x51\x95\xb7\ +\xe8\x32\xe8\x81\xbe\x46\x0b\xc6\xef\x37\x55\xe8\x2a\x3e\xfe\x72\ +\x46\x08\x92\xa8\x3b\xa1\x1a\x37\xf1\x34\x0b\xd5\xa1\xee\x2f\x18\ +\x08\xcc\x16\x3e\xbe\x18\xe0\x80\x8a\x22\x0d\xc2\x22\x44\x20\xa7\ +\x84\x52\xd4\xf4\x02\x09\x6d\x26\x2a\x53\x1e\x22\x5a\xc4\x06\x55\ +\x50\xcd\x08\x57\x1b\x0f\x9d\xf7\xad\x7d\x10\xc4\x07\x54\x00\x7e\ +\x36\x51\x74\x3a\x2e\x2a\xeb\x9a\x11\x82\x74\xb7\xf0\xd1\x41\x04\ +\xde\xae\x01\x26\x0c\x1b\xe4\xcc\x01\xb5\xb2\x8a\xca\x78\xdc\xe0\ +\x54\x7d\xcd\x48\x2a\x8e\x93\xb1\x15\x74\xec\x22\xc3\x86\x5c\x15\ +\x23\xb6\x31\xa0\x85\xea\x43\x24\x3d\xa1\xe7\xe2\x50\xc6\xd3\x21\ +\x17\x0c\x6a\x44\x56\xda\x46\x45\x20\x6b\x80\xa3\x01\x3a\xdf\x76\ +\xba\x1d\x90\xc8\xef\x19\xde\xd4\x54\x4a\x89\xc4\x21\x21\x9e\x22\ +\xbd\xe3\x36\x32\x30\x30\x43\x92\xed\x01\xee\x70\xbb\x44\x85\x8f\ +\xed\x18\x30\x96\x72\x21\xab\xd7\x6b\x03\xb9\x5a\xc4\x20\x83\x96\ +\x1d\x84\x55\x0b\x93\xa3\xc2\x03\x0f\x09\xd1\xcd\x47\x04\xa0\x29\ +\x33\xda\xed\xe1\x4d\xd2\x79\xa8\xa3\xde\x28\xa6\x04\xca\x82\x84\ +\x14\x7b\xed\x44\xb8\xdc\xdb\xed\xc5\xd4\x07\x59\x10\x55\x29\x04\ +\x8d\x9d\x22\xfa\x05\x84\xf8\x9e\x90\x86\x30\xb9\x1b\xab\xaa\xc7\ +\xdf\xbc\x6a\xf7\x22\xdf\xc8\x77\x1d\xba\x26\x3c\x72\x13\xdf\xe6\ +\x09\x5d\x58\x14\x22\x31\xb3\x1b\xf9\x90\x95\xa2\x4e\x7a\xc4\xa2\ +\x67\xe2\x7c\x14\x2a\x0d\x39\xf2\x67\x0d\x81\xc4\x50\xd3\x68\xeb\ +\x08\x32\x1a\xc3\x0c\x32\x63\x5c\xaf\x29\xe8\xe6\xf3\x3b\x01\xa9\ +\xae\x60\xdd\xcf\x4b\x1c\xd1\x7e\x55\x2b\xc1\x8c\x40\xf6\x9a\xb1\ +\x3c\x2b\x3a\xae\x1f\xb3\x43\x9d\x7b\xde\x06\x08\xe1\x79\x1c\x3d\ +\x6c\x30\xda\x71\xf5\xfd\x0f\x8c\xd1\x89\xc4\x01\x20\x0f\xc7\x44\ +\x62\x77\xc8\x07\x6a\x89\xc4\x11\x23\x4f\xfe\x7b\xc0\xd0\xa0\x63\ +\x66\x73\xef\x3b\x23\x26\xe0\x09\xc5\xc4\xa6\xa6\x5f\xf7\x9e\xfc\ +\x6e\xc0\x9b\x23\xb9\xd5\x97\xee\xe0\x7f\x7f\x55\x34\xdd\x1b\x1f\ +\x89\xc6\xb0\xb2\x20\xec\x81\x49\x1c\x52\xe7\x0d\xd0\x53\x5d\xcd\ +\xd4\x4f\xa1\x4e\xdd\x15\xfb\xa6\x0e\x68\x2f\xe9\xbe\x68\xa2\xf1\ +\x0c\x91\x20\x2d\x5a\x0f\x55\xa1\x46\x4d\xb8\x0e\x94\x4b\x41\x3f\ +\x73\x66\xe2\xda\x92\xe6\x11\x82\x0a\xaf\x2e\x2c\x15\x42\xf3\xdf\ +\xeb\x43\x64\x62\x7c\xd3\x4f\x23\x48\x69\xb6\xe4\x19\xaa\xbf\x90\ +\xc0\x88\x21\xdc\x28\xbc\x6d\x01\xd2\x43\x6c\x7d\xf4\x43\x55\x07\ +\x32\x6c\xad\x56\x8e\xaa\x91\x62\x21\x45\x58\x2b\xe9\x2f\x56\x08\ +\x5d\x97\x01\xcd\x89\x7e\xe0\x05\xdd\xb7\xbc\x04\x42\x47\x57\xc2\ +\x79\x53\xb0\xec\x8a\x1e\x82\x45\x07\x67\x3d\x61\x80\xb1\x6a\x06\ +\x5a\x46\x37\x57\x39\x2c\x47\x9a\x74\x85\x22\x90\xce\xa8\x89\x29\ +\x6a\xd5\x33\x54\xa8\x61\x20\x1b\x9b\x96\x77\x88\xb8\x37\x6e\x15\ +\x92\x38\x7c\x20\x6f\xfb\x70\x54\x88\x03\xe0\x83\x14\x07\x24\x0e\ +\x1c\xe4\x91\x77\x8c\xc9\xf7\x80\x3b\x6a\x26\x91\xd8\x09\xda\x53\ +\x6b\x0c\xbd\x8b\x49\x00\xfd\xa4\x18\xd3\x27\xfa\x18\x1a\xe7\xf6\ +\xe3\xa9\x19\xca\x7a\x85\x97\x0a\x54\x54\x57\xb7\xfe\xc5\xbe\xb2\ +\xbc\x5e\xd3\x08\x32\x0b\x40\x78\xd4\xe8\xe7\xdf\x6c\x83\x03\x88\ +\x4e\xa7\x72\xe3\x6f\xf4\x41\xe5\xd1\x06\xe5\x0d\x33\x41\x3b\x87\ +\x73\xa8\xab\x94\xee\x14\xed\x3c\x1d\x83\x67\xae\xa6\x75\x46\x52\ +\xa1\xd7\xe7\x10\x8b\x08\x41\x50\xe1\xda\x2a\x6d\x90\x84\xcc\xf8\ +\x8a\x6a\x6e\xd1\xcd\xb0\xbb\xf6\x07\xdb\x80\xae\x0b\x34\xa6\x7d\ +\xf4\xef\x10\x18\x0b\xc5\xd8\x3d\x1b\x87\x09\xa9\x56\x9a\xd3\x09\ +\xe6\x4c\x56\x60\x36\x15\xe0\x5d\xd9\xd7\xd5\x76\xa2\xd8\x6f\x0a\ +\x28\xeb\x14\xda\x9e\x27\xef\xb5\x6c\x98\xd8\x3a\x4b\x54\x42\x2d\ +\x34\x41\xf2\x37\x21\x51\x5d\xd5\xeb\x83\x82\xaa\x6a\xd0\xc2\x7d\ +\xdd\x49\xed\x7a\xa9\x38\x20\x68\x62\x13\x51\xde\xd2\x11\xd1\x37\ +\xea\x86\x62\x3e\x78\x34\x9d\x6f\xc7\xa2\x45\x3b\x36\xe0\xd7\xf9\ +\x24\x12\x77\x84\x3c\x14\x13\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\ +\x3c\xf9\xef\x01\x43\x83\xee\x33\x9b\x7b\xdd\x21\x6d\xe3\xf1\x0e\ +\xc0\x75\x63\xf4\x23\x82\xdd\xa4\x6a\x39\x00\xbb\x64\xa2\x24\xc5\ +\x95\x98\x9b\xe3\x30\xec\x2f\x76\x43\xf6\x10\x0f\xc4\x30\xc5\x4d\ +\x4d\xb7\x22\x71\x43\xc9\x4b\x3a\x6f\xc0\x83\x82\xac\xf1\x8d\xfd\ +\x5a\xc0\xbe\xd7\x19\x17\x58\x20\x6f\x2a\xda\xdd\xf0\x31\xc0\x50\ +\x36\x9a\x07\x27\xff\x1f\x6b\x15\x27\x62\x53\x63\xf8\xf2\xc8\x38\ +\x7c\xec\x7c\xfd\x82\x10\x27\x78\x2a\xdf\x29\x60\xcb\x07\x78\xa0\ +\x11\x98\xb4\xe9\x4d\x4e\x40\xc7\x63\x41\x75\xa4\x7a\x0b\x18\x9a\ +\x23\x25\x2e\x07\xaf\x02\x79\xc3\xcf\xed\x8d\xc6\x37\xd1\xd4\xa3\ +\x0f\x88\xc4\x84\x80\x6b\xb5\x21\x33\x08\xda\x0c\xea\x20\x47\x7b\ +\x52\x41\xdf\xcb\x39\x22\xe6\x17\x40\x91\xca\x95\x6c\x6c\x2a\xdb\ +\xc9\x3b\x91\x65\x6e\x02\x1f\x1f\x74\xad\x7d\xe8\xd8\xa2\xfd\x0b\ +\x6a\xf8\x44\x40\xad\xb1\xb4\xac\x81\x13\x82\x38\x76\x37\x46\x4e\ +\x36\xee\x01\x72\xe3\x98\x63\x33\x03\x73\x9b\x4b\x24\x1e\x1b\x78\ +\xd1\x1a\x40\xfc\x6c\x6b\x6d\xfc\x7c\x49\x0c\xa3\xfd\x1c\x19\xfb\ +\x6c\x69\xe5\x36\xa6\x3a\xdc\x3e\x43\x18\x80\xed\x8f\x5a\x82\x60\ +\x1c\xa3\x49\x19\xe1\x32\xee\x33\x48\x5d\x1e\xd1\xd9\x0c\x2f\xaf\ +\xb8\x4c\x0c\x7c\x22\x22\x80\x29\x0f\x13\xa9\x29\xed\x0a\x6d\xaf\ +\x42\xe7\x1d\x7d\xdc\x10\x0c\x00\x36\x31\x50\xe7\xa3\xf1\x9a\x99\ +\x09\x18\xe6\x27\x04\x93\x73\xa1\xa1\x73\x17\x28\xc3\x38\x41\x0e\ +\xeb\x9e\x99\x80\x32\x29\x86\xe7\x41\x2a\x6d\x7d\x08\x0a\x45\xef\ +\xe7\x12\xf8\x5e\x88\x7e\x3c\x35\x43\xd1\xc9\x95\x92\x12\xc4\x0d\ +\xff\x9b\x68\x73\xbc\xe9\x62\xb1\x26\xc0\x18\x6e\xd3\x74\xac\x7b\ +\xa0\x36\x18\x59\x0b\xd8\xb8\x5f\x63\xa6\x36\x52\x06\x59\x0f\x4d\ +\x7b\x89\x2d\xc1\x7d\xe0\x83\xd9\x0c\xf6\xd8\xd8\x03\xbe\xbf\xe2\ +\x7e\x98\xb2\x4f\x24\xee\x10\x79\x28\x26\x12\xbb\x43\x3e\x50\x4b\ +\x24\x8e\x18\x79\xf2\xdf\x03\xda\xc9\xb5\x4f\xba\x81\xa9\x1d\xd2\ +\x4e\xcc\xf7\x86\xbb\x68\x24\x76\xe6\xce\x3a\x76\x4b\xd8\x4e\x92\ +\xca\x28\x49\x5b\x17\x55\xae\xcb\x42\xc8\xf6\xa1\x90\x6c\x4d\xb7\ +\x7a\xfa\x41\xa8\x83\x5f\x95\xdd\x1e\x6c\xef\x6f\x8c\x9b\xb8\x1d\ +\xfa\xfe\x04\xe9\x4e\x30\xea\x3a\x8a\x11\x8f\x01\xf1\xb0\xa5\x48\ +\xeb\x58\xa0\x50\x46\x73\x94\xc2\xfe\xea\x97\x2c\x4a\xae\xb6\xc8\ +\x58\x4a\x45\x1b\x1b\x04\xab\xcc\x8e\x26\x04\x4d\x34\x64\xd5\x01\ +\x18\x2d\x7b\xae\xd4\x35\x4f\x34\x86\x0e\x18\x31\x17\xf7\xb0\xaa\ +\xef\x3c\x0b\xcc\x47\x1c\xf1\xa0\xd0\x18\xed\x0f\xa5\xe4\x58\xb6\ +\x70\x3f\xc2\x68\x54\xde\x7c\xf5\x62\x30\x8b\x46\x61\x17\x19\xb0\ +\x26\x0d\x6e\x63\xf0\x60\x15\x7d\x5f\xa2\xba\x98\x9c\x55\xb0\x19\ +\xd4\x1b\x6a\x38\x17\xaa\xe0\x46\x4e\x82\xb6\xe5\x98\x9a\xdb\xa3\ +\xd2\xe7\x7e\x52\xf4\x0e\xec\x84\x22\x8e\x20\xe0\x63\xd4\xca\xef\ +\x00\xf7\xd0\x64\x22\x71\x30\xf0\x0f\xb4\xfa\x39\x45\xc6\x48\xa1\ +\xf3\xf3\xeb\x6e\x11\x3f\x8f\x7a\x43\x8f\x6f\xc6\x77\x4a\xce\xad\ +\x44\xdf\xed\xad\x60\x4c\x32\x3a\xdb\x3c\xac\xb7\x2f\xc3\xdc\xac\ +\x22\x48\xd4\x61\xc4\x46\x5a\xb5\x89\x4a\xcd\xa1\x26\xc2\x62\x10\ +\xf5\x9b\xfc\x30\x19\x37\x0b\x70\xa3\xae\x97\x15\xde\x68\x9d\x54\ +\x39\x0d\x05\x10\xe9\x06\x9b\x1c\xd3\x35\x8c\x14\x03\x21\x55\x35\ +\xd2\x0e\xd1\xe9\xda\x87\x5d\xd4\x85\x9c\x6b\x69\xe7\x5d\xfb\x07\ +\x3b\x1d\x20\x9f\xe8\xdf\x00\xfa\xb1\xbc\xff\x13\xfe\x54\x49\x61\ +\x63\xd5\xf7\x1f\xf6\x53\x93\xf0\x07\x61\x02\xb5\x94\x32\xb8\xf8\ +\xf0\x0f\x47\x19\x01\x8c\x3d\xed\xc7\x0c\x1f\x94\xb1\xbe\xc6\x71\ +\xb0\xe3\x64\x90\x76\x50\xd4\x06\x13\x7d\x30\xb9\x01\xc6\x09\x06\ +\x53\xb6\x89\xc4\x1d\x22\x0f\xc5\x44\x62\x77\xc8\x07\x6a\x89\xc4\ +\x11\x23\x4f\xfe\x03\x84\xcf\xbf\x07\xe6\xed\xc4\x9d\xec\x34\x6f\ +\x64\x28\x91\x4d\x31\x16\xa3\x9d\xce\xdd\x49\xc7\x76\x0b\xb9\xd9\ +\xe2\x5a\x88\x5c\x46\x75\xd1\x5f\x7b\x15\x7b\x86\x2b\x2c\x7a\x86\ +\xcd\x47\xa2\xed\xf9\x5c\x20\x56\x77\xaf\xc7\x82\xf0\xb8\x1d\xb4\ +\x15\x5f\x28\x5a\x07\xb5\x76\xca\x10\xfd\x6e\x36\x30\x80\x36\x8a\ +\x94\x03\x3e\xfe\xe0\xb1\xda\xc4\xe0\x03\xf6\x84\x86\x35\xbd\xfb\ +\x00\x42\xc7\x1b\xde\x1a\x40\x64\x42\x62\xd1\xa9\x8a\x2a\x74\x4c\ +\xa2\x57\x0f\x35\x04\x2c\x6e\x38\x0f\xe3\x46\x30\x3c\x4c\x93\xd2\ +\xbf\x91\xc6\x34\x34\x96\x46\xad\x8d\x58\xad\x20\xd7\xeb\x8f\xc0\ +\x58\xf5\xbb\xb9\x8c\xd4\x09\xd4\xc2\x05\x37\xc4\x20\xaa\x30\xa2\ +\xf3\xe9\xc3\x64\xe6\xe6\x19\x03\x71\x41\x88\x54\x1d\x2b\xe9\x77\ +\x6f\xff\x76\xb6\xd1\x3f\xc2\x43\x59\x25\xfb\x2c\x78\x77\x2b\x8b\ +\x89\x1e\x7c\xb4\x76\x09\xdd\x7f\x5b\x21\xee\xa6\x7d\xa4\x96\x48\ +\x3c\x24\xb4\xa7\x12\x2f\xc2\xf1\x24\x01\x5a\x7e\x08\x66\x83\xcf\ +\x44\x9a\xae\xb3\x4f\x0c\x22\xee\x0b\x87\x8d\xe7\x8a\x0f\x8f\x28\ +\x51\xd4\x21\x1e\x1e\x6b\x5f\x32\x71\x17\xe5\xa2\x2d\x68\x68\xed\ +\x2a\x1f\x55\x7d\xc6\x30\x24\x13\x74\x61\x14\x32\x97\xb1\xa6\x47\ +\x30\xa9\xdc\x10\xfd\xde\x29\xe2\x20\x01\x6b\xda\xab\x79\xcb\x06\ +\xba\x57\xc7\xf8\x42\x3b\xdb\xa0\x37\xdb\xe9\xd9\x44\x06\xb4\x36\ +\x56\xed\xc3\x7c\xa4\x8f\x96\x1f\x90\x50\x60\xfe\x1a\xb6\x8f\xaa\ +\x17\xc4\x63\xa1\x37\xcf\x71\xc7\x81\xf9\x1a\xe0\x93\x1e\x9a\xf5\ +\x1b\x51\x55\xe7\x05\xad\x3e\x56\x13\x59\x0c\xd6\x77\xeb\x00\x9b\ +\x31\xdd\x31\xa1\x8e\xa3\x8d\xdd\xd0\xc9\x53\xf7\x83\xe9\x9c\x6f\ +\x61\x21\x6e\xc4\x18\xb3\x8f\x88\x2e\x33\xcc\x13\x89\xbb\x42\x1e\ +\x8e\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x0f\x0c\xf7\ +\xb2\xc3\xf6\xd9\x68\x3b\xa5\x7b\x80\x47\xa4\xdc\x54\xc5\x5e\x74\ +\x3d\x00\xa5\x1a\x96\x76\xa9\x45\xe9\x36\xd5\xb6\x12\x37\x47\xe4\ +\x06\x60\x10\xec\x89\x21\x19\x01\xa1\x47\xec\x0c\xa2\x74\x10\x6e\ +\xd0\x8b\xa9\x4c\xe7\x3b\xda\x68\x0f\xb4\xa8\x66\x46\x34\x3c\x4a\ +\x46\x13\x82\xf7\xa8\x52\x57\x13\xa2\x7b\x94\xd4\xc9\x9d\x52\x79\ +\xcf\xc9\x45\x14\x98\xdf\xd8\x54\x87\x62\xb7\x8b\x36\xc2\xd7\xbf\ +\x78\x6e\x7c\x2b\x5b\x1b\xea\x48\xd7\x91\x57\x7f\xf4\x69\xac\xf9\ +\x1b\x4b\x2e\x31\x0e\xe9\xa0\x17\x52\x45\x78\x70\x45\xc9\x4d\x13\ +\xbf\xc9\x1f\x6a\x2f\xd8\x29\x20\x70\xc3\x1b\xca\x0a\x0d\xe9\xb6\ +\x6a\x37\x14\xbe\x83\x6a\xfb\x7f\x89\xad\xd0\x50\xba\x44\xd4\xc5\ +\x93\x7a\x3a\xe0\x91\x22\x8e\x79\x1c\xa0\x9b\xe3\x3a\x0c\xf7\xbd\ +\x03\xdc\x51\x33\x89\xc4\x83\xc4\x8d\x0b\x80\x9d\x30\x3c\xb5\xa7\ +\x3e\xfc\x82\x1d\x40\xd3\x29\xfb\xc4\x2c\x70\x3c\x39\xf8\xfe\x26\ +\x06\x47\x96\xfb\xc7\x6c\x67\xa1\xb1\x8b\xec\x16\xfb\x51\x4d\xa7\ +\x6c\x5d\xd7\x0b\xbe\x25\x3c\xc6\x00\x26\xc3\xc7\x1c\x86\x0c\xa6\ +\xe3\x86\x2f\x97\x09\x86\x6d\x7b\x26\xd1\x69\x86\xef\x14\xe0\xc1\ +\x10\x08\xe5\xb1\x50\x37\xd0\xb9\x9a\x3e\x28\xed\xb7\xa2\x1c\x4b\ +\xe6\xa4\xc0\xac\x55\x77\x9b\x7a\xf4\xa6\x43\x22\x42\x24\xcc\x91\ +\x6e\x3c\x30\xeb\x42\xa8\xcc\xf9\x21\x3d\x10\xe3\x02\x16\x6e\x14\ +\xad\xff\x63\x85\x8f\x5d\xdd\xb1\x0d\x7c\x87\xb8\xae\xb7\x83\x0c\ +\x54\x31\x88\x33\x1d\x86\xec\x5b\xb8\xcb\x0c\xd3\x44\xe2\x2e\x91\ +\x87\x64\x22\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\xff\x03\xc7\ +\x9d\xed\x40\x34\xe4\xd3\xaf\x39\x8d\x0e\xdc\x7c\x54\x6c\x12\xe7\ +\x11\xc1\x6e\xbe\xd6\x4f\x62\x6d\x5c\x42\xe5\x5b\x1c\xd5\xde\x28\ +\xba\x10\x88\x46\x13\x70\xb3\xa1\x1a\x88\x74\x87\x21\x69\x5c\x60\ +\xd0\x52\x79\x2e\x17\x60\x92\x41\x99\x83\x9c\x3b\xac\x9b\x7e\xdc\ +\x7a\x7a\xe2\x0d\x35\x08\x61\x35\xfb\x11\xa0\x7d\xe6\xa9\x6c\x07\ +\x8b\x19\x74\xbc\x67\x07\xe1\xb6\xb1\xd9\xc1\x18\x8a\xa1\x87\x4e\ +\x0e\xb8\xa8\x9e\x14\x44\xbd\xb0\xfe\x5d\x30\x0f\x41\x5b\xfb\x8b\ +\xfb\xc9\xa9\x1d\xed\xcd\x09\x60\x3f\x03\x3f\x81\x36\x2a\xbc\xdc\ +\xd3\x7f\x86\x0a\x12\xe4\x52\x6d\x6f\xbd\x1f\x8f\x11\x63\xfb\x03\ +\x63\x09\x9d\xd7\x07\x82\x75\xa9\x1c\x58\xba\x89\xc4\x9d\x63\xe8\ +\x63\x90\xa7\xf2\xa8\x42\xaa\x91\x93\xa6\xe7\x63\xb6\x89\xcd\xd1\ +\x1b\xde\xa1\xb1\xde\x60\x5c\x65\x9f\xf8\x9c\xc7\xbd\xa6\xbd\x5d\ +\xeb\xed\xb6\x7c\x00\xf6\x77\x14\x4f\x07\x1e\xc1\x70\x7c\xcb\xfa\ +\x66\x1a\x11\xbd\xe3\x30\x18\x4c\xe6\x31\xdc\x5e\x45\x8d\x09\xbb\ +\x11\x9b\x09\xdc\x8c\x1e\xe6\x1c\x86\xb5\x51\x83\x01\xc8\x68\xcf\ +\x53\x8c\x73\x9a\x81\x28\x63\x81\xdb\xae\xd4\xf3\x34\x08\xa7\x7c\ +\xc7\x00\x9f\x75\x7a\x47\xb4\x5b\xe7\x77\x4c\xc0\xf1\x56\xf7\x47\ +\x84\x0d\x52\xfb\x59\xdb\x33\x05\xd3\xe8\x1b\x76\x10\x1e\x63\x8e\ +\x6d\x22\x71\x87\xc8\x43\x32\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\ +\xc8\x93\x7f\x87\x18\x98\x6f\xef\x1d\x73\x76\x20\x72\xda\xfb\x8e\ +\x3e\xa4\x23\xe9\x4e\x3a\xbc\x7f\xf0\x58\xea\x0e\xa8\xf6\xd0\x1a\ +\x3e\xdc\x44\xaa\xef\xba\xf5\x10\x05\x71\x98\x9a\x40\x37\xe3\x8e\ +\x60\xc4\x9f\x68\x75\x37\x92\x71\x44\x43\xa1\x5b\x3b\x13\x57\xb4\ +\x7c\x85\x0a\x75\xf9\x43\x17\xb4\x6a\x5a\xad\xbf\xa3\xca\xd5\xda\ +\xa7\x43\xa3\xf7\xdd\x37\x80\x07\x47\xa8\xc5\x58\xdf\xa3\xe0\x03\ +\x26\x18\x88\x3d\x5c\x8c\xac\x35\x50\xfd\xcd\xa6\xd3\x18\xe8\x60\ +\xb2\xf0\x97\xd0\xed\x82\x4f\xa7\x31\xb8\xfa\x86\x22\x40\x6c\xfa\ +\x51\x02\xa2\x22\xc4\xa0\x18\xfd\x22\x27\xe5\x54\xfc\xc4\x16\xc0\ +\x08\xfb\xa0\xfa\x4e\x00\xef\xf2\xb8\x63\xee\x11\x07\x92\x46\x22\ +\x71\xf0\xe0\xe9\x1c\xcf\xdd\x78\x3e\xb7\x10\xf9\xd0\xb9\x35\x64\ +\x3a\x2c\x4c\xdc\x35\xe6\x7c\x16\x8e\xec\x3f\x17\x57\x75\xfc\x69\ +\x44\x92\xc6\xb7\x93\x13\x4e\x58\x40\x74\x72\x58\x2a\xa7\x94\x97\ +\xfd\xb9\x8d\x11\x9c\xc4\x80\x86\x92\x12\x85\x7f\x03\x0c\x70\xb9\ +\xb1\x50\x69\x7a\x12\x35\xf8\x78\x4b\x63\xa0\x8b\xc5\x50\xf4\xed\ +\xd5\x3f\x22\xc6\xea\x66\x3a\xad\xd5\x28\x66\x1b\xae\xc1\x78\x97\ +\xa6\x31\xd5\x9d\x6d\x81\x98\x88\xe3\x35\x10\xdb\xd9\x45\x1b\x87\ +\x88\xa1\x7e\xcf\xc1\x2c\x7b\x31\x8a\x63\x08\xf4\x7c\xac\xe1\x18\ +\xab\xb5\x4f\x24\x1e\x10\xf2\xf0\x4d\x24\x76\x87\x7c\xa0\x96\x48\ +\x1c\x31\xf2\xe4\x7f\xe0\xd8\x64\x07\xc6\x1b\x81\xbd\x60\x4e\xf0\ +\xbd\x27\x21\xf0\x69\xe2\x91\x1e\xdd\x5c\x1c\xe9\x46\xa1\x0f\x8c\ +\x49\xa7\xa9\x0f\x90\x40\x93\xd2\x9a\xb4\x0b\xe6\x22\x06\x01\x22\ +\xef\x4d\x6e\x1a\x73\x63\xac\x69\x00\xea\x36\xaf\x51\x97\x68\xb4\ +\x2d\x24\x86\xbc\x75\x97\xe8\x83\xa7\x36\xda\x50\xf3\xb0\xe1\xb7\ +\xcd\xe2\x82\xd6\x18\x6c\x7f\xf7\x16\xd9\x48\x4a\xe1\x3a\x01\xd4\ +\x14\x23\xac\x56\x1a\x59\x8a\xba\x88\x95\xd3\xc1\x03\x01\xf6\x87\ +\xef\x0b\xa7\x6d\x1f\x1d\x2a\x0e\x3c\xbd\x44\xe2\x4e\x10\x3f\x42\ +\xc7\xce\x09\xda\xb4\xe7\x37\x20\xb4\xfb\x6c\x7a\xca\xdf\xf8\xec\ +\x8e\x71\x81\x96\x4f\xec\x1c\x63\xfb\x6b\x68\xd7\x6c\x8a\x26\xc6\ +\xba\x3d\xe9\x4d\xb4\x76\x63\xa9\x0c\xa6\x04\x61\x70\x70\xb2\x67\ +\x3b\xe8\x78\xa0\x58\x37\x68\x43\xf0\xfe\x6d\xe3\xbb\x4f\x34\xfb\ +\xe6\x28\xb0\xd7\x7d\x21\xc1\xdb\x63\xb9\xb6\x03\x22\xe8\x5d\xde\ +\xda\x27\x12\x0f\x08\x79\xf8\x26\x12\xbb\x43\x3e\x50\x4b\x24\x8e\ +\x18\x79\xf2\x3f\x70\x1c\xdc\x0e\xdc\x24\x21\x4c\xe7\x76\xd9\x81\ +\x38\x3d\xcc\x23\x7b\x36\x38\x6c\xfd\xa9\x75\x7f\x24\xf5\x2f\x90\ +\xdb\x11\x05\xef\x76\x43\xba\x5b\xc1\x83\xc7\x46\x86\xe0\x0d\x99\ +\x8d\xbb\x38\x62\x7e\x35\x4c\x64\x9c\x0e\x71\x30\x23\xaa\xb6\x77\ +\x00\x6f\x1a\xe0\x33\x34\xa3\x7b\x79\x6d\x03\x06\xea\xf7\xc4\xb9\ +\x1a\x36\xa7\x7f\x07\x82\xa1\x9d\x1d\xf7\x56\xd4\xf7\xf7\xe9\x4d\ +\xb8\xfd\x0e\x10\xc3\xac\x3b\x54\x76\xd4\x64\x22\xf1\xe0\xc1\xcf\ +\x55\x39\x21\xc6\xce\x89\xc1\xcf\xdd\x09\xfb\x21\xc4\xd3\x7c\xf4\ +\xdc\x74\xa3\x51\x83\xbb\xc1\x01\xa4\xf0\x60\xb1\xc9\x31\x71\x5f\ +\x18\xdb\xb7\xfb\xdc\xef\xed\xb8\x6c\xd3\x8e\xc7\x70\xdf\x36\xdf\ +\xb1\xfc\xa3\x5f\xb4\x71\x79\x84\xdb\x00\x43\xb1\x87\x7c\x80\x18\ +\x33\xfa\x1d\x3b\xe2\xb8\xb5\x63\x84\x09\xb4\x4f\xe0\x37\x1a\x33\ +\x38\x74\x15\x31\xe4\xdf\xc6\x8d\xf6\x89\xc4\x03\x43\x1e\xbe\x89\ +\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x8f\x08\x63\x3b\x33\ +\xde\x04\xb4\x37\x04\x7b\xc3\x50\x23\x6d\x22\x40\x6b\x37\x24\x1f\ +\x4b\x7a\x28\x9e\x63\xc8\x3e\x71\x2b\xf4\x86\x78\x7c\xec\xdb\x3d\ +\x31\x0c\xf1\xd5\x37\x1d\xaa\x8f\xcb\x06\x00\xf9\xa0\xce\x84\xa8\ +\x3c\xab\x5e\x0e\x2e\x74\xb4\x3c\x30\xc7\xa6\x81\x9b\xf8\x3d\xfc\ +\x24\xc4\x06\xf6\x0b\xd9\xf8\x33\x49\x03\xf6\x8c\x03\x62\x5d\xac\ +\xc4\x23\x03\x0e\x08\x47\xdc\xf9\x51\x7e\x0f\x68\x9b\x6f\x8f\xcb\ +\x7b\x4e\x2f\x91\x78\x90\xa8\xe7\x91\x13\x76\x22\x6d\x7a\xbe\xb5\ +\xfa\x41\xcc\x32\x4a\x24\x0e\x0f\x38\xde\xd7\x1d\xbe\x6e\x13\xcf\ +\x8d\xbb\x38\xe4\xd7\xe5\xe6\xf9\x6c\x92\xcb\x26\x7d\xd8\x26\xfe\ +\x43\xc4\xba\x71\x1e\x42\xf8\x55\x06\xa2\xfa\x4f\x04\x6a\x7d\xc6\ +\x10\x43\xcc\x74\x49\x24\x0e\x15\x79\x08\x27\x12\xbb\x43\x3e\x50\ +\x4b\x24\x8e\x18\x79\xf2\x3f\x42\x8c\xed\xd4\x38\x7b\x72\x1b\x97\ +\x6d\x74\x20\xc0\x78\xdd\x54\x6c\x28\x20\x7c\x5a\xf9\x58\x9c\x39\ +\x09\xb5\xf1\xb6\xea\x4c\xe2\x50\xd1\x3b\x34\x3a\x66\xe8\x88\xd1\ +\x3d\x8e\xb2\x3b\x26\xf4\x3f\xa9\x01\x76\x3c\x48\xd5\xbb\x6f\x16\ +\xde\x34\xc1\x6b\x18\x53\xba\x18\xd2\x69\xda\x93\xd1\xff\xf9\xc1\ +\xff\x8e\x32\x14\xa4\xe7\x90\x38\x5e\xc4\xa3\x28\x1e\x0c\x51\x3e\ +\x06\xd8\xcf\xb1\x9b\x89\xa1\x50\xed\xf1\xb9\xc3\xe6\x12\x89\xa3\ +\x03\xcf\x27\x3f\xa9\xe4\x64\x1a\x3b\x9f\x82\xc9\x0d\xf0\xd6\xbd\ +\x51\x80\x8d\x3e\xd5\x26\xda\xba\xc1\x04\x62\x9c\x87\x8c\x43\xec\ +\x87\xef\x06\xc0\x73\x8b\x32\x47\x9b\xf7\x90\xcd\x1c\xdc\xb6\xff\ +\x43\xf9\x02\x53\xf9\xc0\xae\xd5\x0f\xf9\xce\x8d\x07\xb8\xed\x3a\ +\xbb\x88\x18\xff\x36\x40\x9b\x73\x72\x6d\x73\xdc\xa4\xfd\x4d\x7c\ +\x62\xfb\xb0\x6f\xf3\x1b\x43\xeb\x77\xc8\x98\xdb\x27\x80\x13\x7b\ +\x1f\x88\x01\x8c\x2e\x73\x8a\x7d\xeb\x32\x11\x86\x68\xf5\xeb\xec\ +\x13\x89\x03\x45\x1e\xb6\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\ +\x9e\xfc\x8f\x14\x3e\xc9\x8f\x35\x30\x36\x83\x9a\x3a\x10\xa2\xff\ +\x3a\x0c\xda\xae\x6b\x7c\x08\x31\xc8\xdc\x04\x3c\xfe\xdc\x64\x13\ +\x47\x8d\x78\xb8\x8c\x1d\x3a\x73\xff\x72\xb5\x42\x02\xe4\xe1\x77\ +\x44\x98\xfb\xd9\x34\x05\x8f\x11\x8f\xb5\x18\x73\xd3\x63\x70\x0b\ +\xac\x6b\xa2\x4d\x2f\x91\x48\xdc\x2d\xfc\x1c\x9c\x3a\x17\xa3\xcd\ +\x24\xd6\x1a\x24\x1e\x02\xc6\xf6\xf5\xac\x63\xe0\x0e\xb0\xcf\x3c\ +\x3c\x36\x6a\xe0\xbe\xfa\xbb\xeb\xf6\xe7\x8e\xd9\x7d\xf7\xfb\x10\ +\x30\x67\x7e\x5e\xc7\xc7\x09\xf3\x99\xe1\x9a\x48\x3c\x66\xe4\x29\ +\x90\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\xe4\xc9\x9f\xb8\x9b\x83\ +\x00\x8d\x60\xfa\xe6\xf5\x1c\x6c\x93\x98\xb7\x31\x07\x31\x8f\x3b\ +\x19\x84\x44\x22\xf1\x68\xb1\xc9\x67\xcf\x18\xda\xcf\xa4\xb9\x9f\ +\x95\x5b\x62\x2a\xbc\x77\xc5\xbb\xb5\xe7\x54\x12\x89\xc4\x08\x86\ +\x3e\x56\x86\xce\x47\x3f\x4f\x87\xec\xa7\x95\xc3\xd8\xd0\x3c\x71\ +\x20\xf0\x63\xe3\x58\xf6\xdd\x7d\x1f\xa7\x77\xd5\x7e\xdb\xce\xb1\ +\xed\xe7\x88\x8d\x7e\xa6\x11\x85\x0f\x9e\xd4\xd1\xd5\x55\x89\xc4\ +\x91\x21\x0f\xfb\x44\x62\x77\xc8\x07\x6a\x89\xc4\x11\x23\x4f\xfe\ +\x44\x0f\xf1\xbe\xc3\x31\x34\xeb\xba\xd5\x81\xe3\x8d\x38\xc6\x1a\ +\x9b\xdb\x48\x4c\x78\x9d\xff\x98\xad\x63\x6e\x9b\x89\x44\xe2\x38\ +\xe1\x9f\x1b\xf1\xb3\x62\x48\xd6\x22\x7e\xf6\x0c\xa1\xfd\x3c\x82\ +\xed\xd0\x67\xd4\x0e\x31\x16\xde\x9b\xde\x65\x0a\x77\xd0\x9d\x44\ +\xe2\xe8\x11\x3f\x62\xfc\x1c\x1e\xc4\x80\xc2\xcf\xcf\x51\x9f\xc4\ +\x83\xc0\xe4\x7e\x4f\x3c\x78\x0c\x5d\x47\x8f\x6d\x7f\x4f\x3d\x50\ +\xc3\x58\x44\x35\xc7\xc6\x84\x13\x6e\x89\xc4\x31\x21\x4f\x85\x44\ +\x62\x77\xc0\xff\xc8\x4f\x24\x12\x89\xc4\x63\x02\xee\x1d\x7c\x73\ +\x44\x7a\x08\x76\xbf\x71\xc3\x6e\xd3\x38\x6b\x31\x34\x8d\x83\xac\ +\x95\x47\xd9\x90\x8f\x63\x5d\x72\x6d\xec\xc0\xdf\x08\x7b\x43\x90\ +\x48\x24\x12\x0d\xfc\x73\x26\x7c\x96\x10\xce\xb7\xdb\x1c\xb4\x9f\ +\x63\x73\xfd\xf6\x84\xa1\x8f\xd2\xdb\xe0\x9e\xbb\x93\x48\x1c\x05\ +\xe2\x79\xb6\xe9\x39\x0c\xfb\x21\x9f\xa9\x73\xf7\x31\x9f\xd7\x0f\ +\xb1\x6f\x9e\xf3\x9c\xdc\x1f\xfa\xbe\x3b\x94\xfc\x91\xc7\xae\x73\ +\x19\x8a\x37\xd6\xce\x01\x4c\x17\xee\x0e\xd2\x51\x3c\x4c\x1b\xfb\ +\x2e\x00\xc5\x52\xb8\xba\x8e\x8d\x0d\xd0\x88\x5b\x22\x91\x48\x24\ +\x12\xdb\x22\xbf\xa1\x96\x48\x1c\x31\xf2\xe4\x7f\x84\x18\xda\xa9\ +\x73\x6f\xb6\xa6\x0e\x08\xc4\x80\x3e\xc6\xba\x97\x03\x68\x5d\xa3\ +\x73\x3b\x1b\xe0\x2e\x35\xf4\x50\x1b\x3e\x00\x89\x44\xe2\xb8\xb1\ +\xc5\x67\xcc\x28\xe2\x67\xca\x2e\xe3\xae\xc1\x54\x53\x9e\xd2\x1d\ +\xa6\x93\x48\x24\x76\x80\xf6\xe3\xa4\x9d\xb2\xb8\x8c\x75\xab\x6c\ +\xc0\x6f\x81\x34\x01\x0f\x71\xc9\x00\x69\x1e\x6a\x6e\x89\xc4\xae\ +\xc0\xe3\x3c\xa0\x39\x35\x6f\x9c\xeb\xb7\x45\x1b\x73\x1f\x6d\x6c\ +\x02\xff\x56\x1a\x72\xf0\xb1\xf0\x7c\x9c\x07\x6a\x8e\xd1\xd0\xd0\ +\xb0\x89\xc4\xb1\x22\x4f\x85\x44\x62\x77\xc8\x6f\xa8\x25\x12\x89\ +\xc4\x63\xc6\xd0\xac\x69\xec\xa6\x68\x6a\x86\x15\x7d\x22\x7d\xe7\ +\xb3\x32\x34\xb8\x69\xa3\x48\xd8\xb7\x01\x4c\xa8\x3a\x0c\x19\x6c\ +\x93\x4b\x22\x91\x38\x6c\xdc\xf5\x79\x7d\x47\xed\x79\x33\xeb\x9a\ +\xba\xa3\x74\x12\x89\x44\x83\xb5\xf3\x90\x0d\x80\x58\xf1\x3c\x76\ +\xba\xca\x26\x4e\xf2\xb8\x78\x1d\x01\x39\x54\x5e\xcf\x01\x6d\x6d\ +\x23\xaf\xd5\xad\xe0\x31\x18\x53\xb6\x4d\x1f\xa6\x55\x7f\xdb\x00\ +\xcf\x2f\x91\x18\x43\x3c\x5e\xb6\x45\xeb\x5f\x8f\x3f\xdb\xc6\x70\ +\xe3\x5c\xb4\x1a\xd8\xc5\xe7\x46\x6c\x1f\x75\x8c\x59\xe5\x42\x38\ +\xed\xd8\xdb\x79\x83\xb8\x71\x33\x80\x44\x6e\x6b\xfb\x6c\x3e\xc1\ +\x95\xd8\xc5\x58\x25\x12\x89\x44\x22\x61\xc8\x6f\xa8\x25\x12\x47\ +\x8c\x3c\xf9\x1f\x19\xda\x1d\xda\xde\x48\x6c\x83\xa1\x83\x64\x2a\ +\xee\x9d\x1c\x54\x68\xc4\xef\xaa\x86\x10\x13\x9c\xdb\x81\x6d\x13\ +\x9f\xca\x23\x91\x48\x3c\x3e\x4c\x7d\x00\xce\x45\xfb\x99\xb1\x8b\ +\x98\x13\xd8\x73\xf8\x44\x22\xb1\x23\xe0\xa3\x61\x9b\xf3\xd5\x3f\ +\x52\x36\xf1\x1d\x5b\x02\xe0\x22\xb9\xe8\x6a\xcc\x81\xa0\xf4\x35\ +\xbb\x31\xdc\xf0\x73\x9f\x06\xb7\x59\x8a\x40\x1b\xdb\x3c\x50\x73\ +\x17\x4f\xe7\x16\x29\x24\x12\xb7\x42\x3c\x1e\xe7\x20\x9e\x42\xb7\ +\x3d\x6e\x6b\xac\x90\x44\x8c\x49\x7d\x6c\x10\x10\x83\xc1\x76\x2d\ +\x46\xef\x9c\x0c\xbe\xa6\xd6\xa2\x32\x23\x10\x7d\x70\x1d\x85\x87\ +\x72\xc4\x66\x87\x9a\x99\x13\x33\x91\x78\xe4\xc8\xd3\x20\x91\xd8\ +\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\x93\x3f\xb1\x16\xed\x41\x12\x6f\ +\x4e\xc6\x66\x64\x77\x72\x60\xa1\x91\x75\xc9\x8c\x25\xe2\xb6\x1e\ +\x03\x68\xe3\x0d\xc1\xf5\xeb\xec\x12\x89\xc4\x38\x1e\xe2\xf9\xd3\ +\x7e\x4e\xec\x02\xbb\x8c\xb5\x06\x77\xd4\x4c\x22\x91\xb8\x05\xfc\ +\x63\x71\xdd\xf9\xba\xab\x8f\x8e\xa9\x25\x80\xd1\x87\x68\x0d\xa6\ +\x1e\x68\xc5\x18\xb3\x72\x36\xa3\x4d\x96\x26\x10\x73\x03\xf3\x47\ +\x85\xc7\xd0\xf7\x63\xdb\x7f\x9b\xf4\x17\xb6\xc0\x2e\xc7\x87\xe7\ +\x64\x0c\x18\xf8\xb1\x76\xd6\x7d\x16\x0c\xe9\x23\x7a\x71\xdb\x46\ +\xc4\x37\xa6\x14\x69\xc0\xf9\xd6\x26\xc2\xf5\x11\xad\x6c\x5d\x8c\ +\x44\xe2\x88\x90\x87\x7f\x22\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\ +\x27\x7f\x62\x12\xed\x01\x32\x74\x73\x32\x85\xbd\x1d\x60\xb1\x71\ +\x6f\x64\x28\x19\xb7\x8b\x35\x30\x96\xf8\x50\x5c\x60\xca\x3e\x91\ +\x48\xac\xc7\xd0\x39\x34\x75\xfe\xc4\xf3\x75\x0e\x36\xb5\x77\xb8\ +\x5f\x9b\x9f\xc7\x1a\xd3\xdf\x33\x36\xed\xee\xba\xf4\x0f\xb0\x8b\ +\x89\xc4\xd1\x21\x7e\xec\xec\x02\xeb\xce\xeb\xfa\x19\x62\xc4\xd8\ +\xc2\x38\x96\x0a\xa0\xa3\x59\x75\x52\xb8\xcf\x9c\xe5\x84\x75\x0b\ +\xef\x11\xb9\x3c\x91\x78\x2c\xc0\x61\x7f\xd7\x87\x73\x7b\xaa\x79\ +\xfb\x51\x3e\x27\xa7\x4d\xce\xd9\x21\xb0\x0d\x14\x63\x83\x20\xf2\ +\xa1\x26\xdc\x65\x0e\x5a\xdb\x39\xbe\x9b\xc4\x4f\x24\x1e\x19\xf2\ +\xd0\x4f\x24\x76\x87\xfc\x1f\x6a\x89\x44\x22\x91\x18\x86\xcf\xb8\ +\x50\xb7\xb3\xaf\x6d\x67\x63\x1e\x2b\xfa\xcf\x8e\x85\x3b\x20\x6c\ +\x40\xa4\x81\x48\x03\xe0\x63\xe0\xd6\x36\x6e\x11\x63\xb2\x44\xe2\ +\x10\x31\xfb\xe4\xb9\x47\x0c\xe5\xb8\x8b\x73\x0a\x71\x7d\x5b\x17\ +\x6f\x6a\x9c\x86\x74\x1e\x17\x98\xf2\xbd\x63\x6c\x9a\x4a\xec\x46\ +\x84\x0f\x17\xea\xfc\x78\x4b\x24\x0e\x03\x63\xe7\x6b\xc4\x9c\xf3\ +\xd5\x6d\x3c\x56\x3c\xdf\xbd\xc6\xd6\x6b\x2f\x34\x8c\x87\x59\x6e\ +\xeb\x68\xf9\x1b\x18\x4a\xdc\x1b\x90\xad\x3e\x78\xd3\x6a\x2d\x68\ +\xef\x7e\x56\x93\x0c\xbc\x23\xd2\x87\x06\x4b\xf7\x41\x60\x2a\xcf\ +\x5d\xf6\xe1\x21\x8d\xc9\x6d\xc1\x7e\x4a\x31\xd6\x67\xca\x4d\xbf\ +\x0e\x63\x36\x8c\xd1\x6c\x44\x25\x3a\xd2\xcf\xbf\xb9\xe7\xe1\x36\ +\xa8\x6d\x80\x58\xd7\xa0\xc8\xc7\x4c\xc0\x8f\xb9\x45\xa0\x6f\xd1\ +\x2e\x74\x7b\x14\x73\x6c\x12\x89\x44\x22\x91\x58\x83\xfc\x86\x5a\ +\x22\x71\xc4\xc8\x93\x3f\x31\x0b\x38\x50\xb6\xbd\xf9\x98\xba\xc9\ +\x99\x7d\x00\x0e\x25\xe0\xce\x73\x13\x6b\x1b\xdb\xc6\xcf\x7d\x66\ +\x27\x3e\x02\xc4\xb9\x6d\x8c\x44\x02\x38\xe4\x63\x69\xe8\x1c\xdb\ +\x24\xd7\x75\x7d\x6b\xe3\xaf\x8b\xdd\xc6\x1b\xca\xef\xc0\xe1\x5d\ +\x98\x1a\x1a\xef\x96\xdb\x8d\x61\xc8\xff\x01\x0e\x49\x22\x71\x54\ +\x58\x77\x5e\x3b\x5a\x3b\xe7\xdb\x1a\x00\x0d\x0c\xe9\xa9\xeb\x31\ +\x7d\xc4\x87\x59\x37\x96\x14\x44\x47\x37\x97\x1b\xdf\x02\xfa\x7d\ +\x3f\x14\x1b\x5b\xee\x60\x7e\x4a\x26\x1a\xc4\x5d\x82\x31\x5a\x37\ +\x56\x39\x96\x37\xd1\x3b\xae\x65\x70\x7c\x7c\xa2\xd8\x99\xf6\x18\ +\xdd\x66\x3c\xd9\x1e\x9c\x7a\x0d\x28\xc6\xce\x81\x51\x8c\x25\x60\ +\xf2\xa9\x73\x96\x6e\xee\x3b\x16\xc7\x80\x38\x53\xa6\x13\xcd\x10\ +\xb0\x5f\x67\x93\x48\x24\x2a\xf2\x74\x49\x24\x76\x87\x7c\xa0\x96\ +\x48\x1c\x31\xf2\xe4\x4f\x0c\xa2\xbd\x39\x19\xba\x59\x59\x77\x03\ +\x33\x76\x70\xc1\x67\xa3\x03\x6f\xac\xf1\x88\xa1\x44\xdc\x66\xac\ +\xc1\x56\xee\x31\xd6\xc9\x6e\x8b\x98\x2b\xe2\x8e\xe5\x17\x31\xc7\ +\x26\x71\xbc\x38\xc4\xe3\x63\x9b\xe3\x7c\x1b\xc4\x76\x5a\xcc\x39\ +\xaf\x0e\x10\x77\xd5\xa5\x18\xeb\x40\x87\x22\x91\x48\x34\xf0\xf3\ +\xf6\xb6\xe7\xec\xd8\x67\x09\xe2\x42\x17\xe3\xf7\x6c\x9b\x0f\x8e\ +\x9e\xdd\x58\x50\x87\xd9\x0f\xc5\x8f\xbc\x63\x4c\x1e\x31\xc7\x06\ +\xd8\x66\xb9\xc3\x73\x3d\x26\x0c\xf5\xd9\xc7\x77\x68\x2c\xdc\x7e\ +\x57\x63\xf5\x58\xc6\x9c\x63\xe6\x03\x07\x58\xa7\xda\xbe\x55\xbb\ +\x11\x3d\x10\xc3\xb8\xed\xa0\x5d\xd0\xf5\xe2\x7a\x80\xe0\xc7\x87\ +\x58\xce\x44\x88\xdc\xdd\x50\xf8\x43\x33\xf0\x1e\x66\x2e\x6a\x78\ +\x27\x2c\x40\x8d\x2f\x88\xb4\x63\xd3\x76\x12\x89\xc4\x46\xc8\x53\ +\x2c\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\x93\x3f\xd1\x03\x0e\ +\x08\x9f\x65\x45\x7a\x5b\xec\xf2\x00\x1b\xba\xe9\xaa\x08\xc9\xc6\ +\xfc\xab\x7c\x97\x89\xec\x02\x9b\xe4\x74\x88\xf9\x27\x12\x53\xf0\ +\x93\xd0\xb1\xc9\x79\x18\xed\x3c\xce\x3a\xbf\xb6\xbd\x88\x21\xdf\ +\xa1\x5c\xa6\x62\xdc\x03\x86\xd2\xb9\xcd\x30\x24\x12\x89\xc3\x06\ +\xce\xef\x75\xe7\xb0\x7f\x06\xec\xea\x5c\x8f\x9f\x29\x1e\x73\x28\ +\x8f\x6a\x17\x1d\x00\x31\x8c\x7e\x37\xf4\x0e\x18\x59\xe0\x36\x36\ +\x30\xe4\xe6\x2e\xc0\x94\xcf\x90\x6e\x0c\x58\xf2\x18\x7d\x90\x20\ +\x60\x2c\xd3\xfb\x83\x04\x34\x34\x62\x9e\x38\x10\x60\x57\x4d\xed\ +\xa3\x75\xfa\x7d\xc1\x8f\x27\x6f\x3c\xe6\xe0\xe2\x7a\x9c\x01\x22\ +\x18\xca\x73\x2a\x4e\x0b\x3f\xbe\x63\x1d\xe1\xc7\xbe\xcb\xc1\x36\ +\x26\x3b\x43\x2f\x4f\x6b\x08\x6d\x79\x9b\x43\x6d\x8f\xe5\xe3\xb1\ +\x86\x74\x89\x44\x62\x23\xe4\x69\x94\x48\xec\x0e\xf9\x40\x2d\x91\ +\x38\x62\xe4\xc9\x9f\xa8\x98\xba\x89\x99\x33\xf3\x6a\xed\x0e\xe2\ +\xe0\x3a\xd4\x23\x1c\x03\xe5\xb9\x45\x3a\x91\xd8\x27\xe6\x1e\x6b\ +\xb7\x39\x26\xe3\x87\x40\x8b\x75\x31\x37\xf1\xf5\x1c\x87\x7c\xd6\ +\xc9\x87\xf2\x98\x6a\xfb\x8e\x10\x53\x68\xbb\x30\x94\x72\xc4\x01\ +\xa4\x9f\x48\x24\xee\x00\xfe\x59\x70\xd7\xe7\x3c\xdb\x1d\xf8\x20\ +\x8a\x0b\xf6\x5c\x52\x18\x49\x6c\x5d\xbe\xee\xda\xd6\x43\x68\x1f\ +\x14\x4c\xd9\x0e\x01\xf6\x5a\x68\x9c\x5c\x0a\x49\xdc\x25\x7a\x0f\ +\xb9\xda\x83\x57\x78\x8a\x5c\xe6\x7a\x93\x0f\xc1\xd4\x15\x3c\xa6\ +\x41\x98\xb0\xd7\xde\x2d\x50\x63\x36\xf1\xe6\x86\x8f\x39\x46\xac\ +\xf3\xf7\x26\x07\x9a\x4e\x24\x12\x9b\x23\x4f\xa3\x44\x62\x77\xc8\ +\x07\x6a\x89\xc4\x11\x23\x4f\xfe\xc4\x2c\xb4\x37\x33\x73\x6e\x6a\ +\x6e\x7d\x70\xcd\x69\x64\x1d\x3c\x09\x4f\xfa\x3e\x10\xfb\x70\x5f\ +\x39\x24\x0e\x1f\xed\x31\xea\xc7\x8d\x9f\x07\x73\x8e\x9d\xb1\x18\ +\x2d\xdc\x66\x4c\xef\xd8\xb4\xed\x39\x18\x8b\x35\x95\x6b\xcc\x61\ +\x6e\x3b\x0e\xf7\x77\xc4\xf6\x37\x8d\xb5\x67\x0c\xa5\xb3\xe9\x70\ +\x25\x12\x89\xc7\x8f\x4d\x3f\x0e\xdb\xcf\x91\xa1\x8f\xc4\x75\xb1\ +\x6a\x8c\x26\xd8\x4e\x17\xeb\x47\xe0\x4d\x0c\xf5\x03\xb2\xb5\xb9\ +\x9b\x51\x6b\xc7\x78\x53\x0d\x27\x12\xb7\x84\x9f\x1f\xed\x72\x5b\ +\x3c\x6f\xe2\xf1\x19\xed\x6e\xd8\x00\xc1\x6e\xea\xdc\xa3\xf9\x1a\ +\x9b\xb9\x08\x29\x0d\x62\x6e\x13\x63\x71\x76\x90\x62\x22\x91\x98\ +\x8f\x3c\xe5\x12\x89\xdd\x21\x1f\xa8\x25\x12\x47\x8c\x3c\xf9\x13\ +\x6b\xe1\x07\xc9\x36\xb3\xaf\x7b\x3d\xc0\xd0\xf8\x50\xd2\x6d\x87\ +\xd6\x25\x09\xbb\xdb\x74\xa4\xcd\x61\x2a\x96\xb7\x75\xdb\x36\xb7\ +\xc1\x7d\xb4\x39\x84\x43\xc9\xe3\x3e\xb1\xed\x18\x8c\xf9\xb9\xbc\ +\xd5\x83\x07\x86\x64\x8e\x6d\xf2\x88\x18\x6b\xbb\x45\xdb\x6e\x8b\ +\xa9\x1c\x1f\x28\xe6\x74\x63\x6c\xc8\x1e\xc9\x10\x24\x12\x89\x2d\ +\xe1\x9f\x0d\x9b\x7c\x74\x46\xb8\xdf\xc6\x71\x9a\x80\xbb\x58\xb0\ +\x77\x8c\xe5\x02\xf9\x50\x33\x2e\xaf\x75\x14\x4c\xc0\x73\xde\xd5\ +\x12\x08\xe2\xe5\x72\xca\x23\xc4\x8c\x63\x69\x0a\xf1\xdc\xd8\xf4\ +\xf8\x68\xcf\xab\xb1\x63\x9b\xc7\x1e\x6a\x65\xfb\xe7\x82\xa1\x8d\ +\xb5\x0d\x62\xf3\xdb\x86\xbb\x8d\x6f\x22\x91\xd8\x19\xf2\x34\x4c\ +\x24\x76\x87\x7c\xa0\x96\x48\x1c\x31\xf2\xe4\x4f\xec\x04\x63\x37\ +\x49\x87\x74\x80\xf9\x8d\xe0\x28\xc6\x3a\xe1\xd8\xb4\x33\xdb\xc6\ +\x72\xbf\x21\x9b\x18\xd3\xf3\xdd\x34\xaf\x29\x4c\xb5\x9d\xd8\x0c\ +\xbe\x6f\xe2\x3e\x03\xe6\x8e\x6d\xf4\xdf\xd5\xfe\x68\x73\x71\xc4\ +\xf8\xfb\x68\x77\x0c\x63\xf9\x00\x9e\xc3\x3d\xe1\xbe\xbb\x1f\xd1\ +\xe6\x71\x8f\xc3\x92\x48\x24\x0e\x00\x73\x3f\x1e\xa7\x3e\xc3\x36\ +\xfd\x1c\xe9\xc5\x32\x66\x17\x0b\xf5\xbb\x40\xcd\x2d\x0e\x4c\xa0\ +\x51\xf9\x72\xc7\xe0\x83\x8a\x23\x03\xc7\x43\xc9\x3b\xc3\x2e\xda\ +\xe4\xc3\xa3\x87\xb2\xbf\x24\xd7\x78\xa8\x31\xed\x98\x7b\x54\x02\ +\xd0\x35\x83\x54\xfb\xdb\xc8\x7b\xf0\x38\x63\x76\xa6\x77\xb3\x7d\ +\xc2\x53\x00\x22\x9d\x48\x24\x0e\x0a\x79\x6a\x26\x12\xbb\x43\x3e\ +\x50\x4b\x24\x8e\x18\x79\xf2\x27\xf6\x8e\x47\x71\x90\xf9\x9d\xe1\ +\xba\xce\xcc\x9d\xa2\x4e\xc5\x89\x31\xda\x76\xc7\xe2\x47\xbb\x68\ +\xff\x90\xb0\x69\xde\x87\xd6\xdf\xb1\x3c\x20\x6f\x31\x95\xb7\xdb\ +\xbb\x8d\x63\xca\x67\x08\x43\xed\xae\xc3\x50\x9b\x40\xcc\xc9\x31\ +\x24\x9b\xc2\x36\xf9\xec\x1a\x6d\xff\xee\x01\xeb\x9a\x9f\x33\x9c\ +\x87\x30\x94\x89\x44\xe2\xf0\xd1\x7e\x64\x0f\x7d\x84\x6f\x82\xdb\ +\x7c\x84\xb2\xed\x36\x40\xe0\x63\x7e\x43\x6d\xb8\x0e\x68\xf5\x55\ +\xe7\xf1\x9a\xb8\x40\x6f\xb9\xc3\x6d\x8e\x1c\x77\x35\x0c\x75\x1f\ +\x58\xfd\x18\xc1\x87\x5f\xa8\x65\xf3\x1a\x88\xb2\x0a\x67\x44\xe1\ +\x76\x40\xb5\x31\xa7\xea\x67\x7c\xf4\xeb\x8c\x15\xfe\xa0\x38\x9a\ +\xcc\x85\x87\xdf\x17\xf6\x1d\x3f\x91\x48\x6c\x84\x3c\x1d\x13\x89\ +\xdd\x21\x1f\xa8\x25\x12\x47\x8c\x3c\xf9\x13\x77\x86\x07\x79\xb0\ +\x8d\x25\x8d\xa9\x68\xab\xdb\xf4\xee\x75\x0c\x31\xb6\xd3\x1e\x3b\ +\xd2\xeb\x30\x94\xdf\x54\xbb\xf7\x89\xd8\xcf\xb1\x1c\xa3\x6e\x68\ +\x0c\xa2\xee\x36\xfd\xf4\xd8\xb7\x89\x11\x31\x94\x2b\x30\x14\x7f\ +\xcc\xb6\xc5\x9c\xdc\x62\x2c\xd8\xcf\x8d\x1d\xd1\xfa\xc5\x76\xb7\ +\x89\x77\xa4\xf0\xa1\x9a\x1a\xce\x31\xe4\x30\x27\x12\x89\x5d\x63\ +\xdb\x4b\xc2\x6d\xe0\x6d\xc6\x7a\x0a\x63\xf9\xb9\x9f\xeb\x07\xe3\ +\x78\x23\x86\xd8\x2e\x40\x9f\x41\xc7\xc4\x3e\x30\xb9\xaf\x1e\x0a\ +\xfc\x20\x02\x84\xf6\x3e\xb5\x68\x8f\x33\x77\x8b\x32\x87\xeb\x80\ +\x18\x2f\xda\xf4\xd0\x06\x0c\xce\xd1\x7f\x53\x0c\xe5\xb0\x0b\xc4\ +\x7e\xec\x3a\x76\x22\x91\xd8\x1a\x79\x3a\x26\x12\xbb\x43\x3e\x50\ +\x4b\x24\x8e\x18\x79\xf2\x27\xf6\x76\xc3\x83\xb8\x88\xd7\x1e\x64\ +\x43\xb2\x83\xc4\x58\xe2\xbb\x18\xa4\xa9\x01\xf0\xf8\x6e\x13\x07\ +\x2c\xea\xe6\xe4\x31\xd5\xce\x7d\x60\x28\xe7\xa1\xbe\x0c\xf5\xd7\ +\x01\xd9\x14\x7f\x5b\xec\x22\x5e\xdb\x9f\x21\xb4\x6d\x8c\xf9\xb4\ +\x7d\x05\xe6\xe4\x17\xe3\xc1\x7e\x4e\x4e\x73\xe0\x6d\xef\x2a\xde\ +\x03\x00\xba\x3a\x67\xc8\x5b\x0c\x0d\x51\x1c\xbe\xa1\x98\xad\xdc\ +\xf9\xa1\x58\x89\x44\xe2\x78\x71\x9b\xcf\x85\x39\xbe\x43\x36\xfb\ +\xf8\x2c\x42\x4c\x07\x62\xcf\x6d\x23\xfa\x11\x2e\x70\xe7\x1b\x06\ +\x86\x75\xfa\x3b\xc0\x83\xfa\xe9\xc2\x43\x84\x8c\x1f\x76\x23\xc6\ +\xf0\x2e\xc6\xd2\xbf\xfd\x35\x85\xc1\x1c\x2c\xcf\x08\x37\x63\xfe\ +\x4a\x2a\x61\x86\x6e\x3f\xda\x25\xb7\x8d\x06\xc2\xbb\xdf\x21\xa0\ +\xcd\xfd\x90\x72\x4b\x24\x12\x79\x4a\x26\x12\x3b\x44\x3e\x50\x4b\ +\x24\x8e\x18\x79\xf2\x27\x76\x86\x4d\x0e\x26\xbf\x17\xf4\x19\xdd\ +\xd0\xcd\xd7\xbd\x1f\x9c\x9e\xc0\xc8\xb4\xf3\x56\x39\x0e\x75\x78\ +\x1f\xb8\xf7\x41\x1c\x80\x0f\xdc\x54\x9f\x5b\xfd\x90\xbd\xcb\x86\ +\xfa\xe8\xb6\x43\xba\x39\x18\xca\x6d\xd3\x58\x43\x31\xb6\x41\x6c\ +\x37\xc6\x74\xb9\x8f\xc1\x50\x9f\x77\x95\xc3\x2d\xe1\x29\x1e\x03\ +\xe6\x0c\xf9\x26\x63\x71\x20\xbb\x30\x91\x48\x3c\x32\xc4\xcb\xc6\ +\x6d\xb0\x8b\x38\x53\x31\x5c\xb7\xce\x46\x0b\x83\x3b\x38\x5a\x7e\ +\x53\x84\x86\x9d\xbc\xd1\xa6\x60\xf6\xc3\x1d\xb1\xab\x29\x99\xbd\ +\xfb\xfa\xc3\x9b\xc7\xb6\x3c\xd3\x3e\x94\xba\x6d\xff\x38\x5e\x46\ +\xb7\xfb\x61\x67\xf0\x9d\x24\x75\x20\x07\x71\xa3\x3f\x8d\xe1\xa8\ +\x9f\xd5\x0e\x6f\x67\x2d\xa2\x91\x38\x8d\xc5\xdf\x25\xa6\xfa\x3f\ +\x84\x4d\xed\x13\x89\xc4\x9d\x20\x4f\xcb\x44\x62\x77\xc8\x07\x6a\ +\x89\xc4\x11\x23\x4f\xfe\xc4\x5e\xe0\x07\x96\xcf\xd8\xda\x03\x0d\ +\xf2\x68\xd3\xda\x03\xd1\xc7\x6d\xda\x7a\xaf\x18\x4a\x2a\xc0\xc5\ +\x7b\xcf\x63\x2e\x7c\x60\x22\x62\x1f\x0e\x21\xd1\x98\xdf\x50\xbe\ +\xb7\x41\xec\xab\x63\xd3\x3e\x4f\xe5\xb3\x2e\x96\x8f\xf1\xae\xfa\ +\xe4\xb1\xa6\xda\x1d\x6b\x2b\xfa\x46\x1b\x8f\xb5\xab\x1c\xf7\x81\ +\x36\xe7\x3d\xc3\x9b\x9a\x1a\xe6\x4d\xd0\xa6\x1e\xe3\x42\x37\xb6\ +\x0b\x5a\xbb\x44\x22\x91\x98\xc2\x6d\x3f\x2a\x6f\xeb\xbf\x4b\x8c\ +\xe5\x12\x3f\x17\x1d\x63\x39\xd3\x76\x20\xd0\x58\x5c\x97\xd7\x36\ +\x66\x34\x36\xd5\x36\x74\xfe\x40\xac\xf2\xb2\x11\x43\xb1\x05\xd1\ +\x16\xa0\x99\x09\x4e\xa4\x1e\x71\x7b\x70\x60\xff\xbc\x93\x86\x5d\ +\x3c\x50\x03\x06\x1f\x64\x8d\xc5\x9e\xd2\xcd\x41\xe8\x43\xd3\x9d\ +\x2e\x8f\x1b\x0a\xd9\x44\xe6\x62\x63\x7b\x98\x4c\xc9\x1d\xc6\x8c\ +\x2c\x58\x1b\x33\x91\x48\x24\x46\x90\x1f\x17\x89\xc4\xee\x90\x0f\ +\xd4\x12\x89\x23\x46\x9e\xfc\x89\x3b\xc1\xba\xfb\xc1\x75\x88\x33\ +\x3f\x8f\x31\x34\x1b\xdc\xf9\x01\xed\x89\x07\xdc\x49\xbb\xbb\xc0\ +\x3e\x92\x1a\xda\x11\x2d\xdc\xa6\x1d\xbb\xc8\xb7\xba\x6d\xe0\x31\ +\x62\x3d\x17\xeb\xec\xdb\xdc\xe6\xc4\x1e\xf2\x69\x65\x53\xd8\x24\ +\xff\x5d\x60\x93\xdc\x1e\x29\xe2\x10\x6c\x3a\xfc\xf0\x1d\xf2\x19\ +\x93\x47\xe4\xd0\x27\x12\x89\xfb\xc6\xa6\x97\xa8\x31\xec\x2a\xce\ +\x18\x3c\xfe\x5d\xb4\x43\xb4\x0d\x05\xde\xc5\x63\xb9\x78\x0c\xe8\ +\xdc\x86\x32\x57\x8c\xa0\x3e\x1c\xaa\xc5\xdd\xa2\xe6\x69\xe0\x83\ +\xbe\x20\x68\xf5\xdb\xc0\xfb\xd8\x62\xdb\x65\xa8\x18\xcf\x43\xb8\ +\x88\xfc\x6d\x13\x8e\x18\xc9\x1d\x88\x63\x13\xcd\x6a\xf3\x20\x44\ +\x31\x11\xa2\x62\x32\xe5\x21\xe5\xcc\xb8\x89\x44\x22\x11\x90\x1f\ +\x1b\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x89\x83\xc0\ +\xd4\x81\x18\x67\x7d\xb0\x73\xbe\xa5\xf7\x82\xd8\x48\x40\x2b\xda\ +\xa4\x7d\xf8\xba\xfd\x6d\xe2\xac\xc5\x3e\x06\x65\x60\x2c\x06\x11\ +\xdb\x8e\x1d\x6e\x31\x37\x9e\x03\x71\xda\x78\xce\x4f\xb5\x33\x84\ +\x4d\xed\x5b\xb4\xb9\x7b\xac\xa1\xfc\xe6\x62\x4e\x3e\x1e\x6f\xdb\ +\xdc\x37\xc9\xe7\x11\x63\x6c\xf7\xcd\x45\xdc\x0d\xdb\xec\x92\xdc\ +\x0d\x89\x44\xe2\x3e\x11\x3f\xbb\x8e\x1d\x73\x3e\xbb\x6f\x33\x56\ +\xeb\x96\x5a\x7a\x0f\x87\x36\xb9\x90\x04\xdc\x78\x08\xb6\x41\x4c\ +\xb7\x85\x1d\xc9\x10\x8b\x3a\xa1\xd7\x84\xd0\xf6\x41\x4c\x18\xc6\ +\x9c\x22\xd6\xf9\x55\x58\x2e\xa8\xdb\x50\x26\x26\xb6\x1d\xc3\x1b\ +\xf0\xf6\x1c\xb5\x01\xab\x5b\xc4\xa4\x42\x42\x23\xe2\x1b\x58\x9b\ +\x76\xe3\x3c\x16\x67\x1b\xb4\x6d\xef\x32\x76\x22\x91\x38\x28\xe4\ +\xe9\x9d\x48\xec\x0e\x0b\xab\x13\x89\x44\x22\x91\xb8\x1f\x6c\x32\ +\xb3\xc3\x4d\x9f\xdf\x53\x3a\xdd\x22\xc6\x03\xdd\xc6\x77\xbe\x95\ +\xdf\xc0\x5a\x03\xc5\x4c\xb3\xdd\x63\x6c\x00\x86\x64\xfb\x42\xcc\ +\x61\x2c\x9f\x5d\x01\x03\x8d\xf8\xed\x0e\x6c\xe5\x43\x88\x3a\xb7\ +\x9f\x8b\xd8\x4e\x8b\x18\x67\xaa\xfd\x29\x78\x0c\xf8\x4f\xc5\x88\ +\xba\x21\xbb\xe8\xef\x74\xbb\x25\x08\x0c\xf9\xd0\xae\x5b\x37\x44\ +\xed\x30\xb6\x74\xab\x1f\x83\xb7\x1d\x73\x48\x24\x12\x89\xbb\x44\ +\xfb\x39\x98\xb8\x1d\xb6\x1d\xcb\xb8\x1f\xf8\xd0\xc9\x2e\x22\x63\ +\x0f\xa0\x86\x00\x7f\xd8\xfb\x16\x31\x24\x73\x44\x39\x69\xe3\xa3\ +\x7c\x6d\xbf\xc4\xb6\x3e\xc4\x0a\x7e\x2d\xc6\x1e\x74\x4d\xb8\x28\ +\xa2\x81\xd0\x43\xf6\x3d\x13\x30\xbe\xed\x0a\x1e\x6b\x6a\x30\xa0\ +\xf3\xcd\x30\x94\xc2\x54\x08\x60\x34\x6d\x53\xa0\x1a\xb5\x49\x24\ +\x12\x89\x44\x22\x71\x57\xc8\x6f\xa8\x25\x12\x47\x8c\x3c\xf9\x13\ +\x07\x83\xa9\x83\xd1\x6f\x1c\xc7\x6c\xe2\x8d\xa5\xdb\x40\x36\x46\ +\xaf\xc3\x54\x2e\x8e\xa1\x36\x37\x41\x9b\xc7\x64\x8c\xb1\xe4\x21\ +\x5f\xd7\xa1\xa1\xc0\xf0\xd9\x24\xe9\xd6\x7e\xaa\xcd\xd6\xce\x73\ +\x6c\xeb\x7d\xc3\xf3\xf0\x36\xef\x12\xb1\xcd\x39\x7d\x6d\x6d\xd7\ +\xe5\xdb\xc6\xdc\xa4\xad\x44\x45\x1c\xae\xb9\x87\xc8\xd4\x10\xcf\ +\x8d\xd1\x22\x77\x5b\x22\x91\x48\xdc\x0f\x36\xf9\xdc\xc6\x67\x35\ +\xec\x63\xdd\xa2\xd5\xd7\xf8\xc1\xa1\xd5\xf7\xec\x0c\x66\xda\x97\ +\x3b\x33\xe4\x68\x0e\xee\x37\x84\x76\xc9\x07\x0f\x9e\x28\x0a\x72\ +\xfa\x43\xde\xd8\x3a\xe8\x23\xba\xb6\x86\x8f\xbc\x47\xfd\x6a\x62\ +\xc1\xb6\x05\x5d\x87\xfc\x07\x8c\x87\xfc\x87\x30\x9a\xcf\x1c\x84\ +\x46\x40\xd6\x50\x73\x62\x8a\x43\xcc\xf1\x36\x69\x44\xcc\xed\xf7\ +\x36\x40\x8e\xfb\x8c\x9f\x48\x24\x0e\x02\x79\x9a\x27\x12\xbb\x43\ +\x3e\x50\x4b\x24\x8e\x18\x79\xf2\x27\x0e\x0a\x63\x07\x24\x66\x7e\ +\x7e\xa3\x37\x64\x13\x67\x86\x53\x07\xf5\xba\x19\xe4\x26\x27\xc4\ +\x50\xac\x4d\xfc\x27\xe1\x81\x86\x3a\xb6\xae\x13\x11\xf0\x81\xfd\ +\x58\x62\xad\xce\xf9\x29\x9f\x5d\x21\xb6\xb1\x69\xbb\xb0\x03\xa2\ +\x3f\xe0\x31\x5a\x6c\x12\x7b\x2e\xd6\xc5\x73\xfd\x50\x3e\x2d\xa2\ +\x5d\x8c\xd9\xb6\x31\x27\x56\x62\x27\x98\x3b\xd4\x53\x87\xc0\x18\ +\xda\x5d\x9d\xbb\x35\x91\x48\x3c\x44\xc4\x4b\xd7\x43\xc6\x50\x3f\ +\xd6\x7d\xb6\x8f\xf5\x3b\xc6\x6a\x69\x47\xf4\x6d\xdb\x6e\xf9\x31\ +\x30\x9e\x19\xc3\xde\x97\x73\xf8\xed\xac\x31\x88\xcd\x35\x8d\x95\ +\x6d\xd1\xfa\x22\x66\x94\xad\x5b\x32\xe2\xc3\x35\x10\x6e\x67\xbe\ +\x31\x2c\x54\x4d\x33\x37\xe0\x36\x37\x62\xb5\x74\x13\x68\x2c\xae\ +\xbb\x75\xc4\x4c\x48\xc0\xa1\x98\xbd\x30\x6d\x1e\xc6\xaf\xf5\xdb\ +\x10\x43\xf1\x6e\x83\x36\xed\x44\x22\x71\x34\xc8\x53\x3f\x91\xd8\ +\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\x93\x3f\x71\x50\xf0\x03\x12\x33\ +\xbd\xf6\x66\x6f\xee\xcd\x5f\x8c\xe1\x98\xeb\x0b\x8c\xd9\x7a\x5c\ +\x87\xdb\xb4\xf2\x5b\x63\xa8\x21\x97\xcd\xed\x44\x8b\xa9\x24\x63\ +\x7c\x20\xb6\xb1\xf3\xce\xed\x19\x43\xe3\x33\xb7\x0f\xed\x38\x6f\ +\xe3\x17\x31\x94\xcb\x10\xe0\x3b\xb7\xbd\xb9\x31\x13\x37\xe0\x43\ +\xb7\xc9\x6e\x1d\xc2\x5c\xff\x21\x0c\xc5\xf4\xdd\x9f\x48\x24\x12\ +\x87\x80\x43\xff\x4c\xf2\xcf\xe0\x7d\xe5\xe8\xfd\x5f\xf7\x59\x3f\ +\xf6\x79\x1e\xe1\x36\x43\xb1\xee\x73\x8c\x6b\x1f\x85\xf0\x07\x66\ +\x9e\x63\x9b\x97\xdb\x02\x83\x4b\x46\x0c\xa4\x64\xa5\x63\xdd\x55\ +\xb3\xc1\x70\x63\x6d\x45\x84\x36\x80\x75\xed\x6c\xb5\xe4\x25\x41\ +\x87\x9a\x6d\x01\x1b\x97\x0f\xe5\x31\xd5\x74\xf4\x1d\xc3\x50\xcc\ +\x6d\x10\xdb\xd9\x26\xe6\x54\x1f\x13\x89\xc4\x83\x40\x9e\xbe\x89\ +\xc4\xee\x90\xff\x43\x2d\x91\x48\x24\x12\x87\x05\xdc\xb0\xf9\x6c\ +\x6f\xd3\x9b\xb7\x68\x07\x5f\xf7\x8f\xf4\x18\xd6\xe9\x01\xc4\xdf\ +\xeb\x4c\x34\x06\x07\x1d\x93\x9a\x93\x60\xc4\x36\x9d\x76\x9f\x21\ +\xbf\xbd\x76\x7c\x07\x18\xea\xcb\x58\xce\xad\xdc\x7d\xdb\xf1\x5f\ +\xb7\xdd\x76\x9c\xe6\xda\x6e\x12\x33\x31\x88\xa1\x5d\x35\x84\xb1\ +\xa1\x9e\xe3\xbf\xe9\x6e\xca\xdd\x9a\x48\x24\xee\x13\xfe\xb9\x36\ +\xf7\xf3\xf1\xbe\x81\xcf\xcc\x7d\x7d\x6e\xce\x1a\x8b\x01\x25\x44\ +\x43\x3e\x63\xf2\x4d\xe1\x71\xe2\x76\x5b\xdc\x78\xb8\x24\xfc\xda\ +\x71\x1d\x32\x40\x9c\x28\x77\x1a\xf5\x44\x4c\x6f\xbf\x4d\x03\xe8\ +\xf9\x8c\x06\x90\x6d\x4c\x37\x82\xc9\x6f\xef\x0d\x61\xc4\x1e\xe2\ +\x76\x03\x22\x1d\x31\xd4\xc7\x88\x75\xfa\xa1\x98\xf7\x8d\x75\x39\ +\x27\x12\x89\x44\x22\x71\x04\xc8\x07\x6a\x89\x44\x22\x91\x38\x0c\ +\xb4\x37\x8d\x7e\xbf\xbc\xe9\x8d\x9b\xfb\xc4\x78\x4e\x4f\xc5\x82\ +\x4d\xf4\x69\x11\x75\x88\xb3\x69\x5e\xb3\xe1\x89\xc4\x4e\x4c\x25\ +\xb6\x6f\x0c\xe5\x33\x84\x4d\x72\xf5\x98\x63\x70\x7d\xdc\x00\xaf\ +\xc7\x10\x77\x0a\x6c\x5b\x3e\xc6\x9a\xc2\x1c\x1b\x60\xae\xdd\x3a\ +\xc4\xdc\x7c\x03\x22\x9d\xd8\x1a\x63\x87\xee\xd8\xd0\xc6\xc3\x66\ +\x2e\x10\xcb\xfd\x3c\x2e\x6a\xdf\x12\x89\x44\xe2\x10\xb1\xcd\xe7\ +\x5d\x04\xfc\xdb\xed\xbe\xb1\x69\x0e\x6b\xed\xdd\xc0\x3e\xcc\x9d\ +\x8d\x7e\xbb\xfc\x9c\x5f\x97\x0f\xf4\xbe\x6d\x0a\x5e\x93\xa4\xe0\ +\x4f\x34\x4a\x00\xc4\x88\xdf\x54\xa3\xcc\x02\xaf\xed\x93\x1b\x04\ +\xc3\x2a\x12\xc2\xe3\x3b\x18\x1f\x04\x74\xa8\x47\xe0\xf9\x29\x63\ +\xb4\x3b\xbb\xe3\x40\x80\xa9\x98\x84\xc7\x5c\x87\xb9\x76\x13\x58\ +\x9b\xcb\x3d\x20\x0c\xe9\xad\xb0\x83\xe1\x49\x24\x12\x89\x44\xe2\ +\xa1\x23\x7f\xf2\x31\x91\x38\x62\xe4\xc9\x9f\x78\x74\x18\x3a\xa8\ +\xe3\x8d\x1f\xf4\x43\x37\x82\x9b\x9c\x0c\xf0\xdf\xfb\xc9\xb3\x69\ +\x03\x31\xa9\x75\x77\xba\xed\x20\xcc\x6d\x6b\x4e\xc7\xe7\x0e\x4e\ +\x6b\xd7\xe6\x13\x79\xc7\x6d\xf2\x1c\x8a\x77\x9f\x18\xeb\xfb\x2e\ +\x30\x36\x7e\x8f\x14\xde\xd5\xb9\x87\x47\xc4\xa6\xc3\xe4\x43\x3b\ +\xd5\xd6\x11\x0d\x7d\x22\x91\x78\xe0\x68\x2f\x17\xdb\x5e\x3e\x0e\ +\xed\x33\x71\xd3\x7e\xf4\xf2\x8f\xcc\x44\x10\x57\xb5\x6d\x4d\x8d\ +\x85\x1b\xaf\xcb\xcd\x63\x8e\xc5\x72\xdd\x0d\x9b\x99\xf1\x81\xb8\ +\x04\x54\x1f\xa8\xb5\x0d\x86\x40\x6c\x6b\xc0\x67\x0a\x31\x1c\xfd\ +\x95\xbc\x01\xd7\x4d\x85\x5c\xbb\x64\x65\xce\x1e\xc3\xcd\xdb\x98\ +\x94\x7b\x63\xeb\x1a\x6d\x30\xd7\x34\x86\x6f\x31\x16\x63\x13\xdb\ +\xfb\xc0\x86\x43\x95\x48\x24\x0e\x13\x79\x1a\x27\x12\xbb\x43\x3e\ +\x50\x4b\x24\x8e\x18\x79\xf2\x27\xee\x0c\x7e\xb0\xed\x7b\x16\xe7\ +\x37\x7c\x9b\xb4\x37\xe7\x44\x88\x31\xef\x0c\xdb\x34\x38\xd5\xe1\ +\x76\x50\xc0\xcf\xed\x98\xdb\x4d\xc5\x07\xd6\xd9\xcc\x89\x31\x85\ +\xb1\x5c\x6f\x13\x73\x9f\x18\xca\xd7\xc7\xd2\x71\xa8\xb9\xef\x08\ +\x6d\x77\xf7\x01\x1f\xc2\xa9\x76\x86\xf2\xd8\x76\xe8\xd7\xb5\x93\ +\x48\x24\x12\xc7\x86\x75\x9f\xf3\x77\xf9\xd9\xe8\xb9\x6c\xd2\xe6\ +\x60\xfe\x10\xfa\xc5\x63\x20\xd8\x54\xfc\x75\xe3\x01\xb8\x7f\x0c\ +\x1f\x9b\x04\x2a\x1d\x8d\x0c\xd1\x8e\x10\x66\xdd\x83\xae\xad\x97\ +\x7e\xda\xc6\x84\x5f\xd3\xd4\x20\x18\xc2\xe3\x58\x8c\x26\x6c\x0f\ +\x55\x17\x8d\x5a\xac\x49\x64\x48\xdd\x8b\xbb\xc6\xdf\x31\xc7\xcc\ +\xc3\xad\x4b\x77\x9d\xdd\xcc\x94\x7a\xd8\xa0\x2b\x89\x44\xe2\x38\ +\x91\x1f\x11\x89\xc4\xee\x90\x3f\xf9\x98\x48\x24\x12\x89\xdd\x03\ +\x37\x75\x7e\x93\x18\x6f\x16\xc7\x6e\x1c\x77\x85\x38\x4b\x9c\x3b\ +\x63\x74\x3b\xd4\xbe\x01\x91\xbe\x17\xcc\x69\xdc\x93\x8c\xc9\x8e\ +\x0d\x72\xb4\x01\x9c\x6e\xe5\x63\x58\x67\xb3\x6e\xe7\xce\xdd\xf9\ +\x63\x76\x43\xf2\xb9\xb9\x1f\x12\xda\x7e\xcc\x1d\x97\x6d\xb0\xcf\ +\xd8\x33\x71\x00\x29\xd4\x43\xa4\x3d\x54\x86\x76\x85\x6f\x11\xad\ +\xfc\xa1\x1d\x72\x89\x44\x22\x71\x1b\xb4\x9f\x89\xfb\x82\xb7\x13\ +\x3f\x73\x7d\x03\x22\x3d\x85\x6d\x3e\xa3\x07\x7d\xc6\x2e\x1e\x82\ +\x56\xb4\x6d\x5e\xf0\x8b\xf2\xc9\xb8\x03\x8d\xf4\xec\x8d\x99\xcc\ +\x65\x28\x89\x4d\x00\x7f\xd9\x6e\x1b\x66\x2a\x57\xc8\x7c\x23\x26\ +\x3b\x34\x8e\xb1\x1c\x7b\xe1\x26\x3a\xd2\xaa\xa6\xd2\x88\xf9\xae\ +\x4b\x77\xae\xdd\x21\xc0\xfb\xf5\x10\x72\x4d\x24\x12\x89\x44\xe2\ +\x0e\x91\xdf\x50\x4b\x24\x8e\x18\x79\xf2\x27\xf6\x06\x1c\x5c\xb7\ +\xbe\xd9\xbe\x03\xc4\x3c\x9d\x8e\xf5\x18\xd6\xe9\x77\x06\x6f\x64\ +\xa8\x41\x4f\x7c\x57\xd8\xb4\x43\x31\xa7\xa1\x5c\xda\xdc\x63\x1d\ +\x10\xc3\xcc\x42\x8c\x05\x34\xf1\xf6\x82\x81\xbc\xb7\x46\x8c\xb5\ +\xcb\xb8\x07\x86\xb8\x8b\xf6\x85\xb9\x6d\xb4\x43\x3c\x34\xec\x6d\ +\x9c\xb1\xd8\xd1\x6f\xc8\x27\x91\x48\x24\x8e\x19\xeb\x3e\x37\x87\ +\x30\xe4\x33\x84\xf8\xb9\xbc\xcf\xcf\xdb\xb1\x7c\x62\xfb\xc0\x10\ +\x1f\x01\x9d\xdb\x44\x1d\x97\x5f\x5a\x63\xc0\xe4\xee\x73\x03\xd1\ +\xaf\xa5\x05\xf5\xa7\x1b\x41\x2b\xb9\x16\x53\xed\xc4\x18\x9b\xc4\ +\x9c\x42\xec\xfb\x50\x3c\x57\xd7\xbc\x06\x1a\xee\xe9\x23\x06\x6c\ +\x23\xa2\x6a\xd0\x5f\xe0\xb1\xdd\xb6\xb5\x6b\xc3\x8f\xc5\xb9\x2d\ +\x26\xba\x71\xe7\xf0\x3e\x1e\x52\x4e\x89\x44\x62\x2b\xe4\x69\x9c\ +\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\xe4\xc9\x9f\xd8\x1b\x70\x70\ +\xc5\x19\x5b\xcb\x1f\x12\xda\x13\xa1\xcd\x1b\x18\xcb\x7d\xef\x27\ +\x51\x9b\xc0\x5d\x0c\xe4\x6d\x3a\x35\x34\x78\x00\xe4\x4d\xee\x6d\ +\x37\x6e\xd3\xec\x9d\xe0\x2e\xc6\x7e\x1b\x1c\x6a\x5e\x7b\xc2\x36\ +\xc7\xcd\x9c\xe1\x99\x8a\x13\xfd\xe3\x70\xbb\x0f\xf8\x23\xdb\x0d\ +\x89\x44\x22\x31\x8a\xf6\xf3\x74\xe8\xb3\x31\xda\xb4\x9f\xb1\x80\ +\x7f\xae\x4e\x61\x9f\x9f\xb9\xb5\xed\x90\xd0\x6d\x72\x5a\xe7\x47\ +\x84\xb6\x7a\x18\x90\x33\x17\x91\xe3\x21\x9a\xd7\x0f\x01\x75\xe9\ +\x49\xf2\x9d\x4a\x39\x76\x19\x74\xac\x1d\x91\x77\xfb\x39\x88\x3e\ +\x6d\x7c\x60\x48\xd6\x62\x4a\xb7\x0d\x10\x2f\x91\x48\x24\xf6\x8c\ +\xfc\xa8\x49\x24\x76\x87\x7c\xa0\x96\x48\x1c\x31\xf2\xe4\x4f\x3c\ +\x2a\xf8\xcd\xef\xa6\xf0\x13\xc1\x7d\x23\x1f\x4f\x92\xa1\xd8\x8f\ +\xf6\x24\x9a\xd3\xb1\x76\xc0\x80\x76\xd0\x86\x60\x7e\xed\x78\x1e\ +\xf4\x58\x22\xb9\xa1\x03\xe0\x2e\x31\x34\x40\x3e\xde\xf7\x9d\xdb\ +\x1e\xe0\x5d\x6b\x31\xe7\xb8\xd9\x66\x38\x86\xe2\x38\xc6\xe2\x3d\ +\xd2\xa1\x4f\x24\x12\x89\x3b\x47\xfc\x3c\x6d\xe9\x31\xec\xf3\xf3\ +\xb7\xb6\x3b\xf6\x41\xef\x06\x8d\x6e\xa8\x0f\xc0\x60\x3f\x86\x8c\ +\xd6\x39\x35\xed\x01\x03\xa2\xbd\x20\xa6\xd7\xa6\x3a\x17\xec\x92\ +\x39\x0f\xf9\x0f\x75\x39\x22\xfa\xb8\xed\x90\x6c\x13\xc0\xdf\x52\ +\xda\xca\x7f\x57\x18\x6b\x3f\xf6\x6f\x0c\x43\x63\x91\x48\x24\x12\ +\x0d\xf2\x23\x22\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\x93\x3f\ +\x71\xa7\xd8\xf7\xcd\x1e\xe2\x6f\x1b\x7b\x93\x93\x21\xb6\x71\xef\ +\x27\xd1\x8c\x4e\x43\x3d\x65\xb6\x93\x3e\x6c\x1a\x44\x92\x69\xf3\ +\xd9\x38\x8f\x19\x7d\xbf\x77\xc4\x1c\xb7\xcd\x77\xdd\xc0\xc4\x98\ +\xd1\xf6\x3e\xc6\xc6\xdb\xdf\xb2\x6d\xb8\xb5\x21\x7c\xd8\x86\x42\ +\xc7\xee\x46\x6c\xd9\x7c\x0f\xde\xee\x10\xa6\x74\x89\x44\x22\x91\ +\xb8\x3d\xe2\xe7\xac\xd3\xeb\x3e\x7b\x77\xf9\xd9\x8c\x58\xfb\x84\ +\xf7\xa7\xc2\x19\xeb\x40\x4f\xef\x1d\x6b\x6c\x80\x40\xde\x0b\x3c\ +\xb5\x29\xd4\x7e\x38\x1a\xa7\xe8\x3f\x65\xbb\x49\x5f\x6f\xc4\xd9\ +\x21\x90\xc7\x3e\xe2\x7b\xff\x62\xec\xb9\x7d\x0e\xc3\x94\x48\x24\ +\x12\x63\xc8\x8f\x89\x44\x62\x77\xc8\x07\x6a\x89\xc4\x11\x23\x4f\ +\xfe\xc4\x4e\x71\x1f\x37\x73\x43\x07\xf1\xb6\x39\x3c\xc6\x13\x22\ +\x8e\x85\xf7\x6f\x6a\x7c\x36\x1e\x83\x6d\x06\x4d\x12\x68\x73\x18\ +\x0d\x03\xc5\x3a\xe3\xa9\x0e\xdd\x17\x3c\xef\xa1\xfc\x37\xc5\xe8\ +\xe0\x04\x78\x1b\x6e\x7b\x88\x63\xb2\x05\xda\x6e\xb4\xc3\x3a\x35\ +\x34\x8f\x64\x08\x12\x89\x44\x22\x11\xe0\x9f\xff\x8e\xb1\xeb\xc0\ +\xbe\xae\x01\x6d\xfb\x40\xcd\x61\x48\x39\x02\x37\x6b\xf3\x1f\x8a\ +\x0d\x19\xed\x1a\xe3\x5d\xff\xcc\x63\x6c\x6b\xdb\xd0\x63\x31\x86\ +\x62\xfa\x32\x54\xec\x87\x89\x14\x43\x4e\x82\x01\xd1\x20\x7a\xb1\ +\x76\x0c\xe4\xd0\xc6\x1f\x92\x6d\x82\xd8\x2f\x8f\x33\xb7\xaf\x89\ +\x44\x22\x31\x03\xf9\x91\x92\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\ +\xe4\xc9\x9f\x78\xf0\x18\x3a\x88\x77\x31\x53\x3c\xf8\x93\x03\x09\ +\x4e\x74\x14\xaa\xb1\x3e\xac\x1b\x9f\x8d\xfb\xee\xb9\xc4\x9c\x26\ +\xf2\x9b\xca\x6d\x36\x3c\x40\x0c\x16\xda\x1b\x69\x7a\x10\xbd\x5c\ +\x26\xf2\xde\x18\x9b\xc4\x1a\xe8\x43\x0f\x1e\xab\x97\xac\x60\x57\ +\xb9\x1e\x10\xa6\xba\x34\x36\x0c\x11\x8f\x70\x48\x12\x89\x44\x22\ +\x61\x18\xba\x5c\xc6\x6b\x43\xac\xef\x02\x53\xd7\xa3\x1e\xe6\x24\ +\xd5\xda\x18\xef\x7d\xaa\x08\xf2\x43\x83\x77\xc1\xf3\x5d\x97\xa3\ +\xdb\x3b\x86\xfa\x49\x34\x86\xeb\xe2\xb6\xe8\xc5\xdd\x31\x86\xf2\ +\x1f\xed\xd3\x1a\xc4\xee\x02\x9b\xf6\x33\x91\x48\x24\x26\x90\x1f\ +\x29\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x89\x07\x8f\ +\xb1\x83\x78\x17\xb3\xc5\xfb\x3a\x41\x90\xfb\x5d\xb5\x3d\x34\x4e\ +\xbb\x68\xdb\xfb\xd0\xeb\x8b\x0b\x1c\x2d\xdf\x60\x9b\xdc\x26\xc2\ +\x4d\x62\x34\xee\x9a\x1c\x77\x8a\x98\x84\xb7\x19\xdb\x6f\x73\xb9\ +\xcb\xdc\xee\x08\x53\xdd\x89\xc3\xb3\x0e\x63\x43\x96\x48\x24\x12\ +\x89\x87\x8d\xa1\xcf\xf5\xbb\xfa\xac\x1f\x6b\x67\x30\xa7\x0d\x12\ +\x75\x11\xd4\xd5\x86\x8c\xa2\xfd\x06\xd7\x40\x88\xb5\x58\xe7\xb7\ +\x6d\xdc\x88\x90\x72\xaf\x0b\xdb\xe6\x3b\x27\xa9\xb9\xb1\x63\x6e\ +\xfb\x82\xf7\xb9\xcd\xa9\x6d\xdb\xed\x86\xe0\xbe\xae\x9f\xdb\xbf\ +\x44\x22\x91\x98\x81\xfc\x48\x49\x24\x76\x87\x85\xd5\x89\x44\x22\ +\x91\x48\x3c\x3c\x8c\xcd\x0a\xef\xe2\xc6\x79\x0c\xbb\x98\xa9\x7a\ +\x8c\xd1\x58\xa1\x83\xb0\xd9\xb4\xcd\x29\x9f\x4d\xe2\x0d\xd9\x46\ +\xbe\xa6\xe9\x04\x6a\xdf\x0c\x1e\x63\x28\xd6\x5d\xe1\x46\xdb\x9e\ +\x23\x84\x21\xd7\x31\xb8\xef\x8d\x38\x73\xe1\x6d\x4d\xa1\xd5\x6f\ +\xd5\xd0\x61\x63\xc6\x50\x6f\x84\x47\x38\x44\x89\x44\x22\x71\xd4\ +\x88\x9f\xeb\x7e\xa9\xde\x16\x9b\xfa\xa3\xed\x31\xfb\x28\x27\x3d\ +\x74\x01\x9a\x73\x51\xf2\x46\xdc\x56\x6a\x3c\x9c\xf3\xf8\x73\x42\ +\x0c\x61\xc8\xcf\x63\x7a\x73\xa8\x5d\xb6\x0d\xda\x36\xb6\xcd\xb5\ +\xa2\x09\x30\xd5\x87\x43\x80\x8f\xe3\x14\x5c\x8f\xda\x37\x47\x4b\ +\x47\x7e\x5f\x38\xa4\xf1\x4b\x24\x12\x89\x44\xe2\x01\x21\xbf\xa1\ +\x96\x48\x1c\x31\xf2\xe4\x4f\x3c\x78\xcc\x39\x88\xb7\xbd\x21\xbd\ +\xaf\x13\x64\x2a\xdf\xa1\x9c\xdc\x7e\x5d\xbe\xfb\x1c\x07\xc4\x1e\ +\xb5\x1b\x53\x88\xd3\xdc\x9c\x10\x62\xb2\x8d\x06\x31\xae\xfb\xb6\ +\x88\x31\xe7\xc4\xf6\x18\x6e\x17\x7d\xda\xf8\xeb\x62\xdd\xc0\x50\ +\x12\xb1\xc1\xb6\x81\x3d\x20\x36\x31\x96\x7f\x4c\x69\x5f\x98\xea\ +\xea\x26\xed\xde\xc1\x90\x25\x12\x89\x44\xe2\x1e\x31\x74\xc9\xdc\ +\x04\x73\xfc\x61\xd3\x5e\xfb\xd6\xb5\x35\xd7\xae\x05\xfd\xac\x41\ +\xf8\x6e\x1b\x67\x0c\x16\xba\xc2\xe3\x57\x84\xb6\xb7\xc1\x58\xbe\ +\x6d\xbb\x73\x31\x14\xef\x46\xce\x0d\xc6\xda\x59\xe7\xb7\x0b\xa0\ +\xed\xb1\xbe\x0e\xf5\xe5\x50\x30\x96\x73\x22\x91\x78\x74\xc8\x53\ +\x3d\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\x93\x3f\xf1\xa8\xd1\ +\xde\xbc\xc6\x03\x1e\xb2\x78\x03\xd9\xda\x46\x8c\xf9\x45\xb9\xa3\ +\x8d\xb7\x29\x86\xda\x1f\x82\xe7\x30\x85\x9a\x43\x63\xdc\xe6\x38\ +\xb7\x4d\xc7\x58\xdc\x1e\xef\x74\x35\x1e\x80\xd9\xb6\x21\x80\x28\ +\x73\x44\x5d\x6c\x0a\x68\x79\xc0\x65\xee\x77\x1b\x4c\xe5\xe3\xd8\ +\x69\xfb\xee\xec\x68\x79\x60\x48\x36\x04\x4f\x60\x8d\xad\xe7\xea\ +\xf5\x18\xd6\xe9\x6f\x8b\x4d\xba\x34\x85\x39\x71\x12\x89\x44\x22\ +\xb1\x3d\x66\x5e\x5e\x0e\x0e\x43\xd7\xba\xc8\x3b\xdd\xf6\x6b\x4e\ +\x7f\xdb\x98\x43\x88\xb1\x7b\x74\xd3\x40\xeb\x1f\x6d\x37\x05\x62\ +\xe3\xa7\x23\xd9\x84\xb7\xe3\x68\xda\xbb\x4d\x3b\x2d\x6e\x1b\x6b\ +\xc8\xbf\x4d\x3f\x62\xaa\xad\x29\xbf\x5d\x61\x57\xe3\x76\x97\xf0\ +\x71\x79\x88\xb9\x27\x12\x89\x8d\x90\xa7\x79\x22\xb1\x3b\xe4\x4f\ +\x3e\x26\x12\x89\x44\xe2\x71\x02\x33\xc6\xa9\x59\x63\xd4\x4d\xd9\ +\xba\xce\xf5\xb1\x6e\x75\x73\x11\xed\x37\xf5\x05\xe6\xf8\x54\x1b\ +\x10\x61\x15\x01\x64\x5c\x54\x68\xf9\x75\x60\x5c\x38\x08\x51\xdb\ +\x30\xde\x03\xf9\xff\xfb\x60\x0d\x3b\xab\x2b\x40\x9b\x6d\xdb\x76\ +\x34\x03\xa0\x77\x1b\x77\x6b\x6d\x5a\x1e\x70\x59\xd4\x0d\xd9\xdd\ +\x48\x60\x06\xe6\xb8\xc4\xf6\xdb\x76\x07\xf3\x88\x98\xe3\xb0\x36\ +\x88\x60\x46\xa2\x08\xe3\xa1\x50\xb7\x2e\x6d\x33\x5b\x0c\xd7\x6c\ +\xac\xeb\x12\xda\x9e\xdb\xfe\x3e\xf3\x4c\x24\x12\x89\x44\xff\xfa\ +\xf1\x90\x30\x94\x33\xae\x19\x2e\xf7\xeb\x87\x5f\x73\x7c\x9b\x73\ +\x8d\x9a\x83\xd1\x38\xa6\x40\x15\x6d\xfc\x41\xdb\xba\xf6\x23\x86\ +\x72\xe9\xf5\x21\x04\x6b\xdb\xdb\x15\xbc\x3d\xd4\xbe\xed\x02\xdb\ +\xe6\xbb\x8f\x3e\xb6\x58\xd7\xc7\x5d\x8d\xc1\xae\x71\x17\x63\x93\ +\x48\x24\x12\x89\xc4\x23\x42\x7e\x43\x2d\x91\x38\x62\xe4\xc9\x9f\ +\x38\x3a\xe0\xa0\xf7\x9b\xfb\x4d\x6f\x1e\x37\xf1\x99\x3a\xb9\xee\ +\xfa\xa6\x95\xb9\xcc\x4c\x7e\x4e\x6e\x37\xfa\xe6\xb1\x9b\x7a\x28\ +\x16\x7d\xdd\x0e\xa0\x40\x30\x62\x0f\x04\x93\x8a\x18\x62\x1d\xdc\ +\xb6\xf5\xf1\xb8\x1d\x21\x70\x43\x20\x18\x47\xf1\x14\x62\xfc\x08\ +\x6f\xdb\xeb\x16\x73\x62\x6f\x8c\x81\xc6\xa6\x72\x70\x78\x2e\xd1\ +\x76\x57\xf9\xb5\xb1\xe6\xe4\x03\xdc\xa6\x7d\x8f\x3d\xd6\x97\x75\ +\x6d\x27\x12\x89\x44\x62\x73\xf8\x67\xed\x21\x7e\xc6\x8e\x5d\x0f\ +\x80\x31\xf9\x14\x62\x1f\x6f\xd3\x6f\xcf\xab\xc5\x6d\x62\x02\xad\ +\xff\x58\x3b\xfb\x82\xb7\x0f\xc2\xff\xe0\x6a\x2e\xa6\xfa\x5e\xe3\ +\x0e\x60\xaa\x99\xe8\x17\xc7\x64\xd7\xb8\xcb\x31\xbe\x0d\xd0\xf7\ +\x87\x92\x6b\x22\x91\xb8\x15\xf2\x54\x4f\x24\x76\x87\x7c\xa0\x96\ +\x48\x1c\x31\xf2\xe4\x4f\x1c\x3d\xfc\x24\x88\xb3\xcb\x78\x63\x39\ +\xa4\x9f\x83\xb1\x93\xeb\xbe\x66\xb1\x35\x9f\x19\x1d\x1a\x1a\x0b\ +\xaf\x23\x7a\x7d\x6c\x0d\x84\x9f\x5a\x34\xa9\x7f\x6d\x3d\x61\x13\ +\x11\xc3\x7b\xbb\x73\x5c\xdd\x36\xa2\x8d\x43\xc4\x06\x06\x00\xd5\ +\x50\xac\x21\x44\xdb\x39\x39\x02\x6d\xec\xc1\x1c\x77\x04\xcf\x6f\ +\x93\x3e\xcd\x45\xdb\xdf\x4d\xc7\x61\x1d\xf6\x31\x1e\xc0\xae\xf2\ +\x4b\x24\x12\x89\x84\xa2\xfd\xbc\x3e\x84\xcf\xd9\x75\xd7\x90\x98\ +\xe3\x26\xd7\x1b\xf8\xc1\xde\xfd\xdd\xf7\xd0\xaf\x2d\x31\xe7\x7d\ +\xe3\xb6\x6d\x8d\xf9\xbb\x3c\xd6\x11\x9b\xb6\x39\x95\x67\x1b\x7b\ +\x1d\x36\x6d\xfb\x3e\x10\xfb\xf4\x10\xf2\x4d\x24\x12\xb7\x42\x9e\ +\xe6\x89\xc4\xee\x90\x0f\xd4\x12\x89\x23\x46\x9e\xfc\x89\xa3\xc5\ +\xdc\x1b\xc8\x6d\x6e\x34\xdb\x13\xeb\xbe\x67\xae\xc8\x07\x39\xd4\ +\xbc\x9c\x10\x61\x94\xf7\x6c\x22\x62\x00\xd4\x2d\x82\xd3\xec\x07\ +\x64\xe2\xb3\xe9\x5f\x29\x8f\x61\x46\x5a\xeb\x31\x16\x64\x04\x30\ +\x9d\x1b\x7f\x4e\x58\x8f\xd5\xda\x6e\xd4\x87\x03\xc2\x06\x43\x39\ +\x89\x5d\xf5\x7f\x28\x1f\xdf\xe5\x63\x63\x9f\x48\x24\x12\x89\xdb\ +\x61\xea\x33\xfc\x3e\x3e\x73\xc7\xf2\x99\x9b\xcb\x9c\x6b\x92\x5f\ +\x57\x1e\xda\x35\x65\x17\x39\xdf\x77\xbf\x87\xf6\xcf\x36\xfb\xd6\ +\xf7\x21\x10\xe9\x6d\x30\xd5\x7e\xdb\x66\x22\x91\x48\xec\x19\xf9\ +\x51\x93\x48\xec\x0e\xf9\x40\x2d\x91\x38\x62\xe4\xc9\x9f\x38\x1a\ +\xc4\x1b\x63\xa0\x3d\xf8\xe7\xdc\xf0\xce\x9d\x81\x6e\x12\x7b\x2e\ +\x10\x33\xc6\x69\xf9\x31\xc4\x5c\x60\xdf\xf2\x43\xe0\xb4\xc0\x95\ +\x53\x01\x46\xb0\xcd\x83\xb2\xd8\xe4\x18\x5a\x1b\x4f\x25\xa6\x35\ +\xa4\xef\x39\x0e\x18\x46\x55\xf4\x07\x5a\x59\x8d\xb9\x25\xda\xf8\ +\x8e\x81\xb4\x66\xb5\x05\xfb\x98\xe3\x6d\xf3\xdb\x15\xc6\xfa\x39\ +\x06\xef\x43\xcc\xbf\xe5\xb7\xc5\x54\x2e\x1e\x7f\xd3\x7c\x13\x89\ +\x44\x22\xb1\x19\x86\x3e\xcf\xb7\xf9\xec\xf5\xeb\xc5\xa6\x68\xdb\ +\xf7\x6b\xcc\x6d\x3e\xff\x87\xfa\x14\x31\x14\xdb\x7d\x6e\xd3\xee\ +\xae\x71\xdb\x71\x88\x18\x8a\xe5\xb2\x6d\xdb\xd9\xc4\x0f\xb6\x11\ +\xee\x37\x15\xa3\xf5\xd9\x17\x62\xfb\xeb\xda\xdc\x66\x9c\x12\x89\ +\x44\x62\x0d\xf2\xa3\x25\x91\xd8\x1d\xf2\x81\x5a\x22\x71\xc4\xc8\ +\x93\x3f\x71\xd4\x88\x27\xc0\xae\x66\x97\x43\x27\xd5\x36\xb1\xe7\ +\x9e\x9c\x73\x62\x7b\x2c\xd8\x82\x5e\xe7\xd3\xda\xf7\x10\x05\x1e\ +\x48\x64\x78\x88\x56\x1f\xc4\x05\x9e\x75\xb0\x19\xc2\x3a\x3d\x40\ +\x1b\xc1\x84\xc9\x0d\x1b\x8f\x3b\xe6\x04\x71\x54\xcf\x69\xa3\x85\ +\xfb\x00\x1e\xaf\x06\x8d\xc1\x03\xaa\x9d\xc0\xd5\x91\x77\x3a\x62\ +\x20\xcc\x20\x86\x7c\xef\x03\x31\xdf\x76\x18\x9c\xdf\x67\xae\x73\ +\xc7\x2b\x91\x48\x24\x12\x77\x83\xf8\x99\xdf\x7e\x46\xbb\x6e\xee\ +\x67\x77\x7b\x5d\x19\xc3\xd8\x75\x66\x1f\xd7\x88\xa1\xb6\x1e\xca\ +\xb5\x68\xee\x78\xde\x06\x71\x7c\xb6\x69\xcb\xfd\xa7\x7c\xc7\xf6\ +\xc1\xdc\xfe\x0d\xf9\x03\xee\xdb\xea\x87\x62\x8e\xc5\x00\xc6\x72\ +\xf0\xfc\xa2\xef\x9c\x7c\xb7\x81\xb7\xb1\xaf\xf8\x89\x44\xe2\xa0\ +\x91\xa7\x7e\x22\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\x7f\xe2\ +\x68\x31\x75\xf0\xfb\x4d\xed\x26\x33\x4e\xb7\x1f\x8a\xbb\xe9\xcc\ +\x75\x9b\x13\x73\x4e\x1b\x31\xee\xa6\x39\x01\xd5\x5f\x08\x7f\x50\ +\xd6\xf6\xb9\x8d\xeb\x0f\xd5\xf6\x0d\xcf\xe1\x46\xfb\xb2\xc5\x1c\ +\xa3\x7e\x4c\xb6\x4d\xba\x6d\x3b\xdb\xc0\xdb\x8d\xb1\x86\x64\x0e\ +\xd7\x45\x6c\xd3\xfe\x50\x9c\x16\x73\xe3\xb6\xf9\x8e\x61\x2a\x5e\ +\x8c\xe1\x18\x8b\x35\xc7\x26\x91\x48\x24\x12\x87\x01\xff\xcc\xde\ +\xf6\xf3\x7a\x53\xff\x68\x7f\x9f\xd7\x0b\xb4\xed\x39\xdc\x75\xdb\ +\x0f\x15\x71\xac\xe2\x7e\x8c\x18\xb2\x01\x7c\xac\x01\xa7\x5b\xdf\ +\x31\x6c\x62\xfb\x10\xf1\xd8\xfb\x97\x48\x24\x26\x91\xa7\x7f\x22\ +\xb1\x3b\xe4\x03\xb5\x44\xe2\x88\x91\x27\x7f\xe2\x68\x31\xf7\xe0\ +\xdf\xe4\x06\x1c\x80\x7d\x1b\x7b\xd3\x18\x9b\xa2\x6d\x73\xaa\x3d\ +\xd8\xcd\xcd\x67\x1d\xe6\x3e\x2c\x8b\x76\xed\x94\xa3\xfa\xcf\x48\ +\x6c\x9d\xc9\x36\xfa\x19\xcd\xce\x06\x62\x01\x63\xf1\x5c\x3f\x84\ +\xb1\xbc\xc6\x7c\x5c\x17\xfd\xa6\xe2\x4f\x61\x2c\xdf\x16\x43\xf1\ +\xe7\xfa\x0e\xa1\x8d\xd7\xc6\x8a\xfa\xa9\x76\xda\x71\x48\x24\x12\ +\x89\xc4\xed\xb1\xcb\xcf\x56\xff\x3c\x47\xbc\xb9\x9f\xed\x63\xd8\ +\x24\xaf\xbc\x3e\x28\x7c\x1c\xb6\x1d\x8f\xa1\xf9\xde\x5d\x8e\xed\ +\x50\xfe\xa0\x7b\x98\x48\xa8\xf5\x3d\x14\x78\x1f\x0e\x35\xbf\x44\ +\x22\xf1\xe8\x90\x1f\x33\x89\xc4\xee\xb0\xb0\x3a\x91\x48\x24\x12\ +\x89\xe3\xc0\x8d\x9b\xf0\x5b\x22\xc6\xdb\x36\xf6\x3a\x3f\xcc\x7e\ +\x7d\x6b\x11\x7d\xa3\x1e\x72\xdf\x1c\xbb\x9c\x45\xaf\x7d\x98\x66\ +\x0d\x47\xb3\x1b\x2e\x9e\x5c\x50\xc4\x7c\x81\x01\x13\xc2\xe5\xa8\ +\xb1\x45\x7d\x1b\x03\x80\xbe\x95\xbb\xcf\x90\xfd\xa6\x40\xac\x36\ +\xc7\x75\x18\xf3\x81\x6c\x2a\x27\xd7\xa1\xde\x45\xee\x73\xe0\xb9\ +\xc6\x9c\xdb\x3c\xe6\xe6\x02\x3b\x8f\x01\x44\xda\xd1\xb6\x35\x86\ +\x75\xfa\x44\x22\x91\x48\x6c\x8e\x5d\x7e\xb6\xfa\x67\x79\x7b\x8d\ +\x98\x73\xcd\xf0\x6b\x8b\x6f\xeb\xf2\x9a\x13\xf3\xbe\x31\x95\xa3\ +\xf7\x73\x97\xe0\xd8\x6f\x10\x78\x5d\x7e\xc4\xae\x93\x1c\x01\x9a\ +\x89\xfb\x1c\xfc\x68\xd3\x23\x8a\x3b\x4a\x75\x63\xf8\x79\x01\xac\ +\x3b\xae\x23\x6e\xdb\x9f\xc9\x31\x4c\x24\x12\x89\x44\x22\x31\x07\ +\xf9\x40\x2d\x91\x48\x24\x12\xc7\x83\x4d\x6e\x20\xe7\xde\xdc\x6e\ +\x72\x13\x3c\x84\x75\x39\xb5\xf1\xa7\x78\xbf\x49\xf6\x98\xd0\xdd\ +\x36\x3f\x00\x0b\x31\x63\x8b\x31\xed\xb7\xce\x00\xca\xbc\xe1\x98\ +\x80\xd0\xcc\x69\x48\x67\x70\x91\x37\x17\x79\xaf\x2b\xed\x8c\x0b\ +\x0c\x03\x61\x09\xc8\x7b\xfe\x56\xef\x03\x43\xb1\xd1\xfe\x58\x6e\ +\xad\xfd\x98\xdd\x10\xb6\xe9\xc7\x50\x7c\xc4\x99\xbb\x39\x22\x3d\ +\x27\x67\xd8\xbb\xdd\x26\x7d\x4c\x24\x12\x89\xc4\xe1\xc3\xaf\x09\ +\xb1\x76\x1a\x9f\xf9\xed\x36\x05\xf7\x9b\x0b\xd8\xc7\x98\xeb\xe2\ +\xdf\x17\xa6\xf2\x9a\x33\x2e\x5b\x43\x02\x0f\xcd\xd9\x22\x7c\x0c\ +\x7b\x66\xf0\x33\xd2\x51\x7f\x79\x40\xab\xad\x01\xff\xa9\x18\x37\ +\x72\x99\x82\xe5\x34\x86\xdb\xe6\x7a\x28\x68\xbb\xd9\xf6\xeb\xb1\ +\xf4\x33\x91\x48\x24\x12\x89\x03\x46\x3e\x50\x4b\x24\x12\x89\xc4\ +\xe3\x05\x6e\x2a\xfd\xc6\x72\xd3\x1b\xcc\x4d\xec\xdb\x9b\xdb\x35\ +\xf7\xf4\x93\x80\xef\x3a\x7f\xb7\x71\xbb\x21\x9f\x96\x5f\x87\x76\ +\x9c\x7a\x8b\x2e\xde\x00\xb6\x66\x60\xb8\xa8\x32\x24\x1b\x83\xe9\ +\xa6\x4c\x10\xee\xc4\x62\x36\xa1\xd5\x4f\x84\x53\xfe\x53\x70\x3f\ +\xb6\xa1\xe4\x8d\x58\x6d\x9b\xdb\xa0\x8d\x19\x79\xd0\x53\x7a\xc7\ +\x90\x0c\x70\xff\xb8\x6d\x0a\xef\x23\x6a\xdf\x6e\x83\xb9\x39\xb4\ +\x76\xdb\xe4\x9e\x48\x24\x12\x89\xc3\x04\x3e\xd3\x71\x3d\xf1\x1a\ +\xd8\xf6\x73\x7e\x8e\x5f\x7b\xed\xda\xf4\x5a\x36\x66\xbf\x2e\x8e\ +\xeb\x37\x6d\xef\xae\xe1\x73\x39\xcc\xcb\x30\x9e\x93\xf3\x33\xc0\ +\xed\xb5\x22\xe8\xa7\xe4\x8d\x7d\xd2\xf2\xdb\x8c\x47\x1b\x63\x08\ +\xa3\x71\x37\x68\x70\x4e\x3b\x0f\x11\x9b\xf6\x0b\xf6\x8f\x75\x2c\ +\x12\x89\x44\x22\x91\xb8\x23\xe4\x03\xb5\x44\x22\x91\x48\x3c\x7e\ +\x6c\x73\x83\x0f\xc0\x6f\x8e\x2f\x6c\xe2\xcd\xa9\xfb\xcc\xb9\x61\ +\x8d\x36\x2d\x3d\xc7\x3f\x62\x1b\x1f\x07\xfc\xea\x37\xbe\x04\x71\ +\xd1\x25\xc6\xa5\xda\x3b\xe8\xa0\xb3\x92\x15\x16\xab\xf7\x60\xce\ +\x69\xc8\xad\x1e\x02\xc3\x49\x11\xdb\xa5\xcc\xec\x6b\x6e\x4d\x0d\ +\xf5\x48\x48\xa2\xd5\x8d\xd9\x7a\xd8\x5d\x60\x2a\x9f\x39\x40\x2e\ +\xed\x16\x71\xdb\xf8\x73\x30\xd4\xee\x18\xee\x22\x9f\x43\xc5\x31\ +\xf7\x3d\x91\x48\x24\x1c\x7e\xbd\x98\x7b\xdd\x18\x43\xfb\x99\x3a\ +\x15\x0f\xb6\x9b\x5c\xab\xe6\x60\xea\x33\x7d\x57\x7d\x9c\x8d\x2d\ +\x2f\x30\x98\x2f\xf5\xe6\x61\x82\xb1\x50\x1c\xc3\x3b\xeb\x90\x62\ +\x4e\x73\xb0\x99\xb4\xf3\x0e\x85\x8e\xb5\x3e\x73\xda\x59\x07\x84\ +\x8f\xdb\xa1\x62\x17\x7d\x4d\x24\x12\x89\x44\x22\x31\x89\x93\x6b\ +\x81\xd1\x89\x44\xe2\xc8\x90\x27\x7f\xe2\x51\x03\x07\x38\x6e\x2a\ +\x77\x71\xa0\xaf\xbb\x39\x6d\xdb\xd8\xf4\x66\xd6\xfd\x6f\x7b\x13\ +\xdc\xf6\xf9\xb6\xf1\x6e\x0d\x49\xc4\x73\xba\x91\x4c\x4c\x76\x46\ +\xa2\x71\xba\x32\xb4\xe0\x03\xfd\x9c\x85\xa0\x99\xcd\x3d\x48\x84\ +\x21\xba\x35\xe2\x18\x1d\xf2\x98\x79\x9f\x1f\xeb\x3e\x4d\x24\x12\ +\x89\x63\x45\xbc\xa6\xed\xeb\x33\xfe\x31\xcf\x09\x1c\x1c\x47\x29\ +\xe2\x1c\x69\xee\x9c\xc9\xe1\xfb\xe2\x50\xc6\xca\xf3\x19\x43\x9b\ +\xe7\x6d\xf3\x8f\xfe\xb1\xed\xb1\x78\xb0\x71\xdb\x75\x6d\xce\xb1\ +\x49\x24\x12\x89\x1d\x20\x3f\x6a\x12\x89\xdd\x21\xbf\xa1\x96\x48\ +\x24\x12\x89\xc7\x09\x9f\x31\xb6\xf5\x1c\x44\xdb\xbb\x98\x79\xa2\ +\x8d\xa9\x76\x70\xb3\x1d\x6f\xe0\xc7\x80\x18\x73\xec\x6e\x8d\xa9\ +\x46\xa2\x4e\x12\xe2\x82\xcd\x50\xe7\x3c\x59\xd3\x81\xc4\x02\xcf\ +\xe8\xdf\xf9\x0c\xc5\x88\x58\xa7\x37\xcc\x34\x7b\x90\x68\xfb\x36\ +\xc4\x4f\xf5\x3f\xea\xb8\x3f\x6c\x3b\x54\x78\x6e\x53\x7d\x4a\x24\ +\x12\x89\xc4\xc3\xc6\xd4\x67\xfc\x6d\xaf\x51\x8f\xe1\xfa\xc1\x79\ +\x93\x6c\x63\xf3\x27\xf4\x11\x73\xb1\x9e\x1e\xbc\x91\x73\x81\x38\ +\x9b\xfa\xec\x1a\xde\x3e\xfb\xa4\xe4\x20\x60\xe7\xb6\x31\xe7\x28\ +\xdf\x06\xad\xef\x58\xac\x98\x9b\xdb\x0c\xf9\xb6\xba\xd6\x26\x91\ +\x48\x24\x12\x89\xc4\x41\x22\xbf\xa1\x96\x48\x1c\x31\xf2\xe4\x4f\ +\x1c\x25\xa6\x0e\xfc\xa1\x9b\x73\xd8\xaf\xbb\x69\x07\xa6\x6c\x22\ +\x36\xb5\x8f\x58\x97\xcb\x26\xb8\x55\xac\x39\x83\x32\x53\x8f\x69\ +\xc8\xac\xbf\x9a\x5e\x17\x33\xb1\x53\xe4\x70\x27\x12\x89\x44\x62\ +\x08\x7e\x7d\x18\xaa\x81\xbc\x76\xdc\x11\x6c\xe0\xdb\xe5\x9c\x39\ +\xdf\x3c\xa3\x8f\xd8\x3d\xf4\x7d\xd5\x74\xbd\x87\xd8\xb7\x68\xb7\ +\x8b\x3e\x33\xde\xcc\x31\x1c\xca\x11\x3e\x63\xf2\x44\x22\x91\xd8\ +\x13\xf2\x23\x26\x91\xd8\x1d\xf2\x1b\x6a\x89\x44\x22\x91\x38\x5e\ +\x60\x56\x19\x67\x96\x7e\x73\x8b\xda\xe9\x5d\xcf\x3c\x3d\x5e\x6c\ +\x63\x1d\x62\x2e\x73\x7d\xe6\xe0\x56\xb1\x5a\xe7\xc8\x6f\x9a\x68\ +\xb0\x1d\x5d\x08\xda\xf5\x8e\x48\x4c\x22\x87\x3b\x91\x48\x24\x12\ +\x43\xf0\xeb\xc3\x50\x8d\xed\x56\x73\x8b\xc4\x7c\x34\x83\xed\xfb\ +\xc1\x1f\xb0\xb5\x0f\xda\x1c\x55\xfe\xc8\x76\x94\x1f\x7f\x75\x1c\ +\xac\x06\x5c\x86\x7a\x4e\xb7\xa7\x6c\xaa\xce\x83\x0e\x00\x36\x6e\ +\xd7\x9a\xc5\x5c\x1c\x13\xa1\x12\x89\x44\x22\x91\x48\x1c\x1e\xf2\ +\x1b\x6a\x89\xc4\x11\x23\x4f\xfe\xc4\x51\x62\xec\x06\x77\x1b\xec\ +\x32\xd6\x18\xd0\x06\xe2\xc7\x1a\xf0\x36\x5d\x7e\xaf\x18\x4b\x62\ +\x4a\x0e\x88\x0e\xd3\x90\x39\x7f\x4d\x9d\xd8\x0f\x7c\x57\xb4\xc0\ +\x2e\x09\xbb\xa9\x67\x97\xbb\x2b\x91\x48\x24\x12\xf7\x05\x5c\x8f\ +\xee\xeb\x3a\xb4\xd7\xb6\x3d\xf8\x26\x8d\xd8\xc5\xd9\xaa\xea\xee\ +\x78\x0c\xf3\xab\x2d\x86\x83\x18\xf2\x89\x7a\x60\x9f\xc3\x13\xf7\ +\x49\x22\x91\x48\x1c\x00\xf2\xe3\x28\x91\xd8\x1d\xf2\x81\x5a\x22\ +\x71\xc4\xc8\x93\x3f\x71\xb4\xc0\xc1\x9f\x33\xca\x0e\x3b\x19\x8f\ +\xa1\x20\x63\xb2\x16\xb9\x33\xf6\x82\xdb\xee\xd7\xa1\x5d\xe5\xc8\ +\x5d\x96\x48\x24\x12\x89\xc4\x8e\x31\xe7\xc2\xdd\x5e\x9c\x61\x2f\ +\x32\x77\x8d\xea\xa1\x07\x6a\x73\x9a\xd8\x1b\xee\xa0\xf1\x75\x4d\ +\xc4\xf1\x01\x7c\xcc\xa2\xcf\xbd\x8e\x51\x22\x91\x48\xec\x07\xf9\ +\xb1\x96\x48\xec\x0e\xf9\x93\x8f\x89\x44\x22\x91\x38\x2c\xb4\x37\ +\xba\xfb\xc0\x5d\xce\x26\xd1\x1f\xfc\xed\xca\x5d\xf4\x6b\x5b\xec\ +\x64\x3c\x86\x82\xac\x93\x81\x6e\x6d\x30\x56\x61\xb0\xf2\xef\x7e\ +\xb6\xc7\xd0\xf0\x6f\x02\xdf\x3d\x43\x5b\x22\x91\x48\x24\x12\x89\ +\x1d\x01\x73\x1d\x6c\xb8\xc0\x0e\xcd\x7b\x5c\x36\xa0\xeb\xcd\x93\ +\xc2\x05\x9a\x0f\xd3\xa0\x6b\x7c\x69\x32\x10\x67\x2b\x6c\x1a\xe7\ +\x0e\x26\x10\xeb\x9a\x68\xf5\x43\x5d\xd8\x26\xcd\x5d\x0d\x69\x22\ +\x91\x48\x24\x12\x89\x83\x47\x7e\x43\x2d\x91\x38\x62\xe4\xc9\x9f\ +\x48\xdc\x01\xfc\x44\xbb\x83\x35\x84\xfb\x47\xfc\x54\x89\x1d\x8e\ +\x83\x00\xba\xd5\x4d\x0d\x8e\xe8\x69\x72\x14\x03\x98\x48\x24\x12\ +\x89\x44\x22\x31\x00\x9f\x4b\x35\x88\xe2\x3a\x57\xb2\xb9\x53\xc4\ +\xac\x79\x14\x27\x5c\x46\x0a\xfd\x18\xe7\x5e\xed\xb8\x38\x72\x9a\ +\x99\x48\x24\x1e\x39\xf2\x63\x2e\x91\xd8\x1d\xf2\x81\x5a\x22\x71\ +\xc4\xc8\x93\x3f\x91\x48\xec\x16\xed\xa7\x0a\xa6\xed\x53\xb2\x76\ +\x5a\x0f\x79\x4e\xf5\x13\x33\x91\x87\x4b\x22\x91\x48\x24\x8e\x02\ +\xed\x5c\x6a\x0c\x61\x8e\x75\x63\xaa\xb5\xc1\x05\xf3\xb1\x3e\x4c\ +\x1b\x43\x9c\x4f\x44\x3a\x91\x48\x24\x1e\x11\xf2\xa3\x2d\x91\xd8\ +\x1d\xf2\x27\x1f\x13\x89\x44\x22\x91\x38\x64\xf8\x82\xc8\x83\x00\ +\xa6\xe9\x3e\x55\x47\x3d\xb4\x2a\xe1\x32\xd7\xcb\xc6\xbf\xed\x71\ +\x39\xea\x44\x62\x0d\xfc\x70\x49\x24\x12\x89\x44\xe2\xd1\x61\xee\ +\x5c\x68\x68\x8e\x65\x55\x4f\xb5\xe1\x05\xf3\xd8\x7e\x15\x00\xdd\ +\xf5\x21\x3f\xb2\xae\x27\x12\x89\x44\x22\x91\xd8\x1c\xf9\x40\x2d\ +\x91\x48\x24\x12\x89\x43\xc5\x83\x7a\x68\xd0\x2e\xfe\x38\xdf\xca\ +\x47\x00\x33\x3c\x58\xa3\x79\xf4\x99\xe9\x9f\x38\x2e\xe4\x82\x57\ +\x22\x91\x48\x24\x1e\x2d\xe6\x5e\xe4\x46\xe6\x48\xee\xce\x7a\x28\ +\x56\xce\xad\x6e\xe0\xd0\xe6\x15\xd8\x45\xb9\x9b\x12\x89\x44\x22\ +\x91\x38\x48\xe4\x03\xb5\x44\x22\x91\x48\x24\x0e\x15\x87\x76\x73\ +\x3f\x0a\xdc\xf1\xb7\xc9\x4e\xf1\xbe\x42\x00\x99\x6c\xac\x42\x5d\ +\x31\x14\x37\x71\xa7\xc8\xc5\x9c\x44\x22\x91\x48\x24\xf6\x08\x5c\ +\x68\xe3\x16\x31\x71\x11\xae\xaa\xa9\x79\x12\x74\x31\xb6\x6f\x2e\ +\x4f\x24\x12\x89\x44\x22\x91\x48\x6c\x8a\xfc\x1f\x6a\x89\xc4\x11\ +\x23\x4f\xfe\x44\x22\x71\x03\x3b\xf9\xbf\x19\x9b\x2e\xd6\x78\x7b\ +\xee\x97\x48\x24\x12\x89\x44\x22\x71\x8c\x98\x98\x3b\xb9\x6a\x74\ +\xaa\xe4\x73\xaf\x58\x3b\xd6\x3a\x3f\x4c\x8c\x75\x37\x91\x48\x24\ +\x12\x3d\xe4\x47\x64\x22\xb1\x3b\xe4\x37\xd4\x12\x89\x44\x22\x91\ +\x78\x0c\xf0\x75\x12\x20\xd2\x9b\x62\xf2\x61\xda\x54\xe0\x21\xdd\ +\xdc\x69\xfb\x6d\x12\x36\x78\x08\xd4\xbe\x25\x12\x89\x44\x22\x91\ +\x48\xb4\xb8\xd3\x39\xc2\x50\x63\x63\x09\xb4\x72\xcc\xa3\xc2\x5c\ +\xca\x59\x98\xdd\x08\x11\xe7\x5c\xae\x74\xc3\x1b\xc6\xeb\x11\x5d\ +\xb6\x0c\x71\x27\xf0\x6e\xc7\xee\x27\x12\x89\x44\x22\x91\x48\xec\ +\x11\xf9\x40\x2d\x91\x48\x24\x12\x89\xc7\x80\xb8\x90\xb0\xeb\x45\ +\x05\xff\x32\x3b\xab\xb1\x15\x95\xa1\x04\x36\x59\x7d\x99\xb0\x9d\ +\xf3\x65\xfa\xb6\xcf\xdb\xa4\x90\x48\x24\x12\x89\x44\xe2\xf1\xe3\ +\xb6\xf3\xa4\x8d\xe6\x16\x43\x8d\xc5\x49\x4a\xdc\x5a\x6c\xd2\xd0\ +\x80\xed\x0d\xd1\x06\x1d\x8f\xa6\xa0\x37\x70\xdd\x1c\x53\x7d\xdf\ +\x64\x0c\x12\x89\x44\x22\x91\x48\x24\xf6\x8f\x7c\xa0\x96\x48\x24\ +\x12\x89\x44\xa2\x22\xfe\x12\x34\x48\xf0\x2b\xd9\xae\x57\xb2\x51\ +\x58\x8b\x01\xb8\x7c\x4c\xbf\x0d\x24\xd6\x26\x3f\x41\xd9\x2e\xfa\ +\xec\x75\x01\x28\x91\x48\x24\x12\x89\xc4\xd1\x61\xab\xb9\x45\x3b\ +\x37\x02\xbf\xe5\x84\x05\xa6\x83\xe6\xd6\x06\xaa\xb6\xb9\x39\xf1\ +\x6f\xf8\x08\x3c\xd6\x90\x0e\x18\x93\x6f\x84\xa1\xdc\x5c\x36\x23\ +\xef\x44\x22\x91\x48\x24\x12\x89\x3b\x44\x3e\x50\x4b\x24\x12\x89\ +\x44\xe2\x21\xc2\x17\x30\x76\xb2\x90\x61\xb0\x87\x69\xfa\x20\xad\ +\x94\x93\x93\x6b\xad\x65\xba\x70\x5d\x56\x65\x71\x72\x62\xcd\x61\ +\x71\x43\xa9\x9b\x18\x93\xcf\x81\xc7\x8d\x1b\xaa\x10\xb3\xd2\xd1\ +\x66\xde\xa6\xd9\xa3\xce\xe5\x99\x44\x22\x91\x48\x24\x12\x7b\x44\ +\x9c\xbb\x54\xf8\x9c\x04\x68\x67\x22\x43\xf6\xb7\x40\x6f\xb2\x33\ +\x73\xd6\xe3\x66\x31\x95\x75\xae\x33\x43\x27\x12\x89\x44\x22\x91\ +\x48\x3c\x16\xe4\x03\xb5\x44\x22\x91\x48\x24\x1e\x22\x7c\x01\x03\ +\xf5\x6d\xd7\x60\xc4\x5f\x43\x68\x50\x7c\x2b\x6d\x21\xe4\xd5\x4a\ +\x24\x42\xbc\xfe\xfa\x97\xca\xfb\x2f\xde\xe5\x37\xd5\x14\x73\x1a\ +\xdc\x26\x29\xf8\x20\x87\x66\xe3\x37\xd4\xa0\x93\xad\xd2\xa8\x01\ +\xaf\x87\x60\x3e\x06\xa7\xf0\x5d\x3b\xbc\xd4\xb3\x93\xf6\xeb\x44\ +\x22\x91\x48\x24\x12\x89\x2d\x71\xe3\xdb\xf5\xe0\x5d\x16\xe7\x1c\ +\x2e\x6f\xed\x1d\x23\xf3\x12\x88\x63\x98\x49\xb8\xf1\x90\x61\x23\ +\x03\x8b\x54\x86\x5c\x5a\x3e\x91\x48\x24\x12\x89\x44\xe2\x08\x91\ +\x0f\xd4\x12\x89\x44\x22\x91\x78\xe8\x98\xb3\x06\x33\xb5\x00\xc2\ +\x85\x13\x7d\xc8\x44\x76\x71\x5d\x5e\x5c\xae\xca\xf5\xea\xa4\xfc\ +\xf4\x4f\xfd\x68\xf9\x73\xff\xe9\x7f\x50\x4e\xae\xf5\x5b\x6a\xc3\ +\xbf\xbe\x78\xcb\xd5\x95\x9e\x3b\x18\x17\x44\x05\x1a\x8e\x8d\xf7\ +\x6d\x54\xe3\xbe\x92\x7b\xdd\xe4\x75\xbd\xac\x1b\xfb\x89\x07\x83\ +\xb6\x9d\xd0\x05\x05\x3c\x51\x73\x30\x6c\x4b\x24\x12\x89\x44\x22\ +\x91\x68\xb0\xed\x14\x81\xf3\x0d\x99\x67\x70\x9a\xe1\x41\xc8\xd8\ +\xb6\x01\xda\x69\x51\xc4\x98\x9c\x68\xdb\x69\x8c\x7b\xec\x48\x4e\ +\x5b\xa4\x9b\x48\x24\x12\x89\x44\x22\xf1\x58\x90\x0f\xd4\x12\x89\ +\x44\x22\x91\x78\x0c\x98\xbb\xb0\x11\xed\x7c\x41\x24\x2c\xf0\xe0\ +\x21\xd4\xf2\x7a\x51\xce\xce\x16\xe5\xc7\xfe\xd6\x5f\x29\x7f\xe4\ +\x0f\xfc\x4b\xe5\x1b\x3f\xf2\xb1\xf2\xea\x2b\x1f\x10\xb3\x95\x39\ +\x0c\x61\x4c\x3e\x03\x75\xf1\xc6\x09\xd4\x96\x13\x00\x92\x9b\x14\ +\xa1\x99\x40\x96\x15\x54\x75\xc3\x43\x33\xf4\x67\x51\x4e\xae\x4f\ +\x65\xb2\x73\x56\x37\x3c\x18\x5c\xac\x20\x97\x29\x10\x6c\xa4\x8d\ +\x13\xd4\xab\x93\xb2\x5a\x9e\x48\xdf\xf1\x58\xed\x84\x71\x12\x89\ +\x44\x22\x91\x48\x24\x6e\xc0\xa6\x27\x93\xe0\x84\x24\x90\xfc\x5f\ +\xb4\xf2\xf2\xff\x49\x5b\xa1\x73\x91\x79\x41\x1b\x78\xa0\xd9\xae\ +\x33\xda\xf1\x09\x10\xcd\x50\x04\xbe\xdd\xf6\x86\xfe\x08\x8d\x63\ +\xae\x5d\x22\x91\x48\x24\x12\x89\xc4\xee\x70\x72\xcd\x3f\xd3\x4e\ +\x24\x12\xc7\x88\x3c\xf9\x13\x89\x23\x02\x4e\x78\x2c\x7e\x78\xed\ +\xe0\x34\xe0\x44\x9f\x2d\x5d\xe3\x1b\x68\xfa\x60\xe9\xc5\xf3\x77\ +\xcb\xbf\xfc\xbb\x7f\x73\xf9\x65\x1f\x7f\xad\xfc\x93\xff\xdc\xbf\ +\x57\x7e\xd9\xc7\x3e\x2e\x3a\x7c\x4b\x2d\x7e\x72\x78\xa0\x18\x34\ +\xea\x6f\x81\x26\x8c\xff\x40\x23\xd3\x2c\x2b\x29\x4e\x90\x35\x25\ +\xc8\xd9\x48\x05\x6a\x2c\x58\x5d\x2f\xcb\xd5\xea\x42\x36\xa1\xf5\ +\xab\x68\x62\xbb\x12\xf9\x95\x6c\xd2\x97\x93\x25\x1f\xb2\x9d\x9f\ +\x49\xbf\x17\x2f\x97\xd3\xd5\x69\x59\x2e\xae\xcb\x62\x75\xa6\x7d\ +\x15\x1f\xb4\xa2\xf0\x3a\x91\x48\x24\x12\x89\x44\xa2\x01\xe6\x53\ +\x9c\x2a\xe0\x8f\x72\xba\x49\x0c\xa8\x53\xfb\x7a\xff\x4a\xe6\x23\ +\x4b\x99\x9b\x9c\x9d\x9e\xaa\x79\x6f\x6a\x01\xa6\xf3\x9b\x0d\x77\ +\xd9\x68\x9a\x22\xc6\x9e\x40\xcd\x7b\x13\xb4\x0e\x48\x62\xe3\x20\ +\x6b\x10\xc7\x62\x2c\x76\xec\xfc\x3e\x72\x48\x24\x12\x89\xc7\x83\ +\xfc\x84\x4c\x24\x76\x87\x7c\xa0\x96\x48\x1c\x31\xf2\xe4\x4f\x24\ +\x1e\x39\xc6\xd6\x19\xea\xc9\xef\x42\x3c\x68\x2a\x65\x29\xd4\xc5\ +\x45\x29\x2f\x3f\x39\x29\xff\xee\x1f\xfa\xdd\xe5\x73\x5f\xfe\xe1\ +\xf2\xbd\xdf\xf3\x9b\xcb\x6f\xfb\xed\xbf\xbb\x2c\x97\xcb\xf2\xe4\ +\xf4\xa9\x58\xc6\x40\xfb\x82\x25\xec\x79\x5a\x93\x68\xfb\x9a\x0f\ +\xf5\x4a\x39\xbd\x12\xd1\x19\x94\xf8\x59\xc7\xcb\x72\xb1\x7c\xb7\ +\x2c\x2f\x2f\x24\xcf\xcb\xb2\x5c\xbd\x28\xcf\x2f\xdf\x28\xef\xac\ +\xde\x29\xcf\xde\xff\x5a\x79\xf7\xfd\x37\xca\xe5\xf2\x59\x39\x39\ +\x5d\x96\x05\x1e\xa6\x49\x5f\x2e\xaf\x96\xe5\x03\x4f\x5e\x95\xa0\ +\x1f\x28\x1f\xfc\xfa\x0f\x97\x0f\xbe\xfc\xb1\x72\xbe\x7c\xad\xbc\ +\xf6\xe4\x1b\xcb\x93\x57\x3f\x2c\xcd\xbd\x5a\xd7\x9a\xb4\xb7\xfb\ +\xee\x73\x22\x91\x48\x24\x12\x89\x07\x03\x9b\x9b\xf4\x20\x32\xcc\ +\x55\xf4\x4f\x7e\xe4\x25\x3c\xfe\x27\x2d\xfe\xf0\xe7\xc5\xe5\xb2\ +\x7c\xf5\xab\x5f\x2a\x1f\xfa\xd0\x07\xca\x4b\x4f\x5f\xa5\x0c\x73\ +\x8c\xfd\x02\x0d\x78\xa2\xb1\x06\x84\xf6\x87\x69\xae\x8a\xa0\x6c\ +\x48\xe1\x18\x74\x08\xf5\x36\x18\x4d\x44\xc9\x44\x22\x91\x48\x6c\ +\x8d\xfc\x24\x4d\x24\x76\x87\x7c\xa0\x96\x48\x1c\x31\xf2\xe4\x4f\ +\x24\x1e\x19\xda\x35\x07\xe7\xfd\x64\x77\x9a\x75\x10\x9e\x60\xd9\ +\x07\xdf\xfa\xba\x2e\xcb\x72\x56\x7e\xf6\x17\x7e\xa8\xfc\x81\x3f\ +\xf0\x3f\x2d\x67\xef\xbf\x52\x7e\xdf\xef\xff\x4b\xe5\xa3\xaf\x7d\ +\xa4\x9c\x9c\x9c\x8a\x8d\xf8\xc8\x9b\xdf\x08\xeb\x05\xde\x12\x9e\ +\xcb\x10\x2c\xb4\x9a\xa0\x51\x2c\x50\x9d\x96\x0b\x92\x4b\x91\x3c\ +\x2f\x57\x57\xef\x97\xab\xe5\x17\xca\xd7\xae\x3e\x5f\xbe\xfc\xe6\ +\xa7\xcb\xbb\x5f\xfb\x7c\x79\xf1\xe2\x2b\xe5\xd9\xb3\x37\x4a\x59\ +\x5c\x95\xd7\x5e\x3d\x2f\x1f\x90\xed\xec\xf4\xaa\x9c\x4b\xce\xba\ +\xb0\x75\x52\xce\xce\xce\x25\xc8\xa2\xac\xae\x4f\xca\xea\xf2\xac\ +\x2c\xf1\x0d\xb6\xcb\x0f\x96\x37\xbe\x78\x5a\x3e\xf0\xca\xdf\x53\ +\x7e\xcd\xaf\x97\xbe\x2f\x9e\xc8\x88\x2c\xb4\x6d\xe6\x30\x96\x68\ +\x22\x91\x48\x24\x12\x89\x47\x0d\x9d\x8c\xdc\xc4\x80\xdc\x97\x57\ +\xf4\xb1\xda\x8a\x73\x8d\x77\xdf\x79\xaf\xfc\xf0\x8f\xfc\xa5\xf2\ +\xde\xbb\x6f\x97\x7f\xec\xb7\xfc\xb6\xb2\x38\x3d\x2d\xa7\x8b\xf8\ +\xdf\x37\x3c\x88\xfa\x6e\x0c\xcf\xa3\xad\x47\xe1\x46\x0d\x6a\xee\ +\xf2\x12\x13\x86\x90\x39\x52\x8c\xc5\x9f\xc9\x36\x01\xfa\x88\x12\ +\x73\x2b\x9d\x23\x4a\x9f\x16\xa4\x44\xa3\x3a\x45\x08\x70\x03\x6a\ +\x3d\x8e\x75\xfa\x44\x22\x91\x48\xcc\x41\x7e\x92\x26\x12\xbb\x43\ +\x3e\x50\x4b\x24\x8e\x18\x79\xf2\x27\x12\x8f\x0c\x71\xdd\xc2\xd7\ +\x1f\x5a\x19\x61\x04\xaa\x05\xd6\x4a\xf4\x27\x14\xb1\xb8\xf3\x85\ +\x2f\xfc\x7c\xf9\xe7\x7f\xd7\x3f\x58\xbe\xf5\x57\x7c\x4b\xf9\x8d\ +\xff\xad\x7f\xaa\xfc\xe3\xbf\xe9\x9f\x2e\x2f\x44\x7d\xbe\x78\x2a\ +\x21\xf4\xa1\x94\x3e\x50\xdb\x13\x06\xf3\xd5\x36\xf1\x0d\xba\x37\ +\xdf\xfc\x4a\xf9\xe2\xdb\x3f\x59\x96\x2f\x7f\xaa\xbc\xf1\xec\xe7\ +\xca\x9b\x6f\x7d\xa6\xbc\xb2\xb8\x28\x4f\x5f\x2d\xe5\xe5\xd3\x52\ +\x5e\x7d\x15\xff\x2b\x4d\x9c\x57\x4b\xc9\x15\x0b\x59\xe2\xc4\xc5\ +\x1f\xfc\x2f\x35\xc9\x1f\x41\x24\xf0\xf5\x72\xc1\x07\x69\xfa\xe7\ +\xe1\xe2\x2c\x7d\xbf\xbe\x7e\xa5\x7c\xf1\x33\x1f\x2e\xdf\xfb\x3d\ +\xbf\xb5\xfc\x92\xaf\xff\x9e\xb2\x12\x7b\x7c\x1f\xae\x7b\x98\xe6\ +\x75\x22\x91\x48\x24\x12\x89\x71\xe0\xe2\xfb\xc8\xaf\x99\xb1\x8b\ +\x75\xbe\xa2\x04\xff\x8f\xeb\xc9\xaa\x5c\xc9\xfc\xe9\xc9\xe9\xa2\ +\xfc\xe1\xff\xeb\xbf\x53\x7e\xe2\x6f\xfd\xf9\xf2\x3f\xff\x67\xfe\ +\xf7\xe5\xd7\xfc\x03\xff\xa0\x58\x2d\xc5\x75\xcf\xff\xce\xbe\xdd\ +\x05\x35\xc7\xa0\x32\xbd\xf3\xf5\x61\x20\xe7\x85\x32\x6f\x42\x37\ +\x62\x10\x90\xa2\xaa\x80\x39\xba\x61\x26\x57\x57\x22\x38\xd5\x07\ +\x89\x27\x70\xee\x7b\xdf\x02\x35\xe3\x5b\x60\x6e\x8c\x5d\xb4\x95\ +\x48\x24\x12\x87\x87\xfc\x64\x4b\x24\x76\x87\x7c\xa0\x96\x48\x1c\ +\x31\xf2\xe4\x4f\x24\x1e\x38\xe2\x3d\xbf\xd3\x6b\x4f\x6c\x35\x70\ +\x33\xfc\x4f\x31\x38\x9e\xac\x16\xe5\x8b\x5f\xf9\x54\xf9\x57\xff\ +\xb5\xff\x5e\xf9\xc8\x37\x7f\xb0\xbc\x78\xe3\xad\xf2\x7f\xfc\xfd\ +\x3f\x5a\x96\xd7\x2f\x41\x5b\xae\x4f\xa4\xbc\x5e\x8c\x3c\x4c\x9b\ +\xd5\xf0\x66\x88\xe1\x8c\x7e\x71\x7d\x59\x7e\xe4\x6f\xff\xa9\x52\ +\x5e\xfd\xdb\xe5\x95\xaf\x7f\x56\xca\x4b\xef\x94\x93\xcb\xcb\x72\ +\x76\x7e\x5a\x16\x2b\xfc\x94\x23\xfe\x30\x5a\x72\xbc\xd6\xef\x95\ +\xe1\x1f\xff\xe3\x61\x1a\xfe\x1f\x1a\x7e\xb5\x08\xf9\x6b\xaa\xd7\ +\xa2\x43\xaf\xc0\xeb\x76\xf1\xe2\xb4\x9c\x3c\x39\x2f\x5f\xfe\xec\ +\x69\xf9\xf0\x87\x7e\x63\xf9\xb5\xdf\xf3\x4f\x94\x2b\x31\x85\xb9\ +\x6f\x8a\x8e\x4a\x24\x12\x89\x44\x22\x71\xa4\xc0\x44\xa3\x4e\x09\ +\x30\xdf\x40\x2d\x02\x79\xaf\x56\xfa\x3f\x69\x8b\xcc\x35\x3e\xf5\ +\xd9\x9f\x29\xdf\xff\xfb\xfe\xd9\xf2\x89\x8f\x7f\x43\xf9\x17\xfe\ +\xb7\x7f\xac\x7c\xe8\xe9\x2b\xd5\x6e\x67\xe8\xe5\x22\x60\x2e\x02\ +\xc8\x9c\x36\xa6\xfe\x99\x10\x59\x9d\x03\xd2\x08\xf3\x27\x97\x63\ +\x5b\xae\xca\xd5\xf5\x95\x54\x57\xf8\x9e\x9d\xd4\x17\xfc\x03\xac\ +\x95\xc8\x4e\x64\x83\x11\xfe\x27\xed\xc9\xc9\xb9\x4c\xbe\x96\xe5\ +\xc9\x02\xfd\x2a\xe5\xfc\xec\x23\x7c\xc8\xb6\xe0\x32\x93\xb4\xc6\ +\x07\x6b\x80\xd7\xdb\xa0\xed\x60\x22\x91\x48\x24\x36\x45\x7e\x8a\ +\x26\x12\xbb\x43\x3e\x50\x4b\x24\x8e\x18\x79\xf2\x27\x12\x8f\x10\ +\xbe\xe6\xb0\xe6\x04\xc7\x23\xa7\x95\x4c\x01\xf8\xb0\x49\xec\x5f\ +\x7f\xf1\x76\xf9\x81\xdf\xf7\x8f\x97\xf3\xb3\xcf\x95\x77\xdf\xb9\ +\x28\xdf\xf7\x0f\xff\xf6\xf2\x5b\xff\x91\x1f\x28\xd7\xa7\xef\x8b\ +\xed\x13\xb1\xf6\x07\x6a\x16\xa0\x62\x46\x63\x9b\xa0\x17\x4a\x99\ +\xeb\xd5\xa2\x2c\x4f\xae\xca\x67\x7f\xf1\xef\x96\x37\xae\xfe\x4c\ +\x79\xfa\x91\x4f\x95\xf7\xaf\xde\x2b\x8b\xe5\xa2\xac\x56\x57\xe5\ +\x4c\x92\xc2\xc3\xb3\xc5\x02\x8b\x44\x92\x8f\xb8\x61\x76\x83\x9f\ +\x20\xe2\xb7\xd3\x84\x66\xda\x56\xc3\xa6\xfe\x34\x51\x59\x94\xab\ +\x2b\x91\x9c\x9e\x97\xd3\xf3\x97\xcb\xa7\x3e\xf9\x95\x72\xf5\xfe\ +\xb7\x95\xdf\xfc\x7d\xff\xb2\xf4\xf7\x65\x31\x3e\x91\x38\xf9\x2d\ +\xb5\x44\x22\x91\x48\x24\x8e\x1a\x32\x6d\xb8\x31\x05\x80\x8c\x50\ +\x82\x26\x98\x93\x48\xbd\xbc\xc4\xff\xa6\x7d\x5e\xfe\xc5\xdf\xf5\ +\x3f\x2c\x67\x4f\x2f\xca\x7f\xff\x37\xff\x8e\xf2\xdf\xfd\xbe\xdf\ +\x52\x96\xcb\x52\xce\x65\xce\x81\xff\x00\xdb\xcd\x2d\xf6\x8c\x9a\ +\xa7\xce\x81\x96\xf8\x06\x99\xcc\xff\x20\x3e\x55\xb1\xd0\xcf\xcb\ +\x0b\x99\x5b\x3d\x7f\xf1\x6e\x59\xae\x9e\x95\x77\x2e\xbe\x56\xde\ +\x7a\xf6\x66\x79\x76\xf9\x66\x79\xb1\x7a\xaf\xbc\x7f\xf1\x76\xb9\ +\x78\xff\x6d\xf1\xbd\x28\x67\x88\x72\x25\x51\x24\xc6\xd3\xd5\x59\ +\xf9\xd0\x4b\x1f\x2a\xaf\x3e\xf9\x68\xf9\xba\x6f\xf8\xc6\xf2\x91\ +\x97\xbe\xad\x9c\x9e\xfd\x52\xe9\xf3\x4b\xe5\x64\x79\x2e\x53\x2d\ +\x7d\xb8\xa8\x3d\x5d\xd7\x5f\x8e\xa0\x92\x35\xe9\xa1\x41\xbf\xa3\ +\x71\x4b\x24\x12\x89\x47\x84\xfc\xe4\x4c\x24\x76\x87\x7c\xa0\x96\ +\x48\x1c\x31\xf2\xe4\x4f\x24\x1e\x01\xda\xb5\x07\xd0\x7e\x72\x47\ +\xba\x02\x0b\x38\x52\x72\x71\x63\xc5\x9f\x3e\xbc\xba\x7c\xa7\xfc\ +\xa1\xff\xf4\x5f\x2b\x3f\xf3\xd3\x7f\xb6\x7c\xf8\xe2\xac\x5c\xae\ +\x16\xe5\xdf\xfc\xbd\x7f\xb1\x9c\x5e\x7f\x54\x62\x9c\x99\x9b\x3f\ +\x4c\xf3\xc6\xf6\x84\x5e\x1f\xa4\xc0\x57\xcb\x2e\x17\xe5\xfa\x7c\ +\x55\x7e\xe8\x6f\xfd\xfb\xe5\xc3\xdf\xfc\x73\xe5\xf2\xc9\xa7\xca\ +\xf2\xea\x49\x29\x92\x67\x29\x57\x85\x4b\x42\x32\x9d\x39\xc5\xb7\ +\xcd\xa4\x5e\xad\xc4\x4d\x62\x9c\x4a\x81\x2f\xa9\x61\xb1\x08\xbd\ +\x85\xb5\x2f\xe9\xd0\x40\xfa\xb4\xc2\x43\x35\xd9\x2e\x16\xd7\xe5\ +\xc5\xf2\xac\xfc\xec\xcf\x7c\xa1\x2c\x5f\x7c\x63\xf9\xad\xff\xd0\ +\xef\x2d\x1f\xfa\xc0\xc7\xca\xf2\x1a\x0f\xd4\xe0\x87\x84\xcc\xb7\ +\xd6\x89\x44\x22\x91\x48\x24\x8e\x12\x3e\x2d\x88\xcb\x29\x98\x5a\ +\xe0\x61\x95\x90\x4b\x99\x7d\xfc\xb1\x3f\xf1\x83\xe5\x6f\xfe\xf0\ +\x9f\x2a\x27\x57\xaf\x95\x7f\xe7\x0f\xff\xb9\xf2\x81\xf2\x54\x6c\ +\x30\xa3\x90\xd9\x08\xfc\x74\x62\xb5\x1f\xd4\xfc\xc8\xc9\xbc\x8f\ +\xbf\x79\x2d\xc4\x19\xe7\x35\x97\x32\x57\x7a\x76\xf5\x5c\x12\x7d\ +\xbb\x5c\x5e\xbf\x51\xde\x7b\xf1\x77\xcb\xe7\xbf\xfa\xf3\xe5\xf5\ +\xaf\xfd\x42\xb9\x7a\xf1\x95\xf2\xea\x4b\x27\xe5\x89\xcc\xbd\x4e\ +\xce\x17\xe5\x5c\x26\x52\x4f\x64\x8e\x75\x76\x7e\x5d\x5e\x7a\x72\ +\x5e\x16\x98\x58\xc9\xdc\xe9\x5c\xe6\x88\xf8\x8e\xdb\xf5\xea\xb4\ +\x5c\x5c\x9c\x97\x8b\x17\x27\xe5\xdd\xaf\x7e\xa8\x7c\xe2\xeb\xff\ +\xd1\xf2\x4b\xbe\xeb\x57\x97\xb3\xc5\x99\x0c\x8f\x26\xd0\x75\x35\ +\xf6\xd9\x93\x8c\x88\xb2\xa6\x13\x3d\xb4\x7e\x89\x44\x22\x91\x98\ +\x42\x7e\x6a\x26\x12\xbb\x43\x3e\x50\x4b\x24\x8e\x18\x79\xf2\x27\ +\x12\x8f\x08\x53\x6b\x0e\x01\x78\x3e\xc5\x1f\xfc\x59\x14\x3e\x2c\ +\x2a\xcf\xaf\xca\xff\xfb\xbf\xf8\xb7\xcb\x9f\xfe\xab\xff\x46\xf9\ +\xc4\x47\x3e\x51\x9e\x3e\x3d\x2b\xdf\xf4\x8d\xbf\xba\xfc\xd3\xff\ +\x83\x3f\x5a\xae\x4e\x2f\xcb\xc9\xea\xdc\xbe\xf9\x85\xc7\x51\x43\ +\x98\xd1\xe8\x1c\x78\xfe\x40\x0d\x27\xc4\xc9\xb2\x5c\x5f\xe1\xff\ +\x9d\x5d\x95\x1f\xfa\x89\x3f\x5c\x3e\xf6\x5d\xbf\x58\x2e\x9f\xbf\ +\x5b\x9e\xaf\x5e\x88\x1a\xff\x83\x64\xc5\xcc\xf4\x61\x99\xf4\x6b\ +\x25\xfc\xc9\x49\x39\x3b\xc5\xc3\x32\xf1\x17\x1e\x0b\x57\xd7\x4b\ +\xe9\xb5\xb0\xf8\xa9\xc7\x15\xfa\x5d\xce\x58\xe3\xaf\xab\x57\xcf\ +\x2f\xca\xd7\xa4\x9d\x77\xde\x80\xcd\x55\x79\xf3\x6b\x1f\x28\xdf\ +\xf7\x2b\x7f\x47\xf9\xce\x4f\xfc\x5a\x2e\x38\x9d\x2e\x90\x10\x97\ +\xbf\xa4\x06\xbc\x4e\x24\x12\x89\x44\x22\xf1\xa8\x81\x29\x80\x4f\ +\x75\x86\xe6\x29\x0e\xd1\xe1\xa7\x1e\xf1\xb3\x88\xf8\x06\xda\x5f\ +\xfb\xd1\xff\x6f\xf9\xc1\xef\xff\x67\xcb\x07\x3f\xf2\xe1\xf2\xbf\ +\xfa\x17\xfe\x60\xf9\xf5\xdf\xfb\xeb\xca\x85\xcc\xa9\xce\x44\xa7\ +\x73\xaa\x18\x70\xc7\x08\x69\x45\xe0\x7f\xbb\xe1\xef\x88\x2e\xae\ +\xae\xca\xdb\xef\xfc\x62\xf9\xda\x97\x7f\xb4\x3c\x3b\xff\x89\xf2\ +\xd6\x7b\xbf\x28\xf3\xa4\x77\xca\x6b\xaf\x9e\x94\x0f\x7d\xb8\x94\ +\x57\x24\x47\x3c\x18\x5c\x2d\x57\xf8\x57\x70\x65\x71\xa6\xbe\x27\ +\x27\xa7\xd2\x47\x1d\x0c\x4e\xb1\x64\x6e\xb5\x5c\xe2\x7f\xd0\x0a\ +\xbf\x10\x9f\xd5\x2b\xa2\x3a\x2b\x6f\x7f\xe9\x3b\xca\x2f\xff\xee\ +\xff\x49\xf9\xf0\x6b\x1f\x67\x17\xf5\x11\x62\xc4\x54\xbf\x63\xf2\ +\x6e\x37\x34\x56\x7b\x1c\xbf\x44\x22\x91\x78\x84\xc8\x4f\xcc\x44\ +\x62\x77\x18\x5b\x1d\x4b\x24\x12\x89\x44\x22\x71\x48\xc0\xba\x41\ +\x5c\x63\x88\x98\x5c\x53\x50\x47\xbc\xf0\xd7\xd0\xd7\x27\xab\x72\ +\xb2\x58\x96\xab\xcb\x93\x72\xba\x2c\xe5\x4f\xff\xcd\x7f\xaf\xfc\ +\x3f\xfe\xd2\xbf\x5d\xbe\xfe\xb5\x8f\x96\x57\x5f\xfb\x40\x39\x7b\ +\x7a\x56\xbe\xef\x1f\xf9\x9f\x95\x72\xba\x2a\x8b\xeb\xb3\xc2\x9f\ +\xe9\xb9\xc6\x77\xc0\x9a\x04\x2a\x19\x64\xb7\x01\xf2\xf7\x26\x9a\ +\xbe\xe0\x81\xde\x57\xdf\xfe\x72\xf9\xea\x7b\x6f\x95\x77\x2f\x9e\ +\x95\xf7\xaf\x2f\xc4\xec\x5a\x26\x31\xea\x84\xbf\x7a\x3e\x3f\xc1\ +\x37\xd4\xf0\xf4\xeb\x9a\xff\xfb\xec\xdd\x8b\xcb\xf2\xc6\xbb\xcb\ +\xf2\xb5\x77\x2e\xca\x17\xbe\xfa\xbc\x7c\xf6\x2b\xef\xcb\xf6\xbc\ +\xfc\xc2\xeb\xef\x95\x4f\xbf\xfe\xac\x7c\xea\xcb\x17\xe5\x53\xaf\ +\x5f\x09\x7f\x55\x7e\xf6\x8d\x52\x3e\xff\xf9\xf7\xca\x97\xdf\x78\ +\xab\x5c\x2c\x56\x65\x25\x7d\xff\xcc\xe7\x7e\x92\xb1\x75\xa2\x34\ +\x3a\xb8\x23\xd8\xd1\x98\x24\x12\x89\x44\x22\x91\xd8\x3f\xe6\x5c\ +\xb6\xe3\x3c\x85\x50\xa2\x8a\xae\x31\xbf\x3a\x29\xe7\x8b\xf3\xf2\ +\x13\x3f\xf5\x23\xe5\xdf\xfc\xc1\xdf\x59\xbe\xf1\x97\x7d\x73\xf9\ +\xf8\x47\x3e\x56\x7e\xfd\xaf\xfa\x6f\xcb\xfc\xeb\x55\xfb\xc6\x96\ +\x7b\x6d\x3a\xb7\xd8\x00\x37\x42\xcb\xfc\x08\xdf\x50\x93\x66\xf1\ +\x93\x93\x9f\xf9\xdc\x7f\x55\x7e\xf1\xf5\x3f\x5b\x9e\xbf\xf2\x9f\ +\x95\xb3\x0f\x7d\xa6\xfc\x92\x4f\x5c\x95\x5f\xfa\x2d\xe7\xe5\xc3\ +\x1f\x39\xe7\x2f\x18\x3c\x5f\x5e\x97\x17\x57\x67\x32\x9f\x7a\xa9\ +\x5c\x9d\xbd\x52\x2e\xcb\xab\x42\x4b\xbd\x7c\x52\x56\xab\xb3\xb2\ +\x5a\x9e\xcb\xdc\xf0\xbc\x9c\x9e\x3e\x29\xe7\xe7\xa7\xe5\xec\xc9\ +\x79\x39\x3b\x2f\xe5\xc9\x93\xab\xf2\xea\x07\xf1\xad\xff\xcf\x96\ +\x2f\x7c\xee\xe7\xa5\xcd\x15\x86\xa5\x1b\x23\x22\x26\xd7\x49\x15\ +\x3e\x2e\xeb\xc6\xc6\xfd\x86\xfc\x13\x89\x44\x22\x91\x48\x24\xf6\ +\x8b\x7c\xa0\x96\x48\x24\x12\x89\xc4\x21\x03\x6b\x03\xbe\xbe\xe0\ +\x88\xeb\x05\x4e\xbb\xdd\x0d\xe8\xc2\x04\xbe\x99\xc6\x6f\x6c\xe1\ +\x1b\x5f\xf8\xa9\xc4\x55\x29\x3f\xfc\x13\xff\x71\xf9\x93\x7f\xe1\ +\xf7\x94\x6f\xfd\x7b\x3e\x56\x3e\xf8\x8d\x2f\x95\x57\x3f\xf4\xc1\ +\x72\xf6\xea\x6b\xe5\xa3\xaf\x7e\xbb\x36\x77\xa2\xff\x5f\x03\x9b\ +\x36\x1f\x92\x50\x03\x92\xfb\x01\x72\xf5\x96\x57\xfc\x5f\x1e\x9f\ +\x7d\xeb\x17\xcb\x67\x3f\x7f\x51\x5e\x7f\xf6\x5e\x79\xe3\xd9\x55\ +\x79\xe3\xfd\x65\x79\xe7\xf9\xa2\xbc\x29\xf4\x57\x9e\x3d\x2f\x5f\ +\x7e\xf3\xb2\xfc\xe2\x57\xae\xca\xcf\x7c\xf6\x79\xf9\xaf\x3e\x59\ +\xca\x8f\xff\xdc\xaa\xfc\xe8\xcf\x5e\x97\x1f\xff\xd9\x65\xf9\xc9\ +\xbf\x7b\x5d\x7e\xe6\x17\x4a\xf9\xbb\x9f\x59\x94\x9f\xff\xfc\x69\ +\xf9\xdc\x5b\x27\xe5\xcb\x6f\x5f\x97\xd7\xdf\x7e\x51\x5e\xbc\x78\ +\x51\x56\x27\xa7\xe5\xe5\xd7\x5e\x2d\x57\x17\x27\x65\xb5\x7c\xaf\ +\xbc\xf3\xde\xeb\xe5\xaa\xbc\xbb\xe5\x4c\x69\x9f\xe3\x92\x48\x24\ +\x12\x89\x44\x62\xa7\x18\xba\x6c\x63\x0a\x32\x09\x38\xd9\xf7\xf7\ +\x39\xbf\x5a\x08\xbd\x28\x5f\x7c\xeb\x0b\xe5\x5f\xf9\x37\x7e\x5b\ +\xf9\xd6\x6f\xfd\x68\x79\xeb\xed\x2f\x94\xdf\xfe\x4f\xfd\x2f\xf9\ +\xcd\xb5\xe5\xf5\xa5\xd8\xe0\x5b\x5e\x27\xf6\x50\xed\x2e\x21\x0d\ +\xae\x4e\xcb\xf5\x62\x59\xbe\xf6\x95\x2f\x95\x67\x97\x7f\xa3\x9c\ +\x7f\xf0\xe7\xca\x6b\x5f\xff\xa2\xe0\xfb\x72\xf8\xd2\xff\xf2\x52\ +\xf4\x57\xa7\x62\xf7\x54\xe6\x8b\xe7\x32\x2f\x3a\x2b\xd7\xf8\x16\ +\x3f\xbd\xf1\x7d\x35\xfc\xb2\xc1\x75\xb9\x90\xbe\x5c\x2c\x97\xe5\ +\x92\x7d\xc2\x08\xe0\x75\x5a\x16\x27\x2f\x95\xf3\xf3\x13\x9d\x47\ +\xbd\xf2\xd5\xf2\xf6\x1b\x3f\x55\x9e\x5f\x4a\x60\x99\xcb\xe1\xdb\ +\x6d\xc3\x03\xda\xca\x23\x1f\x77\x4a\xa4\x81\xc8\xb7\xfe\xbb\xc4\ +\x50\xce\x89\x44\x22\x91\x48\x24\x8e\x1d\xf9\x40\x2d\x91\x48\x24\ +\x12\x89\x43\x86\xaf\x0d\xf8\x3d\x7d\xac\xd7\xdd\xe7\xd7\x75\x05\ +\x7c\x8b\xeb\xa4\x2c\xf0\x95\x34\xfe\x55\xf1\xa2\xfc\xf4\xe7\x7e\ +\xa8\xfc\x9f\xfe\xf2\xbf\x58\xbe\xe7\xbb\x3e\x56\xbe\xe1\xe3\xaf\ +\x96\x57\x5e\x3a\x2b\x6f\x5d\xbf\x5d\x7e\xc5\x77\xff\x43\xe5\xa5\ +\xab\x0f\xf2\x5b\x5e\xc0\x09\x7f\xe2\x07\x0d\x0d\x2d\x52\xac\x4b\ +\x60\x04\x1b\xb8\xe1\x27\x1a\xb1\xf2\xf4\xb9\xb7\xbe\x58\xde\x2d\ +\xcf\xcb\x67\xdf\x79\xb3\xfc\xe2\xe7\x9e\x95\x9f\xfb\xec\x9b\xe5\ +\xa7\x3e\xf5\xb5\xf2\xd3\x9f\x7e\xbb\xfc\xf4\x7f\xfd\xa2\xfc\xd8\ +\xcf\x2c\xca\xdf\xf8\xa9\xb3\xf2\x37\xfe\xcb\x45\xf9\x89\x9f\x3e\ +\x2d\x3f\xfd\xc9\x52\x3e\xf9\xf9\x93\xf2\xd9\x2f\x9d\x97\x2f\xbe\ +\xfd\xb4\x7c\xe5\xf9\x4b\xe5\xcb\x6f\xcb\xf6\xce\xd3\xf2\xb5\x17\ +\xe7\xe5\x62\xf9\x84\x0b\x45\xf8\xf6\xdb\x95\x74\x76\xb5\xd4\x87\ +\x8c\xcf\x9e\x2f\xca\x2b\xaf\x96\xf2\xfc\xe4\x9d\xf2\xe2\xe2\x9d\ +\x6e\xa2\xc4\xc5\x20\xc7\x96\xfd\x4e\x24\x12\x89\x44\x22\xb1\x21\ +\xee\xe8\x9a\xdb\x36\x83\xcb\x7e\x94\x81\x86\x2c\x4c\x07\xf0\x53\ +\x86\xf8\x46\xd7\x02\x93\x05\x99\x27\xbc\xff\xfc\xbd\xf2\xaf\xff\ +\xd1\xff\x45\xf9\xc8\x27\x5e\x2a\xef\xbd\xff\x4e\xf9\xc4\x2f\xff\ +\xb6\xf2\x1b\x7e\xe5\x3f\x51\x56\x0b\xfc\x5f\x35\xfc\xe3\x31\xd8\ +\x89\x5f\x9c\x52\xdc\x16\x43\xc3\x63\x32\xe4\xe7\xcc\x09\xbe\x41\ +\x27\xdb\x7b\xef\xfd\xed\xf2\xa1\x8f\x7e\xa6\x9c\x9e\x5f\x96\xf7\ +\x9f\xbd\x28\xab\x4b\x99\xfe\x5c\x2e\x0a\x7e\x44\x1b\x3f\x05\x8e\ +\x9f\xc3\xc6\x0f\x34\xe2\xa7\x2b\xf1\x93\x8f\x78\xe0\x86\x9f\xd1\ +\x7e\x7a\x76\x5d\x5e\x7a\xba\x28\xaf\xbd\x7c\x5e\x3e\xf0\xca\xd3\ +\xf2\xf2\xd3\xb3\xf2\x81\x73\x99\x33\x3d\x59\x94\xaf\x7b\x72\x2d\ +\x34\x7e\x22\xfb\xbc\x5c\x2d\xde\x2f\x67\x4f\x97\xe5\xcd\x67\x5f\ +\x2b\x57\x2f\xde\xe3\xfc\x93\xf3\xc8\x9a\x67\x25\x04\xa0\xdb\x81\ +\x76\x0c\xc9\x00\x97\x37\x3b\x63\x2f\xd8\x77\xfc\x44\x22\x91\x48\ +\x24\x12\x0f\x11\xf9\x40\x2d\x91\x48\x24\x12\x89\x51\xf8\x4d\xfb\ +\xd8\x4d\xfd\x1d\xa0\x5d\x37\xd8\xe4\xde\x9e\xbe\xf8\xa9\x47\x94\ +\x2b\xfe\x4c\x0f\x7e\x15\xf1\x67\x3e\xf9\xe3\xe5\x0f\xff\x99\x7f\ +\xbe\xfc\x7d\xdf\xfd\xa1\x72\xfe\x81\x0f\x97\xcb\xd5\xb2\x3c\x7d\ +\xe9\x83\xe5\xd5\x57\x5f\x2a\x7f\xdf\xb7\xfe\x96\xf2\xe4\x1c\x7e\ +\x67\xb2\xe9\x5f\x52\xf7\x1f\x26\x6d\x92\xc0\x08\x86\x42\xc4\x21\ +\x36\x1a\x7f\x11\xcd\x7f\xf5\x2a\x39\x7c\xf5\xad\xaf\x95\x93\x53\ +\x71\xbc\x78\xbf\xbc\xff\x7c\x55\xde\x7f\x76\x59\xde\x7f\xb1\x28\ +\xef\x3e\x5b\x94\x37\xdf\x3b\x29\xef\xbd\xbf\x10\xf9\x75\x79\xff\ +\xf2\xa4\x3c\x97\x7c\x2f\xc5\x77\x29\x1d\x5f\x5e\x2f\xcb\xd5\xea\ +\xba\xbc\x78\x71\x5d\x9e\x5f\x5c\x96\xe7\xcf\xf1\x7f\xe1\xae\xcb\ +\xd9\xf5\x55\x59\x89\x0e\x7d\x3b\x59\x9c\x96\x2b\xfc\x9f\x90\x93\ +\xf3\x72\x76\xb6\x90\xed\xa4\x5c\xac\xde\x2b\x6f\xbf\xff\x46\x48\ +\xf5\xb6\xfd\x8e\x1d\x4c\x24\x12\x89\x44\x22\x31\x0f\x3b\x98\x77\ +\xcc\x81\x37\xe3\x97\x6b\xd4\x43\x32\xd9\x20\xc6\xc6\xff\x2b\x26\ +\x02\x99\x4d\x94\xcb\xe7\x17\xe5\xff\xfe\x67\xff\xad\xf2\x95\x5f\ +\xf8\xeb\xe5\xa5\xab\xd3\x72\xf2\xa1\xf3\xf2\x3f\xfe\x1f\xfd\x4e\ +\x99\x7b\xbd\xc7\xff\x3b\xa6\xe1\x6c\x5e\x45\xef\x1d\x81\x89\xd8\ +\x06\x78\x2d\x50\x52\xe6\x52\x32\xef\xb9\x3e\xbd\x2c\xcb\x8b\x77\ +\xca\xc9\x4b\x5f\x2c\xd7\x67\x2f\xf8\xad\xb9\xab\x17\xa5\x3c\x5f\ +\x8a\x1c\x3f\x07\x2e\x39\x5e\x2d\x97\xf8\x0f\xb3\xe2\x72\x59\x4e\ +\x65\x26\xf5\xe4\x1c\x8f\xd6\x2e\xcb\xe5\x25\xbe\xcd\xff\xbc\x3c\ +\xbf\xba\x28\x97\xd8\x56\x97\xe2\x2f\xf3\xb0\xeb\x8b\xf2\xec\x4a\ +\xe6\x56\xcb\xf7\xcb\xc5\xf2\xed\xf2\xe5\xf7\xde\x2b\xaf\xbf\x77\ +\x51\xae\x64\x5c\xbe\xfa\xce\x17\xcb\xa5\xc8\xb4\xa7\x52\xd6\xa7\ +\x88\xb1\xef\x51\x16\x12\x27\x86\x64\x40\xf4\x07\x5a\x3e\x91\x48\ +\x24\x12\x89\x44\x62\xbf\xc8\x07\x6a\x89\x44\x22\x91\x48\x4c\x02\ +\x37\xf3\x07\x70\xb3\x8e\x34\x86\xd6\x15\x6e\xc0\x8d\xb0\x08\x22\ +\x34\xde\xfc\x86\xd9\x92\x8b\x25\x9f\xff\xea\xe7\xcb\x1f\xfc\x33\ +\xbf\xab\xfc\xd2\xef\x7c\x21\xb3\x80\xd3\x72\x2e\x5d\x5b\x3c\x39\ +\x2f\x4f\x5f\x3b\x2b\xcb\xb3\xaf\x2f\xbf\xec\xeb\xbe\xa7\x5c\xad\ +\xce\xc5\x09\xfe\xba\x50\x74\xb3\xfb\x3b\x1c\x0f\x4f\xd7\x43\xa2\ +\xb6\x0d\xad\x13\xd7\xa7\xe5\xd9\xf3\xaf\x95\x27\x4f\x24\xc7\xab\ +\xab\xb2\xbc\x14\x27\xc9\xf1\x64\x75\x86\x6e\x95\xc5\xc9\x29\xbf\ +\x69\x86\xc5\xa1\xd5\x72\x59\xae\x97\x57\xdc\x56\x57\x58\xf0\x59\ +\xaa\x6c\x25\x32\x7c\x15\x6d\x79\x5d\x16\x22\xe3\x53\x46\x91\x83\ +\xc4\xff\xf7\xe0\x62\x97\x75\xf5\x42\x64\x57\xe5\x79\x79\xf3\xbd\ +\xaf\x5a\xfb\x2a\x9f\x86\x77\x64\x0c\xeb\x23\x24\x12\x89\x44\x22\ +\xf1\x70\x80\xeb\xde\xba\x6b\xdf\x03\x40\xec\x02\xe8\x78\xb9\xee\ +\x75\xcf\xfb\xab\x7f\xec\x83\x17\xfe\x27\xed\x72\x89\xff\x49\xbb\ +\x28\x7f\xe2\x2f\xfc\x91\xf2\x27\xff\xe2\xff\xa5\x3c\x3d\x3f\x2b\ +\xa7\x2f\x9d\x97\x8f\x7f\xec\x1b\xca\xdf\xfb\x5d\xff\xb0\xcc\x4f\ +\x9e\x94\xb3\x93\x33\x09\x2b\x81\xf9\x07\x4a\xbd\xa0\x37\xd8\x5b\ +\xa1\x89\xa5\xad\x89\x90\x0f\xfe\x4e\xca\xeb\xef\xff\x5c\x79\xeb\ +\xea\xfd\xf2\xd5\xb7\xde\x2e\xcf\x5e\xbc\x28\x8b\xb3\x85\x4c\x05\ +\x17\x32\x35\xba\x2c\xe7\x32\x6f\x3a\x59\x5d\xca\x1c\xf0\xaa\xbc\ +\x7f\x71\x51\x5e\x08\xff\xb5\x77\xdf\x2f\x3f\xf7\xa5\x77\xcb\x8f\ +\x7f\xea\xed\xf2\x23\xff\xf5\x5b\xe5\xc7\x7f\xfe\x8d\xf2\xe3\x9f\ +\x7e\xaf\xfc\xed\x4f\xbe\x5d\x7e\xf4\x17\xde\x2b\x7f\xe7\x33\x17\ +\xe5\x6f\x7c\xfa\x45\xf9\xcf\x3f\xb3\x2a\x7f\xed\x17\x9f\x95\x9f\ +\xfa\xdc\x5b\xe5\xe7\x7f\xe1\xcd\xf2\xa9\xd7\xdf\x28\x57\xcb\xb7\ +\xcb\xdb\xcf\xde\xd5\x05\xa7\x5e\x5e\x60\xe6\x76\x3a\xe7\x4e\x89\ +\x44\x22\x91\x48\x24\x0e\x0f\xf9\x40\x2d\x91\x48\x24\x12\x89\x51\ +\xe0\x46\xfe\x9e\x6f\xe6\xdb\xe6\x87\xd6\x20\x7a\x36\x60\xd4\x48\ +\x1f\x10\x09\x7f\xb2\x2c\xab\xab\xeb\x72\xf1\xec\x79\xf9\xe3\x7f\ +\xfa\xfb\xcb\x47\xbe\xfb\x4d\x91\xbd\x22\x93\x80\x45\xb9\x3e\xc5\ +\x3f\xd1\x5f\x95\x67\x2f\xae\xca\x37\x7e\xe4\x3b\xca\xe2\xfa\x55\ +\xf1\xc4\x57\xd4\xec\x71\x16\xff\xa2\xb8\x6d\x74\xee\x42\xc8\x0c\ +\x78\x78\x0f\xd9\xd6\x30\x58\x5c\x96\x27\x92\xe3\x2b\xa7\xd7\xe5\ +\x54\x72\xc3\x76\x76\x2d\xe5\xe2\x94\x13\x19\xd4\x27\xd2\x59\x3c\ +\x3c\xbb\xc6\x4f\x14\x5d\xad\xca\xd5\xa5\xf4\x79\x85\xbf\xb2\x96\ +\x40\x22\xbb\xc6\x83\x35\x3c\x39\xbb\xbe\xd2\x85\x30\xc8\x58\xa3\ +\x89\x93\xb2\xc0\xff\x09\x59\x91\xe1\x7a\xd7\xd5\xc9\xf3\xf2\x85\ +\xaf\x7c\x0e\x09\x8c\xa0\x26\xd8\x00\xf2\xb8\x25\x12\x89\x44\x22\ +\xf1\x58\xc1\x99\xc2\xc3\xc6\x50\x17\x86\x2e\xdf\xe1\x9b\x65\x7c\ +\x98\x86\xb9\x95\x4c\x2b\xf0\x1b\xd9\xff\xf9\x5f\xff\x4f\xca\x9f\ +\xf8\x73\xbf\xb7\x7c\xf4\x63\x4f\xca\xf9\x47\x5e\x29\xaf\x7d\xdd\ +\x07\xca\xb7\x7e\xfb\x77\x95\xc5\xea\x5c\x2c\xc5\x88\x6e\xfa\x2d\ +\xb5\x1b\xd8\xe3\x10\x6a\x7b\x92\xab\xcc\x99\xf0\x7f\x74\x3f\xfd\ +\xc5\x9f\x2e\x3f\xf7\xf9\xbf\x53\x7e\xe6\xe7\xbf\x52\x3e\xfd\xa5\ +\x37\xca\x17\xde\x7a\xaf\x7c\xe9\xcd\xcb\xf2\xa5\x37\x9e\x95\x4f\ +\xbd\xf9\x56\xf9\xf9\xd7\x9f\x97\x1f\xfb\xec\x45\xf9\xdb\x9f\x5c\ +\x96\xff\xe2\xa7\xae\xcb\x5f\xf8\xb1\x65\xf9\xa1\x9f\x2c\xe5\x27\ +\x3f\x73\x5a\x3e\xf9\xb9\xb3\xf2\xb3\x9f\x5d\x94\x9f\xfa\xe4\x75\ +\xf9\x99\x4f\x9f\x94\x9f\xfd\x74\x91\xed\xba\xfc\xc2\x97\xae\xcb\ +\x57\xdf\x5c\x96\xaf\x7e\xf5\xb4\xbc\xfe\xce\xaa\xbc\xfb\x5c\xda\ +\xbb\x90\x39\xd6\xd9\x65\x79\xf3\xdd\x2f\x30\x03\xfd\x72\x5a\xdb\ +\x51\x1f\x8d\x38\x2a\x2d\x3d\xa6\x4b\x24\x12\x89\x44\x22\x91\xb8\ +\x3f\xe4\x03\xb5\x44\x22\x91\x48\x24\x0e\x19\x58\x3f\x88\x6b\x10\ +\x43\x0b\x2f\xbe\xc6\x60\x3a\x37\xc1\x02\xc6\xf5\xe2\x8a\x8b\x3d\ +\xa7\xab\x27\xe5\x4f\xfd\x95\xff\x5b\x79\xfd\xe9\x5f\x2f\x2f\x9f\ +\x0a\x7f\xb6\x2a\x27\x52\x9f\x3f\x5d\x95\xf3\xb3\x97\x64\x46\xf0\ +\x6a\xf9\xf5\xdf\xf5\x8f\x89\xd3\xaa\x9c\x2e\xf0\x73\x8f\x11\x08\ +\x64\x24\x31\x94\xc4\x0e\xc1\xa7\x5c\xd6\x0a\x66\x2a\x42\x2c\x24\ +\x81\x53\x91\x2f\xca\x19\x1f\x7e\xe1\xa9\xd7\x42\x14\xfc\xf2\x1d\ +\x7e\xc7\x72\xb5\x24\x0d\x1f\xfe\x35\x36\x36\x3e\x30\xc3\xc3\x34\ +\xd0\x22\x82\x54\x68\x98\x63\x15\x0c\xff\x4b\x8e\x66\xf6\x53\x4c\ +\x0b\x3c\x98\x83\x68\x79\xc6\x7f\xdc\xff\xe5\xb7\xf0\x40\xcd\x1c\ +\x27\xbb\x6c\x36\x37\xa0\xd9\x24\x12\x89\x44\x22\xf1\xf8\x30\x79\ +\x61\x3c\x7c\xc4\xcb\x73\x4b\xb7\x5d\xab\x97\x73\x99\x43\xc8\x6b\ +\x21\x13\x89\xd5\xf2\x94\xdf\x90\xff\x89\x5f\xf8\xeb\xe5\x7f\xf3\ +\xff\xf9\x67\xca\x27\x7e\xf9\x2b\xe5\x9b\xbe\xe1\xeb\xcb\x47\x3f\ +\xf2\xa1\xf2\xec\xe4\xa2\x7c\xdf\xaf\xfb\x27\x39\x6f\x91\x59\x15\ +\x1c\xe9\x37\xfe\x3f\x69\x77\x84\x26\x34\x58\xfd\xe9\x6e\xc9\x63\ +\xf9\xa2\xbc\xfe\xc6\xe7\xca\x57\x9f\xbd\x51\xde\x58\xbe\x5f\x3e\ +\xf5\xe5\x77\xcb\x8f\x7d\xea\x8b\xe5\x27\x3e\xf5\xb5\xf2\x13\x9f\ +\xbc\x94\xba\x94\x9f\xfb\x74\x29\x9f\xf9\xe2\x75\xf9\xec\xeb\x8b\ +\xf2\x0b\x9f\xbf\x2e\x9f\xff\xca\x55\x79\xe3\xd9\x49\x79\xe3\x3d\ +\xd9\xde\x3f\x17\xfa\x49\x79\x77\x79\x5e\x9e\x5d\x9f\x97\xcb\xc5\ +\xa2\x5c\x9e\x5e\x95\xb3\xb3\x4b\x99\x8f\xad\xf8\x7f\xd6\x5e\xc6\ +\x1f\x3a\x3d\x39\x2b\xef\x3f\x5f\x96\xd3\xa7\x97\xe5\x9d\xe5\x1b\ +\xcc\x23\x0e\xef\x4d\xd4\xc1\x0d\x18\xf2\xd8\xe3\xb8\x25\x12\x89\ +\x44\x22\x91\x48\x6c\x80\x7c\xa0\x96\x48\x24\x12\x89\xc4\x21\xa3\ +\x5d\x3f\x98\x5a\x95\xe8\xe9\xf0\x13\x86\x2b\xfe\x45\xf2\xc9\xf2\ +\xbc\xfc\xcd\xbf\xf1\x17\xca\x5f\xfb\xc5\x3f\x56\xbe\xee\x9b\x9e\ +\x95\x57\x9f\x7e\xb0\x9c\x96\x27\xe5\xf4\x1c\x4f\x96\x4e\xc5\xee\ +\xba\xbc\xf2\x81\x5f\x56\xbe\xeb\x43\xff\x0d\x09\x61\x0f\x97\x30\ +\x45\x10\x62\x78\xf9\x62\x2a\x89\x2d\x10\x1b\x11\xba\xfb\x23\x70\ +\x3c\x40\x2b\x65\xc5\xac\x9e\x97\x2b\x7c\xc3\x6c\x25\x0a\xa9\xce\ +\xf0\xe4\x0b\x0f\xc7\xa0\xbf\xba\xa4\x2d\xde\xf8\x96\x19\xfa\x5c\ +\x1f\xa6\xb1\xc6\xa6\xdf\x5e\xc3\xb7\xcf\x56\xf8\xff\x69\xf8\x19\ +\x48\x7f\x89\x7e\x21\x8d\xe2\x1b\x6c\xa0\x2f\x56\x97\x5c\xf4\x7a\ +\x76\xf1\xa6\xc4\xbd\x54\x3f\x0c\x15\x1a\xe0\x36\x86\x56\x37\x65\ +\x9b\x48\x24\x12\x89\x44\xe2\xde\xc0\x79\x46\x40\xbc\x64\x0f\x5e\ +\xce\xa5\xc0\x5b\xe6\x07\x2b\x71\xc6\x4f\x4d\xff\xd4\xcf\xfc\x9d\ +\xf2\xfd\xff\xc1\xef\x28\xbf\xe6\xbb\x3f\x5e\x5e\xfd\xc8\x37\x94\ +\x27\x1f\xfe\x70\xf9\xf0\x87\xbf\xae\x7c\xc3\x47\xbf\xb9\x7c\xe7\ +\x37\xfc\x46\x99\x62\x9d\xcb\x1c\x02\x0d\xd9\xb7\xfe\x7b\x8d\xb6\ +\x09\xec\x1e\x98\xe3\x30\xe9\xc5\x52\xe6\x53\x67\xfc\x1f\x68\xab\ +\x72\x5e\x2e\x2f\xae\xca\xd5\xe2\x69\x59\x5e\xbd\x56\x96\x8b\x27\ +\xe5\xea\xf4\xb4\x5c\xc9\x7c\xf0\xb9\xcc\x75\x2e\xaf\x16\xb2\xad\ +\xca\xe5\x12\xb3\x2f\x99\x33\x5d\x5e\x95\x8b\x17\x17\xe5\xe2\xf9\ +\x8b\xb2\xbc\xbc\x94\xed\x4a\xc2\x5d\x96\x85\xcc\x95\xce\x65\x72\ +\x74\x86\xa9\x19\xff\x47\xef\x42\xe6\x4e\xe7\xe5\xa9\xc4\x3b\x7d\ +\x72\x86\x81\x2a\xef\xbe\xa3\x0f\xd4\xc6\x7b\x8a\x16\x1c\x63\x56\ +\xd6\x87\x44\x22\x91\x48\x24\x12\x89\x03\x41\x3e\x50\x4b\x24\x12\ +\x89\x44\xe2\xd0\x31\xb9\x8e\xd0\x29\xbb\xa5\x08\xa1\xf0\xd7\xd3\ +\x27\xd7\xe5\xf4\xe4\xbc\xfc\xd8\x4f\xfc\x97\xe5\xf7\xff\xf0\xef\ +\x2b\xdf\xf3\xab\x4f\xcb\x2b\xa7\x1f\x2a\x27\x8b\x8b\x72\x82\xaf\ +\x69\xf1\x27\x13\x4f\xca\x7b\x57\xab\xf2\x3d\x1f\xfd\x4d\x65\xb5\ +\xba\x2a\x4b\x2e\x13\xd9\xe2\x85\x84\x61\xf4\x5e\xfb\x3d\x66\x37\ +\x88\x21\x41\x37\x4d\x60\xe9\xea\xf9\xe5\x7b\x42\x48\xce\xd7\xfc\ +\xdb\x70\xc9\x0d\x0f\x0c\x85\xed\xd9\xaa\x40\x1f\xa0\x99\x0e\x34\ +\x5e\xc6\x2f\xc4\x75\xb9\x94\xb1\xe1\xcf\x3b\x42\x08\xbf\x15\x17\ +\xc6\x2e\x2f\xf1\x20\x4d\x46\x44\xda\x58\x9d\xbc\x28\xcf\x2f\xde\ +\x96\x26\xf5\x27\x22\xf5\xab\x70\x2d\x2c\xc6\x56\xb8\x8d\x6f\x22\ +\x91\x48\x24\x12\x89\x5b\x63\xf2\x32\xec\x4a\xfb\x53\x23\xb0\xfc\ +\x2b\x9f\x2b\x99\x2b\x9c\x96\xcf\x7f\xe9\x0b\xe5\x7f\xf7\xef\xff\ +\xce\xf2\x4b\xbe\xe5\xa2\x9c\xbe\xf4\x52\x79\x69\x71\x56\x5e\x7d\ +\xf9\x69\xb9\x3c\x5f\x96\xef\xf8\xf6\x5f\x5f\x56\xd7\x17\xfc\x16\ +\x1b\xc0\xc7\x69\x37\x9e\x17\xed\x68\x0e\x10\xc3\xf4\x42\x2a\xe3\ +\x8f\xf2\x30\xbf\x93\xe9\x8f\xcc\x6b\x64\x0e\x24\xba\x93\x72\x26\ +\x53\x2a\x99\xfb\x3c\xc7\x43\xb3\xd3\xb2\xbc\xc2\xa4\x6f\x51\x4e\ +\xc5\xe6\x54\x5c\xf1\xe0\xec\xfa\x72\x29\x72\xf1\xbc\xd2\x3f\x44\ +\xc2\x3c\xec\x5a\xea\x2b\xe8\x84\xe5\xc4\x0a\xf3\x26\x3c\x64\x14\ +\x1d\xfc\x16\x98\x7b\x96\xa7\x6c\xf9\xbd\xe7\xef\xb2\x6d\xa4\x72\ +\xa3\xfb\x84\x4b\x51\x23\xdf\x61\xab\x4e\x0f\x78\x9d\x48\x24\x12\ +\x89\x44\x22\x71\x3f\xc8\x07\x6a\x89\x44\x22\x91\x48\x1c\x3a\x06\ +\xd7\x17\x7c\x41\x21\x2e\x32\x18\x27\x2c\x1e\x02\x9d\x9e\x9c\x95\ +\x4f\xfe\xec\x67\xcb\x0f\xfc\xe5\x7f\xa9\x7c\xe7\xaf\x79\x5e\x4e\ +\xae\x9f\xf0\x9f\xe3\x2f\x45\x77\xf6\x74\xc1\xff\x35\x76\xf6\x92\ +\xf0\x2f\x5e\x2d\x7f\xef\xb7\xfd\x5a\xd1\xbd\x22\x8e\x58\xfc\xf1\ +\xe5\x17\x03\x98\xfa\xb5\xb1\x9e\xe6\xf6\x40\xea\x43\x21\xad\x4b\ +\x5c\xa4\x29\xcb\x72\xb5\xba\x28\xab\x93\x2b\x91\xdb\xe3\x3e\xea\ +\xcd\x88\xd0\x20\xfa\xed\x34\x7b\xd8\x26\xbc\x5b\x60\xd1\x08\x26\ +\xfa\xb0\x4d\x37\x3c\x48\xc3\x06\x1a\x3f\x89\xb4\x60\x08\xc8\x61\ +\xbb\x2c\xcb\xe5\xf3\xf2\xec\xf9\x3b\xb4\xe1\xf3\x37\x81\xc7\xeb\ +\xa0\xed\x4e\xa3\x66\x61\x1b\x00\xbf\x39\xbe\x89\x44\x22\x91\x48\ +\x24\xf6\x82\xf6\x32\xdc\xe3\xc1\xe8\x35\x1b\x53\x06\xfd\xe9\xc4\ +\x2b\x3e\x8c\x7a\xfe\xf6\xfb\xe5\x0f\xfe\xf1\xdf\x53\x3e\xf2\x1d\ +\x6f\x96\xe5\xf9\x6b\xe5\xc9\xb9\xcc\xb9\x9e\x9c\x96\xf7\xde\x7b\ +\xbb\xbc\x78\x7f\x51\x7e\xed\xaf\xfa\x4d\x32\xa7\x78\xa9\x9c\x9d\ +\x3e\x11\x3f\xfc\xe9\xd2\x1e\xaf\xf8\x31\xf0\x40\x43\xf8\xa3\x22\ +\x00\x73\xa9\xa7\x67\xc2\x9d\xc8\x7c\xea\xfa\xac\x2c\x56\x27\xe5\ +\x74\xa5\x7f\x58\x85\xbf\x19\xd2\x0d\xd6\xe8\xe1\x75\xb9\xba\xba\ +\x20\x8d\x3f\xb6\xc2\x43\xb8\x6b\xe9\x3b\x06\xe2\x1a\xdf\x5c\x5b\ +\x6a\x8d\xd9\x22\xfc\x30\x49\xa2\xbf\x4c\xa4\x4e\x4f\x65\x7e\x29\ +\xb6\x67\xe7\xe7\xe5\x9d\x77\x30\x87\x82\x02\xf3\xad\x21\xc0\x39\ +\xd6\x63\x68\xed\xd6\xd9\x27\x12\x89\x44\x22\x91\x48\xec\x0f\xf9\ +\x40\x2d\x91\x48\x24\x12\x89\x43\x07\xd7\x0d\x6c\xf1\xa0\x2e\x94\ +\x38\xd1\x2d\x2e\xf0\x41\x91\x50\x27\x0b\x2c\x5c\x9c\x96\x2f\xfd\ +\xfc\x57\xca\xef\xf9\x7f\xfe\xaf\xcb\xb7\x7f\xef\xeb\xe5\xeb\x4e\ +\x4b\x79\x71\xb9\x28\x8b\xc5\x75\x39\x3b\x3f\x2b\xa7\xf8\xff\x61\ +\x8b\x45\xb9\xbe\x7c\xa5\xbc\xf6\xe4\x1b\xcb\xc7\x9e\x7e\x53\xc1\ +\x0f\x02\x9d\x5c\xfb\x37\xd4\x02\x62\xfb\xad\xee\xb6\x68\x16\x7e\ +\x2a\x4c\x8e\x9f\x5b\xc4\x82\xcd\xe5\xf2\xb9\xb4\x8c\xa5\x1d\x00\ +\x19\xea\x43\x33\x00\x3f\xa7\xc4\x2f\xaf\x51\xd9\x3d\x0c\xd4\x5a\ +\x4a\xd8\xd1\x58\x36\x63\x95\x96\x88\x5c\x09\x52\x60\xd1\x6b\x85\ +\x45\xa3\xd5\x95\x30\x8b\xf2\xa2\xbc\x5f\xde\x78\xeb\xab\xe5\x74\ +\x81\x87\x8c\x3a\xb6\x7d\xa0\x85\x9b\xd2\x61\xc0\x0e\xf6\x9a\x55\ +\x22\x91\x48\x24\x12\x89\x03\x80\x5f\x9e\x01\xbb\xa4\xd7\xbf\x21\ +\x72\x90\x97\xb9\xc1\xf2\x9a\xff\x93\xf6\x8f\xff\xe9\x3f\x54\x5e\ +\x7f\xf2\x23\xe5\xb5\xa7\x2f\x97\x0f\xbd\x7c\x52\xce\x9f\x9c\x17\ +\x21\x65\xbe\xf0\x52\xf9\xf8\x87\x7f\x45\xf9\x96\xd7\xbe\x4d\xff\ +\xc0\x07\x6e\xac\x86\xe6\x10\x3b\x44\xcc\x75\xa4\x21\x3e\x26\x5b\ +\x21\xff\xd3\x22\xb3\x40\xe9\x0e\x1e\xa8\xc9\xbc\x10\xdf\xfc\xc7\ +\xfc\xc9\xf2\x44\x28\xfd\x36\x9a\xd8\xa3\x0f\x1e\x0f\x24\x1e\xa6\ +\x89\x8c\xbf\x14\xb0\xc2\xc3\x34\x9b\x7f\x89\x0e\xff\x87\x96\x46\ +\x32\x78\x27\x8b\xb3\xb2\x38\x2f\xe5\xd9\xb3\xb7\x45\xe6\xbf\x0a\ +\xd0\x4f\x73\x18\xde\xd8\x5c\x6c\x6a\x9f\x48\x24\x12\x89\x44\x22\ +\x71\x7b\xe4\x03\xb5\x44\x22\x91\x48\x24\x0e\x1d\x5c\x81\xb0\x65\ +\x88\x91\xb5\x03\x2c\xd8\x40\xc5\x87\x61\xd7\xd7\xe5\xf2\xfd\xcb\ +\xf2\x03\xff\xe1\x0f\x96\x6f\xfa\xf6\xcf\x95\x8f\x7f\xf0\x03\xe5\ +\x72\xf1\x81\xf2\xf4\xc9\x69\x59\x9d\x60\x91\x44\x7f\xe6\xe7\xec\ +\xec\xb4\x2c\x2f\x4f\xcb\xaf\xfe\x9e\xdf\x28\x5e\x4f\xca\x29\xe5\ +\xfc\x5b\x65\x5d\x4c\x72\xac\x5f\x01\xd9\x0e\x53\xeb\x20\xd4\xe1\ +\x9b\x63\x20\x56\xe5\xf9\xc5\x33\x76\x12\x2f\xfe\x5f\x38\xc9\x89\ +\x1c\x57\x71\xb0\xc0\x23\x3c\x4c\xe9\x87\x84\x7d\x53\x11\xc5\xe0\ +\xc5\xd1\x1f\x3c\x42\xca\xf1\xc2\x46\x67\x05\xfe\xc2\x5a\x06\xa2\ +\xac\x16\xcf\xcb\x9b\xef\x7e\x55\xdb\x62\x03\x66\xb0\x11\x34\x87\ +\x69\x68\x6c\xb6\x51\x73\xc1\x96\x48\x24\x12\x89\x44\x62\x2f\x88\ +\x97\xda\xe6\x92\xab\x97\x61\x17\xe2\x3a\x7e\x5d\x96\x2b\xfc\x81\ +\xcf\x93\xf2\xe7\xff\xdc\x7f\x54\xfe\xf2\xa7\xff\x48\xf9\xa5\xdf\ +\xfe\x72\xf9\xd0\x07\x3f\x5c\x4e\xcf\x5e\x2a\x67\x4f\x4f\xcb\x42\ +\xe6\x22\xa7\xe7\xe7\xe5\xbb\x3e\xf1\xdf\x2c\xe7\xd7\x4f\xcb\xa5\ +\xf9\xe3\x9b\x6d\xfa\x98\xea\x8e\x70\xa3\x29\xc9\x43\xe6\x4f\x98\ +\xcb\x9c\x9d\x23\xcf\x53\xe1\xf1\xff\x73\x17\xec\x22\xe6\x7c\x20\ +\x30\xdd\xc2\x37\xd4\x40\x2f\xaf\xa4\xaf\x32\x17\xd2\x9e\xeb\x5f\ +\x2c\x81\x5e\x5e\x2f\x65\xe3\xa3\x39\xd1\x73\x16\x46\x7b\xfe\xf1\ +\x13\xc2\x2c\x65\x0c\x84\x90\x19\x54\xb9\x5a\x3e\x2f\xef\xbe\x8b\ +\x6f\xa8\xf1\xb7\x21\xd9\x96\xa2\x12\xb7\x04\xe2\x20\xab\x44\x22\ +\x91\x48\x24\x12\x89\xbb\x45\x3e\x50\x4b\x24\x12\x89\x44\xe2\xc1\ +\x42\x17\x25\xf8\x30\xed\x44\x2e\xea\x58\xcc\xc0\x03\xb3\x8b\xd3\ +\xf2\xc7\xff\xfc\x9f\x2c\xaf\x7f\xf8\x87\xca\x37\x7f\xf3\xd3\x52\ +\x4e\xaf\xca\x93\xb3\x93\x82\x6f\xae\x9d\x9f\x9d\xf1\x9f\xcd\x2f\ +\x4e\x4f\x0b\xfe\x7f\xc6\xf2\xfa\xbc\xfc\xca\x6f\xfa\x0d\x42\xcb\ +\x94\x40\xfc\x4f\x19\x93\x4b\x24\x03\x18\x96\x6e\x8d\x76\x1d\xa4\ +\xc7\x5b\x5b\x52\xbd\x73\x81\xff\xc1\x71\x51\xae\x17\xfa\x30\x0d\ +\x1a\xfc\x6c\x25\x6a\x2c\xe0\xa0\xf3\xca\xe3\x61\x99\xfa\x38\xc0\ +\xf3\x01\x9a\xd4\x5c\x1a\x5a\x89\x0d\xfe\x7f\x08\xfe\x5a\x9a\x3a\ +\x6d\x16\xde\x58\x10\x02\x4e\x31\x36\x12\x78\x21\x63\xf9\x95\x37\ +\x3f\x2f\x92\xa5\xfa\x72\x03\xc4\xa9\x57\x4f\x01\x36\x13\x7e\x4c\ +\x18\x8b\x6d\xa8\xa5\x7f\xfc\x59\x25\xb5\x60\x4e\xa4\x12\x89\x44\ +\x22\x91\x48\xec\x14\x7e\x69\xae\xb0\xeb\xed\x80\x1c\xff\x75\xec\ +\x74\xf1\xa4\xfc\xc8\x8f\xfe\x9d\xf2\x03\x7f\xe5\x5f\x2f\x7f\xff\ +\xaf\xfb\xba\xf2\xd2\xe9\x6b\x32\x61\x58\x96\xd3\x33\x3c\x8c\xba\ +\x2e\x8b\xeb\x97\xc4\xf7\x83\xe5\xbf\xf3\xab\xfe\x51\x99\x96\x9c\ +\x97\x73\x3e\x58\xc2\x05\xbd\xb9\x8e\xef\xfa\xb2\x8e\x78\xd8\x90\ +\x77\xa4\x6b\x25\x79\x08\xb1\x5a\x5e\x94\xe5\xd5\xfb\xe5\x4a\xf4\ +\xab\x25\x72\x83\x56\x36\xc9\x4f\xed\xa4\x06\x0b\xca\x72\xe6\x17\ +\xd7\x64\xbe\x84\x3f\xc2\x52\xb9\xc8\x84\xc7\x9c\x8b\x90\x7a\xb9\ +\x5a\xf2\xff\xa6\xe1\xa1\x9b\x7e\xeb\x5f\xec\xc5\xe6\x72\xf9\xbe\ +\xcc\x37\xdf\xe3\xcf\x67\x3b\xcc\x6b\x37\x60\xb0\x10\xd1\x73\x4a\ +\x24\x12\x89\x44\x22\x91\xd8\x33\xf2\x81\x5a\x22\x91\x48\x24\x12\ +\x73\x70\x9f\x37\xea\x83\x4d\x77\x42\x2c\x78\x60\x61\x04\x7f\x39\ +\x7c\xb2\x3c\x29\xff\xf1\x7f\xf6\xff\x2b\xff\xc9\x4f\xfe\x91\xf2\ +\x3d\xdf\x71\x8e\x2f\xa3\xc9\xc5\xfe\xeb\xca\xb2\x5c\x94\xc5\xe2\ +\xac\xe0\x67\x0d\xcf\x4e\x4f\xcb\x6a\x79\x26\xdb\xa2\xbc\x7c\xf6\ +\xd1\xf2\x81\xf3\x8f\x33\x9a\x46\xd4\x65\x15\x2d\x03\xf6\xd1\xfd\ +\x18\x13\x0d\xde\x68\x43\x04\x22\x7f\xf7\xd9\x5b\x7c\x98\xa6\x0b\ +\x3d\xdd\x4b\xfb\xac\xff\xdf\x4c\x1f\x9a\xd1\xc0\x5c\x85\x57\x85\ +\xca\xc8\xa3\x12\x3f\x99\xfd\xf8\x43\x36\x82\x9d\x65\x51\x41\x3b\ +\x79\x3d\x5b\x7d\x4d\xe8\x0b\x69\x1b\x8b\x49\x21\xfe\x46\x88\x0d\ +\x81\xf6\x1a\xf0\x98\x12\x5f\xda\x5c\xad\x4e\x64\x3f\x09\xcd\x67\ +\x7b\x2a\x83\x01\x4a\x7d\xdc\x97\x48\x24\x12\x89\x44\xe2\xd6\xf0\ +\xcb\x71\x85\x5d\x9b\x79\xfd\x07\xa7\xd7\x7d\x3c\x4e\xc3\xff\xa4\ +\xfd\xcc\x67\xbe\x50\xfe\xd5\xff\xd7\x3f\x57\xbe\xf7\x37\x9c\x95\ +\xd3\xd3\x57\xc5\x40\xe6\x52\x72\xb1\x7e\xfa\xca\x59\xb9\xc2\x1f\ +\x2a\x9d\x3f\x29\x1f\x3c\xfd\x25\xe5\xfc\xe4\x89\x78\x2f\xca\x52\ +\x2e\xda\xfa\xd0\x8a\x17\xf9\x0e\x6c\xb3\xd7\xf0\x6e\x10\xfb\x63\ +\x4d\xc6\x96\xf1\x7f\xcd\x56\x92\x13\xe6\x18\xa8\x31\xcf\x60\x1f\ +\x69\xa4\x99\xa2\xe6\x5c\x44\x64\x9c\x27\x81\xc0\xe4\x8b\x2a\x1b\ +\x0f\xea\x30\x23\x11\xae\x3e\x48\xd3\xff\xaf\x76\x2a\xf3\xab\xd5\ +\x52\x68\xe9\x3f\xe6\x6d\x2f\xbf\x7a\x5a\xde\x78\xeb\x2b\xc2\xc1\ +\x77\x08\x88\x3d\xa4\x19\x1b\x1f\x97\x4b\x4d\xd2\x78\xed\x84\xe6\ +\x8c\x6d\xa4\xb5\x44\x22\x91\x48\x24\x12\x89\x5d\x20\x1f\xa8\x25\ +\x12\x89\x44\x22\x31\x07\x5c\x50\xc0\x0d\xfa\x3d\xdc\xa4\xa3\x69\ +\x5b\x33\x20\x22\x2d\x00\xcb\xbf\x9e\xbe\x3e\x2b\x7f\xf5\xaf\xfe\ +\x9d\xf2\x83\x7f\xf1\xff\x50\xfe\x81\xef\x7d\xb5\xbc\xf6\x32\xfe\ +\x9f\xc5\x69\x39\x59\x5c\x94\xd3\xc5\x39\xbf\x99\x76\xf1\xe2\x45\ +\x79\xfa\xe4\x25\x3e\x5c\xbb\x2e\x67\xe5\x23\x67\xdf\x5b\x5e\x2b\ +\xaf\xf0\xaf\x8d\xb5\x87\xba\x0c\xc1\x5e\xc6\xee\x36\x6d\x6e\x8c\ +\xa1\x61\xd3\x06\x15\xa8\xdb\x36\xa8\x5b\x94\xb7\xdf\x7e\x5d\xf2\ +\xc5\xe2\x8d\x3b\xa8\xd3\x52\xfa\x8c\x35\x14\x6e\xfc\x77\x1f\x58\ +\x48\x81\x1a\x02\x9a\x68\x0d\xd6\x44\xfc\x39\x23\x89\xe3\xb6\xfe\ +\x3f\x4e\x18\x5a\xf6\x31\xbe\x21\xe6\x4e\xa7\xa7\xab\xf2\xfc\xf2\ +\xdd\x72\xb5\x7c\xa1\x01\x28\x07\xb6\x1d\x0c\xf8\xf7\x7d\x75\xbc\ +\x45\x8e\x45\xa9\xc5\xa2\x2c\x24\x87\x9f\xfd\xbb\x3f\x59\x5e\xbc\ +\x78\x8e\x2c\x29\xf7\x17\x32\x4b\x24\x12\x89\x44\x22\x71\x0b\xc4\ +\x4b\xb9\xd3\x44\x64\xf4\xfa\xbb\x38\xc1\xec\xea\xa4\xbc\xf3\x95\ +\x77\xcb\xef\xfe\x77\xff\x95\xf2\xf5\xdf\xf6\xc5\xf2\x2d\xaf\x3c\ +\x2d\x2f\x2e\x4f\xcb\xe9\x79\x29\x2f\xbf\x7c\xce\xcb\xf7\x4b\x2f\ +\x9f\x95\x8b\x67\x8b\xf2\x2b\xbf\xed\x37\x94\xd3\x93\x27\xe2\x8d\ +\x6f\xb9\x6b\x03\xf8\x83\x9c\x9b\xe8\x35\x7c\x7b\xa0\x89\xd8\x0c\ +\x92\x42\x85\x82\x3f\x61\x50\x64\x2e\x73\x59\xae\x17\x98\x13\xca\ +\x5c\x87\x0f\xc1\x4e\x6a\x6e\x98\x13\xd1\x1a\x95\xd8\x93\x3b\xc1\ +\x1c\x12\x80\x8d\xd9\x61\xa3\x5e\x5f\x90\x68\x08\xa1\xf1\x8f\xd8\ +\x30\xb7\x82\x4c\xb6\xc5\xf9\xaa\x2c\xce\xae\xcb\x97\xbf\xfa\x65\ +\x99\xde\x48\x2c\x98\xdf\x00\x5b\x52\xb2\x87\x41\x63\x03\xec\x45\ +\xef\x26\x96\x7b\xc7\x42\xd7\xc5\xf4\x59\x5d\x22\x91\x48\x24\x12\ +\x89\xc4\xae\x90\x0f\xd4\x12\x89\x44\x22\x91\x98\x03\xde\xb0\x03\ +\x43\x37\xfe\x77\x80\xb8\x1a\x10\x68\xfc\x4d\x31\x16\x33\xae\x2e\ +\x97\xe5\xf5\xcf\x7c\xa5\xfc\xde\xff\xe8\xfb\xcb\xaf\xf9\xce\x27\ +\xa5\x7c\xf8\xaa\x9c\x2c\xcf\xcb\xf9\xf9\xa2\x5c\x2f\x97\xe5\xc9\ +\xe9\x93\x72\x75\x81\x47\x50\x27\x52\x5f\x96\x53\xf1\xb9\x7c\xf6\ +\x5a\xf9\xfb\xbf\xf5\xfb\xca\xc9\xe9\x4b\x5c\x7b\x41\x17\xd9\xbb\ +\xd8\xd6\x2e\xba\x8b\x78\x73\xe2\xc4\x76\x85\xf1\x21\xff\xda\xd7\ +\xbe\xc0\x19\xcb\xea\x1a\xf9\xbb\xd9\x75\x59\x2d\xb1\x6c\x83\xc5\ +\xae\x15\xbf\xa9\x86\x3e\x70\x0d\xc9\xe3\x78\x2d\x40\xf3\xf8\x4b\ +\xeb\xf8\x53\x8f\x8c\x2f\x5b\xf7\x50\x4d\xbf\x1d\x06\x6b\x2c\xc8\ +\x9c\x9d\x96\xf2\xfe\xe5\xdb\x12\xfb\x12\xcf\x25\x29\xbf\x3d\xac\ +\x51\xc4\xb2\x66\x01\x2c\x05\x21\xfa\x7b\xe5\xad\xf2\x1f\xfe\xd9\ +\xff\x73\xf9\xb9\x4f\xff\x4d\xe1\x91\x87\xec\x3f\xe9\x3c\x7e\x74\ +\x52\xed\x1e\x31\x7c\x68\x12\x89\x44\x22\x91\xd8\x27\xd6\x5c\x6f\ +\x30\x55\x00\x96\xcb\xab\x72\xb6\x5c\x94\x7f\xeb\x8f\xfe\xc1\xf2\ +\xee\xff\x9f\xbd\xff\x00\xb3\x24\xb9\xce\x03\xd1\xff\xa6\xb9\xb6\ +\x7c\x77\x57\xfb\xee\xe9\xf1\x83\xf1\x98\xc1\xc0\x83\xf0\x00\x01\ +\x02\x20\x44\x03\x43\x88\x22\x1f\x09\x92\x92\x56\x14\xa5\xd5\xb7\ +\xd2\x4a\x5c\xad\x9e\x3e\x69\x9f\x76\x3f\xad\xf4\x56\x4f\x5a\x6a\ +\x65\x29\x52\xf4\x14\x09\x8a\x24\x08\x02\x20\xe1\x07\x18\xef\x5d\ +\x7b\xdf\xe5\xdd\xad\x6b\x33\xf3\xde\xf7\xff\x27\x32\xab\x6e\xd7\ +\x54\x9b\x99\x69\x10\x63\xf2\xaf\xca\x9b\x91\x61\x4e\x9c\x30\x99\ +\x71\x22\x4e\x98\xc2\x83\xb8\x61\xdf\x36\x24\x95\x1a\x4a\x15\x2d\ +\xff\x97\x44\x15\xb0\x85\xf6\x10\x14\x29\x33\xf4\xb6\xe0\xf5\x37\ +\xbf\x91\xa1\x8a\xe7\x89\x0c\x57\xbc\x59\xdb\x48\x70\x13\xc1\x60\ +\xcd\x6a\xc0\xd0\xe9\x34\x6d\x22\x92\x64\x1d\xfd\x89\x90\xd3\x3b\ +\x39\x82\x4e\xa9\x26\xb9\x8a\x5e\xa4\x1b\x33\xdb\x8d\x60\x00\x09\ +\x9d\xfc\xd7\xf6\xd9\xce\xb7\xac\x74\x8f\x4d\x9e\xb2\x73\x68\x69\ +\x5f\xd0\xc4\x2d\x2f\xc6\xe2\xe2\xbc\xf3\x63\x97\x02\xda\xe3\x00\ +\x36\x8f\x69\x73\xc8\xaf\xf3\xbf\x1e\xca\xc9\x6c\x82\x4d\x8a\x52\ +\xa2\xdc\xff\xda\xf5\x42\x62\xc8\x91\x23\x47\x8e\x1c\x39\x72\xe4\ +\xb8\x14\x72\x85\x5a\x8e\x1c\x39\x72\xe4\xc8\x71\x39\x70\x53\x70\ +\xbf\x4b\xb8\x8c\xae\xbe\x45\x9f\xfa\x1b\x60\x45\x83\x19\x51\x2f\ +\x41\xb1\x18\xe2\x9f\xff\xc1\xaf\x60\xa8\x36\x8f\xf1\xc9\x04\xa3\ +\xa1\x07\xaf\x04\x24\x71\x17\x81\x17\xa2\xd3\xe9\x22\x0c\x42\x0c\ +\x55\x6a\x0c\x1e\xa0\x82\x11\x0c\x79\x57\xe3\x86\xfd\xd7\x20\xee\ +\xe9\x60\x7a\x37\xa3\xd8\x68\x67\xf4\xaf\x54\x92\x37\xd2\xd9\x98\ +\xdc\xcd\x92\x3f\x10\xa6\xd5\x5e\x62\x5a\x74\x80\xbe\x06\x6f\x74\ +\xf0\x7d\x01\x49\x8f\x29\x27\xcf\x1a\x43\xd1\x5d\xb3\xad\xa5\x70\ +\xb3\x6d\x1f\x05\xd1\x34\x37\x5e\xa9\x12\xcd\x4b\xd3\x28\xa5\x5c\ +\x92\xb8\x81\x20\x79\x53\x5c\xba\x67\xe7\xb3\x65\x33\xb6\xb5\x45\ +\x51\xdc\x6f\xa2\x1d\x35\x68\xda\x98\x88\x17\x8b\x8d\x74\xf4\x4c\ +\x9e\xb4\xc2\x0e\x31\x8e\x1d\x7f\x1c\x13\x3b\xba\xf8\xda\x7d\x7f\ +\x82\x6e\x92\x90\x67\xa5\xa9\x0f\x9f\x5c\x6b\x80\xce\xf8\x4d\x7f\ +\x5f\x75\xb8\x58\x16\xbf\x4a\x93\x9c\x23\x47\x8e\x1c\x39\xbe\x07\ +\x50\x7b\x63\x6d\x4e\xd6\xb8\xb8\x7b\xd6\x0c\x49\x0e\xe8\x21\x81\ +\xef\x17\xf1\x47\x5f\xf9\x22\x3e\x77\xf2\xd7\x70\xcb\x5d\x3b\x31\ +\x31\x0e\x94\x8a\x25\x14\xfc\x1e\xc2\x62\x91\xf2\x57\x4c\x73\xc0\ +\xe0\x55\x0c\x55\x27\x31\x1e\xd2\x43\x8a\xef\xda\x40\xcb\xc5\xda\ +\xca\x8d\x50\xb2\x52\xb9\xa8\xd3\x6d\xd3\x28\xf9\xa9\x07\xcf\xd3\ +\x96\x94\x74\x4c\x93\xef\x14\x88\x92\xa5\x28\x07\xf1\x41\xcf\xb6\ +\xa2\x3f\x75\x17\x05\x3d\xea\xd9\xc9\x4e\xee\x1c\x35\x53\x64\x15\ +\x5c\x18\x9d\xe1\xdb\xef\xc7\x4e\xee\x62\x3c\x05\x9f\x32\x17\xdd\ +\x66\x97\xcf\x5a\x60\xe9\xdc\x44\xe2\x45\x23\x0b\xac\xfb\x80\xd9\ +\xf1\x40\x0e\x19\x81\x64\xb5\x66\xb3\x45\x7e\x28\xe7\x49\x7e\x32\ +\x4f\x52\x7c\x66\x81\x9c\x4d\x8e\x1c\x39\x72\xe4\xc8\x91\x23\xc7\ +\x4b\x41\xae\x50\xcb\x91\x23\x47\x8e\x1c\x39\x2e\x1b\x1b\x47\x31\ +\xae\x54\xc7\xfc\x32\x46\x47\x34\x60\x20\x7f\x36\x22\xa1\x41\x83\ +\x74\x68\x40\x03\x19\x7c\x5e\x5e\x6a\xe1\x2b\x8f\xfe\x21\xf6\x5c\ +\x17\x62\xeb\x0e\x0d\x02\x95\xd6\xa7\x58\x6b\x42\xb2\xce\xe6\x2a\ +\x78\xb6\xaa\x4b\xe7\xa9\x15\xda\x21\x6e\xb8\xf6\x76\xf4\x93\x0a\ +\x69\x69\x0b\x20\x8a\x04\x83\x6c\x5c\xa9\xa4\x0d\xe2\x42\x34\x2f\ +\x98\x7c\x0d\x68\xf5\xd1\xee\xd4\x75\x54\x89\x1b\xe8\x51\xf2\xcd\ +\x8d\x66\xfd\xd2\xa2\x57\xa0\x2f\x4d\x4a\xb6\x55\x6a\x34\x30\xad\ +\x6b\x24\x2d\x4c\x1f\x9e\x79\x76\xfe\xdd\x4a\x35\x73\x32\x2a\x1a\ +\x38\x33\x7b\xf9\xcb\xf2\x81\x57\xd2\x8b\x11\x25\x1d\xb4\xba\xcd\ +\x01\x16\x2f\xc8\xec\x65\xc2\x71\xef\xe0\xca\x51\x77\xad\xb0\xf3\ +\x29\x96\xdd\xff\xd0\xef\x61\xa1\xbd\x80\x56\xfb\x34\xbe\xfe\xe4\ +\x1f\xd8\x8a\x39\x1d\xf8\x4f\x76\x09\xfd\x0e\x86\x7f\x15\x21\x2d\ +\x1f\x43\x66\x1e\xbc\x84\x0b\x99\x73\xe4\xc8\x91\x23\x47\x8e\x17\ +\x82\xb5\x36\x84\xad\xf0\x40\xb3\x2e\xb9\x40\x16\x94\x12\xd8\x22\ +\xfb\x78\xf2\xb1\x67\xf0\x7f\x7c\xee\x9f\xe2\x9e\xbb\xc7\x50\x9c\ +\xec\x22\x8e\xb7\x41\x2b\xd3\x02\x9d\x49\x4b\x71\x41\xf7\x9e\x26\ +\x25\xf5\x42\x8c\x96\xf6\xc0\xe7\x7d\x9d\xb4\x93\x53\xae\x38\x5e\ +\x08\xd1\x81\xe4\x75\xba\x0d\x5b\x71\x27\x59\x47\xca\xb0\x74\x41\ +\x7e\x3a\x89\x88\x72\x94\xc9\x93\x92\x7d\x68\xe6\x3d\x9b\xa0\xa4\ +\x5f\x3d\xaf\x49\x56\x7a\x30\x19\xca\x3c\x99\xd2\x4c\x0a\x2d\x4a\ +\x99\xbc\xf7\x29\x37\xe9\xdc\xd9\x1e\xa2\x8e\xb6\x7d\x4c\x50\x6f\ +\x2c\xd0\x5f\x42\xfa\x2e\xf8\x8b\x02\xa3\x58\x43\x4a\xc7\xf8\xe2\ +\x9f\x56\xc4\xa9\xbc\x0a\x5a\xd1\xef\xf7\xf0\xc0\xc3\x5f\xc5\xa3\ +\x8f\x7f\x83\x1e\x9c\xcc\x64\xdb\x5b\x0e\x86\xcf\x91\x23\x47\x8e\ +\x1c\x39\x72\xe4\x78\x89\xc8\x15\x6a\x39\x72\xe4\xc8\x91\x23\xc7\ +\x8b\xc6\x4b\x19\x1d\xd8\x80\x4b\xf6\xf6\xdd\xd0\x81\xfe\x65\x4c\ +\x6f\x36\x28\x52\xf4\x43\xfc\x97\xdf\xfe\x7d\x8c\x1f\xe8\xe0\x86\ +\xab\x7a\x28\x07\x55\x14\xbc\x04\x5e\xc1\x47\x91\xbe\x34\x88\x11\ +\xfa\xbe\xc6\x3b\x80\x5e\x80\xa2\xe7\xa3\xdd\xee\xe3\xd6\x6d\x6f\ +\x46\x81\xf6\xbe\xa7\x81\x10\x29\x77\x52\x1e\x2e\xc5\xca\x8b\x85\ +\xe2\x1f\xbc\x0b\x83\xe6\x0d\x30\xae\x98\xbe\xa4\xb7\xca\xa7\x04\ +\x49\xa2\x01\xa0\x74\x35\x1d\xc3\xe9\xae\x6c\xb3\x99\xd1\x52\x1e\ +\x6a\x30\x45\x07\xe3\x33\x01\x6e\xa0\xc7\x8c\xf4\x5b\x58\x9b\x49\ +\x6d\xd6\x03\x97\xdc\xd3\x9b\xf9\xd3\x5d\x30\x3b\x73\x8b\xd1\xed\ +\xeb\x3c\xb3\x2b\x05\x51\x32\xe6\xd3\x47\xa6\x25\x1d\x65\x6a\x27\ +\x8b\x38\xb5\xfa\x18\xfa\x15\x96\x69\xd5\xc3\x77\x1e\xfe\x55\xcc\ +\x2f\x4f\x99\xb0\xa6\xf1\x2a\x95\x90\x90\xf1\xf8\x9a\x46\x9a\x8d\ +\x39\x72\xe4\xc8\x91\x23\xc7\x0b\x82\xb5\x1d\x03\x2d\xa9\xda\x63\ +\x13\x90\x08\xde\x24\x09\x48\x09\x73\xee\xec\x32\x7e\xfe\xdf\xff\ +\xcf\x98\xdc\x13\x63\xdf\x4e\x0f\xc3\xfd\x0a\x50\xa2\x54\xd0\xd3\ +\x8a\x78\x06\xe3\x8f\x5f\x08\x11\x04\x1e\x9a\x0d\x60\xcc\xdb\x8d\ +\x62\x58\x5c\x5f\xf9\x65\x51\xd8\xcf\x95\xc5\x0b\x6e\xfb\x14\xa0\ +\x80\x56\x7b\x95\x7c\xbb\x6d\x19\x1d\x5b\x4e\xc6\x52\x3a\x3c\x5f\ +\x4a\x27\x9a\xf5\x27\x67\xf7\x63\xb2\x87\xfc\x66\x13\x8f\xf4\xa0\ +\xfc\xc9\xe4\x29\x29\xdf\x24\x64\x66\xd9\xd7\xd7\x84\x26\xca\x98\ +\x9a\x9b\xd4\xa3\x7d\x18\x26\x94\x6d\xea\x34\x77\x9c\x02\x4f\x24\ +\x5e\x28\x14\xc6\x25\xc1\x99\xed\xd9\xc9\x6b\x92\x13\x65\x30\x27\ +\xde\xa7\x17\xcf\xe0\xe1\xa7\xbe\x84\x3f\xfa\xf3\x5f\xa2\x9c\xdb\ +\xa0\x93\x93\x1b\xdd\x96\x94\x39\x72\xe4\xc8\x91\x23\x47\x8e\x1c\ +\x57\x06\xb9\x42\x2d\x47\x8e\x1c\x39\x72\xbc\x76\x61\x83\x03\xba\ +\xbb\xdb\x65\xe3\xbb\xd1\x2f\xcf\x46\x23\x2e\x8a\x75\x3f\x99\xf7\ +\x5e\xdc\x43\xb4\x1a\xe3\x0f\x1f\xfc\x7d\xdc\x79\x60\x14\x5e\xb9\ +\x0b\x44\x45\x1b\xcc\xd0\x0c\xe1\x92\x1f\xc2\x4b\xd8\xe0\x07\xb4\ +\x48\x3c\xf4\xbd\x3e\x92\xa8\x82\x5a\xe9\x2a\x6c\xa9\x6d\x45\xb6\ +\x21\x8e\x0d\x46\x64\xf4\xd7\xa2\x59\x8f\xef\x25\xe3\x62\x79\x76\ +\x11\x37\x0d\xfe\x74\xba\x4d\x7a\x89\xcc\x9f\x8a\xcc\x0d\xd4\xa4\ +\xab\xb5\xc8\xa2\x66\x45\x8b\x77\x71\xab\x19\xca\xf0\x62\x9a\xe5\ +\x59\x7e\x88\x74\x26\x75\x5f\x2b\xd9\xf4\x2c\x27\x77\x73\x57\x56\ +\x0f\x08\x99\x35\x70\x64\xb4\x2c\x93\x63\x34\xda\x4b\x7a\x92\xf3\ +\x15\x40\x16\x57\x46\x8f\xcf\x8c\x33\xf0\x3d\xdc\xf7\xcc\x17\xe1\ +\x85\x60\xd9\xf8\xf0\x6a\x09\x46\x86\x2a\xf8\xfa\x13\xbf\x09\x3b\ +\xf0\xce\x92\x6b\xc3\x58\x57\x8c\x93\xef\x29\xb2\xcc\x17\xd6\xb3\ +\xff\xf2\xf1\x62\xc2\xe4\xc8\x91\x23\x47\x8e\x1c\xd6\x7e\x0c\xb6\ +\xa4\x34\xab\xed\x4f\x9f\xa2\x5e\x0f\x41\x21\xc0\x2f\xfe\xfb\x7f\ +\x01\x3f\x38\x8a\x9d\xd7\x85\x18\xae\x95\xe1\x17\x6b\x94\xb9\x3a\ +\x6c\xaf\x03\x44\x9d\xd8\x29\xa2\x18\xca\xf7\x29\xa1\x34\x2b\xb8\ +\x76\xcf\xb5\x24\x5d\x24\x2d\x51\xca\x1a\xb9\xbf\xe0\x16\x3b\x6b\ +\x1b\x07\xdb\xc8\x94\x9f\xd5\xd6\x92\x6d\x83\xa8\x2d\xaf\x05\x13\ +\x71\x24\x1b\xf1\xcf\xed\x00\xe0\x94\x6a\x3d\xed\x41\x9d\x8a\x4f\ +\x6b\x18\xc8\x1f\xad\x5c\x93\x78\x65\x29\xa4\xbd\xb4\x6e\x76\x5f\ +\x8b\xb3\xe7\x94\x8a\x05\xcf\x14\x75\x89\xd7\x46\xab\xdd\x1c\xc8\ +\x8a\x17\x91\x27\x16\x99\x33\x1a\x44\x5e\xb7\x34\x7e\xad\xe4\xf7\ +\x28\xdf\x3e\x73\xf0\x51\x8c\x6e\x0f\x10\x0c\xd7\xf1\xc0\x63\x5f\ +\x60\xf9\x48\x3e\x54\x40\xf2\x2c\xbf\xaf\x56\x64\x49\x7b\x15\x27\ +\x31\x47\x8e\x1c\x39\x72\xe4\x78\x39\x21\x57\xa8\xe5\xc8\x91\x23\ +\x47\x8e\xd7\x2e\x32\xad\xd4\x0b\xed\xdb\xbf\x88\xb1\x80\x97\x0c\ +\xc5\xb9\x16\x6f\xc6\x77\x01\x81\xe7\xe3\xa1\xa7\x9e\x42\x23\x59\ +\xc6\xd6\x5d\x31\x2a\xc5\x51\x14\xc2\x98\x9d\x6a\x0d\x08\xf9\x88\ +\x78\xe9\xec\x2d\x9d\x85\x61\x2b\xb5\xe2\x08\xab\xed\x04\x23\xe1\ +\x6e\x52\x09\x35\x1a\x91\x0e\x36\x64\xbd\x70\xd2\xfe\x6e\x74\xc8\ +\x2f\x23\xcf\x9c\x97\xf3\x23\x8f\x93\x04\xdd\x5e\xd7\x29\xc3\x52\ +\x5e\x8d\x5b\x33\xcb\xb7\x06\x52\x68\xea\xf1\x9f\x77\x77\xfe\x87\ +\xdc\xa5\x3c\xa3\xbd\xfd\xbb\x81\x20\xdb\xbe\x48\xee\x76\xa5\xb1\ +\xd1\x2c\x3f\x2e\xf6\xd4\x8e\xf9\x24\x2b\x6d\x7f\xa4\x03\xee\xeb\ +\x6d\x77\xa0\xbe\xe0\x7c\xbc\x54\x18\xf5\x75\x5a\xe4\x21\x46\x82\ +\x47\x9e\xfa\x2a\xca\xb5\x1a\x8a\xb5\x02\xfc\x72\x13\xfd\x4a\x07\ +\x73\x4b\x27\xd1\xea\xac\x30\x62\xfa\xb6\x00\x59\x28\x63\xfa\x95\ +\x09\xb1\xae\x64\xac\x65\xc0\x25\x70\xb9\xfe\x72\xe4\xc8\x91\x23\ +\x47\x8e\x4b\xc1\xda\x14\xd7\x0e\xaf\x9b\xf9\x6b\x6d\x3f\xdb\x63\ +\x2f\xc1\xd3\x4f\x1d\xc6\x83\x4f\xfc\x11\xc6\x0e\x0c\x61\xdf\x48\ +\x82\xc4\xab\xb0\xa9\x6e\xc3\x2f\x04\x14\x4c\x9c\xff\xd0\x0f\x6c\ +\xf5\xbf\x97\x94\x51\xf1\x27\x71\xc3\xb5\x57\xa3\x9f\x88\xa0\xce\ +\x7a\x35\x2f\x7f\xf1\x50\xbc\xe9\x6a\xac\x35\x16\x24\xe7\x90\xa7\ +\x4e\xd4\x02\xa4\xe0\xa2\x5c\x93\xad\x38\x73\xb2\x12\xcd\xe4\xdb\ +\x3d\x4b\x8e\x4a\x4c\x96\xb2\x6c\xc9\xee\x19\xe4\x47\x16\xfc\xd7\ +\xae\x01\xce\x59\xf2\x99\xbb\x6b\x1b\xcc\x84\x72\x9b\x22\x57\x1c\ +\x01\xe3\x6b\xc6\x6d\x74\xe2\xa6\x0b\x6e\xbf\x57\x02\xc6\x85\xe5\ +\xb3\xe3\xc7\x9e\x70\xb2\xf9\x14\xa2\x9d\x7d\xb4\xfd\x25\x3c\xf0\ +\xd4\x1f\xd2\x85\x3c\x69\xea\x98\x64\xbe\xf5\x0c\x49\xaf\x57\x19\ +\x5c\x16\xbc\x2a\x93\x96\x23\x47\x8e\x1c\x39\x72\xbc\xdc\x90\x2b\ +\xd4\x72\xe4\xc8\x91\x23\xc7\x6b\x0f\xaf\xe4\xce\xa6\x8d\xd2\xb8\ +\x81\x04\x0d\x78\xf8\xbe\x87\xcf\xdf\xfb\x67\xd8\x7f\x53\x05\xbb\ +\x26\x7a\xf0\x43\x37\x3b\x3a\x1b\xcc\xf1\xe9\x27\xf6\x3c\x04\x91\ +\x14\x6a\x66\x83\x5e\xa7\x87\xa1\x91\x21\x78\x85\x92\xf9\x19\x18\ +\x65\x20\xd2\xcc\x19\xb4\xda\x0c\x97\x93\x87\x17\xf2\x23\xfb\xc1\ +\xeb\x3c\xb8\xf4\x99\x4a\x8b\xff\x49\xdc\x45\xcf\xd7\x60\x08\x1f\ +\x0b\x4a\x43\xc1\x66\x4f\xeb\xae\xf4\xc8\x5e\x8a\x34\x29\xd1\xe4\ +\x7f\x8d\x6d\x23\xe3\x06\x88\x2c\x0e\xbb\xf4\x43\x3b\x9b\x59\xcd\ +\xbf\x64\xdd\x4f\x4f\x83\x2e\x22\xc8\x4b\xcf\x9e\x11\x97\x39\x41\ +\xbd\xb9\x4c\x8f\x72\x52\x24\x6e\xf5\xda\x95\x80\xb8\x71\x14\xfb\ +\x58\xd4\xd6\x8e\xe5\x16\x2a\x15\x3e\x31\x9e\x48\x33\xc4\xfd\x18\ +\xbd\x60\x19\x4f\x1c\xfd\xba\xad\xca\x33\x7e\xd7\x70\xa5\xb8\xf8\ +\x0b\x82\x12\x3b\x88\xf4\x59\xa9\xb0\x6c\xcf\xcc\x1b\x2e\x21\x1d\ +\x1b\x5c\x47\xf6\xac\xfb\x46\xb7\x1c\x39\x72\xe4\xc8\x91\x63\x23\ +\x06\xdb\x0a\x33\xb3\x85\xc9\x84\x88\x35\xb8\x95\x4e\x95\x42\x11\ +\xff\xf8\xbf\xfc\x6b\xec\xd8\x05\xbc\xee\x75\x21\xfc\xd2\x38\x7c\ +\x8f\x32\x03\xe5\x11\x4d\x50\xd2\x44\x1b\x6d\xb5\x1d\x14\x3c\xfa\ +\x07\x4a\x5e\x01\x41\x50\x45\xb1\x30\x42\x0a\xda\x5e\x5b\xad\x3a\ +\x91\x35\x62\x7f\xd1\xed\xd4\x5a\x7c\xa9\xc1\x1a\xd1\x02\xba\x49\ +\x1b\x09\xb4\xb2\xce\xc9\x3b\xee\x6c\x31\x27\x1b\xda\xaa\x33\xf3\ +\x46\x79\x88\x69\xd2\x09\xb6\xe7\xd1\x91\x99\x97\x92\xe4\x92\x25\ +\xff\x92\x60\x9c\x39\xbb\x89\x96\xd1\xe5\x9f\xce\xa1\x15\x3d\x6d\ +\x9b\xbd\xda\x5a\x71\x5e\xcc\x6b\xea\xff\x72\xb0\xc6\xc3\xf3\x91\ +\x51\xe9\xf5\x0a\x08\xa5\xc8\xa3\x90\xd4\xe8\x1e\x43\xab\x71\x16\ +\x6d\x3f\xc0\x4a\x7f\x0a\x0f\x1f\xfa\x92\xf9\x33\x99\x8f\x69\x7c\ +\xc5\x22\xcb\x87\xc1\xfb\x46\x3b\x61\xa3\x7b\x76\xe5\xc8\x91\x23\ +\x47\x8e\x1c\x39\xae\x28\x72\x85\x5a\x8e\x1c\x39\x72\xe4\x78\xed\ +\xe1\xc5\xf6\xa9\xcf\x1b\x78\x19\xc4\x77\xab\xb7\xba\x09\x5d\x0d\ +\x7e\x98\x21\x1d\xfc\xe8\x01\x87\xa6\x9e\xc3\xee\x5d\x25\xda\x78\ +\xe9\xea\x2c\x1d\x94\xef\xa7\xe7\x55\x24\x08\x0b\x05\xc4\x52\x06\ +\xf5\x3d\x04\x34\x17\x6b\x11\x9a\x8d\x06\x90\x14\xd0\x4b\xd2\x38\ +\x8c\x68\x4a\x7b\x2d\x7f\x2e\x92\xae\x35\x3f\x17\x80\x82\x5a\xfc\ +\xe9\x35\x88\x2c\xec\xa6\x34\x9c\x67\xe3\x84\xff\x2b\xab\x4b\xe8\ +\xfb\x09\xe2\x44\x03\x33\xb4\x60\x02\x5d\x30\xa7\x5c\x73\xe9\xd5\ +\x40\x89\xbb\xf7\x34\x70\x24\x3b\x5e\xce\xd2\x3c\x3b\x7a\xa9\xc9\ +\x06\x8e\xa4\x84\xcb\x1c\x89\xbe\xcd\xb4\x96\xaf\x54\x61\x26\xda\ +\xb2\x47\x82\x95\xd6\x82\x6c\xcc\x7d\x3d\xcc\x7a\xd8\x4d\xb1\x99\ +\xf3\x80\x9d\x19\x15\x51\x8f\x3f\x85\x04\x27\x66\x8e\x22\xf6\xdb\ +\xb4\xd7\xec\xf1\x88\x45\x15\xd1\x3e\x46\xa1\xda\xc2\x77\x9e\xfd\ +\x1c\xda\x2b\x0d\x7a\x57\xa8\xf5\x74\x5c\x92\x87\x97\x13\xc4\xf6\ +\x06\x76\x6d\x8c\x6f\x43\x32\x06\xbd\x64\xe6\x41\xbb\xf3\x20\x9a\ +\x59\x76\xe4\xc8\x91\x23\x47\x8e\x1c\x17\xc2\x60\x5b\x31\xd8\x8c\ +\x66\x66\xde\xd5\xbe\x87\x09\x70\xea\xe0\x39\x3c\x78\xec\x0b\xd8\ +\x7f\x7d\x19\x5b\xaa\x11\xbc\x20\xa6\x74\xd5\xb3\xdd\x97\x85\x90\ +\xf2\x95\x33\x7a\x48\x12\xb6\xdb\xd1\x08\xbc\x46\xc8\xf6\xbc\xab\ +\x39\x4b\x86\xf3\xdb\xeb\xef\x25\xb2\x16\xb4\x87\x66\x77\x05\x51\ +\xd2\xb5\x74\x4a\x9e\x71\x67\xd2\xd2\x25\x95\x03\xfb\x3d\x3d\xd3\ +\x8d\x79\xe0\x64\x1d\x5e\xe9\xcd\x3c\xa6\xc8\xb6\x86\x94\x2c\xa5\ +\x0d\x02\xcc\x2f\xff\x25\xa2\xd9\x04\x27\x12\xf0\x7c\xd1\x4a\x28\ +\x66\x86\x8c\xb9\x85\x95\x8e\x9b\x98\xb4\x4e\xe5\x05\x62\x20\x2b\ +\xcf\xa3\x41\x7b\x9d\xdb\xa6\x59\x47\x47\x16\x9e\x45\x37\x5a\x45\ +\xa3\xb1\x8c\x52\xad\x0f\xbf\x16\xe2\x4f\x1e\xf8\x0f\xe8\xb6\x95\ +\x26\x09\x85\x0e\x26\x7b\xbc\xd2\x90\xa5\x5f\xf7\x8c\xff\x41\x73\ +\x8e\x1c\x39\x72\xe4\xc8\x91\xe3\x2f\x14\xb9\x42\x2d\x47\x8e\x1c\ +\x39\x72\xe4\xb8\x54\x87\x74\xad\xf3\x9a\xf5\x68\x37\xe2\x42\xf6\ +\x2f\x15\x9b\xd0\xa5\x95\x63\x47\x83\x16\x34\xc5\x40\xbb\xb9\x8c\ +\xf1\xc9\x10\x89\xce\x48\xd3\xca\x26\xda\x17\x3c\x9d\x1c\x51\xb0\ +\x81\x03\xdd\x51\x08\xe0\xeb\x21\x29\xa0\x5a\x0e\x71\x6e\xe6\x24\ +\x3a\xc9\x2a\x3c\x9d\x39\x46\xeb\x81\xb1\x12\x87\x8d\xcf\x1b\x31\ +\xe8\xbe\x99\xdf\x8c\xf5\xcd\xb2\x26\xf3\xaf\xfb\x66\xee\xb2\xd3\ +\xd8\x07\x59\x9b\x99\x3d\xe5\xce\x7d\x33\x0d\x19\x2f\xba\x69\xa5\ +\x9a\xef\xf9\x34\xf7\x68\xcf\x67\xfb\xa1\x2b\xaf\x42\x4f\xe9\xa1\ +\x9b\xd1\x96\x7f\xad\x6e\x93\xbb\x2c\x9c\xb5\x2e\x1b\xf4\xb1\x88\ +\xf8\x94\x96\xab\x6d\x71\x24\xa4\xcf\x76\xee\x1c\x8d\x4b\x75\xb7\ +\xe5\xe3\x8b\x9a\xdd\x9c\x92\x5c\xbb\xa7\xb0\x98\x55\x4e\x8a\xb3\ +\x57\xc4\xc9\xf9\xa7\x10\x04\x1a\x9c\x8a\x58\x76\x3d\x2d\x8e\xa3\ +\x7b\x0f\xdd\x76\x0b\xa5\x6a\x8c\x87\x0e\xfd\x99\x9d\xd3\x62\xd9\ +\x60\xa1\x07\xef\x2f\x63\x28\x7b\xd3\xbb\x61\x43\x3e\x6c\x44\x96\ +\xa2\xcc\xdb\x45\x53\x28\x4f\x1b\xaf\x1c\x39\x72\xe4\xc8\x91\xe3\ +\x3c\x5c\xa8\x71\x48\xed\xd9\xd0\xa8\x29\x8e\xa5\x74\x29\x86\xf8\ +\xfb\xff\xfe\x7f\xc3\xae\x5d\x05\xec\xba\x3e\x44\xe8\x6d\x33\x45\ +\x9a\x14\x64\x81\x5f\x32\x41\xc3\x0b\x7c\x8a\x27\x6a\xbf\x0b\xb6\ +\x9a\xbd\xd5\x2e\x60\xf7\x96\x03\xa6\xd4\x59\x6f\xb3\x2e\xda\x7a\ +\xfd\x05\x43\x53\x75\x22\x74\xe2\x36\x65\xa6\xd8\xd2\x6a\x72\x91\ +\xa5\xcb\xb9\x4a\x22\x92\xc0\x68\x0a\x32\xba\xc9\x39\xfd\x71\x7e\ +\x05\xdd\x07\xed\x34\x39\x29\xb3\xf2\x34\x41\x4b\xb9\xa4\x07\xda\ +\x29\x9f\x7c\xca\xa1\xcc\x9f\xa0\x18\x61\x79\xd5\x4d\x4c\x4a\x9d\ +\xcf\xcf\x9d\xd4\xee\xa2\x18\xf0\x73\x5e\x1e\xd3\xde\x4d\x1e\x0b\ +\xf0\xd0\xb1\xaf\x33\xae\x3e\x22\xc6\x59\xa9\xd6\x50\x1c\x0a\xd1\ +\xaf\x76\xf0\xc4\xd1\x6f\x21\xa0\x27\xcf\x64\x38\xa7\xea\x74\xb8\ +\x9c\x88\xbf\xc7\xc8\x58\xd4\x3d\xbb\x32\xbc\x10\xf6\x07\xc3\xbf\ +\x90\x70\x39\x72\xe4\xc8\x91\x23\x47\x8e\x4d\x91\x2b\xd4\x72\xe4\ +\xc8\x91\x23\x47\x8e\xf3\x7a\xf6\x1b\x60\x1d\x4f\xfe\x7c\xaf\x3a\ +\xa0\xcf\x8b\xd7\xad\xa1\x12\xcb\x9e\x46\x11\x12\x29\x7c\x16\x31\ +\x5e\xee\xd1\x22\x30\x65\x8c\x86\x74\x4c\xc9\x94\xfa\x16\xfc\x02\ +\x4d\x1a\x50\xf0\x7c\x54\x83\x32\xfc\xa1\x15\x3c\x72\xe4\x5e\xf8\ +\xa1\xfc\xd2\x9f\x79\xd3\x50\x48\x1a\xe1\xc5\xf2\x44\x18\x74\xbf\ +\x1c\xbf\x59\x3a\x36\xa6\x67\xf0\x79\x8d\x0e\x0d\x4e\xa3\x84\x7a\ +\x7d\x01\x08\x12\x68\x4b\x46\x59\xdb\xd6\x87\xb4\x2f\xf8\x7d\xdb\ +\x76\xc9\x56\x9a\xf5\x35\xb4\xc5\x3f\x5b\x85\x27\x22\xe9\x5d\x97\ +\x1e\x53\xc5\x9a\x73\x63\x84\x72\xee\x15\xd6\x0e\xe6\x37\x3b\xe5\ +\x0f\xaf\xb5\x81\x23\xc2\x56\xfc\x31\x83\x5b\xed\x06\xbd\xe8\x5c\ +\xba\x8b\x31\x7f\x01\xa4\x51\xae\x41\xe6\xf4\x59\x79\xae\xc1\x2b\ +\x78\x7d\x2c\xae\x4e\xa1\xef\x47\xf0\x0a\x7d\x4b\xa3\xb1\x2d\x0f\ +\x05\x1f\xbd\xc2\x0a\x9e\x3a\xf1\x0d\x44\x71\x57\x5e\x07\xe0\x54\ +\x82\x2f\x6b\x6c\xc2\xa0\xa5\x6d\xd0\xb0\xc9\x65\x49\xdf\x60\x2e\ +\x30\x6f\x74\x99\x96\x38\x75\x7b\xde\x95\x23\x47\x8e\x1c\x39\x72\ +\x9c\x87\xb4\x71\x18\x6c\x3f\x37\xb4\x17\xd6\xc6\xb0\xcd\x6f\x2c\ +\xd4\x71\xff\xd3\xf7\x61\xff\x81\x2a\x26\x2a\x94\x1b\xd8\xe8\x6a\ +\xfb\x43\x6d\xaf\x1d\xf0\x2a\xe8\x90\x30\x89\x14\xbc\x4b\x82\x08\ +\x83\x1a\xed\x8b\x18\x1d\xad\xd1\xaf\xb6\xdc\x76\xb4\x14\x95\x45\ +\x31\x18\xe7\xa0\xf9\xbb\x89\xc1\x88\x79\x93\x1c\x13\xf7\x7b\xa6\ +\x50\x8b\x29\xf0\x69\xe5\x98\x39\xd1\x2e\x91\x5c\xa3\x36\x95\x77\ +\xc9\x3f\x5a\xad\xa6\x89\x3b\x4e\x61\x96\x5e\xe6\x57\x52\x56\xfa\ +\x48\x59\xca\xfc\x4a\x06\x4b\xcd\xb6\x85\xa4\x94\x68\xa6\xdd\x92\ +\x3f\xca\xa2\x92\x65\x28\xab\x05\x41\x1f\x27\xa6\x8f\x98\xfd\x7a\ +\x1e\xac\x19\x9e\x8f\x4b\x38\xe9\x72\xb1\xf0\x4e\xde\x35\xc9\x4a\ +\x69\x98\x9b\x3e\x8a\xa4\x98\xa0\xc2\xab\x58\x2a\x5b\xdc\x7e\x15\ +\x78\xe8\xc4\x57\xe9\x27\xb1\x64\xae\x05\x56\x90\x35\x2a\x2f\x63\ +\x0c\xb2\xb8\x99\xf9\x72\x92\x30\xe8\x37\xbb\x72\xe4\xc8\x91\x23\ +\x47\x8e\x1c\x2f\x09\xb9\x42\x2d\x47\x8e\x1c\x39\x72\xbc\xfa\xa1\ +\x0e\xf4\x20\xb2\x4e\xf5\xa5\x90\x75\xbc\xb3\xde\x67\x16\xee\x62\ +\x61\xd3\xc1\x07\xc3\xc5\xfc\x5d\x0c\x83\x34\x2e\xd2\xf1\xcd\x9c\ +\x74\xe8\x7b\x58\xf4\x91\x14\x7a\xa6\x3b\xb2\xd1\x1c\xb9\xa6\x83\ +\x1c\x9a\x21\xec\xd9\x8a\x35\x0f\x61\x58\x40\x12\x17\x50\x1a\x59\ +\xc6\x43\x87\xff\x18\xab\x2b\xcb\xf4\xa3\x41\x91\x17\xc8\x6e\xe6\ +\x59\xf7\xec\xda\x0c\x1b\xed\x2f\x92\x1e\xf9\x75\xce\xa9\xa1\xef\ +\xa1\x91\x2c\xba\x33\x3f\xd2\xb4\x68\xa5\x9a\x25\x8f\x7e\x8c\x67\ +\x6d\xf5\x43\x83\x3b\x40\xbf\x20\x5b\xfb\xcb\xd2\x6f\x46\xf9\x36\ +\xa3\x0b\x63\x33\xb0\x19\xce\x6d\x4d\xe4\xdc\xe5\xea\x14\x6a\xee\ +\xc9\x45\xe1\xd1\x6f\xcf\xb6\x48\x8a\xa3\x26\xdd\x15\xd0\xc5\xe1\ +\x60\xbe\x2e\x0e\x79\x1d\xf4\xb6\x21\x88\xca\x6b\xb9\xbd\x88\x5e\ +\x61\xd1\x06\x9d\x3c\x37\x15\x1e\xa5\xd0\x47\x10\x16\x19\x3c\x46\ +\xd0\x2f\x22\xa8\xac\xe0\xf1\x23\xf7\xa6\x07\xfe\xa7\x81\x09\xc7\ +\x4b\xc6\xcf\xcb\x0b\x59\x52\x8d\xbb\x0d\xe9\xb6\xe7\xf3\xd8\x4e\ +\xd3\x61\x05\x30\x70\x3f\xef\x72\x50\xd0\x8d\xe4\x72\xe4\xc8\x91\ +\x23\x47\x8e\x8b\xe2\x22\x0d\x87\x14\x4b\xa1\xef\xe1\x77\xbe\xf0\ +\x47\x18\xda\x1a\xe3\x86\x9b\x87\x51\x0e\x46\xd8\x14\xb1\xed\x91\ +\x6c\x45\x3f\xba\x4c\xa9\x46\x3b\xc9\x21\x8e\x5c\x1f\x7e\xe8\x51\ +\x4e\xe8\x58\x33\x65\x4d\x17\x5d\xd6\x24\x85\xc1\x38\x07\xcd\x83\ +\x58\x6f\xde\x5e\x1c\x36\x86\x4f\x9f\x8d\x03\xfe\x3b\x19\x2f\x41\ +\x14\xb7\x68\xeb\x56\xa8\xad\xc9\x3b\x9a\x6c\x24\x9f\x9a\x70\x64\ +\x97\xcc\xb4\xd6\xee\x05\x46\x48\x76\xf6\xeb\x1e\xed\xd2\x4f\x2a\ +\x4b\xa5\x7e\xdc\x79\x6a\xce\x5e\xd0\x2e\x09\x0a\xa3\xdd\xba\x83\ +\x00\x98\x5b\x3e\x67\xce\x0a\xba\xee\x2b\x35\x19\xf1\x01\x6c\x7c\ +\x1e\x80\x9c\x74\xad\xd1\x20\xc1\x1e\x23\xe9\x46\x75\x74\xfb\xb3\ +\x74\x8c\x29\x47\x05\x94\xa9\x12\xf4\xbc\x1e\xca\x18\x42\xdb\x9f\ +\xc3\x43\x47\xbf\xea\xbc\x5b\x72\x5d\x04\x8e\xf7\x75\x6e\x5e\x76\ +\xc8\x58\xd3\xfd\xbc\x44\x13\x9b\xd9\x5d\x08\x83\x74\xb2\x4b\xb8\ +\x9c\xb0\x39\x72\xe4\xc8\x91\x23\x47\x8e\x4d\x91\x2b\xd4\x72\xe4\ +\xc8\x91\x23\xc7\xab\x1f\xae\xef\x7c\x7e\x47\x32\xb3\xbb\x14\xd2\ +\x81\x83\xf3\x30\x18\xf6\x79\xce\x03\x8e\x97\x1b\xc7\x46\x38\x8d\ +\xd1\xf9\x58\x8b\x67\x3d\x42\x5b\xdd\xa4\x31\x0c\x3f\x46\xb7\xde\ +\x4b\xc7\x08\xdc\x9c\x5b\x0d\x65\x48\xc9\x94\x0d\xfa\x48\xa9\xa6\ +\x01\x1e\xdf\xe3\x3d\x88\xd0\x8e\x5b\xa8\x4e\x34\x71\xdf\xa3\x9f\ +\xb7\x6d\x79\xa2\x58\xb3\x96\xe5\x73\x93\xf4\x5e\x0c\x16\xe7\xc0\ +\x7d\x10\x22\x35\x68\xaf\xe7\x8b\x92\x5f\x77\xd4\x56\x4a\x92\x52\ +\xe6\x57\xa6\xec\x20\x7d\xa6\xce\x14\x60\xe6\x96\x0e\x04\xf5\xe8\ +\x47\x03\x22\x36\x8e\x43\xb8\xc1\x11\xde\xe9\xe8\x56\xae\xa5\x03\ +\x46\x83\x97\x72\x81\x77\x29\xe6\xcc\x1f\xcd\xe6\x27\xcd\xf3\x8c\ +\x86\x56\xf3\xd9\x0a\x35\x2f\xe1\x43\x84\x46\xb7\x09\x5f\xe7\x8d\ +\x98\xa7\x2c\x51\xce\xef\x1a\x36\x3c\xae\x21\xb3\x1f\xc8\x0b\x59\ +\xd9\x76\x51\x7e\x1f\xc7\xa7\x4f\xa0\x14\xf4\x50\xf0\x7b\xf0\x03\ +\x1f\xc5\x20\xb0\x2d\x2d\x25\xa4\xe9\x2c\xbc\xb0\x48\x5e\xca\xcb\ +\xb8\xef\xe9\x3f\xb0\x15\x89\x62\xd8\x78\x7e\x39\x62\x80\xaf\xc1\ +\x64\xdb\x55\x50\x7d\xa4\x6d\x36\x4d\x3c\xbb\x67\x85\xa0\x32\x51\ +\x49\x6b\x06\xbd\x06\x00\x5d\xa9\xdb\xe5\x2a\x7a\x76\x29\x9c\x06\ +\x38\x49\x6f\xed\x1a\x88\x87\x57\x8e\x1c\x39\x72\xe4\xc8\xf1\x3c\ +\xa8\xf9\xc8\x30\xd0\x58\xd8\x82\x75\x5e\xbf\xff\xcd\xff\x8e\xad\ +\x7b\x80\x2d\x61\x9b\xb2\x47\x85\x7e\x12\xb7\xc5\xb4\x85\x73\x32\ +\x95\x6d\x1f\x48\x83\x5f\xf0\x69\x43\x7f\xbd\x25\xcc\x2d\xce\x02\ +\x91\x64\x0f\x06\xa1\x1f\xb5\x4a\x6b\xe4\x2f\xd5\x28\x5d\xca\xfd\ +\x52\xb8\x50\x78\xd9\xb3\x9d\x15\x2f\x8d\xce\x0a\xe2\x5e\x37\x5d\ +\x99\xaf\x09\x45\xba\x0b\xa9\x9c\x64\x77\x27\x01\xb9\x26\x39\xcd\ +\x28\xde\x8d\x7c\xf6\xa8\x3f\xf9\x33\x19\x4b\x57\x6a\xaf\x30\x76\ +\x77\xf6\xca\x1f\xdd\x4d\x31\xe7\xf5\x98\x97\x2b\xcc\xe4\xf5\x2d\ +\xb8\xd3\x60\xe7\xc3\x08\x0c\x5c\x17\x80\x9c\xc4\x93\xad\x4c\x23\ +\x7d\x4d\x14\x7b\xf4\xe8\xa3\x7c\x6e\x91\x74\x64\x2b\xe3\x7c\x16\ +\x84\x56\xcb\xf5\xfd\x16\x50\x5a\xc0\x57\x9e\xf8\x7d\xf4\xa3\x1e\ +\xd3\x9d\x06\xbe\x50\x9e\xbd\xdc\x90\x25\x76\x33\x5c\x24\x8f\x2e\ +\x0b\xaf\x94\x3c\xc8\x91\x23\x47\x8e\x1c\x39\x5e\x86\xc8\x15\x6a\ +\x39\x72\xe4\xc8\x91\xe3\xb5\x83\xc1\xce\xa3\x3a\xa2\x83\xd7\x46\ +\x98\x9d\x7e\x36\x06\x4a\x6f\x59\x18\x39\x67\x66\x61\xe3\xf3\xa0\ +\xf9\xa5\x60\x93\x8e\xaf\x6d\xad\xc3\x96\xbc\xdb\x49\x70\x76\x66\ +\x01\xa5\x80\xde\x32\xc5\x50\x3a\xa3\x5a\x30\xbb\xbe\x5b\xd9\x15\ +\xf0\x47\xc1\x7c\x2f\x81\x5f\x5a\xc1\xb9\xe6\x7d\x38\x31\xf5\x24\ +\x4a\x61\xa8\x40\x64\x57\xa1\x06\x13\x98\x62\x63\x3a\x32\xe2\xc2\ +\xa0\x59\x18\x0c\xbe\x09\xa9\x8b\xc3\x79\xb6\x2d\x1e\xfb\x31\x96\ +\x1b\x73\xee\x10\x7d\xdb\x5a\x48\x23\x55\x74\xb4\x7d\x0f\xfb\x48\ +\x52\x05\x9b\x9b\x71\x6c\x46\x42\xe1\x34\x90\x43\xff\x5a\xfe\x45\ +\x68\xfc\x26\x83\x1b\xcb\x71\x83\x40\xe9\x71\x73\xf6\x6c\x59\x64\ +\x1e\xb2\x67\x5a\x28\x2e\x9f\xd1\x05\x3d\xac\x36\x17\xf9\xe0\x06\ +\x88\x5e\x34\x14\x34\x0d\x6e\x59\x46\x73\xaf\xef\xe1\xcc\xd4\x53\ +\x28\x14\xbb\xa2\xce\x72\x61\x21\x12\x2a\x23\x9d\x87\xa7\x4b\xb3\ +\xca\xa3\xa8\x8b\x7a\x7f\x1e\x33\x73\x27\x11\xf8\xf4\xa9\x95\x79\ +\x19\x31\xc3\x4b\xe0\xeb\x4a\xc2\x12\x96\x42\xf9\x68\x7c\xa5\xd7\ +\x9a\x51\xe6\x3e\xd3\x9e\xb0\x0c\x7a\x48\x92\x04\x31\x2f\x0d\xf4\ +\x59\x11\xf7\xfd\xf5\xab\xc7\x02\xe8\x79\xe8\xc5\x05\x2b\x2f\x6d\ +\x47\x95\x68\x4b\x2a\xdb\x96\xca\xd1\x39\x3f\x52\x17\x45\x8e\x1c\ +\x39\x72\xe4\xc8\xf1\x3c\x9c\xd7\x5c\x0c\x3c\x68\xa2\x4c\xdc\xc7\ +\xc2\xf2\x69\x5c\x7d\xc3\x2e\x54\xfd\x22\x7c\xb6\xfd\xd6\x26\x15\ +\x3c\x9b\x8c\xa4\x81\x13\x27\x77\xb9\xc9\x49\x9a\x10\x23\x21\xa1\ +\x1b\xad\xe2\xe8\xec\xd3\x8e\x46\x2a\x57\xa8\xed\xbb\x80\xda\xe8\ +\xd2\x78\xa9\x8d\xd8\x5a\xb2\x48\x28\xa5\x75\x6e\xee\x14\xd9\x63\ +\x3b\x2b\x8d\x52\xda\x06\x9b\xca\x4f\x62\x92\x3d\x4a\x90\xe2\xa3\ +\x3d\xbb\x70\x6b\xe7\xc6\xba\x47\xf7\x63\xf6\xba\xf4\x33\x28\x13\ +\xc9\x9c\x1a\xe9\x49\xab\xfb\x3d\x4d\x42\xd2\x0a\xb8\x42\x8c\x6e\ +\xd2\x20\xed\xee\x5a\x78\x33\x5c\x0a\x17\xf1\xe2\x9c\x5c\x0e\x17\ +\xfa\x01\x1e\x38\xf2\x55\x94\x4b\x2c\xc2\x28\x66\xb9\xd1\xbe\xa0\ +\x32\xf2\x19\x67\x44\x19\xb2\x8d\x28\xac\xe3\xe8\xb9\x27\x29\x3f\ +\xd1\xcd\x25\x75\x00\x97\xc1\xcb\xf7\x02\xca\xfe\xb5\xb2\x24\x32\ +\xf3\xa0\x9d\x90\xf9\x1b\x74\xbf\xd4\x95\x23\x47\x8e\x1c\x39\x72\ +\xe4\x78\x49\xc8\x15\x6a\x39\x72\xe4\xc8\x91\xe3\xd5\x07\xf5\x8d\ +\x37\x5e\x17\xc3\xc6\xce\xa5\xfc\x5b\xa7\x73\xa3\x83\x9e\x37\x10\ +\xdb\x8c\xf6\x60\xb0\x8d\x24\x2e\x0b\x9b\x11\xcd\xec\xd6\x09\x6a\ +\xdc\x03\x01\x50\x2a\x8c\xe0\xc4\x89\x39\x04\xa1\x0e\x80\x77\x33\ +\xa9\xdd\x20\x90\x1b\xe0\xc8\x74\x43\x36\x63\x98\xa1\x7c\x3e\x85\ +\x7e\x01\x71\x6f\x19\xbd\xd2\x02\xbe\xfa\xe0\x7f\xc0\xd2\xca\x8c\ +\x0d\x10\xd9\x00\x89\xf9\x76\xf1\xad\xc5\xb6\x66\xf8\x6e\x23\x8d\ +\x5b\x0a\xb1\x5e\x82\x7a\x7b\x89\x1c\xc7\xa6\x7c\xd1\xa0\xd6\xda\ +\x20\x8e\xf1\xd3\xa7\x1f\x97\x46\xd3\xad\xc9\x89\xbe\x9d\x97\xf4\ +\x4e\x07\x9b\xc4\x9c\x8a\x3c\x1a\x40\x32\x65\x99\x85\x63\xf8\x81\ +\xcb\xdc\xe5\x26\x23\x23\x50\x14\x05\xaf\xcf\x7c\xea\x61\x7e\x71\ +\x46\x8e\x16\x5e\xff\x99\xff\x4d\x71\x21\x27\x11\x4c\x6f\x6e\x05\ +\x56\x1f\xed\x36\xb0\xd2\x3e\x83\xb8\xaf\x81\xa6\x00\x3a\xe3\x4e\ +\x65\xc7\x08\x6c\xb5\x5a\x18\x84\xf4\x4f\xbf\x1e\xcb\xad\xdc\xc1\ +\xbd\x4f\x7e\xc9\x68\x28\x6c\x4a\xc9\x9e\xd7\x88\x7f\xb7\x71\x5e\ +\xda\xf4\xb0\x41\x69\x36\x70\x29\x2b\x1d\x7a\x36\xb8\x96\x48\x81\ +\xd6\x67\x59\xf2\x4f\xfc\x7a\x4a\xaf\xef\x33\x9d\x01\x02\xa6\xd3\ +\xe7\xa5\xf4\xb3\xb8\x11\x27\x31\x12\x5e\x52\x8c\xda\xd9\x7f\x01\ +\xeb\x36\xfd\x6a\x2b\x27\x9f\xf7\x82\x2e\x4d\x43\x67\xb9\xf6\xa5\ +\x88\x4b\x48\x9b\x65\xed\x68\x2b\xfe\x1c\x39\x72\xe4\xc8\xf1\xca\ +\xc7\x15\xfc\x9e\x6f\x42\xca\xb5\xf4\x60\xbb\xc2\x9f\xa4\x80\x76\ +\xd4\xc0\xde\xa1\x21\xf8\x95\x9a\x29\xcc\xa4\x14\x32\x77\x6d\x61\ +\x68\x32\x00\xdb\x66\xfe\xfa\x94\xa1\x0a\x5e\x42\x59\x2a\xc4\xc8\ +\x44\x0f\xa5\x9a\x87\x23\xc7\x8f\x38\x3a\xc4\xa0\x1c\xf5\x82\xf1\ +\x92\x9a\xf3\xe7\xc7\xa9\x15\xf9\x73\xb3\xa7\x50\x08\x34\x49\xc7\ +\xb9\x9b\x7c\xa8\x3f\x53\x8a\x99\x95\x93\x6b\xe8\x6e\x72\x15\xff\ +\x8c\x8d\x8c\x9c\xdd\xe5\x7f\xfd\x6e\xb2\x93\x9e\xcc\xbc\xfe\xac\ +\x04\x58\x3c\x24\xa0\xfc\xf3\x19\x6f\x37\x69\x62\xa5\xbe\xc2\x3c\ +\x53\xe8\x0c\x32\xa5\x4f\xeb\x96\x17\x07\x69\x8a\xaf\x2c\x8b\xb4\ +\xfd\x66\xb7\x15\x63\xb5\x7e\x06\x89\xd7\xa6\x44\x40\x17\xc6\x2d\ +\x71\x56\xc2\x9f\xad\x52\xa3\xd1\xab\xb4\xf1\xad\xe7\xbe\x40\x3b\ +\xc7\xdb\xf9\x3b\x32\x64\xd4\xbe\xc7\xc8\xd8\x51\x66\xda\xc3\xba\ +\x7c\xa5\xbb\x5d\x4c\xd3\xda\x3d\xbb\x36\x73\x3f\xef\x52\x0a\xb3\ +\x7b\x76\x65\x91\xe5\xc8\x91\x23\x47\x8e\x1c\x39\x5e\x0c\x72\x85\ +\x5a\x8e\x1c\x39\x72\xe4\x78\xf5\x20\xeb\x83\x6e\x86\xcb\x71\x1b\ +\xf4\x33\x68\x36\x64\x0f\x03\x1d\xef\x41\xf7\xf3\xfc\x12\x59\xf8\ +\x8d\xf6\x83\x18\x74\x3f\xcf\xdf\x40\x1c\x6b\xc8\xec\xd6\x07\x2c\ +\xb2\x46\xfc\xf6\x6b\xef\xc6\xe1\x43\x53\x68\x75\x12\xda\xf5\x52\ +\xba\xf4\x2f\xa5\x50\xaa\xd5\xd0\x19\x6a\x32\x6a\x38\x48\x0a\x0a\ +\xcd\x1a\x0e\x92\x21\xf4\xca\xb3\xe8\x0f\xcd\xe0\x8b\xdf\xfa\x4f\ +\x68\x34\xe7\x8d\xa6\xb6\x22\x74\x5d\xef\x2c\xae\xbf\x48\x30\xc6\ +\xbe\x14\x23\x3a\x44\xbf\x8d\x76\xbc\x8a\x5e\x81\x7c\x48\x4f\x42\ +\xd8\x20\x90\x06\x6d\x78\x19\x87\x36\xf0\xa0\xed\x2d\xcd\x99\xa0\ +\x41\xab\xf3\x6c\x50\xc1\x3d\x5a\x2a\x6c\xf0\xc4\x99\x35\x03\x5b\ +\xe7\xa5\x28\x88\x82\x1b\x09\x5e\xce\x87\x9e\xf5\xe0\xe2\x91\xc6\ +\xd2\xa7\x79\x6e\xe9\xa4\x5c\x8c\xee\x45\x21\xe7\x8c\xd0\x46\xa4\ +\x41\x75\xd3\xa0\x8f\xb6\x1f\x9a\x9e\x3f\x8e\xc4\x5f\x26\xff\x5d\ +\x53\x86\x6a\x20\xcb\x06\xed\x54\x58\xf4\xa9\xbf\x42\x21\x24\xfb\ +\x05\x84\x0c\x75\x72\xf9\x09\x9a\x3b\xa9\x72\xf4\x42\x11\x7d\x17\ +\xb1\x49\x94\x59\x8e\xa4\x39\x6a\x7f\xbd\x9e\xca\x2f\xe6\xa5\xa9\ +\xe0\xac\xab\x4c\x9b\x56\xdf\x79\x1e\x53\x51\x08\x80\xb8\x80\xc6\ +\xd2\x0a\xce\x4c\x1d\xc3\xb3\x47\x1f\xc5\xe3\x87\xbe\x89\x87\x9f\ +\xfe\x22\xee\x7f\xfa\xb7\xf1\x95\x67\x7e\x05\x7f\xf6\xf4\x7f\xc2\ +\x57\x9e\xfb\x65\x7c\xfd\xe9\x5f\xc1\x03\xcf\xfe\x06\x9e\x3d\xfe\ +\x87\x38\x78\xec\x4b\x78\xe6\xc8\xd7\x71\xe8\xf8\x03\x38\x3b\x75\ +\x08\x8d\xc6\x92\xcd\x34\x2f\xe8\x4c\x1b\x29\xdb\xa4\x78\x4b\x3c\ +\x24\xb1\xea\x0f\x39\x21\x3b\xdf\x83\x1c\xca\x91\x23\x47\x8e\x57\ +\x37\xdc\xa7\xfe\xf9\xd7\x20\x36\x7b\xb6\x36\xf5\x05\xe2\x45\x04\ +\xb9\x20\xd6\x1a\x84\xf3\x89\xca\x5a\xb2\x91\x56\xa4\x6b\x45\x74\ +\x9b\x42\x42\x58\x8c\xd8\xbe\x50\x22\x92\x63\xea\xdd\xb6\x79\xd4\ +\xdd\xce\x3a\xed\xdb\x36\xd0\xbe\x1f\x59\x7b\xb6\x7d\x77\x0b\x9f\ +\xbf\xff\x37\xad\x7d\xee\xb1\x0d\x32\x45\x95\x05\x4e\x85\x17\xe1\ +\x52\x69\xc9\xdc\x5f\x68\x9a\x37\xfa\xd7\x73\xaa\x58\xd1\x83\xc4\ +\x89\x95\xe6\x34\xed\x68\x43\x61\xc9\xd2\x2a\x27\x29\x96\xc4\x9f\ +\x64\x2c\x3e\xdb\xc5\xc7\xb5\x33\x69\xb3\xf2\xd2\x2d\x75\xb7\xc7\ +\xd4\x6c\x8a\x29\xad\x16\xb7\xb4\xd2\x42\x64\xe9\x60\xf2\x8b\x92\ +\xae\x1f\x9a\xf5\xd7\x47\x17\xd3\x0b\xa7\x29\x07\x18\x09\x0b\xf3\ +\x52\x20\x56\x2c\x4e\x96\xd5\xd9\x85\x29\x14\xcb\x6d\xd2\xec\xb9\ +\xb2\xa1\xbd\xad\x24\x54\x62\xec\xce\x5b\x3f\xc2\x42\xf7\x14\x79\ +\x38\xa6\x07\x93\x03\xc5\x9f\x7c\xbf\x34\x4e\xae\x20\x1c\xeb\x96\ +\x67\x76\xcf\x1e\xd3\xfb\x9a\xa5\x61\xd0\xbc\xfe\xa4\x3c\x91\x79\ +\xdd\xbf\xae\xac\x0e\xea\xee\x2e\xd9\x66\xf5\x23\x47\x8e\x1c\x39\ +\x72\xe4\xc8\xf1\xc2\xe1\xff\x23\x22\x35\xe7\xc8\x91\x23\x47\x8e\ +\x1c\xaf\x6c\xbc\xd4\x9e\xf1\xc6\xb0\xe7\x3d\x6f\x42\x38\xb3\xba\ +\x58\x38\x99\x5d\xcf\x75\xfd\x9e\xc1\xcc\x03\x9d\x59\x75\xa2\x2f\ +\x04\x1b\xc9\xa0\x7b\xea\x47\xbf\x36\x70\xe1\x17\xb0\x75\x74\x07\ +\x7e\xed\x4f\xff\x33\x6e\xba\x66\x12\x95\xf1\x82\x3b\x63\x9e\x3e\ +\x9c\x1f\x8d\x27\xb8\x01\x14\x0d\x72\x48\x39\x64\x94\xfa\x7c\xf6\ +\xa5\x80\x2b\x22\x28\x01\xf5\xd6\x3c\xe6\x67\x57\xb0\x77\xf7\xf5\ +\xf0\xbd\xa2\x08\xb8\xe8\x9e\xc7\x34\xb1\x89\xd5\x9a\x9d\xee\x2f\ +\x14\x46\x4b\x3c\xea\x97\xf7\x5e\x1f\x09\xe9\x9c\x5b\x38\x86\x67\ +\xce\x7c\x1d\x85\x6a\x82\x24\x26\xaf\xe9\x20\x83\xa5\x8c\xf7\x24\ +\x2a\x20\xea\x02\x3d\xde\xe9\x6c\x03\x3b\x0a\x67\x83\x40\xee\x3f\ +\xfd\x21\x34\x2d\x9a\xc1\x94\x07\xa2\x13\xf8\x40\x91\xc9\x2c\x16\ +\x7d\x9b\x69\x6e\xca\x18\xbb\xdc\x2c\x74\x05\x73\x4a\x2d\x9a\xe3\ +\x10\xa3\xa5\x09\x5c\xb7\xe7\x2e\x3e\xfb\xa9\x6e\x2e\x1d\x34\x4a\ +\x79\xd1\xed\x79\xc8\xec\x52\x6f\x6b\xd0\x56\x94\x7d\x8f\x79\xef\ +\xe3\x5b\x8f\x7d\x01\xcd\xf0\x10\xe2\x5e\xd3\xf9\xe9\xf7\x10\xea\ +\x04\x7f\xa6\x21\x4b\x87\x06\xbb\x18\x19\xa2\x24\x62\x88\x0a\xee\ +\xb8\xfa\x1d\x08\xfd\x8a\xf1\x91\x95\x8f\x23\x3f\x18\xc9\x15\xc2\ +\x79\x69\xd3\xc3\x60\x2c\xee\x59\x77\xdb\x8e\x13\x31\xdd\x34\x33\ +\x5c\x79\x1c\xf0\xf2\x79\x99\x8a\x16\x4b\x4b\x8b\x38\xb5\x78\x16\ +\x27\xcf\x9e\xc0\xd1\x33\x0f\xe1\x3b\x87\xbe\x8c\x07\x66\xbe\x84\ +\x07\x4f\xfd\x21\x1e\x38\xf1\x3b\xf8\xce\xf1\xdf\xc2\x63\x33\x9f\ +\xc7\xa9\xd5\xaf\xe1\x4c\xfd\xdb\x98\xe1\x35\x5d\xbf\x1f\x67\xe7\ +\xbf\x89\x63\xb3\xdf\xc2\xa1\x73\xf7\xe2\xe0\xb9\x6f\xe2\x99\x93\ +\x5f\xc1\x73\xa7\x1f\xc0\xec\xd2\x13\x58\x6c\x1c\xc6\x6c\xe3\x38\ +\xe6\x57\xe6\xb1\xda\x68\x68\x1d\x23\x8a\x41\x05\x61\xc8\x78\x95\ +\x65\xac\x0c\x1a\x18\x94\x32\x52\x3c\xda\xcc\x75\xfe\x5b\x1d\x93\ +\x21\x47\x8e\x1c\x39\x72\xbc\x70\xe8\xf3\xb9\xd9\x35\x88\xcd\x9e\ +\xed\x5b\xfc\x02\x91\x7e\xbf\x1d\x81\xf3\x1a\xa4\x17\x0f\xd7\x78\ +\xae\x41\xed\x81\x76\x51\xd6\xa2\xe7\x3f\xfa\xea\x17\xd1\x2d\x4d\ +\xe3\xa6\x1b\x4b\x68\x75\x43\xba\xba\xfd\x01\xad\x5d\x93\x5f\x6b\ +\xdf\x18\x82\xac\x68\xfb\x65\x9d\x7d\x1a\xa0\x8a\xa0\xdc\x66\x7b\ +\x53\x40\x67\xd9\xc3\x9e\x1d\xd7\x90\xa2\x94\x3a\xee\xdc\xd5\xac\ +\x9d\xd6\xff\x45\x91\xb9\x5f\xca\xdf\x46\xc8\xbf\xa2\x90\x51\x66\ +\x93\xf9\x52\xb5\x89\xe4\x08\x3e\xdc\xff\xe4\x9f\xa0\x1b\xd4\xd1\ +\xee\xb6\x9c\x5f\x5e\xee\x5c\x5a\x5d\xfc\x65\x13\xae\x6d\x95\x35\ +\x21\x25\x49\x74\xc6\x1a\xed\x99\x1e\xdb\x3e\x5b\x5e\x8c\xb0\x8b\ +\x4a\xf9\xa5\xbb\x64\x4b\x9d\xf1\x5a\x2e\xfb\x08\x02\x27\x43\xd9\ +\xf9\xb3\xca\x23\x65\x26\x3d\x25\x24\x2a\xe5\xd5\x4a\x3b\xc2\xce\ +\xf2\xcd\xd8\xbf\xe7\x7a\x6b\x97\x45\xce\xa8\x88\x90\xfb\xb9\x3c\ +\x64\x5e\x79\x37\xb6\x78\x3d\xf0\xdc\x7d\x58\x8c\x1f\xa5\x0c\xd0\ +\x34\x99\x58\xf1\xbb\x1d\x0d\x14\x03\x7d\x50\xe6\xf2\xfa\x45\x78\ +\x61\x1f\xa7\xe7\x4e\xe3\xf5\x57\xbf\xd3\xe4\x45\xc7\x6b\x96\x03\ +\x19\xe1\xef\x22\x32\x86\xd7\xe0\x2c\x64\xa5\x3a\x62\x77\xfe\xb8\ +\x7b\xfa\xcc\x4b\xb0\x9d\x0a\xf4\x67\xe5\xa1\x55\xff\x6e\x4b\xf0\ +\x7e\x2f\xb6\xbb\x0a\xcf\xb6\xed\x4c\xcd\xf4\xc0\x67\x5e\xba\x4b\ +\xe4\xb4\xe7\x34\xad\xaa\xff\xa2\xac\x9b\xb3\xb0\x78\xd7\x71\xde\ +\x43\x8e\x1c\x39\x5e\x45\xc8\xdf\xee\x1c\x39\xae\x1c\x72\x85\x5a\ +\x8e\x1c\x39\x72\xe4\x78\x65\x20\xeb\x88\x5a\xe7\x6f\x03\x2e\x64\ +\xff\x72\x45\x26\xcd\x1a\xcf\x7a\xe0\x35\xd8\x9b\xdd\x34\x8d\x69\ +\x22\x07\xfc\x69\x50\x47\x5e\x77\x8d\x6d\xc5\x2f\xfd\xfa\xbf\xc5\ +\xc8\x78\x15\x57\x5d\x57\x02\x22\xcd\xa1\x96\x0b\x3b\xc9\x1a\x50\ +\x48\x15\x32\x36\x08\xc4\x3f\x76\xab\xf9\xa8\x81\x12\xc5\x9b\x20\ +\x89\x7a\x28\x8d\x24\x98\x59\x38\x83\xb8\xe5\x61\xc7\xe4\x01\x53\ +\xb4\x49\xe5\x63\x5e\x8c\xc7\x01\xa4\xac\xac\x59\x67\x66\xdd\x85\ +\x0d\xde\x2f\x17\x96\x1a\x1b\x44\x90\x52\xc6\xc3\xb7\x9e\xfc\x02\ +\xea\xf1\x09\x26\x47\xdb\x21\xf6\x2c\x2d\x6e\xd6\x31\x7d\xf4\x74\ +\xf6\x56\x01\x71\xa7\x8f\x5e\xac\x41\x1b\x79\xd1\x80\x81\x07\xb7\ +\x9d\xa3\x06\x17\x44\x8e\xfe\x07\xf2\x4c\x26\x53\x65\x05\x40\x58\ +\x2a\x20\x0c\x3c\x04\xa1\xf2\xc8\x5d\xda\xf6\x52\x5b\x3b\x59\x1c\ +\xf6\xc7\x38\x49\x73\xc8\xdf\x82\x6b\x77\xbf\x9e\x81\x43\x47\x44\ +\x2e\x46\x57\xf4\xed\xf1\xa2\x90\xb3\x06\xe3\x9c\xf7\x1e\x79\xf6\ +\xb0\xbc\xb4\x8c\x27\x66\xfe\x00\x1d\x6f\xde\x12\x60\xdb\x5a\xda\ +\x9f\x02\x90\x3e\x79\x11\xfb\xd9\xe0\x47\xbf\xaf\x95\x69\x15\xdc\ +\xb0\xfb\x2d\xa8\x96\xc6\x34\x5e\xb2\x96\xb4\xe7\x95\xd1\x95\x80\ +\x65\x20\xe9\x6a\x34\x26\x8b\x87\x56\x4a\x8b\xea\x94\xb6\x71\x34\ +\x33\x2f\x29\xd0\x0a\x76\xb1\xee\xf5\x63\xd4\x57\x66\x70\x6a\xfa\ +\x14\x0e\x9f\x7c\x04\x0f\x1d\xbb\x1f\xdf\x3a\xf9\x65\x7c\xf5\xf8\ +\xef\xe1\x5b\x27\x7e\x03\xdf\x3a\xf5\x3b\x38\x1c\xff\x19\xba\xc3\ +\xcf\x62\x6c\xcf\x0a\xf6\xbf\xce\xc7\xbe\xab\xaa\x78\xdd\x0d\x43\ +\xd8\xb7\xaf\x8c\xed\xdb\x3d\x5e\x21\xb6\x6f\xf3\xb1\x73\x4f\x88\ +\x3d\xbb\x8b\xd8\xbb\xdf\xc7\xae\xbd\x1e\xf6\xec\x2f\x60\xfb\xbe\ +\x16\xaa\xe3\x53\x58\x8c\x9f\xc2\x94\x14\x6e\xe7\x78\x4d\x3d\x80\ +\x66\x32\x85\x95\xf6\x12\xba\x2b\x8b\xf0\x92\x10\xe5\xa1\x61\x37\ +\x60\x96\xd6\x0d\x9d\x2a\xa8\x2d\x3c\xad\x4e\x88\xf3\xb5\x2c\x5b\ +\x33\xe4\xc8\x91\x23\x47\x8e\xcb\x45\xd6\x00\x6c\xc4\x46\x7b\x3d\ +\x0f\x22\x73\xcb\xec\x2f\xf9\x09\xce\x3c\x5c\xd2\xe3\xc5\x91\xf1\ +\x75\x1e\x19\xb5\xf2\xee\x57\x0a\xa2\xa7\x0e\x1e\xc2\xfd\x07\xbf\ +\x8e\x5b\x6e\x9f\x84\x97\x6e\x0d\xad\xf6\xd5\xe4\x27\xba\xbb\x89\ +\x19\x7a\x56\xbb\x47\x59\xa2\x10\x52\xe4\xe8\xa0\x4f\xb9\xab\x58\ +\x6b\xe1\xf0\x89\x43\x18\x09\x76\x62\xe7\xe4\x3e\x3b\x17\xb4\xa0\ +\x6d\x8c\xd3\x38\xd6\x22\xbe\x50\xbe\x6d\x86\xcb\xf1\x3b\x90\xbf\ +\x26\x13\xac\xe5\x6b\x8f\xfc\xf6\xd0\x88\xda\x78\xf4\x99\x2f\x21\ +\x0a\x1a\xe8\x44\x1d\x92\xa3\x27\xfa\x51\xbb\x28\xe8\xa6\x66\x3e\ +\x91\x2c\x65\x0a\x35\xf7\x2c\x11\xc0\xfd\xf0\xa6\x50\xa2\x6d\xbc\ +\xa4\x13\x67\xd8\x9e\x86\xe9\xc4\xa4\x62\x51\x93\x91\xe8\xcb\xec\ +\xe5\x97\x97\x14\x8a\x0c\x2f\x12\x9d\x6e\x84\x91\xc2\x55\xb8\x61\ +\xff\x1d\x7c\x76\x6e\x46\xd5\xe8\xd9\xcf\x0b\x84\xdb\x8e\x3b\xe8\ +\x07\xf8\xca\xd3\xbf\x0b\x94\xce\x22\xa2\x30\x68\x7a\x3c\xa5\x87\ +\x34\x03\x3e\x98\x62\x50\x91\xf4\x12\xf8\xe5\x18\xcb\xad\x3a\x6e\ +\x1e\x7f\x2b\x2a\x95\x5a\xca\x47\x4a\xee\x45\xf1\xf0\x02\x31\x18\ +\x85\x32\x45\x79\x44\x4e\xf5\x6f\x6e\xd9\x9d\xd0\x2e\x0a\x92\xb0\ +\x6c\xab\x6c\xf2\x6e\xc9\x80\x56\xe2\x3b\x39\xcb\x26\x2d\xd9\xaa\ +\x7f\x77\x15\x9e\x77\x69\x5b\x6c\x5e\xf4\x6b\xab\xf8\x99\x17\x76\ +\x31\xc1\x8a\xb5\x20\x0d\xb2\x29\xe1\x58\x3e\x16\x27\xed\x54\x7e\ +\xf6\xe7\x9e\xcf\x63\x28\x47\x8e\x1c\xaf\x0a\xe4\x6f\x74\x8e\x1c\ +\x57\x0e\xb9\x42\x2d\x47\x8e\x1c\x39\x72\xbc\x32\x90\x49\x80\xba\ +\x6f\xbc\x84\xec\xfe\xbd\xc4\xc5\x78\xc9\x78\xcd\xdc\xd4\x4f\x35\ +\x0c\xf4\xa4\xdd\xc8\x42\xea\x27\xb5\xcf\xfc\xaf\x05\x90\x1d\xcd\ +\xe6\x5d\x8e\x34\xf4\x80\xdf\xfb\xf2\x57\x71\x64\xfe\x01\xdc\x79\ +\xf3\x2e\x68\x44\xc1\x2f\x24\xbc\x79\x6e\xa4\xc4\x42\xb9\x4e\xb4\ +\x46\x81\x32\x92\x2e\xbc\x27\xef\xec\x57\x17\x30\x34\x52\xc4\xe9\ +\xd3\x27\x51\x48\x7c\xec\xdc\xb6\xdf\x06\x8a\xe4\xae\xc3\xdd\xad\ +\xd3\xbf\x16\x92\x18\x30\x9a\xd9\x45\xf3\xa2\x70\x5e\xb2\xf9\xa3\ +\xb8\xc4\xef\x57\xee\xfb\x4d\xc4\xd5\x45\x74\xfb\x5d\x73\xb3\x34\ +\xd0\xb3\x06\x7a\xb4\x2d\x53\xb7\x9b\x20\xee\xb8\x67\x9b\x51\xad\ +\x8c\xa0\xbd\x1b\xc0\x71\xf9\xc2\xc7\x14\x1a\xb8\x31\xe2\x76\xf7\ +\xfd\x3e\x8a\xc5\x02\xc2\x50\xca\x35\x37\x00\xa4\xf3\xbb\x2c\x9d\ +\x4c\xaf\xce\xf5\xd2\xd9\x5c\x28\x28\x7f\x62\xf8\x9d\x61\xdc\x78\ +\xe0\x1e\xf8\x5e\xd9\x68\xac\xd1\x33\x64\xf7\x4d\x20\x27\xc5\x69\ +\x66\xa9\x74\xfa\x36\x5b\xdb\x67\x1e\x7f\xe9\xd1\xdf\xc6\x32\x1e\ +\xe3\x73\x44\xdb\x98\xa9\x23\xc4\x37\x13\xa4\xd2\x72\x58\x4b\x00\ +\xd1\x63\x99\x54\xb0\x7d\xfc\x66\x6c\x1d\xde\x2d\x4e\xcf\xcf\xbb\ +\xb5\x30\x2f\x16\x46\x31\xbd\xa7\x46\xbb\x67\xd4\x35\xc0\x43\xe6\ +\xfb\x31\x4d\x5a\xed\xa8\x55\x68\x6e\x80\x66\x69\x65\x01\x47\x4f\ +\x1d\xc2\x53\x87\xef\xc3\xbd\x87\xbe\x86\x6f\x1e\xfd\x22\xbe\x76\ +\xe8\x77\xf0\xc5\xa3\xbf\x8b\xa3\x4b\x5f\x42\xb4\xfd\x18\x76\xed\ +\x5a\xc0\x55\x37\x14\x70\xd7\xed\x3b\x70\xfb\x75\x43\xd8\x35\x11\ +\xa2\xe6\x31\x4f\x3a\x6d\x78\x49\x8c\xa8\xd5\x46\xd4\x4e\x98\x37\ +\x4c\x73\xdc\x87\xd7\x63\x79\xc4\x3e\x10\xf5\x69\xcf\x98\xa3\x88\ +\xf5\xb4\x8b\x90\xf1\x07\xbe\x8f\xa1\x4a\x1f\x3b\x26\x87\xb1\x73\ +\x0f\xb0\x6d\x22\x42\x50\x38\x8b\x99\xa9\xfb\x70\xf0\xf8\xc3\xa8\ +\x7b\x53\x68\xf6\x9a\xa6\x0c\x2d\x55\x6a\x08\xbc\xc0\xa5\x27\x22\ +\xfb\x24\xaf\x3a\xaf\xc1\x44\x97\xb4\x2c\xa1\x39\x72\xe4\xc8\x91\ +\xe3\xb2\x90\x36\x13\x17\x85\x3e\xad\x17\xf3\x97\x7d\x7a\x2f\xfb\ +\x13\xbc\xa1\x8d\xda\x18\x50\xed\xe7\x5a\xbb\x3c\x18\x71\x6a\x97\ +\x05\xdd\x10\x4c\x52\x91\x53\x9c\xb1\xdd\x49\x8a\xf8\xdd\x6f\x7d\ +\x0e\x3b\x46\x42\x4c\xee\x29\xb1\xb9\xa3\x67\xca\x04\x52\xa0\x99\ +\xb2\xc1\x3d\x9a\xcc\xa0\x3f\xb5\xd5\x6a\x07\x3d\x9f\x72\x0a\x1b\ +\x97\xda\xa8\x87\x67\x9f\x3a\x86\xc9\xc9\x7d\xd8\x32\xb2\x9d\xed\ +\x0c\xdb\x38\xe3\x89\x6d\xa7\xc1\x08\x5d\x3e\x5e\x88\x5f\x62\x2d\ +\xf9\xbc\x4b\x7a\xd0\x96\xd9\xcb\xf5\x79\x3c\x73\xf2\x5e\x74\x0b\ +\x2b\x88\x62\xa7\x44\x91\x7c\xd8\x93\x8c\xc3\x34\x3b\xb1\xa3\x80\ +\x98\x6d\x6d\x2f\xea\xb9\x15\xff\x6a\x28\x9d\xab\xb9\x3b\x28\xc5\ +\x2e\x0e\x97\x76\xb7\x42\x2d\x0c\x0b\x28\x96\x98\x07\x8a\x93\x74\ +\x33\x3f\xbe\x1f\x98\xbc\xa3\x33\x60\xa3\x36\x2d\xda\x43\xb8\xf3\ +\xfa\x37\xd3\x93\x64\x4b\xf9\xc9\xf2\x46\xd7\x25\x90\x7a\x71\x37\ +\x95\x03\xa5\xa6\xa4\x8f\xc6\xd2\x22\x1e\x3a\xfb\x79\xf4\x83\x15\ +\xa6\x21\xb2\x78\x05\x29\xfc\xf4\x60\x69\x65\xf9\x28\x11\xfd\x5e\ +\x80\x42\x10\xa3\xbb\xe0\xe1\xba\xab\xee\x74\xe9\x12\xd3\x4c\x87\ +\x43\x1a\xf8\x4a\x41\x64\x55\x59\x36\x83\xd8\xe3\x4d\xf9\x2b\x56\ +\x75\xce\x9d\x18\xea\x99\x52\x50\x75\x4a\xf9\xab\xad\xb2\xdd\x76\ +\xd9\xba\x17\xe8\xd6\x6c\x35\xb1\xd2\x5d\xc6\x7c\x63\x1e\x53\xf5\ +\x29\x4c\xaf\x9c\xc3\x4c\xfd\x14\xef\x27\x31\xbd\x7c\x0c\xd3\x75\ +\x5e\x4b\xc7\x31\xb3\x7a\x98\x7e\x8e\x62\xa6\x7d\x02\x0b\xad\x33\ +\x58\x6c\x9e\xc5\x4a\x7b\x1a\x8d\x78\x19\x71\xa1\xc1\xfc\x8a\x50\ +\xf4\x4b\x14\x71\xb5\x0d\xb7\x93\xad\x0b\x52\xa6\x4a\xc9\x48\x7e\ +\x5c\x99\x3b\x39\xd7\x92\xa1\xc7\x1c\x39\x72\xbc\xe2\x91\xbf\xcb\ +\x39\x72\x5c\x39\x14\x28\x64\x5c\xa0\x95\xcf\x91\x23\xc7\xab\x1d\ +\xf9\xcb\x9f\xe3\x55\x85\x57\x64\x85\xbe\x58\x37\x35\x73\x1b\xf4\ +\x93\x26\x32\x7d\xd4\x80\x86\x0d\x76\xf4\x7a\xf8\x8d\xcf\x7f\x05\ +\x7f\xff\xdf\x7e\x02\x3f\xf6\x89\xeb\x71\xfb\x5d\x5b\x10\xad\xba\ +\xd5\x65\xfd\x58\xca\x0f\xf3\x0c\x6d\xf7\xe8\xf9\xbe\x0d\x30\xc8\ +\xd2\x51\xd6\xd6\x3e\xec\xb0\xb3\xd3\x1f\x75\x7b\x08\xfd\x21\xac\ +\xcc\x15\xf0\xfa\x6b\x7e\x18\x77\xde\xf4\x7e\x53\xe0\xd8\xb0\x89\ +\x29\x83\x52\x42\x83\x48\x59\x32\x6b\x47\xd0\x21\xb3\xbf\x0c\xb8\ +\xce\xbb\x02\xf0\xd2\xe0\x43\x3f\x42\xc4\x8e\xfd\xbf\xfa\xd5\x9f\ +\x80\xb7\x0b\xe8\xb0\xf3\xef\x29\x31\xf2\x28\xff\x3d\x37\xeb\x78\ +\x75\x25\x42\xbb\xd1\x47\xdc\x2d\xb8\xd5\x6a\x52\x1e\xf2\x9e\x24\ +\x89\x26\xde\x92\x5a\xcf\xf2\x20\x1b\xb0\xd1\x9f\x46\x98\xb4\x02\ +\x2d\x0c\xfb\xa8\x0d\x79\x18\x1e\x0e\x50\x2a\x17\xe0\x07\xb2\x0b\ +\x4d\xd1\xa2\x59\xd7\x9a\xf1\x2b\x85\x8b\xc6\x9b\x7a\x11\xb0\xc5\ +\xdb\x8f\x8f\xbe\xfd\x6f\xa0\x56\xda\xe5\x92\x46\x7e\x53\x76\x08\ +\x1a\xcc\x72\x73\x98\x37\xa6\xcb\x36\xec\x61\x38\x29\xa2\x0e\x1e\ +\x7d\x0a\xdf\x3e\xfe\x7f\xa1\xed\x2d\xa3\x4f\x9e\xb5\x6d\x94\x95\ +\xa6\xad\x52\x73\x65\x25\xbf\x1a\xe2\x73\x33\xac\xc1\xf4\x75\xe1\ +\xf7\x46\xf0\x96\x1b\x7e\x1c\xb7\xed\xff\xa0\x0d\xcf\xc9\x6f\x36\ +\xdc\x71\x11\x16\x2e\x13\x9b\x51\x70\x7c\x2b\xbd\x1a\xf0\x29\x66\ +\xdb\x81\x12\x0b\x8d\x05\xcc\x1e\x7b\x16\x47\x97\x8f\xe1\x4c\xe3\ +\x20\x9e\x3c\xf9\x00\x16\x57\x8e\xa3\xbf\xad\x89\xe1\x9d\x43\xd8\ +\xbf\x6b\x04\x23\x95\x12\x86\x4a\x2c\x96\xa8\x4e\x3a\x2c\x9b\x38\ +\x44\xa8\xfc\x85\x8f\x50\xb3\xad\x7d\xa6\x95\x74\xe9\xc2\xfc\xf4\ +\x10\x30\x41\xbe\x06\x74\x58\x7e\xac\xa9\x6e\x20\x8c\x85\xa0\x32\ +\xb3\xbc\x63\xbc\x96\x1f\x49\x97\x05\x45\xce\x54\xd6\xd2\x9a\x32\ +\x7f\x13\xd6\x9b\xea\x70\x15\x41\x50\xc5\xd2\x6c\x07\x0b\x53\x6d\ +\xd4\xaa\x37\x63\xf7\x81\x77\x63\x9b\x77\x00\x93\xa3\xd7\xa0\x5a\ +\xdd\x6b\x1b\x78\x15\x4c\x59\xca\xc8\x5c\x06\xba\x31\xaf\xf5\x02\ +\xcd\x91\x23\x47\x8e\x1c\x83\xb0\x6f\xe4\x86\xfb\x77\x13\x6b\x71\ +\x6c\x88\xd0\x3e\xd3\xfc\x61\x7b\x70\x59\xdf\xec\xcb\xf0\xe7\x5c\ +\xd5\xd6\x51\xda\x61\x7b\xbf\xff\xfb\xaf\xc6\x6d\xf7\x0c\xe3\x87\ +\x7e\x74\x27\x9b\x9a\x22\x7a\xfd\xd8\xda\x20\xb1\x20\x52\x6e\xb5\ +\xbf\xc4\x09\xfd\xf2\xea\x6b\x45\x90\x5a\x16\x0f\xdd\xa6\x4f\x3a\ +\x6c\xf4\x96\xf6\xe0\x23\x6f\xfe\x59\x4c\x6e\xbd\x8a\x4d\x58\xcc\ +\x70\x5a\x2d\x94\xa6\x41\x82\x48\x06\x59\x39\x06\x2e\x8c\x2c\x98\ +\xfc\x6d\xe6\x3f\x73\x27\x14\x87\xc9\x53\xe9\x04\x1e\x39\x3d\x79\ +\xec\x3b\xf8\xd6\x73\xbf\x89\xd5\x68\x8e\xb2\x55\xc7\xe4\x23\xdf\ +\xf7\x10\x45\x71\xba\x3a\xad\x87\x98\x32\x57\xb7\xd3\x43\xa4\x8b\ +\x79\xa0\x26\xd2\x56\x76\x93\x96\xfc\x64\x71\x3a\x45\xa2\x64\x24\ +\x4d\xaa\xe9\xa3\x3a\x04\x0c\x0d\xf9\x18\x1e\x09\x11\xf8\x52\xb0\ +\x31\x2f\x18\x46\x4d\x77\x50\x0c\x11\xb3\x8d\x96\x7c\xb6\xb2\xdc\ +\x40\xad\x7b\x13\x7e\xe6\x07\xff\x21\x82\x70\x9c\x3c\x3a\x3a\xae\ +\x68\xf8\x33\x90\x86\xcb\x02\xe3\x2e\xb4\x3d\xfc\xfe\x83\xbf\x89\ +\x99\xf8\x4b\xe8\xf6\x16\xad\x9c\x64\x6f\x92\x93\x29\xca\xb4\x1d\ +\xb8\xa4\x28\x96\x14\xe9\x6b\x4b\xce\xa0\x50\x44\x31\xda\x89\x9f\ +\xf9\xc0\x3f\x65\x39\x92\x79\x8b\x3f\x93\xa6\x84\xec\xfe\x12\x91\ +\xe5\x59\x56\xff\x74\x17\x52\xf2\x56\x32\xb4\x53\xad\x93\xb4\xa3\ +\xf3\xf8\xd6\xc1\xf2\xe8\xac\x62\xa5\xbe\x80\xf9\xfa\x22\x9a\xc9\ +\x32\xba\xc9\x2a\x1a\xed\x79\x4c\x35\xce\x62\x05\x0b\x58\xee\x2e\ +\x61\xb9\xc3\xf2\x8c\x9a\x4c\x6b\x9b\x69\x69\x93\x36\xeb\x19\xc9\ +\xea\xbc\xb8\x42\xc0\xb2\x50\x3d\x2b\x7a\xfa\x47\x00\xa6\xdb\x2f\ +\xa3\x52\x1a\xc5\xc4\xd0\x0e\x0c\x55\xb7\x63\xb4\xb0\x0f\x23\xc9\ +\x16\xda\x6d\xc7\x96\x2d\x7b\x31\x5c\xdc\x97\xc6\x4f\xd6\x34\xf9\ +\x88\xe5\x29\x7e\x9d\x0c\x9d\x23\x47\x8e\x57\x03\xf2\xb7\x39\x47\ +\x8e\x2b\x87\x5c\xa1\x96\x23\xc7\x6b\x18\xf9\xcb\x9f\xe3\x55\x85\ +\x97\x5a\xa1\x25\x61\x7e\xd7\x5f\x0a\x45\x70\x21\x51\x76\xa3\xdb\ +\x86\x67\xe3\x2f\x65\x70\xcd\xda\x0d\x48\x74\xfb\x31\xc2\x06\xb0\ +\xf7\xc3\x37\xe3\xd6\x3b\xda\xf8\xd9\x9f\xbd\x03\xf5\x66\x5f\xe3\ +\x29\xe8\x69\x7a\xb0\xf9\x74\x61\xb5\x0a\xcb\x68\x1b\x79\x11\xf2\ +\xa0\x99\xc9\xa2\x2d\xe5\x45\x1c\x27\x28\x15\x47\xb0\x32\xed\xe3\ +\xae\xeb\x7e\x18\x77\xdc\xf8\x3e\x24\x49\x68\x83\x2f\x6e\xd0\x41\ +\xb4\x06\x3b\xfe\x44\xc6\x6a\xca\xde\x0b\x85\x1b\x6b\xd0\xc0\x8a\ +\x08\x48\x31\xd2\xc7\xc2\xca\x59\xfc\xca\x1f\xfc\x6d\xf4\xb7\x02\ +\xb1\xd7\x41\xba\x76\x4c\xbe\xc9\x86\x1b\x24\x69\xac\x74\xd1\x69\ +\xd0\x1c\xeb\x7c\x31\x25\x96\xff\xb1\x07\x3b\xb3\xc3\x56\x22\xd1\ +\xc2\xd2\xa8\x90\x5a\xa1\xa4\x41\x16\xd8\x4c\x5f\x0d\xfc\x68\x20\ +\x68\x78\xc8\x47\xb9\xea\x23\x2c\x6a\x2b\x1d\x29\xd5\x5c\x4c\x1a\ +\x82\x09\x82\x00\xdd\x8e\x66\x9d\x17\x30\xe6\xed\xc7\x07\xef\xf9\ +\x59\x6c\x19\xba\x3a\xcd\x05\x0d\x56\x89\x36\x61\x8c\xa5\x66\x21\ +\x33\xca\xde\xcc\x2e\x84\x66\x7c\x6b\x00\x6e\x6e\xe9\x2c\xfe\xe8\ +\x91\x7f\x89\x7e\xe9\x14\xda\xcd\x1e\xbc\x40\x69\x77\x7c\x5a\x2a\ +\x2d\x2f\x2c\x04\xff\x0b\x36\x98\xa5\x95\x61\x71\xc4\x72\x46\x0d\ +\x77\xdd\xf8\x69\xdc\xbd\xff\xa3\x46\x55\xde\x5c\xce\x64\xf9\xf3\ +\x62\xe0\x42\xba\x54\x67\xd4\x64\xa1\xc1\x19\x3e\xd9\x6c\x72\xb3\ +\xc1\xe2\xc2\x2c\x8e\x9e\x3e\x82\x7a\xfb\x14\x9e\x59\x7e\x14\x87\ +\x0f\x7e\x93\xe5\x33\x83\x91\x03\x65\x6c\xdd\x53\xc3\xc8\x44\x05\ +\x63\x7e\x82\x7a\x67\x15\xad\x4e\x4c\xf6\x95\xef\x1a\x60\x2b\x22\ +\x24\x9d\xc0\x8f\x4d\x29\x16\xa8\x2c\xa4\xda\xea\xf7\xec\x0c\x3b\ +\xc5\xa3\x5a\x55\xd0\xea\xbc\x7e\x82\x80\xcf\x01\x0b\x4b\x75\x58\ +\x2c\x14\x68\x87\xbe\xca\x48\x9c\xc8\x92\x06\x53\x04\x4b\xe1\xd8\ +\x33\x3f\x20\xbd\x24\xe2\xd5\xeb\xb0\x0e\x97\xa1\xdd\x27\x57\x66\ +\x7b\xe8\x2c\x24\xe8\xf6\xb6\x60\xdf\x9e\x77\x62\xe7\xd6\x37\x60\ +\x72\xcb\x8d\x18\xae\x1d\xb0\xfc\x4b\xe2\x9e\x6d\x0b\x25\xe5\x9c\ +\xde\x85\x1c\x39\x72\xe4\xc8\x41\xb8\x66\xc1\x7d\xfa\x33\xf3\x77\ +\x13\x59\x3c\xae\xa9\xd9\x1c\xd6\x18\xd0\x43\x76\xbf\x20\x52\x86\ +\x33\xbe\xcd\xeb\x06\xff\xe7\xd1\x70\x6d\x9f\xb5\xa9\x8d\x06\x3e\ +\xf3\xbf\xfc\x4f\xb8\x7f\xf6\xf7\xf1\x53\x3f\x7a\x15\xc6\xb6\x0c\ +\xa3\x68\x5b\xe6\xb1\x41\x51\x10\xfa\x31\xa5\x12\xc3\x4a\x64\x51\ +\x48\x9d\xc9\xaa\xed\x12\xa5\xc4\xe9\xc5\x3e\xdb\xa4\x22\x10\x95\ +\x50\x58\xba\x16\x1f\x7a\xd7\x4f\x61\xcb\xf0\x36\x36\x75\xf4\xa4\ +\x2d\x87\x8d\x29\x51\xd9\xc8\x0f\x2f\x59\xe9\x2e\xac\xb3\xf6\x3c\ +\xaf\x6b\x18\x74\x4b\xc3\x89\x7e\xb6\xab\x80\x9b\x0e\xd3\xc7\x17\ +\xef\xfb\xaf\x38\xba\xfc\x00\xe5\xc2\x59\xa7\xdc\x33\xb9\x4f\x13\ +\x86\x74\x06\x17\x65\x26\xca\x4f\xda\x56\x50\x0a\xb5\x4e\xbb\x47\ +\x79\x4a\xb2\x14\x5b\x68\x6b\x5b\x6d\x4a\x0d\x2f\xa5\x99\xf4\x75\ +\xf1\xd9\x14\x6a\x4c\x4f\xb5\x0a\xd4\x28\x47\x8d\x8c\x04\x94\x99\ +\x80\x62\x29\x6b\x97\xfb\xf0\x29\x4f\x49\x7e\xd1\x64\xa7\x56\xb3\ +\x89\x52\xeb\x6a\x7c\xfa\xfd\xff\x13\xc6\x87\x5d\xfb\x6b\x8a\x37\ +\xe3\x9f\x3f\x29\xff\x97\x82\xf3\xcf\x54\x91\x40\x73\xa1\x85\x5f\ +\x7f\xf0\x1f\xa3\x50\x3d\x81\x56\xdc\x4e\x49\x88\x32\x4d\xa6\x50\ +\xe3\x13\x1f\xb3\xf4\x66\xf1\xf8\x18\xc7\x5f\xba\xfb\xef\x62\xf7\ +\xf8\x8d\x8e\x8f\x34\xa4\xea\x80\xc9\x12\x2e\xe8\x8b\x80\xa3\x63\ +\x48\xe9\x88\x94\xb3\x75\xf9\x28\x59\x46\x71\x78\x03\x72\x95\xb0\ +\xd2\x5c\xc1\xec\xca\x39\x2c\x2f\x9e\xc3\xd4\xfc\x51\x2c\xc6\xb3\ +\xb6\xb2\xec\xf4\xfc\x11\xac\xc4\x4b\xcc\xd8\x15\x8c\x0c\x07\xa8\ +\x96\x28\xa3\x33\xcf\x87\x8a\x21\x46\x2a\x05\x84\xcc\x6f\x4d\x44\ +\x0a\x49\x5d\x72\xad\x29\x7e\x29\x0b\xf5\x29\xcb\xdb\xaa\xb7\x48\ +\x65\xc8\xb2\xa4\x30\xa5\xf2\x8c\x3a\x11\x3a\x94\x6b\x3b\xad\x04\ +\xcb\x4b\x1d\x74\xba\x55\x8c\x55\xaf\xc6\x81\xfd\x77\x62\x62\xf8\ +\x46\xec\xaa\xdc\x84\xed\x13\xaf\x43\xa5\xbc\xc5\xf8\x8a\xbb\xfc\ +\xa1\x7c\x94\xd5\x79\x93\x13\x8d\xed\x75\xde\x73\xe4\xc8\xf1\xca\ +\x41\xfe\xe6\xe6\xc8\x71\xe5\x90\x6f\xf9\x98\x23\x47\x8e\x1c\x39\ +\x5e\x1d\x90\x84\x98\x5d\x2f\x5b\x5c\x8a\x39\xb9\xa7\xbd\xf0\x8b\ +\xf9\xdd\xe0\x24\x45\x58\xaf\x15\xe3\xd4\x54\x03\x8f\x3d\xf6\x75\ +\x5c\x75\xcd\x0e\x0c\x4f\xb0\x73\xdd\xd7\xca\xb2\xd4\x33\xc9\xda\ +\x99\x5c\xba\xcb\x8e\xff\x99\xd9\xf9\xa0\x1b\xfb\xde\xea\x8c\x27\ +\x49\x8c\xf2\x50\x1f\x53\xd3\x47\x10\x78\xc3\x98\xdc\xb2\x9b\x9e\ +\xa5\x0c\x72\xdb\xe6\x65\xfe\x2f\x8a\x4b\x38\x0f\x62\xcd\xab\x19\ +\x8c\x51\x1c\x3b\xf1\x04\xce\xac\x3c\x81\x38\xe8\xa4\x83\x43\x6e\ +\x86\xb1\x75\xe8\x7b\x7d\x3b\x37\xad\xdb\x89\xd9\xd9\xd7\xe0\x81\ +\x06\x7e\x5c\x50\x29\x57\x34\x80\xa2\x51\x9c\xbe\x14\x32\x66\xed\ +\x06\x02\x1c\x7d\x47\x43\xc3\x02\x41\x08\x84\x41\x01\x61\x51\xe7\ +\xa8\x69\xf6\xb8\xb6\xca\xa4\x27\x65\x04\xcd\xa2\xac\x31\x18\x3f\ +\x24\x9d\xb8\x8c\xfd\xdb\x6e\xc1\x48\x75\xd2\xe8\x19\x9b\x29\x3d\ +\x87\xf5\x07\x0d\x38\xe8\x59\x71\x38\xaf\x7d\xdb\x7a\x50\xf4\xcf\ +\x9c\x3e\x86\xaf\x1d\xfc\xcf\xe8\x95\x8f\xa1\xdb\x96\x82\x48\x83\ +\x13\x2e\x84\xc6\x7f\x8c\x63\x37\x4a\x67\xfe\x8d\x9e\xf8\xe5\x65\ +\x03\x42\x49\x80\x5d\x5b\x6f\xc3\xee\xf1\x1b\x2c\x8c\x62\x75\x31\ +\xbb\xdf\xcb\x43\x16\x52\xf7\x75\xa4\x1c\xb3\x5e\xe8\xbc\x8e\x84\ +\x75\xa1\x48\x4b\x1f\xcd\xa4\x83\x33\x27\x9e\xc1\xb3\x47\xbf\x89\ +\xaf\x3d\xfb\x3b\xf8\xe3\x6f\xff\x12\x1e\x9f\xfd\x03\xf4\x2b\xcf\ +\x61\xe2\x75\x7d\xdc\x78\xeb\x04\x6a\x43\x5d\xd6\x15\x96\x55\x33\ +\x41\xbd\x49\x22\x71\x08\xaf\x57\x36\xbe\x45\x27\xf4\x03\xb7\x0a\ +\x8f\x11\x98\xe2\x94\x97\x9b\xc5\xae\x99\xee\x7d\x14\x59\x0e\x05\ +\x86\x0f\x83\x2e\x8a\xa5\x36\xfc\x20\x62\x38\x29\x35\x19\xbe\x4c\ +\x5e\x82\x3e\xfc\x12\x2f\xb2\xe4\x87\xcc\xaf\xa0\x67\x67\xe0\x45\ +\x5e\xc4\xfc\x51\x79\x89\xae\x56\xb8\x91\x4e\x14\xa0\xd7\xe9\xa1\ +\x5b\x4f\x10\xf2\xb9\x34\xec\xa1\xec\xc5\x98\x3a\xf3\x20\x9e\x78\ +\xec\x4f\xb0\xb8\x70\x02\xbd\x62\x17\x95\xea\x76\x54\xc2\x9a\xd5\ +\x17\xf7\x2e\xb8\x8b\x04\x95\x1d\x46\x33\x47\x8e\x1c\x39\x5e\xd5\ +\x38\xbf\x19\x78\xf9\x60\xb3\xef\xaf\x7d\xa0\x75\x5f\xfb\xb9\x30\ +\x2e\x98\x2e\x86\xcb\x82\x66\xf4\x08\xb5\x7f\x52\xa9\xf5\x3d\x1f\ +\x77\xdc\xf2\x66\xfc\xb3\xff\xf2\x7f\x62\x62\xd4\xc3\xeb\x6e\x1a\ +\xa2\x20\x50\xb4\x66\x41\xbe\xd7\x82\xa6\xbf\x66\xa7\xb6\x5a\xb4\ +\x34\x39\x89\xb0\x1d\x86\xd9\xc6\x75\xe3\x26\x66\xe7\x66\xb1\x75\ +\x64\x3f\x86\xaa\x23\xb6\x7a\x7e\xed\xec\x30\xf3\xe9\x7e\x8d\xd7\ +\xd4\xe8\x08\x3a\xa3\x61\xd0\x2c\x64\xe9\x1a\xf4\xbf\x96\xd6\x8c\ +\x2e\xc1\xf8\x25\x33\x48\x7e\x7a\xf4\xd0\x9f\xa3\xd1\x5f\x40\x37\ +\x6a\xc9\xc1\xc9\x12\x02\x13\xa5\xb6\x4f\x13\x9a\x24\x3b\x45\xdd\ +\xbe\x29\x06\xb5\x92\x4b\x67\xa4\x4a\x29\x66\x67\xed\xa6\x54\x5d\ +\x1e\xf1\xae\x36\x3c\xbd\x6b\xbb\x47\x9d\x43\x6b\x8a\x34\x26\xcd\ +\xe3\x8f\x64\x52\x29\xe2\xfc\x90\xed\x3e\xff\x8c\x04\x65\x8a\x42\ +\x52\xc5\xee\xc9\x9b\xb1\x65\xc8\xad\xf4\x77\xb4\x1c\xed\x4b\x61\ +\xcd\x17\x0d\x6a\xb3\x15\xc7\x97\x9f\xfa\x12\x92\xf0\x19\x34\xfb\ +\x75\xe7\x2e\x99\x82\x06\x27\xe3\xc9\x2f\xef\x8a\x9c\xf6\xb6\xda\ +\x9d\xff\x0a\x5b\x0e\x4b\xe4\x7b\x04\xfb\x27\x6e\x91\x13\xfd\xf2\ +\xcf\x02\xb8\x30\x17\x44\xc6\xf4\x66\x70\x84\x9c\x1f\xc2\xc8\xa4\ +\xfe\xa5\xd8\x34\x05\xa3\x26\x17\xd9\x4a\x45\x4d\x2b\x8a\x31\xbd\ +\x74\x0e\xc7\x4e\x3d\x8b\xa3\x67\xef\xc5\x17\x9f\xfb\x03\x7c\xe5\ +\xd0\x6f\xe0\x6b\x8f\xff\x06\x1e\x5d\xfe\x32\x66\xe3\xc7\x50\x18\ +\x9e\xc2\xe4\xd5\x31\xf6\x5d\xed\xe3\xfa\xab\x4b\xd8\xbd\xa3\x80\ +\x2d\x13\x01\x46\x4b\x9e\x29\xd3\xca\x94\x5b\x43\x0a\xbf\x7e\x4c\ +\xd9\x2a\x66\x1a\x34\x91\xac\xcd\x32\xd3\x56\xe8\x11\xaf\x6e\xc1\ +\x14\x62\xb1\xca\x54\x6e\x91\xf6\x06\x08\x50\xf2\xcb\x28\x85\x45\ +\x6c\xdb\x42\xf9\x7e\x5b\x80\x4a\x6d\x9e\x72\xd1\x63\x38\x7a\xf0\ +\x4f\xd9\x8f\x78\x08\xab\xfd\xc3\x58\xee\xcc\xda\x0a\xc0\xe1\xd1\ +\x09\x96\x6b\xb0\xb6\xf5\xa9\xea\x86\x64\x33\x9b\x04\xa7\xc4\x59\ +\x5d\x50\x62\x73\xe4\xc8\xf1\x4a\x40\xfe\xb6\xe6\xc8\x71\xe5\x90\ +\x2b\xd4\x72\xe4\xc8\x91\x23\xc7\xcb\x08\x69\x4f\xf4\xa5\x42\xd2\ +\xe2\x26\x97\x75\x70\x5f\xc8\x25\xac\xdd\x65\x50\x87\x99\xf7\x8d\ +\xee\x99\xf9\x72\xb1\xd1\xbf\x3d\x0f\x12\xdc\x88\x0b\x74\x58\x53\ +\x2b\xdd\xbc\x52\x01\xf7\xdc\xf6\x0e\xfc\xc7\xdf\xf8\x4f\x28\x8c\ +\x15\x71\xcb\x0d\x15\x74\x63\x9d\x71\x45\x77\x5e\xb6\x20\xdd\xc8\ +\x78\x7a\x70\xc9\x51\x38\x0b\x6d\xdd\x62\xf7\xcb\xce\xb2\x57\x70\ +\x33\x5a\xfd\x12\x70\xea\xd4\x71\x94\x4b\x35\x4c\x8e\xed\xa6\x9d\ +\x06\x03\xd8\x91\x36\x42\x5a\x51\xe4\xc2\xa5\x81\x5f\x34\xb2\xa0\ +\x8e\x4f\x0d\x94\x14\xf0\xc8\xd3\x5f\xc2\x72\xe1\x2c\xba\xbd\x96\ +\x79\xb0\x41\x11\xf1\x4e\x68\x45\x9d\x06\xa6\x34\x9b\x3a\xee\xb8\ +\x67\x8d\x0f\xd9\xa0\x90\x0d\x02\x39\x3a\x6b\x94\x49\x6f\x6d\xd0\ +\x46\x64\x74\xf3\xfa\xa6\x4c\x2b\x99\x32\xcd\x83\x14\x89\x5e\x20\ +\xa5\x97\x3c\x49\xc9\xa3\x01\x21\xfa\xd3\x08\x11\x09\x7a\xfd\x32\ +\x26\xc7\xaf\xc5\xb6\xe1\xfd\x2e\xfd\xa2\xa3\x38\x52\xb2\x99\x41\ +\x6e\x46\x9f\x3f\x52\xf4\x90\x0a\x9f\x6d\x74\x0d\xa7\xcf\x1d\xc6\ +\x97\x9f\xfb\x4f\xe8\xf8\x47\x10\x75\x15\x22\x36\x3e\xdc\x60\x1c\ +\xd3\xcd\x34\x0e\xb0\x69\x61\x9c\x52\xcd\xf1\xdf\x8b\x63\xf4\xa2\ +\x10\x37\x5d\xf5\x6e\x6c\x1d\xda\x2b\x2e\xcc\x9f\x0b\x92\x06\xbc\ +\x28\x2c\x53\x9e\x87\x8c\x67\xed\xf1\xd3\xef\x69\x6b\xab\x22\xcb\ +\xc0\xc7\xfc\xea\x22\x1e\x7e\xf4\xdb\xb8\xf7\xc4\x7f\xc7\xd7\x1e\ +\xfb\x65\x7c\xfd\xd0\x6f\x03\x93\x67\xb0\xef\xce\x61\x6c\xbf\x79\ +\x02\x13\xa3\x3d\x84\xfd\x04\xcd\x36\xc3\xb1\x6e\x78\xba\x74\xae\ +\x9a\xcf\x14\x93\x60\x89\x79\x67\x0b\xc9\x94\x3c\x8b\xc0\xb7\xd5\ +\x60\x4a\x51\xc8\xbb\x6d\x41\x8a\x32\x3d\x34\xe9\xae\xf3\xf0\x22\ +\x5b\x21\xd9\x9a\x2f\xa0\x31\x03\x44\xcb\x05\xd4\x17\x1a\x68\x2d\ +\x75\xd1\x9c\xeb\xa3\xb9\xd4\x44\x7d\xb6\x81\x95\xd9\x16\xda\xf5\ +\x16\x22\x34\x90\x74\x3a\xe4\xd9\x6d\x93\x19\xb5\xb4\x6d\x95\xcf\ +\x67\x8f\xf5\x20\x44\xd2\x63\xbe\xf7\x7d\x74\x9b\xac\x2f\xac\x17\ +\xd5\x4a\x09\x5b\xb7\x8f\x61\x7e\xea\x30\x9e\x78\xea\x2b\x36\xc2\ +\x54\x40\x15\xd5\x91\xad\xa6\xf0\xd3\x96\x57\x76\xee\x0a\x5f\x1a\ +\x63\xd7\x7e\x72\xe4\xc8\x91\xe3\x55\x0c\x7d\xe7\xae\xc4\x25\x6c\ +\x7c\x16\x36\x7b\xde\x0c\x97\xeb\xcf\x90\x39\x9e\xd7\x08\x13\x03\ +\xad\xa2\xbe\xe5\xae\xe1\x49\xad\x06\x9e\x07\xdb\xc2\x35\x3b\xe7\ +\x2d\xf6\x7c\x6c\xab\xf8\xf8\x6f\x7f\x76\x2f\xce\xcd\x9e\xc4\x5b\ +\xef\xda\x8d\xae\x97\xd8\xa4\x18\xf9\x95\x62\xc6\xc8\xe9\x4a\x69\ +\x3a\x0a\xbc\x1b\x59\xb5\x70\x94\x43\xd8\xe6\x68\xa2\xce\x72\xf3\ +\x04\xa6\x4e\x35\xb0\x63\xfb\x3e\x0c\x55\x46\x4c\x5e\xb1\xa5\xd7\ +\x44\x16\x2e\x35\x5c\x18\x19\xbb\xf2\x97\xf9\xbd\xc0\x3d\x7b\x74\ +\xcc\x90\x0f\x24\xb8\xff\xb9\x2f\xa2\x83\x15\xb6\x71\x14\x98\x08\ +\xc9\x4a\x46\x92\x3f\x92\x73\x4c\x76\x4a\xe8\x53\x67\x68\xf1\x32\ +\x79\x8a\x7c\xae\x29\xde\x06\x61\x74\x25\x33\x28\x2f\xd8\xaa\xb3\ +\x99\x75\x0a\x35\xc9\x51\x7a\x76\x52\x8f\xb2\xc6\x76\x44\xe0\x5d\ +\x64\x92\xb8\xcd\x9c\x19\xc2\xc4\xf0\x5e\xec\xde\x72\xa3\xd9\x89\ +\x57\x97\xfd\xf6\x73\x41\xc8\x8f\x89\x80\x16\xb7\xb6\xf4\x0e\xb0\ +\xb2\x52\xc7\x37\x0e\xfd\x1a\xa2\xe2\x0c\x92\xa8\x63\x13\x73\x32\ +\x25\x8f\x4d\x1e\x13\x17\x0c\xe8\xb6\xe7\x74\xfc\x58\x34\x24\x11\ +\xf8\x15\xf2\xd3\xc3\xcd\xbb\xbf\x4f\x8f\xe6\x26\x3f\xce\xc3\x25\ +\x90\xd2\x48\x0b\x7b\x0d\xc6\x9f\xdd\x5d\xbc\x3a\x17\xd7\x14\xb4\ +\xfd\x98\x3c\xb8\x73\xca\x92\xa4\x8b\x93\xf3\x67\x70\xec\xd4\xe3\ +\x78\xf4\xdc\x9f\xe3\xcb\x07\x7f\x1f\x5f\x7e\xea\xd7\x70\xef\xb9\ +\x3f\x61\xf9\x3c\x87\xb1\x1d\x6d\x1c\xb8\x69\x18\xd7\xdd\xb4\x05\ +\x57\xef\xaf\x62\xdb\xb8\x87\x4a\x28\x7a\x1d\xa6\x91\xb4\x12\x2d\ +\x85\xa4\x6c\xae\xcd\x1c\x75\xc6\x6c\x2f\x44\x40\x39\x47\x0a\xaf\ +\x80\x79\xad\xdd\x17\x24\x74\x49\x7e\x77\x67\xe0\xb9\x09\x4d\x3a\ +\xcb\x4e\x3b\x05\xb8\xf3\xd1\x28\xdf\x79\xa1\xb9\xc7\x5d\xe6\x52\ +\x02\x94\x83\x32\xe5\x7c\x60\xe7\xee\x09\x94\xca\xcb\x58\x58\x7e\ +\x06\x67\x8e\xde\x8b\xe9\xc5\x93\x28\x84\x4d\x96\x5b\x11\xb5\xea\ +\x38\xc3\xfa\xcc\xfb\xd8\x6d\x05\xc9\xfa\xa1\x7c\x73\x13\xde\x32\ +\xac\x9b\x72\xe4\xc8\xf1\xf2\x44\xfe\x96\xe6\xc8\x71\xe5\x90\x2b\ +\xd4\x72\xe4\xc8\x91\x23\xc7\xcb\x08\x12\xf3\x06\xae\xac\xa7\xbb\ +\x01\x66\xed\x8c\x9b\x62\x80\x82\xf5\x79\x5d\x67\xd9\x61\xd0\xed\ +\x92\xb0\xb8\x79\x65\x3c\x0c\xf2\x92\x31\xa1\xfb\x15\x47\x46\x74\ +\x20\xbe\x0b\x81\x3c\xe9\x4f\xab\x98\x6a\xe5\x1e\x9e\x39\x19\xe3\ +\xde\x07\x3e\x8f\xdb\x6e\xdf\x87\xd1\xb1\x2e\xe2\x96\x94\x1a\xec\ +\xf0\xa6\x03\x28\x76\xae\x84\x46\x50\x2c\x5d\x69\x32\xd2\xe8\xb2\ +\x01\x08\x6d\x4d\x64\x67\xaa\x45\x11\x8a\xec\x64\x9f\x38\xfd\x1c\ +\x8a\xc1\x10\x26\x27\xa4\x54\xcb\x66\xd7\x66\x48\x79\xcc\x58\xce\ +\x70\x19\xac\x67\xd0\xd0\x83\xdd\x33\x7e\xd8\xf1\x7f\xe0\xd9\x3f\ +\x44\x13\xab\x88\x7b\xab\x8e\x27\xf2\x6c\x33\x8c\x7b\x1a\x34\xd1\ +\x36\x8f\x89\x29\xa5\x7a\x89\x06\x82\xa4\x40\x11\x05\xba\x49\x99\ +\x76\xde\x20\x90\x4b\xa7\x99\x14\x41\x7a\xd7\x0c\xdb\x30\x80\xcd\ +\xae\x0e\xa5\x50\xd3\xe5\xa7\x0a\x35\x5e\x9a\xad\xed\x33\x9d\xa4\ +\x4e\xfa\x05\x14\xfd\x0a\x86\xab\x93\xd8\x3b\x71\xb3\xcb\x3e\x7a\ +\x32\x6a\x29\x6d\x67\xc8\x06\x16\x94\x8f\xb0\xad\x2b\x35\x90\x22\ +\x1c\x39\xf5\x24\xbe\xfa\xc4\xbf\x45\x6f\xe8\x24\xfa\x5d\xda\x91\ +\x51\x0d\x0e\x49\xd1\xa3\xb3\x33\xb2\x7a\x2a\xda\x2e\xbd\x8e\x8e\ +\x06\xa4\xb2\xf4\x14\x7a\x52\x3a\x95\x70\xfb\xf5\x1f\xc4\x48\x79\ +\x9b\x1b\x90\x62\x40\x17\xa7\xfb\xdd\x1c\x0a\x2f\xe2\xee\x26\x9f\ +\x8e\x7b\x59\x28\x3f\x13\xf2\x29\x65\x69\xc0\xf8\x02\x4c\xaf\x4c\ +\xe3\xc9\x27\xbe\x8a\xaf\x3f\xfd\xdb\xf8\xd2\x57\xff\x39\x66\xc3\ +\x47\x51\xbd\xa1\x80\xab\xef\xda\x8a\x21\x78\x88\x92\x2e\xbc\x46\ +\xc4\xfc\x0f\x59\xef\x42\x04\xda\x8a\xb1\xaf\x41\x46\x97\x7f\x1a\ +\x4e\xd3\x2e\x41\xc6\x76\xa0\xd2\x65\x79\xf5\x62\x30\xab\x6d\x0b\ +\xa8\x52\x90\xa0\x9f\xb4\x11\xb5\xfb\x58\x99\x69\x62\x65\xaa\x8f\ +\x93\xcf\x34\x71\xe2\xa9\x22\x8e\x3d\xda\xc5\xf2\xd1\x2d\x88\x97\ +\x76\x20\x6a\x8e\x93\xbd\x3d\xe8\x2c\x6c\x81\xdf\xdf\x87\x4e\x97\ +\xe6\xe6\x24\x5a\xf5\x9d\xe8\xc7\x07\xd0\x5c\x99\x04\x9a\x23\xe8\ +\x36\x2b\x88\x9b\xe4\xab\xdd\xb1\x33\x61\xfa\x85\x26\x7a\x71\x8b\ +\x7c\xd6\x11\xf5\x9b\x36\xc0\x57\x29\x95\x51\x24\x8f\x7e\x33\x40\ +\xb5\x36\x84\x09\xaf\x86\x33\x47\x1e\xc4\xc1\xa7\x9f\x44\x42\x6e\ +\x47\xc6\x77\xa2\x5a\x19\x06\xab\x95\x29\xfa\x34\x38\x66\xd9\x23\ +\x64\xe6\xc1\xfb\xe5\xe2\x85\xfa\xcf\x91\x23\x47\x8e\x57\x1a\x36\ +\x7e\x1f\x75\x7f\x21\x18\xfc\x46\xca\x3c\x48\x2b\xc3\xf3\x9e\x69\ +\xb1\xd6\x68\xca\x22\x73\x1c\xf4\x74\x19\x38\xcf\xbb\x93\xa7\x7a\ +\x51\x82\xbd\x5b\xaf\xc3\x7f\xfb\xd2\x6f\x62\xcb\xd8\x18\xf6\x1c\ +\xf0\x11\x47\x74\xa1\x4c\x20\x11\x4a\x41\x2c\x58\x6a\x5e\x83\xf1\ +\x63\x06\xb6\xe9\x34\xfb\x5d\x04\x41\x09\x0b\xab\xa7\xb1\x38\xbf\ +\x82\x9d\x13\xfb\x51\xa9\x0c\xd9\xd6\x7b\xae\xbd\x94\xe7\x0d\x09\ +\xdb\xf0\x68\xd0\xb3\x2e\xa3\x7d\x01\x58\x98\xcc\x93\xbb\xd4\x2a\ +\xcf\x35\xa6\x70\xf8\xec\x77\xd0\x4a\x56\x4d\x19\x22\x48\x9e\x92\ +\x17\x77\x67\x7b\x47\xd9\x22\x61\xdb\x97\x44\x7d\xc4\x66\xaf\xf6\ +\x5b\x5b\x42\x9a\x6f\x5e\x29\x43\x05\xb7\xd5\xb5\x92\x29\x3b\x93\ +\xa5\x34\x81\x46\x0a\xb5\xa2\x5b\x51\x1e\x04\x92\x11\xe9\xca\x60\ +\x05\x3f\xa0\x04\x25\x79\x8a\xb4\x48\xcc\x8b\x8a\x18\x1e\x9e\xc4\ +\xd5\xdb\x5f\x4f\xaa\x92\x0c\x32\x5a\xc2\x9a\x61\x73\x90\xa0\x94\ +\x94\x92\x55\xfa\xed\x04\x5f\x7c\xfc\xbf\x22\xa9\x3d\x81\xae\xda\ +\x7c\xe6\xa7\xe8\x65\xac\x3a\xa5\xa7\xfe\x18\x87\x1f\x53\x3e\x29\ +\xd1\xe4\x78\x57\xda\x28\x09\xc0\xef\x55\x70\xfb\x55\xef\x5b\x8b\ +\xf6\xbc\xd8\x07\x92\x7c\x1e\x32\x3b\xdd\x53\x3f\xeb\x56\xb2\x20\ +\xc8\xa3\x64\xbf\x80\x75\x45\x32\x95\xae\xa5\x95\x25\x1c\x3e\xf6\ +\x00\x1e\x39\xf9\xe7\xf8\xf3\x43\xbf\x8b\x7b\x0f\xfe\x2a\x0e\x35\ +\xbe\x85\xde\xc8\x0c\x76\xdd\x10\x60\xef\x81\x31\xec\xdd\x5e\xb5\ +\x09\x5e\x05\xe6\x71\xd2\xea\xa2\xa7\xb3\x81\x35\x41\x88\x97\xd7\ +\x2b\x51\x7e\x2a\x92\x26\x39\x27\x5d\x49\xe0\xb6\xd2\x4d\x8a\x43\ +\x53\xa2\x29\x7e\xca\xc7\xbc\xf7\xed\x3c\xde\x04\xac\x76\x94\xdb\ +\x99\xff\x5e\x8c\xc8\xeb\x9a\xdc\x16\xa1\x8e\x56\x7b\x19\xed\xf6\ +\x0a\x3c\x9f\x72\x1f\xe5\xde\x30\x2c\x81\x92\x1f\xc0\xb2\x91\x72\ +\x2e\xf0\x4b\x18\x2e\x6f\xc5\xd8\x24\xa5\xbd\x0a\xeb\xce\x91\x6f\ +\x63\x6e\xe5\x69\x44\xfe\x32\x62\xc6\x39\x52\x19\x27\xfd\x90\x69\ +\xd4\x6a\x4b\xe6\xaf\xea\x8f\xe5\x43\x96\x13\xc2\xa0\x39\x47\x8e\ +\x1c\x2f\x27\xe4\x6f\x67\x8e\x1c\x57\x0e\x05\x0a\x52\x69\xeb\x9f\ +\x23\x47\x8e\xd7\x1a\xf2\x97\x3f\xc7\xcb\x0f\x9b\xd5\x4a\x67\x27\ +\x01\x50\x1d\x73\x27\x08\x4a\x09\x60\x86\x75\xd0\x41\x1d\x78\x9b\ +\x2d\x29\x37\x79\xb4\x5e\x9e\x59\xba\x70\x66\x97\xde\xcf\xc3\xf3\ +\x2c\x0c\xae\xbb\xbf\x8e\x35\xb2\xf6\x34\x00\xb3\xd8\xe8\xb2\x39\ +\xcd\x8b\x63\x13\xe6\xce\x23\xbb\x21\xe6\xcc\xad\xe0\xf8\xec\xf5\ +\xba\x58\x99\x05\x6e\xff\xe1\x3b\xf1\xa6\x77\x8f\xe2\xd3\x3f\xb4\ +\x17\xab\x71\xc3\x1d\x2e\xce\x3f\x65\x85\x56\x6f\x69\x00\x43\x4a\ +\x29\xf5\xc3\x8d\x88\xf2\xc9\x06\x4e\xe4\xe6\xd9\x8c\x55\xd1\xd5\ +\x40\x80\x56\x82\x95\x4a\xc3\x58\x9d\x2d\xe2\xcd\xb7\x7c\x02\xaf\ +\x3b\xf0\x76\xc4\x31\x3b\xde\x5a\x7d\x64\xb3\xac\xc5\x80\x66\xc2\ +\x0e\x60\x03\x9b\x97\x82\x06\x22\x5c\x32\x34\x60\x22\xe5\x4e\x88\ +\x7f\xf7\xbb\x7f\x0b\xed\xe1\x05\x74\x92\x65\xda\xd3\x47\x3a\x1b\ +\xd6\xce\xcb\xa2\xb9\xdd\x89\xd0\x5c\x4d\x10\xb5\x81\x28\x29\x98\ +\x62\x4d\x22\x4d\xc2\xb4\xba\xf3\x40\x1c\x65\x57\x19\xc8\x1f\x8d\ +\x22\x20\x1a\x9a\xb1\xac\x09\xbb\x95\x52\x01\x95\x4a\x1f\x43\xc3\ +\x21\xca\xd5\x30\x3d\x47\x4d\x1e\xfb\x88\x93\x18\xa5\x62\xc5\xf8\ +\xe9\x27\xda\x22\x67\x18\x93\xa3\x37\xe3\xa3\x77\xfe\x0f\x36\x38\ +\x04\x0d\x24\x64\x09\x55\xfe\xa5\x50\xfd\x53\x66\x8a\x47\xcd\x1a\ +\x6e\xb5\x57\x71\x74\xfa\xdb\xf8\xf6\x53\xff\x0d\xfd\xea\x02\xa2\ +\x8e\x3b\x47\x6c\x30\xbc\xb1\xa6\x5f\xfe\xcb\x46\xf9\x20\x25\x9a\ +\x06\x85\xa4\x28\xb5\xba\x2e\x3b\x1d\x6c\x92\x4c\xe0\x47\xdf\xf1\ +\x8f\x30\x5a\xdd\x6d\x0a\x2b\x37\x20\xe7\xc2\x3b\xd3\x46\x28\x1e\ +\x47\xd7\x11\x77\x06\xf3\xaf\x83\xeb\xfb\xa1\x32\x44\x73\xbe\x71\ +\xe2\xe8\x41\x9c\x5b\x38\x84\x27\x17\xbf\x82\x43\x4f\x7f\x11\x23\ +\x7b\x7a\x18\xbe\x6e\x12\x25\x86\xeb\x74\x62\xe6\x62\x8c\x84\x75\ +\x42\x6a\x46\xad\x42\xf3\x75\xee\x98\x14\x83\x4c\xab\xcb\x53\xde\ +\x95\x2e\x9a\x95\x8f\x11\xcd\x76\xf6\x5e\xa0\x32\x2d\x33\xbe\x36\ +\x56\x16\x43\xcc\x9f\x9e\x46\x63\x2e\xc1\xf2\x62\x07\x33\xc7\x1b\ +\x68\xce\x6c\xc1\xb5\x3b\xde\x88\xab\x0f\x5c\x85\xb1\xa1\x49\x1c\ +\xd8\xbe\x13\xe3\x7b\x76\xa1\x32\x54\xc1\xe4\x9e\xab\xd0\x8b\x5a\ +\x28\x0d\x4f\x30\x7e\x8f\x5c\x16\xd1\x21\x1f\x51\xc2\xdf\xd5\x79\ +\x74\xba\xd3\x48\xda\x4b\x4c\xd7\x2c\x9a\xc9\x02\xcb\x7f\x8e\xfc\ +\x74\xc9\xd6\x2a\xeb\x41\x8b\xf9\xa7\x55\x7d\x1d\xf4\x1b\xb3\x58\ +\x5c\x58\x42\xdc\x8c\x58\x96\x43\x74\x4f\xd0\x5a\xed\x60\xfa\x54\ +\x17\x0b\x8b\x4d\x5c\x7b\xe7\x8f\xe0\xee\xbb\x3f\x86\x03\x37\xdc\ +\x49\x9e\x2b\xd2\x86\x3a\xe5\xb3\x90\xde\x9e\x87\xb5\xfc\xbc\x04\ +\xb2\x82\xb9\x1c\xbf\x39\x72\xe4\xc8\xf1\x5d\x47\xf6\x51\x7a\x29\ +\xd0\x07\x6d\xe0\x23\xb8\x29\xc9\xc1\x8f\xdf\xa0\x87\x34\xcc\x15\ +\xfb\x26\x6e\x42\x7b\x0d\x83\x3c\x10\x9b\x0d\x7d\x9c\x17\x44\xeb\ +\x8a\x7a\xf0\xbb\x1e\xde\xfc\x13\x1f\x41\xbc\xf5\x61\xfc\xb5\xcf\ +\xbc\x1e\x5e\xc0\x96\x4f\x4a\x21\xb5\xb9\x36\x5b\x44\x3e\xf9\x67\ +\x5b\x38\x3a\x98\x72\x41\xf2\x80\xbc\xc8\x82\x6d\x63\xaf\xc7\x96\ +\xcb\x2b\xa3\xbd\xe4\x61\xab\xf7\x26\xbc\xeb\x2d\x1f\xc7\xd8\xf0\ +\x0e\x93\xb3\xb4\x0d\xf2\x3a\x36\x91\xa3\x2e\x94\x94\xcd\x20\xbf\ +\x96\x36\x5e\xe2\x91\x6d\xb3\x78\x79\xee\xec\xfd\xb8\xef\xe0\x7f\ +\xc7\x7c\xfb\x34\xe2\x2e\xdb\x42\xfa\x31\x79\x89\x42\x92\x6d\x91\ +\x4d\xf9\x49\xe7\xaa\x45\x5d\xad\xfa\xd7\x36\x95\x09\xe5\x1f\xda\ +\x49\x8e\x8a\xa4\x86\xca\xa0\xb4\x3a\xa6\x94\x07\x6c\xf1\x99\xae\ +\x1e\xe5\x43\x0f\x95\x2a\xe5\xa8\x11\x0f\x43\xd5\x00\x61\x59\x13\ +\xb2\x7c\x63\x47\x13\x95\xa4\xde\x51\x76\x45\xdd\x36\xbc\xee\x28\ +\xae\xde\xf3\x26\x7c\xff\x6d\x3f\x6f\xe7\xaa\xa9\x89\x15\x2d\x51\ +\xb5\x04\x38\xc3\x79\x70\x32\x15\x2f\x53\xa6\x85\x68\xb5\xda\x78\ +\xf4\xd8\x97\xf0\xd8\xb9\x5f\x43\xec\x31\x13\x99\x06\xf1\xe5\x8a\ +\x55\xf2\x87\xee\xfc\xb1\x3b\x9f\xa5\xf8\x41\x48\xa9\x81\xfe\xe8\ +\x27\x61\xbc\x25\x8c\x60\xb8\xb4\x13\x3f\xf6\xf6\xff\x5d\x4d\xbd\ +\xf1\x61\xde\x15\x42\x84\x44\x44\xf4\xd6\x2c\x79\x65\x66\x7b\xd0\ +\x2d\xf5\xa7\x38\xf8\xa7\x95\x68\x92\x2b\x3c\xbf\x6c\xce\x1d\x0a\ +\xa3\x33\x53\xc7\x30\xd7\x3c\x81\xa7\x66\x1f\xc0\x13\x07\xbf\x8c\ +\xa0\xd6\xc0\xc4\xce\x02\xca\xdb\xaa\xa8\x50\xb6\xa6\x44\x65\x2b\ +\x02\x0b\xfd\x00\x7d\x29\x22\xc9\x88\xad\xdc\xe7\xe5\xab\x0e\x2a\ +\x9f\x95\x6e\xcb\x45\x29\x48\x19\xa5\xce\x33\x53\x8c\xf4\xa3\x95\ +\xf5\x81\xf6\x79\xb4\xb2\x24\x3f\x71\x88\x88\xf2\x92\x56\xc7\xb5\ +\x34\xc1\xa8\x1e\x91\x8f\x06\x62\xca\x6b\xa5\xa0\x86\x91\x62\xcd\ +\xad\x64\xa3\x5f\x89\xf9\x3d\xd6\xbf\xa4\x30\x8f\x42\x4b\x67\xb0\ +\x8d\x51\xf6\x61\x99\x79\x25\x44\x8c\xc1\xce\x62\x63\xfc\x45\x9f\ +\x75\xa2\x03\x2c\xcd\xb6\x30\x32\x7a\x3b\xae\xbf\xe6\x83\xd8\xbf\ +\xe3\xed\xa8\x06\x7b\x59\x86\x5d\xf2\xa1\xd5\x77\x96\x64\x62\xcd\ +\x40\x0c\x9a\x73\xe4\xc8\xf1\x72\x41\xfe\x66\xe6\xc8\x71\xe5\x90\ +\x2b\xd4\x72\xe4\x78\x0d\x23\x7f\xf9\x73\xfc\x85\x62\xb3\xe6\x66\ +\xa0\x13\x26\xe3\xba\x0f\x67\x72\x87\xa1\xab\x1b\xa9\x83\xd3\xe5\ +\xcb\xd9\xcb\xd6\xfa\xf5\x84\x85\x34\xda\x29\x8d\xbe\xee\x32\xf1\ +\xb2\x8e\xb8\x2c\xd7\xcd\x36\xd6\x61\xfe\x79\xb1\x43\xea\x14\x12\ +\xba\xeb\x51\x0a\x0c\xc5\xa8\x6e\xab\xeb\x24\xaf\x23\x33\xab\xf3\ +\x3f\x68\x2f\x88\xa8\xbb\x9d\x77\xbf\xa2\xb8\x00\xe1\x94\x15\xf1\ +\xaa\xfe\xb4\x97\x34\xf1\x7f\xfc\x8b\xdf\xc2\xff\xf7\x73\x7f\x0f\ +\x9f\xfc\xe4\x3b\xf0\xb6\x77\x47\x68\x36\xed\x50\x0c\xf3\xab\xc1\ +\x13\x4b\xbf\xf2\x89\x9d\x67\x75\x84\x5d\x76\x88\x82\xfb\x33\x65\ +\x94\x65\x14\x9f\x98\x31\x96\x23\xec\x34\xf7\x1b\x5b\x70\xc7\x35\ +\x1f\xc3\x0d\x07\xde\xce\x8e\xbe\xdb\x16\xb0\x67\x33\x96\x49\x9a\ +\x7e\x15\x44\xd9\x29\x72\x2f\x04\x8a\x41\x61\x6c\x66\x6e\xd2\x47\ +\xa7\xdf\xc4\x7f\xfe\x83\xbf\x8d\xa4\xd6\x44\x27\x66\x4f\x9f\x4c\ +\x66\x74\xc5\xbb\x56\xa4\x75\xda\x6d\x34\xeb\x3d\x37\x00\x64\x23\ +\x03\x4a\x22\x6b\x8a\xb6\x2b\xd2\x18\x8b\xf8\x31\x46\xc8\x3d\xcb\ +\xd5\x98\x24\x94\x1e\x0d\x5a\x04\x4c\x7b\xb9\xe8\xa3\x5c\x49\x30\ +\x3c\x1a\xa2\x52\x09\x11\x14\x35\xf0\xc5\xe8\xf8\x13\x75\x23\x14\ +\xcb\x25\xd6\x3b\xd2\xeb\x15\x50\xf2\x86\x50\x09\xf6\xe3\x33\x6f\ +\xff\x07\x16\x8f\xa3\xa5\x8c\x4a\x09\x67\x89\x57\xed\xb4\x01\x34\ +\x1f\xf5\xc6\x34\xee\x7b\xf2\x77\x71\x70\xee\x9b\x28\x0e\x91\xb7\ +\x56\x99\x71\x77\xd1\xf7\x58\x1e\x56\xcf\x54\xd3\xc8\xa7\x32\x9c\ +\x3c\x65\xca\x3c\xf1\x68\xcc\x1b\x69\xa5\xc3\x29\x2f\x7d\xa6\x2d\ +\xf4\x76\xe1\x07\xbf\xef\x1f\xa3\xe6\x8f\xb8\x3c\xb3\xdf\x0c\x29\ +\x2f\xa9\x8b\xbb\x0f\x98\x48\x53\x6c\xda\x16\x44\xbd\xa2\x95\xbf\ +\x36\x80\x3a\x71\xe8\x41\x9c\x5a\x79\x18\x0f\x3e\xf9\x05\xcc\xce\ +\x3c\x86\xad\xaf\x1b\x41\xe9\xaa\x11\x84\xdd\x02\xba\x4d\xb2\x26\ +\x15\x9a\xaf\xb3\xca\x34\xe0\xd3\xb5\x41\x34\x5b\x55\xa7\x4c\x67\ +\x5e\x79\xbd\xd8\x06\x07\x35\x33\x5d\xd0\x6c\x75\x65\xb0\x06\x82\ +\xba\x2c\xab\x73\x53\x67\xd0\x99\xab\xa1\x53\x2f\x60\xf6\x44\x1f\ +\x8f\x7e\x6b\x19\x71\x23\xc0\xd8\xb6\x2d\xb8\xf6\xda\x37\xe2\xda\ +\xad\xdb\xf1\xbe\xf7\x7f\x0c\x6f\xbe\xed\x56\x14\x2a\x46\xc2\x81\ +\xe4\xfb\x6d\xf2\x4f\xb2\x51\xc4\xe7\x40\x33\xcd\x19\x9f\x16\xf8\ +\xe9\x1d\x0d\xc4\xdb\xf9\x90\x37\xcd\xaa\x8f\x98\x60\xb1\xd3\xef\ +\x2f\xb2\xfc\xe6\xd0\x6b\xcc\xa0\x19\x78\x68\xf3\xfd\x48\xa2\x3a\ +\x96\x67\x8e\xa0\x5d\x6f\xa3\x3f\x3f\x8d\xb3\xb3\x53\xa8\xcf\x26\ +\x68\xb4\x3d\xbc\xfe\x0d\x9f\xc6\x75\xb7\xdd\x83\x6d\x5b\x77\x31\ +\xfa\x9e\xd5\x05\x16\x88\x23\x3e\x88\xcd\xb2\xfd\x42\xc8\x8a\x23\ +\x47\x8e\x1c\x39\x5e\x16\x18\xfc\x80\xad\xe3\x42\x9f\xaa\xcc\xb7\ +\xdc\xce\xff\xf4\xbd\xc0\x0f\xdb\xf9\x81\x1d\x36\x8b\xf4\x72\xec\ +\xb2\xe7\xcd\xfc\x5e\x0c\xf2\xef\x7e\x1c\x52\x1a\x46\x86\x66\xd7\ +\x32\x13\x49\x17\x7f\x7c\xef\x93\xf8\xcb\xff\xe4\x43\xf8\xd1\x1f\ +\xbe\x0a\xef\x7f\xc7\x2e\x34\x16\xd9\xd0\xf9\x6a\xb3\x13\x6b\xaf\ +\x25\x8f\x48\xf9\x21\x22\xae\x99\x10\x01\xb9\x53\x6e\xb0\xc6\x96\ +\xff\x16\x95\xd6\x00\x15\xb1\x3a\xeb\x63\xef\xc4\x9b\xf1\x86\x9b\ +\x3e\x84\xed\x5b\xf7\xdb\xc4\x1d\x4f\x5a\x0c\xb6\x35\xeb\x79\x99\ +\xdd\x53\x18\x63\xce\x68\x30\x7a\x84\xec\x32\xf3\x1a\xc4\xbd\xda\ +\x79\x3a\x90\x47\xa9\x5e\xee\x7f\xe6\x0f\xf1\xdc\xec\xb7\x31\xbb\ +\x7a\x12\x3d\x6d\x1b\x28\xb9\x9a\xce\x49\x4c\xb9\x9a\x06\x29\xd7\ +\x62\x36\x9a\x51\x37\x66\x3b\x4b\xf9\x8b\x02\x55\x42\x99\x27\x8e\ +\xd9\x02\xea\x92\x67\x8b\x5f\x69\x34\x89\x85\x77\xc5\xe3\xe4\x25\ +\xad\xaa\x2a\xa7\x0a\xb5\x5a\x2d\x40\xa9\x2c\x65\x8c\x6f\x93\xae\ +\x2c\x53\x18\x46\x2b\xcb\x92\x84\x32\x44\xab\x8a\x6d\x5b\x6e\xc5\ +\x8f\xbe\xf1\x17\x11\x53\xee\x91\xc8\xb3\xd6\xbc\x5a\x5a\xb2\x07\ +\x07\xc5\xa3\x95\x50\x3a\x7b\x4c\x6e\x53\xd3\xe7\xf0\xe8\xa9\xcf\ +\xe3\xd0\xf2\x17\x51\x0a\x29\x07\x76\xa5\x4c\x73\xf2\x94\xd2\x22\ +\xb9\x44\x66\xf1\x6c\x72\x94\x4d\xf6\x11\x61\xc7\x83\xac\x74\x9e\ +\x58\xe8\x55\xb0\x77\xf2\x6e\xfc\xc0\xad\x7f\xcb\xe4\x05\x6b\xe6\ +\x2d\x46\xb2\xa1\xf4\x0a\x19\x63\x96\x7e\x9a\xd3\x7c\x10\xb9\xd4\ +\x87\xe5\xb3\x56\xf8\xab\x7f\x12\xf8\x6e\x37\x82\xe5\xe6\x3c\x4e\ +\x9f\x7a\x0c\x87\x97\x9e\xc1\xc1\x93\xdf\xc4\xb9\xe5\xc3\x18\xdf\ +\x53\xa0\xbc\x53\x42\x81\x79\xad\xfe\x8b\xce\x23\xf3\x25\xa0\x28\ +\x5e\x96\xbf\x26\x28\x69\x7b\x71\x9d\x01\xab\x08\x7c\xeb\xe0\xf0\ +\xae\xbc\x4e\x54\xd7\xe8\x95\xf6\x41\x11\x28\x16\xda\x7c\x66\x18\ +\x7a\x69\x52\x3c\x5e\x5d\x5c\x60\x90\x0a\x16\x96\x5b\x68\x37\x3a\ +\xa8\x2f\x31\xcd\xc9\x28\x46\x4a\xbb\x30\x3a\x31\x8c\xa1\xd2\x10\ +\xaa\xb5\xed\x18\xa7\x9c\x35\x5a\x99\xa4\xac\x3b\x41\x99\xad\x8d\ +\x24\x68\x63\xb9\x7e\x1a\x9d\xe8\x24\x2b\xc3\x34\x33\x65\x8e\x75\ +\x60\x11\x51\xb3\x8e\x76\xa7\x83\x5e\xc7\x03\x25\x63\xca\x75\xc3\ +\x4e\x96\xf2\xaa\x94\xb9\xbb\x68\x2e\x75\xb1\x75\xcf\xdd\xb8\x7e\ +\xdf\x07\xb1\x77\xcf\x7b\xe9\xa7\x86\x88\x65\xab\x6d\x25\xb3\x3c\ +\x74\x38\xff\x29\x47\x8e\x1c\x2f\x0f\xe4\x6f\x66\x8e\x1c\x57\x0e\ +\xb9\x42\x2d\x47\x8e\xd7\x30\xf2\x97\x3f\xc7\x77\x0f\x17\xab\x5d\ +\x1a\x84\xc8\x4c\x6a\x88\xdc\x8f\x35\x47\x52\xce\xd8\xb3\xb9\xf0\ +\x22\xd8\x51\x65\xef\xd2\x99\x2f\x06\x0b\xe7\x8c\x2e\x02\x3d\x0c\ +\xdc\xb3\xce\xf1\x25\xa1\x30\xb1\x0d\x86\x68\xc0\xc0\x31\xa0\xbb\ +\x06\x10\x34\x94\xc0\xe7\x35\x5a\xeb\xf7\x8d\xd4\x45\x65\x0d\xe7\ +\xb1\x73\x01\x3e\xce\x0b\x70\x31\x6c\xe2\x91\x24\x33\x0e\x8c\xdb\ +\x2e\x70\xc7\xbb\xde\x8f\xc2\xd5\x87\xf1\x33\x9f\x7e\x33\xb6\xed\ +\x5e\x40\xa7\xe1\x56\x3b\x49\xaf\x26\x8d\x99\x65\x91\x06\x7c\xd8\ +\x2b\x37\xa5\x81\xc2\xf7\x44\xc5\x29\xd4\x32\x7a\xb6\x92\x4d\x8a\ +\x2e\x29\x32\xfa\x65\x74\xe6\xc7\x71\xcf\x6d\x1f\xc1\xcd\xd7\xbe\ +\x8d\x9d\xfd\x21\xa3\xe7\x94\x92\x6e\x80\xc5\xc2\xd8\x2f\xb1\x66\ +\xb8\x14\x9c\x47\x29\xa8\xe2\xd8\xc3\xc1\xe9\x07\xf1\x8d\x87\xff\ +\x1d\x9a\x5e\x1d\x71\xbf\xeb\x78\xe1\xbf\x78\xb6\xc1\xa0\xc4\x43\ +\xb3\x19\xa1\xd5\xe8\xa2\xdb\x29\x20\x22\x13\x4e\xf1\x25\x85\x1a\ +\x93\xa1\x15\x6b\xe6\xd9\xa8\xda\xbf\xf2\xdd\xfe\xc8\xa2\x06\x5a\ +\x34\x86\x55\x0a\x7d\x54\xab\x3d\xd4\x46\x03\x54\x2b\x81\xad\x50\ +\x53\xf9\x6a\x8b\xc0\x24\xd2\xca\xbc\xa2\xcd\x66\x56\x22\x4b\x61\ +\x85\x71\x8d\xe1\xe7\xde\xfb\xcf\x58\x47\xcb\x3a\x9a\x8b\xa9\x4d\ +\xe8\xdf\xd5\x67\x15\xab\x9d\x99\x11\x87\x28\x30\xfc\xfc\xd2\x19\ +\xdc\xfb\xdc\x2f\xe3\xe0\xa9\x7b\x31\x34\x3a\x86\x38\xf2\x10\x9a\ +\x52\x4a\x03\x40\x62\x88\x21\x95\xff\x32\x3a\xf6\x4c\x71\xe4\x1e\ +\x9d\xb2\x4a\xef\x84\x06\xeb\xa4\x3c\x12\x5f\xc5\xa4\x8a\xd1\xda\ +\x3e\x7c\xe8\x4d\xff\x48\x29\x49\xfd\x5a\x22\x2f\x81\x74\xb0\x4e\ +\x33\xa8\x13\x9a\x83\x32\x39\x05\x4e\x3e\xf7\x2c\x9e\x5e\xfd\x3a\ +\x9e\x7c\xfa\xb7\xb0\xd8\x3b\x8d\xc9\x03\x23\xc0\x48\x0d\x85\x6e\ +\x8c\x76\xa3\x87\xc0\x2b\x91\x27\xdd\xe9\x59\xe9\xd5\x25\xfe\xc5\ +\x3b\xed\xec\x2c\x18\xe6\x8d\xa7\x81\x2a\xb2\x11\xf1\xb9\xa8\x41\ +\xc6\xa0\x83\xee\xaa\x8f\x93\x27\x16\xb0\x74\xba\x87\xc3\x4f\x2d\ +\xe1\xd4\xf1\x15\xcc\x9d\x8d\xb0\x35\xbc\x06\x6f\xba\xf3\x7d\xb8\ +\xee\x9a\xbd\xb8\xf9\xae\x37\xe1\xed\x6f\xbb\x07\x3b\xb7\x0f\x19\ +\x97\x49\x4f\x07\xe2\x59\x01\xad\x7d\x07\xb2\x55\x62\xeb\xbf\x2c\ +\xeb\xec\x99\x06\x37\x3c\x45\x36\x54\xa7\x65\xd2\xb7\x24\x1d\x8c\ +\x32\xb7\x74\x8b\x52\x1f\x45\xab\x9d\x52\x20\x46\x68\xda\x13\x4b\ +\x9c\x57\x13\x4b\xed\x63\x68\xcd\xaf\xa0\xbe\x3c\x8f\x53\x87\x96\ +\x70\xfd\x6d\x6f\xc4\xde\x03\x37\xda\x60\xa7\xaf\x8a\x32\x50\x4e\ +\x86\x8c\x81\x8d\xf7\xcb\xc1\x0b\xf1\x9b\x23\x47\x8e\x1c\x97\x05\ +\x7d\x58\x5e\x1a\xf4\xc5\xcc\x3e\x67\x1b\x91\x7d\xb2\x06\xdd\xb2\ +\x16\xe8\x62\xb8\x90\x8f\xcb\xe7\xf6\x45\x7e\x2c\xb3\x46\x79\x23\ +\x2c\xe2\x34\x76\xb5\xad\xf4\x37\xe8\xcb\x5c\xd4\xee\xc8\xcc\x76\ +\xcd\xeb\xb7\xf1\xc1\x9f\xff\x79\x9c\x6d\x7f\x15\x7f\xf5\x93\x37\ +\x62\x64\x5b\x01\x71\x93\x61\x28\x93\xaa\x6d\x30\x79\x84\x6d\xa0\ +\x9b\x78\xa4\x96\x5b\xe1\x68\x96\x20\x26\x2a\xb4\xd4\x0a\x35\x19\ +\x24\x9f\x04\x18\x46\xb3\x9e\x60\x0c\xb7\xe3\xad\x77\x7d\x1c\x7b\ +\xb6\x5f\x47\xbf\xf4\xac\xf6\xd4\xda\x69\x41\xfe\x37\xe1\x3d\x43\ +\xca\xfe\xf3\xe0\x98\xe6\x8d\x25\xa9\x06\x94\x66\xad\x32\xfb\xd2\ +\x03\xbf\x82\x33\xed\xa7\xb0\x50\x9f\x22\x33\xda\xda\xd1\xb9\xc5\ +\xda\xe3\x91\x51\x6b\x15\x7e\x97\xf2\x8e\xce\xd3\x8a\x78\x8f\x3a\ +\xbc\xd8\x0e\x4b\xe1\x26\xe5\x93\x25\x46\xb4\x2d\x5f\x24\x9b\xc8\ +\x4c\x5e\x29\x04\xd8\xd6\xd9\xc5\x02\x4a\xe5\x1e\x86\x47\x28\x11\ +\xd6\x02\x94\xab\x3e\xe5\x04\xca\x3b\xd2\xc2\x28\x5f\x74\x59\xbc\ +\x7c\xec\x68\x0b\xc4\x49\xfc\xdc\x07\xff\xb5\xf1\xa1\xf6\x3d\x5b\ +\x65\xaf\x74\xc9\xa4\x58\xd6\x56\xa5\x49\xbe\xf0\x02\xb3\x3f\x72\ +\xe2\x29\x7c\xf3\xf8\x6f\x63\x76\xf1\x11\x54\x47\x42\x3a\xe9\xcc\ +\xd6\xc4\xf8\xb7\x89\x52\xfa\xe3\xdd\x64\x00\x05\x60\x28\x6d\x75\ +\x5e\x60\x78\x83\x59\x2a\x4f\xf8\xeb\x85\x78\xc7\x6d\x3f\x83\xdb\ +\xb7\xbe\x5b\x59\x60\x51\x59\x50\xf3\x26\x7f\xe9\x83\xc5\x3c\x08\ +\x59\xba\x72\x4a\x28\x4f\x49\x1b\xe7\x53\x9e\x12\xa6\xe7\xa6\x71\ +\x7c\xe6\x49\x1c\x5a\xfe\x3a\x1e\x79\xfa\xab\x18\xaa\xd6\x11\x6e\ +\x2f\xa2\x56\x2a\x91\x47\xc9\x22\x5d\xd6\x19\x9d\x19\x4b\xcf\xe4\ +\xb1\x18\xb2\x9c\x55\xd4\x94\xbf\x25\x83\x6b\xa5\x63\x10\xa8\xfc\ +\x94\x0e\xb3\x46\xd0\x8f\x6c\x82\x12\xa5\x4a\xfe\xc5\x58\x5a\x69\ +\xa1\xb7\xdc\xc6\x0a\xe5\xde\xde\x4a\x8c\xf9\xd9\x08\xcf\x9c\x9c\ +\xc7\xd4\xd1\x0e\xae\xde\x79\x2b\xf6\xed\xb9\x0a\xbb\xb7\x5d\x85\ +\xf1\x91\xdd\xb8\xf9\x86\x3b\xb0\xff\xfa\x9b\x50\x09\x6b\xac\x77\ +\x65\x86\x97\x84\xaa\xb7\x3c\xb2\x1d\x09\x58\x4a\x76\xc9\xdc\xc7\ +\x39\x34\x7a\xc7\xd0\xed\x1e\x61\x3d\x98\xc1\xc2\xc2\x11\xb4\xbb\ +\x27\xd1\xe9\xcc\x61\xa1\xb5\x08\x6f\x05\x68\xad\x96\x50\xa9\x6e\ +\x61\xf7\x28\xc0\xe2\x52\x83\xf5\x64\x14\x77\xdc\xf3\x69\x5c\xbb\ +\xfb\x7d\x98\x18\xdb\xcf\x3a\x44\x5e\x03\x95\x2f\xd3\x64\x59\x68\ +\x19\x98\x23\x47\x8e\x97\x19\xf2\x37\x33\x47\x8e\x2b\x87\x5c\xa1\ +\x96\x23\xc7\x6b\x18\xf9\xcb\x9f\xe3\x25\x21\xed\x73\xae\x57\x24\ +\x1a\xd2\x67\x8d\x3f\x67\x50\x37\x70\xbd\xae\x49\x35\xa0\xde\x2c\ +\xff\x6d\xc4\x41\xca\x1b\x37\x30\x61\x61\x07\xa0\x30\x3a\xdb\x28\ +\x42\x1b\xcd\x64\x05\xad\xf6\x0a\xfb\xae\xec\x08\xf2\x8a\xe3\x08\ +\x5d\x76\x4e\x7b\x9a\x81\xdb\x8b\xad\xd3\xef\xce\x0d\x70\x74\xd5\ +\x3d\xb4\x4e\x6b\x9f\xb4\xe9\xe6\xeb\x5c\x82\xc8\x67\x3c\x5a\x4d\ +\xc3\x5e\xaa\x75\xf4\x8a\xec\x4c\x6a\x16\x6d\x19\x01\x3b\xd7\xd5\ +\x62\x0d\xa5\xb0\x84\xd0\xaf\xa2\x5a\xab\xd1\x5d\x3d\xdd\x41\x88\ +\x69\xcd\xd6\x55\x1f\x9f\xc4\xa5\x68\x52\x8f\x97\xa4\x44\xcd\x3a\ +\xf2\x03\x10\xff\xe7\x63\xc0\x5d\x8e\xd9\xe3\xf3\x3d\x5e\x04\x59\ +\xc0\x4d\x02\x19\x3d\x97\xdb\x3d\xe6\xda\xef\xfd\xd6\x7d\xf8\x85\ +\x7f\xf1\x63\x78\xe3\xdb\x77\xe3\x27\xff\xf2\x7e\x2c\xb7\x5b\x0c\ +\x46\x37\x06\xb5\x95\x60\xb1\xd2\xc0\xb4\xf0\xa6\x19\xd2\x0a\xe9\ +\x90\xde\x15\x85\x15\x11\xcb\x48\x4a\x18\xaf\xc0\xce\x76\x1f\xc5\ +\x60\x18\xd1\x4a\x19\xf7\xbc\xee\x07\x71\xe3\xd5\xef\x40\xd1\x1f\ +\x35\xbf\xa6\x28\xb2\x80\xee\xd7\x38\xb4\x9f\xcb\x81\x3a\xf9\xca\ +\x71\x72\xce\xf2\xf9\xea\x77\xfe\x03\x8e\xaf\x3e\x8c\xe5\x78\x36\ +\x73\x4e\x6f\xe4\x9f\xbc\x68\xf6\x74\xab\x11\x3b\x85\x9a\x6d\xf1\ +\x48\x37\xf1\xc0\xc4\xc5\x91\x06\x4c\x34\xa0\x22\x3e\x5c\xdd\x73\ +\x83\x2c\xfa\xe7\x9f\x15\x7f\xc1\x06\x82\x8a\x61\x01\xe5\x72\x1f\ +\xc3\xa3\x3e\x6a\xb5\x10\x41\x89\x8e\x2c\x5b\xcd\x1c\xee\x91\x68\ +\xa0\x43\xd6\x44\x87\x44\xc2\xb0\x8c\x4e\x3b\xc4\x27\xee\xfa\x87\ +\xd8\x36\xbe\xd7\xad\xcc\xe3\x65\x84\x15\x77\x41\x75\x9b\xfe\xe3\ +\x02\x0e\x9d\x7b\x08\xf7\x3d\xfd\x1b\x98\x6e\x3f\x8d\x62\x71\x18\ +\x41\x3f\x44\xc1\x27\x93\xaa\x99\x64\x54\x33\xdb\x4d\x51\x66\xef\ +\x80\xf2\x5f\x3c\xa5\x75\x29\xe5\xd3\x88\xf2\x92\xd9\x0d\x61\x79\ +\x28\x7a\x25\x6c\xab\xde\x8d\x77\xdd\xf5\x57\xcd\x85\x64\x88\x94\ +\x07\xc1\x12\x9b\x3d\xe9\xd7\xd1\x4f\xf8\x67\xd1\xa7\x33\xa8\xcf\ +\x9c\x3d\x8c\xc3\x53\xdf\xc0\x43\x4f\xfe\x3e\xa6\x1b\xcf\x61\xec\ +\x8e\xad\xf4\x1e\x20\xec\x24\x4c\x47\x01\x91\x06\xba\x7c\x5e\xaa\ +\xe3\xa2\xe7\xf5\x6c\xa0\x04\x7a\xc7\x34\xd0\xc6\xfc\x8f\x95\xf1\ +\xa4\xef\xf3\x1d\xac\x94\x4b\x36\xf8\x53\xe8\x44\x98\x5d\xe8\xe1\ +\xf4\xb3\x0d\x2c\x9f\x5b\xc6\xa1\xc3\x3d\x3c\x71\xff\x1c\xfc\x76\ +\x09\x57\xdf\x78\x35\x6e\x7f\xc3\x6d\xb8\x7d\xff\x3b\xf0\xfd\x1f\ +\xfc\x3e\xdc\xf6\xba\x1b\x6c\x85\x19\x7a\x6d\x74\x58\x17\xa5\xbc\ +\xb3\x19\xdb\x6b\x48\x13\x63\xf7\x41\x3c\xff\xd9\x72\x6a\xed\xa3\ +\x23\x86\xf5\xcc\x9b\x8c\xbc\x9b\xde\x4f\xab\xe8\xf8\x3d\x51\x7a\ +\x6c\x10\xc9\xde\x05\x7e\x47\x58\xdf\x2a\x61\x85\x76\x74\xe0\xef\ +\x3a\xdc\xbb\xee\xde\x6b\x5d\x97\x80\x98\xb8\x90\x37\xb9\x09\x97\ +\x41\x26\x47\x8e\x1c\x39\x5e\x10\xb2\x6f\x8f\x7d\xf4\xcc\x86\x70\ +\xdf\x45\xb3\xb6\x67\x61\xfd\x03\xa4\x96\x71\xfd\xc9\xf9\x5c\x0f\ +\x91\xc1\xd9\x6c\xc4\x20\x4d\xe7\xfb\xfc\x30\x0e\xce\xd7\xf9\xee\ +\xeb\xfe\x9c\xaf\x8d\xf1\x0d\xe2\x42\xf6\x97\x80\x11\xe6\x8f\x82\ +\x1b\x79\x1a\x94\x2f\x6b\xc8\x1c\x9c\x29\xa1\xbb\xe5\x45\xea\x25\ +\x0b\x62\x66\xb6\x29\xbd\xa8\x8e\x87\x9f\x3a\x87\xbf\xf4\x77\x3e\ +\x80\xbb\xdf\xb4\x1d\x9f\xf8\xd1\x9d\xe8\x53\x36\xe8\xdb\xa4\x1d\ +\xb6\xca\x6c\xf8\x34\x99\xc3\x85\x54\x7a\x3d\x8b\xce\x5d\x26\x71\ +\x98\x8c\x95\x4d\x56\xd2\x6a\xab\xc0\xab\x60\x75\xa9\x8f\xa1\xfe\ +\x0d\x78\xff\x1b\x3f\x83\x1d\x93\xd7\xb1\x4d\xd5\xd6\x79\x6c\x10\ +\x4d\x8e\x12\x03\xd9\x45\x18\x53\xce\x68\xe6\x8b\x42\x3c\xb0\xdc\ +\x98\x20\x29\x93\xb4\x7d\xe3\xe7\xbe\xfe\x7f\x61\xbe\x77\x02\x2b\ +\xcd\x05\x8a\x37\x52\x00\x3a\x39\xc4\xb6\x74\xd4\x8a\xa9\x7e\x8c\ +\xa8\xa3\xc9\x4c\x94\x9f\xe8\xbf\xdd\x96\x9c\xed\xa7\xee\xf2\xeb\ +\xea\x86\x5b\x9d\x26\x48\xf9\xa3\x78\x94\x7e\x36\xe3\xa1\x67\x72\ +\x54\x6d\xa4\x80\x61\x53\xa8\xe9\x1c\x2e\x4a\x43\x21\xe5\x1e\xca\ +\x38\x05\x0a\x38\xda\x52\x32\x61\x9e\x79\x5d\x1f\xad\xa8\x8a\x5f\ +\xf8\xf0\x2f\x31\xde\x92\x65\xb6\x5b\x41\xa6\x8b\xc4\xcc\xe4\xfe\ +\xf4\xac\x15\x67\xcd\xd6\x2a\x9e\x38\xf6\x4d\xdc\xff\xec\xef\xa0\ +\x37\x42\x79\xc2\x1b\x42\x9f\x32\x83\x4f\xa1\xa6\x57\x90\xc6\x8f\ +\x9c\xd0\xbb\x9b\x7c\xa4\x47\xfb\x75\xfc\xf1\x32\x4a\x05\x29\x3f\ +\x99\x56\xe5\x0b\x65\xa1\x9e\x57\xc6\xa7\xdf\xf1\xaf\x30\xe6\x4f\ +\xb8\x30\x84\x0b\x2d\x5a\xbc\x67\xf5\x26\xbb\xcb\x3e\x2d\x1b\xdb\ +\x06\x9c\x85\xef\xa7\xf2\xd4\xfc\xf2\x34\x4e\x9e\x79\x04\x0f\x9e\ +\xfc\x32\x9e\x3a\xfa\x55\xd4\xf6\x15\x50\x9d\xa8\x62\xa4\xef\x9b\ +\xcc\x9c\xa4\xb2\xa2\x36\x71\x94\x1c\xe8\x8b\x94\xe5\xa1\x93\x43\ +\xb5\x9a\x4f\xa2\x07\x29\x53\x0c\x63\xca\xc9\xb4\x56\xfd\x8d\x84\ +\x94\x59\x82\x12\xea\xf3\x0b\x38\x7e\xa2\x81\xf6\xac\x87\xd9\x53\ +\x3d\x2c\x2d\x26\x38\x74\x74\x0a\xa7\xce\xc5\x08\xba\x21\x6e\xbb\ +\xe5\x66\xca\x53\x77\xe0\x9d\x6f\x79\x2f\xde\x70\xc7\xf7\x61\xd7\ +\x96\x2d\xc6\x97\xd0\x8b\xbb\x4c\xbc\x72\x41\xbd\x22\xa5\xc7\xa5\ +\x41\xff\x96\x0e\x4b\xa2\xfa\x4c\x5a\xf9\x36\x6c\x61\x98\x4b\x88\ +\xd1\xc1\x2a\x1e\xc5\x74\xeb\x31\x74\x9a\x27\x59\x5f\x4f\xa3\xb1\ +\x3a\x83\x85\xd9\x19\x14\x28\xcf\x95\x3b\x01\x96\x17\xda\x58\x58\ +\xf4\x71\xe0\x86\xef\xc3\x3d\x77\xfd\x04\x76\xee\xb9\x49\xe2\xb3\ +\xc9\xd8\xca\xb1\x1c\x39\x72\xbc\x3c\xc1\xd7\x3f\x47\x8e\x1c\x57\ +\x08\xb9\x42\x2d\x47\x8e\xd7\x30\xf2\x97\x3f\xc7\x0b\x86\x2a\x4d\ +\x36\xf2\x40\xb8\x01\x67\x1a\xcc\x9e\xdd\x34\xbb\xeb\x59\x9d\x79\ +\x76\xe0\x3c\x76\xde\x7a\x1a\xa4\x67\xc7\x90\x9d\x37\xa1\xe7\x69\ +\xae\xa5\xbb\x64\x23\x95\x99\xb6\xf8\xeb\xb2\xb3\xdf\xee\x36\xb1\ +\xda\x5e\x66\x87\x7b\x11\x2b\xc9\x1c\xba\x7e\x03\xad\x5e\x1d\x4b\ +\xcb\xe7\xb0\xd8\x9e\xa7\xdf\x2e\xe2\x5e\x84\x28\x6e\x31\xac\x56\ +\x91\xb1\xf7\xa6\x41\x0f\xcd\x7e\x65\xdc\x51\x14\x23\xa6\xc1\x4b\ +\xd8\xa3\x53\x27\x92\x0c\x6a\xc0\x40\xdb\xbb\x68\xc5\x91\xcd\x74\ +\x95\x1e\x80\x7d\x70\x92\x61\xc7\x36\x44\x91\xfc\x04\xec\x5c\x8f\ +\x04\x35\x0c\x95\xc7\xe8\xa7\x8c\xdd\x5b\xf6\x61\xac\x3a\xcc\x0e\ +\x66\x05\xb5\xd2\x38\x26\xb7\x6e\xc7\xf8\xf8\x24\xca\x74\x03\x06\ +\xf7\xa4\x4b\xd1\xeb\x99\xd2\xc2\x1d\x40\xae\xf3\x1a\x34\x30\xaf\ +\x0e\xac\x3a\xb2\x17\x02\x33\x2a\xeb\xa8\xbb\x0c\x94\xe5\x45\x30\ +\xe8\x77\x73\x48\x19\x62\x6b\x99\xe8\x45\x83\x0b\x3f\xf9\x93\x7f\ +\x13\xf7\x1f\xf9\x35\xfc\xf8\x4f\x7f\x08\xd7\xde\xdd\x42\x67\x45\ +\xdb\xdd\x44\xf0\x8a\x89\x3b\x1b\xc3\x06\x57\x1c\x1f\xd6\xd9\x0f\ +\x0a\xae\x83\xad\x3f\xde\xcd\x4c\x67\x5b\xa5\xc5\x07\x1d\x06\xaf\ +\x6d\x80\xca\xc5\x61\xb4\xe6\xd9\x91\xbf\xe6\x03\xb8\xed\x86\xf7\ +\xa0\x5c\xda\x66\x03\x0c\xea\x48\x67\xe9\x1e\x4c\x95\xee\x86\x35\ +\x43\x0a\x39\xea\x46\xda\x6e\x46\x35\x4b\xb5\x57\xc4\x7f\xff\xc2\ +\x3f\xc2\x5c\x69\x0a\x2b\xed\x19\xeb\xa0\x4b\x99\xa3\xb3\xdc\x14\ +\x3e\x91\x12\x35\x29\x60\x55\x67\x43\xb4\x22\x74\xa5\x40\x53\x35\ +\x20\x0d\x5b\xa1\xd6\x95\x1f\x3d\x8b\x32\x19\x62\x1c\x16\x8d\x67\ +\xa9\xb2\xf4\x48\x49\xa2\xea\x11\x06\x6e\x20\x68\x78\xd4\xb3\x73\ +\xd4\xb4\xe5\xa3\x32\x4f\xe7\x7e\x68\x25\x97\x29\xd4\x18\x46\x69\ +\x0b\x83\x32\xda\xac\x33\xdf\x7f\xe0\xef\xe0\xba\x6b\x6f\x23\x7d\ +\x46\x44\x5a\xda\x3e\xb1\x00\x95\x7b\x91\x79\x1a\xe1\xf1\x13\xdf\ +\xc1\xbd\x8f\xff\x47\xd4\x93\x53\xcc\x97\x2d\x96\x27\x76\xae\x18\ +\x79\xd1\xe0\x89\xc5\x4f\xfe\xe0\x8b\x41\xd9\xf3\x4f\xdb\xfd\xa4\ +\x7c\x19\xaf\x32\xeb\x4e\x77\x65\xa9\x72\x53\x97\xce\xd9\x78\xfd\ +\xb5\x3f\x87\x1b\xf6\xbe\x85\xf9\x44\x12\xe9\x4a\x2c\x07\x85\x90\ +\x79\xf0\x4e\xde\x34\x8b\x3a\xdd\x47\xf1\xec\x99\x53\x38\xb5\xf4\ +\x2c\x9e\x3e\xf2\xab\x78\xf6\xe4\x37\x30\x76\xcb\x18\x62\x6f\x18\ +\xfd\xd5\x18\x61\x91\x79\xac\xb3\x39\x14\xb7\x94\x69\xf4\xaf\x95\ +\x69\xcc\x6e\xe6\x05\xe9\x31\xae\x16\x93\x1c\xf7\x7d\xc6\xdb\x81\ +\x17\x27\x28\x57\x62\xde\x87\xd1\x58\x6e\x63\x6e\x2a\x42\xe3\x5c\ +\x1d\xa7\x4e\x24\x38\xfc\xe4\x32\x4e\x1c\xad\x63\xe7\x8e\x5b\x70\ +\xc3\xb5\x77\xe1\xc6\x3d\xfb\xf1\xf6\x77\xbe\x15\x9f\xfe\x91\xf7\ +\x39\x25\x1a\xf9\x53\x2d\xd1\x76\x52\xb6\x4d\x90\x22\x5b\x4b\xc7\ +\xe5\xe0\xf9\x7e\x4d\x9c\x25\x21\xe7\xc2\x5f\xfd\x93\xae\xac\x95\ +\x26\x7b\x10\xd2\xef\x97\xde\x13\xa5\x52\xe1\x12\xbd\x07\xe4\x48\ +\xf5\x50\xb3\xde\x6d\x90\xcb\x56\xc5\x2a\x4c\x1a\xee\x72\x20\xd2\ +\x2f\xc0\x7b\x8e\x1c\x39\x72\xbc\x70\xb8\x6f\xd8\x46\xc8\xd6\x7d\ +\xd5\x36\x80\xdf\x35\xb7\xc6\xd9\xb9\xb9\xe6\x5c\x72\x8a\x0d\xb1\ +\x9b\xdd\xfa\xa7\x4b\x6d\x91\x6b\x87\x9c\x3c\xe1\xec\xec\xb2\x0f\ +\xb5\xf3\x65\xdf\x53\x7b\x1e\xe4\xc5\x71\x60\x26\xfb\xde\x92\x7e\ +\xf6\x5d\x4e\x9d\xdc\x6a\x24\xb6\x66\xb2\xe3\x9f\xdb\x3a\x30\xe3\ +\x44\x5e\xd6\xe3\x70\xbf\x1b\x91\xc5\xc9\xbb\xd1\x36\x4b\x22\x33\ +\xa4\x6e\xcf\x83\xa3\xbf\x16\x2e\x33\xeb\x51\xb1\x66\x56\x42\x1a\ +\x5c\x37\xa9\x1f\x3c\xb6\xfb\x9f\xfd\xbb\x7f\x0f\x5f\x38\xf3\x2b\ +\xf8\xa1\xf7\x5f\x87\x77\xbd\x65\x3b\x1a\x0d\x4a\x7c\x6c\x37\xd4\ +\xb6\x48\x76\x91\x8c\x20\x45\x95\xa5\x4b\x69\x97\x0c\xa2\xb0\x14\ +\x00\xdc\x8a\x30\x5a\xa9\xdd\xb7\xb8\xd9\xbe\x68\x95\xf8\x6a\x08\ +\xaf\x75\x00\xef\x7b\xeb\x67\xb0\x67\xf2\x5a\x93\xc7\x9c\x32\x22\ +\xcb\x05\x95\x5a\xca\x8c\x30\xc8\xa3\x20\xa7\x01\x3b\x15\x87\xf2\ +\x5b\x79\xea\x68\xf4\x50\x6f\xb5\xf1\x07\xdf\xf8\x17\x58\xea\x9d\ +\xa5\x6c\xbd\xe4\xf8\xa2\x1f\xf1\xae\x8a\x20\x79\x4e\x32\x75\x42\ +\x39\x4a\x13\xd3\x62\xca\xd0\x9d\x4e\x44\x39\x5a\x13\x67\x58\x67\ +\xc8\xbb\x6b\xff\x19\x01\xd3\xa5\x38\xd6\x14\x6b\xfc\x31\x85\x1a\ +\xdb\xca\x52\xa5\x87\xea\x70\xc1\xce\x50\x1b\x1a\x0e\x28\xb3\x79\ +\x08\x43\xa7\x70\x92\xff\x24\x91\xbc\xee\xa1\xb7\xda\xc7\x6a\xb7\ +\x88\x5f\xf8\xf0\xbf\xa1\xcc\x31\x66\x44\x24\x1f\x29\x19\xfa\xf5\ +\xf8\x67\x5b\x33\x9a\x4c\x05\x9c\x9e\x3d\x81\xa7\x4e\xfc\x31\x1e\ +\x3b\xf4\x65\xd4\x26\x03\xf2\xe6\xa1\x18\xd2\xb7\x15\x98\x65\xa8\ +\xf9\x13\x1d\x97\xf7\xb4\x73\x95\xd6\xbc\x28\xff\xe5\x4f\x4a\x3d\ +\x79\xd7\x44\xa8\x22\x65\xf8\x72\x75\x2b\x3e\x75\xf7\xff\xc9\x3e\ +\x8a\x62\x74\x71\x1b\x19\xfb\x15\xed\xf4\xc6\x47\xdd\x1c\x15\x29\ +\x52\xb5\x6a\xdd\xad\x48\x9b\x5d\x98\xc6\xa9\x99\x27\xf0\xc4\xd9\ +\x2f\xe2\x51\xf2\xb7\x6d\xb7\x8f\xfe\x70\x0d\x01\xfb\x1a\xbd\xd8\ +\x37\x79\x4a\x32\x9a\xaf\x55\x67\xe4\x4d\xdb\x3a\x8a\x98\xc4\x36\ +\x9f\xe6\x80\x71\xdb\x3b\x46\xb9\x5b\xb2\x6f\xb1\xd8\x47\x50\x2e\ +\x33\x3f\xba\x76\x3e\x70\x63\x76\x09\xc7\x4f\x02\x67\x9e\x5e\xc4\ +\xa9\x93\x2d\xcc\x4f\x03\x73\x8b\xec\x13\xb5\x0a\xb8\x7d\xd7\xed\ +\xb8\xe1\xae\x5b\x31\x31\xb1\x0f\xef\xbe\xf3\x6d\xf8\xc1\x8f\xbc\ +\xd3\x78\x12\x32\x85\x9f\xc5\xa9\x02\x92\x1d\x2f\xa5\x51\x5f\x01\ +\x87\x34\x8d\x4c\xa0\xc9\x96\x34\x25\x68\x31\x6c\x97\xf7\x36\xef\ +\xea\xc3\x54\xc9\x7f\x89\x6e\x21\x6d\xce\x50\x9a\x9c\xc5\xec\xca\ +\x63\x98\x63\xba\x0b\xa7\x4f\xa3\x17\x46\x98\x3f\x35\x83\xb9\xd9\ +\x29\xca\xb4\xb7\xe2\xed\xef\xfd\x09\xec\xdd\x7b\x07\xe5\xe8\x90\ +\xe9\x53\x78\x52\x77\x85\x93\x23\x47\x8e\x97\x11\xf2\xb7\x32\x47\ +\x8e\x2b\x87\x5c\xa1\x96\x23\xc7\x6b\x18\xf9\xcb\x9f\xe3\x92\x50\ +\x25\xc9\x24\x2f\x9a\x5d\xa7\x33\x1d\xfc\x50\xe7\x95\xd6\x99\xb3\ +\x0e\xfe\x66\x37\x9d\x9e\x34\x6c\xc3\x0e\x9c\x46\x6d\x4c\x51\xa0\ +\x8e\x95\x06\x06\xec\xf8\x6d\xac\xa0\xc3\xce\xe2\x02\x56\x96\xa7\ +\xd1\xee\x2e\xa1\xd3\x3f\x8b\xfa\xd2\x59\xac\xac\x9e\xc1\x52\x6b\ +\x01\x8d\xc6\x12\x56\x9b\xb3\xe8\xc6\x0d\xf4\x18\x54\x4a\x39\xaf\ +\x5a\x46\xc8\xcb\x2b\x15\xd8\xe9\x64\xa7\x95\x76\x21\x3b\xc8\xda\ +\x76\x47\xfd\x35\xcd\x3a\xd5\xcc\x5a\x29\x5d\xa2\xa4\x6b\x03\xf5\ +\xd2\xa9\x15\x7a\x1a\x52\x20\xb7\x09\x3d\xd1\x8f\xa7\xe7\x3e\xf9\ +\xe6\x33\xd9\xa5\x99\x9d\x48\x0d\x28\x30\x6c\xb7\x13\xd9\x0c\xda\ +\xf6\x6a\xd7\x06\x35\x0a\xbd\x12\xaa\xc9\x30\x6a\xc5\xed\xd8\xb5\ +\x75\x3f\xb6\x8d\x4d\x62\xac\x30\x86\x91\xd2\x04\x6a\xd5\x61\x54\ +\xab\xe3\x18\xaa\x8c\x63\x64\x64\x12\xe3\xa3\x93\x4c\xa3\x69\x0a\ +\xc8\x70\x1f\x91\x06\x46\x78\xd7\xac\xd8\x6c\x1b\x3f\xcb\xb3\xf5\ +\xdc\x4a\xef\x44\x66\xad\xbb\x61\xcd\x90\xe2\x3c\xc7\xcb\x84\x06\ +\x4c\xfa\x38\x79\x78\x16\x1f\xfb\xf4\xfb\xb1\xf3\xf6\x18\x7f\xf9\ +\x27\xef\xc6\xf8\x8e\x02\x96\xe7\x74\x28\x55\x3b\x1d\x50\x61\xfa\ +\x35\x0b\x99\x7e\x35\xac\xa0\xad\x0a\xc5\xbf\x71\x67\x03\x62\x02\ +\xf3\x8a\x7e\x95\x57\x6e\x40\x85\x65\xc9\x7c\xd4\x6a\xac\x7e\xab\ +\x82\x6b\x27\xdf\x83\x5b\x6e\x7a\x0f\xc6\x47\xf6\x98\x6f\x0d\x68\ +\xb8\x41\x33\x85\xcf\x68\x88\xa3\xec\x67\x23\x5c\x7c\xb6\xe2\xcb\ +\xf2\x0e\xf8\xad\x3f\xfe\x5f\xb1\x52\x9e\xc6\x6a\x67\x29\xed\xec\ +\xbb\xba\xe6\x56\xa7\x49\xa1\x06\xd4\x57\xba\x88\x3b\x2c\x37\x9a\ +\x6d\x45\x1a\x19\xd4\x36\x8f\x71\x57\x87\xe9\x8b\x0f\x23\x6e\x2c\ +\x58\xa7\x9e\x97\xee\x8a\x4b\x63\x0c\x32\x87\x41\x01\xe5\x62\x1f\ +\xc3\xe3\xa9\x42\x4d\x67\x7f\x29\x88\x14\x5f\x24\x10\x14\x8b\xe6\ +\xcf\x14\x6a\x61\xd1\xce\xf1\x7a\xf3\xce\xcf\xe2\xf5\xaf\x7b\x2b\ +\x7d\x69\x76\x6f\x44\xf7\x12\xcd\x01\xce\x9d\x3d\x8a\x27\x8e\xfd\ +\x19\x1e\x3a\xf9\x05\xd4\x46\x80\x88\x7c\x14\x99\x9f\x6e\x8b\x47\ +\x97\x0a\x3b\x6c\x9e\xbe\xdd\x7c\x60\xf1\xa1\x01\x8f\x34\xbe\x94\ +\x37\xbb\x68\x36\x03\xf3\xd2\xce\xd4\x20\x2f\x25\x29\x6b\xa3\x1a\ +\x3e\xfa\xbe\x7f\x4d\xde\x74\x1e\x8b\xc2\x68\x50\xd4\xe5\x8d\x0b\ +\x2d\xa8\xa6\xf1\x8f\x15\x5c\xe7\xdc\x09\xad\x68\x19\x4f\x3d\xf9\ +\x15\x1c\x7c\xf6\xbf\xe3\x99\xf9\x6f\xc3\xbf\xb6\x06\xcf\x1f\x42\ +\x21\x29\x33\x0a\xd5\xf7\xd8\x66\x7a\xdb\x42\x51\x45\x47\x9e\x3d\ +\x9f\x65\xd1\x61\x7e\xc7\x4c\x69\xd4\x47\x8b\x79\x9d\x74\x42\xba\ +\x75\xdd\x36\x99\xc5\x32\xba\x2b\x11\x4e\x3f\xe7\xe3\xd4\xc1\x55\ +\xcc\x9e\x6a\xe3\xd8\xd1\x08\xad\xd5\x36\x76\xee\x99\xc0\x5d\x77\ +\xbd\x0b\x6f\x7f\xeb\x1b\xf1\x89\x77\x7f\x04\xbb\xaf\xd7\xfb\xa1\ +\xf7\x2d\x46\xa7\xdd\xe5\x3b\xac\x41\x23\x97\x66\x63\x5e\x3f\x32\ +\xbb\x07\x07\x4b\x54\x96\xa6\x14\x59\xa1\x3e\xcf\x9a\x16\x56\xe7\ +\x36\x43\x66\xef\xde\xc0\x94\x70\x7a\x57\x58\xfd\x28\xf7\x52\x7e\ +\x44\xc7\xbc\x64\x91\x6c\x88\xec\x42\x18\x24\x3b\x78\xdf\x88\x0b\ +\xd9\x0b\x17\x73\xcb\x91\x23\xc7\x6b\x0b\x9b\x7c\x0f\x64\x65\xbf\ +\xa9\x9b\xbe\x5b\xd9\x97\x4d\x2d\x8b\x49\x3c\x6c\x97\x6c\x50\x9d\ +\x66\x9b\x73\x21\x5f\x6c\xb7\x3d\x0d\x92\x1b\x3d\x6b\x00\x53\x1a\ +\xb2\x53\xab\x24\xc8\x51\x96\x6c\x9f\x4c\x40\xb2\xc6\xd5\xce\xba\ +\x92\x00\xa0\x36\xda\x56\x34\xd1\x9f\x9d\x1b\xc6\xc6\xcb\x57\x53\ +\x46\x73\xa8\xd5\x55\x36\x03\x83\x97\x56\x33\x4b\xd3\x64\x71\x5d\ +\x04\x8c\x2a\xd1\x64\x2b\xb6\x31\xb6\xa2\x4a\x7f\x94\x19\x75\x4e\ +\xa6\x7b\x16\x06\x89\x38\xb3\xb1\x3d\x70\x3f\x1f\x83\xae\x02\xcd\ +\x6b\xc2\xc0\xa5\xb1\x16\x4a\xc1\x74\x67\x58\xb5\xff\x67\xce\xac\ +\xe2\xdd\x7f\xfd\x1d\xa8\x4c\xcc\xe0\xe7\x3e\xf1\x36\x8c\xef\xd2\ +\x79\x9e\x6a\xfb\xd9\xd6\x27\x94\xa9\x94\x65\xa9\x0c\x62\xe7\xc9\ +\xca\x81\xcf\xca\x5b\x45\x9f\x5d\xcc\x44\x33\x78\xbe\xe4\xc5\x00\ +\xed\xe5\x12\x46\xfc\x6b\xf0\xf6\x3b\x7f\x18\x7b\x77\xbe\x0e\x31\ +\xe5\x57\x4d\x32\x51\x99\xba\xb4\xe9\xd7\x99\x0c\x46\xf8\x02\x58\ +\x6b\xbb\x14\x96\xf5\x80\xe5\x77\x66\xfe\x34\xfe\xfc\xb1\xff\x82\ +\xc5\xce\x19\x34\x3b\xab\x6b\x5e\x24\x2b\xdb\x84\x2a\x96\xa7\xce\ +\x8b\x55\x19\x6b\x32\x5a\x42\x01\xac\xdb\x89\x29\x57\xd1\x2c\xb9\ +\x8a\x82\xb4\xe4\x2e\xab\x32\xe2\x83\x81\xb3\x6d\x1a\x4d\x66\xa1\ +\x95\xce\x4e\x2d\x96\x7a\xa8\x0e\x15\x28\x1b\xfb\x18\x1d\x2b\x9a\ +\xf2\x48\x5b\x3e\xda\x56\x86\xcc\x03\xad\xf8\xd7\x59\xb4\x49\xa3\ +\x87\xa5\x46\x1f\x3f\xfb\xc1\x7f\x83\xad\xa3\xdb\x49\x4e\xee\xaa\ +\x44\x96\x2d\xbc\x68\xe3\x85\x94\xe3\xba\x78\xe6\xf8\xd7\xf1\x9d\ +\xa3\x7f\x84\xc5\xf6\x11\x94\x2a\x15\x93\xc9\x3d\xd5\x17\x55\x3a\ +\xab\xdf\x9a\x54\x24\x99\x3e\x71\x8a\x33\x55\x63\xb5\xe5\xae\xd2\ +\x1b\x7f\x2a\x17\x29\xaf\x64\x2f\xa8\x8c\x4a\xe1\x10\xf6\xed\x78\ +\x33\xde\x7d\xcd\x67\x59\xff\xe4\xcf\x5c\xcc\x5d\x46\x53\x4a\x9a\ +\x49\x16\xce\x5e\x32\xb2\xad\x24\x23\x56\xd9\x4f\x79\xee\xe8\xb7\ +\xf1\xc8\xf1\x2f\xdb\xc4\xa4\x91\x5d\x4c\xeb\x10\x79\xeb\x57\xc8\ +\xb7\x9b\xe8\xa7\x95\x66\xa2\x60\x2b\xf9\xa4\x58\xd3\xee\x18\xc6\ +\x22\x6d\x49\x5f\xec\x68\x67\x08\xc9\x77\xfd\x30\xa2\x1c\x5a\x86\ +\x9f\x44\x98\x99\xed\x61\xe6\xd8\x02\x4e\x1e\xed\xe0\xc4\x91\x0e\ +\xce\x3d\xd7\xc0\xf2\xaa\x87\x12\x65\xd5\xe2\x68\x19\xb7\xbf\xee\ +\x2e\xec\xd9\xb7\x0f\x1f\x7f\xe3\x27\xf0\xe1\x0f\xdc\xa3\x7d\xcb\ +\x8d\xa7\x66\x73\x15\x7e\x10\x32\xcf\xb5\x0d\xa6\x15\x16\xe1\x78\ +\xcf\x90\x7d\x27\xf4\x2b\xe7\xec\x29\xbb\xeb\xbd\x56\xbd\x91\xab\ +\xfa\x72\x32\x3b\x05\x5b\x87\xd9\x10\x92\x77\xed\x44\x50\x94\xba\ +\x0d\x11\xff\x80\x79\x2c\x9f\xfb\x26\xce\x9d\x6b\xc1\x63\x9d\x99\ +\x3d\xb7\x88\x6b\x6e\xf8\x20\xf6\x5f\x7b\x23\xd3\xe3\xde\x0d\x2b\ +\x03\x8b\x2d\x47\x8e\x1c\x2f\x17\xe4\x6f\x64\x8e\x1c\x57\x0e\xb9\ +\x42\x2d\x47\x8e\xd7\x30\xf2\x97\x3f\xc7\xf3\x60\x3d\xad\xe7\xd7\ +\x0c\xd7\x52\xb0\x7b\x45\x37\x2f\xed\x98\xda\x30\x8e\x29\x14\x34\ +\x80\xd3\x63\xc7\xb4\xc4\x4e\xa2\xdb\x38\x4d\x97\xba\x5b\x11\xba\ +\x58\x5c\x3d\x87\x76\x7d\x09\x2b\x4d\x75\xe8\xa7\xd1\x58\x3e\x81\ +\xe6\xf4\x31\x2c\x2d\x3c\x67\x8a\xb5\xa8\xc7\x4e\xbe\xce\x12\xa8\ +\x94\xd9\x4d\xf3\xd9\xb9\x54\xb8\xc0\xce\xa8\xea\xc4\x8c\x23\x2c\ +\x23\x66\xa7\x31\x2c\x44\x08\xc3\x1e\xc2\x32\x3b\xe7\xd6\x79\x26\ +\x07\x64\x4c\x03\x18\xe4\xc0\xf8\x96\x39\xf0\x03\xeb\xd0\xca\x2a\ +\x11\xaf\x89\x5c\x35\x38\x20\x2d\x0b\xc3\xb1\x63\xac\x6e\xa3\x1d\ +\x04\x6f\x7d\x47\x0d\x0a\xb0\xb3\xab\xed\xe6\x7a\xec\x98\xdb\x80\ +\x0e\x69\x69\x8b\x1a\x86\x4f\xda\x05\x34\x1a\x4d\x34\x96\xea\xe8\ +\xc5\x21\xfa\xed\x32\x3b\xf6\x01\x6a\xe1\x38\xb6\x0c\x6f\xc3\xe4\ +\xb6\xbd\xb8\x7a\xdf\x2d\xd8\x12\x4c\x62\x62\xcb\x76\xec\xda\x7e\ +\x23\x4a\x45\x6d\x19\xe9\x14\x6c\xbd\x38\x62\xec\xa4\xaf\x71\x2b\ +\xfe\xb9\xec\x73\xdd\x75\xcb\xee\xb5\xbb\x72\xf4\x02\x70\x05\x70\ +\x41\x64\xae\xea\xbb\x6a\xc0\xc0\xcd\x4a\x55\xe2\x3c\xfc\xb3\x7f\ +\xf2\x6f\xf0\xaf\x7e\xfb\x6f\xe3\xdd\x1f\xbc\x13\x9f\xfc\xa9\xd7\ +\xa3\xd5\x59\x40\xdc\x96\x52\x4a\xe9\x73\x03\x2a\x71\xac\x95\x4c\ +\xf2\xae\xb3\x2f\x06\xa2\xe3\x5d\x03\x00\x3a\x6b\xc3\x0d\x8a\xac\ +\x0f\xa2\xf4\x99\x97\x85\x7e\x09\xdd\x95\x22\xf6\x6d\xbd\x13\x37\ +\x5d\xf3\x7d\x38\xb0\xf7\x76\x06\x0a\x99\xe6\x98\x01\xc9\x07\xc3\ +\x64\xe9\x15\x44\x56\xa6\xec\xbe\x06\x46\xa8\x01\x1a\x29\x36\x9b\ +\xed\x0e\x7e\xef\xab\xff\x1b\x56\xc2\xd3\x34\xb7\x11\xfa\x9a\xdd\ +\xdc\xb3\x34\xc5\x91\x66\x85\x4b\x71\x0a\xd4\x97\xb5\xf5\x67\x82\ +\x28\x72\xca\x3e\xad\x5a\xd3\x00\x52\x1c\x89\xdf\x94\x6e\x06\xf1\ +\xac\x31\x06\x32\xe3\x06\x83\xc8\x1e\xef\xa2\x5d\x2a\xf5\x30\x34\ +\xea\x61\x64\x24\x64\x1d\xd0\xe0\x87\x06\x3e\x5c\x69\xa8\x8e\xd8\ +\x0a\x2a\xe5\x83\x56\xab\xc5\x01\xf6\x8c\xbc\x0b\x1f\x7e\xfd\x5f\ +\x22\x31\x97\xc7\xcb\x8d\x08\x47\x4e\x3e\x8a\x07\x0f\xfe\x11\x8e\ +\x4f\x3d\x82\x2d\x93\xc3\x4c\x8f\x66\xe8\x2a\x1e\x96\x81\xe5\x17\ +\x69\xf2\x2e\x85\x9a\x11\x4b\x33\x40\xf9\x63\xdb\xfe\xd8\x8a\x30\ +\xb9\x29\xbf\x53\x7e\x75\x27\x7c\xc6\xc1\xd0\xa8\x26\x55\xf2\x79\ +\x15\xde\xfd\x86\x5f\x74\x0a\x50\xa5\xc7\x55\x60\xf3\x27\x92\xb6\ +\x22\x8d\x26\x29\xdc\x34\x50\xda\x61\xfe\x3d\xfa\xe8\x7d\x98\x2a\ +\xfc\x39\x1e\xf9\xf6\xef\x00\x7b\x8a\xe8\x6f\x19\x47\x52\x17\x0f\ +\x4c\xaf\x17\xd3\xb7\x5b\xa9\xa0\x41\x1f\xcf\x93\x12\x2e\x46\xc4\ +\xba\xd1\x6e\xf7\xb0\x52\x67\xfd\x97\x7b\xc2\xf7\xbc\xa7\x6d\x31\ +\x03\x16\x6b\x0f\xed\x06\x30\x7b\x22\xc1\xd1\x47\xe6\x31\x7f\xaa\ +\x8e\xe6\x4a\x05\xb3\xe7\x9a\xd8\xb1\xe3\x5a\xbc\xfe\x8d\xef\xc4\ +\xbb\xdf\xfc\x7a\xfc\xc2\x2f\xfc\x65\x65\x9a\xe3\x8a\x05\xa6\x7a\ +\xe9\x7b\x0c\x6f\x63\x52\x69\x06\xa8\xa2\x29\x4f\xf4\x6c\x15\x25\ +\xb5\x7f\x41\xd0\xdb\x9d\x85\xbd\x08\x8c\x6c\x46\x7f\xdd\xaf\x0d\ +\x27\xb9\x4a\x6a\x30\x76\x0c\x99\x61\xdd\xed\x25\x61\x23\x7b\x9b\ +\x91\xbd\x50\x12\xae\x10\x0b\x39\x72\xe4\x78\x25\xe0\xf9\x1f\x02\ +\xfb\xc6\xc9\x5a\xdf\x82\xd4\xd9\x26\x54\xa8\x09\x48\xdb\x7a\xb5\ +\x2d\x5a\xf1\xc2\x16\x45\x96\x29\xa4\x78\x70\x83\xe2\x0a\xd8\x47\ +\x8b\xad\x44\x07\x4b\xdd\x39\x86\xea\xa1\x4b\xf9\xa4\x13\xb5\xd1\ +\xe9\xd2\x5e\x5b\xff\xc5\x5d\xb4\xf9\xfd\xef\x76\x3a\x88\x3a\x6d\ +\xb4\xe8\xd6\x66\x9b\x1c\xb3\x6d\xd5\xc4\x05\xad\x66\x92\xae\x4d\ +\x93\x99\xa4\x08\x93\xc4\xa7\x76\xb5\x18\xb0\xcd\xd3\xea\x5e\xfe\ +\x15\x43\xad\xfa\x2f\xb2\x3d\xd5\x29\x95\x25\x54\x4b\x15\xba\x57\ +\x11\x16\x2b\x28\xfb\x43\x6c\x47\x6a\x18\x1d\x1a\x46\xa5\x54\x43\ +\xe8\xad\xcb\x4a\x19\xb4\x15\xaf\x53\x4a\xa9\xed\x94\x8d\xd2\xe6\ +\xd2\xe8\xbe\xf6\x6a\x25\x2f\xf6\xb1\xdc\xe8\xb6\xc1\xee\x42\x41\ +\x53\xac\x39\x33\x98\xc9\x45\x69\x7b\xfc\x1f\x7f\xf5\xbf\xe2\x9f\ +\xff\xfa\xff\x1b\xd7\xdd\x31\x8a\x1f\xfb\xc4\x3e\xca\xa1\x65\x72\ +\x4e\xb9\x24\x6e\x3b\xe5\x94\xc9\x8d\xcc\x55\xe6\x8b\xf8\x76\xcf\ +\x24\xb0\xd6\xbe\x88\x6f\xa6\x4b\xa2\x28\xff\x4c\xd6\xe8\x95\x99\ +\xcf\x1e\x8a\x9d\xfd\xf8\xbe\x37\xfc\x28\x0e\xec\xbe\x95\x32\x4e\ +\xcc\xb6\xd8\xa5\x55\xfe\x5d\x7a\x85\x8c\x0e\x31\x98\x06\xb3\xce\ +\x2c\xac\x42\xd0\x4a\x72\x51\x8c\x47\x9e\xbd\x0f\x8f\x9d\xfa\x13\ +\x2c\xb6\xa7\x59\xc6\x6d\xf2\x45\xaa\xf4\x6a\xbb\x3a\x48\x36\xe6\ +\xa5\xc9\x64\x5a\xf1\xae\x49\x56\x9a\x60\xd6\x69\x53\x72\x17\x8f\ +\x94\xf7\x68\x25\xb1\x98\x04\x55\xce\xba\xa9\x4c\x74\xf5\x78\xa9\ +\x5c\x9c\xc2\xaa\x58\xea\xa3\x5a\xd3\x96\x8f\x3e\xe5\x14\xca\xeb\ +\x61\xc1\x76\x16\xd0\x2a\x2c\x4d\xaa\xd3\xa4\x2c\xe9\xe5\x7a\x94\ +\xe1\x16\x96\x4a\xf8\xc4\x9b\xff\x0e\xae\xdd\x77\x87\xf1\x2a\x9e\ +\x2d\xad\x26\x07\x96\xb1\x5c\x5f\xc4\x63\xcf\xfe\x31\xbe\x79\xf0\ +\xf7\x51\xac\x76\xe1\x17\x87\x53\x79\x47\x15\x8f\xf1\x5a\x76\x28\ +\xd1\x94\x59\xc8\x8b\xe5\xa5\x98\x93\x22\x8d\x75\xd0\x29\xfb\xc4\ +\x2b\x3d\x92\xa6\xfc\x28\x88\xfc\x69\xfb\xed\x56\xe2\xe1\x07\xee\ +\xfa\x45\xec\x1b\xbf\xc1\x76\xb6\x90\xcc\xeb\x78\x10\x5c\x3a\x6d\ +\xc7\x04\xda\xb9\x1b\xed\x28\x0b\x76\x3b\x5d\x3c\x7b\xfc\x61\x3c\ +\x39\xfd\x47\xf8\xf6\x23\x7f\x8c\xad\xbb\x18\x76\x7c\x88\x1d\x15\ +\xca\xa8\xb1\xe3\xc3\xc9\xf9\xe4\x4b\x0a\x34\x93\x01\x95\x91\xe4\ +\x27\x30\x55\x1a\x2f\xf5\x5f\xa4\xba\x92\x0c\x27\x26\xf9\x0e\xf3\ +\x5d\x9b\x9e\xee\xe3\xec\xe1\x55\x1c\x7e\x72\x0e\xa7\x9e\x5b\x62\ +\x19\xf4\xb0\xb0\x00\x94\xfc\x2a\xee\xb9\xfd\x2d\xb8\xea\xba\x1b\ +\x71\xd3\xb5\x37\xe2\xc7\x3e\xfe\x51\xec\x3b\xb0\x57\x8c\x5a\xd9\ +\xe8\x7d\xf5\x99\x39\xb6\x25\xb7\x71\xc0\xb8\x2c\x26\xc1\xa5\xc8\ +\xfd\x3a\x38\xb3\xf3\x21\xbf\x0e\xba\xbb\x30\x2c\x71\xb3\x97\x4d\ +\x66\xeb\xe4\x4c\xc9\x8a\xea\x33\xb0\xef\xd0\xef\x22\x62\x9d\x2e\ +\xa0\xc6\xb2\x1f\xb2\xbc\xd5\x1e\x08\xcb\xcd\x93\x58\x9e\x69\x60\ +\xcf\x55\xd7\xd1\xcd\x6d\xb1\x69\x65\x90\x23\x47\x8e\x97\x15\xb2\ +\x2f\x44\x8e\x1c\x39\x5e\x3a\x72\x85\x5a\x8e\x1c\xaf\x61\xe4\x2f\ +\x7f\x8e\x0c\xae\x73\xa5\x9f\xac\x0b\xe5\x6a\x87\xc6\x01\xdc\x93\ +\xba\x81\xec\x80\xb3\x33\xe5\xba\x8d\x7d\x53\x36\x69\xfb\xc6\xa2\ +\x3a\x88\xf4\xd3\x44\x03\x9d\xd6\x12\xea\x8b\xb3\x68\xb4\xa6\x11\ +\x75\xa7\xd0\x6e\xcd\xa0\x31\x77\x18\x8b\xd3\x47\xd0\xaa\xcf\x60\ +\x65\x65\xca\xfc\x6a\xf0\xbe\x34\x34\xc2\xe8\x44\xcd\x47\xcc\x9e\ +\xb6\x8e\xc9\xd6\x41\xe8\x11\x3b\x9b\x9a\x2d\xdb\xa3\x9f\x5e\x21\ +\x44\xaf\x52\xb4\x8e\x59\xaf\x10\x59\x87\xb9\x1f\xf6\x51\xaa\x96\ +\x50\x2c\x17\x6d\x6b\x91\x20\x18\xd8\x56\x46\x6c\xb3\xff\xa6\xfe\ +\xbf\x06\x06\x34\xfb\xb4\xa7\x25\x4f\xea\x74\x93\xa6\x94\x40\xfa\ +\x53\x3a\x4d\x29\xa1\x99\xd0\x52\x06\x9a\x02\x4e\x03\x46\xa4\x4f\ +\xb3\xe2\x67\xf4\xe4\x73\x7d\xbb\x96\xc0\x2f\xf1\x52\x44\xec\x56\ +\xb2\x03\x1d\xb1\xc3\x1b\x77\x13\x76\x7c\x63\x78\xcd\x22\x7a\x49\ +\x88\x2d\xd5\x7d\xb8\xfe\xea\x5b\xb0\x67\x68\x27\x79\xdc\x8e\xad\ +\x63\x57\x61\xdf\xde\x9b\xd8\xe9\x74\x5b\xc4\x68\xd5\x90\x06\x15\ +\xac\x6b\x2d\xa5\x0d\xe9\x2a\x07\x48\xd4\xb9\x9b\x39\x85\x0d\xc2\ +\x0c\x3c\x13\xd9\x93\xf3\xbd\x8e\x8c\x82\x73\xe7\xaf\x0d\x20\xb0\ +\x7c\x94\x8f\x5d\x0f\x1f\xfa\xa1\x0f\xe3\xd8\xea\xb7\xf1\xd1\x1f\ +\x78\x2b\xde\xfd\x91\x71\xb4\x5a\x3a\x6c\xbe\x8f\x6e\xd4\x54\x56\ +\x20\x89\x22\xcb\x0f\x1b\xaf\x70\x23\x17\x0e\x22\xc5\x9b\xe5\x15\ +\x69\xda\xaa\xb6\x82\xce\x17\xd3\x88\x91\xc7\x7c\x60\x32\x7c\xc6\ +\xd3\x0c\x30\xe4\xed\xc3\x3d\xb7\x7e\x04\x3b\xb6\xde\x84\xf1\x09\ +\xb7\x5a\x4d\xd0\x96\x88\x96\xbd\x69\x65\xca\xaa\x98\x6e\xe2\xd1\ +\xf2\xc2\x66\x1c\xab\xac\x22\x9c\x99\x3e\x87\x2f\x3c\xf1\x2f\xb1\ +\x12\xcf\xa9\x46\xac\x0d\xe2\x08\x76\x48\x3e\xcb\x53\x0a\x1f\x1d\ +\xec\xdf\x61\xfe\xdb\x8c\x79\xad\x3c\x24\x09\xcd\x54\xd6\x0a\x35\ +\xa5\x4d\x79\xa0\xc0\x36\x94\xa2\xe0\x66\xf6\xcd\xda\x92\xc8\xbb\ +\x53\xa8\xc1\x56\x94\x8d\x8e\x84\x76\xc4\x98\x06\x0a\x05\xdb\x9e\ +\x51\xf7\x62\xd1\x06\x2c\xa4\x80\x52\xde\x6c\xa9\xde\x86\x1f\xbe\ +\xfb\xc7\xd1\x64\xbc\xa7\x4f\x9e\xc2\x77\x9e\xfe\x2a\x9e\x3a\xf5\ +\xa7\x28\x56\xfa\x18\x19\xae\xb2\x1a\xf9\x08\x75\x0e\x46\x3a\xe0\ +\x64\x51\x93\x96\x1b\x58\x72\xf1\xa6\x45\xc4\x4b\x75\xc0\x63\xfd\ +\x50\x8c\x2e\x3f\xcc\x5d\x6e\xf4\xa3\x3c\xd7\x20\x52\xc8\xbb\x9f\ +\xd4\x70\xf5\x81\xf7\xe0\xce\x6b\x3e\x69\x34\x45\x84\x5e\xec\xae\ +\x00\xaa\xb7\xca\x62\x3f\x1d\x9c\x3c\xfc\xec\xd7\xf1\xec\xdc\x37\ +\xf0\xf5\xef\xfc\x2e\x30\xde\x47\xb8\x6f\x02\x61\xa7\x68\x5b\x3a\ +\xd9\x24\x79\x15\x36\x0b\x43\x5b\xb3\x2a\x9f\xb5\x95\x91\xe5\x6f\ +\xd2\xc1\x6a\x33\xe1\xbb\xcb\x37\x45\x33\xab\x99\xf4\x90\xbc\x57\ +\xaa\x64\x32\x0a\xb1\x70\x2e\xc1\xc9\xe7\x16\xb1\x78\x62\x15\xa7\ +\x0f\xae\xf0\x5d\x07\xb6\x0c\xef\xc2\xdb\xdf\xfe\x5e\xbc\xe9\x2d\ +\xdf\x87\x9f\xfd\xd4\x47\x51\xdb\x36\x6e\xef\x86\xea\x4b\x10\x6a\ +\x96\xba\xd2\xe5\xb8\x4e\xd9\x5d\x87\x2a\x84\xdc\xb2\x8a\xb1\x09\ +\x36\x73\x91\x9d\x43\xe6\xba\x6e\x73\x51\x9c\x47\x28\x0b\xb3\x59\ +\xbc\x9b\xf3\x72\x49\x0c\xb2\x93\x91\xb8\x18\x6b\x83\xd1\x6c\xe6\ +\xef\x45\xb2\x91\x23\x47\x8e\x57\x1a\xce\xff\x00\xac\x7f\x4a\x5c\ +\x5b\xa4\x2f\xb5\xad\x98\xd2\xc5\xe7\xc4\x93\xfa\xca\xb5\x31\x6c\ +\xfe\xa0\x8d\xb0\x57\x30\x8f\xa5\x33\x27\xb1\xb2\x7c\x8e\xf2\x4f\ +\x9b\x32\xd5\x32\x56\xa3\x19\x74\x7a\x0d\xb4\xf9\xd7\xef\xaf\xa2\ +\xdb\x6f\x62\xa9\x73\xda\xbe\xfb\x5a\x9d\xdc\x65\x43\xde\x8d\xba\ +\xb4\x67\x5b\xcd\xab\x2d\x65\x4b\xc7\x3d\x27\xb1\x56\x62\x15\x68\ +\x76\x6d\x8b\xe4\x27\xe9\x08\x12\x9a\xd5\x46\xc5\xfa\x6e\x53\x3e\ +\x88\xd4\x8e\xd1\x5e\x3b\x00\x68\x65\xbe\x56\x37\xf9\x09\xfd\xf0\ +\x2a\x06\x6c\x64\x3b\x01\x4a\xa8\xa1\xc2\xdf\x2d\xc3\x93\x98\xa8\ +\x6d\xc3\xe8\xf0\x56\x8c\x15\x86\x30\x54\x1d\x41\xb5\x3a\x89\x52\ +\x38\x82\x5d\x3b\xae\xc2\xf8\xb8\x14\x06\xd9\x87\x8f\x69\xd5\x44\ +\x19\x9a\x6c\xc5\xbf\x59\x67\x39\x72\x21\x5c\xcc\x8d\xb0\xb6\x86\ +\x58\x8f\x22\xcb\x68\x33\x66\x66\x03\xcd\xca\x61\x37\x89\xa5\x80\ +\x8f\xff\xc4\x27\xf1\xe4\xd2\x57\xf1\x97\x7e\xe8\x56\xdc\x73\xf7\ +\x56\x44\x0d\xe6\x48\x20\xe5\x14\xf3\x4a\x13\x8f\x18\x24\x8a\x34\ +\x81\x84\x06\xe6\x85\xec\x14\x5d\x26\x0b\x88\x9a\xb8\x37\x99\x88\ +\xed\xa3\x93\x01\xa4\xac\xa1\x2c\xdd\xd9\x8e\xf7\xde\xf3\x57\x70\ +\xd5\xee\xdb\x28\x93\xc6\xd0\x96\xe4\x2a\x69\xc7\x8e\x93\x4b\xd6\ +\x99\x1e\x44\xc6\xac\xee\xee\x22\xc7\x66\xfa\xda\xa3\xbf\x87\x67\ +\xcf\xde\x87\x95\xce\x1c\xdb\xf6\xee\x9a\x57\xb7\xd2\x9f\xb2\x93\ +\x14\x6a\x6d\x29\x48\xe8\xc4\x67\xd9\x4b\xa1\xc6\x24\xb0\xec\x59\ +\x9e\x4c\xb7\x78\x55\x7e\x4b\xc9\xa9\xe8\xb3\xb6\x9c\x49\xb2\xf2\ +\xb0\xc9\x49\x61\x0f\xb5\x61\x0f\x43\x35\x9f\x77\x1f\x95\x0a\x6b\ +\x0b\x05\x66\xab\x9f\x6e\x16\x8d\xf5\x1f\xa2\x36\x58\x37\x8b\x78\ +\xdf\x1d\x3f\x8e\xbb\x6f\x78\x1f\x6d\xad\x64\xd3\x2b\xc4\xec\xf4\ +\x69\xfc\xd9\xa3\xbf\x8a\x67\xce\x7e\x0d\xe3\x3b\x86\x28\xcb\xb1\ +\xfe\x50\x08\xb1\xb3\xd2\x14\x2d\xf9\xd4\x99\x6b\x92\x3b\x2d\xff\ +\x68\xa5\xa0\xe2\x45\x3f\xaa\x93\x6b\xab\xe7\x1c\xb3\x66\x27\x39\ +\x46\xe9\xa8\xf0\x2f\xee\x0d\xe3\xaf\xbc\xe7\x5f\xd9\x3b\x23\x28\ +\xaf\xd6\xc0\x34\x66\xca\x34\xe5\x4d\xe0\xbb\x55\xfe\x27\x8f\x3d\ +\x89\xc7\xcf\xfc\x09\xbe\xf6\xc4\xef\xa1\x5b\x6d\x60\x64\xdb\x08\ +\x4a\xfd\x32\xe5\x1c\xf6\x5c\x52\xa5\x99\xe4\x50\x45\xa9\x9d\x0e\ +\x34\xf1\xc8\x56\x5b\x8a\x31\x29\xd9\x54\x87\x59\xa6\xa5\x12\xf3\ +\x86\xee\xdd\x6e\x8c\xe5\xa5\x26\x4e\x9e\xec\x63\xf9\x68\x0b\x47\ +\x0f\xcf\x61\xf6\x2c\x30\x3f\xb7\xc2\x77\xcf\xc7\xc8\xc8\x08\xde\ +\xf0\xd6\x7b\x70\x60\xeb\x6d\xf8\xd4\x47\x3e\x82\x77\xbd\xed\xcd\ +\x40\xc9\x29\xcd\x1a\xad\x26\x8a\x21\xe5\x52\x0a\x8e\x6b\x65\x21\ +\x96\x65\xb4\x32\x72\xdf\x07\x67\x21\xb8\x27\xc1\xd5\xc5\xcc\x66\ +\x2d\x90\x3d\xad\x63\xf0\x39\x53\xb0\xe9\x9e\xd1\x4b\x05\x56\xda\ +\x49\xc6\xe3\x27\x04\x7d\x9f\xef\xb7\xad\xba\xb4\x9c\x63\x3c\xea\ +\x33\x58\xa1\x98\x5d\x8e\x1c\x39\x5e\x3e\xc8\xdf\xca\x1c\x39\xae\ +\x1c\x72\x85\x5a\x8e\x1c\xaf\x61\xe4\x2f\xff\x6b\x14\xd6\x87\xb2\ +\x1f\x7b\x34\x0c\x36\x05\xb4\x96\xf2\xc3\xf5\xd3\xd4\x51\xd4\xa5\ +\x41\x78\xad\x5e\xd2\x7a\x19\xcd\x42\xd6\xd9\x67\x09\x1a\xcd\x3a\ +\xe6\x67\x8f\x60\xb5\x7d\x06\xad\xe5\x67\xd0\x9d\x3f\x8d\xe5\x99\ +\xe3\x58\x5a\x3e\x8b\x38\x5a\x66\x67\xb8\x83\x62\x25\x64\x47\x5e\ +\xdb\xbf\x78\xb6\x9d\x5f\x97\x1d\x4d\xcd\x6e\xec\xb1\x13\xee\x93\ +\x9e\x1f\x14\x19\x25\x29\xb2\xc7\xdb\xef\x79\xe8\xb2\xe3\xa9\x38\ +\xa3\xb8\x49\xff\x05\x34\xe2\x06\x3a\x68\xdb\x4a\xa4\x88\x9d\xea\ +\x1e\x3b\xb8\x1d\x9b\xf9\xc9\xce\x71\xad\x8a\x4a\xb5\xc6\x8b\x34\ +\x82\x02\x86\x46\x2a\x88\xd8\x09\xf6\x19\x57\x42\x4e\xd5\xd9\x94\ +\x02\x4b\x03\x04\x5a\xb9\xa6\x19\xb9\x1a\xfc\x11\x3f\x05\x1a\x6d\ +\xa0\x40\x1d\x3f\x72\x60\xc3\x0f\xcc\x17\x1d\x82\xae\xdc\xb0\xed\ +\x7b\xe4\x9f\x34\x4c\x11\x66\xab\x6c\xc8\x1b\x5d\x35\x50\xa0\xf3\ +\x21\x44\x5f\xe7\x8a\xd9\xb6\x2e\x5d\x1f\xcd\xd5\x36\x96\x67\x57\ +\xb1\xba\xc2\xbe\x2f\x3b\xee\xfb\xb7\xdd\x8a\x3b\x6e\x7f\x3b\xb6\ +\x8f\x4a\xb1\x76\x35\x76\x6c\xbd\xd6\xa5\x35\x85\x0e\x56\x17\x9f\ +\x6e\x5b\x1c\xd9\xb8\x74\xb9\xd2\x90\xc5\x40\xb9\x6c\x84\x9c\x32\ +\xbf\xfc\x31\xdf\xf6\xe3\x1c\xa4\x8c\x91\x83\xfe\x1e\x7c\xf0\x49\ +\xfc\xe8\x4f\xfd\x30\x76\xdf\x14\xe3\x07\x7f\xf0\x75\xb8\xe3\x8d\ +\xfb\xb0\xb4\xd4\x60\x9e\x76\x99\x37\x0d\x0b\xa3\xb3\x34\xec\xac\ +\x8c\x94\xae\x2e\xdd\xb2\x5f\xd9\x3b\xd2\xcc\x2b\xe5\x0b\xed\x6d\ +\x25\xa0\xb6\x78\xa2\x7d\xd8\xab\xc2\x8f\x86\xb0\x7d\xec\x16\xdc\ +\x76\xf3\x3b\x50\x2d\x4d\xa0\x5a\x1e\x61\xb9\x8f\x9a\x52\xea\x92\ +\x50\xa7\xbc\xdb\xc5\x97\x1e\xfc\x2d\x1c\x5a\xfd\x3a\x56\xbb\x75\ +\x46\x21\xfa\xcc\x5b\x29\x64\xe8\x45\x83\x74\x51\x14\xa1\xd3\xe9\ +\xa2\xdd\xe8\xd9\xf9\x69\xb1\x78\x88\x3d\x1b\xf8\x51\x47\x3e\xee\ +\x68\x85\x9a\x1b\x50\x71\xc3\x0a\x2e\x2c\x33\x84\x76\x2e\x9f\x75\ +\x69\x10\x28\x60\x3d\x2a\x15\xfb\xa8\x0e\xf7\x31\x3a\x26\xe5\xac\ +\xe7\x06\x6a\x18\x4c\x66\x29\x24\xb5\xed\xa3\x06\x2f\x34\x88\x50\ +\x2a\x05\x08\x7a\xe3\xb8\xe9\xc0\x87\xb0\x30\x3d\x8b\xa7\x9f\xbc\ +\x0f\x67\xe7\x1e\x45\x65\x4b\xd9\x06\x0f\x02\x5f\xf5\x82\xe5\xab\ +\xc1\x14\x46\xa2\x6d\x7e\x2c\x2e\xba\x69\x10\x48\xe9\x70\xe5\x22\ +\xae\xf4\x23\x9e\xc4\x87\x06\x1e\x1c\xcf\x32\x09\x72\xa7\x77\xe3\ +\x3e\x20\x3d\xcf\x9b\xc0\x1b\x6e\xfe\x2b\xb8\x6a\xfb\x3d\x4c\x65\ +\x42\x7f\x2a\x03\x86\x21\xb3\x36\x88\xe9\x91\x47\xf2\x7d\xf4\xb9\ +\xa7\x71\xa6\xfd\x08\x1e\x7e\xf8\xbf\x60\x0a\x67\x10\x8f\x8d\xc1\ +\x8f\x2b\xac\x9f\x7d\x24\x41\xc4\xf7\x98\x14\x49\x58\x33\xd3\x35\ +\x4b\x3d\x8e\x35\xa0\x1a\x33\x5f\x63\x74\xba\x3d\xb4\x99\x7f\x4a\ +\x77\xb1\x18\xa1\x12\xb0\xae\xeb\xcf\x2f\xa1\xb1\x94\x60\xf6\x64\ +\x13\x73\x47\x56\x71\xea\x28\xdf\xfb\x73\x31\xae\x3a\x70\x13\x6e\ +\xbd\xe9\x8d\x78\xc7\x5b\xee\xc2\x2f\xfc\xad\xcf\xa6\x5c\xb3\x38\ +\x48\xc7\xb7\xed\x33\xd3\xfc\x37\xa3\x12\xc3\x67\xbb\xaf\x39\xb9\ +\xfb\xfa\xcd\x30\x60\x6d\xd0\xf3\x0b\xc1\x20\xe9\x75\x5a\xe7\x3f\ +\x09\x6b\x4f\x83\x9e\x0d\x6b\x86\x17\x86\x8c\x74\x16\x7c\xf0\x79\ +\x3d\xda\xf3\xf1\x22\xa3\xca\x91\x23\xc7\x2b\x19\xfc\x20\xa4\xdf\ +\x1c\xfb\x34\xac\x7d\x2b\xd2\x0f\x02\x9f\xb5\xba\x45\xdf\x62\x9b\ +\xcc\xa4\x76\x42\xe7\x74\x32\x80\xda\x08\x49\x22\x2d\x5e\xd3\x0b\ +\xa7\x70\x66\xfa\x10\x66\xe6\x9e\x46\xbb\xb7\x8a\xa8\x7d\x0c\xa7\ +\x9e\xba\x0f\xe7\x66\x9f\x43\xab\xa7\xed\x9d\xe9\xaf\x03\x53\x98\ +\xb0\x89\x64\x7b\x46\x2b\x36\x51\xbb\xae\xa2\x99\xed\x95\x26\x27\ +\x95\x2b\x65\x84\x65\xb5\x5d\x01\xca\x35\x6d\xc7\xcb\xb6\x87\xf2\ +\x54\x64\x2b\xcd\x03\xb6\x09\x52\xc4\xb8\x76\xc1\xf7\x29\xf7\x50\ +\xfe\xd1\x76\xda\xb6\xea\x86\xb2\x54\xc2\x36\x48\xab\xd3\xb4\x01\ +\x80\xb6\x83\xd6\x25\x39\xc7\x56\xbf\x2b\x52\xfa\xe9\x44\xbc\x91\ +\x09\x4d\x70\x4a\x28\x8f\x35\x96\xda\x6c\xab\x7b\x58\xad\x77\x10\ +\xb5\x7c\xd4\x2a\x63\x94\x17\xc6\x70\xf5\x81\xdb\x70\xdd\x55\x77\ +\x63\xa4\x3a\x86\xf1\xe1\x6d\xd8\xb5\xf3\x5a\x8c\x97\x77\x31\xa5\ +\x59\xcb\xc8\x94\x93\xbe\xad\xf2\xd1\x36\x93\x96\x13\x72\x53\x7b\ +\xa8\x09\x52\xeb\x59\xe8\xa0\x07\x5a\xda\xfd\x42\xa0\x7b\xda\x3e\ +\x39\x19\xc7\x59\x89\x8e\x86\x49\x32\x65\x58\xb7\x17\xe1\x81\x6f\ +\x3d\x89\x1f\xff\xc5\x1f\xc5\xf8\x35\x11\x3e\xf5\xc1\xdb\x71\xcd\ +\xed\x43\xe8\xb2\x20\x7a\x89\xb6\x0c\x97\x72\x48\x66\xca\xaf\x12\ +\x76\x95\x17\x0c\xaf\xed\xb7\xad\xdd\x57\x1c\xa4\x94\xc9\xd7\xf4\ +\xc6\xbc\x12\xdf\xcc\x2d\xad\x30\x8a\x8b\xe8\xd7\x77\xe2\xbd\x6f\ +\xfd\x0c\xae\xde\x75\xab\xc9\x57\x92\xb9\xd7\x18\x4a\xf3\x60\x80\ +\xc5\x01\x90\x4f\xfb\xd5\x5d\xdb\x0e\x52\x56\xef\x75\xf0\x85\xfb\ +\x7f\x19\x27\xe6\x9f\xb6\xf3\xd3\x62\xe5\x95\x12\xc8\x7f\x95\xa5\ +\x26\xd0\x48\x21\x22\x85\x9a\x56\xa8\xd9\x79\x69\x8c\xb3\xd3\xa5\ +\x8c\xc5\x36\x5c\xe2\xae\xad\xfc\x67\x18\x29\x52\x2d\x56\xf7\x4f\ +\xfe\x5d\x1a\xa4\xbc\xd2\x6a\xac\x80\xb2\x42\x6d\x08\xa8\x56\xb5\ +\x7d\x76\xc0\x7b\x90\xca\x42\x94\x0d\x29\x2b\x2b\x1e\x6d\xb5\x1e\ +\x33\x9f\x96\x56\x8b\x78\xfb\x0d\x9f\xc2\xdb\x6f\xfe\x28\x9d\xdd\ +\xca\x49\x4a\xef\x98\x59\x38\x89\xcf\x7f\xeb\xdf\xe1\xd8\xf2\xfd\ +\xa8\xaa\x1e\x16\x4a\x36\xd9\x48\x67\xba\xda\xce\x0b\x52\x20\x89\ +\xa0\xca\x44\xf6\x0c\x29\xac\x9d\x41\x9b\xda\xe8\xd7\x64\x27\xe3\ +\x51\xb6\xe2\x5e\x71\x30\x4d\xad\x32\x6e\xb9\xe1\x07\x70\xcf\x81\ +\x1f\x66\x71\xc8\xa7\xde\x28\xe5\xa4\x7e\xe5\x87\x76\xec\xef\x20\ +\x51\x3d\x2f\x60\x71\x69\x16\xcf\x9c\xfe\x0a\x1e\x7e\xfa\xb7\x71\ +\x62\xf9\x49\x78\x5b\x46\xe0\x77\xd9\xdf\x60\x04\xea\x33\x78\xbe\ +\x93\xf5\x04\x95\xa1\x29\x25\x59\xb0\xb6\xd3\x85\xe4\x2c\x39\xb1\ +\xdf\x52\xf5\xba\x08\x4a\x3e\xe5\x6e\xa0\x3e\xdd\xc4\xcc\x74\x17\ +\xa7\x4f\xae\x62\xee\x64\x1f\xf3\xd3\x0d\xcc\xce\xad\x92\x40\x01\ +\xd7\xed\x78\x23\xee\xbc\xe3\x0e\xdc\x7c\xcb\xf5\xf8\xb9\x4f\x7e\ +\x06\x93\xbb\xb6\x1a\x6d\xc5\xa5\xc9\x50\xb6\x4d\xa4\xe8\x1a\xaf\ +\x0e\x2a\x1d\x2b\x57\x59\x58\x3d\x36\xcb\xf5\xfb\x20\xd6\x64\x30\ +\xdd\x07\x9c\xe5\x77\x0d\x99\xad\x2c\x55\x3f\x05\xc5\x98\xb9\x28\ +\x60\x16\xc0\xe5\xaf\x5b\xf9\xe8\xea\xb2\x53\xa4\x65\x38\x8f\x70\ +\x8e\x1c\x39\x5e\x06\xc8\xdf\xca\x1c\x39\xae\x1c\x72\x85\x5a\x8e\ +\x1c\xaf\x61\xe4\x2f\xff\x6b\x10\x2a\xf4\x4c\x92\xda\xf0\xf9\x57\ +\xa7\xd0\x6c\xd8\x29\xb2\xd5\x2e\xec\x48\x25\x5e\x60\x9d\x25\x0d\ +\x5b\x48\x59\xd1\x8d\x97\xb0\xbc\x78\x0e\x8d\xe5\x29\x44\x4d\xde\ +\xa7\x0e\x62\xfa\xec\x53\x58\x9c\x3f\x81\x46\xbd\x01\xaf\x18\x20\ +\x28\x33\x02\xd2\x2a\x56\xab\x28\xe9\xd0\xf1\x52\x09\xa5\x90\x9d\ +\xe3\x4a\x19\xe5\xea\x18\xd8\xad\x64\xe7\x9b\x3d\xef\xb0\x84\xa2\ +\x57\x66\x27\xb2\x8c\xd0\xaf\xb2\x7f\xa6\xce\x68\x07\x71\xcc\xf0\ +\xd6\xa9\x5f\xe1\x55\x47\x3b\x5a\xc5\x6a\x73\x01\xcb\xf5\x79\xd4\ +\x9b\x2b\x68\xb6\x17\xb0\xb2\x5a\x47\x63\x75\x1e\x8d\x0e\x9f\x3b\ +\xe4\x95\x0c\x96\x86\x81\x91\xb1\xad\x18\x99\x98\x60\x6f\x3a\x41\ +\x75\xb4\x86\xa8\xdf\xb1\x5d\xe7\x2a\xe5\x10\x45\x5e\x9d\x06\xd0\ +\x6d\x31\x9d\xec\x9c\x2b\xf9\xda\xd6\x51\x83\x1b\x52\x68\xb1\xfb\ +\x6c\x03\x49\x9a\x9d\xaa\x6e\x7b\x2f\xcd\xa7\xac\xb3\x9c\x0d\x7c\ +\x28\x93\x6c\xdb\x41\xed\xeb\x43\x68\xa0\x44\x5d\x5b\xe5\x92\x56\ +\xf2\x68\xc0\xa9\xc8\x2b\x6e\xf7\xd1\x6e\xb4\xb1\x34\xd7\x84\x1f\ +\x0f\xe1\x96\xeb\xde\x84\xeb\xf6\xbc\x1e\xa3\xc5\x9d\x18\x9f\xd8\ +\x89\x9d\x3b\xf7\xa3\x5a\x1d\x35\x1a\xcf\x03\xa3\xd2\x20\x8c\xf2\ +\xd1\xfa\xa8\xae\x64\x1c\xc4\x82\x73\x32\x7e\x8d\x3b\x75\x66\x69\ +\xe1\x38\x4d\xed\xd2\x5f\x37\x20\x54\xc0\x67\xff\xd6\xff\x88\x3f\ +\x7f\xf0\xd7\xb0\x77\x6f\x11\x7f\xf3\x7f\xfc\x30\xcb\xaa\x03\x1d\ +\x12\xbf\xda\xa8\x33\x4f\x3a\xf4\x1e\x5b\x87\x5d\x71\xdb\x6a\x32\ +\xa5\x8a\x37\xa5\xcf\xea\x06\xf9\xd1\xc0\x92\xa0\x41\x32\xa5\x58\ +\x5b\x2e\xaa\xae\x30\xd5\xbc\x27\xa8\x04\x15\x14\xa2\x10\xa5\xc2\ +\x04\xc6\x8a\xbb\x31\x5a\x9b\x44\xb1\xb2\x05\xd5\xca\x38\xf3\xa5\ +\xc4\x72\x0e\xa0\x73\x28\xa4\x44\xd5\x41\xf4\x3a\x47\x44\x0a\xb1\ +\x5e\xab\x08\x7f\x78\x08\x7b\x76\xec\xc5\xbf\xfe\xf5\xbf\x83\xc2\ +\xe8\x34\xea\x91\x06\xf1\x14\x0f\x59\x53\xbc\xaa\x93\x4c\x77\xab\ +\xd3\x41\xa7\x19\xa1\xd5\x66\xfd\x24\x1f\x1a\x94\x92\x82\xcf\x0d\ +\xfc\xf4\x10\x75\xa4\x60\xd2\xe5\x3a\xf9\x8e\x67\xdd\xdd\x08\x8c\ +\xa5\x27\xcd\xb7\x20\x90\x42\x0d\xa6\x50\x1b\x19\x2b\x42\xbb\x3a\ +\x6a\x70\x48\x90\x32\x4c\x03\x4e\x41\x29\x60\xfd\x61\x7d\x65\xb8\ +\x2a\xeb\xf2\xea\x5c\x17\x8d\x6e\x95\xf5\x71\x86\xbe\xea\x76\x66\ +\x85\x74\xce\xa6\x34\x63\x50\x1b\xc8\xa1\x41\x79\xa7\x95\x6d\x1a\ +\x54\xb1\x38\xc9\x83\x06\x59\xa4\xb0\xb5\x74\x99\x47\xb9\xc9\x8f\ +\x2e\xa5\xd5\xe5\xb3\x38\x70\xf5\x4a\x67\xa8\xf9\x08\x7a\x7c\x57\ +\x8a\x5b\xf0\xbe\x37\xff\x3d\x54\x4a\x23\x74\x4d\x98\xe3\x9a\x61\ +\xae\x2d\x14\x9d\xb2\xf2\xe4\xb1\xc7\x70\xe8\xc8\x37\x70\xe4\xcc\ +\xd7\x70\x68\xea\x08\x4a\xd7\x0e\x23\x4c\x86\xd1\x6c\x36\x90\x14\ +\xf8\x5e\x31\xba\x38\x52\x3d\x51\xbd\x67\x3e\x75\x63\x74\x59\xde\ +\x52\x40\x27\x31\xcb\x52\x15\xde\xf2\x4a\xab\xca\x12\x14\xa5\xcc\ +\x8c\xa5\x68\x65\x1d\x99\x69\x63\xf1\x68\x03\xd3\x47\x3a\xb6\xb5\ +\xe3\xe8\xf8\x6e\xdc\x75\xfb\xdb\xf0\x43\x9f\xfe\x21\x7c\xe2\x83\ +\xef\x43\x58\x93\x22\x3b\x41\xd4\xee\xa2\x5c\x61\xd9\x1a\x1d\xd2\ +\xb3\x7a\x2b\xba\x32\x3a\xb3\x1b\x96\x19\x70\x5b\xbb\x9f\x8f\x41\ +\x9b\x41\x1f\x9b\xfb\xbe\x34\xd6\xc2\xe9\x87\x0f\xae\x8a\xcb\x76\ +\x00\x6b\x1e\x06\xf0\x42\x22\xdc\x40\x2e\x8b\xeb\x79\xf7\x8d\xb8\ +\x5c\xfa\x39\x72\xe4\x78\xe5\x23\xfd\x06\xd8\x2a\x66\x7e\x88\xec\ +\xcb\xcf\x6f\x80\xbe\xf7\x6a\xcb\xd4\x34\xe8\x3b\xd9\x67\x5b\x29\ +\x55\x40\x86\x46\x54\xc7\xcc\xec\x59\x2c\x2d\x9d\x45\xb7\x33\x8f\ +\xd6\xe2\x19\x2c\xcd\x3f\x87\xa3\xcf\x7c\x05\x33\x67\x9f\xb3\x76\ +\x59\x6d\x50\x5c\x01\xe5\x1d\xd7\x16\x75\xd9\xec\xe9\x3c\x59\x3b\ +\x3e\x8d\x57\x9f\x6d\x5e\x9f\x0f\x9a\x7c\x24\xc5\x58\x33\xd2\xde\ +\x00\x6c\x47\x0b\x5d\x93\x21\xd8\x28\xa2\x44\x59\xa9\x5a\x63\xdb\ +\xcc\x76\x2d\xa0\x2c\x33\xa2\xf3\xa1\x28\xdf\x88\x4f\xc9\x4c\x6a\ +\x3f\x24\x13\xa8\x4d\xb5\x55\x3c\xbc\x4b\xf1\x23\x77\xb7\x4a\xcb\ +\x73\xca\x34\xc9\x07\xfc\xd3\x07\x4e\x2b\xbe\xd5\xb6\x14\x29\xf7\ +\x59\x3b\xc3\x74\xcb\x46\xb2\x86\xfc\xe8\x7c\x52\x29\x71\x16\x66\ +\x9b\x68\xb7\xd9\xee\xf6\x6a\xd8\x32\xb2\x17\xd7\x1d\xb8\x1b\xdb\ +\xb7\x5c\x8b\xed\xb5\x71\x8c\xd7\x0e\x60\xcf\xde\x03\x94\xb3\xc6\ +\x95\x1d\x0a\x6d\xbc\x88\x96\xbe\xe7\xae\xdd\x21\x17\x4a\xc7\x06\ +\xb8\x2c\xcf\x32\xde\xdd\xc4\x80\x19\xb3\xe7\xcd\x60\xa4\x94\x32\ +\x37\xd1\x8a\xcd\x34\xfe\xee\x3f\xf9\x45\xfc\xde\x9f\xfd\x47\x6c\ +\xdd\x5d\xc6\x67\x7f\xee\x0e\x4c\x4c\x8c\xa0\xdb\xd6\xb6\x89\x94\ +\x27\x99\x7e\x35\x2b\xda\x4a\x53\x93\x56\x2c\x7d\x52\x54\x89\x94\ +\xf1\x47\x6a\xda\x19\x81\x65\x65\xf1\x8b\x7d\xa6\xc1\xf2\x8f\xe5\ +\xd2\x4f\x8a\x28\xc7\x3b\xf1\xc6\xdb\x3e\x86\x9b\xae\x7e\x23\xeb\ +\x47\x99\x69\x53\x9e\x4a\x10\xcc\xd2\xa5\xbb\x2e\xe3\x88\x97\xe4\ +\x75\x81\xf5\x87\xc2\x88\x68\x06\x2c\xf4\x46\x61\x0e\x9f\xff\xce\ +\x7f\xc6\xd9\x85\x13\x94\x93\x1b\xf4\x43\xf9\xce\xe2\x94\x92\x4f\ +\xf2\x03\xe5\x00\xf2\xd9\x6d\x51\x9e\x25\x01\x4d\x38\x93\xbd\x26\ +\xd7\x68\xb2\x92\x65\x2d\xcb\x45\x31\x2b\x9e\x4c\x8e\x51\x5e\x68\ +\x97\x09\x4b\x0f\x65\x2c\xe5\x7b\x10\xf6\x51\xab\x15\xd8\xfe\x53\ +\x0e\x1f\x09\x6d\x85\x9a\x56\x63\x69\xb2\x4f\xe8\xab\x6e\x28\x5e\ +\xa6\xa2\x1f\xa3\xd9\xf0\x70\xe7\x0d\x9f\xc4\xbb\x6e\xf8\x20\xc3\ +\xbb\x1d\x26\x9e\x3e\xf8\x04\xbe\xfe\xc4\x6f\x60\x21\x39\x61\x8a\ +\x38\x53\xde\x5a\x5d\x4d\xe0\x49\x71\x2b\x0e\x54\xb9\xd3\xb4\xba\ +\x67\xf2\xc3\xcb\xac\x69\x63\xf2\x1e\xe3\x53\xf1\x3b\x5e\x75\x4f\ +\xf9\xe6\xdd\x4f\x28\x7b\x7a\x63\xf8\xfe\x37\xff\x2f\x18\x29\x8d\ +\x2b\x15\xa4\xe5\xe8\xc9\xac\x3e\x8e\xdb\x99\xc2\xf1\xf4\xc4\x73\ +\x5f\xc4\x93\x4f\xff\x01\xbe\x7d\xe8\xcf\x50\x3b\x50\xe1\x1b\x30\ +\x86\x0e\xeb\x66\xc1\x67\x39\x33\x4e\x95\xb3\xb2\x20\x8d\x9e\xcf\ +\x5a\xd1\xaf\x77\x42\xf9\x4b\x2b\x95\x5b\xa8\x15\x9e\xda\xcd\x21\ +\x42\x83\x22\xe3\xc1\x67\x9a\x38\x75\x54\xe7\x48\x77\x10\xd5\x7d\ +\xac\x34\x57\xc9\x7f\x80\x9b\x6f\xbc\x13\x77\xdd\x79\x27\x3e\x72\ +\xcf\x07\xf0\xfd\x1f\x7e\x13\x0b\x90\x32\x27\xd1\x68\xd7\x51\x0a\ +\xaa\x26\x8f\xba\x6a\xed\x78\x56\x19\x30\x46\xfe\x99\xa5\x99\x8d\ +\x09\xdd\x65\x14\x5c\x80\xf3\x9c\xd6\xbc\x9f\x87\xec\x2d\x5d\x0f\ +\xba\x8e\x75\x17\x17\xf4\x7c\x1f\xeb\x4f\xeb\x84\x5d\xce\x67\x18\ +\x34\xe7\xc8\x91\xe3\xe5\x80\xfc\xad\xcc\x91\xe3\xca\x21\x57\xa8\ +\xe5\xc8\xf1\x1a\x46\xfe\xf2\xbf\x46\x90\xf5\x87\x0c\x7c\xc8\x0a\ +\x9e\x76\xd6\x1d\x53\xe7\x5e\x03\x3b\xea\xe0\xcb\xd1\x94\x68\x1a\ +\xb2\x77\x58\x5e\x3a\x83\x65\x6d\x1f\xd4\x39\x8d\x95\xb9\x93\xa6\ +\x44\x3b\x7d\xea\x31\x34\xeb\xf3\xf0\x2b\x1e\xb6\x6e\x9d\x64\x90\ +\x61\x54\x86\x47\x11\x16\xc7\x91\x48\xa9\xe2\x97\xd9\x91\xac\x60\ +\x64\x78\x07\xb6\x6d\xdb\x8d\xa0\x32\x8a\xe1\x91\xed\x28\xf9\x13\ +\xec\x06\xba\x8e\xe2\x20\x5c\x87\x7d\x1d\xe2\x24\xb3\xd3\x20\x40\ +\x27\x69\xb0\x63\xb9\x88\x46\xbd\x8e\x95\xc6\x39\xb4\x1a\xd3\x98\ +\x9b\x3f\x8d\xd9\x95\x73\x98\x5f\x9c\xc1\xb9\x73\x33\x58\x58\x38\ +\x85\xd9\xe6\x1c\x56\xea\x4b\x36\x10\xa0\xee\x66\x6d\xa8\x8c\x52\ +\xad\x84\xed\xd7\x6e\x53\xb2\xd8\xc9\x8d\x30\x3a\x36\x86\x62\x59\ +\xe7\x4b\xb1\xa3\xdb\x0b\xad\x13\x2c\x3d\x52\x51\xf9\xa1\xce\x3b\ +\x3b\xa1\xea\x58\x2b\x3b\xd4\xa1\xb7\x03\xc6\xad\x73\xae\xc1\x2a\ +\x29\x44\xc4\x1b\xbb\xb3\xea\x49\x33\xef\x14\x17\x7d\xba\x3c\x63\ +\x47\x5a\xe3\x46\xea\x9c\x4b\x59\xa4\x99\xe5\x61\x10\xb2\x43\xdd\ +\x47\x73\x39\x41\xd4\x8c\xd0\xeb\x8c\x62\xc7\xd6\x6b\x70\xe3\x75\ +\xb7\x62\xfb\xc4\x35\xa8\x16\xb7\xa0\xe2\x8f\xa0\x54\x29\x63\xa4\ +\x36\x8c\x72\xa5\x86\xa2\xa6\x91\x9b\x1a\xf3\x62\x50\x2e\x29\x56\ +\x37\x68\xa3\x67\x5b\xa5\x45\x7e\xdd\xac\x66\x37\xd0\x21\x27\x0d\ +\x6c\x9d\x3d\xb5\x80\x7b\x3e\xfc\x16\xec\xbf\xce\xc7\x4d\xd7\x0e\ +\xe1\x33\x3f\x75\x0f\x56\x7b\xda\xd2\x09\x58\x9a\x5f\x60\xd8\x2e\ +\xa9\x25\x36\xa8\x22\x05\x91\x68\xab\x5e\xd8\x80\x5e\xc1\xc5\xa5\ +\x58\x04\xd7\xb5\x66\xde\xe8\x8c\x3b\x66\x80\x06\x32\x34\x0b\x5d\ +\x91\x55\x8a\x25\xe6\x06\xf3\xa3\x5b\x06\xb3\x5b\xd3\xba\x99\x66\ +\xfa\x8b\x03\x04\x21\xdd\xc8\x9b\x5f\x64\xfd\x90\x62\x35\x1c\xe2\ +\xbd\x8f\x88\x61\x83\xf1\x09\xdc\x78\xd3\xad\xf8\xe6\xc3\x9f\x43\ +\x54\x9a\x47\xbd\xdd\x5d\x53\x6e\x69\x40\xc2\x56\xc3\x11\x8d\xd5\ +\x0e\xda\x2d\xad\xa6\x8a\xad\x1c\xdc\x96\x8f\x8c\x43\x83\x18\xe4\ +\x5b\xab\xa3\x54\x26\x7d\xa6\xdd\xf8\xd5\x20\x8b\x19\xc8\x93\x06\ +\x60\xf4\xa0\x41\x20\xb2\x9c\x1d\xa6\xef\xb6\x7c\xd4\x16\xa2\x8c\ +\xcb\x73\x03\x17\x76\x89\x3b\x7a\xac\x55\x86\xad\x3c\x8b\x25\x0f\ +\x9d\xb9\x00\x4b\xed\x06\xea\x9d\x06\x02\xc6\x27\x31\xca\x27\xbd\ +\x7e\x41\x5b\x34\x89\xbe\x06\x17\xdd\x20\x8f\x06\x71\xb4\xfa\xcc\ +\x0d\xf8\xd0\x9f\x06\x7f\xc4\x15\xff\xe5\x47\x91\x58\x7d\x51\x79\ +\xb9\x47\xdd\x78\xd1\xde\x46\x6b\x54\x0b\xb4\x85\x64\x19\x13\xc3\ +\x37\xe0\x6d\x6f\xf8\x69\x04\xbd\x84\xe9\x28\xd2\x76\x58\x44\xf1\ +\xc4\x23\x0f\x61\xb1\xff\x0c\x9e\x7d\xfa\x8f\xf0\xf8\xa9\x87\x31\ +\xb4\x7f\x1b\x0a\x49\xc5\xce\xfe\x43\xa0\x41\x3e\x6d\x35\xa4\x41\ +\x36\xe6\xb3\x8a\x29\xea\x61\xb5\x25\x65\xaa\x66\x8b\x6b\x7b\x53\ +\xa5\xc1\xa5\x9b\x44\xf9\x1e\x30\xcd\xbd\x8e\xf1\xd2\x5e\x4c\xb0\ +\x78\xac\x8e\x99\x23\x75\xcc\xcf\x34\xb0\xd2\xda\x82\x5b\x6f\x7a\ +\x1b\x3e\xfb\xe9\xef\xc7\x4f\xff\xe4\xa7\x10\x94\xdc\xbb\xac\xb3\ +\xed\x6c\xc0\xd4\x98\x5f\xaf\x27\x0e\xd9\x93\x1b\xb4\x11\x64\x23\ +\xb3\xe5\x6f\x6a\x1a\x44\xe6\x9e\xe1\x7c\x57\x87\xc1\x50\x99\x79\ +\x63\x98\xe7\x53\x1e\xc0\x86\x00\x7a\x4f\x54\x8d\x2d\xcc\x40\xa0\ +\x41\x9a\x17\xc5\x46\x8f\x9b\x31\xb0\x99\x9f\x41\x0c\xfa\xdf\x18\ +\x76\x23\x2e\xe5\x9e\x23\x47\x8e\xbf\x78\x3c\xef\x1d\xd6\x8f\x33\ +\x5b\x33\x9d\x9a\x9d\x27\xb5\x69\x7a\x50\x43\x42\x1b\xad\x76\x97\ +\x5c\x91\xda\xaa\xf9\x3c\x77\xee\x10\xa6\x28\xeb\x44\xab\x67\xb0\ +\xb4\x7c\x0a\x0b\x27\x9f\xc2\xd4\x99\x47\x51\x5f\x38\x49\xf9\x24\ +\xc1\xe8\x96\x09\x54\x87\x46\x50\x66\x23\x56\x60\x1b\x18\x0c\x57\ +\xd1\xa3\x7d\x4f\xdb\xd0\x49\x91\x11\x76\xd1\xea\x36\xd0\xed\xb7\ +\xd1\xd6\x59\x69\x51\x83\x6d\x67\x8b\xf7\x2e\xda\x94\x0b\xa4\xc8\ +\xea\x76\xc9\x01\xe5\x00\xb5\xc3\x9d\x0e\x1b\x01\xb6\x8b\xda\xee\ +\xb7\x1f\xf4\xac\xfd\xda\xb1\x6b\x0c\x01\xd9\xaa\x0d\xe9\x6c\x50\ +\xad\x64\xd3\x84\x18\x4a\x0b\x0c\x63\x6d\x57\x8f\x6d\x09\xdb\x95\ +\x02\x85\x2c\x4d\xae\x31\xb9\x83\xbc\xd8\x44\x1c\x4b\xab\x6b\xbb\ +\x25\x5b\x68\x45\xb5\x4d\x1a\xf1\xe9\x40\xb3\xdb\x62\x99\xad\x5c\ +\x51\x0a\x3c\xba\xd3\x5e\x3b\x0c\x74\xb4\x6a\xaa\xed\xa1\xdd\x20\ +\xff\x2b\x6c\xaf\x7a\xc3\xd8\x35\x76\x13\x6e\x79\xdd\x5b\x30\x5e\ +\xdb\x8d\xbd\x5b\xae\xc6\xce\x5d\xfb\xd9\x5e\x69\x05\x8f\x22\xe1\ +\x25\x25\x16\xdb\x31\xad\xab\xb6\x06\xde\x3e\xea\xfa\x57\x3b\x23\ +\x69\x21\x2b\x00\x97\xfb\x82\xb1\x37\x00\x7b\xd6\x8f\x95\x9b\xf8\ +\xe7\xdd\x3c\x6b\xcd\x9d\x56\xe3\x25\x6c\x0b\xeb\x78\xff\xa7\xdf\ +\x8f\x56\xe9\x19\xdc\x7d\xfb\x5e\x7c\xfc\x47\xef\x30\x3f\x09\xf3\ +\xcf\xb6\x7e\x64\xbe\x4a\xe6\x4a\x28\x53\x69\xa2\x8f\xad\x54\x13\ +\x09\x42\x32\x9a\x95\x31\x79\xb3\xbc\xa1\xb3\x29\xdc\xf8\xa0\x33\ +\x46\xb5\x9d\x75\x3f\xae\x20\x5e\x19\xc2\xdb\x5e\xff\x31\xdc\x72\ +\xcd\x5b\x50\xad\x4c\xd0\xa3\x94\x93\x82\xfc\xea\x2e\x49\x22\x55\ +\x02\xf1\x59\xe9\x93\x42\xd4\x67\x1d\x52\x9c\x0b\xf5\x53\x58\x4e\ +\xce\xe1\xeb\x0f\xfd\x36\x56\x9a\x0b\x68\x76\xdb\x16\x5a\xfe\x29\ +\x12\xb0\xfd\x77\xb2\x5e\xd4\x8d\x10\x51\x16\xb6\x15\x8c\x14\xa0\ +\xc4\xb7\xc9\x05\xf2\x43\xf9\xce\xfc\xa6\x3c\x2b\x3e\xa7\x48\x25\ +\xdb\xcc\x1f\xbb\x8b\x0f\x89\x0e\xcc\x72\x29\xd4\x2a\x15\x50\xd6\ +\xd7\x0a\x35\xca\x56\x2c\x53\x41\x4a\x26\x85\x27\x59\xf2\xd9\x41\ +\x6b\xc9\xc7\xeb\xef\xfc\x41\x7c\xdf\x35\xef\x67\xaa\x6a\x38\x72\ +\xea\x08\x3e\xf7\xa7\xff\x16\x2b\xc1\x49\xf6\x19\x28\x6b\x29\xad\ +\xca\xff\xf4\xdd\xb1\xd5\x5e\xac\x77\x82\xc9\x9a\x29\x24\xcf\x99\ +\xcc\xa5\xbb\x71\x27\x4b\xf2\xa5\x1b\xed\x25\x63\xc9\xdd\x53\xfc\ +\xa4\x8a\x78\x08\xb7\x1e\xf8\x00\xee\xbc\xfa\x63\x7c\xb7\x28\x5f\ +\x32\x2f\x32\xb8\x9d\x2a\x28\x00\xb2\x3e\x4f\xcd\x9c\xc2\xa1\xf9\ +\x6f\xe0\x4f\xbe\xfa\x4b\x68\xf4\xa6\x51\xdb\xb6\x9d\xb2\x3b\xc3\ +\x6b\x92\x91\xea\x2d\x53\x61\x13\xa2\x64\x62\x38\xdb\xf9\x82\x31\ +\x68\x07\x0b\xf5\x27\xac\xb4\xf9\xfe\x25\x2c\xf7\x56\x33\xc6\xd2\ +\x6c\x84\xa9\x53\x0d\x1c\x7d\x72\x09\x85\x4e\x84\xb2\x37\xc2\xf2\ +\xe9\xb2\xaf\xd2\xc7\x6d\x37\xbc\x05\x6f\x7d\xe7\x3d\xf8\xec\xa7\ +\x7e\x10\xb7\xdd\xe4\xce\x94\x63\x75\x60\x1d\x8a\x8c\x6f\x29\xd2\ +\x54\x6a\x69\xea\x0c\x2e\x85\xce\xa4\x78\xdd\x5d\xb7\x01\xb3\x21\ +\xf5\xb7\x1e\x74\x3d\xc8\x65\x60\x5d\x62\x73\x70\xc1\x9c\x5d\x46\ +\x26\xe3\x45\x69\x76\x76\x1b\x89\x5f\x66\x64\x39\x72\xe4\xf8\x0b\ +\x43\xfe\x56\xe6\xc8\x71\xe5\x90\x2b\xd4\x72\xe4\x78\x0d\x23\x7f\ +\xf9\x5f\x03\x58\xeb\xf5\x0c\x96\xb6\x59\xd8\x2d\x6b\x02\x7a\xec\ +\xec\xaa\xdb\xa6\x4b\xca\xab\xd6\xca\x22\x9a\xcb\xa7\xd1\x5e\x3e\ +\x83\xce\xd2\x21\x9c\x38\xf2\x08\x96\x96\x17\xd8\x41\xed\xa1\xb6\ +\x65\x0c\x63\x13\xbb\xe1\x0f\x95\x11\x06\xe3\xf0\x2a\x35\x0c\x55\ +\xb7\x62\x78\x7c\x27\x86\xc6\xae\x42\xb5\xb4\x83\x74\x74\x44\xf5\ +\x3a\xd4\xdd\xd4\x20\x83\xb1\xc3\x38\xd5\x19\xb5\x01\x00\x3a\xa8\ +\x53\x9e\xc1\x3a\x63\xee\x7f\xcd\x5e\x76\x76\xae\x57\xfa\x34\x08\ +\xd1\x6d\x20\xc6\xe2\xf4\x1c\x66\x67\x0e\xe2\xd4\xe2\x63\x38\x7e\ +\xfc\x18\x96\xe6\x57\x31\xbf\x30\x87\x67\x9f\x7b\x0a\xed\xf6\x12\ +\xa2\xce\x1c\x9a\xdd\x1e\xc2\x51\x60\xd7\x0d\x5a\xc5\x56\x44\x50\ +\xaa\x30\x3c\xbb\xd0\xe5\x3e\x8a\x25\x6d\xdb\x18\xa2\xdd\x4a\xc8\ +\x9f\xb6\x8f\xd4\x40\x82\x94\x6b\x1a\xfc\x89\xe1\x05\xea\xcc\xf7\ +\x10\x78\x7d\xdb\x26\x49\x9d\x5c\xd3\x3f\xb0\xf3\xad\x19\xdc\xe2\ +\x4b\x0b\xd6\x7a\xca\x56\x29\x28\x2d\x5f\x35\x70\xe1\xb6\x6c\x12\ +\xff\x3a\x83\x4a\x2b\xf5\xc2\x90\xdd\x78\x6d\x27\x13\x79\x88\xe2\ +\x3e\xca\xa8\x61\xbc\x7a\x35\xc6\xc7\xb6\x61\x34\xd8\x86\xa1\xda\ +\x28\xca\xc3\xc3\x08\xe3\x8a\x0d\x74\x68\xe1\x50\xb1\x10\xd8\x20\ +\x95\x9d\x61\x52\x2c\xa3\x52\xa9\xa0\x52\x1b\x87\xef\x95\x50\xae\ +\xd6\x50\x0d\x75\xf8\x17\xa3\xbc\x18\x92\x65\xfc\xd3\xff\xe7\x8f\ +\xf1\xcb\xff\xee\x9f\xa3\xb4\xe5\x2c\x3e\xfe\x23\x77\xe3\x1d\xef\ +\xbd\x06\x8d\x56\x17\xab\xf5\x3a\xea\x8b\x75\x37\x08\x55\x68\x33\ +\x2d\x24\xc6\x88\xb5\x95\x93\xcd\x9a\x66\x1a\xac\xec\xac\xde\xb8\ +\x2e\xb4\x06\xbd\x2c\x99\xbc\xa4\xcc\xd2\x5c\x7a\x9d\xb7\x52\xf4\ +\x02\x84\xd0\xaa\x44\x9d\x7d\x21\xe5\x5a\x89\x41\x7c\x84\x1e\xf3\ +\x50\x83\x48\x3d\xcd\x5a\x96\x82\xac\x6f\x03\x37\x7d\xe6\x67\xd2\ +\x49\x10\xb7\x5a\x58\xe8\x2f\x63\x78\xdb\x16\xd4\xd1\x45\xab\xad\ +\x99\xbb\x1a\x08\x71\x90\xb2\x52\x91\xad\x2e\x77\xd0\xee\xa4\x2b\ +\xab\xd2\x81\x28\x37\xe3\x9a\xf4\xba\x2a\x37\x5e\xca\x34\xf3\xed\ +\xb2\x45\xe3\x0c\x1a\x00\xd4\x60\x89\x8d\x83\xb0\x72\xe9\xa6\x2d\ +\x1f\x75\xbc\xcb\xd0\x70\x82\xd1\xd1\x22\xcb\x46\x03\x37\x9a\xd1\ +\x2c\x45\xa4\x53\x80\x89\x76\xa5\x5a\xb5\x41\x44\x9f\x65\xd7\x9a\ +\x03\xea\x5d\x90\xc3\x3a\xfa\x4d\xf2\x2f\x65\x95\x29\x31\x59\x77\ +\x44\xd7\x06\x70\x3c\xdb\x96\x47\xf5\xdc\xca\x4d\x03\x42\xca\x37\ +\xb9\x99\x1f\xb1\x60\x3f\x66\xf6\x99\x1f\xf2\x6b\x56\x69\x8a\x95\ +\xd7\xf2\x5b\x2c\x14\x51\x2e\x16\x71\xdd\x75\xef\xc7\x4d\xbb\xde\ +\x4a\xdb\x31\xd6\xf8\x2e\x9e\x7c\xf0\x41\xac\x76\x0f\xe3\x5b\xf7\ +\xfe\x0e\x4e\xd6\xcf\x62\xe4\x40\x0d\x61\x65\x3b\xe2\x55\x6d\xeb\ +\xe8\x78\xd2\x2a\x34\xcd\x38\xd7\x20\x94\x56\xa3\x75\xfa\x11\xa2\ +\x48\x5b\x79\x81\x79\xaf\xba\xc9\x7c\x53\x8c\x7c\xaf\x43\xf1\x48\ +\xbe\xb5\x75\x95\x66\x4c\x47\x0b\x5d\xcc\x1d\x6a\xe0\xd8\x53\xf3\ +\x98\x5f\x0e\xb1\x6f\xdf\xeb\xf0\xfe\x0f\xbd\x0f\x3f\xfe\xf1\x4f\ +\xe2\x8d\x77\xde\x68\x79\xab\x15\x8d\x52\x4a\x5a\x5a\xb2\xcc\xce\ +\x60\x95\xe3\x62\x18\xf4\xec\x82\x5f\x2e\x14\x72\x30\xba\xcc\xbc\ +\x91\xc6\xf9\x31\xa4\x18\xf4\xb8\x91\xc0\x06\x6c\xa4\x27\x9c\x17\ +\xcf\xa0\x87\xcc\x61\x90\x4e\xf6\xbc\x19\xa1\x4b\x61\x13\x7e\x72\ +\xe4\xc8\xf1\xca\x80\xda\x25\xfb\x2c\xb2\xf1\xb1\x76\x53\xbf\x69\ +\xdb\xa9\xd6\x54\x67\x57\xea\x1b\xcd\x06\xdd\xe4\x2e\xd9\x6b\xad\ +\xd8\xf2\xfc\x59\x4c\xcd\x9f\x41\x63\xf1\x24\xe5\xaf\xb3\x38\x73\ +\xf4\x7e\x9c\x38\xfa\x28\xe5\xaf\x69\x54\x87\x2a\x98\xdc\xbd\x0b\ +\x3b\xf6\xdc\x48\x19\x61\x02\x21\xdb\x85\x02\xdb\xd8\xb1\xe1\x3d\ +\x28\x94\xcb\x28\x51\x2e\x18\xa6\x6c\x56\x29\xd7\xec\x0c\x5a\x3b\ +\xff\xac\xe4\xf3\x7b\x2f\x65\x5a\x1d\xcd\xb6\x56\xf8\xcf\xb3\xbd\ +\x5f\xc1\xf4\xd2\x19\x34\xa3\x06\x56\x16\x75\xb6\xed\x0a\x16\x48\ +\xbf\xbe\xba\xca\x30\xab\x94\x83\xda\xb6\x12\x5c\xfc\x07\x65\xca\ +\x58\x4b\x94\x41\x8a\xda\x62\x1b\xa8\x4e\x94\x31\x32\x5c\x43\xa9\ +\xec\xb1\x8d\x0f\x51\xd3\xea\x6d\xb6\xf2\x48\xd8\xae\x33\x5d\x59\ +\xdb\xab\xb6\xc5\xc0\x9b\x53\xa8\xb8\x36\xd8\x94\x69\xb4\x56\xdb\ +\xe6\x56\x97\xa9\xed\xa6\xac\xa4\xd5\x5d\x6c\x87\x24\x17\x2a\xa8\ +\x29\x42\x42\xca\x47\x65\x36\xd0\x31\xd3\xd0\x76\xdb\x05\x76\x9a\ +\x74\x6c\xd7\x30\x31\x7e\x2d\xae\xbf\xea\x1e\x4c\x8e\x6e\xc7\xf6\ +\xf1\x7d\x6c\xbf\x77\x63\x68\x68\x1b\x8a\xd0\x0a\xee\x14\x62\x81\ +\x97\x6e\x8e\x2b\x99\xdd\x9f\xd9\xf0\x5f\x45\x90\x1a\xed\x47\xba\ +\x11\xe9\x30\xe4\x83\xec\xda\x5d\x50\x18\xf9\x91\x77\xa9\x0d\xff\ +\x9f\x5f\xff\xaf\xf8\x97\xff\xf6\x7f\x46\x79\x6c\x1e\x1f\xfb\xd0\ +\x1d\xb8\xf9\x9e\x7d\x74\x74\x8a\xc1\x66\xa3\x61\x13\x57\xe2\x98\ +\x6d\x31\xdb\x59\xd1\x54\x1b\x69\xc9\x4d\xf3\xc5\xda\xda\x4c\x4e\ +\xa1\x9d\xa8\x4b\x46\x16\xec\x5c\xba\x7e\x80\x5e\x33\xc4\x1d\xd7\ +\xbf\x17\x77\xdc\xf4\x41\x4c\x0e\xed\x70\xcc\x68\x6b\x67\xe5\xf7\ +\x79\x10\x57\x2c\x6f\xb4\xb1\xdc\x5c\xc0\xf4\xec\x09\x9c\x6a\x9f\ +\xa2\x5c\xb5\x80\x63\xc7\x9e\xa0\x4c\xdf\x62\xf9\x53\x68\x61\x74\ +\x9a\x98\x64\x13\xaf\x28\x17\x98\x42\x8d\x6d\xb8\x26\x28\x49\xbc\ +\xea\x33\x7e\xc9\x55\x5a\x6d\x6e\x13\x94\x28\x27\x24\x3a\x8f\x56\ +\xf1\x52\x8e\xb1\x33\xd4\x98\x37\x56\x5f\xf9\xa3\x9a\xad\x74\xc9\ +\xac\xb3\x86\xab\xd5\x82\x5d\xb5\x21\x0f\xc3\xc3\x94\xb1\x83\x4c\ +\xfe\x09\xec\x7d\x90\x82\xa9\xa0\xd5\xf2\xcd\x22\x0e\xec\x79\x3d\ +\x6e\xbc\xfe\x5d\x38\x78\x6c\x16\x0f\x3e\xf1\xa7\xe8\xb6\x4e\x60\ +\x68\x4b\x09\xfd\x48\x75\x45\x19\xa6\x4b\xff\xac\x2f\xcc\x2b\x5f\ +\xdb\x47\xf2\xfd\xc9\xa0\xfa\xa4\xb8\x9d\xc2\x4c\xf1\xc8\xaf\xe8\ +\x2b\x27\xf9\x47\xaf\x52\xe2\x49\xec\x0c\xf8\x13\xb2\x4f\x52\xae\ +\xd5\xf0\x7d\xb7\xfc\x43\x8c\xf2\xfd\xa0\x77\x83\x72\x4d\x13\xe3\ +\xbc\x42\x99\xe9\x8a\x70\xdf\xc3\x5f\xc6\xfd\x87\x7e\x17\xcf\x9d\ +\x7a\x00\x43\xbb\xc7\x29\x0b\x53\x7e\x35\xd5\x36\x65\x54\xab\xa7\ +\xa4\x2b\x59\x4d\xef\xaf\xea\x2b\xd3\xa5\x72\x94\x1c\xa8\xca\xa4\ +\x95\x7b\xaa\xdb\xca\xd3\xe5\xd9\x04\xe7\x4e\x76\x70\xf6\x78\x03\ +\xcd\xf9\x06\xfb\x21\x3d\x2c\xce\xf5\xd0\xa5\xdc\x78\xd3\x9d\xb7\ +\xe0\x3d\xef\x79\x1f\x7e\xe2\xc3\x3f\x84\xbb\xee\xb9\xcb\x78\x69\ +\xb4\x9b\x28\x06\xa1\xf5\x31\x4c\xa6\x22\xd6\x53\x3c\x08\xb9\x59\ +\xa1\xf0\x66\x09\x35\xdb\x97\x86\x94\xde\xf3\xb0\x39\x07\xc2\x85\ +\x42\xac\xe3\x4a\xf0\x95\x23\x47\x8e\x2b\x8d\xfc\xcd\xcc\x91\xe3\ +\xca\x21\x57\xa8\xe5\xc8\xf1\x1a\x46\xfe\xf2\xbf\x0a\xb0\xb1\x47\ +\x33\xf8\x6c\x05\xbc\xb1\x94\x5d\x87\xd3\x7d\xfa\xd9\xf1\x2c\xb8\ +\xad\x58\x74\xe6\xc2\xd4\xd4\x71\xb4\x9a\x33\x88\xeb\x27\xb1\x3c\ +\x75\x04\xb3\x67\x9f\x40\xbd\x59\xc7\xd6\x9d\x3b\xec\x90\x78\xbf\ +\x3a\xc1\x0e\x64\x88\xd2\xf0\x4e\x6c\xdd\xb6\x07\x63\x13\x3b\xd8\ +\x51\xdd\xc2\xd0\x4e\x79\x66\x5d\x7a\xfd\x40\x5b\xf5\xc5\xc6\x86\ +\xd4\x2c\x6e\xc5\x0e\x3b\xe3\x1b\x3a\x7d\xc6\xc2\x79\xbc\xae\x43\ +\x5e\xcf\x73\x4e\x9b\x2a\x29\x61\xa4\xe0\xb2\x59\xa0\x74\xd4\x40\ +\x8d\x3a\xba\x5a\xb1\xb3\x71\x90\x61\xa1\xd5\xc5\x37\x1e\xfa\x33\ +\xcc\x9d\x3b\x8c\x99\x33\xe7\x70\xe4\xe8\xe3\x38\x7d\xec\x14\xa6\ +\x96\x66\xd0\x68\x4d\xa3\x3c\x56\x44\x79\x3c\x44\x75\x8c\xd7\x44\ +\x11\xc5\x62\x91\x69\x1a\x42\x10\x56\x10\x16\x35\x47\x56\x0a\xb1\ +\x1e\x8a\x25\x1d\xb0\xdf\x56\xe4\x88\x62\x97\x16\x5f\x07\xa4\xfb\ +\x09\x02\x9a\xed\xe0\x75\x76\x80\x65\x2f\x25\x94\x06\x0f\xac\xdf\ +\xcf\xcb\x71\xad\x54\xa8\xf3\xad\x4e\xbf\xb3\x29\x17\x03\x0c\x0d\ +\x55\x31\x5c\xd5\x6a\x40\xf2\x51\x1d\x42\x25\x1c\x42\x77\xa9\x85\ +\x7e\xa4\x19\xc6\x21\xe2\xd5\x1e\x5a\xab\x52\x77\x88\x7e\x11\x85\ +\x84\x3c\xb5\x03\x24\x9e\x87\xd0\xaf\xa1\x10\x0c\x21\x6a\x15\x50\ +\x1b\x19\x43\x6d\xb4\x86\xc9\xe1\xad\xee\x1c\x94\xe2\x10\x46\x47\ +\x26\x30\x32\x4c\xfb\x62\x95\xf9\xa5\x41\x93\x55\xf8\x7d\x1f\xe3\ +\x3b\x26\x71\xe0\xf6\x1f\x40\x6d\xeb\x69\x74\xfc\x29\xfc\xcf\xbf\ +\xf0\x31\xec\xbd\xae\x8f\x95\xd5\x02\x56\x57\x57\xb0\xda\x54\xfc\ +\xca\xdf\xc8\x66\x9c\x47\xe4\x45\x73\xa0\x05\x0d\x74\xe9\x57\x83\ +\x1b\x9a\x89\x1b\xf0\xee\x49\x01\xc5\x74\x27\x71\xcf\xb6\x3e\xd4\ +\x6c\x72\x29\xff\x2a\x61\x99\x5c\x6b\x0b\x4c\x96\x8b\xc6\x88\x98\ +\xec\xa0\x1f\xba\xf2\xb2\x42\x65\x7e\xd1\xac\x55\x52\x7d\x29\x25\ +\x83\x3e\x5a\x49\xc2\x6a\x13\x63\xb9\xec\xa1\x19\xaf\x32\xaf\x23\ +\x97\xa7\xf2\x4f\x7f\x36\x00\xc4\x32\xa8\xaf\xb4\xd0\xed\xf6\x6d\ +\xe5\x95\x53\x9e\xa9\x4e\x68\xf0\x4a\x0a\x1e\x95\x19\xbd\x6b\xe0\ +\xa7\xaf\xb0\x8a\x9c\x77\xfe\xab\xc2\xa8\x2e\x5a\x2d\xa1\x59\x2b\ +\xcf\x94\x86\xb0\xd8\x43\x6d\x48\x67\xa8\x15\x51\x0a\x99\xa6\x80\ +\xfe\x34\x3a\x43\x68\x60\x44\xb3\xc7\x4b\x2c\xab\x62\xa9\x48\xff\ +\x01\x5a\x8d\x3e\xda\x4d\x29\x03\x5b\x2c\x1f\xe6\x57\x5f\x0a\x2b\ +\x91\x74\x0a\x30\x85\xd4\x00\x8f\x06\x45\x48\x9e\xb4\x54\x5f\x1c\ +\x2d\xf3\xc7\x3f\xb9\x5b\x1c\xcc\x17\x17\x96\x7e\xf4\xec\xfe\x4d\ +\xaf\x29\x68\x7b\xc8\x90\xd7\x70\xb5\x82\x3b\xef\xfe\x38\xb6\x97\ +\xaf\xc1\xc1\x67\x4f\xe3\xc4\xcc\x43\x78\xf0\xfe\xdf\xc7\xd9\x95\ +\x69\x94\xf6\x8c\x23\x0c\x47\xd0\xee\x84\xf4\xab\xb3\x53\xdc\x2c\ +\x7a\x9d\x55\xa3\x32\xd3\x16\x5c\x1a\xa8\xeb\xd2\x1c\xb3\x5c\xdb\ +\xa6\x74\xd4\x4c\x74\x0d\xe2\x69\xa0\x8a\x69\x76\x53\xdc\x19\x71\ +\x02\xaf\x17\x20\x9a\xe9\xe0\xd0\x63\xb3\x38\x71\xbc\x8b\x70\xf4\ +\x0e\xbc\xff\x0d\xb7\xe0\xc7\x3f\xf9\x29\x7c\xf4\xfd\x6f\x37\xbe\ +\x48\x9a\x65\x6b\x46\x86\xe3\x03\xcb\xc0\x41\xdc\xa7\xf7\xcc\x7d\ +\x23\x98\x60\xbd\xce\xf2\xa9\x50\x16\x62\xf0\x21\x23\xf5\xdd\xc2\ +\xc6\x38\xce\x63\x64\x1d\xc6\x23\xed\x2e\x8b\x9d\x4d\xc2\x6f\x1a\ +\x30\xf3\x73\x21\xa2\x19\x2f\xc2\xa0\xdf\x8d\xb4\x85\x8d\xfe\x72\ +\xe4\xc8\xf1\xbd\x43\xf6\x9e\xa6\xb2\x8a\x33\xf3\x5b\x27\xe3\x9a\ +\xcc\xa5\x89\x0e\x9a\xa8\xe1\x26\xe1\x08\xcd\x78\x19\xb3\x33\x53\ +\x38\x3b\x75\x10\x71\x77\x06\x53\x87\x1f\xc1\xa9\x83\x4f\xb0\x2d\ +\x3d\x8d\xb0\x52\xc4\x55\xd7\xdf\x8a\x91\xf1\xab\x68\x96\xfc\x15\ +\x60\x7c\xeb\x7e\x6c\xdb\x7e\x35\x76\xee\xd8\xcf\xef\x79\x01\xe5\ +\x82\x64\x30\x07\x36\x81\xf6\x6d\xb6\xa8\xed\xea\xb0\xcd\xe4\x37\ +\x5e\x1a\x22\xb6\x23\xae\x75\x72\xee\x91\xda\x06\xb4\xd1\x6c\xcd\ +\xa1\x2e\x05\x5b\xfd\x14\x96\xea\xda\x4e\xf2\x18\x96\x17\xce\x61\ +\x66\xf6\x24\xe6\x97\x66\xb1\xdc\xa0\xbc\xd4\x98\xc7\xd2\x72\x97\ +\x72\x13\xbf\xfb\x14\xf7\x74\xa4\x68\x91\x49\x18\x1d\xab\xa1\x44\ +\x83\x76\x02\x18\x99\xa8\xa0\xe8\xeb\xfc\x35\xb7\xd5\x9f\xe2\x8a\ +\xd8\x2e\x9b\x7c\xc0\xf6\x46\x0c\x29\xed\xa6\xfc\x90\xec\x20\x19\ +\x2e\x95\x29\xa4\x50\x12\x4f\x12\x8f\x8c\x6f\xfa\xb1\x09\x58\xf4\ +\xef\x56\xfd\xb0\x0d\xa6\x7c\xa1\xb0\xa1\xce\xdc\xa5\xbc\xd0\x58\ +\xd0\xaa\x38\xb6\xc3\x91\x87\x6d\x13\x37\x62\x72\xf2\x46\xec\xdd\ +\x7d\x1b\x26\xab\x93\x18\x1d\xdd\x85\x4a\x65\x8c\x79\xe3\x91\xcf\ +\x0a\xe9\x6a\x83\x64\xc9\x2a\xee\xfc\xdf\xcb\x85\x8a\x4c\x13\x52\ +\x24\x4a\x48\x19\x6a\xfc\xab\x9d\x27\xbf\x9a\xcc\xf4\x53\x7f\xff\ +\x67\xf0\xf0\x43\x7f\x84\xb1\xad\x11\xfe\xd2\xa7\xef\xc6\x76\xca\ +\x57\x9a\x30\xa5\xb6\xb5\xdb\x6d\x51\x4e\xe8\x52\x4e\x60\xcb\x4b\ +\xff\x92\x55\x24\x97\x48\x0e\xd0\x79\xb5\x56\x1e\x4c\x4f\x81\xe5\ +\x63\x52\x0a\x69\x4b\x61\xa3\x38\x84\x1e\xe3\xd1\x64\xa4\xb8\x53\ +\x62\xda\x6e\xc2\x1b\xae\x79\x0f\xf6\xb0\xcc\x93\x9e\x8f\xfa\xaa\ +\xce\x3c\x6d\xa3\x18\x44\x26\x0f\x06\x45\xca\xf1\xcc\xcf\xfa\xca\ +\x09\x1c\x9c\x3a\x84\xc5\x95\x73\xa8\x95\x29\xbb\x05\x1e\xce\x9c\ +\x3a\x85\xa8\xdf\xb6\x09\x35\x8c\x32\x95\xa1\x25\x37\x49\x66\x4a\ +\x4c\xa1\xd6\xe9\x50\x6e\x20\x13\x5d\x3e\xc7\x49\x6c\xfc\xd9\xaa\ +\x7f\xc9\x54\xbc\x4c\x91\x26\x7e\x75\xb3\x4b\x7d\x07\x95\x30\x73\ +\x93\xb2\x83\xd2\xc4\xe2\x41\xb9\xac\x55\x6a\x1e\x2a\x43\xc0\xf0\ +\x50\xc9\x14\x6a\x76\x2e\x2d\xe5\x2e\x13\x11\x14\x8e\x72\xa0\xf2\ +\x2f\xae\x4f\xa0\x47\x19\xf5\xe4\xe9\x93\xac\xc7\xd3\x18\xaa\x95\ +\x28\x09\x97\xac\x8c\x25\x2f\x67\x13\x8c\x9c\x0c\x25\x3a\xac\x53\ +\x8c\xcb\xe5\x0e\xed\x78\xa9\x46\xdb\xea\x35\x7a\x54\x30\xf3\x2f\ +\x17\x7a\x32\xb3\x7e\x08\xc9\xe4\xc5\x70\x18\x37\xec\x7d\x1d\x6e\ +\xd9\xff\x37\xe8\xa7\x49\xb6\x99\x1f\x52\xa4\x79\x55\xfa\xe8\xe3\ +\xf1\xa7\xef\xc3\xd9\xe5\x87\xf1\x85\xaf\xfd\x32\xa2\x6a\x84\xf2\ +\xd0\x38\xc5\x21\x46\x1e\x32\x1f\x34\x69\xca\x8a\x4c\xef\xb3\x56\ +\x21\xea\xc1\xbd\x68\x32\xba\x2d\x1d\x22\xdb\xe5\x83\xc5\x8d\xd5\ +\x85\x3e\xe6\xa6\x9b\x98\x9f\xee\x62\x69\xae\xcd\xb4\xf6\x30\x35\ +\xbf\x82\xe6\x12\x70\xf5\x35\x77\xe0\x8d\x6f\xbd\x07\x9f\xfd\xe4\ +\xc7\xf1\xae\xb7\xbe\x53\xec\xa1\xc9\xba\x52\xb2\x6d\xd0\x45\x5f\ +\x52\x99\xe3\x5b\x11\x64\xe9\x3d\x1f\x72\xb7\x0c\xb5\xa7\xef\x0d\ +\xb2\xf8\x37\x72\xf8\x72\xe0\x2d\x47\x8e\x1c\x17\x43\xfe\x76\xe6\ +\xc8\x71\xe5\x90\x2b\xd4\x72\xe4\x78\x0d\x23\x7f\xf9\x5f\x05\x18\ +\xec\xb7\x64\x05\x7a\x5e\x1f\x67\xc0\x03\x6f\x6e\x25\x0d\x3b\x89\ +\x29\xba\x51\x1d\x73\x67\x9f\x43\xb7\x31\x8b\xa9\x43\x8f\x60\x6e\ +\xee\x04\x82\xb2\x8f\xd1\xf1\x71\xd4\xc6\x77\xa1\x5c\x1b\x47\x21\ +\x1c\xc3\xae\x3d\xd7\xa0\x3a\xbc\x9b\xd4\x6a\x6b\x9d\x3d\x6d\x15\ +\xa4\x0e\xb2\x3a\xbf\xea\x50\xaa\x63\x6b\xdb\xc2\xf4\x33\xa5\x89\ +\x62\x97\x1b\x0d\xea\x48\xcb\x22\xed\xe0\x6e\x8e\x01\x5e\x53\x0c\ +\x3e\xb9\xae\xb4\xb3\xd1\x59\x0c\x06\xd2\x13\x0b\x72\xd3\x79\x15\ +\xbd\x1e\x3b\xb5\x9e\x4f\x1e\xc5\x8f\xb6\xfd\x71\x5b\xce\x88\xd5\ +\xa9\x99\x08\xa7\x8e\x3f\x84\xc3\x87\x9e\xc6\xd3\x4f\x3f\x83\x83\ +\xc7\x9f\xc3\xdc\xd4\x29\xac\xac\x2c\x62\xb5\xb3\x8a\x5e\x25\xc6\ +\xce\x6b\x86\x31\xb1\x73\x08\x9e\x0e\x56\x1f\x0d\x51\xe3\x55\x0a\ +\xb4\x92\x2c\x42\xb7\x1d\x3b\x7a\x3a\xb0\x5c\x43\x57\x64\x41\xb3\ +\x7d\xbb\x91\x94\x4b\xda\xde\xc6\xb7\x41\x1f\x99\xd5\x91\x57\x8a\ +\xcb\x3a\xa0\x8b\x77\x75\xc6\xdd\xca\x27\xf1\xad\x41\xa5\xbe\x9d\ +\x2b\x51\xf4\xb5\x2a\x0a\x18\xae\x96\x30\x56\xab\x90\x7c\x11\x25\ +\x86\xd7\x6a\xa1\x52\x48\x3a\xfd\x02\x42\x14\x19\xc2\x47\x3f\xf2\ +\x6c\x66\xab\xce\xbb\xd0\xf9\x0b\x8b\xb3\xcb\xa8\xaf\x34\xb1\xd2\ +\x8a\xd9\x21\x97\x42\xaa\x88\x56\x37\x44\x10\x54\xb1\x65\x74\x0b\ +\xc6\x87\x26\x50\x09\x47\x51\xee\x85\x2c\xab\x16\xc6\x47\xaf\xc3\ +\x87\xee\xa8\xe2\x8f\xe7\xe7\xf1\xd7\x7e\xea\xff\x87\xed\x93\xe7\ +\x30\x7a\x55\x19\x7f\xff\xef\xbf\xcf\x86\xb5\x34\x23\xbd\xde\x6a\ +\xa0\xb1\xa4\x99\xcb\x5d\x0b\x13\x77\x34\xeb\xdc\xa5\xd5\x06\x39\ +\x2c\x35\x96\xed\x7c\x64\xba\x59\xd4\xda\x16\x53\x7f\x41\x58\xb4\ +\xb3\xcd\x0a\x49\x82\x72\x58\x41\xb1\x10\xa2\x5c\x64\x7d\x21\x71\ +\x1b\xb8\x60\x5a\xb4\xa2\x4f\x66\x23\x60\xc5\xe9\x94\x3f\x1a\x06\ +\x11\x96\x93\x18\xad\x72\x8c\x2e\xcb\x52\xe7\x91\x64\x03\x22\x3d\ +\x31\x48\x74\xbb\x31\xd3\xdc\x06\xb3\x9c\x3c\x6a\x10\xc8\xcd\x6e\ +\x57\xfe\x4a\xf9\xa9\x81\xac\x38\x12\x6d\x11\x27\x64\xe4\xe5\xea\ +\x3c\xeb\xa6\x06\xf2\x44\x52\x97\x06\x82\xf8\x27\x85\x5a\xb5\x56\ +\xc0\x28\xcb\xba\x5c\xd1\xe0\x23\x53\x43\x4f\x56\x82\xe2\x8f\x74\ +\xab\xc3\x3a\x0f\xb0\x62\x83\x3a\x1a\xec\x9b\x3d\xd3\x46\x12\x77\ +\xd1\x69\x77\xe8\x4f\xfc\x2b\x29\x6e\x20\x44\x2c\x8b\x6f\x0d\x62\ +\x2a\x6f\x14\xb7\xec\x6d\x60\x88\x6e\x96\x5b\x34\xcb\x5e\x6c\xc8\ +\xd2\xec\xf9\xac\xc1\x3e\xb9\x1b\x8f\x64\x5c\x0a\xdb\x90\x79\x36\ +\x31\x12\x62\xf7\x9e\xbb\x58\x87\x57\xf1\xc4\x43\x5f\xc6\xb1\x95\ +\xa3\x08\x26\x26\xe0\x69\x90\xb5\xe1\x21\x4e\xda\xf6\x6e\xeb\xfc\ +\x41\xd5\xd5\x9e\x06\xc6\xb4\x3a\x8d\x76\x4e\xad\xc6\xfc\x62\x9e\ +\x74\xbb\x3d\x44\x52\xb6\xa9\x4c\x35\xab\x9a\xf1\x68\xe5\x60\x9f\ +\x85\xe4\x17\x99\x92\x55\xa0\x3d\xd5\xc2\x33\xdf\x5a\xc0\x99\x7a\ +\x0d\xb7\x5c\x7f\x3b\x7e\xe6\xa7\x7f\x04\x3f\xf3\xd1\x0f\xa2\x34\ +\x32\x69\x74\x6c\xf0\xa8\x1b\xd9\x8c\x76\xf1\xc6\xca\xca\xc4\xb8\ +\xf2\xcb\x60\x2b\x1a\x35\x70\x47\x3f\x4a\x9b\x45\x94\xa6\x51\xcf\ +\x69\xd1\x9f\x8f\xb4\xc8\x04\x73\x77\xc6\xf3\xa1\xb0\x03\xfe\x2e\ +\x84\x4d\xc3\x5e\x0a\x59\xa0\x2c\xf2\x2c\x9e\x01\x62\x83\x56\x1b\ +\xbd\xad\x1b\x88\xf3\x1c\x88\x4d\x03\xa4\x90\x9d\xb0\xd1\x5e\x18\ +\xf4\x9f\xf9\xcb\x90\xd1\xcb\x91\x23\xc7\xf7\x1e\x6b\x1f\x26\xb5\ +\x1c\x4e\xc9\x60\x72\x09\xed\x6d\x1b\x66\xca\x0e\xd9\x57\x32\x46\ +\x1b\x67\x4f\x3e\x87\xc5\xa5\x29\xb4\x96\x8e\xe2\xd4\xa1\xc7\x70\ +\x94\xf2\x97\xda\xa4\x9d\x07\xae\xc2\xfe\x3d\x37\x22\xac\x8d\x62\ +\x6c\xec\x1a\x6c\xd9\xb5\x07\xe3\xe3\x3b\x29\x2b\xec\x4e\x43\x3b\ +\xe8\x9c\x31\xad\xda\xd1\x4a\x28\xdf\x93\x4c\xa2\x76\xc4\x33\xe5\ +\x4f\xf6\x5d\xb0\x6f\x2c\xdb\x25\xfb\x16\x1b\x2f\x6a\x8c\x69\xc7\ +\xbb\xda\x67\xb6\x34\x7c\x1e\x08\x60\x48\xd0\x61\x7b\x32\x37\x7f\ +\x16\x67\xe7\x4f\x61\x66\xe1\x28\x66\xeb\x27\x70\xf2\xec\x11\x9c\ +\x9b\xa6\x9c\x38\x73\x9c\x7c\x9f\xc6\x6a\xb3\x4d\x79\x83\xed\x3f\ +\x83\xeb\xdc\xac\xe1\x11\xa0\x54\x1e\xa6\xec\x58\xb3\xcf\xfd\x70\ +\xcd\x43\x75\x48\x2b\xe8\x35\x59\xc9\xad\xa0\x8f\xd9\x68\x44\x94\ +\x55\xf4\x47\x4e\x29\x0f\x48\x0e\xa2\xac\x43\x19\x4b\x13\x94\x6c\ +\x48\x42\x81\xe9\xaa\x09\x34\xb4\x24\xfb\x05\x6b\xdb\x4d\xa9\x23\ +\xfe\x95\x16\x3a\x85\x25\xca\x49\x3a\xaf\xb7\x57\x62\x73\x24\xfb\ +\x00\x95\x60\x8c\x6d\xf4\x24\xc6\xb6\x5c\x83\xdd\x3b\xf7\x61\xa4\ +\x2b\x30\xd3\x00\x00\xff\xf4\x49\x44\x41\x54\x6c\x64\x2b\x46\xc2\ +\x11\x78\xa5\x1a\xc3\x6b\x72\x10\xcb\xa0\xe7\x2e\x91\x92\x1c\xd1\ +\x61\x9b\x69\x5b\x75\x93\xbe\x94\x4e\xe8\x53\x0e\x28\x94\x30\x52\ +\xa9\x62\xc7\xd6\x6d\x94\x6b\x2c\x53\x94\x2d\x36\x89\xa7\x40\x11\ +\x90\xad\x28\xbc\xb8\x83\x23\x2b\x11\x3e\xf9\x99\x0f\x22\x2a\x9f\ +\xc0\xf5\xd7\xd5\xf0\xa9\xcf\xbc\xd3\x76\x1e\xf0\x29\x0b\x46\x51\ +\x17\x2d\xca\x53\xad\x7a\x84\xb8\xdf\xb5\x95\x5e\x52\xac\x49\x06\ +\xb2\x2d\x15\x35\x09\x89\xe5\xa7\x89\x37\x89\xd2\x98\xb6\x99\xca\ +\x28\xad\x1e\xd7\x24\xad\x0e\x85\xec\x90\x32\x64\xcc\x36\xbe\x58\ +\xdb\x8b\x37\xbd\xf1\x3d\x28\x26\x11\xce\x2d\xcc\x63\x75\x79\x09\ +\xd5\x0a\xe5\x4b\xca\x24\x95\x6a\x0d\xcd\xe6\x2a\x96\x67\xcf\x59\ +\xf9\x97\xca\x25\x93\x61\x7a\x71\x8c\xd9\xe9\x29\xc6\xaf\x2d\xb2\ +\xdd\x0a\x35\xe5\xbd\x9d\x31\x4b\x5e\xa2\x0e\x65\xad\x0e\xf9\x23\ +\x3f\x11\xf9\x51\xbc\x52\xa8\x59\x19\x31\x83\x8c\x67\x55\x2d\x11\ +\x55\x35\x21\x01\xd5\x29\x55\x19\xd5\x1d\xdd\x55\xcf\xd5\xfc\x4b\ +\x19\x54\x2e\xf7\x50\xab\x05\xb6\x42\x4d\x67\xf0\x15\x8b\x94\x5f\ +\x98\x46\xb7\x25\xb9\x02\x4a\xa1\x56\x32\x99\x6f\xe9\x94\x8f\x7a\ +\x41\xe9\xa3\xd0\x21\xa5\x58\xac\x09\x57\x92\x0f\xf4\xae\x48\x06\ +\xe2\xa5\xae\x04\xcd\x8a\xd3\xce\x10\x93\x6c\xe6\x28\xb9\xba\x4d\ +\x93\x26\x1d\x31\xab\x4c\x66\x92\xab\xd9\x33\x3e\x3d\x4b\xfa\xf1\ +\x7a\xcc\x63\xca\x6e\x63\x94\x87\xdf\xf0\xba\x0f\x61\xb2\xfa\x0e\ +\xd6\xaa\x16\xdd\xdd\x24\xbc\x63\xe7\x1e\xc7\xe1\x13\xf7\xe2\xfe\ +\x07\x3f\x8f\xc3\x4b\xc7\x30\xb4\x6d\x2b\xc2\x1e\x2b\x34\x79\x83\ +\x2f\x65\x9a\x2e\xd5\x4b\xd2\xd3\x9d\x11\xd8\x3b\x2d\x0b\xde\x55\ +\xf5\xe8\x80\x84\xf9\x1b\xd7\x8b\x98\x9f\x6a\x60\xe6\x74\x13\x8d\ +\xd5\x26\xeb\xa9\x87\xc6\x62\x84\xb3\x33\x6d\xec\xd9\xb7\x0b\xef\ +\x7d\xff\xfb\xf0\x99\x8f\x7c\x1c\xef\x7a\xcb\x9b\x18\xa8\x8a\xd5\ +\x6e\x1d\x25\xbf\x64\x75\xc0\xbd\x13\x8a\xc6\x52\x21\xea\xa9\x59\ +\x26\xc5\x69\x51\xa7\xb0\x44\xa6\xf7\x97\x03\x5e\x4e\xbc\xe4\xc8\ +\x91\xe3\x52\xc8\xdf\xd6\x1c\x39\xae\x1c\x72\x85\x5a\x8e\x1c\xaf\ +\x61\xe4\x2f\xff\xab\x04\x59\x5f\x66\xb0\x4f\x93\x9a\xd7\x1e\xd3\ +\x4f\xbd\x29\x08\xd8\x15\x6c\xd4\xe7\x51\x5f\x38\x83\x85\xa9\xc3\ +\x98\x3e\xf2\x18\xed\x62\xec\xba\xea\x2a\x0c\x57\x27\x11\x87\x65\ +\x8c\x8c\x4f\x62\xdb\x8e\x03\xec\xcc\xea\xec\x06\x47\x4e\x03\x00\ +\xea\x46\x16\x0a\xb1\x0d\x0e\xd9\x0c\x55\x3a\x68\xe5\x95\x0d\x1d\ +\x69\x4c\xc3\xe2\x50\x88\x34\x72\x5a\xac\x77\x02\x2f\x85\x34\x40\ +\x8a\x0b\x05\x33\x1f\x46\xd7\x75\x6c\x45\xdf\x92\xc7\x4e\xb4\xec\ +\xf4\x20\x9e\xac\x93\xab\x01\x12\x76\xb6\x03\x9d\x7b\x60\xab\xd8\ +\x1c\xa4\x0c\x38\x78\xfc\x0c\x8e\x3e\xfb\x24\x9e\x7b\xe2\x20\x9e\ +\x39\xf4\x24\x8e\x9d\x3d\x86\xa3\xc7\x4f\xa0\x50\x6b\xc0\x1b\xe9\ +\x62\x68\x4b\x80\x6d\xbb\x6b\xda\x25\x10\x5b\xb6\x8d\xa1\x58\x2b\ +\x20\x14\xdd\x42\x47\xc7\x82\xd9\x80\x84\x29\x0e\x68\xd6\xcc\x5e\ +\xf1\x60\xf1\xd0\x22\x0c\x03\x68\x35\x96\xce\x1f\x29\xa6\x2b\xd8\ +\x8a\x81\x07\x0d\xe9\xd8\x0a\x2f\x7a\x93\x42\x4d\x03\x11\xe5\x92\ +\xb6\x46\x0c\xb1\x7d\xb4\x06\xbf\x38\xcc\x67\xad\xa2\xea\x23\x60\ +\x7a\xb4\x9d\x8d\x06\x93\x02\xfa\xf7\x7b\x9e\x0d\x3e\x15\xfb\x74\ +\x67\xc0\x50\xdb\x40\x6a\xe0\x89\x3d\xfa\x6e\x37\xc1\xd4\x72\x1b\ +\xcd\x38\x60\x27\x3d\xc1\x7c\x7d\x19\xcb\xf3\x9a\xc1\xec\x61\xfb\ +\xc4\x24\xca\xfe\x98\x29\xea\xde\x71\xeb\x6d\xd8\x7d\xc7\x24\x7e\ +\xe2\x27\xff\x35\xfe\xf8\xcf\x0f\xa2\xb6\x6b\x19\xef\xf9\xe8\x1b\ +\xf0\xa9\x1f\xb9\x1a\xe7\x16\xeb\xd0\x44\xf2\x7a\xa3\x81\xc6\x32\ +\xd0\x5e\xed\x30\xcf\xda\x8c\x5f\xdb\x06\x32\x7e\xc6\xa9\x41\x1f\ +\xf1\xbc\xb6\xa2\xc9\x06\x48\xe8\xc8\xe7\x62\x58\xb4\xc1\x3d\x69\ +\x5a\x03\xf2\x5d\x0a\x4a\x18\x29\x0f\x93\xcf\xa2\x0d\x6a\x28\xaf\ +\xb4\xc2\x4b\x03\x20\xaa\x31\x82\x0d\xab\xd1\xaf\x94\xa1\xcc\x04\ +\x74\x7a\x09\x66\xd1\x52\xd1\x31\x4e\xad\x94\x73\xe5\x6c\xdb\x0e\ +\x31\x48\x5b\xdb\x53\x92\x2f\x4d\xf0\xb6\xed\x34\xfb\x6e\xdb\xa2\ +\x7e\xa2\x01\x29\x6d\x57\xa8\x19\xd7\x2c\x8b\x44\x74\x2d\xb0\xd5\ +\x0f\xfd\x68\x80\x46\x03\x8e\x1a\x69\x31\x2b\x29\xd4\xf8\xac\x41\ +\x9b\xda\x90\xce\x50\x0b\x50\xa9\xb9\x33\xcf\x6c\xfc\x28\x0d\xab\ +\x72\x2e\x95\x8a\xa8\x0e\xb1\x7c\xc8\xbf\x94\x51\xd3\xa7\x98\x51\ +\xfd\x26\xf9\x22\x23\xca\x88\xb4\xf2\xbb\x99\xdb\x0a\x2b\x3a\x4e\ +\xa9\x66\xef\x09\x2f\x0d\xf0\xd8\xa0\x4f\x4a\xd7\xb8\xc8\xdc\xc4\ +\x13\x13\x4b\x93\xe5\xb3\xe5\x10\x69\x85\xda\xa8\xc8\x2b\x23\x28\ +\x16\xd0\xec\x78\x78\xee\xec\x61\xb4\x6a\x7c\xff\xa2\x12\x3a\xad\ +\x10\x5e\xa2\x4d\xc2\x34\x38\xa7\x74\xc7\x6e\xd5\x1e\xcb\xbf\x6b\ +\x79\xc3\x3c\x91\x1b\xcd\x5a\x21\xa0\x7b\xa7\x23\x1b\x46\xeb\xbb\ +\x19\xe0\x4a\xa3\x06\x32\x43\xe6\x5d\x10\x79\x38\xf2\xcc\x0c\x8e\ +\x3e\xdd\xc1\xae\xed\x6f\xc6\x8f\xbd\xef\x4d\xf8\xe8\xc7\xde\x86\ +\xdb\x6f\xdd\x07\x34\x86\xd0\x58\x69\xa2\xd0\x6a\xd3\x5f\x17\x5e\ +\x83\x65\x40\xfe\x4a\xc5\x12\x0a\xc3\x43\x34\xb3\xbc\x94\x97\x61\ +\x89\xbc\xb2\x96\xd7\x2a\xcc\xc3\x10\x7d\x0d\xa4\x6a\xb4\x8b\xe9\ +\x91\x3a\x96\xde\xac\xbe\x28\x85\x1a\x40\xd2\xbf\x0a\xd9\x06\x82\ +\x95\x77\xf2\x21\x4f\x83\x90\x9f\x41\x3b\x3d\xa7\x37\x59\x0f\xde\ +\x85\x8d\xc1\x0d\x83\x1e\x84\xc1\x80\x2f\x11\xaa\xa3\x6b\x74\x36\ +\x32\x91\xb9\x0d\xde\x33\x0c\x3e\x6f\x74\x1b\xc4\x46\x7f\x1b\x71\ +\x31\xb7\x1c\x39\x72\x7c\xf7\x61\x0d\x95\xee\xbc\xf4\x4d\xa5\xc1\ +\x94\x68\xf6\xa8\xef\x9f\x94\x68\x11\xce\x4d\x1d\xc7\xf2\xd2\x59\ +\x2c\x2d\x50\xd6\x78\xf4\xab\x36\xa1\xa7\x36\x36\x8c\x3d\x7b\xaf\ +\xc7\xb6\x3d\x57\xb1\x6d\x1c\xc7\xb6\x9d\xfb\xb1\x7b\xff\xf5\x94\ +\x01\x46\x19\xca\x69\x73\xb4\xd2\xab\x1f\xb3\x3d\x56\xfb\xc5\x2f\ +\x7e\xc1\x77\x13\x77\x5c\x7c\xba\xd9\xd7\x94\x86\x8c\x09\x07\x53\ +\x64\xc8\x4a\x66\xfe\xb9\xef\xab\xb3\x48\xad\xd9\xbe\xc9\x1f\xdb\ +\x0b\xb6\x25\xd2\x54\x49\x41\xa6\x15\x60\xda\xce\x4e\xed\x8f\x0b\ +\x55\x52\x4b\x82\xb9\xfa\x22\x0e\x9d\x7c\x04\x87\x4f\x3c\x85\x99\ +\xb9\x53\x38\x7d\xee\x04\x66\x97\x8f\xe3\xd4\xe9\x73\x38\x3b\x35\ +\x83\x95\x36\x50\xa5\x98\x15\x92\xb8\xce\x25\xad\x0c\x85\x28\x56\ +\x3c\x8c\x30\x8d\xb5\x61\x0f\xa3\x43\x3a\x57\xb7\xc2\xb6\x91\x7e\ +\x8a\xa2\xcc\x36\x9d\x6d\x68\x97\x6d\xac\xe2\xd2\xee\xd9\x6a\x93\ +\x82\x90\x69\x90\x10\xa0\x8b\xf0\x34\x81\x8a\x79\xdc\x67\x3b\x65\ +\x13\xb6\x18\x52\xb2\x9f\x26\xd3\x04\x9a\xd0\x21\x2e\x19\xa9\x1f\ +\x32\x3e\x6f\x98\xa2\x84\x87\x89\xb1\xed\xa8\x8e\x8f\xa1\x16\x8c\ +\x90\x8f\x61\x14\xe2\x50\x73\x48\xd8\x0e\xf6\xd1\x49\xdc\x64\xa5\ +\x56\x27\x41\xb3\x4d\x39\x43\xe1\x99\x0f\x11\xdb\x58\xcf\x2f\xc3\ +\x8f\xb5\x0a\x6e\x04\x93\xb5\x9d\x4c\xf9\x10\x26\x4a\xa3\xb8\xfa\ +\xc0\x7e\xd4\xca\x35\xe3\xa7\xcb\xbf\x80\x72\x46\x9d\x79\xf2\x1f\ +\x7f\xef\x37\xf1\x7f\xff\xe7\xff\x1d\xe5\xda\x1c\xde\xfb\x8e\x9b\ +\xf0\xfd\xef\xbf\x13\xad\x84\x72\x53\x54\x60\x3b\x1c\x61\x65\xb9\ +\x8e\x6e\x93\xa5\xaf\xf3\xd4\xa4\x9c\x22\x54\x2e\x92\x53\x94\x56\ +\x5f\xf2\x21\xdb\x62\x6b\xaf\xad\x2d\x2c\x38\xc5\x1d\xef\xaa\x56\ +\xed\x6e\x17\x61\x75\x08\xed\xa5\x3e\xae\xda\xbf\x0f\xd7\x5c\x73\ +\x35\xc3\xea\xdc\xb3\x2e\xfa\x41\x19\xe5\xa0\x08\x9d\x91\x5a\x5f\ +\x59\xc2\x6a\xb3\x63\xdb\x43\x6b\x2b\x66\xc9\x66\x7d\xca\x6e\x33\ +\x33\xd3\x88\xa4\xc8\x8c\x54\x7f\x98\x01\xca\x74\xcb\xbb\xbe\x29\ +\xd3\x3a\xa9\x42\xcd\xad\x4a\xa3\xec\x40\x19\x4e\x67\xa2\xca\x9d\ +\x8f\x48\xba\xe2\x49\x95\xc2\xb5\xe0\x9a\x94\xe4\x64\x18\x99\x59\ +\x36\x4a\x10\xf9\xd7\xfc\xb5\x12\xcb\xad\x56\xf3\x31\x34\xe2\xa3\ +\x5a\x09\x10\x96\x29\xa7\xaa\xb0\x55\x5e\x0a\xcb\xb8\xb5\x5a\x4d\ +\xe6\xe9\x93\x94\x13\x59\x3f\x3a\x71\x97\x91\x30\x2f\xe4\x2b\x55\ +\xa6\x49\x36\xb1\x50\x2c\x47\x55\x73\x77\x96\x18\x9f\xe5\xa6\x78\ +\x33\x8a\x34\xd3\xca\xf2\xcf\xc9\x6b\xa9\x1b\xef\x92\x55\x79\xe3\ +\x55\xc6\x96\x91\x2d\xb8\xfe\xc0\x9d\xd8\x3b\xf9\x4e\x94\x7b\x52\ +\x36\x56\xb0\xd0\x58\xc2\xd1\x63\xf7\xe1\xa1\x27\xff\x18\x8f\x3e\ +\x73\x1f\xca\x5b\x87\x49\x67\xd4\x64\x25\x2f\x50\xfe\x1b\xc7\xa4\ +\xc6\x7c\x60\x5e\x28\x3f\x74\xb9\x95\x8a\xb4\xa6\x5b\xdc\xee\x33\ +\xef\xdb\xe8\xb6\x3c\xb4\x16\x12\xcc\x9c\x6d\x60\x71\xa6\x81\xb8\ +\xd5\x43\x31\x09\x30\xb3\x12\xa3\x5b\xaf\xe2\x3d\x1f\x7f\x33\xfe\ +\x5f\x3f\xfc\x61\x7c\xf4\x7d\x1f\x60\xb8\x09\x96\xc7\x8a\xf5\x41\ +\x7c\x2d\xeb\xe3\x5d\xf2\x90\xa2\x72\x53\xaa\x04\xc5\x2b\x48\x4e\ +\x72\x70\xbc\x98\xf7\x35\xd7\x75\x64\x36\x9b\xbb\xe6\xc8\x91\x23\ +\xc7\x20\xf2\xaf\x44\x8e\x1c\x57\x0e\xb9\x42\x2d\x47\x8e\xd7\x30\ +\xf2\x97\xff\x15\x8e\xcd\xfa\x4e\x56\xa8\xeb\x0e\xfa\xb5\xc1\x02\ +\xf6\x2c\x35\xe3\x74\x76\xea\x04\x16\x66\x4f\x61\x75\xfe\x04\x1a\ +\xf5\x19\x76\x7e\xb7\x60\x68\x0b\xaf\xa1\x09\x8c\x4e\xee\x62\x47\ +\x78\x92\x61\xdc\xa0\x81\x66\xac\x4a\x4f\xe0\xce\x04\x10\x0d\x29\ +\xd1\x1c\x6d\xd1\x74\x51\x58\x84\x86\x8c\x15\xe7\x63\x90\xb1\x41\ +\xf3\x26\x58\x27\x71\x51\xa8\x73\xac\x16\xcb\xdd\xb3\x34\xe9\x4e\ +\xc7\x35\x1a\xcf\x8f\x6b\x6d\x50\x89\x89\x91\x4a\x50\x77\xdb\x02\ +\x29\xed\xbc\x6a\xa5\xdd\xf4\xfc\x2c\x4e\x1e\x39\x8d\x6f\x7c\xf5\ +\x7e\xdc\xfb\xe0\xd7\x71\x7c\xfa\x30\xce\x9d\x9d\x47\xb7\xb7\x84\ +\xca\x8e\x00\x3b\xae\x2d\x61\xe7\xde\x51\x78\x45\x9d\x0f\x51\x40\ +\xb5\xa4\x2d\x68\x02\x44\x7d\x0f\x1d\x0d\x08\xd9\x59\x55\xba\xd4\ +\xd9\x56\x7e\x49\x81\xc0\xb8\xe2\xc4\x06\x14\xca\xe5\x90\x77\x86\ +\x0b\x3d\x94\x4b\x15\xc6\xef\x78\xd7\x16\x85\xb6\x7a\x8a\xbd\xeb\ +\x6a\x35\xc4\x68\xad\x84\x4a\xa5\x84\xd1\xa1\x12\x86\xc3\x00\x25\ +\x4f\x4a\x93\x10\xc5\xa0\x8c\x42\xcf\x0d\xd0\x69\x88\x4d\x4a\x09\ +\x29\x5e\x34\x80\x26\x65\x9b\xa5\x9a\x71\xc7\xdd\x08\x0d\xd2\x6a\ +\x31\x4c\x3b\xf1\x30\x5c\x2a\xd9\xf6\x4b\x68\x33\x7c\x30\x8c\xb1\ +\x6a\x0f\x93\xed\x10\xd5\xad\xc3\xf8\xf8\x2f\xfe\x3b\x3c\xf7\x5c\ +\x0f\x9d\xa1\x29\xfc\xf5\xbf\xf5\x2e\xdc\x70\xd3\x18\x1a\x2d\x16\ +\x38\xd3\xb1\x58\x6f\xb0\x8e\x00\xdd\x4e\x93\xc4\xbb\xcc\xb2\x9e\ +\x04\x06\x68\x15\xa2\xf8\xe6\xbf\x45\x6a\xcf\x8a\x97\xe9\xb4\xc1\ +\x15\xa6\xdb\x57\x7e\xa7\x79\x50\xf1\x8b\x18\x2b\xd6\x30\x54\xac\ +\xa2\x10\xbb\x32\xd3\x6c\xdc\x6c\xe0\xcf\x14\x9f\xc6\xbd\x87\x7e\ +\x29\xc0\x72\xb7\x85\x95\xa4\x8b\xa4\x20\x25\x99\xd5\x32\xf3\x97\ +\x9d\x95\xd6\x68\x46\xa6\x54\xd3\xd9\x73\x64\xd4\x06\x4d\x22\x29\ +\xf1\x48\x4f\x4a\x34\x0d\x08\xe9\x39\x49\x48\xd5\xea\xaa\xee\xc6\ +\xd8\xfa\x60\x8c\xd8\xa3\xbd\x0d\xc0\x90\x7f\x9d\x75\x56\xae\xf6\ +\x31\x36\x5a\xb4\x99\xd5\xae\x6a\x38\xbf\x62\x4d\xdc\x29\xaf\x87\ +\xc7\xc7\x52\xbb\x3e\xe6\xce\x6a\x70\xac\xc3\xf2\xd3\xda\x47\x82\ +\xe9\x15\xc8\x05\x2f\x8f\x75\x43\x24\x3c\x8b\xd3\x06\x88\xe8\x66\ +\xf1\x91\xb6\x9e\x64\x76\x4c\x58\x30\xfa\xb1\x21\x15\xb3\x2b\x4a\ +\xd1\x4a\x67\x6d\x4e\x65\x33\xf8\x59\x7f\x16\x56\xaa\x38\xb5\x3c\ +\x85\xb8\xd4\xb5\xf3\x47\xec\xc0\xfb\x24\xb2\x33\x39\xba\x91\xf2\ +\x83\x75\x8f\x65\xd0\x15\x3f\xa4\x11\x59\xfe\xaa\x5a\x31\x8f\x68\ +\xaf\xb3\x5c\xe4\x47\x8c\xa8\xec\xc4\x63\x21\x64\xbe\xf2\x4f\x27\ +\xf8\x14\xdb\x3e\x0e\x3f\x33\x85\x43\x27\x7a\x78\xcf\xd5\xef\xc4\ +\xdf\xfe\x9b\x1f\xc0\x7b\xde\xf2\x06\xa0\xd4\x43\xe3\x3b\xcb\xe8\ +\xaf\x2c\xb1\x32\xac\x22\x6a\xb6\x91\x34\xba\x28\x55\x58\x2f\xc9\ +\x64\x4f\x2b\x0b\x98\x96\xae\x66\x67\x17\x7c\x14\x4b\x65\x14\x6b\ +\x35\x94\x86\x87\x35\x9a\x0a\x0c\xb1\xde\x95\x4b\xb6\xf2\xb2\x50\ +\xae\x32\x71\x25\x30\xb3\x49\xd7\x7d\x63\x06\xa1\xec\x70\xb9\x48\ +\x92\xac\x53\x96\x47\x2e\x19\x0e\xf2\x60\x90\x61\xd0\x61\x00\x99\ +\xf5\x9a\xdf\x14\x17\xf0\xfe\x52\xf1\x3c\x96\x36\x8b\x77\xa3\xdd\ +\x4b\xc1\x66\xe9\xc8\xe8\x7f\x97\xd2\x98\x23\x47\x8e\xcb\x00\xdf\ +\x43\x7d\xb2\xa4\x14\xb1\x6f\x57\x8a\xf9\xb9\x33\x98\x5a\x38\x81\ +\x25\x9d\xf1\xfa\xdc\xc3\x38\x37\x7d\x0c\x63\x63\x63\xd8\x73\xe0\ +\x66\x8c\x8e\xef\x40\xb1\x3c\x8a\xdd\xbb\x6f\xc4\xd6\x6d\x7b\xf9\ +\x0a\xeb\x3c\x32\xc9\x5e\xfc\x56\x93\x9e\x26\x30\xa9\xbd\x09\x28\ +\x7b\xf5\xd5\x9e\xa8\x4d\x23\x6d\xc9\x18\xd6\x16\x19\xd4\x4e\xaa\ +\x55\x71\x1f\x82\x8b\x7d\x06\xe4\xc3\xb9\xbb\x30\x66\x22\xbf\xa2\ +\xa5\xbb\xb9\x4a\x04\x90\x2b\x9f\x6d\x52\x8a\x41\xed\xb9\x9b\xc8\ +\x93\xc9\x4d\xc2\xd4\xc2\x22\x8e\xcd\x3e\x8b\x23\x27\x8f\xe0\xd0\ +\xd9\x83\x38\x73\xee\x04\x9e\x79\xf6\x51\xcc\xcf\x9f\xc3\xd2\xe2\ +\x1c\xdb\x30\xb7\x82\x47\xab\xa0\x87\xb4\xb5\x36\xdb\xd7\x1d\x93\ +\x25\x5b\x0d\x5d\x2d\xfb\xa8\x8c\x69\xeb\x6b\xb6\x11\x61\x05\x1d\ +\xb6\xe5\xbd\xc8\x63\x9b\x15\xdb\x44\x20\xdf\x73\xab\xf8\xd9\x14\ +\x33\xfd\xe2\x2c\xa2\x1d\xd3\xd9\x77\xdb\x88\x6b\x12\x8d\x68\xfb\ +\xe2\x9b\x7c\x69\x6b\x48\xb5\xb7\xa5\x22\xc3\xb2\xcd\x2c\x96\xcb\ +\xa8\xb1\xed\x19\x99\x18\xc6\xc4\xc8\x38\x86\x2b\x23\xa4\x57\xa4\ +\xec\x15\x50\x6e\xa1\x7f\xf2\x24\x29\xcd\xa7\x6c\xa1\xad\x09\x6d\ +\xd2\x50\x81\xed\x5a\x98\x60\xb9\x19\x62\x6a\x39\xc6\xc2\x42\x0b\ +\x8b\x4b\x5d\x78\xfd\x49\xdc\x70\xf5\x75\x94\xc9\xb6\x60\xc7\xd0\ +\x56\x6c\xdb\x7a\x35\xc6\x0a\x35\xb4\xbc\x69\x86\xe9\xe1\x63\x3f\ +\xff\x0f\x30\x73\xfa\x41\x96\xfd\x0c\x7e\xec\x33\xf7\xe0\xb6\x5b\ +\xae\x42\xa7\x15\x59\x7e\x37\x3a\x2b\x58\x9c\x67\xdb\xd9\xd1\xa4\ +\xab\xc4\x94\x6a\x92\x4f\xd8\xc4\xd9\xa5\x15\xfb\x52\x20\x6a\xf5\ +\x3b\x59\xb1\xf6\x59\x8a\x42\x29\xae\x24\x83\xaf\xad\x5c\x63\x5e\ +\x48\x1c\xbb\xee\x9a\x9b\xed\x0c\x3b\x29\xc2\x14\x46\x67\xbb\xaa\ +\x5e\xb4\xdb\x1d\x44\x94\xff\xb4\x1a\x50\xf2\x84\xda\xfc\x2e\x9f\ +\xe7\x67\xe7\x10\x25\xda\xc6\x91\xb2\x81\xea\x8c\xc5\x4b\xba\xa4\ +\xd9\x6a\x76\x4d\x66\x90\x1c\xea\xce\xb1\x93\x0c\x41\x79\x41\xcf\ +\xf2\xa8\xd5\x7b\x12\x71\x68\x94\x80\xa2\x7a\x62\xf2\x8c\xd5\x45\ +\x95\x09\x7f\x68\xaf\x6a\x21\xb1\xae\x24\x19\x77\xc8\x37\xe5\xa9\ +\x56\xa8\x95\x4a\x2c\x0b\x39\x10\xae\xbe\x2a\x3c\x9f\x59\x7e\xad\ +\x66\x1f\x4d\xad\x74\xd7\xb6\x9d\x92\x1f\xa5\x28\x56\x34\xa4\x6f\ +\x97\xe8\x2b\x2e\x5e\x92\x81\x2c\x18\x69\x18\x0f\xe4\x47\x13\xa2\ +\x04\xc9\x6b\x26\x6b\x19\x3f\x2e\x8c\x26\x6a\x39\xe5\x5c\x09\x55\ +\x7f\x14\x37\xbd\xee\x75\xd8\x33\x79\x27\x2a\xd8\x81\x2e\x7d\x3d\ +\x7d\xf8\x09\x3c\xf6\xf0\x97\xf1\xf8\xb3\xdf\x80\x5f\xad\xc2\xa3\ +\xcc\x02\x89\x47\x1e\x0b\x86\x7c\x48\x81\x66\x93\xc6\xf4\x24\xf9\ +\x89\xf9\xa1\x77\x51\xbf\xda\xa2\x5c\x31\xa9\x3c\xa3\x36\xfd\x24\ +\x3e\x96\xa7\x9b\x98\x3a\xdd\xc0\xd2\xdc\x32\x8a\x5e\x85\xef\x7a\ +\x0f\xf5\x5e\x84\xdb\xaf\xbd\x11\x1f\xf8\xd8\xfb\xf0\xf3\x3f\xfb\ +\x21\x4c\x94\xaf\x67\x1e\xb7\xc9\x3b\xeb\xbb\x5f\x21\x25\x46\x68\ +\x94\xf4\x4e\x51\x76\x15\x75\xa5\xcb\x52\x21\x85\xbc\xde\x41\x29\ +\xd4\xf4\x7e\x32\x3d\xca\xff\x34\x84\xdc\x9d\x3f\x57\x34\xcf\x87\ +\xf3\x93\x85\xc8\x91\x23\x47\x8e\x41\xe4\x5f\x86\x1c\x39\xae\x1c\ +\x72\x85\x5a\x8e\x1c\xaf\x61\xe4\x2f\xff\x2b\x1c\x59\x01\x3e\x4f\ +\x32\xa2\x43\x5f\x1d\x4f\xde\xa4\xec\x60\x8f\x78\x6e\x66\x1a\x9d\ +\xc6\x3c\xa6\x4e\x1d\x43\xb9\xec\x61\x78\x64\x08\x95\x91\x51\x8c\ +\x6f\xdd\x8d\x4a\x4d\x67\x70\xb8\xd5\x5b\xea\xbc\x69\x95\x8f\x7a\ +\x6f\x1a\x14\x5a\x1f\x76\x31\x92\x46\xda\xe8\x66\x77\xba\x66\xee\ +\x72\x5b\xc3\x5a\x20\x5e\x69\xb8\xcd\x30\xe8\x94\x99\x2f\xe2\xfd\ +\xe2\x18\x08\x2c\xde\x32\xb8\x34\x30\x2d\xcc\x0b\xcd\x78\xb5\x56\ +\x8f\x3f\xb6\x7d\x4b\x3f\x55\xae\xa9\xb7\x4a\xf4\x1a\xc0\xe3\x4f\ +\x1c\xc2\xe1\x27\x9f\xc5\xbd\xf7\xde\x87\x27\x8e\x3f\x83\xd3\xcb\ +\x67\x70\x72\xe6\x1c\x2a\x43\x5d\x6c\xd9\x0b\x54\xb7\x97\x30\x34\ +\x1c\xa2\x5a\x0c\xed\x9c\x88\xda\x50\x05\x09\x3b\xdf\xed\x58\xf3\ +\x96\x99\xdf\x1d\x0d\x3e\x29\x56\xe6\xa3\x96\x3a\x11\x6e\x3b\x4c\ +\x75\x9b\xfb\x28\x16\x0b\xbc\x34\xc3\x5c\xb3\x53\x9d\x02\x47\x4a\ +\x0f\x0d\x92\xc9\x5c\xa4\xfd\xd8\x50\x15\x3b\x46\x81\xe1\x4a\x88\ +\x91\xb0\x82\xd1\xd2\x30\xfc\xa0\x84\xa2\xb6\xa9\x51\xd9\x30\x3d\ +\x2a\x9f\x50\x53\xc1\x99\x2e\x4b\x7a\xac\x41\x11\xd2\x89\xb5\xba\ +\x2d\x60\x77\xbd\x8d\xd5\x46\x0f\xab\x2b\x6d\xb3\xef\xa0\x44\x9e\ +\x7d\xa0\x1d\xe0\xa6\xbd\xfb\xf0\xd8\xc2\x14\xfe\xe6\x3f\xf8\x02\ +\x3a\x85\x06\x86\xf7\x55\xf0\x0f\xff\xce\xfb\xe1\x4d\xf8\xd0\x71\ +\x71\x9a\x61\xdd\x6e\x31\xfc\x9c\x87\x66\x73\x85\xc4\x3b\xd0\x68\ +\x8f\x06\x3a\xb4\xd2\xc9\x06\x47\x98\x7f\x52\xb6\x6a\x3c\x40\x4a\ +\x41\x3b\xcf\x8c\x8c\x78\x5a\x99\x24\x05\x97\xb8\xe2\x7d\x8c\x89\ +\x9a\xac\x55\x31\x94\xae\x10\xf4\xa5\x98\xb5\x81\x39\x82\xc1\x95\ +\xf5\x3d\x8d\x9e\x30\x3f\xa7\x1a\x2d\x44\x9e\xb6\x13\xd4\xa0\x86\ +\x68\x90\x84\xe8\x16\x62\x74\xa3\x3e\x5a\xf5\x18\x1d\x29\x8f\x68\ +\xa7\x81\x0e\x9b\x39\x2c\x77\xd2\x61\x22\xed\xae\xb1\x48\xf1\xa6\ +\x19\xf6\xa4\xce\x7f\x95\x3e\xff\xc8\x87\xf8\x56\x3d\xb6\xb2\x90\ +\x3d\xcb\x4d\x83\x74\xe5\xaa\xde\x89\x00\xc3\xc3\x5a\x55\xc8\x60\ +\xe4\xc9\x0d\xde\xa4\x7e\xc9\xef\xf0\xe8\x18\xfd\xeb\x1c\x8f\x18\ +\xf3\xe7\x7a\xe4\xab\x89\x6e\x5b\x71\xe8\x32\x4e\x29\x54\xb9\x30\ +\xee\x30\x7e\x5e\xa4\xad\x3f\x25\x57\x63\x93\xae\x1e\xd0\x03\xa1\ +\x5f\x0d\xfe\x88\x57\x1b\xac\x64\xc4\x3e\xeb\x80\x22\x2f\x32\x9e\ +\x80\x01\x0a\x41\x82\xfa\x82\x8f\x73\x4d\x60\xb5\xb7\x8a\x56\xa3\ +\x4b\x77\xad\x26\x48\x9c\x12\x97\x69\xb6\xd9\xea\xca\x03\xf1\xc1\ +\x0c\x48\x44\x92\xe5\xad\xf2\xd0\x4c\x77\xcd\x36\xcf\x66\x6b\x5b\ +\xf9\x30\xc3\x93\x42\x97\xb1\x30\x1e\xba\xb5\xdb\x1e\x1e\x79\x62\ +\x85\x61\x76\xe1\xb3\x6f\x7f\x13\xfe\xfa\xa7\xde\x89\x7d\x7b\x6b\ +\xe8\x2c\x7b\x88\x9e\x9c\x45\x4f\x07\x7f\xb0\x4e\x17\x49\x3f\xb6\ +\x5a\xc5\xb2\x66\xf9\x68\x99\x60\x96\x7a\x8d\xa6\x29\x6d\xda\xa2\ +\x52\x9f\x0f\x9f\xf1\x6a\x10\x48\x4a\xe7\x02\xeb\x73\xe0\x07\x36\ +\x70\xd5\xe7\x55\xa8\x0d\xa3\x5f\xab\xa1\x57\xaa\xf2\x65\x2a\xc3\ +\x2f\x57\x11\xf0\xf2\x2b\xb4\xd7\xe1\x3c\xa4\xe5\x72\x28\xcd\x55\ +\xd5\xb3\x34\x5f\x0d\xf6\x6e\x29\x57\x09\x79\x10\xf4\x20\xf3\x60\ +\xc0\x35\xa4\x0e\x83\x7e\x36\xfa\xcd\xec\x84\xcc\xfe\x02\x38\x8f\ +\x04\x7f\xb2\x60\xe7\x85\xdb\x48\x6b\xcd\xd3\x06\x6c\x16\x66\x33\ +\x5c\x82\x27\xc3\xc6\x38\x73\xe4\xc8\xf1\x17\x00\xbd\x78\x6c\x57\ +\xf8\xed\x56\xbb\xac\x0f\x55\x2b\x6a\xe1\xec\x99\xe3\x58\x59\x3a\ +\x87\x13\x07\x1f\xc2\xfc\xcc\x31\x8c\x4c\x54\xb1\x73\xe7\xb5\x6c\ +\x6b\xb6\x61\x7c\x62\x2b\x76\x1d\xb8\x0e\x95\x60\x3b\xc3\xaa\xc1\ +\xb1\x4f\x37\x3f\xa9\xfc\xba\xf2\x7b\x69\x93\x6c\x06\xe0\xda\x32\ +\xda\x31\xaa\xb5\xef\x60\x0a\xf7\x25\x74\x3c\xbc\x70\x28\x5c\xf6\ +\xe1\x20\xf8\xad\x55\x4c\xf6\x5d\x53\x1b\x2a\x2b\xd9\x93\x9f\xf4\ +\x8b\xcb\x76\x4f\xdf\x76\x5e\xd6\x76\x52\x5e\x60\xcb\xe0\x52\x40\ +\xb9\x81\x81\xbf\xf2\xe8\xd7\xf1\xf4\x91\x43\x38\x7e\xe4\x31\x1c\ +\x39\xfd\x2c\x8e\x4f\x9d\xc4\xf4\xf4\x32\x3a\x51\x03\x25\x32\xdf\ +\x4d\x3a\x08\x4b\x94\x7d\x82\xa2\xad\x66\x9a\xdc\x32\x8c\xdd\x3b\ +\x2a\xf0\x46\xdb\x18\xaa\x55\xec\x4c\x36\x29\x79\x3a\xad\x84\xb2\ +\x82\xb6\x8b\xd4\xb7\x5f\xca\x16\x9d\xd3\xca\x8b\x32\x47\x49\x0a\ +\x16\x36\xaa\x5a\xc8\xa6\xad\x1e\xa5\xf8\xa3\x8d\xad\x94\x16\x2f\ +\x6a\xff\x24\xdb\x85\xa4\x55\xe6\xa5\x2d\x9b\x77\x6f\x1b\xc7\x50\ +\xb5\x46\xbb\x11\x53\x44\x45\xa4\x28\x45\x8c\xa6\xae\x08\xda\x12\ +\x92\x2d\xa5\x29\xbc\xd4\x5e\x97\x69\x5d\xac\x68\x12\x59\x88\x05\ +\x26\x6c\x7e\xbe\x85\xd5\xd9\x08\xc5\xda\x76\x4c\x8e\x5e\x4f\x19\ +\x70\xdc\x14\x76\x45\xb6\xa5\x8f\x4e\xad\xe2\x7f\xfd\x07\xbf\x84\ +\xd1\xd1\x43\x40\xa9\x8d\x9f\xfa\xf8\xbb\x71\xe0\xc6\x12\xfa\x5a\ +\xc1\xc4\xb6\x73\xba\xb5\x88\xee\x8a\xda\xec\x8e\x29\x8f\x7a\xb6\ +\xa2\x5e\x22\x8b\x6b\xc9\x94\x8c\x62\xc8\x3c\x66\x1b\x2a\xb9\xc7\ +\x94\x29\x64\x22\xa2\x5f\x93\x75\xd8\xde\x06\x74\x6f\x68\x77\xc4\ +\x5e\x05\xd7\xdf\xb0\x9f\xf9\xe4\xce\xc7\xb5\xc9\x38\x4c\x47\x94\ +\x74\x2d\x3d\x5a\xf5\x24\x19\x43\x5b\x37\xae\x2c\xd6\xed\x6c\x5c\ +\x9b\x68\x43\x58\x76\x31\x5e\x6b\xc9\xd9\x7e\x4b\xa1\x16\x53\x60\ +\xd2\xaa\x3d\xed\x02\xa0\x09\x36\xda\x06\x52\x2b\xd6\x74\x86\x5b\ +\xaf\x4b\xde\xa4\x68\x12\x8f\x92\x61\x48\xd7\x2e\xfe\xd1\xc0\xb8\ +\x69\xa2\xbd\xf2\x4b\x32\xaf\xb6\x78\xac\x52\x96\x92\x42\xad\x56\ +\x0b\x4d\xa1\x26\xb9\x40\x75\xd7\xc9\x3a\x92\x8d\xa4\x66\xa5\x8c\ +\xc8\x3a\xdd\x6c\xf6\x29\x9f\xea\x9c\x3f\x6d\xef\xad\x78\x98\x6e\ +\xd2\x95\x1c\x2c\x0b\xed\xd0\x20\xb9\x4d\x93\xd1\x64\xef\x64\x36\ +\x51\x93\x5f\x17\xaf\xd9\xeb\x99\xf1\x3b\xb9\x92\xf5\x96\xe5\x5b\ +\xf4\x4a\x28\x87\x35\x1c\xb8\xea\x7a\xec\xdd\x7b\x03\x86\x30\x89\ +\x45\xd6\xc1\x27\x1f\x7d\x12\x5f\xfb\xc6\xe7\x30\x35\x7f\x02\x43\ +\x5b\x77\xd2\x7f\x09\x1e\xf3\xd7\x0b\x9c\xf2\x4a\x4a\x4f\x37\x34\ +\xc6\xdc\x60\x1e\x69\x25\x21\xb3\x52\xc9\xb5\x38\x34\x49\x49\xe9\ +\xd7\x82\xd1\x24\xf6\x30\x7d\xbc\x83\x05\xd6\xef\x56\xa3\x8d\x5e\ +\xbd\x8c\x99\xb9\x0e\x46\x26\xb7\xe1\x1d\xdf\x7f\x37\xfe\xda\x8f\ +\x7c\x00\xef\xb8\xe7\x8d\x5a\xcf\x68\x79\xeb\xf5\x29\x45\x31\xff\ +\xb5\x2d\xb9\xc7\xf4\x6b\x1b\xee\x1e\xf3\x9d\xa5\xc6\x38\x29\xf3\ +\xb1\x8c\xa5\xf0\x95\x8c\xac\x72\x94\x8c\x96\xd6\x68\x5e\xca\x1d\ +\xde\x4d\x46\xd4\xdb\xe0\xc2\xd9\xcb\x6a\xfe\x9c\x9f\xe7\xdf\x73\ +\xe4\xc8\x91\xe3\x7c\xe4\x5f\x86\x1c\x39\xae\x1c\x72\x85\x5a\x8e\ +\x1c\xaf\x61\xe4\x2f\xff\x2b\x14\x59\xc1\x5d\xa0\xef\xb4\x2e\x28\ +\xf5\x6d\xa6\xf3\xd2\xfc\x3c\xea\x4b\x0b\xb4\x8f\x51\xae\x54\xb0\ +\x6d\xcf\x1e\x04\x5e\x25\xf5\xa3\x41\x76\x76\xcd\xd4\xb1\x67\x40\ +\x9b\x09\x49\x3b\x1b\x56\xa1\xc1\x75\xf7\x2f\x86\x01\xd7\x8b\x55\ +\x28\x47\xf4\x79\xc8\xac\x37\xc6\x31\xe8\xf5\x02\x41\x9f\x8f\xf3\ +\x3c\xf1\x41\x9d\x6f\xd3\x9e\xa8\x93\xec\x6c\xad\x4b\xda\x73\x69\ +\x92\x93\x81\x69\xd7\xb9\x58\xda\x0e\xc8\x66\x40\xcb\x8e\x9d\xe5\ +\x95\xf9\x53\x38\x7a\xe4\x34\x8e\x3f\x7b\x0a\x7f\xfe\xe5\xef\xe0\ +\xa1\x53\xcf\xe0\xcc\xf2\x02\xe6\xeb\x0d\x14\x2a\x1d\x0c\x6f\x0b\ +\x50\x1d\xf5\xb0\x7d\xb2\x8c\xa1\xf1\x02\x6a\xc3\xda\x52\xa8\xc7\ +\xa0\xa4\xd0\x8b\x18\x4f\xec\x06\x2f\x18\x91\x3a\xe9\xd6\x79\x96\ +\xa2\x83\x66\x1d\x5c\x1f\xb0\xf3\xaf\x01\x9f\x4a\xd1\x86\x03\xec\ +\x59\xb1\xab\xd3\x1c\x68\x75\x59\x50\xc4\x48\xb5\x80\xd1\xaa\x8f\ +\x2d\xc3\x35\x3b\xd3\x63\xa2\x56\x43\xb9\x58\x46\xb9\xcc\xce\x76\ +\xc2\x60\x9e\xdb\x4a\xd1\xe2\xb0\x41\x24\xc6\xad\x0e\xb6\x7a\xed\ +\x9a\x55\x2b\x85\x0a\xcb\x34\xf1\x3a\xe8\x74\x3c\x44\x2d\x6d\x9b\ +\xd8\x41\x77\xb5\x63\xdb\x4b\xfe\xf9\xc1\x69\xfc\xce\x6f\x3d\x89\ +\x16\xdd\x5f\xff\xb6\x6d\xf8\xab\x3f\xf7\x56\x5b\xdd\x16\x75\x34\ +\xb3\x5c\x83\x2d\x5d\x2c\xcf\x76\xd1\x6a\x74\xd0\xd3\xca\x31\x69\ +\x4b\xa0\xb9\xcb\xaa\x19\x1e\xa3\x8b\x2d\x2a\xa5\xc7\x0d\x48\x29\ +\xa3\xc5\x83\xcb\x47\x0d\x0c\x05\x49\x01\x5b\x4a\x3e\xb6\x56\x4a\ +\xa8\x86\x45\xe8\x0c\x11\x0d\x14\x88\x82\xb6\x7a\x2c\x69\xb6\x79\ +\xc0\xf0\x65\x0f\xa7\xc8\x57\x3b\x60\xbe\x31\x1e\x29\xe5\x12\x91\ +\x93\xd2\xac\x1f\x93\xef\x04\xad\x66\x62\xb3\xad\x25\xba\x44\x5d\ +\xe6\x29\xc3\x5b\xd1\x92\x07\x0d\x7e\xf4\x78\xe9\x1c\x35\x9b\xd9\ +\xab\x19\xc6\x56\x9e\x8e\x1f\x8d\x39\xd8\x40\x65\xca\x9b\x9b\xf1\ +\xec\xae\x0a\xf3\x78\x68\xd8\xc7\xc8\x68\x00\xad\x2e\x73\x41\x9c\ +\x3f\xfd\x68\x56\xf5\xf0\xc8\x30\xf3\x4c\x5b\x60\x25\x98\x3f\xd3\ +\x65\x1c\x9a\x01\x1e\x33\xcf\x8d\xc9\xb5\xfa\x27\x85\x9c\x9b\x61\ +\x9d\x0e\x00\x29\xbc\xe2\xa5\x07\xad\x4c\x34\x53\x4a\x5b\x6e\x7a\ +\xe7\xc2\x20\x64\x38\xe5\x0a\xf3\x81\xf5\x46\x03\x48\x6d\xe6\xf7\ +\xc2\x7c\x80\x99\x59\xe5\x49\xd3\x06\xba\xba\x7c\x9f\xbb\x51\x87\ +\x69\x65\x3d\xe2\x15\x33\x6f\x18\xb3\xf1\xa8\xbc\xd6\x9f\xf8\x91\ +\x02\x55\xdb\x3e\xa9\xbc\x8c\x3d\xc5\x67\x4e\xac\xe7\xac\x38\x1e\ +\xf3\xa8\x4a\x46\xa6\x4f\x44\x38\x38\xd5\xc7\x64\x78\x0d\x7e\xf1\ +\xaf\x7c\x04\x9f\x79\xfb\x8d\x40\xcd\xc7\xfc\x33\x53\xf0\xa7\xe7\ +\xd1\x6f\xf7\x4c\x51\x5b\xf2\x7a\x68\xd3\x7f\xb7\xd3\xb5\xed\x3c\ +\x2d\x0e\xc5\xa7\x44\x64\xef\x8c\x14\x96\xfc\x4b\xe8\x6e\xdf\x0d\ +\x0d\xb8\x5a\x8a\xe8\x9d\x3f\xda\x7e\x95\xec\x5a\x9d\x34\x3e\x74\ +\x38\x0d\xeb\x74\xb1\xa2\x15\x6d\xe3\xf0\x47\xc6\xe0\x55\x86\x19\ +\xff\x30\x82\xd1\x71\x94\x46\x86\x80\xea\xfa\x4a\x36\xd5\x3c\x85\ +\x0f\xd3\x78\x2d\x4e\xf1\x92\x41\xe9\x5c\xbf\xa5\xee\xbc\x94\x01\ +\xc6\xb3\x2c\x2e\x03\x19\x49\xf9\xdf\x40\xde\xc8\xd9\x53\x8a\xec\ +\x61\xc0\xdf\x79\xb8\x58\x9c\x1b\xc3\x6c\xe6\xf7\x42\x74\x37\x62\ +\x63\xd8\xcb\x0d\x97\x23\x47\x8e\x97\x04\x7d\xed\xb2\x17\xae\xdb\ +\x6d\xe3\xe8\xd1\xc3\x58\x59\x9a\xc1\xdc\xf4\x71\x84\xa5\x12\x26\ +\xb6\x8d\x62\xa8\x3c\x86\xad\x3b\x77\x61\x62\x62\x17\x7d\x96\xcd\ +\x6f\x26\x0f\xe8\xfb\x64\x4a\x81\xf4\xfb\xb9\xd6\x2d\x37\x92\xf6\ +\x25\xb5\x7b\x16\xc7\xba\x49\x58\x37\x19\x36\x7e\x07\x32\x6c\xf0\ +\x96\xc1\xb5\xe3\x03\x8e\xfa\xb6\xae\xc5\xe0\xdc\xd4\xc2\xb8\xbb\ +\x9c\x53\x37\xfe\x4b\xb6\x51\xdb\x25\x83\xd2\x12\xf0\x7b\x2f\x39\ +\xd2\xa7\xdc\x22\xe8\xbc\xce\x47\xa6\x9f\xc2\xa3\x87\x1f\xc3\x03\ +\x4f\x3e\x83\x27\x8e\x1c\xc1\xcc\xd9\x73\x98\x5d\x6c\xa0\xb5\xd0\ +\x40\xa9\x18\x83\xe2\x8d\x53\x6c\x85\x09\x46\x87\x3d\x6c\xd9\x55\ +\xc2\xe8\x18\xaf\x2d\x6c\x0f\x49\xba\xd9\xd0\x2a\x2f\xad\xac\x72\ +\x8a\x23\xb5\xb3\xe5\x90\x79\xc5\x36\xb2\x54\xea\x63\x98\x97\xad\ +\x58\xf3\xdd\x24\x9d\x90\xb2\x95\xda\x21\xb5\x7b\x92\xfd\xa4\xe4\ +\xd1\x0a\x29\x9d\x6b\x56\x2c\x97\x30\x34\x54\xe1\x55\x45\xad\x3a\ +\x84\xe1\xe1\x22\x69\x52\x1e\xf1\x9c\xd2\x2c\x9b\xec\xc2\xe6\x8c\ +\xb4\x03\xf4\xa3\xc4\xda\x5b\xb5\x57\x45\xca\x2f\x85\xa0\x0c\x4d\ +\x43\x69\xad\xf6\xb1\x54\x4f\xd0\xe9\x6f\x43\xd9\x2b\x63\x78\x68\ +\x02\xdb\x2a\x3e\x3e\xf7\xe0\x73\xf8\xd3\xdf\xf8\x36\x62\xef\x0c\ +\xf6\xec\xf4\xf0\x83\x3f\x7c\x07\x0e\xec\x9d\x40\x6b\xa9\x89\x16\ +\xdb\xdb\x66\xab\xc1\x7a\xd1\x64\xbe\x74\x99\x0c\x9d\x59\xc6\x36\ +\xd4\x94\x65\xca\x37\xc5\x4b\x1e\x29\x0b\x8a\x0f\xb5\xe5\x14\x6d\ +\x2c\xbf\xa5\x64\x6b\xdb\x6a\x34\xca\x57\x4c\x9e\x26\x16\x55\xfd\ +\x21\xec\xdd\xb7\x9d\xf2\x63\x99\xb2\x92\x25\xd9\x64\xfd\x6a\xb5\ +\x42\xb3\xcf\xf0\x94\x85\x48\x60\x7e\x76\x1e\xcd\xb6\xce\x57\x4d\ +\xdb\x5c\x8b\x4b\x25\x4c\xf9\x80\xe1\x5a\xcd\x36\xb4\x55\xb4\xe8\ +\x6a\xf2\x8d\xdc\x6c\xeb\x68\xf2\x25\xbf\x52\xf6\x68\xcb\x47\x4d\ +\xf8\xd1\xb2\x30\x93\x89\xec\x62\x84\xaa\x22\xbc\x4c\x66\x4e\x1f\ +\x8b\x2c\xfa\x2a\x65\xa9\x1a\x65\x29\x53\xa8\x55\x98\x1e\xf9\x4f\ +\x65\x5b\x55\x22\x3f\x64\xde\xf2\xde\x63\xbe\xab\x36\xcd\x9f\x6d\ +\x51\x3e\xd0\xca\x7a\x57\xcf\xd6\x26\x21\x49\x3e\x63\x7e\xeb\x0c\ +\x36\x99\x45\x41\x42\x8c\x56\x49\x2a\x3e\x49\x90\x2a\x2b\x53\xd4\ +\x99\x99\xf6\x81\x26\x0f\xd9\xe6\xa1\x94\xe7\xb6\xe0\xea\xab\xae\ +\xc3\xf6\xdd\x5b\xe9\x3e\x8c\x53\x27\x97\xf1\xe8\x83\x0f\xe0\xd1\ +\xfb\xbe\x8e\xde\x90\x8f\xa0\x4a\x99\x43\x61\xd8\x2f\x12\x1f\x8a\ +\x57\xe9\x57\xde\xa9\xfe\xb8\x95\xfd\x92\xd7\xe9\x28\xf4\x54\xff\ +\x18\x1f\x65\xde\xa8\xcd\x32\x69\x24\x58\x9c\x89\x71\xee\xe4\x34\ +\xda\x75\xad\x58\x93\x4c\x5a\xc1\xeb\xef\x7e\x3d\x3e\xf5\xd9\x77\ +\xe0\x63\xef\x7d\x2b\x46\x82\xad\x58\x8e\x9a\x26\xbf\xae\xd4\xeb\ +\x68\x2c\xaf\x20\x60\xfd\xed\xb0\x2e\x50\xc4\xa3\xbd\x94\x75\xee\ +\x8d\x0b\x3c\xf2\x5d\x2e\xd2\x5e\x57\xd9\xb6\x50\x97\x5c\xe8\xf7\ +\xdd\xf9\xbd\xe5\xda\x28\x4a\x61\x8d\xfc\xba\xf7\x2b\x83\xc2\x8a\ +\x67\x75\x60\xac\x6c\x54\x4e\xca\x2b\x73\xd1\xdd\x99\xd6\x71\xfe\ +\x53\xe6\x27\x47\x8e\x1c\xaf\x1d\xe4\x6f\x7d\x8e\x1c\x57\x0e\xb9\ +\x42\x2d\x47\x8e\xd7\x30\xf2\x97\xff\x15\x8c\xc1\xc2\xcb\xfa\x4e\ +\x29\x4c\x50\x62\xc7\x53\xab\x77\x34\x18\xb0\xb4\xbc\xc4\x4e\xff\ +\xb0\x6d\xc7\x96\x41\x4a\x90\xbe\x4d\x3d\x65\x87\x37\xed\x90\x5a\ +\x48\x35\x09\xcf\x93\xb4\x9e\x67\xb1\x8e\x8d\x7c\x64\xc8\xec\x07\ +\x48\xaf\xdd\x75\xa3\xd9\xbc\xa4\xf6\x6b\xce\x34\x6c\xc6\x82\xf9\ +\x25\x32\x7b\xf3\xbb\xe1\x9e\xc1\xd9\xd1\xd6\x7a\xc2\xbc\xcc\x91\ +\x9d\x4c\x75\x98\x6d\x50\x86\xee\xd2\x42\x38\xa3\x43\x94\xf0\x62\ +\xa7\xde\x63\x07\x5a\x4a\x88\x30\x62\x97\x3c\x00\xa4\x30\x69\x45\ +\x88\xe6\x57\xf0\xe0\x33\x67\xf0\xc8\x93\xc7\xf0\xd0\x43\xdf\xa1\ +\x79\x0e\x87\xbb\x4b\x68\xf6\x3b\x08\x87\x56\xb1\x6d\x6b\x82\xe1\ +\xdd\x05\x6c\xad\x16\x30\x36\x51\x21\x9d\x3e\x62\x46\xd2\x65\x62\ +\xa4\x90\xd0\x9f\xad\xec\x62\xa4\x52\xa8\x79\xe9\x96\x7d\x1a\x14\ +\x08\x4b\xec\x22\x07\x3e\x42\xaf\x04\x4f\xdb\x11\xf1\x4f\x8a\x22\ +\xcd\x66\xad\xb0\xd7\x1d\xe8\xec\xb4\x92\x8f\x11\xf6\xa3\x77\x8c\ +\xd7\xb0\x63\xb4\x82\xf1\x91\x2a\x86\x6b\x21\x8a\x3e\xe9\x07\x25\ +\x14\x44\xbb\x5f\x62\x42\xdc\xa0\x89\x06\x58\xdc\xd6\x37\xbc\x6b\ +\x70\x85\xc9\x08\xfc\x9e\x0d\x20\x24\xbd\x2e\x9a\xad\x36\xda\x73\ +\x8b\x68\x94\xf7\xe2\xff\xfe\xdc\x83\xb8\xef\x5b\x0b\x58\x2d\x4c\ +\xe3\x43\x1f\xbd\x1d\x9f\xfc\xe1\xdb\xd1\xea\x7b\x88\x3a\x5a\xe5\ +\xd6\x32\xc5\xd5\xca\x42\x07\xab\x4b\x4d\x24\x51\x97\x74\xa3\xb4\ +\xfe\xb0\x7e\xd1\x9f\x06\x85\x54\x8f\x34\xf0\xa3\x78\x33\xb1\xc2\ +\x95\xa5\x5b\xb9\xa6\xa3\xe5\x46\x99\x9d\x13\xe5\x00\xc3\xa5\xa2\ +\xcd\x42\xf7\xfb\x3e\xe9\x25\x28\x69\x46\x7e\x89\x74\x4a\x01\xce\ +\x36\x3a\xe8\xb2\x0c\x34\xdb\x5f\x64\x14\x8f\x1b\x5c\x8a\xd0\x6c\ +\x24\x68\xb5\x33\x25\x11\xed\x34\xd8\xc3\xbc\x15\x2c\x4a\x1a\x3b\ +\x5d\xf2\xa6\x23\x39\x68\xe1\x66\x4f\xeb\xbc\x0e\x16\x87\xcf\x1f\ +\x31\xc4\x7f\x1b\x98\xa1\x9b\x1b\xe8\xd1\x00\x0e\x50\xe4\xab\x31\ +\x34\x14\x60\x74\x2c\x44\xe8\xf6\xd4\xb4\xb2\x12\x34\x90\xa7\x59\ +\xc3\xa5\x6a\x19\xa1\xb6\x3a\x64\xf0\xe9\xd3\x75\xf8\x49\x40\xbe\ +\xda\x36\x08\xe3\x18\xb0\x98\x4c\xa1\x66\xf9\xaf\x3c\xa1\x67\xcd\ +\xb2\x4e\xa3\xe4\x4d\x65\x23\x9e\x48\x9f\xf6\xe2\x41\x2b\x24\xc3\ +\x40\x1b\x3c\x6a\x65\x02\xd3\x96\x74\x51\x6f\x77\x31\x3b\xef\xe1\ +\xcc\x74\x13\x11\x1a\xcc\xc3\x4c\x39\xab\xb2\x8c\x95\x54\x42\x0a\ +\x47\xd5\x2c\x17\x77\xe6\xae\xad\x9b\xa4\x4c\xd3\x2c\x73\xf1\x65\ +\xe7\xf0\x31\x72\x29\x2f\x15\xb2\xd6\x53\xb8\x3e\x0e\x3e\xb7\x88\ +\x63\xa7\x87\xf0\xfe\x6b\x6e\xc5\xff\xe7\xa7\x7f\x00\xaf\xbf\xa1\ +\x86\xe6\x54\x8c\xf6\xa9\x59\xac\x2e\xb7\x50\x85\xb6\x1a\xd5\x96\ +\x92\x0c\xa5\x74\x80\xef\x06\x7f\x2d\xa9\x16\x2b\xf3\x4f\x69\xb3\ +\xb4\xea\x6e\x06\x4b\xab\x9e\xe5\x6e\x9c\x29\x6e\x59\x2a\x3b\x55\ +\x1f\x68\x94\x82\x4d\x3f\xce\x1f\xcb\x9e\x1e\xb5\x8d\x57\xcf\xbe\ +\x47\xaa\x0f\x15\x54\xc6\x27\x80\x31\x29\xda\xb6\x21\x1c\x1b\x42\ +\x38\x3c\x0e\x4f\x2b\xda\x14\x9e\xc1\x95\x06\xd5\x2b\x3d\xd9\xfb\ +\x2e\x9a\x69\x9c\xfa\xa1\x8d\xfb\x91\xc5\xc6\xfb\x20\x06\xed\x2c\ +\x50\x8a\xcc\x7f\x8a\xcd\xc8\x0c\x06\xbd\x20\x2e\x16\x50\x77\x61\ +\x33\x22\x99\xdb\x0b\xc5\x20\xdd\x1c\x39\x72\x7c\x57\xa1\x57\x4d\ +\xdf\xe1\x56\xa3\x61\x0a\xb5\x53\xa7\x4e\xf0\xbb\x14\x63\x78\x74\ +\x14\x93\xbb\xae\x42\x85\xdf\xb2\x0c\xf2\x67\xed\xbe\xda\x06\xbb\ +\xf4\xe5\x72\x1f\x03\x9b\x9c\x40\xb8\xa7\xec\x15\x3e\xff\x69\x0d\ +\xd9\xf7\x22\x73\x7e\x11\xb8\x78\x30\xe7\xba\x16\xb3\xfb\xe8\x67\ +\x0f\x66\xb4\xf6\x9f\xfc\x7b\x4c\x93\xbe\xe7\x6a\xb3\xb5\x5a\xda\ +\xef\x47\x94\x9f\xb4\x4a\x5f\x2b\x6d\x4c\xed\x81\x06\xf3\xe3\xd0\ +\xd9\x59\x3c\x76\xf8\x08\x9e\x3a\x78\x1c\x4f\x3c\xfd\x1c\x66\x4f\ +\x9f\xc6\xc1\xd3\x33\xe8\xb4\x5b\xf0\xd8\xbe\x87\xa1\x64\x8b\x16\ +\xfa\x41\x82\xc9\xad\x55\x6c\xdf\x55\xc5\xf8\x44\x80\xb0\x58\x30\ +\xc5\x46\x44\x59\x56\xdf\x7c\xc9\x1b\xc5\x90\xdf\x79\xb6\x93\x61\ +\xd0\x45\xd1\xd3\x04\x14\xb6\x9e\xbc\x6a\x5a\x31\xcf\x46\x41\xca\ +\x09\xc9\x24\x3a\x73\x4d\x5b\x47\xaa\x2d\xb7\xf6\x95\xce\x95\x72\ +\x88\xa1\xe1\x32\x46\xb7\x54\x4c\xe9\x53\x2d\x53\x36\x2e\x97\xd0\ +\x8b\xa4\xe8\xd1\x16\xcb\x1e\xca\xda\xa6\x58\x0d\x0a\xd3\x2b\x19\ +\xda\x56\x80\x33\x7d\xa2\xe9\x15\x8b\x94\x03\x7c\xca\x5e\xc3\xb6\ +\xd2\xa8\xd3\x2e\x62\x24\xf2\xb0\xeb\xea\x2a\xfe\xf9\x2f\x1f\xc6\ +\x57\x3f\x7f\x3f\xca\x95\x55\xec\xbc\xa6\x8c\x1f\xfa\x81\x3b\x30\ +\x32\x9e\xa0\xbd\xa2\x9d\x22\x28\x47\xd5\xeb\x68\xd6\xbb\x0c\x17\ +\xb1\x5d\xed\x52\xbe\x61\x5b\xcc\xcb\xc9\xea\x4e\x1e\xd1\x39\x72\ +\x6a\x46\x95\xcb\xe2\x47\xf5\x44\x8a\x3d\xd5\x15\x92\x60\xfb\xe8\ +\xdb\xea\xbd\x91\x4a\x0d\xbb\xf7\x4e\x9a\xe2\x45\x6e\x92\xd3\x6a\ +\x76\xce\x2b\xf3\x86\xe1\xb4\xc3\xc0\xc2\xc2\x0a\xe9\x3b\x59\x40\ +\xec\xcb\x5e\x71\xb1\x16\x52\xa6\x28\xa0\xd1\xa4\x7c\x27\xa5\x91\ +\x64\x03\x93\xab\x78\xd7\xca\x77\x16\xa8\xcc\xb6\xca\xbd\xe3\xf2\ +\xcf\xfe\xc5\x18\x9f\x24\xeb\x29\x4e\xc1\xfa\x0f\xfa\xe7\xa5\x85\ +\x87\x3a\x87\x56\x93\x93\xaa\x52\xa8\x55\xd5\x9e\x4b\xe2\xd2\x9f\ +\xf2\x93\x6d\xb6\x66\x2c\xa9\xb2\xab\x8c\x28\x5f\xcc\x1e\xef\x30\ +\x4f\x35\x01\x8d\xf1\xcb\x17\x09\x89\x96\xc9\x6f\x34\xe8\x8c\x3c\ +\x53\xda\xa5\x71\xc8\x5d\x51\x4a\xdc\xd0\x5d\x39\x65\x93\x77\xc8\ +\x93\xe4\x4d\xbf\x40\x19\x79\x72\x3b\xc6\x77\x8d\x63\xd7\x8e\xab\ +\xb0\xb0\xb4\x82\xe7\x9e\x3c\x85\xc7\x1f\x78\x0e\xa7\x4f\x1f\x41\ +\x30\x51\xa3\x5c\x53\x32\x3e\x6c\xd2\x9b\xd5\x50\x51\x91\x3c\xe9\ +\xf2\xc2\xe4\x4e\xfd\x90\x1f\xe5\x97\x3a\x0c\x09\xf3\x41\xf9\x1f\ +\xb5\x62\xca\xc2\x09\xea\x4b\x6d\x2c\x4f\x2f\x63\x71\x5e\xe7\xf0\ +\xf5\xb0\x77\xd7\x1e\xbc\xfb\xa3\x77\xe3\xb3\x3f\xf3\x01\x5c\xb7\ +\x63\x1f\x66\x29\x8b\xb6\xeb\x6d\x74\xdb\x94\x9d\x3b\xcb\x68\x2e\ +\x2f\xa3\xd3\xa9\xa3\x54\xa9\x52\x46\x65\x1d\xe0\x77\x40\xe5\x2d\ +\x3d\x9d\xc9\x68\x8a\x86\x79\x6e\x6f\x97\x7e\x74\x5e\x60\x8f\x72\ +\x32\xcb\xbb\x52\x1e\x45\xb5\x5a\x63\x5d\x1d\x42\xa9\x3c\x82\xb0\ +\x5f\x61\xb9\x0f\xa3\x52\xac\xb2\xcc\x47\x59\xb7\xa5\x64\xd3\x4c\ +\x30\x07\x53\xd4\x93\x77\x5d\xda\xfa\x92\xb9\xc3\xbb\x72\x57\xf2\ +\x91\xc5\x30\x00\xcb\xc4\x1c\x39\x72\xbc\x86\x90\xbf\xf5\x39\x72\ +\x5c\x39\xe4\x0a\xb5\x1c\x39\x5e\xc3\xc8\x5f\xfe\x57\x20\x54\x68\ +\x92\x84\x06\xef\x9b\x82\x0e\x72\x53\x1f\x96\x7f\xdd\x84\x1d\x72\ +\x76\x10\x6d\x36\x6e\x6a\x67\x03\x38\x19\x9d\x75\xc3\xe6\xb8\x60\ +\x3c\x03\x38\x8f\x9e\xc3\x5a\x07\x6e\xa3\xbd\xac\xf8\xbc\x6e\x95\ +\x05\x76\xb7\x0d\xde\x2f\x81\x2c\x2c\x63\x12\xd1\xb4\x59\xd3\xac\ +\xd8\xf3\xe3\xa0\x7d\xd4\x00\x56\x97\xd1\x5b\x6e\xa0\xb5\x52\x47\ +\xd2\xef\x98\x62\xc7\x6b\x37\xd9\x1d\x8d\xa0\xd3\xf4\xfb\x61\x19\ +\x5e\x35\x50\x5f\x1f\x3d\x6d\x53\x57\x2c\xd3\x4f\x89\x79\xa9\x81\ +\x80\x1e\x56\xe6\x4e\xe1\xeb\xdf\x9e\xc6\xb7\x1f\x3e\x84\xfb\x1e\ +\x3f\x84\x83\x33\x0b\x38\xd5\x98\x66\x44\xab\xd8\x7d\xa0\x87\xc9\ +\x7d\x3e\xc2\x51\x0f\xd5\x40\x8a\x92\x1e\x3a\x01\x3b\xcb\x51\x62\ +\x83\x01\x1a\xac\xd0\xc0\x86\x7e\x2c\x5f\xd4\x69\xb7\xd9\xd7\x1a\ +\x10\xd0\x6c\xdc\x22\xca\x61\xc8\x4e\x3d\x50\xf4\x35\xd8\x42\xde\ +\x98\x08\x95\x5d\x91\x04\x86\xc2\x80\xee\x3e\x86\x6a\x25\x6c\xdd\ +\x5a\xc1\x78\xd5\x63\x67\xbb\x84\x89\xa1\x00\xc3\x95\x61\x53\x54\ +\x69\x10\x44\x39\xa0\xa1\x2c\x25\x5e\x0a\x08\x85\x57\x54\x45\xdb\ +\x4e\x46\x83\x43\x4c\x67\xaf\x89\xe5\xb9\x55\x9c\x89\xbb\xf8\xd5\ +\xdf\x3d\x88\x47\x1f\xad\x63\x3a\x5e\xc6\x47\x3f\x71\x0f\x3e\xf0\ +\xfe\xfd\x28\x95\xca\x68\xac\xb2\x23\x4e\xde\x5a\x9d\x26\x5a\xab\ +\x11\x16\x17\x56\x10\xb5\xb5\x7d\x50\xa6\xe0\x91\x82\x85\xb4\x19\ +\x95\xba\xeb\x36\x98\xa3\x0c\x57\xd2\x54\x0e\x8a\x47\x7f\x1a\x04\ +\xe3\x63\x29\xea\x63\xa4\xe2\x91\xff\x22\x46\xc9\x37\xa9\x33\x0c\ +\x79\x2d\x17\x91\x30\xdd\x4b\x1d\x9d\xc5\x15\x19\x3d\xe5\x81\x78\ +\xd6\x2c\xde\x28\xea\xa2\xd9\x64\x5e\xea\x1c\x12\xfe\x49\x69\x64\ +\x5b\x41\xc6\x1a\x20\xd2\x40\x10\xfd\xc5\x3d\xb4\xe9\xae\x3d\x0f\ +\x35\x10\x23\x7f\x6b\xdb\x0d\x69\x00\x48\x99\xa1\x7f\x0d\xce\xf0\ +\xd2\x60\x8c\xdd\x79\xd9\xcc\x6a\xe6\xe1\xc8\x78\x00\x66\xa1\x41\ +\x03\x59\xf2\xa3\x19\xee\x1a\x00\x0d\xc9\x73\xa9\x54\x32\xda\xb3\ +\x33\x2b\xf0\x3a\x21\xf9\xe8\x30\x1f\xc8\x8b\xa5\x95\x31\xd1\x4d\ +\x03\x3d\x5a\x6d\xa6\xf2\x56\x1d\xe4\x23\xfc\x80\xb9\xa3\x17\x8f\ +\xfe\xdc\x00\x13\xfd\xea\x4e\x4f\x3a\x27\xa6\xc8\x32\x05\xd3\xdd\ +\x5c\x8d\xb1\xbc\xdc\xc3\xf4\x6c\x8c\xc5\xd5\x26\xba\xbd\x96\x6d\ +\xc9\x24\xe2\x16\x05\x33\x46\xe5\xaa\x55\x60\x52\x6f\x79\x36\x34\ +\x46\xd0\xde\x06\xc3\x98\x17\x1a\x10\xd2\x6a\x30\x95\x87\xc2\x89\ +\x27\x7b\xe2\xbd\xdc\x2b\xa0\x51\x6f\xe2\xc8\xd1\x2e\x16\xce\x4c\ +\xe2\xa7\x3f\xf0\x46\xfc\x8d\x0f\xdf\x8c\x6b\x26\xc7\xb1\xf4\xcc\ +\x02\x56\x66\xa7\x91\x74\x43\x8c\x87\x25\xf4\xfc\xd8\xce\x69\xf1\ +\xf9\x4e\xa8\xbe\xa4\x09\xb4\x34\x29\x6d\xfa\x31\xdb\xd4\x6c\x57\ +\x9a\x26\xc1\xc5\xaf\xfa\xa0\x1c\xc8\xdc\x9d\x1b\x89\x38\x7b\xfe\ +\x6b\x5e\xba\x29\xd2\x44\xcf\x66\xd2\x2b\x0d\x5a\x1d\x00\x74\x49\ +\x3c\x28\xd5\x50\x1a\x99\x40\x69\xdb\x0e\xf8\xc3\xa3\x28\x4d\x8e\ +\xa1\x3c\x36\x81\xa0\x36\x6c\x64\x05\xd5\x48\x0d\x46\x69\x55\x82\ +\x74\xa7\x16\x0f\xd9\x75\x90\x41\x1e\x33\x0b\x9a\xb3\xc7\x41\xeb\ +\x41\xc8\xfe\x12\xc8\x82\x0b\x46\x62\xd0\x42\xc8\xe8\x5e\x8a\xd6\ +\x66\xf1\x0b\x19\x6f\x1b\x69\x66\xf6\xc2\x66\xb4\x2f\x37\xde\x1c\ +\x39\x72\xbc\x78\xe8\x83\x9c\x42\x83\xee\xf5\xfa\x8a\xb5\xe1\xc3\ +\xc3\x23\xa9\xad\x3e\xcb\x31\xdb\x28\xb5\xf1\x7c\x19\xf9\xef\x14\ +\x69\x6a\x9b\xd2\xd7\xd8\x59\x6f\x82\xcd\x6d\xd7\xb0\x1e\xf5\x65\ +\xc0\x62\x72\x46\x83\xa3\xad\xf6\x71\x33\x17\xf7\xcc\x5f\xf7\x9f\ +\xda\xc9\xaf\xfb\x55\x1a\xac\xcd\x93\x10\xc7\xaf\xb7\x79\x60\x0b\ +\xa3\x49\x2f\x9a\x48\xe4\x49\xf9\xa5\xc9\x44\x94\x79\xa4\xba\xd1\ +\x0a\x23\x29\x0d\xe4\xbd\xe6\xd7\x68\xd3\xc6\xb9\xa5\x79\x3c\x7b\ +\xea\x2c\xbe\xf9\xf8\x31\xdc\xff\xe8\x13\x78\xfa\x89\xd3\x38\x37\ +\xcd\xf6\x6e\x75\x81\x79\xd8\x42\xb1\xd4\x45\x50\x8c\xb0\x63\x87\ +\x8f\xda\x88\x8f\xca\x78\xcd\x56\x97\xa9\xb5\x6b\xb5\x74\xc6\xaa\ +\xce\xa6\x25\x5f\x94\x6b\xd5\x06\x6a\xea\x8f\x57\xe8\xa2\x40\xbb\ +\x92\x9f\xa0\x42\x59\x42\x72\x4b\x98\x6e\x33\xad\x55\x6c\x6c\x9a\ +\xe8\x4f\xed\xad\x56\xfe\x78\x28\x52\xc6\x1b\x1f\xad\x92\x7e\x99\ +\xb4\x8b\xa8\x50\xde\xd1\xf9\xae\x92\x07\xcb\x55\xfa\xa1\xac\x64\ +\xa9\x66\xd9\x5a\x1e\xb0\xbc\x4d\xa1\x27\xc1\x87\xad\x4c\x49\x72\ +\x82\x57\xb5\xd5\x71\xd5\xea\x18\x8a\x94\x29\xbd\x89\x61\xfc\x87\ +\xdf\x78\x1a\xdf\xfe\xda\x19\x14\xc2\x39\x5c\x77\xc3\x30\x3e\xfa\ +\xb1\xd7\xa1\xc2\xf8\x9a\x9a\x2c\xc4\xb6\x7c\x75\xb5\x8e\x95\x45\ +\xa6\x55\x0a\x35\xc9\x38\xac\x04\x52\xa6\x69\x0b\x46\x45\x64\xcd\ +\x22\x2f\xd5\x19\xe5\x9f\x62\x97\x3c\xe4\xaa\x9b\x14\x67\x6c\xf7\ +\x59\xcf\x92\xd8\xc7\xf6\xad\x23\xd8\xb1\x5d\x5b\xb6\x8b\x46\x8f\ +\xb2\x60\xc5\xc2\x49\x89\xb2\xb4\xb0\x6a\xbb\x11\x68\xb5\xba\xad\ +\xe4\x17\x0d\xfd\x49\xa6\xea\xc5\xb6\x42\xae\xb9\xda\x41\x4c\x0b\ +\xb9\x9b\xdc\x40\x1a\x52\x8a\xaa\xfd\xd4\xc4\x2f\x4d\x4e\x52\xb1\ +\xba\x8a\xaa\xb6\x5f\x37\xd6\x61\xba\x9b\x32\xd5\x59\xbb\x8b\x6e\ +\x21\xf9\x12\x0b\xc3\xa3\xca\x93\xd0\x56\xfe\x6b\x32\x93\xa4\x16\ +\x93\x16\xcc\x0f\x0b\x49\x75\xc8\x12\x0a\xcc\x9f\x94\x42\x8d\x79\ +\x41\x06\xdd\x8e\x12\x29\x3d\x46\x6b\x93\x99\x98\x77\x92\xd1\x32\ +\xd9\xca\x99\x9d\x1f\xc9\xcd\xb6\x0a\x91\x95\x41\x47\xc4\x55\x82\ +\x11\x6c\xd9\x35\x86\xdd\xd7\x4d\x22\xa8\x94\x71\xe6\xd9\x06\x1e\ +\xbf\xff\x24\x9e\x7b\xfa\x59\x06\xa0\xbf\x21\xf2\xe1\x6b\x37\x00\ +\xa6\x2f\x95\xdb\x6c\x1b\x47\xd6\x59\x29\x6d\x95\x49\xda\x86\x93\ +\x0c\x5b\x9e\xea\x6e\xfe\xe8\xd4\x69\x52\x1e\x6a\xc4\xd0\x0e\xe8\ +\xf5\x45\xca\x65\x2d\x60\xee\xec\x32\x33\xb3\x8c\x37\xbc\xf7\x7a\ +\xfc\xc8\x8f\xbd\x0b\xef\x7c\xe7\x1d\x94\x5f\xbb\x98\x9f\xe9\x52\ +\x5e\x66\x39\xaf\x2c\xa0\x47\x19\x2a\xf6\x58\x5f\xcb\x2a\x17\x9f\ +\xf2\x15\xbf\x09\x8c\x43\x72\xba\xe5\xa5\x22\xb1\x74\xe9\xdb\x40\ +\x83\xa5\x8d\x76\x4a\xa0\x0a\x8d\x89\x55\x59\xc4\x1d\x0a\x44\x7c\ +\xd6\xfb\x17\xf4\x58\x57\xd9\x4f\x19\xad\x6e\xc1\x70\x6d\x02\xd5\ +\xe2\x38\x65\xc8\x0a\xeb\xbe\x14\x6f\xe3\xac\x07\xac\x97\x76\xda\ +\xb2\x43\x56\x7f\x44\x56\x3f\x22\x6d\x19\x9c\xde\x64\xbd\x8e\xcc\ +\x26\xf5\x90\x23\x47\x8e\x57\x1d\xf2\xb7\x3b\x47\x8e\x2b\x87\x5c\ +\xa1\x96\x23\xc7\x6b\x18\xf9\xcb\xff\x32\xc4\xa5\xfa\x31\x83\x85\ +\xf6\xfc\x9e\x50\x0a\x47\xc4\x39\xbb\x3f\x1b\x04\xe1\xe7\xde\x48\ +\xf3\xe7\xb2\xca\x7e\xa3\xa7\x0d\xf1\x65\xfd\x3d\xf7\x90\xde\x07\ +\x9f\x69\x76\x83\x47\x1b\x08\xe9\x31\xf5\xef\x3a\x78\x66\x32\x7f\ +\x7a\xde\xe0\xdb\x30\x48\x3e\x25\xed\xa0\x34\x29\x8c\x79\x50\x47\ +\xdf\x6c\x1d\x74\xc8\x41\x9d\x1d\xde\xee\x2a\xa2\x56\x03\x9d\x85\ +\x19\x74\x66\x4e\xc2\x5b\xd6\x40\xc3\x12\xda\xf5\xba\x7a\xf7\x08\ +\x7b\x9e\xad\xc4\xf1\x42\x6d\xfb\xc3\x7c\x0a\x34\xfb\x98\x9d\x53\ +\xdb\xe2\xaf\xa8\xa5\x4b\xf0\x2b\x35\x53\xac\xf5\x46\x69\xae\x6d\ +\x65\x54\x6d\xd2\xee\xe0\xe0\xc3\x67\xf0\xc0\x53\xa7\xf1\x9d\x67\ +\x9f\xc3\xb1\xc3\x67\xf1\xc0\x99\x19\xcc\x60\x15\xd5\x3d\x7d\x6c\ +\xdf\xd6\xc4\x8e\x6a\x1f\x81\xb6\x6d\x29\x05\x28\x14\x0b\x68\x44\ +\x31\x3b\xce\x3e\x22\x76\xb2\xc5\xaa\x14\x9c\xea\x52\xeb\x5f\xe7\ +\x84\x49\x39\xa4\x15\x52\x25\x0d\xf8\x78\xda\x42\xd2\xe6\x55\xdb\ +\x0c\x56\x29\xd6\x74\x69\xcb\x44\x29\x6c\x8a\xbe\x56\x10\x15\x31\ +\x5a\xf1\xb0\x65\xa2\x88\x6d\x23\x05\x8c\x0f\x97\x30\x3e\x52\x43\ +\xa9\x54\x24\x1d\x8f\x69\xeb\xa3\xa3\x81\xad\x3e\xd3\x59\x70\x5b\ +\xea\x68\x2d\x94\xd2\x09\x3f\x41\xa7\xd7\x46\x61\x69\x05\x67\x1b\ +\xcb\xf8\xa5\x3f\x38\x8a\x7b\xef\x5f\xc4\x72\xd4\xc5\x07\x7f\xf0\ +\x16\x7c\xe0\xfb\xaf\xc1\xd0\xf0\x36\x44\x8d\x16\xda\xa6\xdc\xe8\ +\xa0\xb5\xd2\xc6\xf2\x4a\x07\x8d\x95\x16\x33\x5d\x03\x10\x1a\x70\ +\xd0\x20\x93\xee\x1a\x30\xe0\x25\x8d\x06\xcb\xc5\xea\x86\xd2\x45\ +\x7b\x5b\xa5\x45\x7f\x05\x1d\x72\x12\xeb\x6c\x94\x1e\xb6\xd6\x7c\ +\x8c\x55\x4b\x36\xf8\x55\x19\x2b\x31\xad\x05\xac\x76\x7a\xe8\x16\ +\x34\xd0\x64\xc3\x0c\x46\x37\x49\x62\xb4\xdb\x11\xcb\x8c\x6e\x49\ +\xcf\xe8\x68\xe0\xc7\xee\xb1\x9b\x51\xad\xfa\x5d\x1e\x29\x63\xf6\ +\xf4\x22\xba\x0d\xe6\x57\xa5\x67\x33\x9b\x95\xd7\xa6\x00\xb2\x11\ +\x18\xfe\x8b\x3f\x9a\x69\x34\x25\x9b\xcd\x82\xe6\xa5\x59\xf0\x95\ +\x2a\xf3\x6f\x9c\xf9\xc6\x22\x37\x7f\xa9\x7f\x0d\x92\x6a\xa0\xa7\ +\x38\x54\x46\x91\xf9\x2a\x52\x8b\x8b\x0d\xf4\xeb\x25\x24\x85\x26\ +\xb3\xa1\xe7\x06\x18\x49\x55\x6e\x1a\xac\x51\xfe\xda\x00\x90\xc2\ +\x5a\x39\x8b\x56\x4a\x57\x7f\xca\x7e\xf2\xa6\x7c\xd1\xc0\xa0\x06\ +\x5e\x57\x9b\x3d\x9c\x3a\xdd\xc6\xd2\x72\x8c\x56\x27\x46\x02\xad\ +\x7e\xcb\x68\x2b\x3f\xed\xd7\x06\xa2\x34\x9b\x9b\xa1\x2c\x83\x35\ +\xb0\x69\x83\x61\xcc\x27\x0d\x0a\x31\x6b\x99\x97\x7a\x2f\x54\xc3\ +\x98\x3f\xb4\x28\xeb\xcc\x16\xc6\x31\x3d\xd7\xc0\xb3\xc7\x8b\xd8\ +\xe3\xdd\x8c\x7f\xf0\xc1\x7b\xf0\x57\xde\x7f\x8d\xbd\x27\xd3\x07\ +\xcf\x21\xae\x77\x51\xe8\x88\x27\xc6\xc7\xa0\x5a\x15\x27\x9e\xdd\ +\xc0\x0f\xc3\x2b\x36\xa5\xc3\xf2\x8c\xe9\x63\xa2\xcc\x8e\x7e\xdc\ +\x16\x96\xe2\x45\x89\xa4\x25\xa1\xf2\xd7\xf9\x69\x0a\xeb\xec\xe9\ +\xc3\x12\xae\x0a\x92\xfa\x33\x82\xb2\x67\x1a\xe4\x5f\x7f\xa4\x6f\ +\xdf\x2b\xda\x8b\xbe\x46\xf4\x34\xc8\x15\xf3\x3d\xed\xd0\x4f\x58\ +\xaa\xa2\xbc\x75\x02\x85\x91\x6d\xf0\xb7\x6f\x45\x79\x78\x02\x41\ +\x75\x18\xe5\x9a\x06\x37\x95\x62\x17\xb7\x46\x0e\xa5\xb0\x75\xf1\ +\xf0\xc7\x2c\x85\xd4\xce\x18\x94\x41\x66\x77\x3b\x0f\xa9\xd3\x66\ +\x90\x77\x23\x31\x70\xd7\x8f\x45\x23\x33\xb1\xf6\x5d\xca\x3c\x0d\ +\x62\xd0\x2e\x0b\x20\x0c\xda\x65\x61\x85\x8b\x99\x37\xc3\xa5\xdc\ +\x73\xe4\xc8\xf1\xd2\xb0\xf6\x3d\xe1\x6b\x96\x7d\x47\x08\xdb\x16\ +\x99\x8f\xfa\xfe\x9b\xc1\x9c\xe4\x97\xdf\x41\x86\xc9\xbe\x11\x66\ +\x7d\x1e\x9e\x6f\xb3\x39\xe4\x2f\x8d\x7b\xed\x03\x23\x64\xe6\x0b\ +\xdd\x05\x99\x33\x64\x76\x0e\x1b\x7d\xba\x87\x75\x7e\x2d\xae\xb5\ +\x6f\x26\xdb\x08\xb6\x27\xda\x8e\x51\x4d\xb1\x4d\xb0\xe1\xb3\xbe\ +\xb9\xda\x5e\xda\xce\xd2\x94\x36\x86\x5e\x7b\x7e\x44\x37\x9f\xdf\ +\x6f\x05\xed\xb3\x7d\x71\xdb\x39\xf2\x2b\x8f\x10\x5d\x9c\x58\x9d\ +\xc3\xc3\x4f\x9c\xc0\x03\xcf\x1e\xc2\x53\x4f\x9e\xc5\x73\x8f\x4f\ +\xe1\xd0\xf1\x69\xd2\x5c\x41\x55\x8a\x16\xbf\x8d\xd1\xc9\x12\x46\ +\x46\x2b\xd8\x32\x5e\xc1\xc8\xb6\x9a\xad\x44\x17\xfd\x28\x62\x3b\ +\xcf\xc6\x4a\x0a\x24\x14\xda\x6c\x7b\x29\xe3\xc8\x4c\x7e\x42\xb6\ +\x23\x81\x17\xbb\xf3\x48\x7d\xb6\xdb\x7d\x36\xb4\x52\xa9\x49\x86\ +\x62\xdb\xe5\xfb\x7d\xdb\x3a\xbb\x5a\xd3\xea\xf3\x80\xb4\x43\x0c\ +\x53\x7e\xaa\x68\x7b\xbd\x52\x88\x6a\xa9\x6c\x32\x82\x56\xc2\x4b\ +\xb6\x94\x12\x4a\xab\xd4\xac\x55\x62\x1e\xf4\x48\xcf\xe4\x37\x53\ +\xde\x69\x22\x54\x0d\xb5\xa4\x83\x55\x9a\x7f\xeb\x73\xcf\xe1\x9b\ +\x5f\x39\x8b\xca\x70\x1b\xb7\xdd\xb5\x13\xdf\xff\xae\x7d\x6c\xf7\ +\x9a\x68\x37\x7d\xb4\xa3\x06\x16\x17\x74\xe6\x96\x94\x57\x4c\x1f\ +\x33\x46\x62\x8d\xad\xb8\x67\xd5\x91\xd2\x48\xfc\x49\x98\x90\x22\ +\xc5\x84\x0a\xc6\x6f\x52\x00\xf3\x5f\xed\x31\x98\x9f\x6a\x5b\x95\ +\x8b\xbb\x27\xc7\x31\x3a\x5a\x63\xbe\x6a\xcb\x48\xa7\x40\x54\x39\ +\x2c\x51\x46\xe9\xc6\xa4\xcf\x3c\xb2\xed\x1b\xc5\x37\xd3\xae\xb6\ +\x54\x65\xd5\xa1\xac\xd5\x6c\x68\xa5\x54\xe2\xec\xf8\xa7\xf3\x56\ +\x13\x69\xa6\x8a\x8c\x8f\xed\x7f\x12\x31\x5c\x47\x85\xa8\xa8\xd4\ +\xe6\xd3\xac\xf6\x5f\x05\xab\x7a\xc0\xcb\x29\xb9\xcc\x99\xf9\x5d\ +\x60\x9e\x02\xc3\xcc\xcb\x5a\x35\x44\xb9\xe2\x14\x6a\x72\x74\x61\ +\x94\x36\xf2\xce\x67\x6b\x9d\x49\x6f\xe9\x2c\xe5\xf4\x40\xf5\xc8\ +\x6d\xd3\xb9\x46\x9a\xc1\xa4\x64\xca\x64\x34\xdd\x4d\x0e\x96\x7c\ +\xa5\xfd\x12\x49\x41\x6d\xac\xea\x51\xa5\x56\xa3\xfc\x56\xa3\xfc\ +\x56\xc5\xe8\x9e\x21\x74\x57\x3c\x1c\x3f\x3c\x8f\x27\x1e\x98\xc3\ +\xb9\x33\x27\x4c\x76\x0b\x6c\x03\x07\xd6\x09\x29\xf8\x18\xce\x4d\ +\xf8\xe2\x3d\x96\x32\x58\x09\x64\x0e\xd8\x9d\xef\x69\x96\x1f\x64\ +\x4d\x79\xd9\x6d\x48\xf9\xd8\x45\xab\x1e\x51\xf6\xed\x60\x79\xae\ +\x80\x85\xd9\x36\xf6\x5e\xbd\x0b\x3f\xfa\xe9\x5b\xf1\xd1\x1f\x7a\ +\x07\xb6\xee\xdc\x8a\xb9\xf9\x15\x2c\xcd\x35\xd1\x68\x2f\xa1\xdb\ +\x69\xa1\x90\x44\x88\x74\xfe\x1f\x65\x17\x29\x4d\x15\x87\x64\x35\ +\xa5\x4f\x30\x79\xd0\x64\x54\x97\x3e\xe5\x8b\xbe\x1b\x62\xcd\xf2\ +\x41\xbc\x28\x8d\xb4\x33\x39\x54\xf9\xc8\x3c\xb2\x33\x15\x45\x4f\ +\x8a\x36\x96\x91\x56\x83\x86\x7e\x15\xa5\x70\x84\x75\x78\x0c\x5b\ +\x46\x76\xf0\xb9\xc2\xda\x5e\x62\x5f\x60\x98\x75\x79\x88\x72\xe6\ +\xfa\xf6\xd9\x06\x4b\xbe\x22\x52\x9a\x55\x80\x69\xa4\x06\xc7\xab\ +\x43\x66\x97\x23\x47\x8e\x57\x0b\xf2\xb7\x3a\x47\x8e\x2b\x87\x5c\ +\xa1\x96\x23\xc7\x6b\x18\xf9\xcb\xff\x32\xc4\x60\x9f\x66\x10\x97\ +\x2c\xac\xc1\x80\xeb\x9e\x5d\x27\x96\xdd\xa6\xcc\x4a\x3d\x39\x33\ +\xbb\x41\x72\xd7\xa1\x4a\x31\x60\xcc\x20\x8a\x6b\xd6\xe7\x3d\x9c\ +\x47\xca\xb9\x65\xd8\x84\x8e\x61\x30\x7c\x66\xe6\xdd\x8c\x03\x61\ +\x44\x57\x6e\x83\x64\x64\x95\xfd\xca\xc5\x9a\x2e\x8d\xfa\xb3\x73\ +\x9c\xd9\x02\x5d\xa0\xb9\x88\xa4\xbe\x88\x6e\x7d\x09\xfd\xc5\x73\ +\xe8\x2f\xcc\x22\x69\x35\xd1\x69\x34\xd8\x11\x5e\x42\xab\xdd\x75\ +\x1d\x73\xcf\xcd\x9c\x0e\x43\xf6\xfe\x7b\x11\x3b\xbc\xa4\x29\x42\ +\x1a\xf5\x21\x45\x9d\x13\x55\x08\xe9\x2f\xe2\x73\xc9\x47\x69\x78\ +\x08\x85\xe2\x10\x50\xab\xc0\xaf\x86\x34\x8f\xa3\x38\x36\x06\x8c\ +\x8c\x30\x4c\x1d\xf1\xd2\x12\x0e\xcd\xcc\xe1\x5b\xdf\x38\x82\x2f\ +\x7e\xeb\x38\x1e\x38\xd6\xc4\x89\x64\x01\x95\xb1\x3e\x76\x6d\xd3\ +\x79\x6b\x7d\xc6\x95\x60\xa8\x5c\x44\x4c\xda\xf5\x6e\x17\x7c\x64\ +\x1a\xd4\xc1\x77\xab\x06\xb5\xc2\xc8\x94\x23\xe4\xc1\xd3\xf2\x38\ +\xcf\x43\xb5\x18\xd8\xe0\x94\x92\xab\x73\x2c\x34\xd3\x3a\x94\x22\ +\x46\xcf\xe4\x93\xdd\x6f\xe9\x04\x11\xd0\x7f\x2d\xf4\x30\x56\x0b\ +\xb0\x7d\x72\x18\xdb\x26\x86\x50\x2e\xfb\x18\x1b\x0e\x31\x5c\xf4\ +\x51\x09\x49\x37\xd2\x81\xe8\x2a\x71\x97\xb3\xda\x1e\x47\xca\x9f\ +\x42\x12\xa3\xe2\xb7\xf0\xf8\xdc\x59\xfc\xee\x17\x4f\xe3\xbe\xfb\ +\x4f\xe3\xf8\x9c\x87\x0f\x7c\xfc\x26\xdc\x72\xdb\x5e\x5c\x75\xd5\ +\x08\x62\x76\xcc\x57\xe6\xdb\xae\xe3\xdf\x8f\xb0\xb0\xdc\xc1\xdc\ +\x6c\x1d\x85\x38\xd2\xd8\x0e\x92\x48\xdd\x72\xd2\x55\x27\x9f\x69\ +\xb1\x81\x1b\x0d\x06\x99\xd1\xb7\xc1\x04\x29\x60\x34\x88\xd5\xd3\ +\x61\xee\x4d\xf2\xeb\x47\x18\x1b\x29\x61\xcb\x44\x15\x13\xa3\x81\ +\x86\x47\xd0\xea\xf6\xd1\xed\x4b\xb1\xa8\xc1\x24\xfa\xe5\xa5\x73\ +\xbb\x3a\xdd\x18\x6d\xba\x69\xc0\x49\xe7\xab\xd9\xac\x61\x5e\x3a\ +\xc3\x4c\xf4\xc2\x62\x11\x3b\x0f\x6c\xc3\xe4\x81\x1a\xbe\xf5\xfb\ +\xcf\x62\x91\xe5\x51\xd2\xe0\x58\xa9\xca\x38\xdd\x40\x85\xd5\x15\ +\x95\xab\x5d\xa9\x99\x76\x1a\x0c\x0a\x8b\x1e\xca\x55\xcf\xb6\x7c\ +\xb4\x73\x4c\x3c\xf7\x7e\x48\xb1\xe3\x6b\xf0\x86\x79\x15\x6a\xd6\ +\x7a\x29\xb4\x81\xab\xfa\x72\x0b\xd1\x4a\x40\xeb\x86\xf1\x94\x8e\ +\x2a\x32\x9c\xb6\x9e\xd2\x5d\x03\x23\x8c\x43\x75\xcd\x06\x42\x68\ +\xa7\xf8\x94\xf5\xfc\x31\xa5\x28\xfd\x69\x80\x68\xb5\xdd\xc1\xc2\ +\x7c\x17\x33\x53\x3d\x2c\x34\xeb\x8c\x4b\x94\x34\x60\xa9\x4b\xb5\ +\x91\xf9\x60\x79\xab\x5f\xe6\x81\x9c\x79\xf7\x94\x3f\x8a\x44\x2b\ +\x02\x52\x65\x9a\x05\x10\x2b\x4a\x33\xfd\x44\xa4\x51\x4b\x0a\x88\ +\x9a\x7d\x9c\x3e\xb3\x84\x13\x67\x7d\xdc\xba\xf3\xad\xf8\xc7\x3f\ +\xfb\x7a\xbc\x77\xd7\x0e\xb4\xcf\xd6\xb1\x70\x7a\x1a\xdd\x76\x1b\ +\x41\xbf\x68\x4a\x5c\x9d\x9d\x67\x03\x77\x96\x26\xe6\x83\x25\x84\ +\x97\x41\x54\x2d\x3b\x2c\x7f\xec\x59\x69\xcb\xfc\xa4\xfe\xe4\x66\ +\xc9\x48\x15\x6a\xca\x0c\x0d\x1c\xc9\xdd\x0d\x20\x89\x80\x79\x74\ +\x66\x33\xea\xee\x06\x70\xed\xd9\x68\xf3\x81\xbc\xd8\x40\x93\xd2\ +\xc4\x3a\xd5\xe1\xfb\xd1\x62\x9e\xb5\xa2\x98\xef\x66\x19\xfe\xd0\ +\x28\x86\xb6\xec\x46\x38\xb1\x0d\xa5\x2d\x5b\x51\xdb\x31\x89\x70\ +\xc8\x0d\x1e\x75\x99\x7e\xdb\x16\x92\x4c\x9a\x52\xd7\xe2\xd4\xb3\ +\x5c\xf5\x93\x46\x96\x99\x33\xb7\x8d\x77\x61\xd0\x6e\x13\x0c\x3a\ +\xad\x05\x1d\x0c\x9b\x61\xcd\x71\xe0\x2e\x6c\xe6\x67\x10\x9b\xf9\ +\xbb\x18\x36\xa3\x91\x23\x47\x8e\x2b\x07\xbd\xe0\xf6\xc1\xe2\x5d\ +\x46\xd9\xa5\x1f\xb0\xac\x9d\x75\xc8\x5e\xc6\xcc\xee\xa5\xbc\x98\ +\x9b\x85\x55\xfc\x83\xf6\x1b\xe3\xcb\xb0\x99\xdd\x3a\xb2\x50\x19\ +\xce\xa7\xa2\xf6\x47\x6d\x2f\xbf\xbb\x94\x08\x74\xef\xf7\x29\x73\ +\x51\xee\xb2\x55\xea\x89\xee\xbc\x0a\x1d\xfa\xeb\x52\x94\x6a\x32\ +\x20\xfd\x90\x80\x24\x15\x6b\xbb\xf9\xad\x4f\xd8\xce\x78\x01\xdb\ +\x40\x4d\x15\xe2\x27\x5f\x5b\x30\x26\x58\xe5\xf3\x22\xa6\x9b\x11\ +\xbe\xf3\xc8\x39\x7c\xf1\x6b\x4f\xe2\x9b\x0f\xcd\xe0\xf4\xc1\x2e\ +\x5a\xcd\x55\xca\x0a\x75\x04\xc3\x1d\xb7\x9d\xe0\x18\xe5\x9c\x6d\ +\x43\x18\x9b\x18\xa5\x6c\xd0\x34\x45\x54\x8f\x02\x88\xad\xbc\x2f\ +\x74\x79\x67\x9b\x4d\xc2\x7d\xf2\xc8\x46\x11\xda\x1e\x52\x5b\x42\ +\x6a\x25\xb8\xe4\xa5\x42\x4f\x0a\x1d\x36\x49\x4c\x54\xa1\x90\xb0\ +\x1d\xee\xa3\x38\x14\xa0\x5a\x29\x52\x66\xf2\xb0\x65\x2b\x65\x06\ +\xb6\x51\xe3\xa3\x35\x3e\x17\x4c\xb9\xa6\x76\xdd\xce\x68\x25\xd5\ +\xb5\x76\x91\x44\x3c\xb6\x97\x7d\xb5\x71\x3d\xca\x56\xbc\x07\x61\ +\x80\x62\x77\x09\x49\x79\x18\xbf\xfe\x1b\x8f\xe1\xd0\xd3\x7d\xb4\ +\x92\x19\xbc\xe3\x9d\x57\xe1\x1d\xdf\xb7\xcb\xe4\xa0\xd6\x6a\x1b\ +\xad\x4e\xc7\xb6\x0c\x6c\xd4\xdb\x88\xa4\xf4\x22\xab\x52\x6a\xb5\ +\xdb\x52\x2a\x91\x47\xc9\x4a\xe4\x9b\x5c\x92\xc9\x2c\xf7\x19\x2b\ +\xf3\xd9\x14\x2e\xb2\xb0\xf2\x0e\x98\x7f\x01\xf6\xee\xda\xc6\xbb\ +\x26\x10\x39\x25\x9b\x3c\xac\xac\xac\x52\x3e\xa2\x7c\x96\x90\x67\ +\x5a\xa8\x4d\x77\xed\xba\x64\xb3\xae\x4d\x50\x6a\xb5\x62\x96\x8b\ +\x53\x14\x2a\x59\x52\x06\xdb\xd6\xe4\xa1\xc5\x4c\x3f\x92\xaf\x48\ +\x2c\xa1\x0c\xc7\x86\x54\xf9\x22\x79\xc0\xda\x74\xbb\xc4\x88\x64\ +\x3b\xfa\x67\x86\x06\x81\x87\x12\xf9\x1e\x1e\xd3\x19\x6a\x01\x4a\ +\x15\x9d\x49\x2b\x4a\x59\x18\xf9\x53\x9a\xd4\xee\xb3\xfc\x29\x5b\ +\x2d\x9c\xe9\xd0\xdc\x21\x8f\x6a\xdf\x5d\xbe\x1a\xd5\xd4\xaf\xdd\ +\x25\x3a\x28\x1e\xd2\x52\xfa\xed\x1c\x35\xdf\x04\x1d\x94\x28\x97\ +\x4f\x6c\xad\x61\x74\x5b\x91\xf9\x5f\xc5\xa9\x63\x2b\x38\x73\x64\ +\x15\xc7\x0e\x4d\xa1\x41\xd9\xbc\x44\x19\xdf\x97\x52\x8b\xe5\xaf\ +\x77\xd2\xbd\x97\xca\x13\xfe\x49\xde\x57\xc2\x69\x95\xb9\xd9\xe4\ +\x9e\xb8\x80\xb8\xa3\x55\x61\x40\xc4\x32\x59\x5d\x69\xa2\xbd\x9a\ +\xa0\x55\xef\x63\x71\xa1\x83\x76\x3d\xc1\xcd\x6f\xba\x15\x3f\xf5\ +\x3f\xbc\x0d\x6f\x7e\xfb\x75\x48\xda\x1e\x66\xa7\x96\xb1\x5c\x5f\ +\x41\xa7\xbd\xca\xb2\x6c\x5b\x5a\xb5\x83\x82\xca\x49\xf9\x6e\x5b\ +\x95\x2b\x15\x4a\x8f\x72\xd7\xf2\xd1\x99\x2d\x9d\x7c\x96\xbc\x29\ +\x4b\x97\x07\xee\x6e\x72\x8b\x88\xe9\x5b\x63\x76\xbc\xd3\x9f\xf9\ +\x21\xed\x80\x72\xbf\xa3\x25\xa5\x9d\x94\xb3\x74\x63\x5d\x2a\xf4\ +\x58\x17\x3d\x77\x5e\xe0\x48\x75\x3b\x2a\xcc\xa7\xa0\x50\x41\xb5\ +\x3c\x8e\x6a\x75\x14\x3a\x47\x5b\xca\x4d\x41\x94\xd5\x37\x20\x15\ +\x92\xd6\x93\x62\xb2\xdc\x30\xb3\xc5\x6f\x70\x3c\xe4\xc8\x91\xe3\ +\x95\x8d\xfc\x2d\xce\x91\xe3\xca\x21\x57\xa8\xe5\xc8\xf1\x1a\x46\ +\xfe\xf2\xbf\x8c\xf1\x82\x0b\x67\xb0\xa3\x33\x18\x58\x76\xae\xa3\ +\x24\x58\x1f\xdc\xbc\x3a\x3b\x6b\x02\x32\xbb\x0d\xd8\x8c\xda\xf3\ +\x30\x18\x76\x8d\xb6\x3d\x39\x64\xcf\x83\x7e\x32\x0c\x10\xce\xac\ +\xcd\xca\x3a\x8a\x6b\x4f\x74\x53\xd7\xce\xba\xdb\xce\x6d\x10\x9d\ +\x65\xc4\x0d\x76\x62\x57\xe6\x81\x95\x73\xc0\xf2\xbc\xad\x44\x8b\ +\x56\x9b\x4c\x5b\xdb\x94\x0f\x9a\x65\xab\x55\x5e\xbd\x40\x03\x2a\ +\xa2\xdd\x73\xab\x8a\x34\xc2\x93\x68\x50\x88\x1d\x47\x76\x44\x6d\ +\xd2\x2b\xcd\xec\x92\x5a\xe7\x56\xfd\x75\x1b\x88\x60\xa7\x5b\xb6\ +\x52\x60\x68\x10\x40\x87\xee\x07\x52\xac\x54\xcb\x28\x8c\x55\xd1\ +\xaf\x8c\x60\xb4\x5a\x01\x46\xd5\x19\xee\x60\xf9\xec\x0c\xbe\xf8\ +\xed\x39\x7c\xf5\xf1\x79\x7c\xe3\x70\x1d\x4f\xad\x76\x19\x7a\x05\ +\xe3\xfb\x5a\xb8\x6a\x6b\x8c\x2a\x3a\x08\xfc\xf0\xff\xcf\xde\x9f\ +\x3d\xdf\x96\x64\xf7\x7d\xd8\x3a\xf3\xf9\xcd\x77\xa8\x5b\x73\x55\ +\x57\x8f\xe8\x06\xba\x01\x08\x80\x00\x90\x18\xc4\x49\xa4\x65\xda\ +\x11\x0e\x49\x21\xca\xa2\xf4\x62\x85\x64\x3b\xec\x57\x85\xc3\x6f\ +\x7e\xf2\xff\x61\xbd\x2b\xc2\x0e\x47\x38\x82\x96\x1c\x0e\x12\x24\ +\x48\x8a\x80\x00\x02\xdd\x00\x7a\xa8\xf9\xce\xc3\x6f\x3e\xe3\x3e\ +\x83\xbf\x9f\xef\xca\x7d\x7e\xe7\xde\xbe\x55\xa8\xee\xbe\x80\x81\ +\xae\xbd\xce\xc9\x9d\x2b\x57\xae\x5c\xb9\x72\x65\xee\x9d\xd3\x1e\ +\x62\xd6\xe3\x55\x75\x9a\x44\x2b\x1f\x36\x9b\xfc\x3a\x3f\x36\x0e\ +\x94\xb7\xef\x40\x95\x6e\x14\x77\xc0\x13\x6e\xdc\xd5\xcb\xa4\x5b\ +\x15\xc8\x8f\x49\x36\xfa\xb2\x88\x84\xee\x2c\x22\xf1\x3a\x99\x7e\ +\x9f\xbb\xbf\x5b\x9a\x30\x77\xe2\x60\xd8\x89\xa3\x1b\xfd\x78\xe7\ +\xd6\x4e\xdc\x3a\x68\xc7\xce\x8e\x26\xd7\xc8\xef\xf5\xbc\x80\xb3\ +\xe6\x29\xb0\x36\x4f\x8b\xb5\x63\x2e\x53\xb4\x07\x55\x1c\x4f\x1e\ +\xc7\xbf\xf8\x9f\x3e\x8a\xdf\xfb\x83\xe3\xf8\x9f\xbe\x77\x1e\xaf\ +\xbd\x71\x23\xbe\xf1\xcb\x5f\x8c\x37\xbf\xb0\x17\x6f\xbe\x75\x23\ +\xc6\xe7\xad\xe8\x55\xca\xb8\xdf\x8e\xdb\x1f\x9f\xc7\x93\x93\x13\ +\x29\x51\x05\xdf\x1f\xa1\xa6\x58\xf0\xe1\x9b\x20\x7e\xba\xc8\x77\ +\xac\x4b\x5b\xe9\xce\xd3\x67\x5e\x07\x58\x2b\x7f\xf9\x6b\x5e\xcd\ +\x58\x2d\x63\x77\xa7\x1d\x5f\x7a\x7b\xe0\x8d\xb5\x95\xe2\xa6\xd3\ +\x75\x2c\x59\xd0\x50\xfd\x2c\x54\x2e\xee\xc6\x9e\xce\xab\x98\x4b\ +\xc1\x4a\xf5\xc8\x9d\xc4\xfa\xbb\xcc\xf0\x54\xb3\x45\x4c\x2e\x97\ +\x31\xdc\x1d\xc4\x8d\xd7\x0e\xe2\x3f\xfd\x3f\xfe\xad\xf8\xe3\x7f\ +\xf9\x87\xf1\xff\xfa\x6f\xbf\x17\x93\xf9\x2c\x76\x0f\x76\x82\x8f\ +\xc0\x77\xbd\xe2\x23\xbd\xf9\x7b\xcd\x42\xfa\x80\x73\xb7\xb3\xc2\ +\x2c\xb8\x0d\x77\x5a\xb1\x77\xd4\x8d\xe1\x00\x5b\x53\xd7\xb9\x70\ +\xc3\xd3\x80\xb4\x44\xbe\x9f\xd6\xe5\xdb\x6f\x92\x75\x7e\xaa\xb6\ +\x75\x29\x01\xed\xa9\x75\x84\x01\x79\xbe\xf3\x9d\x45\x1f\xea\x2a\ +\xb3\xf3\x86\x9e\x9f\x56\x20\xa0\x36\xa4\x58\xe5\xa1\xe2\x2f\xaa\ +\x38\x3b\x5f\xc5\xed\xdb\x23\xbf\xe6\x71\x32\x1f\xab\x6e\xa4\x17\ +\xe5\xa3\x4d\xca\xd5\x69\x68\x7f\x5e\xdc\xa0\xdc\x18\x52\x7f\x16\ +\xc1\x68\xc3\x95\xec\x58\xbf\xf6\x92\x32\xaa\x38\xae\xd7\x2e\x77\ +\x2d\xf3\x2d\xb6\x93\x2a\xfe\xf4\xbd\x79\xf4\xcf\x5f\x8d\x7f\xf4\ +\xab\xbf\x10\xff\xf5\x3f\x7c\x3b\xbe\xf5\xd2\x7e\x5c\x7c\xbc\x8a\ +\xb3\x47\x27\x31\x9f\x4c\xc5\xcb\x77\x4a\x32\x5f\x8a\x23\xe1\xde\ +\x34\x23\xec\x85\x1a\xc9\x65\xb1\xcb\xd7\x0f\xe4\x5b\x27\xf4\xc3\ +\x8e\xe9\x5c\x60\xb4\xc4\xa0\x18\x19\x7d\x85\xa3\x17\x0b\x92\x32\ +\xc4\x86\x8f\x6f\xd2\x39\x43\xe1\x6d\xb7\xed\x92\xde\x1e\xf6\x43\ +\x54\xda\xd0\x62\x74\xa0\xfc\xb8\xb6\xea\x8a\xc5\x47\x5e\xf1\x38\ +\xf7\x53\x0a\x73\x3f\xd1\x37\x9e\x2f\x54\x3f\xfb\x71\xfd\xad\x37\ +\xa2\x73\xeb\x8d\xd8\x7d\xf9\xb5\xd8\x7b\xfd\x4d\xd5\xdb\xd0\x32\ +\x2a\xa5\xa1\x95\xa2\x50\xea\x81\x6c\x1d\x28\x6f\x1e\x92\x46\x21\ +\xed\x9b\xf2\x5c\x78\x96\xe5\x59\x1c\x78\x5e\xdc\x73\x61\x3b\x72\ +\x3b\x71\x8d\x03\xcf\x13\x50\x0b\x7e\x5e\x06\xdb\x69\x81\x67\xe5\ +\x35\xd0\x40\x03\x3f\x19\x6c\xce\xb9\x3c\xb9\x7c\xad\x22\xa4\xe0\ +\xe6\xb2\xf2\xec\x89\x99\xac\x2f\x00\x9e\xc9\xac\xc6\x4d\x7f\x26\ +\xcf\xe7\xd2\x3e\x0d\xc4\xef\xa7\xbc\xe8\x75\x34\x3e\xd2\x60\x21\ +\x5f\x73\x38\x8b\xc5\x62\xa6\x61\xc9\x44\xd7\xdf\x89\x37\xb1\x56\ +\xa2\xc5\xba\x12\x8d\x7e\x70\xa6\x6e\x43\xbe\xfa\xfd\x85\xfc\xc5\ +\x82\x31\x58\xde\x9c\x41\xe7\xef\x31\x8d\x74\x65\x9c\xd2\x6e\xf7\ +\x43\xbd\xa9\xbf\x9d\xda\xd6\x58\x6a\xa6\xfe\xbd\xc3\x1b\x02\x7a\ +\x8c\x53\x22\x26\xea\x84\xfe\xd5\xbf\x7d\x12\xff\xe6\xf7\xef\xc6\ +\x1f\xfd\xfe\x47\xf1\x6f\xfe\xf5\x2c\x4e\x8f\xef\x47\xab\xc7\xeb\ +\x1d\x1f\xc7\xce\xc1\x3a\x6e\xbc\x7e\x10\xb7\x6e\xee\xc6\xee\xe1\ +\x30\x78\x65\x21\xdf\xa4\x62\x7c\xc0\x93\x69\xbe\x21\x46\xf9\xd2\ +\xd7\x52\x16\x9e\x87\xea\x6a\xc0\xd4\x13\xbd\xbd\xce\x71\xa0\x6f\ +\x70\x91\x4a\x2b\x1d\xb8\xd1\xa7\xc3\x13\xfd\x3d\x9e\x5a\x93\x6e\ +\xc3\x56\x1c\x69\x4c\xb2\xc7\x6b\x21\x6f\xe0\xf7\x62\x20\x3d\xb1\ +\x88\x1f\x0e\xdf\x98\x53\x92\xe8\xdf\x3d\x7e\xeb\x26\xae\xf1\x5a\ +\x7b\xce\xd3\xe5\x11\xff\xdd\xff\xe3\x76\xfc\xd9\xf7\xc6\xea\xa3\ +\x2e\xe2\xb7\xff\xc1\xcf\xc4\xaf\xff\xfa\x81\x37\xf9\xc6\x97\x11\ +\x23\x8d\x51\x4f\x8f\x27\x31\x9d\xc9\x46\xea\xc7\xe9\xd3\x26\x63\ +\x8d\x15\x97\xc8\x42\xef\xd0\xd8\x43\xfd\x32\x1b\x52\x2a\x93\xc7\ +\x3c\xd8\x92\xbe\xd1\xe3\x3e\x58\xc8\xb3\x1b\x2f\xdd\xd8\x8d\xd7\ +\x5f\x3d\x52\x18\x3e\xea\x6f\x1d\x17\xe7\xe3\x58\xcc\x3d\x82\xcd\ +\x74\x72\xf8\x7c\x83\x6e\xa9\x3a\x9a\x8c\xaa\x98\x4c\x19\x3b\x88\ +\x5e\xc6\x0f\xdc\x03\xb5\x50\x7d\xf7\x76\x56\x7e\x25\xe6\xe8\x72\ +\x16\xd5\x49\xdb\x63\x2f\xdf\x7c\xe4\xf1\x52\xea\x93\x75\x99\x56\ +\xf0\x18\x40\x36\x64\x9c\xd5\xef\xb7\x62\xff\x90\x57\x9f\x76\x63\ +\x47\x76\xe3\x86\x24\x64\x53\x1e\xfa\x76\x5e\x0b\x4e\x07\xaf\x51\ +\x40\x74\x77\x3a\x71\x7c\x5b\xa3\x60\x9e\xf4\x67\x9c\x21\xc6\x22\ +\xd2\x32\xfd\xd4\x16\xa6\x30\x51\x71\x4a\xc7\x98\xac\xa7\x71\x18\ +\x37\x51\x0d\x7a\x83\x38\x38\x1a\xc6\xe1\x8d\x9d\x18\x8d\x26\xf1\ +\xe1\xbb\xf3\xf8\xfe\x77\x1e\xc7\xf9\xe5\x89\xc7\x09\xbe\x61\xcc\ +\xd2\x6c\xac\x52\x6f\x94\x5f\xe5\x65\x0e\xe0\xb0\x49\x06\x46\x18\ +\xb4\x23\xbe\x1b\x57\x4d\x22\xa6\xa3\x79\x8c\x2f\x64\xab\x73\xb5\ +\xfb\x59\x37\xce\x4e\x26\x1a\x2f\xb5\xe2\xef\xff\x27\xbf\x12\xff\ +\xf9\xff\xee\x6f\xc7\x2b\xaf\x0c\xe3\xc1\xed\x99\x5f\xe3\xb9\xa8\ +\x66\x31\x53\xa2\xb6\xc6\x5e\x96\xab\x2c\x91\xcb\xf8\xd0\xe3\x2a\ +\xd5\x5f\xbd\x99\x98\x4f\xa3\xe5\x78\x88\xea\x84\x9d\x72\x11\x67\ +\x5b\xf2\xc3\x17\x9f\xdf\xb2\xc0\x4f\x32\x98\x1f\x60\x43\xf8\x72\ +\x63\x95\x1f\x7a\x67\x29\x19\x97\xe4\x58\x13\xbe\x52\x4d\x1a\x47\ +\xb1\xe9\xcc\x13\x9a\xad\xd5\xc0\xaf\x86\x3c\xdc\xbb\x15\x7b\x6c\ +\xac\xed\x5c\x8b\x6b\xfb\x2f\xab\xcd\x0f\x35\x06\xdc\xb5\x0c\x83\ +\x84\xd2\xd6\x91\x9b\xaf\x76\x45\x4b\x80\x7c\x08\x03\xe0\x0d\x34\ +\xd0\xc0\x5f\x47\x68\xce\xde\x06\x1a\x78\x71\xd0\x6c\xa8\x35\xd0\ +\xc0\xe7\x18\x9a\x93\xff\xaf\x20\xbc\xb0\x4a\x41\x50\x3d\xcd\xaa\ +\x21\x27\x5f\x9f\x06\xcf\x4e\x97\x9e\x87\x03\x4c\xd6\xea\xde\x63\ +\x83\x3f\x2f\x01\x7e\x0d\xdb\xe1\x9a\xaf\xc0\xd3\xec\x75\x08\x68\ +\x6d\x1e\x7a\x62\x7e\xaa\x29\x77\xac\xc7\x6c\xa2\x3d\x89\xe5\xf8\ +\x71\xb4\x4f\x1e\xc6\xf4\xec\x61\x5c\x1e\x9f\xc4\x6a\x92\x4f\x50\ +\xf1\xcb\x57\xe6\x74\xbc\x50\x91\x1b\x67\xb9\x01\xc3\xab\xf2\x24\ +\x31\x56\x8b\x65\xf4\x34\x81\xf5\x87\xe6\x35\xd1\x65\x75\x82\x09\ +\x2b\x0b\x11\xf0\x7b\x53\xcb\xf4\xa2\x87\xe3\x32\x7f\x16\x1c\xa2\ +\x5a\xc4\x5c\xb2\xda\x1d\x16\x85\x06\xb1\x3f\xd4\xa4\x77\x20\x7c\ +\x78\x23\x0e\xdf\x1a\x46\xec\xb5\x62\x39\x1a\xc5\xef\x7e\x67\x1c\ +\xbf\xff\x47\x17\xf1\xdf\xfd\x8f\xf7\xe2\xdf\xde\x5f\xc4\xc5\xf2\ +\x71\x5c\x7b\x7d\x1a\x3f\xf3\x33\x8b\xe8\x21\x50\x62\x27\x5d\x26\ +\xc7\x9d\x68\x2b\x3f\x16\x55\x3c\x09\x26\x02\x33\x48\x67\x5e\x2b\ +\xc4\x86\x0f\x65\xe2\xc3\xfb\xf9\x5a\x1c\x16\x8b\x60\xd0\x44\x9c\ +\x0a\xc0\x38\x1c\x34\x91\xf6\xdd\xbb\xdc\xb9\xdb\x5b\xcb\x29\xbe\ +\xdf\x89\x83\x83\x61\xbc\xfe\xea\x20\xde\x3c\xda\x89\x5b\xfb\x7c\ +\x8c\xbf\x1f\xfb\xbd\x76\x2c\x16\xca\x49\x59\x55\xeb\x45\x8c\x67\ +\x2a\x9f\xd2\xc4\xf0\x2c\xee\x3d\xba\x8c\x7f\xfd\x3f\x7e\x18\x7f\ +\xf0\x27\xe3\x78\xef\x07\x97\xf1\xea\x97\x0f\xe2\xd7\xfe\xce\xcf\ +\xc7\xcb\x2f\xb7\xe3\xda\xc1\x8d\xe8\x2f\x5b\xf1\xe4\xe2\x22\x3e\ +\xb8\x33\x8a\xe9\x38\x3f\xb0\xce\x22\x50\xaa\x2c\x99\xd2\x81\x72\ +\xb8\x71\xb0\x60\x23\x8f\x75\x28\x54\xc4\xe4\x9d\x96\xf8\xe7\xbc\ +\x6e\x33\xe2\x5b\x3f\x3b\x8c\xfd\xdd\xbe\x64\xf0\x7d\x90\x75\x54\ +\x4b\x16\x78\x58\x3c\x52\x1a\x95\x7f\xc6\x07\xfc\xb9\x5b\x98\x6a\ +\xe4\x2e\x71\x29\x9c\x8b\x40\xbc\x92\x67\x19\xa3\xf3\x39\xad\x22\ +\x6e\xbd\xb9\x1f\xff\xd1\x3f\xfa\x8d\x78\xe9\xad\xbd\xf8\xbd\x7f\ +\xfe\x51\xfc\xdf\xff\x6f\xbf\x1b\xed\xee\xd0\xdf\xf4\xe0\x69\x44\ +\x2f\x44\x78\x81\x45\x82\x59\x18\x92\x4e\x6e\x2f\x22\xb3\x70\x35\ +\x10\xdf\xfe\x61\x2f\x06\x43\x36\x74\x56\x5e\x24\x63\xb3\xd1\x1b\ +\x6a\xe2\xf5\x13\x6a\xbc\xde\x49\xbf\xf3\x93\x89\xda\x9f\xca\xdb\ +\xe6\x75\x56\xe4\xce\xdd\xdb\x6d\xd5\x93\xd2\x4a\x56\xae\x8d\x60\ +\x80\x34\x81\x17\x39\x94\x2d\x77\xc3\x73\x57\xfc\x7c\xb6\x8a\x27\ +\x8f\xe7\x71\xfb\xce\x34\xce\x2f\xb8\xa3\x9f\x57\x54\x4a\xde\x7a\ +\x19\x7c\xa7\x05\xf0\xf0\x8c\xf6\x58\x87\x93\x68\x5e\xbe\x31\x86\ +\x2d\x96\x7e\x5d\x11\x31\xb9\xd8\x44\x8e\xeb\x16\xdf\x95\xe9\xc7\ +\x8e\xfc\x7b\x1f\xcc\xe3\x4f\x6f\xb7\xe2\x96\x7e\xff\x87\xbf\xfb\ +\x4b\xf1\xbf\xfe\xed\xd7\xe3\xf5\x75\x27\x1e\x7e\xaf\x8a\xd1\xfc\ +\x49\x2c\x64\xef\x1e\x06\x90\x9d\xa3\x9d\x77\xc7\xb3\x8c\xe2\xbf\ +\x74\xb6\x68\xcb\x44\xb2\xf2\x75\x94\x88\xa5\xcc\xdc\x2d\x4d\x1c\ +\xdf\x2e\xcc\x05\x9e\xe2\x5b\x17\x0b\x51\x3a\xec\xae\xb0\x70\x5b\ +\x5f\x36\xa7\x4d\xaf\x45\x33\x17\x6d\x1a\x7e\x3b\xf0\x3c\x7f\xfd\ +\x8d\x15\xa5\xa1\x6e\xc8\x12\xc8\x92\x0a\x2c\x96\xcd\x4b\xc9\x91\ +\x2e\x8b\x6a\xea\x73\x7a\xbe\x9c\xf9\xae\xfa\x09\x4f\x96\xee\x5d\ +\x8b\x57\xde\xf9\x99\xe8\xbc\xf4\x4a\xec\xbd\x7c\x2b\x76\x5f\xbb\ +\x15\xad\x1e\xef\x7d\xa2\x49\x4a\x8a\x0a\x67\x8d\x90\x85\xf3\xa1\ +\x64\xb4\x01\x47\x5c\x45\x6d\xfb\x5b\xe8\x73\xa2\x0c\x84\x3f\x11\ +\x9e\xc7\xbc\x1d\xae\xe1\x79\x42\xea\xcc\x80\x6d\x7c\x1b\x6a\xfa\ +\xb6\xdf\x40\x03\x0d\xbc\x18\xd8\x3e\xa7\xca\x35\x3a\x41\xc4\xcd\ +\xb9\x26\xfa\x53\x7c\x72\xdb\xe7\xe1\xb3\xe1\xa7\x80\x88\x5a\x6e\ +\x8d\x6f\xd3\x04\xcf\x93\xf7\x43\xf0\x4c\x9a\xed\xb0\x2f\x7e\x05\ +\xb8\xa6\x7b\x23\x6d\xa1\xd8\x95\x9f\x9c\x5a\xaf\x27\xea\x77\x47\ +\xea\x6b\xd5\xcf\xc5\x54\xfd\xd6\x85\x2e\x9b\x3c\x81\xc3\xb7\x3d\ +\xa7\xa2\xcd\x74\xdd\xad\x62\xc9\xab\x0b\xd7\xea\xc7\xe8\xdc\xd5\ +\x77\x7a\x8c\xc5\x93\x6b\xea\xeb\xb2\x2f\x5f\x14\x1a\xd7\x5c\xf2\ +\x52\xff\xc5\xb5\x9d\xcd\x27\xf5\xd1\x1a\x78\xc4\x4c\xe3\x2a\xf5\ +\x66\x31\x1c\x1c\x88\xce\x77\xa0\x3a\x72\xcb\xb8\x7f\x7c\x16\xff\ +\xfc\x5f\xcd\xe3\x9f\xfd\xf3\xf7\xe3\xf7\x7f\xef\x24\x3e\xf8\xc1\ +\x59\xac\x27\x27\xd1\xeb\x1f\xc7\x8d\xd7\x7b\x71\x78\x5d\xee\xe6\ +\x61\xec\x1e\xec\x69\xfc\xa0\x31\x20\x65\x92\xbe\xea\xe2\x95\xbf\ +\xc6\x49\x74\x5a\x8c\x3e\x54\x64\x36\x7b\xf8\x36\x2d\x1d\x99\xc7\ +\x27\xa2\xb1\x61\xc5\x26\x14\x63\x41\xbe\x9f\xca\x0d\x55\x43\x6e\ +\x9e\xe9\x2c\xfd\x3a\xc8\x3d\x9e\xf2\x3f\xe8\xc6\xe1\xa1\xc6\x4d\ +\x07\x9d\x18\x6a\x3c\xe5\xa4\xd4\x39\x8f\xe7\x6b\xac\x95\xaf\x21\ +\xd4\xf8\xaf\xd5\x55\x79\xe9\x0f\x25\xab\xcb\xf7\x50\x67\xf1\x2f\ +\xff\xd5\x49\xfc\xe0\xfb\x93\x38\x9f\x5f\xc6\x6f\xfe\xd6\x2b\xf1\ +\xad\x6f\xde\xd4\xb8\xac\x1b\xa7\x27\xf3\xb8\xb8\x18\xc7\x78\x3c\ +\xcd\x57\x58\x2e\x64\xe1\x51\xe5\x6f\x81\x61\x46\xc6\x37\x64\x41\ +\xff\xd7\x53\x9e\x8c\x05\xb0\x1f\x35\x04\xb0\x21\xc4\xa6\xcc\x62\ +\xd9\xd3\x78\xae\x13\x5f\x7a\xfb\x46\x0c\x77\xd5\x1f\x6a\x1c\xc5\ +\xe6\xcd\xf8\x62\x5a\x36\xcf\xd0\x55\xe3\x60\x64\x0a\x47\x2e\x1b\ +\x6a\xa3\x0b\x6e\x44\xa9\x54\x7f\x65\x1c\x4c\x66\x6c\xe6\x45\x15\ +\x3b\xd7\x56\x71\xed\xa5\x83\x18\x4d\xc6\xf1\xe4\x03\x8d\x75\x47\ +\x14\x75\xa1\x7e\x99\xb1\x0d\xfd\xb9\x2c\x20\x3b\xe7\x06\x4e\x36\ +\x23\x1c\x37\x0f\xf5\x34\x9e\xdd\x3f\xea\xc4\xbe\xec\xb6\x2b\x7d\ +\x3a\xb2\xa9\xac\x23\x01\xf0\x94\xfe\x56\x32\xd6\x2b\xd5\xef\x61\ +\x3f\x8e\xef\x4f\xd8\xc5\x93\x2c\x8d\xab\xd3\xb2\xf6\xc9\x86\xa0\ +\x9f\x7e\x57\x7a\xee\xc9\x81\xc0\xeb\xcc\x77\xf7\x78\x7a\x50\x75\ +\xa1\x01\xee\xb2\x35\x8d\xd3\x47\xad\xf8\xf8\xe3\x8b\xf8\xf8\xa3\ +\x33\xb7\xc3\xae\xc6\x17\xbe\x29\x0a\x51\x86\x6c\x77\x7e\x03\x84\ +\xc6\xed\x3c\x85\xe7\x31\x8f\x95\x21\x13\xd9\x52\xc1\x25\x4f\x0a\ +\xce\x16\xde\x4c\x63\x73\x73\x2c\x1b\xcd\x2e\xab\x98\x9e\xef\xc4\ +\xe5\xc9\x59\x1c\x1c\xed\xc7\xdf\xf9\x5f\xfd\x6c\xfc\x83\x7f\xfc\ +\xef\xc5\xc1\xee\x2c\xee\x7f\x74\x19\xe3\xcb\x51\x2c\xd6\x95\xc6\ +\x6f\x52\x50\xb6\xc5\xbe\x6c\x1a\xe2\xd7\x63\x75\xc6\x19\x80\xdb\ +\xa6\xc6\x35\x26\xf3\x13\xee\x27\xce\xea\x78\x1f\x72\xec\x6c\xde\ +\xe4\x52\x18\x1a\xbe\x42\x32\x0c\x9b\x6c\xe6\xb1\x91\x0a\x97\xe2\ +\x28\x5f\xca\x20\x7d\xb1\xa4\xf9\x54\x44\xea\x4e\x01\x5e\x11\x19\ +\x15\x29\x14\x5e\x69\xec\xbd\x73\x33\x8e\xf6\x34\x3e\x1a\x1c\xc5\ +\xde\xf0\xa6\xda\xf9\x2d\xbf\xf2\xde\x42\x24\xc1\xcd\x5c\x2e\x9f\ +\x5c\x23\x5d\xca\xbd\x82\x9a\x82\xdf\x40\x03\x0d\xfc\x75\x80\xe6\ +\x6c\x6d\xa0\x81\x17\x07\x9d\xff\x8b\xa0\xe0\x0d\x34\xd0\x40\x03\ +\x0d\xfc\x55\x82\x9f\x68\xc4\x53\x27\xbe\x9a\xcc\x3d\x0b\x50\x9f\ +\x8d\xf9\xa4\x2c\x6b\x3a\x93\xb3\xa7\xfc\x72\xa8\xfd\x9f\x04\xae\ +\xf4\x64\xf6\x86\xd0\x22\x78\x31\x8f\x18\x9d\xc6\xf4\xe4\x5e\x2c\ +\x1f\xbc\x1b\xcb\x3b\x7f\x1a\x93\x0f\xbf\x1d\x93\x8f\xdf\xd5\x64\ +\xf7\x38\x96\xf3\xb9\x9f\xca\x6a\xf7\x07\xde\x70\xca\xbb\x85\x95\ +\x54\x13\xda\xf6\x32\x5f\x53\xc3\xd3\x36\x9e\x90\xc2\x27\xa1\x2c\ +\x0a\xe0\x72\x33\x84\xac\x72\x42\xea\x49\xa9\x35\x61\x22\x29\x8c\ +\x89\x31\xc2\x44\xe1\x1b\x1a\x4b\xd1\x49\xdf\xe1\x75\x91\xdd\xbe\ +\xe3\xb9\xe3\x78\x36\x5d\xc6\x7c\x34\x8f\xf5\x64\x1c\xd5\xe9\x28\ +\x2e\x1e\x2d\x63\xb0\xe8\xc5\x97\xbe\x3a\x8c\x5f\xff\x8d\xbd\xf8\ +\x3b\x5f\x69\xc7\xcb\x87\xe1\x4d\x8e\xbb\xb7\x3b\xf1\xbd\xdb\xa3\ +\xe0\x9d\x8f\xfd\x6e\x15\x03\xcd\xed\x99\xcc\xb7\xba\xca\x93\x55\ +\x03\x4d\xf8\xfd\x4d\x07\xd1\xbb\x6d\x56\x23\xa4\xc3\x42\x34\x16\ +\x00\x04\x6c\xbe\x59\x23\x15\xca\x13\x5b\x0e\x72\x2c\x63\xa1\x1b\ +\xc2\x58\x40\x61\xb3\x65\x2e\x1b\xf0\x5a\x9f\x73\xe9\xf6\xf0\x49\ +\x15\x77\x4f\x16\xf1\xe4\x8c\x27\xf7\x24\xbc\x33\x8b\xf6\x7a\x11\ +\x1d\x5e\x79\xd4\x96\x2e\xbb\xdd\xe0\xfb\xf3\x97\xd3\x4e\x1c\xee\ +\xf5\xe2\x9b\x3f\x7f\x2b\x5e\xb9\xd1\x8b\xfd\xfd\x75\x9c\x3d\xee\ +\xc6\x77\xff\xf4\x49\x4c\x78\xc5\xe3\xba\x13\xd5\x6a\x16\xbb\xfb\ +\x3b\xde\xfc\x59\xac\xaa\x98\x8c\xd6\xca\x8f\xd7\xea\x94\x55\x10\ +\xe5\xcb\x9a\x85\x8a\xe2\x85\x85\x15\xdf\xe6\x90\xfe\x3c\x85\x87\ +\xa6\x98\xd4\x8b\x0e\x8b\x55\xbc\xf1\x9a\x26\xef\x4a\x86\x65\xa9\ +\x8d\x6a\x2e\xde\x75\x2e\x48\x2c\x94\x86\x27\xb0\xf0\x73\x62\xcf\ +\x62\x50\xe2\x08\xc1\xf7\x6b\x8a\xe6\xca\x63\x59\xc5\xe1\xf5\x9d\ +\x78\xed\xd5\x37\xe3\xb5\x37\xaf\xc7\x93\x47\x97\xf1\xf0\xe3\x63\ +\xdb\x0f\x9d\x68\x17\x5e\xa4\xf0\xbf\xf8\xae\xf3\xf4\x59\xf8\x61\ +\xc1\xcd\xaf\x88\xe4\xe7\x74\xd2\xc8\xf1\x6a\x47\x7d\x16\xcc\x68\ +\x33\x2b\x2f\x7c\xf1\xe4\xa3\x0d\xaf\x78\xda\x16\xaf\xee\x6c\xb3\ +\x71\xa7\x72\x39\x69\x49\x9f\x0b\x20\xbc\xf2\x13\x7b\x2c\xe2\xe4\ +\x6c\x1e\xef\xbf\x3b\x89\x7b\x77\xa7\x71\x39\x99\xba\x4d\xb2\x58\ +\xe1\x85\x47\x95\xd9\x52\x29\x98\x92\xfb\x5b\x1e\x10\x04\x7e\x22\ +\x8d\xf2\x57\x0b\xdb\x64\x29\x3b\xf1\x14\x1f\x75\xee\xcd\x42\xf1\ +\x79\x41\x72\xd5\x8b\xae\x6c\xf1\x9d\x0f\x26\xf1\x9d\x8f\xf6\xe2\ +\xb7\x6f\xbc\x13\xff\xd7\xff\xec\xe7\xe2\x3f\xfb\xc5\x57\x63\x70\ +\x32\x8b\xfb\xdf\x1f\xc7\xc5\xe4\xd4\x4f\x09\xfa\x35\x59\xbc\xd7\ +\x88\x85\x4f\xd9\x98\xc5\x26\x7c\x21\xa9\x0f\xb8\xea\x2b\xef\x60\ +\x4f\x3a\x9b\xd2\x1b\x57\x36\x3f\x93\x2e\x5f\xfa\x49\x43\x14\xb7\ +\xae\xa4\xc9\x12\x09\x84\x53\x06\x9e\x2c\x83\xd6\x42\x3e\x4e\x6d\ +\x30\xbf\x43\x57\xd2\xc9\x4f\x99\x99\xc6\x72\xb1\xa5\x9c\x37\xdd\ +\xf0\x8b\xcd\xdd\xc8\xc4\xc3\xa2\x63\x7f\x30\x8c\x6e\x7f\x37\xf6\ +\x76\x76\xe2\x70\xb7\x17\x3d\x5d\x37\x4e\xee\x7f\x18\xe7\xef\xff\ +\x69\x9c\x7f\xef\xfb\x31\xb9\x77\x3f\xc6\xe7\xa7\x92\xcd\xa2\xdf\ +\x20\x3a\x43\xbe\x7d\xa3\xf3\x5a\xd9\xb4\xd4\x0e\x01\x49\xce\xbc\ +\x36\x00\x9e\x75\x61\x3a\x45\xd9\x8a\xae\xd1\x67\xfd\x52\xe2\x3f\ +\x1f\xb6\x64\x3d\x85\x6f\x03\xf4\x67\x5d\x9d\x41\x8d\xe3\x03\xdb\ +\xfe\xb6\x12\xcf\xf2\x35\xd0\x40\x03\x3f\x19\x6c\x9f\x4b\x5c\x1b\ +\x36\xae\xd0\xb6\xa1\xbe\xa6\xd8\x7b\x86\xe1\x79\xfc\x86\xed\x88\ +\x1a\x7f\xc6\xaf\xe5\x6e\xce\x6d\x0e\xcf\xf0\x3c\x05\x49\x33\x97\ +\xd2\x32\xce\x21\x31\x9b\x28\xab\x15\x4f\x99\x69\x6c\xb0\xbe\x8c\ +\x79\x75\x1e\xd3\xf9\x63\xf5\xab\x8f\xa3\x5a\x1c\x47\xb5\x3c\x51\ +\x5f\xf3\x38\x66\xf3\x07\xf2\x4f\xd4\xd7\x5f\xea\xd2\x7b\xa9\xbe\ +\x63\xa4\x34\x13\x09\x63\xf3\x8d\x6f\xa6\xc9\x69\x9c\xb4\x5e\xf3\ +\xf4\x1a\xcf\xdf\xf3\x3a\xc1\xb2\x43\xc4\x05\xdd\x1b\x3b\x72\xc2\ +\xb9\x81\xc9\x4f\x95\x2d\x79\xe5\x21\x9b\x2a\xea\x8f\x16\xd2\x85\ +\x27\xdd\x56\x17\x31\x1e\x5d\xc4\xe5\x78\x16\x3b\x1a\x67\xfc\xcd\ +\x9f\x1d\xc6\x6f\xfe\xdd\xd7\xe3\x8b\x5f\x3c\x88\x37\xdf\xd4\xf5\ +\x7b\xa7\x1d\xf7\xef\x2f\xe3\xf4\xc9\x59\x4c\xd9\xd0\x50\x5f\xbc\ +\x98\xe6\xb7\x54\x07\x7d\x6e\x84\xf1\xb3\xc8\xee\x9f\xb8\xd9\xa3\ +\xb3\xd6\xb5\x5e\xe5\x55\xf6\x92\xad\x91\x86\xfa\x11\x9e\x88\xe7\ +\xc9\x79\xbf\x96\x4f\x9a\x32\xae\x5a\xaf\xbb\x52\x43\x74\xa9\xcc\ +\x4d\x2f\xdc\xb4\x32\xd7\xd8\x62\x34\x5e\xc5\xe5\x65\xbe\x26\x91\ +\x3e\xcd\x4f\xae\x73\x33\x87\x0c\x49\x78\xc9\xd3\xfe\x94\x91\x8d\ +\x0f\xf5\x45\x48\xac\x56\xed\xd8\x1d\xae\xe3\x95\x97\x5a\x71\xe3\ +\x95\x5d\x8d\x6b\x26\xf1\xc1\xf7\xa5\xeb\xb2\x17\x87\x87\xdd\xe8\ +\xab\x0c\x6c\xe0\xb8\x4f\xa7\x9f\x57\xf2\xec\x02\xb3\x2f\xa7\x56\ +\xdc\x3f\x72\xe3\x0c\xfd\xa3\x74\xa4\x9b\xc7\x8c\xd0\x29\x17\x23\ +\x3e\x15\x44\x74\x6e\x18\x5a\xc6\xee\xae\xc6\xa4\x94\x49\xb4\xd9\ +\x54\x76\x45\xae\x12\xf8\x15\xda\xc6\xf5\x53\x3a\x36\xd4\x2a\xbe\ +\x57\xcb\x13\x6c\x96\x95\xe5\x50\xb4\xc6\x84\x2a\x9f\x86\x64\x47\ +\x37\x0e\xd5\xaf\xf6\x62\x32\x9e\x46\x35\x95\x7d\x65\xbc\x8e\x7e\ +\x32\x94\x6f\x8a\x51\xe6\xe2\xcf\xf6\x84\x1a\x34\x45\x8f\xaf\xe5\ +\xb3\x31\xd9\xd7\x58\xa8\x3b\xe0\xc9\x77\x11\x6c\x62\xf9\xd4\x01\ +\x01\xc6\x51\xca\x97\xb7\x25\xf8\x3b\x72\x73\xe9\x47\x9b\x30\x8f\ +\xfa\x78\xa5\x11\xe6\x24\x1a\x29\x7a\xb3\xaa\xab\xf1\xd7\xce\xee\ +\x30\xf6\x0f\x76\x62\x97\x0d\xcf\x41\x15\xe3\x71\x15\x1f\xbd\x37\ +\x8e\x3f\xfd\xce\xb1\xc6\x53\x67\x4a\x57\xbf\xd2\x9d\x72\xd6\xe5\ +\x22\x73\xf9\x2a\xbf\xc7\x8a\x8c\x9d\xaa\xb4\x9f\xcb\x4e\x1b\xf1\ +\x18\x52\xa3\x27\x6c\xad\xf1\xef\xe8\x62\x16\x67\xc7\x93\x98\x5f\ +\xae\xe3\xf2\x49\xc4\xf1\xd9\x79\xbc\xf3\xd5\xd7\xe3\x1f\xfd\x97\ +\xbf\x1c\x7f\xef\x1f\xff\x42\x54\xe3\x49\xdc\xf9\xf0\x38\xc6\x53\ +\x8d\xe3\xd9\x68\x92\xce\x0b\x6f\x40\x93\x13\xf5\x95\x63\x18\xc6\ +\xe1\xdc\xbc\xe3\x71\x9c\xca\x92\x63\xd7\xa2\x97\x7e\x39\xa6\xa3\ +\x7e\x94\x46\xce\xe3\x2f\xf8\x4b\x9c\xeb\x1f\x9a\x46\x29\x84\x19\ +\xef\x21\x9b\xfa\x4b\xf9\x38\x71\xd3\xb0\xd9\x4c\x43\xb0\x8c\x96\ +\xaf\x85\xa4\x3e\xd2\x86\xa9\x96\xea\x57\x18\x37\xe7\xf1\x3d\x39\ +\x5e\x39\xbe\xee\x8e\x63\xbe\x38\xd7\x78\xf0\xb1\xca\x78\x37\x1e\ +\x9f\xdd\x8b\xb3\xf1\x43\xcd\x11\x1e\xc6\xac\x1a\xdb\xee\xcc\x73\ +\x38\x37\xa8\x39\x6a\x25\x37\xc7\x05\xe4\x91\xd8\x16\x3c\x1b\x6e\ +\xa0\x81\x06\xfe\x2a\x42\x73\xa6\x36\xd0\xc0\x8b\x83\x66\x43\xad\ +\x81\x06\x1a\x68\xe0\xaf\x12\x30\xca\xa9\x9d\x67\x41\x82\x1f\x6b\ +\xe4\x53\x27\x06\x72\x72\x5a\xfb\xb5\x7b\x16\xa0\x7d\xd2\x14\x69\ +\x43\xd7\xa1\x0e\x03\x4f\xc5\x3d\xc7\xff\x34\x78\x1e\x2f\x4f\xbb\ +\x78\x52\x2d\xea\x7a\x76\x19\x8b\xe3\xdb\xb1\x78\xf8\x5e\xcc\x6e\ +\x7f\x37\x16\x6c\xa4\x3d\xfc\x28\x16\xe3\x0b\x4f\x80\xd7\x9a\x68\ +\xf3\x24\x4c\xc7\x0b\x10\x4a\xc7\x84\x51\x13\x4a\xbf\x9a\x91\x79\ +\x7f\x99\xdc\x23\x2f\x37\x3c\xd8\xec\x60\xb1\x25\xc3\x4c\x5c\x9d\ +\x37\x13\x52\x3c\xfd\x52\x97\x0c\x27\x96\x07\x26\xc3\x4c\x5e\x99\ +\x54\xa2\x9b\x27\xbd\x10\x57\xa9\x6f\x5f\x19\xfa\x5b\x59\x73\x5e\ +\xe3\x37\x8b\xf1\xf9\x59\x54\x27\x27\x31\x7f\x70\xea\x09\xf9\x1b\ +\x37\xf7\xe2\x6f\xfe\xea\x3a\xfe\xd6\xb7\x6e\xc6\x37\x5f\x6a\xc7\ +\xc5\xa3\x2a\x3e\xba\xdf\x8d\x3b\x4f\x58\x00\xa9\xa2\x37\xac\x54\ +\x0e\x3e\x2c\xbe\x8c\x0a\xa5\x97\x92\xcb\xad\xc5\xe4\xa6\x62\x51\ +\x73\x4c\x9c\x59\xfc\x61\x22\x4d\x98\x55\x0c\x7f\xa0\xdc\x38\xc0\ +\x24\x5c\x69\xca\xc2\x09\xd3\x67\xeb\x29\x01\x7e\xd2\x6b\x36\x8f\ +\xcb\xf1\x3c\xce\x2f\x67\x71\x2c\x1d\xef\x3d\x59\xc6\xd9\xb4\x8a\ +\x31\x1b\x82\x2c\xb8\xec\x56\x31\xec\x2f\xa2\xbb\xb3\x8a\x89\xe6\ +\xe7\xf3\x49\x27\xde\x7e\xe7\x7a\x7c\xed\x1b\x37\xe2\xed\x2f\xee\ +\xc5\xfe\x8d\x69\x9c\xdd\x5f\xc5\x87\xef\x3d\x89\x87\x8f\x2e\x62\ +\x55\xed\x68\x14\x31\xf1\x86\x0e\xa6\x9f\xf1\x9a\x23\xdf\xe1\x8c\ +\x8e\xd2\x8a\x05\xab\x45\x2e\x0a\xa0\x16\x0b\x66\x21\x1b\x7a\x4d\ +\x48\x38\xeb\x6c\xdd\xc1\x2a\x5e\x7b\x65\xcf\x75\xb5\x64\x83\x90\ +\x45\x83\x8a\x72\xb4\xc4\x2e\x5c\xe9\x17\x55\xea\x6f\xb9\x94\x87\ +\xb5\x03\x97\x56\x79\x48\xef\xf9\x84\x3b\x9b\x3b\x31\x1b\xcd\x62\ +\x34\xbd\x8c\xaf\xff\xfc\x3b\x31\x9d\xce\xe3\xad\xb7\x0f\xe3\x8f\ +\xfe\x8d\xda\x8b\xd2\xb6\x79\xbd\x54\x47\xfc\xaa\x2b\xfd\xd3\xe9\ +\x47\x15\xe2\x63\x72\xde\x42\xc8\x9d\xe0\x2c\x00\x59\x5f\x14\x75\ +\x4e\x2c\xd0\x88\xab\xdb\x75\xba\x95\xea\x66\x36\x5a\xba\x2e\xd8\ +\x3f\xf4\x46\x2d\x77\xff\xf6\x72\xb1\xc9\x1b\x3d\xa4\xd3\xbf\x4d\ +\xce\x1d\xe4\x2d\x62\x24\xdb\xdf\xbb\x33\x8e\x8f\xde\x9b\xc6\x93\ +\x93\x49\xcc\x96\x73\xc7\xb9\xbe\x94\x61\xda\x49\x19\x53\x46\x49\ +\xf0\xd1\x0a\x12\x9f\x76\xf4\x46\x9a\x1c\xf6\xb3\x8d\xcd\x29\xdd\ +\xc4\xb7\x8c\x45\xf4\xaa\x9e\xec\xba\x8e\xdb\x1f\x4e\xe3\xa3\x1f\ +\xbc\x16\xff\xc5\x6f\x7c\x35\xfe\x9b\xff\xf0\xcd\xf8\xed\x9b\x37\ +\xe3\xe2\x7d\x9e\x88\xbb\x88\xd9\xf8\x2c\x56\x13\x9e\x28\xac\xa2\ +\x55\x2d\x62\xc1\x82\x0d\x0b\x40\x92\xc9\xa2\xd9\x1a\x7f\xb5\x10\ +\x8d\x45\x9b\x5c\xbc\x61\x85\x91\x85\x9c\x96\xc2\xb9\x80\x93\xe7\ +\x5a\x6e\x90\xa1\x41\x6a\x4c\xc9\xf1\xed\x88\x93\x8e\x4a\x5c\xc2\ +\x4a\x47\x43\x21\x2d\x8b\x67\x5e\x28\xca\x30\x4f\xe6\x71\x4e\x23\ +\x27\x37\xea\xb8\x63\x7f\x21\xfa\x5a\x6d\x00\x5d\x78\x7a\x2e\xf3\ +\x04\x68\x65\xf5\x79\xed\xba\x21\xa5\xdb\x9c\x6c\xa8\xf4\xbc\x66\ +\x74\x67\x67\x18\x3b\x2c\xc4\xa9\x8e\xaa\xc9\x71\xdc\xff\xfe\xf7\ +\xe2\xd1\x7b\xdf\x8d\xb3\x8f\x75\x3d\x79\x74\x1c\x93\xe3\x33\xab\ +\xb2\xb3\xbf\x17\xad\x1e\x77\xb4\xb3\x69\x2e\x49\xd2\x31\xaf\x41\ +\x64\x54\xfc\xa7\x80\x3a\x91\x87\x2a\xf2\x8b\xb7\x81\xd4\x30\x01\ +\x7a\xed\x7e\x08\x9e\x4b\xfc\x8c\xf0\xbc\xb4\xd0\xea\xcc\xeb\xf8\ +\x67\xf9\x7e\x92\x3c\x1b\x68\xe0\xf3\x0e\xcf\x9e\xec\x40\x4d\xe3\ +\xda\xe4\x38\x07\x40\x04\xc2\xeb\x6b\xc9\x26\xe1\x96\x5f\xa3\x3f\ +\x2a\x64\xc7\xb5\x95\x8d\x02\xd6\x03\x7a\xd1\xe3\x13\xf2\xdd\x1c\ +\xb9\x89\x62\x3d\x53\xff\x38\x56\x1f\xab\xf1\x4a\x75\x1a\x73\xf9\ +\x8b\xea\x58\x7d\xf9\x43\xf5\x01\x8f\x74\xfd\x7f\xac\x62\x9d\x8b\ +\x4f\xf4\xe5\xa9\xae\xc9\x17\x7e\x32\xcd\x9b\x6f\x2b\x9e\x48\xa3\ +\xef\x65\x57\x28\x37\xd1\xdc\x67\x49\xae\xfb\x31\xdf\xaa\xa0\x2b\ +\x3c\xd7\x7d\x87\x89\x55\x9f\x51\xfb\x22\x71\xfd\xa5\x5f\xf3\xcd\ +\x1c\xea\x03\x5a\xba\xee\xfb\x49\x37\x36\xd9\xaa\x91\xf4\x38\x8d\ +\xd3\xb3\xd3\xb8\x7b\x2a\x1d\x67\x8b\xf8\xea\x97\x87\xf1\x77\x7f\ +\xeb\x5a\x7c\xe9\x1b\x87\xb1\xff\xd2\x44\xd9\x2e\xe2\xd1\xe3\x61\ +\x5c\x3c\x5c\xc4\x74\x3c\xf6\xf7\xae\x26\x97\x97\x7e\xda\x7b\x38\ +\xdc\xb5\x4d\xf8\xee\xac\x8b\xab\x5e\x83\x3e\xd3\x81\x75\x57\x79\ +\x82\xe7\x53\xe8\xf4\xe9\x84\xd0\x35\xf9\xe8\x53\xd9\x60\x5b\xab\ +\xbf\xd4\x98\x4c\x45\xe4\xf5\x88\x6c\xaa\x8d\x46\xeb\x98\x7a\xb3\ +\x8d\xf1\xa7\xc6\x00\x8c\x2b\xe4\xd8\x08\x63\xac\x41\x39\x10\x46\ +\xd9\x24\x36\x7a\x1a\x37\x1c\x1e\x55\xf1\xea\x2b\xbb\x1a\x27\xb4\ +\xe2\xfe\xbd\x59\x5c\x5c\xb4\x62\x67\xaf\x1b\x9d\xfe\xd4\xdf\xe9\ +\x62\x63\x8d\x34\x7e\xba\x4d\x3a\x92\xaf\x75\xcd\xbf\xed\x93\xaf\ +\x28\x94\x5e\xae\x57\xca\xa0\x74\xca\x8a\x31\x84\x6f\xf4\x91\xde\ +\x7b\x3b\x1a\xe7\xa8\xc3\xe3\x7b\xaa\xd5\x8c\xfa\xa5\x8f\x55\x7d\ +\x48\x17\xda\x0c\xd5\xc0\xa6\x0e\x37\x3f\x71\xe3\xd2\xdc\x1b\x4b\ +\xc8\x56\x7e\xc8\x57\xfe\xea\x04\xa3\xdf\x8f\x18\xde\xe8\xb3\x95\ +\x65\x19\xa3\x0b\x9e\x64\xc3\x36\xfa\x95\x1b\x8e\x0c\xf2\x9e\x1a\ +\x53\xa9\xbf\xf4\xeb\xc8\xfb\x2d\x8d\xa5\x34\x2e\x56\xff\x9b\x37\ +\x21\x25\x1f\x12\x00\xc6\x4b\x1e\x0a\xd0\xe7\x6a\xbc\x92\xaf\x55\ +\x17\x9d\xbe\xdc\x2c\xb2\xab\xc6\xd4\xf0\x0d\x76\x06\x31\xdc\xed\ +\xc5\xce\x50\x63\x50\xd9\x8c\x87\xcc\x79\x7a\xf2\xe1\xbd\x45\xbc\ +\xf7\xfd\xb3\xb8\xfd\xde\x24\xc6\xb3\x89\xf2\xa3\xbb\x56\x7a\x65\ +\xc6\x93\x79\x08\x74\xbb\x93\x5b\xc8\xc0\xdc\x88\xc4\x46\x1a\x4f\ +\x02\x6a\xc4\x2a\x72\xb6\x07\x6f\xa8\x31\xae\x56\x7d\x2e\x46\x11\ +\x17\xa7\xb3\x38\x7d\x72\x1e\xcb\x51\x27\x4e\x8f\x35\xa6\xd4\xb8\ +\xf2\x57\xfe\xee\x17\xe3\x3f\xfe\xaf\x7e\x25\x7e\xf5\x6f\xff\x4c\ +\x3c\xfe\xe8\x34\x9e\x1c\x8f\x64\xbb\xb1\x6d\xb3\x64\xbc\xc2\x58\ +\x46\xf9\x50\x47\xdc\x78\x97\xf9\x5e\xb5\x7d\x5e\x31\xe9\xcd\x34\ +\xec\x8c\x0f\xcd\x9b\x64\x49\xf7\x39\x20\x1a\x71\x4e\x27\xe5\x19\ +\x2b\x99\xc6\x0d\x72\xfa\xf9\x35\x95\x3e\x9f\x4a\xbd\x2a\x4f\x68\ +\x70\x67\xfa\xe4\x4b\xfb\x01\x6a\x11\xd8\x03\x27\x9c\x9b\x0e\xf1\ +\x79\x85\x2b\xe7\x25\xf9\xb0\xe1\xd6\x1f\xaa\xce\x86\x4b\x8f\xfb\ +\x17\x9d\xb3\x38\x9f\x3e\x8c\xe3\xcb\x3b\x9a\x23\xdc\x8d\xf1\xf8\ +\x3c\x1e\x9f\xde\x57\x7b\x9a\xa9\x1d\x0f\x7d\x23\x92\x5f\x55\x89\ +\x05\x55\x44\x7c\x0d\x98\x24\x6f\x93\xe9\x16\x3c\x8f\xd6\x40\x03\ +\x0d\xfc\x55\x80\xe6\xec\x6c\xa0\x81\x17\x07\x1a\x77\xa8\xb7\x6e\ +\xa0\x81\x06\x3e\x97\xd0\x9c\xfc\x7f\x49\x80\xa1\x7f\xd4\xd1\xcb\ +\x76\xe5\x90\xf6\x47\xae\xac\x9c\xfc\x26\x56\x67\x7f\x25\xe4\x79\ +\xe2\x6a\x15\x9f\x8d\xab\xb3\xff\x24\x7f\x1b\x6a\x19\xc0\xb3\x71\ +\x35\x94\x69\xdd\xd3\x72\x3c\xe9\x03\x34\x49\xbc\x3c\x8f\xf9\xf9\ +\xa3\x58\x9f\xdc\x89\xe9\xe9\xa3\x88\xa9\x26\xae\x2d\xee\x8e\xcd\ +\x05\x7a\x36\x5b\x7c\x47\xa6\x26\xaf\x4c\x9e\x93\xc6\x62\x3f\x93\ +\x45\xe4\xca\xf1\x61\xb2\xba\x7b\x63\xe6\xa7\xc9\xb3\x37\x4a\xca\ +\xe2\x4d\x3e\x05\xc3\x44\x98\x38\xe1\x4c\x84\xfd\xae\x9d\xc4\x99\ +\x6c\xea\x90\xce\x3c\x4c\x82\x71\x49\xe3\xa6\x54\xdf\xa5\x2b\x36\ +\x6f\x28\x89\x0e\x0d\x80\xa7\xa3\x7c\xe6\x3c\xd1\xa6\x89\x3a\x8b\ +\x2c\x83\x5d\x16\x19\x7a\x71\x73\x7f\x18\xc3\x37\x34\x61\x3f\x9d\ +\xc4\x7f\xfb\xbb\x17\xf1\x3f\xfc\xe9\x49\xfc\xde\xa3\x65\x3c\x58\ +\x9c\xc5\x57\xbe\xdc\x8a\xeb\xfd\x99\x17\x12\x96\x9d\xb6\x5d\x6b\ +\x99\x9b\x06\x59\x9b\xca\x83\x3c\x95\x8f\xef\xc2\xed\x74\x82\xa7\ +\xa2\xf2\xdb\x0b\xe8\xe1\xdc\x85\x17\xdb\x96\x85\xb5\x3a\x75\xcb\ +\x6c\xa4\x47\x51\x5e\x23\xc4\xf7\xe0\x06\xb1\xbf\xd3\x8f\x83\xc3\ +\x5e\xbc\x7c\x6b\x1e\xaf\xbf\xd2\x8d\xd7\x5e\xde\xf5\xd3\x5a\x3d\ +\xc9\xae\x16\xbc\xb2\x67\xe0\x8d\xaf\xc9\x74\x12\xf7\x1f\x5c\xc6\ +\xed\x3b\x27\x71\xef\xde\x58\x78\x3b\xa6\x73\x95\x55\x32\x7a\x7b\ +\x92\x2d\x03\xcc\x26\x68\xc1\x36\x52\x47\x74\xd5\x18\x79\xf9\x2f\ +\x1d\x64\x2b\x3f\x8d\xc4\x8f\x7a\x5a\x77\x95\x6f\x27\x7e\xfe\xe7\ +\xf6\xa5\x15\x8b\x1b\x2c\xbc\x2c\x63\x32\xca\xc5\x81\x6a\x16\x31\ +\xaf\x2a\x2f\x0e\x2d\xc4\xef\xbb\x89\x57\xb9\x79\xc7\x02\x02\xc0\ +\x37\x42\xfc\xca\x47\xd9\x68\x35\x5d\x45\x7b\x38\x89\x7f\xf0\x1f\ +\xfe\xcd\xf8\xd6\xaf\xbc\x21\x39\x93\xf8\x97\xff\xdf\xf7\xe3\xf7\ +\xff\xfb\x3b\xb1\xec\x56\xb2\xd7\x2a\x86\x7b\x5d\xd9\x8e\x8d\xaf\ +\x62\x0b\xf9\x98\x94\x3b\xd6\xfb\xbb\xed\xd8\x3b\x94\x8f\xdd\xbb\ +\xd8\x37\xe9\x4a\x11\x9d\x21\xae\xe7\xd7\x23\x72\x37\xf9\xe8\x31\ +\xe5\x50\x9b\xec\x52\xfb\xe2\xf5\x93\x6d\x3c\x89\xa6\x50\x1a\xdf\ +\xe9\xbb\xca\x73\x3a\x53\x7d\x9f\xa8\x8e\xef\x4e\xe4\xcf\xa2\xaa\ +\x16\xe1\xa7\xe5\xdc\x88\x54\x2e\xaa\x43\xd2\x40\x58\x12\xa1\x9e\ +\x4a\xc5\xe9\x2f\x9a\xdb\x2c\x8b\x7a\xb4\xcd\x6c\x9f\xb4\x31\x74\ +\x23\x19\x77\x23\xeb\x4c\x88\x5d\xd9\x6c\x3e\x5d\xc4\x1f\xbe\xab\ +\xbc\xcf\xdf\x8e\xff\xea\x97\xdf\x8a\xff\xfa\xef\xed\xc5\xd1\x62\ +\x10\x8f\xbf\xbb\x54\x7b\xbc\xf4\xeb\x8c\xc8\xae\x4d\x1a\xc9\x45\ +\x77\xd6\xd0\xc8\xd2\xe7\x82\x70\xd6\x6a\x6d\x1f\x6c\xce\x62\x1d\ +\xc4\x02\x6e\x49\x52\x90\x07\x00\x5c\x9f\x8e\xb7\xc2\x06\x16\xd4\ +\x32\x31\xb9\x64\x3a\xeb\xe9\x36\xaa\xd2\x90\x85\x70\x2f\x0a\xda\ +\xe1\x11\x07\xa7\x64\x2b\x0e\x1e\xec\xb8\xf6\x26\x35\x8b\xa1\x49\ +\xc7\xf1\x8a\x55\x5e\xf3\xe8\x57\x1e\x29\xce\x77\xe6\xcb\x96\xf0\ +\x60\xd3\x94\x87\xd5\xd8\x88\x93\x9d\x08\x8b\xc7\xb6\xd3\xf9\x3e\ +\x9e\x4d\x63\x7c\x79\x1a\x17\xc7\x97\x31\x57\xcd\xde\x78\xf9\x0b\ +\x71\xed\x0b\x6f\x47\xeb\xd6\xcb\x71\xe3\x0b\x5f\x8e\x83\xd7\x5f\ +\xf7\x66\x3c\xda\xb3\x38\xc6\x32\xa5\x04\x58\x6e\xea\x28\x70\xd1\ +\x14\xb0\x6f\x4a\x42\x09\xe3\xd5\x40\x74\xcd\xb6\xcd\xbe\xcd\xf3\ +\x99\x60\x3b\xf1\xf3\x60\x3b\x93\x6d\xf8\x2c\x69\x1a\x68\xa0\x81\ +\xcf\x06\x9f\xf9\x9c\xd9\x3e\x11\x9f\x77\x62\x7e\x16\xd8\x4e\x57\ +\xe3\xf2\xb3\xc3\x78\x4e\xb4\x0e\x5c\x77\x0b\x9b\xc1\x17\xf3\x9a\ +\xa0\xab\xb7\xe9\x19\x39\x5b\x3e\x8c\x6a\x3e\x8e\x25\xaf\x74\x5c\ +\xf2\xed\xb3\x89\xfa\x91\x89\xc4\x4f\x44\x13\x7d\xad\x0e\x38\xd8\ +\x34\xe3\xa9\xf4\x85\xc6\x31\x33\xd1\xd9\x3c\x63\x61\x9f\xfe\x1b\ +\x29\x99\x1f\xfd\x35\x1b\x03\x48\xf6\xc2\xbe\xae\xb5\x74\x10\xfc\ +\x80\x7a\xb1\xdf\x37\x86\xa0\xbf\x7d\x45\x28\x01\xd7\x65\xf7\x0f\ +\xe6\xd3\x38\x0e\xd4\x7d\x63\xcb\x1b\x4d\xcb\x65\x3f\xd6\x1a\x8f\ +\x44\xab\x17\xad\x81\x46\x2e\xfd\x6b\x31\x50\xba\xfd\xeb\xb3\xf8\ +\x93\x3f\x3e\x8d\x7f\xfa\xcf\xef\xc5\xef\xfc\x93\x07\xf1\xde\xfb\ +\xd3\x18\x4d\x47\xd1\xef\x8d\xe2\xe8\x68\x10\x87\x37\xfa\x71\xe3\ +\xfa\x51\xec\x1c\xf4\x7d\x13\x0a\xaf\x10\xe6\x46\x91\xae\x7c\x67\ +\x27\x3d\xd8\x1a\x60\x7c\xe5\xfe\x46\x79\xb2\x39\xc5\x26\x0b\x61\ +\x6e\xc0\x62\xf3\x01\xbd\x79\xc2\x9c\x1b\x93\x78\x7a\x9d\x71\x4d\ +\x7f\xb0\xf6\x77\x6a\xaf\xdf\x1c\xc4\xd1\x35\x5e\x0b\xb9\x8e\xe1\ +\x60\x90\x9b\x49\x1d\xe9\xeb\x3e\x31\xfb\x2c\x59\x26\x16\x95\x7a\ +\x1b\xf5\x99\x6c\x60\xdd\xbd\x37\x89\x07\x77\x34\x76\xa9\x3a\xf1\ +\xd2\xeb\xa4\x93\x6d\x64\x02\xbf\xe5\x60\x2a\x3a\x6f\x16\x98\xcb\ +\xde\xdc\x38\xb3\xac\x37\x87\xe8\xaf\xa9\x3f\x74\x65\x6c\x95\x7d\ +\x28\x37\xb9\xf0\x3d\x52\xca\xb0\xb7\xb7\x1b\xb7\x5e\x19\xc6\xde\ +\xfe\xc0\xe3\xce\xf1\x58\xf5\x25\x39\x69\x79\xca\xcb\x18\x8b\x61\ +\xf3\x32\x66\x1a\x07\xf0\xb4\xdd\x5c\x3e\xe3\x2b\x55\x87\x9c\x38\ +\xc5\x03\xd3\x81\xc6\x73\x87\x5f\xdd\x8b\xfd\xc1\xae\xfa\xcb\x49\ +\x7c\xfc\xfd\x51\x4c\x2e\xd4\x1e\xa4\x87\xbf\x1f\xac\x72\xb9\x19\ +\x66\x31\xd3\x86\xaa\x13\x36\x0c\x89\xdb\xdd\x93\x3e\x07\xbc\xf6\ +\xb1\xaf\x71\xaf\x74\xe5\x27\x1e\xea\xdb\x63\x17\xd9\x96\x61\xb6\ +\x42\xb1\x9a\xab\x5e\x66\xd4\xbb\x08\x92\xc5\x2b\xb6\x19\x47\xf0\ +\x3a\xd0\xee\x4e\x2f\xf6\x34\x3e\xf5\xb7\xd9\x86\xa8\xb6\x88\xf3\ +\xf3\xa9\xc6\x52\xab\xb8\xf7\xf1\x28\x2e\x2e\x47\x4e\xc7\xd8\xde\ +\xed\x0a\x99\xca\x03\x60\x6e\xc0\x8f\x71\x0e\x4f\x9e\xe5\xdc\xa0\ +\x44\xda\x22\x94\x95\x7a\xad\xc4\xdb\x8a\xf9\x65\x27\x4e\x1e\x8e\ +\xe3\xe2\xf4\x22\xaa\x49\x37\xa6\x23\x6e\x2e\x6b\xc5\xaf\xfd\xfd\ +\x37\xe2\x6f\xff\x2f\x7e\x25\xae\xdd\xec\xc7\xd9\x43\x9e\xfc\x93\ +\x5d\x75\x6e\xd0\x26\x68\xac\x39\x96\x95\x1c\xe7\xef\x11\x9b\x75\ +\xc0\x26\xa9\x4c\x8e\x47\x9c\x65\xa1\x63\x0b\xab\xaa\xb0\x2c\x67\ +\xc4\x9c\x4e\x83\x4f\xfd\x12\x97\x3f\xb7\x4f\xd1\xb1\x31\x11\x96\ +\xad\x7f\xda\x5d\x1c\xb2\x79\xf2\xe5\x2b\xca\xd9\xc4\xc4\x26\x6e\ +\x2b\xd8\x53\xa9\xeb\x8d\x50\xe2\x90\x87\x42\x88\xe1\xdc\x24\x3d\ +\x65\xe9\xd2\xae\x18\x73\x89\xc6\x13\x9a\xbc\x0e\x74\xaa\xf1\x78\ +\x2c\xf6\xe3\xe6\xe1\x9b\x31\xec\xde\x8c\xb7\x5e\xf9\xa2\xda\xfc\ +\x0d\x8d\x85\x79\x2d\x24\xe5\xa2\x74\x92\xac\x0b\x02\x3a\x26\x48\ +\x9e\xa9\xf5\xb1\x81\x06\x1a\xf8\xab\x04\xcd\x59\xd9\x40\x03\x2f\ +\x0e\x9a\x27\xd4\x1a\x68\xa0\x81\x06\xfe\xb2\xe0\xd9\x11\x4c\x3d\ +\xfb\xc8\x59\xc7\x27\x8f\x70\x44\xff\xd1\x07\x3f\x4c\x9d\x6a\xac\ +\x16\x9f\x94\xab\x49\xcf\x95\xdc\x2b\x9e\xe7\xc3\x27\xf1\x3d\x8f\ +\xbf\xe6\x79\x16\xae\x78\x53\x13\xf3\x68\x46\xc7\x66\x48\x7b\x51\ +\xc5\xe2\xfc\x71\x54\x0f\xdf\x8b\xc5\xdd\xef\xc5\xe4\xfe\xbb\x0a\ +\x1f\x6b\x5e\xc7\x4b\x08\xd5\x59\x79\x92\xa7\x74\x4a\xe4\xa9\x25\ +\x93\x7f\x09\xe9\x96\x8c\x90\xb7\x99\x5c\x2a\x20\xcc\x77\x1e\xe7\ +\xa6\xc3\x55\xce\x35\x98\x87\x49\xa8\x79\xf2\x35\x91\xf0\xda\x31\ +\x01\x4d\x21\x85\x4f\x32\x99\x80\x7a\xd2\x89\xee\x65\x02\x69\x39\ +\x5e\x72\x77\x98\x45\x09\xdf\x55\x5c\x7c\xe6\xdb\x3d\x16\x18\x5a\ +\xab\xa8\x46\xf3\x78\x72\x7c\x1e\x97\xa7\x0f\x63\xfe\x78\x1d\xbd\ +\x6a\x37\xfe\xc6\xcf\x76\xe3\x37\xbe\xdc\x89\x57\xf6\x76\xe3\xde\ +\xc7\x55\x7c\xf8\xf1\x32\x2e\xce\x97\x7e\x95\x0d\x77\x1a\x77\xa5\ +\xf7\xa2\x4d\x39\x73\xd2\xee\x15\x0c\x66\xe1\xca\x0d\xf9\x9b\xcd\ +\x15\x26\xf4\xb5\x56\x56\xd8\x16\xda\x82\x5c\x6c\xb0\x6e\x92\x09\ +\x37\x77\xd1\xce\x65\x73\x5e\x0b\x74\x39\xe2\xd5\x39\x8b\x38\x39\ +\x5d\xc5\xf1\xf1\x22\x4e\xc7\x6b\x2f\x76\xb4\x76\x97\x7e\x2d\xd1\ +\x60\xaf\x13\xd2\x4a\xe5\x19\x6a\x22\xbd\x17\x6f\xbd\x79\x10\xef\ +\x7c\xe9\x7a\xbc\xf9\xf6\x20\xf6\xf7\x5a\xfe\xa8\xfe\xe3\x87\xe3\ +\x18\x9d\xad\x62\x31\xe7\xdb\x74\xc3\x58\xaa\xda\x78\x05\x4e\x3d\ +\xb1\xf6\x5d\xc0\x5e\xb0\x49\x9c\xbb\x9d\xdb\xeb\x8e\xe4\x2f\xe3\ +\x95\x57\x77\x55\x0e\x16\x68\xb2\xee\x66\x53\x16\x40\x72\x43\xc4\ +\x4f\x64\x59\x6f\x8a\xaf\x74\xd8\x00\x79\x78\xd2\x11\x3d\x89\x66\ +\x33\x94\xef\x97\x2c\xfc\xc4\xd5\x38\xbe\xf2\x73\xaf\x45\xcc\x0f\ +\xe3\x95\x37\x77\xe2\x0f\xfe\xe5\x07\x31\xe7\x5b\x21\xb1\x08\xbf\ +\x96\x51\x4d\xc9\x0b\x12\xb2\x03\x7f\x64\x11\xe6\xe3\xf9\x7d\x16\ +\x7f\xd4\xc8\x5c\xe7\xfe\x09\x27\xaf\x01\xed\x49\x21\xe9\x58\xcd\ +\x2b\x7f\x63\x83\x57\x74\xd6\xf6\x66\xf1\x8d\x45\x0a\xb7\x07\x29\ +\x84\xac\x55\xcc\x63\x74\xb1\x8c\x7b\x77\x2e\xe3\xde\xed\x49\x9c\ +\x9d\x4e\x5d\x16\x16\x38\x5c\x20\x97\x8b\x0a\xa5\xe6\x4c\x31\x64\ +\x11\xd1\x8f\x7a\x58\xda\x06\x2c\x7a\xf9\xc9\x34\xdb\xd0\x59\x0a\ +\x24\x47\x32\x56\xca\x77\x4f\x62\x46\xe7\xad\xf8\xe0\xf6\x22\x76\ +\xcf\xbf\x1a\xff\xfb\xff\xd9\xad\xf8\xdf\xfe\xfa\x51\xf4\x1f\xcc\ +\xe3\xee\x9f\xf1\x5a\x9f\x33\xa7\x97\x00\xa5\x5b\x4a\x06\x72\x84\ +\x4b\x98\x24\xa4\x2e\xf2\xbd\x28\x24\x4a\x3e\x59\x26\x67\x1d\xb3\ +\x3d\x58\x57\x16\xf7\xc4\x97\xed\x29\xdb\x1e\x91\x84\xc1\x93\xc6\ +\x66\x37\x75\x45\x12\x16\x65\x48\x4c\x32\xe4\x11\x5f\xf2\x95\xbc\ +\xe4\x97\x53\x5b\x36\xaf\xdb\xf4\x22\x79\xec\xcb\xb9\x8d\xa3\x33\ +\xfa\xcb\x0e\xa2\xfb\xe9\x39\x39\x5e\x17\xc6\x9d\xe7\x8b\x8a\x27\ +\xda\x2a\xcb\x61\x03\x9b\x73\xb5\xd3\xe5\x35\x5f\x79\x17\xba\x17\ +\x41\x87\xc3\xd8\x3d\x38\x8c\xfd\xfd\x23\xbf\x36\xea\xe8\x70\x57\ +\x79\x5c\xc4\x93\x0f\xdf\x8b\x27\xdf\xfb\x6e\x5c\xde\xbb\x17\xa3\ +\x47\x8f\xfc\xba\xaf\x5d\x9d\x93\xed\x01\xb7\xbc\xe7\x39\xcf\xc2\ +\x26\xd7\x14\x37\x18\x3b\xec\x50\x83\xda\x05\xcd\x20\xd1\xf4\x13\ +\x7d\x86\xeb\x27\x84\x9f\x44\x40\x9d\x76\x5b\x21\xe0\x27\x56\xaa\ +\x81\x06\x3e\x47\xf0\x99\xcf\x17\x18\xb7\x99\x3f\x09\xff\x34\xd8\ +\x96\x51\x7c\xf7\x0b\x02\x77\x00\x72\xa5\xff\xf1\x79\x5d\xfb\x9b\ +\x74\xb8\xba\x8f\x22\x3a\x69\x5c\xc2\x2b\x75\xd0\x93\xe9\xfb\x31\ +\xaf\x1e\xeb\xf2\x7d\x2a\xda\xb9\xdc\xa9\x2e\xd1\x3c\x89\x76\x21\ +\xfc\x52\x3c\x97\xea\x77\x26\x51\x2d\xa6\xf2\xd9\x4c\xe3\xb5\x90\ +\xba\x06\xd3\x5f\xd8\x71\x39\xd7\x75\x59\x3f\xf7\xcb\xbe\xa6\x83\ +\xeb\x1a\x6e\x6a\xa1\x83\x11\x57\xc2\x2c\xe0\x7b\x2c\xe2\x05\xf8\ +\xfc\x01\xdc\xa0\x42\xf1\x08\x71\xbd\xcd\x7e\x40\xa1\xf6\x22\x3a\ +\x4e\xc3\x86\x0e\x63\x82\x71\x5c\xcc\x46\x71\x79\xae\xb1\xd3\xab\ +\x47\xf1\xb7\x7e\xfb\x46\x7c\xe3\x1b\xd7\xe3\xf0\xb0\x1f\xe3\x89\ +\xc6\x59\x4f\x7a\x71\x76\x57\x63\x9b\xd1\x65\x2c\xa7\xd3\x98\x4f\ +\x66\xd1\xdf\xe5\x75\xc0\xbc\x06\x92\x4d\x3a\xca\x40\xbf\xae\xeb\ +\x3a\xdd\x8c\x82\xd9\x17\x66\xde\xb6\x9a\xe2\xb2\x2c\x6c\x36\x30\ +\xf6\x54\x3f\x42\xf7\xb3\x68\xe7\xd8\xa6\x6a\xc5\x6c\xb2\x8c\xf1\ +\x65\x15\xa3\xcb\x65\x9c\x6b\xec\x33\x55\xff\x5a\xb1\x81\x45\xf7\ +\xd3\xe3\x7b\x63\xc8\x91\x5b\x69\x5c\xa0\x7e\x64\x5a\x69\xdc\x27\ +\x9f\x4d\xb8\x9b\x37\x06\x92\xb5\x88\xcb\x13\xe4\x68\xbc\xa3\x44\ +\x6c\x7b\xa8\x74\xce\x9b\xa7\xc5\x01\xfa\x47\xb4\xc2\x0e\x96\x25\ +\x87\xed\x3c\x9e\x12\xce\x08\x05\x84\xba\x65\xcc\xd1\xe9\xa9\xdf\ +\x53\xc6\xf4\x7b\xbc\x4e\x13\x9d\x9d\x16\x59\xc5\xee\x32\xab\xca\ +\xac\xf1\x95\xca\xe1\x57\x4d\xd2\x7f\xcb\x2f\x25\x97\x5d\xa4\xb8\ +\xc6\xad\xbd\x41\x37\xf6\x8e\xfa\xa2\x6a\xfc\xb7\x9e\xc7\xf4\x3c\ +\xc7\x01\x0c\x5f\xdc\xd4\xea\xfc\x71\xfa\x33\x44\x66\xdc\xe4\x71\ +\x38\x9b\x93\xfd\x4e\x0c\xca\x13\xff\xe6\x74\xfb\x03\xe4\xbb\x1c\ +\x6a\x87\x73\x10\xc6\x7e\x18\x4d\x63\x6f\x05\xf9\x4e\xed\x70\x6f\ +\x27\x06\xbb\x83\xd8\x1d\x0e\x3c\x5e\x62\x33\x72\x3a\x1f\xc5\xe3\ +\xdb\xab\xf8\xe0\xfd\x8b\xb8\x7b\x5b\xe3\xcd\xe9\xc8\xb2\xf3\x89\ +\xb4\xb4\xa1\x8b\xa1\xb0\xeb\x4e\x15\xeb\x57\x38\x32\x6e\x2a\xf6\ +\x4a\x9d\xd3\xa7\x09\x33\xce\xe0\x4d\x0a\xb3\x8b\x55\x3c\xbc\x3b\ +\x8a\xf3\xe3\x51\x2c\x26\xbd\x98\x5c\x4c\x55\xf6\xfd\xf8\x87\xff\ +\xc5\x37\xe2\xb7\xfe\xe7\xdf\xb0\x9c\x27\xf7\x34\x56\x9e\x9d\xea\ +\xbc\x60\xf3\x19\x5b\x48\x00\xf6\x93\xf3\x86\x31\xbe\xc6\xfa\x1e\ +\x43\xc9\x29\xd6\x38\x71\x94\x97\x5a\xe0\xe6\x25\xc7\xc9\xa1\x02\ +\xe9\x71\x9c\x2f\xd0\x33\x2d\x74\x28\x96\x60\x9a\xe9\xe0\xa4\x71\ +\xcc\x16\x8d\xbc\x93\xa2\x1f\xe3\xe5\x3c\x27\x89\x67\x9c\xef\x31\ +\x55\xad\x1f\x75\x5d\xd2\xa9\xb2\xb2\x4e\xec\xf0\x18\x5f\x72\x13\ +\x20\xaf\xae\xd4\x88\xbf\xbf\xf6\xf8\x7c\xe7\x50\xf5\xd9\x9f\xc6\ +\x65\xf5\x20\x4e\x47\x1f\xc7\xf1\xe5\x83\x38\xbf\xd0\x5c\x6d\x36\ +\x51\x9a\xae\xea\x2b\xdf\x30\x61\x60\x43\x16\xf0\xa0\x39\x5b\xc7\ +\xb3\xf0\x7c\x6a\x03\x0d\x34\xf0\x97\x09\xcd\x59\xd8\x40\x03\x2f\ +\x0e\x9a\x0d\xb5\x06\x1a\x68\xa0\x81\xbf\x4c\x78\xfe\x0c\x23\x5d\ +\xce\x96\x12\x9e\xe1\xfb\x51\x06\x3f\xb5\xb8\x04\xa6\x56\x09\xdb\ +\x32\x6a\x9e\xed\xb8\x3a\x7e\x1b\x07\xb6\x71\x60\x3b\xbc\xad\xf2\ +\x27\xc3\xd3\x12\xd8\xa4\x60\x93\x88\x89\xdc\x7a\x3e\x8d\xe5\xe9\ +\xa3\x58\xdc\xff\x5e\xcc\xef\xff\x59\xcc\x1e\xdf\x89\xd6\xec\x32\ +\xba\xe2\xe1\x15\x7a\xf5\xeb\x19\x3b\x9a\x0c\x32\x71\x66\xda\xc8\ +\x6b\xdd\x98\xaf\xf1\x6a\x47\x36\xc0\x90\x9e\xc7\x94\x6d\xa5\xac\ +\x98\x42\x2c\xcc\x28\xe0\x09\xbb\x64\xd4\x93\x53\xa2\x9d\xa2\xb0\ +\xa7\x10\x4d\xe8\x99\x64\x76\xb9\x6f\x39\x34\x89\x67\x93\x04\x27\ +\x9a\x17\x29\xba\xfe\xf0\x7c\xfd\x54\x0c\x13\x43\x16\x80\x98\xf6\ +\xfa\x95\x7b\xe8\x25\x1c\xe9\x2c\x87\x30\x71\x9d\x73\xf7\x2f\x8b\ +\x1a\x92\x71\x38\xec\xc9\x1f\xc4\xf1\x7c\x1d\x17\xd3\x45\x4c\x4e\ +\x5b\xf1\xca\x72\x3f\x7e\xeb\x1b\xbd\xf8\xd5\x2f\x89\x7e\x31\x8a\ +\x27\xe7\xad\xb8\xfd\xa0\x15\xa3\xa8\xa2\xb7\xb3\x88\xde\x22\x82\ +\x25\x8d\x25\x8f\x03\xb9\x5c\xa9\xbf\xf5\x2e\xb8\x27\xf6\x35\xcd\ +\x07\x5b\xb8\x84\x33\x4d\x0d\x98\x01\x5b\x30\x91\x66\xa1\x24\xd7\ +\x3a\xd8\xb4\x28\x9b\x6b\xe3\x2a\x4e\x78\x9a\xea\xc9\x3c\x1e\x3d\ +\x9e\xc7\xd9\x65\x6e\x50\xb5\xbb\xb2\xf5\x70\x11\x83\x8e\xec\x29\ +\xf9\x83\x9d\x5e\xdc\x7a\xe5\x46\x7c\xf9\x2b\x37\xe2\xad\x2f\x1d\ +\xc5\x2b\xb7\x34\xa9\x6e\x29\xbd\xd2\xde\xbb\x7b\x2e\x9b\x20\xb3\ +\x15\xf3\x19\x77\x67\x73\x57\x3b\x79\xe7\x84\x1e\x9f\x57\xef\xf4\ +\x7c\x07\xf2\x32\x5e\x7b\x75\x4f\x34\x74\xc6\x9e\xab\x98\x48\x87\ +\x8a\x4d\x35\x36\x4c\x4a\xd1\x58\xf0\x29\xeb\x17\x29\xab\x2e\x93\ +\xfc\xd6\x42\xf2\x58\x28\x60\x21\x61\xde\x89\xb3\x8b\xe3\x78\xf3\ +\xed\x97\xe3\xfa\xad\x83\xa8\xaa\xbe\xea\xe0\x32\x3e\xfe\xc1\x43\ +\xc9\x66\x45\x4c\x79\x52\x77\x2a\x38\x22\xb0\x82\x4d\x60\xd7\x8a\ +\xee\x80\xc5\x20\x0b\xa6\x79\x6e\x62\xf8\x16\x08\x55\xc0\xdd\xd0\ +\x33\x9e\xa0\xab\xd6\xd1\xe9\x29\x85\xa2\x91\xc5\x53\x53\x6e\x3f\ +\x1d\x6c\xcb\xab\x94\xaa\x78\xf2\xa0\x8a\x8f\xde\x1f\xc5\xf1\xc3\ +\x99\x6d\x0b\x33\x6d\x98\x8c\xf3\xe7\xa2\xa4\x83\x66\x27\x81\xf2\ +\x59\x00\xe1\xee\x73\x5e\xcb\x54\x79\xb3\x08\xdd\x73\xc1\x88\x36\ +\x8a\x4e\x2c\x5c\x76\xd6\xed\xd8\x11\xef\xe3\x8b\x8b\xf8\xd3\xef\ +\x1d\xc6\x17\x77\xbe\x16\xff\xe7\xff\xe0\x46\xfc\x47\x5f\xdd\x89\ +\xd6\xe3\x75\x3c\xbe\xc7\x1d\xea\x23\xc9\x52\x12\x36\x9c\xc8\x8b\ +\xc5\x1a\xa5\x61\xb1\x8e\xc5\x17\x84\x3a\x6f\x62\x6b\xbc\x38\xc2\ +\x2c\x8f\x52\xf6\x5c\x18\xc2\x2e\x4a\xcf\x02\x55\xa9\x10\xf3\xca\ +\xe7\x9c\x4c\x1a\x0b\x38\x04\xa4\xa5\x7c\xd7\x0b\xe1\x3a\x6f\x7c\ +\xe4\x90\x23\x69\x1d\x07\x7f\xf2\x60\x71\x30\x9b\x5f\x20\x8e\xb2\ +\x95\x45\x8a\x02\x2c\xc6\x92\x56\xf2\x6a\xbd\xe0\xf4\xc2\x11\x74\ +\x78\x38\x6f\x5d\x27\xb9\x61\x0e\x95\xeb\x0a\x4f\x66\xee\x1d\x1c\ +\xc6\xc1\xd1\xb5\xd8\x39\xb8\x16\x2f\xbd\xfc\x52\x5c\x7f\x69\x3f\ +\x56\xe3\xd3\x78\xf0\x27\x7f\x1c\xe7\x1f\x7c\x37\xaa\xc7\xf7\xe2\ +\xe2\xc9\x89\xb8\x59\x58\xdc\x8f\x8e\xea\x9f\x73\x90\x05\x3f\xca\ +\x8a\x42\x6a\x29\xe4\x22\x24\x35\x2d\x9e\xa1\x46\xf1\x6b\x07\xa0\ +\xd7\x76\xdc\x67\x86\x3f\x8f\xf9\x47\x12\x56\xe0\xc7\x49\xd3\x40\ +\x03\x0d\x7c\x06\xa8\xcf\xf4\xed\x93\xac\x0e\xfb\xea\x24\xa8\xe3\ +\x8a\xbf\x7d\x71\xd8\xc0\x0f\x11\xb6\x44\x08\x29\x0b\xd7\x06\x7b\ +\x85\x86\x47\x7f\x53\x68\x5c\x39\xab\xe5\x2c\x26\x93\x91\xfa\xa2\ +\x27\x71\x71\xfe\x41\xac\x5a\x0f\x74\xfd\xbf\x50\xdf\xa0\xfe\x81\ +\xa7\x97\x57\x23\x6f\xa0\x2d\xaa\xb1\x7d\xdf\xac\xe0\x4d\x34\xfa\ +\x0d\xf5\x23\x5c\x67\x19\x4d\x71\x7d\xa5\xff\x60\xe3\x8c\xeb\x2f\ +\xa3\x1d\xae\xbb\x5c\xdb\x95\x37\x14\xae\xc7\xf4\xe5\xf0\x73\xc5\ +\xe7\x9a\x49\x5c\xa6\x33\x25\x69\xf0\x4a\x47\x63\x96\x9f\x74\x7c\ +\x6f\x82\x20\x83\x34\xea\x43\x7c\x05\x5f\x08\x57\x7f\xd8\xad\x54\ +\x22\x8d\x2b\x26\xd3\x8b\xb8\x18\x77\xe3\xed\x2f\x76\xe2\x57\x7e\ +\xed\x20\xbe\xfc\xc5\xbd\x78\xe3\xe5\xa1\xe8\xb3\x78\xf4\x20\xe2\ +\xf2\xfc\x24\x66\x33\xca\x44\x3a\x8d\x39\xfa\xed\x18\xa8\x8f\x67\ +\x6c\xe2\xfc\x25\x1b\x1b\x19\x27\x2b\xfd\x30\x99\x7b\x27\xcc\xa8\ +\xfe\xc3\x4f\x3a\xbb\x9f\x51\x84\xfa\x5e\x3f\x25\xaf\x21\x0d\x9b\ +\x6b\x73\x8d\x53\xe6\x93\x96\xc6\x4d\xab\xb8\x38\x93\xbb\x58\xc4\ +\x78\x32\xd3\x38\x8f\xf1\xeb\x52\x52\xf2\x1b\xb5\x7c\xc7\x57\x85\ +\x51\x1d\x50\xae\x6e\xec\x1e\x74\xd5\xef\xf4\x63\xff\x80\xa7\xb3\ +\x94\xe6\x52\x63\x45\x8d\x0b\xfd\x2d\x3b\xe9\xa6\xec\xe4\xc8\xb0\ +\xd4\x1e\xca\xc8\x81\x53\xaf\x0e\x2a\xde\x1b\x33\xf2\xfd\x96\x02\ +\xc5\xf5\x78\xed\xb4\xdb\x04\x0c\x92\xa1\x78\x6f\x4e\x62\x73\xf4\ +\x2e\x61\x36\xd4\x78\x5a\xce\x4f\xa7\xb1\x91\x59\xe2\x4a\x32\xb5\ +\x8d\x56\x0c\xb1\xd5\x81\xc6\x4b\x6d\xb9\xde\x3a\x46\xc7\xb2\x81\ +\x74\xe4\x29\x3f\xfa\x3e\xdf\x64\xc6\x9f\x31\x8b\xf2\xf4\x0d\x45\ +\x52\xc3\xe3\x75\x36\xe4\xf8\x8e\xda\xb0\x6b\x1c\x46\x7e\x4e\x00\ +\x90\x46\x30\x9b\x95\x32\x51\xbb\x6a\x46\xdd\x76\x37\x7a\x7b\xbd\ +\xd8\xdd\x1f\x46\x9f\xef\x9c\xca\x8e\xeb\xd6\x24\xce\x4f\xe7\xf1\ +\xf1\xbb\xd3\xf8\xf8\x03\x8d\xa7\x1e\xb3\xc9\x3b\xb7\x24\x6f\x9a\ +\xb1\x61\x44\xdb\x73\x1d\xaa\x7c\xc2\x29\x9f\x37\x8f\xec\xc8\x8f\ +\x52\x29\x05\x9e\xcb\x49\x3c\xe5\x6e\xc7\xa5\xc6\xb9\x8f\x6e\x8f\ +\xe3\xf2\x54\x72\xa7\xfd\x98\x9e\x8e\xe3\xf5\x2f\xbf\x1a\xff\xcb\ +\xff\xcd\xd7\xe3\x97\x7e\xe3\x4b\x71\x7a\xa2\x71\xed\xb9\xce\x85\ +\x98\x52\xea\x62\x73\xc6\xfa\xb2\x1c\xf9\x92\x3f\xf2\x68\x40\x0a\ +\x3b\xde\x86\x84\x86\x69\xd2\x37\x0d\x16\x3c\xb9\x8c\x27\x42\x32\ +\x08\x43\x2a\xe9\xae\xd2\x4b\x1e\x21\x25\x70\x1b\x28\x75\xcb\x8f\ +\xfc\xc1\xaf\xa0\xf0\x90\x09\x21\xd2\x62\x8b\x72\x9e\xb2\x49\xb6\ +\xd4\xb9\xcc\xb9\xc4\xab\xbd\x9d\x2f\xe5\xa0\xe9\x80\xeb\x97\x37\ +\x85\x49\x32\xf9\x90\xa7\x7e\xf0\x0f\x87\xed\x38\x38\x50\x7b\xbd\ +\x26\xd9\xed\x91\xe6\x05\xf7\xe2\xc1\xf1\x47\x71\x72\x7e\x1c\xa7\ +\x97\x8f\xfc\x2d\xb9\xe1\x6e\x3f\x7a\x9d\xfc\x56\xa1\xdb\x04\xd7\ +\x85\x52\xdd\x89\x64\x60\xfb\xd8\x40\x03\x0d\xfc\xff\x07\x9a\x33\ +\xb0\x81\x06\x5e\x1c\x34\x1b\x6a\x0d\x34\xd0\x40\x03\x7f\xd9\xf0\ +\xec\x48\xe6\x05\x8e\x6c\x10\xc5\x94\x2a\x45\x32\x1d\x4a\x7c\x3b\ +\x8b\x6d\x9e\xe7\xd1\x81\x67\xe9\xdb\x50\xa7\xbd\xca\x27\xe1\x59\ +\xbe\x2b\xc8\x18\x26\x80\x5e\x1a\x67\xc2\xb6\xa8\xa2\x3a\xb9\x1b\ +\xab\x7b\xdf\x8b\xd5\x83\xef\xc6\xfc\xec\x7e\xb4\x97\x95\xef\x38\ +\xe5\x15\x36\x6c\x58\x75\x48\xa4\x09\x62\x5b\x13\x3b\x26\x84\xe4\ +\xe8\x0d\x36\x7c\x85\x98\xdc\x22\xd5\x9b\x14\xc4\xca\x67\xe2\x09\ +\x1f\xb4\xfc\xae\x81\x26\x8c\xc4\x3b\xcc\xa4\x32\x27\xf0\x4c\x4c\ +\x73\x52\x2c\x1c\x95\xf8\x41\x6e\x23\x5d\x79\xf8\x89\x23\xb9\x2e\ +\x0b\x14\x7c\x3b\x8b\xd7\xec\x70\xb7\x6d\x47\x3c\x2c\x12\xb0\xb9\ +\xc6\x42\x3d\x4f\x3c\xa5\xcf\xa2\x06\x4f\xc5\xd4\x9b\x85\x9e\xa9\ +\x16\xb7\x66\x41\x45\x32\x78\x75\xcd\xae\x26\x9d\xe2\x8a\xb3\xd9\ +\x2c\xce\x46\xd3\x98\x3d\x5e\xc6\xad\xbd\xdd\xf8\xf5\x9f\x5d\xc6\ +\xdb\x9a\xb4\xce\xc7\xe3\xf8\xfe\x7b\x2b\x4d\xf0\x17\xb1\xec\xac\ +\x62\x30\x6c\x45\x8f\x5b\x5b\x79\xea\x09\xfd\x65\x0a\x97\x8f\x72\ +\xb9\xb4\xb2\x8f\x37\x94\x54\x3e\xfc\x52\x56\xa5\x70\xb9\x8b\x49\ +\x40\xaf\xd2\x48\x46\x4e\xb8\x15\xc6\xbe\x0b\x6c\xd6\x8a\xfc\xd6\ +\xda\x2a\xc6\x93\x65\x9c\x1e\x2f\xe3\xe1\xc3\x65\xdc\xbe\x3b\x8f\ +\xb3\xd3\x75\xcc\xaa\x45\xf4\x79\xa8\xa7\x3b\xcb\xbb\x57\xd7\x83\ +\x18\xcd\xd7\x71\x6d\xf7\x20\xde\x7a\xe7\x5a\x7c\xe9\x67\xf6\xe3\ +\xf5\x2f\xee\x44\x6b\x30\x8a\x47\xf7\xaa\xb8\x7d\xe7\x58\xba\xca\ +\xae\x2a\x33\x93\x72\xee\xc8\x46\x2f\x2f\x6e\x2d\xd7\xde\xb0\xec\ +\xef\x74\xe2\xf5\x57\x87\xa8\xa7\x42\x71\xc7\xf4\x22\xc6\xa7\x95\ +\x17\xaa\x58\xa8\x93\x3a\xd6\x39\x37\xd4\x28\x00\xe1\xa4\xb9\xae\ +\x31\x86\x17\x87\xf2\x6e\xe4\x58\xca\x7e\x93\x59\x2c\x5b\x8b\x78\ +\xe7\x6b\x6f\xc4\x42\x65\x7a\xf5\xcd\xeb\xf1\xfd\x3f\xbb\x13\xe3\ +\xf3\x19\x86\xcb\x57\x3e\xa9\x7d\xb9\x1d\xea\xe7\x85\x89\xb5\x5a\ +\x13\x71\x03\xb5\xbf\xb2\x30\xc4\xa2\x8f\x37\xb8\xa0\xfb\xd5\x8e\ +\x10\x97\x31\x1f\x75\xfc\xcd\x8d\x76\x8f\xfc\x45\x15\x33\xaf\x6f\ +\xec\x76\xa9\x07\xbe\xb3\x52\xc5\xdd\x8f\x2e\xe3\xde\xc7\x93\x38\ +\x3b\x1f\x79\xf3\xc9\x77\xf0\xa2\x33\x3f\xda\x5e\x16\x82\x7f\xd6\ +\x97\x1d\xf9\xc9\x57\xb9\x16\x92\xc3\xdd\xee\xbc\x1e\xd2\x0b\x3f\ +\xd0\x31\x50\xfe\x7d\x27\x74\x7f\xdd\x8d\xfe\x32\xe2\xe1\x83\x45\ +\x7c\xf8\xf1\x7e\xfc\xfc\xc1\x97\xe2\xbf\xf9\x87\xbb\xf1\xb7\x5f\ +\x1b\xc4\xc5\x87\xab\x78\xfc\xf0\x22\x16\xf3\xb1\x9f\x1a\xcc\x6f\ +\xae\xb1\x80\x82\x7c\x6c\x8b\xad\xa8\x7f\xf9\x84\x71\x9c\x2b\xf6\ +\x69\x0b\xe8\x97\xb8\xd7\x67\xda\x2c\xc0\xa0\x43\xd1\x5b\xb4\xb4\ +\x9b\xe2\x00\xfb\x99\x8e\x72\xd0\xfc\x09\x9b\xac\x40\xd2\x93\x52\ +\x27\x31\x0b\x40\x7c\xf1\x8d\xdb\xa3\x1e\x38\x67\x92\xee\x4d\x6d\ +\x2a\x85\xba\x81\xa4\x30\x75\xc8\x39\x59\x3f\x61\x5a\xe3\x9d\x1e\ +\xef\xa3\xb4\x44\x38\xcb\x02\x5f\x3b\xfa\xdc\x2d\xcf\x86\xb8\xa3\ +\xb8\x16\xc8\x86\x0a\xf3\xe4\xda\x70\x77\x37\x0e\xaf\x1d\xc5\x8d\ +\x9b\x7b\x3a\xdf\xda\x71\xf1\xe0\x5e\x3c\xfc\xee\x77\x62\x74\xf7\ +\x76\x9c\xdd\xfe\x38\xa6\xa7\xa3\x18\x1c\xed\x45\x6f\x67\x57\x79\ +\xeb\x3c\xa4\x4e\x29\x10\xf5\x2a\x81\x16\x49\xc1\xea\x6c\x9f\x81\ +\x67\xcb\xfc\x69\x7e\x8d\x7f\x22\x7c\x4a\x3e\xcf\x15\x50\x87\xeb\ +\xb8\xda\xd5\x4a\x01\xdb\x61\xf0\x06\x1a\x68\xe0\x27\x80\x67\x4f\ +\x30\xe0\x93\x4e\xac\x2d\xfa\xf3\xce\x43\x9f\xef\x0a\x3c\xe5\x17\ +\xb7\xc9\xe2\x8a\xc0\xb1\x3e\xf0\xab\xaa\x79\x4c\xe6\x8f\xe2\xe2\ +\xfc\xa3\x38\x3d\xfb\x41\x4c\xab\x1f\x44\xb5\xf8\x48\xd7\xc4\x4a\ +\x5d\xc0\xa5\xae\xf1\x6c\xa4\xf1\xea\x47\x36\xd1\x78\x12\x6d\x16\ +\x0b\xbf\x19\x80\x7e\x87\x85\x76\x36\x86\xe8\x04\xc8\x2c\xdd\xa6\ +\xff\xd2\x2f\xfb\x2f\xf5\x2f\x5c\x53\xcb\x75\xd5\x69\xcd\x47\xd8\ +\x54\xfb\x39\xe6\x48\x59\xee\x5b\xa4\x67\xf2\xa5\xb3\x2c\xf5\x51\ +\xfe\x5e\x94\xd3\x2a\x9e\x3e\xcb\xf1\xba\x6a\x6b\x8c\x08\xbd\x43\ +\x00\x9d\xd4\xaf\x4d\xe6\x93\x38\x39\xbb\x8c\xb9\xfa\xb9\x2f\xbe\ +\x73\x18\xbf\xf6\x37\x0e\xe2\xf5\xb7\x7a\xd1\xdf\xe3\x5b\xa5\xa1\ +\x32\x2f\x62\x7e\x31\x8d\x6a\xaa\xf2\xcd\x57\xbe\xa1\x66\xb8\x37\ +\xcc\xbc\x17\x59\xa4\xbc\x82\xcb\x76\x1a\xaf\xf8\x89\x78\x89\x66\ +\x1c\xc7\x98\x88\x1f\xd9\xa9\xc7\xb1\xcf\x21\xcb\x80\x3e\xb9\x79\ +\xc3\xd8\x63\x36\x5e\xc4\x74\x56\xc5\xf8\x92\x9b\x82\xda\x31\x1a\ +\xaf\x63\x3a\x51\xde\x15\xaf\xcd\xc4\x06\x6c\x0a\x4a\x5a\xc7\x19\ +\x4a\x0f\x9e\x98\xee\xc5\xcd\x5b\x3b\xb1\x7f\xd4\x8d\xf9\x62\x16\ +\xb3\x8b\x4e\xcc\xe6\xbc\x6a\x53\xba\xa8\xae\x31\xa5\x4a\x9e\x36\ +\xb0\x8a\xa9\x0b\x6f\x75\x48\x5b\xa2\x4e\xda\x98\xa6\x31\x18\xf6\ +\x3d\x16\x81\xdf\x1b\x5e\xd2\x8d\xcd\x31\xec\x5a\xf7\xff\x22\x79\ +\x0c\x56\xd1\xff\xd7\x9b\x85\xc2\x91\x9b\x40\x1b\x6a\x45\xb7\xa7\ +\x71\xe7\x2e\xaf\x10\xcc\x9b\xc9\x96\xab\x79\x8c\xcf\x78\x5a\x5e\ +\x99\xb2\x57\x22\xf9\x70\x32\x3e\xa2\x8f\xb5\x15\xdd\x45\xd3\x5f\ +\x6b\xac\xdb\x55\xff\x3a\xa0\x6f\xce\x31\x92\xf5\x86\xdf\x59\x24\ +\x6d\x31\xc7\xc6\x1a\x43\x3b\x4d\x28\xbf\x5e\xec\xec\xf7\x63\xc0\ +\xb7\xd7\xba\xe4\x35\x8b\x27\xf7\xab\x78\xff\xfb\x97\xf1\xe0\xee\ +\x45\x5c\xce\xa6\x14\x58\x4e\xed\x8d\x8d\x2c\xf4\x57\x78\xe3\x28\ +\x1f\x05\xa4\x5e\x4a\x79\xb1\xa1\xfb\x7b\xe7\xab\xb0\xe2\xa8\xdf\ +\xf9\x64\x15\xa7\x8f\x26\x71\xfc\xf0\x32\xc6\x17\x1a\x67\x55\xdd\ +\x58\x8c\x46\xf1\xce\x2f\xbe\x1a\x7f\xef\x3f\xff\xd9\xf8\xd9\x7f\ +\xf7\x56\x3c\xb9\xab\xf1\xa8\xc6\xe8\xf3\xa5\xc6\x71\xfc\xb0\x93\ +\xe5\x51\xf7\x8c\xa9\xd4\x4e\xe5\xd3\x5e\xa9\x8c\x1c\xa3\x52\xd7\ +\xe4\x8b\x6e\x90\x15\x2e\x75\x94\xfa\xd4\xe3\xb9\xc2\x83\x5a\xf2\ +\x75\xdc\xd0\x13\x27\x17\x78\x84\xc8\xc6\x42\x14\x12\x1f\x3c\x44\ +\x5a\xa6\x39\xcc\x57\x3b\xd3\xe0\x11\x6f\x9e\x9b\xf0\x31\x96\x96\ +\x8e\xa2\xe1\xb3\x19\xce\x13\xfd\xde\x6c\xa3\x1d\x38\x5d\xd6\xbb\ +\xdf\xd0\xa0\x1f\x1b\xa1\x8c\x5b\x3d\x23\x92\x7e\xcb\xf9\xdc\x65\ +\x1d\x0e\xd7\xb1\x73\xa0\xb6\xb6\x5b\xc5\x6c\xfd\x20\xce\x67\x1f\ +\xc5\xe3\x93\x7b\x31\x99\x9c\xc7\xd9\xd9\xa9\xe7\x46\xc3\xfe\x9e\ +\xda\x82\xda\x0d\xa9\x95\x96\xb1\x1b\xad\x65\x1b\x4a\x4b\x70\x5e\ +\x0d\x34\xd0\xc0\x5f\x2e\x34\x67\x5d\x03\x0d\xbc\x38\x68\x36\xd4\ +\x1a\x68\xa0\x81\x06\xfe\xa2\x21\xe7\x9a\x9f\x0c\xc4\x6d\xcf\x35\ +\x0a\xaf\xe7\xa8\xf8\xe9\x7d\x26\xa8\x79\xb7\xd3\xd4\xf8\xd3\xd3\ +\x99\xe7\xf3\x00\xe0\xf0\xd6\xb4\xed\xf4\xe0\xcf\xd2\xb7\x69\xcf\ +\x03\x26\x52\xf5\x26\x53\x4b\x13\xb8\xea\xe4\x61\xcc\xee\x7d\x2f\ +\x16\x0f\xbe\x1b\x8b\xf3\x47\xd1\x5e\x2f\xa2\xc3\x04\x9a\x85\x71\ +\xf1\xb0\x58\xc2\xc4\x8d\x09\xaa\xef\x48\x56\x1a\x4f\xea\x90\xe5\ +\x49\x9f\xc0\x13\x46\x7c\xa6\x82\x78\x4c\x92\x99\x38\x96\x09\x27\ +\x93\x58\x68\xe0\x76\xa4\x55\x10\x5e\x8e\xfc\x99\xc3\x42\x54\x9e\ +\xd0\x41\xa5\x80\x0e\xc2\xd9\x58\x73\x05\xb0\x90\xcf\xc7\xe7\xdb\ +\x9e\xf0\x7b\x21\x80\x85\x04\xf4\x34\xad\xeb\x27\xda\x58\xa8\xf7\ +\xeb\x04\xbd\xa8\xaf\x72\x12\x27\xbc\x27\xc7\x37\x27\xfa\xc4\x99\ +\x9f\x38\x78\xba\x71\xd0\x1f\x44\xa7\xdf\x8d\x13\x95\xf1\x6c\xb4\ +\x88\xbd\x8b\x9d\xf8\xc6\xee\x3a\x7e\xf5\x1b\x11\xaf\xef\x74\xe3\ +\xec\xd1\x3a\x1e\x9e\xf4\xe3\x64\x36\xf7\x06\xd1\xbe\xec\xc0\x13\ +\x49\xde\x58\xf3\xc4\x1d\x75\xb2\xac\x2e\xa3\xfd\xb2\x38\x02\x2e\ +\xe7\x8d\x11\x6a\xa0\xf0\xa0\xbf\x79\x97\xc4\x53\x1e\xfd\x09\x4b\ +\x6e\x1d\xef\x05\x80\x05\x8b\x2e\x0b\x7f\x93\xeb\xf2\xac\x15\x8f\ +\x1e\xcd\xe2\xe3\x0f\x26\xf1\xd1\x9d\x59\x5c\x9c\x57\x7e\x2d\xde\ +\xe0\x60\x12\xfb\xfb\xcb\x98\x6b\xe2\x3d\x9e\xb3\x00\xb7\x13\xaf\ +\xbe\x75\x18\x5f\xfb\xc6\xcb\xf1\xca\xab\xfb\x31\xdc\xe9\xc5\xc3\ +\xfb\xa7\x71\xf2\x68\xb4\x91\xbd\x58\x2c\x24\x9f\xa7\xd7\x54\x8e\ +\x55\x2b\x0e\xae\xf7\xe3\xf5\x57\xf8\x00\x9b\xa2\x15\xae\x34\xc9\ +\xbf\x7c\xb2\x8a\x8a\xef\x37\x50\x17\x94\x87\x6a\xf4\x81\x3f\x8b\ +\x13\xb4\x01\x07\xe4\xda\x0e\x7b\xd3\xc8\x7b\x3e\xcb\x68\x2d\xfb\ +\x71\x7c\x76\x1c\x2f\xbd\x7d\x33\x6e\xde\xba\xee\x65\xac\xbd\xa3\ +\x41\xfc\xe0\x0f\xee\xa8\x3d\xf1\xad\x8e\x56\xf4\xd8\x80\x61\x91\ +\x27\x4d\x90\xd5\xde\x5a\x95\x0d\xb5\x42\x77\xbb\x50\x5e\x8e\x53\ +\x1b\x10\xc2\xab\x28\xab\x91\xe8\x6c\x30\x29\x51\x9b\x8d\x56\xc5\ +\xb7\xbb\x7c\x63\x6e\x1a\x8f\xef\x56\x71\xf7\xe3\x51\x3c\x79\x38\ +\x89\xd9\x3c\xef\x68\xf6\xb7\x25\x6c\x63\xda\x6a\xe2\xe4\x6a\x93\ +\x98\x0e\xb5\xe0\x2a\x27\x77\x8d\xb3\x91\x66\x5b\xf1\xda\x2b\xc7\ +\xb3\xec\x80\x3d\x54\x7e\xc9\x1b\xac\x64\x3f\xd9\xfc\xce\xe3\x45\ +\xdc\xb9\x73\x33\xfe\xd6\x2b\x5f\x8e\xff\xd3\x3f\xd8\x89\x6f\xed\ +\x44\x3c\x7a\xb7\x15\x67\xc7\x67\xb1\x9c\x4d\xfd\x64\x1b\x72\x30\ +\x22\x52\x90\x6f\x8c\xb0\xda\x09\x6d\xde\x77\x56\x27\x42\x15\xb9\ +\xcd\x3c\xab\x97\xe3\x60\xd3\x0f\x1e\xc7\xa0\x0b\x81\x0c\x11\x99\ +\x07\x0c\x66\xa3\x25\x58\x6f\x7c\xbc\x42\xcf\xbb\xdb\xe5\x7c\x4e\ +\xe4\xb9\x96\x4f\x82\xca\xef\x70\x3e\xb1\x31\xd6\xf3\xe6\x18\xe7\ +\x16\x1b\xd5\xe0\x5d\xd1\x78\x72\xb5\xcb\xf9\x26\xc7\x13\xa3\x6c\ +\xcc\xfa\x9c\x52\x9d\x92\x16\xd9\xc8\x92\xf1\xad\x99\xef\x98\x76\ +\x05\xa7\x2e\x9c\x9b\xb9\xf9\xc6\xb9\x4d\xbb\x57\xc1\xf4\x67\x03\ +\x6f\x67\xef\x28\xf6\x8f\x5e\x8a\xa3\x9b\x37\xe3\xfa\xf5\x6b\xd1\ +\x53\x9b\xb8\xbc\xfb\x7e\xdc\xff\xd3\x3f\x89\xc9\xfd\x47\x71\x76\ +\x72\x12\xdd\xfe\x6e\x0c\xae\xed\x5b\x77\x64\xb3\xa8\x67\xe9\x25\ +\x8f\x2b\xc0\x2a\xcf\xd2\xae\x28\xdb\xb1\xdb\xbe\x6d\x59\xe0\x87\ +\x53\x17\x78\x36\xa2\x4e\xb4\x2d\xe8\x79\x78\x9d\xe9\x76\x26\xcf\ +\x42\xcd\xdb\x40\x03\x0d\x3c\x1f\xb6\x4f\xde\x4f\x85\x9a\x69\xfb\ +\x04\x2c\x5e\x7d\x1e\x3a\x4a\x87\xda\xaf\x3d\xc7\x95\x70\x0d\x84\ +\x4d\xab\x5d\x82\xaf\xdb\x76\xba\xae\x33\xd6\x52\x5c\xb5\x1c\xc5\ +\xc5\xe8\x24\x2e\x47\x1f\xc4\xe5\xf8\xbd\x98\x56\x1f\xe9\x22\x77\ +\x5f\xfd\xea\x89\xae\x93\x63\x5d\xf7\x58\x64\x1f\xab\x8f\xe1\x15\ +\x76\x33\xe1\x33\x75\x13\x3c\x8d\x96\x9b\x69\xf4\x5b\xbe\x61\x85\ +\x1e\xa3\xf4\x11\xf4\x05\x6c\x0c\x71\xe4\xda\xea\x3e\x0d\xc7\x05\ +\x54\x47\x75\x2a\x92\x55\xd3\xcd\x21\x99\x25\xbd\xf0\x7c\x9a\x3e\ +\xfb\x20\xc2\x75\x3f\x63\x7c\x13\x66\xa3\x82\xbe\x45\xf8\xb6\x8f\ +\x26\x8e\xd7\xd8\x44\x7a\x31\x96\x5c\x75\xd6\xd9\xc7\x2e\xba\x1a\ +\x03\x44\x8c\xc6\x23\x95\xb3\x1b\x2f\xbf\xb4\x13\xbf\xf0\x2b\x87\ +\xf1\x85\xb7\x5f\x8a\xae\xf4\x7d\x74\x3f\x62\x32\x9a\x8a\x67\x11\ +\x93\xb1\xca\x3d\xab\x62\x38\xe8\xab\x3f\x51\xbf\x8e\xda\xc8\x97\ +\xf3\xf5\x5c\xe3\x10\x6b\xa4\x88\x1c\x6f\x2a\x2c\x03\xd7\x4f\xd1\ +\x13\xe9\xb0\xf5\x4d\xcd\xfd\x34\x9d\xe5\x28\x9f\xa9\xf4\xb8\x5c\ +\xc4\xf9\xe9\x32\xce\x34\x76\xba\x38\xae\x62\x3a\xa9\xfc\xb4\xf9\ +\x82\x9b\x8a\x34\xde\x6d\xb5\xe6\xd1\x1b\x2c\xa3\xdf\xef\xc7\x60\ +\xb8\x1b\x47\xd7\xf7\xe3\xf0\xe6\x50\x34\x5e\xc5\x58\xf9\xb5\x92\ +\xbc\x5a\x1a\xd9\x14\xdc\x1b\x32\xe0\xd6\x05\x1f\x05\x39\x10\x96\ +\x27\x1e\x6a\x7d\xb8\xa7\xfe\x91\x7e\x08\xfd\x8a\xee\xb6\xb5\x70\ +\x4c\xcf\x06\x10\x1b\x86\x0b\x3f\xd5\x2f\x9c\x0d\x37\x86\xda\x1e\ +\x33\x62\x61\xa0\xe4\xa3\xb8\x9e\xc6\x43\x03\x64\xb6\xd4\xcf\x4a\ +\xb7\x33\x95\x65\x39\x53\x1a\xc9\x93\x84\xec\x43\xeb\x9f\xb2\xf5\ +\xcd\x45\xfa\xd1\x56\xf8\x1e\x5d\x7f\xc0\xb8\x18\xcd\xb2\xaf\x44\ +\xb4\x6f\x8c\x11\x0f\x32\x96\x73\xec\xa8\xfe\xba\x9f\x6f\x01\x18\ +\xec\xb4\x63\xe8\xd7\x44\xaa\xdf\xbd\xb8\x8c\xdb\xef\x4d\xe3\xc3\ +\x1f\x4c\xe2\xe4\x9c\xa7\x28\x65\x37\xd5\x01\xe3\xc7\x6c\x53\xa9\ +\x2b\xfe\x95\xa3\x1c\x94\x27\xeb\x13\xbc\xce\xcb\x46\x12\x8d\x9b\ +\xc6\x26\xe7\x8b\xb8\x78\xb4\xd0\xd8\xf4\x22\x96\x93\xae\xcb\xbf\ +\xd4\x58\xf7\x9b\xbf\xf9\x7a\xfc\xe6\x7f\xfa\xf5\x78\xe5\xad\x41\ +\x1c\xdf\xa5\x2e\x27\xb1\x58\x4d\x25\x07\x59\x99\xa7\xed\x2f\xe7\ +\xf9\x85\xd2\x91\x05\x36\x86\x5e\x8f\xa5\xac\x83\xd3\xe4\xf9\xa0\ +\x04\x4e\x0f\x2f\x7c\xfe\x91\xbe\xe8\x8b\x04\xb1\x73\xb4\x8e\xfc\ +\x1c\xe7\xc8\x4c\x4f\x9e\x8e\x23\x1f\xc2\xc2\xed\xd7\xf2\x1c\x8f\ +\x9c\xd4\xc3\xf9\x58\x67\xb8\x32\x3e\x35\xe0\xfc\x82\x06\x2f\x6d\ +\x40\xf6\x94\x0f\x9f\x37\x08\x91\xa3\x38\x5f\x66\xe0\x57\x70\x33\ +\x7e\xd2\x79\x37\x9f\x6a\xfc\x2f\xde\xdc\x98\x6e\xc5\xee\x7e\x3b\ +\x7a\xc3\x71\x8c\x66\x4f\x54\x4f\x77\xe2\xec\xfc\x24\xee\x3f\x7e\ +\xe0\x37\x2b\xec\xec\xa8\x4d\x77\x87\x4a\x49\x23\xb3\x04\xfd\x41\ +\x52\x1e\x50\x24\xfb\xd8\x40\x03\x0d\xfc\xe5\x40\x73\xc6\x35\xd0\ +\xc0\x8b\x83\x66\x43\xad\x81\x06\x1a\x68\xe0\x2f\x0b\x7e\xc4\x11\ +\x4c\x4e\x68\xfe\xfc\x64\x75\x3c\x3e\x53\xa1\xf4\x13\xdb\xa6\x6d\ +\xc3\x76\xf8\x79\xf8\xb3\xe9\xc0\x81\xed\xf0\x27\xf1\x24\x68\x9a\ +\xac\x08\x26\xcb\x4b\x4d\xa0\x79\xa2\x6c\x71\x71\x1c\x8b\xfb\x7f\ +\x16\xab\xbb\xdf\x8d\xf9\xf9\xbd\xe8\x6a\x52\xd6\x66\xa1\x9c\x45\ +\x70\x25\xe6\x2e\x48\xcd\xe6\x62\xc9\xa2\x83\x9f\xa8\x59\x9a\xc6\ +\xa4\x90\x69\xb7\x73\x60\xd6\x09\xc6\xa4\x8f\x89\x22\x61\x26\x8e\ +\xc4\x6d\x85\x3d\xb1\xdd\x06\x91\x3d\xa1\x2f\x40\xf2\x3a\x28\x54\ +\xf9\x48\x82\x08\x39\x99\x64\xd2\x8e\x0f\x26\x9a\xf8\x3c\xed\x67\ +\x91\xc2\x13\xcb\xe2\xbc\x18\x9f\x96\xce\x0c\x34\x6d\x94\x07\xc5\ +\x0b\x0d\xe2\xf5\x13\x33\x44\x2b\xce\xcb\x08\x5e\x5c\x20\x69\x2e\ +\xfa\xf7\x54\xf6\x83\x41\x3f\x86\xdd\x75\x5c\xf2\x66\xc4\x55\x2b\ +\x5e\x5e\x5f\x8b\x9f\x7b\x2b\xe2\xd5\x97\x35\x59\x5d\x2e\xe3\xd1\ +\xdd\x4e\x3c\x7e\x70\xa1\x32\xcd\xa3\xd5\xeb\xc4\x50\x12\xb9\xcb\ +\x79\x81\xd1\x96\x12\x8c\x7d\xac\xb7\x80\x72\xa0\x13\xb6\x60\xb2\ +\x9f\x0a\x19\x72\x51\x80\x72\x10\x0f\x21\xdb\x47\xfa\x2a\x9b\xe2\ +\x28\x36\x3a\xf0\x5a\xcd\x94\x41\x9a\x59\x4c\x35\x89\x66\x51\xe8\ +\xe2\x58\xfa\xdc\x9e\xc6\xfd\xfb\x55\xdc\xb9\x3f\xf2\x87\xcb\xd7\ +\xbb\x95\xef\x8c\x66\x43\xf1\xf2\x5c\xe5\x9c\xef\xc7\x97\xbe\x7e\ +\x14\xdf\xfc\xd9\x37\xe2\xe5\xd7\x54\xde\x0e\xaf\x5f\x5a\xc6\xf9\ +\xe5\x34\x3a\xab\x5e\x2c\x96\x1d\xc9\x65\x51\x6e\x1d\xb7\x5e\xdb\ +\x89\x57\x5e\xe6\x79\x3d\xac\x94\xaf\x88\x3c\x3f\x19\xc5\x74\xb6\ +\x88\xb6\xca\xe8\x57\xc7\x48\x59\xf4\x12\x62\x1d\x8d\xc9\xa3\x4e\ +\xfc\x04\x19\x75\xad\xff\xc2\x8b\x28\x95\x37\x5a\x96\xf3\x76\xcc\ +\x96\x93\xf8\xc2\xd7\xbe\xe0\x57\x16\xdd\x78\x69\x2f\xce\x1e\x5f\ +\xc6\x93\xdb\x17\x59\x87\x12\xc0\x87\xfd\x5d\x31\x4c\xf0\xe5\xb1\ +\x18\xc4\x6b\x1c\x93\xae\xbc\xeb\xba\xe6\xe9\x35\xd5\x63\x2e\xaa\ +\xad\xfc\x1a\x4f\x16\x16\x5a\xdd\x56\x74\xd5\x66\x2a\xd9\xe7\xf2\ +\x64\x15\xf7\x3f\xbe\x8c\x47\xf7\xc7\x71\x79\x39\x11\x2f\xdb\x78\ +\xc8\xa1\x1d\x5a\x59\x8e\xd6\x1b\xc0\xcf\xb6\x03\xa2\x3f\xb6\x97\ +\xec\x05\xdf\x61\x51\xfb\x67\x23\x2c\x17\x3d\xa4\x87\x4f\x24\x4a\ +\xab\xb0\x74\x1c\x2e\x54\xf7\xe3\x6e\x7c\x7c\xa7\x8a\xc9\xa3\x9b\ +\xf1\x0f\xbe\xf4\x72\xfc\x97\x7f\x6b\x1d\x5f\xef\x0d\xe3\xfe\x7b\ +\x21\x5d\x1e\x44\x25\x3b\xf2\x1a\x4f\x9e\xa4\xa3\xbe\x97\x64\x4a\ +\x7b\x70\x05\x4b\x9d\x54\x00\xd4\x80\x2e\x6e\x17\xc6\x33\x4c\xee\ +\x0e\x94\x78\x1d\xe5\x6c\xf5\xac\x17\xc0\x27\xae\xda\x0b\x4e\x34\ +\x6c\x66\x7d\x4d\xcb\x45\x34\xb7\x75\xb5\x73\x6f\x78\xb1\x51\xc6\ +\x26\x73\xaf\x9b\xaf\x74\xad\x37\xcd\xbc\x59\x86\xdf\x53\xfd\xc9\ +\xf5\xd3\x79\x23\x8d\x4d\xb3\xc2\xc3\x39\xc3\x26\x9a\x7d\xce\xa5\ +\xcc\x4a\x79\xa0\xa3\x74\x2b\xfa\xb8\x0c\x52\x8f\x0d\x7a\xf2\x77\ +\x5b\x96\x3d\x13\x74\x7e\x8b\xce\x86\x2a\xe7\x23\x9b\xa2\x6c\xb2\ +\x01\xb9\xa0\xb4\x8c\xbe\xf2\xda\x3b\x3c\x88\xa3\xeb\x47\x71\xe3\ +\xd6\xad\x38\x38\xec\xc7\xf4\xf1\xa3\xb8\xfc\xf8\x83\x18\x3f\x78\ +\x14\xa7\x0f\x9e\xc4\x60\xb0\x13\x83\xbd\x7d\xb5\x83\x76\xf0\xa0\ +\x83\x1b\x29\xf9\x59\x52\x01\x94\x83\x0c\x5a\x82\x35\x80\xa2\xe3\ +\xb3\xfe\xb3\xb0\x95\x24\xa1\x26\xd4\x89\x80\x67\xfd\x67\x01\x7a\ +\x2d\xfc\xd3\x78\x3e\x29\xae\x81\x06\x1a\x78\x1a\xea\x73\x65\xfb\ +\x3c\x7c\x0a\x3e\xed\x44\xbb\xf2\xd2\xdf\x0a\x6c\x87\xb9\x60\x80\ +\xd6\xfe\xe6\x02\x71\x15\xe0\x1a\xcb\xf5\x8e\x6b\x1d\xdb\x4b\xd3\ +\xb9\xfa\xe9\xd1\xc3\x38\xbd\x7c\x3f\xce\x46\x7f\x16\xd5\xfa\x23\ +\x5d\x2b\x9f\xe8\x3a\x7a\x19\xbd\xfe\x4c\xd7\x69\x16\xd0\x2b\x2f\ +\xa4\x2f\x97\x53\x8d\x59\xca\x6b\x1d\x45\xe7\xda\xa7\xde\x45\xd2\ +\x75\x95\xe7\x5a\xaa\x6b\xa6\x17\xe7\x85\x6f\xc6\x15\xf8\xfc\x8c\ +\x73\x5d\xf5\x9d\x2c\x9b\x38\x2f\xd2\x9b\x5e\xc2\xe6\x25\x05\xb4\ +\xf4\xbd\x21\x53\x1c\xe5\x48\x3c\xf9\x89\xa7\x7c\x59\xba\xec\xb3\ +\xae\x64\x64\xa9\xb9\xd6\xb3\x39\x57\xbf\xee\x2f\x9f\xaa\x41\x6f\ +\x75\x73\x95\xfa\x45\xf5\x7b\x1a\x59\xc5\x37\xbf\xb9\x13\xbf\xf4\ +\xcb\x37\x34\x0e\x19\xc6\xe9\x71\x3b\x8e\x1f\x4e\xfd\x7d\xac\xcb\ +\xb3\x59\x54\xf3\x99\xfa\x9a\x56\x0c\x77\x87\x59\x4e\x8d\xa5\x16\ +\xd2\xc1\xe3\x3c\xf9\xe4\xe4\x4d\x11\xeb\x98\x36\x26\xf3\xdc\x20\ +\x11\x88\x85\x5c\x93\x06\x01\x7e\xfa\x91\x76\xf0\xc4\x3f\x4f\x98\ +\x73\x43\xd2\x64\x1c\x71\x71\xbe\x8e\x0b\x6f\xb0\xcd\x63\xac\x81\ +\xde\xf8\x62\xae\x7a\x99\xa8\x5e\x22\xe6\xbc\x99\x41\xfd\xcd\xe1\ +\xe1\x35\xbf\x0a\xf2\xda\xf5\x3d\xf5\x3d\x83\x98\x4d\xe6\xde\xf8\ +\x9a\x68\xdc\x45\xff\x5f\x3f\xe5\x43\xf6\xb5\xab\x11\x6e\xb2\x51\ +\x2f\x9b\x4f\x84\xa9\x3f\x62\x2c\xc3\x18\x82\xbe\x89\x34\xdc\xf8\ +\x42\x91\xfc\x34\x92\xc6\x49\xfe\x8e\xda\x42\xf6\x13\x8f\x9f\xe8\ +\x72\x39\x11\x25\xdf\x45\xc7\xa7\xef\x5c\xe5\x6b\x1f\xe9\xbf\xa3\ +\xab\x32\x4d\x63\x7a\x91\xe5\x65\x63\x2b\x37\xc7\x04\x6a\x7b\xfe\ +\x51\x01\xd2\xc5\x4f\x9c\x09\xef\x49\x1f\xfa\x52\x8f\x0b\xf4\xc3\ +\x56\x6e\xaf\x62\x23\x1f\x6a\x96\xb1\x2c\x1b\x6f\xbc\x22\xb2\xad\ +\xb4\xe3\xf1\x2c\x8e\x1f\xcc\xe3\xfd\x77\x2f\xe3\xfe\x1d\xd5\xd7\ +\x74\x62\xe6\x1c\xcf\x52\x08\xe9\x46\x9e\xe8\x5b\x7c\xb7\x27\xd1\ +\x3d\x66\xc2\x1e\xf2\x33\xd2\x49\xc5\x40\x79\xd5\xb6\xab\x56\x8c\ +\x4e\xd7\x71\xf6\x68\xe6\x3a\x58\xf0\x54\xda\x64\x11\x83\x7e\x37\ +\x7e\xe5\xef\xbd\x13\xbf\xfa\x1f\x7e\x25\x8e\xf6\x3b\x71\xfe\xa4\ +\x1b\xb3\xf9\x38\x66\x95\xc6\x72\x96\x8b\x9c\xcc\xc3\xed\xba\xe4\ +\x23\xb3\xda\xc7\x5e\xe4\xe1\xf1\x10\x6d\x13\x9b\x4a\x01\xf8\x31\ +\x8a\x79\xed\x68\xfb\xa4\x2f\xba\xa2\x1a\xe1\xe2\x23\xc4\xed\xab\ +\xc4\x9b\x56\xf2\x70\x5a\x64\x92\x51\xd1\xc5\x9b\x67\xd0\x48\xb3\ +\x91\x4f\xfa\xf4\xdd\x8e\xe5\xb6\xf3\xc7\xcf\xb8\xcc\x27\x6f\xca\ +\x63\xe3\x8f\xf3\x89\x6b\x02\x4f\xae\xca\x56\x92\x41\x18\x3e\xd7\ +\x1d\x65\x13\x78\x4c\x47\x9e\xaa\x7f\xc6\xab\xab\x8a\xd7\x9a\x2e\ +\x63\xb8\xaf\xb6\x72\x38\x8b\x59\x3c\x89\xf3\xe9\xed\x38\x3e\xbd\ +\x13\xa3\xf1\x85\xda\xcc\x5c\xf6\xdd\x15\xcf\xd0\xed\x82\x1b\xe9\ +\x68\x8f\x8c\xa1\x5d\xb8\x02\xcf\xc3\x1a\x68\xa0\x81\xbf\x18\x68\ +\xce\xb2\x06\x1a\x78\x71\xd0\x6c\xa8\x35\xd0\x40\x03\x0d\xfc\x45\ +\x43\xce\x43\x3e\x3b\x7c\x86\x91\x4e\xcd\xf2\x3c\x9f\xec\xf0\xb7\ +\xf1\x6d\x1a\xee\x79\x50\xf3\x6c\xc3\x76\xb8\xc6\xb7\x8b\x03\xad\ +\x0e\x1b\xd7\xe4\xcb\x4f\x61\x81\x6b\x0a\xce\x04\xaa\xba\x38\x89\ +\xc5\xfd\x1f\xc4\xea\xde\x9f\xc6\xec\xf8\x4e\x74\x62\x11\xfd\x3e\ +\x77\xd2\x76\x85\xb3\x38\x2f\x09\x4c\x40\xe5\xd7\xaf\x50\xf1\x24\ +\x8e\xc9\x1f\x72\xeb\x0c\x44\x83\x95\x09\x22\x7c\x5e\x68\x11\xee\ +\x30\xbc\x9a\x00\x1a\xdf\xd6\x70\xa3\xb4\x13\x26\x6e\xa8\x71\x31\ +\x08\x7d\x2a\x96\x30\x93\x4c\xd2\xf0\x77\xda\x12\x5f\x74\x28\xa4\ +\x8d\x72\x39\x71\x36\x22\x52\x96\x3e\x8f\xf0\xe6\x02\x03\x8f\x32\ +\xe5\x86\x1a\xbc\xad\xe0\x35\x82\x00\x9b\x0c\xdd\x76\x3f\xae\xed\ +\x0d\x42\x86\x89\x91\xd2\xaf\x26\xc3\xf8\xfa\xce\x30\xbe\xf1\x46\ +\x2b\xde\xb8\xd5\x8a\xb3\xf3\x88\x3b\x8f\x3b\x71\x3c\x9b\x7b\x91\ +\xa3\xd7\x5a\x46\x8f\xe2\x96\x4c\xa4\x95\xf3\xb1\x3a\xd8\x84\x89\ +\x32\x3f\x6c\x84\x5d\xe0\xb5\xd2\x4a\x20\x5b\x17\x6c\x93\xb6\xad\ +\x49\x2e\x78\xbd\x81\x65\x56\x36\xeb\x90\x25\xaf\xc7\xdd\xc6\x52\ +\x97\xa7\x09\x17\xb3\x55\x5c\x5e\xce\xe3\xc9\xbd\x45\xbc\xf7\xe1\ +\x65\x3c\xf8\x78\x16\xa3\xf3\x69\x0c\x54\x8e\x83\xbd\x75\x0c\xf6\ +\x5b\x31\x1b\x2b\x59\x7b\x1d\x5f\xff\x99\x77\xe2\xab\x5f\x7f\x35\ +\x6e\xdd\xea\x46\x35\x5d\xc4\xe3\xc7\xd3\x38\x39\x9e\x79\xf1\x8a\ +\x9a\x3a\x3a\xd8\x89\x57\x5f\xef\x46\xbb\xd3\x17\xad\x8a\xf9\x82\ +\xef\x59\x8c\x62\x3a\xaa\xa4\x33\xdb\x14\x5d\xe9\xa2\x89\xbd\x15\ +\x72\x89\x5c\x26\xcc\x89\x6a\x2c\x27\x50\xe6\x96\x5a\x52\x35\x63\ +\x51\x50\x6c\xed\xa5\x4c\x3d\x8c\xf3\x93\xd3\x38\x7a\xed\x20\x6e\ +\xbe\x7c\x14\xd5\x24\xe2\xb5\xb7\x8e\xe2\x8f\x7f\xef\x7b\xd1\x59\ +\xf1\x0a\x4a\x5e\x69\x84\xc8\x96\xfe\x92\xa1\xb6\xca\x42\x01\x1f\ +\xd3\xe7\xae\x6c\x56\x83\x58\x8a\x12\x26\xe1\x92\xee\x05\x25\x51\ +\x14\x5f\x55\xce\x98\xc4\xc1\x5d\xe7\x8f\xef\x4f\xe2\xbe\xec\x70\ +\x79\x2c\xfd\x57\x55\x69\x12\xe2\x81\xc3\x38\x08\x7f\x1f\x44\x83\ +\x98\x38\x8e\x85\x41\x5e\xa3\xe4\x27\xd3\xd8\x48\x63\x43\x2d\x0b\ +\x97\x50\x74\x54\x2b\x89\xfe\x72\x11\xa7\xd3\x2a\xbe\x7b\x27\x62\ +\xef\xe4\x8d\xf8\x8f\x7f\xe1\xe5\xf8\xc7\xbf\xbc\x8e\x37\x16\xed\ +\xb8\xf3\xfe\x2c\x26\xe7\xa7\xb1\xf4\x87\xfe\x95\x1e\x15\x50\x86\ +\xf4\xb4\x83\x92\x67\x5b\x71\x34\x57\x17\x4e\xba\xd4\x28\xe5\xa4\ +\xd5\x5a\x3d\x1b\xb5\x94\x7f\xc3\xe3\x04\xb6\x13\xce\xf1\xc5\x6d\ +\x9e\xca\x64\x83\x0a\x5c\x6d\xbb\xde\x38\xb3\xdf\x67\x53\xac\x1f\ +\x3d\x36\xca\xfc\x64\x80\x7c\x85\x79\x42\x93\x0d\xd0\x7c\x0a\x4d\ +\x8e\xcd\xf5\x22\x8b\x1c\x6b\xdd\x28\x0a\x38\x90\x3e\xe7\x3e\x6d\ +\x21\xcf\x76\x6c\xea\x12\x52\x4e\x16\xde\x44\x74\x6a\x17\x26\x53\ +\x70\x3d\xc1\x2e\xbe\x66\x60\x1f\x01\xfc\x94\x99\x75\x41\xea\xdb\ +\xaf\x8e\x94\x73\x9b\x5b\x54\x3e\x6f\xd1\x6f\xef\xf0\x46\xdc\x7a\ +\xe3\x95\xb8\x71\xeb\x30\xda\xd5\x65\x9c\x7d\xff\x7b\x31\xbd\x73\ +\x3b\x2e\x9f\x3c\xf4\x53\x07\xbd\xdd\x3d\xb5\x9b\x3e\x26\x91\xe8\ +\xcc\xf3\x6a\xb1\x31\x35\xa0\x1c\x79\x28\x20\x22\xfc\x40\x4d\xc6\ +\xdf\xc6\xb7\xfd\x0d\x6c\x84\x6d\xf9\xc0\x0f\x31\x0a\xa0\xe1\xd2\ +\x04\x9f\x9c\x6e\x3b\xdc\x40\x03\x0d\x7c\x3a\xd4\xe7\x4b\x5e\x2c\ +\xff\x9c\xf3\xe7\xd9\xc8\xc2\xbf\x7d\x1e\xd7\xe7\x27\xb0\x89\xab\ +\x23\x6b\x1f\x48\x9c\x68\x36\x1f\x08\xb2\xb9\xc4\x75\x6a\x32\x1d\ +\xc5\xc5\xc5\x71\x9c\x5d\x7c\x2f\x46\x93\xef\xc5\x72\xf9\x91\xae\ +\x49\xc7\xea\x0b\x27\x72\x1a\x37\x78\x13\x6d\xa6\xeb\x95\x5c\x35\ +\xd7\x75\x90\x45\x74\x9e\x82\x62\x83\x6d\x21\x7f\x29\x79\x6c\xa8\ +\xe9\x3a\xaa\xeb\x1f\x8e\x6b\x25\xbf\xec\x3d\xd2\x71\x35\xce\x78\ +\xc6\x69\xc5\x17\xcd\xbc\xc5\x99\x0e\xad\xe6\x25\xc4\xd8\x8e\x9f\ +\xaf\xd5\xa6\x94\xb2\x40\x2b\xb8\xe3\xe8\x83\x90\x43\xb8\x38\xf5\ +\x7f\xc4\xd5\x1b\x01\xf8\x2b\x3f\x55\xaf\x38\xc6\x33\xf4\x03\xce\ +\x97\x9b\xa1\xe4\xab\x3f\x5c\xce\x17\x31\x9d\x68\x5c\x32\xec\xc7\ +\xb7\x7e\xe5\x28\xde\x78\x67\x3f\x0e\x76\x87\xf1\xf0\xce\x24\x4e\ +\x4e\x79\x45\xe4\x3c\x66\x93\xca\x4f\x18\xb3\xa1\xc2\xf7\xbe\xc0\ +\x17\xd2\x13\x2b\xfb\x3a\xce\xe2\x3f\x7d\x84\x32\xca\xde\x28\x6b\ +\x80\x7c\xa9\x1e\xe7\xcf\xc1\xb4\x2d\x0e\xe1\xf4\x8b\x14\x8b\x4d\ +\x31\x6e\x14\x9a\x4e\x70\xa1\xb1\x52\xa8\x8e\x56\x71\xf2\x68\x1d\ +\xc7\x1a\x33\x8c\xb8\x01\x47\xf9\x76\xda\xea\x47\x86\x11\x47\xd7\ +\x0f\xd5\xdf\xf4\xe2\xe8\xe8\x30\x76\xf7\x34\x42\x96\x8c\xd5\x42\ +\xe3\x1b\x36\x2f\x54\x36\x3f\x41\x6f\xdd\x52\x09\xac\xab\x0c\xd5\ +\xef\xaa\xbf\x51\x38\xc7\xdf\x6d\xeb\x4d\xbb\xf0\xcd\x40\xc2\xbd\ +\x01\x29\x59\x6c\xf6\x2c\x84\x30\xde\xf0\x86\x5a\x95\xf6\x44\x4c\ +\x96\x27\xcb\x41\xf9\x34\x14\x8f\xde\x0e\xdf\xcc\xed\xba\x5c\xdd\ +\x7e\xc4\xc5\x89\xc6\x27\x73\xd7\xac\xd3\xb8\xe7\x84\x59\xbe\x41\ +\xed\x52\x2a\x28\x5f\xbe\x57\xca\xab\x96\x19\xdf\x65\x7f\x6e\x90\ +\x7c\xf3\xa0\x67\x07\x5b\x4b\x3f\xd5\x2f\xdf\x9d\xbd\x38\x99\xc7\ +\xed\x0f\x2e\xe2\xce\x87\xe3\x38\x3b\xe5\x49\x28\xc6\x80\xca\x8b\ +\x71\x11\x86\x70\x7e\xe8\x08\x9e\xf5\xb2\x71\xd4\x93\x5c\x3e\x2d\ +\x48\xfb\xc1\x70\x84\x49\xaf\x71\xeb\x44\xe3\xd6\xe3\x75\x9c\x3f\ +\xd6\x38\x4d\xf8\xa2\x6a\x69\x2c\x3b\xd7\xf8\x70\x3f\x7e\xed\x1f\ +\x7e\x21\x7e\xf9\x3f\x78\x4b\x43\xc7\x96\xdf\xc8\x30\xab\x46\xb2\ +\x9f\xf2\x46\x26\x46\xa3\xad\x82\x4b\xa6\x37\xf6\xf0\x15\x46\x1f\ +\x2c\xa1\x88\x5a\x35\xa5\xa3\x4e\x04\x19\x6d\xc8\xb6\x89\x83\x58\ +\xe4\xf0\x73\xd8\x0c\xc6\x8b\x48\x1d\x32\xde\x63\x37\xa7\x23\x1f\ +\xa7\x30\x0f\x90\xf6\xc8\x04\xb5\xec\xac\x47\xe1\xaa\xeb\x3c\x0f\ +\x91\x5b\x7c\x24\xc0\xa3\x38\x6a\xd8\xe7\x12\x89\x39\x9a\xcf\x82\ +\xe4\xd2\xd6\xf9\x24\x60\xb6\x91\xfa\xdc\x75\xbc\xea\x8e\x9a\x64\ +\x8e\x44\xb5\x73\x1d\x22\x2d\x37\x42\xc2\xb2\xb3\xdb\x8a\xa3\x9b\ +\x7c\x43\x6f\x11\xe3\xf9\xc3\x78\x7c\xfa\x91\xda\xfb\xb9\xe6\x30\ +\x67\x3a\xc7\xda\xb1\xd3\xdf\x71\xbb\xc4\x7e\xc8\xf1\x93\xb0\x75\ +\xdb\x10\x24\x76\x15\x6e\xa0\x81\x06\x5e\x3c\x34\x67\x58\x03\x0d\ +\xbc\x38\x68\x36\xd4\x1a\x68\xa0\x81\x06\xfe\x1a\x42\x3d\x18\x7a\ +\xde\xa0\xa8\x4c\x87\x0b\xfe\x34\xd4\xe1\xa7\xa7\x30\x4f\x03\xf4\ +\xed\xf8\x1a\xc7\x07\x9e\x9f\x4e\xb1\xfa\x7b\x5e\xcd\xc4\x5a\xc8\ +\x6a\x31\x8f\xd9\xa3\x1f\xc4\xfa\xf6\x9f\xc4\xfc\xc9\x47\xd1\x5a\ +\xce\xa2\xd3\xeb\xe7\x02\x3a\x0b\x0e\x9a\xb8\x79\x2e\x55\x4f\xfe\ +\xd8\x48\x63\x06\x8f\x1c\xc4\x58\x66\xc6\x31\x91\xcb\x49\x9f\x26\ +\x79\x9a\xd0\x7a\x92\xab\x74\x38\xdf\x21\x8d\x8f\xac\x2d\x60\x22\ +\x99\xfa\x90\x3e\x4b\xb0\x59\x2c\x28\xf1\x06\xcf\x62\xeb\xc9\x28\ +\xd3\xc6\xf4\xcd\x58\x7c\xe7\xed\xbc\x92\x26\x4c\x32\x92\x2f\xf9\ +\xc9\x5f\x34\x50\x4f\x30\x11\xec\x83\xc1\x9b\x0e\xb8\x0e\xcb\xf6\ +\x26\xe4\x02\x88\x79\x72\xc3\x86\xef\x54\xf4\xdb\xad\xe8\x77\x3b\ +\xd1\xe9\x87\xec\xb4\x13\xd7\x3b\xd7\xe2\xcb\x2f\xb5\xe3\xd5\xd7\ +\x76\xbd\xa0\x72\x72\xbf\x13\x0f\x1f\x5f\xc6\x24\x96\x31\xe8\xae\ +\xa3\xc7\x2b\x07\x3b\x3c\x05\xa8\xbc\x29\x26\x3a\x94\x9f\x8b\x8d\ +\x5e\xd8\x57\x65\xc4\x2f\xb9\x97\x38\xf9\xf0\x7b\x33\x0d\xdd\x53\ +\x17\xd7\x89\x9c\x6d\xa4\x34\x2e\xde\x52\x65\xc6\xe6\x32\x75\xa7\ +\xab\x92\x2f\x54\xbf\x92\xbd\x9a\xaf\xe2\xf4\xf1\x34\x1e\x7d\xbc\ +\x88\x87\xf7\x66\xf1\xf8\xe4\x32\x2a\xfd\xba\xfd\x65\xec\xee\x74\ +\x63\x2a\x9d\x77\x7b\xbb\xf1\xb5\x6f\xbc\x1a\x5f\x7e\xfb\x20\xf6\ +\x6f\x44\x9c\x4c\x4f\xe3\xc9\xa3\x69\x4c\x47\x8b\x18\x0c\x22\x5e\ +\x7b\xf3\x40\x13\xed\x4e\xcc\x79\x1d\xd3\xb4\x8a\xc7\x1f\xcf\x62\ +\x36\xd2\x44\x7e\x86\xce\xca\x5c\xe5\x8b\x36\xe5\x40\x31\x40\xf9\ +\xa3\x13\x3a\x97\x30\x85\xe7\x8e\x6b\x9a\x42\x56\x2b\x3a\x46\x54\ +\xb3\x51\xbc\xf1\x33\x6f\xab\xed\x29\xaf\x5d\x65\x56\x75\xe2\xee\ +\xbb\x8f\xa2\xd5\x97\xbd\x55\x18\x36\x6f\xdc\x36\x2c\x88\x3a\xe1\ +\x43\xfa\xf9\x34\x15\x4f\xa6\x41\xcf\x57\x91\xb2\x59\x94\x4f\xc1\ +\x4d\xc7\xb9\xd0\x30\xbe\x58\xc6\x93\xfb\xe3\x38\xbd\xcb\x13\x7c\ +\x33\xd7\x3b\x8a\xb9\x3d\x20\x8d\xb6\xe6\xb6\x80\x53\x94\x68\xe0\ +\x18\xdf\xb8\xec\xce\xb7\xd2\x16\xd5\xda\xaf\xba\xf4\x02\x97\xe4\ +\x7a\x41\x10\x5d\xd0\x49\xfc\x2b\x95\xbd\xbb\xe8\x7a\x33\xf3\xe2\ +\xa4\x13\xb7\x1f\x0f\xe3\xfa\x72\x37\xfe\xf3\x5f\xbd\x19\xff\xf0\ +\xe7\xda\xb1\x27\x3d\x1e\xbf\xb7\x8e\xf9\xe8\x34\x56\xfe\x4c\x9c\ +\xda\xbd\xdb\xf4\x55\x9e\x2e\x62\xb1\x5f\xea\xb0\x0d\xca\x4d\xf1\ +\x57\x74\xda\x82\x8b\xbe\x01\x2f\x7e\xb9\xfd\x22\x48\xed\x95\xbb\ +\xe0\xd9\x34\xa3\x3d\xab\xed\xe6\x86\x59\xcf\x4f\x8f\xf9\x89\x33\ +\xf9\xb9\x99\x26\xbd\x79\x12\x4d\x6d\xba\xdd\x83\x57\x36\x95\x91\ +\xd3\x4f\x99\x9b\x8c\xd0\x81\xbc\x8d\xa4\xcd\x1c\x27\x1f\x34\xed\ +\xe8\xca\x35\x64\x18\xa4\xe0\xb4\x71\xe2\x4d\x87\x98\x6d\x97\x46\ +\x9b\x9b\x6c\x0a\xd3\x9e\x11\xe1\xc5\x22\xda\x8b\xec\xef\x6b\x0e\ +\xfc\x2e\x9a\xeb\x1a\x26\xbf\x52\x52\xba\x7a\x61\xad\x95\x8b\xac\ +\xdd\xfe\x30\xf6\x8f\x0e\xe3\xe6\x2b\xfb\x6a\x4b\x93\x18\x3f\xbc\ +\x1b\x4f\x3e\xf8\x41\x8c\xee\x3d\x8e\xc9\xd9\x28\x06\x7b\x7b\xd1\ +\xdb\xdd\xb1\x20\xae\x65\x6e\x5f\xc2\x91\xbb\xc9\x00\x9d\x1c\xde\ +\xf2\x9f\x81\x67\xa3\x7f\x88\x0d\xc2\x27\xa4\xfd\x4c\xf0\x89\x82\ +\xb7\x60\x5b\xcf\x06\x1a\x68\xe0\x0a\x38\x37\xf2\xa0\x73\xe4\x33\ +\x9c\x24\xf5\xb9\xb4\xed\x3f\x17\x8a\xac\x5a\xa4\x2f\xdc\x62\x36\ +\xbf\xae\x29\xba\x2e\x71\xcd\x04\x5b\xab\x37\x67\x4c\xc1\x3a\xf6\ +\xc5\xe4\x61\x3c\x7a\xf2\xed\xb8\x1c\x7f\x47\xf4\xf7\xa2\xdf\x3f\ +\x8e\x41\x6f\x1c\x7d\x36\x2c\x5a\x8c\x99\xe6\xea\x63\x66\xea\x63\ +\x67\xba\xde\xcd\x63\x41\x47\x41\x17\xa7\x7e\x93\xbe\xcc\x1b\x69\ +\xde\x18\x4b\x27\xaa\xfc\x74\x5c\x47\x3d\x8e\x50\xfc\x36\xee\x78\ +\xfa\x2a\x85\xd9\x9c\xe3\x9a\xe9\x85\x77\x85\xe1\xf3\x98\xce\xf1\ +\x79\x3d\x76\x3a\x5d\xa3\xaf\x16\xe7\xf5\xdf\xf0\xe0\x08\x93\x74\ +\x3b\x8d\x9c\xfb\xd0\xe4\xf5\x26\x00\xd7\x6d\x5f\xeb\x25\x4b\x74\ +\x5f\xc7\xc9\x9d\x4b\xbb\xe5\xcb\x66\x8e\x5f\x46\x35\x6f\xc5\xc5\ +\x68\x1e\x97\x17\xad\x78\xe3\xad\x7e\x7c\xeb\x97\x5e\x8a\x5b\xaf\ +\xf3\x4a\xc6\x79\xdc\x51\xbf\x3d\x1b\x57\x31\x56\xfc\x62\x82\x0d\ +\x72\x8c\xe0\x6b\xbe\xe4\xa6\x8c\xac\x0a\x8f\x3d\x54\x17\xee\x9b\ +\x0b\xcd\x7d\x17\x01\x85\xd0\xcb\xb5\x22\x9f\x9f\x22\x9c\x86\xf1\ +\x26\x6c\x8e\xc3\x2c\x4b\x5e\x6b\xbd\x8c\xd9\x94\xef\xac\x45\x5c\ +\x9e\xf1\xb4\xd4\xd2\x4f\xb8\x9f\x9d\x6a\x54\x47\x7d\xc4\x42\xe3\ +\xba\x76\xdc\x7c\xe9\x20\x0e\x0f\xf6\xe3\xa5\x97\x8e\x62\xff\x5a\ +\x3b\x78\x92\x70\xa1\xf2\xf0\xc4\x1a\x4f\xf8\xd0\x3f\xd1\x36\xf8\ +\x65\x9f\xa5\x7e\x55\xe9\x19\x77\x60\x07\x9e\xde\xe3\xe9\x6b\xb4\ +\x41\x09\xc6\x19\xdc\x98\xc4\x6b\xab\xf3\xc9\x34\x36\x95\xe8\x1b\ +\x4b\x31\x5c\x07\x2e\xad\xff\x3e\xac\x68\x63\x3c\x79\xc4\x6b\x1f\ +\xe9\xef\xbb\xd2\xaf\xf2\x53\x6a\x4b\x06\x58\xa5\xdc\xbe\x09\x86\ +\x82\x96\xb4\x74\x7b\xb4\xcd\xdc\x50\x53\xff\xcf\xe0\xc9\xb2\xb1\ +\x91\xc6\xa1\x04\xf5\xab\x78\x3d\x26\x6f\x3e\xb8\x98\xc7\xf1\xc3\ +\xb9\xc6\x90\xe3\x38\x3b\xa6\xad\xf2\xb4\x61\xb6\x0b\xf7\xdd\xae\ +\x10\x6c\x98\xe5\x45\x5f\x3b\x6c\x6a\x1e\xd5\xbb\xf8\x88\xf7\xb7\ +\x74\x4b\xa4\x9a\xba\x5c\x15\x73\xbe\x67\x77\xd6\x8a\xcb\x53\x9e\ +\x4a\x63\x13\x55\x45\xab\x56\x71\xeb\xd5\xfd\xf8\x77\xfe\xe1\x2b\ +\xf1\xf5\x5f\x7b\x39\x16\xaa\x93\xe9\xa8\x17\xf3\xc5\x48\x76\xae\ +\x7c\x16\x30\x66\xf2\xcd\x5c\xe4\x2b\xe7\xfa\x97\x53\x76\xca\x42\ +\x07\xf2\x74\x99\x68\x8b\xc2\xb1\xa5\x7e\x99\x7f\xf2\x64\xdb\x4e\ +\x9a\x8e\x85\x6e\x2f\x71\x63\x1c\xe1\x05\xcd\xf6\x0c\x19\x3f\xdb\ +\x11\x65\x82\x28\x5a\x1d\x76\x0a\x1d\xe1\xf7\x39\xc0\xb8\x2d\x75\ +\xb4\x2e\xc4\xe2\x6f\x5c\xc6\x8b\xc1\xf8\x76\x7a\x1d\x4a\x3e\x57\ +\x2e\xdb\x7a\x3d\x26\xe5\xc9\x35\x9d\xb7\xd0\x68\x30\xa4\xa4\x5d\ +\xab\xfd\x31\x36\x24\xcc\x2b\x20\x8d\xd1\xb6\x66\xcb\xe8\x0d\x16\ +\x31\xdc\xaf\xa2\xb7\x33\x8f\xb3\xe9\x9d\x38\x1f\xdf\xd6\xb9\x78\ +\x11\x27\x27\x0f\x65\xff\x55\xec\x0d\x5f\xf2\x78\x92\x73\x02\x3d\ +\xb2\xfd\x24\x64\x4b\x49\xa0\x7d\xa5\xdf\x40\x03\x0d\xbc\x28\x68\ +\xce\xa7\x06\x1a\x78\x71\xd0\x6c\xa8\x35\xd0\x40\x03\x0d\xfc\x45\ +\x82\x67\x0a\x89\xfe\x24\xf0\x3c\x11\xd0\x9e\x27\x1e\x5a\x0d\xdb\ +\x3c\xdb\x7c\xcf\xa6\x01\x6a\x5a\xcd\xfb\x6c\xba\xda\x7f\x16\x3c\ +\x51\x53\xa4\x17\xe1\x59\x8c\x10\xbe\x3c\x3d\x8e\xf9\xfd\x3f\x8e\ +\xe9\xfd\x77\xa3\xbd\x1c\xc7\x60\xd0\xd7\xe4\x89\x8d\x34\x4d\xa6\ +\x35\xb1\x66\x62\xa6\x84\xf6\x99\xb8\x79\x92\xc7\xc2\x76\x4d\x27\ +\x77\xe2\x98\xec\x31\xd1\xf3\xe4\x56\x13\x3a\x4d\x60\x95\xc8\x34\ +\xf8\xbc\x90\x03\xbf\xf3\x27\x9c\x93\xc6\x9c\x30\x2a\x8a\x5f\x8a\ +\x2c\x4e\xf1\x96\x97\x3a\x33\x89\x34\x97\xf9\x99\x18\x5f\xc9\x86\ +\x62\x9f\x34\xc5\x27\xec\x3c\xc4\x93\x53\x58\xe8\xe8\x9e\x93\xef\ +\x4c\x93\x19\xa6\xbd\x44\x29\x65\x02\x87\x96\x74\xd8\x94\x46\x3e\ +\x77\x1c\x13\xef\xd7\xad\xc0\x2b\xe8\xb7\x3b\xc1\x67\xc6\xa2\xbf\ +\x8e\xde\x7c\x3f\xbe\xd0\xee\xc6\xd7\x5e\x69\xc7\xe1\x7e\x2b\x2e\ +\xce\x7b\x71\xfb\xc9\x3a\x26\x9a\xf4\x4f\x62\xe6\xfd\xa6\x9d\x55\ +\x47\x82\x5b\x7e\x95\x9d\xeb\x41\xbf\x9c\x10\xd7\xfa\x67\x7e\x69\ +\x77\x25\xa0\x8c\xb9\x2a\xe0\xfc\x36\x74\xc2\xc5\x79\xf2\x8d\x24\ +\x87\xd1\x94\x89\xaf\xca\xed\xf9\x74\x96\x9b\x4d\xc0\x96\xc2\xf3\ +\x69\x3b\x2e\xce\xe6\x71\xfb\xe3\xcb\xf8\xf8\xfd\x8b\xb8\x77\xf7\ +\xd2\x77\xcc\xf7\xbb\x8b\x68\xf5\x66\x51\x55\xad\xb8\xf1\x4a\x3f\ +\x7e\xe6\x1b\xaf\xc4\x17\xde\xd9\x8f\xa3\x5b\x7c\xb8\x7c\x37\xda\ +\x9a\x74\x7f\xe9\x0b\x2f\x47\xbb\xbb\x8e\xaa\xb5\x8a\x27\x0f\xab\ +\x38\xbb\xc3\xa2\x1f\xd6\xd5\x8f\x85\x15\x95\x89\x4d\x3c\x8c\xe5\ +\x0d\x51\xe7\xed\xa0\x08\x56\xcb\x1e\x3a\x2e\xab\xe4\xa7\x76\x3a\ +\xad\x5e\x8c\x2e\x46\xca\xf7\x20\xae\xbf\x74\x10\x2b\xe9\xf0\xd6\ +\x57\x5e\x8d\x0f\xbe\x73\x3f\x46\x67\x97\xb2\x15\xdf\x00\x69\x45\ +\xb7\x95\xb6\xcb\x45\xa0\x4e\xf0\xe4\x60\xa7\x27\xe3\xeb\xcf\x53\ +\x46\xf0\xb0\x98\xa4\x1a\x52\x39\x57\x31\x9b\x56\x71\x79\x32\x8f\ +\xb3\x87\xe3\x18\x9d\xf2\xa1\x76\xd9\xd5\x55\x88\x0d\x53\x1f\xab\ +\x43\x40\xff\xac\x51\x69\x84\xfd\xf9\xc9\xf6\x2c\x6a\xb1\x91\xe3\ +\x27\xd2\x54\xef\xe0\x79\x27\x70\xa9\x87\x92\x86\xd7\x7a\x0e\x2b\ +\x16\xc5\xaa\x78\xf4\xa4\x15\x77\x9f\xf4\xe2\x6b\xab\x9b\xf1\x9f\ +\xfc\xca\x5e\xfc\xad\x77\xd6\xd1\xb9\x53\xc5\xc9\x87\x55\xac\xa6\ +\x63\x9d\x67\x1d\x3f\xf1\xe9\x05\x52\xa7\xce\x7a\xaf\x21\xdb\x05\ +\x74\x16\xbf\x38\xa6\x1d\x69\x66\xe8\xe4\x78\x1c\x04\xf3\xb0\xc1\ +\xd8\xf6\x62\x19\x0b\x1f\xde\x14\xeb\xf0\xe4\x99\x6c\x22\xfb\x10\ +\xe6\x49\x34\xbe\x61\xc6\xab\x5b\xfd\xfd\x40\x6f\x7e\xa6\xcd\xf0\ +\xb3\xd9\x94\xf2\x48\x36\xcd\xce\x16\x71\x1d\xa6\x73\x94\x71\x72\ +\xbd\xf2\x49\x47\x52\x38\x2c\xc2\xbc\x8a\x77\x82\x3c\xd0\x36\xcd\ +\x8b\x23\x33\x15\x00\x0a\xbc\x96\xad\x3a\xc9\x8d\xf2\xab\x73\xc1\ +\x34\xec\x4c\x7d\x80\xcb\xfe\x5e\xe4\xc5\x6d\xd5\xa1\xcb\x2e\x7c\ +\xf3\xc4\x1c\xe7\xb7\xaf\x51\x4b\x95\x7d\x37\xf6\x6e\xde\x8c\x6b\ +\x2f\x1d\xc5\xb0\xd7\x8a\xd1\x83\x7b\x71\xfa\xde\x7b\x31\x3e\x3d\ +\x89\xe9\x68\x1e\xbb\xfb\x87\xd1\xdd\x19\x58\x71\x16\xf8\x30\xc7\ +\x55\x61\xe4\x00\x7c\xc2\x40\xc1\x5d\x84\xa4\x3c\x05\x35\x9b\x61\ +\x8b\xe1\x79\xbc\x9f\x0a\x75\x02\xfc\x1a\xdf\xd6\xe9\x59\xf8\x91\ +\x33\x68\xa0\x81\x9f\x52\x78\xde\x79\xf2\xec\x39\x5d\x03\xd7\x19\ +\x5f\xb4\xc0\xe5\x6a\xbc\x86\x3a\xb8\xa1\xcb\x37\x5e\x0b\xbb\x0a\ +\xeb\xea\x63\x6a\x92\x85\xe9\x4f\x7f\xc4\x93\x54\xe3\x8b\xb3\x38\ +\xb9\x7c\x37\xce\x2f\xff\x38\x16\xeb\x77\xa3\xbf\x73\x1c\xfd\xde\ +\x5c\xac\x73\x5d\x65\xf9\x0e\xe7\x3c\xe6\x0b\xf5\xbf\x8b\x49\x54\ +\x4b\x9c\xfa\xab\x56\xde\x20\x90\xf2\xd9\xdc\xd2\xf5\x4f\xe3\x28\ +\xae\x9c\xf4\x71\xf5\x35\x52\x17\x3b\xe1\xb8\xf2\x2a\xc8\xe2\x72\ +\x5c\xc1\x75\xb5\xd0\x94\x93\xc7\x16\xc4\x91\x96\xb0\xe3\x53\xa2\ +\x02\x85\x57\x21\xe3\xc4\xfb\x72\xea\x78\xff\xe0\x17\x81\x34\xf0\ +\xf2\x14\x95\xe5\x3a\x4e\x22\x9d\x36\xcb\xef\x3e\x44\x07\x86\x2f\ +\xde\x5c\xe0\x9a\x8f\x2c\xcb\x95\xb3\x9c\x55\x6e\x00\xc8\x12\x2b\ +\x8d\x8d\x78\xda\x78\x3e\x6b\x8b\x56\xc5\x97\xbf\xbe\x1b\xef\x7c\ +\xe9\x7a\xec\x0c\xda\xf1\xf8\x01\x4f\xff\xcb\x3e\x93\x49\x4c\xc6\ +\x53\xf1\xcc\x63\xe8\xd7\x0f\x72\x83\x13\x4f\xc0\x21\xfb\xca\xb9\ +\x46\x3c\x06\x05\xd9\x76\x8a\xb1\x12\xaa\x2b\x7c\x38\x61\x26\x12\ +\x1d\xcd\x54\x00\x39\xe2\xf3\xeb\x2a\xab\xb5\xc6\x14\x11\x67\x67\ +\x8b\x38\x7e\x34\x97\x3e\x95\x5f\x79\xcd\xb6\x55\x47\xc3\x92\xee\ +\xb0\x13\xfb\xd7\xf7\x62\xff\x68\x27\x0e\xaf\x1d\xc4\xde\x01\x31\ +\x3c\x6d\xd5\xf3\x6b\xb1\xe9\x5b\xbc\xa9\xd1\x51\x1f\xd3\x16\xbe\ +\xee\x3a\x27\x36\xb3\x18\x06\xf8\xc6\x20\xfa\x73\xa9\x6c\x9b\xaa\ +\x9e\xd8\xcc\xc8\x4d\x35\x39\xe5\x6f\xb5\x49\x45\xc2\xa2\x26\x4d\ +\x43\x26\x94\xdf\xf2\x13\xf9\x3b\x7b\x1a\x17\xed\x74\x25\xaa\x13\ +\xc3\xbd\x7e\x5c\x9e\x2e\x62\x3a\xd6\xb8\xc3\x99\xf0\xd7\x41\x69\ +\xe1\xb7\x8d\x74\x64\x0c\xd0\xe9\xf0\xc4\x7f\x5f\x63\xdc\xbc\x39\ +\x05\xdb\x50\xbf\x3c\xb5\x37\x1e\x2f\xe2\xf4\xc9\x32\x4e\x4f\xc6\ +\x71\x7e\x3c\x57\xb9\x67\x31\x53\x99\xd0\x95\xcc\xeb\xf1\xab\xed\ +\x87\x5d\x8b\x1d\xed\x6f\xe1\xde\x70\x23\x99\x74\x51\x57\xee\xb4\ +\x94\x53\xcd\xde\x37\x65\xcd\x2e\x5b\xea\x97\x5b\x79\x23\x54\xa5\ +\x36\xb1\xd0\x98\x65\xb0\x8a\xd7\xdf\xb9\x1e\x3f\xf7\x77\x6e\xc6\ +\xeb\x5f\x3f\x88\xf9\xa8\xab\xba\xef\xea\x1c\x9a\x5c\xdd\x60\x23\ +\x7b\xe5\x46\x5e\xc1\x4b\xdb\x32\x45\xf1\x2e\x0b\xe7\x63\xd1\x33\ +\xdb\xae\x22\xe1\x41\x2f\xf4\xc3\x88\xa2\x21\x8e\x38\xf3\x99\x25\ +\xe9\x2e\xaa\xf9\x48\x58\xfb\x85\x5f\x72\x8d\x24\x25\xe5\x39\x03\ +\x39\x6f\x84\x3b\x85\xc3\x9b\xf4\x70\x09\x37\x1d\x7d\x49\xea\x63\ +\xca\xca\x71\x3e\x21\xf9\xe8\x68\xfd\x49\x6f\xe9\xf6\xf3\xed\x08\ +\xe2\x10\x7f\xea\x20\x1a\x3e\xf6\x65\x9b\x91\xb1\xaa\x37\x53\xcb\ +\x78\xd5\xa0\x1a\xa7\xee\xdd\xe6\xa5\x9e\xda\x2e\x63\x71\xde\xbc\ +\x00\xed\xe0\x7a\x27\x76\xf6\xd1\xf9\x24\x8e\x2f\xee\xc4\x83\x87\ +\x8f\xe2\xf8\xec\x91\xda\xc0\x3c\x6e\x6a\x1c\xc5\xf5\x8c\x1b\x2c\ +\x33\x31\xff\x72\xcd\x2b\xd8\x55\xb8\x81\x06\x1a\x78\x11\x50\x4e\ +\xd5\x06\x1a\x68\xe0\x05\x40\xb3\xa1\xd6\x40\x03\x0d\x34\xf0\xa2\ +\xa1\x1e\xf9\xbf\xc0\x11\xcb\x27\x89\x7a\x1e\x9d\xc9\x07\x74\x1c\ +\xaa\xfc\x28\x6a\x6c\xf3\x7e\x96\x74\x4c\xc2\x98\x30\xf1\xec\xd3\ +\x8a\x85\xe7\x6a\x12\xd3\x7b\xef\xc5\xf2\xce\xb7\xa3\x3a\xbd\xeb\ +\x8d\xa1\x5e\x6f\xa0\x69\xb8\xe2\xbc\xc0\x21\xd0\xc4\xcc\x0b\x31\ +\x9a\x8c\xb1\x40\xcd\x04\xcd\x9b\x12\x9e\x9c\xe5\xa4\xcf\xe1\x32\ +\x01\xac\xef\x54\xcd\x15\x14\x39\x26\x8f\x9b\xc9\x1c\x12\x93\xe6\ +\x49\xa5\x17\x34\xa4\x3b\x13\x45\x10\xf8\xcd\x86\xa6\x49\xe3\xe7\ +\x0d\x32\xc2\x4c\x26\xf9\x29\x1d\xf9\x40\xd2\x5f\x61\xd1\x4a\x5e\ +\x39\xf9\x4d\xde\x1a\x97\x46\x57\xba\x30\xa1\x67\x2e\x68\x7d\xa4\ +\x6f\x4d\xe7\x4f\x59\x84\xb3\x1d\xa3\xa0\xc2\x94\x3b\xe3\xb7\x17\ +\x66\xbc\x30\x84\x1d\x2c\x22\xf3\x41\x8e\x5f\xc5\xd8\x5e\x68\x1a\ +\xdb\x89\x57\x3b\x07\xf1\xce\xad\x7e\x7c\xf5\x8d\xbd\x38\x54\xf9\ +\xef\x9f\x2c\xe3\xd1\xe3\x59\x4c\x67\xab\x58\x74\xd7\xb1\x23\x5b\ +\x0f\x55\x07\x0b\x25\x21\x0f\xf2\x74\x3e\xe8\x82\xfc\x82\x13\x97\ +\x7a\xb1\x00\x03\x8d\xba\x56\xc6\xe5\x49\x35\xc7\x43\x14\xb8\x25\ +\x81\x9a\x8f\x90\xc2\x22\xa0\xa7\x31\xc9\xe1\x0e\xde\x2c\xd7\x52\ +\x75\xdc\x8e\xf1\xf9\x3c\x4e\x1e\xcd\xe3\xce\x07\x17\x71\xef\xe3\ +\x0b\x7f\x53\x6c\x5a\x5d\xc6\x7c\xb9\xf0\x2b\x7e\xde\x7c\xed\x7a\ +\x7c\xe1\x0b\xaf\xc4\x5b\x6f\xdf\x88\x97\x5f\xbe\x16\xaf\xbc\x96\ +\xaf\x00\x6c\xf7\x23\xee\xde\xbd\x88\xd3\x8f\x67\x5e\x20\xf2\xa4\ +\x5f\x19\x2d\x2b\x26\xe5\xf9\x54\x14\xb9\xe6\x5d\xd4\x69\x3b\xa3\ +\x56\x35\xf5\xe4\x8e\xeb\x96\x17\x77\x20\xb2\xa8\xd4\x8a\x6a\x7c\ +\x16\xaf\x7f\xf9\x75\xdf\x25\xdd\xea\x2e\xe3\xc6\xcb\x07\xf1\x67\ +\xbf\x77\x57\xec\xaa\x34\x25\xcb\x35\x27\x21\xec\x7a\x30\xb1\x57\ +\xa8\x37\x64\x53\x08\x12\x0b\x6b\xe4\xb1\xf2\x62\xcf\xc5\xe3\x79\ +\x5c\x9e\xcd\xe3\xe2\xc9\x34\x66\x63\x16\x2d\xd9\x40\xc6\x36\xf9\ +\x04\x93\x99\x6d\x2f\xea\x14\x35\x74\x50\x00\x75\x20\xd3\x66\x7d\ +\xa7\x38\x4f\xa4\xb1\x30\x51\xbb\x45\x2e\x5e\xc0\xe7\xec\x28\xb7\ +\x90\x5e\xc5\xc6\xea\x2c\xee\x3f\x69\xc7\xd9\xbd\x6b\xf1\x0b\xd7\ +\xf6\xe2\x3f\xf8\x56\xc4\xcf\xbd\x2c\x2d\xdf\x6f\xc5\xf8\xa1\x6c\ +\x35\x97\x93\xdd\xd7\x7c\x0b\x47\xe7\x88\xd3\xeb\x98\x3e\xb9\xaa\ +\x1c\xa8\x81\x6e\xfc\x1d\x81\x1d\x39\x0f\xc0\xb3\xfc\xde\x34\x52\ +\x1c\x8b\x71\xb9\x89\xa4\x3c\x64\x0f\x6f\xa2\x81\x77\x59\x20\x13\ +\xa7\xf8\x58\x2c\xb3\x38\xfc\x5a\xb4\xdb\x41\x11\xe8\xf3\x53\xf2\ +\xdd\xd6\x64\x67\xb5\x75\xe7\x85\x66\xc5\x18\xa4\x03\x7c\xbe\x14\ +\x30\x66\x81\x57\xf1\xe6\x75\xa0\x20\x78\x66\x94\x6c\x10\x48\xae\ +\x83\x5c\x7a\xc1\x88\xe6\xc7\xa1\x13\xbc\x72\x75\xfb\xb7\x9d\xcb\ +\x8f\x4a\xda\xf8\xb2\x39\xba\x72\xe7\xbe\xcf\x8f\x45\xd2\x6c\x3a\ +\xb2\xf1\x53\xa4\xc8\xd2\x81\x15\x3c\xb5\x67\x5e\x5b\xbb\x73\x74\ +\x2d\x6e\xdc\x3c\x8a\x83\xa3\x9d\x58\x8d\xcf\xe3\xe1\xfb\xef\xfa\ +\x1b\x6b\xb3\xf3\x69\xec\x5d\xbb\x16\xdd\x61\x4f\x2d\x4d\x76\xb2\ +\x5e\x4a\x6b\x19\x72\x00\xf8\x96\x9f\xe5\xbc\x02\xd8\xb6\x59\xb6\ +\xa3\x9f\x61\x35\x3c\x8f\x66\xf8\x24\x21\x35\xfc\x48\xc2\x1a\x68\ +\xe0\x73\x0c\xf5\x39\x54\x9f\xac\xcf\x9e\x27\x9b\x93\x96\x43\x09\ +\xf8\x82\xb5\xcd\x08\x0e\x3d\x43\x89\x8b\xc7\x64\x0e\x4f\xf3\xe7\ +\x72\x32\x61\xae\xf3\xad\x18\x4d\x2f\xe3\xf8\xec\xfd\x38\xbd\xfc\ +\xe3\x98\xad\xfe\x28\x7a\xfd\x87\xb1\x33\x9c\x44\x57\xfd\xe6\x52\ +\xd7\xa6\xca\x37\x69\xcc\x63\xa2\xf1\xd8\x5c\xae\x5a\x4d\x24\x41\ +\xd7\x33\x9e\x44\xe3\x6a\x24\x51\x39\x8a\x51\x78\xd3\x47\x71\xbd\ +\x53\x3e\x84\x19\x9f\x11\x86\x07\x5c\xd7\x43\x5d\xf4\xec\x6f\x36\ +\xd2\xea\x6b\x66\xe1\x63\x01\x1e\x3d\xbd\x09\x41\x59\xf4\x27\xa6\ +\x8e\xf3\xf5\x57\x78\xe6\xac\x23\xe9\x90\x27\xfe\x3a\xde\x63\x41\ +\xfc\xe2\x6a\x5c\x07\x5f\x76\x41\x3d\x3e\xb1\x14\x72\x2b\xf9\x6c\ +\xf1\xe6\x78\xa4\x7c\x53\xd5\xb8\xc6\x42\x4a\xcc\x46\x14\x63\x89\ +\xcb\xf3\x76\x5c\xbf\xde\x8d\x9f\xfb\xd9\xa3\x78\xed\xf5\xdd\x38\ +\xbf\x5c\xc4\xc3\x47\x63\xbf\xc6\x70\xc2\x58\x65\x3c\x75\xdf\xdf\ +\x1f\x0c\xdc\xbf\xb9\x1f\x53\x7e\x38\xf4\xa5\xc7\xcb\xb1\x5b\xe6\ +\x43\xbe\x40\xf1\x52\xc7\x44\xaf\x10\xf9\xa4\xcf\x48\xa5\x97\x4c\ +\x8c\xe0\xa0\x84\x54\x73\x05\xd9\x64\xba\x98\xaa\xef\x98\x6a\xfc\ +\x34\x89\x93\xe3\x8b\x58\x74\xe6\xaa\x4f\xd9\x24\xba\x71\xed\xda\ +\x41\x1c\x5c\x1b\xc4\xcb\x2f\x5d\x8f\x23\xf9\xb9\xf9\xc3\x13\x6f\ +\x2a\xf3\x4c\x3a\xb2\x03\x27\xbb\x6b\x44\x62\x99\xd4\x53\x4b\xe3\ +\x97\xdc\x5c\x93\x2d\x94\xa7\xb3\xd5\xc1\xaf\x98\x96\x2d\xfc\x7a\ +\xc4\xa2\x1f\x7a\x59\xc7\x0d\xa4\x4d\x29\x23\x43\xaf\xe1\xc1\xd0\ +\x63\x81\x76\xab\xa7\x31\xcf\x34\x46\xc7\xd4\x1d\x79\xad\x3d\x3e\ +\x40\x04\x63\x27\x5b\x4b\x89\xc8\x97\x27\xd1\xf2\x86\x9b\x1c\x5b\ +\x30\x3e\x9b\xcc\x2a\xd5\x41\x15\xa7\x4f\x66\x71\x7e\x36\x51\x99\ +\xd9\x9c\xe3\x09\x28\xda\x03\xfa\xa5\x5c\xe7\x8f\x8d\x12\x13\xad\ +\xf8\x22\x50\xbe\x25\xe5\xa1\x5c\x2a\x0b\x1b\x65\xa4\xa7\x5b\xc6\ +\xae\x95\xec\x31\x9f\xac\xa3\x92\x9b\x5e\xb6\x84\x2f\x5c\x67\x6c\ +\xe4\x0d\x86\xdd\x78\xf3\x6b\xd7\xe3\x1b\xbf\x75\x3d\x5e\xf9\xe2\ +\x5e\x2c\xa7\xbb\xfe\x76\xde\x82\xd7\xa1\x32\x7e\x24\x1f\x3b\xca\ +\x2f\x71\xb6\x01\x39\x27\x24\x56\xbb\x84\xd4\x93\x72\x27\x2f\x21\ +\xd2\xfa\x90\x7f\xa1\x20\xd0\x91\x90\xe5\xc8\xc8\x64\xd8\xb4\x23\ +\x1f\x92\xcf\x46\xf3\xb5\xa3\xc4\x9b\xa6\xcc\x44\x47\x06\xe1\x94\ +\x23\xb0\x8e\x85\xb7\xc4\xd5\x69\x7c\x0e\xe9\xcf\xf9\xe8\xf4\xc6\ +\xb3\x9d\xa0\xaf\x6f\x28\xf2\x79\x9d\xbc\xd0\x69\x0b\x99\x4e\x34\ +\x25\xf0\x86\x22\xa9\xcc\x23\x7b\x32\x56\xf2\x78\x89\x0d\xf7\x62\ +\x34\x12\xe1\xc4\x49\x5b\xf0\x77\xff\x24\x97\xd7\x41\xf2\xe6\x84\ +\xc1\xde\x22\x76\x8f\x64\xe3\xde\x49\x9c\x8e\x3f\x8c\xe3\xcb\x07\ +\x31\x1e\x9d\xe9\xdc\x6b\xc5\x70\xe7\x46\x79\xca\x8d\xf3\x03\x39\ +\xe8\x9a\x60\x91\x05\x9e\x6d\xa5\x0d\x34\xd0\xc0\x8f\x0e\xcd\x59\ +\xd4\x40\x03\x2f\x0e\x9a\x0d\xb5\x06\x1a\x68\xa0\x81\x17\x09\xf5\ +\x1c\x80\xd1\x0a\xf8\x0b\x1c\xb5\x20\xaa\x76\x35\xfc\x79\xe2\x7f\ +\x9c\xec\x3f\x49\xed\xab\xe9\x8d\x70\x4d\xaa\xfc\x14\x0a\x38\x8b\ +\xee\x9a\xfc\x2c\xcf\x1e\xc4\xfc\xc3\x3f\x8a\xc5\xc3\xf7\xa2\xb5\ +\x9c\x44\x6f\x30\x8c\xae\x26\xd5\x1d\x25\x64\xe2\xab\x59\x98\x98\ +\x35\x53\x62\xc2\xcc\xe4\xd9\x1b\x48\x65\xa2\xc6\x6c\xd9\x33\xe6\ +\xe2\x9b\x87\x49\x58\x4e\xee\x98\x03\x8a\x60\x5e\xe4\x20\x8a\x89\ +\x1e\x93\x2e\xf0\x5c\xcc\x97\xef\x49\x58\x4e\x24\x3d\xb1\x15\xcd\ +\x8b\xee\xe0\xa2\x25\x6f\xd2\x48\x83\x58\x27\x51\x84\x7f\xf2\x3d\ +\x55\x45\xb6\x13\x93\x06\x3a\xba\x12\xce\x7c\x53\x36\x3e\x7a\x4a\ +\x06\x13\x4d\xe1\xdc\xf8\x8d\x54\x74\x31\x3f\xe5\x84\x1f\x42\x79\ +\xcd\x0e\x91\xde\x48\xf4\x9d\xc2\x55\x54\x15\x77\x1a\xf3\x5a\x26\ +\x16\x09\xc8\x47\x4e\xf6\x62\xc1\x80\x3c\x96\x7e\x25\xca\x3a\x66\ +\xed\x88\x83\xe5\x4e\x7c\x69\xd8\x8e\xaf\xdd\xea\xc5\xb5\xdd\x65\ +\xcc\xaa\x76\x9c\xdc\xef\xc6\x83\xf1\x38\xaa\xf2\x0a\x9e\x1d\x69\ +\x23\x56\x3f\xe1\xe6\x05\x20\x89\x49\x1d\x28\xb3\xea\x4c\x7e\xed\ +\xf0\x6c\x14\x17\xab\xd6\x9b\x38\x93\x12\xa0\x29\xec\x25\x13\x21\ +\xf9\x8a\xc8\xdc\x20\x50\x2e\x8e\xa3\x29\x98\x47\xf5\xcd\xeb\x8a\ +\x58\xc0\x5a\x4c\xd6\x71\x72\x76\x1e\x8f\xee\x8e\xe2\xf1\xfd\x45\ +\x3c\x79\x70\x16\xb3\xe9\x22\xc6\xd5\xc8\x0b\x34\x2f\xdd\x1a\xc4\ +\x17\xbf\xf8\x52\xec\x1f\xed\x46\x7f\x67\x10\x3b\x3b\xc3\x38\x3e\ +\xbf\x8c\xc7\xef\x51\x8e\x2a\x33\x46\x2e\x36\x96\xad\x78\x7d\xa0\ +\x0b\xc6\x6a\xa0\x15\xc4\x2a\xb0\x10\x36\xe2\xcd\xaa\x5a\x5f\x16\ +\x08\xda\xab\x5e\x9c\x4b\xe6\xfe\xcd\x41\xdc\x7c\xe5\x5a\xc4\xbc\ +\x13\xd7\x5e\xdd\x8d\xf1\xe5\x3c\x1e\x7e\x74\x2a\x79\xb2\x0f\x0b\ +\x3f\x2e\x40\xea\xaf\xe4\xfe\x66\x08\x9b\x47\x5e\x28\x52\x9d\x56\ +\xf3\x2a\xce\x1e\xcd\xe3\xf4\xc9\x34\x46\x67\x95\xf2\x59\x88\x5d\ +\xbc\x2c\x42\xe8\xd7\x4e\x45\x4a\xbe\xd8\x15\x29\xb2\xa7\x88\xd8\ +\x93\x45\x50\xca\xb0\x28\xf5\xcd\x66\x5a\xd6\x31\x8b\x0d\x8a\xa7\ +\x9d\x88\x97\x9f\x37\x53\xf9\x5e\x9a\xe8\xe4\xf3\xf1\x28\x62\xfc\ +\x64\x10\xff\xce\xc1\x7e\xfc\xfd\x6f\xf6\xe2\x67\xae\xcf\x62\xfd\ +\x9e\xd2\x9e\x2c\x62\x50\xda\x08\x4f\x11\x38\x73\x80\x72\xe0\x29\ +\x4c\xdd\xbb\x7d\x13\x36\x11\x27\xf9\xa8\x47\x1d\xca\xa3\x5e\x6d\ +\x52\x39\xfc\xda\xf9\xf4\xb6\x2f\xa3\xd7\x42\x10\xe0\x42\xe2\x21\ +\x5f\x79\xbb\xbd\xd0\xa6\x55\x4f\x94\x9b\x76\x6f\xbd\xb2\x9d\xe7\ +\x79\xe3\x0c\x93\x17\xba\x65\xa0\x77\xf1\xc9\xc8\x61\x67\x69\x9d\ +\xd0\x4f\x47\xeb\x62\x3e\x51\x89\x43\x97\xf4\x39\xa4\x57\xa7\xdb\ +\x1c\xeb\x02\x39\x50\x30\xcb\x20\x4e\x07\xeb\x9c\x61\x22\x53\x8f\ +\xda\x97\x7e\xae\x17\x9e\x5c\xe3\xfc\xae\xcb\x20\x56\x74\x52\xfe\ +\xbe\xf3\x9f\xa4\xe2\x5f\x2f\xe6\xde\x58\x1b\xec\x1d\xc4\xd1\xf5\ +\xeb\x71\xb4\xdf\x8b\xd9\xf1\x83\x38\x7d\xef\xfd\x98\x9e\x9f\xe8\ +\xfc\x8d\xd8\x3b\xbc\x16\x2d\x9e\x7a\x24\x2f\xe5\x6d\x1d\x6a\xc5\ +\x8c\x6f\xf9\x35\x90\x5f\xa1\x6d\x47\x6d\x27\x01\xb6\xc3\xdb\xf4\ +\x1f\x82\x4f\x8a\xdc\xa6\x2b\x4f\xc3\xa7\x0a\x6a\xa0\x81\xcf\x21\ +\x7c\x96\x93\x6c\x73\xfe\x88\x89\x6b\x09\x3e\xfc\xd0\x7d\x32\xd7\ +\x89\x6b\x1f\xa8\x19\x9e\x46\x01\x5f\x19\xeb\x64\xeb\x76\x54\xd3\ +\x71\x9c\x5e\x7c\x1c\x8f\x4f\xfe\x38\xa6\x8b\x3f\x89\xfe\xde\xbd\ +\xe8\xf7\x2e\x75\x8d\x9e\x2b\x3b\xae\x55\x6c\xa6\xf1\x44\xda\x4c\ +\x7d\x0b\x9b\x31\x75\x3f\x2a\xa1\x74\x64\x08\x97\x2c\xe4\xa2\x1f\ +\xd7\x35\x3b\xd2\xae\x72\x61\xdc\x0b\xeb\xf4\x5d\x7e\x32\x2d\xe3\ +\x32\x8c\x62\x5c\xc7\xe1\x45\x0e\xe9\x93\xc6\x18\x89\xab\xb5\x7f\ +\xd0\x2d\x3e\xaf\xf9\xc9\x2b\x54\x78\xf6\x55\x28\xc0\xf5\xd4\x52\ +\xcd\x07\x0f\xf2\xe9\xf9\x84\x11\x95\xec\x88\x90\x3c\xfc\x5c\xc8\ +\x37\x39\x1d\x61\x11\xdc\xe7\x20\xd2\x61\x67\xa1\x72\xa7\xef\x28\ +\x84\x29\xc0\xc2\x3f\xaf\x2c\x64\xcb\x67\x36\xcd\xb1\xd8\xdb\x5f\ +\x1c\xc6\x9b\x5f\xd8\x55\x3f\xdf\x8f\xfb\x77\x46\x31\xaf\xd8\x54\ +\x99\xc4\x78\xc4\xd3\xe8\xb3\xe8\xe9\x3a\x3f\xdc\xed\x65\x86\xca\ +\xc4\xdf\xf2\x02\xb5\xc8\xda\x26\xe4\x43\x66\xd0\x18\x00\xa6\xfe\ +\x14\x19\xb3\xa7\xb2\xe6\xca\x70\x81\x54\x5b\xbc\xf2\xe9\x4e\x7c\ +\x93\xca\xaa\xad\x31\x42\xc4\xe8\xa2\x8a\xe3\x27\xe3\x78\x74\x7f\ +\x16\x4f\x1e\x9d\xc6\x62\x3e\xf3\xd3\xe7\x8c\xa5\x8f\x34\x96\xe1\ +\x09\xff\x97\x5f\xb9\x11\x47\x37\xfa\x31\x1c\xf2\x7d\xb3\x81\x74\ +\xeb\x6a\x6c\xc1\x6b\x21\xd7\xfe\x96\x6b\xbe\xfa\x92\x5c\x95\xa8\ +\x74\x24\xe8\xcb\x93\x6a\xf9\xed\x34\xe9\x8f\xde\xa6\xa7\xbe\xb0\ +\x6e\x5c\x26\xf1\xa6\xa2\x4c\xa7\xf1\x59\x4f\x63\xfa\x8e\x23\xfa\ +\xfd\x76\x4c\x2f\x64\xa3\x31\xaf\x4c\xe6\xbb\xb1\x79\xa3\x8d\xeb\ +\x51\x1c\xee\xe3\x34\x28\xea\xf6\xc4\x6f\x59\xab\x98\xcf\x57\xb2\ +\xeb\xca\x6f\x32\x38\x3f\x9d\xc9\x97\xae\x33\xa5\x9f\x95\xfa\x97\ +\xbe\xd4\x1f\xed\x81\xac\x6d\x5a\x39\x3c\xfb\x38\x8c\x6f\x1e\x6e\ +\xd8\x91\xab\xcb\x52\x36\x75\xd8\x94\x5c\x4c\x55\xfe\x31\x7e\x3b\ +\x66\x1a\x3b\x55\x13\x9e\x88\x53\x9c\x06\xc4\x7b\x47\x83\x78\xe7\ +\xe7\x8f\xe2\xcb\xbf\x7c\x18\x47\xaf\xec\x2a\xef\x7e\x2c\x34\xd6\ +\x9c\xcf\xf8\xbe\xa0\x74\xc0\xb1\x41\x29\x9f\xfa\x75\x1d\xbb\x4c\ +\xf8\xa8\x81\x02\xd8\x55\x34\xc6\x02\x76\x0e\xa6\x8e\xe8\xaa\x78\ +\xeb\x6e\x7e\x79\xe6\x2d\x7e\x69\xa0\xd4\x83\xcf\x0f\x12\xe6\x5f\ +\xc9\x88\x97\x4f\xd8\x02\x6a\x10\xdd\x1e\x47\x22\x91\x05\x81\xf6\ +\xe7\x08\xcb\x32\x2a\x79\xc6\xcc\x83\x4f\x88\x7c\x40\xe1\xc8\xb8\ +\xcc\x1f\x26\x95\x15\x1e\xb9\xdc\x1c\x85\x11\x3a\xe9\x52\x2e\x36\ +\x60\x5e\xe5\xd4\xc8\x10\x9e\x6d\x45\x92\x9d\x47\x5e\x2f\xbc\xa1\ +\xe9\xf6\x4f\xab\x16\x1b\x8d\x9d\x7c\xc4\x9c\x14\xf2\x10\xa7\xea\ +\x6b\x77\xbf\x15\xd7\x6f\x0c\x63\x67\x7f\x1a\xc7\x67\x1f\xc7\xc3\ +\x27\x8f\xe2\xc9\xc9\x59\x8c\xc7\x97\x71\x78\xb8\x1b\xdd\xce\x40\ +\x69\x9d\x89\x9b\x6e\xc9\x51\xc0\x18\x90\x50\x1d\x6e\xa0\x81\x06\ +\x7e\x1c\x68\xce\xa0\x06\x1a\x78\x71\xd0\x6c\xa8\x35\xd0\x40\x03\ +\x0d\xbc\x68\xb8\x1a\xfb\xbf\x70\x40\xa4\x27\x2b\xc5\xfd\x45\xc1\ +\x76\x3e\x80\xe7\x36\x05\x98\x88\xe5\xfc\x9c\x3b\x10\x35\xbd\xe1\ +\x23\xf7\xf7\xfe\x2c\xe2\xc3\x6f\xc7\xe4\xe2\xa1\x3f\x42\xde\xe9\ +\x0e\xc2\x9f\x31\x57\x42\x4f\xde\x3c\x53\xd6\x24\x8d\x09\xab\x27\ +\x95\x65\x02\xa7\x49\x31\x38\x93\x2d\x4f\xcc\x58\x7d\x66\x12\xc7\ +\x0c\x9e\xc9\x9d\x79\x11\x92\x93\x31\x7c\x4f\xfa\xa4\x91\xa7\x8e\ +\x28\x46\x38\x11\xfb\x9e\x00\x9b\x04\x2d\x27\x86\x40\x3d\x19\xe4\ +\xe7\x85\x70\x13\xe1\x2d\xe9\x1c\x8d\xcc\x12\x46\x0e\x82\xb6\x74\ +\x60\xa5\x66\x33\x29\x66\xe3\x0b\xfe\x82\x27\x2d\xd3\xe4\x64\x35\ +\x37\xc8\x82\xcd\x17\x2f\x60\xf0\x04\x11\x9b\x67\x9a\xe0\xcf\x2b\ +\x6f\xae\xf0\x3d\x07\xbb\x39\x77\xe8\x2e\x4c\xf7\x1d\xb7\x92\xc3\ +\x5d\xb7\x7c\x57\xac\x22\x6e\x3a\xd7\xe4\xbf\x8a\xd9\x74\x14\x97\ +\xb3\x55\xf4\xaa\x7e\x7c\xf5\xda\x30\xbe\xf4\xf2\x20\x0e\x77\x2e\ +\xe2\xf2\xb8\x15\xc7\xc7\xeb\x38\x99\x92\xdd\x22\x7a\xbd\x55\x68\ +\x4a\xca\x33\x58\x58\xd6\xe5\x65\x12\xca\x24\xd7\xbe\x17\xb5\xd0\ +\x15\x57\x98\x8c\xc8\xab\x0f\x19\xcc\x72\xc9\x23\x8d\xdb\x85\x02\ +\x2c\x4a\xa5\x9d\xb2\x85\x80\x1a\x43\x6f\x39\x83\xda\x46\xb7\xdd\ +\x8b\xd9\x64\x15\xa3\xb3\xa5\x5f\x67\xf4\xf0\xfe\x3c\x8e\x9f\x4c\ +\xfc\x9d\x8a\xe9\x4c\x65\x6a\xaf\xe2\xe5\x5b\xd7\xa3\xbf\x3b\x50\ +\xfa\x7e\xcc\x16\xeb\xb8\xf3\x67\x67\x51\x4d\xf9\xc6\x0b\xf5\x84\ +\x1a\x99\x0f\x77\xbb\x06\x37\x61\xbb\x4e\xc9\xad\x2e\x43\xe6\x4f\ +\x98\x4d\x1d\x37\x21\xda\x99\x28\x2c\x8c\xa0\xf5\xe5\x7c\x14\xaf\ +\xbe\x75\x33\x06\x83\xae\x6c\xdc\x8a\x57\xdf\xee\xc5\xf7\xff\xe0\ +\x91\x74\xab\x94\x96\x0f\xfd\x23\x2b\xe5\xb0\xb0\xd5\xdf\xe9\x89\ +\xd6\x51\xfe\xed\x98\xcd\x67\x71\xf1\x84\x0d\xb5\xa9\x37\x04\x79\ +\x0d\xa5\x37\x59\xa9\x67\x34\x29\xe5\xf5\xd1\x74\x39\xb7\xf3\xa2\ +\x87\xf4\x61\x73\xc6\x1b\x69\xf2\x59\x78\x60\xb3\x94\xb6\xc1\x26\ +\xaa\x6d\xa6\xc4\x94\x08\x99\xed\xe8\x45\x5f\x32\x46\x93\x76\x3c\ +\xbc\xe8\xc4\xe8\xc1\x61\xfc\xd2\x1b\xbd\xf8\xf7\xbf\xde\x8e\x37\ +\x5a\xaa\xe0\x8f\x64\x86\xc7\x8b\xe8\xb6\x96\xd1\xf1\xe3\x88\x6c\ +\xf8\x60\x2b\x36\xe3\x90\xe1\x43\xca\xac\xe5\xf2\x93\x1e\xf9\xf4\ +\x24\x8a\x42\x14\x0d\xbc\xf0\x92\x37\xcc\xd6\xdb\x71\x65\x79\x53\ +\x91\x5e\x74\xa5\xdd\x97\xf6\x8f\xab\xbf\x59\x62\x3b\x94\x30\x6d\ +\x3e\xf9\x25\x50\x2e\x5f\xa5\xe8\x4c\xcc\x63\x47\xa6\x05\x57\xa0\ +\xe0\x54\x1a\x6c\x85\x46\xfe\x0a\xa2\xbb\x41\x81\x2c\xc7\x55\x79\ +\xdc\x86\x1d\xa6\x3d\x83\x28\x5c\xda\x77\xa6\x86\x54\xf8\xf2\x82\ +\x95\x40\x50\x9e\x79\x40\x94\x25\x40\xb6\x50\xeb\x05\x58\xdb\x00\ +\xfd\xd9\x50\x63\xf3\xbb\x94\x25\x17\x9e\x54\x07\x3d\xbe\x61\xa3\ +\xdc\xbc\xf3\x28\x5e\x2f\x2c\x2e\xa3\x3f\xd8\x8d\x1b\xb7\x0e\xe2\ +\xe0\x68\x18\xd5\xc9\xa3\x78\xf8\xc1\x0f\x62\xf2\xe4\xcc\xaf\x20\ +\x1d\x5c\x3f\xca\x05\x4a\xd9\x8a\xa7\x20\x52\x01\x80\xcc\x8b\x62\ +\xdb\xf0\x6c\xf8\x13\xc0\xaa\xbf\x48\xc8\x22\x25\x7c\x46\x1d\x1a\ +\x68\xe0\xa7\x1e\x3e\xcb\xb9\x50\x9f\x3b\xf6\xb7\x02\xa0\xb8\x1a\ +\x87\x5e\xae\x59\x09\x26\x16\x5f\xd7\x21\xc5\x71\x8d\xe2\x35\x7b\ +\xd0\x4e\xcf\xef\xc6\xe3\x93\x3f\x88\xcb\xc9\x1f\x44\xbb\xf7\x7e\ +\x0c\xf7\xce\x62\xd0\xab\x2c\x86\x6b\x53\x6e\xa4\xa9\x4f\xd5\x78\ +\x6c\xc5\xd3\xca\x96\xa1\xeb\xb2\xaf\xe3\x88\x80\xc2\xb5\x9e\xeb\ +\x17\x17\xbd\xbc\xee\xe6\x93\x29\xea\x8b\x8a\x6f\x7c\x2b\x8e\x6b\ +\x72\x9d\x26\xfb\x16\xd2\x22\xa7\x5c\x23\x37\xfa\x8b\x26\x27\xa2\ +\xfa\x82\x42\x83\xdf\xb9\x16\x5e\x69\xe2\x0d\x37\xff\xae\xca\x8b\ +\x99\xdc\x4d\xc8\x07\x77\x6a\x0e\xba\x46\x66\x3a\x7c\x78\x84\xe3\ +\xb8\x0e\xa3\x47\xa1\x25\x3d\x79\xad\x5d\x79\xda\x9e\x2e\x86\x7e\ +\x69\xe1\x3e\xa6\xad\xb1\x16\xe5\xa4\xef\xe5\xc6\x96\x76\x4c\x75\ +\x5d\xbf\x7e\xb3\x1f\x5f\xfe\xe2\x51\xdc\x78\x79\x1d\xe7\x67\x8b\ +\x38\x39\x61\x7c\xb6\x88\xe9\x64\x16\xf3\x11\x37\x55\x54\xde\x48\ +\xea\xf9\x9b\x65\xd2\x95\x31\x45\xa9\x9b\x5a\x1f\x94\xa6\xaf\xc3\ +\x14\xbe\x69\x8a\x8c\x5d\x18\x11\xe0\x94\x4f\xbf\x84\xbe\x3a\xda\ +\x37\xd8\x87\x8e\x7e\x4a\x23\x01\x8c\x3f\x78\x0a\x0c\x7d\x67\x97\ +\xb3\x38\x7d\x3c\x8b\x93\x87\xf3\x38\x79\x7c\x19\x93\x89\xc6\x4e\ +\xab\x85\xc6\x4f\xcb\xb8\x7e\x6d\x10\x37\x5f\xda\x8d\x97\x6e\x1c\ +\xf9\x7b\x6b\x7b\xfb\xee\x50\xb8\x6f\x2b\xe6\xe3\x8e\x9f\xd2\xa2\ +\x1e\xe9\xf8\xf3\x06\x13\x81\xf2\x43\x7f\x8f\x41\xc4\x88\xcd\x5d\ +\x7f\x4f\xe9\x83\x27\x7d\xc1\xad\x32\xba\x09\xd1\x78\x63\x67\x6f\ +\x10\xbc\xd6\x99\x3e\xb5\xdd\x59\xc4\x85\xbf\x77\xc6\x38\x46\x55\ +\x55\xdb\xc4\xe5\xc8\x70\x57\x65\x41\x0c\x65\x1b\x5f\xac\xe2\xf2\ +\xac\x8a\xd1\xc5\x3c\xbf\x91\x5b\xa1\x03\xa6\x12\x07\x6a\x3a\xe3\ +\x6c\x15\x36\x69\x71\x1c\xb2\xce\x2d\xd6\x76\xf6\xeb\x2a\xd5\x2f\ +\x2f\xe7\xf5\x66\x9a\xf2\x9d\xab\xec\x6c\x26\x8e\xe4\x53\xf6\xf9\ +\xca\x4f\xa8\xc1\xdb\xed\xb5\xe2\xda\xeb\xbb\xf1\x95\x5f\xda\x8b\ +\xd7\x7f\x7e\x18\x7b\x87\xea\x9b\x67\xbd\xa8\x54\xb7\x33\xc6\xe2\ +\x13\x8d\xcd\xd8\x60\x54\x7e\x0b\x8d\xd1\x7c\x73\x10\x79\xa8\x6c\ +\xe8\x4e\x91\x3c\x1e\x52\xb9\xeb\x8d\xbf\x74\xe8\x25\xc4\x6a\xc2\ +\x97\x7a\xba\x7d\x62\x0d\x04\xea\x9f\xf5\xe0\xc2\xf8\x47\x91\x01\ +\xda\x4f\x96\x0a\x5e\x3c\x62\xd3\x27\x15\xc2\x90\x9f\x72\xd2\x4f\ +\x36\x1d\xc9\xcb\x74\x27\x30\x7f\xd2\x89\x47\x27\x34\xd0\x51\x7c\ +\xcc\x6b\x48\x9f\xe7\x71\x1d\x0f\x07\xf4\x0c\xc3\x6b\xf9\x76\xc9\ +\x4b\x1e\x79\x9e\x99\x49\xaa\xd6\xfc\xc9\x43\x1a\xc0\xa5\x85\x26\ +\x5d\x79\x42\x56\x98\x71\xd2\x78\x7c\x24\xc7\x18\x9b\x31\x3c\x6f\ +\x2b\xa1\x0d\x32\xaf\xe9\xb4\x97\x71\x70\xbd\x1d\xdd\x9d\x51\x9c\ +\xcf\xdf\x8d\x47\x4f\xee\xeb\xfc\x7b\x12\xf3\xe9\x34\x76\x87\x37\ +\x35\x8f\x61\x33\x5b\xe9\x9d\x37\xed\xbb\xce\x31\xad\x76\x05\x4f\ +\x87\x1a\x68\xa0\x81\x4f\x87\xe6\x8c\x69\xa0\x81\x17\x07\xcd\x86\ +\x5a\x03\x0d\x34\xd0\xc0\x8b\x84\x17\x3c\x4a\xa9\xc5\x3d\x2b\x96\ +\x70\x4e\x2d\x72\x02\x7a\x05\x57\x31\x3f\x2e\x6c\xe7\xf9\x43\x92\ +\x34\xb1\xf1\xb4\xa6\xbc\x1e\x6e\x79\x71\x12\xeb\xdb\xdf\x8e\xe9\ +\xbd\xf7\x35\xf9\xe2\x03\xd4\x3b\xd1\xf1\x13\x4a\x4a\xe9\xc4\x3a\ +\x30\x21\x64\x51\x1a\xa7\x49\x18\xdf\x42\x53\x40\x13\xae\x12\xe7\ +\x45\x1b\xe2\x99\xc0\x31\x29\x4d\x3f\xd3\x13\x06\xc9\xc9\x99\xe3\ +\xe4\xd7\x93\x35\xcb\x83\x2e\x16\xfb\x6c\x60\x6c\x4d\x20\x3d\xc1\ +\x34\x9f\x1c\x3f\xe3\x8a\x13\x8f\x27\x84\xf0\x93\x37\x9a\xe2\x23\ +\x03\xfd\x98\x20\x4a\x9f\x0d\x8f\xf5\x47\x56\x99\x94\x2a\x7f\xcb\ +\x16\x8d\x0d\x30\xf3\xba\x3c\x9a\x4c\x12\x57\xca\xbb\x62\x33\x4d\ +\xfe\x72\x31\x4f\x3e\x26\xeb\xf3\xb9\x37\x57\x88\x63\xd3\x8c\x89\ +\xfb\x6a\x59\x45\xd4\xaf\xad\x11\xbd\xf2\xe6\xd9\x3c\xe6\x93\x59\ +\x2e\xec\x08\x9f\x4d\xe6\xb1\x84\xce\x06\xdc\x72\x26\x59\xdd\x78\ +\x67\xd5\x8e\x6f\xdd\x9c\xc5\xcd\xfd\x75\xcc\xab\x7e\x9c\x5f\xf6\ +\xe3\xc1\x59\x37\x2e\xc4\xd7\x5e\x4d\x82\x2f\x6a\x0c\x54\x1f\xb4\ +\x92\xfc\xbe\x9a\x2a\x0d\xbd\x59\xfc\x90\x19\x14\xc8\x72\xd8\x65\ +\xcd\x73\x64\x31\x25\x9d\xe2\x1d\x4e\x1f\x3e\xaf\xbf\x78\xc1\x8a\ +\x30\x24\x73\x64\x9c\x22\x1d\x84\x1f\xe7\xc7\xe4\x70\x9d\xa0\x88\ +\xe3\xd1\x34\x8e\x1f\x2e\xe2\xf6\xfb\x17\x71\xe7\xce\x49\x3c\x79\ +\x3c\x09\x95\x28\x7a\xc3\x4e\x74\x87\xfd\x68\x0f\xdb\xf1\xde\x1f\ +\x3f\x89\xf1\x93\x0b\x8d\x50\x68\x17\x29\xd7\x4f\x49\x09\x6f\x6b\ +\x7e\x5d\xeb\x47\x3e\x64\x45\xb9\xb2\x3e\x15\x50\xec\xc2\xdf\xe1\ +\x20\x40\x19\xf3\xb5\x47\xd3\xf1\x4a\xf2\x97\x71\xeb\xb5\xeb\x99\ +\x96\x94\xab\x79\xdc\xf9\xee\x13\xdf\x61\xcd\xe3\x7c\x1d\xdf\x88\ +\xce\x46\x47\x3b\x7a\x7d\x16\x31\xdb\x5e\x8c\xb9\xbc\x98\xc4\x19\ +\x7a\x8e\xb9\x8b\x79\xab\xfe\xf5\x4b\x59\xca\x87\xec\xdc\x56\xe4\ +\xb9\xbd\xb0\xe0\x93\x6d\x23\x37\xd3\x32\xad\xbf\x9b\x82\xae\xd2\ +\xcb\xaf\x14\xa4\xa9\x91\xde\x39\xaf\xa3\xbb\xea\x46\x4f\xe7\xd1\ +\xe9\x68\x19\x77\x1f\xed\x44\x7f\xb2\x1b\xff\xce\x4b\x9d\xf8\xad\ +\xb7\x5b\xf1\x55\x15\xab\x73\x47\x3c\x27\x11\x83\x4e\x2b\xba\x4b\ +\x36\xd0\x68\x67\x54\xa4\xcf\xca\x2c\x37\x7f\x39\xbf\x6e\x11\xbd\ +\x38\x77\xc0\x4b\xfb\xa5\x9d\x7a\xc1\x47\x91\xb4\x6f\x7c\xe3\x2a\ +\x13\xe7\x97\xc3\xd2\x8f\x85\x48\x9e\xce\xb2\xbf\xc8\x85\x2b\xca\ +\xe2\x85\xb8\xf9\x32\x78\x7a\x0e\x3a\x9b\xc5\x7e\x7d\x14\x74\xb5\ +\x61\xe8\x7c\x3f\x23\x79\xe1\x91\x2f\x19\x59\x66\x39\x64\xab\xec\ +\xde\x90\xb3\xfc\x2b\xe7\x0d\x3b\x74\x44\x71\x3b\x8a\x95\xbe\x34\ +\x74\xdd\x43\x02\xc0\x93\x8e\xef\xe5\x4a\x01\xbe\x28\xb4\x09\xda\ +\x7b\xa1\x6d\xc0\x34\x71\x38\x9e\x94\xa5\xee\x00\x91\x8c\x62\x9b\ +\x12\x46\xc7\x6c\x6b\xd8\x59\x3a\x4a\xf7\x85\xca\x83\xad\xa0\xf3\ +\x82\x22\xcb\x54\xfb\x44\x24\xc2\xd8\x58\xe3\xf5\xa9\xfd\x9d\xdd\ +\x38\xbc\x7e\xa8\xba\x5a\xc7\xc5\xfd\xdb\xf1\xe8\xfd\x8f\x62\x7c\ +\x31\x8e\x4e\x7f\x37\x76\x8e\xf6\x9d\x01\x65\xdd\x2c\x76\x5a\x96\ +\xbc\x2d\x7d\x7e\x08\xaf\x59\x5f\x04\xd4\xf2\xb6\xe5\xe2\x3f\x2f\ +\xaf\x6d\xbc\x81\x06\x3e\x6f\xf0\x59\xcf\xbd\xa7\xce\x9d\x3a\x00\ +\x2a\x9c\x0b\xcd\xe6\x5c\xaf\xf1\x9a\x39\xaf\x5b\x0e\x65\x50\xec\ +\x6c\xac\xb4\x63\x3e\x1b\xc5\xe3\xe3\xf7\xe3\xc9\xf9\xef\xc5\xbc\ +\xf5\x7d\x5d\x57\xce\xa2\x3f\xd0\x78\x42\xd7\x29\x5f\x6b\xd9\x60\ +\xe1\xc9\x2a\x9e\x48\xd3\xb5\xc7\x1b\xff\x7e\x04\x99\xce\x05\x99\ +\xc2\xd9\x4c\x43\xb8\xae\x63\xbe\xb6\xeb\xba\xa3\x8b\x9b\x79\xd4\ +\x2b\x29\x0e\x57\xae\xbd\xfc\xf0\xe9\x27\x74\x91\xcb\xab\x21\x89\ +\xe9\x1b\x52\x62\x5e\x33\x7d\x10\x6e\xc1\x19\x42\x6c\x09\xe3\xea\ +\x94\x29\xdb\x57\x66\x53\x4c\x53\x19\xeb\x61\x04\x50\xc7\x65\x7c\ +\x5a\xc3\x21\x47\x64\x5a\xeb\x64\x39\xb5\x9e\xc4\x2b\x2c\x84\x9f\ +\xf3\x83\x48\xff\x2b\x3a\xfd\x19\xaf\xf9\xf3\x6b\x20\x45\x9e\xd3\ +\x3f\xd9\x3e\xca\x98\x85\x7e\x01\x1b\x6b\xd1\xaa\xe2\x4b\x5f\xbe\ +\x1e\x87\xd7\x86\x52\xaa\x1d\xa3\x33\x36\x56\x56\xb2\xfd\xd2\xfd\ +\x3f\x1b\x6c\x0b\xd9\x98\xa7\xe8\xd9\xf0\xb2\x8d\x29\x00\x79\x92\ +\x29\x58\x6d\x33\x74\x35\x6e\xa2\xe3\xea\x9e\x88\xa0\x31\x15\xdc\ +\x9c\xd6\x3f\x7d\x43\x29\x0b\x86\xb4\x8a\x1a\x37\xf1\x64\x15\xe3\ +\x97\xb3\x93\x69\x3c\x39\x1e\xc7\xf1\xbd\x49\x5c\x9c\x4d\x62\xca\ +\x4d\x47\xd2\xa3\xaf\x71\xd3\xd1\xf5\x9d\xb8\x7e\x73\x4f\xfd\xcd\ +\x4e\x1c\x1e\xec\x46\xb7\xdd\x8d\xc9\x58\xe3\xcc\x39\xe3\x0f\xca\ +\x8e\x3e\x92\x69\xdd\xb0\x8b\x68\xee\x6e\xb3\x4f\xcd\x36\x97\x3a\ +\x02\xa9\x27\x1a\xca\xa7\xd2\xd5\x0e\xd9\x00\xe9\x6a\x8c\xd4\xe7\ +\x89\x38\xf1\xb2\xb1\xc6\x78\x66\xaa\xa1\xda\x4a\xa3\x38\x1a\x87\ +\x6f\x7a\x82\x5d\xf1\x48\x73\x7a\x21\x0b\xe9\xc1\x66\xda\x74\x3c\ +\x93\x1c\xfa\x7a\xc9\x16\xbf\x37\x5e\xd1\x87\x9a\xc3\x0e\xce\x5b\ +\x39\x4b\x57\xec\x87\x1e\xae\x5b\xfb\x94\x85\xb1\xb4\xea\x70\x26\ +\xbc\x52\x7a\xd5\x27\x91\x6c\xce\xcd\x47\x9d\xa8\x26\x2d\x8d\x95\ +\x15\x9e\x43\x53\xde\x4a\xd7\x1b\x44\xbc\xfc\xa5\x7e\xbc\xfd\xf3\ +\xfb\x71\xed\xcd\xbd\x68\xf5\x75\x4e\xcd\x55\x9e\x95\xc6\xd6\xa3\ +\x4a\x69\x78\xe5\xa6\x34\x50\x5d\xaf\x18\xc7\x60\x1b\xc6\x6d\x8c\ +\x7b\x68\x47\xd2\xc5\x73\x10\xf4\x45\x57\x8f\x51\x52\x7f\xfc\x1c\ +\x3b\xd1\x0e\x4a\x18\xdf\xbc\xf0\xa5\xde\xa4\x05\x97\x67\x87\x61\ +\x1c\xe7\xfa\xd8\x4a\x6b\xa6\xa2\x83\xf0\x6c\x4f\xf0\x25\x4e\x5a\ +\x1d\x93\xc7\x32\x92\x2f\x75\x28\x06\x2f\x29\x94\xfb\x55\x50\xb0\ +\x39\x2f\xb7\xf4\x52\x71\xec\x3f\xc5\x68\x79\xd4\x04\x7c\x59\x09\ +\xa9\x23\xed\x07\x2e\xf2\x4a\x5a\xca\x2a\xb8\xe8\xd6\x83\x6b\x89\ +\xda\x25\x76\x23\xfd\x66\x43\x8e\x0d\xb5\x3a\x0f\x2a\x06\x7d\x15\ +\xa6\x6d\xf4\x77\x72\x63\x7b\xe7\xa0\x8a\x8b\xd1\x83\x78\xf0\xe0\ +\x4e\x3c\x39\xbd\x17\x17\x17\xd3\xb8\x79\xe3\xa6\xce\xb9\x5e\x39\ +\x47\x74\x40\x89\x3c\x6c\xf9\xc0\x36\xde\x40\x03\x0d\x7c\x1a\x34\ +\x67\x4b\x03\x0d\xbc\x38\x68\x36\xd4\x1a\x68\xa0\x81\x06\xfe\x22\ +\xa1\xcc\x1f\x7e\x52\x60\xf0\xb3\x3d\x85\x78\x56\xec\xd5\xe0\xe8\ +\xc5\x0d\x93\xea\x3c\x52\x22\x93\x65\x26\x7f\x9a\x84\xb7\xb9\xcb\ +\x50\x13\xd8\x07\x1f\xc4\xea\xce\xb7\x63\x76\x72\x2f\x3a\xdd\x4e\ +\x74\xfa\xfd\xe8\x95\x54\x5e\xcf\x61\x42\xc6\xc2\x03\x0b\xd0\x9a\ +\x78\x33\x09\x63\x63\x26\x27\x83\x19\xc7\xe2\x8e\x27\x67\x4c\x52\ +\xcb\x04\x8c\xc9\x99\x37\xc7\x72\xc6\x98\x34\x4f\xe0\xd2\x4f\x1a\ +\x3c\xca\xc2\xfc\x68\xa7\x1f\x3c\xc4\x43\x86\x8e\x2e\x66\xf7\x61\ +\xe3\x2b\xf3\xc4\xed\x33\x21\x97\xb2\x4c\x9e\xc9\x9f\x49\x23\xbc\ +\xce\xa7\xe4\x5b\x26\xd6\xe8\xed\xcd\x0b\xe2\xa4\x37\x69\xe0\xf7\ +\x46\x00\xe5\x60\xc1\x9d\x72\xb2\x69\xc0\xe6\x02\x0e\x9a\xe2\xfc\ +\x7a\x1d\x26\xed\x2c\x08\xb0\x71\xc6\xab\x09\xed\x6b\xe2\x3e\x27\ +\xed\x22\x96\x33\xc9\xd6\x44\xbe\x9a\xf3\x34\xda\x42\x4e\xbe\x37\ +\x2d\xd8\x98\xa8\x65\xb1\xa8\xb0\x32\xbd\x9a\xf1\x7d\x94\x69\x74\ +\x67\xbb\xf1\xc6\xa0\x15\x2f\xdf\xe8\xc4\xad\xc1\xd2\x8b\x0a\x0f\ +\xcf\x23\x1e\x8e\x5a\x31\x5d\xcd\xa3\x2f\x43\xa9\x7a\x54\x67\x7c\ +\xef\x4b\xc5\x4a\x03\xa9\x5e\x29\xbf\xea\x8a\xe2\xd8\x50\x3a\x6a\ +\x22\xfd\x6c\x0b\x4a\x3b\xe3\xc4\x4f\x2c\x89\xf2\x2f\x14\x5a\x42\ +\xd6\xad\xe2\x59\x4c\x29\x93\xe5\xac\x53\xf8\xf0\xb1\x53\x2b\xef\ +\xfe\x1e\x2d\xe2\xfc\x84\xbb\xae\x47\xf1\xe0\xfe\x65\x8c\xc6\x8b\ +\xe8\xed\xed\xc4\x81\xca\x70\x71\x3a\x8d\x07\xef\x9d\x5b\x27\x16\ +\xf4\xbc\x69\x61\x97\x13\x7a\x17\x46\x42\xc9\xcf\xeb\x31\xd6\x80\ +\xb6\x49\xa6\xc9\x8d\x8d\x73\xd1\x4a\x9e\x0e\x7c\x8b\x6e\x3c\x1a\ +\xc5\xd1\xcd\xc3\xd8\xbb\x36\xf4\x37\x47\xae\xbd\xd6\x89\xf7\xff\ +\xf8\x2c\x26\x17\xf9\xba\x9f\x36\x1b\x78\xd2\x9d\x05\x28\xe4\xb3\ +\x80\x34\xbe\x9c\xc4\xa5\xf4\x9c\x5c\xce\xbc\x09\xc4\xb7\x36\xdc\ +\x46\x24\xd7\xed\x47\x3f\xec\xe3\x76\xc0\x3e\x1e\x0b\x31\x76\xd4\ +\x19\x8b\x32\x2c\xc4\xa9\x9e\x59\x98\x11\x9e\x9b\x48\x38\x25\x2a\ +\x4d\x29\x4b\xd0\x8e\xee\x4a\xe7\x50\x2c\xe3\x78\x16\xf1\xf8\x64\ +\x2f\x6e\xcc\x77\xe2\xb7\xde\xac\xe2\x6f\xbc\x3a\x8b\x37\xce\x15\ +\xff\x40\x7c\x6a\x2b\x3b\xca\xbc\x25\x5e\x5e\xd1\xe5\x02\x4a\x1b\ +\xe4\x64\xfb\xd6\xdf\xca\x09\x1c\x34\x83\xf4\x83\x48\x1b\x27\x4f\ +\xea\x42\x31\x72\xb4\xa7\x5c\x20\x22\x8e\xb2\xd1\xce\x52\x4f\x7f\ +\x97\x44\x65\x70\xfb\x83\xae\x30\xed\x6e\x6d\xbf\xb4\xe3\xd2\x9e\ +\xbd\x39\x2c\xbe\xfa\x09\x4c\x16\xda\xea\x73\xe3\xca\x91\x07\x6d\ +\x3d\x6d\xe0\xbc\x8b\x53\xa4\xe3\xb3\xbd\x64\xdd\xd6\xb8\x0e\x59\ +\x96\xe2\x13\xa6\x34\x05\xf5\x82\x1d\x04\xc2\x2e\x7a\x31\x80\x8f\ +\x8e\xdc\xf6\x41\xeb\xf8\xf4\x2d\x87\x23\xf5\x29\x81\xc6\x71\xf9\ +\x97\x1e\xb9\x50\x94\x8b\xd0\xa9\x93\xcf\x75\x95\x13\xbb\x51\x56\ +\x18\xbd\xe9\x5b\x16\x69\x7d\xfd\xaa\x66\x6e\x1b\xc3\x83\xc3\xb8\ +\x7e\x7d\x4f\x69\xe7\x31\x7d\x72\x2f\x8e\xef\xdc\x8f\x89\xda\xd4\ +\xc1\x8d\x1b\xd1\xe6\xfb\x6a\x6e\x53\x2d\x2f\xd4\x26\x90\x2b\x80\ +\xb2\xe9\x19\xf0\x89\xaa\xc3\x5b\xf0\x1c\xd2\x67\x83\x6d\xd9\x35\ +\x6c\x65\xff\xdc\xf8\x06\x1a\xf8\x3c\xc2\xa7\x9d\x03\xf5\x79\xe9\ +\x73\xa7\x04\xcc\x5f\x27\x2a\x3e\xd7\x1e\xd0\x9a\x5c\x9f\x6b\x26\ +\x70\x5d\xd3\x4f\x9d\xe7\x6a\x4d\x1f\xd7\x8a\xf3\xb3\xdb\xf1\xe0\ +\xc9\x1f\xc6\xf9\xf8\xf7\xa3\xb3\x7b\x3b\x76\x76\xd4\xdf\x77\xb8\ +\xfe\xb0\x29\x32\x8f\xf9\x92\x27\xad\xf8\x96\xd6\x2c\xaf\xb7\xbc\ +\xa6\x51\x17\x1d\x7a\x3e\x6e\xb6\xc8\x45\x74\xae\x59\xe9\x96\xf4\ +\xc1\x8a\x5b\xd3\x77\xe0\x8b\x96\xfd\x41\x3a\x2b\x44\xe7\x0d\x1d\ +\x7d\xb8\x8e\x49\xb5\xfa\xba\xc8\xa5\x35\x35\xbd\xfa\xf9\x4f\x7c\ +\xe9\x0f\xeb\x6b\x2d\xe9\xcd\x69\xba\xd9\x7c\x74\x5f\x95\x31\x85\ +\xa2\x1f\x7a\xea\xef\x6e\xca\x91\xe2\xc3\x16\xa8\x42\x69\x88\x77\ +\x84\x47\x2d\xde\x2a\x14\x83\xfa\xa5\x1c\x03\x20\x34\x5f\x71\x2d\ +\x27\x02\x5d\x8a\x4b\xa8\xb8\x94\xad\x7e\x9d\x32\xa2\x3f\xd7\xd9\ +\x16\x23\x58\xa5\x59\x68\x4c\x24\x7e\x7f\xdb\x6b\xdc\x8e\x1b\x37\ +\x3b\xf1\x85\xaf\x0c\xe3\xc6\xad\xa1\x9f\x0a\x1b\xb3\x01\x34\x8d\ +\x98\x8e\x2b\x8d\x05\xc6\xee\xff\x10\x32\xd8\xe9\xb9\xdf\xa2\x7f\ +\x04\x9c\x87\xca\xed\x71\x23\x1a\x2a\xec\xfe\x45\x3e\x51\x56\x1d\ +\x85\x0b\x5e\xc7\xdb\x54\x22\xe3\x39\xce\x75\x47\x79\xa9\x8f\x64\ +\xb6\xba\xfa\x21\x7a\x55\xb5\xe2\xe2\x6c\x1c\x67\x4f\xe6\xf1\xe8\ +\xde\x34\x1e\x3f\x3a\x8f\xa9\xc6\x29\x33\x8d\x23\x79\xed\xf0\xd1\ +\xd1\x4e\xdc\xb8\x76\x2d\xae\xbf\xb4\x1b\x3b\xbb\x1a\xe7\x88\x5e\ +\x69\xac\x59\xb1\x59\x24\xa3\x71\x6b\x15\xd2\xb0\x93\xe5\x29\x0f\ +\xe4\x93\x15\x23\xa7\x7a\x23\x0c\x48\xbb\xa5\x5a\x9b\x71\xb0\xda\ +\x4f\x7f\xd0\x89\x6e\xbf\x2b\x3b\xb6\x85\xb7\x62\x7e\xa9\x31\xe7\ +\x54\xf9\xa8\x1f\x44\xef\x6e\xbb\x93\xf5\xa0\xf4\xfc\x18\x13\x4d\ +\x2e\x78\xcd\x66\xe5\x4d\x4a\x6e\x20\xb3\x68\xe4\xa1\x4b\xc9\x07\ +\x85\x5c\xd7\x98\x54\xb4\xec\x73\x93\xd7\xe3\x27\x8d\x2f\x2a\xc6\ +\xc5\x3c\x95\xc6\xb8\x59\x8e\xc8\xc5\x5c\x43\x69\x5e\xf1\x38\xe3\ +\x35\xe3\xe2\x65\x03\xb5\x52\x79\xda\xeb\xe8\xef\x76\xe3\x95\x2f\ +\xec\xc5\x2b\x5f\xdb\x8b\xdd\x9b\x7c\x6f\x8e\xcd\xc9\xa5\x6c\x36\ +\x8d\xea\x52\x7c\x13\xe5\x21\x99\xbc\x56\xdd\x63\x11\xe4\x2a\x3d\ +\xb8\xcb\x2d\xf9\xbc\xc6\xdd\x73\x11\x39\xa9\x6c\x9a\xed\x81\x0d\ +\xf1\xb7\xc2\x24\x72\x1b\x28\x74\xfb\x72\x2e\x87\x69\x59\x4e\x23\ +\xf6\xe0\xa9\xfd\x4c\x93\xf3\x9e\xb4\x81\xe9\xa0\xc4\x99\x48\xa6\ +\xfc\x33\x5c\x53\x33\x41\xca\x29\x6a\xe8\x50\x2a\xd6\xe1\xa4\x32\ +\x1e\x71\xa4\xa3\x08\x5f\x49\x80\xd7\xf1\xa0\xe5\xb0\x89\xd5\xc1\ +\x36\x29\x3a\x5a\x2f\x15\xd8\x56\x2a\x61\x93\x44\x41\x86\x63\xa0\ +\xb1\x61\x4f\xbb\xe0\x84\x74\xa3\xe0\xcf\x8d\x02\x92\x89\x0e\xf2\ +\x3a\x4a\xe0\x31\xa3\xc6\xbd\xfd\xfe\x32\xf6\xaf\x31\x66\x9a\xc5\ +\xc5\xf4\xe3\x38\xbe\xb8\x13\x67\x67\x9a\x0b\x54\xed\xd8\xdb\xbb\ +\x19\x9d\x8e\x12\xf9\x82\x44\x7a\x1f\xe4\x6a\x00\x7f\x96\xd6\x40\ +\x03\x0d\x3c\x0f\x9a\xb3\xa4\x81\x06\x5e\x1c\x34\x1b\x6a\x0d\x34\ +\xd0\x40\x03\x7f\x45\xe1\xd9\xa9\xc2\x0f\x03\x93\x87\x84\x17\x3d\ +\x38\xba\x92\x2c\x50\x80\x45\x08\xe6\x44\x4c\xa2\x97\xf3\x51\x2c\ +\x3e\xfe\xb3\x58\xdc\xff\xb3\x58\xcf\x2f\xa3\x33\xe0\xf5\x8e\x9a\ +\x98\x97\x49\x95\x27\x69\x9a\x3c\xf9\x2e\x45\x36\x82\xe4\xe7\x13\ +\x63\x9a\x99\x7a\x46\x5a\x4f\xb2\x58\x5c\x4f\x9a\x27\xa1\xc4\xdb\ +\xcf\xc9\x58\x3d\x19\x4d\x59\x25\x0c\x5d\x79\xe1\xe5\x24\x8e\xe9\ +\x59\xf2\xd5\x13\xd5\x5c\x44\x4a\xdc\x3f\x07\x33\x9c\x64\xe4\xcb\ +\x31\xc9\x44\xa6\x1d\x7a\xe1\xe0\xaf\xf5\x15\x33\x8b\x33\xd2\x8f\ +\x32\xa1\x5f\xbd\x19\xe0\xf4\x2c\x0e\x2c\xcb\x66\xa1\xf0\xdc\x48\ +\x83\xa6\xf2\x51\x6e\x36\x19\xc0\xe7\x9a\xb0\x73\x57\x2e\x1b\x13\ +\xe0\x2c\x28\x88\xee\xcd\x0a\x26\xf0\x9a\xfd\xf3\xc4\x4f\x6e\x4e\ +\x54\xb9\x58\xe0\xcd\x89\x22\x4b\xfe\x82\xb0\xf4\x5c\x88\x87\x45\ +\x09\x36\xe4\xd0\x83\xc5\xfc\x0b\x4a\xb2\xec\xc7\x2b\xed\x4e\xbc\ +\x35\x5c\xc5\xab\x87\xb3\xb8\x36\xac\x62\x36\xeb\xc7\xe3\xf3\x7e\ +\x9c\x57\xcb\x98\x57\xf3\xe8\x49\xff\xb6\x8a\xc5\x77\x41\xe4\xb9\ +\x78\x94\xdf\xf6\xd2\xe4\xfb\x6a\x03\x13\x57\xda\x14\x3c\xc5\x07\ +\x65\x0e\x6b\xd3\x08\xc9\xc9\x78\x2b\xfc\x24\x94\x26\xb9\x6c\x0a\ +\x99\xc9\xab\x62\x02\x18\x45\xc0\x56\xe6\x31\xce\x42\x87\x9c\x26\ +\xc6\x54\xb7\x17\xb2\x2e\xaa\x78\xfc\x78\x14\x4f\x1e\x9f\xc7\xf8\ +\xb4\x15\xa3\xcb\x71\x5c\x1c\x4f\xfd\x0d\x36\xf4\xf2\x06\x48\x8b\ +\x57\x21\x2a\x88\x00\x41\x8b\x8f\x8e\x50\x07\x85\xc6\x0f\x5e\xf2\ +\x6a\xb7\x3a\xd2\x81\x6f\x91\xc8\x76\xf0\x2a\x9e\x65\xa2\xf9\x65\ +\x15\xe3\xc5\x3c\xae\xbf\xbc\x1b\xbd\x21\x0b\x48\xc3\x18\x1e\xad\ +\xe3\xce\x77\x26\x31\x5b\xf1\x9a\x2c\xd9\x78\x2e\x19\x8b\x88\xd9\ +\x68\x1e\x97\x97\xb3\x18\xcb\xcd\x27\xd4\x89\xea\x86\x05\x05\xcb\ +\x22\x2f\xe5\x88\x70\xca\x45\x1b\x51\x3c\xdf\x6f\xa3\xce\xeb\x0d\ +\x25\xea\x0d\x7f\x13\x96\xef\x4f\x9d\x39\x9d\x7c\x79\x58\x99\xef\ +\xcd\x0d\x14\x98\xa9\x8e\x9f\x5c\x46\x9c\x1c\x1f\xc6\x5b\xfd\x6e\ +\xfc\xcd\xd7\x16\xf1\x0b\xd7\xe6\xf1\xd2\x79\x2b\xba\xa7\x5d\x99\ +\xa0\x8a\xfe\x4a\x3e\xc9\x6a\x5d\x58\xc4\x53\x7a\xc0\xf2\x74\xc8\ +\xb6\x6a\x52\xf1\x32\x0c\xbe\xb1\x95\x09\xc2\x54\x8f\x0e\xdb\x96\ +\x85\xa6\xf2\xd4\x6d\x9c\x7c\xbc\x68\x54\x3b\xe2\x4b\x5d\x9a\x57\ +\x0e\x3f\x1d\xd5\xa4\x43\xc6\xda\x77\x7b\x11\x96\x6d\xa5\x86\x24\ +\x92\x04\xdf\x71\x0e\xc3\x53\xe2\xea\x7c\xcd\x24\x35\xd0\xc7\x98\ +\xc0\x48\xa6\x49\x2c\x1d\x56\xa8\x71\xd2\x95\x56\x68\x1d\xbc\x72\ +\x69\x57\x70\x7b\xb4\x2d\x63\xfa\x5d\xe5\x0d\xd1\xd7\x13\x81\xa9\ +\x45\x16\xf9\x39\x1a\x9c\x78\xe9\x58\x3f\xb5\xc7\x35\x8e\xb6\x80\ +\x24\xa0\xc5\xc2\x0f\x4f\xad\xb1\xb0\xa4\xf3\xbb\xdd\xea\xc6\x01\ +\xdf\x57\xbb\xb6\x1b\xed\x6a\x14\x8f\xdf\xfd\x7e\x9c\x9f\x1c\xeb\ +\x7c\xec\xc4\xde\xf5\x9b\xd1\xee\xe6\xf9\x57\x54\x4b\x30\xae\xc3\ +\x26\x53\xc2\x82\x9a\xa7\xa6\x17\xd8\x42\x9f\x86\xed\xf4\xdb\x4c\ +\x35\xbe\x4d\xab\xf3\x00\x9e\xe5\xfd\x24\x39\x0d\x34\xf0\xd3\x06\ +\x9f\x74\xae\x3c\x0b\x9f\xc8\xf7\x3c\x62\xf1\xed\xe9\xb0\x39\xd7\ +\x74\xbd\x51\xff\xc6\xb9\xef\xf3\x5f\xd7\x84\xc5\x7c\x1a\x27\x4f\ +\xbe\x1d\xf7\x4f\xfe\x95\xfa\xa6\xef\xc6\xde\xd1\x85\xfa\xed\x7c\ +\x32\x36\x2f\xcb\x55\x54\x6b\x9e\x46\xd3\xf5\x47\xce\xe3\x11\x5f\ +\xe8\xe4\xb8\xa6\xab\x73\xf5\x02\xb8\xe8\xb9\xb1\x86\x4b\x3e\x8f\ +\xbd\xe4\xb3\xa8\x9d\x57\x55\x09\x74\x5a\x20\xaf\x83\xfc\x6a\x9c\ +\x0c\x1d\xd2\xc1\xd7\x49\x5f\x78\xd1\xa3\xc6\xf1\x93\xc1\x3a\x80\ +\xa3\x83\xe3\x85\x53\x56\xca\xe5\x8d\x42\xc2\x05\x84\x3b\x4c\xba\ +\xa4\x24\x4d\xbc\xca\x52\x64\xfa\xb6\x4c\x43\xbc\xae\xb0\x0a\x23\ +\x17\x5f\x7c\xf8\x12\x8c\xcf\xc6\x5a\xfd\x2a\x3e\x75\x5f\x72\x25\ +\xed\xb2\x6c\xa4\x59\x73\xd1\xd9\x98\x51\x62\xe8\xde\x40\x91\xe3\ +\x49\xa4\x58\xf2\x44\x3a\x1b\x3e\xcb\xe8\xf7\xba\xf1\xd2\x9b\xdd\ +\xb8\x76\x73\xa8\x6b\x77\x3b\x2e\x4e\x17\x31\x9e\x4c\x15\xdf\xd1\ +\x78\x60\x1a\x53\xe1\x3c\x81\xad\xe1\x96\x2e\xf1\xbc\xc0\x2e\xf5\ +\xc2\x8c\x00\x61\xc0\x75\x45\xa6\xb6\x03\xfa\xa5\xee\x26\xd2\x67\ +\xdb\x37\xab\xfd\x3a\x9d\xfb\x6f\x83\xb4\x86\x85\xa0\x0e\x6e\x1f\ +\x1e\x63\xf1\xe4\xfc\x2a\x26\x1a\xa3\x9c\x9e\x4c\xe3\xf4\xe1\x24\ +\x1e\x3f\x1a\xc5\xe8\x7c\xac\xf1\x38\x79\x2d\x62\xff\x60\x10\xaf\ +\xbf\x79\x14\x37\x6e\x5e\xb3\xdc\x4b\x8d\x2b\x78\x72\x8b\xcd\xc3\ +\x96\xbf\x1b\x2b\x31\xd2\x6f\xd3\x5f\x95\x43\xf6\x89\x79\x53\x92\ +\x6f\xfa\xc1\x57\xde\x75\x7f\xc8\x93\x5c\x28\xd5\xeb\xb7\xa3\x2b\ +\x3b\x75\xd4\xaf\x75\x35\x78\x99\x8d\x78\x9a\x8f\x57\x9a\x23\xb7\ +\xa4\x63\xac\xa3\xb1\xee\x7c\xb6\x8a\xaa\x7c\xb3\x8e\xf8\xb4\x07\ +\x0c\x38\x1d\xf8\xbb\xbe\x92\x7e\x55\xc7\x39\x36\x65\xec\xc5\x1b\ +\x1b\xd8\x4c\xf3\x6b\x18\x19\x0b\xe0\xa4\x3f\xaf\x78\xac\xc6\xbc\ +\x95\x40\xf5\xe9\xa7\xd2\x94\x56\x75\x4b\xff\x3b\x3c\xec\xc7\xd1\ +\x6b\xed\xb8\xf9\xa5\x7e\x74\x87\xeb\x98\x8c\xa5\x83\x5f\xef\x28\ +\x37\x6a\xc7\x7a\xc6\x78\x5e\xe9\x3c\xde\x41\x2e\xf9\xca\x31\x4e\ +\x73\x31\xd1\x29\xf5\x05\x71\xb1\x36\xfa\xc9\x39\x0c\xe1\x8a\x0e\ +\xb8\x8e\x45\x28\x41\xf9\x18\xdb\xd8\x53\x61\xf3\x23\x27\xa9\xc9\ +\xaf\x43\x1d\xae\x69\xb4\xe3\xa4\x5c\xd1\xb2\x82\x32\x5c\xaa\x70\ +\x13\xe6\x58\x58\x0b\xd8\x98\x2e\x8f\x1b\x54\x39\x47\x6b\x11\x99\ +\x3c\xe3\x61\xa9\xe5\xe4\x19\x03\x96\x61\x97\x9b\x38\x97\x9d\xf3\ +\x52\x72\x11\x7d\x65\x18\xf9\x22\x20\x5f\xe1\xfa\x6d\x15\x6e\x6b\ +\xc4\x73\xbe\x29\x4d\x5e\xc3\x44\xa1\xad\xc1\xa9\x03\xbe\xce\x54\ +\xf3\x33\x47\xda\xd9\x69\xc5\xb5\xeb\xbb\xb1\x77\xb8\x8a\xd3\xf3\ +\x8f\xe2\xc1\x83\x87\xf1\xe4\xe4\x54\x22\x96\x71\x78\x74\xe4\x31\ +\x3e\x75\xe6\xef\xb4\x39\xbf\xd4\xb6\x6e\xcf\x0d\x34\xd0\xc0\xa7\ +\x43\x73\xa6\x34\xd0\xc0\x8b\x83\x66\x43\xad\x81\x06\x1a\x68\xe0\ +\xaf\x28\xe4\x24\xe3\x0a\x6a\xfc\xca\xcf\xe9\x03\x2e\x27\x13\x40\ +\x1d\xfb\xe3\x03\xb2\x80\x5c\xac\x67\xd2\xa2\x49\xa7\xc2\x3c\x41\ +\xb1\x18\x9f\x46\x7c\xf8\x6f\x63\xf2\xf0\x83\xe8\xc5\x22\x5a\xbd\ +\x7e\xf4\x49\x41\x22\x26\x49\x4c\x96\xbc\x99\x50\x36\x10\x14\xd6\ +\xc1\x72\x98\x4d\x6f\x9e\x4a\x63\x23\xca\x61\x26\x72\x4c\xbc\x98\ +\x89\x93\x5e\xae\x4c\x96\x73\xd2\x9a\x0b\xd5\x0a\x64\xbc\x7e\xc9\ +\x9f\x61\x1d\xe4\xc9\x79\x1e\xa7\x49\xaf\x75\x49\x5a\xbd\x50\x5f\ +\x87\x37\x93\x3f\x13\x4b\xfa\x0d\x3d\xc3\x19\x5f\xf2\x66\x82\x5d\ +\xf2\xf7\xa6\x99\xf4\x6a\x89\x46\xd9\x34\xfb\x4e\x3d\x29\x63\xa5\ +\x89\xa2\x26\xfd\xf9\x0a\x3f\xc9\x29\x65\x74\xf9\xd9\x88\x61\xb3\ +\xcc\xf6\x10\xdf\x82\x0d\xb8\xd5\x66\x93\xc5\x4f\xfe\x10\x16\x1f\ +\x72\x17\xc2\xf1\x59\x34\xc8\x34\x9a\xe8\x2b\x7f\x64\x39\x8e\xcd\ +\x34\xf9\xe8\x96\xbc\xaa\x6f\xf9\x8b\xd5\x22\xe6\xa2\xc5\xaa\x1b\ +\xaf\x0d\xbb\xf1\xce\x5e\x3b\x5e\xdb\x9b\xc7\x6e\x67\x19\xa7\x17\ +\xfd\x38\x1d\xf7\x63\x56\x2d\xa2\x52\x7e\x6c\x36\xf1\xd4\x9a\xeb\ +\xd3\x26\x90\xad\xd2\x4c\xb6\xa7\x67\xb8\xe4\x69\x5b\xb0\x90\x40\ +\xbc\x68\xc9\xe0\xf9\x6b\xa2\x57\xd3\x57\xdb\x57\xe9\x98\x3c\x3b\ +\xb2\xf8\x89\x96\x76\x24\x52\xd6\x91\xec\x22\x3a\x0b\x7a\x6c\x34\ +\x50\x77\xbc\xde\xf2\xec\xf8\x32\xee\x7d\x74\x11\x27\x0f\xa7\x62\ +\x5c\x7a\xc1\xc6\x99\xb5\xbd\x55\x17\xbc\xda\x51\xac\xae\x83\x3a\ +\x8f\xcc\x4f\xf2\xa9\x23\x64\x97\x45\x35\x12\xa0\x7e\x8b\x30\xbc\ +\x2a\x33\xe1\xcb\xb3\x09\xf7\xcc\xc6\xb5\x97\x0f\xa3\xd7\xdd\x89\ +\x6b\x6f\x0c\xe2\xe2\x64\x12\xa7\xf7\xc7\xfe\x96\x06\x0b\x2c\x2c\ +\x56\xcd\x27\x0b\x7f\x2f\x8d\xcd\x4d\xb7\x65\xe4\x97\xb6\x85\x12\ +\x2c\xc2\xe4\x06\x19\x8b\x38\xd4\x4b\x86\xd3\x09\x77\x3b\x61\xb3\ +\x85\xf4\x4a\x40\x9d\xa1\x8b\x64\xe4\xc2\x85\xb0\x35\x4f\x7a\xaa\ +\x2e\x54\x90\xc9\xa8\x1b\x4f\x2e\x7a\xb1\xbe\xdc\x89\x2f\x88\xf6\ +\x9b\x6f\x9d\xc4\xcf\xa9\x0c\x9d\xb3\xf0\x66\x5a\xb7\xbd\x8c\xc1\ +\x0a\xee\xb6\xca\xc4\x42\x18\x85\xc3\x00\xa8\x24\x99\xe0\x26\x61\ +\x10\xc8\xb5\xcd\xe1\x84\x8f\x48\xfe\xe9\xdb\x66\xfe\x25\x6f\x26\ +\xe7\x50\xd2\xc0\x6b\x7e\x18\xa0\x98\x31\xe5\x17\x7f\x13\x07\x8d\ +\xca\x74\x1c\x69\x4b\x5c\x01\xe7\xb4\x45\x73\xfb\xc1\x2f\x0e\x7c\ +\x03\xc4\x49\x07\xea\x0a\x5d\x32\x2c\xf3\xd5\xe7\x24\xd7\x05\x11\ +\x38\xff\xeb\x3a\xaf\xd3\xc1\xe8\x90\xe2\xc8\x93\x63\x12\x9e\x86\ +\x8d\x1e\x72\xdb\x65\x4e\x62\x86\x6b\xe7\xbc\xcc\xe7\x66\x98\xe2\ +\xc8\x5b\xf4\x7c\xb2\x83\xb6\x2c\xdf\xe7\x27\xe7\x96\xea\x9b\xfc\ +\xc5\xd8\xee\xf0\x15\x49\x52\x48\xba\x79\x17\xd1\x51\x9d\xef\x1d\ +\xee\xc6\xd1\xf5\x7e\x8c\x1f\x3d\x88\xd1\xc3\xbb\x31\x39\x39\x57\ +\x5b\xdf\x89\xfe\xd1\xbe\xe5\x9a\x1f\x7b\x3a\x33\x82\xb5\x6e\xc5\ +\xd5\xb0\x8d\x0b\x4a\xd2\xa7\x61\x23\xa3\xb8\xcf\x0a\x35\xef\x76\ +\xfa\xe7\xf9\x0d\x34\xf0\xd3\x0a\x9f\xd4\xc6\xeb\x73\xa2\x06\xf8\ +\x6a\xe7\xb8\x67\x13\x96\x13\xf3\x29\x72\xa1\xe1\x97\x6b\x0e\xd7\ +\x76\xf0\xb3\xb3\xc7\x71\x72\xf2\xfb\x71\x7c\xf9\x2f\xa3\xd5\xbf\ +\x13\xc3\x83\xb9\xae\xff\xba\xb4\xa8\x5f\xe1\xfa\xb0\x5c\x57\xea\ +\xef\xf9\xd6\x2a\x1b\xf9\xb9\x49\xc6\xf5\x8e\x8b\x8e\x7f\xba\x26\ +\xf9\x95\x84\x6c\x41\x09\xcf\x27\x4b\xf0\x45\xf3\x85\x55\x61\xf1\ +\xfa\xa6\x21\xd2\x48\x66\x6a\xc3\x35\x53\x49\xe0\xe1\xcf\x05\x25\ +\x55\x93\x5a\x26\x18\xaf\xf9\x1d\x2e\xbe\x0e\xbe\xde\xc2\xb6\xb2\ +\x4c\x47\xe8\x5a\x48\x7f\x40\x18\x87\xf4\x1a\x44\x37\x53\xf6\x89\ +\x74\x38\xce\x5b\x3c\x79\x23\x45\xd2\xe9\xbb\x09\x7b\x0c\x84\x6c\ +\x31\x65\x98\x52\x64\xd6\x8e\xa3\x6f\xa5\xcf\x25\x8c\x4c\xfc\x85\ +\x9c\x18\x79\x19\x80\x2e\xcf\x51\x81\xab\x3f\x9e\xb1\x09\x23\x5b\ +\x56\xf2\x79\xa5\x23\xaf\x9c\x23\xcc\x0d\x33\xb8\x19\x6f\x2f\x5c\ +\xf4\xe2\xb5\xb7\x07\x71\xeb\xb5\xdd\xd8\xbd\xb6\x8c\x8b\xb3\x2a\ +\x4e\xcf\xe6\xaa\xa1\xae\x5f\xdf\x3c\x3a\x9f\x7a\x83\x87\xcd\x4c\ +\xbe\xb3\xda\xed\x75\x5c\x8d\xa4\xb7\x51\x5c\xde\x2c\x8f\xc1\x61\ +\x31\xb8\x1e\x52\x79\x51\x64\x6b\xfa\x05\xea\x87\x44\x09\xa4\x43\ +\x46\x31\x39\x55\x20\x9f\xfa\x2a\xbe\x22\xb9\xb1\x8d\x98\x4e\xab\ +\xa3\xb1\xc3\xcc\xdf\x25\x3b\x7d\x34\x8d\xd3\xc7\xd3\xb8\xb8\x94\ +\x6e\x1a\xcb\x74\xbb\xad\x78\xe9\xa5\x1d\xf5\x35\xbb\xb1\x56\x7f\ +\x32\xbe\x98\xc5\x64\xcc\xf8\x93\xf1\x2b\xf9\x16\xd9\x3e\x6e\xf5\ +\xcf\x14\x24\xff\xb2\x9f\x98\x68\x46\xfc\xa4\xbf\xc7\x3a\xd2\x95\ +\x87\xb1\xbb\x3d\x8d\x5f\x3a\xfd\xe8\x0e\x3a\xaa\xbe\x65\xcc\x79\ +\xe2\x4b\xf1\xbc\xd2\x91\xf1\xa9\xeb\x49\xc6\xf7\x13\x5f\xe8\x4e\ +\x99\x5d\x4e\x49\xc6\x04\x2e\x4f\x71\x0e\x88\x26\x1f\x1c\xdf\x37\ +\x92\xcd\x35\x66\xe5\xc9\x36\x6e\x48\x63\x1c\xe6\x8a\x57\x1c\xdf\ +\x4b\x9b\xa9\x4e\xf9\x46\xda\x0c\x27\xab\x28\x4f\x74\xe7\xf5\xe1\ +\xfb\x37\x5b\x71\xf0\x72\x3b\x76\x0e\x3a\x51\x85\xc6\x76\x13\xf5\ +\xc7\x8b\xb6\x9f\x82\x8a\x4a\x63\xa8\xb9\xda\x88\xe4\x30\x3e\x23\ +\x7f\xda\x89\x15\x92\x67\xdd\x8a\x4f\x9c\x41\xed\x8b\xf2\x63\x07\ +\xfe\x57\x4e\x65\xc1\x81\x12\x25\xbe\x1a\x5c\xdf\xf8\xfc\x1c\x89\ +\x48\x84\x3a\x52\x5e\x1d\x9f\x07\xb7\x03\xf8\x20\x9b\x88\x87\x22\ +\xc4\xd5\x07\x68\x75\x64\xf1\xa1\x38\x5e\x0e\xf1\x75\xc3\x91\x63\ +\xbc\x8d\x4f\x14\x62\x3d\x27\x22\x04\x81\x43\xad\xae\x75\xcd\xb8\ +\x0d\x8f\x48\x9b\x30\x72\x90\xeb\xb0\x8e\x1b\x39\x25\xce\xba\x67\ +\x3b\xb6\xce\xd0\x24\x20\x79\xfc\xb7\x79\xe1\xe3\x29\xd9\x7a\x63\ +\xad\x56\x80\xf1\x4e\x3e\x39\x9a\xdf\x5a\xe3\x5c\xa6\xee\x3b\x9a\ +\xbf\x1c\x5c\x53\x9d\xee\x6a\x8c\x3e\x79\x37\x1e\x3f\x3c\xf6\x37\ +\xd6\x48\x77\x78\x70\xd3\xf5\xcd\x94\x86\x74\x34\xdb\x94\xe7\x91\ +\xdf\x16\x3c\x1d\x6a\xa0\x81\x06\x9a\xb3\xa2\x81\x06\x5e\x24\x34\ +\x1b\x6a\x0d\x34\xd0\x40\x03\x2f\x1a\x72\x2e\x91\xfe\x4f\x00\xf5\ +\x80\x67\x7b\xe0\xf3\xc3\xb4\x6d\x6c\x9b\xf3\xc7\x83\x67\x55\x66\ +\x92\xb2\x5a\xb7\x73\xf3\xe5\xec\x5e\xcc\x3e\xfc\xa3\x58\x9d\x3d\ +\x28\xaf\x7c\xe9\x44\xb7\x9e\x20\x7a\x32\xaa\x49\x92\x27\xeb\x4c\ +\xa8\xe5\x33\xd3\xf1\x22\x0e\x7e\x99\x2c\x32\x29\x86\xe6\xf8\x7a\ +\x32\x86\xcb\x85\x86\x7a\xc1\x3c\x27\x75\xe2\xc1\xf7\x64\x4d\x79\ +\x70\x20\x4d\x49\xa7\xa9\x94\x7d\x26\x5f\xb9\x60\x5d\xe8\xf0\xf9\ +\x9f\x3f\xcb\x42\x3f\xf3\xe4\x64\xcf\x7c\xce\x0b\x15\x79\x22\x2d\ +\x27\xf0\xad\x7a\xc2\x4e\x1e\xe8\x48\x58\x0e\x9c\x8d\x1c\x2f\xa0\ +\x0b\x4f\x97\x71\xa4\x73\xb8\xe8\x9f\x9b\x6b\x38\x4d\x1e\x71\xc4\ +\xb1\xb1\x62\x9a\x4a\xb5\x2e\x1b\x35\xe4\xc3\x53\x6c\xf0\xc8\x26\ +\xc8\xa1\x2c\xe6\x97\xef\x3b\xa8\x17\xa9\x9f\x79\x09\xe3\x8b\xcf\ +\x4f\x4b\x91\xbd\xf8\xe6\x2c\x0a\xc8\xaf\x20\xc8\x26\xdc\x9d\xdd\ +\x59\x75\xe2\xd5\x6e\x2b\xbe\xb4\xb3\x88\x57\x76\xe6\xae\xc8\x8b\ +\xe9\x6e\x5c\x4e\xbb\x31\x99\x2f\xfd\x3a\xc3\xd6\xba\x8a\xae\x92\ +\x74\x3b\x7c\xa7\xc3\x26\xb3\x5d\x72\x52\xac\xc9\x30\x79\x60\x36\ +\x68\x44\x22\xbe\x40\x3d\x67\x77\x7d\x24\x49\xb4\xd4\xa9\x34\x9a\ +\x14\x08\x98\x31\xd3\x40\x64\xa1\xa1\xc6\x73\x8e\x4e\xb8\x2d\x5b\ +\xf0\xbd\x98\x99\xed\xc7\x9d\xe2\xbd\x5e\xdb\xbb\x18\x9e\x7c\x9b\ +\x5b\x80\x6c\x25\x72\x5b\x11\x01\x7b\x18\x24\xc3\x7a\x52\x65\xe2\ +\x97\x55\x83\x57\xf0\x11\x4e\x3e\xe8\xc2\xc7\xad\x38\x3d\xb9\x8c\ +\x2e\xaf\x97\x7c\x69\x10\xed\xde\x20\x76\xaf\x77\xe2\xe1\xbb\xa3\ +\xb8\x38\x9e\x88\x97\x32\x60\xdf\xd2\x8e\xe4\xbb\x2d\x90\x8d\x64\ +\x90\x6f\xbe\xea\x30\xfd\xba\x8e\x73\xa3\x53\xf5\x04\x2e\x19\xae\ +\x23\xb7\x0b\x12\xa5\x0e\xd8\x94\x33\x34\x17\x3c\x3a\x31\xa0\x44\ +\xcb\x2a\xce\x2e\x3a\xf1\xe4\x6c\x10\xdd\xcb\xfd\xf8\xd6\x8d\x55\ +\xfc\xc6\xad\x51\x7c\x65\xd9\x8a\xdd\x8b\x6e\x74\x54\x5f\x98\x61\ +\xb8\x66\xdb\xcd\x42\x90\x50\xec\x60\x8a\xa5\x5a\x3f\xc2\x46\xc0\ +\x37\x31\xfa\x39\x57\x93\xf1\x58\x3b\x81\xea\x7a\x40\x0e\x34\x45\ +\xc1\xeb\x30\x80\x67\x1c\x9e\x94\xe4\x3f\x24\x87\xea\x70\x12\x1d\ +\x2e\x90\xfc\x4f\x21\xf6\xfc\xdd\x9a\x02\xd6\x69\x13\xcc\x72\x00\ +\x34\x9f\xba\x08\xb9\xe8\xa2\xb0\x6c\x9e\xe7\x58\xf1\xa9\x7b\x68\ +\x76\xaa\x03\xf9\x30\x66\x5b\x90\x43\x08\xb8\x04\x65\x39\x21\xa7\ +\x4f\x98\x38\x6c\x90\x0a\x50\x66\xa2\x1d\xe9\x30\xb8\x35\x2e\xfc\ +\x79\xed\x70\x4a\x6b\x6a\x36\x81\x31\xd7\x2d\x3e\x3c\x65\x93\x9c\ +\xf6\x21\x1c\xe9\xb6\x0c\x77\xfc\xb3\x58\x64\xfd\x68\x23\x7c\x8b\ +\x66\x27\xae\xf1\x7d\xb5\x61\xc4\xc5\xbd\xdb\xf1\xe4\xe3\x3b\x6a\ +\x73\xed\x38\x78\xf9\x15\xf3\x52\x36\x7f\x8f\xc6\xa0\xb4\x08\xab\ +\x33\x06\xea\x30\xfe\x36\x14\xd6\x1a\x8c\x3f\xcb\xf3\x69\x00\xef\ +\xb3\xfc\x75\xf8\x59\xbf\x81\x06\x7e\x1a\xe1\x79\xe7\xd5\xf3\xc0\ +\x3c\x85\xf9\xb9\xfc\xdb\x82\xb6\x79\xf2\x44\xf6\x51\x34\xfa\x1c\ +\x36\x46\xaa\x6a\x16\xc7\x8f\xdf\x8b\x27\xe7\xff\x22\xa6\xeb\x3f\ +\x8d\xee\xee\x59\xf4\x06\x74\x60\xbc\x96\x50\xd7\x94\x96\xae\x75\ +\x8c\x1d\xb8\x51\x83\xa7\xda\xb9\xf6\x31\x46\xe2\xbd\x88\xba\xde\ +\x23\x87\xa7\xd0\x88\xaf\xfb\xb1\x7c\x2d\x30\x57\x2a\x5f\xa8\x9c\ +\x6b\x5e\xc1\xe4\x9c\x06\x67\x25\x0a\x5e\x78\xe4\x91\x26\xaf\xcc\ +\x57\x71\x8e\xaf\xd3\x39\x8e\x51\x98\x38\x10\x0f\xdd\x34\x2e\x8b\ +\x4a\x09\xad\x84\xf3\x88\x2f\x7a\x09\x90\xae\xe6\xe0\x1a\x4b\xff\ +\xcc\x06\x1a\xb2\xeb\x6f\x9e\xf9\x09\x25\x31\x72\x6d\xcf\x8d\xb3\ +\x8c\xab\x37\xda\x16\x2a\x23\x61\x5e\xd9\xa7\xae\x37\xc3\x8c\x9d\ +\xe4\xd8\x44\x63\x6c\xc4\x78\x48\xe6\xf3\x86\x9a\x86\x3e\xb9\x79\ +\x26\x9f\x8d\xb3\xd9\x8c\xf1\x93\xc6\x4e\xb2\x53\x45\xda\x15\x37\ +\xf1\x70\xdd\x25\xff\x56\x0c\x76\xdb\x71\xe3\x95\xa1\xbf\xad\xd6\ +\x6e\xaf\x62\x36\x59\xc7\x74\xcc\xfd\x23\x1d\xdb\x79\x36\x5e\xc4\ +\x74\x3a\x71\xfd\x50\x22\x5e\x77\x48\xc1\xdd\xf7\xa7\x01\xa4\xa7\ +\xea\xc1\x7d\x17\x3c\x59\x2e\xf7\x61\x8a\xa7\x7f\xa8\xfb\x97\x74\ +\x62\x11\xd0\x7d\x83\xe6\x38\x58\x3e\x6d\x47\x38\xfd\x2d\x6c\x1c\ +\xb0\x53\x3e\x75\x24\x29\xcb\xb6\x5f\xeb\x78\x39\x9a\x79\xf3\xef\ +\x09\x4f\xad\x3d\x3c\x8f\xf1\x88\x76\xc2\x30\x63\x19\xb3\xf9\x24\ +\x26\xb3\xcb\xa8\xa4\x3f\x4f\x93\x95\x0a\x70\xbf\x7c\x25\x13\x5f\ +\xce\x6d\x35\x37\x2b\x18\x6b\x22\xc3\x75\xaf\xfc\xfc\xca\x45\xe9\ +\xcc\x86\x5d\x7f\xd0\x8d\xbe\xfa\x32\xc6\x6a\x6c\x9e\xcd\x46\x8c\ +\x2d\xcb\x06\x18\x65\x94\x00\xab\xee\x32\xa6\x6c\xe7\x51\xca\x8d\ +\x89\xa8\x2b\xc6\xaf\xae\x5f\xd9\xa9\x1e\x5b\x51\x9e\xf9\x94\x57\ +\x66\x4b\x0e\xe3\x60\x78\x55\xa9\x3c\x8d\x56\x4d\xa5\xc7\x54\x75\ +\xac\xfa\x5b\x95\x6f\xa5\xb5\x7a\xd2\x47\xfd\xe9\xf0\x30\xa2\xbf\ +\xaf\x3a\xd2\xe0\x76\xb9\x50\x3e\xe2\xed\x68\xbc\xe5\x2e\x58\xe5\ +\x21\x5f\xb7\x33\xf2\x95\xef\xa7\xea\x8b\x6e\x1e\x18\xe8\x7c\x43\ +\x69\x64\x9a\x58\xa2\x13\x6c\x98\xf4\xc5\x4b\x7b\xce\x48\xe9\xc8\ +\x4f\x38\x1c\xa5\xea\xb7\xe8\xd4\x37\x11\xfa\x93\xb7\x99\x1c\x70\ +\xd8\xbe\x53\xe4\xd1\x71\x57\xa1\xb4\x1f\xa1\x52\x0f\x4e\x82\xfd\ +\x6a\x1e\xd1\x33\x9e\x88\xe4\x31\x6c\xe4\xa8\xad\x91\x0e\x46\x91\ +\xea\x52\x38\x60\x0f\xbf\x38\xff\x0b\xdd\x01\x85\x6c\x0c\x9f\xbd\ +\x19\x03\x3f\xed\xce\xe9\x92\x9a\x65\xd6\x8f\xb6\x4e\x1a\x39\x62\ +\x88\x48\x9d\xd3\xee\x90\x7c\xc3\x21\xd7\x2f\xc5\x51\xe7\x18\x9b\ +\x6f\x17\xdb\x2c\xc8\xa7\x0a\xcc\xcf\x78\x69\x1d\x3b\xaa\xcf\x6b\ +\xd7\xfa\xd1\xdf\x99\xc4\xf1\xd9\x47\x71\xef\xee\xdd\x18\x4d\x4e\ +\x63\xd0\xdb\x8b\xbd\xdd\x43\xa9\x82\x5c\xa5\xf6\x1f\x2d\xae\x4a\ +\x98\xf0\x6c\xb8\x81\x06\x3e\xdf\xd0\x9c\x11\x0d\x34\xf0\xe2\xa0\ +\xd9\x50\x6b\xa0\x81\x06\x1a\xf8\x71\x80\x51\xff\x5f\xf0\x88\x64\ +\x5b\x3c\xf8\xd3\xd9\xd5\x0a\x78\xfa\x51\xe2\xae\xc2\x3f\x0e\x6c\ +\xa7\xcc\xfc\x34\x31\x61\x53\x42\x81\xc5\x83\x1f\xc4\xe2\xc3\x3f\ +\x8c\xe5\xe8\x3c\xba\x83\x7e\xf4\x34\x81\x21\x9e\xb5\x1c\x26\x50\ +\x9b\x4d\x26\x4f\xa2\x99\x80\x83\xb3\x51\xc5\x84\x5a\x4c\x4c\xf4\ +\x56\xe5\xd5\x68\xcc\xbc\x3c\x3b\x16\x8d\xc9\x16\xbc\x9e\x54\x23\ +\x0c\x2d\x98\x80\x09\xaf\xd3\x31\x19\xe3\xc7\x04\xd2\xf1\xe9\x1c\ +\xd6\x64\xcb\x69\x0a\x8f\x7d\x7b\x45\x56\x1d\x27\xde\x9c\xfc\x81\ +\x23\x97\xc9\x5c\xd2\xc9\xdb\xfa\xa0\x43\xd1\x9f\x75\xaa\x5a\xc7\ +\x2c\x5f\xd2\xeb\x8d\xb4\x8d\x6f\xdd\xe1\x83\xb6\xd6\x04\x9e\xb0\ +\x26\x81\x7e\x6a\x49\xb8\x5c\xd2\x32\xbc\x59\x5c\x61\xe3\x65\xe3\ +\x8b\x6e\x59\xc2\x6b\x67\xf9\x64\x5f\xe2\x8b\xae\xf5\x66\x8d\x71\ +\xf8\xb0\x9f\xe3\x54\x32\x68\x92\x37\x13\x3f\x77\x4e\x2b\x3a\x0e\ +\x57\x83\x78\x6b\x77\x1d\xaf\xf7\x17\xb1\xd7\x5d\x44\xa7\x5a\xc7\ +\xe5\x78\x10\xe7\x55\xd7\x4f\xac\x2d\x57\x55\xb4\x17\x5e\xd6\x71\ +\xa5\x4b\x04\x66\x48\x99\x76\x12\x22\x60\xd1\x41\x39\x59\x47\x98\ +\xd0\x27\x69\x02\xe1\x36\xbd\xe3\xcd\x6e\x39\x96\x29\x47\x1b\x21\ +\x6d\x4d\x21\x9f\x9c\x9f\x0b\x91\xef\x3a\x45\x96\xca\xc5\x13\x65\ +\x52\x2a\x9f\xea\x9b\x2d\xb2\x7e\x8b\xcc\x14\x81\x4e\x24\x95\x2c\ +\xe8\x72\x75\xd9\xb9\x8b\x58\x96\x72\xbc\xeb\x52\x8e\xc5\x1a\x78\ +\xb2\x9d\x42\x6b\xc7\xec\x6c\x15\xc7\xe7\x27\x12\xd7\x89\xa3\x1b\ +\xbd\x38\x3c\xda\x8d\x35\x4f\xf2\x7d\x5c\xc5\x6c\xce\x77\xaf\xd8\ +\x40\xa6\x1e\x24\x47\xf9\x73\xf7\xbb\xdb\x89\x17\x7a\x54\xc7\xf3\ +\x5c\xf4\x71\xdd\x11\x4f\x3e\xd4\x33\xf5\x49\xdd\xe0\x97\x32\xd9\ +\xe9\xcf\x83\x84\x20\x2c\xd2\xf5\x64\x80\x9e\x94\x9a\x4c\xdb\x31\ +\x3a\x1f\xc6\xf8\x74\x3f\x5e\xed\xcf\xe3\x97\xae\xcb\xed\x4f\xe2\ +\x4d\xf1\x77\x2f\x86\x4e\xdb\x6f\xf3\x3a\x48\xa5\x20\xbd\x0a\xca\ +\x82\x9a\x6b\x0b\x1b\x62\x48\xf1\x5e\xd1\x38\x27\x4d\x15\x14\x9a\ +\xb1\xa4\x67\xa0\xf8\xa4\x83\xee\xa0\x02\x0e\x97\x94\x45\x1e\xb4\ +\x5c\xe2\x28\x34\xa1\x6c\xf2\xb0\xdc\x68\xdf\x2e\xe9\x6c\xb8\xc3\ +\x03\x7f\xd2\xf2\x3b\x19\x99\xce\x0c\x0a\x28\x16\x1c\x9a\x7e\x68\ +\x65\xa0\x30\x84\xa9\x7b\x57\x1e\x34\x6c\x85\x5e\xd4\x99\x1c\xf6\ +\x57\xf9\xeb\xb6\xe2\x73\x8e\xb0\x2a\x89\x38\xbf\xf6\x0c\xbc\xa4\ +\x53\x8d\x28\x9e\x7f\xf9\x51\x0f\x10\x9c\x2f\x62\x89\x17\x46\x96\ +\x1c\xb0\x9d\xc2\x6e\xd7\x1b\x1a\xba\xa7\x2e\xe9\x84\x6f\xc9\xa0\ +\x0d\x27\x29\xd3\xc1\x62\x9d\xe4\x7c\xce\x72\xde\x3b\x8e\xd7\x95\ +\x4a\x50\xa7\x96\x47\x59\x17\x50\x62\x38\xd8\x51\xfb\xdb\x57\xbb\ +\xba\x8c\xf3\xbb\xb7\xe3\xf2\xd1\x79\x1c\x1c\xdd\x8c\xce\xee\x30\ +\x2a\x5d\x00\x48\xb7\x79\x5a\x8d\x04\x35\x80\x6f\x87\x05\x96\x8d\ +\x5f\x1c\x69\xa0\x3d\xc3\xf6\xa3\xc1\x4f\x94\xb8\x81\x06\xfe\x9a\ +\x81\x4f\x68\xc1\xa7\xb5\x7b\xe2\xb6\xe3\x39\xc9\xea\xf3\xf3\xd9\ +\x74\x3e\x01\xf3\x6a\x57\x43\x86\xf2\x95\x8b\x0b\xf5\x47\x5d\x5d\ +\x1b\x47\x93\x93\xb8\xf7\xe0\xf7\xe2\x74\xf4\xaf\x22\x76\xde\x8d\ +\xc1\xce\xa4\x9c\xf7\x5c\x2b\xe8\xff\xd5\x9f\xeb\x7a\xe0\x6f\x73\ +\x2e\x13\x57\x2f\x24\x49\xba\xde\xe8\x42\xe4\xef\x5e\xea\xfa\xe7\ +\x85\x6a\x5f\xdb\xca\xb5\x11\x9f\x3e\xb3\x56\x90\xeb\x11\x21\xc9\ +\x2d\x57\xb1\x12\x57\xae\x5f\xf8\x5c\x87\xcb\xc5\x2d\xaf\xbb\x46\ +\x89\xc9\x6b\x24\x69\xe4\xa7\x23\x82\x6b\x1c\x71\xd2\x86\xbc\xd0\ +\xd9\x11\x09\xa4\x4b\x5f\x72\x9d\x1f\xf1\x4e\xe6\x98\x1c\xc7\xa8\ +\xef\xb6\x9e\x39\xfe\xe0\xf2\x9e\x1b\x68\xc9\xc7\xe5\x3b\x37\xd3\ +\x92\x0e\x2d\x79\x8a\x13\x01\xba\xcc\x13\x73\x9e\x92\xd2\xb5\x57\ +\xff\x58\xa8\x2c\xf6\xe5\x34\xdc\xf1\x46\xda\xb2\xd0\xf8\xe6\x17\ +\x4f\xac\xe5\xf7\xb3\xd0\x2b\xe3\xc1\xab\x65\x25\x27\x5b\x57\xf4\ +\x71\x1a\x23\x5c\xef\xc5\xad\xd7\xfa\xb1\xbb\xd7\xe7\x32\xee\x8d\ +\x2a\x36\x8d\xe8\x03\x79\xd5\xf3\x6c\x3c\x8b\xf9\x74\xee\xfe\xdf\ +\x7d\x1f\xaf\xb4\x46\x5f\x85\xa9\x8e\x1c\x0f\x53\x4f\xca\x40\x04\ +\x97\x4b\x61\x70\xe2\x01\xdb\x83\xb2\xe1\x50\xc6\x96\xca\x3a\x03\ +\xdc\xcc\x84\xbb\xe6\xf0\x2d\x8f\x44\xc4\x52\xd7\xe0\x6d\xe9\x51\ +\xc5\x98\x27\xd6\x4e\xc6\xf1\xf0\xde\x65\x3c\xb8\x73\x2a\x77\xee\ +\xef\xc1\x11\xc7\x6b\x1b\x79\x8a\x8c\x9b\xb8\x12\x52\x86\xb3\xd1\ +\xc1\x3f\xc2\x28\x09\x09\x5d\x4b\x39\x70\x6c\x58\x2e\xf8\xde\xaf\ +\xfe\xdd\x6e\x3b\x86\x3b\xfd\x18\x0e\x87\x7e\x05\xa6\x5f\xc1\x38\ +\xc1\xae\x6a\x87\xa4\x91\x6d\x65\x05\xf1\x66\x39\x52\x2e\x3e\x6d\ +\x26\xe5\x2e\x3c\x86\xc2\x67\x7c\x25\xdd\x66\x6c\xca\xf1\x0d\x61\ +\xfa\x50\xd9\x4a\xf1\xe4\xa9\xea\xd0\xd8\x4b\xfe\x54\xf9\xc8\xf9\ +\xa6\x35\xc9\x68\x77\x3b\xd1\xdf\xd1\x98\x6a\x67\xad\xb9\x89\xba\ +\x59\xfa\xd9\x95\xc6\x1b\x3c\xd1\x2f\xa3\xf5\x54\x7f\x1d\x8d\xe7\ +\xfc\xaa\x75\x32\x95\xde\x06\x2b\x90\xa8\xfb\x59\xc6\x27\xf6\x69\ +\xa5\xbc\xca\x93\x91\x8e\xe2\x14\x86\xc2\x8f\xf3\x91\x53\xa3\xa6\ +\xd8\x6e\x96\x93\x65\xbb\x0a\x43\xc2\x60\xe4\x59\xe8\x9c\x17\x90\ +\x0a\x3f\xf9\x3f\x95\x36\xd9\xf3\x00\xcd\xe9\x8a\xdd\x52\x00\xc7\ +\x2b\x1e\x42\xe6\x01\x17\x8a\x3c\x7e\xd0\x6a\xbf\xc4\x99\xd7\x68\ +\x9e\x85\x86\x12\x97\xe5\xc9\xb4\x86\x52\x40\x9f\x11\x9c\x93\x72\ +\x2e\xbd\x82\xc4\xf8\x55\x8e\x12\x82\x75\xf2\x26\x29\x53\x0b\x9f\ +\xea\x12\x8a\x64\x3b\x7f\xd5\x9b\xc7\x46\x94\x53\x71\xa6\x2b\x42\ +\xc7\xfc\x09\xf7\x13\x6b\x79\xe2\x89\x07\xf9\xaa\x07\x6c\x55\xf2\ +\xe5\x65\xac\xbc\x62\x75\xad\x79\xca\xce\xfe\xc2\x4f\xac\xad\xba\ +\x27\xf1\xf0\xd1\x07\x71\x76\xfe\xd8\x69\x87\xc3\xa3\xe8\xa9\xf2\ +\xe1\xc7\xce\x59\x86\xd4\xcd\xf5\xb4\x81\x6d\xbc\x81\x06\x3e\xbf\ +\xd0\x9c\x09\x0d\x34\xf0\xe2\xa0\xd9\x50\x6b\xa0\x81\x06\x1a\xf8\ +\x71\xe1\x79\x23\x12\xc6\xf1\x9f\x15\x9e\x93\xfe\x59\xd2\xa7\x0f\ +\x7a\x5e\xdc\x90\x68\xa3\xb6\x10\x16\x72\x1c\xd6\xc4\x86\x77\xab\ +\xcc\x3e\xfa\x76\x4c\xdf\xff\xc3\x68\x55\xb3\xe8\xf5\xfb\x39\xcd\ +\xd4\x04\x89\xc5\x15\x26\x4a\x3c\x71\xc1\x4a\x84\x37\xd0\xbc\x70\ +\xc0\xe4\x28\x27\x48\x9e\x94\x8b\xcf\xaf\x26\x12\x0f\x8b\x27\x5e\ +\x20\x77\xda\xe4\xf5\x64\x5d\x61\xf8\x98\x8e\x25\xae\x74\x4e\x0a\ +\x6f\xfa\x3a\xda\xe5\xc4\x94\x78\xca\x0f\x13\x0a\x25\x5f\xfd\xa4\ +\x1a\x74\xa7\xf5\x42\x40\xc1\xa1\x3b\x2f\x68\x0a\x3b\xff\x95\x9f\ +\x4a\xcb\x45\x7b\x64\xca\x81\x9b\x86\x53\x39\xec\x28\x27\x3e\x69\ +\x55\x5e\x26\xf3\xc8\x35\xbf\x7c\x4f\xd6\x59\x00\x10\x7d\x91\xe9\ +\x98\xe8\x65\x7a\x16\xd8\x53\xae\x27\xbd\x4a\x63\x9f\x34\xd2\xc5\ +\x0b\x0f\xd8\x11\x1d\x1d\xef\xe2\xa4\xce\xe4\x41\x71\x6a\xfd\x9f\ +\xf1\xb7\xf1\xcd\x02\x94\xf2\xe9\x70\xc7\xb6\x68\x73\xbe\x97\xb1\ +\x1c\xc6\xf5\x4e\x2f\xbe\xd0\x5d\xc4\x51\x7f\x11\xd7\xba\xcb\xe8\ +\x55\xeb\x18\xcd\x77\x62\x32\xef\xc4\x54\x3a\xce\x97\xf3\x68\x53\ +\x3e\x89\xe3\xf5\x52\x80\x27\xa6\xc8\x46\xa6\x7c\x89\xf7\x3c\x95\ +\xc5\x2b\xd3\x53\x49\x39\xfe\xb5\x9e\x72\x62\x2c\x35\x93\x84\xfc\ +\x8b\x56\x8e\x8a\xf0\x24\x17\xf9\x00\x64\x39\x6f\xbe\xe0\x3b\x5f\ +\xfd\xb1\x9b\x0b\x04\xbf\x3c\x1d\x1c\xef\xc5\x19\x11\x50\x88\xb6\ +\x20\x0f\x7b\x62\x5f\x95\x40\x34\x74\x96\x53\x60\xa5\x49\xb8\xeb\ +\x13\x65\x94\x8e\x8d\xb0\x58\x77\x63\x7a\x3a\x8d\xb3\x93\x8b\x58\ +\x54\x11\xc3\xbd\x76\x1c\xdd\x1c\xa8\x4a\xab\x38\xbf\x23\xf6\x4a\ +\x44\x36\x80\x24\x80\x3b\xa3\x59\xcc\xc1\xa6\xf5\x26\x1a\x78\x7d\ +\x57\x35\x75\x97\x0b\x99\x25\x4f\x2b\x83\x4e\x9c\x1f\xa8\xc8\x22\ +\x63\xea\xc4\x2b\x03\xbb\x12\x88\x99\x2f\x26\xeb\x78\xf8\x78\x37\ +\x06\xb3\x7e\x7c\xe3\x68\x11\xbf\x74\x63\x14\xdf\x1a\xb6\xe2\x48\ +\xf5\xd2\x1e\xf5\xbd\xa8\xc3\x5d\xd5\xbc\x22\x30\x17\x74\x24\x4f\ +\x3e\xb8\x83\x5e\xc8\xc8\xa5\x02\x5b\xbb\xd0\x21\xb3\x09\x9e\x38\ +\xc7\xa4\x25\x2e\x05\xe4\x27\x55\x68\x8d\x41\x33\x5a\x36\xc3\xf8\ +\x95\x34\x99\x4e\x3a\xc8\x1c\xde\x40\x83\xc7\xf1\xf2\xa5\x0c\x34\ +\x2f\x80\x10\x87\x6f\x05\x33\x1c\x7c\xcb\xce\x32\x48\x57\x1a\x55\ +\x4a\x47\xc9\x0d\x6e\xfd\xb1\x9b\xc0\x47\xea\x0f\xa4\x76\x00\xec\ +\x78\x75\x1c\xc6\xe5\xef\x36\x40\xdb\x4b\xdb\xe7\xb9\x93\x6d\x11\ +\xb6\xba\xad\xb9\x5e\xf8\x43\x14\xe4\xe6\x3a\x24\x6b\x23\x90\x5f\ +\xf2\xc8\x86\xc6\x3f\xd3\x80\xe3\x49\x7a\x41\xf0\x33\x22\xdb\x24\ +\x78\xd2\x13\x93\x54\xeb\x41\xfb\x60\x01\x3c\xaf\x7b\xce\xa9\x96\ +\x2d\xe7\x6b\xa1\x14\xc4\xa2\x87\x07\x07\xb1\x37\x6c\xc7\xd9\x9d\ +\x0f\x62\x74\xfc\x48\xed\x92\xa7\xd5\x6e\x15\x3e\xf1\x67\x23\x70\ +\x5a\xbb\xcc\x3e\x7d\xa0\xe0\x75\x19\x1c\x2d\xbc\x66\x2b\xe4\xcf\ +\x0e\x75\xc2\x06\x1a\xf8\x3c\xc1\x8f\x72\xb2\xd4\x27\x59\x7d\xe2\ +\x95\x6b\xc2\x15\x08\xf7\x75\xea\x8a\x06\x87\xc9\xa2\x2f\x17\x9d\ +\xe8\xe9\x12\x79\x7e\xf2\x6e\xdc\x79\xf0\xcf\x62\xb2\xf8\xc3\x18\ +\x5e\x3b\x89\x2e\x8f\x8d\x7b\xec\x80\xc8\x95\xfa\xf1\x85\xfa\x52\ +\xfd\x7c\x1d\xd1\x38\x2a\xef\xf6\xb1\x34\xae\x6b\xde\x44\x93\xdb\ +\xdc\x54\x40\x5f\x4c\xff\x94\xb9\x29\x7b\xf9\x62\x4f\x4a\xad\x8b\ +\x30\xe9\x9c\x3c\xf2\xe9\xbb\xc0\xa5\xab\x17\xb2\x49\xe2\xfe\xac\ +\xe6\x21\x0e\x4c\xe9\x29\xa7\xd3\x26\xd4\x32\xaf\x64\x53\xc0\xf4\ +\x9e\x06\xa5\xb1\x8d\x52\x7b\xae\x7f\x7e\xda\xcc\xd7\x41\xc4\x4a\ +\xbe\xf2\x64\x1c\x93\x4f\x9d\x29\x8e\x78\xc5\x31\x7c\xe2\x3a\x08\ +\x8e\x4e\x74\xe3\xe8\xe7\x61\x15\xfd\xbc\x78\x17\x72\xde\x54\x83\ +\x86\x0f\x4d\x38\x4f\xa6\xb1\x59\x43\xbf\xeb\xbe\x5a\x32\xec\x5b\ +\x06\x1b\x6a\xe2\x57\x3c\x1b\x2e\xbc\x46\xbb\xaa\x18\xbb\x45\xcc\ +\xcb\x8d\x33\x3c\xa1\x35\x9d\x55\x0c\x23\x62\xef\xb0\x15\xd7\x6e\ +\xf5\x63\x77\xbf\x27\xbe\x95\x78\xe6\xb6\x75\x4b\x7d\x1d\x1b\x43\ +\xd3\xe9\x3c\xf8\xde\x17\xe3\x40\x9b\x40\x76\xa2\x4f\x4d\xf3\xa9\ +\x7c\x1e\x2f\x64\x39\x5d\x57\x4a\x5b\x6f\x96\xe6\x58\x22\xfb\x8a\ +\xfa\xd5\x91\xd9\x3b\x71\x2c\xc6\x14\xcd\xb2\x0a\x4e\xd3\xa2\x8d\ +\x38\x88\x11\x33\x86\xea\xd1\x38\x66\x1d\xb3\xe9\x34\x2e\x2e\xe4\ +\xce\x26\x31\xbe\xa8\xa2\x1a\xab\x8c\x1e\xa3\x2a\x5f\xf2\x76\xb9\ +\x15\xb6\x08\xea\x07\x9b\xa4\x3d\xd9\xc8\x62\x68\x1f\xcb\xb6\x6c\ +\x24\xdd\x14\xc0\xa6\xf0\x12\xef\x9b\x9e\x94\xd6\x1b\x1a\x3b\x9d\ +\xd8\xdd\x1d\x4a\x82\xec\x3c\x6d\x7b\x63\x6d\xc1\x0d\x51\x62\xb6\ +\x8b\x8e\xf5\xe3\xe7\x7a\xe3\x66\x2e\xd9\xcf\x4f\x14\xca\xf7\x53\ +\xdd\x6c\xa6\x49\x26\x9b\x75\x7e\x83\x03\x3a\x32\xfe\x92\xef\xd7\ +\x46\xc2\xe7\x6f\xa5\x49\x53\x14\xed\xb6\xa2\xdb\x6f\x47\x7f\x97\ +\x57\x6e\x2a\x28\xd7\xe3\xbb\x6e\x6d\x9d\x57\xbd\x76\xf4\x06\x8a\ +\xef\xe8\x04\xeb\x60\x13\xfa\x77\x9c\xc6\x57\xf8\x22\xd5\x75\xc3\ +\xb8\x05\x83\xe5\x38\x26\xf9\x72\xc4\x02\x1d\xfe\xb4\x0d\x54\x8e\ +\x8c\x6f\xda\x2e\x09\x36\x87\x45\x07\x07\x8a\xc3\x83\xae\x00\x49\ +\xd9\xa0\x76\xdd\xe0\x6a\xd8\x42\x0d\x3e\xcf\xf0\xf9\xfb\xa0\xbf\ +\x33\xde\x40\xda\x0f\x04\xde\xac\x73\x13\x36\x69\x1c\x6b\x70\xbe\ +\x25\x4c\x1b\x31\x9f\xc0\x12\x55\xbe\x2b\xde\x2d\xdf\x46\xc1\x93\ +\xb4\x4d\xbc\x09\x25\x1a\x1a\xe3\x58\xa4\x60\xa7\xe4\x47\x16\x1e\ +\x50\xa7\x32\x05\x39\x0e\xa4\x3c\xcb\xa4\xcd\x13\x8b\x0e\x2a\x02\ +\x24\x8b\xd0\xcf\xe7\xba\xaf\x71\xa4\xc2\xee\x8c\x19\x15\x63\xe1\ +\xa4\x51\x9b\xd0\xbc\x86\x6c\x0f\xaf\x75\xe2\xf0\x50\x63\xf6\x38\ +\x8e\x3b\x77\xdf\x8b\x27\x27\x27\xbe\x61\x69\x6f\xff\x50\x9e\x1a\ +\x82\x64\xa3\x5f\xca\x06\xae\xc6\x9f\x0d\x34\xd0\x40\x73\x26\x34\ +\xd0\xc0\x8b\x04\xf5\x8f\x74\x67\x0d\x34\xd0\xc0\xe7\x11\x9a\x93\ +\xff\xc7\x84\xda\x70\x9f\x34\x22\xf9\x31\x0d\xbb\x2d\x0e\x11\x7f\ +\xfe\x80\xa7\xe6\xfa\xc9\x6a\xf2\xe9\xbc\x98\xac\x89\xa2\x09\xcf\ +\x7a\x3a\x8a\xcb\xf7\x7e\x2f\x96\xf7\xdf\xf7\x2e\x4b\x7f\x38\x0c\ +\x4d\x55\xcc\xe3\x49\x92\x26\xd9\x7c\x0b\xcd\x33\x70\xc2\x4c\x9c\ +\xbd\x5a\xc1\xa4\xc8\xab\x1c\x5e\xbc\xc8\x30\xb3\x70\x16\x0c\x94\ +\x9a\x8d\x0a\xfd\x72\x23\x09\x79\x4c\xb2\xa0\x2b\xde\x13\x70\x05\ +\x74\xc8\x89\x1d\xf1\x4c\x1f\x91\x2b\x57\xd3\x48\x97\x89\x3d\x11\ +\xf3\x14\x53\xf4\x94\x01\x1f\xac\xe4\x99\x13\x35\x67\x60\xd9\x45\ +\x4f\xd3\x70\xc2\x35\x59\x4f\xbd\xc5\x4f\xbc\xf3\x41\x30\xe1\x94\ +\x51\x2f\x80\x50\x96\xba\x9c\xd6\xcf\x24\x16\x24\x84\x17\xd9\x4c\ +\xfc\x5d\x56\xc7\x53\x66\x64\x4b\x0f\xc4\x95\xb2\x92\x0f\x74\xdb\ +\x05\x9a\xd3\x42\x36\x53\xc6\x43\x2f\x72\x33\x49\xfa\x8e\x2b\x28\ +\xbc\xe2\x48\x14\xaf\x84\x99\x3e\x72\xe7\xa7\x2c\x1f\x6b\x4d\x34\ +\x3b\xd0\xd8\x5c\x92\xfe\x67\x71\x19\x1f\x8c\x96\xf1\xfd\x51\x2b\ +\xde\x9d\xf5\xe2\xe3\x59\x27\x2e\x35\xf9\xec\xf4\xd9\x30\xad\x62\ +\xd0\xeb\xca\x29\x4d\x47\x52\xb8\x3d\x94\x45\x06\x79\x1d\x26\xc1\ +\x40\x5b\x61\x6f\xa6\x24\x1d\xf0\x04\x59\x79\x78\x41\x02\x2a\x41\ +\x2f\x50\x38\x39\x01\x23\x5e\x5c\x2a\x73\x5b\x36\x69\x28\x7d\x8b\ +\x9d\x26\x81\x17\xf2\x14\x4f\x39\x2d\x4f\x2e\xbd\xf4\xfd\x4a\x18\ +\xf2\x16\xce\x24\xfb\x2a\xaf\xa4\xb9\xf0\x82\x94\xa1\x10\xa6\x64\ +\x31\x83\xb7\x1b\x61\x47\x70\xf9\x2c\xb6\x45\xd5\x13\xcf\x3c\xba\ +\xfb\xad\x78\xf5\x67\x6e\xc4\x97\xbf\x76\x2b\xba\xbb\x55\x7c\xff\ +\xdf\x3c\x8a\x7b\x7f\x5c\xc5\xb2\x35\x95\xb4\x2a\x16\x8b\x4a\xf5\ +\x49\xda\xac\x47\x2f\x82\x39\x1b\xe1\x42\xea\x1f\x7f\x54\x00\x4f\ +\x5d\x4c\xda\x2c\x06\x74\xd7\xed\x58\x76\xf8\x36\x5b\x37\x46\xb3\ +\x56\x2c\x65\xf3\x57\x5b\x9d\xf8\xfa\x4b\xa3\x78\x73\x7f\x1d\xd7\ +\xe6\xb2\xb9\x5c\x7b\xd9\x8e\xa1\x52\x74\xd7\xc2\xf1\xc5\xc3\x82\ +\x0e\x4b\x39\xd8\x1f\x71\x1c\x6d\x47\x01\x36\x4c\x4a\xe6\xcf\x81\ +\x90\x71\xc5\xb1\x39\x69\x5b\x12\x65\xa6\x8c\x05\x47\xa6\xff\xd0\ +\xec\x08\xd6\x78\xc9\x83\xbf\x32\x41\x87\x3a\x0e\x46\x7b\x6e\x07\ +\x64\x82\x83\xac\x03\x75\x24\x9f\x3b\x97\xb7\x17\xa8\x88\x4f\x07\ +\xaf\x99\x4b\x38\xe3\x6d\x37\x34\x2a\xf4\x5c\xb3\x71\xe1\xa2\xc5\ +\x23\x01\x10\xf9\x3b\x1e\x3e\x48\x4a\x61\x03\x28\xe0\x7c\x85\xb6\ +\x65\x2f\xb5\x5b\x64\xd9\xe7\xb6\x79\xe2\xe4\xe0\x5d\x9b\x4f\x79\ +\x3a\x8e\x72\x29\x3d\x77\xb4\xb3\xf9\xe7\x62\x38\x13\x09\x2a\x00\ +\x6f\x09\xa2\x21\x9a\x26\x41\xce\x6d\x51\xce\x72\xd2\x77\x72\xfd\ +\xb2\xad\x16\x7a\x07\x9d\x3a\xd1\xea\xf6\xa2\xbf\x33\x8c\x6e\xaf\ +\x5f\xf2\xcc\x34\x34\x47\xe4\xb6\xda\x3d\xb9\x65\xdc\xbb\x77\x1c\ +\xf3\x55\x3f\xba\x6f\x7c\x25\x6e\x7d\xed\x5b\x31\xb8\xb9\xe7\x6b\ +\x25\x1b\x98\xce\x00\x60\x55\xc9\x27\x81\x70\x1a\x5a\x21\xd7\x00\ +\xa9\x56\xb5\x8e\x36\xed\xb3\x40\xcd\xf8\x8c\xcc\x06\x1a\x68\xe0\ +\x39\x40\x87\xe0\x13\xed\x99\x33\xed\x29\x34\xaf\x71\x79\x9d\xa3\ +\x3f\xd2\xb5\x42\x7d\xf1\xc9\xc9\x1f\xc6\x93\xd3\xdf\x8d\x59\xeb\ +\xe3\x18\x1e\x45\xf4\xdb\xdd\x58\x2d\x74\x4d\x50\xcf\xed\xa7\xcc\ +\xd7\x6c\x92\xd1\xdf\xd3\xff\xd0\xf7\xb8\x47\x77\x5a\xae\x01\x1e\ +\x2f\xb9\x6f\x2a\x63\x2c\x45\x95\x1c\xae\xf2\x12\xcd\x63\x95\xa2\ +\x4f\x7d\x1d\xe3\x72\x82\xca\x39\xae\x48\xdd\xca\x5f\x32\xc5\x41\ +\x1a\x87\x92\x96\xe3\xb1\x14\x42\x12\xfa\xee\x04\x04\xe9\xef\x6b\ +\x52\xe6\xe7\x8c\x39\xa0\x12\x1e\x34\xc7\xa5\xcc\x25\xb8\x88\x6c\ +\xd4\x50\x22\x7f\x03\x4d\x34\xe2\xf0\x1d\x16\x42\x3e\xbc\xb2\x11\ +\x39\xbe\x61\x88\x78\xe1\xb6\x05\x61\x70\xcb\x2d\xf1\x4a\xe0\x0d\ +\x32\xa7\x47\x2e\xbc\x29\xd3\x9b\x83\x08\x94\x5e\xca\x56\x84\xcc\ +\xd7\x63\x2c\x39\xf7\x95\xa9\x75\x39\xf2\xb4\x99\x3c\x5d\x93\x57\ +\xab\x59\xf0\xfa\x40\x6c\xce\x6b\x37\xf9\xee\xda\x93\x07\x55\xdc\ +\xfb\xf8\x34\x1e\x7c\x3c\x8d\xb3\xe3\x45\xcc\xfd\xea\x41\xb6\x5a\ +\x78\xb2\x38\x62\x30\xe0\xc9\x29\x36\x77\x7a\xc2\xfb\xea\x03\x52\ +\x32\xf9\xa6\x16\xf0\xd3\x07\xc8\xc7\x21\xde\x19\xa6\x1e\x54\x10\ +\x1b\x42\xf4\x1d\x1d\xfa\x3c\x85\xe9\x62\x30\x47\x5d\x67\xe8\x83\ +\x47\x38\x5b\x58\x01\x0b\x48\x39\x3c\x89\xe6\x1b\x5c\xe0\x91\xfc\ +\xec\x67\x33\x2f\xf7\x29\x1a\x7f\x75\x7a\x6c\x4a\x11\xd6\xb8\x43\ +\x7a\xe6\x58\x87\xb4\x12\x20\x23\xda\xb6\x8c\x73\x95\x1f\x12\xc8\ +\x9e\xfc\xd8\xc0\xda\xd9\xef\xc6\xe1\xad\x61\xdc\x78\xe9\xd0\xf3\ +\x81\x27\x0f\x67\xf1\xe4\xce\x34\x2e\x4e\x2e\xfd\x1a\x53\x38\x3d\ +\x96\x54\xbe\xd6\x90\xcd\x38\x6f\xcc\x51\x7f\xd8\x93\x3c\x12\xaf\ +\x9d\xdb\x1e\x74\x39\x7c\x6f\x3c\x52\x99\xb2\xaf\xe5\xf5\xd1\x59\ +\x76\xe9\xa6\x4d\x28\x47\xbf\x2e\x83\xe6\x2a\x94\x81\x3c\x19\x3b\ +\xd4\xf6\x85\x66\x27\x5e\x6c\xd9\xa1\x7f\x36\x4f\xb1\xad\xed\x21\ +\x99\xc4\x93\x0e\x5b\xb5\xd4\x06\xdc\x8f\x23\x84\x2a\xf1\xa1\x2e\ +\x89\x69\xfa\x0b\x14\x02\xc9\x40\x49\x0b\x82\xcd\x93\x76\x35\xbe\ +\x48\x36\x93\xc1\x8d\x14\xbc\xa0\xd4\x71\x4d\xc7\x63\x78\x52\x30\ +\xb7\xad\x7c\x4a\x2c\xf3\xc8\x3a\xc5\xcf\x03\xfa\xa3\x8f\xcb\xa4\ +\x18\xca\x42\x1a\xc8\x1e\x8f\xd8\x2f\x6d\xc1\x3e\xe5\x83\x81\x3f\ +\x48\xca\x37\x0d\x9e\x2c\x7a\xe1\x43\x2e\x61\xe8\xd8\x8b\x08\xfd\ +\x85\xa3\x22\x7a\xdb\x8e\x24\x50\xbe\x5d\x32\x33\x4d\x0e\x1e\xd2\ +\x88\x8e\xed\xf9\x46\xb2\x6d\x2b\x06\x9e\x2a\x64\xcc\x04\x1f\xf9\ +\xf4\xba\x5d\xb5\x7d\x5e\x27\xca\x79\x23\x0e\xd1\x49\xc3\x78\x8e\ +\x67\x07\x31\x37\xdf\x2d\xa4\x9d\x4c\x66\xed\x78\xf8\x78\x1a\xd5\ +\xe4\xd5\x78\xf5\xf0\xe7\xe2\x4b\x6f\x7e\x2b\xae\x1d\xbe\x21\x9e\ +\x3c\xcf\x70\xe8\xe4\xfa\x12\x28\x75\xc1\xc1\x1a\x68\xe0\xf3\x09\ +\x4d\xeb\x6f\xa0\x81\x17\x07\x1a\x1f\x7b\xc8\xd2\x40\x03\x0d\x7c\ +\x0e\xa1\x39\xf9\x7f\x4c\xd8\x36\xdc\xf6\xa8\x04\xfa\xd5\x68\xfd\ +\x0a\x9e\x47\x2b\x50\x47\xfd\x68\x83\x9b\x5a\x58\x9d\xea\x13\x84\ +\x7f\x06\xa8\xf3\xa6\x27\x60\xa2\xa4\xb9\xac\x27\x1f\xcb\xf1\x79\ +\x5c\x7e\xff\x5f\xc5\xe4\xfe\x47\xb1\xbb\x37\xd4\xe4\xb5\x17\xdd\ +\x92\x80\x39\x94\x17\x2b\xaa\x4a\x9d\x08\x2b\x16\x22\xb2\x38\x81\ +\xc7\x6d\xd5\x5e\xdc\xc1\xd7\x84\x46\x82\xf3\xae\xc3\xe4\x73\x97\ +\xc3\x44\x27\x99\x45\xd2\x04\x8d\x05\x15\xe8\x8e\x27\x8b\x8c\xc3\ +\x63\x1a\x94\x1b\x53\xc4\xa7\x02\xc8\x30\x1d\x5a\x09\xc3\x9f\xdd\ +\x59\xe1\x35\x0a\x9e\x3a\xd4\x3c\xb8\x5a\x1e\xdf\x50\x33\xce\xaa\ +\x41\xd1\xcf\x3a\x58\xae\xc2\xf6\xa0\xa1\x6f\x91\xe3\x72\x15\x9e\ +\x52\x0e\x3f\xb9\xe6\x38\x16\x22\xd8\x5c\x2b\x72\xcd\x47\xf2\x8c\ +\x27\x0b\x0b\x95\xc1\xeb\x05\x21\x91\x3d\x09\xcd\xf4\x64\x28\x9f\ +\x65\x23\xcb\x07\x93\x47\xfa\x64\xe1\x28\x9f\x38\xff\x8b\x4f\x5a\ +\xe1\x9a\xec\x12\x76\x36\xe4\x8b\x7e\xaa\x4b\xa9\xe5\x3a\x5e\xb5\ +\x16\xb1\xa3\xb4\x5d\x11\x4e\x57\xb3\x38\x9b\x8d\xe3\xee\x74\x1d\ +\xb7\x67\xdd\x78\x77\x16\xf1\x60\xde\x8d\x63\xd5\xee\xbc\x33\xf7\ +\x5d\xf2\xfb\xfd\x2a\x7a\xfd\x56\x0c\x54\xf7\x7e\x6c\x8d\x76\x21\ +\x99\x9e\x24\x6b\xe6\x8b\xe7\x49\xb9\xf2\x64\x42\x4d\xe6\x84\xc9\ +\x2d\xbd\x9c\xc8\xe7\xc4\xdf\xcc\x6e\x5b\xf0\xfa\xee\x56\x62\x21\ +\xd7\x1b\x6a\x4e\x5f\xf3\x3b\xa1\xe3\x11\x9d\x0b\x0c\xb5\x5c\x39\ +\x04\x0b\xb1\x3c\x13\x32\xec\x45\x3f\x63\x1c\xda\x69\x5f\xcc\x4f\ +\x3d\xc9\x26\x2c\xcc\xf8\xd5\x3f\x08\x98\xb3\x99\xa1\xb2\xee\xb6\ +\xe2\xc6\x9b\xbb\xf1\xfa\x17\x6f\x45\x7b\x6f\x12\x8f\xbf\x5b\xc5\ +\xa3\xf7\x2f\x63\xbe\xac\x82\x6f\xd5\xf8\x2e\x6c\xee\x5a\xdf\xae\ +\x33\x72\x71\x5e\xa9\x3b\x50\x6b\x61\x44\x8e\x7a\xe8\x8a\x9f\x45\ +\x87\xb9\xfc\xf3\x51\x3f\xe6\x93\x76\xbc\xda\x89\x78\x7d\x77\x1d\ +\x5f\x39\x5c\xc7\x4b\x7d\x71\xc9\xf6\x1d\xd9\x7e\xa8\x14\x7c\xfb\ +\xae\x17\x7c\x9b\xb0\xed\x4d\x50\xee\xb6\x66\x23\xcd\x2f\x20\x92\ +\xef\xa7\xc0\xec\xcb\x95\xbc\x28\x33\x88\x6d\x4a\xbc\xb5\x2a\xb6\ +\xc2\x47\xc7\x4d\x3a\xa1\xc2\x53\x16\xb6\x4d\x3e\x16\x36\x5c\x47\ +\x12\xea\xcd\x20\xc7\x13\x27\xdf\x0b\x1a\xc2\x9d\x58\x69\xe5\xb3\ +\xf0\x84\x00\xd2\x51\x40\xfb\xa4\x77\xfe\x02\xd3\xc0\x4a\x3a\x04\ +\xbb\xce\x33\x3f\xea\xd8\x8c\xf8\x78\x8a\x72\x1d\xeb\xe0\xf3\xa1\ +\x94\xc1\x00\xbd\x50\x12\x77\xc9\x09\x59\x47\xea\x32\x75\xd3\x5f\ +\xf9\x93\x37\x74\xeb\x82\x1e\xc2\x59\x88\xa1\x1c\x35\xcd\xba\x43\ +\xaf\xcb\x56\xd2\x11\x06\xa0\xf1\xa4\x1f\xac\x79\x5d\x11\x8f\x8e\ +\x6b\xd2\x39\x23\xb3\x99\x0f\xf0\xc6\x9e\xd2\x52\x57\xe8\xed\xcd\ +\x3b\xe1\xde\x04\x45\x2e\x7c\x72\xdd\xc1\x20\xba\xfd\x7e\x74\xe4\ +\x78\x75\xae\xa5\x39\x13\xb5\x2d\x52\xb6\x54\xd3\xed\x6e\x5c\x4e\ +\xa7\xf1\xf0\xc1\x79\xb4\x6f\xbe\x1e\xd7\xbe\xfe\x0b\x71\xfd\x0b\ +\xaf\x8b\x45\x6d\x05\x79\xc8\xb2\x4a\xa9\x97\xf1\x67\x01\xb2\xe8\ +\xb0\x02\xcf\x63\xf9\x44\x28\x62\x7f\x08\x3e\x89\x0e\x7c\x5a\x5c\ +\x03\x0d\xfc\x75\x81\xcf\xd2\x8e\x9f\xc7\x53\xd3\xf0\xf3\xa0\xb0\ +\x08\x3a\x09\x4d\xf6\x23\xab\x5c\x5b\x56\xd1\x5a\x74\x62\xb9\x9a\ +\xc4\x83\x47\xff\x3a\x1e\x8f\xfe\x75\x74\x87\x27\xd1\x1b\x8a\x67\ +\xa5\xeb\x0d\x7d\x0c\xdf\x0d\x55\x9f\xef\xef\xaa\x32\x9e\xc8\xce\ +\x5c\xbe\xc2\xf4\x39\xd0\xa1\xe9\x9a\xe1\x71\x98\x3b\x36\xd1\x71\ +\xce\x8b\x03\xb8\x42\x44\x29\xc8\x31\x2f\x17\x5c\x9f\x92\x62\x8c\ +\xf8\x72\xf1\xf5\xcd\x3c\x82\x7a\xe3\x89\x6b\x31\x57\x25\xcb\xe2\ +\xfa\x6a\x66\xfe\xc4\x1b\xcd\xb2\x39\xaf\xbc\x2e\xe5\x98\x0c\x1a\ +\xf1\x35\x0e\xbf\x47\x79\xe6\xf3\xf7\x5f\xf5\xcb\xa7\x9d\x78\x02\ +\x2f\x37\x6e\x78\x9a\x1b\x59\x88\x20\x2b\x36\xc5\x32\x9c\x72\x5d\ +\x56\xc2\xd8\xc2\x3c\xf8\x8a\x23\xbd\x65\x14\x1e\xa7\x95\x3c\xc2\ +\xf0\xb1\x19\x83\x6f\x97\x65\x82\x47\xa1\x42\x13\xca\x7d\x61\x20\ +\xa2\xd7\xd7\x57\xa7\x31\x0f\x1b\x52\x6c\xae\xf1\xea\x5e\x5e\xf1\ +\xa8\x31\x01\x8f\x4e\x89\x7f\x3c\x5e\xc4\xd9\x71\x15\x0f\x6f\x5f\ +\xc6\x93\x7b\x8b\xb8\xbc\xe0\xa9\x30\xd5\x99\xf2\x6c\xb7\x97\xea\ +\x73\xd4\x87\x6b\xe0\xcc\x18\x8a\xef\x8d\x75\x19\x47\x6b\x2c\x45\ +\x1e\xbe\x31\x4b\x3f\xec\x5c\x72\x52\x1a\x7a\x04\xfa\x28\x65\xae\ +\x7a\xc9\xbe\x9a\x7e\x48\x4e\xe9\xd8\x54\xf0\x2b\x0d\x5d\x8f\xe8\ +\x49\x2a\xc0\x05\x72\x7d\xb8\xce\x8c\x65\x8c\x41\x79\xd4\x14\x7c\ +\xa0\x2e\xa7\xc7\x63\xca\xcf\xf7\x94\xd0\x87\xd1\x77\xc1\xa0\x34\ +\xae\xdb\xe2\xb0\xb1\x6a\x8f\x94\xc4\xca\xfe\x4a\xb7\x96\xae\x5d\ +\x8d\x29\x77\xda\xb1\xb7\xdf\x8b\x9d\xbd\x81\x9f\xd4\x3b\x7b\x3c\ +\x8b\xcb\x93\xb1\x5f\x85\xa9\xa4\xde\x6c\xc9\xfa\x55\xba\x1c\x0e\ +\x67\x1d\x58\xb6\x10\xe8\x96\x59\x4a\x42\x58\x71\x8c\x6d\xa8\x87\ +\x8c\xd4\x41\xb6\xec\xb1\x91\x26\x3d\xe9\x36\xd1\x17\x9b\xf5\xfa\ +\x1a\x37\x69\xac\xca\x66\x8d\xcb\x81\xbd\x28\x1f\x9b\x37\x0a\x7b\ +\x7c\x40\x17\xed\x8d\x1b\xf8\xda\xde\xac\xf4\x66\x93\x78\xb1\x05\ +\x3c\x4e\x27\x3e\x87\x8b\xa1\x36\xe3\x1f\x08\xf9\xb7\xa3\xda\x18\ +\x36\x98\xe6\x73\xa8\x44\x38\x2c\x7e\xa1\x6c\x56\x3a\x59\x2d\xcc\ +\x91\xd4\x5c\x09\x93\xce\xa8\xf2\x96\x00\xcb\x84\xe0\xba\x37\xd9\ +\x72\x8d\x53\x4f\x26\x11\x9f\xb4\x74\xd2\x59\xf4\x12\xa9\xb0\x38\ +\x94\x3e\xc7\x69\xe8\x4e\x52\xe1\xf8\x12\x96\x61\xf8\xc0\xe1\x25\ +\xb1\xc2\xa5\xdc\xb5\xac\x4d\x3c\x3f\xc2\xe4\x4f\xda\xa2\x07\x32\ +\x20\x64\x1c\xf6\xc6\xa7\x6c\xb4\xdf\xe4\x87\xa6\x50\x49\x27\x9d\ +\xe0\x57\x1c\x3e\x1b\xa2\x3d\x36\x8c\x8b\xfd\x2d\x97\xb2\xd4\x7a\ +\xc8\x0d\xfa\x83\xe8\x77\xbb\x3a\x87\x7a\xde\x64\xab\xeb\xc8\x1a\ +\xe8\x24\xc7\xe4\x83\x9d\xbe\x5a\xa5\xe6\x34\x4f\x96\x71\xf1\x98\ +\x0d\xb7\xd7\xe2\xe5\xeb\xdf\x88\xaf\x7e\xf9\x17\xa3\xdf\xb9\xa6\ +\x76\xc6\xab\x59\x51\x8e\xb6\xe5\x94\x05\xae\xb0\x06\x1a\xf8\xbc\ +\x41\xd3\xfa\x1b\x68\xe0\xc5\x41\xb3\xa1\xd6\x40\x03\x9f\x63\x68\ +\x4e\xfe\x9f\x10\x6a\x03\xd6\x23\x93\x4f\x32\x28\xf1\x9f\x10\x57\ +\x47\x6d\xfb\x9f\x0d\xb6\x53\xfd\x78\xb0\x9d\xd2\x92\x44\x60\xc2\ +\xb2\x18\x9d\xc6\xf9\x9f\xfc\x4e\x54\xc7\xf7\x34\x59\xd9\x8b\xc1\ +\x80\xcd\x34\x16\x21\x98\x2c\xb1\xb8\xb1\x8c\xf5\xa2\xd2\xc4\x98\ +\x69\x8c\x26\x81\xa2\x7b\xb1\x57\x02\xf2\x35\x8a\xb9\xa9\xe4\x05\ +\x03\xf9\xe6\x47\x38\x7c\xe6\xc1\x2f\xfc\x68\x51\xe8\xa0\x8e\xb7\ +\x46\x19\x6f\x1a\x33\x6c\xf1\x98\xc6\x11\x9c\x38\x52\xd7\x32\xcd\ +\x7b\xe5\xd7\x78\x1d\x8f\x9e\xf9\x6d\x91\xa4\x39\xcf\xb2\xa0\x23\ +\x81\x49\x67\x15\x46\x3e\x61\xcb\xa9\xf3\x29\xf1\x75\xbe\x7e\x32\ +\xaf\xc8\xf2\x62\x96\xc2\x7e\x05\x60\x09\x5b\x2e\x7c\xe4\x51\x74\ +\xf4\x62\x0d\x00\x5d\x93\x3b\xdb\xc7\xf1\xb6\xa0\xf9\xb3\x36\x13\ +\x37\x26\xdf\xf2\x71\x0a\x33\x2b\xb5\x3d\x89\xcf\x7f\xf2\xf2\x97\ +\x4f\x78\x9b\x8e\x73\x7d\x89\x82\x04\x30\x36\xc4\xfa\xca\x68\xce\ +\x26\x27\x0b\x1c\x8b\x45\xcc\xd6\xb3\x78\x30\xa9\xe2\xfd\x69\xc4\ +\x7b\xb3\x76\xdc\x9d\x0e\xe3\xf1\xaa\x13\x55\x7f\x1e\xed\x7e\x15\ +\x87\xc3\x85\xef\x44\xee\x6a\x42\xbb\xee\x28\x7f\x66\xc9\x92\xd6\ +\x4d\x6f\x33\x61\x36\x2e\x47\xf9\x3c\x81\x05\xe4\x29\x94\xf1\x02\ +\xe8\x8e\xb7\x0c\xc5\x11\xc1\x0c\x5e\x3e\x14\x4a\x61\x5a\x92\x10\ +\x96\x32\xe4\x28\x57\x4d\x02\xb0\x1c\xa9\xb8\x69\x19\x52\xa6\x93\ +\x6c\x95\x9b\xb2\xd5\x61\x64\xba\xba\x16\xeb\x58\xc8\xe6\xde\xb4\ +\xa1\xce\xa8\x4f\x95\xd3\xed\xb5\x57\xc5\xee\xd1\x30\x5e\x7e\xe3\ +\xa5\xe8\xed\x2f\xe3\xf8\xe3\x71\x5c\x3e\x9e\x78\x33\x8d\x57\xf6\ +\xf1\x9a\x24\x5e\xff\xe4\x57\x78\x2a\x99\x52\x78\x2d\x04\xd8\xe8\ +\x84\xc3\x93\xcf\x02\x12\x6b\x62\x4c\xe0\x2b\xb9\xd9\xa8\x1d\xbd\ +\x71\x37\x5e\xdb\x9f\xc6\xdb\xfb\xeb\x78\xa9\xd7\x8b\x61\xab\x1d\ +\x6b\xd9\xbb\x5f\x2d\xa3\x2f\xde\xa1\x52\x71\x27\x7a\x6e\x9e\xb5\ +\xbd\x81\xcd\xf7\x75\x7c\x57\x2f\x74\x09\x26\x1e\x1b\x3a\x3b\x1d\ +\x9c\xa5\x0e\x34\x83\x0c\xc8\xb3\x6d\x65\x73\xec\x2a\x3c\xef\x6e\ +\x67\xa1\x42\x32\xbc\x98\x27\xd9\x84\xb9\xf3\xbd\xd0\x73\xc3\x29\ +\x6d\xd6\xea\xd4\x0b\x17\x38\xf8\xa1\x61\xe4\x94\x53\x6f\x10\xc1\ +\xe3\xcd\x20\x7c\x2a\x11\x3d\xe4\xc0\xd1\xcd\x07\xfc\x5a\x31\xfb\ +\xa5\x9d\x62\x3f\x05\xf3\xf5\x94\x35\x45\x1c\x3a\x64\x08\xa0\x0d\ +\x27\x96\x29\x01\xce\x3d\x23\xd9\xbe\x2d\xc4\xa1\xe2\x29\x8c\x6e\ +\xce\xbb\xe0\xe8\x56\xeb\xea\xb8\x2d\xfd\xbd\x58\x96\x74\x15\x36\ +\x69\x25\x1d\xf6\x31\xbd\x38\x6f\xd6\x82\xa2\x8d\x6d\x01\x59\xda\ +\xa3\x87\xb2\xb6\xcc\xcd\x02\x51\xe6\x61\xd6\x92\x3e\xed\xc9\x22\ +\x5e\x37\x3a\x7d\x39\x36\xd7\x7a\x38\xd1\x2c\x87\x32\xa9\xa1\x0a\ +\x5f\xb5\x54\xfb\x0a\x9f\x5e\x5c\xc4\xe9\x62\x37\x0e\xde\xf9\xf9\ +\x78\xed\x17\xbf\x4a\x09\xd5\x1e\x17\xaa\x37\x5a\x47\x31\x84\x21\ +\xf3\x7a\x16\xe0\x80\xfc\x0c\xe7\x53\xe1\x0d\xd4\xcc\x9f\x04\x9f\ +\x16\xff\xe7\xa5\x6d\xa0\x81\xbf\x0e\xf0\xe7\x9e\x03\x62\xe0\x7c\ +\x7e\x0a\x44\xcb\x0b\xc3\x55\x52\xae\x15\x0e\x21\x90\x34\x3a\xea\ +\xd4\xe6\xda\x30\x19\x9f\xc6\x93\xc7\xbf\x13\xc7\x93\x7f\xa3\xbe\ +\x66\x9c\x4f\x6a\xa8\x1f\xe2\xf5\xb0\x6b\xbe\xdd\xb9\xac\xdc\xef\ +\xd3\x6f\xe7\x86\x42\xf6\xe0\xf4\x53\xf9\xdd\x2b\xae\x8b\x72\xc2\ +\xbd\x69\xa4\x1f\x59\x90\x13\x8b\xe0\xde\x74\x43\x4f\x08\x70\x4b\ +\xb7\x5c\xf0\x97\xe3\x3a\xc3\xb8\xc3\x68\xb9\x96\x96\x28\x34\xa6\ +\x1c\x59\x14\xe4\x93\x3a\xc7\x0f\x84\xe9\x2e\x01\x7b\xc9\xea\xeb\ +\xb5\xd9\x08\x94\xf2\xfa\xa7\x70\x3d\x4e\xb1\xcf\x35\x4d\xbe\xbb\ +\x5c\x11\xf3\x75\x8e\xba\x96\x41\x13\xae\xbf\xc2\xe2\x51\xf1\xe8\ +\x33\x29\x3f\xdf\x36\xf3\xd3\xe4\xe2\xf1\xd0\xcc\x36\x49\xdf\x1a\ +\x29\xae\x96\xc9\x26\x0d\x7d\xb2\xe5\x8b\x09\xfe\x4d\xfe\xf0\x99\ +\xd7\xa2\x9c\x96\x40\x96\x4a\x3f\x78\x91\x69\xe1\xfc\x33\x9d\x79\ +\x71\x52\x8e\x6b\x3e\xf6\x86\x90\xf6\x53\x5d\xf0\xe8\xfb\x5a\xd7\ +\x61\xd9\x71\x36\x59\xc4\xc5\xf1\x22\x4e\x1f\x4d\xfc\xe4\xda\xd9\ +\xc9\x3c\xc6\x97\x0b\xf7\x11\xde\x9e\x92\xa1\xe8\x7e\xd8\x0c\xea\ +\xf3\xe4\x9a\xc6\xd4\xf4\xeb\x36\x9b\x75\x13\x8f\x41\x79\xc9\x56\ +\x34\x31\x5b\x14\x3c\x31\xf5\x47\x8a\x53\x9a\x8e\xfb\xed\x7c\x92\ +\xec\xaa\xbf\xaa\xd3\x03\x28\x5d\x63\x2e\x6d\xc1\xeb\x43\xca\xab\ +\xf9\x48\x0e\xa4\x1c\x30\x98\xb2\xbf\xaa\x13\xa3\x5f\x8e\xe7\x49\ +\x00\xa5\xe4\x6b\x3b\x8b\x2e\x94\xa7\xc5\x7c\xb3\x88\xfa\x38\xbe\ +\x81\x36\x1b\xcd\x63\xae\x71\x65\xb6\x55\x17\x33\x5a\x69\xc2\x94\ +\x67\x7b\x23\xb7\x96\x99\x39\x1b\x84\xe4\xf8\xb8\x50\x90\x2f\x7d\ +\x78\xc5\x23\xfd\x65\xbd\xb1\x58\x6f\x32\x76\x35\xa8\xed\x32\x20\ +\x15\x8f\x37\xd9\xbc\x89\x86\x9f\xe5\x40\x55\xec\x6f\xfb\x95\x31\ +\x10\x69\x4d\xcf\x83\xf9\x6a\x5e\x6a\x8d\xba\x43\xbf\x1c\x1f\x25\ +\xaf\xf5\x44\x25\x64\x11\x84\x47\x88\x52\x39\x9c\xc4\x9a\x26\x57\ +\xc7\x13\xa8\xa1\xe0\x1b\x79\x05\x7c\x8e\x0a\x2c\xbe\xc4\xd9\xc6\ +\x22\x6c\xf3\x66\x9b\x00\x29\xba\x13\xb6\x47\xdb\xc1\x47\xd7\xad\ +\x72\x1b\x37\x9b\x7d\x64\xc3\xcb\xf8\xd4\xb2\x4a\xbe\xe8\xea\x74\ +\x30\x2a\x53\xd3\x09\x2b\x23\xf3\x65\x02\x8f\x4f\xaf\xca\x6d\x92\ +\xe3\xad\xb3\xe8\x8c\x53\xc9\x28\xcb\x90\x1b\x7b\xc9\xa7\xb4\x4e\ +\x07\x2f\x9b\x6b\xb9\xa9\x99\x75\x54\xfc\x5a\x96\x10\x9c\xeb\x56\ +\xe3\x25\xe6\x1f\xfd\x8e\xe6\xa1\xbd\xbe\x71\xb2\xa0\xd9\x20\x8e\ +\x76\x92\x1b\xa4\xbd\x98\xaf\x16\xf1\xf0\xfe\x24\xce\x1e\x1c\xc4\ +\xad\x6b\x3f\x13\x6f\xbd\xfa\x8b\xf1\xd6\x9b\xdf\x14\x57\xb6\x53\ +\x64\x53\xda\x3c\x02\x68\xb6\xed\x37\xd0\xc0\xe7\x03\x9a\x16\xdf\ +\x40\x03\x2f\x0e\x9a\x0d\xb5\x06\x1a\xf8\x1c\x43\x73\xf2\xbf\x00\ +\xc8\xd1\x79\xc2\xf3\x0c\x4a\xdc\x8f\x60\xe8\xcf\x3e\xc8\xf9\xc9\ +\x6a\x6f\x93\x5a\x5d\x00\x93\x4c\xe6\xb6\x4c\x7b\x16\x67\x0f\xe3\ +\xe2\x3b\xbf\x1b\xd3\xe3\x3b\xb1\x77\xed\x28\x06\x2c\xae\x33\x09\ +\x51\x02\x16\x06\xbc\xd0\xc3\x37\xa6\x96\x2c\x5f\xb0\x8a\x91\x53\ +\x5e\x36\x1a\x58\x64\xa8\x37\x1c\x8c\x7b\x91\x42\x8e\x09\x37\x02\ +\xe4\x92\xe6\x14\xf6\x21\x93\x3b\x93\x6b\xa8\xcc\xd0\x3d\x01\x37\ +\x4b\xf2\xf0\xf1\x75\x62\xbd\x01\x02\x14\x79\xcc\xf7\xf0\xbd\xe9\ +\xe4\x34\xe9\x6a\x9c\x34\xce\xcb\xd1\xe4\x91\x99\x78\xd1\x5a\xf4\ +\xdc\x50\x01\x97\x63\x45\x87\x34\xe8\xc7\xea\x0c\x8f\x75\x6d\xf2\ +\x29\x79\x98\x1f\x99\xb2\x81\x79\xc9\x47\x38\x62\xcb\x26\x1b\xf9\ +\x59\xae\xe2\x53\x1f\xa1\xfc\xe4\x27\x8d\x70\x4d\x03\x83\xec\x50\ +\xe2\x49\xc8\xb0\xfe\x5e\xac\x70\x06\x0a\x58\xa5\x4c\x97\x9b\x83\ +\x90\x93\xaf\x24\x4b\x1a\xbf\x3a\xce\x38\xd3\x47\xa5\x51\x7a\x36\ +\x9b\xf8\x2c\x06\x13\x5a\x49\x0f\x7f\xb7\x63\xb1\xf2\xf7\xd3\xc6\ +\xcb\x49\x7c\x3c\xaf\xe2\xe3\x69\x37\x3e\x9a\xb6\xe2\xee\x7c\x10\ +\x0f\xdb\xdd\x98\xb6\x97\xd1\xef\xcd\x62\xa7\x3f\xcb\x09\x6e\x97\ +\x89\xae\x26\xbc\x3d\x4d\x82\xbb\x9a\x5e\x33\x4b\x97\x3e\x4c\xc4\ +\xc9\x87\x36\x4c\x9b\xe1\xc7\x9d\xed\xb9\xa0\x24\xaa\xff\x1c\x0a\ +\x0e\x0f\x3e\x3c\x20\x1b\xc8\xe9\x2e\xb4\xe4\x77\xb1\xf0\xd2\x57\ +\x19\x54\xfa\xe4\x72\x32\xe5\x59\x64\x71\xe0\xb7\x66\x97\x8d\xf2\ +\x93\x9c\xaa\x13\x4f\xbd\xb0\x86\xe9\xcc\x83\x5b\x60\x4b\x85\xb0\ +\x73\x67\x1e\xbd\x41\x3f\xf6\x0e\x77\xa3\x3f\xec\xc4\xe4\x7c\x16\ +\xd3\xd1\x3c\x96\x0b\xbe\x8b\xc2\xa6\x5a\xd6\x6f\x4a\xe3\x7c\x50\ +\xcb\x75\xfe\x02\xf2\x95\x8c\x0e\x72\x44\x63\xa1\x10\x2d\x17\xeb\ +\x6e\x54\xd3\x7e\xbc\xb4\xea\xc4\x5b\x3b\x11\xaf\xdf\x98\xc7\xee\ +\x52\x76\x9b\x47\x74\x97\xad\xe8\x2d\xda\x31\x5c\x77\xa2\xd7\x6a\ +\x07\x4f\xa4\x61\xad\x8e\xd2\x7b\x53\x4d\xae\x27\xdb\xfa\x6e\x6c\ +\xc9\xb7\x3d\xe4\x88\xcf\x05\x07\x38\x94\x75\x87\x3a\xc8\x78\xea\ +\xc3\x0b\x4a\x5d\x16\x93\x3a\x4a\xdb\xf5\x02\x5c\xb7\xdb\x8b\x8e\ +\xe2\xb8\x43\xde\x77\xbc\x0b\xef\x74\x78\xc5\x20\x75\x99\x75\x08\ +\xae\x83\xf3\x10\x93\xed\x69\x7c\xdb\x91\x23\x1e\x80\x79\x49\x63\ +\x6b\x08\xb6\xd0\x0d\x38\x0d\x90\x16\xb3\xed\x48\x27\x32\x94\x8c\ +\xcd\xfa\x76\x16\xf2\xb3\x6e\x4b\x40\x11\xf9\x4d\x1f\xf1\x94\xb0\ +\xac\x6b\x8e\x8c\xd4\x1f\x5b\x23\x94\xfa\x75\x7c\xa1\x9b\x47\x20\ +\x0f\x32\xe1\xa4\xa4\x1d\xd1\x3d\xcb\x2d\xbd\x9c\x79\xda\xa0\x2e\ +\x73\xbe\x0a\x4a\xf6\x44\xed\x62\x17\xe4\x58\x46\x6d\x7b\x78\x95\ +\xc6\x74\x1d\xea\xf4\x3c\x69\x46\x1d\xf9\x89\x36\x58\xe0\x36\x9e\ +\xf5\xe9\x3c\xa9\x9f\xc1\xc0\xdf\xa5\xe4\x0e\xec\xba\x0e\xb8\xd6\ +\xf8\x7c\xf0\x22\x53\x2f\x4e\xcf\xce\xe3\xe1\x49\x15\x07\x5f\xfd\ +\xb9\x78\xed\xeb\xdf\x8c\xf6\xe1\x8e\xda\x21\x4f\x4d\xb0\x6d\x4b\ +\xce\x35\xa0\x51\x01\xd0\x8d\xb2\x4f\x43\x4d\xde\x4e\x69\xf8\x04\ +\x7e\xc3\xf3\xe2\x3e\x8d\xbf\x81\x06\x7e\x1a\x81\xeb\x0c\xc0\xf9\ +\x09\x6c\x4e\xa2\x3c\x19\x36\x8b\xe2\xf2\xe0\xe0\x85\x86\x5c\x6f\ +\xbd\xa9\xb5\x68\xc5\xe5\xe8\x83\x78\xf8\xf8\x77\xe2\x6c\xf5\xed\ +\xd8\xd9\x5b\xe8\x5a\xce\xc6\x38\xf1\x0b\xf5\x25\x5c\x1b\xd5\x3f\ +\x6b\x7c\xe5\x27\xda\x24\x20\x37\xd4\xf2\x49\x35\x6e\xec\xf0\x98\ +\x0b\xf9\x1e\x6f\xd0\xc3\x5c\xe5\x47\x88\x23\xfd\x5b\xf6\xfd\xa9\ +\x83\x31\xe9\xeb\x1b\x86\x08\xc3\x2b\xf7\xd4\x86\x1a\x2c\xa4\x2d\ +\x38\xb0\xb9\x7e\x0a\x7c\x8d\x95\x9f\x65\x82\x90\xce\xd7\x64\x40\ +\x88\xc7\x44\x0a\xfb\x75\x91\xce\x18\x5d\x72\xb3\x8c\xd4\x44\x7b\ +\xd3\x4c\xb8\x37\xbc\xc4\xec\x8d\x35\x5d\xef\x78\x1a\x2d\x5f\xd3\ +\x08\x1d\x9a\x78\x14\x57\x6f\xa8\xd9\xd3\x81\xbc\x73\x3c\x29\x84\ +\x34\xe0\xa0\xa4\x33\x1f\x32\x32\x3d\xb8\x75\x10\x43\x0e\xef\x92\ +\x97\x74\xde\xd0\xa1\xc4\x4a\x88\xbd\x3c\x2e\x20\xd2\x7c\xb8\x44\ +\x4c\x53\x3c\x3e\x1b\x7f\x06\xe4\x08\xf7\x18\x57\x36\xcc\xf1\x27\ +\xfa\x2f\x63\x3e\x5a\xc4\xf8\x72\x19\x67\x8f\xe7\xf1\xe4\xf1\x24\ +\x2e\x4f\x08\x93\xae\x6e\x1b\x5c\xdb\xd7\xba\xe6\x6b\x1c\xc5\xe6\ +\x1a\x4f\xdd\x6c\xdd\x1b\x91\x3a\x2a\x20\x79\xf4\x19\x6e\x66\xf4\ +\x1b\xf2\xea\x26\xe7\x0d\x13\xd1\x18\x83\xd1\x47\xb1\x11\xc1\xb8\ +\x8c\x78\xf7\x3d\x85\x3f\x45\x96\x32\xa4\xd4\x02\x74\x68\xe4\x91\ +\x5e\x02\x48\xc9\xa0\x26\x6e\x32\x4c\x5e\x97\x17\x9b\xd6\xbc\xe4\ +\x45\xbc\xa3\x53\x7e\x6e\xe6\xa8\x3d\x33\xae\xa4\xfe\x16\x0b\x39\ +\xd9\x1f\xfb\xf2\x66\x00\x57\x44\xd9\x28\x55\x0a\x67\x61\xc5\xf9\ +\x53\x6f\xe9\xa7\xac\xc4\xe9\x17\xd9\xac\xcb\xef\xa2\xa9\xcf\xf4\ +\xd8\x46\xb8\x5f\x19\x58\xc6\xa2\x8a\xa7\x3b\x74\xf9\xbd\x41\x23\ +\x3a\xb6\xc1\x16\xc4\x17\x9f\xb2\xd8\x56\x75\x18\x10\xcd\x63\x22\ +\xd3\xc8\x53\xfa\xe3\xcb\xb1\x87\x84\x22\x59\x2e\x70\x82\x29\xa7\ +\xf6\x49\x6b\xc0\x4e\x16\x59\xe2\xad\x7b\x1d\xce\x78\xcb\xa8\xe3\ +\x2d\xb7\x8e\xae\xd3\x92\x0e\x5a\x46\x6c\x36\xbb\xa0\x6e\xf0\x3a\ +\x9c\xe9\xed\xd0\xdd\x3e\x71\x2a\x8b\x71\xe9\x0c\xaf\x0e\x42\xe5\ +\x2b\x46\x32\x32\x2e\x5b\x81\xc7\x19\xe8\x52\xe4\xc2\x6c\x12\x3f\ +\x13\xc5\x6f\xb2\x05\x9b\x66\xb3\x6d\xfb\x46\x32\xec\x32\x99\x55\ +\xf6\x57\xd8\xe3\x7f\xe8\x99\xdc\xf1\x99\xa7\x7c\xc7\x65\x3c\x75\ +\x45\xbd\x70\x9f\x50\xb6\x65\xf2\xcf\xba\xb5\x63\xac\x24\x7a\xaf\ +\xdb\xf7\x6b\x20\xfd\xb4\x9a\xc7\x51\xe2\x53\x5b\x82\x97\xb6\xc9\ +\x93\x8a\x4b\x55\xde\xf8\x62\x1d\x77\xde\x1f\xa9\xed\x1d\xc5\x97\ +\xdf\xfe\xf5\xf8\xca\x97\x7e\x2d\x86\xbd\x1b\x3e\xbf\xb0\x01\x25\ +\x76\xd5\x96\x73\x01\xdd\x8a\xe5\x1b\x68\xe0\x73\x01\x4d\x6b\x6f\ +\xa0\x81\x17\x07\xcd\x86\x5a\x03\x0d\x7c\x8e\xa1\x39\xf9\x5f\x30\ +\x6c\x1b\x74\x7b\xb4\xf2\xe7\x18\xfa\x47\x1f\xd8\xfc\x64\x35\x47\ +\xea\xed\x3c\x59\xa2\x61\x62\x53\x3d\xbe\x1d\x67\xdf\xf9\x17\xb1\ +\x38\x7b\x14\xc3\xa3\xc3\xd8\xe9\xf7\x98\xf7\x28\x01\xd3\x23\x79\ +\x2c\xea\x54\xcc\x8e\xeb\x8d\xb3\xbc\x43\x9a\x05\x06\x7f\x5f\x21\ +\x57\x26\xc4\xcb\x62\x06\x8b\x0e\x2c\x56\xe4\x02\x81\x37\x82\xc8\ +\xd9\x0b\x18\xa4\x41\x0b\xf8\xf0\x72\x7a\xe3\x45\x1b\xc2\xe6\x81\ +\x9c\x7c\xd9\x4d\xc9\x41\xd3\x21\x17\x99\x08\x97\x34\x45\xde\x86\ +\x1f\xc6\x14\x9c\x9e\xf5\x48\xbe\xfc\xc6\x9a\x62\x98\xb9\x83\x14\ +\x3f\xef\x42\xde\xd2\xad\x96\xe5\x72\xa4\x6f\x3e\x68\xa4\x71\xd2\ +\xa2\x4b\x49\x93\x8b\x32\x75\x3a\x58\xf0\x6d\x39\x39\xc8\x49\x37\ +\x6e\xc7\x2f\x43\x1b\xbc\x1c\xd2\xcb\x72\x3a\x6f\x11\x52\xb6\xf4\ +\xa9\xe9\x1b\x5d\xeb\x74\xc9\x03\xc9\xb6\x52\xd6\x8e\x36\x4d\x84\ +\x52\xe9\x44\x53\x56\x16\x80\x78\xfd\x92\x17\xa5\x28\x93\xaa\x74\ +\x5e\xad\x63\xbc\x1e\xc7\x43\xd5\xf3\xc3\xd9\x3a\x6e\x2f\x3a\x71\ +\x77\xdc\x8a\x87\xd1\x8d\x99\xd2\x54\xed\x75\xf0\x3a\xc8\x7e\xaf\ +\x8a\x81\x66\xbf\x83\xbe\x26\xb5\x3c\x61\x53\xee\x0e\x46\x38\xd9\ +\x78\xe2\x4c\x5e\x04\x94\x26\x5b\x90\x8e\xf0\x14\xa0\x6d\xc1\x47\ +\x54\xbe\x2a\xaf\x10\xed\xe5\x84\xda\xe9\x72\xce\xbb\x05\xa5\x8c\ +\x85\x98\x29\x44\x63\x72\x6d\x9c\x24\xc8\x2b\x93\x66\x2f\xa0\xa9\ +\x8c\x44\xa8\x2e\x6b\xb3\x01\x36\x8b\x70\x5a\x2d\x8b\x17\x6b\x19\ +\x81\x3b\x9f\x07\xfd\xa1\x17\x69\x16\xb3\x2a\x16\xb2\xd3\x6c\x3a\ +\x8b\xf9\x84\xaf\xe1\xb3\xf0\x92\xe9\x59\x74\x61\xc1\xc5\x13\x74\ +\x05\x24\x0a\x35\x72\xe1\x6d\x25\x0d\xe4\xed\xac\x3b\x71\xd4\xee\ +\xc5\xeb\x07\xb3\xb8\x25\x3b\xc9\x74\xd1\x92\x98\x9e\xce\x97\xa1\ +\x6c\x3b\x68\xf5\xa3\x87\x91\x8a\xee\xf5\x02\x03\xa1\x61\x9b\x4d\ +\xaf\xf2\x5a\x9c\xb2\x68\xe6\x8d\x32\x36\xc6\xfc\x1a\x9c\x8c\xef\ +\x7a\xa3\x8c\x27\x08\xdb\xbe\x43\x9c\xbb\x7e\x09\xb7\xc5\xc3\xdd\ +\xbd\xf8\xf0\xd5\x77\x5a\x7b\x01\x44\xe5\x48\xdb\x93\x2b\x2e\x01\ +\x0c\x75\xec\x17\xb7\x21\x6e\xf0\x2b\xdf\x76\xa4\xa0\x26\xe8\x28\ +\xcf\xed\x32\x43\x72\x35\x2e\x70\xa4\xc2\xc9\xaa\x98\xab\xfa\xb2\ +\x04\xeb\x52\x47\xab\xee\x84\xd4\x49\x12\xa8\x23\x78\x4b\x4a\xf3\ +\x13\xca\x34\xae\x6f\x57\x0c\xbc\xaa\x02\x50\x2a\x58\x34\xda\xb7\ +\x5b\x80\x70\xd2\x92\x2a\xd3\x21\x93\x05\x34\xfc\x74\xc8\xa5\x1e\ +\xfc\xf4\x1c\x8b\x73\x65\x35\xa8\x7e\x62\x6d\xa3\x27\x3c\x8e\x2a\ +\x32\xe0\x21\x0b\x8b\x48\xfb\xe6\xc2\x1d\x0d\x25\xcf\x87\x6c\x3f\ +\x29\x9f\xcd\xba\x35\x0b\x49\xdd\x5e\xd6\x9b\x5c\x6e\x50\x97\x8d\ +\x32\xf4\x76\x3e\x9d\x98\xab\x0d\xde\x7d\x70\x1a\x3b\xb7\xde\x89\ +\x1b\x5f\xf9\x66\xec\xbe\xf3\x3a\x0d\x4d\xf1\xe2\xb7\x3a\xe2\xc4\ +\xdf\xae\xa7\x67\x20\xcb\xfb\xb4\xff\x99\xa1\x4e\xb4\x0d\xcf\xa3\ +\x01\xdb\x82\x9f\x17\xdf\x40\x03\x7f\x1d\xe0\x13\xdb\xb7\x22\x38\ +\xe9\x36\xed\x7c\xbb\xc1\x27\x38\xda\x9d\x8b\xae\x11\x0b\xae\xd9\ +\x11\x67\xc7\x7f\x16\x77\xee\xfe\xbf\x63\xd6\x79\x37\x06\x47\x3a\ +\xef\xa3\xef\x1b\x27\xf2\xca\xa4\xa3\xce\x67\xbe\xd9\xc9\x59\x9f\ +\x7d\x11\x1b\x4a\x3a\xc7\xe5\xec\xb3\xa1\x51\xae\xad\xc8\x46\x8d\ +\xec\xbc\xb8\x56\x11\xce\x31\x48\x0d\x84\xf3\xda\x20\x16\x5f\x06\ +\x33\x0e\x52\x8e\x09\xb6\xc2\x76\xd0\x12\xaf\xa9\xc6\x49\x4b\x98\ +\xbc\x74\x7d\xe1\x12\xe3\xa4\x19\x2c\xf1\x85\x06\xc0\x83\xc7\x4f\ +\x44\xef\xa1\xc8\x27\x5e\xac\xd6\x91\x6f\x97\xf1\x7e\x03\xfa\xca\ +\xca\x71\x0a\x7b\xe3\x85\xb4\xd8\x82\x27\xd4\x32\x8d\xd3\x22\xaf\ +\xa4\x07\xc9\xf1\x5f\x86\x8d\x1a\x27\x5d\xe2\xd8\x49\xa2\xe4\x27\ +\x5e\xa7\x47\x96\xe3\x09\x43\x57\x38\x69\xd2\x53\xe3\x1f\xae\xe5\ +\x29\xcf\xcc\xf6\x09\x03\xf6\x71\x4a\xcf\x7b\x2a\xad\xe3\x7a\x6e\ +\x7d\xb9\xde\xab\x8a\x4c\xe3\x9b\xab\x55\xb5\xd2\x98\xa1\x8a\x8b\ +\x93\x79\x9c\x3e\x99\xc5\xf9\x13\x5e\x0f\x39\x4f\xb9\xe4\xa3\x8e\ +\x82\x31\x0f\xfd\x7a\xbe\xc2\x30\xfb\x0a\x80\xba\x4d\x0c\x3e\x0e\ +\x68\x95\xba\xf9\x28\xcf\x4e\xbf\xfa\xbb\xb3\xde\x10\x72\x5f\x95\ +\x72\xea\x7e\x1e\xbe\x3c\x50\x1e\x64\xeb\x50\xc2\x9b\xf2\x94\xe8\ +\x2b\xc0\x06\xd9\x76\x50\xd7\xfd\x9d\xdb\x1b\x76\x14\xc1\x95\x6e\ +\xcc\xb2\x08\x91\x66\x33\x0c\x80\x05\x1b\x89\xcf\x36\x92\x2d\x78\ +\xcd\xb6\x6d\x83\x3c\xb3\x14\x3d\x8b\x1c\xab\x85\x7c\xf2\x25\x56\ +\x72\xd9\x38\xe3\x9b\x68\x5d\xbe\x8d\xa6\x71\x26\x9b\x25\xfe\x6e\ +\x1a\xe5\xf4\x66\x19\xe3\x19\x54\x90\xc4\x52\x56\x97\x59\xdd\x27\ +\xf6\xf0\xc6\x0c\xbc\xb6\x47\xc6\xdb\x19\x07\xc9\x7c\x92\x9e\x34\ +\xa1\x0c\x46\x9f\xa2\x63\xd3\x12\xb0\x97\x61\x2b\xec\xf8\x12\x95\ +\x75\x91\x12\xc4\x44\x9c\x7c\xe2\x36\x79\x2b\x4d\x5d\x9f\x25\x6d\ +\xca\x82\x94\x29\x6b\x7a\x2d\xc9\x69\x40\x68\xb3\xc9\x8a\xf1\x44\ +\x4f\x87\x40\xf3\xd8\x66\xc5\x1e\x70\x39\xbe\xce\xd7\x41\xe7\x95\ +\xb6\xcd\x70\xd2\xd0\x49\xe9\x4a\x36\x59\x26\xf0\x3a\x2d\xb2\xf1\ +\x15\x96\x6c\xf8\xc1\xe1\x50\xb1\xf0\x52\x6e\xc1\x89\x73\x11\x8b\ +\x1e\x99\xa6\xf0\x09\xa1\x0c\x5c\xf3\x88\x60\x98\xc3\x48\x87\xc8\ +\x1c\x22\xb1\x71\x86\xa3\x1c\xd9\x7e\xed\xa0\xd7\x61\xf3\x74\xa3\ +\xdf\x1f\xc4\x70\x30\x48\x5e\xf2\x94\xe3\x07\xb0\x91\xce\x4d\x7f\ +\x55\xd5\x8a\x27\xc7\xa3\x78\x72\xbf\x13\x2f\x5f\xfb\x85\xf8\xf2\ +\x5b\x7f\x33\x5e\xbd\xf5\x55\xb5\x43\x5d\x68\xd4\x48\xb2\x1c\x58\ +\x9a\x32\x82\x83\xd5\x78\x03\x0d\xfc\x74\x43\xd3\xca\x1b\x68\xe0\ +\xc5\x41\xb3\xa1\xd6\x40\x03\x9f\x63\x68\x4e\xfe\x17\x0c\xdb\x06\ +\xad\x47\x2b\x7f\x8e\x91\x3f\x69\x50\xf3\xe9\xc3\xfa\x5a\x28\x1c\ +\x3f\x5a\x2d\x6e\xb8\x99\xb8\x6a\x82\xe2\x09\xae\x26\x20\x8b\xe3\ +\x3b\x71\xf1\xed\xdf\x89\xe9\xf9\x71\xec\x5d\x3f\x8c\x81\x26\xb3\ +\x35\xb3\xa6\x2c\x9a\x20\x33\x31\xae\xfc\x8a\x40\x36\xd2\x34\x2b\ +\xc9\x09\xb2\x9c\x17\x76\xbd\xe0\x23\x99\x72\xf5\x53\x55\x5e\xf4\ +\x51\x06\x9e\x28\xcb\x67\x11\x84\xbb\x09\x45\x35\x2f\x3a\x24\x94\ +\xb0\x17\x50\x92\x97\xa9\x0d\x8b\x0f\x4e\x5b\xe2\x29\x6d\xbd\xd0\ +\x61\x3e\x39\x17\xa0\x9e\xec\x13\xb6\x4f\xbe\x88\xdd\xe2\x41\x57\ +\x70\x36\xd7\xe4\x11\x4e\x1e\xf4\x87\x90\x3c\x35\xaf\xd3\xd6\x79\ +\x11\xb4\x3e\x46\x44\x5a\x6d\x95\x43\xe1\xc2\x4f\x1c\x4f\x26\xd5\ +\x93\x53\xd2\x00\xa9\x79\x99\xb6\x09\x35\x55\x3e\xb8\x52\x0a\x8a\ +\x9c\x82\x97\xbf\xf1\x5c\x38\x22\x27\x85\x52\x11\xb9\xd4\x3d\xcb\ +\x46\x79\x48\x0f\x5e\x68\x49\x76\x7a\x32\xca\xcd\x37\x08\x2c\x52\ +\xc9\x47\x07\xd1\xd8\x4c\x43\x72\x45\x12\x09\x9c\x2a\xd4\xd2\x64\ +\x73\xb8\x58\xc5\xa5\xf8\xa6\xcb\x69\x8c\xe7\x55\x3c\x5a\xe4\x53\ +\x6b\x8f\x16\x83\x38\x56\xba\xd3\x65\x37\x2e\x34\x21\xed\x76\xe7\ +\xd1\x6d\x2f\xd4\x56\x34\x31\x96\xeb\xb1\xa9\xd6\xed\xe4\xa6\x00\ +\xb9\x97\x09\x2b\x05\xf5\xc4\x7c\xad\x49\x31\x24\x39\x26\xb3\xd8\ +\x67\x33\x19\x87\x0c\x6e\x06\xf0\x9c\x28\x13\x59\xa2\x4b\x69\x48\ +\x95\x36\x46\xf7\x32\xdf\x17\x90\x8f\xbc\x8d\x30\xfe\x6d\x95\x1b\ +\x6e\xc5\xba\x2e\xf5\xdf\x38\xec\x26\x1e\x76\x44\x32\xca\xc9\x69\ +\xeb\x2c\x5e\x32\xd9\x67\xc1\xc6\x33\x7e\x45\xce\xab\x45\xd9\x50\ +\xcb\x85\x81\x8e\x12\xe7\x02\x0a\x80\x8d\x57\x31\x57\x60\xb1\xe8\ +\x47\x6b\xde\x89\xa3\x55\x37\xae\xb5\xbb\xf1\xf2\xee\x2a\x6e\xee\ +\xac\x63\xaf\xb3\x88\x9d\x65\x3b\x3a\x9a\xe4\x77\x54\x05\x83\x75\ +\x3f\xfa\x2b\x34\xec\x46\x87\x5d\x18\x97\x5d\xb2\xd9\x60\x91\xeb\ +\xf6\xbb\x31\xec\xf7\xa2\x27\xe3\xb2\xa1\xc6\x06\x9a\x3f\xd4\xce\ +\xab\x02\x65\xdf\x5e\xb7\x67\x3b\x73\x97\xb6\xef\xc4\x16\xee\x4d\ +\x33\x2f\x30\xb0\xf8\x50\x36\xd0\x2c\x57\x82\xad\xa6\x14\x74\xa1\ +\x85\x53\x60\x9c\xbd\xb4\x11\x11\xae\xa6\x44\x3f\x11\x6c\x62\x98\ +\x6a\x71\x26\x3c\x9b\xc0\xb5\x94\x68\x1d\x95\xcc\x0e\x66\x1e\x4f\ +\xa7\x31\x7f\xfe\x37\x6a\x6e\x0e\x24\x50\x31\x1c\xa7\xa3\x8b\x82\ +\x4f\x34\x74\xd5\xe3\xd5\x86\xaa\x5a\x49\x32\x5a\x0e\x88\xdb\x01\ +\x8b\xce\xf5\x79\x21\x9f\x33\x98\xf3\x9d\x76\xe4\x34\xf2\xa8\x5b\ +\xeb\x58\x9c\x1b\xac\x71\x3c\x2a\xa8\xd8\x14\x31\xc6\x2d\x4d\x6c\ +\x49\xcf\x36\x2f\x5e\x9b\x3c\x17\x7a\xf0\xcd\xeb\xe4\x25\xbd\x9c\ +\xf3\xa2\xc5\x41\x63\xd3\xb3\xa7\xfa\x1e\xf2\x0a\x48\xb5\x21\xa7\ +\x57\x4a\x54\x95\x6b\x75\x7a\x51\x2d\x17\x71\x7a\x76\x11\xb3\xf5\ +\x30\x0e\xbf\xf8\x0b\x71\xf3\x17\x7f\x96\x8c\xbd\x28\xed\xb6\x9a\ +\x59\x3f\x0d\x28\x07\x28\x0e\xb4\x66\xa9\xc9\x7f\x21\xb0\x2d\xfc\ +\x79\x3a\x35\xd0\xc0\x5f\x27\xd8\x3e\x71\x0a\x10\x74\x33\xf7\x05\ +\xa6\x0e\x6d\xa8\x3a\xf2\x24\x84\xce\x5d\xae\xf1\xab\x76\x1c\x9f\ +\xfe\x51\xdc\x7b\xf4\xdf\xc7\xbc\x7b\x27\x86\xfb\xba\xc6\x8b\x96\ +\x32\x75\x15\xd3\x49\xbe\x50\x5f\xbc\x54\x3f\xcb\xa6\x5a\xee\xca\ +\xd3\xf7\x2f\x63\xb1\x5c\xea\xfc\xd6\xd8\x8a\x77\xe5\x71\xcd\x12\ +\xbd\xee\x03\xf3\x09\x2c\x68\xba\x82\x95\x6b\x9b\xfb\xff\x8d\x1e\ +\x70\x09\x4c\x27\x95\x6f\x1b\x41\x74\xc1\x8d\xf8\x5a\x59\x5f\x17\ +\x53\xba\x40\x3a\x39\x2f\x45\xae\xb8\x5e\x41\x94\x0f\xcd\x37\x09\ +\x29\xcc\x86\x15\x60\x79\xa4\x4f\xb2\x0f\xf8\xc9\x8b\x9e\x84\xc1\ +\x3d\xfc\xb2\x63\x38\x42\x12\x87\x45\x77\x58\x4e\x43\x0f\x31\x33\ +\xae\xcc\x8d\x38\x12\x91\x0e\x70\x50\xf1\xe9\xd7\x72\x0b\x4d\x0a\ +\x12\x46\x06\xfc\xd0\x3c\xba\x01\xd7\xc1\xf2\x2c\x9b\x14\xe9\x99\ +\x17\x1e\x99\x16\x1e\x7f\x83\x4d\xbe\xd3\x16\x19\x30\x82\x73\x53\ +\x8e\x8d\x80\x1d\x49\x27\x22\x37\x5a\xb1\x38\x4f\xdf\xef\x6b\x3f\ +\x32\x94\x09\xaf\x86\xa6\x1e\x57\xab\x8e\x6f\x40\xe3\xe9\xf6\xd1\ +\xf9\x2a\xce\x4f\xe7\x71\x79\x56\xc5\x74\xb4\x8c\xf9\x18\xfb\x6b\ +\x70\xa1\x7a\xa5\xfe\xbd\x59\xa0\x7a\xb7\xef\x8d\x31\xf4\x23\x63\ +\xfd\xe5\xe8\x0e\x14\x72\x3e\x40\x7a\xd4\x26\x0c\xa9\x57\xf6\x3f\ +\xee\x12\x2c\x27\x37\x26\x90\x9b\x7d\x0e\xe9\x01\xca\x6e\x48\x51\ +\x02\xd2\xcb\x2b\x32\xcd\x80\xa0\x22\x97\x48\xa7\x71\x14\x34\x85\ +\x15\x40\x87\x94\x05\x4d\x79\x40\x15\x9a\xa6\x4a\x7b\xb8\x5e\x65\ +\x13\xfa\x28\xdb\x54\x8e\xf2\x66\x39\xc4\x23\x62\xad\x19\x24\xa9\ +\x1c\x6d\x6f\xa2\x69\xcc\xc3\x26\x1a\x1b\x68\x9a\x8b\xf8\xa9\x34\ +\x9c\xc7\x37\xe2\x55\xb9\xec\x9c\xd0\xc9\x5d\x66\xfa\x4d\xe8\x94\ +\xbd\xde\x50\x73\x5e\xd8\x58\x3e\xf8\x26\x7f\x70\xf8\x8b\x10\xff\ +\xd8\x08\xb3\xfd\xc1\xe5\x8a\xef\x7e\x9c\x7f\xc9\x43\x9e\xc3\x1e\ +\x7b\x14\xdc\x34\xa7\x41\x17\x78\xf1\x15\xb6\x0e\xc9\x97\xfd\xfa\ +\x96\x3c\xf9\x89\xea\x40\x0c\x81\x8d\x3d\x0a\xd5\x24\x68\x69\x29\ +\x82\x35\xbd\x8e\xaa\x65\xd4\x1b\xac\x19\x0d\x6e\x54\xa0\x3c\x8b\ +\x5c\xcb\x57\xfd\x64\x18\xfb\x67\x7a\xbf\x8a\xdd\xe1\x22\x07\xba\ +\x7f\xc4\x2b\x4c\x01\x75\x9d\xc9\xb1\x0e\x71\x66\x48\x5c\x07\xfb\ +\xe2\xe1\xf2\x85\x1d\x28\x6a\x96\xb7\xe6\x49\x3e\xdb\xc4\xfc\x99\ +\x86\x96\x53\xd7\x8f\xe3\x74\x4e\xd6\x63\x60\x67\x29\x0e\xe8\x76\ +\xa4\x91\xdf\xd1\xfc\x83\x4d\xb5\x5d\xbf\x36\x9b\xa7\xfb\xd5\x76\ +\x38\x28\x3e\xdb\x94\xa6\x22\x1a\x3b\xf3\xb4\xec\xe5\xc5\x32\x1e\ +\xde\x99\xc5\x6a\x71\x33\xbe\xf0\xda\x6f\xc6\xcf\x7e\xf5\x6f\x28\ +\xb6\x27\xbb\xa9\x71\x52\x16\xae\x01\xa9\x45\x6d\x0d\xb9\x06\x1a\ +\xf8\xe9\x86\xa6\x95\x37\xd0\xc0\x8b\x83\x66\x43\xad\x81\x06\x3e\ +\xc7\xd0\x9c\xfc\x2f\x10\x7e\x02\x63\xd6\x03\x1b\x44\x3c\x0f\x7f\ +\x3e\xd4\x1c\x9f\x3d\xe3\x67\x65\xb2\x60\xc1\xeb\x34\xe6\x0f\x3e\ +\x8e\xb3\x3f\xf9\xe7\xb1\x1a\x9f\xc6\xce\xfe\x81\xbf\x99\xd6\xd6\ +\x64\xc3\x9b\x39\xfc\xbd\xa8\x53\xc5\xaa\x5a\x68\x3e\xc5\x42\x01\ +\x2b\x0d\x4c\x92\x59\xc4\x61\xd1\x62\xe9\x0d\x26\x2f\xec\xc8\xf7\ +\x86\x1a\x69\x3d\x9b\x86\x5e\xe2\x4c\x93\x3c\xe3\x68\xc0\xf4\x25\ +\x27\xeb\xa4\x23\x4e\x88\xf9\xcc\x8b\x8f\x02\x45\x86\x75\xc1\x67\ +\x02\x04\x4d\xbf\x96\x0a\xe1\x89\x91\xe8\x5e\x0c\x81\x89\x82\x15\ +\x7e\x74\xf5\xe6\x17\xf2\x91\x5d\xeb\xe4\x30\x0c\xa9\x07\x71\xd0\ +\xed\x84\x3f\xbd\x71\x07\x0b\x69\xc8\xc7\xa8\xe9\xe8\x9e\x6c\xc9\ +\xb7\x6d\x5b\x4f\xbc\x99\x2d\xe2\xe0\xd9\x8e\xd5\xbc\x8f\xc9\x2b\ +\x14\x44\x1b\x92\x2d\x2b\x08\xa1\x75\xd8\xf9\xca\x11\xe2\x4f\xe6\ +\x84\xec\x11\x87\x97\x9b\x99\x75\xb9\xb0\x07\xfa\x13\x97\x1b\x9c\ +\xf0\xb2\xe9\xb3\xcc\xc5\x1e\x22\xa8\x3f\x95\x87\xa7\xd3\x16\xa4\ +\x95\x3f\x5b\x2d\xfc\x24\x4c\x0b\x3e\xd5\x6d\x35\x97\x13\xbd\x52\ +\x78\x52\x55\x31\x11\xff\xe3\x79\x2b\x1e\x55\x11\x0f\xab\x6e\x1c\ +\xaf\x3a\x71\x81\x5c\x95\x67\xd9\x5e\xc5\xa0\x57\xb1\x9f\xe6\xcd\ +\x1f\x36\xd8\xd6\x6c\xb0\x91\x35\xb6\x90\x9f\xa1\x82\x8b\x06\x62\ +\xbc\x1c\xf0\x32\x20\x8f\x34\x92\x5d\x4f\xbc\x25\xc5\x74\x98\x54\ +\x32\x4f\xd6\xd3\xee\x49\x36\x68\x52\x6e\x4f\x6e\x83\xc1\x83\x8d\ +\x36\x44\x0b\x48\x10\x91\x45\x31\xee\x94\xb7\x20\xfd\x91\xab\x56\ +\x62\x1b\xb1\x48\xe9\x49\xbc\xe8\xbc\xba\x08\x7b\xb5\xd9\x14\xec\ +\xb0\xe0\x90\x62\xf8\x9e\xdc\x8a\x8d\xb2\x65\x2f\xba\xcb\x4e\xec\ +\xad\x3b\x71\xad\xd7\x8a\x9b\x3b\x11\x47\xbd\x6e\x1c\xca\x06\x7b\ +\x9a\xd4\x63\x8a\x9d\xe8\x44\xb7\xdd\x8d\x3d\xf9\xbd\xde\x30\xfa\ +\x6c\xda\xe9\xd7\xe9\xb3\x19\xc9\x82\x91\x08\x2c\x24\x08\xef\xf5\ +\xea\x57\x34\x76\x44\x92\xdf\xe9\x04\xaf\x76\x34\xcd\x0b\x45\xe2\ +\x67\x31\x00\x3b\x7a\xf5\xa6\xd8\x09\x27\xc5\xd2\x66\x00\x3e\x16\ +\x4b\x0c\x13\x51\xfb\xc5\xda\x1b\xa8\xe3\x37\xb0\x49\xff\x09\xf0\ +\x9c\x68\x48\xc8\xd9\x86\xa4\xe9\x98\xff\x4d\xbc\xf3\xd7\x7f\x3b\ +\x6c\xbc\xce\x57\x81\x44\x4b\x18\xd8\xa0\x05\xd9\x8e\xdf\xd6\x17\ +\x7c\x13\x94\x6d\xa8\x54\xc0\x8d\xc0\x88\xab\x3b\xcf\xdf\x6c\x1f\ +\x3e\x1f\x9e\xc9\x33\xed\x99\xc1\x5a\xbf\xab\xf6\xe8\x40\xda\x9f\ +\x58\xda\x2b\x3c\xf8\x30\x96\x45\xcc\x5a\x86\x9a\x52\xb4\x54\x77\ +\x0e\x96\x74\xfe\xd5\x32\xe4\xf3\x24\xa1\x5f\xff\xc8\xd3\x6a\x3d\ +\x5e\x03\x99\xbb\xb9\xe8\x47\x7b\xec\xf4\x06\x2a\xc2\x3a\x8e\xcf\ +\x2e\x62\x3c\x6b\x45\xff\xd5\x6f\xc4\x2b\xbf\xf0\xf3\xd1\x3d\xdc\ +\xd1\xb5\x59\xd7\x39\xb5\x1b\xb4\xd9\x18\xcf\x0a\x9b\xb0\x01\x9f\ +\x2f\x5b\xb4\x1a\x85\xdc\x40\x03\x0d\x14\xa8\xcf\x93\x67\xfd\x02\ +\x9c\xe3\x5c\x4e\x36\x51\x5c\x47\x36\x11\xc2\x39\xff\xfc\x64\x5a\ +\x15\x0f\x1e\xfe\x61\xdc\x7e\xf0\x4f\x22\x06\x0f\x63\xff\x50\xe7\ +\xf5\xba\xa7\xbe\x44\xe3\x28\x2e\x0a\xa4\xd2\xf8\x8a\xcd\x72\x5d\ +\x8d\x1c\xe6\x5c\xf7\x46\x0d\x3c\x6c\x46\x40\xf7\x85\xdb\x57\x2c\ +\xf3\x78\xfc\xa2\xdc\xe9\xab\xea\xb1\x55\xd2\x12\xac\x0d\x7f\x48\ +\xf4\x73\xfa\xa5\xae\x8e\x31\xbf\x2f\x11\x45\x0e\x7c\x19\x53\x7c\ +\x98\xc9\x0a\x50\x3f\xe3\x34\x22\x5a\x92\x02\x6c\xe6\x99\x4f\x81\ +\x32\x2c\x32\x58\x0e\x4e\xe9\x73\x0c\x82\x8e\x99\x33\xe1\x85\x22\ +\xfc\x3a\xe4\x92\xce\xaf\x79\x24\xce\xe3\x38\xe4\x92\xce\xdc\xe6\ +\x29\x59\x6c\xe4\x23\xd8\x6a\xc1\x57\xe4\xa0\x17\xc7\xbc\x4e\xd6\ +\xb8\xf8\x1c\x87\x1c\xd1\x24\x9f\x74\xb5\x9d\xea\xfc\xe1\x20\x02\ +\x19\xf0\x7b\x4c\x04\xaf\x78\x1c\x2f\x39\xb0\xa4\x2e\xe0\xa4\x85\ +\x84\x1c\xf9\xde\x40\x5b\x4a\xb2\xd2\x3b\xad\x88\xb0\x19\x17\x8d\ +\x72\x59\xbe\x6a\x51\xe3\xa6\xc9\xb8\x8a\xf1\xf9\x32\x2e\x8f\x17\ +\x31\x1e\x6b\xbc\x35\x5b\x47\x35\xd5\xb8\x1a\x26\xd5\x31\x1b\x17\ +\x7e\x85\x21\xfd\x83\xfb\xad\xac\x27\xc0\x1e\x7d\x05\x20\x1d\x0a\ +\x66\x44\x29\x84\x88\x68\xa0\x5f\xf1\xd1\x7d\x8b\x65\x89\x60\x79\ +\x3e\x64\x62\xe2\x0b\xb7\xc3\x25\x28\xc0\x1a\x3a\x52\x5e\xe1\x9b\ +\x7a\x50\xa8\xe6\x85\xe4\xb8\xf4\xdc\x3c\xc9\x34\x53\xc0\x20\xb3\ +\x6e\xec\x88\x0d\x30\x82\xb9\x05\x29\xc3\x1b\x2f\x1a\x4b\xf1\xe0\ +\x77\xa7\x7e\x12\xcd\x4f\xa3\x69\x9c\x43\xd8\x63\x1e\xfa\x34\xca\ +\x20\xbd\x29\x3b\xe9\x5c\x0e\x51\x29\x9b\x50\xd4\xc4\x66\xee\x53\ +\x1d\x2f\xba\x37\xb1\x4a\x1f\x0c\x13\x5a\x91\xdc\x34\xf9\xa2\x65\ +\x58\x51\x85\xbf\xb6\xb9\xd3\x2b\x13\x7c\x18\xb8\xb9\x0a\x39\x1e\ +\x66\x99\x07\xd9\x45\xae\x37\x41\x89\x48\xbd\x2c\x57\xce\xb2\x14\ +\x9d\x9b\x73\xe4\x0f\x90\x4e\x47\x87\x13\xdf\x86\xed\xe0\x55\x12\ +\xf1\xd9\xb6\xa0\x50\x33\x00\x8d\x72\xd3\xda\x01\xeb\x23\xe7\xf6\ +\x2d\x3a\xaa\xd5\x7c\x2e\xbb\xc3\xd8\x20\xcf\x0f\xd3\x4b\xbd\x5a\ +\x06\x0c\x96\x67\x36\xf1\xe9\xbc\xb1\x9c\x8c\x20\xeb\x9a\xaf\x98\ +\x25\x79\x1d\xce\x40\xda\xab\xe4\x0d\x2a\x7a\x96\x9d\xf4\x45\x07\ +\x11\x5c\x57\x8a\xe3\x87\x22\x99\x1c\x5e\xe8\xb0\x6b\x9c\x0d\x2b\ +\x63\x61\xc6\xbc\xb4\x01\x19\x97\x28\x67\x51\xd2\x13\x37\xd0\x58\ +\x69\xc0\xd3\x6a\x3c\xdd\x4f\x7b\xb1\x2c\x2a\x41\x72\x69\x77\xaa\ +\x0c\x36\x49\x17\xd5\x3a\x1e\x3f\x1e\xc7\xe5\xe9\x5e\xbc\x7a\xed\ +\x57\xe3\x6b\xef\xfc\xcd\x38\x38\x78\x25\xdb\xb6\x2b\xf2\x59\x20\ +\xb7\x6d\xbf\x81\x06\x7e\xba\xa0\x69\xd9\x0d\x34\xf0\xe2\xa0\xd9\ +\x50\x6b\xa0\x81\xcf\x31\x34\x27\xff\x0b\x82\x1f\xd3\x90\x0c\x68\ +\x48\x5a\xfb\xc0\x67\x1f\xe4\xfc\x68\x99\x6e\xb8\x75\xc9\x67\x32\ +\xe2\x45\x0e\xe1\xf3\x07\x1f\xc6\xc5\x9f\xfc\x6e\x2c\x46\x27\xb1\ +\x7f\xe3\x5a\x3e\x99\xa6\xb9\xaf\x41\x93\x60\x2f\xee\x54\x6c\xa6\ +\x55\xcc\x90\x35\x31\xce\xcd\x1b\xfb\xb9\xe2\xe0\x85\x04\x31\x16\ +\x3a\x7e\xa1\xb3\xce\x20\xbf\x5e\xf0\xd1\x41\x7a\xc8\x87\xc7\xf2\ +\x39\x66\x1a\xe2\xea\xcd\x9f\xf4\x4b\xd8\xf2\x60\x86\xa7\x4c\xca\ +\x91\x5d\xd2\xd4\x8b\x23\xc6\x6b\x5f\xfa\xd4\xb2\xac\x23\x3c\x04\ +\x84\xe3\x13\xe7\x74\x05\x17\x52\x74\x21\x9b\x4c\x87\x5f\xcb\x34\ +\xaf\x7e\x4e\x97\xe4\x3c\xe4\x6c\xf1\xaa\xd2\x64\x57\xcd\xfd\xe0\ +\x2c\x41\xf9\xf5\x64\xcd\x24\xa6\xa4\x20\x08\xd1\x5f\xf1\xb0\x20\ +\xce\xbc\xc8\x2b\x79\x18\x88\x57\x6c\x06\x2d\x40\x71\xd2\xb5\xc8\ +\x70\x79\xd1\xcd\xf6\x2d\x71\x2a\x63\x2e\x64\x50\x4f\x49\x73\xd9\ +\xf9\xcb\x67\x31\xcb\x8b\x3e\xf0\x2d\x58\xf4\x59\xc6\x62\xb5\x88\ +\x7c\xfd\xa3\xdc\x7a\x19\x33\xf3\x57\x31\x5b\xe6\x06\x1b\x7c\x95\ +\x68\xad\xc5\x32\xe6\xe0\xcb\x2a\xce\x84\xdf\x9f\x75\xe3\xd1\xaa\ +\xe5\x27\xd6\xce\xd7\xdd\x98\xa8\xac\x8b\x0e\x0b\x42\xaa\xf8\x0e\ +\x9b\x6b\xd2\x4d\x13\xe1\x2e\x93\x5b\x0c\xc3\x8a\xc3\x66\x62\xac\ +\xa3\xf8\xd9\x20\x30\x10\x4c\x4b\x38\x98\x5c\x84\xf8\x49\x9d\x0c\ +\xda\x5e\x69\x57\x42\x35\x3f\x7e\xb1\x47\x11\x57\xfb\x75\x90\x75\ +\x31\x02\xa4\x65\xa3\xce\x90\x37\xfd\x67\x5b\x12\x09\x8f\x83\x17\ +\xd6\x64\x17\x88\x6d\x95\x3f\x17\x12\x52\x57\x2f\x78\xb5\xba\xb1\ +\xea\x74\x45\xef\xc6\x40\xc7\x9d\xf5\x4e\x5c\x6f\x0f\xe2\x65\x95\ +\xf1\xd5\x83\x55\xdc\x1a\xb4\x62\x6f\xa8\xc9\x3e\x8b\x45\xab\x41\ +\x0c\x94\x39\xdf\x4a\xc9\xa7\xc9\x7a\xb1\xc7\xa6\x49\xaf\xed\x45\ +\x9c\x4e\x9f\x36\x83\x5d\x58\x50\x60\xf2\x2f\x9f\xb0\xe4\xa2\xa5\ +\x9f\x8a\x42\x67\x5c\x4d\x17\x0f\xed\x08\x1b\xba\x75\x94\x78\xc7\ +\xe1\x13\x56\x28\xc3\x57\x36\xb0\xa9\x45\xb0\x57\x13\x0b\x78\x71\ +\xc6\x11\x25\x9c\x1e\x12\x0a\xf6\x0c\x40\x7e\x46\x86\x49\xcf\x65\ +\x17\xb1\xe6\xdf\xa0\xa9\xdb\x55\x46\x04\x8a\x4f\x3d\x9a\xab\x84\ +\xb7\x61\x3b\xbc\xc1\xaf\xca\x99\xa4\xa4\x5b\x74\xcd\x23\x9b\x5d\ +\x95\x4f\x36\xc0\x4f\x06\x0e\x42\x15\x50\xbe\xe9\x9b\x94\xed\xc9\ +\xb2\x6b\x66\xf9\xf9\xd7\x21\xd3\x39\x00\x2e\xc7\xcf\x7e\x09\x67\ +\x1b\x97\xab\xf3\x56\xfb\x70\x0d\xd6\xf1\xae\x4f\xa1\xae\xfb\x0c\ +\xb7\x68\x57\x6a\x27\xfd\xc1\x30\xba\x7e\xe5\x2e\xbc\x12\x51\x78\ +\xb3\x1d\x76\x63\x54\x4d\xe3\xe4\xe1\x28\xfa\x2f\x7d\x31\xae\x7f\ +\xeb\x17\x62\xf7\xf5\x5b\x3a\x4f\x17\xb9\x69\x47\x02\xab\x5b\x74\ +\xae\x41\x41\x28\x56\x33\x83\x3f\xe4\x1b\x6a\xc2\xb3\xf0\x49\xf4\ +\x06\x1a\xf8\x69\x83\xcd\xc9\x20\x78\xe6\x24\xe1\x94\xbc\xba\x36\ +\x40\x12\xee\x20\x7d\xc7\x4a\xfd\x83\xae\x2f\x4b\x9d\xcb\xcb\x79\ +\xdc\xbe\xff\x4f\xe3\xd1\xe9\x3f\x8b\xc5\xce\x59\xec\xee\xf5\xa2\ +\xaf\x3e\x83\xfe\x85\x9e\x87\xbe\x07\x9f\x6f\xa6\x71\xb3\x0b\x0b\ +\xc9\xde\x88\xc1\xb1\xc1\x26\x5a\xdd\x3f\xb2\xb1\xc3\xa8\x8d\xfe\ +\xdc\x9b\x46\x5c\xab\x2c\x07\x9f\x6e\x4b\xd2\x1c\x4e\xfd\xae\xc6\ +\x4d\xb5\x6a\xd6\x12\x6e\xd3\xb8\x00\x3a\x0c\x53\x29\x8f\x63\xf0\ +\x4b\x39\x0d\xe6\x13\x81\x32\x15\x81\x39\x1e\x82\xae\x9f\x68\xf4\ +\x9b\x44\x95\xe8\xab\xfb\x99\x94\x76\x29\x47\x3c\xae\xde\x48\xe3\ +\xa7\x22\x6e\x9c\x4a\x29\x66\x78\xd2\xd7\x5f\x80\x52\x2a\xaf\x7d\ +\xfd\xe5\xac\x16\x07\x73\xa4\x3e\x2e\x27\x2c\xee\xcb\xd1\x85\x00\ +\xf9\xc2\x46\x4e\xf6\x10\x25\x5c\x3f\xeb\x4e\x18\x5e\xc2\xc8\x21\ +\x4e\xd7\x55\x6c\x0b\x5d\x4a\x11\xbf\x90\x63\x18\x60\x5e\x39\x12\ +\xe6\xd3\x79\x35\xae\xf4\xca\x88\xf1\x94\x75\x71\xa6\x08\xa7\x2c\ +\xc8\x4a\x56\xeb\x58\xe2\x90\xa5\x66\xe1\x9b\x95\x66\xe3\x65\x4c\ +\x46\xb3\x18\x9d\x57\x31\x39\x5f\xc7\x6c\x9a\x37\xed\x48\x7b\x17\ +\x36\x37\x28\xd8\x5c\x60\x5c\x50\xca\x2f\x87\x4f\x7d\xd0\x34\x2c\ +\xd5\x04\x3c\x5f\xf9\x45\x4b\x9f\x03\x4f\x6e\x33\x66\xf1\xd3\x47\ +\xf6\x25\x8d\x48\xcb\x83\x41\x7f\x64\x39\x9d\x83\x10\xf8\x9b\x40\ +\xb9\xa0\x72\x73\x11\x85\x71\x7d\xe0\x84\xf3\xd4\x1e\x94\x7c\xb2\ +\x29\xc9\xd8\x3e\x6d\x01\x4f\xda\xd1\x76\x72\xb9\x04\x75\x5f\xc7\ +\x46\x93\xe6\x1a\x7d\xc6\x3f\x7d\x6e\x1c\x4a\x9f\x71\x91\x37\x50\ +\xd0\x81\x3e\x0f\x5e\xfa\x4f\xc2\x48\xe0\x6f\x72\xea\x88\xab\x79\ +\xec\x24\x77\x43\x77\x54\x1d\x96\x8f\x92\x72\x8c\xb3\xbc\x11\xc6\ +\x46\x1e\x79\x29\xb8\x79\x02\x8e\xbc\xac\x63\xd1\xc3\xfc\x2a\x6b\ +\xa1\x13\xce\x31\x99\xe8\x78\xd0\x1c\xaf\x00\xe2\xdb\xb4\x42\xa2\ +\xa1\xcb\x04\xc6\xb1\x92\x93\x18\xd0\xc5\x80\x0d\x0b\x4f\xa6\x48\ +\x1e\xf3\x3a\x42\x18\x7a\x17\x62\xa6\xa3\x06\x92\x57\x35\xe2\x38\ +\x87\xfc\xbf\xca\x07\x07\xb8\xdc\x4e\x53\xe4\x9a\x0a\x5d\x21\x08\ +\x9b\x81\x71\xf2\x00\x64\xeb\x2d\x74\x17\x09\x1d\x33\xc6\x47\x1d\ +\x2c\xcf\xbe\x7e\xf2\x65\x02\xd3\xdd\x5e\x41\xc9\x13\x79\xc9\xe4\ +\xfa\x36\x4b\x4d\x73\x3a\xd5\x37\x3a\x94\xc4\xb6\xa5\x13\x97\x6c\ +\x13\x75\x1d\xe8\x6f\xbf\xde\xb8\x64\x43\x8e\x74\xdc\x68\x46\x1c\ +\xdf\x07\xde\x19\x0e\x62\xa7\xbf\xe3\x7a\x70\x7e\xa2\x73\xce\xc3\ +\xcf\xa6\x37\x37\xa9\xad\x35\x47\xb9\x1c\x55\x71\xf7\xc3\x4a\x63\ +\xf3\x2f\xc6\x2f\xfe\xfc\xdf\x8b\x97\x8f\x7e\x56\xd7\x8a\xb9\xd2\ +\xf4\x9d\x5f\x5a\x10\xd8\xd6\xa2\x81\x06\x7e\xfa\xa0\x69\xd9\x0d\ +\x34\xf0\xe2\x40\x63\x6c\xba\xce\x06\x1a\x68\xe0\xf3\x08\xcd\xc9\ +\xff\x82\xe0\xc7\x34\xe4\xb3\x03\x1a\xc4\x7c\xb6\x41\x4e\xcd\xf9\ +\xd9\x32\x7e\x4a\xae\x02\x0b\x79\x6c\x07\xcc\xee\xfd\x20\x8e\xbf\ +\xfd\xbb\x11\xd3\xf3\xd8\xb9\x7e\x14\x7b\xbd\xae\xa2\x35\xe9\x11\ +\x8f\x27\xc1\x9a\x88\x2c\x96\x55\xac\xfd\xdd\xb4\xca\x9b\x0c\x4c\ +\x8c\x73\x93\x06\x1c\xc9\x9a\xb5\xc8\xaf\x17\x21\xe8\x51\x88\x63\ +\x35\xc1\x32\x4c\x48\x7a\x4d\x73\x18\x45\x98\xf0\x6c\xe2\x61\x00\ +\x27\x58\x68\x45\x9e\x90\x8c\xab\x65\x96\x49\xba\x79\x4a\x18\x1e\ +\xf3\x6e\xe7\x51\x74\x42\xbf\xe4\x01\x87\x95\x32\xc2\x47\x00\x9a\ +\x70\x26\x50\x0e\x4b\x06\x13\xbf\x12\xa5\x94\xc6\xe1\xc8\x50\xda\ +\xd2\x13\xc3\x32\xb1\xf3\xd4\x4b\x13\xb9\x0d\x8d\x78\x39\xa5\xf4\ +\x2f\x37\xce\x92\x4e\x4c\xbe\x4e\x45\x61\x33\x11\x2e\x31\xf0\x98\ +\x56\x9c\xc2\x78\xe8\x43\x0a\x83\x08\x89\xc9\xe6\x3a\xe6\x93\x81\ +\x99\x60\x63\x1b\x95\xc7\x9b\x9c\x62\x74\x5d\x95\x72\xfb\x89\x42\ +\x11\x09\xfb\x49\x35\x85\x57\xcb\x85\xea\x78\xa5\x49\x25\x1b\x67\ +\x8b\x58\x2e\x67\x51\xc9\x5f\xaf\x44\xe7\x89\x35\xd5\xfd\xcc\x9b\ +\x6e\xdc\x45\x2f\xfe\x2a\xef\x9a\x9f\x2a\x1f\x36\xdc\xa6\x8b\x75\ +\x5c\x28\x7c\xb2\x68\xc5\xf1\xaa\x17\x17\x92\x7f\xbe\xea\xc4\xd8\ +\xe5\x5a\xc4\xaa\xa3\x1c\x31\x20\x13\xdf\x32\xd9\xe5\xae\x64\xca\ +\xca\x62\x04\x3a\xa6\x2d\x0a\x2e\xdd\xfc\xba\x20\xe3\x3a\x50\x46\ +\x7b\x89\x03\x9b\xa0\xed\xa8\x32\x1a\x07\xc1\x4e\x4f\x83\x39\xe0\ +\x53\x04\x38\xa6\xc0\x71\xf0\x22\x99\xa2\x59\xeb\xf2\xc6\x2a\xb6\ +\x53\xd3\x45\x88\x37\x74\xa5\xf6\x72\xdd\x89\xb6\x32\x68\xb1\x14\ +\x2a\x45\x06\x9a\xc1\xb3\x28\xca\xb9\x72\x7d\x30\x88\x57\x0e\xd6\ +\xf1\x8a\xf0\x97\xf7\x3b\x71\x73\xb7\x1d\xfb\xbc\xa2\x91\xb3\x4b\ +\x36\xf0\xab\x1a\x3b\x7c\x40\x1d\xbf\x97\x8b\x03\xb8\x6e\x37\xf5\ +\x2d\x36\xc0\x16\xae\x4b\xb2\x46\xdd\x54\xa1\xe0\xf9\xbb\x6a\x43\ +\x85\x01\x2a\x61\xe3\x04\x15\x76\x02\xf9\xb2\xf5\x06\x27\x1e\x61\ +\x80\x79\x4b\x82\x9a\x56\xc0\xec\xce\xf4\x2a\x9c\xac\x49\x90\x24\ +\x63\x1c\x6d\xd3\x54\x6e\x03\xa0\x19\x5f\x1f\xb6\xc2\x60\x45\x1f\ +\x08\xd0\x5c\x53\x65\xb1\x2f\x89\x50\x14\xa6\x1e\xac\x74\xe6\x07\ +\xdd\xaf\xe5\x84\x64\x28\x88\x3d\xd2\xa5\xef\x24\x89\xe6\xa1\xf6\ +\x05\x99\x03\x36\x4c\x8a\xe5\x02\xd6\x27\x79\x12\x32\x06\x15\x9c\ +\x86\x36\x22\x2c\xdb\xa1\x28\xe2\x4d\x39\x8e\x2d\xff\x5a\x06\x56\ +\x29\x38\xd7\x82\xc2\x8f\x73\x88\xb4\xe0\xb0\xaa\x82\x88\xe2\x50\ +\xd7\x7f\x2e\x04\x11\xd5\xb1\xe3\x35\x46\x7e\x52\xad\x4f\xbb\xc9\ +\x57\x79\x6e\x99\xc6\xed\x52\x67\x68\x8c\xce\x2e\x63\xdc\xbe\x19\ +\x87\x5f\xf9\xc5\xb8\xf1\x73\x5f\x8a\x35\x4f\x4b\xd4\xd7\x22\x97\ +\x02\x40\x70\x41\xb7\xa0\x96\xb7\xf1\x0b\xdd\xc8\x73\xf8\xb7\xc5\ +\x35\xd0\xc0\xe7\x06\xea\xf3\xa1\xb4\x7f\xce\xed\xcd\xb9\x52\x83\ +\xaf\x09\xf4\xb5\xba\x56\x2d\x38\xe3\x47\x71\xf7\xfe\x3f\x8b\xdb\ +\x0f\xfe\x87\xe8\x1f\xce\x62\xb8\xd7\xd7\xf9\xcd\x06\x39\x37\xba\ +\xd4\xfd\x30\x4f\x8c\xab\xcf\x5d\xb3\x79\x46\x5a\x36\xd3\xca\x53\ +\x69\x6c\xa6\x31\x1e\x41\xb4\x79\x49\x43\x9f\x25\x35\x74\xc2\xfa\ +\xc7\x89\x0b\x6e\x65\xa0\x14\x28\xb4\x9a\xe2\x23\x7d\x9b\xf1\xc2\ +\xe5\xf8\x2c\x4b\xe6\x52\xf8\xa0\x17\x16\x45\x6e\x86\x44\xe6\x24\ +\x4e\x58\xe6\x5b\xe3\x12\x8d\x6d\x18\xf2\xe9\x3a\x89\x7c\xe4\x91\ +\x8e\x5b\x51\xf2\x35\x8a\xc9\x47\x3f\xeb\xb1\x47\xd1\xc5\x9b\x57\ +\x20\xba\x42\x42\xe1\x7a\x8b\x5d\x60\xce\xeb\x11\x82\x13\xe8\x27\ +\x90\x91\x50\xe3\x99\x5f\xfd\x34\x9a\x37\x15\x8d\x43\x47\x3e\x2c\ +\x75\xfe\xa9\x3f\xe0\x34\xc2\x37\x4f\xc5\xc1\x27\xa8\x6d\x4b\xd0\ +\xbe\x12\x2e\xca\x38\x49\x43\x9d\xa2\x6f\x11\x52\x78\x6d\x1f\x3b\ +\x70\x67\x94\x69\x2d\x57\xb8\xed\xa2\x80\xf3\xca\xf2\xc0\xc7\xb7\ +\xf2\x62\xd1\x71\xfd\x2f\x34\xa6\x9a\x5c\xae\xa2\x9a\xad\x62\x3c\ +\x9e\x79\xa3\x8d\xd7\x44\xe6\xab\x23\xd5\x2b\xd2\x5f\x64\x4a\x1f\ +\xf1\xeb\xeb\x35\xd7\x79\xc4\x66\x97\x44\x4b\xc1\x87\x05\x62\xa1\ +\x03\x0c\x0a\x5c\x23\xd9\x97\x66\xff\x80\xef\xa3\xff\xc6\x0a\xdd\ +\x60\x32\xe1\x22\x84\x3a\xa0\xac\x84\xdd\x27\x4b\x37\xa1\xab\x55\ +\xa9\x3f\xfd\xdc\x66\x89\x76\x12\x22\x8b\x2f\x40\x36\xaf\x73\xe4\ +\x69\xfc\xde\x40\xe3\x20\xb9\x2e\xe3\xa1\x3e\xaf\x09\x6f\xa9\x9f\ +\xcb\x7e\xd0\x8e\xb2\x94\xbe\x31\x37\x48\xa0\x21\x04\x39\x72\xc4\ +\x11\xdc\xf4\x9f\x74\x7b\xf8\xe2\x77\x11\xa1\xc3\x20\x1d\xa1\xb3\ +\x81\x47\xd8\x2f\x01\x20\xac\x7c\x79\x0a\x4e\xba\x38\x0d\xf1\x4e\ +\x5b\xc2\x96\x57\xcb\x97\x4f\x1e\xf6\x25\xa3\xc8\xae\x75\x24\x0f\ +\x61\x44\xd8\x0e\x5b\x06\x28\xd4\xb4\x00\x69\x92\x9a\xf4\x3a\x2e\ +\x91\x0c\xd5\x74\x8f\x17\x4c\xd9\x02\x11\x6a\xaa\x54\xdb\xc8\x4c\ +\x40\xa7\x5a\x3a\xf4\x8c\xe0\x4c\x00\xab\xd9\xea\xb0\x01\xa4\xb4\ +\x49\x4b\x93\xce\x57\xf2\x12\x32\xa8\x38\x21\x75\x14\x3c\xde\x1c\ +\xe3\x67\x5c\xce\x36\x07\xaf\x69\xe9\x03\x1e\xf3\x9b\x66\xf3\x17\ +\x46\xfe\xfa\x61\x6b\x22\xea\xf4\xc4\x0b\xb0\x3d\x21\x9b\x57\x58\ +\xfd\xbd\x41\xda\x09\x75\xe4\x36\x01\xad\xd0\xbb\x1a\x33\xf1\xa4\ +\xda\xce\x70\xe8\xb7\x3b\xd0\x5e\x2c\x01\x3d\x69\xab\x2a\x5b\x56\ +\x49\x2b\xe6\xcb\x56\xdc\xb9\x7d\x1e\xeb\xf9\x6b\xf1\xd5\x37\x7f\ +\x3b\xbe\xf6\xc5\x5f\xf7\xf9\x6a\x7d\x74\x8d\xce\x3a\xbc\xd2\x86\ +\xe3\x96\xd5\x1a\x68\xe0\xa7\x02\x9a\x16\xdd\x40\x03\x2f\x0e\x34\ +\x7e\x2d\xbd\x7e\x03\x0d\x34\xf0\xb9\x83\xe6\xe4\x7f\x81\xf0\x3c\ +\x63\xe6\x48\xfc\x53\xa1\x1e\xd4\xd4\x43\xf8\xda\xff\x64\xa8\x05\ +\x3e\x2b\xfc\xf9\x99\x6d\xe4\x32\x59\xd2\x24\xc3\x93\xfb\x55\x2b\ +\xaa\x07\x1f\xc4\xf9\x77\x7e\x27\xe6\xa3\xf3\xd8\xbf\x7e\x14\xc3\ +\xbe\x26\x1d\x9a\xfc\xd6\x13\x2e\x9e\x70\x5a\x54\x8b\x7c\x32\xcd\ +\xab\x09\x6c\xb6\xac\x34\xa1\x2e\x0b\x42\x96\x73\xe5\x33\xf1\xaf\ +\xc3\xb9\xe9\xa6\x70\x71\xe6\x27\xde\x41\xf8\x98\xb2\x64\xd8\x0b\ +\xe8\x72\xf5\x42\x85\x5f\xcf\x58\x68\x49\xca\xb4\x6c\x80\x79\x81\ +\x62\x13\x27\x67\x7a\xf2\x7b\x83\xcc\x0b\x1b\xe4\x5d\xd2\xa0\x17\ +\xfc\xc2\xc9\x2b\xfd\xab\x74\xf0\x71\xdf\xac\x75\x40\x23\x79\x9e\ +\x93\x0a\x49\x9b\xe9\x00\x9d\x00\xe0\x49\x9c\x11\x4f\x20\x33\x9c\ +\x8e\x19\xa0\xd3\x10\x2e\x93\xf0\x3c\x88\xb1\xe0\xfc\x1c\x78\x2a\ +\x9c\xf8\x06\x32\xa1\xbd\xcd\x5a\x04\xba\x82\x03\xa9\x94\x21\xd5\ +\xd3\xd1\xff\x42\x87\xd7\xb4\xe2\x9b\x46\x30\xc3\x8e\xe2\x87\x2d\ +\xe4\xe7\xdd\xf0\xb2\x17\x8b\x46\xd5\x5c\x75\x3e\x8f\xaa\x9a\xf9\ +\xdb\x1f\x0b\xd5\xfb\x5c\xf5\xcf\xeb\xa8\xf8\xbe\xcb\x74\xb1\x10\ +\xbe\x8c\x19\xbc\x4a\x37\x5b\xe6\x82\x13\x4f\x71\x5d\xb2\xb9\x56\ +\x2d\x63\xa4\xa6\x72\x26\x83\x9d\x56\xfd\xb8\x54\x16\x33\x19\x74\ +\x14\x5d\x7f\xa7\x2d\xba\x7e\xb9\xa2\xcb\xe6\x0f\xc7\x63\x1a\x13\ +\x72\x01\x85\xc8\xda\x26\xb6\x23\x69\x04\xc4\x51\x4f\x98\x3c\x01\ +\x1e\x95\xc1\xfc\x94\x46\xbe\x22\x5d\xbe\x22\x03\x2a\xe9\xb2\x26\ +\x79\x62\xd1\x47\x04\xbb\x1d\xd0\x2e\x58\x80\x63\x03\x02\x53\xb4\ +\x54\x26\xec\x4d\x1b\x62\xc7\x79\xb9\xe2\xfb\x0b\xfd\xe8\xb4\xfb\ +\xb1\xdb\xed\xc5\x81\x26\xeb\xd7\xe4\xbf\x7c\xb4\x8a\x9b\xc3\x6e\ +\xdc\x1a\x76\xe2\xe5\x9d\x4e\xdc\xdc\x6f\xfb\xb5\x8e\xc3\x41\x4f\ +\x13\xf9\xa1\x72\xe8\xa1\x8d\xfe\x4c\xf2\xbb\x9a\xec\x77\x82\xef\ +\x3d\xd4\x77\x86\xb3\x68\x43\x16\xe8\x48\x3b\xb1\xee\xa8\x58\x54\ +\x03\x52\x7f\x1d\xa5\x34\xbe\x5b\x96\x99\x88\x54\xdc\x26\x58\xd3\ +\x8a\x65\x54\x26\xb7\x3d\x52\x10\x55\xec\x57\x03\x36\x05\x4a\xaa\ +\xcc\x5b\x87\x5a\x07\xda\x86\x7d\x22\xe5\xa7\xfd\xb7\xb9\x39\xa6\ +\x76\xc9\x60\x92\x01\xd4\xd4\x12\x05\x24\x9a\x31\x4e\x8d\x6e\x42\ +\xae\x58\x74\xc4\x28\xa2\x24\x1d\x1c\x5a\xc6\xa3\x8f\x01\xa5\x92\ +\x4d\x28\x08\x00\x13\x0c\xdb\xbe\x23\x60\x2a\x9e\x7c\xb7\x89\xa2\ +\x85\x0e\xb5\xf6\x86\x5a\xee\x26\xa1\x60\x0b\x85\xd1\xbc\x56\x04\ +\x97\xb6\x37\x93\x83\xd2\xb8\xd6\x67\x3b\x4f\x7c\xf3\x0a\xcf\xbf\ +\x29\x5e\x38\xea\x94\xb6\x0e\xa8\xec\x2c\x30\x59\x3f\x39\x2f\xfc\ +\x51\x97\x72\x6c\xa2\xf1\x5d\xb5\xde\x60\x10\xfd\xc1\xd5\xeb\x8c\ +\x58\x4c\x4a\x6b\x52\xae\xae\x2e\xe5\xeb\x38\x3d\x3d\x8f\xb3\xcb\ +\x76\x1c\x7c\xf3\xd7\xe2\xb5\x5f\xfc\xa6\xd4\x4d\x7b\xda\xb6\xae\ +\x54\xb3\xcb\x27\x2c\x1f\x28\x34\xdb\xa4\xf8\x9f\x09\x2c\x27\xd1\ +\x1f\x1b\x5e\x84\x8c\x06\x1a\xf8\x8b\x82\xe7\xb4\x4f\x82\x9b\xeb\ +\x91\x61\x2b\xa0\x48\x36\xc0\xbc\xc8\xbb\x6e\xab\xef\x9c\xc4\x47\ +\xf7\xfe\x3f\xf1\xe8\xe4\x9f\x46\xff\x70\xee\xf3\xb7\x2b\x36\x36\ +\x9e\x7c\x73\x09\x09\xd4\xd1\xb0\xa9\x82\x73\xcf\x23\xe1\x7e\x25\ +\xb3\xfa\x57\xdf\x9c\x24\xbe\xcd\x65\x87\x7e\x8a\x1f\x3c\x24\xcf\ +\x90\x7f\x4e\xaa\x5f\x9e\xc3\x5c\xdb\x84\x2c\xc1\x8d\xb9\xaf\xcb\ +\xeb\x2a\xbe\x7e\x75\x21\xac\x82\x70\x7c\xd2\x9a\x0c\x5f\x72\x72\ +\x13\x81\xb3\x72\x1a\xe4\xca\xc1\xa7\x9f\xa9\x2a\x0c\xb8\x87\x11\ +\x59\x1c\xe1\xa4\x11\x41\x44\x9e\x4c\xe3\x89\x34\xe2\xeb\xb8\xe4\ +\x27\x4e\x34\x78\x53\x60\xa6\x97\xe7\x27\xfb\x44\xcf\x90\x5c\xaa\ +\x23\x1f\x3c\x99\x36\xd7\x4e\xa5\x85\xcb\xbe\x6c\x8e\xac\x1c\xf7\ +\x15\x5c\x51\xd8\xca\xfa\x15\xdc\xd7\x63\xf3\xd9\x33\x9f\xed\x09\ +\x2e\xc4\xba\x3e\x13\x97\x37\x8a\x69\x48\xc0\xf8\x40\x8a\x7b\x53\ +\xcd\xf4\x2b\x39\x24\x84\xc7\xf6\x14\xc1\x74\xd3\x72\xf3\x90\x0d\ +\x39\xe2\xb9\xc8\xe6\x18\x4c\x65\xd7\xb8\x69\xa9\x41\x11\xdf\xd8\ +\xc3\x32\x35\xcf\x62\xbe\x88\xd9\x54\x63\x2b\x0d\xa4\x66\x13\x70\ +\x8d\xbd\xe6\xb2\xa5\xf8\x29\x1f\xba\xf2\x3d\xbd\xac\x47\x6a\x25\ +\xed\x8a\x5d\x30\x5d\x8e\x42\x81\xf4\x39\x9a\x55\x88\x71\x88\x82\ +\x9a\x2b\x89\xa4\x45\x52\x86\x37\x71\x02\xdb\x9b\x38\xda\x23\x61\ +\xe9\xe0\xf6\x44\xfd\x8b\xde\xc6\x16\xe8\xe4\x42\xf3\xa7\xed\xc0\ +\xc8\x5f\x3f\xba\xb3\xb2\x99\xd5\xed\x6a\x2c\x34\xe0\xa9\xb4\x4e\ +\x74\x07\xdc\x34\x22\x3e\xf5\x87\xde\x28\x91\xdb\x6c\xa4\x39\x4b\ +\x52\xcb\x57\xc2\xcd\xab\xad\xf3\x6f\x3c\xe9\xc5\x77\x38\xe9\xf9\ +\xea\xc7\xec\x27\x19\x12\x48\x7c\xca\xf6\xd3\x68\xf8\xc9\x0f\xad\ +\xe3\xcd\x19\xfa\xd5\x0c\xa7\x3c\xc9\x21\x1f\x7c\xe5\xc5\x8e\xa1\ +\xc3\x08\x23\x6f\x13\xaf\x7c\x03\xfa\xb9\xe4\x14\x5c\x41\xec\x60\ +\x23\x90\xee\xea\x98\x86\xb9\x02\xe5\xe6\x14\x4f\xc9\x12\x90\x13\ +\x75\x49\xbc\x8d\x5a\xa7\x17\x6c\x78\x4b\xfc\x55\x4c\x02\xf1\x29\ +\xb3\x8e\xf3\xad\x82\x1b\xbe\x9a\x86\x6f\xdc\x3a\x39\x47\xfd\xe5\ +\x6a\x46\xc1\x06\x15\xdd\xed\xc0\x92\x45\xc7\xc6\x0a\xa6\x43\x16\ +\xc8\x95\x9d\x4c\x93\x4d\xfc\x64\x9f\xe3\xe0\x67\x63\xd8\xa9\x8b\ +\x0f\x19\x9c\x3c\x8b\x3c\xe4\x66\x44\x5a\x3b\x93\x26\x4e\x50\xbc\ +\xbc\xcd\x81\x7a\x4b\x1d\xb2\xbd\x78\x53\x4d\xf1\xdc\x74\x34\xd0\ +\x78\x69\x67\x30\x94\xaf\xb1\xbb\xc6\x4c\x80\xc7\x4c\x64\xa3\x03\ +\xa7\x90\x6f\x4e\xd2\xc8\xeb\xa3\x0f\xcf\x63\x74\xd2\x8b\x2f\xbe\ +\xf1\xdb\xf1\x8d\xaf\xfd\x66\x0c\xba\xfb\x3a\x1f\x69\x6b\xf9\x94\ +\x3f\xa7\x2c\x92\xd1\xa9\x94\xdc\xc7\x06\x1a\xf8\x69\x80\xa6\x35\ +\x37\xd0\xc0\x8b\x03\xf5\x2f\x74\x33\x0d\x34\xd0\xc0\xe7\x11\x9a\ +\x93\xff\x05\xc2\xf3\x8c\x59\x8f\x58\x3e\xa3\xa1\xeb\x81\xfb\xa7\ +\x0f\x74\x3e\x49\x58\x9d\xfa\x69\xa8\x29\xc4\xf2\xad\xac\xae\x26\ +\x21\xb3\x7b\x1f\xc6\xc9\xb7\x7f\x27\xd6\xb3\x8b\xd8\x3f\x3c\x88\ +\x01\xaf\x16\x63\xe1\x00\x6e\x16\x16\xe4\x96\x8b\x79\xd9\x4c\xcb\ +\x27\xd3\xa0\x7b\x03\xca\xbe\xf8\x3c\xb9\xaf\x17\x02\x98\xa8\xa4\ +\x9f\x1b\x5f\xf0\x90\x6b\xca\x4b\x7e\xf1\x38\x59\xe2\xe9\xf8\x27\ +\x4e\xb0\xa6\xd7\x93\x73\x25\xf6\x6c\xbd\x4e\x7f\xb5\xa1\x96\x79\ +\xd5\xbc\xa6\x95\xfc\x93\x5f\x38\xab\x36\xa2\xc1\x93\x0e\x8f\x03\ +\x32\x13\x27\xe8\x29\xad\xfe\x06\x68\x05\x65\x22\xb7\x41\x98\xb0\ +\x69\xc2\x9d\xe1\xa4\x25\x39\xe3\xd2\x67\x72\x27\x11\x5b\x34\x26\ +\x7d\x39\x33\x96\xf3\x04\x50\xbe\x80\x29\x9a\x37\xf2\x08\xe6\xc1\ +\x1e\xd3\x4f\x70\x7b\x86\x82\x58\x29\x0e\x19\xae\xb1\x5a\x5b\x97\ +\x83\xf2\x6f\xd2\x09\x20\x62\x0b\x09\xf6\x44\xd2\xb4\x4c\x03\xce\ +\x3c\xd6\x34\x01\x8b\x78\xd8\x8a\x4d\x54\xee\x98\x66\x13\x6d\x31\ +\x67\xb1\x6f\x1e\x8b\xd9\x2c\x66\xf3\x49\xcc\xa6\x33\x85\x17\x76\ +\x6c\xb0\x55\x8b\x65\x8c\xc5\x3f\x2d\x77\x70\x57\x55\x6e\xcc\xcd\ +\x25\x07\x79\x53\xd9\x7f\xbc\xea\xc4\x48\xfe\x48\x25\xbe\x04\x5f\ +\xb7\xa3\x52\xae\x94\x7d\xd9\xd5\x51\xfa\xa2\x83\xf5\x56\x20\x4d\ +\x55\xfb\x57\xfa\xd5\xf1\x80\x4a\xe3\x32\x01\xf5\x44\x3b\xf9\x74\ +\xdc\x4a\x93\x90\xb2\x4c\x55\x9d\x67\xbd\xe3\xa4\x83\xf4\xe6\xfb\ +\x70\xdc\x41\xde\x71\xdb\xe1\xa9\x32\xf1\x6b\x32\xdd\x8f\x5e\x1c\ +\x75\x3b\x71\x4d\x93\xf3\xeb\xbb\x9d\xb8\x7e\xd0\x8e\x1b\x07\xfd\ +\x78\x65\xb7\x1f\x37\x09\x0f\xd9\x64\xd3\xe4\x5d\x7a\x74\xc4\xdb\ +\x6e\xb1\x28\x23\xbf\x2d\x19\x9a\xbc\x7b\x82\xcf\xe2\x10\x0e\xa5\ +\x94\x7f\xd6\x2d\xc5\x28\x75\x5d\xfb\x70\x10\xa5\xf6\x03\x4b\x72\ +\xd5\x50\x42\x1b\x22\x0c\x85\x89\x82\x9a\xbe\x89\x34\x64\x1b\xdb\ +\xe2\xa9\xe1\x39\xbc\xcf\x85\x92\xb4\xa0\x9b\xa3\x2c\xb4\x09\x3b\ +\x8b\xa7\x0d\xbd\x51\x67\x43\x4e\x66\x01\x08\x69\x32\x46\xd8\x33\ +\x3c\x19\xbf\x49\x69\xe1\x05\x84\x67\xa8\xd0\xcc\xaa\x83\x33\x93\ +\x6f\xf2\x95\x9f\x51\xb2\x23\x95\x2c\xdb\xe7\x89\x91\x32\xf2\xbc\ +\x84\x0f\xa8\xe5\x0a\xb6\xe5\x3c\xe5\xd5\x6d\x47\x3e\x72\xc8\x54\ +\x7e\x66\x9d\x4c\x2c\x3a\x6f\xda\x17\x09\x8b\x2c\x48\x35\x9f\x71\ +\x7c\xe2\x20\x7a\xd1\xa8\x84\x59\xe0\x83\xc4\x11\x1e\xb7\x17\x31\ +\xd5\x6d\xa8\xd3\x8d\x4e\xaf\x17\x3d\x5d\x9f\xbb\xe5\x69\x35\xb3\ +\x2a\x4d\x9d\x27\x2f\x04\xa3\x6e\x46\xd3\x49\x3c\x3c\x5d\xc4\xde\ +\x9b\xbf\x10\x6f\xff\xe6\xaf\x89\xa2\x86\xcd\x35\xc9\xd7\x20\x78\ +\x81\x4d\xe2\x0d\x38\x0a\x5a\xed\xff\x45\xc3\x96\x2a\x0d\x34\xf0\ +\x57\x12\x9e\x73\x2e\x6c\x9f\x22\xf6\xcb\xb5\x40\x9d\x06\x47\x9d\ +\x47\x3a\x7f\xd5\xbf\x2d\x96\x8f\xe3\xe3\xdb\xbf\x13\x77\xce\xff\ +\x59\xec\xed\xcf\x62\x6f\x77\x4f\x69\x58\xd0\x5d\xea\x3a\xe0\x9d\ +\x2e\x98\xfd\xe4\xbf\xbf\xcb\x09\x5d\x3f\xbf\x22\x90\x1b\x57\x7c\ +\xc3\x12\x92\x45\xe5\x9a\x00\xbd\x1e\xd3\x88\xec\x71\x8b\x24\xb2\ +\xc1\xc1\xf0\x06\x3d\xd8\xa8\x43\x19\xe3\xc4\x09\xcf\x4d\x25\x6b\ +\xe8\x23\x57\x0a\x86\x47\x57\xe1\xc2\xb3\x45\x03\x2c\x4a\x01\xc2\ +\x1b\x67\x9d\xeb\xeb\xb6\xd2\x78\x33\x05\x3a\x1b\x46\x99\x39\x56\ +\x20\x1d\x3a\x21\xf7\xea\xc9\xb4\x4c\x97\x4f\xa5\x91\x9f\xc2\x1b\ +\x59\xd2\xd5\x1e\x05\x91\x95\xca\x18\x2a\x89\x45\x17\x23\x1c\x0b\ +\x6f\x81\xb4\x91\x28\xf2\x5d\x03\x0a\xd6\x72\x89\xc2\xaf\xc7\x8b\ +\xe8\x51\x3b\x86\x7f\x40\xf2\xe8\xa7\x30\xe9\x18\xc3\xb8\x0e\x90\ +\x21\xc6\x3a\x2d\xb5\xb3\x5a\xa0\x73\x29\x13\x8e\xe1\x92\xd2\x13\ +\xe6\x32\x6b\x3b\x96\xcd\x36\x22\x90\x59\x6f\xc4\x25\x3f\x38\xf2\ +\x18\x4e\xa3\x00\xe5\xd4\x75\x9b\x4d\x35\xa5\xcb\xfc\xd0\x8d\x9a\ +\xa5\xdf\xe2\x06\x26\x36\xdc\x5a\x51\x69\x1c\x36\x1b\xe7\xeb\x21\ +\xab\x19\x63\x32\xc6\xe6\xd9\x26\xf2\x55\x93\x5c\xe7\xb3\x4c\x57\ +\x36\xa2\x7d\x14\xa2\xf2\xdc\x78\x2a\x5b\x62\xb8\x1a\xaf\x53\x14\ +\x1e\xc1\xb6\xa5\x8d\xe9\x90\xf1\x1b\x24\x0f\xe8\x2c\x8c\x2e\x46\ +\xea\x6c\x00\x16\xfa\x1d\x5e\xa3\xe8\x57\x39\xca\x37\xce\x2b\x1d\ +\x79\x2a\xad\xc7\x13\xd7\xf4\x6f\x72\x65\x73\xc4\x9b\x59\xe8\xcc\ +\x1f\x5c\xf2\xec\xd3\x5f\xda\x27\xac\x03\xff\x42\xa7\x8b\xc7\xb1\ +\x49\xe6\xd7\x33\xb2\x69\x46\xdf\x09\xdd\x9b\x65\xd0\x0b\x2f\x79\ +\x21\xcb\xb8\xd2\x10\x27\x46\xcb\xc5\xb9\x4e\x6a\xdc\x99\x67\xd8\ +\x05\x2a\x63\x1f\x08\x19\xe5\x08\x8a\x8c\x9e\x36\x6b\x01\xc7\x51\ +\xc5\xc4\x17\xfa\x56\xf4\x33\x80\x84\x04\xe5\xf6\x14\x23\xa8\x63\ +\x0b\x39\xa3\xcc\x55\x07\xb6\xf0\x42\x07\xb6\xe2\xea\xf8\x3a\x4e\ +\x45\x2b\x78\x96\xc7\xba\x0a\x47\x4f\xca\x6f\xa0\x91\x16\xc0\x0e\ +\x66\xe1\x00\x99\xc7\x11\x4b\xd0\x75\x52\x22\x33\x2c\x87\x08\xb1\ +\x64\xfd\xe4\x06\x9a\x63\x0b\xef\xd5\xe6\x99\x1c\xa8\xf8\xe1\x31\ +\x57\x6d\x63\xea\xcf\x08\xac\xa4\x86\x51\x64\x13\x92\xdf\x72\x15\ +\xc7\x37\x87\x91\x0b\x97\xeb\xdc\x75\xcf\xb7\xd5\x7a\xb1\xcb\x2b\ +\x20\x87\x43\xb5\x35\x8d\xc9\xad\x98\x80\xf6\x8a\x4c\x9d\x6c\x8c\ +\xb5\xb8\x76\x3d\x39\xbe\x8c\x47\x77\x22\x5e\xbd\xfe\x2b\xf1\xf3\ +\x5f\xff\x3b\x71\xb0\xff\xa6\xce\xad\xb9\xd2\x0c\x9c\x1f\xe6\x20\ +\x0f\x07\x36\xb0\x8d\x37\xd0\xc0\x5f\x4f\x68\x5a\x71\x03\x0d\xbc\ +\x38\x68\x36\xd4\x1a\x68\xe0\x73\x0c\xcd\xc9\xff\x17\x04\x18\x76\ +\x7b\xb4\xf2\x19\x0c\xfd\xd9\x06\x37\x9f\xbd\xc6\x6a\x15\xb8\xc4\ +\x33\xa1\x58\x32\x83\x59\x44\xcc\x1f\x7c\x10\x97\xdf\xf9\xdd\x98\ +\x4f\x4e\xe3\xf0\xc6\xb5\x18\x6a\xa2\x9b\x2b\x12\xe2\x5d\x71\x77\ +\xf4\x52\x13\xf9\xf2\xcd\xb4\x45\xa5\xf4\xf9\x5d\x07\x9e\x60\xf2\ +\xa2\x0e\x92\x15\x66\x01\xc0\x07\xe3\xc4\xb1\x30\x40\x98\x85\x03\ +\x66\x2e\x70\x42\x83\x9f\xc9\xd2\x3a\x27\xdd\x8e\x27\x33\x3a\x20\ +\x16\x30\xc0\x93\x97\xbf\x23\xed\x52\x06\x8b\x15\x8e\xc7\x39\x6d\ +\x09\x2b\x2f\x8a\x94\x8b\x42\xe2\x65\x61\xa2\x2c\x5c\x38\xad\xfd\ +\x82\xdb\xd3\x01\x80\x96\x24\xe3\xb6\x91\x7e\xb5\xad\x98\xb9\xad\ +\x35\x29\xeb\xc8\x66\xbc\x29\x04\x7a\x4e\xe8\x85\xe5\xec\xcd\x3e\ +\xb4\xda\x37\x4e\x84\xe7\x6d\x57\x74\xa4\x5e\xc5\x13\x25\xbc\xc4\ +\xe3\xac\x83\x7c\x92\x99\x17\xdf\xbc\x89\x1b\x84\xd4\x71\x0e\x3c\ +\x05\x75\x99\xd2\x73\x3c\x46\x49\x4c\x64\x6c\xe3\xa0\xc9\xa0\x35\ +\xcd\x92\x8a\xb8\xdc\x0c\x35\x66\xbb\xf1\x64\x1a\x4f\x27\x56\x6a\ +\x03\x6b\xb9\xf9\x7c\x16\x8b\xf9\x3c\x37\xda\x2a\xf9\x6a\x17\x3c\ +\xc5\x36\x9f\xcd\x63\x2a\x7c\x2c\xc7\xe2\xce\xac\x5a\xc6\x62\x21\ +\xc7\x22\xd3\x72\xe9\xef\xae\xcd\xaa\xb5\xaa\x66\x19\x93\x65\x3b\ +\x46\x4b\x36\xd5\xd6\x31\xd5\x0c\x7e\xba\xee\xca\x75\x62\xa1\xf2\ +\x2e\x5a\xab\x5c\xb8\xf2\xc2\x9a\xfe\x52\x36\x5f\x8b\x29\xe0\x00\ +\x6e\xba\x0d\xfc\xd4\x42\x05\x5c\xf5\x82\x22\x07\xc2\x3e\x8a\x09\ +\xdf\xcd\x80\x18\xd6\x32\x15\xb0\x79\xe4\x43\x57\xc6\xb2\x7d\x2b\ +\xfa\xed\xae\x5f\x19\x73\xd8\xe9\xc4\xd1\x7e\x2f\xae\xed\xf6\xe2\ +\xa5\xdd\x4e\xdc\xda\xeb\x7a\x23\xed\x68\x47\x71\xc3\x7e\xec\x0f\ +\x78\x99\xe3\x30\xfa\xad\x7c\xea\x0c\x58\xa9\x91\x70\x67\x7d\x6e\ +\x86\xb0\x28\xa3\x23\x61\xeb\x6a\xa5\xad\x3f\xb8\xd5\x26\x5c\xfb\ +\xfe\x73\x80\x26\x97\xc5\x2b\x65\x11\x20\xc7\xa5\x70\xc0\xff\x84\ +\x9a\x9f\x18\x25\x2a\x15\xea\xba\x56\xbe\xa5\x65\x3d\x0d\xd6\x4f\ +\xf4\x12\x95\x8b\x28\x57\x59\x81\x14\x0d\xcb\x51\xa4\x5a\x9f\x2d\ +\x70\x1a\x12\x59\xe7\x4d\xea\xa7\x50\x73\xe9\x7c\x71\xb1\x1d\x91\ +\xe1\x44\x0b\x9d\xe4\x20\xe6\x21\x50\x3c\xe4\xd6\xb4\x4d\xfe\xa5\ +\x8c\xb5\x4c\x78\xe0\xa5\x10\xf0\x6c\xfb\x80\x75\xab\x7d\xb9\xe2\ +\x6d\x64\x17\xd2\x15\xf2\x1c\x7f\xe3\x25\x9e\xc9\x74\xe4\x2f\x25\ +\x0a\x87\x82\x89\xe5\x2b\x36\x41\x1c\x92\xdb\xca\xa8\xe8\xbb\xe1\ +\xd1\xc1\xd7\x04\xfe\xd4\x97\x70\x9b\x87\xf2\x99\x1d\x1a\x77\xd4\ +\x77\x72\x91\x48\x3e\xaf\x7f\xec\x0f\x06\xb9\x88\x04\x9f\x6d\x83\ +\x1c\xee\xb6\x26\xb7\x76\x5c\x4e\x46\x71\xfc\x78\x1c\x83\xb7\xbe\ +\x15\xaf\xff\xea\xdf\x88\x8e\xda\xb2\xaf\xff\xb6\x1f\xec\x3a\x20\ +\x18\x20\x5c\xc0\x68\x21\x27\x5f\xa2\x9f\x0a\x7f\x1e\xdf\x96\xfc\ +\xa7\xf8\x3e\xab\xfc\x06\x1a\xf8\x2b\x02\x34\x57\x5f\xf3\x8c\xd3\ +\x37\x41\x20\x40\x3f\x72\xf5\xcd\xb4\xc5\xfc\x38\xde\xfd\xe8\xff\ +\x19\x27\xa3\x3f\x88\xc1\xb5\x75\x0c\x87\x3d\x6e\xb7\xf0\xf0\x4a\ +\x9c\xe6\xe7\x7c\x5c\xd1\x7f\xb2\x99\xc6\x80\x4c\x1d\x11\x71\x0b\ +\x3f\x99\x96\x9b\x69\xbe\xe2\x23\x1f\x5c\xf2\x73\x8c\x63\xaa\xf3\ +\x77\xdf\x05\x57\xad\x08\x71\x9c\xd7\xe2\xf5\x2b\x27\x25\xaf\x0c\ +\x7b\x32\xcf\xc2\x93\xa9\x13\x4c\x35\x4f\x4d\x29\x71\xb0\xe2\xe1\ +\x4b\x24\x5d\x32\xfd\x6b\xf2\xe6\x75\x44\xa8\xe2\x93\xb1\x7e\x2a\ +\xad\x0c\xfd\xd2\x57\xd8\xe5\x44\x2f\xd1\x34\x34\x83\x35\x55\x50\ +\x3e\xfe\xe9\x1a\x46\x3f\xc9\x02\xb8\x69\xc6\x85\x61\xcb\xe4\x86\ +\xb9\x1c\x05\x05\x79\x9a\x2a\x5e\x2b\x59\xc2\x52\x94\xbc\x51\x1c\ +\x4a\xe6\x0f\x0f\xba\xa4\x0f\x1d\x3d\xec\x36\xb8\x6c\xcc\xf8\x80\ +\x1f\x7c\x2a\x84\x37\xc2\x70\x8a\xf7\xa6\x97\x65\x50\xbe\xdc\xc8\ +\xd2\x3f\x37\xe1\x08\x0b\xcf\xa7\xcd\xd2\xee\x4e\xb7\x00\x97\xef\ +\x71\x69\x6e\xc6\x79\xfc\xca\xd8\x48\x3c\x64\x6e\x9b\x4a\x67\xdb\ +\x12\x12\x86\xa2\xbd\x88\xc1\xfd\x81\xf3\x50\x5a\xc9\x5a\xcc\x57\ +\x31\x9f\x32\x2e\xd3\x78\x6c\xaa\xf0\x6c\xed\xb7\x05\xf8\x95\xa1\ +\xb4\x9d\x85\xf2\xb2\x10\xf2\xc1\xc7\xae\x00\xf6\xe1\x8f\x4d\x72\ +\xfc\x93\xb9\x11\xbf\x09\x50\xb3\xc4\x3a\x48\x0c\xfc\x57\x2c\x75\ +\x0a\xe2\x45\x44\x5f\xc7\xe1\x8b\xe2\xce\x08\xbc\xd4\x29\x1b\x5c\ +\xdd\x56\xf4\x06\x1a\x57\xf5\x35\x3e\x52\x74\xa7\xdf\x95\x13\xee\ +\xd7\x3c\xaa\x0f\xf3\x06\x57\x6e\x7e\x21\xcb\x37\x20\x65\x26\x3e\ +\xe0\xd1\x16\x78\x35\xa3\x3c\xb7\x13\xe4\x82\xbb\xff\xd3\xf0\x8b\ +\x8d\x31\xe7\x85\x1c\x36\xd0\xc8\x9b\x8d\x3b\xda\x91\xe9\xf0\x25\ +\xdd\x37\x3a\x79\x93\x47\xf2\x88\x97\x83\x4e\x46\xf6\x74\xa0\x1e\ +\x84\x12\xa1\x70\xe2\xc2\xdc\xfe\x6b\xcb\xc0\x9b\xd6\x20\xb4\x0d\ +\x85\x5a\x13\x15\xdc\xf0\x6d\x31\xa6\x2d\x21\x20\x3f\xfd\x84\x22\ +\xdb\x36\xcd\x04\x75\xb2\xda\x87\x0e\xee\xb0\x0e\xf8\x96\x56\xe3\ +\x8e\x97\xdc\x42\x34\x5f\xa2\x06\x4c\x5d\xe7\x5b\xd3\x32\x9d\xb7\ +\xe1\x13\x97\x4b\xbe\x6d\x50\x8c\x78\x6c\x2f\x81\x55\xc4\x96\xe0\ +\x25\x1d\x51\x76\xc6\x45\x53\xfc\x53\x61\x3b\x68\x05\x17\x1d\xc8\ +\xeb\x40\xc1\xc9\x5d\x71\x5c\x4f\x61\x70\x8b\x28\xca\x14\x92\x79\ +\xc0\x89\x73\x1b\x70\x5d\xc9\x89\x4f\x92\xac\x23\x9b\xa8\x9d\x4e\ +\x37\x5f\x01\xb9\xa3\x71\x53\x8f\xd7\xed\x76\x94\x32\xf3\xe7\x44\ +\x01\x37\x4d\xe1\xf3\xb3\x59\x7c\xf4\xee\x65\x1c\xee\x7d\x35\xbe\ +\xf9\xd5\x7f\x2f\xde\x7c\xf5\x97\x74\x3d\x56\x3c\xdf\xb3\xd5\xf5\ +\xb4\xb6\x4f\x6a\xc0\x31\x5b\x43\x03\x0d\xfc\x75\x86\x6c\xcd\x0d\ +\x34\xd0\xc0\x8b\x80\x66\x43\xad\x81\x06\x3e\xc7\xd0\x9c\xfc\x7f\ +\xc1\xf0\x19\x0c\xfc\xa3\x0d\x6a\xfe\x7c\x81\x35\x07\x72\xc1\x99\ +\x5c\x2d\xe4\xb3\xfc\x3f\xbb\xf3\x5e\x1c\x7f\xfb\x5f\x08\x39\x8f\ +\xdd\x6b\x47\xb1\xa7\x49\xae\xb9\xf8\xab\x2b\x58\xf3\xe4\x91\x37\ +\x51\xe6\xa1\x99\xba\x26\xf3\x7c\x4b\xab\xbc\x82\x08\xe7\x09\x27\ +\x8b\x0f\xe2\xf5\x02\x01\x33\xfe\xa4\xb3\xda\x50\x6f\xac\x31\xe3\ +\xca\xcd\xb2\xa4\x13\xb6\x7c\xa1\xe8\x93\x3c\x26\xeb\x50\xd2\x18\ +\x52\x26\x3c\xfe\x1e\x86\x79\x32\xed\x26\x9f\x12\xf6\x06\x99\x7d\ +\xf8\x84\x4b\x27\x16\x38\xc8\x8f\x9f\x9f\xd8\x32\x2f\x62\xd1\x27\ +\x65\xe1\x67\x4e\xee\x00\x93\x17\x42\x99\x7c\x7b\x02\xa7\x49\x96\ +\x17\x7a\xca\x4c\xcf\x93\x30\xa3\x75\x7c\x99\xfc\x73\x74\x1c\x53\ +\x2c\x7c\x50\x62\x14\x2a\xf4\x0d\x0e\x14\x5a\xf2\x5e\xd1\x12\xd3\ +\x24\x6d\x0b\xdf\x80\xd3\xa0\xaf\x26\x8b\xa9\x75\x89\xa6\x40\x5b\ +\x7c\x9e\x78\xc2\x08\x5d\x98\x75\xa7\xfc\x99\xa6\xe6\xcc\x30\x48\ +\x8a\x91\xc5\x1c\x80\x9e\xa5\x92\x1e\xb2\x1d\xb6\xf4\x1d\xd9\x6c\ +\x90\xa9\x4d\x2c\xd9\x64\x63\xf1\x66\x91\xaf\x84\xac\x66\x53\x6f\ +\xb4\xcd\xe7\xd3\x98\xf2\x14\x9b\xda\xcc\x74\xc6\x66\xdb\xd2\x1b\ +\x6b\x5e\x04\x02\xe7\xf5\x89\xc8\x50\x7e\x95\xea\x88\x27\xd8\xa6\ +\xaa\xdb\xe9\xa2\x13\x97\xab\x76\xcc\x35\x61\x9d\xca\xa9\xc5\x05\ +\x37\x6f\xf3\x2d\xfb\xbc\xeb\x5e\xf5\x07\xcd\xf6\xb6\x86\x6a\xc4\ +\xaa\x2b\x6c\x04\x8f\xb5\xa6\x5c\xa2\x63\x07\xd2\x38\xa4\x16\xba\ +\xdd\xe6\xbc\xc8\x86\x4c\x97\x2c\xbf\x83\x26\xf6\x81\xe4\xee\x09\ +\x1f\xca\x4e\x83\x7e\x3f\x76\x07\xbd\x38\xda\xed\xc7\xf5\xfd\x41\ +\x1c\x0e\xdb\x0e\xef\xef\x74\xe3\x60\x77\x18\xfb\xfd\xa1\xf8\xba\ +\xde\x44\xe3\xd5\x8d\x5d\xa5\xe9\xe8\x87\x89\xd1\x20\x17\x1a\xd2\ +\xb1\x70\x03\xd4\x7a\xba\x75\x81\x3b\xde\x11\x57\x3e\x3a\x49\x08\ +\xea\xbb\x5d\x3a\x2d\x25\x4d\x1e\x8e\x57\xaf\x0e\xe2\x29\x07\x21\ +\x2c\x54\x10\x03\xbe\x2d\x0b\x92\x0b\x4a\x30\xe9\x4e\xa9\x83\x43\ +\xc9\x92\x07\xf1\x39\x4f\xa1\x29\x5d\x60\x7d\x36\xa1\x2d\xe6\xa4\ +\x91\x67\x62\x3a\x82\x3c\x15\x2f\xbf\xa0\xd6\xcd\x3a\xd7\x25\x26\ +\x9d\x74\x76\x7b\x14\x28\x63\x63\x3a\x6c\xda\x7b\x16\xcc\x34\x3b\ +\x94\x03\x48\x43\x1c\xab\x25\x25\x1f\x17\x4d\x61\xb7\x63\x9f\x87\ +\x49\x77\x3a\xcb\xa8\x65\x6d\xa7\x93\x6f\x14\xbe\x6d\x7e\x20\xf1\ +\xd4\xfb\x2a\x5c\x0e\x1b\xaf\x58\xbd\xe0\x49\x76\x9b\x34\x3d\x31\ +\x53\xfd\xdf\x68\x75\x75\x28\xf4\x3a\x8c\x97\x75\xa0\x1f\x76\x00\ +\xa7\x2d\xb0\xf0\xa7\xc4\xf9\x84\x63\x5e\x87\xd2\x75\xa3\xd5\xed\ +\x44\x9f\x6f\x84\x0c\xfa\x4e\x43\x7a\x5f\xa7\x4a\x66\xdc\x71\xcd\ +\x22\xfd\x83\x87\xa7\xd1\xb9\xfe\xb5\x78\xe5\xdf\xfd\x8d\xe8\xbf\ +\x74\xe0\xf3\xd9\x8b\x9e\xb6\x19\xf9\x03\x64\x58\x50\x40\x51\x88\ +\x01\x6c\x63\x81\xab\x65\x9b\x67\x1b\x3e\x2d\x0e\xa8\x85\x01\x9f\ +\xc6\xd7\x40\x03\x7f\x55\xa1\xb4\xf1\xba\xf9\x6e\xfa\x4e\x80\x9d\ +\x26\x9d\x6d\xeb\x75\x47\xa8\xfa\xaf\xf9\xe3\xb8\x73\xfb\x9f\xc4\ +\xdd\x93\xdf\x8d\xbd\x5b\xad\xd8\x51\x9f\xe1\xeb\x30\xef\xc4\x2b\ +\xc9\xd8\xb8\xe1\x66\x15\x5e\x9f\xbc\x5c\xa9\x63\x54\xd8\xaf\x45\ +\xe4\x75\xda\x6c\xc0\xf8\x5d\x8d\xfa\x73\x3d\x90\xec\xcd\x37\xbe\ +\xb8\xb0\xeb\xba\x65\x31\x22\xd4\x6a\xe4\x35\x10\xe4\x0a\x77\x1f\ +\x40\x18\x06\xd2\xc0\xef\x50\x5d\x0a\x81\x69\xc8\xad\x19\x05\xf2\ +\x55\x8c\x4c\x5b\x93\x75\x81\xe1\xba\xe7\x8d\x29\x82\xee\x37\xca\ +\x06\xbe\x68\x39\xf4\xc2\x87\x87\x21\x98\x08\xfa\xab\x14\x45\x2f\ +\xc5\x21\x83\x04\x94\x49\x8e\xd7\xad\xd1\xcd\xd1\x9f\xf9\xfa\xe6\ +\x72\x95\x6b\x20\x49\x48\xab\xa3\xd3\x80\xd9\xa7\x50\xa9\x7f\x4d\ +\x07\x8c\xea\x80\xbd\x4a\x48\x47\xe1\xe8\xe5\x90\x7c\xe2\xb9\x50\ +\x82\xfb\x98\xba\x92\x6b\xea\x95\xfa\xdb\x7e\x82\xe4\x87\x96\xf1\ +\xde\x1c\xc3\x69\x3c\x04\x07\xb8\x5f\x93\x2d\x97\x1b\x65\xe0\x2d\ +\x3f\x39\xb6\x60\x53\x8b\x71\x28\xfc\x0a\xaf\xaa\xf2\x0d\xb6\x2d\ +\xfa\x7a\xd1\xca\x0d\x3a\x8a\x44\x5e\xd6\x15\xad\xf3\x55\x95\xd0\ +\xd0\x56\xac\x96\xef\xfa\x83\x87\x7c\x2c\x07\x79\xcb\xa8\xe6\x92\ +\xad\x01\x13\xdf\x5f\x5b\x30\x2e\x63\xc3\x4d\x38\xdf\xb8\xcd\x6f\ +\xdd\x8a\x97\x72\xd7\x32\x8b\xfd\x31\x95\x82\xce\x1c\x8b\x13\x6d\ +\xd8\xb2\x3f\x5d\x24\x7c\xb5\xd5\x09\x83\x3b\xb6\xc4\xc1\x47\xfb\ +\xa0\x5b\xa1\x95\xb8\x8f\xf2\x93\x68\x1d\x7f\x97\x4c\xdd\x55\x6e\ +\xa0\x29\xec\x8d\x2f\xf9\xbd\xa1\xdc\x80\xd7\x60\xb3\xa9\x26\x1e\ +\x8d\xb7\xeb\x7a\xf7\xd8\xdb\x98\x8e\xa5\xcf\xab\x6f\x2c\x71\x9b\ +\xf1\xe6\x59\xf1\x25\x3b\x9f\x40\x93\xbf\xe1\xad\xc3\xb9\x81\x87\ +\x8c\xbc\xd1\x09\xbc\x8c\x6c\xcd\x6b\xcd\xcd\x9f\xf0\xff\x63\xef\ +\x4f\x9f\x2e\xcb\xae\xf3\x4e\x6c\xbf\x63\x0e\x35\xa0\x00\x10\x20\ +\x48\x02\x10\x67\xca\x12\x07\x49\x94\x64\x49\x96\xda\x92\xdb\x52\ +\xbb\x3d\x84\xc2\x61\x3b\xec\x70\x84\x3f\xfa\xff\xf0\x5f\xe2\x08\ +\xbb\x3f\xb4\xa5\x8e\x8e\x68\xbb\x1d\x96\x25\x5a\x6d\x6a\x26\x69\ +\x92\x02\x29\x90\xa2\x20\x80\x04\x89\x89\x05\xd4\x5c\x59\x99\xf9\ +\xce\x7e\x7e\xcf\xb3\xd6\x3e\xe7\xde\x7c\xb3\xaa\x40\x24\x80\x02\ +\x71\xd6\xbd\x7b\xaf\x79\xed\xe1\x4c\x7b\x9f\x7d\xcf\xb9\xd5\x26\ +\xd9\x29\x4f\x0d\x68\x30\x08\x06\x52\xd8\xfb\x55\xbe\x16\x01\xd0\ +\x0b\xb4\x54\x14\x76\x62\x1b\xef\x80\x04\x09\x49\xaf\x81\x57\x06\ +\x16\x2c\x51\x9b\x9c\x12\xda\x23\x23\xe7\x1d\x1b\x3c\x0d\x5d\x4b\ +\x27\xf6\x79\x35\x37\x80\x8d\x90\x9b\x58\xfe\x8e\xa5\x8d\x8f\xab\ +\x7f\xc0\x66\x39\x76\xe4\x56\x07\x8a\x70\xae\x6c\x8a\x1b\x43\x54\ +\x45\xba\x6e\xee\x73\xe2\xb3\x10\x05\xb6\x1d\x3c\xe5\xa1\x8c\x4b\ +\x64\xaa\x97\x0d\xe0\xab\x8e\x2d\x87\x66\xdb\x5a\xe6\xef\xa4\xd9\ +\xc6\x1c\x24\xbd\xe0\x9a\x38\xb2\x65\x1b\x0b\x67\xb1\xf6\xd0\x4f\ +\xf7\xdf\xbd\xa3\xf1\xfb\xe9\x1d\x3f\x25\x29\x4d\xc5\xd2\x87\x6a\ +\xab\x9f\x34\x5b\x19\x0f\xde\xb9\x18\x5f\xfa\xe2\x6b\x1a\xe7\xff\ +\xd0\xf8\x99\x4f\xff\x9d\xf1\x53\x3f\xf1\x37\xa5\x63\x9c\xc5\xff\ +\x8a\xcb\xa7\xfa\x1a\x20\x46\x6f\xc5\x0d\x36\xf8\x5e\x85\x6d\xef\ +\xdd\x60\x83\x67\x07\xdb\x82\xda\x06\x1b\x7c\x1f\xc3\x76\xf0\x7f\ +\x8b\xd0\x63\xea\xa7\x8d\xad\xd7\xfa\x77\x81\xf7\x3f\xb0\x79\xef\ +\x2d\x36\x8b\x14\xc1\xe4\xc2\x93\xf4\xab\x03\x3f\x99\xf6\xd6\x67\ +\xff\xe5\xb8\x78\xe7\x0d\xff\x67\xda\xbd\x53\xcd\x4c\x1d\x4e\x93\ +\x12\xd9\xb0\x78\xe6\xff\xf3\x38\x3f\xd7\xa4\x9f\x3f\xc9\x67\x31\ +\x8d\x9b\x3a\xfc\x6a\x9a\x1b\x47\xc4\xbc\xe2\xae\x89\x27\xf5\xcc\ +\xf2\xbd\xa8\x26\xec\xff\x3d\x2b\xda\x86\x44\xf5\x1d\x01\xc9\x98\ +\xf4\x10\x1f\x1a\x15\x99\xbe\xc8\xcc\x33\x99\xb3\x4c\xa9\x62\x34\ +\x3b\xe3\x95\x8e\x18\x1d\x4b\x05\xa6\x7c\xe1\xd4\x3f\xb2\xb6\xb3\ +\x0f\x20\x9c\x89\x93\x19\x25\x4d\xfb\x90\xb9\x12\x62\xd5\x0d\x9e\ +\x70\x33\xcf\x52\x7f\x71\x73\xe6\x08\xad\x75\xb5\x65\x84\x98\xb0\ +\xe1\x35\x79\x6c\xc8\x51\x34\x56\xe2\xd3\xd8\x37\xc6\xcc\x3e\x69\ +\xeb\xea\x08\x2f\x8b\x31\xb1\x6b\x1a\x1d\x10\x3f\x93\x02\x11\xf9\ +\x16\x2c\x54\xe4\xca\x68\x37\x08\xae\xe8\x14\x16\x30\x6b\x5b\x26\ +\x89\xea\xbf\x88\x85\xe5\x91\x4a\xc5\x06\x5a\x05\xf3\x1f\x63\x97\ +\xfc\x72\x9e\x1b\x3a\xbe\x19\x78\x39\xae\x79\x15\xe4\x05\xbf\xb2\ +\x67\x61\xed\x7c\x9c\x3d\x7e\x3c\x1e\x3f\x7a\x34\xce\xce\x59\x58\ +\xbb\xf0\xc2\x1a\xff\x05\xf2\x48\xfb\x0e\x4f\xba\x71\xa3\xc7\xaf\ +\x83\x54\xba\xe0\xc6\x13\xb1\xb4\x2f\x5d\x5c\xde\x88\x66\xa1\x6d\ +\x8c\x87\xda\x47\x79\x45\xe4\x25\x13\x5c\x95\xcd\x4d\x39\x92\xb6\ +\xb2\x17\xd9\x78\x92\xcd\x20\x04\x4f\xfb\xa8\x5f\x7a\x56\x20\x1f\ +\x85\xd2\xb6\xd7\xb6\xa4\xee\x62\x32\x81\xbf\xf1\x66\xbc\xa3\xed\ +\x7c\x57\x98\x27\x32\xef\x1c\x1f\x8c\x7b\xda\xd6\x77\x75\x0c\x90\ +\x4e\x8f\x8f\xfc\x8a\x98\xbb\xfe\xff\x85\xd3\xf1\x1c\x8b\x69\xbc\ +\x32\xe6\xe4\x68\xbc\x70\xef\x9e\x30\x0b\xcf\xee\x31\xc5\xe3\x86\ +\x0d\xe5\xa6\x9f\x4a\xaa\xa4\x69\x37\x75\x74\x3d\xa5\x2b\x1a\x2e\ +\x7a\x90\x30\x75\x93\xbf\x31\x72\x54\xf6\x09\xa6\x3d\xd5\x22\xe7\ +\xb9\x59\x18\xf3\x90\xd9\x77\x1c\xca\x31\x8a\xc9\xd7\x86\xed\xe3\ +\x7c\x2d\x2f\x3e\xc4\x1e\xc8\x27\x5e\xe5\xef\xe0\xa4\xc5\x61\x52\ +\x3b\x31\xe2\xe5\x22\x4d\x86\xb7\x9e\xae\x11\x5f\x92\x00\x3b\x1f\ +\x72\xe9\xe9\x23\x74\x29\xcf\x5a\xbb\x4f\x8f\x25\xa8\x69\x9b\xb5\ +\xad\xc5\xad\xab\xac\x6c\x42\x0b\x79\x47\x2f\x9a\x42\xbd\x63\x94\ +\x0c\x28\x04\x61\x91\xb2\x54\x03\x9b\x60\xe4\x5d\xb5\x12\x16\x84\ +\x6e\x0f\xac\x7c\xe3\xa5\x5c\x5d\x92\x4d\x4a\x60\x08\x0d\xcb\x36\ +\xb6\xd8\x7c\x95\xcf\x7e\x05\xa1\xe4\x9b\x84\xfa\xf8\x86\xa1\x78\ +\x9f\xa3\xd8\xf7\x4e\x79\x05\x24\xaf\x7f\x3c\xf5\xcd\x24\x89\xed\ +\xc3\x87\xe2\x39\x35\x9f\xe9\x18\x7d\xe5\xeb\xaf\x8d\xf3\xe7\x3f\ +\x3d\x7e\xe4\xaf\xfe\xad\xf1\xfc\x8f\x7c\x7c\xdc\xe8\x58\xe4\xbf\ +\x41\x52\xb1\xaa\xb3\x0b\x2d\xe8\x66\x94\xa8\xd9\x0d\x36\xf8\x7e\ +\x02\x76\x7f\x1f\x22\xe0\x26\x0c\x62\x38\x9f\x20\xd4\x71\xa6\x2b\ +\x98\x54\x3a\x36\x6f\x8e\x74\xdd\x7b\x6d\x7c\xf1\x8f\xfe\xdf\xe3\ +\x8d\x07\xbf\x32\x4e\x3f\x74\x30\xee\xdc\x3d\xf1\x0f\x98\xf2\x63\ +\x08\xae\x41\x3a\x4b\xe8\x7a\xc7\xb5\x93\xeb\xe1\xe5\x0d\x4f\xfe\ +\x4b\xc7\x75\x90\x37\x02\xf0\x84\x11\x57\x3a\xc9\xf2\x14\x2b\x63\ +\x98\x1e\x5f\xa5\x48\x56\xd9\x33\x4e\x82\x27\x66\xe4\xd6\xc9\xde\ +\x98\x04\x6a\x99\x8d\xa7\xd8\x0a\x68\xab\x95\xf8\xc1\x0c\xb8\x65\ +\xf6\x2b\xf0\x42\x98\xb4\xc8\x3c\x76\xb3\xd0\xdf\xd0\xca\x38\xd7\ +\x64\x81\x29\xf2\x28\x84\x08\x4a\x64\xf1\xfe\x81\x89\xce\x61\x7e\ +\x8a\xa8\x16\x50\x88\x46\xdf\xa5\x9e\xd8\x02\x92\xda\x31\x41\xba\ +\x2e\x46\x45\xdb\x66\x3a\x60\x5f\x14\xb8\xcf\x65\xd3\x76\x21\xad\ +\x57\xea\xeb\x22\xb4\xeb\xeb\x58\x69\x1b\x36\x7e\x3a\xcd\x9c\x68\ +\xfa\xde\x72\xd9\xb8\x7d\xfa\xc8\x28\xdb\x44\x63\x14\xc6\x9a\x58\ +\xa3\x93\x9c\x45\xb2\x3c\xb9\xa6\x6d\xa7\x71\xcd\xc5\x39\x0b\x6c\ +\x2c\x78\x25\xf1\xaa\x47\xbf\x16\x5b\x72\x5e\x21\xe9\x45\x37\x8f\ +\xad\x29\x8b\xbe\x80\xf0\x57\xb5\xaa\x1f\x8c\xd0\x47\x94\x47\x19\ +\xd8\xdb\x27\x3c\x96\xfd\x3f\x6c\x2e\xf7\xfc\x2a\xe3\x2c\xed\x63\ +\xe7\x2c\xae\x3d\xd2\xf8\xec\x71\xff\x18\x0e\x7b\x81\xda\x9f\xc5\ +\x25\x62\xa7\xf5\xc9\x23\x09\xd5\x5a\x95\x53\xb2\x06\xd7\x89\x18\ +\xc6\xb1\x65\x61\x8b\xd7\x2d\xfa\xb5\x8e\x1a\x2f\x19\x6b\xe7\xb7\ +\x5c\xe3\x2a\xc6\xd4\xec\xbb\xbc\x7a\xcf\x0b\x6a\x4a\xfd\xe4\x75\ +\xbf\x8e\x91\x7d\x82\xeb\x9c\xaf\x7f\xec\x2e\x92\xfb\xc9\x33\x2f\ +\x9a\xd5\x7e\x63\xfb\xc4\xe5\x29\x33\x2e\x65\xae\x6f\xfb\x50\x25\ +\xd1\x2c\x98\x59\x4e\x4c\xea\x88\xde\xb5\x17\xc0\x37\x67\x3a\x38\ +\xbd\x2e\xa0\x6d\xa0\x6a\xfb\x62\x00\x27\xec\xe3\x59\x36\xde\x36\ +\x11\x15\x35\x4d\x0a\x19\x14\xce\xdb\x17\x7e\x2d\x27\x3a\xf5\xb3\ +\x12\x68\x03\x00\x39\x7a\x7d\xec\x23\xb6\xfd\x00\x6b\x5d\xcf\x8a\ +\x61\x59\x1b\xe1\xc1\x38\x21\xa4\xc7\xbf\x89\x12\xb5\xcd\x12\x1b\ +\xde\x09\x99\xdb\x05\x20\x49\x5c\xa8\x64\xf0\x61\x52\x5e\xc5\x23\ +\x3e\x9d\x6e\xb6\xfc\x48\xee\x6f\x6c\x23\x5e\x52\x64\xd8\x77\xfc\ +\x5e\x60\xeb\x57\x41\xce\x57\x42\xda\x9f\xc0\x4c\xc1\x70\xb6\x38\ +\x50\x34\x6c\xc7\xb4\x4e\xe6\xda\x45\xb2\x1f\x49\x9b\xff\xd2\xcb\ +\xbe\x72\x7c\x7c\x32\xee\x6a\x3c\x7f\x5f\x63\xf9\xb9\xa8\x56\x39\ +\xc7\x2e\x45\xb1\x8f\x3d\x78\x70\x3e\x5e\x79\xf9\xc1\x78\xf3\xeb\ +\x07\xe3\xa7\x3e\xfd\x9f\x8c\x5f\xf8\x0b\xff\x13\x9d\xc7\x3f\x24\ +\x1b\x7a\xf5\xc4\x3f\xf2\x8b\x17\x90\x72\x36\xd8\xe0\x7b\x15\xb6\ +\xbd\x77\x83\x0d\x9e\x1d\x68\x5c\xd0\x57\xf4\x0d\x36\xd8\xe0\xfb\ +\x0d\xb6\x83\xff\x3d\x80\x0e\x7a\x3f\xa3\x8e\xee\xc8\xa7\xd9\xbe\ +\x4b\x47\xe3\xf2\xee\xc5\xac\x9c\xdb\xf8\x5d\x60\xa9\x4a\x7e\x79\ +\xc7\x93\x34\x67\x5f\xfb\xf2\x78\xfd\xb3\xff\x6c\xdc\x3c\x7e\x73\ +\xdc\x7f\xe1\xf9\x71\x9f\x27\x1c\x74\xea\xe7\xf4\xef\xd7\x0c\xd5\ +\xaf\xa6\x77\xff\x33\x4d\x93\x71\xcd\xc4\xf3\xcb\x5c\x25\x4f\xe4\ +\xeb\x26\x0f\x37\x13\xa4\xcb\x6b\x20\x55\x22\x13\xfd\x1b\x6e\x30\ +\x09\xd0\x4b\x84\x9c\x85\x36\x70\x12\x5a\xee\x0c\x08\xc1\x53\x47\ +\x61\xa2\xc3\x5b\x26\x5d\x3f\xd9\x86\x48\x42\x97\x65\x3b\x64\xd8\ +\xba\x7c\x62\x8b\x54\x1d\xcd\x57\x3d\x78\x2a\x8d\x9b\x0e\x0e\x0e\ +\x30\x61\x83\x46\x64\x99\x78\x7d\x78\x2b\x52\x26\xdf\x12\x69\x22\ +\xc5\xdd\xaf\xcc\x0d\x4b\x26\xcc\xaf\xb5\x99\xa8\xe1\xe6\x09\x9b\ +\x41\x44\xd1\x4c\xe6\x12\x2d\x9f\x18\x05\x43\x59\x07\xdd\x76\xa5\ +\x0f\xc2\x26\xb6\x91\x41\x8b\x2c\x59\x48\xe7\x10\x53\x37\x45\x93\ +\x9e\x82\xd4\x33\xa4\x81\x28\x6e\x32\x39\x44\x19\xc4\x0d\x02\x4a\ +\x42\xb6\x47\x91\x13\xaa\x20\xfa\xce\x7d\x8e\x01\xdb\xc0\x0b\x6b\ +\xdc\x40\xbb\xf4\x0d\x7a\x16\x60\xd9\x6f\xce\xcf\x78\x52\x8d\x45\ +\x36\xe1\xc7\x8f\xc7\x23\xa5\xb3\x47\xa2\x2f\x2e\xbd\xc8\xf6\xf8\ +\xd1\xb9\xf4\x2c\xc0\x5d\x8d\xf3\x4b\xfe\x67\x8d\x45\xb9\xba\xf9\ +\xa4\x4d\xc8\x4d\x45\x99\x8e\x47\xaa\xcb\x85\xd2\xa5\x8a\xbc\xf4\ +\xd3\x36\x6a\x05\xfb\x83\x6a\x70\xe1\x3a\xa9\x4d\xd4\x43\xd4\xa5\ +\xb6\x1f\xfd\xca\xa2\xdb\x02\xf4\xcb\xc1\x38\x96\xe9\x91\x2a\x7f\ +\x22\xac\xf9\xf3\x38\xd1\x36\x3e\x15\x71\x7a\xa4\xe4\x1b\x40\xdc\ +\xac\x39\xd6\x44\x5b\xe9\xe4\x58\xf2\xe3\x71\xef\xee\xe9\xb8\x77\ +\x7a\xea\xd7\x74\xbd\x78\xef\xee\x78\xe1\xde\x9d\x71\x4f\xfa\xbb\ +\xc7\xfc\x4a\x35\xb1\x99\xab\x67\xd1\xac\xca\x72\xd7\xb0\x80\x87\ +\x40\xb5\xb1\x8e\x9e\xa7\x1e\x88\x72\xf3\x8a\xa7\x8e\x8c\x65\x87\ +\xdc\x6e\xdc\x05\x42\x06\xb6\x0f\x2c\xbd\x5d\xb1\xc8\x95\x95\xa6\ +\x7c\xa0\xb2\x5d\xa3\x6b\x90\xcc\x31\xa4\xe9\x02\x2c\x4d\x56\xac\ +\xa0\x3c\x84\x4c\x39\x28\x44\xa0\x49\x0e\xa1\xd0\x8b\xe7\x84\x95\ +\x7d\x40\x02\x64\x55\xa1\xa9\x16\xe1\xf6\x16\x1d\xf9\x24\x0a\x4a\ +\x4a\x9d\x21\x5d\x5c\xe8\xd2\xd0\xe1\x55\x4f\x62\xa5\x9d\xd3\x20\ +\x1b\xc0\x3a\x03\x36\x65\x8b\xdc\x55\x72\xff\xb6\x9d\x8d\x16\x1c\ +\xc2\xc8\xfd\x37\xe5\xa0\x94\x17\xba\xaa\x66\x58\xf4\x46\x4a\x15\ +\x5d\x99\x28\x0a\x35\x1d\x64\x62\x4d\x93\x0b\xc5\xa7\x75\x5d\x36\ +\x3a\xd1\xec\x2f\x08\x54\x75\xf6\x1c\xe8\x2c\xac\x89\x93\xee\x90\ +\xfd\xf6\xf4\x64\x9c\x6a\x9f\x3d\xf0\xcd\x49\x7b\x3a\x86\x6f\x70\ +\xcb\xee\x42\xe7\xc2\xd7\x5e\x7b\x73\x9c\x9f\xfc\xc0\xf8\xe1\x5f\ +\xfc\xdb\xe3\xf9\x3f\xf3\x43\xd2\x5d\xca\xb6\x9e\x4a\x9e\xd0\x05\ +\x07\xf9\x3c\x29\x7a\xdd\x94\x09\xa5\xdb\x60\x83\xef\x69\x78\x97\ +\xfd\x18\x31\xc7\x40\x1f\x8f\x80\xcf\xca\x1c\x0f\xd6\xea\x8a\x23\ +\xe6\x46\x03\x04\x1d\x91\xe3\xf1\xd9\xd7\xc6\x97\xbe\xf4\xdf\x8d\ +\x97\x1f\xfd\xda\xb8\xff\xe2\xe5\x78\xfe\xee\x3d\xd9\xe8\x80\xd4\ +\x78\xa8\x9f\x2e\x26\x20\xd7\x4c\x5e\x97\x0c\xce\x93\xfc\x8c\x55\ +\x74\x0d\xf4\x62\x5a\x16\x56\xf2\x6e\x39\xe9\xb8\x2e\x52\x2a\x27\ +\x62\x97\x0e\xe8\x7c\x26\x1f\x6a\xc0\xf5\x0f\x21\xe7\x7b\xe8\xd4\ +\xad\xed\x80\xa2\x2d\x0f\x70\xdd\x6c\x80\x82\xf5\xb8\x2c\xa2\x94\ +\xef\x40\xf9\x4f\x46\x0e\x7e\x46\x74\xb6\xa1\x10\x89\xa8\x8e\xab\ +\x24\x00\xa3\xf3\x50\x11\x01\x1d\x46\x92\x3c\xe7\x2b\xce\x61\x92\ +\xb3\x18\x02\xef\xf3\x30\x3e\x18\xdb\xcc\xe3\x43\x3f\x91\x0e\x5f\ +\x72\xc0\xb5\x5a\xd9\x19\x8b\xb0\x5d\x49\x9c\xef\xd8\xa0\x0d\xac\ +\x63\x01\xb0\x8c\x17\x39\xc7\x2f\x2d\x06\xb2\x70\x65\x19\x3a\x21\ +\xfb\x8a\x76\x57\x98\x96\x56\x7d\x01\x19\x3d\xdb\x8e\xb1\x49\x0c\ +\xbc\x4f\x80\x49\xd5\x39\x7e\x6a\x8d\x97\x3c\x78\xfb\xb2\xb8\xa6\ +\x71\x8f\x78\x16\xba\x2e\x45\x5f\x3c\xbe\xd1\x98\xe9\x52\x98\x7d\ +\x41\xdb\x5f\x7d\x88\xbf\xc1\xe3\x1e\x8a\xf5\x49\x3d\xe3\x6f\x17\ +\x95\x6d\xa1\x90\x2e\xc7\x34\x2e\xbd\x90\x57\x4f\xaf\xb1\xad\x88\ +\xfb\xf8\x91\xe2\x3f\xba\x18\x67\x1a\x58\xf1\xf4\x63\xc6\xd0\x0e\ +\xe9\x9e\xea\xf1\x87\x5a\x1a\xc1\xfa\x64\x4f\x79\x42\x2d\x41\xe5\ +\x5d\xd9\x02\xf9\xc8\x97\x6b\x8e\x17\xd2\x4e\x59\xb0\xe0\x29\x34\ +\x45\x62\x6c\x45\xdf\x09\x1f\x9f\xb0\xe8\x95\x85\x2f\xc6\x48\xbc\ +\xea\xf1\xf4\xee\x91\xff\x3f\x8d\xd7\xf1\x31\x06\xcb\x53\x44\xc2\ +\x2c\x92\x91\x78\x03\x41\x8d\xcf\xac\xe3\x49\x34\xca\xf2\x3e\x04\ +\xe6\x47\x4b\xe9\x97\x5c\x27\xd1\xcb\x96\xfa\x55\x65\xdd\x2a\x55\ +\x16\xd6\x36\x08\x1b\xd3\xaa\x32\x8c\xdc\x64\x40\xf4\x9a\x0d\xb4\ +\x3d\x8d\x2f\x58\xb1\xee\x97\x90\x8b\xc9\x13\x41\x52\x17\xd4\x2b\ +\x57\x33\xde\xc7\x16\x76\x17\x2c\xe8\x7a\x8b\x5a\xd5\xc3\x14\x6d\ +\x2a\x65\x7a\x44\x60\x41\x84\xa6\xdc\x0f\x29\xd9\x52\x65\x53\xae\ +\xca\x87\x46\xc6\x7e\x1c\x1a\x40\xe3\xb6\x59\x67\x41\xd1\xe6\xa6\ +\x1d\xf5\x71\xbd\xe4\x6c\x11\xdb\xc3\x0c\x75\x5b\xc7\x2f\xec\xb1\ +\x5c\x7c\x22\x2b\x7f\x71\xec\x4f\xa8\x51\xa0\x2d\xb1\xe2\x41\x57\ +\xbb\x5b\x4f\xa2\xfe\xf0\xf2\x0b\x1f\x1b\xef\x4f\x9c\x7b\x30\x45\ +\xc7\x47\xb2\x13\x8d\xe3\xef\x32\xa6\xbf\x73\x67\xdc\xb9\x73\xa2\ +\xe3\x84\x5e\xb3\x63\xe6\x7e\x3a\xb0\x18\x5b\x9d\x5f\xdc\x8c\x57\ +\xbe\xfe\xe6\x78\xe5\x2b\x57\xe3\xd3\x3f\xfc\xd7\xc6\x5f\xfc\xf9\ +\xff\xd9\xb8\x7b\xf2\x09\x55\x9b\xf3\xb9\xc6\x5b\x2e\x85\x23\x14\ +\xff\x86\x48\x37\xd8\xe0\x7b\x09\xb6\xbd\x76\x83\x0d\x9e\x1d\xe8\ +\x1a\x54\x57\xa1\x0d\x36\xd8\xe0\xfb\x0e\xb6\x83\xff\x3d\x80\x0e\ +\x7a\xb7\x51\xc7\x7e\x07\xb6\xed\xda\xef\x5d\x3a\x19\x93\x77\x2f\ +\x62\x2f\x50\x3b\xdc\x02\x6d\xc9\x19\x9d\x09\x04\x0b\x50\xdc\xfb\ +\x39\xff\xc6\x97\xc7\x9b\xff\xee\x5f\x8d\xcb\x87\xaf\x8c\x17\x3f\ +\xfc\x21\x4d\x0e\x8e\x98\x43\x18\x58\x14\x61\x31\x83\xa7\xd2\xae\ +\xfa\x35\x8f\x2c\x96\x68\x72\x81\x2e\xaf\x5d\xe4\x46\x41\x2d\xac\ +\x31\x91\xf7\x8c\x3e\xd8\x89\x58\x8a\x91\xa7\xc9\x52\xbe\xb3\x9a\ +\xf4\x53\x96\xeb\x02\x08\x47\x26\x0c\x8b\x8c\x59\xbe\xe5\x08\x88\ +\x17\x1b\x3e\x7e\xf2\x0d\x45\xf1\xcc\x63\x52\x87\xdc\xc5\xa1\x7c\ +\x2f\xa2\x5d\x75\x8c\x94\x27\x06\x6b\xd3\xe5\xe9\x89\x3e\xf7\x28\ +\xe6\x2f\x61\x85\xe8\x27\xdb\x29\x67\xe2\xe5\x0e\x94\x4d\xdd\xcb\ +\x30\xec\x4c\x9a\x9b\x92\x73\x28\x72\x62\x05\x1b\x26\xad\x64\x1a\ +\x94\x80\xb6\xc3\xb7\xe4\xa6\xcb\xdf\x35\xb0\xde\x0a\xab\xa3\x6f\ +\xdc\xb2\xe2\x5d\xf1\x92\x55\x2b\x80\x45\xb2\xd6\x2d\x08\x48\x79\ +\xc2\x25\x73\x6c\x7d\xe9\x3f\xf3\xa5\x37\xdd\x79\x3a\x13\x23\x25\ +\xf5\xb9\xb0\x6f\x06\x89\xe6\x3f\xf7\xf8\x0f\x98\x5e\x94\x3d\x7f\ +\x7c\x3e\x1e\x3f\x7a\x3c\xce\xcf\x1e\x8f\x33\xfe\x67\xed\x71\x5e\ +\x0f\xe9\x3f\xd8\xe7\x35\x91\x3c\xf5\x26\xdb\xb3\xf3\x4b\xf9\xf1\ +\x4b\xee\x1b\xdf\xf4\xe1\x89\xb5\x73\x6e\x40\x91\xb4\x7d\xd9\xd5\ +\xb4\x47\x78\x17\x11\xe9\xfb\x8d\x14\x9f\xfe\x13\xc1\xb6\x74\xdd\ +\x54\x5f\x21\xdf\xe2\x04\x2b\x63\x41\xed\xf8\x88\xc5\x35\x16\xcf\ +\xb8\x19\xc3\x6b\x86\xf2\xfa\xa1\x63\x6e\xd6\x88\xe6\x17\xd4\xa7\ +\xbc\x12\xe6\x84\x3f\x31\xbf\xe7\xd7\x3c\xbe\xf0\xfc\x7d\x3f\x9d\ +\x76\x97\xff\xac\x62\x96\x4f\x11\x8e\x2b\x82\xf6\x0b\x43\x2e\x7d\ +\x47\x4a\xee\x84\x8b\x77\xa0\xec\x53\x71\xe9\xfe\x44\xaf\x94\x46\ +\x58\x82\xcc\xf1\xd0\xa1\x2a\x99\xf7\xda\x30\x96\x77\xac\x85\xae\ +\x7d\xb6\xf6\xd5\x6c\xba\xc4\x02\x96\xed\x8f\xb4\xad\x13\x90\x27\ +\xa9\xfa\xa5\x35\x4f\x85\xde\xde\x90\x33\xdb\xa9\x92\x73\xf8\xb5\ +\x3e\x6d\x15\xe3\x0a\x95\x55\x1a\xe8\xba\xa5\x9e\x81\x6c\x47\x53\ +\xfe\x92\x05\x95\x5c\x78\xcd\xa7\x0d\xa2\xdd\x87\x2a\x87\xbe\x46\ +\x35\x0f\xd2\xc2\x16\xae\xe8\xbe\xf9\x22\x41\x16\xe4\x04\xd5\x6f\ +\x93\x20\x56\xc7\x29\x7f\x3e\xb9\x39\x07\xb6\x95\x00\x9b\xc9\x18\ +\xac\x07\xe7\xae\x6d\x09\xf7\x6c\xc4\xce\x6d\x22\xb4\x68\x8b\x91\ +\x41\xcb\xfc\x44\x5a\xee\x16\x2a\xc9\x4b\x34\xb5\xf4\x4d\x46\xd1\ +\x5e\x70\x63\x7f\xd6\xfe\x7a\x72\x72\x3a\x8e\xf8\xe3\x7d\xea\x6f\ +\xbf\xb4\xd1\xc7\xe7\x38\x1a\x6f\xbe\xfe\xfa\x78\x3c\x3e\x3c\x3e\ +\xfc\x0b\x7f\x63\x7c\xe8\xa7\x7e\xd4\x4f\x9c\xe2\x9b\x42\x77\xb7\ +\x26\xb0\xda\x3c\xbb\xd0\xe6\x8b\xe9\x06\x1b\x7c\x6f\xc2\xbb\xed\ +\xc7\xd2\xe9\xf0\x59\x4c\x74\x1c\xf9\x98\x28\x01\x8b\x5f\xbe\x16\ +\x5c\x1d\x8d\xf3\x47\x2f\x8f\xcf\x7d\xf1\xbf\x19\x0f\xce\x3e\x3b\ +\xee\x7e\xe4\xc0\x37\x6a\xf9\x11\x07\xcb\x5e\x5e\x4c\xc3\x97\xe3\ +\xf0\x8a\xff\x1c\xd5\xd8\xea\xe6\x3c\x3c\xd7\x4c\x8f\xbd\x18\xef\ +\x64\x0c\x25\x24\x28\xbe\x4e\x23\x1c\xc1\x2e\xb7\xeb\x00\xb9\xca\ +\x9a\xde\x3f\x93\xf7\x75\x7c\x4a\xf7\xfc\xa3\xa6\x6e\x6d\x83\x5e\ +\xe7\x04\x31\x1e\x8e\x51\x7f\x61\x86\x55\x10\x19\x83\x71\x4e\x49\ +\xdb\x1c\x4f\xbc\xed\x70\xe7\xdc\x83\xfc\x80\x67\xfb\xd3\x7f\xbe\ +\x79\x6e\x22\xbe\x80\xc3\xc5\x23\x4c\x23\xe2\x99\x2b\xbb\xe2\xe1\ +\xc0\xe6\xfc\x95\x84\xba\x14\x2c\x54\xc0\xfc\x14\x26\xd6\xe4\xc5\ +\xce\x57\x20\x82\x10\x29\x03\x7b\x71\x02\x5c\x7c\x43\x8a\xb2\x46\ +\x5f\x5d\x31\xe5\x10\x19\x18\x39\xfd\x61\x56\x56\x28\x22\xcb\x36\ +\xcc\x39\x18\x3a\x0b\x5e\xea\x4f\xb0\x3a\xf5\x5c\xe3\x9e\xb3\x87\ +\xd7\xe3\xec\xd1\xf5\x78\x2c\xcc\x6b\x1a\xfd\x83\x23\xc6\xdf\x8c\ +\xbb\x2f\xe9\x7f\xb6\x07\xfe\x2a\x97\x42\xa8\x82\xf9\xda\x46\xca\ +\xc0\xc8\x29\xc7\x8b\x93\xfc\xed\xf1\x39\x65\x5d\x8e\x8b\xb3\x2b\ +\x3f\x25\x47\x59\x57\x2c\xaa\xa9\x5c\x8f\x9d\x55\x07\x20\xd7\x5e\ +\x25\x02\x9a\x2e\x12\x02\x3b\x70\xc4\xb6\xf5\xa6\xf4\xb8\x29\x0b\ +\x69\x1e\x4f\x9d\xf0\xd4\x18\x3f\xe8\x90\x52\xd5\xf5\x75\xab\x16\ +\xc7\xfc\x74\x99\xed\xe0\x35\xd6\xba\x73\x30\x4e\xf9\x4f\x35\x68\ +\x9e\x56\xe3\x49\xb6\x93\x5a\x94\x63\xf1\x4d\x07\x8e\xc3\x10\x47\ +\x32\x97\xe7\x72\x95\xa4\xc8\xee\xa4\x8c\xfa\xb0\xbf\x99\xcc\x48\ +\x26\x0b\x33\xee\x8a\xde\x02\xfa\xc4\xa7\x25\xc8\x1c\xab\xb8\xd9\ +\x36\xa5\x6e\x6b\x68\x73\xa2\x11\x88\x5e\x82\x1a\xd6\xac\xe9\x38\ +\x95\x17\xba\xa6\x02\xe6\x3a\x14\x78\x0a\x57\xd0\x72\xc1\x8c\x83\ +\x40\x0c\x75\xf6\x7e\x6f\x59\x53\x65\x6f\x23\x77\x7d\x1f\x62\x96\ +\xe5\x03\xcd\xb6\x56\x3f\x40\x9b\x2a\x97\x8a\xd3\xbd\x91\x45\xb0\ +\xe8\x01\x70\x1f\x13\xb1\x2f\x2c\xc2\xdb\x20\xdf\xaa\xdf\xca\x57\ +\x3a\x16\xa7\x6c\x82\x40\x59\x50\x95\xc7\xd8\x05\x4c\x85\x6c\x83\ +\x5c\x84\x7c\x3c\xd4\xb6\xac\x7d\xc8\x91\x4b\x69\xab\xb2\xc5\xce\ +\xfa\x24\x20\x7c\x0a\x0e\x2d\x5c\x7a\x97\x29\xcc\x3e\xca\x0f\xe8\ +\xf8\x1f\xda\xe7\xee\xdd\x1b\xa7\x9a\x07\x8f\x1b\x25\x6c\xf8\xb0\ +\xf3\xc3\x48\xa4\xc3\x67\x7c\xe3\xe5\x37\xc7\xd7\xbe\xf8\x60\x7c\ +\xea\x13\xbf\x38\xfe\xc2\xcf\xff\xcf\xc7\x87\xee\xff\x8c\xe6\x2a\ +\x8f\xb4\xbf\xde\x53\x4d\x7c\x16\x8c\x7d\xbc\x69\xc2\x06\x1b\x7c\ +\x4f\x41\xf6\xe1\x0d\x36\xd8\xe0\x59\xc0\xb6\xa0\xb6\xc1\x06\xdf\ +\xc7\xb0\x1d\xfc\xef\x01\x35\xc6\x7e\x2a\x74\x07\xae\x6d\xde\x67\ +\xa7\xe2\x72\x9b\xfb\x2e\xac\x2b\x70\x4b\x60\x66\x0a\x3a\x85\xaf\ +\x35\xdc\x14\xbe\xd2\x44\xea\x48\x13\xf1\xb3\x97\xbf\x3c\x5e\xf9\ +\xcc\x3f\x1f\xe3\xe1\xab\xe3\xfe\x4b\x2f\x8c\xe7\xee\xf2\xe7\xcc\ +\x32\xc2\x81\x89\x3e\xff\xb7\x70\x71\x36\x0e\x58\x08\x21\x79\x41\ +\x8d\xa7\x90\xb8\x21\xc0\xcd\x1d\x19\xde\x30\xc1\x0f\x8d\x2c\x3f\ +\x91\xc5\x1d\x1b\xa6\x16\xe2\x59\x6c\xb3\xad\xe2\x32\x19\x17\xcd\ +\xfc\x26\x37\x62\x10\x52\x5e\xe4\xf6\x4d\xd6\x62\x4f\x66\xb8\xc9\ +\xe4\x05\x34\xeb\x62\xeb\x1b\x00\x04\xc2\x88\xb9\x61\x97\xe9\x7a\ +\x44\x8f\xce\x0b\x74\x4e\x09\xc8\xf4\x86\x9b\x10\x3d\xd1\x3c\xf0\ +\x82\x8a\x08\x4f\xcc\xa5\xad\x09\x5e\x36\x02\x4e\xe9\x4a\x8a\x98\ +\xb3\x4f\x83\x74\x28\x04\x36\x85\x70\x26\x4e\x72\x6b\xd0\x33\x43\ +\xac\xd9\xb2\x65\x3d\xeb\x03\x6a\x42\x87\x20\x93\xc4\x14\xd0\xb2\ +\x6c\x10\x74\x55\x30\xae\xdc\x4c\x71\x1d\x91\x51\x87\xf0\x28\x3d\ +\x75\x63\xf6\x59\x95\xa9\x5a\x14\x34\xa7\xf6\x1b\x17\x20\x44\x30\ +\x85\xb9\x09\xd1\x60\x2f\x7d\xbd\x7d\xa6\x31\xd2\xc8\x81\x4c\x19\ +\xe9\xbb\xb6\x10\x8f\xbd\x12\x7e\x6c\x13\xbf\x92\x88\x9b\x39\xe7\ +\x17\xe3\xf2\x9c\xa7\xd2\xce\xfc\xf4\xda\xd9\xd9\x63\xc9\x58\x50\ +\x3b\x37\x7d\x7e\x76\x1e\x1a\x1b\x5e\x1d\xe9\x1b\x4a\x79\x1d\x24\ +\xbf\x10\xf5\xab\x92\xae\xb4\x6f\xd6\xe2\x1a\x25\x5f\xab\xc3\xbc\ +\x3f\x09\xd3\x77\xf4\x4c\x6e\xb4\xd4\x84\x99\x7a\x29\x79\xcb\x42\ +\xe8\xcb\x6b\x5f\x50\xe4\xff\x3a\x0e\xf3\xdf\x67\x87\x47\x75\xc3\ +\x87\x57\x3d\x6a\x82\x7d\x7a\xe2\xd7\x3c\x3e\x7f\xef\x7e\xfe\x2f\ +\xed\xb9\xfb\xe2\x4f\x72\xa3\x68\xb6\x3a\xe0\x5d\x51\x31\xc0\x14\ +\x11\x08\x5f\x94\x3f\x7c\x03\xe9\x2f\xff\x02\x76\x3a\xac\x62\x7a\ +\xf3\x2e\xf2\xfa\x1a\xbc\x2f\x4e\x28\x69\x2b\x81\x6a\xe3\x84\x0a\ +\x4a\x9d\x9b\x5d\xa0\x6c\xd5\x7f\xee\xa3\x2a\x73\xb1\x0c\xb5\xe3\ +\x65\xd1\x5a\x07\xc5\xb6\x58\x7c\x6d\x2d\xa2\x25\xed\xed\x3e\x80\ +\x53\x61\xd3\xba\xec\xda\x7f\xd5\x81\x91\xb8\x3d\xeb\xfe\x8b\x3e\ +\x66\x64\xf4\x65\xf4\xde\x07\x45\x67\x5b\x87\x36\xec\xe0\x4a\x16\ +\xe5\x66\xa8\x7b\xc7\x3c\xf2\xd4\x2f\x7a\xb2\xa2\x2b\x46\x8e\x47\ +\x7c\x4a\x3e\x31\x64\x1f\x7f\xd0\x7c\x4b\x01\x32\x29\xe5\xdc\xae\ +\x81\xd4\x17\xc2\xac\x51\x45\x4f\x6e\x42\x91\xc0\xca\x40\xbe\x71\ +\x6f\x42\xe5\x09\xfb\xd7\xff\x2a\xdb\xaf\x33\x42\xa7\x7d\xd4\xaf\ +\xd2\xba\x73\xc7\x37\x29\xfb\x75\x58\xa9\x1a\xe7\x64\xd9\xc8\xf7\ +\xcd\xd7\xdf\x18\x0f\x6e\x5e\x1c\x2f\xfd\xcc\x5f\x1f\x1f\xfe\xd9\ +\x9f\xf2\x79\x9e\x05\xe5\x5d\xa0\xa0\x05\x71\xa8\xad\x81\xe2\xf6\ +\x44\x1b\x6c\xf0\xa7\x0b\x6a\x07\xe7\x48\xcd\xb9\x45\x82\xb9\xd3\ +\x43\x30\x3a\xd1\xb1\x78\xa9\xb1\xd5\xf9\xd7\xc7\x97\xff\xe8\x1f\ +\x8d\xaf\xbd\xf5\xab\xe3\x85\x8f\x1f\x7a\x6c\xc5\x02\xf6\x61\xfd\ +\x67\x1a\xd6\x2c\xa6\xf8\x3f\xd3\xfc\x83\x93\x0b\xc9\x34\x96\xf2\ +\xf8\xe5\xca\x8b\x2b\x3c\xd5\x6f\x5b\x27\xae\xa3\x1c\xb3\xf1\xe5\ +\x66\xb8\xb1\xec\x39\x24\xa1\x97\x63\x32\xd7\x44\xb2\xa2\x26\x44\ +\x1e\xd9\xbe\x4d\xf2\xe2\xf5\x65\xc1\xcc\xc7\xb5\xab\xac\x56\xf7\ +\x22\x10\xb4\x74\x8c\xc9\x7c\x0e\x51\x3f\xf8\x7f\xc6\xec\x8b\x03\ +\xb4\xce\x41\x3e\x0f\x71\x6e\xe2\x7c\xd5\xb2\x94\x80\x19\x28\x3e\ +\xe4\x00\x36\x11\x4e\x59\xd8\x90\x2e\xbb\x5d\x63\xeb\x4d\x30\x4d\ +\x43\xac\x6d\xcc\x97\xde\x6d\xc1\x3e\x6c\x5d\x97\xab\xcc\xae\x4f\ +\x9d\x97\xab\x59\x4b\x8c\xb9\xad\xb1\x2f\x68\x7d\x4c\x56\xe5\xc8\ +\xa6\xcc\x69\x37\x60\x5d\xdb\xf9\xe2\x4d\xa9\xfa\x94\x61\xd3\x8c\ +\x59\xf9\xaf\x39\x16\xb8\x18\x57\x3f\x7e\x7c\x3d\xce\x1e\x5e\x8d\ +\xb3\xc7\x1a\xef\x9c\x69\x1c\x74\x76\x23\x5a\xe3\xa0\xc7\x3c\xf1\ +\xaf\xfd\x85\x8d\xc4\xd3\x34\xf4\xbf\xe3\xa4\x7e\x94\xcb\x13\xfe\ +\x96\x79\x03\x12\xef\xc0\x3f\x60\xba\xbe\xa8\x27\xe1\xce\xb4\x8d\ +\x35\x1e\xe3\x3f\x6c\xbd\xa0\xc6\xf6\xf4\xfe\x27\x6c\xde\x81\xb4\ +\xab\x51\x71\xf1\x61\x23\x83\x60\xbb\x7a\xf3\x46\xc0\xf5\x87\xc5\ +\xaf\x2c\xa8\xe9\x5a\xc3\x8f\x92\xd8\x07\xfa\x09\xb2\x5a\x4c\xf3\ +\xf8\x4a\x32\x9e\x44\x63\xa1\x8c\xa7\xd8\x4e\xee\xf0\xff\x69\x75\ +\xbd\x3a\x15\x8d\xcc\xff\xb1\x96\x6b\xf2\x5c\x34\xa3\x58\xef\x57\ +\xd0\x60\xea\x55\x3c\x15\xa4\x3e\xd4\x51\x60\xec\x6c\xaf\xee\xde\ +\xc6\x92\x41\xfb\xb3\x8a\x81\x8d\xc0\x16\xc5\xe3\xdb\xb9\x8d\x6c\ +\x1d\xfd\x14\x57\x56\xec\xf4\xf3\xdc\x43\x8c\xf5\xb7\x80\xed\xd1\ +\x8b\xb0\x7d\x39\x9a\x46\x07\x88\xf0\xb6\x08\xb9\xd8\xd8\x40\x99\ +\x04\xb4\xc1\x72\xb0\xad\x10\x17\x9e\x59\x81\x68\x1f\x86\x90\x2b\ +\x9b\xb6\x0b\x56\x1c\xcd\x33\xb2\xa8\x55\x7a\x77\x70\x31\x85\xec\ +\xee\xf2\x17\x1a\x46\x5b\xcb\xf6\x69\x3f\xdc\xa2\x27\x0c\xaf\x83\ +\x5c\xd7\xd3\xfb\x91\xe9\x94\x47\x56\xe6\xd1\xf3\xa9\x1f\x0f\xa1\ +\x59\x74\x65\xef\x76\xc7\x96\xe1\x10\x80\x55\xcf\xe5\x6c\xa3\x8c\ +\x7d\xc8\x24\xfb\x10\x58\x19\x31\xc1\x79\xf2\x91\x1f\xd1\xdd\x1d\ +\xf7\xef\xf1\xa4\xda\xa9\x3b\x79\x96\x2f\x1b\x7e\x48\x4a\x44\x8e\ +\xad\xd7\x5e\x7d\x6b\xbc\xf2\xc7\x8f\xc7\xf3\xa7\x3f\x35\x7e\xee\ +\xa7\xff\xf3\xf1\xc9\x1f\xfe\x45\x9d\x13\x2f\x15\xf5\xc4\xf6\x6e\ +\x28\xfd\xa0\x1c\x0a\x59\xf5\xe0\x06\x1b\x7c\xe0\x81\xfd\x76\x83\ +\x0d\x36\x78\x36\xb0\x2d\xa8\x6d\xb0\xc1\xf7\x31\x6c\x07\xff\xbb\ +\x40\x77\xce\x37\x3b\xea\xd8\xef\xd4\x1e\x6d\x3f\x05\x76\xc2\x37\ +\xb3\x63\xff\x14\x67\x8f\xfe\x57\x13\x49\xc3\x81\x6f\xf9\x30\xf9\ +\xbe\x7c\xed\xe5\xf1\xfa\x67\xfe\xbf\xe3\xec\x8d\xaf\x8f\x17\x3f\ +\xfc\xe2\xb8\x7f\x57\x93\x07\xe9\xb0\xf5\x02\x16\x0b\x1f\x7e\xa2\ +\xe8\x7c\xdc\x90\x78\xda\x88\x5f\xc7\xd6\x82\x5a\x16\xa9\xae\x6b\ +\x31\x8d\x89\x78\x12\x72\x97\x4b\x8c\x92\xf5\xc2\x96\x57\x01\xac\ +\x03\x51\x37\x4a\x63\xa1\xac\xe4\xae\x01\xb9\x70\xfb\xb4\x2d\xb4\ +\xb5\x91\xb7\xde\xf2\xe2\x7d\xe3\x80\x1b\x01\xad\xab\x1b\x17\xd0\ +\xa0\x60\x25\x15\xeb\x09\x15\xbf\x74\x05\xd7\x6c\x8f\x2e\x43\xef\ +\xfe\xd2\x64\xc8\xa6\xc2\x0e\xe3\xc9\xd1\x02\xb0\x6b\x89\x5d\xed\ +\x08\x64\x46\x97\x38\x35\xbb\x73\xa1\x31\xe8\x49\xac\x65\x94\x4f\ +\x20\x26\x75\x6d\xe3\x2f\x93\x41\xf2\xd8\x44\x12\x3b\x08\x9b\xa9\ +\x40\x97\x69\xbb\x60\x57\xaa\x63\x98\x56\xb2\x11\xed\xea\x09\x1d\ +\x3c\xb0\x6e\xc1\x02\x8e\x46\x0c\x68\x99\x2c\x37\x93\x00\x69\x8b\ +\x9f\x76\x2e\x5f\xfd\x05\x6f\x10\x65\xff\x38\xcd\x5c\x1d\xe9\x5f\ +\xdf\x7b\x81\x96\x85\x58\xed\x63\xda\xb7\xce\x78\xd5\xd5\x79\x16\ +\xd1\xf2\x7a\xc8\xfc\xf7\xda\xb9\xe4\xe7\x67\xfc\xe7\x1a\x0b\x6f\ +\x17\xd2\xf3\x8a\xc8\xab\xc1\xff\x8d\x5c\xf2\x14\xdb\x15\xff\x3b\ +\xc2\xc2\x5a\xca\x20\x65\x91\x81\xba\x50\xad\x4c\x94\xab\xfb\x52\ +\x57\xc0\x36\xdc\xa0\x61\x02\xad\xba\x6b\x06\xce\x82\x5a\xff\xb2\ +\x9a\x9b\x41\x27\x27\xc7\xe3\x94\xff\x56\xb8\xc3\x7f\x2b\x9c\x8c\ +\xe7\x9e\x7b\x6e\xbc\xf0\xdc\x3d\x2f\xae\x9d\x1c\xfb\x5d\x43\xe3\ +\x88\x7e\x75\x4c\x95\x26\xba\xa2\x1b\x9a\x76\x3d\x8a\x4b\xce\xfe\ +\x90\x6d\x01\x78\xd3\x08\xe6\x3e\x81\x83\x6c\xdc\x02\x44\x24\x16\ +\x50\xb3\x33\xb6\x41\x00\x1e\x91\x77\x50\x81\x68\x57\xa9\x99\x10\ +\x7b\x10\xf9\x7a\x93\xba\x2e\x08\x80\xda\x57\xec\x0b\x32\x5e\xb6\ +\x2e\x56\xde\x8b\x60\xf6\xa0\x22\x4c\xc0\x97\x1b\x94\xfe\xef\x0b\ +\xc7\x40\x68\x95\x90\x88\x7c\xcd\xf1\xa5\x89\x29\x30\xd8\x54\xe1\ +\xdc\xb8\x8d\xce\x8b\xde\x10\xe6\x91\x9b\x31\xeb\x9e\x85\x30\xcd\ +\xf6\x0f\xbf\xd8\x07\xab\x56\x69\xaa\x45\xca\xbc\x59\x0a\x5b\x68\ +\x45\x62\xcd\x1d\xa8\x90\x63\x0a\xbb\x4e\x25\x5c\x61\xa2\xbb\x3c\ +\x53\x11\xcf\x2d\x4e\x86\xb3\x1a\xbb\x6b\xe3\xc6\x43\x39\x77\xdd\ +\x0c\x55\x96\x41\x84\xbf\x64\x89\x48\xd5\x7c\x9e\xe0\xa6\x25\x1f\ +\x09\xbc\x5f\x5b\x87\xfc\x68\x1c\xfa\x06\xe5\xe9\x38\xd6\xbe\xec\ +\xa7\x05\xf4\xed\x3e\xa4\x16\x57\xda\xbf\xde\x7a\xf3\xed\xf1\xe6\ +\xd9\xf1\xf8\xe8\xcf\xfe\xf5\xf1\xd1\x9f\xfb\xb9\x3c\xa9\x76\xcc\ +\x7e\x97\xb2\x02\xf1\x71\x7d\x5a\x04\x50\x87\x22\x37\xd8\xe0\x4f\ +\x1f\xe4\x58\xf3\x3e\x3e\x77\x74\x1f\x09\x85\x39\x05\xe7\xc9\xb4\ +\x83\x6b\xfe\x33\xed\xcd\xf1\x85\x2f\xfe\x3f\xc7\x9b\x0f\x7f\x75\ +\xdc\x7d\x69\x8c\xbb\x77\x8f\x7d\x3c\xfa\x77\x30\x1c\x4e\xd8\x6b\ +\x5c\x74\x75\x75\x31\xfc\x9f\x69\xd7\xfc\x67\x1a\xe3\x2a\x1d\x8b\ +\x5e\x4c\xd3\xb5\x91\x31\x95\x42\xfb\xb4\xaf\xe8\x1e\x4f\x31\xb6\ +\xc1\x59\x65\x66\x3c\x14\x58\x91\x55\x1b\x1c\x4d\x60\x19\xa2\x60\ +\xc7\xaf\x52\x67\xd1\xa8\x9e\x2a\x3b\xff\x91\x56\x36\xba\xbe\xe0\ +\x66\x5a\x19\x97\x1b\x64\xbd\xb8\x96\x4a\xc9\x9e\xb6\xf9\xe4\x40\ +\x43\x11\xd1\x6b\x40\x9e\xf4\x30\x18\x2f\xb5\xa2\x3e\xa6\x1d\xbf\ +\xa4\x2e\x5b\xb4\x6c\x19\xca\x59\xe7\x6b\x48\xa9\x3b\xa7\x40\x33\ +\x53\xe2\xac\xd6\x7f\x5c\x94\xeb\x24\xda\x5b\xb0\xca\x72\x9d\xcb\ +\xc6\x12\xd7\x5f\x50\x32\x43\xe1\xfe\xa1\x8b\x4d\x5a\x27\x43\x93\ +\xdd\x7e\xeb\x4a\x06\xac\x78\xf7\x80\x2a\xc0\xf5\x8b\xb6\xa6\x7f\ +\x70\x45\x66\xd2\x30\xe3\x39\x66\x4b\xb4\xe5\x35\xc6\x61\x9c\xc3\ +\x13\x6c\x7e\x52\xff\x82\x05\xb5\xb3\xf1\xf0\xed\xab\xf1\xf8\x21\ +\x4f\xfb\xdf\xd4\xe2\x98\x74\x1a\x8b\x6b\xd7\xa9\x27\x1b\x5d\x09\ +\x95\x97\x73\x38\x71\x19\xbb\x33\x6e\xe2\xc7\x49\x57\x8f\x35\xf6\ +\x7a\xac\xd8\x2c\xca\x5d\x50\x74\xf6\x31\x8a\xf5\x76\x65\xe1\x80\ +\xed\x6e\x81\x6a\x42\x27\xb2\x3d\x69\x8e\xae\x21\x19\x5b\x45\x06\ +\xf8\xd5\x8b\x5c\x7b\x58\x2c\xd3\x78\x2a\xff\xdf\x19\xde\x4f\x94\ +\x21\xe7\x29\x33\x16\x2d\xc4\xf3\xf4\x1a\x8b\x67\xbc\xe2\xf1\xe4\ +\xfe\xd1\x38\xe5\xe9\x4d\x5e\x0f\xc9\xc2\x9a\x64\xfc\xc8\x29\xff\ +\x73\x45\x33\x28\xc7\x3d\xed\xd4\x65\x16\x9a\x10\x9d\x49\x03\xa4\ +\xbb\x81\x7e\x00\x15\x4c\xba\x08\x8a\x80\xc1\x16\x51\xe3\x5d\xa0\ +\x0e\x20\xec\x44\x0b\x9e\xb4\x11\xd8\x26\xdb\xd0\xf5\x8b\x69\xc4\ +\x60\x11\x1c\x3f\x6b\x79\x40\x02\x94\x36\x52\x56\xfa\xae\x79\xb7\ +\x15\x84\x9a\x7d\xdc\x22\x29\xec\x22\xc6\x0f\x6b\xd5\xa1\xe7\x9c\ +\xaf\x95\x16\x4c\x7b\xa2\xf6\xf5\x3f\x6d\x2f\x71\x01\x43\x84\x76\ +\x83\x6e\xc8\xe2\x15\x1f\x61\x3b\x46\x19\x5f\x6d\x57\xb0\x12\x16\ +\xfe\x3a\xc5\xc7\x16\x11\x98\x4b\xaa\x38\x2a\x0c\x55\xfc\x97\xf8\ +\xa1\x90\xc7\xda\xbf\x1b\x32\x0d\x57\xc9\xac\xec\xf1\x73\x59\x65\ +\xe3\x2f\xf2\xb4\xa4\x6d\xc1\xd6\x55\xfd\x5b\x66\x7f\xc9\x38\x4f\ +\xb3\xd0\xcb\x78\x89\xff\x54\xe3\x15\xef\x91\x56\x0c\xe7\x54\x78\ +\x68\xee\x71\x3d\xde\x78\xfd\xc1\xf8\xea\x1f\xbc\x3d\xee\x1e\xfd\ +\xf0\xf8\x6b\x7f\xe5\x7f\x3b\x7e\xe8\x63\x7f\x59\xc7\xd9\x23\xc5\ +\x7b\x4e\x36\xde\xd2\x82\x78\x26\x6d\xb0\xc1\xf7\x06\x6c\x7b\xeb\ +\x06\x1b\x3c\x3b\xd8\x16\xd4\x36\xd8\xe0\xfb\x18\xb6\x83\xff\x3d\ +\x20\x63\xf5\xdb\xe1\x36\xdd\x5a\xb6\x4f\xdf\x02\x0c\xf6\x0d\x4f\ +\xd1\xbf\x8b\x62\xc2\x52\x8c\xa6\x17\x9e\xe8\x09\xbf\xf5\xd6\xf8\ +\xc6\x6f\xfc\xd2\xb8\x7a\xf3\xab\xfe\xcf\xb4\xe7\xee\xdd\x19\x9a\ +\xe7\x46\xcf\x2f\xa3\x35\x7b\xbf\xbc\x60\xd1\xe3\x7c\xdc\xf8\xc9\ +\xb4\x0b\x4d\xae\xb9\x83\xa2\x89\x78\x61\x4d\xdf\xc7\x8d\x26\xf7\ +\xf6\x61\x91\x8d\x99\x3c\xa5\xa8\x40\x3f\x8d\xe4\x3b\x2e\x4a\x7e\ +\xfb\xa2\x4a\x95\xdc\x8b\x6b\xae\x72\x26\x9c\xce\x10\xf0\xeb\xda\ +\x4c\x33\x53\x59\xc8\x39\xc1\xa7\x8c\x98\x92\x67\xb1\x8c\x88\xd1\ +\xb1\x80\x36\x9f\x74\xf3\xa2\x5a\xd9\x10\x08\x54\x3a\xf7\x25\x98\ +\x86\xc2\x70\x8f\xc7\x64\x4d\xda\xb0\x2b\x1b\x63\x4a\xc0\xd5\x13\ +\xb2\xd0\x81\xc4\x62\xae\xe4\xbe\x2c\x1e\xba\xfd\x3d\xa1\xc3\x57\ +\x02\xd3\x02\x4f\xc4\x6a\xc6\x19\x11\xdb\xa3\xf4\x16\x2b\x63\x26\ +\x2f\x1b\xa6\x6f\xf1\x2d\x3f\x3b\x84\x9f\x31\x2d\x03\x05\x4f\x7d\ +\x8c\x60\x5d\x5c\x6e\xac\x00\xe0\x6e\x84\xa3\x1a\x2f\x20\x5d\xb1\ +\x6e\xb2\x98\xc5\x1a\x2d\xf1\x25\xc1\x4c\x02\xeb\x4c\x8b\x71\x2a\ +\x3b\xc9\x5c\x2e\x32\x9b\x60\x89\x80\xd7\xa0\xd8\x42\x36\x4a\xec\ +\x0b\xec\x27\xdc\x40\x24\xf1\x2b\xfd\x8b\x73\x4d\x52\x59\x38\x23\ +\xd5\x02\xdb\x39\xff\xb1\xf6\xd8\x37\x91\xf8\x55\xf6\xd9\xe3\x8b\ +\xc1\x9f\xeb\x5f\x9e\xf1\x9a\x22\xf6\xd5\x2b\xf1\xdc\x74\xa2\x86\ +\x05\x14\x57\xc5\x1a\xe0\x85\xb2\x40\x09\xcf\xe4\x5f\xed\x53\xea\ +\xa7\xd4\xf8\x65\x2a\x37\x7b\xf8\x45\xf4\xe9\xf1\x91\xff\x83\xea\ +\x8e\xff\x33\xed\x74\xdc\xbb\x77\x77\x3c\x7f\xff\xde\xb8\xaf\x74\ +\xca\x2f\xb0\xd9\x79\x6a\xf2\xbd\x5f\x58\xf6\x88\x86\xee\x67\x00\ +\x4a\x75\xf4\xdd\x9a\xdd\xfe\xf7\x26\x4a\x56\x66\x64\xcd\x83\x05\ +\xec\xd3\x45\xe7\x01\xc5\x2a\x53\x5f\xef\x47\x28\xb4\x7d\x52\xb6\ +\x78\xe4\xa6\x03\xf1\x8c\x7d\x51\xd6\x17\x1b\x68\x27\x62\xef\x8f\ +\xe6\xe0\xd4\x00\x00\xff\xf4\x49\x44\x41\x54\x28\x04\x0e\xd6\xf2\ +\xb4\xc3\xd5\x14\x94\xa8\xba\xc1\x86\x01\x2b\x76\x03\xcd\x96\x0b\ +\xe5\x26\xa9\x88\xb2\x0b\x2a\xbd\x3e\x0e\x27\xde\xdb\x2d\x8c\x75\ +\xc1\xb4\x31\xd8\x8e\xad\x63\x7b\x0a\xe2\x8f\x2e\x89\xa3\x2a\xb4\ +\xbe\xb2\x89\x0e\x43\x65\xf4\x9f\x91\x05\xde\xb6\xe9\xe4\xe8\x53\ +\x8e\x2a\x90\xbb\x3c\x05\x22\xfc\x0d\x6e\x7e\xc1\x0e\x22\x32\x7c\ +\xb7\xa5\x94\x05\x96\x86\x54\x03\xad\xaf\xfe\x40\x33\x21\xa2\x80\ +\x63\x14\xaa\x7a\x9b\x56\x9b\x7c\xa3\x93\x8f\x04\x47\xae\x2a\xfb\ +\xf5\xa1\x9a\xa2\x7d\x96\x05\xe2\x3b\xa7\xde\xaf\x79\xc5\x96\x6b\ +\x27\x3b\xdf\x48\x55\xbb\x78\xd2\xf3\x91\x8e\xb3\xb7\xcf\x0f\xc7\ +\x4b\x3f\xf9\xd7\xc7\x47\x7e\xe1\x67\x75\x7c\x5d\xfa\x49\xcd\x5d\ +\x98\x35\x31\xe9\x5d\xa5\xf0\x5a\xb5\xc1\x06\x7f\x6a\xa0\x77\x72\ +\xc1\xdc\xc5\x25\x5b\x8e\x51\x06\x2c\x1c\x4b\x87\xba\x5e\xbd\x3a\ +\xfe\xf0\x8f\xfe\xbb\xf1\xc7\x0f\xff\xd5\x78\xfe\xc5\x8b\xf1\xe2\ +\xfd\xbb\x96\x33\x60\xc8\x58\x42\x76\x5c\xef\x2e\x79\x9d\x31\xff\ +\x31\xaa\xeb\x18\x8b\x69\x3a\x0e\xfd\x63\x13\x16\x38\x18\x31\x79\ +\x2c\xa3\x62\x28\x85\xb2\x94\x72\x09\x90\x6e\x29\x38\x75\x28\x7e\ +\x8a\xcb\x60\x9d\x03\xa6\x88\x65\x2e\x00\x8d\x79\x74\xd0\x94\xc5\ +\xf9\x31\x56\x2c\xac\x79\x81\xc5\x6c\xd3\xe8\xb1\xad\xde\xf0\x9d\ +\x68\x4e\x02\x39\xf7\xb8\x93\xca\x9e\xef\x3c\xd7\x1a\x12\xd7\x39\ +\xb1\x8c\x16\x59\xcb\x71\xa0\xbd\x5d\x0f\x50\xa4\xc2\xd5\x8f\x5e\ +\x55\x90\xed\xb5\xf9\x40\xb9\x2e\xf6\xca\x8a\x5d\xfc\x49\x64\x2b\ +\x70\x1d\x9d\x13\xb3\x65\x4d\xa6\xbd\x3e\xcf\x99\x2b\x9d\xb2\xf2\ +\x28\x3b\x40\x1c\x76\x12\x50\x36\xa3\x1e\x4b\x4b\x86\x21\xdd\x65\ +\x5f\xf8\x82\x15\x59\xf2\xf4\x73\x5d\xec\x8b\x57\x3c\x8d\x99\x38\ +\x2f\x5f\x6a\xec\xcd\x6b\x42\xf9\x2f\x34\x5e\x0d\x79\xf6\x48\x63\ +\x22\xfe\x87\xed\x31\xff\xc9\xc6\xc2\x1b\x3f\x3a\x12\xd6\x79\xdd\ +\x8e\x8a\xc1\x7e\x76\xcd\x6b\xb3\xcf\x14\x83\x1f\x28\x79\x51\x4d\ +\xe3\xae\x33\x16\xdb\x28\x42\x6d\xc1\x5c\x99\x6b\x6d\x57\xd1\xac\ +\xd4\x48\xe0\x96\xce\x27\x8b\x6c\x61\xe4\x71\x90\xb6\xbf\x5f\x39\ +\xcc\x42\x1a\x3f\xee\x50\x23\xbd\xb8\xc6\x2b\xe4\xe1\x4f\xc6\x38\ +\x3e\x39\xd0\xf5\x87\x57\x69\x2f\x4f\xa1\xf1\xbf\x69\x27\xa4\x63\ +\xae\x4b\xfc\x90\x89\x85\x38\x25\xea\xa0\x62\x09\x9d\xde\x17\x80\ +\xbc\x6a\x94\x7a\xa2\xdb\x01\xdb\xae\x21\x7e\x96\x29\xab\x28\x75\ +\x65\x96\xa8\x64\xe8\xbd\xfb\x0a\x9b\xf3\x37\x9a\xc8\xd2\x1f\xde\ +\xdd\xdb\xa1\x60\x92\xaa\x50\xc6\x61\xed\x61\x91\x7d\xda\xcd\x50\ +\x0e\xd6\x09\xcf\xfd\x5b\x0a\x8e\x9d\xc8\x29\x6f\xd1\xd8\x69\x16\ +\x54\xa4\x94\xd8\x77\x9d\x7c\xdc\x09\xd6\x6d\xb3\x24\xe2\x27\x78\ +\x04\x4d\xae\x7d\x80\x35\x86\x74\x52\xc5\xf0\x08\x0d\xae\xda\xd9\ +\x46\x1f\x70\x19\xdb\xaa\xf8\xd6\xd1\xb0\xd0\xa5\x43\x24\x3a\x58\ +\xb1\xb4\x9f\x79\xe1\x8c\xdd\xbd\xe5\x88\x45\xb3\x6d\xe2\xdb\x58\ +\xb1\x60\x54\x07\x23\x4b\x95\xd7\xbe\xd9\x75\xb3\x1d\x8d\x83\xae\ +\xd4\xdb\xc3\x7e\x15\x1b\xc1\x22\x63\x5f\x60\x31\xf7\x50\xfb\xe2\ +\x1d\x8d\xf9\xef\x78\xfc\xaf\x3d\x59\xca\xd8\xb8\x04\xcf\x65\x0f\ +\xc6\xa5\xf0\x83\x37\x1f\x8e\x97\xff\xf8\x6c\x1c\x5e\x7c\x6c\xfc\ +\x95\x9f\xfd\xfb\xe3\x93\x3f\xf2\xd7\x25\x7f\xac\x39\xf5\xbd\x0a\ +\xca\xc1\x55\x15\x31\x20\xdb\x60\x83\x0f\x36\x6c\x7b\xe9\x06\x1b\ +\x3c\x3b\xd8\x16\xd4\x36\xd8\xe0\xfb\x18\xb6\x83\xff\x5b\x00\x3a\ +\x8f\x11\xc9\x7e\x27\xde\x36\x4a\x59\xdb\xae\x7c\x3c\x16\x5f\xc3\ +\x13\x31\x27\xf1\x04\x2c\x1a\x26\x19\x79\xcd\x17\x0b\x17\x87\x8f\ +\x1e\x8d\x57\xff\xed\x3f\x1f\x17\xdf\xf8\xc2\x78\xee\x43\x2f\x8c\ +\xbb\xa7\xc7\x9a\x2a\xd4\x14\x84\x05\x0e\xbf\x82\x28\xff\x99\x76\ +\xc3\x42\x1a\x0b\x6a\x4c\x1e\x58\x34\xd3\xe5\xc0\x8b\x55\xdc\x10\ +\xba\xd2\x24\xc1\x93\x0a\xc9\x58\x4c\x13\x4d\x85\xbd\x48\x82\x8e\ +\x4b\x07\x0b\x1e\x0e\xac\x8c\x2f\x37\x89\x60\x69\x43\xee\x96\x24\ +\x29\x33\x02\xf0\x23\xa6\xd3\x4a\x03\x83\xff\x4a\x1f\x83\x2c\xa8\ +\xd1\x82\x1b\xe6\x2d\x05\xa8\xbc\x48\x16\x4e\x13\x2b\x15\x4a\xb9\ +\xaa\xa3\x6d\x4d\x4a\x4e\x88\x88\x1d\x33\x37\x6b\x90\xa1\x08\x1d\ +\x5c\x3e\xa6\x15\x41\x38\x3e\xa2\x89\x83\x1d\x20\xb5\xe5\x9e\x19\ +\xfa\x2b\x20\x0f\xe3\xd2\x5d\x87\x96\x83\x50\x20\x0b\x6e\xd9\xc2\ +\x8b\x6a\x1b\xd8\xd5\xac\xd0\x36\x80\x15\x85\xf9\xba\x9a\xd2\x0a\ +\x7b\xd2\xed\x18\xd4\x0b\x19\x95\x8c\xac\xc1\x14\x3e\xa2\xec\x2a\ +\x9b\x2e\xa6\xe5\x66\x1c\xa4\xfc\x6d\xc8\x37\xba\x45\x54\x8c\xa1\ +\x8c\x00\x1b\xb8\x06\xe9\x33\x6e\xe6\xb3\x0f\x49\xdc\x4f\x3f\xfa\ +\xbf\x63\xb8\xd9\xe8\x57\x3d\xe6\x49\x35\xbf\xfa\xf1\xf1\x99\x17\ +\xd5\x1e\x3f\x12\xff\x30\x4f\xac\xf9\xd7\xd5\x3c\xe9\xa6\xfd\x8c\ +\x9b\x47\x99\xe4\x66\x9f\xeb\xba\x40\x53\x02\x74\xaa\x92\x7e\x30\ +\xf6\x3e\xa1\xa9\xb2\x7f\x0d\xcd\x8d\x1e\xe1\xe3\xfc\x42\xfa\xe4\ +\xce\xa9\xff\x27\xed\xee\x3d\x16\xd5\xee\xf9\x29\x35\xfe\x5f\x81\ +\xd7\x42\xfa\x86\x8f\x62\xb9\x5f\xc1\x84\x53\x4a\x21\x45\xd3\x46\ +\x63\x28\xe8\xb4\x3b\x3a\xf6\x0d\xb4\x87\xd9\x3e\x96\x01\x50\x15\ +\x14\x0c\xa9\x94\x1b\x6b\xa2\xc9\x90\x09\x3a\x66\x73\xa6\x70\xc9\ +\x86\x2f\xfb\x40\x6e\x3e\x74\x54\xe8\x28\x2b\xd4\x0a\x5a\x52\x31\ +\x66\x90\xc2\x42\x69\xc7\x62\x41\xee\x63\x06\x81\x93\x32\x29\x52\ +\x64\x2c\x0c\x93\x2c\x62\xc5\xc7\x74\xb1\xed\x1b\x2a\x84\x8b\x1c\ +\x9e\x72\x2c\x28\xd3\x1c\x5f\xe1\x45\xd8\xcc\x59\xbe\xdc\x49\x11\ +\x76\x6d\x1d\x0f\x5e\x31\xd8\x7e\xfa\x70\x9f\x12\x03\x3c\xda\xc6\ +\x8c\x69\x90\x33\x15\xd3\xe5\x95\xdc\xd8\xc4\x82\x25\x9b\x7d\x2c\ +\x0c\x99\xad\x0d\xec\xfb\x43\x16\xe1\x06\x02\x8b\xee\x09\x15\xd0\ +\x3a\x25\xe4\x69\x0b\xb6\xb1\xa2\x24\xfb\x51\x57\x78\xd7\xb9\xf6\ +\x53\x0c\x68\x33\x4f\xaa\xf1\x64\xc0\xdd\x3b\xfe\xf5\x35\xaf\x2c\ +\xb5\xbf\xec\xa8\xab\xcf\x7d\xe3\x78\x3c\x7c\xfc\x70\x3c\x78\xe7\ +\x70\x3c\xf7\xd3\x7f\x65\x7c\xf4\x2f\xfe\xbc\x8f\x2f\xfc\x5c\xe0\ +\xac\x15\x74\x20\xf5\xe9\x2c\xd0\xb2\xb6\xde\x60\x83\xef\x49\xf0\ +\xb9\x6c\xb5\x63\x1b\x74\xb4\xe8\x44\xd4\xe7\x41\x5d\xad\xc6\x91\ +\xce\x35\xd7\x57\x4a\x67\x6f\x8e\x7f\xff\x07\xff\x8f\xf1\xe0\xf1\ +\x6f\x8c\xd3\x0f\x5f\x8f\x7b\x77\x4f\xc6\x89\x0e\x1d\x1f\x5f\x75\ +\xac\x7a\x31\x4d\xd7\x38\x7e\x2c\xa2\xdc\xd7\x2c\x5e\xf3\xc8\x22\ +\x09\x63\x2a\x9e\x54\xf3\xd0\xc8\x63\x19\xf8\x54\xc3\x0b\x72\x75\ +\x6e\xe5\xc0\xb2\x6c\x0f\x16\x59\x5f\x19\x76\x8d\xcc\xc9\xa8\xa5\ +\x39\xee\x43\xd5\xd7\x89\xf2\x01\xd7\x43\x06\xfe\x6f\xb1\xb2\xb5\ +\x4d\x4e\xc4\x02\x61\xf7\x4f\xe3\x9c\x97\x6c\xb4\x02\x16\xbc\x16\ +\x71\xf5\x9d\x63\xa5\x2e\x39\xf7\x04\x52\x86\x3e\x16\xc4\x36\x74\ +\xfb\xa7\x28\xdb\xd5\x78\x2f\xd7\x1f\xd9\x59\x81\x40\x89\x02\x41\ +\xa8\x42\xce\x38\x0d\x2b\xb3\x69\x13\x82\x72\x77\xc1\x7d\x05\xd1\ +\x0e\x80\x04\xc8\x48\x9c\x79\x83\x17\x5b\xc6\x08\x54\x71\xca\x21\ +\x56\xb0\xee\x15\x50\xf8\x00\xd2\xb6\xcf\x0f\x77\x76\x65\x44\xe6\ +\xb5\x73\xec\x37\x1a\xaa\x33\x24\x17\x7d\xa3\xf1\xd2\xb5\xc6\x46\ +\xbc\x22\x32\x4f\xae\x9d\xf1\xaa\x6c\x68\x8d\xe3\xf9\xb1\x12\x4f\ +\xb8\x79\xd1\xf6\x22\x4f\xf7\xf3\xc3\x24\x2f\xac\xc9\x8f\xca\xe6\ +\x07\x3f\xfa\xd6\x76\x75\xc9\x21\xf5\x55\xe1\xc2\xa9\x42\x08\xdb\ +\xb1\xd9\x85\xfd\xb4\x3f\xaf\x68\xf4\xf5\x46\xd7\x1e\x2f\xa0\x89\ +\xe7\xba\xc3\x0f\x91\x94\x78\xf2\x9f\x57\x3b\xf2\x2a\xed\x3b\x7e\ +\xcd\x63\x74\xf9\xef\xcf\xc4\x71\x71\x5c\x72\x54\x00\xb4\x0b\xa2\ +\x50\x33\x29\xbd\x21\xfa\x02\x31\x3b\xfc\x2d\x80\x3e\xbb\x49\xf6\ +\x97\xb6\x37\x56\xb6\xe6\x5d\x12\xc6\xb6\x5e\x74\x93\xe8\x8d\x21\ +\x1e\x11\x8b\xa7\xcc\x39\xd6\x35\xcc\x71\x1f\x07\xe7\x53\x59\x76\ +\x15\x6b\x7d\x4c\xed\xef\x7d\xf0\x4b\x14\xfa\x49\x7c\x6f\xa7\x32\ +\x75\x35\x4b\x90\x6d\x17\x88\x58\x31\x51\x99\x94\x43\x06\x3f\x25\ +\x58\xf6\xba\xb6\x69\x1a\xa6\x90\xfd\xa8\x99\xf5\x25\x07\x1c\x49\ +\xc6\xda\xe4\x42\x91\xf6\xb8\x22\xf1\x82\xcd\x07\x15\xdd\xf5\x2c\ +\xbb\xaa\x87\x71\x36\xbe\xaa\x26\x5a\x63\x98\xf6\x73\x52\xdd\xb3\ +\x9f\x60\x67\x33\x22\xd0\x81\x25\x8b\x90\xdc\xf6\x0e\xc5\x51\x48\ +\x39\xe9\x2c\xea\x0a\xd8\x36\x5f\xdb\x46\xa6\xc4\x7e\xac\x0f\xf3\ +\x82\xe3\x13\x5e\xf9\x7e\x6f\xdc\xbb\xc7\xd3\xfd\x2c\xaa\xa9\xad\ +\xb1\xcc\xb6\x54\x4c\xd6\xac\xdf\x7a\xe3\xd1\x78\xf9\x2b\x0f\xc6\ +\x38\x7f\x69\xfc\xc2\xcf\xfe\xfd\xf1\x93\x9f\xfa\x4f\xc7\xf9\xf9\ +\x03\xed\xef\x4f\x3e\xa9\xc6\x27\x35\xd9\x60\x83\x0f\x2e\xd4\x21\ +\xb1\xc1\x06\x1b\x3c\x03\xd8\x16\xd4\x36\xd8\xe0\xfb\x18\xb6\x83\ +\xff\x5b\x84\x77\xeb\xc0\xa7\x8c\x56\x10\xfb\xac\x2b\xc2\xe3\x7f\ +\xe1\x42\xbb\xe0\xd8\xad\x31\x23\x12\xe3\xd5\xe4\x0b\x56\x93\x6e\ +\x26\x0e\x7e\x8a\xeb\xd1\xe3\xf1\xf2\xbf\xfd\x17\xe3\xea\x6b\x5f\ +\x18\xf7\x5e\xba\x33\x9e\x3f\xbd\xa3\x49\x03\x86\xb1\xe3\xe6\xe9\ +\xc5\xe5\x99\x26\x05\xfc\xcf\x82\x92\x26\xeb\xfd\x8a\x47\x16\x2a\ +\x1c\x9b\x45\x10\xd9\x99\xbd\xbe\xf4\x13\x6d\x91\x3b\x88\xcb\xb9\ +\xb9\x6c\x59\xea\x62\x25\xa2\xae\x59\xee\xd4\x28\xb9\x96\x12\xa1\ +\x29\x1d\x81\xf5\xbd\x92\xbe\x27\x92\x78\x7a\x4e\x64\x9f\xb2\x45\ +\x01\x8d\x3d\x96\x53\x97\xc9\x1d\x06\x4c\x5c\xf8\x9a\xf6\x4c\x09\ +\xfb\xd6\x05\x5c\x46\xc9\xfa\xc3\xd7\xb1\x1c\x3b\x74\xf4\xa1\xf1\ +\xcd\x2f\x8f\xcb\xd6\x10\x79\xdf\xd4\x59\x26\x76\x2a\x41\xa4\xeb\ +\x22\x70\xad\x20\x93\x59\x66\xda\x5f\x4d\x16\x45\xcf\x90\x9a\x0d\ +\xc6\xb4\x6c\x85\x27\x0d\x4c\x1e\x49\xca\x31\x55\xb2\xc5\x6e\x8d\ +\x5a\xb7\x0f\x44\x08\xa4\x9d\x92\x4c\x41\x31\x28\x2c\x2b\x45\xed\ +\xa0\x6d\xd6\xb0\x98\xac\x74\x22\x5c\x47\x93\x89\x47\x8f\xf6\x24\ +\x97\x9b\x8a\x6c\x7b\xef\x33\xbd\xa8\xc6\xaf\xf7\x7d\x23\x28\xaf\ +\x7f\x3c\x7b\x74\x3e\x1e\xbf\xf3\x68\x9c\x3d\x7c\x3c\x1e\x3f\xe4\ +\x69\x36\xe9\xcf\xeb\x8f\xfa\xd9\x7f\xb9\x21\x09\x4e\x48\xcb\xbc\ +\xc0\x26\x3a\x9b\x50\xbc\xca\x75\xff\xf0\x65\xe2\x2c\xda\x0b\x6a\ +\xfc\xdf\xc7\x71\xfd\x7a\xfa\xe8\x60\x9c\xb0\x90\x76\xe7\x74\xdc\ +\xb9\x73\x67\x9c\xde\xbd\x33\xee\x9e\x9e\x68\x72\xcc\x64\x9e\x85\ +\x08\xf9\xd6\xae\x41\x1c\x9a\x43\xf8\x6a\x4a\x89\xc8\x1b\x8a\xc6\ +\xcf\x36\xad\x0b\x26\x9e\xfd\x95\xdc\xd5\x96\x0a\x50\x48\xb3\x1b\ +\x4b\x06\x7c\xa5\xdb\x91\x76\x80\x12\x76\x5d\x0c\xae\xb0\x9d\xa2\ +\x6e\x47\x89\xaa\x88\xa9\xdf\x85\x0e\x82\x2e\x6a\xc7\x35\xdb\xfb\ +\x3b\x77\x37\xd4\x19\x36\x75\x86\xb0\x0c\xd7\xf1\x56\x32\x21\xb7\ +\xd9\x2c\xdb\x20\x7a\xcb\x84\xb9\x61\xe1\x10\x12\xa4\x3f\xd8\xb7\ +\xd1\xdb\xb0\xb0\x0d\x0a\x5b\xe8\xc4\x67\xd2\x4a\xfe\x4f\x3b\x1b\ +\xe4\x15\x8f\x96\x21\x91\x9c\x45\x6f\xce\x15\x69\x83\x4c\x04\x4b\ +\x39\x36\xce\x1d\x23\xeb\x12\xc7\xc7\x37\x1c\x71\xb0\x55\xd0\x36\ +\x77\x8f\xf8\x5b\xba\x58\x4e\x59\x0c\x83\x68\x7a\x20\x32\x0b\x20\ +\x8b\x05\x26\xb9\x67\xc2\x79\xc1\x8c\x7f\xad\x5f\x37\xb5\xd0\xe8\ +\x4b\x7b\x1c\x5f\x19\x0b\x6a\xd0\xd4\xd5\xaf\xe1\x22\xf9\xe9\xcb\ +\x53\xef\xd3\xbe\xe9\x49\x28\x3a\x86\x80\x42\xd7\x37\x87\xe3\xf1\ +\xa3\x87\xe3\xad\xc7\x47\xe3\xb9\x1f\xff\xab\xe3\xa3\xbf\xf0\xf3\ +\xd2\xa8\x65\x3c\xd9\xbb\x03\xc5\xaf\xc5\xb3\x82\x81\xd4\x6e\x83\ +\x0d\xbe\x47\xa1\xf7\x67\x9f\xa8\x9a\x5e\x93\x3a\xef\xe9\xd8\xba\ +\x3c\xd7\x41\x74\xfd\xf6\xf8\xa3\x3f\xfc\xa5\xf1\xe5\x57\x7f\x79\ +\x3c\xff\xf1\x9b\xf1\xdc\x73\x27\x52\x71\xad\xc0\x26\x3e\x2c\xa6\ +\xf9\x55\xc5\x2c\x6c\x5c\x93\x32\xb6\xe2\xa9\x7f\xbf\xe6\x11\xbe\ +\x4e\xe4\x3d\x9e\xf1\xb5\xac\x17\xd3\x00\xc4\xa1\x26\x4c\xbe\x6c\ +\x76\xf5\x0b\x07\x15\x13\x8e\x68\x50\x2a\x36\x7f\x90\x24\x21\xff\ +\x45\x8a\x12\x8b\x2b\xe9\x39\x37\x74\xd1\x01\x2c\xf1\xcb\x8f\xb4\ +\x68\xbf\xcf\x35\xf5\x0e\x3a\xeb\xf0\xc7\x24\x16\xce\x9b\x8a\x3e\ +\xe5\xf1\x4e\x83\x75\xbb\x72\x49\x4d\x3d\x8a\xe4\xeb\x04\x44\x4e\ +\x96\xa7\xd7\x1a\xaa\x35\x8b\x21\xb0\xa3\x7f\x12\x76\x64\xcd\x50\ +\x67\xd1\xcd\x82\xdd\x0c\x6a\x8b\x1c\x86\xf6\x22\x6a\x23\xc1\xc2\ +\x97\x0e\xac\x6b\x9d\x2f\xa9\x15\xc1\x50\x3e\x85\x02\x2b\x19\xa9\ +\xaa\x60\x8a\x32\x7d\xc9\xf4\x45\xaa\xb5\x01\xd7\x87\x6d\x03\xcd\ +\x38\x47\x9d\xa7\xbd\xc4\xfb\x14\xaf\x11\xe5\x75\x74\xfc\x9d\x93\ +\x76\x2b\x0d\xe7\x6f\x34\x66\xba\x18\x8f\xde\xb9\x18\x67\xef\xa0\ +\x63\x7c\xa5\x71\x91\xc6\x4b\x7e\x92\xed\x0c\x5e\xfb\x1e\xaf\x6f\ +\xe7\x52\xee\x0d\x41\x99\xfe\x2a\xa5\x15\xd0\xab\x0a\x0a\xb8\xf6\ +\x55\x5b\xb9\xb6\xf0\x24\xda\xb1\xa4\x5c\x73\xfd\x74\x9a\xae\x2f\ +\x92\x65\x6c\x75\x38\x4e\x4f\x79\x32\xed\x64\xdc\xb9\x2b\xfa\xe4\ +\x44\xd7\x20\xc6\x5d\x5c\x83\x18\xb3\x77\x19\xc4\x24\xf6\xaa\xcc\ +\x2e\xd0\x1d\xb2\xb0\x4d\xc6\x7e\x81\x66\xad\x6b\xaa\x84\xed\x63\ +\x10\xd3\xb6\x04\x69\xda\x36\xc5\xe4\x87\x65\x8b\xa1\x91\x03\x24\ +\x66\x6a\xb9\x06\xb6\x42\x64\xb1\x2d\x7f\x01\xd7\xe9\x94\x5d\x3d\ +\x3a\xb7\x69\xf7\x70\x53\xa2\x23\x36\x44\x03\x48\xe7\x15\xa2\x28\ +\x2c\xb7\x69\x59\x14\xa2\x3f\x7d\x5c\xcd\x36\x05\xb7\x6b\x9a\xa3\ +\x8f\xb0\x23\x99\xaf\x98\x71\xc8\x1c\xca\x72\x20\xb6\x16\xd5\x76\ +\x02\x1c\x55\x5f\x9f\x09\x28\x4b\x89\x22\x2c\xc6\x0e\x19\x1f\xf3\ +\xc1\x51\x16\xef\x32\x91\xb3\xfd\xd1\xe1\x43\x3c\x0c\x56\xfe\x8e\ +\x4f\x9d\x14\x1d\x15\x76\x26\x71\x5a\xec\x4c\x13\xa6\xe2\x00\xe0\ +\x59\xe7\x92\xe5\x15\xe4\xd1\x21\x8b\x7f\x68\x23\xcb\x64\xe7\x31\ +\xd3\x18\xc7\x47\x1a\xff\x6b\xbc\xf4\xfc\xfd\xfb\xde\xcf\x31\xb4\ +\x5e\xd8\xf3\x16\xc5\xbb\xd4\x71\xf4\xf0\xd1\xd9\xf8\xc6\xcb\x8f\ +\xc6\xa3\x37\x9e\x1f\x3f\xf7\x13\xff\xd9\xf8\xf3\xff\xbd\xff\xa9\ +\xf4\x67\xb2\xbd\x63\x9f\x3a\x98\xf1\x56\xf1\xd4\xa9\x7b\x7d\x83\ +\x0d\x3e\x78\x50\x87\xc3\x06\x1b\x6c\xf0\x0c\x60\x5b\x50\xdb\x60\ +\x83\xef\x63\xd8\x0e\xfe\x6f\x11\x6e\xeb\xc0\xa7\x8d\x52\xb0\x2d\ +\xdd\x34\x29\xff\xa9\x22\x13\x13\xbe\x94\x6b\xa7\xd5\xe9\x7a\xd1\ +\x1e\x8c\xcb\x9b\xab\x71\xa4\x49\xf6\xab\x9f\xf9\x37\xe3\xc1\x1f\ +\x7c\x76\xbc\xf8\x12\xbf\xb8\x3b\xf1\x04\x25\xd3\x03\x4d\xae\x59\ +\x4c\xf3\x2f\x58\xcf\xf2\x9f\x69\x57\x79\x32\x8d\x9b\x3c\xca\x14\ +\x4f\x13\x00\x16\x3a\xfc\x0a\x19\xf1\x5e\xbc\x60\x16\xaf\xa4\x89\ +\x02\x45\xfb\xff\xd4\xe0\x65\x83\x87\x01\x85\xbf\xaa\x60\x66\xfd\ +\xc5\xc7\x67\x42\xd5\xdf\x97\x9c\x7c\x35\x11\x29\x62\xca\xf2\xe1\ +\x1b\x59\x62\xb4\x99\x43\x88\x71\x9b\x98\xa1\x69\xb2\xee\x09\xb1\ +\xf5\xd4\x00\xab\x32\x2e\xda\x1f\x6c\xf4\x71\x1c\x1b\x2b\x71\x93\ +\x82\xca\xda\x2c\x7a\xcf\xb2\xdd\x56\x68\x62\x00\x93\xd8\x81\x65\ +\xb2\x94\xc9\x57\xea\x46\x8e\x06\xaf\x08\xa7\x5d\xeb\x26\xde\x95\ +\x91\xe2\x93\x49\xeb\x8c\x85\x48\x9f\x9e\xb4\x23\x08\x65\x85\xf9\ +\x2a\xa0\xe4\x6b\x58\x24\x50\x6e\x1e\xcc\x7e\x93\x1c\xbb\x84\x15\ +\xcb\xb0\x8b\x26\x74\x55\xac\xc9\xb7\x39\x97\xe1\x09\x73\x0b\x5a\ +\x59\x7d\x4c\x78\xb6\x99\xff\x43\xc6\xfb\x5b\x5e\x8b\x75\x41\x3a\ +\x3b\xf3\xd3\x69\x8f\xdf\x39\x1b\xe7\x8f\x1e\xe7\x8f\xf9\xcf\x2f\ +\x9d\xb2\xaf\x66\xff\xf2\xe2\x9a\xb7\x21\xd5\xf5\x56\xdc\x89\xef\ +\xed\x4b\x25\x95\xfc\xab\x6a\x25\x16\x1c\x78\x15\x1e\xff\xe9\xc1\ +\x7f\x7b\xdc\xf1\x7f\x7a\xdc\x19\x77\xee\x9e\x3a\xf5\xa2\x1b\xdb\ +\xc1\xfd\x4f\x1c\x01\xd5\xf7\x82\x04\x31\xe1\x8b\x7c\xb2\xb7\x29\ +\x4f\xc8\xba\xf2\xef\x0e\x37\xd2\x36\xb4\xae\xfa\xc0\x54\xc0\xfd\ +\x29\x26\xbb\x1f\x7a\x04\x0b\x2c\x37\xef\xb0\xdd\xd5\x01\xd3\x5f\ +\x7e\xd4\xbd\x2c\xf3\xb5\x1c\x1e\x71\xe1\xe6\x57\x50\x1e\xce\x59\ +\xa4\xac\x90\x89\x0d\xb5\x72\x49\xfd\x56\x02\xdb\x4c\x0f\xa7\xb4\ +\x53\xb4\x02\x74\x5f\x65\x1f\x2f\x0b\x9d\x9b\x68\x6f\x04\xb2\xb0\ +\x5d\x68\xfc\xcc\x2b\x01\xb9\xe1\x85\x3e\xd8\x89\xed\x0a\xef\x3b\ +\x35\x85\x91\xfb\x15\x5a\x89\x13\x19\x7c\xd9\x56\x2c\xc7\xcd\x1d\ +\x9b\x24\x32\xcb\x42\x47\x4f\x3f\xc0\xd2\xa7\xc5\x97\x59\xda\x0f\ +\x60\x1b\x6c\x42\xa9\xd9\xca\x16\x98\xed\x04\x87\x2f\xd1\x84\x65\ +\xcb\x2f\xfd\x84\x01\x37\x88\x62\x5b\x5a\x90\x32\x30\xb2\x34\x53\ +\xfb\x37\x32\x6e\x12\xb1\x68\x7c\xe7\xd4\xaf\x80\xf4\xd3\x67\x2b\ +\x5b\xbf\x76\xee\xfa\x60\xbc\xf3\xce\xa3\xf1\xc6\x83\xab\xf1\x91\ +\x3f\xfb\x57\xc7\x47\xff\xc2\x5f\x4e\xd9\xb7\xfc\xa7\xda\x13\x50\ +\xa2\xb6\xd8\x60\x83\xef\x79\xf0\xc1\xa5\xac\x4e\x48\xce\x0f\xf2\ +\x0a\x63\x8f\x87\x74\xdd\xf9\xfd\x3f\xfa\x27\xe3\xeb\xaf\xfd\xf2\ +\xb8\xf7\xe1\xf3\x71\xe7\x9e\x8e\x2f\x0e\x15\x1f\x5a\xd2\xeb\xb8\ +\x62\xd1\x83\x1f\x87\xf8\xc9\x6b\xbf\x42\x9b\x05\x34\x8e\x35\xae\ +\x71\xf9\x41\x88\x7f\xac\x64\x73\x68\x5d\xb7\xea\xfa\x45\xde\x30\ +\x4f\xd1\x2b\x88\xa8\x14\x42\xb7\x98\x48\x56\x56\x15\xa0\x17\x63\ +\xa8\x1e\x63\xb5\x7c\x68\x99\x92\x6c\xb0\xbb\xd2\x99\x2d\x0b\x6a\ +\x68\x72\x9e\x98\x36\x4a\x3e\x57\x8a\xea\x73\x82\x47\x5e\xc4\x83\ +\x75\x3c\xb3\xc9\xf9\x12\xb7\xf8\xe8\xf4\xb1\x3c\x11\x5d\x0f\xf8\ +\x98\x18\x37\xbd\x20\x6c\x52\xbe\x25\x72\xc8\x13\x70\xe2\xcb\xce\ +\xe2\x22\x43\x55\x5b\x8b\x5b\x29\x27\xac\xe5\x3b\xb6\x05\x94\xb0\ +\xc3\x73\xc2\x34\xb1\x83\x0c\xb4\xc1\x11\xf6\x83\x08\x60\x49\xd4\ +\x37\x76\x81\xde\x2e\xf4\xf1\x04\x89\x2c\xe6\x04\xde\x6a\xfc\x20\ +\x5a\xe7\x32\xb2\xc0\xc8\xf0\x3a\x7d\x4a\x52\x6f\xf2\x2a\x75\xc9\ +\x78\x1d\xb6\x9f\x56\x7b\x7c\x3d\x1e\x3d\x38\x1b\x8f\x1e\x5e\x6a\ +\xec\xc4\xab\x1e\x59\x54\x93\x2d\xfb\x9e\xc6\xf3\xd0\x04\xcd\x6f\ +\xe4\x22\xf7\x7e\xd9\x71\xfd\x49\xd9\x94\xeb\xcd\x60\x52\xe5\xb0\ +\x2f\xf0\x03\x0f\xd5\xd5\xaf\x7c\x64\x21\x8d\x6b\x8e\x92\x9f\xf4\ +\x39\x3d\x1e\xa7\x1a\x5b\xdd\xb9\xa7\xf1\xd4\xbd\xa3\x71\xc2\x22\ +\xdb\x91\x7c\xb1\x4f\x10\x37\x65\x5e\x5b\x84\x7c\x1c\x98\x2e\x59\ +\x01\x5c\x2d\xe7\x56\x1e\x88\x7f\x67\xbb\x3e\x91\xaf\x80\x7d\x46\ +\x0d\x58\xba\x3b\x3d\x6b\xaf\x16\x52\x17\x7d\x3b\x24\x3a\xea\xca\ +\x7e\x6a\x81\xed\x62\x13\x89\xfc\x11\xc7\x23\xc2\x3d\x58\x3f\xb1\ +\xc6\x81\x92\x3e\xa4\x83\x71\xac\xf2\x81\xea\xdc\xb2\x2c\xa2\x23\ +\xd7\x51\xa8\xac\xb1\x8f\x80\xae\x8f\x69\x21\x68\xe3\x8c\xb8\x77\ +\xfb\x59\xdf\x26\xf0\x36\xdd\x32\x88\x68\xe6\x98\xc2\xf4\x2e\x6e\ +\x9b\x19\xd7\x7c\xca\xce\x79\x4f\xe5\x8a\xb1\x0d\xd8\x32\x30\x12\ +\xa0\xc6\x26\xc5\x62\x69\xde\xf5\x8e\x3d\x7b\x87\x87\x62\x16\xa1\ +\xa4\xae\x9c\x69\xca\xd1\xe7\x61\x38\x82\xa4\x5f\xf6\xdb\xe3\x72\ +\x4d\x17\xc6\xca\x7e\xd1\x5b\x66\xc3\x15\x6f\x59\xe4\xbc\x16\x9e\ +\xa7\xd3\xee\xde\xbb\x37\x9e\xbb\xff\x9c\xf6\x6f\xde\xe9\x82\x4c\ +\x46\x6c\x27\xed\x9f\xc4\xe6\x2d\x19\x0f\x1e\x9c\x8f\xaf\x7e\xf1\ +\xed\xf1\xe8\xed\xe3\xf1\xdf\xff\x8b\xff\xbb\xf1\xd3\x3f\xfe\x77\ +\x75\x7e\x7f\x47\xb6\xf7\x15\x8c\x3d\x07\x4f\x47\xaf\xb4\xc1\x06\ +\x1f\x4c\xd8\xf6\xce\x0d\x36\x78\x76\xb0\x2d\xa8\x6d\xb0\xc1\xf7\ +\x31\x6c\x07\xff\x53\x80\x8e\x79\xbf\xa3\x8d\x75\x27\xbe\x4f\x1f\ +\xcc\x66\x11\x7b\xfe\x9c\x91\x3d\xe8\xf7\xa9\x59\xc4\xa4\x57\xd0\ +\x76\x1a\xec\x5f\x30\x71\xb8\x38\x1c\x6f\xff\x87\x5f\x1f\x0f\x3e\ +\xff\x1b\xe3\xce\xe9\xc1\x78\xe1\xf9\x7b\xe3\xd8\xbe\x9a\xc0\x5d\ +\x6b\x90\x7f\x95\x5f\x4d\xf3\x9f\x69\x4e\xa2\xf3\x8a\x47\x26\xe5\ +\x4a\x0a\xc6\xd3\x68\x43\x13\x86\x2c\x54\x5c\xe9\x7b\xb5\x7a\x30\ +\x45\x93\x71\x6c\x2e\x59\x7c\xab\x05\x0c\x34\x10\x31\x08\xc2\x1e\ +\x02\x5b\xf8\x06\xda\x80\x84\x2f\x77\x06\x00\x64\xaa\xdf\x01\x93\ +\x4e\x91\x33\xaa\x50\x9b\x57\x66\x60\xd2\xc5\x1d\xac\xc3\x7a\x6a\ +\x23\x33\x33\xd1\x14\x88\x28\x05\xbb\x2d\x29\xbf\x71\xb5\xaf\xe4\ +\xd4\xdf\x0b\x3a\xdc\x48\xc0\x9f\xfa\x20\x77\x2c\xc8\x60\x27\x32\ +\xca\xa1\x9f\xcc\xa7\x6e\xbe\xd9\x22\x3e\x93\xb3\x9e\xea\x41\x66\ +\x32\xe5\xb9\xb2\x27\xd0\x16\x92\x79\xe2\x06\xed\x09\x17\x76\x4e\ +\xd6\xa0\x74\x8a\x4d\x64\xd0\xb1\x5d\x78\x4c\x2b\xb3\x7d\xea\x10\ +\x9e\xf2\xa7\xbf\x19\x88\xe2\x05\x36\xc7\xde\x32\x45\x96\x20\x6d\ +\x15\x6f\xb3\xe9\x64\x58\x28\x41\x4d\x78\xf7\xa4\x8e\xb9\x06\xf3\ +\x4a\x99\x0c\x47\xe6\x7e\x5b\xd9\x79\xbb\x34\xe5\xfd\x8f\x7d\x8d\ +\x5f\xf0\xd7\x6b\x20\xcf\xce\xc7\xc5\xe3\xf3\x71\xfe\xe8\x6c\x5c\ +\x38\xf1\x5f\x6b\xfc\xf2\xff\x52\xb6\xb2\xbf\xba\xf1\xd3\x8d\x6c\ +\x37\xdf\x10\x9a\xb1\x48\xa2\xbc\x4f\x49\xde\x55\x50\xa5\xfc\x47\ +\xf9\x7e\xe5\x63\x7e\x49\xcd\x62\x03\xaf\x7a\x39\xb9\xc3\x6b\x89\ +\x4e\xfd\x7f\x1f\x32\xca\x53\x3e\x72\xc9\x3c\x9a\xfe\x91\xbb\xab\ +\x4b\xe0\xc4\x4a\x83\x88\xcd\x2d\x9f\xa6\xa3\x2e\xcf\xca\xcb\xc5\ +\x99\x6b\xb2\x36\x0c\x14\x5f\x21\x63\x06\x6f\xdc\x42\xe8\x90\xd0\ +\xae\x82\x88\xd4\x0b\x60\x8b\x76\x4d\x62\xfe\x04\x74\xac\x09\xfb\ +\x7c\x03\x72\x0a\x68\xbd\x30\xdf\x0a\xda\xb1\xad\x2d\xd3\x05\x76\ +\x05\xbd\xff\x9a\x6e\xb9\x64\x50\xd9\xaf\x49\x4f\xd2\x6d\x63\x41\ +\xa8\xd0\xb6\x01\x6b\x1b\x15\xbf\x96\xfb\x98\x84\xe6\x78\x65\x0b\ +\x80\x2c\x83\x26\xa6\xb6\x97\x49\x2b\x4a\xa7\x32\x8d\x2b\xf6\x4a\ +\x9e\xac\x78\xa8\xa9\x37\x47\x16\x84\xaf\xe5\x15\xc3\x49\x72\x77\ +\xd2\x0a\x2c\xa6\x4f\x42\xaf\x61\xcd\xba\x17\x25\xc8\x4d\xe5\xea\ +\x41\x32\x25\x9f\x8a\x44\xa0\x6f\x27\x6e\xfa\xb8\x06\x12\x72\x53\ +\xcb\xbf\xf2\xe6\xa9\x00\x2f\xaa\xf1\x1a\x53\x16\xd5\xb2\x50\x9c\ +\x68\x3a\xde\x84\x2f\x74\xba\x3f\x3b\x3f\x1b\x0f\x1e\x5d\x8f\x0f\ +\xfd\xc4\x5f\x1f\x1f\xf9\x4b\x7f\x51\x87\x54\xbd\xfe\x71\x67\x53\ +\x8a\x98\x34\xf5\x0a\x76\x1d\xc1\x4a\x25\xda\x60\x83\xef\x59\xc8\ +\x0f\x19\x1a\x18\x84\x1c\x8c\x2b\x8d\xab\x8e\x8e\x2e\xc6\x17\xbf\ +\xfc\x2f\xc7\x97\xbe\xf1\x8f\xc7\xfd\x17\xdf\x1e\x2f\xbc\x78\x47\ +\x67\x92\x63\xdb\xb0\xe8\x86\x13\x9e\x5e\x4c\xe3\x1a\x26\xec\x57\ +\x3b\xb2\x90\xa6\xe3\xc9\x4f\x0a\x71\x8d\x23\xbe\x2f\x56\x94\x22\ +\xda\xe5\xad\x8e\x1c\xc7\x59\x00\x7a\xf7\xd8\x0a\xc5\xf1\xd7\xc7\ +\x5e\x43\x8e\xc9\x1c\xdd\xc4\xe5\xf8\x36\xe7\x31\x8e\x55\xb6\x27\ +\xc5\x46\x99\xb8\xab\x9b\x23\xcb\x6c\xa4\xf3\x86\x7d\xfc\xc5\xaa\ +\xcf\x17\xb6\x70\x4c\x2f\x10\xc0\x70\xf1\xa1\x1c\xd4\x80\x68\x62\ +\x76\x8b\x1a\xb7\xdc\xa4\xd9\xd6\x77\xd6\xf2\x22\x0a\x61\xe5\x73\ +\x65\xd9\xbb\x16\xa5\xef\x1a\x59\x53\xb2\x40\xea\x36\xab\xa4\xb4\ +\xa6\xf7\xcd\x3b\x0e\x54\xc6\x10\x0b\xb4\x5d\xda\x1f\x68\x99\xfd\ +\x1c\x4b\x54\x05\x71\x77\x88\x6e\x1b\x43\x33\xb6\x4d\x8a\x6f\xce\ +\xdf\xde\x2e\x8c\x3d\xab\x0c\xae\x43\xcb\x35\x1d\xfb\x25\x60\x50\ +\xfa\x23\x4c\x6f\x1b\xb1\x1e\x07\x29\x94\x30\xff\xbb\xc6\xab\xb2\ +\xfd\xbf\x6b\x0f\x85\x95\x58\x54\xc3\x2d\x0b\xba\x8b\xad\xf7\x93\ +\x8a\x07\xcf\xe2\x6e\xef\xa7\xf2\x70\x6c\xeb\x9a\xa6\x38\x25\x2f\ +\x90\x29\xf1\x83\x98\x23\x3f\x9d\x96\xd7\x3c\xde\xb9\xcb\x58\xea\ +\x78\x9c\x6a\x2c\xc5\xff\xa8\xe9\x2a\xe2\xeb\x11\x97\x23\x20\xb5\ +\x15\x70\xcc\x00\xea\x80\xfc\x50\xa8\xe2\x17\xb0\x5d\xe9\x07\xfa\ +\x08\x4b\xfc\xb0\xa8\xe2\x0d\xe9\xfb\xb5\xdf\x42\xe7\x3a\x57\x7e\ +\xc4\xb1\x30\x59\xfc\x55\x02\xee\xe0\x92\x24\x17\x14\x91\x68\x2d\ +\xad\x20\x4b\x11\x13\xbc\x0d\xbb\x0c\x03\x4c\x6d\x1b\xec\x49\x28\ +\x95\x0e\xd4\xc1\xd5\x72\x43\xc2\x51\xa7\x0a\xd2\x5c\xb5\xcb\x72\ +\x3a\x41\x70\x48\x9f\x89\xd4\x55\x5d\x96\x8a\x6e\x31\x7a\xab\x27\ +\x9f\x0f\x7c\x0a\x06\x27\x0e\x3c\x7e\xed\xe0\x6f\xf1\x58\x48\x8f\ +\xac\xe4\xa6\x85\x3c\x94\x0a\x9b\x6d\x59\x72\xfc\xca\x55\xdf\x92\ +\xb3\x5f\x88\x66\x9b\x66\xfc\x8f\x66\xb1\x75\xaf\x68\x67\x48\x99\ +\xd4\x2b\xf5\x21\x6e\x99\x1b\xbc\x90\x8a\x5c\x34\x32\xb7\xc0\x3a\ +\x6c\x97\x1e\x2c\x73\xe9\x88\x03\x51\x31\xd1\x58\x59\xf2\xc2\xa9\ +\x0d\xf6\x49\x61\x16\x7b\x2f\xaa\x1d\x1d\x8f\x7b\x77\xef\x2a\xdd\ +\xf7\xfc\x00\x33\xd7\x1f\x8a\x03\x47\x55\x63\x0a\xfc\xce\x83\xc7\ +\xe3\x95\x57\xce\xc7\x3b\xaf\x9c\x8e\xbf\xfc\xe7\xff\xfe\xf8\xa9\ +\x9f\xfc\x1f\x4b\xfe\x58\xc7\xc5\x3d\xdb\xdb\xd0\x00\xbd\xc6\x1b\ +\x6c\xf0\xc1\x81\x6d\xaf\xdc\x60\x83\x67\x07\xdb\x82\xda\x06\x1b\ +\x7c\x1f\xc3\x76\xf0\x3f\x03\x58\x8f\x9d\xa1\xdf\x63\x94\xd2\x66\ +\xed\x37\xf9\x82\x39\xd8\x6f\xf0\x29\x7a\xb1\x6a\x0e\x43\x6e\xd8\ +\x30\xc9\x7a\xfb\x0b\x5f\x18\x6f\x7e\xf6\x9f\x69\x22\x70\x33\xee\ +\xf2\xe4\x0d\x77\x59\xe5\xc7\x7f\x58\x71\x73\xa7\x17\xd1\xb2\xa0\ +\xc6\x93\x69\xbc\x8a\x48\x33\x03\xd9\xb0\xa8\xc1\x4f\x56\x59\x40\ +\x63\x82\xef\xff\x53\x83\xc6\x5f\xa5\x79\xe2\xcd\x04\x9c\xd7\x3c\ +\xa2\x47\x56\x15\xe9\xc9\xb0\xc4\xa6\xfd\x8b\x59\x4b\x92\x33\x61\ +\x49\x6d\x85\x4b\x84\x77\xd7\xdf\xda\x56\x31\xb9\x81\x56\xca\x24\ +\xc7\xd2\xa2\x4d\x38\x95\x57\xfa\x89\x7a\xc1\x53\x01\xcb\xc5\x11\ +\x80\x3a\x33\x7d\x65\x12\x5b\x7c\xe4\xb4\x75\xe1\x11\x65\xa2\x44\ +\x14\xca\x2f\x19\x80\x19\x32\xd5\xc3\x37\xb7\x29\x6f\x2a\x03\x16\ +\x39\x17\x5d\xed\x71\xdd\x22\x30\x67\x2b\xd1\x7c\x5a\x6f\x1e\xbd\ +\xb1\x25\x9a\x88\x32\x0d\x0d\x93\x49\x99\x09\x63\xa3\xd6\xe9\xe3\ +\x45\x00\x40\xf5\xf2\x84\x8f\x3a\x5a\x50\x72\x5b\x05\x53\xc3\x85\ +\x2c\xfd\x62\xb6\xdb\xe7\xd8\xf6\x2c\xba\xdc\x0c\xd8\x15\xb9\x86\ +\x29\xab\xfa\xf8\xde\xc9\x13\x86\x1d\x88\x20\xeb\xa0\xdd\xd7\xdc\ +\xf0\xd1\x76\x62\x9f\xe4\x75\x59\x24\xed\xab\x97\x8f\xf2\xb4\xda\ +\xe5\xe3\xb3\x71\xfe\x98\xc5\xb6\x4b\xed\xbb\x75\x63\x92\xc4\x76\ +\xd4\x76\xbf\x92\xaf\x79\x22\xb2\xef\x26\xb2\xfb\x05\x60\xc2\xce\ +\x6b\x01\xb9\xf9\xc3\xc2\x02\x4f\xa7\x1d\xf1\x3f\x1f\xb5\xa0\x66\ +\xfa\x94\xe5\x67\x1d\x49\xb8\xd8\x8f\x28\xc2\x85\x58\xa0\xf3\x76\ +\x46\x85\x48\xfd\x18\x55\x09\x0c\x65\xbc\x07\xee\xdf\x27\xc5\x01\ +\x5c\xd6\x98\x0e\x9c\x32\x95\xd9\x45\x56\x8c\x25\x0c\x25\xc3\xc5\ +\xb8\x5d\xba\x56\x0b\x44\xe3\x3a\x98\x6a\x28\x79\x51\xde\xef\x4b\ +\x90\xb6\xc1\x95\x47\xa1\x75\x58\xeb\x5b\x2e\x70\x5d\xd6\xc5\x0a\ +\x90\x2d\xed\x86\xa8\xde\xea\xcc\x5f\xb2\x6a\x89\x71\x78\x0b\xc2\ +\x45\xaf\xe4\xe3\xc3\xba\xd2\x1b\x47\xd6\x7a\xcb\xd8\x88\x3e\x96\ +\xe0\x17\xbb\xda\xb8\xa5\x5f\x62\x93\xb2\xa8\xd6\x37\x7b\x4a\x8e\ +\x45\xf1\xb3\xdc\x70\xfe\x56\x66\xf9\x52\x07\x70\xab\x8a\x50\x3f\ +\x21\x4b\x77\x75\xb9\x64\xe9\x65\xc8\xc6\x13\x6c\x4f\x96\xb3\x8b\ +\xb7\x3d\x71\xd8\x3f\x4c\xa7\x6f\x89\xeb\x84\xd8\x34\xe5\xab\x1d\ +\x6a\xa3\xff\x53\x8d\xff\x0b\xbc\x7b\xaa\x7d\xfd\xd4\x8b\xc9\x36\ +\x14\x10\x95\xd2\xaf\x6f\x8e\xc6\xd9\xd9\xa3\xf1\xd6\xdb\x63\xbc\ +\xf8\x73\x7f\x73\x7c\xe4\xe7\xfe\xbc\x8f\x41\xfe\x13\x27\xc6\xa9\ +\xf5\x74\x5c\x81\xcb\x6f\xba\xf0\x06\x1b\x7c\xcf\xc0\xfa\xa0\xf3\ +\x0e\x9c\x63\x8d\x71\x03\x8b\xd2\x5e\x64\x38\x3f\x18\x5f\xf9\xda\ +\x2f\x8f\xaf\x7e\xfd\x1f\x8f\xa3\x97\xde\x19\xcf\xbf\xa8\x6b\x45\ +\x1e\xbb\xd1\xa1\xa9\x31\x12\xf6\x5c\xbb\xf8\x9f\xab\xb3\x0b\x5d\ +\x8b\x78\x8d\x36\x4f\xa5\x21\xcb\x93\x69\x7d\x7d\xa2\x8c\xf5\xf5\ +\x29\x02\x87\x68\xf4\x04\x20\xa7\x4e\x8b\x3e\xd4\xda\x7e\xff\xdc\ +\xae\xd1\x0c\xa7\x0d\x72\xe3\xb4\xca\xec\x04\x1f\xff\xe2\xaf\x07\ +\x6d\x91\x1e\x3b\xf0\x04\x64\x9c\x23\x20\x83\xaf\x59\x3d\x23\xb8\ +\x7f\xd0\x34\x5b\x10\x4a\xc1\x68\x23\x6a\x00\x99\xcb\x46\x0e\x0f\ +\x0d\x45\x58\xe2\x22\x2c\xf0\x82\x90\x1a\xd1\xd7\x9d\xd8\xae\x20\ +\x6e\x96\xb5\x7c\xea\xd7\x81\xaa\x9d\xfb\xb6\x00\x34\xd5\xa6\x7e\ +\xad\x07\x82\xab\x9d\xa6\x02\x4b\x3b\xd6\xb0\xb2\x13\x91\x7e\x2d\ +\x89\xf9\x49\x2e\xc0\x49\x32\x84\xab\x0a\x97\xd8\xa2\xdc\xef\xe5\ +\x58\x7d\x9c\xab\x03\xb2\xf8\x21\x0b\x74\xdf\x44\x6e\x4b\xf7\xd7\ +\x0a\xb4\x7d\xae\x2e\x79\x8a\xe6\x7a\x5c\x9c\xf3\x3f\x6b\x97\xe3\ +\xec\xd1\x85\xc6\x4e\xbc\x99\x42\xe3\xa6\x0b\xce\xf7\x4a\xec\x83\ +\xf8\x42\x2b\x51\x85\x89\xad\xc3\x46\x89\x27\xdb\x14\xd6\x3f\x7a\ +\xa2\x58\x5f\x80\xf4\xd5\xbe\x9f\x57\x38\x6a\x4c\xa5\x6b\x0a\x4f\ +\xa5\x9d\xdc\x39\x1e\x77\x78\x42\xed\x94\xa7\xd2\xa4\xe3\x87\x49\ +\xb2\xad\x4b\x2d\x51\xdc\x82\x86\x44\x06\x50\xba\x94\x49\x01\xee\ +\x5f\x12\x04\x6d\xb5\x80\x60\xd1\xdb\x32\x2a\x67\x29\x23\x3e\xd4\ +\xcb\x47\x99\xfb\x27\x71\xa7\x9d\x91\x74\x22\xe2\x52\x71\x0c\xb2\ +\x8f\x50\x30\xb5\xce\xe1\x5c\x67\xc7\xb4\xa5\xf3\xfa\x9a\x33\x01\ +\x54\xb9\xf5\x5d\xf4\xca\xdd\x1c\x53\x82\xaa\xf4\x13\x7a\x0f\x63\ +\x24\x15\x4d\x5f\x03\x19\xba\xe8\xbc\x24\xeb\x6e\xab\x6d\x4c\xf0\ +\xb5\xb1\x18\x2c\x16\x1e\x91\x23\x54\xc1\x71\xb1\x83\x60\xf5\x14\ +\x18\x52\x90\xec\xc0\x26\x2d\x4b\xdb\xbd\xcd\x5b\xa6\xca\xd8\x06\ +\x46\x92\x5e\x10\x4b\x1d\xe9\x63\xf4\xf8\xd1\x10\xbe\x8b\xbd\xc7\ +\x27\xc5\xbb\x8a\x3a\x28\x23\x4b\xb9\x58\xcf\x7d\x06\xec\x6d\x8e\ +\x8c\xfa\xc7\x2e\x56\xc1\xb6\xb1\x2f\xc1\xfc\x55\x46\xd9\xa6\x04\ +\xd7\x8e\xe5\xe4\x02\x17\x0d\xc4\x5a\x86\x4d\x5e\x4f\xca\xab\x4b\ +\xf9\x4f\xe5\x7b\xc2\xa7\xb6\xa3\x9f\x88\xaa\x03\x45\x76\x59\x80\ +\x7f\xfb\xcd\xc7\xe3\x1b\x5f\x7b\x67\x3c\x7c\xf3\xce\xf8\x85\x3f\ +\xf7\xf7\xc7\x9f\xfb\xc9\xff\x7c\x9c\x9d\x3f\xd0\xf1\xd0\xff\xa9\ +\x46\x54\x80\xf8\xb3\xc6\x1b\x6c\xf0\x81\x81\xde\x43\x37\xd8\x60\ +\x83\x6f\x1d\xb6\x05\xb5\x0d\x36\xf8\x3e\x86\xed\xe0\xff\x13\x00\ +\x9d\xb6\x1e\x89\xbc\x17\xdf\xd0\xf2\x95\xde\xec\x9e\xbc\x54\x51\ +\x30\xca\x5f\x9d\xa2\x9b\x62\x50\xef\x1b\x35\x3c\x54\xf6\xca\x57\ +\xc6\xab\xbf\xf9\xcf\xc6\xd5\xd5\x5b\xe3\xc3\xcf\xdf\x1f\x77\xb8\ +\xe1\x23\x4b\xdf\xbc\xf1\x02\xc5\x85\xf0\x6a\x31\xed\xaa\x9e\xf4\ +\x91\x3f\xc3\x7c\x16\xcf\xfc\x3a\x18\xc9\x94\xf9\x46\x50\xdf\x60\ +\xcf\xaf\x5f\x65\x8b\x8e\xa7\xd7\x54\x2e\x97\x0c\xf4\x99\xe0\x62\ +\xef\x2a\x55\x35\x97\xba\x2e\x8d\x29\x59\xab\x10\x67\xf6\x65\x19\ +\x25\xd9\x0c\x79\xb2\x30\x76\x90\xa4\x26\x75\x71\x4f\xbd\x00\x4f\ +\x14\x29\x94\xfa\x99\x44\x67\xca\x6d\xeb\x7a\xfb\x12\x47\xfd\x91\ +\xfb\x97\xe3\x65\x27\x8c\xcc\x18\xdf\x34\xc0\x22\xeb\x43\x04\xaf\ +\xa1\xd8\x96\xb2\x89\xaa\xd2\x05\xa1\x97\x09\x6f\x4d\xa6\x84\xdd\ +\x3e\x18\xb7\xbf\x6d\x6a\xe2\x09\x5d\x29\xfd\xb0\xa2\x0d\xb1\x03\ +\xb0\x25\xcc\xd4\x19\x85\x0e\xa9\xbc\x54\x26\xaa\xb2\x88\x7b\x71\ +\xb0\xe6\xa8\x36\xb3\xda\x59\x09\x0a\x5a\x67\xd1\x4a\x6e\xa8\xfe\ +\x9a\xed\x14\xac\xc8\x09\xb7\x4e\x25\xa7\x9d\x74\xd0\xb5\xbd\xfc\ +\x1f\x69\xda\xff\x2e\x49\xe7\x17\xe3\x8a\x27\xd4\x78\x75\xd1\xa3\ +\xf3\x71\x0e\xcf\x7f\x83\xcc\xed\x2a\xbf\xc2\x2c\x2c\x7b\xbb\xb2\ +\x1d\x1d\xb6\xe2\x2a\xb9\x7e\xea\x6f\x9e\x3e\xe3\x95\x8e\x2c\x32\ +\x1c\x7a\x11\x8d\xff\x4c\x83\x3e\xf1\x8d\x21\xef\x4f\x76\x28\x44\ +\x20\x68\xb0\x83\x06\xd1\xe7\xee\xc2\x92\x01\xbd\x1d\xd2\xb5\x45\ +\xc3\xe0\x51\xfd\x54\x9e\xb2\x91\xbc\x45\x53\x85\x1d\x38\x2c\x3e\ +\x16\x75\x87\x56\xa8\x36\xaa\x48\x08\x0c\xed\x86\x3e\xe5\xd3\x17\ +\x91\x58\x57\xfe\xf1\x8e\x22\xb4\x2d\x67\x5b\x5a\x5f\xac\x05\xd3\ +\x26\xec\xc4\x4f\x05\xd5\x79\xda\x42\x98\x03\x09\xd3\x2e\x0b\x2b\ +\x95\x0a\x22\xe2\xc8\x2d\x86\x56\xea\x5f\x35\x67\xd1\xab\x65\xb1\ +\xcb\x02\x96\x68\xdf\x85\x89\x1d\xd8\xbc\x6f\xea\x61\xc7\x71\x83\ +\x1c\x1a\x79\x68\xe2\x7a\x13\xb5\x0e\x3f\xc7\x90\x0c\x3b\x7f\x55\ +\x86\xec\xf9\xf0\xad\x4c\x08\x1c\x59\x74\x45\x77\xac\xb2\x81\xcf\ +\xae\x18\x59\xf7\x9f\x77\xb6\xea\x44\x23\xdc\xcc\xed\x82\x7d\x77\ +\x37\x8e\x33\xff\x6f\x93\xdb\x75\x53\xa7\x92\x04\x48\xf9\x34\xf1\ +\x60\x1c\xf3\x5f\x80\x47\x6a\x8f\xf6\xed\x63\xfe\x27\x50\xfb\x3b\ +\xfb\xbe\x63\x10\x57\x19\xf7\xc8\x6f\x6e\x0e\xc7\x3b\x0f\x1f\x8c\ +\x07\x67\xa7\xe3\xc3\x3f\xfb\x3f\x1c\x2f\xfd\xb9\x9f\xc9\xa2\x9a\ +\x5f\xff\x98\xd0\x81\xc4\x9e\x50\xd5\x6a\x59\xb3\x1b\x6c\xf0\x81\ +\x07\x9f\x1c\x6b\x7f\xae\x13\xa5\xc9\x3a\xd6\xae\x2f\xf3\x03\x8c\ +\xaf\x7d\xf5\xd7\xc7\xe7\xbf\xf8\xdf\x8e\xd3\x0f\xbd\x32\x9e\xff\ +\x28\x8b\x69\xa7\x3a\xb6\x74\x36\xc4\x4e\x5f\xbf\x3e\x55\xc7\xca\ +\x85\xc7\x56\x2c\xa0\xe9\x1a\xa5\x6b\x92\x17\xd2\x18\x57\x71\x7d\ +\xea\x8f\x87\x20\x2c\x62\x08\x73\xfc\xa6\xa8\x46\xb7\x82\x4d\x0b\ +\xaf\xa1\x79\x1f\x7a\x62\xe0\x9d\xca\xd8\x63\x99\x6a\x23\x79\x2c\ +\x6d\x3d\xf9\x6b\x19\xdf\x1c\xd4\x13\x6a\x48\xec\x0c\x81\x8d\x33\ +\x63\x87\x2a\x5f\xff\x38\x89\xf6\x47\x69\xec\xf6\x40\xd1\x36\x5b\ +\x41\x2b\x2f\x79\x7a\x20\x71\x22\x51\xb2\x21\x76\xc4\x8d\xc2\x75\ +\xa6\xd8\xb2\x43\x0c\x69\x8b\x92\x81\x9c\xca\x2d\xb5\x2a\x2b\xf8\ +\x20\x27\x32\x63\x41\xec\xe0\x45\xd5\xb6\x43\xc7\x79\x19\xdc\x76\ +\x0d\x6b\xbe\xcb\x6e\x5b\x97\x51\x32\xf3\xca\x8a\x35\x4c\x1d\x85\ +\xd2\xc7\xe1\x76\xed\x9a\x2e\x9b\x8e\x0e\x69\xaa\x1b\xe8\x2f\x74\ +\xcc\xbc\x8d\x54\x00\xb2\x58\x44\xe7\x40\xd2\x31\x06\x62\x31\xec\ +\xe2\xe2\x66\x5c\x9d\x5f\x7b\x21\xed\xfc\xec\x6a\x9c\x9d\x5d\xfa\ +\x49\x35\x16\xdc\xf2\x34\x1a\x7d\x2f\x4c\xc2\x1d\x5c\x0d\xd3\x57\ +\x7a\x6d\xb5\x2b\xf4\x8c\xaf\x24\x40\x55\xc5\x70\x8d\xf1\x6b\x1e\ +\x75\xe1\x39\xd1\xf5\x84\xa7\xfb\x49\xc7\xfc\x58\xe9\x38\x0b\x2c\ +\xda\xad\xc6\x11\xf1\xd4\x68\xe5\x14\xe0\x3c\x58\x7a\xca\x99\x7c\ +\x4b\x85\x9d\x89\x8b\x78\x42\xeb\x62\x47\xde\xd7\x69\x41\x99\xa7\ +\x57\xb8\xb0\x02\x89\x8f\xad\xfb\x73\x8a\x25\xa5\x7e\x96\x8b\x55\ +\x96\xed\x02\x11\x13\xcb\x43\xa6\x3e\x26\x64\x41\xff\xf2\x59\x19\ +\xa4\x0e\x25\x80\x71\x2c\xb2\xd4\xd2\x60\x59\x08\x5f\xcb\x3b\xa8\ +\xeb\x11\xb0\xbe\xc2\xc4\x2e\x1a\x10\x6d\x32\x36\xdd\xb8\x6c\x4a\ +\x1e\x68\x3f\xc5\x65\x1c\x63\x0a\x59\xeb\x10\x2c\x65\xba\xe1\x1e\ +\x43\x64\x38\x02\xce\x5c\x0b\x7f\xb3\xc5\xe3\x9b\x3a\x30\xb3\x5c\ +\x97\xdb\xe5\x79\x9b\x9b\x4c\x7c\xe4\xd1\x35\x8d\xd5\x82\xb5\xfb\ +\xa0\xe9\xaf\x52\xea\xb7\xd8\xa8\x6e\xf8\x35\xcf\xf9\xb2\x78\x03\ +\xdb\x83\xba\xb9\x0d\xa5\x97\xce\xcf\xef\xb9\xce\x14\x20\x1d\x76\ +\x36\x10\x66\xf1\xce\xb6\x15\xc5\x0c\x44\xc7\xa0\x1d\xea\x0b\xc6\ +\x7b\x07\x2c\x0e\x9f\x8c\xfb\xf7\x9f\x1b\x77\x4e\xef\xa0\xb4\x19\ +\xed\xe4\x18\x03\x58\xb8\x7e\xac\xf9\xc9\xd7\xbf\xfe\x68\xbc\xfd\ +\xca\xdd\xf1\x73\x3f\xfe\x9f\x8d\x9f\xff\xb9\xff\x85\x8e\x9d\xfe\ +\x4f\x35\xfa\xb6\x62\xeb\x43\xe9\x14\x17\xc9\x06\x1b\x7c\xf7\xc1\ +\xbb\xff\x06\x1b\x6c\xf0\x4c\x60\x5b\x50\xdb\x60\x83\xef\x63\xd8\ +\x0e\xfe\x3f\x01\x74\xa7\xad\x47\x23\xc8\xde\xe7\xe8\x64\xdf\xcc\ +\x67\xe0\x95\x30\x64\x0b\x85\xf3\x35\x64\x60\x0e\x66\x22\xac\x89\ +\xf3\x9b\x6f\x8d\xaf\xff\xab\x7f\x32\x0e\xcf\xbe\x3e\xee\x3f\x7f\ +\x6f\xdc\x3d\xe1\x7f\xd3\x34\x74\xd7\x84\x98\x49\x31\x8b\x69\xd7\ +\xe7\x2c\xa8\xf1\xcb\xe9\x4b\xa5\x3c\x9d\xa6\x2c\x05\xdf\x5c\x8d\ +\x6b\x4d\xb2\xbd\x00\xc5\x0d\x20\xee\x74\x68\xc2\x40\x7c\x26\x0e\ +\x57\x4c\x1e\x78\x32\x4d\xb6\xfe\x15\x2b\x55\x62\x6e\x53\x97\x0d\ +\x87\xc1\xc6\x95\xb6\x97\x72\x31\x9e\x48\xa4\x25\x99\xf4\x84\x66\ +\x62\xe2\x89\x96\x93\xbe\x52\x4d\x1f\xe6\x40\xe8\x85\x3a\x24\x66\ +\xe8\xd3\x49\xe1\x61\x03\x99\xf4\xc7\x42\x1f\xdb\x14\xa6\x8d\x2c\ +\x12\xd2\x2e\x82\x55\x7b\xbd\x60\x83\xbe\x6c\x29\x68\xf2\x96\xa9\ +\x0d\xf2\x49\x4b\x90\xf9\x1b\xdb\x10\x02\x7c\x52\xcf\x55\xb6\x80\ +\x27\xb3\x78\x4b\x4e\x7b\xf0\x5b\xdb\xb9\x11\xf4\x83\x19\xf3\xb3\ +\x4f\xa6\x8f\xb0\x6f\xe4\x2f\x36\xc1\x90\xc1\x95\x21\x58\xb1\xd0\ +\x94\xbe\x86\xc5\x3e\xfd\x1d\x51\x4d\x39\x77\xc1\xe5\x08\xaa\xce\ +\x70\x45\x4e\x7a\x1f\xca\x23\x50\xcc\x8e\xac\xbc\x76\x65\x80\xe4\ +\x12\xb6\xbc\xff\x73\x26\xfb\x22\x37\x7f\x2e\xc7\xd5\xd9\xc5\xb8\ +\x7c\x7c\x31\xae\xb4\x0f\x5f\x28\xf1\x3f\x21\x59\x54\xe3\x09\x4a\ +\x7d\xd9\x66\xf2\xd1\x9e\x2b\xff\x6c\x5b\xcb\x88\x27\xcc\xc2\x2d\ +\x6c\xfe\x47\x6d\x59\x50\xe3\x7f\xd4\x0e\xea\x29\x35\x5e\x01\x79\ +\xc0\xe2\x83\x3a\xa7\x7a\x52\x50\x15\x4b\xa8\xaa\x24\x65\x44\xef\ +\x5c\x7d\x85\x1a\xba\xa5\x55\xb4\x79\xeb\x8a\xb0\x98\xf8\xa6\x25\ +\x2c\xbb\x85\x60\xdb\xf4\x3e\x03\xaf\xfd\x75\x89\xb2\xb2\x5f\xc0\ +\x66\xca\xb3\xaf\x41\xa9\xfd\xe6\xa3\x63\xb7\x9f\x7e\x9e\xdb\xb7\ +\x9d\x60\xaf\xa2\x91\x47\x9f\xac\xa1\x99\x32\x5a\x83\x03\x55\x00\ +\x72\x21\xef\x9b\x05\x6b\x1a\xb3\xd9\xb7\x92\x87\x5a\xf8\xa0\xb5\ +\x5e\x34\x58\xe9\x89\x85\x34\x52\xe9\xc1\x5e\x9c\xe7\x0e\x8d\x17\ +\xc4\xb0\x39\xcc\x22\x98\x6d\x25\x9b\x0b\x6b\xd8\xd1\xca\x8a\xdb\ +\xf2\x55\xca\x1f\xd2\x13\x47\x08\x40\x4e\x2c\x0b\xf0\x45\xb4\xd8\ +\xd3\x76\x74\x73\x61\xaf\x31\xf6\x65\x52\xbf\x03\x7f\x12\x10\x3a\ +\xa0\xb9\x5b\x21\xea\x75\xff\x4e\xa1\xe8\x22\xd6\xd5\x75\x5d\xd1\ +\xe5\x69\xcb\xfc\x9a\xbc\x16\x90\x79\x52\xed\x34\xff\xa9\x56\x55\ +\x55\x28\x6e\xac\x5f\x0d\x1d\x52\xe3\xe1\xdb\xef\x8c\xb7\x2e\x4e\ +\xc7\x27\x7e\xf1\x7f\x34\x3e\xf4\x33\x3f\x9d\x27\x79\x79\x52\xcd\ +\xc5\x90\x01\x5d\x52\xc1\x8a\x6d\x8b\x0d\x36\xf8\x40\x43\x1d\x36\ +\x06\xef\xb4\x3e\xeb\x86\xac\x63\xea\xe6\xea\x60\xbc\xf1\xda\xe7\ +\xc6\xef\x7d\xe1\xbf\x1a\xe3\xb9\x97\xc7\x0b\x1f\x3e\x1a\x77\x4f\ +\xb9\x5d\xcb\xf1\xc4\x00\x48\xf6\x42\xbc\xe2\xf1\x8a\xd7\x14\x33\ +\xae\xd2\xf8\xa9\x9f\x4a\xe3\x07\x21\x7d\x2d\x73\x3c\xe2\x8a\xd7\ +\x37\x65\xd7\xf9\x37\xf9\xfb\x87\xd4\xb1\x89\x00\x64\x5a\x10\x98\ +\xe3\x19\xca\x25\xcd\xb1\x0a\x39\x7c\x68\xeb\xfc\x84\x5a\x62\xe4\ +\xfa\x90\x1f\x63\xf9\xda\xd1\xb6\x4a\x68\x7c\x1e\x96\x40\xad\x40\ +\x64\x9a\xb2\x68\x92\xf5\xf6\x47\x8c\x43\xc9\x71\x11\x91\x7a\x38\ +\x90\x6d\xd0\xc7\x16\xa6\x81\x18\x4d\xed\x42\xb9\x4e\xe8\x6e\xdc\ +\x81\xf6\x45\x71\x6b\x9c\x78\xa0\xcf\x75\xb8\x24\x45\xdb\x2f\x6c\ +\x65\x0b\xc4\x36\x06\xf4\x9a\x5f\x7f\x59\x86\xc8\xed\xaf\x8c\x56\ +\x61\xb5\xae\x2f\xb4\x65\xe6\x9a\x8a\xbf\x65\x88\x40\xaa\x40\x6c\ +\x04\x65\x66\x54\x15\xeb\x7a\x23\x05\xa5\xa4\x40\xd7\xcd\xe5\xea\ +\xbc\x9d\x27\xd5\x82\xbd\xa8\x76\xae\xb9\x80\x30\xaf\x84\xe4\x15\ +\xa4\xfc\x2f\xa0\xb7\x1d\xc3\x28\xb0\x23\x76\x0c\x5a\xa1\x8f\x76\ +\x02\xf6\x83\x2c\x20\x44\x86\x09\xd7\x37\x16\xd4\xf8\x6d\x06\xe3\ +\x28\xbf\x46\x5b\x3c\xe3\xa8\x63\x3f\x9d\x76\x30\x84\x7a\x77\xb3\ +\x2f\x40\xad\xa9\x1f\x3c\x57\x59\xb6\xe1\x02\xb1\xb1\x55\xd9\x98\ +\x13\xea\xed\x02\x20\x75\x5c\xf7\x55\xf7\x3d\x46\xed\x21\x19\x06\ +\x65\x63\x2c\x30\x52\x30\xf7\x9f\x98\xd8\x02\x8a\xa0\xe3\xd9\x7d\ +\xcc\x75\x74\x55\x98\xe3\xae\x20\xf5\x12\x60\x52\x71\x2a\x5b\x40\ +\x72\x9b\x4d\xb1\xa2\xf8\xad\x1d\x94\x2d\x8d\x2b\x5f\x48\x19\x4f\ +\x4d\xba\xc8\xb5\x1f\x66\xc9\x6c\x43\x7b\xfc\x71\xfd\x10\xb1\x5c\ +\xa4\xde\x93\x33\xcf\x8d\x39\x62\xdb\x42\x9b\x14\x95\xaf\x12\x7d\ +\x12\xba\x6d\xdc\x35\xdd\x19\xa5\xc3\x66\xa1\x63\xe7\x31\x71\xd3\ +\xfa\x78\xbb\xaa\x1e\x6c\xbf\x59\x86\x04\xb6\x31\x8d\xa8\xe5\x50\ +\xc8\x2d\x29\x7d\xf1\x53\x16\x0c\xb8\xcd\xd8\xd3\xce\xe6\xdb\x87\ +\xf6\x8a\xa6\xb5\xaa\x91\xb4\xe4\xd4\x0d\x1f\x6c\x16\x9c\x78\xe4\ +\x9c\x78\xe0\x89\x49\xac\xf8\xc8\x28\x36\xce\x88\x11\x8f\xa6\x61\ +\x59\x38\x63\x3f\x3e\x3e\x3e\x1d\xcf\x3d\xff\xc2\x38\x3d\xbd\xe3\ +\x38\x1e\x0e\xa9\xf3\x98\x5f\x53\x4f\x8e\xb1\xb7\xdf\x7a\x34\xbe\ +\xfa\x47\x6f\x8f\x87\x6f\x9c\x8c\xbf\xf6\x57\xfe\xf7\xe3\x67\x7e\ +\xec\xef\xe9\xf8\x7a\x20\xff\xfc\xa7\x5a\x7a\x0b\x20\x42\x5a\xb9\ +\xc1\x06\x1f\x04\xe8\x3d\x7f\x83\x0d\x36\xf8\xd6\x41\xd7\xf8\x39\ +\x4c\xd8\x60\x83\x0d\xbe\xcf\x60\x3b\xf8\xff\x04\x40\xa7\xdd\x36\ +\x12\x79\x9a\x7c\x05\xa8\x57\xf3\xaa\xdd\xfe\x5f\xcb\xeb\xb4\x6c\ +\xfb\xc6\xca\x3c\x6f\x90\xd1\xe5\xd5\xf5\x38\xbe\xbc\x1c\x5f\xfb\ +\xd5\x7f\x3a\x2e\xbe\xfe\xfb\xe3\xf9\x17\xee\x8d\xe7\x4e\x59\x14\ +\xd0\x34\x42\x3a\x8d\xe8\xf5\xbd\x54\xba\x18\x37\x17\xe7\x79\xdd\ +\x23\x4f\xa6\xf9\x49\x1e\xe9\x35\x49\xbe\xb9\xe1\x15\x7a\x0a\xc8\ +\x02\x06\x37\x7f\xe4\xe3\xd2\x54\xd0\x5c\x9c\x70\x2c\x16\xa6\x52\ +\x0f\xf2\xfa\x31\xa0\x6f\x0e\x65\xb2\x8d\x34\x98\x0a\xf0\x01\x5c\ +\x5f\x3e\x60\xee\xd3\x30\x1d\x82\xf1\x9d\x5e\x7f\x1d\x14\xd1\x9c\ +\x45\x11\x46\x8d\x34\x82\xa5\x0e\xc2\x22\xc8\xe5\x2a\x0c\xad\x2f\ +\x37\x76\xdc\x8e\xfa\x58\xee\x7a\xa7\xce\x24\xff\xd7\x96\x79\x59\ +\x74\x9b\x7c\x87\x47\x72\xbc\x68\xbf\x63\x50\x1e\x79\x6c\x4c\x0a\ +\x72\x43\x2c\x60\x91\xfd\x96\xaa\x1a\x68\xc0\xc2\xf8\xeb\x89\x9f\ +\x8d\xc8\x22\x26\x0b\x22\x57\x6a\x99\xfb\xa4\x26\x5d\x9a\x7c\x47\ +\x1d\x1b\xeb\x9c\x50\xae\x78\xb8\xa0\x22\x26\xb3\x42\x6b\x79\x03\ +\x31\xe8\x83\x2a\x27\x22\xd7\x13\x3e\xcd\x13\x61\x1d\x13\xd0\x34\ +\xcd\xec\x53\xa0\x75\xf6\x07\x87\x35\x4c\x5a\x04\x74\xba\x49\xb9\ +\x09\x65\x72\xa2\xdf\xd1\x65\xf1\x33\xb7\xeb\xfc\x24\xe1\x25\x8b\ +\xbd\xda\x87\xcf\x49\x2c\xaa\xf1\xff\x34\x59\x50\xcb\x93\x6c\xec\ +\x97\x4a\xde\x97\xf1\x0d\x06\xbc\xf8\xeb\xb8\x69\x17\x0b\x0b\x7e\ +\x0d\x91\x12\xaf\xc2\xe3\xe6\x0f\x4f\xa6\xf9\x69\x35\x16\x1d\x90\ +\xbb\x2e\xa9\xa8\xfb\xa1\x2a\xcc\xae\xc9\xdb\xbd\xb2\x3f\xb7\xdc\ +\x14\xea\xc8\x2a\xc7\xd1\xea\xce\x29\xbc\xc1\x75\x8a\x1c\xb0\x46\ +\x64\xd7\xd3\x6c\x54\x86\x58\xb6\x40\x9c\x63\x0b\x5b\x21\xb9\x5d\ +\x24\xe9\x63\xa2\xc0\x56\xc5\xce\x3a\x63\x62\xcd\x64\xf6\x40\x5a\ +\xcb\x76\x15\x3d\xfd\x6f\x1d\x28\x31\x92\x4f\x80\x5d\x94\x42\xad\ +\x17\xce\x77\xd2\xa6\x66\xbf\x50\xff\x29\x2c\x04\x2e\x79\x27\xfb\ +\x26\x2d\x72\x89\x7d\xdc\x40\x73\xfe\x40\x20\x3d\x32\xf1\x3b\x0b\ +\x6d\x6c\xe3\xe9\x77\x94\x7e\x69\xde\xe7\xa3\xf8\xe3\xe3\xdb\x7d\ +\x88\x9c\x75\x2a\xbd\x4a\x40\x13\xbf\x6e\xf0\x3a\x36\xb4\x25\x93\ +\x5f\xb6\x6e\xf2\x09\x7b\x6c\xa0\xfa\x18\x9d\x2a\xb9\x6c\xff\xe0\ +\x1d\x17\x6d\x64\x6f\xe7\x2a\xd3\x4a\xa5\xa0\xaa\x07\xba\x43\xed\ +\xe3\x2c\x24\x9f\xf0\xa4\xda\xe9\xb8\x73\xe7\xc4\x32\xf4\xd4\x8d\ +\x6b\x02\xa7\x71\x1d\x5a\xe3\xd1\xe3\xc7\xe3\x9d\xab\xbb\xe3\x07\ +\x7f\xe1\xef\x8c\x17\x7e\xf2\xc7\xfd\x04\x1b\xdd\x93\x4a\x29\x25\ +\x9b\x08\xf0\xbe\x21\x7e\x6d\x06\xde\x60\x83\x0f\x1c\xcc\xfd\xb8\ +\xf6\x53\xed\xbc\xc6\x3a\x18\x18\x0f\x1d\xde\x1c\x8d\x6b\xed\xf0\ +\xef\xbc\xf5\xd5\xf1\xdb\x9f\xfb\x2f\xc7\xcd\xe1\xe7\xc7\x87\x3f\ +\x71\x32\x4e\x8e\xef\xf8\x58\xbb\x39\x64\x8c\x64\x47\x8f\xaf\x2e\ +\x75\x7d\xca\x7f\xa6\x65\x21\x8d\x1f\x2b\x85\xd6\xf5\x88\x6b\x11\ +\x3e\xfe\xe0\x83\xcc\xde\x13\xf6\xd8\x27\xc0\xe7\xa9\x32\xf2\x82\ +\xd6\x1a\x12\x54\x1f\xe4\x9c\x2b\x60\x3b\x62\xce\x3b\xad\xb3\xa7\ +\xff\x40\x32\xe7\xb1\xd4\xc8\xb7\xe5\xad\x0d\x2f\x2b\x15\xc8\xb9\ +\xa0\xa3\x40\xe3\x4b\x3f\xa9\xf6\xfa\xa4\x0d\x4e\x58\x4d\x79\x2d\ +\xbe\x88\x5f\xe4\xa9\x53\x5d\x92\x7d\x4d\x8e\x4a\x99\xfb\x7b\xa1\ +\x61\xb8\x69\xee\x85\x2a\x81\xa4\x06\x38\xe2\x02\xa0\x96\x83\xbd\ +\x3d\x62\x3e\x15\x69\x6f\xa8\x35\x50\xcc\xa2\x6a\x62\x17\x2c\xde\ +\x75\x5b\xd8\xa7\xc9\x09\x2a\x06\xde\x4d\xb1\x8c\x1e\x41\x16\xdd\ +\x1a\xd6\xac\xeb\x3f\x2b\xb5\x0f\xe9\xbb\xd8\x08\xc0\xee\x27\xab\ +\xec\xc5\x13\x86\xa1\x14\x45\x3a\x6c\xe9\x6a\x8f\x83\xb4\x9b\x6a\ +\x17\xf4\x0d\xff\xcb\x8b\x3c\x99\x76\x61\x5c\x8b\x6a\x8c\xb3\x3c\ +\x26\x96\x8f\x93\x68\x35\xc0\x65\x11\xc3\x14\xdb\xf4\x50\x36\x8e\ +\x0a\x67\x1d\x65\xf1\x74\x1a\x8b\x67\x07\x5c\x53\x7c\xad\xcd\xeb\ +\xf2\x8e\x95\xb2\xa0\x26\x7b\x55\x4d\x62\x47\x4a\x6b\x80\x44\xa6\ +\xae\xe1\x1a\xd2\x13\xe4\xf4\xa3\x6d\x4a\x9e\xed\x22\x09\xed\x6f\ +\xc0\xa6\x9c\xdb\x36\x6c\x09\x25\xb1\xb9\x33\x45\x95\x31\xa4\x7f\ +\xf8\x62\x49\xa0\x39\xe7\xca\xe0\x5b\x47\x01\x2e\xdb\x74\x7c\x60\ +\x69\x3f\xb4\xed\x52\xb9\x52\xc6\x98\x16\xda\xa2\xc4\x69\x31\x10\ +\x7d\x62\x84\x2a\x14\xdb\x15\x86\x6c\x9d\xb7\x6d\x31\x96\x2b\xcb\ +\x82\x8f\x46\x2a\xd5\x2f\xc8\x69\x1b\xd7\xea\xb4\x31\x6d\xc2\x17\ +\x68\xba\x58\x31\x5d\x27\x81\x64\x6c\x27\x8f\x91\xf0\x2b\xbb\xf8\ +\x94\x5f\xd1\x7e\x42\x4d\xc6\x79\x22\x2d\x72\x32\x96\xf8\x72\x6a\ +\x69\xdb\x8a\xe1\x4c\xba\x54\xb3\xe4\xb6\x0e\xef\x32\xed\x90\x2a\ +\xd9\x46\x18\xfb\x64\x6e\x53\xd3\x00\xfd\xe3\xfa\xd6\x36\xc5\xd8\ +\xb1\x1c\x20\xed\x76\x3c\x7c\x10\x49\xde\x0b\x72\x89\x03\x6f\xab\ +\xa2\xc1\x7b\xbc\x80\x27\x2c\x19\x37\xf1\x23\x24\xfe\x53\xed\xee\ +\xdd\xbb\xf1\xcb\x57\xa6\xda\xb2\xaa\xcc\xa5\x8e\xa3\xb7\x5f\x7f\ +\x67\xbc\xfa\xfa\xc5\x78\xfc\xc6\xfd\xf1\x57\x7f\xf6\x7f\x35\x7e\ +\xfc\xc7\xfe\xb6\xae\x01\xe7\x6a\x1f\x4f\xaa\x11\x9e\x63\xc7\x5e\ +\x4e\xe4\x54\x6d\x83\x0d\xbe\x9b\xc0\x7e\xb8\xc1\x06\x1b\x3c\x1b\ +\xd8\x16\xd4\x36\xd8\xe0\xfb\x18\xb6\x83\xff\x3b\x0b\x3d\x90\xee\ +\x81\xcc\xba\xff\xa7\xac\x4e\xc9\xfb\x83\xee\x8c\xf9\xf3\xaa\xc7\ +\xeb\xcb\x31\x1e\xfc\xee\x6f\x8e\x77\x3e\xf7\x6b\xe3\xee\x8b\xa7\ +\xe3\x39\x5e\xe7\x85\xda\x37\x75\x98\x2c\x5f\xd6\x22\xda\xb9\x7f\ +\x41\x7d\xc3\xc2\xda\x75\x5e\x8b\xe7\x59\xb4\x12\x93\x6b\x66\xd3\ +\x5e\xc4\xd0\xec\xdb\x13\x04\x4a\x10\xf6\xaf\xab\xb1\xbd\x94\x0e\ +\x39\x85\x0b\x67\xce\xa2\x09\x39\x65\x11\x66\x5d\x43\x26\x31\x98\ +\x35\xcd\x87\x49\x16\x33\xa2\x43\x26\x5c\x4a\x18\xd0\x0e\x19\xb9\ +\xbe\xb6\xd1\x34\x27\x4c\x62\x32\xa9\x71\x10\x26\x2c\xc1\x45\x98\ +\xce\xc4\xbf\x64\x6a\x87\x79\xd3\x4a\x6a\xbf\x17\xce\xaa\xfe\xbe\ +\xa9\x05\x5d\x0b\x6a\xd8\xc4\x36\x7e\x7e\x0a\xa3\xe2\xda\x6e\xc6\ +\x25\xe9\x4b\x45\xcc\x2a\x5b\x01\xbf\x64\x55\x34\x37\xc5\x06\xa2\ +\xa6\x85\x9b\x88\x26\xda\xf0\x4d\xa4\x5f\x4a\x20\x28\x99\x3a\x2a\ +\x51\xc4\xbb\x2f\x56\x76\xf4\xd9\xe4\x95\xc3\x02\x0b\x51\x74\xd7\ +\xc3\x96\x53\xdf\x9a\x50\x8b\x69\xdf\x5c\x08\x2c\x94\x41\xac\x25\ +\x53\xbc\xab\xa7\x94\x59\x8e\xa1\x27\xa2\xca\x4d\xac\x4b\xbc\x05\ +\x50\xac\xfa\xd4\xf1\xc4\xaf\x17\xc6\xfc\xc4\x24\xfb\x9f\x17\xd1\ +\xb4\x2f\xf3\x64\x9a\xff\x47\x8d\xfd\x55\x34\x76\xda\x6f\xfb\x15\ +\x90\xc4\xcb\x2b\x8a\x20\x89\x5d\x75\xa0\x9d\x4c\xdc\x49\x3c\xad\ +\xc3\xaf\xa8\x8f\x79\x1d\xde\xb1\x92\x68\xcb\xb3\x6f\x7a\xff\xb4\ +\x53\xd5\x1d\xcc\x2e\x44\x28\xf7\x97\x2b\x9e\xc8\x21\x77\x41\x7c\ +\xc4\x58\xc2\x38\x4a\x40\xfb\x4c\x3c\xe3\x94\x7d\xbc\x65\x05\x93\ +\x4c\x7f\x9a\x5d\xa9\x13\x2d\x02\xd3\x15\xbe\x76\xd3\xc5\xa7\xa0\ +\x65\x10\xf4\x49\x99\x4f\xbf\x18\x2b\x53\x80\x74\x99\x05\x86\x69\ +\x2b\x3d\xe2\xfd\xd8\x2b\x03\xd1\x62\x56\xca\xf4\x23\x82\x18\x2d\ +\xfd\x9a\x1e\xb4\xdc\xdf\x60\x53\x6b\x1b\xdf\x35\x41\x17\xb9\xcf\ +\x3f\x56\x2d\x32\x30\xc9\x4f\x80\x95\xad\x32\x9f\x67\x94\x45\x36\ +\x69\x1d\x5f\xb5\x8d\x79\x7a\xcd\xe7\x23\x97\x5d\x7c\xeb\x88\xa1\ +\xe4\xf8\x5d\xa7\xd2\x9b\xc7\xc7\x64\xf4\x7c\x2d\x2f\x3f\x52\xfb\ +\xfa\x2b\x7a\x39\x4e\x22\x4b\x76\x4b\x87\xc6\x68\x8a\xac\xb6\xd9\ +\x7a\x0f\x59\xa8\x84\x0a\xef\x12\x10\x28\xd5\xe9\xc3\x40\x1f\xf0\ +\x7f\x50\xd4\x63\xe7\x3f\xd5\xea\x49\xb5\x76\x23\x0a\x37\x55\xf9\ +\x47\xce\x07\x6f\xbf\x3d\xce\xae\x3f\x3c\x3e\xf1\x37\xff\xde\xb8\ +\xf7\x83\x1f\xe7\xce\x12\x91\x08\x27\xc0\xb2\x83\x2b\x75\x75\x44\ +\xb7\xa6\x45\x1b\x6c\xf0\x81\x82\xb9\x83\xee\xee\xa9\x3e\x77\x1e\ +\xb2\x94\x73\x38\xce\xcf\x24\xb8\x7a\x6d\x7c\xf6\xb3\xff\xb7\xf1\ +\xc6\xe1\x67\xc7\x47\x3e\x7e\x3c\x9e\xbf\x73\xc7\xd7\x7a\x16\xd3\ +\xda\x9d\x85\xb3\xcb\xf3\x73\x3f\xa1\x96\x6b\x91\x12\xd7\x29\x61\ +\x8f\xbf\xb8\x60\xc8\xd0\xd7\x34\x7c\x32\x58\x7a\x02\x6e\x11\xa5\ +\x0c\x32\xc3\x24\x0a\x38\x1b\x2c\xb5\x8f\x7f\x71\x38\xf9\x1a\x13\ +\x59\xff\x27\x2b\xe7\x34\x28\x6e\x87\xe7\x3c\x1a\x7b\x74\xbe\x86\ +\x5a\x86\x97\xce\x91\x84\xa1\xee\x84\x42\xda\xf5\x17\xd6\x95\x96\ +\x61\xd3\x4a\xae\x8f\xe5\x0b\x1d\x5e\x65\x12\xa7\x78\x68\x5f\x5f\ +\xa6\xaf\x32\xb0\x93\x6a\x81\xad\x7b\xb8\x65\x95\xf9\x9a\x44\xdd\ +\x76\xe5\xc6\x33\x8f\xde\x20\x5b\xea\x62\x49\x37\x69\x82\x04\x56\ +\x54\x00\xe2\x96\x8d\xcd\xa0\x11\xad\x37\x53\xe9\x0d\xd8\xad\x78\ +\x10\x3d\x4d\x69\xa9\x63\xda\x69\x8a\xfe\xa4\xb1\x06\xac\x04\xe5\ +\xf7\x24\x54\x50\x7f\xa1\x17\xc0\xc5\x92\xd2\x2d\x21\x16\xbb\xc8\ +\xfa\xfa\x22\x1e\x81\x92\x77\x3f\xce\xe7\x2c\xa8\x69\xae\xc0\x02\ +\xef\xe5\xf9\xcd\xb8\xf0\xd8\x89\x37\x57\xb0\x3d\xd4\xeb\xb4\x57\ +\x89\xda\xf6\xb8\xcb\x0b\x9f\x44\x14\x4e\xfb\x08\xa6\x6d\x4f\x01\ +\x68\xd4\x3e\x2e\x1d\x5c\x3f\x9c\xd8\xbf\x64\xce\x22\x1b\x4f\xab\ +\xf9\x9a\x43\x44\x6c\x70\xc5\xc7\x8e\x89\xe0\x7e\x72\x19\xa2\x25\ +\xb3\xce\x6c\xda\x98\x94\xf2\x0d\x22\xed\xaa\xb8\xae\x63\xe9\x6c\ +\x47\x86\x5e\x9f\x48\x16\xc8\xff\x6e\x15\xa8\x8e\xb6\xb0\x6d\xec\ +\x81\x58\x44\xd7\xe0\xcd\x89\xde\x15\xc5\x46\xb8\xd4\xb4\x2c\x7a\ +\x01\x7d\x47\x19\x1d\xd4\x80\x43\x8e\x08\x77\xaa\xca\x4d\x1b\x63\ +\x40\xde\x1c\x21\xd9\x55\x00\xf3\xb9\x1c\x5b\x51\x62\x1b\x98\x56\ +\x0c\xae\xe3\xed\xe3\x61\x8d\x3e\x48\xd8\x1e\x5e\x4c\x42\x9e\xcc\ +\x3a\x40\xe4\x52\x4e\x54\xc6\x1e\x97\x58\xc1\xd7\x3d\xea\xed\xd6\ +\x76\x60\x93\xca\xf2\x43\xb3\xa6\xa9\x47\xce\x27\xb6\xe7\xe3\xb2\ +\x19\x63\x60\xc3\xbe\x60\x22\xbc\xfc\xd0\xd9\xde\xb2\x4a\xb8\xf8\ +\xe1\xd8\x9c\x99\x64\x82\x05\xd6\x10\xf5\xa3\xcd\x6a\x13\x38\xe2\ +\xc8\x5c\xdf\x58\xe7\xc7\x81\xf0\xf4\x43\xf4\xc8\x6c\xeb\x96\xc7\ +\x26\x50\x36\x2d\x07\x53\x17\x73\x82\x22\xda\x1e\x5b\x9e\xbc\x64\ +\xce\x70\x7c\xc2\xeb\x1f\xef\x8f\xbb\xa7\x77\xdd\x89\xa9\xb5\x40\ +\xfb\x23\xed\xb9\x14\x7e\xf3\xf5\x87\xe3\xb5\x6f\x9c\x8d\xf3\x87\ +\x2f\x8c\xbf\xf4\xb3\xff\x9b\xf1\x93\x9f\xfa\x5b\xe3\xe2\xe2\x5c\ +\xc7\x04\xff\xc3\xc6\x59\x11\x9f\xf8\x41\x77\xad\x36\xd8\xe0\xbb\ +\x05\xb5\x17\x6f\xb0\xc1\x06\xcf\x00\xb6\x05\xb5\x0d\x36\xf8\x3e\ +\x86\xed\xe0\xff\xee\x01\x83\x99\x9e\xac\x31\x28\x87\xf6\x40\xfb\ +\x29\xa7\x64\xc6\xf9\x9e\x9c\x69\xb2\xf1\xf6\x1f\x7e\x61\xbc\xf6\ +\xd9\x7f\x3e\x9e\x3b\xbe\x1c\xf7\xee\xdc\x19\xc7\x9a\xdc\x70\x63\ +\x47\x99\x26\xcf\x2c\x44\x5c\x0c\xff\x5f\x9a\x06\xf4\x7e\x4a\x4d\ +\x72\x0f\xfe\x35\xcb\xc3\x8e\xc5\x0a\xdf\xf4\xe1\xe6\x0f\x7e\x94\ +\xa9\x89\xa1\x17\x32\x44\xb3\x50\x71\x70\xa5\x09\x37\xb4\xca\x26\ +\x79\xc1\x0d\xb3\x4a\x91\x96\x2e\x33\x95\xba\xf9\xca\x24\xa3\x9e\ +\xf8\xf1\xcc\x5b\x98\x09\x17\x13\x62\xd5\xc0\x2f\x15\xb2\xb9\xe4\ +\x92\x19\x6a\xe6\xe7\x58\x2e\x07\x4b\xf1\x55\x98\x3f\x4d\x5b\xa1\ +\x4e\xa8\x45\x14\xcb\x45\x7b\x11\x4d\xf5\xce\xa2\x4c\xeb\x22\x1b\ +\x96\xc7\x9f\x7e\x68\x7d\xca\xa4\xfd\x2a\x57\x72\xba\x84\xd8\xd8\ +\xf2\x31\x18\xd9\xb0\x18\xfa\x09\x7a\x05\x69\xf6\x02\xdd\x1f\xb4\ +\xd1\x64\xf8\xf4\x93\x12\xd8\xdf\xc8\x3d\xa3\xa4\x61\x9e\xa4\xc2\ +\x93\xa2\xb3\x44\x74\xe4\xd0\x53\x6a\x9e\x9e\x2a\x91\xb3\xae\xc6\ +\xdc\x26\xe0\x5b\xea\x96\x96\x00\xf1\xb7\x49\xe9\x92\x0b\x9a\x10\ +\x5e\xbf\x92\xc8\xe2\x69\xb4\x43\xee\x41\xb6\xe3\x84\x62\xe6\x1c\ +\x57\x7a\x6f\x17\x93\xc2\xd5\xf7\xfd\xb4\x9a\xb7\x9b\x12\x8b\x6a\ +\x5e\x58\x03\xfb\x09\xb5\xec\xbf\xd6\x79\xdb\xe6\x46\x90\xf7\x57\ +\xd1\xbe\xd9\x91\xa0\x69\x92\x32\xdf\xe8\xa9\xfd\xd0\x4f\xa4\x1d\ +\x69\x4f\x34\x5d\x09\x43\xec\x70\x6b\x0c\x50\x2d\x18\x61\x1f\xa7\ +\x55\xdd\xa7\xc1\xf4\x13\xe5\x7d\xd9\xbe\x25\x7d\x9a\xf3\x14\xef\ +\xe9\xc5\xb2\x1f\x2e\x31\xd7\xf1\x81\xb5\xbd\x34\x2b\x16\xbf\x85\ +\x5f\x14\x8b\x3f\x7a\x38\xf5\x1f\xc8\x26\xe5\x23\xbe\x0e\xc9\x12\ +\x3b\x5f\xa0\x83\x94\x78\xe9\x17\x32\xfa\x4e\x06\xd8\x78\x43\xaf\ +\x78\x65\xdc\x8c\x48\x77\xe4\xe6\x4b\xd3\x41\xd8\x21\x27\x12\x35\ +\x88\xdc\x8b\x5e\x70\xbe\xc1\x61\x82\xcc\xb6\x9d\xbc\x90\x86\xbd\ +\xef\x36\x09\x63\x03\x8d\x8f\xfc\x7d\x83\xb9\x74\xd0\xf6\xab\xed\ +\xce\x7f\x09\x99\x5f\xc9\xdc\x03\x20\x7e\x89\x6f\xba\xe4\xd6\x09\ +\x8a\xe6\xd3\xb4\xc9\xb2\x8d\x58\x19\x44\xdb\x87\xd8\x41\x4f\xc2\ +\xaa\xaf\x45\x86\x5b\xc9\x8a\xa6\xdc\xec\x1b\xe2\x15\xcb\xe1\x94\ +\xa9\x74\xf7\x69\xea\x1a\x4c\x3a\xe2\x49\x35\xfa\xa2\x17\xd5\x4e\ +\x4e\xfc\x3f\x69\x6c\x03\x9e\x76\x38\xb8\xb9\xe2\x6f\x32\x7d\x0e\ +\x7c\xf3\xad\xb7\xc6\xd5\xdd\x4f\x8e\x4f\xfd\xcd\xbf\x37\x8e\x5f\ +\x7a\x89\x7b\xf1\x01\x8a\x76\x41\xe0\x26\x0a\x52\xad\x94\xbd\xb0\ +\x1b\x6c\xf0\xc1\x00\x9f\xa0\x7a\xe7\xcc\x39\xd5\x47\x0f\x4f\xa6\ +\xe9\xb8\xb8\xd0\xce\xcf\x78\xe9\x77\x7e\xf7\xbf\x1e\xaf\xbf\xf3\ +\x2b\xe3\xc3\x3f\x32\xc6\xfd\x17\x4e\xc6\xd1\x0d\xd7\x89\x9c\x23\ +\xb3\x08\xc1\x75\xe8\xc2\x4f\xa7\xe5\x2d\x00\x19\x73\xe5\x09\xb5\ +\x5c\x8b\x28\xca\x63\x08\x30\x47\x82\xcb\x7e\x12\xf6\xa5\xae\x53\ +\x1d\x57\xc9\x17\xde\xd6\x3c\x31\x24\xd6\xd7\x15\x5b\xb4\x4e\x18\ +\x85\xb0\xcf\x6d\x1c\xe7\x0e\xce\xd9\x80\x73\x26\x3a\x7c\xb1\x43\ +\x01\xcf\xf5\xd2\x67\x0f\x83\x2e\x99\xd1\xe5\x9b\xc4\x02\x21\xd7\ +\x07\xca\x53\x6a\x1b\x5f\x6b\x65\x61\xf9\x0a\x67\xbc\x48\x9f\x62\ +\x56\x72\xd3\xc4\x2b\x9a\x18\x84\x59\x65\xa0\x4e\x0d\xf1\xa3\x3d\ +\xc5\x94\x1d\xe7\x3d\xca\x36\xe5\xfa\x8b\x56\xbb\xd8\x36\x40\x72\ +\x41\x4c\x3a\x9b\x90\x96\xb7\xbf\xe8\x95\x3a\x7c\x39\xba\xcc\x45\ +\x69\x3b\x77\x40\xfb\x03\xd5\x7f\xf8\x15\x9f\xf8\x0c\x40\x42\x05\ +\x2a\x4e\xdb\xb5\x6a\x6d\x02\x74\x7b\x26\xc4\x6f\x4a\xca\x79\xb1\ +\xa8\xb8\x82\x9d\xfa\x11\x47\xf5\x67\x08\xc5\x93\x68\xbc\x89\x82\ +\x27\xd5\xd8\xc7\xf9\xef\x27\xed\xb6\x91\xcb\xc6\xc3\x25\xf0\x8a\ +\x4e\x8c\xa5\x94\xd0\xe1\xd9\x97\x32\xb6\x0f\xe6\xd2\xcc\x6e\xc5\ +\x82\x9a\xc7\x58\xbe\x7e\x6a\x2f\x40\x8e\xbd\xbd\x04\xd9\x21\x03\ +\xaa\x1f\xad\xe0\x09\x68\xeb\x19\xcb\x99\x4a\xeb\xd3\x75\xca\xec\ +\x42\x16\xc3\x55\x35\xba\xa9\x05\x38\x44\x42\xfd\xa8\x2f\x92\x64\ +\xe0\x6c\x97\x22\x0b\x9a\x50\xc0\x29\x9b\xa5\x19\xc0\x94\x59\x45\ +\x06\xbb\x72\x85\x5c\x21\xda\x6b\x94\x7e\x8a\x91\x55\xb6\x54\x66\ +\x53\x68\x1f\x8f\x81\x78\x86\xca\xf1\x99\x3e\x43\x5a\xa8\xa9\xd0\ +\xee\x3f\x8e\x6d\x46\x18\x69\x1f\xf6\xde\x16\xe8\xfd\x0a\x48\x3c\ +\x60\xe2\xe3\x37\x1d\x0a\x53\x57\xdb\xd8\x87\x9c\xd2\x52\x5e\x38\ +\x87\x9d\x46\x2d\x77\xec\x14\x69\x59\x2f\xe0\x1d\x49\x0b\x76\x2c\ +\x63\xd0\x1a\x77\x82\xa7\x56\x0a\x62\xff\x45\x9e\x1f\xfa\xa4\x4c\ +\x7a\x05\x79\xef\x05\x18\x7b\x2f\xc7\x8e\x9d\x32\x42\xe1\xf4\x1a\ +\x3a\x7c\xed\xef\x6d\x80\x9f\x92\x1a\xcc\xb9\xd1\x76\xf6\x69\x1e\ +\x63\x68\x64\x80\x68\x26\xd2\xb6\x21\x9e\x91\xc1\xb5\xc0\x5c\xb4\ +\xdb\xad\x73\x29\x75\x3d\x3e\x39\x1e\xf7\xef\xbf\x30\xee\xdc\xe1\ +\x7f\x34\x51\xa8\xde\x32\x64\x9e\x02\x7b\x76\x76\x35\x1e\x3e\x7c\ +\x3c\x5e\x7b\xed\x6a\x3c\x7e\xf3\xa5\xf1\x97\x7f\xf6\x7f\x39\x7e\ +\xfc\x53\x7f\x43\xd5\x63\xbf\xa4\xe7\xec\xe2\x12\x40\xaa\x41\xe1\ +\x0d\x36\xf8\xee\x80\x77\xc7\x0d\x36\xd8\xe0\x99\x80\xae\x35\xbe\ +\x1a\x6d\xb0\xc1\x06\xdf\x87\xb0\x1d\xfc\xdf\x04\x74\x67\x7d\x5b\ +\x46\x21\x19\x5e\x67\x42\xa1\x02\x74\x5a\x5e\x6f\x9b\x9e\x08\x3c\ +\xbe\xbc\x18\x87\x6f\xbd\x3e\x5e\xf9\x95\x5f\x1a\x47\xd7\x6f\x8e\ +\xe7\x9f\xbb\x3f\x8e\x35\x4a\xf7\xa2\x82\x7f\x1d\xcd\x93\x69\x9a\ +\x2d\xfb\x4f\xf2\x79\x15\xd1\x85\x6f\x00\xc9\x20\x01\x7c\x33\x08\ +\x5b\xa5\xab\xab\x0c\xf6\x7d\x23\x42\xe5\x31\xa9\xed\x27\xb9\x56\ +\x8b\x69\x06\x9b\x64\x02\x0c\x4d\x7d\xe2\x05\xa8\xc6\xcc\x14\x8e\ +\xa8\xbb\x26\x49\x4c\xa8\xb9\xa1\xc3\x8d\x68\x61\x66\x11\x3d\xc1\ +\xb2\x75\xd3\x4e\x76\x9f\xe0\xb8\xaa\x13\x57\xa5\x9e\xc4\xef\x60\ +\xa5\xe0\x2c\x10\x72\xc7\x00\xde\x6d\x81\xa6\x0d\xb4\xc9\x36\xb4\ +\x11\x19\x38\xbc\xe5\x65\x17\x9b\x75\x92\x4a\x9f\xc4\xa0\x2d\x60\ +\x57\xcb\x7a\x48\x64\xce\xcb\x3e\x50\xed\xf0\x84\x5e\x44\xa9\x68\ +\xa3\xb7\x66\xb7\xdb\x76\xb1\x85\x8e\x2e\xa2\xfe\x35\x79\xa0\x7c\ +\xa6\x5f\x65\xc5\x9b\x11\xdd\x5c\xe4\xc5\x19\x4d\xcd\xae\x6e\x82\ +\x78\x44\x69\x4a\x41\x11\x46\x4b\xec\xb4\x23\x44\xb7\x63\xf1\xd9\ +\x21\x03\x16\x94\x43\x41\x7e\xa5\x5c\xbc\x77\x64\xc5\xa7\xab\x98\ +\x45\xd3\xaf\xee\x6b\x48\x0c\xd5\xff\xc6\xda\xd7\xd8\x0f\xd9\x16\ +\xc2\x73\xff\xbe\x10\xcd\xa2\x5a\x6f\x6f\x6d\x57\xbf\x5e\x0b\x1a\ +\x1f\x12\xdb\xa1\xb6\x21\xe0\x12\x55\xc0\x9c\x04\x2b\x79\x1f\x65\ +\x41\xad\x64\xde\x57\x9b\x5e\x3b\x81\x9c\x23\xc2\x86\xba\x45\xbd\ +\x0b\xfb\x7e\x65\x21\xd4\xfe\x0d\x5d\x2f\x6b\x4c\x36\x5f\x30\x59\ +\x11\x2b\xd3\xea\xba\x00\xfd\x64\x62\x89\x0e\x95\xd0\x8b\xa1\xf7\ +\x61\x88\x25\x93\xcc\x96\x4e\x11\x93\x2f\xb2\x86\x8e\x1c\x1b\x93\ +\xbb\xb0\x14\x28\x68\x6b\x81\x48\x6f\x5a\x08\xc4\xdd\xa7\x33\x5f\ +\xcb\x17\x7a\x6d\x97\x7d\xad\x65\xe0\xc8\xb9\xc3\x81\x8e\xc4\xcd\ +\xe1\xde\x66\xb6\xb3\x8c\x45\x23\xf8\x9c\x77\xb4\x61\xe5\x23\xba\ +\xce\x49\xa6\x6d\x87\x7d\xd9\x48\x37\x17\xd8\xcc\x73\xa3\x27\x74\ +\x16\xe5\xa0\x73\x5e\x13\x31\x75\x33\x4d\x19\x24\xc7\x31\x38\xba\ +\x69\x4b\x37\x81\xd1\x82\xec\xb3\xee\xd6\x55\x07\x17\xf9\x84\x6e\ +\xf6\x35\xd0\xb4\xf7\x4a\x85\x83\x8f\x2c\xbc\xbe\x94\xa3\xcc\xd5\ +\x57\xbd\xe6\x7e\x0f\x7d\x72\x3c\x8e\xee\x9c\x8e\x13\xa5\x23\x7e\ +\x04\x81\x0e\x7f\x7d\xf9\xb5\xf5\xa3\x8b\x8b\xf1\xd6\x1b\x0f\xc6\ +\xf8\xd8\x4f\x8d\x1f\xfb\x1b\xff\xe9\x38\x7a\xee\x85\x5a\x54\x23\ +\x68\x97\x0d\xbd\x07\x12\xb5\x76\x83\x0d\x3e\x90\xd0\xe7\x3b\xb0\ +\x0e\x6f\xf0\xe5\xe5\xc1\x38\x3e\xbc\x1c\xff\xe1\x3f\xfe\xd2\xf8\ +\x83\x3f\xfe\xc7\xe3\x07\x7e\x64\x8c\x17\x5e\xe4\x58\xe6\x7c\xa2\ +\x6b\x4d\xed\xf6\x8c\xa5\xb8\xf6\x9c\x9d\x6b\x7c\xc5\x58\x4b\x34\ +\xe3\x29\x3f\xa9\xc6\x75\x8a\x6b\x96\x0f\x80\x5c\x8b\xa0\xeb\x2c\ +\xfb\xee\x30\x0f\xa5\xd5\x31\xe5\x03\xd8\x84\xf3\x44\xd1\x71\xea\ +\xfa\x67\x71\x0c\x2a\x8b\x4a\x1c\xbf\x75\xae\xd3\x39\x2f\xae\xd8\ +\x46\x9e\x45\xb9\xd8\x1b\x44\x70\x09\x0e\x4f\x0d\xf5\x81\x51\x86\ +\xdc\xd7\x17\xd1\x5c\x57\xd5\xfa\xd0\x95\xb8\xf2\x34\xce\xe2\xcb\ +\x4a\xd7\x71\xcd\xaf\xb0\xad\x92\xc8\x91\xc3\xec\xc8\x55\x45\x3f\ +\xed\xd5\x72\x30\xfe\xd4\xdd\x06\xca\x56\x36\x64\x46\x06\x2b\x84\ +\x94\xfc\x15\x5f\x50\x67\x48\xcb\x27\xc8\x8e\x8f\x9f\x84\xe6\x1b\ +\xb7\x10\x9c\xf3\x11\x32\x86\x40\x46\x6e\x83\x8a\x09\x19\xca\x10\ +\x5a\xba\xd6\xbb\x67\x02\x48\x66\x5d\xa8\x9f\xe8\xb5\xef\x8c\x24\ +\xdf\xd8\xba\x56\x91\x09\x96\x38\xf2\x13\x63\x9b\x19\x40\x5c\x9c\ +\x0c\x46\xca\xfa\x59\x18\xec\x6c\xab\x0d\xc2\x93\x88\x3c\xad\x46\ +\x3a\x67\x0c\xa5\x71\x93\xff\x63\xcd\xe3\x7d\xec\x84\x49\xa2\xe7\ +\xb8\xbf\xf0\x52\xa6\x33\xef\x5b\x49\x2a\x47\xc9\x97\x45\x5f\x26\ +\x53\xae\x1f\x7c\xe6\x3a\x63\x63\xb2\x42\x5e\xec\x28\xae\xcb\x30\ +\xec\x52\x94\x85\x3d\x74\xda\xdd\xb6\x15\x0c\x90\x20\x32\xe9\x24\ +\x5e\xb6\x5f\x7c\x5a\x6b\xb0\x5b\x7c\xd9\xb2\x40\x36\xbb\x62\xa7\ +\x42\xd3\x23\x56\x82\xf2\x49\xbf\x58\x62\x03\x6f\x9b\x7c\x9d\x59\ +\xd7\x06\xc8\x8b\xb4\xb8\x08\x6f\x71\x1c\xd4\x3f\xec\xbb\xf6\xb5\ +\xb6\x1d\x22\x99\x72\xc4\x7c\x0a\xf3\x05\xe0\x4d\x13\x83\xbe\x96\ +\x6f\xfa\xb9\x9e\x1a\x73\x92\xac\xed\xf9\x88\x66\xfb\xb8\x94\xf2\ +\x8f\x9a\x05\x9e\x2c\x04\xd1\x27\xad\xf7\xf8\x56\x44\xb6\x6b\xf9\ +\x2b\x80\xe3\xea\x43\x2c\xcb\xe0\x6a\x1b\xa7\x2e\x8d\x3b\x85\x87\ +\x88\x8f\x97\xe0\x76\x74\xa4\x1c\x69\xfa\xf8\xbc\x95\xba\x74\x65\ +\xd2\x6f\xc2\xcc\xf5\x4c\xa3\x44\xd4\x3a\x6f\x0d\xa9\x70\x40\x4e\ +\x7b\xa0\xe7\x11\x10\xbd\x65\xe8\x83\x1d\xdf\x6d\x17\xd1\x3a\x2c\ +\x2b\x3e\x80\x0e\x0d\x22\xff\xd6\x4a\x7d\x4e\x3f\x1c\x1f\x9f\x68\ +\xce\xfd\xfc\x38\xbd\x93\xd7\x3f\x7a\xac\x49\x18\x4e\x7a\xba\x4e\ +\xf0\x5f\x85\x6f\xbe\xf1\x68\x7c\xe3\x8f\xcf\xc7\xd5\x3b\x1f\x19\ +\x7f\xf7\x6f\xff\x1f\xc7\x47\x3f\xf4\x93\x3e\x2f\x1e\x8c\x3b\xda\ +\x74\x97\x78\x55\x64\x72\xb7\x64\x83\x0d\xbe\x2b\xb0\xda\xe5\x37\ +\xd8\x60\x83\x6f\x11\xb6\x05\xb5\x0d\x36\xf8\x3e\x86\xed\xe0\xff\ +\x2e\x02\x9d\xdf\x23\x9a\xa2\x61\x39\x25\x1b\x23\x12\xc1\x24\x17\ +\xcc\xff\xa6\x8d\xc7\x8f\xc6\x1f\xff\xca\x3f\x1e\x47\xef\x7c\x6d\ +\xbc\x70\xef\xde\x38\x3d\x3e\xf2\x4d\x1d\x6e\xf4\xdc\xf0\x6b\xe9\ +\x4b\x5e\x89\x57\x0b\x6a\x5e\x4c\x63\x86\x2c\x9d\x62\xfa\x95\x8f\ +\x8a\xe1\x5f\x51\xb3\x20\x41\x3c\x4d\x2c\x7c\x83\x82\x45\x09\xd1\ +\xfe\x4f\x35\x6e\x0c\x51\x78\x5f\x1a\x84\xcc\x52\x09\xec\xbd\xaa\ +\x16\xf0\x4d\x66\x58\x26\x39\xa2\xfd\xab\xc3\x7a\x15\xcc\x8d\x26\ +\x49\xa8\xd1\xe1\xeb\x49\x18\x4e\x12\xe6\x46\x35\x4c\xc7\xaa\xb2\ +\x54\xb0\x6f\x47\x50\x5f\x97\x5f\xd8\x89\xba\x0a\x53\x7f\xb7\x2b\ +\xb8\x93\x6f\x80\x40\xdb\x4f\x3c\x6d\x22\x11\x53\xf8\x20\x77\x0e\ +\x1c\xc7\xb6\xd8\xd0\x50\xcc\x25\xf7\x8d\x84\xe9\x1f\x59\x63\x4f\ +\x27\x29\xdf\x02\xd5\xb9\x74\x6d\x42\xd7\x14\xb9\x10\x6e\x1a\x99\ +\x12\x5f\xf7\x1f\x2c\xfd\xb0\x92\x3b\x8b\xae\x27\x9a\x61\x2a\x9b\ +\x6c\x26\x9d\x80\xeb\x83\x5d\xa9\x6b\xea\xe8\x30\xa1\xc3\x1b\x3a\ +\xde\x84\x94\x6e\xbb\x7d\x15\x40\x1d\x40\xfa\xcc\x36\x95\x6d\x9b\ +\x1b\x37\xb3\x10\x81\x1d\x36\xb5\x21\x4e\xc4\x15\x91\x7d\xce\x3a\ +\xb6\x2f\x3a\x30\xba\x60\x6e\x1a\xce\x05\x35\xf5\xbb\x9f\xa6\x64\ +\x3f\xe7\x06\x10\xd8\x8b\xc2\xa1\xfb\xd5\x8f\x6d\x87\xbf\xb7\x14\ +\xdb\xcb\x21\x15\xcf\xfb\x9a\xb3\xdc\x73\x54\x1b\x79\xea\x29\x37\ +\x05\xb2\xcf\x62\xda\x7d\x4f\xbe\x5b\xef\xa2\xbb\x2f\x09\x2f\x32\ +\x5c\x5b\x29\x41\x2a\x4b\x0f\x9a\x8c\xca\x72\x80\xfa\x81\x77\x84\ +\x26\x1d\x5a\x4a\x4b\xe1\xc1\x21\x45\x93\x2b\xe5\x6b\xb0\x39\x99\ +\xba\x29\x90\x98\x9d\x2f\x5b\xaf\xb1\x28\x93\xb1\x71\xd4\x08\x6c\ +\x5b\x25\xef\x82\xf5\xb1\x36\x24\xf8\x82\x29\xdc\x15\x57\xe2\xe6\ +\x84\x2b\x54\xa2\xa2\x61\x72\xa8\xab\x94\x12\x41\x9b\xb4\x0e\x79\ +\xf9\xf1\xb1\x1d\x38\xfa\xf4\xb9\x70\x4e\x26\x8b\x8c\x73\x0d\xa2\ +\xd6\x95\x2c\x1b\x38\x0b\x48\xfd\xb4\x46\xcb\xb3\x88\xa6\x74\x44\ +\xf5\xca\x5f\xd8\xe5\x2b\x71\x63\xc7\xfb\x85\xed\x53\xce\x0d\xff\ +\x37\x26\x79\xe2\x2d\xe5\xa4\x0e\x55\xfe\x94\x8b\xb6\xb0\xe8\xae\ +\xb3\x79\x50\xeb\x23\x72\xaa\xfe\x74\x77\x02\x93\x10\x78\x7f\x58\ +\x09\x6a\x7b\x05\x56\xb4\xfa\x5e\xb5\x2b\x26\x61\x5d\x96\x08\x12\ +\x5a\xfe\x13\xc4\xfb\xbb\xea\x7e\x78\x74\x3c\x0e\x4f\x0e\xfd\x9f\ +\x6a\xbc\xfe\xd1\xe7\x6c\x6e\x22\x69\x03\xf1\x74\xe8\x95\xf0\xf9\ +\xc5\xe5\x78\xed\xed\x87\xe3\xf4\x07\x7e\x66\xfc\xe8\xdf\xfa\x3b\ +\xea\x87\xd3\x71\x78\xe7\x58\x81\xbb\x1c\x97\x32\x51\xc3\xfe\x2e\ +\xf3\x9e\xf0\xcd\xda\x6f\xb0\xc1\xd3\x60\x6f\xd7\x7c\x12\x64\xd0\ +\x36\x02\x6e\x9c\x5e\x5f\x1d\xea\x7a\x32\xc6\x17\xbf\xf2\xaf\xc6\ +\x1f\x7e\xe9\xff\x35\x9e\xfb\xd8\x1b\xe3\xc5\x8f\xea\xb8\x38\x60\ +\x21\x8a\x93\x2b\x3e\x37\x79\xd5\xb6\xc6\x58\x17\x3a\x2e\x18\x67\ +\xf1\x74\x9a\x9f\x56\xd3\xb5\x67\x3e\x9d\xc6\x75\xca\xc0\xb1\x74\ +\xeb\x19\x75\x17\x5c\xcf\xbd\xca\xfa\x1c\x41\x84\x96\x87\xcb\xf3\ +\x27\xe2\x38\x46\x7d\x97\xd7\x4a\xf1\x2c\xa0\x71\xbe\x42\x96\x1b\ +\xd7\xa5\xd1\x07\x59\xae\x6d\x01\xda\xa2\x6f\x90\xd2\xea\x83\x8c\ +\xeb\xe7\x81\xc6\x86\x6a\x76\xff\xb7\xa2\xc7\x45\x5c\x4b\xf9\x48\ +\x00\xaf\x9e\xb0\xbd\xa5\xe8\x0b\xd3\x5b\xbe\x1c\xe9\x3a\xed\x9e\ +\xb3\x8e\x33\x53\x0a\x4c\x1c\x30\x6c\xe9\xa0\x5d\x65\xb7\x2e\x75\ +\x88\xb9\x31\x60\x7f\x43\xec\x9b\x35\x52\x96\x73\x9c\x4a\x0c\x71\ +\x0b\x94\x9f\xa9\x64\x29\xbf\x7a\x99\x0a\x98\x00\x20\x6c\x20\xe8\ +\x60\x60\x12\x6d\x29\xb2\xa0\x49\x7a\xbb\xaf\xa7\xbb\x50\x3e\xe4\ +\xa5\x06\x75\x71\xa1\x57\x71\xeb\x3a\x6a\x7e\x07\xba\x4e\x13\x09\ +\x2a\x0a\x2e\x2b\x8c\x94\x65\x05\x03\x32\x25\x16\xcf\xfc\xa4\x1a\ +\x0b\xc0\x17\x59\x50\x63\x3c\xa5\x5d\xd7\xf5\xf6\xb6\x6c\x1a\x07\ +\x02\x21\x73\x90\x00\x6f\x71\xc8\xf5\x31\x65\x18\xb3\xbf\x72\x59\ +\x85\x57\xe2\x92\x97\xeb\x31\x3a\xbc\x84\x15\xc4\x34\x19\xa1\xdd\ +\x4f\x24\x5a\x6e\xa4\x7d\x5a\xdb\x02\x1d\xac\xb1\x32\xdb\xd3\xaf\ +\x18\xb5\x47\xe9\xc0\x28\x24\x88\x7d\x11\x02\xdb\xc0\x9a\x02\x73\ +\x0c\xe4\x99\x77\xc7\xc0\x4e\xaa\x58\x03\x6d\x69\x2d\x06\x2e\xd3\ +\xf1\xf3\x2d\x70\xd0\x8a\x93\xcf\x4a\x29\xd8\x89\x62\xb0\xda\x02\ +\x49\xc0\x55\x09\xd7\xa8\x68\x97\xee\xba\xe3\x45\x4b\xe0\x95\x4b\ +\x16\x3a\x1a\x67\xc4\x89\x34\x7d\x2d\x1b\x2f\x7e\x21\xd1\xf7\xc8\ +\x4f\xaa\x89\xe4\x97\x6c\x96\x46\x6e\x37\xc0\xac\xb2\x2a\xce\x7b\ +\x5a\xe9\x7a\x41\xae\xc7\x3b\xc8\x29\x23\x8b\x6b\xeb\x85\x3b\xa9\ +\x90\xf1\x69\xda\x98\x73\x94\x3e\xaa\xc0\x22\xaf\xa4\x5a\xb5\x4f\ +\x62\x27\x8e\xcf\x6a\x1e\x9b\x61\x97\x7a\x60\x9b\x7e\xa0\x92\x3e\ +\xa3\x88\xce\xf1\x6d\x93\xea\x17\xfa\x9f\x79\x59\xfc\x52\x77\x56\ +\xb7\x6c\xdb\xdd\x09\xb2\x3d\x02\x41\xed\x7b\x1d\xc7\x47\x8a\x8b\ +\x93\x64\xda\x63\x11\xfb\xae\x13\x75\xe6\x15\x90\xc7\x1a\x2f\x3d\ +\x77\xef\xb9\x71\x7a\x7a\xc7\x3a\x27\xea\xcb\xfc\x5a\x76\x67\x67\ +\xd7\xe3\xed\xd7\x1f\x8d\x57\x5f\xbf\x1a\xf7\xae\x7f\x74\xfc\xed\ +\xbf\xf9\x7f\x18\xf7\x4f\x3e\x29\xbb\x63\x4a\x92\x71\xea\x0e\x90\ +\x57\x4d\x36\xd8\xe0\x3b\x0e\xdb\x9e\xb7\xc1\x06\xcf\x0e\x8e\xfe\ +\x4f\x82\xa2\x37\xd8\x60\x83\x0d\x36\xf8\x4e\xc1\x7a\x34\x23\xfa\ +\xb6\xc1\x0d\x32\x26\x1a\xfc\x37\xc7\xe1\xd5\xf5\x78\xf3\xb7\x7f\ +\x65\x5c\xbc\xf2\x85\xf1\xc2\x73\xf7\xc7\xe9\xf1\xa1\xc6\xf0\x9a\ +\x06\x7b\xa1\x8c\xc5\x86\xc2\x97\xf9\xcf\x34\x3f\x99\x56\x93\x87\ +\x71\xc3\xaf\xa9\x35\x45\xe0\xa6\x0f\x4f\xf8\xb0\x58\xe1\xbb\x26\ +\x98\x68\x02\xed\x18\xe8\x95\xc4\x67\x2a\xa1\xb2\xed\x5f\x53\x11\ +\x2a\x93\xb9\x8d\xeb\xe4\x49\x33\x4f\x37\x30\xf9\x72\x3a\x1a\x07\ +\x27\xc7\x7e\x8d\xd8\x41\xdf\x84\x96\x4d\x74\x49\xbe\x71\x8b\x4e\ +\x18\x7d\x6e\xf0\x56\xa2\x1c\xcf\x04\x15\xb3\x64\x2e\xcb\xb9\x2b\ +\xea\x94\x49\xee\x1a\x47\xef\xba\x97\x1d\x34\x77\x83\x1a\xa3\xb7\ +\xa1\xdb\xdd\x34\xd2\xd0\xdd\x6e\x6c\xdd\x66\x7d\x9d\x15\x4e\x3f\ +\x40\x96\x9d\xe9\x4a\x40\xfb\x58\xe7\xa8\x93\xf7\x9c\x0d\x66\x07\ +\x17\x40\x97\xbc\xfb\xda\xd3\xc4\x8a\x63\xdf\x96\x0b\xf3\x31\xb6\ +\x8f\x00\xc2\xbc\xe4\x62\xbd\xa5\xd0\xd1\x1e\x6c\xab\x5d\xeb\x36\ +\x39\x36\xdf\x96\x81\x21\x68\xbb\xf5\x8a\x63\x59\xdb\x94\xde\xb4\ +\x85\x0b\x7e\x42\xbe\x96\x51\x2e\x68\xe1\x41\xd4\x73\x79\x8a\x50\ +\x8c\x79\x88\xf0\xa6\x2a\xcb\x47\x3e\xaa\x5b\x74\x69\xa7\x5b\xea\ +\xce\x61\x3f\x11\x32\x49\xdf\x25\x7e\x19\x79\x8e\xec\x9b\x01\xf5\ +\x61\xf7\x42\x57\x9e\xc9\x31\xd2\xce\xb0\xd4\x13\x84\x85\x52\xf5\ +\xa3\x76\x10\xb3\x06\xd7\x25\x69\xf6\xab\x70\x5c\x5a\xb7\xa6\x2b\ +\xe1\x47\x22\xa2\xf6\xc3\xf8\xee\xa5\x55\x6c\xca\xcc\x22\xb0\x52\ +\xc9\xa7\x4f\xc7\xe9\x7a\x95\xcc\xdb\x9f\x63\xdc\xbe\xe8\x57\x3e\ +\xf0\x15\x07\x79\xda\xbb\xc4\xe7\x33\xcb\x2f\x7a\x39\xa6\x10\xad\ +\xca\x9a\xb4\x7a\xb0\x74\x1d\xdb\x60\x52\x9e\xb6\x8b\xcc\xe5\x89\ +\x85\xcf\x7d\xea\xe6\x17\x3a\x75\x22\xf9\xd6\x43\xf1\x22\x00\xe3\ +\x6a\xe3\x2a\xe5\xf8\x02\xb2\x45\x2d\x9e\x00\xe3\xbd\x3a\x3a\x38\ +\x89\x16\x93\x1d\xe3\x09\x39\xf5\x28\x83\xe0\x1c\xd5\xde\x1d\x64\ +\x4a\x84\xb1\x59\xa5\x68\x56\xf4\x94\x83\x9a\x8f\x6f\xeb\xa0\xe7\ +\xa7\xf5\x96\xab\x7e\xc2\x7c\x02\x8d\x0b\x6c\x57\x0d\xc2\xce\xfb\ +\xb2\xc9\x40\xc5\x48\x0f\x04\x5a\x47\x4c\x6f\x1f\xf1\x9c\xa7\x91\ +\x27\x1d\x7a\xf1\x8d\x57\xa2\x9e\xea\x7c\xfe\xf0\xf5\x97\xc7\x3b\ +\x6f\x5c\x8c\x97\x7e\xe2\xc7\x7d\xed\xf0\x93\x9d\x13\x2a\x18\x00\ +\x99\xea\xae\xa5\xef\x0d\xdf\x94\xf1\x06\x1b\xbc\x07\xdc\xb6\x3f\ +\x79\xe7\xf7\x41\x02\xe1\x7d\x34\x8b\x65\x47\xbe\xa9\xfb\xfa\x1b\ +\x5f\x18\x9f\xfd\xbd\xff\x7a\x3c\xf7\xd1\x37\xc7\x87\x7f\xe0\x44\ +\xfb\x3f\x8b\x69\x1a\x3f\x1d\x62\x03\xf0\x9a\xbc\xbc\xe6\xf1\x52\ +\xc7\xc0\x4d\x3f\x9d\xa6\x71\x13\x63\xb0\x8c\xa7\x72\x84\x75\x1e\ +\xfc\x1e\x40\x45\x1a\x20\xc5\x57\x0d\xf3\x81\xb7\x4c\x63\x25\x27\ +\x1d\x7b\x87\xc7\x5e\xe4\xf7\xe2\xd9\xc1\xb1\xea\x7f\xa2\x63\xf5\ +\x54\x72\x61\xc9\x0f\x4b\x7e\x30\xa4\x93\x4c\x83\x2c\x0e\x70\x5f\ +\x07\x45\x10\xd5\xd8\xaf\xdb\x93\x9c\xb2\x0c\xee\x1e\x96\xca\x66\ +\x53\x2c\x5a\xb7\xa3\x4f\xfb\xe4\xeb\x16\xe6\x34\x9d\x33\x33\x59\ +\xfb\x13\x1b\x92\xf3\x78\x9f\x83\x38\xb3\xc3\x75\x39\xb9\x8f\x2d\ +\x99\x2a\x94\x6b\x46\xc9\x31\xc6\xc6\x76\xe8\x48\xb2\x95\xbd\xf5\ +\x51\x1b\xbc\x95\x88\xb3\x92\xd3\xaa\x9c\x0e\x29\x0f\x86\x3c\x74\ +\x28\x20\xbd\xd1\xaf\xbe\x4c\xb9\x92\x88\x08\x4f\x7d\x16\x1f\x92\ +\xfd\x4a\x06\x8d\xf9\x72\x0d\x8a\x0d\xe0\xba\xd8\x60\x25\x2b\x8c\ +\xa0\x7d\xd1\x39\xd9\x78\x05\xc5\xdb\xd7\xc6\x10\x01\x37\x05\x61\ +\x77\x06\x20\x34\x4d\x5a\x54\x7a\x4c\x1c\x8d\x7d\xc9\xfb\x81\xb9\ +\x2a\x22\x74\x72\x20\x7d\x42\xf2\x0f\x5b\x2c\x2b\x9e\x83\xa5\xe8\ +\x36\x8a\xa4\xc0\xb1\x03\xbe\xe2\x56\xd9\xde\xfa\x22\x7c\x98\xf0\ +\x91\x9d\x65\x1e\x5f\x54\x5f\xba\xce\xa6\x8c\xec\x5f\x12\x57\x54\ +\x06\x4d\x1b\x17\x40\x93\xb0\xc6\x27\xc7\x0b\xf6\x89\xd3\x60\x32\ +\x21\x05\x15\xcb\x02\xac\xc5\xe1\xa2\x8f\xf7\x4f\xb1\x24\x1b\x11\ +\x26\xc6\x90\x53\xee\x7d\x5a\xc9\xf5\x74\x59\x0e\x60\x30\xb2\x4f\ +\x05\x50\xca\xfe\x5e\x81\x26\x44\x9f\x6e\xc3\x9f\xb2\x63\x1f\x51\ +\xea\x32\xd5\xe0\x02\xda\x69\x6f\xaf\x06\x01\xe1\x63\xa5\x84\x18\ +\x5f\x91\xd9\xce\x05\xab\x32\xdc\xa7\x71\x32\x6d\x11\x0e\x8e\x01\ +\xa4\x1e\xee\x53\xc5\x83\xb3\xde\xa9\xb4\x31\xb0\x28\x78\x9d\x10\ +\xad\xf8\xfa\xa0\x30\xcf\xfe\xe4\xb1\x87\xce\x4b\x25\xa3\x20\x10\ +\x19\xc8\x0d\xb1\x8e\x73\x17\xf2\xc8\x72\x3e\xc4\x9e\xdc\x0e\x22\ +\x0b\xc3\x77\x7d\x91\x48\xee\xbe\x52\x4a\xac\x66\x00\xf8\xd2\x96\ +\xac\xd5\xb6\x5b\x83\xea\x9a\xfd\xf8\xda\x3f\x1a\xe5\x35\xda\x8b\ +\x8f\x3e\x0a\x73\x74\xac\xb3\xf4\xa9\xae\x1f\x3a\x59\xbe\xfa\xf6\ +\x37\xc6\x6b\xaf\xbd\x36\x3e\xf9\xa9\x9f\xd6\xbc\x5c\xe7\x60\x8f\ +\x9d\xd8\x30\xec\x65\x71\xb4\x9f\xa9\x0d\x36\xf8\xce\xc2\xb6\xdf\ +\x6d\xb0\xc1\xb3\x83\x6d\x41\x6d\x83\x0d\x36\xd8\xe0\x3b\x0a\x73\ +\x68\x2f\x10\xed\xc9\x8d\xb0\xd0\xfe\xd0\x1a\xfe\xe2\xe0\x7a\xdc\ +\x5c\x1c\x8c\xb7\x3e\xf7\x9b\xe3\xd1\x1f\xfc\xf6\xb8\x73\xf7\x78\ +\xdc\x3b\x3e\x96\x0b\x37\xb1\xb3\x88\xc6\xd3\x69\x37\x7e\x3a\x8d\ +\xc5\xb4\x73\xc9\x2f\xa5\x27\xb6\x6c\xb8\xe1\xc3\xc2\x5b\x2d\xbe\ +\x71\x23\x68\xfe\x82\x4f\x36\xbe\x11\xde\x0b\x6a\xc8\x5c\x05\x7c\ +\x45\x34\xb2\xad\xbe\x72\xf3\x24\xa3\x16\xc3\x98\x60\xf0\x54\xda\ +\x11\x13\x85\x93\xa3\x4c\x18\xb8\x79\xe3\x85\x33\x6c\x34\x79\x80\ +\x87\x5e\x2f\xa6\xf9\x15\x7b\xc2\x0a\x96\x1b\x3d\x9a\xa8\x30\xb1\ +\x92\xb9\xab\x20\x51\xc4\x64\x02\x84\xd4\x13\x62\xde\xe4\xa7\xbe\ +\x85\x8b\xb7\x1e\xac\xb6\xcc\xc5\x01\x2a\x0d\xb8\xbf\x4c\x28\x75\ +\xfb\x21\x95\x4d\xdb\x4a\xe9\x04\x01\x65\x08\x51\x26\x98\x8c\x18\ +\x65\xe6\x79\x98\x19\x7d\x89\x61\x56\xbe\x90\x18\x18\x5b\x6a\x3f\ +\x47\x75\x20\x70\x25\x65\x91\x93\x01\x22\x5c\x9f\xe2\x5c\x9e\x5b\ +\x48\x2f\x89\x2c\x1d\xb8\xea\xe5\xe9\x22\x6c\xb7\xa3\xfd\xdb\xd6\ +\xfa\x95\x4c\x44\xdf\x10\x68\x1e\xdc\xf5\x40\xc7\xc7\xed\x9b\xfa\ +\xee\x33\x1b\x84\x36\x34\x61\x65\xe9\x56\xa9\x64\xbd\xad\xba\xaf\ +\xcd\x4b\xc7\x13\x31\x12\x46\x27\x3e\x8b\x30\xc5\x97\x3d\x9a\x7e\ +\xfa\xcc\x4c\xe9\x3a\x26\x22\x43\x36\x88\x79\xda\xe2\xf6\x30\x7f\ +\x35\x88\x2b\xda\xfd\x18\x89\x00\x4a\x89\x58\x80\xca\xe9\x76\xcf\ +\x45\x29\x2c\x6d\x92\x3e\x88\xbc\xeb\x88\xad\xbe\xf6\x13\x21\x71\ +\xe4\xd0\x25\x53\xb2\xbd\x0c\xe1\x17\x59\x6c\x6c\xdb\x34\x01\x2c\ +\xd3\xfe\x6a\x39\x7c\x62\xe6\x97\xe3\x4b\x42\xe5\x6d\x5f\xf6\x2d\ +\xf7\xd3\x94\x22\xc9\xf2\x7f\x74\x91\x27\x35\xaf\x49\x3d\x98\xbb\ +\x5c\x8e\x41\xde\x36\xd1\xbb\xed\xc2\xcd\x07\x63\x6e\x63\x95\x1d\ +\x99\x9f\x10\x05\x6c\x6f\x22\x75\xa6\xe7\xda\x27\x8e\x13\x4d\x3a\ +\x19\x9d\x4a\x2f\x17\x89\xae\xe4\x8e\x89\x0e\xbe\xb0\xc9\x94\x95\ +\x9b\x21\x0b\xcc\x18\xa6\x62\x0b\x15\xff\xd8\xdb\xc6\x2c\x56\xb1\ +\xb1\x9d\x15\xd3\x33\xb4\x18\xce\x4b\xb9\xd9\x83\x0e\x6c\x95\x65\ +\x7d\x13\x87\x64\x1d\xe7\xc5\xb5\xbc\x68\x4a\x4d\x0c\x89\x2d\x07\ +\x17\x69\xf9\x92\xac\x72\xbb\x74\x8e\x54\xee\x1b\xa3\x00\x08\x7d\ +\x0c\x82\xa9\x37\xec\x0a\x72\x49\x59\xb7\x73\x01\xf6\x21\x0e\x83\ +\xf6\xf1\x93\x35\xd4\x8e\x1b\xf1\x55\x77\xf8\x23\x95\xcf\x79\xfb\ +\xe4\xf8\x66\xbc\xfa\xd5\xaf\xca\xef\x68\xbc\xf0\xa9\x4f\xf9\x3a\ +\x61\x3b\xe2\x3a\x48\x45\x02\x91\x4a\xde\x2c\x69\x83\x0d\xbe\x2d\ +\x30\xf7\xc1\x82\x35\xdd\xfb\xbd\x65\x75\x2c\x18\xa4\x60\xdf\xd6\ +\x87\xc5\xb1\xf3\xcb\xd7\xc7\xef\xfe\xfb\xff\xfb\x38\x3f\xfe\xfc\ +\xf8\xf0\x0f\x6a\x6c\xc5\x53\x98\x32\x3e\x60\x31\x4d\x07\x12\xc7\ +\x42\x5e\xed\xc8\x62\x5a\x9e\x4a\x63\x3c\xe5\x27\xd3\x8a\xae\xa8\ +\xb6\x35\xdd\x65\xbf\x1b\x50\x86\x53\xc6\x41\xfd\x59\x29\x44\x73\ +\xfc\x93\x58\x24\x63\x6c\xa5\xba\x31\x86\x62\x21\x70\x1c\xeb\x18\ +\x15\x7f\x7c\xc7\xf2\x23\xc7\xe1\x18\xc6\x96\x85\x36\x6e\xf6\x42\ +\x13\x95\x18\x89\x9d\xc5\x0c\xfa\x40\xac\x10\x75\xe5\x3c\xef\xc4\ +\xc7\x02\xbe\xca\x0c\x59\x0c\xf0\xf5\x37\x82\x95\xce\xa6\x4b\xa2\ +\xcb\x1c\x07\x4c\xc2\x13\x5e\x1f\xf1\x73\xb1\x02\x0b\x8c\x54\x07\ +\x6e\xee\xfb\x32\x84\xc8\xfe\xa8\x52\xd7\x36\x43\x16\x82\x2f\x72\ +\xda\x50\x36\x86\x18\x66\x4b\x04\xda\x2e\x8b\x38\x4a\xa2\x23\x87\ +\x43\x25\xde\xe5\xf1\xac\x50\xd7\xab\x13\xb6\x08\xe8\x2f\x79\xd0\ +\x67\x2c\xf8\xf1\xb1\x5d\xc7\x52\xaa\x42\xa1\x6f\xc3\x0d\xeb\xf8\ +\x00\x6e\xa4\x7d\xbb\x5d\x01\x65\x16\x14\x91\x92\x1b\x10\x4a\x22\ +\xd4\x76\xee\xab\x02\x5f\x42\x1a\x62\xe6\x8c\x7d\x6e\xaa\x44\xd0\ +\x37\xcd\xd3\x2d\xd0\xec\x2f\xd3\x46\xb0\x2e\xb7\xe9\x7d\x0c\xd8\ +\xc7\x31\xcd\xfa\x7a\xd3\x6d\x77\x7b\x5b\x67\x59\xf5\xa9\xd8\x75\ +\x0c\x00\x1b\xd7\xdf\x76\xb1\xc1\x6a\xd7\x5a\x7c\xeb\xab\xe2\x73\ +\x7b\xb2\x6d\x65\xd1\x7e\x76\x61\x5b\xc2\x3a\x5b\x95\x28\x5f\x16\ +\x55\x49\xec\x88\xed\x97\x44\x5c\x3b\xab\xfe\xdd\x27\x15\xc7\x7c\ +\xc9\x22\x98\x40\xbd\xb0\x8f\x4f\x5b\x2f\xb0\x48\x22\xcd\xb1\x11\ +\x1a\xd4\xe1\x72\xbc\xf6\xb9\x21\xd0\xc7\x32\x4d\xb6\xb1\xb7\x67\ +\xeb\xe1\x89\x05\x19\xba\x3f\xb9\xf2\x03\x89\xd9\xb4\xc5\x2e\x10\ +\xab\x88\x9c\xe1\x0b\xe2\xc3\x3c\xce\x62\x64\x9d\x62\x67\x9b\x64\ +\x2b\x1c\xd9\x6e\xe2\x1c\x85\x07\x78\x91\xf7\x1c\x10\xec\x33\x55\ +\xcb\xe6\xb9\xb1\x46\x2c\xa6\x9b\x2f\xe8\x98\xc9\xcc\xdb\xce\xac\ +\x1a\x05\x8d\x2f\xa6\xe5\x17\xae\x01\xae\x2d\x04\x45\x38\x5e\xe9\ +\x0c\xa0\xda\x29\x39\xc7\xf1\x54\xf2\xd1\x91\xce\xbb\x9a\xcf\xa6\ +\x30\x90\xe2\xc8\xe4\xc8\x3f\x2a\xbd\x19\x4c\xd3\xbf\xf1\xfa\x2b\ +\xe3\xf5\xd7\xde\x1a\x3f\xf9\xe9\x9f\xb3\xcf\xe1\xc1\xa9\x83\xf9\ +\x3f\xdc\x0a\x56\xa5\x6f\xb0\xc1\x77\x0c\xb6\xbd\x6e\x83\x0d\x9e\ +\x1d\x1c\xe8\xc2\xe0\xcb\xe8\x06\x1b\x6c\xf0\xfd\x07\x1f\x98\x83\ +\x9f\x8a\x78\xc0\x5a\xb8\xe1\x7b\xf8\xec\xb4\xdf\x8c\x34\x6f\x69\ +\x50\x06\xd1\xbb\x0d\x6c\xce\xbe\x76\xe2\x66\xce\xcd\xb8\xf8\xda\ +\x1f\x8d\x37\x7f\xeb\x97\xc7\xc1\xe5\xdb\xe3\x94\xd7\x74\xf1\x64\ +\x58\xdd\x81\xf0\x0d\x9d\xeb\x2c\xa8\xf1\x2b\x6a\x5e\x4b\xe4\x27\ +\xd1\xae\xf3\x84\x9a\x5f\x09\x89\x4c\x71\xfc\xd4\x5a\xdd\x40\xc5\ +\x26\x4f\xb5\x29\x8e\x12\x1f\x4f\x28\xeb\x0e\x01\x57\x06\x4f\xb4\ +\x55\x87\x9e\x5c\x18\xd7\xe2\x58\xe6\x2d\xfc\xc7\x88\x26\x5a\x4c\ +\x20\x90\xf5\x04\x88\x1b\xae\xd8\xb3\x48\xd6\x13\x1c\x68\x7d\x3c\ +\xf1\x45\x4d\xfc\x2e\x48\xe0\x57\xbe\xd4\xdd\x0f\x2f\xb2\x28\xb9\ +\x1d\xb5\x10\xe8\x7a\x8b\x76\x7b\x6f\xf8\x95\x78\xcb\x55\x73\xf7\ +\x41\x64\xf0\xd8\x10\xcb\x72\xa6\xf1\xb6\xa5\xc0\x3d\x8c\x9c\xe2\ +\x95\xf5\x62\x09\xfd\x90\xbe\x35\x65\x6c\x30\xaf\x8a\x37\x2f\x08\ +\x85\xad\x89\x05\x68\x5f\xb2\xe8\x3c\x8f\x4b\xbb\x77\x27\x6a\xf4\ +\x4f\xc9\x4a\x6e\x64\x68\x1a\x9d\xbf\xca\xc8\x4d\x05\x20\xb5\x8d\ +\xda\x8e\xa2\x3a\x9f\x76\x2b\x73\x33\x6d\x0b\x69\xd3\xb5\x01\xc2\ +\xe2\xa7\x18\x99\x90\x6c\xd9\x7e\x13\xd6\xfa\x35\x4c\xdb\xa2\xd5\ +\xff\x99\xc8\x53\x18\x90\x28\x29\x3a\x7d\x6e\x98\xfd\xdc\x99\x12\ +\x7d\x8e\xbc\x65\xc5\x67\x3b\x6b\x5f\xd0\x76\xea\x7d\x82\x64\xda\ +\x4f\x60\x62\xc7\xb6\xc5\x26\xbe\x29\xd3\x81\x5c\x03\x53\x9a\xf4\ +\xa2\xf1\xee\x6a\x8b\x80\x9f\xf4\xe9\x6d\xe6\x5c\xd8\x9d\x25\x10\ +\xa2\x8b\x12\x71\x05\x6c\x87\x22\x17\x28\xab\x72\x6d\x20\xd4\x9e\ +\x68\x05\x8b\x06\xdf\xd9\xfe\x42\x73\xf3\x14\xdf\xf4\xac\x1f\x5e\ +\xf8\x14\x2c\x6d\x5e\x20\x12\xd5\x6d\xc7\xa5\x98\xc5\x35\xbe\xfa\ +\x2e\xbe\x28\x39\x9e\xc1\x48\x77\x94\x02\x31\x3b\x3c\xb0\x2f\x53\ +\x3f\x99\x8f\x3c\x7d\xab\xaf\x85\x4d\xa7\x8c\x96\xd9\x86\x8d\x54\ +\x3a\xdf\x18\xe1\x3c\x64\x19\xf1\xc0\xf8\x88\x96\x7c\x62\x7e\x41\ +\x8c\xb7\x65\x47\x59\xb4\xb7\x1d\x3a\x62\x82\xe1\x17\xff\xc8\x5b\ +\xc7\x0d\x6a\xe8\x05\x83\xf2\xba\x48\x11\x9d\x54\x1f\x78\xcb\x64\ +\xc0\xc7\x72\xd3\x54\xa1\x78\x6c\x9a\xb7\x4d\x21\xce\xb3\xc8\x57\ +\xe0\xed\x41\x3f\x5b\x07\xb6\x14\x85\xdd\xb2\xbd\xbc\x73\x07\xe6\ +\x36\x17\x26\x3e\x76\x18\x02\x94\xe1\xe6\xa5\x6e\xe0\xe3\x23\x6e\ +\xce\xab\x27\xb9\x21\x74\x74\xe4\x3f\xdd\x3f\x3c\x3d\x91\x9c\x1b\ +\xf7\x07\x83\x4b\x0c\x97\x86\x0b\x65\x6f\xbf\xf3\xce\x78\xeb\xe1\ +\xc9\xf8\x91\xff\xc1\xdf\x1d\x2f\xfd\xe4\x4f\x8f\xc1\xab\x81\x31\ +\x70\x1d\xab\x80\x77\x01\x0e\xa7\xd4\xff\x3b\x0c\xb7\x55\x8b\x7a\ +\x3c\xad\x3e\x6b\xf9\xbb\x37\x69\x81\x8e\xb7\xc1\xb3\x81\xf7\xb3\ +\x9f\xac\xfb\xfb\x29\xf6\x39\x04\xa4\xec\x83\x00\x9a\xaf\xae\x39\ +\xdc\xac\x65\x31\x4c\xc3\x9f\xf1\x1b\xbf\xf9\x0f\xc6\x3b\x17\xff\ +\x7a\x7c\xec\x93\xa7\xe3\xce\x5d\xfe\x4b\x4d\x47\x1b\xc7\x8a\x3e\ +\x57\xbc\xf6\x50\xe3\xaa\xf3\x33\x9e\x4e\xd3\xd8\x0a\xbe\xae\x3b\ +\xfc\x87\x5a\xfe\x83\x4a\x49\xb1\xfd\xa1\x8c\x2a\xca\x75\xac\x32\ +\x0d\xd4\xc7\x48\x84\xab\x94\x7a\x99\xa7\x3c\x1f\x24\xe8\x0a\xfb\ +\x02\x84\x16\x65\x16\xc7\x48\x3e\xc7\xd4\x02\x5b\x27\x0e\x6e\xa4\ +\xb1\xe7\x26\x7e\xf3\x81\xd4\x2b\xf5\xe3\x6a\x9c\xb1\xce\xcd\x38\ +\x3a\x3e\x55\x3f\x74\xbb\x34\x7e\x92\x9c\x57\x5b\x72\xd1\xbc\x92\ +\x3e\xd7\x50\x5e\x77\xc9\xd8\x30\x34\x9f\xa6\x89\xc5\x19\xc8\x7d\ +\x42\x53\xc1\x29\x51\xbc\xce\x5b\x65\x2f\x64\xbd\x6d\xd0\x36\x26\ +\x97\x5d\x7c\xed\x68\x45\x5d\x35\xed\x4f\x9b\x90\xd8\x16\x70\x5c\ +\x61\x89\xa3\x59\x32\xf7\xe5\x62\x29\xa0\x0f\x9b\x5b\xb0\xe3\xcf\ +\x93\x12\x18\x32\x74\x5a\x24\x59\x9d\x7b\x7d\x1d\xb2\x7d\xc4\xc6\ +\x0b\xda\x91\x35\xec\xb1\x82\x18\x3d\x29\xdf\x83\xfd\xd8\x22\xf6\ +\x7d\x7c\xad\xb8\xad\x4c\xd5\x3f\xdb\x5e\xf9\xbe\xae\xb1\x5f\xd7\ +\xae\xa4\x0e\x67\x1f\x66\x78\xcc\xa2\x32\xff\xad\x76\xa1\xc4\xff\ +\x01\xfa\x07\x16\xd2\x61\xeb\x1f\xf0\x4c\x90\xac\x59\x85\xe0\x8d\ +\x82\xcb\x7f\x90\x51\x27\x68\xe2\x27\xef\xc3\x2e\xfb\x6b\xf5\x39\ +\xbc\x71\x05\x92\x8e\x1e\x47\x54\xe6\xb6\x34\x67\x93\x25\xa6\x69\ +\x62\x59\xbe\x72\x10\x64\x9b\x21\x2a\x61\xfb\x56\x25\xda\x65\xdd\ +\x71\x51\x35\x1f\x9c\xfd\x62\xba\x4d\x88\x96\xfd\x2e\x7d\xd0\x1e\ +\x64\x8d\x9d\x59\x87\x36\x50\x7b\xce\xa4\xdc\x47\x76\x8e\x6d\x64\ +\x71\x4f\x99\x8c\x94\xdd\x23\x16\x58\x64\xbd\x29\x89\x44\xb9\x9f\ +\x15\x0f\xf9\x62\x60\x0b\xcb\x7c\xbe\x80\x76\x6b\x3c\x6e\x39\x62\ +\x9c\x5d\x36\x80\xb7\xc9\xe4\x15\x33\x2e\x33\xa6\x5c\x8c\x3d\x3e\ +\x40\x8f\xac\xc6\x04\xd8\xfa\xec\x22\x21\xe7\x51\x74\xc4\x0b\xbd\ +\xc8\x13\x23\x32\x3e\x59\x20\x0b\x1f\x3d\x85\x2e\xba\xd8\x2d\x3e\ +\x40\xf2\xf4\x59\xf6\x13\x6c\xbc\x25\xac\x31\x54\x3b\x79\x9a\xd8\ +\x3f\xc4\xb2\xbe\xf6\x87\xee\x2b\x25\x28\xcb\xdb\xde\x92\x25\x45\ +\x26\xb0\x0f\x75\x30\x0a\x58\x26\x24\x3e\xf5\xd3\x9c\x57\xf8\xf8\ +\xe4\x64\x3c\x77\xff\xbe\x71\xda\x14\x07\xcc\xb9\xce\xf0\xfa\xc7\ +\xaf\xbf\xfc\x70\x7c\xfd\x4b\x07\xe3\xa7\x3e\xfd\x9f\x8c\xbf\xf1\ +\x8b\xff\x6b\x1d\x5f\x8c\x25\x4f\x30\xf0\xfe\xc0\x32\x65\x45\x77\ +\xbe\xc1\x06\xdf\x29\xd8\xf6\xb8\x0d\x36\x78\x76\xb0\x3d\xa1\xb6\ +\xc1\x06\x1b\x7c\xf7\x81\x2b\x7b\xc6\xb1\xc1\xc0\x9f\x82\xab\x7d\ +\x9a\xc3\x60\x3d\x14\x79\xa7\xa7\x81\x27\x0b\x9e\xf8\x0d\x4d\x70\ +\xc5\x3f\x78\x6d\x3c\xfc\xbd\x7f\x33\x6e\x1e\xbf\x36\x4e\x8e\x0e\ +\x79\x10\xcc\x93\x59\xee\x40\xe4\x55\x78\x2c\x24\xb1\x68\x76\xc5\ +\x1f\x25\x68\xc2\x27\x8c\x0c\x1b\x26\xc7\x4c\x02\x99\x40\xf3\xaa\ +\x22\xd1\x9e\x1b\xc8\x97\x5f\x58\x73\xc7\xd4\x8b\x10\x88\xb0\xc3\ +\x89\xc9\x34\x61\x7d\x2f\x82\x3a\x6b\xc0\xaf\xea\xf8\x17\x8a\xc7\ +\x47\x4a\xc7\xbe\x99\xca\xd3\x68\xc7\xa2\x0f\x54\x21\x5e\x03\x46\ +\xe2\x1d\xf3\x79\x1a\x4d\x3c\xb6\xfc\x57\x4f\xe9\xf2\x74\x1a\x95\ +\x97\x9e\x1b\x40\x7d\xb3\x1b\x9a\xf8\x9e\x8c\x64\xba\xe4\xd6\xbb\ +\x9e\x54\x24\x52\xf3\xae\x1b\xb4\x92\xda\xe6\x57\x1a\x72\xd7\x97\ +\x06\x88\xf7\x9d\x19\xb0\x6f\xf8\x14\xa6\x9d\xd0\xf6\x2d\x6c\x1b\ +\xd9\xe2\xdb\xf1\x5c\x46\x52\x16\xdb\x16\x59\xfb\x99\x57\xea\x7e\ +\x4a\x39\xb1\x61\x32\xb7\xd0\xb6\x0a\xad\xca\x89\x42\xd0\xd9\x44\ +\x69\x67\x18\xe8\xf8\x2c\x32\xe2\xb3\x19\x12\xd3\x5a\xeb\x3d\x71\ +\xb4\xdd\x42\xa3\x35\xad\xaa\x1a\xa0\x91\x5a\x86\x10\x23\xea\x03\ +\xaa\x3a\x1a\xc7\x66\xf6\x79\xd9\x99\x06\x9b\x17\xaa\xf6\x67\x0d\ +\xac\xe5\x9d\x52\x0f\x97\xb5\x23\xaf\x84\xd4\x34\x76\xe9\xfb\x85\ +\x8f\x2e\xfb\xa5\x4d\x85\xaa\x7e\xa2\xd9\x1b\x6a\x9e\x0a\x63\x5e\ +\x33\x57\xbe\xde\x67\x9e\x9c\x80\x8b\x57\x5d\xb9\x19\xd4\x7d\x83\ +\xdc\x37\x07\xdd\x0d\x6c\x33\x0b\x94\x49\xe0\xea\xb0\x9f\x80\x25\ +\x53\x5f\x51\xbe\x6d\x57\xfb\x94\x43\x89\xce\xbe\x61\x27\x61\x6c\ +\xc0\x5d\x7f\x8c\xaa\x5c\x0a\x5e\xdb\x76\x82\xad\x72\x6d\x8b\x9d\ +\xe5\xfb\x76\xd2\xd9\x7f\x2f\x6e\xe1\xf4\x9f\x83\x55\x79\xd8\x95\ +\x6d\x85\xf2\xd1\x64\xbd\xe4\x25\x8b\x3d\xc6\xd0\xd1\x4f\xbf\xa2\ +\xdd\x76\x13\xb1\x75\x2c\xa5\x69\x03\x88\xc6\xee\x09\x3d\x75\x46\ +\x27\xa5\xb7\x87\xe5\xa9\xa7\x75\x40\x0a\xb0\x5d\xe2\x95\xbc\xca\ +\x75\xff\xa0\x92\x1d\xdc\x12\x37\xa4\xdb\xde\x50\xe4\x4a\xb2\x00\ +\x42\xed\x28\xcb\xd3\x09\xc2\xa6\x7b\x9f\xa9\xf3\xcd\x7a\xff\x51\ +\xc6\xbd\x9e\x70\x2b\xb9\x72\x30\x21\xbd\xcf\x95\xcc\x89\x6f\xef\ +\x87\xad\x33\x0e\xdf\x09\x64\x95\xea\xd4\xf6\xf9\x50\xad\xb6\x49\ +\x12\x63\x79\x48\xce\xc2\xc8\x45\x1b\xb0\xa5\x26\xdd\x6a\x61\x29\ +\x9b\x5b\xcc\x24\x69\x61\x41\x62\x20\x74\xcb\xc5\x27\x6e\x1f\x8f\ +\xbe\x29\x94\x6f\x74\x3e\xd6\x74\x1e\xbf\x3e\x1b\x6f\x7d\xed\x95\ +\x71\xef\xa5\x8f\x8c\x93\x17\x5e\x8a\x01\xd0\x78\x21\x76\x60\xaf\ +\xf8\xa7\x99\x7d\xfb\x60\xbf\x3c\xf8\xae\xd4\x6d\x75\x41\xf6\xcd\ +\xd4\xf1\x9b\xb1\xdd\xe0\xfd\xc1\xfb\xe9\x53\x6c\xf6\xb7\x23\x78\ +\xed\x2b\x9a\x7d\x3c\x86\x4a\x1e\x6b\xe8\x9c\x72\x21\xac\xf1\xc9\ +\xef\x7f\xe9\xd7\xc6\x97\xbf\xfe\x8f\xc6\x47\x3f\x79\x3d\x3e\xf4\ +\x02\xaf\x48\xe4\x26\xaf\xbe\x4a\x2c\xb8\xf1\xf4\xff\xf9\xd9\xf9\ +\xb8\xe4\x7f\xd3\x6e\x78\xea\x9f\xeb\x80\x8e\x33\x9d\xab\xf3\xa3\ +\x8d\x84\xe5\xd8\xf1\x87\x22\x28\x17\xf0\xf1\x19\xa8\xd3\x4f\xd5\ +\x05\x42\xd8\x83\x2a\x24\x7c\x72\x73\x39\xf5\xe3\x48\xd7\x58\x89\ +\xa7\xd0\x78\x75\xe3\xe1\x89\x12\x75\x53\xf2\x93\x67\xbc\xda\x91\ +\xd7\x3c\x16\x3e\xd0\xb8\x4b\xb2\x3c\x95\x26\x7b\x27\x7c\x15\xc3\ +\x29\x37\x7f\x75\x64\xcf\xf2\x44\xb8\x1a\x27\x27\xa7\x26\xe1\x72\ +\x4a\x55\xdb\xc4\xf4\xf9\x95\xdc\xe7\x5f\x43\xa8\x6e\x0b\xed\xe3\ +\x0c\x8f\xa9\xcd\xc1\x2e\x27\x34\xa7\xf2\x3c\x5d\x83\x9e\xc5\x19\ +\x74\xd8\x57\x2a\x39\xd8\x01\xb0\xc5\x86\x54\x74\xaa\xe1\x4c\x79\ +\xfc\x61\xeb\xcc\xe5\x8f\xcd\xad\x57\x5b\x1d\x2f\x4f\xeb\xd0\xa7\ +\x59\xc0\x88\x3f\x10\x3b\x9f\xdc\x05\xc4\x87\x4e\x5c\x3e\x80\x7d\ +\x5d\x76\xe4\x2e\xa0\xe9\xe6\x85\xbb\x3e\xf1\xbb\x25\x11\x83\xfe\ +\x06\x5b\x56\x2a\x57\x27\x7e\xed\xdb\xb1\x66\x72\x1b\x0b\x96\xea\ +\x17\x60\x13\x40\x05\x97\x26\xe2\xd7\x92\x05\x56\xbb\xa1\xba\x55\ +\x25\x7a\x1f\x63\x6f\x50\x26\x25\xfb\x46\xae\x37\x05\xb2\xf7\x38\ +\x47\x1f\xd7\x8f\xaf\x53\x6c\xc8\x4d\xe3\xa7\xf2\xb2\xcd\xbb\x90\ +\xd8\x00\x4b\xb1\xfb\xf1\x8b\x76\xc5\x52\x8a\x87\x05\x94\x8b\xae\ +\x52\xf7\x49\xa9\x04\xd4\x78\x91\x99\x34\x6a\xcb\xd2\x2a\xb3\xaa\ +\xca\xa4\x4b\xe2\xaf\xb2\x56\x8e\x91\x35\x27\xe8\x3a\x0a\xad\xfb\ +\xcc\x20\x9d\x7b\x64\xc6\x12\xac\xec\x28\x39\xbd\x25\xe1\xca\x77\ +\xc6\x16\x44\xdc\x7a\x59\x0a\xbb\xe6\x18\xb5\x0c\xd2\x4e\xbd\x97\ +\x9a\x29\x39\x79\xa7\x2e\x4d\xb4\x02\x25\x16\x40\x3d\x32\xb6\xba\ +\xbe\xce\x71\x90\x73\x53\xfb\x05\xc2\x13\x93\xbc\xe4\x6d\x42\xbc\ +\x95\x2c\xc5\x76\x59\x66\xac\x32\x82\x77\x0a\xcd\x76\xce\xf8\x21\ +\xb4\xc5\x7c\x32\x58\x0f\xed\xfd\xaf\xb0\x3e\x96\xb7\xed\xa4\x57\ +\xf6\x6a\x58\x49\x38\x3d\x5a\x0f\xd3\x3e\xde\x7f\xfd\xc9\xb1\x6c\ +\x3b\xc7\x5a\x38\x7f\xb0\x83\x35\xa7\x36\x16\xdf\x67\x03\x20\x7e\ +\x36\x2a\xdb\xe0\xf6\x87\xa2\xd6\xf4\x75\xd4\xcc\x33\xae\xfd\x94\ +\x9a\xe7\xbd\x48\xa9\x30\xe3\x3b\xea\xad\x79\xf2\xe9\x1d\xe6\xc1\ +\xd7\xe3\x0f\xff\xe0\x0f\xc7\xdd\xd3\x17\xc7\xc7\x7f\xe0\x47\xb5\ +\x71\x34\xd9\xd0\xf9\x3c\x11\x7b\x6b\x40\x37\xb5\xc1\x06\xdf\x7e\ +\xd8\xf6\xb6\x0d\x36\x78\x76\xb0\x2d\xa8\x6d\xb0\xc1\x06\x1f\x3c\ +\xe0\x4a\x9f\x19\xc2\xf7\x28\xf4\x90\x7b\x99\x9c\x74\x73\x6e\x1b\ +\xc4\xac\x75\x4c\xda\x98\x6c\x78\x11\xe7\xfc\xe1\x78\xf8\xb9\xdf\ +\x18\xe7\xaf\x7e\xd1\x13\x87\x93\x13\x0d\xdc\x65\x80\x9d\x27\xb3\ +\xbe\xe9\x73\x39\xae\x2f\xf8\xb5\xf5\x85\x79\x3f\xa9\xc3\x84\xd8\ +\x3a\xd1\x4a\xbc\xae\xc8\x37\xec\x55\x12\x71\xaf\x2e\x35\xa0\xc7\ +\xe6\xaa\xa7\x5f\xd8\xab\xe0\xaa\xf6\x9c\x68\x31\x89\xe0\x26\x13\ +\x4f\x66\x70\x43\xe7\x98\x45\x31\x4d\x2a\xc4\x1f\x15\xcf\xeb\x1e\ +\x59\x6c\x73\xf2\xc4\x02\x1b\xec\xe1\xa3\x43\xa6\x4c\xf1\x24\xf3\ +\xac\x28\xf6\xcc\x66\x7a\x62\xe3\x9e\x82\x70\xd9\x82\x9e\xbd\x32\ +\x33\x71\x5d\xb9\x99\xa5\xda\xaa\x1d\x4c\x12\xf3\x34\x1b\x36\xa4\ +\xd2\x41\xaf\xe4\xb9\x49\x8c\xcf\x82\xa7\x1d\x3e\x22\x45\x84\x9f\ +\x7d\xb0\x24\x50\x2f\x62\xb8\x2e\x76\x8d\xdd\x5c\xd4\xc0\xa7\x62\ +\xc4\x16\xb6\xca\x69\x30\x0f\x0e\x0d\xd0\xac\x08\x40\x15\xab\x58\ +\x78\xba\x01\x9b\x98\xc5\x7f\xc6\x27\x03\xbb\x3d\xa5\x6b\x99\xb1\ +\x64\xcd\xa3\x5c\x03\xbc\xeb\x2c\x30\xa6\x5f\x84\x4a\xe4\x76\xe9\ +\xe3\xb2\xed\x4b\x5f\xa3\x09\x9d\x70\x56\x56\x72\xa7\x94\x68\x91\ +\xa7\x5e\x44\xc2\x3c\xfa\xd8\xb2\xad\x22\x8b\x3d\xdb\x01\x39\xa2\ +\x96\xed\xe2\xfd\x34\xdb\x6d\x9c\x5f\x55\x4f\x90\x3c\xcd\x43\xc7\ +\xd1\x67\x46\xfb\x74\xf9\x89\x8e\x2c\x29\x7c\x43\xc9\x41\x4d\x13\ +\x5a\xbe\x14\xeb\xc0\x10\x56\x05\xaf\xb7\x79\xb6\xc1\x92\xba\x0f\ +\xc1\xb1\x51\x52\x40\xba\x61\xda\x11\xb3\xe3\x36\x6d\x3e\xfd\x34\ +\xe3\x4b\x96\x58\xc5\x1b\xab\x44\xe3\xbd\x54\x85\xa5\x7f\x2a\x89\ +\xde\xa9\x9f\xcb\x28\x9d\xe5\xed\x16\xb9\x99\xc6\x4a\x89\x83\xa8\ +\xe9\xe8\xc1\xc4\x9d\x32\xe2\xe2\xa3\x36\xba\xfd\xfa\x64\x11\x16\ +\x48\x3e\xfb\x03\x9d\x91\x0d\x0d\x5d\xc7\xb9\x4d\xc4\xc6\xc6\x9c\ +\x20\xe5\xdd\xea\x07\xd8\x1e\x6d\x9d\x79\x39\x99\xa9\xc0\xe2\x10\ +\xf8\x7c\x53\x64\xd1\xf1\xcd\xf9\xa7\x94\xc2\xa6\xc8\xa0\x51\x95\ +\x3c\x36\x91\x21\x9c\xe7\xad\x46\xb9\xf3\xe3\x64\x5d\x2d\xa0\x19\ +\x4a\x17\x3e\x36\xe1\x41\xa1\x7d\xf3\x4c\x5f\x67\xae\x3b\x37\xc7\ +\x1a\xa2\x8b\xda\x79\x41\xf5\x49\xe5\x6e\x9b\x0d\x45\x70\x1c\xcc\ +\x00\xf0\x24\x91\xed\x2e\x1a\xdb\xee\x43\xea\x91\x45\x3f\x4e\xd1\ +\x60\x5e\xeb\x7b\x3c\xae\xce\xdf\x1e\x8f\x5e\x7d\x6b\x3c\xff\x43\ +\x3f\xac\x73\xfb\xbd\x71\x70\x4c\x80\x0e\x02\xac\xe9\xc0\x93\x92\ +\xef\x10\xec\x57\x6d\x1f\x5a\xd7\x76\x6b\x7e\x83\xef\x1e\xfc\x49\ +\xfb\x1f\xbf\xec\xbe\x2b\xd8\x13\x1e\xf0\xba\xeb\x23\x9d\xa2\x0e\ +\xc6\x2b\x2f\x7f\x6e\x7c\xee\x73\xff\x70\xbc\xf4\xc9\x47\xe3\x43\ +\x1f\xba\x23\xb9\xec\xea\xb0\xe5\x84\x75\x75\x71\x31\xce\x2f\xce\ +\xc7\xc5\x85\xc6\x57\x83\x5f\x5b\x64\x11\xed\x4a\xd7\x1a\x3f\x11\ +\xad\x63\xc8\x63\x2d\x3e\x5d\x44\xe3\x6e\xc3\xe4\x1d\x34\x62\x8e\ +\x2d\x28\xb0\x91\xc6\x48\x7e\xe2\x2c\xc7\x59\x3f\x7d\x36\x58\x38\ +\xf3\x82\x9a\xc6\x59\x5e\x38\xab\x05\x34\x2f\xb0\x9d\x5a\xc7\x7f\ +\xbd\xf9\xc6\xac\xed\xe3\xe7\x58\x1c\xbb\xd5\x98\x79\x9e\x81\x57\ +\x45\x97\xaa\x72\x1e\x3c\x54\x9b\x34\x66\xe4\x07\x58\x5c\x97\x7c\ +\x2d\x76\x8b\xfc\xb1\x95\x50\xce\xed\xed\x95\x8f\x9f\x40\xc3\xb6\ +\x1a\xcf\x69\x36\xf6\x68\xf1\x81\x0b\xe6\xc1\xa8\x5e\x20\x33\xb6\ +\x3c\x3c\x60\x1a\x9b\x6b\xea\x88\x04\x5d\xae\x7f\x16\x94\xed\xce\ +\xe2\x94\x00\x35\xbe\xb6\x37\x1d\x19\x30\x79\x07\xc6\x3f\x38\x06\ +\xe5\xd3\x15\x10\xd8\xbe\x28\x8b\x31\x99\xb1\x2b\xd5\x75\x6c\xa7\ +\x0e\x12\xd0\xe2\xf6\x9f\xae\x96\x47\x10\x6d\x41\x91\xa0\x96\xae\ +\xb4\x13\x56\x55\x5b\x60\xca\x96\xf2\x53\x16\xdb\x12\x4c\x3d\xa7\ +\x54\x79\xf3\x02\x08\x89\x3d\xbe\x2b\x3b\x47\x29\x7a\xdd\x26\xef\ +\xd5\x08\xbd\x2f\xe0\x24\xda\x81\xa0\x63\x97\xf6\x95\x4f\xc9\xac\ +\x9f\x81\x43\x2e\xed\x68\x3f\xa2\x9b\x52\x92\x8c\x7d\x54\x24\x43\ +\xa2\x52\x18\xac\x25\x9c\x65\xaa\xa3\xdd\x55\x1f\x70\xd9\x51\x73\ +\xeb\xa3\xb4\x38\xf5\xda\x4d\x6e\xa1\x09\xec\x28\x0f\x49\xfb\x84\ +\x4e\x9c\xa4\x15\xb9\xc4\x6b\x02\x7f\x10\x14\x32\x1d\x43\x56\xb9\ +\xaf\x9e\x04\x64\x91\xcb\xcb\x44\xda\x4b\x8c\xb6\x37\x26\x53\xbd\ +\xd2\x0f\xa9\x27\x6f\xed\x88\x65\x21\x57\x12\x48\xac\x94\x18\xdb\ +\x7c\x90\x29\x8f\x28\x99\x3b\xd1\x5f\xd1\x9c\x5f\x16\x70\xcb\x6d\ +\x8e\x71\x7a\xc2\x9c\x84\xd5\xa5\xa5\x63\x14\x80\x6d\x84\x3e\x57\ +\x59\x5e\xb4\x83\x80\xf7\x78\x0c\x98\x07\x96\xcc\x1f\xab\xb2\xd8\ +\x87\xac\x17\x74\x77\x6d\x82\x45\x4c\xb9\xe9\x8c\x46\x08\x1a\x5c\ +\xb1\xa3\xd3\xc7\x34\x2c\x36\x3e\x03\x0a\x61\x03\x87\xac\xa5\x65\ +\x67\x01\x04\x49\x6d\xb7\xa0\x60\xea\x57\x62\x11\xf4\x4b\xf3\xb8\ +\x69\xb3\xfb\xbc\x70\xec\x27\xfd\xa9\xc3\xa2\x64\x1d\xf1\xf8\xe4\ +\x60\x1c\x1f\xeb\x7c\xa9\x6b\xca\x57\xbe\xf6\xc5\xf1\xe2\x73\x1f\ +\x1b\x2f\xbd\xf8\xc3\x32\xc8\xd6\xf3\xf6\x52\xea\xfa\x85\xde\x60\ +\x83\x6f\x3f\x6c\xfb\xd9\x06\x1b\x3c\x3b\xd8\x16\xd4\x36\xd8\x60\ +\x83\x0f\x26\x64\x9c\xf9\x3d\x0a\xcb\xe0\x78\x19\x32\x07\x1a\x67\ +\xea\x12\xdc\x60\x3b\x4f\xd0\xae\xc7\xc1\xe5\xf5\x78\xf0\xc5\xdf\ +\x1a\x8f\xff\xe8\x77\xc6\x91\xf8\x93\x93\xa3\x71\x5c\x77\x45\x3d\ +\x91\xf3\xe2\x19\xaf\x79\xe4\xbf\xd3\x2e\xe5\xc3\x6b\x1d\x35\x59\ +\xe5\xa9\x33\x26\xad\xbe\xf1\xc3\xab\x7c\x2e\x54\x88\xec\xfd\xe5\ +\xc9\xb4\x2c\xb4\x31\x13\xf0\xff\x1b\xd4\xac\xc0\x13\x46\x91\xbe\ +\xf1\xe0\x09\x06\xb5\xc9\x24\xe1\xe8\xf8\xd8\xef\x85\x87\x65\x71\ +\xcc\x4f\xaa\xf1\x64\x1a\x93\x15\x16\xd0\x58\x58\x63\x72\x83\x8e\ +\x45\xb5\x5e\x48\x9b\x8b\x6d\x59\x50\x33\xcd\xa4\x8e\x04\x52\x19\ +\xfe\xf5\xa2\x1b\x45\x99\x21\xdd\x29\xcc\x52\x98\x5e\xf2\x5d\x2d\ +\x92\x91\xfc\x64\x9a\xeb\xdc\x72\x30\x37\x60\xd4\x6f\x7e\x62\x4d\ +\xb8\xf8\xd6\xfb\x46\x0f\xbe\xe6\xb1\x51\x52\x41\xe4\x6e\x3f\xfd\ +\x46\x39\xfa\x5a\x8f\x06\x1b\x93\xf8\x46\x34\x63\x9a\x69\x5b\x90\ +\x95\xc1\x31\x8c\xaa\x53\xdb\x4f\x0c\xb9\x27\x73\xca\xfe\xb2\x23\ +\x37\xa6\xdd\x50\x16\x84\x6f\xda\x80\x0d\xed\x46\x15\xfb\xa4\xe8\ +\x88\x49\x9f\x59\x50\x32\xeb\x05\xd6\x39\x9e\x09\x69\xca\xa6\x68\ +\xeb\x2d\xb3\x30\xb8\xf4\x4f\xe2\x25\xed\xf4\x89\x12\xf5\x85\x5c\ +\xcb\x82\x21\x43\x77\x1d\x5b\x4f\xb2\x0c\xb1\x71\x27\x58\xe9\xec\ +\xbc\x5f\x76\xf3\xee\x30\xc7\x0b\x20\xb3\xb2\x68\x90\xea\x65\x92\ +\xac\x64\xeb\x7e\xb2\xbd\x90\x64\x73\xdf\xb1\xbc\x74\xc5\x5b\x27\ +\x22\x4f\x8d\xae\x53\xdb\xee\x25\xdb\xa5\x7e\x89\xdb\xf2\xc2\x64\ +\x4f\x8d\xd3\x7c\xed\x8b\x4f\x94\xf9\x94\xb4\x1f\x73\xb6\x73\x37\ +\x2d\x7d\xba\x9f\x94\xed\x27\x97\xcd\x3e\x94\x7e\xdc\x01\xf4\x76\ +\x2c\xda\x64\xe1\xd6\x95\x2c\xfb\x6d\xe8\x96\x05\xe0\xb5\x07\x96\ +\x4c\xa7\x8d\x05\xec\xe0\xbd\xb6\xf6\x51\x01\x06\x22\x2c\xe5\xfc\ +\xd2\x26\x9c\x5f\x90\x9b\x46\x59\x34\x38\xc8\x82\xbc\x2a\x49\x12\ +\x0b\xc1\x9d\xa2\x87\xf0\x79\xcb\x3a\x73\x2d\xb6\x9c\x73\x5b\x70\ +\xec\x16\x0c\xe9\x93\x5e\xc5\x10\x32\x5e\x25\x8b\x9a\x87\x44\x16\ +\xfb\x52\x85\x0b\x3b\x71\xa0\x1a\xdd\xb2\xda\x18\xf1\xaf\xfe\xb5\ +\x04\x88\xd1\x72\xfe\xa8\x52\xb0\xa1\x4f\xc5\xf0\x7a\xcc\x23\xdf\ +\x98\xe7\xc6\xd0\x8d\x7f\x38\xc1\x6b\x9f\xce\x1e\x7e\x63\x9c\xbf\ +\x75\x35\x5e\xf8\xd1\x4f\x6a\xdb\x73\x23\x3f\x11\x26\x86\x98\x74\ +\xc0\xec\x9e\xec\x3d\xe1\x9b\xb5\xdf\x07\xfc\x69\xde\x6d\x71\x9e\ +\x16\xfb\xdd\x7c\x36\xf8\xce\xc1\xb2\x5b\xbe\x3b\xac\xf5\x3b\xb6\ +\xec\xc3\xd9\x98\x53\xac\x8b\x27\x37\x53\x79\xc5\xdd\x3b\x67\xdf\ +\x18\x9f\xf9\xcc\x3f\x18\x77\x5e\xf8\xa3\xf1\xd1\x4f\x9c\x8e\x63\ +\x7e\x28\x24\xc3\x1c\x0f\xbc\xfa\xee\x72\x5c\x5c\x5c\x8c\x0b\xfe\ +\x93\xb6\xce\xb1\x57\x3a\xcf\x79\x41\x8d\xc5\x27\xd6\xd7\x7c\xa2\ +\x76\x49\x29\xdb\x05\xe9\xcc\xe9\x62\x23\x20\x66\x9e\x2c\x69\x93\ +\xc8\xfa\x1c\xe1\x9b\xbb\x08\x6a\x5c\x94\x85\x35\xa5\xc1\xc2\xd9\ +\xa9\xcc\x6a\x21\x8d\xa7\xcf\x7a\x61\xcd\x0b\x6a\xb5\xd0\x76\xc4\ +\x53\x0e\xe5\xe3\x54\x71\x1d\x5b\x71\xbb\x0c\x81\xcf\xe9\xae\x4a\ +\x9f\xdf\xd5\x37\x3a\x9e\x7d\xcd\x1d\x2c\xaa\x65\x8c\x84\x4d\x64\ +\xfa\x14\xb6\xcc\xbc\xaf\xe0\xc2\xe2\xd5\x17\xc6\xa4\x2e\xc1\xf6\ +\xb5\x28\x10\x89\x79\xfc\x72\xa9\xc9\x0f\x03\x6c\xe7\x58\x36\x32\ +\x78\xdc\x89\xcc\x36\x75\x5d\xb3\x8d\x2b\x2d\x08\x5e\xfb\x00\x5d\ +\x87\xe5\xfc\x46\x8e\x6d\x38\x03\xb1\xe9\x67\xe4\xb3\x9c\x45\x4f\ +\x29\xe1\xdc\x6b\x2b\xd7\x2a\xbf\x78\xd3\x8e\x53\x20\x39\xaa\xb4\ +\x45\x49\x3a\xb7\x23\x51\x52\x37\x5b\xc0\x97\xf1\x84\xb2\x71\xbe\ +\x0f\xf4\x4f\x91\x0d\x36\x8f\x8f\xa1\xf4\x20\x37\xc9\x59\x89\xdd\ +\x19\x15\xdf\xf5\x2d\x85\x51\xf1\x60\xea\x2b\x6a\x66\xc6\x01\x97\ +\xbf\x2b\x5a\x01\x31\x94\x50\x12\x1f\x56\x59\xfb\xac\x81\x7d\xd1\ +\x7d\xe3\xce\x60\xcf\x60\x9f\xb7\x63\x7f\x4d\xf7\xfe\x9a\x3e\x5b\ +\xc0\xfd\xa7\x6f\xd5\x74\x2a\x1d\x02\x15\x01\xc0\x24\x59\xad\x8e\ +\x4a\x43\xa9\x9d\x67\xf4\x50\x9c\x1c\x49\x1e\xbe\x54\x42\xd5\x74\ +\xe2\x05\x67\xdf\x9d\x95\x9d\x65\x73\x46\xc9\xb6\xb7\xd4\xb6\x28\ +\xda\x3c\x7c\x80\x7e\x28\x43\x43\x93\x6d\x63\x1f\x72\xf3\x29\x28\ +\x7b\x63\x0c\x6a\xcf\x6c\xb6\xb6\x6b\xca\x6c\x6b\xf3\x85\x31\x5c\ +\x6d\x9a\x16\x15\xb1\x9b\xb7\x9e\x33\x50\xe8\xc2\x11\x0b\xac\x31\ +\xc3\xf9\x04\xda\xd3\xb6\x29\x54\xed\xcc\xe7\x7c\xe6\xb6\x2a\x3d\ +\x6d\xb1\x0c\xdd\xc4\xc4\xf3\x38\x03\xb6\xce\x5f\x65\x97\x0f\x31\ +\xd1\x91\xed\xc6\xe7\x83\x92\xbc\xf9\x96\x39\x61\xe7\x1e\xb1\x85\ +\x00\x19\x28\x6d\xb0\xbc\x44\x9d\x83\xab\xb5\x53\x64\x44\xd6\x09\ +\x58\xe9\xd8\xb7\xd9\x47\x78\x52\xcd\xf5\x2e\x3b\xb0\x49\x65\xa7\ +\x27\x07\xe3\xd1\xf5\xe3\xf1\xe5\x2f\x7f\x65\xfc\xe0\x0f\xfc\xd8\ +\xb8\x73\xe7\x39\xed\x47\xb4\x87\xf3\x7d\xec\xc8\x1b\x6f\xb0\xc1\ +\xb7\x1b\xb6\xbd\x6c\x83\x0d\x9e\x1d\x6c\x0b\x6a\x1b\x6c\xb0\xc1\ +\x07\x0f\xfe\x24\x57\xfa\x0f\xe2\xe8\x60\xaf\x4e\x6b\xd6\x93\x82\ +\x15\x78\x5a\xc6\x2c\x4c\x70\x79\x75\x30\x2e\xbf\xf1\xc5\xf1\xce\ +\xef\xfc\xea\xb8\x3a\x7b\x38\x4e\x4f\x8f\xc7\xf1\x91\x14\x1a\xb5\ +\xe3\xe6\xa7\xcf\x6a\x21\x8d\x9b\x3f\x37\x7e\x3a\x8d\x45\x34\xc5\ +\x40\x77\x73\x25\x1d\x37\x48\x44\x23\x27\x34\x32\x2f\xb8\x5d\xf9\ +\x55\x87\xfe\x8f\x0c\x0a\x43\x29\x3f\xe8\x9e\xa4\xcd\xa7\x13\x58\ +\x10\xe3\xa6\x8d\xff\x23\xed\xc0\x4f\x29\x90\x78\xed\x63\x3f\x79\ +\xd6\x4f\xa3\x65\xf1\x0c\x1e\xdb\xa2\xcb\x86\xd9\x57\x16\xd3\x82\ +\x25\x4c\x39\xe2\x3d\x01\xcc\xd7\x55\x49\x45\xc8\xb8\xa9\xa2\xaf\ +\x17\xc7\x54\x3f\xd7\x53\x32\xb7\xb1\xb0\x6f\x02\xed\xc9\x2c\x8f\ +\x7d\x2f\x80\xc4\x17\x7a\xb1\x29\x55\x68\xcb\xa4\xc3\x16\x1a\x30\ +\xc6\x08\x04\x5e\xa7\x95\x0c\xb2\x7d\x2c\xa2\x5c\x64\x11\x2d\xf6\ +\x66\x92\xfc\x0d\x36\xb4\x4d\x0b\xc4\xbb\xce\xfa\xd2\x43\x51\x09\ +\xcf\x4e\x2a\xdc\x34\x16\xd0\xdd\x06\xf3\x88\x4b\x3e\x4d\x8a\x77\ +\x8a\x18\xdc\x8b\x41\x01\x74\xc4\x81\x8c\x3c\x08\xf9\x2a\x01\x3b\ +\xb2\x3d\xde\x71\xf0\xcd\x76\x70\xd9\x80\x42\x77\x79\x96\xd1\x4f\ +\xb0\xdd\xdf\xea\xbc\xae\x67\xaa\x11\x7a\x26\xd9\x85\x6c\xff\x15\ +\xcf\x47\xb4\x65\x45\x77\xd9\xde\x26\xfa\xf8\x0b\x2f\x33\xe8\x24\ +\xb2\xc8\xa1\x73\x8c\x91\x85\xdf\xb1\x9b\x7c\xda\xb5\xa6\xbb\x3e\ +\x16\x36\xb6\xcd\x5a\x5f\xed\x2f\xb5\xed\x26\xdf\xc2\xe6\x4b\x36\ +\x6d\x2a\xed\xc5\xde\x4d\xab\x6d\xd7\x7d\xdb\xba\xf6\xe9\x78\x86\ +\xa2\x2b\xb9\x9f\x50\xad\x64\x25\xf0\x77\x89\x17\xda\xa7\x0c\xc7\ +\x13\x6d\x61\xd4\xc9\xc0\xa1\xd3\xff\xde\xbc\x6d\x10\x81\x7c\xb3\ +\x2d\xbc\x75\x4a\x67\x22\x88\x36\x08\xec\xd7\x20\x07\xfb\x40\x36\ +\x51\xb0\x63\x67\x88\x40\x67\x9b\x8a\x8f\x43\xce\x3d\x71\x4e\x80\ +\x3e\x1f\x73\x3b\xb7\x6f\x82\xa3\x82\x8e\x59\xf9\x94\x6f\xfc\xe3\ +\xb7\xf0\x2a\xa3\x6d\x7d\x93\x28\xb2\xb6\x0d\x9d\xf3\x60\xcb\x13\ +\x3f\x7c\x64\x6d\x07\x32\xa3\x44\xbd\xa2\x37\x40\x86\x9a\xa2\x48\ +\x9e\x68\xfc\xd2\x1f\xbd\x01\x04\xa0\xde\x56\xc0\xba\xcf\x72\x8e\ +\x91\xcc\xd7\x00\x6e\xf8\x44\xc9\xa2\x9a\x7f\x18\xa1\xeb\xc8\x5b\ +\xaf\xbd\x3c\xae\x0e\xee\x8c\xe7\x7e\xe8\x47\xe2\xc0\xe9\x3c\x41\ +\x0b\x26\x71\x3b\xac\xd5\xd0\xef\x61\xfe\x27\x86\x6f\x36\xee\x4e\ +\x1b\x36\xf8\x8e\xc0\x37\xd3\xe7\xef\x66\xb7\xd6\x71\x50\xcc\xf3\ +\x8f\xb0\x0f\xa6\x9b\x71\x79\xa1\x5d\xf5\xe8\x6a\xfc\xce\x6f\xfd\ +\x37\xe3\xc1\xc1\x6f\x8f\x4f\x7c\xf2\xee\xb8\xe3\x1f\x0a\x1d\x78\ +\x48\xc2\x42\x0e\x3f\x38\x3a\xe3\x35\x8f\x2c\xa6\xe9\x7a\xca\x39\ +\xdb\x43\x0b\x65\x7e\x92\xeb\x52\xe7\x07\x9d\xb3\x7c\x0a\xf6\xb1\ +\xc1\x79\xdd\x05\xb9\x29\xc9\xaa\x32\x2a\x17\x8a\xdc\x94\xeb\x61\ +\x45\x1d\x5b\x1a\x23\xf9\xe6\x2e\x42\x8d\xa3\xc4\xe7\x49\xb4\x53\ +\x27\x2f\xa8\xed\x24\xfe\xf7\x30\x8b\x6b\x5e\x54\x2b\x9f\x8e\xb3\ +\xfc\x2f\x51\x9d\x63\x88\xdb\x07\xf7\xba\x8e\x60\x11\x69\x33\x6d\ +\x51\xbb\xac\x41\x0e\x85\x2c\xd8\xd6\x42\xbe\xac\x80\xd5\x47\xb9\ +\xc4\x70\xee\x4a\xff\xf4\x35\x27\xff\x9b\x66\x97\xf2\x14\x96\x8c\ +\xdf\x6f\x21\x88\xbf\x3e\x2b\x3b\x4b\x58\x44\x9b\x36\xf0\xc8\xd3\ +\x2b\x96\x81\x01\x04\x75\x82\xa2\xfc\xea\xfe\xe8\x95\xe5\x32\x44\ +\x9b\x69\x36\x19\xb6\xa5\x87\x86\x30\x53\x76\x95\x58\x18\x69\xb0\ +\xdc\x65\x24\xd9\xbc\x7d\xa6\x59\x05\xca\x57\x80\xcf\x4a\x3c\xdb\ +\x00\x24\x86\xfb\x6b\x27\xc5\x3c\xb0\x94\xd7\xb1\x5c\x8f\x1d\x19\ +\x78\x05\x65\x63\x3b\xe9\x52\x66\xdb\x20\x63\x4b\x81\xc5\xee\x16\ +\x26\xc0\x8e\x6d\x17\xda\xd7\x3b\xd3\x4b\xdf\x7b\xbb\x1a\x5b\x6c\ +\x20\x3c\x9e\xa9\x1b\xdb\xc0\x52\xe7\x86\xb6\x53\xc2\xc2\x59\x11\ +\xd4\xb4\x98\xc9\x69\xf7\x9b\x60\xd7\xde\x57\x05\x50\xa9\x4b\x4a\ +\x33\x88\xc7\xc4\x3a\x27\x1b\x88\xa0\x0d\x21\x41\x48\xa7\x8f\x20\ +\x3c\x65\x22\xc5\x16\xcc\xbc\xc2\x6c\xfc\x3b\x96\x60\x52\x0e\x5a\ +\x9c\x5d\xb3\xcf\x51\xaf\x19\xcb\x3c\xde\xe2\xc1\x51\x26\xd9\x66\ +\x81\x3c\x19\x87\x82\x3a\x44\x06\x94\x24\x8c\x47\x20\xf0\x32\xe0\ +\x98\x20\x2c\x62\xfb\x06\xac\x97\xdc\xf1\x84\xe9\xc7\xe8\xd6\x41\ +\x6d\x60\xd1\x94\x42\x54\x1f\x3b\xfe\x0a\xac\xda\x31\x2c\x5e\x69\ +\x8e\x81\xf0\x12\xce\x78\x05\xde\x22\xa4\xe1\x6d\x67\x22\x2a\xce\ +\x6d\xa8\x26\xc6\xb2\xcf\x53\xaa\x37\x72\x3e\x96\x17\x56\x42\x8a\ +\x43\xf3\x7c\x74\xc2\x33\xbd\x96\x13\x64\xca\xb0\xb1\xdd\x9e\xbe\ +\x7b\xa7\xe5\xb6\x81\x85\x37\x19\xbe\xac\xcd\x1b\x8a\x8e\x62\xa1\ +\xd7\xb8\xc0\x0b\xb3\xba\x3e\x20\xe6\x87\xa7\x29\x1b\x33\x61\xe9\ +\xf8\x61\xd2\xd1\xe9\xd1\x38\x39\xbe\x1a\x0f\x1e\x3e\x18\x5f\xff\ +\xda\xab\xe3\xc7\x7f\xec\xe7\xc7\xa1\x74\x87\x83\xd7\xf5\x66\xff\ +\xe1\xe3\x6d\x8b\xdf\x06\x1b\x7c\x9b\x61\xdb\xcb\x36\xd8\xe0\xd9\ +\xc1\xb6\xa0\xb6\xc1\x06\x1b\x7c\xf7\x21\xa3\xc8\xc0\xfa\x2a\x9f\ +\xb1\xff\x7b\x03\x3e\xeb\x18\x1f\x40\x78\x5a\xd5\x90\x5b\xe7\xfa\ +\x73\xf3\x41\x43\xeb\x77\xde\x1a\x6f\x7e\xf6\x97\xc7\xe5\xdb\xaf\ +\xfa\xc9\xb4\xbb\xa7\x1a\xa4\x6b\xa2\xc6\x70\x9b\x9b\x39\x2c\x8a\ +\x5d\xf1\xaa\x47\x16\xd5\x84\xbd\x70\x56\x4f\x58\xb1\xc0\xe4\x57\ +\x12\xf1\x24\x9a\xef\x04\x29\x34\x7f\xa0\x6f\x3f\x0d\xfa\x85\x65\ +\x95\xae\xad\xc9\x1f\xb4\x7f\x2c\xc7\xa7\x26\x3b\x2c\x8a\x1d\xf1\ +\x8a\xc9\x93\x63\xd7\x8b\x85\x31\x7e\xc9\x0d\x3f\x9f\x40\x93\x2c\ +\x8b\x6e\xe0\xf0\xeb\xc5\x34\x16\xd7\xa4\x90\xbf\x68\x78\xc7\xa6\ +\x0c\x0a\x20\xd5\x64\x27\x2d\xab\x8a\x38\x0b\x76\x9b\x94\xa0\x69\ +\x4b\xe1\x3c\xb1\xc6\x8d\x9d\xc2\x92\x87\xc6\x0f\x79\xfc\x33\xb9\ +\xc5\x67\x8f\x2e\xbd\xcb\x33\xdd\x31\xd4\xc7\xb6\xa9\x7a\x20\xc3\ +\xc6\x38\x7c\xaa\x16\x3c\xeb\x5b\x32\x4f\x87\xa6\x5c\x49\x99\xe5\ +\x2b\x9a\xd8\x59\x50\xb1\xb0\xec\xc0\x10\x61\xb8\x99\x05\x1f\x0e\ +\x3a\xc8\x4f\x3f\x15\xef\x18\x40\xd9\x26\xe9\xdb\x6d\x9b\x3a\xfa\ +\xa5\x45\x69\xdf\x6c\x8b\x79\xc8\xd4\xbd\x6d\xf8\x26\x15\x61\xfb\ +\x94\x99\xf6\x50\x37\x09\x5c\x56\xfb\xac\x53\xf9\x3e\x25\x81\x2a\ +\x13\x42\xe6\x4e\x89\x8c\x98\xdd\xff\x2d\x53\xca\x7e\x00\x49\x7b\ +\xca\xaf\xca\x9f\xed\x59\xc9\x9a\x9f\x0b\xae\xa6\x5b\xee\xa2\xb3\ +\xbd\x42\xee\xc8\x43\x77\xdf\xec\xeb\x52\xad\x85\x56\xa6\x32\x28\ +\x02\xbb\x9d\xba\x00\xd5\xb4\xc5\x5f\x99\xdb\x57\xf4\x5a\x0e\x9e\ +\x3a\x25\x80\xc0\xc8\x80\x96\x73\xc2\x30\x5d\x3a\xfb\x56\xb2\xed\ +\x8a\x77\x6a\x7b\x74\x82\x2e\x83\x8a\xad\xcb\x93\xed\x52\xff\x95\ +\x5c\x36\x88\xd2\x56\xd2\x62\x6b\x7b\x41\xf6\x09\xc4\x6b\x9b\x4a\ +\x40\xc9\xeb\x48\xdf\xd5\xa5\xd2\x82\xea\xf3\x90\x4a\xf0\xdd\xd8\ +\x5b\x80\x73\x08\xc8\x39\x38\xf6\xb6\x56\xa0\x9c\xcf\xa0\xcb\xce\ +\x74\x52\x24\x2d\x6b\xa1\x3c\x45\xc3\xf6\x39\x2a\x2a\xc5\x34\x1d\ +\xbb\x2c\x36\x41\x47\xe7\x0f\xbc\x5d\x9c\x4d\x59\xf8\x9c\xfb\x20\ +\x7d\x7f\xa7\xed\x8b\x5e\xff\x92\x1b\xa3\x60\x54\xa2\x4d\xd8\x63\ +\xd1\x15\x34\x15\x51\xf7\x11\x4c\xfa\x38\xfa\xc8\xdb\x26\x72\xe5\ +\x8b\x81\x68\x31\x4d\x43\x50\x0e\x22\xce\xe3\xb0\x7c\x6c\x72\x3d\ +\x8e\x8e\x4f\x75\xed\x79\x3c\x1e\x7c\xe3\xf5\x71\xff\xc3\x1f\x1f\ +\xc7\x2f\x3c\x27\x1b\x7e\xed\x81\xc1\x0c\xb2\x4b\x0b\xd6\xe1\x9f\ +\xc0\xeb\xba\xdc\x06\xef\xa6\x5b\xc3\xda\xee\xfd\xfa\x3c\x0d\xde\ +\x4f\xbd\x36\xf8\xd6\xe1\xb6\x7e\xbe\xad\xcf\xdb\x6e\x0d\xc8\xf6\ +\x6d\x8b\x9f\x62\x13\x57\xe3\xe0\xea\x64\x5c\x1d\x1d\x8c\x2f\xfd\ +\xc1\xff\x6f\x7c\xed\x1b\xff\x6c\x7c\xfc\x53\x17\xe3\xfe\x0b\x59\ +\x90\xe2\x86\x26\x4f\xb0\x5d\x6a\xcc\xc4\x7f\xa6\x5d\xd4\xeb\xb3\ +\x39\x97\x31\xac\xf0\x6b\x11\xfd\x46\x00\x1d\x3f\x3a\x1f\xe7\x6c\ +\x25\x7a\x55\x1f\x9f\x6d\xcc\xaf\x2a\xc4\x71\x54\x1f\x1f\x0f\x3e\ +\x26\xc4\x19\x2f\xe7\x84\xf9\xdf\x67\x2c\x9a\x1d\xd4\x62\x1a\x3f\ +\x5c\xaa\x27\xd3\x8e\x24\xcf\x13\x69\x59\x58\x3b\xf0\x53\x6b\xed\ +\xcf\x98\x0a\x9c\xf8\x96\x75\x99\x13\x38\xee\x53\x59\x63\x55\xdc\ +\xcb\x2d\x3a\x8f\xf1\x3a\x4b\x9e\x4e\x4b\x7b\x62\xe5\x31\x24\x8d\ +\xf3\xb7\xfc\x84\xfc\x14\x9b\xe2\x46\x22\x1b\x1b\xe0\xc7\x93\x3e\ +\xf5\xf4\x99\x3f\x85\x91\x73\xed\x20\x59\xa6\x64\x17\x32\x31\xaa\ +\x62\x6c\xf0\x8f\x8e\x8c\x32\x50\xba\x9f\xeb\x7c\x8e\x04\x3d\x7d\ +\xec\x3a\x58\x4e\x00\xec\x62\x91\x56\x54\x66\x3b\xea\x9c\x58\xd8\ +\x05\xf3\xb5\x55\xe9\x85\x21\x0a\xfb\x3a\x0e\x8b\x29\x83\xe2\xe2\ +\xe3\x4a\x9b\x18\x2b\x96\xad\xf9\xaa\x8b\x2b\x1b\x79\x64\x4d\x2b\ +\x75\xfb\x95\xa5\x4d\x25\x77\xba\xdd\x76\x1f\x76\xf4\xe0\x96\x93\ +\x9a\x01\x2c\x08\x69\x10\x6d\x96\x06\x35\x20\xf0\x3e\x18\x88\x7e\ +\x0f\x43\x2a\x70\x97\xb5\x2e\x13\x2a\xdb\x08\xa8\xed\x00\xb4\xc1\ +\xaa\x28\x00\x0b\x0b\x5b\x5e\x2c\x99\xf7\x5b\xd7\x2d\xfd\xba\x18\ +\x01\x44\x5e\x78\xd4\xbb\x09\xdf\xc2\x96\x2c\xd6\x96\xa0\x46\x2c\ +\xf0\x76\x35\x1d\x1f\x03\xb8\xfa\x9b\xdf\x4f\xb5\x7c\xad\x4e\xbb\ +\xa1\xb2\x2f\x78\xd1\x58\xb4\x6d\xac\x2b\x7d\xef\x00\x02\xcb\xa6\ +\x8e\x94\x32\x27\x0d\xe5\x76\x23\x69\x40\xae\xe4\x6f\xd1\x2b\xc8\ +\xe6\x8b\xde\x54\xc5\x43\xb0\x8e\x32\xa1\xec\xdc\x83\x9c\x17\xfc\ +\x29\x59\xc7\xe8\x9c\x2f\xf5\x31\xb6\x87\x69\x27\x90\xe9\x25\x4e\ +\x2b\xec\xd2\x7e\x7c\x22\x28\x1d\x0b\x67\xc8\xa6\x61\x50\x8c\xeb\ +\xfc\xc5\x82\x52\x30\x66\xfd\x83\x80\xd8\x22\xcb\x87\xf3\x1b\x1f\ +\xe4\xbd\x08\x67\x1b\xb0\xf3\xe8\xf4\xdd\x95\x4d\x3a\x3a\xf3\xf6\ +\xa7\xc7\x12\x07\xaa\x55\x21\xc0\xdd\xb3\xd2\xbb\x1c\xd1\xca\x6c\ +\x3b\x6d\x0a\x17\x61\x3d\xd7\x0c\xd1\x7e\xe2\xd9\xf1\xcb\x47\xe9\ +\xf0\xf0\x66\x9c\xf0\x26\x97\xe3\xcb\xf1\xda\x6b\x6f\x8e\x87\x6f\ +\x3d\x1c\x9f\xfa\xe1\xbf\xa0\x5d\x80\xd7\x10\x9f\xd8\x88\xda\xa4\ +\x34\xa0\xf1\x06\x1b\x7c\x7b\x60\xdb\xc3\x36\xd8\xe0\xd9\xc1\xb6\ +\xa0\xb6\xc1\x06\x1b\x7c\xf7\xe1\xb6\x31\x64\xc6\xb4\x4f\x87\xfd\ +\xd1\x00\xfc\x7b\xf9\x7c\xc7\x61\xa9\x90\x07\xca\xab\x3a\xb7\x66\ +\x8a\x34\xd0\xf7\xe0\xfa\xf2\x62\x3c\xf8\xbd\x5f\x1d\x67\x7f\xfc\ +\xfb\x5e\xd0\xba\x77\x7a\x34\x0e\x6b\x16\xee\xc5\xb0\x2b\x9e\x3e\ +\x5b\x2d\xa6\x5d\xd7\xab\x1e\xaf\x93\x7c\xe3\xe7\x32\x8b\x4e\xbe\ +\x31\x82\xac\x16\xd7\x7c\x33\x48\xc9\x65\xf7\x64\x8e\x0a\xb8\x12\ +\xd4\x4f\xd3\x00\x7e\xad\x7d\x7c\xec\xd7\x3a\x7a\x71\xac\x16\xca\ +\x8e\x79\x2a\xad\x9e\x4c\xe3\x46\x6b\xbf\xda\x71\x79\x3a\x4d\x72\ +\xdb\x2f\x36\x03\x9e\x09\x4c\xe9\x65\xec\x32\x66\x2a\x58\xea\x53\ +\x89\x49\xae\xeb\x2f\x9a\x24\x1a\xec\x45\x15\xd3\x4a\x6a\xe7\x5a\ +\x37\x6d\x7c\xc7\x21\x6d\x9d\x3e\x22\x63\x03\x1d\xf9\xc2\x97\x6d\ +\x25\x4f\xb1\xa0\xf9\xca\x26\x71\x42\xf7\x82\x12\xae\xbe\x33\x02\ +\x56\xf2\xfc\x0b\x21\xdf\x15\xed\x7a\x08\x85\x76\x16\x3f\xa0\x14\ +\x99\xbb\x29\x2b\x75\xe4\x15\x53\xa0\xd2\xe4\xaa\xbe\x72\x3d\xca\ +\xc0\xc8\x9a\x49\x27\xe1\x01\x4f\x72\x56\xf4\x4a\x86\x9f\x12\xed\ +\xb4\x89\xc5\xf4\x99\xa9\x1d\x1c\x9b\x6e\xb7\x0d\x9d\xdc\x47\xf6\ +\x89\xbe\x7d\xba\x7f\xcc\x1b\xdf\x9e\xd2\x87\x0b\x0d\xce\xb6\x50\ +\x02\xaf\xb7\x3d\xb2\xd2\x8b\x99\x36\xdd\x1f\x3b\x74\x27\xf1\x60\ +\x2f\x00\xb9\x2a\x65\x07\x8b\x4c\xdf\x75\xfb\x2d\xb0\xae\x48\x70\ +\xdf\x61\xa9\xed\x9c\x36\x8b\x36\xa4\x0f\x1c\xdf\x49\x47\x37\xba\ +\x4a\xbd\xed\xcc\x7b\x7b\x63\x5b\xbc\x52\xd7\x0d\x3c\x85\x51\x4c\ +\x6c\xbd\x3e\xeb\x58\xb6\x27\x55\x7b\x97\xf2\x83\xc0\x4e\x40\xe3\ +\x35\x58\xa6\x6c\x1a\x17\x72\x52\x56\x6d\xdd\x49\xc0\xaa\x9c\x75\ +\xa2\x6e\xa9\x9f\xea\x42\x8f\xb4\x4e\x71\x5a\xde\xb6\x49\xea\x53\ +\xcb\x05\xdd\x2f\xe4\x25\xf3\x39\x52\x74\xcb\x1c\x43\x0c\x3c\x00\ +\x6e\xba\xe5\xcb\x79\xd5\x94\xdc\x15\x93\xf3\x98\x7d\xcb\xa2\xe2\ +\x90\x22\x2a\x39\x58\xc9\xac\x21\x31\xc0\x6d\x43\xca\x4d\x95\x95\ +\x3d\x0b\x6a\xa5\x5b\xfc\xc3\xfb\x46\xd0\x54\x85\xb7\xbf\x7c\x62\ +\x52\x32\x6c\xf5\xe1\xa6\xd3\xca\xc1\x3a\x9d\x32\xa3\x0d\x61\xba\ +\x31\x96\xc5\xee\xc2\xec\x2c\x25\xfa\x2e\x52\x41\x51\xf4\x3d\xef\ +\x8c\x15\x2c\x3a\x7c\x3a\x0f\x58\x87\xa9\x3e\xb8\x70\x5b\xc8\xd5\ +\xb0\x82\xc0\x37\xe3\xf8\xe0\x64\x8c\xab\xb7\xc7\xa3\xd7\xdf\x1e\ +\x1f\xfa\xd4\xa7\xb4\xad\x4e\xc6\x81\xae\x55\xbb\xb0\x94\x62\x70\ +\xcc\xe0\x09\xd0\x55\xed\x67\x02\xc4\xe9\x04\x74\xc3\xfe\xa4\xf1\ +\x9f\x55\xbd\x36\x78\x3a\xdc\xb6\xfd\xf7\xb7\xdb\x3e\xde\x87\x1d\ +\x79\x3b\x47\xcc\xc2\x11\x8b\x66\xfc\x00\xe9\xd1\x5b\xaf\x8e\xdf\ +\xf8\x0f\xff\x97\xf1\xe1\x1f\x7e\x73\xbc\xf4\x12\x8b\x52\x3c\xf1\ +\xa5\x63\x42\x27\x0b\xf4\xe7\xe7\xe7\xe3\xf2\x5c\xe3\x2a\xae\xdb\ +\x0a\x93\xd7\x3c\xd6\x98\x4a\xb4\x7f\x94\x94\xd0\x05\x0b\xcf\xe1\ +\x97\xb3\x59\xc0\xc7\x71\x61\x1f\x3c\x3e\x80\x24\xf3\xc1\xa4\xa3\ +\xca\x4f\x96\x71\x9b\x98\x31\x12\x0b\x67\xfc\x2f\x5a\x9e\x4a\xf3\ +\x7f\xa4\xb1\x80\x66\x39\x3c\xe3\x2c\x16\xd2\xc4\x63\xef\xa3\x92\ +\x18\x1d\x8b\xb2\x4a\xe6\xb4\x5b\x4b\x20\x35\x25\x2f\x2c\x84\xfb\ +\xf2\xff\x69\xf1\xf1\x93\x69\x35\x6e\x89\xad\x70\xc9\xbc\x98\xe0\ +\x26\xc6\x3e\x8b\x41\xb1\xa2\xed\x09\x11\x0c\xcf\x93\x69\xb9\xec\ +\xa6\x46\xf1\xb1\x20\x36\xf2\xf7\x82\x17\xa7\x25\x8b\xb1\xea\x38\ +\x50\x4b\x4c\x00\x9a\xe7\x40\x7a\x08\xd8\x71\xe9\xfc\x72\xc9\x69\ +\x90\x7a\xf1\x71\xfd\xb0\x8b\x6f\x7c\xac\x36\x40\x27\x2b\xb9\x52\ +\xa9\x26\x1f\xff\x8e\x0f\x56\x4c\xe2\x58\x29\x6b\x3b\xd4\x02\x8b\ +\xc0\x62\x27\xea\x90\xfa\xad\x13\xd9\xac\xd3\xbe\x1e\xb9\xe2\xa5\ +\xde\xa4\x92\xa1\x5c\xc1\xb4\x35\x61\xd1\x02\x93\x67\x5f\xab\x7a\ +\xb3\xef\x89\xa0\xaa\x94\x69\xd0\xf8\x86\xd2\x17\x77\x51\xf9\x2a\ +\x93\xc6\x6d\x94\x9e\x0a\x21\x8a\x42\x09\x5e\xc9\x1d\x5d\xb1\xa0\ +\x8b\xc4\x1c\x32\x3d\x95\x32\x7c\x0c\x18\x1a\x03\x68\xb0\x4b\x3b\ +\x0d\x65\x97\x71\x1b\xb4\x12\xc8\xfa\x44\x0c\xc4\x81\xb2\x30\x6d\ +\xf7\xb4\x13\x1b\x97\xea\x7d\xc5\xfa\xc5\x20\xc6\x12\xc4\x4f\xfa\ +\x12\x01\x78\x02\xe6\xd1\x63\x87\x50\x19\xf6\xea\x12\x61\x62\x9b\ +\x98\xbe\xee\x8a\x8a\x35\x83\x09\x62\x67\x52\xa8\xfc\x0a\x13\x0f\ +\x00\x4d\xb7\x6e\xbf\x25\x05\xbd\xed\x6c\x54\x31\x4a\xdd\xfd\x51\ +\xa1\x0c\x0c\x5b\x23\x25\x4f\xff\x4f\x87\x02\x73\x04\x2c\x71\xb6\ +\x4f\xb6\x96\xa9\x96\xc3\xe5\x6b\x9b\xf5\xb9\xcc\xa7\x9e\x7d\xb9\ +\x8d\xc1\x25\xe7\x53\xfa\xb5\x5d\xce\x5d\x2b\xbe\xe9\xf6\xe3\x9c\ +\x06\x5d\x3f\x5c\xf2\xa7\x71\xfb\x0a\x8b\xb0\x2d\x38\x23\x15\x07\ +\x98\xb2\xc4\xaa\x32\xac\x87\xe6\x8b\xa5\xad\x0d\x0c\xcd\x26\x8f\ +\xbd\x31\x9d\x1e\x29\xf6\xdd\xef\x53\x5d\x59\xf8\xda\x12\xf2\xe1\ +\xda\x81\x3d\xaf\x7f\xb4\xd4\x36\x92\x10\x4e\xe7\xf1\x23\xcd\xab\ +\x8f\x8f\xcf\xc7\x1f\xfd\xe1\x97\xc6\xf3\xcf\x7d\x68\x7c\xe4\xa5\ +\x3f\xe3\xeb\x8b\xe7\xcb\xde\xc3\x52\x3b\x3b\x6e\xb0\xc1\xb7\x11\ +\xb6\x3d\x6c\x83\x0d\x9e\x1d\x6c\x0b\x6a\x1b\x6c\xb0\xc1\x77\x17\ +\x9e\x1c\xef\x2f\x33\x84\xa7\x5d\xf1\x5b\xfe\x01\x1e\x11\x78\xa0\ +\x5d\xf5\xcb\x80\x3c\x83\xee\x6e\xda\x1a\xac\xd7\x88\xfb\xea\x6c\ +\x8c\xc7\x5f\xfd\xbd\xf1\xe8\x0b\x9f\x19\x57\x37\x97\xe3\xfe\xf1\ +\xe1\xe0\x21\x2f\x62\x79\x72\xe7\xa7\xd2\x2e\xc6\xd5\x25\xbf\x96\ +\xbe\xc8\xe2\x1a\x4f\x9d\x69\x10\xef\x05\x34\x6e\xfc\x94\x8c\xf2\ +\xc2\x8b\xf6\x82\x9b\x78\xc5\x60\xc8\xee\x32\x3d\x21\x24\xb0\xbe\ +\x0c\xf8\xab\xc2\x2c\x9a\x1d\xf3\xda\x8a\x5a\x50\x3b\xf2\x24\xe0\ +\xd8\x4f\xa6\xc1\x7b\x11\x6d\x26\xd9\xf1\x4b\x6a\xd9\xb4\xce\xd8\ +\x37\x80\x44\xcf\x44\x23\x64\x0b\xa6\x0c\xca\x72\x79\x05\xbe\xeb\ +\x92\x64\x54\x8b\x63\xc5\x04\x63\x33\xe5\xc2\xf6\xa1\x5d\xad\x5f\ +\x74\xb4\x1d\x3e\x37\x6f\xa0\x83\xcd\x57\x3f\x64\x31\xa2\xe2\x20\ +\x2b\x9b\xd8\xa9\x4e\xe0\xd6\x59\x5e\xb2\xc2\x0b\x9d\x94\x98\x0b\ +\x1f\x1b\xfa\x39\xac\xff\xff\x0c\x42\x5c\x64\xca\x24\xb3\xd6\x72\ +\x48\x88\x62\x8c\xd0\xb1\xdf\x04\x47\x94\xfd\xc8\xb6\x33\x59\xb0\ +\xd0\x2d\x2f\xf1\x62\xb7\xb4\xc5\x7b\xa4\x6d\xa8\x58\x6c\x40\xb1\ +\x8b\xbe\xeb\x69\x6c\x79\x92\x2d\xf5\x0d\x40\x28\x55\x5b\x66\x5f\ +\xb5\xbc\xd3\xda\xdf\xdb\x94\xed\x83\x0a\x59\x9b\x4c\xc2\x18\x1e\ +\x53\xdb\xaa\x12\xbd\x8d\x2c\x77\x5a\xfc\xd7\xdb\x2a\xf1\x4b\x5f\ +\x71\x1c\x08\x5e\x89\xfe\xb3\xce\x72\x6c\x20\x8b\x28\x48\x1f\x37\ +\x21\x64\x53\xf5\x85\xeb\x10\x9e\x1b\x1c\x0b\x5d\x49\xe0\x5d\x7b\ +\xca\x94\x4d\x9c\xb4\xf4\x67\xd9\xa4\xba\x93\xaf\x22\x23\x84\x17\ +\x5e\xdb\xa7\xbc\x85\xdf\x49\x40\xd1\x1d\x33\xe5\x41\x43\x2c\xb2\ +\xa6\x93\x54\x86\xfb\x5a\x09\x10\xbd\xb6\xd9\xa9\xaf\x12\xba\xae\ +\x27\x37\x99\x70\x25\x86\x17\xb2\xd6\x50\x7e\x8e\xb5\x82\x59\xa7\ +\x06\x6c\x8c\x13\xd5\xb9\xb2\xc8\xc0\x65\x20\x7d\x2c\xda\x66\xe1\ +\x43\x8b\xe3\x2b\x3a\xe1\x8b\x27\x73\x0e\xb6\x48\x59\x1d\x4b\xe4\ +\x6c\x34\x6e\xc4\xc0\xe1\x5b\xb4\xef\xb6\x10\xb7\x12\xff\x2d\x66\ +\x7e\xfa\x28\x85\xb3\xde\x37\x76\xd0\xef\xdf\xd4\xc1\xa6\xe9\x4a\ +\xfe\xf8\x9c\x88\xba\x74\x65\xe7\xba\xb4\x8d\xe5\x40\x70\xb3\x6b\ +\xa9\xdb\x2a\x02\x7b\x83\x3b\xbc\x2d\xd0\x77\x6f\x44\xb6\x68\x02\ +\xf0\xe9\x31\x51\x42\x29\x13\x02\xd1\x81\xce\xe7\x60\x65\xde\x3e\ +\xfc\x46\xff\x60\x3c\x7a\xe7\xd5\x31\x1e\x5d\x8f\x7b\x9f\xfa\x94\ +\xf6\x97\x93\xf4\x15\x1b\xd5\xbe\xa4\x05\xad\x61\x36\x07\xb8\x45\ +\x3f\x61\x15\xe6\x7d\xc3\xd3\xec\xbf\xd9\x38\x6b\xf8\x56\x7c\x37\ +\x08\xd4\xae\xf5\x04\xec\xcb\xb0\x5b\x43\xeb\x9f\x26\x07\x9a\x06\ +\x17\x0d\x62\x57\x65\x97\xbc\x38\x3b\x1c\xd7\x87\x8f\xc7\x6f\x7e\ +\xe6\x1f\x8e\xf3\xe3\xdf\x1b\x1f\xfb\xe1\x93\x71\xf7\xa4\x9e\x0a\ +\xe0\xb5\x85\x1a\x27\x3d\x7e\xcc\x6b\x1e\x59\x4c\xe3\x5c\x7b\xed\ +\xc5\xb3\x2b\x8d\x21\x32\x9e\x62\x61\xad\x2a\xe0\xf8\x39\x9a\xdc\ +\xa4\xfd\x7a\x25\x68\x55\xa3\x68\xf3\x85\x4d\x73\x8e\xd0\xb8\xe8\ +\xe0\x78\x1c\x0d\xc6\x4f\x79\x2a\x2d\x29\xaf\x76\xcc\xab\x1f\xf3\ +\xd4\xda\xc1\x11\x8b\x69\xd8\x93\xf0\xad\x73\x8c\x8f\xc2\x15\x6d\ +\x7c\x1b\xa4\xb6\x9c\xc3\x53\x5d\x16\xc7\x34\x6e\x54\xe5\xbd\x78\ +\x66\x79\xf4\x79\x0a\xad\xec\xc9\xcb\x87\x33\x65\x34\x2c\xc0\xad\ +\x2d\xb0\x89\x3e\x74\x64\xea\x36\x2e\xc7\xd1\x69\x43\xd8\x27\x86\ +\x4e\x79\x3d\xa4\x7c\x8c\x11\xf1\x81\xc7\xdb\x59\x21\xf4\x19\xb7\ +\x76\x2c\x55\xdc\xdb\xd6\x75\x23\xb5\x6d\xc5\xc2\x36\xd7\x23\xbe\ +\x29\xc7\x0b\x77\xe6\x95\xc8\x00\xb0\x0c\xd7\xbc\xfd\x44\xec\xd8\ +\x93\xa0\x1d\x5c\xf1\x4a\xb6\x06\xeb\xab\x0f\x02\xa1\x23\x4b\xe2\ +\xb3\xe6\xf7\xc1\x31\x24\x4e\xac\xf8\xee\xa6\xe8\x43\x28\xed\x40\ +\xc5\x94\x41\xfb\x7a\x03\x58\x66\x81\xc1\x24\xa6\xa2\xac\x56\xe2\ +\xba\x1f\x35\x8c\xbe\xaa\x80\xe7\x0b\x55\x26\x86\xd4\x89\x58\xee\ +\x03\x62\x2a\xa1\x2d\x71\xe9\x9d\x05\x49\x56\xc5\x18\xda\x0e\x99\ +\xeb\xd6\x72\x3b\x16\x83\x5e\x95\xf3\x53\xe9\x65\xb2\x68\xf1\x04\ +\xca\xb6\xd0\x02\xba\x36\x55\x3b\x58\xd2\x30\xc5\xf7\x09\x3b\x6a\ +\xbd\x7b\x9c\x70\xdc\xd4\x55\xb8\xe2\x56\xbb\x6c\xbb\x60\xef\x7b\ +\x25\xc1\xc2\xed\x08\xb3\xa0\xa2\x17\x90\xcd\x4a\x16\x3f\x61\x8b\ +\x57\xb5\x10\x19\x0e\xa2\xcb\x15\x29\xc3\x25\x6e\xd9\xb3\x3d\xe6\ +\xb1\x5e\xb2\x7d\x90\xbe\x08\xa5\xb6\x17\xad\xaf\x9b\x11\x72\x66\ +\xf4\x01\x40\x9d\x7c\x19\x47\x8f\x6c\xea\x83\xfd\x9d\xb2\xc8\x89\ +\xcb\x27\x5f\x64\x24\xec\xea\x9c\x64\x3a\xf2\x65\x7c\x44\x3a\x54\ +\x59\x4d\xa7\x5c\x6f\x89\x96\x61\x2d\xcc\xb8\x03\xae\xcf\x71\x53\ +\x5f\x74\xf4\xf8\x81\x53\x37\x12\x1f\xdb\xea\xe3\xf1\x1c\xb6\xde\ +\xd2\x6d\x55\x1f\x9b\x37\x86\x8c\xbc\x21\x43\x29\x14\xfe\x3a\x75\ +\x1f\x2e\xd0\x5b\x4c\x9b\x27\x27\x11\x2f\xaa\x01\xa9\x15\x11\xf9\ +\x2f\x5a\xda\x70\x3e\x8e\x4f\x4f\xc6\x97\xff\xe8\x2b\xe3\xa3\x1f\ +\xfb\xa1\xf1\xdc\xdd\x8f\xcb\xfd\xb0\xb6\x11\x4f\xac\xa5\xf4\x75\ +\x1d\x36\xd8\xe0\x59\xc3\xb6\x77\x6d\xb0\xc1\xb3\x83\x6d\x41\x6d\ +\x83\x0d\x36\xf8\xee\xc2\x6d\x57\xf5\xf7\xba\xd2\xb7\x7e\x19\xc3\ +\x7e\x80\xc0\xa3\xef\xc2\x50\x0c\xe6\x35\x4d\xf1\x68\x7d\xb7\x69\ +\xa6\x65\x66\xdd\xe5\xd5\xb8\x7a\xf4\xc6\x78\xfb\x37\xff\xc5\xb8\ +\x79\xfc\xfa\x38\x3d\x39\x1a\xa7\x87\x1a\x7c\x33\x23\x64\x02\xe5\ +\x1b\x3b\x2c\xa8\x2d\xd8\x4f\xf2\x5c\x37\xce\xa2\x5a\x16\xd6\x64\ +\x7f\x23\x1b\x2f\xa6\x95\xbf\xe2\xf8\x35\x3e\x29\xd2\x85\x67\x82\ +\xa8\xa4\x99\x0c\x0b\x67\x7e\xa5\xa3\xff\x2f\xed\x48\xb2\x43\x0d\ +\xfe\x6b\x31\xcd\x4f\xa6\xd5\x22\x19\x0b\x68\x5e\x3c\x93\x1d\x37\ +\x7e\x2c\x8b\x9d\x84\xb6\xf3\x93\x69\xf2\xc7\x8e\x38\xa4\xbe\x11\ +\xe4\x45\xbc\x35\xd4\x84\xba\x27\xf1\xd4\xf5\xc0\xed\x80\xd7\xcc\ +\xc4\x58\x72\x66\xfd\xe6\x99\x35\x27\x45\x2f\x6c\x5d\x62\xc4\x2e\ +\x71\x6c\x83\xcc\x3e\xf0\x2a\xca\x72\x64\x55\xa6\xe5\x4b\x0a\x5f\ +\x76\xd8\xc0\x58\x5e\x75\x35\x6b\x66\x49\xed\xb3\x62\xc1\x4c\xc4\ +\x4c\xef\x28\x04\xc4\x06\xc4\xdb\x46\x64\x7e\x95\x1b\xb9\xa7\xd0\ +\x66\xc3\x77\x40\x4f\xec\xf0\x31\xc2\x86\x44\xdb\xda\x66\x4d\xa3\ +\x2b\xba\xed\x0c\x08\x41\xb4\xa9\xec\x05\x59\x60\x84\x02\x87\x76\ +\xeb\x4b\x66\x6c\xb9\x05\xd6\xef\x24\x32\xeb\x13\x73\x89\xad\xac\ +\xfb\xbc\x52\xf7\xf1\xb2\x50\xa4\x54\xfe\xad\xcb\x3e\x6c\x22\x55\ +\xef\x18\xc8\xa1\x09\x5f\xb2\xde\x6f\x50\xc7\x7e\xe1\xa9\x47\x2f\ +\x82\x75\x9d\xa4\x31\x5e\x52\xfa\x74\xd9\x33\x4b\x01\x12\x58\x2e\ +\x3a\xfd\x4f\x5a\xe9\x7c\x0c\xc5\x7f\x02\xf5\x2d\xbb\xf6\xdd\x4d\ +\xca\xf6\x64\x2c\xb8\xd2\x1f\x73\x3f\x98\x36\x85\x89\x09\x4c\x7d\ +\x90\xc9\x15\x3d\xf7\x39\xfb\x29\xb9\xed\x4d\xb7\x5d\xcb\x44\x03\ +\x4d\x17\x5f\x0f\x32\x05\x5a\x5e\x3a\x20\x2d\x56\x52\x46\x82\x41\ +\x36\xdb\xda\x50\xba\x05\x22\x70\x3f\x76\x90\x02\xcb\x0a\x96\x1b\ +\x09\xc1\x9d\x1b\xf7\xf9\x63\x22\x7d\x56\x34\x0c\xbc\x6f\x08\x99\ +\x47\x81\xcc\xc4\xca\x0e\x8a\x73\x58\xe4\xf9\x51\x81\x2a\x61\x5c\ +\x37\x5f\xac\x8a\x2f\xc9\xe7\xae\xa2\x51\x1a\x17\xef\x84\x43\xcb\ +\x08\x0f\xe6\xfc\x67\x19\xa8\x74\x95\xa4\x5c\x64\x18\xa8\x2e\x6b\ +\xb9\x69\x3b\xfa\x6b\x1b\x8b\x42\x41\xac\xa0\x75\x7b\xd0\xb2\xc6\ +\xda\x60\x09\xb1\x74\x78\x54\x2b\xbe\xf6\x69\xd3\x5d\x8f\x59\x27\ +\x6e\x12\x71\x6c\xe9\x5c\x7e\x7d\x39\xde\x79\xfd\x15\x9d\xe7\xef\ +\x8f\xbb\x9f\xf8\xb8\xe4\xb9\x81\xb4\xc4\xee\x38\x29\xc1\x88\x50\ +\xe1\x76\x61\x29\x3e\x70\x9b\xd1\xad\x8e\xb7\x40\xdb\xad\xed\xdf\ +\xaf\xef\x6d\xf0\xad\xf8\x6e\x10\x78\xb7\x3e\xdc\xdf\xf6\x6b\x58\ +\x6f\xcb\xfd\x18\xb7\xe9\x14\x8b\x63\xc3\xe7\xa5\x03\x9e\xde\x3f\ +\x1a\xd7\x87\xd7\xe3\xf3\x9f\xff\x57\xe3\x2b\xaf\xfe\xd2\xf8\xe4\ +\x9f\x39\x1d\x77\xef\x68\xfc\x82\xad\xe4\x5c\x63\xfc\x9a\x47\x3f\ +\x99\xc6\xb5\x24\x63\x8f\x7e\xb2\xff\xaa\x16\xd3\xba\x8a\xf3\xa9\ +\x1f\x97\xb3\x0f\x92\xf8\x5b\x15\xaa\x63\x67\x39\x7e\x94\xfc\x44\ +\x5a\xd2\xd1\x41\x9e\x46\x1b\x47\xbd\x98\x56\x0b\x68\x3c\x89\xa6\ +\x94\x27\xd7\x94\x86\x68\xce\x55\x1d\x63\x3f\x51\x1a\x65\xec\x01\ +\xe3\x08\xd5\x5e\x14\xc7\x2b\x12\xb0\x12\x63\x26\x3e\xd5\x7e\x6c\ +\x8c\x95\x4a\x63\x7b\x5c\x16\x3a\xe3\x4c\x16\x2b\x1c\x0a\x1d\xf2\ +\xb6\x33\xc6\x96\x5b\xc2\x2b\x5d\xa7\x92\x41\x60\xd3\x72\x2b\xca\ +\xaf\xa8\xc8\x68\x4f\x9d\x87\xea\xf2\x5d\x90\xf2\xb1\xe3\x34\xd3\ +\x65\x22\x9c\x65\x55\x02\xba\x0c\x23\x31\x6b\x1c\x79\xc7\x8b\xdc\ +\x32\x33\x89\x69\x5e\x5d\x68\x12\x5a\x9f\x6c\xdf\x80\x65\x55\x77\ +\xea\x06\xc4\x6d\xb1\x01\x90\xad\xf1\x04\xc7\x2c\xb9\xcb\xc4\x6f\ +\x9d\x56\x20\x9d\xcb\x16\x4e\xfc\x3d\xbb\x19\x1c\x7d\xb5\x15\x56\ +\xd9\x54\x09\xd2\x6f\xc4\x51\xee\x58\xd1\x4f\x1b\xc9\xbd\x8d\x88\ +\xc3\xb1\x80\x7d\x2b\x5d\xbf\x15\xc0\x4a\x17\xa9\x6a\x87\xed\x9e\ +\x89\x5d\x2d\x23\x4b\x79\x06\x07\x8d\xcc\x09\x16\xff\xb6\x41\x6c\ +\x42\x99\x68\x58\x83\x6d\x56\x18\x52\xc4\xdc\x4f\x5a\x28\x80\x4c\ +\xdd\x53\x46\x6d\x79\x43\xeb\xd6\xbe\xa1\x65\x57\xfd\xe2\x85\x0e\ +\xf0\x84\xe6\xaa\xad\x24\x71\x96\xb6\x0a\xa8\xba\xcf\x26\xec\xc1\ +\x6c\x8b\xc0\xfa\xda\xdf\x41\x19\x7e\x89\xa0\x00\x6b\x55\x97\xe9\ +\x80\xdc\x7b\x81\x49\x32\x1f\xfa\x4a\xb1\x04\x97\x0c\x28\x5d\xec\ +\xbc\xd5\xc3\x82\x45\x24\x4d\xc9\xf4\x0b\xf2\x32\x55\x1b\x05\xd9\ +\x26\xbc\x87\x4e\x91\x58\xb6\x4e\xad\x5f\x74\x89\xb3\xf0\x49\x96\ +\x39\x65\x9c\xe4\xcf\x94\xd9\xc9\xba\x7e\x92\x9f\xb3\xdd\xae\x5f\ +\xa5\x95\x9f\x32\x7d\x77\xe3\x25\xce\x92\xac\xb3\x58\xd8\xda\x05\ +\xa0\x33\x1e\x6c\x1a\x69\xfa\xae\x0d\xed\x6b\xa2\x90\x70\xf6\x85\ +\x8c\x81\xb8\x66\xf0\xb6\x97\x23\x8d\xff\xbc\x3d\x18\xdb\x59\x73\ +\x23\xd9\x1d\xe9\xae\xc6\x9b\x0f\x5f\x1b\x5f\xfa\xd2\xcb\xe3\x27\ +\x3e\xfd\x17\xe4\x8f\xfc\x48\x31\x78\x72\xd9\x1e\xb6\x9e\x05\x6c\ +\xb0\xc1\x33\x86\x6d\xcf\xda\x60\x83\x67\x07\xdb\x82\xda\x06\x1b\ +\x6c\xf0\xc1\x86\xdb\xae\xfa\x1f\xc4\xb1\xe6\xac\x8b\x88\xbd\x7a\ +\xad\x59\x4f\x9e\x0a\x90\x33\xb8\x67\xb1\xec\xe0\xea\x7a\xbc\xf5\ +\xbb\xbf\x32\x2e\xbf\xfe\xf9\x71\x7c\x7a\x3a\xee\xf1\x03\x6a\x0c\ +\x34\x4a\xcf\xff\xa3\x5d\xf9\x35\x8f\xbc\x9a\x88\x27\xd5\xb2\x90\ +\xa6\xe4\x05\x04\x7e\x51\x2d\xec\x27\xd1\xc0\xb2\xc5\x5e\x3c\x33\ +\x45\x3e\xbd\x98\x06\x78\x22\x98\xc2\xf5\xd5\x64\x45\x83\xfd\xc3\ +\x63\x12\x0b\x6a\x2c\x88\x65\x31\xcd\x0b\x67\x2c\xa6\x79\x41\xed\ +\x58\x34\x72\xec\xb3\x70\xc6\x42\x9a\x5f\xf1\xd8\x98\x45\x34\xd9\ +\x79\x41\x4d\x49\x8c\x65\x6e\x88\x1b\xb3\x6a\x3f\x84\x67\x20\xaa\ +\x5d\x61\x0b\x7b\x41\xc4\x7c\xda\xa3\xc6\x04\xfb\xce\x46\xf1\x8d\ +\x5b\x6e\x1f\xe4\xc2\xb4\xd9\x98\x10\xc5\x37\x2e\xbd\xe3\xaf\x74\ +\xd6\x53\x7e\xe9\xb0\xc3\x44\x02\x8b\x8b\x09\x22\x33\x0e\x1d\xd9\ +\x7e\x52\x06\x26\x9b\x32\xf8\x86\x62\xd6\x76\x82\x9e\x43\x7b\x3a\ +\xdf\xf2\x92\x85\x0e\xaf\x52\x45\x16\xed\x84\xa4\xec\x3a\x26\x78\ +\x1a\x94\x0e\xc0\x16\x19\x4d\xb3\xaa\xdb\x18\x1d\x0a\xcb\x4d\x07\ +\x7b\xeb\x45\x08\xe1\x6f\x16\xe1\x94\xe8\xbf\x0a\x50\xbb\x6c\x32\ +\x7f\x25\x13\x9d\xba\x06\xc7\x2f\x36\x2d\x9f\xfd\x6e\x5c\xdb\xd1\ +\xfa\xd4\x0d\x14\x1e\xa6\xe3\x63\xbf\x94\x95\xfd\x02\x1c\x3f\x1f\ +\x0f\x6d\x87\x9c\xac\xca\x01\x3a\x56\xf6\x4c\xc8\xf0\x33\x29\xf3\ +\xb1\xa2\xd4\xdb\x65\x07\xec\x5f\xc2\xd6\x2b\x4d\xdb\x4e\x82\xf4\ +\x5f\xd2\x93\xe5\x04\xd7\x2d\x9c\x29\xef\xd0\x86\x92\x25\xa1\x0c\ +\xfd\x44\x59\x4e\xca\x9e\x90\x29\x4d\x68\x46\x78\x6d\x5b\xb0\xf4\ +\xc7\x02\xb3\xfe\x6b\xbc\x86\x75\x8c\x35\x0d\xa8\x0c\xef\x17\x4a\ +\xae\x2f\xe0\x57\x6a\x76\xdc\xa6\x85\x4b\x1f\x49\x64\x3b\x37\x17\ +\xf2\x55\x96\x9b\x2b\x26\x7d\xe7\x86\x73\x99\xb9\x9c\x6e\x4a\x07\ +\x95\x14\x94\x1b\x2a\xd0\x25\x6f\x5f\x2b\x73\xbe\xea\xea\xfb\xdc\ +\x8c\x0c\x5b\x9b\xb7\x1d\x31\xea\x86\x8d\x59\x6c\x82\x01\xf3\xc4\ +\x35\x1d\xfb\xb8\x85\x8e\x2f\x69\x2d\x0b\x6e\x3a\x89\x00\xb1\xa9\ +\x5b\x49\xa6\x1d\xf7\x89\x3c\x98\xae\x74\x1f\xb7\x10\x98\x9d\xde\ +\xb8\xd4\x92\xc7\x2c\xf2\xb8\x69\xef\xac\x40\x14\x45\x99\xdc\x14\ +\x9a\xf5\xc1\x46\x04\xa7\x75\x9d\xe8\x75\xfc\x9d\x8f\x07\x7f\xfc\ +\xca\x78\xee\x93\x9f\xd6\xf5\xe1\x39\x5d\x2b\x64\x34\x2b\x01\x38\ +\x48\xd2\x4a\x64\x48\x81\x8b\x1c\x68\xdd\xda\x06\x68\xbe\x61\x9f\ +\x5f\xc3\x7b\xf9\x3e\x0d\xb0\xeb\x04\x34\xdd\xf5\xdc\xe0\xd9\xc2\ +\x7a\xbb\xdf\x06\xdd\xf7\xfb\xb0\xde\x16\x6b\xba\xce\x33\xc9\x2e\ +\x85\x8e\x74\x9a\x39\x1c\xaf\xbd\xfa\x85\xf1\xeb\xff\xee\xbf\x1c\ +\x3f\xf8\xc9\x07\xe3\x07\x3e\x72\xaa\xe1\x09\x4f\x53\x12\xf8\x7a\ +\x9c\x9f\x5f\x8e\xcb\x73\x16\xce\xae\x75\x69\xc8\x6b\x1d\x19\x4b\ +\xf1\x7f\x6a\x79\x32\xcd\x61\x77\xa1\xf8\x5d\xb9\x0a\xf5\xb7\x2a\ +\xe4\xe3\x05\xae\x30\xe7\x04\xbf\xae\x51\x89\xb1\x14\xff\x95\xc6\ +\x2b\x1e\x8f\x54\x9f\xc3\x13\x25\x5e\xf7\xc8\xff\xa5\xf1\xc3\xa4\ +\x5a\x48\x63\x4c\xe5\x85\x35\xfc\x18\x5b\x71\x1c\x56\x1c\xe1\xfc\ +\xe7\x90\x0b\x4b\x91\xce\xbb\x52\x60\x5f\x69\x5c\xd1\x7c\x72\x3d\ +\x0c\xae\x27\xd4\x4a\xc6\x93\x69\xb9\x34\xa6\xc1\x7e\x22\x1c\x5c\ +\x32\xd3\xb6\xb7\xda\xd7\x69\x7f\xa0\x4b\xc6\xb3\x15\xc8\xf9\x4f\ +\x34\x64\x81\xf8\xc4\x08\x3b\x9e\x16\x8b\x7d\xea\x92\x4b\xb2\x01\ +\xac\x46\xa0\xe3\x1c\x02\xf6\x02\x1e\x34\x58\x09\x5b\xdb\x13\xa7\ +\x64\x5c\x4b\x62\x17\x7b\xc0\x3f\x7e\x28\x3f\xd5\x5e\x34\x3a\x21\ +\x93\xa5\x53\x7a\x02\x88\xdd\x31\x2a\x75\x1e\x40\x57\xe5\x16\xa6\ +\x5f\x80\xb4\xa7\xbd\xe8\xd9\xa6\x92\xa5\x4e\x30\x0b\x84\x4d\xac\ +\xa9\xdc\xb1\x81\x59\x45\x55\xe6\x32\xa7\x74\x01\x97\x5e\xa2\xd6\ +\x51\xe4\x9e\x99\xf9\xc5\xae\xfa\x93\xf2\x57\x32\xf7\x8d\x08\xef\ +\x0e\x96\xa9\x54\x78\xb7\x11\x90\x9e\xd8\x2b\x88\x3c\xd8\xaa\x3d\ +\x7d\xd8\xd4\x7d\xb1\x46\x12\xcd\xec\x53\x97\x21\xa9\x2a\x66\x8c\ +\x4c\x29\x11\x94\xa8\x1b\x08\x1f\x65\xc6\x68\xdc\xd8\x30\xd9\xb6\ +\x5d\x56\xc9\x05\xae\xbd\xf5\x95\xa6\x9c\x72\xb3\xff\x20\x8b\xbe\ +\xe3\x95\x55\x87\x29\x39\xf5\x34\xa8\xdc\x26\x77\xc0\x32\x95\x58\ +\xf5\x72\xae\x6c\xd7\x54\x25\x73\x1c\x23\x54\xca\x2b\x1b\x2b\xbe\ +\xf3\x86\xc8\x16\x5c\xb0\x6e\x33\xa4\xf7\x45\x13\xce\xd3\x55\xfa\ +\xd4\x3e\xda\x50\x5e\x01\xdb\xf4\x78\x24\xbc\x87\x2f\xe6\xf1\x6d\ +\x19\x74\x98\xce\xcd\x23\x5f\xd1\x6b\x7e\x2e\x84\x19\x45\xe6\xc4\ +\x78\x46\xe7\x33\xce\x66\x8b\x5c\x36\xc5\x33\x3e\x6a\xb9\x4a\x0e\ +\xdd\x3a\x53\x8b\xde\x32\x27\x47\xf3\x07\xf0\xb9\xd2\xe6\x8b\x4e\ +\x44\x74\xc6\xc8\x60\xd0\x5b\x68\x9f\xd6\x06\x4a\xc1\x76\x52\x9e\ +\xed\x93\x94\x4c\x48\xd8\xbd\x6e\x5d\xfa\x19\x15\xf3\x6f\xcf\xad\ +\x99\x2b\x4b\x79\xc0\xe2\xac\xd4\xee\x47\xcd\xa3\x4f\x4f\x6e\xc6\ +\xab\xaf\x3e\x18\x6f\xbf\xf1\xf6\xf8\xd1\x4f\xff\xa5\x71\x73\x19\ +\x79\x43\x85\x17\x6e\x6a\x83\x0d\x9e\x1d\x6c\x7b\xd5\x06\x1b\x3c\ +\x3b\xd8\x16\xd4\x36\xd8\x60\x83\x0f\x1e\xec\x8e\xfd\x73\xe5\x5f\ +\x5f\xfd\x3f\x48\x23\x81\xfd\xba\xc0\xbb\xfe\x19\x06\x37\xfb\xa4\ +\x99\xa4\x9e\xed\x1c\x8c\x2b\x8d\xb2\x1f\x7d\xe5\x73\xe3\xf1\x7f\ +\xf8\xf5\x71\x70\x7c\x3d\xee\xdf\x3d\xc9\x53\x22\xb9\x73\xa0\x49\ +\x2d\x4f\xa4\x2d\x89\xff\x5a\x63\xb1\x80\x45\x33\xdf\xd8\xf0\xc2\ +\x81\x52\x2d\xb2\xf9\x3f\xd3\x14\xd3\x37\x37\xc0\x2e\x71\x81\x4c\ +\xf0\x52\x36\x0b\x64\x47\x27\x1a\xf0\xf3\x24\x1a\x0b\x61\x1a\xfc\ +\x73\x23\xa7\x9f\x4c\xcb\xd3\x68\xdc\xe0\xc9\x02\x9b\x17\xd2\x58\ +\x78\xe3\x86\x8f\xf0\x51\x2d\xa8\x49\x69\x3d\x8b\x69\xbe\x11\x24\ +\x3e\x33\x8c\x65\x82\x00\x50\x1b\xd7\x8d\x99\x45\x63\xda\x09\x0d\ +\x76\x52\xe3\xbd\x38\x02\x46\xc7\xac\x9e\xf6\x2d\xc9\x36\x6a\x77\ +\x74\xf8\x2e\xf6\xeb\xd8\x8e\x59\xfc\xb4\x9d\xfc\x92\x7a\x71\xa8\ +\xeb\x13\x1b\x57\x38\xb4\x89\xa0\x00\x36\x6a\x9e\x75\x66\x9f\x4c\ +\xc0\x9e\x0c\xe4\xb9\xed\x9a\xa6\x3c\x21\xc3\x3a\x5e\x1b\x71\x6b\ +\x66\x25\xa7\x3e\xec\x3f\x16\x39\x59\x68\xf5\xa4\x77\xe4\x2b\xde\ +\x74\xf8\xec\x93\xa1\x5d\x03\x7d\xa7\xaf\x60\x2e\x7c\x59\x47\x1f\ +\x2d\xf4\xb4\x0d\xe1\x36\x98\x34\x74\x7b\x90\x41\xc1\x43\xd3\x0e\ +\x58\x68\x90\xb3\xf2\x4d\x6a\xd9\x5a\xe7\xf6\xb6\x0c\xdb\x4e\x7c\ +\x77\x62\x22\x8f\x0c\xdb\xe0\x45\x87\xa9\x08\x7f\xc9\x68\x0f\xc9\ +\xec\x94\x03\x45\x80\x9c\xf6\xa6\xb4\x92\xb5\xaf\x7b\xb1\xe9\xf7\ +\x4a\x05\xae\x53\xc1\x8c\xbb\x16\xee\x01\x9a\xdb\xeb\xe9\xe6\x0a\ +\x56\x82\x06\x44\x53\x7c\x8b\xfe\x5d\x20\x31\x0b\x1c\x47\x99\xef\ +\xd6\x80\x23\x9a\x46\xd6\x2b\xad\x9c\xd2\xa6\xf4\xcb\x84\xa6\x57\ +\x78\x6d\xe7\xa7\xa2\xc0\x3e\x37\xb5\xae\x60\xca\x93\xbc\x35\xca\ +\x20\xe2\x6c\x1f\xdf\x0a\x99\xfe\xd8\xb4\xad\x72\xe4\x85\x5b\x06\ +\xf2\x6d\x16\xe8\x96\xb9\x9d\x22\x7d\x07\x08\x91\xb2\xbe\xbb\x24\ +\xbc\x8e\x63\xfb\xac\x2c\x11\x65\x47\xae\xbc\xf8\xc6\x26\x56\x36\ +\x90\xe1\x89\x01\x1d\xb1\x32\xf2\xe2\xc9\xfc\xb1\x29\x14\x32\x3a\ +\xb1\xe8\xc2\x48\x1a\x62\x63\xf2\x29\x10\x6b\x4c\xda\xcc\xc7\x97\ +\x98\x96\x25\xe9\x2c\x53\x8c\xeb\xea\x7a\x42\xa7\x4b\xb8\xc1\x7f\ +\xa9\x73\xf0\xd9\xa3\x37\xc6\x3b\x6f\x5e\x8c\x0f\xff\xc4\x8f\x8d\ +\x71\x79\x3c\xc6\x89\xe2\xbb\x8a\x32\x32\xe0\x34\xa9\x1d\xf1\xc4\ +\x9d\x00\xf0\xba\x41\x6b\x68\x9b\x86\xb5\xcf\x1a\xaf\x61\x5f\xe6\ +\xba\x85\x7c\x2a\xec\xeb\xdf\xcb\x7e\x83\xf7\x0f\xbd\x6d\xdf\x6d\ +\x5b\xbd\x9f\xfe\xc6\x66\xee\x27\xd9\xa8\x16\xe9\xf8\x60\x11\xea\ +\xe2\x4a\x43\x84\x8b\x87\xe3\x57\x7f\xf5\xff\x3c\x8e\x9f\xfb\xfc\ +\xf8\xa1\x1f\x7e\x61\x1c\x7b\xbc\x82\xe9\x8d\x7f\x9c\x74\xf6\xe8\ +\x72\x5c\x6a\xcc\x74\xc5\xb5\x42\xd7\x94\x2b\x68\xc6\x56\x24\x85\ +\x4c\xf8\x54\x66\xa1\xfb\x5a\x68\x4a\x79\xca\xf5\x31\x02\x08\x5b\ +\xa2\x6f\x16\xbd\x38\xcb\x70\xec\x30\x7e\xd2\xb8\xa9\x9e\x4c\xe3\ +\xa9\x34\x16\xd2\xcc\xfb\x69\xb4\x60\x6c\xfc\xa4\x5a\x2f\xc0\xc9\ +\x6f\x2e\xa6\x91\x18\x83\x71\xb6\x9b\xc5\x55\x79\x13\x54\xb9\xaa\ +\xa0\xdb\xe0\x0b\x5f\x5d\x13\xc1\x4a\x7c\x58\x54\x34\x2f\x1b\xbf\ +\xd9\x60\xfd\x3a\x47\xdb\xea\x03\x56\xe2\xa9\x33\x00\x5b\x67\x8a\ +\xef\xc5\x07\x2f\x9e\x81\x53\x96\x17\xd5\xda\x0f\x53\xe7\xd1\xdb\ +\x4e\x6c\x62\xc2\x17\xc4\xc4\x18\x39\x4f\x08\x11\x8b\x5a\xa3\x72\ +\x1b\xa4\x4f\x8c\xb2\x6b\x7e\x65\xd7\x4f\x87\x50\x0e\x9b\x02\x19\ +\xdd\x60\x5b\x17\xb0\x00\xf2\xeb\x32\xea\xba\xc4\x9f\xfa\x07\x82\ +\x69\x01\x76\xf8\x2b\xc9\xc7\xb6\x65\x64\xc4\x82\x9e\x08\xb7\x0f\ +\x99\x6c\xbd\x18\xb3\x6a\xb3\xcd\x6c\x13\x00\x53\xef\x7d\x88\x7f\ +\xe1\xa6\xd3\x80\x40\xe3\x02\x58\xe2\x62\x98\x7d\x00\x87\x6e\x83\ +\x72\x56\x00\x9a\x46\x8f\xa8\x38\x5a\x36\xfb\x25\x0e\x96\xf8\x5b\ +\x7d\x9b\x58\xfa\x54\xa5\x9e\xb4\x17\xac\x8b\x10\x4c\xb6\x88\xfc\ +\x9f\x69\x68\x20\x35\x95\xa0\xeb\xb9\xb3\xb1\x2c\x50\x8a\x13\xb9\ +\x45\xee\x4b\x90\x72\xf9\x31\xfc\x6f\xdd\x2a\xb4\x00\x2e\x12\xf7\ +\xcb\xdc\x27\x56\xd6\x42\x56\x4d\xe8\xfe\x5a\x45\xc2\xc6\x2c\x6d\ +\x2f\x7b\x04\x16\x76\xb4\xf6\x0b\x64\x5f\xc3\xa6\x1d\xe0\x83\x0d\ +\xe8\x40\xf6\x2f\x05\x88\x7d\x8a\x8d\x02\xed\xc0\xd5\x3f\x25\x2a\ +\xd2\x76\x0d\xe9\xc3\x56\x89\x9e\xa7\x03\xd1\x26\x8a\x0b\x0a\x40\ +\x2b\x21\xb3\xbc\x13\x48\x82\xf9\x04\x9b\x71\x14\x9d\x47\x2f\xce\ +\xb8\xed\x9b\x57\xaa\xb1\x11\xf6\xc1\xc5\x57\xf2\x70\x4a\x95\xf4\ +\x62\x92\xcf\x85\xe0\xd8\x2a\x0b\x3f\x93\xf4\x3b\xfe\xd9\x86\xf1\ +\x2b\x5f\x25\xb6\x6d\x62\x2c\x32\x7f\xec\xaf\xe4\xc3\x39\xba\x74\ +\x90\xad\xcb\xb6\xe5\xc8\x02\xf8\x92\x1b\x79\x43\x68\xbb\xd8\x36\ +\x9a\xde\x6a\x56\x4f\x02\x90\xed\x4a\xc8\xe6\xcf\x9e\xa1\xf3\xa6\ +\x98\x63\x9f\xf3\xb3\x81\x52\xb6\xce\x34\x47\xcc\xbd\x75\x8e\x3f\ +\xba\x1e\x5f\xf9\xea\x57\xc7\x9d\xa3\x0f\x8f\x8f\x7e\xec\x07\x35\ +\xef\xc7\x88\x58\x00\xe5\x26\xe6\x06\x1b\x3c\x6b\xd8\xf6\xaa\x0d\ +\x36\x78\x76\xb0\x2d\xa8\x6d\xb0\xc1\x06\x1f\x7c\xe8\x2b\xff\xfe\ +\xd8\x92\x31\xeb\x07\x09\x5c\xb7\x0c\xc4\x3d\xbb\x0a\x35\x61\x87\ +\xb6\xd9\xe1\xe0\x3f\xd1\x2e\xdf\xfa\xfa\x78\xf3\x33\xff\x6c\x8c\ +\xf3\xb7\xc6\xe9\xc9\xc9\x38\xd5\xd8\xdb\x0b\x41\x8a\xc5\xd3\x66\ +\x37\xbc\xe6\x51\x76\x5e\x28\x63\xc1\x8c\x9b\x1f\x73\xd1\xac\x16\ +\xd6\x34\x23\xeb\xd7\x3d\x1a\x8b\xf7\x24\x18\x28\xcc\xcd\x8f\x40\ +\x4d\x12\x0e\x35\xc1\x39\xe1\x75\x8d\x2c\x92\x1d\x67\x51\xed\xf0\ +\xc8\x37\x9d\x58\x4c\x63\x51\xad\x9f\x40\xeb\x57\x3b\xe6\x66\x0f\ +\xb4\x6c\x94\x7a\x01\x2d\xfa\xd8\xc6\x8e\xb2\x52\x0e\xd3\x90\xaa\ +\x49\xba\x87\xfa\x50\x3f\xdf\x61\xa8\x24\xda\xbc\x65\xa9\xbf\x66\ +\x23\xe2\xb1\x13\xed\x14\xde\xb2\x6a\xbf\x3a\x25\xb8\x17\xd7\xd6\ +\x31\x2b\x2e\xd8\xf1\xd6\x72\x97\x81\xbc\xf4\xd8\x51\x39\xca\xb4\ +\x4c\xac\x64\x7c\xb2\x98\x43\x6b\x10\xc6\x8c\x6c\xfe\x2f\x9a\x30\ +\xbc\x6d\x94\x76\x30\xaa\x35\x48\x98\x5d\x83\xa9\x12\x46\xfe\x4e\ +\x39\xe5\x95\x60\x85\x65\x6b\x3a\x6c\xe4\x60\x74\x24\x68\x12\x15\ +\x51\x89\xa6\x91\x5f\xcb\x0f\x06\x99\x22\xbb\x8d\x54\x3a\xbc\xed\ +\xdb\x1f\x98\x32\x6a\x2d\xec\xbe\xb3\x22\x71\xa0\xc1\x10\x4d\x2b\ +\xb9\x7f\x6c\x86\x6f\xe4\xdd\xaf\x3b\x49\xca\x42\x25\x13\x96\x0b\ +\x74\xb6\x25\x64\xc7\x80\x8e\x2c\xb6\xeb\x98\xd8\xb0\x5f\xe0\x8f\ +\x4d\xf8\x8e\xbb\x53\xf6\x15\x08\x5a\x7a\x4c\xca\xc6\x20\xdc\xa4\ +\xc1\x74\xeb\x82\x1a\xbc\x1d\xdd\x6f\x66\x8b\x7f\xff\xc9\x55\x58\ +\xf9\x07\xc4\x38\x50\xc8\xa7\xc2\xdc\xf8\x7b\xa0\xa0\xb8\x4f\x6d\ +\xc7\x32\x94\xf4\x69\x71\x77\x6c\x05\x6b\xbb\xa7\x96\x57\x18\x80\ +\x5e\xa7\x8a\x67\x57\x12\x74\x90\xa0\xa8\xa9\x83\x8f\x2c\x45\x89\ +\x6e\x91\x78\x8e\x0c\x9d\x38\x22\x42\x0f\xd1\x28\x2a\x13\xb9\xd1\ +\x91\x4f\x84\x60\x6e\x62\x87\x9f\x72\xa3\x5d\x99\x9f\x9c\x85\xae\ +\x94\xf3\x94\x28\xdf\x77\x89\xcd\x6d\x69\x9e\xd7\x70\xc7\x97\x63\ +\x13\x1d\x1c\x7a\x12\x72\xd3\xb6\x2c\x9a\x1b\x3c\x8b\x3c\x58\xc9\ +\x37\xca\x5b\xbe\xd2\x4f\x3f\x25\xd5\xcc\x2a\x3e\x7b\x3a\xc8\x54\ +\x86\x7d\x41\x96\xb3\xbf\x9c\x05\xd1\xa7\xeb\x6d\x2a\x3a\xfd\xaa\ +\x6c\x25\x5e\x83\x43\xdb\x6f\x9e\xf5\x74\x9e\x4f\x5d\x49\xb3\xfb\ +\x20\x74\x2e\x7e\xf8\xda\xab\xba\x6e\xdc\x1b\x77\x7f\xe4\x87\x74\ +\x9c\xd1\x89\x76\x49\xa0\x10\x13\x51\xc7\x29\xbe\x0d\xd6\x75\xc2\ +\x6e\x9d\xf6\x61\x2d\x6f\x8c\x7f\xcb\x5b\xb6\x0f\x4f\x93\x3f\x0d\ +\xbe\x59\xfb\x0d\x9e\x0e\xef\xd6\x97\x6b\x1d\x74\x27\x60\xc7\xaf\ +\x37\x32\x90\xf3\x20\x60\x4c\xa6\xb1\xce\xd9\xc5\xf5\xf8\xdd\xdf\ +\xf9\xc7\xe3\xf5\xb7\x7f\x75\x7c\xea\xc7\x4f\xc7\xfd\x7b\x2c\x5e\ +\xc9\xfa\x20\x3f\x3a\x3a\x3f\xbb\x1c\x97\x97\xd7\xda\x7d\x19\x57\ +\xf1\xd6\xed\x2b\x2f\xa8\xf9\x55\xd9\x0a\xef\xdd\x30\x07\x0a\xd4\ +\x02\xf3\x20\xe3\x88\x5b\x51\x26\xc0\x39\x46\xbc\x80\xc6\x71\xef\ +\xc4\x98\x88\xb1\x13\xff\x8d\x76\x3a\x8e\x78\x42\x8d\xa7\xd2\x58\ +\x4c\x3b\xaa\xff\x4b\xc3\xc6\x63\x29\x16\xd6\xe2\xcb\x8d\x58\x9f\ +\x23\x58\x18\xe8\x78\x7c\xea\x00\x6a\x9c\xda\x76\xe2\x42\xc7\x71\ +\x2b\x9a\xb1\x52\xc9\xf2\xff\x68\x4b\xf2\x82\x9a\x64\x8b\x1c\x77\ +\x6b\x44\xa3\x73\x6e\x1e\x70\xb3\x4b\x76\xc5\x22\x92\xae\xbd\x5e\ +\xfc\x52\x7d\x1c\x01\x03\x7f\xf9\x60\x2a\x4c\x3d\x58\xd8\x44\xee\ +\x3a\xd9\xc4\xc9\x59\x05\xaf\xcb\xb3\xcb\xb8\x52\x5b\x6d\x2b\x3a\ +\x0b\x76\x02\x63\x77\xb0\x65\x7e\x2d\x1f\xf4\x3a\x61\x4f\x7d\x2a\ +\xa5\x0f\x2a\x86\xc7\x3e\x25\xb3\x5c\xb4\x0a\x6c\xfb\x94\xa7\x36\ +\x20\xa3\x2e\xd6\xa9\xfe\xe5\x4b\x6c\x0f\x87\x4a\xef\xb8\xc5\x3b\ +\x74\x27\x43\x6f\x13\xca\x8b\x2f\xe5\xf1\x99\xe5\x2b\xf9\x75\x8b\ +\x4a\xd3\xb7\x12\x68\x81\xd2\x03\xbb\x8a\x40\xcb\x64\x46\xfc\x7e\ +\x0a\xce\xed\x6b\x28\x9e\xad\x62\xf3\x5b\xe2\x50\xc7\x35\xe1\x3a\ +\xba\x9d\xa9\x7f\x64\xb5\x8d\xa1\x9d\x0b\x76\x8b\x11\xac\xea\xbb\ +\x82\x5d\x7b\x71\x2d\x00\xab\x1c\x03\x7d\x31\x03\xb2\x4f\x09\xca\ +\xb4\xcd\x5c\x2f\x73\xfb\x80\x7c\x55\x99\x69\x13\xeb\x68\x94\x97\ +\x38\x28\xe5\xb5\xbe\x3d\x02\xcd\xb5\xb6\xc8\x4e\x86\x92\xaf\x60\ +\xed\x75\x1b\xa4\xc4\x94\x19\x2b\xfa\x59\xd2\x55\x28\xba\x61\x61\ +\x43\xcd\x5c\x5f\xfb\x9a\x2c\x29\x88\xf3\x0d\x8a\x84\xf4\x79\x21\ +\xfa\x12\x94\x2d\xd0\x94\xa5\xca\x6c\x29\x67\xdb\xd7\xf9\x2e\x31\ +\xd1\x3b\x73\xea\x4f\x14\xcb\x38\xcb\x18\x0d\x36\x95\xe0\x7d\xee\ +\x2a\xde\x0b\x69\xfb\xc9\x0b\x64\xcd\x37\x4d\xc8\x85\xe7\x6c\x87\ +\xd0\x9f\xb5\xcc\xfc\x5a\xd7\x09\x9b\xd8\x61\x69\x80\xf7\x07\x39\ +\x9e\xb8\xcd\x28\x13\x07\xc2\x05\x56\x7b\xd4\x4a\x0c\x9a\xdb\xc8\ +\xfd\x65\x42\x5f\x6b\x84\x24\xb3\x81\xb6\x2d\xc7\x8c\x4e\x10\x3c\ +\xe5\xcf\x22\x5a\x6c\x28\x4d\x67\x4d\x5d\x8c\x0e\x8f\xcf\xc6\xf9\ +\xc5\xd5\xf8\x83\x3f\xf8\xfc\xf8\x33\x3f\xf2\xe7\xc7\x9d\x93\x7b\ +\x52\x73\x9e\xe7\x57\x1f\xb1\x0c\x2c\xd4\x06\x1b\x3c\x0b\xd8\xf6\ +\xa7\x0d\x36\x78\x76\xb0\x2d\xa8\x6d\xb0\xc1\x06\xdf\x5d\x58\x8d\ +\x47\x0d\xcd\xaf\xe1\x7b\xe1\xca\x5f\x75\xf4\xb0\x77\x4e\x4e\xf4\ +\xf5\xc0\x3e\xea\xd9\x54\x4f\x4a\x25\xf1\xcd\x9b\xcb\xf1\xf6\x67\ +\xfe\xf5\x38\x7f\xe5\x8b\xe3\xe4\xce\xf1\xb8\x7b\xac\x49\x40\x66\ +\x8e\x9a\x68\x5d\xfb\xc6\x4f\xfe\x33\xad\x5f\xf5\x78\x5d\x8b\x49\ +\xc2\xd0\xd3\x46\x34\x32\x30\x72\xfc\x7b\xf2\x5b\xc5\xf1\x7f\x00\ +\x26\x84\x78\x9a\x8c\xff\x4c\x3b\x38\x61\x11\xec\x78\xf8\x15\x8f\ +\x87\xab\xff\x4c\xf3\x42\x99\x12\x4f\xa3\xd5\x82\xd9\x4c\xc7\x27\ +\x96\x65\x01\x2d\xb6\xbe\x11\x04\x96\x5e\xb3\x07\x97\x43\xdb\xe7\ +\xe6\x14\x91\xfa\x28\xf9\xce\x44\x25\x68\x25\xea\xec\x9b\x3f\x95\ +\x5a\x36\xe5\xd5\xae\xa6\xe3\x7f\x65\xbb\xf8\xc1\x07\xbb\x1c\x25\ +\xe3\xc9\x53\xf4\x4a\xa7\x10\xe0\x59\x2f\xcb\x6c\x54\xbc\xa9\xaa\ +\xaf\x90\x30\x5d\x68\x70\x4c\x61\x27\x65\x52\xd8\x27\x04\x16\x01\ +\x54\x4a\x96\x90\x99\xa8\x28\xe8\x40\x25\xb3\xb4\x6d\x3a\x86\xeb\ +\x23\x00\xb9\x0e\x58\x8a\x69\xbd\x50\x16\xfb\x90\x85\x77\x26\xde\ +\xf3\x3c\x7c\xba\x90\xf6\x01\xac\xaf\x36\x54\xdb\x0c\xb9\x83\xe2\ +\x54\xb5\x2c\x90\xa0\xed\xc1\x72\x82\xee\x7e\x5b\xfa\x78\x49\x20\ +\x11\x3b\xb2\xb0\xca\x68\x97\xf0\x52\x77\xe1\x92\x35\x9e\xb4\x9d\ +\x60\x35\x01\xa5\x1c\xea\x0b\xc6\x06\x7d\xf1\x65\x14\x9f\x4a\xd8\ +\x2c\xe5\xc5\xc4\x36\x45\xdf\xda\xe7\x0d\x7b\x6c\xcf\x9b\x41\xb3\ +\x6f\x34\x69\xde\xed\x27\xc1\x9e\xdf\x93\x06\x82\xb5\x0d\xf5\xdf\ +\xf7\x31\xac\x84\x6d\xd3\xd8\x69\xd7\xc9\xdc\xd4\x2b\x33\x46\xf8\ +\x14\x70\x9f\xa8\x72\xd3\x7e\x4d\x83\x6f\x49\x40\xd1\x34\x0b\x72\ +\x75\x84\xef\x02\xf1\x8c\x2b\x19\x56\xfd\x55\x84\xef\x2f\x18\x26\ +\x31\x21\xf7\x1e\x9c\x39\xd9\xdb\x66\xa2\x20\x95\xe5\xa6\x4e\x4c\ +\x6c\x5a\x36\xe8\x10\xf8\xfc\x6b\x32\x37\x55\xac\x3c\x8c\x1c\xda\ +\xb2\x5a\xd4\x8a\x0f\x62\x30\xf2\xc2\x2b\xba\x17\xc5\x1c\x03\x63\ +\xb3\xf8\x82\xeb\xc6\x0d\xbc\xab\x62\xa1\x79\x83\xe5\x91\x99\x76\ +\x2c\xc8\xe2\x6f\xc1\x33\x95\x1f\x9f\xba\xba\x38\x35\x8d\x6e\x76\ +\x34\xa6\x45\x2f\xdb\xa7\x79\xa0\x64\x42\x7d\xf3\x67\x59\x70\x6b\ +\x8c\x2e\x09\x60\x73\xfa\x07\x18\xb4\x5b\x42\x63\x25\x5a\x7c\x75\ +\x79\x3d\x0e\x6f\xce\xc7\x9b\xdf\x78\x75\xdc\xff\xf8\xc7\x75\x1d\ +\x7b\x71\x0c\x5e\xfd\x08\x74\x80\x2a\x19\x80\xea\xdd\xe3\x56\x40\ +\xf7\xa4\xdb\xed\x70\x9b\xfe\x36\x19\xcd\x5a\xc7\x5c\xf3\xef\x07\ +\xbe\x19\xdb\x0d\xde\x1d\x96\x5d\xec\xf6\x7e\x45\xd6\xf2\xb5\x6d\ +\x83\xf5\x64\x52\xae\x77\x52\xc1\x35\xcf\x48\xe9\x38\x64\x3c\xf4\ +\xe6\x1b\x7f\x3c\x3e\xf3\x7b\xff\xc5\xf8\x91\x1f\xbd\x1a\x2f\x7d\ +\xf8\xd4\x7e\x07\x87\x3a\x49\xea\x1c\x77\x71\x71\x31\xce\x78\xdd\ +\xa3\x5f\xeb\xc8\x2b\x1e\xf3\xda\x6c\xfc\xae\xae\x72\x8c\xf9\xa4\ +\xef\x1d\x55\xd7\x8c\x2e\xc2\xe7\xdd\x30\x3e\x26\xaa\xfc\x54\x21\ +\xc7\x46\x64\x3a\x56\x7c\x03\x97\xc4\x0d\x52\x8d\x93\xbc\x90\x96\ +\x05\x35\x3f\x81\xc6\x13\x0a\x5e\x48\x4b\xf2\x53\xff\x7e\x5a\x0d\ +\xfb\xf2\xd5\x78\x8a\xa7\xd4\x64\x2c\x9e\xd8\xc8\xab\xac\xaa\xc7\ +\xee\x39\x58\x35\x97\xd8\x97\x72\xde\x64\xa0\x1e\xc9\xf5\x5a\x6d\ +\x10\xe6\x13\x5a\x3e\xfc\x87\x1a\x63\x47\x19\xbb\x59\x96\x83\x84\ +\x95\x58\x3c\xe1\x32\x01\xb4\xcc\x1f\xc9\x3c\x14\x53\x07\xf8\x92\ +\x23\xde\x63\xcf\xae\x49\x82\x40\x09\xb3\x60\x05\x5e\xc4\xee\x37\ +\x18\x62\x80\x44\x2f\x71\xa8\x3c\x71\x28\xa7\xe3\x05\xbb\x5c\x6c\ +\xda\x76\xfa\x3c\x99\x1c\x1b\x9a\x3a\x09\xe7\x69\xba\x45\xef\x37\ +\x37\x14\xbd\xc8\x84\xe5\x0a\x98\x26\xb5\x8f\x64\x60\x88\xae\xab\ +\xdb\x40\x5b\x22\x0e\xb6\x4d\xce\xca\x34\xc5\x50\x36\x40\xdb\xad\ +\x54\x91\x29\x03\x03\xad\x03\xd6\xf4\x1a\x5c\x3e\x38\xac\xe8\xf4\ +\x73\xd7\xd7\x8c\x0c\x40\x0b\x54\x34\xcb\xbc\x87\x87\xa4\x41\x85\ +\xd9\xc6\x7e\xca\x10\x85\x52\xfa\x04\xde\x5b\x44\xc2\xf4\x23\x64\ +\xb7\x4f\x92\xd8\x98\x4b\x5e\xaa\x9d\x22\xbb\xbc\xde\x6f\xcb\xb4\ +\x14\xed\x1f\xf1\xae\x7d\x99\x8a\x70\x49\x62\xa6\x6c\x02\x92\x05\ +\xb2\x05\x42\xed\xe8\xc4\x76\x73\x75\x00\x28\x95\x6e\x2f\xe0\xe2\ +\xbf\xd4\xeb\x49\x88\x15\x79\xec\x82\x1b\xf0\x8b\x6f\xe4\xfd\x89\ +\xfc\xb6\xa8\x8b\xef\x9a\xc6\x67\x61\x57\xb4\xce\x05\x46\xce\xc1\ +\xa5\x5b\x04\x45\xb7\x60\x61\x7d\x8a\x22\xc1\xb6\x50\xe1\x88\xc1\ +\xb0\xa4\x6d\x82\x21\x4c\x3a\xb5\x2c\xfe\x19\x83\xf5\x79\x2f\xb6\ +\x45\x4f\x5d\xce\x59\x6b\x1b\xcb\xda\xce\xfa\xa6\x77\x93\xb2\xd8\ +\x71\x36\x5d\xc5\xa1\xed\xb1\xa1\xd2\xb1\x7d\x42\xee\xf8\xeb\x72\ +\x96\x24\x11\xdf\xe8\x43\x98\xb7\x7c\x45\xf7\x16\xec\xed\x88\xc8\ +\xdb\x0e\xbb\x92\x85\x59\x64\xde\x0f\x20\xd0\xb0\x5f\x73\xec\x88\ +\x67\x8e\xed\xa2\x9d\xa8\xc7\xcd\x38\x39\x39\x1d\xc7\x87\x57\xe3\ +\xe1\xa3\xf3\xf1\x8d\xaf\xbd\x3a\x7e\xfa\x27\x7e\x51\x73\x7d\x1d\ +\x81\xba\x3e\xe4\x04\x43\xa8\x7c\x36\xd8\xe0\x59\xc2\xb6\x47\x6d\ +\xb0\xc1\xb3\x83\x6d\x41\x6d\x83\x0d\x36\xf8\xe0\xc3\x07\xfd\xca\ +\xbf\x57\x3f\x58\x6e\x06\x78\xe0\xee\x99\x69\x0f\xc8\x81\x4c\xbb\ +\x10\x9c\x5d\xdc\x8c\xf3\xaf\xfd\xc7\xf1\xf8\xf3\xbf\x3e\xf8\xf5\ +\xda\x73\xbc\x7a\xd1\x1f\x29\xf1\xbb\xbe\x1a\x57\xfd\xaa\x47\x2f\ +\xa2\xf1\x4b\x6a\x0d\xce\x35\xa3\xf5\x4d\x10\x64\xdc\x04\xd2\x00\ +\x3c\x8b\x4f\xdc\x00\xe1\xc6\x46\xf9\xeb\x6b\x70\x81\xca\x3c\x88\ +\xd7\xd4\x84\x45\xb1\x13\x5e\xf5\x78\xe2\xd7\x37\xf6\x53\x65\xc7\ +\x3c\x95\x66\x59\x2d\xb0\x79\x21\x2d\xb4\x6f\xec\xcc\x85\x36\x61\ +\x16\xde\xa0\xa5\x67\x01\x2d\x0b\x6b\x4c\x6e\x32\xa1\xa1\x3c\xdf\ +\x10\x81\x74\x5d\x76\x53\x16\x4b\x32\xfb\xcf\x42\x99\x78\xe3\xd0\ +\xd6\xbb\xbd\x2d\xa3\xbd\x45\x0b\x7b\x92\xa2\xfe\xd9\xf1\x23\xb6\ +\xfd\x96\x94\x38\x45\xef\x63\x5c\xec\x4f\x1d\x93\xac\x12\xdf\xd3\ +\xde\xbe\xc9\x10\x88\x8f\x55\x36\x2e\x59\xb1\x01\xe4\x6a\xf4\xe4\ +\x03\x9e\x1b\x75\x02\x1a\x13\xcf\x1b\xa8\xf6\x0b\xc1\xee\xe4\x49\ +\x86\xfa\x52\x1f\x57\xa3\xd3\x6c\x57\xd9\x5a\x16\x32\x36\x64\x05\ +\xe6\x49\x25\x2b\x7e\xd5\xac\x64\x25\x4f\x23\xab\x0d\xee\xa4\x2a\ +\x1b\x16\xa2\xec\xbc\x30\x8c\x0e\xa6\xec\x92\x82\x16\x7e\x49\xf6\ +\x57\xdd\xfd\x81\x67\xbb\xe2\x6b\x99\xc0\xed\xaa\x32\xbd\x6d\x3a\ +\x2e\xf1\xd8\xc7\xb1\x49\x6c\x3e\x07\xc8\xd0\xcd\x27\x0b\x25\xb5\ +\x6d\xf9\x57\x39\xc1\x31\x89\x4e\x18\xb0\x00\x9c\x24\x4d\xe8\x02\ +\x6f\x99\xd2\xb5\x3c\xdb\x72\xbd\x8d\xca\x0e\xa2\x6c\x2c\xc1\xd0\ +\x75\xed\xbe\xdc\x4b\x6e\xeb\x2d\x72\x27\x65\xf6\xad\xb4\x4f\x03\ +\xcd\xef\x24\x65\x60\xd9\x74\xd3\x6e\xd5\xff\x09\x52\xda\xad\xcc\ +\xed\x81\x59\x41\xd9\xcc\x04\xac\x8e\x83\xdc\x1b\xa0\x97\x1a\x56\ +\x7b\xb9\x08\x73\x6d\x5b\x9f\x7c\xb1\x22\x05\x85\x17\x86\xae\xf3\ +\x4c\x30\x37\x4e\xcc\xc6\x86\xef\x4a\x4f\xca\x8d\x0e\xe8\x9c\xa3\ +\xa2\xce\x0d\x99\xc8\x83\x95\x79\xc1\xac\xe5\xd0\xd1\x49\x45\x9b\ +\x44\x73\xa3\x24\xb2\x8e\xb5\xeb\x0f\x4d\x79\x96\x4b\x82\xdc\x1f\ +\xdb\xf8\xce\x55\xe8\xb6\x71\x22\x16\xa2\xba\x49\x84\x51\xfb\x18\ +\x0b\x21\xe3\x0b\x13\x81\xad\x0c\xe6\xab\x13\x85\x4a\x6d\xc8\x7e\ +\x8d\xb0\x04\x05\x61\xd9\xa1\x52\xda\x0e\x68\xa3\xf9\x06\x77\xf5\ +\x2d\x2d\xe2\xd5\x73\x83\xd7\x15\x39\x38\x49\xad\x54\xff\xb0\xa8\ +\x76\x71\xf6\x60\x3c\xf8\xfa\xdb\xe3\x23\x3f\xf9\x93\x12\xdf\xc9\ +\xa2\x9a\xcb\xc4\x0e\x10\x2e\xb7\x96\xbc\x27\xdc\x66\x58\x31\xde\ +\x33\x08\x5d\xd1\x36\xe0\x35\xdf\xf0\x5e\x31\x80\xf7\x63\xb3\xc1\ +\xed\xf0\xb4\x3e\xef\x04\xec\xe3\x7d\x58\xeb\x49\xc4\x04\xb4\x5f\ +\x45\x85\x40\x09\x5e\x82\xab\xc7\x07\xe3\xfa\x68\x8c\xdf\xf8\xad\ +\xff\xeb\xb8\xb9\xfb\xfb\xe3\x13\x9f\x3c\x19\xa7\x1a\xe7\xf4\x23\ +\xe5\x57\x37\x97\xe3\xfc\xfc\xc2\xfb\x6c\xff\x67\x1a\x4f\xa9\xf1\ +\xaa\xc7\x3c\x11\x95\x4a\xa7\x18\xe5\x26\x72\x2c\x44\x5a\x15\xaa\ +\xf2\x3b\x4f\xf9\xe0\x3e\x27\x70\x13\x98\x27\x0d\x18\x2b\xb1\x90\ +\xc6\x0f\x91\xf8\xdf\x34\x16\xd0\x8a\x07\xb3\x98\xe6\x05\x35\xfe\ +\xdb\x4d\xe3\x2c\xf9\xe4\xe6\x31\x09\x5e\xf6\x2c\x66\x13\x7b\x96\ +\x08\x16\xa4\x92\x02\xea\x99\x8b\x84\xaf\xab\xa2\x0f\xd4\xde\xf5\ +\x62\x1a\x18\x09\xc7\x7b\xc6\x90\x57\xe6\xf9\xc4\x4f\xb9\x7d\x93\ +\xf2\x9a\xc7\xe8\xfb\x5a\x9a\xa7\xbf\x62\xe7\xd2\x44\xf3\x5a\x33\ +\x8f\xf5\x2c\xaf\x54\x3a\xfe\x4f\x0d\xc6\x31\xac\x13\x2f\x47\xe4\ +\xbc\x72\xd1\x61\x01\x3b\x24\x46\xec\x49\xe9\x6d\x12\xd0\xb8\x89\ +\xa0\x1d\x66\xda\xd0\x3b\x4d\x03\xa9\x13\x9f\x5d\x39\xe0\x9e\xb4\ +\x7e\x81\x49\xa3\xb4\x41\x80\x36\x77\xf0\x16\x63\xcb\xa6\x99\x75\ +\x17\x63\xff\xe6\x57\xf4\x3e\xac\x42\x4f\xd8\x91\xe1\xb3\x12\x2c\ +\xb1\x2a\x98\xcb\x55\x3f\xba\x4f\x23\x72\x9f\x22\x2f\x7e\x96\x5d\ +\x2e\xc1\xf4\xbd\xb6\x61\xfb\xc8\x09\xd2\x2a\x77\x96\xce\xf3\x7e\ +\x3a\x4f\x24\xdb\x09\x0d\xca\x46\xc6\xbe\xa2\x8a\xa8\xf6\x72\x91\ +\x37\x01\x5d\xb8\x61\x8f\x8f\x69\x09\xe3\x3c\x5d\x81\x49\x43\xb4\ +\xaf\x9c\x52\x1e\xb4\x50\xf9\x35\x84\xaa\x7d\x06\xa6\xf4\xec\x82\ +\xdd\x5f\x46\x36\x24\x53\x2a\xb9\x41\xa4\x0f\xb1\xc5\xc8\xb0\xc4\ +\x6a\x79\x63\x62\xab\xbc\x75\x8c\x77\x05\x6c\xdb\x5b\xfe\xfa\x76\ +\x24\xae\xb1\x45\x2c\xb8\x6c\x52\x29\xce\x27\x2b\x59\x03\xe5\x1b\ +\x11\x51\xfd\x53\xb6\x56\xf5\x07\x17\x9d\x0b\x72\x6e\xb2\xca\x68\ +\x9a\x56\xc2\x36\x5f\xfa\xb9\xfc\xa4\xb2\x4c\x4c\xfc\x5b\xbe\xd0\ +\x8c\x0e\x16\x7d\x9f\xfb\xd6\x8b\x69\xc2\x84\x11\xad\x2c\x7c\xe9\ +\x1c\x46\x9f\xdd\x45\xb9\x25\x86\x69\x4a\x68\x9e\x8f\x7d\x22\xb3\ +\xb7\x05\x6b\x9f\x9c\x3f\xa5\xca\x79\xd4\x6d\x68\x1d\xb6\xc2\xe5\ +\x07\x8b\x01\x7c\x18\x40\x3d\xda\x3a\x03\xcb\xf1\x36\xf3\xb1\xb0\ +\xde\x0f\xd9\x37\xb2\x05\x0a\xcc\xaf\x25\x29\xc7\xdb\x48\xd9\x91\ +\xc6\x4e\xae\x83\x35\x02\xed\x10\x27\xa7\x87\xba\x16\x1d\x8c\xaf\ +\xbf\xf2\xea\xb8\x7c\x7c\x3e\x7e\xe4\x47\xfe\x92\xe7\x33\xec\x5b\ +\x2e\x0e\x33\xdb\xc7\x6f\x83\x0d\x9e\x05\x6c\x7b\xd3\x06\x1b\x3c\ +\x3b\xd8\x16\xd4\x36\xd8\x60\x83\x0f\x3e\x7c\xd0\xaf\xfc\x5d\x3f\ +\x66\x4b\xab\xc1\x72\x06\xdb\x19\x0c\x4f\xb0\x09\xbf\xa0\xbe\x1a\ +\x97\x17\x6f\x8d\x07\xff\xf6\x9f\x8f\x83\xcb\x37\xc7\xfd\x53\x5e\ +\x47\x24\x6b\xcf\x60\x65\xb7\xb3\x98\x56\xff\x9b\xa6\x49\xaf\x17\ +\x20\x58\x58\xe2\x86\xc8\x65\x6e\x8c\x24\x71\xb3\x23\x58\x19\xdf\ +\x2e\xae\xea\x97\x89\x05\x8b\x5e\x3c\x61\x76\x70\x52\x0b\x66\x47\ +\xfc\x0f\x5a\x16\xd3\x0e\xfd\xb4\x1a\x72\x25\x3f\x85\x06\x2d\x5b\ +\x30\x8b\x70\xb2\xe7\xbd\xef\xfd\x04\x9b\x18\x63\xfc\xa5\x1c\x37\ +\x2c\xa8\x71\xc3\x55\x40\xb9\xbe\x7d\xe1\x8a\x50\x1f\xea\x5e\x7c\ +\xd1\x91\xb1\x28\xa6\xf6\xd0\xae\x1d\x4c\x9b\x85\x59\x34\xf4\x8d\ +\x2e\x64\xf4\x81\x12\x72\xf3\xc4\xd8\xa5\xe7\x22\x4a\xc5\x5f\x2f\ +\xb4\x70\xc7\x60\xe9\x9f\xd2\x37\xc6\xaf\x31\xf5\xb6\x3f\x24\x72\ +\xbe\xc8\xc4\x5b\xab\x09\x95\x95\x56\x85\x0e\x1b\x28\xda\x48\x99\ +\x27\x42\x30\x33\x56\xcb\x81\xda\xe6\x4d\xef\x80\x78\x54\x38\xa0\ +\x9a\x75\x0b\x9a\xf7\x2f\x9c\x01\x10\x08\x57\x0a\xd3\x95\x5c\x0c\ +\x75\x8f\xca\xe5\x82\xa7\xdd\x5a\xb6\xa2\x3b\x91\x49\x96\xff\xbb\ +\x82\x5e\xa7\xaa\x8f\x52\xec\x97\xfe\x9d\xc2\xa2\xd3\x97\xc5\xd3\ +\xcf\x84\x06\x5c\x1e\x7e\xa2\xa9\x2b\xb4\xf1\x2a\x29\xf3\x36\xb7\ +\xaf\x58\x48\x62\x39\x9e\xea\x40\xbc\xd2\xf5\xbe\xb0\xc4\x09\x6d\ +\xbb\x96\x91\xd4\x1c\xa6\xbc\x58\x27\x5b\x01\xe6\xeb\xcd\x82\x1e\ +\xde\xb8\x08\xc7\x56\x84\x95\xae\x0f\x65\xdb\x75\x5a\xf3\x80\x69\ +\x65\xfb\xba\x4e\xc8\x00\xe8\x35\x34\xdf\xbe\xfb\x09\x98\x98\xfe\ +\x00\xef\xa5\x82\x6e\xca\x3e\x20\xbf\x5d\x73\x0b\xec\x99\xc5\xb7\ +\x40\x8c\xf9\x3e\x2f\xae\xce\x8f\xe4\xb8\x46\xcf\xb7\x78\x6c\x94\ +\xd6\xf2\x15\x63\x7d\xcb\x82\x95\x0c\xe2\x6a\xf1\x2b\xe5\x44\x17\ +\x75\xdf\xcc\x69\x6c\x6b\xd3\x9d\x72\xf3\xc6\x8a\x29\xbb\x59\xc7\ +\xab\x14\x3a\x36\x3e\x67\x23\x5b\xdf\xf4\x99\x29\x36\x6d\xdf\xf2\ +\xf8\x96\x7d\xd5\x8b\x14\x9d\xb0\xca\xd4\x37\x6d\x89\xa3\xed\xa2\ +\x56\x86\xbb\xf3\xe2\x4b\x96\xbe\xec\x3e\x5d\x36\x4a\x9e\x3e\x93\ +\x86\x1d\x01\x53\xef\x10\xc0\xca\x66\x87\x4e\xe2\x46\x64\x16\x0e\ +\xaf\x7d\xf5\xa8\x23\x64\x1c\x71\xd3\x7f\xf6\x8b\xae\x27\x7e\x72\ +\x2d\x4f\x05\x9d\xbf\xfd\xf6\xb8\xbc\x39\x19\xcf\x7f\xfa\x53\x89\ +\xe2\xba\xe1\xd7\x51\x17\xf4\x9e\xf0\x7e\xed\x9e\x06\xed\xbf\x34\ +\x2d\xb0\x8e\xfb\x7e\xca\xe8\xea\xff\x69\x81\xef\x64\x7b\xde\xab\ +\x9c\xfd\x6d\x03\xe0\xd3\x69\x0d\xf0\xeb\xba\x9b\xef\x00\x62\x0e\ +\x2e\x95\x1f\xf9\x92\xff\x85\xcf\xfd\xf2\x78\xf9\xb5\x7f\x32\x3e\ +\xfd\x13\x27\xe3\x54\xe3\x1a\x0d\x04\x6c\xc5\x13\x5a\x97\x97\x17\ +\xe3\xfc\x1c\xcc\xf0\x82\x45\xb5\x3c\xe1\x9f\xa7\x96\xd8\xcf\xbb\ +\x20\xa0\x0b\x03\x42\x77\x9e\xe3\x97\x72\x61\xc3\xaf\x8f\x6b\x7e\ +\x84\xc4\x42\x99\xc7\x4c\x3c\x9d\x56\x4f\xa6\x79\x11\x8d\x85\x35\ +\x16\xca\x58\x30\xe3\x29\x35\xc9\x4d\xab\xfe\xbd\x98\xc6\x98\x2b\ +\x4f\xb0\x25\x66\x97\x99\x02\x1b\xa8\x33\x49\x17\x0b\x1d\xe7\xd4\ +\xda\xd7\x3f\xb5\x33\xf2\xe8\x58\x2e\x59\x63\xeb\xbd\xe0\xc6\xb8\ +\x11\x9b\xf8\x75\x9a\x97\x23\x78\xae\xa9\x15\x9b\x85\x30\x6c\x73\ +\xb9\xcd\x39\x01\xde\xb2\xf6\x51\x42\x70\x73\xad\x73\x42\xd3\xd8\ +\x88\xf1\x82\x9a\x6d\xeb\x8c\x33\x33\x9d\x07\x7d\x0d\xad\x54\x7a\ +\xfc\x3d\xae\x28\xb3\x1d\x0c\x49\x3c\xfa\xa3\x70\xb6\x5d\xe4\x5d\ +\x1f\xc0\xf4\x8e\xcd\x52\x86\x53\x1b\x0a\x5c\xe7\xe9\x59\x80\x8b\ +\x44\x6c\x59\xbf\xa2\xaf\xfd\xdd\x26\xf9\x38\x08\x86\x0b\xb8\xcd\ +\xc6\xbb\x76\x91\x41\x48\x0e\xb3\x06\xeb\x13\x3f\xb4\x7c\xa6\x2f\ +\x7d\x0a\x5d\x65\xbb\x7c\xb5\x13\x59\x19\xd3\x44\xef\x93\x4e\x41\ +\x29\xd3\x16\xb2\x07\xe3\x6b\xc6\x71\xcd\xbb\x6f\x2c\x15\x88\xae\ +\xba\x79\x71\x50\xf1\xd1\xa5\x5c\x48\xef\x45\x50\xb1\xc3\x7e\x29\ +\x2e\x7c\x0b\xb0\xf3\x3e\xdb\xba\xc2\x93\x50\x6a\x10\x3d\x63\x59\ +\xde\x46\x01\xd6\xc3\x6d\x53\x22\x6c\x6d\x6a\x41\xa7\x6e\x5f\xb5\ +\xd7\x36\xd4\x7d\x09\x0b\x26\x87\x4e\xb6\xe0\xb6\x49\xfd\x62\x69\ +\x49\xe9\xfd\xff\x8c\x37\x87\xd3\x2d\xc6\x95\xf6\x61\x4f\xe6\x63\ +\xc9\x94\xe2\xe6\x3b\x21\x45\x49\xeb\x6b\x75\x39\x5a\x46\x56\xc6\ +\x24\xb5\x75\xfe\x27\x1d\x09\x64\x9c\x73\x03\xc7\x95\x5b\x86\x70\ +\xda\xb4\x03\x28\xba\x9c\xa3\x4a\x24\x7d\xb8\x48\xb8\xd6\xb7\x7b\ +\x13\xf3\xbc\x63\xdf\xf0\xf6\x69\xba\x78\x7f\x9a\x16\xf6\x38\xc6\ +\xf4\xca\xce\x74\xce\x69\x5e\x48\xb3\x9e\xf3\x65\x74\x19\x53\xe9\ +\xfc\xe7\xf2\x5d\x1b\xcb\xb2\x48\x26\x2c\x1e\x1c\x3f\x6b\x57\xb8\ +\xc7\x77\x9d\xc4\xda\x6e\x2d\x87\x4c\x5c\xcb\xaa\x9d\xe8\x4a\x64\ +\x4c\x66\xd2\xf2\xda\x26\x0d\xcd\xb2\x3f\x14\xb9\x43\xd8\xbe\x04\ +\xb0\xfa\x30\x87\xa5\x1a\x9e\x2f\xdb\x2f\x65\xf2\x56\x98\x93\x53\ +\x19\xe9\x32\xf5\xa5\xaf\xfc\xf1\x78\xf1\xde\xc7\xc6\x4b\x2f\x7d\ +\xc2\xdb\x3a\x95\xe9\xed\x03\x2c\xd4\x06\x1b\x7c\x2b\xb0\xed\x47\ +\x1b\x6c\xf0\xec\x60\x5b\x50\xdb\x60\x83\x0d\xbe\xbb\xf0\xb4\xab\ +\x3a\xf2\x65\x0c\xf9\xc1\x87\xae\xef\x6a\xdc\xbd\xc7\x96\x09\xd3\ +\x97\xeb\x71\xa8\x89\xed\x1b\xff\xfe\xd7\xc6\xc5\x57\x3f\x37\x4e\ +\xef\x9c\x8e\x53\xc6\xd8\xe8\x71\x60\x31\xad\x5e\xf3\x08\xf6\x22\ +\x1a\x93\x5f\xb0\x17\x95\xc2\xf3\xaa\xa2\xbc\xea\xb1\x6f\x8a\xc8\ +\x99\x09\xb3\x67\x83\x29\x9b\x09\x71\x6e\x8a\x32\x09\xd4\x94\x83\ +\x45\xb1\xd3\x63\x2f\x8a\x65\x31\x4d\x3c\x34\x8b\x6c\xfc\x72\xda\ +\xf2\x2c\xa2\xa1\x8b\x8c\xc5\x34\x5e\x07\x29\x39\x37\x78\xb0\x39\ +\xac\x05\x35\x3f\xa1\xc6\x82\x5a\x4f\x6a\x32\x3d\x73\xe9\xaa\x87\ +\x29\xcf\xe8\x49\xd4\x9f\xfa\x69\x66\xac\xba\x2f\x77\x0a\xd2\xb6\ +\xc6\x69\xe3\xd5\xe0\x49\x34\x9e\x52\xe3\x0e\x59\xeb\x3b\x65\x21\ +\x2e\xbe\x62\xf4\x4d\x7c\xb7\xbf\xcb\x2b\x6c\x1e\xb9\xeb\x10\xbe\ +\x6d\x5a\xa6\x6c\xf1\x9b\xa2\xd0\x80\xb7\x8b\x69\xda\x84\x1f\x34\ +\x6c\x11\xa5\x87\xb5\x5e\x79\xb6\x77\x00\x75\xf5\xca\x2a\x56\xb4\ +\xe9\x33\x0b\xbc\xad\x42\x2a\x8b\x68\x01\xeb\xf6\x84\xd4\xb9\x01\ +\xb2\x59\x61\x47\xb7\xac\x63\x16\xb8\x5d\x24\xe8\x88\x72\x17\x49\ +\x0c\xd8\xb2\x95\xde\x49\x2d\xa2\x7f\x57\x7c\xea\x02\xee\x45\xb6\ +\x16\x15\xa1\xe4\x6d\xbd\xe2\x23\x13\x76\xbd\x49\xca\x65\x42\x9f\ +\x44\x3e\xc5\xe1\x9b\xf6\x76\x16\xc1\xb6\x5b\xd9\x41\x3a\x53\x4a\ +\x51\xd4\xb3\x6c\x8c\x5b\x1f\xbc\xcb\xaf\x65\xda\x06\xc2\xcc\x5f\ +\xed\x0b\x14\x9a\x75\x12\x9e\xdb\xc7\x74\xc9\x1b\x9a\x6f\x7b\x6c\ +\xd7\x06\x6b\xbe\xc5\xb6\x0b\x19\xa2\xf7\x9e\xb0\x96\x14\x36\x34\ +\x31\x05\xfb\xb0\x36\x7e\xbf\x40\x89\x94\xfc\xfe\x81\x45\x1a\xf7\ +\x97\x1d\x77\x3d\xdd\x87\xe0\xb0\x86\xe5\x68\xe8\x23\x23\x5c\xd3\ +\x0d\xbe\x79\x01\xae\xdc\xe7\x14\x33\x25\x31\x5f\x09\x99\xb1\x15\ +\x96\x81\x0d\xe6\x17\xf9\x0d\x37\x50\x10\x14\x2f\x82\x3b\x37\xe6\ +\x7d\x6b\xc5\x36\xe1\x93\xaa\xa6\xdc\x01\xd1\xd7\x82\xd2\x71\xe3\ +\xa7\xf9\xc4\xac\x73\x5f\xd1\x96\xe3\xb2\x63\x13\xbc\xb6\xb7\xde\ +\xe6\x8b\x2e\xfa\xb2\x5f\xe9\x13\xca\x12\xd7\x0b\x41\x59\x04\xb0\ +\x29\x14\x32\x3c\xd7\x1a\xf6\x28\xf3\xb4\x03\xd2\x00\x31\x99\xd8\ +\x14\x1b\x7b\x81\xf6\xd7\x2a\xda\x65\x43\xf8\xf8\x42\xaf\x3e\xe0\ +\xb5\x8f\x7d\x93\xeb\xe8\xe8\x70\x5c\x72\xfc\x5d\x9f\x8d\x77\x5e\ +\x7e\x63\xbc\xf0\xa9\x1f\x1a\x47\x77\x3f\x94\xbe\x22\x1c\x41\x00\ +\xe3\x30\xce\xd7\xba\x67\x05\xef\x16\xb3\xe5\x60\xd2\xfb\x29\xff\ +\xbd\xf4\xdf\x6b\xf0\x41\x68\xcf\x7b\x6d\xa3\xf7\xda\x2e\xa5\x5b\ +\x4c\xd8\xcf\x8f\xc6\xc5\xf5\xc5\x78\xe5\x8d\xdf\x1f\xff\xee\x77\ +\xff\xc1\xf8\xd8\x0f\xbf\x33\x3e\xfc\x11\x8d\x51\xfc\x94\x17\xe7\ +\x38\x7d\x34\xa6\x38\x7b\x74\x39\x2e\x2e\x74\x64\x68\x5c\x91\xa7\ +\xd3\x32\x7e\xf2\xf9\x59\x76\xec\xd2\x0d\x54\x23\xc0\x5e\xaf\xe3\ +\xa1\xea\x95\x63\xd1\x84\x05\x39\x3e\xfa\x3c\x70\xa8\xe3\x82\x32\ +\x4f\xc6\x51\x3d\x95\xc6\x82\x1a\xe3\xaa\x23\x2f\xa2\xd5\x38\x4a\ +\x63\x2b\x2f\xb8\xc9\x56\x03\x30\xc9\x6b\x31\x8d\x85\x34\x0e\x56\ +\x64\x39\x01\xb8\x2c\xd3\xca\x03\x5d\x33\x30\x6d\xd7\x18\xa8\x59\ +\x5f\x80\xe0\x2b\xf1\x63\x2c\x14\xba\x40\xaa\xb5\xc6\x1e\x4f\xb2\ +\xa0\xa6\x76\xfb\x72\x25\x9c\x4f\xe8\x0c\x85\xc4\x83\x7d\xae\x57\ +\x09\xbc\x0a\xd3\xbe\xab\x4b\x9c\xfd\x42\x5b\x51\xd8\x0b\x3d\x56\ +\xa4\xdf\x22\x86\x4e\x79\x6e\x87\x7d\x31\x92\xdc\xf6\xc4\x97\xd8\ +\xb6\x76\x2d\x26\x28\xf6\x01\xf4\x6b\x0c\x40\x4e\x7f\xc7\xb7\x58\ +\x68\x31\x9a\x7e\xeb\xa4\x6c\xcd\x93\x2f\xb4\x40\xa1\xba\x2a\x64\ +\xd6\x81\x2d\x48\xfb\x66\x79\x4a\xe9\x4f\x74\x11\x19\x37\xef\x4e\ +\xa1\x9d\xb1\xef\x38\x49\x2a\x57\xce\x93\xaf\xb1\x0e\x32\x6f\x0f\ +\xfc\x9d\xaa\x9f\xca\x76\x07\x5c\x78\x48\xc0\x7a\xf3\xdd\x1f\x8d\ +\x13\xdb\x4f\xa1\x99\x47\xb4\x6a\x83\x0b\x08\xef\x1f\xea\x61\x27\ +\x56\x5f\x97\x0b\xa4\x0d\xf4\x55\xb6\x70\x72\xbb\x08\xa0\x95\x22\ +\x6a\xb4\x03\xb3\xcf\x6e\x01\x1f\x67\x82\x7d\x35\x4f\xed\xac\xf7\ +\x29\xc0\xf5\x77\x28\x3e\xef\x02\xb6\x53\x76\xc3\x15\x3f\x82\xf6\ +\xad\x00\xd3\xbf\xf1\x02\x18\x51\xae\x00\xbb\x55\x5f\x55\xb0\x77\ +\x81\x36\x52\x2a\x37\x60\xdf\x95\x23\x3c\xed\xe2\x1c\x12\x49\xdb\ +\x46\xaa\xa4\x0c\xbb\x86\xb6\x23\x2d\xf1\x2a\x92\xcf\x1b\x65\xa3\ +\xd4\xbe\xd3\x07\x7d\xd1\xd6\x39\x95\x0c\x3a\x19\xdf\x80\xae\xe5\ +\x56\xd9\x06\x45\x6c\xbd\x28\xb6\xe2\xc9\xe8\xe1\xb9\x30\xb6\x92\ +\xa5\x4e\xb1\xf3\xa2\x16\x44\xd9\x4e\xde\x74\xec\x42\xdb\xb3\x62\ +\x88\x76\x3d\x90\xc7\xd7\xb6\xd0\xe0\x15\x9f\x0f\x31\x31\x0b\x5e\ +\xeb\x3c\x37\xd6\x07\xc5\x8e\x3f\x32\x5c\x90\x99\x60\xab\x40\xaf\ +\xf7\x3a\xec\x85\xdc\xe9\x91\x3a\xaf\x6c\xd2\x24\xed\x64\x96\x08\ +\x73\x2c\xf1\xe3\xa3\x6e\x6b\x17\x71\x72\x72\x3c\x4e\xee\x5e\x8d\ +\xc7\x17\x63\x7c\xf5\x2b\x2f\x8f\x9f\xf8\xf1\x3f\x3f\x0e\x6f\x72\ +\x0d\xc9\x0f\xa2\x96\x70\x9d\x6f\xb0\xc1\xb7\x02\xdb\x5e\xb4\xc1\ +\x06\xcf\x0e\xb6\x05\xb5\x0d\x36\xd8\xe0\xbb\x0b\x3d\x63\x58\xc3\ +\xfa\x4a\xff\xb4\xab\xfe\x6d\x7e\xdf\x15\xd8\xaf\xc8\x32\xe4\xf5\ +\x58\x7b\x95\x7a\xf0\xcd\xff\x76\x3c\xfe\xc6\x1f\x8e\xb7\x3f\xf3\ +\x2f\xc4\x5f\x8e\xe7\x4f\x35\x68\x46\xc5\xec\x4e\xe9\xe6\xfa\x72\ +\x5c\x5d\xf0\x9f\x69\x17\x4a\xf5\x54\x96\x6f\xfc\xb0\x88\xd4\x34\ +\x37\x36\x44\xb3\xd8\xe4\x99\x75\x66\xdd\x7d\x13\x24\x05\x32\x8c\ +\x67\xd0\x4e\xd2\x54\xe4\x98\xc5\xb3\x93\x71\xc8\xd3\x69\xab\x45\ +\xb2\x2c\xa6\xc1\xb3\x98\x46\x5a\x68\x19\x64\x61\x8d\x5f\x50\xd7\ +\x4d\x20\x2f\xa4\x1d\x1d\x5a\xee\xc5\x34\xd1\x94\xc3\xa4\xc5\xbd\ +\xe1\x0a\x68\x12\xd1\x75\xf1\xdd\x80\xae\x23\xb3\x71\xf1\x5e\x20\ +\x09\x4f\x7b\x58\xac\x61\x81\x30\x0b\x65\xb4\x9d\xf6\x45\x47\x1f\ +\xa8\xc1\xd1\xf5\x22\x5b\xf9\xa5\xcd\x85\x2d\x23\x36\x74\xca\xcc\ +\x4d\x03\xe8\x4a\x2b\x3a\xb6\xa9\xaf\xed\x4a\x35\xf5\x93\x16\x06\ +\x90\x19\x9b\x5b\x78\xe0\x09\xc2\x1b\xa0\x20\x32\xf7\x91\xf1\x92\ +\xa3\xb2\x9c\x66\x61\xd6\x09\x90\x2c\x13\xae\xe8\x27\x94\xab\x81\ +\x89\xbd\x71\xea\xdb\x37\x22\x76\xe2\x34\x8d\x41\xd1\xf6\x82\x26\ +\x6b\x47\xf3\x00\x04\xdb\x0f\x71\x2a\xb6\x6c\x4b\x54\x6c\xaf\xd8\ +\x38\x19\x81\x2b\x55\x1f\xbb\x4f\x01\x58\xfb\x2d\xc9\x9a\x8a\xd5\ +\x3e\x36\xdf\xf1\x0f\x7f\xc0\x76\xc5\x1e\x01\x04\xb6\xf8\x3a\x50\ +\x52\xb6\x1f\x4a\xf0\xca\x76\xea\xf4\xc5\xc7\x65\x76\x9f\xbd\x47\ +\xb2\xed\x6d\xa9\xb6\xe4\x5a\xb6\xb6\x05\xd6\xba\xb5\x1c\x78\x42\ +\xb6\x56\xee\x41\xa9\xba\x69\x94\xbb\xb8\x89\x2a\xf9\x22\x14\xac\ +\xe9\xa7\xc2\xfb\x32\x0a\x74\xa1\xd5\x6d\xcb\x6d\x9e\x05\x72\xfc\ +\x17\x53\xc0\xbe\x6b\x37\xcb\xa3\x0f\xe9\xbc\x18\xa0\xfa\x13\xb9\ +\x92\xd5\x85\x21\xd9\x5c\x2d\x0b\xb1\xf0\xe6\xc0\x11\x73\x0a\x8a\ +\xb2\x12\x37\x6a\x58\x4c\xc3\x90\xd7\xa6\xf5\x8d\x93\xf0\xce\x72\ +\xa3\xa8\x65\xce\x94\xd0\x4d\xf9\x82\x91\xe5\x46\xd1\x4a\x8e\x57\ +\xc7\x36\xdd\xba\x54\x28\x78\xa5\x33\x2b\x3c\xed\x82\x4d\xef\xc9\ +\xc0\x7c\xa0\xe5\xa0\xb6\x98\x4b\xaa\x2c\x12\xc8\xe0\xde\x3a\xd9\ +\x4e\x4a\xde\x08\xfe\x1a\x8c\xd9\x77\x20\xda\xb8\x6c\x63\x43\xde\ +\x4a\x25\xef\xef\xd1\xf9\xb0\x13\xed\x85\x34\xce\xfb\x55\x1f\x80\ +\x1b\x45\x97\x97\x57\xe3\xf1\x3b\x6f\x8c\xb7\xde\x7c\x38\x7e\xc0\ +\xaf\x7e\x3c\x95\x5d\x62\x4c\x43\x88\xa6\xc1\x14\xb3\xc6\xdf\x2a\ +\xec\xc7\x58\xf3\xef\xa6\x7b\x37\x78\x56\x75\xfb\x7e\x07\xfa\x71\ +\x0d\xf4\x69\xf7\xeb\xfb\xe9\xdf\xb6\x7f\x22\x0e\x4f\x98\x69\x2f\ +\xbd\xbe\x18\xbf\xf5\x1b\xff\x70\x1c\xbe\xf8\xf9\xf1\xb1\x1f\xbc\ +\x23\x53\xed\xa3\x1a\xa2\x00\xd7\x1a\x57\x9c\x3d\x3a\x1b\x8f\x2f\ +\x78\x22\x2d\xd7\x05\x6e\x70\xfa\x75\x77\x15\xaf\x8f\x80\x9c\x70\ +\x81\x85\x37\xe5\xf2\x73\xcc\xf5\xf1\x16\x9c\x63\x21\x0b\x62\x1a\ +\x6b\x69\xac\xc4\x62\xda\xc1\xe1\x9d\x5a\x4c\x63\xc1\x8c\x31\x15\ +\x4f\xa8\xb1\x90\xa6\x31\x16\x0b\x67\x8c\xa5\x58\x64\x1b\x60\x25\ +\x7e\xa8\x04\xcd\xf9\x44\x31\x25\xd4\xb5\x16\x59\xce\x61\x40\x10\ +\xf5\x53\x1b\x8c\x75\x7d\x94\x30\x8b\x5d\x5c\x2b\x35\x56\x42\xe6\ +\xa3\x95\x7e\x41\x8e\x65\xf4\xb4\x05\x6d\xf8\xf4\x43\x92\xac\xad\ +\x03\x84\xc5\x63\x85\xdc\x8b\x61\xd8\x58\x13\x9b\x94\x57\x67\x19\ +\xfb\x8a\xe0\xda\x1c\x64\x59\x52\xc7\x28\xb9\x5a\x80\xcc\x60\xf9\ +\x21\xc3\xb9\x71\xa5\x58\x29\x1b\x31\xfa\xb2\xcb\xd7\x10\x37\xe4\ +\x66\x23\xa7\xf1\xc8\x20\x23\xa8\x14\x54\xd4\x2e\x2d\x58\xcb\x27\ +\x40\x77\x12\xb8\x9d\xca\x88\xeb\xba\x8b\xee\x3a\x02\x65\x66\x68\ +\x37\x57\x59\x59\x70\x84\x93\x66\x3b\x55\x3c\x27\x89\xc8\xd2\x2f\ +\x0b\x8f\x2e\xe5\xd0\xb6\xf4\x86\x69\xb3\xe1\x4a\x58\x88\x3c\xe7\ +\x62\x28\xa7\x26\x8c\x52\x1f\x6c\x4c\xb3\x9d\xc4\x7b\xaf\x0e\xc1\ +\x57\x65\x16\xa1\xfd\x2d\xdb\x30\x3c\x3e\xf9\x76\x1d\xb0\x11\x32\ +\x46\xb0\x02\x42\x82\xd9\x2e\x1c\x1b\xd3\x26\x29\x47\x52\x16\x5c\ +\x9b\xf6\xfe\x5d\xd0\x12\xdc\xec\x0a\x4c\xdb\xd0\x01\xd7\xaa\xa0\ +\x74\x96\x34\xbd\xc4\x09\x60\x9f\x7d\xa7\x65\x8b\x0e\xa0\xff\xd6\ +\x31\x45\xb9\xfe\xd9\xb7\xec\x2f\x62\xea\x17\xc3\xa7\x82\x6b\x42\ +\x8c\xa5\x4a\xa2\xa9\x45\x0b\x42\x3b\x54\x8c\x67\x97\x59\x6a\xdf\ +\xd8\xc6\xa7\x6a\x28\x59\xa4\x6b\x13\x88\xa0\x56\x4e\xdd\xc4\x29\ +\xcf\x72\x1b\x85\x9e\x60\xbb\x8a\x5d\xd8\xa9\xe5\x60\x3e\xa6\x8b\ +\x07\x5b\xd6\x3e\xd0\x9d\xb4\x65\x8d\x7b\xac\x60\x87\xd2\xb5\x8c\ +\x73\x66\xcb\x32\xbe\x6a\xda\x3a\xe3\x95\xcc\x3c\x61\xa2\x73\x8d\ +\x9a\xb6\x4e\xf4\x4a\x16\x93\xc4\x55\x41\x96\xe1\x83\x6c\xa9\x03\ +\x12\xf8\xd8\x3b\x49\x56\x66\xa5\x05\xf5\x46\xcf\x7e\x62\xa9\x15\ +\x91\x43\xfa\x74\x54\x18\x92\x98\xed\x05\xc1\x3e\xc4\x0f\x90\x74\ +\x01\xb0\xc0\x75\x38\xbc\xf2\xff\xa9\x8d\x83\xf3\xf1\xd6\x1b\xef\ +\x8c\x87\x6f\x5e\x8d\x4f\x7f\xea\xa7\xa5\x77\x04\x82\xe0\x6d\xba\ +\x6a\xb2\xc1\x06\xdf\x12\x6c\x7b\xd1\x06\x1b\x3c\x3b\xd8\x16\xd4\ +\x36\xd8\x60\x83\x0f\x0e\xd4\xd8\xf1\x3d\x61\x8e\x4e\xf7\xe0\xfd\ +\xfa\x3f\x33\xa8\x8a\x74\x99\x1e\xf4\xee\x56\x6e\xa9\x8e\xe4\xd2\ +\xf3\x7f\x13\x47\x8f\x1f\x8e\x97\x7f\xfd\x97\xc6\xcd\xa3\xd7\xc6\ +\xfd\x3b\x27\xe3\xce\xb1\x86\xc8\x92\xdb\x9b\xc5\x03\xbf\xea\xf1\ +\xc2\x0b\x68\x59\x4c\xbb\xf2\x4d\x9f\x1b\xff\x57\xda\x4d\x9e\x4a\ +\x43\x27\x1f\xec\xf9\x2f\x0c\xc2\x67\x12\xcf\x40\x5f\x91\xfc\xd5\ +\x47\x83\x75\xa8\x43\x16\xc0\x58\xb8\x3b\xe1\xa6\x4e\xdd\xf0\xa9\ +\x05\xb6\x23\x2f\xae\xb1\x70\x96\x45\x36\x3f\x95\x66\x3a\x8b\x6a\ +\x59\x44\x0b\x4d\xe2\x3f\x74\xf8\x43\x7d\x2f\xa6\x1d\x67\xf2\x72\ +\xe3\x09\x31\x6d\xa7\x74\xea\xb5\xd4\xc7\x0c\x77\x4c\xb8\x45\x60\ +\x59\xf8\xbc\xc6\xb2\x69\x25\xd3\x8b\x8c\x85\xb3\x1b\x5e\x6b\x89\ +\xbe\x64\x8b\x5d\xf1\x4e\x55\x06\x65\xd1\x4f\x85\xa9\x4e\x74\xeb\ +\x44\x15\xbb\x5e\x24\xd5\x96\x98\x6b\x9d\x42\x19\xa6\x8c\x2f\x59\ +\xf1\x56\x15\x01\xac\x69\x01\xec\x7a\x4f\x58\xd3\x01\x24\x0b\x64\ +\x8e\x96\x89\xae\x01\xa4\x3a\x84\x53\xbe\x72\xf6\xb6\x85\x5f\x07\ +\x6c\x7e\xfa\x08\x98\xcd\xb9\xed\x25\x29\xfd\xb4\x25\x01\xe8\x5b\ +\x27\x58\xfc\x95\xf0\x9f\x74\xe1\x32\xc4\xce\x2c\x59\xeb\x81\xc2\ +\xd6\x01\xad\x5f\x50\x00\x3b\xa5\xa5\xdf\xa1\x25\x40\x0e\xcd\xf6\ +\x05\x10\xa9\x1e\xf4\x51\xba\x19\x02\x14\x6c\x59\xc7\x50\xb6\xc3\ +\x0b\x9b\x77\x39\xaa\x73\xcb\x01\x93\xc5\x97\xcc\x88\xac\xea\xf0\ +\x04\x4c\xdb\xd9\x4b\x0b\xdc\x66\x2f\x58\xa6\xd2\xf1\x71\x99\xb7\ +\xb8\x3f\x01\x33\x5e\x11\xa0\xf6\x9b\xba\x3f\x09\x2c\xf1\x1c\xf2\ +\xd6\xba\xbc\xff\x02\xec\x3e\xcf\x7b\x09\x76\x5b\xcc\xb9\x6f\x0b\ +\xca\x2a\xb9\x91\x32\xbe\x30\xc5\xe7\x53\x54\x05\x8c\xbe\xf9\x15\ +\xbd\x92\x87\x87\xbd\x45\xbf\x5a\xac\x5a\xe4\x75\x83\x65\x47\x56\ +\x7c\xd9\x9b\x26\xa8\x79\x57\x44\x5f\x24\x3a\xe7\x21\xf2\xcd\xef\ +\xc8\xd6\x3a\x9f\x7b\xb1\xb7\x4e\x08\xbb\xb2\x21\xc5\x6e\x45\x4f\ +\x3e\x76\xfa\x4e\x5b\x65\x04\xb2\x9c\x33\x6d\x64\x94\xab\x7e\x2f\ +\x3b\x5b\x58\x8e\xac\x30\x22\x34\x3e\x80\xcc\x1a\xec\xe2\x83\xa2\ +\xfc\x2a\x37\x20\xd6\x79\xa1\xf7\x5d\x4e\x11\x3e\xa7\x8b\xa6\xad\ +\x3e\x07\x91\x73\x3d\x58\xdd\x08\x73\x77\xf0\xa3\x8b\xeb\xcb\xf1\ +\xce\x6b\xaf\x8f\xbb\xf7\x3f\x34\xee\xfc\xe0\xc7\x65\xad\x6b\x86\ +\x4f\x72\xab\x32\x5c\x3f\xc1\x5a\xbc\x52\xbf\x2f\x58\xfb\xee\xd3\ +\x0d\xb7\xc5\xfc\x66\xcb\x01\xfe\x24\x3e\x1b\x3c\x1d\xe8\xcf\xf7\ +\xd3\xa7\x6b\xbb\x95\x7d\xff\x6a\xdf\x27\xf6\xc3\x3c\x9d\x76\x76\ +\x71\x30\xbe\xf6\x95\xdf\x19\xdf\x78\xed\x9f\x8e\x1f\xfa\xf4\xc5\ +\x38\xbd\xa7\xf1\x8e\x76\x5e\x96\x7f\x78\x32\xeb\xfc\xec\x62\x3c\ +\x3e\xcf\x58\xca\xa7\x78\xb9\x5e\x79\x3c\x11\x3e\xfb\x0d\xfb\xf9\ +\x5e\xc5\x2c\x47\x06\xc1\x4e\xee\xa3\xdb\x18\xb9\xf7\x7d\x1d\xb3\ +\x5e\x4c\x43\xe3\xc5\xb2\x53\x0d\x8f\xb2\x98\x76\xe4\xc5\x35\x16\ +\xd4\xfa\x47\x49\xe8\x39\x76\xc4\xeb\xd8\xc8\x13\x74\xc8\x6a\x51\ +\x6d\xc6\xe1\x18\xd4\x18\xab\x8f\x15\x71\x01\xea\xa1\x44\x03\x52\ +\x73\xd1\x6a\x87\xe9\x24\x68\x8f\xaf\x24\xe7\xe3\x45\x36\xf3\x59\ +\x6e\xf3\x98\xc7\x72\xe8\x49\xe9\x23\x6f\x87\x96\x4c\xa1\x52\x12\ +\x36\x58\x94\x5c\x29\x74\x5d\x2a\x9d\x45\x87\xdc\x7e\xf0\x11\x2b\ +\x69\x1b\x40\x80\x4d\x2b\x37\x4f\xdc\x03\xd9\xd7\xe2\x0d\xed\x33\ +\x8e\x2d\x4e\x31\x93\x0f\x7d\x00\xf6\xf6\x2c\x19\x36\x8e\x57\xf5\ +\xb0\x4f\x64\x40\xca\x2a\x1b\x27\x0b\x9d\x19\xd9\xde\x84\xa0\xda\ +\xb4\x4e\x4d\x2c\xa8\x30\xf5\x0e\xdd\x72\x97\xa8\x3a\xc2\x57\x49\ +\x56\xae\x6d\xc0\xd4\x13\xa8\x2e\x33\x34\x0e\x54\xfd\x25\x6c\xfb\ +\x6e\xa7\xc1\xc6\xe8\xe3\x45\x5e\x1a\xd3\x91\x16\x94\x32\xdb\xa3\ +\xea\x0c\x56\x67\xc7\x2e\x9e\x3d\xb6\x42\x96\xb0\x3a\xc7\xd7\x13\ +\x69\x1c\x59\x28\x76\x6c\x30\x01\xb3\x0d\xd8\x70\x80\x0d\xe2\xb3\ +\x00\x65\x45\x10\xbf\xd9\x33\x55\x4e\x20\xba\x06\x16\x55\xb1\x23\ +\x16\x65\xe3\x5f\x69\xd7\x50\x10\x79\xfa\xa7\x21\x34\x79\x9b\xae\ +\x63\x9b\xde\x89\x21\x68\xf7\x7d\x79\x29\x5c\xd7\xd2\x41\xaf\x63\ +\xef\x83\xab\x5c\x4a\x7b\x23\xf0\xb7\xfb\x3c\xf4\x8c\x80\xde\xb4\ +\xad\x77\xf2\x05\x43\x41\x97\x76\x8a\x5b\x4a\xae\x5e\x30\x53\x36\ +\x4e\x6b\xaf\x40\xdb\x5a\xca\xb7\x0c\x26\x16\x22\x37\x5b\xf2\x9c\ +\xdf\x90\xc5\xcf\x8b\x5f\x50\x3a\x15\xfa\x89\x31\x74\xd8\xd8\x07\ +\x3a\xd8\x0b\x63\xfa\xf8\xbc\xb8\x8e\x33\x53\x9f\xe3\xc2\xef\x2c\ +\xa4\xb5\x0e\x97\x94\x62\x59\x62\xc5\x06\xcd\x12\x83\xd0\xd0\x8b\ +\xde\x36\xae\x2b\x74\xf4\x54\x1a\x5b\xe3\xb6\xb3\x1e\x03\x6c\xe0\ +\x6c\x00\xe3\xe4\x76\x97\x9c\xad\x58\x7b\xd1\xd2\x8d\x51\x04\xe0\ +\x0b\x1b\x35\x0e\x12\x1f\x8a\xb6\x1e\x79\x3c\x68\x56\x87\x0f\x91\ +\xaf\xc7\xe9\x1d\xea\x77\x33\x7e\xff\x8b\x5f\x1a\x3f\xfa\xf1\x3f\ +\x3b\xee\xde\xfb\x90\x6c\x34\xd7\x96\x61\x8e\x8c\x19\xa9\xf0\x06\ +\x1b\xfc\xc9\x60\xdb\x83\x36\xd8\xe0\xd9\xc1\xb6\xa0\xb6\xc1\x06\ +\x1b\x7c\xf7\xa0\x07\xa1\x0d\xdf\xea\x15\x1e\xff\xfd\x98\xdf\x36\ +\xd8\x2b\xc8\x23\xe3\x45\xb6\x6e\xca\x9a\x3e\xbc\xb8\x1a\x6f\xff\ +\xfe\x67\xc6\xa3\x3f\xfc\xdd\x71\xff\xde\xf1\xb8\x77\x7a\xe4\xb9\ +\xa8\xbd\x35\xf3\xf5\x6b\x1e\x2f\xcf\x85\xb9\xf1\x43\x92\xac\x9f\ +\xd6\x9a\x4f\x6d\x5d\x79\x22\x9b\x49\x32\x4f\x0b\xc9\x39\x77\x41\ +\xaa\x06\x1a\x76\x13\x90\x09\x04\x34\x37\x70\xfc\x5a\xc7\xe3\xf9\ +\xfa\xc6\x63\x2f\xa4\xc1\xd7\x0d\x1e\x2f\x96\x65\x31\x2d\x4f\xa8\ +\xf1\xaa\x22\x74\x49\xdc\x00\xc2\x8e\x45\xb4\xc6\x32\x50\x78\x0d\ +\xff\x6b\x56\x40\xd9\x2e\x9f\xba\x31\x8b\x87\xf3\x6c\x5e\xa9\x70\ +\x2f\x86\x19\x17\x9f\x44\x9b\xf2\x7a\x4b\x9e\x42\x0b\x8f\xed\xea\ +\xe9\x34\xf3\xe5\x5f\x0b\x8a\x93\x37\xad\x04\xae\xd4\x8b\x69\xd6\ +\xad\xe5\x8d\xe5\x2a\x27\x7f\x53\xf9\xd6\x85\x8d\x0c\x71\x13\xb1\ +\x31\x18\x15\x2d\x88\x8d\xfa\xa1\x90\x7b\x04\xba\xe2\xed\x24\x41\ +\x7a\x0c\x58\xa6\x48\x6b\x69\xdb\xcd\xba\xd1\xc7\xfb\xb1\x80\x59\ +\x77\x98\x5d\x1b\x47\xb3\x5c\xe0\xb6\x06\x2c\x5a\xcb\xcb\x9e\xac\ +\xdd\xa7\xbe\x74\x41\x11\x9a\x46\x16\x61\x11\x02\xfa\x7b\x0f\x7a\ +\x1b\xb4\xb1\xfb\xa9\x65\x15\x8f\x3a\x24\x44\x74\x29\xa7\xe8\xb6\ +\x33\x42\x16\xd6\x22\xf8\x96\x9b\x6f\x5a\x7e\xd8\xd9\xb6\xe3\x85\ +\x37\x55\xac\xc1\x3e\x2d\x2f\xc5\x5a\x0f\x94\xcd\x84\xe6\x3b\x51\ +\x8e\x81\xfe\x17\x52\xf2\x0d\x5f\xe8\xa7\xc1\xbb\xe9\xf6\xe1\x9b\ +\xb1\x7d\x17\xe3\x1d\x0d\x3b\x07\xa9\xdb\xfc\x2e\xb0\x73\x6a\xf3\ +\x4e\xb5\x0f\x09\x56\xa7\x01\x83\x5d\x94\x4d\x91\xe9\x95\x00\xb2\ +\x1c\x82\xea\x46\x07\x80\x00\x46\x18\x1b\x3f\x95\x85\x88\x4c\x8a\ +\xc4\x09\xe6\x26\x89\xcb\xb1\x4d\x92\x75\x3b\xb4\x10\xbf\x06\xc6\ +\x70\xbd\x00\x14\x45\xf1\x5d\xee\x92\x52\x6e\x68\x90\xb3\x79\x83\ +\x06\x79\x6e\xae\xfb\x26\x0e\xea\x5a\x58\xb3\x8c\x8f\x6c\xb9\xfd\ +\x62\x53\x32\xd3\xd1\xdb\xcc\x7c\x62\x90\xd6\xbf\xd2\x36\xbf\x9f\ +\x5c\x76\xdf\x14\x92\x4d\x55\x49\x79\xd1\x94\xd7\xb2\x02\x68\x25\ +\xec\xfd\xff\x2f\x91\x2e\xdb\x1d\x01\x64\xf1\xbe\x96\xb8\xd6\xa5\ +\x17\x64\xf1\xc2\x41\xf4\x55\xa6\x7a\x00\xbe\xba\x54\xbd\x7a\x61\ +\x2d\x2a\x5d\x23\x2e\x1f\x8e\x77\xde\x78\x7b\x7c\xe4\x47\x7f\x54\ +\x86\x77\x72\xbd\x48\xed\x30\x98\x78\xa7\xae\xdf\x2c\xe0\xdb\x21\ +\xf7\xe3\xec\xcb\x9a\xdf\xb7\xdb\xe0\xdb\x0b\xeb\x4d\xbe\xa6\x6f\ +\x83\xa7\x6d\xa3\xe6\x1b\x13\xa7\x00\x92\x9b\x93\x57\xe7\x63\x5c\ +\x9e\x9f\x8d\xdf\xfa\x0f\xff\xc5\x78\xf1\x07\x5f\x1d\x2f\xbe\xc4\ +\x31\xc2\xb1\xad\x93\xf3\xc1\xd5\xb8\xb8\xb8\x1c\x8f\xcf\xf8\x91\ +\x92\xf6\x6c\xae\x09\x4a\x2c\xa6\x79\x58\xc1\x79\x41\x81\x38\x3e\ +\x52\xc8\x5e\x01\x13\x38\xf6\xf8\x92\x39\xf7\x3e\xaf\x01\x91\x70\ +\xdd\xec\x65\xac\x74\xa0\xb1\xd3\xe1\x5d\x1d\x17\x2c\xaa\x31\x9e\ +\xe2\xa9\x34\x5e\xff\xa8\x31\x14\x4f\xa7\x1d\x72\x83\x94\xc5\x34\ +\xfc\x48\xc8\x38\x3e\x12\x27\xf5\x06\x23\xa3\x1c\x4a\x5a\xc0\x57\ +\x34\x2e\x70\xaa\x2f\xd5\x73\x7b\x74\x11\xb2\x0c\xec\x0b\x92\xc6\ +\x8e\x37\x4a\xb6\x46\xa7\xf1\xd2\xa4\xc9\xa3\xf1\x78\xd2\x1f\xe2\ +\x24\xf9\x29\x35\x5d\x7b\x5b\x13\x39\x38\xb4\x2f\xdf\x2e\x29\x10\ +\x7d\x27\x3c\xf2\xa4\xd9\x8e\xcc\x98\xbe\x57\x5b\x44\xe7\x06\xb2\ +\x62\x78\x31\x8d\xa7\x95\xd2\x46\xec\x8c\x61\xb1\x57\x2c\xcb\x14\ +\x90\xe6\x4d\x1a\xac\xb4\x8f\xc3\xac\xf9\x89\x04\x94\x5d\xe5\xb8\ +\x4f\x77\x0d\x16\xbb\x3d\x58\x29\x42\xe2\x4b\x2c\x33\x69\x6b\xd5\ +\xc9\x09\x9e\x44\x96\xe2\x26\x70\xce\x04\x1c\xa1\x6c\x27\xc0\x10\ +\x47\xfb\x94\x7d\x11\x81\xb1\xdb\x4b\xda\x41\x14\x23\xf5\xe0\xc3\ +\x30\x78\xfa\xdb\xa6\xfb\x3c\x62\x83\x08\x76\xd7\xe6\x1d\x47\xc9\ +\x0b\x58\x25\x04\xb3\x7d\xfd\x03\xbe\x95\x33\xdb\xcd\x45\x58\x46\ +\xb9\xd9\x7e\x8b\x49\x64\xe0\xf0\x00\x32\x6c\xd4\xea\x36\xec\x54\ +\x3a\x00\x55\xae\x3b\x30\x2b\x44\x81\x50\x7b\xba\xb5\x2f\x90\x9a\ +\x34\xa0\xab\x72\x2b\xad\x81\xb2\xac\x2e\xc5\x8a\x2c\xa2\x0d\x0a\ +\xc4\x4e\x71\xc3\x5e\x90\xb5\x2a\x9e\x2b\x7f\x00\x03\xfb\x34\xa0\ +\xd7\x56\x2b\x33\x6b\x4c\xaf\xfc\x44\x66\xfb\x16\xb3\x03\xe1\x7d\ +\xee\xd9\x81\xec\x0b\x16\x57\xca\xf9\x09\xac\x3d\xbe\x69\x3e\xf0\ +\xfe\x04\xd0\xb5\xdf\x62\x67\x45\xd9\x46\x6e\x1b\x71\xbe\xe6\x47\ +\x0d\x57\x76\xa5\xe3\xdc\x25\x86\x33\x58\x7c\xa2\x9b\x74\x8d\x15\ +\x62\x17\x5b\x92\xb2\x49\x2f\xc9\x51\x26\xaf\x4c\x65\x94\xcf\x94\ +\x73\x5e\x2e\x9a\x5a\x09\x2f\x0b\x6f\xae\x65\xfc\xd4\x0e\x3f\xa5\ +\x66\x9e\xeb\x46\x93\xb1\x35\x43\x6e\x12\x5f\x73\xc5\xf3\xf5\x86\ +\xb4\x15\x94\xd5\x06\x64\xab\xed\xdb\xb6\xf6\xa3\x4e\x91\x05\xc4\ +\x57\xc1\xc4\x3d\xe2\xc7\xa9\xc2\xd9\x1a\xde\xe1\xc7\xe9\xc9\xc5\ +\x78\xf0\xce\x3b\xe3\xcd\xd7\xde\x19\x3f\xfe\xa3\x7f\x71\x5c\x5e\ +\x5e\x7b\x4e\xde\x80\x25\x9f\x0d\x36\xf8\x56\x60\xdb\x83\x36\xd8\ +\xe0\xd9\xc1\xb6\xa0\xb6\xc1\x06\x1b\x7c\x67\x61\x77\x24\x1a\x80\ +\xff\x20\x5d\xdd\xdf\x57\x5d\x56\x46\x1e\x11\xaf\x06\xd4\x82\x75\ +\x93\x82\x0f\xc7\xd5\xf9\xe5\xb8\x78\xf8\xea\x78\xfd\xdf\xfe\xb2\ +\x06\xf3\x8f\xc7\xf3\x27\xc7\x3c\xec\x65\xbd\x27\xc0\x57\x97\xe3\ +\xf2\xe2\x62\x5c\xf9\xe9\xb4\xfa\xef\x34\xcf\x94\x85\xbd\xc8\x74\ +\xad\x89\x6e\x7e\x61\x8d\xfd\xb5\x17\x95\xac\xd6\x1c\x77\x3d\xad\ +\xd4\x14\x61\x75\x03\x99\xf7\xb3\x67\x71\xec\x68\x1c\x0b\x2f\xff\ +\x9b\x26\x99\x17\xd4\xf2\x74\x5a\x16\xcf\x7a\x71\x0d\xfa\xc4\xfc\ +\xf2\x3f\x69\xd2\x79\x16\xb0\xf0\xb4\x2b\x83\xfb\x2e\x5d\xf5\x50\ +\x3d\xf3\x34\x50\xd5\x9f\xbb\x0d\x60\xd3\xe8\x57\x3a\x2f\xa2\xd5\ +\x82\xd9\xce\x42\x5a\xf4\xa1\x23\xf3\xab\x1f\x4d\xcb\xbf\x6c\x72\ +\x77\x47\x78\xc6\x4d\xdf\xac\x79\x57\x4d\xf4\xd4\xcb\xbc\xee\x0e\ +\x50\x61\xdb\xf3\x69\xdb\xf8\xa3\x28\x1a\xad\x11\x59\x61\x7f\x69\ +\x77\x41\xa9\x56\xc4\x24\x41\x4c\xb0\x6c\x2f\x06\x2f\xff\x17\xd7\ +\x84\x35\x2d\xb0\x5f\x6c\xdb\x4c\x9b\x37\x62\xe8\xc2\x53\x60\xd8\ +\x8b\xb1\x06\xda\x7a\x1b\xd8\x7f\x27\x48\x58\xa5\xd9\x05\xc5\x27\ +\x7e\xfa\x21\x4f\xb6\xb4\x7c\x01\xfb\xb4\x0c\xdc\xa9\xd1\x5a\x96\ +\x4d\xd6\x99\x3f\x5d\x4f\xb6\x8f\xfb\xab\x6e\xdc\x64\x5b\xc5\xf4\ +\x80\xed\x68\x23\xe9\x5c\x60\x90\xb7\x2f\x72\x6c\xfb\x57\xd1\x15\ +\x3b\x74\x62\x4e\x3f\x0b\x4b\x5b\xec\xec\xec\x96\x37\x4c\xfd\x1e\ +\x16\xd8\x03\xbe\xd3\x14\x50\x0e\xf4\x2e\x54\x09\x81\x27\xf4\x2b\ +\x81\xc8\xae\xfe\x8e\xcf\x84\x6a\xef\xb7\x04\xef\x3f\xc2\xba\x0e\ +\xf6\x2a\x81\x51\x6f\x27\x71\xe6\xd7\xc6\x02\x4e\x19\xc1\x4d\x24\ +\x99\x43\xd6\xb4\xf2\x60\xa0\x6e\x1a\xf0\x55\xf2\xa2\x7d\xd1\xc1\ +\xd2\x72\x63\xc2\xbc\xe8\xd6\x99\xad\x1b\x24\x96\x93\xe0\x63\x27\ +\xa7\x72\xc9\x8d\x17\x92\x3f\x31\xf0\x77\xca\xd7\x18\x45\x95\xb7\ +\x1f\x1b\x08\x5d\x72\x3e\x4d\xaf\xea\xd2\xc9\xfc\xb4\x41\x94\x1b\ +\x40\xd1\x95\x3d\x2c\x4a\x95\x09\x6f\x1b\x1b\xdb\xcc\xc9\x16\xdd\ +\x0e\x73\x69\xdb\x3c\x2f\xb5\x8d\x76\x24\x6f\x9d\xc2\x6b\xc0\x64\ +\x1e\xcf\xb5\x0d\x0d\x88\x44\xc2\x79\x61\x11\x59\x15\x9c\xfa\x8a\ +\xd6\x31\x67\x39\xfd\xa2\x0b\x19\xbf\x23\xa7\x37\x88\x72\x75\x79\ +\x33\x1e\xbf\xf3\xd6\x38\xba\x3e\x1c\xf7\xfe\xcc\x4f\xc8\x4f\xd7\ +\x0a\x1b\xaf\xca\x20\x46\xc1\x42\x7d\x13\xb0\x0a\xf5\x04\x20\x7f\ +\x37\xfd\x06\xdf\x19\x58\xf7\x7f\x6f\x93\xdb\x60\x7f\x7b\x81\x3b\ +\x35\x4c\xba\xf6\x3b\xf6\xc5\x71\x39\xc6\xe5\xf1\xb8\x3e\xbe\x1e\ +\x5f\xf8\xdc\x3f\x1d\x6f\x5d\xfd\xda\xf8\xe8\x27\x6e\xc6\x09\xe3\ +\x13\xdb\x5d\xfb\x7f\xd2\x1e\x3f\xd6\xd8\x4a\xfb\x24\xd7\x04\x5f\ +\x22\xb4\xef\xf2\xda\x6c\x86\x10\xec\xfe\x3e\x85\x79\x7f\x5c\x55\ +\x02\x79\xa8\x92\x64\xdf\x4f\xb9\x20\x5d\x51\x34\xce\xe2\xd8\x3d\ +\x64\x31\xcc\x4f\x98\x9d\x8e\x63\xbf\xe2\xf1\xce\x7c\x32\xcd\x4f\ +\xa2\x31\x96\xe2\xd5\x8e\xb5\xa8\xb6\xfb\x44\x1a\x29\xc7\xbd\x8f\ +\x61\x8e\xe9\xf5\x62\x5a\x55\x82\x7a\xa6\xb2\x4a\x1e\xef\x69\x4c\ +\x64\x25\x98\x56\x69\x6c\xc4\xa7\x9f\x4c\x93\x9d\x17\xcc\x6e\x34\ +\xc6\x82\xc7\xca\x3c\x34\x61\x95\x2b\x8e\xc7\x93\xf4\x83\x70\x7c\ +\x88\x52\x45\x19\xc3\x63\xa7\x12\x24\xd0\x28\xcc\x4a\xeb\x2b\xc9\ +\xd5\x29\x8b\x66\x0e\xee\x64\x5f\x63\xf4\xd2\x51\x8e\xda\xe4\xf2\ +\x75\x9d\xce\x62\x9a\xda\x8b\x8d\x5d\x20\xda\x4e\xc9\x86\xfa\xc2\ +\x84\xdc\xa1\x8d\x9b\x90\x24\xe5\x98\x8c\xa4\x69\x57\x2e\x24\x29\ +\xe0\xad\x28\x41\x70\xf6\xaa\x4e\x2b\xa0\x3e\x21\x94\x42\x53\x4f\ +\x62\x77\x7c\xa3\xe2\x67\x2a\x59\x88\xa4\x59\x37\x25\x50\x03\xcd\ +\x34\x46\x5e\x3a\xeb\xd7\x46\x13\xd8\x4e\xca\xe9\x23\x70\xd5\xdf\ +\x09\x5e\xd4\x7c\xca\x2b\xe6\x95\x4a\x09\x74\xff\x4a\xe6\xa7\xd1\ +\x50\x49\x96\x6e\x22\x0e\x84\xe4\x12\x20\x73\xfd\x84\x59\x9f\x66\ +\x78\x25\xd2\x25\x42\x74\x9d\x23\x89\xc6\x55\x32\x59\xbc\x63\x22\ +\xec\xb4\x80\x7d\xcb\x1e\xd2\x99\x65\xde\x1b\x16\x7e\x42\xfb\x47\ +\xb8\xa3\x2a\x78\xba\x8c\x9a\x54\xbf\x08\xa8\x3b\x15\x48\xfd\x77\ +\x61\x11\x55\xe5\xec\x17\x7c\x2b\x48\xe5\x7e\x42\x6f\x93\xec\x51\ +\xed\x0b\x4c\xcf\x3a\x87\x18\x9a\x28\x3c\x35\x42\xa9\xab\x89\x12\ +\xd0\xb7\x55\xb3\x29\x96\x55\x54\x4a\x45\xfb\x93\x1a\xe4\xbc\x92\ +\x76\xc7\x3e\x19\x76\xd0\xc6\x91\x58\xb5\xf3\x43\x22\xe4\x26\x63\ +\xcf\xb9\x0a\x21\x67\xa8\x8c\x47\x62\xbb\xe8\xe3\xc0\xf8\x00\x59\ +\x2f\x6c\xd9\x67\xc5\xb7\xbd\xc7\x63\xa6\xdb\x0e\x1c\x5b\x08\x7f\ +\x56\x7a\x92\xa8\xa2\x09\xbb\xc8\x49\x19\xdf\x71\x3e\xc5\xdd\x96\ +\xc1\xd6\x33\x56\x42\x8e\x34\x32\x65\xa6\x01\x2f\xf4\x95\xbd\xed\ +\xdc\x14\xf2\x65\x4b\x7a\x0b\x43\x7a\x93\x46\xba\xec\x15\x6d\x23\ +\x28\x32\xa6\xa5\x51\x46\x3c\x8e\x39\xb7\x8f\xfd\x4e\x31\xfc\x66\ +\x18\x8a\x54\xb9\x87\x92\x61\x73\x7c\x74\x3a\x5e\x7d\xeb\xb5\x71\ +\x79\x73\x34\x7e\xe8\x07\xfe\xac\x8a\xad\x1f\x8e\xad\x6a\xb2\x53\ +\xde\x06\x1b\x7c\x93\xb0\xed\x3d\x1b\x6c\xf0\xec\x20\x57\x91\x0d\ +\x36\xd8\x60\x83\xef\x24\xd4\x7c\x60\xc2\x9a\xdf\xd7\xed\xc3\x7b\ +\xe9\x9f\x05\x64\x74\xbc\x0b\xf0\x53\x86\xc1\x6e\xa5\x7b\xe0\x5d\ +\x68\x5a\x30\x00\x8e\xe9\xf5\x38\xbf\xba\x1c\x6f\xfd\xfb\xdf\x18\ +\x07\x0f\x5f\x19\x77\x59\xc4\x92\x2d\x13\xd6\xa4\xab\x71\xe5\x57\ +\x3d\x5e\xe6\x55\x8f\xf5\x54\x96\x17\x92\x2e\xaf\x47\x9e\x52\x2b\ +\xde\xeb\x4a\xa2\xab\x14\x06\xe5\x9e\xd4\x52\x9e\x46\xdd\x1e\xab\ +\x43\xeb\x0c\xcf\xa2\x19\x8b\x5f\xfc\xc2\xcd\x03\xf7\x63\x4d\x36\ +\x48\xa2\x3b\xf9\xd7\x6f\x2c\x92\xd5\xcd\x1d\x2f\x94\x15\xee\xc5\ +\xb4\xdc\x2c\x3a\x1a\x37\xf0\xd6\xe7\xd5\x5f\xa9\x41\x25\xcd\x35\ +\xf8\x4f\x37\xcf\x4e\x99\x2c\x48\xe0\x05\x10\x78\x00\x19\xf5\x97\ +\x9c\xc4\xe2\x18\xb2\xcc\xd8\xcb\x0e\x1d\xed\xb6\x3e\x29\x93\x7e\ +\x82\x27\xae\x6d\x90\x91\xd4\xaf\xf1\xab\xd4\xb1\x26\xc6\x3c\xb6\ +\xe8\x9b\x5e\x27\xe4\xdd\x88\xf0\xc1\x4e\x7c\xac\x5b\xcb\xc3\xde\ +\x2e\x4b\xe7\x9b\x9e\xbe\xc5\x47\x18\xbe\x59\x68\x11\x4e\xd4\xb9\ +\x69\x57\x3c\x7c\xcb\x72\x37\x4b\x2d\xe6\xff\x5f\x3a\x59\x97\x18\ +\x26\xd6\xed\x23\xde\x1e\x3f\xfd\x66\x8a\xef\x8e\xbe\xfc\x5c\x1e\ +\x32\xa5\xbc\x66\x14\xbd\xec\x49\xdc\x9c\x44\xde\x49\xfa\xf6\x81\ +\x4e\x8a\xcd\x13\x89\xb2\xdc\xf0\x65\x3b\x2a\x73\x0a\x2d\xb9\xec\ +\xc0\xb3\xfe\xf0\xc4\xb3\x8c\xba\x70\x2c\x88\x77\x9d\x62\xe3\xfa\ +\xda\x1f\x14\xda\x48\x2e\x96\x81\xe8\xd6\x4e\x16\x74\xaa\x18\xf9\ +\x2e\xf2\xf2\x5d\x92\xb2\x55\x72\xdd\x9a\xb5\x09\xbc\x8e\x0b\xd7\ +\xff\xc9\x14\xfb\x4a\xeb\x8f\x65\x2b\x53\x7d\xc8\x43\xdd\xf6\x59\ +\xc1\x62\x9a\x04\xec\xcb\x66\x52\xb6\x14\x72\x7b\x5a\x43\xf1\x4f\ +\xa8\xa7\x60\x55\x17\x62\x86\x58\xf4\xa0\x89\x9b\x48\x5a\xcc\x73\ +\x1e\x41\xd8\xa2\x35\xc4\x0e\x07\xb3\x06\xc8\xdb\xad\x17\x79\x9d\ +\x8a\xdb\xd8\xe7\xc5\x29\x43\x70\x9b\xfb\x5a\x56\x26\xb3\x9e\xa5\ +\xe4\x7e\x56\xee\x69\x51\xd2\x72\x83\x03\x3b\xcb\x73\x0a\x30\xf4\ +\x76\x9d\x02\x3c\x3a\x60\x61\xfc\x5d\xe7\x16\x47\xb0\x82\xa5\xd6\ +\x5c\x67\x7c\xad\x01\x7b\x81\x8f\xa4\x2f\xe7\xe4\x5e\xd8\xe2\xc6\ +\x10\x4f\xcb\xe9\x1c\x1d\x1b\xce\xd7\x36\x32\x4e\x0c\x82\x39\x60\ +\x92\x0a\x24\x6f\xb0\x84\xba\xeb\x00\xf0\x42\x1c\x89\xe3\xae\x8e\ +\xbd\x6b\x5d\xcb\xb8\x4e\xf1\xc3\x0f\xfe\xef\x93\xc5\x0a\xdf\x98\ +\x57\xac\x63\x5d\x5f\x4e\xef\xdc\x19\x47\x3a\x8f\x7f\xed\xf7\x7e\ +\x7b\x9c\xfd\xf1\x1f\x8c\x9b\x0b\x0e\x24\x45\x5d\xb7\x0b\x5a\x89\ +\x3e\xdb\x69\xee\xfb\x85\x75\x85\xd7\x90\xe6\x6c\xf0\xbd\x02\xbd\ +\x1d\x7b\xbb\xed\x27\x60\x67\x5b\xeb\x7c\x61\x39\xe3\xae\xe3\x71\ +\xa1\x0b\xd2\x9b\xdf\xf8\xea\xf8\xea\xab\xff\x72\x7c\xf4\xe3\x57\ +\xe3\x54\xc7\x00\x0b\x47\x9c\xbc\x19\x25\x5d\x9c\x9f\x2b\xb1\xb0\ +\x96\x05\x1c\xf6\xe5\x2c\x1c\xe5\x92\x35\x4f\xf1\x55\x96\x69\x08\ +\x95\x99\x62\xc9\x61\x92\x2c\x13\xe6\xbf\x19\xb9\x79\xcb\x8f\x97\ +\x0e\x54\x26\xaf\xe6\xf2\xd3\x67\x47\xbc\xe6\x91\x71\x15\x0b\x67\ +\x2c\xa4\xd5\x62\x9a\xc7\x51\x2c\xaa\x49\xe7\xe9\x37\x63\xaa\x2c\ +\xae\x39\x0e\xc7\x27\x0b\x69\x1c\xaf\x5d\xa6\xa0\xaa\x55\x20\x4e\ +\x62\xea\xea\xfa\xaa\x9d\xbe\x26\xd6\x38\x08\x5a\xf9\xea\xc3\x58\ +\xaa\x68\x8e\x4f\xd1\x5e\x10\x89\xb3\x30\x7d\x90\xfe\x98\x9e\x15\ +\x3b\x74\x27\xf8\x24\x32\xd3\x60\x15\x0d\xa6\x06\x13\x90\x3b\x91\ +\xad\xf9\xb0\xee\xf3\xa6\xb1\x17\x35\xf5\xe8\x24\xb4\xbe\x63\xb7\ +\xbc\xf0\x4c\xe8\x6d\x23\x7f\x29\xe7\x10\xb1\xe2\x86\xef\xb6\xad\ +\x62\x3a\xe1\x23\x99\xc6\x0c\xdd\xfe\xa5\xad\x24\x7c\x3b\x91\x15\ +\x8d\x9f\x08\xc7\x70\xcd\x4b\xae\x44\x19\x6b\xbe\xcb\xa2\x1e\x3a\ +\x55\xfa\xef\x7f\x4d\x57\x72\xfd\x56\x09\xd9\x13\xbe\xa2\x9d\x94\ +\x2d\x49\x3a\xc5\x03\x27\xad\x74\xb2\xa5\x12\xb9\x46\xe9\xf8\x28\ +\xde\x31\xb5\xe3\xb8\x7c\xea\x22\xbe\xeb\x41\x7b\xcc\xcb\xd4\x0d\ +\xb0\x0c\xdb\xea\x07\x82\xd6\x18\x0b\xb5\x0b\xf1\x57\x99\x8f\x07\ +\x76\x28\x7c\x8c\x9c\x92\x09\xb1\x58\x67\x65\xe9\x94\xe1\xbe\xa4\ +\xc4\xed\xba\x5b\x6f\x0f\xe4\x38\x94\x5f\xf9\x26\x95\x8f\xe8\xf6\ +\x79\xd7\xe4\x58\x93\x99\x34\xa8\x6a\x27\x80\x2a\x13\x12\xa2\x49\ +\xc7\xc6\x32\xda\x6a\xb0\xc2\xfa\x68\x64\xa3\xce\x4e\x7f\x97\x42\ +\x29\x65\x4d\x93\x05\xd0\x81\x42\x46\x55\xd8\xe5\x85\x28\xc5\x02\ +\x4b\xbc\xd8\x58\x3d\x65\xcb\x76\x80\x30\x02\xac\x4e\x4b\xa7\x4c\ +\x10\xbb\x35\x44\xe0\x1f\xd8\x28\xb5\xfd\x0c\xbf\x1a\x98\x98\x37\ +\x25\x88\x72\xc5\xab\xac\x95\xb2\x35\x36\x33\xd5\x90\xbe\x5c\xb4\ +\x2d\xc9\xb6\x30\xb8\x43\x1b\x6a\x5f\x2b\xba\xad\x17\x3a\x7a\x8f\ +\x6f\x7c\x7e\x85\xce\xc2\x59\x30\x89\x73\x2d\xe3\xa0\xcc\x67\x17\ +\xbb\x9c\x83\xc1\xd1\x71\x9e\xae\xf3\x76\xdb\x76\x2a\x3b\xe2\x29\ +\xab\xb2\x81\xdd\xba\x02\x2d\xe9\xed\xd6\xff\xd9\xc9\x8f\x39\x2e\ +\x19\x47\x5d\x5e\xf9\x7f\x67\x73\xac\x61\xad\x1a\xe9\x7a\xf1\xdc\ +\x87\xc6\x78\xfe\xc3\x67\xe3\xb3\xff\xfe\x9f\x8f\x07\x6f\xbd\x2c\ +\xd7\x73\xd7\x54\x13\xf0\x9d\x52\x36\xd8\x60\x83\x0d\x36\xf8\xee\ +\x83\xcf\xcf\x1b\x6c\xb0\xc1\x06\xdf\x31\xe8\xb1\x27\xd0\xf4\x6d\ +\xb2\x0f\x02\xac\xeb\xc2\x28\xb6\x47\xb2\x1e\x44\x83\x8b\x96\x7c\ +\x0e\x72\x45\xb4\x9b\xcd\x50\x60\x72\x7e\x35\x2e\xde\xfa\xfa\x38\ +\xff\xd2\xef\x8e\x93\xbb\x77\xc6\x3d\xff\x6f\x9a\x54\xf8\x6a\x70\ +\x3d\x17\xd3\x94\x98\xf1\x32\xb8\xce\xcd\x4b\x06\xe0\xdc\x2c\x51\ +\x62\xd0\xed\x89\x2d\x2b\x1a\x38\x42\xa3\xa3\x90\x2a\x97\x31\xbe\ +\x27\x3e\xfc\xca\x8d\xa7\xd0\x32\xf8\xcf\xaf\xe0\x44\x57\xf2\x62\ +\xd9\x51\x4f\x32\xf8\x95\x75\xe9\xb9\xe9\xc3\xe2\x5a\xeb\xb1\xad\ +\x89\xc3\xcd\x11\x89\x45\x35\x26\x3c\x4c\x5a\x02\x6e\xa2\xab\x40\ +\x46\xbd\xa8\x9a\x32\xea\x0b\xe3\xc9\x42\xb5\xc1\x77\x02\x72\x37\ +\x20\x6d\xb4\xb1\x69\xcb\xc1\xf0\xcc\xf0\x65\xeb\x45\xc4\xcc\xfa\ +\xf5\xad\x3e\xa8\xd4\xb3\xe9\xbe\xe1\x0b\xad\xac\xea\x20\x59\xd3\ +\xe6\x11\x95\x1d\xfe\x6d\xef\x58\x32\x29\x99\x24\x4e\x71\x41\x0f\ +\x6d\x66\xca\x4d\x17\x76\x1d\x6c\xd3\xf2\x8a\xdd\x71\xed\x8b\xac\ +\x6d\x88\x1a\x1b\x27\x97\xbb\xf2\xe7\xae\x46\xd3\x28\x1c\xbf\x92\ +\xbe\x18\xa7\xdf\x89\xa2\xbc\xea\x8e\x7c\x2e\x2c\xd9\xde\x26\x4b\ +\x6c\xe2\xae\x62\x2f\x49\x19\x7d\x2d\x9f\xf8\x23\x5a\x61\xc5\x49\ +\x19\xc2\x8e\x51\x76\x95\x72\x27\x26\xa9\x5f\x49\x3a\xcb\x92\xcc\ +\x37\xac\xac\x53\xa2\x8c\x75\x92\x9b\xe3\x8a\xee\x36\xb0\x5f\x50\ +\xaf\x2e\xd7\x3a\x11\xcb\xfe\x23\xb6\xdb\x41\x4c\x0b\x4a\xae\xac\ +\xf7\xb1\x6e\x43\xfa\xc2\x4a\xf9\x71\x20\x42\xc7\xbf\xdb\x67\xbe\ +\x20\xf1\xa6\x41\xf0\x3a\x81\xf6\xa1\x0e\xe4\xf8\x8a\xb7\xdf\xf4\ +\x98\xe9\x09\xc1\x3a\x4d\x88\x60\x5d\x8d\x75\x6a\xf9\x4e\xda\x37\ +\x7b\x42\xb6\xfe\x2c\xf2\xa7\xc2\x9e\x11\xf1\x76\x64\x9d\x8c\x6a\ +\x6f\x14\x6f\xb1\xb3\x3e\x33\x08\xda\x6e\x0f\x5b\xee\xcd\x51\x37\ +\x5f\x56\x69\xda\xfa\x13\xdc\xb0\xd8\x63\x18\x59\x43\xb3\x94\x6e\ +\x13\x18\x9b\x55\x9c\x16\x4c\xb0\xb2\x48\x5b\xc4\x19\x28\x79\x9f\ +\xd7\x3a\x06\x59\xa9\x42\x98\x27\x8b\xd4\x76\x22\x1d\xa6\x63\xae\ +\x13\xa8\xa1\xaf\x23\xe5\x1b\xd8\xb5\x49\xf9\x80\x6c\x39\x07\x9b\ +\x5c\xdd\x20\x62\xf1\xcc\x7c\xa7\x9c\xab\x4d\x73\x0e\x37\x6e\x9e\ +\x35\x37\xce\xe7\x89\xd5\x9f\xa6\x0d\x2a\x10\xaa\x37\x21\x55\xeb\ +\x63\x0f\x86\x27\xa4\xaf\x94\xf2\x74\x74\xce\xcd\xd0\x5c\xb3\xbc\ +\x88\x21\x1b\x62\xdd\xb9\x77\x67\xdc\xbf\x7f\x6f\x1c\x9c\x3d\x18\ +\x2f\xff\xca\xaf\xa9\x88\x33\x1f\xeb\x2e\x7b\x36\x10\xac\x44\x15\ +\x44\x55\x91\xcf\x06\x9e\x79\xc0\x0d\x9e\x09\xdc\xb6\x4d\x6a\x37\ +\x98\xbb\x45\xdb\xf4\x36\x6c\xb9\x20\xaa\xde\x67\x74\xac\x65\x97\ +\x1b\x9f\xfd\xbd\xff\x76\xdc\x7d\xe1\xe5\xf1\xc2\x73\xd7\x5e\xe0\ +\x3a\x3c\xe4\x48\xbc\x1e\x97\x17\x97\xe3\xfc\x3c\xaf\x77\xe4\xfc\ +\xec\x9b\x99\x8d\x59\x59\x02\x38\xc8\x28\xc3\xbc\x12\x01\x39\xcf\ +\x58\x09\x50\x58\x25\xb3\xc2\x2c\xa2\x51\x8e\xe5\x2c\x8f\xf1\x03\ +\x29\x5e\x93\x5d\xaf\xca\xf6\x8d\x58\x6e\xca\x92\x58\x2c\x23\x49\ +\xc7\xcd\xd8\x79\x43\x56\xe3\x33\xb0\xa4\x3e\x6e\x2d\x07\xaf\xca\ +\x6a\x70\x65\x68\x13\xe7\x3f\x18\x53\x25\xd3\x47\x32\xda\x4b\x72\ +\x0e\xef\xeb\x60\xda\x1d\x7d\x7d\x68\x9e\x65\x6a\xb2\xaf\xcb\xc5\ +\x57\x31\xb6\xf1\x47\xb1\xa4\xac\x4b\xb0\xb8\xd6\x2b\x21\x53\x96\ +\xcb\xab\xea\x82\x7f\xc9\x3a\xf6\x6e\xea\xda\x42\x47\xef\xd7\x3c\ +\xb6\x9e\x0f\xd8\xaf\xe4\x8c\xac\x2e\xdb\x29\xbb\x65\xb5\xbd\x27\ +\x56\x36\xf5\xc8\xd6\x49\xba\x19\xc3\xb6\xeb\xc4\xe2\x6a\x95\x59\ +\xf6\x8e\xb9\xc6\x3a\xad\x31\xd6\x68\xde\x8b\x4c\xae\xb0\x1a\xe1\ +\x76\x54\x82\xb6\x60\x45\xa0\x68\xc1\xa4\x9f\x04\x85\x9d\xfd\x0a\ +\xd8\xd2\x2e\xd4\x6d\x95\x5a\xf7\x2e\xa9\x1c\x57\x29\x8a\x27\x44\ +\x45\xd3\x11\x60\xfa\x83\x1f\xbe\x65\x21\x25\x3a\x8e\x11\xa1\x69\ +\x0b\x47\x7f\xd1\xfe\xb5\x1c\x8d\xf7\xd7\xa2\x72\x7d\x26\x6e\x62\ +\x5b\x8e\x2d\xad\x54\x27\x96\x77\x12\x5f\xef\x17\x9d\x3a\x76\x2d\ +\x7c\xcf\x7e\xaf\x84\x2e\xbb\x8c\xd3\x3e\xac\xe5\x4d\x3b\x29\x0b\ +\xa6\x6e\xd0\x29\xaf\xf7\xd9\xd2\x06\x35\xec\xd3\x33\x29\xeb\x4a\ +\x49\xe0\x5a\x23\x2a\xfd\x6c\x9f\x85\x22\xc3\x89\xed\xb6\x05\xbb\ +\xcf\x2c\x80\x56\xc6\xb7\xf9\x92\xc1\xa7\xc7\x42\x5b\xae\x94\xd3\ +\xd5\x72\xec\x10\xab\x54\xe6\xbb\x8c\x6c\x95\x06\x1b\x4e\x68\x2e\ +\xfe\x10\xa1\x17\x2b\x95\x60\x86\x2c\xfd\xd6\x9c\x81\x0d\x51\x25\ +\xb8\x0f\xca\x06\x7d\x4a\x6f\x4b\xea\x99\xba\x4e\xd8\xb1\x5b\xf8\ +\x35\x50\xb6\xe7\xb1\x2e\x47\x96\x29\x2a\x30\x69\x11\x3a\x4f\x86\ +\x5d\x8d\x61\x0c\xe2\x74\x2e\x8d\x74\xfd\xc9\x39\x96\xf1\x90\x7d\ +\x7d\x1e\x56\xf2\x58\x09\xb9\x30\xff\x6b\xe9\xb4\x2c\xae\x71\x7e\ +\x07\xfb\x55\xbd\x96\x51\x42\xc6\x5a\xa4\x2c\xcc\x75\x3b\xaa\x41\ +\x20\x0b\x4a\x5a\x1d\xc4\x39\xd9\x3f\x46\xd2\x09\xe6\x82\xc5\xb4\ +\xa2\xaf\x74\x2e\xe6\xb8\x1b\x37\x97\xe3\xf8\xe4\x78\xbc\xf4\x11\ +\xc6\x51\x0f\xc7\x6f\x7c\xf6\x1f\xe9\x72\xa3\x72\x74\x2e\x4a\xb9\ +\x8e\x56\x69\x83\x0d\x36\xd8\x60\x83\xef\x36\xe4\x0a\xb0\xc1\x06\ +\x1b\x6c\xf0\x9d\x84\x8c\x08\x03\x6b\xfa\xbb\x0d\xef\x55\x17\xf4\ +\xd3\x46\x44\x8f\x67\x91\xf5\x8c\x43\x30\x29\x08\x6e\x90\x68\xc0\ +\x7c\x71\x7d\x36\x1e\xfd\xbb\x7f\x2d\xd9\xe5\xb8\x7b\xca\x2f\x99\ +\x25\x97\x0f\x83\x6c\xfe\xeb\xe2\x4a\x03\x6b\x2f\xa6\x71\xb3\xd2\ +\x83\x6a\x6e\x56\x4a\x2f\xbe\x9f\x0c\xc8\xaf\xd8\x44\x3b\xc5\x97\ +\xb9\x1d\xe0\x6a\x31\xda\xe6\xa6\x90\x30\x37\x6a\x6e\x34\x49\x60\ +\x21\xed\xa8\x9f\x48\x3b\x51\xe2\xe6\x8e\x68\x3f\x75\xd6\x13\x09\ +\x25\x39\x48\xa6\x3a\x99\xe6\x86\x54\x26\x13\xbc\xd2\x88\xc9\x07\ +\xb1\xe0\x5d\x46\x75\x02\xcd\xa3\xaa\x64\xa9\x4f\x3d\xcd\x40\x3d\ +\xa9\x33\x95\xb3\x81\x70\xb5\xc3\x7c\xd9\x7b\x26\x5f\xed\x09\x56\ +\x5f\xb0\x78\x36\xe5\xb1\x85\x36\x76\xcc\xc8\x3c\xf9\x57\x0d\xb2\ +\x30\x83\x2e\xb8\xd3\xac\x5c\xf9\xc6\xc6\x2e\x16\x47\x5f\x34\x71\ +\x6c\x03\x59\xb4\x95\xe8\x90\x75\x8a\xcd\xae\xdd\x93\xfa\x08\x17\ +\x68\xd9\x14\x43\x23\x34\x56\x5f\xa2\x30\x5d\xc9\xfd\x47\xda\x93\ +\x4f\x9f\x94\x43\x1f\xe4\x26\x88\x92\xfb\x2c\xa4\x9b\x8c\xbf\xf6\ +\x1f\x16\x9d\x9c\xda\x4e\x29\xfe\x9d\x4a\x5c\x65\x39\x0e\x0b\x56\ +\x6c\x07\xdf\x50\x4a\x1c\xa7\x1d\xbf\xa7\x24\xca\x5d\xf1\xca\x8a\ +\xd6\xb6\xab\xfd\x38\x75\x13\xae\xb8\xd4\x0f\xcc\xcd\xbd\x2e\xd3\ +\xb2\xb6\xa3\x6e\xd4\x09\x4c\xfd\x66\x5c\xf1\xc5\x4e\x39\x6d\x37\ +\x1f\x9d\x13\xc8\xfe\x2b\xbd\x6d\xb8\x09\x40\x9c\x8a\xb5\xf6\x51\ +\x42\xf6\xcd\x24\xc0\xb4\x89\x27\xd3\x13\x22\x64\x33\x2d\xf5\x20\ +\x35\x40\xae\xd3\xfb\x87\xf7\xe7\xb5\xb6\x7a\x5a\x02\x1a\xef\x80\ +\x84\x91\x97\xb6\xd1\x8a\x75\xba\x45\x9e\x73\x26\xfb\x7e\x5b\x05\ +\xd4\x03\x4d\xec\x60\xcc\x42\xb6\xa2\xcf\x41\x28\x6a\xfb\xb5\x0a\ +\x30\xbf\x2f\x5c\xc0\xaa\x86\x66\xda\x5c\x29\xf5\x48\x4a\x49\x3b\ +\x67\x3d\xa7\x2e\xdb\x48\x12\x6e\x2c\x99\x00\x81\x1b\x9a\x9f\xb2\ +\x62\xca\x77\x81\x94\x1a\x61\x95\x2a\xd4\xe5\x03\xdc\xba\x99\x60\ +\x5d\xce\xf5\x59\x34\xcb\x0d\x21\xce\xdd\x79\x9d\x9c\x64\x5c\x67\ +\xa4\xcb\xf9\x1c\x5f\x6e\xfd\xb4\xed\xf2\xff\x73\xd6\x95\x7e\xa7\ +\x4a\x02\xef\x97\x1c\x8b\x1c\x44\xa4\x3e\x76\x25\xf3\x2b\x88\xb9\ +\x29\xa4\xd4\xfb\x30\x61\x58\x68\xb8\x73\xf7\x9e\xae\x75\xc7\xe3\ +\xc1\x57\xbf\x38\xde\xfe\xfd\xcf\x8d\x9b\x0b\x5d\xdf\xaa\x8c\x1d\ +\xa8\x02\xf7\xcb\xdd\xe0\x4f\x29\xec\x6d\xfe\x27\x60\xb5\xfb\xef\ +\x00\x72\xf6\x2f\xd0\x01\x27\x74\xed\xab\xda\xff\xbe\xfc\xe5\x7f\ +\x33\xde\xb9\xfc\xad\xf1\xa1\x8f\x20\x39\xd6\x69\x5e\xfb\xa7\x6c\ +\xd9\x5f\xcf\xcf\x2e\xc7\x39\xfb\xaa\x76\x74\xf6\x57\x2f\xac\xb1\ +\xdf\xa2\x77\x1c\xb2\x9a\x0a\x8b\xc6\x2f\x65\x63\x00\xc1\xb1\x82\ +\xb0\xc4\x3e\x4e\x38\x82\x58\x20\x13\xf6\xf8\x88\x63\xeb\x54\xc3\ +\x23\x8d\xeb\x84\x59\x38\xf3\x6b\xb4\x7b\x51\x4d\xfc\xe0\xc9\xb5\ +\x79\x83\x96\x94\xc5\x34\xa2\x72\x1c\xca\x20\x7a\x78\x3e\x55\xb9\ +\x94\x0c\x50\x1f\x7f\x95\x91\xab\x1d\xba\x28\xaa\x65\x45\x93\xf2\ +\x51\x03\x65\x52\x32\xd9\xfa\x03\x76\x42\x1d\x3a\x0b\x4a\xe5\xe9\ +\xb6\x37\xbf\x5a\x48\x4b\xc9\xbe\xfc\x9a\x46\xa6\x34\x17\xa3\x2c\ +\xe7\x13\x39\x44\xdb\xf8\x92\x2b\x01\x8b\x23\x57\x4a\xc4\x9b\x31\ +\x69\xdb\x4c\xe1\xad\xeb\xc4\x75\x5a\x69\x5d\x07\x97\x49\x3c\xe7\ +\x85\xa5\xe8\xcb\xb6\xcb\xb2\xa6\xf4\xf8\x76\x2a\xa3\xc9\x2b\x73\ +\x19\xa2\xbb\x5e\xe8\xdb\xa7\xcb\x0d\x4e\xac\xb4\x99\xfa\x82\xdf\ +\x2d\xc5\xd7\xb8\x69\xf3\xbb\x76\xdd\xff\xfa\xce\xba\x2c\x69\xaf\ +\x3f\x3a\x3d\x61\xb7\x4a\x8c\x67\x94\xe8\x6b\x0f\xa1\x38\x55\xe7\ +\x74\x6d\x3d\xf3\x07\xb7\xa3\xda\x05\x8e\x1f\xbc\xca\x13\xf6\xb0\ +\x4f\x42\x4e\xf3\xd8\x98\x36\x8e\x9d\xed\x2b\xd1\x28\xe3\x1c\x18\ +\xe1\x1d\xb4\xe8\x9d\xa4\xba\x95\x0d\x02\xb7\xbb\xb7\x9c\x0d\x0a\ +\xb5\x8e\xba\x4a\x6b\x0b\xfb\x28\x01\xc6\x25\x68\x5b\x59\x81\x17\ +\x59\x9b\x84\x6f\xf3\xca\xa6\x3c\x1f\x1a\x05\x2b\xfa\x80\xbd\x27\ +\x56\x4b\xb2\xb2\x52\x8e\xb7\x45\x17\x70\xf3\x6f\x01\xeb\x57\x86\ +\x55\xda\x12\xae\xe4\x39\xcf\x20\x28\x39\x9c\x75\xcd\x84\x4f\xc9\ +\x11\x79\xec\x6f\x4e\x10\xb1\x60\x12\x33\xce\xa4\xe7\x36\x51\x14\ +\x14\xfb\x7a\x08\x9d\x74\x8c\xc3\x4c\xda\x18\x12\x1a\xa6\x04\x26\ +\x8b\xae\xad\xbb\xd2\xc5\xbf\xd8\xa7\x77\x12\x70\x9b\x0e\xd9\x4a\ +\x9e\x53\xf0\xae\x61\x9d\x29\x45\x38\x5f\x4b\xea\x9c\x8a\x2e\xe3\ +\x9c\x24\xce\xbb\xa1\x3d\x66\x2a\xde\x63\x25\x9d\x7f\x23\x93\xde\ +\xe7\xf4\x3a\x77\x8f\x7e\xc2\xb8\xed\xcb\xc6\x7a\x61\x9f\xb7\xf3\ +\xd4\xd8\x4d\x9d\xbf\xeb\x0a\x95\xb6\x57\x27\xd4\x25\xa4\xa5\xea\ +\x37\x51\x3a\xa8\x78\x4a\xed\x52\xf3\x7e\x0f\xad\x4a\x9b\x57\x6c\ +\x5f\x8d\x7b\x77\xef\x8e\x8f\x7c\xe2\x6a\x7c\xf5\xcd\xdf\x1e\x5f\ +\xfa\xea\x67\xc7\xe5\x78\x80\xe3\xb4\x03\x66\xbf\x6f\xb0\xc1\x06\ +\x1b\x6c\xf0\x5d\x83\x9a\x45\x6c\xb0\xc1\x06\x1b\x7c\xc0\xa1\x47\ +\x90\xdf\x09\xc8\x78\x78\x81\xdb\x46\xac\xc8\x2c\x5f\x0c\xcd\x96\ +\xed\xa2\xba\x19\xef\x5c\x28\xfd\xfe\xbf\x1b\x67\x2f\xff\xfe\x38\ +\x38\x39\x19\xa7\x3a\xf3\xf2\x8b\x50\x6b\x35\x03\xbd\xf1\x0d\xc9\ +\x4b\xff\x52\x8d\x81\xf6\x01\x32\x06\xce\x4c\xe0\xa0\xbd\xa8\x50\ +\xa9\x06\xe2\x4c\x38\x3d\xe3\xed\x49\x10\xc0\x6c\x4d\x83\xf1\xc3\ +\xa3\xc3\x71\x74\x5c\x58\x13\x00\x30\x0b\x68\x9e\x38\xb0\x90\x86\ +\x1c\xcc\xc4\x01\xd9\x94\x17\x2d\x1f\xec\xc5\x38\x9e\x9f\x48\xf3\ +\x8d\xa4\x6a\x9c\x0a\x54\x35\x5c\x17\x98\xd4\x55\xb4\xea\xe3\x7a\ +\x69\x32\x90\xc5\x1e\x69\x5d\x6f\xb5\xa3\xeb\x8e\x0d\xd8\xb3\xfc\ +\x2c\x1e\x5a\x56\x72\x65\xfa\x32\xbb\xc0\x27\x76\xb1\x47\xd6\x7d\ +\xa3\xc4\x24\xda\x2d\x57\xce\x9d\x80\xf2\x75\x1d\x7c\x03\x8d\xb4\ +\x88\xc9\xba\xfc\x16\xfa\x63\x59\xda\xe4\xb9\xb5\x69\xf4\xa0\xb6\ +\x0d\xb2\x4d\xd8\xa4\x95\xcc\x70\xeb\x8d\x84\xd2\x01\x6b\x99\x71\ +\x11\xaa\x53\x6e\xae\x54\x05\x4a\x8c\xa1\xeb\xeb\x3a\x2f\xfe\xde\ +\xce\x98\x15\xbf\x24\x65\xd8\xca\x30\x13\x2d\xb7\x50\x9f\x95\x8d\ +\xf4\x5d\x4c\xe2\xb4\x62\x49\xee\x13\x93\x2b\x39\x51\x8a\x6e\xb9\ +\xfb\xf9\xb6\xd4\xfb\x6a\x25\xdf\xa9\x99\xe5\x75\x99\xfa\xce\xfd\ +\x5a\x74\xe9\x5c\x36\x75\xa4\x0c\x6f\x7b\xec\xc2\x47\x87\x4d\xd9\ +\x1b\x93\x85\xee\x2a\x36\x9e\x34\xb6\x00\xfe\x65\x48\xce\x0e\x4a\ +\x1f\xd9\xd0\x36\x96\x2e\xbe\x0d\xd0\x3b\x3c\x06\x6b\x5c\xa9\xe1\ +\x36\xf1\x5a\xb0\xa3\x00\x76\x98\xf7\x07\xfb\xb1\x9e\x48\xec\x8b\ +\xeb\xf4\xa4\x8d\xdb\xf8\x6e\x69\x0f\x6e\x15\x4b\x90\xde\x54\x19\ +\x61\x0b\x87\x5a\xf8\x15\x88\xf1\x0d\x9e\x15\xa0\x9f\xf5\x59\x90\ +\x30\xc6\x89\xde\x37\x25\xaa\xa8\x40\xd4\x21\x1a\x4c\x3e\x21\x35\ +\x93\xfd\xa8\x18\xc3\x62\x91\x2a\xd9\x28\xe2\x18\xc6\xa2\xc4\x0d\ +\xd0\xae\x8f\x33\xf6\xa3\xb2\x33\x40\x69\xdf\xcd\x4e\x25\x1c\x9b\ +\x50\x65\x25\x14\x6a\x4a\x02\x66\xd2\xc0\xb6\xde\xd1\x5b\xa5\x8c\ +\x6f\x9f\x93\x7d\x9a\xe6\x5c\x7e\xb0\x92\x41\x73\xe3\x87\x1b\xff\ +\x9c\xcb\xe1\x39\xb7\xa3\xc7\x21\xe7\xf6\xb6\xc7\xd6\xd8\x1f\x91\ +\x3b\x25\xd7\x71\xe2\x73\x47\x6a\xe5\x9b\xf9\x3a\x27\xf3\xea\x22\ +\xff\xda\xfa\xe2\x22\xc7\xb3\x3a\x86\x98\x3c\x21\x74\x72\xe7\x78\ +\x9c\x9c\xb2\xc0\xf0\x68\x7c\xed\x57\xff\xc5\x38\x38\x7f\x6d\x8c\ +\x73\x62\x52\xc2\xaa\x55\xb0\x8d\x56\xe2\x6f\x1b\x7c\x27\xca\xd8\ +\xe0\xdd\xa1\xb6\xf9\x0e\xb4\xac\x31\xdb\x69\xbd\xad\x4a\xce\x71\ +\xca\x5e\x7a\x79\x71\x30\x1e\x5d\x3e\x1e\xff\xf1\xf3\xff\x9f\xf1\ +\xa1\x1f\x38\xd7\xfe\x26\xe3\x03\x8d\x3d\xb4\x6f\xf2\x23\xa5\xcb\ +\xcb\xeb\x71\x7e\xc1\xd3\xff\xe2\x75\x0d\xc9\xe2\x40\x7e\x98\x74\ +\x75\xad\xfd\xdd\xc7\x27\x3e\x24\x28\xe1\x3e\x5f\x16\x78\xdc\x43\ +\x69\x13\x73\x4c\x69\xff\xe6\x58\xf1\xf1\xc4\xc2\x18\x8b\x69\x59\ +\x50\xf3\x78\xcb\xb2\x13\x1d\x62\xc7\x92\xd5\x53\x68\x96\x07\xcf\ +\xa4\x03\xd7\xc7\xdd\x08\xed\x4a\x90\xa8\x86\xa8\x3e\xe1\xe5\x58\ +\x44\x86\x42\xe3\x20\x53\xf5\x51\x7b\xc0\x71\x2a\x9e\xb1\x13\xc7\ +\x67\x7f\xa6\x4d\x8e\xcf\xd8\x64\xcc\x81\xc6\xf1\xe8\x17\x42\x20\ +\x51\xb7\x54\x44\xc9\x95\x7c\xcc\x43\x83\x3b\x86\x4f\x07\x36\xc8\ +\x22\x53\x6c\xaf\xaf\xf3\x74\x51\x74\xc8\x16\x5d\xfe\xab\x2b\x69\ +\x0e\x0b\x9c\x14\x95\x32\xa1\x89\xd1\x3e\xd5\xf2\x75\x9d\x77\x13\ +\xb2\x75\x7a\x9a\x4e\x3c\x9f\xb5\x9e\xf2\xaa\x5e\x29\x64\xe1\x97\ +\xd4\xf6\x4d\x47\x9e\xf6\x2d\x6d\x59\xa7\xd6\xcd\x34\xfb\xa3\x53\ +\xb7\x71\x29\x17\xc6\x1f\x30\xc9\x65\x49\xc1\xd7\x69\x91\xf1\xb1\ +\x73\x14\x91\x95\x9f\x5a\xea\xad\xde\xfd\x09\x4f\xe2\x93\x1f\xe3\ +\xc9\x45\x72\xb1\xe5\x1f\xba\x63\x6b\x98\x9e\x58\x3c\x25\x88\xaa\ +\x7c\xd8\x4f\xf8\xf1\x91\xd8\x59\x74\xfc\x68\x33\xa4\xb2\xec\xb6\ +\x4e\xb6\xeb\xbd\xb6\x84\xd3\xc7\xa8\xf7\x73\xfc\xf1\xce\xc7\x32\ +\xa7\x42\xe5\x43\x32\x02\x63\x6f\x1c\x99\x41\x71\x82\x6d\xe5\xd4\ +\x11\x9d\xda\x50\x38\xbe\xc4\x28\x21\x75\x08\x65\x9a\x9a\x97\x51\ +\x25\x2b\x12\x47\x95\x32\x0b\x34\x81\x49\x94\x4e\x1c\xb2\xed\x0a\ +\x14\x0a\xac\x64\xbd\x5d\xda\x2e\x65\x8b\xe1\x1b\xb4\x60\xf4\xca\ +\x8d\x4b\x60\x34\xe9\x8a\xd3\xb4\xc8\x62\x92\x4a\xb2\x40\x29\xf2\ +\x55\x52\xd9\xde\x16\x3a\xa7\x4d\x59\xb6\x92\xe9\x92\x19\xbc\x03\ +\x05\x5a\x36\xcb\xdf\x01\x9c\x2a\xad\xf4\xb6\x35\x45\xf4\x2e\x61\ +\x17\xd6\xe5\x06\x90\xf4\x8e\x0b\x70\xf6\xdf\x03\x9f\x8f\x4d\x54\ +\xa2\xfe\x4d\x43\x2d\x38\xe7\x5e\x9f\x7d\x45\x27\xe5\x07\x48\x7d\ +\x5e\x06\x33\x1e\xca\xb9\x9c\x73\xfc\x00\x4b\xde\x4f\x18\xe7\xc7\ +\x0f\xab\x73\xb6\x13\xf9\xee\x79\xbc\x86\x87\xa9\x79\xd1\x34\x8c\ +\x23\xb3\x9f\x9a\x3e\xbf\xd0\xb5\xea\x82\xff\xb9\x2c\x03\xb9\xea\ +\x68\xb3\xf3\x73\x2f\x9c\x8f\xfb\x2f\xbd\x33\x7e\xf5\xb7\xfe\x2b\ +\xff\xbf\xda\xf5\xf5\xa5\x74\x29\xab\x7b\x72\x83\x0d\x36\xd8\x60\ +\x83\xef\x2e\x70\xe6\xdf\x60\x83\x0d\x36\xf8\xe0\x03\x63\xc8\x6f\ +\xe7\xf8\x31\x63\xd4\x40\x97\x03\xee\x72\xd7\xfa\x35\x30\x11\x92\ +\x3e\x37\x5c\x44\x42\x4f\x42\xd4\xe5\xe5\x38\xbc\x7a\x7b\x3c\xf8\ +\xec\x6f\x8e\x71\x7c\xe3\x57\x3d\xfa\xe6\x01\x4e\xb2\xf1\x7f\x41\ +\x91\x78\x3a\x8d\x1b\x21\x95\xf2\x1f\x54\xc2\x9a\x9d\xfa\x17\xd7\ +\x72\xf2\xc2\x94\xe4\x8e\x9d\x08\x20\x8d\xbb\xa1\x54\x16\x93\x03\ +\xfe\x98\x8d\x85\xb2\xa3\x3c\x9d\xc6\x13\x66\x3c\x75\x66\xb9\x26\ +\x09\x87\xfe\xaf\x8f\xbc\xb6\xd1\x4f\xa9\x1d\x1d\xfa\x55\x8e\x4c\ +\x1e\x66\xc2\x87\x58\xd8\xd4\xc4\xa2\x6f\x28\xb9\xda\xce\x94\x3c\ +\xe1\x2e\xba\x52\xea\x2f\x8c\xae\xea\x3c\xed\xe0\xd1\x55\x1b\xa6\ +\xac\x17\xdc\x66\xc2\x46\xba\x6e\xab\x78\x63\xf7\x43\xe8\x94\x2b\ +\xde\x18\x91\xb2\x2e\x47\x5f\xfb\xc0\x2b\x44\xfc\x85\x0d\x92\x91\ +\x23\x32\x11\x49\x78\x33\x91\x19\x67\x02\x1d\xf9\xda\x86\x14\x3b\ +\xdb\xda\x46\xd9\x64\xde\x5f\xca\xe4\xdb\xa5\xaf\xea\x98\x3e\xee\ +\xe4\xb8\x4e\xc5\xac\x93\x7d\xd6\x69\xe5\xb7\xec\x26\x21\x56\x36\ +\xf3\xc9\x36\x31\xfe\xb8\x9f\x96\xb4\xf4\x5d\xec\xa7\x2b\x31\xdd\ +\x9f\xe0\xe8\xf6\x93\xed\xb2\x1e\xea\x6d\x98\xb4\xa6\x97\xb4\xf8\ +\xc5\xd1\x7d\xb1\xe2\xad\xa3\x3c\xcb\x9a\x16\x41\xdd\xb0\xed\xfa\ +\x55\x5d\x5d\x37\x78\x6c\x2b\x99\x06\xa0\x0b\x47\xde\x65\x95\xa8\ +\xf8\x69\x0f\x94\x7e\x92\xb6\x51\x32\xbf\xc6\xf5\x71\xbf\x60\x17\ +\xfc\xff\x67\xef\x4f\x98\x2c\x49\x8e\x2b\x5d\xd0\x33\x22\x72\x2b\ +\x6c\x04\xd9\xd3\x23\xf3\xff\xff\xc1\xc8\x88\x3c\x79\x23\xf3\x7a\ +\x5a\x86\xfd\x1e\x5f\x6f\xec\xc7\x6e\xb0\x09\x12\xc4\xbe\x17\x50\ +\x58\x6b\xcb\x8c\x25\xe7\x7c\xe7\xa8\x9a\x99\xdf\xb8\x91\x99\x55\ +\xa8\x42\x01\xa4\xab\x5f\x35\x55\x3d\xaa\xa6\x66\xbe\x99\x9b\xbb\ +\xc7\xbd\xe1\xfe\xae\xd8\xdb\xf2\x92\xe3\x9e\xaf\xd9\x6d\x3f\xc4\ +\x2c\x2b\xc5\xda\x63\x7b\x9a\x75\xef\xf3\x29\xdd\xf3\xf9\x3c\x61\ +\xa9\x63\x17\xa8\x74\x46\x0d\x93\x74\xd7\x51\xe7\xe9\xff\x58\x89\ +\xa6\x9d\x8e\x6f\xf5\x27\x0b\x9b\x33\x75\xb1\x86\x12\x92\xea\x3e\ +\x94\x34\xd4\x39\x2a\x5f\xe3\x06\x07\x5e\x26\xb2\x0d\x35\xd7\x8f\ +\xce\x7a\x9f\x0f\x1f\x9f\xb8\x44\xb1\x83\xc5\x41\x4f\x39\xb7\x80\ +\xdd\xeb\x0e\x2e\x81\xdd\xd0\x04\x81\x47\xc0\xc2\x63\xeb\xed\xc9\ +\xfd\x73\x4b\xfa\xa0\x95\x64\x7c\x1f\x2f\xd2\x24\x19\xeb\x19\xc3\ +\xfd\x87\x13\x60\xb9\x0e\xd8\xc7\xc2\xd8\xde\x0f\x80\x9c\x0e\x2c\ +\xa6\xff\x4a\x1a\x9d\x7e\xf0\x71\xbf\xad\xe8\xc3\x0b\x0b\xc6\x62\ +\xae\x47\x8c\xdd\x62\x5d\xbf\x6e\x78\xa9\x56\x63\x3c\xd7\x9e\xc7\ +\x8f\x2f\xb7\x67\x5f\x7e\xbe\x3d\xbb\xba\xdc\xee\xde\x7f\x77\xfb\ +\xe5\xff\xe0\x1a\x48\x4e\xc8\xc9\x43\x63\xdd\x45\x0b\xfc\xb9\xd1\ +\x1f\xa3\x8d\x83\xce\xd3\xb2\xab\x73\xcc\x45\x35\xad\x3e\xa8\xfd\ +\x30\xbe\x1c\x7e\x22\x1e\xd7\x5f\x6e\xd7\x77\x2f\xb7\xef\x7f\xfb\ +\x3f\x6e\x17\xcf\x7e\xba\x7d\xfd\xaf\xf2\x28\x93\x07\x95\x94\xc8\ +\x17\x2f\xae\xfd\xbf\xfd\x6e\x75\x6d\xe0\x67\xb3\xfd\xd3\xd9\x7c\ +\x83\x87\x9f\xfe\x75\xc2\x4e\x1e\xe2\x27\xc6\xa8\x99\x6e\x08\xcf\ +\x09\x10\xe9\xf3\x81\x73\x88\x73\x49\xe7\x91\xcf\x33\xe6\x45\x3c\ +\x70\x7d\xe2\x9f\x7b\xf4\x83\x57\x7e\xee\x91\x17\x69\xf5\x20\xd6\ +\x0f\x60\x75\xee\xf9\xff\xa3\x11\xef\x07\xb2\xf8\xa8\xab\x5c\xb6\ +\xd3\x0f\xb7\x96\xc6\x43\xe8\x75\x6e\xa4\x57\x61\xaf\x23\xe7\x1f\ +\x17\x08\x6c\xc5\xf0\x02\x91\xd7\x29\xc6\x7b\x11\xde\xac\xb5\x97\ +\xe4\xa5\x08\xb1\x61\x7d\xca\x8f\x8c\x9e\x4b\xea\xac\x07\xde\xe3\ +\xee\xca\xbc\x28\x9a\x76\xd5\x03\x57\x2c\xac\x14\xb2\x69\x4f\xdb\ +\x9b\xee\x76\x9c\xf7\xc5\xb4\xbb\x8d\x3d\x93\x8f\xfc\xf1\xbb\xaf\ +\x55\xc7\x75\xc5\x7e\x41\x84\x24\xbe\x30\xfc\x8e\xdf\xb5\x51\x98\ +\x02\xf2\xcd\x45\x58\x75\x4f\x96\xb9\x4d\x56\x5e\x73\x88\xdd\x26\ +\x8c\xde\xdc\x76\xfb\xc4\xeb\x3c\x87\x3c\x8d\x5b\x57\xac\x73\x69\ +\xfd\xbc\x0d\x4f\xb9\xfc\x66\xea\x20\x85\x9f\xc6\x4b\x67\x1d\xcd\ +\x8a\x81\xf9\x66\xda\x3e\xc7\xa9\x5d\x7d\xa0\x5f\x4b\x9f\xa9\x9b\ +\x7e\x95\x2e\x03\xde\x1f\x27\xbd\x4f\xc3\x89\xa3\x88\x8d\xd2\xa7\ +\x8b\x09\xcc\x6e\x3b\x4d\xad\x25\x17\x9e\x42\xca\x56\x56\xe7\x0c\ +\x4f\xb8\xed\x91\xa0\x68\x60\x27\x9c\x7e\x35\x0b\x03\x96\x9e\xf6\ +\xb4\xa2\x05\xba\xbe\x95\x95\xb5\xbd\xc0\x16\x72\x5c\xd7\xaf\x38\ +\xc7\xb8\xd8\xd3\x0e\x2a\x03\x31\x70\x1b\x33\xca\x59\x65\x76\xcc\ +\xda\x86\x69\x3a\x4e\xe2\xc2\x2b\x05\x53\xa9\x75\x98\xeb\xd1\x51\ +\x69\xe7\x94\xc6\xf1\x61\xbd\xa4\x1d\xc1\x97\xea\xa5\x92\x5b\x9f\ +\x66\x21\x3e\x16\x08\x29\xe9\xa2\x0e\x06\xe3\xd6\xa6\x34\xc9\x68\ +\x9f\xf1\xc5\x19\x75\x1e\x4c\xd1\x66\x3e\xcb\xe1\x5e\xc7\xcd\xd2\ +\x5d\x4e\xad\x6d\xdf\xc3\xf6\x41\x6a\x35\xd8\x58\x3c\xbe\x33\x2e\ +\x4f\xe6\xde\x99\x49\x8b\xc7\xe9\x1a\xd3\xe3\x23\xbe\x25\xe3\x78\ +\x96\x6c\xb3\x79\x0c\xd9\x54\xb1\x6e\x9b\x15\xf3\xb5\x49\x03\xe4\ +\xcb\x9b\x6b\xdf\xef\xe7\x58\xd7\x79\xe0\xfe\x5d\x6f\x4f\x9e\x3c\ +\xdd\xfe\xea\x2f\x75\x6e\x5d\xbd\xb7\xfd\xdd\x37\xfe\x57\xdf\xbf\ +\xbb\xf3\x73\x03\x28\x9f\x33\x1f\x74\xd0\x41\x07\x1d\xf4\x05\x11\ +\xf7\x1f\x07\x1d\x74\xd0\x41\x7f\xda\xe4\x19\x68\xd4\xcf\x95\x68\ +\xa3\xe6\xab\x83\x1f\xa4\x0e\x4e\xc7\x98\xd4\x36\x62\x42\xf1\xcb\ +\xa4\x8b\xed\xf7\x7f\xf7\x7f\x6e\x2f\x5f\xbc\xb7\x3d\x7d\xfc\x64\ +\x7b\xc6\x1f\xbb\xe1\xf7\x8c\x5a\x37\xad\xf5\x53\x8f\xaf\x5e\xdd\ +\xe8\xc6\x84\x87\x93\x4c\xb0\x95\xcb\x0f\x2a\x91\x9a\x5c\x2b\x8f\ +\x27\xdb\xd8\x4c\xb8\x47\x9b\x5d\xa4\x55\xff\xef\x90\xf5\x66\x80\ +\x89\xfe\xa5\xb0\xab\xfa\xeb\xe8\x7e\x08\x24\xac\x63\xc6\x43\x22\ +\x6e\x34\xec\x97\x2c\xce\xb7\xd2\x9c\xda\x94\xb6\xad\xe8\x93\x9b\ +\x5f\xd6\x31\xfd\x5a\xee\xee\xfd\x20\x21\x37\xe5\x72\xfa\x01\x07\ +\xf8\xb8\x59\x60\x3d\xc1\x59\x37\x9e\xb6\xb0\x6e\x62\xea\xe7\x21\ +\x2d\x52\xb1\xd8\x5d\x07\x5b\x79\xc9\xe7\xbc\x65\x27\xa6\x6c\xf7\ +\x87\x18\xf4\xf4\x37\x7a\xf9\xcc\xe9\xbf\x95\x81\xa3\x82\xc5\x17\ +\x77\xf9\x94\x7a\xdc\x20\x19\x0f\x0f\xb5\x15\x15\xd6\x8b\x86\xdf\ +\x78\x7c\xe1\xc5\x5e\x03\xa1\xe1\x47\xee\xe0\x89\x35\x9f\xc5\x2b\ +\x37\xdb\x82\xa5\xed\xd7\xb0\x8a\xce\xb4\xf0\xa4\x11\x53\xdb\x75\ +\xb2\x9c\xb4\x73\xc2\xfb\x38\x12\x38\xc9\x8e\x4f\xfb\x40\xbd\xf1\ +\x30\x8b\x3c\x7e\x01\x97\x70\x17\x8d\x3b\xa6\xf1\x30\x58\x64\x98\ +\x3c\x6b\x1f\x10\x6b\x5c\xc7\x46\x57\xbb\x12\xc6\x5a\x0e\xdf\xb4\ +\x53\x17\x60\xa1\xf2\x9b\x21\xdf\xe0\xee\x63\xd6\x90\xb3\xac\xe2\ +\x2c\xb7\xef\x24\x06\x60\xb5\xcf\x71\x2a\xa5\x2f\x31\x6b\x9b\x49\ +\x87\x46\xc8\x09\x9f\x25\x39\xfa\x2f\x6c\x4d\x0f\x06\x36\x25\x80\ +\x32\x2f\x6c\xcb\x68\xa1\xa2\x4c\x51\x3d\x7c\x18\x94\xfe\xba\x18\ +\xb8\x14\x7f\xb2\x0e\xee\x4b\xc1\xed\xab\x22\xb2\x55\x68\x24\x8f\ +\x74\x39\xa0\x25\xd0\x3a\x2f\xc2\xc4\xd2\x63\xfa\xa8\x08\xed\x62\ +\x53\x64\x34\xa8\xfe\x56\xd9\xd2\x7d\x95\xf4\x1e\x50\x1a\x1f\x3b\ +\x46\xc8\xdd\xb1\xd0\x8c\x6f\xbd\xc5\x24\x01\xfa\xd0\xde\x3d\x97\ +\x5b\xa8\x52\xe3\x34\x43\x75\xc6\x6d\x8d\xe5\xe3\x61\x7f\xc6\x73\ +\xd8\x3f\x4f\xe7\x97\x69\x19\xeb\xc3\x54\x89\xee\x7a\x6e\xc9\x89\ +\xbc\xad\x79\xd8\x36\x89\x1e\xd4\x3a\xf8\x1c\xe5\x2f\xac\x91\x19\ +\xbb\x7d\x7d\x7a\xf1\x72\xbb\xf5\x5f\x5a\x67\xdc\xe6\x5b\x3c\xcf\ +\x9f\x3d\xdd\x9e\x7c\xe5\x2b\xba\xee\x5d\x6c\xbf\xfd\xd6\x37\xb7\ +\xeb\x5f\xfe\x68\xdb\x6e\xc8\x45\xee\xfb\x6b\x75\xd0\xbf\x70\x5a\ +\x77\x7b\x0e\xa9\x3d\xad\x87\xdc\x42\xf9\xd9\x45\xb1\xfc\xbc\x3a\ +\xbb\xbb\xe6\xe7\x1c\x5f\x6d\xdf\xfb\xd9\xbf\xdf\xfe\x6f\xff\x8f\ +\xdb\xed\xc9\x95\x4e\x36\xfe\x2f\xad\x16\x8e\xbf\x6b\x1d\x87\xd7\ +\xf2\xf3\x2d\x00\xaa\xf5\xf5\x85\x69\x46\x9a\xcc\x39\xc5\xe1\x0c\ +\xdb\xa6\x8d\x6e\xbf\x24\xf9\x62\x88\x6b\x7e\x14\xce\x37\xcf\x2e\ +\x2e\xae\xb6\x4b\xf3\xc9\x37\xd0\xfc\xd2\xad\x18\x5b\x7d\x36\x97\ +\x3e\x72\xde\xe3\x49\xe9\x67\xf7\x11\x8b\x71\x89\x7e\x67\x5d\x40\ +\xb8\x82\xe5\x45\x5a\x63\x25\x57\xd6\xc2\x27\xdf\xd0\x8b\x3d\x7d\ +\x64\xe5\xfa\xeb\x10\x61\x7c\x37\xa2\x6c\x73\xeb\x6c\xcb\xb9\x1d\ +\xf1\xd1\x1b\xd8\xd7\x9b\xc2\x60\x12\xb1\x2d\x6d\xbb\x6b\x79\x91\ +\x17\x3f\xfb\x07\x49\xae\xbc\x70\x5b\xbf\xb9\xa5\x4f\xf9\x69\x57\ +\x75\x0a\xec\x3a\x69\x5b\x3c\xe2\x4e\xf0\x1d\x16\xee\x97\x6f\x13\ +\xab\x58\xf0\xd2\xed\x50\xd6\x91\xa3\xe3\xdd\xce\x82\x9b\xdb\x6e\ +\x6c\xf5\x15\x67\x33\x44\xef\x5c\x35\xa7\x89\xcc\xfa\x31\xd7\xf7\ +\x7a\x7a\x2e\x0b\xcb\x37\x58\xdb\xaa\x74\x36\x83\x59\x71\x3c\x84\ +\x67\x5f\x62\x3b\x5f\xc5\x00\x90\x83\x69\x78\x63\x66\xb6\xb9\x73\ +\xe9\xbc\x41\xd7\x71\xe6\x9f\xe0\xe4\xa5\x9c\xeb\xf7\xbe\x25\xb6\ +\xa4\xeb\x65\x25\xdc\x06\x0b\xf6\xc0\x63\x8f\x3a\xca\x09\xcc\x85\ +\x23\xee\x8a\xb7\x9f\xa2\x75\x82\x12\xd3\xd8\x50\x1b\xb4\xa1\x86\ +\x7c\x74\x75\x40\xf2\x35\x53\xf8\x6c\x89\x51\x0b\x5a\x51\xc5\xa4\ +\xc3\xc9\x93\x7e\xa8\x9f\xde\x06\x27\xe4\xf8\x88\x8e\x75\xb8\x73\ +\x14\x4e\x11\x70\xcc\x6f\x52\x86\x5a\x5f\xb1\xd4\x89\x8a\x8c\xba\ +\x96\x25\xdb\x28\xc2\x4c\x13\x2a\xf2\x29\x3d\xfd\x0a\x30\x50\xe3\ +\x56\x2c\xb2\x24\x96\x73\x33\xeb\x6c\xaa\x18\x9f\xb3\x52\x7a\x4b\ +\x38\x3e\xca\x2a\x8a\xca\x4b\xbe\x61\xd5\xfe\x91\xea\x2c\xdd\xbe\ +\x89\x76\x6b\xef\xb9\x0f\x41\xa7\x7f\xa1\xc2\xee\x85\x8c\x4a\xa7\ +\xd5\xda\x5a\xf7\x21\xe3\x71\xa9\x39\x2a\x1c\x16\xad\x14\x07\x30\ +\x9a\xcf\x05\xcc\xdf\x36\xeb\xfb\x5f\xdb\xe8\x8c\xcf\x3d\x56\x67\ +\xfc\xbe\xe0\x27\x7b\x6d\xf3\x72\xad\x5e\xaa\xb1\x54\x8c\x7f\x36\ +\x98\x0e\x8d\xb6\xf2\x78\x75\xf6\x31\x64\x9b\x42\xcc\x79\xcf\x89\ +\x87\xe4\x9b\xfe\xd7\xd7\x2f\x75\x4e\x6a\xfe\xa4\x2d\xc7\x39\xe9\ +\x4b\x9e\xc6\x8a\x77\xde\x79\xb4\x7d\xf5\xaf\x1e\x6d\xdf\xff\xc5\ +\x7f\xd9\x7e\xf9\xfb\xef\x6c\xaf\xae\xaf\x55\x9f\x36\x48\xe3\x8c\ +\xd6\x0e\x3a\xe8\xa0\x83\x0e\xfa\x62\xe8\x78\xa1\x76\xd0\x41\x07\ +\xfd\xf9\x50\xe6\x90\x9f\x0f\xbd\x6e\x3e\x7a\xaf\x5d\x82\x0b\xf4\ +\xe4\x59\x74\xaf\xbe\x6e\x5e\x6f\x6f\xb7\x8f\xde\xff\xe9\xf6\xc1\ +\xf7\xfe\xe7\xf6\xf4\xe9\xd5\xf6\x15\xb1\xef\x13\xea\x2e\xf4\xf6\ +\x96\x9f\x79\x84\x5f\xfa\xa1\x24\xb8\x1f\x4c\xc2\xba\x09\x9c\xdf\ +\xdc\xe2\xa6\x44\xcc\x4d\x37\x09\xd0\xb5\x70\x4b\xe1\xe6\xcd\x2a\ +\xb8\x21\xe0\xa1\x8f\x98\x6f\x2a\xf0\xbf\xd2\xf8\xa6\x1a\x01\xc6\ +\xb0\xb9\x01\xd0\x0d\x43\xfe\x62\x9a\x3a\x75\x03\xc1\x83\x1f\x6e\ +\x0c\xfc\xed\x34\x58\xd5\x92\x18\xa5\x28\x6d\x37\xe7\x66\x09\x5d\ +\x7d\xe4\x25\x18\xd2\x36\xfd\x66\x1d\x90\x65\x73\x53\x8b\xee\x38\ +\xd5\x93\xd4\xca\x56\x5c\xe5\xea\x27\x01\xc2\xa8\xd3\x79\x1c\x67\ +\x3b\xdb\x82\x9b\x10\xe7\xa3\x2d\x09\xdf\xd7\xb9\x3e\x6d\x95\x8e\ +\xcf\xb2\xe2\xac\xb3\x0a\x1d\x03\x4f\x1d\x49\x31\xf5\x50\x9b\x09\ +\x2d\xc7\x00\x83\x59\x6d\x1d\x39\x81\xb0\x29\x8e\xf6\x03\xbb\xbb\ +\xe7\xb8\x17\x19\x61\xf0\x55\x3f\xe5\x19\x1b\x20\xcd\xad\xdc\xae\ +\x1d\x5e\xdb\x6e\xc5\x12\xb7\xe6\x3a\xcf\x8e\xd1\xb2\xde\xd6\xca\ +\xb1\xe7\x11\x8f\x88\x6e\xc9\x2e\x59\x59\x10\x37\x8e\x7e\x2e\xc8\ +\x93\x9d\x8e\xd5\x06\xea\x18\xa7\x5c\xe2\xc7\x39\xd1\xf5\x8b\xfd\ +\x8f\xcc\x8b\xd2\x66\xa4\xd5\x98\x29\xda\x58\x30\x1d\x5d\x56\x5c\ +\x1a\x8f\x3d\xa8\xcc\xa5\x6a\xbc\xb6\x0b\x44\x23\xc0\x76\x4b\x04\ +\x45\x53\xe1\x83\xdf\x8e\xde\x1c\x39\x7b\x9c\x07\x29\xd2\xba\x52\ +\x3b\xa6\x78\x2b\xea\x6a\x23\xd5\x00\x30\x86\x18\xd4\xdb\x81\x23\ +\x63\x90\xec\x61\xe1\xf3\x43\xb7\xea\x2b\x36\xca\x42\xc6\x17\xee\ +\x22\x35\xa2\xb7\x9a\xfa\x14\x69\x61\xec\x6b\x5b\xab\x1f\x44\xbe\ +\x1a\x23\xb0\xb3\x9f\xca\x8f\xcf\x66\xf9\x7d\xb0\xd1\xef\x6c\xc7\ +\x0a\x35\xa1\x56\x15\xb3\xbc\x8e\x9b\xed\x80\x47\x3a\xc4\x85\x4d\ +\xd3\x23\x1f\x69\x02\xe4\xa0\xd7\xed\x37\x66\xa2\xbd\x55\x6f\x0d\ +\x5a\xb6\x6b\x8d\xf9\x73\x1c\x8f\xee\x97\x66\x7e\xf8\xaf\x31\xbd\ +\x1e\xea\xe7\x65\x00\xba\x7c\x5c\x13\xc0\x2a\x16\xd9\xf9\xfa\x85\ +\x41\x99\x69\xd4\x0d\x73\xa6\xc7\xa0\x6f\xee\x9f\xc6\x70\x7f\xf3\ +\xa3\xae\x4b\x5c\xbb\xee\x78\xa9\xc6\x1f\x88\xf8\x1a\x96\x97\x6a\ +\x5f\xfe\xd2\xf3\xed\xea\xc9\x93\xed\xf6\x83\x5f\x6f\xbf\xf9\xef\ +\x7f\xab\x54\x9c\xe8\xe4\x5c\xa8\xec\xea\xc9\x41\xff\x52\xe8\x74\ +\x3f\x43\xbd\x93\x57\xf9\xba\x1d\xaf\x1c\x1c\x6e\x84\xf0\xbf\xd3\ +\x78\x39\xc0\xd3\xc6\xef\xfe\xe3\xff\xb2\x3d\xfd\xda\x4f\xb7\xa7\ +\xef\xf0\x50\xf2\x52\x38\xdf\x9c\xe4\x32\x72\xbb\x5d\xbf\xb8\xdd\ +\x5e\xde\xe4\x9c\xf4\x03\x4b\x98\xa9\x04\x89\x38\x86\x55\xfa\x81\ +\xa5\x34\x5f\xc3\xac\x43\xdd\x99\x62\x3e\x3e\x27\x32\x4f\x8a\x9e\ +\x6f\x2c\xf0\x33\x60\xfe\x66\x1a\xdf\x48\xd3\xf9\x74\x79\xc1\xff\ +\x50\xe3\x45\x1b\x0f\x5c\x13\xe3\xb8\xe2\xcc\xbd\xea\xbc\xf3\xa2\ +\x73\x4f\xe5\x4a\xc3\x52\x3f\xfb\xda\x7a\xef\xbc\xd3\x39\x07\x66\ +\xdb\x17\x4d\x6c\xb1\x6c\x7f\x0b\xcb\x7a\xec\xc6\xc3\x8b\x8e\x07\ +\x7b\x8c\xc5\xd8\x44\x13\x93\x73\x5d\xa6\xb7\x1b\x0a\x97\xe7\xc6\ +\x60\x45\x01\x98\x83\xd5\xcb\x99\x62\xf4\xb6\x23\xa7\x9f\x69\xde\ +\xf8\x86\x5b\x5f\xcf\x55\xc0\xf4\xa1\x75\x2a\x58\x27\x7e\xc4\x74\ +\x7c\xd8\x7d\x58\xfa\x15\xae\x7a\xc5\x8e\xd8\xf9\x8b\xc1\x69\xbf\ +\xfa\xd0\x6d\x67\x7b\x6a\x59\xda\x37\xfc\xb6\x7c\xda\x5e\xdb\xa7\ +\xb2\xf5\x7b\xf9\xab\xdd\x85\x55\x98\x17\xf5\xb5\x3c\xb6\x35\x5c\ +\x0f\xed\xb3\x7e\xec\x53\x7c\xec\x6b\x74\xf6\x03\xcc\x7e\x17\x5e\ +\x15\xd1\xe9\x1c\x7d\xeb\x5c\xe1\xea\x53\xad\x83\xc9\x46\xd4\x1c\ +\xc1\x01\xdc\x86\xd4\xb2\xbc\x98\x02\xec\x54\x9b\x2a\x46\x4e\xf2\ +\x14\x68\xbf\x7d\x14\xc1\xd3\xe7\xf8\x68\x23\x58\x98\xa2\xa0\x60\ +\x25\xa1\x12\x8b\x53\xb1\x88\x5a\x46\x05\x53\x94\x61\x2e\x04\x96\ +\xf6\x5d\x2b\x24\xa5\x75\xfb\xbd\x14\xd6\x0e\xa8\xd6\xc1\x6a\x44\ +\xa8\x82\x5d\x6b\xf8\x3b\x8b\x74\xd6\xd9\x1a\x78\x8d\x14\x00\x23\ +\xb6\xcb\xd6\xb2\x2f\x26\x5e\x5e\x15\xce\x3a\xfa\x61\x60\xac\x3a\ +\x12\x2d\x4b\xdc\x83\x2a\xa0\xf1\x11\xe3\xd1\xca\x80\x98\xbc\xa5\ +\x77\x1f\xda\xd5\x12\xd7\xaa\x23\xcb\xb0\x5d\xab\xc7\x28\x39\x89\ +\x23\x76\xc6\x7b\x7e\x62\xab\xb7\x4b\x62\x29\x19\xa7\xb3\xfe\xca\ +\x20\x67\x5b\xe5\xd4\x87\xb1\x37\xe3\x39\x73\x14\x0d\xe0\x72\xd5\ +\x5c\xc8\x7e\x5a\x8e\xce\x8b\x34\xc6\x6f\xc6\x75\xeb\x1e\xdb\x33\ +\xc6\x67\x6c\xef\x7c\x4e\x2e\x4e\x6f\xba\x9f\xa6\x75\xc5\xa5\x63\ +\xd2\x2f\x36\x55\xff\xa1\xc3\x35\x3f\xfd\x78\x73\x6d\xdd\xcb\x2b\ +\x7e\x71\x60\xdb\xae\x1e\x3f\xdd\xbe\xf4\xb5\xdb\xed\xf2\xab\xef\ +\x6d\x7f\xff\x8d\x7f\x27\x80\xeb\x4a\xce\xd7\xd0\x38\x1a\x0e\x3a\ +\xe8\xa0\x83\x0e\xfa\x02\x88\x2b\xc0\x41\x07\x1d\x74\xd0\x9f\x07\ +\xf5\x04\xb2\xe7\xad\x9f\x35\xbd\x75\x4e\x05\x32\x9b\x6d\x3e\xa1\ +\x20\x77\xfe\xdf\x69\xbf\xfa\x9f\xff\x69\xbb\x7c\xf4\xf1\xf6\xfc\ +\x09\x3f\x0b\x94\x49\xb4\x27\xc3\xbc\x24\xf2\xff\xf6\xe0\x67\xb2\ +\x6e\x7c\x23\x9b\x6f\x66\xf1\x50\x48\x3e\x6e\x82\xc1\xac\x83\xa3\ +\xa7\xbd\xe4\x47\xd7\x6d\x82\xf3\xe5\xa6\x80\x49\xbd\xff\x6f\x1a\ +\x0f\x4c\xcd\xba\x49\xe0\x45\x9a\x7d\x3c\xcc\xd1\x90\x4f\x27\x78\ +\xb8\x6a\x16\xc6\x03\xd6\x7a\xb8\x6a\xdc\xb1\xb4\xb0\x6e\x8c\xa5\ +\x6d\xdf\x78\xf7\x13\x80\x3c\x34\xf5\x4b\x2f\xeb\x62\xbf\xfc\x8a\ +\x3f\xdf\x1e\x8b\xed\x75\x2a\x3f\x4f\x54\x3a\xce\xf5\x1d\x2f\x9b\ +\x97\x6c\xf5\x70\xd6\x2f\x56\x8a\x47\xdb\xde\x06\xd5\x3e\x7a\xb3\ +\xeb\x13\x03\xec\x22\xf1\xd6\xd5\x7d\xdc\x0e\x01\x8b\x74\xfd\x84\ +\x75\x11\x01\xc5\x34\xa7\x0e\xca\x82\xa5\x10\x23\xb5\x0f\x68\x8f\ +\x76\xb8\x3b\x82\x5c\x07\x31\xdb\x30\xe3\x2a\x6e\xb0\xf3\x0f\x5f\ +\xe0\x13\x5e\xf2\x74\xe4\x74\x5a\xec\xe1\x25\xbe\xec\x36\xee\xfb\ +\xc4\xbd\x7d\x58\x87\x13\x6e\x6c\x8d\x19\x71\x55\x7f\x26\x6a\x7b\ +\x81\xcc\x14\xd1\x9d\xeb\x34\xa0\xf6\x17\xcc\x16\x8c\x4a\x91\x5c\ +\x00\xe9\x77\x62\x62\x47\x35\x59\x52\xb4\x2f\xe7\x05\xff\xf7\x83\ +\xb6\x46\x9c\xc8\xf5\xbc\x44\x8f\x62\x8f\x3e\xd4\x83\x07\x78\x12\ +\x33\xc4\x24\x01\xc6\xa8\x87\xb0\x91\xf6\xdb\xb6\x34\x96\xbe\xa4\ +\x0d\xe2\xab\xce\x29\xab\xb8\x27\x8b\xf7\x81\x2b\xab\x50\xce\x50\ +\xc0\x76\x41\xad\x77\x8e\x53\xfb\x1e\x3f\x40\xbb\xb0\x52\x5a\x9f\ +\x76\xc0\x71\x9b\xef\x9d\x1a\xd5\xb4\xea\x0e\xdc\x01\x26\x0f\x41\ +\x63\x7d\x96\x90\x25\x76\x7f\x8c\x18\x2a\xea\xed\x3c\x1d\xb1\xad\ +\xe2\x75\x19\x11\x30\x42\x3d\x8e\x29\x3b\x9d\x4e\x2c\x24\xe9\x24\ +\x65\x16\xe1\x67\x2f\xa6\x2d\x42\xa2\x97\xa9\x7c\xa9\xc7\x12\x10\ +\x89\x88\x9e\x75\x28\x1c\x5a\xd4\x3d\x4d\xb0\xfb\xd8\xc4\xd0\x1d\ +\x05\x9d\x02\xbd\x1f\xfe\x37\xaf\x76\xae\x0b\xc4\xc8\x50\x78\x61\ +\x49\x50\xb9\x4a\x9a\xd4\xa0\xfa\x98\x7d\xd2\x76\x8d\xed\x1e\x47\ +\x35\xa6\xf3\x32\x4d\xe3\xb7\xff\x5f\xd5\xcb\x97\xfe\x16\x45\xc6\ +\xe5\x3b\x3f\x14\x7a\xf6\xec\xd9\x76\x25\xf9\xbb\xef\xfe\xd3\x76\ +\xfb\xcb\x1f\x66\x6c\xf7\x2d\x88\x13\x2e\x32\xb4\xb6\x7e\xd0\xbf\ +\x60\x5a\x77\xf4\xc9\x21\x37\x29\x23\x09\xa7\xa4\x66\x38\xdb\xcb\ +\x97\xb7\xdb\xaf\x7e\xf3\xa3\xed\x67\xbf\xfb\x9b\xed\xab\x5f\x55\ +\xb5\x2b\x0f\xf5\xae\xa3\x23\xd0\x3f\xf3\xf8\xf1\x0b\x1d\x9f\xf5\ +\xf2\x8d\x54\x3e\xcd\xea\xc4\x71\x39\xec\x8c\xc3\x7c\xc3\x26\x81\ +\x38\xa1\x79\x3e\x70\xce\xcc\xb9\x11\xe7\x51\x5e\x8c\x8d\x17\x67\ +\x83\x83\xc7\x97\xf9\xd6\x8a\x99\xbd\x70\xdc\xf3\x20\x16\x49\xc7\ +\x61\x11\x7d\xb2\x4c\x27\x32\x6a\xb0\xd4\xc5\x76\xd8\x8d\xf5\xf9\ +\x57\x2c\x6c\x8e\x3f\xd8\xc8\xd4\x1c\x2f\xaa\x6a\x51\x64\xa4\xcf\ +\xe3\x34\xc9\x6b\xb3\x59\x9f\x53\x94\x08\xfe\x23\x1d\xfe\x04\x91\ +\x0b\x9b\x6f\x64\xf4\xb5\x12\x97\xff\x16\x2a\x21\xb9\x9c\x63\x33\ +\x2c\xb0\xd3\x0a\x77\xbc\xe3\xa8\x57\x5c\xb9\x2d\x59\xba\xae\xe4\ +\xfc\xf6\x9a\x70\x25\x75\xde\xe6\x75\xbd\x0b\xa3\x70\x3f\x9b\x3a\ +\x76\x81\xaa\xa1\xc2\x15\xef\x36\xab\x1e\x9b\x74\xf8\xd8\x42\xe2\ +\xd1\x4e\xc5\x7f\xa6\xdc\x6d\x35\x3f\x84\x17\x2f\xdb\xf8\x3e\x96\ +\xba\x63\x3f\x0b\x5b\xf5\xc1\xc4\x33\xa7\x46\xb2\xbe\xae\xdf\xfb\ +\x43\xba\xf6\xf7\xdc\x2f\x85\x89\x19\xae\xc9\xc7\x3e\x30\xbb\xde\ +\xcc\x4d\x41\x7c\x2a\x52\x7f\x1e\xd3\xcd\x89\x55\xdc\x1e\x36\xde\ +\xd7\xb4\xd4\x22\x66\xc6\xad\x94\xfd\xd2\x11\xd3\xef\x3e\x14\x59\ +\x5f\x81\x95\xe2\x34\xb7\xd6\x65\xd3\x0e\xb7\x51\xeb\x55\xb4\x4b\ +\x6d\xbf\x72\x75\x5e\xfb\x4a\x37\x45\x36\xd2\xeb\xe9\xd6\x0d\xf6\ +\x1a\x2f\x64\x83\x9c\x2a\xed\x4f\x6c\x6d\xd1\xb4\x45\x8c\x05\x4a\ +\xcc\x54\x88\x91\xee\x24\x47\x8a\xc6\xac\x0e\x69\x41\x51\xc9\x2b\ +\xd4\x58\xda\xee\x98\x6e\xa9\x6d\xab\x91\xf6\xc5\x3f\xb6\x03\xa4\ +\x95\x35\xda\xeb\xd0\xb8\x45\xe2\x4d\x2b\x3c\x28\xd6\x1e\x5b\xf3\ +\x74\x7d\x8e\xb5\x8a\x1a\x9d\x4f\xbf\x67\x59\x6c\x60\xda\x36\x4d\ +\x19\x95\x1b\xb5\xa6\xb1\x1a\xe6\x0f\x22\x7c\x25\xc0\xf6\x1f\x45\ +\xf0\x33\xbe\x1a\xeb\xc7\xcf\x40\x96\xcf\xbc\x1f\xcf\x2b\x93\xc9\ +\xe7\x83\xfa\x37\x7f\x0e\x5c\xa5\x3e\x9c\x53\xe0\x7e\xe9\x2d\x7e\ +\xf1\xa2\x7e\x3a\xbb\x7d\x8e\xbb\xdd\xbe\xfc\xce\xb3\xed\xeb\x7f\ +\x71\xb9\xfd\xe8\x37\xff\xb8\xfd\xe0\x07\xff\x97\xaf\x5d\x8f\x6a\ +\x0c\x4e\xfe\x6e\xf5\xa0\x83\x0e\x3a\xe8\xa0\x3f\x36\x31\xfa\x1f\ +\x74\xd0\x41\x07\xfd\x69\xd3\xe7\x39\x53\x5c\x73\xd7\xfc\xf5\xad\ +\x88\x87\x2c\xd4\x3d\xe9\x1b\x73\x60\x4f\xa3\x5f\xde\x6c\x77\x1f\ +\xbd\xbb\x5d\x7f\xf7\xdb\xdb\xd3\x77\xae\xb6\xe7\x57\x17\xbe\x09\ +\xe5\x86\x8a\x9b\x0e\x7f\x3b\xcd\xbf\x9b\xce\x37\xd4\x78\xa8\xc1\ +\x03\x49\x1e\x90\x48\xd7\xc4\xfa\xd6\x7f\xe1\x0f\xae\x09\x78\xb1\ +\x8a\x24\xf0\x24\x9b\x89\xbc\x54\xf7\x43\xec\x6f\x1e\xa0\x6b\x92\ +\x8d\xce\x04\xbf\x1e\x02\xf9\x89\xa6\x19\x1b\x5f\xa4\x0a\x12\x28\ +\x1b\x3d\xf6\x6d\x83\xed\x70\x13\x6d\x23\xaa\x7d\xb1\x1f\x32\xf4\ +\x8b\xb3\x7a\x09\xe8\x3e\xf2\x42\x0c\x9d\x1b\xf6\x3c\x4d\xa9\xf5\ +\x21\x0e\xac\x98\x3f\x15\x77\xdd\xf2\xb3\x61\x60\xd5\xe9\x87\xb0\ +\x52\x1c\x8b\xf4\x0b\x38\x6f\x23\xf4\x70\xda\x28\x3f\x1f\xb0\xf2\ +\x23\x5c\x28\x0d\xd2\x6d\x0e\x1f\xc1\x71\x23\x63\xe8\xc3\x13\xb9\ +\x34\x6b\xd8\x72\x18\x6d\xa3\x06\x43\x4a\x24\x46\x9a\x7a\xe7\x3e\ +\xf4\x43\x87\x82\xcd\xa3\xee\x09\xd6\x71\x3b\xb6\x73\xc6\xdd\x23\ +\xdc\x27\x7c\x0e\x3b\xf7\xc0\x69\xf2\xea\xbb\xcf\x2a\x4a\x9f\xb9\ +\x47\x7f\x56\x66\xfb\x2e\xcc\x6e\x5b\x25\x31\x95\xce\x58\xed\x56\ +\x15\xb0\x0a\xfa\xb8\xeb\x67\xd8\xbe\x8a\x59\xfb\xd1\x6c\x1b\x2a\ +\x5d\x11\x92\xfd\xf0\x4d\xb6\xf3\x06\xe7\xe3\xd0\x8a\x35\x80\x2c\ +\xdc\x64\x9f\xf6\x7f\xe3\xd2\xb1\xd7\x9b\xd5\xe6\x41\x2b\x60\x5d\ +\x45\x63\x3b\x7d\xe5\xb5\x0d\x15\x43\x3f\x61\xe8\x54\x16\xad\x61\ +\xee\xde\x60\x15\x63\x6c\x90\x58\xe8\xc4\x0c\x55\xe8\xaa\xee\x98\ +\xe2\x6d\x69\x09\xb6\xa6\x22\xdb\x9e\x92\xed\x28\x8c\x3e\x76\x98\ +\xb7\x6d\x62\x02\xc9\x89\x62\x6c\xf2\x00\xca\x6a\x61\x18\x1d\x59\ +\x86\x17\x8e\xb9\x80\xb4\x6a\x19\x6e\x05\x35\xb8\xa1\x0e\xb0\x5d\ +\xb2\x30\xea\x7b\xc1\x6c\x72\x5c\x29\xcd\xad\x5a\xb7\x62\x69\xb5\ +\xec\xec\xa2\xce\x57\x71\x8b\x1f\xca\x71\xde\x31\x03\x6c\xa5\x64\ +\xc5\x91\xb0\xc8\x6a\x1d\x08\x1e\xbf\xad\x32\xbe\x23\x18\xeb\xc5\ +\x8c\xfb\xfe\xe3\x09\x64\xc6\x7f\xff\x91\x05\x58\x02\x93\xa7\xf4\ +\x95\x11\x52\x28\x44\xea\x47\xf5\xb3\xa5\xbf\x89\xa6\xf3\xcd\xd7\ +\x2b\xf1\xad\xc6\xff\x1b\x5d\xfb\xfc\x4f\xf6\xeb\xdc\xa6\xad\xc7\ +\x4f\x1e\x8b\x9f\x6c\xb7\x2f\x7e\xb3\xfd\xf4\xbf\xfc\x67\xd5\xbf\ +\xae\x9c\xe4\xae\xf5\x2b\xd1\xad\x1d\xf4\x2f\x80\xde\x66\x67\xf6\ +\xe1\xdd\x12\x1a\x87\x5c\x66\x27\x21\xe6\x4a\xcc\x63\x6e\xb6\x6f\ +\x7f\xe7\x6f\xb6\xa7\x5f\xfb\x60\x7b\xfe\x4e\xe6\x05\x8f\x78\x79\ +\x76\xc1\xb5\xf7\x76\xbb\x7e\x79\x9d\x17\xba\x75\x0d\x18\x92\x71\ +\x47\x0b\x9f\x10\x79\x33\x16\x19\xb6\x59\xce\xb8\xf4\x61\x9e\xc4\ +\xdc\xa8\xcf\x25\xce\x19\xe4\x55\xf8\x11\xdf\x52\x8b\x64\xce\xd5\ +\x2f\xd2\x54\x88\xeb\x21\xac\x99\x84\xc2\x2d\x9b\x17\xcb\xcd\xd2\ +\x89\xb4\xdf\xfd\x1c\xe7\x1a\x8b\x56\xc4\x2f\xb1\x3d\xd0\x61\x83\ +\x66\xfd\xcf\x33\xdf\x37\xe3\x32\x5b\x76\xd5\x69\xdb\xd7\xca\x6a\ +\xc3\xb1\xd2\xfd\xff\xc7\xc8\x0e\x2e\xe9\x97\x69\x8b\xdd\xd7\xc5\ +\xd4\x51\xac\x82\x93\xaf\x62\x9a\x35\x9f\xf2\xcf\x0b\x2e\x58\x62\ +\x53\xdf\xf3\x25\x81\x79\xa1\x17\xdd\x71\x8a\xd1\xd4\xce\xfd\xe8\ +\x6f\x6e\x18\x57\xdb\x28\xd8\x06\x62\xa6\xcf\x85\xc7\x55\x3a\x7e\ +\x47\x2d\x54\xc0\xf0\xee\x85\xa9\xeb\x4f\x30\xfd\x5b\xe7\x75\x9f\ +\x19\x2b\xe1\xe8\xaf\xf9\x4c\xcc\xca\xee\x60\xdb\x8a\xd7\xb6\xda\ +\xd5\xc5\x36\x56\xfb\x67\xd8\x2b\xab\x20\xcd\x62\x67\xfb\x69\x9f\ +\x28\xd6\xeb\xd8\xd2\x78\xc5\x8d\xbc\x3a\x5a\xb1\x59\xa8\x43\x8c\ +\x16\xb9\x1d\x28\x97\xa9\x4f\x23\xc2\x01\x9d\x23\x90\x09\xdb\x80\ +\xb8\x42\xc4\xbd\xc4\x0e\xc9\x96\x31\xfd\xfb\x63\x2a\x78\x51\x83\ +\xa8\x55\x0c\xa8\xf5\x13\x1c\xbb\xd9\xb8\x04\x7d\x87\xdd\x96\x57\ +\xf7\xb4\x4f\x7b\x7d\x4f\x54\x54\xbd\xb2\xf6\x4a\x70\x43\x2a\xe2\ +\xaa\xec\xea\x4c\xec\xc6\xa1\x0a\x2a\xc0\x91\x5e\x99\x86\xd9\x72\ +\x92\xbb\x98\x49\x81\x2b\x6f\x15\xc1\xca\xac\x12\xea\x6d\x61\x1a\ +\x3a\xed\x2d\xf6\x2c\x86\x1a\x4b\x34\xf4\xb9\x7f\x8c\x19\x9f\x7d\ +\x08\x5c\x79\x8b\x6c\x67\x55\xac\xf3\xf1\x36\xf4\x41\xd4\x81\xfb\ +\x6d\x9a\xbc\xb0\x6b\x88\x2b\xc1\xeb\xa8\x1b\x19\x84\xbd\x70\xcf\ +\x79\x6c\x83\x60\xeb\x7e\xba\xc6\x6f\xc6\x75\xc6\xf7\x57\xbe\xb7\ +\x66\x9c\x07\x67\xdc\xc7\x07\x0b\x1f\x9d\x24\x07\x75\x61\x28\xfd\ +\x8c\xd6\xac\x92\x8f\x56\xc6\xdf\xa0\x16\x73\x0e\xbe\xd4\xdc\xc9\ +\xdf\xf2\x97\x01\x96\xe8\xeb\xed\xcb\x5f\xba\xd8\xbe\xf6\xf5\x17\ +\xdb\x37\xbf\xfb\xd7\x4a\xff\x42\xcc\x9f\x81\x74\x5f\x2b\xdf\x41\ +\x07\x1d\x74\xd0\x41\x7f\x74\x62\x76\x7f\xd0\x41\x07\x1d\xf4\xa7\ +\x4d\x3d\x4f\xcc\xdc\x71\xd2\xa9\xfd\x87\x12\xf9\x32\x33\x7d\x03\ +\x9d\x76\x28\x92\xf9\xb8\x89\x97\x4a\xdb\xe3\xed\xe3\xbf\xff\x2f\ +\x9a\x80\xbf\xbf\x3d\xe5\x7f\x6c\xf0\x07\x6c\xce\xad\x69\xef\xed\ +\xed\xfc\xdf\x69\xf5\x32\xea\x4e\xd2\x37\xed\xb7\xd1\x8d\x13\xe7\ +\x07\x96\xdc\xcd\xfa\x11\x84\x63\xd3\x3c\x3a\x52\x54\x37\x01\x79\ +\xd0\xd3\x5c\x36\x93\xfe\x7e\x08\xc4\x84\x9f\x4e\x18\x7b\xb4\xf1\ +\x3f\xd7\x82\x83\xc1\xca\xea\x9b\x18\x3a\x5a\x54\x6d\xa5\xbd\x6e\ +\xbf\x74\xbf\x10\x9b\x7d\xed\x07\x04\xe9\x3f\x0f\x22\x5a\x8a\x25\ +\x8d\x2b\x4e\x86\x24\xb8\x72\x61\xf3\x04\x05\xae\xbc\xe8\xfd\xf0\ +\xc8\xb1\xca\xeb\xdb\x29\xe7\x4a\x9c\x39\x77\xfd\xf6\x0f\xac\xd8\ +\xfd\x33\x07\x6a\x8c\x3a\xdd\xcf\x60\x12\x79\x1a\x40\x31\xe2\xc0\ +\x81\xec\x4f\x91\xad\xc0\x8d\x1e\x26\x75\x90\x2c\x76\xa4\x3b\x79\ +\x1a\x55\xbe\xe2\x53\x7b\xc5\x87\xdd\xfd\x62\x57\x0b\x18\xf8\x27\ +\x62\xea\x55\x5d\xd2\xef\x7c\x6f\xcf\xac\x47\xf4\xce\xf7\xe9\x59\ +\xc5\x9a\x30\xf8\x58\xcf\xb9\x6d\x76\xdb\x42\x66\xdb\x3b\x1f\xea\ +\x8a\x9d\x3a\xdc\x8e\x74\x08\x75\xf0\x0a\x0e\x6d\xef\xf7\xe7\x64\ +\x11\xde\xfb\xbb\x02\x06\x2f\x6a\xd8\x4f\x61\xa4\x9c\x65\x7c\xa7\ +\xdc\xb8\xe4\x9b\x68\x97\x0b\x40\xf5\x60\xf7\x6f\x65\x43\xf1\x52\ +\x7c\x5a\xaa\x3e\x75\xbe\xb1\x92\xd0\xd9\xbc\x55\xa1\x69\x57\x9f\ +\x13\xa2\xb6\xe1\x49\x98\xa9\xf2\x59\x74\xa7\x11\xcd\xd0\x89\xae\ +\x35\x2d\x19\xdb\xa2\x8d\x92\x9d\x6a\x60\x88\x71\x7c\x34\x56\x71\ +\x14\xc6\x43\x36\x1b\x8b\x11\x0e\x30\x84\x19\x31\x7c\x45\xb5\x8f\ +\x26\xd2\xed\x84\x23\x5a\x89\x35\x36\x0d\x66\x8a\xa1\x46\xa2\x04\ +\x2f\xb7\xa9\xd5\xd4\xa7\x64\xdc\x97\x84\x35\xc6\x23\xfd\xff\xd3\ +\x24\x7d\x2d\xe0\x1a\xa0\xeb\x41\x1e\x08\x09\xab\x17\x6c\x7d\x37\ +\x20\xc4\x8b\x73\x2d\xed\x80\xf8\x81\x14\xc7\xac\xfa\x91\xed\x83\ +\xd4\xb8\xae\x31\x9c\xff\x55\x75\x5b\xe3\xbd\xed\xeb\x6b\x0d\xed\ +\x19\xaf\xe1\x4b\xb5\xf3\xfc\xd9\x93\xed\x4a\x17\xc2\xf7\x7f\xf0\ +\xcf\xdb\xc7\xef\xfe\x60\xdb\x6e\x72\x6c\x4c\xa2\xc1\xd9\xe8\xea\ +\x39\xe8\xcf\x88\x96\xe3\xe6\x2c\xb5\xbf\x77\x77\xef\xe8\x96\x8b\ +\xdf\x50\x8d\x99\x3c\xbc\xe4\x78\xfb\xe5\x2f\xbe\xbd\xfd\xe2\xfd\ +\xbf\xdd\xbe\xfa\x97\x1f\x6c\x8f\x2f\x5f\xf9\x6f\x85\x74\x10\x2b\ +\xfc\x6e\xbb\xd6\xbc\xea\xc5\x8b\x1c\x73\x3a\xfa\x86\xcc\xff\x8b\ +\xea\xc4\x22\x1f\xc7\x8c\x4b\xc8\xc2\x90\x7e\xe8\x5a\xe7\x00\xe7\ +\x8f\xe7\x51\xf5\x02\x1a\xf6\xb7\x12\xf2\xe2\xcc\x3f\xef\x58\x3f\ +\xf7\xb8\xfb\xff\x69\x3b\x26\x5f\xe6\x5e\xce\xe9\x32\xda\xa0\xea\ +\x42\xba\xa1\x3e\x0f\x0b\xcd\x6b\xe1\x7e\x36\x1e\x7b\xc5\x79\x71\ +\xc6\xb9\x16\xf6\x3c\xd2\x8b\xa2\x0b\x73\x9c\xf1\x92\xae\x87\xce\ +\x74\xab\xfe\x1f\xa2\x74\xb7\x80\xbf\x7c\x00\xc6\xb5\xbd\xb8\x16\ +\xde\x32\x4f\xe3\xfa\xed\xf8\x60\xfd\xf2\x6c\xfe\x41\x4b\x2e\xc5\ +\x49\xc6\x27\x8b\x09\xdb\x09\xd3\x87\xec\x03\x89\xfa\x1b\x2b\xd7\ +\x17\xd3\xf7\xc4\x80\x55\x5b\x02\xed\x23\x4e\x8e\xfc\x6f\x34\x64\ +\xea\xf1\x12\x35\x3e\xb1\xfa\xd9\x31\xf8\xbc\x4d\xa4\xa4\xcf\xc9\ +\x93\x5c\x28\xfa\x38\x77\xc7\x96\xed\x5c\x7d\x8c\x04\x38\xdd\x9e\ +\x66\x16\x42\x3e\x29\x67\x15\xa7\x7c\x13\xd3\x9f\x61\x73\xbc\x97\ +\x6c\xd6\x51\x15\x6c\xe9\x17\x8b\x6d\xea\x23\x89\xed\x1c\x85\x8b\ +\x35\x35\x8f\xee\xe9\xb8\x70\xb5\xe5\xbf\x8f\x03\x63\xd5\x2b\x4e\ +\x9f\x45\x0f\x80\x5e\xea\x90\xb0\xaa\x49\x3a\x2a\xd4\x0e\x31\xc7\ +\x3f\x6a\x5d\x4e\x5c\x74\x9e\x66\xb7\xa1\xfe\x4e\x90\xf5\x8b\x9e\ +\xb5\x9d\xae\x6e\xc7\x3c\xb0\x49\xab\xbe\xa3\x8a\xa5\x1f\x26\xc9\ +\x82\xcc\x49\x56\xb4\xf8\x1c\xbf\xd8\xf0\xa4\x38\xba\x6a\xfb\xd2\ +\xc3\xe5\xcc\x9f\x8e\xf8\xf2\x69\x68\x67\xa4\xae\xa4\xaa\x77\xac\ +\x85\x80\xec\xf5\x40\x5d\x94\xdb\x85\xb7\xe3\xdc\x62\x32\x90\x1c\ +\x07\x24\xeb\xcc\x93\xce\xda\x9d\x47\x75\xda\x8f\xe4\x18\x42\x73\ +\xee\xf2\xc5\x2f\x6c\xf8\x2c\x86\x8c\x22\x41\xdb\x43\x8f\x84\x12\ +\x92\x7c\xd1\x4e\xfa\xe8\x8d\x5f\x07\x25\x61\x60\x2a\x1c\x59\x3b\ +\x92\x32\xda\x9e\xc8\x08\x0f\x2d\x46\x51\xc6\x65\xfe\x77\x78\xc6\ +\x6d\xa8\x74\x8d\xdf\xfe\x56\xb1\xc7\x74\x8d\xf9\xba\x16\xf9\xa7\ +\x1f\xe1\x57\xf3\xa7\x1f\x75\x31\x20\x81\x1b\x9f\xed\x27\x2f\x5d\ +\xd3\xe9\xe5\x6e\xe3\x8b\x3f\xdb\x80\x6d\x91\x71\x4e\x31\x1a\xbb\ +\xf8\xa6\xbf\xb7\x9f\x31\xf2\xdd\x6e\x17\x57\x8f\xb6\x7f\xfb\x6f\ +\xef\xb6\x8f\x5e\xfd\x60\xfb\x87\x6f\xfd\x8d\xb1\x9c\x64\x6c\xa1\ +\x9c\x6d\x30\x6d\x1d\x74\xd0\x41\x07\x1d\xf4\xc7\xa3\xe3\x85\xda\ +\x41\x07\x1d\xf4\xa7\x4b\x99\x1f\x4e\x42\x3f\x9d\x2d\x7e\x92\xd9\ +\xe3\xb9\xd8\x35\x7f\xd3\x83\x39\x3b\x98\x80\xd2\x2d\x6a\x12\xab\ +\xc9\x2f\x93\x6f\x6e\xec\x5f\xfc\xee\xfb\xdb\x8b\x1f\x7e\x6b\x7b\ +\xf2\xce\xb3\xed\xb9\x26\xc2\xdc\x99\xfa\xe7\x1e\x74\x77\x9a\x6f\ +\xa5\xc1\x79\xc1\x94\x97\x6a\xba\x49\x6f\xdd\x52\x53\x64\x1e\x48\ +\xfa\x26\x58\x8d\x70\x67\xab\x76\x3c\xb9\xf6\xc7\x2d\x4a\xc9\x84\ +\x3f\x93\xfe\x30\xfa\xab\xf1\x10\xb5\xb8\x1e\x0c\xb5\x54\x41\xe5\ +\xaa\xe3\x27\x52\xb5\x16\x70\x56\x4b\xad\x79\x61\xbd\xc2\xdc\xc4\ +\x30\x89\xe7\x81\x42\xf5\x95\x3b\x71\xec\xd2\x79\x69\x46\x4c\xd6\ +\x81\x78\x62\x13\xef\x97\x67\xd6\xb3\x4e\xc9\x41\x5e\x49\x6c\x1e\ +\xd6\xd4\xcb\x34\xb7\x03\xe6\x7c\xe4\x07\x93\xbf\xb7\x47\x71\x6f\ +\x1f\x63\xee\x17\xb8\x24\xb9\x2a\x06\x5e\x54\x31\x45\xe9\xa4\xad\ +\x15\x4e\x1e\xf4\x38\x23\x4a\x3a\xa0\x7d\x54\x88\x9a\x7a\xa5\xc7\ +\x9c\x6c\x7c\xb6\xbd\x77\xac\xb6\x78\xa1\x59\x4f\xcc\xfa\x99\x85\ +\x79\x5d\xdb\x7f\x9f\x73\x63\x25\xc1\x22\x00\x6e\x67\xeb\x23\x6f\ +\xd9\xa3\x7d\x9b\x8b\x0d\xb5\x5e\x8c\xbb\xe5\x39\xde\xc5\x67\xd7\ +\x87\xcb\xbf\x8b\x81\x16\xfb\xb4\xbe\x56\x75\xe0\xa7\xbe\xb0\x0a\ +\x64\xab\x85\x8d\xf5\x1b\x4e\x0a\x8e\x69\x70\x6d\x1f\x73\x70\xa4\ +\x39\x5e\x02\x43\x01\x8a\x50\xaa\x5e\x59\xd0\x3c\x53\x9a\xa6\x7f\ +\xe4\x5d\x78\x3a\xcf\xf0\x9b\xe8\x5e\x7c\xb7\x7c\xbf\x17\x2b\x8d\ +\xb6\x8b\x46\x3f\xde\x44\x27\x31\xa3\x1a\x05\xcd\x49\x9e\x84\x88\ +\x1a\x59\xfa\xe3\x87\x1b\x6c\x97\x92\x8c\x5d\x4d\x82\xea\xd9\x47\ +\xfc\xf9\x9c\xed\xef\xa8\xe7\x18\x17\x43\x1a\xb6\x4c\x2b\xe8\x23\ +\x87\x0d\x7f\x26\x15\x46\x11\x41\x99\x88\x35\x67\x39\xa3\x76\xd2\ +\xce\x17\x58\xb4\x18\x08\xe9\x1d\x3b\x8e\x06\xdb\x8e\x28\x9a\x18\ +\xf0\x3c\x56\xa7\x8c\x58\x30\xd4\x41\x31\xca\x9d\xad\x4d\x31\x58\ +\xe3\x7b\x2d\x00\xfd\x07\x13\xe7\x59\xe3\xbe\xa4\x5f\xb0\xf1\xa2\ +\x80\x17\x08\x4e\x2a\x9f\x53\xb1\x16\xd2\xf4\xf1\x7a\x41\xb8\xa5\ +\xb3\xef\xc0\xbc\x9e\x9c\xe4\x35\x6e\x33\xa6\xdf\x6a\x1c\xce\x1f\ +\x82\x70\x1d\xa0\x9e\xe2\x1e\xdd\x6d\x4f\x9e\x3f\xdd\x9e\x3e\x7d\ +\xaa\xd8\x0f\xb7\x9f\xff\xed\x7f\x51\xbb\xd4\x95\x9b\x3e\x34\x61\ +\x17\x2d\xea\x41\x7f\x6e\xf4\xba\x9d\xd7\xbb\xdb\x07\x99\xf8\x5c\ +\x6c\x1f\x6f\x45\x3c\x30\x64\x0a\xb0\xbd\x7a\xb1\x7d\xf3\x1f\xfe\ +\xdf\xdb\x97\xbe\xfe\xcb\xed\xd9\x13\x8e\x39\xc5\xf9\xb8\xcb\xb7\ +\x24\xaf\x3f\xbe\xdd\x6e\x74\xcc\xf9\xf2\xaf\x8b\xc8\x78\x19\xe3\ +\x38\x7d\x2c\xb0\x19\x8f\x64\x40\xd5\x1f\x8e\x77\x1f\xfb\x2d\x7b\ +\x19\x78\xfe\x87\x4e\xbe\x8d\x96\xff\x97\x96\x97\x66\x9c\x47\x91\ +\xd8\xd6\x79\x89\x66\x06\xa7\x81\xce\x96\xb9\x56\x48\xd2\x5d\xa0\ +\xa8\xce\x99\xa2\xe7\x85\x53\xe3\xcc\x91\xb4\x9e\xf6\x69\x5b\x70\ +\xce\x31\x6f\x62\xa9\x98\x5e\x4f\xcf\xab\x0c\x49\xf7\x9c\x41\xac\ +\x25\xdf\x06\xab\x17\x6d\xae\xc7\x69\xdb\x7e\xb0\x5c\x77\xed\xc7\ +\xd7\x71\x78\xf8\xe0\x50\x9f\x53\x1f\x3b\x2f\xd0\xf8\x9e\x04\xf1\ +\x69\x7b\xfa\xc6\x28\xc8\xf8\x4d\x77\xc5\xde\x1f\xd6\xcf\xd4\xb1\ +\x2d\x05\x5a\x65\x31\x6d\xf5\x3e\xb5\x0e\x5c\x95\x22\x13\x67\xb5\ +\xda\xcb\xdc\x49\x9c\xe9\xa4\x1f\x56\xf3\xb2\x6d\x6c\x17\x62\xc1\ +\xa4\xf0\x02\xc9\xd8\x68\x43\x3a\x4b\xe7\xdc\x31\xf8\x64\x1a\xcb\ +\xbc\xf5\x61\xce\xf8\x08\xef\xeb\x9a\xef\x2d\xaa\xe2\xf5\x5b\x78\ +\xa2\x55\x4f\xb9\xb4\x61\x67\x5e\xb5\xe3\x0d\x83\xaf\xea\x8c\xf5\ +\x24\x16\x4c\x35\xe8\x0e\x98\x65\x58\x65\x74\xc7\x34\xd6\x7a\x80\ +\xe4\x49\x9c\xe7\x9a\xc0\x5d\x6f\x70\x62\x94\x3a\xc4\xbe\x2f\x4c\ +\xca\x5c\x12\xbc\x20\xf3\xac\x40\x87\xda\x4e\x3d\xc2\x73\xdd\xb1\ +\x6d\xa0\x38\xc5\x24\x2a\xc2\xc3\xbf\xa7\x33\xd0\xd9\xd0\xd9\x3e\ +\xbe\xb2\x1c\x94\x48\xf7\x4a\x9f\x39\x8f\xd9\xb9\x4d\xb1\xd3\x5f\ +\x9f\x0d\x5e\xe7\x0e\x59\xd6\xa3\x3b\x1c\xc7\x94\xad\x10\x88\x5a\ +\xdb\x1d\xa3\x43\x0c\xbb\xb0\xe9\x98\x9c\x70\x18\xc9\x9b\xed\x6d\ +\xd5\x94\x1c\x98\x1a\x93\xda\x87\x5d\xaa\x65\x61\xd0\x58\x7f\xbc\ +\x0e\x88\x30\xe9\x5c\xee\xe0\x72\x2d\x4e\x29\xf2\x19\x77\x4c\xaf\ +\x7f\x07\xb4\x0c\x36\xd0\x91\x2f\x63\xc8\x69\xdc\xd0\x2a\x27\xdf\ +\xd6\x32\x6e\x57\xcb\x49\xb3\xff\xc8\xd6\x45\x6c\x2b\x8f\xcf\x4d\ +\x19\xa5\x2d\x3d\xe6\xe3\x0e\xe6\xb1\xbd\xfe\x38\x62\xbc\x5c\x43\ +\xfa\x8f\x93\x4a\x57\x09\x8f\xe6\xc7\x79\x92\x71\x33\x5e\x31\x01\ +\xd5\x4d\x6c\x34\x96\xfe\xa3\x80\xfc\x91\x03\xe7\xb4\x51\x47\x6c\ +\xaf\x6e\xb6\xc7\xcf\x6e\xb7\xaf\x7e\xfd\xfd\xed\x9b\xdf\xfa\x0f\ +\x8a\xfd\xbd\x7d\xfc\x8b\x86\x5e\xbf\x94\x07\x1d\x74\xd0\x41\x07\ +\xfd\x31\xe9\x78\xa1\x76\xd0\x41\x07\xfd\xe9\xd2\xb9\xd9\xe1\x98\ +\xa9\x8a\x6a\x52\x3a\xe8\x73\x9f\x4d\xd2\x40\x35\xaa\x8f\x6f\x44\ +\xd6\x36\x65\xf2\xb8\x82\xbf\xce\x7f\xef\xbf\xfd\xef\x02\x3e\xdc\ +\x9e\x5e\xf1\x4f\xea\xf1\xe1\xe4\x21\x23\x3f\xf5\x28\xe6\x77\xd2\ +\xfd\xbf\xd3\x72\x57\x9b\x1b\x5f\x1e\x94\xf0\xad\x34\x6c\x1e\x8a\ +\x80\x15\xbb\x5d\x35\xe7\x27\x99\x49\x27\xc3\xec\x09\x3f\x2f\xca\ +\xfa\xa5\x19\x0f\x76\x68\xb4\xf4\x96\xf1\x6b\xe2\x7f\x19\x29\xc0\ +\x2c\xcb\x31\x2a\xdc\x86\x5b\xa2\x30\x77\x1f\x6a\x72\xcf\xc3\x52\ +\x9e\x4e\xf8\xcf\x57\x59\x9f\xa5\x9f\xf2\xf9\x45\x1a\xfd\xf7\x43\ +\x9d\xaa\xc7\x8b\xc1\xe6\xb2\x5d\x57\x72\xbc\x64\x24\xa7\x30\x81\ +\x62\x62\xd4\x38\x71\xf8\xd1\xd9\x3e\xf5\xb0\xc0\xba\xdb\x2b\xbb\ +\x74\x54\xeb\x2d\x3b\x0e\x60\x48\xf9\xec\xc6\x8f\x62\x83\x8f\xed\ +\xc4\x1b\xaa\xa2\x68\x3c\x18\x90\xb0\x9d\xa0\x11\x82\x1c\x58\x31\ +\x8b\xa1\xb6\x5b\xe7\x26\xab\x7c\x5e\x46\xd5\xf3\xec\xf4\x15\xaf\ +\x62\xe5\x02\xcd\x3c\x00\xf2\x5d\x9b\x04\xbc\xba\xb1\xd9\x5c\xed\ +\x9b\xfe\xe4\x71\xdd\x81\x9d\xe7\xf6\xaf\x71\x9d\xeb\x5e\x5d\x41\ +\x26\x94\xe2\x9d\x1f\x06\x5e\xf4\x11\xe7\x75\xc8\xfa\x36\x25\x4e\ +\x18\x8b\x64\xaf\x4b\xf0\xf6\x2d\xd4\x38\x6a\xe9\xad\x0c\xdb\x84\ +\x81\x60\xff\xc6\xdc\x91\xb1\x8e\x09\xd0\xf5\x9d\xe3\x1c\x9f\xa1\ +\xb7\x08\xf9\x84\x94\x73\x35\xb4\xea\xf7\xa9\xbb\x4f\x9c\xdb\xf7\ +\xf1\xf7\x86\x3a\xcd\xd4\x2d\xa3\xb1\xf3\xd4\xf9\xd8\x0f\xc9\xef\ +\x7a\xae\x08\x96\xda\x69\x77\x3e\xde\x30\x11\x5b\xaa\xe3\x29\x0b\ +\x98\x39\xf8\x44\x0e\x86\x56\xfb\x14\x6b\x61\x5b\xc5\x82\x71\xbc\ +\xb4\xbd\xfa\x7d\x1c\xc1\x2c\x8d\x27\x40\x0c\x39\xa8\x64\x90\x40\ +\x6d\x40\x06\x1c\x96\x3c\xf8\x82\x59\x38\xa4\x6c\xa8\xc6\x1d\xec\ +\xb1\xe0\x2a\x37\x8a\xdd\x03\x98\x32\x1a\x65\x63\xa5\x69\x03\x8f\ +\x21\xdd\xe3\x7f\x38\x7a\x5d\x13\xb8\x1e\x68\xe9\xff\xbf\xe9\x5b\ +\x02\x62\x5c\x85\x7d\x02\x1e\xdb\x79\xc8\x4c\xf2\xf1\x34\x08\xa6\ +\xf3\x8c\xeb\x5c\x0b\x74\x5e\x7a\x4c\xbf\xd9\x36\x5d\xe3\x6e\xea\ +\x1b\xd8\x9c\xac\xb4\x71\x29\x7e\xfa\xce\x3b\xdb\xb3\xab\x8b\xed\ +\xc5\x8f\xbf\xb3\x7d\xf4\x83\x7f\xac\x6b\x01\xc9\xc9\xb9\xa7\x6a\ +\xf9\xa0\x3f\x37\x62\xc7\x7d\x92\x9d\xd7\xbb\xbf\x59\x45\x8e\xbb\ +\x1c\x13\x1c\xe5\x3c\xac\x7c\xf9\xf2\xc5\xf6\x9d\x1f\x7c\x63\xfb\ +\xf0\xee\x9f\xb7\xbf\xf8\x8b\x5b\x1f\xbf\x0c\x27\xf8\xf9\x76\xe4\ +\xcd\xf5\xdd\xf6\x52\xf3\x8f\x3c\x94\xe4\x1a\xa1\x79\x85\xe7\x28\ +\x3a\x3e\x39\xc6\xba\x4f\x35\x36\x35\xdb\x41\x7b\x25\x2c\x0d\xf3\ +\xf0\x34\x60\x3f\x4c\xe5\x25\x1a\x3f\xf1\x78\xc1\x43\xd4\xe5\x41\ +\xaa\xe7\x57\x7e\xc8\x8a\x6c\xee\xf3\x67\xe5\x95\x7a\xfd\x28\x28\ +\x59\x93\xee\x54\xdb\xea\xbb\x5f\xa6\xb5\x0f\x5b\x0b\xb6\x99\x73\ +\x0f\x26\x32\xcb\xf0\xb3\xde\xab\x5d\xcd\x74\x3d\x7b\x90\xc2\xf6\ +\x2f\x90\xe0\x8e\xcd\xbc\x81\xed\xc9\x34\x0c\x9b\x44\xc8\xd8\x6c\ +\xcb\x6c\x4f\xc8\x75\x18\x12\xa4\x3b\x5f\xd9\xfd\x53\x8f\x79\xd1\ +\xb6\xf8\x16\x4e\x0c\xb8\x7a\xe6\x79\xa6\x74\xb5\x6b\x5f\x8d\x91\ +\xf4\x05\x3b\xdc\xf9\x2b\x6e\xe1\x5e\x1f\xea\xad\xdf\x56\x4b\x1d\ +\xad\x8b\x30\xbf\x5c\x13\x96\x6f\x64\xb5\x4f\xf9\x58\x0f\x56\x06\ +\x39\x94\xb0\xed\x53\xdd\x7d\x9b\xd8\x9b\x79\xf6\xe3\x61\xd6\x36\ +\x58\x99\x7d\xb9\xf8\x55\xf0\xb9\xcf\x2c\x52\x06\xd3\xad\xe1\x4f\ +\x0e\x47\x39\xb6\x70\xf7\x3f\xc7\x26\x58\xcb\xb4\xc3\x27\xfb\x6c\ +\xc6\xb2\x6d\x91\xd9\xa7\x44\xac\xed\x25\xb8\x18\x1f\x02\xda\xe1\ +\xa1\x45\x8d\x6b\x89\x89\x40\xd1\x79\x24\x47\xf5\x22\x8e\xf6\x95\ +\x6d\x08\x59\x1c\x20\x64\xac\x64\x94\x85\x4d\x64\x6a\x63\x71\xec\ +\x84\x4a\x2b\xeb\x76\xaa\x75\xb7\xbe\x50\xe0\x7b\xd4\xfd\x98\xbe\ +\xfb\xdb\x7c\x71\x5a\x9b\x16\xd4\x07\x1a\xb8\x16\xe9\x8e\x31\xb4\ +\x8f\xe4\x9a\xda\xdb\xab\x3d\xb1\xd2\xa6\xdb\x66\xdf\x09\x1c\x35\ +\x97\xc0\x6a\x26\x58\xe9\x56\x57\xbd\x1c\xea\x55\x87\xb8\x5d\x0c\ +\xdb\xc8\xd2\xbb\xaf\x3e\x6e\xec\x28\xdc\x71\xcb\x7a\x18\x37\x3a\ +\xe5\x4c\x12\xdd\x64\x20\xaa\x28\xd6\x92\xa7\x7d\x33\x24\xb4\xda\ +\x6c\x0a\x31\x22\x63\x7c\x19\x8d\xb5\x61\xa0\x75\x8d\xf1\xaf\x6a\ +\xdc\xb7\xac\xb1\xbe\xee\xa7\xd9\xea\xa3\x0e\x8c\xa0\xe0\x18\x46\ +\xad\x8d\xd5\xdd\xa8\xdb\x79\x17\x7d\xcd\xe2\xfa\x75\x73\x2d\x5d\ +\xd7\xb2\xfe\x49\x5c\xc6\x32\x5e\xc9\x5d\xaa\x9d\xaf\xfe\xe5\xcd\ +\x76\xf1\xfc\xa7\xdb\xdf\xfd\xf7\xbf\xde\x2e\x2e\x99\x63\x91\x80\ +\xf9\x5b\x53\x67\x3f\xe8\xa0\x83\x0e\x3a\xe8\x8f\x41\xeb\x08\x7c\ +\xd0\x41\x07\x1d\xf4\xe7\x4d\x7f\xc8\x3c\xd2\xb3\xdd\xb7\x21\x26\ +\xc7\x08\xdd\xae\x30\xc9\x96\xee\xaa\xcc\xe2\x99\x50\xbf\xbc\xde\ +\xae\x7f\xf1\xbd\xed\xfa\x47\xdf\xdb\x9e\x3c\x7f\xbc\x3d\xbf\xb8\ +\xf0\x0d\x3d\x31\xdc\xd0\xf2\x57\xd4\xbc\x4c\xe3\x1b\x6a\xfd\x32\ +\xea\x8e\x87\x07\xb7\x70\x5e\x32\xf9\xe6\x23\x77\xac\x92\xb9\x89\ +\xca\xaa\x81\x45\x40\xdc\x00\xf4\x03\x1f\x38\xba\xfa\x70\xb1\x3c\ +\x24\x95\xec\x9f\xfc\xe2\x2f\xea\xb0\xb9\x29\x70\x8f\x50\x8d\x47\ +\xef\x97\x75\x93\xea\x16\x85\x75\xa3\x0f\x96\xf4\xa7\x1e\xf0\xd0\ +\x47\x71\xbe\x89\x20\xf6\xc3\x53\xfa\x9f\x17\x85\x3c\x64\xe5\xa5\ +\xd8\x7c\x58\x21\x5d\xdb\xa2\x1f\x0e\x48\x51\xf5\xca\xe5\xf5\x2e\ +\x56\x8c\xf3\x56\x1d\xe2\xa4\x44\xd6\xf6\x68\xee\xed\xd4\x7a\x73\ +\xaf\x47\xda\xd1\x47\xd5\xb2\x2a\xe4\x84\xed\x6c\xd0\x98\x6d\x20\ +\xa3\x2c\x81\x1c\xc2\xd2\xba\xe3\xad\x96\x8d\x28\x0c\x70\xe5\x95\ +\xec\xb4\x32\xe4\x78\x18\x25\xee\xfa\xf7\x78\xdd\x04\x0f\x32\x3b\ +\x53\x12\x2e\xec\x34\xe7\xeb\xda\x68\x1f\x85\x97\xb1\xfd\xe1\x19\ +\xd7\x4c\xfc\x69\xbe\x73\xd8\xca\xed\xdf\xc5\x14\xd4\x58\x1e\xb4\ +\xc1\xd9\x2e\xe1\x56\x2a\x8e\xf8\xa8\xb5\x5f\x15\x5f\x36\xd4\xa1\ +\x03\xc4\xdf\xdb\x0f\x7c\x21\xbb\xb5\xe9\xc8\x30\xc2\x57\xc6\x67\ +\x7f\x71\x6d\xe7\x3f\x94\x76\x6d\x9c\x70\xe8\x9c\xe7\x75\xfc\x49\ +\x28\xf1\x6c\x8f\x07\xe9\x24\xed\x50\xa5\x58\x5f\x7c\x3b\xdd\x24\ +\x80\xb1\x84\xed\x66\x5f\x36\x60\xb6\xbf\x16\xf6\xad\x5f\xca\x88\ +\xd6\xed\x09\x54\x71\x4d\xf6\x0a\xc8\x31\x30\x7d\x7e\x3c\xd1\xe7\ +\x3e\x64\xb1\xd8\xd6\x23\x28\x82\x82\x15\xaf\x36\xfe\x92\x83\x2d\ +\x4a\x1f\xe7\x5e\xf0\xf4\xa9\x0a\x61\x33\x7b\x6c\x8b\xd6\x7d\x7c\ +\xea\xd3\xb2\x71\xc8\xb1\xe8\xab\xbd\x98\x2e\x0a\xa3\x40\xca\x76\ +\x95\x0e\x82\x8c\x47\xa1\x6f\x79\x74\xd3\x1a\xb2\x5e\x94\x89\xc7\ +\x4f\xd7\xf9\xda\xc0\x75\x81\xdb\x80\xc4\x19\xaf\xd8\x6c\x0f\x3c\ +\x7b\x32\x3a\x5e\x80\xd5\x9a\x2b\xb6\x7f\xce\x97\x71\xdc\x0f\xae\ +\xb7\xeb\xed\xf6\xe5\x4b\x0d\xff\x35\xd6\x0b\xb9\xd0\x75\xe9\xc9\ +\xe3\xcb\xed\xe9\xd3\xe7\xdb\xe3\x47\x1f\x6f\xbf\xfc\xbb\xff\xaa\ +\xc3\xa4\xff\x97\x1a\xfd\x28\x4a\xd3\x07\xfd\x4b\xa6\xde\xc7\x2d\ +\x73\xb8\x16\xeb\xf8\x2b\x07\xc7\x0e\x0f\x12\x91\x37\x3a\x56\xbe\ +\xf3\xe3\xbf\xde\xbe\xf2\x7f\x7f\xb9\x3d\x79\x4a\xcc\x9d\x42\x75\ +\x62\xa9\x0e\xc7\xde\xcb\x6b\x7e\x46\x9b\xff\x55\x5b\x73\x2a\x1f\ +\x87\x9a\x82\xdc\x3a\x03\x87\xa9\xf3\x76\xee\xd9\x1e\xb6\x9d\xb6\ +\x39\x0b\xf2\xb3\x5f\xd2\x2d\x79\x99\x96\x9f\x78\xec\xff\x95\x36\ +\x5f\xa4\xf5\x43\x55\xe6\x56\x60\x3d\xd7\xe2\x78\xee\x73\x2b\x32\ +\x54\xb2\x9a\x6c\xc5\xea\xd0\x59\xb3\xd2\xd4\x69\xf3\xa2\xb3\x6e\ +\xcc\xad\xfa\x5a\xc9\xba\x69\x6d\x55\x81\x28\x0b\xf9\xb2\xcd\xf2\ +\x52\xa9\x5e\x1a\x09\xd3\x19\xaa\xa5\xeb\x12\xb3\xb4\x33\xda\xec\ +\x97\x65\xd1\x19\x67\x73\xfd\xb4\x37\x7d\x73\x30\xdf\x50\xd3\xfa\ +\x54\x5b\x60\xe6\x54\x49\x1d\x71\x74\xc5\xa2\xcb\x97\x3e\x50\x5f\ +\x9f\x85\xdb\x1e\x53\xbc\xbc\x8b\x77\x5f\xbc\x1e\x60\x9d\x5b\x76\ +\xfa\x14\xdb\x8c\x6f\xf8\x2b\xa6\x17\x74\x73\xf9\x4e\x71\x2d\xd3\ +\x19\x06\x1f\x3a\x7e\x71\x8e\xcc\x2c\xe8\x89\x43\x20\x8b\xbd\x10\ +\xdd\x1c\xbc\x02\xf7\x5c\x9d\x5f\xe7\xae\x3b\x56\xcc\xe0\xc2\xf2\ +\xe0\x7d\xc1\xd6\x18\xd2\xaa\xcd\xa5\xf1\xb4\x83\xcf\xdb\xab\xb6\ +\xa3\x63\xc5\x15\x94\x10\x8a\xec\xcb\x02\xac\x87\x2b\x4f\xd5\x98\ +\xbe\x82\x0d\xc5\x68\xbf\x0a\x34\x95\xfc\x1f\x29\x6d\xad\xb8\xa5\ +\x2f\xf5\x4e\xd9\xe4\x08\xf9\x05\x18\x1b\x0e\x6b\xa7\x6c\x2a\xa5\ +\xcf\xb2\x98\x64\x09\x65\x3a\xd2\x68\x7b\x68\x43\x65\xe0\x60\xc3\ +\xa6\x28\xc7\x90\xf8\xd0\x69\xe5\xc4\xdf\x66\xa9\xa6\xa1\xac\xb4\ +\x82\x8b\x5e\xaa\xc5\x02\xfb\x96\x6c\xe1\x38\x39\xe7\xd0\x45\x96\ +\x59\xeb\x11\xa3\xc2\x48\xe9\x26\xeb\x98\xb5\x4d\x12\x88\x36\x7c\ +\xab\x69\x62\x9e\x86\x80\x3b\x0f\x14\xc0\xb2\x51\x4c\x1f\x93\x5e\ +\xb0\x5b\xc3\x28\xe1\x3a\x70\x41\x8e\x69\x9d\x02\x11\xa7\x6b\xb7\ +\x2c\x3c\xf2\x9c\x2e\xad\xda\x5b\x97\x5d\x34\xc9\xee\x11\x5b\x29\ +\xdb\x6e\x90\xc7\x33\x94\xc6\x3b\x86\xeb\x80\xa4\xe7\x4c\x19\xfb\ +\x7d\x3f\xed\xf1\xbe\xaf\x01\xc4\x2d\x63\x7d\x77\x61\x08\x6d\x4f\ +\xed\x50\xc3\x2a\xda\xdd\xbd\xa5\x16\x38\xe3\x3b\xff\x8b\xf6\x5a\ +\xd7\x33\xdf\x2b\x33\x20\x52\x57\xcc\xc2\x1c\xea\xeb\x7f\x79\xb9\ +\xfd\xf8\x97\xff\x79\xfb\xe0\xe5\x7b\xda\xee\x37\xae\x9b\x4c\xc9\ +\x79\xd0\x41\x07\x1d\x74\xd0\x1f\x8f\x96\x3b\xd8\x83\x0e\x3a\xe8\ +\xa0\x3f\x11\x5a\x67\x84\x35\x37\xdd\xd1\x17\x3a\x6b\xec\x86\x25\ +\xd7\x49\x3a\x93\xed\xdb\x6b\xdd\x00\x5d\x6e\xef\xfe\xd7\xbf\xde\ +\xee\x1e\x7f\xb4\xbd\x73\xf1\xd8\xcf\x55\x98\x6a\x7b\xc2\xcf\x8d\ +\x30\xff\x70\xf8\xee\x7a\x7b\xe5\x17\x6a\x9a\x2c\xf3\x22\xa9\x5e\ +\x46\xdd\xdd\xf0\x52\x8d\xbb\x5e\xd9\x8e\xaf\x07\x15\xbd\xc2\xdd\ +\x1c\xdb\x24\x4f\x7b\xf4\xb1\xe1\x09\x7d\x26\xfb\xc1\xdb\x37\xed\ +\xf8\xc2\xe8\x15\xab\xba\x7e\x78\x24\x6d\xac\x8e\x15\xb5\x8a\xa4\ +\xfd\xbe\xc9\xe6\xa1\xa9\x27\xf8\xdc\xd4\xf3\xb4\x23\xfd\xce\x83\ +\xd4\xe8\x4c\xee\xf3\x6d\x85\x5a\x37\x6e\x06\x2a\x56\x86\x1f\x06\ +\x70\x47\xef\xf5\x72\x4e\x49\x5e\x38\x12\x07\xe6\x17\x6b\x95\xd7\ +\x39\xba\x0f\xc4\xa2\x4a\x5f\xeb\xd3\xcf\xc5\xde\x31\xb8\x37\x67\ +\x6c\x15\x85\x67\x1d\x5d\xdb\xd8\xb4\xa1\xd8\xcd\xe0\x52\xf8\x98\ +\xa3\x9b\x5a\xa5\x28\x7d\xc7\x60\xb0\x75\x6d\xe7\x1d\xb3\xea\xda\ +\xea\x76\x46\x34\xad\x3a\x54\x21\x21\x62\x17\xa0\x55\xf7\xb2\x7c\ +\x0f\xf2\x2e\x3e\x4c\xb1\xfa\xd8\x34\x03\x6b\x06\x3a\xc5\x1e\x60\ +\x6d\xf2\x69\x67\x97\x9e\xd4\x4f\x3f\x47\x83\x15\xd0\xfb\x70\xc5\ +\xb3\x4e\x89\x5f\xe0\x70\xe5\x4e\xd1\x54\x39\x52\x33\x8b\xec\x11\ +\xb2\x84\xb6\xcf\xd8\x82\x0f\x7b\xb0\x8a\xca\x19\xee\xf2\x13\xd0\ +\x5a\xfd\x01\xf6\x03\x9f\xe2\x60\x1c\x1b\x2b\xef\xe3\x77\xfc\x36\ +\xe4\x38\x0a\xe5\x32\x45\x1f\xdb\xa6\x68\xac\x6e\x13\xe1\xc5\xbb\ +\x50\xec\x8e\xed\x94\x4d\x60\x1d\x5c\xf5\xda\x8c\xa2\x6d\x5f\xdf\ +\x54\x18\x9e\x11\x30\x29\xf9\x29\xaa\x01\x62\x8c\x89\x39\xd0\x30\ +\x8d\x01\xc4\x67\x92\xdd\xd0\xf4\x95\xd3\xfa\xc2\x2a\x72\xcc\xa0\ +\x4a\x2e\x78\xfb\x58\x46\xfd\xc2\x46\x6c\x8a\x88\x82\xc6\x71\xe5\ +\xb3\xa9\xea\xc3\x85\xb3\xe6\xc9\x1b\xb2\x8e\xcf\x86\xc6\xbc\xf2\ +\x77\xbc\x0b\xa4\xeb\x58\x29\xac\xd8\x76\x0b\x45\x2c\xfb\x03\xdd\ +\xc3\x3f\x8b\x95\xb0\xaf\x03\x2c\x17\x85\xf1\x6d\x35\xfb\xb8\x5a\ +\x15\x46\x2e\x95\x7d\x9d\xc0\x70\xdf\x8d\x8a\xba\x7f\x92\x59\x27\ +\x8d\xff\x8c\xf3\xbc\x54\xe3\x3d\x99\xae\x75\x37\x2f\xaf\x35\x26\ +\xe4\x01\x3e\x71\x7c\x4b\xed\xd9\x97\x9e\x6d\x97\x97\x57\xdb\x87\ +\xbf\xfa\xc9\xf6\xfe\x8f\xbe\x55\x83\x0e\x54\x79\x87\x3c\xe8\xcf\ +\x9e\x1e\xda\x95\x1c\x52\xab\x3c\x8d\x2b\xfb\x15\x2f\xcc\xb6\x2b\ +\xbf\x98\x7d\xf7\x17\x3f\xde\x5e\x3c\xfa\xd6\xf6\x17\x5f\xff\xd8\ +\xc7\x91\x7f\xa9\x54\x09\x38\xe6\xf8\x7f\x7d\x37\xd7\xfc\xdc\x76\ +\x12\x72\xfe\xf8\x25\xcc\xed\x85\x0e\x2f\x8e\xe8\x3a\x6e\x3d\x96\ +\x92\x7c\x61\x7d\xe6\x31\x1f\x99\xf3\x83\x39\x15\x8d\x48\xe3\xbc\ +\x50\x83\xfe\x66\x9a\x1f\xa0\x86\xc7\x4f\x7f\x99\x33\xaf\x22\x7e\ +\x97\xef\xa4\x74\xb3\xd5\x76\x2f\x43\xaf\xbe\x65\x4c\xd0\x1c\x68\ +\xe0\xd1\xfd\xa2\xac\x5e\x49\xc9\x12\x0e\xe3\x9f\x9c\x17\x6e\x78\ +\xcb\xc7\x22\xa9\x33\x53\xf2\xae\x5e\xae\xad\x2c\xdc\x0f\x7a\xd1\ +\xd9\x9e\xda\x5a\xc2\x68\x29\x2f\x6e\xb8\xae\x5f\x24\xce\x43\x1a\ +\x18\x46\xa4\xbf\x59\x16\x58\x05\x52\xb6\x73\xe4\x85\x5b\x85\x2a\ +\x5f\xc5\x48\x09\x46\xd1\x7a\x6c\x33\xed\x26\xac\xf2\x82\x0c\x43\ +\x5b\x91\xe0\x13\x1f\x04\x66\xc3\x9e\x21\xcc\x45\xdd\xc6\xce\x67\ +\x5b\xb8\xe7\x20\x65\xd2\xc7\x85\xb9\xdc\xf8\x05\xad\x79\x8f\x93\ +\xcf\x7e\x98\x74\x14\x71\x14\xcb\x86\x90\x2b\x0c\x37\x3c\x94\xe8\ +\xf7\xb8\x62\xe0\x59\x49\x0c\xad\xb6\xdb\x46\xcf\x7a\xee\xd6\x29\ +\xb0\x8a\xe5\x98\xb1\x1f\x50\xc7\x94\xe3\x74\x8c\x5a\x96\x4e\xb2\ +\xb6\xd9\xf2\xc3\x57\xc9\xc4\xde\xdf\x8e\x65\xcf\x54\x8c\xa5\xd8\ +\xc7\x41\xb5\x55\x55\xf6\xdf\x48\x06\x9f\x8b\xf1\x12\x4d\x6d\x1a\ +\x52\xb1\xb8\xee\xd1\xea\x8b\x4e\xd9\x4c\xd9\x7a\x9d\x8b\xd2\xad\ +\xcd\x90\x9d\xed\xfe\xb6\xa3\x28\xeb\xb7\xa2\xeb\xfa\x88\xd6\xf0\ +\x55\x5f\x69\x97\xa0\xd7\x7d\xa1\x9d\x59\x86\x84\x23\xbd\x2d\xd9\ +\xd6\xb2\xdb\xe5\xed\x6f\x2d\xfd\x73\x6c\x98\x22\x3a\x31\xec\x93\ +\xb4\x66\x9f\x65\x72\x59\x2f\xa5\xfd\x6d\x9b\x64\x34\xb6\xfa\x39\ +\xdc\x6c\x01\x0c\x0f\xfb\x3d\x7e\x6a\x21\xa1\x78\xb1\x17\xc0\x82\ +\x65\xfa\x43\x92\xad\x5a\xaf\x28\x7f\x70\x04\x6b\xcb\x34\x62\x6a\ +\xfb\x04\x1d\xb4\xb3\x17\xc3\xe3\xb5\xea\x78\xc8\x46\x37\x21\x15\ +\x34\xb0\x9e\x1b\xe5\xba\x90\xf1\x9f\x3f\xb0\x88\x6f\x62\x97\x63\ +\x7d\x2b\x21\x4a\x61\xb2\x91\xc5\xd5\x7d\xc9\x1a\x6b\x7b\xec\xd6\ +\x78\xcb\xff\x58\xbf\xe6\x5b\xfe\xe0\xf6\x69\x0c\xe6\xbe\xf8\xf6\ +\xf1\xf6\xe4\xf9\xcb\xed\xf2\xf9\xef\xb6\x6f\x7c\xf3\xff\xeb\xb9\ +\x94\x2e\x0f\x8a\xa1\x2d\x9f\xfc\xe6\x6e\xf9\xa0\x83\x0e\x3a\xe8\ +\xa0\xcf\x97\x98\xf9\x1f\x74\xd0\x41\x07\x7d\xf1\xc4\x1c\x70\xa5\ +\xd5\x66\x66\xf8\xa6\xd9\xe1\xeb\xfc\xed\x7b\x28\xe7\x9b\x72\xef\ +\x48\xc1\x4c\x92\x97\x5c\x51\x1f\x6d\x2f\x34\xa9\x7d\xff\xdd\x7f\ +\xdc\x6e\x7f\xf7\xb3\xed\x4b\x4f\x9e\x6d\x4f\x1f\x6b\x88\xe5\xe6\ +\xd5\x37\xad\x77\xdb\xdd\x0d\x2f\xd2\xae\x25\x99\x14\x33\x41\x96\ +\x84\xf1\xf9\x45\x52\x4d\xa8\xed\x8b\xad\xc2\xd9\x47\x7b\x96\xd5\ +\x07\x34\x49\xbe\x75\x60\x5b\xec\x87\x3a\x4c\xfc\x4b\xe7\x41\x50\ +\x6e\x00\x66\xcc\xb8\xb1\xd2\xa4\x3d\xf1\x73\x1d\x90\xe6\x6e\xbb\ +\x98\x7e\xaa\x08\x6b\x7d\x1e\xad\xfd\xa7\xaf\x62\xfb\x58\x0f\xb8\ +\xb0\x7c\x43\xa1\x59\xb9\xbc\xbe\x3c\x74\x95\xac\x75\x06\xcb\xb7\ +\xf4\xd0\x8b\xdd\x56\x74\x6f\x3f\xc7\xa6\x6d\xe3\xe4\x73\x1b\x6d\ +\x2f\x4c\xfc\x62\x7b\xb1\x1e\xc8\x58\xc9\xc6\x62\x97\x44\x71\xc9\ +\x12\x33\x32\x76\xc7\xa7\x8e\x8b\x11\x97\x07\x76\x18\xa1\x0e\x49\ +\x2e\x2d\x32\xcc\xda\xd6\xcb\xd6\x4e\x10\x7e\x2d\x8d\xf7\xd2\x31\ +\xad\x41\xd6\x55\x9c\xf2\x08\x3a\xc5\x10\xad\x2f\x8c\x30\xb9\xdf\ +\xe9\x7b\x3f\x1c\x19\x3c\x82\xa2\x2e\x66\x6c\xd7\x09\x8f\x00\xb8\ +\xa9\x75\x05\xec\xe3\x30\xa6\xdc\x41\xe2\xa1\x98\x55\xb7\x0e\x09\ +\x6c\x6f\x19\xf6\x73\x5c\x21\xf5\xdb\x5b\xaf\x62\x4c\xd5\xfd\x91\ +\xd7\xb2\x8c\x53\x3a\x87\xad\xdb\xc1\x1c\x72\xae\x07\x78\xd0\x3d\ +\x60\x52\x67\xda\x67\x0d\x75\x95\x7d\xd5\x8e\x3c\xc3\xbd\xef\x5e\ +\x47\xb5\x6f\xf7\x59\xa3\x53\x7a\xbb\xac\x2e\xc8\x29\x4f\xc1\x22\ +\x57\xda\xab\x36\x0b\x33\x59\x27\x49\x1f\xd3\x4d\xc1\x68\x8f\xd3\ +\x77\xe7\xf2\xfa\xd8\x2b\x3d\x0e\x97\x60\x7b\x25\xa2\x19\x2a\x9d\ +\xd6\xa2\xc7\xd1\xe7\x7e\xdb\xfe\xa9\xde\x19\x1c\x6e\xdd\x32\x7d\ +\x73\xbd\xb2\x4f\xa5\xcf\x61\x8f\x33\x40\x13\x4f\xee\x98\xe6\x56\ +\x3a\x46\x75\x34\x6c\x99\xd2\x2f\x38\x2e\xf4\x84\x11\x90\xb1\xd1\ +\x4b\xfb\x08\x1a\x71\x65\x53\x1a\x46\xb7\x99\x6d\xad\x4d\xe0\xe1\ +\x3e\xe8\x54\x04\x66\xc4\xe7\xfa\x80\xe4\x36\x20\x76\x30\x52\x30\ +\x36\x11\x05\x96\xbc\x68\x14\xb6\x28\xdc\x29\x44\xf5\xa5\x99\xb1\ +\xdc\x63\xfb\x8d\xd6\x53\xf2\xfa\xe5\x76\x7b\x7d\x23\x9b\x97\x6a\ +\x77\xdb\x85\x9a\x7b\xfc\xf8\x72\x7b\xf6\xfc\xf9\x76\xf1\xf2\xe3\ +\xed\x57\x7f\xff\xdf\xb5\xaa\x2f\xbb\x99\x49\x65\xbb\xdd\x83\xfe\ +\x3c\x89\x7d\xf8\x36\x3b\xf0\xde\xbe\xf7\x19\x9c\xe3\x57\xec\x39\ +\xc4\xcd\xcd\xf6\x9d\x7f\xfe\x7f\x6e\x5f\xfd\xfa\x07\xdb\xd5\x15\ +\x55\x38\xde\x78\x65\x44\x38\x2f\xd3\x5e\xf1\x2b\xa3\x32\x84\xd5\ +\x79\xc9\xf1\xe8\xf1\x05\x98\xbf\x54\xf0\xa7\x81\xd6\x68\x64\x8a\ +\x3c\x18\xe5\x9c\xa8\x39\x93\xd0\x7e\x79\x76\x51\xf2\x3e\xf7\x3c\ +\x8a\x24\x89\x77\x7d\xcd\xaf\x18\x77\x73\x1e\x89\xab\xe9\x56\xdc\ +\x83\x74\xd4\xba\xcf\x9f\x47\xea\x3f\x52\xeb\xe1\xf9\x8e\x5f\x74\ +\xc0\x5c\xfc\x24\x6d\xb7\xbf\xea\xa0\x33\x7f\x92\xf4\xba\x77\x2e\ +\xb1\x3c\xf6\x23\x93\x57\xf5\x19\x83\xa4\xf3\x62\x8d\x8c\x89\x51\ +\x7a\x35\xe1\x9f\x42\xa4\x9e\x01\xfa\x8c\x2f\xd7\x54\x33\xfd\xae\ +\x6b\x09\xdb\x36\x78\xd5\x37\x3f\xca\x37\x02\xa5\x33\x9d\xb3\xef\ +\x4e\x98\x74\xc7\x7b\x71\x12\x0c\x0b\xbf\xc0\x53\xdb\xfd\xad\x3a\ +\xf4\x72\xdb\x36\xd9\x08\xbe\x6b\xb7\x7c\x89\x1f\x4a\x30\x84\x21\ +\x79\xc4\x59\xff\x05\x53\xa2\xf8\x64\xbb\x7d\x49\x75\xd4\x3f\x11\ +\x29\xb0\xd9\x2f\x20\x8d\x2d\xeb\x84\xcf\x2d\x66\x11\xea\xb1\xdf\ +\x87\x59\xc5\xf8\x9b\x64\x66\xd9\x6b\x5b\x3b\x0e\x2e\xcd\x32\x7d\ +\x7c\x80\x77\xeb\x53\x72\xe4\x9d\x7a\xfa\x2d\x7f\x6d\x47\xf4\xd8\ +\x1d\x57\xdb\x07\x1e\x39\x7b\x5f\x8b\x85\xd9\x6f\x1f\xc7\x2e\x15\ +\xd0\xf1\xa3\xd8\x94\xa8\xab\x7a\x12\xb4\x88\xdf\x36\xb9\x1a\x2c\ +\xbc\x84\x63\xd9\x82\x36\x26\x07\x2f\x5a\xb1\x62\x53\xeb\xc5\x8d\ +\x5b\x18\x2b\xd0\x3a\xe0\x4e\x0d\xd9\xcd\xba\x9d\xe0\xe7\xa8\xb7\ +\x4d\x99\x55\x79\x11\xed\xc9\xfa\xc6\x6e\x8e\xe8\x88\x95\x12\xb1\ +\x78\x46\xf8\x3e\xba\x2d\xc7\xdb\x50\xd1\xeb\xa7\x22\x18\x10\xfd\ +\x5c\x66\x5a\xf4\x19\xa3\xe3\x10\xa6\xac\x37\x40\xb0\x28\x73\x7f\ +\xad\x3e\xce\x7d\xe2\xd7\x3a\xf1\x58\x77\x3f\x40\x68\x77\x8f\x7b\ +\xb1\x9f\x4f\x7b\x17\x1b\x9f\x25\x22\xfe\x52\xed\x1b\x32\x51\x5e\ +\xfc\xb1\x63\x62\xf7\x63\x4a\x23\xce\xb6\x3f\xc0\x89\xb2\xac\xf5\ +\x11\xa5\xef\x6d\x97\x1c\x02\xa5\xb9\x6d\x49\xee\x9d\xeb\x8f\x29\ +\xf8\x06\x66\xdf\x73\xf7\xb5\x83\xb8\x7b\x39\xc1\xbc\x7f\x58\x8a\ +\x50\xea\x7c\x6c\x90\xfe\x31\x06\xe9\x96\x57\xd7\x34\xfe\x58\x24\ +\x63\xb6\x17\x5f\x5f\xf8\x7f\xb4\x97\xdb\x97\xfe\xe2\x83\xed\xc7\ +\x3f\xfb\xc6\xf6\x9b\xdf\xfc\x50\xcd\xea\xe2\xa7\x66\xba\x4d\xca\ +\xd1\xc6\x41\x07\x1d\x74\xd0\x41\x9f\x2b\x31\xf2\x1f\x74\xd0\x41\ +\x07\x7d\xf1\xd4\x73\xce\x87\x66\x81\x6f\x9a\x1d\xbe\xce\x7f\xea\ +\xeb\xb6\xa0\x55\x7f\x2d\x55\x12\x66\xbb\xf0\x49\x3d\x6e\x0e\x5f\ +\xdc\xdc\x6d\x3f\xff\x1f\x7f\xb3\x3d\x7d\xf2\x68\x7b\xfe\xf4\xa9\ +\x43\xf8\x03\x6b\x1e\x62\xf0\xd7\x66\xe1\x6b\xcd\x96\xfd\x78\x43\ +\x38\x7f\x2d\x0c\xa6\x09\x33\x0f\x1c\xef\xfc\x67\x66\xba\xf9\xad\ +\x07\x0b\xc5\x60\xd5\x88\xc9\xf3\x76\x15\xfd\xf3\x5d\x52\x0c\xe6\ +\xaf\xa8\xa3\xc3\xf8\x32\x01\x5f\x99\x07\x43\xd3\x0f\x25\x6d\x74\ +\x53\xb5\x99\xf6\xd3\x4f\xdb\xf4\xdb\x36\x8f\x61\xc4\xe8\x3c\x2d\ +\xe0\xc1\xa9\xff\x1f\x1c\x58\xf7\x19\xdf\x94\x66\xee\x10\xc8\x51\ +\x76\xee\xf4\xb5\xce\x7e\xe2\x10\xbd\xdb\xc4\x1e\xf5\xca\x36\x56\ +\x7e\x1e\x70\xec\x31\xea\xc3\x81\x59\xa9\xae\xd6\xdb\x8d\x07\x0d\ +\x89\x2f\x2c\x66\xb0\x08\x83\xc8\xac\xc3\x12\xe3\x7e\x68\x1b\x15\ +\x0c\x0d\x89\xd2\x86\x15\x31\x7d\x49\xa2\x1d\x73\x3b\x25\xc5\xfa\ +\x89\xcb\x5c\xae\xa1\xef\x59\xc5\x8e\x4f\xfc\x8b\x5a\xa6\xc9\x76\ +\x81\xf7\x52\x0c\xa6\x3f\x73\xdd\x1f\xb2\x0b\x28\x51\x38\xcb\xc0\ +\x4f\xb9\xab\xe4\x21\x4f\x77\xa6\x1f\xfa\x34\x03\xa7\x08\xad\x76\ +\xe7\x09\xd0\x7c\x42\x86\xb5\x7d\xcd\x6d\x03\x95\xb2\x82\x3a\x2e\ +\x56\xea\x10\xeb\x0b\x3f\x4c\x4b\x14\x95\x17\x73\x40\xf0\x02\x43\ +\xab\x4d\x17\x5a\xae\x3c\x63\x13\xd9\xf1\x68\xf7\x97\x19\x0f\x9d\ +\xe9\x4a\xa8\x6e\xe2\xa3\xc7\xde\xd1\x08\x2c\x5a\xdd\x75\xcc\x47\ +\x2f\x09\x9d\xd6\x71\xde\x3d\x4c\x9a\xec\x8f\x1c\xf5\xf6\xf6\x37\ +\x21\xf0\x56\xb0\xce\xe6\x28\x50\xa9\xec\x2e\xea\xad\x2e\x53\xd9\ +\xac\xeb\xde\x27\x83\x8f\x37\x64\x74\xa3\x0e\xb4\x12\x96\xc3\x48\ +\x99\x66\x23\x2a\x65\xac\xb6\xc5\xaa\xe3\x24\xbf\xc8\x2f\xce\x6c\ +\x2f\x3e\x29\xae\x5b\x7a\x25\x2b\x59\x5c\xb8\xc7\x34\xa2\x1b\x63\ +\x2b\xd8\x45\x51\x90\xfd\xc1\x46\x98\x75\x83\x53\xc7\xe1\x0f\xcb\ +\x8c\xdb\x93\xb6\xa5\xc7\xfb\x79\x4d\xe8\x97\x06\x7d\x6d\x70\x0c\ +\xe5\x50\x85\xb3\x2c\xa9\xa6\x9e\x73\xad\x1a\xcb\x76\x18\xe3\x7b\ +\xc6\xf4\xfc\xb1\x85\xae\x6f\x2f\x5e\x6e\x37\x7e\x28\x24\xbf\xea\ +\x70\xe3\xf1\xe4\xd9\xd3\xed\xe9\xe5\xc5\xf6\xe2\x67\x3f\xde\x5e\ +\xfe\xe4\xdb\xa9\x6f\x0f\x12\x6a\x79\xd0\x9f\x2d\x71\x0c\x9d\xdb\ +\x8d\x2b\x86\x9e\xc3\xce\xb4\xa8\x72\xf1\xdd\xb2\xcb\xed\xe5\xf5\ +\xf5\xf6\xdd\x1f\xfe\xed\xf6\xc1\xab\x7f\xd8\xbe\xf2\xa5\xfe\xdf\ +\x69\x49\xc2\x3c\x84\x87\x8f\x2f\x5f\xe6\xe8\x1f\xa7\xa3\x17\xc5\ +\xf9\x18\xe5\xb8\x5b\x33\x43\xab\x2d\xdd\x7e\xb1\xe1\x1c\xf7\x96\ +\x7e\x59\x96\x17\x67\xf3\x9b\x68\xf9\x16\x42\x74\xe2\x4a\x8e\x13\ +\xa7\xea\x52\x52\xa4\x43\xa1\x3a\x67\x58\xd0\xc7\x02\xce\xd8\x68\ +\x98\xfe\x32\x1e\x84\xe9\x7f\xa2\xb0\x4b\xb2\xc8\xe7\x57\x65\x9d\ +\x87\xca\x7e\x45\x96\x88\x7e\x39\xe3\x17\x42\x8e\xe3\xa5\xf6\xcc\ +\x46\x74\xc7\xf0\x52\xcb\xa7\xaf\xdb\x87\xf3\x13\x8d\x96\x06\xfc\ +\x29\x9f\xea\xd8\xe7\xae\x05\x2b\x49\x8e\xc4\xec\x79\x56\x8e\x44\ +\xcd\x90\x91\x7d\xe4\x5e\xab\xad\x0e\x31\x8d\x78\x54\xfa\x9b\x7a\ +\x6d\x47\x86\xa3\xf8\xb3\xc3\xba\x4e\xec\x59\xd7\xd8\xac\x36\xfc\ +\x08\x13\x3a\xa0\x3a\x99\xb6\x22\x07\x83\x6b\x5d\xe7\xf6\x2a\xd6\ +\xb1\x88\xaf\x86\x42\x31\xdb\x36\xb6\xb9\xeb\xc3\x95\x63\xb0\xea\ +\xa7\x33\xf7\xd9\xbe\xd1\x18\x58\xa4\x45\xd5\x95\xd0\x76\x2c\x4c\ +\x45\x2f\x7c\xcc\x50\x9b\x8d\xb9\xae\xa2\x1c\x5f\x7e\x98\xc5\x41\ +\xd8\xec\x17\xb2\xc7\x86\x12\xeb\x40\xeb\xb1\xa7\xb2\xb7\xa7\x9c\ +\x6d\x91\x93\x93\xa3\xa3\xbb\x84\xe7\x71\x50\x99\xce\x12\xbe\x51\ +\xd7\x15\x1e\x88\x6d\x38\xa1\x44\x5b\x71\x38\x7d\x70\x3f\x12\x64\ +\xc8\x31\x8d\xac\xd4\x68\xfa\xed\x72\x0d\x5c\x2a\x78\x1d\x2a\xce\ +\xb4\xf8\x4c\xb2\x47\xfd\x72\x2e\xea\xd0\xcb\x14\x2d\x8e\x09\x96\ +\x5d\xeb\x22\xa3\xdb\x1c\x21\x8d\x7b\x3d\x19\x03\x02\x25\x1e\x05\ +\xbc\x74\x08\xff\x88\x49\xde\xe6\x5e\x6f\xa4\x6d\x63\x25\xcd\xe0\ +\xf4\x61\xba\xd0\x8c\xf0\x19\x3e\x8c\x6c\x9f\x05\x91\x98\x23\x93\ +\xed\x26\xea\x51\x65\x78\x4a\x4b\xa5\xf8\x6b\x20\x02\xe2\x48\x4d\ +\x49\x8c\x23\xad\x27\x16\xdf\x42\x86\xe7\x36\x83\x33\x66\x37\xb6\ +\x54\xa8\x3e\x67\xac\x67\xee\xc4\x8b\x33\x8d\xfd\xdb\x95\x9c\x8c\ +\xf7\xf9\x43\x8a\xbe\x26\x64\x3b\x49\x2f\x9e\x99\xf0\x57\xdf\xc4\ +\x5e\xeb\xd2\xf5\x09\xeb\x4c\xe6\x7f\xa9\xf1\x07\x0e\x2f\xf8\x29\ +\x63\xef\x3b\xf7\x4e\x4d\xbc\xda\x1e\x5f\x5e\x6e\x5f\xfe\xea\xab\ +\xed\xe9\xf3\x0f\xb7\x7f\xf8\xd6\x5f\xab\xcd\x17\xb5\xca\xe4\x0e\ +\xad\x2d\x1e\x74\xd0\x41\x07\x1d\xf4\xf9\xd1\xf1\x42\xed\xa0\x83\ +\x0e\xfa\xd3\xa5\x9e\x0f\xd6\x3c\xd2\xfc\x59\x10\xf9\x56\x7e\x2b\ +\xca\x24\xd8\xb3\xed\xa5\x1f\xe9\x96\x4a\xfe\x0a\xff\x77\x3f\xd8\ +\xee\x7e\xfe\xee\xf6\xfc\x9d\xc7\xdb\x93\x2b\x7e\x22\xa7\x6e\x19\ +\xb8\x71\xbe\xb9\xd9\xee\x6e\x5e\x6e\xf9\x47\xc3\xf9\x59\x44\x7e\ +\xa6\xe8\xd5\x8d\x7c\x92\x7c\x43\x2b\x37\x3c\x6a\x43\xec\x87\x29\ +\xdc\x40\x37\x79\x32\xdd\x54\x93\x7a\xfe\xdc\xdf\x93\x77\xfe\x3e\ +\xae\x74\x71\x04\xc3\x7b\xe2\xc6\x0d\x80\x62\x9c\x3e\x1e\xc7\x2e\ +\xf3\xef\x6c\x0e\xb7\x7d\x8e\xd3\x37\x3f\x30\xf0\xd3\x02\x5e\x7e\ +\x81\xd1\x4f\xfa\xae\xda\x92\x79\x88\xca\x43\x04\x7c\x79\x88\x6a\ +\x6c\x3c\x50\xad\x3a\xc5\x8e\x03\xb7\x8f\x1c\x79\xa9\x88\x4f\x95\ +\x12\xcf\xf6\x83\xc1\xd9\x26\xc4\x99\x11\xd3\xee\xbe\x5a\xef\xf8\ +\x66\xa5\x4b\x7c\xd6\x34\xb8\x57\xd8\xeb\x5d\x46\x84\xdb\x1b\x50\ +\x88\xed\x34\x9e\x26\xa7\xfe\x88\x47\xeb\x58\xf1\x7c\x50\x70\x9f\ +\x1c\x32\x8a\x26\x03\x43\xdc\xe3\x07\xe9\x24\x90\x9c\x67\xb8\xd5\ +\x19\x96\xfe\x4f\x9e\xd5\x3b\xc6\x0c\x01\x96\x6d\x75\xf0\xac\xd7\ +\xb1\x25\x4e\xc8\xc1\x89\x8d\x75\x3e\xae\x1d\x0b\xab\x96\x76\x85\ +\x95\x6a\x2b\x79\xa2\x8b\x8b\x8c\xb1\xbf\xd0\x8b\xa1\x11\x52\xa0\ +\xed\x02\x47\x0e\xf1\x72\x0a\x64\x37\x17\x27\xb4\x2b\xac\x2c\x6f\ +\xf3\xae\x76\xd3\x1a\x1c\x9a\xda\xeb\x69\xd6\x9c\xb9\xd9\x0e\xe7\ +\xeb\x27\xb2\x97\x05\x32\x53\xbb\x4d\xa8\xe5\xd0\x2c\xce\xf4\xff\ +\x7e\x85\xe8\x0a\x45\xac\x6c\x1a\x4a\xa8\xcd\x7b\x71\x4e\xd0\xed\ +\xed\xd7\xa9\xf7\xab\xf7\xcb\x29\x81\x99\xcb\xb9\xd3\x25\xf9\xd8\ +\xb4\x03\xa5\x70\xb8\xf4\xc2\xac\x59\x96\x7f\x8d\x6f\xcc\x6a\xc6\ +\xee\xd5\x86\xbb\x1e\xc7\x7f\x39\x6a\xac\xa9\x3a\x05\xc7\x5f\x72\ +\x60\x06\xc2\x1c\xaf\xcd\x40\x92\x80\xbc\xa4\xca\xb9\x55\x71\x0b\ +\x1b\xef\x44\x25\xa0\xc8\x60\x79\xc9\xb5\x10\x9b\x9b\xf1\x5f\x4a\ +\x2f\xa1\xc8\x3c\xfc\x29\xff\x88\x0b\xd9\x14\x9d\x64\x94\x23\x88\ +\xcb\xd1\x97\xee\x77\xc6\xf3\x1e\xd7\xf9\xeb\x6a\xff\x21\x89\xae\ +\x8f\x7e\xb8\x8c\x5f\x0b\x7f\xd7\xfd\xf4\xd9\x93\xed\xe2\xf6\xfd\ +\xed\xe7\xdf\xf8\xef\xfc\x29\x76\x72\xb9\xf5\xe4\x8f\x28\xfd\xa0\ +\x3f\x2f\xea\xdd\xd6\x07\xd3\x29\xe1\x87\xc7\xc1\x16\xc1\x31\x94\ +\x23\x00\xa9\x63\x85\x9f\xc6\x7e\xf5\x72\xfb\xd6\x0f\xfe\xdd\xf6\ +\xb5\xbf\xba\xd8\x9e\x3e\x25\x86\xff\x9d\xa6\xca\x62\xfe\x08\xe9\ +\xe5\xcb\xdb\xed\x66\xfc\x5d\x0e\xc7\x20\x52\x67\x2f\x2f\x6b\x58\ +\xd0\x93\x7e\x27\x69\xa7\x9b\xe7\x25\x73\x7e\xfa\x9a\xf3\x40\x80\ +\x75\x1e\x96\xf2\xd0\x94\xb9\x15\x7a\x1e\x92\xe6\xa1\x29\x2f\xd8\ +\xea\x81\x6a\xcd\xad\x12\x2f\xf6\xb7\x17\x2a\x73\x37\x68\xc2\x28\ +\xc0\xc7\xba\x7b\x27\xa1\x8e\x3f\x62\x3e\x85\xaa\x75\xf6\x39\x92\ +\xf3\x64\x77\x5e\x99\xa7\xdd\x2f\xc3\x60\x7f\x3b\x6d\xb1\x3b\xd6\ +\x98\x5a\x5a\x7d\x2a\x64\x23\xe2\x87\xd5\xba\x1f\xe0\x12\x0b\x25\ +\x96\x17\x40\xe8\xde\x13\xae\x07\x63\xdf\xb2\x4d\x6d\xaa\x7e\x8d\ +\x61\xf9\x66\x1a\x3c\x42\xcd\x69\x9b\xa4\xfa\x28\xd6\x7e\x24\xf5\ +\x6a\xf1\x87\x38\x37\x2e\x96\xcf\xd2\xf8\xc2\x2c\x4e\x16\xdb\x31\ +\xc6\x16\x5b\x4a\xf7\x3f\xfe\xc8\xe4\x0f\x80\xcf\xdc\xba\x43\xba\ +\x5e\x18\x90\x6e\x50\x8c\x38\xfa\x1d\x57\x62\x3c\x1f\x0e\x67\x7c\ +\xdb\xe7\x18\x71\xcd\x6c\xe3\xe6\x8a\x21\x5f\x18\xbb\xf5\x11\x6e\ +\xd9\x3c\x7c\xf4\xc3\x7d\x51\x7d\xb5\x91\xfd\x44\x63\xfe\x54\xbb\ +\xec\xa3\x3a\x07\x58\x46\x4c\x94\xf4\x8f\xa5\xea\xc1\x76\x27\xb6\ +\x31\x53\xdb\x1c\x09\x3e\xb6\x7c\x44\x98\xa7\x52\xea\x62\xaf\xb4\ +\x83\xaa\xb1\xc4\xa6\x9f\xa9\x0c\x36\xfb\xe4\xf9\x82\x63\xc3\xf8\ +\xac\xdb\xc9\xba\x75\xdd\x3a\xdf\x84\xe0\x39\x25\x57\x43\x8a\xfd\ +\x87\x3a\x45\x8d\x65\x5b\x95\x31\xe6\xf9\x0b\x19\x6a\xfc\xbe\xbf\ +\xf3\x87\x6a\x5d\x44\x16\x72\x7a\x2f\x48\xae\x35\x87\x8e\xb2\xc6\ +\xaf\x64\x60\xd9\x3e\x10\x79\x9a\x31\x83\x02\x77\x91\x0f\xeb\x44\ +\x35\x07\x50\x24\x87\x4d\x11\x38\x19\xb0\xbb\xda\xa0\xd2\xdb\x4f\ +\x31\xf3\x94\xd3\x60\xe4\x58\xba\x41\x71\xe7\xb4\x69\x05\x1d\x8d\ +\xad\x51\xb8\xb7\xbb\x15\x63\x06\xe3\x35\x1b\x33\xb5\x26\x99\x8f\ +\x78\x59\x5c\x1f\xa9\xb3\x41\xfb\xaf\x97\x26\x37\x81\x8c\x19\x60\ +\xd0\xa2\xaf\xb0\x68\x8c\xe3\xa6\xd6\x91\x30\xd7\x81\xba\x36\x8c\ +\x3f\xb2\xa0\x46\x5f\x0f\x66\xdd\x99\x36\xeb\x6e\x6a\x45\xd2\x2a\ +\x12\xa5\x24\xe7\xf6\x8d\x4e\xec\xdb\x9b\x3b\x4d\x8f\xf8\x83\x55\ +\xc6\x0a\xad\x1f\x31\x8f\xae\xb7\x67\x4f\xdf\xd9\xbe\xf6\x6f\x3e\ +\xda\x7e\xf7\xc1\x3f\x6d\xef\x7f\xf0\x9e\xb0\x5b\xb7\x9a\x54\xbd\ +\xf6\x29\x0f\x3a\xe8\xa0\x83\x0e\xfa\xfc\x88\x51\xff\xa0\x83\x0e\ +\x3a\xe8\x8b\x25\xe6\x7c\x3d\xef\x9b\x73\xd0\x49\x2b\x76\xce\xff\ +\x69\xe9\xad\x73\xad\x9d\x43\x97\x94\xe0\xc1\x8b\x27\xc0\xba\xb3\ +\xbd\xbb\xbb\xda\x7e\xfb\x3f\xfe\xcb\xf6\xe4\xf1\xcb\xed\x19\xff\ +\x6b\x43\x93\x7a\x06\x58\xdf\x38\xdf\xd6\xb7\xd3\x78\xa9\xc4\x0b\ +\x35\x6e\xbe\x79\x99\xc6\x8b\xb4\xd2\x49\x74\x7a\xa3\x9d\xb6\x10\ +\xd5\x26\x44\xa3\x4c\xda\x3d\x71\x47\xd5\xf4\xfd\x42\xd3\xe8\xfa\ +\x1f\x38\x46\xfd\xa0\x67\xc6\x49\x31\xfb\x51\x15\xb6\xb1\x91\xdd\ +\xd4\x37\x35\x69\xab\xd8\x37\xce\x91\xbe\xd9\xaf\x27\x27\xe9\xa7\ +\xf4\x92\xd8\xe8\x79\x29\x48\x7c\xbd\x08\x83\x1d\x17\x3d\xdb\xa9\ +\xec\x62\xfe\x77\x1a\x6d\x24\xbf\x18\xc9\xd3\x01\x71\xdb\x2a\x9c\ +\xcf\x7f\xe2\x8b\xbf\x62\x83\x97\xed\x3f\xcd\xc5\x2c\xdb\xbe\xc6\ +\x24\xa5\xac\x58\x18\x2c\xfa\xbc\xa1\x16\x26\x01\xd9\x36\x75\x5c\ +\xf9\x46\x40\x89\x96\xc5\x94\x89\x8f\xef\x94\x13\x81\x4e\x5c\x62\ +\xcd\x5e\x8a\x6c\x17\xa3\x9f\xe3\xf6\x77\xcc\x6a\x2f\xdc\x5a\x2f\ +\xf7\xa9\xf1\x19\x61\x56\x31\x74\xf1\xdb\xd2\x5a\xa7\x73\x74\x79\ +\x8f\x2a\x30\x62\x2e\x6b\xe3\x08\xc8\xc7\xaf\x65\x68\xe6\x46\x6a\ +\xe1\xf0\x10\xdb\xc2\x51\xdc\xea\x4e\x3f\x47\xed\x2c\xf6\x73\x15\ +\x3f\x20\x90\xfc\x44\x44\x3f\x9b\x3f\x3d\x75\x57\xce\xe7\x79\x28\ +\x7f\x61\x12\xae\x4b\xff\x97\x15\xe8\x9c\x79\xd8\xb2\xf7\x7d\x96\ +\x94\xac\xe4\x4f\x1b\xfd\x10\x0b\x3c\xcf\xab\x62\x37\x79\xff\x09\ +\x6f\x49\xbf\x2d\x21\xf0\xaa\x33\xf6\xeb\x04\x25\x4a\xc7\x34\x57\ +\x2e\x74\xc7\x15\x66\xd3\x65\xc9\xc5\x57\x32\xd8\xc4\xe9\x2b\x23\ +\x67\xb0\x85\xa1\xa1\x67\x5c\xea\x3a\x56\x86\x2f\x58\x5a\xaf\x3e\ +\x94\x9e\x83\x55\xcc\x98\x08\x64\x01\x4e\x7f\x4e\xb9\xda\xa0\x0a\ +\x51\xe8\xe5\x1b\x32\xb5\x0b\x33\x1c\x36\x6a\xc8\x5c\x57\x09\x29\ +\xd9\x07\xbe\x6e\xd4\x75\xa1\x25\x51\xe6\x54\x0d\x59\xaf\xb3\xb0\ +\x74\x3a\xa4\xd1\x5b\x98\xf4\x6a\x90\x71\xdd\xff\x37\x8d\x3f\x8e\ +\xf0\x18\xce\x35\xef\xc6\x98\xaf\x07\x8a\xe5\xda\xf8\xec\x09\x7f\ +\x78\x72\xb9\x7d\xf0\xb3\x1f\x6e\x2f\x7e\xf9\x43\x8d\xef\xe4\x74\ +\xf6\x22\x37\xb2\x43\x0e\xfa\x33\x20\x76\x5b\xef\x34\xf4\x53\x6e\ +\xdf\x1a\x63\xd9\x23\xbc\x5c\xfe\xdf\x69\x8f\x7d\x64\x7d\xff\xfb\ +\x7f\xbb\x5d\x5f\x7e\x67\xfb\xea\xd7\x3f\xda\xae\x1e\xf1\x7f\xcc\ +\x38\x4e\xe5\xd6\x39\x71\x73\x7d\xb7\xbd\x7c\x59\xf3\x0a\x25\x1a\ +\x8b\x4c\xa6\x08\x49\x2e\xe6\xb8\x94\xe0\x7c\x06\x71\x75\x95\x19\ +\x96\x72\x3e\xe4\xe1\xa8\xb5\x60\xf5\x6d\xff\xf1\xad\xb4\xf1\x02\ +\x0d\xce\x1c\x2b\xb2\xe6\x5b\x3b\x86\x56\xbd\x69\xf4\xd0\x8b\xcf\ +\x1f\x75\x8a\xbe\xe5\x97\x09\x72\x3e\xf9\x5c\xa1\xcf\x58\x85\xe7\ +\x65\x34\x38\x76\x7c\xd1\x3b\xf6\xce\x2f\xc6\xd0\x3d\x9f\x22\x37\ +\x5c\xf1\xa9\x1f\x94\x25\xdf\x5c\xcb\x76\x4a\x7d\x6f\xa6\x78\xb1\ +\xcd\xb2\xb5\x2d\x61\x55\x74\xac\xff\xe6\x49\x3a\x2f\xd5\x80\xa9\ +\x98\xf9\x93\x98\xd8\x91\x48\xf5\xcb\xee\x17\x3f\x6e\x1b\x2c\xd5\ +\x3a\x6c\x70\x72\x29\x86\xa5\x75\xdb\xd1\xe3\x6f\xbd\x7c\x71\x4e\ +\x5b\x66\x2a\x34\x0c\x86\x32\xf1\x41\x55\x2f\x5c\x18\x84\x2e\xee\ +\xe3\x05\x7f\xae\x05\xc1\x47\xfb\xeb\x82\x6d\xac\x09\xbb\xa4\x4b\ +\x57\xd9\xb3\xdd\xd3\xe8\xbc\xb0\x75\xc6\x4f\x6f\xf4\xb2\x0b\x67\ +\x3f\x7b\x1f\x1b\x6a\x3c\x55\x9d\xe7\x4e\x3d\x2d\x3d\x76\xda\x21\ +\xd6\xe9\xaa\xd9\xe4\xa8\x63\xa2\x74\xe2\x59\x57\xa8\x31\x4c\xbb\ +\xac\x34\xd7\xce\xa5\x2e\xcb\x08\x28\x77\x99\x03\x86\x17\x3a\x31\ +\x53\xc7\x8a\x4a\x7f\x3a\x62\x7f\x0e\x25\x86\xe3\x2d\x46\x47\xf9\ +\xf8\xab\xd8\xb8\x2a\x46\xd4\xeb\x03\x45\x5d\x00\xd3\x52\xaf\x73\ +\x63\x55\x5f\x62\x91\x7f\x98\x43\xee\x68\x0d\x80\xa4\xfb\x65\xbd\ +\xea\x7a\x8c\xc0\x3e\xa9\x68\x73\x59\xc5\x53\x7f\x80\xda\x1a\x2a\ +\xda\x1d\x59\x65\x81\x16\xde\x0e\xb5\x08\x00\x4b\x0a\x17\xf9\x44\ +\xa8\xa0\x4f\xbe\x53\xd5\xd2\x9d\xb0\x27\x62\x55\x55\xf4\xb6\xe9\ +\xfa\xf0\x4c\x16\xf2\xb1\x05\x0b\x0f\x1c\x7f\xf5\x28\x78\x71\xf0\ +\xf8\xc8\x53\x90\xed\x75\x71\x3f\x2d\xe3\x4b\xa0\x34\xbb\x32\xff\ +\xe8\xf6\x32\x56\x56\x88\xf1\xd1\xa3\xca\x51\x71\xe2\x41\x36\x68\ +\x83\xed\xc1\xb8\xbe\xf3\x0a\xce\xb6\xc9\x38\x8f\x99\xd8\x47\x8f\ +\xae\x54\xf2\x0d\xb5\x79\x7d\x00\x47\xcf\x7e\xc8\xf6\x0a\xa5\xae\ +\xa5\x30\xe0\xf4\x71\x4a\x88\xde\x31\x56\xcf\xf3\x5b\x63\xed\x0d\ +\xbf\x66\x93\xb1\x1f\x1f\x20\xd7\xbc\xe7\x5f\xd2\x5c\xea\xd9\xaf\ +\xb7\x6f\x7c\xf3\x7f\xdb\x2e\x88\xf7\xaa\xd2\x8e\xb3\x92\x6e\xb4\ +\x7a\xd0\x41\x07\x1d\x74\xd0\xe7\x43\x5c\x45\x0f\x3a\xe8\xa0\x83\ +\xfe\x74\x69\xce\x0b\x3f\x7b\x22\xef\x6b\x67\x9b\xdd\x70\x4f\x50\ +\x8b\x98\xe1\x32\x27\x46\x5c\x3c\xf2\xc4\xf6\xa3\xdf\xff\x64\xbb\ +\xfd\xe9\xf7\xb7\xe7\xcf\x9f\x6e\x4f\x98\x53\x33\xb3\xad\x9b\xe0\ +\x7e\xa1\x96\x6f\xa2\x31\xe9\xe5\x01\x07\xba\x24\xdf\xde\xf2\x44\ +\x58\xc9\x84\xe5\x5b\x5d\xe8\xe4\x70\x63\x14\x91\x6a\x33\x0f\x3f\ +\x0b\xaa\x49\x7d\x39\xec\xbb\x27\xe5\x6b\x69\xbd\xe4\xb8\x79\x62\ +\x25\x06\xa9\x1f\x94\x2a\xe6\x0d\x0f\x7d\x94\xe4\x05\xa0\x75\x9e\ +\xa6\xd0\xc7\xe8\x8f\xdc\x57\xbe\x75\x97\xa7\x2c\xac\x93\xff\x52\ +\x97\x97\x5f\xd4\xa9\x75\xf5\xb6\x90\x4e\x72\x4b\xd7\xef\x6d\x00\ +\x4e\x5c\xaf\x7b\x6d\x13\xc7\x26\xde\xb2\xfb\x44\x0c\x7d\x45\xb7\ +\x6d\xb3\xfc\x91\x6d\x17\x50\x5c\xeb\xb8\x4a\xc3\x14\x06\x27\xd6\ +\x72\xc5\xd8\x66\xe8\x50\xfb\x0a\x40\xa6\xfd\x72\x18\x5b\x28\xc1\ +\xce\xd5\x78\x41\x93\x0c\x70\x33\x95\x07\x1c\xe8\x9d\xff\x2c\x75\ +\x82\x0a\x71\xee\x05\x5b\xed\xd6\xcf\x33\x37\x7d\x0b\x57\x8a\x14\ +\x11\xc3\x16\x9f\xcf\x31\x79\x54\x80\x8b\xfa\xc6\xf2\x1e\xdb\x57\ +\xc4\x8d\x60\x01\x16\xe5\x28\x68\x60\x7e\xc8\x85\x2c\x7b\xdd\xe6\ +\x10\xeb\x10\xa0\xc0\x45\x5d\xa9\x61\xb7\xb3\xf8\x07\x7e\xc2\x0f\ +\xd1\x83\xbe\x76\xac\x49\x3e\x35\xb3\x6d\x58\xaf\xe6\xa6\x53\x8c\ +\xe0\x12\x63\x3b\x40\x6b\xcc\x8c\xed\xf4\xa7\x74\x0e\x1b\xc1\x8b\ +\xf3\xc1\xb8\x12\xde\x37\x6a\xcf\x0f\x8d\xad\x09\xab\xe6\x23\x84\ +\x56\xfc\x7c\x8a\x57\xf5\xf8\x70\x6e\x77\x00\xc2\x3e\xa4\x33\x05\ +\x83\x04\xa6\x2d\xa4\x81\xb0\x3f\x69\xdb\x8e\x8e\x8b\x1a\x1f\x4e\ +\xe3\x15\xe3\x68\x3b\xc3\x29\xca\xee\xfa\x70\x63\x85\xb3\xb4\xbf\ +\x74\xe3\x27\x71\x56\xec\x8b\xed\xc5\xe3\x5f\x61\xf6\x33\x26\xe2\ +\x0e\x9e\x98\xc9\x38\x59\x64\x94\x0f\x15\x19\x5f\xb3\xb7\x31\x3e\ +\x2b\xb5\xe1\x21\xae\x0f\x51\x5c\x26\x3e\xe4\xab\x44\xc3\x6b\x95\ +\x25\x66\x90\x20\xef\xb6\x6e\x37\x1d\xf1\xb5\xce\xe3\xfb\x2b\xbe\ +\x99\x26\x9d\x3f\x24\xe1\xa7\x8d\xd1\x59\x37\x55\xba\xbc\xba\xdc\ +\x9e\x3c\x79\xb2\x5d\xdc\x7c\xb0\xfd\xec\x7f\xfc\x9d\xea\xf9\x8d\ +\x9a\xb2\x2c\x8d\x92\x56\xb4\x20\x07\xfd\x39\x11\x3b\x6e\x65\xa8\ +\xf6\xe9\x8e\x8c\x55\x80\x04\xe6\xed\xdd\xcd\x76\xfd\xf2\x83\xed\ +\x5b\xdf\xf9\x5f\xb7\xbf\xfa\xab\xeb\xed\x09\x73\x2d\x3c\x75\x4e\ +\xdc\x68\xfe\x71\xf3\xf2\x2e\xdf\x4e\x33\xcc\xf1\x96\x73\x80\xbf\ +\xc9\xe1\x50\x84\x10\x51\x0b\x10\xf1\xbe\xc1\xad\x71\x62\xa0\xec\ +\xce\x07\x8e\xff\xc8\xfc\xdf\x34\xec\xfe\x7f\xb4\xfd\x32\x4d\xd2\ +\xb7\xd0\x60\xe4\xe8\x97\x6a\x60\x92\x3e\xe1\x60\x11\x7d\xe9\xc5\ +\x9d\x49\x8f\xb8\xca\x5b\x56\x9f\x3d\xff\xf1\x1a\x82\x23\x99\x07\ +\xc1\x39\x67\xe0\x5e\xbf\xd8\x99\x27\xe5\x7f\x9e\x61\x23\xb1\xa3\ +\xfb\x1b\x67\x62\xa4\xff\x9f\xa1\x9a\x1d\x0f\x69\xbd\xd0\x95\xd4\ +\x51\x95\x30\x36\xf5\x88\x45\x7a\xdb\x62\x6b\x7b\x53\xcf\x3e\xea\ +\xf4\xf5\xbc\x63\x99\x07\xcb\xae\x35\x43\x52\x70\x2d\x9e\xb1\x61\ +\xd6\x8e\xfd\xa3\x54\xb2\x29\xdc\x11\x6a\xd8\x76\x4c\xf9\x46\x4c\ +\xb5\x8b\x1a\xbe\x3f\x9f\xe8\xd8\xdd\x5c\xd1\xac\x8f\xd7\x6d\x32\ +\x85\x63\xaa\xe9\x7b\x0c\xce\x82\x61\x0d\xbc\xec\x0a\x28\x57\xcc\ +\x40\x27\x71\x3a\x22\x0c\x2c\x7d\xed\x98\x11\xfb\x00\xd6\x3c\xec\ +\x6c\x8b\xac\x63\x05\x0e\x02\x44\xc4\x99\xf5\x27\x36\xfb\x36\xfb\ +\xb3\xb7\x65\x85\x4b\x61\x49\xbd\x62\xa8\x24\x3e\xef\xf7\x18\xe6\ +\xb2\x26\x69\xbd\x8c\x92\xb4\x13\xef\x98\x3d\x7d\x8a\x85\x66\x3f\ +\x9a\x17\xc3\x84\x1e\x3c\x8b\x4d\x33\xb4\x47\x3a\x46\x8b\xcc\x31\ +\x8f\x75\x70\x6d\x7b\x9f\x8a\x28\x25\xec\xab\x83\xa2\xc1\x13\xca\ +\x3c\xb2\xd6\xd1\x95\xac\x16\xb2\x92\x93\x2f\x54\x81\x69\x64\xd0\ +\x34\x95\x6d\x49\xe2\x71\xa3\xaa\x0c\x52\x70\xae\x83\x9d\xfb\x4c\ +\x1b\x7c\xbc\x9e\xa9\xec\x3e\xa2\x91\x1c\x4c\x9f\x1c\x7f\x86\x2d\ +\x16\xd3\xca\xb4\xc9\x3f\x81\xaa\x6e\xc3\xfa\xe0\xee\xc7\x82\xdb\ +\x64\xcc\x31\x6a\x70\xf6\xa5\xe2\x58\xe2\x2a\x4e\x4c\xf6\x7b\x61\ +\xc4\x1b\xb3\x52\x7a\xec\xe8\xe9\xe3\xb4\x9b\xb1\x73\xac\xf5\xc2\ +\xbe\x9d\xba\x3c\x1d\x3b\x10\xd1\x7d\xc5\x84\xc5\xff\x17\xef\x6d\ +\xae\x2d\x0c\x62\x33\xab\x9f\x31\x9f\xeb\x42\x6a\x4a\x62\xfb\xa5\ +\x5a\x78\xfc\x71\x86\x02\xd6\x7b\x9f\x26\xd4\x31\xcf\x29\xbc\x63\ +\xd2\xd7\xaa\x2b\x9d\xf1\x9d\x9f\x7e\xe4\xff\xa9\x79\x20\x93\x83\ +\x73\x79\x7b\xf4\x72\xbb\xd2\x1c\xea\x2b\x7f\xf9\xe1\xf6\xc3\x9f\ +\xfd\xfd\xf6\xe1\x07\x3f\x11\x78\x93\x66\xdd\x7f\x7a\x76\xd0\x41\ +\x07\x1d\x74\xd0\xe7\x4d\x19\x71\x0f\x3a\xe8\xa0\x83\xfe\x35\x10\ +\xb3\xcb\x66\xe8\x8d\xb3\xcd\x25\x40\x13\xd8\x35\x9c\x1b\x15\x98\ +\x69\xfb\x87\xd7\xaf\xb6\xdf\xfc\xdd\xff\xb1\x3d\xba\xf8\xc8\x2f\ +\xd3\x98\xd0\x32\xe3\x65\x92\x7f\xc7\xff\x90\xb9\xb9\xc9\x5f\xe8\ +\xdf\x66\x42\xcc\x24\x99\x6f\xa6\xf5\x43\xc7\x7e\xc8\xc8\x8d\x6f\ +\xee\xf1\x24\x61\x08\x21\xce\xc3\x9a\xea\x01\x0d\x30\x81\x2f\x6e\ +\xdb\x7e\xcb\x52\x59\x24\x3d\x71\x07\xd6\x88\x5f\x59\x63\x9b\x32\ +\xd9\xc7\x63\xa9\xc2\x0f\x6b\xea\xee\x7b\x3c\x00\xc5\x59\x7d\xe5\ +\x4f\x94\x7d\xd3\x6e\x19\xb6\xcf\x75\x15\xc7\xcb\x34\xd9\x7e\xa9\ +\xe6\x3a\x9d\xb3\x39\x79\xf1\x75\xce\xfc\x8c\x24\x6d\x76\xee\xb6\ +\x25\xc9\xd9\xb9\x89\xb5\x9d\xbe\xfa\x61\x01\x4c\xfe\x8a\xdb\x6d\ +\x43\xe2\x12\x6a\x7d\x27\xad\x62\x44\x6f\xd9\x3e\x88\x3c\xd8\x86\ +\xba\x28\xbf\x6f\x56\x69\xcb\x18\x1b\x34\x1b\x15\xb8\x42\x42\x65\ +\x0c\x8c\x70\x07\x55\x6e\x38\x70\xf0\x22\xab\xf8\xd6\xb8\x53\xae\ +\x38\xb8\x69\xb5\xcf\xf9\x56\x8a\xdd\x51\xc5\x4a\xec\x36\x59\x56\ +\xd8\xcb\xa4\xc5\xf5\x30\xab\x18\x39\x4c\xc3\x33\x97\xb5\xbd\xf2\ +\x52\x0c\x1d\x5a\x1c\xc4\x22\x79\xe0\xd3\x78\x89\xb4\xd7\x7a\xd9\ +\xa7\xb4\x42\xed\x1f\xf1\xb6\xce\xd3\x1a\x63\x56\xe1\xfa\x25\x57\ +\x76\x00\xd4\xf2\x33\xa0\x91\xf6\x24\x67\xe3\xbe\x71\x37\x02\xe9\ +\x58\x6c\xc7\x20\x8c\x3a\xf1\x7d\xf0\x4e\xda\x5b\x23\xea\x3c\xb5\ +\x53\xf2\xb5\x71\xde\x10\xe4\x96\x44\xed\x46\xea\x61\xc1\xd0\x2d\ +\xf5\x31\xb6\x1e\x07\x94\x19\x9f\xf2\x60\xc8\x01\x45\xd2\xfd\xd1\ +\x22\xdc\x1e\xc7\xc0\x38\xec\xb4\x6f\x60\xe5\x36\x8d\x18\x3b\x83\ +\xb9\x42\x44\x20\x67\xf7\x39\xee\x82\x4e\x28\x3e\x5b\x79\xcf\x8e\ +\x93\x2f\xed\xad\x7c\x32\x7e\xe9\x63\x7b\xc4\x97\x6d\x3d\x63\x18\ +\xe3\xd9\x88\x3b\x91\x5e\x1c\x0b\x36\xe5\xe0\x9d\x1f\x08\x2c\x75\ +\x01\xf2\xa2\xc0\x2e\x53\x2c\x4a\x5f\x2d\x1a\x28\x22\xca\xe8\x09\ +\x39\x71\xd8\xd6\xb4\xfb\xff\xaa\x8d\xf1\xde\x4f\xce\x35\xa6\x73\ +\xfd\xd3\x75\x90\x97\x20\x8c\xf5\x6c\x43\xba\xf2\xe4\xe9\x93\xed\ +\xd9\x93\x47\xdb\x8b\x9f\x7f\x6f\x7b\xf1\xcb\xef\xeb\xda\xa1\x16\ +\xdd\xc7\xe4\x3e\xd3\xf8\x41\x7f\xea\xf4\xba\x7d\x86\xaf\xfd\x39\ +\x54\x52\xe4\x04\xc7\x50\xc9\xf1\x71\xb5\xbd\x78\x71\xbb\xfd\xfd\ +\xb7\xfe\x66\xbb\xbd\xfc\xd1\xf6\x95\x2f\xeb\xc0\xb8\xe0\x9b\x00\ +\x39\x9f\xf8\xb9\xec\xbb\xeb\x6d\xbb\xd6\xfc\xea\x8e\x9f\x1a\x14\ +\x9c\xff\x4f\xc5\xbc\xc3\x21\x6e\x67\x97\x3e\xaa\x7c\x3a\xa6\xcb\ +\x5e\xfb\xca\x99\xed\x17\x63\x83\xd5\x9e\x1f\x8e\xf2\x2d\x04\x26\ +\x76\x60\x54\xa8\x87\xa5\xc3\x9e\x4c\xb9\x23\xb5\xb3\x9e\x1f\xbd\ +\xf0\xcf\x75\xe9\x42\xcf\x5d\xe6\x37\xd2\x90\xd8\x8c\x05\xd1\x3d\ +\x8f\xd4\x92\xf3\x3a\xfa\x7c\x81\x86\x6c\x1d\x7f\x73\xb0\x7c\x0b\ +\xad\x16\xeb\xe9\x8f\x54\xc7\xe7\x67\x1e\x89\x0b\xee\xa1\xa7\x7c\ +\x6c\xa7\x39\x14\x65\x9b\xf9\xe5\x98\xff\xef\x59\x56\xae\x7d\x6c\ +\x7f\x30\x35\x6b\xd9\x76\xd7\x97\x29\x1b\xc0\xd5\x8a\x69\x23\x38\ +\x71\xb4\x99\xf6\x5d\x44\x3a\x2c\xed\x59\x92\x57\x41\x61\xf4\x66\ +\x6d\x79\x4b\x7e\xd6\x9c\xf8\x66\x61\xa4\x29\xe9\x6d\x60\x0e\x66\ +\x6e\xb2\xdd\xfe\xc4\x14\x94\x36\x90\xe2\xf4\x75\xea\x8d\x37\x77\ +\xde\xec\xdb\x30\x8e\x99\xf7\x3e\xab\x08\x57\xc2\x53\xbf\x9a\x9f\ +\x31\x2b\xbb\x33\xa8\xc4\x15\xbc\xc4\x82\x47\x22\x24\x6b\x71\xd0\ +\xc2\xdd\x0e\x4b\xef\x07\x53\xe3\xe2\xd8\x86\x46\x6c\xc3\x4d\x98\ +\xc6\x8c\x73\x36\x38\xd8\xf1\x2d\x47\xae\x44\x17\xbf\x86\xd6\xb0\ +\x37\xf1\x09\x90\x45\xfd\xd0\xb1\xc0\xb7\xe4\x75\x44\x94\xaf\x85\ +\x0a\xf7\x67\xe5\x49\xb1\xfa\xdc\x8e\xd5\xe1\x25\xaa\xb8\x77\xe6\ +\x17\x8d\xa8\x50\xab\xc8\xaa\x12\xa8\x1c\x8b\xe8\xde\x07\xf0\x5a\ +\xc4\x52\x91\x4d\x98\x28\x12\x8d\x3e\x99\x29\xba\x3f\x38\x82\xc7\ +\x4f\x11\x14\xc6\x91\x3a\xe5\x6f\xbc\x8c\xec\xab\xf4\xc2\x5c\xf1\ +\x36\x4c\x55\xdf\x7a\x4e\x12\xeb\x60\x85\xcf\x3a\x48\xfc\x89\x59\ +\x75\x22\xdd\x96\x8d\xf6\xa3\xc7\x2a\xc4\xa5\x83\xca\x69\x0f\x79\ +\x80\xba\x7d\xd8\x78\x8d\x99\x5a\x5c\xa7\xca\xf2\xc6\xb2\x60\x5b\ +\xf9\x0c\x13\x25\x0e\x9a\x5b\x50\x9a\xe1\xe9\x4b\x3b\xe0\x3c\x46\ +\xd5\x35\xe2\x15\x7f\x45\x4b\x0d\x5d\x13\xfa\x5b\x6a\x7e\xc4\xda\ +\x59\x42\x63\x5c\xaa\x9c\xee\x37\x69\x3b\xf5\xb0\xe7\xf8\xcd\xb5\ +\xce\xff\x4f\x8d\xf9\x13\xbf\x72\x23\x9f\xbf\x41\xa7\xcf\x23\xe9\ +\x4f\x9e\xdf\x6e\x5f\xfd\xcb\x8f\xb6\xff\xf6\x8d\xbf\xd6\xe5\xea\ +\xa5\xc7\xaa\xb4\x3b\x8e\x58\x97\x07\x1d\x74\xd0\x41\x07\x7d\x3e\ +\x74\xbc\x50\x3b\xe8\xa0\x83\xbe\x78\xea\x39\xa7\x27\x92\x51\x07\ +\x9d\xf3\x65\xae\x38\x7d\x9f\x96\xde\x7a\x9e\xa9\xc0\x47\x3d\x39\ +\x6d\x92\x75\xf1\x68\xbb\xe0\x7f\xc3\x7c\xf8\xf3\xed\xe5\x0f\xfe\ +\x79\x7b\xf6\xfc\xca\x3f\xf7\xc8\x43\x44\xa6\xd5\xdc\x50\xf3\x12\ +\xed\xf6\x86\x9f\xbc\xd2\x44\xf8\x8e\x9f\xc1\xd2\x44\x59\xb8\x5f\ +\xa6\x79\xd2\x2c\xd6\x64\x1e\xa9\x42\x1f\xe5\xf5\x8c\x5a\x34\x9e\ +\xfa\x34\xe9\xa6\xae\x1e\xe0\xb0\x78\x03\xc8\x06\x33\x6e\xb3\x6c\ +\x2d\xbe\x4f\x28\xdc\x72\xa1\x34\x31\x6f\x2c\xd2\xec\xd2\x3e\xfd\ +\xea\xbe\x9a\x63\xf3\xa4\x24\x36\xeb\xc3\x8d\x77\xaf\x93\xf8\x06\ +\xe6\xb7\xde\xe3\x53\x51\xf9\xca\xbf\xe4\x81\xc7\xb6\x90\x54\x51\ +\xb8\xec\xee\x43\xd9\xe8\xc6\xca\x37\xf3\x2c\x3e\x7d\xd0\xcd\x18\ +\x08\x43\x85\x89\x3b\xee\x54\x36\x57\x58\x08\x5d\x62\x6c\x35\xe3\ +\xe4\x88\xda\x6c\x2a\xdf\xb8\x29\x93\xda\xb9\xd6\xf8\x95\x94\xa9\ +\xb0\xc8\x8e\x35\x95\x34\x7e\x8f\x2b\xbe\x59\xc5\xeb\x98\xa0\xf3\ +\xb6\x8e\x0f\xdb\x91\x93\x1b\x9f\xba\xcd\xd5\x2e\xee\x5c\xad\xb0\ +\x3d\xc3\xc1\xcd\x63\x89\xcd\x2e\xcb\xff\x59\x21\x97\xb6\x2e\x32\ +\x19\x26\xab\x40\x9a\x0a\xec\x2c\x6c\x61\x57\x33\x1e\x65\x17\x7b\ +\x4e\x16\xd9\xa4\x10\xbb\x0d\x27\x19\xd0\xc3\xac\xc2\x5c\xb6\xc9\ +\x0a\x47\xc7\x79\xe6\x86\x79\xc7\xb5\xbe\x7f\x28\xf3\xd5\x8a\xe4\ +\x53\x33\x4d\xab\xee\xf6\xd6\xbe\xaa\x8e\x15\x0a\xfa\x86\x90\x3e\ +\x03\x06\x19\x3a\xc1\xce\xd2\x12\x93\xbd\x72\x2f\x55\x80\xde\x1c\ +\xa2\xf8\x3b\xb6\xca\xae\xb4\xc8\x56\x21\xfb\x6b\xc3\x77\x3b\xb1\ +\x83\xdd\x63\x15\x39\xa7\x93\xbb\xf7\x6f\x70\xc3\xe5\x2b\x4e\xa5\ +\x81\x75\x8e\xe6\xce\x65\xf6\x81\x97\x17\x41\xd1\x4f\xfc\xcd\xf8\ +\xad\x27\xa6\x79\xc4\x3a\xaf\x04\x27\xc2\x88\x6d\x4e\x1d\xf7\x0d\ +\xee\x71\x0e\x1f\xba\x25\x63\xe5\x8c\x69\x7d\xc5\x62\xf3\x89\xc4\ +\x17\x05\x15\xc9\xd5\xc1\xc2\xec\x4b\x84\x0a\xe2\xe3\x09\xe7\x3a\ +\xd2\x94\xfa\xb6\x9d\x22\x76\xe3\x91\xdd\x76\x73\x8d\xe9\xd2\x5f\ +\xf1\xe2\x43\xd7\x86\x8d\x6f\xaa\x15\x76\xa1\xf8\xcb\xcb\x47\xdb\ +\xb3\x27\xcf\xb6\xa7\x77\x1f\x6e\xbf\xfc\x87\x6f\x68\xfd\xae\xb3\ +\x7d\xfb\xf6\xc4\x69\x29\x0e\xfa\xb3\xa6\xde\x85\x2d\xe7\x61\x26\ +\x5e\x8e\x32\xed\x6b\x1f\x89\x9a\x43\xdc\xdc\x7d\xb4\x7d\xff\xdd\ +\xff\xdf\xf6\xf5\x7f\x7b\xb9\x5d\x3d\x96\xf3\xd1\x8d\x7c\x8a\x55\ +\x3c\xc7\xd0\x35\x7f\xb5\xff\xe2\x71\xfd\xfc\x1d\x2f\x99\x90\x9c\ +\x2a\x1c\x59\x34\xc4\x71\x96\xdc\x08\x0e\x23\x37\x7f\x66\x5e\x45\ +\x4e\xba\x41\xfe\xcc\xa1\x98\xc1\x45\xf2\xe2\xcc\x7e\x66\x75\x7e\ +\x89\x86\x2f\xfe\xaa\x91\x1c\x70\xb5\x67\x72\x7b\xdd\x16\x1a\x3a\ +\xcc\xdc\x07\x01\x42\x1f\x3d\xa0\x88\xf3\xb0\x34\xe7\x50\x9d\x37\ +\x96\x27\xba\xcf\x9f\x9a\x3f\x61\x3b\x4b\xd6\xbf\xcf\x37\x50\x30\ +\xc7\x99\x89\x62\xfb\x90\x47\x92\x61\xc4\x63\x10\xdd\xe0\x7a\x12\ +\x7c\xf8\x1a\x23\x87\x6d\xe9\x92\x7c\x13\x8d\xbd\x80\xc7\x31\x7c\ +\x33\x8d\x3a\xae\xeb\x55\x62\xf5\xac\xfb\x6f\xa4\xaa\x4d\xbf\x68\ +\xb7\x5d\xb9\xb0\x89\x95\xa4\x4e\xb0\xd8\xe0\x7d\xbd\x4b\xbb\xf1\ +\x65\x3c\x6c\x7f\xe7\x08\x4f\x3b\xeb\xdf\xb1\xee\x7b\xf5\x27\xed\ +\x75\x5e\xf6\x55\xda\x1b\xf1\x5a\xe8\x9f\xa9\xe2\x9d\x12\x7d\x42\ +\x83\x56\xbd\xc9\x97\xd6\x66\xd9\x48\x77\xd9\xc6\xc3\xec\xf8\xea\ +\x67\x98\x7e\x45\xcf\x36\x13\xb7\x5c\x59\x58\xe7\xef\x6d\x30\x8e\ +\x93\x0a\x22\xa6\x25\xd0\x68\x0f\x66\xc1\xb7\x62\xe6\xc2\x13\x1e\ +\x72\x47\xf8\x14\xe2\xb8\xc9\x86\x61\x53\x19\x65\x73\x56\x0c\x97\ +\xa9\xac\x0a\x5b\x94\xa1\xad\xfc\x89\x68\xad\xe0\x04\xeb\xba\xd4\ +\x79\xba\xa3\x3a\x16\x06\xc9\x48\x70\xd4\x96\xb8\x56\x07\x64\x9c\ +\xfc\x92\x1c\x53\xf7\x72\x8b\x1c\x9a\x78\x87\x98\x52\x07\x58\x47\ +\xa3\x94\xf3\xf5\x2a\xc4\xc4\x3a\xec\xa3\xba\xdd\x0a\x0c\x34\x85\ +\x71\x8e\x75\x43\x91\x71\xe4\x13\x61\x05\xe9\x32\xca\x42\x6a\x11\ +\x78\xe0\xe9\x81\x4d\xea\x95\x6f\xd5\x3b\xbe\xf3\x19\xc2\x6f\x59\ +\xba\x03\x01\xda\x46\xad\xa5\x31\x2d\x8c\x1f\xb1\x73\x9c\xcb\x34\ +\x8e\x1a\xc3\xc0\x88\x6f\xdf\xce\x46\xd7\x89\xc9\xe2\xf8\x96\xfe\ +\x60\x43\xac\x17\x56\xf6\x06\x34\x3d\x53\xf3\xda\xb3\x49\x7c\x3d\ +\xc0\x4a\xbd\xcc\x57\xea\x9a\x50\xd7\x0f\xfb\xb8\xa8\x48\xba\x59\ +\xd1\x6c\x0f\x9a\x96\xbb\x03\xc7\x9a\xb6\x56\x9a\xf5\xe6\x85\xda\ +\xcd\x0d\x2f\xd7\x6e\xa4\xd7\xb9\x4d\x7b\x6a\xe6\xf2\xe2\xf9\xf6\ +\x95\xaf\xdf\x6d\xbf\xfe\xe0\xef\xb7\xdf\x7f\xfc\x53\xc5\xdf\xba\ +\x57\xc9\xd6\x6d\xa4\x3c\xe8\xa0\x83\x0e\x3a\xe8\xb3\x27\x46\xfc\ +\x83\x0e\x3a\xe8\xa0\x2f\x96\x98\xeb\x65\x06\x78\x9f\xda\xd7\xfe\ +\x3f\x74\x5e\xd8\xf5\xd7\x9c\xaf\x25\x55\x70\x1d\x64\x74\xcf\x91\ +\x55\xd9\x0f\x2b\xae\x1f\x6d\xbf\xfb\xaf\x7f\xa3\x59\xed\x87\xdb\ +\xb3\x8b\x27\xdb\xe5\x15\x3f\x13\xc4\x14\x9c\x49\x31\xfe\xfe\xb9\ +\xc7\x9b\x3c\x00\xd1\xc4\xd8\x2f\x9c\x96\x17\x51\xcc\x98\x3d\xe9\ +\x2f\xae\x06\xf7\xa4\x36\x33\x37\x67\xb2\x1e\xbd\x5f\x9c\x21\x1d\ +\x52\x52\x5a\xe2\x90\xc5\xe3\x21\x02\xe4\x36\xaa\x15\xaf\xd3\xca\ +\x99\xac\x4f\xa6\x7f\x5a\x8f\xea\x67\xfa\xcc\x37\xd2\x78\x69\x76\ +\x63\x9f\x6f\xde\x89\xd1\x3a\xc9\xb0\x9e\xf5\x2a\xdc\x52\x38\x2d\ +\x3a\xbf\x1f\x81\x95\x8e\x4c\x1d\xdb\x96\xb4\x1b\x8e\xaf\x64\xdb\ +\x85\x99\x17\xcc\xe9\xc5\x5e\xb1\xc6\xca\x34\xd9\x3f\x2c\x91\xb6\ +\x07\x98\x34\xf3\x9a\x03\x72\x0e\x64\xb0\x81\x43\x8d\xed\xf4\xdc\ +\x38\x19\x2b\x52\x06\x2f\x65\x54\x9e\x0a\x32\x5c\xfb\xa4\xa8\x61\ +\x42\x66\x0c\x94\xbe\xcc\x07\x41\xf7\x39\xfe\xfb\xf6\x9e\xfb\x58\ +\xe8\x7c\x33\xef\xde\x3e\xa7\x37\x4f\x0c\x25\x7f\xb1\x9e\xe3\x2c\ +\x2c\xbc\x3a\xd0\xfd\x9d\xfb\x0a\x57\x7c\xf1\x17\xa6\xdd\xde\xbc\ +\xb8\xed\xef\x87\x75\x70\xa5\x0d\x7b\x59\xb0\xa8\x46\x1d\x5b\xf6\ +\x90\x2a\xda\x0e\xd1\xd7\x13\x22\xe0\x94\x8b\xbc\x9e\x3c\x40\xac\ +\xf5\x1d\xfd\x38\xc7\x39\x9c\xc3\xe7\xfc\xaf\xe1\xd3\x76\x07\xe1\ +\x47\x20\xdd\x7e\xfa\xb0\x6e\xf2\x70\x01\x7e\x88\x80\x96\xd8\x90\ +\x10\xc0\x95\x12\x14\x62\x77\x9d\xf8\x4f\xc3\x07\xd9\x31\xb7\xe1\ +\xbd\xb8\x73\x79\x0a\x9b\x6d\x9c\x0b\x9a\xfe\x19\x46\xc7\x90\x25\ +\x90\x29\xe2\x6e\x15\xd9\x00\xdb\x9e\x25\x40\x30\xeb\x25\x0c\x15\ +\xe0\xb8\x8a\x2d\xf6\xff\x7d\x03\xab\xc5\x1f\x07\x38\xf1\xa8\xe3\ +\x4a\xe6\xae\x1b\x1c\x15\x20\x75\xc3\x9c\x07\xda\x1b\xf6\x18\xb3\ +\x0f\x35\x75\x3a\x0e\xf6\xd8\x48\xed\xd6\x2d\x13\xdf\x07\x57\xd7\ +\xc9\x78\xba\xd6\x2d\x1e\xf5\xd3\x9e\x45\x1d\x17\xa1\xd6\xe8\x57\ +\x5d\x33\xfc\xa9\xfd\x3a\xae\x29\x45\x4e\x84\x2c\x1d\xe9\x73\x3b\ +\xb6\xbd\x31\x24\x60\xf5\x91\x3f\x1e\xe1\x2b\x30\x5c\x07\x75\x3d\ +\xf4\xf8\xcf\x35\x41\xfe\x4b\xa5\x7f\xf2\xf8\xd2\xf2\xe3\x5f\xfc\ +\x78\xfb\xf8\xbd\x9f\x24\xe7\x19\x3a\xe9\xc9\x41\x7f\x2e\xd4\xfb\ +\x13\xf9\xd0\x4e\xec\x18\xff\xef\xb4\x2b\xff\x65\xfe\x4f\x7e\xf6\ +\xdd\xed\xf6\xf2\x27\xdb\x97\xbf\xf6\x72\xbb\xbc\xb8\xf2\xff\x8a\ +\xe5\x78\xcc\x0b\x9c\x6d\xbb\xd5\xdc\x8b\xc3\x8a\x79\x06\x76\x4e\ +\x11\x1a\x90\x22\xd1\x63\x9e\x9b\xf5\x31\x39\xc9\xa7\xb6\x8f\xed\ +\x7a\xf0\xd9\x0c\x66\x3c\xb2\x7f\xda\xb1\x5f\xac\xad\x2f\xd2\x46\ +\xdc\x8e\x27\xf5\x59\x16\x59\xe7\x83\x5f\x9a\x35\xaa\x39\x20\xe7\ +\x87\x7d\x48\x7c\x9c\x17\x9c\x23\x39\x3f\x22\xc3\x5e\x86\xcd\x19\ +\x8f\xcd\xb6\xc0\x26\xe3\x6a\x4b\x6a\xa3\xb0\x35\x3b\x9e\x6d\x4a\ +\x20\x02\xdc\x8c\xce\xb4\xad\xb6\x5d\x42\x90\xc4\xc1\xbc\x9c\x14\ +\x56\xb1\xf8\x29\x6c\x93\xff\x56\xfb\x40\x4c\x1d\xfb\xe9\x85\xa4\ +\xff\x68\x26\xa1\x29\xf8\x98\xd3\xbe\xfb\x67\x8e\x9e\x00\x44\x72\ +\xf5\x7c\x21\x53\x4a\xc9\x24\x8f\x6e\x46\x9f\x4c\x31\x74\x37\x3c\ +\x7d\x83\xc9\x99\xce\x99\xc1\xe8\xa7\xdb\x55\x81\x9d\x3e\x60\x0f\ +\x21\x92\xaf\x1d\xbb\x84\xf7\x39\x71\xa1\xd5\xc2\x3d\x62\xac\xa3\ +\xd6\xba\x4a\x77\x97\x74\xfc\x20\x13\x06\x4e\xec\x00\xca\x46\x9d\ +\x92\x6d\x88\xd1\xb1\xc3\x97\x26\xa2\x97\xdd\x20\x36\x4a\x96\xf2\ +\x41\x65\xa8\x65\xcb\xae\x6b\x0a\x24\x0e\x30\x72\x56\x09\x0d\x5b\ +\xce\xb5\x2e\xa2\xd4\x73\x8a\x48\x7a\x07\xb9\xd2\x62\x17\xb5\xd9\ +\xee\xe9\x6b\xa5\xc0\xc5\x74\xec\x72\x4a\xee\xfb\x33\xcf\x59\xaf\ +\x2f\x44\x1d\x04\x85\xc7\xa1\xa6\xd4\x68\x4a\xca\x3e\x6e\x9a\xca\ +\xb0\x58\x1a\x6d\x02\xd7\x75\x57\x9f\x93\x7a\x98\xc4\x2f\xe0\x50\ +\x2b\x7e\xc9\xd7\xdb\x1f\x91\xf5\x19\xc1\xc1\x24\xfa\xbc\x23\x6f\ +\xef\xe1\xd8\xc5\x32\x52\x17\xbd\x31\xd6\x67\xe9\x07\xb8\xe3\xc2\ +\x00\x5d\xc6\x24\x80\xc0\x08\x9b\xc4\xda\x6f\xc4\x98\x46\x9e\xc2\ +\xe3\x6f\x1c\x64\xc4\x97\xcf\xb8\x65\x63\x29\x9c\x83\x85\x71\xcc\ +\x9e\x25\x1e\xbd\x17\xbb\x32\xd6\x35\x5e\x3d\xa8\xd8\xd6\x5d\x7a\ +\x81\x2c\xad\x66\x4f\x58\xc3\xe6\x1c\x04\xf1\x76\x09\x55\x58\x7c\ +\xbe\x3e\x40\x2a\x7d\x2d\xe0\x5a\x72\x7a\x7d\xc8\xf5\xc5\xfb\xc2\ +\x95\x3b\x07\x58\xc8\xe9\x60\x15\x63\xbd\xc4\x39\xb7\xf5\xd1\xa0\ +\xe0\xb1\x56\x36\x7f\x44\x22\xc0\x2f\xd8\x8c\xe9\xda\xc7\xb5\xed\ +\xf2\xf1\xf5\xf6\xe4\x4b\x1f\x6c\xdf\xf8\x87\xff\xb0\x5d\x5e\x2a\ +\x87\xc7\xf3\x35\xfb\x41\x07\x1d\x74\xd0\x41\x9f\x17\x31\xd2\x1f\ +\x74\xd0\x41\x07\x7d\xf1\xf4\xba\x39\xdf\x43\x73\xc2\x4f\x32\x4f\ +\x64\x6e\xbb\xca\xb7\xa6\xaa\xb0\xb6\x65\x5d\x13\xe2\xdb\xeb\xed\ +\xe5\xf5\xaf\xb7\x8f\x7e\xfe\xdd\xed\x9d\x27\x4f\xb6\x67\x97\xc2\ +\x98\xc8\xd6\xc3\x42\xfe\x22\xff\x56\x31\x77\x77\xd7\x9e\x14\x4b\ +\x91\xe4\x45\x5a\x3d\x38\x11\x96\x09\x34\xbe\x92\xe6\xd1\x48\x84\ +\xbb\x40\xb1\xae\x44\xe9\xf5\x50\x27\x7f\x35\x8d\x6c\xcc\xf0\xe8\ +\xb6\xa7\xef\xe4\x2e\x1a\x6d\x09\x77\x1f\xec\x4f\xbf\x23\xbd\x22\ +\x53\xe7\xa1\x55\x3d\x79\x71\xff\x65\xd3\x67\x63\xf4\xdd\x36\xeb\ +\x94\x1c\xd4\xe9\x17\x86\xf6\x91\xd7\xfa\x12\x4f\x5c\xe9\x91\xc4\ +\xd0\xc4\xf4\xf7\x76\xe9\xfe\x3a\xa6\x74\x73\xf9\x65\x84\x89\x19\ +\x2c\xb3\x73\xe2\x86\x12\x12\x9b\x82\x4d\x25\x99\x1c\x50\x64\xda\ +\x4b\x88\xbc\x03\x37\x15\x7e\xcf\xd3\x8a\xfd\x95\xb3\x02\x6c\x0f\ +\xc3\x51\xb1\xec\xdb\xf3\xf0\x65\xaf\x05\xd7\x3a\x74\x40\xe7\x4e\ +\xcc\xe4\x26\x87\x95\x7e\x9f\x4e\xa3\x43\xc9\x36\xbd\x33\x42\x1a\ +\x09\x17\x22\x36\x4b\xc7\xd6\x42\x9f\xbc\xef\x84\xf5\x36\x07\xab\ +\xea\x65\x9e\x67\xfb\x92\x03\x60\xac\xa3\x1d\xe1\xd6\x2d\x51\x4b\ +\xb7\x49\xd1\x5c\xb4\x8b\x5f\x70\x53\xe1\xf7\xb8\xdc\x50\xb6\xbf\ +\x98\x9b\xdf\xe5\xa6\xda\x37\xc3\x6f\xe2\xaa\xeb\x33\x4f\x76\x0e\ +\xb4\x37\x71\x88\x3e\x98\xbb\x4f\xcd\x85\xa7\x28\xec\x4e\xf5\x9c\ +\xff\x84\xc0\x60\x9e\xc8\x14\x67\x39\xa1\x15\x68\x9d\xaa\xe8\xe2\ +\x86\xca\x7c\x23\xbd\x29\x8e\x97\x39\x0e\xa0\x0d\x96\xee\xbb\x30\ +\x6b\x4e\xd0\x47\x3e\x94\x3e\xef\x7a\x6e\xb5\xf0\x38\xa3\x18\x47\ +\x2f\x01\x56\xe3\x45\xdc\x48\x9c\x9c\x4c\x50\xe9\x3a\x58\xfb\xa7\ +\x0a\x13\x2b\xc9\x98\x94\x4a\x26\xfb\x4f\xd9\xe7\x64\x54\x28\xf1\ +\xc3\x30\x73\x3e\xd4\xa3\xe5\xe1\xcf\xb9\x51\xb1\x0b\xd3\x06\xb8\ +\x97\xc2\x32\xde\xa5\x2f\xbe\x66\x48\xe6\x67\x6e\x71\x97\xaf\xc7\ +\xcf\x25\xc6\x01\x5e\x07\x71\x75\xd2\x78\xe9\x96\xa6\xbe\x0d\xc8\ +\xb5\xa3\x51\x13\x3b\x64\x07\x94\xe9\xfa\x4d\xe8\xe1\xb4\x5b\x4c\ +\xbf\xdd\x4f\xf5\xa3\x7e\xea\x78\xfc\xfc\x31\xdf\xea\xe6\xa5\x9a\ +\xb0\x0b\xb5\x71\x75\x75\xb1\x3d\x7b\xf6\x64\x7b\xf4\xf1\x07\xdb\ +\xaf\xbf\xfb\x8f\xdb\x76\x73\x3d\x8e\x8f\x95\x4e\xed\x83\xfe\xc4\ +\xe8\xa1\xdd\xc3\x71\x04\x37\x9d\xc6\xe9\x78\x71\x08\xfb\x5c\x9c\ +\xf9\xc5\xcd\xf6\x9d\x6f\xff\x2f\xdb\xd7\xff\xf2\xe5\xa6\xa9\x95\ +\x8f\x2d\xd8\xa7\x03\xc7\xd2\xcd\xab\xed\xfa\x9a\xb1\x55\xba\x31\ +\xb1\x73\x4d\x19\x42\x51\xbd\xd2\x28\x69\x8d\x85\x4e\xcd\xf9\x92\ +\x58\x12\x95\x97\x66\xf9\x39\x47\x7e\xf2\x11\x49\x34\xf3\x2b\xf4\ +\xf6\xe5\x41\x69\x48\x72\x6d\x8f\x8f\x6d\xda\x8a\xe1\x73\xa3\x1e\ +\xd2\xab\xc7\xe3\xf8\x77\x84\x25\x7f\x70\x55\xba\xd7\x33\x58\xec\ +\x70\x9f\xcf\xe3\xa5\x19\xf1\x7e\x09\x87\x2d\x76\xfd\xd2\xc5\x74\ +\x01\x9b\x85\x6d\x24\x43\x2d\xf3\x62\x8d\x53\x33\xb1\xb9\x5e\xa5\ +\xbf\x8e\xb4\x4e\x2e\xfa\x89\x2f\x75\x69\x1e\x5f\xbe\xcd\x16\xdb\ +\xff\x37\xcd\xf5\xfa\xa5\x5b\x72\x62\xa4\xdd\x48\x86\xfc\xe4\xab\ +\x7e\xd9\xdf\x5c\xb6\xff\x48\x85\xfc\xb2\xbd\x9e\x18\xc2\x9d\x6c\ +\x89\xcd\x6a\x18\xa3\x48\xfd\xe0\xed\x8c\x5b\x25\x81\x2b\xc7\x5d\ +\x61\xa9\xe7\x36\xbc\x4e\xec\xc3\xc4\xcd\x6d\x13\x7b\xa4\xaa\x6d\ +\xf0\x66\xee\xba\xdd\xa0\x2a\xd2\xa3\x6a\x07\x28\xdb\xb4\xdb\x91\ +\x9b\x90\x6c\xcc\xd8\xae\xe7\x6a\x03\x0b\x27\x7e\xd4\x43\x9f\x61\ +\xe1\xc5\x98\x18\x86\xea\xb0\xac\x75\x47\x00\x9f\xc5\x27\x62\xbf\ +\x75\x0c\xbe\x0a\x1a\x7e\x8b\xb1\xdd\x02\x8c\xba\x11\x89\x69\x6a\ +\xa3\xe3\x52\x18\x6a\xc2\xf2\x74\xc5\x9a\x78\xc9\x0d\xef\xf2\xb6\ +\x2f\x45\x11\x7a\x98\xd8\xf4\x67\xd6\xca\x76\x68\x2b\x85\xf7\x7d\ +\x93\x6c\x5b\xec\xa7\xda\x00\x8e\x73\x32\x14\xc4\x12\x5f\x7a\x5c\ +\x15\x5b\x71\x6f\x4d\xea\x53\xfa\x39\xa9\x6d\x32\x66\xa1\x1d\xf1\ +\xbd\x06\xa4\xfb\xc3\x82\xd9\x76\xd4\x91\xfb\x94\x53\x84\x0a\x73\ +\x1b\xde\x9f\x81\x20\x30\x67\x2e\xc0\xe9\xcb\x34\x57\xf2\xe8\x29\ +\x86\xde\x52\x9c\xe3\xaa\x98\x91\x60\xb5\x8d\x39\x68\xe8\xc8\xd5\ +\xe6\xf4\x80\x38\x45\x60\xeb\x46\x13\x67\xaa\x78\x3c\xa9\x45\x6c\ +\x34\x8f\x9f\xf8\x86\x4d\x4d\x64\xea\xa2\xf3\xa1\xee\xa4\xc6\x12\ +\x83\xf4\x21\x01\x69\x33\xb1\x47\x66\xd1\xcc\x58\xd8\xd7\x86\xc8\ +\xde\x77\xd9\x96\x22\xd2\x02\x15\x55\x17\x42\xf8\xb0\x8b\x23\x32\ +\x06\xb3\x2e\xfc\x2f\xb5\x17\xfc\x51\x12\x63\x87\x7d\x17\xdb\xdd\ +\xa3\xdb\xed\xf1\x93\xcb\xed\x9d\xaf\xff\x7e\xfb\xe9\xbb\xdf\xdc\ +\x7e\xf3\xdb\x1f\xeb\xfa\x54\xdb\xa0\x1a\x4a\x49\x8d\x83\x0e\x3a\ +\xe8\xa0\x83\x3e\x6b\x62\xb4\x3f\xe8\xa0\x83\x0e\xfa\x62\x69\x99\ +\x5c\x7e\x2e\xf4\x87\xe4\x67\x76\xbb\xd6\x6f\x5d\x33\xeb\xdf\xbf\ +\xbc\xdc\x7e\xf1\x3f\xff\x66\x7b\xbc\x7d\xb8\x3d\x79\xfc\x58\x93\ +\x58\xe1\x35\x71\xe7\x27\x1e\xef\x6e\xae\xb7\x5b\x1e\x0e\xde\xd5\ +\x43\x90\xbb\x7a\x99\x86\xcd\xcf\x23\x32\x29\xd6\x04\xd9\x32\x33\ +\x66\x55\x15\x93\x86\x36\x68\x5b\xe4\x87\x3f\x7c\x2c\xe6\x43\xa0\ +\xfc\x34\x51\x7c\xa6\x38\xa2\x0e\x10\xaa\x9b\x22\x41\xce\x9d\xe4\ +\x69\x0b\xc3\x72\xb9\xc9\xa9\xfe\xcc\x9b\x10\xa4\xd8\x78\x1e\x8e\ +\xf6\x43\xdc\x60\xd4\x6d\x8c\xb8\xe6\xe4\xf6\x83\x62\xfb\xea\x46\ +\xc0\xb1\xc1\x54\x14\x83\xc7\xe7\x3f\x4b\xb6\x5f\xcc\x0d\x0e\x7d\ +\xa8\x5c\xcd\x11\x91\x5e\x29\xe7\x05\x1c\x21\xc1\xad\xab\x70\x1a\ +\x0c\x6d\x06\xe3\xd1\xa7\x2c\xf6\x76\xab\xfc\x98\x03\x2f\xb5\x70\ +\x7a\x86\xde\xbe\x41\xf6\x4f\xb0\x43\x06\xab\x68\x19\x8a\xc7\x7d\ +\x2b\x7d\x6e\x16\xe1\xb5\xfa\xa3\xde\xca\x60\xe7\xf8\x75\xbe\x07\ +\x98\x4a\x2d\x9b\x4f\x63\x9a\xd7\x98\x95\x77\x7d\x3d\xc3\x89\x8b\ +\x91\x7d\x77\xca\xfb\x58\xeb\x4b\xb5\x60\x01\x2d\xa5\x8c\xba\xeb\ +\x62\xbf\xc3\xee\xb3\x8a\xf6\xdd\x27\x4e\x10\x9d\x2b\xfd\x2d\x34\ +\xad\xcf\x7a\xcf\x1e\xce\x4d\xb1\x19\xbb\xf4\x09\xee\x99\x98\x96\ +\x67\x79\x17\x4e\xee\x70\x8e\xc3\xe6\x3d\x39\xb6\xea\x42\xd9\xee\ +\xf7\xe3\x4c\xe0\x27\xbe\x6e\xef\x2c\x2d\x8e\x73\x31\xd9\xc2\x4d\ +\xe4\x2e\xf5\x24\x78\x98\xa7\x49\x64\x8f\x97\x6a\x25\xf6\x25\x94\ +\x6d\xcc\x4a\xb2\x9e\xeb\x86\xb2\x0d\x95\x3d\x40\xdb\x2d\xdb\x57\ +\x50\x8a\xc2\x94\x93\x7d\xda\xe3\x8a\x31\xd4\x8e\x69\x36\xf8\x1a\ +\x9b\xfa\xcd\x85\x29\x67\x1f\x8f\x8d\x59\x78\xec\xea\x38\x62\x4a\ +\x87\x6a\xdc\x1a\x4b\xc5\x24\x0e\x3d\xec\x98\xca\x93\xff\xad\x14\ +\xdb\xec\x98\xca\x3b\x62\x0a\xc7\x76\x8c\x7c\xac\x04\x78\x5a\x16\ +\x71\x5c\xc4\xca\xf5\x62\x96\x1c\x32\xfe\x86\x9e\xf6\x95\x2f\x31\ +\x0e\xa3\x28\x26\x77\x4b\x72\x4b\xf6\x99\xd1\x6d\xf7\xf5\xc0\xe3\ +\x3d\xff\x50\xbf\xae\x01\xfe\x43\x13\xd9\x19\xff\xeb\xa7\x1f\x2f\ +\x2e\xb6\xab\xbb\x8f\xb7\x8f\x7f\xf8\xfd\x6d\xfb\xe0\x3d\xc5\xd2\ +\x0f\x6e\x51\xc8\x19\xa2\x5f\xf4\xef\x33\xa3\x99\xfa\xa0\xcf\x82\ +\xde\xb4\x73\xf0\xb3\xcd\x5b\x96\xda\xc4\x91\x79\xb1\x5d\x6e\x2f\ +\x35\x77\xfa\xe1\x8f\xff\x7e\x7b\xf1\xe8\x9b\xdb\x57\xbf\xa4\xa3\ +\x80\x9f\xd1\xce\x01\xe8\x28\x0e\x9b\x97\x2f\x5f\xe5\xaf\xf4\xb1\ +\xcb\x85\xf0\xe1\x08\x2b\x71\xd7\x18\x54\xf3\x23\x1f\xdf\x2e\x13\ +\x13\xb4\xfb\xa2\xd2\xf3\x2a\x1d\x7b\x96\xd8\x79\xa9\x86\x8d\x3f\ +\x35\xa1\x55\x0f\xb9\x0f\x5d\xba\x23\xee\x61\x31\xa7\x00\xb8\x74\ +\x71\xff\xcf\xb7\xf1\x32\xcd\xe3\x47\xc5\xf2\x40\x54\x15\x6c\x49\ +\xe1\x05\x5a\x73\xd7\xcf\xcb\x34\x4e\x6f\xfc\xe8\xed\x4f\x9d\xd8\ +\xb7\xf9\x66\x9a\xa2\xd9\x26\x7e\x21\xc6\x69\xe7\xd3\x91\x17\x62\ +\xf8\xf0\x8a\x55\xd0\x8b\x9c\xbf\x02\x7c\x7a\x02\x92\x8f\xba\x09\ +\xe4\x5a\x83\x8e\x2b\x2f\xd8\xd2\x1f\x80\x47\xf5\x62\x0c\xa6\x7e\ +\xe2\x97\x9c\x8e\x0f\x6e\xa5\xa4\xfd\xd5\x88\x61\x4b\xb0\x0a\x73\ +\x4c\xe7\x9b\x9c\xfa\xfa\x54\x5f\x83\x01\x94\x38\x61\x28\xe3\x28\ +\x12\x8c\x36\x52\xcf\xd7\x76\x71\xfa\x88\x04\x0b\x8f\x15\x7e\x90\ +\x49\x1c\xbe\xef\xd6\x08\x37\xfa\xb7\x38\x46\xb0\x3f\xe2\xea\x47\ +\xa5\x6a\xa5\x43\x03\x4e\xd5\x2c\xe7\x2e\xa7\x58\xbd\xb7\xdc\xb7\ +\x55\x22\xea\x80\x5d\x9f\xc5\x46\xf9\xda\x5f\x16\x4b\xa9\xad\x05\ +\xeb\xba\xd8\xe8\x54\xb2\x5e\x71\x76\xf0\x69\xdf\xca\xa7\x56\x68\ +\x3d\x9b\xd0\xbd\x2e\x4b\xd4\x1a\x3b\x68\x05\x77\x01\xf3\x9a\xb4\ +\xcf\x34\x83\xf2\x2d\x55\x94\xf0\xae\xfd\x19\x36\xc9\x71\x7b\x47\ +\x8f\x25\xa1\xde\x1e\x4b\xde\x26\xeb\x0d\xac\x35\xa2\xf7\xf6\x83\ +\xd6\x7e\xb8\x8e\x7c\xdd\xef\xb1\x7d\xa1\xd6\x29\x1c\xd3\x86\x4d\ +\x73\x28\x86\x6d\xb3\x74\x5f\x9b\x67\x1d\x7c\xbb\x7e\xfb\x1c\x00\ +\xe4\x7c\xc0\x8f\x1e\x77\xfc\xe5\x2e\x1d\xf2\x78\x42\x2c\x4b\xe9\ +\x8c\x54\x56\x09\x73\x11\x99\x71\x6b\xe6\xed\xbe\x74\x5b\x05\x3b\ +\x18\xdb\x79\x32\x28\xd9\xb6\x17\xbd\xea\x54\x68\x15\xc4\x51\x03\ +\x6d\xd4\x4c\xb9\xd4\x9d\xd2\xda\x52\x3f\x79\xa7\x0c\xad\x7a\xac\ +\x5c\x03\x7a\xb1\xed\x63\xaa\x5f\xaa\x35\xf5\x76\x5d\x31\x99\x95\ +\x70\x76\x25\xeb\xe6\x65\xd8\x1c\xbb\x77\xdb\xcd\xad\x4a\x8d\x43\ +\x9a\x3e\xd5\x75\x24\x95\x2e\x74\x7d\xba\xbc\xdc\xb6\x67\xcf\x2f\ +\xb6\xe7\x5f\x79\x7f\xfb\xd6\x77\xfe\xb3\x2e\x59\x2f\x75\xfc\xea\ +\xba\xd9\xf9\xc5\xfb\x96\x0f\x3a\xe8\xa0\x83\x0e\xfa\xac\xe8\x78\ +\xa1\x76\xd0\x41\x07\x7d\xf1\x54\x93\xbe\xb7\xa6\xd7\xc5\x33\x6b\ +\x3c\x9d\x39\x76\x3c\xf2\x13\xb5\xa5\xe0\xbe\xe1\x6a\xe1\xfa\xdc\ +\x60\xdc\x6d\x97\x77\x1f\x6e\x2f\xbe\xfd\xcf\xdb\xd3\xa7\x17\xdb\ +\x53\xbe\x9d\x56\x7e\x26\xbb\x77\xfc\xdf\x34\xfe\x1a\x9f\x17\x6b\ +\xfc\xe4\x15\x0f\x12\xfd\x40\x51\x3e\xdb\x9a\x10\x63\xb3\x14\xde\ +\x13\x64\x73\xcf\x84\xc7\xba\xcc\x15\xcb\xc4\xbd\x34\xa9\x79\xb1\ +\x56\x50\xfb\x2c\xe8\x13\x4a\xe5\x3a\xcd\x2f\xee\xc9\x7b\xdb\xea\ +\xa4\x64\xdd\x8c\xd0\x27\xfa\xea\x97\x7f\x62\x30\x6c\xfb\xe0\x3c\ +\xc4\x69\x9b\xfa\xc1\x8b\x85\x4b\xc9\xe4\x9f\x17\x71\xbd\xce\xc4\ +\xb6\xdf\x76\xf0\xb4\x8d\x5e\x7d\x75\x8c\xec\x13\x56\x31\xb9\xb6\ +\xdb\x84\x5a\x49\x0e\xd4\x5e\x3d\x4b\x0b\xca\xe8\xaa\x1e\x5f\x91\ +\xd5\xb2\x27\x5e\xdb\x14\x5b\xec\x36\x4e\x88\x9c\xc0\x96\x01\x46\ +\x9b\xa6\x55\x6f\x2a\xcc\x71\x6a\x82\x1b\x27\xff\x04\xd1\x29\x11\ +\x83\xa8\xd8\xb4\x03\x9f\x2c\x72\x64\x69\xff\x64\xa8\x25\x74\xea\ +\xff\xd4\xac\xa2\x79\x52\xbc\xe7\x97\x78\x9b\xc6\xba\xb4\x6c\xee\ +\x84\x23\x79\x33\xa5\x96\x15\x86\x4a\x6f\x3c\xcc\x79\xca\x86\x5d\ +\xb8\x28\x8f\x5a\xe2\x37\xd7\x0b\x34\xd7\xab\x98\x3e\x7f\x72\x0e\ +\x35\x8b\x08\xe8\xa0\xd2\x1b\x0a\x77\xbd\xd6\xf7\xfe\x1d\x9d\x3a\ +\x8b\xd7\xf5\xe8\x7e\xe4\x20\xc1\x2e\xc2\x5f\x6a\xea\xa4\x7f\x2d\ +\x77\x64\x6c\x8f\xaf\xa9\x76\x74\xd2\xc6\x39\x02\xce\xde\x5c\xe8\ +\x21\xf3\x34\x87\xec\xd9\x45\x1e\x15\x60\x2c\x41\xbb\x9d\xb0\x56\ +\x2e\x1d\x77\xab\x8b\x8e\x92\xe3\x26\xd2\x7a\x3b\xcb\x9e\x7e\x4a\ +\x6b\x85\xd9\x50\xbf\x82\xc6\x80\x51\x5b\x0f\xef\xf3\x96\x9f\x81\ +\x84\x71\x4b\xc5\x68\xa7\x18\x51\x85\x3f\x19\x07\xe1\x3e\xe0\x8a\ +\x3d\x18\x09\x33\x1c\x3d\x63\x2b\xbe\xc4\x46\xc7\xc7\x0b\xa9\xca\ +\x03\x5e\xbe\x8e\xef\xb1\x97\x3a\xcd\xdd\xa7\x7c\xdb\x0e\x15\x8c\ +\x3e\x47\x9f\x87\x58\x8e\x36\x5c\x63\x37\x41\x15\x6b\x22\xbc\xf2\ +\x84\x2a\x17\x6d\x02\xb6\x4f\x92\xeb\x5e\xbe\x51\x93\x07\xfc\x7c\ +\x53\x8d\x17\x6c\xbe\x1e\xba\xd2\xe6\x07\x42\xcf\x1f\x5f\x6d\xaf\ +\x3e\xf8\xd5\xf6\xde\x77\xbe\xb9\x6d\xd7\xd5\xf7\xee\x41\xc5\x7d\ +\xa6\xb4\x5b\xb9\x83\x3e\x57\xf2\xb1\x10\xd5\x34\x76\x6b\x83\x48\ +\x1d\x0f\xfe\xfa\xd4\xdd\xf6\xcf\x3f\xfc\xf7\xdb\x57\xbe\x7e\xb5\ +\x3d\x7b\x47\xc7\x8f\x8e\x1d\xcf\x73\x74\xc7\x4a\x3c\xf3\x27\xfe\ +\x9f\x4c\x8e\xa9\xaa\x29\xbc\x8f\x67\x67\x74\xd1\x82\xf1\x93\xca\ +\xa5\x4b\xee\x77\x3d\xc9\xc3\x99\x4b\x31\xc3\xea\x85\xdb\x64\x31\ +\x2f\xd5\x5a\x97\xd6\x54\xcd\x84\x46\xe3\x08\x14\x4a\x16\x1e\xe9\ +\xca\xe2\x78\x67\xe1\xdc\xd5\xa2\xab\xbd\x16\xbe\x85\x96\x18\x56\ +\xc6\xb1\x5e\x2f\x69\xc4\xfb\x1c\xe1\x5c\x2f\xdc\xeb\x98\x8c\x0a\ +\x51\x8c\xf4\x8e\x97\x94\x66\xee\x38\x58\xa6\x7c\xe4\xeb\x78\xda\ +\xc3\x27\x97\x39\xb6\x71\xf9\x53\x4f\xb1\xf4\x59\x4a\xea\xd5\x1f\ +\x99\x54\x3c\x39\x4b\x14\x6b\x9b\x48\xa1\x4f\xec\x42\x67\x4c\xb0\ +\xb1\xe4\x4a\xe1\x36\xb2\xba\xe9\x97\xc3\x12\x4f\x8c\xa5\x42\x8d\ +\xbb\x4a\x94\xf8\x2a\x87\x79\x62\xf7\x6c\x37\x98\xd8\xd4\xed\x3a\ +\x80\x71\x8d\x02\xdc\x7d\x3a\xe1\xb8\x8a\x59\xf7\xd7\xf1\x1a\x5b\ +\x5c\xeb\x78\x3f\xd7\x29\xb7\x92\xfe\xc4\x0e\x7e\x8e\x55\x4c\x6e\ +\x42\x2d\x06\xde\xad\x7e\xf3\xb0\xad\x79\xe9\xcb\x5d\xfb\xc6\x79\ +\x14\xa4\x1c\xf1\xa1\x9a\x8c\xed\xcf\xa0\x41\x1d\x34\x82\x75\xb6\ +\x94\xee\x6a\x51\x4d\x6b\x86\xb5\xda\xca\x1d\x15\x3d\xa8\xfb\xe6\ +\x3e\x4e\xa2\x7f\x03\x58\xa5\x38\x2f\xa7\x31\x96\x73\xb7\x7c\x9d\ +\x27\x57\x3c\x2b\x66\xc4\x4a\x63\xfd\x3b\x6c\x04\xa0\x9c\x46\x2f\ +\x44\x7c\xb9\x77\x51\x95\x30\xd8\xf4\xa4\x9f\x27\x74\x06\x82\x46\ +\x9f\xba\x0e\x62\x65\x84\x8f\x4d\xad\xa3\xec\x82\xe2\xde\x19\xb1\ +\xa3\x26\xd6\x98\x91\x45\x1a\x6b\x99\x63\x7e\xe2\xd4\x0b\x60\x01\ +\x66\xbc\xf5\xf8\x77\x5c\xb1\xab\x0d\x10\xbd\x96\xf2\xab\xb4\xae\ +\x53\xa9\x6c\x87\x56\xcc\xe4\x42\xa4\x7b\x14\xf4\x12\x72\x45\x5b\ +\x46\xad\x4f\x89\x2f\x5c\xb1\x83\x43\x7b\x4b\x74\x2f\x84\x1d\x2d\ +\xe6\x3a\xe2\xeb\x45\x5f\x3b\x1a\x23\xb4\xc6\x09\xf4\x92\x4d\xc6\ +\xbc\xec\xfd\x48\x7b\xa4\xb0\x8c\x97\x6a\xcc\xa1\xb4\x8e\xf9\x19\ +\x5f\xe2\x6e\xb7\x27\x57\xcf\xb6\xaf\xfe\xc5\x47\xdb\xfb\x1f\xfc\ +\xf3\xf6\xe2\xfa\xb7\x6a\xf6\x56\xac\x3e\x38\xc7\x10\x07\x1d\x74\ +\xd0\x41\x07\x7d\xc6\xc4\x68\x7f\xd0\x41\x07\x1d\xf4\xe7\x41\x35\ +\x67\x7d\x2d\x31\x6b\x5c\x67\x8e\x5d\xe7\x53\xcd\x26\x53\x91\xa9\ +\xb1\xeb\x77\xdb\x92\xfc\x6c\xd5\xcb\x9f\x7c\x77\xbb\xba\x79\x5f\ +\x13\xd9\x2b\xff\x6c\x95\x07\x54\x26\xbe\x3c\xfc\xe0\x9f\x07\xdf\ +\x68\xd2\x7b\xcb\x83\x0f\x5e\xaa\x81\x6b\x32\xcc\xcb\x29\x61\x9e\ +\x29\xc3\x3c\x30\xf1\x0d\x77\x38\x54\xb2\x27\xe2\x9e\x9c\xc7\xec\ +\xbf\x94\xe6\xff\xb4\xa1\xba\x33\xa6\xc8\x8e\x21\x03\x0c\xea\x6c\ +\x95\x72\xdc\x48\xb0\x54\x9b\x93\xb9\xf1\xac\xfe\xc0\xbc\x3c\xf3\ +\x0b\xb4\x4c\xe2\xf3\x3f\xd3\x6e\xfd\x82\x4d\x86\xf0\x7c\xeb\x20\ +\xeb\xa0\xf5\x44\xaf\x1c\xbe\xf3\x11\x1b\x73\xbd\xc4\x24\x7f\xe2\ +\xa6\x3f\x36\xed\x38\xae\x74\xdb\x7e\xc0\x26\xb6\x0f\x49\x68\xf5\ +\x4f\x7a\x80\x92\xc6\xa5\x61\x0f\x56\x81\x4c\x31\x6e\xee\x83\x97\ +\x6f\x8a\xe4\xc5\x2f\x7a\xa4\x60\x2f\x1d\x03\x5b\x29\x3b\x42\x4c\ +\xcc\xbc\x71\x8d\xaf\xf7\x8b\x68\x17\x1b\xdf\xce\xa6\x2e\xfd\xb6\ +\xb5\xe0\x0b\xdf\x23\x3b\xd4\xc6\x90\xb4\x57\x72\xad\x58\xbc\x5b\ +\x87\xd2\xdf\xc4\xa7\x75\xce\xf2\x69\x35\x30\xf5\x21\x7f\xb9\xbe\ +\x72\xfb\x4e\x78\xd4\x39\x61\xb6\x51\xcb\x07\x63\x16\xae\xd5\xce\ +\x11\xbf\xdf\x0e\x8e\xad\xe3\x22\x3f\x2d\x25\x9f\xa4\xd9\x7e\xda\ +\x38\xc7\x0b\x95\x91\x76\xcf\xc5\x2a\xd7\xe0\xa6\xd2\xdd\x97\xc9\ +\xa3\x3d\xec\x5d\x3d\x18\x6a\x19\xa2\x4d\x55\x08\xe3\x1b\xf5\x42\ +\x69\x3f\x71\xfe\x09\x48\x8e\x5b\xc7\x84\x86\x86\xff\x24\xf7\x5b\ +\x91\xdb\x6d\xaa\xfa\x6e\x70\x88\x19\x32\x94\xd0\xf0\x2d\xb8\x33\ +\xc8\x0e\x24\xab\xf5\x8a\x29\x61\x69\x56\x11\x49\xcd\x36\xb0\x2b\ +\xa0\x8c\xd8\x48\xec\x35\x66\x9e\x59\x5e\xec\x6f\x2e\x3c\x81\x3a\ +\x26\x10\xa5\xef\xe2\xe0\xf2\xed\x78\x8e\x5d\xce\x21\xf3\xd1\x38\ +\xd8\xc4\x95\x27\x6d\x92\xdc\x0d\x38\x66\xf6\x43\x98\xc7\x36\x18\ +\x77\xec\xd3\x3a\x1e\x57\x85\xb9\x2d\xfb\x6b\xac\x64\xcc\x74\xfd\ +\x29\xbb\x7e\xc7\xa8\x98\x75\xab\x4f\x2a\xc4\x45\xd9\x0d\x6f\x20\ +\xea\x45\x50\x38\x45\x03\x16\x95\x9f\xf6\xf0\x1b\xa7\x2f\xf4\xeb\ +\x36\xff\x4c\x9f\xb1\x9e\xbe\xf1\x40\x88\x6b\x09\xb6\xe8\x4a\x1d\ +\xb8\xd2\x75\xf4\xf1\xc5\xcb\xed\xb7\xdf\xff\xde\xf6\xea\xc3\x5f\ +\x29\xae\x8e\xb5\xa6\xea\xf3\x09\xfa\xe9\x89\x74\x07\xfd\xf1\x88\ +\x1d\x57\xa7\xb0\x49\xfb\xb3\x21\xc6\x2c\xfe\x5f\x19\xdf\xba\x7a\ +\xf7\x67\xdf\xdd\x3e\xb8\xf9\xc7\xed\x6b\x5f\x7f\xb1\x69\x5a\xb5\ +\x5d\xf2\xbb\xa0\xfa\x70\x6c\xdd\xea\xb8\x79\xf9\x82\xb9\x46\x1f\ +\x6b\x4e\x43\x32\x1d\x4b\xbc\xa2\xca\x31\xc2\x62\xc2\x1f\xcd\x94\ +\xd8\x10\x6a\xe6\x53\x58\x14\x7d\x4b\xcc\xdc\x0a\x1c\x2c\x7a\x66\ +\x60\x27\xd4\xb9\x2c\xbb\x45\x64\xce\xb7\x9c\x6b\x39\xbe\xd5\x39\ +\xeb\xfc\x7f\x34\x6b\xb6\xaf\x1d\x97\x17\x65\xcc\x13\x23\x5b\xf7\ +\x2f\x1a\x58\x27\x57\xa4\xb9\xbe\x99\x46\xfe\xb5\x6e\xbf\x0c\x61\ +\x4e\x75\xe7\x76\x66\x1d\xfa\x26\x31\xec\xc4\x02\x0a\x53\xe1\xf1\ +\xc4\xdd\xe6\xba\x64\xd8\xb9\xac\x73\xca\x7a\xdb\x72\x5d\x0f\xe6\ +\xd3\xb6\x02\x11\x14\x36\x03\xb9\x4e\x63\xe3\x67\x22\xd1\xdd\x46\ +\xf5\xa1\x52\xcc\x1c\xf1\xa1\xb7\x8d\x62\xbb\x62\xe3\xb7\x22\x66\ +\xdd\xcb\x86\x1a\xbe\xc7\x14\xf1\xef\x63\x54\xd7\xfd\x99\xbe\x5d\ +\x0c\xbe\x66\x63\x69\x6b\x72\xe3\x7b\x76\x0e\x56\xee\x0c\xb5\xfb\ +\x1e\xab\x58\xeb\x3b\x7f\xf9\xee\x51\x3b\x16\xde\x99\xab\xa1\x82\ +\x5c\x80\x96\x80\xed\x6b\x75\xe8\x28\x45\xd8\xc6\x4e\xa8\x01\x57\ +\x8a\xd9\x71\xed\xda\xd3\x19\xb4\x82\xbb\xdd\x26\x54\xcf\xcf\x17\ +\x3c\x82\xeb\x25\x62\x1e\x9b\x3e\x5f\xad\xef\x7a\x3d\xa9\xe2\x3c\ +\x65\xf0\x9c\xa8\x77\x34\x54\xf3\xa5\x93\x9a\xbb\x2b\xcb\xde\x35\ +\x49\x38\x2e\x32\xcc\xbe\x40\xa7\xe3\x43\xfc\x4b\xc0\xbd\x88\xa6\ +\x89\x9f\x44\x54\xdd\xfb\x99\x29\xca\x29\x81\xb6\xef\x4b\xd9\x8d\ +\x51\x9c\xb0\x85\x65\xb6\x02\x4c\x91\xb9\xe9\x62\x97\x6c\xce\x71\ +\xc9\xba\xd9\x53\x38\xb6\x45\x71\xfc\x1d\xb7\xd3\x1d\x9e\x93\x03\ +\x3b\xe3\x17\x63\x41\xf9\x2b\x26\xe3\x0c\xcc\x7e\xab\xbc\xa9\x55\ +\xfe\x3e\xf7\x83\xa1\x8c\xfa\x15\x4b\xdd\xce\xb1\xfa\x92\xa3\x6c\ +\xc7\xc5\x0e\x55\xe5\x41\xed\x09\x8e\xde\x39\x38\x28\x39\xbe\x7c\ +\xdc\x20\x2d\xb8\x86\xb0\xc7\xb4\x1d\x7d\x1f\x7e\xe1\x78\xd7\x41\ +\x22\x6c\xcb\xe7\x6d\x5d\xf9\x8d\xed\xd9\xd8\x88\x67\x9d\x25\xb5\ +\x39\xf8\xd9\xc7\x1b\xdd\x83\xb3\x0d\x18\x68\x6e\x24\x69\x91\xad\ +\xf8\xf8\xd9\xa3\xed\xe6\xe2\xe7\xdb\x77\x7e\xf8\xb7\xf6\xf9\xbc\ +\x31\x39\x53\xf1\x41\x07\x1d\x74\xd0\x41\x9f\x25\x1d\x2f\xd4\x0e\ +\x3a\xe8\xa0\x2f\x9e\x98\x0d\xbe\x0d\xf5\x7c\x30\xb3\xc7\xcf\x9d\ +\xba\x5b\x4c\xb8\x31\xc6\xe4\x54\x13\xd8\xbb\xdb\xab\xed\x57\xff\ +\xf0\x9f\xb6\xed\xc9\xab\xed\x39\x4f\x7d\x3c\xeb\xad\x9b\x83\xdb\ +\xdb\xed\xf6\xfa\x26\x0f\x10\xb9\x55\x10\xe6\x87\x9e\x7e\x91\x86\ +\xad\xa9\xae\x1f\x08\x49\x67\x96\x5c\x2b\xe6\xd5\x72\x1e\x1a\xc1\ +\xa0\xd9\xf5\x51\x4e\x34\x97\xf5\xc0\x07\xbd\xfd\x7e\x08\x34\x2d\ +\x97\x9d\x0a\xea\xdc\x08\x17\xcd\x3c\xe5\xa0\x7f\xd5\x17\xf7\xcb\ +\x2f\xb2\xe8\x2b\x38\x2f\xce\x78\x00\x8a\x4d\x1d\xad\x3f\x75\xa4\ +\xfb\x41\x0c\xeb\x35\x72\x14\x7b\x3d\xc1\x78\x68\x5a\x39\x1d\xdf\ +\xf5\x12\xc7\x5d\x42\xf0\xc2\xc8\xbf\xea\xc5\xce\x55\x72\x8f\x67\ +\x5d\x6c\x3a\x04\xa5\x31\x94\x89\xc5\x8c\x62\x08\x1b\x59\x70\x94\ +\xc8\x53\xbf\xba\x24\x59\xf5\x1c\x54\x84\xed\x9b\xa3\x89\xa2\xad\ +\x31\x71\x05\xb1\x4f\x80\xf3\x14\xb7\xaf\x9c\x51\xca\x19\xff\x43\ +\x44\x8f\x66\x19\x6d\xaf\x4f\xeb\xf5\x0c\x3d\x84\x9d\xa5\x35\x60\ +\x65\x8b\x32\x6a\x1d\xc2\x81\x56\xf2\xba\x9d\xc1\x83\xa9\xe0\x23\ +\x39\x6e\xf2\x6d\x97\x1f\xb2\xd4\x71\xbe\x60\xf7\xd6\x79\xdc\xb8\ +\x9e\xca\x8e\x59\xea\x9f\xe1\x6e\xb3\xeb\xcd\xf3\x4b\xb4\xc4\x75\ +\xec\x29\x66\x5e\x69\x49\xe1\xd3\xd5\xb4\x06\x03\x9e\x56\x2a\xea\ +\x78\xcb\xf3\x31\x46\xe9\xa7\x3e\xee\xb3\x4c\x9d\x16\x83\xfa\xc1\ +\x54\x57\xb7\x19\xf5\x93\x53\xf7\x67\xc9\x35\x69\xb6\x01\x59\x5d\ +\xec\xae\x1a\xb0\xf7\x99\x4a\x7d\xec\x0b\x10\x56\x91\xe3\x40\x7c\ +\xc7\x3a\x19\x5c\xc6\xe3\x0a\x43\x75\x9c\x35\x8c\xc2\x52\xe0\x4b\ +\x20\x19\xca\xf6\x58\x33\xb1\x0a\xd8\xc5\x85\x24\x5d\x7f\xcf\xc9\ +\x09\xf3\xf0\xa2\xc7\x28\x44\xf9\x3c\x70\x84\x33\xc6\x25\x56\x5a\ +\xc5\x36\x86\xac\x31\x51\x26\x31\x5d\x37\x63\xa1\xc6\x60\xea\xb5\ +\x64\xaf\xda\x9e\x72\x37\xce\x36\x26\x5d\x45\x30\xe7\x2e\x9d\x05\ +\xdf\x4a\x09\xf5\x76\x65\x1f\xc0\x33\xa2\x35\x64\xd7\x15\x8f\x00\ +\xb5\xd5\x46\xb5\xa1\x0b\x83\x75\x82\xd2\xbf\x7c\x5b\x9b\x6b\x47\ +\xaf\x2b\xb8\x63\xd4\xd8\xd5\xd5\xe5\x76\xc5\xcf\x17\x7d\xfc\xab\ +\xed\xb7\x3f\xfe\xfe\xa6\x0b\xa8\xf0\xb9\xbf\x43\xf3\xc8\xf9\x83\ +\xe9\x33\x4c\x75\xd0\x1b\xe8\xec\xb6\x2e\x50\xc2\x47\x89\xff\xfa\ +\xfe\x76\xfb\xe6\xb7\xff\x5f\xdb\xd7\xfe\xe2\xe5\xf6\xe4\x31\xc7\ +\x08\x0f\x24\x75\x1c\x89\xf0\xdd\x5e\xbf\xda\x34\xb5\xda\xf8\x9b\ +\x9e\xbc\x94\xc9\xf1\x75\xf7\xea\x42\x9c\x44\x75\xc8\x95\x02\x49\ +\xd2\xd4\xca\x16\x1c\x5b\x01\xfc\xd2\xcc\xcc\x6d\x71\xd8\x0f\x47\ +\xc7\x9c\x6a\xe5\x95\xd2\x18\x4d\x71\x9c\xfa\x58\x95\xe1\xf3\xb3\ +\x7f\xb6\x91\x63\x9f\x9e\x6a\x3d\x7c\x5e\x30\x9f\x7a\x75\xed\xc3\ +\x3b\xc7\x7f\x18\x7f\xc7\x72\x3e\x71\x22\xf6\x79\x3c\x73\xc0\x7c\ +\x5b\xec\xce\xf3\x4b\xf0\x7e\xf8\xec\xed\x61\xff\x7c\xe1\x26\x21\ +\xc6\x9f\xed\x95\x31\xa2\x74\x32\xda\xa8\x2e\x94\x9f\xd6\xad\x9b\ +\x89\xe5\x65\x1a\xd8\x64\x12\xdf\x82\x17\xd0\xb8\x87\x2c\xda\xd4\ +\x39\x8a\xff\x00\x00\xff\xf4\x49\x44\x41\x54\x70\x9b\x8f\xf2\x6d\ +\x35\xfb\xc3\x0e\x6a\x31\xf4\xc8\xcc\x89\xe3\x6b\x3c\x9c\xf5\xce\ +\x36\x82\x1b\xef\x4e\x35\xde\x2b\x42\x6f\xc3\x33\x76\xb2\x8a\x62\ +\x85\x40\x96\xc9\xe7\x18\x03\xc5\xa7\xf1\xa5\x46\xce\x9c\xf7\x98\ +\xe5\x1e\xde\x69\x2b\x49\xe1\x5a\x71\xe9\x2b\xe3\xdb\x37\xdf\xf6\ +\x29\xee\xed\x6d\xec\xb4\xad\xe6\xf2\x55\xa5\x9e\x03\xad\x2f\x39\ +\xe3\xb5\x32\x19\x5a\xec\xc4\x56\x24\x06\x70\xfb\x8b\x7c\x66\x18\ +\xab\x18\xcb\x25\xae\x18\xb1\x23\xb0\x73\xbe\xc2\x32\x9f\x69\xa3\ +\x45\xeb\xb4\x2a\x7d\x75\x2d\x72\x02\x5a\x5f\x9d\x8f\xeb\xb7\xaa\ +\x7d\xfe\xd3\x47\xdc\x81\x44\x39\xbf\xd9\x4a\x1d\x0a\xd2\x73\x8d\ +\x11\x47\x97\x90\x00\x03\x84\x94\xb5\xec\x64\x9a\xd4\x61\xb3\xca\ +\x2c\x27\x56\xfb\x65\xa9\xed\x6d\x63\xa5\x63\x9a\xd2\xf7\x3d\x38\ +\x83\x57\x18\x0b\xbb\x65\x6f\x4e\xff\x01\x96\x8f\x39\x7f\x4c\x99\ +\xe7\xa2\x14\x8f\x3e\x51\xa8\x8c\x10\x27\x57\xc7\x59\x58\x12\xb3\ +\xc4\x35\x6e\x6e\x5c\x63\x54\x2d\x1e\x8b\x8c\x71\xbe\x76\x4c\xe3\ +\x61\xfa\xd8\xe7\xbe\x0a\xe7\xa4\x70\x5c\xe5\x59\x17\x62\x1c\x52\ +\x75\x7a\xbc\x73\x34\x3e\xfb\x65\xe3\xb7\x2c\xae\xc5\x7e\x63\x08\ +\x0a\x67\x13\xfb\xcf\x0a\xaa\x6e\xb6\x53\x8e\x23\xab\x8e\x78\x35\ +\xae\x21\xb5\x1d\xb1\x3d\x8f\x09\x25\x1d\x05\xfe\xde\xb6\x61\xd3\ +\xb0\xa7\xc3\x42\x05\xeb\xe1\x75\xd1\xc0\x7a\xcd\xff\x52\x53\xff\ +\xc9\x9c\xf3\xfa\x66\xbb\x7a\xf2\x6a\x7b\xf6\xd5\xdf\x6d\xdf\xfd\ +\xee\x7f\xd3\x2d\xfb\x87\xda\xcf\xac\x5f\xea\x1f\x74\xd0\x41\x07\ +\x1d\xf4\xf9\x10\x23\xfe\x41\x07\x1d\x74\xd0\x17\x4b\x3d\xdb\xab\ +\xf9\xe7\x1b\xe9\x93\xcc\x0e\x4f\x63\xdf\xba\x0d\x4f\x67\x45\x3d\ +\x69\xa6\xc8\x04\xf8\xe6\xe6\x76\xfb\xe8\xf7\x3f\xdb\xee\x7e\xf3\ +\xf3\xed\x29\x0f\x01\x2f\xc1\x75\x0b\xc4\x64\x97\x87\x84\xfd\xed\ +\x34\x1e\x78\x68\xe2\xfb\xea\x46\x0c\xde\x7e\xdf\x40\xf3\xa2\x09\ +\x9d\xc9\xb0\x5a\x72\x7b\xd5\xd9\xcc\xd7\x07\xd1\x6c\x5e\x96\x95\ +\x2c\xdd\x84\x6a\x6c\x57\xa5\x7a\x3d\x29\xb9\x61\xda\x4e\x5f\xdc\ +\x66\xf5\x2b\x52\x3e\xfa\xe3\xfe\xd5\x0b\x34\x33\x7d\xed\xfe\x86\ +\x67\xff\x4b\x92\xd3\xb6\xf2\xee\x62\x94\xcf\x79\x1b\xab\xb6\x0a\ +\xe7\x06\x47\x46\x71\xea\x5a\x16\xbb\x6f\xc6\x31\x91\x61\xd4\xa9\ +\x17\xae\x8f\xd7\x9b\x3a\x96\x55\xc7\xb2\x6c\x96\x40\x26\xe3\x48\ +\xeb\x38\x2a\x37\x84\x69\x59\x58\xe3\x22\x75\x67\xf8\x13\x9f\x1b\ +\x26\xab\x05\x22\xaa\x5b\x32\x73\xe3\x94\x80\xc2\xa2\xee\xc8\x2f\ +\x41\x7c\x73\x14\x1e\x91\x54\x2e\x8e\x20\x7f\x63\xc3\x75\x4f\x3f\ +\x31\x1e\xe4\xf4\xb6\xf9\x35\xb4\x86\x58\xa6\xee\xba\xf0\x31\x3f\ +\x40\x71\x77\xd0\x7d\xe6\x67\xf7\x4a\x53\x69\xc5\x9c\xed\x91\xed\ +\x0c\x75\x4c\x56\x31\xdb\xcd\x37\xa9\x15\xbf\xa3\x7d\xa5\x3d\x0f\ +\x4a\xfe\x1d\x93\xcf\xfa\x19\x5a\xc2\xde\x8a\xa1\xa5\xdd\xde\x35\ +\xdd\xf7\xf4\x1f\xdf\x69\xa5\xd0\x7e\x57\x12\xdb\x31\x00\xa5\xaa\ +\xb0\x45\xe1\xd3\xaa\xe2\x2a\x64\x52\x61\xcd\x53\xac\xd0\xa4\x06\ +\xed\x50\xe1\xb6\xee\x93\x43\x46\xb1\xa7\xae\xda\xae\x5d\x8a\xc2\ +\xbc\x3f\x4b\x6b\xea\xed\x02\x62\x6f\x9f\x7c\x25\x46\x7b\x96\xd1\ +\x47\xf3\x71\x4a\xc4\xef\xf3\xc6\x7a\xd8\xf9\xd0\xc9\xb9\xe2\x8c\ +\x4d\x52\xf3\x00\xee\x3e\x77\x9e\xd5\x1f\x4c\x89\x96\x31\x2c\x79\ +\xe0\x35\x46\x6d\x79\x60\x20\x8e\x97\x05\xc8\x8e\x49\xbc\x83\xd0\ +\x19\x2b\xa9\xc3\x38\x47\x5e\x8f\x77\xc8\x8e\x2b\xb9\xda\xad\x57\ +\x1b\xd1\xeb\x45\x9c\xf5\x92\xd9\x58\xd2\x91\x50\xce\x30\x17\x85\ +\x8d\xe7\x98\xc5\xa7\xbb\x5d\xb5\x5d\x3f\x7d\x0f\xf7\x7a\xb8\x4e\ +\xf9\xe3\x4b\xdf\xc6\x37\x96\xf9\x39\xe4\xba\x7e\x70\x09\xbb\xd4\ +\x75\xf4\xf1\xe3\xc7\xdb\xf6\xe2\xc3\xed\xf7\x3f\xf8\xd6\xb6\xdd\ +\x7e\x50\x39\xdc\x21\x94\x21\x4f\xfb\x71\xd0\x9f\x01\xb1\xeb\xbc\ +\xfb\xf6\xfb\x92\x63\x88\x87\x92\x37\x9a\x73\xfc\xe4\x17\xdf\xdb\ +\x7e\xfb\xd1\x3f\x6c\x5f\xf9\xca\xcd\xf6\x88\xff\x9d\x56\xbe\xcc\ +\x9b\x36\xc7\xe4\xef\x77\xf2\x60\x11\xf2\x03\xc6\x3e\xdc\x44\x2d\ +\xa1\xa1\x57\x6c\x4f\x9d\x7a\xe8\x24\xb7\x95\x31\x96\xd6\xff\x4b\ +\xab\x97\x69\xf1\x4f\xda\x5b\xf4\xae\xdb\x88\xe6\x85\xfe\x68\xf1\ +\xe9\x57\xe7\x36\xfd\xcf\xc3\x50\xcd\xab\x1e\xe9\x98\x77\xa5\x9c\ +\x87\x70\x5e\x84\x29\x16\x8c\x75\xf3\xfa\x35\xae\xf8\xce\x6b\x0c\ +\x5f\xf4\x60\x6d\xef\xfd\xc1\xd2\x33\xfa\xe2\xbf\x91\xa2\x97\x60\ +\x30\x5d\x2b\xe9\xbe\xda\xcf\x75\x08\x5d\x75\xf9\x56\x1a\x7f\xc0\ +\x20\xdb\x49\xec\x88\x8f\xf8\xc6\x80\xd3\x5f\x20\x96\xf8\x68\x1f\ +\x69\x0c\x59\xed\x25\x2e\x31\xe9\x73\x62\x1d\x63\x1f\xba\xd6\xcd\ +\xdb\xc7\x40\xf9\x56\xbd\x38\x5d\x28\xa5\x30\x33\x39\x26\x60\xdd\ +\xf9\x0a\xa2\x2f\xae\x1b\x9f\xdd\x46\x44\xde\x48\xe1\x11\x8f\x59\ +\x7a\xe3\x1d\xf3\x26\x4e\x3d\xb6\x63\xad\x97\x65\x1c\x8f\x6a\x63\ +\xe8\x83\x59\xdc\x7d\x1a\xc0\x0e\x6b\x9c\xc5\xd2\xbc\xb4\xd9\xca\ +\xb0\x33\xb7\xf0\xff\x72\xab\x78\x57\x68\x61\x5f\x85\x52\x34\xbe\ +\x2c\x23\xa0\x84\x49\x4a\x5f\x1f\x90\xce\xed\x25\xd4\xf2\x94\xaa\ +\xca\x24\x19\xfb\xf3\xaa\xfd\xc9\x65\x7d\x14\xed\x69\x4d\x54\xbe\ +\xb6\x91\xee\xd7\x09\xf1\x3f\x41\x13\x95\x97\x10\x5e\x27\xce\x75\ +\xaf\x5b\x7a\x3e\x77\x7d\x9d\xf9\x31\xdc\x41\xaf\x23\x18\x64\x7d\ +\x58\x5e\x77\x07\x41\xcb\xca\x74\x44\x7b\xeb\x0a\x3b\x49\xf5\xfc\ +\xbf\x4a\x63\x38\xce\x75\x3a\x5f\xf9\x46\x5b\x25\x4c\x0b\xb4\x1e\ +\x03\xe9\x4b\x1b\xd8\xe4\x20\x17\xba\x83\x2d\x51\xa3\xe3\xcf\x09\ +\x51\x6e\x9f\xfb\x26\x03\x51\xa7\xbf\xea\x97\x6f\x62\xcd\x9c\xcf\ +\x06\x1d\x30\xf0\xa1\xc7\x75\x7f\xfc\x72\xb4\x6d\x0c\x16\x8f\x02\ +\xf6\x77\x3e\x9f\xc5\xc3\xcf\x52\x9f\x58\xe0\x0b\x3b\xae\xc7\x12\ +\x18\xdb\x4b\x74\xfc\xcd\x2c\x7c\x2c\x4a\xa5\x64\x4b\xa4\x9e\x4d\ +\x4b\xb3\x1d\xd1\xa1\x79\x2d\x89\xd5\xfb\xce\x31\x3a\x78\x5c\xe7\ +\x0c\x66\xa3\xc8\x31\x51\xbb\x5b\xe6\x38\xe8\xb5\xd6\x5f\x1b\xe3\ +\x46\x7c\xab\x0b\x21\xcc\xfa\xd1\x1c\x87\xf2\x85\xce\xf1\x67\xef\ +\xdc\x6d\xd7\x17\x3f\xde\xfe\xf9\x9f\xff\x16\x40\x2e\x5d\xcb\x84\ +\x37\x55\x0f\x0e\x3a\xe8\xa0\x83\x0e\xfa\x8c\xe8\x78\xa1\x76\xd0\ +\x41\x07\xfd\xe9\x50\xcf\x24\x3f\x6b\x22\xef\x27\x9a\x45\x6a\x12\ +\xea\x87\x29\x3d\x93\x55\x59\x13\x5a\xe8\xc5\xab\xcb\xed\xd7\xff\ +\xf0\x9f\xb6\xc7\x77\x2f\xb6\xe7\xf5\x32\x4d\xf3\x56\xcb\xfc\x15\ +\x3e\x0f\x09\xe1\x1b\xff\x95\x7d\x6e\x1c\x82\xe7\x4e\xbe\x26\xf6\ +\xc5\x2a\xa8\xe9\xfa\x16\x45\x64\x5e\xbb\x1d\xbd\x50\x3e\x06\x82\ +\x22\xe7\xc3\x9f\xf4\xbc\x7d\x69\xc3\xcd\x8c\xf6\xdc\x26\x12\x07\ +\x0f\xab\x8c\xdd\x49\x95\x4e\x9f\x35\x61\xf7\x44\xdd\x0f\xb2\x56\ +\xce\x03\x50\xe2\xc7\xff\x82\x63\x7d\x8c\x4d\x16\x90\x5c\x0b\x83\ +\xad\x3a\xb9\xb9\x53\xca\xc3\xe2\xd9\xa7\xc4\x14\x66\x96\xed\xba\ +\xe5\x17\x94\x58\xaf\x5e\x74\xa5\x1a\xd8\xea\x17\x23\x6a\x4b\x28\ +\x4e\xda\x88\x31\x58\xba\x0a\xdb\xb5\x0d\x47\x7d\xc9\x20\x93\x8c\ +\x97\xb0\x13\x23\xf1\xe6\x0e\xa1\x80\x16\xd9\x31\x1d\x34\xe2\x75\ +\xa3\x55\xb7\x6e\x27\x8c\xef\x1e\xe2\xb2\xc5\xea\x79\x90\x3a\xe4\ +\xad\x98\x75\x99\xbc\xb3\xef\x2d\x89\xb7\x52\xb1\x18\xf7\x96\xae\ +\xdf\x31\x84\x2d\x55\x56\x6e\x1f\xd2\x98\x97\x00\xd6\x8c\xb3\x1f\ +\x8b\xd9\x6e\x04\x2c\xcc\xb6\xcc\x36\x95\x3e\xec\xe1\x2e\xce\x36\ +\x1f\xb1\xf8\x8b\x4d\x48\xd2\x9b\x0a\x44\xbc\x86\xd7\x1c\x23\x57\ +\xf3\x1b\x88\xa6\x46\xd8\xa8\x57\xeb\xb6\x50\xbb\x4c\x56\x96\x6d\ +\x40\xd1\xeb\x52\x1e\x43\xde\x4e\xa7\x34\x31\x57\x5d\x24\x84\xbe\ +\xda\x93\xce\xe5\xda\xd3\xf9\x7a\x45\x6b\xf5\x25\xd0\xdb\xaa\x68\ +\xa8\x56\x38\x6e\x10\x2a\xf2\xf1\xfa\xe4\x58\x9a\x7e\xdb\x31\xad\ +\xfb\x58\xc1\xec\x7a\x09\xe2\x13\x7f\xcb\x5a\xf8\x14\xa8\x31\xa7\ +\xf5\x05\x3b\xe5\x1e\x9f\xce\xf9\xc4\x3d\xa6\xbd\x8e\x11\x1e\x03\ +\x19\xc0\x30\xd0\x7b\xbc\xeb\x38\x8f\x87\xf1\x3b\xce\x31\x33\x76\ +\x8e\x8f\x3d\x36\xa3\x57\x9e\x1e\xa3\x5d\xbd\xf2\x39\x67\xa4\xeb\ +\xb3\xf6\x60\xd1\x28\xa2\x1b\x6b\x46\xe0\x5b\x39\x7d\x32\x97\x7f\ +\xac\xc7\x3d\xbd\x25\x2f\xd1\xb8\x76\xdc\x6c\xfc\x9f\xd1\xfc\xa4\ +\x30\x7d\xc8\x61\xf1\xf8\xf1\xd5\xf6\x44\x77\x26\x37\xbf\x7e\x77\ +\x7b\xf1\xcb\x1f\xf1\x06\x45\xf5\xec\x0e\x59\x5f\x81\x83\xfe\xa4\ +\x89\x5d\xb5\xee\x2e\x76\x72\x26\x2e\x45\x38\x39\x4e\x2e\xb6\xeb\ +\xbb\x97\xdb\xb7\x7f\xf0\xef\xb7\x77\xbe\x72\xb3\x3d\x79\xa6\xe3\ +\x82\x6f\x94\x28\xb4\x53\x70\xa8\x5e\xbf\x54\x1c\xdf\x64\xf3\xb1\ +\x24\x1c\xc9\xb7\xd8\x48\x55\xb1\x4d\xf8\x07\xad\xed\x5a\x18\x40\ +\x59\xd4\x56\xc4\x9e\xff\x2d\xd2\xc4\xb5\x62\x52\x74\x4a\xf5\x81\ +\xc5\x7d\x4a\xbf\x87\x2e\x66\x71\x9c\x5f\x8c\xe5\xf8\xcf\x03\xdd\ +\xf2\x83\x9b\x85\x72\xce\x96\x2f\xe7\xb5\xe2\x55\x35\x2f\xd7\xa8\ +\xaf\x0c\xc6\xb0\xcf\x33\xeb\xdd\x0f\xa1\xb3\x7d\x6a\x7b\xd1\x2e\ +\x98\xf3\x13\x83\x3f\xb1\x12\x42\x33\xa6\x3a\x66\xf8\xf8\x36\x53\ +\xe5\xb1\x2d\x9d\xdd\x05\x57\x4c\x7c\x1d\x47\x22\xd9\xf8\x69\x09\ +\x5f\xad\x3e\x05\x6b\xc7\x42\x60\xea\x15\x57\x7c\xf4\x48\x05\x57\ +\x3b\x1d\x6f\x91\xc2\xf6\x1e\x97\x96\x86\x0a\xb3\x5a\xe1\xd6\x3d\ +\xf7\xab\xa4\x02\x52\xdf\x9f\xd4\x3f\xc3\x26\x24\x2b\x37\x28\x4e\ +\xf7\xb5\xe2\x5e\xc7\x69\xc0\x2b\x62\xf6\xcb\x9e\xf2\xa1\xd2\x1b\ +\xdb\x88\xc6\x5f\xc7\x4b\x9d\xae\xc4\xe2\x8f\x99\x17\x67\x27\xf3\ +\x19\x37\xcf\x7e\xaf\x7e\xd7\x22\xb4\x82\x4a\x9d\x29\xc5\xe4\x28\ +\x5e\x70\xc7\x21\xa5\x74\x8e\x2c\x1d\x57\x32\x46\x8a\xd2\x53\x2f\ +\xd4\xb5\xac\xad\x0e\xd1\x3c\xe3\x42\x7b\x6f\xea\xac\x64\xcb\x70\ +\x70\xff\x2f\xd4\x7d\x88\x88\x9e\x71\x0c\xb0\x4e\x0e\xd6\x07\x59\ +\xad\x38\xbe\xec\x5a\x67\x08\xd9\x3c\xf6\x1d\xba\xcb\xfb\xd4\xe8\ +\xa9\x44\xf1\x1f\xe0\x88\x68\x71\xe0\x0f\xd0\xce\x2f\x63\xb5\xd1\ +\x63\xef\x51\x5b\x2a\xb2\x7a\xfd\x5d\xaa\xb2\xad\xd1\xeb\xb9\x7f\ +\x02\xb3\xfd\x11\x25\x2b\x72\x3d\xe4\x1b\xc3\x8f\xd2\x71\x19\x87\ +\xd7\x76\xeb\x9c\x77\x6c\xe7\x4d\xec\xb4\xab\x8e\xf1\x1a\x11\x06\ +\xd6\xc7\xe8\x12\xd7\x7e\x2d\x19\x3b\xcb\x36\xaf\xf9\xc4\x5a\x38\ +\xd7\xd0\xd3\x8f\xc2\xdb\x3e\xe5\xf6\x2f\x92\x5e\x59\x3a\x26\xf9\ +\x4d\x96\x89\x28\x87\xf5\xc4\xe6\x8f\x0f\xec\x2a\xce\xf5\xa6\xf6\ +\x74\x80\xf8\xca\xac\x14\xa6\xd6\x77\x3e\xe4\xf0\xcd\xbe\xb0\x4f\ +\x6f\xb5\x1d\xf8\xe9\xc7\x5b\xcd\xa1\xfc\x4b\x38\xf6\x5f\x6c\x8f\ +\x2e\x1e\x6d\x57\x97\x4f\xb6\xaf\xfd\xe5\xcd\xf6\xf3\xdf\xfd\x0f\ +\x5d\x6d\x7e\x6b\x1f\x54\x42\x39\x4b\x39\xe8\xa0\x83\x0e\x3a\xe8\ +\x33\xa1\xe3\x85\xda\x41\x07\x1d\xf4\xc5\xd2\x1f\x63\x6e\x97\x79\ +\xee\x94\x6f\xa2\xe5\x66\xca\x55\x54\xa4\xaa\xca\xbb\x5b\xff\x05\ +\xfd\x87\xdf\xfb\xc7\xed\xd9\x97\xaf\xfc\x0d\xb5\x0b\xc5\xf3\xff\ +\xb6\x98\xb1\xde\xdd\xdd\x68\xa2\xcb\xb7\xbb\xc4\xfc\xe3\x7c\x4d\ +\x76\xfd\x57\xf8\x7c\x53\xcd\x93\x5e\x98\x09\xb0\xef\x70\x95\x33\ +\x98\x1b\x6c\x1e\xed\x89\xac\xd4\x23\x1d\x26\xe8\x28\x6a\xcb\xb6\ +\xda\x5d\x89\xaa\x99\xc4\x97\x6e\x39\x35\x33\x1f\xfa\xc0\x8d\x0c\ +\xfd\xe8\x87\x17\xad\xf3\xd4\xaa\x24\x4c\xff\x59\xe7\xb6\xcd\xc4\ +\xfa\x37\x97\xb0\xa7\x0f\x3b\xd8\xcc\x23\x25\x18\x6d\x96\x9f\xdb\ +\xbc\xd8\x85\x79\x5b\xcc\x38\x15\xd5\x5f\xec\xc2\x88\xb5\xc4\x15\ +\x1b\x99\x3c\x85\xe9\x13\xac\xaa\x9b\xb2\xed\x84\xee\xfd\x83\xf0\ +\xc4\x67\x77\xc0\x41\xb6\x67\x61\x31\xcc\xb5\xa1\xfd\xae\x30\xe1\ +\x36\xb7\x1e\x78\x48\xc8\xfa\x70\x94\x82\x10\xb7\x39\x68\xb5\x2b\ +\x66\xc7\xad\x8c\x86\x17\x2e\x9f\x4b\xd9\xde\x96\x0b\xea\xc5\x38\ +\xfe\xe1\x30\x9f\xda\xf7\xb8\xb6\xb0\x49\xe2\x6c\xfc\x14\x21\x19\ +\x8e\x5b\xa9\xb0\xc1\x05\x5b\x19\x4c\x5b\xcb\x31\x5e\xf8\x70\x9b\ +\x6b\x67\x34\x60\x53\xca\xa8\x2b\x46\x9f\x15\x26\xd9\xcd\xd6\x28\ +\x97\x8a\xb0\xc6\x04\x24\x31\x9f\x90\x9c\xa7\xf8\x75\xd4\xfe\xfb\ +\x71\xe7\xfb\x3b\xe2\x06\xe6\xce\x97\x81\x44\xab\x9b\x78\xb8\xd6\ +\x61\x4f\x55\xa7\x83\xde\x82\xde\x32\xec\x6c\x9c\x77\x81\x1c\x39\ +\xe2\x44\xdd\xdd\x85\xc6\xb1\xb9\x74\x96\xb5\xc0\x1a\x5c\x3b\xc3\ +\x68\x83\xb1\x24\x5c\x1a\xcb\x38\x5b\x58\xd5\x89\x3f\x9c\xfa\x2a\ +\x8b\x5b\x8f\xdf\x03\xcb\x18\x7b\x58\x0c\x3b\x8e\xbc\xcb\x78\xb5\ +\xb0\xdb\x1c\xe3\x5a\xe1\x35\x5e\xb9\x4e\x8d\x73\xbb\xf6\xca\x67\ +\xf6\xb8\x28\x9b\xb8\xd6\x89\xb3\xbd\x70\xe5\x5f\x6d\xb3\xf4\xd4\ +\x9d\xb6\x25\x2f\xaf\xea\x05\x1b\xf5\xd2\xc7\x6a\x97\x75\xb5\xce\ +\xa7\xfc\x10\xa2\x54\x28\x70\x81\x8e\x2f\xee\x9c\x0e\x50\x86\x96\ +\x15\x3b\xd6\xd7\x71\xb4\x45\x1f\x6f\xfc\x47\x19\xbe\xc6\xc8\xe6\ +\x50\xb8\x52\xf1\xf4\xc9\xe3\xed\xea\xee\xa3\xed\xbd\xef\xfd\xb3\ +\x62\x3e\xd6\xe9\x88\xe7\xa0\x3f\x3b\x62\xd7\xb3\xeb\xfa\x1c\x5f\ +\x77\xa3\x8f\x8f\x86\x2f\x55\x7e\xbc\x7d\xf4\xc1\xdd\xf6\xf3\xdf\ +\xfc\xdd\xf6\xf5\x7f\x73\xb7\x5d\x5e\xbd\xda\x2e\x2f\xf3\x6d\x31\ +\x62\xfc\x57\xf9\x9a\x43\xdd\x5c\x2b\x96\x63\x59\xb5\xc0\x93\x25\ +\xba\xa2\x8c\x9b\x02\xec\x62\x50\x18\x03\x33\x08\x15\x8d\x17\x66\ +\xc1\x5a\x5f\xb1\xc8\xd6\x49\xe3\x44\xd6\x90\xe3\xfc\x75\xfb\x7d\ +\xac\xa3\x8b\xcb\xef\xff\xa3\xbb\x69\x4e\x88\x6d\x3c\x9c\x17\x60\ +\x85\x55\x99\xff\x9d\x46\x3c\x92\xfa\xbc\x6c\x23\x2e\xdb\x81\xf3\ +\x19\x3c\xac\x28\xf2\x74\x5d\x30\x6b\xbd\x60\xa9\xde\x88\x87\xe9\ +\xba\x7c\x74\xbb\x4f\x7b\x73\x61\x2a\xfc\x22\x6d\xf9\xe3\xa3\xf8\ +\xe2\xef\x9f\x0b\xec\x36\xd1\x27\x97\xcd\x42\x6e\x2d\x00\x5d\x9f\ +\xce\xa4\xcd\xc2\xda\x66\x69\xcc\x75\x88\x51\xdb\xc6\x4b\x2f\xc5\ +\x6a\x5c\x32\x0b\x33\x5b\x5d\x7c\x30\xf1\xcb\xb2\xe0\x34\xdc\xf5\ +\x67\x47\x4e\xe3\x9a\xb5\xce\xde\xf6\x30\xeb\xcf\xb6\xe9\x63\x42\ +\x01\xb0\x3f\xe7\xea\xda\x51\x46\xb6\x5d\xe3\xec\x0f\xf7\xd1\x7e\ +\x72\x9d\xa1\xf2\x25\x2e\x3c\xbe\x19\x4d\x7b\x1c\x9b\xee\x53\xc7\ +\x0a\xcb\xaa\x38\xd6\x6c\x47\xfb\xc3\x1d\x6f\x51\x76\x73\xa1\x25\ +\xc8\x11\xbc\xd0\xb3\x1c\x65\x1e\x33\x90\xcf\x53\xd6\xd9\x7a\x39\ +\xd6\x64\x41\x22\xdd\xce\xea\x27\x57\xaf\xab\x3f\x21\x14\x1b\x59\ +\x2f\xd4\xec\x89\x8a\xa8\x78\x17\x9d\xab\x7c\x8e\x26\xb8\xfa\x14\ +\x04\x2d\x19\x50\xdd\x87\xd2\xab\xb0\xa8\x08\x13\x68\xc6\x1a\xb4\ +\x6a\xbd\xdb\x35\xaf\xd1\x22\xb0\x29\x24\xa7\xbf\xb1\x89\x74\xdf\ +\xf6\xd4\xad\x9d\x23\x70\xfb\x54\x74\x8c\xd7\x4b\x7d\xca\xea\xab\ +\xb6\xbf\xa5\xe4\x93\xcd\x7d\x75\x77\x61\xdc\x2e\x26\xf7\xf1\x9d\ +\x97\xd0\x06\x8c\xc3\xca\x20\xd1\x79\x03\x5b\x0a\x18\xa1\xa5\xfb\ +\xf8\x76\x6c\xfb\xda\x2e\xdd\xc7\x29\xf6\x7a\x2e\x88\x47\x9d\x66\ +\x8d\x63\x9c\x7b\x8c\x38\xdd\x46\x2d\x18\x6b\x2c\xfd\x63\x5c\x24\ +\xb9\xb1\xee\x2f\x75\x5d\x9f\x38\x3a\x3d\xcf\xff\xc4\x95\x5c\x30\ +\x6a\x42\xe5\x75\x6e\xfb\x8c\x4a\xf5\xbd\xc2\x62\x4b\xf1\x4b\x57\ +\xef\xc3\xde\x8f\xd1\x67\x2e\xd9\xa8\xc5\x8d\x76\x89\x6f\x48\xeb\ +\x5a\xac\xc7\xe1\x31\x48\xf2\x56\x05\x2f\xd6\xb4\x61\xb4\xbe\xc1\ +\xb9\x76\x70\x4d\x7b\xfa\xe4\x66\x7b\xb1\xfd\x64\x7b\xf7\x77\xdf\ +\xa9\xfe\x00\xaf\x47\x50\xcb\x83\x0e\x3a\xe8\xa0\x83\xfe\x50\x3a\ +\x5e\xa8\x1d\x74\xd0\x41\x7f\xfe\xc4\x3c\xf1\x1c\x81\x3f\xe4\x7b\ +\x1d\xb9\x0e\x93\xd6\x9a\x10\xaf\x73\xcf\xbb\x9b\xed\xfd\x9f\x7d\ +\x6b\x7b\x7c\xfd\xe1\xf6\xce\x93\xa7\x7e\x00\x98\x49\xb8\x5c\x3c\ +\x1c\x84\xeb\xe7\x1e\x3d\x11\xf6\x43\x14\x26\xee\xe1\xfc\xc4\x15\ +\xc1\xf2\x15\x3b\xbf\xb9\x95\x3d\xb9\x3b\x4c\x86\xcd\x7c\x40\xa2\ +\x9b\x57\x5b\x39\x0c\xa1\x56\xae\xa4\x3e\x69\xcf\x32\x37\x1d\xf0\ +\xec\x53\xf5\xb5\x5e\x94\xb1\xbe\xa9\x87\xde\x3e\xd9\x48\x73\x74\ +\x15\x43\x4f\x8e\xd4\xb9\xaf\x23\x65\xd7\x0b\x39\x19\x69\xb7\xf3\ +\x80\xc9\x76\x5b\x48\xe1\x30\x22\x7d\xc6\x27\x91\xb5\x72\xf5\x52\ +\x13\x63\xc6\x68\x99\xdc\xf1\xa7\x96\xc9\xfe\xc9\x84\x98\x4a\xaf\ +\x2a\x2a\x38\x06\xd0\xb2\x55\x8d\x59\x2e\xb9\xa0\xc5\xe8\xfa\xa1\ +\x5d\x94\x71\x6e\x70\x40\xdb\x13\xbd\x96\x02\x87\x4f\xca\xe0\xd5\ +\x46\x3f\x65\x15\x6f\xf2\xa5\x08\x65\xbb\xc0\x18\xc1\xa6\xf1\x30\ +\xb3\x58\xaf\xfa\xd9\x77\x65\xca\x73\x8f\x00\xc5\xbe\xb1\x23\x06\ +\x5e\xf0\xb3\x75\xcb\x17\x30\xc7\x77\xdf\xa0\x76\x3c\x46\x89\x22\ +\xc5\xf9\x41\x80\xd4\x01\x96\xdd\xaa\x74\xd7\x3d\x47\x63\xc7\x2c\ +\x75\xce\x90\x43\x8a\x3f\x29\xbd\x6d\x9d\xb5\x8d\x66\xaf\x40\x73\ +\x81\xc1\x8b\x46\x20\x31\x4d\x02\xba\x8a\xe3\xb9\x99\x0f\x37\xdd\ +\xcb\x71\x42\x40\x0d\x23\xbd\x99\xe0\x40\x3b\xba\x87\x2d\xed\x98\ +\xd6\x7a\xe8\x27\x15\xda\x1c\x78\x35\x44\xbf\xfb\xc1\x40\x3b\x7d\ +\x24\x32\x16\xd8\x4e\x1c\xbe\x98\x13\xcb\x79\x0f\x1e\x69\xb0\xeb\ +\x81\x95\xb4\x8e\x0f\xdd\xb2\xf2\x98\x57\x5d\xec\x71\xc7\x49\x32\ +\x4e\x2d\xe3\xd6\x2e\xce\x0c\x96\xb1\x6f\x8c\x61\xa5\x8f\x3e\x54\ +\xdd\x8c\xa5\xf8\xd0\x97\xba\x1e\x0f\x1b\xaf\x07\xec\x8d\x55\xbc\ +\x7d\x43\xae\x31\x8c\xe5\xeb\xb7\xa3\xf7\xd2\xab\xda\x7d\xa9\xf5\ +\x46\x13\x10\x7b\xa7\x8b\xbd\x0e\x0d\xa5\x5e\x33\x8e\xf4\x7b\xca\ +\x39\x6e\x97\x2c\x9f\x5f\xa4\xf1\xc7\x27\x7c\xa3\x9b\xeb\x81\xe8\ +\xea\xf2\xc2\x3f\xfb\xf8\x78\xbb\xde\x5e\xfd\xf6\xdd\xed\xf6\x77\ +\xbf\x32\xbe\xde\xae\x90\x42\x65\xf1\x41\x7f\xb2\xd4\xa7\x3e\xbb\ +\x69\x1d\x06\x64\x4f\x17\xfb\x9d\x9f\xd1\xbe\xdc\xbe\xfb\x9d\x7f\ +\xb7\xbd\xf3\xb5\x5f\x6f\x4f\xbe\x24\xec\xee\xca\xc7\x24\x87\x0c\ +\xc1\x3c\x4c\x7d\xf9\x32\x0f\x11\xa9\x91\xe3\xad\x8e\x00\x1f\x10\ +\xd8\x64\x6d\xf0\x4d\xa4\x58\x3f\x60\x2c\xb2\x1a\x2c\xff\x47\xad\ +\x7d\x4b\x8c\x29\xc9\xd5\xda\xc9\xa2\xf3\x49\x4b\x3a\x55\x36\xe7\ +\x18\xbd\xe5\x7c\xf5\x3c\x30\xf5\xfa\xdc\x1b\xac\x98\xbc\xe8\x22\ +\xa6\xce\x5b\x71\x1e\x46\x4b\xaa\x3d\x74\xbe\x89\x90\x97\x67\xed\ +\xaf\x18\x37\xd9\xf9\xda\x26\x5f\xd8\x3f\xf5\xa8\xed\x07\x5e\xcd\ +\x27\x4e\xf9\x1c\xa3\x75\xc4\xc6\x97\x7c\x17\xf2\xf1\x8d\x33\x5e\ +\xaa\x55\xac\x73\x4c\x5d\xa3\x89\x25\x85\x7d\xe2\xf8\xc4\x2c\xbc\ +\xe0\x91\xdb\xed\xb5\xaf\xea\x2b\x7a\xb1\x3b\x07\x41\x7c\x34\xd2\ +\x8f\x76\xe0\xe4\xb0\xc2\xc7\xdc\xf1\x92\x9d\xb3\xb0\xc1\x2c\xc6\ +\xbb\x7e\xf1\x42\x79\x69\xd0\x75\xac\x5a\x8f\x42\xe2\xe2\xaa\x6c\ +\x38\xda\x5c\xe4\x9f\x6d\x2a\xd6\x1b\x22\xf5\xf2\x3f\x35\xe1\xf2\ +\xe3\x1a\x7a\x6c\x55\x2a\x5e\xf1\xf3\xec\x38\x08\x55\x7d\x87\x77\ +\xff\x0b\x6d\x8d\xed\xc4\x08\x68\x31\x9b\x6d\xaf\x46\x03\xce\x51\ +\xaa\x97\xe9\x0e\x57\x1b\xde\x7e\xd8\x25\x77\x41\xa1\xae\x9f\x5c\ +\xc4\xe5\xb8\x08\x67\x1d\x72\x8e\xc1\xa1\xe9\xaf\xba\x80\xd0\xce\ +\x10\x2d\xb6\x55\x15\x0d\x15\x5c\x54\xfd\x1b\x5c\x5e\xb7\x9d\x96\ +\xd3\x52\xf7\x81\x3e\x06\x49\x4c\xe2\xab\x96\xa9\xe7\xb2\xa1\xe9\ +\x19\xf5\xa0\xb5\x42\x11\xd9\x32\x8f\xf1\xd6\x28\x12\xb0\x8b\x2d\ +\xa3\xfb\x59\xc4\x36\xf7\xd6\x5b\x61\xeb\x1c\xa3\x22\xbb\x00\x2a\ +\xa6\x84\xa5\xea\x3a\xdd\xb2\x3e\x91\x8d\x5b\x1b\x71\xe8\x64\x9d\ +\xfb\x08\xc4\x61\x29\x88\xe9\x58\x71\xce\xff\xc6\xc2\x19\x4b\xc4\ +\x1e\x7b\x8a\x59\x56\x5f\x71\x46\xb5\x1e\xcf\xe0\xe5\xbc\xc2\xdf\ +\x52\xb9\x72\x0d\xc0\xde\xb7\x17\x2e\x4c\x5d\x4c\x1d\xf2\xc0\x19\ +\x57\xf9\x43\x05\xc6\x50\x62\xf0\x7b\x2c\xaa\x3e\x85\xcb\xee\xa5\ +\x70\x15\x53\x0e\x1f\xe7\x36\x9f\x5a\xb4\x99\x92\x31\x72\x92\xf7\ +\xba\x30\xef\x3d\x13\xa9\xbc\xcd\x6a\xfb\x82\xdb\x57\x01\x6e\xaa\ +\x94\xf4\xa1\xb0\xc2\x19\x8b\x61\xb6\xc5\x35\xf3\x27\x81\xf9\x93\ +\x24\x5d\xbb\x74\x80\x5d\x3c\xb9\xd8\xae\x1e\xbf\xb7\xfd\xf0\x47\ +\xff\x20\xe8\x43\x8d\xa9\xd9\xb6\xa1\x96\x07\x1d\x74\xd0\x41\x07\ +\x7d\x16\x74\xbc\x50\x3b\xe8\xa0\x83\xfe\x74\x29\xf3\xd0\xf0\x43\ +\x84\xef\x4d\xf3\xc3\x4f\x32\x7f\x5c\xe6\x9c\xf7\x9a\xbf\xbb\xdd\ +\x5e\xde\x5c\x6e\xbf\xfe\x6f\x7f\xb3\x5d\x3e\xbd\xdd\x9e\x32\x41\ +\x95\xd3\x0f\x98\x35\x61\xe5\xa1\x25\x2f\xd3\xc6\x5f\xde\xfb\x61\ +\x21\xb8\x74\x3f\xd4\xcc\x44\xde\x37\x18\x75\x93\x61\x42\x9a\x63\ +\x42\xa7\x7f\x23\xdd\x34\xed\x0e\x5e\x22\x0c\xed\x27\xed\x9d\x7b\ +\xde\x14\xd0\x07\xfa\x84\x0d\x44\x5f\xaa\x8f\xdc\x20\xa0\xfb\x27\ +\x2b\xd1\xb5\x1e\xee\x73\xf1\x06\x3e\xe3\x9b\x5d\x67\xd1\xa5\x0c\ +\xbb\xf3\x1b\x33\x2e\x5b\xdb\xa4\x6d\x15\x91\xf4\xa7\xb8\xf1\xe8\ +\x85\x8f\x58\x98\xf5\x0a\x64\xc3\x00\x84\x3e\x55\xfe\x6a\xd7\x12\ +\x78\xc5\xcb\x6e\x08\xf2\x56\x1c\x98\xda\xa0\x5c\x63\x64\xf8\xc6\ +\xd2\x8e\x40\x48\xe7\x45\x06\x59\x94\xa8\x7d\x13\x15\x96\x45\x8a\ +\xde\x65\x02\x13\xde\x11\x71\x04\x9b\x74\x6a\x7f\x12\xea\xcc\x0f\ +\x51\xfb\xef\xb1\x8a\x7b\x5c\x38\xca\xb0\xc5\x50\xcb\x1d\x55\x40\ +\xc7\xc1\xeb\x2e\x6b\x6c\x50\x03\xde\x40\x6c\xb7\x30\x58\xb7\x6b\ +\x5e\x89\x9b\xd1\xe2\x7b\x3e\x91\xab\x8c\x18\x59\x3a\x59\xbd\x0f\ +\xca\x17\x2a\x8d\x1c\x9f\x90\x3a\xcf\xca\xa6\x7b\x40\x91\xec\x75\ +\xdd\x57\x86\x2c\xdb\x38\xa1\x35\x2e\xc7\x0a\x2b\x52\xd2\x5c\xd4\ +\x81\xed\x6b\x1b\x53\xb2\xb7\xe5\xd8\x6e\x36\x4f\xea\xaf\x54\x76\ +\xc4\xe2\x74\x8e\xc8\xa6\x6a\x62\x90\xcf\xa4\xd1\xc7\x49\x6e\xdb\ +\x91\x6b\xb4\x88\xf0\x52\x7a\x3b\x99\x5a\x29\xcc\x3e\x63\x15\x67\ +\xdc\x85\x29\xe3\x44\x7c\x14\xde\xf7\x44\xd4\x98\xc2\x62\xe7\x19\ +\x4e\x3d\x8e\x54\xc6\x9c\x8c\x3b\x83\xef\xd5\x9b\x31\xeb\x38\xe6\ +\xf6\x90\x1e\xbb\x56\x4e\xfc\xc0\x3d\x36\x2e\x7e\xd7\xad\x7c\x35\ +\x86\x3a\x06\x9d\x7a\x6e\x03\x66\x2c\x6e\x5e\xf1\x93\x38\x64\xb1\ +\xf1\x8e\x29\x5f\xc7\xb2\x37\xa4\xe8\x13\x69\x9b\xad\x24\xe1\x7d\ +\x5a\x78\xd8\x80\x79\xe0\x1d\xef\xf5\x4a\xce\xf6\xef\xf4\xda\x26\ +\xfd\xad\x34\xf7\x5f\xd7\xcc\x9b\xe5\x5a\x73\x75\xf9\x6a\xbb\x7a\ +\x74\xb9\xdd\xbe\xff\xeb\xed\xfd\x9f\xff\x60\xdb\x6e\x78\x7c\x0f\ +\xd1\xc6\x7a\x24\xed\x8f\xa9\x83\xfe\x44\x29\x07\x50\xef\x3e\x51\ +\x29\xc2\x2f\xc4\xb7\xd7\x37\xdb\xcb\xbb\x97\xdb\xcf\x7e\xfd\x9f\ +\xb7\xaf\x7d\xe5\xd9\xf6\xf8\x49\x45\xd4\xee\xe5\x98\xb8\xb9\xb9\ +\xdb\xae\xaf\x79\x81\xc0\x31\xc3\xb8\x05\xce\xb1\x44\x2c\x8b\x23\ +\xab\x62\xc4\x1c\x76\x86\x52\x6a\xe9\x26\xe9\xb6\x17\xe9\x72\xea\ +\x93\xba\x95\x6a\x91\xf6\x91\xf5\x50\xd6\x0f\x70\xa5\xb3\xd8\x83\ +\xfd\x4a\xc7\xb5\x1f\xe6\xc6\xe7\x63\x5e\x9c\x97\x61\x15\x3b\x30\ +\x52\x26\x8f\xd7\xd3\x2c\x5d\xe7\x45\x7e\xd6\x6b\x8d\x75\xcd\x70\ +\xd9\x23\xde\xac\x5e\x49\xde\x7a\x8c\x77\x57\xed\x0b\xd3\xe3\x8c\ +\xbf\xd6\xc1\x9c\x47\x86\x70\x4e\x4d\x58\x50\xd5\x13\xd3\x75\x62\ +\xfd\xa2\x0d\x9d\xba\x04\x46\x57\x99\x38\x33\x31\xb2\xeb\x5c\x37\ +\xd6\x71\xe0\x16\xad\x67\x1d\x92\x4f\xe3\x4e\xc5\x75\x7b\xd6\xdd\ +\x37\x9a\x4a\x8c\x84\xb9\xeb\x24\xee\xa4\xbf\x70\x20\xe9\x1d\xb7\ +\x67\xbc\x94\x83\xa8\x53\x95\x90\x93\xb3\x5d\xa7\x83\xce\x35\x07\ +\xde\x31\x24\xd9\x55\xac\x4f\x75\xe2\x50\xe9\xbb\xf4\xa5\xa3\xa4\ +\xdd\x32\x61\x1f\xfb\x70\xf9\x76\x3c\x03\x77\xd0\xa2\xaf\x31\x2e\ +\xca\xb9\xc6\xc0\xa6\x36\x0c\x4c\x83\x92\x33\x23\x7d\x58\xe5\x29\ +\x2f\x06\xb5\x24\xd1\x7c\x62\x9a\x0b\x66\xb1\x9b\x63\x72\xc0\xe6\ +\xd0\xd4\xce\x91\xd3\x37\x2d\x95\x27\x9c\x76\x9b\x43\x65\xb9\x1f\ +\xa7\xde\x96\x85\x12\xf3\x00\xa5\xed\x19\x1f\x3a\xb5\x43\xfb\xac\ +\x5d\x92\x3b\xf9\x4f\x73\xa1\x79\xbb\x94\x1f\xda\xad\x6b\x93\xfa\ +\xa7\x33\x0e\xc5\x9f\x16\xb3\x9c\x8b\xbf\xa5\x56\x31\x36\x5b\x22\ +\xaa\x98\xfb\x0d\x81\x8d\xcc\x76\xaa\x10\x73\xea\x95\x7f\x2c\x85\ +\x2f\xec\x9e\x9d\x60\x8e\x95\x82\xee\xb1\xa2\x18\x7d\xb5\x09\x68\ +\xdd\xec\x7a\x8c\x77\x4b\x9c\x97\x6e\xb7\xb0\xc2\x13\x93\xf3\xd7\ +\xe3\x95\x71\xc6\x4e\xc6\xe5\xce\xc3\xc8\x92\xf3\x99\xb8\x8c\xa5\ +\xc4\xb7\x8e\xbf\x97\xb6\x0b\x93\xae\xc2\xb1\x2c\x83\xe8\x4b\xc4\ +\x40\x15\x32\xf0\xde\xa5\x86\xc0\x38\xf6\xcb\xd7\x71\x8e\x5d\x79\ +\x8d\xd7\x42\xdf\xfd\xd3\x8f\xea\x82\xe7\x53\x46\x95\x58\x9f\xc7\ +\x57\x17\xdb\x93\xe7\xd7\xdb\x2f\x7e\xf1\xcf\xdb\x8b\x8f\x7e\x2b\ +\x8c\xfd\x97\x88\x83\x0e\x3a\xe8\xa0\x83\x3e\x5b\x3a\x5e\xa8\x1d\ +\x74\xd0\x41\x5f\x2c\xd5\xc4\xf2\x1e\xad\xf8\xeb\xe6\x80\xf8\x1e\ +\xca\xd1\xf4\x26\xff\xc8\x2f\x85\x58\x66\xac\x92\xbe\x87\x88\x43\ +\xc4\x83\x86\x9b\xed\xe5\xef\x7e\xb1\x5d\xfc\xf6\xa7\xdb\xd7\x9e\ +\x3e\xcf\x1c\xd5\x0f\x0c\x34\xb9\xf6\xc4\x56\x13\xf4\x5b\x7e\xf2\ +\x51\x92\xff\x0f\xf3\xea\xd6\x2f\xd6\xfc\x82\x4a\x39\x61\x12\xa6\ +\x0e\x4a\xb1\x68\x9d\xe8\xba\xbb\xf9\x33\x46\x94\x06\x4a\x42\xf2\ +\xf5\xc3\x1f\x52\x58\x9d\x79\x5a\xb3\x85\xbf\xda\x89\xa7\x74\xf7\ +\xd9\x33\x71\x4b\x73\xbd\x48\xf3\x4d\x82\xa4\x27\xe9\xf6\xe5\xdb\ +\x0d\x79\x40\x52\x76\xf9\xe2\x0f\x1e\x7d\x65\xb5\x95\xd9\x7e\xfc\ +\xf4\xc3\xb2\xf4\x61\x57\x7f\x2c\x8b\xa9\x6b\x7f\xec\xee\xba\x31\ +\xdf\xfc\x20\xb1\xc3\x23\xc6\x46\xd9\x52\x58\xf8\x38\x1e\x59\xc4\ +\x26\x33\x34\x6e\x64\x6a\xe3\xca\x70\x55\x51\x21\x92\x75\xa3\x8f\ +\x0f\xc9\xe2\x3a\x21\xcb\x38\x4a\xe0\x6f\x2f\x54\x36\x1f\xcb\xe8\ +\x14\x7e\x19\xeb\x3e\x74\x6b\x0b\x11\xe3\xb8\xa9\x7e\x52\x36\x49\ +\xe9\x26\x77\x7c\x02\x8c\xae\x61\x17\x95\x2b\x74\x82\x37\xa1\xbb\ +\xf7\x52\xce\xb6\xb3\x70\x8a\x13\xf2\x89\x46\x86\x66\x91\xe2\xd8\ +\x36\xde\x3e\x41\x46\x0e\x73\x6d\xb3\xf6\x41\x23\x4e\x4a\x62\x46\ +\x51\x8c\xa0\xde\xc4\x52\xd6\xfe\x5d\xf8\x53\x51\x55\xee\xf6\x07\ +\x15\xbe\x03\xcf\x60\xad\x5a\x2e\xf8\x29\x75\xb5\x11\x2f\x25\x3a\ +\xeb\xb1\xdf\x26\xa1\xb9\x4d\x77\x74\x62\x9f\xad\xdb\x00\xd2\x5c\ +\x31\x4b\xa0\xe1\xc5\xa6\xb5\x6c\xd9\x50\x1f\xfb\x2b\xc5\xbf\xec\ +\xef\x95\x46\x78\x95\x16\x14\x38\x72\xce\xa0\x67\x29\x5d\xb8\x87\ +\x15\x23\x85\xca\x8e\xcf\xa2\x60\x15\xe0\x8c\x2f\xe5\xeb\x73\xd2\ +\x39\x4a\xb7\xcd\xd8\xe3\xe0\xc2\x3c\x16\x65\x9c\x72\x72\xe7\xa0\ +\xd1\xe0\x73\x6c\x3b\xe1\xaa\xd7\x63\x1d\xcc\xb7\x17\xe6\xb8\xda\ +\xb1\xfb\x76\x1a\x1b\x7d\x52\xdc\x7e\x7c\x5d\x99\x6b\x4c\xe9\x3d\ +\xe6\xb6\x8d\xaf\xe3\xc0\x9a\x65\x7b\x1d\x6c\xcf\x76\x90\xfc\x25\ +\x38\xba\x0a\xb9\x5f\xe5\x66\x01\x1f\x7d\xe3\x61\x52\xe5\xa0\xae\ +\xe3\xc8\x85\x24\xa6\xa4\xf3\x7a\x5d\x52\xb7\x99\xeb\x28\xd7\x9a\ +\x7e\x81\xd6\x7f\x6c\x82\xcc\x11\xf1\x68\xbb\x7a\x7c\xb9\xdd\x7d\ +\xf4\xc1\xf6\xeb\xef\x7f\x67\xdb\x5e\x7e\xe0\x7e\xd2\x25\x25\xa0\ +\x18\xe2\xa0\x3f\x51\x62\xff\xac\xfb\x88\xf9\x4a\x06\x06\x0c\x0a\ +\xe9\x18\x57\xdb\x9d\x7c\x3f\xfa\xfe\x37\xb6\x8b\xc7\xef\x6e\x5f\ +\xf9\x0b\xbe\xa5\x45\xec\x9d\xaa\xf0\x98\x58\xfb\x5d\xc7\xf3\x0d\ +\x3f\x9f\x8d\xc5\x61\x46\xd5\x66\x15\x3e\x2e\xe0\x07\x49\xf9\x14\ +\xb8\x86\xe4\xe7\xaf\x90\x14\xb1\xf3\x12\x0d\xea\x71\xb0\xed\x49\ +\xce\xe2\x7e\x57\x3e\xf2\x16\xfb\x78\x37\xe7\x5c\xdc\xfa\xd7\x09\ +\x58\x1c\x13\x7f\x3f\xc0\x35\xb7\x2d\x3f\xe7\x5c\x18\x4c\x12\x5f\ +\x9d\x17\xd6\x8b\xfd\x0d\x0d\xb7\x57\x39\xf9\x43\x27\x63\x6c\x0b\ +\x5e\xa2\x85\xd3\x2e\xa7\x26\x32\x9c\xbc\xd2\xd5\x3d\xbf\x6c\xd3\ +\xe2\x6b\xec\x72\x1a\x93\x47\x9f\xc4\x89\x13\x87\x7f\x3c\xb6\x4f\ +\xf9\xea\x42\x31\x17\xf2\x23\xf1\x17\x57\x82\xb6\xe3\xac\x75\x6c\ +\xdc\xed\xd1\x3a\x6d\x68\x4b\xb3\xcf\xed\xab\xf5\x90\x01\x3b\xb6\ +\x70\xfc\x6e\x59\xfa\xc8\x55\x71\x8e\xd5\x92\x20\x1c\x0b\x37\x95\ +\xeb\xa1\x30\x20\x4a\xe7\x39\x75\xec\xec\xf4\x35\x52\xd1\x8d\xd7\ +\xca\xb9\x7f\x27\x8b\xfd\xfa\x98\x53\x0c\x11\xb7\xa2\xec\x67\x7f\ +\x44\x1f\x73\x1c\xeb\xcd\xf8\xda\xbf\x70\xd2\x0c\xbe\x0f\x44\xda\ +\x44\xaa\x58\xeb\x0d\x65\xe1\x88\xfb\xed\xd9\x87\x7c\x23\xdd\x3f\ +\x7f\x5c\xf9\x94\x11\xab\xbe\x70\xda\xcc\x71\xba\xd2\x6a\xb9\x95\ +\xbd\x3b\xd4\x75\x95\x64\xed\xc9\xb9\x4c\x3d\xa7\x38\xf5\x36\x3d\ +\xb4\xbe\x69\x9b\x92\x33\xa3\xa9\xfb\x2b\xdc\xbe\x59\x39\xda\x69\ +\x6f\x96\xe4\x8b\xba\x46\xad\xe4\xdc\x4b\xb5\xa8\x89\x9e\xdb\x69\ +\xc6\x04\xa9\xe3\xc8\x4b\xb9\x4a\xd9\xeb\xe9\xaf\x63\x55\x04\x8e\ +\x5d\x86\x69\x98\x2a\xee\x1f\x8f\xd8\x9c\x9f\x91\xa7\x7c\x8a\xab\ +\xf0\x98\x81\x1a\x5f\xc6\xbf\x35\xe6\x1c\x13\xd3\xec\x3a\x8c\x02\ +\xe8\x2c\xc6\x94\x70\xd1\xe1\xc4\x64\x1c\xf5\x22\x39\xfd\xf1\x39\ +\xae\x75\x2f\x8b\x4e\x77\xc9\xca\xf8\x35\x96\xc2\x58\x3a\x97\x17\ +\x48\xdb\xb3\x03\xd8\x07\xa5\x3a\x8f\x99\xf8\xc2\x8a\x21\xeb\x3b\ +\xbc\xe2\xcc\xe8\xb5\xee\x9a\x42\xe6\xa5\x1a\x73\x49\x47\xe9\x5a\ +\x76\xa1\xa1\xf9\xd5\xf6\xec\xd9\xd5\xf6\xe8\xe2\x37\xdb\x3f\x7d\ +\xf7\xff\xda\xee\x2e\x3e\xf6\x13\x5f\xce\x87\x50\x67\x3e\xe8\xa0\ +\x83\x0e\x3a\xe8\x0f\xa5\xe3\x85\xda\x41\x07\x1d\xf4\xe7\x4f\xcc\ +\x0b\x99\x27\xf6\x5c\xf1\x93\xd2\xa8\x87\xb2\x4c\x32\x3d\x7b\x2d\ +\x5d\x93\xea\xf7\x6f\x9f\x6c\xef\x7d\xf3\xff\xdc\xde\x79\xf2\x6a\ +\xbb\xba\x54\x2c\xee\x9e\xdc\xf2\x50\x90\x87\x84\xb7\x37\x7e\x99\ +\xe6\x07\x21\xfe\xbf\x69\x92\xdc\x2c\xf8\x86\x41\x93\x72\xe1\xc4\ +\xab\xb0\xf4\x62\x5b\x4d\x8c\xb6\xca\x86\xdc\x37\x15\xbb\x3e\xc6\ +\xa0\x1a\xba\x1f\x04\x8d\x89\xb2\xc8\xb9\x91\x36\x12\xd8\xec\xbe\ +\xf8\x69\x46\xfa\xd2\xec\x3b\x04\xd6\x03\x9b\x07\x38\xf5\x10\xb6\ +\x1e\x0e\xf9\x7f\xc0\xf1\x72\xb0\xe2\xc7\x0d\x47\xb1\xc0\xd2\x2b\ +\xef\x8a\xf5\xfa\x17\xee\x07\x2e\xd2\xdd\x97\x8a\x5f\xfb\x25\xc5\ +\xb6\xd9\xf6\xaa\xd7\x7a\x99\x4f\xed\x82\xd0\xb5\x4d\x94\x51\xf5\ +\xca\x6e\xdc\xbe\x15\xa3\x08\x70\xcf\xaf\xbb\x6c\xb6\xaa\xf5\xa2\ +\x35\x66\x90\xec\x86\xdd\x26\xc4\x93\x3a\x03\x71\x3a\x8f\x1d\xa1\ +\xe8\xb9\xc1\x6a\xaa\xd0\xc8\xd6\xed\x78\x80\x9b\xca\xee\xbe\xb5\ +\x6c\x7d\x98\x6d\x37\xcf\x30\x33\xb4\xca\x53\x9d\x3a\x63\xb7\xc8\ +\xd6\xa6\x4d\x4c\xe3\x65\x9f\x6d\xc7\x85\xd8\x82\x9b\xfb\x85\xc1\ +\x88\x2b\xee\x5c\xcd\xed\xcf\x03\xac\xe2\x53\xb2\x5f\x1f\x24\x6a\ +\xc9\xf3\x44\xfd\xe6\xf3\x94\xf6\x3e\x21\x9f\xd0\x29\xfc\x40\xd8\ +\x7d\x07\xab\x88\x7c\xb0\xc2\xa4\xe1\xee\x58\x03\xb5\x4d\x51\x5d\ +\x40\xeb\xfa\xb2\xdd\xdb\x5f\xf8\xa8\x50\x31\xec\x17\x18\xb5\x78\ +\x10\x46\xa7\x7a\x80\x18\x93\x7c\x2e\x38\x7d\xe9\x0b\xa5\x7a\xce\ +\x39\xef\xe3\xbd\xdb\x6d\x00\xa5\x5e\xe2\xf6\x31\x23\x60\xc7\x19\ +\x67\x51\x02\x58\xb7\x63\xe2\x1e\x73\x60\x1f\xc8\x39\xc2\x58\xf0\ +\xf5\x38\x83\x1a\x1b\xe1\x22\x98\xd4\xfe\x9f\x2e\xf1\xa3\x0b\xac\ +\x7a\x03\x1b\x63\x20\xf5\x82\x7b\xec\x43\xda\x07\x46\x3e\x64\xea\ +\xaf\xe3\xe6\x18\x1f\x2d\x19\x33\xe1\xca\x5b\x58\xc7\x0d\x7b\xc1\ +\x83\xf1\x6d\xe9\xe5\xa5\x9d\x99\x3f\x86\x80\x93\xcf\xe3\x7b\xb7\ +\x6d\x3b\x7d\x1d\xeb\x37\xfa\x0b\xfb\xcc\x55\xdd\x8e\xe9\x78\xf9\ +\x58\x2a\xce\x75\xb1\xcb\x67\x7f\xc9\xf4\x01\x55\xd8\x68\x53\x92\ +\x3f\x40\x71\x7d\x57\xde\x2e\x2e\x2f\xb7\xe7\x8f\xaf\xb6\xed\xf7\ +\xbf\xd8\x3e\x7a\xf7\xbb\x1b\xbf\x31\x97\xeb\x9c\xdd\xa6\x3e\x86\ +\x0e\xfa\x13\xa5\x1e\x23\xd6\x7d\x66\xac\x00\x9e\x62\xf3\x7f\xd1\ +\xc4\xdf\xf9\xc9\xff\x67\xfb\xea\x5f\xde\x6c\x4f\x1e\x5f\x6f\x17\ +\xbc\xdc\x92\x8f\x63\x81\x63\x82\x6f\xa7\x71\x28\xfb\x10\xe2\x08\ +\xac\xe3\xce\x87\x17\xec\x8c\x65\x5b\x0f\x45\x9e\x1e\x25\xdd\xa9\ +\x96\xa7\x14\x7c\x7a\xa5\xad\x79\x69\x97\x25\x46\xe9\x3a\x6e\x75\ +\x50\xb3\xe4\xe5\x16\xc7\x71\x24\x08\x3a\x9d\xb7\x6d\xc9\xc3\xd0\ +\xd2\x89\x28\xbb\xbf\xcd\x96\x6f\xb4\xe5\x5b\x69\xe3\x27\x1e\x5d\ +\x96\xde\x75\x1d\x2f\x9d\x53\x6a\xe4\xa4\xbd\xee\xd7\xfc\xa6\x58\ +\x70\xba\xdf\x63\xba\x8d\xc2\x12\xdb\x3f\xf3\x58\xae\x89\x4b\xe7\ +\x94\xa7\x17\xf9\xb0\x23\x92\x7b\xcc\x6d\x17\xd6\xa7\xea\x16\xe6\ +\x3e\xfb\xb4\x77\x0e\x30\xe7\x11\x23\xfd\x42\x0f\x43\x9f\xb8\x58\ +\x0a\x97\x24\x10\x3d\xeb\xe8\xd6\x5d\xd7\x71\x0e\x00\x58\x98\x00\ +\x68\xc1\x66\xfc\x9e\xe3\x58\xb9\xe2\x11\x0d\x15\xd3\xb7\xb9\x6e\ +\x53\xa6\xff\xe2\x6e\xae\xed\x85\x9d\x53\x4a\xd7\xa1\x18\xb6\x6b\ +\x41\xc8\xec\x03\x62\xf0\x75\xbd\x00\x84\xb4\x7e\x8e\x93\x22\x6a\ +\xb2\x8e\x36\xcc\xec\xb7\xec\x85\x04\x2d\xec\x68\xf6\xce\xe4\xf8\ +\x04\x9f\x23\x57\xc1\xbf\xc4\x18\x03\xba\x8f\xa3\x9e\x0d\x6f\xa3\ +\xc8\x58\xf1\x8e\xd8\x26\xa0\xf9\x04\x2a\xd9\xca\xb0\x4b\x9b\x65\ +\xb6\xe7\x12\x60\x75\x85\x2c\x87\x7f\xf5\x4c\xea\x1c\x67\x3c\xfa\ +\x30\x62\xac\x9e\x39\x82\xc4\x37\x29\x7b\xa6\x09\x5f\xfc\xfb\xa8\ +\xb6\x12\x9b\x3b\x91\x10\xc7\x5b\x53\x7b\xeb\xd3\xd6\xb0\x87\xde\ +\xb6\x0b\xe5\xb2\xa3\x48\xa0\xfd\xe6\xd6\xab\x97\xd6\xd9\x7e\x7d\ +\x4c\xe6\xb8\x88\x1e\x36\xb5\x8e\xcf\x22\x40\xf2\x85\xfb\xfc\x6d\ +\x3d\xb2\xc6\x2c\x96\x92\x3e\xfa\x74\xa2\xe5\x5c\x9f\xb8\xe3\x85\ +\xd3\x87\x31\xbe\x82\x15\x27\x0e\x9f\x6b\xd9\x2e\x6d\xfa\xa9\xc3\ +\x18\xad\x32\x6d\x6b\xbc\x1d\xba\x23\x15\x83\x1f\x5c\xe3\xb6\xbd\ +\x39\x33\x7a\x7e\x43\x2c\x71\x9c\x4b\xd1\xb5\x68\xa7\x8c\x76\x15\ +\x4f\x41\x7b\xa5\x3a\x47\xfb\xfa\xfe\x07\x22\xc4\x18\xd2\xdb\x98\ +\x3c\x1d\xb7\xfa\xa6\x81\x70\x3e\x29\x1e\xfb\xd9\x56\xbe\x67\x4f\ +\x10\xf2\x42\xf2\xd1\xe5\xc5\xf6\xa5\x2f\xbf\xdc\x7e\xf1\x9b\x7f\ +\xda\x6e\xee\x7e\xaf\xee\x72\x1d\x22\x06\xda\x1f\x6d\x07\x1d\x74\ +\xd0\x41\x07\x7d\x7a\x3a\x5e\xa8\x1d\x74\xd0\x41\x7f\x5c\xea\xf9\ +\xdc\x4a\xa7\x73\xbb\xb6\x33\x3f\x7c\x3b\x3a\x17\xfb\xa6\xfa\xed\ +\xab\x49\x66\x9a\xa5\x14\x97\x6f\x60\x9a\xec\x5e\x3e\x7a\xb9\xdd\ +\xfe\xf4\xbb\xdb\xd5\xf3\x27\xdb\xd5\x85\x26\xbf\x9a\xd6\xfa\x46\ +\xbf\x26\xda\xb7\x37\x37\xd6\xdb\x86\x65\x88\x99\x24\xb7\x54\x05\ +\x71\xcf\x6b\xdb\x3e\x4b\x69\x7c\xf4\xa1\x4c\xb5\x9b\xfe\x60\x53\ +\x73\xd6\x5e\xf2\x38\xa7\xda\x51\x9b\x69\x4f\x72\x6d\xbf\xfa\xc4\ +\x4d\x02\x36\xfd\xf4\x83\x1f\x24\x3c\xbe\x59\x46\x2c\x32\x37\x30\ +\xa3\xce\x8e\xe3\xeb\xba\x23\x9f\x99\xf6\xd6\xd8\xd8\xbe\x69\x30\ +\x4e\x6c\xc5\x14\x96\xbe\x85\x05\xca\x8f\xab\x6c\x18\xbb\xd8\x36\ +\x31\x16\x2d\x1b\x8f\x9a\x62\x6e\xcc\x6a\x4a\x9c\x98\x26\xac\x20\ +\x75\xfb\xca\x0d\x4e\xd9\x89\x2f\xdd\x58\xd1\x62\xa4\x7f\x28\x36\ +\xac\xd8\x5d\x70\xa9\xa5\xe3\x6b\x74\x21\x43\x7b\x4f\xd7\xb9\xc7\ +\x2a\xd6\x26\xa1\x55\xb6\xfe\x10\x75\xcc\x5a\xa7\xa5\xb9\x94\x6c\ +\x0b\x8a\x85\xca\xee\x3e\x0c\x3b\xc2\xca\x80\x7d\xac\xb2\xe1\xeb\ +\x46\x72\x04\xb5\x3f\xb2\x79\x52\xea\x98\xd3\x8b\x3d\x9d\xa9\xd4\ +\xe6\x99\xe8\x33\xb4\x54\x6e\x75\x81\x1e\xa2\x37\xb8\xef\xd1\x69\ +\xfc\x83\xcd\x9c\x38\xa2\xaa\x5c\xb0\xd7\xd1\x08\xb1\x92\x2d\x60\ +\x75\x57\xb7\xb6\x4c\x9e\x6c\xcb\x25\x67\xc7\x1b\xe2\x98\x67\x3f\ +\xa1\x43\x15\x2f\xda\xa5\x69\x63\x01\xad\x52\x14\x67\x9f\xf3\xf1\ +\x89\xba\xe4\x5c\x89\x00\x7a\x51\x95\x44\xa3\xc5\x82\x82\x56\x04\ +\xb1\x24\xe2\xe7\x5c\x8d\xb6\x3f\x11\x6e\x23\x81\x83\x47\x1d\xf3\ +\xde\x87\x9d\x7c\x8c\x49\xdd\xcf\xd8\xf8\xbb\xae\x7d\x35\x70\x8c\ +\x31\x8d\x38\xd8\x76\xea\x64\xfc\x2b\x9f\xc7\x36\xe9\xc6\x13\x93\ +\xb1\xb3\xe5\x8c\xeb\x07\x44\x9d\x63\xf8\x4f\x38\xeb\x81\x94\x3d\ +\xfe\xc0\x41\x75\x25\xfd\x6d\xe8\xd2\xb7\x57\xbc\x4c\xeb\x7a\x79\ +\xa0\x0f\x77\xee\x3c\x5c\x61\xbc\xa7\x2f\xd3\x9f\xbe\x54\xac\x9a\ +\xf2\xf6\x62\x9b\x08\xcf\x8b\x44\x7c\x48\xb1\xb0\xc4\xb5\x1e\x49\ +\xfd\xf4\xb3\x39\xb6\x59\xc7\x82\x7d\x92\x77\xfe\x03\x14\xd9\xa3\ +\x9f\xe8\xf8\x1e\x6d\x8f\x75\x7c\x3e\x7d\xfa\x78\x7b\x7a\xfb\xe1\ +\xf6\xdb\x1f\x7c\x5f\xeb\xfa\xb1\xdb\xcf\xc8\x4c\x0c\x25\xd6\xb4\ +\x3f\x33\xfa\x8c\xd3\xfd\xab\xa7\x71\x42\x8b\xbc\xef\x6b\xdf\x69\ +\x5c\xe7\xa7\xb7\x7e\xfd\xde\x77\xb6\x9b\x8b\x1f\x6f\x5f\xfa\x2a\ +\xc7\x08\x8f\x02\x39\x46\x18\x87\xa4\xe9\x78\xe0\x67\x06\x6f\xfc\ +\x53\x77\xf8\xe1\xec\xa2\x7e\xc8\x6b\x2b\x69\x07\xdd\xbf\x64\x2c\ +\x00\x2f\xf8\x6d\x76\x40\xfb\x74\x4b\xec\xff\x9f\xa6\x3e\xb4\xcb\ +\x79\x63\xa4\x47\x59\x70\xf8\x61\x2a\xec\xfe\xe6\x7c\xea\x87\xad\ +\xe0\xe8\x7d\xec\xfb\x21\xae\xf5\xf2\xfb\xa1\xae\x16\xaf\x5f\xe6\ +\x8c\xc4\x77\xfd\xbc\x58\x2b\xbb\xe4\x98\x5b\x72\x8e\xcb\xaf\x33\ +\xdc\xb9\x07\x73\x0a\xa9\x6b\x64\xe0\xcc\x50\xa8\xb1\xde\x66\x79\ +\xa8\x0c\x46\x6c\x74\x0a\xd7\xab\xba\x14\xe9\x53\xfc\xf3\x41\xb4\ +\x57\xd9\x7d\x63\xe3\x74\x1d\xf0\xf6\x3b\xa4\x8a\x51\x8f\x45\xfb\ +\x4e\x5b\xa7\x02\xa2\xa4\x4e\xf6\x1f\x0c\x7e\xbf\x2d\x6d\x73\x07\ +\x94\x4f\xb6\x9a\x74\x85\x58\x45\xad\x22\xc5\x16\x2d\x4b\x77\x9d\ +\x13\x2c\x0c\x1e\x1f\x8e\xc6\x1d\x64\x4a\x5b\x2c\x6d\x27\x28\x6a\ +\x9b\x91\xe4\x41\x99\xbe\xe6\xe0\x18\x6d\xb3\xee\xcd\x6d\x2f\x71\ +\x66\x62\xc9\xd9\x50\x7a\x51\xf0\x19\xee\xf6\x7b\xc7\xb0\xb5\xc6\ +\x4e\x12\x77\x65\xb1\x89\x7c\x01\x52\xd7\xea\x12\x53\xca\x52\x3f\ +\x6a\xea\x49\x15\xab\xdf\x2c\xc6\xaa\xbd\x20\xb6\x83\x27\xcd\xa0\ +\xca\xd3\x58\x72\x16\xb6\xd0\x12\x12\x62\x1b\x75\xe5\x72\x46\xd5\ +\x22\xe9\x17\x9b\x86\x89\x73\x85\xa5\x2c\x4a\xc0\x3d\xea\xd3\x3d\ +\x7e\x59\xf0\x8e\xf6\xb9\xf6\x69\xce\xc5\xd6\x7a\x3f\x44\x0e\xe9\ +\x7a\x89\x1c\x35\x2c\x28\x6a\x3d\x54\xac\x2d\x54\x54\x68\x18\x13\ +\xed\xcd\x13\xa5\xf0\x02\xb1\x0a\x19\x6e\x87\x2c\xba\x6d\x48\x8a\ +\x6d\xd4\x62\xef\x83\x32\x6c\xa3\x3a\x2e\xb1\x8c\x21\xae\x73\x86\ +\x29\x88\xeb\xf3\x3c\x12\x58\x92\x31\xa7\xa4\x6d\x1f\x3b\x8c\x7b\ +\xd6\x12\x8f\x6c\xbd\xeb\x75\x8c\xd8\xff\x2b\x12\xbc\xaf\x15\xd4\ +\x60\xcc\x54\x0c\x7a\xc6\x53\xe1\xb4\xe5\xf1\x57\x36\x9a\xe6\x4a\ +\xfc\xe1\x82\x5f\xa1\x75\x8c\x99\xbf\xf7\x90\xcd\x98\xab\xf1\xd6\ +\xf9\x7a\x1c\xa7\xa6\x24\x7f\xe9\xc3\x1f\x36\x98\x97\x05\x0f\x44\ +\x0e\x7d\x42\xa5\x80\xb1\x47\xb3\x0e\x0b\x7b\xc9\x3e\x4f\x4c\xe3\ +\x91\xb4\x6a\xbc\x80\xee\x27\xe3\xf0\xad\x56\xbe\xd7\x8f\x00\xbe\ +\x71\x7d\xf1\xe8\x72\x7b\xfc\xb5\x0f\x84\xfd\x7c\xfb\xed\xef\x7f\ +\x2a\x3b\xb8\x43\x9c\xe4\xa0\x83\x0e\x3a\xe8\xa0\xcf\x82\x8e\x17\ +\x6a\x07\x1d\x74\xd0\x1f\x97\x4e\xef\x3d\x5e\x47\x6f\x8a\x7d\x1b\ +\xff\xeb\x62\xda\x57\x0f\x56\x32\xcf\xac\x89\xe6\x5a\x4f\xfa\xed\ +\xcd\x8b\xed\x83\x1f\xfd\xd3\xf6\xe8\xfa\xa3\xed\xe9\xd5\xa5\xab\ +\xf0\x30\x8f\xa9\x33\x93\xf6\x5b\xbe\x95\xc6\x0b\x35\xff\xd4\xa3\ +\x72\x88\xf3\x70\x93\x49\xaf\x66\xbc\xd8\x85\x4f\x56\x0e\xab\x65\ +\xf7\x24\xb7\xc4\x20\x35\x56\x5d\x1c\xe4\x68\x63\xd4\x45\x86\x7c\ +\x23\xc0\x82\xac\x9c\x9d\x7f\x2f\x79\x98\xaa\x7e\x71\xb3\xd0\xcc\ +\xc3\x4d\x6e\x0c\xd0\xb9\x81\x28\x7c\x3c\xb8\x95\x9c\x0f\x67\x95\ +\xc7\x71\xb0\xf2\xb1\x9e\xc4\x56\x1d\xeb\xc4\xb5\x5d\x75\xc0\x86\ +\x7f\xf8\xa8\x9b\xbe\x91\xc7\xec\xd8\xe0\xf8\xd9\x4e\x5e\x4f\x73\ +\xfb\x57\x2c\x90\xf5\x14\xca\xb3\xec\xc6\x82\xc0\x12\xa7\xc2\xd2\ +\xa8\xcc\x36\xc0\x53\xcb\x2e\xb7\x8f\xdf\xd0\x9e\xc0\x11\x27\x3e\ +\x63\xc5\x1d\xb3\x92\x7d\xe0\xa7\x0e\x91\x7d\x62\x7a\xd0\xfa\xa7\ +\xa1\xd3\xba\x6d\x0f\x3e\x01\x4e\x6d\x73\xab\x2a\x90\xda\x74\x7b\ +\x3a\x8d\xdb\x29\x10\x6b\x21\x96\xdd\x39\xa0\x0e\xe9\x36\x1b\x27\ +\xd6\x37\x94\xbe\x69\xcf\x8d\x5f\x85\x0c\x5e\x8d\x45\x1d\xdc\xb4\ +\xc3\x4b\x49\xbe\x1c\x4f\xe1\xc2\xd0\x4f\xeb\x88\x59\x5f\xf8\x14\ +\x87\x4e\xb1\x95\xa1\x96\x4d\xa7\x76\xd3\x43\xf8\x4a\xee\x33\xf2\ +\x4c\x70\x1f\xdf\xf6\x2f\x1c\x45\xe3\x86\x0d\xf4\xe2\xa2\xe4\xea\ +\xda\x45\x1c\xf7\x23\xae\x7c\xb6\xd1\x63\x2f\x29\x4c\x3b\xdb\x46\ +\x21\x84\x4b\x8d\x95\xfd\x6a\xf2\x06\x2f\x7d\x25\xef\xef\xfb\x6d\ +\xa0\x9b\x4b\x69\xdd\x5b\x44\x9f\xdd\xb7\xc5\x90\x78\xa4\xdb\x4c\ +\x51\xe7\x30\x35\xb4\xb4\xbe\x70\x9f\xe3\x14\x3d\x6e\x0d\x9f\xf4\ +\x47\xf2\x27\xa0\x06\x8f\xf2\x79\x4c\xb3\x2f\x75\x86\xaf\xc6\x36\ +\xe7\xa9\x31\xce\x36\xb1\x85\xdb\x67\x7f\xc6\xd9\x1c\x68\xed\xeb\ +\x36\x96\x38\xeb\x19\xb3\xbd\x0e\x96\xa9\xdf\xe3\x68\xda\x80\xf3\ +\x32\xad\xfd\x7c\xbb\x18\xcc\x31\x95\xa7\xfb\x9e\xbc\xe4\xcb\x7a\ +\xb4\xdd\x98\x71\x78\x6c\xd7\xe8\xf6\x23\xcb\x3f\xb6\x07\x7e\xda\ +\xad\x5c\xa3\x4e\xf5\xc7\xf1\xe0\xae\xc3\xc3\xaa\xee\xab\xae\x9f\ +\xf4\xb5\x73\xe8\x73\xc5\x75\x8f\x6f\x30\xbd\xff\x33\xf1\x7b\xc2\ +\xb8\x65\x91\xa3\x68\x1e\x2d\x67\x8e\xa7\x3f\x84\x3e\xe3\x74\xff\ +\xea\x68\xdd\x25\x73\x77\x89\x64\x08\xc7\xf5\x88\x7f\x96\xa5\x5b\ +\xd0\x97\xda\xa7\xdf\xfc\xf6\xff\xbe\xbd\xf3\xd5\x97\xdb\xa3\xab\ +\x8f\x15\x92\x59\x15\xd5\x7c\x7c\xe8\x58\xbd\xb9\xe1\xe5\xd0\x7c\ +\x80\xe8\x45\x01\xe3\x81\x22\xa9\x21\x61\xf1\x17\x79\x3c\x49\x9b\ +\xa3\x3f\x45\xd3\x6c\x4d\x72\x8d\x71\x5d\xb8\xb2\x55\x5b\xb6\xdd\ +\x06\xad\xea\xb8\x85\x97\xe3\x7c\xb0\x71\xf4\x3c\x78\x1d\xba\x71\ +\xce\x79\xa5\x19\xe7\x09\xc7\x7d\x8e\xfd\xc4\xb8\x76\x95\x65\xab\ +\xfe\x60\x10\xe7\x8b\x9d\x36\xc0\xa5\x7b\x42\xa9\xed\xa5\xb9\x5a\ +\xfb\x24\x8a\x19\x63\x2b\xae\xc0\x71\x4a\x96\xdf\x75\xb4\xf8\x23\ +\x36\x59\x4f\x1d\xc7\x68\xc8\xb9\xe1\xfc\x75\x5d\x9c\xda\x4e\x08\ +\xd6\xc9\xb1\xe9\x1f\x98\x1a\xab\x98\xe0\xd8\xfe\x26\x9c\x71\x74\ +\xf0\xc4\xb8\x4e\x13\x6a\xed\xf3\xf4\x29\x50\xcf\x03\x1d\xba\xe3\ +\xea\x1f\x4b\xeb\x3b\xec\x24\x76\x2c\x36\x5d\xa4\x9d\x5a\xd0\xcd\ +\xfb\x7a\xad\x8f\xbc\x2c\x1d\x5b\x61\x15\xb0\x63\x70\x6f\xff\xd3\ +\xf5\x35\x23\xb0\x25\xf1\x3b\x76\x72\x80\x66\x40\xc9\x32\x2d\x85\ +\x85\xbd\x71\x4b\xc7\x01\x73\x36\x95\x6a\xee\xd8\x19\x63\xb9\xd2\ +\x0c\x0e\x5b\xa0\x28\x7f\x03\x83\xf6\x81\x94\x7d\xe6\xc0\xa1\x19\ +\x33\xb1\x07\x88\xce\x98\xd1\xc3\xa7\x50\xa8\x2d\x98\xac\xd1\x39\ +\x3e\x7a\xce\xc3\x0b\xfb\xa8\x05\x0c\x29\x5a\x55\xe9\x98\x13\x2a\ +\x6d\x89\x59\xd7\x66\x57\x77\x94\xf2\xd7\x79\x30\xc9\x5b\xbb\xd5\ +\x13\x02\x88\x7f\xba\xa8\x8f\xc5\x76\x86\xd8\x5e\xb5\xff\x5c\xcc\ +\x3e\xac\xb5\x50\x6d\x29\x68\x41\x45\x89\xef\x36\xcc\xc4\x10\x5f\ +\xb9\x9c\x17\x69\xaf\x15\x73\x62\x60\xe2\x51\x38\x66\x19\x3f\xe0\ +\xc6\x7d\x8a\x96\x5d\x75\x11\xe5\xc3\xec\xe3\x1c\xf6\xd1\xb3\xda\ +\xcd\x8c\x25\x2c\x3a\x76\x19\x9b\xc8\x19\x0e\xd6\xb1\x39\xbe\x91\ +\x13\xb7\xcf\x2f\xb5\x82\xf1\xf2\xeb\x56\x63\x69\xe2\x95\xc3\xf9\ +\xba\x7e\xe9\xa0\xb4\xe9\x97\x60\x58\x44\xa1\xc3\xbc\x56\xeb\xa5\ +\xc6\x64\xe1\x79\x59\x15\x94\x3a\xc1\xc1\x92\x77\x2e\x59\x47\x15\ +\xde\x00\xd8\xa6\xd2\x81\xd1\xac\x97\x3d\xf5\x1c\x3f\xc1\xb4\x00\ +\x1a\x37\x1c\x5f\x4b\x71\xaf\x57\xc6\x52\x64\xee\xcd\xd3\x1f\x91\ +\xae\xb1\x4f\x9f\x5c\x6e\xdb\xe5\xaf\xb7\x7f\xfc\xf6\x7f\xd6\xd5\ +\x96\xb9\xe2\x7a\x0e\x12\xe5\xc8\x83\x0e\x3a\xe8\xa0\x83\xfe\x00\ +\x3a\x5e\xa8\x1d\x74\xd0\x41\x5f\x2c\x9d\x9b\xd3\xbd\x6e\x8e\x37\ +\x67\x83\x7f\x58\xdc\x43\x75\xfd\xa6\x4c\xce\xd5\x2f\xfd\x76\x7b\ +\xb2\x7d\xf0\x4f\x7f\xc7\x23\xa0\xed\xc9\x65\xdd\xe6\x30\xab\xe5\ +\xa3\x19\xad\x5f\xa6\xdd\x6a\x42\xce\xc3\xcb\x9a\x7c\x67\xd2\x3e\ +\x99\xe0\x15\x53\xe1\xf4\x7e\x59\xd6\x8c\x0f\x21\x5e\x6f\xa0\x4c\ +\xaf\x35\xc9\xd9\x6a\x4d\x9a\x01\xb8\x33\x41\x9a\xb9\x21\x81\x79\ +\xa0\x33\xfb\xc2\x8c\x3c\x0f\x5f\x99\x99\x57\x8c\x7d\xb1\x59\x17\ +\x63\xe2\xd4\xab\x78\xd5\xb5\xf4\x0b\x37\x72\x82\xc5\xe7\xfa\x65\ +\xd7\x8c\x7f\xc4\x08\x54\xe7\x4a\xde\xe3\xe0\xb4\x13\x9b\xd0\x69\ +\xcf\x6d\x57\xeb\x87\xed\x2a\x00\xd0\x8c\xb3\x85\x8e\x64\x9f\xa6\ +\x1b\x58\x14\x45\xdc\x20\x26\x26\x37\xe2\xda\x72\xbd\x61\x85\xab\ +\x8a\x65\xea\xcc\x7a\x40\x46\x86\xa4\x5c\xf6\x88\xc1\xa8\xa6\xb2\ +\x47\xaa\xa2\x36\x9d\x67\x18\xb9\x89\x1e\x71\xed\x2b\x72\xc8\xc2\ +\x4d\x3b\xac\x94\x7d\xde\x85\x8b\x16\x75\x47\xe7\xc2\xc7\x66\x29\ +\x89\xb2\xfa\x73\xbc\xf6\x4d\xb7\xf4\xc5\xd9\xaa\xcd\x73\xb8\xeb\ +\x94\xd1\x34\x9c\x93\xd9\x1f\xcd\x6f\x45\xd4\x9b\x62\x51\x4e\xa9\ +\x1a\x38\x43\x0f\x7b\xce\x53\xc7\xbe\x6d\xbd\xd7\xc7\x2c\x5b\x7d\ +\xdd\x01\xc5\xde\xbf\x06\xf7\xd4\x18\x23\xc1\x2e\x66\xd1\x23\x7b\ +\x7f\xc9\x6e\x1e\x0d\x89\xfa\x09\x95\x3e\x3d\x1e\xa1\x36\xdd\x7f\ +\xd1\x2f\x60\x19\x3f\x73\x4e\x41\x4e\x30\xcb\x28\x3b\x9a\x11\x21\ +\x52\xbb\xbe\x78\xf5\x21\xe9\xa7\xb5\x40\xc3\x63\x45\xa0\xcf\xc7\ +\xd2\x63\x4b\xd7\x41\xe3\x73\x1d\x83\x03\xc8\x32\x7e\x06\x91\xf6\ +\xd9\xef\xdc\x0b\xe6\x31\x88\x50\x17\x93\x93\x54\x02\x09\xf3\x7f\ +\xc0\x4a\x77\xee\xd6\x6b\x5c\x94\x9e\xf1\xb1\xb1\xd4\x35\xa6\x6b\ +\xc7\xf8\x69\x5d\xfe\x78\xa1\xe4\xe4\xf8\xb6\xdb\xdb\xf1\x47\x0e\ +\xa3\x2e\xd2\xb9\x19\x63\xc5\xf6\x4b\x82\x79\xbc\xc7\xe6\xe5\x55\ +\x8d\xc1\x4b\x3d\x29\xd1\xe9\xa7\x75\xb5\x33\xd6\x6f\xd1\xdb\x2f\ +\x9d\xf8\x47\xae\x83\x1f\xc9\xc3\x9c\xe8\x23\xef\xc8\xd9\xf5\xcb\ +\x5f\x39\x6c\x2b\x26\xdf\xba\x11\xdf\x94\x94\x9f\x9f\xfc\xe3\xd8\ +\xba\xd4\xb5\xf6\xe2\xe3\x0f\xb7\x0f\x7e\xfe\x13\xad\xf3\x8d\xb0\ +\x0b\xaa\xb9\x5f\xf5\x89\xfe\x45\xd1\x17\xd8\xf4\x9f\x24\xf5\xf6\ +\x40\xc2\xeb\xf8\xd0\xd7\x04\x54\xfe\xf7\xd6\xa3\x17\xdb\x8d\xf6\ +\xed\x2f\x7f\xfd\xb7\xdb\x97\xbe\xc2\xf7\xad\x74\xc8\x28\xc0\xc7\ +\x06\xba\x24\x87\xfa\x35\x87\x2d\xc7\x8a\xe0\xf8\x79\xf1\x93\x5c\ +\x8e\x44\xe2\x8f\x65\x8a\x46\xc9\xf1\x52\x9d\xb0\x88\x3e\x22\x6d\ +\xf6\xad\x70\xc5\xe1\x9c\xa9\xa4\x26\xb3\xb9\xda\xe9\x63\x18\x99\ +\x08\x7a\x86\x9e\xe3\x77\xc7\x03\x23\x9e\x07\x9f\x62\xd9\xeb\x43\ +\xda\x21\x4b\xef\x73\xb7\x63\xd6\x3c\x7e\x78\x4a\x9b\x9d\xaf\x58\ +\x35\x24\x79\x59\x85\x54\xaf\x7c\x1e\xa7\xcf\xd9\x7e\x92\x38\x38\ +\x35\x8d\x13\xc3\xb0\xa3\xf1\xdf\xf9\xc0\xf2\xb2\x2b\x7a\x6d\x77\ +\xfb\xb2\xcd\xfb\xc5\xa6\x20\xe3\x9e\x09\xcb\xa6\x8f\xca\x64\x39\ +\x7e\xb2\xb0\xdb\x77\x7d\x92\xe5\x7f\xad\xf5\x03\x74\x1a\x1f\x3e\ +\x7d\x20\x44\x6c\x70\x8b\x60\xe5\x6c\xbb\xaf\x0b\xa1\x8a\x95\xe6\ +\xf5\x32\x52\x5c\xc5\x7e\x89\xd3\x75\xe0\x8a\x35\xed\x8c\x69\x1a\ +\x2a\x85\x35\xb5\xaa\x62\x57\xbf\x94\x81\x59\x6a\xdb\x78\x1b\x65\ +\x3b\x35\xc7\x79\xdf\xa6\x46\x4b\x96\x96\xb3\x6e\x6d\x5b\x17\x39\ +\x1e\x88\x81\x7d\xd9\x8d\x6a\xe5\x34\x77\x74\xf9\x4e\xc9\xf1\x0b\ +\x17\xc5\xcc\x62\xdb\xa2\x82\x4a\x24\xf7\x84\xe1\x6a\x2e\xf1\x2b\ +\x5b\x9c\x73\xac\x58\xd3\xaa\x17\x39\x24\xeb\x9f\x39\xf2\x7a\x2e\ +\x63\xa3\x57\x7f\xf3\x49\xe1\x58\x5b\x3b\xea\x3c\x31\x22\xa0\xa8\ +\x76\xee\xf0\x8a\x0c\x2d\x78\xf2\x4f\x5a\xf5\x1d\x9d\xe4\x72\x3e\ +\x61\x99\x23\x95\x93\x3f\x22\x41\x15\x07\x61\x2d\x03\x14\x1c\x1a\ +\xca\x24\x43\x2a\x1c\x67\x59\x41\x25\x00\x8d\xa7\x28\xb0\xd4\xc2\ +\xdb\xd5\x58\x1c\xd8\x01\xcf\xc5\x4c\x7b\xfa\x5c\x73\xb1\x67\xfd\ +\xd8\x3d\x1e\x65\x5c\xd3\xd8\xe5\x71\x45\x3e\xcb\x66\x6c\x62\x19\ +\x0b\x13\x9f\xb1\x70\xd6\x75\x1e\x62\x3c\xf6\x90\x29\xbe\x8c\x43\ +\xf8\xa4\x6b\x49\x6c\xa4\xfd\x2c\x15\x07\x76\xcb\xa2\x76\xfc\x32\ +\xce\x2f\xd0\x16\xf6\xc8\x5a\x4c\x7c\x6a\xbb\x2e\x2d\x63\xd3\xae\ +\x7a\x5b\x58\x10\xf2\x43\x88\x78\xe1\xe5\x38\x6d\xbc\xa5\xb1\xca\ +\x54\xc7\x54\x7c\x15\x5b\xec\xd6\x5a\x67\xfd\x60\xcd\x0d\x3d\xae\ +\x0a\x64\x3e\xc5\x71\x94\x7b\xde\x27\xdb\x97\xff\xe2\xa3\xed\xdd\ +\x9f\x7d\x67\xfb\xf8\xe5\xaf\xb6\x8b\x47\xaa\x4d\xc5\x1d\x9d\xda\ +\x07\x1d\x74\xd0\x41\x07\x7d\x12\x3a\x5e\xa8\x1d\x74\xd0\x41\x5f\ +\x2c\xed\xee\x52\x16\x62\x8e\x77\x6e\x9e\xf7\x36\x73\x3f\x72\x76\ +\xdc\x43\xf1\x27\xed\x8e\x1b\x1c\x2a\xd4\x4d\xd6\x28\x6f\xaf\xb7\ +\x47\x2f\x5f\x6e\x2f\x7f\xfe\xbd\xed\xe9\x93\x8b\xed\x0a\xcc\x1f\ +\x4d\x60\xef\x34\x01\xe7\xa7\xab\xf8\x06\x80\x27\xd3\x79\xa8\x10\ +\x5c\x93\x6e\x26\xb7\x35\xd1\x45\x0e\xdd\xfd\x2a\xdd\x14\x99\x07\ +\xd4\x85\xe5\x4e\xcb\x6d\x99\x30\x3b\x5c\x84\x1a\xd7\x92\x47\xd2\ +\xe9\x2d\xc5\x44\x05\x20\xcc\x37\x18\xee\x07\x7d\x74\x3f\xd3\xc7\ +\x3c\x04\xd5\x0d\x43\xe9\x5e\x97\x55\xb6\xee\x07\xa7\xe8\xc4\xe6\ +\x21\xaa\xed\x5a\xaf\xe4\x49\x3c\xbe\xd4\xa3\x4d\xc5\xba\x5d\x74\ +\x62\xf0\x85\x87\xed\xb6\xb2\x0e\xae\xeb\x58\x74\x30\x7d\xf0\xd9\ +\xdf\x31\x8b\x5e\xf5\x0c\x17\x1e\x59\x2f\x3f\x49\x6d\x1b\x87\x3f\ +\x22\xb6\x5e\xb4\x89\x49\xa2\xab\x48\x3c\x1f\xe2\x6a\x27\xd8\x17\ +\x75\x54\x30\x25\x97\xa1\xc2\x57\x37\xfa\x2e\xbc\x29\x8d\xa1\xec\ +\x17\x61\x91\xf1\xb8\x9c\xa1\x3b\x6e\x75\xc5\x1e\xa2\x35\xa4\xc3\ +\x86\xad\x62\xb4\x01\x0d\x47\xe1\xa8\x27\x76\xd6\xbb\xb8\x7d\xc0\ +\x51\x07\x43\xa9\x5b\xdb\xd1\xf1\x0b\x37\x9d\x54\x5a\xd4\x21\x9b\ +\x56\x7b\xe8\x52\xdc\xb7\xe6\x40\xbb\xd8\xfb\x44\xfb\xcd\x0f\xd3\ +\xeb\x73\x3c\x4c\x6f\x6e\xff\xbe\x7f\xad\xd3\x0f\x8e\x00\xd6\x75\ +\x1a\xb4\x33\x42\xd4\x98\x71\xb2\xa4\x0c\x9b\x62\xa6\x2c\x3a\x5d\ +\xf7\xae\xa0\xb3\x87\xfd\xd3\x63\x51\xed\x2b\xbb\x66\x65\xd3\xe8\ +\x1b\x75\x02\x99\x52\x15\x8c\x3c\x86\x12\x17\xb5\x28\x56\xea\x96\ +\xee\x12\x5a\xec\x01\xe6\x7c\x30\x50\x0d\xdb\x56\x11\x18\xbf\x58\ +\xe7\xbd\xc7\x91\x31\x46\x19\x28\x9f\x98\xc7\x13\xad\xdb\xdf\x7a\ +\xe2\x7a\x9c\x52\x11\x66\x3c\x33\xe3\x0b\x14\x5f\x62\xf7\xf1\x73\ +\x7c\x34\x7b\x9c\x2b\x7d\xc1\xd7\xb1\x36\xfd\x9b\xf8\xde\xee\xb1\ +\xb7\x30\xe7\xa3\x4d\x61\x1e\x5f\x75\x0d\xaa\x36\x5c\x17\xc9\x1b\ +\x89\xc2\x12\x37\x99\xfe\x75\x9c\x75\x4b\xb1\x57\xac\xfa\x57\x98\ +\xeb\x18\xa3\xbd\x48\x6f\x2b\x62\x06\x4e\x7c\xe9\xf8\x5c\xa7\xda\ +\x58\x63\x6b\x1b\x05\xaf\xdc\xee\x7f\xae\x99\xd8\x1c\x26\x17\x5a\ +\x2e\x2f\x55\xe5\xc5\x87\xdb\xc7\x3f\xff\xc1\xb6\xdd\x7c\x24\x83\ +\x9d\xbb\xd0\xa9\xfd\xc7\xa6\x3a\x9e\x0f\x12\xf5\xbe\xe8\x6d\x82\ +\x04\x1b\xfb\x28\x0a\x0f\xfa\x98\xe7\xbc\xfc\xf8\xc9\xf6\xbd\x1f\ +\xfd\xdd\xf6\xf8\xc9\x7b\xdb\xf3\x67\x1f\x0b\xe7\x5a\x0d\xf1\xf2\ +\x86\xe3\x40\xbb\xdc\xdf\x4e\x63\x8e\xa2\xc3\x43\xf5\xeb\xd0\x72\ +\xaa\x12\xa0\x54\x32\xb5\xe6\x3c\x99\x4c\x89\x2a\x18\x02\x12\xef\ +\xfd\x22\xf4\x36\x17\xd8\xf5\xcc\xe4\x28\x43\x32\x8b\x7a\x84\xee\ +\xe3\xb8\x30\xc7\x61\xd3\xdb\x92\xa5\xb3\x4e\xf9\x5f\x37\x9c\x07\ +\x9c\x17\xd1\xcd\xe5\xcf\xf9\x32\xf1\x51\x7f\xb1\xfd\xa0\x58\xdc\ +\x2f\xb7\x58\x94\x51\x98\xc6\x4e\xb6\x55\xf9\xf5\x91\x1e\x56\x88\ +\x6d\x14\xa4\xd9\xf5\x59\x59\x30\xea\x2a\x96\xae\x49\xa7\x0e\x79\ +\x59\x76\x2f\xc8\xdc\x10\x31\xc8\xda\x4f\x80\xb2\x1d\xa7\x8d\xe7\ +\x6d\x60\x48\x8b\xeb\x55\x6e\x19\x79\x99\xb6\xe6\xc0\x4f\x1c\xfd\ +\x06\xb3\xb7\x28\xb1\x03\x91\x8f\x6f\x24\x73\x3d\x71\x6e\x2d\x6a\ +\x3d\xf5\x70\x27\xca\x0a\x31\x8e\x95\x71\xea\x83\x87\x5d\x64\xbb\ +\x7d\x66\xd5\x8b\x32\xd8\x4b\xe1\x2b\xab\x88\xff\x94\x1d\xaf\xed\ +\x2b\x7d\x74\xb2\xa9\xaa\xb5\x3c\xc7\xf6\xd5\xf6\x1e\x64\x27\x1b\ +\x37\xdb\x7c\x17\x9b\x08\x53\x41\x93\x55\xf8\x3a\x7c\xc2\xae\x0b\ +\xa1\x2f\x0b\xdb\x35\x4b\xc5\xac\x71\xd6\x57\xf0\x13\xd0\x92\xc7\ +\xb9\xac\x2f\x46\xf3\xce\x30\xb0\x10\x7b\x55\xa4\x22\xdb\xb7\xa2\ +\x7c\x9c\x72\x3c\xe7\x98\x0e\xd9\xa3\x4f\x7c\x8d\x46\x89\x6f\x62\ +\xf8\x53\x7f\x4a\xea\x76\x64\x32\x0f\x52\xbf\x47\x4b\xb5\x21\xa3\ +\x5b\x7d\x2d\xdd\x0b\x71\xbf\x2b\xbf\xc7\x25\xf6\x6f\x6d\x7f\xb0\ +\xa6\x8a\x33\x9d\x6d\x67\x0f\x56\xb7\x24\x7b\x3d\x91\x2c\x5a\x37\ +\x9d\x97\x05\x39\x6e\xfa\x17\x6c\x65\xc3\xfb\x6d\xb8\xf7\xa1\xab\ +\xbe\x94\x8c\x41\x1d\x53\x98\x57\x09\x3d\x76\x73\xc6\x10\xce\xe3\ +\x3e\x9f\x13\xe3\x31\x50\x76\x7e\xc2\xb1\xc7\xbf\xe0\x1d\x0f\x6e\ +\xf6\xb8\xc2\x0b\x30\x72\x94\x9f\xb1\x96\xfa\x6e\x23\x78\x7c\xe4\ +\x6a\x9b\x17\x66\xb9\x77\xf7\x8b\xb3\x47\xd4\x69\xce\xd2\x6d\x8f\ +\x85\x31\x9a\x3a\xd6\x41\x66\x7f\xd9\x6f\xd8\xbd\x97\x72\x3c\x4a\ +\x5a\x2f\x8d\x4f\x44\xc9\xd4\x37\x0f\x6c\x95\xd9\xe6\xd1\x89\xa3\ +\x95\x00\x8e\x51\xc1\x0b\x49\xfe\xe7\x26\xe3\x6b\x40\xb5\x4b\x3d\ +\x89\xc7\xfc\x74\xf6\x57\x7e\xbb\x7d\xff\xfb\xff\x53\x93\x2a\x5d\ +\x63\xfd\x47\x49\xdd\xc3\x83\x0e\x3a\xe8\xa0\x83\xfe\x50\x3a\x5e\ +\xa8\x1d\x74\xd0\x41\x5f\x3c\x7d\x96\x73\x3b\x72\x69\x3e\xf9\x87\ +\xe5\x24\xc1\xa4\x6b\x0d\x95\x1f\xfc\xf2\xfb\xdb\xf3\x9b\x8f\xb7\ +\x2f\x3d\x7d\xa2\xdc\x77\xbe\x59\xcf\xe4\x56\xd3\xe7\x5b\x4d\xca\ +\xfd\x52\x4d\x13\x5a\x1e\x08\xd6\x43\xc1\x4c\xf4\x91\x99\xe4\x3a\ +\x7e\xdc\x58\x07\x8b\xd1\x58\x41\x22\x77\xdf\xba\xb4\x0a\x89\xdd\ +\xb7\x34\x36\xf6\xf7\x57\xe4\x8f\x16\x26\x19\x37\x1a\x4c\xf4\xad\ +\x67\xc2\x9f\x07\x23\xb1\xe9\x9f\x0a\xc7\xb8\xaf\x15\x9f\x07\x33\ +\xe5\xaf\xd8\x8e\x37\x6b\x1d\xc9\x99\x97\x71\x4b\xae\xaa\x2f\x43\ +\x31\xf3\x61\xee\xda\x87\x6c\x37\xfa\x50\x3e\xea\x90\x43\xe1\xae\ +\x27\x55\x8a\x7c\x74\x57\x12\xa0\xd9\xeb\xd5\x6a\xe5\x41\x8f\xe9\ +\x62\x6c\x92\xc2\x7d\x63\x61\x5f\x99\x2e\x89\xda\xd7\x87\x3a\x07\ +\x37\x5c\xf7\x29\x5b\x9e\x02\xb7\x6a\xda\xe8\xb2\x7d\x8b\x30\xb5\ +\x9e\xb8\x3d\xad\x3e\x28\x7d\xa7\xec\xb5\xc0\x43\xbb\x63\xad\x2a\ +\x76\xc9\x84\x2a\x2e\x61\x6a\xfd\x94\x77\xb4\x38\x7a\x75\x07\x54\ +\x36\x74\x0f\x93\xf4\x4d\x5e\x6d\xd7\xc1\x72\xb1\xcb\x2c\x29\xcc\ +\x1d\x57\xeb\x44\x5c\xd7\x13\x02\x8d\xd0\x62\x68\xd5\xa1\x55\x5f\ +\xa9\xdb\x26\x60\xcd\x79\x8e\x5e\xe7\x7b\x5b\xaa\xa6\x06\x7f\x12\ +\x7a\x53\x9d\xd5\xbf\xee\xfd\x87\xa8\xe3\x67\x4c\xb4\x3c\x70\x9c\ +\x94\x98\xda\x07\xde\x0f\x05\x76\x2b\x6b\x70\x61\x81\xa2\xbb\x64\ +\x9f\x29\x71\xaa\x57\xbd\x26\x05\xaf\x29\xd0\x9b\x9b\xfc\x80\x53\ +\xd2\x7d\xf0\x93\xbd\xd0\x1a\x13\x43\x6d\x48\x7a\x9f\xda\x9a\xe1\ +\x59\xaf\x18\x94\x7d\xee\x5a\x16\x6e\xb2\x8d\xe4\xe3\x42\x75\x89\ +\x95\xc2\x30\x54\x63\x54\xdb\x19\x73\x88\x9b\xec\x9c\x35\x6e\x75\ +\x6c\xec\xce\x53\xb8\x65\xda\x24\x0f\xd2\x3f\x11\x69\x96\xed\x17\ +\x45\xa9\x8b\x7f\xd4\x2d\x76\x4c\xd7\x2d\xbb\x63\xdb\x5e\x39\x2f\ +\x9e\x66\x4c\xfe\xa8\x01\xec\xd6\xd8\x60\x8d\xbd\x8e\xb1\x8d\x3e\ +\xfd\xc9\xd5\xfe\xe4\xeb\xfe\x8e\x3a\xb5\x2e\xee\xef\xc2\x08\x05\ +\x49\xce\x98\xd4\xc3\xb7\xd6\x53\x7e\x64\xe3\xb4\x47\xac\x7d\x55\ +\x9f\x6f\xdc\x75\x9b\xce\xa3\x98\x9b\xeb\xb2\xf9\x76\xda\xb6\x3d\ +\xbe\x7c\xb2\x3d\xd1\x15\xf8\xf6\x57\xef\x6e\xb7\x1f\xbc\x9b\x6b\ +\xc4\xf2\x22\xe4\xe4\x48\x3c\xe8\x8b\xa4\xde\x19\x1c\x23\xad\x0f\ +\x0c\x10\x17\x92\x7d\xfe\x68\x7b\xac\xfd\xfa\xbd\x9f\xfe\x6f\xdb\ +\x57\xfe\x8d\xe6\x54\xda\xd7\x1a\x61\x1c\xc1\xfe\xe5\x58\xe1\x7f\ +\xa7\xe5\x7f\xc3\xa8\x86\xd8\x73\x84\xca\x90\x63\xc9\x4a\x24\x64\ +\xa9\x06\xdd\xa6\x0a\xc6\xac\xf6\x35\x06\x55\x95\xb8\xc0\x8a\xbb\ +\x7e\x8d\x91\x5d\xb7\x5a\xd4\xc2\x71\x8b\x94\xed\x76\x0b\xf3\x82\ +\xaf\x59\xb6\x99\x87\xab\x39\xb6\xf3\xed\x81\xf2\xf3\xb0\x76\xc4\ +\xd6\x3c\xab\xe3\x87\xce\x7a\xc7\x0e\x17\x46\x5b\xf6\x45\xc2\xda\ +\x44\x92\x30\x78\x24\xf6\x8c\xf1\x29\xea\x3e\xde\x6a\x9b\x4a\xc5\ +\x30\xc6\x33\xf5\x3b\xbe\x39\x26\x9d\x87\xb2\x8d\x77\xbd\x3c\xcc\ +\x16\x56\xdc\x3a\xe3\xf8\x2e\x7f\x71\x9c\x7c\xd4\x53\xe5\xed\x6b\ +\xbd\x31\x07\x50\xb7\x72\x3b\x3c\x4e\x8b\x96\xf8\x2a\xc6\x41\x28\ +\x62\x5f\x07\xa2\x86\x65\xa6\x28\x6a\x47\x05\xa1\x56\x77\x1a\xb2\ +\xde\xf6\x88\x2f\xee\x05\x67\xca\x30\xc5\x08\xc3\x6e\x92\xe1\x6b\ +\x52\xf1\x70\x96\x1e\xac\xf6\x67\xc3\xc6\xbb\x1d\x30\x03\xc5\x23\ +\xc0\x7a\x43\xd1\x29\xd8\xfb\x30\x50\xce\x96\xa6\x51\x4d\x45\x62\ +\xf7\x9c\xe8\xb4\x3b\x96\xf2\x21\x73\x5c\xcd\x2a\x32\x07\xe7\x6c\ +\x98\xd0\x20\x19\xbb\x3a\x40\x48\xec\x98\xa1\x36\x3a\x26\xc2\x94\ +\x6b\x3b\x2d\x74\x2b\x45\x9c\x83\xf8\x94\x30\xf1\x36\xcc\xa7\xb6\ +\x39\xa0\xa9\xfb\x12\x70\xed\x7d\xc9\xa1\xb2\x55\x30\xa6\xaf\xfb\ +\x1f\xab\x89\x63\x2f\x16\x65\xcf\x47\xc8\xed\xfa\x02\xb8\x24\x79\ +\x7b\x1a\x15\x8d\x18\x68\x31\xce\xab\xa2\x58\x94\xd1\xea\x0f\x01\ +\x2b\x68\x7a\x57\x31\xfd\x43\x2e\x94\xee\x10\x13\x67\x9b\xac\xb7\ +\xcf\x5d\xdb\xcb\x76\xef\x50\x7c\xe8\x51\xc5\xd8\x01\xa6\x6c\x3c\ +\x3a\x45\xdb\xa9\x18\xbc\xb1\x75\xac\xe8\xc4\xd8\xc1\x81\x90\xdc\ +\x43\x17\xae\x41\xa8\xa5\x17\xe7\x22\x4f\xc6\xc2\x8c\x93\x89\x19\ +\xec\x71\x8b\x97\x63\xe5\xd7\x92\x3f\xc6\xe8\x3a\xf8\x3d\xfa\x56\ +\x7d\xb0\xc4\xfa\x65\x9a\x64\xfe\x87\x5a\x31\x58\xa2\xbd\xa4\x3d\ +\x5e\xa4\x31\x7e\xa7\xae\x4a\x25\x9d\xfd\x90\x55\x52\x5c\xdf\x06\ +\x03\x93\x69\xa2\x0f\x8e\x81\xe9\x8f\x65\x1f\xeb\x2b\x46\xee\xd8\ +\xd0\xd4\x75\x54\x48\xae\xdc\xdb\xe6\x96\x3f\xe0\xad\xbe\xd0\x37\ +\xf6\x6d\xfe\xd7\xfb\xd5\xf6\x95\xaf\x7f\xb4\xfd\xee\xfd\xef\x6c\ +\xd7\xb7\xbf\x91\x2d\x5f\xe5\x5b\xf6\xfe\x41\x07\x1d\x74\xd0\x41\ +\x9f\x92\x8e\x17\x6a\x07\x1d\x74\xd0\x17\x4f\x99\xdf\x7d\x36\x74\ +\x9a\x8b\x19\xe3\x5b\xcc\x1a\xbb\x9a\xff\x46\x3a\x9f\x90\x26\xc5\ +\x1f\x5e\x5f\x6c\xef\xfd\xfd\x7f\xdc\x2e\x9e\x5f\x6c\x17\xfc\x6c\ +\x16\xc1\xae\xa0\x89\x6b\x4d\xd8\xfd\x00\xd3\xff\x3f\x8d\x09\xad\ +\xb8\x6e\x0c\x98\xb5\x62\x67\x26\x9d\x8a\xb9\x51\xaa\x69\x6d\xa0\ +\x22\x7c\x16\xf6\xef\x88\xbb\x38\x3b\xa9\x4d\x2f\x99\x58\x0b\xdb\ +\xc5\x62\xcf\x76\xd7\x87\xc8\x8d\xf7\x03\xce\xbe\x09\xb0\x54\xff\ +\xb5\x12\x03\x47\x6f\xf6\x03\x4f\xff\x45\x5e\xd6\x4d\xc5\xe0\xf9\ +\x70\xb7\x7c\x1d\x3f\xea\x55\x9c\x7d\xc4\x53\x3f\xdc\x2f\xe4\xda\ +\x36\x06\x4b\x9d\x0f\xa4\x53\x3f\x39\x90\x09\x35\x06\x21\x9a\x53\ +\x58\xd8\x5d\x26\x46\xa7\x09\xd5\x9e\x15\xc0\xc2\x67\xec\x6b\xc7\ +\xd0\x16\x42\xe8\xa8\x63\xb4\x72\x78\xef\x85\xd6\x9b\x51\xa8\x1c\ +\x88\xf6\x74\x6c\x72\x86\xbb\x2f\x16\xd8\xb6\x42\xd1\xdd\x33\x31\ +\xfb\x18\x8e\xc3\x62\xe8\xe9\xc7\xca\x4d\xab\xbe\x3a\xad\xb6\x2e\ +\xd9\xae\x82\x86\x6c\xa5\x63\x06\x61\xd3\x9f\xb9\xc5\x4c\xc4\x38\ +\xd6\x0a\xdb\x0d\x7f\xe2\x46\x7d\xfb\x22\xa0\x32\x87\xbd\x1a\x03\ +\x7b\x88\x3a\xf6\x8d\x81\xf7\x69\xad\xba\xe7\xde\xe6\x94\x6f\x4f\ +\xfb\x1c\x6f\x47\x6f\x8a\x3d\xe7\x1f\xd8\x03\x15\xb3\x5f\xd9\xf6\ +\x36\x1f\x8e\xc3\xa1\x8f\xf7\x20\x31\x15\x37\xea\x97\x9f\x7d\x18\ +\x97\x23\xad\xf3\x3f\x49\x40\x77\x78\x85\x0f\x3a\x31\x86\x99\x70\ +\x93\xeb\x2c\x76\xa8\xdb\xee\xf6\xb4\xa4\x53\x33\xc7\x4a\x05\x3a\ +\x2e\x8a\x98\x3a\xab\x2e\x85\x8f\x24\x63\x40\xc6\x18\x03\x61\xc6\ +\x28\xff\x01\x44\xe2\x33\x46\x51\x8f\x71\x28\x31\x91\xd4\xcb\x78\ +\x35\xc7\x36\xd9\x1e\xcf\x2a\x4f\xe7\x1e\xfa\xb4\xdd\x40\x61\x6b\ +\x1d\x4b\xb0\xd5\x37\xfc\x15\x23\x8e\x8f\xb1\x36\x98\xc7\x51\x73\ +\xe5\x3d\xc1\x46\x1f\x77\x7a\xdb\xc5\x6e\x33\xd7\x2f\xfb\xba\x0f\ +\xee\xd3\x64\xb0\x3c\x9c\x29\xae\xed\x02\x67\x9c\x4e\x9e\xe1\x77\ +\x0e\xfa\xd1\x76\x5d\x23\x8c\xe7\x45\x02\x38\x3f\x17\xe9\x6d\xdd\ +\xed\xa3\xcb\x47\xdf\xfc\xf3\xc9\x8e\xe3\x81\xd0\xb6\x3d\xbe\x78\ +\xbc\x3d\x79\xf5\xbb\xed\x83\xef\x7f\x57\x31\x2f\x54\x77\x7f\xf0\ +\xdc\x3b\x94\x0e\xfa\xe2\xa8\x77\x86\x76\xfd\x90\xc2\xfa\x1d\x28\ +\xe2\xd1\xab\x4b\xed\xda\x8f\xb7\x77\x7f\xf5\xb3\xed\x83\x97\x3f\ +\xde\xbe\xf2\x75\x0e\x89\xcb\xed\xe2\x82\x5b\xd2\xdc\x96\x72\xe8\ +\xdc\xe8\xdc\xbc\x95\x52\x87\x8c\x0f\x29\x98\x42\x90\x52\x63\xa4\ +\x09\x73\x92\x5b\x99\x1e\x28\xd7\x22\x6c\xd7\xa9\x27\xe2\xe9\x92\ +\xca\x28\x92\xad\x4c\xea\x63\x7b\x95\x7d\xae\x84\xcf\xf9\x74\x7e\ +\xf1\x48\xb5\xf0\xcc\x11\x75\x5c\xd7\x79\xd0\x71\x79\x70\xeb\xc1\ +\x47\x76\xce\x0d\x7c\xc1\x3b\x0e\xbb\xf3\xc6\x1e\x4c\x2b\x92\x79\ +\xb0\x8b\x64\xd3\x44\x4a\x2c\x4c\x3c\x7d\xf0\x1a\x79\xfb\xc9\xdc\ +\xee\xf8\xa6\x82\x87\x10\xd5\xf1\x06\xad\x97\x73\x2c\x0e\x2b\x49\ +\x2c\x75\x52\xd5\x72\xf4\x47\xbe\xd8\xa9\x0f\x07\xaf\x9f\x77\x04\ +\x23\xa6\xea\xe3\x6b\x42\xf7\xee\x82\x6d\x1b\xb5\x32\xc2\x86\x13\ +\x55\xf8\x58\x82\x85\xed\x5c\x6c\x37\x69\xd5\x34\x94\xda\xf5\xb6\ +\x27\xd8\x90\x59\x05\xbc\x82\x08\xa8\xa1\xa9\xd0\x4e\xfa\xb2\xf3\ +\x4d\x21\x99\xe3\x2e\x1b\x41\xb2\xfa\x19\x55\x75\x63\x16\xaf\xb9\ +\x4a\xf3\x76\x4e\x5d\x62\x03\x83\x63\x47\x2e\x0e\xf1\x42\x0b\x4c\ +\xc8\xdc\x77\xc5\xfb\x10\xf3\x8e\x16\x07\xf1\x63\xdb\x95\x8d\xda\ +\x25\x94\x7d\x5b\x6b\x21\x3d\xeb\x67\x6b\xc7\x83\x0a\x38\xeb\x1b\ +\xa4\x39\x07\x31\x0e\x48\x94\xcf\xee\xa8\x0b\xed\x0c\x99\xda\xee\ +\x8e\x39\x89\x1d\xf3\x8b\x3a\xed\x33\x68\x18\x49\x48\xc9\x33\xf1\ +\x23\x57\x51\xb6\xc7\xe2\x87\xdc\xc7\x69\x27\x73\xca\x41\x33\x38\ +\xeb\x62\xad\x8a\x25\xac\x6b\x37\x25\xcf\x29\x2d\x15\x5a\x5d\xf3\ +\x58\x52\xd4\x31\x44\x8b\x63\x3d\xd8\x3f\x86\x8d\x4d\x1d\x4f\x55\ +\x5b\x18\xbc\x65\xa9\x62\xca\x60\xe3\x9b\xac\x2a\x72\xc8\xc6\x3b\ +\x73\x23\x35\xd6\x50\xab\x6d\xeb\xe2\x1a\x1f\x7c\xbc\x33\x4e\xba\ +\x1e\xc7\x3e\x63\x53\x8f\x95\x8c\x6d\xc4\x4d\x7d\x1d\x27\x93\x87\ +\x7a\x99\xdf\x38\xd6\xf9\x89\x09\x27\x7e\xea\x33\xaf\x64\x7d\x53\ +\x6d\xbd\xdf\xcd\xcf\x4d\x16\xfb\xdb\x6c\x8a\xf5\xb6\x8c\xe6\xfe\ +\x15\x2a\xd0\x1f\x08\xdc\xa6\x0f\x5e\x6f\x7d\x89\xe8\x16\x53\x75\ +\x99\xf5\xaa\xb8\xf6\xb5\xb4\x9e\x23\x85\xb8\x09\xce\xbc\x8c\xcf\ +\x8c\xd3\xfc\x51\x84\xfb\xcd\xcb\x35\xe2\x05\x3e\xe2\x0f\x93\x34\ +\x87\xfa\xf0\xfa\x27\xdb\x47\x2f\x7f\xb1\x5d\xe8\x3a\x97\xb9\x7c\ +\x1f\x7d\xd0\xd4\x0e\x3a\xe8\xa0\x83\x0e\xfa\x64\x74\xbc\x50\x3b\ +\xe8\xa0\x83\xbe\x78\x3a\x77\x9f\xf0\x87\xd0\xc9\xfd\xcb\xdb\x50\ +\x77\xc1\xd5\x46\x5d\xa1\xb7\xaf\xb6\x27\xaf\x3e\xdc\x5e\xfd\xf2\ +\x47\xdb\x3b\xcf\x1e\x6f\x97\x17\xfc\xd5\xad\xff\x2b\x82\x27\xfe\ +\xfe\x66\x1a\x2f\xd3\x90\xc2\x3d\x0b\x66\x66\x2b\xe9\x9b\x04\x16\ +\xf4\xb2\xbb\x81\x88\xd1\x50\x08\xf7\x02\x71\xf3\x93\x7e\xe1\x88\ +\x4c\xcd\xb0\x7d\xe4\x45\x2c\xb9\x9d\xc4\x78\xfa\x09\x46\x9f\xb9\ +\x09\x50\x27\xd3\x2f\xb3\x6e\x04\x06\xef\x1f\xce\xc2\x59\x8f\xd2\ +\x79\xd2\xb2\xf8\xe2\xa7\x1d\x62\x2a\x57\xb7\x51\x76\xc7\x8f\x87\ +\xbc\xce\x25\x5f\xe5\xb2\xdf\xb1\xe2\x21\x53\x07\xdd\x79\xd2\xfd\ +\xe2\x15\x2b\xd9\x54\x31\x86\x5a\xa2\x72\xc3\x3b\x02\xe3\x98\x37\ +\xe8\xfe\x24\xb6\xf5\x92\xde\xb8\xd9\xf8\xc1\x0c\xd2\xa6\x15\xeb\ +\x49\x44\xfe\x98\x25\x4c\x2d\x8d\x0f\x63\x92\xb1\x35\xb8\x78\xb4\ +\x35\x15\x71\xd1\xa2\x9e\xd6\x59\x6d\xd3\xa2\x5b\x5d\xed\xa5\xcf\ +\x63\x25\xa1\x25\x06\x69\xd3\xb1\xdc\x28\x73\x24\x25\x36\xf8\xe4\ +\xd4\xc1\x07\x03\xea\x33\x0e\x05\xea\xe3\x0f\x8d\xf0\x56\x9a\x93\ +\xfa\x24\xe7\x09\x3d\x84\xff\xc1\x44\xd2\xea\x80\xe4\x1f\xd2\xcc\ +\x27\xa9\xd7\xed\xac\xfc\x5a\x52\xc0\x1a\x77\x1a\xef\x6d\x87\xe4\ +\xb8\xac\x5d\x01\x45\xd8\x23\xce\x7e\xf4\x36\x1e\x76\xa8\x23\xda\ +\x86\xa2\xf7\xb6\x11\xb1\x3f\x85\xb2\xec\xe8\x7e\xa5\x12\x15\x5b\ +\x18\xb5\xb9\x99\xaf\x0e\x2c\x74\x2f\xa3\xec\xf4\xd3\x78\xc7\x23\ +\xac\x2b\xbe\x9c\x1e\x3b\xcc\xf1\x45\x86\x3b\x26\x63\x95\x24\x8f\ +\x19\x1c\x53\xf5\x05\xce\xfa\x8c\x49\x92\x8e\xad\xb1\xaa\xe3\x6a\ +\xfc\xa2\x3e\xdf\xf1\x18\xf1\x8e\x4b\x3d\xeb\xc4\x82\x97\x2d\x80\ +\xa7\x1c\xae\x5f\x4f\xaf\x4b\x6f\x3f\x36\x2f\x9d\xca\x57\xfe\xf9\ +\xd2\xab\x6c\xda\x73\x5c\xec\xc4\x84\x53\x5f\x7a\x7d\x2b\xcd\x75\ +\x87\x3f\xd7\xa6\xc4\x15\x46\x5e\xbf\x48\x54\x3d\x1e\xbc\x14\xbe\ +\xf3\x5b\xd2\xa7\x5a\x2f\xfb\xa6\x1e\xbc\xb9\x30\xfb\xb3\x5d\x12\ +\x9f\x3a\xe4\xf1\x5f\xf8\x57\xcc\x7e\xdb\x65\xbd\xf2\xd2\x21\xf5\ +\xf3\x6d\x6f\xb5\xad\x7d\x73\xf9\xe8\xd1\xf6\xf8\xf1\xd5\x76\x71\ +\x73\xb3\xbd\xfc\xcd\xcf\xb6\x47\x2f\x3e\x60\x27\x8a\xd6\x63\xb2\ +\xe4\x41\x5f\x3c\xb1\x2f\x7c\x92\xdb\x9a\x52\x38\xaa\xc7\x26\xd1\ +\xed\xcd\xc5\xf6\xed\x1f\xfd\x87\xed\xea\xf9\xef\xb6\xab\xa7\xfc\ +\x93\x34\xce\xf5\x54\x24\x82\xc3\xc3\xa7\x8d\xe2\x7c\x58\x78\xc1\ +\x21\x0c\x19\x75\x60\x51\x42\xad\x4e\x68\x06\xe4\x9d\xd9\x6c\x27\ +\x14\x7b\x86\xb5\x67\x46\xe4\x98\x95\x5d\xec\xde\x48\xfa\x8f\x96\ +\x3c\x1e\x14\x4b\xa7\x7f\x1c\xea\xd8\xfd\x12\x4d\x56\xe2\x58\xc0\ +\xcb\x97\x87\xb9\x3a\xde\xed\x23\xb6\xfc\xbd\x48\xe7\x3c\xca\x83\ +\x5f\xb1\x36\x46\xea\x14\x3b\x33\xed\xa9\x1e\x3e\xa4\xbb\x86\x4c\ +\x4c\x74\x77\x37\xe7\x9b\x5b\x4a\x1f\x65\x2e\xb1\xd9\x07\xc6\xc8\ +\xab\x62\xd4\x2f\x1b\x25\xb1\x24\xc0\x37\x73\xa0\xb8\x3f\x7c\x0b\ +\x8e\x3a\xea\x6f\xe6\x5a\xac\x89\x2b\x24\xce\xf5\xd9\x76\xc4\x8a\ +\xbd\x24\x37\x4c\x08\xc5\x68\xd7\x66\xf4\x5e\x5f\x1f\x46\x62\x7f\ +\x6b\xda\xfb\x8e\x7d\xb8\xc4\x0f\xab\x0d\x15\xce\xd1\xde\x08\xe0\ +\x01\x15\xbc\x23\xea\x14\x3b\xb8\x2a\xa4\x3f\x2c\xb6\xf6\x78\xc7\ +\x95\x8e\xea\xc0\x8e\x9b\x40\x84\xb9\x70\x6f\x90\xd6\x9d\x79\x47\ +\xab\xdd\xdb\xa0\xd9\xe2\xd4\x5e\xf8\x94\x4e\x7d\xa7\xf9\x9a\x5a\ +\x5d\x20\xd1\x1a\xb4\xea\xe7\x48\xbe\x0e\xe9\xf5\xf2\xba\xd5\xfa\ +\x15\x46\x40\x97\x91\xa1\x96\x39\x47\xeb\x3c\xed\x88\x21\xa2\x50\ +\x42\x05\x9b\x86\xbe\xb4\x01\x21\x39\x6a\x7c\x1c\xd6\xf1\x03\x0d\ +\xad\x02\x5c\xad\x4c\xca\xce\x50\x70\x14\x58\xb1\x1e\x5f\x54\x01\ +\x01\xd6\x75\x4d\x27\x3a\x66\x45\x8a\x5c\x31\x6a\xd1\xb0\x4a\xe9\ +\x11\xcb\xe5\x12\xba\xa8\xd6\x9b\x87\xc3\xdb\x8c\xfc\x35\xbe\x54\ +\x5b\xf4\x6d\xae\x8d\xa8\x2a\xda\x46\xae\x0c\xe4\x62\x3a\xfb\xd8\ +\x6e\x0e\x56\xe3\x01\x0b\x7a\x8d\x11\x33\x76\x2f\x2b\x55\xd9\x93\ +\xfd\x13\x86\xc2\x7b\xfc\xc9\x58\xc9\x58\xc8\xd8\xc1\x7a\x94\x8d\ +\x6f\xe8\x62\xad\x63\xc6\x48\xee\xc7\x73\x4f\x4e\x8e\x8e\x39\x65\ +\xd7\x69\xdd\xf5\xf8\x63\x9e\xfa\x5f\x6a\x62\xe6\x2e\x7c\x53\x2d\ +\xb9\xe8\x0b\x18\xad\x10\x1b\x4e\x9f\xe9\x6b\xe5\xd3\x6a\x3d\x72\ +\xce\xf2\xf5\x2e\x66\x3d\xdd\x43\x22\xd0\x7a\xdd\x63\x61\xa7\x88\ +\x8c\xaf\xaf\x8b\xa5\x5b\xc2\xe4\x89\x81\xad\xae\xd7\x7a\xf7\x76\ +\xc3\xcb\x4c\x55\x75\xa9\x7e\xa5\xb8\xab\xdf\x6c\x3f\xfe\xe5\xb7\ +\xe5\xbc\xd6\x71\x4a\x26\xa8\xe5\x41\x07\x1d\x74\xd0\x41\x9f\x96\ +\x8e\x17\x6a\x07\x1d\x74\xd0\x17\x4f\xe7\xe6\x74\x3d\x09\x7d\x1d\ +\x11\xf3\x50\xdc\xdb\xd4\x6f\x52\xfb\xee\x02\x33\xd3\x93\xce\xdc\ +\xdd\xde\x6c\xbf\xfb\xf6\xdf\x6f\x97\xaf\x3e\xde\xae\x82\x6c\x17\ +\x9e\xe4\x6a\x82\xca\xc3\x12\x1e\x56\xf2\x93\x8f\x3c\x9d\x10\xd6\ +\x0f\x49\x98\x58\x8f\x99\x2e\xd2\x58\x33\x79\xaa\x1d\xec\x28\x2e\ +\xfb\xa6\x89\xfe\xdf\x5b\x85\x72\x21\x93\x03\x5a\x8d\xd6\xd3\x4e\ +\xcc\x9a\xe4\xd3\x8e\xfb\x14\x6e\x7d\x62\xf2\xab\xaf\xfd\x20\xd7\ +\x3e\xd6\x0f\xf6\x4d\x84\x30\xeb\xc1\x56\x3d\x52\x8d\xb9\x7e\x7c\ +\xd6\xa9\xe3\x7a\xd5\xaf\xc2\xd2\x37\x74\xe2\x23\x5d\x67\xc4\x64\ +\x55\xac\x2c\x6c\x7c\x47\xe5\xb3\x44\x2d\xd9\x2e\xa7\x2c\x60\x54\ +\x56\x9e\xd2\xa6\x52\xaa\x62\x3a\xdd\x3d\x12\xb6\xfa\xa2\xee\x6e\ +\x71\xf7\x54\xb1\x67\x3c\x3b\xaa\xb0\x25\xae\x0f\xea\x95\xa7\x77\ +\xcd\xb7\xd6\x6b\xdd\xec\x1b\xaf\xba\xf9\x12\x37\xed\x62\xda\xef\ +\x42\xba\xe4\xde\xd7\x6d\x77\x4c\xb8\xe3\xf6\x34\xe3\xfa\x27\xa2\ +\x06\xc9\xc8\x4d\xe1\x52\x6f\xf1\xcb\x95\xd4\x27\xf5\x8c\xa9\xd8\ +\x71\x5c\xf1\xbd\x86\x3f\x1d\x9d\xd4\x94\xd9\x6d\x22\x4d\x36\xde\ +\xc0\x08\xc9\xc5\xfc\x44\x34\xeb\xb4\xd6\x99\xb2\x8d\xf3\xd4\x0b\ +\xa4\x71\x51\x6f\xc3\x82\x7c\x03\x3e\x8c\x54\x99\xfb\x13\x3c\x76\ +\x42\x28\xca\x17\xd7\x88\xb2\xab\xf4\x55\xf6\xbd\xb8\x63\x1c\x3d\ +\xe9\xf4\x4b\x1e\xdd\xae\xfb\x3b\x12\xa4\xe8\x87\xeb\xb4\x03\xe7\ +\xcf\x07\x96\xb8\xd4\x8a\x73\xa1\x60\x91\xc3\xa3\x18\xce\x75\x9d\ +\xf2\xc2\xa2\x9f\x9e\xfb\x3b\xbb\xc6\x86\x60\x19\xbf\x32\x36\x65\ +\x1c\x6a\xdb\xe3\xdc\x18\xa3\x24\x6f\xf1\x11\x93\x97\x4d\x1e\xff\ +\xc0\x8b\x13\x8f\x9f\xba\xe5\x77\x3b\xb2\xfd\xa4\x83\x7a\x62\x24\ +\x63\x6d\xc7\x8f\x7a\xe5\xaf\xb6\xf7\x4c\x9e\xd9\x46\x98\x1c\x85\ +\x8d\xfe\x22\xc9\xbf\x8f\xf3\x4b\x2a\x78\xbc\x78\x7b\x28\x56\x18\ +\xb9\x68\xab\xa4\x97\x6e\xbf\x38\xeb\x95\xb6\x13\xd7\xf9\x66\x5d\ +\xf7\x0d\x69\x26\x4b\xf4\xf6\x27\x06\x71\x23\x46\x8f\x8f\x17\x7e\ +\x7e\x28\xa4\x30\x7e\xb6\x88\x97\xb0\x77\x1f\xff\x7a\x7b\xf1\xeb\ +\x9f\x79\x5f\xe6\x29\x95\x9c\x55\xce\xc3\x2e\xd8\x41\x9f\x31\x9d\ +\xdb\xac\x2b\xd6\xfa\xdc\x11\xf7\x49\x3e\x8f\x04\xbc\x29\xbb\x7c\ +\xb4\xbd\xf7\xde\xff\xb5\xfd\xd5\xbf\x79\xaa\x1b\x51\x3b\x52\x95\ +\x6b\x85\xdc\xbc\xdc\xb9\xbb\xbe\xe4\x90\x57\x0d\x8e\x05\x49\x33\ +\xc7\x5c\xa4\x8f\x13\x27\x0e\xa1\xc7\x2e\x74\x88\x74\x2a\xc3\x22\ +\x3d\x10\x79\xec\x01\x2f\x5e\xaa\x78\x6c\xb4\xa1\x92\x0f\x52\xca\ +\x58\x68\x57\xac\xa3\xd5\x6c\x5b\x0b\x1d\xf7\x21\x8b\x1c\x8c\x5f\ +\xfd\xe7\xd8\xf6\x37\x20\xfa\x5b\x10\xa9\xe3\x07\xb6\x1d\xab\x95\ +\x44\x67\xfe\x28\xc0\x76\xc7\x29\x6d\xf4\xae\x2b\xce\x3c\x33\xa7\ +\x1b\x7a\xec\xf6\x55\xbc\xfb\x33\x71\x96\xfc\xc4\x63\xb6\x73\xda\ +\x20\x46\x76\xd7\x59\xeb\xfa\xba\xdc\xd8\xc4\x69\x20\x6d\x04\x43\ +\x51\xe9\xf8\xee\x07\x1b\xdc\xeb\x42\xef\x25\xfc\x70\x97\x18\xe9\ +\xde\xc2\xb4\xed\x9f\x45\x03\xc4\xa3\x08\x72\x53\xdf\x16\x24\xcd\ +\x01\x51\x73\xc9\xa8\xb6\x50\xd5\x1e\x8a\xbb\xe4\xac\x32\x14\xef\ +\x17\xf8\x0e\x02\x71\x64\x99\xac\x4f\xad\x6b\xe1\xf7\xc8\xce\xf0\ +\xbd\x88\x72\x59\x45\x16\x5b\x28\x6f\x0e\xb2\xd8\xed\xb3\xdd\x5c\ +\x50\x14\xaf\xac\x38\xdb\x07\x9e\xfb\x21\x1c\xec\x01\xbb\x6a\x37\ +\xa7\x28\x5b\x45\xe3\xd9\x7f\xf7\x59\x85\x99\x6d\xda\xd7\xf4\xa5\ +\x96\x99\xc5\x3a\xb1\xad\x4f\x74\xcf\xad\x14\x2d\x6a\x9f\x51\x43\ +\x9b\x3c\x73\x45\x51\x31\x64\x7c\x06\x0a\xc7\x0e\x73\x2c\xe5\x78\ +\x32\xb1\xdd\x8d\xaa\xce\xd2\x91\x35\xce\x5e\xc3\x33\xc3\x8c\x6c\ +\xa2\x7e\xa9\x50\xeb\xa7\x81\xbb\xa0\xa2\x1d\x74\xe2\xa7\x7f\x6c\ +\xe4\x05\xee\x5e\x19\x5a\xf3\xed\xaa\x96\xb1\xc3\x20\x01\xf9\xa8\ +\x38\x75\x4e\x3b\x5a\xb7\x31\xd7\x98\x2a\x39\x0e\x90\x6c\x17\x6f\ +\x39\xdb\x84\x04\xb7\x1a\xae\xa2\x63\x62\x17\x56\xb6\xb1\x09\x8b\ +\xe3\x1b\xe3\x94\x3c\x1e\x0f\x74\xdc\x5b\x18\x0f\xf7\x58\x92\xd8\ +\xcc\x7f\x8c\x53\xa7\xea\xf9\xde\x5a\x3a\xa7\x4d\xc6\xc9\x70\xc6\ +\xc4\x8c\x9b\xc6\x58\x18\x5b\x18\x73\xeb\x27\x1a\xd3\x46\xc7\xcb\ +\x47\x4c\xd9\xcd\xbc\x3a\x1b\x39\xcc\x20\x69\x37\xf1\x19\xab\xc3\ +\x6b\x1c\x7d\x26\x86\xa8\xe8\x48\xad\x44\x3e\xcd\x46\xb4\x0f\xa4\ +\x64\x7d\xa9\x11\xdc\xe7\x05\x39\x65\xcd\xf8\x64\x6c\xcc\xa3\xc5\ +\xd8\x4f\x33\x4f\xda\x8f\xe4\x45\x24\xeb\x4e\x3e\xfe\xa7\x9a\xe3\ +\x44\x8f\x9f\x5e\x6d\x57\xcf\xae\xb7\x5f\xbe\xfb\x3d\x61\x1f\x2a\ +\x26\xf9\x43\x2d\x0f\x3a\xe8\xa0\x83\x0e\xfa\x34\x74\xbc\x50\x3b\ +\xe8\xa0\x83\xbe\x58\x3a\x37\x97\xcb\x1c\xf0\x61\xc2\xdf\x31\x5d\ +\xff\xa1\x3a\x6f\x33\x57\xa4\x2e\x93\xd2\x4a\xe2\x92\x7a\x52\x6e\ +\xee\xae\xb6\xf7\xbf\xfb\x3f\xb7\xc7\x17\xaf\xb6\x2b\xee\xf6\x85\ +\x33\x61\x26\xbe\xbf\x9d\xe6\x09\x37\x93\x68\x66\xa9\xfc\xe5\x3f\ +\x76\x66\xcc\x69\x9e\x82\x19\x2f\x3c\x6c\xa5\x2f\x7b\xb4\x37\xc5\ +\x62\x37\xd2\xb1\x23\x42\x50\x26\xd2\xf6\x9d\xe8\xb1\xa7\x9e\x19\ +\x74\x30\xf7\xdf\x7d\xa4\xdf\xb2\x99\x84\xd3\x6f\xf7\x3d\xb1\xf3\ +\xe1\x26\xb1\xc4\xe4\xe6\xa1\x31\xdf\x40\x80\xf3\x70\x0c\x8c\xf8\ +\xf6\x57\xcc\xc0\x89\x1b\xbe\xce\xdf\x7d\xaa\x98\xea\xe7\xec\x33\ +\xbe\xb9\x3a\xd1\x31\x22\x5d\x1f\x29\xd3\x31\x5a\xc6\x76\x8c\x4b\ +\x6c\x87\x7d\xde\xca\x03\x87\xab\x2e\x84\x82\x3d\x00\x51\xdd\xb0\ +\x24\x6e\xc6\x16\x2c\x1a\x4a\xc5\xed\xcc\xc1\xa6\xa1\x84\xee\xf9\ +\xdd\x73\xf6\x2c\xf2\x1c\xed\xf1\x7d\xdd\x95\x92\x27\x44\x44\xd9\ +\xee\xf4\xca\xe5\x2e\xdd\xeb\x8d\x3e\x62\xdb\x5f\xbc\xa8\x36\x15\ +\x33\x6e\xc2\xcd\x82\x86\xf3\x3e\x8d\xed\x57\x31\x1d\x6a\x4c\xbb\ +\x39\x8a\x8b\xd7\x93\x42\xdc\xce\x1b\x88\x90\xb3\xac\x62\xd7\xd7\ +\x7b\xac\x62\x04\x14\x95\x6a\xb8\xcc\xe6\xb3\xd4\x8e\x0a\xea\xd8\ +\x35\xe5\x88\x39\xa5\xc2\x23\xd8\x1f\x68\xcb\x3e\x81\xd0\x1b\x17\ +\xa3\x91\x1b\xcd\x2f\xb3\x60\xb0\xf2\x75\x45\x3f\x30\xb3\xda\xf5\ +\x21\xd7\x52\x7d\xd9\x27\xeb\xdc\xa9\x7a\xbd\x63\x2d\xba\xfb\xe4\ +\x08\x63\xa3\x94\x00\x9d\x0f\xe8\x40\xe1\xee\xab\xca\x11\x43\x0e\ +\x22\x30\x50\xdb\x10\x0d\x15\x74\x5f\xb7\x7d\xbd\x4e\x13\x9e\x06\ +\x22\x7a\xfa\xe4\x71\xc7\x12\x08\x3d\xe3\x0b\xe3\x48\x1e\xbe\xc8\ +\x28\x1f\xe3\x54\x24\x75\x33\x6e\x59\x5f\x70\x8f\x89\x7e\xf0\x93\ +\x5c\x63\x4c\x75\xde\xaa\x2b\x1b\x9f\xc7\xb9\xe2\xe4\x9a\x6c\xdc\ +\x75\xc2\xa3\x5e\xe3\x8e\xcb\x03\xa6\xd8\xfb\x97\x70\xbc\xa4\x43\ +\xf7\x43\x94\x8e\x2d\xff\xca\x8e\xdd\xd9\x7c\x2b\x88\x07\x4d\x93\ +\xe5\x30\xf7\xb7\xc9\xd2\x97\x5a\x3f\x64\x36\x90\x3e\x95\x6f\xc8\ +\xde\x06\x4b\x6c\xe9\x89\x49\x1f\x47\x3f\x2a\x26\xf1\xc9\xe7\x3a\ +\x63\xdd\x24\xfd\xd2\x4f\x3e\xef\x34\xdd\xac\x3c\xbe\xd8\x2e\x6f\ +\x6e\xb6\x8f\x7e\xf5\x73\xad\xf3\x8b\x3a\x5e\x42\x1c\x4b\xb1\xe0\ +\x58\x9f\x3b\x75\xe3\xff\x5a\xe8\xdc\x66\x5d\xb1\xd7\x6d\x76\xf6\ +\xb3\x05\xf2\x62\xbb\xbd\x7c\xb5\xfd\xf8\xfb\xdf\xdc\x9e\x7f\xf9\ +\x57\xdb\xd7\xbf\xa6\x73\x5b\x73\xab\xd0\x3c\xcf\x7d\x18\xfb\xd8\ +\xe0\xfc\x4c\x0a\x69\x92\x6a\xc8\x79\xb0\x67\xe1\xa1\x68\xa1\x44\ +\x4c\x79\xaf\xb3\x55\x01\xff\x1a\x3b\xa3\xe2\x89\x4f\x65\x4c\xf7\ +\x87\xf6\x73\xfc\xd2\x9f\x66\x1e\xb6\x4e\x4c\xbd\x77\xed\xf4\x59\ +\xc7\xb2\x5f\xa6\xf9\x54\x10\x82\xdd\xf5\xa8\x23\x0b\x39\x30\x7e\ +\xea\xb2\xe6\x5b\xe5\x4f\x7b\xd4\xad\x1c\x83\xcb\x3f\x38\x38\xf1\ +\x96\x02\x7c\xda\xb5\xfe\xaa\xff\x5f\x5a\xd7\xed\xf8\x19\xd3\x79\ +\xec\x33\x9e\x6b\xc4\xbe\xbf\xf2\xb3\x49\x1c\x98\x58\xbf\x4c\x53\ +\xfc\xc4\xd6\x5c\x1d\x54\x3a\x71\x2c\x52\x43\x60\xea\x1b\x9a\xdd\ +\x38\xc4\xed\xb7\x9a\x45\x07\x4c\x70\x54\x05\x07\x73\x80\x98\x63\ +\xc8\x88\x29\xb2\x6c\xfb\x2a\x6c\xd8\x5a\xc8\xb1\xb0\x5d\xc5\x43\ +\x29\x3e\x31\x17\x8a\x73\xe0\xe4\x42\x16\x35\xbe\x63\x6f\x57\xe4\ +\xc4\xf6\x74\x1f\xd9\x91\x2b\x2d\xed\x94\x1d\x2c\xd2\xfc\x00\xad\ +\xc7\x7a\x6f\xc7\xa4\xa0\x5f\xe9\xdb\x48\x63\x7c\x72\x80\x13\x5e\ +\x54\x9b\xa5\x20\xd8\xaf\x31\xb8\x9a\x87\x90\xcd\x0f\x52\x37\x8e\ +\x5a\xf5\xbb\x03\x05\x0f\x1a\x7d\x26\x61\x42\x64\x77\xd4\x6c\xb5\ +\xaa\x2f\xbe\x22\xd5\x4f\x52\x9c\x46\x44\xfb\x18\xaa\x80\x04\xc5\ +\x28\xa0\x68\xa4\xb4\x9c\x8e\x98\xca\xbf\xbe\x54\x1b\x6e\x29\x34\ +\x9d\x20\x23\x33\x11\x14\x7d\x5f\xf6\xfa\x14\x19\x56\x81\x44\xa8\ +\x7e\x22\xcb\xd5\x04\x3e\xc2\xb4\x2d\x56\xac\x02\x2d\x67\xd0\x60\ +\xe7\xb4\x0c\x07\x43\x2c\x6d\x05\xf0\xf8\x80\xb3\xed\xd4\x85\x33\ +\x46\x64\xbc\x0b\x36\xc6\x30\x55\x92\x70\x0c\x63\x8d\x5f\x60\x29\ +\xd8\xf3\xb3\x8a\x19\x2f\xb3\xc8\xe1\x3c\x3d\x56\x82\x45\x26\x4f\ +\xc5\x4a\x4f\x1d\x8d\xb9\x92\xc6\x47\x4e\xf0\x33\xcc\xe8\x43\x9e\ +\x8a\xed\xb8\xd4\x5f\x59\x31\x5e\x07\xe9\x55\x47\x45\xd6\x3b\x1b\ +\x23\x7e\x2f\x59\x2f\xce\x04\x87\x14\x86\xd1\x63\x9e\x09\x9f\xfd\ +\x8b\x4e\x8c\x18\x0c\xdb\xe3\xb1\x16\xad\x82\x29\x31\xc2\x3d\x85\ +\xa3\xcf\x70\xce\xb8\x1c\x26\x6c\xcf\xdb\xed\xe9\xf3\x8f\xb7\xdf\ +\x7f\xf8\x93\xed\x77\xef\xff\x72\x7b\x74\xc1\xf5\x2a\xf5\x26\xed\ +\x8c\x83\x0e\x3a\xe8\xa0\x83\xde\x92\x8e\x17\x6a\x07\x1d\x74\xd0\ +\xe7\x4b\xcc\xd1\x9a\xdf\x96\x3e\xcd\xbc\x8e\x3a\x4c\x1e\xfb\x3e\ +\xa3\x73\x9c\xdc\x77\xdc\xa3\x5d\xdc\x62\xf0\x74\xfa\xe6\xe5\x76\ +\xf7\xd1\x07\xdb\xf5\x7b\x3f\xda\x9e\x3c\xe6\xef\xa8\x2f\x14\x91\ +\x18\x26\xb8\xcc\x48\xfd\x22\xca\x0f\x00\x01\x99\xa4\x6a\x22\x2b\ +\x5f\x4f\x82\xc7\xac\xd5\xac\x18\x73\x6c\x54\x03\xd2\xd3\x7c\x74\ +\xb3\x3d\x8d\x87\xb1\xdb\xa3\xc4\xea\x63\x3b\x4a\xc2\x6b\x7b\xd2\ +\x3d\xc9\xf7\x4d\x41\x74\x26\xff\xf8\xc6\x0d\x41\xf5\x5f\xc5\xe0\ +\x7e\xf8\x19\x56\x8c\xeb\xcb\x47\x6e\x6c\xea\xf8\xdb\x16\x4b\xbc\ +\xfd\x79\x18\xeb\xdc\xf8\xc0\x47\x4c\xfa\x34\x62\xcd\xd8\xc1\xdb\ +\xd7\x3a\xab\xe7\xbe\xef\x58\x9f\x11\x3f\x57\x19\x13\xea\xb0\xe1\ +\x1b\xe4\xad\xb8\x40\x68\xc1\x5c\x3f\x62\xfa\x6b\xa3\x07\x93\x21\ +\x05\x68\xf8\x2b\xd8\x11\x6a\xb0\x71\x5e\x10\xf8\xa6\xc9\xbe\xb0\ +\x0b\x43\x4e\x7a\xd2\x3f\xb0\x05\x3f\x47\xc2\x7b\xbd\x3a\x87\x89\ +\xf8\xae\xe3\x36\x61\x74\x98\xe0\xd8\xa9\x17\x5e\xe9\x1c\x76\x8e\ +\xce\xc6\xad\x40\x07\xdc\x0b\x2a\x78\xc1\x87\xbd\xf2\x27\xa1\x5e\ +\xfd\xd3\x1c\x2b\x9f\xd2\x03\xbe\x07\xe0\x85\xce\x45\xec\xa3\x4f\ +\xbd\x26\xfa\xb8\xf2\x12\xe4\x7d\x81\xde\xeb\xb1\x23\x39\xfa\x61\ +\x8b\x85\x16\x1f\x4f\x7d\x7c\xa5\x9c\x14\x7b\x36\x93\x9b\xec\x75\ +\x81\xce\xd5\xed\xd8\x8c\x1f\x21\x6b\x14\x1c\x37\xa5\x0f\xef\x19\ +\x3d\xed\x0e\x54\xd4\x2b\x55\x2d\xcb\xec\x1f\xac\x0d\xcd\x3e\xad\ +\xed\x0e\x32\x34\x22\xda\x5c\x28\xbe\xee\xde\xa4\x25\xc8\x01\x8a\ +\xf3\x86\x2e\xa8\x36\x3a\xc2\x05\xdc\x63\x4b\x8d\x4d\xf1\xe7\xa1\ +\x89\xc7\x37\xc6\x18\x24\xb8\xc7\x1b\xf0\x39\xc6\x65\x7c\xeb\x98\ +\xfd\xd8\x99\xfa\x48\xf0\xd9\x86\xff\x67\x98\xeb\x85\xf3\xc6\xa0\ +\xf5\xf3\xd2\x7a\xe7\xbc\x25\x5f\xea\x18\x23\x97\xa5\xb0\xbe\x06\ +\x51\x67\x69\x23\x18\xf5\x56\x8c\x7c\xd3\xef\x7c\x5e\x17\xd9\xe4\ +\xab\x3a\xd9\x6e\x1d\x8b\x5e\xeb\x4b\xbc\xb7\x57\xfc\x73\x1b\x4d\ +\x9f\xf1\xa1\x97\x7f\xad\x47\x9e\xca\x4d\x6c\x5e\xe0\x05\x6b\x9c\ +\xfa\xb7\x5e\x67\x1d\x2e\xba\x16\x3f\xbe\xbc\xd2\xaa\xea\x7a\xfc\ +\xbb\x5f\x6f\xdb\x8b\x8f\x2b\xb7\xf7\x30\x85\x69\x7f\xbc\x7d\x8e\ +\x44\x93\x7f\xa4\xa6\xfe\x6c\xa9\x76\x8b\x37\x53\x6f\x2b\x8f\x6f\ +\x17\xdb\xcb\x97\xb7\xdb\xf7\x7e\xfa\x7f\x6c\xcf\xbf\xa6\x3d\x76\ +\xf1\xd2\x6e\x7e\x82\x8a\x2a\x94\xec\xda\x1b\xcd\x2f\xf2\xff\x60\ +\x92\x4a\xb3\x29\x1f\xa6\xf6\x63\x97\xa3\x6d\xa8\xe5\xa0\x65\x1f\ +\xc5\x27\x60\x37\xf6\x24\xc0\xa5\x8e\x31\x16\x67\x73\x6e\x69\x08\ +\x96\x21\xc3\x3a\x3a\x55\xa1\x8f\xef\x1c\xb3\x7e\x40\xab\x63\xd6\ +\x63\x08\x11\xe0\x3e\x8e\x75\x2e\xd9\x26\x3c\xc7\x3b\xe7\x43\xce\ +\x31\xb8\xe2\x90\xe4\x2e\x1e\x6d\x09\xcf\xc3\x54\x1e\x1c\x53\xaf\ +\x71\xf2\xcd\x38\xa7\xb6\x5e\x92\x45\x41\xc4\xf9\xdb\x7e\xbe\x96\ +\x88\x0b\x4b\x9c\x4f\xbb\xd4\x55\xaf\xcd\x95\xc3\x6d\x36\x4e\x4c\ +\xb3\xdb\x11\x2f\xb1\xdd\x7e\xf7\x9b\x41\x7a\xfa\xab\x3d\xd9\x14\ +\xf1\x83\xa5\x6e\x63\x86\xbd\x28\x0f\x3b\x44\x39\xe6\x7c\x0a\x49\ +\x82\x92\xc4\xb3\x04\xa4\xe2\x9e\xa8\x83\x10\x9e\x78\x7e\xa6\x9d\ +\xba\x05\x98\xfd\xa9\x62\x12\x2e\xfa\x6b\xff\x08\xa8\xf6\xa6\x69\ +\xce\xb7\xe0\x9a\xf9\x68\x1f\x9a\xe9\x1b\x31\xf1\xed\xdb\x5d\x98\ +\x4a\x66\xc4\x62\x8f\x98\xc2\x4f\x38\xdb\xcb\xad\x38\x64\x60\x65\ +\x1b\x3b\x47\xed\x14\xfb\x54\x2c\xdd\x12\xb2\x5e\xfb\xae\xf8\x53\ +\xd1\x52\xd9\xa2\x6c\xda\xb1\x6a\x30\x7a\xfb\x4e\xd4\x7b\xf2\x1e\ +\x55\x70\xb6\x6d\xa0\xec\x75\x91\xed\x02\x45\xd9\x36\x2b\x32\xd7\ +\x71\x74\xea\x1e\x35\x3e\xb2\xee\xc8\x87\x68\x54\xd1\xd4\x76\xd1\ +\x86\xc9\x13\x7f\x4c\x45\xac\x41\xa3\x2a\x78\x1d\xa3\xa2\x51\x5a\ +\x49\x85\x0c\x5d\x5d\x39\x11\x53\xa0\xcc\xc4\x43\x2b\x3f\xb2\x52\ +\x8b\xba\x12\x60\x59\x14\xe8\x8d\x59\x68\x91\x62\xdd\xdc\xe7\x5f\ +\xc7\x52\x71\xe2\xa7\x31\x7c\x63\x14\x23\x63\x96\xd4\x1a\xa3\x32\ +\xfe\x04\x9b\xe7\x5a\xb5\x25\x60\x8c\x0d\xae\x97\x71\x12\xcc\x23\ +\xa9\x30\xff\x1c\x23\xe7\x99\x12\x6a\xe8\x4c\xbd\x1a\x4b\xf3\x52\ +\xad\x7c\xc2\x3d\x7e\x8e\xf1\x75\xfa\xfb\xdb\x66\xa9\xdb\xfe\x19\ +\x9f\x98\xa5\x9e\xb9\xfc\x25\xbb\x6f\xf9\x06\x9c\xec\x5a\xac\x79\ +\x25\xfd\x91\x8f\x32\xc4\xf6\x01\x05\x6a\xee\x38\xad\x4a\xe2\xbd\ +\x94\x5e\x4a\xf4\xc6\x7b\x1b\x27\x0f\x4d\xa5\x4f\xea\x89\xe6\x82\ +\xd6\x15\x45\x9f\x76\x74\x71\xb9\x3d\x79\xfa\xdb\xed\x27\xef\xfe\ +\x93\x1f\x6f\xe4\x79\xc6\x41\x07\x1d\x74\xd0\x41\x7f\x28\x1d\x2f\ +\xd4\x0e\x3a\xe8\xa0\xcf\x97\xe6\x1c\x3f\xb3\xc2\x95\x1e\x9a\xcd\ +\xad\x75\xde\x44\xc4\x36\xaf\xd4\xf6\x9b\x66\x8c\xc4\x31\x2b\x35\ +\xc9\xb0\xaa\x42\x9f\x17\xba\x11\xff\xf8\xdd\xef\x6c\xef\x6c\xd7\ +\xdb\x93\xab\x4b\x85\x69\x2a\x5b\x3f\x31\xe3\x87\x27\xfc\x15\xfd\ +\xed\xf5\x76\x77\x83\x2e\x06\x63\xf2\x0e\x6b\xd1\xb4\xd7\x75\xc8\ +\xcf\xdc\xd6\xa9\x5d\x82\x49\xec\xe6\xbb\x85\x2d\xd4\x5d\xcb\x84\ +\xbc\xfc\xe4\xb2\xbd\xe0\xad\x7b\x92\x8f\x6c\xf6\xdd\xc6\xd4\xe9\ +\x17\x31\xdc\xa8\xc0\xea\xb3\x31\xdb\xc8\x62\xd7\x0b\xfb\xc1\xcf\ +\xea\xf3\x37\x07\xf6\x3e\x72\x24\x4f\x73\xda\x9b\x72\xf1\xd3\x97\ +\x6e\x5f\x3c\x1f\x4a\x90\xb3\x75\xc4\xd4\x63\x23\x30\xa2\x0f\xcc\ +\x90\x3c\x43\xb7\xab\x9c\xad\x4f\x26\x6f\xc7\x35\x8d\xba\x8d\xaf\ +\x92\xf8\x52\x4d\x52\x86\xcd\xcd\x23\xd2\x54\x7a\xe7\x2f\x7e\xe5\ +\x9b\xe4\x3a\x66\x7c\x33\x05\x43\x7d\x53\x54\x0c\x0d\x3b\x3e\xb3\ +\x1d\x55\xaf\x7c\xb3\xdd\xca\x21\xb2\xab\x50\xe3\x2a\xdb\x3a\xa5\ +\xae\xd3\xd4\xb1\xdd\xde\xca\xa6\x52\x76\x6d\xa9\x58\xf3\x18\x3b\ +\xe1\x41\xab\xd1\xab\x2f\x3a\x17\x6f\xbd\x8c\xd1\x1f\x64\xeb\xf6\ +\x4c\xd9\x64\x1f\x31\x1d\xd4\x5c\x9b\xee\x75\x74\x5a\x05\x0e\x55\ +\xe5\xf1\x10\xf6\x4c\x22\x41\xd9\xbd\x75\x9c\xa8\xd8\xf5\x01\xa2\ +\x7e\x57\xed\xd8\x8a\xe3\xb0\x4f\x6c\x25\x22\xce\x4f\xbb\x96\x0a\ +\xae\xd1\x25\x4a\xfb\x9c\xc9\x9a\xab\x55\xd9\x54\xd1\x25\x2b\x4e\ +\x22\x11\x75\x8c\x81\x57\x95\xbe\x51\x27\x12\x7d\xed\x76\x3b\xba\ +\xe9\x19\x73\xd2\x5e\xfb\x13\x30\xeb\x2f\x44\xbd\x04\x47\x94\x6a\ +\xea\xf8\x93\xac\xa2\x99\xd8\x75\x4a\x76\x82\x6e\xcf\xdd\x2c\x66\ +\xd8\x09\x16\x20\x43\x4c\x07\x94\xcf\x63\x94\x18\xe9\x31\x29\x63\ +\xd4\x18\xb3\x6a\x1c\xb3\x04\x27\xc9\xc0\xd1\xc1\xa8\x1b\x4c\xe0\ +\xd4\xfd\xd0\x3c\x71\x6d\xe3\x9f\x76\xc5\x60\x9b\xf3\x82\x2b\x79\ +\xc3\xd6\x5f\x15\xce\x8b\xb3\xce\xb3\xf8\x3b\x97\xd7\xc5\x4c\x1d\ +\xb0\x65\x9d\xc0\x0a\xe7\x61\x52\xd7\x0f\xaf\xf9\x6b\x5d\xb1\x91\ +\xe4\x29\xf6\x7a\x6a\xa3\xf5\x36\x8b\x2c\xbf\xe2\xf9\xbf\x21\xb1\ +\xe3\x1f\x7d\xe1\x42\xe7\xfa\x89\x23\xcf\xa3\x3c\xf2\x71\x0e\xd6\ +\x3b\x0f\xa8\xd0\x13\x67\xd9\xeb\xab\x34\x3c\x00\xba\xd4\xb5\xe7\ +\xe6\xb7\xbf\xde\x6e\x3f\xfc\xcd\xb6\xdd\x28\x56\xf8\x4a\x27\xe6\ +\xe7\x47\xf3\xe0\x3c\xa8\x89\x8d\xbf\xee\x80\x3e\x5d\x01\x97\x31\ +\x82\x97\xa4\x37\x1f\x7d\xb0\x7d\x78\xfb\xdd\xed\xf9\x97\x2f\xb6\ +\x3b\xbe\x9d\xc6\xcf\xfe\xa9\x82\x0f\x19\x1d\x0f\xb7\xb7\xaf\x34\ +\xa7\xa2\x26\xc7\x2a\x87\x51\xed\x6b\x52\xf1\x2d\xa8\xa4\x4a\xee\ +\xa2\xa9\xa1\xab\x3d\x62\xcb\x86\xba\x07\xf6\x95\xa7\xfd\x96\x6e\ +\xa3\x2b\xb5\x47\x04\xce\xb1\x6a\x1f\x3a\x12\x1b\x93\x3a\xed\x63\ +\x1d\x74\x1e\xf1\x70\xd5\xc7\x30\xe7\x7e\x8e\x6b\xf7\xbf\x72\x74\ +\xfc\x78\xe8\xc9\x3a\x52\x62\xab\x5e\xce\x03\x71\x9d\x27\x8e\x71\ +\x3d\x9a\xe0\x61\x32\xb1\xd9\x26\xc8\x91\xab\x99\xf8\x9c\x66\xf1\ +\xab\x48\x1c\x36\x2f\xd6\xf0\x75\xbe\x62\xe3\xd4\x2b\xdc\xbe\xc4\ +\xa2\x53\xd0\x8e\x92\xa7\xbe\xf1\x8e\x8d\x1c\xb1\x0e\x4f\x2e\x00\ +\xeb\x06\x83\xa3\xf4\x43\x77\x3c\xf1\x82\xe1\xaf\x18\x7d\xbc\x97\ +\x46\x3c\xb2\xed\x19\x93\xba\x56\x77\xbe\xd8\x36\x4d\x46\x0c\x34\ +\x58\x7a\x8b\xee\x0f\x76\x1d\x29\x56\x2d\xf1\x71\x3c\xc1\x55\x61\ +\x70\x95\x2a\xda\xd5\x76\x8b\x52\xcf\x53\x05\xb8\x6d\xd4\xd2\x21\ +\xdb\x0f\x70\x8a\x21\xee\xd1\xc0\xbb\x42\x73\x11\xaa\x76\xe5\x3d\ +\x37\x3c\x69\x5a\xd3\x57\xd8\x3e\xf0\xd3\x51\x25\x2d\xb1\x28\xd3\ +\x3e\xdd\x16\xf7\x29\x68\xf6\xaf\x3e\xe2\x9e\xaa\xe5\x3c\x5f\xa8\ +\x36\x72\x8e\x93\xe8\x86\xcd\x76\x84\x17\xb2\x75\x82\x99\xee\x85\ +\x72\x6c\x20\xeb\xd8\x43\x2d\xda\x85\x35\x9d\xe6\xac\xba\xa1\x3e\ +\xce\x4a\x78\x35\xca\x86\x97\xba\xb6\xa3\x86\x4e\x7c\x23\xcf\x52\ +\x5a\x0a\xc7\x05\xe2\xf3\xa5\x75\xdb\x85\x0d\x7d\x54\x91\xa8\x58\ +\xfc\x92\x3e\x86\x86\x1d\x8c\x62\xda\xe2\xda\x36\xd1\x19\x27\x32\ +\x1e\x79\x7c\x62\xec\xf1\x98\x52\x18\x4b\xd7\x33\xe3\xcf\xd8\xe4\ +\x71\x51\x41\xc9\x23\xbb\xc6\xca\x1e\x5f\x33\xde\x31\x66\x86\x77\ +\xfa\x12\xab\xc8\xd2\x93\x73\xf8\x94\x7b\x8e\xbf\xb4\x53\xb8\x6b\ +\x54\xbb\xc3\x97\xb1\xbd\xf3\x0b\x12\x27\x86\x15\x92\xe6\x3f\x0a\ +\x60\xfb\xe0\x6c\x5f\xf2\x18\x52\x81\x33\x22\xfe\xe0\x93\xc9\x22\ +\x59\x1c\x30\x3a\x79\xf3\x2d\x35\x70\x8a\xe1\xf6\x1f\xa1\xdc\x71\ +\xfd\xe4\xde\xde\xb8\x50\x26\x4f\xa2\x47\x17\x17\xdb\xb3\x77\xae\ +\xb7\x0f\x7e\xf7\xd3\xed\xe5\xdd\x6f\x64\x13\x53\x79\x0e\x3a\xe8\ +\xa0\x83\x0e\xfa\xd4\x74\xbc\x50\x3b\xe8\xa0\x83\x3e\x7f\xca\x7c\ +\x2e\xc4\xec\xad\xf9\x21\x7a\x93\xff\x93\xd0\xda\xf6\x59\x5a\x1b\ +\x5a\xf4\x47\x77\xdb\xf5\xcd\xd5\xf6\x9b\x6f\xfd\xdd\xf6\xe4\xe9\ +\xc5\x76\xa9\x3b\x35\x52\x31\x37\xf5\x84\x96\xc9\xf7\xed\xad\x24\ +\x93\x5b\x4d\x95\xef\xe6\xff\x51\xeb\x87\x09\xcd\x88\x61\xab\x0d\ +\x8b\x5e\xc9\xd2\xc7\x0d\x60\xc1\x1d\xdb\xdc\x93\xf2\x41\xe8\x7c\ +\x2c\xf7\xdc\xb1\x2c\x74\x70\xde\x08\xb8\xb3\xea\x1f\xfd\xa4\xcf\ +\xed\x2b\x3f\x36\x3e\xcb\x8a\x83\xbb\x5e\xc5\x61\xfb\xe1\xaf\xeb\ +\x84\x6b\x43\x48\x4f\x0e\xb3\xe3\x96\x7a\x8e\xab\x78\x72\xae\x6d\ +\xf2\x2c\xca\x78\xfb\x2b\x84\x78\x30\xd9\xde\xf0\x48\xd8\x01\x88\ +\x96\x05\x15\xd6\xd0\xc0\xbd\xd8\x15\x02\x13\xd3\xd4\x04\xa7\x8a\ +\xb4\x2b\xa6\x29\x2f\x2c\x44\xe5\x48\x46\x1f\x15\x89\x73\x11\x7b\ +\xf2\x39\x0a\x4e\x59\xa9\x4c\x7e\x78\x63\x9e\xf6\x69\x8e\x19\xdf\ +\x71\xeb\x0d\x51\xf4\x61\xb7\xb1\xf0\xb2\xaa\xa6\x61\xfa\xa1\xd2\ +\xd2\xd6\x52\xc7\x79\x2b\x70\x17\x23\x1a\x21\xa7\x74\xea\x90\xee\ +\x6d\x0a\xc7\xdc\x53\xe1\x29\x6a\x9d\x7a\x03\x75\x93\x06\x87\xb0\ +\x6c\x36\x55\xdc\x0e\xef\x63\xa6\x69\xdf\xfd\x07\x69\x56\xe1\xd8\ +\xab\xf5\x7f\x1d\x9f\x24\x1e\x30\xc4\x36\xc3\x20\xc4\x8e\x25\xd6\ +\xae\x11\x39\xfd\x23\xa4\x2b\x42\xbd\x7f\x55\x3a\xa7\x2b\xc7\x6e\ +\xbc\xf4\xa6\xb6\xe2\xa9\x48\x15\x23\xbd\xc8\xfb\x24\xa9\xc4\xb4\ +\x81\x17\x2b\x51\x79\x48\x55\xfb\xa4\xa8\x75\x47\x51\x14\x70\x2e\ +\x66\xad\xe9\x55\x97\x09\xd2\xc7\x54\x08\x30\xdb\x79\x0f\xa7\x82\ +\x71\x15\xf6\x21\x3b\x51\xd9\xc6\x6c\x97\x6e\x4c\x1f\xf6\x3f\xe3\ +\x48\xc5\xc4\x07\x2e\x39\xc6\x99\xc2\x6b\xac\xf1\x18\x65\x9b\xba\ +\x85\x13\xc3\x0b\x9e\x11\x93\x31\x2d\x3e\xf4\xf2\x31\x96\x2d\x78\ +\xc6\xb4\x8c\x71\x5d\x2f\xe3\x2b\xcc\x18\x8a\x9d\x17\x5a\xc1\xa3\ +\xc7\x1f\x5f\xeb\xb4\x61\x9f\xf3\x35\xbe\xb6\x7f\x82\xd9\xde\xe7\ +\xf6\x37\xdd\xea\x45\xd5\xe0\xf2\xa9\x18\xb1\xe8\xce\xe3\x75\x49\ +\xcc\xf0\x37\xc6\xfa\x2c\x9c\xf5\x5b\xd6\xd1\xf9\x65\xfb\x67\x29\ +\x83\xcf\x36\x97\x38\xe3\x5c\x4b\x4b\x2f\xfb\x91\xaf\xaf\xd2\xb5\ +\xf0\xde\xe5\xf1\xc5\xe5\x76\xf9\xf2\xf7\xdb\xef\x7e\xfe\x43\xef\ +\x67\xbe\xb9\xc6\xfe\x33\x49\xe6\x68\xfd\x0c\x89\xdc\xcd\x2b\x9d\ +\xda\x9f\x15\x7d\x5e\x79\x3f\x2f\x3a\xed\x6f\xef\x80\x81\x67\x24\ +\x31\xc0\xfc\xe9\xd5\xa5\xec\x47\xdb\x77\x7e\xf8\xf7\xdb\xe5\xf3\ +\xf7\xb7\x8b\xa7\xef\xeb\xd8\xe0\x9b\xff\x89\xea\x07\x9c\x37\x37\ +\xaf\xea\x30\x62\xe4\xe0\xb8\x52\x86\x1c\x76\x3a\x95\x31\xea\x58\ +\x13\xa5\xac\x86\x11\xfe\x39\x40\x6a\xa1\x53\x44\x34\xa7\xd8\x8f\ +\x65\x7b\x23\xe4\x36\x9d\xc7\xca\xd4\xe9\x81\x6d\xe4\xa2\x0f\x9c\ +\xbe\x37\x77\xcc\x64\xaf\xe3\x09\x4f\x5f\x72\x79\x6e\x49\x7d\xda\ +\xe3\x1c\x64\xc1\x67\x09\xb4\xb6\x21\x4c\x31\x6c\x2f\x7c\xe6\x8e\ +\xe7\xf4\xf2\xc0\x5e\xf5\x88\xf3\x76\xac\x71\x16\xa9\x6d\x91\x97\ +\x74\x55\x07\x9c\x98\xaa\xdb\x98\x02\x97\x36\x3a\x6e\xa9\xd3\xb8\ +\xcf\xdd\x24\x20\x67\xb6\x25\x92\x00\xe5\xbb\xad\xb6\xbd\x94\x94\ +\xe2\x3f\xac\x6a\xc2\x5f\x66\x62\xc3\x26\x2b\x14\x6a\xc3\x5a\x05\ +\xa0\x8f\xa0\x85\xc0\x66\x88\x64\xda\x4b\x5e\xd7\x36\x3a\xc4\xda\ +\x60\x71\xab\x3e\xc0\xa2\x8c\x1c\xed\x87\x2c\x17\xdb\x84\xf1\x00\ +\xb7\xba\x12\xd7\x52\xe7\x2d\xda\xf9\xf1\x21\xba\x1b\x36\x26\xaf\ +\x7d\x32\x2f\xb4\x87\x4f\x9c\xa6\xc2\x3a\x09\x66\xa9\x53\xcf\xbe\ +\x8b\xb1\x08\x64\x73\xe0\x2a\x86\x78\x7b\x1a\x09\x8a\xda\x16\x9f\ +\xb6\x01\x4f\x0a\xe2\x3d\x6a\x47\xef\xdb\x0c\x0b\x91\x35\x1e\xad\ +\x15\x57\x5d\xb4\x5b\x07\x95\xed\x3e\x09\x0b\x15\xd8\xb1\x63\x72\ +\x33\x4a\x11\x0a\xae\x05\x77\x2f\x46\x40\x91\x6d\x15\xdd\xd9\xa9\ +\x4c\x5f\xd3\xd9\xba\x11\xab\x6b\xd8\x03\x54\x2f\xa4\xc7\x1c\x8a\ +\xa8\xf0\x82\xcc\x32\x06\x06\x00\x95\x33\x98\x0a\x8f\x25\x2b\x9e\ +\x97\xf0\x90\x21\x8f\x21\xa5\x23\x1d\xdf\x63\xcd\xa9\xae\xd8\x3b\ +\xbe\x49\xaa\xf1\xc3\x63\x08\xb8\x98\xc5\xe3\x8c\xe6\x2e\xcc\x11\ +\x84\xe5\x0f\x02\xba\x6e\xc6\xcb\xfd\x1f\x1a\x64\xde\x10\x9e\x31\ +\x83\xb1\x3b\xa6\x7c\x8e\xb1\x4e\xfd\xfd\xcf\x48\x76\x9f\x52\xaf\ +\xfa\xd7\x78\xf7\x81\x7e\x12\x9f\x1e\x6b\x85\xb2\x4e\xe6\x5e\x5a\ +\x97\x4c\x5c\x91\xf1\x70\x93\x6d\x05\x46\x4e\xbf\xf5\xc1\xfd\x13\ +\xb9\x69\xd7\xeb\x2f\xe0\x46\xf3\x3b\xff\xc4\xe5\xe8\xe3\x9d\xe6\ +\x4a\xf8\x2f\xb6\x0b\xc9\x8f\xaf\x7f\xb4\x7d\xf0\xc1\x7b\xce\x08\ +\xce\x98\x73\xd0\x41\x07\x1d\x74\xd0\xa7\xa7\xe3\x85\xda\x41\x07\ +\x1d\xf4\xf9\xd3\x1f\x73\xc2\xf6\x09\xda\xca\x2d\xcb\xa3\xdd\x83\ +\xb9\xc6\x98\xa9\x5e\x5d\x5c\x6f\x9b\x26\x9e\x57\x4f\xaf\xb6\xcb\ +\x47\x1a\x2e\x71\x12\xc7\xe4\xfa\x46\x13\xf2\xdb\x3c\xb0\x64\xe2\ +\x6a\x9c\x59\x6e\x4d\xf6\x2d\x99\xe1\x4a\x67\x42\x6b\x9f\x63\xc4\ +\x14\x96\x10\x4a\x25\x26\xc6\x76\x4d\xb6\xab\x70\x3e\xd1\xb8\xd9\ +\x76\x2e\x94\xfa\xb9\xac\x80\x15\x57\x36\xdc\x7d\xb1\xce\xc4\x3a\ +\x7d\xe9\x1b\x82\xf1\x8d\x02\xde\x66\x69\x02\x6e\x7d\xf8\xb1\x53\ +\x3f\xeb\x31\xeb\x8d\xf5\x92\x0e\xde\xb9\x47\x8e\x8e\x19\x4c\x57\ +\x89\x49\x9c\xb7\x87\xf0\xd4\xa7\x9e\xfc\x2a\xbc\xed\x89\x35\xb6\ +\x72\x61\x08\xaf\xdf\x30\x8b\xea\x46\xbf\xb0\xa1\xb7\xcd\xb2\xd8\ +\x73\x7b\xa3\x3b\xe3\xa0\xde\xc5\x71\xad\x9e\xc2\xd2\x4b\xeb\xd1\ +\x3a\x36\xb2\xf5\x41\x0b\x4e\x3a\xd6\x32\xee\x71\x7b\x5f\xb4\xea\ +\x22\xdd\x9c\x7a\x7f\xa3\x2e\xfc\x20\xb5\xd3\x4f\x5b\x8a\xab\x8d\ +\xb4\x73\xa6\xbd\x25\x36\xd5\xd9\x4e\x5d\x87\x90\xae\x83\xb5\xd4\ +\x3d\xd7\x91\xd1\x7e\x78\x17\x42\x1e\xce\x31\xeb\x11\x83\x2a\xde\ +\x64\xa9\x00\x6e\xf2\x0c\x88\x50\xbc\x2e\x9f\x8e\xbc\x7a\xf4\xa7\ +\xd9\xc7\x57\xf1\x1b\x28\xc7\x4d\x25\x88\x55\xcb\x92\x22\x3b\xf5\ +\x41\xda\xb9\xcf\xc6\x01\x66\x7b\xdf\x73\x73\x00\xf4\x76\xcb\x86\ +\x28\x26\x3e\xfd\x08\x0e\x3a\x6b\x83\xdc\xfb\xe6\x58\x50\xdf\x78\ +\xcf\xd8\x60\x89\xc7\xd6\x76\xaf\x83\x2e\xc7\x80\x96\x0a\x75\x57\ +\xc0\x7c\x7c\x84\x22\x53\x8e\x4c\xf6\xa7\x05\x73\x29\x69\x25\x7a\ +\xa8\x23\xf6\xe4\x9a\xaa\x74\xdf\x03\x25\x87\x7d\x34\xe5\xd0\x25\ +\x16\x05\x6c\x20\x68\x5a\x1a\x27\x96\x21\xa7\xc7\xa5\xb2\x33\x16\ +\xc1\x8c\x5b\x35\x4e\xf9\xe5\x19\x4c\x5d\x24\x79\x3a\xa6\x75\x64\ +\xc7\xc1\x3c\xf4\x49\x0c\xe3\x9d\x14\x89\xe9\x37\xb6\xe3\xce\x87\ +\x5e\xd7\x11\xdb\x1a\x47\x4f\x30\x29\xe5\x93\xe4\xaf\x8f\xcb\x1e\ +\xb2\x38\xd7\x23\xd5\x5f\x62\x1a\x1b\xeb\x28\xdc\xb2\xea\x24\x66\ +\x8d\x8b\xbe\x5e\x13\x54\xc9\x3c\xd6\xef\x04\x6b\x7d\xd8\x0c\xe4\ +\x6a\x6f\xd8\xc3\x07\xae\xfc\xb6\xa5\x13\xd7\x3e\x5d\x4f\x6f\x69\ +\xbf\x62\xee\xa4\xdf\xdd\xde\x28\x26\xc7\xcf\xd5\xe3\x4b\xad\xd7\ +\x47\xdb\xcd\x2f\xdf\xdd\xb6\x9b\x8f\xb7\x47\xe4\x37\x9d\xca\xcf\ +\x88\xea\x90\xfd\xa3\xd1\x1f\xbb\xbd\x3f\x94\x5e\xd7\x5f\xef\x0a\ +\x4e\xd2\x0e\x93\xa2\x7d\x7c\xfb\xea\x7a\xfb\xf1\x2f\xff\xe3\xf6\ +\xf8\x9d\x97\xb6\x79\x14\xe8\x73\xc4\x11\x3c\x08\xe4\x1b\x6a\x7c\ +\x01\x31\xc7\x8d\x1f\x60\x4a\xa6\x7a\xc6\x1e\x18\x02\xb6\x74\x33\ +\x15\x33\xbd\x4b\x29\xaa\x39\x1e\x7d\x09\x36\x7a\xb5\x93\x50\x8e\ +\x5f\x32\x49\xd2\x0f\x7b\xdd\x3b\xfb\x7c\xfe\xf0\xc0\x52\x32\xfd\ +\x13\x7b\x2c\x68\x2e\xac\xec\x3c\xe4\xad\x58\x96\xd7\xc6\x38\x62\ +\xc6\xd1\xb2\x72\xc7\x3f\x99\xba\x2a\xd6\xd3\xd0\x2c\x27\xa7\x4e\ +\xb8\x30\x4b\xe2\x1c\x9b\xed\x10\x3c\x7d\x60\x1e\x68\x9f\xd7\xbd\ +\x7d\x48\xda\x29\xe9\xba\x2b\xd3\x37\xfa\xa2\x7d\x32\x7c\xc1\xfc\ +\xe9\x7d\x25\x8c\x6b\x07\xfd\x69\xff\x88\x29\x39\x05\x65\x11\xb1\ +\xe5\x4b\x00\xcc\x27\x20\xd7\xa7\xcc\x7d\xcb\x6f\x2a\x99\x10\x73\ +\x44\x14\xf4\x14\x27\x94\xa0\xe1\x2a\x73\x70\x3a\x82\xa8\xd6\x63\ +\xde\x8f\x2b\xf2\x25\x74\x01\x5b\x3d\xe5\x73\x34\xf0\x0a\xf2\x75\ +\xb9\x18\xd1\x7a\x8c\x7b\xe6\xa0\x15\x1f\xbe\x61\xd4\x59\xd0\xb6\ +\x39\xc7\xc5\xdb\xd0\x98\x1b\x50\x61\xac\x68\x31\xf6\xd8\x4e\xa5\ +\x9b\xed\x35\x7f\x5a\xca\x19\x2b\xea\x44\x95\xec\x6c\xce\x65\x7d\ +\xba\x1f\xf7\x22\x17\x73\x7a\xab\xde\xea\x93\xee\xfd\x70\x86\x9c\ +\x76\x04\x4b\xba\x5d\xb6\xd0\x44\xcf\xd1\xac\x76\x12\x45\x8a\x56\ +\xba\x2f\x24\x33\x4d\xcf\x52\xa8\x8c\x1c\xf1\xc3\x16\x95\x9a\x7e\ +\x36\xc9\x10\x90\xa5\x43\xc0\xca\x40\x5d\xb8\xc7\x91\x9e\x0b\xdf\ +\xd7\x8b\x59\x90\x3a\xd7\x9d\x07\x92\xa4\xbe\x6d\xe2\xf9\xea\x56\ +\x8d\xf3\x19\x37\x18\xaf\xd0\xa9\x0b\xeb\xd8\x6a\xcc\x31\x2d\x79\ +\x59\x47\x3d\xc6\xdd\x1e\x03\xb9\x9e\x24\x97\xe7\x0a\xd2\xbb\x6e\ +\x62\x9b\xf7\x36\x63\xde\xfd\x18\xc6\xc0\xf2\xc1\x6e\x37\xba\xdb\ +\xd0\x0a\x74\x9b\xd1\x2b\xce\x9c\xd8\x70\xc5\x20\xbd\xb0\x8e\xac\ +\xd3\xd8\x04\xa5\x44\x87\xbd\xb9\x06\x96\x3a\xab\x1f\x7b\xe8\x0b\ +\x46\x3f\xe2\x0c\xa6\x2e\x47\x2a\x21\xfd\xef\x6d\x43\xce\x47\x8f\ +\x2e\xc5\x9a\x43\x7d\x49\x7d\xbb\x78\x6f\xfb\xed\xef\xdf\xdd\x78\ +\x1d\x37\x1f\x02\x93\x68\x95\x07\x1d\x74\xd0\x41\x07\xbd\x2d\x1d\ +\x2f\xd4\x0e\x3a\xe8\xa0\xcf\x9f\xc6\x0d\xc1\x67\x44\xe7\xe6\x7c\ +\x8d\xd1\x16\xfa\x27\x98\x17\x32\x09\x9d\x0f\xae\x43\x3c\xf8\xf9\ +\xfd\x0f\xbe\xb5\x3d\xba\xbb\xde\x1e\xe3\xf2\x5d\x32\xb1\x9a\xa4\ +\xfa\x41\x5f\x3f\x78\x0c\x33\xb1\xce\x64\x9a\xbb\x04\x74\xdf\x2d\ +\xf0\x71\x3d\xfa\xd5\x0f\xab\xc3\x99\xe8\x9a\x90\xa5\x42\x6e\x4e\ +\x6c\x48\x85\x7b\x46\x3c\x06\x79\x2d\x8b\x41\x5b\xdf\x71\xda\x87\ +\x47\xbf\xb8\x49\x60\xb6\x3d\xfa\x56\x76\xfd\x3f\xb4\xc4\x64\x7d\ +\x88\x69\x7b\x60\x85\xdb\x77\x0e\xeb\x7c\x85\x51\x7f\xc4\xc9\xe7\ +\x19\x3f\x0f\x7a\x7d\xb3\x52\x6d\xba\x4f\xf1\xe5\xe6\x29\xeb\x9a\ +\xbb\x8c\xa8\x2e\x86\x54\x8c\x1d\x31\xa1\xac\x7f\xd9\x05\x96\xab\ +\xb0\x85\xb3\x35\x27\x64\x0c\x65\x11\xe5\x40\x24\x5a\xd4\x58\x55\ +\x08\xde\x0f\x8d\xe2\x86\x8c\x8f\x4a\x22\x07\xc0\x80\xe2\xd2\x9d\ +\x66\xc5\xa1\xc2\xaa\x89\xd0\x82\x8d\x3a\x4d\xc3\xd7\xb9\x91\x09\ +\x58\xc3\xa0\x69\x27\x76\xed\xf3\xa8\xe1\xfa\x22\x6f\x7b\xc5\xb0\ +\x5f\xf8\x34\xee\xba\x02\xda\x84\xa8\x0c\x97\xab\x4d\xa8\xf5\x6c\ +\xb3\xf0\xbd\x07\x13\x95\xeb\x14\x5e\xaa\x28\x86\x0e\x7d\x02\xea\ +\x64\x5d\xff\x84\x1a\xee\x36\xbc\x2d\x8a\xa7\xb3\x38\xc5\x42\xb5\ +\xa2\x45\x79\xb8\x64\x65\xcf\x2b\xc9\x76\xfe\x32\xf7\xb4\x6e\xcc\ +\x25\xe6\x9e\x82\x24\xb6\xe3\xd3\x0f\x2f\xbd\x7f\x14\x32\x1e\xc0\ +\x41\x2d\x45\x15\x59\xba\x58\xc5\xcc\x36\x4b\x6f\x83\x99\x6e\x4a\ +\x61\xc3\x25\xa5\x7d\x43\x2f\x7f\xd3\xd4\x69\x35\x09\xfb\xa5\x1a\ +\xbe\x6c\xb7\x59\x29\xd8\x9a\x61\xa1\x33\xf0\x2e\x56\x9d\x76\xbf\ +\xa3\x26\xde\x98\x14\x7f\xe2\x87\x7d\x48\x37\x6e\x23\xe3\x16\x0e\ +\x6f\x3b\x86\xaa\x04\x49\x32\x56\x65\x8c\x72\x5c\x8d\x63\x19\xd3\ +\x5a\x36\x63\x2b\xae\xaf\x0b\x23\xbe\x72\xec\xc6\xc2\xd2\x79\x38\ +\x54\x58\xb8\x5f\xa4\x45\x77\xec\xf0\x45\xf7\x4b\xb6\xca\xe9\x17\ +\x5e\xd4\x19\x36\xeb\x11\xfd\xb4\xfd\xf0\x52\xb7\xd8\xed\x38\x0f\ +\x76\xd5\xaf\x98\xd4\xaf\x3a\xac\x77\xc9\xb0\xf6\xa7\xec\xe9\xa3\ +\x6e\xc7\x88\xc9\xd5\x7e\x6f\xd4\xd8\x1d\x93\xbf\xfc\x46\x17\xec\ +\xfd\x93\x58\xda\xc4\xd7\xed\x13\x63\x5b\x3b\xe7\xe2\xd5\xc5\x76\ +\x79\x71\xb9\xbd\xfa\xf8\xbd\xed\xe6\x83\x5f\x09\x3b\x77\x0b\xa3\ +\x84\x9f\x15\x75\xaa\x1c\xb6\x93\x4e\xed\x83\xe6\x36\x61\x9b\xa1\ +\xdb\xce\x06\xec\x92\x87\x7c\xbf\x7f\xf9\xc1\xf6\xc1\x87\x3f\xd8\ +\x9e\x3e\xbb\xd1\x51\xc1\x71\x61\xa7\x7d\xfc\x4e\x96\xbf\x39\xc0\ +\x71\x21\xdb\xef\x84\xf1\x6b\x7c\x93\x2a\x96\x91\x03\xa6\xab\x85\ +\x56\x43\xed\x62\x8e\x71\xb9\x88\x63\xac\xcb\x87\x76\xa0\x23\xd2\ +\x60\x24\xfd\x58\xd8\xc7\x6e\x1f\x93\xc6\xd0\x8b\x5d\x67\xb1\xef\ +\x71\x72\xe4\xb8\xd7\x3a\x2a\x9e\x1c\xcd\xac\x6f\x1e\xf2\x26\x6e\ +\xc6\x4f\x7f\xb0\xac\x05\x72\xd6\x4f\xbf\x1d\x3f\x70\x77\x7f\x91\ +\x60\xb9\xee\xcf\xf8\xb2\x6b\x7b\xa8\x9b\x85\x27\x7f\xb8\xf5\xc6\ +\x17\xae\xfd\xe3\x7c\x2a\xd0\x07\x6b\xe1\x63\x51\xed\x50\xc7\xed\ +\x94\x83\xcb\x7a\xe6\x03\x76\x5a\x54\xa0\x55\x93\x02\xaa\x9a\x31\ +\xff\x5f\xb5\xee\xef\xb2\x1f\x1d\xd3\xbc\x53\x0b\x80\x16\x15\xaa\ +\xa6\x66\x6c\xe9\x3b\x6a\x60\xe7\x88\x31\x5a\xc7\x14\xb3\x2e\x59\ +\x9f\x10\x6b\xd1\xeb\x3a\x78\x34\xda\x0c\xbc\x48\x29\xb3\x16\x65\ +\xb9\xac\x9d\xa1\x73\xce\xc6\xcc\x2a\x9a\x1b\xec\xf6\x66\xd0\xc3\ +\xbc\xab\x5b\xb4\xa8\x0f\xd3\x69\x50\xe5\x11\xf7\xf1\xd3\xba\xa5\ +\xfd\x15\x16\x71\x8f\xc0\x4e\xcf\x5c\xaa\xbb\x0e\x1c\x55\x3c\x35\ +\x8b\xa6\x3a\x0e\xad\x46\x84\x2a\x34\xdc\x4a\xa9\x56\xf8\xb8\x68\ +\xd7\x83\x94\xb6\x25\x2b\x8e\xfe\x5a\x9d\x45\x95\x45\xea\xd3\x40\ +\x56\x87\x74\x8e\x74\x67\x18\x1d\x81\xee\x8f\x6c\x89\xe9\x2d\x83\ +\x8e\xec\x98\xd1\xa3\x65\x7d\xd2\xe6\xee\x7f\x00\x3a\xae\x62\x1b\ +\xc2\xae\x6d\xc6\xf8\x11\x3c\x76\x73\x94\xb6\xd3\x06\x63\x75\x7c\ +\xb5\xbd\x17\xcc\x2d\xec\x5e\xaa\x51\x07\xb4\x24\x6e\xd5\xeb\x17\ +\x67\x8d\x69\xf4\x1a\xe3\x53\x7c\x79\xd1\x35\x6c\x22\xc0\x94\xcf\ +\x79\xa5\x9f\xbe\xf4\x62\xec\x0d\xb7\x5f\x12\xdb\x39\x16\xe9\x31\ +\xba\xbf\xa5\x86\xdd\xfe\x70\x5f\x03\xc2\x89\xb5\x5e\x7d\x50\x59\ +\x7a\x62\xbc\xd6\x1d\x9f\xcd\x61\x86\xac\xab\x88\x3f\xdb\x49\xcd\ +\x59\x87\x1a\xc7\xec\x3d\x6f\xdb\xcc\x76\x6a\x5d\xed\xd1\x4f\xb6\ +\x91\x62\xa2\xa7\x6f\xc8\xd0\xab\xed\xea\x4a\xdb\xfe\xf2\xe3\xed\ +\xc7\xef\xfe\x37\x99\xda\x6e\xed\x32\x51\xf3\xa0\x83\x0e\x3a\xe8\ +\xa0\x4f\x4a\xc7\x0b\xb5\x83\x0e\x3a\xe8\xf3\x25\xe6\x68\xeb\x3c\ +\x8d\xb9\x74\xf3\x9b\xe8\x6d\x62\x56\x3a\x6d\xe7\x35\xb4\x77\xab\ +\x22\xb3\xd2\x26\x39\xaf\x6f\xaf\xb6\xdf\xfd\xe8\x5b\xdb\xd5\xed\ +\xcb\x8d\x3f\x8c\x4f\x7c\x4d\x8a\x99\xa8\xde\xdd\x6a\xa2\xca\x84\ +\x54\xf5\xc4\xc1\x6a\x36\x4b\x64\xa5\xb4\xdf\x75\x5c\xbd\x0b\x13\ +\x39\x9d\xb7\x82\xc9\x6d\xb3\xb0\xbe\xe1\x31\x0e\x58\x7e\x63\x00\ +\x85\x79\x9a\xed\x98\x66\x26\xd2\xd4\xa3\x3f\xcd\xc4\x4a\xd2\x57\ +\xfc\xee\x6b\x3d\x8c\x2d\x1c\xe9\xb6\xbc\x3e\x48\xe2\x88\x9f\xb6\ +\x63\xbb\x1d\x63\x9d\x8f\x6d\x11\xdf\xc8\xdf\xf1\x23\x4f\xd9\xc6\ +\xc8\x91\xfe\xa7\x3d\xf4\xb2\xfd\xa1\x00\x28\x3c\x48\xa0\xd5\xc5\ +\xcf\x42\x95\x1f\x6e\xbf\xd9\x94\x7a\xd1\x4a\x9e\xc6\xb4\x84\xa4\ +\x7b\x7d\xcb\x0c\xf5\xde\x87\xa3\x0f\x5a\x73\x50\xb7\xf7\xaa\x6e\ +\x76\x02\x77\xfc\x3e\x63\x93\xd1\xaa\xdb\x6a\xcb\xae\xdb\x18\xe4\ +\xbd\xed\x1b\x55\xf6\x7a\x24\x01\x89\x2f\xbf\x23\x63\x2f\x0e\x93\ +\xd5\xd2\x21\xab\x06\xbb\x9f\xa1\x84\x24\xd7\x88\xb1\xac\xf6\x9a\ +\x81\xe0\xd2\x1f\x24\x3b\x67\xdf\x76\xf4\x48\xbd\xa6\x79\x73\x25\ +\xa2\x99\x34\x95\x75\xc4\x87\xde\x4c\x01\xbd\x49\xbe\x81\x4e\xc3\ +\xb0\x9b\xef\x53\x75\x62\xc8\x19\xed\x23\x06\xb8\x9f\xaa\x3d\xb0\ +\x41\xee\x43\xe7\x91\xa0\x4a\x58\xee\x1c\x0b\xa7\xb1\xc2\xea\x0f\ +\x01\xec\xa9\xf0\x70\x6a\xe4\x25\x56\x62\xf6\xa4\x88\xde\x89\xae\ +\x11\x22\x72\xe6\x98\x9e\x96\xc9\xc4\xb7\x03\x24\xc4\xf9\xe6\x61\ +\x1d\x87\x90\x03\x67\x96\x36\x2d\xa3\x8a\xda\x7a\x1d\x55\xdd\x8e\ +\x55\x3f\x5d\xb7\xab\x4a\xa2\x36\x0f\x60\x25\x3b\x0b\x47\x8e\x31\ +\xa7\x60\xd8\x58\xb6\xc5\x18\xa3\xea\x27\x0a\xc3\x35\x76\xf9\x8f\ +\x0e\x12\x3f\x71\xf1\x88\xcd\xb8\x96\x6d\x5a\x3e\xe1\x8c\x7d\x3c\ +\x64\x79\x54\xfe\xf6\x45\xc6\x9f\xf1\xb1\x79\x7d\xa9\x16\x5e\xed\ +\x9d\x6f\x7c\x8b\x2e\x0f\x98\xa2\xcf\xbe\xcd\x1c\x19\x9b\xef\x63\ +\x13\x8f\x2f\xd7\x03\xeb\x92\x5c\x7f\xdc\x47\x6f\x1f\xfc\xd5\x5f\ +\xe3\x8a\x03\xab\xf5\x1d\x72\xc4\x47\x82\xb9\x4f\x48\xe3\xc4\x88\ +\x79\xe8\xd4\x76\xfb\xc8\x59\x7d\xea\x87\x41\x9d\x2f\xe3\xd3\xab\ +\xed\xf2\xf2\x62\x7b\xa4\x6b\xf2\x47\xef\xfd\x42\xa6\xfa\x7b\xf6\ +\x36\x46\xf1\x9f\x05\xe5\x60\x3d\x4f\x9f\x51\x13\xff\x62\x88\xed\ +\x01\x8f\x6d\xd6\xfb\x4c\xa4\xc1\xe2\xd5\xdd\xc5\xf6\xf2\xe2\x7a\ +\xfb\xf9\x4f\xbe\xb9\x3d\x7d\xe7\xc3\xed\xf9\xf3\x9b\xec\x73\x42\ +\xcc\x79\x0c\x79\x73\x73\xe1\x17\x69\x3c\x18\x9d\xc7\x0c\x3e\x11\ +\x29\x2d\x4a\x89\x66\x99\x92\x71\x28\x7a\x63\x50\x85\x4e\x92\x8e\ +\xd9\x90\xf5\x05\x40\x27\x73\xda\x8d\xa4\x2f\xfd\x80\x34\xfd\x9a\ +\x7d\x73\x5c\x61\x43\x72\x0c\xaf\xf6\xd0\x3b\x67\x8e\xfb\xe4\x2c\ +\x9f\xcf\x89\x3e\xe4\x3b\xb7\x7c\x02\xf2\xb0\x57\x36\x31\x54\x1d\ +\xfe\xbd\xee\xba\x49\x6d\x5b\x15\x2a\x46\x1b\xb9\x7d\x2c\x03\x0f\ +\xd6\x6d\x22\xf9\xde\x02\x2f\xd9\x82\x69\x9b\x4a\x59\xe3\x15\xee\ +\xd8\xe9\x23\x63\x7c\x2e\xcc\x1d\xd3\xb2\x62\xc4\xbe\x76\x94\x6e\ +\xb4\xec\xae\x67\xc9\x7a\x9a\xbd\x57\x4b\x56\x68\xad\x8b\x89\x2a\ +\xe2\xf6\x35\x9b\x76\x80\x7b\x9d\xd4\x43\x42\x52\x6c\x14\x80\x6e\ +\x0e\x14\x34\xd9\x03\x55\x4f\xf0\x75\x6c\x10\x20\x7b\xe7\xd2\x58\ +\x8a\x25\xed\xc2\x94\x91\x8d\x85\x26\x1e\xbd\x3c\xc3\x54\x21\xb6\ +\xca\xf9\x85\xde\xb8\xd0\xb9\x7c\x32\x1a\xf1\x49\x33\x28\xcd\x29\ +\x1f\xcc\x0e\x6c\x7f\x33\x74\x6a\x17\x65\x0f\xb2\x85\xc2\xad\xef\ +\xa4\xea\x74\x8f\xe7\x7d\x8f\xdc\xd0\x92\xb3\xa1\xb3\xd4\x71\xe2\ +\x51\x77\xa9\x41\xee\x38\xd5\xea\x84\xef\x93\x7d\x89\x1d\x61\x52\ +\xda\xda\xf5\xab\x64\xab\xac\xd1\xa0\x05\x37\x9d\xd8\x43\x47\xd9\ +\x05\x8a\x48\x34\xb0\x6c\x9f\x7b\xb4\xd4\xa3\x6f\xe9\xd7\xd2\x67\ +\x51\x41\x93\x1a\xe0\xdc\xb5\x86\xae\x0f\xe7\xd4\xb2\x1f\x20\xce\ +\xff\x9c\x87\xf8\x63\xa7\x8d\x74\x0e\xdd\x63\x80\x03\xf4\xe9\xb1\ +\x05\x29\xbc\xe3\x9d\xa1\xf4\x96\xfc\xf4\xab\x46\x36\xc5\x28\x17\ +\xe3\x4f\x8d\x23\x19\x27\xd1\xe5\xf7\x3c\xa0\xc6\x3d\x98\x85\xca\ +\xc4\x2b\x2e\xf1\x62\xd9\xbe\x5e\x38\xc7\xc4\xb1\x9d\x97\xb9\x44\ +\xcd\x27\x7a\x1c\xf6\xfc\x82\xfc\xa5\x8f\xf1\xfa\x1e\x46\xae\xe5\ +\xe5\x1a\xac\x7e\xb4\x3e\xfa\x60\x3d\xb6\xfb\xc8\xaa\xa6\xab\x96\ +\x86\x4a\x52\xbf\x75\x7d\x26\x17\x86\xd5\x76\xd3\x79\x3f\x6d\x2d\ +\x6d\x48\xd2\x17\xfe\x07\xa9\x5f\x2c\x7a\x7b\x54\x9c\x96\x8b\x8b\ +\x57\xdb\xf5\xf5\x95\xae\xbf\x2f\xb7\xf7\xdf\xfb\xe9\xf6\xf1\xcb\ +\x5f\xeb\xf6\xe1\xc6\x75\xf6\x74\x6a\x1f\x74\xd0\x41\x07\x1d\xf4\ +\x3a\x3a\x5e\xa8\x1d\x74\xd0\x41\x7f\x3c\xca\x3c\x7c\xf2\x43\x54\ +\x73\xfb\xd7\xd2\x69\xfd\xae\x03\xfe\xa6\xba\x3b\x9a\x89\x52\x4d\ +\xe5\xdd\xed\x76\xa9\xc9\xe8\xed\x4f\x7e\xb4\x3d\xba\xe2\x61\xa8\ +\x1d\xbe\xd1\xf3\xa4\x59\x13\xed\xb0\x6c\xff\xef\x34\xe5\x60\x52\ +\x5a\x93\x70\x4f\xa8\x9b\x95\x7f\xb5\x0d\xad\x9d\x6f\x4c\xec\xf6\ +\x65\xf8\x86\xd2\x24\x89\xee\x98\xc2\xca\x5e\x71\xfa\x24\x63\xb1\ +\x4f\xfc\xee\x67\xfa\xac\x82\x59\xb7\x70\x1e\x5c\x2a\xc6\x3e\x6c\ +\xf0\xf2\x17\x8f\x3a\xcd\x15\x33\x1e\xe0\x72\x6b\xe0\x3c\x60\xe4\ +\x5a\xbf\xe9\xd0\x6d\x26\x7f\xe7\x70\xdf\xca\xee\xf6\x05\x86\x4f\ +\x6c\x44\xa4\xb8\x56\xbd\x37\x09\x34\xd7\x35\xd8\xc4\x5b\xb6\xb2\ +\xf7\x91\x0d\x33\x65\xc8\xb6\x7d\x7b\xf2\x8d\x66\x55\x9e\xe9\xea\ +\x66\xb4\xe3\x1b\x3f\x39\xee\x72\x93\x0a\x21\x4f\x9c\x22\xaa\x35\ +\xea\x7c\x51\x8b\xe2\x71\x9b\xc3\x51\xd1\x85\xd9\xb7\xa6\xee\xd8\ +\xe6\xa2\x01\x51\x68\x37\x0c\xa3\x1d\x0b\x65\x5b\x6b\x0d\x4f\x9e\ +\x38\xd8\x5a\xab\x74\xbb\xdd\xf6\x5b\xd2\xc8\x4a\xae\x66\x25\x71\ +\xdf\x9a\x11\x8b\x0e\xd9\x16\x8d\x66\x7b\xf6\xb2\xb6\xbf\xc4\x7f\ +\x16\x74\xd2\x05\x51\x23\x8b\x87\x17\x4a\xd5\xa9\xda\x72\x31\xc0\ +\xf9\xc7\x4f\x6c\xc7\xe6\x22\xb4\x66\xc7\x3e\x40\x63\xdb\x94\x9d\ +\xd8\xb2\x3a\x67\x6f\xa8\x7c\xe2\xad\x94\xb1\x95\x21\x89\xe2\x2b\ +\x8a\x2f\x87\x43\xfb\xda\xef\xae\xda\x20\x11\xed\x4b\x16\xd6\x31\ +\xa3\x91\x22\xe3\xed\x94\xe4\x45\xde\x88\xed\x9d\x27\x64\x6c\x9f\ +\xf6\x3a\x8d\xf4\xd5\x6c\x52\x3d\x3f\xb0\x69\x67\x93\xcd\xd4\xe9\ +\xd4\x59\x45\xe2\x61\xec\x96\x39\xb6\x18\xba\x5c\x2f\xe0\x64\x70\ +\x8f\x39\x25\x65\x7b\xdc\xa8\x71\x68\x8e\x5d\xe8\xc8\x95\xdb\xc7\ +\x58\x26\xae\x17\x5c\x5c\x03\x8c\xd5\x18\x1a\xbf\xea\xf7\x0b\xb0\ +\x1a\x47\xe7\x78\x39\xd9\xd7\x8f\x1a\x5f\xa5\xdc\xf3\xef\xfa\x50\ +\xfe\x60\xbc\x0c\xbb\x09\xd6\xb8\xdb\xcb\x3a\x79\x5d\x76\xf9\xaa\ +\xef\x7e\x7b\xc1\xba\x56\xbb\xe5\x4f\xdf\xab\x7f\xce\x59\x31\x25\ +\xbd\x77\x05\x07\xaf\x6d\x53\xfa\xc4\xb4\xb7\x69\x87\x7a\xde\x37\ +\x89\xe1\xba\x41\xbb\xbd\x8e\xde\x36\xc8\xe6\x93\xf5\xf7\xf6\x14\ +\xf9\xdd\xad\xba\xf4\xe8\xe5\x47\xdb\xc7\xbf\x79\x77\xdb\xae\xaf\ +\x65\x90\x2f\x44\xb3\x9f\x29\x91\x6f\x77\x40\x16\x3d\x84\xff\x6b\ +\xa4\xde\xe6\x6c\x8f\xde\x26\x63\x3f\xb4\x92\x51\xec\xd5\x8b\x27\ +\xdb\x77\x7e\xf0\x9f\xb6\x2f\xfd\x05\xfb\xf6\x7a\xbb\xe0\xe5\xa8\ +\x76\x2a\x51\x7e\x28\xa9\xe3\xe0\x8e\x07\xad\xc8\x3b\xfe\xb7\x97\ +\xc2\xc4\x3a\x22\x9c\xca\x7b\x5a\x9f\x64\xac\xfd\x0e\xe4\x76\xab\ +\xf1\xbe\xe6\x8e\xb8\x49\xd1\xe5\x5f\xfb\x39\x38\x4a\xb2\x8a\x7d\ +\x9c\x22\x69\x9d\x05\xa9\x63\xd1\x52\x0b\xfd\x2d\x6c\x1c\xb7\xc6\ +\x85\x5a\x0f\xe6\x65\xf8\xa3\xcf\x07\xb5\x1d\xdf\x3a\x4d\x13\x1b\ +\x3b\x9c\xd3\xcc\xb5\xdb\x6e\xc9\x66\x94\x9e\x31\x8e\xed\x06\x96\ +\x3c\x63\xdc\xc3\x4f\x02\xd7\x91\x6e\x75\xf1\x91\xc7\x72\xf1\x91\ +\xa3\x1a\xa6\xae\xbf\x31\x62\x09\x94\x58\x82\xbb\x3e\x1c\xa5\x45\ +\xc5\x00\x7b\x29\x42\x11\x6e\xbb\xfa\x84\x61\x18\x6c\xa7\xb1\x93\ +\xc4\xe5\xc7\xaa\x94\x93\xca\x17\x15\xad\x58\x81\xfe\x39\xf3\x34\ +\x52\x1c\xe2\x68\x4b\xee\xa2\x72\xcd\xdc\x1d\x9f\xba\xc4\x23\xe3\ +\x56\xa9\x6d\x91\xf9\x39\xdc\x79\x92\x75\xc6\xed\xc9\x97\xe9\xd2\ +\x4f\x69\xe9\x89\x29\x59\x16\x6a\xc0\xbc\x1a\x4b\x19\xa5\xfa\x3a\ +\xcc\x41\xd8\x83\x55\x64\xad\xc4\x3b\x47\x7c\x50\x62\xf6\xbc\xa3\ +\xf2\xef\xa8\x80\x8e\x77\x0e\x98\x35\xac\x84\x8d\x59\x5f\x62\x43\ +\x6c\x89\xf0\xc4\xb4\x3d\xab\x82\x97\xae\x0c\x57\xce\xd7\xd1\x68\ +\xef\x84\x92\xcd\xca\xc3\x29\xca\xe1\x7b\xbe\xa8\x15\x5f\x56\x83\ +\x8b\x6c\x35\x84\xb5\x47\x4c\x67\xa0\xac\xf7\x49\x82\xd6\xc7\x3a\ +\x3f\x4c\xd3\xbb\x68\x3a\x4e\x63\xef\xeb\xb7\x16\xa9\x32\x1f\x15\ +\xd9\xbe\x5e\x00\x28\xf4\xe1\x9c\x8f\x2f\xc7\x0b\xb6\x5d\xce\x8f\ +\x4c\xbc\x79\x56\xab\x31\x25\x36\xdf\x48\x0b\xde\x98\xc6\x22\x27\ +\x07\x9b\xdf\x48\xce\x3c\x00\x66\x0c\x4c\x5b\xe3\xa5\x15\xb1\x15\ +\xe3\xf1\xcf\xb1\x75\xef\xe9\x98\x93\x97\x5e\xc4\xd1\x8a\x6d\xea\ +\x44\x3a\x5e\xbc\x62\x89\x0f\xbb\xad\xd5\xe7\x58\x7c\x8d\x37\x96\ +\x7e\xe2\xeb\xf6\x83\xcd\x38\x95\xb6\xe1\x5a\x7b\xe9\xac\x3f\x16\ +\xb2\xed\xb9\x6d\xfd\xa2\xd3\x18\xd1\xc8\x30\x46\xeb\xc4\x8d\xba\ +\x15\xe3\xd1\xca\x38\xfe\xbc\x50\xbb\xf5\x3a\xb9\x55\x1d\x61\xca\ +\xab\x20\xee\xeb\x2e\x9f\x3d\xde\x6e\x9e\xfd\x6a\xfb\xd5\x2f\x7f\ +\x28\x80\x6b\xb0\x6e\xa6\x6a\x7f\x1e\x74\xd0\x41\x07\x1d\xf4\xc9\ +\xe9\x78\xa1\x76\xd0\x41\x07\xfd\xf1\x88\xd9\xdf\xdb\x90\x67\x89\ +\x51\x5f\x4b\x1d\xb7\x32\xd4\xf2\xd3\x92\x66\x9e\xb7\x1f\x7f\xb8\ +\x3d\x7a\xff\xdd\xed\xf9\xe3\xc7\xdc\x55\x01\xd6\x84\x55\xb2\x1f\ +\x06\xfa\x01\x24\xd3\x55\x1e\x66\xa2\x13\xa6\x20\x24\x94\xd9\x2d\ +\x55\x31\xaa\x5b\xd8\x93\x11\x9a\xea\x06\x17\x8f\x69\xad\xfd\xa5\ +\x9b\xb0\x17\x06\x59\xed\x7b\xac\x4e\x9c\xe1\x3c\xf8\xe4\x41\x69\ +\x62\xfa\x66\x20\xbe\x5a\x37\x6e\x2c\xcc\xb2\x87\xde\xb6\xea\xc1\ +\x7e\x10\x3b\x1f\xc0\xc2\xde\x36\x15\xab\x42\x5c\x36\xba\x63\x52\ +\x77\xe4\x71\x3f\xb3\x6a\x59\xbd\xd8\x16\xc6\x14\x37\x62\xb4\x6d\ +\x86\xde\x3e\x6d\x2d\xa0\xc6\x02\x47\x46\x0c\x1b\x8a\xae\x02\x39\ +\x02\xa6\xb4\x4a\x5e\x89\xf9\xcd\x1e\x6c\x6e\x72\x82\x24\x8a\x60\ +\xf6\x5a\xda\x0f\xa1\xc7\xa6\x1d\xc3\xc3\x37\x09\xa8\x39\x54\x79\ +\x20\x83\xe8\xab\xdd\x54\x58\x91\x7b\x05\x74\x92\x70\x35\xd7\x75\ +\xbf\x4f\xfb\x7c\xa1\xae\x90\xf5\xcd\x96\x98\x74\x2f\x9d\x1b\x89\ +\x3a\x68\xb5\x4f\xfc\xa8\x6e\xf5\xa1\x3a\x72\x9e\x54\xd9\x51\xfb\ +\xcc\x2a\x5a\x37\x91\xf8\x21\xfe\xb4\x74\x2e\xd7\x29\x8f\x1e\xd8\ +\x30\x8d\x3e\x71\x3c\xec\x82\xbb\xc7\x23\x22\xeb\xd1\xe6\x84\x4f\ +\x28\x0e\xca\x1c\x2b\x54\x2a\x60\xe4\x16\x61\x4b\xcd\xc3\x0e\x31\ +\xa2\x42\x39\x7a\x3d\x8c\x19\xdc\x93\xce\xcc\xf8\x63\x9a\x9c\xa1\ +\xea\x42\x3e\x07\xa2\x54\x1e\x28\x35\xd6\x98\x41\xc4\x25\x8b\xfd\ +\x1e\x1b\x2c\xcb\xd9\x75\x0d\x5a\x2d\x9a\xed\x78\x35\xa4\x64\x7d\ +\xa2\xef\x69\x5f\x79\xb7\x1d\xcd\x2a\x9a\x01\x90\x1e\x83\x50\xb1\ +\xf9\x68\xc1\xee\xf1\xc8\xfe\x45\xb7\xa4\x7a\x8f\x81\xcd\xd4\x9b\ +\xb6\xc7\xbf\x1d\xb7\x3f\x79\xf6\xbe\xf6\xe7\xe1\xcc\xfc\xa3\x84\ +\x25\x0f\xff\x48\x6a\xf7\xb3\xc2\xe8\x79\xc1\x35\xb1\x30\xdf\x7e\ +\x73\x3b\xfe\xb6\xdc\x92\xcb\x7d\xae\x6f\x52\x3b\xdf\xac\x33\xe2\ +\x68\x9b\xeb\x01\xe3\xb9\xc7\xe9\xd9\x8e\x6d\x56\xbe\xfb\xef\x6d\ +\x06\x9e\xbe\x23\xed\x93\xf4\x5e\xb3\x3f\x58\xc7\xc1\x2c\x3c\xe0\ +\x66\x2f\xe6\x5a\x90\x3a\xc4\x78\x3b\x18\xab\xbc\x60\xcd\xd5\xcf\ +\x7e\xd0\x05\x5d\xf1\x12\xe6\xe6\xc5\xf6\xe8\xc3\x5f\x6b\x9d\x3e\ +\x54\x1d\xb5\x6c\x57\x8e\xbe\x87\x8e\xf1\x4f\x45\x0f\xa5\xf1\x8a\ +\x44\xfd\x57\x4d\x6c\x83\x73\xdb\x62\xc1\xbc\xef\x25\x79\xc8\x77\ +\x71\xf7\xf1\xf6\xf1\xf6\xad\xed\xd9\xf3\x0b\xed\xb6\x0b\xdf\x80\ +\x7a\xbf\xf2\x52\x4d\xd2\x53\x8a\x3a\x6c\xee\xb4\x80\xe5\x21\x25\ +\x47\x97\x40\x7f\xb0\x9d\x1a\x33\x63\x44\x5c\x45\x8e\x1c\x0c\x4d\ +\xdf\x1e\x87\xa2\x57\x1d\x12\xbb\x3d\xb7\xb2\xc8\xf9\x00\x35\x7d\ +\x92\x6c\x3f\xb6\xfb\x4a\xcc\x94\xe3\x41\x2c\x18\x7e\xa2\x46\x8e\ +\xc9\x60\xa9\xb7\xe6\xaf\xdc\x3a\x37\xe2\x87\xdd\xb5\x8a\x2b\xd6\ +\x96\xcd\xcf\xa3\xe5\x94\x23\x4e\xa0\x7c\x39\x27\x1a\x8f\xae\x0d\ +\x55\x78\xea\x92\x43\xb8\xb6\x77\xea\x5c\x48\xef\x97\x72\xa9\x43\ +\x9c\xfb\xe6\xf3\x6f\xe6\xe2\x0f\xcc\xe2\x9f\x71\xad\x27\x97\xc5\ +\x82\x63\x85\xd0\xf2\xbf\x0f\x83\xb5\x16\x4b\x52\x4a\xeb\x36\xa2\ +\x04\xb4\x28\x65\x94\x10\x1a\xeb\xd7\x3a\x51\x1c\x18\x50\x4b\x51\ +\x57\x18\x15\xa3\x50\x72\xad\xd2\xda\x5a\x83\x53\x5f\x9e\x7c\x42\ +\x56\xba\x07\xb4\x17\x4f\x10\x2b\xf7\x78\xbd\x86\x9e\xa3\x25\xd4\ +\x4c\xbc\xc7\xb0\xe6\x45\x3d\xe5\x53\xda\x6d\xbb\x95\x5c\x81\xfe\ +\x66\xdd\x62\x27\xd2\x6a\xb1\x69\x28\x6f\xa6\xb5\x6e\xf3\x3d\x5a\ +\xf7\xe1\xca\xee\x6c\x38\xc7\x09\x4c\x1c\xee\xee\x6b\x68\xee\xcb\ +\x51\x25\x7a\xe7\x39\x4b\x0b\x7e\x36\x8c\xda\xca\x0c\xde\x7c\x4a\ +\xd4\x2b\x65\xb8\xad\xc4\x4e\x86\xc6\xce\x48\x28\x81\x45\x65\x2c\ +\xfe\x45\xbd\x47\xbb\x6a\x2d\xc5\xde\x06\x41\x42\x8b\xdd\xeb\xc9\ +\x11\x6c\xb0\xec\xb5\x4e\x62\x00\x6a\xbb\x0a\x18\x6b\x58\x71\x8e\ +\xa9\x4a\x3e\x7f\x89\xb1\xb9\x8e\x45\xd4\x2f\x5f\xd5\xe5\x14\xca\ +\x38\x86\x4c\x1d\xc6\x1e\x41\xd2\x19\x7f\x00\xba\x1a\xb8\xc6\x1c\ +\x2d\x64\xc8\xf5\xbe\xeb\xf4\x78\x29\xdd\x38\x39\xb1\xc3\xae\xaf\ +\x3c\x89\x63\x0e\x93\x18\x8f\xbb\xca\xe1\x31\xb3\x25\x31\xe8\xf8\ +\x86\x3d\x31\xd7\xd5\x32\xf1\x8a\x63\xee\xb1\x62\xc3\xd7\x4c\x9d\ +\xaa\x57\x52\x25\x2b\x56\xfd\xa4\x7f\x20\xf8\x0c\x0f\x9a\x7e\x56\ +\x25\x3a\x6e\xcb\x55\x47\x0e\x7d\x5d\x56\xbc\xa4\x38\xf9\xc4\xea\ +\x06\x2f\xd4\xfc\x3f\x69\x05\xde\xe2\xe4\x3c\xd2\xe7\x56\xdb\xfd\ +\x4b\xef\xbc\xda\x7e\xf5\x9b\x6f\x09\x7b\xa1\x78\x1f\x2d\xa9\x78\ +\xd0\x41\x07\x1d\x74\xd0\x27\xa6\xe3\x85\xda\x41\x07\x1d\xf4\xf9\ +\xd2\xbc\x17\xfa\xe4\xf4\x59\x4e\xf0\x3c\xcb\x8c\x0a\xf5\x04\x72\ +\xff\x18\x39\xf4\xd1\xed\xd5\xf6\xdb\xef\xfe\xf7\xed\xf2\xb1\xa6\ +\x9a\x77\xd7\xba\xe9\x52\x60\x55\x18\x0f\x22\x6f\xeb\x41\x1f\x33\ +\xd8\xcc\xa1\xf1\x26\x86\x89\xb5\x7c\x06\xf3\x84\x0f\xd8\x76\x72\ +\xed\xa6\xc4\x78\x77\xea\xa0\x8a\x9d\xa1\xad\x94\x5e\x3c\x6f\x32\ +\x68\xb3\x3b\x53\xac\xfe\xe5\x46\x45\x5c\x7e\xf7\xb9\xfa\x98\x7e\ +\x06\x1b\x71\x0b\x0e\x5b\x6f\x8c\xb8\x51\x97\xfc\x92\xd8\xc4\xe2\ +\xaf\x7e\xb4\xdf\xfd\x72\x7b\x0b\x77\x9c\xeb\xaf\x0c\x4c\x3f\xa4\ +\xf3\x11\x4f\x99\x49\xbf\xbc\x01\x45\xeb\x5f\x8f\x3a\xa6\xc8\xaa\ +\x8a\x5d\x7d\x13\xfd\xb1\x48\x4c\xd1\xe2\x2e\xbd\x6e\x30\x9a\x1a\ +\x57\x1f\xac\x54\x5f\x26\xe5\x18\xa2\x1c\x38\xca\xe9\xa1\xe5\xba\ +\xcd\x38\x97\x3c\x65\x37\xd1\xcf\xb9\x76\xa7\x38\xa4\xba\xa5\xaf\ +\xbc\x23\xfc\x0b\x78\xea\xef\x3a\xcd\xa1\x6e\xeb\x5c\x74\x89\x5d\ +\x85\xd9\x4b\x14\xbb\x90\xad\xdb\x31\xc9\x98\x9a\x18\xf8\x5c\xb5\ +\x5d\x5f\x3f\x09\x75\x3b\xa7\x3c\x88\x36\x56\x3e\x47\xa7\x31\x4b\ +\xdc\xd9\x9c\x6f\xa0\xf3\xf1\x9d\x14\x59\x11\x05\xf5\xf6\xba\x47\ +\x06\x97\xce\x88\xf6\x71\x6d\x75\x22\xd4\x3a\x4b\x4e\x8f\xd3\xf1\ +\x06\xf6\x3e\x71\xe3\xdf\x37\xd6\x7e\x50\xd2\x61\x92\xc6\x6c\x94\ +\xdf\x7a\x11\x6d\x54\x8c\xcd\x92\xb3\xcb\x8d\x10\xb7\x5f\x8f\xa6\ +\x35\xdf\x2e\x8f\x0a\x64\x7a\xad\xa5\xec\xe1\xa8\x46\x3c\x66\x58\ +\x43\x8f\x0b\xd9\x76\x80\xda\x16\x2a\x32\x5e\x46\xc6\x16\xae\x31\ +\x87\x61\xa7\x2b\x67\x6c\x43\xd6\xf8\xa6\xb1\xa9\x71\x33\x4f\xfe\ +\xed\x5b\x63\x61\x61\x7e\x71\xc5\x4b\x29\xec\x5c\x2f\x7a\xcc\xeb\ +\xba\xfd\x3f\x38\x9d\xc3\xf5\xeb\x25\x96\x6d\x62\x9b\x79\x58\xb4\ +\xc6\x46\x8e\xf8\x1a\x6b\xf3\x22\x2c\x2f\xd7\xc0\xda\x1e\x39\x89\ +\xab\xd8\x15\x9f\xfe\xc4\x7b\x1c\x2f\x76\xbf\xfc\x92\x6e\x89\xf5\ +\x3a\x94\x9f\x17\x71\xb2\xfd\x80\x1c\xce\xc6\x33\x66\x66\x40\x97\ +\x9d\x3e\x81\xa9\x7f\x25\x95\x45\x50\xe3\xe1\xf4\x4f\x72\xb7\x6d\ +\x25\xd9\x9e\xca\x44\x41\xfd\x2b\x1d\xc7\x4f\x6e\x3e\xd8\xae\xdf\ +\x7f\x4f\x61\xb4\x51\xc7\x95\x44\x0e\x31\x47\x2f\xf2\x0c\xe1\x7a\ +\x8d\xfb\xb5\x44\xbd\x6a\xf2\x5f\x35\xad\xdb\xe0\x64\x93\x7b\xa8\ +\x69\x79\xa7\x5b\xcd\xcb\x9b\xed\x07\x3f\xfd\xc7\xed\xe9\x3b\x77\ +\xdb\x63\x7e\xee\xf1\xf6\x42\xa1\x38\xc5\x9c\x9b\xd9\xe5\xc2\xf2\ +\x62\x0d\x9d\x43\x6a\x8e\x61\x18\xd8\x89\x09\x06\x2d\x1a\xce\x13\ +\x6a\x04\x39\xbc\x27\x46\xaa\x05\xf0\x31\x67\x2c\x41\xb6\xad\xd7\ +\x31\xbb\x93\x62\x8e\x59\xb1\x1f\xa6\xae\x92\x65\xd4\xab\xf5\xd1\ +\x0a\xf5\x03\xd6\xc4\x46\x76\x1b\x84\xdb\xdf\x5c\x39\xf0\xed\x70\ +\x63\xfd\xf2\xab\x30\xce\x1b\x1e\x4e\x2b\x07\xe7\x50\x62\x30\x24\ +\xdd\xde\xc4\x80\x79\x79\x46\xbf\xe0\xbb\x57\xda\x17\xd4\x61\xfb\ +\x8b\xc7\x98\x5e\xf1\x7e\x69\x07\x1c\xd0\xf9\xfa\xe5\x5b\x02\x67\ +\x6c\x99\xd6\x4b\x51\x11\xb9\xd6\xb7\xab\x18\x9a\x73\x6c\x89\xf1\ +\x96\x03\x1c\x4e\x7f\x6c\x14\xd9\x36\x95\x02\xc0\xe1\x64\x73\x28\ +\x2a\xab\x2d\x15\x41\xa0\xd2\xea\xd8\x22\x7f\x27\xa4\x0c\xa6\x32\ +\x1f\x73\x75\x20\xdc\xdb\x07\xd5\xbe\x70\x47\x18\x2b\x1a\xfa\x0a\ +\x36\x81\x89\x9d\x5a\xbc\xac\x9e\xa9\xe0\x87\xa9\x03\xd6\xc0\x1d\ +\x96\xbe\x42\xbd\xc5\x7b\x7b\x4c\xda\x5b\x6f\xa4\xce\x6d\x2a\xe3\ +\x13\xa6\x78\x98\xd4\xb7\x25\x9d\xcf\xfd\xea\x7f\xb6\xec\xa4\x11\ +\x03\xab\x52\x1f\x5b\xb3\x2f\x73\x4f\x34\xd4\x21\x2b\xf5\x16\xf1\ +\xd2\xf5\xd7\x98\x5d\x7c\xf5\xc1\x58\x3b\x52\x77\x50\xa9\x6e\x47\ +\x3c\x7c\xe8\x5e\x97\xd8\xb3\x1f\x39\x06\x43\x04\x95\x5a\x74\x62\ +\x4e\x2a\x47\xfb\xe7\xb1\x13\x25\x63\x6b\xb4\xe9\x92\x56\x0d\xcf\ +\xb9\x1e\xba\x01\xf3\xd0\x5b\x54\x9d\x08\x24\xfb\x84\x31\xa1\x5c\ +\x1a\xdb\x91\x0e\x66\xfc\xb0\x54\xdb\x4b\x4c\xc6\x2c\x62\x61\xda\ +\x4d\x3e\x0a\x64\x8f\x5b\x66\xc7\xac\xed\x85\x93\x23\x6c\x4c\x81\ +\xf1\x11\x4f\x3d\x7c\x8c\x97\x19\x7f\x7b\x5c\x35\xe6\x7c\xf1\xad\ +\xf6\xc0\xa8\xab\x7c\xc9\xdf\x58\xd5\x37\x3e\x31\x24\xdf\x84\xd3\ +\xdd\x7f\xa4\x7d\x9d\x8f\x78\x72\x74\x9e\xf4\xaf\x06\x4f\xeb\xdd\ +\x67\x85\x99\x83\x89\xbd\x3f\x7a\x9f\xb0\x8d\xc1\xe2\x43\x41\x4c\ +\xb0\x55\x16\x74\xe2\xd9\xe6\xfe\x58\x77\x7e\xcd\xdd\xd2\x87\x3c\ +\xab\x00\x73\xc5\x47\x57\xdb\x93\x67\xdb\x76\xfd\xe2\xe7\xdb\xc7\ +\x9a\x47\xf1\x20\x78\x7d\x0e\x32\xb5\x83\x0e\x3a\xe8\xa0\x83\xde\ +\x86\x8e\x17\x6a\x07\x1d\x74\xd0\xe7\x4b\x4c\xe2\x4e\x67\x68\x6f\ +\x33\x63\x23\xe6\x5c\xdc\x9b\xea\x3e\x54\x0f\x02\xa7\x3f\xa5\x52\ +\x64\x4a\xba\x90\x26\x9c\xb7\x8f\xee\xb6\x8f\x7f\xfc\xbd\xed\xc9\ +\x93\x47\xdb\xe5\x23\x6e\x18\x14\xa3\x8f\x27\xd9\x4c\x4c\xef\x6e\ +\x4a\x7a\xf6\x4f\xa5\x8a\x91\x24\x46\x18\x37\x38\xce\x3d\x26\xd3\ +\xe5\x97\xd8\x37\xd9\x40\xfc\x6b\xec\x3d\xae\x18\x4f\xde\x33\x3b\ +\x2e\x9f\x54\xf7\x45\x3e\xcf\xd2\x33\xb9\x0f\x0b\xef\x99\xbb\xa4\ +\x6d\xd7\x6f\x3c\xb9\xf2\x10\x38\x3e\x33\x18\xeb\xe2\x38\xf2\x45\ +\xcf\xb7\x1d\xa2\x9b\xdd\x66\xc5\x8c\x3a\xb4\x43\x7b\xc1\x05\x54\ +\x4c\xc5\xca\x35\xfa\x54\xec\x65\xd8\x88\xc2\x25\x1c\x8f\xae\xaa\ +\x79\x98\x51\x37\x1c\xe5\x73\x2c\x74\x8a\xb5\x0d\x54\xb8\xb1\x52\ +\x5b\x1f\x52\x25\x37\x16\xe3\xf0\x51\xa5\x6e\xab\x02\x44\xb2\x11\ +\x03\x3b\x39\xd8\x0a\x9f\x31\x1c\x64\xd5\x5f\x30\xc7\x57\x1d\xfb\ +\x8b\x21\x42\x89\xb3\xdd\x60\xd1\x1a\xb7\xa3\xb3\x60\xa8\x9e\x6a\ +\x76\xff\xb1\x3a\x8d\x6b\x0d\x25\x14\x4c\x65\x77\xd6\xec\x3d\xa3\ +\x85\xce\x11\x70\x4a\xf9\xdb\x6e\x9c\xac\xea\xbd\xa0\x74\x61\x4f\ +\x6b\xc8\x2e\xfc\xa1\x36\x3e\x1d\xa5\x57\x7b\x36\xd1\xa7\x53\x7e\ +\x4b\xda\xe5\x19\xd4\x09\xee\x27\xba\x1f\xbf\xc6\x96\xde\xaa\xcd\ +\x8e\x2e\x59\x21\xa7\x74\x3f\x2f\x34\x92\x48\xb4\xb7\xf6\x4e\x7d\ +\xad\x60\x4d\xb7\xab\x2f\x47\x9f\x33\xd4\xf5\xff\x46\xf3\x07\x87\ +\xb0\x11\xbc\x66\x58\x88\xaa\x23\x46\xb4\xe8\x79\x50\xb0\x26\x59\ +\x73\xac\x95\x44\x4b\x12\x47\x51\x94\x62\xcf\xda\x48\xf7\x77\xe8\ +\x18\x0b\x23\x2a\x80\x75\x4b\x88\x8b\x8c\x3f\x1e\x9a\x82\x37\x16\ +\x5d\xad\x49\x71\x2c\x63\x4e\x8f\x5b\xae\x53\x8c\xdf\x3a\x78\x8f\ +\x6f\xf5\x12\xcb\x63\x28\x0f\x57\x62\xdf\x69\xbc\xf4\xb5\x83\x97\ +\x68\xeb\x38\x5b\x7e\x63\x6e\x8f\x17\x54\xe0\x85\x21\x89\x95\xde\ +\x6d\xac\x0c\x76\xca\xc3\xef\xfe\xed\x71\xda\x33\xf3\xf2\xcc\x7d\ +\xac\xf6\xc4\xf1\x67\xdd\xfc\x7f\xe1\x6e\x66\xae\x11\x53\x71\x7d\ +\x0d\x49\xbc\xa4\xb7\x75\xe9\xe0\x6d\x7b\x9d\x24\x41\xca\x9e\x3e\ +\x72\xe1\x97\x64\x41\x1a\x8b\xec\x6b\xab\x7d\x60\xc6\xc9\x74\xb7\ +\x5d\x5e\x5c\x6c\xd7\x1f\x7e\xb0\xbd\xf8\xd5\xbb\xdb\x23\x6d\x9b\ +\xdd\x11\xe9\x98\xa6\x9d\xe7\xa0\xcf\x83\x7a\x7b\xb3\xa9\xd1\xff\ +\xff\xec\xfd\x6b\xb7\x1b\x49\xb2\x2c\x88\x81\x9b\x55\x7d\xcf\x1d\ +\xcd\xff\xff\x57\xfa\xa0\x4f\xd2\x92\xd6\xcc\x9a\xab\x3b\x5a\x73\ +\x9f\xdd\xe7\xf4\xa3\xaa\x8b\xe4\x26\xe5\x66\xe6\xe6\xe1\x11\x19\ +\x09\x60\x93\xac\xea\xee\xd3\x69\x40\x64\xb8\x9b\x9b\x7b\x44\x3e\ +\x90\x48\x24\xf6\xc3\x9b\x3c\x6c\x51\x61\xc4\x27\xcd\x2f\x9f\xde\ +\xdf\xfe\xfb\xbf\xfe\x3f\x6e\x3f\xfe\x2f\xaf\xb7\x97\x1f\xe2\xb8\ +\xd3\x05\x52\x3c\xf1\xde\x88\xd7\x0a\x0e\x9f\xb8\xf6\xe2\x4d\x40\ +\xed\x6b\x1e\xc3\xa8\x41\x1b\x5a\x3d\xf2\xc9\x66\xd8\xee\x3c\xfb\ +\x72\xc2\xd0\x73\xa6\xe8\x78\x9c\x5e\x3f\x1e\xf0\xc9\xc5\xf1\x48\ +\x1b\xf3\xf2\xfc\xc4\xb1\xc5\xbc\x65\x83\xb3\x36\xf3\x62\xfd\x14\ +\xc7\x31\x8c\xdf\x78\xb0\x36\x35\xd5\xe6\x5c\xdd\xe4\xcd\x97\xd8\ +\xa4\x43\xae\x38\x68\xa2\xa3\x6e\x7c\x99\x66\x3d\xd6\x07\x36\xc6\ +\x8f\x6d\x8c\x96\x9c\x6f\xc0\xea\xcf\x6b\xa2\x61\xdc\x8c\xc5\x76\ +\xe8\xeb\x07\x1d\xd9\x10\xf8\x9c\x58\x63\xd1\x6f\x3d\x1f\xda\x77\ +\x48\x61\x0f\x0c\xa3\xec\x98\x26\x3c\xbd\x4d\x29\x99\xb0\x0b\xc3\ +\xd7\xd0\xa8\x9f\x16\x79\x97\xa3\x9f\x07\x1c\x29\x06\xc2\x4f\x01\ +\x3d\x2c\xe4\x2e\x30\x19\xdb\x82\xef\x77\x54\x8b\xf1\x00\xe9\x4b\ +\x3a\x6c\x8d\x9b\x1a\x4b\x03\x50\xb4\x48\x18\x98\x0b\x7a\x3a\x9c\ +\x96\x9b\x45\xd9\xb9\xba\x00\x4d\x9a\x34\xdc\x80\xd5\x0f\xe8\xfd\ +\xb5\x37\xf3\x7e\xd8\x37\xc2\xe2\x13\xcc\xd0\x13\x70\xb6\x2d\x16\ +\xd1\xea\x01\x3b\x63\xfa\x1f\x6e\x69\xb7\x06\xdf\x1c\xed\xa7\x20\ +\x31\x1e\x65\x47\xd7\xeb\xe5\xe2\x00\xb1\xb1\xcc\x84\xbd\x2a\x80\ +\x80\xdb\x82\x31\xee\x19\xfa\x31\x31\xc0\xf9\xe5\xb6\xec\xa1\x69\ +\xbf\x16\xa4\x50\x4e\x57\x27\x16\x0a\xae\xb4\x40\x0b\x76\x5d\x1f\ +\x28\x13\x7a\x4a\x97\xd2\x5e\x38\x02\x83\x64\x5e\x9a\x45\x93\xaf\ +\x06\x57\xe7\x21\xda\x78\x64\xcc\x75\x61\x62\x51\x5c\xf4\xd6\xfb\ +\xdc\x31\x9d\x43\xc2\x61\xcf\x5a\xc3\xe7\x79\x2e\x75\x3a\x27\x66\ +\x4b\x1f\x3a\x69\xa0\x57\xe3\xf9\x8c\xba\xec\x71\x2e\xa3\x9f\x2d\ +\xcf\x6d\xfe\x93\x88\xa3\x16\x78\x9c\xa7\x53\x43\x5f\x71\xcd\x17\ +\x39\xd6\x6b\x3d\xc8\x91\x0f\x1b\x35\x52\xe7\xb9\xb0\xf1\x81\x75\ +\xc3\x7a\xa8\xd1\x69\xfe\xd0\xe7\x31\x94\xfc\xa4\x59\x8e\xaf\xd2\ +\xf6\x16\x0b\xce\x2f\xda\xf0\xa3\xe1\x07\x80\xe1\xe4\x75\xfd\xcb\ +\xef\xde\xdd\x3e\xbd\xff\xf9\xf6\xcb\x2f\xff\x33\x7c\x5f\x43\x69\ +\x89\xbc\x0b\x17\x2e\x5c\xb8\xf0\x3c\xae\x2f\xd4\x2e\x5c\xb8\xf0\ +\xfd\xb0\xbb\x12\xc3\x35\xda\xca\xc3\xd7\xb5\xdb\xdb\x70\x96\xd3\ +\xf9\xb3\xab\x41\x6b\xb2\xb7\x6c\xa6\xe3\x02\x35\x2e\x38\xff\xe5\ +\xd3\x2f\xb7\x9f\x7e\xff\x7f\xdd\x7e\xf7\x2f\x3f\xc4\x49\x12\x97\ +\xb1\x88\x46\x06\x2e\x54\xe3\xca\x19\x8d\x57\xa9\xbe\x70\xc5\xd5\ +\x35\x7a\x14\x45\xa3\x1b\x0b\xdc\x98\x04\x19\x4d\x97\xbe\x80\x2e\ +\x74\xe1\x53\x53\xf1\x04\x6c\x08\x86\xbc\x34\x55\x8b\xbd\x2e\xfc\ +\x15\x1b\x75\x72\x70\x71\xba\xe2\x0f\x57\xb6\xf5\x1a\x57\x37\x4d\ +\xc8\xc7\xfa\xc8\x46\x4d\x35\xe6\x37\x1d\xb9\x6c\xa5\x41\x9f\xdb\ +\x82\xb5\xcd\xb7\x5a\xea\x11\x03\xad\xf9\x68\x4e\x39\x55\xb4\xb0\ +\xd1\x6b\x5d\xc7\xfa\x0a\x22\xe9\x92\x56\x8c\x1d\xa8\xd4\xd9\x17\ +\x1a\xc7\x06\x7f\xe4\x60\xc1\xed\x9f\xf6\xe8\xb5\x17\xca\x77\x2c\ +\x61\x9b\xfb\x27\xd0\x63\x2b\xf2\x88\xc9\x56\x99\xd9\x07\x9a\xb9\ +\x07\x04\x6a\xa3\x8e\x17\x1d\xf7\x0a\x0d\xf1\x21\xf7\x50\x27\x08\ +\x3d\xab\x15\x48\x68\x2d\xcc\xdb\x56\x8b\x39\xfa\xc6\x1b\xe7\x63\ +\x55\x20\x4c\xeb\x88\x16\x02\xa6\x58\x58\xb6\xcd\xcf\xf1\x6f\xc7\ +\x5a\xf7\x6b\x6b\xcf\xf9\xdd\x1b\x6c\xc7\x9e\x5d\x81\xf5\xf7\x99\ +\xc2\xfb\x75\x97\xa5\xe3\x02\x50\xdd\x5e\x3d\x7a\xbb\x3e\x50\x51\ +\xf3\x4b\x5c\xee\x45\x8a\x99\x09\xdc\x65\xaa\xc9\xb8\x45\xe0\xa2\ +\x86\x22\xa2\xd5\x72\x7f\x57\x31\x44\x05\xcf\xbf\x42\x19\x2b\x05\ +\xe6\x54\x82\xa1\x9a\xdc\x8c\x17\xd7\xf9\xea\xc6\x98\x33\x1f\x08\ +\xa3\xbf\x76\xf1\xfa\xa7\x9d\x04\x3a\xc6\xb1\x20\x11\x71\x93\x38\ +\x5f\xc1\xe6\xf9\x88\x22\x9d\xb7\x78\x4e\xb3\xad\x5e\xe7\x41\xdb\ +\x19\x03\x87\x2f\x05\x70\x4e\xc5\xf9\x9f\xe7\x47\xd8\xd0\xe2\x64\ +\x97\xfe\xae\x41\x8f\x2f\xd9\x78\x52\x6c\x7c\x7e\x01\xc6\xf9\x86\ +\x1f\xc5\xb3\x06\xbe\x90\xd3\x97\x72\xf4\xa9\x91\x8d\x3b\x3c\xfa\ +\x53\x90\x8d\x63\x73\x0d\xc4\x30\x9e\x34\xf2\xa3\x16\xe7\x9b\x5f\ +\xb4\x91\x1f\xf5\x75\x43\x1d\xb6\xd7\xb5\x35\xce\x2d\x79\x68\xa2\ +\x33\xc7\x1e\xb9\x78\x80\x07\xc8\xc5\x98\xb1\xa1\x59\x33\x35\xe4\ +\x30\x97\xec\x39\xaf\xb0\x7d\x43\xe8\xdd\x67\xfc\x90\xcb\xfb\xdb\ +\xed\xc3\x5f\x6e\x1f\xfe\xf0\x3f\x6e\xaf\x9f\x7e\x8e\x62\x38\x16\ +\xa2\x45\x7a\x3b\x2a\x7e\x3d\xfc\x26\x83\xfc\x83\x20\x37\x3d\xb1\ +\x6c\x17\xec\x6a\x5d\xcb\x7c\x8a\x53\xc9\xeb\xed\x0f\xff\xf6\xff\ +\xbc\xfd\xaf\xff\x2b\x8e\x01\x90\x08\x46\x42\x98\xbc\x86\x8a\xf3\ +\x09\x76\x37\xbf\xac\xe1\x21\x26\x9d\xb4\x3a\x6e\x32\xab\x7a\xa0\ +\xf8\xec\x65\x87\x1e\x3d\x4c\xce\x49\x3e\xcf\x64\x19\x70\x1c\x18\ +\x39\x1e\x07\xc7\x1c\x96\xd1\xa7\xcd\xe3\x11\x1c\x75\x19\xa1\x2f\ +\x9b\x1c\x6c\xe7\x41\x8f\x47\xac\x0c\x6f\xd2\x52\x07\x64\xcc\xb9\ +\x6c\xaa\xa5\x71\xd4\xfc\xb2\x52\xcc\x36\xa7\x19\x2d\xb7\x55\xc6\ +\x62\x18\x8d\x05\x0d\xb7\x9d\x62\xd2\xaa\xcd\x35\x86\x56\x71\x7c\ +\x41\x06\x62\xae\xab\xf3\x7c\x68\x53\xa7\x5c\xf5\x34\x38\x34\x1e\ +\x09\x70\x19\xab\xa8\x7d\xc7\xc8\x0a\x7a\x7b\x8a\x51\x10\x8a\x86\ +\x2d\x46\x5f\xf4\x68\xee\xb8\xf0\x79\xc8\x01\xd8\xf9\x43\x50\xd4\ +\x6b\x6c\xeb\xd1\xeb\x18\x04\x51\x1d\xc7\x43\x2d\xb5\x70\x70\xa0\ +\x04\x99\xef\x80\xb1\xf4\xfb\x98\xe6\x43\x16\x32\xf4\x46\x3a\x7e\ +\x4b\xcb\x4a\x9a\x4b\xe5\x8f\xde\x09\x8a\xa3\xb2\x7c\x80\x9a\x58\ +\xb0\x15\x61\x23\xc1\x98\xeb\x8d\x36\x7b\xc9\xa8\x3b\x86\xdc\xb0\ +\xc0\x93\xbe\x6c\xf1\x2b\x14\x38\x0b\x93\xcb\xc5\x1a\x77\x8e\xd7\ +\xdc\xeb\x07\xa7\xdb\x6c\x77\x21\x91\x96\x51\x2d\xf6\x55\x3f\x9e\ +\x3a\xa4\xc9\x50\x19\xad\x0f\x74\x7a\x76\x04\xba\xbd\x3e\x6d\x6c\ +\x77\x10\x26\x45\x0f\x44\x94\x04\xd6\xd6\x2d\x35\x5d\x38\xe5\x04\ +\xd2\xe7\xf5\x14\xfa\x24\x56\x19\x19\x92\xd2\x01\x5d\x39\xcf\x05\ +\x00\x81\x96\xfa\x8c\x0f\x99\x2c\x2e\x63\x81\xde\x0d\xc5\x38\x0f\ +\x3c\x49\xa0\x57\x14\x7d\x9a\x3c\x67\xe8\xbc\x35\xf6\x07\x42\xce\ +\xb3\x56\xe7\x0d\x68\xf2\x35\x12\xe7\x99\x11\x47\xc3\xf9\x50\x3e\ +\xb4\x75\xce\x8b\x85\x72\x07\x8f\xeb\x8b\x31\x6e\xf4\xe1\x2b\x2e\ +\x5b\x39\x68\x3e\xaf\xe6\xb9\xd7\x7e\x6a\xfc\xc5\x58\xff\x52\x8d\ +\x1c\xdb\xe0\x64\xa3\xe1\xfa\x03\x35\xd0\xc4\x57\x2e\xb5\xf8\xad\ +\x35\x7d\xb9\xe6\x5c\xad\x9b\x6c\x70\xf2\x73\xbd\xb1\x1d\x68\xab\ +\x69\xc3\xe1\x18\x4b\xae\xc7\x33\x3c\xf2\x8f\x0d\x02\xda\x99\xc7\ +\x31\xab\x81\x53\x6e\x4c\x39\x34\x5f\x6e\x2f\xf8\xa1\xa4\xdb\x1f\ +\x6f\xff\xfa\xcb\x7f\xe3\x5f\x18\x40\x5e\x3b\xb4\x02\x64\x2e\x5c\ +\xb8\x70\xe1\xc2\x13\xb8\xbe\x50\xbb\x70\xe1\xc2\xf7\xc3\x74\x41\ +\xf6\x00\xf7\xae\xd7\x50\x07\xf1\xae\x39\xab\x6d\x2d\xfa\x7b\xe3\ +\xaf\xe3\xe1\xea\x12\x17\x99\xe9\x12\x91\x8f\x9f\x78\xff\xf3\xbf\ +\xfd\x97\xdb\x7f\x7c\xf9\x74\xfb\x31\xae\x3e\x75\x21\x1a\x57\xa1\ +\xb8\x2a\x85\xcf\x3f\xd5\xa5\x8b\x6b\xf1\xb8\x42\x55\x0c\x77\x1e\ +\x50\x0f\x55\x79\xb3\x12\x25\x11\x03\x17\x1d\x6a\xb1\x4e\x7c\xac\ +\x80\xed\xa9\xab\x41\x10\x06\x91\x2c\x73\x47\xef\x1b\x09\xac\x43\ +\x2a\x63\x1e\x3b\xe7\xc9\xb1\x19\xd3\x38\xd0\xf0\x43\x0b\x74\xaf\ +\xe1\xf3\xc6\xad\xf2\xc8\xe1\x37\x15\x60\x43\x07\x9e\x7d\xc6\xa8\ +\x03\x87\xb8\xf5\x73\xb3\x56\xfa\xd9\x76\xbe\x7c\xd7\x1a\xeb\x02\ +\xdb\x7e\x18\xe2\xb8\x72\x89\x21\x41\x54\x54\x86\xa5\x85\xa1\x8e\ +\x7d\x70\xd6\x8f\x40\xfa\x3e\x3e\xde\x49\x83\x70\x97\x31\x6c\x9e\ +\xdc\xf1\x80\x4a\x29\xe1\x68\xa6\x64\x8e\x81\x9b\x3c\x35\x60\xb6\ +\x86\xd0\x56\x1e\x89\x35\x7f\x8e\x15\x8e\x53\x3a\x22\x92\x50\x8b\ +\x2d\x29\xa0\xec\x4e\x02\xf0\x79\xc3\x60\x06\x69\x99\x13\x0e\x9c\ +\x89\xe8\x35\xe6\x66\x92\xd0\x2c\x2b\x58\x5e\xc8\x3d\x5f\x60\x56\ +\x09\xe6\xd0\xf7\xf6\x3d\xf0\xad\xf5\xf6\xb9\x8f\x58\x5b\x83\xe9\ +\x3b\x77\x44\xbc\x5f\xac\xe9\x58\xf5\x58\x82\xcb\x86\x9b\x34\xba\ +\x6b\x49\xf0\xa6\x46\xda\x80\xb2\xa1\x43\xa7\x0a\xf0\xf9\xdb\x69\ +\xe9\x8d\x5d\x96\xba\x06\xcf\x4d\x43\x28\xa7\x83\xf1\x9e\x0f\x70\ +\x0e\x20\xa3\x55\x4c\x48\xf6\x00\xbf\xee\x01\x5a\xb1\xe8\x9c\xc1\ +\x11\x56\x7a\xf1\x39\x1f\x72\xb1\xc0\x13\xe7\xa6\x20\xc1\xbb\xf1\ +\x7c\x05\x49\x3b\x5f\x91\xc3\x39\x0c\xe7\x3c\x9f\xcb\xc8\xcb\x57\ +\x2c\xf5\x8e\x67\xef\x3c\xf4\xfe\x02\xac\xbe\x60\xc3\x97\x57\xe4\ +\xf2\x4b\x2c\x9c\x9f\xa9\x93\x46\x76\xd6\xca\x3f\x13\xc9\x39\xd7\ +\x39\x3c\x5a\xd6\x96\x46\xba\x89\x63\x8b\xdc\x98\x5f\xff\x02\xae\ +\xc7\x66\x9d\x73\x53\xdb\xe6\x3e\xfe\xa4\x64\xf8\x58\xdf\xdc\x06\ +\xf8\x1f\x69\xb4\xd9\xd0\xd9\xce\x26\x92\xcd\x31\xb0\xe4\x58\x1b\ +\x1c\x09\x36\xdc\xb0\xe2\x98\x39\x16\x7c\x8c\x8b\xdf\xb4\x84\x16\ +\xef\xd3\x3f\xbc\xfe\x74\xfb\xf4\xcb\x4f\x37\xfc\xa3\xfd\xdd\xf1\ +\x77\xe1\x37\x02\xf7\x5b\x03\xf6\xa9\x0c\x9e\x1c\xf0\x27\x05\xff\ +\xdb\x7f\xfb\x3f\x6f\xbf\xfb\xbf\xfd\xf1\xf6\x2f\xff\x51\xd7\x4e\ +\x8c\x46\x98\xca\x58\xe0\xff\xe0\xf0\xb7\xa5\x22\xa6\x9b\x91\x8a\ +\xe1\x28\xe9\x3a\x96\x5e\x76\x75\x8f\xb3\xf3\xa9\x26\x17\xbe\x59\ +\x0d\x80\x63\x4d\x3e\x10\x43\x4b\x9f\xc5\x75\x13\x92\xd1\xe8\x35\ +\x97\xbc\x89\x4a\x16\xc7\x24\x0e\xc9\xb0\xe2\xf5\x30\xe2\xe0\x65\ +\xa3\x87\x96\x39\x6c\x5e\xa7\xd1\x53\x83\x86\x9a\xe4\x9a\x1e\xb5\ +\x63\x26\xa1\xae\x18\x5f\xf3\x8c\x61\x5b\xa1\xc1\x8f\x29\xa6\xcf\ +\x9b\xd4\x78\x89\x98\x67\xcb\x5c\xea\xcd\xa1\x61\x3b\x47\x9f\xeb\ +\x8f\xb1\xf0\x67\x0f\x31\x9e\xd6\xc3\x3a\x1b\x1e\x0f\xf3\xd3\x39\ +\x1d\xcd\x31\xf9\xb1\xe0\xf8\xa4\x68\xc0\x96\xe3\x3e\xb8\x34\x0f\ +\xd7\xc5\x2d\x86\x05\xf6\x98\x18\x71\xb2\x00\xbd\xe7\x10\x61\xc0\ +\xc6\xcc\xad\x90\x9f\x46\xa0\x1f\x2a\xa0\xd8\x32\x36\x5d\xa7\xe0\ +\x1c\xc2\x41\xf1\x17\x29\xc4\x8f\xf1\x43\x59\x2b\x63\x56\xb0\x72\ +\x22\x03\x5e\xa7\x43\x20\x39\x8d\x9d\xe3\xa7\xcc\xea\xb9\x69\x7d\ +\xdd\xb4\xc1\x1a\x71\xd6\x00\xf7\x1b\x8c\x90\xb7\x02\xe6\xb4\x7b\ +\xdc\x2d\xb3\x60\xaf\x74\x15\xac\x89\xd7\xc6\x76\x8d\x82\xa7\x42\ +\xa3\x6d\xa1\x6a\xb8\xb6\x76\xde\xd4\x16\xb0\xba\xf9\x13\x0d\xb1\ +\xf0\x72\x91\x1b\x96\xcf\x1f\x30\xb3\x07\xc8\xa6\x6d\x78\xf7\xd0\ +\x6e\xcb\xb1\x72\xc8\xb2\xdd\x10\xc7\xdf\x60\xc2\x2a\x67\xd1\xd1\ +\x35\x07\x9d\xeb\x75\xa4\x8f\x70\x3e\xe8\xa2\x03\x47\x5e\x76\xcd\ +\xc6\x04\x7b\x9b\xf1\x40\x9f\x9c\xf3\xd1\x70\xfe\x90\x1d\xfb\x81\ +\x5f\x90\xe1\x55\x08\xbd\x72\x10\xe3\xf5\x26\x9d\x76\x4e\xc1\xf9\ +\x0a\xe1\xf4\x75\x3e\x41\x53\x4d\x9e\xe7\xdc\xd2\xe7\x39\x2f\x39\ +\x9f\x1f\xc5\x43\x23\x1b\xc9\x75\xfe\x04\x47\x1e\x89\xd2\xf1\xbc\ +\xd6\x35\xc9\x43\xc7\xf3\x78\x68\x5d\x4b\xe7\xc0\x38\x17\x56\x1c\ +\x5c\xd7\xfb\x3c\xa9\x5e\x6d\xe8\x5c\x87\x7d\x34\x6e\x0b\xaf\x33\ +\xb7\x51\xb3\xcb\xcf\x6d\x15\x6d\xf8\xa9\xe3\x22\x0a\x24\xe0\xea\ +\x8c\x67\x6d\xe3\x60\xb3\x8f\xfd\x91\xdb\xcd\xf3\x02\xb4\xc4\x65\ +\xe6\xcb\xed\xe5\x87\x7f\xbd\xfd\xfe\x7f\xfe\xd7\xdb\xed\xe5\x63\ +\x1c\x07\x21\x66\x90\xd9\x30\x2e\x5c\xb8\x70\xe1\xc2\x93\xb8\xbe\ +\x50\xbb\x70\xe1\xc2\xdf\x06\xf9\x19\x65\x8b\x67\xae\xe7\x90\xbf\ +\xab\x71\x56\xf7\x84\x1f\x5f\x7a\x04\x62\xdc\x8f\x5f\x3e\xdc\xfe\ +\xf0\xff\xfa\xdf\x6f\x9f\xdf\x7d\x08\x3f\x2f\xb2\x5f\x71\x71\xad\ +\xc6\x1b\x9f\xbc\x58\x86\x3d\x5a\x2c\xa9\x45\x0c\x1f\xbe\xf9\x01\ +\x3c\x2f\x62\xd9\x77\x1f\x48\x57\x3a\xf8\x5c\x0c\x3b\x5d\xb6\xe4\ +\x7d\xc1\x8d\x16\x97\xc8\xd1\xc7\xa8\xd1\x32\xd8\x1a\xae\xa4\x3d\ +\x1f\xe9\xd0\x70\xd3\x53\x37\x73\x10\x97\x66\x68\x87\x8e\x1f\x44\ +\xcc\xe7\xfa\xf9\x43\x4b\xd5\x87\xce\x0d\x37\x5a\xd9\x5b\x9f\x5a\ +\x36\xd7\xf5\x18\xe2\xa9\x21\x07\x5f\x34\x17\xe4\x64\xa7\x9b\x3e\ +\x5a\xec\x2b\xf4\x30\x49\xc2\x80\x2d\xba\x28\x73\xd0\x47\x64\x8e\ +\x67\xfd\x05\x8c\x67\xd3\x22\x7b\xdb\x09\xdc\x77\x11\x85\xda\x6e\ +\x81\xe2\x81\xf8\x30\x14\xcb\xe1\x1f\xb1\xc6\x76\xda\xac\xac\x5a\ +\x16\x34\x21\xf9\x6c\x85\x70\x26\xff\x69\x3c\xca\xf2\x6c\x1e\x20\ +\x64\xe7\xca\xb1\x5d\x62\x2f\x90\xa1\x38\xf6\xff\x33\x60\xc6\x32\ +\xcd\x51\xef\x49\x58\x78\x92\xd0\xeb\x9d\x48\x4e\xb1\xcf\xd9\x57\ +\xf1\xad\xa5\x81\x7d\xb6\x01\xfd\xbd\xf8\xc0\xa2\xc1\x6b\xc0\x37\ +\x0b\xe9\x4b\x31\x54\xb0\x22\xc8\x2e\x45\xd0\xa0\xd1\x70\x22\x54\ +\xd2\x41\x8a\x46\xc0\x08\xba\x54\x8c\xe7\x7e\x9e\xf6\x6b\x0a\xb9\ +\x44\xef\xa4\x75\x3b\x0c\x54\xcd\x40\x7f\xcd\xd2\x8c\xc5\x94\x97\ +\x8e\xba\x5c\xa6\x86\xb9\x5a\x80\x16\x18\x4b\x9f\xc2\xb9\xe9\xfc\ +\x04\x33\x6d\x37\x7e\xe1\x85\x80\xbf\x84\x72\x0c\xe7\xbd\x3c\xf7\ +\xa1\x06\xdf\x27\xf0\xe5\x94\xbe\x94\xd2\x17\x60\xe8\x23\x27\x7f\ +\x28\x43\x5f\xaa\x65\x7d\xc4\xe1\xa7\xde\xe7\x4d\xe9\xd5\x9b\x67\ +\xae\x7f\x08\x82\xe3\x80\x6f\x73\xc0\x86\xcf\xf1\xf1\xdb\x41\xb7\ +\xcf\xd1\xc0\xe5\x17\x6d\x15\xab\xdc\x68\xe0\xb3\xbd\x63\x1e\xc6\ +\x08\x1f\x2f\x4e\x6a\xa4\xe5\x1c\x82\x9f\xdf\x5b\xb0\x0e\xdc\x90\ +\xf9\x7e\x16\x8d\x5b\x57\x3d\x7d\x9a\xe9\x23\x62\x5d\x35\xcf\x5b\ +\x36\x7a\xdf\x04\xe3\x11\x12\xe3\x6b\xec\xdb\xed\x7d\x7c\x72\xf9\ +\xf1\x77\x3f\xde\x3e\xfe\xf2\xe7\xdb\xe7\xbf\xfe\x14\xf5\x70\xa4\ +\x44\x20\x0f\x18\x75\xe1\xdf\x03\x44\xfd\x00\xbb\xf0\x3c\xb0\x69\ +\x7b\xcb\xcd\x7f\x00\xf8\xcf\xef\x6e\x1f\x63\xbf\xfd\x7f\xff\xcb\ +\xff\xfd\xf6\xe3\xff\x82\x9f\xea\xff\xeb\xed\x25\x78\x6f\x7a\x1c\ +\x07\xb8\xe1\x87\xc3\x5c\x37\x26\xc1\x89\x67\x49\xdb\xf4\xc5\xf5\ +\xb6\xc2\xdc\x88\x39\xcb\x08\x1b\xae\x5b\x42\x63\x62\x0e\x39\x4e\ +\xf4\x71\xf4\xc5\x23\xaf\xed\xc8\xe9\x18\xf5\x4d\x54\xb1\xe8\xc1\ +\x2b\x2e\x36\x63\xa8\xc1\x1c\x7a\xc1\x66\x5e\xe7\xf3\x38\x47\x06\ +\x6f\xca\x46\x8b\x57\x5a\xf4\x68\xef\xc4\xf9\x65\xc1\xa6\xba\xb2\ +\xfb\xbc\x6d\xe7\x96\x4d\x5b\x75\xe8\x56\xe3\x3a\x06\xc9\xbc\x14\ +\x78\x3e\x78\xab\x00\xa5\x60\x6a\xa0\x8f\x1e\x2d\x26\xaa\x3e\x7d\ +\xe4\xc0\xe0\x9c\xb8\x16\xc9\x47\x4f\x23\x2c\xf9\x78\x24\x45\x2b\ +\x5e\xd5\xb4\xe1\x69\xce\x7c\x9b\xca\xb8\xea\x49\x89\xe6\xe3\x05\ +\x0e\x25\x01\x70\xe4\x93\xb3\xce\xb6\x51\x7e\x1a\xcc\x8b\xfa\xbe\ +\xf6\x66\x0c\x88\xed\x35\xcd\xb3\x35\x9b\x40\xcd\x25\xa0\x12\x91\ +\xc7\x89\xab\x26\x73\xb7\x88\x4c\x8c\xc1\xa6\xdc\xb5\xf6\x01\x0e\ +\xde\x15\xbd\x15\xa3\x10\xa6\xfd\x55\xa5\x9d\xb4\x26\xf6\x15\x5b\ +\x04\xc3\x3a\x02\x5b\x1d\x5b\xbf\xc3\xa5\xfa\x76\xe2\xc2\x1c\x33\ +\x68\x0c\x64\x7c\x46\x57\x61\xff\x84\x17\x6d\x95\x79\x1c\xc3\x26\ +\x69\x0d\x58\xa4\xb5\x74\x93\x13\x92\x24\xc7\x23\x0d\x86\x60\x5d\ +\xd3\x73\x16\x9c\x4f\x12\x1d\xe4\x9c\xaf\xad\x23\x3d\x7c\x27\xd8\ +\x97\xe9\xe3\xeb\x08\x06\x4b\x6a\x74\xbf\x7f\x5e\x22\xd8\xcb\xf7\ +\xfa\x96\x93\x9d\xce\x59\x61\xe7\x97\x6a\xdc\x4e\xcb\x39\x02\x3e\ +\x16\x7c\x4d\xa3\xf1\x7c\x83\x5c\xd7\x18\xb6\xce\x59\x3a\xef\xf1\ +\x1c\xc5\x5a\xca\x93\x0e\x7d\x6f\xaa\x4b\xbd\x5b\x08\xfd\x25\x92\ +\x79\x9d\x43\x75\xdd\xa4\x2f\xcf\xb2\x51\x17\x31\xe6\xe8\xfc\x2c\ +\x1b\x79\xb0\xa5\x1b\x31\xc5\xe7\x31\x33\xc6\xfa\xe0\x73\x4e\xb9\ +\xed\x50\x1f\x3d\x6d\xac\x4f\xdb\x8c\xdc\x46\xd8\x3a\xe1\x98\x0b\ +\xab\x78\xf9\xad\xa5\x6f\x82\xb6\xcc\xa1\x45\x8f\x6d\x88\x75\xce\ +\xb9\x6a\x9b\x68\x70\x1e\x1d\xf8\x33\x8f\x3f\xfe\x70\xfb\xe9\xcf\ +\xff\xe9\xf6\xe9\xe3\xcf\xd4\x73\x5c\xb6\x0b\x17\x2e\x5c\xb8\xf0\ +\x16\x5c\x5f\xa8\x5d\xb8\x70\xe1\xb7\x05\xae\xe6\xc6\x67\x84\xe7\ +\xd1\xaf\xf3\x7a\x1e\xf8\xb7\xd4\x31\xf8\xb7\xc4\xf5\x01\x80\xe9\ +\xac\x13\x8b\xd7\xf7\xb7\x0f\xff\xf6\x7f\xdd\x7e\xf7\xf9\xf5\xf6\ +\x12\x6e\xdd\x63\x0e\xdd\xe7\x4f\xba\x28\xad\x9b\xa4\xb4\x71\x19\ +\x1a\xc2\xbc\x6a\xa6\x4d\xd3\xbd\x1a\x1d\xa2\x93\xba\x84\x95\x9f\ +\xbd\x75\xd6\x38\x16\x97\xe7\xbe\x59\xa9\xda\x73\x1b\x1c\x3f\x81\ +\xa8\xe5\xfc\x30\x37\x7e\x38\x49\x6e\xf8\x5e\x07\xdc\x40\xe5\xd5\ +\xb7\x9a\xf9\x7e\x63\x95\x3a\xc4\xf2\xc6\x66\xea\xd0\xf3\x4f\x46\ +\xd8\xaf\x31\xa0\xf7\x98\x6e\x58\x8d\xe4\x1c\x8b\x27\x17\xf4\x95\ +\x3e\x36\x01\x08\x5a\x0a\x94\x46\x3d\x69\x84\x01\xfb\x6c\x66\xe1\ +\xd4\x0e\xa4\xaf\x0f\x8d\x34\x99\xa2\x45\xf6\x69\x0f\x33\xb5\x01\ +\xfa\xb1\x58\x79\x0d\x68\x3e\x7a\x1c\x53\x69\x9f\xe1\x5e\xbc\xea\ +\x64\x3b\x88\xe7\xd5\xa9\x38\xcd\x58\xa4\x7b\x17\x4e\x5b\x1b\xe0\ +\x1e\x98\xb9\x11\x89\xad\x98\x0f\x3a\x65\xe7\x2b\x29\xed\xd1\xb4\ +\xa8\x6e\xc6\x96\xbc\x83\xb6\xe9\x57\xd4\x78\x1d\x26\x7b\xb0\xf7\ +\x0f\x9a\xcd\xb7\xa0\xa5\x3f\x84\x74\x58\x29\xb7\x73\x78\xfb\xce\ +\x98\xb9\xdd\xb8\x3a\xe6\x83\xe5\x1d\xcb\xb3\x31\x82\xc7\x01\xa4\ +\x3b\x9a\x42\xbe\x56\x38\x6e\xa6\xb1\x4b\x89\x95\xee\xeb\x87\x13\ +\x06\x21\x84\xdf\xe7\xae\xb0\x45\x27\x08\x39\x15\x4d\x76\xcc\xc8\ +\x63\x30\xc1\xd7\x44\xf5\x58\x44\x33\x19\x30\xcf\x7e\x69\x3e\xa7\ +\xa8\x95\x11\x0d\x71\xc7\xe8\xf0\x5c\xa7\x53\x66\xda\x3c\x0f\x46\ +\xc8\x3e\x5b\x68\xe1\xf3\xee\x38\x34\xf8\x62\x4b\x3c\x63\xf5\x05\ +\x1b\xce\xa7\xbd\x39\x5f\x2d\x16\xac\x4f\x9b\x5c\x14\x2c\x7b\xf4\ +\x6e\xfc\x0d\x32\x36\xeb\x34\x0f\xfa\x79\xbe\x9e\xe7\xd9\xeb\xc1\ +\x1e\xe7\x77\x7c\xb1\xd6\xbf\xc8\x23\x87\x6d\x10\xf9\xf8\x01\x0a\ +\x9e\xe9\x50\x5b\x1b\x27\x9e\xd1\x63\x0b\x45\xaf\xf7\x04\xd9\xa3\ +\x21\x18\xf5\x64\xb0\x96\x6d\x3c\x18\xc3\x83\x3c\xe6\x82\x7e\x8c\ +\xff\xea\x75\xc0\xad\x2a\x70\x1f\x3e\xde\x3e\xfd\xe5\x8f\xfc\xc2\ +\x91\xc7\xb5\x86\x8f\x1c\x2c\xc7\xf1\x76\xe1\x37\xc0\xb4\xb9\xed\ +\x60\xff\xbd\xdc\xfe\xc3\xbb\xd7\xdb\x1f\xff\xfa\xbf\xdd\x7e\xf7\ +\x2f\x3f\xc6\xa7\xce\xd8\x87\xdc\xcb\xda\x5d\xd8\xd7\xf8\xbf\x69\ +\xfa\xdf\x69\xde\xf7\x19\xc7\x4d\x5a\x6a\xb2\x85\x4d\x94\x21\x50\ +\x93\x0f\xfa\x8e\x97\x61\x8d\x1a\x20\x3b\x1f\x1c\x6f\xf3\xc8\x63\ +\x55\x4d\xc7\x26\x97\xd6\x33\x6e\xcd\x67\xc5\x62\x69\x8d\xd6\xc7\ +\x37\x5b\xa5\xe5\x6f\xe2\x21\x46\xa5\x74\xe2\xa5\x8f\xcd\x50\x36\ +\xda\xa8\x13\x7d\xbc\x1e\xf4\x3f\xd1\xf8\x72\x08\x3b\xd6\x01\x8d\ +\x37\xb3\x95\xa7\x5e\x7e\x94\xa5\x8e\x36\xb9\x68\xf0\x93\xa3\x3e\ +\x1e\xb5\x41\x5c\x13\x26\x93\x94\x5f\xe3\x60\x6c\xe4\x04\xa9\x79\ +\x67\xb6\x82\x61\x63\x0c\x30\x78\x6d\x23\xa0\x10\xfc\xc9\xe6\x5c\ +\xd0\x0f\x0e\x9d\x4c\xf1\x46\x48\xc7\xd1\x84\xbc\xf5\x75\x6d\x79\ +\xe6\xc4\x74\x89\x91\x53\xa1\x42\xcd\x1b\x76\x2d\x84\x59\x0b\xaf\ +\x2b\x47\x1e\xe0\xda\x1c\x13\x13\x4d\x9f\x80\xb1\xf1\x6d\xd6\xfc\ +\xb2\x9f\x60\xed\x14\xdc\x2a\xdf\x86\x28\xc1\xed\x9d\x73\xa5\xdf\ +\xf9\xb4\x2b\xd6\xec\x43\xeb\xd8\xf1\x9d\x6b\x8d\xdb\x2c\x1b\xfc\ +\x7e\xb9\x21\x28\x90\x47\x53\xfa\xb9\x5c\xb5\x0c\x43\x65\x5d\x13\ +\x1c\xb4\x4b\x1c\x08\x4e\xc7\xf1\x88\xb0\x4f\xa9\x39\x83\x25\xd0\ +\x67\x04\xcb\x9a\x3f\x7b\x3b\xd2\x78\x48\xda\x32\x63\x81\x25\xb6\ +\x7f\x31\x47\x48\x48\xb3\x06\x5d\xb5\x9b\x54\x51\x58\x46\x73\x3c\ +\x7b\xbb\x86\xca\x8a\xad\x21\x02\xb6\x8b\x4a\x5d\x5f\x87\x9a\x7a\ +\x34\xd8\xd8\x86\x78\x0d\xe8\xb7\x64\x5f\xc2\xc6\xf9\x41\xb1\xd2\ +\x84\xc0\xaf\x79\x72\xf4\xd1\x47\xdd\xb0\x7d\x9e\xa9\x9e\x4d\xe7\ +\x3e\x72\x6c\xb6\xf1\x03\x18\xb0\x47\x43\x9d\xf2\x2b\x6f\x34\xee\ +\xe7\xcc\xd5\x39\x1b\xe7\xe1\xb8\xa6\x88\xa6\xcf\xf4\xd2\xe9\x4f\ +\x41\x8a\x63\xa3\x0d\x4e\x73\x95\xed\x3f\xf7\xa8\x6b\x12\x6b\x11\ +\x27\x8f\x5a\xb1\x92\xc8\x99\x5b\x8c\x8d\xd5\x47\x1f\x86\xce\x67\ +\xd1\xb3\x85\x0d\x4d\xd8\x20\xc0\xb9\x97\x36\x1b\x78\x73\xee\x63\ +\x41\x3b\x7d\x8c\x05\x86\x63\x62\x9d\x83\xe4\xd8\xd4\x41\x05\xe1\ +\xbb\xdb\xfb\xff\xf0\xe9\xf6\xe1\x97\x3f\xdd\xfe\xf2\xf3\x1f\x6e\ +\x5f\x5e\x3e\x65\x4d\x9f\x99\x80\xd4\x5e\xb8\x70\xe1\xc2\x85\xbb\ +\xb8\xbe\x50\xbb\x70\xe1\xc2\xaf\x83\x67\xae\xc5\xbe\xe5\x7a\xed\ +\x9b\x73\x75\x81\x39\x21\xae\x3e\x7f\xf8\x14\x17\xc9\xbf\xff\x2f\ +\xb7\xff\xf0\xf2\x25\x7f\x92\x5a\x17\xba\xba\xd8\x8c\x8b\xce\xb8\ +\x4a\xe5\x45\x39\x2e\xa0\x71\x81\xea\x86\xa2\x10\xe1\x0a\x16\x3d\ +\x81\x5e\x8d\x94\x16\xd9\x27\x92\xf3\x5c\xd8\x5b\x67\x6d\x36\x8f\ +\x35\x7c\x99\xc3\x1f\x73\xc2\x3c\x30\xd7\x58\x90\x47\x9c\x1c\xb5\ +\xb8\x6c\x07\x87\xab\x6d\x34\xc7\x94\xe3\x06\x5e\xbd\xb5\xb8\xd9\ +\x9a\x3c\xc6\x61\x6e\xe4\xa0\x56\xea\xc4\x49\x83\xc6\x0f\x9c\x35\ +\x27\xb4\xee\x63\x1a\x1a\x43\xf3\x82\x58\xa8\x29\x82\x6a\x1f\x3c\ +\xb0\x14\x77\x6c\x9a\x53\xd8\xfc\xc0\xaa\x3e\x18\x04\xa2\x61\x3f\ +\xe2\xc3\x02\x6c\xc4\x86\xe9\x61\xcb\xce\xc6\x5c\x83\x3e\x90\x35\ +\x00\x72\xf0\xdb\xef\x39\xb6\x94\xc5\x21\x8e\xcc\x00\x62\xad\x7a\ +\x22\xbc\x24\xcc\x6b\xbe\xb3\x6a\x75\x3b\xb8\xfa\xd9\x13\x9e\x6c\ +\xe5\xc0\xa8\x35\x90\x56\xe6\xd4\x63\x7b\xd4\x36\x49\x91\xbc\x91\ +\x5b\xc8\x38\xcd\x08\xa7\x99\x98\xbd\x5d\x7a\x61\x91\x3e\x44\xe8\ +\xb9\xbe\x6e\x49\x7f\x35\x50\x20\xeb\xb8\xbd\x05\xd2\x9f\x65\xcd\ +\xdb\xfc\x99\x11\x86\xa2\xeb\xa2\x0e\xbf\x28\x73\x6b\xfb\x29\x40\ +\x26\x5f\x43\x23\x4f\xaf\x87\xc1\x25\x8f\x0e\x2f\x5a\x24\xa5\xcb\ +\xfe\x70\xf0\x08\x64\x63\x81\x5e\x0a\x27\x6a\x1e\x34\xbd\x90\x1b\ +\xd0\xec\x58\xb2\xb8\x01\x52\x87\x58\xbc\xd2\xd6\xbb\x6f\xe9\x4e\ +\x52\x73\xec\xbd\x15\x62\x49\x23\xe6\x54\xbc\xb8\x9c\x09\x48\xe6\ +\xf0\x1c\xd2\x9a\xcf\x63\xf2\x23\x4e\x1b\xe2\x38\xd1\xd0\x1e\x3d\ +\x63\xd9\x9c\xc3\xdf\xf6\x82\xed\xdf\x40\xc3\x39\x14\x39\xcc\x6b\ +\x7d\x9e\x37\xa9\xc9\x76\xeb\xf6\x17\xe7\xa1\x2e\xea\x28\xc7\x3d\ +\x5b\x6a\xf1\x65\x16\x6a\x8d\xba\x68\xf0\xf3\x37\xd5\x38\xa7\x1e\ +\x43\x1d\x71\xac\x97\x9a\x6e\xaf\x7a\xd6\xd3\x86\x60\x8f\x07\x9f\ +\x39\x36\xd7\x1d\xf1\xa5\xa1\x73\x2e\xd7\x83\x7d\xf8\xc8\x89\xb2\ +\xfc\xd3\x91\xf9\x65\x23\x6f\x52\x21\xc6\x38\xd6\x0d\xdb\x40\x35\ +\x5e\xe2\x78\x7f\xf7\xfa\xe1\xf6\xe1\xa7\x7f\xbd\x7d\xf9\x88\xdf\ +\x26\x8f\xba\xd3\xf1\xd1\xed\x0d\x1e\x84\x2f\xdc\x41\x3f\x05\xcc\ +\xa7\x83\x74\xb5\x71\xf1\xae\x88\x5d\xf2\xfb\x3f\xfe\xf9\x76\x7b\ +\xff\xa7\xdb\xfb\x7f\xf9\x0b\x8f\x8f\x77\xf9\xa5\x3e\xf6\xa5\x6e\ +\x4a\xa2\x8f\x73\xd1\xab\xbe\x2c\x42\x76\xec\x65\xf5\x2c\xd5\xed\ +\x19\x45\x85\x21\xdb\xcb\xcc\xa1\x17\xe8\xe7\x23\x07\xa2\xf1\x78\ +\xc2\x03\xc7\x62\x5c\x70\xe8\xf8\x0a\x2b\x7c\x31\xc9\x63\x89\x58\ +\x1e\xdb\xd6\x73\x09\x3d\x14\x99\xab\x7c\x34\xdd\x5c\x2d\x3d\x7d\ +\x1c\xea\xe1\x67\x1d\xe9\xd6\x96\xf3\xe2\x4b\x0d\xe7\xe9\xe4\x62\ +\xca\x23\x1f\x1a\xf9\xd2\xa2\x1e\x34\xd0\x2b\x16\x4c\xf4\xf8\x12\ +\x4c\x35\xc0\x29\x1f\x31\xe5\xc5\xc4\xb9\xcd\x71\x8a\xd1\x57\x9d\ +\xc9\x87\xf5\xca\x3c\x35\x24\x73\x0c\x8f\x03\x09\xf6\x36\x78\x34\ +\x8e\x45\x12\xa9\xe2\xd0\xf3\x61\xfd\x88\xeb\x9a\x2e\xfd\xb4\x74\ +\x54\x08\xf0\x63\xd5\xc7\x4b\x9a\x3d\x16\x49\x44\xe7\xfa\x5e\xc6\ +\x2a\x0c\x88\x2e\xb0\x36\xb9\x41\xa2\x7e\x21\x68\x46\x2a\x6c\xc3\ +\x22\xcc\xd7\xb6\x67\x2e\x7f\x94\x81\x15\xcd\x85\x38\xf9\x68\x1c\ +\x53\x0d\x4b\xa8\x5c\x21\xe9\x68\xb1\x70\xdb\x62\x8c\x32\x21\xf3\ +\xdb\x10\xad\x94\x0c\xed\x0b\x8c\x28\xc1\xb0\x46\x03\x28\x47\x2f\ +\x37\xe7\xd9\xe2\xc1\x0c\xfb\x88\x1d\x77\x0f\x55\x3b\x13\x73\xba\ +\x6c\xf4\xd5\x05\x3c\xf2\x98\xfb\x04\x1e\x4b\xde\x3f\xd2\x11\x36\ +\x9d\x10\x7d\x33\xcb\x9e\x02\x81\x32\x93\x6e\x21\xcd\x0d\xaf\x87\ +\x84\x63\xa4\xe9\xd0\x8a\xe6\xb9\x8c\x0e\x90\x99\xf1\xc6\x13\xf0\ +\xa3\x8d\xf2\x5d\x60\x72\x8c\x3d\x85\xbd\xd1\x12\xf2\x92\x9b\xbb\ +\x66\x04\x6c\x47\xef\x2d\xcb\x1e\xa6\xbb\xde\x57\x1b\xfb\x81\xb1\ +\x3c\x1f\xa9\xc5\xbe\x40\xbc\xfc\x78\xad\x95\x0d\xbe\xb5\x78\x20\ +\x86\x22\x38\x0f\xf9\x7c\xaa\x73\x5f\xd0\x3c\xdf\xe0\xdc\x99\xfa\ +\x6a\xa8\xa9\x5c\x9f\x37\x2b\x86\x1c\xe6\xa1\x45\x6e\xfa\xa5\x71\ +\xed\xbc\xce\xf0\x6f\xad\xe1\x7c\x2d\x6d\xab\x9d\x5a\x7f\x69\xc6\ +\x6b\x92\xbc\x36\xa2\x4d\xdd\x68\xf2\x11\x9b\x39\xac\x9f\xb6\x0b\ +\x6a\xc7\x39\x19\xab\xcc\x38\xfc\x68\xf4\x75\x4c\xc4\x53\x31\x6d\ +\x16\xe6\x28\xbf\x35\xf3\x61\x29\x77\x68\xd0\xa3\x26\x4c\x8c\x8f\ +\x3f\x4c\xa0\x79\x40\x09\x4d\xd8\xef\x60\xff\x70\x7b\xfd\xf1\x4f\ +\xb7\xdf\xff\xe1\x3f\xc7\x51\xf5\x32\x1d\xb2\x42\x3b\xd6\x2e\x5c\ +\xb8\x70\xe1\xc2\x29\xae\x2f\xd4\x2e\x5c\xb8\xf0\xeb\xc1\x17\x67\ +\xdf\xfb\xba\xac\x5f\xf4\x7d\x4d\xed\xc3\x85\x23\x80\x0f\x64\x2f\ +\xb7\xd7\x9f\xff\x70\xfb\xf1\xf5\xe7\xb0\xc6\xc5\x27\xb4\xbc\xf0\ +\xc6\x8f\x0f\xf3\xc2\x34\xfb\xba\x1a\xce\x96\x45\x11\xc7\x67\x69\ +\x5e\xbf\x92\x1e\xb1\x01\x08\xd0\x60\x2a\xc6\xba\xb2\x32\xc6\x20\ +\x7b\x8f\xe9\x26\x3f\x06\x88\x56\x31\x8c\x97\x73\x19\x71\xc7\x86\ +\xcd\x0b\x6b\x7e\x30\x50\x2e\x7d\x6a\x32\x07\x5a\xc6\x5c\x5b\x5a\ +\xc7\xf5\x21\x45\x3e\xe3\x71\xc1\xee\x0f\x2d\xd2\xa8\xf7\x6f\x33\ +\x38\x0f\xbc\xea\x69\xb5\xe8\xd3\xb0\xef\x06\x1d\x3b\xfa\xcc\x01\ +\x26\x2e\x6d\xb8\xb4\x55\x29\x29\x81\x0e\x6a\x61\xdf\x1a\xb2\xcb\ +\x4f\x23\xa5\x6c\x15\xf3\xc1\x35\x88\x82\xc7\x1b\x80\xb6\x1f\x8c\ +\x9b\xf9\x7c\x05\xd6\xfc\x5a\xe7\x5c\x0f\x62\x33\x08\x28\xb6\x58\ +\x70\x66\xa9\x71\x7e\x81\xa2\xed\x0b\xe2\x09\xb4\x1c\xaf\x3a\xeb\ +\xc9\x3c\x42\x41\x85\x31\x7f\xec\x9b\xa4\xb3\x63\x4b\x1f\xb0\x7f\ +\x98\xb7\x93\x0c\x0a\x65\xae\x70\x68\x6d\x6f\x42\x4b\x6c\xe6\x53\ +\x78\x4e\x3b\x8e\x97\x6e\xa9\x1d\xa1\xfd\x2f\x25\x31\x49\x75\x2c\ +\x2a\xae\x00\x8f\x96\x8a\x03\xe9\x4c\xaf\x8d\x84\x52\xb4\x88\x52\ +\xde\xf6\xa2\xd3\x29\x28\x7f\x66\x7d\x30\x28\x76\x7e\x68\x68\x8e\ +\x75\xd3\xb4\xc1\x5a\x86\x32\xee\x1b\xbb\xf0\x93\x6a\xc6\xcc\x71\ +\xcc\x24\x32\x85\x86\x7a\x35\x7a\x71\x5a\x92\xef\x6d\x14\x6c\xfa\ +\xe8\xeb\x7c\xe5\xf3\x18\xf5\xc9\xa1\x87\x0f\x3e\x6f\xce\xf0\xbc\ +\xf9\xfa\xf9\xf6\x99\x5f\x6e\x65\xad\xe4\x95\x1f\x3d\xbe\x18\xf2\ +\x6f\xa6\xe5\x97\x60\xfd\x46\x8d\xbe\xcc\x92\x5d\x5f\x74\xe1\xbd\ +\x87\xda\xf0\xa3\x8f\xc0\x88\x39\x17\xbf\xd5\x95\x3c\xeb\xd4\x79\ +\x5a\x35\x39\x57\xde\x5d\x49\xbe\xce\xc9\xe0\xa2\xa1\x6e\xea\x47\ +\xde\xa6\x21\xaf\x7c\xac\x37\xd6\x2b\x7b\x6f\x9b\x58\x68\xdb\xe5\ +\x36\x48\x9b\xef\x09\xbe\xd1\x8c\x86\x39\x52\x23\xdf\x39\xb2\x35\ +\x0f\xf4\xb8\x49\xc5\x31\xd0\x47\x9c\x1f\x5e\x62\xde\x9f\x7e\xfa\ +\x73\xcc\xfb\x13\x3c\xa5\x4d\x38\x10\x03\x3e\x28\xff\x99\x71\x67\ +\xf3\xdc\xc5\x2e\x2f\xb9\x29\x84\x2f\x83\x5e\xde\xdd\xfe\xe7\x1f\ +\xfe\x8f\xdb\x8f\xff\x01\xbf\x0d\xf0\x73\x70\x71\x65\x15\xfb\xd1\ +\x37\xf8\xea\x90\x8a\x8b\x08\xfc\xb6\x40\x1d\x0b\x2c\x04\x3b\x96\ +\xd1\x78\xdc\x24\x60\x9d\xb6\x3a\x9f\x69\x07\xbb\x94\x9b\x0d\x75\ +\x78\x44\x1f\xa2\xde\x38\x37\x3c\xca\xc7\xa1\x37\x62\x31\x6b\xd9\ +\xa5\x49\x9f\xb6\xea\xf1\xe6\xac\x5b\xac\x1b\xd7\xb5\xc6\x54\x2e\ +\xb7\x03\x1e\xa8\x1f\x41\xbc\xc4\x61\xe3\x75\x34\xb6\x11\xfa\x9c\ +\x63\x6c\x4f\x6e\x2b\x34\xea\xb2\x77\x1c\xeb\x6e\x1b\xf5\xe9\x9b\ +\x8b\xc6\x42\x98\x84\xea\xc0\xc6\x3c\x14\x97\x0e\x63\xc2\xf8\xcc\ +\xfd\x94\xf3\x09\x5f\x34\x16\x91\x97\xf0\x7a\xf3\x61\x1e\x7d\xea\ +\x2d\xae\x18\x90\x3c\x1e\x72\x30\x11\x7d\xf1\xca\xbc\xc6\xbe\x38\ +\x31\x3a\x5a\xe9\x0e\x8c\x71\xd1\x61\x8f\xfb\xbc\x2f\xbd\xea\xd1\ +\xa4\x95\x5e\xc6\x9d\x5b\xef\x15\xe9\x0f\x27\x22\x69\x56\x28\x40\ +\x9b\xc9\x68\x3a\xce\x08\x53\xb1\xa8\x28\x7d\x41\x26\x62\x49\x56\ +\x8d\x26\x22\xf6\x9c\xb6\xbf\x7a\x99\xaa\x64\xe5\xb0\xf3\xbd\x2c\ +\x9a\x14\x42\x9b\xe9\x7d\x44\xca\xa8\x25\xc8\xee\xcb\x1e\x1f\xa3\ +\x0c\x6e\xc6\x19\x5f\x58\x05\xe1\xfb\x6d\x02\xfd\x1c\xce\x40\xb5\ +\x61\x72\xcd\x71\x2c\xf3\x21\x4c\xbd\x9d\xc4\x70\xc3\x2a\xa7\x6d\ +\x35\x1a\xe9\x55\x07\xa3\x14\xdc\x17\xe5\x96\x3d\xe2\xeb\x96\xa7\ +\xde\x48\x7d\xa7\x8c\x0c\xcd\xfa\x05\x8a\x9d\x08\x3a\x5d\x36\x0c\ +\x39\x87\xba\xe1\x93\x62\x9f\xdb\xc0\x9a\x74\x90\x13\x67\x07\x58\ +\x3c\x39\xb0\x06\xb9\x8c\xa1\xf1\x87\x00\x60\x07\xd7\x34\xd4\x65\ +\xa3\x0d\x1d\x5e\xe8\x3c\x07\x66\x7e\xf8\x68\x38\xef\x54\x23\x87\ +\x5a\x6b\xaf\xc6\x73\x65\x6f\x51\xa8\xbe\xd4\x62\x2d\xd4\x8f\x39\ +\x57\x3c\x6d\x8c\x99\x9a\x57\xfc\xc0\x52\xc6\x2a\x8f\x3d\x9a\x39\ +\xc4\xcd\x45\x6e\xb3\x47\x0c\x5a\x8c\x89\x78\xf4\x58\xbb\xe8\x5f\ +\xc3\xe1\xf9\x3d\x8e\x05\xf8\x6c\xd8\x0c\xd1\xc7\x73\x68\x1d\x0f\ +\xdb\xdb\x2b\x4d\xf9\x69\x33\x2f\x9b\x75\x69\x46\xae\xc6\x76\xe3\ +\x5c\xc0\xc7\xc4\x60\x81\xc3\xe2\xe3\xe7\x4f\xb7\x1f\x7e\xfc\xe5\ +\xf6\xc7\x9f\xff\x5b\x10\xbf\x70\x5c\x86\xa2\x5d\xb8\x70\xe1\xc2\ +\x85\xe7\x71\x7d\xa1\x76\xe1\xc2\x85\x7f\x0c\xf4\xcf\x24\xb0\xbb\ +\xff\xe8\x0a\x70\x8d\xc3\x5f\x3f\x5d\xc6\xa7\xb6\x8f\x1f\x6f\xb7\ +\xdf\xff\xa7\xff\xf7\xed\x77\xb7\x8f\xb7\x2f\xef\x5e\x42\xa6\x9b\ +\xbd\xe8\x75\x01\x3d\x6e\x72\x7e\xc6\xd5\x31\x2e\xcc\xf1\x88\x1e\ +\x17\xa8\xbe\x50\x0d\x8a\x1c\x3f\xd4\x92\x04\xaf\x06\xbd\xb4\xcc\ +\xcc\x00\x10\x63\x61\x4e\x8e\x31\x24\x2d\x35\xec\x35\x0e\x1b\xaf\ +\x7e\x87\x8d\x1c\xce\x07\x73\xa1\x2e\xb5\x9c\xaf\x78\xcd\x53\x37\ +\x5d\x7b\x0e\x6b\x59\x17\x8d\x5c\xd5\x6e\x37\x67\xd1\xb2\x96\xf4\ +\x88\x47\x9d\xcc\xab\xdf\x48\xa0\x3e\x79\xe6\x05\x17\xc3\x06\x91\ +\xf1\xd4\xc5\x53\xab\x26\x1b\x1d\x0c\xf6\xd9\x48\xc1\xa4\x9d\xb1\ +\x06\xf2\xb1\x50\x6f\x92\xcf\xa6\xc7\xc7\x6c\xc1\x63\xa1\x31\x04\ +\xd0\x5f\x0f\x88\x04\x3f\x9c\x23\xe6\xe6\xbc\xaa\xd8\x96\x1d\xa3\ +\x1e\xcb\x67\xdb\xa1\xf3\x65\x87\x51\xeb\x03\xa0\x9c\x7d\xf4\xd1\ +\xc6\x08\x45\x4d\xf0\xcd\x9c\x43\x6c\x27\x06\xce\xb8\xe4\xa7\xb4\ +\x18\x7c\xda\x64\xb1\x6b\x0f\xf9\x3d\x1e\xe8\xf9\xd8\x37\x2e\xd0\ +\x79\xe3\x1e\xc7\xdc\xef\x80\x51\xef\x8d\x68\x49\xcf\xe7\x6b\xd6\ +\x47\xed\xb2\x91\x12\x43\xbb\x8f\x77\x58\xcb\x16\x8b\x71\xdc\x8c\ +\xed\x0b\xf0\xf7\x28\xf3\x78\x26\x87\x03\x24\x1a\x6c\x69\x3c\x56\ +\xeb\x33\x59\xaf\x01\x38\x19\x1b\x49\x01\xdf\x10\x95\x57\x08\x1f\ +\x63\xee\x5e\x3f\x92\xb6\x84\x35\x77\x8b\x79\x1b\xd6\x9c\x2a\x77\ +\x44\x27\x8a\x7d\x1a\xd1\xcd\xb1\xa8\x89\x1e\x0d\xc7\x30\x00\x0d\ +\x9b\x0c\xf7\xd5\x78\xce\x1b\x7d\x9d\x5b\xf3\xbc\x66\x9f\x5f\x6c\ +\xe1\x4b\xb0\xd4\xe2\xfc\xc7\x9b\x36\x75\xee\x94\x86\xe7\x64\xda\ +\x51\x03\x5f\xc2\x4d\xb1\xe8\xf1\xbe\xc3\xf7\x1e\xfb\xd1\xf8\xe5\ +\x57\x8e\x8f\x3c\x36\x8d\xe1\x5a\xe4\xad\x4f\x1d\x7b\xae\x03\x74\ +\xf9\xff\xd5\x72\x8e\xd3\x38\x8c\xa3\xc1\xcf\x5a\xd9\xf3\x37\xe0\ +\xbc\x1d\x30\x9e\xb7\x0b\x37\x62\x36\x74\xe9\x99\xe3\x79\xba\x02\ +\xd0\x88\xe3\x38\xa9\x21\x8f\x9f\x9e\x66\x5c\xe3\xb1\x51\x8b\x9b\ +\x55\xb2\xb1\xe7\xdf\x47\xfb\xf1\xc3\xcf\xb7\x0f\x1f\xf1\x7f\xd4\ +\x10\x8f\x2e\x90\xbf\x00\x15\x28\xe3\xb7\x41\x8e\xff\x0f\x83\x7c\ +\xf9\x6c\xf1\x2c\xbf\xf8\x63\x8b\x63\x7f\x84\x17\xc7\xc8\x7f\xfa\ +\xcf\xff\x9f\xdb\xa7\xdf\xfd\x99\xfb\x0f\x02\xee\x73\x28\xa2\xaf\ +\x3f\x91\xf5\x1a\xe7\x09\x1c\x62\x11\x72\x49\xc8\x70\xbc\xc0\xef\ +\x8d\x98\x88\x64\x31\x78\x4e\x80\xc7\x8b\x4c\x38\x58\x64\xbd\x6c\ +\xb0\xd9\x34\x02\x38\xdd\x78\x8c\xe3\x0b\x4b\xd8\x38\xde\xe4\x69\ +\x8e\x38\x1e\xf1\xc8\x1e\xe7\x0b\xda\xd4\x32\x42\xbd\x72\xd1\x90\ +\xaf\x5c\x7d\x59\x26\x5e\xb5\xa0\x45\xee\xbb\xbc\xd9\xea\x1c\xc7\ +\xa3\xb6\xb7\x47\xda\xbc\xe4\x64\x8b\x6d\x15\x8d\x5f\x98\x41\xc3\ +\x79\x80\x43\x8f\x1a\xc8\x43\x4c\x37\x67\xe1\x63\xba\xcc\x81\x36\ +\x49\xe9\xd1\x3c\x2e\x36\x5f\xd8\xa9\x11\x1f\x73\x0c\xdb\x75\xe2\ +\x49\xc3\xeb\xad\xba\x20\x93\xe7\x23\x5d\x34\x3a\xb4\xd4\xf5\x3e\ +\x5a\xbd\x17\xd1\xb6\x95\x37\x27\xbe\xc4\x32\x1c\xd6\x50\x88\x0e\ +\xc7\x8d\x6d\x07\x12\xbf\xb5\x8c\xf5\xd2\x6e\xb7\x18\x66\x25\xf0\ +\x31\x21\x8f\x91\x3a\x5c\x22\x8c\xab\x75\x1a\x59\xb7\x44\x04\xfc\ +\x18\x2b\x3a\x5c\xe3\xf2\xbd\x8e\x08\x03\x1b\x8b\xbd\xc9\x0a\x4e\ +\x26\xed\x2e\xe9\xb1\x13\x70\xe6\x51\x57\xcd\x9c\xb1\x16\x53\x8b\ +\x3d\x1c\xcd\x6b\xec\x35\x54\xcc\xac\xbb\xa4\x8f\x0d\xd8\xf1\x9b\ +\x86\x79\xa1\xd5\xb5\x7f\x90\x1a\x27\x7d\x3d\x27\xde\x0f\x45\x14\ +\xdd\xc1\x11\xf6\xb1\xd8\x5e\x63\x10\x8d\xb4\x99\xda\x53\xf9\x59\ +\x20\xe7\x3c\x09\xd2\x8c\xc3\x4c\xf1\xec\xc6\x3a\x08\x3a\x62\xf2\ +\xb8\xc9\x90\x34\xd1\x0f\x19\xc1\x7d\x4a\x0b\x7b\x2b\x72\x52\x4f\ +\x2c\x5a\x40\xc7\xfc\x11\x39\x5a\x20\xe2\x7c\xba\xee\x39\x18\x2f\ +\x91\x8c\xbe\x2e\x8e\x4f\xb5\x2a\x8c\x40\xcc\x39\xe6\x83\x73\x1d\ +\x56\x8c\x53\x83\x89\x07\xfb\x68\xf5\xa5\x1a\xec\xe4\xb3\xf9\x5c\ +\x82\x05\xcf\x5b\x7c\x09\x89\x64\x5d\xf6\xd2\xe1\x7c\xc5\x46\x5f\ +\xe7\xa1\xd1\xeb\x8b\xaa\xc1\x45\x0b\x67\xe4\x98\x83\xdf\xe3\x8b\ +\x1d\x0d\x73\xd0\x9f\x7f\x74\x0c\xb6\xce\xdd\x68\x3c\x07\xb2\x49\ +\xe3\x79\x32\xc6\x73\xe1\xac\xd7\x17\x73\xe9\xc7\xea\x45\x4a\xe6\ +\x84\x9d\xab\x8b\x73\xf4\x6b\xec\x41\x9e\xab\xd1\x83\x67\xd3\xf1\ +\x40\x1b\xbd\x5b\xfa\x34\xb2\xf3\x79\x9f\xbe\x63\xc1\x71\x1c\xcc\ +\xb7\x62\x63\xce\x78\x00\xef\xe2\x0a\xea\xc7\x1f\xc3\xfb\xf0\xfb\ +\xdb\x2f\xaf\x3f\xb5\xeb\x26\x23\x93\x2f\x5c\xb8\x70\xe1\xc2\x5d\ +\x5c\x5f\xa8\x5d\xb8\x70\xe1\xd7\x01\x2e\xce\xfa\x05\x9a\x6d\x5e\ +\xf0\xc9\xfc\x6a\xac\xf9\x87\x0b\xc1\x47\x70\x01\x27\xe2\x82\x36\ +\x1e\xe1\x7e\xfa\x2f\xff\xf9\xf6\xf2\xfe\xe5\xf6\xfe\x3d\xd8\x8c\ +\xf3\x6a\x58\x7f\x16\x02\x17\xce\xf0\x71\x93\xcf\x17\xd6\x28\xa7\ +\x1e\xbe\x6c\x5d\xe8\x86\x03\xb0\x0f\x4e\x42\xbb\xf9\x01\x51\x1c\ +\x3e\x90\x4a\x0f\x3f\xba\xd2\xaa\x57\x93\x9e\x73\x60\x0b\x22\xe7\ +\x12\x93\x09\x37\x75\xf0\xbb\xa6\x5a\x68\xa8\xcd\x1a\xc8\xe1\xba\ +\xa9\xaf\x3a\x68\xa9\x1d\x5c\x9b\xcb\x74\xd3\x57\xda\x30\x52\x9b\ +\x9a\xde\xa7\x0d\x59\x18\x58\xb0\xeb\xeb\xa6\x75\x2f\x97\x2d\x96\ +\xb9\x5d\xe0\xc7\x82\xf9\x40\xec\x17\xc4\xb3\xb1\x8b\x05\xf7\x16\ +\x1c\xf6\xca\xa3\xc9\xfd\x0b\x23\x96\xe6\xd0\xd3\xd6\x87\x19\x02\ +\x07\x00\x6d\xf9\x25\xe9\x28\xd2\x11\x1d\x3b\x5f\x83\x2a\xd5\x7a\ +\x22\x9c\xe1\xc7\x5c\x30\x9d\x24\xd0\x69\x9a\x63\xd4\xd2\x86\xc1\ +\xb8\xbc\xc1\xef\x10\x35\xba\xae\xf2\x96\xa4\x29\x96\xa0\x8f\x05\ +\x76\x7b\xf4\x63\x3b\xa3\x6d\xb6\x46\x11\xda\xae\x4f\xe3\x50\x68\ +\xc0\xfb\x74\xec\xc7\x6f\x83\xcb\xbc\xa9\x54\x4b\xe2\x76\x20\xf9\ +\x18\x7b\x1d\x77\xaa\xcc\x86\x2c\x7f\x82\xcd\xf6\x3c\x94\x11\xc1\ +\x63\x3c\xef\x48\xa1\xd3\x17\x5d\x73\x6d\xed\xb9\xa5\x66\xb8\x5f\ +\x32\x6f\x2c\x1b\xd2\x9d\xf6\x07\xa1\x3a\xfd\xd8\x18\xc8\x18\x97\ +\x6b\x4c\xfe\xca\x09\x9e\xdb\x26\x33\x77\xc0\x31\x6f\x30\x3e\xc7\ +\x00\xb5\xbf\x92\x52\x17\x6b\xc7\x00\xfa\x70\xe3\xbc\xc5\x3e\x7d\ +\x9f\x03\x27\x0d\x16\x79\x8e\x63\x1c\x77\xbd\x75\xf7\x5c\x7e\x3b\ +\x47\xe2\xb7\xd6\x78\x6e\xa6\x1e\xfc\xc8\xd1\x17\x64\xd0\xe9\x0b\ +\xad\xca\xc3\x97\x5d\x6e\xe6\xda\x17\x6b\xf8\xc2\x8b\x5f\x7a\x45\ +\x9e\xbe\xfc\x52\x2e\xe2\x7d\x6e\x1a\x4f\x9a\xca\xf1\xf8\x55\xa7\ +\x8f\x21\x3d\x6b\xc5\xd8\xfc\x53\x8c\xd4\x49\xaf\x31\xf2\x58\xc2\ +\x38\xd5\xf0\xd4\x83\x8e\x3d\x98\xec\xd5\x40\xb0\x4f\x0d\xfd\xac\ +\xe9\xb8\x39\xf2\x9e\x8b\xe3\x91\x83\xff\x17\xf7\xf2\xe9\xaf\xb7\ +\x2f\x7f\xfd\x73\xc4\x51\x1f\xc7\x07\x62\x5f\x81\xaf\x4c\x9b\xe0\ +\xc3\xf3\x1f\x09\x67\x73\xbe\xb7\x2e\x3d\x66\xdb\x7d\xec\x1b\x9a\ +\xb1\xc0\x19\xe1\xe3\xa7\x4f\xb7\x0f\x2f\xff\xf5\xf6\xc3\xfb\x8f\ +\x71\xe8\xc4\xbe\xe4\xbe\xc3\xe6\xfe\xa2\x97\x42\xfe\x96\x82\x6f\ +\x8c\x22\xec\x46\x15\x6c\x58\x7d\xcc\x06\xc9\x50\x2d\x85\x70\xd5\ +\xd1\x80\x3d\xb5\xd4\x52\x6f\x2b\x4c\xcf\x0b\x87\x91\x35\x31\x5b\ +\xda\xba\x09\x49\x4f\x36\xf4\x66\xc2\xe6\xcb\x8b\x3a\xac\x9f\x1a\ +\x6f\xa8\xe2\x01\xde\xea\xa6\x91\xfe\x5d\xbc\xb4\xd0\x3b\x5f\x2d\ +\x9e\xa9\x1d\x3e\xb7\x0d\xb7\x17\x62\x6e\x88\xc5\xf6\x73\x9c\xbe\ +\x7a\x6c\x57\xae\x0b\x56\x0a\x7e\xd3\xab\x66\xe7\xd4\xa0\xe6\x3e\ +\x61\xcd\xe4\x44\x7b\x80\x78\x6a\x6d\x1c\x53\x1e\x4c\x3c\x60\x20\ +\x57\x73\x4a\x02\x0b\x76\xdc\x85\xd1\xa7\x32\x96\xb9\x53\x51\x97\ +\x06\x7e\x88\x0d\x3f\x9c\x11\x3c\x09\xf1\x43\x2f\x4f\x59\xd0\xc4\ +\x38\xe8\xf9\xfe\x14\xa0\x1f\x35\x86\x4b\x1b\x61\xf4\xa0\xd5\xaa\ +\x02\x09\x6a\x72\x6b\x55\x1c\x86\x16\xe9\x2b\x07\x60\xfd\x6c\x35\ +\x55\x02\xdb\x66\xf8\xce\xf0\xd8\xc4\x10\x9f\x83\x45\x7a\x52\x07\ +\x83\xa7\x4d\x4b\x8c\x1c\x56\xd4\xd0\xb9\xb9\x4b\xd2\x60\xff\x3d\ +\xa0\x3a\x55\xad\x95\x97\x39\x39\xec\xba\x4d\xbf\x2c\xa8\x07\xbb\ +\xa2\xd8\x30\x58\x12\x0d\x0f\xf7\x19\xa6\xc0\x7d\x8e\xad\xf8\x50\ +\x10\xe9\xba\x96\x51\x66\x18\x75\x68\x51\x10\x15\x72\xd3\xf6\x1d\ +\xef\xba\x92\xf4\x51\x4a\x30\xfa\x11\x4c\x74\x32\xfa\x66\x96\xbd\ +\xa0\x4b\x66\x04\xd3\x8e\x53\x22\x57\x8c\x4b\x2c\x2a\x29\x79\x72\ +\x45\x76\x53\x92\x68\x7d\xfd\xd8\xd2\x67\x0c\x66\x2c\x2a\x66\x1b\ +\x0f\xf6\xc9\xc7\xf9\x03\xa7\x90\x3c\x8d\x54\xc3\x62\xf8\x23\x30\ +\x9f\xa3\x22\x2f\xcf\x7d\x7e\xcf\xb0\x8d\x2f\xee\x70\xe9\x84\x46\ +\x1e\x5a\xe4\x65\x9c\xad\xf2\x75\x0e\xe6\x5c\xa2\xa9\x3e\xfa\x38\ +\x1f\x27\x27\xad\x78\xc6\x8a\x47\xf3\x39\x1c\x5c\xe4\xf0\x9a\x0c\ +\x76\xe6\x44\xe3\xf5\x54\xb6\xca\xe7\x3a\xe8\x5c\xc5\xf1\x39\x47\ +\x70\xb0\xe5\xbb\x81\x67\x0b\x2d\x35\xda\xcc\xb5\x1d\x81\xee\x47\ +\x36\xed\x55\x0b\xe0\x3c\xee\x79\x61\x2e\x38\x23\x71\x3c\x59\xec\ +\x5f\x7e\xfc\x70\x7b\xfd\xf4\x87\xdb\x2f\x1f\xfe\xc8\x1f\x4e\xe0\ +\x3d\x0f\x17\xb8\x70\xe1\xc2\x85\x0b\x4f\xe1\xfa\x42\xed\xc2\x85\ +\x0b\xbf\x3e\x7c\x81\xd6\xaf\xf5\xdf\x7a\xd1\x06\xbd\xdb\x19\xd6\ +\x98\xfd\xe5\x33\xc6\x20\x46\x02\xac\x97\x4f\x1f\x6f\xbf\xfc\xe9\ +\xdf\x6e\xbf\xfb\x97\x97\xdb\xfb\xd4\xf8\x06\x89\x6e\xea\xc5\x13\ +\x17\xd2\xb0\x83\xc3\x15\x2d\x2e\x50\xd1\x4b\xcc\x84\x6a\xac\xc0\ +\x58\x72\xec\x49\x36\xae\x9b\x30\x1a\x01\x9b\x7d\xb4\x18\x4e\x36\ +\x26\x21\x8e\x63\xe7\x8d\x00\xc7\xc6\x45\xba\x5b\xce\x55\x57\xfd\ +\x99\x9b\x5c\xf2\xe3\xa6\xa5\xb9\xd0\xd0\x7e\xa5\x3f\x6a\x44\xbd\ +\xfc\x10\x31\xf2\x60\x8f\x66\xce\x7c\xc5\x39\x3f\xf9\xaa\x07\x5f\ +\x53\xaf\x0f\x81\x8c\x47\x17\x8d\xf6\x48\x8b\x05\x9f\xea\x69\xa8\ +\xe7\x07\x85\xc8\x47\x85\xc8\xd0\xa3\x92\xd0\x8d\xda\xde\xef\x19\ +\x0a\x25\x3e\x56\xcc\x28\x1f\xc6\x1a\x2c\xa0\x8e\x72\x25\xc9\x31\ +\x80\x20\x5c\x7f\xe2\x37\xd8\x45\x47\xcd\x86\x28\x28\xbe\x47\x90\ +\xdd\x18\x18\xbd\x60\x93\x2a\x77\x34\x60\x6c\x83\x19\xd8\x5c\xd4\ +\xc5\x02\xfd\x61\x8e\x6b\x82\xd4\x7c\x08\xca\x20\x1b\x0b\xb6\xac\ +\x29\x8c\x8a\x83\x7b\x16\x4b\x46\xba\xe8\xdc\xbe\x07\x7a\xbd\x37\ +\xd5\x0c\xb1\xb7\xdb\x23\xb8\xf6\x51\x8b\xed\x73\xd8\xea\x77\xf4\ +\xc9\x2c\x81\x83\x36\x1c\x7f\xa8\xd7\x1d\xc6\xe4\x17\x28\x6f\x0e\ +\xfa\xa6\xd2\xb3\x50\x8d\x86\x72\xc2\xa8\xa0\xd6\xd1\xa1\x2e\x41\ +\xeb\x5b\x40\x31\x2b\x32\x42\x9d\x5f\xbf\x19\xab\xa4\xf0\xf5\x54\ +\x24\x6d\xa2\x93\x01\x9d\x6a\x20\x88\xb5\x8e\xae\xd6\x15\x3e\x3a\ +\x3c\x68\xa4\xc7\xf3\x19\xdc\xe8\xe3\x44\x55\x5f\xf8\xe7\xb9\xb3\ +\xce\x6d\x3c\xf7\xf9\x1c\x19\x1c\x7f\xbd\x24\xec\x3c\x7f\x8a\x8b\ +\xe6\x78\xf6\xb2\x35\x8e\x7d\xc7\xa9\x41\x0e\x7f\xa0\x01\xfe\x6b\ +\x0c\x95\x5f\x34\x95\x3e\x63\x1e\x8b\xe3\x75\x4d\xcc\x03\xf9\x98\ +\x27\xf5\x8a\xb9\x79\x4e\xd5\xda\x1c\x39\x36\xf9\x38\x8a\xb8\xd2\ +\x6a\xe3\x7c\xdb\xec\xb5\x61\x6b\x46\xcf\x3d\x16\x3d\x18\x2e\x60\ +\xb3\x8f\xba\xce\xc7\x3c\xc9\x43\x1b\xe3\xb2\x07\xaf\xf7\x5e\x64\ +\x63\x3f\xfd\xf0\xf2\x72\x7b\x79\xfd\xe5\xf6\xf3\x9f\xfe\x95\xb1\ +\xe3\x4f\x58\x03\x21\x7c\x84\x27\x24\x17\x02\x7d\x3b\x61\x5b\xaf\ +\xdb\x1b\xfb\xa8\x10\x76\xec\x24\xfc\xd4\xff\x5f\x7e\xfe\xbf\x6e\ +\xef\x5e\x7e\x89\x97\x6b\xc6\x23\x8f\xc7\x69\xe8\x75\xa3\xd2\xb6\ +\x86\xd0\x1e\xce\x72\x4c\xc9\xc0\x02\x51\x3c\x1a\xa2\xcf\xf7\x63\ +\x2e\xf0\xf4\xfb\xb3\x6a\x25\x99\x76\x00\xb6\x5b\x7f\x04\x51\x7d\ +\x35\x1d\x83\x8e\x61\x7e\xbe\x79\x3a\xe6\x0f\x0d\xbe\x28\x43\x93\ +\x4a\xeb\x83\x98\xb5\xc1\xc5\xd0\xbc\xd1\x19\x31\xdf\xe8\x94\x1e\ +\x3a\xcd\x87\x5c\xc4\x34\x66\xac\x47\xf6\xac\x47\x1b\x1a\xe4\x67\ +\xe3\xd8\xd1\x73\xb5\x86\x16\x0d\x0b\xc4\xb0\xd0\x6f\xac\x51\x11\ +\x5a\xd5\x45\x52\xa4\xcb\x8e\xa6\x2f\x38\xa1\x85\xeb\x6d\xaa\x1c\ +\x3c\xb8\x9d\xd1\x91\x8f\x86\x1e\xcb\xd0\xf2\x7c\x9c\x75\xc4\xa2\ +\xa7\xa9\x8e\x75\x16\xb8\x58\xee\x2f\x1f\x52\xb0\xb3\x4c\x70\x19\ +\x8b\xe3\x87\xfb\x3a\x79\x0c\x29\x24\x17\xf0\x18\xde\xff\x46\x49\ +\x09\x8b\xa1\x57\x5d\xda\x54\xa1\x96\xe2\xea\x8a\xa5\x4d\x3d\x6d\ +\x78\x6a\x58\xc8\x76\x24\x01\x7e\x4c\xb2\x81\x59\xec\xfd\x90\x9b\ +\x85\x60\xd6\x72\x6d\x89\x66\x12\x93\x2c\x16\x19\xcf\xee\x04\x95\ +\xb0\xb4\xfb\x78\xac\xb8\x83\x9e\x9c\xc3\x71\x3b\xbb\x97\x19\x2d\ +\xc9\x6a\x27\xc0\xf6\xcd\xfd\x87\x02\xdb\x63\x0c\x0c\xc9\x3c\x26\ +\xc6\xa2\x3a\xa0\x6d\xb6\x9c\xcb\x52\x2b\x1c\x9d\xc2\xb0\x4f\x15\ +\xa1\x8e\xfb\x38\xfd\x5c\xc8\x0b\xbe\x11\xe2\xa2\x2f\xce\xf5\x91\ +\xaf\xc6\x73\xa4\x85\xc0\x64\x0f\x07\x96\x47\x6d\x74\xa0\x6b\xa0\ +\xa0\x61\x2b\x10\x8e\x9e\x73\x5e\xb3\x19\xab\x86\x6d\x1a\xd9\x8b\ +\x16\xb9\x8a\xa5\xcd\xf3\x05\xb8\xec\x1b\x8f\xf3\x90\xec\xa1\x07\ +\xe7\x66\xbf\xfa\x3a\x07\x41\xef\x73\x64\xcf\x49\x2e\x6a\xeb\xff\ +\x6f\xca\x1e\x7d\xda\xd4\x24\x87\x3c\x9c\xff\xcc\x67\x4c\xf5\x31\ +\xb6\x6d\x9d\xbf\x47\xbd\xe4\xd1\xdb\x47\xef\x79\x84\x90\xd7\x24\ +\x95\xef\x86\xf5\x40\x3f\xde\x17\xa4\xc9\xb1\x72\x3b\x79\x5b\xc6\ +\x70\x3a\x7f\xc3\x67\x9f\x1a\xb7\xe2\x5b\x6b\x3e\x61\x3e\x16\x8e\ +\x63\x3d\xb4\x8d\x50\x3f\x05\x8c\xc4\x3e\x8d\x63\xed\xe5\xe5\xfd\ +\xed\xaf\xaf\xff\x76\xfb\xe9\xa7\x3f\xe8\x86\x30\x0f\xf0\x71\xb4\ +\x48\x7b\xe1\xc2\x85\x0b\x17\xee\xe1\xfa\x42\xed\xc2\x85\x0b\xbf\ +\x3e\xfa\xf5\x59\xb7\xdf\x8a\x47\xb9\x88\xf7\xeb\xbf\xd5\x37\x1a\ +\xcf\x92\xb1\xe0\x5f\x99\xfa\xf0\xd7\xdb\xef\x5e\xfe\x7a\xfb\x21\ +\x2e\x32\x01\xde\x74\x0c\xa1\x6f\x96\xf0\x12\x17\x17\xab\x71\x81\ +\x8a\x06\x5b\x37\x54\x65\x4f\x8d\x79\x5c\xda\x4d\x3e\x11\xb6\xbc\ +\xcc\x87\x67\x4d\x36\x2a\xca\xc7\x15\x31\x5a\xc6\x3a\x87\xbe\xe2\ +\xfb\xc6\xf9\x33\x57\xbd\x9a\xf8\xbc\xfa\x8f\xc1\x53\x47\xce\x7c\ +\x8e\x07\x2d\xfe\xff\x0e\xfc\xcf\xea\xeb\xa6\x2a\x74\xd9\xf8\xe7\ +\xc0\x98\x17\xf9\x8e\x4f\x2d\x57\x95\x0d\xeb\x21\x1b\x0b\xf5\xd1\ +\x8c\x35\x06\xf0\xc3\x9d\xf3\xb0\x88\x0f\x5f\xf0\x29\x46\x0c\x1a\ +\x3c\xc1\x2b\x45\x90\x5f\x37\x38\xa2\xe7\x67\x87\xd4\x30\x46\x43\ +\x2d\xe9\x84\xbc\x0c\x15\x50\x29\xab\x25\x22\x1a\x45\xc1\xcd\xf9\ +\x47\xac\xb5\x0a\x1b\x52\xd4\x2e\x90\xeb\x6b\xc0\x76\x6b\x66\x9f\ +\xe7\xbd\xb9\x91\x77\x12\x10\x3d\x4d\x27\xc3\x71\x01\x6b\x0a\x16\ +\x01\x87\xe0\x01\x52\x70\xaf\x4d\xa0\xdf\x4b\x19\xdc\x59\xc0\xda\ +\xcf\x00\xbb\x8f\x7c\x3d\xde\x5c\x33\xc4\x75\x3c\x3d\x81\xb7\xd6\ +\x9f\xf5\xbb\x8d\x35\x50\xda\x76\xb0\x97\xcf\xd7\x82\xbf\x8c\x9e\ +\x31\xed\x19\x0e\x31\xc6\x41\xa4\xa2\x41\x0f\x65\x6a\x4a\x10\xaf\ +\xb9\x96\xa7\x78\xf7\x67\xdc\xdb\x66\x7a\xdd\x8e\x68\x0d\xd1\xfa\ +\x89\x04\xd2\x66\xd7\x79\x83\x27\x08\x05\x34\xb6\xd6\xba\x68\x18\ +\x3c\x8d\x05\xcf\x26\x9e\xe7\x9d\x38\xc7\xf1\x14\x17\x8d\xe7\x3b\ +\x20\xcf\x7d\xd4\xf2\x1c\x88\xa6\xf3\x2d\x6f\xc4\xc4\x69\x93\x1c\ +\xbf\xc4\x82\x06\xe7\x54\x9c\x67\xa1\x89\x1e\x76\xb4\xf1\x5b\x66\ +\xaa\xe7\x38\xcf\xcb\xa8\x87\xde\x1a\xfe\x36\x5c\xc6\xe1\x47\xc3\ +\x6f\x93\xf1\xb7\xde\x1a\xef\x18\xb5\x5f\xf0\xa7\x1e\x67\xae\xb7\ +\xfa\xff\x6e\xc5\xe9\xb7\xd7\xd8\x38\x36\xd6\x2b\xe7\xc6\x39\xd9\ +\xc7\xfa\x71\x4b\xb8\x13\xe0\x44\x9c\x5c\xda\x6c\x70\xb2\x67\x94\ +\x3c\x3a\xdb\xc1\xb2\x61\xce\xf0\x73\xce\x61\x02\xf8\x7d\x96\xd7\ +\x8f\x3f\xdd\x5e\x7e\xfe\x73\x4c\xed\x13\x53\x7c\x7c\xd5\xe9\x82\ +\x7e\x39\x7b\xdc\x3f\x2c\xff\x7d\xe0\xc1\x26\xb8\x0b\xe4\x3e\xca\ +\xd7\xc6\x27\x6c\xe1\x06\xe6\x1f\xff\xfa\xdf\x6f\x3f\xfe\xf8\x97\ +\xdb\xcb\xfb\x0f\xb1\xbf\xf4\x1b\x48\xd8\xd8\x90\xeb\x37\xa1\x94\ +\xaa\xc3\x2a\x5e\x27\xc8\x46\x01\x07\x80\xd6\xb9\xf9\x50\xcb\x50\ +\x4a\x71\xbe\xe9\x90\xe7\x52\x79\x94\x85\x2d\xab\x1e\xe1\xb3\x9e\ +\x79\xf4\xe6\xe2\x81\x39\x99\xf3\xb1\xa8\x78\xfa\xf8\x1f\x69\xf0\ +\xc0\xa5\x86\x7d\xcb\xc3\x57\x69\xec\xa3\xa8\x6f\x02\xeb\xb7\xf2\ +\xdc\x72\xfd\xc3\x50\x0e\xe6\x93\x5f\x80\xf1\x46\x30\xb6\xa7\x38\ +\x9e\x3b\xa8\x51\x3c\x86\x49\x1f\x7d\x34\xfc\xff\xb3\xe8\x63\x48\ +\x84\x92\x87\x16\xbd\xf2\xd0\x23\xc0\x31\x31\xfb\x2f\x2f\x31\x2f\ +\xf1\x7a\x28\x91\xf3\x61\x5c\x35\xc0\xa1\x61\x7f\x85\x91\x3a\xf1\ +\x19\x22\x68\xd3\xa0\x3b\x02\x01\x58\x8a\x89\xc3\x6f\xa4\xc9\x47\ +\xcb\xa8\x42\xa2\xbc\x0c\x5d\x7f\x99\x92\x0d\x3d\xaf\x43\x69\xb3\ +\x1b\x28\xbd\xe6\xc6\x04\x20\x6d\x76\x71\xa2\xe0\x71\xe8\x6f\xe3\ +\x83\x74\x8e\x81\xf1\xf9\x48\x8a\x79\x32\xdb\x79\x46\x40\xae\xdf\ +\x6a\x15\x5a\x04\x00\xe3\xa8\x28\x5b\x7a\xf9\x39\x12\x22\x03\xdd\ +\x95\x48\xb0\xdd\xe3\xdf\x05\x59\x14\x2b\x9c\x1b\x8e\x73\xc2\x1c\ +\xa3\x71\x6f\x71\xbe\x88\x7d\x1f\xa0\x12\xb7\xbb\x86\x23\xd8\x95\ +\x6f\xa3\x88\x01\x1c\x7f\x0b\x47\x6f\x91\x11\xc1\x81\xee\xd7\x25\ +\x93\xec\x90\x93\x09\x09\x99\x49\x2c\xbc\xb7\x08\xe9\x8a\xe5\xb1\ +\x0d\x84\x01\x5b\x23\xe7\x9c\xf9\x94\x82\x4b\xae\x4b\xda\x85\x1e\ +\xa7\x19\x18\x5b\x9f\x19\x3d\xc8\x7d\x83\xde\x4c\xf2\x81\x61\x0d\ +\x98\xe3\xae\xce\xa4\x55\xa7\xbd\x8e\x91\xda\xbc\xd9\x8d\x79\x14\ +\xc7\xf3\x53\xda\x19\x2c\x7f\x8a\xc9\xc6\x79\x8d\xe7\x2a\x37\x06\ +\xd1\xc7\x98\xa9\x61\xcf\x38\xce\x49\xca\xe1\xb9\x91\x31\xc5\x7d\ +\xfe\x64\xa3\x0d\x5d\xe7\x90\xa3\x5c\xd6\x49\xfd\x6c\xe3\x0b\x32\ +\xf8\x3a\x87\xcf\x35\xfb\x38\x71\xd6\x24\x67\x7f\x6e\xfc\x41\x26\ +\xe8\x73\xac\x30\x33\x1f\x1b\x03\xeb\xd5\xfa\xda\x70\xa1\xa1\x2e\ +\xce\xd5\xb1\x9d\x61\x83\x96\xcf\xb0\x9a\xa4\x44\xe7\xac\x01\xb4\ +\xdd\xe6\x71\x31\xaf\xfa\x3f\xa5\xe4\x63\xf9\x43\x8c\xf4\xf2\xa7\ +\xdb\x1f\x3f\xfe\xd7\x18\x11\x7f\x80\xf2\xc2\x85\x0b\x17\x2e\xbc\ +\x15\xd7\x17\x6a\x17\x2e\x5c\xf8\x6d\x81\x2b\xb9\x6f\x45\x5e\xd3\ +\x13\xe8\xbb\x6d\x98\x5f\xaf\x10\x71\x11\x49\x7e\x0e\xe0\x9f\x12\ +\xff\xeb\xff\xf9\xbf\xdf\x3e\x7d\xf8\x78\x7b\xff\x92\xc9\xd4\xea\ +\xc2\x34\xae\x46\xe3\x89\x8b\x68\x5c\x90\xfa\xa2\x14\xb1\xb4\xab\ +\xa9\x1e\xc7\xe0\x42\x35\xd4\xa3\xb3\x2f\xc8\x34\xa7\xc6\xf1\xaa\ +\x59\x94\x7e\xf6\xbc\x89\xc0\xb9\xa0\x07\x87\x2b\x77\xc5\x94\x0f\ +\x5f\x9c\x34\xf2\x75\x93\x14\x5f\x88\xe9\x26\x29\xfe\x6c\xd6\xe0\ +\x65\xdb\x27\x87\x0f\x06\x79\xa3\x97\xb5\xa8\x51\x8f\x0f\x0a\x23\ +\x47\xe3\x78\x3e\xa4\xf2\x06\xb2\x78\x9a\xc3\x87\x06\x3e\xe7\xae\ +\xd5\xe2\xaa\x45\x87\xe5\xa0\x40\x62\x5f\x45\xe3\x07\x10\xe5\x69\ +\x48\x70\xa9\xca\x18\x80\x9c\xa4\xd9\x57\x03\x41\x52\xfb\x1e\x1e\ +\x7b\x1b\x89\xc5\x0d\xf4\x63\x65\x8e\x76\xaf\x7f\x48\xef\x58\xeb\ +\xc1\xdf\x29\xd7\x79\x00\x83\x9a\x33\xb8\x1d\x1c\xdd\xe4\x75\x20\ +\x6c\xc9\xa9\x74\x17\xf0\x90\x6b\x81\x68\x47\x79\x67\x96\xb5\x9b\ +\xc4\x35\xeb\x40\xe8\xb2\x96\x1b\x40\x7b\xe5\xb9\x78\x1e\x3d\xb7\ +\xb7\x6f\xc1\x9b\xeb\x84\x70\xd6\xdf\xcf\x9c\xb5\xbb\x23\x64\xc6\ +\xac\xbf\x0f\xdd\x10\x91\xc5\xd7\x51\x58\x58\x9a\x1d\xc0\xfe\xc1\ +\x6b\x49\xd6\x21\x3c\x41\x3a\x60\x95\xe1\xf4\xaa\xd7\x27\x9e\x5a\ +\x97\x63\xa9\xc1\xaf\xb1\x43\x3d\x2c\x26\x32\xb3\xe2\xa9\x2a\x03\ +\x9a\xd3\x24\x0e\xc4\xda\x50\x8e\x45\x8b\x91\x1b\x06\x43\x5a\xf0\ +\xe9\xde\x3c\x1f\xe8\xed\xc3\x40\x8b\xf3\x11\xf5\x38\x9f\xf1\xb7\ +\xd1\xc0\x89\xd7\xb9\x52\x5f\x50\xe9\x9c\x09\x5d\xda\xa8\x11\xbd\ +\xce\x87\x11\xc0\xf9\x94\x2d\x4e\x9e\xf8\x62\x0b\x27\xd1\xe4\xf5\ +\xdb\x66\xa3\x16\xcf\xc9\xa5\x8f\x66\x1d\xeb\x99\x47\x9d\x9c\x8b\ +\x4f\xca\xd4\x8c\x3a\xea\x47\x63\x5e\xd5\x4e\x1f\x3a\xce\x15\x7d\ +\xda\x5c\x39\xad\x43\x2c\xe6\x96\x1c\xb7\x8f\xfb\x68\xf2\x23\xaf\ +\xeb\x38\xaf\xb4\x1d\x4b\x9e\x63\x71\xdb\xb4\x1a\x98\x43\x3c\x70\ +\x23\xfa\x7d\xc4\x3f\xff\xf5\x4f\xb7\x4f\x1f\xff\x1a\xc7\x5c\x3b\ +\x12\xc2\x1c\x47\xd7\x05\xe2\x6b\x37\xc5\xfa\x02\xdb\x01\xdb\xbe\ +\xeb\x62\x2c\xec\xc9\xdf\xff\xeb\x7f\xba\xfd\x87\xff\x78\xbb\xfd\ +\xf8\x7e\xc4\x31\x0d\x1c\x8e\x3c\xac\x62\x7f\xe6\xe1\xa5\x00\xe7\ +\x38\xce\x4a\xd4\x66\xbf\x07\xb4\x11\x8d\xda\x3d\x07\x1c\xfd\x24\ +\xed\xf3\x10\xa2\x2f\xce\x4b\x04\x74\x54\xa9\x47\xe3\xb1\xc6\x04\ +\x73\xb1\x4c\x8e\x37\x23\x61\xf3\x81\x9b\xaf\x98\xe7\x88\x59\x27\ +\x1f\xeb\x89\xff\x95\x86\x94\xbc\x51\x5b\x5a\x96\xe1\x4a\xa2\x27\ +\x47\x5b\x75\x40\x2a\xdf\x71\xdb\xb1\xde\x30\xa2\xce\x6b\xd8\xfa\ +\x8d\xb3\xf0\x22\x37\x5e\xc5\xb2\x11\x0d\xdf\xdb\x18\x35\x41\xa2\ +\x43\x8f\xf4\xd7\x2f\x2f\x11\x43\x6e\xe6\x04\x89\x1c\x5d\x4f\x69\ +\xbb\x38\x8f\x0b\x3c\xd9\xe1\x01\x4a\x3b\x55\x36\x96\xe0\xa3\x00\ +\x5e\x9c\x24\x41\x49\xeb\x46\x40\x1b\x9a\xfe\x65\x1a\x2a\xf5\x77\ +\xa4\xd2\x1a\x20\x92\x44\x87\x21\x94\x13\x2d\xf9\x12\x24\xf4\x1e\ +\xd4\x6e\x75\xcc\x61\xf9\xfa\x46\x0b\xe2\x1a\x3d\x57\x45\x9e\xa8\ +\x42\x86\x08\xae\xbd\x89\x68\xc8\xeb\x6b\x3b\x3d\x4c\x1b\x69\xaf\ +\x34\x61\xd2\x81\xad\xe8\x3e\x7a\x89\x4a\x8f\x85\xe6\x98\x3d\x8d\ +\x5d\xc3\x42\xe8\xf3\xae\xf5\x75\x1f\xed\xac\x86\xcd\x67\x31\x69\ +\x97\x1a\x7d\x0e\xc2\x4a\xd4\x91\x10\x4f\xb4\xf4\x9a\xad\x22\x09\ +\x06\x93\x5f\x91\x64\x4a\xb4\x8c\x27\x46\xf0\x28\x03\xdc\x22\x41\ +\x46\x5f\x09\x32\x86\x6e\xce\xea\x3c\x55\x83\x48\x2c\x1c\x6d\x11\ +\x43\x9f\x35\x63\x9d\xe0\x2a\x0a\xe4\xb8\x58\x57\x1e\xd7\x02\xd8\ +\x8c\xd0\x93\x19\x0c\x7a\xb8\xe9\x0b\x22\xca\x83\x6b\x0f\x5d\xbe\ +\xe6\x25\x43\x0d\x44\xf5\xc8\xa7\x72\xcc\xe3\x1c\x54\xfa\x68\x3c\ +\xc7\xe4\x39\x09\x81\xe0\x70\x2e\x42\x53\x9e\x1a\x16\xd2\x67\x0b\ +\x47\x9a\xce\x67\x7d\x37\x68\xc0\x45\x9c\x5f\x6e\xa1\x67\x1e\x78\ +\x7c\x86\x87\x2f\x2d\xf3\x2a\x96\x3e\xb9\x38\x3b\xdb\x46\x0d\xd6\ +\x93\x2e\x2f\x9f\x8a\xaf\x1f\x8e\xc8\x9e\x5a\xf4\x1c\xc3\xef\x17\ +\x39\xd7\xb4\x71\xee\xcf\x27\x1b\xed\xf4\x8b\xc7\x79\x31\x8c\x48\ +\x93\x1f\x0d\x35\xc1\x01\xd4\x33\xa0\xe3\x8e\xb4\x63\x6e\x21\xb0\ +\x8e\xf3\xd7\xca\x69\x7c\x5e\x2b\x21\x10\xef\x1d\xef\x3e\xdc\x7e\ +\xff\xfb\xff\x23\x7c\x8d\xc6\xdf\xd8\xbd\x70\xe1\xc2\x85\x0b\x4f\ +\xe3\xfa\x42\xed\xc2\x85\x0b\x7f\x3f\xc8\xeb\xf4\x53\xf8\x3a\x0f\ +\xbd\xb5\x3d\x67\x97\x0f\x6d\xbf\x3e\xf4\x4d\x37\x5e\x8d\x0e\x7c\ +\xfa\xfc\xee\xf6\xf3\x1f\xfe\xc7\xed\xfd\x97\x8f\xb7\xf7\xb8\xa8\ +\x64\x1e\x2e\x48\x71\x81\x8c\x0b\xf1\x20\x70\x81\xac\xab\xe9\xe0\ +\x79\x85\xac\x64\xf4\xbe\xda\x35\x87\x41\x61\x4e\xb4\xea\x89\x44\ +\x97\x01\xd8\x00\x6b\xc4\x14\x4b\x33\x37\xe6\x62\x7c\x5f\xed\xd3\ +\x47\x0c\xf3\x52\x4f\x9e\x4d\x5a\xcf\x97\xf9\xee\x69\x2b\x97\x37\ +\x27\xc9\xab\x06\x79\x7e\x79\xa6\x3c\xaf\x67\x8d\x5d\x4d\x7e\xfd\ +\x46\x5a\xfa\xac\x09\xad\x73\xd8\xb4\x6e\xde\xa6\xba\x6e\xcf\x18\ +\x4d\x68\xd5\xc3\x20\xcd\x50\xf2\x30\x23\x87\xf3\xa3\x84\x0b\xc5\ +\x11\xf3\x87\x4b\x2e\x11\xa3\xe9\x8e\x10\x3f\x0e\x10\xc6\xb0\xe8\ +\xa2\xc2\x96\x4c\x7a\x7f\x90\x79\x26\xbc\x25\x13\x92\xae\xda\x7d\ +\x3e\x59\x29\xae\xce\x0e\xc1\xbb\x72\xad\xe7\xa4\x0d\x27\xe8\x4e\ +\xc1\x9e\x24\x2b\x36\xc1\xad\x1e\x24\x6b\x2b\x8a\xa5\x1b\xe0\x7e\ +\xc6\x9e\x35\xb0\x7d\x06\x42\xdb\xdd\x3b\xa8\x71\xf9\x01\x32\xdb\ +\x57\xc0\x75\x58\xeb\x1b\xf0\x74\x9d\x14\x48\xfb\xdc\x9c\x47\xdd\ +\x37\xe8\x2d\x1d\xc9\x03\xe5\xe3\x06\x4e\x0a\x23\x81\x9b\x91\x0e\ +\x7e\x92\x1f\xb1\x49\x4a\xcc\xa5\xe6\xf9\x38\x77\xe6\x65\xd7\xeb\ +\xd6\xc8\x09\x56\x8e\x83\x6d\x3f\x96\x3e\x29\xf8\x25\xc3\x82\x7c\ +\xa9\x0a\x47\xc6\x5c\x2c\x69\xf8\x08\x16\xca\xb6\x91\x2f\x3e\x2c\ +\x75\x2e\x42\x23\x95\x9a\x58\x24\xa7\x73\x8f\x7a\x6a\x70\x4e\xca\ +\x73\x13\xcf\x81\x94\xc3\x6e\xe7\x53\x36\x68\x71\x7e\xf4\x39\x39\ +\x38\x9e\x73\xc5\x91\xc7\x6f\x95\xd5\x79\x58\x3d\xce\xc5\x3e\x3f\ +\xe3\x6e\x4e\x7d\xe1\xc5\x38\x1a\xb8\xd4\x64\xde\x67\x6a\x52\xcb\ +\xf9\x2a\xdf\x5f\x98\xb9\xbe\xeb\xa8\x05\x87\xf1\xd1\xc2\x67\x1c\ +\x63\x73\x7c\xf0\xf0\xb5\x2e\xe3\xb7\x90\x55\x5e\x86\xd6\x9b\x0f\ +\x72\x70\x49\xca\x21\x14\xe7\x93\xf3\x6a\x31\xe4\x92\x4b\xdf\x08\ +\xae\xff\x20\x4b\xe5\x40\x1a\xeb\xf2\x0e\xed\xd3\x5f\x6f\x9f\x7f\ +\xf9\xeb\x74\x14\x5e\xd8\xe0\x5b\x36\x10\x72\xdd\xb6\xe8\xfb\x2e\ +\x8c\xd8\x55\xef\x5e\x5e\x6f\xff\xf5\x7f\xfc\x6f\xb7\x97\x1f\x74\ +\x4c\xe8\x0b\xcf\xfc\x1f\x57\x90\x43\xc6\x43\x4f\xfb\x5e\x8f\x51\ +\x86\xb6\x9d\x44\x8f\x1b\x7c\xcf\x25\x19\x0b\xd6\x91\x49\x77\x98\ +\xb3\x1f\xba\x3a\x8c\x91\x93\xad\xe6\x42\x3b\xbf\xfc\x6a\x5c\x78\ +\xe4\xd5\xbf\x66\xc3\xea\x5a\x93\xb1\x18\x03\x3c\x5e\x32\xaf\xb1\ +\x92\xba\x99\x8b\x2f\xbf\xa4\x55\xdd\x31\xf6\x18\x0b\x9c\xe7\x15\ +\x7d\x5c\x97\xe2\xa5\x87\xed\x04\x5f\x2d\xd6\x37\x04\x1c\x03\x7c\ +\xae\x0f\xae\x1b\xf9\xdb\x0c\x24\xc4\x95\x9e\x3d\x5e\x43\x18\x5f\ +\x31\xe6\x56\x5d\x2e\x22\x92\x3e\x27\x00\x3d\xd6\x59\xef\x0e\x93\ +\x8e\x1d\xf6\xa7\xe6\x4f\x9f\xd9\xea\x41\x11\x65\x08\xf0\x78\x7d\ +\x8b\xd4\xcf\xf8\x8d\xc5\xe4\x62\x89\x07\x3c\x73\x82\x2c\xe4\x58\ +\x33\x62\x89\x89\xf0\x01\xba\x56\x00\xe6\x4c\x56\xa2\x3c\x16\x5c\ +\x17\x8c\x80\x6d\x15\xf6\x52\x26\x57\xb1\xde\xae\x70\xf3\x44\xd7\ +\xb3\x43\x9a\x8a\x32\xd3\x12\xa8\x53\x5c\xcb\x0d\x1c\xd8\x06\x9f\ +\xc3\x54\xa2\x39\x9e\x2b\x3a\x00\xbe\xd6\xf8\x08\x49\xc7\x1e\x31\ +\xc4\x0b\xc7\xfe\xa8\xad\x31\xb3\x9f\xda\x57\x80\xa9\xb1\x70\x2b\ +\xe2\x50\x14\x6b\x65\x2e\xd7\x30\x4c\x2b\x26\x65\x16\x63\x99\x1e\ +\x81\x99\xae\xd9\x46\x55\x3f\xc8\x16\xe1\x33\xc6\x45\x7f\x88\xc9\ +\x66\x17\xad\x66\x8a\x39\x20\xd0\x91\x04\x3b\x8a\x60\x24\x6c\x47\ +\x81\xfa\x7c\xd1\xe3\x01\x1e\xc7\xd1\x48\x63\xb1\xc6\xb3\x9f\xd0\ +\x75\x98\x53\xda\xe8\x39\x47\xf4\xf0\x45\x0b\x8c\x65\xa3\x23\x9b\ +\x2f\x96\x38\xbf\xe0\x7c\x33\x69\x5a\xeb\xe7\xd7\xde\xe3\xdc\x94\ +\xa7\x20\x72\xf1\xcc\x66\x1b\xba\xce\x89\xd7\x79\xd2\xe7\xcc\x38\ +\x17\xe2\x3c\x49\x5b\xf5\x78\x0e\x46\x0b\x7b\x68\x22\x07\x3a\xd4\ +\x28\x7b\x3e\x67\xaf\xbf\x55\xac\xf1\x51\x50\xbc\xf3\x35\x77\xf5\ +\x08\xa7\xa4\x7c\xd8\x3c\x1f\x63\x93\xd0\x56\x23\x52\xc3\x46\x17\ +\xe7\x22\xf4\xc9\x07\x17\xd3\x63\x8f\x65\xf7\xa9\xc9\x1e\x1c\xd0\ +\x73\x39\xff\xe0\xf0\xde\x03\x02\x8f\x97\xd8\x3d\x9f\x3e\xbd\xdc\ +\x3e\xff\xf0\xcb\xed\xe7\x7f\xfb\xc3\xed\xe3\xeb\x9f\x90\x45\x3d\ +\x7a\x35\xc0\xfd\x85\x0b\x17\x2e\x5c\xd8\xe1\xfa\x42\xed\xc2\x85\ +\x0b\x7f\x1f\xf0\x27\x8b\xb7\x02\x39\xc8\x7d\x02\x94\xf1\x6a\xb1\ +\x0f\xa4\x64\xfc\xa4\xfb\x97\x7f\xfb\xd7\xdb\x7b\xfc\xb5\x47\x50\ +\x9c\x4f\x5c\x5c\xc6\x45\x35\x6f\xe4\xe5\x55\x39\x2e\x9c\x55\x02\ +\xbd\x1a\xc0\x5e\x01\xf5\x34\xb3\x4f\x4e\xda\x99\x13\x46\x8c\x0f\ +\x9a\xe8\x63\x4c\xcc\x0b\x44\x34\x7d\xf8\x53\x8c\x8d\x73\xf1\x9c\ +\xd4\x4b\xef\x96\x3e\xe7\x9d\x9c\xd7\xc1\x5c\x34\x7e\xb2\xf0\x5d\ +\x9b\xe8\x91\x47\x1e\xf5\xd8\x32\x16\xf9\x6a\xa8\xab\x18\xc7\x24\ +\x6d\x6d\xc6\x4a\x13\xf3\x85\x2e\x6c\xb5\x11\xc2\xba\xb0\xaf\x75\ +\x1e\x8d\x9a\xf8\xb0\x33\xb8\x91\xeb\x0f\x89\xb4\xd9\x23\x20\xfb\ +\x16\x39\xfc\x30\x5b\x70\x6d\x71\xfe\x30\x53\x7a\x80\x71\x35\xd1\ +\x3d\x3f\x00\x5e\x81\x23\x38\x36\xf4\x73\x8e\xc6\x54\xcb\xa1\x89\ +\x7d\x99\x65\xbc\x84\xb5\x8a\xe6\x3a\xb3\x8d\x2a\xba\x01\x64\xfb\ +\xfb\x60\x8c\x13\x8d\x8b\xdc\x66\x1b\x58\x67\xe8\x46\xcc\xcc\x19\ +\xe2\x32\x82\x6e\xb7\xda\xb8\x3b\xb0\x4b\x4e\x2d\x42\x6e\xdf\x8a\ +\x5e\xeb\x5b\xea\x3d\xcc\x6f\xc1\xb7\x8c\xf5\x16\x2d\x70\xaa\x5d\ +\xb6\x73\xe9\xd2\xe0\xeb\x27\x9c\x21\x83\xdf\x3d\xd8\xa7\xd5\x51\ +\x80\xe1\xa1\x50\x6e\x1f\x96\xb1\xb5\x84\xfd\x1d\x9f\x5c\xdd\x2c\ +\x0a\xf4\xd7\xd4\x0a\x53\x15\xea\x06\x6d\xcd\xc6\xaf\x95\x35\x01\ +\x9d\x63\xb4\xf9\xc8\x70\xf2\x5a\x4f\x9c\x4f\xd0\xc3\xb4\x3d\x78\ +\x9d\x83\xd5\xea\x66\x5d\x72\x88\xfb\xe6\x8b\x9b\xce\xa1\x79\x1e\ +\xe6\xf9\x39\xc6\x49\x5e\x5f\x8a\x45\x8f\x73\x32\xcf\xd1\xb0\x17\ +\xbd\xeb\xa7\x66\x7c\xf1\x85\x38\x6a\x45\xcf\x3a\x9f\x94\xc7\xfc\ +\xd7\x98\x1b\xf8\xb0\xe1\x7f\x42\xff\x1a\x79\xa1\x63\x8f\x1a\x69\ +\x33\x1f\xb5\xa2\x58\x9e\xfb\x31\xa6\xd7\xcd\x3e\x1e\x04\x38\x6d\ +\x1c\xf9\x40\xd8\x3c\x2b\xc4\xd3\xfb\x93\x47\x94\xb5\x6e\xae\x03\ +\xbe\x6c\x8c\x89\xf5\x44\x0f\x3a\x16\x61\xa0\xce\xcb\xbb\x77\xb7\ +\x1f\xa2\x7d\xfe\xf0\xf3\xed\x53\x34\xa2\x1f\x74\x85\x2d\xf9\xcf\ +\x85\xdf\x72\x13\x70\xe7\xbe\xbb\x7d\x8c\x7d\xf5\xf3\x4f\xff\xf5\ +\xf6\xc3\x8f\xef\xf8\xe5\xda\x3b\x7d\x0d\xc1\x43\x9b\x7b\x31\xe2\ +\xf5\x85\x51\x10\xd1\x81\x45\x00\x4f\x35\x3e\xc8\xb2\x69\xa1\x18\ +\x6c\xf6\x49\xea\xbd\x5d\x2b\xca\x70\x98\x19\xc9\x5a\x69\xf3\x21\ +\x1f\x7c\xfd\x79\x2d\xfa\xbe\x19\xea\x1c\xdb\x8d\xcb\xe3\x11\x31\ +\xfe\xb9\xc0\x1e\x07\xc7\x75\x44\x0c\x5f\x92\x59\xa7\xf5\x93\x7d\ +\x6c\xf1\xcc\x97\xd7\xf0\xb9\x9d\xaa\x61\x1c\xdb\xd6\xa0\x9a\x7c\ +\x18\xe8\xf8\x52\xcd\x3a\xf4\x11\x8f\x05\xc7\xf1\x7a\xa6\x1e\x73\ +\x87\x88\x3e\x75\xa8\x1b\xe3\x64\x3e\x66\xce\x8d\x18\x3c\x38\xf6\ +\x7c\x30\x5d\x76\xd6\x52\x09\x56\x57\x30\xc0\x73\x44\x20\x5d\x46\ +\xf1\x15\x1a\x4a\xbe\xc3\xb5\x5d\x00\x35\xb0\xd7\x28\xcd\x56\xe7\ +\x7c\xfc\x1d\x76\xa0\xea\x60\xbe\xca\xb3\xb8\xae\xe7\x72\xc9\x1e\ +\x4f\xf0\x99\xb7\x02\xf4\x14\xda\xd9\x9b\x54\x52\xb1\xe0\x0c\xa2\ +\x87\x8f\xf9\xe3\x91\x51\x21\x63\x85\x74\x16\xd5\x20\x5a\xa0\x99\ +\x5b\x74\x79\xdf\x66\xb5\x4e\xbd\x35\x2c\x6e\x4a\xf6\x8f\x51\x60\ +\xde\xd6\x6e\x43\x03\xcc\xb6\x3d\x64\x9a\x05\xba\x0d\xac\xf3\xa5\ +\xdd\xb1\xfa\xf7\xe0\x3a\x85\xee\x68\x4e\x44\x18\xb6\xd1\xab\xe9\ +\x87\x89\x60\x8d\x63\x49\x98\xed\xf0\x26\x02\x5a\x34\x1d\xf3\x87\ +\xf9\x77\xf1\x1a\x4b\x7f\xa5\x79\xdc\x67\x5d\x47\x47\x5d\x06\x65\ +\x1a\x45\x2d\x7c\x21\xf9\x16\xe6\x76\x9f\xf8\xb1\x7d\xd6\xf5\x27\ +\x62\x52\x2b\xa7\xd7\x61\xa5\xc7\x33\x1f\xb0\xd3\xe7\x33\x1a\xce\ +\x61\x30\x68\xcb\xac\x66\x4d\x6f\x75\xa9\x81\xd6\x6c\x9d\x27\xcd\ +\x87\xcd\x18\x38\x35\x70\xbc\xbe\xa1\x1f\x3d\x7c\xda\x99\x1b\x7a\ +\x7f\x91\x46\x2e\x16\xea\xb3\xb9\x2e\x6b\xc9\xc6\x39\x5e\x5f\xac\ +\x0d\x2d\xdf\xab\xd8\xc7\xb9\x34\x6d\xe8\x15\xd7\x3c\xc6\x78\xd1\ +\x32\x2f\x28\xea\x64\xa0\x76\x74\xe1\x02\xe8\x93\x0e\x1b\x0f\xd8\ +\xb1\x2f\x28\x50\x2f\x4e\x0d\x63\xc9\x57\x1d\xfa\x24\xc4\xb3\xa7\ +\x11\x31\xb4\x70\x38\xbf\xec\x29\xca\x1f\x2c\x86\xee\x87\xdf\xfd\ +\x18\xfc\xff\xb8\xfd\xe5\xcf\xf8\x42\x4d\x61\x1d\x83\x17\x2e\x5c\ +\xb8\x70\xe1\x19\x5c\x5f\xa8\x5d\xb8\x70\xe1\xd7\x07\xae\xd0\x9e\ +\xc1\xb3\xd7\x70\x5d\xb7\xe6\xc0\x7f\x72\xbc\x9e\xfa\xfe\x35\xda\ +\x5f\xfe\xf5\xf6\xe5\x87\xf6\xd3\xb8\xec\xa3\xc5\x15\x31\x6c\x5e\ +\xa8\xe3\xaa\x98\x0d\x82\x68\x74\x65\xc3\x2d\xc0\x4e\x4d\xdd\x20\ +\x00\x68\x33\x08\x23\x35\x98\x4b\xe6\x67\x8e\x79\x8c\x6b\x1f\x73\ +\xa1\x1d\xe3\xc9\xf6\x3c\xa2\xe7\x15\x73\xce\x0f\x7d\x6b\xd2\x49\ +\x23\xae\xdd\x28\x65\x2d\xc4\x95\x5f\x7d\xf2\xcc\xcf\xc6\xf5\xcc\ +\x1a\xf6\xf9\xdb\x0a\xce\x77\x23\xa7\xf5\xae\x39\xc7\x53\x31\xf4\ +\xad\xa1\x4b\xbb\xa4\xb1\x20\x97\x80\x8f\x92\xce\x61\xcd\x04\x6c\ +\xef\x72\x4e\x83\x6c\x80\x84\xea\x78\xfb\x2b\x4d\x7b\x9d\x61\xb4\ +\x8c\x01\xcd\x0c\xe4\xd1\x11\x64\x54\x91\xdd\xc0\x5c\x18\x21\xe3\ +\x3f\x12\xef\xa0\xab\x2c\xb4\x7e\x9c\xcd\x40\x64\x7c\x70\xda\x29\ +\xe3\x73\x55\xd4\xc0\xd1\x01\x27\x96\xa5\xdd\x83\xe1\x15\x8d\xdc\ +\xc5\x3b\x37\xc7\xc3\xdb\x25\x6c\x30\xe6\x48\x97\x80\x69\xf7\xee\ +\xd6\xf0\xaa\xa3\x61\x85\x1f\x42\xb5\x7a\xfd\xef\x01\xd7\xfb\xda\ +\x9a\x77\x73\x97\xe2\x77\xb5\x0b\x96\xd4\xbb\x98\x34\xdd\xe1\xf6\ +\x0d\x62\x3a\x56\x73\x5b\x47\x07\x16\x4d\x8c\x96\x7a\x65\xd1\x98\ +\x20\x37\x63\x43\x45\xb8\xce\xc0\x88\x92\x8f\x05\xf6\xdc\xac\x39\ +\x01\xb4\xbd\x78\x60\xcd\x83\x6f\x0e\xfd\x24\x2f\xb1\x54\x72\xa3\ +\x0f\xa3\xbf\xee\xb9\x49\xd0\xc2\x68\xb4\x44\x7c\x46\xd5\xd4\x28\ +\x0f\x35\x14\xa3\x17\x36\x79\xb6\x58\xe0\x3c\x84\xf3\x1c\x4e\x5a\ +\x71\x9e\xe4\x8d\x65\x9e\x33\xd1\x87\x36\xf9\x61\x43\x1b\x39\xf8\ +\x72\xeb\x55\xe7\x5c\xf0\x6a\xed\xbc\x8b\xa2\xc8\xb3\x8e\x5a\x6b\ +\xd0\xe2\xbc\xce\x93\x20\xce\xef\xa8\x89\x2f\xd2\xd0\x94\x53\xf3\ +\x41\x4e\xd6\xe0\x9f\x74\xe4\x6f\xbe\xa9\x86\xe6\x15\x5c\xce\x03\ +\xbe\x7a\xe7\x7b\x2e\xd1\x73\xa5\x13\x61\xe3\x91\x8e\x9a\x35\x6c\ +\x1b\x1e\x5e\x52\x82\xea\xfa\xe1\x1b\xf2\xd6\x8f\x79\x50\x49\x1a\ +\x3f\x65\xcd\xdf\x50\xfb\xcb\x9f\xa4\x3b\x1c\x8d\x17\xbe\x0b\x9e\ +\xdc\x94\xd8\x2f\x16\x7f\xf9\xf4\x21\x76\xc9\x1f\x6f\xef\xdf\xfb\ +\x3d\x4e\x71\xfc\xa6\x5a\xdd\xe4\xc3\x22\x8e\x59\xfc\x0f\x2f\xe5\ +\x02\x7d\x1f\x4e\xaf\x68\xba\xa3\x56\x82\x27\x09\x78\x3c\x2a\x52\ +\x30\x66\x22\xbd\xe6\x60\x9f\xca\x30\x68\xa3\xa7\x1f\xc7\x3a\x08\ +\x79\xc9\x61\x99\x9a\x30\x78\xc3\x35\x6b\x70\xea\x71\x30\x5a\xa7\ +\x75\x9a\x5b\xf1\xac\xaa\x9b\xb3\xaa\x35\x62\xf1\x1c\x0d\x3f\x10\ +\x14\xeb\xa3\x6d\x93\x63\xb0\x85\x8e\xe3\x60\x8e\xe2\xc2\x1d\x7d\ +\x3c\x5e\xf1\xbf\xd3\xc2\x35\x8f\xda\xb2\x7b\x9e\x5e\x57\xe4\xa2\ +\x38\x66\x0f\x11\x5f\xff\xe4\xf0\xe2\xf2\x3a\xe5\x76\x8d\xa7\xd7\ +\x25\x9e\xf4\x89\x6e\x87\x61\x17\x59\x7e\x9b\xb1\x1e\xf3\xc2\x15\ +\x02\x7d\xdc\x8c\x26\x2d\x11\x97\xb9\x9b\x69\x63\x1c\xfe\x53\x63\ +\x8d\x5f\x4b\xc9\x13\xf0\x7b\x12\x3a\x0b\xa0\x46\x83\x06\xac\x22\ +\x6c\xb1\xc8\xac\x24\xd2\x8c\x1e\xeb\x47\x3b\x1b\xd0\x6d\xe6\x91\ +\xe8\x15\x47\x9c\xbd\x1d\x60\x48\x8e\x38\xe3\x03\x98\x3b\x04\xd3\ +\x03\x63\x6a\x92\xa3\xb5\x38\x6c\xb5\x8e\xce\xef\xda\x1d\x30\xbc\ +\xd1\x99\x62\x5b\x62\x84\x82\xf3\x9c\x06\xe7\x87\xf7\x01\x22\x00\ +\xfc\xb6\x5a\x42\xb7\x37\x70\xb8\x24\x9d\x28\x12\x18\x04\xb7\xa3\ +\xac\x6c\xe0\xb0\xe4\x0c\x3a\x2d\x34\x9f\x33\x87\x04\x2d\x19\xdd\ +\x46\xcb\xf5\x49\x1d\x0d\x3c\x55\x98\x74\x9a\x09\xc5\x6d\x1a\xd4\ +\xe5\xd2\xfe\x80\xb7\xd8\xca\xcf\xbe\xc7\x19\xdc\xaa\x76\x25\xf1\ +\x5e\xea\xe1\x63\x6f\x64\xa9\x5e\x72\xd1\xc9\x4d\x75\xf9\xd9\xcc\ +\xa9\xe3\xb9\x8b\x15\x79\x4e\xcb\x18\x54\xe8\xdf\xd0\xea\x1c\x18\ +\x46\x9c\x9a\x68\xd7\x38\xe4\x6d\x63\x1c\xfb\x38\xb7\xc6\x79\x0c\ +\xe7\xb8\xf0\x75\xfe\xc2\x97\x60\xaa\x41\x0e\xb1\xe0\xf9\x5b\x67\ +\xb4\x91\x2b\x4e\x1a\xcc\x1d\x63\xe1\xfa\x28\x79\x6a\x35\xa7\xde\ +\x38\x26\x73\x30\x36\x1a\xb4\xc9\xd1\x8f\x16\xa5\xc2\x0d\x3b\xf6\ +\x80\xb9\x6c\x0c\x02\xc5\x65\x3e\x1a\x68\xf7\x6e\xdd\x87\x8d\x75\ +\x0f\x9b\x68\x31\xda\xd9\xb4\x8e\x9f\xe3\x7d\xc2\x93\x8c\x79\xe0\ +\x44\x1d\xef\xcf\xaf\xef\xff\x7a\xfb\xf3\x87\xff\x1f\xf7\xff\x97\ +\x78\x2f\x1e\x47\xdb\x85\x0b\x17\x2e\x5c\x78\x84\xeb\x0b\xb5\x0b\ +\x17\x2e\xfc\xfa\xc0\xd5\x59\x5c\xb7\x11\xbf\xf6\x95\x1a\xc6\xb9\ +\x37\x46\xfe\x64\xd6\x84\xb8\xb8\xfc\xf2\xe1\xe7\xdb\xeb\x4f\x7f\ +\xba\xfd\x18\x36\x2e\x3c\x59\x08\x4f\x5e\x29\x47\x7c\x5c\x29\xab\ +\x63\x9a\x7c\x7a\x22\xd8\x78\xe1\x1f\x79\xb1\xcc\xb0\x35\xee\xd5\ +\xd1\x47\x5f\x1c\x7a\x1a\xd1\xa5\xcd\x36\xc6\x86\x8d\x1b\x22\xfa\ +\x22\x0b\xbd\x63\xb8\x21\xa2\x0f\x10\xf4\xc9\x67\x0b\x9b\x7c\xe7\ +\xa0\xc5\xed\x14\xdb\x8e\x95\x26\xf5\xc8\x9d\x7c\xf4\xd1\x5e\x35\ +\x07\xce\xb3\xc6\x8c\xa9\xa3\xc1\x26\x25\x2e\x96\xb4\x45\x33\x10\ +\x8c\x3a\xaf\xa7\xe3\x5a\xa0\x4f\x73\xed\x61\x60\x49\x1f\x8b\xe4\ +\x69\xe6\xbe\x0d\x82\xe3\x04\xf0\x79\x81\x56\x7c\x78\xd0\x0d\x16\ +\x84\xa1\x9b\x8f\x03\x68\xc8\x28\x8d\x90\xa9\x88\xd5\x2d\x9c\x50\ +\x5d\xdf\x40\x92\x00\xa3\x47\x46\x1b\x06\xf4\x9c\x8b\x40\x30\x33\ +\x49\x74\x2d\xd3\x4d\xf0\xd8\xcd\xbc\x2a\xee\x20\xda\x40\x67\x7b\ +\x03\x76\xdc\x11\x4b\xc4\x6e\xf6\x95\xdb\x0d\x6c\x84\xda\x10\x03\ +\x33\x13\x5e\x12\xdc\x6f\x5c\xc1\x00\xec\x11\x3a\xe2\x10\x70\x62\ +\xa5\x9e\xe7\x7e\x05\xbe\xa5\xe6\xc3\xbc\x26\x78\xa8\x5d\x70\xae\ +\x1f\x2c\x35\x76\x7b\xcf\x0f\xf2\xd1\x62\x1f\xd1\x45\xf3\x6b\x81\ +\xbd\xb8\x8c\x04\x2b\x0f\xd0\x07\xf6\x3c\xae\x19\x71\x05\x2d\xc9\ +\x66\x0d\x2c\xe7\x6c\x43\x71\xf7\xa3\x82\x79\xfb\x33\xac\xdb\xc5\ +\x88\x16\xec\x1a\xda\x5c\x78\x5e\x70\xc6\x58\x46\xe9\x46\x02\x3b\ +\x9d\x5e\xe2\xc1\xf3\x89\x22\x3c\xbc\xd1\x00\xf0\xd0\x90\x0b\x9b\ +\xe7\x46\x98\xb1\xf6\x0c\x8c\x18\x73\x78\x9e\x84\x00\xe7\x54\xe8\ +\xc3\xc6\xf9\x35\xfb\x3a\xdf\xf2\x8b\x2e\xf0\xa1\x37\xc7\x1e\xe3\ +\x45\xef\xf3\x31\x6a\x58\x5b\x35\x91\x83\xb1\xf0\xa5\x1a\x9a\x6a\ +\x30\x1f\xbf\x71\x96\x39\xfa\x32\x6e\xf4\xfc\x71\x6a\xf4\xd4\x62\ +\x9c\x96\x87\x1e\xf5\xbd\x42\x68\xb4\xbd\x6e\x30\xd2\x26\x79\x04\ +\x73\x65\x70\xc1\xfa\xd1\xb8\x4f\x6a\x7d\xb0\x7d\xc5\x73\x5d\xb2\ +\x29\x96\x1a\xe6\xe2\x77\x6d\x74\xce\xc5\x77\x87\xb7\x4f\xbf\xdc\ +\x5e\x3f\xfc\x25\xe6\x09\x07\x8a\x15\x47\xe6\xc2\x93\xd0\x26\x7f\ +\x80\x21\xc0\xab\x8b\xaf\xb0\x77\x9f\x6f\x7f\xfa\xe3\xbf\xdd\xbe\ +\xbc\xff\xe5\xf6\xfe\xc7\x0f\x29\x89\x48\xf4\x63\x97\x62\x5f\xbe\ +\xc6\xe1\x15\x47\x01\x88\xcf\xba\x39\x8d\xa0\x0f\x63\x9c\x52\xc2\ +\x24\xdc\x0f\x44\x3e\x97\xd1\x18\x94\x02\x6c\xe7\xa6\x73\x51\x18\ +\xf0\x51\x9f\x73\x60\x24\x96\xe1\xb0\x85\x57\x31\x72\xd9\xc7\x63\ +\x7c\xa9\x24\xbf\x1e\xe4\x3e\xc7\x7c\x65\x77\x1d\x6e\xd6\xb2\x66\ +\x2c\xc9\x87\x85\x1e\x2f\x2b\x6b\xe2\xc9\x31\x3d\x2e\x7b\x6e\x93\ +\xb0\xa1\xb3\x36\x5f\x02\x7a\x2d\x42\x87\x25\x6a\xe2\x46\x31\xd6\ +\x29\x35\x64\xb1\xd0\x0d\x64\xcd\x27\xb7\x41\x2c\x50\x0b\x7a\x09\ +\x35\x3e\xe3\xe9\x47\x89\x25\x06\x27\x29\x37\x89\xa3\xd1\xe1\x6b\ +\xd1\x4d\x11\x3c\x04\xfc\xc0\x11\x47\xe7\xfb\x83\xf7\x85\xa3\x89\ +\x74\xf1\x9b\xb3\xd4\x53\xcb\x23\x26\x42\x71\x5c\x64\x5c\x75\xe3\ +\x81\xb9\xc5\xa3\xd7\xc1\xd8\xcd\x0d\x5b\x8a\x42\xd4\xd4\xe8\x6e\ +\xd8\x06\xb9\x1d\x08\x44\x1d\x53\xc7\x9a\xc5\xa9\x69\x5b\x41\xeb\ +\x75\x09\x38\x3c\xba\x19\x8e\x37\x9d\x20\xc2\x0f\xd9\xb1\xb4\xce\ +\xed\x69\x9c\x24\x75\xfa\x99\x06\x9c\xf1\x1d\x3b\xcd\xae\x4d\xe8\ +\xdb\xd9\x6b\xde\x85\x23\xc6\x86\x8d\xc1\x96\xd4\x06\xdb\xd0\x81\ +\x4c\x87\xb5\xb0\x0f\xd3\x26\xa7\x4e\x46\xcc\x26\x78\xed\xfb\x06\ +\x1c\x2b\x05\x68\xd4\xb3\x16\xb9\xc0\x9a\xd3\x08\x0f\x25\xc8\xe1\ +\x72\xcd\x59\xc6\xc9\xa7\x30\x15\x69\xba\xe0\xb5\x0d\x67\x6c\xf3\ +\xd2\x64\x17\x0b\x85\x50\x4b\xdb\xc4\xfc\x68\x64\x12\x69\x47\x47\ +\xcb\x21\xf4\xe4\x14\x50\x8a\xb7\x91\x7c\xbe\x66\x33\xe6\x66\xed\ +\xd4\xea\x3c\xb7\xe3\x54\x43\xe7\xb4\x68\xc9\xeb\x9c\xd9\x7c\xf4\ +\xd1\xa4\x8b\x73\x4a\xf4\x38\x17\xe2\x75\xab\x1e\xe7\x45\xe5\xf1\ +\xb7\xa4\x33\x07\x7a\xf7\x08\xda\x67\x0d\xfa\x8a\xc9\xce\x18\xf4\ +\xe1\xb3\x36\xeb\x88\x67\x1c\x5a\xf6\xf2\x73\xf3\x04\xa7\x05\xa9\ +\x68\x21\xa7\x06\xb4\x82\x02\x2c\x9d\x6b\xe4\x58\x4f\x3e\xf7\x3f\ +\xea\xc3\x53\x2c\x5f\x5b\xb4\x7b\xf3\x3c\xb2\xe7\x7c\x99\x16\xef\ +\xd1\xb7\xdb\x0f\x3f\x7e\xb9\xfd\xe9\x0f\xff\x39\x5c\xfc\x26\x39\ +\x69\xc5\x2f\x5c\xb8\x70\xe1\xc2\x43\x5c\x5f\xa8\x5d\xb8\x70\xe1\ +\xb7\x41\xff\x8c\xd0\xed\xaf\xc1\xbd\x0b\xbd\x93\xda\xa7\x43\xc6\ +\x55\x23\x2e\x21\x3f\xe2\xff\xa7\xdd\x3e\xde\xde\xbf\xfb\x7c\x7b\ +\x1f\xf5\xf5\xe1\x3c\x16\xd1\x78\x53\x51\x57\xe7\xe1\xaa\x31\xc6\ +\x2b\x60\xc4\x28\xce\x72\x11\x87\x2d\x37\x63\x40\xea\xf8\xac\xe0\ +\xe0\x40\xd1\x5e\x9a\xae\xc4\x47\xab\x98\xe6\x03\xdb\x37\x3d\xa5\ +\x91\x8d\x0b\xfe\xb2\x59\xe7\x35\x7a\xeb\xdc\xac\x41\x9d\x91\x53\ +\xf5\xbc\x6e\x5d\xd7\xf5\x8c\x67\xeb\x7a\x86\xa1\xc5\xb6\x8a\xf5\ +\x0a\x9a\xab\xec\x18\xed\x68\x74\x6c\xab\x37\x6d\xc7\x5a\x52\x32\ +\xb5\x68\x3c\xcb\x96\x31\x38\x7d\xd0\x8d\x3d\x1f\x3d\x40\xae\x83\ +\x7c\xfb\x30\x0c\x80\x62\xae\x1a\xf3\x51\x02\xb1\x80\xc2\x16\x34\ +\x30\x80\x88\xa2\x86\xcb\x01\xb0\xb5\x94\xc5\x1b\x32\x32\x0b\x4b\ +\xd5\x5c\xa5\x64\xd7\x60\xe2\x84\x9e\x01\xd1\x99\xf0\xa4\xbc\x52\ +\xc6\x1a\xf1\xd8\x8e\xf9\xd2\xd3\xc4\x32\x92\x28\xa7\xb1\x75\x57\ +\x22\x57\x34\xdd\x2e\x85\xed\x76\x0a\xa4\x4f\x82\xbd\xfa\x61\x9d\ +\xaf\xc0\xd7\xd6\xbc\x9b\xe7\xf5\x49\xc1\x5d\xed\x06\x47\x7d\x14\ +\xcc\x4d\x6c\x9c\xd6\x5b\x0e\xba\xf1\xba\x58\xf8\xec\x07\x8e\x71\ +\x6b\x78\x2c\xc3\xd3\x93\x58\xa6\x43\x5f\xaf\x47\x7b\x1d\xc3\x77\ +\x3e\x31\x39\x02\xa9\x85\xef\xee\x26\xa5\x48\x1f\xcb\xb4\xb8\xe2\ +\x43\x8d\x43\x55\xe7\x7d\xb1\x6c\x58\x50\x8b\x5e\x9c\x03\x7c\x3d\ +\xe4\x39\x4f\xe7\x7d\x98\xe6\x65\xf3\x17\x2d\xd8\xf2\xdc\x88\x73\ +\x21\x9b\x6c\x9c\x27\xa7\x86\xdc\xd0\xca\xa6\x80\xbd\xb8\xd1\x78\ +\x6e\x65\xaf\x38\xfc\xfa\x6d\xe1\x3c\xd7\xa3\xc6\x74\xde\x46\xed\ +\x57\xfc\x96\x8c\x34\x8a\x45\xf3\x97\x6b\xad\x89\x47\x9e\xe6\x39\ +\xea\x63\x25\xb3\xc5\x82\x5d\x83\x98\x68\x58\xd7\xde\x03\x18\x9f\ +\x9c\x5c\x22\xc3\xda\x7e\x31\x36\xf4\xd1\x78\x34\xd1\x06\x97\xbc\ +\x84\xea\xe2\xf1\x8e\x1b\x30\xd6\xe3\x53\xac\xef\x2f\x3f\x85\xf9\ +\x91\xe1\x0b\xdf\x19\xfd\xa5\xfa\x60\xfb\x3a\x8c\x3f\x1d\xf8\xf3\ +\x4f\xff\xed\xf6\xfe\x87\x2f\xb7\x97\xf7\x1f\x83\x89\x3d\x8a\x63\ +\x0a\x7d\xec\x24\x34\xfd\xc6\xbf\xf6\x25\xf2\xc4\xa3\x1f\x75\x60\ +\x7b\x78\x1e\x15\x51\xb7\xf4\xa2\x0b\xa3\x16\x34\x01\xbe\x98\x95\ +\xed\x9a\x6c\xe1\x30\x0e\x1b\x8d\xbe\xb8\x9a\x9b\x7d\x3c\xc8\xa5\ +\x9d\xfe\x7c\xb3\x34\xf5\xd1\xc7\x91\x18\xbd\xbe\x34\xe3\xcb\x27\ +\x6a\xe8\xff\xee\xf4\x2f\xd2\x34\x0e\x5f\x4e\xd0\x80\x8b\xc6\x97\ +\x5d\xf2\xac\x4d\xad\xea\x72\xbd\xc9\x07\x17\xeb\x34\x7a\xdc\x20\ +\xce\x7c\x72\xce\x01\x37\xc6\x18\x0d\x75\x9d\x9f\xdb\x9f\xf9\x39\ +\x5e\x6e\x2f\x05\x72\x1e\xe1\xba\x36\x17\x4b\x93\x14\x8e\x28\x12\ +\xec\xe3\xc9\x7d\x80\x2f\xc4\x5c\xb7\x16\x02\x34\xd4\xc3\x88\x09\ +\xd4\x0f\x0d\x61\x89\xf5\xc0\x7a\x5b\x9f\xbd\xdd\x42\xe8\x3b\xc7\ +\x09\x45\xee\x7a\x42\xa7\x85\xaa\x6d\x1d\x0b\xa9\xab\x26\x78\xbd\ +\x08\xac\x03\xe6\x93\xae\xc6\x41\x2f\x17\x55\x9b\x7a\xc4\x1a\x89\ +\x7a\xaa\xd9\xad\x84\x9d\x22\xbe\x02\xbd\x46\x6f\x89\x0d\xf5\xdb\ +\x80\x83\x6a\xfb\xdd\x9f\xc4\xd8\x26\x73\xcb\x7d\x06\x98\xd4\x62\ +\xc2\xd0\x37\x34\x12\xef\x19\xaa\x04\x42\xfb\xd2\xfb\x01\xfe\x76\ +\x1f\x56\x1f\x8b\x29\x18\xe0\xf1\xb0\x92\x0d\x08\xb5\xf0\x7a\xc8\ +\x79\x2e\x0b\x2d\xd0\xc8\xf5\x5e\x04\x70\x0f\xe3\xda\x5d\xe8\x42\ +\xf2\xec\x72\x22\xa3\x06\x7a\xb4\xc3\x16\x10\x63\x7d\x74\x73\x54\ +\x7e\x35\xbf\x3e\x42\x28\x2d\xce\x41\x69\xa7\x28\xbb\xf0\x07\xef\ +\x18\xe3\x4b\xc3\x49\x14\x3d\xce\x41\x6c\x79\xae\xd2\xf9\x52\x8d\ +\xf1\x48\xae\x9a\xac\x9f\xf5\x90\x8f\x9c\x20\xf8\x65\x17\xb4\xe0\ +\x1d\x8b\x85\xce\x95\x8a\x51\x97\x76\x8d\xcd\xb1\x82\x83\xce\xe3\ +\x46\x8f\x73\xbb\xce\xef\x38\xa7\x6a\x6c\xc6\x60\x67\x2e\x9a\xd6\ +\x2b\xb6\x0d\x9b\x34\xa0\x0b\xd4\x28\x86\x2d\xce\x3c\x50\xf4\xdb\ +\x3a\xc1\x45\xcf\xed\x2c\x9e\x7a\x92\x58\x0c\x5d\xb5\x58\x8c\x7a\ +\xcc\xe2\x75\x20\xce\xcb\xfc\xbf\xa6\x9f\x7f\xbc\xbd\x8b\x53\xf4\ +\xe7\x5f\xfe\x72\xfb\xf0\xf9\x2f\x41\xa7\xf8\xc2\x85\x0b\x17\x2e\ +\x3c\x85\xeb\x0b\xb5\x0b\x17\x2e\xfc\x76\xe0\x15\x5d\xb6\x33\xe4\ +\xe7\x87\xef\x82\xb5\x16\xc7\x9e\x07\xff\x12\x17\x94\x5f\x3e\x7d\ +\xbe\xfd\xe5\xf7\xff\x35\x2e\x2a\x7f\xc1\x25\x66\x6a\xf2\x23\x1c\ +\xaf\x7c\xd5\x70\x31\x3a\x6c\x5c\x90\x9a\xa3\xa9\x06\x20\xce\xde\ +\x0b\x5c\xb0\x3b\x9c\x22\x68\xf0\x03\xf5\xe1\x8e\xba\xea\x6c\xab\ +\x9f\xc7\xd5\x7c\x74\xa5\xce\x39\xc4\x55\xbd\xff\x1f\x8e\xae\xf4\ +\x31\x16\xe2\xb8\x59\xa2\x0f\x0a\xba\x49\xaa\xb8\x6f\x96\xf2\xc2\ +\x3a\xed\x30\x46\xdc\xb5\xd6\x3e\x9b\x74\x6e\x31\xc7\xc5\xc6\x03\ +\x73\x43\x8b\x65\xeb\x61\xc6\xb6\x86\x8e\x36\x16\x78\xc6\x83\xfe\ +\x6c\x33\x16\x86\xf5\x00\xe2\xf9\x94\x4d\x12\xfb\x4b\x3b\x5a\xbc\ +\x16\xfe\x59\xe4\x74\x55\xd3\x20\x31\x4c\x22\x8c\xb2\xeb\xb8\x59\ +\x45\x36\x21\x28\x11\x39\x4b\xc4\xce\x31\x7a\x61\x58\x03\x94\xdd\ +\x48\x99\x23\x77\x60\xe5\xe0\x43\x5d\x5b\x21\x3d\xd7\x68\x38\x10\ +\x1b\x44\xb9\x59\x36\xea\x1a\xf4\xbd\x22\x15\xcd\xbe\x4f\x6f\x09\ +\xa9\x78\xcb\xe9\xda\x00\x6f\x7a\x31\x54\x09\xb4\xd6\xf6\x56\x7c\ +\x6d\xde\x3d\x7c\xed\x7c\x46\x4e\xcb\x3c\x29\x32\xb4\xcf\xe1\x91\ +\xf6\x34\x8e\xfd\xe0\x16\x98\x75\x63\x27\x69\x3e\x8e\xaa\x57\x74\ +\x68\x66\x3b\x90\x72\x75\xb1\x84\x91\x1d\xe0\xde\x79\xab\x0f\x14\ +\x07\x0a\xce\x10\x11\x74\x17\xae\xfb\x36\xa5\xcb\x73\x79\x38\x1e\ +\xc1\x37\x56\x75\x5e\x18\x89\xb2\x86\x0f\x40\xc3\x73\x11\x68\x87\ +\xaa\x47\x1d\x08\x60\xc7\x33\x75\x3a\x6f\x21\x12\xa3\x90\x50\x9c\ +\x41\x9c\x27\x7d\xde\x64\x0c\x39\x69\x9b\xe3\xb9\x59\x3a\x6a\xa1\ +\x21\x17\x66\xf8\x9f\xf1\x25\x58\xfe\x58\xf5\xbb\xec\xf5\xa7\x7c\ +\xf1\xe7\x89\x42\x94\xbf\x71\xc6\x73\x7f\x4c\x86\xbf\xf9\x81\x3a\ +\xd0\x93\x77\x8e\xeb\xb6\xc6\xda\x88\xa5\x2e\xe7\xc6\x39\xe6\x8a\ +\xd4\xf6\x80\x5f\xb1\xdc\xbe\x32\xc9\x17\x1c\xb7\x96\x7e\xd8\x25\ +\x0e\x20\xe6\x07\x35\x31\x97\xec\x39\x4f\xd8\xd1\xe3\x66\x15\xd2\ +\xf0\xc5\x00\xef\x99\x7f\xfe\x74\x7b\xf7\xe1\xe7\xdb\xe7\x4f\xbf\ +\x70\x02\x08\xb3\x9c\xba\x0b\x6f\xdd\x10\x5d\xef\x17\xcc\xda\x4f\ +\x68\x24\xcd\x97\xdb\x97\xf8\x74\xf9\xc7\x3f\xff\x8f\xdb\xbb\xf7\ +\xb1\x8f\x5e\xe2\xb8\xac\xf7\x69\xed\x47\xec\x5a\xfd\x66\x5a\x30\ +\xb9\x3f\x83\x92\x1f\x45\x92\x22\xd0\xf3\x15\x0c\x8e\xa4\x5e\x73\ +\x7a\x0d\x0f\x1d\x01\x4d\x9a\x98\x04\xff\x27\x58\x72\x6a\x69\x05\ +\x29\x3b\x8e\x2d\x3c\xc2\xac\x43\x1d\x3c\xe2\x6e\x99\x67\x5f\x19\ +\xb1\xc4\x71\x69\x2e\x79\xf6\xe0\xa8\xc8\x2f\xd1\xa8\x53\x6d\xfa\ +\x3c\x86\xe1\x23\x57\xf3\xb3\x8f\xf9\x46\x1a\x39\xc6\xb1\x9d\x4a\ +\xab\xa6\xed\x96\x79\xb9\xd1\xa0\xe1\xc6\xa7\x16\x7d\x1b\x83\xf3\ +\x97\xce\x39\x8a\x65\x3c\x79\x68\xec\x4b\x2e\x32\xdd\x14\xa0\xc9\ +\xa0\x16\x93\xcd\xff\x75\x46\x99\x73\xd1\xf8\x65\x96\xe6\x42\x50\ +\x9f\x36\x10\x26\x7c\xee\x45\x3c\x71\x2d\x9e\x21\x9d\x27\xb4\x8e\ +\x00\xba\x8a\x65\x3f\xe0\x48\x80\x63\xa8\x0e\x72\x99\xdf\xc2\x0a\ +\x60\x4e\xae\x02\x3d\x37\xa2\x5c\xce\x57\xe7\x15\xce\x95\xd3\xcf\ +\x2f\x04\xc9\x01\x4d\x9b\xe0\x58\xc5\xaf\x00\x8f\xe8\x88\x97\xa5\ +\x50\x23\x9e\x84\xf5\x3d\xbf\xd5\x58\x69\xb7\x47\xb8\xa7\xeb\x75\ +\xee\xe9\x80\x7d\x6c\x93\x59\x94\xb6\x7b\x0f\xcd\xd0\xd6\x9b\xc2\ +\x24\x62\xa1\x8d\x7f\xc0\x86\x0a\x29\xf6\x19\x5e\xa9\x88\x63\xa9\ +\x7d\x58\xc7\x20\xe3\x82\xf6\x18\x49\x2c\x07\xe0\x24\x51\x11\x1e\ +\x68\x49\x27\x35\x63\x90\x29\x0d\x44\xb6\x13\xf4\x1c\xe0\x3c\x26\ +\xa6\x79\x12\xeb\xeb\xbf\x31\xdf\x09\x73\xea\x01\x0c\xc7\xe0\xaa\ +\xa1\x7a\xa4\x6a\x51\x5d\x9b\x6f\xc2\x44\x74\xb0\xbc\x0e\xa5\x73\ +\x1f\x98\xb8\x68\x3a\xa7\x48\xeb\xd7\xb7\xce\x39\x3a\x27\xe5\xe9\ +\x6c\xe2\xe3\xd9\x38\xfb\xae\x91\x7d\x24\xfa\xb7\x7a\xc9\x45\x31\ +\xf4\x3c\x17\x07\x57\xe7\x42\x9f\x8b\xa9\xcf\x38\xb5\xa1\x09\x4e\ +\xe7\x46\x70\xea\x39\x27\xe6\x66\x0e\xf3\x83\x47\x0e\x7d\x37\x70\ +\x31\x3e\x38\xb7\xd2\xa9\x8e\xe6\x83\x7a\xb1\xcd\xb9\xee\x9e\x6f\ +\x34\x6e\x1e\x3c\xa4\x23\x1c\xa3\x5e\x76\xd2\xa9\x8b\xfc\xb2\xb3\ +\xd1\x13\x97\x26\xbb\xfe\xbe\x83\xff\x25\xc7\xb9\x30\x82\xff\x61\ +\xfa\x7a\x7b\xff\xfe\xf3\xed\xe3\xeb\x9f\xd9\x6a\xfc\x09\x3b\xee\ +\xc2\x85\x0b\x17\x2e\x00\xd7\x17\x6a\x17\x2e\x5c\xf8\xed\x70\x72\ +\xed\x3f\xa1\x5f\xb7\x59\xbf\xcb\x83\xee\xde\x75\x1f\x72\x60\xaf\ +\xb9\xfc\x09\xd8\x15\x21\xfc\xe3\xef\x6f\x2f\xef\xe3\x94\x18\x9f\ +\xa4\xf5\x53\xc6\xc1\xe6\x85\x27\x1d\xca\xa2\xc7\x15\x37\xb9\xa4\ +\xd9\xd2\x49\x7e\x7c\x18\x52\x93\x2e\x3e\xbc\x44\x93\x1d\x4f\x5c\ +\xd9\x12\xf8\x50\x83\x0e\x64\x36\xe7\xe5\x03\x5c\xcd\x83\x2d\x9e\ +\x91\x5f\x37\x27\x39\x4f\x5c\xe8\xc7\xdc\xea\x53\x41\xb4\xd7\xb8\ +\x68\x6e\x37\x56\x79\x35\x5d\x39\xc9\xc3\x6f\xb6\x34\xa9\xb7\x8f\ +\x58\xf6\xf6\xf5\xc9\x47\x1a\xc6\xa0\x8d\xa7\xea\x78\x15\x92\x8f\ +\x38\x4d\xe8\x08\xf5\xc1\xba\x44\x34\x2c\x32\x44\x5f\x0d\x60\x47\ +\x5e\x1f\x40\x7a\x5c\x6e\x19\x6a\xb1\x45\x2b\xd7\x7d\x6b\x86\xec\ +\x58\x76\x12\x28\xff\xe4\x58\xd9\xa1\x95\x61\x56\x4b\xf5\x1c\x9e\ +\x87\x92\x95\x36\x92\x61\x99\x1b\xb6\x31\x06\x9c\xf9\x05\x0e\xf6\ +\x02\xdd\x0e\x34\x53\x20\x91\xec\x26\x08\x6a\x6a\xa5\x29\x63\xc2\ +\xcc\x86\xe7\x1b\x6f\x27\x7a\x60\x5f\xf3\x5c\x6f\x40\xb1\x6b\xdf\ +\x8a\xaf\xa9\x25\xfd\x26\xe3\x84\x7a\xb6\xf6\x23\xed\x36\x46\x32\ +\x16\xe8\xf3\xd0\xd1\xdc\xda\x81\x4b\x74\x6e\xdd\x47\xf0\xf1\xa1\ +\x1e\xdc\x92\x5b\x32\x69\x66\x8c\xd7\x67\x21\xfc\x67\xb6\x0d\x5c\ +\x53\x1b\xf5\x44\xf6\x78\xd9\x34\xe6\x4c\xcd\x25\xd7\xde\xa1\xec\ +\x4b\x19\xab\x00\x05\x1f\x41\x52\x9d\x41\xfc\x79\x32\xf9\x49\xb0\ +\x97\xce\xe7\x3e\x6a\x79\xce\x44\x8b\x85\xfb\x3c\x9f\xf2\x0b\x2f\ +\x70\xf4\x11\x12\x8f\x73\x66\x6f\x9f\x5f\xf3\x0b\x33\x9e\x38\x75\ +\xf2\xe4\xb9\x3f\x7f\xe3\x8c\x3f\x79\xcc\x73\x30\x7a\xe4\x44\xcf\ +\x2f\xc7\xc2\x76\x1f\x4d\x5f\xaa\x41\x13\xf5\xea\x37\xd1\x94\xcb\ +\xc6\x39\xea\x3d\x46\x76\x6e\x1b\xd8\x1d\x0a\xc9\xb0\x43\x8d\x58\ +\xd8\x69\x25\xef\x3e\x1a\xfa\x4d\x1b\xef\x43\xc8\x95\xaf\x75\xc4\ +\x7a\x0d\x8d\xde\xf3\xbe\xdc\xde\xc7\xce\x79\xff\xe9\xa7\xdb\x67\ +\xfc\xd9\xc7\x08\x7f\x37\x3c\xaa\x75\x16\xff\x9e\x73\xf8\x1e\x58\ +\x5f\x7e\x8f\xf0\x56\x3d\x30\xad\x33\x5e\xdf\x9f\x6f\x7f\xfd\xf0\ +\xdf\x6e\x2f\x3f\xfa\x27\xf7\x25\xc0\x61\x09\x5b\x1c\x6c\xa5\x86\ +\x47\x47\x37\x19\xa5\xed\x90\x46\xc8\x2b\xa6\x09\x8e\x4b\xc3\x6a\ +\x7c\xb9\x01\x23\x2f\x2c\x3c\xd5\xd1\xf7\x1c\xb0\xc0\x23\x8e\xa8\ +\xe4\x3c\x47\x35\xda\x56\xd0\x57\x1e\x5f\x36\x5d\x93\xfe\x6b\xac\ +\x28\x6f\xa6\x92\xd3\x3a\x39\x8e\xe6\x7c\x6c\x0f\xd6\xa0\x56\xe7\ +\x45\xf8\x30\xac\x55\xb3\x8f\x73\xcd\xc8\xc7\x42\x36\x7e\x53\x8d\ +\xb3\x0b\x3b\x96\x16\x64\x87\xb1\x61\x50\x97\xe3\x8c\x9a\xd1\x73\ +\x7b\xa8\x29\x47\x5a\xc6\xc9\xc9\x80\x12\x3e\xb9\x5c\xf2\xba\x8c\ +\x9e\x62\x80\xf6\x10\x4f\x9a\x42\x8e\x51\x7e\xa0\xb4\x91\x0f\xf4\ +\x5c\xd9\x4d\x4c\xe4\x7e\x07\xdd\x5b\xc1\xe3\x0f\x32\x33\x48\x61\ +\x15\x84\x31\x53\x2d\xa1\x6a\xb5\xd9\x65\x3c\xe6\x86\xb5\xab\xed\ +\xb0\x43\xe5\x24\x60\x70\x30\xb7\x16\x33\x46\xe8\x1c\xd6\xec\x1a\ +\x3a\xf7\x9b\xf6\x0c\xac\xab\xbc\x96\x58\x5c\x3a\x88\xe1\xfc\x5f\ +\xdb\x33\x41\x0d\x17\x74\xdd\x7d\x05\x36\x45\x0e\xc5\xa4\xf1\x63\ +\x46\xf8\x0a\xab\x25\x76\x4a\x1c\xaf\x78\x5f\xd3\xba\x20\xea\xe3\ +\x37\x31\x39\x69\xf6\x8d\x63\x04\x35\xb6\x07\x5e\x2b\x4a\x94\x1e\ +\x0b\x75\x32\x43\x99\x1c\x51\x76\x18\xb4\xdd\x0b\x23\x6c\x4b\x71\ +\xb8\x62\x62\x1c\x1a\xf2\x66\xcc\xdc\xe4\xf5\x7a\xac\x21\x9f\x5e\ +\x17\x76\x3b\xa0\x78\x23\xc3\xa4\x97\x8b\x11\xc2\xfa\xe7\x83\xa4\ +\x7a\x5a\x72\xa3\x1f\xe7\x15\x71\xb9\xed\x18\xeb\x2d\x75\xd9\x7a\ +\x5c\xa7\x37\xd4\xd6\xb9\x4d\x2d\xec\xf9\xf2\x25\x5b\xea\x92\xff\ +\x8c\x3f\x33\x1c\x06\x7e\x53\x9f\xd7\x43\x5d\x03\xfb\x73\xbe\x67\ +\xf1\xdc\x8c\x7e\x8e\xf9\xba\x83\xb1\xe4\x19\x23\xa7\x31\xe2\xc9\ +\x38\x1c\x75\xbd\xc7\x3d\x06\xd8\xa8\x15\x2d\x6c\x6d\x8c\x6c\xcd\ +\x54\xf3\x23\xec\x58\xb8\x81\x28\x3e\x5b\x92\xbd\x93\x3e\x7a\xcd\ +\x3f\xf4\x41\x68\x6e\x8a\xe1\xd8\x7c\xf9\x5d\xc4\x5f\xfe\x74\xfb\ +\xf0\xf1\xe7\xdb\x4b\xbc\xd0\xf9\x9b\x6b\xed\xe8\xbe\x70\xe1\xc2\ +\x85\x0b\xe7\xb8\xbe\x50\xbb\x70\xe1\xc2\x6f\x07\x5e\xbc\x3d\xc0\ +\x7a\x0d\x77\x76\x4d\x77\x76\xbd\x07\xce\xe3\x38\x1e\xbd\x2e\x1c\ +\x8f\x88\xeb\xd9\xdb\xe7\x4f\x1f\x6e\xbf\xfc\xfc\x6f\xfc\x42\xed\ +\xcb\xeb\xa7\xbc\x71\x88\x67\x2c\x70\xd1\x8d\x07\xae\xc6\xd1\xb3\ +\x0e\x82\xd9\xe8\xaa\xc7\x85\x2a\x6d\x5c\x90\x3a\x6c\x0e\x26\xf2\ +\x9c\x4b\xc8\x57\x1e\x4c\x7c\xc8\xc3\x58\x39\x9e\x3f\x01\x54\xd3\ +\x85\x3c\x6f\x96\x54\x5e\xf6\xe0\x78\xb1\x6c\x4d\xf4\xfc\x9f\x39\ +\xd1\xfb\x66\x2b\x7a\xdc\x70\xc5\x8d\xd5\xbc\xf1\xaa\xa6\x3a\xba\ +\xa9\x0b\x5f\x79\xca\xc9\xf1\x9a\x4e\xe3\xc8\xe6\x3c\xc3\x34\xc7\ +\x0f\x08\xb6\xd9\x7b\x35\xf3\x03\x2c\xd3\x94\xcb\x3b\x5e\x8e\x13\ +\xd8\x51\x19\x8a\x0f\x2e\x3d\xce\x8e\x79\xee\x51\x0d\x4d\x63\x20\ +\x4e\x9b\x8f\x44\x6a\x10\x27\xe0\x57\x30\x61\x1f\x52\x20\x7c\x50\ +\xab\x0c\x10\x67\x61\x03\x07\x40\xc3\xde\x8b\xd6\x24\x35\x36\xb1\ +\xc9\xdd\x50\xf3\xe8\x8b\x20\x0a\xe6\x96\x5c\x30\x0d\x24\x04\x05\ +\xb6\xb7\x1d\xa6\xf9\x66\x3f\xa1\xe2\x58\xbf\xb9\x1e\xf5\x5c\x24\ +\x52\xab\xbd\x70\x9c\xe7\xbc\x3d\x9e\xc1\x48\x80\xe5\x36\x60\x6f\ +\x66\x1f\x61\x5f\xeb\xeb\xf0\xd6\x1a\x6f\xd1\xbf\x65\x8e\xd4\xee\ +\x0e\x8d\xc0\xb6\x06\xc5\x11\x41\x30\x4c\xfd\xb4\xb2\xd1\xed\x7c\ +\x4d\xe5\x00\xc7\x7d\xe8\xe3\x62\x04\xf0\x79\x3c\xab\x57\x3b\x80\ +\xe4\x18\x47\x5f\x4c\x9d\xa0\x4f\xa7\x63\x97\xb0\x70\x74\x0f\x3a\ +\x10\x7d\xc6\x03\xb5\x7e\x92\x08\x65\x23\x27\x0c\x3e\x71\xce\x84\ +\x21\x9f\xaf\x4d\x26\x0f\x8e\xe7\x41\xc7\xb1\x88\x73\x9a\xde\x5f\ +\x18\xcc\x16\xcf\xfc\x2d\x33\xf9\xd1\xe3\x5c\x8b\xf3\x1f\xfa\xe0\ +\xf4\x7e\x20\x5b\x31\x71\x3e\x8f\xf3\x97\x44\x26\x3e\x73\x78\x4e\ +\x0f\x3b\x75\x78\x0f\xa8\x2f\xd3\xf0\x3e\x10\xbd\x7e\xc3\xd9\xef\ +\x11\xb0\x51\x07\xb9\x39\x1e\x1b\x9f\xea\x61\xa4\x83\xae\x7e\x46\ +\xc5\x02\x22\x7a\x9b\x34\xa2\x51\x97\x36\xe6\x54\x75\xd3\x67\xaf\ +\x71\xbf\xe0\xab\x01\xc4\x31\x97\xe4\xe9\x43\xe5\x75\x42\x39\xcc\ +\x39\xfc\x77\xf1\x1e\xfe\xfa\xd7\x9f\x98\x7b\x3c\x58\xa6\x09\x3e\ +\x8f\xb3\x63\xee\x11\x90\xf7\xc6\xa1\xfe\x6e\xf1\xcc\x7a\xc4\x36\ +\x1f\x3f\xa7\x14\x09\xf1\x7c\x8d\xc7\x5f\x7e\xfa\xef\xb7\x77\x2f\ +\x1f\x82\xc3\xf5\x44\x08\x14\xca\x5d\x8c\x9b\x7a\x38\x97\xe8\x7c\ +\xc2\xdd\x16\x1b\x8e\x36\x7a\x55\x22\xec\x63\x61\x6e\x45\xd7\x13\ +\x35\x9e\x58\x1d\x5b\xea\x65\xa7\x9f\x5c\x4c\x49\x73\x88\x45\xf9\ +\xd9\xeb\xc6\x29\xe6\xab\x39\x5b\x2b\x1f\x1a\xe9\x94\x99\x7e\xd6\ +\x65\x9e\xfd\xca\xc9\x71\x50\x0b\x7d\x24\x6b\x3b\xc0\x06\x8f\xdf\ +\x6c\xd3\xa1\xaf\xba\xca\x45\xe3\xf8\x49\xc8\x17\x5f\x22\x12\x99\ +\x0b\x33\x1b\x16\xca\x8d\x3c\x08\x8a\x57\x6f\x0d\x92\x38\x67\xce\ +\x09\x64\xf2\xcc\x42\x4c\x54\x19\xd1\x99\xc2\x21\xc0\xc3\x40\x72\ +\x9d\x1b\x13\xc3\x0a\x38\x1e\x0b\x5e\x27\x8b\x6d\xb9\xc9\xa0\xf3\ +\xc5\x78\x36\x7d\xf9\x56\x23\x91\x2d\x4c\x8e\x15\x01\x6c\x5b\x19\ +\xec\x2d\x5b\xe4\x0d\x56\xe7\x18\x25\x5c\xb3\xdb\xf6\x08\xd4\x54\ +\x53\x63\x57\x5e\xe0\x40\x9c\xe0\x09\x8d\xc3\x8f\x4a\x71\x0d\x42\ +\xe4\xb9\x8d\xcd\x19\x8b\x68\xdc\xc7\x6e\x08\x74\x3f\x9b\xb6\x5a\ +\x98\x99\x26\xa3\x35\x9b\xb1\xe0\xfe\xcc\x1e\x64\x76\x96\x55\xff\ +\x10\x3d\xe1\x24\xa9\x87\xd4\x8f\xb9\xb2\xa3\x89\x2d\x80\xf5\x84\ +\x2d\x0f\xa0\x0b\x52\x06\x16\xec\x2b\x1f\x68\x26\x91\x7e\xa7\x5d\ +\x77\x0e\x2e\x75\x80\xe4\x0d\x58\x23\xf7\x0c\x39\x5b\xea\xb4\x1e\ +\x07\xf0\xf5\xb0\xc3\x58\x67\x0d\xa6\xc6\x63\x9a\x7c\xab\xc7\x2e\ +\xed\x80\x2c\xad\x03\x6c\xe7\xf4\xeb\x43\xa5\xa4\x42\x09\x04\xce\ +\x63\xac\x2d\x41\xcd\x81\xe7\xb6\xf4\x75\xcc\xa1\x67\x27\x0d\x5e\ +\xa3\xd0\x98\xa7\xdd\x7d\xb5\xca\xab\x36\x74\x3a\xdf\xe1\x3c\xe7\ +\x16\x3e\xcf\x63\x91\x47\x27\x3b\x7e\x29\x96\xb5\x7d\xbe\xcb\x06\ +\x3d\x34\xf8\xfc\xe9\x1a\x68\xfe\xad\xae\x78\x32\x5f\x06\xf4\xe2\ +\xac\x93\x1d\xf5\xf3\x9c\xae\xf7\xb8\x96\x1b\xdb\x26\x3a\x18\xe9\ +\xc3\x06\x87\x87\x7c\x6e\xc3\x8a\x29\x5e\xc1\xec\x4a\x1f\x8b\xea\ +\xd1\xb0\x6e\x64\xc4\xa7\x99\xf1\x5c\xc7\xb0\xf9\x65\x22\x8c\xc0\ +\xbb\x97\x77\xb7\x97\x97\x97\xdb\xa7\xdb\x2f\xb7\x5f\x3e\xfd\xf1\ +\xf6\x82\x5b\xc3\x11\x7a\xc7\x17\xf1\x85\x0b\x17\x2e\x5c\x78\x84\ +\xeb\x0b\xb5\x0b\x17\x2e\xfc\x36\xc0\xb5\x59\x5e\x6b\xb7\xeb\xf2\ +\xaf\x07\xea\x9d\x5d\xef\xf5\xfa\xa9\xd9\xfe\x62\x5a\x02\x5f\x3c\ +\xbd\x7c\xfa\x70\xfb\x1d\xfe\x76\x38\xee\x60\x8c\x2b\x63\x5d\x74\ +\xe6\x4d\x46\xdf\xa0\x44\xcc\x17\xa3\xb2\xd1\x25\x17\x8d\x1f\x2a\ +\x31\x30\xfd\xbc\xc0\x4d\x9e\xf3\x61\x13\x37\xd9\x34\xcd\xcb\x2f\ +\xdb\x73\x29\x3f\xe6\x81\x9b\xa6\xfe\xed\x02\xf2\x6d\x9e\xd9\x7c\ +\x83\x14\x3d\x2f\xfe\x8b\x1b\x7d\x18\xd1\xe3\x37\x1f\x70\x53\x15\ +\x37\xbf\x54\x13\x7a\xc5\x55\x9f\xe3\xd3\xcf\x79\x21\x9e\xf6\x34\ +\xb7\x6a\x3d\x26\x8a\x63\xb5\x0f\x0c\x43\xe6\x0f\x1e\xb0\xb9\x08\ +\x36\x3b\x34\xcc\x27\x69\x6a\xfd\x90\x4c\x3c\x76\x3c\x6b\x6b\x67\ +\x33\xe4\xc5\x70\x08\xb9\xc3\x27\xd1\xdc\xa7\x91\x39\x4e\xdd\x1d\ +\x66\x2c\x7d\x1a\x90\x39\x20\x02\x53\xd3\x71\x24\x4c\xb2\x3e\xef\ +\x33\x3c\x21\x29\xa4\xf6\x51\x0a\xf7\x4b\x47\xb9\x8d\xef\x12\xec\ +\x8a\xf0\x41\xb9\x75\x94\xcf\x8d\xb3\x46\x57\xcc\xf1\x7b\xde\x5b\ +\x81\x6c\xb7\xaf\xc5\xdb\x6a\xe0\xc8\x5d\xb4\x0f\x12\xdf\x5a\x7b\ +\x87\x3d\x1f\xdb\x3e\x8f\xcd\x63\x1c\xaf\xb3\x0c\x62\x5f\x46\xb7\ +\x6a\x32\x3a\x00\xa2\xb4\x4b\x74\x3f\x81\x00\xc6\x71\x78\xe4\x4c\ +\x72\x3b\x4b\x8d\xfe\xba\xda\xe9\x17\xb9\x00\x72\xad\x93\xcb\x41\ +\xaf\x99\x4a\xe2\x4b\x20\x1a\xa3\xd9\xdb\x06\x78\xc3\x37\x1a\x2a\ +\xe9\x3c\xa6\x8d\xc1\x73\x29\x7d\xf3\xd1\xf3\xfc\x1a\x49\x8e\xe1\ +\x1c\xd7\x74\xe6\xea\x1c\x9d\xe7\xf7\xd2\xa1\x0f\x0e\xe7\x71\xfd\ +\xb4\xb5\x1b\x72\xa3\x47\xc3\xe9\x3c\xbf\x38\x43\xc3\xff\x41\x43\ +\xcf\x9a\xd0\xf1\xfd\xe3\x93\xe2\xf9\x5e\xc2\xf9\x45\x98\xf3\x8e\ +\xc6\x75\xcb\xf9\xc0\x4c\xa2\x5a\x69\x00\xf6\xb1\x70\x1f\x6d\xdc\ +\x58\xcf\x3e\x3b\xdd\xaf\x89\x05\xeb\x66\x0f\x6d\xf6\xb2\xb1\xde\ +\x83\xef\x3e\xd6\x8f\x75\xa2\x7d\xfe\xf8\xd7\xdb\xa7\x9f\xfe\x12\ +\x46\xac\x23\xd9\x8e\xc8\xfb\x16\x3c\x4a\x5f\xe3\xdf\x38\xdc\xdf\ +\x15\x8e\x1b\xf3\x88\xb8\xb8\xc2\xae\x11\x60\x7c\xb9\x7d\xfa\xf4\ +\xd7\xdb\xe7\x97\x3f\xde\xde\xbd\x8f\x63\xeb\xcb\x47\xbd\x97\x45\ +\xd3\x35\xd0\x17\x1d\xd2\x38\x3e\xf9\x75\x53\xe6\xe9\x99\xfe\x02\ +\x92\xb1\xcf\xf9\x00\xc6\x39\x83\x63\x67\x53\xa7\x49\x3b\xc6\x8c\ +\xec\xc1\x01\x3d\xc6\x3e\x16\x6c\x8c\xe5\x03\xaf\x63\x6a\xf0\x72\ +\x50\x8c\x37\x59\x63\xf2\xf5\x3f\xd1\x82\xd5\x8d\x57\xff\x2f\x9d\ +\x6c\xf1\x3a\xc2\xcb\x0b\xcd\xb5\xb9\xce\x5c\xef\x8c\x2d\x1a\xf6\ +\x18\x85\xfe\xdc\x34\x8e\xbe\x4c\xcb\x97\xc0\x68\xe1\x6b\x7e\x18\ +\x07\x9c\xfb\x6c\xe4\x23\x17\x3a\xcf\x21\x1e\x78\xea\x37\xe3\xb4\ +\x31\xac\xe5\xf9\x0b\x1c\x68\xf8\xe8\x41\x2f\x9c\x3b\x01\x82\x34\ +\x13\x72\xb3\x3e\xad\x01\x8d\x53\x96\x4d\xee\x55\xda\x72\x05\xee\ +\x4e\x2c\x14\xf5\x43\xac\x2c\xfb\x07\x04\xad\x08\x96\x3e\x98\x95\ +\xa1\xf3\x4f\x82\x94\x78\x55\x4d\x6d\x69\x3c\xce\xc0\x6e\xbd\xe8\ +\xe1\x39\x93\xab\x68\x02\x43\x99\xd3\x6b\xf6\x06\x0c\x7f\xcf\xb2\ +\xb1\x88\xdd\x50\xb2\x20\x32\xe6\xfe\xed\x70\xde\xbd\xe6\x65\x63\ +\x6c\xb4\xe6\x29\xbe\x09\x2d\x7f\x6d\xe8\x00\xf7\x73\x10\x4d\x1c\ +\x4d\xda\x1d\xda\x22\xa7\x68\x41\x6e\xbd\xdc\x9e\x4b\x60\x72\x6d\ +\xf7\xb1\x6c\x56\xfa\x8a\x14\x1f\xe7\x07\xcc\x49\x3e\x8a\x01\x46\ +\x7a\xce\x2c\x2d\x88\x3a\x5c\x91\x05\x52\xec\x1c\xcf\xc3\x8b\x32\ +\xb0\x8c\x5e\xcf\x09\x15\x75\x20\x0c\x8e\x84\x6b\x1f\xfa\xea\x00\ +\x9a\xb1\x80\xb6\x1a\xa8\xb4\x19\x2b\x5f\xe7\x21\x9f\x17\xfb\x79\ +\x8d\x3a\xdb\xf5\x05\x59\x9c\x23\xc3\xed\x31\x34\xe4\xc7\x65\x10\ +\xe3\x10\x50\x17\x24\x78\xe8\x79\xfe\x64\x0d\x68\x71\x1e\xcf\x3c\ +\x70\x3c\x3f\xe6\xb8\x99\xcb\x7c\xce\xcd\xe3\xc6\xd9\x97\x9c\x9a\ +\x6c\xd5\xb2\x1d\x5d\xb6\xac\xc5\x69\x36\x9b\x31\x35\x80\x3d\x7c\ +\x75\xd5\x2a\x01\x66\xb5\x98\x07\x7b\x3c\x84\xde\xb3\xc5\xc2\x4d\ +\xf3\xc2\xfa\x81\xd0\x6f\x6b\xf2\xfd\xe3\xdd\x5f\x6f\x3f\xff\xf5\ +\xcf\xa1\xfe\x94\xf7\x4b\xb0\x08\xcd\x85\x0b\x17\x2e\x5c\xb8\x8b\ +\xeb\x0b\xb5\x0b\x17\x2e\xfc\x36\xe8\x57\xf2\x67\xd7\x68\x3b\xde\ +\x5c\xcf\xef\x78\xb6\x96\x7d\x5c\x49\x16\x54\xf4\xe5\xd3\xc7\xdb\ +\xcb\xc7\x9f\xe3\x82\x32\x62\x79\x71\xcc\x4b\x53\x5e\x78\x8e\x86\ +\x2b\x63\xf6\x6c\xe8\xd2\x4f\x2d\x9a\x3c\x7f\x58\x37\xcf\x27\xf9\ +\xc1\x99\xcc\x3e\x12\x70\x59\xcb\xab\x76\x03\x17\xbc\xf8\xd2\x8c\ +\xe3\xe2\xaa\x1f\xfd\xb0\x75\x85\x1f\xf3\xfd\x9c\x2d\xb5\xfe\x0d\ +\x34\xcd\x59\x31\xe8\x60\xb3\x31\x67\xce\x1f\x31\xe4\x64\x9d\x6a\ +\x88\xd9\x8e\x79\x71\xce\xae\x9f\x5a\x72\xe8\x64\x77\x8e\x8d\x0b\ +\xe4\xf8\x43\x88\xc2\x04\x35\x20\xb2\xc3\x4f\x00\x26\x8d\xa5\x1e\ +\x22\x2a\x07\x80\x9d\x1c\x33\x32\x46\x4d\x8c\xc3\x18\x89\x51\x8f\ +\xcd\x46\x3b\xa8\xe8\xbe\x15\x91\xa4\x3c\xfc\xec\x66\x8e\x81\x2e\ +\xeb\xd7\xbc\x3c\x4c\x10\xe0\x98\x83\x05\xf8\x8c\x91\xeb\xc8\x18\ +\xc3\x3d\x88\x4f\x3a\x20\x0f\x09\x33\x10\xde\x49\xcc\xf7\x46\x70\ +\x20\xa0\x18\xe2\xa0\xeb\xa8\x9c\x3d\x94\xe3\xcc\x33\xf1\x83\x22\ +\x77\x70\x9c\xd7\x91\x79\x2b\x5c\xe1\x5b\xaa\x3c\x97\x2f\xc5\xa4\ +\x7d\x9c\xf4\x84\x24\xb6\x67\x3c\xa7\xba\x0d\xdb\xfc\x46\xf6\x38\ +\xec\xda\x3b\x1b\x0d\x62\x83\x86\xa7\x0f\xf6\x05\x38\x45\x54\xa5\ +\xc2\xa4\x4d\xe8\xbc\x39\xb4\xbd\x44\xdd\x00\x8d\xde\x26\x40\xbb\ +\x13\xc0\x32\x1c\xcf\x21\xab\x26\xd0\x65\x08\x4b\x13\x8b\xec\xb9\ +\x46\xb4\x57\xe8\x9c\xc4\x9b\x13\x25\x40\x0f\x3d\x1a\x4c\x44\x78\ +\xc2\x44\x90\xe7\x44\x9d\x1f\x8b\x4a\x7f\x70\x3c\x37\x22\xa5\x9f\ +\x57\xd1\x27\x87\xa0\xce\xff\xfe\x01\x88\x71\x2e\xaf\xf3\x3c\x6b\ +\x04\xc7\xf7\x03\xf1\xe3\x37\xd4\x64\x7f\xce\x58\x38\xfa\x19\x8a\ +\xd0\x6b\x6c\x8d\x57\x36\xc6\x8f\xe7\x04\xfb\x79\x8e\x1d\x08\xe7\ +\xb8\x9b\x13\xaa\x13\x55\xd3\x46\x0f\x53\xbc\x7a\xb5\xb1\x4d\xa4\ +\x8e\x89\x90\xe3\x8d\x2b\xcc\x8d\x2d\xed\xe0\x31\xe4\xeb\x87\xbf\ +\xde\xbe\x7c\xf8\x29\xb8\x4f\x27\x73\x40\xa5\xd3\xc9\xdd\xc7\xa3\ +\xb4\xaf\x2c\xfb\xef\x07\xdc\x4b\x04\xde\x07\xb1\x4f\x7e\xfa\xe5\ +\x4f\xb7\xf7\x3f\x7c\xbc\xfd\xf8\xfe\x17\x86\xad\x40\x4c\x5f\xe2\ +\x40\x87\x06\x4e\xf1\xd8\xa3\x43\x08\xa4\xab\x3d\x7c\x08\x4d\xa0\ +\x2e\x64\xd2\xa3\xad\x56\x2c\xf1\x74\x0b\x0e\xe3\xa1\xc7\x52\x7d\ +\xda\x39\x2f\xdf\x20\xf5\x0d\x48\x1e\x83\x50\xd1\x4e\x3d\x63\x78\ +\x95\x43\x87\x97\x9c\xfa\x78\x65\xb1\x31\x83\x2f\x3d\xd7\xca\x2f\ +\xc5\xdc\xf0\x12\x64\x0c\x3e\xb4\x4b\x3c\x79\xfd\x3f\x38\xf9\xb1\ +\x2c\x1e\x3d\xc7\x49\x1b\xe1\x3c\x05\xe4\x1c\x4c\x8a\xb3\xc6\xe3\ +\x61\xa3\x51\x0b\x32\x0c\x69\xe8\xf0\x21\x0e\xbe\xc0\x3d\xa1\x30\ +\x9b\x22\x65\x64\x9f\xb9\x32\xb9\x40\xe7\x97\x09\xed\x0c\x93\x75\ +\x00\x3a\xf0\x6e\xe8\xd8\x27\xa1\x67\x86\x2a\x29\x6a\x21\x10\xeb\ +\x91\x7e\x21\xf5\x5a\x42\x8f\x1e\x24\xae\xcf\x57\x7d\x6a\x72\x7b\ +\x58\x6a\x83\x66\x82\xc3\x25\x31\x66\x21\x82\x31\x5a\x01\x18\x6e\ +\x1d\x8d\x67\xc8\x7d\x2c\x35\xab\x63\xd3\x0c\xa2\x79\x00\xb6\x6e\ +\x67\x23\x26\xe7\x37\x44\x9f\xc8\xda\xbc\x4c\x84\xc3\x63\x96\x0f\ +\xd8\xa2\x1f\x63\x23\x64\x81\x6c\x0d\x33\x35\xf6\xbf\xc7\xaa\x58\ +\x18\xe4\x48\xf8\xb8\xa8\xe8\x64\x1a\x3e\x27\x19\x47\x09\x98\x68\ +\x53\x80\x67\xc7\xb4\x05\xef\x42\x22\x27\x36\xcf\x2f\xc7\x29\x91\ +\xe3\x26\x5a\xa0\x23\x69\xd7\x2a\x34\xe2\x70\x5e\x8d\x18\xed\x25\ +\xe7\x58\xa3\xad\x7b\xc6\xd4\xc5\xd2\x62\x76\xa3\x3e\xe8\x1e\x4a\ +\x93\x86\x63\xd3\xfb\xc1\xa1\x21\xa6\x38\x16\xea\x33\x86\x07\xe6\ +\x94\xdc\x38\x7f\xea\x9c\x4b\x6d\x9e\x13\x75\xce\xe3\x33\xe3\xd0\ +\x87\x06\xd7\x13\x8c\x0f\x1e\x36\xcf\xd7\x91\x6b\x1d\x2f\x99\x10\ +\x0b\xa2\xde\x17\xc8\xc1\x4e\x7f\x6d\x9a\x72\x6b\x63\x3d\x01\xf5\ +\xde\xcf\xb9\x8e\x0d\xf4\xb3\x95\x69\x23\x3b\x9e\x39\xc2\xe0\x1c\ +\x8a\x0c\x0e\x1d\x79\xb5\xda\x36\xe0\x71\x0d\x09\x2d\x86\xfe\xf2\ +\xc3\xed\xf3\xbb\x8f\xb7\x9f\x7f\xfe\x9f\xe1\xe0\x9d\x83\x91\x0b\ +\x17\x2e\x5c\xb8\xf0\x04\xae\x2f\xd4\x2e\x5c\xb8\xf0\xdb\xe2\xde\ +\x75\x1a\x2f\xec\x64\x12\x67\xf6\x8a\x9d\x2e\xaf\x4f\x0d\xd1\xb1\ +\xcc\x5f\x55\x73\x18\xbf\x94\x76\xfb\xf8\x97\x88\x7c\x0c\x0e\x57\ +\xc6\xa9\xc5\xa2\x5d\x85\xf2\x66\x1e\x83\x68\x2d\x96\x71\x25\x35\ +\x3e\xed\xbc\xbc\xcd\x0f\xfd\xe2\xd4\xc0\xf6\xde\x6d\x68\x74\x71\ +\x3c\x62\xf0\x7d\x45\xef\x0b\x78\xd8\x6c\x31\x07\x8d\x81\xb8\x34\ +\xd0\xe2\xcf\x7b\xe9\x13\x01\x3e\x30\xc4\x05\x34\xd6\x03\xf3\xcd\ +\x4f\x18\xf2\x11\x43\x6e\xd0\xfe\x52\x0e\x1c\xf3\x60\x67\xa3\x06\ +\x71\xf3\x9a\xfa\x98\x62\x72\xc9\xc3\x25\x32\xe6\x3f\xb5\x51\xb1\ +\xec\xcd\x79\x08\x91\x3d\x3e\x28\x41\x0e\xb5\x89\xb2\xb3\x5f\xfd\ +\x19\x9d\x1c\x07\x0a\xd8\xad\x3c\x20\x7e\x8e\x1e\xb8\x28\xe5\x1b\ +\x45\xe8\x50\x19\x9f\xf3\x00\x76\xfe\x35\x49\xa7\xa0\x8f\xb6\xb8\ +\x45\x94\x6f\x02\xe8\x2b\x0d\x94\xdb\x3e\x88\x4d\x92\x1c\xf3\x0c\ +\x6b\x4e\xf6\xeb\x30\x47\x58\xa8\xce\x38\x4f\xbb\x1f\xe9\xed\xad\ +\xf8\x96\xdc\x7b\xe8\x75\xbf\xa6\xf6\xfd\x9c\x79\xbf\x94\xf6\x89\ +\xc1\x9e\x90\xdc\xdd\xed\x87\xdc\x45\x7b\xac\x7f\x2c\xd6\x35\x88\ +\x0e\x45\xd7\xc6\x6b\x3e\x2d\xb1\xb1\xac\xc2\x43\xd7\xc7\xf2\xeb\ +\xe5\x80\x96\x0a\x49\xc9\x92\x74\x5e\xd5\x6a\x45\x6d\xe2\x07\x26\ +\xc6\x8c\xa2\x46\xd3\x14\x4d\x52\x37\x22\x80\x92\x84\x21\xfd\x18\ +\xc8\xb5\xf0\x5a\x51\x53\x8c\x4b\x85\xd8\xf3\xfc\x16\x27\x45\xdd\ +\xf4\x88\x2c\x8a\x49\xa9\x26\x35\xe8\x7d\x0e\x1f\x0d\xa7\xf2\x89\ +\xe3\xf9\xb5\xd7\x00\x07\x9d\xfb\xa0\xdb\x6f\xa4\xf9\xdc\xaf\x5a\ +\xf6\x63\x1c\x7e\x19\x87\x2f\xe5\x94\x57\x2d\x9e\x6e\x9c\x1b\x53\ +\xdb\x78\xa3\x8b\x86\x35\x02\xb8\x66\xb4\x38\x47\xb7\x06\xad\x67\ +\xe3\x61\xe2\x01\x17\xc1\x8a\x2d\x36\x35\xd1\xc7\xbc\x35\x0f\xf7\ +\x6e\x58\x9f\x90\x7d\x8a\xf7\xef\xd7\x0f\xb7\x4f\xaf\x1f\xc3\xd9\ +\x01\x33\x45\xbd\x0b\xbf\x1e\xb4\x7d\xf1\x32\xf8\xe9\xcf\xff\xfd\ +\xf6\xfa\xfa\xe7\xdb\x0f\x2f\xf8\xb6\x36\x08\x86\xf2\xf8\x0f\x4b\ +\x37\x23\x65\x73\x29\x83\x5d\x04\xec\x16\x6c\x8f\x23\x4e\x1a\x07\ +\xac\x17\x27\x32\x43\xf4\x2b\x1e\x0b\xe6\x9a\x43\x0f\x2e\xf9\x7a\ +\x29\xc4\x42\x9a\xec\xa3\x79\xce\x78\x25\x57\x83\x1f\xc7\x2f\x5f\ +\x3a\xa9\xa1\xce\x63\xb9\x1e\x6c\xbe\xf4\x50\xc3\xb6\x72\x46\xc3\ +\xab\x48\xf1\x7c\x99\xa6\xff\xe2\x97\x30\x88\xec\x53\x5f\x36\x5e\ +\x17\x61\x47\x12\x7a\x8c\x23\xad\x34\x9c\x43\xc6\x30\x16\x8c\x91\ +\xef\x1a\x38\xff\xc0\x05\x21\xbe\xb6\x77\xd3\x0c\x40\xa0\x9a\x76\ +\xb5\x18\x39\xaa\x95\x82\xe6\x8b\xc9\x7e\x2c\x0a\xf6\x58\x09\xc7\ +\x0f\xb5\x9d\x75\x2e\xb6\x19\x8d\xb6\x1c\xfd\x91\xc1\x1a\x39\x27\ +\x3c\x18\x5e\x81\xe8\x64\x55\x34\xfb\x04\xdc\x4e\x85\xed\xfc\xec\ +\xce\x41\x01\x34\x5a\x0f\x3f\xb2\x40\xb6\x6e\x2d\x38\x0d\xbc\x1d\ +\x55\xc6\x35\x7b\xdd\xce\x25\xdf\xc3\x9d\x7f\x1b\x9c\xd8\x9b\x4d\ +\xf9\x7a\x0d\x84\x5d\xdb\x64\x07\xed\xfb\xd3\x78\xa6\xf7\x12\xc3\ +\x44\x6e\xe6\xb7\xd8\x04\x26\xee\xf8\xec\x01\xda\x83\x28\xeb\xa0\ +\x99\xa5\xea\xe6\xf1\x89\x8d\x9d\xd3\x98\x41\xce\x02\x6f\x07\x41\ +\x16\xb8\x86\xdc\x08\x3c\xce\x68\x35\x84\xb3\xa8\x13\x93\xea\x90\ +\x23\x3f\xf7\x15\x6d\x81\xef\xef\x09\x0c\x5b\xa3\x72\x9e\xb5\xd6\ +\xcc\xa3\x45\x91\x34\x68\x84\x9d\x24\x7c\x3c\xa4\xb4\x35\xbd\x7e\ +\xcb\xc7\xfb\x7f\xc5\xd4\x78\xbe\x2b\xdb\xe7\xe5\x11\xd7\x75\x0d\ +\x5a\xf0\x4c\xc7\x17\x67\xbe\xb6\x48\x9e\xb6\x7c\x24\xa3\x77\x2d\ +\x71\xae\xb1\xd4\x8b\xc6\x47\xc6\xd0\x38\x76\x71\xb0\xe0\x67\x3c\ +\x7b\xa3\xc7\x60\xa8\xcb\x2d\x08\x27\x41\x53\x41\x2e\xb0\xa9\x55\ +\x1f\x7e\xd2\xb9\x97\xc9\x4f\xdb\xc9\xf3\xc4\xc4\x31\xbf\x78\x9f\ +\x7e\xf9\x72\xfb\xeb\x5f\xff\x10\xb1\x5f\x28\x74\x9d\x81\x03\x71\ +\xe1\xc2\x85\x0b\x17\x02\xd7\x17\x6a\x17\x2e\x5c\xf8\xfe\x38\xbb\ +\xee\x32\xaf\x6b\xbc\x3d\x7a\xcc\xf6\xa3\xeb\x38\xe8\x7a\x6d\xd8\ +\x6e\x40\xcb\x3f\x0c\x1d\x17\x92\xbf\xfc\xf1\x8f\x71\x31\x8d\x3f\ +\x4b\xf4\x59\xdf\x79\xe0\x42\x33\xae\x80\xf1\x67\x7d\x74\x67\x23\ +\xda\x6b\x14\xc9\x2b\xcc\xba\x1c\x6e\x57\x9c\xc5\xc1\x62\x28\xe3\ +\xd1\xda\xc7\xf7\xd6\x23\x66\x5b\x17\xf2\xa2\x91\xaf\x06\xdb\xbe\ +\x6d\xb6\xfe\xc9\x80\x0d\xf9\xbc\xbd\x43\xdb\x9c\xf8\xb0\xa1\xf7\ +\x3a\x30\x37\x6c\x7c\x78\xe0\x0d\xd5\xcc\x89\xfe\x33\x6f\xc4\xc6\ +\x78\xe0\x98\x93\x79\xcc\x69\xb9\x35\xee\x3a\x37\xad\x0f\x1e\xb2\ +\x41\xc3\x43\x0d\x3a\xe4\xc9\xb1\xef\x5c\xd8\xd6\xd4\x16\x6b\x31\ +\xb7\x58\x30\x25\xed\x81\xc8\xe1\x07\xad\xd8\x81\x88\x07\x23\x8d\ +\x50\xe6\x64\xb8\x9d\x43\x0a\xeb\xc6\xd1\x33\x6a\xe7\x87\xbb\x3c\ +\xee\x4c\xa7\x9b\x0b\xcf\x2d\x81\xe0\x28\x75\x80\x74\x4d\x90\x5f\ +\xc4\x81\x57\x4d\xd7\x8a\x3e\x42\x55\x37\xc0\x6d\x93\xb6\x30\x7b\ +\x67\x28\x55\xab\xb7\xcb\x04\x87\xed\xc1\x3e\x05\x3b\xdd\x16\x4d\ +\x68\x53\x95\x3a\x66\xff\xe9\xda\x89\xb7\xea\xdf\x02\xd4\xfe\x9a\ +\xf9\xec\x73\x8e\xac\xb5\x15\xd9\x27\x16\x1e\x84\x09\x6a\x36\x42\ +\x50\xa4\x7d\x98\x15\x31\xe0\xa3\xae\xbf\x8e\x66\x28\xe0\x30\xf5\ +\x59\xc7\xaf\xc5\xfe\x1d\xb2\x8f\x1b\x2d\x00\xbc\x2e\x64\x15\xd5\ +\x62\x1d\x7d\x0e\x7c\xad\x75\xac\x35\x12\xab\xec\x4c\x57\xa8\xb8\ +\x0c\x8e\x19\xad\x1f\xa3\xbd\xe6\xb8\xf9\x1c\x8d\x77\x94\x48\x44\ +\x1e\x6c\xb9\xee\x55\x4b\x44\x9d\x33\x4b\x8f\xf4\x58\xf0\xdc\xeb\ +\x3e\xc2\x79\xbe\x05\x87\x3f\xd5\xe8\xf3\xa3\xec\xd4\xb1\x16\xce\ +\xaf\xb2\x79\xfe\xce\xf3\x79\x7d\xa9\x46\x8d\x1a\x39\xfe\x60\x45\ +\x9c\x95\x5d\xa7\xc5\x5d\x17\x76\xad\x47\x02\x5e\xb0\x69\x09\xb6\ +\xf6\x3d\x96\xd1\xf4\x4c\x2e\x40\x03\xa4\x58\x8f\x43\x0f\x36\xc6\ +\x4e\x9e\xdb\x23\x75\xec\xd9\xb0\x0e\xd1\xa8\xc1\x3e\xe1\x59\x9f\ +\x7f\xf6\xf1\xf3\x27\x7d\xa1\x86\x8c\xc3\xfe\xdf\x30\x17\xbe\x03\ +\xb0\xb1\x8d\xdc\x45\xf8\x49\xf7\x1f\x7e\x87\x3f\x9f\x15\xfb\xe3\ +\xdd\x4b\x70\x78\xad\x7b\x9f\x62\x17\xea\xb5\x8f\xa6\xf7\x33\x3f\ +\x58\xa2\xd0\xfd\xb5\x87\xd1\xe3\x80\xf6\x30\x7e\xcb\x6b\xd4\x67\ +\xbc\xd9\x6e\x80\xec\x31\x36\x60\x9b\x7d\x24\x1d\x1f\x7e\x99\xf0\ +\xca\x26\x5f\x2e\xc1\xc3\xa7\x9e\xc9\x6c\xf9\x52\x8c\x86\xf9\xb4\ +\x39\x41\x17\x89\x3e\xbc\xbd\x7d\x86\x1f\x0d\x8f\xe8\x39\x0e\x39\ +\x8d\xc1\xd7\x78\xac\xa3\x5e\xeb\x98\x03\x7a\xd5\x86\xae\xfb\x61\ +\xe6\xf8\x28\x10\x5b\x07\x9d\xeb\xd0\x96\x2f\x43\x1d\x7b\xac\x43\ +\x54\xc2\x79\x89\x1c\x91\xaf\x1f\x6b\xda\xcb\x29\x54\xf9\x88\x71\ +\x45\x58\x9d\x7a\x47\x31\x07\x47\xd0\x67\xb1\xc9\xda\x20\x02\x59\ +\x59\x4e\x76\xb4\xfa\x44\x02\xe0\x7c\x83\x9f\xe3\x91\x49\x71\xd3\ +\x62\x3e\x22\x63\x99\x61\x43\x31\x69\xb5\xfe\x58\xe8\x3c\x93\x66\ +\x22\x0c\xbd\x11\xec\x51\x5a\xad\xff\x43\x58\xbf\xb6\x27\xb0\x95\ +\x05\x59\xeb\x96\x36\x1d\x12\x0d\x3b\x2e\x60\x7d\xe5\x19\xf6\xcf\ +\xda\x37\x80\xe9\xac\x13\x8b\xb5\x4d\xc5\xed\x77\x6e\x41\x85\xbc\ +\xb7\xbb\x36\xec\x43\x6a\xec\x61\x09\x8f\x20\x97\x81\xe8\x38\x9d\ +\xc0\x38\xa2\x02\x3d\x6f\x48\xb5\x88\xd6\xc3\x47\xa4\xc8\xd8\xe9\ +\x49\x78\x5d\x1a\x92\x7f\x04\xe5\x79\x2b\x6c\xf4\x27\x25\x94\x27\ +\x74\x09\xed\x58\x30\xee\x1e\x1c\x90\x3e\x02\xea\x93\x4b\xe7\xc8\ +\xa5\x0b\x3d\x38\xda\xa3\xe1\x5c\xab\xf3\x5a\x6c\xf1\x7c\xff\x60\ +\x6e\x74\x38\x47\x56\x9d\xd6\x9c\xab\x96\x75\xd1\x22\x5c\xf1\x28\ +\x8c\x1e\xe7\x86\xf9\xdc\x18\x3e\xce\x9d\xd6\x4d\x6d\x3e\x57\xc3\ +\x76\xbd\x69\x5c\xb8\xdd\xc7\x02\x80\x1d\x47\x4e\xf1\xd4\x85\x9f\ +\x31\x19\xd9\xc5\xa2\x34\x6c\x64\x89\xe2\x92\x62\x1f\x4d\x1a\x18\ +\xb6\xf2\x37\x9f\xb1\xae\x68\x78\x84\xa1\xf9\x64\x7b\xff\x7a\x7b\ +\xfd\xfc\xe7\xdb\x2f\xf8\x6b\x3d\xc1\x88\xef\xfd\x74\xa4\x5f\xb8\ +\x70\xe1\xc2\x85\xc4\xf5\x85\xda\x85\x0b\x17\x7e\x1d\xf8\x1a\x6c\ +\x87\xb3\x58\xe7\xdf\x7a\xed\x06\xfd\xdd\xeb\x3e\x05\xeb\x82\x16\ +\x08\x1d\xfe\x44\xcf\xeb\x2f\x3f\xdf\xde\x83\xfe\x8c\x1b\x08\xd1\ +\xe3\x22\x14\x3a\x3c\x71\xd1\xc9\x9b\x90\xc1\xe1\xce\x44\xc6\xd5\ +\xd0\x91\x88\xd6\xc0\x2b\x56\xd4\x40\x84\xa2\xec\x11\x4b\x1e\xb6\ +\x88\x18\xd7\x66\xfa\xd0\xc4\xd5\xaf\xe6\x30\xfb\x68\xfe\x7f\x39\ +\x98\xaf\xfa\xd4\x25\x67\x5e\xf9\xe1\xb7\x0b\x67\xdc\x4c\xd5\x6f\ +\x26\x64\x5e\xb6\x31\x56\xcf\x77\x8d\xd6\x38\x16\x64\xc3\xb7\x06\ +\x9d\xd7\x05\x66\x71\x0a\x93\x0b\x26\x8d\xf4\xe0\xa2\x61\x9a\xa0\ +\x62\xa7\xb0\x0b\x07\x3e\x86\xa1\xad\xa4\xd4\x00\x30\xf4\x81\x44\ +\x09\x89\xb0\x87\xdb\x03\x81\xc5\x05\x36\x54\x41\xb1\xbc\x89\xd2\ +\x0e\xaa\x6d\xce\xbd\xa1\xd2\xf1\x4d\x9e\x8e\x23\x15\xe3\x60\xa8\ +\xb1\xa2\x3b\x11\x41\x9a\x8b\xdc\x0e\xcf\xe2\x9e\x16\x31\xc7\x17\ +\xdd\xdd\x34\xee\xa3\xb4\xb3\x7f\x0a\xf8\x70\xbc\x60\xec\x6d\xa1\ +\xdb\xcf\x60\xcd\xff\xde\x70\xed\xb7\xcd\xe9\x8d\x7a\x88\xbd\x69\ +\xee\x24\xde\xad\x9b\xf9\x8c\x77\xa1\xfb\x88\x93\x8e\x85\x29\x41\ +\x1e\x63\x10\x1d\x77\x11\xc1\x1b\x02\x4d\x0b\x40\x5a\xf6\x21\xef\ +\x58\x68\x27\xd1\xb8\xae\x32\x70\x64\x1a\x22\xe8\x5a\xd6\x9d\xeb\ +\x11\x89\x11\x8e\xd3\x69\x75\x32\xbb\x69\xc4\x9c\x54\x0d\x5a\x37\ +\x7b\x30\x73\x25\x61\x59\xaf\x79\xf6\x10\x65\x87\xb6\x9e\x3b\xa3\ +\xf1\xde\xac\x82\xe4\x79\x3e\xa5\xc9\x40\x3b\xdf\x42\x2f\x4e\xe7\ +\xe2\xd4\x5b\x93\xcd\x71\x9e\xcf\xeb\x37\xd7\xe6\x18\x4f\xb2\x1c\ +\x07\x9c\x4a\x8c\x79\x8a\x23\xdc\x03\x5d\x54\xe8\x47\x44\x20\x8c\ +\xb1\x2d\x15\xd3\x33\x15\xac\x41\x23\xc7\x51\xc3\x57\x04\xec\x19\ +\x57\xd3\x4f\x8f\x47\x83\x9f\xb1\x91\xa3\x75\x7a\xf7\xe9\xe3\xed\ +\xf3\x87\x0f\x39\xe6\x6f\x80\xdf\x6c\xa0\xbf\x03\x60\x37\x9c\x62\ +\xec\x65\xbe\xa8\x5e\x3e\xdd\x7e\xf9\xe5\x7f\xde\xde\xfd\xf0\x3e\ +\xec\x8f\x0c\x68\xbf\xc5\x21\x16\xbb\x56\x87\x1b\x99\xd1\x90\x97\ +\x2f\x48\x73\x05\xee\x6b\x18\x6d\x9c\xb6\xf1\x4b\x1b\x06\xec\xf2\ +\x01\x94\x8d\x4e\x2d\xc7\xf4\x38\xa8\x8b\x47\x90\x6a\xb8\x49\x0a\ +\xbf\xf1\xf9\xc0\xcb\xc3\x71\x7d\x69\x06\x2e\x5b\xe5\x42\x0f\x5b\ +\x37\x2f\xf5\x67\x1e\xb1\xbe\x0a\x48\xd7\xb4\xe0\xf8\x27\x1e\xf3\ +\xbc\xd1\xe2\xd1\x85\x01\x1e\x2d\xb9\x8a\x05\xc7\xda\xd1\xc2\xb3\ +\x06\x0b\x3c\x3e\x7f\x79\x61\x3e\xf5\xa1\x43\x0e\x08\xd5\xf0\x79\ +\x22\x3b\x70\xc8\x81\x1e\x63\xe6\x52\xc1\xa8\x2b\x4f\xfe\xf0\x64\ +\x8d\x60\xf6\xd2\x67\xf9\x11\x0e\x60\x8b\x8f\xbd\xa7\x08\xc6\x4d\ +\xc3\x16\xc1\xf3\x67\x8c\x9d\x4e\x05\xd5\x75\x65\x7a\xed\xc2\x4a\ +\xd7\xef\xb2\x01\x99\xa8\x37\x3c\xad\x71\x45\x36\x7a\xf0\xc8\x09\ +\x55\xe6\xa1\xae\xb4\x20\xd0\xb0\xc5\xa2\x51\xc6\xc8\x00\x25\xb1\ +\x48\xed\x18\xed\x04\x92\xb1\xd9\xdc\xa1\xc9\x88\xb2\x63\xe1\x69\ +\x79\x58\xfb\x80\xd7\x31\x5d\xc2\xe1\x5d\x03\xba\x6d\xac\x9a\xbb\ +\xe8\xe2\xb5\x3d\x81\x55\x5e\x69\x61\xd4\xba\x15\x09\x1c\x88\x01\ +\xd3\x94\x78\x5f\x85\x53\x3c\x03\xe9\x9a\x04\xed\xfd\xdf\xb0\xfa\ +\x01\x53\xd5\x4f\x9a\x4d\x42\x80\x6c\x0f\x3d\xb0\x3b\x25\x04\xb3\ +\x90\x7c\xdd\x34\xd8\x5b\x8e\x4e\xe6\xf1\x95\xda\xb7\xc5\xd4\x87\ +\xb5\x52\x07\x22\x90\x66\x63\x4a\xd6\x39\xbd\x48\xd2\x4c\xd0\x8d\ +\x85\x69\xf4\xe6\x34\x3b\x05\x75\x2e\x88\x27\x78\xf6\x79\xde\xa3\ +\x8d\xf3\x1e\x9a\x62\x3c\x2f\x83\x47\x09\xc6\x65\xbb\x67\x8e\xfd\ +\x6c\xa5\x8b\x05\x7b\x7c\x51\xc7\x53\x64\x9c\x59\x93\xc3\x42\xb5\ +\x53\xd3\x72\x8a\xc7\x83\xf6\x88\x8f\xda\x61\xab\x4c\x36\xd4\x4e\ +\x3b\xf7\x4e\x4a\xca\x40\x47\xb3\x02\x61\xda\x8e\x7e\xe4\x8b\xc4\ +\xd2\x71\x76\x5c\xcc\x7b\x1e\xdb\x4a\xdb\x2e\x1a\xdf\x17\xc8\xb2\ +\xa7\xf2\xe5\xcb\xed\xe3\x87\x3f\xdf\x3e\x7e\xc2\x17\x6a\xfa\xa1\ +\xab\x2c\x79\xe1\xc2\x85\x0b\x17\xee\xe0\xfa\x42\xed\xc2\x85\x0b\ +\xdf\x1f\xf3\x75\x9c\xf0\xec\x95\x99\x75\xe8\x6d\xef\xea\x75\xdc\ +\xab\x7d\x2f\x37\xc7\xf8\xfc\x97\x3f\xde\xde\xe1\x7f\xaf\xe0\xca\ +\x12\x4d\x57\xeb\xd9\xd4\xc1\x10\x85\x5e\xad\x82\xf1\xc4\x4f\xf2\ +\x62\x28\xdd\x10\x45\x08\x3e\x0d\xfa\xf5\x99\xdf\x3d\x73\x21\x4b\ +\x22\x7a\x3e\xd0\x83\xc2\x22\xe3\xd4\x54\xcb\x5b\x1f\xc9\x57\x1c\ +\x17\xc8\x35\x6f\x7e\x22\x08\x2e\x2e\xdc\xc9\x85\x9f\x7f\xe2\x6b\ +\xac\x1b\x2e\xea\xa1\xcb\x0f\x0e\xbc\xd3\x05\x7d\xe6\x46\x9b\x7e\ +\x13\x82\x3c\x5a\x0c\xcf\x1a\x90\x70\x91\x2d\xd7\x81\x4d\x53\x2c\ +\x2e\xd2\x88\xe4\x44\xfb\x83\x8b\x9a\xa1\x9a\x2b\x1f\x5b\x16\xfa\ +\xf4\xc4\xe3\x83\x14\x78\xf8\xb0\x11\xe0\xb3\xdd\x54\xd1\xce\x77\ +\x4c\xa0\x22\x96\xad\x5e\xf6\x47\x28\xe2\x0f\x3d\x13\x36\x14\x80\ +\x8c\x63\x3d\xb1\xe4\x9d\x17\xce\x51\x97\x70\x00\xeb\xd7\x20\x0f\ +\xcb\x12\x44\x6b\x05\xbf\x12\xcc\xcc\x32\x6b\x95\xf8\xe8\x95\x56\ +\x47\x88\xa1\xaf\xbb\x4c\x40\x18\x8f\xa6\x70\x32\xc6\x79\xe2\xa3\ +\x82\x8f\x81\x0a\x6b\xfb\x9e\x78\x6b\xbd\xa7\xf5\xb9\x39\x9f\xd5\ +\xef\xb5\x83\xa9\x78\x17\x15\x29\x0c\xb3\x76\x6a\x91\x3d\x8d\xa8\ +\xdc\xa6\x2d\x80\xc3\xf1\x9e\xc7\xfc\x06\xe6\xf9\xda\x0a\x47\xbf\ +\x49\x40\x22\xb1\xab\x1b\x58\x65\x1d\x0b\xe9\xc3\xb3\x57\xb2\x84\ +\x7d\x2c\x74\x2e\x31\x9b\x00\x9f\x86\xcf\x41\xa5\xa0\x51\x82\x3a\ +\xd7\x78\x6d\x45\x3b\x4f\x5e\x69\xcc\x05\xc1\xf3\x64\xcc\x4c\xe7\ +\x4b\x05\xf1\x60\x18\x2f\xb9\x3a\x37\xa6\xb6\xce\xc1\xd2\xd6\xf9\ +\x9e\xe7\xe2\xc6\xe5\xf9\x7c\x70\x38\xa7\x1f\x7f\x80\xa2\x5a\x68\ +\x6a\x0c\xba\xe6\x30\x57\x03\x1c\x9e\x8a\x1d\x01\x4e\x31\x85\x63\ +\xcd\x72\xe3\x97\x1c\xe1\x34\x01\x8e\x23\x03\x0b\xf5\xcd\x56\x5c\ +\xbd\xbe\x14\x08\x0f\x3d\xe7\xac\x75\x21\xe7\x1a\xd1\x5e\xf1\x93\ +\xd5\x9f\x3e\x80\xd9\x80\xca\xdf\x06\xeb\x41\xf7\xef\x01\x77\xd7\ +\x47\xdb\x96\x5f\xa0\x47\x7b\x8d\x7d\xf3\xf1\xf5\x4f\xf8\xc5\xb4\ +\xd8\x55\xb8\xae\x0a\x3a\xdf\xa3\xb9\xeb\xda\x61\x0c\x70\x1f\xa3\ +\x8f\x64\x58\x2c\x83\x38\xa3\x89\x75\x7c\xe7\xaa\x63\xaf\xb7\xcb\ +\x58\x54\x2e\x6e\x1e\x66\x2c\x1b\x06\xe5\x83\x3c\xe6\xa4\xeb\x00\ +\xc5\x18\x1e\x2d\x5e\x84\xd0\xb2\x06\xf3\xf2\x65\x13\x56\xbc\xa2\ +\xf4\xc8\x98\x79\x4e\x02\x42\xe8\xc1\x33\x39\xd7\xbd\x38\x86\x99\ +\xc3\x14\xf2\xf2\xd5\xe7\x17\x72\x68\xd4\x7a\x1c\xc8\x51\x0b\xe3\ +\x05\x87\x07\x6b\x33\x20\xee\x33\x36\x7a\x3c\x33\x4f\x37\x4f\x61\ +\x83\xc6\x23\x6d\x1b\x14\xe7\xf6\x0e\x5f\x31\xf0\x80\x7c\x0a\x12\ +\x73\xbc\x01\xeb\xcd\x5e\x5d\x47\x51\xcc\x4d\x7b\x05\xf8\x35\xd6\ +\x12\xe7\x50\xae\x50\x62\x4d\xf3\xa1\x02\x5e\xb1\xae\x18\xb5\xa8\ +\x6b\xa1\xdc\x3a\xa2\xb2\x3e\x8e\x0e\xe8\x9a\x2c\xa1\x08\x64\x1e\ +\x8f\x60\x9e\x2b\x6d\xf2\xd6\xc0\x41\x20\x94\x24\x8d\x75\x1c\xc6\ +\x00\xc4\xa2\x9b\xe6\x90\x00\x2f\x5d\xa9\x89\x9d\x16\x00\x8f\x36\ +\xab\x9f\xc7\x18\x6f\xd8\x6b\x2d\xfa\x3d\xe8\xf6\x04\xba\xb4\x6c\ +\x1b\xd5\x0e\x44\xb4\xd1\xd1\x28\xbb\x29\xd2\x68\xa1\x44\xec\xcb\ +\x95\x2c\x3f\x13\xdc\x46\x97\xc8\xb8\x2c\x21\x0d\x1c\x3d\x6b\x5c\ +\xa6\xad\x71\x9c\x1e\x8f\xb1\xec\x57\x04\xaf\xcc\xd1\xb4\x10\x9a\ +\x19\xb6\xf6\xb6\x35\x73\x2c\x3d\x07\x3b\x16\x77\x46\x0b\x86\x39\ +\xd6\x60\x44\xd0\xd3\x3e\x10\xea\xb5\xfb\x60\x98\x48\x13\x48\x5b\ +\x61\x55\xa7\x8d\x73\x60\xd9\x6e\x58\x28\xa7\x1a\x3a\xd2\x5c\x94\ +\xb6\x78\xd1\x69\xe3\xb5\xad\xf3\x3f\x35\xf4\x63\x9b\xa5\x8e\xe7\ +\x66\x26\xca\x1f\x7d\x9b\x57\xf6\x8e\xd1\x26\x87\x6d\xef\x73\x58\ +\xab\x3f\x8e\x0a\x2d\x1c\x17\x13\xc0\x1c\xd2\x24\xc2\xe1\xbc\x40\ +\xea\x08\x51\x38\x75\xd1\x3e\xbb\xa6\x02\xf9\xfe\x8b\x31\x83\x88\ +\x46\x5b\x8a\x78\xbc\xdc\x3e\x7e\xfe\xf3\xed\xc3\xc7\xbf\x48\x9c\ +\x35\x2f\x5c\xb8\x70\xe1\xc2\x7d\x5c\x5f\xa8\x5d\xb8\x70\xe1\xd7\ +\xc1\x7a\x2d\xf6\xe8\xda\x2c\x2f\xf8\xb6\xb8\x17\xdb\x01\x7a\x8f\ +\xf7\x20\x17\x37\x1a\xbf\x7c\xf8\xe9\xf6\xf9\xf5\xd3\x72\x13\x27\ +\x9d\xbc\xf0\x9c\x6e\x66\xba\x03\x9f\x4d\x29\xd0\xc5\x65\x71\xc5\ +\x72\x1a\x8c\x93\x8c\xa5\x6d\x06\xd4\x57\x5c\x9d\x75\xd4\x76\x1f\ +\x17\xf8\x79\x97\x45\x37\x4e\x31\x27\x70\xb6\x43\x83\x0b\xe4\xd4\ +\xa8\xe9\x66\x2a\xe7\x03\xde\x7a\x6a\xdc\xa0\x53\x7d\xf6\xe6\x23\ +\x47\xff\xbf\x47\xb5\xf5\x19\x40\xbc\x7c\xf4\x98\x9f\x2e\xe0\x55\ +\x3f\xd6\x99\x1c\xea\xa1\x85\x1d\x50\x39\xc5\xfb\x4d\x20\xc6\xab\ +\x99\xcb\xbc\x6c\xe8\x6c\x90\x4f\x57\x7e\xee\x68\x85\x63\x71\xef\ +\x40\x8b\xba\x6d\x79\x86\xa1\x01\xe6\x7a\x64\xcf\x53\xef\xe0\xde\ +\xbc\x12\x1a\xb8\x30\xe6\x20\xd8\x53\x1f\xf5\x68\xc4\x82\x1b\x65\ +\x5f\x1f\x11\xb7\x47\x38\xd3\x60\x1e\x73\x2c\x3c\x12\xf9\xc1\x6d\ +\x03\xd3\xe8\x4b\xb2\xd5\x9e\x6d\x97\x45\x9c\xab\x3b\xd5\xfb\x4a\ +\xf4\x3a\xdf\x5a\x0b\x78\x6b\x8d\x31\xee\x9d\x4c\x8b\xa2\xb1\xbb\ +\x23\xed\x98\x65\xb1\xd1\x76\x9b\xf7\x6c\x93\x07\xea\x75\x67\xdc\ +\xd1\x1a\x96\x3b\x55\x1f\xe1\xb5\xc3\x78\x2e\x98\x10\xd1\x65\x5a\ +\xc3\x7e\x62\xb0\x86\x5e\xda\x99\xe6\xd0\xd3\x2e\x23\xd1\x6c\x9b\ +\x3e\x87\x60\xe9\x2f\xf6\x74\x0e\x83\x85\x63\x5f\x9c\xa8\xb0\x61\ +\x80\x62\x5c\x31\xd9\x7a\x9d\xd0\x44\x1f\x06\x99\x78\x42\xa5\xf7\ +\x85\x30\xe2\x3c\x3a\x9c\xd4\x99\x2f\x07\xbe\xff\xe4\x5a\x72\x38\ +\xff\xf2\xdc\x0c\x1d\x4f\xc6\x79\xce\x45\xef\x58\x6b\xf8\xd3\x8e\ +\xb4\x51\x0b\xbe\x6a\x8d\x46\x2a\x16\xad\x19\x0b\xd7\x43\x53\xe0\ +\x0c\x0c\x6f\x74\x9d\xb2\xa6\x24\xb0\x5b\x23\x65\x5f\xef\x71\x6a\ +\x58\x5f\xfd\x04\x35\x62\x78\xbc\x60\x03\xbf\x06\xb7\xfc\x0f\xb5\ +\xdc\x3b\x81\x61\x6d\x91\xc3\x3d\x04\x74\xcf\x6a\xff\x89\xa0\xad\ +\x8b\xfd\x11\x1f\x2b\x3f\x7f\x88\x5d\xf1\xd3\xed\xdd\xbb\xfc\xda\ +\x09\x74\x44\xf1\x5b\x86\xf8\x8b\x00\xdc\x84\xc9\xf5\xf7\x6f\xc3\ +\xb1\xfe\x2b\xae\xd4\x66\xc3\x42\x37\x1f\x23\x4e\x62\xa0\x72\x63\ +\xe9\xd7\x6d\xd7\xc0\x74\xcb\x97\x04\x1b\x18\x3d\xda\x31\x46\xcd\ +\x3b\xbd\x7c\x52\x1f\x11\x36\xe4\x28\x3f\xf3\xd0\xd3\x17\xe7\xdf\ +\x4e\x83\xcf\xbc\x8a\x65\xd3\xcb\x57\xb5\xf8\x80\xaf\x2f\xd2\x74\ +\x7d\xa4\xf7\xd6\xaa\xcb\x19\x46\x73\x5d\x3e\xb0\xfe\x0a\xd2\xcf\ +\x7c\xc5\x11\x4a\x23\xa0\xba\xd0\xa0\xc1\xce\x50\x1a\xd6\x92\x1b\ +\xb4\xb6\x20\xe6\x42\x8e\x4b\x30\xd5\x63\x5c\x5f\x73\x99\x61\x63\ +\x97\xbd\x98\x6a\x86\xf6\x4f\x67\x04\xd6\xac\xa5\x17\x0d\x1c\x2f\ +\x48\xd6\x57\xd0\x53\xd3\x7c\x5a\xae\xc8\x81\x66\x73\x1b\xc7\x1c\ +\xea\x38\x09\xc0\x1a\xef\x59\xbd\x0e\xf4\xcd\xce\xbe\xd6\xbc\xcf\ +\x85\xcb\x0d\x5a\x00\x66\xca\x13\x1a\x6b\x05\x75\x32\xa5\x5f\x5b\ +\x42\x66\x23\x8c\xa0\xb0\x9e\x8a\xa9\x69\x5f\x67\x5b\xf8\xb1\x8f\ +\xb3\x75\x2d\xa8\x04\x4c\xcc\x58\x8f\x29\x34\xd9\x40\x8f\x8f\x2d\ +\xbd\x60\x2d\xd2\x70\x42\x13\xdb\xb4\x89\xe8\x23\x2a\xc0\x65\x6a\ +\x74\x64\x37\x2c\xae\xa0\x75\x34\x7a\xfe\xb4\xf6\x07\x91\xba\x39\ +\x3b\xfc\x70\xc5\x27\x6c\x74\x59\xb7\x03\x93\x1e\x48\x67\xd9\x2d\ +\xe5\x4c\x6b\xbd\x6a\x12\x98\x57\x1d\xeb\x5d\x40\x1b\x51\x91\x87\ +\xdc\x22\x46\x04\x63\x18\x93\x3e\x9c\x83\x7c\xe9\xd9\xc5\xc2\x34\ +\x81\xd7\x26\xb9\x0c\x38\xce\x45\xf6\x21\xa0\x66\x6a\x3e\xef\xfa\ +\x5c\x2a\x2d\x63\x3c\xe7\xe2\xdc\x8c\xf3\xa1\xd6\xcf\xbc\x35\xaa\ +\x2b\x7b\x9c\x83\x53\x1f\xcd\x35\xd1\x30\x47\xfd\x76\x71\xeb\x41\ +\x53\x3b\x74\x94\x72\x91\x3d\x7d\xbd\x26\x87\x9f\x31\xf0\x8c\x21\ +\xaa\x06\xf0\x75\x59\xe2\x39\x66\xd8\xaf\xf3\x3f\x96\xcc\x13\x2f\ +\x13\xf5\xe7\xf7\x83\x11\x0f\xff\xfd\xeb\xed\xe3\xa7\x3f\xf1\x75\ +\x81\xff\x39\x4c\x9e\xcb\x0b\x17\x2e\x5c\xb8\x70\x86\xeb\x0b\xb5\ +\x0b\x17\x2e\xfc\xe3\xa2\x7f\x6a\x00\xec\xa3\xc7\x55\x20\x7a\xb7\ +\x00\x2f\x0c\xdf\xd5\xef\x42\x90\x7f\xf9\xfc\x7a\xfb\xe1\x97\x5f\ +\xf2\xe2\xb2\x7e\x9e\x4b\xcf\xbc\xb1\x32\x5d\x71\xa3\x95\xcd\x72\ +\xd1\xe1\xa1\x9e\x86\x16\xea\x6c\x9a\x27\xa7\x80\x42\x99\x9d\xbc\ +\xc6\xc3\x07\x1d\x35\x05\x40\x45\x1f\x57\xc1\x9a\x27\x34\xf8\x74\ +\x10\xf3\xc3\xa7\x03\xd8\xd1\xd3\xce\x2b\xfe\x71\xf3\xd1\x7c\xb3\ +\xa7\xfc\xd0\xb6\x5c\x8f\x8f\x46\x9e\x35\xc2\xcf\xba\xd3\x1c\x72\ +\x5e\xca\x47\x9c\x4c\x3c\x32\x07\x3e\x3a\xda\x68\xfa\x80\xa2\x5a\ +\x9d\x97\x6d\x97\x79\xd9\xd1\xcc\x58\x21\xec\x11\xb3\x11\xfb\x22\ +\x89\x74\x85\x74\x24\xab\x3d\x7f\x17\x52\x61\x39\xeb\x77\x75\x0d\ +\xd5\x3f\xc3\xa8\xe8\xf5\x5b\xb5\xd3\xfa\x79\xdc\xec\xf2\xf3\xd5\ +\x02\x24\x44\xe0\xf8\x77\xf5\x0a\x87\x31\xb2\x37\xe0\xaf\x9c\x51\ +\xfc\xa6\x7c\xc5\xe6\x49\x1f\xd0\xa3\xb0\xdd\x0c\xd9\x9d\x79\x1e\ +\x5f\x97\xb5\x87\xe7\xf5\x2d\x35\xbf\xa6\xc6\x5b\xc7\x7b\xb0\xb9\ +\x9f\xc7\xa3\x3a\xe7\x87\xd4\x11\xb9\xd2\x3e\xae\x81\x2f\x3c\x26\ +\xdb\xab\x6d\x1d\x0f\xe7\x01\x74\x72\xd4\x97\x26\xb2\xd2\xf6\x87\ +\xff\x8e\xdd\x36\xd0\x68\x03\x7b\xbb\x66\x33\xd5\x38\x6a\x3b\x93\ +\x68\x09\x98\x2d\x3d\x2c\x58\xf2\x78\x56\x81\x9c\xe7\x33\xcf\x7f\ +\xdc\xa1\x1d\x66\x9c\x6e\x79\xd3\xa2\x6a\xab\xf2\x70\xc3\xc0\xd3\ +\x3d\x4f\xcf\x24\x8a\xa3\x8d\x47\xc4\xc6\xf9\x39\xcf\xeb\x20\x5f\ +\x5d\x07\x9c\xf3\xa0\xc9\x66\xdf\x0d\x40\x47\xd3\x06\xf2\xb0\x1e\ +\x69\x27\xcb\x95\xa7\x81\x38\x89\xe4\xd3\x99\x00\x2e\x5b\x6c\x00\ +\xee\x7d\xca\xc4\x69\x1b\x90\x48\x20\x9e\x0d\x71\xc6\xa4\xf3\x7b\ +\x12\x62\xf8\x1f\xa7\xcc\xca\xc5\xe7\xd7\x0f\xb7\x1b\x7e\x43\x2d\ +\x34\xed\x5d\x3e\x41\xd1\x39\x56\xf9\x19\x9e\xd5\xfd\x13\xe3\xe3\ +\xc7\x8f\xb1\x7b\xe2\x9a\xea\x45\xbf\x9d\x86\x6d\xe6\xdd\xc9\xc3\ +\x13\x76\xd0\xe8\x61\xa0\xa3\xc6\xdc\x0e\xd0\xb5\x98\xb5\xe8\x71\ +\x14\x30\x34\x16\xb9\x1c\xe0\xb1\x13\x24\x78\xf4\x3a\xfc\x7d\x64\ +\x89\x53\xd3\xb9\x29\xa6\xa9\x9b\xa3\x7c\x80\xe7\x55\xcd\x78\xd9\ +\x98\xc7\x23\x84\xe3\xe5\x24\x0d\xfd\x5c\x57\x09\x43\x87\x96\xff\ +\xfb\x87\xb5\x8b\x7f\x89\xed\x92\x5f\x86\xb1\x96\xb5\xca\x95\x2e\ +\x9e\xac\x97\x06\xeb\xc0\x16\xa7\xba\xaa\x8d\x05\xb9\xf0\x35\x0f\ +\xe5\x28\xe6\x9a\xc9\x99\xc2\x02\x28\x23\x80\x1a\xf9\x10\xc6\xc1\ +\xef\x3c\x9c\xcb\xc1\x22\x4d\xd7\xab\x46\xb7\x01\x6d\x57\xf0\x53\ +\x04\x5f\xc0\x36\xa8\xc4\x5c\x67\xa2\x2a\xd4\x5e\x88\xc9\xa9\xcb\ +\x71\xa2\x10\x14\xed\xd4\x4b\xbe\xdc\xdc\xcf\xaa\x1e\x2d\x9e\xd4\ +\xd2\x4c\xa3\xa3\xb9\x30\x55\x1b\x62\x34\x71\x6e\x13\x36\x01\x99\ +\x83\x50\x19\x6e\x45\xd1\xd5\x26\x27\x9a\xb1\xf2\x6e\xe8\x9a\x9f\ +\x14\xd1\xe8\x09\x3b\x7e\xc7\x11\x41\x78\x9d\x1d\xa4\xb9\x70\xdf\ +\x02\x97\x59\xcb\x3d\x59\xba\x52\x63\x71\x6f\x4a\xa4\xa1\xa1\xe7\ +\x3e\x3d\x74\x0e\x18\xf4\x17\xb2\xdc\xdc\x77\xc0\x9a\x07\xec\x42\ +\xe1\x28\x6b\x97\x90\xe0\x0a\x24\x76\x35\xc2\xe3\x51\xdc\x49\x14\ +\x0d\x0c\x6a\x5c\x9f\xb8\x27\x0e\xf5\x86\xb5\xd5\x03\x31\x9f\x52\ +\xd1\xc0\xf9\x66\xe4\x89\x8b\xc5\x86\x9a\xc8\x44\x31\x36\x58\x3f\ +\x1c\x3e\x41\x62\x06\xe8\xc5\xb9\x2b\x97\x7d\x3e\x68\x63\x3e\x68\ +\xe3\xfc\xaa\x26\x9e\xaf\x79\x34\xea\xfc\x7f\x3d\x91\x87\x73\x2e\ +\x7a\xd4\x81\x87\x64\xb5\x51\x23\x5b\x6a\x46\x03\x97\x5a\xc6\xd2\ +\xa7\x0d\x26\xac\x14\x64\x57\x1a\xf3\x1d\xe4\xf9\x00\x30\xe7\x24\ +\x31\x67\x74\xb1\x70\x4f\x9b\x45\x7a\xed\xcc\xa1\x33\xf6\x20\x6b\ +\x66\xdc\xe1\x7a\x9f\xa1\x42\x9a\x97\x38\x09\xfe\xf9\xcf\xbf\x0f\ +\x2f\x2e\x1e\x5b\xfe\x85\x0b\x17\x2e\x5c\x38\xc7\xf5\x85\xda\x85\ +\x0b\x17\xfe\x71\xe1\x2b\x41\x00\x76\xf7\x37\xd7\x82\xa4\x74\x15\ +\x1b\x90\xe0\x05\x77\x30\x5e\x3f\xde\x5e\xc0\xf3\x8e\x06\x24\xba\ +\xd0\x44\x3d\x7f\x59\x44\x17\x3c\x92\xa2\x57\xb6\x75\x43\x9f\x74\ +\x02\x46\xc6\x60\x93\x8f\xdc\xec\x91\xa7\x86\x2e\x6d\x46\x90\x23\ +\xce\x2d\x89\x6a\x9d\x2f\x1d\xe6\xfa\xe5\xf3\x4d\xff\x63\x4d\x7e\ +\xde\x51\x21\x8f\xbb\x35\x5d\xa7\xf5\x52\x1f\x46\x6a\xdd\x73\x43\ +\xc8\xa6\x0f\x57\xe3\x90\xc7\x13\x92\x8c\xa9\x39\x2e\x5f\xd2\xe0\ +\xb4\x52\x51\x06\xf1\xe4\xc9\xe6\x56\x34\x57\x31\x90\xb2\xd9\xc3\ +\x07\x78\x81\xef\x0f\x04\xef\xb8\x1d\x15\x6b\xfc\x09\x34\xd2\x73\ +\xb8\x57\x87\xc8\x62\xd0\xad\xda\x7b\xe3\x40\x7b\x77\x1e\x5a\x8d\ +\xc0\xd8\x66\xae\x3f\xc6\xc9\x2a\x53\xe0\x58\x75\xe8\x67\x80\x77\ +\x1b\xd8\xab\xc9\x1e\x42\x41\xf0\x19\x63\xe6\xb0\xfb\xec\x05\x0f\ +\x44\x4f\xd5\x58\x70\x3f\xe7\x6b\x2a\x2a\xeb\xeb\x32\x07\xde\x92\ +\xff\xd6\xf1\x9e\xd1\x1f\x34\xed\xf0\x78\x66\xac\x33\x0d\xeb\xde\ +\x2b\xe0\x71\x28\xd2\xeb\xf1\x54\x5e\x01\x25\x1d\x74\x26\xda\xdc\ +\x61\x36\xb7\x00\x69\xf1\xe1\xd8\x76\x09\xdd\x17\x98\x54\x19\x4b\ +\x45\xd0\xd6\xee\x11\xd1\x83\x40\xb5\xb0\x74\xc8\xe7\x75\x8f\xc2\ +\x73\x61\x78\x3a\x45\x1e\x0a\xd4\xb6\xc4\x96\xaa\x73\x1d\x8c\xb4\ +\x49\xb2\xe5\xb9\x98\x66\x68\xa3\xf1\x4f\xf5\x04\x8d\x3f\x0f\x39\ +\xce\xe3\x68\x91\xf7\x1a\x42\x72\xd0\x04\x11\x36\xfd\xcc\xd1\x38\ +\x6a\xb6\x89\x1c\xc3\x18\x66\x5a\xec\x6c\x47\x2d\x59\xda\x08\xa3\ +\xab\xbe\x03\x1c\xfe\xec\xdf\x48\x1a\x35\xa9\x87\xeb\x49\xa1\x76\ +\x36\xfa\x8c\x27\x0f\x61\xbe\x7f\xd5\x3a\x81\x43\xcc\xbf\xa1\xc6\ +\x95\x5c\xb1\x9b\xd5\x85\x6f\x03\xf6\x8d\xf6\x8f\x96\x01\xee\x9e\ +\x8f\xb7\xcf\x2f\x9f\x6f\xef\xde\x7d\x0a\x02\xbf\xb1\x26\xde\xbb\ +\x53\xfb\x96\xea\xcc\xf3\x7b\xba\x3c\x2c\x79\xa8\x84\x41\x9b\x6c\ +\xa8\xf2\xf0\xb1\x0f\x4b\xb6\xf6\xad\x63\x8e\x77\xff\xc8\xcb\xf3\ +\x18\x98\x62\x6f\xd4\xc4\x02\x2f\x1d\xcc\x97\x7c\xd3\xa2\xc7\xc2\ +\x7f\x9e\x11\x3e\x63\xe4\xa2\x7a\x88\x74\xc3\x16\x0d\xb6\xd6\x19\ +\xe3\xca\x57\xe3\x8f\x70\xa1\x87\x9f\x85\x7b\x7c\x34\x66\x66\x7e\ +\x6e\x2f\x8c\x01\x2b\x9e\x1a\x17\xf9\x88\xa3\x65\x0e\xf3\x28\x21\ +\xc4\xab\x89\x40\x93\x53\x5a\xba\x58\xe4\x4e\xa0\xcb\x88\x9f\x13\ +\x10\xe2\x8c\xb8\xd3\xc8\x90\x9f\x61\x4e\x35\x31\x96\x29\x75\xf2\ +\xb9\x27\xb9\x7e\x60\x53\x60\x74\xb7\xec\x41\x32\x83\xb9\x51\x05\ +\x85\x3c\xf7\x0e\xf2\x30\x5a\x6c\x23\x63\x2d\x99\x87\xb8\xb6\xfe\ +\x26\x69\xc5\x22\xd9\x65\x4d\x53\xa4\x6d\xd5\xaa\x04\x36\x7c\x97\ +\x3b\x54\x76\x27\xb1\xe2\xdc\xba\xdf\x07\xbd\xb4\x41\x2e\x16\xbd\ +\x95\x10\x7b\xb4\x3f\x7a\xe4\x0e\x4a\x10\x8b\x3b\xe2\xb3\x10\xb9\ +\x43\x50\x4e\xc5\x16\x94\x7c\x8a\xc5\x9c\xcb\xd7\xfc\x89\x30\xbc\ +\x3e\x3d\x81\xd6\x70\xc3\x5e\x15\xb3\x5d\x0e\xfb\x11\x69\x23\x1d\ +\x11\xa1\x43\x14\x84\x5b\x41\xc2\x89\xda\x1c\x0a\x5e\xbf\x49\xb7\ +\x78\x06\xd8\xed\xdc\x4c\x45\xb1\xb1\xbd\x02\x61\x33\xa7\xe2\xe9\ +\x77\x27\x27\x25\x2e\x40\xc1\x91\x2b\x1b\x7a\x6a\x60\x2b\x50\x66\ +\x6f\xa0\x5a\x6f\x43\xf1\x78\x35\xb3\x77\x0b\x3f\x4e\xa4\x3c\x3f\ +\x51\x86\xb5\x84\x9d\x4b\x6b\x62\xec\x91\x83\xa8\x7a\x18\xe6\x88\ +\x34\xa4\x71\xad\x98\x39\xbb\x3c\x93\x30\x56\x52\xa1\x11\x34\xb9\ +\x1c\xbd\x58\x81\xb2\x68\xd9\x8d\x7a\x5c\xca\xe6\xb6\xc2\xe6\x8a\ +\xa0\x7e\x7b\x7a\x54\xb2\x82\x39\xe0\x5f\xff\x74\x7b\xbd\x7d\xd0\ +\x24\x73\xfb\x5f\xb8\x70\xe1\xc2\x85\x73\x5c\x5f\xa8\x5d\xb8\x70\ +\xe1\x1f\x17\xbb\x6b\x3d\x5e\x15\xca\x24\x9a\xdf\xe9\xc2\xeb\x27\ +\x7e\xa1\xc6\x4b\x5b\x5e\x64\xa2\x87\x19\x56\x5e\x58\xa3\xe1\x26\ +\x1e\x41\x3f\xe3\xd1\xa7\x9c\x7c\x1a\x69\xc3\x49\x0d\x50\x31\xb2\ +\xc3\x27\xd0\x83\x85\x1e\xb1\x63\xc3\x5c\xc2\x08\xb3\x35\xce\x4f\ +\x37\x17\xd5\xc0\xf1\x4e\x8e\x72\xd8\x70\x93\xd5\x5a\xc5\xeb\x66\ +\x24\x7d\x68\xe1\x27\x9f\x4d\x3c\x9a\xa6\xa7\x5a\xe2\xd8\x85\x8c\ +\x46\x21\x78\x0a\x07\x4d\x1d\x8d\xd6\xa3\x3c\x6d\x7c\x20\x51\xc0\ +\x79\x0a\x44\x07\xd7\x76\xc6\x24\xb5\xa1\x0f\x52\xf1\xac\x5f\xd0\ +\x92\x7e\x1c\x10\x74\x53\x33\xe3\xfe\x07\x84\xa3\xfe\x04\xad\x4c\ +\xcf\x79\x66\xbc\x55\x43\xff\xde\xb4\xa6\x84\x10\x42\x8b\x15\xd7\ +\xa7\xb2\xc0\x71\xd4\xb7\x42\x15\x76\x75\xd6\x89\xe5\xf8\xa1\xf5\ +\x3e\xda\x62\x93\xf6\x08\x28\xf7\xd6\x35\x71\xce\x5b\xf3\x1e\xe1\ +\x5b\xeb\xbe\x35\xf7\x69\x6d\x16\x7e\x46\x3f\x34\xb3\xfa\x6e\xee\ +\xe9\x7e\x3a\xab\x26\xf8\x66\xb7\x96\x4b\x91\xb3\x9a\x21\x55\xce\ +\x89\x80\xf1\x11\x83\x96\xfa\x32\xaa\xab\xfe\x6c\x28\x45\xa4\xa2\ +\xc6\x09\x01\x8f\x01\xaa\xd1\x42\x12\x3c\xf7\x34\xe8\x5c\xa4\x1b\ +\x22\x1d\xfe\x52\xcd\x89\x71\x26\x65\xaf\xae\xd9\x69\xa2\xd7\xeb\ +\x68\x8c\x00\x8b\xe7\x46\x3a\x31\xb7\x8c\x43\x08\x93\x31\x9e\xa6\ +\x71\x9e\x0e\x83\xe7\x77\xf8\x11\xb4\x4d\x0d\x72\x60\xa7\x9f\xad\ +\xdb\x2a\x28\x93\x36\x51\x86\xc3\x8d\x01\xa2\x46\x4c\x8b\xff\x27\ +\xcd\x3e\x1f\xe9\x85\xb1\xe6\xd0\xf7\x98\x2b\x72\x70\x47\xd0\x8f\ +\xf7\x63\x74\xae\x1f\x0f\xd8\xd5\xb0\x75\xb1\xb2\x4c\x8b\xf5\xc6\ +\x17\x6a\x1f\x60\x88\x98\xe0\xea\x4f\xe2\x9e\x5c\x87\xcb\x3f\x39\ +\xe6\x0d\xa4\x4d\xa2\xe5\x87\x8f\xf8\x8d\xff\x8f\xb1\x67\x3e\xc5\ +\x31\x92\x1b\x2b\xe4\xb1\xcb\x78\x19\x35\xdd\xc4\x64\x08\xfb\x72\ +\xd9\xa8\x08\xf0\xf8\x0a\xbe\x74\x1d\x63\x1f\x0f\x1e\x35\xf0\xb1\ +\x16\xf5\x91\x87\xba\xce\xd5\x6b\x75\xf8\xaa\x80\x23\x48\x0f\xf9\ +\xb6\xb1\x94\x1f\x7c\x2c\x70\x03\xd2\x5a\x00\x75\xf8\xf2\xc2\xeb\ +\x0d\x7d\x2c\xc6\x35\x96\x6a\xf9\x37\x00\xfa\x0f\x12\xe5\xcb\x55\ +\x3e\x1e\x31\x4f\xf9\xf4\xc8\x8f\xeb\x1b\xe4\x66\x8c\x09\xd1\xf2\ +\x37\xdc\x86\x1e\xf9\xe0\x14\xf7\x98\x48\x14\xa7\x34\x36\x72\xa0\ +\x62\x91\xeb\x00\x1b\x9e\x7b\x80\x5b\x4a\x64\x02\x6b\x13\x28\x3f\ +\x8d\xf2\x8d\x20\x78\x13\x36\x5d\x00\x76\xf3\x75\xca\xf0\xbe\xf6\ +\x98\x58\x5f\x70\x12\x6b\x4f\xdd\x87\x94\xc0\xc8\x93\x97\xb9\xac\ +\x17\x5d\x86\xdc\xe7\x22\x21\xbb\x42\xec\x7b\x3c\xd0\x5c\xab\xd9\ +\xc7\x02\xbd\x5b\x61\x4b\x76\x57\x41\x6e\x87\x45\x53\x68\xb1\x83\ +\xcc\xc4\x21\x30\x63\x84\xc7\x9e\x15\xe7\x6d\xbf\xc7\xae\xe4\x8e\ +\x7b\x1a\x1a\x74\xb4\xc2\x1c\xd0\x1c\x77\xcd\xf0\x7e\xce\x6e\xd7\ +\xb6\x18\x01\x1e\x03\x3b\x24\xaf\x6e\x11\xdd\x77\x85\x20\xc7\x56\ +\x0d\x27\x45\x07\xed\x38\x08\x85\x32\x07\xb7\x28\x66\xa7\x05\x8b\ +\xa6\x11\x8b\x3c\xde\x77\xb0\xb6\xde\xae\x01\xd8\xdd\x5f\x91\x71\ +\x4a\x72\xc3\xad\xf2\xa9\x5e\x60\xa8\x7c\xc4\x19\xf3\xdc\xa4\x48\ +\xd0\x68\xaf\xf8\x29\x31\x1c\x3c\xc9\x45\x4d\xc7\x92\xe3\xf9\x2d\ +\xa0\xdf\x14\x45\xaf\x3f\x91\x0d\x9b\x1a\x74\xe8\x93\x3b\x9c\x0f\ +\xe9\xba\x2e\xce\xa1\x68\x38\xdb\xd9\x66\x20\x44\xe2\x2b\x97\x06\ +\x9f\xb4\xc9\xc1\xf1\x7a\x38\xc6\x05\x7a\x66\x88\x64\xcf\x2c\x3e\ +\xf2\x39\x62\x40\x12\xd3\x99\x70\x89\x7b\xcc\x41\x37\x41\xbc\xe7\ +\x62\xfe\xed\x15\x43\x54\x4e\x36\xa1\x2b\xe2\xdd\xf3\xfd\xa7\xdb\ +\xeb\xeb\xcf\xb7\xd7\xcf\xbb\xff\x45\x3b\x6b\x2f\x5c\xb8\x70\xe1\ +\x82\x70\x7d\xa1\x76\xe1\xc2\x85\xdf\x1e\xe7\xd7\xfe\x6f\x83\xaf\ +\xef\x50\x6f\xad\x39\xae\x18\xef\x8f\x87\xff\x33\xc3\x9f\x6a\x8f\ +\x0b\x58\x5e\x69\x82\x43\x9f\xb7\x53\xf0\xc4\x8d\x3b\x72\xbe\x08\ +\x1e\x0d\x1d\x3f\x58\x60\x01\x87\x0a\xd8\x61\x12\x8d\x27\xe7\x00\ +\x78\x75\x6a\xf0\xdd\x14\xe7\x85\x38\xfd\x98\x4b\xd9\xd9\xf2\xae\ +\x0c\x35\x79\xf3\x44\xf3\x8c\x36\xdd\x68\x55\x2c\x16\xe2\x4a\x0f\ +\x3b\x5b\xd6\x62\xdf\xf4\xb8\x8f\xa2\xba\xc3\xc7\xdc\x60\x62\x51\ +\x75\xb3\x1f\x31\xf4\x36\xd4\xa9\x56\xf4\x40\x18\x43\x97\x3d\x03\ +\x81\xf2\xb1\x40\x6b\x3b\xd7\x94\x4c\xc5\xea\x83\x4f\x06\x80\xc9\ +\x6d\xfc\xb7\x22\xeb\xb2\x64\xab\x39\x0e\xaf\xf9\x40\xeb\xc3\x76\ +\xbb\xad\x11\xd1\x6d\xac\x8b\xb4\x8d\x9d\xcb\x8e\x62\xdc\x36\xc0\ +\x10\xf4\x71\x9e\x43\xcb\x48\xf3\xed\x35\x9e\xc4\xba\x1e\x01\x8c\ +\xf5\xbd\xc6\x3b\xd6\xfa\x3e\x95\xbf\x65\x8e\x8f\xf3\x86\xe2\xad\ +\xe3\x3c\xa3\x57\x7c\xb3\xe1\xdf\x0c\xd4\x88\x6a\x59\x6a\x1a\x37\ +\xb8\xe1\x7b\x2c\x30\xb2\x61\x4d\x7a\xc2\x3a\xc7\xda\xcd\x83\x16\ +\x03\x8e\xb9\x33\x0e\xf1\x4d\x82\x5f\x55\x06\x47\xe0\xeb\xe7\x78\ +\x03\x77\x57\x4f\x7a\x7a\x05\x9d\xa3\x68\xcc\x28\x5f\x71\x4b\x74\ +\x9a\x45\x96\x18\xdf\x90\x62\x1f\x4d\xf3\x88\x68\x9e\xcf\x74\x8e\ +\x89\x05\x7a\x9e\x7b\xd3\x6e\x3c\x4f\xe1\xa8\xe9\x73\xb8\x9b\xcf\ +\xe3\xc5\x67\x9e\x1b\x40\x3b\x09\x73\x34\xbc\x45\x4c\xa2\xc7\xac\ +\xd3\x8f\xae\xde\xee\x26\x74\x02\xb6\x7d\x88\xd3\x04\x36\xb6\xa6\ +\x91\x73\x0e\x92\x3d\x1b\x3a\xac\x64\xd0\xf9\xbe\x86\x2f\x0d\xf4\ +\x03\x20\x20\x05\x1d\x31\xe1\x7f\xfa\x25\x3a\xfe\xad\x4b\xa6\x0c\ +\xcc\xc7\xd4\x5d\x20\xf1\x0d\xf2\x0b\x89\xdc\x6e\x1f\x3f\xfc\x25\ +\x0e\x57\x7c\x99\x16\x0d\x1f\x33\xf1\x1e\x8d\x70\xee\x10\xee\xbf\ +\x00\xf7\x10\x03\xd0\xa4\xd9\x1a\x3e\xa2\xea\x10\x58\x77\x06\xa2\ +\x7e\xb5\x08\xa8\xe5\x57\xf2\x68\x63\x5c\x73\xba\x84\xd1\xb1\x51\ +\x5c\xcc\xaf\x7f\xe9\x85\x66\x1d\x79\x3c\x52\x3c\x69\x6c\x67\x3c\ +\x9e\x23\xce\xd7\x65\x8c\x9f\xe4\xfa\xf2\x54\xc3\x9f\x7a\x8c\x9e\ +\xda\x6c\x31\xe7\x38\xb2\xc3\xd6\xf1\x1d\x99\x20\x5b\x1c\xb1\x51\ +\x2f\x2f\xe9\xa2\x45\x9e\xa4\xe9\x63\x31\x6c\xbf\x56\xe4\x8b\x93\ +\x18\x4f\x18\x3a\xe4\x71\x43\x3a\xa5\xe4\x47\x44\x96\xf2\xe6\xfd\ +\x61\x5d\xa6\x9d\x20\xf7\x46\xa5\xf6\x1a\x4b\xe6\xfd\x42\x35\x3f\ +\xa1\x3b\xb0\xe5\x0f\xab\x2b\xc2\xf2\xb1\x28\xa2\x07\xb5\x6e\x26\ +\xba\x88\xbd\x08\x4b\x1c\x9a\xb0\x21\xb5\x6d\x32\x09\xad\x75\x76\ +\x46\xfc\x08\x6f\x25\x6e\xf6\xbd\x84\x70\x85\x55\xe2\xd7\x8e\xf6\ +\x9b\x5a\x33\xd9\x94\xc4\x45\xbd\x17\xb9\x31\x6e\xf4\xd8\xd7\xa2\ +\xd7\xe8\x6d\x36\x0b\xda\x3a\x3d\xb2\x53\x25\x4e\x42\xa6\xb9\x25\ +\x4e\x52\x2d\x52\xb8\x2f\x03\x65\x04\xb6\xa4\x3c\x6f\xeb\x1e\xc3\ +\xf6\x04\xdb\xd3\x46\x74\x80\x9c\x03\x93\x03\xcb\x75\x13\x9b\x02\ +\xda\x46\x0b\x6a\xe7\x8d\xfc\xb1\x3f\x8f\xfa\x75\xfb\xd0\x4c\xbf\ +\xf2\xc2\x90\xa9\xd7\x11\xd1\x0e\x12\xc7\xa6\x31\xb3\xb7\xe1\xeb\ +\x1e\xa1\xcd\x3c\x0d\x76\xb1\x90\x9b\xcb\x8c\x59\x33\x6a\x20\x3f\ +\xc6\xe2\xeb\x3a\xcf\xb7\x79\xce\x94\x16\xb1\x34\xf3\xb5\x3f\xfc\ +\xb4\xd9\xa2\x0e\x1a\x1e\x19\xd7\xf9\x5b\x35\xab\x76\x36\x72\xb6\ +\xf1\x68\x3e\x41\x3e\x5b\x1a\xb6\xd1\x13\xb6\x8b\x08\xa4\x2d\x7e\ +\x04\xc6\xba\xcd\xf2\xa1\xd7\x36\x87\xab\x75\xd1\xfb\x08\x11\x9d\ +\xd6\x0d\xf0\xfa\x80\xc3\xfb\x47\x6c\x2b\x7c\x01\x97\xfe\x3b\x7c\ +\xa1\xf6\xf9\x2f\xb7\x8f\xb8\x8e\xf2\x2e\x44\x90\x18\xfb\xf4\xc2\ +\x85\x0b\x17\x2e\x0c\x5c\x5f\xa8\x5d\xb8\x70\xe1\xb7\x43\xbf\x1e\ +\xfb\xad\xae\xcd\x62\x9c\xbb\x43\x7d\x8c\x0b\xc7\x57\xdc\xbc\xc8\ +\x1b\x17\x49\x03\xfc\xe2\x69\xdc\xb1\x50\x8c\x26\x2e\x58\xd5\xc4\ +\xa3\x67\x0a\x5c\x69\xb8\x18\xbc\xfa\xf4\x29\xca\xbe\x1a\x7c\x92\ +\x7a\xb4\x18\xed\xe2\x34\xd7\xb2\x79\x67\x05\x7d\xcc\x33\xda\xac\ +\xc1\xdc\xd5\xb4\x1e\xa3\xe7\x1d\x99\x5c\x37\xe4\x4c\x37\x64\x83\ +\xc6\x5c\x60\xfa\xce\x8d\xea\x66\xdf\xb4\xe8\x46\xef\x3c\xf9\xe6\ +\xec\xcf\xf6\xd0\xc8\x4f\x3b\x4c\xa2\x3e\xc8\x40\x27\x56\xcb\xd8\ +\x9b\x43\xa4\x18\x9e\xea\x62\x11\x79\x7d\x87\x8b\xa4\x29\x3a\x85\ +\xa2\x0e\x38\x3d\x56\x9a\xfe\x98\xea\x2c\x44\x60\xcb\xc7\xcf\x08\ +\x5a\xdb\x15\x6e\x86\x6d\xf4\xa7\xe3\xef\x10\xe2\x5e\xaf\xd7\x79\ +\x1e\x63\x8e\xfb\xc1\x07\xd9\xc7\x18\x68\xcc\xbd\xc9\xef\x26\x75\ +\xa2\xdf\x49\xdf\x82\x39\xff\x5b\xab\x0d\xa0\xd2\xd7\x54\x7b\x6b\ +\xce\x53\xfa\x26\x7a\xa4\x67\x7c\xd9\xd6\x4f\xe5\x1c\x30\x17\x59\ +\x35\x73\x34\xbc\xf9\xce\xc9\x01\xd0\x3b\xc7\xca\x7c\xa9\x0f\xdc\ +\x2f\x31\xa1\xa4\x6d\x22\xe4\x4e\x6a\x68\xfc\x58\x32\xae\xa4\x9d\ +\x74\x94\x53\xb4\x6b\x5a\xea\x8c\x08\x68\xf5\xbb\x3a\xbd\xa4\xd0\ +\x39\x95\x5a\x37\x74\xec\x63\xd1\x38\xd9\xe2\xd8\xd1\x57\x73\x3e\ +\xcf\xaf\x34\xec\x0f\x4d\x35\x20\x7a\xe4\x0c\xca\x01\x58\x0e\xe4\ +\xb6\x71\x23\x64\x50\x93\xcb\x23\x3a\x1b\x1a\x9e\x90\xa5\x27\xea\ +\xb8\x10\xa7\xf3\xbb\xb9\x00\x5d\xbf\x97\x89\x2f\x0d\xb9\x88\xa5\ +\xad\xf5\x15\xf0\x13\xea\xb7\xcf\x9f\x6e\x5f\xf0\x5b\xe7\x84\x23\ +\x40\xb7\x1f\x60\xb7\x3f\x3b\x50\xea\x0d\xe5\xfe\x21\xf1\xd6\xf5\ +\xe3\x2e\x8e\x45\x3c\x7f\xf9\xf8\xd3\xed\x73\xec\xe3\x2f\xfc\x3f\ +\x2c\xfa\x8d\x31\xd4\xe3\x66\x43\x9f\x8d\x1c\xde\xaf\xeb\xf8\x18\ +\xe0\x2f\xb6\x25\x35\xf6\xf0\x00\xf3\x27\xe8\x7d\x8c\xb5\xd1\x87\ +\x9f\x97\x31\xb4\x07\x1f\x2d\xed\x11\x47\x53\x3e\x38\x1e\x5d\xd0\ +\xa0\xd9\x4e\x1d\x00\x5f\x7f\x72\x55\x31\x5f\x0e\x21\x99\xc7\x23\ +\xec\xe4\x7a\x5c\x2d\xe7\x12\x0b\xf2\x94\xe6\x18\x68\x49\xda\xc7\ +\x36\xad\x79\x36\x5e\x0d\xb5\x90\xab\x46\x51\x8a\xe1\xaa\x54\xf2\ +\xc9\x95\xcd\xae\x0c\x2f\x0a\xac\x67\x94\xa9\xdb\xb6\xc4\x2c\x4f\ +\x04\xb9\x4b\x23\xef\x4c\xb0\xd9\xf0\xe4\xdc\xc5\xb3\x03\x6a\x90\ +\x40\x91\x32\x9b\x2b\xa0\x6e\x06\xea\xb4\x62\x55\x8d\xb9\x41\xe6\ +\x14\x60\x43\xbe\xf2\x49\x90\x9a\xf8\x86\x29\xc7\x7a\x3d\x1a\xd5\ +\x34\x03\x9d\xaa\xfd\x63\x84\x3d\x38\x05\xec\xaa\x69\x04\x45\x34\ +\x7d\xae\x71\x10\xd8\x16\xdc\x1e\x6c\x36\xf6\x90\x44\xc7\xe5\x56\ +\x97\xe9\x53\x24\xb9\x99\xfc\x06\xf4\x7a\xd1\x30\x17\x98\xe7\x68\ +\xe2\x6a\x89\x66\xf6\x58\xd1\xa4\xba\x48\xb6\xb7\x5d\xc7\xec\xe6\ +\xf1\xc4\x7c\x9d\x2f\x4a\xc1\xae\xa9\x8b\x0e\xa3\xd1\x07\x9c\x85\ +\x41\x3a\x70\xa6\x31\x32\x38\xad\x52\x91\xea\xf6\x88\x60\x24\x59\ +\x52\xd2\x96\x93\x6b\xdc\x8c\x00\xe2\xd1\x56\xca\x98\xcf\x1d\xb6\ +\xa1\x96\x5d\x51\x1b\xf3\xc4\xc9\x93\x71\xdf\x96\xb6\x7c\xe4\xeb\ +\xbd\x23\x79\x05\xa3\x07\x87\xdf\x56\x83\x8d\x67\x9e\x73\x19\x8b\ +\x67\xf2\x04\xed\xd0\x67\x3f\xce\xcf\x3a\x7f\x0e\x7d\xc6\x48\xe5\ +\xf8\x7a\x8e\x05\x9f\xcb\x58\xe8\x57\x80\x77\xc0\x35\xb9\xe0\x73\ +\xce\x01\x17\x1a\x41\xb5\x81\xae\x29\x6e\x89\xe1\x4f\x6c\x83\xeb\ +\x5a\x41\xeb\x5b\xbf\xcd\x9c\x0a\xae\xd3\xbb\xcf\xb7\x8f\x9f\x7f\ +\x89\xf6\xd7\x50\x85\x8e\x43\x7b\xfc\x63\xa5\x0b\x17\x2e\x5c\xb8\ +\x70\x7d\xa1\x76\xe1\xc2\x85\xef\x81\xb7\x5c\x67\xf9\xda\xec\x57\ +\xc7\x18\xc8\x17\x9a\x5b\x7c\xfa\x74\x7b\xfd\x84\x3f\xf9\x08\xc4\ +\xe5\x30\x2f\x32\x91\xa3\x8b\x4d\xdd\x34\x71\x01\xf4\x6a\x62\x62\ +\x89\xab\x76\x25\x54\x53\x54\x6d\xd8\x46\xda\xd1\xe1\x52\xda\xf1\ +\xd2\x55\x1d\x89\x30\x36\xe6\xe6\xf9\x20\xb6\xef\xc7\x0d\x48\xf4\ +\xfa\x32\x2d\x7c\x7c\xc9\x56\x5f\xa6\x49\xe7\x3b\x3c\xd4\xf9\x0b\ +\xb6\xf2\x47\xd3\x17\x74\x9a\xd6\xb8\xab\x13\x0d\xf3\x52\x37\x35\ +\x68\x35\x87\x95\xf3\x07\x01\x38\x83\xb7\xdd\xe8\xd4\xab\x71\x1f\ +\xb2\x4f\xbf\xf8\x23\xb0\x8d\xb8\x0f\xb9\x3f\x60\x04\x42\x4c\x33\ +\xff\xec\x14\x6d\xc7\x44\x15\x2a\x25\x7b\xa0\xdb\x63\x80\x15\xfa\ +\x40\x44\x1c\x12\x04\xd0\x0e\xed\x4a\x74\xce\x9f\x9d\xa6\x52\x1b\ +\x78\x3b\x6c\xa7\xf4\x26\xb4\x91\xc2\xac\xcf\x6e\x13\xee\x8d\xd2\ +\x62\x55\x6a\xa3\x37\x85\x3e\x1a\xc7\xb1\x7e\x23\x77\x08\x3d\xf6\ +\x62\x95\x7e\x12\xb3\x5e\x55\xbe\x17\xbe\xa6\xda\x7d\xfd\x31\xfa\ +\xd6\x31\x1e\x6b\x8f\xdb\xf0\x51\xce\x33\xe3\x5b\xd3\x77\xe7\x30\ +\xfa\xce\xde\xd5\x1b\x3b\x9e\x16\x04\x83\x2a\x6c\xa8\x81\x63\xd1\ +\x53\x58\xba\xf6\x03\xfa\x33\x39\x40\x8f\xd1\x5e\x92\xa6\x5c\xbc\ +\x18\xf5\x3c\x40\x5f\xd8\x21\x32\x47\xf5\xfa\x45\x52\xe3\x6d\x66\ +\xaf\xb2\x79\xf4\xc7\x13\x73\xe3\x4d\xa2\x70\xf0\x3e\xc5\x2f\x90\ +\xd2\xa6\xc0\xe7\x7c\x25\xaa\xa1\x4b\xca\xbe\x63\x76\x55\x13\x9a\ +\x24\xe9\xe7\xb8\x46\x6e\x98\xa9\xce\x03\xb8\x2e\xc1\x3c\x17\x19\ +\x8d\xf5\x8c\x70\x3c\x07\x8d\x23\x9f\x5c\x90\xa2\xf2\xb7\x86\xfc\ +\x9e\x85\xf7\x2f\xc4\x52\x87\xdf\x36\x7f\xf7\x19\xbf\xa1\xf6\x8d\ +\xc0\x60\xf7\xe0\x03\xe5\xdf\x2b\xde\xb8\x7e\xb5\xb9\xc2\xf8\xf2\ +\xe5\xc3\xed\xdd\x0b\x8c\xd8\x37\x51\x87\xfb\x0d\x2d\x16\xbc\xf4\ +\x08\x52\x3e\x7a\x7d\x0c\x85\x5f\x3d\x72\xa8\x53\xef\xc9\xd0\x47\ +\x73\x0c\x64\xf6\x75\x23\x34\x7d\xc0\xf6\xb6\xc5\x42\xf6\x3b\xce\ +\x89\xf3\xea\x2d\x1e\xe2\xb2\x6e\x34\xe9\xf2\xf8\xab\x1a\x38\xee\ +\x1c\x87\x8d\x7a\xa1\x61\xdc\xc7\xaa\xe3\x58\x5f\x3c\xe0\x67\xdd\ +\x10\x8e\xb1\x1d\x4b\x95\x79\x3c\x32\xbe\x9b\x2b\xbf\xdc\x83\x9d\ +\x3a\xc6\x3d\xbf\x83\xad\x87\x03\xb4\x01\xce\xc7\x6d\xdd\xfd\xd2\ +\x0e\x75\xe6\x4c\x38\x64\x24\x6c\xd5\x48\x1b\xcc\x31\x8c\x2f\x23\ +\xfb\x40\x99\x69\x74\x7d\x87\xf8\x58\x56\x91\x79\x5e\x14\x6c\x93\ +\x91\x83\xde\xfa\x14\x5a\xeb\x9e\x90\xc3\x4d\x48\x13\x0b\x35\x5b\ +\xc4\xe4\x34\x24\x3f\x85\xd2\xc9\x50\xb6\xee\xb5\xf5\x80\x8b\x45\ +\xec\x2b\xd9\x11\xb5\x0c\x74\x9a\xc0\x71\xaf\x38\x72\x06\x1d\xa3\ +\xd0\x75\xe5\x9c\xb5\xd9\x5f\x6b\xeb\x58\xfd\x07\x28\x79\xab\xe5\ +\x6d\xdd\xa8\x0d\x5a\xf4\x5c\x34\xe0\x82\x09\x98\xdc\x5e\x30\x16\ +\xfe\x88\x45\x04\x84\xbb\x61\xc3\x6f\xef\xd1\x89\xc9\xeb\x09\x69\ +\xab\x73\x20\xfa\xa6\xa1\xd9\xfc\x23\xee\x06\x1b\x76\xba\x99\xd3\ +\x58\xb1\xd4\x33\xa3\xb1\x46\x71\xc0\x29\x66\xce\x80\x87\xad\x68\ +\x25\x16\xf3\xf1\xd2\x81\xf3\xaf\x7a\x6b\xf2\x88\xed\x09\x2a\x12\ +\x4f\x18\xe8\xe1\xb7\x23\x9b\xfc\x02\x9c\xc7\xfc\x70\x1c\xa9\xc3\ +\x4c\x5b\x73\x15\x0d\x01\x8d\xea\xa1\x81\xe9\x73\xb3\xcf\x93\x25\ +\xad\xf8\xec\xf7\x9e\x1d\xfa\xe4\x92\xca\xde\x1e\xac\x16\xe5\xfc\ +\x7b\x74\x40\xf3\x56\x5f\xf1\x2e\x84\xdd\x63\x06\xd6\x01\x7c\xf6\ +\xf4\xd9\x71\xc9\x4d\x81\x77\xae\xd7\xd7\x5f\x6e\x1f\x3f\xfd\x1c\ +\x2e\xc4\x48\xbc\x70\xe1\xc2\x85\x0b\xf7\x70\x7d\xa1\x76\xe1\xc2\ +\x85\x6f\x87\xae\x49\x1f\x23\xaf\xdb\x7e\x75\xb4\x6b\x6d\x60\x71\ +\x05\xcf\xe3\xd3\xc7\xb8\xa0\xc4\x5f\x4d\x0f\x04\xe7\x0b\x4d\x5e\ +\x6c\xf2\x82\xb3\xd9\xe4\xad\x41\x42\xeb\x03\xe4\x13\xe3\xa2\x35\ +\x1b\x13\xa3\xc3\x7d\x40\xdd\x6d\x19\x34\x8c\xea\x61\xe0\x99\x71\ +\x52\x0c\x30\x46\x16\x7d\xde\x50\x64\xcb\x3b\x2c\xe0\xf8\x7f\x64\ +\xf2\x2e\x0d\x6e\x36\x6a\xce\x88\xa1\x4f\x1e\x3e\x6e\x44\x22\x2f\ +\x73\xd9\x68\x73\xc0\xd4\xc9\xd6\x17\x71\x30\x5d\x27\x78\xc7\x35\ +\xa3\x4c\x53\xcc\x92\x32\xb0\xbe\x61\x70\xbd\x65\xb2\x39\x8c\x36\ +\x0c\x77\xb1\xd4\x00\xee\x02\xb9\x27\xe1\x67\x78\xc4\x00\xcf\x89\ +\x66\x7c\x26\x79\x97\xdf\xa5\x61\x8e\x07\xf1\x00\x68\x84\xa3\xeb\ +\xc7\x8a\xed\x93\xac\x06\x24\x87\x3a\xbf\xb8\xeb\x58\x99\x5e\xcb\ +\x76\x71\x5c\x21\x99\x53\x5e\x4f\x02\x3c\xd4\x90\x7f\x25\xe6\x6c\ +\x7a\x4b\x41\xbb\x33\x3d\x66\xb7\x8d\x4f\x77\xd2\xef\x60\xdd\x38\ +\x0b\x9e\xac\x72\x0a\xe4\xcf\x2d\x8f\x83\xef\x84\xb7\x56\xf2\x3c\ +\xde\x82\x83\x1e\xdb\xec\x64\xbb\xdd\xab\xed\x1b\x17\x85\x9c\xcc\ +\x94\xf3\x60\x7f\xdc\x83\xeb\xb4\x43\x78\xc6\x86\x34\xf5\x78\xd8\ +\x59\xc1\x3c\x53\xd1\xf7\x28\x63\x6d\xac\xfb\xb5\xe3\x68\xe0\x39\ +\x21\x5a\xf4\xba\x85\xf1\x08\xbe\x39\x26\xa8\xfe\x18\x65\x57\x41\ +\x5f\xaa\x41\xa3\xb1\x4a\x13\x86\xec\x96\x65\x33\x7b\x0f\xc5\x23\ +\x37\x6c\xba\xe8\x69\xa3\x6e\xda\x0e\x66\x73\xde\x48\x12\x8a\x07\ +\x60\x97\x2e\xe7\x29\x93\x18\x6b\x25\xf8\xf4\xe6\x35\xb0\xae\x5b\ +\x1d\x5c\x65\x1a\xd9\x4f\x79\x63\xdb\x73\x7b\x2e\x13\x63\x6a\xbe\ +\xc7\x8d\x2f\x0c\xb9\x15\xd4\xb3\x13\x8f\xf7\x27\xe8\xb9\xff\x3e\ +\x7f\xba\x7d\xae\x3f\xe1\x8c\x22\xc6\xba\x36\x0f\x70\x4f\xfe\xc6\ +\x52\xff\x7e\x30\x6d\xd0\x03\x70\xfc\x40\xf1\xe1\xe3\xcf\x21\xfd\ +\x84\x3d\x43\x8e\xc8\x9b\x90\xb2\xe3\x09\x3b\x5f\x13\xa4\x1d\x76\ +\x4c\xa1\x42\x33\x0b\xe0\xdc\xfa\x7b\x0e\xac\xe5\x52\xa3\x38\x37\ +\xaa\x63\xe1\x63\xc4\x71\xf4\x6c\xb9\x40\x8f\x19\xc2\xc5\xe2\xcb\ +\xe1\x7f\x98\x25\x9f\x0d\x97\x4a\x58\x2f\xfb\xfc\x82\x2a\x0a\xcb\ +\xb6\x5e\xbd\x39\xe5\x63\x81\x3c\xc4\xa2\xc5\x38\x35\x9f\x5c\xa8\ +\xc3\x86\x69\x73\x20\xe9\x3c\x73\xe6\xdd\x10\x18\x31\xf3\xe1\x85\ +\x01\xa0\x26\xa0\x40\x6d\xfa\xd4\x19\xcd\x1c\x30\xc9\x01\x97\x9d\ +\xb6\x24\x63\x17\x51\x96\xbe\xd0\x34\x84\xd6\x4f\xc7\x06\x5a\x00\ +\x12\xb7\x58\xf4\x54\xdb\x15\x06\x90\xdb\xbf\x61\x02\x68\xc6\x76\ +\xea\x1c\x11\x76\x4d\x0a\x18\x71\xd3\x3d\x2a\x0f\xf3\x93\x27\xa0\ +\xee\x42\xcd\x49\x03\xc9\x57\x38\x8c\xf3\xcb\xa5\xdc\x0e\x6c\xe1\ +\xb2\xa5\xc1\x1c\xdb\x58\xab\xf1\xf0\x6c\xfc\x38\x22\xf3\x0c\xbb\ +\xd1\xb4\xce\xaa\x00\x02\xd6\xf8\x32\xa8\x57\x34\x27\x0c\x2b\xe1\ +\xb0\x03\xdd\x7e\x2b\x7a\x5e\xab\x63\xb3\x87\x07\x82\xed\x82\x5c\ +\x07\x2c\x0f\x68\xe4\x30\xa5\x37\xfc\x25\xca\x84\xd5\x07\x3a\xd7\ +\x6c\x9a\xa8\xc1\x5e\xdd\x04\x6d\x78\x21\xcd\x83\x6c\x21\x76\x65\ +\x3a\x39\xcc\x61\x71\x06\xe5\xc2\x5b\xab\xe4\x1c\x0f\x58\xaa\xd5\ +\xf6\xd0\xf9\x02\xfd\xa2\xa8\x4e\xc7\x71\x9a\x0e\xb1\xc7\xc2\x81\ +\x31\xee\x34\x83\x08\x97\x34\x1d\x9a\x40\xcd\x01\x7d\x1e\x99\x53\ +\x1c\x2d\x5f\x0f\x18\x30\x03\xec\x92\x92\x26\xeb\xb4\xc0\x30\x5b\ +\x8c\x09\xb6\xd5\xc8\x64\xcf\x73\x6b\x58\x7a\x3d\x8b\x14\x23\x98\ +\x66\x97\x01\xb9\x76\xbc\x3e\x62\x27\xac\x94\xfd\xd4\xe7\xda\x4f\ +\x53\x54\x2f\x4b\xcb\xa8\x9f\x0c\x7e\xd0\xc3\x5b\x1a\x26\x3c\x6a\ +\x30\x85\x2f\x1f\x6f\x9f\x6e\x7f\x15\xb3\xf9\x4c\x7b\xe1\xc2\x85\ +\x0b\x17\x66\x5c\x5f\xa8\x5d\xb8\x70\xe1\xdb\xc1\x2b\xb1\xbf\x23\ +\x60\x3e\xfd\x3a\x30\xec\xf5\xb2\x90\x97\x95\xd0\xe1\xb7\xd3\xf0\ +\x7f\xd4\xe2\xaa\xd2\x17\xc4\xb8\xc2\xd4\x8d\x87\xd5\x46\x67\x1b\ +\x77\x49\xf8\x54\x71\x18\x19\x1b\x17\xf0\x24\xa1\x90\xc9\xbb\x2d\ +\x90\xab\x1f\xf1\xde\x80\xe8\x9d\x1f\x6d\x9d\x8b\x7d\xd9\x75\xb7\ +\x26\xb9\xe8\xf8\x05\xd8\xd0\xfa\xb7\xcd\xcc\xe9\xb7\xd6\x60\xe7\ +\x2d\x1b\xfc\x65\x26\x6a\xb2\x51\x87\x50\xe6\x92\x32\x97\x7c\x74\ +\x00\x38\xf1\x62\xcc\x2b\x27\xd6\x94\x9b\x09\x4e\xd2\x69\xa6\x3b\ +\x1c\x13\xcd\x66\xe7\x05\xf9\x0c\x04\x86\x65\xbb\xb6\x6a\xdd\xa0\ +\xd0\x3e\x4f\xbe\x27\x00\xe9\x9f\xd0\x13\xd6\x63\x47\x00\xeb\x1d\ +\xbf\xcf\x03\xcc\xef\x6a\xec\xeb\x02\x98\xf3\xd8\xc6\x35\x94\x91\ +\x81\xa6\xf8\x6a\x1c\x2a\xac\x63\x05\xee\x8f\x32\xa2\xb0\xea\x33\ +\xe1\x1d\x3c\x8a\x9f\x01\xb5\xbf\x07\x38\x4f\x99\xdf\x8c\xaf\xa9\ +\xf5\x35\xfa\xca\xe9\xc9\xb6\x1b\xd7\xc3\xcf\x62\x5b\x3b\x01\xea\ +\x5e\xcd\xb3\xcf\xdb\x95\xb3\xdc\x2d\x5c\xeb\xb5\x97\x74\x40\x07\ +\xcf\x4e\x33\xc9\x00\x13\xd9\x4f\xfa\xec\x27\x04\x39\xa6\x2a\xab\ +\x4a\x3c\x71\x60\x41\x5b\xfa\xc8\xdf\xde\x04\x4d\x6e\xe8\xb0\x90\ +\xc7\x11\x38\x4e\x7e\xed\x10\x05\x10\xe1\xba\xd9\x48\x54\x6d\xf2\ +\x23\xc4\x8e\x9c\x88\x31\x87\x30\xc8\xab\xf3\x82\xe7\x7a\x23\x63\ +\x1c\xbb\xd1\xc4\x2c\x93\x26\xed\x1e\x44\x39\x6d\xa9\xbe\x1c\xf1\ +\x82\x56\xb3\xa1\xd5\xc8\xbe\x63\x8e\xda\x1b\x3d\x57\x83\x2d\x16\ +\x5e\xa7\x78\x63\x19\xeb\x87\x6d\x29\x1b\x7f\xee\xf1\x4b\xbc\xa7\ +\x83\xfb\x4d\xf0\x1b\x0d\xf3\xf7\x81\x69\xa7\x9e\x00\xff\xe3\x0e\ +\xff\x7f\x25\xaf\x8f\xb8\x7d\xc6\x91\xe2\xc6\x98\x6d\xf4\x36\x02\ +\x50\xf3\xda\x81\x0f\x23\xc7\x6e\x79\x6e\xe4\xa8\xc7\xe8\xc3\x56\ +\x6b\x36\x78\x18\xf6\xdd\x62\xe1\x06\xc2\xd7\x3a\x70\x61\x28\x86\ +\x3e\x67\x44\x22\xe6\x63\x13\x0f\xc6\xd3\x4f\xa3\x72\xc2\xe5\x6f\ +\xa7\x55\x1c\x76\xf7\x31\x50\x7e\x81\x96\x04\x28\x99\xe9\xa3\xcb\ +\x2f\xf3\xfc\x5b\x6f\xb8\x34\xd3\x1c\xb0\x50\xcf\x4c\xda\xe8\xf2\ +\x81\xb1\x30\x44\xed\x07\x79\x58\xd2\x0a\xb1\x2e\xfb\xb0\x48\x0e\ +\x88\x13\x0c\x33\x3b\x17\x56\xd9\x34\x46\x44\xf6\xd8\x4f\xd8\x46\ +\x15\x4d\xba\xd0\xfc\x1e\xea\x73\x33\x86\x0d\x6b\xa8\x77\xda\x42\ +\x23\xfb\xb6\x18\x80\xcd\xc0\x16\xc8\x61\xaf\xae\x21\xf7\x5b\x7a\ +\xc0\x54\x17\xe6\x31\x49\xc8\xbc\xd2\xb3\x93\x97\xcc\x8c\x2d\xf9\ +\x18\x0f\xd3\x6a\xc0\x58\x78\x45\x3b\xbc\x82\x3d\xb4\x93\xb1\x59\ +\x08\x6b\xd8\x8e\x1c\x30\x4b\xbe\x1a\x9c\x76\xaf\x41\xdb\xc7\x46\ +\x27\x5b\x4f\x8d\xb9\x05\x3b\x9a\x9c\x03\x6d\x7d\xba\x76\x97\x87\ +\x63\x24\x96\x0c\x65\x5c\x33\x3b\xa9\x91\xd8\x6d\x31\xbd\xa6\xd3\ +\xce\xde\x98\xaf\x41\xe0\xa4\x56\xe6\x40\xda\xea\x26\x27\x80\x99\ +\xed\x46\x3e\x02\x5f\xac\x76\x1d\xce\x0e\xec\x41\x46\xeb\x3f\x68\ +\x04\xd3\xea\xd1\x8f\x65\x81\xba\xa8\x93\x34\x3a\x5e\x5f\xc9\x3d\ +\xa0\x66\x70\xd8\x2e\xa8\x91\x59\x41\x38\x46\x9b\x0e\x16\x99\x93\ +\x41\xa8\xc1\x90\xe5\x33\x1e\x9c\x38\x1a\xce\xc6\x00\x38\x86\xa3\ +\xe9\xb5\x9f\x2c\x97\xf9\xcc\x85\x3a\xb6\x3a\x16\x03\xab\x86\xfd\ +\x1c\x57\x97\x55\xd3\x2f\x84\xbf\xe3\xcb\xa5\x31\xea\x99\x1f\xef\ +\x0f\xf2\x27\x04\xa7\xf7\x11\x8f\xaa\xad\x81\xf6\xfa\xee\xc3\xed\ +\xd3\xeb\x87\xdb\x4b\xd8\x38\x92\xe7\xbd\xb1\x2b\x76\xe1\xc2\x85\ +\x0b\xff\xdc\xb8\xbe\x50\xbb\x70\xe1\xc2\xb7\x03\xd7\x5b\xfd\x9a\ +\x6b\x87\xdf\xe2\x3a\x6c\xba\xee\x1b\x03\x6e\x2f\x28\x01\x04\xf0\ +\x1b\x6a\xf8\x82\x09\x13\xe4\x05\xe6\x98\x6a\x7d\x98\xc9\x1e\x17\ +\x97\xbe\xe9\x50\xaa\xf4\xc9\x27\x6c\x8e\x6b\x6a\x0a\xd2\x54\x9f\ +\x95\x05\x98\xd9\x54\x07\x06\xba\xb4\x15\x60\x53\x87\xec\x31\x17\ +\xfa\x0a\x54\x2b\x9f\x5f\xa4\xe9\xe6\xa3\xbf\x68\xab\x06\x3f\x1a\ +\xb5\x8c\x81\xb6\x9d\x8d\xa3\x0f\xbf\x68\xf6\x83\x97\x1f\x2b\xac\ +\xe1\xf4\x79\x24\x38\x05\xe2\x99\x8d\x5c\xb6\xce\xb1\x63\x2f\xa2\ +\xb4\x40\x6e\xc8\x72\xb1\xa3\xed\x24\x9c\x97\xcf\xfa\x7c\x40\x3b\ +\xfb\xe2\x03\xe6\x19\x03\x97\xfc\x0a\xea\xd0\xa7\xf6\x08\xcd\x65\ +\x4d\xd7\xba\x0c\xfe\x2c\xdd\x1c\xeb\x37\xdc\x99\x52\x40\xdb\x87\ +\x1f\x74\x26\xd1\x6e\x04\xb1\x3d\x22\x5f\x5b\x6c\x42\xab\xb5\xe6\ +\xcc\x68\x91\x3e\x3e\xec\x25\x71\xad\x43\xbb\x13\xd3\xfc\xef\x41\ +\x49\x6b\xbd\x6f\x81\x6b\x7d\x8f\x7a\x6f\xad\xf3\x35\xe3\x52\xef\ +\x6d\x0c\xf4\x6d\xd7\x8a\x9d\xd6\x0d\xfd\x59\xec\x34\x27\xf1\x28\ +\x3e\xc1\xf3\x42\x52\xbe\x76\xf5\xc5\x5b\x9f\xf0\xc0\x7a\xec\x0b\ +\x43\x9b\x15\xb8\x34\x98\x92\x79\xe8\xd6\xca\x6b\xc9\xf5\xa6\xc0\ +\x2e\x47\x49\x07\x56\x00\xdd\x8a\x8e\x57\xcf\x5e\x3f\x8d\x9f\x2b\ +\x08\xa5\x6e\x82\x85\xc5\xed\x12\x4e\xa6\x93\x0e\x5d\xb2\xd4\x65\ +\x48\x04\x9b\x5e\xf7\x40\xdd\xbc\xaa\x98\xba\xba\xc9\x96\xbd\x6f\ +\xdc\x0f\x4d\x8e\x90\x71\x22\x93\xb0\xd4\x98\x7d\x52\x81\x9a\x48\ +\x52\xd4\x3b\x38\xa3\x58\xac\x5f\x93\x99\xe7\xbc\x4b\x14\xb0\x1f\ +\xbd\xe7\xa9\xf7\x15\xc7\x44\xd6\x0f\x7f\xa4\x4d\x0d\x6d\xf4\x98\ +\x60\x7e\x51\xc9\xdf\x50\xfb\x40\xe9\xbb\xe9\xdb\x5e\xe8\x7e\x05\ +\xf4\x21\xfe\x89\xe1\xcd\xc0\x3f\x76\xf8\x05\x7f\x72\x53\xfb\x87\ +\x88\x2e\x77\x57\xd9\x76\x07\xb2\x42\xec\x33\xbf\x34\x16\x41\x52\ +\x0b\x19\xd0\x6d\xbf\x91\xf2\x39\xf2\x87\xaf\x0c\x1d\xf7\x02\xc7\ +\xaf\x66\x05\x34\x68\x58\xe2\x35\x13\x56\x98\xd3\x65\xcc\xd4\x9c\ +\x17\xcb\xfa\xad\xb5\xe8\xb1\xfa\xab\xce\xb6\xd4\x61\xbb\x7e\x8b\ +\xa1\xe1\xba\x2b\xe2\xf5\xe5\x1b\x32\x32\x06\x8e\x73\x51\x40\xa4\ +\x75\x6c\x73\x2d\x2c\x64\x87\xc6\xf2\x8a\xa1\xc7\x22\x6c\xb9\x5a\ +\x0e\x4a\x98\x1c\x43\xdb\x91\x73\x4b\x8c\x2d\xbb\x62\x2e\xd0\x3d\ +\x5e\x2b\xc6\x79\xe4\x90\x0b\x3e\xa0\x59\x43\xc7\x2e\x60\x23\x7b\ +\x06\xa0\x8d\xbe\x87\x68\x2b\x26\xd7\x47\xc7\x06\x13\x0d\xa5\xd6\ +\x6a\x8c\xb9\xe0\x2c\x48\x3e\x5b\x43\xb9\x61\x8c\xcd\x8d\xa5\xd7\ +\x3a\xd7\x1f\x54\xb5\x58\xb8\xa7\xf1\x95\x70\xfa\xae\x19\x65\x9f\ +\x09\x70\x7c\xb5\xad\xb7\x93\x2c\xbe\xb6\xb6\x1a\xbc\xb6\x55\xcb\ +\xb7\x4d\x74\xb7\xd1\x6f\x42\xe4\x28\x15\x86\xb7\xad\xb0\x2d\x97\ +\x7a\xc1\x56\x57\x36\xbb\xd3\xc0\xe2\xd3\x3d\x68\x06\x61\xcb\x7d\ +\xff\xd2\x09\x64\xf3\x08\x6d\x1f\x1a\x7b\x2c\x7c\x95\xcb\x7e\x3d\ +\xd6\xe1\xe5\x51\x46\x74\xbb\x10\xa2\x35\xaf\xbb\xc8\x70\x7c\xe8\ +\xdc\x6f\xea\x9d\x21\x52\x98\xe5\xd4\x02\x08\x35\x5f\xbf\xac\x12\ +\xfa\xb1\xf0\x68\x8e\xeb\x58\xeb\x7e\xa2\x8c\x00\x05\xd0\xa1\xbe\ +\x02\xe8\x68\x06\x8f\xff\x35\x26\xd2\x76\x34\xf4\x3c\x99\x67\x28\ +\xfa\xe3\xb5\x15\x96\x79\xc2\x87\x8f\x16\x79\x3c\xb7\xd1\x8f\x47\ +\x90\x8c\x4a\x62\xe9\xe0\x8a\xcf\x39\x24\x1c\xa7\xa4\x85\x24\xaf\ +\xa3\x44\x71\x99\xd5\x03\xdd\xa6\x97\x04\x3a\x1f\x03\xb0\xf9\x96\ +\x43\x5b\x06\xb9\xdb\x27\xfe\x0f\xb5\x0b\x17\x2e\x5c\xb8\xf0\x1c\ +\xae\x2f\xd4\x2e\x5c\xb8\xf0\xeb\x23\x2f\xda\x1e\x62\xbe\xa6\x1c\ +\x38\xe3\x3b\x3c\x46\x69\x47\x12\xac\x69\x0a\x76\x78\xf5\xf8\x1a\ +\xd7\xcd\xf9\x27\x1f\x01\x5e\x01\x67\x4b\x9f\x26\xa8\xe8\xfa\x54\ +\x7c\x53\x82\x17\xa3\xd4\xa9\xa7\x06\x62\x34\x74\xcd\x26\x70\x23\ +\xc1\x1c\xf9\xc9\x91\x3e\x6d\xd5\x6d\x5c\x3a\xba\x81\x32\xb7\x58\ +\x44\xc3\x6f\x9f\xb5\xe6\x58\x7e\x49\xc6\xdf\x4c\x6b\x5f\x98\xd9\ +\x9f\x6a\xe4\x50\x6a\xa9\x63\x2f\x3f\xa9\x58\xe8\xc3\x03\x1b\xee\ +\xf6\xb0\xce\xc8\xb3\x66\xd4\x22\xdd\x34\xd1\xaa\x1b\x0e\xe3\x89\ +\xb2\xd1\xbb\x35\x6d\xdf\x1f\x04\x08\x93\xe8\x7b\xb1\x05\x8e\xd4\ +\x07\x25\x00\x76\xb4\x8a\x45\x9b\xc3\x7d\x80\xf0\x11\xc4\x8d\xdb\ +\x41\x15\xd6\xdc\xfb\x48\x65\xab\x73\x9e\xbb\x1f\x6f\xc5\x9a\x0f\ +\xff\xf9\xf9\x04\x9e\x18\xe3\x80\x69\xfe\x63\xb4\x69\x6c\x6b\xde\ +\x3a\x99\xa6\x7f\x53\xea\x01\xc7\x6c\x30\xdf\x56\x53\x78\x6b\x8d\ +\xa1\x7f\x6e\x06\xd3\xe1\xbc\xca\x9b\xbf\xaf\xb4\x61\x1f\xe6\x9c\ +\xe3\xec\xb7\xd3\x58\x28\x1a\x3b\x2c\xb8\xeb\x24\xbe\x7b\xc3\x84\ +\x18\xfb\xd9\x1c\x7b\x17\x6a\x18\x39\xb3\x4d\x4c\xc4\xd9\x44\x03\ +\x08\x65\x58\x29\xb1\x3c\x14\x0b\x4c\x1c\x1c\xcc\x33\xcf\x8b\x09\ +\x96\x81\x1b\xed\x38\x62\x2b\x40\xd3\x7e\xe3\x03\x78\xcd\x54\x6e\ +\xd6\x51\x5d\xe8\xdc\xfa\x52\xd6\x04\x53\xec\xd3\x71\x51\xba\x70\ +\x60\x64\xab\x3b\x36\x8d\x63\x03\x1c\x0b\x6b\xad\x01\x7f\x84\x09\ +\xdc\xb6\x12\xe9\xfc\x1d\x5c\x3f\x1a\xf3\xa3\x6f\x14\xa0\x73\x07\ +\x96\x88\x89\x3c\xbc\x47\x21\x8a\xf7\x38\x68\xe4\x86\xff\x7a\xbb\ +\xbd\x7e\x82\x21\xee\xc2\xaf\x0b\xef\x0a\x23\xf6\xcd\x67\xfc\x0f\ +\xb5\x77\xba\xf6\x20\xc5\x25\x43\xb5\xeb\xa6\xb4\xc9\x09\xe0\x7a\ +\x02\x9d\xbc\xe8\xe7\x83\xcc\x31\xb5\xa1\x75\xc3\x02\xbd\x8e\x00\ +\xe7\xea\x28\xc1\xd2\xba\xb9\xd9\x8a\xa5\xe7\x9d\x13\x66\x97\x0a\ +\xf9\xa9\x8e\x85\xbf\xfc\xe2\x17\x5e\xd4\x65\x03\xc9\xde\xf3\x43\ +\x1e\xfc\x17\xea\x9c\x47\x0d\x63\xa9\xea\xeb\x1e\x0b\xc5\xa4\xe5\ +\xb8\xe8\xa3\x00\xf3\x7d\xdd\x46\x0d\xf4\xea\xb1\xde\x70\xb1\xa0\ +\x3e\x35\xc9\x4a\x6b\xa4\x86\xe8\x9b\x99\x39\xce\xc8\xd7\x35\x1d\ +\x33\xb2\x86\x37\x20\x6e\xec\xb5\x83\x86\x84\xea\x13\x30\xdc\x46\ +\x17\x7d\x58\x3e\x3f\x18\x34\xfd\xda\x86\x13\x02\x68\xc8\x5b\x97\ +\x23\xc3\x35\xb5\x62\xe1\x6b\xb6\x07\x3e\xa9\xb1\x98\xb1\xa1\x26\ +\x4c\x71\x3b\xe8\x65\xef\xd3\x3b\x6b\xad\xdb\x82\x4e\xdf\x91\x3d\ +\x8f\x7b\xc9\x2d\xb6\x8e\x43\x3f\xb6\xa1\xf9\x25\xde\xcc\x86\x55\ +\x9c\x4d\x07\xed\x68\x4f\x41\x3a\x2e\x9d\x12\x7d\x1d\x1a\x45\x0e\ +\x8d\x99\x8a\x9c\x8d\xd5\x78\x58\xf4\x46\xd2\xd4\x6d\x71\x4f\x12\ +\xe4\xbd\xd4\x15\xd2\xf6\xe5\x8c\x89\x2b\x27\x5e\x49\xbb\xc0\xa6\ +\x00\x28\xb7\x79\x09\x84\x95\x8e\x39\x9c\x9b\xec\x15\x97\x3d\x50\ +\xe7\x41\x2c\xf2\x25\x06\x0c\x13\x11\x79\xb0\xa8\x53\xca\xd4\xb7\ +\xd4\x21\x72\x9f\x98\x68\x60\x84\xc2\x54\x00\xd3\xf1\xb6\x40\x47\ +\x1f\x8f\x36\xcf\x8a\xf7\x73\x31\xfb\xb0\xca\xc9\x19\xd9\x07\x28\ +\xe6\x42\xb4\x35\x81\x0a\x11\x63\x7d\x47\x5f\xc1\x34\xd3\x47\xd7\ +\x42\x7e\x6f\x24\x46\xc1\xe0\x64\x97\x3c\x16\x7d\xdf\xcc\x90\x5a\ +\xe9\x78\x2f\x19\x1a\x98\x9f\x3f\x7f\xba\x7d\xfa\xf4\x4b\x78\xed\ +\xbe\xc8\x85\x0b\x17\x2e\x5c\x38\xc5\xf5\x85\xda\x85\x0b\x17\x7e\ +\x5d\xec\xaf\xe7\x84\x47\x57\x6b\x6b\xfc\xcc\x77\xbd\x5d\xdd\xdd\ +\xf8\x01\xd2\xbc\x7a\x7c\x0d\x3b\x3f\x4e\x37\x2d\x42\xbc\xc8\xae\ +\x36\x02\xe2\xd3\x87\x91\x2e\x6a\xa0\xcf\xcb\xd5\x68\xc1\x0d\x33\ +\xfa\x74\xec\x37\xdd\x44\x99\xc3\x58\xb2\xd8\x94\x2e\x9b\x3d\xe2\ +\x6e\xb8\xb9\xf2\xd9\xe1\x11\x63\xef\x1b\x2f\x9f\x21\x48\x91\xf5\ +\xd1\xd3\xaf\x16\xf9\xb8\x5f\x11\x41\xfe\x26\x00\xe3\xe1\x83\x42\ +\x0d\xca\xb8\xa8\x5e\xb6\x34\x00\x6d\x5c\xcc\x33\x94\x31\xb7\x06\ +\x52\xe4\xac\x69\x82\x30\xcb\x6b\x36\xfb\x0a\xac\x18\x7b\x40\xdd\ +\x10\xfa\x90\xe8\x43\x18\xfe\xdc\xd3\xbf\x58\x9b\x6e\xfc\x77\xbb\ +\x21\x66\x9d\x56\x8b\xa5\x81\x9b\xcf\xab\xfe\x1c\x4e\x52\x07\x3c\ +\x9f\xdb\xd1\x0a\x24\xf6\x75\x8e\xec\x81\x41\xa9\xd3\x49\x44\xd0\ +\x77\xd7\xeb\x03\x5e\x13\x47\xe8\xf4\xb3\x5c\x47\x96\x78\x1a\x8b\ +\xfe\x51\xf9\xfb\xd8\x67\x83\xfd\xb6\xba\x6f\xcf\x3f\xd5\xef\xb6\ +\xcf\xca\xdd\x19\xec\x18\x52\xf2\xc4\xbf\x61\x1f\xac\xf5\x76\xaf\ +\xa5\xaa\x97\xfd\xf4\x25\x0c\x5a\xfb\x16\x4e\xe9\xe7\x13\xe8\xbf\ +\x55\x66\x7b\xbd\xb9\xbe\xba\x86\x69\xe9\xf1\x4a\x8d\xd1\xfc\x42\ +\xcf\x79\xb3\x5b\x0e\x54\xae\xd3\x49\xcd\x0e\x65\xcd\xb9\x00\x98\ +\xce\xb2\x0f\x42\xdb\x6a\xd6\x12\x41\x0d\x2d\x84\x78\xe6\x7c\xe5\ +\x64\xa7\x18\xd1\x7b\xdb\x00\x75\x89\xa6\x19\x37\xc3\x13\xb4\x73\ +\x8b\x7a\x9b\x74\x64\x3c\x05\x58\x08\x07\x33\x96\xb1\x62\x65\x17\ +\xba\x1d\x68\xae\xcd\x3a\x76\xd8\x7b\x0e\xb9\xde\x19\xa3\x06\xf5\ +\x5b\xb3\x86\x0f\x70\x60\xfc\x1e\x46\xee\x33\x6f\x08\xf1\xcd\xed\ +\x1f\x19\x58\x9d\x7f\x14\xb4\x43\xe8\xcb\xbb\x57\xde\x8c\xd3\x6f\ +\x14\x82\x50\x67\x70\x2f\x69\x57\x11\xec\x90\xef\xb6\x85\xf6\xf7\ +\xc0\x31\x81\x97\x2c\xa9\xf2\x21\x8d\xdf\x36\xc0\x58\xd5\xf8\x88\ +\x20\x04\x14\x1e\x9b\x74\xea\x81\xa4\x63\x81\x9c\xc8\xef\xf1\xac\ +\x23\x1b\x7d\xc6\xb3\xf5\x4b\x2b\x25\xc5\x7c\x7c\xdd\x15\xa4\x62\ +\x43\xd4\xcc\x68\xf0\xa1\xcd\x2f\xea\x48\x66\x2c\x4a\xc1\x90\xed\ +\x5e\x31\x1b\xe4\x4c\x26\x5f\x71\x77\x63\x51\x1d\x41\x61\x62\x13\ +\x96\x97\x1b\x39\x30\xc5\x3c\x1e\xcc\x5a\x2c\x9a\x00\xb3\xb1\x3d\ +\xca\x31\xa4\xac\xdc\x68\x08\x4b\x8f\x05\x7a\x78\xe5\xa8\xa3\x60\ +\x14\xd2\x2a\x58\xb3\x20\x69\x6c\x3b\xf5\x09\xd6\xdd\xe0\xac\xd6\ +\x09\x0f\xa6\x87\xd4\x2d\x3a\x8b\x26\x7a\xd1\xac\xd8\xe6\x24\x1e\ +\xa4\x3e\x8f\xb6\x6d\x6b\x5f\x82\x73\xbb\x37\x10\x62\x6e\x89\xbd\ +\xb9\xaa\x08\x73\x2b\x5f\x07\x2e\x03\xee\xcf\x61\x59\x75\xa5\x87\ +\x51\x0e\x4d\x7b\x93\x64\x07\xf2\xbb\x20\x8e\x61\x1d\x49\x53\xf4\ +\xa4\x8e\xe8\xbb\xc1\x11\xb5\x11\xfd\x94\x71\xf7\x38\xdd\xe3\x24\ +\xa3\xa0\x5d\xed\x02\xb8\x36\x88\x8c\x2f\xe3\x16\x21\x22\x8c\xae\ +\x3f\x7d\xc8\xc2\xa1\xa6\xa9\xf3\x6d\x2a\x8f\x68\xf4\xac\xb0\xd7\ +\x67\x39\xcf\xd8\x0a\xf4\x68\x8a\x26\xcb\xce\x7a\xcc\x65\x8a\x0a\ +\x93\x13\x28\x7f\x04\x34\x77\xa1\xb1\x7a\x82\x30\xc9\x5e\x4e\x5d\ +\x03\x56\x72\x9e\xd3\x1a\xb6\x3e\x17\xd2\xce\x9f\x35\xbb\x03\x64\ +\xbd\x58\xd4\x10\xe8\x2b\x9e\x58\xfc\x92\xa6\xd1\x53\xc0\xb1\xc1\ +\xc6\xfc\xf1\x9e\xc4\x71\xf0\xc0\x1f\x7a\xc4\x1b\xd4\xcf\x12\x17\ +\xbc\x7d\x2f\x5c\xb8\x70\xe1\xc2\x8a\xeb\x0b\xb5\x0b\x17\x2e\xfc\ +\xb6\xf0\x75\x59\xbf\xc2\xeb\xd7\x6a\xdd\x46\x7c\xf5\x0d\xf0\x6b\ +\xdc\x9c\x41\x1b\x8b\x4e\x1a\xc1\x85\xfe\xf3\xeb\xa7\xb8\xa0\xc5\ +\x05\x64\x3c\xeb\x4a\x13\x7a\xb7\xb4\x92\x37\xa3\xde\x0a\x60\x70\ +\x23\xa8\x4b\x54\x9a\x65\x19\x3d\x33\x41\x23\x16\x78\x72\x0e\x70\ +\xe9\xb0\x89\x83\xad\x4e\x37\x0d\xb3\xb2\xe3\xbc\xfb\x02\x37\xb9\ +\x7e\x57\x07\x4f\xac\x2a\x6f\xea\x84\x13\x4d\x7f\x82\xab\x35\xc4\ +\xca\x8f\xf2\x40\xf7\x97\xa6\x7a\x69\xd3\x97\x01\x9b\xc8\x1e\x1d\ +\x5b\x1a\xa1\xe8\xce\xc0\xc6\x66\xc7\x45\xdf\xd9\xa2\xd0\xc4\xa6\ +\x38\x3c\xf1\x1c\x61\x82\xb3\x27\xbe\x95\x5c\x3f\xa7\x7a\x7a\xc6\ +\x12\x0e\x3f\x98\x24\x1d\x5b\xc7\xbc\x87\xa1\x45\x9d\x51\xfd\x38\ +\xf3\x86\x21\x1b\xaa\xc6\x3d\xc6\xae\xf6\xc9\x78\x77\xeb\x3a\xc7\ +\xfd\x9b\x26\xf1\xdd\x80\xd1\x4f\x66\xff\x4d\xf8\xd6\x9a\x6f\x9d\ +\xd7\xd0\x2e\x59\x9b\xcd\xfa\xd6\xda\x3b\x7c\x6b\xfe\x5d\xac\xc7\ +\x28\x16\x79\xd7\x80\x26\xad\x8e\x60\xa6\x09\xc9\xef\x94\x6d\xe5\ +\x1e\x2b\x74\xac\x51\xdd\xf4\x40\x9f\x55\x52\xc0\xd7\x6f\x5a\x13\ +\x42\xb6\xd6\x80\x3f\x73\x63\x76\x7d\x9e\x00\xb5\x9d\x84\x1d\xa4\ +\x28\x2c\x35\x23\x8d\xcf\xdb\x50\x08\x04\x72\x86\xe9\xce\x7a\xf4\ +\x9a\x81\x35\x8a\x44\x23\x91\xe8\xf6\x84\x4c\xc0\x42\x65\xc2\x1a\ +\x5b\xc0\x69\xe8\x6d\xd3\xa0\x40\x4c\xf1\x9a\x36\x17\xe6\x2a\x46\ +\xa8\x6a\xc9\x3a\x20\xec\x62\x0a\xda\x19\x8f\x86\x45\xad\xa1\x8b\ +\xc5\x78\x5f\x69\x1c\x1e\x51\x87\x14\x7e\x63\xed\x15\x7f\x72\xd0\ +\xc8\x19\x38\xef\xc2\xf7\x47\xdb\xb6\xd8\x17\x9f\x6f\x1f\x68\xe5\ +\xb3\xe2\x96\x79\xd7\xd9\x27\x9a\x86\x2d\x16\x3a\xea\xe7\x23\xc8\ +\xaf\x04\x37\x5c\x7a\xe4\xe5\xc7\x68\x58\xa4\x3d\x2d\x19\xac\x2e\ +\xda\xfa\x08\xce\x1a\xb4\xd4\xc1\xc1\x35\x11\x7d\xc6\x62\x0e\xd1\ +\xe7\x25\x54\xd9\x8a\xa5\x96\x07\x64\x72\x78\xa4\x86\x2d\xeb\xb2\ +\x51\x9b\xba\x6a\xaa\x81\x83\x7a\xd4\x55\xc3\xa2\xec\xa8\x34\xae\ +\xbd\x30\x0a\x4c\x38\x2f\xd2\x28\x54\x4b\x45\xf5\xc0\x93\xfe\x7a\ +\xd1\xa3\x40\x86\x9b\x6d\xc0\x61\x0e\x0d\x30\xc4\xa4\x59\x31\x4b\ +\x27\xf4\xb3\x1f\x20\x3b\x96\x8d\x84\x49\xb7\x4d\xb5\xce\x5c\x0c\ +\x60\x3d\x86\x2e\xa7\x1d\x90\x26\x25\x69\xcc\xe0\xb6\x90\x91\x68\ +\x75\xa3\xe9\x3c\xae\x60\x52\xb5\x3c\x47\xc4\x0f\xdb\xae\x4d\x7e\ +\x49\xd7\x1c\x1a\x99\xe6\x24\x5b\x72\xd6\x94\x23\x1e\x0a\xee\x00\ +\x73\x45\x6e\xf6\xdc\xb8\xae\xe5\xd8\x23\x34\x0d\x4c\xbb\xd1\x8f\ +\xfd\x23\xd8\xf5\x16\x6a\x5b\x8a\x60\xdc\x8b\xea\x6d\x77\x80\x10\ +\xe9\x90\xbe\xe8\x09\x1c\xb4\x89\x0d\xdf\xe7\x57\x66\xbd\xa1\xab\ +\xe7\xb2\xe9\x88\xf0\xeb\x78\x02\x7a\xbc\xd3\xb4\x67\x5d\x79\x8d\ +\x9e\x30\xf1\x3d\x21\xb0\xe4\xac\xd2\xd6\x11\xeb\x39\xd5\xf0\x2a\ +\xa2\xf3\x69\x01\xaf\x33\x6f\xbf\xb1\x1d\x25\x54\x1d\xd8\xf1\x1a\ +\x8e\x64\x3c\xc0\x64\xea\x01\x63\x5c\xe5\xbb\xab\x7e\x41\xa7\xab\ +\x66\x4e\x6c\xbc\x0f\xcc\xb5\xc4\x35\x34\xa7\xc6\x8f\x1d\x40\xda\ +\xb1\xae\x59\xb9\x18\xaf\x53\x3e\xec\xc8\xb5\x80\xe7\x51\x3d\x39\ +\x12\x69\x34\xb3\x0f\xa2\x27\x81\x91\x60\xbb\x01\xeb\xb6\x34\x0f\ +\xd0\x4e\xa2\x72\xba\x80\xa8\x2d\x14\x38\x04\xc9\xf8\xfd\x48\x08\ +\x7d\xec\xcb\x57\xfc\x50\x12\x59\x45\xe6\xb3\xf4\x85\x0b\x17\x2e\ +\x5c\xe8\xb8\xbe\x50\xbb\x70\xe1\xc2\x6f\x8b\xdd\x75\x59\xe7\x60\ +\xe3\x2a\xd2\x0d\xd8\x71\xc6\x9a\x5b\x3d\x16\x23\x71\x4d\x23\xf1\ +\x39\x2e\x1e\x71\xf3\x8d\x17\xd8\xd6\xcf\xe9\xb8\xf6\x65\x2e\x3e\ +\x6d\xd4\x55\x32\x10\x97\xa1\xcb\x85\xb1\x16\x6e\x82\x24\x71\x29\ +\x6f\x2a\xfd\xec\xd8\x10\xd3\xdf\x76\x27\x3b\x10\x5c\xdd\x70\xb1\ +\x98\x1d\xfa\xb4\xf3\x8e\x8b\x74\xfa\x33\x4b\xfa\x52\x6b\xd5\x45\ +\xc7\xbb\x39\xe9\xf7\x58\xd3\xd0\x08\x1f\x94\x63\xb2\x63\x2b\xa4\ +\x2f\x09\x17\x41\x34\x30\x0e\x5a\xda\xba\xc9\x93\x7c\xc5\xf1\xe0\ +\x07\x95\xac\x09\x3a\xf9\x15\xe3\x86\x4f\xf6\x94\xe4\x9c\x02\x60\ +\x65\xe6\x98\xe9\x9d\xc1\xd5\x26\x20\xc5\xcd\xd8\x0a\x67\x40\xfe\ +\x84\xac\xf0\x94\xf6\x6c\xfa\x67\xbc\xf1\x96\x89\xec\xf0\x28\x7f\ +\x17\xc7\x97\x80\x3b\xde\x73\xfd\xd6\x39\x4d\xb8\xbf\x01\x10\x7d\ +\xb4\x89\xde\x0a\xd7\xfc\x96\xba\x6f\xc9\xa5\x16\xdb\xcc\xcd\xb0\ +\xbd\x6c\xcf\xd2\xbb\x5f\xe2\xc0\x61\xfc\x3a\x11\xed\xf1\x96\xf9\ +\x02\x5b\x3d\x48\x37\x03\xaf\x63\x3c\xc9\xe9\x7c\x3c\x4f\xf7\xfe\ +\x47\xf6\xf6\x7d\x73\xa0\x29\xb3\x5e\x99\xad\x1f\x30\xe3\x51\xfd\ +\x7e\x90\x3c\xbb\x91\xf5\x25\x06\xeb\xa7\xb6\xc3\xd0\xd1\xd0\xe9\ +\x06\x48\x44\xe9\xcf\x67\x1e\xe6\x24\xd1\x79\x03\x9c\xb2\x99\x3c\ +\x81\x6e\x9d\xf7\x16\x28\xa8\x96\x79\xab\xb2\xe6\xde\xfa\xba\x99\ +\xa4\x11\x05\xf2\x9a\x37\xa2\x88\x54\xad\x28\x22\x0e\xad\xd8\x06\ +\x65\xf6\x08\xeb\x2e\x52\xcc\x65\x50\xdd\xe1\xe0\x99\x94\x80\x8d\ +\x38\x35\xd0\x4a\xac\xf7\x11\xbf\xdf\x86\x4d\x7f\x4e\x26\x87\xc6\ +\x3f\xe1\x1c\x8d\xdf\x34\x74\x85\x71\x64\xb6\x98\xcb\x7f\x3f\xf4\ +\x9a\xb6\x77\xe3\x8c\x8d\xf6\xf7\x0f\xcf\x35\xfa\x2f\xb7\x57\xfe\ +\x86\x20\xaf\x45\xc0\xc5\x02\x7d\xee\x3a\xf6\xb6\x0d\x72\xec\x37\ +\x2b\x1d\x27\x0c\x4b\x4b\x27\x77\x82\xf2\x6d\xb9\xd3\x11\x3d\xeb\ +\xa9\xac\xae\x82\xb4\x75\x5c\xa9\x0e\xdd\xd2\x64\x38\xfb\xa1\x43\ +\xcb\x4b\xb0\x43\x1b\x97\x5a\xfa\xff\x67\xf8\xd3\x5a\xe0\x25\x40\ +\x07\xa7\xdc\x43\x73\x5d\x38\xec\xd2\xc7\xa1\xad\xe3\x7d\xf0\xd4\ +\xb0\x8f\xf5\xed\x81\xe4\xa5\x4f\x27\x21\x0b\xcb\xe4\x9a\x39\x28\ +\x91\xf3\xdb\x46\x38\xdd\x0f\x5b\x7b\xce\xdb\x7a\x12\xcf\x38\xa6\ +\x6a\x91\xbb\x7e\xdd\x5b\x13\x5a\x68\x52\xf1\xb8\x01\xb3\xcb\xf5\ +\x31\xa5\x98\x56\x1f\x6b\xd5\xb4\x53\x9a\x1d\xf4\x6a\xae\x4e\x54\ +\xb8\x98\x94\xc9\xaf\x6d\x7f\x40\xf2\x4b\xec\x20\x35\x11\x3d\xb6\ +\x39\xcb\x1e\x44\x4f\x00\xdb\x64\xda\x2e\x28\xd6\xdc\x8e\xce\x57\ +\x43\xae\xce\xa1\x85\x29\x76\x06\x08\x4e\xd0\x43\x59\x6b\xa7\xce\ +\x50\xc5\x3c\xda\x51\x1b\x4c\xdf\x0f\xc4\xf0\x7b\x84\x76\x11\x36\ +\xb2\xef\xc2\xc4\x61\xbb\xaf\x7e\x80\xee\x3a\x7e\x6d\x9b\x85\x07\ +\x1a\xa5\xb4\x8d\x26\xa1\xc8\x79\xbc\xe3\x69\xd5\x24\x4c\xe7\x2c\ +\x19\x13\x8c\x55\xd9\x86\x6b\xe3\xa0\xe5\x2b\x36\xd6\x1b\x6b\xde\ +\xf5\xb6\xf9\x9a\x78\x06\x29\xb3\xba\x1f\x65\xa3\xc2\x22\x2a\xd7\ +\xaf\x68\x13\x98\x8f\xe7\x46\x86\xfd\xf4\xba\x27\x16\x4d\xa0\xcc\ +\xd3\x40\x20\x6c\xd6\x8a\x75\x2b\x3a\xd7\x73\x91\xa9\x87\x94\x06\ +\xdd\xc4\xb2\x86\xf1\x5c\xaf\xb5\x50\x9d\x4c\x2c\x2a\x35\x8f\x31\ +\x2b\x35\xac\xf2\xa5\xeb\x67\x51\x10\xc3\x13\x14\x77\xc3\x02\xe3\ +\x70\x8e\xd1\x3e\x7f\x79\xbd\xbd\xbe\xe2\x4f\x3e\x5e\xb8\x70\xe1\ +\xc2\x85\x67\x70\x7d\xa1\x76\xe1\xc2\x85\xef\x03\x5e\x99\x35\xac\ +\xbe\xe1\xab\xc0\x7b\x58\x73\x91\x63\xae\xf7\xe0\x9f\xa9\x77\x3a\ +\x19\x44\x70\x21\xe9\x9b\x75\x20\xa2\x77\x63\x9e\x79\x9b\xcd\x37\ +\x6c\x3b\x14\xfd\xb8\x79\xe1\x20\x20\x1b\xb4\x6e\x50\x38\x8e\x59\ +\xac\xe8\x4c\xd8\x91\xe4\xba\x6c\x19\xd7\x8d\x46\x49\xd0\xf4\xe1\ +\x85\x46\x71\xb0\x6b\x1d\xab\x99\x1f\x1c\x1f\x79\xb3\x66\x8e\xc5\ +\xf3\xb3\x7d\xd7\x8c\x67\xb6\x89\xcb\x9d\x85\x07\x9e\x53\x23\x1a\ +\x9f\x60\x0d\x1a\x49\x3b\xde\xf8\xa9\x6f\x07\x44\xe5\x02\x41\x73\ +\xbb\x76\x6e\xc1\x21\x74\xa6\x3d\xf0\x3a\xd8\x7c\xb8\x21\x6c\xdb\ +\x60\x4a\x90\x4f\x97\x2c\x20\x12\x0d\xdd\x5a\xd4\x38\xe3\x4f\x70\ +\x3e\xd6\x11\xd4\xb6\x84\x29\x17\xe3\x3e\x35\x76\xcb\xb2\xde\xd4\ +\x33\xf9\x3b\xcd\xc4\x85\x83\x7a\x0f\x6a\x4d\x73\x7f\x08\xa8\x9f\ +\xcb\x78\x5b\xdd\x19\x0f\x73\xb1\x4e\xd9\xa4\x5d\x32\xec\xba\xf7\ +\x36\xb0\x1e\xfe\x92\xd2\x71\x16\x22\xbf\x06\xef\xd4\x01\x14\x9e\ +\x45\x87\x94\x5c\x17\xcf\xb3\xc7\xc7\xbd\xb8\x32\x12\xeb\x4d\xdb\ +\x50\xd0\x1f\x3a\xb8\x92\x88\xd3\xab\x71\xad\x93\xe0\x97\x31\x68\ +\xa3\xe8\xfc\xa5\xdc\x9c\xeb\x9b\xf9\xd0\xd0\x8a\x85\x33\x47\x05\ +\xa1\xd7\xe9\xb7\x2e\x00\x78\x6e\x90\x61\x1d\x28\x9f\x65\xf4\x5b\ +\x99\x91\x54\x58\x12\xe8\xea\x56\x49\xfd\x13\xfd\xd4\x64\xe8\x14\ +\x43\xc5\xb3\x72\xd9\x82\xcf\x69\x8e\x79\x5e\xb1\x8c\xa7\x4e\xf9\ +\xd6\xeb\xec\x3e\x10\xb3\x21\xa1\xcc\x39\xd6\xd0\x34\xb3\xd6\x75\ +\x81\xec\x35\xa0\x5a\xe6\xa1\x33\xa5\xf7\x37\x1a\xe1\x87\xed\x40\ +\x02\x71\x7f\x99\xd6\xf9\x19\xa7\x81\x81\xd3\x95\x09\x3c\x91\x7e\ +\x8a\x5e\xd7\xf6\xbd\xb1\xfe\xae\xe0\x15\x8f\x7e\xbb\x0d\xc0\xe3\ +\x0b\xcd\x8f\x69\x37\xbd\x97\xb9\x40\xe7\xe8\x7d\xcc\x1b\xc7\x79\ +\xd8\xc3\x38\xf6\xe8\x4f\xc5\xa4\x17\x35\xc6\x61\x38\x16\xb4\xb3\ +\x37\xec\xb3\xcf\x00\x7d\x34\x70\xee\x63\x40\x35\xfb\xe3\x4b\x2f\ +\xb6\x4c\x94\x2f\xa2\x62\x6e\xae\xcb\x60\x72\x53\x4b\xe3\x73\x1f\ +\x07\x3e\x8e\xeb\xe1\xab\xf5\xf1\x30\x78\xda\xec\xb5\xee\xf2\x12\ +\x93\x99\xc2\x09\xca\x31\xed\x7e\xda\x03\xeb\x49\xba\x41\xd9\xeb\ +\x2d\xe1\x35\x5f\x1d\x95\xbd\x54\xd9\x10\xdc\x1b\x63\xa9\x47\xec\ +\xf4\xe6\xdc\xab\xee\xa1\x7a\x39\x6b\x8d\x31\xca\x1a\x31\x81\xf5\ +\xed\x31\x6c\x7b\x64\xf5\xcc\x8a\xd7\x39\xfb\x6d\x78\x53\x56\x0c\ +\xc6\xe3\x60\x9a\x54\x54\x70\xeb\x1b\xdc\xba\xae\x3d\x00\xa3\x9f\ +\x88\xd6\xfc\x92\xbc\x69\xc6\x55\x83\xc7\x6d\xd6\x78\x63\x85\x91\ +\xb8\xc9\xcc\xf2\x23\x62\xe9\x30\x16\x74\x3e\xec\x55\x46\xbf\x93\ +\x51\x79\xe2\xe6\x63\x02\xce\xe4\x37\xac\xba\xc2\x89\xed\xd5\x2c\ +\xaa\xeb\x8c\x55\xb3\xa2\xc5\x4b\xb3\x13\x7b\xb5\x12\x63\xcb\xae\ +\xdb\xd8\x2a\xf1\x5c\xfa\x20\xcc\x90\x22\xb3\xee\x19\x38\x83\x98\ +\x9c\x81\xb9\x1a\x3c\x34\xed\x03\xa7\x8c\xd4\xb0\x16\x92\xe7\x56\ +\xf4\xb5\x18\x3d\xba\x89\x7f\x03\xb6\x79\xe1\x83\x52\xd3\xc3\xf3\ +\xa5\x49\x2b\x8d\x40\x1d\xd6\x80\x6d\xf4\xb9\xd2\x3d\x2c\x2f\xb2\ +\x1b\x29\xc6\x68\x81\xbe\xd1\x22\x81\x8f\x0c\xf3\x0a\x33\x9c\x4f\ +\x1f\xf1\x1b\x6a\x68\x17\x2e\x5c\xb8\x70\xe1\x11\xae\x2f\xd4\x2e\ +\x5c\xb8\xf0\x7d\xd0\x2f\xd2\x80\xd5\x37\xda\x75\xdd\x84\xbc\xae\ +\xbc\x8b\x7b\xb9\x5b\xa8\xe8\x2e\xcd\xb7\x06\xf5\xd3\xec\xe1\x41\ +\x14\x8d\xda\xec\xeb\xe2\x94\x06\xc8\x0c\xc0\x63\x7a\x72\x34\xd1\ +\xa7\x9d\x3d\x97\xa6\x80\x66\x77\x25\x9a\xcb\x8d\xb1\x6c\x77\xe8\ +\xe2\x37\xcd\x08\x77\x1d\x2e\x8a\x49\xb2\x67\xcb\x2f\xc1\xf4\x9b\ +\x69\x21\xe1\xdd\x9f\xec\xf9\xff\xd4\xa4\xaf\x1a\x53\x63\x49\x9a\ +\x93\x1f\x5d\x19\xd1\x78\x73\x17\xee\x69\x2e\xf4\x09\xfb\xe6\xba\ +\x20\x3b\xed\x95\x21\x19\xda\xec\x81\xc8\xb3\x6e\x40\x82\x2e\xdb\ +\xe1\x98\xd7\x70\x1a\x1c\x01\xd7\x3f\x48\x33\x00\x1e\xed\xd1\x3c\ +\x46\xfc\xa8\x3c\xde\x92\x5a\xb0\x0b\x47\x19\xfc\xa9\x8e\x3d\xc0\ +\xbb\xcd\x28\xa6\xd5\xdc\x8e\xbe\xa4\xaa\x1a\x8e\xaf\x3b\x73\x7d\ +\xb0\x1a\x2b\xf6\x33\xdc\xe0\x41\xdd\xa7\xeb\x14\x9e\x53\xbf\xbd\ +\xee\xc0\x69\xde\x66\x5d\x0e\x5a\x68\x56\x5d\xf3\xa9\x7f\x62\x9b\ +\x7c\x3f\x68\x30\xd6\xc4\xc2\x0d\xf8\x96\x81\x96\x75\x18\x87\x56\ +\x7c\xc8\xe7\x32\x5a\xd5\x6f\x62\x72\x73\x32\x4f\x2d\x09\x45\x62\ +\xd9\xb8\x66\x12\xce\x16\x8f\x65\x32\x31\x89\xca\x37\xd6\xe4\x00\ +\x54\x83\x6e\x82\x96\x06\xf4\xd4\xb9\x4c\x78\x8b\x16\x63\xcf\x1a\ +\xe5\xe0\x75\x27\xac\x09\x1b\x50\x3a\xce\x97\xa8\x28\x1b\xcb\xb9\ +\x3a\xb6\xad\x4f\xdf\xd3\xcd\xd7\x42\x64\x23\xad\x86\x5d\x34\x2c\ +\x50\xc1\x02\x54\x83\x55\x4e\x9d\xfa\x91\x22\x6a\xaa\xcb\x2f\x4c\ +\x32\x80\xf3\x5a\xfd\x69\x62\x42\xbf\x89\xad\xc2\x58\xf4\x58\x98\ +\x7e\x6f\x3b\xc5\x71\x8e\x5b\xec\x64\x6b\xd9\x7b\xc3\x74\x3c\xab\ +\xfb\xbb\xc7\xfd\x15\xc1\x9e\xe3\xff\xb0\xc3\x3e\xa2\x1f\x2d\x16\ +\xce\x92\x7f\xb2\xfd\x93\x3e\xee\x3a\x11\x55\xe3\x1d\x8e\x62\xfc\ +\x59\x43\xf5\x06\x8e\x6c\xd6\xe7\x23\xfa\x58\xe0\xf0\xa8\x43\x04\ +\xf5\x99\x13\x0d\x7e\x2c\x32\x44\x54\x0f\x9e\x02\x3c\x61\x47\xcf\ +\x43\x4a\x3c\x74\xe4\xd8\xec\x47\xf1\x68\xbc\xc4\x42\x03\xc7\x47\ +\xfa\x22\xb2\x81\xc8\x4e\x66\xb6\x78\x90\x5b\xea\xb0\xf7\x9c\x83\ +\xa0\x32\xd7\x95\x31\x92\x15\xe7\xdc\x93\xb0\x4f\x2e\x36\x04\x23\ +\x19\x2e\x34\x9f\xbb\x80\x7e\xbb\x0a\x09\x1f\x14\x1b\x63\x5c\x4c\ +\x10\xa3\x8c\x35\x3a\x7c\xcd\xdb\xd0\xfe\x90\x0d\xc0\xec\xda\x81\ +\x91\x03\xf4\x88\x3d\x29\x62\x39\x05\xe7\xf1\x84\x95\x41\x02\x1a\ +\xd8\x4c\x8e\x6e\x2a\x33\x61\x44\x5c\x67\x30\xb2\xec\xa3\xe7\x5e\ +\x2a\xc1\x31\x83\x0c\x24\x94\x69\xff\x28\x3a\x34\x80\xf9\xae\x28\ +\xb6\x51\x6d\x2d\x3a\x2d\xac\x1b\xfc\x29\x1c\xe7\x6c\x14\x43\x23\ +\x16\x5a\x89\x6f\x03\xf2\x5b\x8d\xc5\x3d\xf8\x05\x06\xb4\x75\x76\ +\x8a\x89\x39\x38\xd1\xf4\x9c\x80\x23\xc5\x6b\x2f\x74\xc5\xaa\x06\ +\xc0\x45\x46\xd5\xc2\x72\x58\x44\x19\x81\x6e\x4f\x58\x72\x9e\xc0\ +\xa4\xd5\x8b\x74\x9f\x5f\x2b\x34\x5f\xb1\x00\xce\xd2\x31\x3b\xaf\ +\xfb\x50\xc2\x5a\x73\xd3\xe6\xf1\x65\x04\xf7\x0e\xef\xe2\x8e\x2e\ +\xdb\xb2\xf6\x15\xb0\xab\x85\xc5\x94\x31\x90\xeb\x57\x69\xf4\xa3\ +\x4d\xeb\x0d\x5f\xa3\xa2\xca\x78\xcf\xc1\xcc\xa1\xf0\xf8\xe0\xdd\ +\xc4\x03\xfd\x1c\x7a\x80\xa9\xe8\x61\xd2\x4d\xae\xec\xf4\x09\x93\ +\x9e\x82\x61\x4d\xd7\x1a\xc9\x69\xd5\xfa\xb6\x12\x07\x1f\xef\x6b\ +\x83\xd7\xfc\xe1\x0f\xf5\x10\x38\xa7\xdb\xd2\xc5\xf6\x60\x40\xdb\ +\x45\xef\xa9\xf0\xf0\x43\x31\xfd\x4f\x67\x5f\xb8\x70\xe1\xc2\x85\ +\x33\x5c\x5f\xa8\x5d\xb8\x70\xe1\xdb\xc1\x0b\xb2\xd6\x3f\x8b\xf5\ +\x02\xd3\xfe\xca\x9f\xe1\xc9\xf1\x74\xa9\xb9\x42\xcc\xe7\xba\xf9\ +\x96\xcd\x76\xf4\x9c\x06\xcc\xec\x85\x32\x1a\xf2\x42\xb6\x16\xc2\ +\x58\x0d\x06\x64\x16\xc6\x65\x2f\x11\x4e\x31\x3d\x80\x7a\xd5\xe0\ +\x77\x6e\xf6\x79\x29\x5c\xbc\xed\xd6\x80\xf2\x61\xbb\x0d\x9f\xb2\ +\x74\x3b\x47\x1f\xe8\xb9\x44\x1a\xe6\x4e\x62\x53\x0d\x80\x03\xa1\ +\xf7\xde\x41\x0b\x1b\x3a\x87\xda\xf2\xd8\x03\x61\x8f\x8d\x1c\x9e\ +\x62\xa0\x1a\xfd\x66\xa0\x8a\xf6\xfe\x1b\x2a\x85\x0c\xca\x3e\xbb\ +\x37\x83\x43\x3d\xae\xe2\xed\xb3\x62\xf9\xc8\x1a\x78\xc3\x6c\x1e\ +\x49\x51\x7a\x2d\x0f\x82\x77\x2b\xef\x60\x5d\x9d\x66\x1f\xe8\xac\ +\x5f\x3c\x8c\x1a\x13\x63\xa5\xf9\x24\x90\xee\xf6\x3d\xf1\xbd\xeb\ +\xed\xb0\x9c\x1d\x84\x37\xae\xff\x1e\xd8\x8e\xa3\xf6\xb7\xac\x4b\ +\x9f\x0e\xeb\x60\x01\xf2\x41\x51\x84\x0f\xeb\x57\xbf\x51\x66\x84\ +\x9d\x12\x76\xb1\x38\x9c\x43\x16\xe8\xf8\x77\x8b\x11\x76\x2f\x94\ +\x3b\x05\x38\x7a\xc5\xd3\xe0\x4d\xe8\x88\x2c\xdb\xcc\xa3\x60\xf9\ +\x0e\x9a\x56\x57\xe7\x8e\x24\x1a\x3f\xd9\x40\xf8\x13\x75\x98\xaf\ +\xfc\x62\xd3\xd0\xb8\x89\x9e\x32\xd9\x70\xdc\x66\x68\x18\xf1\xaa\ +\x25\x1b\xa7\x62\xf8\x53\xfd\x8e\xd3\x80\xb0\x1f\x2d\xd2\x98\xe7\ +\xe4\x78\x97\xf2\xb6\xac\x7a\xe1\xf3\x29\xde\x35\xf0\x25\x5a\xdf\ +\x87\x15\x85\x81\x18\x1e\x19\x1e\xaa\x80\x63\xe9\x7e\x15\x9e\x4d\ +\x7e\xb0\x4d\x0a\xcf\xea\xfe\x61\x11\x2b\xc8\x1b\xa8\x68\xb8\x19\ +\x27\x78\xff\xa1\xf7\x26\xe5\xbe\x49\x07\xbd\xcc\x71\x7c\x00\xe0\ +\x46\xc3\x95\x4d\xe3\x99\x80\x2a\xe6\x9c\x1b\x60\x0c\xbd\x0c\xe5\ +\x0b\xbe\x59\xa8\x98\xe6\x93\xe6\xd4\xa7\x19\x4d\x0e\x39\xb7\xcc\ +\x19\x2d\x6a\x92\xff\xc2\x2f\xc1\x80\x8a\xd1\xd6\xba\x96\x8f\x07\ +\xfd\xf4\x1c\xa3\x9b\xb5\xb2\xb1\x5e\x18\xf4\xc3\xe1\xff\x07\xc4\ +\x17\x96\xd4\x25\x1f\x8f\x39\x4f\x86\x62\x09\x1b\x9d\x58\x83\xc8\ +\xa1\xa7\x65\x13\x34\xeb\x08\x8c\x33\x20\x87\x7b\x23\x4c\x78\x87\ +\xf0\x44\xec\x90\x89\x2b\x48\xb7\x00\xcc\x36\x78\xb7\x64\xc7\x2c\ +\x52\x33\x62\x09\xf2\x32\xc7\x71\x27\xa2\x6f\xb7\x92\xc0\x28\x47\ +\xa0\xae\xf8\x31\xc6\x22\x6b\x71\x89\xb5\x6c\x08\xa7\x8e\xde\xd4\ +\x0a\x60\x47\xde\x68\x02\x79\x52\x3a\xa6\x47\x44\xb8\xef\xdb\x5b\ +\x55\x67\x58\xb6\x51\x59\x1d\xb5\x16\x43\xb0\x0a\x8f\x49\x5b\x50\ +\xb6\xe6\x06\xda\x5b\xf0\x2e\x4c\x74\xcd\x5d\xec\x74\x1b\xce\xdb\ +\x79\x84\xba\x03\x63\x44\x84\x49\x29\x8c\x03\xe5\x00\xed\x5f\x81\ +\x32\x23\x6d\x65\x1e\x73\x8f\x4c\x47\xec\x8b\xad\x20\x2a\x35\x7e\ +\x3a\x6f\x06\x78\xc4\x45\xdc\x92\x5e\x82\xca\x4e\xc4\x71\x87\x23\ +\x4f\xf5\x22\x8a\x6b\x20\x06\xfc\x29\x24\x7a\x12\x4e\x3a\xae\xc5\ +\x3c\x3a\x10\x8a\xa8\x3b\xa1\x25\xad\xf9\x28\xd0\x39\x64\x7a\x3e\ +\x7a\xcf\x40\x5c\xb6\x3c\x2a\x20\x68\xc0\x3a\x34\xae\xc6\x9f\xe7\ +\x71\xd8\x2e\x2d\xc5\xc7\x1c\xd7\x30\x84\x5e\xd3\x21\x91\xa5\x39\ +\x04\x46\x20\x51\x11\xc2\x36\xfa\x75\xc6\x67\x36\x1d\x13\xd1\x9f\ +\xe9\xba\x0d\xc0\xe7\x7b\x09\x7b\x52\x31\xe8\xbb\xdb\xeb\x17\x7c\ +\x99\xa6\x2f\x44\x2f\x5c\xb8\x70\xe1\xc2\x7d\x5c\x5f\xa8\x5d\xb8\ +\x70\xe1\x6f\x87\xf5\xea\x0e\x98\xaf\x63\x07\xce\xf8\x5d\x0d\xc2\ +\x97\xa2\xf3\xc5\xea\x8c\x88\xf0\x4a\xd9\x6d\xd0\xea\x61\x34\xde\ +\x08\x1f\x17\xd1\xbe\x00\x45\xef\xe9\x95\xb4\x8c\xc0\x64\x77\x27\ +\x11\x14\x2e\x69\xa7\x1a\xa1\xeb\x52\x99\x58\x82\x57\x2c\x2f\x83\ +\x19\xb1\x49\xee\x0b\x7e\x82\x3f\xba\xe4\xca\x59\x6c\xdf\x7c\x19\ +\x7c\xef\x57\x4e\x8d\x1f\x1e\x48\xc7\x6c\xf3\x46\x8e\x62\x69\x2b\ +\x3c\x73\xc9\x33\xcf\x36\x00\x5f\x8b\x84\xd6\x88\x80\x51\x8e\xdd\ +\x58\x36\x8e\x60\x20\x22\x31\x56\x3f\x44\x40\x77\xdf\x58\xd3\x0f\ +\xd8\x25\xbd\x01\x5f\x93\xbe\x5b\xa5\x03\x1e\x4d\xbc\x0f\x0c\xdb\ +\x6d\x93\x08\xc6\x8d\x58\x26\xfd\x68\x28\x21\x92\xe2\x60\x70\xea\ +\x94\xb3\x16\x68\xf5\x39\x6e\x2c\x9e\x1b\xa3\x63\xc9\x58\xe6\xfc\ +\x08\x8f\xc7\xe3\xcc\x64\x3e\x81\xb7\xa9\x85\x83\xfe\xc1\x3a\xb4\ +\x57\xc3\x43\x3c\xa7\x3c\x99\xf5\x42\x3d\x3d\x2a\x4e\x06\x58\x87\ +\x68\xfd\xcf\x20\xde\x5f\xaf\xc8\xc9\x01\x8e\xe3\xcc\x6b\x3c\x6e\ +\xcd\x20\x92\x76\xab\xdd\xd5\x77\x87\x4c\xcc\xb5\x17\x04\x81\x38\ +\x79\x0b\xeb\xe6\x4a\x10\xb0\xd3\x6d\xac\x96\x38\xf7\xd4\x6b\x41\ +\x4b\xc4\xd6\xfd\x87\x88\x73\x0b\x48\x4f\x13\xf0\x26\x15\xc2\xaa\ +\x39\x0c\x0c\xbd\xac\xa3\xa2\x69\x76\x41\x80\x82\x4d\x90\x27\xf8\ +\x1d\x16\x6d\xb8\x93\x92\xe1\x58\xa0\xef\x35\x56\x5d\xc3\x74\x1e\ +\x60\xfe\x00\xdc\x8a\x51\x27\x8f\xb2\xcc\x73\xdc\xfd\x20\x63\x11\ +\xcf\xa5\xe4\xf3\x40\x8d\xaf\x4e\x3e\x01\xe7\xf5\xef\x1f\xe3\xb7\ +\xd3\xe2\xc1\x75\x6e\xd7\x5f\x61\xf4\xcd\x30\x5d\x0b\x74\xf4\x6d\ +\x9f\x1a\x74\x78\x85\xd1\x8d\x93\x80\x5f\x6d\x2e\x31\xde\x89\xc2\ +\x5e\xea\x32\x0f\xaf\xa3\xe0\x4f\xc7\x44\x2c\x0d\xf6\xa1\xaf\x2f\ +\xcb\x32\x26\x5e\x8b\xe2\x1d\x28\x3f\x73\x40\x99\x8f\xce\x71\xfb\ +\x93\x8e\x0d\x35\x61\x21\xc6\x8e\x50\x8e\xb7\x25\xec\x5c\xcf\xf0\ +\x75\x1d\x18\x75\xe4\x4a\x27\x0b\x4e\x69\x14\xcd\x88\x5d\x20\x7a\ +\xd5\x35\x31\xd0\x65\x46\xdf\x2d\x80\xe3\xab\xce\xfe\xfe\x54\x32\ +\x66\xb8\x02\xf5\xc7\x9f\xb3\x6d\x88\x04\xed\x5f\x34\x64\xbb\x09\ +\xb2\x22\x96\xba\xb6\x45\x98\x91\x66\xb1\xe9\x36\x23\xcd\x58\x8c\ +\xd1\x15\xac\xed\x0e\xd0\x1e\x8a\x2d\xa0\xc9\x86\xf5\xe7\xb1\xc7\ +\x40\xd8\x69\x60\x1d\x53\x52\xcb\xd1\x0b\x23\x1e\xfd\x22\xd1\x2e\ +\x45\x8d\x51\x1b\x20\x2d\x73\x82\x39\xf5\x9e\x3f\x3c\xd8\x6b\xd6\ +\x99\x0d\xcc\xe3\x01\x98\x0b\xb8\xc1\xdb\x6b\xcd\x26\xd0\xed\x2d\ +\x96\xa0\xf5\xa6\xef\xe6\x26\xa8\x8f\x45\x6d\x38\xe1\x90\x3a\x11\ +\x87\x68\xe2\x64\x7f\xaf\xf2\x47\x7e\xa0\xa8\x1e\xa3\xbd\x11\x17\ +\x17\xfd\x41\xdf\xb0\x95\xc9\xaa\x99\x67\x40\xaf\x8d\x8e\x91\x01\ +\xc0\x1b\x71\xbd\xe2\xa6\xf5\x6f\xa6\x5e\xa6\xa1\xf1\x8b\x1c\x84\ +\xe3\xa5\x6b\x09\x81\xd9\x5b\x90\xfb\x4a\x3f\x6c\xd3\xe7\x35\xb2\ +\xa6\xfc\x55\x46\x7b\x25\x01\xf9\x7d\xe9\x73\xa8\x8f\x5d\x21\xb9\ +\x62\xe6\xf3\xd4\x3a\xf7\x1e\x83\xdd\xfd\x53\x78\x1d\x87\x29\xe4\ +\x36\x2c\xaa\xc7\x0e\xd0\xeb\x7e\xda\xde\x00\x6d\x2c\x9c\x1c\xf3\ +\xa7\x09\xed\xb1\x20\x99\x46\xd7\x7b\x0f\x5b\x2c\xf1\xa7\x9b\x53\ +\xd0\x64\x17\x2e\x5c\xb8\x70\x61\x83\xeb\x0b\xb5\x0b\x17\x2e\x7c\ +\x3b\xfa\x85\xdd\x5b\xb0\xcb\x5b\xaf\xde\x74\x85\xa7\x76\x36\xce\ +\xf6\x8a\xcf\xe4\x36\x18\x50\x31\x46\x4b\x12\x46\x5c\x58\xea\x82\ +\xb2\xd3\x65\x25\x7a\x50\x28\x89\xfb\x9c\x2b\xbb\x58\x80\x86\xbd\ +\xa4\x25\x56\xb6\x15\x83\x19\xad\x3e\x67\xa0\x11\x61\x60\x50\x76\ +\xb6\x07\xf7\x8e\xff\x47\x06\x17\xd5\xf2\xe3\x29\x3b\x1d\xaf\x23\ +\xf4\xe0\x29\x73\x1f\x34\x79\xaa\xe9\x79\x75\x52\x27\xc3\xb5\xfd\ +\x01\x85\x08\xbf\xb4\x53\x4f\xa1\x2c\x76\xc3\x2f\x2c\xd4\xbb\x76\ +\xf7\xbc\x8d\xd0\x00\xd6\x09\x9a\xbb\xac\xb9\x07\x60\xa3\xed\xeb\ +\x24\x2c\x22\x7a\xf6\x39\xce\xe4\x77\xc7\xb9\x87\xa8\xb3\xcd\x6d\ +\xe4\x59\xed\xc3\x8c\x9f\x5b\x85\xc4\x13\xe2\x55\x12\xfe\x36\xab\ +\x4f\xb0\x09\x68\x22\x76\xb6\x02\x0d\xa5\x0d\xe8\xf0\x7a\x22\xe9\ +\x01\xb6\x73\xfd\x8d\xf1\xf6\x39\x20\xe3\xfb\xcc\x7c\xae\xf2\xf5\ +\x35\x2b\xb3\xbd\xee\x3d\x4b\xc6\x96\xd2\xd3\xee\x63\x4e\x08\xe2\ +\x29\x2a\x03\xa4\x2c\x12\x5c\x8b\x7d\x2e\xdd\x09\x59\xab\x96\x3b\ +\x40\x33\xd7\xdd\x22\x0a\x4c\x2a\x14\xf4\xcd\x22\x23\xe6\x8e\x53\ +\xd2\x3a\x4f\xa2\xb6\x05\x72\x98\xcc\x36\x2a\xc8\x57\x5b\xd0\x86\ +\x71\xb6\x10\xd6\x7a\xb3\xc5\x28\x02\x67\x68\x9f\xa5\x63\xe9\x93\ +\x60\xc3\x7a\x1b\x6d\xc2\xba\x8e\x00\xe5\x2d\x87\xa6\x74\x3d\x84\ +\x6e\x93\x5d\xe4\x36\x46\xf4\x48\x13\x37\xda\x66\x51\x34\xbc\x9e\ +\x09\xbf\x07\x05\xfc\x5e\x01\xff\xee\xfa\x3e\x83\xb3\x15\xdb\x71\ +\xcf\x62\x37\xa5\x6f\xa9\xf7\xb7\x46\x5f\x1f\xae\x87\x56\xe6\x33\ +\x6e\xc4\xf9\xda\x83\x4c\x5f\x46\x1f\x06\xec\xf2\xb9\x1c\xc5\x76\ +\x7e\xd7\x62\xef\xfa\x10\x37\xbf\x6e\x5c\x7b\xd6\xc3\x90\x2d\xd0\ +\x06\x97\xe4\x98\x13\x8e\xa7\xf4\xa7\xa6\x75\xe9\x1c\xf3\xc4\xd6\ +\x03\x81\xcf\xab\xd6\x76\xf4\x29\xc9\x16\xba\xb4\x65\xa8\xab\x3f\ +\xf5\x18\x0d\x8e\xed\x1c\x41\x7c\x2c\xd0\x11\x8c\x43\x27\xad\x28\ +\x47\xd5\x73\x69\x6a\x18\x0d\xe0\x94\x2f\xcb\xc0\x96\x6c\xfa\x30\ +\xe7\x3d\xd3\xb1\xfa\x42\xaf\xe0\xdc\x51\x23\x11\x02\x68\xa4\x9b\ +\xeb\x0c\xbe\xa1\x11\x6b\x6c\xfd\xca\x07\x9e\xe6\x90\x7c\x74\xf3\ +\xf8\x43\x0f\x6b\x78\x67\x18\x5b\x57\x58\x32\xb2\xb8\xd9\xf5\x1d\ +\x40\x6e\x2c\xd0\x7b\x87\x35\x8d\xc0\xa0\x4c\x63\x92\x1e\xb6\xe0\ +\x53\x18\x59\xb0\xd0\xd6\x71\x01\xab\x10\xdb\xd9\x01\xb8\x4e\x6d\ +\xf4\x70\x26\x32\xe0\x84\xd6\xb8\xee\x6b\x33\xba\x2d\x58\x81\xca\ +\xbb\xb7\xac\x53\x9c\x68\x8b\xa6\x31\x44\xb5\x4b\x1a\xb8\xc7\xf5\ +\x4c\xec\xac\x40\x39\x69\xf4\x20\xed\x49\x5d\x98\xd8\xbd\x64\x83\ +\xa7\x85\x0d\x99\x53\xa9\xeb\xab\x45\xf0\xde\x53\xac\x1d\xef\x07\ +\xf1\xd8\xcf\x56\x71\x39\xe9\x86\x63\x8b\x3d\x53\xc3\x32\x39\x0f\ +\x1a\x9d\x03\x03\x47\x66\x87\x31\xa7\x03\xda\x70\x6b\x35\x8c\xe7\ +\xeb\x3a\x45\xe2\x2a\x22\x25\x8a\xd9\x1e\xa0\xbd\x10\xdd\x3d\x02\ +\xf5\x57\x45\xf3\x61\x46\xdb\xa9\x0c\xcf\x84\x4b\x5f\x4b\xe7\x72\ +\xf7\x27\xff\xc7\xcc\x8f\x60\x0e\x9b\x8e\x03\x9e\xff\xf3\x4d\x00\ +\xef\xe1\xf9\x87\xb7\xd9\xb0\x1c\x98\xbd\x0b\x17\x2e\x5c\xf8\x67\ +\xc7\xf5\x85\xda\x85\x0b\x17\xfe\x76\x58\xaf\xcb\x1e\xf9\x8f\x70\ +\xe7\x5a\x7a\x1b\x8a\xfa\xba\x70\x84\x71\x27\x9d\x01\x69\xd8\x00\ +\x8b\xe9\x9b\x6c\x48\xaa\x87\xb7\x97\xe5\xcb\x27\x38\x78\xbc\xbc\ +\xad\xc9\x80\x59\x2e\x68\xed\x44\xaf\xcf\xa5\x30\xe4\xe3\x9a\x1a\ +\xea\xc1\xd3\x93\x0d\x2b\xae\x91\x61\x71\x81\x98\x68\xf2\x70\x38\ +\x36\xc8\x8c\xf3\x1a\x3d\x29\x2d\x06\xfa\x66\xd1\x22\x41\xad\xe6\ +\x52\x48\x0e\x70\x1e\x11\x7d\x33\x65\x9b\xb0\x11\x5d\x51\x09\xf9\ +\xb1\xcc\xed\xc4\xae\xdb\x0d\xd0\x82\x5b\xf9\x42\x0b\x8c\x71\x8e\ +\xea\x75\x0e\x07\x3c\x14\x7c\x3b\x96\x5d\xb0\x20\x82\x35\xed\x3b\ +\xc2\x49\x83\x36\xd6\xf5\x6e\xf9\x94\xcd\x9a\xf3\xed\xc4\x3e\xc2\ +\xe8\xcf\xea\x9e\xf1\xc6\xa3\xf8\x5b\x71\x6f\x2e\xc2\xdb\x46\x7c\ +\x5c\xef\x08\xea\x8f\x9b\x6d\x8b\xb7\xd4\x3e\xd7\x8e\x48\x59\x1c\ +\xff\x2c\x83\x67\x8c\xaf\xc3\x92\xb8\x5f\xcd\x60\x2b\xd0\x12\xc2\ +\x5c\xf5\x8c\x92\x57\xa4\x7d\x87\x97\x38\x10\x89\xf5\x6b\x95\x65\ +\x62\x1b\xac\x8a\x91\xdf\x2a\xf1\x4b\xb5\x55\x29\xbf\xeb\x65\x8b\ +\xf7\x52\xe7\x61\x3a\x81\x6d\xf5\x2d\x1c\xaf\x54\x80\x24\x16\x6a\ +\xbd\xc6\x7a\x9b\x6c\x1a\xd7\x3d\xbe\x80\xd2\x9b\x45\x41\x35\x7a\ +\xa5\x0c\x66\x87\x48\xbf\xe9\x54\xfb\xa2\x52\x22\xda\xd2\x9b\x79\ +\xc0\x71\x3f\x26\x38\xd6\x7c\xfc\xc9\x8b\x25\x3b\xd9\xd5\xb0\x0e\ +\x51\x0b\x34\xbe\x54\x43\xd3\xfa\x22\xfe\x9d\xe1\x39\xdf\x5b\xb1\ +\x67\xf1\x2b\x4c\xef\xb7\x01\x56\x7e\xb3\x01\x72\x7d\xf4\x65\x9a\ +\x6f\xc4\x69\x37\x78\x97\x89\xc1\xce\xa2\xe1\x8e\xbd\x1b\x30\x76\ +\xdd\x38\x92\x19\xdf\x6d\xff\xd2\xa6\xa6\xb5\x03\x2a\x28\xc3\x4b\ +\x3e\xc2\xd1\x6f\x7b\xb9\x81\x48\x8e\x0d\x6a\x52\x71\xad\xa4\xff\ +\x71\xa6\xb8\x5a\xca\x73\xa1\xbe\x6a\xda\xc6\x03\xf1\x4c\xc0\x92\ +\x90\x3b\x6b\xa7\x86\x45\xda\x78\x44\x8f\x85\x7d\x82\x1d\x89\x68\ +\xb9\x8d\xd9\x6c\xcc\x5d\x9a\x84\xd6\xdb\xac\x36\x6e\x6d\x62\xd4\ +\x72\x34\xcb\x9e\x62\x13\x34\xc5\x7c\x99\x47\x44\xdd\xba\xce\xac\ +\x81\xe1\x82\x48\x67\x83\x29\x44\x67\x30\xb0\xf8\xbf\x17\x65\x91\ +\x33\x66\x2f\xd1\xc8\xb1\xee\xd9\x37\x90\xda\x16\x48\x64\xcc\x35\ +\x4a\x1a\xc6\x9c\x26\x0f\xcb\xae\x99\x30\x05\x8d\xb6\x81\x4e\xb0\ +\x53\x80\x3b\x94\x9a\xe0\xc1\xd6\x41\x61\xab\x22\x59\xbb\x9b\x41\ +\x46\xa6\x96\x0f\xe1\x84\x4a\xc4\xc2\xc5\x8b\x9c\x50\x4c\x1a\xab\ +\x6a\x9b\x71\x24\x37\xd3\x1f\x95\x8e\xf2\x54\x4f\xa5\x86\x73\xd4\ +\x0f\xec\x62\xe4\x5a\xa0\xbf\x7b\x4f\xfa\xee\xf0\x75\x9c\x98\x44\ +\x1d\x0e\xa8\xde\xa9\xac\x41\xaf\x8f\xc0\xae\x7c\x19\xc7\xad\x05\ +\x8c\x94\xb0\xf2\x8d\x1f\x4b\xf1\x23\x3a\xec\xce\xbd\x1d\xa3\x76\ +\x43\x23\x64\xe2\xbc\x38\x48\x5d\xaf\x68\x0b\xdb\x46\xd4\xda\x5a\ +\xe6\x89\xc7\x97\x45\xc0\x7c\x6e\x35\x9a\x33\xf1\x28\xb1\x10\x80\ +\xa9\x0a\x0d\xcd\x08\x69\x6c\xa3\x57\xe9\x36\x20\xe5\xca\x06\x40\ +\xe5\x79\x9c\x26\x49\x60\x64\xf4\x43\x68\xc6\x1c\x90\xf6\x95\x3f\ +\x1c\x32\xe3\xb4\xc0\x85\x0b\x17\x2e\xfc\x53\xe3\xfa\x42\xed\xc2\ +\x85\x0b\xdf\x0f\xf3\x75\xe1\xc0\x19\xdf\xb1\xbb\x56\x5b\xf3\x56\ +\x8d\xe3\xee\x2b\xde\x85\x0a\x1e\xcb\x8b\xd1\x35\x23\x16\xd1\xd8\ +\xa1\x4f\xbb\x38\xd8\x40\x1a\xc9\xd5\xf4\x48\x27\x69\xd3\x36\xd1\ +\xed\x80\xdd\xb3\x2b\x5c\xd0\x2d\x54\xb2\x9c\x1b\x2f\x99\x49\x66\ +\xcf\x4e\xfd\xb1\xc5\xc2\x0d\xf7\xb9\x40\x86\x0d\x3d\xc2\xe9\xa6\ +\xa1\x4e\x71\x70\x0d\xc9\x91\xcf\x56\x1a\xd8\x78\xa4\xdf\xe8\xbe\ +\x10\xc2\xcc\x91\x1f\xa3\x64\x4d\x9f\x1b\xbd\xb6\x7d\x21\x3e\x34\ +\x85\x0c\x1f\x88\xd6\xea\x47\xed\x82\x27\xa7\x73\xb7\x0e\x82\x0f\ +\x07\xda\x63\x4a\x7b\x50\x23\x3f\xb7\x6e\xe1\x0f\xe6\xf7\xb6\xef\ +\x21\xf2\x15\x73\x9e\x53\xb2\xe2\x52\xc7\xe3\x3c\xb3\x69\x27\x0d\ +\xea\x64\xeb\xfc\xb6\xce\x32\xe6\x5b\x70\x7f\x5e\x88\xde\x57\xac\ +\x78\x93\xfa\x8d\xf3\x56\xed\xb7\xcf\x69\xc6\x9d\xdc\x75\x3e\xf1\ +\xc1\x1c\xd4\xbd\xd1\x0e\xb1\x4e\xb4\x7a\x45\x1f\x12\xce\x36\xc2\ +\x91\x37\x83\x59\xf9\x18\x37\x58\x36\xa8\xc1\x1e\x27\x22\x66\xce\ +\xeb\x60\x64\x17\x9e\xe6\x9c\x4e\xe9\x1e\xd4\xbb\x0b\x28\x7c\x7b\ +\x67\x45\x8c\xc3\xa1\x32\xd2\x86\x9d\xb4\xe0\xeb\x84\xcb\xb3\xaf\ +\xec\xc4\x7c\x9e\x08\xa7\x7c\x6f\x43\xe9\x9d\x35\xc9\x03\xf2\xdf\ +\xe9\x3e\x13\x4f\xac\xa1\xc5\x0d\x6a\xdf\x34\x5a\x12\xc8\xee\xb8\ +\x00\x69\xe4\xd3\x33\x66\x8f\x22\xb7\xec\xa4\xe8\xba\xb0\x47\x40\ +\xeb\x88\x6d\x50\x6f\x44\x99\x0e\x37\xeb\x7c\x35\xce\xf2\xbf\xb5\ +\xae\x81\x3a\xdf\xab\xd6\x6f\x0a\x6c\xdc\xb1\xbd\x67\xc4\x51\xf8\ +\x19\x7f\x2a\x8a\x17\x1a\xf4\xbd\xec\x19\xf4\xdb\x3e\x3b\x20\x0f\ +\x5e\x2b\xf0\x4a\xe9\x37\x1d\xb9\xcb\xb3\xa7\xdf\x96\x0a\xc8\x04\ +\xac\x35\x1c\x36\xc7\x1a\xd1\xe6\x3e\xd6\x23\xfa\xfa\x6d\xb1\xd4\ +\x55\x0b\x1f\x0b\xaf\xa5\xf3\x7c\x4d\x65\x8d\xf5\x8a\xab\xe6\xe0\ +\x63\x9d\xcc\x17\x87\x45\x38\xf4\xc5\x23\xe0\x38\x0c\x49\x1c\x4b\ +\x9f\x8e\x63\xb4\xf2\x61\x60\xdb\xc1\x2b\x41\x60\x28\xb8\x75\xf3\ +\x9c\x6f\x01\x97\x5c\x04\xcb\x58\x38\x31\xc0\xd8\x0b\xcf\x01\x7a\ +\xb7\x47\xa0\x86\x27\x9c\x1d\x34\xaf\x8e\xad\x12\xb2\x68\x9c\xef\ +\x43\xa4\x66\x91\xd2\xdd\xa6\x63\x3b\xa9\x17\xb6\xa2\x6f\x03\x4a\ +\xba\x1d\xf0\xcc\x56\x1c\xa9\x7a\xd5\x78\x9f\xc9\x3e\x29\x7c\x02\ +\x68\xdb\x98\x4e\x75\x99\x4d\x5b\xdf\x9f\xdf\x04\xd4\xa8\x62\x86\ +\xfd\xce\x25\x56\x2a\xfc\xd3\xd1\x4b\xfb\xa8\x4e\x38\x1b\xc9\x9e\ +\x1c\xda\x63\x74\x13\xa0\x3c\x89\xbe\x59\x4b\xb3\xc9\x49\x98\xea\ +\xa1\x35\x6d\x14\x4d\x62\x23\xee\x67\x05\x61\xde\x62\x53\x74\xdd\ +\x98\xe9\x9b\x9e\xc2\x6b\x59\x02\xa4\x54\xdb\x30\xd1\x23\x61\x2f\ +\x63\x4e\xa7\x83\x63\x98\xa8\x0a\x65\x2c\x49\x5e\x26\xcd\x8e\xb5\ +\x62\x6b\x38\xc0\x17\x76\xf4\x18\xd0\xd7\x38\x54\xac\xc8\x22\x2b\ +\x50\xaf\x26\x7b\xa2\x01\x70\x2e\xad\xfa\x39\x2f\x2e\x90\x23\xfe\ +\x4e\xf6\x83\xf9\x3c\x7b\x7e\x5e\xab\x44\x56\x6c\x08\xb0\x9e\x8a\ +\xd6\xbc\xde\xe1\x2e\x5c\xb8\x70\xe1\xc2\x1d\x5c\x5f\xa8\x5d\xb8\ +\x70\xe1\xd7\x05\xae\xf0\x7c\xfd\xf6\xdc\xd5\xde\x39\x76\xf9\xe6\ +\xa6\xd8\x1b\x06\xc2\x85\x64\x5e\x49\x7a\x9a\x42\x12\xe3\xd3\x4e\ +\x62\xf8\xbc\x04\xe5\x50\x58\xb8\x35\x38\x17\x37\x88\xa6\x50\xde\ +\xa0\x58\x01\xaa\xc6\x8b\xde\x73\x4b\xb7\x75\xe2\xcd\xa5\x08\xf3\ +\xe1\x9c\x18\x43\x6f\xdb\x4d\x7e\xe5\x86\x21\x3d\x9c\xa4\xe8\x2b\ +\x56\xa1\x8c\x13\xcd\xdc\x22\xf5\xb8\x61\x54\x98\x72\x8e\x05\xa8\ +\x64\xde\xf9\xc7\xf1\xe2\x33\xbd\xaa\xd0\x40\x14\x33\x8f\x3e\xfc\ +\xb3\x1a\x4f\x83\x05\x6a\x84\x00\xb7\xca\xc4\x3c\x42\xdf\x64\x1d\ +\x67\xfc\xc0\x1d\x81\x56\xf3\x2e\xa6\xfa\x77\x37\x44\x17\xca\x7e\ +\x50\xba\xb0\xd5\x05\x09\x7e\x8a\x3d\x5b\xf0\x49\x7c\xe7\x72\x4f\ +\xd4\xfb\xce\x23\x62\x7f\xe4\x3e\xf9\xfa\xca\xf7\x33\x8f\xd1\x47\ +\x23\xe1\xb5\x9a\x66\x03\xa8\xbb\x87\x4f\x47\xcb\xdf\x7d\xe1\x7b\ +\x28\x7f\x52\xd8\xb4\xf5\x6b\x1e\x7d\x2c\x0e\x05\x3b\x8d\x2a\xbb\ +\x1b\x0b\x23\x49\xb1\x93\x49\x24\x8e\x51\x31\x3a\x13\x9c\xe7\xce\ +\x11\x78\x7d\x2e\xe7\x79\x33\x30\x4a\x5b\xc9\x66\x1a\x83\x5a\x82\ +\x31\x04\x99\xa2\x73\x4c\xf8\x68\xbc\x99\x93\x37\x4a\xc2\x9c\xe7\ +\x36\x3c\xc9\x8f\xdb\x91\xbc\xc9\x4c\x61\x59\x12\x00\xbc\x19\x66\ +\x4a\xb3\x12\x38\x00\xd7\x83\x90\x2e\x78\xdb\x03\xfd\xad\x05\x45\ +\xf8\xfe\xd7\x6e\x82\xe9\x18\xac\xe2\xd9\x7f\x07\x7c\xc7\x52\x7f\ +\x53\x7c\xf7\xf5\x18\x05\xf9\x65\x5a\xba\xfa\xcd\xa7\x19\x93\x1f\ +\xce\x1c\xcf\x7d\x46\x5e\xf6\xe8\x87\xdd\xe1\xfc\x1e\x23\x87\x1a\ +\xac\x93\x2d\x6d\xa2\x48\x7a\x19\x1b\xaf\x38\x7e\x91\x06\x23\x7b\ +\x5f\x5f\xf1\xcf\x39\xb2\x81\x8f\xf1\x18\xac\x2e\x16\x38\x16\xa3\ +\xcb\x46\x0a\x7a\x45\x93\x97\x97\x8c\x9e\xd9\xc8\xd8\x66\xdf\xc7\ +\x43\x93\xd1\x7f\x93\xcd\x06\x74\x04\x7d\x99\x05\x4a\x72\x3b\xae\ +\x9b\xd0\x69\x5e\x4e\xb9\xc3\x99\xe8\x44\xbb\x2f\x7c\x0a\x4b\xd0\ +\x1f\xe4\x13\x31\x47\xe5\x2d\x59\x74\x8f\xc7\x80\xa0\xed\x6a\x60\ +\x33\x78\x7e\xec\x98\x0b\x63\x41\x05\x77\xe8\x7c\xd8\x7a\xce\x00\ +\xd1\x1b\x21\x63\x71\x0b\x8b\xfb\x24\x96\xf5\x5e\xf7\xb7\x8b\xd2\ +\xc6\xd1\x69\x02\xe8\x36\xd0\x13\x1e\x61\xe8\x0e\xef\xed\x9b\x5d\ +\xc1\xca\xcf\x96\xde\xe1\x6e\xee\x7c\x06\xa0\xdd\xf5\x9b\xf9\x08\ +\x29\x8a\x6e\xdd\x32\x33\x46\xe4\xa8\x41\x71\x16\xb8\x93\x1f\xa8\ +\xa0\x27\x33\x1f\x97\xe5\xa0\xaf\x40\x7b\xfd\xae\x20\xed\xf5\x6e\ +\x49\xc9\x4f\x88\x1a\x83\x91\x76\x51\x10\x9d\xdb\xc5\x8b\x6d\xc1\ +\x79\xcb\x4f\x81\x5c\xa8\xb5\x48\xb3\xf7\x3b\xc6\xf1\x29\xda\x0b\ +\x00\xab\x9f\xe8\xbf\x0d\x76\xac\x8e\x58\xc6\xfb\xf9\xa2\x52\x60\ +\xf8\x38\x48\x6d\xc6\xc6\x7a\x76\x5e\xb6\x4c\xf5\xd0\xf5\x23\xfc\ +\x97\x0c\xe0\x00\x00\xff\xf4\x49\x44\x41\x54\x09\xc3\xc8\x43\xbc\ +\xf1\xd9\x4f\xd8\x92\x81\xac\x31\x85\xcb\x91\xc1\xd9\x51\x34\x6f\ +\x6b\xa3\x73\x8f\xe2\x85\x9a\x7b\x07\xea\x5f\x5f\xa8\x5d\xb8\x70\ +\xe1\xc2\x33\xb8\xbe\x50\xbb\x70\xe1\xc2\xc9\x55\xd6\x57\xe0\x5b\ +\xeb\xf8\x5a\x76\x87\x35\xb6\xd3\x6e\xf3\xef\x4d\x0a\x37\x26\x22\ +\xae\x67\x60\xd6\x8e\x72\x16\x6c\x06\xe0\x07\xa1\x39\xcf\xd7\xf0\ +\x62\x9d\x6b\x0d\x7a\x5c\xac\x86\xa8\x97\x9b\x34\x56\x35\xcb\xa1\ +\x11\x88\x2e\x1e\x1c\x1f\x4e\x6a\xd8\x4a\x30\xfa\x9c\xa7\xd6\xd7\ +\x76\xc6\xd0\xd1\x46\xac\xa8\xd2\x32\x46\x42\x8b\xa4\xe5\x2f\x0d\ +\x5d\xad\x58\x89\xdc\x0d\x7b\x72\xed\xe7\x92\x1f\x54\x32\x66\x2c\ +\xae\x00\x72\xba\xab\x23\x7b\xab\x4d\xdc\x8b\x09\xf1\x41\x09\x3b\ +\x70\xba\x7b\xa0\x2f\xfa\x3a\x73\x0f\x1e\x63\x77\xc3\x09\x3f\x9d\ +\x38\xe8\xc7\xb3\x99\x00\xf9\x9d\x89\xa8\xb2\x45\x69\x36\x0c\x37\ +\x35\xcf\xae\x50\x47\xe5\xb8\x5a\x12\x53\xad\x8c\x7d\x4d\xfd\x07\ +\x58\x56\xe9\x9b\xc7\x40\xbd\x43\xcd\xaf\xc4\x69\x1d\xcc\x71\x33\ +\xcf\xb7\x8c\x3b\x6b\x9f\xcd\xdc\xeb\x66\xf6\x64\x03\x86\xe8\xd1\ +\x28\x6b\x7c\xf7\x65\x9a\xa9\xd2\x36\xcd\x7c\x93\xe6\x08\x45\x63\ +\x39\xe5\x0c\x80\xde\x57\x48\x16\x1d\x12\x98\x34\x94\xeb\xbc\x89\ +\x2d\x19\x58\x78\x9e\x1b\x92\x1b\x67\x05\xd5\xae\xf3\x64\x03\x23\ +\x8d\x9f\x25\xca\x23\xd6\x71\x3a\xd1\x64\x13\x0e\x7c\x23\x68\xc6\ +\x82\x65\x54\x0b\xfb\x47\x8a\xd4\xa1\xa3\x99\x7e\x47\x9c\xa7\xf4\ +\xe7\x13\xe9\x70\x89\x5e\xef\x6d\xf3\x64\x5d\x42\xdb\x03\x36\x7a\ +\x6b\xc2\x9e\xe5\x99\x70\xc4\x78\x1f\x60\x31\x3a\x3d\x15\x65\xeb\ +\xfd\x2b\x1a\xba\xc3\x31\x67\x1f\xf1\x34\x27\x90\xdc\x46\x9e\x03\ +\x52\xbf\x21\xfd\xef\x02\xeb\x36\x7b\x13\x90\x7c\x5e\x40\xd7\x23\ +\xd1\xdc\x27\xca\xcb\x50\xf9\xbb\x5a\x49\x31\x1e\xb6\x74\x82\xce\ +\x19\xb8\x6e\x93\xdf\xc5\x83\x73\x4e\x2f\x34\x03\x14\x5b\x2c\x1c\ +\xc6\x11\xe3\x1a\xe6\xf5\xe5\x5a\x8e\x07\x3b\x5e\x00\x8c\xc5\x42\ +\x7d\x6b\xca\xd4\x92\x9c\xc6\x77\x9c\x31\xf4\x29\x76\x4e\xef\xc5\ +\xa3\x36\x0d\xf1\xd1\x68\x83\xea\x3a\xc7\x72\x89\x5e\xaf\xd8\x0c\ +\xca\x2a\xd0\xf6\xa2\x07\x1a\xc6\xeb\x09\x63\xa7\x83\x6e\xa3\xcf\ +\xd5\x3b\x45\xa5\xc0\x68\xf9\x74\x37\xf5\x0c\x84\x54\xfa\x7c\x80\ +\x29\x9d\x8e\xb4\x5f\xda\x09\x81\xe3\xc8\xdc\xe2\x34\x3e\x91\x67\ +\xaa\x6d\x26\xa1\xed\x96\xf1\x73\xd9\x8c\x37\xe9\x7a\xed\x5c\x5f\ +\x0f\xc9\xf3\x36\x99\xfb\x78\xf3\x78\x6a\xa8\xcd\x16\xde\xee\xfa\ +\x56\xfa\x67\x26\xb0\x43\xe6\xed\xea\x26\x70\x54\xb6\x57\x85\x60\ +\x37\x1a\xd9\x16\x1a\xb0\x08\xd8\x08\x56\x6a\x5b\x03\x88\xc0\x14\ +\x1b\x0e\x2c\x7a\xb5\xc8\x58\x74\x69\x3d\x85\x53\xed\x26\xa0\x6d\ +\x71\x1f\xab\xe2\xb8\x77\x4e\x6a\x2c\x42\xab\xea\xbc\x00\xa4\xa9\ +\xf3\x0e\x10\x3d\xb9\xba\x1a\x78\x1b\x22\xe9\x64\x36\x07\x94\xee\ +\x90\xa0\x22\xa2\x7b\x30\x66\xce\x73\x2a\x66\x36\xd6\x02\x0a\xb5\ +\xd4\x1e\x4e\x6c\xc3\x9f\xab\x35\xd8\x89\x1e\xaf\x0b\xb8\x68\xbd\ +\xd2\x90\xd8\x0a\x34\xd3\x98\x46\x5f\xa6\x52\xf2\xe5\x3c\xb7\xc8\ +\x0a\x88\xf5\x21\xa0\x1b\x35\xd4\x4d\xe7\xe2\xb0\xfd\x3e\xd3\x94\ +\x17\x2e\x5c\xb8\x70\xe1\x0e\xae\x2f\xd4\x2e\x5c\xb8\x70\x7e\x35\ +\xf6\x56\x9c\xd5\x01\xff\xcc\x18\xbe\x7e\x43\xbf\x5e\xcb\x99\x7b\ +\x7a\xae\x8f\x84\x8a\xeb\xe2\x31\x8b\xa3\x03\xd2\x1d\x80\xb6\x93\ +\xe8\x5b\x7d\xd2\x2d\xe1\xde\xdd\x02\x23\x24\xf3\x0c\xd7\x8f\x46\ +\x73\x7d\x44\x75\xb3\xca\x20\x39\x9b\xe3\x4a\x58\x3d\xdc\xe0\xd8\ +\xe0\x3a\x16\xa0\x9d\x84\x6f\xde\x48\x0f\x82\xf4\x84\x94\x26\x86\ +\x68\xd0\x39\xdf\x11\x12\xd2\xee\x54\x07\x3e\x88\x21\x73\xac\x2d\ +\x94\xf0\xb8\xc6\xe9\x8b\x39\x7c\x80\x67\x52\x2c\x22\x70\x56\x7f\ +\xc5\x18\x67\x0f\x8d\xdc\x21\x6f\x57\x1f\xdc\x5a\x0f\xdb\x09\x1c\ +\xeb\x6c\x07\xeb\xa4\x95\x33\x76\x63\x19\xf3\x7e\xd8\x80\x1f\xb4\ +\x8e\xa2\x99\x09\xcd\xf6\x6e\xc8\x13\x70\x1a\xfb\xe3\xdc\xff\x26\ +\xd8\x6f\xc6\x37\xe1\x7c\x6b\x7c\xe5\x76\x02\xbe\xc3\xbc\xbe\x1e\ +\x4f\xcc\x9b\x73\xbb\xaf\x7b\x58\xe5\x81\x80\xe1\x8d\xc6\x9b\x65\ +\x97\xde\x6f\xc5\x8c\xfb\x06\x6d\x43\x36\x93\xa8\x22\x4b\xb5\x74\ +\xdb\xbd\x87\xc2\xa3\x33\xc6\x1c\x5d\xb5\xe1\xbb\xb6\xba\x2d\x76\ +\xb1\x99\xbb\x37\x07\x28\x7b\x1c\x7e\x34\x9c\x54\x48\x7b\x0e\xd2\ +\xac\xea\xc1\x40\x07\x7b\x8d\x4b\x61\xf4\x98\xf9\xfa\x13\x8f\x20\ +\x48\xfa\x5c\x1d\x4b\x8b\x1a\x58\x23\x75\x43\xb0\x8e\xda\xe0\x32\ +\xb1\x60\x86\x53\x32\xc7\x99\x98\xbe\x4e\x6b\xc1\x98\xa4\x36\xf6\ +\x62\x9e\x10\xe7\xf7\xc6\x19\x94\xba\xf6\xe4\x7c\x03\xce\x87\xfb\ +\xfb\x02\xe6\xf9\x5d\xe6\xfa\x5c\x11\xbf\x67\x7b\x58\x37\x2d\x36\ +\xdb\x9d\x7c\x22\xec\xa1\x05\xc6\x6d\x5a\xa0\xdb\x03\x4e\x12\x66\ +\xbd\x62\xe0\xcc\xd7\x21\x94\xa4\xf9\xf2\x7b\x53\xa4\xf1\xfa\x32\ +\xad\x7c\x99\x61\xe3\x38\x84\x9d\x3d\xc8\xc6\x33\x92\x36\x5c\x36\ +\xd8\xd9\x00\xdb\xf8\x8f\xbe\x30\xf4\x88\xed\x85\x38\x7d\x74\x39\ +\x3e\x6c\x2e\x52\x2b\x07\x8b\x82\x3c\x2f\x77\xb1\x01\xfa\xde\x35\ +\x15\x6c\xfb\xaa\x25\xac\xb9\x85\x1e\x08\x1b\xee\xb4\xb7\x37\xbb\ +\x7e\xa0\x07\x75\x8e\x99\xcb\xed\x47\x25\x9b\x1b\xc4\x1a\xdc\x30\ +\x67\xcf\xe5\x19\xa0\x91\x0e\x70\x85\x23\x46\x15\x6e\xea\xb4\x1f\ +\x61\xcc\xbf\x67\xc0\x76\x4b\x6c\xa8\xc7\x08\x71\xe9\x5b\x22\x26\ +\x88\xf3\x35\x6d\x32\x7b\x20\xe6\xb8\xed\x7b\x0d\x98\xb8\x58\xe4\ +\x58\x1e\xef\xb8\xad\xa1\x49\xf3\x4d\x68\x49\x0f\xf3\xc7\x56\x06\ +\x60\xf1\x7d\x02\xc6\x1c\x9a\x41\xfe\x38\xe3\x01\x56\x1a\xe6\x84\ +\x91\x77\x56\x7e\x8f\x55\x7d\x76\x44\x9f\xe3\xad\xfa\x9a\x6b\xbe\ +\x1e\x3a\x74\x39\xd0\xb7\xc1\x71\x7b\x30\x2b\x16\x3d\xdb\xd7\x65\ +\xf3\x59\x79\xc6\xa8\x14\x9a\x63\xd9\xc0\x31\xf7\xbc\xda\x26\x72\ +\x22\x36\xad\x2d\x1b\x0d\x17\x0c\xa5\x85\xa1\xc9\x0c\xab\x85\x4f\ +\xf1\x58\x79\xb6\x27\x91\xe9\x6c\x61\xd5\xa5\xdf\x45\xdc\x31\x8b\ +\x0e\x6e\x52\x15\x99\x0b\x87\x9b\xb3\x48\xfe\x38\xa7\x51\x17\xcb\ +\x4a\x0f\xc7\x4a\xf4\xbd\xcd\x91\x0b\x17\x2e\x5c\xb8\x70\x0f\xd7\ +\x17\x6a\x17\x2e\x5c\xf8\x6d\xe0\xeb\xb2\xe5\x62\xf0\xcd\x78\xd3\ +\x75\x1e\x06\x3b\x1b\x50\x05\x70\xf1\xc9\x0b\xd0\x78\x52\xd9\xea\ +\xfa\x26\x9d\xaa\xc4\xb2\xc5\x00\xea\xa7\xf2\x43\x4f\x94\x31\x27\ +\xda\xe3\xe7\x52\x1a\x74\x0b\x72\x17\xb2\x10\x3c\x3f\xd4\xa6\x0b\ +\xa4\x4f\x0a\x0b\xfa\x63\xbd\x08\xf2\x6a\x08\xcb\xc1\x0d\x1a\x3a\ +\x89\x14\xd0\x8c\xde\x6e\x52\x1d\x9a\xb7\x02\x7d\x09\xd0\x2a\x37\ +\x0c\xea\xd0\x8b\xe9\xc8\xc8\x04\xce\x7b\x03\x7d\x10\x54\x0c\x66\ +\x6d\xde\x86\x7d\xa6\x70\x2f\xd6\xb1\xdb\x27\x3b\xec\xc6\x07\xc9\ +\xd4\xe8\xdf\x3a\x3f\xe1\xce\x4f\x76\xa2\xa6\x83\x8b\x08\xdb\xec\ +\x34\xef\x80\x67\xb7\xc4\x82\x9e\x76\x77\xb0\xe7\x67\xf2\x35\x38\ +\x9d\xfd\x37\x0e\x7b\xbe\x55\x9e\xdf\x5e\x54\x62\x1e\x4f\xce\xe5\ +\xf9\xca\x2b\x90\xb9\xcf\xfe\x9a\x9a\x6f\xcd\xf1\x2a\xf6\x3f\xbd\ +\x33\x9d\x4a\x3a\x42\xd8\xef\x6f\xcc\x9b\x26\x3d\xc4\xd1\x20\x6a\ +\x75\xc6\x69\xe8\xec\xac\x90\x60\x70\xd4\xea\xa6\x13\x93\x6a\x98\ +\x99\xee\xcd\xf6\x31\xb3\x8a\x3e\xc4\x2e\x57\x38\xaf\x10\x39\xb5\ +\x3e\xb1\xde\xb4\xb1\xc8\x8c\xba\x6b\x08\xa8\x17\xa3\x25\xb3\x22\ +\x29\xd5\x43\x0a\x14\xd9\x80\x1b\xa3\xd0\xf4\x36\xba\x02\x52\x79\ +\x0e\x6e\xfb\x9c\x40\xf2\x2a\xa6\x2e\x9b\xb1\xb1\x59\x29\xcb\xb1\ +\x23\xaf\x20\x96\x3e\xa6\xea\x7d\x2a\xf3\xb0\x96\x32\xc1\x67\x2c\ +\x20\xbe\xdf\xf2\xbb\x77\xfb\xef\x8d\xc0\x80\x39\xfe\x3f\x0c\xbe\ +\xd7\x7c\xdf\xb0\x11\x4b\x4a\x23\x26\x10\xbd\xb9\xb9\xef\xcb\xd6\ +\xe7\x9c\xe9\x87\x83\xde\x31\xa0\xdb\xe7\xfb\x17\xe3\x22\x96\xd1\ +\xe8\x7c\x08\xd1\x56\x37\xd9\x88\xe3\x0b\x2d\xe9\x22\x37\x03\xe8\ +\xd3\x24\xf0\x87\xb0\x68\x33\x06\x2b\xe7\xc8\xf1\x94\xb7\xb6\x58\ +\x3a\x41\x1c\x7d\xc5\xaa\x91\x90\xcd\xb9\x27\xa7\x2f\xd2\xb0\x3e\ +\x45\xb0\x87\x29\x78\xce\x15\x82\x95\x9c\x55\x15\x08\xcc\x07\x05\ +\x5f\xce\x15\x13\xe6\xeb\xc2\x23\x0e\xd1\x56\xd2\xb1\xfb\x15\x66\ +\x9d\xda\x92\x41\x57\x9c\x23\xd2\xf5\xf9\xcf\xeb\x02\x77\xa9\xb2\ +\x87\x0a\xcd\xd8\x71\xc0\x59\xc1\x2d\x8f\xb5\x88\x40\xd5\x3a\x49\ +\x3e\xa1\xcf\x51\x05\x1b\xbc\xee\xc1\x63\x27\x76\x89\xed\xb5\x7d\ +\x2f\x54\xbd\x58\xe0\xfd\x23\x8b\xf3\x15\xd0\xa6\x95\xf4\xe8\xdf\ +\x82\xd3\x1c\x0f\x80\x7e\x8c\x3d\x8d\x65\xc9\x01\x77\x26\x32\x85\ +\xee\xe8\x10\xeb\xe1\x45\x4a\x17\xaf\xd7\x8e\x4d\xb9\x0d\x55\x98\ +\x62\xe1\xd4\x3a\x06\xd6\xbc\x59\x6b\x2f\xfb\xda\x19\x0d\x11\x3a\ +\xbc\xd6\x12\x50\xe3\x50\xe2\x78\xfd\x7d\xbe\xca\x9c\x6d\xd8\xce\ +\xfb\xdd\x39\xb9\x56\x67\x37\xea\x59\xc5\x2d\x9a\xd8\xa6\x37\x35\ +\x6a\x4f\xb5\x8a\xef\x2c\x6c\xcf\xa2\xdb\xc0\x94\x1d\x98\x67\xdb\ +\x37\x87\xa0\xb5\x9c\x71\x64\xce\xe0\x72\xe8\x7b\xe9\xc3\x30\x01\ +\x70\xfd\x18\x30\x06\x33\xef\x51\xd9\x58\x26\x8b\x2e\xa6\xa6\xd9\ +\x69\xc9\x48\x98\xc8\xe4\xba\xa5\x14\xd1\xa6\xb8\x70\xe1\xc2\x85\ +\x0b\x0f\x70\x7d\xa1\x76\xe1\xc2\x85\x6f\xc3\x5b\xaf\xb9\x9e\xd5\ +\xe3\x8a\xee\x91\x16\xf1\x6f\xbc\xe6\xc3\x9f\xb5\xda\x5f\x3e\x0e\ +\xef\xee\x10\xb8\x9a\x57\x7a\xe1\xd1\x94\x86\xdc\x56\x64\x2c\x35\ +\x5c\xa4\x6a\xd1\x08\x51\x93\xfa\x22\x58\x1a\x18\xb2\x8a\x4b\xd7\ +\x0e\x1f\xbc\xe3\x92\x82\xa9\x35\x2e\x16\x78\xa8\x4f\x20\x4c\x0a\ +\x46\xfa\xe4\xed\x6b\x6e\xe9\xb4\xb6\xae\x98\xa0\x0f\x27\x5c\xa8\ +\x8f\xe7\x56\x99\x12\xcf\xe7\x11\xf6\xa3\x29\xf3\x2c\x76\x44\x1f\ +\x67\x64\xdd\x1b\x7d\x97\xf1\x78\xb6\x50\x48\x35\xcd\x2d\x9c\x87\ +\x73\x75\x71\xf6\xf8\xc8\xb8\x19\x75\x5b\x04\xf1\x63\xa0\x65\x3d\ +\x89\x56\xa3\x97\xeb\xe5\xdf\x5e\xf4\xdb\x81\xb1\x8f\xab\xf7\x34\ +\xce\xa7\x7c\x12\xf1\x78\xbd\xfd\x4a\x78\x7e\x6e\xed\x75\xfb\x14\ +\xde\xa6\x06\x90\xc1\x51\x7c\xfe\xcb\xf5\xde\x56\x8a\x18\x78\x49\ +\x22\x0b\x69\xd1\x46\x5a\x26\x1b\x74\xc7\x2d\x19\xfd\x99\xc5\x3c\ +\xc2\xb9\x10\xd6\xb1\x2a\x84\x40\x06\xd9\xb5\x1c\x43\xd4\xa8\xb0\ +\xde\x77\xea\xb5\x8f\xe7\x9e\xdd\x8d\x94\xe3\x30\x3d\xa3\xe7\xcc\ +\xb5\x57\xec\x6b\x0b\x11\xe1\x89\xf3\xa8\x10\xa3\xe5\x7c\x03\x29\ +\xd9\xe5\x6e\x10\xb9\xe3\xe0\x81\x3c\x76\x42\xb0\x8e\xe4\x5d\x3d\ +\xea\x8b\xa8\x32\xa4\x37\xb7\x7d\x76\x5f\xb8\x6d\x40\x49\x1c\x18\ +\x18\xa7\x10\xf3\xf6\x6f\x9d\x00\xde\x4f\x98\x25\x67\x8a\x27\xe3\ +\x68\x39\x0e\xba\xb6\x43\x87\xf5\x8d\xf0\x34\x72\x8c\x7f\x18\xbc\ +\x75\xae\x5e\xcf\xaf\xc1\x9a\x8b\xfd\x69\x33\xad\xe1\x0f\x0c\x5b\ +\x93\xf5\x31\xb6\xd3\x0e\x8c\x63\x6d\x8d\xe3\x90\xa8\x91\x5b\x50\ +\x3c\x0c\xf5\x6c\xcd\xf6\xcb\x84\x87\x54\xf6\x6c\x9f\x63\x3e\xd1\ +\xe3\x4f\x40\x5a\xcc\x0e\x3d\x17\x88\x4b\x63\x9e\x68\x3e\x9b\xd8\ +\xf2\x6d\x0f\x11\xa9\xec\x9a\x9f\x66\x1e\xf5\x5a\x56\x62\x22\x0b\ +\xaa\xd3\xf6\xf3\x8b\xa9\xa9\x06\x48\xd6\x56\x22\xb6\xba\x2d\xb2\ +\x7e\x83\x73\x11\x39\x46\xef\x80\x89\xe7\x19\xcf\xd4\x73\x1c\xeb\ +\xbe\x9e\x81\x0e\xeb\x94\xc4\x5c\x13\x89\x08\xb8\x3d\xc0\x41\x72\ +\x2f\x67\x89\x3d\x51\x7e\x02\xf4\x6e\x85\x5a\xe3\xec\x1e\x6d\xa1\ +\x5f\x11\x39\x85\xda\xee\x7d\x9e\x98\x16\xfc\xaf\x9d\x1e\x72\x7b\ +\xbd\x06\xd3\xea\x17\xe1\x49\x0e\x11\xb1\x7b\x61\x47\xf7\x9a\xb1\ +\xdd\x1f\x0c\x71\x40\x71\x3d\x78\xb0\x93\xe8\x7c\x60\x71\x1b\x1e\ +\x6c\xd8\xf3\xc4\x2d\x26\xf9\x32\x95\xde\xd7\xa8\x26\x97\x69\x98\ +\x66\xa0\x1d\x9b\xb2\x46\x94\x61\x1a\x8d\x6b\xe8\xaf\xe5\x7b\x87\ +\x38\x42\x0a\xb7\x11\x9c\x9a\xe7\x45\xc5\xc2\x66\xa1\x68\xa3\xb4\ +\x50\x3a\xa3\x57\x44\x1a\xe2\xc8\x97\xbf\xc3\xee\x1d\xc9\x96\xea\ +\x8c\x38\xfd\x56\xab\x99\x03\x10\x79\x02\x09\xe8\x6a\xaa\x95\x64\ +\xd1\x10\x73\x84\xda\x68\xb0\x53\xce\xf5\x00\x2f\x0e\x7d\x95\x09\ +\x88\x42\xbc\xb3\x17\x2e\x5c\xb8\x70\xe1\x0c\xd7\x17\x6a\x17\x2e\ +\x5c\xf8\x36\xbc\xe5\xba\xeb\x2d\xd7\x67\x6f\xd5\x76\x3d\xe6\x44\ +\xac\x81\x23\x78\x61\x7a\x4f\x12\xb1\x2a\x37\x21\x3e\x50\x21\x56\ +\xeb\x9f\xaa\x26\x96\xd9\xb3\x21\xcc\x8b\xd7\xbc\x38\xaf\x54\x1a\ +\x80\x0d\xc5\x7d\x83\x87\xc8\xab\x68\x2e\x63\xa1\x7e\xbe\x30\xc7\ +\xcd\x1d\xc7\x09\x3b\xe8\xcd\x01\xf4\x93\xcf\x40\x85\x19\x93\x39\ +\x0c\xf7\x7d\x7d\x0c\x8c\x99\xf1\xca\x0b\xf0\x62\x7e\xf0\xb4\x7a\ +\x7c\xc2\x08\x78\x04\xf6\xe9\xcc\xa3\x2e\xda\xd3\x9a\x6f\x05\xaa\ +\x79\x4d\xe6\xa2\xf3\xf8\x47\x78\x1e\x8f\x74\xc0\xd0\xc8\xc2\x48\ +\xdb\x55\xb8\x57\x0c\xb1\x8a\x8f\x3a\x13\x4e\x8b\xce\x81\xad\xec\ +\x04\x43\xdb\xb2\x6c\xa2\xf7\x01\xcb\x17\x87\xcc\xbf\x09\xfa\xd8\ +\x8f\xe6\xb1\xc4\xdb\x9a\x2d\x68\x11\xe4\x9c\xd4\x3d\xcf\xdf\xe3\ +\xad\xfa\x19\xce\x46\xef\xf6\x35\xd8\xe5\xe9\xdc\x72\x5e\xd1\x1b\ +\x60\xa7\x88\x58\x86\xd9\x85\x84\xaa\x38\x27\x6c\xeb\x81\x44\x0b\ +\xb1\xe3\xd5\x7b\x98\x0a\x16\x31\xc3\x09\x81\x66\x1e\x70\xc8\x3e\ +\x29\x77\x0a\xe8\x97\x9c\xb7\x94\xe0\x16\xc8\x09\xce\x79\x0f\xbe\ +\x4c\x3b\x59\xab\x91\xd3\xe2\xf1\xc6\x44\x9e\x0b\x8c\x27\xd5\xd8\ +\x96\x81\xb2\xfb\x3e\x09\x32\x79\x74\xd0\x33\x06\x27\x79\x82\x7e\ +\x66\x25\x8f\xae\xcd\xa0\xc9\xe3\x9c\xea\x00\xc9\x11\xa1\xd9\x5c\ +\xa2\xc4\xd1\xf7\x82\x05\xf3\x48\x6c\x82\xac\xa3\x35\x77\xd1\x7a\ +\x67\x7a\x1e\x48\x38\x4b\x7a\x73\xb1\x7f\x20\x78\xbd\xfb\xfe\xf0\ +\xfa\xb6\x2f\x28\xef\x81\xc7\x57\xe6\xb8\x9c\x10\x81\xe1\xa4\xbd\ +\x1c\x77\x05\xd9\x29\x49\x8d\xb9\xa1\x5b\xf7\x2c\xbc\xde\x8c\x03\ +\x67\x23\x7a\xd6\xc0\x53\x9d\x9a\x6d\xf4\xb6\xd3\x87\x61\x7f\xd8\ +\x2f\xd1\xf2\x01\x8e\x3c\x6c\x71\x4a\x4c\x34\x17\xdd\x6a\x57\xef\ +\x56\x3c\x2b\x09\x24\x87\x69\x88\x16\x33\xd4\x5d\x61\x6f\xe6\x3a\ +\xb0\x47\x76\x19\x5b\x2c\x21\xec\x19\x52\xb5\xcf\x9e\xc3\xd8\xa3\ +\x09\x24\x2f\x05\xbc\x2d\xee\x43\x89\x4e\xcf\x4b\xec\x71\x49\x92\ +\xed\x14\x9b\x20\xc6\x7d\x33\xbe\x26\xe7\x0c\xdb\x5a\x87\x2d\x46\ +\xec\xd9\xbf\x31\x30\x7f\x1f\x18\x71\x72\xe0\x6f\x5a\x7e\xf3\x4c\ +\xe7\x8d\xe2\x6a\xee\x9f\xdd\xfc\x5b\x5d\x23\x1f\xcf\xb2\x89\x1f\ +\x0e\x1a\x82\x49\x23\xa7\x53\xf7\x4a\xac\x73\x19\xda\x4d\xd6\xbd\ +\x42\x13\x1e\xac\x61\xbe\x80\x0e\xaa\x20\x6a\x08\x07\x4f\xc7\x8c\ +\x40\xd4\xe9\x35\x8e\xa3\x22\x19\xec\x31\x42\x8e\xb5\xdb\x00\x1b\ +\xd9\x88\xa6\x85\x17\xae\x53\xdd\xc3\x64\x2e\x3c\xcc\x29\xe7\xe5\ +\x60\x83\xa8\x25\x70\x76\xec\x6e\xf2\xf7\x90\x10\xd7\x27\xaa\x12\ +\x7e\x18\xc7\x8a\xc7\x82\x07\x4d\x23\x6a\xeb\x2e\x69\x64\x63\xdb\ +\x83\xe6\xd4\xe1\x7a\x99\xfe\x0e\xc8\x40\x4e\xff\xa1\xa4\x0b\x17\ +\x2e\x5c\xb8\x70\x8e\xeb\x0b\xb5\x0b\x17\x2e\x7c\x3b\x7e\x8d\xeb\ +\xae\xaf\xad\x79\xc8\x7b\x54\x88\x97\x9b\xb4\x56\x25\x7d\x2e\x86\ +\x66\x42\xc4\xf4\xd3\xf1\x86\x2a\xf0\x3a\x14\x31\x7a\x2d\x8e\x80\ +\x3f\xdd\xa7\xf6\x1c\x59\x24\xe0\x8c\xaa\xd4\x09\xd4\x3b\x08\x00\ +\xf3\xd9\x3b\x96\xfd\xa0\x62\x69\x47\x44\x20\x8d\x89\xd7\x87\x00\ +\xdf\xae\x48\x45\x8b\x03\xba\xb4\x7f\xb4\x66\x42\x26\x55\x2e\x10\ +\x8e\x7d\x16\x69\xbe\x51\xc5\x11\x18\xf3\xf0\xb8\xab\xbc\xa3\x6b\ +\x0f\xc8\x0f\x0f\xd2\xb8\xda\x33\x68\xba\x66\x9e\xcd\xe3\xac\xea\ +\x96\xdf\x14\x99\x0e\xb7\x29\x3e\x7f\x68\xed\x28\x99\x8d\x96\x37\ +\x95\x78\x02\x35\x86\x3f\xa1\x01\x67\x03\xbf\xb9\xfa\xf3\x78\xaa\ +\x32\xe6\xe5\xb9\xd9\x7e\xc6\x8f\x56\x9f\x9d\xcf\xda\x3f\x03\x62\ +\x23\x3c\xda\xce\xb5\x29\x2c\xac\x84\x30\xe2\xe9\x38\x7b\xc4\xc2\ +\xd8\x6f\xbe\xc1\xf6\x38\xcb\x55\x9d\x56\x30\xc1\x78\x80\xf4\x12\ +\xa3\xbf\x72\x80\x93\x1a\x56\xaa\xd2\xa6\xc2\x7d\x7c\x18\x23\x6b\ +\x53\x72\x48\x81\x7a\xe1\x46\xdf\x5f\x3b\x0f\x91\x37\x5f\x9c\x9f\ +\x5d\xaf\xd0\xc7\xc6\x6f\x73\xf1\x46\xd1\x74\xa2\x18\x60\x5e\x2c\ +\xb6\x51\x04\x79\x1e\x9c\x07\x31\x83\x10\x7f\x4a\x3b\x79\x1a\x7a\ +\x0e\xb4\x70\x8d\x31\x09\x02\x93\x60\x04\x35\xe5\x2e\x0e\x3b\x9e\ +\x55\x07\xa0\x48\xfc\x14\x21\x3f\x29\xf7\x78\x42\xc2\xda\xac\x9f\ +\x70\xce\xca\xff\x7b\xc3\x6e\xdd\xcc\x9d\x1c\x4f\x5b\xe4\x7b\x29\ +\x51\xbb\x05\x0b\xdc\x50\x87\xbd\x60\xe1\x2a\xa5\x06\xcf\x7e\xd2\ +\x81\x8b\x76\x87\xd3\x21\xd1\x72\xa3\x65\x97\x2d\x09\x20\x49\xb9\ +\xaa\x81\x7c\xd2\x24\x7d\xe5\x93\x8b\x68\xaa\x9f\x04\xce\x95\xe8\ +\xd2\x1d\xe7\xce\xbc\x46\x41\x0c\x8d\x9c\x6c\x2c\xf8\xa5\x5b\xc6\ +\x18\x84\x0f\x81\x61\x27\x7a\x5e\x3a\xd2\xb7\x11\x4d\xcf\x58\x70\ +\x19\x68\xeb\xeb\x8e\x0b\xf1\x9c\x95\x9e\x84\x7b\xe3\x78\x15\xb1\ +\xfa\x27\xc8\xf5\xa5\x7a\x39\xbf\x71\x8c\x1a\x68\x1e\x71\x1d\xff\ +\x4d\x98\x92\xc3\x59\x8a\xf5\x69\xcc\xa1\xdd\x3a\x0d\x0e\x5a\xb6\ +\x58\xf8\xd6\xf7\x11\xcb\x60\x00\xf6\xdd\x86\x9e\xf0\x28\xde\x71\ +\xaa\x45\xc0\x6d\xe0\x2d\xa5\x7f\x53\x60\x62\xb1\x19\x3d\x3f\x6e\ +\x23\xee\x9c\xde\x1e\xe0\xb0\x72\x2c\x52\xd6\xe8\xcf\xaf\x83\x27\ +\x4c\xf5\x26\x27\x81\xd7\x61\xf0\xbb\x90\xc1\x70\xea\x76\x58\x5e\ +\x07\x52\x3f\x83\xa3\x4a\x0c\x07\x1c\x68\xf6\x31\xc3\x38\x8f\x4c\ +\xb1\x36\xd5\x62\x73\xfe\x87\x0a\xc1\xf7\x35\xa3\x6d\xa2\x07\x88\ +\xd0\xb2\x0e\xaa\xb8\x1d\x44\x13\xa6\x68\xbb\xde\xa8\x8f\xce\x85\ +\x03\x31\xc0\x9c\x35\x1e\xe4\x97\x97\x8c\xe9\x7c\x25\x85\x75\x63\ +\x64\xad\xe1\xf0\x67\xf4\xba\x67\x9a\x0e\x6b\xdc\xe3\x38\x80\xad\ +\x19\xc8\x3b\xce\x61\x45\x8d\x4a\x43\xb9\x5d\x3d\x67\xaa\x6e\xa1\ +\x99\xe5\x54\x82\x94\x6c\xb1\xc0\xba\xbf\x7b\xf7\xc2\xfe\xc2\x85\ +\x0b\x17\x2e\x3c\xc6\xf5\x85\xda\x85\x0b\x17\xbe\x1d\xd3\xc5\xda\ +\x77\xc2\xd7\xd4\xac\xab\x42\x7a\x81\x7b\x17\x84\x8a\x8d\x0f\xc0\ +\x7d\xc0\x61\x8f\x0b\xeb\xe3\x25\x36\xed\x4e\x20\x8f\xa9\x13\x19\ +\x6e\x66\x66\xd9\x7e\xbf\x69\x8b\xe9\x53\xf9\xb8\x68\xf6\xcd\x90\ +\x09\xf0\xd7\x4f\x1a\xe5\x0e\x3d\x3b\x2f\xd0\xbb\xcd\x66\x0c\x1d\ +\x17\xd7\xf8\x00\x14\x44\x71\x74\xc0\xc7\x5c\x18\x53\x7c\x7c\x08\ +\x40\x2f\x7b\x58\x40\x58\xc3\x69\x48\x32\x3b\xae\x9f\x4a\x06\xb0\ +\x74\xc3\x85\x7d\x5f\xff\x44\x6a\xa9\xe7\x62\xa0\x34\x27\x50\x5e\ +\x57\xc1\xce\x82\x55\x2c\x15\x4b\xb1\xc5\x25\xb0\x6d\x76\xfc\x5b\ +\x70\xcc\x7f\xb2\x22\x64\x68\xb5\x0d\x9e\xc8\x5b\xb6\xd7\x33\xf0\ +\xa6\x41\x3f\x86\x1a\x85\x26\x8e\x77\xdd\x47\xec\xd7\x04\x46\xf9\ +\xaa\x91\x9e\xdc\xbc\xbf\xcd\x5a\xfc\x8d\xd1\xb6\xc5\xf3\xeb\xdb\ +\x94\xcc\x3f\xdf\xa0\x54\xa6\x1c\x2a\x1e\x1a\x30\xb6\x29\x22\xd7\ +\x79\x0c\xe9\xf1\x23\xfe\xb6\x4c\x80\xfc\x5a\x68\x83\xca\x0f\xed\ +\x56\x4e\x12\x0b\x28\xc7\x19\x0f\xe8\xf6\x73\xf3\x52\x86\x63\x47\ +\x0d\xe2\xbd\x35\x34\xf1\xbe\xb6\x50\x59\x29\x2a\x2d\x5f\x9b\x87\ +\xaa\x81\xb5\x1a\x14\xc1\x59\x8b\x1e\x92\x92\xd9\x88\xbe\x99\x68\ +\xeb\x99\xfa\xe1\xfb\x5c\xc6\x3d\x8e\xdf\x26\x2b\xad\xdb\x09\x69\ +\xb5\x16\x15\x0b\x17\x4c\x9d\x76\xee\x0d\x7c\x27\x74\x8a\xaf\xc9\ +\xf9\x47\x87\xb7\xe5\x19\x4e\xe2\xba\x79\x9a\x68\x1a\xfd\x66\x8a\ +\xc0\x7d\x25\xf3\x21\x56\xdd\x2e\x0f\xfb\x9d\x0d\x0f\xf6\x64\xa3\ +\xe5\xeb\x35\xb9\x9d\xcd\x8e\x1c\xb4\x9a\xa3\xea\x48\x88\x8e\x5c\ +\xcc\x3f\x4d\xf6\xc3\x0e\x1e\x3a\x33\xb4\xa3\x05\xe9\x47\x3e\xd5\ +\x67\x1b\xa4\x7d\xb9\x15\x52\x51\x71\x24\x61\xb3\x9a\x50\x46\xc0\ +\x36\xc5\x73\xa8\x43\xe1\xb7\x1c\xcc\xd3\x88\x07\x4c\x91\x28\x8b\ +\xca\xe2\xe6\x9c\x69\xc4\x4d\xb9\xf3\x11\x8c\x3e\x6b\xa8\xa3\x1d\ +\x92\xee\xdd\xfe\x9d\xc5\xdb\xf1\x48\x1e\xb7\xef\xb9\xd6\x6b\x7b\ +\x7f\x1b\x15\x24\x7d\x0e\x6f\xd1\x2e\xf8\xca\xb4\x5f\x1f\x31\xb1\ +\xfe\xee\xc9\x55\x8c\x45\x35\x6e\xcf\xf3\x3d\x48\x30\x49\xe6\x0a\ +\x67\x2a\x9c\xa2\x13\xed\xb3\x18\x7b\xf8\x49\x4c\xc2\xfd\x51\x51\ +\x6b\xc8\x60\x2a\x9a\xd0\xaf\x75\x62\x57\xe0\x04\x0f\xb6\xdc\x11\ +\xbd\xf6\xc3\xe4\x65\x22\xa1\x3f\x4c\x2d\x27\xde\x79\xec\x53\x96\ +\x5e\xeb\x1f\xc6\x1b\x44\x59\x69\x4c\xe3\xb4\xbc\x43\x89\x40\x7f\ +\xeb\x51\xe2\xaa\x9a\x67\xa7\x38\xe6\x08\x7b\xb4\xae\x9a\xae\x25\ +\x78\xdd\x81\x96\x5c\x0f\x65\x6f\x1c\x2b\x41\xe1\x2d\xe2\x73\x95\ +\x38\xa0\x2b\x7b\x35\xf3\x53\x7c\x84\x63\x9d\x47\x64\x57\xa9\xdc\ +\x9e\x93\xfd\x01\x53\x00\x09\x63\x7e\x17\x2e\x5c\xb8\x70\xe1\x1c\ +\xd7\x17\x6a\x17\x2e\x5c\xf8\x76\xb4\x8b\xb5\xbf\x4f\xec\x26\x18\ +\x17\x8a\xb8\x58\x7e\xc1\x4f\xac\xdd\x5b\x81\xe3\x05\x25\x2e\x87\ +\xc7\x25\xb1\xac\x5d\x05\xdd\x20\x6c\x91\x9d\x68\xc1\x6e\x34\x5d\ +\x98\x63\xd9\x0a\x58\xa8\x10\x17\xd9\x65\x0b\x2d\x09\xd8\xd9\xc3\ +\xe0\xb3\x05\x60\xba\x05\x34\x02\x9c\x96\x4f\xd6\x0d\x50\x82\x6e\ +\x92\xa5\xa8\xb4\x81\x29\x6f\x45\x04\x1d\xef\xe1\xfc\x34\xd4\x29\ +\x7f\x00\xc7\x72\x57\x89\xf0\x07\x8a\x53\x81\x30\xef\x62\xcf\xe1\ +\x3c\x29\xab\xde\x2d\x6b\x8d\xfb\xb7\x63\x97\x29\xee\x10\x49\xe2\ +\x70\xa8\x36\xe1\xd8\xaf\x89\x07\xdb\xe4\x69\x44\xd9\xc3\x7c\x50\ +\x1c\xf5\x73\x8c\xe9\x46\xc0\x85\xcd\xf6\xfa\xfb\xc2\x7e\x7e\x60\ +\xdd\x8c\xe9\xac\x93\x00\x63\x4d\xf4\x7a\x0a\x47\xb1\x62\xc9\xf7\ +\x70\xe5\x34\x2b\xbf\xf7\x49\xa6\x25\xa5\xd9\x6f\xcc\x4f\x68\xf4\ +\x89\x62\x81\x8b\x1e\xd5\x2b\xd3\x7d\x9f\x6e\xd0\x1d\x33\x85\x3d\ +\x0f\x76\x44\xfc\xfe\xb1\xc7\x79\x6c\x1b\x99\xc8\x3e\xc6\x11\x9d\ +\x1b\x5b\x3d\x80\x00\x89\x30\x52\x84\x73\x8d\xa8\x58\x56\x62\xd8\ +\x24\xb9\x68\xe7\xa3\xcc\xa3\xdf\xf5\x69\xb4\x1b\x3f\xc0\x58\x7f\ +\x69\xe1\x49\x31\x9f\xc5\xc0\x3b\x36\xf8\xcc\xc5\xe0\x14\xe4\xed\ +\xd8\x5c\xe0\xa7\xab\xdb\xc4\x2e\xbc\x05\xde\x6c\xa7\x9b\x2f\xf7\ +\xc4\x59\x1c\xdb\x5f\x7b\x63\x69\x0d\xde\x91\x87\x37\x8d\x71\xcb\ +\x1d\x7b\x94\xf6\x2a\x01\x82\x1b\xba\x81\xd3\x2f\xf3\xb2\x1f\x79\ +\xa1\x4b\x5b\x37\xf3\xd5\xcb\x50\x0c\xd0\x91\x88\x65\xf4\x19\x1f\ +\xba\xb4\x81\xce\xb5\x00\x0f\xf9\x9c\x93\xc7\xa1\x8d\x96\xbe\x6b\ +\xf4\x2f\xf0\xfc\x0a\x60\x4c\xa6\x90\x3e\xb5\x53\xc0\xde\xcc\xef\ +\x14\xee\x31\xab\x1e\x9f\xb5\x03\xab\xae\x10\xa4\xd6\x4c\xb8\x57\ +\x6b\xf2\x4f\x0b\x0e\xdc\xcd\xf7\xa8\x7d\xf0\xc0\xb6\xe4\x44\x3e\ +\x18\x34\xb1\x94\x25\xce\x33\x87\x3a\x77\xdf\xb7\xe3\x1b\x8b\x3c\ +\xb1\x79\xff\xa6\x18\x5f\x5e\x00\xa3\xe7\x96\xa4\xbb\xdb\x03\x0b\ +\x5c\xc2\xe9\x81\x66\xbe\x09\xca\x5b\xc6\xcc\x62\xea\x62\xc9\xd7\ +\xdb\x09\x2a\xb4\xd7\xac\xa9\xfa\xa2\xfd\x1c\xed\x88\xba\xab\x5b\ +\xb1\x6a\x87\xaf\x8a\xf4\xbb\x88\x74\x8b\x75\x2c\x9b\xe3\x14\x5d\ +\x37\xe5\x44\xc5\xf4\x55\x1b\xcb\xfb\x57\x3c\xc4\xa9\x40\xf9\x7d\ +\xa2\x32\x83\x6b\x39\xe3\x12\x23\x0c\xf2\xeb\xb5\xab\xdf\x5f\x92\ +\x5d\xae\x49\xf6\x68\x9a\x34\x8b\x49\x63\x1e\xe3\x7e\x4d\xed\xd5\ +\xb6\x6f\xe3\xfd\xa1\xde\xf5\x96\xf9\xdc\xaf\xf4\x18\x53\x7e\x38\ +\xf0\x07\x27\xaf\xfc\x11\x08\xc4\x1a\xd5\x6f\xa8\xa1\x4d\xc1\x0b\ +\x17\x2e\x5c\xb8\xb0\xe0\xfa\x42\xed\xc2\x85\x0b\xff\x58\x98\xaf\ +\x5e\x9f\x86\x2f\x0d\x57\xe8\xef\x84\xcf\x11\x5f\xfa\x33\xc6\x1b\ +\x44\xa9\xe8\xb2\x24\xe6\x4b\x4d\x90\xc1\x64\xc2\xc3\xcb\xd0\x5e\ +\x2f\x30\xeb\xe5\x99\x43\x3f\x8f\x06\xbb\xf9\x34\xc5\x79\xc9\x3e\ +\x16\x15\x62\x85\x9c\x98\x03\xe4\x05\x7e\xd8\x4b\xae\x2e\xb5\xe9\ +\x0f\x5e\xb4\x26\xbe\x4c\xdf\x19\x89\xe6\xa5\xb9\xea\xe1\x17\xb7\ +\x7c\x98\x00\x5f\xcc\xfd\x81\x84\x0d\x37\xa5\x55\x7c\x15\xda\xef\ +\x7c\x1e\x01\x41\xf5\x68\x57\x7c\x0b\x54\xa7\x57\x5b\x57\x70\xc7\ +\x9c\xc0\x42\x7e\x30\x5b\xe0\x21\x4e\x8a\x3d\xbd\x3e\x8f\x26\x13\ +\x85\x7c\xff\x5a\x37\xfb\x3a\x9e\x1e\xe5\x1f\x04\xbf\xce\xfa\x3c\ +\x5b\xf5\x57\xdb\x9a\x53\xe1\xbe\xc3\xcf\x76\x3e\xf8\x48\xe2\x33\ +\x6f\x5c\xf8\x18\xc8\xd6\xb1\xfa\x03\x88\xa8\x96\x47\x32\x33\x65\ +\xa5\x49\xbe\xdb\x1b\x38\x0b\xf1\xae\x69\xd5\x88\x3a\x9f\xba\xde\ +\xec\x12\xdb\xf1\x4a\xb0\x9f\x41\xcf\x2f\x44\xf1\x3a\xa7\x16\xe6\ +\x19\x8e\x53\xe0\xb6\x02\xb1\x8d\x74\x12\x45\xb2\x64\xff\x7e\x41\ +\x80\x30\x5a\xea\x19\xe6\x14\xc6\xfe\xab\x39\xd2\x8e\xae\x44\x09\ +\xbe\x27\xaa\x87\x99\xea\x19\x3e\x19\x74\xc4\x64\xb6\xda\xac\xcd\ +\xb1\x60\xac\xa9\xe9\x7b\x58\x02\x76\x73\x74\xe6\x53\x75\xbc\x67\ +\x4f\xda\x82\x99\x63\xe4\xc2\x02\x6c\x4a\xb7\x03\xb0\xfd\xce\xb6\ +\x21\xb6\xfd\x79\x5c\x5f\x86\xf7\x98\x6d\x1d\x1b\x1e\xae\x86\x65\ +\x78\xe8\x0f\xf1\x82\xea\x0e\xbe\xe5\x24\x89\xae\xf2\xc3\xe8\xda\ +\xb2\xc1\x67\x4b\x57\x31\x1e\xbb\x49\x06\x9c\xcf\x46\x3b\x1f\x95\ +\x2c\x9f\x30\xd5\xed\x24\xbc\x3d\x94\xc7\xa7\x16\x6e\xb1\x60\xb7\ +\x58\x5e\x56\xdd\xf0\xb4\xc6\x5e\x6f\xab\x4b\xd0\x90\x9a\x0c\x8d\ +\x2d\x75\x86\xa1\x58\xab\x75\x1f\xaa\xf2\xef\x15\xdd\x4d\xa9\x61\ +\xac\xd3\xc0\x5c\xee\xa4\x40\xd0\x0f\x4a\x4f\xa0\xd6\x8b\x4c\x44\ +\x37\xb6\xf3\x09\x1e\x84\xb7\x78\x36\xe7\x6b\x6a\x37\x78\x1f\xdc\ +\xdb\xfc\x7f\x73\xc4\xe4\x74\xbe\x4e\x27\x66\x4c\x0f\x3b\xbe\x26\ +\x5e\xc6\xb7\xe3\xe9\x6d\x7a\x14\xf6\x59\x3c\x2a\xb3\x8b\xe3\xac\ +\xb1\xae\x09\xfc\x95\xeb\xb9\xa7\xe3\x3c\x9a\xc0\x57\x01\x45\xef\ +\x6f\xeb\x75\xbe\xe7\x73\x95\x6a\xae\x06\x45\x53\x2d\x43\x95\x3b\ +\x2e\x7c\x0e\x98\x52\x9a\xd3\x79\xdb\xfd\x7a\x47\x25\xfb\x7b\x42\ +\x00\xd7\x39\xd3\x58\x48\x90\xdf\xeb\x09\xe0\x87\x16\x71\x69\xd6\ +\xeb\x8b\xdd\x19\x43\xfb\x5d\x43\x8d\x68\xd7\x55\xbd\x2c\xc4\xae\ +\xad\xc0\xb1\xe6\x1e\x23\xe3\x08\xc4\xaa\xce\x3d\x61\x62\x7e\xd7\ +\xc0\xab\xd4\xb7\x88\x9d\xfc\x44\x91\x0b\x17\x2e\x5c\xf8\x27\xc4\ +\xf5\x85\xda\x85\x0b\x17\xfe\x29\xd0\x2f\x50\xa7\x8b\x55\xfc\x34\ +\x7b\xc3\xb8\x74\x94\xc5\x25\x16\x65\x8c\x0e\xbd\x4d\xa2\x6b\x56\ +\xb4\x9c\x2d\x82\x77\xa8\x7f\x30\x10\x30\x1b\x90\x68\x31\x7b\xae\ +\x80\x44\x30\xf3\x7e\x4c\x3a\x30\x5a\x0f\x74\xae\xc4\x02\xcd\xa4\ +\xa6\x61\x53\x63\xa9\x3f\x9a\x70\x89\x85\x5b\xc3\x3c\xed\xe6\x85\ +\xd9\x63\x65\x57\x7e\x18\xf1\x24\x7f\x0c\x92\xb2\xe7\x70\xc9\x80\ +\x74\xa0\x41\x83\xbb\xd3\xc9\xce\x28\x1d\xab\xc7\x58\xc6\xca\x64\ +\xd6\x63\x64\xe2\x3d\xad\x62\xbd\xa2\x92\x46\x4e\xf8\xbb\x02\x6d\ +\x52\xbb\xf0\x5d\x30\xb7\x15\x78\x12\x95\x71\x36\x9f\x68\xfd\x1e\ +\x6a\xc9\xde\x3c\xc1\xbf\x4f\x1c\xb7\xd8\x3f\xda\x8a\x7d\xcd\x7c\ +\xfb\x5a\xdf\xbb\x39\x6b\x76\x1e\xc3\x1e\x62\xbc\x41\x1a\x8d\x1c\ +\x16\xcb\x74\x74\xeb\x01\xa2\x0c\x44\x37\x24\xba\x79\x31\x9f\x10\ +\x7b\xb1\x81\x7e\x23\xd6\x91\xf5\x3c\x7a\xe4\xf7\x82\x85\x4d\xe4\ +\x8a\x3c\xc2\x46\xa2\x7a\x3e\x87\x43\xe2\x75\x00\x36\x13\x37\xfa\ +\x4a\xdd\x01\xd3\x76\xd2\x85\x83\x8e\x14\x8c\x68\xda\x0e\x60\x74\ +\x76\x97\x15\x36\x37\x3a\x9d\xe0\xd2\x06\x6c\x66\x9e\xf4\xb9\x68\ +\xb2\x09\xbe\x81\x15\xf1\x2e\xe1\xd8\x45\xd8\x90\x96\xde\x58\x90\ +\xcd\x2a\x41\x05\x97\xdb\xc5\x5f\x9e\xb5\x68\x72\xbb\xdf\x50\x1b\ +\x9a\x0b\x4f\x00\x9b\xaf\x6f\xc2\x75\x7b\x9e\x6c\x4e\x1d\xe5\xa1\ +\xf5\x8b\xec\xce\x66\xdf\x4b\x40\xce\x37\x42\xcf\x4a\xac\x2f\x0f\ +\x96\x03\x57\xbc\x0c\x2e\x17\x2d\xfc\xfe\x67\x1c\x41\xc0\x46\xcd\ +\xde\x14\x01\x42\xdb\x38\x89\x97\x46\x8c\x9a\xd4\xa3\x6f\x36\xc0\ +\x3e\x1d\xff\x00\x8a\x39\xf4\x6c\x69\x63\xe9\x2f\xdc\xb6\x48\x1e\ +\x1d\xd6\xc0\xdb\x34\xbb\x09\xe2\x72\x3d\xf9\xba\x44\x6d\x92\x5b\ +\xbd\xc1\x58\x2c\x56\x8d\x7d\x95\xc8\x42\x2b\x56\xfa\x74\xa0\xd3\ +\x40\xd6\x58\x0b\xed\xc6\xdb\xd5\x90\x4e\x11\xd8\xce\xc3\x79\x2e\ +\x3a\x2d\x92\x71\xbe\x75\x43\x7b\x84\xe2\x56\x1c\x81\x9c\x5e\xef\ +\x01\x9e\x90\x3c\x12\x21\xba\x9b\xe9\xdf\x15\xb8\x0a\xc7\x2f\x9a\ +\x38\xf3\x7b\xc7\xf9\x1b\x70\xa8\x7e\xa7\xe6\xbd\xed\xd5\xf7\xee\ +\xfd\xed\x7a\x3e\x00\x23\x2d\x0c\x73\xab\x3e\x2f\xf1\x46\xdc\x9f\ +\xe9\x9b\x80\x5d\x12\x9d\xa6\xa6\xa5\xde\x06\xb0\xc8\xf3\x7c\xa1\ +\xab\x52\x5b\xf1\xae\x6b\x38\xa1\xc1\x3b\x54\xfb\x60\xd1\x82\xcd\ +\x33\x19\x97\x08\x1f\xcb\x45\x84\x64\xd6\x20\xa4\x9a\xb5\x38\x67\ +\xab\x56\xba\x5a\xe0\x5a\x82\x8e\xe3\x40\x53\x72\x63\x84\x22\x8b\ +\xa9\xc3\x72\xaa\x96\x70\x2d\xeb\x86\xaa\x2f\xd7\x2c\xa8\x67\x66\ +\x8d\x9f\x83\x4a\x0f\xb6\xc5\x08\xce\x55\x31\x53\xfc\x86\x9a\xef\ +\x8d\x3c\x3f\xe6\x85\x0b\x17\x2e\xfc\x33\xe2\xfa\x42\xed\xc2\x85\ +\x0b\xbf\x2e\x70\x2d\xf6\x3d\xaf\xc7\x9e\xa9\x55\xd7\x89\x12\xaf\ +\x97\xa4\x0c\x83\x8a\x2b\x61\x46\x82\xd0\xc5\xae\xf5\x27\x60\x20\ +\x16\x59\x6e\x64\x34\x54\xf2\x69\x95\x86\xd4\x3c\x94\x62\x14\x8f\ +\x14\xe2\xbc\x19\x82\x27\x52\x99\x9e\x61\xdf\x28\x59\xe1\x1b\x27\ +\x67\x78\x77\x10\x44\x55\xd7\xcc\x66\x6b\x28\xc3\x8a\x67\x4d\x3f\ +\x03\x63\x3e\x49\x64\xd7\x8c\x07\x90\xae\xea\x2e\x79\xe6\xd1\xcb\ +\x8e\xf8\x10\xdf\x1d\xa5\xf4\x85\xb5\xb6\x3f\xf6\x9c\xc3\xf1\xad\ +\x0e\x24\x4a\x9e\x4c\xe2\x48\x23\x61\x3f\xa2\x3f\xa8\xed\x50\x75\ +\xd2\xe8\x7b\xa5\xe3\xc8\x9e\x29\xf7\xe0\x14\x90\x70\x96\x94\x37\ +\xcc\xef\xdf\x0b\x39\x8f\x7c\x0f\xfc\xba\xd5\x57\x3c\x3f\xda\x6f\ +\x3b\xaf\x33\x7c\xcd\x2c\xda\x81\x97\x37\x1c\xc7\x17\x5f\x06\xec\ +\xd4\xe1\x18\xb0\x19\xcd\x2a\xd2\x20\xe2\x4a\x13\x5c\xf1\xd9\x46\ +\xb9\xf0\xe2\x89\x73\x17\x4f\x43\xc5\x87\x19\xf6\xfc\x7f\x22\x20\ +\x84\xbc\x89\x00\x16\x9c\xb1\xa1\x26\xf4\x0a\x8f\xb4\x3a\x2b\xa4\ +\x2a\xba\xae\x7f\x94\x4b\xd4\x60\xa9\x5e\xa6\x0f\x80\x9a\x69\x57\ +\xde\x88\x57\xa4\x74\x9d\x0b\x33\x41\x46\x1b\x55\x64\xe9\x37\xb0\ +\x61\xd0\x25\xa6\x91\xfa\xdd\xf9\xa6\x21\xe6\xbb\x48\x03\xa9\xad\ +\xed\x75\x1a\x4f\xf4\x78\xd8\x35\x5f\xf6\xf0\xa2\x52\xfa\xf2\xe2\ +\x08\x08\x02\x0d\x7e\xfd\x46\x6c\x74\x90\x71\x5c\xc4\xc5\x36\x1c\ +\x99\x0b\x77\x90\x9b\xb5\xfa\x15\xd8\x9c\x15\xeb\xdb\xf6\x7d\xb8\ +\xf8\x42\x13\xb6\xf8\xf5\x35\x7d\x0f\xf7\x65\x6d\x9c\x26\xb4\xd9\ +\x73\xf5\x65\x59\xbe\xd7\x65\x00\x9d\xfd\xa4\xaa\x07\x70\x2c\x1d\ +\x78\x18\x51\xeb\x33\xea\xe1\xf5\xc0\x1e\xf4\x78\x74\x30\xc6\x1c\ +\xf1\xb2\x69\xa6\x36\x9a\x9e\xb1\x50\x20\x3b\x71\x40\x19\x81\x66\ +\xc3\xec\x21\x60\xf5\x8f\xc4\x8a\xb1\x0d\xdb\xd6\xbc\x0b\xac\xf6\ +\x3a\x0f\x24\x9b\x62\x9d\x10\x6d\xeb\xad\x64\xd5\x39\x6c\xb9\xec\ +\x8f\x18\x91\xa6\xc9\x49\x81\xf1\xf6\x7b\x04\x9e\x4e\xa8\x2d\x63\ +\xc1\x83\x42\x95\xdb\x70\x56\xca\x60\x6c\xbb\x65\x12\x21\xb8\x97\ +\x3f\xe1\x5e\x1d\xe1\xe9\x52\x7f\x4b\x70\x35\xfc\xb5\x97\xd7\x09\ +\x33\x7f\xbc\x7e\xcf\xe2\xd9\xed\x70\x4f\xd7\x67\xf3\xa8\x5e\xad\ +\x45\x13\x6a\x8d\x8e\xeb\xf4\xcd\x6b\x99\x63\x1c\xe7\xa4\xca\x8f\ +\xe6\x3a\x61\x33\x19\x51\xbb\x59\xb6\xd7\x6c\x85\x77\x3a\x70\x50\ +\x46\xf3\x9b\xf7\x5d\x9c\x6b\xfa\xf6\x5b\xd7\x4b\xa5\xb1\x88\x73\ +\x32\x1d\x35\xd1\xa9\x66\x47\xa6\x41\xd7\x0e\x4d\x5d\xbd\xc7\x38\ +\x8c\x95\x71\x40\xd9\xc0\xaa\x1a\x80\x06\x19\x52\xc4\xd2\xe9\xb5\ +\x3d\xce\x73\x07\xc6\x98\x33\x46\xee\xf4\x43\x21\x94\xf7\x99\x02\ +\xf2\xd6\xd1\x26\xbf\x39\xa3\x56\xbc\x8f\xd7\x2d\xe2\xb3\x79\x5c\ +\xb8\x70\xe1\xc2\x05\xe0\xfa\x42\xed\xc2\x85\x0b\xff\x18\x78\xcb\ +\x35\xdd\x7c\x85\x79\x7e\x31\x19\x17\xb7\x2f\xef\x7f\x80\x71\xd0\ +\x1c\xc7\x13\x51\xd7\xed\xf6\xb9\x7c\x00\x8b\x5a\xde\xbd\xc4\x2e\ +\x13\xd2\xf1\x24\x79\x33\x41\x38\xcc\xbb\xdf\xfd\xa8\x20\x2e\xee\ +\xed\x8c\x5a\xeb\x87\x3f\x2e\xdc\xb4\x88\x0e\x7a\x8f\x37\xdb\xa9\ +\x88\xbe\xf1\x26\x03\x56\x0a\x2d\xb0\x00\x9f\x7d\xfc\xa7\x38\xfc\ +\x41\x44\x56\x07\xbc\x6c\x21\x98\x6b\x0b\xe0\x5c\xc7\x6a\x80\xbc\ +\xcc\xe2\xf6\x80\xea\x1b\x15\x11\xec\xe3\xae\x30\x37\x62\x50\xef\ +\x2b\xde\x1b\x67\xad\xbd\x7e\x8c\x32\xf6\xec\xfd\xda\x1d\x77\x75\ +\x51\x9c\xe3\xe6\x20\x67\x63\x29\xf2\xec\x88\x5f\x07\x54\xff\x75\ +\x47\x30\xce\xd7\xf2\x5b\xf0\xeb\x54\x35\xbe\xb5\x3a\xf6\xf2\xba\ +\x75\xbd\x4f\xa3\xef\xe7\xa3\xdc\x11\x7c\x19\x2e\xc3\xda\x85\x06\ +\x0d\xe7\x52\x70\x90\x0a\x52\xd8\x87\x57\x39\xd9\xd3\x8f\x85\xcf\ +\x12\xc6\xec\x09\xa3\xee\x1c\x97\xbd\x8c\xba\x2b\x60\x44\x0c\xb7\ +\x92\x2a\x03\x46\x2f\xde\x71\x52\xe7\xf0\xa7\x86\x26\x5f\x00\x35\ +\xa7\x4b\x73\x36\xd4\xdd\x39\x13\x12\x4c\xf9\xa4\x30\x7e\x26\x63\ +\xdf\x35\x81\xbe\x0b\x89\x75\x05\x7d\x9c\x90\x7c\x72\x8e\x15\x91\ +\x4b\x61\x7a\xdb\x08\xd0\x4c\xbf\xe8\xd4\xf0\x38\x20\xa9\xb3\xd8\ +\xfc\xbe\x14\xb3\x41\x3c\x6c\xbd\xf7\x72\xc1\x86\x25\x40\xb9\x1d\ +\x64\xc4\x4a\xac\xc7\x47\xaa\x5a\x7f\xe1\x14\xde\xc4\x40\x6d\xe4\ +\x65\xbb\x9d\x6c\x46\x6c\x7b\xee\x99\xe5\xb8\x6a\x3b\x68\xc2\x90\ +\x8c\x33\x0c\xfb\x35\x7d\x0a\x2e\x31\x22\x18\xc7\x6c\x62\x91\xf6\ +\xf0\xc7\x3c\x7c\x1e\x72\xf3\xa0\x30\xe5\x03\x9e\x57\x7e\x79\xe3\ +\xd6\x1c\xfb\xca\xe1\x22\xec\xc8\x5b\xc6\xa2\x56\x61\xd9\xd9\x13\ +\x6b\x0f\x74\x9b\x10\x51\x63\x73\x31\x8b\x96\xad\x38\x50\xae\x0d\ +\x29\x3d\xc3\x45\x9d\xc8\xe8\x12\x74\xce\x58\xbb\x8e\x59\x7c\xa8\ +\xcb\x24\x8d\xbc\xcf\x5f\xb0\x9b\x58\xe3\x58\x63\x2a\x04\x27\x04\ +\xd4\x0c\x21\xac\x96\xb6\x41\x8b\x4e\xc2\x74\xda\xbe\x34\x87\xe5\ +\x53\xeb\xf0\x5d\x30\x4d\xea\x2e\x9e\x57\xfe\x8d\xd0\x36\xdc\xbc\ +\xfd\x72\xe6\x3c\xc0\x9f\xdc\xb2\x27\x2b\x3b\xb2\xef\x6c\x8d\x29\ +\x84\x8c\x3b\xda\x87\x75\x74\x7e\x78\x66\xd6\x75\x25\x91\x79\xe7\ +\xd8\xc5\x16\x6e\x9b\x8e\x59\xe4\x4c\xee\x4c\x68\xa4\x8e\xb3\x06\ +\x20\xbb\x47\xf7\x58\x87\x7e\xbc\xee\xa1\x78\x2c\x1a\x58\xb4\x6b\ +\x6a\x9d\x4b\x37\x35\xc7\x3a\x2c\xd7\x6d\x09\xa7\x90\xb2\x13\x3d\ +\xb6\xc4\x90\x21\x30\xce\x53\x88\x75\x7b\x0b\xd6\x90\x6a\xae\xd3\ +\xeb\x0a\xa3\x56\x87\x66\xb0\x72\xab\x6a\x54\x3f\xce\x43\x4c\xea\ +\xc3\xe9\xd5\x6c\xb1\xf7\x06\xf4\xb5\x60\xc3\x3b\x7e\xa1\x86\xa6\ +\xd8\x51\x71\xe1\xc2\x85\x0b\x17\x8c\xeb\x0b\xb5\x0b\x17\x2e\xfc\ +\x63\xe0\x78\xdd\xf8\x34\x4e\x3f\xba\xe3\x82\xf2\x25\x62\xb8\x8b\ +\x98\x2e\xa5\xa0\xde\xe1\xc6\x9c\x1c\xe6\xc3\x8c\x85\x25\x13\xda\ +\x05\xe9\xb0\x8e\xb7\xf4\x0e\x80\x80\xa2\x54\x76\x7b\x42\x5c\x62\ +\x07\xcd\x96\x8c\xd1\xef\xcb\x56\x26\x3f\xfc\xcf\x4a\x7a\xf5\x09\ +\xa4\x01\x5c\xb4\xc3\xfd\x5d\xfa\xaa\xc3\xdf\x5e\x83\x9f\x4d\x5b\ +\x01\x2d\xc1\xba\xf2\x37\xd7\xe6\x6d\x5e\xd9\x4f\x08\x92\xc3\x68\ +\x2f\x59\xd2\x3f\xbc\x10\xe5\x0c\xd6\x96\x7a\xd4\x41\x76\xd4\x69\ +\x5a\x30\x6e\xc0\xc8\x5e\x31\x22\xfa\xe8\xe3\x8c\x19\x2b\xcb\xac\ +\x24\x99\x15\x84\xc7\xdf\x55\xa0\x46\xe6\x16\x7d\x7e\xb4\x3b\xf1\ +\x16\xb4\x39\xdd\x1d\xf0\x01\x9e\x1a\x3e\xea\x4f\xba\x43\x12\x26\ +\xf0\xb5\x2b\xf2\x3c\x7e\xfd\x11\xde\x86\xbf\xdd\x7c\x34\xf2\xd8\ +\xed\x6f\x39\x00\x3c\xeb\x96\x13\xa6\x5e\x8d\x68\xe0\xdd\xc6\x1a\ +\x1e\x6f\x17\x18\xa9\x61\x8d\x32\x03\x23\x97\x16\xe3\xb1\x08\x67\ +\x44\x12\x3c\x9f\x7d\x05\x3c\xe0\x82\x03\x7d\x52\x7e\xa5\x75\x36\ +\xa1\x51\xc1\x43\xea\xc9\x98\x5e\x87\xa1\x87\x05\x31\xfa\x43\x95\ +\x86\xf9\x3c\xb8\x2a\x77\x99\x35\x85\x3c\xa9\x97\x86\x46\x2c\xf8\ +\x44\x2c\x1a\x35\x99\xc1\x38\x38\x99\x38\x8f\x31\x42\xa7\x35\xc0\ +\x7d\x03\xcf\x7d\x69\x4f\x08\x52\x23\x28\x9a\xa3\x35\x03\x50\xb2\ +\xde\x05\xa4\x13\xb0\xfe\x4b\xde\x2a\x21\xbc\x77\xd4\xeb\xbd\xbb\ +\xe3\x90\x70\xe1\x2d\xd8\xbd\xb1\x77\x30\xfe\xee\xf6\xf2\xf2\x12\ +\xe6\x4b\x5c\x12\xdc\xd1\x3b\xd4\xf6\xff\xee\xd2\xc4\xfb\x1d\x16\ +\xc2\x94\x04\xd5\xa5\xb6\x97\xab\x85\x86\x54\xb4\x24\x9a\xab\xcf\ +\x7e\xd6\xa2\xd3\xe5\x51\x44\xd2\xa1\xa6\xc7\x6d\x24\x9a\xa9\x78\ +\x2c\x98\xbb\x88\x4c\xa1\xa7\x06\x0f\xf3\xe0\xca\x5a\x90\x34\x7e\ +\x23\xa3\x14\x34\x36\x7a\x6b\x7b\x2c\xcc\xbe\xa5\xa6\xdd\xd4\xeb\ +\x34\x5e\x26\x96\xb2\x5c\xad\x55\x4d\x34\xe6\x90\xdf\x71\x64\x80\ +\x63\xbd\x81\xb3\xd8\x71\x3b\xdd\xab\xb2\xe0\x59\x29\x75\x16\xcf\ +\x73\xbf\x5b\xe2\x99\xfa\xcf\xce\xe1\x64\x9b\xad\x80\xea\x39\xe5\ +\xdf\x18\xa7\xdb\x34\xb8\x3a\xd7\xfc\x5a\x6b\xf2\xf4\x46\x1f\x78\ +\x90\xa2\xf0\x51\x74\xfa\x3a\xbe\x87\x96\x32\x4c\xbc\xde\x37\xdb\ +\xa3\x51\xa5\x5d\x36\xe7\x9b\x50\xb9\xad\x48\x9a\xe8\x7a\xe9\x42\ +\x7b\x6f\xb0\xd5\x75\x9c\x42\x12\xdb\xfc\x87\x18\xef\x04\x1d\xe6\ +\x8e\xab\x78\xbc\x8a\x20\x1a\x81\xf3\x1e\xf2\xba\xc6\x9f\x81\xe7\ +\xbc\xd8\x83\x13\x71\xf2\x4e\xb3\x90\x70\x79\x0f\x41\x2e\x61\x7b\ +\xb7\x4b\xa4\x87\xa5\x1c\x1e\x37\x98\x50\x2f\xb0\x85\x04\xd4\xf3\ +\xd9\xab\x47\x2c\x6b\x3e\x03\xbe\x4f\xa1\x06\xe5\xb8\x27\x82\x2f\ +\xd4\x9e\x98\xc2\x85\x0b\x17\x2e\xfc\x93\xe3\xfa\x42\xed\xc2\x85\ +\x0b\xbf\x2e\xfe\xa6\x57\x63\xba\x90\xc4\x45\xe6\x76\x1a\xb8\xde\ +\xc4\x4f\x62\xb5\x0f\x04\x03\xc9\xa1\x83\x4e\x1e\x7b\x54\xad\xdb\ +\x19\x3d\x40\xa4\x18\x35\x7b\xdd\xe2\xe4\x0e\xcc\x84\x3d\x5e\xd4\ +\xf2\x82\x1a\xad\xdf\x5a\x8a\x18\x1d\x2c\xa2\x39\x90\x28\x97\xa2\ +\x9c\x63\xb0\xf5\x61\x21\x0a\x5b\x73\xf2\x11\x8d\x20\xcf\x1c\x58\ +\x6e\xca\x71\xd5\xc2\xa1\x08\x14\xd1\x4a\x08\xc3\xf9\x65\x46\xdf\ +\x2b\xf5\xba\x39\x33\x3d\x93\x31\x52\x15\x84\x2c\x44\xbc\x7d\x86\ +\x4a\x66\xaf\x78\x0f\xf7\xa3\xc6\x3c\xdb\x84\x8d\xe8\xfb\xea\xd4\ +\x87\xb0\x9e\x14\x00\x8d\x26\x7a\x09\x06\x56\xe6\x6c\x66\xc7\xcc\ +\xe0\x76\x64\xe1\x6e\xf0\x1c\x77\xd2\x9e\xdb\x6a\xff\xbc\xf8\xca\ +\x2d\xfe\x8d\xf0\x5e\xc1\x6b\xe2\x6b\xf6\x90\x67\xbd\xe4\x06\xad\ +\xe3\x6b\xd4\x9f\x10\x07\xfc\xb4\xbe\x15\x6e\x6c\xd6\x50\x68\x52\ +\x13\xf5\xfa\x99\x4a\xc3\x69\xe7\xa9\x12\x1d\xf3\x9f\xc5\xbb\xf9\ +\x0e\xc9\x1d\x84\x8e\xe7\x70\xe9\x77\x23\xce\x67\x2d\x2d\xfa\x79\ +\x00\x9c\xdc\xb1\xa4\x6e\xd2\x34\x67\x81\x46\xd6\x72\xc5\xa8\x3d\ +\x50\xf5\x8d\xee\xc4\x7a\x3b\xa7\x74\x34\xc2\x82\x83\x4f\x04\x4d\ +\xef\x50\x71\x74\xd0\xab\x23\xb0\xb2\xe1\x97\xcc\x1a\xa0\x6d\x88\ +\xa2\x53\x4b\x34\xe9\x04\xf2\x31\x57\x68\x61\xe7\x89\x6d\xfd\x92\ +\xcc\x5e\xdd\xb8\xc2\x7b\x5b\x68\xde\xbd\xec\x3e\xda\x8c\xb9\x5c\ +\xf8\x5a\xb4\xed\x0f\xb3\x76\x40\xf6\xb1\x8d\xf5\x1b\x6a\xf9\x03\ +\x4a\x61\xf9\x9c\xc1\xde\xaf\x3b\x9e\x2b\x46\xb2\xf7\x0c\x25\x32\ +\x03\xe2\x87\x7f\x84\x6a\xca\x1e\xb5\xd5\x01\x15\xca\x36\x30\xc6\ +\x24\xc2\x91\xbf\x8c\xc9\x79\x2e\x20\x11\x8b\x16\x80\x89\xf3\x00\ +\xcf\x05\x74\x32\x2f\xdd\x09\x2b\x67\x87\x7d\x8b\x40\xc7\xd6\xcf\ +\x30\x0d\x41\xfa\xfc\x8e\xb8\xb6\x73\xf4\xa4\xe0\x78\xfb\x2e\xd9\ +\xa6\x03\xcd\x94\xdd\x89\x04\x6b\x83\x67\xac\x0d\xb2\x94\x3d\x10\ +\xe9\xae\x25\x87\xea\x50\xe0\x3b\x01\x73\xc3\xa8\xcb\x48\x77\x87\ +\x83\x3e\x67\xba\xd1\x6d\xf7\xc0\xdd\x7a\x00\x04\x5d\xf4\x35\x35\ +\x8c\xa7\x85\x6f\x50\xfe\xbd\xc0\x33\xf6\x91\x82\xfd\x17\xdc\x57\ +\xaf\x88\xea\x9c\xa7\xb7\x48\x48\x3d\xea\x01\x5f\x31\x85\x7d\x2d\ +\xb3\x5f\xbd\x42\x0b\x50\xaf\xd5\xa2\x79\xa7\x76\xbf\x18\x29\x1c\ +\xb9\xc3\xdc\x1b\x61\x75\x65\x65\x6c\xcd\x39\x9b\x45\xd7\xe9\xbc\ +\x3f\x2b\xd7\xb3\xec\x5a\x77\x42\x0b\xea\x5c\x77\xd4\xdb\xe7\x58\ +\x7d\xfd\x6d\x82\xe6\xa3\x8f\x3b\xbf\xca\x75\x6e\x05\x13\x7d\x0f\ +\x04\xa8\x74\x5d\x5e\x93\xa0\x01\x43\x28\x0b\x4b\xb7\x86\x7e\x1d\ +\x93\xa1\xae\x42\x2f\x45\xd3\x9d\x21\x25\x9a\x6f\x34\x6f\x14\xa2\ +\x8d\x4b\x73\xac\x23\x7b\x5c\x2b\x25\xd3\x94\x81\xe0\xa7\x3f\xf9\ +\x78\xe1\xc2\x85\x0b\x17\xee\xe1\x3a\x5b\x5e\xb8\x70\xe1\xef\x0b\ +\x4f\x5c\x43\x3e\xa5\x29\xcc\x97\x8a\x13\xe2\x82\xf2\x0b\x7e\x3b\ +\xcd\x7f\xa6\x28\x51\xf6\x32\x8e\x5d\xf4\xba\x58\x97\xaf\x3e\x1d\ +\x5e\x68\x3b\x10\x68\x66\xe1\x1e\xc7\x3e\x16\xe8\xa7\xa9\x4b\x70\ +\xb6\x36\x4e\x07\xba\x0d\x30\x27\x48\xf4\x6c\x24\xb0\x58\x94\xe4\ +\x3b\x3a\xc1\x4c\x65\xe5\x45\x3b\x97\x58\xdf\x94\x59\x5d\x7d\x95\ +\xd7\x85\x7b\x1f\x6d\x19\x39\x88\x71\x71\xbf\x56\x5a\xb5\x98\x05\ +\x23\xfe\x50\x83\x2e\x06\x9b\x74\xe0\xea\xc3\xd4\xfc\xd1\xe9\x30\ +\x76\x43\xd7\xdd\x03\x6a\x70\xd8\xb4\x3b\x0e\x35\x16\x42\xee\x41\ +\x45\xac\xeb\x40\xd5\xbd\x09\x27\xc6\x47\xa5\x05\x9e\xe8\x37\xa2\ +\x4f\x01\xf6\xe9\x94\x9e\x98\xeb\x11\xdf\x61\x82\xbf\x09\xbe\x6a\ +\xe5\x9e\xc2\xf7\xdb\x02\xa8\xe4\x66\x3c\x98\xb7\xc3\x4f\x4c\x62\ +\x27\x41\xba\xda\x88\xfa\x06\x2f\x11\xb6\x35\xbc\x99\x40\xe3\x04\ +\xed\x86\x00\x4a\xa0\x99\x59\xd3\x3c\xc4\x59\xb9\xd3\x61\x18\xd8\ +\x9c\x2f\x4e\x00\x1d\xd4\xfb\x7a\xcb\xb9\x65\xa9\x43\x57\x05\x0a\ +\x43\xe2\x73\xde\xbe\xb2\x41\x7d\x26\x8d\x5c\xd9\x53\xe6\x59\x99\ +\xe0\x11\xf2\x7d\x1c\xef\x82\xcf\x74\xb0\x50\x6f\x93\x80\x0f\x62\ +\x22\xfb\xe8\x4b\x28\x50\x51\xe7\xae\x20\x97\x41\x3d\x73\x11\xb9\ +\xe9\x8f\x75\x6a\x6b\x87\x0e\x39\x75\xa3\x35\x15\xc1\xf1\x4b\x36\ +\xbe\x87\x23\x80\xb3\x60\x70\x2f\xe3\x4f\x15\xed\xc1\x22\x17\xbe\ +\x3b\x70\x3c\xe3\x37\xd4\xb4\xfd\xc7\x1e\xe8\xdb\xbb\xde\xbd\x27\ +\x88\xc9\xfd\x9a\x6d\x8b\x1e\xc8\x01\x7c\x65\x51\x79\xb1\x50\x5f\ +\x82\xea\xc6\xbd\xfa\x78\xe5\xc1\xce\x18\x73\x68\x8b\xd0\x9f\x6c\ +\x94\x2b\x46\xfd\xd4\x0e\x84\x3a\xbc\xae\x58\x9b\x5e\xda\x6e\x24\ +\xd4\x68\x03\xdd\x0e\xb0\x6e\x43\x9d\x53\xd8\x8f\xa0\x2c\x2d\x6b\ +\x5b\x8f\x70\x23\xc3\xb0\x9d\xdb\xa4\xfe\x67\x6e\xd3\xf7\xd4\x0e\ +\x8d\xef\x68\x16\x42\xe7\x9a\x81\x25\x9a\xd0\xd9\x8d\xb1\x96\xf6\ +\x3c\x5c\xf5\xdb\xf0\x96\x31\xa1\x9d\xf4\x39\xf9\x79\x26\xa1\x80\ +\xe8\xde\xf4\xbe\xcf\xd4\x13\x6f\x59\x83\xef\x3c\xf4\xaf\x0d\xae\ +\x9a\x67\xec\x8d\xfa\xb6\xf5\xfd\xea\x15\x8e\xbc\xef\xbd\xad\x8e\ +\xf5\x92\xe9\x81\x37\x0e\xfa\xbc\xfc\xbe\xf2\x3c\x9a\x67\xaa\xb6\ +\xd9\xbb\xb6\xef\x8d\x43\x8d\x16\x3c\xbe\xe7\xa7\x3a\x78\x87\xd0\ +\xbb\x3d\x42\x69\x4e\xc4\xa6\xd7\xb9\xfa\x5a\x62\x60\xcc\x63\xbc\ +\xf7\x0c\x85\xac\x39\x43\x39\x19\x71\x88\x3d\xde\xd7\xc2\x88\xf0\ +\x9c\x01\x0f\x11\xd5\x57\x2c\x96\xb3\x68\xb8\x2e\xba\xc4\x07\x5a\ +\xe0\x54\x33\xa0\x51\xe3\x9d\x30\xb4\xe3\x1a\xb4\x9f\xb7\x86\x25\ +\xc0\x47\x5b\x8b\x4b\xf7\x8e\xbf\x9d\x76\xdd\x22\xbe\x70\xe1\xc2\ +\x85\x67\x70\x9d\x2d\x2f\x5c\xb8\xf0\xed\xf0\xb5\xda\x7a\xcd\xf6\ +\x6b\xe1\xe9\x71\x70\xb1\x78\xff\x6a\xf4\xe5\x87\x1f\xf4\x13\xed\ +\x79\x81\x6b\x35\x7f\xd2\x3d\x1f\xc9\xf4\x60\xca\x45\x98\x16\xe0\ +\xcd\x5f\x1e\x01\xae\x74\xc8\x58\x85\x1d\x15\xf3\x4d\xa8\x31\x1b\ +\x78\x6a\x62\x7c\xef\xc8\xa0\x0b\xf2\x8b\x14\x5a\x36\x51\x25\x2c\ +\x7c\xa2\x36\x31\x6f\xbc\x20\x5b\x3a\x29\x35\x17\x99\xd1\xc7\x15\ +\xbc\xa2\x53\x24\xe1\x4a\xd0\xa5\xb9\x81\x2e\xfd\x25\x38\xd6\x10\ +\x72\x17\x05\x60\x84\x8a\xeb\x00\x75\x34\xc7\xe0\x06\xa8\xad\x75\ +\x4c\x32\x31\x7b\xc0\x60\x9c\xb1\x43\x8f\xf5\x1a\x53\xbd\xb5\xf8\ +\xa6\xa0\x28\x2c\xdd\x06\xa6\xf4\x0c\xcd\x8a\x86\x26\x1e\x47\x46\ +\xe0\xce\x84\xd6\xe9\x3d\x03\x57\x46\x7f\x3a\x17\xe0\x6e\xf0\xde\ +\xc8\x77\x13\x9f\xc2\xb7\x57\xf8\xf7\x84\xbe\xa7\xd6\xfe\x0e\x4a\ +\x82\x7d\xd5\xf7\xd7\xb0\x47\x95\xcd\xfe\xcc\x73\x01\x45\x29\x5c\ +\xab\xd4\x47\xfc\x88\xf3\x06\x33\xdc\x3c\xc7\x80\x1c\xf5\x0d\xe9\ +\xeb\xb5\x5f\xaf\xe9\x3d\xa6\xe8\xa9\x54\x35\x0b\xa7\x35\xa5\x1b\ +\x6a\xe8\x86\xb7\x5a\xc3\x97\xb2\xaa\x46\xe0\xa0\xc8\x60\x3f\x3b\ +\xaf\x13\x9e\xbd\x0d\x58\x0e\x0b\xd5\xb5\x7e\x30\xc1\xa9\x7c\x3c\ +\x63\xcb\x73\x3b\x0b\xb6\xd8\xe7\xf9\x5b\x08\x06\x0e\x89\xc1\x0a\ +\xe1\x3b\x86\xc2\x3d\xbc\xb8\x85\x85\x1c\x6e\xbf\xd9\x13\x5e\x3a\ +\xb3\xdc\x5e\xf6\xec\xe2\x18\x41\x5f\x07\x04\x7c\x1c\x37\xf2\x19\ +\xc2\x17\x6a\x0e\x6f\x71\x37\x78\x61\x87\xbe\xb3\x4e\xf1\xee\xf6\ +\xf2\xee\x3d\x96\x61\xfb\xff\xd8\x45\x8b\xd7\xd7\xd8\xe2\x63\x5f\ +\x11\xdb\xba\xf3\xfe\x59\x25\x88\xb2\xf6\x1a\xc8\xd7\xf1\xae\x64\ +\x9d\x62\x80\xb2\x93\x88\x4e\x56\x5c\x65\xa1\x46\x8b\xd9\x3c\xe4\ +\x27\x4c\xf7\x70\x8f\x1f\x10\xb1\x49\xdb\x71\x27\x30\x5e\xba\x7e\ +\xdd\xc4\x16\xa0\xa1\xad\xd1\x37\x59\x33\x13\x11\xa7\x56\x99\x42\ +\xda\x29\xee\x11\x61\x54\x51\x6a\xf8\xa6\xd0\x07\xe9\xd7\x2c\xe0\ +\x50\xaf\x03\x1b\x3c\x63\x3d\xd0\x13\x1b\x5c\x63\xe0\xc8\x1c\x11\ +\x9a\x2a\x67\x63\xe4\xed\x47\xda\x20\x85\xe8\x8e\x39\x62\x7a\xec\ +\xa8\x49\x60\x47\xe9\x79\x1f\x0f\x05\x5f\x8f\x67\xb6\xda\xdf\x0d\ +\xb0\x1d\xa6\x09\xc3\xf9\x15\x36\xce\x57\x97\x3c\x4b\xdc\xf1\xe0\ +\xfa\x6b\xf5\x04\x5c\xdf\xaf\x9b\x90\xb2\x36\x7b\x78\x5b\x6e\xd6\ +\x6d\xb2\x12\xc7\xc8\x56\x1b\xe4\x33\xca\xc1\x6c\xab\xec\x61\xe9\ +\x92\x72\xba\x95\x9a\x0e\xa6\xdd\x7e\x29\xa7\x4b\x04\xbc\xdb\xa8\ +\xca\xb1\x56\x08\xda\xb9\xa8\x2e\x29\xce\x47\x0d\x20\x16\x6d\x88\ +\x13\xce\x99\xde\xdd\xce\x11\x72\xbd\x3f\x66\x9e\x93\xa2\xa7\xd9\ +\x8b\xb8\x34\x31\x1c\x5a\xd3\xc1\x96\x6b\xda\x73\x0b\x5b\x32\x80\ +\xe3\xd5\x33\x41\x76\x58\x78\xbf\x7e\xc1\xff\x96\xc7\xfb\xf8\x59\ +\xde\x85\x0b\x17\x2e\x5c\x30\xae\x2f\xd4\x2e\x5c\xb8\xf0\xcf\x87\ +\xb8\x46\xac\xcb\xc4\x97\xf7\xfc\x42\x8d\x3f\x55\x2c\x26\x63\x71\ +\x91\x99\xa2\x71\x89\x8c\x7e\xd8\xf2\xec\x0f\xac\x7f\x9a\x6a\x92\ +\x4c\xb6\x1d\xf4\xd1\x9a\x6b\xb3\xc0\x0b\xff\xb8\xe4\x5d\x02\x70\ +\xf3\x32\xb8\x20\x65\x70\x24\xad\x70\x3b\x43\x56\x28\x09\xfc\x6c\ +\x31\xa8\xaf\xdb\x2b\xdc\x4a\x69\x1b\xdc\xab\xad\x4b\x75\x5e\xa8\ +\x47\x87\x66\x0c\xdb\x56\x68\x38\x71\xd7\x6b\x75\xc3\x54\x7e\x72\ +\x23\x45\x32\xc4\x57\x7b\x83\x3d\x9d\x49\x39\xc2\x50\x81\xbb\x83\ +\x2e\x0d\xfc\xff\xd9\xfb\xd3\xf5\x48\x92\x24\x49\x10\x54\x18\x0e\ +\xbf\xe2\xca\x88\xbc\x2b\xb3\xee\xab\x6b\xba\xbf\xa9\xe9\x99\xd9\ +\xf7\x7f\x94\xfd\x76\x7f\xcd\xec\xd1\xdd\x53\x95\x95\x19\xe1\x0e\ +\x60\x98\x88\x99\x58\x58\x44\x45\xed\x00\xe0\xee\x91\x99\x4a\x0e\ +\x11\x61\x26\x26\x66\x11\x3d\x4d\xcd\x70\x38\x4d\x95\x12\x4a\xbc\ +\x03\x77\xea\xf1\xfa\x48\x3d\xb1\x82\x40\x51\x69\x3e\x26\xf7\x93\ +\x6f\x2d\xe5\xe3\xe3\xe3\xcc\x8c\xaa\x9f\x6f\x9b\x7e\x8c\x78\xc6\ +\xde\xb0\x53\xc8\xcf\xa2\x71\xaf\x36\xbb\x3f\x17\xe1\xc5\xb5\x9d\ +\xe8\xb5\xf2\xd2\xae\xe2\x20\xfc\xed\xfc\xec\x4e\x5a\xc4\x69\x36\ +\x6e\xad\x1f\x50\xe7\x0a\x4c\x73\x70\x6f\x1d\x02\x79\xa7\x5a\x85\ +\x2c\x62\x1c\x4a\xeb\xb3\x98\xba\x72\x52\x9e\x46\x44\x95\xfa\xb9\ +\x8d\xab\x8b\xdf\x4c\x58\xca\x98\xa3\x8b\x58\x51\xee\xbb\xb8\xd1\ +\x65\xb6\x19\xf8\x33\x88\x70\x74\xdf\x96\xdf\x17\x00\x6f\x84\x78\ +\x36\x09\x30\x22\x59\x05\x7c\xc8\x51\xbc\x11\x5d\xca\x0c\x85\x57\ +\x16\xd0\x1d\x71\x2b\x92\x9f\x0d\x81\x8e\x75\x51\x21\x59\x4d\xce\ +\x75\x61\x7e\x08\x43\x84\xdf\x36\xbf\x3e\xf5\x1b\x6a\x3b\x3e\x0e\ +\x70\x1c\xae\xed\x91\xca\x7f\xba\x7d\x3c\x02\xd3\x23\x52\x48\x1c\ +\x51\xbf\x17\x6c\xc3\x35\xed\xd8\xeb\x94\xe0\x58\x53\xbb\x80\x03\ +\xe6\xd8\xbc\xd3\xe0\x05\xb0\x06\xbd\x34\x47\x98\xa0\x1d\x44\xbe\ +\x74\x57\x81\xc1\xcf\x61\x5f\x61\x98\x8e\x24\x0a\xcc\x4f\x7a\x8c\ +\x75\x70\x55\xf6\x58\xa6\x5a\x40\xf3\x3a\x34\x02\x4d\xe4\xf7\x8a\ +\xdc\x7b\x13\x55\x2d\x18\x23\x00\xba\x84\xb6\x31\x17\xb5\x52\x35\ +\x2e\xdb\xa3\x75\xba\x86\x39\xeb\xf0\x18\xcf\x00\x2b\xe5\x5b\x45\ +\x23\xd0\xce\x8d\x66\xac\xa1\x10\x46\x7c\x33\x75\xbd\x05\xeb\x64\ +\x32\xd6\xad\xb5\x86\x29\x39\x60\x5d\xb2\x47\x17\x3f\x25\xee\x71\ +\xce\xf4\x3f\x3a\x68\x87\xbe\x30\xbc\x22\xf6\x88\x59\x97\xee\x98\ +\xa9\xbe\xae\x71\x5e\x10\xec\xf9\x53\xb5\x7a\xa7\xb6\x7e\x16\xef\ +\xe7\x71\xc5\xd1\x3a\x9b\x0b\x1b\xb3\x8a\xf0\xd8\xc6\x74\xb1\xe6\ +\xe8\x2d\xc7\xf8\x7f\x88\x35\xc7\x8c\x2e\x30\x41\xd6\xf0\x11\x38\ +\x96\xa2\x2d\xf0\x2b\x38\xae\x7d\xeb\x5a\x4e\x5d\x4b\xbb\x07\x6e\ +\x62\x35\xd9\x90\x53\x9d\x4e\xdb\x02\xab\x12\x86\x7c\x3b\x96\x41\ +\xad\xb8\xc0\x9c\x6e\xae\x95\x00\x98\xdd\xab\x0c\x96\xd8\xe5\x1a\ +\x46\x1f\xc8\xec\x08\x62\x60\x8b\x87\xb0\xeb\xfc\x86\x9a\x61\x32\ +\xf7\x8e\x1d\x3b\x76\xec\x68\xd8\xbf\xa1\xb6\x63\xc7\x8e\xe7\x43\ +\xcf\x57\x97\x3e\x67\x7d\x82\xe7\x32\x4c\x31\x7f\xf4\x34\xce\xee\ +\x80\x87\x6b\x7b\x70\xe4\x9f\x7c\x6c\xcb\xc1\x23\x65\xfd\xa0\x91\ +\x0f\xc1\xb5\x69\xb0\x8e\x8f\x9f\xd2\xd2\xd6\x58\x38\x81\x7e\xf0\ +\x7c\xa7\xe0\x0f\xaf\x73\x44\x72\x0c\x9e\x57\xf4\xac\xd1\x4c\x45\ +\xba\x8a\x74\xac\xb3\xaf\x2c\x53\xd1\x89\x81\x50\x75\xdf\x84\x19\ +\x45\x1e\x2b\x1f\x57\x14\x89\xbd\x69\xe1\x03\xb9\x69\xb2\x84\xdb\ +\xd2\xd7\x6a\x3c\x2e\x29\xb5\x08\xdf\x80\x85\x82\x64\x06\x0b\x40\ +\x20\x13\x23\x72\xdc\xc7\xdb\x9d\xac\xad\x9c\x3a\xd9\x80\x55\xd9\ +\x44\x59\x43\xc2\x6a\xc7\x1b\x0d\x02\xd3\xc2\xdd\xa8\xdf\xfe\x4f\ +\x1f\xba\x9b\xba\x29\xaa\xf6\xc8\x1c\x3d\x5f\xb6\x5d\x86\x2d\x80\ +\x4b\xde\xca\x7f\x69\x6c\xef\xd0\x3f\x11\xfc\xa9\x6c\xe0\xb9\xdb\ +\x51\x4f\x9e\xf1\x24\xea\x6b\x1c\xab\xa8\xcc\x95\xc6\x02\x7e\x4d\ +\xe9\xee\x5c\xe6\x48\x53\x59\xf5\x8a\x74\xee\xd8\x9c\x23\xd6\xda\ +\x81\x41\xf1\x98\x40\x11\xbf\x9f\x94\x80\x01\x31\xc5\x79\xfd\xd7\ +\xfb\xb1\xb0\x9e\x6c\x40\xd4\x84\x6e\x4c\x67\x6e\xc4\x81\x59\xad\ +\xe4\x4c\xd3\xdd\xa7\x1d\xcc\x24\xdd\x62\xf9\x01\x57\x70\xe8\xf9\ +\xf2\x94\x92\xf5\x1d\x8f\x95\x24\x62\x42\x34\x80\xb6\xf8\x72\xef\ +\x01\x82\x4e\xad\x40\xad\x7d\x05\xcf\x31\x7c\xcf\xb7\x7b\xa6\x82\ +\x14\x47\x55\xe3\xc8\xd2\x35\x5b\x12\xb3\xf5\xba\xcc\xbc\xb8\x3f\ +\xf3\xff\xf0\xe2\x87\x41\x59\x61\x40\x16\xd8\x71\x11\xe6\x7b\xb3\ +\x83\x49\xb8\xff\xaf\xb0\xff\x71\x4e\x6d\xef\x6b\x46\xe2\x60\xfa\ +\x2b\x6e\xd5\xc6\x5c\x1c\x0a\xaf\x25\x70\x94\x63\x71\x3d\x73\xd8\ +\x30\xce\x89\x88\x94\x6b\x40\x6b\xe7\x2f\x45\x7e\x0d\xb8\x56\xbd\ +\xaf\x6c\x84\x18\xe9\x91\x4f\x2e\x02\x69\xcb\x0f\xa2\x50\xcd\x90\ +\xc6\x87\x16\x1f\xa0\xad\x6a\x5b\xb7\x5e\xd9\x56\xae\xa3\x6d\x8b\ +\x8f\xfd\x7e\x02\xd6\x7b\x6e\x40\xec\xa3\x30\xa7\x48\xba\x18\x30\ +\x37\xe4\x31\x8d\x1f\xb5\xf5\x8c\x93\xac\xd0\x2b\x96\x6e\x6a\x5b\ +\x95\x64\x56\x65\x5c\xd3\xaa\xcc\xb2\x4f\x61\x55\xb4\xc3\xf1\xe8\ +\xc7\xc1\xe7\x98\xf3\xc5\xf0\x11\x16\xdf\x95\xcc\x03\x2b\xd6\x89\ +\xf5\xb4\x21\x9c\x9c\x08\x8d\x3a\xbe\xd8\x49\xea\x06\xce\xdd\x68\ +\xbd\x72\xf7\x98\xcd\xb3\xd6\x35\xe6\xd8\xba\xba\xbc\xe9\xb2\xa6\ +\xe4\x14\x52\xfa\x7c\xe3\xac\xdb\x75\xe6\x91\xb6\xed\x5b\xf7\x1c\ +\x80\x2f\x25\x11\x2f\x66\xc0\xbc\x9e\x70\x37\x93\x26\x2b\x35\xa7\ +\x4f\x19\x8e\x41\xbe\x01\x54\x96\x45\x29\xd0\x58\xa0\xe7\xc4\x49\ +\x68\x83\x2c\x50\x7d\x61\x10\x87\x5b\x57\xb7\x2e\x57\x19\xaf\xf7\ +\x58\x9f\x5d\x6d\x3f\x3c\x3e\xf0\x0f\x80\x9b\x6d\xf7\xe2\xc7\xc3\ +\x72\x38\xbc\x86\xe3\x6d\x5c\xc2\x8e\x1d\x3b\x76\xec\xe8\xb0\x7f\ +\x43\x6d\xc7\x8e\x1d\x9f\x17\xe3\xd3\x5f\x7d\x78\x8b\xe7\xb9\x95\ +\x46\xb8\x94\x9f\x01\x3f\x4d\xcd\x3f\x11\xd5\x3e\x2c\x88\xcf\x79\ +\x7c\x6a\x73\x38\x92\x29\x20\xd1\x1e\x63\xa5\x1d\x85\xaa\x25\x7d\ +\x05\xb3\x41\x25\x1d\x3e\x4d\xac\x26\x03\x01\xf8\xc6\x07\x9d\x51\ +\x33\x3a\x25\x1c\xcb\xf7\xed\x69\x91\x4e\xb3\x89\x5e\xa5\x2d\xf4\ +\xbd\xa3\x8f\xab\x42\xa3\x1d\x16\x20\x6b\x1d\xb4\x58\x7e\xa8\x32\ +\xcb\xb7\x69\x0d\xb1\xed\xff\x66\x73\x46\x63\x3e\xfc\x23\x6c\xb6\ +\xea\xfa\xda\x2c\xc6\xc9\xcc\x66\xc0\xec\x90\x6f\x23\x2a\x9f\xd4\ +\x39\x28\xb3\xda\x63\x8e\xd6\x41\xd8\x1a\xb0\x7c\xd7\x94\x88\x92\ +\x94\x17\x63\xdb\x15\xa1\x85\x6f\x8d\x5e\xc6\x02\xd5\x0f\x1d\x01\ +\x71\x99\x2a\x51\x35\x44\xe7\x38\x26\xd4\x93\xb0\xb5\x86\xb3\xb1\ +\x5a\xec\x45\x78\xa9\xcd\xd8\xc2\xb3\x36\xed\x02\x7c\xaa\x79\x1c\ +\xe7\xcc\x56\x0f\x6c\xd1\xdb\x0e\xf7\x0f\x88\x1b\xc7\x23\x58\xe4\ +\xc5\x0c\x94\xa3\x84\x40\xb8\xba\xff\xf9\xe5\x92\x57\x3b\x7b\xc1\ +\x43\xc6\x41\xa7\x58\x2f\x49\x50\x7b\x26\x56\x5a\x23\x66\x5c\x45\ +\x37\x2d\x63\xed\xfe\x5f\x21\x5d\xd3\x43\xe5\xda\xcc\xc0\x4e\xe4\ +\x4d\xa0\x54\xad\xf7\x0d\xa0\x84\x2e\xc3\x38\x33\x18\xeb\xe5\x08\ +\xd5\xb7\x91\x59\xe2\xc8\x0f\x0b\x48\x3e\x07\x1b\x7d\x8b\x3a\x65\ +\xbe\xe8\x6d\x60\x08\xcb\xf5\x1a\xb3\xdc\xd8\x77\x25\x44\x1f\x3d\ +\xff\xff\x34\xf7\xf9\x0d\x10\xbc\x9e\xf3\x87\x64\x8a\xb8\xc3\xb0\ +\x4d\x3b\xce\xc4\xd6\xfe\xec\xc1\xff\x43\xed\xf1\x96\x96\x1f\x35\ +\x01\x07\xc9\x98\xa4\x4e\xd5\x83\xde\x87\xb5\x76\xe6\xf3\xe8\xf3\ +\xf0\xae\x8e\xb0\x08\x8c\x6a\x01\x3d\x4d\x88\xf6\x4a\x0d\xfc\x66\ +\x99\x82\xb0\xbb\xa8\xc0\x40\x8b\x54\x3b\x90\x4f\x2d\x19\x2b\xbd\ +\x75\x11\xf5\xd1\x43\x03\x6a\x16\x30\x15\x95\x0d\x18\xe2\xb6\xe3\ +\x47\x5a\x73\x02\xa0\x19\x4a\x52\x46\x4d\x68\xb6\xa2\xb5\x06\x90\ +\xdb\x69\xc0\x8c\x5e\x57\xf7\x76\x47\x97\x33\x16\x38\x0b\x48\x8a\ +\x8a\x31\x88\xe9\x6f\xa1\x71\x06\xd6\xc9\x05\xe3\x32\x07\x2d\xf2\ +\xc6\xb3\xb6\x9b\x6b\xc0\x94\x45\xa1\xb2\x9f\x56\xe8\x42\x47\x74\ +\x4f\xc0\xcb\x56\xfb\xc4\xe0\xe2\x3f\xd5\x16\xb4\x79\x60\x5d\x3e\ +\xab\x32\x4a\xe6\xa9\x22\xfd\x49\x15\x38\x77\xe6\xb9\x8e\x25\xa7\ +\x75\x1d\x2d\xcb\xad\x5e\x5a\xef\x7c\x15\xbd\x2a\x4f\x65\xa3\xc7\ +\x2b\x03\x48\x26\x8c\xa6\x98\xa9\xd7\xd0\xeb\x01\x86\xf1\xf1\xa7\ +\x56\x3b\x89\xd9\x2e\x2a\xe9\xe3\x1d\x68\x76\xbd\xf7\xb3\xe1\xde\ +\x65\x39\xb1\x03\x36\x1f\x27\x3a\x74\x13\x26\x6a\x2a\xab\x89\xc8\ +\x40\xac\x6d\x9a\x33\xb3\x8e\xe0\xe8\x42\x15\xb3\xf9\xb0\x69\x61\ +\x67\x06\x77\x0a\x62\x57\xcb\xcd\xe1\x8d\x53\xe8\x8e\x95\xdc\xb1\ +\x63\xc7\x8e\x1d\xfb\x37\xd4\x76\xec\xd8\xf1\x02\x88\xe7\xc1\x67\ +\x03\x0f\x6e\x5b\x0f\x6f\x23\x7f\xe6\x43\xde\x6c\x69\xdd\x34\xd7\ +\xd7\xf6\x0c\x8a\xc7\x6d\x67\xc4\xf7\x5e\x03\x98\x5e\x03\x98\x85\ +\x07\x59\x7e\x39\xdb\x62\x40\xf1\x64\xda\x88\xb5\x65\xa4\x26\xd0\ +\xb6\x4e\xef\x66\x56\x31\x87\x3f\xf0\xc3\xaa\x02\x01\xf9\x61\x1e\ +\x41\xdd\x3f\xb3\x7d\xe5\x68\x11\xbd\xc9\xc0\xb3\xb7\xb3\x8a\x0d\ +\x93\x95\xe9\x67\xcb\x68\xb1\xf2\xc6\x6b\xf3\x83\x88\x52\x81\x92\ +\xfa\xb1\x8d\x21\x38\xb4\xf1\xcf\xf6\x74\xba\x80\x7f\x43\xc0\x30\ +\x96\x4d\xa8\x06\xb6\x16\x96\x84\x3e\x47\x87\x74\x2d\x87\xf6\x10\ +\x4f\x38\x9f\x7d\x6e\xab\x8d\x32\x6d\x1a\x9a\x98\x2e\x38\x85\x2a\ +\xf8\xbe\x47\x4b\xfa\xd8\x38\x36\xcf\xd9\x6b\x38\x55\xe4\xe9\x1b\ +\xf3\xf4\xcc\x8f\x8f\x4b\xd6\x36\x3b\xce\x2f\x8f\x13\x2b\x62\xb8\ +\x6a\x6c\x55\x70\x71\xae\x16\x7a\x5a\xa5\x6c\x80\x4c\xa6\x86\x95\ +\xe1\xa2\x5b\xd7\x29\x41\x03\xe2\x64\x92\x76\x86\x7f\xbe\x30\xb0\ +\xae\x51\xb0\x19\xec\xe7\x99\x03\xd7\xb3\x15\xe0\x6b\x43\xd3\xd7\ +\xcc\xa3\x73\x07\x5c\x8f\x35\x63\x44\x07\x26\x32\x67\xcb\xe0\xc5\ +\xdd\x6a\xaf\x24\x49\x98\xc2\xf6\x83\x74\x09\x23\xc4\xd6\x3b\xa1\ +\xac\x64\xc2\xe0\x6f\xd3\x9a\x1d\x2f\x5f\x0e\x18\xab\x66\x1d\xc6\ +\x30\x65\x63\xe4\x16\x05\x27\x9a\x46\x3a\x1b\x40\x3c\xf6\xb1\xdc\ +\x36\x86\xc7\xa1\xec\xb3\x80\xdf\x03\x6d\x0b\x0f\xf5\x4f\x0b\x9a\ +\x85\x1f\x8e\xc1\x37\xd4\x36\xd1\xd7\xd9\xf1\x52\xf0\x13\xf3\xb0\ +\x5c\xdb\xee\xbf\xb5\xbd\x8c\x1f\x52\x22\x15\xd0\x89\x1b\x64\x0c\ +\x79\x3a\x07\x3a\x1f\x4e\x12\x27\x8e\x1b\x4f\x88\xbe\x5a\x97\x6e\ +\xa8\x57\x0b\xae\x69\x3d\x07\x70\x30\x07\xd7\x7b\x7e\xf3\x6c\x40\ +\xd2\xa1\xe1\x6f\xd7\xaa\x40\x02\x5c\x98\x61\xb8\x04\x5d\x89\xc5\ +\xd8\xd2\xdd\x48\x17\x28\x4e\xc7\x1f\x01\xb6\x8e\xb7\xc6\x8d\x5d\ +\x45\x5a\xb1\x0d\x0d\xd0\xe9\x06\xe1\x66\x5a\x04\xc6\x38\xfd\x2e\ +\xd6\x14\xb3\xed\xea\xf3\x5d\xd1\x73\x42\x5f\x4d\xb5\xdc\x6f\x95\ +\x57\x73\x80\x20\xe9\x77\xf5\xac\x6d\x0e\xec\x0c\x17\xa4\x46\x18\ +\x05\x23\xb6\xe2\x53\x7e\x55\xbd\x00\x09\xc7\xe2\x3d\xce\x57\xfe\ +\xd8\xf1\x32\x5b\x82\xbd\x37\x3f\x14\xad\x7e\x3f\xd3\xb9\xf3\x9a\ +\x6e\xeb\x18\x6f\x05\x2a\x6d\xf6\xa8\xda\x9e\x39\x94\x13\x01\x23\ +\x63\xa1\x8a\x73\x37\xe7\x18\x4e\xd6\xb0\x05\x98\x46\xb2\x5c\x0e\ +\x89\x92\x5c\xeb\x54\x3b\x51\xee\xce\xd3\xf8\x06\x66\xda\x09\xe7\ +\xd5\x7d\x75\xe8\xe1\x75\xb2\x31\xc7\xfc\xaa\xe9\xb7\x6b\x94\x67\ +\x74\x8e\x12\xae\x35\xfb\x1a\x97\xa3\x95\x3d\x5d\xa9\xbe\xf6\x11\ +\xf6\x42\x81\xd7\x30\xd4\x68\x3d\x54\xf6\xfa\xf6\x70\x58\x6e\xae\ +\x5f\x51\xb6\x63\xc7\x8e\x1d\x3b\x4e\x63\xff\x86\xda\x8e\x1d\x3b\ +\x9e\x0f\x3d\xab\x9d\x78\xae\x5c\xc1\x9f\xe3\x3c\x1f\x4d\xf9\xf2\ +\x05\xe9\x2a\x46\xbf\xe2\x58\x2c\xe1\x13\x1c\x0e\x37\xcb\xe1\xfa\ +\x36\x53\xfc\xe1\xd2\x60\x61\x7d\x70\xdb\xfe\x14\x95\x01\x36\x1b\ +\x62\xf6\xf8\x89\x0f\xf5\x68\x39\x9d\x75\x20\x21\x6b\x88\x21\x11\ +\xf5\x5c\x4f\x21\x3c\x1f\x69\x0b\x03\x41\x13\x9d\xcd\xc2\x50\x89\ +\x09\x2b\xca\xd7\x59\x36\xab\x43\xf5\x69\xa3\xb3\xd6\x78\x6d\x51\ +\xaf\x25\xa8\x03\x0b\x8d\xeb\x46\xcd\x2a\x67\x03\xd2\xad\xf5\x7c\ +\xc4\x0f\xdb\xc0\x6d\x76\x15\xad\x12\x22\xf0\x46\x21\x4c\xa1\xd6\ +\xf4\x98\xd6\x9a\x47\x88\x50\x1e\x46\x7e\xd8\x65\x07\x91\x71\x05\ +\x80\x9a\x60\xf0\xb8\x09\xf8\xe6\xc4\x85\x4c\xb5\xd6\x4b\xf1\x41\ +\x9c\x47\x5c\x1e\x51\x3f\x51\xc2\x56\x3d\x7a\x73\x14\xb9\x0b\x5d\ +\xdc\xb8\x4f\x84\x4f\x3e\xe1\x1a\x3f\x82\x25\xfc\x69\xa0\x9c\x6f\ +\xfd\x3e\x95\x67\x23\x35\xb3\x13\xd3\x35\xe3\xb1\x98\x29\xc9\x0d\ +\x42\xb8\x95\x1a\xf3\x32\x56\x02\x55\x33\xab\x09\x88\xaa\xa1\xc6\ +\x0d\x09\xb3\xfb\x68\x37\xcb\xa8\x8f\x71\x00\x68\xb5\x11\xeb\xbb\ +\x52\xd3\x75\xfa\x49\x32\x29\xeb\x26\x21\x03\xea\xaa\x05\xa0\xb5\ +\x46\x26\x92\x3d\xea\x3a\x6d\x6e\xab\x17\xb9\x20\xd4\x00\x8e\x16\ +\xd3\x98\x76\xa0\xda\x81\xa8\xd4\x30\xd1\x10\x23\x6f\x8b\x42\x6e\ +\xae\x9b\x90\xc8\x46\xf1\x31\xf2\x75\x17\x62\x6e\x8c\xe7\x7a\x9c\ +\x7f\xc7\xd9\x6c\xf0\x15\xa3\xbf\xe3\x22\x6c\xed\xbe\x15\x7f\x6d\ +\x07\xe2\x66\x79\x78\x88\x00\x5f\xf3\x70\x6c\x8a\xb0\x3f\xc8\x89\ +\xd3\xc7\xac\xf9\x35\xd2\x4a\x35\x56\x9c\x18\x5f\x86\xd6\x02\x44\ +\xa4\x25\xc7\xeb\x73\x00\x66\x34\x67\xdd\x71\xdb\x21\x26\x39\x33\ +\x9c\x73\xd4\x72\x4d\x34\xc7\x3c\xdc\xb3\x75\x9b\xd7\x08\xed\x4c\ +\x94\x9c\x19\xa5\x64\x9a\x43\x8e\x1e\x4d\x1c\xfd\x51\x59\xaf\x73\ +\x48\xae\xe0\x74\x2d\x23\xad\xae\x48\x7b\xba\x43\xa5\x2e\x14\x4e\ +\xc7\x15\x54\x1e\xb9\xca\x4f\xde\x8c\xd5\xea\x48\x34\xb6\xd6\xa8\ +\xf6\x1a\xc7\xa3\x3d\x7c\x25\xeb\x8c\x13\x35\x10\xbe\x64\x9a\x82\ +\xd5\x76\xfe\x49\xe0\x82\x9d\xf1\xa4\xfd\xd6\x8e\xd1\xc5\xe9\x47\ +\x77\xf8\xa4\xda\x93\x0f\xd0\x89\xc4\xb3\xea\x9e\x3b\xb9\xeb\x52\ +\x6d\xf7\xe9\xd5\x3d\x39\xdc\x73\x2b\xfa\xeb\xb3\x63\xf5\xdc\x75\ +\x12\xfd\x7e\x54\x76\x29\xd9\x2a\x9a\xd1\x55\x0f\x91\x38\x8c\xba\ +\xd3\xc0\x86\xd5\xaa\xf7\x2b\xab\xf6\xd3\xd0\xf6\x1a\x47\xbe\x49\ +\xf5\xd9\xea\xbc\x1c\x5d\x80\xee\x24\xfa\xfb\xb2\x65\x15\x5f\x35\ +\x37\x2b\x21\xc0\xd6\x2b\xfc\xfd\xb3\x71\x2a\xb0\x3c\x98\x77\xbd\ +\xdc\xf1\x1b\x6a\x4d\x9b\xe1\x1d\x3b\x76\xec\xd8\xb1\xc2\xfe\x0d\ +\xb5\x1d\x3b\x76\x7c\x5a\xe8\x19\x8d\x0f\x77\xd1\x9e\x8a\x33\x9f\ +\xf2\x66\xb2\x9c\xf6\xee\xd6\x1c\xff\x2d\x35\x72\xf9\x20\xae\x0f\ +\xf8\xa4\xdc\x78\x3b\x40\x91\x37\x99\xea\x9d\x0f\x1b\x28\x34\xc0\ +\x75\x99\x53\x65\x39\x8b\x44\xe3\x08\xcc\xb8\x40\x52\xf9\x9d\x26\ +\x30\xb2\xd7\xa8\x91\xf1\x81\xdd\x01\xb2\x05\x64\x75\x6c\x0b\x67\ +\xbd\xfa\x8d\xae\xf6\x91\x89\xd9\x59\x60\x63\x4d\x16\xcf\xda\x61\ +\xa3\x57\x1e\xbf\x19\x85\x31\x5a\x08\x06\xcc\x6b\x93\xed\x42\xed\ +\x0d\x35\x96\x83\x52\x4d\xd3\x84\x5c\x7f\x73\x5d\x4c\x60\x44\x2b\ +\x8b\xa0\x29\x5e\x3a\xaf\x9c\xaa\xd1\x90\xcc\x50\xcc\xe7\x21\xa7\ +\x7f\xb1\x8a\x0d\xb9\xfe\x73\x70\x91\xf8\x47\x85\x4f\xb9\xf2\x4f\ +\xbf\x97\x66\x33\x8e\x9c\xce\x1d\x8d\x11\xe7\x00\xce\xfd\x55\x25\ +\x84\x36\x4e\xbb\xee\x43\xe6\x0e\x25\x90\x05\x47\x6e\x9d\x3c\xa7\ +\xdb\x8a\x66\xd3\xcd\x3e\xea\x6c\xf0\xdc\x56\xe1\x05\xc0\x9b\x97\ +\x2a\x62\xf4\x7b\x41\xfd\x5e\x3a\xc1\xfb\x0a\x62\x8d\xed\xe2\x15\ +\xa6\xf5\xd7\xa8\xaa\xf0\xed\x02\x03\x4b\xf7\x2d\xaa\x42\x9f\x15\ +\x6d\xc8\xfb\xbd\x68\x35\x00\x6b\x4e\x8e\x45\xbc\x11\x11\x9b\x20\ +\xef\xef\x15\x95\x83\x1d\x7e\x7b\x6d\x75\xc8\xf3\x6f\x94\xe1\xcb\ +\xb7\x42\x70\x7d\xbc\x16\xb0\xc1\xa6\xd0\x94\x7e\x54\xaf\xec\xb5\ +\x9c\xbf\xa5\xb6\xe3\x13\xc2\x8f\x14\xae\x6d\x1c\x8f\x9b\xdb\x5b\ +\x3b\x04\xf8\x2d\x41\xbc\xc5\xe4\xc1\x21\xf2\xb0\x85\x2f\x0c\xae\ +\x43\xe2\x11\x21\xc6\x30\xcb\x13\xc7\x73\x7d\x25\xb0\x75\x92\xb3\ +\x2e\x62\x4d\xe2\x13\xea\x07\x5d\x74\x3e\x35\xb9\x16\xa3\xbb\x47\ +\xf8\x21\xd2\x73\x89\x7a\x0d\x15\xa0\x44\x67\xd8\x8c\x89\xd4\xb0\ +\x66\x35\xf3\x2c\xc1\xaf\x6d\x0f\x61\xad\xf3\x9a\x0d\x8c\x6b\x93\ +\x0c\x30\x8b\xeb\x28\x9b\xe8\xd0\x2c\x11\xb0\x21\x63\x93\x09\x79\ +\x3e\x84\xdd\x5b\xb5\x8a\x27\x2a\x5d\x31\xa2\x98\xcd\x91\xbe\xbf\ +\xf3\x01\x1e\x11\xeb\x63\xbf\x86\x39\x18\xb7\x6e\x4b\xb7\x9e\x69\ +\x03\xda\x88\xc0\x76\x16\x84\x83\x18\x58\x25\x9c\x39\xef\x9f\x0a\ +\xb8\xb9\x93\xfd\xf2\x6c\x6c\xec\xc7\x42\xb7\xf3\x0e\xe3\xc6\x1a\ +\x3a\x7a\xa3\xe6\x0c\x94\x9e\xd0\x6f\x86\x2f\xd9\x1f\x17\xee\xbb\ +\x9c\xd3\x0c\xd9\xdd\x3a\x74\xe6\x77\x57\xa5\xd9\xfd\x3c\x5d\x8c\ +\x4e\x65\x86\x35\xf5\x85\x02\x32\x46\x6d\x11\xd7\x3c\xc3\x46\xc6\ +\x4a\xc7\x78\x72\x66\xd0\x1e\xae\xe8\xea\x98\xdd\x6a\x86\xa5\xb4\ +\x3e\xcb\x5c\xdb\x2f\xf1\x62\xd6\xfe\x6a\x02\x34\xa1\xb3\x21\xa2\ +\xf6\x4f\x56\x43\x51\x12\xb2\x5d\xa9\x7a\x0d\x8c\x5b\xa7\xb1\xaf\ +\xb8\xd6\x3b\x26\xaf\x05\x4a\x01\x58\xc7\xfe\xd9\x8d\xd2\x7f\xeb\ +\xda\xb7\xe9\x7a\x29\xff\x87\xda\x8e\x1d\x3b\x76\xec\x38\x8a\xfd\ +\x1b\x6a\x3b\x76\xec\x78\x3e\xf4\xc4\x76\xce\xb3\x17\xb4\xc7\x74\ +\x88\x8f\x4f\x80\x7a\xae\xfb\x08\xcf\x76\x57\x37\x37\xcb\x62\x0d\ +\xff\x91\x3e\xa7\xb5\x87\x4a\x3c\xc7\xe7\x1b\xf6\x98\x53\x53\x63\ +\x94\xed\xb0\x2c\x26\xe2\xa1\xd9\x22\x21\xa8\x1a\xbe\x2f\xe8\x08\ +\xcc\xe1\x44\x47\x87\x97\xef\x23\x32\x58\x54\x66\x4a\x47\x98\xc9\ +\xcf\x80\x90\x14\x34\x5d\x7e\x5a\x1b\x3b\x32\x62\xe3\x6e\xad\x65\ +\x00\xe6\xb9\xd9\x69\x07\x59\xf9\x40\x0c\x86\x35\xfb\x52\x2e\xb5\ +\x69\x04\xe2\x43\xaa\x46\xa9\x80\xc6\x92\x60\xda\xf6\x36\xce\xd1\ +\xf2\xcc\x6e\x93\x27\x94\xed\xfb\xc5\x5a\x4d\x28\x20\x5d\x24\x39\ +\xfb\x58\x72\x63\x0e\x25\xf8\x80\x9e\xac\xf5\x6e\x73\xfe\x46\x4b\ +\x1e\x08\x12\xa0\x46\xd1\x89\xaa\x48\x8b\x79\x14\x7d\x95\x17\x06\ +\x16\x51\xdb\xd9\xb8\x48\x7c\x11\x3e\x5e\xe5\x86\xb6\x4f\x2f\x9f\ +\xed\x63\xad\xef\x53\x6c\xf7\x1a\x36\x2b\x26\x8e\xc9\x71\x6f\x5c\ +\xad\x04\xae\x76\x58\xd1\xf6\xb8\xec\x2c\xed\xd4\xe6\xa8\xe4\xb4\ +\x74\x87\x26\x9e\x69\x2b\xa7\x7b\x6d\xe3\xd6\x6b\xec\x3e\x92\x28\ +\xc9\x60\x3b\xb5\x62\x95\x24\xe7\xca\x4e\x6b\x28\xa5\x1c\x21\x48\ +\x25\x05\x2b\x55\x07\xdd\x7b\x7c\x43\x8a\xd6\x68\x56\x29\x34\xff\ +\x2f\x4a\x36\xf7\x39\x30\xde\xbd\xa2\x64\x3c\x82\xee\x5a\xc7\x3b\ +\x9c\x53\x0e\xbe\xae\x04\x57\x51\xe3\x13\x78\xc5\xb6\x57\x53\x55\ +\xe4\x30\x57\x71\x22\xf6\x8e\xe6\x26\xe7\x2e\xc1\xff\x3f\x0d\x7f\ +\x6e\xb0\xc5\x1c\xaa\xb6\xe3\x63\x02\xff\x87\xda\xf2\x78\x6b\x8f\ +\x51\x7e\x7c\x72\xaf\x9b\xe1\x76\x77\x35\x6d\x00\x47\xae\xaa\xca\ +\xb5\x93\x07\xda\xcc\x22\x19\x6b\xe2\xb3\x41\x37\x62\x04\xcc\x5e\ +\x5f\x85\xd0\xc6\x9a\x22\xc9\x7b\xac\x5f\x5a\x1b\xf1\x81\x63\x78\ +\xee\xce\x2a\x19\x40\xe6\xe4\xcd\x5d\x69\x45\xf4\x27\x69\xd2\xa9\ +\xb7\x64\x49\x9a\x74\x55\xcd\x98\xc6\x61\x6b\xda\x6e\xaa\x5a\xb3\ +\x83\xc7\x50\xf7\x1f\x08\xb9\x8c\xd1\xaa\x82\x8a\xc6\x47\xb9\x9a\ +\x94\x5c\xc6\x80\xe2\x20\xbb\xc6\xaa\xbd\xb1\x57\xa7\x80\xb2\xaa\ +\xbd\x8e\x33\xac\x63\x44\xad\x3d\x42\x67\xa2\x6a\xd4\x5a\xd5\x69\ +\x67\x6c\xa7\x58\x63\x73\x32\xe5\x41\x50\xed\x21\xa1\x2b\x7f\x62\ +\xae\x82\x63\xdb\xf8\x47\x85\xdc\xe4\xf3\xb7\xfd\x59\xc0\x34\x67\ +\xcd\xd9\x62\x33\x6b\xc4\xfc\x78\x40\xdf\x72\x9e\x7a\xcc\x8e\xe7\ +\x5d\x52\x75\xd4\x1e\xc9\x5d\x85\x0a\x61\x66\x6e\xd5\xb4\xa4\x75\ +\x23\x6f\x00\x25\xda\xef\x55\x13\x91\x61\x64\xa1\xdd\x9c\x6f\x05\ +\x57\x56\xd9\xf8\xea\x33\x9b\x3b\x3d\x33\xc6\x0a\x7c\xaa\xa8\x72\ +\xbe\xb7\x2d\x35\x6b\xcc\x50\x33\x3b\x5d\xc2\xf8\x9a\x33\xe4\x4f\ +\x51\x5e\x03\x05\x31\x98\x61\x35\xcb\xa0\xcf\x97\x27\xd0\x16\x93\ +\xef\x83\xbd\x76\x3c\xdc\xf1\x2f\xf7\x40\x50\x5e\xca\x76\xec\xd8\ +\xb1\x63\xc7\x06\xf6\x6f\xa8\xed\xd8\xb1\xe3\xf9\x98\x3d\x04\xd6\ +\x07\xb1\x59\xfc\x14\x5e\xe8\x41\x6e\x73\x6a\x05\x6e\xf0\xe1\xcf\ +\xcd\xf2\xe1\xfe\x83\x39\x4e\xb6\x87\x48\xf8\xd6\xf0\x40\x2a\x3d\ +\x40\x37\xb8\x88\xc1\xf4\x2e\x10\x0f\xb1\xa2\xa0\x87\xed\xa5\xcd\ +\xba\x8a\x6f\xaa\x81\x8c\xe6\xdf\x77\x02\x67\x5a\xda\xe9\x26\x97\ +\xb4\x8c\x8d\x1d\x55\xe7\x81\x2d\xd5\xa8\xce\x32\x69\x38\x9a\x1b\ +\x1f\x71\xb4\x09\x13\xbe\x45\x30\x7c\xf4\xf5\x57\xe0\xc3\x20\xcb\ +\xee\x3e\xb9\x29\x79\x04\xe2\x61\x76\xbc\x10\xb9\x33\x19\x42\x68\ +\xab\xb4\x59\x1d\x43\xa9\x91\x69\x66\xc0\xa6\x33\xc4\xc9\x47\x9f\ +\x08\x0d\xb6\x55\x1f\xfe\xac\x74\x5d\x0a\x1c\x35\xcf\xe5\x1c\x74\ +\x3b\x61\x53\xf5\xf4\x06\x7a\x91\xd6\x9d\x30\x62\xc5\x05\xb4\x86\ +\xad\xf8\xcb\xe0\xe3\x54\xff\xf8\xeb\x76\x7c\xaa\x79\x3e\x2f\x86\ +\x2d\x5c\x9d\x77\x88\x57\xd2\x6c\x5e\xcb\x95\x8f\x71\x70\xe7\xe8\ +\xeb\xd1\x9a\xe9\x33\xb0\x75\x04\xb6\x78\x07\xa3\xeb\x9b\xd1\x11\ +\xd4\x45\x94\xbc\xb1\x84\xf9\xdc\xfc\x22\x9f\xcd\x02\xce\x9b\xee\ +\x74\x62\x4a\xb2\x07\xa6\x60\x68\x8c\x77\x4b\x84\x13\xf5\xaa\xce\ +\xec\x74\xc3\x68\x33\x82\xf0\xa6\x0f\x9b\xd1\x74\x5b\xa7\x26\x7c\ +\x86\x30\x07\x9b\xc5\x24\x8a\x41\x70\xd7\xab\x8f\xb1\xa9\x98\x94\ +\xf3\x9a\xa7\xf1\x42\x75\xfc\x35\xaf\xe3\x8c\x60\x0a\xc6\x68\x58\ +\x83\xaf\xdf\x7c\xfc\x76\x1a\xbe\xa1\x46\xdf\x07\x47\xe7\xec\x78\ +\x49\xd4\x4f\xdd\xec\x18\xe0\xff\x5f\xe1\xff\xa1\xc6\x7d\xae\x63\ +\x83\xce\xc1\x43\x96\xfe\x78\x5c\xc2\x67\xd2\x43\x18\x7e\xcc\x47\ +\x20\x52\x66\xee\x6c\xc1\x39\x45\x62\xb4\x01\x96\x2f\xbb\x71\x9a\ +\x84\x97\x17\xa0\x51\xf0\x17\x7d\x18\x74\x01\xb9\xf5\x59\x40\xad\ +\x5a\x73\x58\x6c\x15\x76\xa2\x6e\x6f\x56\x11\xc9\x1d\xd8\x6b\xaa\ +\xbd\x8d\x41\x35\x75\xd1\xd7\x45\x8d\x0b\xac\x49\x66\xe7\xce\x0a\ +\x30\x5c\x35\x0d\xf3\x4a\xea\xc7\xa8\x80\x78\xd4\x2b\xf7\x74\x5a\ +\x93\x94\xb8\x3b\x28\x63\xb3\xea\x49\xb4\xa9\x88\x74\x9f\x5c\xb0\ +\x62\x28\x3e\xe2\x44\xb8\xe2\x02\xe9\x1f\x17\xc6\xf3\xea\x14\x9e\ +\xb9\x23\xb6\x67\xeb\x23\xed\x3c\xc5\x84\x4f\x9c\x74\x92\x76\x6a\ +\x6b\x15\xe7\x18\xf9\x71\x1b\x70\xd0\x46\xf4\x54\x25\x83\x69\x5b\ +\x6a\xe7\x34\xcc\x68\x12\xc1\x96\xf8\x4a\x67\x98\x71\x40\xf2\x6b\ +\x83\xd0\x36\x8d\xf9\xd5\x77\xdb\xae\x71\xdb\x54\xda\x19\xec\x55\ +\x7d\x6c\x8e\x6e\x6f\x15\xad\x4c\x1f\xa1\x32\x2b\xc8\x3e\x86\x51\ +\x56\xbf\xff\xc5\x12\xe6\xac\x8f\x57\x41\xf1\xd3\x1c\x35\x01\xcd\ +\xd0\x87\x6d\x15\x46\x80\xdb\xce\x0f\x82\xd7\x16\xde\x9b\xbb\x9f\ +\x7f\xea\x98\x34\x58\x7b\xf5\xbe\xba\xa3\xcb\x35\x6b\xc2\x1d\x3b\ +\x76\xec\xd8\x31\xc5\xfe\x0d\xb5\x1d\x3b\x76\x3c\x1f\x97\x3c\x70\ +\xad\x1e\xf2\x0a\x10\x1b\xe3\x7c\xc8\x73\xf3\x29\x50\x6a\x57\xa2\ +\x3c\xd9\x1e\x6e\x6e\x97\xeb\xdb\x57\x7c\xaf\x8e\xff\x7e\x85\x80\ +\xcd\x0e\x0f\x9d\x41\x08\x30\x51\xcc\x6a\x14\x96\x3c\x7d\x8c\x5d\ +\x00\x88\x20\x87\x08\x86\x0f\x68\x6d\x74\x83\x93\x21\x37\x3d\x18\ +\x41\x8a\xe3\x68\x6b\xcd\x6d\x84\x0c\x2d\x1c\x7c\x38\xea\x6b\x1a\ +\xd6\x1c\x58\xaf\xd7\xe1\x29\x7d\x4e\x27\x85\x43\xc2\x67\x56\xac\ +\x69\x8a\x65\x26\xbc\x69\x2c\x46\x07\x6a\x71\x07\x47\x0b\xd0\xb4\ +\xce\x42\x57\x7c\x03\x00\x03\x1c\x4c\x6c\xa3\x9b\x99\x01\x23\x9d\ +\x40\xd1\xa0\xa1\x4a\xa7\x11\xc9\x40\x20\x6c\x0c\x29\x35\x47\x76\ +\x95\x0a\xb5\xe4\x0c\xb3\x9c\xe7\x62\x55\xf3\x63\x4c\xf2\x99\x71\ +\x6a\xbf\x7e\x1c\x7c\x9e\x59\x3f\x0b\x4e\x6e\x2a\x04\x55\x84\x93\ +\x6c\xfe\x51\x28\x54\x23\x3f\x66\x9f\x86\xd7\x07\x2e\xcb\x03\x4e\ +\x5d\x00\xb3\xd5\x01\x8d\x6f\xeb\x5d\xcf\xde\x62\x01\x73\xf2\x73\ +\x09\x06\xd0\xd9\x7d\x57\x1f\x02\x5b\xac\xd3\xcf\xb0\x29\xd0\xfd\ +\xdb\xe0\x65\x35\x38\xf8\x01\x89\xd2\x93\xb5\x9c\x10\xb2\x85\x4d\ +\xb8\x81\x9a\x7a\x85\x23\x64\x5a\x40\xcb\x46\x1e\xe7\x2e\x32\xda\ +\xb9\x20\xc1\xfc\x29\x3f\x81\x49\xb0\x4a\xdf\x5f\x38\x7f\x86\x9c\ +\x70\x93\x35\xa3\x96\x45\x1a\x5e\x95\xfc\x1b\x6a\xce\x01\xfc\xc6\ +\x1f\xbf\xa1\xb6\xbf\xb5\xf9\x74\xc0\xc1\xe1\x57\x9e\x33\x57\x87\ +\xbb\xe5\xfa\x11\xbf\xf5\xdf\xee\x0d\x1a\xd7\xf0\x48\x8d\x37\x3b\ +\x0a\x1a\xc0\xa9\x55\x7e\x86\xd5\xf9\x64\x98\xdf\xa5\x00\x2d\xda\ +\x5a\x48\x38\xd8\xc9\xe9\x75\xca\x73\x15\x6d\xf7\x5d\xe3\x4d\xb6\ +\xae\x7f\x61\x70\x0d\x60\xd6\x6c\x62\x0c\xc1\xb7\x25\x60\x15\x5c\ +\x65\xc6\xdd\xa8\x2b\x93\xce\x29\x5a\x44\x51\x94\xfb\x52\xe3\x9b\ +\xb2\xa2\xb1\xfe\x0d\xeb\x82\xce\xc5\x0a\x86\x78\x14\xee\x59\x90\ +\x1e\xa8\xeb\x01\xa8\x6b\xdd\x98\xd8\xee\x43\x89\x42\xac\x62\x0e\ +\xd1\x3e\xd7\x70\xe4\xc7\x05\x08\xe0\x6b\x3d\xf8\xa1\x9d\x9d\x4f\ +\xc7\x51\x27\x51\xe1\x33\x6b\x5c\x3a\xd5\x9f\x1a\x9e\xba\xfd\x75\ +\x97\xcf\x10\xaf\x91\xe7\xa1\x2e\xa2\xd8\x66\x7a\x95\xf1\xf8\x1a\ +\x5e\xec\xb8\x59\xa1\x49\xad\xd3\xe5\xf9\x8a\x18\xb6\xa3\xf3\xbb\ +\xd0\xe9\x6a\xab\xfd\x79\x46\x8a\x4b\xac\x1f\xb4\xe9\xae\x8d\x04\ +\x6e\x33\x6d\xbd\x74\xd2\x4c\x3b\x11\xf1\x15\xdf\x03\x9b\xd0\x1d\ +\x76\xe9\x79\x4f\xf3\xab\x7a\xbd\xcf\xd4\x55\xb8\x7e\x0d\xe3\xaa\ +\x56\xf6\x78\xcf\x3c\x13\x39\x83\xd2\x27\x53\xf6\x95\xe7\xf3\x64\ +\xda\x2a\xbf\x12\xb8\x2f\xba\x8f\xbe\xfd\xc6\xf5\xe3\x72\x38\xdc\ +\x2e\x37\xd7\x77\xf4\x88\x6e\x9a\xa7\x6d\xdb\x8e\x1d\x3b\x76\xfc\ +\x29\x63\x7f\xd7\xb9\x63\xc7\x8e\xe7\x63\xf6\x8c\x05\xae\x7f\x7e\ +\x9b\xa3\x6a\x8e\x81\x4f\x7d\x6e\x4e\x71\xc9\x73\x5e\xf9\xe4\xe3\ +\xf1\xfa\x7a\x79\x78\x73\xb3\x1c\xae\x6f\xad\x84\xf1\x56\x87\xa5\ +\xd4\xe1\x0b\xb6\x77\x0a\x58\xa2\x8f\xe1\xf9\x98\x0f\xd2\xf1\x98\ +\x6e\x3e\x66\x12\x4b\xc8\x41\x3e\x6c\xe4\x84\x6e\x44\x96\x13\xcc\ +\x97\x2e\x3f\x68\x60\x8d\x30\x11\x17\xdf\x41\x82\x32\x8b\x74\xc8\ +\xf1\x61\x8d\xd4\xf4\x79\x75\x5d\xd8\x52\xff\x37\x01\x48\x05\x86\ +\x0d\x64\x28\x93\x2c\x28\x3b\xc9\xfa\x71\x91\xde\xfc\xd8\xc8\xb8\ +\x66\x8c\x3c\x9a\xe1\x87\x4b\xc0\x8d\x26\x99\xe0\xca\x80\x52\x0b\ +\x49\x2d\xb6\xbb\x24\x75\x39\xab\x02\x2a\x32\x84\x26\x28\x25\x13\ +\xab\x1c\x10\x6a\x15\xe6\xe7\x9e\xa9\xf1\xaa\xab\xf6\x09\xcc\xd6\ +\xf2\x7c\xbc\x6c\x55\xed\xdd\x4f\x85\x36\xd7\xa7\x9c\xf5\xa5\xe0\ +\x07\xff\xa2\x95\x4b\x3c\x3b\x6f\x66\xe7\x57\x05\x78\x35\xc1\xec\ +\x99\x5c\xdc\x20\x8d\xde\xaf\xe8\x5c\x77\x8a\xaa\x1a\x80\x3f\x72\ +\xa7\xb7\xf7\x92\xfd\xe1\xda\x9a\xe1\xf3\xf5\x35\x26\x6b\x28\x02\ +\xbf\x46\xa3\x92\x99\xf5\x4f\xd5\x42\xb7\xce\x9e\x41\x05\xdb\x87\ +\x1f\x80\xe6\x69\x7b\xcc\x1a\x39\x4c\x84\xd1\x81\x0c\x29\xd8\xab\ +\x84\x15\xa8\xdf\xec\x40\x80\x35\xd1\xf0\xae\xc0\xd6\xca\x1c\xeb\ +\x34\x17\x41\x4d\x39\x4e\xe1\x4b\xe4\xbd\x41\x94\x5a\x85\x7c\x2e\ +\x15\x4e\xdc\xdb\xd5\x29\x6e\x3c\xff\x44\xa5\xde\xa6\xc4\x3c\x94\ +\x1d\xdc\x3e\x60\x64\x6c\x59\x1e\x50\xef\x70\xb3\x5c\xdd\xdc\x31\ +\x26\x34\x6b\xc7\xc7\x04\xcf\xa5\x38\xa1\x5e\xdd\xbd\x5b\x0e\x37\ +\xd7\xf6\x98\x85\xdf\x52\x33\x92\xcf\x5b\x11\x24\xfa\xa3\x02\x0f\ +\x47\xb6\x2a\x00\xf7\xd7\x5a\x47\x58\x2a\x4f\x0c\x15\xe4\x42\x33\ +\xa9\x2f\x90\xa7\x06\x63\x51\x89\x03\x92\xf7\x79\xfb\x55\xc5\xd5\ +\xd9\x93\xdb\x28\x53\x0c\x4e\x60\xc6\xcd\x80\x09\xd5\x1c\xe3\x12\ +\xaa\x5f\x95\xa3\x8e\x30\x92\x3c\xa7\xf7\x35\xd4\x95\x64\x4e\x49\ +\x9e\xd5\x41\xce\x7a\x0b\xfc\x9e\x03\xfd\xea\x19\x35\xc4\xd3\x9c\ +\x35\x79\x36\x94\xbb\xb5\xc6\x15\x52\xbf\x5e\x60\xd3\x9f\xbb\xa0\ +\x52\x63\x75\xfe\x9f\x02\xb4\xb3\x55\xf7\x38\xad\xf8\x23\xc5\xb3\ +\x36\x6c\x63\x3f\xcf\x68\x9b\x67\xfd\x27\xe4\x8f\x4f\xbe\x8e\x06\ +\x63\x65\x54\xa9\xab\xf8\xac\x6d\x59\xe3\x58\x39\xce\x5b\x5e\xfb\ +\x2a\x56\x6c\x21\x6a\x2c\xed\x31\x81\x17\xed\x70\x65\x4c\x13\x1b\ +\xaa\x7a\x2e\x1d\xaf\xb4\xb2\x07\x73\x27\x36\x8d\xdf\x37\xd6\x95\ +\x92\x19\x8e\x25\xdf\x2b\x16\x79\x8b\x86\x55\x4b\x19\x06\x37\x00\ +\xad\x35\xde\xbb\xa0\x50\x1b\x11\xcf\x4c\x23\x8c\x9c\xf2\x13\x74\ +\x3a\x38\x6a\x09\x77\x1a\xd5\x6f\xaf\x30\xee\xd5\x84\xd1\xba\x93\ +\xe9\x1e\x4c\x2f\x5e\xdb\xf0\x4d\xb5\xfb\xfb\xab\xe5\xe6\xe6\x76\ +\xb9\x3d\xbc\x22\xe7\x98\xcf\xb3\x63\xc7\x8e\x1d\x3b\x1c\xfb\x37\ +\xd4\x76\xec\xd8\xf1\x3c\x1c\x7b\xd6\x1a\x9f\xeb\x36\x9e\xf3\xa6\ +\x80\xf6\x54\xed\x5a\x0f\xda\x49\x7d\x51\xfd\x58\x84\x7c\xe8\xbe\ +\x5d\xee\x1f\xf0\x01\xde\x61\xa5\x17\xe8\x77\x24\x1e\xa0\x91\xeb\ +\x8f\xaf\xe1\x45\x6f\x3e\x78\x0f\x17\xb8\x23\x4a\x1f\xf1\xc0\xf7\ +\x5a\xe1\x00\x1c\x07\xce\x20\x9d\xe6\x19\x21\x56\xbb\xae\x9f\x1f\ +\xeb\xb2\x6e\xe0\xe0\xd6\x5d\x9d\x6b\xe9\xd0\x14\xb9\xab\xfb\xa4\ +\x0e\xfc\xad\xb8\xb0\x09\x73\x72\x4d\x39\xfa\x3f\x01\x16\x1b\xf7\ +\x29\xfe\x59\x46\x84\xf1\xcc\x3f\xcb\x77\x8c\x11\xc1\xf7\x70\x7d\ +\x23\x36\x2a\x46\xb0\x52\x7d\xf3\x18\xa5\x67\x79\x8d\xe3\x2c\x6e\ +\x1a\x46\x6d\x8b\xcc\xa1\x78\xe6\x8d\x09\xf2\x63\xe4\xfb\xc6\x51\ +\xb3\x89\xd9\xca\xd7\x38\x4f\xf5\xe9\xf1\x63\x5d\xd7\x31\x5c\xba\ +\xe6\x73\xf5\x2f\xb9\x2f\x2e\xae\x15\xd7\x33\x5b\x3d\xf7\xa2\x50\ +\xfd\xc8\x11\x98\xd5\xdf\x9c\x53\xef\xee\x2b\x36\xc4\xfa\x86\x7a\ +\x87\x2d\x6d\x8c\x15\xe4\xb8\xd4\x76\xf7\x70\x6b\xbd\x51\xd3\x4b\ +\x0c\x21\x86\x95\x6d\x30\x73\xf8\x2c\x27\x2b\x8c\x7b\x05\xff\xa6\ +\x75\x0d\x59\x7a\x02\xae\x31\x82\xfc\xff\xa9\x50\xa5\x13\xa3\x6a\ +\xab\xed\xbf\x95\x6c\x59\xa9\x09\x7d\xd7\x3c\xc8\x35\x99\x09\x77\ +\xdc\x0e\xba\x11\x73\xa0\x0e\x88\x70\x63\x46\x77\x45\x0e\xdb\x98\ +\xda\x00\x27\xa3\x61\x03\xb4\xa1\xc6\xa0\x10\x23\xee\x70\x04\xc3\ +\x79\x9d\xa3\x7f\xb0\x48\xd8\x3c\x3f\xed\xf5\xfb\x70\x8b\x9f\xac\ +\xf6\xb7\x36\x0a\xed\xf8\x98\x28\xc7\x3f\x4e\x9e\xc7\xe5\xce\x9e\ +\xa7\x1e\x6c\xbc\xb6\x66\x9c\x05\xe3\x08\xd3\x6e\xe7\x52\xc0\x82\ +\x7e\x0e\xd4\x80\x8e\x7a\x37\x43\xab\xf3\x5c\x44\x21\xff\x2c\x71\ +\xbc\x4e\x15\xb6\x5e\xd7\x1a\x5d\x8c\x19\x89\x66\xbd\x53\x6e\x37\ +\x27\x5b\x30\x8e\xd1\x3f\x86\x71\x3f\x19\x9c\x52\x1f\x13\xe4\x7e\ +\x37\x44\x8e\x52\xf3\xcf\xb5\x02\x39\xb1\xb8\x12\x13\x40\x8d\x74\ +\x70\x99\x3e\xcb\x2b\xf0\x68\xaf\x19\xee\x08\x9d\x27\x65\x3b\xe2\ +\x0d\xb3\x97\x06\xc7\x66\xc0\xb0\x3d\x57\x83\xf2\xd7\x51\x32\xe5\ +\x46\x08\x65\x3f\x1b\x62\xf3\xaa\x6b\x44\xe6\xf6\x86\x3c\x09\x2f\ +\x5b\xed\x47\x84\x73\x77\xeb\x88\x63\x3b\x04\xb1\xd5\x4d\xe7\x69\ +\xe8\x8f\x7c\x5f\x53\xde\x53\x66\x6a\x39\x5b\x3b\xc0\xf9\x63\xbb\ +\xc7\x6b\x8c\x0a\x63\x37\x17\x54\x03\x1b\x3a\xd1\x83\x94\x9d\x4d\ +\xe5\x34\xae\x5c\x58\x45\x14\x66\xdb\xed\x35\x86\x35\x4a\xe0\x43\ +\xc3\x98\xd8\xee\xcd\x2b\xe9\x31\x50\x8c\x2e\xb2\x37\x93\x7d\x23\ +\xb6\xc2\x9a\xdb\x2d\xd7\x12\x43\x82\xee\x5d\xbe\xec\xa6\x1b\x64\ +\x3d\x01\x7b\x25\x00\x9c\x1c\xef\x99\x15\x52\x6c\x14\x58\x83\x32\ +\x5b\x65\xbd\x0e\xcc\xd4\xfb\x6a\xcd\xf4\xf8\x60\x9a\xc3\xed\x72\ +\x7d\xed\x7f\xf2\x71\xc7\x8e\x1d\x3b\x76\x9c\xc6\xfe\x0d\xb5\x1d\ +\x3b\x76\x3c\x0f\x67\x3e\xcf\x25\xea\x53\xda\xec\x89\x2d\x9f\xec\ +\x62\x9c\x01\x73\x1e\xcb\x2d\x98\x97\x6b\xde\xe3\xe1\xb0\x3c\xd8\ +\x03\xe4\xfb\xfb\xfb\xe5\x70\x7d\x13\xa5\x11\x87\x85\x07\x50\xa8\ +\x7c\x23\xbd\x8f\x58\x79\xc3\x0d\x11\x62\xfe\xe1\x0c\x5d\xf7\xdd\ +\x73\x47\xa6\x35\xbe\xb7\x26\x07\x22\xec\xbc\x1b\xd7\xba\x65\xac\ +\x76\x40\xef\xd1\xf3\xa3\xee\x98\x18\x3c\xd7\x8d\x96\x03\xd6\x18\ +\xc4\x29\x0c\x1f\x26\x24\xba\x7a\x05\x85\x48\x93\x8b\xf3\x0f\x4c\ +\x7d\x31\xdb\x58\xaf\x0c\xf3\xe7\xde\x63\xd7\x7e\x92\xd4\xc6\x22\ +\xa6\x49\xb9\xe2\x15\xf8\x90\x55\xf2\x88\xc7\x90\x79\x01\x2c\xb7\ +\xb9\xbe\x47\x6b\x4a\x91\x26\x46\x0e\x3e\xf2\x66\x5a\x40\xfc\x18\ +\xf7\xf5\x6d\xe7\x25\xb8\xc6\xf6\x06\x73\x85\x69\xe0\x64\xd5\x9c\ +\xff\xf9\x68\x47\x12\xfd\xa5\x0d\x98\x71\x9f\x12\x6d\xce\xcf\x31\ +\xfb\xcb\xe0\xb2\x95\x4f\xd4\xdd\x29\x53\xe3\x08\xa8\x8d\x79\xeb\ +\x3a\xb3\x75\xcc\x32\x1d\x47\xce\xeb\x84\x65\x52\x34\x28\x4f\x27\ +\xa6\x44\x63\xff\x61\x05\xe6\xae\xab\xb2\x18\xef\x37\x4d\x4d\xd4\ +\x94\x00\x22\xf5\xd6\xb4\x86\x93\xd4\x85\x57\x5f\x3a\x12\x75\xfa\ +\x6a\x03\xa3\x4f\x04\x59\x62\xf8\x8d\x2e\xba\x98\x60\x75\xcf\x95\ +\xde\xae\x50\x9a\xd0\x42\x67\x96\xbd\xf6\xa4\x1c\xa3\x39\xf9\x1a\ +\x15\xbc\xab\x45\xd4\x0d\x08\x41\x0c\x6b\x94\xf8\xb8\x26\x73\xbd\ +\x12\x83\xb4\x84\xf6\xc1\x4f\x53\x74\xb6\xc5\x95\x85\xc6\xb5\x1d\ +\xae\x97\xc3\xed\x2b\xc6\x34\x57\x5d\xe9\x8e\x97\x84\xef\xdf\x36\ +\x1a\xe2\xc4\x7e\xfd\xea\xdd\x72\xc0\x6f\xa7\xf1\xc4\xc2\x37\xd6\ +\x9c\x47\x3f\xc9\x32\x20\xe2\x6d\xf6\x32\xde\x8e\xa4\x59\x93\x38\ +\xc0\xe8\x10\x83\xbb\x21\x3f\x89\x3c\xbb\xa2\xa8\x6a\xcd\xea\x25\ +\x37\x0b\x06\xfa\xfc\x0d\x21\x37\xd4\xb7\x76\x8a\x0c\xa9\x8a\x88\ +\x59\x4e\xbb\x5a\x13\x83\x9c\xc7\x65\x96\x4a\xe8\x95\xbc\x01\x7e\ +\xde\xa5\x79\xfd\x85\xa2\x08\xbb\xe7\xa8\x12\xd6\x8a\x3b\x52\x28\ +\x76\xa5\x57\xd8\x0c\xe6\x8c\x81\xa3\x55\x08\xdd\xff\xa9\x1c\xd3\ +\x01\xde\x00\x1b\x7a\x09\x62\x93\x39\x52\x34\x9b\x7f\x36\x49\xc1\ +\x89\xf0\x9f\x05\x36\x76\xeb\xb3\x71\x6c\xdf\x9e\x1d\x1b\x85\xcd\ +\xe7\x92\xad\x4b\x66\x73\x1b\xce\xd9\xb8\x51\xd3\x5f\x87\xf3\x0a\ +\xc7\x15\x1d\x93\xaf\xab\x01\x73\x87\x2d\x21\xdc\xaa\x73\xeb\x6e\ +\x53\x7a\xd5\xb2\x7b\xe4\xb8\x77\x1a\xa4\x49\xcb\x00\xcb\x32\x1a\ +\x41\xe4\xd2\x68\xd4\x55\x99\x5f\xb4\x30\x8b\x9b\x40\x86\xf8\x16\ +\x6f\xdb\x30\xe6\xe4\x0c\xf3\x44\xa2\x77\xe5\xb5\x7d\xe1\xcf\x50\ +\xb3\xed\x77\x05\x79\x98\x74\x43\x15\x65\x62\x78\x22\x8e\x65\xc7\ +\x06\xad\x24\x5a\x67\xac\x3b\xfa\x20\xed\xb5\xf7\x71\x79\xb8\xbf\ +\x59\x6e\x6f\x5e\x2d\x87\xab\x5b\x27\x77\xec\xd8\xb1\x63\xc7\x49\ +\xec\xdf\x50\xdb\xb1\x63\xc7\xa7\x43\x3c\xb8\xad\x00\x5e\xed\x1c\ +\x48\x57\xf5\x4f\x79\x3a\xb5\xfc\xc3\xe1\x7a\x79\xc4\x4f\x63\xd9\ +\x78\x7d\x8d\x3f\x51\x64\x60\x2d\x3c\x90\x62\x02\x7b\xf8\x84\x1f\ +\x1c\x1f\xcf\xf9\xb5\xbe\x7d\xe6\xfb\x80\x78\x33\xee\xbd\x23\xdf\ +\x2c\x00\xcc\x37\x98\x16\x53\x78\x48\x46\x04\x9d\xb4\x51\x46\x01\ +\xe3\xf6\x50\x8f\x18\xbf\xb2\x48\x07\x2c\xa5\x03\xb4\xcc\x2d\x2d\ +\x90\x3c\x30\x26\x1a\x5f\x7f\xb2\x4d\x61\x51\x2d\x62\x80\x36\x4d\ +\x38\xed\x63\x9f\x12\x68\x28\x76\x0b\xc3\xf2\x1e\xa8\xf2\x44\x25\ +\x29\x77\x62\xad\x15\xe3\x23\x0f\x4d\x6e\x40\x8c\x86\x4e\x65\xdd\ +\xb1\xb7\x88\x42\xa6\x87\xb4\x94\xeb\x50\xf9\xd3\x55\x37\x70\x22\ +\x71\x5c\x8b\xb0\xb5\x26\x62\xa2\x1d\xdb\x29\x34\xed\x89\xe3\x75\ +\x06\x9e\x9a\xf7\x52\x68\xf3\x7f\xee\x95\x7c\x4a\x8c\x27\x96\xf9\ +\xd3\xcd\x2f\xe4\x2c\x3e\x70\x59\x35\x0c\x84\xc7\x99\x1a\x3c\xd2\ +\x95\x08\x71\xe6\x30\xd8\x57\x48\xfd\x30\xf7\x0c\x9d\x96\x8e\x75\ +\xfe\x15\x55\xb5\x86\x10\xf4\x53\x39\x10\x1a\x40\xd9\x16\xaf\x5a\ +\x8c\xbb\xa8\xfb\x20\xf7\x4c\x8c\x5a\xdd\xab\x63\x08\xc4\x15\x68\ +\x41\xbf\x15\xb6\x88\x00\xde\x73\xb1\x86\x88\x8b\x0b\x70\x75\x8f\ +\xfe\xda\x42\x3d\x59\x07\xed\x2c\x12\x76\x55\xa4\xe9\xdb\x28\x88\ +\xe6\xb8\x95\x62\xa8\xa5\xb9\x42\xda\x20\x63\x94\xda\x02\xfe\xdb\ +\x69\xda\x56\xe8\x6d\xcd\xf6\x1a\x7e\xc5\xff\xfb\x23\xc8\x1d\x1f\ +\x19\x93\xfd\x6c\x07\xee\x70\x75\x67\x4f\x47\x37\x66\xdf\x0c\x67\ +\x42\x01\x0f\x27\xbb\xf2\xbd\x8b\x0d\x75\x47\xeb\x0a\x72\x3c\xe5\ +\x48\x6f\xad\x09\x3c\x63\xd6\xe5\xeb\x7f\x0c\xbe\x52\x03\x63\x0d\ +\xb3\x6f\x00\x4e\xa8\x0e\xdd\x9a\x87\x0d\xe8\xb7\x6e\x02\xe8\x29\ +\x89\xe7\xaa\x21\xbf\xc1\x02\xbc\xce\xc3\xee\xe0\x7c\x96\x9a\xd5\ +\x98\x70\xd0\xae\xe9\x7e\x8e\x9c\x52\x88\x84\xd9\x14\x89\xc8\xc9\ +\xd4\x14\x1f\xcd\xea\x80\xdc\x71\xea\x53\x58\xcf\x57\x40\xae\x55\ +\x3c\x7f\x49\x97\xae\x22\x70\xfe\xa6\x5e\x22\xfd\xe3\xc1\xc7\xda\ +\x28\xab\xdb\x3d\xf3\x8f\x18\xe7\xdd\x58\xc7\x39\xcb\x3b\x47\xd3\ +\x61\x96\x70\x71\x91\x4b\x30\x2f\x4e\x36\x43\x27\x16\x30\x09\x83\ +\xaa\xe9\x6b\x49\x61\xaa\x30\x50\xad\xb9\xad\x83\xd7\x18\x41\xaf\ +\xff\x18\x61\x52\x69\xc6\x39\x87\x3b\xed\x4a\x5a\xa2\x5c\x8e\x9a\ +\x60\x80\xcf\xd3\xd6\x05\x95\x2b\xa5\x9f\xad\x20\x14\x65\x8e\x0e\ +\x46\x36\x7e\xaa\x30\xcc\xf8\x2d\xad\x03\xd1\xb5\x22\x18\x5b\x0b\ +\x56\xea\xaf\x63\xf1\x4c\x75\x78\xe5\xff\x87\x1a\x63\x0c\xec\xd8\ +\xb1\x63\xc7\x8e\x23\xd8\xbf\xa1\xb6\x63\xc7\x8e\x4f\x87\xe3\xcf\ +\x7d\x4f\x87\xea\x1e\xad\x8f\xa0\x37\x7f\x44\xe4\xd3\x22\xbf\x91\ +\xb6\xbc\x7b\xc3\x11\xd1\x87\xee\x13\x92\x7a\x8b\xc4\x43\xb3\xe7\ +\x73\x9a\x90\xa9\x6a\x76\x78\x20\x4d\x7f\x02\x48\x6c\xe8\xa6\x21\ +\x17\x01\x34\x0d\x61\xd3\x28\xb1\xf4\x89\x6a\x1b\xe0\x5a\x1b\x7e\ +\xc0\xb6\x48\x20\x08\xb3\x00\xcb\x21\x8d\x2e\xe2\xe9\xb3\x6b\xdf\ +\x18\xe3\x7b\x8c\x74\xac\x71\x5b\xb4\x7f\x46\x84\x40\xfb\x85\x98\ +\x29\xeb\x0e\x11\xa0\x2a\xca\x34\x7d\x2d\x72\x55\x0d\x47\xd6\xdf\ +\x00\x20\x6e\xad\x88\x18\xc1\x4e\xc9\x0d\x6d\xf9\xe4\x7c\x89\xb6\ +\xdf\x92\x35\xb8\x5d\x99\x29\x06\xc1\x49\x3d\x30\xdb\x5c\x72\xeb\ +\x40\xab\x37\x4b\x72\x28\x72\xd6\xdc\x17\x00\xf5\x8e\x35\x47\xb3\ +\xfe\x58\xf1\xb9\xb6\xe0\xe5\xe7\xbd\xb4\xe2\xa8\x0f\x7f\x3c\xd5\ +\x56\xa7\x1e\x88\x96\xbb\x51\x65\x05\xe7\xc7\x62\xa3\xda\xe2\x41\ +\xb5\x0f\x68\xdd\x60\x3f\xa6\x17\x5f\x95\x6a\xc5\xb4\x8b\xc1\xfb\ +\x84\x7f\x91\x56\xc8\x4b\xa9\x60\x63\xdd\x72\xa5\xd8\x44\x91\xb7\ +\x58\xbc\xce\x04\xd1\xd7\x5d\x23\xf3\xba\xe2\xa6\xef\xfc\xde\xd5\ +\xdd\x0e\xb7\xac\x96\x4f\xc6\x4d\xf6\x06\x18\x6c\xb6\xf6\x88\x73\ +\x34\xae\xd3\x10\xb6\xee\xf1\x1e\x88\x2f\x50\xf8\x85\x23\x1d\x90\ +\x4e\x53\xb6\x6c\x4c\xa5\x8f\xce\x03\x2d\x1c\x96\x0d\xd4\xa8\xc5\ +\x0b\x17\x4d\xb3\xaf\xf4\x42\x66\x03\x2c\xff\x21\x12\xac\xdf\x39\ +\x00\x36\x8e\xd0\xe1\xe6\x6e\xb9\xba\x9d\xfd\x64\x75\x08\x77\x7c\ +\x3c\xf8\xe9\x44\xdc\xd8\x71\xb8\xbe\xb6\xe3\xf0\x78\x30\xda\x7f\ +\x43\x8d\xe7\x87\x8e\x57\xf4\x3e\xda\x91\xc3\x71\x76\x13\x1e\x59\ +\x0d\x04\xed\x81\x8f\x13\x2e\xcf\x3b\xc3\x96\x7d\x1a\x50\x5b\x8b\ +\xda\xcc\xe5\x79\x17\xeb\x86\x65\xae\xdb\x62\xfa\xeb\x5b\x48\xfd\ +\x30\x56\x80\x53\x5b\x03\x05\x87\xa2\x40\xa1\x78\xee\x1b\xb0\x3a\ +\xec\x39\xdf\x7b\xd6\x8a\x66\x5e\x5b\x28\xc2\x80\x98\xad\xbc\x98\ +\x21\x7b\x2a\x69\x6a\xfe\x80\x99\xc5\x5b\x63\x16\x0c\x0e\x43\x1e\ +\x7f\x62\xb6\x9a\x36\x5b\x9d\x39\x8e\x86\xa3\x91\x75\x18\x30\x67\ +\x01\x46\xb2\x9c\x1b\xfd\x4a\xe0\xf5\xcc\x79\x38\x92\x73\x66\xb9\ +\xed\x55\xff\x11\xe3\xc7\xba\x51\x65\x5d\xdb\x87\x67\x6b\xf1\x9e\ +\xd1\xa2\xb0\x2e\x3c\x67\xf0\x3a\x17\x66\x22\x88\x8e\x37\x67\xad\ +\x5b\x31\x27\xa1\x8c\x55\x6a\x57\x3f\xb6\x21\x09\x18\x2d\x2a\xab\ +\x31\xbd\xed\xb0\xab\xdc\xc8\xe4\x69\xc8\xeb\xef\x00\x04\x17\xe4\ +\x6c\x27\x35\xf8\x6a\xac\xa7\x61\x81\x12\x03\xb8\x07\xd7\x74\x47\ +\xb8\x09\xa5\x15\x11\x6f\x63\xd6\x4e\x2e\xd6\xb6\x3a\x2e\x45\x63\ +\xb6\x9b\xd6\xfb\x57\x83\x9c\x8e\xac\xb9\xc0\xf6\x31\x2f\x95\x1b\ +\x56\x62\xc0\xc8\xcc\xf1\xd6\x30\xf7\xf4\x4a\xf7\x80\xdf\x2a\x5f\ +\xec\x39\xea\xca\x3f\xfb\xe8\xcb\x4f\x27\xdb\xb1\x63\xc7\x8e\x3f\ +\x7b\xec\xdf\x50\xdb\xb1\x63\xc7\xa7\xc5\xc7\x78\x26\xeb\x9f\x11\ +\x3b\xe8\xcd\x41\x9d\x36\x6d\x33\xf0\xf8\x7a\x7b\xf3\x7a\xf9\xf0\ +\xb0\x2c\xef\xad\x4e\xea\x31\xc2\xa7\x83\xae\x8c\x42\x06\xad\x95\ +\xc1\x3f\xe8\x80\x1f\xc4\x0a\xc1\x47\x5b\x49\xb4\x08\x03\xad\x95\ +\x00\x40\x22\x16\x58\x36\x3e\xc4\xc9\xc0\xb7\x46\x5f\x35\x90\x16\ +\x63\x43\x3c\xc4\x77\x5c\xdb\xad\xa0\xf3\x31\x7f\xc8\xa3\x48\x5c\ +\x8d\x15\x39\x72\xdd\xb5\x31\x35\x45\x6c\x26\xbd\x4a\x89\x23\x90\ +\xe7\x35\x5a\xbe\xed\xe5\xa2\xaf\xfb\xc1\x69\xf5\x75\x81\x4d\x53\ +\x51\x4a\x5a\x99\xa6\xd1\x9b\x8c\x79\xd6\x1a\x53\x1d\x48\x05\x38\ +\x16\x55\xe5\x3b\xcd\x36\xb4\x27\x67\x40\x64\x96\xbe\x9d\xb1\x03\ +\xe8\xf7\xcf\xd3\xf7\x16\x32\x3f\xd6\xbe\xfe\x78\xc7\x70\xe3\x84\ +\x1b\x26\xa4\xdb\x5d\x70\x80\xe5\x9e\x38\x5f\x2b\x90\x3d\xf9\xb8\ +\x24\x4a\x74\x1f\x89\x92\xe4\x25\xcd\x7b\x9c\x53\x80\xcc\xad\x2a\ +\x8a\x74\xb5\x84\x2c\x35\x5b\x05\x00\x36\x32\x29\xe8\x6b\xfa\x4f\ +\x41\x4c\x2b\x53\xa2\x9a\x18\xbb\x0f\x67\x98\xe3\x77\x13\x66\x93\ +\xcf\x20\xef\x69\xd3\xaa\x4d\x42\x0c\x69\x2b\xdb\xef\x99\xec\x0c\ +\x7e\x7f\xf4\xba\x71\xff\xb4\x7d\xd9\xb6\x1c\x63\x68\x83\xd2\xda\ +\xf4\xcd\xb6\x28\x98\x28\x66\x81\x6b\xbb\x58\xe6\x05\xab\x60\x11\ +\x15\xb3\x01\x0b\xa8\x01\xd8\xe9\x9b\xc1\xba\x4e\xac\x5f\x0f\xec\ +\x0d\xcd\xcd\xab\xe5\x0a\xff\x87\x5a\xe1\x1a\x7c\x4f\x5c\x84\x27\ +\xa4\xfc\xb9\xc2\x77\x95\xf7\x38\x0e\x0f\x0f\x38\x56\xc6\xe0\x24\ +\xe4\x41\x2a\x3b\x73\x7a\x7c\x0c\x71\x4c\xcf\xc2\x19\x42\x9d\xeb\ +\x6d\x66\xf3\xcb\x32\xf2\xa5\xde\x46\x2a\xe9\x3b\xa9\x50\xf2\x68\ +\x74\x54\x53\x0a\xa0\xd9\x1e\x05\x6a\x1c\x18\xfd\xaa\xad\x58\xeb\ +\x46\xf8\x76\xf9\xbe\xc2\x3a\xda\x55\x5d\xfb\x39\xfa\x75\xb7\xfd\ +\xdd\x6e\xed\x30\x5a\x93\xc5\x2c\x18\x09\x67\xc1\xf7\x35\xb7\xd1\ +\xa5\x03\x49\x98\x11\xf6\x4a\x53\x18\x59\xdd\x6c\x43\x02\x8e\x69\ +\xf7\xc3\x6a\x06\x77\xcf\x5b\x23\x40\x25\xea\x96\xda\x32\x39\x0e\ +\x73\x9e\x8f\x27\x27\x12\xcf\xcb\xfe\x13\xc6\x39\x3b\xe6\x92\x9d\ +\x37\xd1\x82\xea\xe9\xf0\x4e\xd4\xed\xcf\x3a\x13\x9f\xd0\x9f\x8b\ +\xd5\xa3\xd8\x80\x0c\x0f\x3a\xb8\xf5\x35\xd3\x31\x2b\x66\xd7\xfe\ +\x8c\xf6\x0a\x69\x55\xa4\x2f\xc3\x46\x9a\x1a\x13\xbd\x27\x01\xef\ +\x62\xe3\x6b\x45\x01\x43\x2e\x75\x84\xd1\x9e\x1c\x27\x79\xe3\x46\ +\xd4\x7c\xc0\x9c\xcc\x36\x6d\x8d\xad\xb6\x7f\xbe\x2c\xc3\x28\x04\ +\x5c\xdc\xa7\x98\x6e\x26\x9d\x40\xb2\x5e\x5e\x6a\x22\x10\xc1\x75\ +\xc9\x3a\x6b\xbf\x4d\x04\x09\xec\xb5\x88\x48\x6e\x27\xd5\xfd\xc3\ +\xb2\xbc\xba\xfd\xda\xb3\xfa\xc5\x1b\x56\xc4\x8e\x1d\x3b\x76\xec\ +\x30\xec\xdf\x50\xdb\xb1\x63\xc7\xcb\x03\xcf\x5d\x6a\x2f\x85\xf5\ +\x53\x63\xc3\xb1\xd8\x89\x35\xe0\xef\x86\xdf\x7c\xf1\xce\x8c\xf8\ +\x0f\xf4\x13\xf6\x48\x89\x3b\xe4\xf0\x90\x9d\x0e\x3e\x74\xac\xef\ +\x6a\xf8\xc1\x91\x71\xa0\x82\x2e\xe6\x80\xb1\xa6\x79\xf8\x8a\xe6\ +\x5c\x74\xf2\x65\x57\xca\x2c\xea\x23\x3f\x23\x2a\x62\x03\x97\x88\ +\x31\x7c\xa2\xc4\xd1\xb2\x06\x10\x5c\xb6\x0a\x69\x02\xfc\x20\xc7\ +\x38\xfe\xcb\x90\x19\x63\x5e\xc0\xe9\x08\x62\x5f\x61\x60\xdf\x30\ +\xf3\xc9\xc5\xae\x05\x30\x97\x78\xaf\xe2\x3d\x20\x0d\x30\xb5\xc3\ +\xe0\x07\x2f\xcd\xe5\x38\x6a\x62\x89\xe7\xa3\xea\x65\x97\xf9\x1c\ +\x39\x4b\xc3\x48\x6d\x4d\xac\x73\x6c\x03\x88\x4c\xaa\x9f\xc6\x76\ +\xc9\x33\xf0\xa4\x19\x7f\x34\x68\xab\x87\xf5\xc7\xbd\x2d\x58\xff\ +\x39\x5b\x70\xe9\x56\x56\xfd\x39\xa7\x4a\x57\x3f\x1c\xe4\xf1\x7e\ +\x41\xab\x29\x60\xb9\xa7\xca\x93\x19\x8c\x6a\xec\x24\x4e\xce\x2b\ +\xb5\x7b\xb8\x27\xb5\x99\xaa\xed\xab\x90\xd2\x81\x7d\x07\x66\xcc\ +\x70\x55\x6a\x69\xf8\x5c\xc7\x61\xf5\x22\x29\x3f\xb8\xe8\x90\x15\ +\x69\xcd\xab\x15\xb6\x0a\xd2\xae\xf7\xdd\x01\xc6\x33\x84\x11\x06\ +\x16\x43\xce\x57\xa3\xcd\x80\xad\x9e\x03\x5b\xf8\x82\x6e\xb8\x84\ +\xdb\x74\xc9\x47\x40\xb6\xdc\x68\x89\xce\xd1\xd6\x17\x92\x09\x55\ +\x14\xe7\x32\x79\x0f\x65\x3b\x80\x0c\x9b\x86\xd5\xb3\x17\xeb\xeb\ +\xbb\xbb\x65\xb9\x7e\xb5\xfa\x40\xdd\xe1\x39\x17\xe1\x09\x29\x3b\ +\x96\xe5\xc6\x8e\xc1\x15\xfe\x0f\x96\x07\x9c\x9f\x71\x4d\xe2\x60\ +\x19\x62\x58\x61\x7a\xc8\x12\x4a\xb2\x51\xc2\x63\x09\x19\x93\x61\ +\x6b\x08\xb3\x3e\xb2\x35\x13\x56\xd1\x86\xd5\x89\x05\x5c\x47\x29\ +\x28\x50\x7d\x1f\x88\x3e\x7d\xa8\x35\x29\x9d\x40\x6c\x8c\x5b\x61\ +\x51\x2d\xe4\xf7\x18\x5c\x29\xb8\xaa\x6b\x4a\x6f\xb7\xe4\xca\xd7\ +\x67\x09\xf2\x3c\x38\xd0\x82\x8f\x9c\x2e\xa1\x07\xef\x24\xaa\x51\ +\x75\xa0\x65\x14\x68\xb6\x9e\x75\xcc\x38\x80\x7c\x04\x99\x6f\x76\ +\xd5\xaa\x26\xd0\x36\xa7\xb1\x7e\xbe\xa1\x43\xab\xea\x5a\xa7\xe7\ +\x13\x93\xe3\xbf\xa1\x74\xac\xe5\x8e\xe4\x8f\x64\x43\x93\xba\x75\ +\xa1\xad\xd2\x7f\xf4\xf8\x5c\x1b\x16\xf3\x4e\x8f\x08\xc8\x61\x5d\ +\xd4\x75\x2f\x2c\x61\x4f\xb4\x0e\x27\x67\xa1\x16\x89\xe8\x4c\x34\ +\x45\x9d\x5f\xf9\x67\x27\x4f\x95\xe2\x32\x76\xb2\x9c\xad\xa1\x6a\ +\xea\x0d\x3d\xcc\xbe\x44\x5d\x73\xc4\x6a\xca\x98\x1e\xe5\xfd\x9e\ +\xa5\xe7\xc5\x1e\x60\x90\xd7\x52\xe1\x6c\xcf\x93\xba\x96\x30\x05\ +\xc2\xeb\xd9\x0a\x98\xdf\x2b\xba\x5b\x84\xd9\x74\xd1\x05\xaf\xed\ +\xeb\xef\xce\xad\x8a\xb6\xcf\xa3\x4d\xd3\x66\xa9\xf3\x95\x1a\x46\ +\xf7\x15\x01\xbc\xde\x56\xfd\x4c\xd3\x73\xfd\x1e\x3e\x2c\x1f\x96\ +\xfb\xe5\xeb\xb7\x3f\x31\x7b\xb6\xe7\x77\xec\xd8\xb1\x63\xc7\x0c\ +\xfb\x37\xd4\x76\xec\xd8\xf1\xf1\x30\x7b\x9a\x03\xf0\xa4\x76\xe9\ +\xd3\xda\x31\xfd\x33\x9e\xfc\xf0\xa7\x0d\x1e\x6f\x5e\x2f\x8f\xd7\ +\x37\xcb\xe3\x83\x15\x8a\xff\x9b\xc5\x8b\xea\x31\xf8\x90\x56\x0f\ +\x68\xbc\x21\xca\xff\x57\xcd\x0c\x2a\xdb\x93\x74\xd8\xa8\x4b\xc6\ +\x4c\xcb\x81\xe3\x5f\x4e\xd5\x9e\xc3\x10\x0c\xae\x86\x5a\x3d\x75\ +\xa8\xab\x18\x7b\x04\x82\x70\x53\xc8\x39\xac\x61\x0b\x1c\x6d\x2b\ +\x07\x79\x4f\x98\xad\xdf\x10\xc0\x9c\x2d\x5f\xb2\xb6\x4e\xa2\x8c\ +\x30\xb5\xee\x31\x4c\x14\xe7\xb1\xbe\x39\x18\x72\x1c\xbe\xdf\x67\ +\x00\x5f\xd7\x35\x66\xd2\x93\x20\x42\xa9\x1f\xf8\xe3\x68\xb3\x48\ +\x4e\x06\x4e\x0b\x95\x52\x85\x04\x3a\x37\x9c\x41\x72\x0e\xba\xb9\ +\x27\x38\x6b\x53\x2e\xc6\xc7\xa9\xfa\xa9\xf0\x92\xab\x7f\x4a\xad\ +\x97\xdf\x7b\x4f\x38\x71\x66\xa8\x65\xba\x92\x76\xbd\xcd\x3e\x64\ +\x86\x28\x74\xc7\xb6\xa9\xc6\x4e\x6d\xfb\x18\x6f\xb7\x02\x8b\x0c\ +\xc1\xe6\xd6\xfb\xc1\x5a\xd7\x7c\x2f\x06\xd7\x29\xf4\xfe\xed\xbe\ +\x06\xdd\xdf\x1a\xc7\x2c\xba\xb9\x98\x0d\x28\x13\x15\xbd\x6d\xa1\ +\xdd\x87\x07\x04\xd5\x85\x27\x32\xad\xa9\xde\xee\x13\xbc\x47\x07\ +\x59\x63\xd2\x87\xad\x26\xaa\x72\x22\xb3\xbe\x1d\x88\xac\x69\x93\ +\x93\x4a\xde\xb7\x53\xb5\x7d\x6d\x0c\x66\x9b\x9e\x3e\x06\xbe\x24\ +\x86\xed\x39\x5e\x0b\x68\xdb\x60\xa3\x7f\x99\x69\xb5\xf8\x01\xa7\ +\xaf\xe7\xea\xfa\x7a\x79\x3c\xdc\xd9\x4b\x35\x7e\x30\x06\x68\xf9\ +\x3b\x3e\x15\xfc\x38\xe1\x1b\x9e\x87\xeb\xb7\x7e\x08\xf2\xf8\x17\ +\xc4\x31\x4c\x0c\x61\x82\x87\x4f\x01\x16\x72\x93\x38\x76\x45\x55\ +\xcc\x0a\x03\xfd\x33\x4b\x85\x9f\x9f\x88\x6e\x69\xa2\xe6\x18\xec\ +\xa6\xf2\x20\xef\x59\xc6\x77\x52\xe9\x86\xfc\x96\xde\x15\x22\xc0\ +\xf8\xf3\x5c\x43\x7a\x34\xac\x58\x25\x8a\x4d\xd3\x72\xfb\x70\xd5\ +\xbb\xa9\xe5\xf0\x5a\xea\xc3\x05\x4c\x66\x4c\x0d\x28\xd5\x1b\x42\ +\x47\x84\xd1\xfc\x7e\x3d\x89\x89\xed\xeb\xaa\x81\xd5\xae\x6b\x61\ +\xde\x83\x7a\xf4\xda\x31\x7a\x04\x48\xe4\x01\x6c\x40\xb6\x57\x68\ +\xd6\xd9\x98\x5d\x07\x67\xe0\x69\x59\x3b\xce\xc5\x74\xdf\x4e\x48\ +\x52\xd6\x29\x94\x67\xc6\xb4\xc0\x53\x51\x8b\x15\x3b\xcc\x93\x53\ +\x4d\x04\x4e\xa1\xb7\x36\xc4\xf3\x2e\x6a\x3c\xad\x94\x0c\x42\xfa\ +\x0a\x6e\x5c\xbb\x23\x24\xaf\x22\x9a\xeb\x6b\xb4\xc3\x28\xdf\x50\ +\x6b\xff\x2b\x8a\x51\xad\x19\x05\x83\x3f\x86\x41\xa0\x26\xf9\x08\ +\xf6\xcf\x24\xd1\xe9\x3e\x5c\x87\xe1\x3e\x51\xa1\xfd\x3a\x5b\x6f\ +\x05\xe2\xd2\xa2\xc5\x40\xb4\x31\xaa\x30\xa8\xd7\xa7\x51\x65\x56\ +\x33\x4d\xa3\x99\x03\x11\xf3\xc1\x7a\x4d\x8a\x17\xbe\xab\xfb\x65\ +\xf9\xf0\xb8\xbc\x7a\xf5\x4d\xc9\x1a\xf2\x77\xec\xd8\xb1\x63\xc7\ +\x0a\xfb\x37\xd4\x76\xec\xd8\xf1\xf2\xc0\xd3\x9a\x3f\xb1\xad\xb1\ +\xf5\x7c\xb6\xa5\x3f\x17\xa8\x3b\xa9\x7d\xea\x71\x10\xd3\xde\xbe\ +\xfd\x62\xb9\x79\xf3\x96\xdf\x4c\x23\xc7\xc1\xde\x38\xd8\x88\x7c\ +\x77\xad\xb7\xc6\xb7\x13\x57\xf5\x1b\x6c\xd0\x81\x4b\x8f\xfd\x0a\ +\x8a\xa3\x06\x6d\x27\xf2\x03\x46\x27\xdb\x28\x88\xf6\xa1\xe8\x7c\ +\xe0\xff\x77\x03\xbb\x7b\xfa\x77\x50\xca\x78\x68\x3a\x04\xb7\x11\ +\xe6\xba\x6a\x0b\xb4\x0f\x76\x30\x5f\xb1\x2d\x81\x9e\x75\x45\x9e\ +\x98\x71\x3d\x09\x07\x7b\xbb\x6d\x87\x57\x74\x6e\x95\x3f\x10\x74\ +\xd1\x8d\x42\x96\x2b\x75\x69\x9a\x11\x3a\xb8\x75\xa4\x2c\x1d\xc7\ +\x58\x32\x41\xdd\x10\x05\x57\xf3\x87\x5a\xed\x80\xcf\x50\x63\x9e\ +\x38\xa6\x83\x38\xb7\x82\xa3\x31\xc7\xf2\xfe\xdc\xd0\xef\x8b\x3f\ +\x85\x3d\x83\x6d\x78\xde\x76\xe4\xe5\x3c\x60\x7d\x0e\x9a\x50\x24\ +\x73\xac\x8b\xdc\x95\xb6\xa0\x5e\xc5\xdd\x0f\x7b\x83\x2e\x7e\x53\ +\x09\x16\x2c\xe4\x3a\xee\x4c\xc7\x87\xd3\x2d\xb3\x60\x5d\xc3\xe1\ +\xf7\x8a\x1a\x6d\x0b\x13\xeb\x8c\xeb\xb6\xf6\x19\xc1\xd8\x20\xe8\ +\x5c\x9b\x8d\xf7\xcd\x98\xb3\x14\x8b\xbb\x69\x22\x43\x31\x72\xb0\ +\xae\xbe\xf6\x10\xe1\xa2\xf1\xc3\x14\x3a\xbe\x62\xca\x54\xc8\x06\ +\x9a\x18\xc3\xcf\x16\x5b\xe8\xd0\x36\xb2\xe3\xa8\x68\xbf\xa6\xc6\ +\x73\x34\xae\x86\xdb\xb4\x6e\x28\xe6\xb0\xdc\x4a\xa0\x40\x59\x67\ +\x2e\xd4\x1a\xb6\x17\xe1\xc3\x75\x7b\xfb\xf2\xf0\xf8\x60\x3d\x7e\ +\xba\xfa\xe0\xff\x17\xaa\x6a\x69\x41\x4f\xc1\x73\x72\xff\xec\xa0\ +\x1d\x8e\xdd\xf6\xb8\x5c\xdb\x31\xb8\xbd\xfd\x72\x79\xbc\xc7\xb1\ +\xb2\x98\x5e\x50\xcd\x44\x9c\xea\x96\x12\x88\x33\xa3\xf0\xcc\x5a\ +\xe9\xe6\x38\x53\x66\x80\x72\xad\xf6\x15\x5a\x8f\x1b\x53\x9c\x6f\ +\xae\xf2\x3e\xb6\xc0\x80\x78\x98\x02\x7d\xe4\xc6\x08\x18\xc7\x73\ +\xba\x93\x7b\x6c\x9a\x1e\xc0\xd4\xf2\x31\x72\x15\x55\x50\x51\xf8\ +\x9a\x13\x2b\x30\x5b\x96\x3e\x56\x6d\x91\xd6\x1c\xcd\x32\x8c\x0e\ +\xbf\x3a\xb2\x00\x7c\xd4\xad\x12\x4d\x75\x34\xaf\x87\x98\x1a\x69\ +\xdb\xe0\x40\xcc\xd7\x52\xb7\x65\x84\x73\xeb\x4c\xa0\x67\x8f\xe2\ +\xe8\xb3\xda\x85\xb8\x60\x5a\xe1\x05\x67\xff\x13\xc0\xc7\xdf\x1b\ +\xc7\x0e\x11\x62\x35\x3e\xae\x66\xba\xba\x63\x4b\xde\x88\x39\x6d\ +\xbd\x7f\x0d\x08\xa6\xc6\x3a\xd1\x90\x31\xb8\x2b\x94\x78\x33\xdd\ +\xca\xd7\x50\x1b\x5b\x0c\xf7\xee\xf9\x5e\xa8\x7a\x74\x79\xbf\xb0\ +\x7b\x7f\x0b\x21\x77\xcc\xb1\x2e\xee\xb7\x25\x44\xdb\x5f\x3b\xd2\ +\x8d\xde\x2b\x77\xf7\xa3\x62\x12\xe3\xc1\xca\x9c\x40\xbe\xc1\xf3\ +\x51\x6b\xa7\xca\xbf\xd8\xf4\x98\x3b\xde\x83\x1c\xa6\x86\x88\xca\ +\x82\x95\x0b\xc2\x5a\xf0\x59\x89\x7e\xab\xcb\xcf\x05\xc2\x16\x14\ +\xe5\xd8\x05\xa1\xf5\x7f\xb5\x86\xdb\xfe\x0a\x4b\xb9\x72\xec\x35\ +\x0d\x6b\x65\x83\xcf\x85\x47\x90\x43\xe4\x3c\x5e\xdb\xc3\x14\xfe\ +\xe4\xe3\x97\x0a\xec\xd8\xb1\x63\xc7\x8e\x33\xb0\x7f\x43\x6d\xc7\ +\x8e\x1d\x3f\x0e\xd4\xe7\xc2\xa7\xe0\xa2\xe7\xbf\x26\xc6\xb4\x37\ +\xb7\x77\xcb\xd5\xe1\x7a\xb9\xff\x60\x0e\x1e\x6c\xf9\xe4\x89\x08\ +\x6c\xd3\x84\x5c\xbf\x9d\xc1\x3e\x74\x88\x37\xc4\x46\x18\x57\x69\ +\xd8\x9d\xcc\xe0\x7f\x9a\xc1\xf2\xdd\x35\xb4\x37\x1e\xe0\x3d\xea\ +\xe0\x68\x5d\x9b\x2b\x0c\x70\x6e\x19\x60\x35\x7e\x34\xe9\x16\x1e\ +\x23\xea\xc1\xc5\x5c\xb1\x72\x42\x3c\xed\x18\x01\xcd\xcf\x55\x8f\ +\x02\x1b\xbb\xcf\x1f\x9a\x38\x25\x15\x25\xec\x8d\x3a\xf7\xb0\xf5\ +\xfa\xd3\x15\xd2\x71\x85\x12\x03\xb1\x60\xd7\x85\x36\x9a\x90\xef\ +\x9b\x02\x75\xdd\xb1\xfb\x39\xd6\x0f\xf7\x61\xea\xe3\xa7\xb3\xe0\ +\x09\x6c\xe7\x65\x4d\x84\xf4\xcf\xcb\xce\x0d\x18\x11\xf4\xbc\xca\ +\x46\x8e\x70\x22\x3c\xc7\x93\x92\x7e\x14\xe8\x57\xfe\xbc\xed\x40\ +\xf6\x53\x2a\x7c\x8c\xbd\xf7\xe4\x9a\xbc\x70\xad\xcd\xce\x4b\x16\ +\x85\x91\x8e\x03\x26\xf5\x91\x14\xc3\x0a\xc6\x97\x2c\x82\xd2\xac\ +\xdb\x46\xe9\xc6\x52\x9d\xd4\x2e\xd8\x3e\x3e\xaa\x4d\x62\x09\xd3\ +\x39\x05\xdb\x5e\xfa\xac\x05\x0b\x4d\x19\x93\x64\x21\xf8\x16\x8e\ +\xaa\x41\xb4\x39\x54\x53\x80\x40\x59\x2d\xbb\x47\xcb\xd1\x37\x8d\ +\xfa\x8c\x21\xcf\x5c\x67\x62\x9e\x1a\x86\x8d\x38\x9b\xc5\xcd\x00\ +\xc5\x19\xe8\x43\x64\xe8\x46\x8a\x99\xd3\x02\xa4\xdc\x55\xb3\x2e\ +\x86\x40\x06\x72\xcc\x50\xa0\x7b\x5d\x58\xc1\x82\x3e\xa9\xb6\xa4\ +\xc3\x2c\x15\x1c\x5f\xa3\x7d\x8b\xf8\xef\x1e\xc7\xf4\xa6\xfd\x67\ +\xfa\xc4\x2c\xf9\x12\xcc\x16\xb4\x63\x02\xdf\x51\xea\x0f\x76\x0c\ +\x6e\x6f\xde\x2c\x07\xfe\x80\x52\xfb\x8d\x41\x8c\x7e\xdc\xfc\xc0\ +\xc0\xa4\x55\x4f\x90\x71\x9f\xd3\x2f\xf1\x80\xd7\x39\x0f\xb5\x64\ +\xcb\xf2\xf5\x08\x38\xab\xe3\xae\x10\x09\x16\x4f\x71\x7d\x36\x9b\ +\x21\xa2\x1c\xd0\xb9\x9e\x16\xae\xb7\x44\xd3\x95\xdd\x40\x50\x15\ +\x3e\xec\xb8\xca\x56\x68\x69\xde\x7b\x75\xad\xdc\xb8\x92\xd6\x3f\ +\x51\x36\x74\xd7\x63\xd8\x75\x95\x6b\x98\xc8\xbe\x8e\x69\xb2\xa4\ +\x8c\x18\x7d\xb0\x3e\x05\x05\x23\x97\x13\xcc\xc4\x0d\xb9\xad\xd1\ +\x77\xbb\x98\xd1\xaa\xd0\xd8\x89\x3a\xf4\xb3\x85\x8e\xe4\x76\x8e\ +\xa3\xcf\x3c\x8a\x0b\xa4\xc0\x85\xf2\x3f\x4e\x7c\xa2\x8d\xbc\x64\ +\x9a\xf1\x88\xd7\x5c\xd9\x3e\xca\x1b\x32\x4a\x42\xcd\x25\x56\xc4\ +\x80\x53\xf1\x0d\xac\xe7\x71\xa6\xe3\x07\x91\xdf\x5f\x7a\x52\x5e\ +\xbd\xf7\xa4\x45\xc3\xba\x16\x22\x06\x77\xe2\x57\x66\x9d\x3f\xc2\ +\xc3\xb5\x9f\x80\x81\x76\x9d\xa6\x4e\x06\xc6\x99\x1d\x86\xdf\x2f\ +\xda\xdd\x71\xeb\x2a\xef\x52\x81\xbc\xd1\x54\xb6\x7f\x6d\xd8\xaa\ +\x25\x54\x2d\x6c\xe9\xfb\x57\x23\x43\x11\xe2\xee\x2e\x57\xf7\x6e\ +\x30\xc8\x68\xf7\x3e\x69\x52\xc9\xbe\x7f\x9d\x91\x82\x99\xb4\x5d\ +\x66\x8c\xbd\x09\x7e\x7c\x7c\x58\x5e\xbf\xf9\x6a\x79\xfb\xfa\x8b\ +\xac\xb6\x63\xc7\x8e\x1d\x3b\x4e\x63\xff\x86\xda\x8e\x1d\x3b\x3e\ +\x0f\xba\x07\xbd\x17\x40\x79\x46\xbc\x04\x48\xc1\x07\x71\xb7\x77\ +\x6f\x97\x07\x7b\xa8\xf4\x0f\x81\xc0\xdb\xbf\x78\x1a\x4d\x9b\x21\ +\x8f\x9f\x03\x7f\x5f\xa3\x3c\x0c\xca\x75\x2e\xe3\x02\xb9\x78\x10\ +\xce\xae\x8c\x00\xec\xea\x0b\xc8\x63\x5b\x4b\xf0\x10\xce\x07\xf1\ +\x4a\x0a\xe2\x6b\x43\x87\xaf\xf0\x7d\x9d\x6b\x68\xad\x2b\x41\xb8\ +\x8d\x46\x91\x30\x13\x2b\x82\x7a\x67\xad\xe7\x82\xa3\x7e\x02\xfe\ +\xc8\x79\x9e\x50\xa3\xeb\x6d\xf6\xb7\x09\xb9\x8f\x6d\x58\x55\x93\ +\x3e\x02\x7e\xcc\xda\x91\xeb\x12\x48\x36\x02\x2e\xbd\xc9\x0e\x5b\ +\xcd\x33\xc0\x67\x18\x55\xed\x6d\xcd\x58\x71\x3d\x83\x03\xfc\x56\ +\x0c\x98\xc6\x4e\x2d\x6e\x85\x63\x33\xfc\x78\xd1\xef\x9b\xde\x7b\ +\x0a\x9e\x9a\x7d\x69\xde\xb6\x5e\xdb\x70\x7e\xc5\xb5\xb2\x30\x30\ +\x71\x2e\x8c\x22\xbb\x90\xfc\x14\x41\xaf\x56\x61\x7e\xc9\x61\xb4\ +\x48\x60\x22\x2c\x09\xab\x95\x38\x98\xf1\x92\x99\xdd\xaf\xdc\xad\ +\xa4\x8a\x0c\xd7\x49\x57\xdb\xd1\xd5\xb7\x0b\xbf\x5d\xd7\x3e\x7a\ +\x52\x4b\x6c\xf2\x50\x34\x62\x13\x55\xe2\xfa\x21\x89\xa4\xe6\x88\ +\x98\x24\x8c\xb9\xc3\x5f\x92\xa1\x25\x1a\x5d\x21\x13\x46\x04\xc7\ +\xaa\x35\x8e\x9c\x6c\xf0\xbd\x71\x6b\xf0\xe5\x83\x1b\x96\x2d\x29\ +\x81\xd1\x83\x31\x36\xe4\x3d\x5f\x81\x21\xde\xa0\x80\xef\x3f\x22\ +\x0c\x55\x90\xbf\x7a\x1d\xb1\x41\x39\x79\x64\xc1\xb1\x59\xbd\xd0\ +\xb1\xb7\x9d\x85\xbf\xd4\xfc\xb0\x5c\x2f\x57\x6f\xec\x35\xfc\xea\ +\xba\xc4\x68\x3e\x1d\x3e\xcd\x8e\x93\x28\x3b\x8a\xe6\xd5\xf2\xfa\ +\xf5\xd7\xcb\xfd\xbd\x1d\x0b\x3b\xb6\xf5\x07\x56\x10\xc6\xf1\xee\ +\xbe\x21\xc6\xeb\x91\x86\x0b\x02\xc5\x3c\x09\x4d\x71\xfc\x90\xf7\ +\xd1\x5a\xbf\xfb\x40\xd3\x02\x7d\xbd\x71\x25\xc6\xf2\x9c\x2d\x39\ +\x05\x50\x7b\x34\xcf\xde\xc0\x5c\x0f\x11\x74\xa9\xad\x49\x7d\x81\ +\x86\xe0\xfd\xea\xaa\xf3\xc0\xb2\xd6\x08\x43\x38\x1a\xca\x32\xca\ +\xd5\xe9\x18\xdc\x29\x4c\x53\x2e\xd5\x00\xd6\xb0\x4e\x1e\xb7\x38\ +\x15\x30\xe2\x26\xcf\x01\x44\x59\x58\xea\x58\xc1\x5a\x23\x12\x95\ +\xea\xf5\x99\x55\xf8\x58\xdd\xa4\x0e\xc9\x8e\xb7\x4c\x2f\x73\x39\ +\xa6\xf5\x77\xac\xf0\x02\xfb\x69\xbb\xc4\x19\x07\x6f\x43\xa2\x27\ +\x1d\x41\x5e\xbd\x5d\x25\x4e\x6c\xc3\x53\x4f\xa1\x39\x6c\xb2\x9c\ +\x6f\x32\x31\xa9\xed\x19\x8f\xa5\x12\xe2\x31\xd2\x5e\x0b\xc9\xf8\ +\xc5\xca\xfd\x91\x0a\x19\x49\x04\xaa\x1f\xf6\x2a\x27\xd0\x4b\xc7\ +\xfb\xe6\x08\x44\xad\x75\x22\x5c\xdf\x67\xec\xf1\x48\x05\xe6\xea\ +\x08\xaa\x76\xba\x52\xdb\xa8\x18\x8c\x41\xd7\x81\x9c\xe7\xd1\x0c\ +\x8d\xa4\xf8\x61\x8b\x76\x1f\x9d\xdc\x3d\x3b\xc2\xe7\x75\x95\x07\ +\xd0\xb7\xbf\x50\x03\xa6\xcd\xd5\xbf\x22\x34\xdb\x27\xb4\x66\x5f\ +\xfe\xba\xec\x31\xbe\x56\x3d\xdc\x2c\x77\xaf\xbe\x5c\x5e\xf1\xcf\ +\x35\x7b\x2d\x47\xc9\xdf\xb1\x63\xc7\x8e\x1d\x2b\xec\xdf\x50\xdb\ +\xb1\x63\xc7\xa7\xc5\xa5\xcf\x66\x97\xe8\xeb\x33\xe0\x16\x26\xf5\ +\xf0\xff\xaf\x2c\xaf\xdf\x2d\xd7\x8f\x07\x7e\x53\x8d\x0f\xcf\x5b\ +\xf3\x26\x3f\x13\x80\xeb\x1f\x44\x3b\xd5\x56\xcd\x0e\x26\x82\x4e\ +\xda\xf6\xc4\xdd\x38\x40\x3c\x40\xb3\x09\xf4\x61\x74\x79\x76\xb6\ +\x16\x7d\x70\x04\x1c\xff\x2a\x58\x11\x78\xd4\x4e\x6e\x08\xb9\x1c\ +\x1f\x84\x34\x49\x41\x6c\x7f\x0d\x8c\xf6\x3a\x29\x73\x14\xaa\xbb\ +\xc0\x47\xcc\x17\xc7\x29\xd0\x3e\xe8\x15\xca\x5b\x8a\xb5\x91\x99\ +\x8d\x71\xc0\xaf\x5c\xf7\x41\x9b\x4c\x1b\x69\x4e\x8a\xf8\x16\x4b\ +\xd0\x63\x9c\x4b\x70\xe9\x24\xa1\x20\x35\x47\x64\x5b\xf5\x8f\x81\ +\x39\x4f\x49\xfc\x23\x02\x36\xaf\x6d\x62\xef\x3d\x15\x4f\xad\x70\ +\x69\xde\x5c\xbf\xde\x86\xa7\xad\x67\x38\x9f\x66\xe7\xd6\x56\x61\ +\xd3\xfa\x75\x79\x64\xe6\xac\x87\xab\x08\x8e\x13\xf8\x33\x87\x80\ +\xee\x8e\xba\x8e\x53\x0e\x84\x03\x45\xc7\x9b\xb7\x9e\x51\x75\x2e\ +\x43\xbd\x7f\x24\x78\x1f\x99\xf0\x27\x30\x9f\xbb\xd4\x31\x01\x34\ +\xdc\x66\x37\xbc\x01\xba\xc1\x01\x08\x27\xaf\xce\xea\x54\x8e\xcd\ +\xba\xb8\xe7\x29\x44\x28\x26\xbb\x80\x2e\xe3\x68\xb6\xf5\xfd\x44\ +\x1d\xb0\xce\x0c\x2b\x4e\xa2\x68\xbb\x34\x73\x3a\xdf\xd0\xd5\xd7\ +\xd1\x2e\x32\xbd\x50\x11\x3e\xb6\x14\x33\x64\x13\xe1\x1b\x8f\xff\ +\xa3\x4b\xf0\x33\xeb\x6a\xb9\xbe\x7b\x6d\xed\x0b\x8b\xbd\xd0\x6f\ +\xa8\x3d\x27\xf7\xcf\x0e\xfd\xf5\x72\xb5\x3c\x2c\x6f\xbf\xf8\x6e\ +\x39\x1c\x6e\xec\x79\xca\x8e\x87\x8e\x5b\xb7\x4f\x23\x27\xb9\x1a\ +\xdc\xb2\x1b\xda\x99\x6f\xad\x2f\xdc\x90\x74\x8b\xd7\x95\xf6\xab\ +\x76\xe4\x3d\xa1\x2b\x29\xe5\x2c\x63\x8e\xf5\x8a\xe6\x6b\x9c\x2c\ +\xd1\x4d\x74\xab\x14\x27\xb0\x46\x6f\x4e\xf5\x32\x5b\x63\x10\x8d\ +\xf7\x75\xf7\xba\xe2\x97\x40\xe5\x46\x7d\xdd\xcf\xdd\x9e\x20\x5d\ +\xd4\x53\xd3\xac\x70\x92\xa3\x51\xee\xe7\x76\x3f\x48\x1b\xa0\x13\ +\x1c\x27\x8c\xa3\x13\x22\xbe\xa6\x54\x02\xd8\x38\x17\xc0\xfa\x9a\ +\xe7\xf1\x06\xc4\xad\x71\x90\xf6\x54\xce\x99\x38\xa3\x0c\xa7\x75\ +\xf3\x13\xa3\x6d\xab\xd6\xf0\xd1\xd6\x32\x14\x1d\xe7\x91\x3f\xc8\ +\xe6\x98\x8a\x82\x3c\xab\xc0\x88\x27\x25\x39\x98\xda\xe6\x9e\x55\ +\x5a\x71\xa9\x9b\xa9\x0d\x41\x6f\x44\x07\xcc\x2a\x8d\xf7\xdd\x80\ +\xea\xda\xd8\xc2\x43\x66\x71\xd3\xcc\xf7\x59\x9b\x59\x55\x9c\x43\ +\xaf\x99\xa0\x0a\x34\xb1\x38\x8c\x03\xd5\x3f\xfb\x24\x6b\xd0\xfa\ +\x8c\xad\x34\xd1\x62\x40\xf7\x9e\x11\x5a\xe9\x63\x1c\xb7\xd4\xc7\ +\xf0\xba\x01\x7d\x5d\x4f\x41\x2c\x02\xd1\xa6\x05\x1a\x23\x94\xd5\ +\x9c\x0d\xbd\x5e\xd5\xda\x64\xba\xd2\x31\x57\x39\x76\x08\xa3\x17\ +\xc3\xbf\x9a\x6d\xaf\xd5\x57\xd7\xaf\xed\x19\xea\x15\x53\x7c\xe9\ +\x5d\xa1\x1d\x3b\x76\xec\xd8\x31\xc1\xfe\x0d\xb5\x1d\x3b\x76\x7c\ +\x7a\x5c\xfa\x8c\xf6\x92\xcf\x74\x7a\x82\x0c\x1c\xf0\x0d\xb4\xeb\ +\xc3\x72\xf7\xd5\x37\xcb\x0f\xef\xef\xf9\x88\x89\x9f\x78\xcf\x29\ +\x61\xf0\xc9\xd2\x9a\x46\xf5\x6e\x76\x25\xf1\x83\x5d\xed\x2d\x69\ +\x1b\x04\x94\x48\x4a\x32\x12\xc9\x4e\x50\x62\x9d\xac\xf2\xb1\xe8\ +\x59\x19\xf1\xd6\xfa\x9f\x68\x03\x8a\x5f\x78\x6e\x43\xb7\xd8\x06\ +\xa7\x11\xa8\xc1\x7e\xc7\x66\x84\xfb\xcc\x21\xab\x67\xac\x35\x22\ +\xe5\xfe\xec\xef\xb3\x8c\xf0\x2c\xcf\x2b\xe5\x0d\xfe\xe1\x4c\xa5\ +\xe8\xf7\x4b\x23\x6a\x5e\x57\x02\xb0\xe0\x58\x17\xe8\x38\xa3\xc0\ +\x92\xeb\xea\x97\x0f\x88\xce\x84\x4a\x0c\xe5\x03\x3e\x11\x63\x22\ +\x5b\x70\x13\xeb\x35\x34\x06\x96\xda\x9f\x3a\xfa\xad\x7e\x3e\x3e\ +\xff\x7e\xfb\x48\xb3\xeb\xfe\x21\xc4\x39\x26\x6a\x75\x25\x9a\xcb\ +\x33\x9d\x69\x3e\xae\x31\x23\xa1\x46\x92\x62\xfe\xad\x36\x60\x98\ +\xc1\xe0\xdf\x2c\x91\x2d\xcc\xaa\x02\x1d\x1f\xce\x3a\x3b\xc0\x80\ +\x47\xbb\x79\x29\x04\xb3\x9e\xa5\xaa\xb1\x15\x5d\xde\x80\xee\x07\ +\x7c\x0d\x4d\x6b\x01\x7c\x23\x29\xe2\xe3\x7d\x28\xab\xda\x40\xbb\ +\xdc\xbc\xa0\xe5\xbc\x34\xca\x04\x70\xad\x61\xf4\x66\x31\x70\x43\ +\xcc\xef\xfd\xac\x80\x88\x23\x62\x49\x41\x12\xe3\xaa\x19\xca\xac\ +\x86\x20\x63\x00\x8a\xb9\x46\x2e\x32\xec\x74\x7d\x45\x68\xa8\x4f\ +\x8a\x63\xac\x94\x79\x52\x61\xdb\xcc\x22\x65\xb6\xed\xe8\x0f\xf6\ +\x82\x7d\xb8\x7b\xb3\xdc\xbc\xfe\x82\xd4\xc3\xb0\xca\x1d\x1f\x1b\ +\x76\x30\xf8\xe5\xc7\x09\x78\x75\xf3\xc5\x72\xff\xe1\xb0\xdc\xdf\ +\x1f\xba\x63\xda\xe0\xcc\x9a\x0f\xac\x02\x3d\xd1\x79\xe3\xc5\x26\ +\x24\xed\xc6\xf1\xb3\xc2\x3f\x5c\xf4\xef\xf5\x4b\xa9\xbb\xcf\x6a\ +\x31\xa7\x61\x29\x71\xda\x9a\x61\xf5\xac\xe9\x94\x67\x17\xb1\xf8\ +\xd9\x02\x43\x5d\x5d\x92\x44\xbb\x0e\x86\x67\x0b\x73\x9c\xb7\x1e\ +\x53\x90\xa4\xcc\x6c\x78\x68\x91\x93\x8b\x31\x98\xe9\x1c\x3d\x43\ +\x3b\x72\x75\x15\x2d\xbe\x81\x92\xdf\xd9\x42\x98\x85\x49\x34\x79\ +\xd5\xe3\x18\x68\x05\x75\x4d\xda\xee\x61\x1f\x61\xe7\x61\x63\x4b\ +\x16\x0c\xfe\x06\xa4\x99\xca\x17\xd2\x5f\x19\x91\x4d\xd7\xeb\xf5\ +\x92\xac\x9e\xc8\xf8\x0c\x5d\x70\xa6\x5c\xd7\xfb\xb4\xc0\x9a\xbc\ +\xb5\x7f\xf2\x80\x16\x77\x76\x64\xb6\x1b\x30\xe3\xb3\x59\x37\x72\ +\xc2\xe8\x03\xbd\x3f\x46\x7b\xb4\xe8\x13\xf7\xef\xa4\xfc\x9a\x52\ +\x6d\x3f\x4f\x1a\xa0\xdc\x5e\x9f\xb6\xdb\x31\xb1\x6a\x6a\xa7\x0d\ +\x14\xa2\xe6\x54\x1d\x6d\x5d\x4f\x35\x30\x40\x47\xf9\x62\x58\x1a\ +\x32\xeb\x25\x9b\xa5\x8c\xac\x67\x4f\xe3\x63\x04\x8a\x9d\x66\x8d\ +\x13\xb3\x44\xa1\xee\xf3\x36\x1f\x31\xca\xc3\xaf\xd5\xba\xdf\x8a\ +\x16\x78\xff\xe8\x91\xaa\x30\xda\x3d\x1a\x68\xf3\x03\x7e\xa7\x40\ +\x5f\x44\x30\x6b\x8e\xd9\xcd\xb5\xfc\xce\x6f\x38\xe3\xd0\x35\xe4\ +\xb2\x6d\x66\xbe\xfe\xad\xb7\xc3\xe1\x7c\xdd\xf4\x34\xcb\x31\x83\ +\x7d\x73\x75\xbb\xbc\xba\x7a\x63\x0e\x7e\x08\x66\xab\xde\x8e\x1d\ +\x3b\x76\xec\x18\xb1\x7f\x43\x6d\xc7\x8e\x1d\x9f\x17\x67\x3d\x3d\ +\x3e\x03\x47\xeb\xdb\x43\xa3\x7d\xe1\x07\xde\x6f\xde\x7e\xb1\x3c\ +\x5c\xdf\x2e\x1f\xee\xcb\x9b\x69\xc2\x1f\x3a\xf9\xa7\xa6\xf8\x0f\ +\x94\xf5\x7c\x42\x75\x25\x2d\x50\x1c\xcb\x87\x02\xe2\xa2\x77\x68\ +\x34\x1c\x7b\x66\x65\x7d\x47\xd6\x10\xa7\x10\x03\x51\x9d\x5d\x18\ +\xd9\x7c\x10\x60\x3a\xed\xff\x84\xad\x65\xa4\xc2\x3f\xa1\x69\x63\ +\x40\xb5\x68\xab\x53\x5c\x23\x11\x6f\x38\x0a\x27\xa9\x53\x0a\x0c\ +\x02\x22\x14\xe1\x73\x48\x3b\x62\xec\xdb\x28\x03\x7f\x52\x03\xef\ +\x35\xb0\x7d\xa0\x70\x64\x72\xbb\x87\x8d\xf6\x38\x20\x75\x98\xd2\ +\xc5\x18\x1f\xbb\x71\x84\x8a\xef\x65\x42\x9e\x50\x4e\xc0\xcf\x87\ +\x81\x2c\x50\x89\xaa\x50\x49\x66\x62\x3b\xe0\x80\x64\x60\x9c\x70\ +\x8e\xf3\x54\xa6\xb3\xe2\xe7\x6a\xff\x18\xa0\xdd\xd4\xb6\x49\xd6\ +\xe7\xdb\xca\x7e\x3d\xe7\xa1\xd7\x6f\x57\x38\xb7\xee\x5a\xd7\x18\ +\x5e\x17\x3a\x11\x85\xb0\xd7\x79\x01\x9e\x94\x38\x79\xfa\x13\x08\ +\x6e\x0f\x0f\x76\xb4\x72\x11\x5b\xe9\x0d\x59\x24\x34\x9a\xe0\x31\ +\xaf\xe0\x86\xf5\x84\x94\x57\x5d\x2f\xe9\x2b\x74\x33\xf0\x46\x23\ +\x06\x88\x6b\x2f\xf2\x5d\x17\xf7\x78\x49\x37\x90\xaf\x24\x2a\x45\ +\x34\xa7\xd2\x9d\xc4\xe0\xbe\x17\xef\x63\x98\xb7\x2d\x26\xef\xef\ +\x18\x4b\x03\xaf\xa5\xf9\x3a\x6c\xd5\x18\xe8\x1b\x42\x97\x0d\xc8\ +\xd1\x8c\xca\x13\x93\xfd\x0e\x90\x0c\xbd\xa1\xfd\xd6\x9b\x41\x0b\ +\x48\x18\x91\x93\x67\x8a\x4d\xd7\x72\x7c\xdf\x16\xce\x06\x2e\xc7\ +\x1a\x3f\x3f\xbf\x3a\x50\x03\x91\xf5\xd4\xe2\x1b\x68\x8f\x37\xaf\ +\x96\xab\xdb\x57\x21\x8c\x69\x76\x7c\x06\x60\xe7\x1f\x96\xbb\xeb\ +\xd7\xcb\xe1\x1a\x3f\xe9\x7e\x67\xc7\x24\x8e\x86\x0d\x3c\x96\x3c\ +\x72\x82\xae\x12\xfc\x88\xfc\x05\xa8\x07\x98\x35\xd3\x9c\xa2\x7e\ +\xe3\x4a\xd7\x43\x5f\xc4\x99\xd9\x7d\xa2\x57\x6d\xa0\xd4\x17\x30\ +\x8f\x4e\xe3\x44\xa7\x8b\x6d\x8f\xae\x49\xdb\x0a\x2b\xa8\x18\x49\ +\x03\x67\x24\xef\x73\xfb\x9c\x66\x73\xf4\x04\x7e\xe8\xaa\xc5\xb8\ +\xac\x8d\x40\x84\x46\xac\xe9\xc6\xc0\x1a\xe3\x1b\x65\x1a\x42\x80\ +\xa9\x69\xc6\x1a\x70\x7c\x9c\x03\x5b\x17\x16\x1c\xc5\xec\x1a\x0a\ +\x97\x11\x18\xe5\x13\x70\x9d\x5d\x73\x68\x15\xda\xf7\x6d\xde\x66\ +\x79\x7c\x85\x42\x4d\xa2\x81\x59\xde\x31\xf5\x76\xec\xe5\xe0\x73\ +\xa0\xff\x18\xb3\x7d\xdc\x2d\xe8\xcf\x0b\x60\x9c\x2f\xfd\x53\x0b\ +\x99\xc4\x41\xad\x67\x78\x01\x74\x73\x99\xb3\xb1\xb6\x15\x1d\xc4\ +\xc9\xf3\x82\xe1\x33\x8a\x9a\xbd\xae\x45\x72\x6d\xa6\xcc\x32\xd2\ +\x6e\xe8\xa8\xe2\x54\x5e\xf6\x38\xae\x10\x01\xce\x43\x1b\xdd\xc6\ +\x95\xbb\x5a\x4c\xbf\x45\xb0\xe9\x77\x07\xd2\x98\x20\xa5\xdd\xba\ +\x0c\xc1\x43\x85\xf0\x5a\x62\x45\x23\xa0\x58\xa7\x4b\x63\xe0\x01\ +\x39\xc3\xc4\xe3\xf9\x56\xa3\xbd\xd2\xbd\xe9\xf9\xd9\x0b\x27\x70\ +\x41\x56\x30\xa3\xa6\x70\xaf\xd8\xeb\xc3\xa3\xbd\x6e\xbf\x7a\xfd\ +\x13\x63\xf0\xd1\x70\xfb\x78\xb8\x6a\x77\xec\xd8\xb1\x63\xc7\x1a\ +\xfb\x37\xd4\x76\xec\xd8\xf1\xe3\x01\x9e\xdc\xea\xd3\xdb\x0b\x3c\ +\xc9\x9d\x2e\xe1\x6f\x18\x6e\xdf\x7d\xbd\xdc\x3f\xdc\xf0\xe1\x92\ +\x3f\xe1\x1e\x4f\xae\xfc\x60\x2f\x5a\xda\x80\x3f\x97\x12\x3e\x86\ +\x06\xa6\x72\xd3\xb4\xaa\x12\x07\xa0\x0c\xb5\x23\xcd\xc2\x9a\xc1\ +\xbc\x22\xa3\x5d\x38\x0e\xd1\xd5\x3f\x61\xe1\x96\x05\xf8\xe5\x23\ +\x1b\x10\xb6\x6a\xe7\x1c\x63\x03\x10\x64\xa3\x43\x8a\xa8\x66\xc6\ +\x7d\x60\xbd\xb0\xb5\x22\xff\x8c\x23\xb6\x8d\x22\x18\xe2\x95\x83\ +\x87\x7a\xba\x44\xab\xe3\x46\xb8\x0e\x6e\x2b\x8e\x56\x6e\xa9\x43\ +\x39\x36\x42\xa2\x6f\x7c\x39\x9a\x55\x3e\x73\x19\x80\x40\x59\x04\ +\x50\x5c\xaf\xa6\x16\xc3\x20\x1f\x11\x4a\x03\x84\xcd\xeb\xb1\xc5\ +\x1b\xb8\x58\xcb\xb5\xf1\x88\x6a\x8a\x7e\xee\xe3\x80\xf6\x54\xfb\ +\x31\x63\xbe\xc6\x97\x59\xf5\xa7\xde\xfe\x36\xd7\xf1\x99\xcf\x5d\ +\xd3\x5a\x57\xce\x07\x05\x35\xd6\x53\xa5\x3b\x6d\x66\xb3\x1d\xad\ +\xec\x08\x22\x6f\x4f\x76\x71\xea\xda\x9e\xa8\x03\x6d\x31\xbc\xc6\ +\xcd\xd5\x47\xe1\x02\xae\x06\xbf\x22\x1a\xeb\xd5\x46\xdd\x6c\x96\ +\x60\x58\x3a\xec\x58\xd4\x78\x95\xd1\x4b\x0a\xda\xa8\x0f\xb3\x97\ +\x3a\x8c\xf3\x52\x2c\x1e\x70\x83\x33\xc1\x4c\xde\x4d\x56\x0c\x0e\ +\xb9\xa9\x8b\xd1\xeb\xc1\x20\xd3\x23\x38\x0c\x35\xcc\x1c\x11\x61\ +\x83\xf3\x5a\xee\xe7\x98\x4d\xa4\xd0\xef\x8d\xac\x69\x6d\x54\x02\ +\xe4\xac\xf3\xbd\x14\x84\x5a\x05\x83\x02\x8e\xac\x21\x34\xf5\x1b\ +\x6c\x7d\x01\xe7\xf5\x7a\x83\x01\x99\xd8\x77\x57\x37\xf8\x93\x8f\ +\xaf\x43\x51\x8b\x3b\x73\x31\x72\x03\x76\x9c\x46\xec\xa8\x3c\x88\ +\x57\xcb\x0d\xfe\x5f\xda\xdb\x77\xcb\x3d\x3f\xa8\x03\xe7\x1a\x1c\ +\xbb\x38\x7c\x1c\xdd\xd2\x60\x1a\x68\x2b\x6f\x68\x96\xc1\x93\x3a\ +\x38\x63\xb9\x93\x18\xa2\x23\x2b\x1f\xf2\x38\xf3\x1a\x3a\xb1\xce\ +\x2e\xc3\x58\x24\xe0\x34\xd6\x9d\x4e\x00\x79\x2b\xb2\x43\xe6\x1a\ +\xb8\x16\x6b\xfe\xe7\xb3\x11\xf1\xa8\xf7\x86\x34\x0c\xb1\x9d\xa2\ +\xdc\x45\xd7\x89\xac\xa1\x96\xd7\xe7\x21\x30\x70\x6f\xd0\x46\x2c\ +\x66\xa7\x0f\x1e\x86\xf3\x09\xd0\x69\xf6\x31\xaf\xdc\xc3\xb9\x92\ +\x14\x80\x5b\xa9\xb4\x69\xb4\xc8\x58\xb3\x8f\x4c\xa2\xda\x30\x43\ +\x5a\x34\x74\x64\xad\x2f\x81\x5e\x03\x94\x9a\x30\x83\xcf\x30\x00\ +\xa7\x23\x42\x1a\x7c\xa9\xd0\xb0\x2a\x10\x98\x8a\x57\xe5\x5f\x18\ +\xb1\x50\x6b\xb2\x2e\xc3\xd3\xb2\x3a\x3c\xa3\x44\x4b\x2b\x45\xc2\ +\xd4\xee\x6c\x9a\x1e\x5b\xfc\x16\xa6\xfa\x8e\x0c\xa7\x1f\xb6\x31\ +\x0a\x8a\x3f\x86\xb8\x2d\x46\x4e\xf9\x40\x5c\xfa\x03\x1a\xd9\x87\ +\x37\xbc\x30\x6a\xad\xaa\x9c\xcf\x01\xcd\x10\x30\xd7\x99\xd9\x75\ +\x95\x41\x43\x1a\x84\xea\x63\x84\x59\xa3\xbd\xd2\xd1\x73\xb6\x37\ +\x46\x51\x7b\xb0\x6c\xb1\xd4\x48\xdf\x27\xd5\x7d\x9a\x08\xdd\x44\ +\xde\x01\x21\xe6\x4b\x73\x44\xbb\x06\x32\xb5\xa6\x9a\x1a\x2b\xe2\ +\xce\xb1\x66\x5f\xb3\x35\xa6\xbe\x25\x06\x1a\x01\xab\x0b\x73\xff\ +\x78\x13\x2f\x4b\x23\x5e\x97\xef\xdf\x3f\x2e\x5f\xbe\xfb\x8e\x3e\ +\x2a\xac\xea\x0c\xde\x8e\x1d\x3b\x76\xec\x70\xec\xdf\x50\xdb\xb1\ +\x63\xc7\xe7\xc7\xf8\xe4\x26\x7b\x7c\xa2\x1c\x75\x67\x60\xf6\x50\ +\xda\xc1\xea\x5d\x3f\x3e\x2e\xd7\xef\xbe\x58\x0e\xb7\xaf\xf9\x60\ +\x99\x1f\xd8\x21\x1c\x3e\x1f\x2f\x41\xf0\xff\x6f\x01\x67\x83\x8a\ +\xd3\xf1\xb0\xc7\xa0\xf6\x20\xb9\x2e\x1e\xe0\x07\x27\xf6\x38\xeb\ +\x02\x52\x3e\x82\x17\x93\x1f\xf5\x16\xae\xe2\xb1\x7d\xfe\x44\xc0\ +\x89\x7c\x6b\xf9\x59\x03\x47\x6e\x81\x03\x46\x17\x8b\xb1\xf2\x06\ +\x77\xfd\x83\x21\xd2\x11\xef\xe7\xac\x40\x20\xd5\x04\x2c\xcc\x9c\ +\x5b\xc2\x7d\xe3\x71\x8f\xf5\x88\x5d\x15\xc8\xad\x77\x9d\x75\x19\ +\xe7\x22\x7c\xae\xfc\x46\x22\xa8\x3a\x3b\xc4\xe9\x00\xd0\xb9\x96\ +\x74\x17\x73\x37\x29\x93\x31\xbd\x23\x7b\x30\x54\x3e\xd0\xa9\x38\ +\x92\xb6\xc2\x31\x9d\xea\xb0\xd9\x76\x76\xdf\x70\x8c\xd1\x37\xa9\ +\x04\x06\x1c\xab\x4f\x9c\x14\x34\xe8\xe8\x9d\xdb\x3e\x06\x66\xf3\ +\xa0\xad\x31\x67\x2f\xc5\x73\xab\x5c\x9a\xef\x7a\xf4\x1f\x79\xfd\ +\x71\xca\xf0\xf2\xa9\x0d\x88\x24\x7d\x2c\xe9\x08\x9b\x31\x17\xb0\ +\xd7\x35\xa0\x70\xb8\x80\x9b\x76\x4d\x66\x99\x76\x7d\xd6\xca\xf2\ +\x10\xf3\xa6\x68\xb5\x4a\x61\x62\x56\xc1\x31\xda\xcc\x0c\xd2\xd7\ +\x17\x75\xcd\xd6\x8a\xe2\xd6\x19\x40\x34\x88\x20\x23\x3d\x22\x4d\ +\x39\x03\x34\x54\x44\x92\xf6\xa3\xf6\x0d\x87\x52\x57\xd5\xc6\x91\ +\x46\x92\x51\x0c\x10\xdf\x35\xeb\xac\xe9\xf5\xcb\x61\xbe\x3d\xe9\ +\x3b\x17\xbc\x1a\x10\x1c\xe3\x22\x69\xa2\x0e\x87\xf0\x11\xe8\xe1\ +\xeb\x6e\x47\x05\x35\xb8\x42\xeb\x46\xb9\xfb\xd1\x63\xa0\x19\x6b\ +\x5d\xc1\xe7\x46\x87\xb8\xdb\xda\x76\xf3\xe3\xff\x50\x7b\xe4\xcd\ +\xf0\x6a\xe1\x1f\x6a\x3e\xdc\xf8\x6f\x44\x45\xde\x8e\x4f\x89\x38\ +\x1e\xec\x81\xab\xe5\xfa\xea\x66\xb9\xbd\x79\xbb\x1c\x0e\xd7\xc6\ +\xe3\xbc\xe0\x81\x89\xa8\xff\xa3\xad\x43\xd5\x0e\x6f\x07\xb8\x0c\ +\x0d\xfc\x1a\x12\x34\xa1\x2c\x7f\x5e\x81\xe7\x8c\xa6\xf2\xb3\x07\ +\xdc\xc6\xe4\x91\x83\x28\x4e\xb5\xfe\x9a\x8f\x98\x28\x1b\x59\x25\ +\x25\x32\x8c\x35\x73\x3c\x25\xe9\x06\xa7\x90\x8f\xb1\x67\xd0\xd5\ +\x16\x90\xc9\x51\xcb\x36\xb4\x1f\xa6\xf2\x04\xd7\x61\xac\xbe\x81\ +\x3a\x3f\x1e\x1e\x09\xd4\x7c\x5f\x72\x07\xad\xdf\xf7\x86\x3b\xec\ +\xad\x2b\x1e\x7b\x35\x22\x8d\xb6\xdc\xfa\xc8\x24\x33\x73\xfc\x62\ +\x87\xe5\x08\x93\x5b\xd2\xdd\xff\xc2\xee\xb6\xbb\xc0\xea\x38\xe3\ +\x2b\x16\xd2\xae\x64\x60\x7a\x8c\x12\xf2\xca\xbe\x7c\x0a\x90\x9c\ +\x05\x9e\x55\xe9\x0c\xb4\xc9\xba\x69\x9f\x8c\x27\x56\x79\xfe\xc4\ +\x05\xfd\x81\xab\xa5\xc7\x43\xfa\x12\xd3\xa2\x66\xab\x73\xa4\xe2\ +\x10\xaa\xee\x2c\x8b\x9c\x02\x9d\x60\x54\xe3\xbc\x0f\x73\x40\xa5\ +\x69\x8b\x28\x01\x37\xad\xef\x04\x9d\x24\xb0\x66\x80\xbc\xee\x15\ +\x9e\x2c\x26\x99\x69\x89\xb1\x80\x30\x15\x37\x28\xcd\x07\xa2\x95\ +\x80\x11\xd7\xf5\xa0\x73\xb6\xdd\xa9\xd7\x6f\xcf\x7c\x7f\x36\xbd\ +\xb5\x41\xd3\xdd\xe7\xab\x30\x86\xf1\x3c\xeb\xb0\xaa\x35\x62\x72\ +\xff\x28\x84\xaf\xde\xbb\x95\x6e\x44\x16\xd7\xaa\x3c\x23\xe9\x44\ +\xad\xe4\xf3\xf3\xb6\x19\xc2\x07\x70\x57\xf7\x66\xdd\x2c\x3f\x79\ +\xf7\x4b\x27\xa3\x9c\x4b\x6a\xfe\x8e\x1d\x3b\x76\xec\x18\xb1\x7f\ +\x43\x6d\xc7\x8e\x1d\x9f\x16\xeb\xa7\xbd\xe3\x28\x0f\x7e\x9d\x7d\ +\x0a\x97\x3c\x03\xda\x13\xf5\xd5\xdb\x37\xcb\xe3\xc3\xcd\xf2\xbb\ +\xef\xbf\x77\x2e\x3e\xac\x53\x1d\xfd\xe4\xb0\x1e\x87\xb9\x0c\x9a\ +\x75\x22\x68\xf0\x85\x4e\x7c\x8d\x07\x48\xa1\xf3\x58\x3e\xe0\x63\ +\x94\x91\xa8\x36\x3c\x88\x68\x58\x83\x17\x3b\x24\x64\xf9\x01\x64\ +\x02\xfa\x78\x8b\x90\x13\x05\x64\x07\x9d\xa1\xd0\xf9\x9b\x91\x64\ +\x53\x84\x30\x63\x61\x03\x4c\x91\xad\xde\xbf\x02\x75\x5d\xb1\x66\ +\x03\x28\xa7\x8b\xd2\x4c\x71\x2d\xc7\x41\x17\x71\x1c\x0f\x3b\x46\ +\xf0\x67\x1f\x0e\xf9\x7e\xe1\x5b\x85\xf8\x40\xd9\x43\x00\x4d\x3f\ +\x54\x65\xae\xba\x2a\x43\xd1\x0b\x5d\xdc\x20\x3f\xa5\x69\x20\xd2\ +\x7f\x2b\xe2\xa9\x60\x0d\xbe\xfb\xf1\x2d\xf2\x29\xcc\x8a\x77\x8a\ +\xec\xd1\xc1\xa7\x0e\xd0\x58\xe1\xfa\x29\x66\xf2\x17\x02\x66\x7d\ +\xe9\x76\x1e\xce\x57\x6e\xe1\xb2\xf9\xd6\x78\x4a\xbe\xeb\xcf\xcb\ +\x7a\xce\xda\x1a\xec\xe0\x8f\x85\xe0\xf3\x5c\x42\xab\x41\xb3\xe9\ +\x5a\xa7\x34\x74\x34\x6a\x1d\xe5\xa2\x2f\x1f\x4f\x64\x82\xf1\x38\ +\x5f\x9b\x8c\x23\xce\x70\xb9\xd2\x65\x2e\x81\xb8\x27\xd5\x28\x6f\ +\x05\xc9\x19\xfa\xa4\x09\xdf\x66\xe9\x60\xf1\x7e\x7e\xbb\x77\xf0\ +\x3a\x5b\xeb\xfd\xf5\x40\xaa\x02\x3a\x85\x09\x73\xa4\x2b\x78\xf7\ +\xc2\x97\xb5\xb8\xac\x5d\x2b\x1b\x18\x78\xde\xb7\xba\x78\x38\x03\ +\x97\xf7\x3e\x5b\x6f\x7d\xad\x70\xce\xe2\xb4\x2d\x42\xbf\x36\x68\ +\x61\x00\x5c\x61\x73\x27\x08\x45\xea\x98\x3d\xe8\xfd\x37\x95\x1c\ +\xda\xe6\xa6\x4d\xc3\x3a\x9f\xbb\xfb\x66\x1b\xfe\xc3\xfc\x43\xe3\ +\xfc\x9b\x69\x76\xd4\x6d\x9d\x8f\x87\xc3\xf2\xe1\x1a\x7f\xf2\xf1\ +\x56\x25\x0b\xa0\x7b\x02\xfa\x22\x3b\xce\x80\x76\x19\x0e\xf3\x8d\ +\xfd\xbb\x3e\xbc\x59\x3e\xbc\xb7\xe3\xc3\x43\xe0\xc7\x0b\xc7\x17\ +\x87\xd0\x8f\x7f\xd9\xc9\xc5\x04\xe4\xe6\x29\x53\x0e\xe3\x20\x5d\ +\xa1\xfb\xb3\xa3\x06\xbf\x3f\x34\x28\xda\x54\xb0\xaa\x02\xf0\xbb\ +\x11\x7a\x44\x7d\xcd\xa4\xc3\x80\x3e\x72\xe8\x6b\xb0\x3e\xe3\x0d\ +\xf4\x82\xe7\xc0\x35\xfa\xbe\x48\x38\x55\xe0\x8e\x28\x8e\x5a\x88\ +\x5a\x0c\xac\xea\x5f\x04\xe6\x6b\xd7\xbb\x8d\xb9\x9c\x26\x72\x4d\ +\xb8\xdc\xd1\xda\xd6\x10\x08\xe6\xfa\xe3\x70\xdc\x65\x51\xaf\x48\ +\x54\xba\xa6\x69\x3d\x44\x8c\x3c\xe6\x1c\xe7\xc0\x12\x10\xf3\x86\ +\x0a\x6e\xa1\xcf\xe5\xb7\xd9\xac\x71\x51\x45\x81\xb1\xc0\xd6\x99\ +\xfb\x20\x46\xaf\x28\x43\x7a\xc4\xa4\x6b\x58\x31\xa5\x7c\x33\xb5\ +\x55\xa7\xb0\xae\xff\x71\xe1\xab\x42\x7f\xde\xfa\x2e\xc1\x05\x55\ +\x5f\x68\xf2\x56\xc6\xac\xa1\xe6\x38\xc5\xc9\x29\x4f\x0a\x1a\xce\ +\x92\x4e\xae\x97\x35\x8c\x0c\x1e\x43\x3b\x1b\x1b\x9a\xd7\xb4\x1d\ +\x2a\x27\x7b\xa6\x13\x4a\x2c\xcd\x51\x8f\x6b\x99\xa3\x0f\xbe\x2d\ +\xee\xf4\xf7\x81\xe0\x64\xe9\xda\xaa\x12\xc1\xb8\x8e\x4e\xdf\xae\ +\x95\x31\x20\x54\x9e\xfa\x20\x3a\x7d\x0f\x5f\x9f\x9a\x0f\xba\xca\ +\x34\xb6\xa8\x2c\x45\x0c\xcc\xc7\x3d\xad\x87\xaf\x71\xeb\xba\xe6\ +\x9d\xcd\x4b\xb1\x8b\x46\xbf\x56\x37\xcb\x0a\xe5\x12\x81\x94\x05\ +\x21\xbe\x00\xd4\x9a\x9e\x08\x81\x8e\x86\xe3\x6b\xab\x34\xe6\x77\ +\x5f\x91\x71\x6b\x1d\x57\x57\xb7\xcb\x72\xb8\x59\x6e\xf9\x7f\xa8\ +\x81\xb0\xe6\x2f\xdc\x1b\x19\x3b\x76\xec\xd8\xb1\x43\xd8\xbf\xa1\ +\xb6\x63\xc7\x8e\x4f\x8f\x8f\xfd\x84\x56\x9f\x1b\x63\x3c\x35\x25\ +\xfe\x5c\xd4\xf5\xb7\x3f\x59\xae\xed\xa1\xb2\x3e\x4a\xd3\x3e\xe0\ +\x56\x19\xff\x77\x0b\x38\x3c\xa5\x46\xc1\x62\xda\x88\xf8\x30\x93\ +\x51\x9e\x65\xe0\xd3\x35\xfc\x92\x54\xc0\x28\x3f\x55\xb0\x20\x06\ +\x34\x46\x02\xe1\xe4\xfa\x6c\x80\x3c\x3f\x74\xd2\x08\x98\xcd\xe9\ +\xc8\xc1\xc1\x84\x5e\x37\x1b\x06\x84\x34\x51\xda\xf1\xa6\x01\x60\ +\x88\x81\xc6\x19\x64\xaf\xdf\x8e\x60\x3d\xe2\xa0\xb2\x3c\xd6\x70\ +\xe8\x4d\x18\xfd\x46\xfa\x80\x71\xe0\x00\xa7\xdb\xfc\xf4\xad\xa3\ +\x3e\xe6\x67\x0f\xae\xe8\x70\xc4\xf2\x0d\x23\x20\x1b\x4b\x90\xa8\ +\x84\x37\x11\x1a\xa5\x38\x5a\x22\x2c\xc6\x48\x8d\x7b\xc4\x3d\xc4\ +\xa7\xe7\x47\xa2\xec\xf3\x19\xf2\x9b\x87\xca\xb7\x71\x2c\xb5\x55\ +\xda\x70\xb4\xf6\x45\x38\x32\xc9\x8f\x06\xcf\xdf\xda\xe7\x56\xb8\ +\x3c\x5f\x67\xee\xcb\x1d\xa9\x6d\xd4\x73\xc7\xe6\x1b\x0f\x29\x96\ +\xc0\x9b\x4a\x5d\x8b\x89\xc4\xc7\x1b\x6d\x02\x26\x5d\x5b\x3d\xc7\ +\xd9\x1d\xc1\xa2\x76\xc1\xf9\x3f\xc4\x4d\x81\x7b\x4c\x4e\xe1\x19\ +\xe8\x93\xaa\xa3\x8c\x2e\xd2\xcf\x92\x92\xc0\xe8\x8b\x58\xf1\x44\ +\x3f\xbf\x40\xbb\x75\x53\xf4\xab\x68\xf0\xb4\x75\x5e\x32\x61\xf0\ +\x98\x63\xc7\xc5\xbd\x09\xb4\x34\xdc\x5f\x6d\x27\x45\xb0\x45\xd9\ +\xcc\x07\x45\x96\x23\x6a\xc1\x06\xdf\xf6\xb1\x46\x36\x03\xee\x26\ +\xf5\x03\xb1\x12\x32\x2d\x62\x33\x48\xe5\x51\xd6\x14\xaa\xdd\xbd\ +\x20\x59\x83\x30\xe3\x69\x84\xe5\x2b\xa1\xa3\x82\x3c\xc7\x30\xa2\ +\x0b\x0e\x14\x96\x8b\xb5\x85\x0e\xfe\xc3\xc3\xc3\x72\xff\x70\x58\ +\x1e\x6e\xed\xf5\xfb\xfa\xc0\xb4\x17\x43\x4c\xbd\xe3\x32\xe0\xbc\ +\xba\x5a\x6e\x96\x57\xb7\xdf\x9a\x77\xbb\x5c\xd9\xf3\x53\xbd\x65\ +\xc4\xd1\x63\x0f\xe4\xd9\x66\x03\x2d\x0b\xd5\xe3\xd8\x0e\x83\xac\ +\xc6\x9c\x0b\x66\x44\xb7\x3a\x47\x8c\xf7\x8a\x3e\x31\x6c\x97\x9a\ +\xd6\x03\x73\x30\xd6\x57\xab\x72\xd8\x8a\x26\x5f\x04\xaa\xcd\xd3\ +\xb9\xf0\x15\xa2\xeb\x15\xd9\xb8\xde\xd6\x7a\x9d\x6b\xbd\xae\xaf\ +\xb8\xc5\x38\xe0\x7b\x30\x17\xd9\xad\x83\x4e\x83\xbb\xa8\x04\xb1\ +\x8d\x5c\x7c\x68\x62\x60\x99\x8e\xb2\x3e\xfc\x9e\xef\xa1\x23\x82\ +\x98\x2c\x9c\x41\x3e\x93\xf7\x0e\x9b\xb7\x16\x30\xc7\x73\xd0\x37\ +\x2b\x91\x07\xcf\xeb\xc9\x5e\x03\x9c\xf3\xec\x67\x92\x01\xbe\xce\ +\x63\xb0\x22\x59\x67\x2c\x28\xff\x74\x95\xa7\x02\x33\x8c\xb3\xbe\ +\x3c\x4e\xcc\xf0\x52\x0b\xc8\x3a\xb6\xbf\xba\x93\x78\x1b\x4a\xe9\ +\xd5\x2f\xb4\xbf\xa3\xf8\x6c\xf3\xe6\x9b\x3c\x61\x93\x9a\x67\x88\ +\xaf\xd1\x35\xe3\x98\x55\xe8\xb8\x41\x40\x37\x38\x5c\x41\x0a\xfb\ +\xb8\xde\x47\xba\xe6\x86\x5b\x42\x07\xc4\xba\x70\xf8\x6a\x44\x15\ +\xc8\x8e\x71\xaa\x39\x86\xcd\x3c\xbf\x47\xd4\x32\xdc\x22\xe9\x39\ +\xd6\x68\x78\xa2\x86\xf3\x0b\x74\xad\xe7\xd1\x72\x9f\x29\xfa\xe4\ +\x88\xde\xeb\x50\x42\xeb\xbd\x6d\x1c\xe2\xb9\xb3\x71\x7c\x46\xd5\ +\x2c\xeb\x08\xa2\x14\xeb\xf0\x99\xd0\x46\x7b\x41\x46\x95\x78\x1a\ +\x5f\xae\xec\x39\xea\xd5\xe3\x9b\xe5\xf5\xab\xaf\xa9\xad\x6b\xbc\ +\x78\xbe\x1d\x3b\x76\xec\xf8\x33\xc3\xfe\x0d\xb5\x1d\x3b\x76\xfc\ +\xf8\x30\x3e\xbf\x75\x0f\x77\x67\xe0\x29\xcf\x7f\x37\xb7\xcb\xc3\ +\xbb\xb7\xcb\xfb\xf7\xf8\x1f\xd4\x6c\x42\xd5\xb0\x07\x5b\x7e\x80\ +\x57\x46\xf1\xd4\xd8\xd3\xaf\xf3\x20\x41\xc0\xc8\xe4\xb6\xf4\x34\ +\x10\xad\x6f\xfc\x4b\x20\xc0\x67\x74\xd1\x70\xd6\x12\x4e\x0f\xda\ +\x67\x08\x67\x0b\x21\x41\x52\x27\xdb\x76\xe2\xa1\x9e\x16\x47\x8f\ +\x86\x51\x1a\x77\x07\x1a\x1d\x69\xb1\x4f\xf4\xa8\x1e\xa0\x06\xa3\ +\x1b\xf9\x59\x47\xc0\xdd\x7e\x7d\x6d\x1b\xbd\x8e\x62\x55\x83\xf5\ +\xf9\x1b\x05\xf7\x52\x5b\x45\xb6\x16\xd5\xd2\xf6\x8c\x00\x35\xa1\ +\x09\xc6\xd0\x95\xcd\x69\x88\x63\x69\x9d\xe7\x7b\xef\x98\x24\x70\ +\xc3\x07\x7e\x5a\xd7\x21\x35\x9b\x75\xdd\x76\x01\xe0\xc2\x2c\x1b\ +\xf9\x91\x80\xe2\x1f\x75\x82\x17\xc0\xd3\xd7\xa7\xad\xfb\xf4\x5b\ +\x38\x5c\x97\x67\xe0\x5c\xfd\xb6\xce\x23\xec\xab\x08\x76\x39\x1f\ +\x3d\x14\x44\xf2\x35\xc1\xa1\x3a\xbc\xf6\xed\x5f\x29\x41\xd0\x47\ +\x87\xfb\x25\x9a\xfd\x73\x80\xec\xeb\xcd\x99\x18\x79\x73\x94\x2f\ +\x5d\xbb\xa3\xf2\xc3\x82\x21\x5b\x48\x36\x4a\xa4\x3f\x06\x0c\xb3\ +\x0a\x6b\x7d\x35\xcd\xca\x8b\xd3\x8b\x7b\xa5\xd0\x64\xa7\x6d\x8f\ +\x26\xb3\x20\xef\xbd\xe2\xe3\xbe\x2a\x42\xaf\x37\x1c\x40\x15\x7f\ +\x65\x77\x80\xef\xb5\xa6\x71\xf0\xfc\x73\x8a\xd0\xc0\x01\x17\xa3\ +\x90\xb6\x1b\xb9\xd6\x8a\xf0\xb1\xfd\x19\xe6\x31\x97\xe3\xe7\x07\ +\x1a\xec\xba\x0c\x4e\x47\xc2\x9a\x0b\x0c\xa6\xb1\x77\x2b\xf8\xf3\ +\x81\xf8\x93\xcb\x88\xeb\x37\xd4\xf8\x3b\xc8\xd7\xb7\xcb\xab\x77\ +\xef\x90\x41\xb4\x72\x51\x67\xc7\x27\x05\xae\xc6\x83\x1d\xb0\x77\ +\x6f\xbe\xb5\xf1\x8e\x87\xb1\x7b\x16\x30\xb4\x23\x63\x7d\x77\xcd\ +\xae\x75\x44\x1a\x81\xd1\x9f\x80\xe7\x66\x80\x55\xfb\xd2\x53\xb8\ +\xc4\x7b\xa4\xf3\xac\xe5\xf9\x38\x24\x47\xed\x9c\x42\xb2\x62\xfb\ +\xb5\xe1\xcf\x1e\x0e\x56\x23\xe7\x9e\x3a\xdd\xbd\x02\xe1\x30\x6f\ +\x6c\x01\x54\xea\xb2\xc2\xf4\xc1\x23\xd4\x74\x7c\x83\xaf\x64\x60\ +\xb5\x89\xa3\x38\xe0\xcb\x8e\x59\xe3\x9e\xd4\xf6\x0a\x2a\x7a\xa2\ +\xd2\x7b\xcf\xd0\xe9\x2b\xa0\x41\xc4\x6b\xd7\x35\x83\x19\xb6\xd4\ +\x30\x54\xe9\x83\x74\x1b\x15\x75\x8d\x68\xe7\xa0\x47\xd9\xb3\x73\ +\x4d\xc7\x6f\x21\x82\x9d\xc6\x9c\xfe\x18\xab\x5e\xcf\x8b\x23\xe2\ +\x1c\x70\xbe\x62\xf4\x2f\x87\x8e\xc3\x67\x01\xa6\x56\x7b\x49\x74\ +\xd7\xd1\x1c\x0c\x97\xb9\xdb\x11\x15\x4e\x14\x20\xca\x31\xea\x70\ +\x4e\xae\x23\x95\x34\xc2\xab\xb6\x21\x8f\x51\xa3\x7a\xdb\x30\xa4\ +\x04\xe2\xbc\x42\x20\x6f\x10\x6d\x68\xfa\x34\xc2\xb2\x8c\x46\x05\ +\x56\x49\x50\xc5\xe8\xe8\xbd\x80\xb9\x64\xac\xa0\x8f\x6d\xaf\x61\ +\x0e\xd5\xe0\x55\xeb\x26\x21\x13\xf1\x42\x6f\xa0\xcf\xed\x13\x50\ +\x79\xeb\x38\x01\x11\x1b\x26\xe9\xb6\x7f\xbd\x33\xd6\x18\x25\xe6\ +\x37\xca\xe6\x98\x94\x20\x15\x7c\xee\x93\x18\x89\x21\xc7\x5d\xf4\ +\x43\x80\xc9\xc6\xd9\xd7\x78\xf7\x4b\xed\x64\x17\xac\x29\xe5\xfa\ +\x7a\x73\xcf\x63\xb0\x67\xa8\x18\x96\xfb\x0f\x37\xcb\x9b\xd7\xef\ +\x96\xd7\xd7\xef\x96\xfb\xd5\x8c\xf0\x7a\x66\xc7\x8e\x1d\x3b\x76\ +\x34\xec\xdf\x50\xdb\xb1\x63\xc7\xe7\xc7\xe4\xc1\xb0\x03\xe2\x2f\ +\xf1\x3c\x77\xa4\xc6\xcd\xe1\x6a\xb9\x7e\xf3\x6e\xf9\xe1\xa1\x3d\ +\xee\xf3\x31\x12\x6f\x1a\xa2\xe5\x32\xe8\xc3\x70\xcc\xca\x32\xd7\ +\xcd\x15\xc0\xaf\x36\x69\x70\xf2\xfd\xf6\x58\xa5\xba\xb0\xad\x61\ +\x2d\x58\x33\x43\xc1\xb9\x53\x46\x19\x36\x50\x0f\x77\xa3\xf5\x31\ +\x6c\xb7\xfd\x0b\x3e\xe7\x41\x28\xba\xf6\xe6\xc6\x62\x5a\xb8\x89\ +\xa1\xe7\x9f\xe4\x8a\x0c\xd6\xc5\xc8\x7f\x01\xe4\x23\x07\xa3\xa8\ +\x0c\x06\x7c\x62\x18\xd1\x1c\xf4\x42\x8c\x35\x70\xa5\x6d\xc7\x19\ +\x19\x33\x93\xc2\x1c\xe6\xb5\xf4\xb2\x8f\xcf\x83\x52\x4b\x89\x86\ +\xac\x35\xbe\x19\xe9\xd1\xf6\x55\xc1\x46\x82\x94\x35\xcc\xcf\x91\ +\x67\x80\x88\x31\x74\xf3\x82\x9b\xec\x3c\xf0\x47\x06\x6c\xc4\xd3\ +\x36\xe4\xe9\x99\x6b\x5c\x56\xcb\xd5\x97\xce\xfd\x52\x6b\x4d\x6c\ +\x9c\x92\x6d\x9e\xf5\x8c\x2b\x26\xcf\x3d\x47\x17\xc7\x75\x67\xa1\ +\x8c\xf2\xc2\x93\x37\xd9\x7e\x12\x1e\x97\xe9\xd7\x0d\xae\x2d\x57\ +\x2b\x9b\x30\x4a\xd7\x3f\x2c\xd5\xeb\x34\x2b\x78\x3d\x36\xde\xdc\ +\xc0\xe1\x37\x9c\x60\xf0\x8e\xe7\x9c\x64\x82\xa4\x81\x0c\x25\x89\ +\xf9\xdd\x29\x54\x20\x6a\x86\xef\xf7\x3d\x9f\x91\x94\x0c\x36\x32\ +\x36\x42\x13\x24\xbe\x64\x62\x34\xf8\x87\xf6\xcd\x27\x0a\x27\x7d\ +\x6a\xac\xc3\x20\x8e\x08\xbe\xf3\x47\x30\x39\xb0\x32\x87\x04\xee\ +\x14\x9f\x07\xeb\x83\x4b\xca\xe0\xca\xd8\xe6\x3a\x27\x50\x6d\xe0\ +\xc0\xdf\x31\x6e\x5a\x8e\x96\x8d\x9b\xa0\x7d\xe1\x47\x5f\xee\x1f\ +\x1e\x96\xe5\xfa\x76\x79\xfd\xc5\x57\x8c\x37\x8c\xc5\x76\x7c\x74\ +\xe4\x2e\xb7\x83\x63\xe7\xed\xcd\xf5\xeb\xe5\xea\xe1\xcd\xf2\x70\ +\x1f\xaf\x7a\x38\x6c\x7c\x01\xb3\x73\xa3\x3b\x3c\x8c\x06\x90\x1b\ +\x66\x02\xe7\x52\xe3\xab\x7a\xad\x15\xe5\xbd\x6b\x43\x34\xd1\x36\ +\x20\x58\xd7\xc5\x3b\x40\x99\x0b\x01\x78\x2e\x70\xf5\x04\x24\x6b\ +\x24\xec\x48\xf0\x33\xbf\x81\x74\xc4\xea\x3e\x69\x76\x23\x65\xe9\ +\xba\x51\xde\x08\xdd\xc3\x00\xde\x6a\x69\xd4\x6d\x9b\x24\x19\xc6\ +\x72\x7e\xcd\x15\xc6\x4c\x1c\x89\xab\x2b\xbb\xe6\x82\xcf\xa8\x4d\ +\xd4\xf6\x4e\x83\x1f\x37\x64\x29\x16\x8a\x41\xa8\xb8\xee\x67\x5a\ +\x6c\xae\xbf\x24\xd4\xed\xa0\xfe\x28\x30\xb7\xaf\x0d\x89\x61\xb1\ +\x5a\x5a\xb3\x1a\xc1\x61\x58\x85\x67\x7a\x43\xa5\x95\x87\x39\x1a\ +\xdf\x2b\xaa\xf7\x32\xe0\xd1\x09\xfb\x53\x01\xf3\x59\xc3\x41\xf9\ +\x18\x53\x0f\x35\x63\xb6\xa7\x4f\x75\x69\xe2\xa6\x3e\x02\x4f\x5e\ +\x48\x0f\x2f\x13\x47\x2f\x6b\x96\xe2\x95\x2b\x34\x31\xf8\x63\x98\ +\x08\xb2\xc5\x6c\x2e\x39\x36\x76\x39\x7c\xe6\x90\x3d\x8c\x89\x46\ +\xc0\xea\xbc\xb8\x68\xbb\x94\xce\x69\xa8\xf4\x5a\xdf\x9e\x8d\x32\ +\x46\xa3\x30\x5d\xb0\x33\x9b\x1d\xeb\xf1\x7e\xc0\xaa\x0c\x7a\x6d\ +\x7f\xbf\x1d\x1c\xe5\x18\x78\x6f\x73\xa3\x1f\x01\xb3\xab\xfb\x54\ +\xe4\x1c\x1d\x86\x79\x13\x41\xf4\x43\x83\x4a\xd9\xc8\xfb\xe6\x23\ +\xee\xe3\x4e\x3e\x3e\xde\x2e\x77\xaf\x7f\xbe\xdc\x3d\xdc\x18\xbd\ +\x55\x60\xc7\x8e\x1d\x3b\x76\xcc\xb0\x7f\x43\x6d\xc7\x8e\x1d\x9f\ +\x07\xf5\x39\x71\x7c\x70\x9b\x3d\xc8\x55\xfd\x39\x38\x5a\xa3\x16\ +\x73\x1b\x3f\x01\xff\xfd\xeb\xb7\xcb\x1f\xfe\x70\xbf\xdc\x7f\xc0\ +\x47\x75\x64\xf9\x8f\x41\x7b\xf7\x81\x1b\x26\x79\xbe\x13\x01\x8f\ +\x06\x42\xa8\x4e\x17\xb0\x67\x7a\xf7\xfd\x4d\x4c\x7b\xdb\xdb\x54\ +\x61\x65\xa0\x45\x88\xea\xa6\x3d\x6a\x8a\x8f\x37\x11\xbe\x6c\x97\ +\xa9\x35\xa3\x33\x1d\x72\xb4\xdd\x34\xad\xc1\xd3\x1e\x51\xa7\xd1\ +\x3a\x6a\xc2\xc5\x76\xf2\x0d\x19\xf4\xda\x4e\xb7\x01\xef\x1d\x6d\ +\xb9\x30\x4a\x7d\x8c\x66\xd0\x16\xc1\x0f\xe2\xf4\x71\x54\x90\x7a\ +\xe3\x06\x37\xc5\xd6\xc4\xfb\x20\xb5\xa1\xbd\x41\x23\xe4\x34\x01\ +\xd1\xbb\xcd\x43\x39\x78\x51\xb6\x21\xd6\x06\xc4\x9e\x5b\x6b\x0c\ +\xfc\x38\x27\x36\x7a\xf5\x46\x49\xe7\x47\x34\x80\x75\x66\x85\x46\ +\x98\x46\x39\x8e\xad\xa4\x5e\xf5\xa7\x83\xa7\x6d\x17\xb2\x5e\x72\ +\x8f\x5c\x56\xeb\xe9\x6b\x3e\x17\xa7\xb4\xab\xf8\xd1\x04\x0b\xf2\ +\xab\x7e\x24\xdc\xce\x33\x3f\x7d\x5b\xc4\xaf\x02\xeb\x31\xa4\x0c\ +\x1f\x67\x6e\x9c\x9b\x2d\xb5\x9a\x54\xf7\xf7\x89\x00\xcd\xfa\xf1\ +\x68\x1b\x35\x03\x3c\x32\x0a\x07\x92\x27\xcc\x4a\x51\xbd\xbf\x58\ +\xe3\xe4\xe9\x6d\xa3\x2d\xd0\x11\xf7\x3e\x9a\x1c\xc2\xce\xd1\xe6\ +\xd1\xcd\x49\x8b\x15\x42\x8f\x61\xf5\xdb\x76\x24\xdd\x64\x9a\xd9\ +\xae\x83\x03\x43\x76\x04\x0c\xd8\x22\x37\x6d\x56\xc5\xeb\x7a\xe9\ +\xab\x59\xc7\x10\xbb\x6e\x94\x25\xe8\x87\x20\x7a\x18\x01\xae\xf0\ +\x34\x47\xa9\xcd\xe3\x9b\xed\xfb\x5b\x5b\x49\x0d\x3f\xcc\xf1\x04\ +\x9f\x55\x51\xeb\xf1\x43\x2f\xfc\xf3\xcb\x86\xb8\xe7\x3e\xd8\x8b\ +\xdc\xeb\x2f\xbf\x5a\xde\x7c\xf9\x13\xb3\xa5\x04\x7c\x86\x1d\x9f\ +\x03\xb6\xef\xed\xeb\xeb\xb7\xdf\xda\xf1\xba\xb3\x43\x85\x6f\x54\ +\xe3\x99\xaa\x1c\x4b\x1e\x5f\xc1\xbf\x71\x2a\xe8\xd2\xa8\x58\x53\ +\x35\x63\x82\xac\xdf\xce\xb5\xb1\x48\xbd\x93\x11\xe9\x22\x19\x51\ +\x24\xb4\x3b\x56\x55\x33\x42\x62\xa8\x61\x70\xa6\xf5\x75\x5a\xbf\ +\xfe\x30\xf6\xb3\x6b\x95\x8a\x69\x75\xd4\xe4\xf5\x5a\xaf\x43\xb7\ +\x5a\x24\xec\xf1\x1a\x8e\xc1\x2b\xc2\x6d\x16\x81\xc1\x5a\x78\x8c\ +\x10\x0a\x6b\x9d\xf1\x7c\x82\x01\x4c\xae\x17\x50\x32\x47\xeb\xe4\ +\x13\xee\xe4\xac\xdc\xb6\x4e\x10\x9b\x87\xae\xbf\xcf\xb4\x3d\x84\ +\xb1\xcc\x67\xd0\x76\xa4\x5e\x3b\xb6\x62\x70\x81\x46\xf9\x5c\x75\ +\xbf\x8f\xc8\xdd\xde\x61\x5c\x47\x81\x39\xee\x37\x56\x56\xdb\xb2\ +\x92\x3f\xd1\x3f\x15\xa8\xff\xfc\x2a\x17\x02\x13\xaa\x11\x9d\xf3\ +\x7c\x3c\xb3\xd4\x2a\xfd\x82\x7a\x75\x4b\xca\x59\x66\xa8\x91\x1e\ +\x64\x15\x1a\x53\x2a\x66\xe9\x33\x6e\x13\x26\x9e\xea\xcb\x39\xa0\ +\xeb\xb6\x11\x31\x1a\xa6\xb9\x86\xe0\xfb\xb0\x7b\x95\xa3\x2d\x62\ +\x15\x00\x66\xe7\x62\x49\x28\x26\x07\xde\x13\x60\xc4\xa0\xd1\xfe\ +\x75\x57\x5b\xe6\xf5\xd7\x20\x80\x10\xc3\x99\x1b\xf7\x6d\xe5\x18\ +\x7c\x55\xd6\xaf\xf2\xab\x6f\x76\x16\xb2\xa6\x7c\x1b\x53\x55\xf2\ +\x73\x4b\xa5\x33\xb8\x09\x4d\xa9\x5b\xe2\x04\xfd\x55\x92\x65\x94\ +\x1c\x02\xeb\x0d\x93\x22\x77\x4a\x26\x21\xbf\xf2\x63\x25\x06\xf1\ +\xdc\xc4\xa5\x59\x17\xe2\xc3\xd5\xc3\xf2\xfd\xfd\xe3\xf2\xee\xf0\ +\xab\xe5\x70\x73\xdb\x3e\x18\x3e\xeb\xcd\xe7\x8e\x1d\x3b\x76\xec\ +\xc8\xfb\xe6\x8e\x1d\x3b\x76\x7c\x72\xf0\xc1\x2e\xda\xa5\xc0\xc3\ +\x60\x7d\x7a\xac\x36\x70\xb4\xe6\x20\x36\xed\xd5\xf5\x61\x79\xf5\ +\xd5\x77\xcb\xc3\x72\xb7\x7c\xe0\x4f\x6e\xb5\x12\xfa\x49\x5d\x7e\ +\x90\x60\xb6\xb2\xdb\x14\x1e\x17\x3f\x3e\x64\xb7\xc8\x1c\xf3\x37\ +\xee\x99\x5e\x8c\x02\x71\x18\xd5\x38\xd8\x3f\xb3\x35\x27\xd7\x58\ +\x35\xd9\xca\xaa\xcc\x88\x4d\x74\x5b\x1c\x46\x80\xbc\x6d\xbf\x8d\ +\xbe\xcd\x3e\x87\x5b\xde\x57\xad\x3c\xbe\x71\x81\x49\x17\x99\xa1\ +\x2a\x1a\x81\x7e\x0b\xe7\xce\xa5\x8d\x10\x8c\x0c\xf8\x9b\xc5\xab\ +\x47\x7c\xc7\x10\x9c\x65\x57\xbd\x60\x8e\xbf\x25\xf3\x60\x48\xc3\ +\x68\x75\x88\x30\x14\x6e\xcd\xde\xe2\x30\x16\x13\x18\xe8\xa2\xa7\ +\xe1\xa3\x57\xd3\xdb\x21\xdf\x3a\x86\x07\x70\x97\x58\xc1\x56\x2d\ +\x30\x13\x1b\xb8\xdd\xc8\xb1\xc4\x0d\x49\x43\x0a\x22\x69\x02\x44\ +\xc6\x76\x1e\xce\x57\x7e\x3a\x5c\xb6\x05\x15\x2f\xbd\x35\x97\xed\ +\xc7\xa6\xbe\x64\x1d\xe7\x6a\xfb\x19\x26\x88\x0f\x47\x57\xc0\x79\ +\x66\xc3\x3c\x6a\x41\x9e\x52\x35\x6a\x76\x26\xb4\xf3\x4d\x0a\xa7\ +\xa1\x89\xc2\x42\x48\x41\x25\xad\x74\x23\x64\x62\x64\x3c\xd2\x53\ +\x0b\x18\x97\xd7\x25\x13\xcc\xc1\x3c\xb4\x1b\xea\xa6\x76\x21\xf2\ +\xba\x4e\x5b\x44\xa5\xb2\xa1\x64\xdc\x5c\x44\x75\xc0\x7d\x31\x4c\ +\x80\xf7\xbc\x98\xd4\xef\x91\x5e\x44\xbf\x55\xc2\x82\x1e\x26\x5c\ +\x03\x43\x83\xfd\x83\x6d\x8d\x57\x7c\xc6\x9d\x67\x08\x23\x8d\x18\ +\x8b\x8e\xbb\x5b\x2e\x0d\xcc\xe7\x84\x6b\xc1\xfb\x1a\xda\xbe\x49\ +\xa3\x99\x59\xa4\x8b\x76\x76\xb7\xe1\x00\x83\x9d\x62\x13\xfe\x9a\ +\x5a\x4a\x68\x71\x36\xb6\xb2\xd8\x6f\xa1\xc5\x9f\x7a\xbc\xc6\x3e\ +\x50\x7d\xdc\x6b\x0f\xb6\x0d\x57\xcb\xcd\x9b\xaf\x96\xfb\xbb\xd7\ +\x25\x0f\x90\x6e\xc7\xa7\x05\xf6\x3b\x8e\xd7\xb2\xdc\xdd\xbe\x5b\ +\x6e\x96\xd7\x76\xcc\xae\x8d\x01\x8f\x23\x84\x06\xcf\xc7\xfe\x98\ +\x09\x6b\xd6\x8f\x66\x39\xa6\xf3\xc4\x0e\xb8\x7e\xb8\x1a\xeb\xfa\ +\xf9\x0d\xe4\x0a\xd2\x71\x65\x17\xd5\xf5\xc2\x98\xf7\x88\x52\x91\ +\xc6\x00\xcb\xd1\xa9\xda\x87\xcb\xc2\xa3\xae\x77\xa5\x26\x46\x39\ +\xd6\x38\x8c\xbe\x35\x05\x7c\x1e\xd5\x02\xcc\x40\x6d\x5a\x51\x57\ +\xd3\x42\xcf\x21\x09\x57\x64\x6e\x01\x39\xaa\xed\xcb\xf4\x4a\x01\ +\x94\x8f\x7a\xbc\x91\x0c\x05\x8a\xcb\x68\xcc\x4b\xc8\xb0\xb1\x98\ +\x6b\x80\xb4\x86\x99\xc2\x5c\x59\x5c\x05\xd7\x62\x8d\xb4\xc7\x80\ +\x6a\xb5\x33\xad\xb1\x62\xc8\xd1\x69\xcc\x49\xb4\x32\x3d\xb6\x78\ +\x22\xf6\xb5\xcd\x53\x57\x71\x34\xe5\x0c\x3c\x37\xff\x2c\x60\x92\ +\xb1\x6d\xe2\x68\xf0\x34\x4e\xd6\x3f\x86\xf3\x13\xab\xd2\xaf\xa1\ +\x35\x70\x46\x74\xa1\x95\x6e\x96\xe8\x1c\xfb\x63\x7a\x33\xe1\x95\ +\x2b\xa3\xd7\xcb\xa6\xae\x29\x9d\x8e\xde\x07\xa2\x7e\xa3\xa8\xd0\ +\x86\x2a\x72\x4f\x79\xb4\xdd\xf4\x51\x8e\x21\x6b\xaf\xb8\xba\x8e\ +\x86\x6e\x3b\x00\x73\x43\xde\x22\x45\x52\xcc\x40\xcf\xe4\xbe\x1f\ +\x72\x4e\xe5\xc9\x6f\x6c\x89\xc7\x46\x61\xd0\xb6\x24\xd2\x84\xe1\ +\xfb\xb2\x44\x73\x7f\x54\xce\x51\xb6\xbc\x1a\x61\x1f\xbd\xab\x58\ +\xd1\x49\x4a\x82\xb9\xb9\x23\x80\xa3\xd5\x0c\xa5\x42\xad\x97\xf7\ +\x6b\xe7\xf8\x09\x07\xa8\x07\xeb\x1e\xef\x97\x87\x1f\xae\x96\x9f\ +\x7e\xfb\x1b\x23\x6e\xda\x0c\x99\x7c\x6a\xce\x1d\x3b\x76\xec\xf8\ +\xf3\xc6\xfe\x0d\xb5\x1d\x3b\x76\xfc\xf1\xa2\x3e\xe7\xc1\xd6\x03\ +\x20\xc6\x7c\x18\x3c\x17\x87\xe5\xeb\x9f\xff\x6a\xb9\x7a\xfb\x05\ +\x6d\xfd\x1f\x2d\xf9\x41\xa8\x7e\x32\x5e\xe0\x83\x70\x4c\x12\x92\ +\xb6\x1c\xcf\x2d\x44\x6a\xd4\x4f\x31\x09\x75\x39\x36\xc0\x4a\x8e\ +\x86\x7b\x44\x0b\xa6\xad\x37\x01\x42\xe7\x8e\xda\x30\x93\x0f\x12\ +\x6f\xd4\x72\x53\xf2\x4d\x9b\x6d\x7d\x24\xd4\x11\xa6\x77\x0e\x72\ +\xd6\x51\xc3\x2a\xb1\xd7\xa2\x73\xbe\xc2\x09\xf1\x6d\xde\x18\x0d\ +\x69\xda\x5a\xca\x72\x0c\xee\xd0\x64\xc0\x9a\x39\x5c\x43\xab\x44\ +\xf8\x2a\xa8\x3c\x0a\x64\x35\x15\x3e\xfc\xf0\x0f\x40\xd8\xca\x4f\ +\xf0\x49\xd3\xcf\x33\x99\x05\xeb\x32\xa2\xe7\xfb\xb5\x01\x19\x8f\ +\x05\x3c\xf2\x93\x72\x9c\x8f\x20\x67\xf0\x75\x9d\xc6\x5a\x05\x66\ +\xd6\x1a\x7a\xef\xc7\x81\xcb\xd7\x34\xdf\xb6\xe7\xa3\xab\x77\xb4\ +\x78\x1f\xbc\x64\x1d\x2f\xba\x66\x9c\x47\x61\xae\x10\xe7\xdb\x0c\ +\x95\x86\xed\x4d\xe7\x2e\xbc\xf5\x79\xdc\x63\xa3\xb0\x41\xf5\x54\ +\x42\xcb\xe0\x9d\x47\x69\x99\xee\x46\xbb\xf6\x63\x7b\xec\x1a\xf1\ +\x6b\x7d\x8e\x2d\x9e\xdf\x59\x9a\x2c\x9d\x97\x77\x49\x92\x6c\x22\ +\x75\xd8\x3a\xb8\x92\xcc\x81\x01\x46\xc4\x43\x5c\xbf\xee\xe7\xb5\ +\x6c\xa3\xd3\x61\x14\x5e\xe3\x41\xdb\xa8\x78\xd7\x62\xa1\xf8\x8a\ +\x1a\xfe\x9b\xb0\x31\x37\x4c\x34\x40\xa3\x81\xa6\x62\x6a\x80\x46\ +\x43\xfb\x06\x96\xdb\x9c\x89\x54\x11\x11\xa3\x6f\x98\x50\x8e\x08\ +\x58\x21\x58\xfd\x1c\xb6\x66\xfc\x46\x38\x22\xa0\x63\x67\xe3\xff\ +\xe4\x3a\x5c\xe3\x07\x28\xc4\x3f\x2c\x0f\x0f\x0f\xcb\x87\xab\xeb\ +\xe5\xe1\xfa\xd5\xb2\x5c\xdf\x45\xd5\xcd\xa3\xb3\x8d\x27\xa4\x74\ +\x78\x6e\xfe\x9f\x12\xb4\x2f\x6c\x7c\xfb\xfa\x8b\xe5\xed\x9b\xaf\ +\x97\xab\x0f\xb7\x76\xe6\x3f\xe4\x0f\xbc\x73\xe0\x61\x1c\x7e\x70\ +\x89\x2d\x8e\xef\x0c\xc1\x73\x18\x35\xab\x1c\x5d\x77\x25\x90\xa6\ +\xcf\xa8\x79\x47\xac\xf9\x48\xb4\x41\x99\xfc\x1e\x52\xa2\x5d\xe1\ +\x0d\x60\x70\x2e\xbb\xc5\xe7\x06\x37\xbc\x25\x52\x90\xa6\x43\xe4\ +\x36\x14\xa5\x92\xd7\x52\x5d\xb9\xb1\xe5\xba\xa2\x1b\xa6\x90\xe1\ +\x32\x8e\x1a\x88\x7c\x5b\xad\x3e\xe3\xf6\x0f\xd3\xe0\x5e\xcb\xf9\ +\xac\x81\x27\x69\x28\x05\x22\xad\x61\x45\xb0\x8c\x23\x46\xee\x27\ +\x37\x09\x56\x2d\x04\x4c\xba\x55\xb4\xce\x48\xf4\xbb\xc0\xd7\xea\ +\xf0\xf3\xa3\xcd\xd6\x15\x24\xfa\x4a\x52\xac\x75\x73\x94\x6c\xa4\ +\x58\xc3\x00\xb6\xab\x10\xb1\x0e\xd5\x57\x7c\xa3\x71\xfb\xfc\xc0\ +\x7c\xdc\xf6\xa9\xb0\x39\xd7\x19\x8b\xa0\x64\xb5\x87\x57\x58\x45\ +\x93\x68\x11\x1e\x3d\x73\xc1\xe4\x91\x8c\x93\x09\x3d\x2d\x77\x1b\ +\x06\xbf\xad\x44\x19\x7e\x0d\xad\x84\xba\x76\xce\x81\xa5\x36\xb5\ +\xea\xf6\xbd\x06\x8c\x34\xe5\xd7\x80\xd0\x51\xb8\x22\xe4\x34\x4d\ +\x5a\x32\xca\x98\xe6\x84\x5b\xa1\x04\x52\x3f\xa2\x6a\xb2\x9b\x43\ +\x35\xfc\x3e\x44\xa3\x61\xdc\xa7\x88\x6d\xd4\x52\x9d\x96\x31\xa9\ +\xb7\x85\x73\x34\x89\x5e\x3c\x4f\x75\xb6\xae\xbe\xbd\xd6\x80\x85\ +\xa3\x2d\x86\x0d\xab\xbd\x3f\x2f\xef\xd4\xb9\x0b\xfc\x2e\x57\x61\ +\xb9\xf6\x42\x7c\xe0\x46\xe3\xf7\xc6\xed\x99\xf4\xe1\x66\xb9\xbd\ +\xfa\x62\xf9\xf9\x4f\x7f\xe1\x0a\x0b\xf9\x0c\xca\xec\x2b\xec\xd8\ +\xb1\x63\xc7\x8e\x1e\xfb\x37\xd4\x76\xec\xd8\xf1\xe9\xd0\x9e\xf5\ +\x1c\x78\x4e\x53\x7b\x0a\x6a\x5e\xb5\x31\xcf\x38\x97\x61\x42\x05\ +\x2c\x72\x75\x58\xae\x5f\xbf\x5e\x6e\xde\x7c\xbd\xfc\x80\x9f\xda\ +\xb2\xa7\x4a\x7f\x14\xb5\x66\x36\x1f\x40\xf9\xe5\x7e\x3c\x75\x3a\ +\x6a\x61\xf0\x11\x70\x49\xd1\x19\x9a\x59\x48\x43\xe7\xc1\x41\xcd\ +\x5e\xe2\x08\x0e\x43\x86\x3b\xc7\x50\x34\x42\xd3\xc6\x62\xa5\xb1\ +\xb1\xc5\xbc\x51\x01\x3e\x63\xb6\x15\x07\xec\x13\x98\x20\x61\x47\ +\x1d\x81\x31\x6f\x3e\xd8\x3f\xee\x0b\x21\x6c\xcb\xf3\xcc\xe1\xa3\ +\x8c\x89\xd3\xad\x4d\x08\x42\x3c\x35\x56\x13\x3e\xb9\xac\x0f\x48\ +\xe5\xc8\x37\x5e\x18\x27\xdb\xc0\xe5\x7a\x11\x74\xfd\x71\x85\xdd\ +\x97\x33\x88\x68\x01\xc8\xea\x0a\x84\x3e\xb5\xc5\xc1\xf3\x1c\x29\ +\xf0\x1a\xa1\x42\xc8\x0c\xdf\x95\x6d\x0b\x56\x88\x77\x5d\xad\x52\ +\x5f\xb3\xc7\xb1\x58\x03\x8f\x21\xff\x79\x86\xda\xe7\xc7\xb9\xeb\ +\xff\xf8\xeb\xce\xba\xb3\x49\x3a\xbf\x39\x33\xe9\x31\xbc\xa4\x96\ +\x73\xb7\x77\xe8\x1d\xc8\xa2\x9b\x9c\x64\xdd\xa5\x2c\x64\x42\xdf\ +\xaf\xd2\x49\x8c\xac\x69\xeb\xf5\xe7\xa9\x01\xe7\xbd\x6f\x81\x66\ +\xb5\x7b\x87\x1b\xe1\x61\x28\x73\xc1\x95\x4e\x63\x47\x12\xb1\x86\ +\xe0\x5a\xa8\xde\x9f\xcc\xf2\xaf\x6c\x44\x18\x1c\xb8\x2d\x8d\xf0\ +\x7b\x5f\x7c\x9c\x41\x3a\x6c\x20\xe3\x6e\x03\xfc\x06\x18\xec\xf0\ +\x73\xdf\x54\x5e\x31\x21\x7d\x68\xac\xbe\xb4\x64\x2c\xdf\x7c\x1e\ +\xea\x6c\x6e\x60\x25\xac\x9e\x5c\x45\xf3\xd3\x2a\x92\x5e\xbd\x15\ +\xb0\x2d\x8d\xb9\xc6\x0c\x8f\x61\x6d\xe1\x86\xa1\x1e\xeb\xc2\xfd\ +\x13\xf9\xbe\x3d\x68\xe6\x1f\x0e\xfc\xa6\x1a\x75\x26\xe2\x4b\xf4\ +\xf2\xb0\x7c\x38\xdc\x2c\x8f\xd7\xaf\x96\xdb\x9b\x5b\xdf\xa6\xa7\ +\xc0\x27\x7f\x3a\x9e\x9b\xff\x27\x06\x1e\x07\xdb\x27\x37\x76\x6c\ +\xae\x0f\x6f\x97\xc7\xfb\x1b\x9c\xe0\x3c\xae\xfc\xae\x1a\x8f\x1d\ +\x76\x9a\x35\x8a\xd1\xc1\x0e\x8d\xa0\x73\x33\x06\xa0\x99\x45\x57\ +\x41\x81\xd7\xf3\x5a\x55\xe7\xd9\xa5\x5c\x3a\x5d\x35\xe3\x40\x4b\ +\x17\x57\x0b\xd1\xb8\x02\x3a\xc1\x60\x90\xc9\xd1\x72\x93\xf3\x3a\ +\xdc\xf6\xe4\x1c\xe9\x22\x94\x4e\xcc\x4b\x0e\x5d\xc4\xc4\xf9\x90\ +\x64\xf3\x65\x04\x2c\xee\xbc\x93\x35\xb4\x42\x17\x94\x63\x63\xf2\ +\x65\x4f\x91\x6e\x9a\x66\xbb\x7c\xfd\x32\x43\x96\x7d\x6c\x8e\xb5\ +\x22\xa2\x19\x7e\x0e\x6e\x8c\xb5\x7c\x36\xaf\x45\xc8\xc8\x1d\xd4\ +\xe0\x4c\xe3\x51\xcb\xef\x81\x2d\x3f\xbf\x21\x58\xc0\x58\x4b\x23\ +\xea\xb9\x30\xc6\x12\xb3\xc4\x80\xb3\xb3\xd8\xc0\xc1\x9d\x97\x20\ +\x5a\xf8\x88\xe8\xb3\xe2\xc2\x75\xb5\x0d\xda\xc0\xfa\xf8\x24\x4e\ +\xe6\x1a\x4a\x5c\x95\x38\x1a\xdf\x42\x1e\xa1\x5f\xf4\xc5\x1c\xb0\ +\x1d\x21\x8e\x85\x2d\xd6\xc2\x6e\x55\x79\x3d\x8d\xf3\x1a\x11\xb7\ +\x72\x61\xc9\x6b\xa8\x0c\x6d\xeb\x56\x5c\x80\x35\x56\xc1\x9e\xab\ +\xe1\x5e\x0b\x67\x10\x5a\x23\x23\x3a\xc6\x08\xad\x30\xe3\x2a\xa9\ +\xfb\xc5\x14\x43\xb0\x99\x3a\x9e\xe3\xb9\x33\x56\x8a\x7b\x12\x9a\ +\x42\x75\xb4\x96\xc7\x20\x50\x8f\x4f\x82\xba\x36\xce\x5a\xc3\x7a\ +\x55\x04\x45\xe3\x6c\x01\x92\xe5\x1c\xa5\x3d\x56\x0d\x1f\x83\x35\ +\xac\x53\xf3\xe0\x87\x32\xf9\x43\xa0\xc1\xf9\xeb\xb1\xb9\xd6\xde\ +\xbc\xf9\x72\xb9\x59\xde\xc6\x8f\xb8\xb4\x9c\x1d\x3b\x76\xec\xd8\ +\x71\x1a\xfb\x37\xd4\x76\xec\xd8\xf1\xe9\x10\x0f\x79\x2f\x82\xfa\ +\xc4\xa7\x9a\x67\x3c\x05\x6e\x49\x50\xe2\xf6\xcd\x9b\xe5\xf6\xeb\ +\x9f\x2e\x3f\xbc\xb7\xc7\x4a\x13\x42\x8b\x07\xd4\xf6\x01\xf4\x21\ +\x9e\xdd\xad\x8b\x42\xf9\x21\x66\x48\x62\x70\x0d\x9a\x88\xa3\x68\ +\x59\x84\x16\x89\x79\x33\x54\x0a\xc1\x0c\xd7\xe9\x1a\x2b\x5b\x28\ +\x5d\x6d\xe8\xa8\x29\x3a\x03\xeb\x44\xab\x53\x81\xd0\x1c\xfe\xdb\ +\x03\x96\xb7\x5a\x4b\xf3\xbb\xd4\x80\xe7\x94\x3c\x0e\xd6\xa1\x1e\ +\x4d\xe7\x31\xb8\x05\x98\x85\x25\x26\xa7\x75\x98\xd5\x44\x3d\x42\ +\xab\xe6\x73\xc2\xb0\x01\x36\xc6\xa8\x89\xce\x43\xed\xcd\xd4\x16\ +\x5c\x0e\xfd\xe4\x4d\x50\xd4\xa5\x6a\x08\x6e\xbc\x65\x2a\xa8\xf1\ +\x66\x6b\x3d\x5c\xfe\x20\x39\x5d\x53\x38\xa1\xf3\x8d\xa2\x39\xc7\ +\x76\x2c\xd7\x17\xed\xd3\xe2\xbc\x19\x5f\x7c\x5d\x43\xc1\x6e\xdb\ +\xc7\xc9\xba\x60\x8f\x0d\x7a\x13\x97\xe8\x4f\x69\x2f\x9d\xbb\xc3\ +\xf0\x89\x66\x3d\xbb\xd6\x75\x15\xc5\x18\x36\x86\xab\x07\xd7\x2a\ +\x01\x7f\xb2\x15\xe8\x4e\xf2\x86\x76\x9d\xc3\xd8\xd0\xb0\x8f\x8f\ +\xe1\xad\xd3\xd5\x9c\xa9\x86\xed\x6c\xb0\x16\xf5\x2f\x6b\xa1\xc2\ +\x50\xef\xbd\x33\x30\x56\x05\x5e\xc1\x19\x54\x6a\xb5\xb5\x2a\x6e\ +\x10\xbf\x38\x41\xc4\x0c\xe0\x3c\xe4\xa0\xed\x04\x79\x04\xd0\x00\ +\xd9\xe0\xd3\x47\x2d\xab\x4a\x82\x66\x74\x1a\x48\xc0\xe0\xcc\x40\ +\x57\x13\x28\xf6\xf8\x9a\x46\x44\x3d\x47\xb5\xcf\x41\x29\xc6\xc1\ +\xb6\x6e\x55\x22\x08\xdb\x08\x7d\xe8\xe3\x9d\xaf\x18\x3f\xd0\x92\ +\x3f\xd4\xc2\xd8\xc3\xf2\xfd\x07\x38\x77\xcb\xab\x6f\x7e\x6a\x69\ +\x24\x55\x65\xc7\x67\x06\xff\x77\xbb\xc3\x61\xf9\xea\xcd\xcf\x96\ +\xc3\xfd\x0d\x7f\x2a\x5e\xbf\xf5\xcf\xf3\xd5\xae\x7d\x3c\x57\xf9\ +\xbf\x86\xd1\xaf\xf0\xeb\x46\x57\x29\x54\x6a\x23\xb6\x62\x9e\x39\ +\xdc\xca\x88\xa4\x86\xd8\xf4\x3c\x1d\x35\xea\x0a\xef\xa6\xf5\x34\ +\xea\x8a\xc5\x05\x9c\x5c\x81\xb4\x4d\x1e\xa7\x3c\xe1\xa3\x08\xaf\ +\x99\x41\x02\xb1\xd9\x1d\xb0\x81\xac\x0b\xa8\x69\x2a\xec\xd7\xf0\ +\x18\x03\xea\x1c\xe8\x3c\xc3\xf7\x49\xe8\xed\x9e\xee\x30\xad\x27\ +\xd9\xe8\x46\xba\x31\x12\xe9\xc0\xe8\x22\x05\xb9\x12\x4a\xa8\xc4\ +\xb9\x52\xe4\x58\x99\xaf\x2e\xd6\xd8\xd5\xaa\xb6\x21\x6a\x78\xef\ +\x7a\xdf\xaf\x3a\xa3\x62\x46\x18\x68\x13\x38\x3d\x11\x98\xbb\x91\ +\x62\xd0\xda\x2a\xa0\x9e\xf1\x15\xdb\x15\x7b\x9c\xab\xfb\x5c\xc0\ +\xfa\x6a\xdb\xc0\x73\x36\x63\x95\xeb\x04\xf7\xb0\xa6\x45\x2b\xbb\ +\xbc\xd2\x40\x0b\x89\xe9\x63\x59\xab\x0d\x81\xa1\x28\x61\x86\x7f\ +\xf1\x9c\xed\x30\xb8\x2b\x44\xbc\x93\xd5\x93\x3e\x90\x4c\x0d\x95\ +\x67\x28\xd2\x8a\xd9\x58\x65\x1d\xd1\x8d\xfd\xb6\x8c\x92\x4a\x34\ +\x13\x8e\xae\x22\x12\x03\x7a\xde\x07\xe4\xd0\xf0\x51\x2e\xd7\xdf\ +\x5f\xf7\xd1\x35\x0e\x90\x13\xa3\xef\x9e\xb2\x76\x80\x1c\x57\xe7\ +\xe0\x1a\xc3\x44\x0b\x27\x64\xde\xf1\x3e\xd6\xea\xb8\x04\x7d\xe4\ +\xa6\xce\x55\xf1\xc4\x49\xab\x08\x3a\x50\x91\x34\xf6\x52\xab\x0f\ +\xd4\x0c\xd9\xbd\x62\x82\x58\x3c\x74\xb0\xdc\xf3\x35\x6a\xbb\x84\ +\x72\x64\x0c\xca\x33\xc6\x84\xe4\x8d\x62\x9d\x87\xd7\xcb\xbb\x57\ +\x3f\x5b\xae\x0e\x77\x60\x89\xa1\xd4\x8e\x1d\x3b\x76\xec\x38\x82\ +\xfd\x1b\x6a\x3b\x76\xec\xf8\x74\x68\x4f\x77\x2f\x07\x3c\xf9\xa1\ +\xee\x56\xed\xd5\x43\xa6\x30\x04\x2c\xff\x70\x7b\x58\x6e\xbe\xfc\ +\x7a\xb9\xff\x70\x63\xc4\x95\xdd\x20\xf1\xa7\x1f\x3d\xbc\xe4\xff\ +\xdf\x52\xf2\xf4\x60\x1a\xf3\x7b\x5c\xa3\x1e\xa0\x83\x63\xef\x90\ +\x4e\x90\xd7\xb3\x42\x3c\x2c\xbb\x33\x05\x63\x29\x0a\x65\x49\xa8\ +\x34\xc7\x59\xb3\xce\x67\xa2\x89\x4d\xf3\x0f\x9e\x60\x67\xc4\x7b\ +\x7e\x68\x83\x57\x8f\xdc\x8e\xd8\x4e\xb8\xf1\xc6\x4e\xa1\xdc\x27\ +\x6c\xd8\x49\x6d\x74\x27\xe2\x3e\x38\x1f\x6f\xae\xf0\x21\xa9\xcb\ +\xbc\x26\x82\x92\x31\x35\x4c\xa2\xf8\x1c\xc3\xef\xe6\xe2\xe0\x6f\ +\xda\xe2\xc8\xb5\x79\x2b\x34\x5f\xc4\x34\x7b\xb7\x6c\x1f\x4c\x0a\ +\x47\xb5\x18\x4d\x28\x4f\xac\x72\x1a\x63\x1a\x7e\xd0\x18\xce\x00\ +\xbd\x1f\x6f\x6a\x47\xab\x33\x01\x3e\x78\xb2\xc1\xfb\xf2\x06\x55\ +\x60\x10\x13\x9a\xc1\x60\xd8\xd9\x2e\x47\xcd\x7e\x7a\x95\x73\x70\ +\xbc\xf2\xc7\x9e\x1f\x87\x57\x2d\x27\x39\x3a\x59\x4d\x38\x21\x9d\ +\xe0\x12\xfd\xa5\xb5\x13\x67\x24\x9e\x92\x20\x2e\x8d\x8f\xe8\xd7\ +\x27\xb5\x5f\x2b\xb4\xac\xe1\xee\x38\x3f\xf1\x11\xa5\xcc\x2e\x0c\ +\xff\x46\xb8\xeb\xda\x99\xca\x68\xec\x56\xd9\xaa\x56\x7a\x84\xdc\ +\x75\x55\xd1\x0b\xcc\x0a\x4d\x8d\xc5\x21\x73\xf4\x29\x06\x10\xba\ +\xce\xd4\x01\x56\x88\x36\xd6\x6d\x83\x35\x94\x86\xa9\x7b\xa9\x77\ +\xd6\x24\xe0\xd0\xec\x9c\x57\x36\xb6\xbf\x70\xe2\x3d\x16\x81\x81\ +\xcf\xab\x9e\x03\x48\xf0\x6d\x6f\x7b\x2e\xbe\x62\x1b\xd0\x01\xd4\ +\xa5\xe9\x3d\x8d\x20\x81\x62\x3a\x46\xa2\xf9\x59\x37\xb0\xf2\xb3\ +\x13\x62\x3d\x07\xeb\xf1\x15\xf7\x29\xde\x57\xe9\xfb\x8a\xf1\x0f\ +\xf7\xcd\xfb\xc7\x87\xe5\xf0\xfa\xcb\xe5\xcd\x77\xbf\x5a\x1e\x1f\ +\x1e\x72\xfb\x2e\x02\x92\xd4\x66\x78\x52\xd1\x3f\x63\xe0\x00\xb2\ +\xc3\x2b\xec\xe3\xf2\xf5\x97\xbf\x5c\x0e\x0f\xb7\xf6\x24\x85\x67\ +\x2a\xdb\x9d\x78\xb1\xe3\x0b\x5e\xec\xd8\x72\x5e\x7a\xae\xc1\x08\ +\x9a\xe5\x85\x51\x21\x20\xed\x4a\x0e\x50\x66\xab\xd0\xe4\xab\xb4\ +\xad\x3a\x23\x0f\x7f\xc6\x25\x70\x66\x06\x55\x79\xb3\xd3\x0d\x83\ +\xe7\xf2\xc8\xcf\xda\x00\xe6\x30\x06\xa3\x49\x9c\xc3\x97\x18\x43\ +\x70\xc4\x38\x62\xc7\x44\xbc\x86\x70\xef\x90\xaf\xe7\x1a\xc2\x48\ +\xff\xa6\x35\x0d\xc6\xa8\xc3\x37\x46\xf9\x61\x34\x78\x15\x5d\x0d\ +\x89\xce\x37\xa7\xfa\xb4\xc9\x39\xcb\xe9\x0c\x9c\xc9\xbe\xea\xda\ +\x30\xba\x57\xd7\x1b\x56\x12\x73\xf8\x99\x09\xf8\x7a\xcb\xaa\x39\ +\xae\xd2\x4f\xd4\xcb\xfb\x6d\xc5\xac\x50\x72\x1b\xfa\x33\x90\x25\ +\xce\x4d\xf8\x31\xa3\x6d\xcc\xb3\x80\xe3\xa7\xa6\x7e\x85\xd9\x3c\ +\xc1\xf9\xd0\x04\xb5\x02\xd8\x59\x6a\x25\xcf\xd1\x00\xe9\x9a\xe1\ +\x36\x8c\x41\x04\x90\x4a\x85\x03\x52\x19\xcd\x71\xd0\x8e\xab\xa1\ +\xf2\x15\x4a\x89\x6b\xba\xca\x9c\x1f\x46\x98\x32\x0c\x6e\x96\x6b\ +\x2d\x99\xe8\xfd\xab\xbf\x04\xd3\x0e\x03\xa3\xcc\x63\xe8\x64\x72\ +\x7c\x6c\xbc\x43\xc7\x0a\x3c\x5b\x15\xe8\x1e\x65\xc8\x63\x1a\x04\ +\x86\x7c\x1c\x05\xf8\x80\x86\xfb\x82\x29\x93\x5c\x03\x21\x6f\xae\ +\x17\xda\x5e\x8d\xad\x65\x07\x48\xa3\xb5\x94\xfa\xa9\xa9\x95\x00\ +\xd7\xf4\x1c\xd0\x12\x9a\xd5\x54\xb4\x22\x80\x01\x7e\xd3\x99\x6d\ +\x3b\x87\xbe\x8d\x9e\x65\x6f\xe2\xaf\xee\x97\x1f\x7e\xb8\x5f\xbe\ +\xfa\xf2\x2f\x2c\x76\x63\xcd\x14\x35\x69\xc7\x8e\x1d\x3b\x76\x9c\ +\xc4\xfe\x0d\xb5\x1d\x3b\x76\x7c\x1e\x1c\x7b\x68\x5b\x3f\x49\x3a\ +\xc6\x1c\xe9\xb6\x6a\x81\xdf\xaa\x15\xc8\xb0\x19\xd7\x87\x9b\xe5\ +\xcd\x2f\x7e\x66\xf6\xdd\xf2\x70\xff\xb8\x7c\xc0\x87\x74\xc6\xf3\ +\x4f\x25\xe0\x83\x1f\xbe\x19\xc1\x43\xa8\x7d\xc5\x9c\x39\x75\xf7\ +\x24\x1f\x60\xf1\x9c\xa1\x40\xdc\x24\x07\x54\xa5\x4b\xfa\xf8\x0d\ +\x9b\x8a\x8c\xd4\x7c\xd9\xf4\xb1\x0d\x18\x69\xce\x61\x3c\x35\x6c\ +\xc3\xc7\x04\x16\xf0\x18\x1e\xb9\xe3\x81\x5c\x1a\xeb\xfc\xc3\xcf\ +\x40\x24\x6a\xbe\x56\x93\xae\x01\x15\x38\x38\x62\xcc\x30\x2c\x7e\ +\xa1\x26\x58\x9f\x9b\xf1\x2c\xe6\x43\xf1\xcc\xb0\xf5\x80\xb3\x2e\ +\x39\x5a\xb1\x36\xc4\x38\x98\xdf\x04\x5e\xb2\xa0\x6e\xb9\xeb\x43\ +\x6e\xf5\xf9\xa1\x92\x9d\x14\xfa\x47\x35\xdf\x8c\x01\xc8\x4c\xb5\ +\xc1\xe2\xfe\x15\xd0\x1b\x19\xc0\x75\x3e\xb7\xf2\x00\xe5\x37\x86\ +\x39\x4a\x6c\x05\x32\x9e\x28\x31\x40\x15\x54\x31\x81\xf5\xa6\x76\ +\xac\xb2\x52\x3f\x09\xaa\x72\x49\x13\xaa\x0d\x78\xdc\xb7\xe6\x58\ +\x7b\x71\x94\xe2\xd3\xfa\x5b\x24\xf7\x6d\x0b\xc2\x1a\xcf\xb1\x53\ +\xb8\x44\x7e\x8e\xb6\xd3\x54\xc7\xd6\x0a\x77\xab\x46\xe3\x87\x93\ +\xab\xc0\xaf\x03\xd7\xba\xb5\xad\x15\xc6\x39\x95\xd7\x5f\x21\x55\ +\xa1\xea\x8a\xd7\x0a\x36\x56\xba\x0d\xc5\x80\xd9\x57\x4c\x94\x7b\ +\x17\xe2\xf5\x58\x35\x93\x11\x0f\x96\xb8\x6c\xaf\xed\x1a\xbf\x4f\ +\x7b\xc0\x5f\x37\x30\x2a\x8a\x2e\xb6\x03\x23\x62\xc9\x39\x94\x1e\ +\x43\xc4\x65\x0c\x08\x31\x07\x81\x76\xd4\x33\xdb\x43\x6e\xf0\x07\ +\x21\xf8\xc3\x10\xd1\xcc\xf6\xf5\x99\x6d\x44\x5b\xc5\x19\x50\x8d\ +\x15\xb2\xa0\xdb\x09\xdf\x07\x0d\x83\x6f\x0e\x6f\xa5\x96\x5b\xf6\ +\x16\x7f\xd3\xe9\x9a\x7f\xf2\x91\x21\x63\xf1\xcd\xb3\xab\xe5\xfb\ +\xab\xeb\xe5\xf1\xd5\x17\xcb\xe1\xf5\x57\x0b\xfe\x22\x71\x3b\x09\ +\x9e\x88\x59\xba\x2f\x61\xc7\xc5\xf0\x23\xf8\xcd\x57\xbf\x5c\x6e\ +\x0f\xaf\x97\xfb\x0f\xfe\x76\x13\x1c\x9e\xa9\x30\xf2\x14\x89\x7d\ +\x4e\xdf\xcd\xa0\x70\x84\x1b\xce\x3a\xb2\x35\x41\x98\x71\xc2\x18\ +\x0b\x1f\x43\x7f\x27\x72\x34\xb9\x5b\xe8\x1b\x57\x30\x23\x43\x8c\ +\xaa\x2d\x0c\xc2\xfc\x24\xdc\x68\x71\xb3\x21\x01\xa1\x91\xd0\x75\ +\xe3\x6b\x94\x2d\xd0\xb2\x4e\x7c\x46\x9a\xa4\xb7\x0d\x9a\x07\x34\ +\x33\xf0\xc5\x8b\xd1\x7f\x03\x0d\x56\x04\x3d\xe6\x4c\x04\xf0\x4d\ +\x35\x5b\x09\x6d\xed\x35\x8a\xd2\x4c\xdb\x8c\x34\x0d\x54\x57\x62\ +\x86\x88\x63\xe0\x92\x02\xbc\x6f\x85\x8d\xb1\x84\x06\xc7\x90\xda\ +\xd2\x73\x87\xfa\xf1\xf0\x55\xc3\xb2\xc6\xe0\x80\x19\x17\x38\x12\ +\x9a\x63\x95\xa0\x7d\x76\x1c\x2d\xed\xe2\x19\x7f\x5c\xc0\xf2\x5f\ +\x62\x13\xa2\x86\xca\xd5\x92\xeb\xf2\x23\x23\x7f\xae\x6c\xe7\x43\ +\x1b\x7a\x80\x3c\x16\xef\xe1\xd7\xae\x0b\x6b\x2f\xe8\xbd\x5d\x17\ +\x0b\xae\x83\x42\x3e\x70\x4c\x55\x91\x17\x73\x40\x5c\x7f\x21\x98\ +\x4d\x31\x22\x35\x4a\xf4\x2f\x76\xb3\x33\x97\xb1\x40\xb5\xc7\x00\ +\xdc\x75\x7c\xa8\x98\x82\x9e\xd7\xdd\xd9\xc3\x21\xea\x8a\x01\x22\ +\xe2\x6e\x9e\x71\x33\x70\xdf\x6d\x9e\x53\xfc\x07\x6c\xac\x41\xc2\ +\x9e\x20\x2a\x2b\x8c\x7e\xc5\x2a\x16\x05\xc4\xfb\xcf\x92\x1c\xab\ +\x10\x88\xbc\x51\xaa\x67\x72\x1c\xbc\xee\x18\x9b\xe3\x3f\xfe\x10\ +\xe3\xf5\xd5\xf2\xfe\xfb\xc3\xf2\xdd\x17\xbf\x66\x18\x38\x63\xd6\ +\x1d\x3b\x76\xec\xd8\x51\xe0\xef\x70\x76\xec\xd8\xb1\xe3\x53\xe2\ +\xa9\x4f\x6c\xc3\x73\x2e\x01\x6e\xc6\x03\x1b\xbc\xd3\x63\xd0\x1f\ +\xa6\xef\xbe\xf9\xc9\xf2\xe1\xea\x1d\x7f\xfa\x1d\x4f\xb5\x0f\x7c\ +\xb2\xb5\x86\x9f\xc4\xc5\x3f\x13\xe9\x03\x53\x1f\x48\x98\xb1\x86\ +\x57\x14\x98\x1d\xb6\x63\x96\xe5\xdc\x10\x99\x09\x57\x64\xac\x2d\ +\xec\x4d\x50\x03\x2d\x8c\x48\x60\x8b\xfd\x91\x45\xec\x2d\x48\x70\ +\xda\x53\x92\x02\x1a\xa5\x4d\x8c\x82\x21\x0e\x8b\xbb\xcb\x5a\x1f\ +\x12\x61\x43\x09\xf8\x1b\x03\x05\x7c\xf0\x0f\x55\xd0\x39\x21\x2b\ +\xf7\xaf\xb6\x85\xd0\x1b\xa7\xf6\x06\x4a\x18\x7d\xa1\xff\xd0\xab\ +\xc0\x26\x46\xac\xee\x0f\xc1\xed\xc9\x0c\x1d\x85\xba\x5e\x03\x76\ +\x05\xaa\x52\x8a\xf3\x4d\x2d\x40\x1e\x9d\x5a\xc1\x84\x3a\x8a\x4b\ +\xb4\x9f\x1a\x75\x5b\x64\xfb\x31\x15\xfb\x91\x51\xa7\x8a\xf1\x49\ +\xb3\xfb\x09\x4c\x5c\x9c\x6b\xb8\x24\xe7\x1c\xed\x4a\xd3\x9f\x7a\ +\x2e\x98\x14\xea\xa8\xb2\x4d\x82\x6e\x8d\xf8\x5d\x5e\xc1\x4b\xad\ +\xb5\x93\xf2\x89\x8c\xe5\xbd\x27\x86\x92\x54\x3f\x48\x05\xc6\xe5\ +\xf8\x95\xa5\x05\xf9\x37\xb1\xba\x02\x13\x20\x5a\xbf\xf9\x05\x8c\ +\xf3\x74\x25\x8a\x4d\x33\xfc\x2c\x61\xcd\x7f\xb0\xc0\x9b\xaf\x27\ +\xe2\x34\xb0\x36\x8f\xf0\x3b\x5b\x16\xe0\xbe\xca\x78\x69\x06\xac\ +\x85\xeb\x29\x9c\xcf\x65\x1d\x72\x83\xe7\x18\x74\xae\x3f\xe2\xd2\ +\xe4\xfd\x25\xe2\xb2\xb1\x42\xd8\x11\xcd\x5a\xcd\x30\x14\xf3\x2c\ +\x98\x3e\xaa\x59\xf3\x7d\x90\xd0\x82\xb2\x28\xd6\x69\x76\xb8\xfc\ +\x86\x1f\x1c\xf9\x16\x43\x3b\x70\x77\xe1\xcf\x3e\x7a\xe8\x70\x78\ +\x5c\xde\x3f\x1c\x96\xef\x97\x57\xcb\xe1\xf6\xb5\xeb\x3c\xe5\x79\ +\xf0\x43\xb7\xe3\x19\xf0\x23\x81\x9d\x78\xbb\xdc\x5e\x7d\xb9\xdc\ +\x5c\xbd\x5e\xae\xf1\xe7\xa4\xec\x18\xe1\x9e\xc1\xeb\x82\xfb\xd8\ +\xcf\xba\xfc\x53\x9e\xda\xef\xd3\x03\x19\xe4\x34\x36\x00\xf5\x3a\ +\x9c\x4e\x8a\xe5\x10\x18\x74\xed\x02\xf3\x6c\x63\x87\x00\xdd\x95\ +\x78\x96\x6d\xb5\x83\xd6\x59\xcb\x5d\x60\x3b\xa0\x53\xd3\x89\x78\ +\xe9\x39\x84\x59\x6d\xaf\x11\xcd\x99\x94\x25\xba\x38\x60\x5b\x0a\ +\x27\x08\x0c\x6d\xcb\x01\x5c\x73\xce\x28\xc7\xef\x5f\xee\xe7\x31\ +\x33\x30\x0e\x9e\x46\x8f\x8c\xa5\x13\x90\xcd\x24\x77\x9a\x65\x30\ +\xa3\xb1\x42\xb3\xb1\xf6\x2e\x92\xce\x10\x08\x38\x85\x1e\x0b\xb7\ +\x2d\x31\x53\x9b\x90\xf2\xb1\xa8\xb0\xe2\x9c\xd0\x73\xf2\x1c\xb3\ +\xd8\x58\x7f\x36\x59\x0f\x57\xa0\x3f\xad\xfd\xd1\x82\x27\xde\xb9\ +\xdb\x70\x44\x73\x6e\x89\x63\x38\x3b\xff\x92\x89\x8a\x36\x4d\x33\ +\x6a\x89\x89\xed\x83\x9f\x27\xf9\xfa\x5d\x61\xdc\x8c\x26\xe2\x84\ +\xef\xe2\x74\x0a\xaf\xce\xa9\x44\x51\xa4\x24\xb1\xaa\x3b\x7f\x7d\ +\x55\xde\x2a\x26\x4e\x81\x2a\x18\xc5\xa1\xe5\x3d\x77\x8c\x09\xab\ +\x7c\x5b\xcf\x8a\x2b\x48\x7f\x7d\xfd\xad\x18\x69\x37\x6b\x38\x56\ +\xe1\x42\xe0\xb8\xb1\x6e\xe5\x62\x74\xab\x9f\xb5\x63\x94\x93\x07\ +\x5f\xdb\xd6\xe7\xf4\x68\x13\x75\xb7\x9f\xae\xa8\xcf\x52\xc3\xc9\ +\x5a\xc7\xbf\x00\xf3\xf0\x9e\xaf\xcf\xdf\xfc\xe4\x17\x8c\x3b\xfa\ +\x9c\x1d\x3b\x76\xec\xd8\x71\x1c\xfb\x37\xd4\x76\xec\xd8\xf1\x69\ +\x80\x27\xb4\xf6\x0c\xf8\xe9\x30\xcc\xd9\x3f\x28\x8e\x6f\x12\x0e\ +\xcb\xab\x9f\x7e\xbb\x5c\xbd\x7b\xb7\x3c\x2c\xd7\x2e\xce\x75\x5b\ +\x87\xa7\x5c\xff\x22\xfc\xe3\x0f\xf7\xc4\x35\x34\x66\xfd\x56\xc4\ +\x18\xfc\x48\xbd\xe8\x62\x56\x6b\x8a\x0c\x23\x69\xae\x25\xad\x90\ +\x6c\x3c\x75\x57\xde\xe0\xba\x4a\x62\x63\x03\xa4\xb4\xce\x9e\xcf\ +\x3c\x8e\x30\xfd\x83\x09\xf2\xc8\xe1\x38\x40\xf1\x88\x49\xa2\x65\ +\xa9\x53\xae\xb4\xfe\x5b\x09\xf1\x41\x53\x2c\xc3\x43\x70\x90\xcc\ +\x88\xc7\xa3\x17\xad\x46\x48\x17\xdb\x42\x4f\x31\x4b\xa0\xd6\x2c\ +\x35\xbe\xd9\x08\x8e\x88\xb9\xf1\xa6\x27\x6b\x12\xcd\x91\x85\xb5\ +\x75\x92\x4d\xa0\x28\xea\xb9\xba\x7c\x0f\xad\xa1\x16\x42\x7c\xf2\ +\x61\xcf\x2c\x6d\x06\xa5\x61\xac\xdb\xfb\xe3\xc5\x27\x58\x9d\x76\ +\x42\x9d\x2a\xec\xcb\x66\x1f\x8b\x4c\xf2\x4f\x14\x5c\x57\xd8\xc6\ +\xb9\xda\x53\x9a\x8c\xfb\xa9\xb8\x0d\xc5\x43\x53\xaf\x81\xfc\xb3\ +\xa5\xdd\x89\xd8\x04\xb5\x6c\xb5\x09\xd5\x43\x67\xf9\x5d\x89\x0e\ +\x1e\xe1\x95\x55\xef\x47\x01\xff\x30\xc6\xae\x25\xc4\xbb\x4f\xa5\ +\xea\x04\x03\x62\x23\x32\x64\x46\x95\x75\x76\x99\x13\xbc\xa6\x68\ +\x1a\xdc\x43\x8a\x06\x01\x6b\x7e\x6d\xc3\x40\x2c\xd4\x1c\xe2\x1e\ +\x11\x14\x47\x68\x3a\xdf\xcd\x04\xb9\x46\xb2\x62\xe8\x9c\xb5\x1e\ +\xf7\x27\xf2\x20\xfd\x2e\xe9\x6b\x0b\x91\xd3\xd1\x39\xa8\xe1\xdc\ +\x7e\x1c\xf3\xee\xc5\xa1\xe9\x1c\xf2\x47\x7e\x1b\x9d\x32\x16\xed\ +\x6b\x20\x43\x34\xd3\x2c\x7e\x41\x03\x03\xdf\x4c\x43\x8b\xdf\x50\ +\x83\xc2\xba\xfb\xc7\xeb\xe5\xdf\xee\xcd\xb9\x7e\xb3\x3c\xde\xdc\ +\x1a\x8f\xc2\xdc\x92\xcb\x81\xa2\x42\xb5\x2f\xc5\x13\xa7\xff\x53\ +\x05\x76\xc7\xeb\xeb\x57\xcb\xdb\xd7\x5f\x2f\x0f\x8f\x37\x4e\xf0\ +\x5e\x11\x3b\xb9\xec\xaf\x72\xe9\xbc\x00\x6a\x31\x1d\xd0\x76\x60\ +\x19\x5d\x1d\x67\x23\xe2\xa4\xe4\x15\x54\xe2\xd0\x33\x54\xd0\xf9\ +\x9e\xd6\xe5\x10\xe6\x47\xc9\x55\xe3\x20\x1b\xa3\xd6\x6c\x3b\x02\ +\x3e\x1b\x7d\x6f\x6e\x9b\x86\x06\x06\x90\xec\x23\x86\xae\x22\xee\ +\x47\x21\x48\x9d\xf5\x31\x53\x42\xa9\xb9\x1e\x38\x76\x8c\xf8\xdb\ +\xf8\x19\x54\x17\x35\x79\x9f\x31\xc3\x9e\x0f\x25\x81\x21\xdb\x47\ +\xf4\x19\xa5\xa5\x43\xdf\xa3\xd7\xa4\xab\x93\x02\x7e\x70\x9c\xb5\ +\x6c\x17\x30\xd6\x1c\xdc\x06\x0b\xa0\xa2\xc7\x8b\x0a\x26\xdd\xe0\ +\xb0\x5f\x51\x34\xf9\x82\xce\xf7\x6d\xf7\x35\xad\xa5\xc4\x94\x1c\ +\xb1\xde\x4e\x47\x75\xce\x2a\xf4\xe3\xc4\x6a\xbb\x8e\xa1\x8a\x9f\ +\xb8\xcd\x2a\xc1\xdd\xda\x39\x03\x2a\x8f\xb1\x1d\x07\x44\x36\x51\ +\x83\xa3\x70\x33\x51\x45\x27\x82\x42\xe1\x5c\x72\x23\xad\x12\x86\ +\x65\x6b\x94\xc4\x07\x47\xe7\x38\x78\x3d\xcf\x90\x7c\x5f\x08\x03\ +\xcd\x32\x77\x10\xad\x96\x44\xc1\x33\x86\x31\x38\xd2\x82\x92\x0a\ +\x5f\x28\x47\x17\x48\xd6\xb1\xe1\x6a\xd4\x91\xcb\xb5\x05\xe0\x0e\ +\x54\x10\x9e\xe1\x7a\xfc\x80\xac\x2a\x14\x28\x51\xf7\x1e\xc2\xc8\ +\xe2\x8f\xf3\xf5\x40\xb0\xec\xbf\x0a\x94\x09\x13\x98\xd9\x3e\x4b\ +\xfb\x86\x96\x78\xaf\x58\x33\x80\x50\x35\x11\x9b\x66\xef\xf6\x35\ +\x79\xcb\x28\x8b\xe7\x73\xfb\xfd\xab\xe5\x8b\x77\x5f\x2f\xaf\x97\ +\x2f\xed\x35\x5a\x81\x18\x99\xd1\xf4\x3b\x76\xec\xd8\xb1\x63\x8e\ +\xfd\x1b\x6a\x3b\x76\xec\xf8\xf8\xc0\x03\x1a\x9f\xe6\xe8\x7d\x1a\ +\x6c\x3c\x0b\x36\x6a\x08\x86\x7b\xfd\xfa\xdd\xf2\xe6\xdb\x6f\x96\ +\xff\xb8\x37\xea\x70\x63\xdd\xc3\xc2\x27\x4d\x6e\x83\x17\xd5\x87\ +\x93\xf5\x81\x15\x6f\xad\xf3\x43\xcb\xe0\xd0\xe3\x9f\x36\x3f\x91\ +\x1f\x2a\xf9\x87\x27\x1d\xb8\x8f\x86\x1d\xd5\xb9\xdd\x04\x0e\xd8\ +\x43\x1d\xce\x3c\xd6\x16\x8a\x9e\x83\xfc\x8e\x2b\xf9\x8c\xd9\x22\ +\xe4\x07\x7c\xeb\x02\xa9\xb1\x6d\xb3\xe6\x1f\x7a\xb4\x85\xbb\x32\ +\xf4\x91\xc4\xfa\xb2\xb1\x91\xa1\x0f\xca\xe2\xb2\x1c\xa8\x09\x8a\ +\xac\x42\xfc\x24\x1f\x0e\x6a\xf3\x28\x40\xd8\xef\x33\x50\x88\xb1\ +\x7e\x59\xb3\xa1\x4d\xd1\xde\xc4\x00\x4e\x33\xd1\x31\x8c\x9c\x82\ +\x36\xb2\x5a\x26\x28\x49\x57\xa0\xd4\x3a\xca\x7b\x25\x2d\xee\x33\ +\xba\x2e\xc1\x04\x30\x9a\xac\x99\x33\xae\x60\xc6\x6d\x01\xda\x4b\ +\xf4\x9f\x06\x9f\x67\x45\xda\x17\x97\xcd\xde\xab\x8f\xe6\x2b\x30\ +\x08\x36\xf5\xcf\xc0\x53\x6a\x6e\x2c\xcf\x11\xa7\x27\x63\xed\x54\ +\x1d\xc4\x3c\x73\x13\x63\x1d\x8f\xf6\x9a\x04\xae\xef\x30\x47\x5d\ +\x5f\x07\x57\xf3\x18\x1b\x15\x5b\xb3\x88\x6d\xfa\xb9\xce\x20\x09\ +\xc7\x52\xdf\xcc\xf4\xc2\xa8\xb7\xaa\xbc\xd7\x89\xb4\x01\x16\xe6\ +\xe1\xe7\xb4\x68\xf1\xdd\x21\xf0\x7e\xdd\xc7\xbd\x8b\xbe\x0f\x00\ +\x4b\xa4\x5f\xe2\xd6\xea\x9c\x79\xab\x10\x1f\xcd\x5f\x7d\x02\xf4\ +\xc3\x30\x28\xa2\x3a\x1c\xa0\x09\x7f\x85\xcd\x80\x50\x0b\x19\xb0\ +\x59\xe9\xd8\x08\x13\x83\xa8\xe0\xb0\x0e\xae\x9d\x5c\x85\x8b\xfd\ +\xf5\xc4\xf7\x27\x7e\x9b\x09\x7f\xaa\xe8\xc3\x87\x0f\xcb\x87\xe5\ +\x76\xf9\xf2\x37\x7f\xb5\xdc\xa0\x20\xbe\xe9\x36\xa9\x70\x12\x4a\ +\xc1\x58\xed\xa7\xe0\xa9\x79\x7f\x12\x18\x37\xde\xfd\xc3\xf5\xed\ +\xf2\xfa\xf5\x77\xcb\xfd\x0f\xb7\xcb\xe1\xe6\x86\x1f\xe2\xf1\xea\ +\xe5\xc9\x37\x5c\x23\xb4\xbd\x05\x7b\x1e\xb6\xc4\x95\xa7\x6d\x9d\ +\x7f\xad\xe0\xcf\x06\x15\x65\x0d\x63\xc2\x66\xa0\x87\xa2\x67\x6d\ +\x0d\xb6\xdd\xbf\xe0\xb0\x6f\x50\x0c\x3c\xfa\x50\x71\x08\xbb\xf4\ +\x1c\x62\x5f\x66\x1f\x21\x80\xfb\x59\x3e\x05\x5e\xb3\xde\x7d\x9b\ +\x44\x7d\x5c\xa5\x3e\x29\x69\x3e\xff\xb0\x03\x30\x5a\x2b\x2e\x19\ +\x75\xe2\x09\x9b\xad\x50\x3e\xa2\x76\xf3\x30\xf8\x9f\x9c\xac\xc7\ +\x25\x62\x31\xca\x6b\x00\x63\xad\x06\x82\x12\x64\xfa\x58\x7b\x9f\ +\x29\x67\xf3\x85\xf7\xd3\x0b\xda\x07\x86\x2e\x27\x2b\x9d\x89\x98\ +\x62\x0b\x1e\xf6\x7f\x7f\x94\x38\xba\x7d\xb3\xc0\x4b\x6c\xe7\x58\ +\xa3\x1e\xa1\xd8\x97\x9d\x04\x4e\x39\xc8\x8c\xa1\x0b\x51\xd1\x76\ +\xaf\xa5\x80\xc5\x5a\xb8\x08\x2b\xa6\x74\x4b\xac\xe1\x72\x5a\x35\ +\x74\x02\x7c\xe1\x5f\xac\x23\x63\x45\x14\x9a\x11\xba\xbf\x69\x0e\ +\x0e\x13\xbb\x18\xf3\xf5\x18\x3a\x7a\xa2\x41\x9e\xd6\xb0\x51\xc2\ +\x03\x11\x4c\x8d\x19\x49\xd7\x58\x74\xed\xfe\x34\x83\xc7\x56\x0a\ +\x11\xdc\x7c\x73\xaa\xc0\x16\xda\xed\x8f\x02\xf8\xe4\x32\x00\x23\ +\xf6\xfb\x70\x1a\x00\x92\xa5\xdc\x90\xfb\x4f\x63\x4d\xef\x62\xe8\ +\x44\x38\xc8\x58\xa7\xa9\xfa\x29\x2d\xd0\xcb\x1b\xec\x9e\x89\xfd\ +\xe4\x61\xe8\xf0\xa4\xec\x7b\x2e\x2d\x3c\x40\x99\x85\xbf\xba\xf3\ +\xf0\xe1\x6e\x79\x75\xfb\x8b\xe5\xee\xe6\xb6\xbd\x35\x8d\xbe\x8d\ +\x3b\x76\xec\xd8\xb1\xe3\x18\xf6\x6f\xa8\xed\xd8\xb1\xe3\xd3\x00\ +\xcf\x66\x9b\x0f\x81\x31\xbe\x24\x50\x53\x75\xcb\xbc\xeb\xa9\xfa\ +\x45\x5d\xdf\xbe\x59\x6e\x7f\xfa\xd3\xe5\xfd\xbd\x29\xf1\xa1\xa7\ +\x0d\xcc\xb1\xa7\xdb\x47\x7c\x63\xcd\x29\x73\xed\xa1\x15\x6f\xf8\ +\xaf\xf0\xff\xb9\x14\x78\xd0\xed\x04\x1e\x64\x0d\x90\xd3\xd7\x68\ +\x7d\x26\x37\x1b\x8f\xc3\xab\x87\xf1\x00\x5d\xeb\xf4\xc8\xbc\xc2\ +\x90\x37\x53\xa1\xf6\x8a\x4f\xc2\x17\xc1\x37\x6d\xe0\xb0\x9d\xa1\ +\xd7\x36\xa0\x91\x0b\x9b\x8d\x70\x03\x3c\x3f\x0b\x61\x6e\xd4\x01\ +\xc2\x0e\x15\x7b\x80\x75\xcc\x4f\x26\x34\x6c\xa8\x41\x12\x80\x85\ +\x1a\xfe\x96\xa1\x7d\x30\xc4\x95\x41\xec\x43\x74\xee\xf9\x18\x21\ +\x1b\x3d\x1f\x39\xfe\xc6\x14\x3e\x43\x1e\x8b\x5a\xcc\xa1\xad\x2a\ +\x88\x87\x21\xe4\x87\x49\x40\xab\x03\x78\xfe\x00\x23\xe2\x4c\x98\ +\xc6\x73\x4b\x6d\xf0\xb9\x34\xbf\x47\x72\x1b\xbc\x84\x42\x6c\x88\ +\x15\x97\xd0\x98\x58\x11\x3d\x6a\xee\xe7\xc5\x33\x57\xa1\x0d\x19\ +\xcb\x54\x7e\x88\x0f\xee\x19\x58\x17\xb9\xa8\x86\x8e\xa1\xe1\xec\ +\x1c\xc3\xb9\x73\x9c\xd4\x4c\x04\xa2\xce\xa9\xdf\x89\xca\xb6\xd4\ +\x40\xbd\x72\x81\xd5\xf5\x63\x89\x7e\x8d\x39\x6a\x38\xcf\xf5\x62\ +\x3b\xa0\xf7\xeb\xbf\x43\x97\xdc\x0d\x61\xa0\x43\xae\xb3\xab\xb5\ +\x54\x1f\xb6\x7c\x8e\x6d\x95\xed\x43\x7f\xd8\x1c\xe4\x72\xf4\xb0\ +\xa9\x2b\x67\xd9\xfc\x20\x23\xe2\x9e\x67\x8c\x8d\xba\x4f\x7a\x10\ +\xbc\x23\x75\xe2\x64\x97\xe6\xb9\xd6\x08\xdc\x0f\x39\x18\xef\xfb\ +\x88\x4d\x9a\xd0\xe9\x96\xa5\xf5\xa0\x69\xdb\xe0\x44\x38\xd0\x7b\ +\x1d\x18\x52\x1c\xa3\xaa\x58\x8d\xee\xbe\x68\xe0\xc2\x0c\xb9\x60\ +\x68\x9d\xc3\x8c\xbc\xc7\x73\x83\x49\x19\x22\x16\xfc\xe1\xfa\x9a\ +\xbf\xa1\xe6\x65\x6c\xe5\xf6\xba\xfc\xfb\xf7\x8f\xcb\xe1\xd5\xbb\ +\xe5\x9b\x5f\xfd\xb5\x6b\xd9\x0b\xbd\xb7\xe3\x53\xa2\xee\xfb\x07\ +\x3e\x42\xfd\xf4\x9b\xbf\x5a\xde\x5e\xbf\xe2\x39\xc7\x0f\xf5\x1e\ +\xfd\x55\x10\xca\xab\xc7\x07\x3b\xae\x7e\x9e\xe2\xf4\x80\xa2\xde\ +\x13\x7a\x04\xef\x27\xc2\x71\x84\xe4\x0c\x65\x62\x3d\x2b\xb2\x71\ +\x86\x9e\x46\xd3\x84\x7e\x48\xf2\x4a\xc2\x10\x34\x64\x3c\xae\x03\ +\x0e\x41\x6a\x4c\x1b\x08\xa3\xbb\x6e\x30\xca\xae\xb0\xfd\x8b\x55\ +\xd5\x2d\x69\x29\xc3\x56\xd7\x1a\x36\xba\xeb\x84\x68\x37\xea\xb1\ +\xe0\xdd\x84\x48\xcd\x0a\x25\x42\xd3\x66\xb6\x11\xb5\xfd\x76\x51\ +\x33\x63\xc6\xca\x63\xa8\x92\xce\x69\xb6\x2c\x97\x17\x4d\x0d\x04\ +\x8a\xe9\x76\x3c\x58\xf9\xd9\x69\xdb\xe4\x0b\x9c\x23\x0e\x8a\xff\ +\x23\xe1\xf9\x4e\xf7\x58\x71\x03\x31\xea\xff\xd8\xb1\xda\xde\xe7\ +\x60\xd8\x4f\x9b\x75\x23\x88\x41\xa7\xf4\xa0\xa5\xdb\xba\x82\xd1\ +\x3f\x02\xe5\xf3\x0b\x4e\xc9\x75\x3a\x2e\xcd\x16\x4b\xb7\x0d\x44\ +\xe3\xad\x8b\xeb\x99\x80\xcb\x11\x7d\xf0\xe2\x04\x17\x68\x68\xb6\ +\x7a\x1f\xe4\x06\xe0\xc4\x19\x1b\x82\x3a\x2d\xc1\x7b\x05\x46\x7a\ +\x44\xad\xd5\xc9\x0b\xcf\x01\x63\xe1\x68\x6a\x04\xc2\xa8\x73\xc2\ +\xf4\xeb\xbf\x40\xba\xec\x1c\x9d\x6f\xe3\x66\x5c\x9c\x8d\x19\xa6\ +\xa1\x13\xa3\xf1\x60\x68\x07\x81\x01\xad\x29\x2b\x2c\xd2\x5d\xe3\ +\x83\x8a\x5c\x19\x47\xac\xf8\x2c\x34\x54\x82\xe7\x8c\xef\xab\xa6\ +\x23\x60\x22\xbc\x3a\x78\x86\xb8\x87\x75\x05\x95\xae\x03\x64\x5f\ +\xba\xc7\xbd\x7f\xff\x66\x79\xf7\xf6\xd7\xcb\x2d\x7f\x78\xd8\x65\ +\x3b\x76\xec\xd8\xb1\xe3\x32\xec\xdf\x50\xdb\xb1\x63\xc7\xc7\x45\ +\x7d\xb0\xab\x76\x85\x9e\xe2\xb6\xe2\xcf\xc1\x58\xb3\x7b\x62\x54\ +\xb0\x3d\x49\x5e\xdd\x5c\x2f\x37\x6f\x7f\xb2\x3c\x3e\x1e\x96\xc3\ +\x35\x78\x7b\xfb\xc1\xd8\x23\xfd\x78\x3b\xc2\xe7\x56\xcf\xe6\x7f\ +\xee\x42\xab\x9b\x2b\x1f\x76\x95\x61\x60\xdc\xec\x8c\x1d\x43\x66\ +\x1d\x45\x57\x4a\xf6\xc0\x51\xa3\x66\xc0\x32\xf8\x26\x26\x1a\x3e\ +\xd0\x62\xa8\x70\x40\x0c\x06\xb3\x9a\xd3\x30\xe8\x30\x8f\xaf\xc7\ +\xd6\xde\xe9\x6d\x46\xc4\xe2\x9f\x3b\xbe\xb3\x98\x13\x63\xf5\x25\ +\x13\x5a\xbd\xa8\x11\x3e\xbd\x4c\xc2\xc0\xad\x73\xb7\xd1\x0e\x39\ +\x45\x0f\xc0\xd4\x37\xda\xda\x3c\xbe\x3e\xd6\xea\xe4\xa8\x1d\x1e\ +\xb7\x41\x11\x1b\xfd\xc7\xee\x3b\xd4\x3c\x78\x5c\x2b\x01\xdf\xd7\ +\x39\x7e\xa8\x45\x45\x52\x66\xd0\x6e\x95\x68\xd6\x14\xd9\x45\x22\ +\x78\xfd\xcb\xa0\x9c\xa7\xe4\x3e\x1f\xcf\x9c\x71\x4c\xdf\xd8\x90\ +\x4a\x0f\xa1\x13\x98\x67\x5c\x54\x23\xc4\xf3\x4a\xdb\x38\x57\xbb\ +\xad\xd3\xb9\xe4\xe8\x4e\x45\x0c\x47\xce\xa3\x84\x34\xa3\xd6\xc6\ +\xf6\xc1\x48\x5c\x7f\x44\x58\x65\x68\xb1\x86\x76\xdd\x09\x65\xa1\ +\x06\x5d\x73\xa3\xac\xfa\xeb\xba\x56\x63\xbc\x46\x39\x34\x25\xac\ +\x2e\xda\x42\x1d\xd1\xc7\xea\x7d\x22\x20\x01\x02\xd6\x18\x87\x69\ +\x5a\xee\x0d\xff\x6a\x3c\xc6\x40\xe5\xd9\x46\x04\xdf\xee\x13\x79\ +\x07\x72\xd0\x41\xcc\xb7\x97\xd1\x10\xf8\x9f\x6d\x0b\xdf\xc6\x8c\ +\xa1\x6d\x61\x1a\x3b\x96\x00\x8c\xf1\xea\x6b\x6d\xe2\x7c\x84\xeb\ +\x1f\xec\xc0\x06\x17\xcd\xc3\x1e\x81\x8b\x75\x1f\xac\x45\xfe\xe1\ +\xf1\x61\xf9\x8f\x87\xeb\x65\x79\xfd\xc5\x72\x7f\xf7\x9a\x1c\xb7\ +\xeb\x53\xc2\x97\xbd\xa3\x43\x7f\x0c\xb8\x8b\xac\x7b\xf3\xfa\xa7\ +\xcb\xdd\xed\xeb\xe5\xf1\xc1\xe3\xbc\x24\x05\xfd\xdf\xb4\x66\xe6\ +\xf9\x6d\x43\x95\x9c\xc6\xf6\xb1\x3f\x59\xa7\xa4\xca\x44\x4e\xcb\ +\x1b\x2a\xac\xa6\x2a\x67\x1e\x0c\xb6\x41\x24\x2e\xe3\xad\x91\xae\ +\x5c\xc2\x9d\x8e\x0a\x78\xf9\x7a\x8f\x75\x0e\x3e\x5b\xd8\xe9\x98\ +\xa1\xad\x20\x1f\xf0\x3a\xb1\xfe\xec\xa2\xf9\x17\x5b\x22\x0e\x1c\ +\x33\xec\xab\xed\x19\x57\xa5\xd6\x0b\x17\x62\x0e\xaf\xd3\x6f\x47\ +\x83\xce\x89\xe3\xd0\x54\x0e\xdd\x4d\x1a\xba\x2a\xa9\xad\x2b\x6f\ +\x71\xf6\x7d\xc1\xe0\x68\x76\xc0\x1e\x6d\x3f\x9c\x55\x05\x13\xb1\ +\x80\x10\xc3\xe3\x2a\xff\xc8\xa1\xed\xca\xed\x3b\x17\x67\x88\x25\ +\x39\xa7\xee\x11\x8d\x1f\x67\x61\x63\xff\x9b\xa4\x2b\x51\x9c\x23\ +\xa5\x27\x70\x75\xcb\xe9\xb3\x71\x8a\x8d\xb1\x5e\x61\x08\x42\x7c\ +\xae\xdf\x06\x58\xe2\x3b\x44\xac\x06\xa9\x95\x5f\x78\x20\x5d\x33\ +\x36\x24\x5d\x80\x66\x8c\xb5\x11\x61\xf8\x90\x6c\x83\x51\x13\x96\ +\xe0\xb6\x1d\x89\x03\x8c\x49\xb0\x25\xac\x7c\xb1\x5b\x5a\x58\x36\ +\xe8\x59\xb5\xdd\x19\x8f\xa0\xd4\xea\x9d\x2e\xb0\x2d\x1b\xe0\xa1\ +\x23\xb9\x84\x33\x5c\xdd\x10\x54\xa4\xa3\xe9\xb4\x6d\xc9\xf7\xf7\ +\x1c\xa0\x7d\xe4\x6f\xf7\x53\x61\xdd\x15\x5e\x77\xaf\x7e\x58\xde\ +\x3f\xfe\x61\xf9\xf5\x77\x7f\xbf\x5c\x1f\xec\x39\x2a\x83\x18\x77\ +\xec\xd8\xb1\x63\xc7\xb9\xd8\xbf\xa1\xb6\x63\xc7\x8e\x8f\x8b\xf1\ +\xe1\x0c\x0f\x6d\x7c\x70\x2b\xa8\xdc\x18\x7b\x09\xd4\x9a\x61\xfb\ +\x50\x16\x97\xfc\x61\x39\xfc\xe2\xdb\xe5\xf1\xf0\x66\xf9\x80\xdf\ +\x52\xd3\x83\x29\xdf\x95\x58\x63\x4a\xbc\x0d\xa7\x7b\xb0\x9c\x32\ +\x01\x49\x8a\x10\xcc\x26\x6a\xfd\x96\x7f\x03\x21\x8b\xb4\x0e\xce\ +\xa9\x8e\x7b\x33\x5d\x65\xf5\x61\xa4\xd6\xd1\x50\xd7\x1e\xad\x80\ +\xfa\xda\x80\x99\x2d\x1f\x86\x3e\x31\xe3\x07\x0e\x4e\xf9\x3c\xb6\ +\xf5\xe9\x43\x87\xd1\x4d\x1f\x65\xf4\xc8\x6f\x42\x21\xa5\x4a\x60\ +\xab\x09\xb4\x0b\x51\x63\x05\x92\xa1\x5e\xff\xa6\x0a\x6b\x8e\x36\ +\x41\x7b\x63\x1e\xe7\x00\x4d\x71\xdd\xde\x2c\x4a\xf5\xf8\x5b\x1b\ +\x36\x36\x79\x62\x9c\xae\xdf\x4e\x0b\xf2\xef\x71\xb4\x4a\x5d\x09\ +\x38\xcc\x1f\x8a\x14\x50\x3f\xf9\x86\xdf\x39\xd0\x7c\x6a\x1f\x0f\ +\x1f\xbf\xfa\xf3\xb6\x61\x9d\xf9\x94\x7a\x4f\xcd\x39\x07\xc7\x75\ +\x2d\x9a\x16\x0c\x35\xc3\xb1\x53\xa4\x65\x3b\x98\x66\xfa\xbe\x04\ +\x0a\x54\x65\xf8\xb3\xba\xdd\x49\x7e\x1a\xfe\xc1\x8b\xf5\x56\xab\ +\xbf\xe7\xf2\x6b\x05\x70\xed\x7a\x75\xf8\xf5\x1e\xb6\x3a\x71\x73\ +\x22\x4d\xd5\xf2\x65\x93\xc8\x01\x7d\x1b\xdd\x02\xf8\xb1\x87\x34\ +\xf8\xff\x28\x03\xb2\x58\xab\xc9\x1d\xe2\x86\x58\xbb\x77\x7a\xb6\ +\x42\x1c\x33\x66\x77\xb3\x2e\xd0\xa3\x7d\xd3\xd4\x0c\xe5\x28\xcf\ +\x87\x82\xd0\x9c\xc2\xa0\xc9\x29\xf2\xf8\x6a\x9f\xe0\x43\x68\x67\ +\xe0\xf2\xcf\x1e\xab\x81\x67\x33\x25\x44\x1c\x31\xb8\x8d\xff\x47\ +\x8d\xb0\xe1\xfe\xc3\xc3\xf2\xdf\xcc\x78\x3c\xbc\x5d\x96\x9b\x57\ +\x46\x62\x46\x6b\x9a\xf8\x53\x20\x96\xa3\xa9\x77\x54\xb4\x9d\x83\ +\x5d\xf3\xcd\x17\xbf\x58\x6e\xef\xbe\x5e\x6e\x1e\xef\x78\x0d\xf8\ +\xee\xf2\x0f\x04\xaf\x0e\xfc\xfb\x53\xdc\x87\x3a\x25\x95\x3e\xdf\ +\xad\x73\xd6\x93\x34\xef\x80\x81\x5e\x57\x28\x82\x28\x93\x0c\xce\ +\x3f\xa1\x98\x09\x71\x43\xac\xe5\xc7\x48\xe8\xce\xb0\xb5\x0d\x06\ +\x08\xa2\xc9\x74\x38\xa1\xe5\x24\x4f\xce\xbd\xe4\x80\xe2\xc0\x8c\ +\xcb\xc8\x6c\xad\xc1\xaf\x77\xff\xad\x7c\x2a\xa2\xef\x1b\x3a\xbf\ +\x9f\xb0\x8b\xf9\x3d\xc7\x19\x03\x0c\xd6\x01\x82\xcd\x60\x84\xd1\ +\x2c\x59\x36\x41\xc3\x3a\x7c\xc5\x36\xb4\x20\x10\xb1\xf0\x68\x44\ +\x73\x2e\x23\xc5\x8c\x2d\x84\x5f\xc2\x70\xb8\x42\xf2\xa7\x3e\xfa\ +\xf0\x3f\x2b\xeb\xdb\xe4\x7f\x48\xb6\x95\x02\x87\x73\x18\xf5\x22\ +\xc2\xa0\x54\xbe\x6f\x9c\x9b\x21\xd6\x17\x76\x8e\x30\x37\x73\x7e\ +\x64\xd0\x5a\x5f\x74\xcd\x1b\x85\x62\x77\x1e\x47\x08\xfc\xd0\x4c\ +\xf4\xf3\x02\x1d\x3b\x93\xa0\x56\xc5\xbc\x8c\xc1\x02\xfe\xd5\x43\ +\x5c\x04\xdc\x2e\xaa\xd9\x39\x6f\xb6\xdc\x1c\x6b\x8e\x21\x5f\xdf\ +\x81\xb0\xab\xa6\x57\x07\x2c\x9e\xbc\x19\xb4\xa7\x42\x43\xc6\xfd\ +\x5c\x85\x2d\xdf\x2d\x6b\xbc\x36\xac\x31\x80\xc1\x79\x7f\xde\x89\ +\x1d\x17\xb1\x76\x6f\x30\x93\x9c\x6b\x35\x74\x28\xdb\xa1\x18\x87\ +\x6a\x0b\xe6\xa4\xdf\x05\x06\x64\x6c\x76\x40\xf1\x03\xb1\xee\x61\ +\xa4\x22\x7d\xe9\x41\x58\x13\x5f\x11\xa1\x84\x64\x5d\xa1\x82\xa2\ +\x2f\x7b\x25\xc6\x1e\x88\x7b\x64\x8c\x5b\xa4\xec\xd3\x1e\xd0\xfa\ +\x9d\x49\x33\xe0\x33\x0a\x41\x95\x1e\xf0\x20\x78\xff\x6a\x39\xfc\ +\xfe\x7a\xf9\xea\xab\x6f\xdd\xdf\xb1\x63\xc7\x8e\x1d\x4f\xc2\xfe\ +\x0d\xb5\x1d\x3b\x76\x7c\x5c\xe0\x39\x0d\x4f\x71\xe3\x33\xe1\x73\ +\x70\x69\xbd\x63\x5a\xc6\xe2\x61\xd2\x86\x3b\x23\x0e\x5f\x7d\xb3\ +\x1c\xde\x7c\xed\xff\x8f\x1a\xfe\xe9\xe1\x95\x1f\xea\x45\x31\xbc\ +\xd9\xc0\xc3\xbf\x7d\xe5\xff\xdd\x02\xce\x2d\xb3\xed\xa1\x56\x6f\ +\x0e\x2c\x3d\x2a\x30\x9e\x1a\x91\x00\xc9\x8c\x74\xe8\x72\x12\x6d\ +\xae\xcd\xd4\x4e\x60\x83\x46\x1f\x68\x68\x1b\x1a\x69\x90\x5f\x39\ +\x38\x23\x17\xfb\xa5\xdb\x0c\xca\x5c\x44\x39\x34\xe0\xe8\xe0\x0b\ +\x6a\x7d\x1c\x41\x22\x91\x66\x4f\x7b\xfd\x81\x83\xcd\x5a\xc9\x6b\ +\x15\x6d\xf6\xba\x8e\x1c\xe5\x60\x7e\xb3\xe1\xd6\x38\x1b\x8e\x1d\ +\x09\xd5\x54\x75\x57\xa6\x8e\x1f\x04\x47\x84\x04\x66\xf4\x0f\x0c\ +\x5b\x66\x68\xd3\x42\xc4\x3d\xea\x28\x34\x1f\x5f\x66\x7b\x24\x20\ +\x27\x8b\xb9\xc1\x9c\xd0\x27\xa8\xed\xb2\x27\xd0\x1e\x79\x1e\x50\ +\x43\xed\x65\xf0\xb2\xd5\x84\xba\xce\xe7\x55\x9f\x57\x78\x4a\x4d\ +\xe6\xd4\xe3\x76\x06\xce\x99\x67\xbe\xc2\x0a\x9b\xd4\xbe\xa6\xba\ +\xb2\x9e\x31\x26\x7d\xf2\xab\x64\x03\x39\x15\x19\x04\x5d\xcc\x01\ +\xca\x5b\xcf\x27\x6a\x89\x59\x39\xeb\x92\x1e\xe2\xc0\x2c\x26\xb3\ +\x9b\xb1\x0a\x75\x83\x0a\x74\x57\x4a\x31\xf3\xa2\xd3\x75\x1f\x5d\ +\x8e\xbc\x88\x1f\xac\xe1\xfe\x02\xdb\xef\x25\xba\x3f\xb8\x30\x06\ +\xeb\x72\x3d\xe2\x21\x09\x1b\x90\xae\x0c\x6e\xc8\x89\x9a\x19\x2b\ +\x68\x5c\x89\xc2\xf4\xc5\xd0\x15\xda\xbc\xc1\x57\x1b\xa3\x4c\xa0\ +\x2e\x10\xc8\x8d\x70\x20\x2a\x49\xdb\x8f\x6e\x41\x5a\xe7\xe9\xf6\ +\x73\xd9\x19\x78\x5d\xa2\x6b\x63\xfd\xb0\xf0\xc1\x62\x0f\x0f\x0f\ +\xcb\xfd\xc3\xcd\xf2\xf6\x67\xbf\x5e\x6e\xaf\xaf\x4d\x17\xf1\x52\ +\xf7\x93\x01\xd3\x7d\xe2\x29\x7f\xfc\xb0\x23\xe7\x07\x8f\xc7\xfa\ +\x70\xfd\x7a\xf9\xf0\xfe\xed\xf2\xfd\xf7\x0f\xf1\x7a\xe7\xa3\x7f\ +\x5b\xc2\xde\x86\x82\x8b\xfd\x38\xfb\xb0\xb8\x61\x24\xcc\x17\xb5\ +\xd2\xce\xe0\xa2\xee\x9c\xab\x20\xed\x31\x2e\xd3\x30\x2a\xd3\x87\ +\x31\x06\x2b\xb0\xe1\xfe\xb5\xce\xe9\x48\xc7\x34\xa4\x1a\x6a\x41\ +\x4b\x84\xeb\x42\x5c\x8e\xc1\xb1\x85\xa1\x6d\xe1\x93\x89\xf9\xa0\ +\x53\x94\x44\x81\xf9\x38\x0e\x3a\x16\xbc\x8d\x51\x06\x62\x3d\x27\ +\x0c\xb2\x49\xc8\x14\x51\x62\x5c\x94\x0f\xa2\x84\xe4\xd0\x65\xd0\ +\x8d\x74\x85\x20\x38\xb4\xce\xa0\x6f\xd8\x36\x28\xa2\x91\x88\x75\ +\x00\x95\xaf\xcf\x94\x7e\xae\xa2\x0b\x82\xc2\xb2\x7f\xad\xe5\x5c\ +\x8c\x35\x9e\x48\xa3\xae\xa8\xda\x40\x8a\x3a\xcc\xd9\x8f\x0f\xee\ +\x16\x6b\x3c\x16\xc5\xe6\x82\xd4\x3e\x25\xce\x9d\x6f\xaa\x5b\x93\ +\x6d\xef\xb7\xf3\x44\x9b\xe5\xea\xc8\x69\x84\x86\x86\x8e\x30\xc7\ +\xbf\x1c\x71\x5e\xc5\xb0\x81\x3e\x28\xaf\xe5\x94\x78\x95\x86\x3d\ +\xca\xda\xeb\xa3\x8d\xb8\x58\x05\xd2\x1e\x4b\x45\x91\x6a\x94\xa2\ +\x5b\x73\xf2\x86\xc2\xd3\x0c\xdf\x07\x9b\xaf\xc6\xcd\xc6\x15\xd2\ +\xd5\x32\xd0\xad\x5c\xe8\xc2\x70\xd4\xf8\x09\x48\xca\xad\x3d\x37\ +\x6f\x5c\x94\x61\x42\x11\x73\xda\x57\xbc\xbe\x86\x47\x98\x8a\x42\ +\xdf\x37\xb9\x9d\x41\xe5\xf3\x4a\x42\xf5\x30\xa2\x79\x1c\x3d\xb4\ +\x7e\xdf\x96\x26\xd0\xbd\x50\x8e\xb0\x18\xbe\xa2\xf9\x33\xa8\x3f\ +\x4f\xb1\x0a\x48\x7b\x44\x3d\xd8\x0d\xee\x8b\x2f\x7e\xb3\x7c\xfb\ +\xf6\x9b\xe5\x1e\x37\x3b\x68\x89\x34\x76\xec\xd8\xb1\x63\xc7\x19\ +\xd8\xbf\xa1\xb6\x63\xc7\x8e\x8f\x07\x3c\xbd\x9d\xf3\x6c\x76\xe9\ +\xf3\x5b\x3e\x19\x1e\x01\x6a\xaa\xee\x31\x6d\xc6\x9a\xe8\xee\xcb\ +\x6f\x97\xc7\x9f\xfc\x74\x59\xde\xfb\xff\x8f\x16\xff\x75\x9a\x75\ +\xd6\x5b\xe3\x87\x40\x34\xcd\xe6\x3c\x70\x20\x30\xd8\x83\xae\x38\ +\x55\xe4\xd8\xca\x57\xd3\xa0\xc4\xd3\x68\x4a\x58\x5a\x54\x03\xdd\ +\xcd\x72\xd0\x5b\x10\x71\x0c\x61\xd6\xb5\xc0\x9f\x41\x3c\x47\x74\ +\x6a\x80\x8d\xbe\xbd\x31\xba\x69\x76\xec\x07\xf3\x14\x1f\x1b\x3f\ +\x50\xc3\x1b\x03\xff\x8a\x86\xde\xc6\xe0\xd0\x39\xe3\x80\xdd\xe6\ +\x71\x35\xfe\xac\x99\x38\xa2\xbc\xf9\x20\x6d\x9d\xc7\x5d\xa4\x0f\ +\x4d\x7c\xeb\x5d\x0b\x37\x25\xa0\x58\xc3\xd6\x57\x47\xda\xed\xb8\ +\x42\xab\x35\x24\x8a\xe3\xea\x86\x4e\xa7\x3c\xab\x99\x6f\xed\x8d\ +\x90\x46\xb9\x5c\x37\x3a\x05\x2a\x2a\x8d\x84\x71\xc2\x01\x19\x3a\ +\xa2\xb9\x14\x28\x35\x6b\xe7\xe3\x32\xf5\x26\xac\x8c\x76\x93\xda\ +\xf3\x31\xaf\xf4\xd4\xfa\x99\x73\x66\xf2\xb9\xf3\x9c\xd6\xd8\x89\ +\x81\xfb\x52\x78\xab\x84\xea\x17\x7b\x5a\x37\x4e\xd5\xc4\x50\x14\ +\xfd\x2a\x6f\x20\x59\x22\xae\x25\x9a\xec\x6b\xe1\x2d\x1b\x68\xc5\ +\x4a\x49\x87\x11\xdd\x7d\x60\xd4\xd5\x98\xd9\xf8\x98\xa1\x27\xcd\ +\xb3\x75\x65\x0d\x1b\xb9\xd7\xb8\xef\xec\x1f\x7c\xc4\xea\x24\x34\ +\x3d\x40\x2d\x5d\x8a\xf8\x99\x87\x87\x6d\x1b\xc2\x56\x43\xc7\x3d\ +\x90\x84\x8f\xb9\xb5\x85\xa7\x29\x3f\x6a\x11\x1c\x3d\x03\x73\x79\ +\xdc\xbe\x62\xe4\xfc\xb4\x91\x03\x07\x03\x08\xf8\x39\x13\xd3\xe0\ +\x35\xa6\x60\x45\x42\x7d\x06\x22\x2f\xd3\x91\x66\x73\x2b\x9b\x2e\ +\x0d\x53\xc4\x82\xdd\xb7\x57\x57\xf9\xb0\xf1\x7f\xa7\x5d\x5f\x87\ +\xe6\x71\x79\x30\xfd\xef\xef\x6f\x97\xeb\x57\x6f\x96\x5f\xfc\xdd\ +\x3f\x2f\xb7\x16\xcf\xfb\xe7\x6a\xad\x47\x00\xed\x25\xfa\x1d\x17\ +\x80\x47\x32\xf0\xb0\xdc\xde\xbe\x5a\xbe\xfd\xe6\xaf\xed\x79\xea\ +\xc6\xce\xc9\x07\x63\xf0\xd6\x33\x8f\x9a\xc9\xf1\xfb\x40\xee\x31\ +\x33\x02\xb5\x4a\xc2\x4f\x8d\x22\x9c\xaa\x8e\xa0\xe8\x79\x4e\x09\ +\x7d\x1d\x79\x6d\x8d\x31\x1a\xb6\xb3\xcc\x07\x11\x64\x17\x2b\x4e\ +\x9a\xa1\xcd\x9c\xd2\x30\x74\x50\x8c\x68\xd7\x11\xa1\x58\x89\x77\ +\x82\x98\x20\xaf\x7d\x7a\x64\xda\x2e\xb0\x71\x5c\x3b\xcd\xc2\x61\ +\xac\x1a\x3a\xfe\xd5\x8d\x8d\x88\x7b\x29\x5a\xdc\x0c\xe5\x12\xfc\ +\x10\x57\x07\x3b\xf7\x74\x07\xea\x23\x81\x43\x26\x3b\x8f\x7b\x38\ +\x35\x22\x4a\x9c\x28\xbe\x9b\x7e\x5f\x0e\xd3\xa0\x79\x87\xc4\x55\ +\x2d\xee\xad\xc2\xb5\xfd\xd8\x30\x7a\xe1\x27\xdd\x7c\x6d\x53\x05\ +\x29\x74\x9f\xb8\x71\x53\xa3\x01\x31\x10\xb2\x31\x8e\x0d\xa8\xf6\ +\xd3\x70\x24\x9b\xa1\xf9\x79\xe1\xd0\xec\xa6\xe1\x77\x3f\xad\xad\ +\xca\x79\x9c\x55\xcc\x6c\xe1\x66\xe5\xf9\xb0\x4e\x6e\x98\x86\x8c\ +\xf4\xaf\xc0\x44\x14\x3b\x95\x7d\x3d\xe8\x66\xc3\xab\x19\xf9\x3d\ +\x0d\x91\x35\x68\x18\xf5\xcd\xe6\xd6\x05\xd1\xd8\xc1\x0d\xe4\x59\ +\xc9\x31\xc3\x95\x4c\x98\x13\x3e\xdf\xcf\xd1\x70\xaa\xbf\x16\x02\ +\xa3\x0f\x4c\x64\x5b\xd7\x7a\x87\x9a\xd4\x15\x68\xeb\x28\x43\x0f\ +\xc5\x30\x76\x02\xec\xe0\x32\xb7\xc5\xe0\x51\x62\xdd\x4a\x6e\xa8\ +\x87\x0c\xa0\x5e\x64\xe4\x10\x34\x7a\x71\x3b\xc2\x98\x97\x14\x91\ +\xa6\x0c\xab\x97\xeb\x18\x00\x8e\x75\xda\x49\x4a\x60\x09\xf3\x1c\ +\x3d\xbf\x22\xea\x80\xdb\x7e\x16\x18\x9d\x5d\x0f\xb8\x37\xbf\x7f\ +\xb7\xbc\xfb\xfa\x1b\x7b\x35\x7e\x63\xcf\x59\xb3\x5a\x6b\x66\xc7\ +\x8e\x1d\x3b\x76\xac\xb1\x7f\x43\x6d\xc7\x8e\x1d\x1f\x0f\xe3\xf3\ +\x18\x7c\x35\x01\xcf\x7d\xed\xd9\xef\xe5\xa0\xba\xe3\x7c\x1b\xa8\ +\x4b\x38\xdc\xdc\x2d\x77\x3f\xf9\xe9\xf2\xfd\x0f\x8f\xcb\x0f\xf7\ +\xf8\x35\x35\x2f\x80\xa1\xfe\x5f\x2e\x99\x13\x7e\xfc\x48\xab\xa1\ +\x4d\xa8\x25\x10\x8d\x2e\xa8\x33\x8f\x98\x26\x34\xac\xa7\x6b\x10\ +\x97\xe3\x5a\xb4\x5a\xdb\x19\x0d\xc3\x0c\x28\xcf\x67\xfe\x22\x88\ +\xb7\x3e\xde\x5b\x57\x42\xbe\x2f\x41\xe0\x0d\x4e\x5d\x88\xf8\x15\ +\x22\xe0\x49\xfc\x72\xe0\x23\x15\x2f\xd0\xf2\x10\x8f\x9d\x93\xd2\ +\x0c\x16\x80\x0b\x41\x09\x67\x1d\x85\x63\x4e\xa7\xa3\x6e\x41\x93\ +\x7b\x8c\xcb\xa4\xb5\x46\xab\xe1\x6b\x4e\x94\xb2\x60\x6b\xbe\xdb\ +\x95\x09\x44\x0e\xf5\x0a\x93\x9b\x68\x0b\xb0\x6b\x8e\x2a\xca\x5a\ +\x9e\x0a\xae\xe9\x64\xf3\x7d\xfa\x52\xed\x65\xd1\x57\x7c\xce\x3c\ +\xab\xbc\x13\xfb\xf7\x92\x79\x4e\xe9\xbc\xd6\x71\x15\xa3\xf5\x9c\ +\x88\xf5\xad\x96\x59\x3f\x8c\x30\x8c\xf1\x36\x8b\x22\x4d\xd1\xad\ +\x80\x4e\x51\xd7\xa0\xd9\x72\x93\x5e\x11\xa8\x9b\x8e\x63\x74\xdb\ +\xcd\xa0\x03\xd9\xe8\xa4\x68\xd7\x7b\x5f\xd7\x5d\x7c\x40\x61\x86\ +\x5a\xe4\xf1\xdc\xd5\x7d\xc1\xc6\xfc\x6d\xb4\x48\x97\x06\x04\x75\ +\xfe\x45\x8c\xdb\xcb\x41\x1c\x46\x35\x40\x63\x01\xa9\x81\x6f\x2e\ +\xd6\x38\xa2\x17\xf3\x07\x10\x6c\x14\xeb\x5b\x35\xaa\xe4\xf9\xd8\ +\xc7\x26\xa0\xc0\xba\x3e\x8d\x83\xcf\x16\xa0\x69\x77\xca\x58\xa6\ +\x0f\xb8\x87\x1b\x5b\xf6\x15\x1b\x3f\xe5\xf1\x6f\xb0\x41\xff\xc8\ +\x6e\x59\x7e\x6f\xfb\xf9\xf6\xcb\xef\x96\x57\x5f\xfe\x94\x7f\x45\ +\xd3\x6b\x5c\x80\x9a\x70\x71\xf2\x8e\xd3\xe8\x77\x2a\x5e\x17\xbf\ +\xfd\xe6\x2f\x97\xeb\xc3\xdd\xf2\xf0\xd8\x7f\x72\x87\xc3\x7d\xb0\ +\x7f\x8d\xb2\x5c\x39\xc3\xb1\xc1\xc7\xe2\x4d\x07\xab\x79\x0d\xce\ +\xa9\x47\xfd\x44\x27\x37\x67\xf3\xd8\xc7\x2b\xb9\x49\x54\xa7\xf5\ +\x86\x34\x02\x9c\xa4\x3b\xcb\x03\xc1\xd8\xe0\x8a\x70\x3a\xe8\xa9\ +\xa1\x45\x38\x2a\xc1\x1a\xca\xa7\x5b\x0c\xf2\x68\xe6\x56\xa4\x3e\ +\x0c\xe9\xe0\x70\x08\xc0\xd6\x1e\x6d\xbc\x34\x6d\x5d\x53\x98\x08\ +\x8a\xcc\x2b\x62\x72\x88\xcb\x88\x41\xea\xbc\xff\xd9\x08\xb3\xe9\ +\x40\x38\x99\x94\x90\x76\x25\x7b\xda\xed\xb6\xfe\x44\x8d\x95\x75\ +\xfa\x31\x86\x3e\xee\x3f\xa1\xe2\x7d\xdc\x0d\xf6\x42\xa6\xf6\xf4\ +\x00\x05\xa3\x82\x6f\x5c\x49\x29\x56\x33\x0d\x6d\x61\x63\xc6\xc7\ +\xc4\x73\x66\xa9\xb9\xb0\x6b\x03\xc6\x71\x0e\xdb\xee\x9a\x04\x1c\ +\x4f\xd8\xc6\x66\x5e\x1e\x59\x83\xf6\x73\xdb\xdf\x0e\x53\x40\xa4\ +\x16\xa0\x99\x5d\x09\x00\x83\x9b\x7e\xea\x0b\xc2\x5d\x85\x64\xdb\ +\xa8\x73\x85\x08\xb3\x9d\x93\x3e\x08\x29\xe5\x68\x5d\x8c\x49\x8b\ +\x4f\x1b\xa3\x0c\x1f\x34\x22\xab\x51\xf6\xaf\xc4\x19\x29\x7e\x22\ +\x6c\x68\x69\x4e\x62\x18\x93\x96\x1d\x5d\xe5\x39\x24\x61\x30\x7b\ +\x8c\x13\xb0\xab\x0f\x8c\xbe\x81\xb2\xe0\x15\xf6\x91\x11\x5a\x75\ +\xc0\x99\x10\x6e\xc3\x48\xc4\x8d\x63\x7d\x3d\x17\xd4\x9b\x4b\x60\ +\xa5\x86\xd9\xc9\x7c\x5f\x68\x8f\xb0\x97\xdc\xc6\xad\x8a\x40\x1e\ +\x9b\x46\x11\x7c\xb6\xb2\x75\x7a\x68\xfd\x0f\xff\xad\xc5\x72\x75\ +\xbf\x3c\x3c\x1c\x96\xaf\xbe\xfc\xad\x31\xd7\x96\x34\xfd\x8e\xda\ +\x8e\x1d\x3b\x76\xec\x38\x03\xfb\x37\xd4\x76\xec\xd8\xf1\x79\x80\ +\x87\xbe\xf5\xd3\xe2\xcb\xe3\xac\x39\xf0\x98\x19\x30\xfd\xcd\xed\ +\xcd\xf2\xf6\xb7\xbf\x5d\xbe\xbf\xbf\x59\xee\x1f\x1f\xec\xc1\x53\ +\x3f\x4d\x6d\x3a\x7b\x50\x4d\x9b\x86\x32\x6d\xc4\x43\xac\xdd\x55\ +\xf3\xfb\x6a\x50\xc6\x77\x99\xda\x0c\x39\x53\x40\x7e\x24\xd9\x90\ +\x8a\x51\x7a\x12\x31\xcb\xa9\xbc\x88\xe3\xbd\xc1\xfa\x9b\x60\x73\ +\x90\x97\x96\x2d\xd6\x2b\x1f\x03\xb9\xb2\x01\x36\x8e\x6f\x12\xf5\ +\x1b\x20\xcc\x46\x28\x1a\x65\x6a\xcd\xb0\x3e\xea\x59\x73\xa6\x45\ +\x1c\xe1\xc5\x7a\x72\x4c\xdb\xac\x58\x43\x7e\x00\x44\x0a\x96\xff\ +\xa4\x5e\x50\x94\x71\x24\x63\x23\x42\x38\x98\x57\x0f\x51\xcb\xd7\ +\x2e\x7b\x8d\x92\x0d\x9d\x0d\x5b\x2a\x07\xd6\xe3\xff\x78\x1c\x8a\ +\xb8\x69\x66\x98\x47\xc1\xfa\xa6\xce\x66\x0d\x20\x14\x73\x51\x0f\ +\xee\x93\xe3\xf3\xcd\x7c\x1a\xfd\xda\x9e\xb3\xd2\xcd\xdc\x8d\x82\ +\x97\xce\x75\xae\x96\xa7\x70\xd8\x23\xc8\x5b\xc7\xf3\x66\x10\xad\ +\x72\xca\x77\x82\x68\xad\x04\x42\x0d\x4c\x44\x38\x07\x79\x8a\xb2\ +\x1b\x6e\x25\xe1\x00\x43\x19\xbf\xbb\x59\xdc\x16\xcb\x10\x39\x6f\ +\x1d\xfc\x22\x30\x78\x2d\xf6\xa2\x52\x5c\x26\x0d\x44\x55\x42\xfb\ +\x83\x8c\x46\xc5\xb1\x60\x2e\xda\x32\x28\x84\x6f\x5f\x0a\x83\x91\ +\x8d\x31\x6c\xc2\x6c\xba\x95\xb7\x51\x6b\x14\x05\xe4\x66\x60\x54\ +\xa3\xc8\xe7\x9b\x37\xeb\xc2\xce\xb9\xd1\x00\x1b\x39\x0f\x01\x01\ +\x06\x17\x80\xd7\xc7\xc8\x23\xc0\xb6\xd7\xb4\x2d\x78\x6e\x56\xd8\ +\x78\x61\x29\x4c\xc0\x18\xab\xcd\xb9\x6d\x2d\x88\xa3\xe7\x3f\xf3\ +\xaf\xaf\x7d\xc4\x37\xd3\xf0\x67\x89\x6e\x4c\xf9\xef\xcb\xf5\x72\ +\x7d\xfb\xf5\x72\x78\xf5\xc6\x3c\x24\xc7\xe2\xd6\xc5\xe7\x90\xce\ +\x27\xdb\xf1\xe2\x68\x3b\x98\xe7\x95\x1d\x9f\xaf\xdf\xfd\x6a\x79\ +\x7c\xb8\x5b\x3e\xfc\x70\xbb\xe0\x77\xd4\x78\xd0\xa1\xc8\xfd\x1f\ +\xaf\x81\x15\xcf\x3d\x3e\x96\x1b\x67\xc6\x1c\x93\xda\xa2\x34\x7a\ +\x3e\x7a\x6c\xcb\x91\x84\xad\x99\x6a\x0a\x6c\x6b\xd8\x66\x6e\xb7\ +\x75\x35\xac\xb8\xc8\x62\x06\xcc\xf3\xaf\x1e\x51\x10\xd7\x09\x4d\ +\x27\xad\xd5\x15\xcb\x4a\x41\x8c\xbd\xef\xa6\xaf\x0b\x3d\x2d\x77\ +\x38\x70\x2b\x63\xdd\x38\x5e\x1e\x0a\x63\x04\x05\x6d\xbf\x50\x12\ +\xb9\x2b\x80\x64\xc0\x9f\x89\xf0\x4d\x7f\x12\xe4\x5a\x8e\xbb\xf2\ +\x0c\xa5\x7e\x91\x87\x7e\x76\x4e\xf9\x3e\x71\x1e\xdd\x4a\x10\xa3\ +\x59\x69\xba\xd1\x29\xe9\x0c\xc7\x3c\x04\xab\x33\x25\xf6\x43\xcf\ +\x9b\x15\xe9\xce\xd5\xfe\xe3\x02\x73\xa8\x7d\x2c\xa8\x76\x1d\x57\ +\xf3\x25\xb9\x8a\xac\x30\xcd\xd5\x88\x03\xa5\xf3\x25\xd1\xec\x66\ +\xe9\x78\xe1\x7c\x72\x96\xa9\x4e\x0d\x87\xd3\x15\x95\x8a\x8c\xe8\ +\x7d\x4c\x58\xa1\x81\xd9\x04\x74\xd4\x2a\x21\x1d\x9b\x2d\x38\x0c\ +\x35\xec\xb6\xf5\x34\x14\xa9\x56\xd3\x68\x8c\x2f\x47\x18\x8a\xb5\ +\xd5\x16\x11\x47\xdf\xe2\x76\xee\xbb\x5a\x9a\x42\x37\xc4\x35\xc5\ +\xaa\x3a\x0e\xfe\xe5\xa0\xd1\xed\x5c\x47\x0a\x84\x81\xa8\x35\x4e\ +\x20\x75\x93\x04\x5c\x77\xce\xb7\xeb\xaf\xca\xba\x94\xe2\x74\x7c\ +\xe7\x4d\xb6\x85\x08\x0d\x87\x3e\xbb\x43\x91\x35\x95\xd7\xcc\x15\ +\x6a\xd0\x81\xb0\xa1\x69\x8f\x00\xba\x51\x6b\x0e\xef\x77\x71\x6c\ +\x60\x1f\x0e\xb7\xcb\x87\xf7\xcb\xf2\xd3\x57\xbf\x90\xa4\xdc\x4a\ +\xe1\xed\xd8\xb1\x63\xc7\x8e\x73\xb1\x7f\x43\x6d\xc7\x8e\x1d\x7f\ +\x3c\xa8\xcf\x79\x97\x3c\xf3\x6d\x3d\xff\xce\x60\x5a\x7c\x68\x77\ +\xf8\xee\x17\xcb\x0f\x77\xef\x96\x0f\xf8\xef\x70\xec\x41\xf4\xf1\ +\xf1\x81\x0f\x9c\x57\x57\x87\xe5\x2a\x7e\x72\x5e\x4f\xae\x5c\x8a\ +\xc5\x38\x8d\x3d\xad\x6a\x69\xfa\x80\x43\xf3\xc7\x10\x90\x6a\x8d\ +\xfc\xf0\x12\x23\xda\xb6\x34\x10\x82\x7e\x08\x63\x23\xb9\xd3\x16\ +\x8d\x99\x5c\x73\xa1\x68\xf7\x12\x47\x18\x3e\x84\x88\x83\x2d\xda\ +\x9a\x36\x83\xfb\x01\xa3\x7b\x8c\x5d\x1d\xe2\xad\x03\x5c\x6b\xd4\ +\xc2\xc6\x48\xa0\x06\x46\xe4\x16\xad\xd9\x5e\xd9\xb8\xd0\x33\x66\ +\x3d\xbf\xd1\x85\xb9\x48\xb6\x08\xe5\x00\x5d\x5f\x0b\x2d\x33\xd0\ +\xf0\x06\xc3\x2b\x82\x44\xe7\x03\xe3\xf8\xc7\x77\x23\x98\x0f\xf5\ +\xa1\x8a\x39\xa2\xb0\xf7\x60\x7d\x9d\x6d\x06\x87\xe2\x42\xaf\x41\ +\xd4\xf3\x62\x1a\x02\x83\x6b\x5c\xe7\x96\xf5\xbe\x28\x07\xc6\xb1\ +\xb8\x27\xaa\xdb\x46\x09\xc3\xac\xed\xe3\xe2\xe3\xcf\xf0\x74\xb4\ +\xb5\x3d\x67\x5f\x9c\x95\x5b\x04\x97\xce\x75\xae\x5e\x9a\x99\xb6\ +\xab\x31\x9e\x43\x86\x55\x0e\xcf\xfb\x1e\x55\x03\xdb\x15\xe8\xbd\ +\xe1\x7c\xf5\x79\x86\x6a\x4e\xa6\x99\xe1\xc2\xf9\xf5\x05\xbb\x06\ +\xad\xae\x0d\x71\x09\x26\x78\xdd\x18\xaa\xd2\xe1\x56\xd6\x6a\x01\ +\x8f\xb0\x50\xb4\x1a\x2b\x36\x79\x36\x27\x7d\x70\x32\xbf\xc9\x8e\ +\x5f\x93\xa2\xe5\x0d\xe1\x4c\xa1\x1e\xf0\x39\x14\xe7\x90\x31\xa7\ +\xe8\xa6\x31\x83\xe6\xdc\x14\x74\x11\xce\x25\x44\x40\x73\x6a\x9f\ +\x11\x8a\xf9\x60\x30\xab\x24\xbb\x69\x5c\xcd\xa9\x00\x9f\xfa\x10\ +\xd9\x3a\x71\x3f\x74\xdb\x59\x1e\x4b\xed\xc7\xe8\xfb\xd1\x80\x38\ +\x9c\xf8\x4d\xf0\xab\xab\x6b\x90\xd1\x96\xe5\x0f\x1f\xee\x97\xef\ +\x97\xeb\xe5\xe6\x27\x3f\x5b\x5e\xbf\x7a\x4d\x3a\x3f\x74\x3a\x85\ +\xba\x43\x90\x52\xfd\x1d\x2f\x8b\x72\x48\x70\x78\xde\x1c\xbe\x5c\ +\xde\xdd\xfd\xd2\x9c\x3b\xc6\xb0\xeb\xdb\xee\x37\x0b\x0f\x3d\xc3\ +\xf1\x48\xb7\xf0\x6e\x0e\xc2\x7a\xf8\x69\x57\xa2\xc1\xb3\xc6\x58\ +\x39\xf7\x0c\xd4\x18\xe1\xd7\x87\x22\x3e\xd6\x1e\xa8\xa7\x1d\xab\ +\xd8\x57\xce\x81\x58\xc4\x63\x20\xdc\x46\xef\xaf\xf9\xbc\x4e\x74\ +\xce\xc3\xf5\xc1\x6b\x47\x23\x87\x91\x36\xae\x09\xe4\x28\xce\x28\ +\x51\xd7\x9c\x5a\xd9\x34\x5a\xf3\x38\x80\x75\xa4\xd3\xe9\x30\xb0\ +\xa6\x91\x18\xc4\x11\x12\x66\x42\x20\x4c\x0e\xea\x30\x06\xef\x00\ +\x57\x48\x9b\x84\xb7\x35\x20\x28\x0e\x90\x89\x70\x47\x56\xcf\xc7\ +\x5e\x07\xc8\x62\xd1\x2a\x68\x03\x2d\xc9\xc3\x60\xef\x62\x93\x43\ +\x0f\xdb\xe1\xa9\x91\xcf\x75\xd2\xb0\x16\xfb\x0a\x1e\xc2\x25\x27\ +\x61\xfa\x38\xb2\x09\x2f\xe1\x5c\x54\x35\x98\x65\x94\x94\x7d\xc6\ +\xc7\xc3\xa7\x9a\x67\x05\x4c\x8c\xed\x8d\xd6\x2f\xa4\xed\x95\xe4\ +\xbb\xf8\x00\x1d\x13\x1c\x84\x92\x5a\xd1\x9e\xc5\xbd\xf3\x6b\xc3\ +\x01\x93\x69\x0a\x8a\x49\x8d\x1b\x3c\x8d\x68\x46\x20\xfc\x4a\x11\ +\xc5\x86\x99\xe7\xa6\x0d\xb4\x9a\x9b\xf6\x08\xa7\xd1\x0f\x82\xa4\ +\xac\x8b\x51\x9b\x0f\x70\x2b\x15\x02\x60\x94\xb8\xec\x1a\xa7\x5d\ +\x35\x06\xb8\x8d\xf7\x9d\x3a\x48\xd2\xcf\xdd\xbf\x25\x98\x80\x21\ +\x76\x71\x75\x54\x6d\xda\xf5\x18\x54\xf8\x36\x67\x48\xd7\xf6\xa0\ +\x6d\xee\xb4\x48\x5b\xef\x18\x1e\x36\x24\xbd\x41\xdf\x54\x66\x35\ +\xe7\x08\x62\x9d\xc2\x2a\xa7\xd4\xd9\xa8\xd7\xfd\xac\x50\xc8\x37\ +\xa4\xc6\x2b\xe2\xfb\x51\x5a\xf0\xfa\x4d\x7e\xf8\x8f\x38\xb1\xdf\ +\x7f\xb0\xa7\xa8\xb7\xcb\xaf\x7e\xfa\xb7\xc9\x7b\x97\xc3\x8e\x1d\ +\x3b\x76\xec\x38\x13\xfb\x37\xd4\x76\xec\xd8\xf1\x79\x70\xe9\x53\ +\x1b\xf4\xf1\x70\x49\x54\x1b\x78\x91\xa7\x40\x2b\xca\x3a\x57\xcb\ +\xed\xbb\xaf\x97\x3f\x7c\xf9\xd5\xf2\x6f\xbf\xfb\x0f\xbe\xe1\xce\ +\xf2\xf8\x63\xe4\xf0\xf1\x8d\x35\xf2\xf6\xd6\x8d\x7e\x2c\x11\x4f\ +\xc0\x29\x36\xc0\xb6\xc6\x87\x56\xbe\xab\x1b\x17\xee\xe0\x43\x6e\ +\xe4\xc5\x50\xb0\x66\x08\xd2\xa8\x37\xaf\x09\x50\x52\xd3\x27\xa5\ +\xf8\xc1\x27\xf8\x12\xcb\xbc\x8e\x0b\x87\xbc\x75\xfe\x15\xbe\xbe\ +\x81\x86\xfd\x11\x1c\xeb\xfa\xfa\x98\x1b\x3c\x6d\x6e\x2f\xf8\x88\ +\x87\xce\x35\x31\x02\xf4\x73\x66\x56\xaa\x3e\x96\xd1\x60\x0e\xca\ +\xb0\x6e\xf8\x31\x48\xc6\x65\x67\x3e\x46\xb7\x7d\xfe\x00\xf2\x23\ +\xa7\xf1\xd2\x62\x6d\xf8\x09\xfb\x10\x70\x42\xd7\x60\x56\x52\x06\ +\x5a\xf8\x6a\x44\x0e\xad\x62\x0f\xc6\x8a\x2e\x95\x9a\x62\x4c\x10\ +\x86\x82\x55\xe6\x2b\xda\x4a\x9c\x43\xdb\xfe\xf2\xf8\x38\x55\x9f\ +\x5f\x16\x05\xbc\x48\xb3\x9e\x86\x4b\x73\x3f\x96\xfe\x98\xee\x54\ +\x8d\x55\x9c\x84\x75\x11\xc8\xb8\x9d\x77\xb0\xd1\x8e\x9d\x9e\x82\ +\xb4\x4d\x27\x4b\xd7\x6b\x43\xd5\xf9\xa8\x93\xdc\x30\x88\xab\xd6\ +\x2f\x38\xd7\x92\x8f\x40\x5e\x87\x06\x9a\x46\xe4\xb5\x41\x3b\x4d\ +\x82\x51\x3a\xd1\x18\x6b\x17\x1a\x42\x6a\x0c\x06\x32\x1f\x63\xa3\ +\x49\x30\x5b\x5c\x19\x61\xe2\xba\xef\xf6\x42\x98\x79\x2f\xb5\xe6\ +\xf3\x2b\xe0\x83\xe6\x5b\xc3\xd7\x38\x15\xa0\x16\x0b\x94\x98\x99\ +\xba\xf7\x6c\xa2\x13\xc8\x9e\x25\xa9\x98\xb5\x3a\x7f\x9a\xc1\xc3\ +\xef\x5a\x1c\x07\xeb\x0f\xf6\x3a\x7b\x7d\x73\xcb\x3f\xb1\x0c\x12\ +\xbf\x25\xfe\xc1\x96\xfc\xfe\x7e\x31\xfe\xcd\xf2\xb3\xbf\xff\xe7\ +\xe5\x0e\xef\x60\x62\x3f\x38\x3c\x7b\x13\x63\x18\x7e\x97\xbf\xe3\ +\xd9\xe0\xfe\xf4\x9d\xaa\xcb\x05\xe7\xf5\xeb\x9b\xd7\xcb\x97\xef\ +\xfe\xd2\x8e\xe3\xf5\xf2\x60\xfe\x83\x3d\x27\xe1\x59\x09\x12\x1c\ +\x06\xb5\x7a\x38\x9c\x33\x06\x06\x6d\x37\xd8\x07\x97\x73\x45\x1b\ +\x31\xe3\x46\x72\x9c\xd3\x31\xcd\x0c\x68\x25\x05\x41\x70\x68\x5d\ +\x19\xb7\x80\xf8\xfa\xfe\x27\x70\x26\xff\xea\x20\x1f\xfb\x07\xb6\ +\x9e\x45\xdd\x61\xc8\x06\xdf\x77\xe1\xe6\x38\x92\x38\x0a\x70\xfd\ +\x52\x8d\x3a\x6e\x3a\x1f\xb6\xa3\xec\x6f\x71\x21\x90\xcf\xd1\x5a\ +\x86\xf1\x3c\x45\x23\xb8\x1c\x7d\x2e\xde\xd7\xc4\xb1\xc7\x1c\x3e\ +\x0f\x33\xa3\x30\x23\x6e\x4a\x4c\xf8\x7d\x3a\xb6\x02\x26\x63\xbe\ +\x15\x3e\x43\x80\x86\xd7\x6d\xc8\x28\xa1\x6d\x00\x46\x25\xb4\xce\ +\x99\x08\x5f\x74\x66\x2a\x75\x03\xb8\x1f\xaa\x1e\x45\xd4\x82\xfa\ +\x48\x40\xf9\x8f\x3c\xc5\x1a\x9a\x74\x32\x71\xa5\x33\x3c\xd1\x01\ +\xa0\xb9\xd7\x14\xd7\x77\x19\x80\x2e\x07\x8e\x1f\xf1\x38\xe3\x98\ +\xe7\x67\x86\xe7\xe4\xd9\x60\x43\xa6\xa6\xe1\x80\xeb\x87\x84\x16\ +\x39\x82\x25\xca\xdc\x06\x3f\x5f\xc6\x73\xcc\xc7\x62\x66\x9f\x28\ +\xee\xb8\xa6\x3c\x07\xd3\x30\x34\x49\x83\x39\x55\x52\x35\x6a\x44\ +\xd5\x00\xa9\xb3\x7f\x8a\x25\x67\x6d\x9c\xd7\x1a\x99\xb0\x69\x96\ +\xb1\x6c\xbd\x83\x5c\x40\x06\x47\xdf\x77\xe3\x63\xc4\x4a\x0b\x58\ +\x61\xd5\x6d\xcf\x5d\x15\x03\x67\x52\xd4\x65\x46\xd4\xf1\x7c\xb5\ +\x59\x0d\x43\x68\x89\x6a\x0f\x60\x68\x16\x37\xae\xd1\x36\x47\x3a\ +\x8d\x85\xd5\xbc\xc0\x48\xe4\xe2\x07\x8c\x5c\xf1\xb5\x45\xa0\x78\ +\xcc\x18\x2b\xc7\x34\xc4\x38\xf7\xf1\xbf\xc1\xc3\xe3\x5f\x64\xb1\ +\xaf\xfb\xf7\xaf\x97\xaf\xde\xfe\x6c\x79\x73\xf8\xc2\x9e\xab\x2c\ +\x46\xa9\x57\xf4\x3e\x8b\xec\xd8\xb1\x63\xc7\x8e\x13\xd8\xbf\xa1\ +\xb6\x63\xc7\x8e\xcf\x03\x3d\x0d\x9e\x03\x3d\xdb\x1d\x7b\xc6\xbb\ +\xa4\xde\x19\x78\xfb\xea\xd5\xf2\xee\xb7\xbf\x5d\x7e\xf7\xc1\x1e\ +\x50\xa3\x36\xa6\xc7\x83\xe7\xe1\xfa\xda\x1f\x60\x03\xb4\xcc\xa7\ +\x6c\x58\xa3\x96\x55\x69\xbd\x51\xa8\x58\x33\xe7\x22\x32\x8f\x6e\ +\x7f\xab\xbe\x9a\x1b\xae\xb5\x81\x9d\x23\xb4\x32\x89\x92\xc8\x5d\ +\x62\x0d\x73\x90\x8e\x18\x96\xc6\xff\x04\xd9\xc6\x6c\xd6\x51\x45\ +\xc3\x59\x7d\x30\x92\x75\x30\x0a\xb2\x73\xd4\x9b\x66\x9f\x4b\x16\ +\x72\x9c\x81\x44\x6f\x14\xe0\x44\x5c\x2e\xd7\xc3\x95\x79\x0e\x02\ +\x3c\xd0\xf1\xf6\x1b\x66\x88\x5b\x1d\xdf\xc9\x34\xf1\x67\x20\x61\ +\xf9\x97\x01\x59\xae\xa8\x3e\x11\x06\x6a\x78\x85\x86\xba\x26\x00\ +\xb6\x34\x1c\x55\x50\x35\x9a\x49\xe4\xf6\xd5\xc2\x66\xfb\xf6\x21\ +\x58\xd6\x71\x2e\xa2\x96\xe6\x52\xfb\x51\xe2\x99\x0b\xd3\xfe\x7f\ +\xce\x36\x5e\x9c\x8f\xfd\x8b\x63\xe4\xde\x59\xb8\xa4\x7e\xa7\xab\ +\xe7\xc5\x19\x98\xce\x11\xeb\x45\x37\xff\x70\x63\x23\x2f\xb4\xbe\ +\xf6\xaa\x30\x9e\x64\x8c\x05\x74\xc5\xd9\xa8\xf3\x7b\x90\x35\xd4\ +\x80\x89\xdd\xdd\x4e\xa2\x22\x75\x34\xdd\xd6\x08\x24\xd9\x4c\x34\ +\x5c\x49\xbc\x9a\xb8\x5d\xf3\xfb\x3d\x80\x9c\x19\x8f\x3c\xd2\x11\ +\x6b\x73\xc7\x7e\xd2\xfe\x08\xbe\xfb\xe0\x89\x28\x44\xe8\x88\xb0\ +\x73\x5e\x36\x5f\x23\x51\x06\xb1\x18\xfb\xfa\xb1\x4f\x3a\x4e\x08\ +\x72\x1a\x13\x5a\x50\x96\xe6\xe2\xba\xa6\xc9\x50\x78\x84\x5a\x13\ +\x72\x9f\x48\x6f\x5f\x78\xad\x7d\xb0\x20\xbe\xf9\xf2\x70\x75\x58\ +\xfe\x60\x6f\x5b\xee\xbe\xfa\x76\xf9\xea\xdb\x9f\xb7\xfa\x90\x47\ +\x7f\x36\x90\xac\x02\x02\xfc\x1d\xcf\x03\xf7\x67\x7f\x2c\x78\xa5\ +\x18\xf5\x93\xaf\x7e\xb3\x5c\xdf\x7f\xc9\xf3\xce\x7f\x48\xc9\x5f\ +\x67\x7d\xb7\xe3\x75\xd7\xae\x0f\x3a\xe8\xc4\x8e\xb5\xd4\xf9\xa8\ +\x2b\xb9\x65\x08\xf3\xfc\x29\x20\x09\x99\xae\x09\x65\xb1\xbe\x7f\ +\x79\xa7\xc0\x16\x66\xf1\x59\x1e\x4f\x74\x8c\xa3\xed\x6e\xfa\x05\ +\xa4\x18\x47\xe7\x76\x8e\x01\x98\x75\x9b\x69\x51\x63\x2c\xc7\xe0\ +\x48\xba\xad\x7d\x28\x82\xfb\x20\x28\x45\x64\x79\x3e\xba\x2a\xc0\ +\xbe\x66\xc0\xae\xce\xb8\x47\x06\x5c\xe6\x31\xed\x4b\x82\x63\x7f\ +\xc4\x32\x1c\x0b\x85\x9d\xaf\x37\x31\x9f\xf7\x8e\xee\x19\x1c\x29\ +\x36\x42\xed\x0d\x84\xaf\xa4\x6d\x9f\x21\xea\xd2\x8c\x31\x2d\x0d\ +\x51\x8c\xe5\xd5\x02\x72\xb9\x2a\x33\x18\xd2\xe4\x82\xec\xca\x11\ +\xa1\x4b\x7e\xbd\xfd\x7f\xf4\xd0\xf6\x9d\xb9\x2d\x90\xd5\xf3\x65\ +\x8d\x3e\x76\xbc\x74\xab\xe4\xf7\x1c\x6f\x4d\x6f\x56\x9c\x4f\xce\ +\x45\xa4\x1c\x86\xa6\xed\x41\x5e\x1d\x4f\x0c\x0d\xe5\xec\x52\x3c\ +\x7b\x43\xe1\xd2\xce\xa0\x99\x51\x6b\xa0\x07\xd4\x84\x36\x88\xe5\ +\x68\x5d\xe3\x9a\xd3\x38\x1b\x65\x08\xe1\xe7\x12\x38\xba\x53\x4c\ +\x87\x34\x3e\x10\x59\x8f\xfb\x39\x62\xec\xdc\x97\x38\x06\x87\x39\ +\xd5\x4f\x9b\x7c\x78\x1c\x70\x50\xa2\x4e\x05\xfd\xb8\x37\xd0\x34\ +\x3b\x34\xbd\x14\x5e\xac\x8b\xad\x8f\x02\x8d\x69\xf3\x70\x58\x4b\ +\xcf\xe0\xe0\x58\xb3\x52\x58\x39\xa1\xf8\x2c\x77\x24\xc3\xed\x97\ +\xe9\x0e\xfa\xac\x59\x50\xa5\x78\xed\x04\x70\xde\xe7\x19\xcf\x73\ +\xdd\x3c\x1b\xf9\x7a\x6b\x2f\xb6\x07\xbb\xb9\x63\x8e\xf7\xef\xaf\ +\x96\x2f\xdf\xfe\xed\xf2\xea\x70\x17\xf7\xec\x1d\x3b\x76\xec\xd8\ +\xf1\x54\xec\xdf\x50\xdb\xb1\x63\xc7\xa7\x47\x7d\x7a\xc3\xb3\x5f\ +\x7d\x32\x1c\x71\x2c\xf6\x11\x71\x7d\xb3\x2c\x77\xbf\xfe\x9b\xe5\ +\x77\xff\x71\xbf\xfc\xf0\x1e\x0b\xf6\x85\xe0\x51\xfe\xea\xda\x6c\ +\xfd\x86\x1a\x9f\x80\x35\x8e\x80\x5a\x40\x8e\x6b\x67\xf0\x5d\x82\ +\x47\xe1\x31\x3e\xd7\x37\x8c\x8f\xc2\xae\x1f\x67\xea\x7d\xb3\x3a\ +\xc2\x9d\x6e\x6e\xc5\x6b\xe3\xfa\x0a\xb0\x3d\x41\x88\xe7\x88\xae\ +\xb4\xdc\x35\x95\x07\x38\xf6\x35\xb5\x06\xf6\xd6\xe1\xff\xa4\xcb\ +\x7d\x1c\xbc\xa6\xf5\xba\xfe\x66\xc1\x99\xd8\x17\xed\x70\x19\xf0\ +\x86\x22\xdc\xe0\xfc\xed\x43\xab\xe7\x6f\x3c\x62\xfb\xf9\x65\xbe\ +\xb4\xf9\x06\xbc\xd4\x11\x86\x6f\xaa\xf9\x9b\x1a\x6f\xa5\x7a\xf4\ +\x1e\x59\x7b\x18\x5d\x0d\xb8\x17\xe0\x27\x5b\xaa\xd7\x03\x3e\x96\ +\xc6\x2a\x74\xac\xd1\x19\xa1\xcc\x52\x61\xaa\x3b\x0d\x4d\xa3\x76\ +\x19\x2e\xcf\xf8\x18\xe8\xb7\xe1\x79\x6b\x52\x9d\x4b\x71\x49\xde\ +\xc7\xd2\x9e\x0b\xd5\xf4\xba\x61\xe1\xc4\x4b\xb2\x9e\x4c\xc5\xb6\ +\x98\x9f\xb5\xb3\x93\x0d\x41\x44\x11\x8b\x38\x6b\xf9\x28\x13\x40\ +\x34\xfd\x21\xd6\xc1\x2e\xce\xad\x98\xdf\x27\x02\x83\xbd\xca\x51\ +\x1d\x74\x11\xac\xf9\xfe\xc1\xb4\x11\x1c\x83\x34\xd0\x04\x0d\x23\ +\xf8\x0c\x07\xc7\xca\x24\x6d\xab\x22\x88\x7b\x46\x6e\x63\xdc\x6b\ +\x2a\xb2\x5e\xe8\x85\x09\x65\x75\x1a\xd3\xdf\x51\x0c\xe6\xe2\x76\ +\xd2\xd6\xa7\x78\xb5\x26\x40\x4e\x98\x2b\x64\x00\x46\x99\x1d\x86\ +\x35\xcc\xe5\xdf\xa0\x80\x83\x2f\x1f\x09\x6d\xaa\x8d\xf8\xa6\x0a\ +\x5f\x4b\x5d\xe1\x36\xfe\xef\xb4\xf8\xb3\x8f\x00\xfe\xff\xb4\xc7\ +\x87\xc7\xe5\xdf\x1e\x6e\x96\xbb\xb7\xbf\x5c\x1e\xde\x7c\xc9\xdf\ +\x72\x62\x78\xbd\xdb\x76\xfc\x68\x80\xab\x1c\xbf\xd1\xbd\x2c\xbf\ +\xfc\xc9\x5f\x2f\xd7\x57\xaf\x97\xfb\xf7\x78\x76\xc2\x71\xc7\xdf\ +\xd3\x66\xc8\x8f\x3b\xce\x85\x3c\x98\x11\x98\x60\x7d\xb8\x07\x6d\ +\xba\x97\x9e\x18\x7d\x1d\xf7\xea\x55\x35\x47\x9c\xa2\x86\x6d\x25\ +\x22\xd4\x45\xe3\xf3\x04\xd7\xd7\xaf\x71\x55\x21\x12\x33\xb7\x82\ +\x75\xd2\x0c\x4d\xd1\xd2\x70\x93\x3d\xbf\xf0\xcf\x39\xcc\xcc\xe7\ +\x1b\x11\xb1\x96\x7c\xde\x1a\xef\x47\xa8\xcd\x21\xfe\x0f\xbc\xa8\ +\x4f\x1e\xe6\x23\x1e\xd6\x86\xfb\xc0\x0a\xa1\x75\x2b\x34\xb0\x92\ +\x5c\xa1\x51\xf8\xe8\x77\x90\xa8\x18\xa0\xf5\x06\x75\xc5\xf5\xb8\ +\x0d\x03\x51\x2a\xea\x76\x65\x7e\x57\x35\x60\xba\x22\xa5\x26\x73\ +\xfd\x08\x7a\x5a\x70\x59\xc2\x0d\xf6\xe8\x92\x07\x5a\x7e\x1f\x08\ +\x7b\xa5\x7f\x1e\x5e\xb8\xdc\x1c\x9a\xe4\x63\x4e\xc4\xda\xb6\xcf\ +\x6d\xf4\xd7\x94\x8a\xc9\xe4\xd0\xf9\x40\xf8\x61\xb6\xfc\xee\x9c\ +\xd0\xb1\x28\x4a\x08\x33\x5e\x30\xe3\x56\x50\x0d\x1f\x3a\x74\xa1\ +\xe8\xcb\xb9\x9b\x96\x8c\x88\xa1\xd7\x92\x8a\xdc\x09\xa1\xb3\x43\ +\x0c\xd3\x07\x07\xcf\x5b\x7f\xbd\x04\x9f\xb5\x7a\x51\xf3\x39\x36\ +\xbd\xf7\xde\xda\x3a\xd2\x30\xcb\xeb\xd3\xa6\xc0\x63\xec\x43\xd6\ +\xf2\x02\x83\xcf\x6c\xe3\x92\xce\x3a\xc1\x64\xa0\xa2\xbd\x62\x54\ +\x50\xba\x9a\xd0\x50\xaf\xfd\x23\xc8\xcc\xe9\x9c\xa2\x23\x18\xfb\ +\xb6\xd9\x42\x49\xee\xea\xcc\xd6\x00\x6e\xd4\xfb\x5d\x71\xa5\x06\ +\x19\xd2\x90\x35\xca\xb6\x99\xcf\xa8\x59\xcf\x46\xfb\xe2\xae\x08\ +\x0a\xbf\xf4\xff\x87\xdf\x1f\x96\xbf\xfb\xd5\x3f\x2f\x8f\xd7\xf8\ +\x86\x5a\xb9\x67\xef\xd8\xb1\x63\xc7\x8e\x8b\xb1\x7f\x43\x6d\xc7\ +\x8e\x1d\x9f\x1e\xf5\xe9\x6d\xf5\xb4\x38\xa0\xc6\x4f\x69\x5f\x0a\ +\x78\x00\xbd\xbe\x59\xbe\xfb\xf5\xdf\x2c\x57\xaf\xbf\x59\x1e\xae\ +\x1e\xfc\xc3\x1f\xc6\xb0\xf8\xab\xe5\x70\x8d\xdb\xa7\x7f\x10\xa0\ +\xe7\x76\xbd\x41\xe2\x23\x7e\x79\x98\xf7\xc7\x62\x83\xd6\xdf\x42\ +\x09\x50\xd4\x4d\x62\x1d\x56\xfb\xc0\x33\x57\x89\xe6\x52\x4a\x3a\ +\x92\x42\x32\x28\x1b\x2c\xc0\x6d\x38\x43\x47\xad\x7b\xe9\x13\x95\ +\x17\xc0\x05\x99\x31\xf9\x18\xf1\x06\x00\x1a\x12\xf8\x72\x07\x3e\ +\x39\x5b\xbf\x3e\xf8\x71\xbd\x02\xce\xe5\x68\x41\xba\xd6\x85\xdc\ +\x9a\xb8\x78\x93\x81\x80\x33\x36\x58\x0c\x8d\x14\x3e\xdc\x8b\x37\ +\x16\xc8\x27\x69\x8d\x9f\x42\xc3\x0e\xc0\xf5\xc1\xc1\x0f\x97\x30\ +\x36\xce\x67\xb2\xde\xd2\x34\x7f\xe6\x70\x0e\x29\x5d\xcb\x79\x0c\ +\xae\x97\x67\x36\x09\xd7\x82\xa3\x05\x83\xcd\x3c\x0f\x35\x8c\x7e\ +\x41\x17\x3a\xa2\xbb\x04\x28\x33\xb6\x39\xb6\x23\xcf\xc2\x46\xd9\ +\xba\x9e\xb1\x39\x7a\xef\x29\x78\x4a\x36\x67\xd5\xc1\x3d\x03\xe7\ +\xce\x71\xee\xd6\x6c\xe9\xc4\xa3\x75\xcb\xa3\x38\x18\xb3\xdb\xda\ +\xa5\x44\xa3\x88\x7d\x3b\xd3\x1d\xd4\xf3\x7e\x29\xad\x81\xe1\xb8\ +\xce\xba\x1e\xa3\x6b\x42\x79\x14\xc8\x69\x79\x8e\x2e\x6f\x0c\x1a\ +\xe2\x52\x72\xaa\xc6\xad\x71\xed\x9d\xc0\x5d\x51\xbc\xdc\xd0\xa8\ +\x7b\x48\x1e\xa0\x69\x1d\x3e\xa8\x50\x2e\x10\x2f\x15\xb0\x52\x43\ +\x04\xe7\xaf\x13\xe1\x72\x67\x49\x60\x10\x5f\xc0\xed\xab\x24\xec\ +\xa2\xcb\xd1\x16\x97\x73\x8b\x34\xd0\x2c\x3e\x61\xbe\x8e\xc6\x1a\ +\xce\xaf\x8f\x47\xe8\xd7\x81\x04\xf7\x53\x89\x23\x83\x6b\xf2\x48\ +\x00\x96\xf9\xb1\xed\xbe\x4f\x9d\xbb\xbe\xbe\x66\x83\x1a\x7f\x0e\ +\xf9\xde\x24\xf7\x1f\x7e\x58\xbe\xff\x70\xb3\x5c\xff\xec\x37\xcb\ +\xed\xdd\xad\xed\xef\xa8\xd4\x0a\x9e\x8f\x4b\x73\x8e\x6c\xeb\x8e\ +\x19\x6c\x07\x63\x1f\x73\xbf\xd9\x51\x3c\x3c\x2e\x6f\x5e\x7d\xb3\ +\xbc\xba\xf9\x66\xb9\xbe\xba\x55\xc0\x06\x7d\x20\x9a\x62\x50\x69\ +\x6b\xd0\xf1\x1a\xdc\x38\xa7\x02\xc5\xae\x67\x19\x21\x77\xa0\x8f\ +\x81\x73\xd5\x0b\xdd\x90\x5e\x18\xdd\x3c\xab\xda\x3a\xa7\x67\x68\ +\x01\x58\x6a\x84\x19\xc8\xeb\x73\xdd\x41\xcf\x86\x78\x47\xc0\xc9\ +\xc1\xe0\x96\x9e\x49\x01\x5a\xe8\xac\x61\xdd\x1e\xc3\x37\x37\xf5\ +\x4c\xe2\xcf\x2d\x00\x3c\x3d\x9b\xa0\x17\xf8\xc3\x4b\xfe\xe5\x7c\ +\x04\xf9\xa7\xc4\xc0\x3f\xfa\xef\x3b\xe4\x7e\x01\xe7\x83\x41\x47\ +\x2f\xfc\x90\x10\x2b\xc2\x60\xae\x1f\x03\x7a\x3e\xe6\x86\x17\x90\ +\xc2\xbf\x56\x1f\xf7\x53\xff\xf3\x66\x2e\x66\x2a\xff\x85\x17\xf7\ +\x1c\xb9\x32\x1b\x5a\x0c\xca\x76\x9e\x79\x0d\xba\x11\xeb\x90\x5c\ +\x26\x38\x06\x77\xe5\x13\x85\x84\xa9\xf6\x04\x3c\x23\xf5\x38\xea\ +\xba\x9e\x3d\x49\x39\x06\x01\x79\x3c\x35\xbb\x90\x3b\x3d\x5d\x05\ +\x5e\x0b\xc7\x89\xc7\x9d\x5e\x83\xfe\xa4\x7e\xb9\x1c\x02\xa6\x0d\ +\x72\x15\x12\x18\x40\xa7\xf3\x67\x84\xb1\xfe\xd5\x46\x40\x93\x25\ +\x57\x82\x1a\x0d\xb9\xa6\x95\xde\x50\xb8\x93\xe8\xf2\xea\xd8\xce\ +\x7c\x22\x4c\x0c\xd9\x30\xcf\x84\x27\xd2\x30\x48\x23\x8e\xa3\x48\ +\x74\xba\x83\x00\x46\xa4\xd0\x91\xeb\xa8\x74\x2f\x99\xa3\x68\x68\ +\x76\x3e\x66\x8c\x59\xb5\x1d\x25\x5e\x31\xa7\x9d\xdd\x48\x59\x23\ +\xf7\x55\x3b\xcf\x56\xb9\x41\xac\xf8\x8a\x0c\x0e\x2a\x73\x2b\x03\ +\x5b\x2d\xb7\x33\x15\xdd\x5d\xaf\xd1\x34\x1e\xf3\x43\x5e\xff\xa1\ +\x25\x1b\xf1\x36\xf7\xe1\x7e\x79\x75\xff\xf5\xf2\xdd\xb7\xbf\x62\ +\x2e\x7e\x2c\xb4\xd5\x05\xba\x8a\x3b\x76\xec\xd8\xb1\xe3\x04\xf6\ +\x6f\xa8\xed\xd8\xb1\xe3\xf3\x20\x1f\xfc\x0c\xa7\x9e\xdf\x3e\xe2\ +\xf3\x9d\x3f\xfe\xa3\x69\x41\x3e\x19\x1e\xfc\x6f\xbf\xfe\x72\x79\ +\xfd\x8b\xdf\x9a\x87\x0f\xf6\xfc\x83\x05\x7f\x6b\x62\x16\x1f\xaa\ +\xd1\x86\x0f\x1c\x58\x2e\x18\x05\xaa\x20\x30\x52\x17\x6d\x22\xc5\ +\x93\xa2\x03\xa0\x50\xdd\xf6\x81\x80\xc1\xec\x2e\x1b\x4e\x47\x34\ +\x90\x56\x7c\xd4\x0d\x3c\x76\x47\x83\xed\x25\xc5\x00\xd9\x78\xb3\ +\xab\x7d\x16\x31\xd7\xf5\x7b\x80\x7b\x39\x0a\xaa\x6e\x37\xb2\x59\ +\x87\x2f\xf9\x80\x39\x7e\x7c\xc2\x4f\x48\xe4\xb1\x3e\x6c\x9e\xed\ +\xa0\x88\xb6\x18\x69\xac\xcb\x8c\xba\x3e\xb8\x3e\x70\x07\xfb\x07\ +\xc2\x06\xf0\x22\xd1\x6b\x3b\xa3\x6f\x07\xb9\x7c\xe0\x14\x24\x3d\ +\xae\xdd\x6d\x49\xfd\xbc\xc3\xbf\xd0\x51\x98\x85\xa8\x6d\x59\x6d\ +\x28\x92\x84\xd7\x09\xb5\xc5\x95\xa5\x14\x62\x92\x77\x09\x6a\x4d\ +\x6f\x31\x5f\x69\xc0\xc8\x5d\xdc\xac\x5b\x71\xd1\xb6\x71\x5a\x71\ +\x0c\xe7\xcd\xb1\xc6\xa5\x39\xe7\xea\x2f\xa9\xfb\x24\x9d\x9d\x0b\ +\x3c\xfb\xe2\xfc\xd6\x3e\x77\xc8\x42\x4c\x77\x51\xa8\xad\x51\x17\ +\x71\x0e\x2d\x8b\x28\xae\xcc\xaa\x98\xd9\xfd\xdc\x06\x38\x25\x58\ +\x5d\x18\xb4\x93\x30\xa0\x80\x88\xca\x1b\xaa\x96\x32\x8e\xbe\xcd\ +\xde\x7b\x98\xe7\x32\xfe\x77\xf7\x14\x87\xe5\xc1\xa4\x73\x04\x70\ +\x0f\xa8\xb1\xac\x68\x54\x70\xbc\x37\xd3\xb6\x98\x8d\x29\x4d\xbe\ +\xc2\x35\xce\x47\x2d\xf9\xd1\xfc\x38\x08\xcd\x6a\x33\x57\x76\x8e\ +\x53\x71\x42\x1b\x60\xd0\x11\x18\x8e\x84\x41\xb6\x47\xdc\xb7\x16\ +\x74\xdb\x76\x8c\xce\xe3\xbe\x8f\xff\xa3\xf4\xfa\xa0\xdf\x26\xb0\ +\x2d\x7a\x7c\x58\x7e\xb8\x7f\xb5\x7c\x78\xfb\xd5\xf2\xcb\x7f\xf8\ +\x4f\xcb\x2b\x7b\xa1\xbd\x67\x92\x45\xeb\x86\x6d\x61\x4b\x03\xbe\ +\xc6\x66\xfe\x8e\xa7\xc3\x8e\x9f\xef\x42\x7c\x43\xed\xf5\xf2\xf3\ +\x6f\xff\x61\xb9\x7e\xff\xda\x8e\xbb\x1f\x3d\xc4\x78\xd6\xf8\xa1\ +\x37\x62\x3c\x00\x23\xa8\x32\x98\x46\x39\x06\x8c\x71\xc9\x12\xdd\ +\xf3\xce\x31\x1c\xd1\x6d\x86\xba\xc0\x7a\xad\x7a\x56\x6c\x3a\x33\ +\x4a\x4e\xa3\x7d\xbb\x93\x08\x3b\xe3\x06\xde\x87\xa4\xa9\xcd\xbb\ +\x32\x16\x3a\xeb\x7a\x2c\x79\xeb\x40\x61\x7f\xf3\xbe\x04\x8a\x6c\ +\x80\x31\x01\x16\xf4\x54\x77\x00\x93\xcf\x3c\x09\x7f\x42\x19\xf7\ +\x3b\xdd\xe0\x7c\x39\x91\x27\x1d\xc6\xa1\x96\xaf\x31\x10\x86\x9e\ +\x7f\x44\x48\xe3\xcd\xa2\xa1\x8b\x30\x39\x17\x95\xf9\xe0\xba\xe7\ +\x71\xa2\x9f\x5b\x70\x79\x68\x94\x87\x0e\x13\x61\x6c\x03\x48\xf6\ +\x0d\xad\x7a\x07\x92\xe8\xfa\x35\xf5\xe2\x15\xd1\xeb\xce\x68\xdc\ +\xcf\x1f\xab\x7d\x64\x60\xcf\x60\xfd\xb9\x47\x61\xc7\xbc\x3e\xe8\ +\x4c\x80\xa7\xd6\x18\x1f\x33\x3b\x38\xeb\xb9\x53\x4a\x5d\xc2\x8e\ +\x93\xf1\x88\xa4\x2e\x11\xb6\x0d\x95\x4d\x9a\xa3\x3b\xea\x75\x6a\ +\x10\x31\x5f\x61\x92\xc2\x50\xcf\x2d\x87\x1b\x5d\x6f\x43\x86\x0b\ +\xb2\x4e\x89\x3b\xe7\x1e\x7a\x77\xdd\x6a\xfa\x30\xa4\xa8\x6e\x80\ +\xe6\x84\x87\xdd\xa5\x93\xa0\x17\xae\x3b\x18\xb8\xff\xe1\x46\x1c\ +\x46\xe6\x02\x61\x73\xb0\x0e\x23\x5b\xd8\x44\x1a\x13\x94\x98\x9b\ +\x55\x5c\x8f\x70\x5f\x44\x6b\xa8\x2c\xed\x7a\xff\xc9\x60\x9f\x2b\ +\xe4\x76\x70\x13\x67\x9a\x9e\x1b\xef\x87\x1b\x65\x27\x30\xe1\xa0\ +\xc5\x2a\x45\x71\x0c\xa7\xda\x18\xdb\xbe\x86\x63\x03\x13\x71\x54\ +\xbc\xc2\xd5\x0f\xaf\x96\x9f\x7f\xf7\xd7\xf6\x7c\xf5\x8e\xc1\x7a\ +\xbd\x38\xb2\xc0\x8e\x1d\x3b\x76\xec\x38\x03\xfb\x37\xd4\x76\xec\ +\xd8\xf1\xf9\x71\xee\xf3\x1b\x74\x6a\x2f\x04\x7f\x28\x46\x1b\x1e\ +\x2a\x1f\xae\x96\xd7\x6f\x6e\x96\xd7\xbf\xfc\xcb\xe5\xff\xfc\x3f\ +\xbe\x5f\x3e\xe0\x47\xe4\xf1\xa4\xfa\xe8\x1f\x44\x1c\xf0\x27\x1f\ +\x61\xe1\x6f\x12\x92\x89\x41\x2d\x61\x8e\x3f\xc7\x06\xef\x8f\xaf\ +\xe3\x23\x6c\xc5\x2a\x46\xa2\x2b\xba\x8d\x41\xc6\x69\xad\x5b\x65\ +\x33\x10\x6d\x86\x53\xf1\x0d\x50\x1e\x79\x4a\x6f\x0f\xf8\xb6\x29\ +\xb2\x33\xee\x04\xfb\xfa\xe1\x87\xa0\x64\x0d\x18\x4d\x86\xc1\xb7\ +\x0b\x9d\xaa\x38\x4f\x4a\x63\xc4\xd8\x82\x47\x6b\x06\x78\x3b\xa6\ +\x11\xab\x3c\xe0\xf9\x5a\x17\xc6\x7e\x8d\xcc\xc3\x7a\x50\xc3\xa9\ +\x8c\x39\x5c\x2f\x8a\x23\xba\x34\xa0\xd0\x0c\xe8\x31\xdf\xd5\xf0\ +\xe2\xec\xfc\x0a\x9e\xc4\xb1\x8b\x76\x8e\x44\x81\xd9\x3e\x36\x4c\ +\xaa\xbf\x00\xe6\x55\x5f\x64\xae\xba\x59\xc3\x26\xce\xf1\xb4\x59\ +\x91\xa5\x76\x29\xa6\x79\x47\x0a\x5d\x32\xcf\xb9\x3a\x20\xb5\x93\ +\x09\xce\xa9\x83\x9f\xee\xae\x6f\xba\x5b\x8e\x2c\x8f\x37\x95\xf1\ +\xe3\x69\x66\x06\xae\x15\x04\x38\x84\xcd\xb1\x34\x0c\x4c\x0d\x9b\ +\x48\xa3\x33\x69\xb7\x0f\x89\x0c\x24\xd6\x9a\xca\x75\xf2\x91\x4c\ +\x3f\x3a\x7c\xc1\x76\xd3\x6e\xf5\xf8\xaf\xdd\xdd\x4e\xf0\xe2\xb7\ +\xaf\x4a\x86\xc8\xf7\x86\xf5\xb4\x03\x32\x62\x44\x5e\xc6\x92\x6c\ +\x66\x85\x7f\xb8\x8e\xbd\x2c\xcc\xac\xb0\x07\x82\xf3\x14\x0e\x2b\ +\x4b\x74\x31\x37\xfc\x3e\xed\xaa\x92\xb6\x89\xae\x1e\xc0\x4d\x47\ +\x61\x38\xeb\x0a\xbe\x15\xb1\x2d\x7c\x0d\x75\x90\x39\x5c\x5b\xc3\ +\x3d\x19\x9e\xdf\x0b\xf1\x53\xd4\xff\xd7\xfb\xc7\xe5\xf7\x77\xdf\ +\x2c\x57\x77\x5f\x2c\x8f\x0f\xf8\xcd\x60\xff\xed\xe0\x75\xf5\x09\ +\xce\x12\x19\x7c\x59\x6b\x9c\x9b\xbf\x23\x50\xcf\x08\x5c\x09\x38\ +\x9e\xcb\xf2\xdb\x9f\xfe\xcb\x72\xff\xfb\x5b\x3b\x7e\x57\xfc\x86\ +\x28\xfe\x5f\x17\x68\x75\xad\xf8\xee\xf7\x3f\xed\x57\x4b\xf4\xbb\ +\xdf\x3c\xff\x4a\x34\xa9\xb3\xe8\x15\xaf\x2b\x49\xb6\x26\x27\x7a\ +\xb2\xcf\x9b\xc1\xf4\x4a\xa9\x65\xd1\x89\x27\x86\xd5\xad\xe2\xa6\ +\x08\xbf\xd2\x6e\xc7\x35\x42\x0c\x96\x75\xbc\xc4\xa2\x29\x1c\x43\ +\x53\x23\x1e\x23\x91\x01\x33\x23\xe0\xcf\x2f\x12\x82\xc2\x9a\xe1\ +\xc4\xfd\x2b\x42\x68\xbe\x35\xca\x81\x19\xc7\x8d\x4e\x18\xfc\x22\ +\xcb\xa6\x58\x6a\x80\xe4\xdc\xf0\x34\xd8\x34\x02\x6e\xf8\xff\xb9\ +\x17\x5e\xc6\x1a\x9c\x97\xa6\x0a\x9a\xed\x96\x2b\x9a\xd9\xe2\x35\ +\x24\x0c\xae\x13\xdd\x89\xa1\xd9\x4a\xb2\xed\x97\xcd\x73\x67\x55\ +\x30\x50\xd2\x1b\xb6\xc4\xdb\x38\x3f\xe3\xf2\xda\x1f\x0b\x3c\xee\ +\x58\x4e\x2c\xa9\xee\xbb\x7a\x5f\x40\x64\xbd\x5f\x9d\xa1\x82\x22\ +\xd7\x77\x18\xdc\x44\xe5\x61\x8f\x3a\xf3\x27\x47\xb7\xd7\x99\xdd\ +\xbd\xbe\x17\x80\xe3\xb6\xc1\x1a\xcf\xb3\x18\xdd\x74\x83\x76\x72\ +\x40\x38\x8d\x88\x32\x56\x51\xf5\x32\x16\x2b\x45\x57\x76\xa6\xc2\ +\x29\x4f\x22\xba\x52\x27\xa9\x18\xd1\xa5\x5e\x28\x22\x98\xbe\x6d\ +\xe0\x72\x30\x34\x8b\xa0\x2b\x91\x8e\x97\xba\x38\x82\x35\xc5\xec\ +\xea\x8e\x31\xa1\x99\x71\x56\x90\xe8\x32\x0d\xe6\x8f\x94\x61\x2d\ +\x85\xce\x89\xba\x4d\x40\xdd\x07\x31\x53\x8b\x73\x84\x5e\xaf\x61\ +\x55\x1f\xc7\x84\xbd\x9a\xb3\x29\xa1\xe5\x79\xb3\xd7\x80\x06\xcf\ +\x81\x72\x1e\x37\xde\x26\xe6\xdc\xde\x39\x87\x84\x83\xad\x8c\xc5\ +\xed\x75\xf5\xf0\x61\x79\xff\xc3\x61\xf9\xed\x5f\xfc\x97\xe5\xee\ +\xfa\x8d\xa9\xec\xe9\x6a\xab\xe0\x8e\x1d\x3b\x76\xec\x38\x0b\xfd\ +\x67\x76\x3b\x76\xec\xd8\xf1\xb9\x70\xc9\x43\x5d\x3e\xd5\x3e\x0f\ +\x28\xd3\x4a\xad\x17\x70\x77\x75\xb3\x7c\xf3\x8f\x7f\xb7\xfc\xf0\ +\xfe\xed\xf2\x70\x8f\x3f\xfb\x68\x7a\x74\x7c\x70\x35\xfd\xc1\x3f\ +\xf8\x81\xa9\x0f\xff\xfa\x3a\x61\x47\xcc\xe3\xe6\x4e\xd6\x5f\xb3\ +\x46\x74\x31\x39\x5c\x4c\xd8\x42\xf5\xbb\x98\x27\xf5\x72\xad\x66\ +\x00\x48\x6c\x50\x41\x7a\xdc\xd0\x08\x57\x89\x7c\x6b\xfe\xa6\x40\ +\x1f\xb4\x44\x13\xcc\x4e\x3e\x56\xe3\xfa\x08\x60\xc0\x1b\x93\xb0\ +\x5d\x07\xd4\xbd\xd7\x68\x97\xc4\x5c\xb0\xcd\xd0\x9b\x12\x15\xe1\ +\x9b\x1c\x72\x11\x70\xba\x99\xc5\x46\x47\x0e\xff\xc2\xe6\x3a\xd3\ +\xb6\x91\x06\xd6\xde\xe6\x6d\x41\x68\x0b\x6f\x16\x94\xea\x35\x97\ +\x23\xb6\x13\x3c\x3d\x07\x6c\x97\x75\x62\x43\x51\xf0\x03\x68\xaf\ +\x49\xe4\xe0\xb5\x88\x31\xfd\x1c\x68\x0a\xc3\x53\xd2\x7b\x3c\xbf\ +\xc2\x49\x60\xbd\x65\x37\xcc\x81\xe0\xe5\x6b\x79\x5a\x96\x63\x9a\ +\xab\xb5\x96\x7d\x2c\x5c\x32\xd7\xb3\xb4\x31\xbf\xf8\xa3\x75\x22\ +\x28\x8d\xbf\x21\x6f\x68\xf9\x38\xe7\x7c\xa3\x20\xe1\x39\x3d\xd9\ +\xc6\x35\xea\x75\x02\x94\xeb\x18\x2d\x6a\xf4\x1a\x40\xd7\x91\x75\ +\x71\x41\x55\x4d\xda\x08\x87\x29\xa7\x5e\x7f\xb4\xd9\x9c\xc4\x40\ +\x4b\x63\x81\x78\xac\x30\x35\x12\x65\x62\x41\xf8\xfc\x10\x98\x61\ +\xec\xa1\xd8\xf1\xc0\x86\xbe\xdd\x3b\x8e\xed\xc0\xa8\xc3\xb6\xde\ +\x49\x34\xe5\x97\xb5\xb5\x8a\x63\x4e\x6c\x13\x21\xcb\x34\x3c\xde\ +\x6a\x82\xd9\xd5\x4d\xd4\x1a\x81\x20\x38\xa0\x93\x00\xd3\xd3\xb7\ +\x8e\x5f\xd8\x47\xec\xf9\x0f\x3c\xbe\x9f\x76\x83\xff\xc4\x14\x1a\ +\xc6\x97\xe5\xc3\xe3\x61\xf9\x7f\xff\xe1\xc3\xf2\xfa\xe6\x9b\xe5\ +\xf1\xf5\x6b\xbc\xf4\xe2\x7b\x6e\x0e\xc8\x2e\x01\xf2\x94\x5b\x31\ +\xab\x73\x69\xed\x1d\xdb\xb0\x7d\xf9\xed\xd7\xbf\x59\xde\xdd\x7e\ +\x6d\xfb\xff\x8e\xbb\x16\xcf\x53\xfc\x9e\x1a\x40\xc3\xd8\xd8\xe7\ +\xb9\xeb\xd3\x70\xb8\x5b\x49\xd8\xee\xcf\x0e\xab\xc0\xf3\xeb\x18\ +\xe2\xfa\x93\xea\x78\x45\x8b\x52\x10\x6a\x93\xb9\x15\x7e\x3d\xc9\ +\x78\x1e\xf7\x72\x47\xab\xed\x6b\x2b\x41\xb9\xd1\x50\xc2\x2f\x07\ +\xbf\x1e\xc6\xe7\x0c\x52\x6a\xd6\xf1\xf9\x94\x63\xc4\xdd\x75\x82\ +\x7c\xdd\x1b\x58\x07\xc8\xb8\xc3\xf9\x97\xe7\xca\x96\x1f\x36\xc0\ +\xd5\x2b\x5e\x82\x8a\x7b\xc0\x4d\x0f\x38\xa1\x99\x71\x57\x54\x5a\ +\x02\x32\x99\x61\xeb\x9b\x69\x19\x90\x28\x7d\xa0\x39\x95\x8e\x29\ +\x1b\xe4\x5b\xf3\xd7\x2d\x3f\x06\x55\x52\x9d\xd8\x33\xd6\x15\x92\ +\xb9\x01\x33\xf8\xba\x97\x75\x8a\x0e\x5e\xd5\x0a\x20\x74\xef\xde\ +\x84\xb2\x56\xd9\x53\xb0\xa4\x9b\x1b\x90\xa2\x2a\x47\x4e\xed\x53\ +\xc1\xe6\xaa\xd3\x0d\xbb\x04\xa1\xdc\xff\x44\x58\x18\xac\xb9\xe7\ +\xfb\x18\xc7\xa0\xd7\x02\x10\xb5\x23\xc2\xf3\x4d\xc7\x69\x38\x9e\ +\xd1\x75\x40\x66\x57\x33\x0c\x1f\x5a\x4f\xcb\x3a\x67\x1c\xe2\x88\ +\x1a\x2b\xa2\x62\xba\x5d\x63\x9d\xce\xb7\xa1\x72\x1d\x26\x3c\xb4\ +\xa4\x6b\xac\x3c\x2f\x28\x86\x51\xf5\xbd\x3b\x32\x1a\x1a\xd5\x6a\ +\x25\x32\x58\xee\xa3\xd6\x35\x49\xb3\x36\xcc\xc1\x59\xc7\xd6\x5a\ +\x1d\x4f\x0e\x06\x1d\xb1\x4e\x39\x78\xd0\xd4\x66\xd1\x14\x54\xa5\ +\xef\x17\x28\x84\xd8\x53\x89\xce\x8f\xfd\xeb\xbd\x78\x28\xa2\x02\ +\xa9\xf4\x0c\x5e\x5d\xfe\x58\xb9\x43\xb8\x9e\x01\x58\x0f\x87\x73\ +\x9a\xc1\x9b\x90\xd9\xa2\xad\xe3\xa7\x13\xf6\xf5\x60\x0e\x42\x0f\ +\xa6\xb9\xba\xfe\xb0\x3c\x7e\x7f\xbb\xfc\xfa\xdb\xbf\x43\x11\x02\ +\x7a\x54\x71\x6b\xc7\x8e\x1d\x3b\x76\x5c\x8a\xfd\x1b\x6a\x3b\x76\ +\xec\xf8\xf1\xe0\xd4\xf3\x1c\x9e\xfa\xd0\x5e\xf0\xb9\xaf\x2f\xd5\ +\x3f\xec\xc2\xfb\xe6\xd7\xbf\x5a\xae\xbf\xf9\xc9\xf2\x78\xb8\xe1\ +\xdc\x78\xfc\xd5\x33\x2c\x3f\x94\x88\x77\x2e\xa8\x43\x93\x76\xa9\ +\x83\x40\x80\x5c\xf1\x2b\x18\x63\xfd\x35\x92\x83\x31\x13\xcc\x50\ +\xe7\x41\x8e\x2d\x1a\x6b\xdb\x9a\x9f\x88\xd8\x4a\x32\xc9\x93\x1b\ +\x9b\xbf\x01\xec\x89\xd0\x48\x27\x83\xcd\x37\x86\xbc\xf5\x6d\x7d\ +\x58\xab\x6f\x2c\xf7\xa4\x0b\x6c\x74\x41\x2d\xe1\x9c\x0f\xd0\xba\ +\x3e\xea\xba\x20\x6c\xdf\x7e\x5f\x91\x62\x8e\x62\xa6\xc3\xc1\xba\ +\x1a\x93\xcd\x5c\xb6\x98\x4f\x6e\x34\xc0\xeb\x7b\xcc\x7b\x00\xb3\ +\xdb\x3f\x7e\x58\x0d\x1e\xf9\x0e\xad\x0b\x9c\xf4\xa1\x8e\x08\x80\ +\x08\x7e\x57\xc3\x46\x6d\x00\x6b\x79\x86\x33\xae\x6f\x39\x2d\x7e\ +\x1c\x2d\x8f\xb9\x98\x22\xd9\x4b\xf1\x94\x9c\x67\x60\xba\x79\xb9\ +\x25\x67\x41\xea\xcb\xb2\x7a\x5c\x9a\x7b\x89\xfe\x5c\xad\x74\x47\ +\xb5\x27\x4e\x07\xe6\xc7\xf1\xef\x30\xe4\xb5\x79\xac\xb7\xf3\x31\ +\x2e\xbb\x00\x1c\x11\x2d\xa0\x1c\xe6\x79\xb2\x8d\x1e\x97\xaa\x8f\ +\xc5\x58\x00\x6a\x15\x36\x63\x6e\x0f\xd7\x03\x62\x74\xc0\x0f\x67\ +\x37\x62\x31\xd2\x56\x30\x76\x46\xc6\x0c\x58\x2b\xe3\xa9\x31\x8e\ +\x0d\x91\xd0\x97\x98\x43\x5b\x18\x54\xf2\x86\x20\x78\x39\x8b\x2f\ +\x63\xce\x25\x8e\x40\x20\xaa\x9a\xa0\x5b\x0f\x61\x11\x04\x3b\xae\ +\x5f\x45\x0b\x55\x91\xd9\xfd\xc1\x24\x78\xdf\x89\x7b\x57\xea\x6b\ +\x5a\xa0\x53\x58\x4a\x4a\xb0\x46\x78\x51\x9a\x3c\x16\xad\xb5\xa7\ +\x8f\x9f\x55\xb9\x36\x13\xfc\xe3\xf2\xe1\xea\x7a\xb9\xff\xe1\xc3\ +\x72\x75\x78\xb5\xfc\xe2\xbf\xfe\xd7\xe5\x8b\x1b\x7c\xb3\xed\x60\ +\x31\x7b\x0b\x93\xeb\x31\xe4\x77\x66\x36\x80\xf0\x28\x41\x7a\x29\ +\xb1\xe3\x89\x38\xb2\xeb\xfd\x2c\x43\xbb\x59\x6e\xae\xbf\x58\xbe\ +\x7c\xf7\x9d\xbd\x8c\xbd\xb2\x43\x78\xe0\x37\xd4\xea\x71\xc1\x39\ +\xf6\xf8\x18\x7f\xcc\x73\x72\x5c\xf4\x7a\xeb\x43\xd8\x01\xbc\x9a\ +\x7a\x4a\x9f\x38\x29\xd3\xa1\xc6\xb3\x62\x92\xeb\xec\x69\x3d\x91\ +\x31\x62\xe8\x75\x6b\x8f\xcc\x5a\x48\x7f\xa4\x84\x15\x0f\x2d\xc8\ +\xda\xb8\x15\xd6\xc2\xcf\x6b\x2b\x40\x57\x31\x0e\x6e\xc0\x86\x58\ +\x63\xa2\x9a\xd2\xc1\x8e\x51\xf7\x8a\x4c\x29\x7a\xc0\xf9\x9e\xc4\ +\x2c\x3a\x5a\x18\x54\xb7\xa9\xdc\xc2\xf1\x86\x55\x2f\xf3\xcc\x33\ +\xf4\xeb\x09\x87\xeb\xa1\x01\x3a\x07\xc1\x23\xd6\x5b\xb2\x54\x79\ +\xdc\x85\xc8\xf1\xa1\x39\xf2\xa5\xf7\x99\x22\x6e\x88\x3d\xc1\x2f\ +\xda\x75\xe1\xe7\xe0\x09\xf2\xed\x14\x45\x2f\x2c\xfa\xa4\x9c\x33\ +\x50\x97\x33\x9b\x62\xf0\xdb\xbe\xd5\xde\x16\xda\x1e\xaf\xe7\x56\ +\x72\x6c\xd6\xdb\x97\x32\xdb\x11\x8b\x18\xc7\x75\xe5\x84\x4b\x9a\ +\x92\x46\x90\x44\xab\x0c\xa4\x87\x73\xca\x17\x05\xaf\xcb\x70\x04\ +\xd3\x24\xbe\x0d\x95\x96\x1d\x23\x91\x01\xd4\x87\xed\x71\x67\x02\ +\xf2\x45\xc4\xd8\xdc\x10\x8c\x00\x17\xa1\x16\x8e\xb5\x07\x51\xed\ +\x74\x4a\x6c\x9c\x93\x08\x3b\xf7\x71\x5c\x97\x2b\x49\x25\x12\x41\ +\x6a\xb0\xb1\xca\xdc\xde\x3a\x7a\xc1\x23\x87\xc2\x3e\xb9\xa7\x4a\ +\xc0\xd0\x79\xe1\xd4\x73\x87\x60\xd1\x3e\x8f\x3e\xaf\xf5\xf5\x9a\ +\x48\x17\xb9\x9b\xe5\xbd\x63\xdc\x3f\xd9\x33\xb8\x9a\x91\x90\x2e\ +\x24\x01\x18\xde\xf8\xfa\xc7\x9f\x32\x32\xcb\x28\x2e\x53\x3f\xa4\ +\x62\xdc\xe3\xa3\xbd\xde\xfe\xe1\x66\xf9\xe2\xf6\x97\xcb\xdd\xdb\ +\xaf\x97\x07\x0b\xf5\xf3\xf4\xde\x8e\x1d\x3b\x76\xec\x38\x0f\xfb\ +\x37\xd4\x76\xec\xd8\xf1\xc7\x03\x3d\x3b\x3e\x07\x43\xbe\x3f\x7e\ +\x36\xf8\xe3\xbe\x31\x1c\xae\x97\xdb\xaf\xbe\x59\x6e\xbe\xfb\x76\ +\xf9\xbf\x7e\xff\xc3\x72\xb8\xbe\xe6\x4f\x7d\x41\x8f\x37\x4d\x78\ +\x50\x46\x43\x0e\x6b\x44\x21\x3d\x57\xf3\x59\x36\xb8\x06\x04\x47\ +\xcc\x38\x87\x22\x6b\xc5\x76\xce\x34\xc6\x45\x55\xf8\xc2\xc8\xa2\ +\x9b\x95\x2b\x7c\x86\xc3\x18\xdf\x24\xa4\x96\xcd\x3a\x3e\xfc\x5b\ +\x0b\x4d\x0c\x0e\xc6\x31\xe2\x2b\x34\x14\xf4\x6f\xe2\x1a\x1f\xb5\ +\x0c\x7c\x93\x00\x92\x06\x9d\xe0\xdc\xd0\x3f\x86\xb0\x06\x9a\x74\ +\xbc\x19\x07\x0b\xa8\x79\x0c\x15\x17\x5e\x54\xf2\x96\xc1\x32\x28\ +\x18\x6b\x13\xa4\xe5\x18\x36\x34\x69\x9a\xc1\xa5\x59\xe3\xff\xb3\ +\x06\x43\x01\xa2\xaf\x07\x3e\x73\x89\xa8\x55\x0a\xf2\x4f\x67\x65\ +\x1a\x02\xc6\xf5\x49\xc4\x84\x0a\x8c\x73\x1a\x48\x4d\xf8\x4d\xf8\ +\xbc\x9f\x1f\xa7\xd7\xa0\x95\x3e\x77\xc5\x4f\xa9\xf1\x14\xfd\x39\ +\x98\xea\xb6\x92\x71\x58\x87\x18\xdc\xa4\x26\x79\xf5\x74\x88\x3b\ +\xde\x1a\x2b\xda\x09\x2f\x57\xae\x01\x43\x37\x9f\x21\x6d\x19\x31\ +\xfa\x80\xde\xda\x10\x5b\x4d\x57\x24\x69\x57\x42\x2d\x39\x33\x2b\ +\x15\x7c\x86\x79\xa1\xc6\xb5\x24\x0d\xcc\x14\x18\xc2\x4e\x0a\xba\ +\x1a\xc7\x2a\xe5\x23\x66\x43\xde\x8e\x53\x27\x43\x5b\x14\x63\xe8\ +\x05\xd8\xe3\xad\x7c\xcc\x24\x48\x5a\xe7\x5f\xde\xd1\x70\x74\x5c\ +\xbf\xd8\x0e\xbc\x47\x61\x74\x4f\x46\x02\x77\x26\xc5\xbc\x4c\x11\ +\x80\x08\x57\x2a\x56\x2b\x7c\x93\x83\xb3\x76\xb8\x5a\x0e\x87\x9b\ +\xe5\xca\x46\xaf\xf7\x68\xd4\xc3\xf2\xff\xfd\xfe\x61\x79\xfd\xee\ +\xbb\xe5\xa7\x7f\xfb\x2f\x5c\x0f\xfe\x57\x53\x82\xf7\x4e\xd9\x31\ +\x6e\x01\x61\x49\x4e\x48\x57\xc0\x34\x3b\xb6\xb1\xda\x9f\xeb\x1d\ +\x8c\x1f\x15\x79\x75\x38\x2c\xdf\x7d\xfd\x4f\xcb\x72\x7f\xbd\x3c\ +\xe0\xff\x51\xb3\xd7\x2d\xfc\xff\x78\x7e\x14\x61\xe3\xf5\xd0\xf5\ +\x7e\xae\xd8\x17\x1f\xa4\x04\x23\xf2\x90\x87\xb0\x1f\xce\x44\x51\ +\x9f\x93\x28\x4d\x37\x8e\xa4\x23\xcf\x75\x0c\x35\x14\x1b\x96\x14\ +\x8d\xf0\x30\x44\x0b\x86\x72\xb5\x1a\xaf\x0d\x83\xc3\x09\xf5\xcc\ +\x4b\x86\x86\xa6\x77\x9b\x63\x18\xc1\xcb\x4d\xbf\xf4\x2d\x68\xbb\ +\x1f\xa6\x5a\xfc\x13\xd2\x82\x91\x8e\x1d\xd7\x78\xc6\x51\xde\x54\ +\x68\x03\x55\x36\xaa\x76\x0b\xc9\x80\x22\x4e\x00\x16\xea\x01\x86\ +\xcd\x74\x3c\x9f\x82\x95\x54\x4c\x83\xd7\xf1\xbc\xcc\x46\xa0\x0c\ +\xeb\x39\x23\x94\x23\xd6\xa5\x67\xd9\xc6\x95\x31\xc9\x02\x6c\xcb\ +\x2c\x56\xf3\x8e\x60\x1d\x56\x31\xb5\xe7\xe2\x99\x35\x9e\xb2\x9c\ +\xa2\x6b\x26\xac\x38\x6e\x66\x8a\xd7\xeb\x60\x1c\x99\x1e\x55\x17\ +\x23\x61\xc7\xaf\xbe\xf6\xfa\xe1\x14\x61\x80\x19\xe7\x03\x41\x3f\ +\x0c\x7c\xc9\xb6\x16\xa7\x82\x42\x0a\x3a\x54\xa3\x68\x9a\xae\xd1\ +\xcd\xd2\x9c\x65\x6e\x81\x84\x75\xf8\x52\xb0\x1b\xeb\x5a\x64\x38\ +\x22\x9c\x72\xa0\x71\xe8\x6a\xc4\x10\xae\x68\x0c\x34\x25\xb3\xd1\ +\xf3\xc2\xdf\x42\x89\xd3\x2c\x7e\xf7\xfc\x92\x76\x25\xcf\xc0\xb4\ +\x06\x00\xc7\xda\xaa\xdc\x8a\x88\xf3\xa2\x3b\x3b\x3a\x6f\x9d\x31\ +\x40\xf7\x34\xf6\x06\x1a\xaa\x60\x63\x04\x44\xf7\x3a\x43\x7c\x40\ +\xa0\x0c\xc0\x43\xa9\x74\x54\x77\x08\x79\xb6\x57\xe0\x31\x2b\xc5\ +\x74\xff\xe3\x48\x1e\x7f\xee\xf1\xab\xe5\xab\x6f\xfe\x66\x79\x77\ +\x75\xcb\x3f\x98\xcd\x72\x99\x03\x6f\x98\x60\xc7\x8e\x1d\x3b\x76\ +\x9c\xc4\xfe\x0d\xb5\x1d\x3b\x76\x7c\x1e\x94\x07\xbf\x8b\x30\xcb\ +\xbb\xe4\x19\x70\xc8\x57\x6a\x7b\xac\xc5\x18\xac\x0d\x37\xb7\xaf\ +\x97\xaf\x7e\xfb\xb7\xcb\xff\xef\xdf\x7f\x58\x6e\xaf\x0f\xf1\x61\ +\x82\xa9\x6d\x3c\x98\x7f\xb8\xba\xce\x0c\x8c\xf8\xf3\x34\x9a\x04\ +\x16\x61\x9c\xff\x6b\xe8\xbd\x01\x5a\x4a\x60\x53\x29\xdd\xa0\x3f\ +\x0a\x14\xeb\x17\x32\xc5\xf8\x3e\xab\xe5\x59\xe7\x5f\x81\xce\x69\ +\x79\xa5\x00\xf7\x0b\x8c\x90\xaa\x11\x66\xb4\x7d\x6f\x60\x9e\x35\ +\xff\x22\x40\x79\xb9\xa8\x14\x31\xf2\x18\xc3\x26\x2a\x87\x7f\x72\ +\x02\x34\xad\x13\xa5\x3c\x3f\x1e\x3a\x2a\xe5\x83\x7f\xa7\x1d\x36\ +\x26\x6f\x60\x48\xf1\x1a\x20\x7c\x9b\x48\xb3\xc3\x56\xc6\xfa\x01\ +\x4b\xe4\x4f\xb3\x06\xe3\x1f\xda\x00\x5e\xa8\xf9\x02\xb4\xfe\xcf\ +\xa3\xfe\x01\x8e\xd6\x8f\xf3\x71\xcc\x00\xa3\x6a\xad\x6f\xe3\xb9\ +\x80\xfe\x58\xab\xd6\xe7\xc7\x7a\x1d\x5a\x5d\x6d\xcf\xc5\x45\x75\ +\xca\x81\xb9\x64\xee\x73\xe7\x38\xa9\x2b\x41\x9d\x2f\x84\xad\x4b\ +\xfe\x2a\xbf\x3f\x1d\x57\x28\x57\x48\x0f\x14\x8c\x0f\x0a\xbb\xb9\ +\x02\xdd\x87\x29\x44\xab\xc4\x73\x5a\x0e\xf2\xc3\x14\xf2\x1b\xcf\ +\x26\x2a\xb2\x26\xec\x72\xe2\x5a\xa9\x82\x74\x63\x4e\xf8\x11\x22\ +\xc8\x2b\xe6\x36\x05\xd2\xd8\xc8\xf5\x17\x5f\xae\xaf\x0c\xeb\x07\ +\x19\x02\x0e\xda\x91\x86\xa0\x95\x97\x48\x3e\xe6\x4e\x68\x7b\x7d\ +\x58\x01\xfb\x63\x88\xf9\xfa\x44\x6a\x55\x05\x11\xeb\xb8\x4d\xf8\ +\x5d\xa8\xaf\x06\xdf\xfe\x19\xd9\x8e\x82\xe0\x7c\x9b\x1f\xe8\x35\ +\x7d\x0d\x14\xb1\x31\x4f\x0a\xe7\xec\x25\xd5\x63\xe6\x3f\x2e\xd7\ +\xcb\xfd\xfd\x0f\xfc\x86\xda\xf5\x37\xbf\x5a\x6c\x18\xd0\xd7\x3f\ +\x09\x2d\x60\x1c\xcf\xc1\x25\xda\x1d\x13\xf8\x0e\xfc\xc5\x77\x7f\ +\xbf\x7c\x79\xfb\x0d\x0f\x1d\x0e\x3d\xbe\x61\xc6\xdf\x54\x33\xe0\ +\xbc\x00\xa9\xa3\xea\x67\xa0\x51\x75\xdf\x23\x28\x1f\xd7\x00\x1c\ +\x70\x48\x25\x39\x22\xaa\xa9\xe8\xe0\x7b\x0e\x9c\x14\xb8\xd5\xdc\ +\x6d\xf4\x69\x0d\xc1\x65\x78\xd4\x14\x5f\x66\x27\x19\xf5\x03\xb0\ +\x87\x28\x41\x67\x2d\x2e\x97\x66\x87\x4b\xd0\x70\xbd\xc7\x3c\xa2\ +\x38\xb8\xcc\x51\x1c\x63\x70\xcd\x00\x9f\x33\xd3\x4f\x0b\x46\x34\ +\x1f\x5a\xcc\x3d\x1f\x7b\x14\x4d\x2c\x40\xeb\x10\xe0\x26\xc7\x31\ +\x74\xec\x0d\x14\x44\x23\xcc\xf0\x2f\xeb\x5a\x7d\xde\x59\xf9\x05\ +\x26\x4f\x1e\x7e\xe1\x1c\xd4\x2d\x48\xe7\x5b\x02\x12\xc6\x42\x60\ +\xa0\x16\xbc\xbb\x01\x10\x7d\x2e\xe3\xd1\x61\x60\x1d\xfa\x39\x38\ +\x66\x27\xad\x04\x4a\xcc\x04\x37\x6a\xef\x63\x0a\x5e\x18\x27\x6a\ +\x2b\x3c\x6b\x17\xa1\xbe\xf6\x95\xe3\x26\xc3\xf6\x01\xec\x5a\x16\ +\x36\x76\x5d\xe5\x46\x0f\xd0\x7e\xd7\xf3\x36\x15\x6b\x19\x91\x71\ +\xa0\x0a\x7b\x32\x63\xac\x1d\x1c\xfa\xee\x50\x56\x29\x47\xb3\xf8\ +\x05\x06\x46\x44\x9c\xf6\x4e\x54\x89\xcd\xa0\x1a\x0c\xcf\xa4\x72\ +\x72\xcc\x59\xd9\x69\x24\x22\x26\x5e\x73\x2b\x2c\x23\xd9\x0c\xc4\ +\x31\x53\x3c\x42\x5a\x3a\x41\xa2\x98\xd6\x65\x78\x34\xba\xc1\xf6\ +\x24\x0d\x1f\x67\xfb\xb5\x47\x4b\x9e\x86\x2b\x9a\xd4\x3a\x77\x32\ +\x07\x46\x3a\x0d\xa4\x27\xbc\x56\xd6\xf2\xb1\x2f\x75\x2e\xbb\x45\ +\x85\x11\x18\xbd\x06\x34\xf6\x2f\x92\x32\x97\x30\xaf\x27\x0c\x71\ +\x7c\x02\xb9\x0e\x4a\xe1\xa0\x16\xaa\x73\x06\x44\x9c\xc5\xeb\x2a\ +\x7f\x0b\x1c\xb6\xad\xe3\xf1\xc3\xf2\x87\xf7\xef\x97\xbf\xf8\xf9\ +\xff\xbc\xdc\xdd\xbe\x6e\xb7\x2b\xd5\xf3\x95\xee\xd8\xb1\x63\xc7\ +\x8e\x0b\xb1\x7f\x43\x6d\xc7\x8e\x1d\x9f\x07\xf9\x10\xf7\x04\x8c\ +\xcf\x7d\x97\x3e\x07\x96\xb9\xd7\xa9\xfd\xc2\xf0\xd3\xf2\x5f\xfc\ +\xa7\xbf\x5f\x96\x87\x2f\x96\xdf\x7f\x78\xc0\x5f\x9a\x5a\x0e\xf6\ +\x44\x7b\x8d\xa7\x5a\xfb\x42\xfe\x01\x7f\x7e\x0a\x8e\x71\xfc\x0d\ +\x36\x15\x45\x29\xe3\x58\x91\x36\x0c\x00\xda\x30\x43\x0b\xd7\xcd\ +\x61\x45\xe6\xb6\x0f\x93\xb2\xc0\x36\x66\xda\x55\x5a\x9b\x63\x98\ +\xcd\x41\x7d\x9f\xbf\xa9\xab\xb5\x65\xc7\x93\xba\x72\xf8\x06\xc0\ +\x5a\x95\x92\x14\x4f\xd3\xde\x7a\x84\x20\x06\x87\x1c\x8c\x19\xb0\ +\xca\x95\x17\xcc\xa6\xab\xb1\x60\x90\x75\x9a\x9c\x57\x23\x3b\xcc\ +\xe1\x5b\xe0\x7e\x8c\x30\x65\x04\xb4\xfe\x06\x6c\x4b\x13\xd1\x32\ +\x3f\xf3\x3b\x6d\xe3\x7d\xbb\x3c\xd6\x7a\x69\xfd\xdb\x71\x00\xf4\ +\x9e\x85\xa6\x37\x6f\x80\x29\x24\x22\x2c\xe2\x5f\x8e\x62\xb4\x9c\ +\xe7\xa2\xad\x64\xab\xcd\xb0\xc5\x3f\x05\x9c\xc7\xb6\x1b\x6f\x1a\ +\x39\x8a\x8b\xf6\x92\xb8\xa8\x26\x8e\x45\x1c\x8f\x4b\xf2\xce\xd5\ +\x9e\x5f\xd3\x77\x0a\xb5\x58\x8f\x92\xca\xda\x46\x88\xc3\xc8\xf3\ +\x3b\x5a\x87\x5a\xcb\x50\xcf\x6b\xd1\x5d\x1e\x6c\x1a\xed\x5a\x97\ +\x10\x43\xbd\x66\x46\x78\xc4\x8e\x6f\x91\xc8\xf4\x5c\xb7\xb5\x02\ +\xfa\xc1\xf9\x10\xbd\x0d\xb4\xe2\x3a\x23\xcc\x76\x1e\x91\x14\x2c\ +\xed\xff\x40\x0b\xe0\xfc\xc2\x3f\xca\x5c\xad\x0f\xfc\x64\x33\x46\ +\x1b\xf5\xeb\x1c\xc3\x08\x54\x5b\xda\xaa\x1b\xb4\x35\x34\xc6\x74\ +\xe2\x57\x3a\x51\x48\xce\x82\xed\xc5\x00\xbb\x06\xbb\x64\x73\x62\ +\xbf\xf8\x96\xd8\xf6\x96\xcd\x29\xe6\xe0\x18\xcc\xe7\xde\xf1\x2f\ +\x83\xf7\xdc\x41\xa1\xe5\x40\xda\xf7\x27\xea\x6b\x5f\xea\xcf\x3d\ +\xe2\x8e\x07\xee\x0f\xef\x6f\x97\x1f\xee\x5f\x2d\xdf\xfc\xe3\xbf\ +\x2c\x5f\xbc\xba\x75\x11\x2a\x74\xdf\x65\x79\x22\x30\xe7\xa9\x32\ +\x35\xfe\x02\x53\xfe\xc9\xa3\xdb\x47\xd8\xc1\xde\xf4\x0a\xf6\xed\ +\x17\xbf\xb5\xe7\xa8\x2f\x96\xe5\xfd\xdd\xf2\x70\x85\xff\x9b\x16\ +\x7c\x5c\x57\xfc\x93\xc6\xa6\x25\xa7\x56\x31\xfa\x80\xe6\x68\x58\ +\xab\xfa\xb8\xa3\xe4\xc5\xc9\xcd\xf3\x36\xa1\x98\x0f\x3d\xb4\x36\ +\xaf\xe1\x79\x68\x93\xf5\x19\xad\x12\xd4\xe9\x26\x41\x78\x9d\xca\ +\xb8\x83\xce\x59\x59\x4c\xb3\xe6\xac\xa1\xab\x03\xde\xe7\xe6\xaa\ +\x42\x2b\x31\x06\xde\x9f\xc2\x16\x5f\xe3\xc8\x61\x05\xee\x8b\xd8\ +\x22\xeb\xea\xd6\xa1\x35\xc3\x6b\x0a\x69\xe6\xba\x2c\x2f\x4d\xdc\ +\x4b\xbc\x6e\xae\x83\x9d\xdb\x44\x1a\x0e\xcf\x75\xb2\x94\x4c\x87\ +\xa6\xe2\x68\x6e\x12\xfe\x83\x6d\x06\x1b\x60\x66\x88\x06\x3a\xac\ +\x85\x5b\x4b\xb0\x0e\x73\xba\x8a\xb4\xb8\xea\x72\xf3\x1b\xe3\x0d\ +\xc8\xf5\x7b\x96\x5e\xcb\x78\xdf\x4c\x5d\xe4\xe4\x82\x5c\x2f\xda\ +\xb9\x6d\xa0\x26\x53\xbd\x0b\xfd\x89\xa4\x97\x00\xa6\xa8\x73\xd6\ +\xf6\x62\x40\x31\x9c\x23\x66\x95\xda\xfc\x46\x00\x89\xf5\x74\xfc\ +\xeb\x0e\x30\xac\xeb\x62\xa1\x07\xc6\x1c\xc2\xc8\xf1\x68\x12\x32\ +\x31\xd2\xd6\x91\xab\xbd\xc1\x8c\x08\x27\x74\xbc\x9d\x6f\x47\x9c\ +\x30\x47\x7e\xf2\x61\xf4\x7e\x7a\x09\x31\x28\x5f\xed\x3a\x26\x42\ +\x23\x6d\xea\x7c\x28\x86\x41\x31\x1b\x69\x9a\x81\x51\xd7\xb3\x73\ +\x34\x09\xf9\x8d\xc2\xb9\xd8\x11\x53\x6c\x86\x33\xb5\x57\xb8\x17\ +\xd7\xc4\xe4\x28\x61\xec\x32\xaa\x13\xdb\x50\xf3\x88\xa2\xa9\xf2\ +\x54\xd5\x78\xbd\xa1\x75\x88\x57\xaf\xbc\x0f\x40\xa7\x56\x60\x61\ +\x28\xa8\xb6\xd7\x30\xbf\x27\xfb\xba\xd0\xf0\x7f\x11\x7b\x86\x5e\ +\x0d\x5d\x0f\xd2\xcf\x21\x8f\xca\xd2\x3e\x76\xad\x72\x0d\x69\x84\ +\x09\x59\x59\x9b\xee\x43\xd8\x27\x58\x07\x7e\x0b\xfc\x7a\x79\xb5\ +\x2c\xbf\xbb\x59\x7e\xf3\xab\xbf\x5c\xee\x73\x3b\x95\x03\x88\xdb\ +\xb1\x63\xc7\x8e\x1d\x97\x60\xff\x86\xda\x8e\x1d\x3b\x3e\x1f\xea\ +\xf3\x1b\x9e\xeb\xea\xb3\xdd\x16\x5e\xe2\x99\x6f\x3a\x4f\x14\xce\ +\xfa\x26\xb2\xaf\x1b\xb3\xae\xbf\xfb\x76\x79\xf5\xf3\xbf\x5c\xfe\ +\xfb\x1f\x7e\x58\x0e\xf6\x20\xfa\x78\xe5\x3f\x26\x8f\xc7\xd6\x7c\ +\x08\xc6\xc3\x7c\x3c\xfc\x72\xe4\x1c\x88\xb9\xd9\x3e\x34\x72\x0e\ +\x7a\xc5\x01\xca\x67\x30\x09\xe6\xd9\x14\x74\x7c\xab\xb7\x5d\x10\ +\x28\xba\x11\x63\x28\xfc\x9e\x36\xcf\xbf\x12\xbd\x0d\xcf\xdf\x1c\ +\xc3\xe4\x87\x0a\xf6\xb0\xcf\x25\x99\x1f\x34\xd8\xb6\x1b\xd0\xa0\ +\x80\x4e\x6f\x0c\x8c\xcb\x10\x20\x87\x44\xd1\x05\x49\xda\xba\x6e\ +\x04\x60\x74\x4e\xf4\xd6\x89\x6e\x87\x45\x4c\x8b\x25\xa8\xf7\x37\ +\xf1\x90\x29\xce\x91\xa4\x06\x5f\x8b\x6f\x9b\xaf\x11\xa6\xde\xc3\ +\xc4\xc7\x00\xd6\x47\x2d\xbc\xc9\x8a\x82\xb9\x49\x23\x2c\x1e\xe9\ +\x44\xb3\xdd\x62\x14\xa6\x15\xa8\x3a\x61\xd4\x7b\x86\xd7\x54\xab\ +\xaa\x44\xae\xa7\xc6\xfa\xac\x53\xa8\xea\x9a\x35\xe3\x9f\xd2\xaa\ +\x45\x6c\xed\xc3\x27\xa2\x9f\xeb\x08\x86\x79\xcf\xce\x0b\x9c\xab\ +\xbd\xbc\xa6\x1f\xe7\x0e\x2a\x32\xdb\x57\xc6\x83\x5e\xe5\x80\xad\ +\x39\x61\xfb\x87\x06\xf1\x06\x9e\x1f\x22\xc0\xb0\xbe\x16\xa8\xe7\ +\x65\xe5\x0d\x72\xb7\xe3\x46\xf8\x57\x36\xa2\x38\x6e\xc6\xcc\x45\ +\x40\xd3\x3a\x5e\x5e\xbc\xb8\xb0\x60\x57\x72\xdd\xe4\x33\x81\xbe\ +\x46\xe6\x84\x4b\xa3\x6b\x9e\x9b\x30\x1b\x75\x30\x03\x79\x33\x60\ +\xe7\xe7\x16\x86\x55\xbd\xc9\xc8\xfc\x82\xba\xb4\x96\x6c\x08\xbb\ +\x51\x35\x18\x75\x52\x63\xff\x6a\xb8\x2e\x6a\x05\xc4\xac\x71\xf1\ +\x24\x02\xee\x28\xf3\x58\x05\x05\x53\x0b\x23\x1a\xf7\xb5\x95\xca\ +\x18\x3b\xac\x2f\x98\x6b\xff\x66\xda\x03\xfe\x0c\xa0\x9d\x4b\x78\ +\xa5\xfd\xb7\xf7\x0f\xcb\xdd\x4f\x7e\xb6\xfc\xc5\x3f\xfc\xe7\xe5\ +\xd6\xb8\x7b\xae\x45\x15\x9e\x81\x6e\x11\x47\xf0\x02\x53\xfd\x59\ +\x21\xf7\x97\x0c\x3b\x5e\x3c\x7d\xcc\xb7\xeb\xe6\xf6\xf6\xcd\xf2\ +\xea\xea\x57\xcb\xfb\x3f\xe0\xb7\xfb\xf1\xff\xa5\x21\xee\xc7\xdb\ +\x3f\xd0\x6c\x27\x48\x96\x32\xb0\xc4\x11\xd4\x57\xbe\xb4\x60\xd4\ +\x22\xa3\x4f\x18\x11\xc5\x57\x73\x8c\xb9\x09\x5c\x55\x42\x3c\xdb\ +\x18\x9c\x2d\x55\xba\x1c\x03\x7d\x8f\xc3\xa4\x4b\xc3\x38\x1b\x75\ +\x19\xc4\xe0\xbe\x9a\x86\xf0\x45\xa7\x26\x6c\xd5\x00\x3c\x04\xb2\ +\x8d\x39\x24\x17\x44\x00\x1c\x5d\xe3\xbd\x9e\xaf\x2d\x41\x79\x25\ +\x04\xe8\x9d\x47\x4e\x58\x5e\x23\x8e\xab\x3f\xb3\xd9\x7d\x32\xd2\ +\x55\x27\x5c\x07\xf4\x22\xb0\x86\x30\x9b\x11\xeb\x29\x1a\x81\xa6\ +\x72\x5a\xc7\x01\x2c\x23\xa0\xa8\xc1\x5a\x62\x9d\x21\x8b\x20\xeb\ +\x38\x95\x81\x9c\x26\xcf\x33\x6c\x23\xeb\x34\x4d\x87\x98\x03\xb3\ +\x78\x1d\xcf\x74\xb5\xf5\xdc\x17\x40\x53\x90\x76\xc1\x00\x90\xd2\ +\x17\x80\xfe\xd8\xad\xc3\x94\x7c\x3a\xac\x54\x56\xe3\x86\xfb\x31\ +\x71\xb4\x60\xdd\xf2\xd4\x03\xb1\x0f\x79\x3e\xa9\x09\xc5\xcf\x63\ +\x34\xf8\x38\x3e\x94\x59\x47\x26\xe2\x1d\x28\x68\x73\xb8\x24\x2a\ +\x04\x97\x50\x3c\xb8\x16\xf2\x00\x57\x5b\x63\xc3\xf9\x23\x8e\x70\ +\xa7\x3b\x1f\xdc\xb6\x4e\x5c\x31\x47\x3e\x87\xae\xc0\x4a\xd2\x19\ +\xb9\x9a\x22\xca\x30\xa0\x73\xb6\x90\x30\x73\x8a\x32\x0e\xd3\x36\ +\xa2\xf0\x89\xe4\xbc\xbe\x8e\x8b\x03\xd6\x24\x77\x42\xf5\x67\x8a\ +\xc1\x82\x2d\xde\x2b\x7b\x0f\x28\xe2\x32\x36\x5d\xab\xed\xf7\xaf\ +\x88\xe4\x75\xec\x00\xab\x70\xbf\x35\x7e\x2c\xc9\x51\xb0\x06\x63\ +\x7d\x39\x03\xb2\x57\xa4\x83\x3f\xcc\x6b\x43\x39\x2e\x3a\x86\xfc\ +\x81\xb0\xf8\x8d\x7e\x7e\x23\xef\xe1\x71\xf9\xee\xdb\xbf\x5f\xde\ +\xdc\xbc\x59\x1e\xec\x65\xb7\x1e\x1f\xc7\xc6\x1c\x3b\x76\xec\xd8\ +\xb1\xe3\x28\xf6\x6f\xa8\xed\xd8\xb1\xe3\xf3\xe3\xa9\xcf\x71\x1b\ +\x0f\xa5\xcf\x02\xd7\x52\x17\x74\xb5\xdc\x7e\xf9\xf3\xe5\xcd\x3f\ +\xff\xfd\xf2\xf8\xbb\xab\xe5\xc3\xe3\xfd\xf2\xc0\x6f\x8e\x59\x04\ +\xff\xdf\x0b\x3f\x00\x84\x83\x87\xe5\xb6\xa0\xfc\x09\x59\x00\x0f\ +\xbb\xf0\x91\xa6\xd2\x51\x43\x60\x09\x37\x1d\x25\xdc\x3e\xae\x39\ +\x8d\x78\x94\x76\x67\x86\x1a\x32\x69\xce\xb9\x5a\x80\xb9\x75\x1b\ +\x84\x89\x4e\x5c\xa5\x99\x9a\xf9\xb6\x05\x78\x07\x52\x05\x06\x85\ +\x93\x96\x8f\xb1\xc6\xc2\x0f\xca\x20\xc7\xb7\x16\xfb\xd7\x3f\xc0\ +\x81\xd7\x54\x72\x19\xe3\x08\xbf\xed\x00\x2a\xc1\xd3\x8b\x78\x8c\ +\x95\x83\x2d\x5f\x22\xf6\x25\xe0\xa6\xd5\x66\x7d\xb5\x08\x87\xa6\ +\x41\x6b\x88\x15\x67\x0d\x37\xc8\xd1\x12\xa4\xef\xf9\x5e\xd3\xf2\ +\x85\xac\x93\x74\xab\xd3\x90\xaa\x26\xeb\x60\xec\x2c\xed\x47\x81\ +\xb6\xf6\x15\x5e\x60\xcd\x47\xaa\xf7\xc0\x5c\x68\x10\xdb\x88\x53\ +\xa0\x9c\x66\x27\x71\xf6\x3c\x86\x73\x74\xaa\xb7\xd2\x4e\xc9\x09\ +\xc6\xb5\xa7\x8f\x64\x6c\x5c\x29\xc3\x0d\x75\x8f\x3d\x3b\x70\x4a\ +\x1a\xaf\x4a\xe7\xd9\x5b\xae\xf8\xad\x91\x48\x1d\xfa\x2e\xe2\x5e\ +\x76\x56\x95\x17\x93\xcd\x69\x43\xfb\x10\x02\x7c\xbb\x3f\x50\x0e\ +\x98\xa8\x5d\x7b\xea\x48\x87\xb2\x00\x1f\x48\x44\x1d\x01\x96\xcf\ +\xa1\xa6\x1c\xb3\x69\xa8\x90\xdf\x7f\x12\xd5\xae\x08\xb9\xba\x94\ +\x15\xbd\x7f\xa8\x17\x73\xd5\xa2\xe4\xa3\xb5\x21\x0c\xd7\x27\x32\ +\x38\xa2\x04\xd2\x44\x2e\x1c\xdb\x52\x96\x51\x60\x1c\x81\x6a\x07\ +\xb4\x46\xec\x3f\xac\x1b\x2e\xde\x79\x60\x9f\xf0\x35\x01\xdb\x19\ +\x1a\xb3\xf1\xdb\xdf\x10\x61\xae\x7b\xeb\x0e\xa6\xfb\x6f\x0f\x57\ +\xcb\x9b\xaf\x7f\xb9\x3c\xbc\xfe\x62\x79\x7c\x78\xb0\x74\xbc\x22\ +\x0e\xdb\x74\x2e\x62\xaa\x27\xe3\xb9\xf9\x7f\x96\xa8\x3b\xcd\x8e\ +\xa9\x3d\x33\xfd\xe5\x6f\xfe\xb7\xe5\xf0\xe1\x86\xcf\x52\x76\x78\ +\xfd\x88\xe2\xa0\x9b\x7d\xc5\x6f\xa3\x8e\xbb\xba\xde\x03\xda\xe0\ +\x58\x9f\x0b\xa7\xce\x0e\xa4\xab\x04\x47\x76\xc8\x1a\x33\x5d\x55\ +\xf5\x40\xb3\xa1\x8f\x33\xd8\xba\x96\x8d\xf3\x3d\xcc\x40\x73\x75\ +\xce\x3b\xd3\x6c\xaf\x95\x36\xc3\xf2\xd5\x3b\x86\x90\x9b\x65\x42\ +\x7e\xa3\x07\x7e\xd1\x00\x9a\x99\x8b\x1b\x62\x80\x97\xc0\xdc\xbe\ +\x25\xae\xf7\x1c\xd5\xa3\x84\x44\x1c\x13\xda\xc1\x13\xa3\xe5\xc1\ +\x64\x5b\x98\xf0\x39\x41\xf7\xba\xb6\x2f\x1d\x6d\x1d\x4d\x93\x46\ +\x8c\x99\xd3\xf1\xee\x68\x9e\x3e\x68\x2d\xb6\xd5\x0b\xc3\xb6\x86\ +\x01\x2e\x07\xf4\x8e\xf6\x43\x5c\x00\x78\xf3\x5d\x54\x50\xee\x4e\ +\xc6\xbb\xad\xd5\xb7\x7c\xfa\xb9\x28\xcf\x89\x2d\xe4\x57\x85\xbb\ +\xe8\x5b\xfe\xe7\x45\xac\xf3\x29\x50\x6a\x4d\x37\xbb\xdf\x32\x23\ +\xe2\x58\x54\x29\x46\xea\x10\x0e\x5f\x48\xbf\x04\xdc\x8c\x27\x01\ +\x73\x58\xcd\xbf\xac\x19\x9f\xfb\x1f\xa4\xdb\xea\x15\x19\xd7\x00\ +\xc3\xa5\xd0\xf8\x3f\x22\xb8\xde\xad\x4e\x0e\x39\x72\x6b\x14\xc3\ +\x68\xad\xd3\xc8\x31\xe4\x52\x0d\xb3\x58\xba\x85\x57\x52\xb7\x0c\ +\x75\xc1\x25\xe4\x97\x31\x25\x55\x5b\x79\xa0\x73\x1a\xba\xe3\x29\ +\xcd\x4c\x1b\x9c\x0f\xb6\x37\xab\xa6\xb3\xe1\x48\x5c\x03\x15\x5b\ +\x7c\xa0\xab\x87\xce\x56\x99\x0b\xed\x56\x7c\x04\x7a\x2d\x32\x68\ +\x4d\xfe\x95\xf0\x4a\xa6\x33\x92\xcf\x6c\x01\x64\xc2\xcd\x99\x22\ +\xe6\x03\xb6\xdd\x2c\x38\xc1\x3b\x8a\x13\xb1\x72\xd6\x19\xac\x1a\ +\xef\xc5\xce\xe5\x73\x56\x28\x30\xd7\xe3\xe1\x7e\xb9\xff\x8f\x77\ +\xcb\x5f\xfe\xd5\x3f\x2e\xb7\x87\x37\xf6\x1a\xcc\x22\x03\x56\xc4\ +\x8e\x1d\x3b\x76\xec\x38\x03\xfb\x37\xd4\x76\xec\xd8\xf1\xf9\x90\ +\x4f\x95\x4f\xc4\x73\xf3\xcf\x81\xcd\xf1\xfa\xf6\x6a\x79\xf7\x17\ +\x7f\xbd\x7c\xff\xf0\x66\x79\x38\xc4\x9f\x24\xb2\x7f\x78\xfc\xc4\ +\x83\xe9\xd5\xd5\x35\x6d\x35\x3c\x45\xf3\x39\xfb\xd1\x34\xfc\x20\ +\xd1\x6e\xb5\x7a\x50\xae\x90\xbf\xb5\x1d\xc6\x7b\x68\x4c\xdc\x86\ +\xde\x96\x6f\x22\x43\x45\x73\x4e\x79\x68\x26\x3a\x6e\xe7\x58\x4b\ +\x6e\x7c\xf8\x40\x2a\xb8\xfc\x49\xba\x84\x05\xca\xbe\x69\x3a\x74\ +\xb6\x3d\xe1\x03\x94\x91\x8f\x1a\xdd\x1b\x07\x04\xc5\xfb\xfe\xc7\ +\x71\x72\x79\xc4\xc8\x59\x43\xb7\x81\x8c\x41\x1b\x7a\x4f\xc2\x57\ +\x1a\x44\x78\x0d\x0c\xb9\xca\x5d\x3f\x47\x38\xda\xfc\xa3\x1e\xab\ +\x55\x43\xaf\xe5\xa7\x28\x12\x58\x31\x62\xfd\x07\x3a\x5e\xb3\xa2\ +\xcd\xde\x40\x26\xbb\x9a\xbf\x86\xaf\xdf\xff\xad\x01\x6e\xc6\x7f\ +\x4a\x68\x0d\x67\xac\xe3\xf8\xa6\xae\x50\x2b\x67\xf5\x59\x8d\xfe\ +\x10\x24\xe2\x14\x3b\x1b\xdd\x3c\x47\x20\xdd\x29\xed\x93\xeb\x85\ +\x91\xbc\x75\x19\xc3\xf6\x95\x73\x57\x0d\xe0\xc7\x54\x76\x6d\x75\ +\xd7\x68\xe9\x1d\xe5\xc3\x45\xc2\xcf\xac\xaa\xa0\x6d\x5d\xe5\x04\ +\xbf\x1e\x23\xc2\x21\xaa\x49\x9f\x5d\xb9\xbe\xd8\x05\xcc\x76\x37\ +\x48\xc5\x92\x0f\x14\xde\x5b\x17\x35\xbf\x1d\x5c\x49\x08\xed\xac\ +\x24\xda\xd6\xea\xfa\x5f\xd5\x12\x44\xd7\xb0\x27\xf0\xcb\xf7\x6b\ +\xdb\xde\x7e\x3f\x86\x0f\x0d\x75\x3e\x80\x53\x03\x18\xca\xf9\x7d\ +\x94\x27\x4c\xd9\x2c\x7e\x1e\xda\x1d\x43\x96\xb7\xac\x00\x83\x35\ +\x63\x65\x18\x6c\x5d\x5c\x9a\xb5\xab\xc3\xc1\x7f\x38\xe5\xc0\xb3\ +\xca\x1a\xbe\xad\x72\xb5\x7c\x7f\xff\x7e\xf9\xe1\xf1\x76\xf9\xf2\ +\x1f\xfe\x65\xf9\xf6\xd5\x1d\x7f\x83\x8d\x09\xbc\xa7\x9b\x79\x09\ +\xbc\x70\xcb\x93\xbf\xe3\x23\xc3\x76\x72\x3d\x56\x8f\x0f\xcb\xcf\ +\xbe\xfa\xeb\xe5\xed\xdd\x17\xf6\x88\xf4\xc6\x0e\xe5\x83\x71\xae\ +\xb9\xc6\xa3\x52\x79\x6b\xea\x87\xe8\xd8\x41\x1a\x4e\x82\x74\xcd\ +\xa8\xa1\x41\xe6\x75\x67\x18\x84\xa6\x1a\x99\x9e\x80\x63\x2b\x0c\ +\xae\x9d\xfb\x03\x3a\x0a\xdb\x8a\x66\x66\xe6\xb5\xbe\xf1\x5a\x21\ +\xc6\x1a\xb3\x2e\xdc\x04\x79\xd7\x0f\x97\x3b\xc1\x75\xd1\x8f\x79\ +\x0d\x29\x43\xa8\xab\x09\xc3\x7d\x6e\x57\xf2\x40\x23\x54\x53\xe1\ +\xbc\x24\xb9\x6d\x25\x20\x18\x27\xca\x75\x34\x1d\x61\xb7\x75\xc2\ +\x49\x92\x14\x3d\x75\xac\xe5\xac\xcb\x1a\x47\x57\x8b\x71\x9a\x46\ +\xd9\x8b\x04\x78\x4a\x4c\xab\xbb\x8e\x48\x4f\xb7\x7f\x10\x40\x03\ +\x92\x1a\x97\x50\x94\x0d\xe7\x88\x8d\x21\x56\x5d\x47\xab\xc1\x6c\ +\xbc\x17\x28\xe0\x9a\x4c\x00\x89\xcb\x62\x0e\xb4\x56\x24\xd8\x1f\ +\x23\xca\x22\x57\x68\x5b\x95\xd8\x70\xb9\x1f\xdc\x4c\xe4\x2b\x7a\ +\x04\x30\xf8\x3e\x44\x07\xb8\x91\xaf\xb3\x40\x1a\x82\x34\x15\xe6\ +\x81\x88\x41\xb6\x9b\xee\x84\x4b\x9e\xd7\x86\x40\xdb\xfd\xf6\x5e\ +\xc6\x46\xe8\xf8\xaf\x20\x1c\xe5\x7b\x2a\x3b\x6f\xfe\x35\x85\xa7\ +\x94\x68\x9a\x91\x14\x3e\x07\xc5\x22\x94\x7d\xf0\x19\x96\x61\xc8\ +\xd8\xc6\xd8\x6a\x19\xc2\xf6\x58\xb2\x06\xdb\xde\xde\xcd\x11\x26\ +\xf7\x86\x09\x3a\x4d\x20\xa9\x12\x6b\xf7\x9a\x34\x1a\x06\xd7\x4f\ +\x84\x1e\x29\x09\x63\x4c\xa9\x44\x17\x1b\x13\x37\xd0\x8e\x6e\xaf\ +\xab\x4b\x19\x2b\x78\xac\xb1\x7e\x9f\x59\xeb\x1a\xa3\x6a\xf0\x9d\ +\x6b\xe7\x77\xcb\x6a\x73\xda\x6b\x27\xe9\x16\xc3\x8e\x6c\x77\x19\ +\x64\xe3\xb7\xd8\xde\x2f\xf7\xd6\xff\xfa\x67\xff\x4b\xb0\x2d\x63\ +\x38\x6b\x77\xec\xd8\xb1\x63\xc7\x85\xe8\x9f\xec\x76\xec\xd8\xb1\ +\xe3\x53\xe2\xdc\xe7\xb8\x51\xf7\x91\x9e\xff\xda\x43\x6a\x3f\x01\ +\xfe\xcc\xd4\xd7\x7f\xf3\xf7\xcb\xef\xde\xbd\x59\xfe\xfd\x0f\x1f\ +\x2c\x1c\xb7\x4e\xbe\x59\xb0\x07\x56\xbc\x63\x20\x87\x3c\x3c\x9e\ +\xea\x11\x15\xbc\x0d\x28\xdc\x7d\x20\x6b\x06\xdf\x3d\x08\x16\x4b\ +\xbf\xf2\x86\x58\x54\xae\xad\xcb\x2b\x48\x81\xa1\xda\x23\x14\xdb\ +\x28\x93\xc8\xb8\x19\x5b\xda\x63\x35\xb0\x6f\x7c\x68\x3a\x1b\xf9\ +\xd6\x80\x6f\x44\x8f\x2c\x32\xf4\xdc\xad\xb0\x31\x3a\xd5\xec\x32\ +\xb6\x7a\x36\x67\x57\x3b\x46\x68\xb8\xdf\x6c\x76\x26\x19\xc5\x3c\ +\x0f\x71\x0c\x9b\x55\xcc\x21\x0f\x84\xc0\x87\x5a\xbb\x41\x5a\x1f\ +\x2d\x0e\xc3\xb4\xe2\x09\xd2\x98\xdf\xd7\xd0\xaf\x13\xf0\xb5\x73\ +\x26\x5b\x2b\xff\x5c\x87\x7b\x59\xcb\xeb\x79\xef\x80\x3d\xcc\x13\ +\x98\x71\x97\x02\x35\x5a\x9b\xcf\xf3\xe9\xa0\x95\x5c\x08\xed\xe2\ +\xb2\xab\xdb\x36\x45\xc3\xb1\x19\x0f\x87\x00\x81\x62\x55\x53\x6c\ +\xd5\x39\x17\xe7\xea\x2f\xa9\x9b\xba\xba\x4e\xae\x2f\x16\x69\xd8\ +\xac\x67\x92\x8e\x47\x0a\x77\x88\x23\xce\xc2\x80\x6c\xfd\x48\x81\ +\x4b\x7b\x8d\xe7\xe2\x33\x72\x80\xd7\x5a\x28\xdc\x06\x5a\xfd\x0e\ +\x16\xaf\x95\x08\x9b\x00\x97\x2f\xce\x41\xa1\x69\x50\x17\x3c\x04\ +\x66\x0f\xf9\xb4\x79\x2d\xb9\x53\x63\x72\x72\x4d\x25\x5e\xe7\x22\ +\x8f\x40\x04\x33\x42\xdf\xbc\xe0\x91\xa3\xdb\x33\x06\xda\xe1\xf7\ +\x39\x65\x64\xa4\xcc\x15\x28\xa9\x1d\xc8\xc5\x82\x67\x71\x61\x1a\ +\x0b\xb2\x9f\x0d\xa4\xb5\x72\xbc\x2b\x78\x8c\x2d\x56\xb7\x5f\x70\ +\xb7\x0f\xa4\xd5\x69\xe5\x84\x16\x53\xa1\x20\xbe\xcc\xe6\xfd\xd6\ +\x5e\x3f\x0f\xd7\x87\xe5\xfa\x80\x6f\x98\x99\xe4\xde\xf6\xa5\x9d\ +\x40\xff\xf6\xc3\xcd\xf2\x78\xfb\x93\xe5\xb7\xff\xf9\x5f\xf9\x12\ +\x1b\x15\x3c\xd1\xad\xf3\x91\xc9\xc3\x38\xdf\xf4\x1e\x17\x4e\xb5\ +\xa3\xc2\x77\x1e\xbe\x71\xc1\x5d\x7d\x78\x5c\xbe\xb4\x63\xfa\xe6\ +\xee\x57\xcb\xc3\xfb\x03\xaf\x13\xdc\x4d\x08\x3b\x17\xfc\x4f\x3f\ +\x82\xa9\x07\x06\x76\xcf\x38\xd6\xcc\x1c\xb1\x06\x8e\xea\x1d\x5e\ +\x01\xdc\xac\x96\x54\x3d\xa8\x2c\xd7\x4c\xad\xe7\x28\xb5\x22\xd0\ +\xee\x0d\x4d\xed\x7d\xac\xa0\xd1\x86\xa2\xe1\xf5\x41\xc3\x3a\x5c\ +\x91\x65\x5e\xa3\x48\x07\xaa\x0d\x78\x1e\x5a\xdc\xad\x8d\x10\x85\ +\xbe\xd3\x23\xc6\x0b\x12\x4e\xac\x29\x7a\xe8\x60\xab\x11\xc1\xb5\ +\x9a\x20\xd0\xa7\xc2\xe1\xc1\xde\xe4\xc4\xd6\x38\x8a\xa3\x69\x00\ +\x5f\xb9\x0c\x38\xe4\x72\xd4\xbe\x8b\x79\xa5\x8f\xed\x45\x83\x02\ +\xfb\x8c\x36\x42\x30\xe8\xb9\x1d\x96\x7d\xf5\xfb\xa8\xd5\xe6\x60\ +\x30\x5e\x76\x72\x0d\x9e\x5b\x42\x55\xa3\x20\x76\xef\x70\xde\x10\ +\xb1\x10\x8f\x94\x38\x68\x0f\x05\xe0\xb4\xf8\x8f\x03\x6d\x75\x04\ +\xdd\xca\xc1\xc6\xba\xdd\x13\xe0\x62\x4b\x78\x4c\xc8\xc0\x93\x65\ +\xc7\x02\x26\xb7\x35\x8e\x1d\x5c\x86\x19\xb0\x7f\x4d\xbf\x46\x39\ +\x1f\xd8\x5c\xe7\xcf\xd8\x03\x14\x2b\x3d\x91\x5a\xf4\x38\xf6\x5e\ +\x93\x5c\xeb\x38\x84\x55\x29\x47\xc4\x90\xdb\x05\x83\xc7\xdc\x74\ +\x23\x44\xc8\x2e\x1a\x01\xa6\x7b\x6d\x1d\x18\x9d\x33\xd0\xa8\xeb\ +\x6e\x03\x0d\xff\x92\xe7\x63\xc6\x1d\x70\x07\xca\x08\xec\x6b\x8c\ +\x2d\xe6\x79\xe1\x95\x41\xf1\x66\x04\x8e\xf8\xbe\x6f\x37\xb0\x3a\ +\xdf\x4d\x39\x1e\xc7\x49\x72\x9f\x25\x81\xe6\xa9\x09\x6d\xdb\x1c\ +\x30\x6a\xdc\xe1\x2a\xeb\xf5\x77\x14\x13\x45\x2b\x93\xa3\x9c\xba\ +\xd6\x66\x8d\x5b\xa5\x58\x2a\x9a\xd4\xb5\xda\x66\xeb\x30\xaa\x71\ +\xff\x94\x62\xf8\xe5\x33\x22\x74\x7c\xd5\xbc\xff\x62\x79\x75\xf8\ +\x76\xf9\xe2\xf1\x15\x7f\xff\xbb\x1e\x73\x4f\x2d\xc4\x8e\x1d\x3b\ +\x76\xec\xb8\x08\xfb\x37\xd4\x76\xec\xd8\xf1\x79\x81\xe7\x38\x3d\ +\xcb\xfd\x88\x9e\xe9\xfc\x21\xb3\x3d\xa5\xbe\x79\xf7\xc5\xb2\xfc\ +\xd5\xdf\x2e\xff\xe7\x7f\xfb\xde\x96\x19\x6f\x82\x10\xb6\x27\xd3\ +\xc3\x0d\xfe\xec\xa3\xdf\x4e\xf1\xa0\xca\x87\xd5\xf2\xc4\xca\x3f\ +\x65\x64\x5f\x7a\xd3\xa0\xaa\x9e\x4e\x31\x3d\xf2\x0a\x56\x80\x4b\ +\xde\x8c\xb0\x39\x8c\xb1\x8b\x60\xf3\xfa\x57\x83\x96\x13\xa8\xb1\ +\xb4\x47\x8d\x7c\x6b\x43\xa8\x21\x62\xdc\x69\x48\xb0\xc6\xd5\x72\ +\x27\xfa\x1b\x05\xd6\xc1\xe8\x43\x03\x73\xc2\xac\x4d\x9c\x8d\xb4\ +\x59\x0b\xa3\x0f\x5d\x0e\x34\x6e\x75\x3c\xdd\xf0\x4b\x88\x64\x1e\ +\xe7\xd8\xaf\xb4\x8b\x56\x83\x1a\xa0\x75\xf0\xb7\xe2\x02\xa4\x9a\ +\x6b\x3e\xb6\xd7\x1a\x39\xab\x1d\xcb\xe6\x5e\x40\xae\xd9\x4d\x1e\ +\x16\xc9\xa6\x1d\xd1\xf4\x8e\x99\xef\xdc\x18\x39\x06\x69\x5b\x8e\ +\xea\xcc\xda\xc7\xc1\xd3\xaa\x2b\x83\xd9\xb6\xcf\x72\xc4\xfe\xab\ +\x6d\x44\xe5\x66\x71\xc0\x8a\xb1\x5e\xb4\x73\x71\xae\xfe\x92\xba\ +\xa7\xb5\x79\xd6\x1f\x05\x37\xb5\x13\x15\x67\x6b\x3f\x18\xbc\xb6\ +\x9f\xb3\x09\x9c\xc3\x1e\x30\xd8\x7d\x4d\xf9\x21\xe2\x60\x82\xcc\ +\x49\xc3\x60\xda\x3c\x5e\xce\x18\x07\xad\xdf\x1f\xd1\xf2\x5a\xb2\ +\x51\xd7\x66\x13\x17\x54\xae\xd8\x6d\x6d\x13\x89\x75\x8d\x83\x63\ +\x73\xf3\xa4\x71\x64\x8c\x3a\x2c\x34\x18\x1b\xda\x07\xe6\xde\x61\ +\x0c\x8a\x63\x56\x29\xf5\x12\xa1\x27\xcc\x80\x82\xaa\x24\xcd\x84\ +\x4d\x1f\xf3\x62\x2c\xa8\xbe\xd9\x99\x5b\xd7\xe7\x43\x80\xc1\x42\ +\xb4\x08\xa1\x3c\x83\x96\xdb\x8e\x58\x8c\x18\x22\xb6\x0a\xc9\xdf\ +\x84\x09\x4c\x94\x69\xd7\xf8\xf3\xc9\x87\x05\xbf\xa9\xc6\x97\xcb\ +\x87\x87\xe5\x87\x87\xfb\xe5\x7f\x7c\x38\x2c\x5f\xfe\xe2\x6f\x96\ +\x87\x37\xef\x7c\x2a\x9e\x4c\xc8\x3a\x39\x41\x0f\xad\xb3\x22\x27\ +\x8f\xf1\x14\x2e\x9c\x72\x47\x45\xdd\xd9\xd7\xcb\xcd\xf5\xf5\xf2\ +\x8b\xaf\xfe\xcb\x72\x78\x78\xcd\x63\xee\xe7\x82\x5d\x51\x76\x9c\ +\xda\x1b\x53\x5c\xf3\x7e\xe0\xb6\x77\x3d\x22\x6a\x81\xb9\x19\xce\ +\xec\x44\x18\x11\x77\x15\xd3\x23\xc5\x5f\x97\x41\xf8\x50\x1b\x11\ +\x46\xe6\xa0\x91\x19\x01\xd6\x6a\xe7\xc5\x81\x0c\xe7\x2a\x3a\xcf\ +\x9c\x7e\xc5\x2d\xea\x65\x8a\x1f\x23\x91\x73\x14\xde\x0c\xb7\x61\ +\xf8\x3d\x9a\x7b\x3d\x04\x18\xd8\xc0\x5b\x17\xb4\x93\xe8\xa6\xf7\ +\xad\xe0\xa8\x69\x76\xa6\x60\x9e\x20\x39\x8f\x62\x40\xf8\x22\x38\ +\x58\x57\xa8\x1c\xb5\xc8\x5c\x55\x0b\xc4\xe8\xe0\xf6\x70\x74\x8f\ +\x7b\xd8\xd6\xe0\xfb\x5c\x51\x70\xd9\x05\x67\xfd\xa3\x7f\x73\x37\ +\x5c\xe6\xfa\xea\x2d\x66\x03\x2c\x0a\xb8\xcd\xd6\x48\x00\x69\x24\ +\x62\xb9\x7d\x28\xf2\xf8\xe7\xcf\x37\xc0\xd7\x1a\x84\x47\x09\x39\ +\xeb\x62\xcd\xa9\x41\xfb\x04\xa8\xd3\xad\x9a\x75\x3c\x5f\x68\x88\ +\xab\xfb\xc7\x40\xdb\xf7\xb4\x5b\x6d\xcc\xdd\xa1\x6d\x83\x8e\xf6\ +\x1a\xba\x16\x3d\x2a\x4d\x8c\x72\x37\xfd\x24\x12\x39\x0f\x06\x35\ +\xc0\x78\xae\x36\xfd\x18\x81\x6a\x1b\x7c\xab\x9a\xd6\xf3\x9c\xc3\ +\xbf\x7a\xb8\x41\x17\x77\x85\x8c\xd7\x75\x69\x28\x9c\xfb\xd9\xb5\ +\x98\xa1\xae\x3b\x53\xc2\xa8\x31\x8e\xb2\x0d\x59\xa2\x8c\xe0\xdc\ +\x15\x69\x80\x59\xdc\x0e\x1d\x8f\xa3\x85\x73\xbe\xc7\x3a\x15\x2a\ +\xe8\x7c\x7f\x25\xce\x98\x63\x4b\xc2\xb9\x23\xc8\x15\xd8\xf9\xb8\ +\xad\x05\xd6\xeb\x04\x3c\xc7\x7a\x2b\x96\x36\x31\x9c\xdf\x9d\xd3\ +\x05\x08\x5f\x03\xcd\xc4\x6a\x7f\xc7\x1a\xb4\x52\xef\xcb\xba\xc2\ +\xc4\x90\x0a\xe5\xda\x28\x9e\x7f\x12\x9b\x7c\xc4\x1f\xaf\x97\xfb\ +\x0f\x57\xcb\x4f\xbe\xfc\xc7\xe5\xab\xbb\xaf\x96\x87\x2c\x59\x6a\ +\x77\xf6\x8e\x1d\x3b\x76\xec\xb8\x04\xfb\x37\xd4\x76\xec\xd8\xf1\ +\xe3\x00\x1f\x00\x63\x54\xfb\xc4\xe0\xb3\x27\x2d\x3c\xd2\x96\x05\ +\xd8\x93\xef\xdd\xcd\x61\xf9\xf6\x3f\xfd\xeb\xf2\xef\xff\xfe\xb8\ +\xfc\x70\x7f\x4f\xc5\xe1\x60\x1a\x3e\x68\xc7\x88\x27\x64\x3e\x25\ +\x7b\x2e\x6b\xe1\x13\xa2\xe0\xf1\xa6\x81\x9f\x07\x5a\x87\x01\xef\ +\x39\xf1\xd3\x62\xd4\x19\x3c\xcb\x90\x06\x80\xfc\x50\xc0\xc4\x88\ +\x4e\xf6\x08\x15\x23\xa6\x8a\x29\x36\x95\x16\xc8\x18\xec\x0d\x61\ +\xbf\xbf\x34\x22\xa1\xb9\x6e\xa0\xc3\x22\xcb\x42\x41\x85\x28\x52\ +\xda\x3c\x1c\xb1\x6f\x65\xc7\x18\xb6\x28\x18\xb4\x23\xa6\x7c\x1f\ +\x9c\xcc\xda\xe8\xbb\x82\xcd\x1a\x47\x58\x9e\x57\x18\xfa\xe5\x00\ +\xc4\x87\x07\x45\x61\x1a\x7f\x53\x03\x2e\x65\x31\x0a\xa8\x41\x0e\ +\xf9\x3c\x31\xe8\xf8\x17\x4a\x8a\xca\xcc\x08\x6c\x00\x2a\x35\x40\ +\x63\x45\xd5\xa8\x9d\x85\xed\x69\x13\xb3\xda\x5b\xed\x3c\xf4\xca\ +\xb1\xc6\xb1\x06\x68\x3c\x8a\xd9\x76\x81\x13\x5f\xe2\x59\xff\x8c\ +\x7d\x21\x64\x0e\xbd\xe3\x38\x57\x07\x9c\xd4\x9e\x5b\xc8\xa0\xeb\ +\xa2\xdb\x17\x66\x93\x9f\xd6\x81\xb0\xbb\x22\x62\x6c\x70\x45\x80\ +\x3b\xcc\x1a\x6a\x32\x52\x63\xae\x05\xf8\x21\x00\x7c\x06\xad\xe3\ +\xe4\x98\x07\xb9\x24\x49\x51\xef\xae\x21\xf8\x66\x76\xc0\x3d\x59\ +\xb4\x34\xc8\x4f\x7d\x0d\xca\x4e\xd8\xf5\xc9\xb5\x5b\xc0\xbf\x88\ +\xb6\x4f\xc2\x48\x3f\x90\xc2\x36\xf0\x4a\x4f\x5d\x1a\x66\xba\xcd\ +\xbe\xd0\x40\xae\x7c\xe0\x3b\x02\xe6\xe0\x72\x34\xa3\xcf\x77\xaf\ +\xdb\x76\x0e\x7c\x55\x62\x20\xa8\x15\x90\x83\x56\xe1\xb5\xa2\xf7\ +\x61\xb3\x00\x68\x0f\xf5\x22\x5a\xd6\xe1\x87\x51\x78\x9c\x0e\xfe\ +\xff\x91\x42\xf5\xfe\xe1\x61\x79\x78\xbf\x2c\xbf\x7b\xb8\x5d\xbe\ +\xfd\xa7\xff\xb2\xbc\x7b\xfd\xda\xb3\x11\xcf\x7b\xe5\x99\xb8\x50\ +\xbe\xe3\x05\x31\xd9\xf7\x8f\xfc\xe3\x53\xcb\xf2\x9b\x9f\xfd\xcb\ +\x72\x77\xf8\x6a\x59\xee\xed\xd8\x83\xd0\x71\xd5\x49\x00\x1c\x39\ +\x76\x19\x42\x2e\x1a\xe1\xb9\xe9\xd2\x81\x67\x23\xbf\x14\x89\x6c\ +\x73\x9b\x16\x00\x1f\x31\x60\x88\xc7\x6d\x88\x24\x54\xba\x9f\x01\ +\x7d\x1d\x78\x7e\xcd\xf5\x7c\x8b\x30\x8a\xaf\x22\x8a\xc1\x8c\xb8\ +\xae\x46\x48\x5b\x62\x74\xd5\xb1\xe1\x2b\xb6\xd4\x7c\xa7\xe1\xc5\ +\x6a\x19\x67\x34\x10\x1a\xd9\xc8\x75\xb9\x35\x6d\x9f\x13\xd2\xe5\ +\x7d\x35\x1e\x72\xe0\x39\x03\x7d\xdb\x27\x5e\xc8\x73\x7c\x94\xbe\ +\x1d\x09\x8e\x6d\x01\x01\x53\x7a\x20\x78\xab\x59\x6a\x65\x88\xcd\ +\x79\x27\x7d\xd4\xfa\x9c\xb2\x67\x75\xdb\x0e\x2c\xb5\xff\x93\xd9\ +\x11\xa7\xde\x6d\xfa\x1a\x8d\xf4\x27\x75\xf4\x2e\xa0\x8e\x27\x01\ +\x9a\x6a\x86\x6b\xcd\x67\x1d\xa0\xb8\x0b\x1a\xc4\x57\xae\x3a\x1d\ +\x0f\x0c\xfb\x56\x98\xd6\x79\x19\xac\xca\xd6\xb9\x56\xc1\x95\xdb\ +\x69\x7c\xe8\xf7\x10\xf6\x1d\x3e\x88\xf2\x43\xd8\x09\x03\xa6\xc7\ +\x26\x83\x73\xd1\x1a\x8c\xf9\x90\x7d\x95\x32\x2e\xa2\x04\xc4\xd9\ +\x50\xd8\xe6\x04\x0f\x59\x17\x77\xb6\x99\x71\x4c\xc8\x16\x71\x2b\ +\xef\x46\x2e\xc1\x40\xd3\x3a\x8d\xb4\xab\x93\x7d\x8c\xd6\xc9\x1f\ +\x9c\xb4\x33\x3f\xc6\x9c\x3f\xc6\x96\x53\x62\x24\xad\xa5\x28\x50\ +\x5d\xd9\x90\x85\x99\x00\x11\x64\x17\x1b\xae\xb3\x95\xa6\xfa\xa1\ +\x85\x3d\x39\xbb\x5b\x0e\x21\xaf\x8c\xbd\x20\x10\xf7\x3a\x58\xb3\ +\xf8\x34\x27\x32\xca\x0e\xeb\xd6\x13\xb4\x8e\x67\x9b\x20\xc6\x80\ +\xbb\x22\x67\x5b\xd4\xb3\x54\x96\x45\xc2\x4a\xaf\x1d\xa8\x24\x31\ +\x3f\xef\x39\xee\xa4\x86\xf7\x3c\x9a\xb8\x2f\x99\x6d\x93\xc0\xbf\ +\x3e\xdc\x2f\xff\xfe\xbb\xc7\xe5\x9f\xfe\xe2\x5f\x97\xc3\xed\x9b\ +\x25\xfe\x68\xf6\x80\x35\xb3\x63\xc7\x8e\x1d\x3b\xce\xc3\xfe\x0d\ +\xb5\x1d\x3b\x76\xfc\xf8\x31\x7f\x26\xfd\xc8\x28\x93\x9a\xf9\x78\ +\x7d\x58\x7e\xf6\x37\xff\xb4\xbc\xfa\xd9\x6f\x96\xef\xed\x69\xf6\ +\x80\x0f\x01\xed\xdf\x35\xfe\xff\x34\xfc\x3f\x6a\xf9\xcd\x35\xa1\ +\xd9\xf5\x51\xd5\x1f\x84\xab\xae\xc5\xe7\x9f\x13\x5a\xb4\x5b\x0a\ +\xfc\x9a\x1d\x00\xb5\xb5\x9f\x2a\xdf\xa5\x0e\x09\x63\xd9\xea\x4f\ +\xa6\x24\x3a\xde\x9c\x89\xae\x2e\xd7\x4d\xd7\xe1\xc3\xea\x7e\x4f\ +\x38\xa4\x57\xc4\xdf\x24\x04\x4a\x8c\xb9\x75\x9f\x97\x98\xbf\x9b\ +\x70\xa7\x7d\x88\x62\x0e\xbe\x7c\x88\x11\x96\x87\x34\x6a\xbe\x36\ +\x2f\x48\xff\x00\xc8\x9b\xea\x61\x1c\xf6\xa1\x81\x71\xe6\xfa\xc7\ +\x31\x00\xe6\xe9\x3f\xe4\x09\xc4\x3e\xf0\xb9\x4c\xcd\x84\xc8\xb7\ +\xd6\x69\x0d\xac\xa0\xed\x61\xd0\x6b\x8e\x80\x22\x54\x27\x81\x7c\ +\xaf\xeb\xfe\x1c\xa7\xe2\x97\xc1\xe7\xdc\x6a\xfa\xd7\xf3\x9f\x03\ +\x4f\x9d\xff\x92\x9c\x4b\xeb\x9f\xa5\xad\xa7\xc8\x00\xcd\xa7\x96\ +\xe7\x5c\x41\x9e\xfb\xa0\x65\x27\x70\x6c\x10\x88\x66\x71\xc9\xd8\ +\xec\x02\xce\x6b\xc4\x08\xa5\xe3\xba\xd6\x07\x93\x00\x06\xc5\x1a\ +\xfc\xb8\xd7\xeb\xcd\x2d\xd8\x5e\x53\x9e\x8f\x40\xb3\x12\x46\x25\ +\x2b\x23\xc6\xbc\xbe\x7d\x20\xaa\x24\x56\xde\xf6\x81\x8d\xc9\x93\ +\xd3\xb6\x61\x94\x3a\x50\x72\x1c\xba\x07\x60\x2b\xcc\xd2\xb5\x5b\ +\x90\x1f\x08\x8f\x08\x9a\x03\xba\x41\x36\xbe\x0c\x70\xff\x8e\x5c\ +\x8c\x42\x17\x0e\x47\x7b\xb2\x69\xdd\x47\xdf\xe9\x0b\xa8\xe5\x71\ +\x0e\x6d\x0a\x87\x2c\x33\xb9\x26\x0a\xd0\x7c\x16\xad\xd3\xf3\xf1\ +\x0d\x35\xb3\xf1\x1a\x6a\x3e\x7e\xc2\xfa\x83\x8d\xbf\x7f\xb0\xf1\ +\xf6\x27\xcb\xb7\xff\xf0\x4f\xcb\xdd\xfd\xfd\xf2\xc0\xdc\x7a\xdc\ +\xcf\x84\x97\xed\xa1\x8d\xc5\xa8\xb6\xe3\xe5\xb1\x75\xb0\xae\x1f\ +\x97\x2f\xbf\xfc\xe9\xf2\xf6\xfa\x5b\xbb\x24\xee\xba\x77\xa3\xf9\ +\x0d\x53\x1b\x94\x3e\x9e\xd7\x40\xa3\xcc\x8a\x94\xd4\xb3\xf7\x73\ +\x05\x36\x2d\x3b\xc9\x32\x8e\x13\xae\x4d\xe3\x80\x24\x74\x1d\xe4\ +\x32\x1e\x06\xfb\x5e\x37\xae\x91\x6e\x70\x18\xaa\xcf\xbb\x02\xed\ +\x9c\x5d\x21\x1a\x69\x1b\x68\x83\x2b\x7c\xc6\x61\xa4\x03\xe8\x6e\ +\x69\x30\x23\xef\x99\xb0\xab\x36\x8a\xb5\x4d\x0d\x23\x39\x19\x18\ +\x7d\xd0\x6f\x79\xe9\x79\x8a\x5e\x84\x09\xd8\xf2\xc3\x0e\x33\xa0\ +\x20\xe0\x86\x5c\x79\xcc\x4f\x8d\xdb\xf4\xf9\xbc\xad\x58\x15\xc4\ +\x18\xa8\x2e\xf5\xf1\x8f\x96\x82\x1c\xc3\x31\xb2\x1d\x7f\x58\xae\ +\xf6\x89\x6d\x5f\x32\xee\x5a\xf4\x1e\x03\x0f\x03\x7e\xe8\x85\xa8\ +\xe1\x11\xf5\x42\xcc\xe4\x81\x7a\xe8\x1b\x37\x42\xfc\x2c\x36\x43\ +\xd5\x3f\xa3\x71\xf3\x07\x8e\xed\x24\x9a\x68\x26\xaf\x9b\x5c\xaf\ +\x97\xe4\x83\xc3\xa0\x36\x82\x9c\x02\x83\x80\x39\x1d\x47\x26\xac\ +\xfe\x68\xc8\x6e\x5c\xb1\x68\x5a\xd7\x28\xc2\x7f\xc0\x26\x68\xc5\ +\x4c\xec\xfb\xaa\x89\xfb\x35\x18\x8a\xef\x5a\x7c\xb1\x5b\x43\x5c\ +\x37\x86\x63\x43\xad\x0d\xbb\xd6\x51\xac\x48\x0c\x1e\x27\x57\x03\ +\x61\x7b\x8d\x49\x7c\x40\x8d\x57\x19\xec\x1a\xd3\x22\x92\x13\x0f\ +\x14\xbf\xd1\x6e\x61\xcf\xe6\xfa\x6d\x84\xd9\x34\x81\x91\x58\x09\ +\x1c\xed\xaa\xdd\x40\x3d\x11\x03\xd0\x37\xda\x3c\xff\x32\x38\x3b\ +\xa6\x34\x7d\xa8\xb4\x78\x03\xad\xe6\x1a\x8a\x03\xd3\x9a\xaf\xd0\ +\xf9\xae\x76\xa3\x89\xc1\x35\x40\xed\x2c\xf7\x13\x83\xae\xc0\xe9\ +\xe9\xd1\x38\x27\x1f\xaf\x97\x1b\x23\x5f\xdf\x7f\xb3\xfc\xc5\xaf\ +\xfe\x7a\x79\xb0\xd7\xd6\xf6\x1b\x6a\x3b\x76\xec\xd8\xb1\xe3\x25\ +\xb0\x7f\x43\x6d\xc7\x8e\x1d\x9f\x17\xe7\x3c\xdc\xf9\xb3\x62\xc3\ +\x47\x7a\x20\x6c\x65\xeb\x84\xce\xe2\xcf\xc1\xdc\x7c\xf1\x76\xb9\ +\xf9\xab\xbf\x5b\xfe\xe3\xdf\xcd\x7f\xc0\x7f\x06\x6c\x3a\x7b\x57\ +\xc8\x7f\xf8\xe9\x7a\xdc\x52\xf5\xd3\xf6\xd6\x90\xb9\xfa\x26\x59\ +\x2d\x0d\x5d\x98\x40\xda\xc8\x89\x37\x6e\x00\xeb\xc8\x4a\x3a\xd4\ +\x4a\x9a\x7f\x37\xae\xe8\x67\x68\xb3\x77\x32\xd0\x2d\x64\x18\x74\ +\x8a\x77\x1a\x43\xf5\x65\x8f\xa3\x81\x0f\xfa\x34\xd0\x50\x31\x08\ +\xfa\xe9\x15\xc3\x10\x31\x22\xc7\x78\x4b\xc2\xfd\x18\xa4\x62\x30\ +\x50\x3b\x35\x18\xcb\x5c\x02\x64\x32\x07\x1b\x5b\xeb\x6f\xa0\xbd\ +\x06\xe0\xf3\xf8\x7c\xb4\x18\x90\xdd\x74\x00\x62\xfc\xc9\x68\x7a\ +\xde\xb7\x4c\x47\xcb\x0b\x1e\xf3\xf1\x9c\x72\x3d\x20\x75\x1b\xed\ +\x1f\xa4\xb4\x27\x88\x58\x98\xdb\xba\x01\x55\x7b\x6e\xce\x9f\x22\ +\x9e\xba\xfd\x97\xe6\x3d\x45\x7b\xae\x1e\x98\x69\xb7\xf3\x5b\xc4\ +\xcf\x69\x83\x4e\xc1\x76\x2a\x96\x73\x3c\x44\x36\xf8\x19\x5e\xce\ +\xd7\xd0\x74\x1f\x6a\x98\xe1\xb6\xeb\x68\x47\x30\xed\xfc\x84\x0d\ +\xa3\xec\xf0\xa2\x23\xcb\x0e\x75\x5c\xe3\x31\x79\x0e\xda\xba\x48\ +\x60\xfa\xe0\x06\x68\x12\xc5\xf1\xaf\x56\xd5\x3a\x2e\x87\xce\x80\ +\x2d\xde\x50\x69\xd8\xb9\xb7\x32\x50\x14\x61\xb6\x3d\x27\xcb\x46\ +\xc9\x22\xb1\x4b\x4f\x27\x50\xd6\x3f\x62\xc5\x4d\x44\x38\x7e\xbc\ +\xdf\xb4\x85\xa4\x4c\x2f\x2b\xb8\x2d\x55\xc4\x91\x08\xc0\x6e\xbe\ +\xf6\xad\x33\xbc\x5b\x79\x6d\x6b\xf4\x4c\xa0\x7f\xd8\xc7\xf8\x46\ +\xda\x15\x7e\x30\x05\x3c\x92\x6d\x52\xfc\xf6\xf7\xff\xeb\x77\x57\ +\xcb\xeb\xaf\x7e\xb5\x3c\xde\xbe\x5d\x1e\xf0\xd2\x6a\xfc\xc5\xbf\ +\x9d\x36\x83\x4a\xbc\x40\xa9\x1d\x17\xc0\x4f\x88\xd8\xed\x8f\xcb\ +\xdb\xd7\xef\x96\x5f\xfc\xec\x1f\x97\xdb\x87\x37\x76\x0e\xe8\x2e\ +\x62\xff\x70\x4e\x40\x6b\x84\x1f\xee\x38\x3f\x03\xdd\x6d\xa2\xc2\ +\x4f\xbc\x0e\xc8\x8a\x52\x04\x47\x23\xf8\x4d\x7f\xbe\xd6\x92\x6e\ +\x18\x4f\x74\xc2\xeb\xf2\x7c\xa5\x15\x3d\xb4\xa8\x45\xaf\x4f\x15\ +\x97\x16\x86\x24\xb1\x3d\xf6\x0f\x6b\x68\xe4\xa0\x29\xe8\xb8\x92\ +\x61\xc6\x10\xe2\xf5\xc3\x0f\x76\x33\x56\xf5\x36\x2f\x35\xe1\x07\ +\x42\x9e\x23\x51\x38\x42\x31\xd4\xe0\x3f\xdf\x76\x74\x92\xf4\x08\ +\x16\x83\xb5\x18\x1c\x9d\x03\x74\x8e\x1f\x5f\x36\xed\xd0\x98\x23\ +\x3a\xae\x29\x16\x2b\x5e\xeb\xf4\x73\x23\x9c\x18\x00\x54\x42\xf3\ +\x7b\x0c\x0c\x7a\x7e\x24\x33\x07\x0d\xdb\x27\xf8\x76\xa2\x26\x8e\ +\xb5\xd7\x40\x14\x1f\x9d\xa0\x0e\x1a\x2b\x14\x58\x9c\x05\xc4\x97\ +\x7a\x30\xc2\xe1\x80\x6e\x92\xde\x69\x2a\x4a\xec\xa5\xa0\x92\x63\ +\x7b\x1e\xa2\x42\x29\x84\x7d\xde\x36\xb5\x9f\x61\xdc\x05\x42\xf2\ +\x94\x5b\x87\xaf\x48\x15\xe5\x80\x11\xc1\xe4\x02\xf2\x93\x77\x0d\ +\xaf\x93\x70\xcb\x40\xf0\x35\x28\xe1\x36\x7a\xf1\xed\xdc\x07\x27\ +\x33\x08\xc3\x24\xbd\x69\x6a\x4c\xb0\x04\xfc\x73\x3b\x86\x71\xf4\ +\xa1\xe9\x0c\x75\x9e\x62\x3a\x1f\x44\xd5\x80\x63\x48\xb1\xec\x00\ +\xdf\x26\x8f\x3b\xd9\xea\xe0\x3c\xc7\x38\xa0\x72\x5d\x3c\x8e\x5c\ +\xe4\x0a\x63\x89\x3c\xbe\x86\xdc\x2e\x2c\xc3\x26\x43\x4c\xcd\x51\ +\xd5\x23\xc6\xca\x86\x15\x35\x10\x71\xfd\x3b\x30\xf2\x4a\x6f\x2a\ +\x1a\xce\x57\x15\xe0\x2b\xf1\xd5\x39\x37\xd6\xaa\x80\xef\x5a\xc5\ +\x7c\x9e\xa8\xdb\xba\x15\x7c\x9e\x02\xc8\x8a\xbe\xbf\xf7\xa8\x86\ +\x71\x66\xf2\x7f\x79\xb3\xf1\xf1\xea\x61\xf9\xf0\x87\xb7\xcb\xdf\ +\xfd\xf6\x7f\x5d\x6e\x0f\xf6\x1c\x85\xb9\x29\x2d\xdb\xba\x63\xc7\ +\x8e\x1d\x3b\x9e\x85\xfd\x1b\x6a\x3b\x76\xec\xf8\x71\x62\xf5\x34\ +\xf9\x69\xb0\xf9\x90\xf9\x78\x58\xee\xee\x0e\xcb\xb7\x7f\xff\xcf\ +\xcb\x7f\xfb\xff\xdb\x63\xa9\xdd\x3d\x1f\xed\xa9\x55\x0f\xc7\xf9\ +\xe7\x1f\xa3\xa1\x90\x3f\xb8\x9a\x86\x9f\x0a\xc1\x41\xcc\x2d\x6e\ +\x1f\xb7\x51\x1b\xea\x6f\x22\x22\xc5\x68\x58\x8a\x39\xef\x8f\xc0\ +\x4a\xb4\x26\x73\xf5\xa6\x3e\x40\x3a\x2b\x3a\x26\x52\x96\x18\x64\ +\x5b\x58\xcb\x82\xa9\x01\xb3\x9b\x5b\xb6\x19\x08\xa3\xce\xc7\x37\ +\x06\xc5\x07\x14\xaf\xb9\x18\x33\x2f\x46\xec\x7f\x6d\x26\x8e\x83\ +\xff\x73\xc8\xd6\x07\xfc\xfe\x61\x0b\xb7\x36\x9a\x2c\xfd\xeb\x91\ +\xfe\x10\xa0\x6b\x5d\x66\xe4\xfe\x37\x86\xbc\xbc\x80\xc5\xa1\xe0\ +\x5a\x43\xab\x19\xf1\x0f\x90\x02\x1e\x6a\xa8\xa2\x2c\xf0\x6e\x4d\ +\xde\x08\xc5\xf6\x25\x1f\xc9\xa3\x6e\x95\x77\x06\x9e\x92\xf3\x3c\ +\x7c\xda\x19\x31\xdb\xd8\x2e\xc5\xa5\x79\x97\xe8\xcf\xd5\x56\x4d\ +\xe6\x9c\x93\x18\x50\x4e\x5e\x5f\x80\x48\xc0\xce\x29\x9a\x7e\x11\ +\x05\xaa\x1d\xa7\x1d\xce\x6f\x6a\xac\x29\x4c\x93\x67\x7f\x10\x42\ +\xcb\x47\x9a\x7f\x40\x00\xa3\xd7\x35\xd5\x06\xca\x54\x80\xec\x2e\ +\x2f\x1d\x18\xee\x68\x3d\x7e\xe7\x2d\xb0\xb0\xae\x63\x57\x6a\xdb\ +\x68\x1a\x74\xd5\x1a\xd2\x30\x53\x76\x8c\x43\xd5\x22\x30\x14\x6d\ +\x61\x03\xad\xbe\xc6\x55\x2d\x03\x63\x25\x59\x9a\xa4\xcc\xe8\x0e\ +\x57\xc2\x49\xf6\x96\x54\x3c\xa2\x3b\x07\x0c\x70\xeb\x5d\x67\x8c\ +\x0b\x65\xaf\x98\x83\xbd\x5b\x72\xd0\xc5\x02\xfb\x7c\x73\x4c\x7b\ +\xc0\x6f\x79\xe3\x9f\x05\x1f\x97\xeb\xe5\x87\xf7\xf7\xcb\xfd\x87\ +\xeb\xe5\xdb\xff\xe5\x7f\x5b\xbe\x7e\x7d\xb7\xdc\x5c\x5d\xe7\x6f\ +\x85\xe3\x8b\x38\xf7\x9b\x6b\x90\xd5\xb6\x85\x33\xcb\xed\x78\x2e\ +\xfc\x00\xe2\x58\xfe\xe6\x97\xff\xba\x5c\xd9\x71\xce\x7b\xc6\x83\ +\x9d\x37\x38\xae\x71\xac\xae\xf8\xd1\x20\x1e\xb4\x74\xd0\x37\xa0\ +\x70\x94\x01\x50\x82\xe7\x8b\x7f\xbc\xe8\x28\xf7\x16\x9d\x9f\x4a\ +\x95\x7a\x0b\x5e\xaf\x41\xff\x4f\x6a\x9e\xe7\xe5\xc4\x9e\x2f\x57\ +\x73\x47\x5e\x6a\xea\x95\x22\x18\x83\xb5\x8e\x01\xfa\x88\xd1\x4b\ +\x60\xea\x51\x0a\xf8\x92\x14\x29\xdb\x07\xbd\x5a\xf8\x4e\xe2\x0b\ +\xff\x62\x6e\x13\xf0\x99\xb6\x68\x7c\xdd\x0c\xc2\x70\x98\xc9\xb9\ +\xec\x1a\xa5\x2d\x52\x03\xcd\xb2\xfd\xc9\x61\x74\xdf\x5d\x9f\xcb\ +\x9b\x33\x80\x9e\xe1\x2a\x62\x95\x0d\x26\x60\x4e\x11\x2a\x0f\x3c\ +\xee\x1e\xae\x37\xcf\x49\x02\x0a\xb9\x87\x08\x64\x18\xdb\x8e\x1a\ +\x49\x54\x34\x6d\x05\xe7\x18\x48\x77\xa1\x45\xbd\xd8\x87\x6a\x33\ +\x40\xb3\x15\x14\x9d\xe1\xad\x22\xc7\xf1\xb4\xac\x13\x40\x51\x35\ +\x6c\x81\x8d\xdc\x77\x06\x8d\x84\x38\x1f\xba\x31\xf5\x3e\x10\xd8\ +\x5f\x55\x83\x7d\x9c\x71\xc4\xac\xad\xce\x05\x34\x37\x1d\x71\x3d\ +\xc9\x5f\xad\x07\xb1\x42\xa6\xc9\x58\x71\xfc\x8b\x8d\xd0\x44\x61\ +\x26\x82\x6e\xa9\xed\x88\x72\x0c\x47\xb6\x97\x69\xe7\x13\xc6\xba\ +\x9d\x63\x6d\x87\x19\x61\xd7\xb5\x03\xee\x7a\xbc\x85\xc2\x20\x91\ +\xa4\xa1\xda\x38\x6e\xee\xd7\xf5\xc8\xa8\x4a\xae\xb0\x12\xa9\x81\ +\xa1\x40\xd4\xa8\x3a\xc3\xe0\x3a\x11\xa4\x62\xdd\x26\xd1\xf6\xa3\ +\x5c\xe9\x0e\x9b\x81\xee\xec\x30\xac\x85\x58\x25\xce\xb3\x5e\x09\ +\x9d\xaf\x7f\xc5\xd7\x12\x74\x83\xb0\xe3\xdc\xee\xed\xe0\xd7\x15\ +\x7b\x0c\x85\x02\xb2\x38\x5a\x97\xf5\x63\xe4\xf3\x6b\x50\xd8\x4f\ +\x8a\x3e\xd0\xf6\xfb\xc7\xd5\xd5\x0f\xcb\x0f\xbf\xbf\x5a\xfe\xee\ +\xaf\xfe\x77\xbb\xff\xdd\xda\x73\x94\xdf\x9f\x81\x71\x8f\xec\xd8\ +\xb1\x63\xc7\x8e\xa7\x61\xff\x86\xda\x8e\x1d\x3b\xfe\xb8\xa0\xa7\ +\x40\x3d\x3d\xbe\x30\x50\xde\x3f\x68\xad\x13\xf8\xa4\x77\x8f\x87\ +\xe5\x97\xff\xf9\x3f\x2d\xf7\x77\x5f\x2f\x7f\xf8\x70\xef\xbf\x95\ +\x46\x29\x1e\x5c\xf5\x67\x20\xe9\x32\x85\x0f\xc0\x7a\x47\xa0\x0f\ +\x89\x8c\xd3\x4f\x10\xd3\x2d\xef\x14\x31\x90\xeb\xd0\x33\x9e\x83\ +\x06\x75\xe4\xae\x93\xce\x86\x52\xb3\x44\xac\x25\x51\xa6\x21\xc6\ +\xf8\x99\x93\xcf\x54\xb5\x14\x6d\xed\x2b\x1b\xa8\x2f\x02\x8f\xd3\ +\xe4\xc8\x37\x29\x18\xc9\x45\x75\xf2\xe0\xfc\xad\x07\x43\xb2\xf4\ +\x66\x96\x1d\x72\x3d\x9f\x08\x09\x3b\xff\x72\xc4\x7a\xd0\xf3\x90\ +\x59\xc3\x9f\x23\x13\xe7\x5a\x9f\xab\x6e\x21\x7c\xe7\x9c\x85\x8d\ +\xdf\x54\x13\xfc\xfc\x6a\xf0\x9f\x54\xaf\x79\xbe\x56\x7f\x23\xe6\ +\x0c\x4c\xe7\x86\xb7\x67\x20\x79\x2e\xf4\x35\x1b\x8c\x47\x3c\x34\ +\x5e\xe3\x32\x28\x67\x6c\x2f\x8f\x8f\x53\x55\x18\xd7\xff\xdc\xd9\ +\x2e\xad\x71\xae\x5e\xba\x4b\xb4\xc0\x2a\x27\x4e\x09\xf1\x5d\x6c\ +\x0b\xe3\x69\x84\xf3\x36\x9e\x14\xf5\xdb\x41\xfe\x56\x7d\x5d\x8f\ +\x97\x8b\x9d\x67\x7e\x7e\x37\x0d\x7e\xb3\x08\xa0\x9e\x9d\xc7\xab\ +\x66\x0d\xcf\xe1\x68\x82\xb8\x14\x03\xed\xaa\xeb\xf9\x00\xf5\xe8\ +\xc2\xcf\x5a\xa0\xdc\x46\xcf\xbb\x35\x34\xa9\x43\x5e\x18\x40\xe5\ +\xa3\x71\x7f\x18\xd8\x6f\x68\x47\xf4\x6b\xac\x6b\x19\x61\x0c\x48\ +\xde\x9b\xfa\x79\x56\xdb\x49\x9d\x9b\x2b\x44\x0c\xb9\xa3\xe4\xd8\ +\xec\x8e\x81\xa7\x6b\x7b\x3b\x46\x36\xde\x4b\xa4\xf4\x3e\x0b\x87\ +\xab\x7b\x9a\x78\xdf\x8e\x08\x5a\x04\x16\xef\xd3\xfc\x46\xda\x61\ +\x39\x5c\xfb\x6f\x76\xe3\xa7\x54\xf0\x43\x07\xff\xe3\x0f\x8f\xcb\ +\xe1\xf5\x77\xcb\x2f\xff\xe9\x7f\x62\x4d\xaf\x85\x2a\x68\x51\x67\ +\xb5\x53\x36\x70\x8e\x0c\x9a\x33\xcb\xed\x78\x26\xec\x10\xf2\xcf\ +\x77\x1e\x1e\x96\x5f\x7c\xf9\x77\xcb\x9b\xc3\x77\xcb\xc3\xfb\xbb\ +\xe5\xf1\xda\x58\xff\x29\x25\x8a\x70\x38\xf4\xc3\x48\x7e\xca\xc1\ +\x56\x9b\xa0\x1c\x3f\x1d\x4e\xcf\x56\x07\x84\xc1\x73\xc7\x5a\xf2\ +\xaa\xba\x51\xdb\x84\x7e\x67\x2b\x09\xc5\x4c\xd4\xb2\x1a\xa3\x07\ +\x60\x69\x5b\x14\xd3\x52\x04\x9a\xe1\x17\x9a\xce\x2a\x86\x2e\x7c\ +\xc1\xeb\x59\x17\x3c\x7f\x50\x21\x5c\x5e\x79\xe3\x75\x93\x6e\xdc\ +\x8f\x21\x71\x65\x34\xe5\x63\x8c\x75\x5b\xc7\x3d\x45\x01\x2c\x7a\ +\x7c\xa9\x60\x2e\xf4\x12\xc6\xc0\xeb\x3b\x01\x02\x5c\x7a\x52\x1a\ +\x3c\xe6\xf5\xdb\x7e\xe2\x7e\x0b\x51\x0c\xac\x49\xdb\x74\x98\x5b\ +\xbf\x35\xe8\x85\xa3\x25\x97\x2f\x65\x66\xe2\x9f\x1d\x4f\xd4\x37\ +\x9e\xbf\x81\x06\x0d\xef\x5b\x7e\x9c\xa3\xb2\x41\x16\xd6\x10\xdb\ +\x0a\x82\xa4\x75\x58\x83\xec\xec\x0d\x34\xb8\x15\x84\xf3\x91\x6f\ +\x9e\x52\x7a\x3d\xe0\x86\x6f\x82\x6a\x0f\x10\x57\xe6\xc6\xe8\x74\ +\x9f\x00\x6f\xd6\x5e\x04\x17\x14\xe5\x9e\x30\x8d\x9f\xff\x92\xc7\ +\x7e\xa0\x15\x1a\xdf\x3d\x0d\x66\xbb\xcb\x68\xd9\x7b\x08\x34\x61\ +\x30\x2d\x66\x80\x96\xc7\x98\x1e\x22\x51\xdc\x09\x07\x6d\xc4\xa4\ +\xb2\x56\xe3\x33\x50\xe4\x83\xc3\xb2\x6b\x8e\x39\xac\x27\x8e\x26\ +\x1c\xf1\x1e\xe8\xe7\x09\x07\xe1\x1c\x1b\x57\x47\x1f\x28\x70\x3b\ +\xf8\xcd\xd1\x90\x3a\x6b\xb2\x39\x02\x61\x70\x3d\xfd\xa2\x8a\x08\ +\xa6\xed\x3f\x6a\xe0\xf9\xb5\xd3\x43\xdb\x17\x6e\x62\x20\xe0\xb2\ +\xc5\xb1\xb1\x6e\x50\xac\x7d\x3f\xfc\x84\x9b\xa3\xe2\x14\x42\xdf\ +\xa5\x35\x87\x67\x86\xbd\xde\x8c\x55\xfb\xf3\x75\x48\x8f\x95\xe0\ +\x8e\x51\xd7\xd4\x6b\xe0\x21\xea\xad\xce\xd0\xd4\x7d\x46\x97\x63\ +\x3b\x79\x8c\x82\xe7\x7d\x1d\x8b\x8b\x20\xeb\x1a\x77\x8f\xcf\x21\ +\x2c\x84\x3f\xed\x78\x78\x38\x2c\xaf\x97\xaf\x97\x6f\xde\xfe\x72\ +\xb9\xa7\x06\xf2\xba\xd6\x75\xe5\x1d\x3b\x76\xec\xd8\x71\x19\xf6\ +\x6f\xa8\xed\xd8\xb1\xe3\xf3\xe2\x92\xe7\x39\x7f\x0a\x74\x54\xfb\ +\x05\xe1\x8f\x98\xe8\xf5\xe8\x19\x00\x75\xb8\x5a\x6e\xbe\xfc\xc9\ +\xf2\xee\xb7\x7f\xb3\xfc\x3f\xff\x8f\xff\xbe\xbc\xba\xbb\x35\xde\ +\x1e\x63\x29\x35\x01\x1b\xd5\x3e\x84\xcd\x1a\x51\x88\x8f\xb2\x55\ +\x63\xc0\x67\x46\x7a\xc4\xd5\x30\x82\x34\x3b\x65\x01\x12\x57\x2e\ +\xd0\xd5\x99\xc4\x03\x88\x6c\x47\x0d\x93\xf5\xa4\x5e\xc9\xb5\x40\ +\xb1\xeb\x9b\x2d\xda\x55\x07\x54\x8e\x63\x4c\x66\x43\xf7\x16\x22\ +\xcc\x4e\xda\x15\x8f\x91\xf9\xd1\x94\x93\x31\x33\x70\xac\x62\x8e\ +\x92\x6d\x70\x0e\xa3\xcf\xab\x1e\x5d\x51\x26\xe9\x19\x2d\x62\x7a\ +\xe8\x44\xf0\x84\x70\x57\x8d\xe0\xfc\x18\xd1\x69\x4e\x83\xf9\xfe\ +\xc1\x90\xd4\xad\xe5\x19\x08\x17\x66\x34\xb8\x1d\xea\x3a\x3b\xd4\ +\x44\xb3\xcb\xda\x4e\xa2\x8a\x54\xa6\x00\xd4\xb1\x76\x19\x2e\xcf\ +\x98\x61\x5c\x43\x6d\x2f\x81\xa7\xd4\xbb\x44\x7f\x69\xdd\x15\x44\ +\x9e\x59\x88\xa7\x2d\xb4\x6c\x7e\x62\x75\xa9\xf1\x01\xa3\x7f\x52\ +\xea\x11\x3f\x8b\xfb\x93\x41\x11\xe6\xc3\x71\xc2\xe0\x1c\x20\x9a\ +\x6e\xc6\x03\xe6\x67\xac\x22\xe7\x2c\x31\x73\x38\xfb\xec\x5c\xce\ +\x22\x8a\x29\x13\xd7\xa8\xd9\x66\x82\xa3\x84\xbe\xeb\x08\x92\x65\ +\x34\x28\xea\x1f\xaa\xa8\x16\x50\xf2\x0c\x25\xa5\xc7\x2a\xe0\x57\ +\xb9\xd0\x5d\xdf\x81\x34\xc7\xdc\x55\xad\x01\x16\x8f\xdd\x95\xa8\ +\xab\x2c\x9f\xbd\x9c\x0d\xdd\x81\xbc\x8e\xf5\xfe\x65\x88\x4a\xaa\ +\x89\x89\xad\xb9\x8d\xae\x07\xef\x6f\xe0\xa5\x8b\x91\xe2\x6b\xf4\ +\xf8\x86\x1a\x95\xcb\x87\xc7\x1f\x96\xff\xcf\xf7\x8f\xcb\x37\x7f\ +\xf7\xcf\xcb\xc3\xad\xbd\xc6\xba\xaa\xe9\x5f\x12\x2a\xe7\x1b\xb5\ +\xe3\xa3\xa1\xed\x60\x1e\x7b\xdb\xf1\x57\x76\xe0\x5f\x1d\x5e\x2f\ +\xbf\xfe\xf6\x7f\x5a\x5e\x2d\xef\xec\x3c\xd0\x6f\xa3\x61\x94\x3e\ +\x0e\x50\x9e\x77\x76\xed\xce\x8e\xd5\x70\x5a\xd4\x6c\x7f\x55\x2f\ +\xbf\xa5\x66\x5e\x3e\x6f\x4d\xc0\x8f\x3c\xfd\x64\x5c\x81\x6c\x09\ +\xc1\x1c\xb9\x11\x0a\xe9\xf4\xc5\xa0\x0f\x69\xc7\x3c\xba\xa1\xe9\ +\x42\x1b\x3a\x87\x1b\xa8\xaf\x65\x67\x88\x28\xd7\xa5\xed\x3c\x0e\ +\xf0\xd1\xbb\x11\x6b\x53\xc4\xaf\x55\xbf\x4f\xda\x7e\xa2\xed\x21\ +\x46\xe9\xd8\x68\xaf\x09\x6e\xe3\x47\x13\x82\x0c\x3d\x40\x6d\x5a\ +\x3e\x78\xdd\x64\xd2\xe1\xd1\x88\x98\xe0\xb5\x2b\x19\x46\x19\x68\ +\x9a\x90\xf3\xbb\x13\xff\x68\x06\xe7\x70\xce\x62\x5e\x98\x04\x94\ +\x3e\xb7\x8b\x79\x5c\xa8\x01\xe9\x67\x8e\xab\x21\x7e\xc4\x5b\x00\ +\xc6\xf3\xec\xf1\xa0\x01\x77\x30\xf4\x14\x90\x21\x42\xef\x50\xcc\ +\x55\x7e\x24\xe8\x3a\xeb\x93\x93\x02\x30\x87\xbc\x58\x5e\xa2\xba\ +\xd4\xa5\x50\xb6\xaf\x5c\xf4\x8b\x00\xc5\xc6\xb6\x89\xad\xa0\x56\ +\x65\xad\x93\xc0\xc7\x75\x67\x5b\x13\x17\x38\xc3\xd2\xa4\xa3\xe6\ +\x43\xf1\x0c\x22\xb4\x67\x6d\x26\x52\xf2\xd0\x39\x47\xcf\x83\x11\ +\x27\xe9\x31\x37\x1d\x11\x27\x0d\x9b\x2d\x04\x24\xdd\xf4\x51\xbc\ +\x66\x0c\x98\x93\x32\x18\x92\x95\x3e\x31\x0a\xcb\x20\x68\xfa\xca\ +\xd7\x51\x0d\x3d\xed\x1a\x14\x0a\x87\x38\xdc\x1a\x26\x2a\xd9\x8d\ +\x3a\x3e\x35\xc3\x6c\x2b\x04\x26\xef\x6d\x05\x33\x6e\x0b\x5e\xdd\ +\x50\x72\x68\x8e\x35\xe2\x3c\x01\xa6\x71\xa0\xe3\x70\x6e\x61\x9c\ +\x09\x03\x43\x48\xeb\xf6\x6f\xa4\x3b\x9a\x65\x90\x5e\xe4\x50\x5f\ +\xfb\xde\x87\xbe\x86\xd7\xb6\x4e\xe7\x6b\x68\xdd\x70\xce\x29\x7b\ +\x45\xb2\x42\xa9\xb7\x64\xfe\x57\x02\x79\x60\x8d\x35\xf3\xfa\x91\ +\xaf\x5c\xbc\x0f\xf1\x07\x56\x1e\x0f\xcb\xfb\x1f\xee\x96\x9f\x7d\ +\xf7\x9f\x97\x2f\x6e\xdf\xc6\xe7\x0c\x15\xbd\xb7\x63\xc7\x8e\x1d\ +\x3b\x9e\x86\xfd\x1b\x6a\x3b\x76\xec\xf8\xf1\xe3\x13\x3e\xf7\x61\ +\x2a\x35\x60\x7c\xd3\x70\x7d\xf7\x7a\xf9\xee\xff\xf1\x5f\x97\xef\ +\xff\xe3\x6e\xf9\xe1\xfd\x07\xc6\xf1\xe7\x1e\xf1\xff\xc0\xf0\xcf\ +\x40\xf2\x21\xd7\x3f\x1c\xc4\x1b\x2f\xf0\x28\xd6\x3e\xc0\x41\x00\ +\x76\xd4\x85\x8b\x31\x9e\xdc\xf9\x86\x12\xc0\xa0\x16\x9c\xbf\x8d\ +\x77\xdb\x61\x39\xd5\x55\xb8\x72\x5b\x38\xa6\x89\xa5\xad\x44\xc1\ +\x93\x4d\x4d\x43\x47\xd5\x1a\xa3\x96\xbe\x93\x35\x04\x9b\xbb\x8f\ +\x64\x9b\xbb\x6a\x7a\xc7\xa0\xfd\xa5\x7d\x1a\x71\x1c\x17\x49\x59\ +\x93\x50\xd0\xd7\x04\xcf\xe7\x93\x16\x7d\xbc\xa9\x0f\x30\x1c\x51\ +\x80\xb3\x98\x2b\xc6\xe3\x82\xf2\x2c\x23\x34\x8a\xc5\xea\xc2\x32\ +\xd0\x91\xbe\x72\x2d\x07\xf0\xb7\x55\xe8\x4d\x03\xd3\x1a\xe3\x70\ +\x91\x86\x96\x09\xed\x4d\x98\x1a\x21\x03\x5a\xfc\x3d\x90\xc0\x4a\ +\xd7\x17\x5b\xb9\x97\xa2\xd6\xdf\x6a\x0e\xdf\xc3\x2f\xd1\x5e\x1a\ +\xcf\xa9\x7f\x49\xce\x8b\x6a\xcf\x2d\x64\x07\x98\xa7\x10\x3b\x34\ +\x24\xc2\xe8\xe7\x78\x34\x1e\xe7\xdf\xba\x6c\x3b\xdf\x1a\xe2\xa4\ +\xb1\xa1\x56\xca\xf3\xb7\x83\xdf\xd1\x7a\x7e\x25\xe2\x3d\xb5\x9e\ +\x21\x7e\x6d\xc5\x3c\x06\x58\xaa\x93\x3a\x88\x0c\x5a\xb5\xf4\xee\ +\x39\x5a\x05\x43\x18\x79\x6d\x63\x64\x51\x87\x73\x21\x42\xa6\x4c\ +\x43\xd2\xc0\x60\x57\x17\xe0\x0a\x0a\xdf\xed\x55\xf0\xc5\xed\x11\ +\x81\x8c\xc7\xe2\xe0\x77\x39\x7d\x01\xf7\xd6\xfd\x14\x16\xea\xa3\ +\x2d\x83\x56\x99\xb2\x87\xf6\x6b\xdb\x61\xdd\x76\x75\xfb\x51\xff\ +\x1a\xfc\xff\x50\x33\xc3\x74\x38\x05\xbf\x7f\x7f\xb3\xfc\xb0\xbc\ +\x5d\xbe\xfd\x9f\xff\xeb\xf2\xee\xe6\xc6\x45\x00\x4e\xd4\x9a\xf8\ +\x5c\xc4\x9c\x3b\x3e\x32\x26\xfb\xd8\x77\xbd\x9d\x25\x66\xfc\xf6\ +\xe7\xff\x6a\xde\xdd\x72\xff\xc1\xae\x52\x06\xf0\x4d\x35\x24\x59\ +\xcb\xef\x83\x85\x4f\x94\x82\xa6\x47\x8a\x50\x6d\x60\x92\x11\x08\ +\x65\x3c\x77\x09\xd0\xe9\xf5\xbf\xbf\x16\xdd\x69\xcf\x71\x73\xac\ +\xcf\xee\x11\xb3\xfc\xa2\x0f\x93\x2a\xd8\xd1\x52\x21\x3b\x09\x98\ +\xa6\x36\xdf\x2b\xc7\x95\x87\x0e\x1b\xc0\x06\xc2\x87\x56\xd7\xaf\ +\x39\xae\x56\x71\xe9\x03\xc9\xfb\x40\xad\x3c\xef\x51\xcd\x2c\xd1\ +\xd6\x7c\x0d\xc1\x55\x33\x7c\xb7\xb1\x5e\x1c\x7b\x27\x39\x2d\xff\ +\xc1\xe1\x97\x1b\xec\xbd\x22\xf5\xd8\xb6\x88\xab\x55\x70\x35\xba\ +\x69\xa7\xc0\x3a\x4b\xca\x3a\x02\x68\xfc\x63\xdd\x40\x18\xac\x83\ +\xa6\x1d\x90\x68\x7e\x57\x8f\x3a\x6b\x1c\xea\xfe\x97\x61\x5a\x2d\ +\x5c\x01\xae\x13\x3c\x38\xc3\x38\x06\x7c\x16\x27\x7d\xbd\xde\x34\ +\x27\xf7\x09\xa3\x42\x68\x3d\xbc\xdd\xb6\x30\xd3\xaa\x5d\x8c\x92\ +\x64\xa6\x2f\x3b\xb6\x19\x36\x79\xac\x3f\x9d\xd2\xec\x4a\x23\x67\ +\x40\x22\x1c\x6e\x94\x63\xb8\x6c\xdb\xf6\x2a\x3f\x7d\xa0\x1c\x93\ +\x00\xd7\xe2\x16\x7b\x0e\x34\x7b\x3f\xbc\x32\x5f\x8b\xbb\x85\x9e\ +\x5b\xe0\x48\xde\x10\xb6\xfb\x35\x10\x90\xaf\x50\x19\xcb\xd0\x60\ +\x8b\x4e\x4e\x5a\x80\x06\xce\x0b\x7a\x2d\x90\x02\x43\xb5\xc3\xe9\ +\x28\x80\x44\x63\x73\xb6\x7e\x20\x78\xfe\xf3\x1c\x0e\x58\x50\x71\ +\x1f\x11\x1b\x8e\xb5\xf5\xe1\x12\x25\xbb\x83\xe2\x6b\xb4\x0c\xdf\ +\x56\x55\xed\xb1\x9d\x0f\x0c\x51\x73\xd7\xfa\x58\xbb\xb5\x16\x83\ +\xe5\xf3\x8b\xa3\x82\x94\xbd\x48\x75\x45\x9a\xe3\x19\x65\xb4\x10\ +\x6c\x28\xca\xd1\x34\x04\x4b\x4a\x8a\x18\xe2\xc0\x06\x63\xae\xc5\ +\xcd\xa1\x1f\x24\xff\x0a\x84\xf1\x0f\xd0\xc2\xb6\xaf\xc3\xe1\xc3\ +\xf2\x6f\xff\xe3\x76\xf9\xcb\x5f\xfe\xeb\x72\x7b\x73\xeb\xa5\x20\ +\x46\x79\x22\x92\x77\xec\xd8\xb1\x63\xc7\xb3\xb0\x7f\x43\x6d\xc7\ +\x8e\x1d\x3f\x2e\xe4\xc3\xde\x80\x91\xff\xc8\xcf\x82\xfd\xc3\x6e\ +\xc0\x9e\x86\xef\x8c\xfe\xea\x9f\xfe\x76\xb9\xf9\xf2\xb7\xcb\x7f\ +\xff\xc3\x1f\xf8\x9e\xc2\x1e\x63\xfd\xa7\x53\x0f\x57\xcb\xf5\x95\ +\x3d\xb8\x22\xd5\x3a\xd6\xc0\xc8\x87\x5c\x56\x20\xf0\x98\xee\x7f\ +\x86\x44\x3f\xd9\x0b\x8d\xf1\xd0\xf0\x03\x24\xe4\x61\x74\xe8\xcf\ +\x67\xc5\x5b\xcf\xc0\xb0\x43\xc6\xfd\xd3\x21\x82\x47\x34\xa8\x5b\ +\xa6\x0c\x18\x23\xb2\x04\xb9\x7d\x33\x0c\x3c\xa7\x1b\x38\xe4\x92\ +\x12\x8f\xb1\xda\x42\xb1\x6b\x9d\x4e\x4e\x03\xfb\x4e\x6f\x98\x7d\ +\x03\xfd\x4d\x4b\x79\x43\x1e\x70\x17\xfb\x10\x96\x69\x43\xef\x11\ +\xf8\xb2\xdb\x88\x5e\x96\x22\x40\xee\x83\x26\x70\x85\xf8\x52\x5a\ +\x12\xbd\xe0\xca\xf7\x6e\x40\x70\x0a\xb9\xd6\x3f\x36\xc9\x0f\x4f\ +\x9c\x6c\x4d\xa8\xf6\x88\x4e\xa7\xc5\x35\x78\x29\xeb\x6b\x0c\xa4\ +\xdc\xb2\x3d\x2f\x09\xcc\xf9\xc2\x25\x9f\x0d\xdf\x17\x4f\xdb\xd4\ +\x4b\x73\x3f\x96\x96\x30\xf1\x96\xde\x6b\xf9\xbe\xef\x34\x76\xd1\ +\xd4\x0f\x8d\x71\xce\xf2\xbc\x1d\x2e\x26\x2a\x82\x62\x0d\xeb\x38\ +\x92\x19\x3e\x60\xe0\x9b\x7d\x27\xd8\x67\x2c\xce\xe7\x9c\x4e\x81\ +\x58\x99\x7f\x59\x83\x40\x2d\x10\x31\x21\xed\x4a\x06\x38\xb5\x9a\ +\x30\xd1\x25\x22\xa6\x4d\xce\x6b\x7d\x86\x69\xac\xac\x53\x18\x74\ +\xdc\xc7\xba\x6f\x9d\x40\xab\x06\xb5\x35\x5d\xa3\x25\xb9\xad\x11\ +\x75\xc3\x34\x4c\x56\xd2\xc5\x1d\xbe\x87\xf3\xd2\x9f\x26\x01\x9e\ +\x58\xc3\xb5\x94\x6c\x1e\x3d\x38\xfc\x46\x19\x0c\x34\xce\xc0\x7d\ +\x4a\x1d\x78\x86\x4c\x83\x1f\x3a\xc1\x39\xf3\xf0\xb0\x7c\x30\xf3\ +\xdf\xde\x5f\x2d\xaf\x7f\xfa\x9b\xe5\xeb\x5f\xfe\xf5\x72\xb0\x73\ +\xe7\xc1\xfe\x75\x4b\xda\x5a\x5f\xe5\x61\x6f\xe9\x84\x53\xf1\x1d\ +\x2f\x03\x3f\xe0\x32\x12\xba\x06\xbe\xf9\xe6\x6f\x97\xeb\x87\x9f\ +\x2d\xcb\xfd\xed\xf2\x78\xb8\xb7\x53\xc2\x22\x3c\x36\xe8\xec\x9c\ +\x31\x87\x16\xd3\xfd\xa0\xa1\xf7\x68\x03\x6c\x8f\x16\x36\x4c\xde\ +\x4f\x22\x2a\xf0\x5c\x64\xbc\x65\xf1\xdc\x4d\xc6\x41\x9b\x3a\x8f\ +\xb9\x55\x10\x8e\x0f\x71\xf7\xec\x04\x0d\x2d\xbf\x17\xe0\x0a\xf4\ +\xb5\xb8\x66\x23\xdd\x51\x82\x34\x23\xb1\xf6\x00\x2c\x79\xad\xf6\ +\xa0\x4a\x81\x6f\x27\xdd\xec\xec\xce\x1f\xf1\xcc\xc7\x88\x0e\x5f\ +\xbc\x41\xe2\x1e\x66\x99\x11\xcf\xd1\x05\x74\xbd\xe1\xda\x07\x67\ +\x5f\xba\xd1\xc4\x40\x18\x0f\x75\xd3\xa3\x83\x38\xec\xc6\xb2\x4e\ +\x7d\x39\xa2\x69\x5c\x52\x61\x80\x71\xd3\x7a\xd4\x0a\x54\x8e\xff\ +\xea\x8d\x0f\x41\xd4\x37\x83\xab\xe7\x36\x78\x1d\x34\x7a\xd0\xc3\ +\xa1\x1f\x30\x5f\xca\xab\x83\x5b\xe2\xdd\x0c\x65\xfa\xa8\xe3\x7a\ +\xcc\x17\xa4\x63\xa0\x3c\x13\x4e\xce\xe6\x60\xbc\xf2\x91\xd0\xa1\ +\x72\xb0\xc3\x97\x39\xb6\x93\x38\x4b\x74\xa4\x26\x08\x5f\x2f\xf7\ +\x2f\xc6\x95\x06\xaa\xd8\x83\xea\x42\x83\xfd\xc2\x46\xc7\xea\xf0\ +\xf8\x38\x70\xc4\x58\x4b\x04\x00\x6d\x26\xc4\xc0\x9d\xeb\xa8\x7e\ +\xb2\xf4\x63\x7e\xf4\xfe\x45\x3b\x42\x1d\xb2\x5c\xe5\xcd\xa6\xab\ +\x60\x89\xc1\x9c\xe5\x34\xca\x2c\x8a\x34\x28\x62\x28\x26\x41\x4d\ +\x08\xc3\x17\x68\xfe\xdf\xec\xfd\x09\x97\x64\xc9\x75\x1e\x08\x9a\ +\xbb\x47\x66\xd6\xbe\xa1\xaa\x80\x42\x01\x28\x14\x0a\x4b\x81\xd8\ +\x0a\x28\xac\x04\x41\x80\x0b\x48\x90\x02\x05\x8a\x64\x93\xa2\x38\ +\x54\x93\x12\x25\x51\x33\x12\x5b\x4b\xab\xb5\xf5\xe9\x1e\xcd\x9c\ +\x33\x73\xa6\x4f\xf7\x7f\x9b\x73\x66\xa6\xbb\xd5\xcd\x96\x5a\x54\ +\x53\x5c\x00\x54\x15\x50\x5b\x66\x46\xb8\xc7\xdc\xef\xbb\x8b\x5d\ +\xb3\x67\xcf\xc3\x23\x32\x32\x2b\x13\x78\x5f\x84\x3d\xbb\xcb\x77\ +\xaf\xd9\xb3\xf7\x9e\xb9\xbd\xe7\xe1\x1e\xa6\x87\x5b\x84\xa0\x74\ +\xb2\xd6\x76\x2e\x85\x43\x41\xd5\x6c\x59\xa6\x20\x49\xb3\xaa\x68\ +\x7a\x9d\x30\xb0\x22\x85\x89\x81\x71\xb0\x00\xc7\xdc\xc4\x8c\x19\ +\xfe\xd4\x6c\xf3\xb3\x21\xfc\xc3\x78\x9c\x51\x5a\x7b\x89\xb9\xa2\ +\xe3\xbb\x19\xa0\x68\xfe\x99\xb4\xd1\x87\x7c\xf6\xb6\x5c\x61\xe4\ +\x71\x05\x60\x92\x0a\x6d\xf9\x6b\x17\x75\xca\xd2\x57\x59\x47\xc9\ +\xd4\xc3\xd7\xcb\xb2\x5d\x97\x23\x59\x4f\x3d\xbc\x79\xb4\x7c\xe4\ +\x03\x9f\x28\x27\x12\x00\x2e\x11\x82\xf0\x16\x2c\x58\xb0\x60\xc1\ +\x2d\xc3\x9f\xef\x2d\x58\xb0\x60\xc1\x3b\x0b\xac\xed\xf2\xfa\x2e\ +\x16\x7d\x7b\x70\x08\xe7\x82\xd0\xae\xe4\x0e\xa9\xbc\x3a\xdd\x94\ +\xd5\xe3\x4f\x96\xfb\x7e\xe2\xc5\x72\xfd\x87\xa7\x65\xbb\xdb\x96\ +\x1d\x16\xb0\x58\xb0\xe2\xc1\xa0\xcc\xaa\x6b\x59\xd5\xe2\xff\xa9\ +\xa1\x7f\xe8\x62\xbf\x5b\x5c\x7c\x53\x80\x45\xfc\x78\x60\x44\x92\ +\x2d\xe0\xcd\xde\xa2\x2e\xbd\x89\x9c\x54\xd0\xa9\x1d\xfa\x84\x55\ +\x8f\x9b\x5a\x14\x37\x6b\x67\xf6\xe6\xec\x33\x36\x06\x93\x47\x1c\ +\xcf\xa9\xbe\xbc\x35\x40\xc9\xaf\x4c\xd9\xd9\x10\x15\x91\x61\x78\ +\xa3\x53\xf7\x20\xdf\x7c\x50\x57\x4d\x7e\xc1\xd9\xf1\x86\x84\x88\ +\x3c\x52\xd3\x06\x0e\x7f\x09\xaf\x81\x2a\xe7\xdb\x22\x83\x08\xc8\ +\xc4\x23\x2a\xb2\xda\xd1\x6a\x30\x4c\xd2\xf6\x70\x9b\x47\x49\x55\ +\x71\x6a\x4e\x67\x7b\x7c\x8f\xcc\x19\xf9\x81\xb0\x3a\xd9\xdb\x18\ +\x80\x14\xe3\x85\xec\xd8\x13\x77\xaf\xc3\x76\x99\xe5\xbc\x38\x6f\ +\xec\x45\xf9\x7b\x81\x63\x23\x25\xe7\x1e\xc5\xcc\xd9\x7b\xb4\x8f\ +\x1d\x3c\xc6\x1b\xb1\x86\x04\x7d\x2e\x46\x35\xc6\xcc\xb5\xf8\x1e\ +\xc1\x97\x73\x5e\xe4\x3e\xa7\x02\x56\x38\x35\x87\x5f\x47\x66\x9d\ +\x48\x2d\xb4\xcd\xb0\x4f\x09\x6a\x92\xcd\xa4\x77\x31\x1f\x60\xa3\ +\x6d\xf7\xf1\x93\x18\xa0\x6f\x03\x61\x52\x34\x83\xf7\xdf\x48\x26\ +\x46\x48\x08\x02\xd8\xb3\xee\x48\x46\x97\xb4\x1e\x69\xc3\x1e\x86\ +\x15\x35\x79\x1e\x4a\x98\x32\x08\xa5\x87\xf6\x26\x40\x00\x5d\x6d\ +\x2a\x81\x24\x85\x63\x28\x7b\x2c\x46\xce\x80\x16\xc6\x19\x4e\x14\ +\xfc\x61\x09\x9f\x01\xed\x76\x62\xdc\x96\x57\xb7\x9b\xf2\xf8\x87\ +\x3e\x51\xae\x3d\xf4\x10\x5f\x0a\xf4\x90\x6b\x0e\xc2\xaa\x09\xb2\ +\xdd\x65\xc6\xaa\xd8\xa0\xcf\x31\x97\x73\xc1\x6d\x02\x06\x1c\xe5\ +\xb4\x3c\x70\xdf\xc3\xe5\x7d\x4f\x7f\xaa\x6c\xf0\x86\x5a\xd9\xda\ +\xf2\x43\x0f\xda\x6a\x85\xbf\x30\xb2\x03\x28\x95\x46\xa0\xd6\xd7\ +\x47\x75\xa9\xdf\x58\x24\xe9\xf5\xa5\x8a\x4b\x0d\xcc\xa8\x31\x95\ +\x11\x39\x04\x59\x9e\x60\x90\xd4\x73\xd5\x96\x0d\x22\xf4\x74\xbe\ +\xde\x37\xf6\x8e\x61\x6a\x63\x6d\xf8\x26\x67\x1e\xfc\x10\xcc\x86\ +\x9a\x6b\x3a\x3c\x65\x75\xe4\xf9\x2c\x78\xe8\xb3\xfc\x48\x1d\x6b\ +\x40\xe3\x71\x6f\xcc\xe6\xd7\x2d\x2a\xc8\x2c\x6a\x22\x8f\x7e\xc4\ +\xb9\x11\x42\xd2\x2b\x77\xad\xd7\x35\xf9\x69\x9c\x2b\x21\xe4\x6a\ +\xd2\xd7\x06\x6c\xac\x52\x67\x25\x84\x0f\x08\x09\xc4\xcc\xe1\xc8\ +\x27\xd0\x8d\xbe\xeb\xf9\x04\x1f\xfd\x1e\x43\x02\x8e\x15\x89\x66\ +\x66\x84\xc6\xc0\x47\x9b\x80\x4e\x6c\x2a\x2b\x40\x31\xb7\x5c\x79\ +\x81\xa4\x82\x49\x46\xa6\x34\x8a\xc1\x49\xac\x69\x19\xa0\x77\x38\ +\x79\x6f\xd0\x00\xc2\x25\xbd\x8b\xcb\x6a\xe3\x32\x05\x55\x3b\xa8\ +\x02\x97\x31\x4a\x3a\xf6\x5e\x00\x1f\xa9\xca\x72\x98\x84\xf3\x4a\ +\x64\x8e\x71\x90\x5a\x96\x96\x70\x6a\xe9\xc7\xd0\x54\xe5\xc1\xaf\ +\x3a\x61\xe3\xea\x3e\x86\x9a\xdf\xaa\x2a\x48\x4d\x37\x6a\xb3\xd5\ +\x6b\x29\x55\xd8\x50\xf0\x23\x9c\xec\xb9\x76\x40\x97\x62\x5d\x51\ +\x84\x8c\x6d\x95\x2a\xac\xaf\x86\x2c\x13\xa2\x4f\x6c\x01\x38\xf9\ +\xab\x70\x21\xf3\xe7\xe4\x43\x21\x31\x18\x53\xfd\x01\xea\x35\xc4\ +\x7e\xd1\xb8\x27\xb1\x93\x67\x10\x6e\x49\xd1\x52\x35\x67\x64\xee\ +\xfc\xb5\xc5\x36\x2a\x8e\xa3\x30\xec\x55\x27\xa0\x1a\xe6\xcd\x6e\ +\x1e\x90\x20\xec\x4b\xf0\xdb\xb0\x88\xd3\x37\xe8\x44\x23\x37\xc3\ +\x03\x50\xd7\x56\x5b\x8e\x80\xf7\xca\xf8\xc3\x5c\xc0\xbd\xd2\x97\ +\xf5\xcd\x72\xf2\xe6\xc3\xe5\x85\x0f\x7f\xb1\x1c\x9d\x5e\xc3\xdf\ +\x2a\x19\x72\x06\xcf\xba\x60\xc1\x82\x05\x0b\x6e\x05\xf9\xb1\xe5\ +\x82\x05\x0b\x16\xbc\x33\x98\xac\x12\x0f\xc4\x45\xe3\x0e\x02\x16\ +\xc8\x58\x40\x6b\x33\xda\x94\x6e\xaf\x5d\xb9\x56\xde\xf5\x13\x1f\ +\x2f\x6f\xbf\x7d\x5f\xc1\x47\xd6\x56\xab\x35\x17\xd4\x58\xd6\xae\ +\x37\x32\xad\xe2\x4d\x37\x59\xab\xd6\x37\x69\x34\x0f\x9e\x14\x61\ +\xfd\x0c\xfb\x1a\xb6\x35\xfe\x09\x3f\xdd\x96\x1a\x0a\x6a\x15\xa3\ +\x16\x92\xab\x04\x15\x21\x22\xd8\x1c\x1e\x36\x46\xe5\x11\xfa\xc4\ +\x8a\xd0\x9e\xe9\x8d\x0d\xd7\xf6\x00\x15\xad\x32\xb2\x1e\x19\x8c\ +\x3b\x07\xbf\x65\xca\x1c\xc4\x32\x3e\xc7\x25\x99\x22\x36\xd9\x9f\ +\xd1\xc5\xa9\x0a\x41\x33\x43\xd7\xa1\x57\x4f\x00\x14\xa9\xf8\x81\ +\x08\x93\xb1\xd5\xda\xe2\xc2\x0a\xc4\x5e\x1a\x9f\x9b\x0a\x93\x35\ +\x46\xe3\x11\xa1\x6d\x8b\x2e\xfd\x49\x19\x44\x16\x2d\xc7\x0b\x94\ +\x2b\x35\x6e\xc0\x1a\x72\x47\x1c\xa1\xed\x9e\xd6\x7d\x7e\xab\x15\ +\xc1\xb2\x7a\x1e\x36\x94\x2c\x60\x1f\x1e\x79\x1e\x5c\x6e\xb6\x43\ +\xe0\xfb\xd2\x97\x8b\xe0\xbc\xb1\xb7\x95\x2f\x44\x72\xf3\x39\xd4\ +\x61\x36\x57\x6e\xc8\x6a\xad\xf0\xe9\x20\xad\x01\x9c\xe7\x7a\xae\ +\x57\x7a\xdf\x5c\xf5\x9a\xc7\x89\x02\x5e\x21\x49\x4f\x62\x23\x3b\ +\xb2\xcd\xdb\xf1\xf6\x1d\xfd\x65\x02\x35\xff\xbf\x0b\x5e\x0f\xfd\ +\x45\x61\x08\x33\x6b\x55\xdc\x94\x32\x54\x63\x15\x1a\x4c\xdd\x2a\ +\x34\x6c\x51\xf4\xa1\x6c\x9d\x27\x26\xe8\x03\xd2\x5e\x53\x6d\xfc\ +\x0e\x7b\x6d\x01\x26\xfb\x39\xa7\xeb\x28\x86\x26\x09\x9a\xfe\xf4\ +\x61\x23\x08\x47\x69\x46\x6e\x2b\x15\x3c\xa9\xcf\x6d\xd2\x3f\xed\ +\xa2\x6c\x20\xac\xd7\xf2\x8b\xd7\x4b\xf9\xdd\xad\x0a\xbe\x40\xf9\ +\xe6\xb1\xbc\xa4\x3e\xf0\x78\x79\xf2\xb3\x9f\x2f\x0f\x1d\xad\xf4\ +\x2b\x8c\x18\x84\x1a\xb1\x97\x80\x51\x9e\x66\x00\x16\xdc\x3e\xe4\ +\xc1\x57\x19\xb3\xcc\xf3\xcf\x7e\x8e\xff\x4f\xed\x14\x0f\xff\x38\ +\xeb\xc0\x2a\x07\x45\x4e\x8f\x15\xbe\x4b\x9b\x07\x48\x4a\x0e\xc7\ +\x79\xc3\x0a\xe7\x33\x24\x81\xf8\x79\x3e\x93\xe7\xf9\x15\xfa\xf0\ +\x32\x23\x27\x6b\x51\xaf\x2a\xd4\x78\xe5\xee\x63\xa7\x98\xcf\xe6\ +\xfd\x31\x88\x8c\x35\x60\xc3\x9f\xf4\xcd\xa1\xf3\xc5\x10\x5d\x4e\ +\x07\x44\x5e\x36\x26\x13\xd0\x69\xab\x63\xe5\x3e\xea\xa6\xb0\xe2\ +\xf5\x86\xba\xe5\x01\x2e\x7b\x6f\xa1\x2b\x1d\x16\xe4\xd6\xc7\x0a\ +\xca\xcb\x91\xc6\x75\x5b\xc4\x88\xe8\x9d\x55\xc5\x05\x35\x61\x13\ +\x02\xe0\x7d\x55\x5d\x59\x91\x95\x66\xc8\x18\xef\x48\x25\xa8\x69\ +\x13\xd7\x41\x83\x5a\xb1\x0d\xbf\x29\x6e\x43\x64\xf8\x08\xd5\xf0\ +\xb7\x73\xee\xc0\x1e\x71\x79\x6d\x7a\xd3\xbf\xc4\x9b\x20\xf8\x53\ +\x8a\xde\x47\x48\x49\x79\x27\x24\x87\x51\xa3\x04\xa0\xe8\x78\x4f\ +\x91\xc9\x2e\x77\xb6\x4e\x6d\x8a\x57\x26\x37\x0e\x6f\x93\xfb\xc0\ +\xd1\xa1\x9a\x77\xa6\x39\xc3\x45\x04\xd5\x77\x39\x23\x46\x9f\xa7\ +\x58\xef\x54\x1d\xe7\x32\x24\xbe\xd6\x76\x1c\xa3\x28\x92\x3b\xa8\ +\xbd\xdf\x2b\xd9\xe4\x58\x17\xf5\x1a\x86\x93\x5a\xad\x6d\x1b\xfd\ +\xf5\x5a\x2a\xb7\xd0\xeb\x7a\x63\x17\x74\xf6\xf0\x85\x60\x30\x7f\ +\xd8\x4d\xd7\xbe\xaa\x42\xd1\x90\xf7\x21\x00\x9b\xf3\x06\xfe\xde\ +\xd4\xe8\x4c\x98\x8e\x5e\x72\x36\x6d\x41\xb6\x52\xe7\x41\x3f\x2f\ +\x9a\xca\xad\x2d\x2c\x76\x16\x9d\x2f\x54\x49\xd6\xba\x86\xd9\xa7\ +\x90\xa0\x51\x73\xa3\x68\xdf\x9f\xfa\x2d\x32\xd4\x58\xab\x8c\xad\ +\x67\xd3\x5a\x79\x66\x63\x02\x8b\x72\x9a\x31\x6a\xbc\x01\x66\x29\ +\x31\x86\x52\xd3\x24\xaf\x8f\xf8\x1f\xa1\xfe\x38\x00\x4f\x22\xd6\ +\xab\x93\x72\x72\x52\xca\x87\xde\xfb\x25\xde\xef\x1e\xe1\xb9\x84\ +\xc7\x2d\x58\xb0\x60\xc1\x82\x4b\x85\xae\x7c\x17\x2c\x58\xb0\xe0\ +\x9d\x44\xbf\xd0\xf3\x35\xe4\xbe\x05\x60\x5a\x67\xde\x1e\x68\xe3\ +\x6d\x17\x54\xbb\x4f\xda\x7e\xe2\x13\x9f\x28\x6f\x3e\xf2\x60\x79\ +\xfb\xe6\x8e\x0f\x05\xf5\xd6\x0a\x37\x49\xb2\x98\x5e\x6d\xb8\xa8\ +\xe5\x0d\x97\x94\x8d\x84\xe9\x4d\x71\xea\x76\xbd\xb3\xa0\x11\x1a\ +\x2d\x24\x4c\x77\x2e\x47\x63\x3b\x7a\xc0\xa3\x76\xdf\x64\xa4\xb6\ +\x04\x2d\x07\x3e\xcd\xd6\x86\x89\x16\x61\x22\xc3\xd9\xa6\x99\xea\ +\x82\x7a\x53\x20\x10\x99\x39\xcf\x8a\xeb\x74\x7d\xbf\x4f\x6e\x39\ +\xc4\xce\x7c\x5e\x00\xab\xe9\x53\x31\x80\xf1\xa7\xd5\x1f\x4e\x99\ +\xca\xa2\x9b\xbe\x32\xb8\x31\xc5\x05\x74\xc7\xe9\x1a\x3c\x60\x0a\ +\xa4\xbc\x95\xa5\x3d\x72\xb8\x96\x6d\x20\x37\xfa\x00\x9a\x69\x00\ +\x37\xa2\xc1\x94\x67\xc2\x15\x03\x6c\xfa\xb0\x41\x24\xe3\x03\x7a\ +\xeb\x97\x90\x93\x78\x31\x8c\x5c\xa3\x72\x36\x0e\x67\xde\x0a\x72\ +\x9f\x2e\xab\xc5\x8b\xe4\xba\x9d\xfc\xe0\x75\x87\xb1\xc7\x34\x9f\ +\x05\xa4\x73\x41\xcf\x6f\x55\xb8\xc5\x1c\x25\x42\xdc\xfc\xdb\xf9\ +\x9f\x3f\xf0\x90\x71\x56\x9f\xe9\xb7\x79\x2f\xb6\x4d\x50\x55\x1a\ +\xb3\x80\xba\x1b\x6d\x92\xc9\x6c\x9d\x2b\xd0\x31\xe9\xad\x3f\xa4\ +\xc8\xd7\x6b\x25\x13\x9d\x1a\x5c\xc7\x28\x86\x48\xb6\x91\x9b\xed\ +\xce\xa0\x5e\x6b\xda\xdf\x8c\x69\x2e\x70\xa7\x3c\xc5\xb8\x65\x82\ +\x2e\xf3\xef\xa1\x21\xbb\xf7\x46\x5b\x82\xb0\x27\xc0\xa0\x73\x98\ +\x6e\x03\xd1\x49\xf5\x41\xc7\xff\xdd\x0b\x1d\x2d\x18\x87\xc3\xbc\ +\xc6\x7e\xc9\xeb\xa3\xd5\x78\xf5\xd9\xed\xf0\x40\xe8\xa4\xfc\xc5\ +\xf5\x75\xb9\xff\xa9\x17\xca\xc3\x4f\xbd\xa7\x9c\x08\x17\x5f\xf9\ +\xd8\x1d\x9a\xc3\x70\x9e\x18\xed\xda\x82\x3b\x06\x3b\x17\xe4\x87\ +\x2b\x8f\xd5\xae\xbc\xeb\x81\x0f\x96\x47\xaf\xbe\xbf\xac\xb7\x57\ +\xcb\xe9\xd1\xce\x4e\x14\xe3\xf0\x49\xa1\xea\x56\x09\x5c\x90\x5c\ +\xe4\x7a\x2d\x1e\x88\x94\x5a\xe8\x3c\x26\x1c\x73\xa2\xd2\x33\x59\ +\xb7\x0e\x66\x09\x83\x08\xfa\x4b\x19\xa7\xf1\x80\x4d\x8b\x7e\x8d\ +\xb7\x6b\x2d\xaa\x45\xf9\x19\xde\x87\x59\xd0\x6d\xb9\x8d\xda\xcc\ +\x0b\xbd\xdc\xeb\xfd\x75\xed\xaa\xd4\x39\x0f\x45\xd8\x50\x65\x05\ +\x92\x8b\xa6\x87\xa1\xd1\xeb\x58\x60\xa3\x6e\x15\x68\x4b\xe0\xde\ +\x28\xc1\x90\x48\x14\x7d\x9c\xa0\x88\x6c\xb9\xa9\x37\x45\x32\xa1\ +\x82\x66\xb5\xbf\xe1\x82\x08\xed\xa6\x71\xf5\xb7\xd6\x84\xf1\x50\ +\x84\x8c\xd7\x90\xea\x03\x40\x86\x05\x2c\xf4\x03\xba\x9a\xb5\x47\ +\xee\x03\xcc\x27\x1b\x76\x99\xb2\xe6\xd3\x37\x78\x0c\x26\xfb\x36\ +\x3c\x99\xc2\x0d\x92\x50\xd5\x1a\x71\xcc\x2b\x1b\x34\x49\x1b\x9c\ +\x7b\xe0\x1c\x16\xd9\x34\xba\x14\xc0\x6b\x08\x3e\xce\xc1\x81\xcd\ +\x0d\x3d\x94\x34\xf1\xcc\x1a\xa4\x4e\xa2\x02\x02\x8e\x81\xd4\x72\ +\xdc\xac\xf5\x0a\x86\x60\x43\x41\x4a\x7c\xd4\xc6\x1e\x60\x99\xcf\ +\xa0\xf7\x59\x88\x70\xbb\xd5\xdc\x2f\x2f\xb4\x1a\x0b\x12\x90\x7c\ +\xc2\xa5\x95\x71\x95\x11\x82\xd4\xf8\x83\x48\x95\x3d\x86\x5b\x2b\ +\xa8\xb4\x0e\x9a\xd5\x4e\x09\xdd\x61\xf6\x00\x38\x2e\x64\xb8\xea\ +\xfe\x89\x6e\x86\xd0\xa9\x99\xdd\x8d\x0a\xa5\xda\xfe\x25\xbb\x23\ +\x52\x65\x5f\xc3\xd3\x7d\x1f\x81\x1e\x1b\x47\x0f\x51\x39\x8d\xb9\ +\x54\x7e\xb5\x29\xdf\xb9\xe6\x9f\x83\x9f\xa3\x73\x48\xe1\x0d\xf3\ +\x8c\xb4\x01\x09\xca\x77\xc4\x1e\x36\xe9\x5b\x6e\x27\xce\x2f\x00\ +\x35\x9c\xbe\xa7\x6a\x6f\xa6\x61\x93\xb5\x9d\xea\xe0\xf9\x4b\x35\ +\x91\xfd\x00\x08\x15\x92\xae\x73\x6d\x1c\x45\x5c\xcb\x35\xc1\x4f\ +\xc8\x09\x0f\x6b\x5f\xbc\x46\xae\x4e\x1e\x28\xf7\x5f\x79\xa2\xbc\ +\xeb\xea\x93\x5c\x47\x31\x0e\x61\x04\x35\x15\x17\x2c\x58\xb0\x60\ +\xc1\x2d\x63\x79\x43\x6d\xc1\x82\x05\x77\x07\xf2\x1a\xef\x6e\x5a\ +\xeb\x49\x5f\xe2\x06\xc0\x16\xc6\xc0\xfd\x0f\x3c\x54\x1e\xf8\xe4\ +\x67\xca\x7f\xfc\xf3\x37\xed\x7f\xc0\x08\x0f\x0f\x08\x65\x5a\x5d\ +\x1f\xe1\xcd\x34\x4c\xaf\xb6\xe8\xc5\x56\x7c\x7e\xf3\x00\x20\x13\ +\x1f\xfc\xd2\xa4\x76\xfa\x21\xd6\x66\xb2\x28\xd0\xc5\x32\x91\x1d\ +\x2d\x49\x01\x5b\xff\x20\x25\x81\x2e\x72\xa4\x58\xb3\x13\xd8\x0a\ +\x5c\x69\xd6\xb6\x11\x51\x0d\x63\x3a\x64\x0e\xef\x0b\x9a\x20\xcd\ +\x0f\x34\xbc\xd8\x5a\xcb\x7e\x27\xe0\x24\xab\x63\xf7\xac\x46\xa5\ +\xf7\x1e\xb2\x91\x18\x8c\xb8\xfb\xf4\x46\x5c\x14\xdc\x70\xa8\x85\ +\xc8\x31\x3c\x56\x8c\x43\xad\x3e\xdd\x58\x9e\xc1\x78\xba\x45\x8f\ +\xa5\x66\xa6\x2d\x1c\xd8\xa8\x5d\x1f\xb8\x55\x8e\xf2\x94\xc8\x7d\ +\x14\xd1\xed\x6a\x9d\x81\x75\x67\x16\x96\x27\xa0\x4d\x1a\x30\x9e\ +\xe6\x15\x3b\x1e\x7c\x3b\x97\x75\xe6\x36\x71\x82\x26\xe9\x3c\x40\ +\xdb\x57\x80\xbe\xde\x87\x1c\x7b\x9e\x72\x99\xb8\x68\xce\xf3\xc4\ +\x9c\xa7\x8d\xcc\x3d\x2b\x6e\xea\xc3\x09\x94\xac\x38\x2f\xe5\xe2\ +\xd6\x2b\xa0\x9e\x0f\xb4\x43\x11\x1f\x4f\x05\x3f\xc7\x69\x83\x41\ +\xa1\x62\x35\x78\xbc\x5f\x57\x8e\x14\x62\x80\xc5\x5b\x94\x6d\xa5\ +\x36\xdc\xc8\xd7\xd5\x1e\x9d\x81\xbd\x50\x93\xe5\x6d\xdd\xd4\xcd\ +\xad\xe8\x28\x71\x89\x27\xe3\xb4\xdf\xe7\x47\x6e\xa3\xc1\x9c\x43\ +\xec\x70\xb1\xed\x9e\x63\x3e\x6e\x7a\x1f\x21\x51\x43\xfb\x18\x13\ +\xea\x64\x87\x8d\xd1\x10\xab\xa2\x52\x72\xb2\x79\xd9\x44\x1e\x67\ +\xf8\x31\xc6\xc6\xdf\x50\x13\x51\x06\x1d\x6f\xa8\x1d\x9f\x6c\xcb\ +\xeb\x27\x57\xca\x43\x2f\xbe\x54\xee\xbb\x76\x35\x3d\xb4\xb4\xfa\ +\x2c\x78\x7b\x93\xfe\x77\x80\x3f\x73\xce\xe2\x2f\xb8\x64\xd4\x01\ +\xb7\xcf\xf5\x97\x2b\xab\x2b\xe5\x7d\x4f\x7c\x51\xea\x07\xe4\xbc\ +\xb0\x47\xe5\x72\xdc\x77\x42\xf5\xc3\x1f\x6b\x9f\x88\xc7\xbc\x54\ +\x65\x5e\xef\x51\x12\xd2\xf9\x03\xa9\xb6\x2e\xe8\xa9\x2c\xf8\xc9\ +\xac\x8e\xd4\x66\x10\xf8\x63\x51\x8b\xca\x74\x91\x55\x75\x63\x97\ +\x4b\xd4\x98\x73\x04\x14\x4d\x6f\x4f\xfb\x46\x09\x80\xd3\x7b\xfa\ +\x9e\x47\x1e\x2a\xf8\x95\x1f\xcc\xe3\x0e\x21\x90\x82\xf9\x9e\xb5\ +\x6e\x58\x01\x2e\x48\x0d\xd1\x8b\x0b\x94\x09\xcb\xeb\x0d\x9a\x3f\ +\x0a\x20\xb5\xf7\x99\xfd\x50\x13\x0b\xe1\x82\xd4\x55\x84\x92\x0c\ +\x00\x64\x2f\xac\x5c\x40\x8d\xfd\xf0\xf3\x01\x36\xec\xab\xea\xde\ +\x35\xba\xdc\x0d\xc1\xed\x26\x43\x55\x93\x9d\x61\xd1\xbe\x8e\x51\ +\x14\x98\xe3\x75\xd1\xde\xec\x11\x95\x2c\xb1\xf3\x4d\x3a\x35\x99\ +\xae\x7d\x51\x03\x2a\xcf\xaf\x25\x9a\xa9\x1b\xa9\x2c\x86\x32\x22\ +\xe4\xfa\x30\x17\x01\xd9\xf5\xb0\x67\xc2\x1e\xe4\x38\xca\xb2\x49\ +\xa1\x13\xf7\x00\x3e\xda\xfc\x65\x55\xf7\x4f\x8d\x5a\xa9\xcd\x74\ +\x13\xa3\x92\x0d\xf6\xd0\x5d\x0d\xc2\x68\x79\x23\x7d\x65\x73\x74\ +\x38\x4e\x5d\x86\x38\xf6\x54\x58\xd0\xc7\x18\x68\x75\x84\x48\x1f\ +\x20\xb5\xdb\x54\x31\x87\x06\xab\x2c\xc0\xd1\xad\x5a\xe7\xb6\x3a\ +\xfb\x9b\x08\xe3\xaa\xa6\xf6\x58\x9b\x3b\x8c\xe3\xed\xbb\x9a\x91\ +\x43\x7a\x9f\xc3\xed\x8c\xe7\x98\x28\x78\xac\xd4\x4a\x1d\x15\x25\ +\x53\x33\x9a\xae\x05\x49\x8a\x55\x01\x33\xb5\x46\x3b\x46\x8e\xe4\ +\xb2\xb3\x87\x50\x4e\xee\x5f\x9f\xa5\xc3\x3e\xe7\x8c\x8f\xd9\xcd\ +\xd7\x50\x5c\x91\x5a\x8f\x51\xd7\x9b\x86\x2c\xa8\xdd\x6c\xa0\xf9\ +\xb1\x45\x40\x0e\xf2\x80\x1a\xe8\xc7\xdb\xc7\x16\x9f\xcb\x56\xd1\ +\xc6\xc4\xec\xa8\x54\x97\xf9\x42\x04\xc8\xda\x8e\xbc\x7a\x9e\xe2\ +\x33\xdd\x78\x1d\x55\x3f\x08\xd7\x6f\xac\xcb\x33\x4f\x7e\xb6\xdc\ +\x7f\xf4\x00\xac\x0a\x12\x1c\xb5\x0f\x0b\x16\x2c\x58\xb0\xe0\xd6\ +\xb0\xbc\xa1\xb6\x60\xc1\x82\xbb\x1b\xcd\x22\xb0\xc3\x3e\xdf\x25\ +\xa1\x3e\xc4\x49\x90\x45\xec\xd5\xcd\xa6\xbc\xff\x27\xbf\x5e\x6e\ +\xec\x1e\x2a\x6f\x1f\xcb\x22\x58\x88\x58\xd2\xe2\x61\x10\xfe\x7f\ +\x1a\x6a\xde\x4c\x63\xa5\x8c\x5a\x7e\x38\xe1\x22\x1f\x8a\x98\x29\ +\xfa\x3e\xb0\x16\x4b\xb4\x57\x1f\x15\x11\x54\x1a\x4b\xa7\x55\xd4\ +\x48\xa9\x21\x66\x62\x92\xb3\x99\x18\x8d\x67\xf4\xaf\x63\x0f\xb8\ +\xf1\x55\x6b\xf0\x25\xff\x28\x6d\xe4\xcb\x3c\x97\xc3\x06\x41\x4b\ +\xa2\x0d\x11\xb1\x02\x15\x3d\x4e\xda\x31\x1f\xc7\x45\xda\xd5\xa3\ +\x21\x62\x8a\x51\x8e\xf8\xd9\x2d\xe5\x00\x99\x02\x85\xba\xd5\x59\ +\x66\x2d\x07\x13\x9f\xb7\x50\x9f\xed\x9f\x48\xd9\x4f\x2b\x0d\x03\ +\x78\x08\xd1\x92\xd4\x85\xad\xe4\x37\x17\xaa\xe6\xb0\x64\x19\xed\ +\x69\xd5\x82\x06\x21\xa2\xb6\x15\x00\xc2\xa0\x32\x1c\x1b\xcf\x93\ +\x83\x27\x89\x2e\x0a\x1f\xd9\x9a\x12\xf5\xbe\xf2\x4e\xe1\x22\x7d\ +\xc8\x31\x87\xc6\x5d\x0a\xd7\x8d\x8d\xd3\x6e\xca\x27\x10\xab\x1f\ +\x63\xa0\xb9\x43\x07\xea\x31\xa2\x91\x0a\xae\x1e\x91\xed\x1c\x6e\ +\xae\x37\x93\x69\x57\xd1\xea\x48\x58\xd3\xa4\xb8\xf6\x02\xec\x60\ +\x2e\xad\x9a\x20\x16\xdd\x02\x48\x8c\x76\xb4\xf5\xcc\x9c\x60\xce\ +\x99\xec\x99\x32\xa1\x77\x06\x1f\x36\xa2\x0b\xec\xa8\x44\xc3\x9f\ +\x43\x10\x40\x1e\x1c\x3f\xcf\x31\x71\x64\xec\x75\x06\x9c\x95\x8e\ +\xd2\x39\x31\x6e\x27\x0e\x2b\x6a\x14\x69\x80\x7f\x3d\xed\x46\x19\ +\x08\xfc\xbd\x09\x5f\x27\xa1\xca\xcf\xb6\xec\xca\x0f\x76\x0f\x96\ +\xfb\x1e\x7d\x6f\x79\xf7\x27\x3e\x5d\x36\xf8\xc4\x9a\xf5\x8c\x9f\ +\x50\xd2\xe0\xb3\x71\xf1\x9d\x39\x1c\x77\xa2\x8d\x1f\x35\xf8\x98\ +\xa1\xa6\xcc\x03\x6f\xa7\x87\xbe\xa6\x3d\xf3\xe4\xa7\xcb\x7a\xf7\ +\x40\x29\xc7\x9b\xb2\xda\xc8\x39\x02\x9e\xd8\x79\x3e\x99\xcc\x50\ +\xa2\x4a\xe0\xe1\x4a\xf1\xf3\xa5\xa2\xd7\x67\x60\x27\x6c\x9e\x3d\ +\x34\xb2\x7e\x1a\x06\xd0\xfc\x95\x43\x88\xea\xd1\xad\x17\x92\x66\ +\xe9\x7b\xe1\x6b\x03\xcc\x07\x19\xdc\x83\xce\x96\x12\xb6\x32\x20\ +\x7a\xe4\x16\xd9\x76\x43\x69\xd8\x98\x0e\x24\x31\xe0\xbc\x5a\x27\ +\x16\x44\xd8\xdc\xee\x2e\xb3\x3b\x54\xd4\xc8\x2c\x3b\xbc\x7f\xec\ +\x9b\x14\x3f\x46\xaa\xe3\xa8\x89\x80\x03\x68\x73\x1d\x8a\x35\x6a\ +\x8a\x8e\x93\x89\xb1\x8f\x04\xed\x3a\x87\xa8\xaa\x02\xd6\x59\xfa\ +\xc6\x9e\xb5\x45\xa2\x07\x32\xc8\xa5\x16\xd5\xa5\x02\x8b\x66\x55\ +\xbb\x1c\x21\x23\x20\x33\xd6\xf6\x58\x42\x31\x35\xda\xa4\x6c\xc7\ +\x50\x8a\xae\x87\x45\x80\x0e\x89\x35\xf4\x76\x5e\x8f\x7e\x73\x2b\ +\x30\x21\x73\x7c\x8c\x7c\x9f\x00\xf8\x33\x27\xef\xa2\xd6\x18\x87\ +\x29\x6f\x84\xec\x77\xbe\xdb\xfa\x58\xe6\x9c\x18\xf1\x0b\xa3\x97\ +\xa9\x58\x6b\x63\x62\x77\x6c\x9f\x50\xf3\x8d\xc9\x1c\x40\xd1\x47\ +\x47\x01\xcd\xdb\x0e\xba\x14\xdd\xcf\x0d\xed\x41\x68\x2b\x0a\x74\ +\xc9\x26\x6c\x82\xec\xe7\x91\x4d\x7e\x6d\x03\x63\x5e\xed\x28\xb9\ +\xab\x5e\xe7\x66\x21\xbb\xbb\xfa\x53\xbb\x21\x08\x5c\x0e\x9e\xd6\ +\x99\x03\x31\xdb\x93\xab\x22\x75\x80\x92\xab\x66\x8f\xf8\x3e\x41\ +\xf0\x5a\x33\xe1\x86\x8e\x8f\x3d\xa1\xa9\x0b\xf0\x1c\x18\xb1\x1e\ +\x99\x9a\x46\x62\x16\xe0\x70\x9c\x7b\xa4\xe4\xfb\xb3\xb4\xbd\x48\ +\x33\x4c\x80\x8c\x49\x12\x9f\xa1\x01\x93\xf6\x37\x64\xc8\xed\x69\ +\x40\xcd\xdf\x27\xa8\x7e\x3d\x2e\x3a\x22\x28\xf1\x3a\x26\x0a\xe7\ +\x32\xda\x54\x27\xea\x81\xe4\x27\xf8\x39\xcf\x80\x0b\x83\xf0\xaf\ +\x1c\x6d\xcb\xcd\x9b\x9b\xf2\xc9\xe7\x7f\xb2\xac\x8e\xae\xe8\x37\ +\xe4\x90\x6d\x79\x89\x9a\x63\xc1\x82\x05\x0b\x16\xdc\x1a\x96\x37\ +\xd4\x16\x2c\x58\x70\x6f\x60\xb4\xfe\xcb\xeb\xc3\x3b\x0d\x59\xd4\ +\x5e\x7b\xfa\xbd\xe5\xbe\x17\x5e\x2c\x3f\x7c\x7d\x5b\x36\x1b\xb9\ +\x99\x93\xfe\xf0\x06\x1b\x6f\xaa\xf1\x0d\x35\x7d\x53\x2d\xfe\xd2\ +\x3e\x96\xb5\x42\xb4\xbe\xab\x05\x8b\x66\x48\xba\x0d\x18\x07\x15\ +\x0b\xef\x2e\xcc\x08\x88\xa8\x6f\xf8\x99\x8d\x24\x13\x93\xec\xe8\ +\x54\x6f\xbc\x71\x68\x2f\x32\xda\xa8\xb8\xd5\xc8\x66\x06\xe9\xed\ +\x4a\xcb\x6e\xb5\x00\x6f\x50\x29\x58\x3d\x05\x86\x8c\xde\x9e\xe2\ +\x7a\x5f\x03\xc9\x46\xd1\xda\x51\x59\xc6\xd6\xfc\xf1\xc6\x5f\x02\ +\x5c\xb9\xb0\xef\x71\xdc\xc6\x60\x96\x9c\x2a\xe8\x30\xe2\x58\x9a\ +\x33\xf2\x64\xb2\x02\x1c\x6f\xb3\x6d\x4e\x73\x38\x54\x72\x26\x7c\ +\x56\x44\xad\xac\x0e\xe6\xf0\x28\xc2\xba\xe0\xb6\x18\x13\xc8\x2a\ +\xd2\x16\x7e\x5a\x04\x16\x17\xf5\x8f\x20\xf2\x3e\xc7\x7e\x1f\x88\ +\xdb\x1d\x73\x10\xb7\x23\xb4\xb3\xc9\xf8\xc0\x45\x5e\xcc\x2d\xbc\ +\x2e\xb4\x84\x3d\xe0\x16\xf1\xdb\x53\x8e\xe0\xa4\xd4\xea\x12\x03\ +\x6b\x6c\x34\x97\x6e\x00\x27\x87\x61\x3f\x26\x34\xed\x1f\xb3\x34\ +\x3e\x28\xb5\x23\xcd\xb5\x64\xb2\x7b\xad\xfb\x71\x9e\x4f\x40\x63\ +\x3c\xd6\x20\x54\xce\x96\x99\x58\xb3\x06\x13\x6d\x18\x71\xcc\x17\ +\x4c\x1c\xb3\x4c\xa2\xf6\x22\x27\xde\x1f\x93\xe1\xcc\xe9\xfe\x39\ +\x46\xb9\x60\xeb\xec\xa2\x4e\x99\x32\xa3\x31\x99\x78\x50\xa3\x80\ +\xe4\x36\xfc\xca\x80\xe0\xdf\x62\xe9\xb8\xe8\x59\x7a\x53\xb6\x3f\ +\xb8\xb1\x2d\x57\x9e\xfd\x48\xb9\x7a\x74\x1f\xfd\x1e\x43\x1a\x40\ +\x7d\x80\x39\xfb\xed\x42\x74\x68\xc1\x99\x18\x1d\x1b\x1e\x78\x71\ +\xb0\x32\xc2\xe6\xb4\x3c\xfa\xf0\xbb\xcb\x23\xf7\x7d\xa0\x1c\x15\ +\x1c\x7f\xfe\x07\x35\x3d\x57\x44\xe0\x87\xd6\x44\xc0\x14\xa5\x2f\ +\xdf\x78\xe5\x0c\xc5\x60\x07\x06\x31\x90\xf5\x04\x13\x4a\xe6\xd8\ +\x7c\x04\x84\xa0\xc8\x34\x7d\x53\x46\x6c\x99\xc3\xbc\x3d\x40\x90\ +\x9c\x52\x51\xca\xfd\xf1\xf6\xb9\x55\x98\x89\x36\xf2\xa9\x29\xd0\ +\x56\x70\x43\x50\xe4\x96\xb3\x8b\x72\xc7\x45\x23\x73\x1c\xb6\xcf\ +\x22\x1b\xfd\x6d\xea\x90\x3b\x84\xdf\x2a\x15\x93\x21\xc3\x08\x7a\ +\x14\xf4\xc7\x7b\xef\x0f\xf7\x15\x2e\x5b\x9d\x5d\xa6\xb0\x9b\x16\ +\x3c\x7a\x63\x00\x2e\x3d\x0f\xdc\xd2\x6c\x06\x76\x40\x04\xb7\x87\ +\x68\x02\x8b\x0b\xb6\xf5\x8d\xfc\xca\x8a\xde\x44\x1a\xd5\x0e\x8d\ +\x95\xed\x31\x4f\x52\xf8\xf0\xe7\x55\x0a\x65\x29\x18\x4b\x0e\x8a\ +\x5a\x35\x1f\xec\x54\xad\x82\xd5\x3d\x6c\x99\xe0\x9b\x4f\x26\xf7\ +\x50\x2e\x38\x5a\x13\x66\xa4\xcd\xec\x7d\x71\x84\xdc\x13\xac\x58\ +\x77\x89\xc8\x87\x62\x36\xc7\xe8\x7c\xed\x6b\xdd\x7f\x9c\xf7\xb0\ +\x48\xc1\x2f\x45\x6c\xb4\x36\x89\xb5\x9b\xa9\x99\x12\xaf\xe5\x5a\ +\x09\x20\x69\x5e\xd6\x84\xe4\xb1\x5c\x6e\x61\x5c\xca\x0f\x81\x5a\ +\x6d\xc4\xfc\x24\x36\x66\xd2\xb4\xb2\x4d\x0f\x33\x82\xe7\xa2\xf3\ +\x50\xbb\x2c\x50\x7b\xea\x87\x21\xdb\xb9\x9d\x10\x94\xe3\x66\xe5\ +\xd7\xfd\x75\xc7\x24\x73\xc3\x13\x78\xc7\x58\x61\xe3\x63\x77\x00\ +\x84\xe7\x54\xd4\x39\x2c\xe4\xde\x98\xf4\x46\x4d\xf6\x38\x46\x52\ +\x92\xb9\x62\xc0\x9d\x43\x1b\x0f\xf6\x59\xfb\xa7\x4e\x6e\x33\x4f\ +\xc2\x26\x6d\x89\xbf\xb2\x43\x11\x40\x30\x36\x6d\xee\x73\x82\xd7\ +\x2e\xb9\x8e\x46\xec\x98\x9b\x09\xe7\x29\x33\x85\xee\x47\x54\x6a\ +\x11\xcc\xcc\xd7\x2e\x9d\x77\xe4\x85\x72\x7b\x54\xde\xfd\xd0\x87\ +\xca\x7b\x1e\x7b\x3f\xed\xcd\xcb\xdf\x82\x05\x0b\x16\x2c\xb8\x74\ +\xe0\x16\x65\xc1\x82\x05\x0b\xee\x6e\xf8\xaa\xf1\x1d\x02\x6e\xd8\ +\xeb\x8d\x09\x56\xa8\x52\xed\xd6\xe5\xfe\x07\xae\x96\x27\x3e\xf7\ +\x72\x79\xfd\xb5\x75\xd9\xe1\x09\x20\xbe\xfa\x51\x56\xaf\x98\x58\ +\x79\xf3\x8f\xc5\x2d\x17\xbe\x5a\x74\x5d\x0b\x0e\x05\x81\xe5\x34\ +\x13\xb4\xe1\xad\x72\xf0\x05\x5c\x61\x57\x43\xb0\x33\xc7\xac\x7c\ +\xd0\x90\xec\x4d\x66\xd8\xc3\xa7\x1e\xac\xc7\x81\x14\xa2\x48\x81\ +\x7c\x53\x0f\x7a\x93\x4c\x81\xb8\xd6\x0c\x6e\x97\xad\x21\x24\x9f\ +\xd9\x31\x6c\x01\x84\x9b\xd8\xcb\x0d\xb2\xee\xed\x39\x1f\x1b\xb1\ +\x35\x94\xbc\xcd\x0e\xd8\x92\xee\xe2\xb0\x4f\x5e\x77\xa8\xff\x2b\ +\x43\xfb\x91\x8e\xba\xc5\xe0\xa7\x1d\x13\x68\xbc\xc1\x17\xe4\x9c\ +\xf8\x47\xd3\x19\xd5\x07\xc9\x8b\x56\x4d\x1f\x67\xee\xa0\x52\x84\ +\xc2\x68\xd9\x1e\xfe\x94\x62\xe2\xbb\x30\x6e\x3d\xc3\x65\x02\xbd\ +\xc9\xe5\x22\x38\x6f\xec\x45\xda\x3b\x0f\xd7\x71\x56\x4c\xdb\x07\ +\x39\xd8\xae\x40\xe4\xb1\x57\x83\x9b\xdb\x87\x78\x32\xb3\xf8\x09\ +\x9b\x21\xa6\x38\xb7\x47\xfe\x7c\x52\x51\xae\x39\x7b\xf6\x28\x1a\ +\x98\xb3\x6b\x2e\xf1\x76\x84\x11\x3f\xdb\x72\x8f\x5a\xb4\x91\xfd\ +\x35\x3b\x4d\xec\xfe\xc4\x1b\x35\x9e\x21\x7e\x50\x48\xcb\xdc\x90\ +\xc3\xdb\xf8\x33\xd5\xc1\xb9\xbe\x81\xb2\x60\xed\x67\xbf\xcc\x6c\ +\x7d\x09\x41\x9a\xfa\xdd\xc2\x1a\x13\x8f\x14\x95\xb1\x31\x30\x5e\ +\x67\xbb\xfa\xda\x27\xe0\xeb\x87\xfe\x91\x89\xfe\xef\x51\xfd\x1c\ +\xd0\xcd\x93\x4d\x79\xf3\xc6\x51\x79\xfa\xd3\x5f\x2c\x57\xaf\x6d\ +\xca\x26\x1e\x20\x23\x52\xa4\xdc\x69\x47\xb6\x8d\xfc\x80\xf7\xc9\ +\xeb\x39\x9c\xe5\x5f\x70\x31\xf4\xe3\x8f\x9a\xc7\xca\x0c\x71\x6e\ +\xec\xca\xb5\x6b\xd7\xca\xc7\x9e\xff\x4a\xb9\xba\xbb\x4f\xe6\x20\ +\xf1\x63\x22\x3a\xf5\xaf\x6a\x96\x8a\x73\x8a\x9c\xe9\x54\xc5\x00\ +\x0a\x2d\x09\x30\xb0\x02\xa9\x7a\x2b\x67\x72\x25\x1b\x10\x01\x8f\ +\x26\x60\x1b\x29\x5e\xed\x36\xc7\x50\xd3\x1a\x20\xad\xe3\x0d\x21\ +\x2e\xf5\xd4\xab\x15\x6c\xcd\x24\x19\x35\x11\x51\x25\x45\x64\xf4\ +\x00\xbf\xe6\x26\xf0\x16\x04\x89\x0b\x81\x55\x06\x0c\x6e\xb3\x3a\ +\xab\xc1\xf7\x1a\x02\x1d\x51\xd9\x06\xb5\xb4\x18\x46\x54\x22\x30\ +\x81\xf6\x87\x66\x98\xa8\x01\xb1\x47\x0a\x77\x18\x87\xc5\x3a\xe0\ +\x2e\x8c\x9a\xf7\x89\x0f\x8f\x91\x83\xaf\x4b\x36\x16\xb2\x71\x6e\ +\x15\x04\x1e\x63\x1b\xd4\x8c\x71\x8e\x1a\x74\x93\x6d\x06\xdd\x17\ +\xeb\x6f\xf0\x74\xe6\xf4\xbd\xb0\x1e\x98\xbf\xd2\xb0\xa9\x73\xac\ +\xd7\x80\xc8\xbe\x7f\xd9\x9c\xec\x39\x7b\x0b\x70\x50\x29\xd7\x7f\ +\x5c\x57\xe7\x5c\xac\xc0\x29\x4d\x91\x0c\x8c\x37\xfd\x60\xb4\x01\ +\xde\x2a\x6c\xb4\x36\xe3\x96\xfd\x0e\xe3\x51\x4a\xb0\xfd\xaa\xd6\ +\x76\x7f\xb8\x95\x0d\x19\xae\x80\x83\xf6\xd4\xc0\x5a\xa5\xda\x6a\ +\xec\xa3\x6c\xb4\x72\x5d\x58\x26\x32\x3c\x62\x05\x14\xaa\xae\xb5\ +\x6c\x49\x84\x28\xbe\x70\xc2\x8e\x5a\x55\x22\xcb\x09\x11\x03\xb8\ +\x9c\x6c\x14\xb1\xc9\xbc\x80\x19\x7b\x9f\xe8\x6a\xf2\xfd\xa3\x32\ +\x69\x2b\xab\x40\xd5\x55\xe2\xd6\x8d\x0d\x19\x4a\x36\xa4\x23\xda\ +\xf0\x04\xbd\xee\x86\xa1\x3d\x1d\x23\xaf\x29\x4c\xc8\x0d\x86\xa9\ +\x12\x90\xd5\x33\xef\xcf\xd4\x22\xed\x95\x22\x82\x45\xb0\xc1\xcc\ +\xf3\x35\x50\x67\x04\x14\xf3\x35\xaf\x21\x8a\x76\xe6\xe8\xd0\xa6\ +\x6c\xd5\x50\x44\x58\x4b\x06\xfe\x55\x12\x3e\xdd\x8f\x47\x0f\x6b\ +\xbe\x5e\x6d\x8e\x6e\x96\xb7\x7f\x70\x54\x3e\xf5\xc2\xcf\x0a\x61\ +\x93\x62\x66\xda\x5b\xb0\x60\xc1\x82\x05\xb7\x0c\x3c\xed\x5d\xb0\ +\x60\xc1\x82\xbb\x07\x79\x05\xe9\x6b\xd3\x77\x18\x7a\x6b\xa2\x1d\ +\xa9\xdd\x59\x95\xab\xb2\x7d\xf2\xc5\x17\xcb\xcd\x87\x9f\x2e\xaf\ +\xdf\xb8\x59\x8e\x56\x47\xb2\x7e\x06\x17\x37\x58\x52\xd6\x1b\x7e\ +\x5a\x8d\xb2\x94\x8d\x2f\xc4\x99\xce\x6e\xb3\xd5\x14\x89\xd5\xc7\ +\x0c\x6a\xf0\x06\x59\x63\xe3\x86\x04\x33\x79\xaa\x21\x07\x70\xf3\ +\x8c\xbb\xa2\x66\x9a\x80\xae\xf9\x04\xdd\x3d\x46\x85\xd9\xb5\xda\ +\x93\x7f\x04\xa7\x37\x61\x32\x7e\xd4\x6b\x5f\x20\xf9\x57\x64\x28\ +\x4c\x22\xa5\x8e\x37\xd4\xf8\x3a\x9e\xd8\x0a\x42\x70\x58\x8c\x81\ +\x0f\xdc\xd2\x0e\x32\xad\xa9\x6e\xcd\xcf\x0f\x72\x6c\x85\xb6\x9b\ +\x7d\x94\x19\x27\x9b\xe4\x70\x53\x86\xe7\xcd\xf1\x0e\x3e\x64\xe2\ +\x9b\x69\xe6\x75\x31\xa9\x7c\x28\xa5\xea\x3c\xba\x36\x01\x8f\xf1\ +\x74\xb9\xdc\x2b\xb8\xcc\x7e\x5f\x24\xc7\x45\xf8\xfb\x63\x70\xbc\ +\xb5\x02\x9c\x7f\x56\x3b\x53\xbf\x5b\xa4\x96\x5f\x3d\xc5\xfd\x24\ +\xd0\x73\x55\xdf\xa3\xc5\xc6\xb9\xee\x17\xf8\x49\x9f\x4c\x8a\xb3\ +\xce\xb5\x9a\x2b\xcf\x1b\x2e\x8e\x62\xa7\xf3\x8b\x19\x46\x64\xb1\ +\xe5\x2e\x35\x14\xf3\x4d\x6c\x8d\x41\x20\x3a\xaf\xfb\xde\x3e\x07\ +\x9b\xe3\x89\xc9\x78\x00\x7b\x72\xd1\x6e\xce\x33\xdb\xdb\x43\x38\ +\x33\x76\x8c\x61\x77\x09\x49\x18\xce\x69\x72\x5a\x64\xc3\x33\x25\ +\xb9\x79\xce\xa0\xc0\x6c\x76\xbc\x3e\x62\x8c\xf5\xff\x8d\xea\xb9\ +\xb5\x13\xe2\x1b\xc7\xbb\xf2\xd0\xbb\x9f\x2f\x8f\x7c\xf8\x23\xe4\ +\xc5\x1f\xa5\x30\x58\xab\x7d\x3d\x3c\x13\xfb\x42\x99\x7b\xc1\x1d\ +\xc3\x64\xbc\xfd\x4d\x87\xe3\xf2\xec\x13\x9f\x2d\x0f\x5e\x79\xbc\ +\x6c\x4f\xae\xf2\x9c\xe1\x5b\x4f\x72\x7e\xe0\x5c\xd2\xd7\x5f\x8d\ +\xa8\x49\x60\x50\x23\x2d\xee\x87\x42\x03\xce\x37\x11\x9c\x3e\x82\ +\xf9\x7c\xde\x73\x2a\x6a\xb6\x19\x80\x05\xba\xd6\x7e\x4e\xf7\xd3\ +\x5f\x8d\xc0\xf9\xdd\x6a\x1a\x22\xb5\x07\x09\x28\x69\x63\x84\x66\ +\x57\x98\x29\x09\x1d\x3c\x06\xb5\x14\xbd\x66\xf6\xcf\xbb\xfd\x70\ +\x84\x0c\xa1\x73\xba\xda\xc7\x34\x0a\x7d\x8d\x37\x50\xe3\x12\x03\ +\x82\x38\x38\x36\x32\x0e\xf1\xc7\x1a\x75\x43\xe4\x71\x01\x5b\x3d\ +\x69\xdc\x59\xdb\xf1\x75\xd4\x06\x2b\x8f\x9b\xcc\xb1\x5a\x04\x1d\ +\xaf\x6a\x42\x9b\x41\x15\x41\x7b\xa9\x6d\xbb\x4c\x05\x32\x8f\xa1\ +\x17\xf5\xfb\x8f\xfb\x78\x9c\x3d\x9f\xf1\x32\x72\xb7\x1c\x3c\x0f\ +\xe1\x70\x27\x75\xc4\x6a\x6e\x85\xd7\x02\xfa\x55\x24\xa8\x4f\x0c\ +\xa9\x8c\xe0\x7d\xdb\xc7\xe9\x21\x3c\xee\x5f\xdd\xaf\x26\x12\x6e\ +\xdd\x54\x3d\xc9\xcd\xfe\x65\x88\x3d\xf6\x93\xbc\x1d\xc7\xc4\xce\ +\x12\x6e\xdb\xd7\x69\x51\xa0\x33\x9f\xcb\xd5\x84\x63\xcc\x1e\xc2\ +\x30\x80\xb6\xa6\x2d\xe6\x51\x70\x50\xc6\xc6\x0b\xd0\xd7\x1d\x2a\ +\xd5\x33\xcb\x36\x71\xab\xac\x5e\x4a\x21\x74\xb5\x03\xba\x94\x1a\ +\x61\x30\x35\xec\xee\xee\xd4\x89\xee\xc8\x04\xfe\xd6\xe3\xe9\xc8\ +\x94\xa6\x8e\x3f\x7c\xe9\xd0\x1b\x1b\x7d\x18\xd1\xe2\x00\x0a\x30\ +\xed\x69\x0b\xa4\xf1\x54\x23\x6e\x34\x33\x6c\x0f\x46\x8b\x8a\xe0\ +\x9a\x45\xcf\x41\xd9\x58\xec\x6c\x8a\xec\x09\xba\xd9\xac\xea\xfb\ +\x96\xcf\x6f\x7d\xe3\x4e\x18\x72\x9d\xf1\xa1\xad\xd4\x38\xd6\xf8\ +\x39\x3d\x95\x6b\x03\xcf\x18\xf0\x02\x79\x7a\x24\x2f\xa1\x27\xe5\ +\xfe\xcd\xa3\xe5\x43\xcf\x7e\xae\xec\xc8\x03\x7f\x9a\x7f\xc1\xdb\ +\x8c\x79\x8c\x00\x00\xff\xf4\x49\x44\x41\x54\x82\x05\x0b\x16\x5c\ +\x1e\x96\x37\xd4\x16\x2c\x58\x70\x77\x61\x6e\xe5\x37\xb2\xa7\x45\ +\xe7\xe5\xa3\x36\xa8\x52\x6e\x4c\x2c\x50\x77\xab\xf2\xc0\xbb\xdf\ +\x53\x1e\xff\xe8\x8b\xe5\x2f\x5e\x7d\x5b\x6c\x58\xd8\x8a\x43\xee\ +\x8c\x70\x13\x87\x0f\xa8\xe9\xff\x54\xc3\xd2\x57\xa0\x2e\x0a\x35\ +\x3b\x8c\x96\xcf\x80\x87\x48\xf8\xe7\xc4\xf5\x89\x64\xde\x0a\x51\ +\x15\x22\x89\x03\xa0\x1d\x61\x70\xb1\x6d\xa6\x3d\x00\x65\x2f\x2d\ +\xfa\x08\x21\x75\x58\xe0\x71\xad\x35\x21\x25\x6e\xd2\xa4\x1a\x43\ +\x47\xda\x6c\x92\x69\x6c\xaf\xb3\xce\x72\xae\x05\xd9\xcd\x71\xcf\ +\xb5\x80\xbe\xc4\x77\xd9\x8f\x9b\xd6\x8a\x90\x07\xfc\xb4\xbb\x6a\ +\x92\x8d\xd7\x40\xfb\xb5\x93\x59\x16\x8a\x71\x22\xa8\x75\x07\x82\ +\x16\xc0\x79\x66\xe7\x9a\xc7\xa0\x96\x52\x53\x68\xd4\x34\xd6\x30\ +\xeb\x10\xcc\xf8\x60\x1e\x95\x16\x53\xcb\xed\x40\xdf\x87\x5c\x6e\ +\x05\xb7\x92\xeb\xbc\x31\x87\xf3\x95\x75\x18\xbf\x3d\x77\xa7\xb0\ +\x13\x65\x08\x3b\xa7\x08\xe1\x58\x22\x65\xeb\xcd\x7d\x8b\x4e\xa7\ +\xda\xe7\x16\x63\x98\xfa\xf8\x79\x04\x33\xed\x4c\x6d\x1f\x09\xdb\ +\x76\x26\x99\xfb\x41\x70\xd5\x6a\xad\x2c\xc7\x24\xd8\x30\x67\x4f\ +\xed\x67\x4a\xdb\xa3\x8a\x71\x9a\x39\xb6\x00\x01\x5e\x3a\x4c\x8f\ +\x41\x06\x72\xee\xf1\xd3\xd5\xf9\x5d\x4d\x66\x88\xaa\xa2\x35\xfd\ +\xc1\x2f\xf3\xfb\x43\x1f\x81\xdb\xf9\x35\x7d\xf8\xd4\x36\x2c\xa0\ +\xa8\x53\xa0\x0f\x7a\x94\x2d\x2f\xa3\xbb\x93\xf2\xda\xf1\xa6\x3c\ +\xf3\xf9\xaf\x96\xa3\x4d\xfa\x5c\xae\x13\x02\x0c\xae\x70\xb5\x33\ +\x9f\x1b\x93\x76\x16\xdc\x76\xa4\x31\xf7\x73\x03\xab\x95\x47\xae\ +\x3e\x56\x9e\x7b\xea\x4b\xe5\xbe\xcd\x7d\x65\xbb\xde\x8a\x0f\x56\ +\x39\x23\xec\x18\xe3\xff\xe9\xd5\xd0\x7c\xe0\xb2\x3c\x82\x25\x98\ +\x3b\x57\x38\x2f\xe8\x7a\x29\x67\xaa\x74\xb5\xba\xcf\x1f\xee\x2b\ +\xfa\xa4\xfb\x7c\x03\x4b\x63\xd0\x16\x68\xc2\x86\xc5\x5b\x83\x2f\ +\xf5\xae\x89\x73\xd4\x87\xa8\xa9\xaa\xd3\x5e\xaa\x21\x52\x35\xd9\ +\xc4\x90\x15\x6e\x49\x0c\x53\x3d\x27\xab\x6a\x26\x74\x38\xcd\x92\ +\xd6\x3a\x9c\x26\x02\xe6\x77\x91\x1b\xe1\x5a\x62\xf3\x28\x22\x87\ +\xf9\x9c\x63\xf6\x34\x2a\xc2\x10\x9f\x07\x5b\xcd\x2a\x99\x1b\xc0\ +\x68\x3e\xc6\x62\x0c\x83\xe8\x63\xaf\x76\x7d\x68\x22\x2c\x1a\xe5\ +\x7c\x89\x7d\x44\x05\xae\xf2\xf9\x15\x8d\x22\x44\xbf\x32\x8d\x06\ +\x81\x0b\xb0\xbb\x03\xb2\xd9\x08\xaf\xdd\xd1\x97\x7d\x18\xf1\x59\ +\x64\x93\x1b\x64\x41\x85\xb1\xaf\xe3\x6c\xd6\x4a\x61\x49\x0a\x2a\ +\x47\x32\x6b\xc9\x4e\xe4\xf4\x22\xe0\x38\x89\xdf\xb9\x40\xaa\x5d\ +\x0c\x18\x0f\x2f\x25\xde\x3c\x2b\xd7\x79\x52\xa1\x60\xab\xed\xf8\ +\x71\x08\x3b\x2b\xd9\xa8\xea\x55\x15\x50\xc3\x4d\x3d\xbc\x8d\x08\ +\xb8\xea\x34\xd4\x61\x73\x9d\x06\x57\x20\xd7\x9a\x1c\xca\x6e\xa8\ +\x22\x90\x44\x62\xa8\xcb\xc6\xeb\x0a\x37\x2a\x54\xc4\x56\xc6\xa3\ +\xe1\x25\xf4\x76\xea\xd8\x48\x31\xdf\x98\x62\x9c\x89\x77\x0e\xf5\ +\x5c\x1a\x46\x74\x46\x3b\x4b\x88\x2c\x4f\x20\x71\x1a\x3a\xcc\x6a\ +\xa8\xf3\xf9\x88\xd5\xce\x47\x0a\x98\x5a\x73\xfb\x9a\x90\xf3\x85\ +\x5d\x94\x71\x5f\xa7\xd6\x1c\x93\xdd\xd1\xa6\x08\x90\xdd\x8d\x7b\ +\x45\x95\xcd\x81\x59\x08\x1d\xc7\x9b\x69\x50\x05\xfc\x3f\xb3\xe5\ +\xb8\xdc\x7c\xfb\xa1\xf2\xe1\x67\x7f\xaa\x5c\x5b\x1d\x95\xad\x39\ +\xf5\x9a\x50\xc9\x12\x2c\x58\xb0\x60\xc1\x82\x4b\xc4\xf2\x86\xda\ +\x82\x05\x0b\xee\x5e\xe4\xb5\xdf\x68\x1d\xe8\xeb\xc4\xdb\x82\xb6\ +\x41\x5d\x52\x77\x9d\x58\xaf\xcb\xb5\xf5\xfd\xe5\xb1\x4f\x7c\xaa\ +\xbc\xfa\xfa\x51\xb9\x71\x7a\x5c\x56\x6b\xbd\x99\xe3\xd7\x59\xd9\ +\x5f\xe1\xe3\x06\x84\x6f\xb0\x59\x01\x3c\x13\xef\x5f\x61\x93\x38\ +\x00\xeb\x62\xf8\x90\x05\xf1\x19\xc6\xa0\x0f\x44\x5f\xe6\xeb\x56\ +\x00\xc1\xe2\x1d\x6c\xff\x0c\xe4\xdb\x05\xb0\xe3\x9e\xfa\x10\xa4\ +\xf4\xb6\x6b\x82\xb6\x07\xe9\x7e\xb7\xa2\xd7\xf7\xa0\xa1\x8a\xa2\ +\xba\x59\x07\x79\x78\x6f\x61\x68\x63\xcd\x31\x89\x99\x8e\x52\xdd\ +\x97\xf3\x42\xdb\x38\x2b\xbc\xed\x57\xae\x24\x3e\x75\x93\x36\x6c\ +\xd2\x3e\x65\x58\x68\x85\x18\x40\x8d\x38\x03\x44\xec\x53\x32\xa9\ +\xcd\xca\x04\xbd\x71\x48\xda\x8f\x9c\xff\xac\x92\x31\xf2\x1f\x5a\ +\x6e\x07\x2e\x9a\xf7\xbc\x7d\x3a\x0f\x7f\xc2\x9b\x39\x3f\x1c\xce\ +\x3f\x4f\x7f\x14\x48\x9c\x92\x23\x01\x27\x29\xcb\x24\x95\xcf\x1f\ +\x9e\x5b\x35\x8b\x11\x23\xec\xee\xab\xc8\x39\xf5\x81\x41\xc0\x95\ +\x69\x90\xc1\xaf\x57\xd9\x42\x60\x3c\x64\x0f\x48\xb9\x1d\xee\x82\ +\x8f\x72\x18\x02\x13\x0b\xd3\x38\x7f\x8a\x68\xc5\xe6\x15\xed\x55\ +\x22\x8b\x98\x43\x83\x6f\xa0\x3e\x93\x9b\xf0\x74\x23\xce\x6c\x9c\ +\x3b\xfa\xd6\x2a\x6a\xa8\x49\x42\x1d\x47\xcd\x36\x42\x80\xab\x0c\ +\xd9\x73\x0a\x3a\x02\x7c\xb8\x63\x93\xbe\x73\xf8\xba\x17\xe7\x8c\ +\x1c\x2f\xf1\xe3\xaf\xaa\x6f\xae\xd6\xe5\xed\xdd\xd5\x72\xe5\xa1\ +\xf7\x95\x47\x3e\xf5\x52\x79\x90\x0f\x89\x52\x2f\x98\x50\x45\xca\ +\x23\x24\xfa\x04\x23\xdf\x5c\x9e\x05\x77\x10\x72\x60\xe2\xb8\xda\ +\x79\x53\x8e\x78\x6e\x3c\xf7\xf4\xe7\xcb\xc3\xeb\x47\xcb\x06\x7f\ +\x91\xc4\x37\xd5\xe0\xc4\x06\x6f\xb5\xe6\xba\x43\x98\x18\x60\x45\ +\x0f\xb7\x1e\x72\x3f\xf0\xf5\x04\xf0\x90\x60\xe3\x1c\x1d\x2c\x58\ +\xea\xa7\xa0\xa4\xa6\x08\xb6\xd9\xdc\x64\xe0\x59\xdf\x18\xb4\x15\ +\xad\x40\xd6\xfd\x65\x8e\xcc\x13\x85\x9e\xc6\xe6\xf0\x18\x43\x52\ +\x54\xec\x83\x44\x97\xdf\x66\x57\xd4\x54\x91\x7d\x84\xf5\x07\xfb\ +\x9a\xed\x22\xa3\xeb\xf1\x49\xb2\xe4\xcc\xb4\x50\x8c\x5f\x21\x06\ +\xee\xbc\xef\x1f\x4a\x54\xea\xc7\x16\x1c\x1f\xe7\x5c\xd1\x26\x91\ +\x52\x99\x99\x88\x11\xa1\x5b\x73\xbb\x9f\xb5\x6c\x5c\xd7\xfe\x24\ +\x83\xd5\xa8\x72\x1e\x77\x03\x31\x67\xd1\x28\x2c\xf6\x43\x55\xe6\ +\xa3\x0b\x1b\x29\x3e\xd0\x38\x67\xc9\x50\xe0\x5c\xf0\x59\x90\xa3\ +\xc7\x1c\xda\xa2\xb2\xcc\x2e\xd0\x48\x95\x09\x8a\xb0\x38\xd3\x4c\ +\x19\x6e\x34\xc7\xc4\xdf\xa1\xf1\xe7\x58\xeb\x17\x0b\x8f\x83\xcc\ +\xc2\x6e\x0a\x98\x32\xb1\x3b\x74\x94\xab\x33\x93\x74\x3f\x18\x2a\ +\x6d\x31\x37\xad\xb5\xe8\xa6\x03\x6d\xf8\x14\x14\x04\xcf\x2f\x30\ +\x2e\xed\x3c\xb7\x76\x22\x69\x9f\x95\x0b\x40\xa1\x21\x6a\x8a\xdc\ +\x52\x50\x59\x8d\xbe\x51\x78\x9c\x89\x2a\x78\x51\x83\x9b\xc3\x8e\ +\x8d\x1b\xc3\x29\x48\xe6\x06\xd9\xee\x82\xd9\xfc\x5c\x83\xc6\xae\ +\xb8\xda\x81\x3e\x0a\x54\xa3\x8e\xf1\xf5\x40\xa9\x20\x99\x46\xc4\ +\xbe\xef\x81\xe7\x21\x44\xf6\x23\x10\x47\x02\x7e\x2f\x1d\xaa\xb9\ +\x1e\xb7\x74\x04\x1b\x34\xe1\xa6\x0c\xb9\x41\x14\xaf\xfe\x9e\xc1\ +\x33\x88\x3e\xe4\x05\xfc\xfa\x34\x56\x17\x1f\xaa\x8d\x27\x5e\x0f\ +\xc0\xcc\xb4\x2a\x8b\x34\x6a\x4c\xcc\x99\x4f\x98\x01\x55\x1f\x92\ +\xaf\x11\x3d\xaf\xb1\x32\x82\x06\x45\xa4\xd5\xae\xec\xd0\x1f\xae\ +\xb7\xd6\xf2\xea\x29\xaf\x8b\xc7\xd7\xca\x47\x9f\xff\x2a\xbf\x02\ +\x12\x57\x4d\x9b\x73\xd4\xa9\x05\x0b\x16\x2c\x58\x70\xab\x58\xde\ +\x50\x5b\xb0\x60\xc1\xdd\x05\xac\x17\x33\x5c\xbf\x2b\xd6\x82\x58\ +\xce\xa6\x0e\xc9\x2a\x77\x75\xba\x2d\x0f\x7f\xee\x13\xe5\x91\xe7\ +\x3e\x5a\x5e\x7d\xfd\xed\x82\x3f\x0b\xe3\xe2\x57\x16\xba\xbc\x0d\ +\xc4\x1b\x6b\xb2\xb8\xe5\x8d\x8d\x14\x8d\x97\x22\xe1\x5c\xbb\xc3\ +\x4e\xc8\xe2\xd7\x45\x59\x1c\xeb\x5f\x66\xdb\x4e\x83\x2b\x15\xf8\ +\x6a\x31\x0f\x36\x2c\x1e\xa8\xbc\xac\x3b\xa5\x0a\x2d\xd4\x24\x6d\ +\x89\x10\xcd\xa7\x3a\xfa\x40\xf8\xad\xff\x14\xad\xdd\x62\xc4\x98\ +\xa3\x5b\x58\x44\x9f\xd0\xf5\x3e\xb6\xe7\x01\x89\x3b\xad\x35\x3a\ +\x1e\x84\xb9\xcf\xec\x31\xec\x84\xef\xa5\x6c\x93\x5d\xc5\x86\xa8\ +\x10\x93\x5b\x07\x5e\xb1\xf5\xd6\xba\x27\x23\x7e\x34\x4b\xda\x80\ +\xe1\xe1\xa8\x29\x9b\xc1\xaa\x3e\x82\x3a\x36\x1e\x47\x88\xd2\xe8\ +\x09\xc2\x05\xbd\x1d\x93\x3b\x0b\xb6\x6f\xe5\x9d\x46\xee\xcb\x79\ +\xfb\x73\x91\xb8\x8b\xb4\x03\x60\x3e\x38\x24\x2e\x38\x7c\x28\x4d\ +\xc1\x4a\xc5\x21\x7d\xc8\xe7\x07\xde\x0c\xd1\xdb\xf5\x2e\x4a\xe6\ +\x1e\xb5\x58\x1d\xcd\x0c\xb2\x73\x02\x94\xc2\xb9\xee\x0c\x34\xe1\ +\x99\x8d\xf8\xd6\x32\x3a\x91\xa7\x16\x89\xe8\x8c\x4d\x0e\xfa\x5b\ +\x4b\x0f\x84\xd7\x4f\x9a\x8a\x36\xe0\xd3\x22\x2e\xd4\xcd\x5e\x82\ +\x6e\x62\x83\xa1\xb1\xcf\x6b\xa4\xc4\x4d\x53\xbe\xa2\xd3\x73\x86\ +\x3e\x1b\x50\xe7\xf9\x41\x07\xc4\xa5\xaf\x5c\xe2\xeb\xc7\xb6\x6b\ +\x98\x59\x84\xa3\x34\x7d\xbd\x64\x1c\xcd\x56\x43\x97\xdf\xed\x76\ +\x57\x36\xeb\x6d\xf9\x4f\x37\xae\x96\x87\x3f\xf6\x52\x79\xf0\xa1\ +\xc7\xca\x4d\x10\xe4\xdc\xd2\xbf\xb8\x3e\x03\x07\x50\x0e\xc6\x65\ +\xe6\x5a\xb0\x1f\x18\x6b\x9c\x0b\x7a\x3a\x18\x70\x75\xe8\x67\x13\ +\x9f\x7a\xec\xf9\xf2\xf0\xb5\xf7\x97\xa3\x9b\x57\xc4\xb6\x15\xbe\ +\xbd\x81\x26\x7c\xfc\x8d\x11\x4e\x8d\x9d\x1d\xaf\x48\x81\x73\x86\ +\x89\x73\x5a\x3d\xf3\x8c\x9a\xec\xca\x74\x3b\x21\x4e\xb2\x71\x3e\ +\xcb\x75\x5c\xaf\x55\x44\x69\xbf\x32\x98\xab\x49\x20\xca\x6a\xca\ +\xcb\x57\x40\xb4\x29\x1b\xd6\xcd\x7c\x61\x72\x4a\x4c\x31\x20\x7d\ +\xf6\x6b\x2f\x39\x28\xba\x59\x6a\x5d\x67\x42\xd3\x96\x2b\xbc\x17\ +\x14\x1b\x4f\x98\xd9\x1f\x6b\x1b\x36\x2f\xa8\xdc\x90\x6c\x2a\x4b\ +\x56\x9a\xd5\xe8\xcd\x93\x0e\x58\x5d\x5b\xc7\xa7\xbc\xb4\x0d\x6e\ +\x8d\xdf\x6c\x7d\x63\xf5\xf0\xd5\x01\x3e\xfa\x13\x3c\x8e\x48\x4e\ +\x11\x9b\xfe\xb8\x22\x95\x67\xf6\xde\x69\x85\x0d\x3c\xdd\xf1\xe4\ +\xb9\xa1\x62\xdd\x5f\x3b\x97\xf2\xb1\x0c\x1a\x04\x48\x66\x50\xa3\ +\xc9\xa6\x98\x1d\x47\x4b\x15\x95\x02\x9e\x17\x7c\xa3\x58\x15\xc5\ +\x11\x4d\x65\x27\x8a\x21\x89\x8d\xab\x97\xab\x45\xf7\xd2\x25\xf5\ +\x4d\xd1\xb0\xa3\xbf\xd8\x40\xd6\xc8\x88\x15\xc1\x47\x2a\x6c\x19\ +\x6e\x0c\xa7\xb2\xf5\x1c\xc0\x23\x2b\x29\xb2\x83\x75\xbc\x74\x4b\ +\x49\x36\xda\x07\x9d\x27\xd4\x58\x6b\x57\x09\x51\xbc\x57\x3a\xb4\ +\x49\x56\x91\x50\xd9\xfb\xa0\x5b\xd6\xce\x31\xb2\xab\x84\x29\x60\ +\x4e\xed\xd5\xd2\x79\xc7\x48\x14\xf2\xa5\xbd\x36\x8d\x8f\x66\x02\ +\x68\x24\x04\x69\x0a\x9e\xb7\x29\x76\x40\x6d\x4c\xa6\xb8\x6d\x4f\ +\xe6\xc6\xc9\x16\x38\x46\x6a\x9c\x8b\xd3\x9e\xb4\xd7\x5b\x8d\x9a\ +\x81\x39\x23\xf3\x3e\xb2\x34\x40\xb7\x71\xf2\xa8\xb5\x57\x1c\xe4\ +\xec\x55\xbd\x19\x2b\x41\x5c\xee\x29\x94\x26\xea\xb2\x1f\x24\xb4\ +\x31\x0a\x10\x52\xd0\x44\x4e\xbd\xb1\xf0\xda\x36\x8e\xaa\xe6\xc5\ +\xfa\x5b\xe7\x1c\xb3\xc9\x6b\xcf\xe6\xe6\xc3\xe5\xe9\x47\x3e\x2c\ +\xe5\xa9\x72\x8c\xff\xaf\x46\xaf\xc7\x02\xb9\xad\x05\x0b\x16\x2c\ +\x58\x70\x59\x58\xde\x50\x5b\xb0\x60\xc1\xdd\x85\xbc\xfe\x03\x74\ +\xfd\x38\x86\xaf\x0f\xef\xc8\x3a\x11\x8d\x48\x91\xdf\xa6\x3b\xeb\ +\x4d\xb9\xef\xfe\xfb\xcb\x93\x3f\xf9\x95\xf2\xca\xf7\x36\xe5\xc6\ +\x6e\xcb\x0f\x9b\xe1\xa1\x0f\xdf\x52\x93\x3b\xbb\xb5\x70\xf8\x17\ +\x63\xb8\xcb\xe3\x2f\x16\xcd\xb6\xd4\xc5\xc6\x0a\xee\x3b\xe2\xde\ +\x03\x25\xdd\xc0\x2b\xd9\x5c\x6e\x13\xe8\x52\x5f\x7e\xc4\xcf\x34\ +\x96\xab\x42\x15\xa4\xa2\xd4\xf8\x2c\xbd\xd9\x7a\xbf\x36\x93\x1a\ +\x13\xd9\x39\xed\x42\x9d\x86\x0a\xc8\xae\x67\xbb\x43\x6c\x34\x77\ +\xbe\x11\x15\xad\x44\x4b\x3d\x21\x1c\x2a\x8c\xe2\xf5\xc1\x7f\x02\ +\x95\x08\x8c\x20\xff\xea\xa0\x11\xf2\x78\x03\x76\x4b\x3b\x03\xf8\ +\x46\xb9\x72\x9b\x26\x7b\x1a\xd6\x38\x8a\xa8\xa6\xb1\xed\x79\x61\ +\x7e\xe7\xa1\x92\xd2\xdc\xbf\x79\xde\x06\x43\xa3\xc2\xe3\xbc\x76\ +\x9c\xa5\x1f\x8c\x3d\x6d\xdf\x25\x88\xe1\xa5\x76\x31\x5c\x24\xf6\ +\x76\xc7\x9c\x37\x3f\xf8\xc3\x18\x31\xf2\x4a\x92\x89\x84\xfe\xd8\ +\x4c\x4f\x12\xb5\x98\x9d\x3c\x40\x74\x93\xc3\x44\x49\xb5\xb0\x55\ +\x67\x42\x77\x0d\x27\xd0\x1e\x4e\xb4\xd9\x31\xb3\x2a\x72\xe7\x55\ +\x34\xc6\xb6\xdf\xa8\xcc\xa2\xe8\x12\x84\x2a\x17\x60\xd3\xcb\x14\ +\xcf\x6b\xb3\xbf\xe6\x33\x48\x52\x71\x4a\x68\x5a\x9f\x86\xbb\xa1\ +\xa5\x89\xde\x32\x27\x71\x13\xe8\x71\x6d\xe7\x75\x60\x1a\xe9\x4c\ +\xf7\x64\x86\x7a\x00\xe4\xa9\xb7\x18\xf8\xa3\x12\xbe\x21\x00\x27\ +\xbe\x0b\x72\x77\x5a\x8e\x45\xb9\x79\xbc\x2d\xbb\xf5\x83\xe5\xc1\ +\xcf\x7c\xae\x3c\x70\x65\x5d\x8e\xfc\x8f\x4f\x9a\xac\x97\x8c\x7e\ +\x17\x17\xdc\x59\xe0\xd0\xf2\x18\xa4\x63\x4c\x1d\xe7\xcb\x4e\xaa\ +\xab\xe5\xf9\x67\x7e\xae\xac\x4f\x8e\xca\xe9\x4e\xce\x48\xbc\x51\ +\xc5\x05\x8e\xf2\xd7\xac\xb9\xea\x11\xb6\x1d\xcc\x99\xd3\xc5\xdf\ +\x84\x02\xcb\x98\xa4\xe6\xd7\x70\xda\xb1\x11\x93\x5b\xf3\xb5\xac\ +\xfc\xda\x4e\xe4\xb2\x6b\x5a\x99\x35\x63\xbc\xf1\x05\x18\x9f\x10\ +\x19\x1e\xf5\x82\x0f\x29\xbc\x1d\xaa\x5d\x3f\xb9\xe5\x71\x8a\x90\ +\xb3\x51\x80\x28\xf4\x55\xbb\x60\x39\x20\x3b\x4f\xea\x24\xca\x46\ +\x7b\x21\x97\x9d\xec\x0e\x24\x6d\x0b\x70\x5e\x06\x72\x63\x7d\x1b\ +\x3e\x0a\x68\x07\x23\xd6\x46\xe4\x31\xf3\xda\x39\xdc\x36\x76\x17\ +\x2c\x86\xa8\x04\x1f\x03\x52\xb0\x73\x4e\x63\xff\xcd\x47\xbd\x8a\ +\x9d\x62\xb2\xe7\x82\x92\x9d\xb5\xff\x70\xb9\x8c\x8a\xc3\x92\x9e\ +\x96\xa4\x59\x8d\xdd\x40\x3e\x7e\xbd\xad\x40\xcf\x4a\x01\x73\xa8\ +\xc0\xa6\x28\xe9\xc6\x54\xb6\xa8\x00\xc7\x47\x0b\xb6\x68\x9d\xa8\ +\x53\xb9\xfa\xd4\x99\x19\xbd\x16\x4c\x2d\xb2\xf1\x3e\xc0\x40\x59\ +\x0a\xf2\xba\x19\xe8\x65\x1d\x57\x95\x7a\x54\x4b\xf2\x51\xc4\xfc\ +\xad\x7b\x42\xdd\xdd\x21\xcb\x46\x7f\x03\x21\x7b\x5b\x12\x4f\x5b\ +\xdd\x08\xd2\x01\x10\x44\xb7\xa2\x2d\x9c\xc0\xd2\x63\xa7\x47\x1c\ +\x90\x65\x41\x52\x99\x07\x06\xfc\xba\x6c\x50\x5d\x05\x97\xab\x37\ +\xf9\x01\x28\xfa\x0b\x45\x05\x2b\xb4\xa5\x9a\x32\x15\x03\x7d\xdc\ +\x98\xae\x42\xa6\x10\xe1\xf7\x2a\x84\x70\x35\xa0\xb1\x9e\x4b\x18\ +\x29\x1f\x1f\x54\x11\x13\x82\x88\x49\x86\x3d\x78\x38\x15\x50\x67\ +\x98\xbf\xd9\x76\xa4\x4e\x9d\x1a\x92\xde\xbb\xec\xc8\x0a\xcc\xd3\ +\x10\xaa\x42\x5e\x1f\x9c\x40\x97\x6c\x6a\xbe\xb9\x54\x2e\x34\x5e\ +\x41\x1e\x43\x64\xc1\x79\x06\x4b\xcf\x13\xe4\x46\x1c\xa4\x25\xae\ +\x89\x39\x5a\xc3\x74\x0e\xd2\x16\x1c\xde\x9e\x6c\xf9\x2d\x36\xc2\ +\x80\xcc\x57\xbe\x15\x5f\x0b\xf1\xc7\x25\x6b\x7c\xdd\xe3\x8d\x9b\ +\xe5\x93\x3f\xf1\xcd\x72\x74\x7a\x5f\xb9\xb2\xde\xe4\x24\x06\x6d\ +\x65\xc1\x82\x05\x0b\x16\x5c\x2e\xda\x15\xca\x82\x05\x0b\x16\xdc\ +\x6b\xc0\xa2\xf1\x4e\xae\x13\xad\x2d\x56\x58\xd8\x8a\x70\x65\x75\ +\x54\xde\xf3\xd5\xaf\x94\x93\xa3\x27\xcb\xeb\xb2\xa8\x5d\x6d\x36\ +\xba\xe8\x95\x0d\xbe\xfa\x51\xef\x52\x70\xa3\x59\x1f\x16\xc6\xcd\ +\xac\xac\x86\x59\xcb\x86\xcf\x8c\x20\x8b\x10\x7f\xa1\x6f\x55\x12\ +\x28\xe2\xa6\x95\xa9\x0c\x11\x6b\x48\x2e\x75\x98\x33\x73\xb2\xdd\ +\xa1\x6a\x35\xea\xf2\xbe\x03\xfa\x8a\x8d\x37\x92\x3b\x22\xf0\x7b\ +\x5c\x45\x52\x5a\x5a\xab\x66\x65\x4e\x16\xb8\xca\xda\x36\x55\xee\ +\x6b\x69\xdb\xf5\x04\xef\x2e\x6a\x77\x0f\xf6\x52\xd0\x06\xd7\xdd\ +\x54\x36\xd5\x96\x32\x81\xbb\xcf\xa0\x29\x12\x69\xca\xc7\x88\x4b\ +\xbb\xbc\x23\x76\xef\xa0\xd7\x30\x99\xd9\x59\x79\x3f\x87\xe8\x62\ +\x9c\xcf\x18\xb7\xef\x4d\x70\xef\xc1\xf7\x2f\xf6\xf3\x16\x70\xde\ +\x1c\x17\x69\xf7\xa2\x31\x15\xf9\xa4\x68\x33\x1d\x94\x33\xce\x11\ +\x7b\x60\x38\x80\x9f\x9a\xcc\x37\x4a\x3a\x17\x38\x87\x8e\xdf\xa6\ +\x14\xe7\xa8\x0d\x41\x6d\x7f\xd4\x60\x0d\x52\x29\xe9\xed\xc4\x45\ +\xcc\x77\x59\xc6\x21\x1e\xe6\xc5\x46\x60\xd7\xa9\x20\x32\x1b\xaf\ +\xe6\xea\x75\x87\x45\x48\xd5\x5e\x6f\x30\x68\x65\x9b\x0a\x26\x31\ +\xff\x2c\x46\xb3\x78\x0e\xa8\xb2\xbf\xec\x44\xc0\x34\x30\xe0\x4d\ +\x2b\x74\x1e\xae\x74\xbc\xee\xa9\x9b\xaf\x79\x78\xe0\x29\x5e\xbe\ +\x06\x8a\x74\xb2\xc5\x27\x8f\x4e\xca\x9f\x1d\xdf\x5f\xde\xf3\xa1\ +\x4f\x94\x67\x3e\xf8\x42\x39\xe1\x8b\x18\x0a\xe2\x65\x03\xe2\x59\ +\xa8\x0d\xde\x59\xbc\x53\xed\xfe\xa8\xc1\xc7\x11\xc7\x5a\x64\xa8\ +\xf8\x54\xda\x73\xef\xfe\x42\x79\xd7\x83\x1f\x28\x9b\xd3\xa3\xb2\ +\x5b\xe3\x2f\xfe\xcd\x67\x17\x06\xb7\x30\xf0\x43\x0d\x1a\xa5\x1e\ +\x95\x09\x35\x48\xa5\xe7\x26\xca\x29\x27\x29\xe7\x18\x01\x30\x73\ +\x7d\x33\xcc\x72\x10\x89\x47\xf4\xba\xc3\x92\xcc\x20\xa2\x44\x98\ +\xcb\xa0\x7b\xd1\x13\xd2\xb5\x95\xed\x69\x2c\x5a\x7a\xd5\x92\x28\ +\x48\xcc\xc6\x6e\x10\x9b\x8e\x15\x7a\x01\x45\xdb\xd5\x0d\x6a\x08\ +\xb8\xae\xa5\x27\xa9\x6d\x6c\x6b\x3b\x2a\x73\xc6\x81\xcd\xed\xac\ +\xe9\xb0\x7d\xac\x6e\x6a\xb2\x09\xab\xe4\x8f\x7c\x56\x7b\x8c\xa2\ +\xcb\x2d\x40\x7b\x3c\xb4\xaa\x58\x1f\x8c\xe2\xf6\x00\xfe\xd4\x8d\ +\x95\x3e\x05\xf1\xfd\xc1\xaf\xd4\x1e\xa3\x12\x47\x5d\xe1\x41\xe4\ +\x69\xb1\x8d\x14\xeb\x93\x69\x00\xce\x25\x95\xeb\xd6\x7d\x10\x38\ +\x23\xb2\x6d\x9e\xc4\x52\x27\xb6\x6c\xd8\x17\xb3\xb5\x40\xb0\xf6\ +\x99\xe7\x2b\x8b\xb9\x08\x28\x6e\x33\x39\xf4\x8a\xde\xed\x85\x4d\ +\xb2\x70\x87\x4d\x86\x43\x65\xf7\x7b\xd3\xaa\x58\x2d\xc0\x88\xf9\ +\x39\xa4\x43\x06\x3b\x38\xca\xf3\x51\x71\xf0\xd8\x6a\x22\x22\x8f\ +\x9a\x17\x42\x04\x8c\x97\x1f\x67\xfd\x96\x7c\x51\xa4\x11\xe7\xa0\ +\x3d\x7c\x02\x32\xce\x31\xa9\xda\xa2\xd9\xb9\x85\x00\x78\x9d\x00\ +\x6e\xae\x81\x88\xa1\x8d\x67\x38\xb7\xc1\xb5\x4d\x50\x1c\xa6\xb0\ +\xbb\x82\xd8\xff\x4c\x94\xda\xc5\x40\xd8\xa6\x4e\xaa\x9d\x8d\xb4\ +\xb0\xa5\x2b\x06\x76\x54\x56\xcf\xc2\x9c\x43\x9e\x18\xbc\xff\x97\ +\x01\xe4\x9f\xb4\x21\x16\x1d\xd5\x19\xec\xeb\xc0\x39\xc3\x86\x74\ +\x5c\x8b\x83\x5e\xf5\x88\x79\x46\x90\x46\x79\x6e\xa7\xa2\x2d\xb8\ +\xa2\x05\x72\x95\x5c\xfb\x22\xba\x9a\xcc\xe6\x6b\x6d\x6f\x45\xd6\ +\x4e\xbc\xa0\x70\xc2\xd7\x28\x7e\xa3\xcd\x6e\x5d\xee\xbb\xfa\x78\ +\xf9\xe0\xe3\x1f\xc3\xbf\x76\xd7\xf4\x91\x59\x35\x2d\x0b\x16\x2c\ +\x58\xb0\xe0\xb2\xc1\xa9\x79\xc1\x82\x05\x0b\xee\x1a\x1c\xba\xe6\ +\x73\x5e\x5a\x57\xde\x11\x48\xbb\x71\x43\x64\x8d\x43\xbb\xef\xa1\ +\xc7\xca\x13\x3f\xfb\x93\xe5\x95\x1f\xe8\x5f\x58\xe3\x4f\x56\xb1\ +\x5e\xc6\x27\xd3\xf0\xb5\x8f\xfc\x13\x56\xac\xc4\xc5\xc8\xaf\x81\ +\x44\x60\xbc\x69\x86\x8c\xb2\xfc\xf5\xb4\x88\x83\x2b\xaf\x87\x1d\ +\x6e\x13\xb2\xbe\xe9\xe6\x06\x81\x89\x58\x86\xc3\xc5\x7b\xf5\xe4\ +\x56\x04\x89\x79\x55\xcb\xa4\x24\x67\xb3\x2b\xd1\x17\xd5\xfb\xae\ +\xb1\xd0\xe8\xda\x3c\xc2\x9b\x92\x40\x74\xd5\xee\x37\x1a\x3f\x6f\ +\x31\x44\x6f\x33\xe7\x1b\x31\xdc\x7c\xa0\xa4\x20\xc7\xc0\x44\x88\ +\x9d\x2e\xf7\x47\x3d\xea\xff\xc8\x26\xf0\x1c\x19\x13\x83\xa2\xa6\ +\xef\x73\xa9\xce\xe3\x47\x29\x03\x51\xb9\x91\x69\xf2\x91\x8b\xa2\ +\x25\x9b\x46\x24\xcc\x38\x61\xf6\xe3\xb0\x37\x7e\x08\x46\xab\x78\ +\x17\xc0\x7b\x73\x19\x3d\xba\x68\xae\x8b\xb4\x7d\x78\x4c\x3d\x6b\ +\x34\x06\xba\x17\x43\x9c\x73\xc9\x76\x10\x90\xb1\x8d\xd1\xeb\x2c\ +\xf7\xef\x8c\x9c\x42\xac\xdc\x56\x1e\xc2\x08\x5a\xf5\xd7\x04\xac\ +\xd9\x52\xe5\x49\x2f\x84\x3a\xf1\x46\xe3\xee\x49\xf9\xc3\xd7\x61\ +\x60\x67\x4c\x4c\xdc\x40\x9d\xc7\x6b\x9b\x1a\x5a\x59\x55\xaa\x1c\ +\xb1\x55\x73\x42\x67\x84\xea\x05\xf0\x3a\x37\x06\x44\x58\x08\x53\ +\x4e\xd6\x43\xee\x13\xb7\x68\xad\xa6\x61\x82\xb0\xb9\xd2\xfd\x9e\ +\x0e\x3a\xe7\x62\xfc\xe2\x39\x10\xb8\x72\x0e\xe2\x11\xf2\xcd\xed\ +\xaa\xdc\x3c\xbd\x56\x1e\x7b\xf9\x2b\xe5\xda\xd5\x23\xe3\x1a\x9f\ +\xe5\x0e\xa3\x1f\x1f\x60\xce\xf6\x0e\x74\xef\x47\x12\xf1\x22\x2f\ +\x10\x19\x6f\x78\xad\x57\xbb\x72\xed\xca\xba\xbc\xf0\xf4\x4f\x95\ +\xab\xbb\xfb\xe4\xbc\xd9\x60\x21\x95\xce\x0d\x81\x1c\x03\x95\xea\ +\x2b\x3f\x8c\xfd\xe1\x22\xa7\x6e\xac\x39\xd9\xf0\x7c\xd5\x37\xea\ +\x08\x51\xe3\x32\x16\x52\x32\xcf\xc0\x19\x2d\xc6\x56\x45\xe4\x4a\ +\x49\x83\x6f\xe3\xe0\x7b\x93\xf3\xa8\xac\xeb\x9a\x11\xb8\xd7\x16\ +\xe0\x71\xe4\xe6\x24\x13\x5d\x20\x3a\x4d\xf9\x18\x38\x7c\xed\xe3\ +\xae\x86\xa2\x4a\xbc\xd9\xe3\x15\x63\xda\x38\x54\x26\x06\xe2\x18\ +\x18\x2c\x22\xa0\x1e\xef\xaf\x6c\xf8\x0b\x96\xca\xd8\xf8\x11\x42\ +\x2e\xed\x87\xea\xee\x27\xac\x22\x44\xc6\x03\x0f\x98\xd8\x4d\xfa\ +\xbc\xe5\x44\xa4\xcf\xb2\xdb\x26\x79\x89\x1c\xc5\x9c\x22\x9c\xe2\ +\x2b\xd6\x60\x48\x7d\xc9\xc7\xc0\x2a\x81\x58\x45\xa1\x8e\x5a\x14\ +\xed\x8f\x9d\xbb\x12\xdf\xbf\xaa\xfa\x9b\x40\x0a\x97\xb4\xae\x4c\ +\xd9\xa2\x6d\xb6\xaf\xaa\xda\x5c\x76\x4c\x0c\x67\xa0\xe5\xab\xe4\ +\x23\xa0\xd0\x87\xfc\xea\xc1\xd6\xee\x6e\x44\x51\x1e\x35\x33\x29\ +\x64\x0f\x45\xe7\x5e\x61\xdf\x12\xaf\xa1\x01\x34\x92\xac\x90\x1a\ +\x6f\x98\x51\x35\x1b\x2a\x5e\xbb\xa6\x27\x61\x6a\x93\xca\xb9\xe1\ +\x12\x34\xb2\x29\xd9\x46\xc5\x0d\x52\xd7\x4f\xe1\x25\x87\xfb\x67\ +\xe0\x79\x15\xaa\x68\xf4\x9e\x40\x12\xd2\xf8\x38\xd5\x6a\xc4\x52\ +\x74\xbb\x40\xf5\x64\x00\xb2\xba\xc7\xa5\x18\x13\x58\xb9\x6b\x1a\ +\x94\x00\xe7\x1e\x82\xb8\x70\x0c\x78\x1c\x54\x3d\x08\xfb\x78\xed\ +\x19\xd9\x61\x2e\x30\xd9\x19\xef\x1d\xca\x68\x4c\x33\xad\x0c\xf3\ +\x57\x6e\x73\x7c\xe5\xb8\xc0\x93\x43\x42\x8e\x39\x80\x9a\x20\x45\ +\x4a\x1c\x64\xcc\x05\x9b\x9d\xf0\x44\xa1\x45\x62\x50\xbf\xfd\xf6\ +\x95\xf2\xe1\x0f\xc8\x3a\x6a\x7d\x7f\x2c\xf1\x23\x76\xc1\x82\x05\ +\x0b\x16\xdc\x56\x70\x19\xb4\x60\xc1\x82\x05\x77\x25\x7c\x4d\xca\ +\x95\xa4\x8a\xef\x24\xd8\x1d\xef\x53\x83\x55\xb9\x26\xf6\xe7\x7f\ +\xe9\x97\xca\x8d\xfb\x9f\x2e\x6f\xbc\x75\xbd\xac\x4e\x60\x96\xa5\ +\xae\xac\x7c\xf1\xb3\xde\xe0\x8d\x35\x3c\x2c\x5a\x6b\xe1\x6d\x21\ +\x80\x45\xb4\x2e\xa4\x71\x23\xaa\x36\xdf\x61\x6b\xcc\x2a\xe5\x66\ +\x08\x87\x06\xb7\x26\xbf\x08\x94\x47\xe3\x56\xe9\xe6\xce\xa4\x51\ +\x80\x80\xe6\xc8\x2e\xea\x0c\x6f\x0e\x43\xba\x18\xe5\x17\x59\x6b\ +\xe6\x8a\xd6\xe6\x9a\x26\x9a\xa6\x93\x1e\xf1\xc6\xd3\x3d\x22\x4f\ +\x49\x15\xee\x1b\x70\xb2\x69\xea\x3e\xc4\x62\x98\xec\x54\x35\x68\ +\x4c\x1b\x59\x35\x48\x1d\xb7\xcf\x05\x63\x7f\xd3\x2c\x08\x93\xf3\ +\x3b\xca\x34\xa2\x83\xc7\xf5\xed\x99\xce\x66\xf7\x94\x8a\x56\xbb\ +\x93\xe8\xfb\xe4\xe5\x32\x70\xd1\x5c\xb7\x12\x77\x1e\xd4\x76\xfa\ +\x03\x38\x82\x3d\x98\x22\x0e\x6f\x69\x70\xda\x69\xbb\xf1\x40\xe2\ +\x80\xb6\x23\x87\x70\xcf\x68\x7a\x92\x2d\xf8\x6c\x35\x24\x47\x75\ +\x57\xab\x4b\xf9\x99\x49\x93\x37\x27\xc8\x98\xd8\x11\x55\x23\x47\ +\x61\x79\x6e\x6c\xd8\x61\x36\x0b\x74\x2f\x1d\xc8\x98\xb3\x37\xa8\ +\xa4\xc6\x07\xa5\x6b\x66\x88\xd1\x43\x24\x80\x66\xf5\xe9\xfe\x38\ +\x2f\xf1\x21\x4a\x3c\x1f\xe0\xe0\xcf\xa2\xed\xff\x76\x00\x18\x7a\ +\xb8\x19\x6b\x5f\x75\xbc\x5e\xe1\x93\xdb\xe0\xc8\xeb\x94\x10\xfe\ +\xf2\xe6\x51\xd9\xdc\xf7\xde\xf2\xe8\x47\x3f\x29\xe7\xce\x4e\x6c\ +\xda\x61\xbe\x8a\x21\x58\x95\x2a\x67\xd8\xbe\x5d\x2a\xfa\x76\xbc\ +\x8d\xbe\x2d\xf0\x6e\x47\xfb\x3f\x4e\xc8\xc7\x97\xe7\xa0\x9c\x29\ +\x22\xe3\xbc\xd9\xe1\xd6\x74\x77\x5a\x9e\x7b\xcf\x17\xcb\xfd\x9b\ +\xa7\xca\x6a\xbb\x31\x22\x4e\x33\x90\xf0\x40\x5e\xce\x12\xbc\x2b\ +\x6b\xe7\x8c\x1f\x12\xac\xa0\x70\x3e\xaa\x55\xe0\xed\x38\xc2\x21\ +\xe8\x7c\x96\x8a\xc8\xb4\x8c\xd6\xde\x27\x07\x66\x22\x85\x1a\xec\ +\x24\x90\xed\xba\xd4\xd0\xc3\xdd\x40\xac\xfa\xab\x48\x24\x9f\xe6\ +\x92\x89\xd7\x57\xc3\x35\x12\xac\x23\xbe\x72\x94\x16\x76\x1f\x5b\ +\x33\xd0\x67\x7e\x2f\x41\xb6\x5a\xb9\x6d\x1c\x7c\x14\x4d\xaf\x23\ +\x04\x43\xdb\xcf\x3e\xa6\x7d\xe3\xc2\xf2\x46\xed\x64\xe5\x55\x2d\ +\x41\xe2\x22\xa7\x43\x74\x64\x80\x9d\x2e\xf3\x67\x39\xfa\x08\x1d\ +\x7d\x30\x7b\x43\x72\xc0\x6d\x26\xf6\x8d\x31\xdc\x68\xc9\xb2\xf8\ +\x73\xbf\x55\x34\xdd\xdb\x49\x6e\x80\x7d\x89\x1c\x80\xd4\x72\xcd\ +\xc4\xd8\xf4\xe8\xe2\x09\x0f\x97\xa2\x6e\x08\x6e\x50\x4b\x8b\x91\ +\x4d\x40\x73\xf2\x89\xa8\xfd\xa3\x96\x6a\x08\x32\x1a\x5a\x85\x59\ +\xe1\x3e\x1f\x09\xb9\xf3\x69\x09\x4e\xe1\x06\x63\xaa\xa2\x1f\x63\ +\xdd\x7a\xbb\xb4\xe2\xd7\x86\x03\x15\xf3\xc9\x34\xe2\x23\xa4\x11\ +\xbe\xd5\x9a\xf0\x86\xa5\x82\xd8\xf4\xc3\x65\x31\x36\x31\x26\x67\ +\x6e\xf6\x66\x25\x38\xac\x2d\x0b\x36\x52\xdc\x95\x85\x96\xaf\xd0\ +\xd6\x93\x21\xa3\xe1\x0d\x30\x13\x46\xc0\x27\xc5\xc7\x51\xa9\x16\ +\x60\xd5\xe1\x18\x04\xf4\xa9\x32\x05\xe7\xaf\x8b\x56\x8f\x91\x82\ +\x72\x7c\x96\x05\xcd\x71\x4b\xa8\xb9\x41\x68\x49\x93\x76\xed\x04\ +\xda\xdf\x9f\x0a\x9e\xdb\x44\xcd\xdb\xb6\xa7\xa0\x8d\xaa\xda\xaa\ +\xc7\x20\x06\xf7\xb4\x3e\x79\x2d\xc3\x39\xec\x7e\x6c\xb8\xc6\x3a\ +\x91\x4a\x8d\xf8\x4a\xe4\x2b\x9b\x13\xe9\xfa\x43\xe5\xe3\xef\xfb\ +\x69\x19\x87\x2b\x5c\x6e\x2d\x58\xb0\x60\xc1\x82\x3b\x07\xcc\xcc\ +\x0b\x16\x2c\x58\x70\x6f\x00\x0b\x45\x2f\x8e\x77\x6c\xf1\x98\x1a\ +\xc6\x8a\x79\xb3\x29\x57\x1f\x7a\xa2\xbc\xeb\xa5\x2f\x96\xbf\xfc\ +\xde\x5b\xfa\xd7\xf8\xa7\x78\x34\x28\xb7\x7b\x42\xc5\x9b\x65\x2b\ +\x3e\x50\x44\x2d\xbe\x35\xde\x52\xc3\x02\x7a\x3a\x0d\x6b\x14\x60\ +\x6d\x48\xc5\x87\x44\xbc\x09\xa9\x4b\xf6\x00\x4c\xbc\x19\x50\x3e\ +\x6e\x30\x99\x01\xed\xa7\x3f\xc2\x0e\x24\x83\x66\xb3\x9c\xac\x4c\ +\x4e\x50\x3a\xb6\x28\x4d\xc4\x14\x5d\x63\x9d\x5a\x0d\xac\x53\x16\ +\xd1\xfd\x06\x05\x56\x8e\x91\xd5\x04\x05\xf1\x38\xc7\xed\x19\x66\ +\xec\x6f\x4b\x5c\x6d\xad\xb5\x6d\xb7\xb3\x6e\x48\xa2\x98\x31\xcc\ +\x26\x44\xbf\xf6\x61\x86\xa3\x5f\x3b\xa5\x98\x50\xc4\x00\x9b\xb6\ +\x28\x7d\xd4\x5f\x35\xda\xee\xb3\xc0\x48\x47\x82\x18\xf9\x90\x31\ +\xdb\x21\x23\x20\xc1\x73\x34\xf0\x7c\x13\xc7\xf9\xa0\xb9\xb5\xf7\ +\xb9\x5c\x06\xfa\x9c\x73\xe5\xb2\x71\x2b\xb9\x6f\x5b\x5c\x7f\xec\ +\x01\x9c\x57\x0c\x1a\x39\x0d\x91\xd8\xb2\x5b\x95\x63\xc2\x94\x10\ +\x61\x02\x67\xce\xb7\x32\xb9\x02\x0f\xc6\x30\xae\x37\x8e\x1a\x76\ +\x4e\xe2\x9e\xaf\x0f\xe7\xec\xb3\x90\x95\xef\x82\x75\x4a\xe4\xb6\ +\x7b\xfe\x10\xd0\x01\x7e\x6b\xb1\x04\x63\x74\xae\x49\x2e\x07\x45\ +\xd7\xbb\x20\x01\xfa\x14\x3d\x99\x3f\x70\x13\x0c\x33\x42\x41\x41\ +\x1e\xca\xe6\x95\x4a\xaf\xfd\xf4\x2a\x45\x97\xfe\x31\x89\x3f\xe9\ +\xc1\xfc\x77\x73\x7b\x5a\xde\x78\xfb\xb4\x3c\xf1\xc5\xaf\x96\x07\ +\xae\x5d\xe3\xab\xa0\x1e\x01\x3b\x0e\xda\x61\x8d\xf7\x64\xb9\xd6\ +\x54\x97\x0b\xcf\x7f\x08\x6e\x47\xfb\x3f\xae\xf0\xb1\x64\x8d\x8d\ +\x9c\x03\xeb\x6d\x79\xf0\xfe\xf7\x94\xe7\x9f\xf9\xa9\x72\x65\x7b\ +\x54\x4e\x45\x3f\xc5\x8b\x1b\xfe\x3a\x1f\xc7\x89\xc7\x0a\xaf\x77\ +\xaa\x50\xf5\x27\xea\xd4\x4c\x76\x13\x91\x0f\x9a\xb4\x41\x5f\x25\ +\x34\x54\x70\x9b\xeb\xd4\xcf\x4e\x6c\x84\x49\x21\x45\x80\x1e\x75\ +\x9b\x69\x1e\xfd\xdc\xa0\x39\x62\x79\x80\x5c\x0d\xc1\xf2\xf6\x41\ +\x84\xf6\x09\x7c\xb8\x49\x89\x7e\x26\x60\x8d\x20\x46\x37\x3b\xbf\ +\x27\x42\xa3\xa5\xed\x00\x8d\x69\xf9\x22\x90\x5c\xa2\xb7\x26\x68\ +\x5a\xa2\x25\x72\x6a\x1f\xdd\xac\x75\x1a\x5b\xd6\xa6\xf9\xf1\x34\ +\x87\x76\x05\x59\x22\x2b\x25\x95\x9d\x6f\xfb\x0c\x95\x76\x40\x39\ +\xb9\xdf\x2a\x82\x64\xf1\xb2\xb1\xd6\x08\xfd\x54\x98\xfa\x2c\x9a\ +\x1c\xc2\x03\x0c\x8d\x54\x15\x55\x9b\x3e\x79\x0e\xd8\x68\x60\xc1\ +\x7e\x41\xd2\x3b\x01\xd9\x3b\x9a\x6b\xeb\x01\x9d\x24\xa3\x9c\xc2\ +\x20\x35\x19\xdc\x58\x6d\x36\x37\x39\x70\xaf\x41\x1b\xfb\x81\x3e\ +\x40\xd6\x4a\x3b\x81\xe2\xb2\x9a\x09\x97\xd9\x31\xa3\xb8\x60\xa0\ +\xcd\xf5\xce\x8e\x0d\xc7\xde\x4a\x33\xaa\x12\x94\xcf\xf7\xb6\x56\ +\x0e\x6a\x70\x4c\xa3\x1f\x12\x74\xfe\x98\x19\x46\xc8\xfa\x89\x45\ +\xe5\xf8\x90\x11\x2e\xc8\xbe\x53\x34\x5d\xe9\xaa\x4c\x73\x42\xb0\ +\xb1\x12\xc4\xa7\x05\x69\xd7\x23\x46\x04\xdf\x6a\x40\x89\x55\x04\ +\xb2\x1f\x30\x3d\x51\x27\x94\x68\xbd\xf7\xf7\x44\xc7\x9c\xdd\x50\ +\xdd\x75\xbf\x1c\xea\x4b\x09\x42\x14\x21\x06\x65\x06\x74\x1b\x47\ +\xaa\xe9\xec\x96\x50\x69\x95\x35\xa2\xa7\xf3\xd4\x7b\x4b\x5a\xd7\ +\xf5\x46\x1d\xe5\x19\xec\xeb\xb9\x10\x39\xfb\x3c\xb9\xb1\xb6\xe1\ +\xb3\x5b\x54\x06\xcf\x28\xdf\x4f\xa0\x13\xf1\xe5\x36\x2a\xaf\xcb\ +\x1a\xaf\x7f\xf8\x0a\xe4\xad\x44\xf1\x85\xb0\x94\x93\xeb\xa5\x7c\ +\xf4\x99\x4f\x96\x77\x3d\xf4\x3e\x79\x79\xd4\xd7\xc7\xe1\x10\x2c\ +\x58\xb0\x60\xc1\x82\xdb\x82\xb4\x1a\x58\xb0\x60\xc1\x82\x7b\x04\ +\xbe\xe0\x4c\x0b\xcf\x3b\x05\x3c\x8e\xd0\x47\x12\x0e\x5f\xbd\xae\ +\xcb\x95\xa3\x52\x3e\xf0\x33\x5f\x2b\x37\x4f\x1e\x2b\x6f\x9c\x1c\ +\xdb\xff\x52\x83\x53\xca\x5a\x6e\x67\x51\xf0\xe9\x34\xd4\x08\x91\ +\x6d\xec\x82\x09\x76\xcb\xab\xc0\xca\xd8\xec\x6e\x45\xcb\xec\x01\ +\x7d\xea\x64\x0b\xc6\x83\x4d\xb9\xb4\x52\xa2\x2b\xfc\xb0\x41\x71\ +\x03\xa0\xbc\xc6\x36\x14\x21\x69\xfb\x6d\xbc\x62\x72\xbf\xd5\xeb\ +\x13\x20\x57\x8b\x69\xd6\x9c\x46\xa5\x86\x93\x6f\x44\x04\x64\xd0\ +\x66\x37\xbe\x0e\x51\x46\xb9\x15\xe2\x6c\xc8\xa2\x52\xf7\x08\xa9\ +\xdd\x3f\x9f\xa4\x41\x97\x2e\x41\x13\xe8\x51\xaa\xc9\xfc\xa1\x82\ +\x56\xb0\xa3\x18\x87\x34\xd9\xcc\x27\x55\xc4\x93\x89\xc3\x00\x36\ +\x23\x3c\x0c\x35\xdb\x4a\x38\x5f\x4a\xc1\x38\x00\xd6\x5b\x2d\x77\ +\x1a\xb7\xd2\xee\x45\x63\x6f\x39\x8e\x73\xc2\x9e\x0c\x3c\x8d\xf4\ +\xec\x53\x96\x1f\xf0\x36\xa6\xfa\x3b\x8f\x28\x59\x6f\x4e\x97\xe4\ +\xe8\x4f\xa3\x31\x0e\x63\x75\x97\xb8\xa0\xe9\xd1\x41\x38\xeb\xd2\ +\x08\x77\xe6\x4d\xe4\x41\x7f\xfb\x40\xa1\xd4\x30\x55\x3c\x6a\x10\ +\x9d\xb8\x0e\xb1\xf4\x13\xe9\x94\x14\x18\xe5\xdc\x87\x86\x3f\x09\ +\x1e\x35\x94\x6d\x2e\xeb\xdc\x8a\x6e\xb2\x46\x22\xba\x2c\x21\xed\ +\xf2\x43\x82\x92\xd6\x52\xf3\xeb\x8f\x85\x83\xff\x95\xf6\xc3\x93\ +\x75\xb9\x7a\xff\xbb\xcb\xb3\x3f\xf9\xb5\xb2\x59\xf3\x51\x91\xfd\ +\x4f\x1c\xe4\xd2\x98\x09\x46\xb6\x3b\x09\xf4\xcf\xcb\x82\x8b\xc1\ +\xc7\x6e\xdf\x38\x9a\x7d\xb5\x39\x2d\x2f\xbe\xff\x1b\xe5\xb1\xcd\ +\x53\x65\xb3\xbd\x52\xb6\x2b\xfc\xdf\x3d\xff\x8b\x11\x29\x3c\x1f\ +\xf0\x17\x43\x7a\x62\x68\x98\xdb\x5b\x84\xa9\xf1\xf9\x1a\x21\x6f\ +\x6b\x1e\xad\xe7\x31\xf6\xa7\x06\x44\x9c\xac\x70\x92\xdb\xd1\x9b\ +\x54\x9f\x12\x61\x99\x58\x69\x90\x8d\x39\xda\xd6\xf2\x1a\xa8\xae\ +\x0b\x3d\x24\x39\x09\xbd\x5e\x51\x43\x51\x9b\x02\xd7\xb2\x89\x8e\ +\xe9\xa4\x1c\x31\xac\x9c\x2f\xbc\x08\x4d\x39\x5a\x8e\xd5\x0e\xd1\ +\xb3\xa9\xca\x26\x49\x85\xb3\x40\x51\xc9\xdc\x33\x76\xd4\xfa\x56\ +\x5d\x66\x4f\xb5\xa0\xfa\x54\xf6\x37\x62\x1c\xfa\x26\x8e\x22\x46\ +\x52\x2a\xee\x11\x55\x6c\x5c\xc6\xda\x5d\x8a\x04\xe9\xa7\xe5\x7c\ +\x7c\xcc\x19\x00\x1f\x45\xfd\xf0\x6a\x6e\x2f\x80\xc7\x6b\xbd\x06\ +\x97\x7c\xcf\xa9\x88\x08\x0b\xcb\xdd\x47\xdf\xc7\xaf\x79\x30\xea\ +\x9f\xf2\xf5\xe7\x26\x3c\x6a\x37\xa8\x41\x61\x35\xbd\x66\x77\x57\ +\x15\xaa\x68\x94\x89\x0f\xc5\xf7\xc4\xfb\xa7\x95\xb5\x6b\xb6\xd8\ +\x99\xa8\x8c\x25\x15\x3f\x09\x4f\x81\x26\xe6\x82\xa8\xaa\x19\x59\ +\x99\x8c\x3a\x44\x08\x49\xcf\x30\x57\xe5\x7a\x15\x42\x53\x6b\x25\ +\x5e\xb7\x0b\x42\x14\x21\xcb\x67\x22\x73\x72\xac\xa3\xf3\x37\x06\ +\xe7\x67\x4e\xc6\xc8\x2e\x9d\x86\xb9\x77\xf1\x8c\xb0\x73\xb3\x7a\ +\xe7\x12\xdb\x31\xf4\x31\x25\xea\xf5\xce\x3a\x72\xb5\xf0\xd3\xd9\ +\xaa\x1a\xae\x5a\x20\x7c\xad\xd9\xf8\xbd\xf1\x2c\xb4\x73\x7a\x34\ +\x19\xa8\x96\xb3\x32\x57\x7f\xcb\x6c\x46\x95\x55\xb6\x98\xbd\x01\ +\xae\xc2\x69\x36\xda\x84\xee\x71\x78\x62\x80\xa5\xfd\xb6\x1c\x97\ +\xdd\x7a\x43\x3b\xb8\x47\xab\xe3\xb2\xbd\x71\x5f\x79\xf1\xf9\x9f\ +\x13\x83\x3e\x5b\xd0\xf3\xb1\xe6\x5c\xb0\x60\xc1\x82\x05\xb7\x17\ +\xcb\x1b\x6a\x0b\x16\x2c\xb8\x37\x30\xb7\x3e\xbc\xe3\xeb\x46\xac\ +\x56\xeb\x22\x38\x9a\x17\x01\x13\xea\x43\x1f\x78\xa1\x3c\xf2\xc9\ +\x97\xca\x9f\xbd\xfa\x56\xb9\x76\x74\x4d\x3f\xa9\x26\x2b\x5c\x7d\ +\x23\x4d\x6e\x64\xf9\x50\x51\xe2\xb1\x58\xd6\xd5\xb2\xdd\x5c\xc8\ +\x06\x35\xd3\xc3\x6f\x8a\xf9\xe2\xe6\x98\xba\x8a\x8e\x30\xf1\x61\ +\xba\xd6\xa0\x77\xb4\x6a\x08\x07\x04\x29\xde\xf6\x00\x9a\x32\x3b\ +\xa7\x44\xef\x5a\x0b\xb5\xce\xa4\x25\xc0\xc0\x58\x44\xbc\x1a\xb8\ +\xf1\x5d\x21\x9c\x60\x75\xc3\x17\xf4\x6d\x54\x3d\x98\x04\x35\x37\ +\x19\xa9\xb1\x0d\xd1\x66\x57\x6a\x0d\x18\x87\x9a\x35\xb7\x11\x80\ +\x26\x0e\xec\xa0\x39\x50\xb5\x1c\xc0\x9d\x56\xf3\x04\x40\x9c\x56\ +\xc0\x34\xa6\xd2\x1d\x50\x47\xbc\x16\x03\xc6\xd9\x41\x03\x5c\x28\ +\xe8\xae\x82\x8f\xd7\x45\xf7\xe4\xa2\xb1\xb7\xda\xe6\xa1\x68\xb9\ +\xa2\x35\x13\xcb\x14\xe1\x95\xf9\x08\x8c\x1a\xaf\xfc\xd0\xab\x43\ +\xd0\x3d\x54\x01\x1a\x7f\xc6\xac\x23\x10\x2d\x45\xd2\x51\x5f\xe1\ +\x34\x42\xa2\x9e\x05\x7d\x20\xe4\x6d\xcc\x01\xde\xc4\xf0\xe4\x88\ +\xa3\xb9\xfa\xfb\xeb\x2f\x10\x76\xcb\x23\xba\x9b\x6a\xb4\xc0\x8c\ +\x73\x69\xc8\x9d\x6d\xa4\x22\xf2\x19\x62\x9e\x15\x07\x7d\x3d\x41\ +\xd0\x9a\xa6\x6d\xb4\x16\xd3\x10\x24\x05\x5a\x3d\x2c\xda\x16\x5e\ +\xf7\xf8\x15\x8f\x78\xc3\xcc\xfb\x2c\xf5\xf1\xf6\xb4\x7c\xef\xad\ +\x55\x79\xfa\x0b\x5f\x29\x47\xf7\x3f\x54\x76\xe4\x5b\xb0\xf3\x72\ +\x67\xcc\xd4\xd8\xb2\x7c\x11\x78\x4e\x76\x54\xc5\xa8\x1d\x59\xef\ +\xdb\xbb\xd5\xf6\x7f\x5c\x91\xc7\xd4\xc7\xde\xc7\xd2\xe6\x22\x9c\ +\x37\xbb\x82\x3f\x46\xda\x96\xc7\x1e\x78\xa6\x7c\xf0\x5d\x9f\x2f\ +\x57\x4e\xae\xc8\x5a\x4a\xe6\x20\xb9\xe0\x4e\x77\x3b\x0b\xb1\x79\ +\x86\x6f\xb2\x19\x72\x7e\x01\x79\xde\x4e\x0f\xda\xf4\xcc\x63\x69\ +\x38\x55\xf1\xee\x4d\xa1\x1c\xf7\xb3\x36\x25\xa7\xf2\x53\xba\x87\ +\x5d\x91\x44\x48\x20\xe7\x44\x86\x9a\xa3\xda\xe3\x9a\x31\x40\x1b\ +\x35\x45\x1b\x12\x50\xc0\x5a\x72\x9a\x3b\xc7\x65\x2f\xec\xbd\x4f\ +\xfb\xa2\xd6\xd8\xea\x6f\xf4\xd3\x2a\x41\x95\x00\x72\x54\x6c\x71\ +\x96\xd1\x02\x63\x1c\xac\xc6\x18\xb0\xbf\xa1\x63\x03\x22\xd5\x06\ +\x6e\xe6\xbc\xa4\xa6\x8a\x3e\xb1\x01\x5f\xad\xe6\xae\x60\x0c\xa8\ +\x21\x52\x90\x8d\xfe\x46\xdf\x34\x86\x1b\x83\xf4\x3c\xd4\x3a\xe2\ +\x3a\x13\xc2\x81\x20\x54\x26\x3b\x1a\x35\x1f\x29\x45\xc7\xa6\xa2\ +\x6f\x14\x76\x67\x0b\x6c\x52\x9c\x8f\xd2\x67\x83\x2d\xa3\xd7\x81\ +\xc8\x30\x21\xb7\xb6\xc6\x0d\x05\xf7\x45\x26\x06\x64\x40\xa8\xb3\ +\xbf\xd9\x67\x92\xed\x47\xf3\xfa\x0f\xd5\xc4\x80\x1b\x48\x77\x82\ +\x1f\x47\x8c\x6e\x8a\xc7\x4d\x1b\x79\xb0\x41\x71\x58\x5f\x00\xa4\ +\x40\xa1\x60\x36\x01\x8e\x9f\x75\x95\x70\x19\x55\x32\x87\x9c\xfd\ +\x0d\x92\xa1\xf1\x41\x91\xa2\x71\xea\x09\x3f\xec\x26\x66\x34\x36\ +\xd9\xa7\x9e\x93\x73\x01\x1c\x89\x4c\x6a\x02\xea\x38\xf5\x79\x5a\ +\x08\xcf\xf2\x3a\xaf\xaf\x7b\x60\xec\x9a\xf9\xd6\x9b\x82\xad\x36\ +\x2b\x30\x52\xe2\xaa\x1b\xdb\x9c\xa0\x02\x9e\x9a\x42\x39\x4d\x4a\ +\x60\x1c\x3a\xe5\x01\xc2\xed\xf3\x55\x40\x97\xa2\xbf\x43\x44\x7f\ +\x26\x04\x04\x8d\x5a\x74\x9b\xd4\x42\xe1\x37\x9a\xe0\x17\xaf\x7b\ +\xc2\xc7\x51\x65\xaa\xdd\x51\x39\xdd\xae\xcb\x7b\x1f\xff\x58\x79\ +\xe6\xf1\x8f\x47\x14\xa0\x32\x58\x64\x2e\x58\xb0\x60\xc1\x82\xdb\ +\x88\xbc\x7a\x58\xb0\x60\xc1\x82\xbb\x13\x69\x7d\x49\xf8\x1a\xd1\ +\xd7\x8b\xef\xc8\x9a\x31\x35\x1c\xef\xfe\x6c\xca\xfa\xe8\xfe\xf2\ +\x9e\x6f\xfc\x64\x39\x3e\x7e\xa0\xfc\xf0\xfa\xf5\xb2\xde\xca\x44\ +\x2b\x77\x31\xfa\x66\x9a\xf0\xf9\x49\x35\x91\x71\xa3\x8e\x12\x39\ +\x9a\x4a\xd1\x2f\xb6\xa9\x76\xb6\x80\x3d\x58\x90\x0d\x6a\xd5\x50\ +\x24\x7f\x7a\xde\x34\x02\xe3\x88\xb6\x2f\x53\x98\x5f\xa0\x14\x27\ +\x8e\x02\xd4\xc6\x1b\xb8\x1a\x36\xc6\xc4\x3f\xdb\x81\x40\x0d\x11\ +\x89\x37\x19\x88\xd2\xba\xde\xd6\x55\x19\xdb\x26\x2b\xcd\x36\x66\ +\x82\x1a\xe1\x98\xf6\x81\x37\xe2\x16\xd7\xc3\xe3\x6b\x9e\xdc\x8b\ +\x7d\x98\xe6\x52\x24\xbb\xb5\x89\xd3\xac\xf6\x58\x31\x6a\x23\xdb\ +\xc8\x96\x8d\xde\x48\x8f\xe1\xae\xa0\x20\xa8\x6d\xe6\x00\xec\x69\ +\xe0\x1e\x00\x7a\x7f\xab\x7b\x70\x91\xf8\xcb\x68\xf7\x50\x0c\xdb\ +\xa1\xf1\xec\x83\xcd\x99\xaa\x4f\x70\x9e\x8e\x9f\xfb\x7c\x9a\xc2\ +\x9b\xd3\xda\x4f\x52\x14\x58\xda\x06\x9a\x87\x35\x02\x9d\x4a\x5b\ +\x0e\xc2\x5a\x5a\x17\xd4\xc0\x7c\x89\xa2\x5f\xdd\x9a\xe6\x90\x26\ +\xbc\xeb\x8f\x14\x75\x27\x92\x89\x4d\x18\x99\x92\xb3\x35\x0e\xc2\ +\x64\xdb\xbc\x3e\xb4\x01\xc1\x49\x75\xd3\x23\x98\xd0\x61\xa7\x18\ +\x54\x95\x5b\x03\x21\xbb\xab\x9f\xc9\x1a\x8d\x8a\x5a\x34\xbf\x9e\ +\x27\xfa\x66\x1a\xec\xc6\x96\x0a\x5f\xd9\x87\x9f\x37\x57\xd7\xca\ +\xea\xda\xe3\xe5\xc9\x2f\xff\x74\xb9\xea\xfb\x60\xb4\x06\x6e\x6b\ +\x3a\x7e\x09\xf0\xbc\xa8\x91\xfb\xbc\xf9\x47\x7d\x5d\x70\x3e\xe4\ +\x31\xf4\xe3\x40\x5b\x75\xac\xb0\x9e\x92\xfa\x43\xcf\xfe\x54\x59\ +\x9f\xde\x5f\xca\x31\xae\x0b\x59\xcc\xe0\x6b\x1e\xe5\xc5\x90\x4c\ +\x3b\x7e\x30\x75\x6f\x19\x90\xd3\x20\xb7\x69\xc0\xd5\xab\xe6\xce\ +\x99\x55\x39\x8f\xad\x19\xc5\xe4\xe2\x14\xb0\x7d\x81\xbb\x58\x6b\ +\x44\xd7\x0b\xc5\x20\x85\xc2\x13\x25\x4a\x12\x9a\xa6\x93\xcc\xf9\ +\x19\x06\xd8\xcc\x8e\x5e\xb3\x6d\xd3\xb5\x1f\xc6\x53\x31\x7c\x15\ +\xe2\x75\x37\x6b\xf4\xc7\x22\x45\xd7\x58\xcd\xe1\xbc\x40\xa7\x2b\ +\x1f\xb5\xf1\x69\xc4\x06\xb5\x8e\x3b\x73\x24\x47\x56\x29\x5b\x23\ +\x16\x2d\x90\xbe\xf8\x93\x0b\x31\xa1\x67\x93\xdc\x84\x29\x13\x9b\ +\xee\x4b\xd8\x59\x27\x92\x88\x8d\xcb\xd0\xda\x30\x26\x14\xac\xce\ +\xcc\x04\xee\xa3\x9f\x5f\xa2\x66\x9a\xcb\xb2\x2f\x3b\xfc\xd1\x81\ +\x20\x78\xdc\xea\x9e\x39\x74\x1f\xf1\x03\xbb\xe4\x94\xdc\x3c\x17\ +\x8c\x92\x99\x64\x87\x7d\x42\x48\xb2\x08\x2e\xa3\xf6\xe2\x95\x6c\ +\xf4\xf8\xa0\x3d\x37\x02\x70\xa0\xd2\x3a\x7a\x4f\x9b\xda\x55\x0c\ +\x83\x14\x47\xf4\x28\x5c\xae\x9f\xe2\x23\xca\xde\x71\x22\x8d\x81\ +\xe5\x6c\x90\x0c\xd1\x56\xa5\x9b\xe8\x76\xe4\x72\x9b\x81\x1c\x6d\ +\x43\x7f\xcc\x88\x42\x65\xd0\xa6\xa3\xeb\x4f\xc3\x6b\x1c\xda\x6e\ +\xbb\x5f\x50\x45\xa7\x69\xbe\x8d\xde\x6e\xf4\x16\xb3\xba\xb5\x1b\ +\x90\x76\x3a\xae\xfe\x61\x4e\xe2\x89\xaa\x14\x6c\x55\x41\xef\x68\ +\x53\x87\x00\xfc\x1a\x33\xdf\x7b\x85\x32\xfb\xbe\x00\x88\xd3\x68\ +\xcf\xaf\x2c\x11\x7c\xcc\x04\xf4\x0d\x30\xca\x38\x86\x33\xa3\xa5\ +\xb3\xd1\x1d\xdb\x16\x96\xcf\x09\x1d\x91\x5e\xb1\x45\xff\x44\x6e\ +\x28\xe9\xb8\x07\x70\x2d\x87\x6e\x73\x36\x6a\x3e\x1f\x10\xc8\x06\ +\x7f\x48\xb2\x5a\xcb\xea\x09\x7f\x90\xcb\x1b\x41\xfc\xef\xb4\x6d\ +\xb9\xf9\xf6\xd5\xf2\xe9\x8f\x7c\xbb\xdc\x27\x1c\xfc\x1b\x5b\xc0\ +\x33\x2c\x58\xb0\x60\xc1\x82\x3b\x03\x5f\x96\x2e\x58\xb0\x60\xc1\ +\xdd\x07\x5f\x63\x66\x60\xad\xe8\xe5\x6e\xc3\xae\x94\x23\x59\xec\ +\x3e\xfc\xe2\xc7\xcb\xb5\xf7\x7d\xa2\x7c\xf7\xd5\x37\xc5\x86\x77\ +\xb3\xa4\x58\x7f\xfd\x8d\x35\x2e\x95\x29\xab\x1d\x95\x3f\xff\x51\ +\x93\x6c\x21\x48\xc1\x3f\x1e\x66\x3c\x1d\xdc\x54\xf8\x58\xf0\xee\ +\xda\x12\xa4\x07\x49\x58\x5c\x57\xad\x22\x6c\x2e\x64\x92\x35\x01\ +\x53\xbd\xb5\x30\x42\xe6\x11\x92\x7f\x62\xab\xc8\xbe\x10\x3d\xbf\ +\xd5\xa8\xbc\x00\xf9\x41\x81\x7b\x42\x05\x1a\x45\xc1\x1b\x63\x1b\ +\x4c\x6d\xc7\x49\xb8\x55\x51\x79\x10\x26\x50\x36\xb7\x4e\x88\xda\ +\x7a\x6c\xba\xde\xf4\x98\x6d\x1f\x18\x27\x65\xd2\xa0\xc6\xd3\x2c\ +\x1b\x63\x49\xa9\x39\x21\x79\x18\x6a\x95\x35\x97\xdb\x95\xef\xa5\ +\xda\x15\x9a\xa1\xb5\x41\x53\xee\x18\xd6\x27\xa1\xb4\x71\x87\xe2\ +\x62\x51\xef\x24\xd0\xe3\x5c\x2e\x8a\x8b\xe6\xb8\x95\x76\x73\xdc\ +\x85\x72\xf0\x14\xb1\x83\x8d\x0b\xd4\x27\x21\x03\xdc\x28\x01\x77\ +\xfb\x05\xcb\xf3\xa5\x3f\xc7\xf6\x41\xb3\x1d\xce\x6f\xd1\x75\xaf\ +\x45\xe7\x73\x75\x12\x42\x03\xfa\x3c\x9e\x0f\x81\xa9\xdd\x2d\x29\ +\x5b\x26\xc1\x1c\x2e\x7d\x34\xd7\xc0\x7d\x56\xd3\x9f\x52\x35\x88\ +\x5c\x4a\x70\x71\x98\xd3\x8c\x76\xd5\x36\xa0\x0b\x9b\x08\xf4\x47\ +\xb0\x15\x4d\x54\x3f\x79\x4f\x53\x9a\x2d\xed\x1f\xf5\x41\xeb\x76\ +\xa0\x78\x6e\x50\xc6\x1f\x8e\xd8\xa7\xd3\xf8\xbf\xaf\x76\xe5\xa6\ +\xbc\x1e\xbe\xfa\xf6\xae\x3c\xf9\xa9\x2f\x97\x47\x9f\x7e\x2f\xb3\ +\xea\x11\x01\x5f\x8a\x77\x16\xaa\x37\x98\xe5\xdb\x01\xe4\xcf\xf0\ +\xb6\x72\x9b\x3d\xa7\xd7\x17\xdc\x3a\x70\x2e\x62\xcc\xa5\xe0\xbc\ +\xe0\xbf\x47\x93\x79\xea\x89\x47\x3f\x5c\xde\xf7\xd8\x17\xca\xfa\ +\x64\x5d\x4e\xd7\x27\xe4\xe1\x53\x6a\x3b\x21\xf0\x34\xe3\x71\xea\ +\xaf\xeb\x56\xab\x68\x0f\x1c\x67\x31\x37\x49\xc8\x5c\x14\x11\xa1\ +\x89\xc5\x0e\xb4\x39\x82\x46\xa9\x6a\x99\xe6\xd0\x4b\xc6\xf2\x65\ +\xa7\x3a\x26\x80\xb5\x7a\x54\x0a\x6a\x0a\x71\x9b\x5f\xb5\x50\x59\ +\xd2\x9a\xc6\xe9\x98\xd6\xc1\x57\x3f\x2c\xb8\x7e\xb5\xf6\x42\x15\ +\xe8\xd6\x44\xa8\xa3\x7d\x47\xa7\x33\x22\xdb\x10\xa3\x9b\x16\x4c\ +\x94\x8c\x26\xfa\x9b\x6a\x0a\x44\xe2\x2b\x62\x6b\xde\xba\x87\x5a\ +\x51\x82\xd1\xf2\xa1\x8a\x14\x22\x60\x7f\x39\x7b\x99\x2d\xfb\x28\ +\xc2\x05\x01\x35\x74\x33\x68\x3f\xd4\xc2\x06\xf2\x3a\x2f\xf9\xea\ +\x56\x4a\x35\x13\x59\x6d\xde\x46\x93\xf8\xfa\xc9\x63\xdd\x23\x22\ +\xc5\x2a\xd0\x47\xcd\xe2\x35\xdb\x6e\xfa\x06\x58\x7f\x69\xd2\xb9\ +\x7a\x42\x21\xc0\x51\x63\xb8\x8c\xe7\xba\xb6\x83\x2c\xb6\xaf\xec\ +\xb8\x7b\x15\xaa\x61\xdb\xda\x03\x74\xa9\x0f\xe3\x1f\x0f\x9f\xb8\ +\xab\x68\x41\xf7\xd9\x54\xfa\xbd\x5d\x8d\x83\x07\x16\xc8\x52\xcc\ +\x05\x84\xe8\x02\xf9\xd1\x82\xc0\x72\x9b\xdf\xf3\xe6\x6d\x0f\x5a\ +\xb1\x09\xb7\x08\x2e\x4b\xfe\x30\x03\xe4\x99\x25\x1c\x22\x50\x0e\ +\x83\x02\x6a\x63\xd2\xbe\x11\x13\x5f\x07\xf3\xf5\x14\xea\xb2\x89\ +\xb1\x09\x60\x54\x2d\xbf\x93\x92\xdf\x35\xb7\x80\x99\x67\xd1\xca\ +\xcc\xbd\xcc\xfb\xee\xf9\xdd\x82\x5a\x5e\xf3\x13\x5b\x6d\x55\xcf\ +\x92\x46\xa9\xdf\x33\x00\x59\xe6\xbf\x36\xe8\x90\xfd\x55\x6b\x79\ +\xc1\x99\x24\xae\x86\x51\xaf\x1c\x6d\x8f\x0c\x66\xaa\xec\xc4\x39\ +\xc5\xbf\x6f\x18\x46\x11\x67\xd9\x63\xcc\xa4\xa2\x2d\x05\xb8\x0e\ +\x46\x9d\x7e\xd7\xe5\x68\x5b\xca\xd3\x0f\x7f\xb0\x7c\xf4\x3d\x9f\ +\x29\x27\xa7\x9b\xe8\x58\x0d\x35\xc3\x82\x05\x0b\x16\x2c\xb8\xad\ +\xc8\x2b\x8e\x05\x0b\x16\x2c\xb8\xb7\x80\xf5\xa2\x97\x77\x04\xd2\ +\xb0\xdc\x48\x69\xf3\x90\xb5\x2b\x47\x0f\x3f\x5e\xde\xf3\xad\x9f\ +\x2f\xc7\xaf\x5f\x2b\x6f\xe1\xeb\x88\x70\xb3\x85\x5f\xfc\x75\xd9\ +\x5a\xa6\x5d\xd1\xf5\xff\xc9\xc8\xcf\x1a\xcb\x5f\x5f\x02\x4b\x34\ +\xde\x7f\x43\x12\xe4\x92\x3b\xc0\xc8\x3d\xb9\xb1\x80\xcd\x6a\x03\ +\xb3\x78\xaa\x1e\xce\xad\xf4\x49\x3c\x45\xbf\xeb\x14\x40\x82\x09\ +\xb5\x5a\x45\x4b\xf9\x35\x92\x7b\x41\x29\x80\x55\x7f\x67\x22\xc4\ +\xc6\x26\xac\xf8\x56\xc9\x35\x40\x25\xbd\x55\xc3\xd6\x9f\xb3\xf5\ +\x60\x94\x6c\xd8\x7e\x0d\x0f\xf0\xf6\x46\x7e\x27\xb1\xce\x95\xe0\ +\x41\x58\x87\x3e\xba\xc6\x44\xec\x24\x89\x19\xa6\xa1\xf3\x08\xae\ +\x0b\x4e\x4e\x3a\xfa\x4b\x73\xbe\x65\x1d\x35\xa2\xb6\xc8\x80\x07\ +\x90\x72\x5c\x35\x76\x0e\xd5\xe9\x92\x8e\xed\x59\x38\x9b\x71\xb7\ +\x00\x3d\xf5\x72\x19\xb8\x68\x9e\xdb\xdb\xfe\x7e\x6b\xba\xbc\x0d\ +\xf3\xbd\x89\x33\x0b\x42\x33\xff\xcc\xc7\x10\x67\xb8\x5b\xf4\xe7\ +\xef\x14\xfb\x19\xde\x18\xea\x01\x53\xcc\xb9\x3b\x98\x13\xf4\xa1\ +\xf2\x19\xed\xe6\xa0\x33\xf8\x99\x7a\x10\x52\x00\x1f\xa2\xea\x6f\ +\x45\x28\xd5\xca\xd6\x4d\x8d\x63\x38\xd3\xa5\xfd\xbd\x85\x4f\x12\ +\x90\x80\x4d\x6d\x83\x40\x72\x31\xab\xb5\x9f\x1f\xab\xe6\x1e\x3f\ +\x2d\x38\xae\x52\x73\x77\xf8\xda\x86\xd7\x39\xd5\xb1\xd9\xc9\xeb\ +\xe0\xf1\xee\xb4\xbc\xbe\xbb\x52\xae\x5e\x79\xbc\x3c\xfd\xb5\x9f\ +\x2f\xd7\xae\x1e\x95\x8d\xf8\xf8\xbf\xd3\x2c\x8f\xa5\x55\x40\xce\ +\x3e\x20\xcb\xe7\x41\xce\x9b\x73\xb8\xbd\x6f\xd7\xeb\x91\x7d\xc1\ +\xad\x23\x1f\xd7\x38\x1e\x18\x60\x57\x20\xe3\x16\x75\x5b\xd6\x9b\ +\xa3\xf2\xf2\x47\xbf\x53\x1e\xdd\x3c\x56\x36\x72\xfe\xec\x36\xc7\ +\x64\x00\xfe\x26\x04\xb6\x94\x72\x5e\x01\x45\xd3\xc3\x2c\x31\x71\ +\xfe\xa6\x2d\x4c\x6a\x15\x54\x72\x57\x27\x74\x26\x86\x0c\x68\x33\ +\x46\x43\xed\x4b\x6a\x74\x8c\x94\xc6\xe7\xb0\x9c\x59\x65\xd9\x66\ +\x63\x42\xfe\xaa\xc7\xe0\xc6\x56\x30\x8a\x73\x9b\xd4\x88\x86\x5a\ +\xfb\x9b\x51\x6d\x94\x8c\xdf\xbe\xde\x88\x92\xf4\xde\x55\xe1\x8a\ +\xee\x23\x00\x0b\xad\xd8\x20\xa9\xed\x0b\xfb\xe4\xf4\x9c\xc4\x44\ +\xf5\x25\xbb\x00\x9a\x5b\x74\x5f\x92\xc5\x1d\x82\x10\xb3\x4d\x64\ +\x5b\xb9\x9b\x01\x1b\xed\x0b\x65\x36\x98\x47\x48\xf5\x30\xe0\x94\ +\x76\x19\xb5\xec\x8b\xaa\x9e\x43\x8e\x29\x0d\xb2\x71\x1e\x60\x72\ +\x36\x4d\x00\xa7\x13\x2c\x1d\x05\x24\xdc\x1b\x08\xb4\x04\xd7\xb2\ +\x15\xfb\x9d\x91\x46\xa1\x02\x06\x29\x7e\xdc\x4d\xad\x3c\xe9\x4b\ +\x7d\xf0\xe4\x19\xa4\x8f\x34\x8a\x2c\xbf\x7c\x3d\x10\x30\x87\x05\ +\xea\x98\x40\x40\x89\x9d\x13\x55\x49\xfa\x21\x3f\x91\x85\x08\x4b\ +\x65\x60\xff\x95\x87\xff\x6f\x07\x7f\xe4\x6d\x93\x86\x88\x3f\x02\ +\xc9\xa0\x07\xf6\xaa\x55\x84\x5d\x90\x65\x42\xfb\xd2\x19\x0d\x76\ +\xed\x26\x9f\x8b\x6e\x6f\xaf\xee\x0c\xb3\x4b\xd5\x30\xd2\xb8\xe8\ +\xbe\xf9\xb9\xd4\x62\x68\xeb\x6a\x8e\x93\x54\x9e\xb1\x09\xc1\x39\ +\x8a\x6a\xd2\xc3\x76\xdc\x5a\x88\x6f\xe0\x0e\x93\x08\x35\x57\x25\ +\xd2\xd6\xc7\x89\x51\xb9\x16\x51\x03\x03\xd3\xa6\xa6\x96\x21\x24\ +\x57\x30\x73\xde\x6c\x77\x74\xed\x42\x1d\xb6\x02\x07\x06\x5d\x4a\ +\x17\xd2\x80\xf7\xba\x24\x68\xcd\xeb\x6d\x8d\xf3\x55\xe2\x64\xa1\ +\x85\xbf\xab\xc5\x1f\x27\x81\xb7\x5a\x1d\x97\x93\xeb\xf2\xba\xf8\ +\x13\x7f\x55\x7c\x1b\x5b\x87\x61\x93\x7b\xb0\xaf\xb5\x05\x0b\x16\ +\x2c\x58\x70\x59\xa8\xeb\x9a\x05\x0b\x16\x2c\x58\x70\x2e\xe0\x76\ +\xc2\x97\xac\x5c\xc6\x52\x59\x95\x6b\xb2\xba\x7d\xf7\xcb\x9f\x2b\ +\x37\x9e\xff\x68\xf9\xf3\x57\xdf\x28\x47\x9b\x6b\xfc\xfa\x86\xf5\ +\x7a\xa3\x6f\xa4\xe1\x9f\x0a\xe3\x8d\x35\x03\xd6\xda\x88\xc7\xfd\ +\x50\xb3\x04\x86\xe2\x05\x04\x7c\xda\xcd\x6e\x9a\xf2\x56\x6b\x2c\ +\xb3\x7d\x8b\x84\xee\x33\x40\xe5\x77\x42\x88\x20\xbf\xf9\xde\x0b\ +\xf0\x68\x55\xc0\x43\x8d\x4c\x6e\xd3\x4a\x01\x87\x1a\xb0\xd5\xd8\ +\x19\x58\x2a\xd4\xd3\x1b\x30\x45\x8d\x26\x29\xc4\xb8\xb3\xce\xf9\ +\x47\x09\x04\x64\x34\x3b\xa5\xf2\xe9\xa9\x8c\x73\xb2\xd7\xf0\xdc\ +\x50\xb6\x27\xc4\x38\x58\x7c\x4f\x32\x3d\xcc\x9d\xdf\xc3\x15\x7e\ +\xae\xb4\xa4\x2e\x84\xba\xdf\x54\x69\x41\x45\xab\xca\x02\x8d\xb1\ +\xd1\x84\x59\xf6\x4f\x6d\x53\xd0\x3e\xe7\xcc\xe8\x38\x59\x85\x7c\ +\x48\x8a\xbb\x0d\xde\xef\xcb\xee\xff\xad\xe4\xbb\x95\x7e\xe4\x76\ +\xf7\xe7\xa9\xe7\xca\x10\x11\xec\xe7\x17\x4f\x22\xcd\x3f\x4c\xec\ +\xc6\xca\x3b\x08\x41\x14\x41\x7e\xa7\xbd\xea\x32\x25\xb5\xf3\x0c\ +\x31\xe1\x24\xc3\x70\x04\xce\x48\xaa\xfb\x9e\x49\x83\x80\x6c\xf2\ +\xe1\x8b\x6d\x6a\xf5\x8c\xb6\xce\xf2\xc7\x15\x2d\x55\xcd\x5a\x83\ +\x52\x4b\xb3\x20\xc7\x89\x5d\xc0\x28\x7e\xdc\x25\x58\xd5\x13\xdb\ +\x6e\x3e\x22\x44\x55\x0b\xce\x0f\xcc\xb9\x22\x72\xfe\x5e\xf3\x5f\ +\x5c\x41\x3a\xde\xae\xca\xab\x6f\x9f\x96\xa7\x5f\xfe\x6a\x79\xe2\ +\xf9\xe7\xed\x53\x6b\x88\x31\x0c\xd2\x06\xb4\xf1\x5b\x43\xce\x81\ +\x76\xbc\xad\xb9\x36\x33\x9c\xb3\xaf\x8f\x0b\xce\x8f\x7e\x2c\x71\ +\x11\xda\x71\xe2\xba\x48\x5e\xbf\xd7\xab\x93\xf2\xe4\xa3\xcf\x95\ +\x0f\x3e\xfe\x72\xd9\x9c\x5c\xc1\x53\x45\xf1\xd9\x3c\x84\x78\x13\ +\xda\x25\x0f\x14\x14\xfd\x0b\xa5\xf0\x59\xee\x06\xe2\x5b\xe1\xab\ +\x24\x5d\x99\xc0\x6c\x72\xde\x8f\xbc\xba\xbe\x40\x62\x74\xd8\x1a\ +\x70\x62\xd7\x5e\x1f\x5f\xf5\x61\xe6\x49\xbc\x1a\x12\x17\x4d\x5a\ +\x5d\xed\xa2\x40\xa7\x8d\x1b\x02\x92\x32\xd4\xa6\x6e\xf3\x57\x5a\ +\x92\x6d\x16\x72\x8a\xd4\x6a\x71\x3b\x8e\x81\x64\x94\x5f\xa3\x50\ +\x40\x1b\xd0\x47\xa3\xa5\x76\xdf\x68\xed\x22\x50\xbb\x03\x21\x3d\ +\xa2\xa0\xdd\x8e\xb9\x71\xd6\xcd\x7a\xaf\x02\x39\x40\x31\x5a\x28\ +\x9e\x9b\x80\x5e\x19\xea\xf3\x7c\x99\x27\xa0\x1a\xb6\xda\xa6\xc6\ +\x4b\xa1\x2f\xd9\xb3\x39\x20\xa3\x11\x06\x23\x48\xc1\x1b\xa3\xce\ +\xaf\x39\x60\x37\x31\xef\x62\xf0\xd4\x99\xc4\x16\x18\x36\xb1\xab\ +\xab\x1f\xc3\x11\xc6\x0e\x34\x8d\xa2\x5e\xe3\x38\xb5\x0b\xe1\xbe\ +\x49\xb1\x8a\x85\x36\xeb\x4b\x15\xd2\x3e\xca\x56\x39\xb8\x83\x10\ +\x81\x3c\x01\x6a\x93\x29\x52\x96\x8d\xd9\x20\xd0\xae\x0a\x05\xc4\ +\x83\xe7\xb6\x38\xf7\x92\xcd\x05\x54\x9a\xc1\xe5\x1e\x62\x31\x23\ +\xab\x44\xc8\x6d\x64\x7b\x8b\x4c\x02\xbc\xb5\x0c\xe5\x84\x27\x13\ +\x7a\x13\x84\x7a\x92\xb0\x0a\x5f\x82\xee\xb1\x6e\x7d\xff\xb9\x65\ +\x2c\x24\xb5\x11\x91\xa0\xde\xbd\x29\xcb\x93\xc3\x8a\x31\x4d\x31\ +\x0e\x1e\x34\x9d\x2f\x6d\x26\x68\x30\xb5\xe9\xb1\xe9\x51\x33\x8b\ +\xb3\xf1\x43\xb1\xfc\x61\x6f\x13\x8c\xda\x18\xc3\xec\x73\x6e\xc7\ +\xc4\x0f\x83\x14\xda\xdd\xa9\xb5\x6b\xbe\x07\xdc\x8a\x71\x3a\x52\ +\x99\x59\xe5\x1e\x83\x11\x96\x50\xe1\xcb\x25\x83\xf3\x43\x5f\x5e\ +\x74\x3c\x78\x5c\x77\x57\x44\xdd\x96\xc7\x1e\x7d\xb6\xbc\xf0\xee\ +\xcf\x15\x59\x56\x95\xcd\x1a\xaf\x93\xa4\x2c\x58\xb0\x60\xc1\x82\ +\x3b\x8c\xb4\xd2\x5a\xb0\x60\xc1\x82\x05\xe7\x01\xd7\xaf\xb2\xbe\ +\x8d\x9b\xa2\x53\x5b\x36\xcb\x62\xf8\xea\xd5\x07\xcb\xfb\xbf\xf3\ +\xed\xf2\xfa\xdb\x57\xcb\x1b\x37\xb7\x65\x75\x02\x22\xfc\x78\xdc\ +\x28\x2c\xbc\xb1\x66\x37\x49\xf8\xab\x33\x3e\x84\x24\xea\xf2\x3a\ +\xf2\x42\xf2\x3b\x12\xac\xab\x21\xca\x9d\x46\xf3\x00\x49\xd3\xb3\ +\x8e\x5b\x24\x10\x5c\xb4\xa2\xc1\x15\xe6\x26\xb2\xdc\x3b\x1a\x5f\ +\x03\xf3\xb0\x42\x3f\x41\xd6\x36\x68\x9a\x04\xc2\xe0\x46\xee\x88\ +\x8a\x86\xda\x3b\x97\xc4\xdf\x76\xb9\x01\xa2\xd5\x6d\x24\xbf\x01\ +\x14\xd5\x6f\x2a\x1b\x7f\x83\xb6\x6d\xa0\x61\xe9\x9d\xcc\x38\xd4\ +\x40\x57\x6d\xf2\x5c\xf0\xae\x12\xa6\x4c\xb7\xc8\xab\xe7\x0d\xf7\ +\x07\x63\x2b\x5c\x6f\x2b\xa4\x26\xd9\x00\x08\x95\xe2\xa7\xd1\x14\ +\x67\xc4\x0b\x10\x9a\x8b\x6f\xef\x06\xf4\x7d\xbb\x5d\x3d\xbb\x95\ +\xbc\xb7\xab\x4f\x67\x21\xb7\x3b\x7b\x9a\xd0\xae\xcc\xc3\xfa\x39\ +\x4a\x64\x67\x63\x7d\x0a\x62\xa8\xdc\x51\xd4\x59\xed\x0d\xfd\x61\ +\xcc\x19\xc7\x99\xa6\x6d\x82\x67\xd7\x93\xe1\xac\x3e\x0c\x91\x83\ +\xe6\xe4\x0c\x5c\x7c\xfa\x1b\x14\xd4\xe8\x85\x17\x47\x7f\x9d\x76\ +\x6a\x82\x78\xe6\x2f\xea\x19\x4c\x47\x64\xda\xc2\x39\x72\x46\x3a\ +\x7b\x9d\xc2\x4b\x99\x14\xfe\xf1\x08\xd2\x9c\xee\xca\x76\x77\x5a\ +\x7e\xb0\x15\xe3\xe9\x23\xe5\xb1\x2f\xff\x4c\xb9\x2a\x76\xfe\xad\ +\x03\xdc\x08\xcd\xf0\xa6\xe1\xc8\xf2\xad\xe0\xac\xf8\x7d\x7e\xef\ +\x43\xc6\xad\xf6\xe7\xc7\x1d\x18\xd3\x7e\x5c\xa1\x73\x5c\xcd\x21\ +\x32\x5f\xf9\x44\xc5\x29\xf5\xe2\x73\xdf\x2a\xd7\x4e\x1f\x2c\xab\ +\xdd\x46\xec\xb2\x10\x92\x17\x34\xae\x75\x10\x83\x75\x11\xbe\x23\ +\x12\xb2\xe5\xe6\x4b\xa5\x88\x3d\xaa\xcd\x88\x09\x08\x1f\x43\x5a\ +\xea\x93\xb1\x39\x6f\x70\x8a\xb1\x55\x40\x87\x7a\x33\x27\xe4\x4e\ +\x70\x75\xe2\x97\x7a\xd4\xdf\xe0\x89\x14\x0f\xc4\x69\xc4\x9c\x57\ +\xe5\x1e\xad\x45\xb4\x29\x85\xa6\x76\x1c\x70\x11\x4b\x1b\xa4\x9b\ +\xc3\xfd\xb4\xa1\x56\x83\xce\x05\xee\x54\xa8\x9f\xe2\xa4\x46\x15\ +\xeb\xde\x09\xd4\x1e\x5b\x92\x4d\x4e\x55\x1d\x1f\x35\x34\xe9\x44\ +\x86\x9a\x4d\x0a\x73\x10\xce\xb0\x82\x8f\x42\x71\x7f\x21\xf3\xd7\ +\xec\xa8\xf3\xd1\xa8\x7e\xba\x08\x97\xf2\xfa\xcd\x20\xe3\xa2\x7d\ +\xcb\xaf\x4a\xa2\xb5\x09\xd4\x67\x3c\x94\xc6\x9d\x78\x8a\x6a\x68\ +\x38\xb9\x24\xd0\x64\xfb\xc5\xc3\xe4\xc5\xab\xba\xe1\x96\x9f\x78\ +\x84\x20\x05\x15\xae\x51\x47\xdd\x07\x48\x35\x46\x51\x25\xf7\xc3\ +\x12\x39\xc4\x14\xd6\x4c\x35\x54\x93\xfb\x07\x24\xc0\xcd\xb2\x4f\ +\x3a\xb6\x30\x59\xcc\x28\xc4\x5c\x26\xaa\x5c\x37\xb6\x4f\xba\x75\ +\xa2\x55\x22\x98\xbd\x47\x10\x04\x22\xab\xea\xc6\xaa\xb9\x45\xd1\ +\xb6\x71\x26\x8c\x17\xf4\xa4\xb7\x29\x44\x4b\x3e\xc7\x4a\x26\xcf\ +\x69\xef\x9d\x81\x23\x92\xbc\x66\x86\x05\x25\xf2\x88\x50\xbf\xb2\ +\x14\xe8\x33\x7a\x44\x8b\x88\x98\xba\x2a\x72\x5a\x41\x73\xdf\x4b\ +\xdf\x38\xb7\x5a\xdc\xde\x25\x99\x00\x3c\x7d\xd3\x2a\xd0\xa4\xac\ +\xf1\x71\x7f\xdd\x81\x0c\xa7\x05\x1d\xdc\xd4\xf6\xa4\x3b\x66\x88\ +\x4a\x5f\x67\xf8\x8c\x40\x80\xe7\x02\x6b\xd9\xe1\xed\x6a\xa7\x36\ +\xe1\x1d\x6d\x76\xe5\xe6\x8d\x6b\xe5\x53\xef\xff\x76\xb9\x22\x3f\ +\xbc\xaf\x23\xdb\x01\xad\xb5\x2c\x58\xb0\x60\xc1\x82\xdb\x87\xbc\ +\xfe\x59\xb0\x60\xc1\x82\x05\xe7\x85\xdd\x48\xe9\x2d\x61\xc5\x91\ +\xac\x7c\xdf\xff\x99\x2f\x96\x07\x3f\xfc\xe9\xf2\xbd\xd7\x5e\xd7\ +\xbf\x1e\xc3\x27\xcc\xb0\xfa\xe5\x5f\x58\x4b\x4c\x7a\x53\x4d\x2b\ +\xcf\x61\xab\xeb\x00\x1f\x1f\x89\xdf\xa6\x6c\x51\xf4\xb6\xdb\xf8\ +\x22\x7a\x84\x67\xa8\x29\x20\x48\xa1\x23\x11\x03\x1a\xc1\xfe\xc7\ +\xc3\x0e\x25\x39\x35\x42\x20\x48\x51\xae\x9a\x80\xc6\xdf\xc3\x53\ +\x12\xd2\xeb\x46\x17\x50\xf7\xc0\x2e\x01\xc8\xf0\xa7\x18\x30\xc8\ +\x12\x5b\x66\x2b\x2d\x11\x0d\x78\xa0\x84\xaf\x3b\x54\x45\x2b\x15\ +\xf8\xa8\x4e\xd5\x11\x1a\x97\xf1\xbb\xee\x05\xba\x34\x7d\x56\x0d\ +\x93\x2d\xef\x04\x55\x73\x4e\x93\xb2\x0f\x14\xd0\xcf\xe6\x11\x6f\ +\x72\x86\xe8\xb1\x7f\x6d\xb6\x00\xbd\x29\x0e\x62\x52\x2b\xdc\x31\ +\x4b\xc8\xd0\xd1\x1b\x15\x47\x96\x2f\x03\x7d\x3b\xb9\xdc\x6e\xdc\ +\x6a\x3b\xb7\xda\xc7\x83\xe2\x49\x1a\x9d\x24\x1d\xf2\x69\x02\x2a\ +\xe7\x1d\x33\xda\xb9\x44\x33\x25\x40\x7c\xfd\xdc\x54\x9d\x53\x8c\ +\x7c\xb9\xcd\x84\xe6\x1a\xcc\xa9\x67\xf2\x67\x73\xa4\x9c\xbd\x30\ +\x0d\x33\xb9\x14\x35\x56\xa5\x9c\xab\xf7\x09\xb2\xdb\xd0\xa7\x1f\ +\x50\x84\x34\xe8\xc4\xa8\x5f\xb0\xd9\xf1\x88\x3c\x23\x1e\x30\x67\ +\x67\xa4\x8d\xac\xa6\xea\xb8\x3e\xea\x7d\x82\x56\x6f\x43\x5c\x93\ +\x64\x1c\xef\x2e\x83\x08\xfa\x17\xd2\xd8\x9c\x96\xb5\x28\x60\x79\ +\x79\x7b\xb7\x2a\xaf\x5e\x5f\x97\xc7\x3f\xff\xb5\xf2\xc4\x07\x3e\ +\x58\x8e\xf0\xe9\x34\xfe\x58\x0e\x0d\x4b\x09\x6f\x03\x90\x3f\xc3\ +\xdb\x42\x7d\x48\xbb\x1e\xef\x5c\xe8\x5e\x16\x9c\x1f\x73\xe3\x46\ +\xbb\x0c\x32\x7e\xa5\xec\xf0\xff\x61\x56\xdb\xf2\xd4\xe3\x2f\x96\ +\xe7\x9e\xfc\x72\xb9\x72\x2c\xe7\xd6\x7a\x27\xaf\x7b\x72\xfe\xe0\ +\x7f\xa9\xf1\x6b\xb5\xfd\x61\xa8\xd8\xf8\x3a\x5b\x0f\xa8\x9e\x65\ +\x5d\x63\x74\x57\x4e\x95\xb3\xcd\x21\x36\x9a\x3d\x87\x71\x26\x54\ +\xe7\xa9\xe8\x50\xb1\x1a\x34\x8b\xf4\x8a\xd7\x94\x7b\x53\xc0\x08\ +\xe6\xd6\x88\x8e\xeb\xaa\xe4\x1b\x7d\xa2\x24\x7f\x92\x4b\xdb\x34\ +\x5d\x44\x86\xa6\x74\x70\x43\xf5\x1a\xd7\xba\xba\x69\x95\xe2\xbd\ +\x77\xbf\xd5\xb0\x98\x41\x75\xa0\x4a\x21\x5a\x6d\xd4\x00\x66\x0b\ +\xa8\xd1\xd3\xe4\x73\xb0\xeb\xe2\x40\xe5\xb2\x2a\x90\xab\x18\x39\ +\x04\xc9\x5d\x85\x30\x08\x92\x4c\x31\x93\x4d\x8e\x3d\xee\xb9\x80\ +\xd1\xd8\x2b\x33\xd6\xf6\xab\x4d\x39\x26\x51\xc1\x59\xa9\x16\xf0\ +\x75\x7f\xf4\x0f\x10\x20\x7a\x0e\x5f\x02\xb7\xd0\xbe\x90\x63\x04\ +\xe5\x84\x50\xfd\x04\x8c\xa3\xe3\x22\x35\x1b\x64\x0f\xd4\x24\x00\ +\xd3\x46\x99\x5b\x15\x95\x53\xad\xf4\xec\x07\x29\xf8\xdf\x52\x15\ +\xfe\x86\x9d\xf6\x6e\xc7\xe6\x7d\x1c\x22\x25\x6b\xd9\x78\x6d\x68\ +\x25\xf7\x43\xd4\x16\x74\xab\x3e\xb4\x63\x12\xad\x8a\x08\xa8\x5b\ +\x25\xb1\xb0\xa2\x11\x02\x8a\x39\x1c\x14\xab\x1e\x92\x09\x59\x87\ +\x1c\xb9\x1a\xb8\x53\xb5\x7c\x94\x32\xfa\x50\x7d\x35\x85\x00\x8f\ +\xc8\x96\xc6\x31\x94\x43\x40\x6c\x66\x64\x4c\xed\xde\x23\x8e\xdd\ +\x28\x94\x3a\xbc\xe2\xd4\xdf\x8a\xf0\xb5\x61\xf9\x2b\xe7\x1b\x3e\ +\x21\x8e\x4c\x26\x60\xd0\x7b\x2e\xe5\x7b\x14\xec\x4a\x9e\xe6\x19\ +\xa3\x8d\x17\x4c\xda\x12\x98\xbb\xb2\x6c\x7e\xe6\x7a\xd8\xad\x5a\ +\xe7\xf0\x94\xb5\x41\xee\x61\x6c\xf5\x57\x60\x19\x78\xde\xe6\x7d\ +\x14\xa0\x4d\x2e\xa4\x50\x64\x3e\x90\xd7\xb2\x1d\xfe\x6f\xe8\x0e\ +\xff\x23\x0d\xaf\x75\x62\x3b\xb9\x59\x1e\xbb\xef\x7d\xe5\x85\x67\ +\x3f\x5f\xb6\xf8\x04\x37\x03\x17\x2c\x58\xb0\x60\xc1\x3b\x85\x65\ +\x1e\x5e\xb0\x60\xc1\xbd\x09\x5f\x73\xbe\x83\xe0\x72\x98\x8b\xe1\ +\x58\x0e\x0b\x7c\x75\xbc\x2a\xeb\xab\x57\xca\x07\xfe\xca\x2f\x97\ +\x1b\x6f\x1e\x95\x1f\x9e\x9c\x14\xfc\xbf\x34\x3c\xf0\xc0\xed\xc6\ +\x1a\x5f\xd1\x40\x5d\x8a\xd4\x98\x8c\x75\x77\x64\x2b\xf1\x76\x8f\ +\x28\x10\xdd\x9c\x7c\x4e\xe4\xa0\xac\x7f\x59\xe8\xe6\x70\x8b\xc0\ +\x3e\x65\x07\x65\xdc\x02\x99\x3d\x15\xde\x18\xf9\x58\xc2\x96\xd0\ +\xa9\x8a\x81\x11\xf7\x1d\xc8\xcd\x37\x77\xac\xf3\x9e\x32\x43\x6d\ +\x95\x53\x59\xaa\xe7\xd4\xb8\xb7\xc0\x58\xa9\xa2\x95\x23\xf3\x9a\ +\x18\x10\x3b\xee\x44\x8f\x80\x1c\xa9\xd8\x6b\x69\xf2\xa8\x32\xe5\ +\x57\x4c\x9a\x1d\xf4\xab\x37\x05\xdc\xc7\x06\x94\x45\x91\x27\x9c\ +\x3a\xd5\xaa\xe0\x0d\xab\xd4\xd9\x96\x41\x1f\x12\xec\xeb\xf0\xc1\ +\x98\x6b\x45\x91\xfb\xe1\xf2\x65\x94\x77\x02\x97\xd1\xf6\xad\xc4\ +\x1f\xdc\x3e\x49\x38\xb8\x10\xf4\x20\xcf\xc6\xb9\x83\x34\x3f\x21\ +\x6c\x6e\x08\x3d\x61\x98\x68\x64\x6c\x12\xa7\x54\x95\xdb\x46\x29\ +\xc1\x69\xea\x1b\xe5\x1d\xe3\xbc\x7c\x05\x67\x29\xab\x2b\x6a\x4f\ +\x24\xdf\x41\x29\xbd\x75\xd4\xb5\x34\x79\x00\x56\xed\xb5\x89\x07\ +\x35\xf1\x30\xd5\x8d\x82\x24\xaa\x3f\x1b\x30\x19\x1e\x82\xb4\x53\ +\x14\x93\xae\x90\x3c\x62\x6b\x7c\xcd\xc4\x14\x33\xae\xc2\x14\x56\ +\xb2\x41\x8d\x79\xc4\xe3\x59\xd3\xa9\x2f\x52\xb9\x9b\x78\x6d\xc3\ +\x1b\x1e\x37\xb6\xbb\xf2\xc3\xe3\x4d\x59\x1f\x3d\x5e\xde\xfb\xf3\ +\xbf\x54\xae\xca\x6b\x1f\xbf\x02\x59\x82\xd9\x5a\xbf\x6f\x48\xca\ +\xc4\x09\x1d\xe5\x96\x31\xca\xd7\xb7\xb9\xe0\xf6\xa2\x3f\x06\x7b\ +\xc7\x7f\x27\xe7\x4f\x29\x2f\x7d\xe8\x97\xcb\x23\xab\x77\x95\xa3\ +\xed\x46\x1f\x34\xf2\xf5\x10\xeb\x0e\x70\xa4\xc6\xa7\xd4\x90\xd7\ +\x74\x13\xda\x2d\xdb\xad\x8d\xe7\x6e\xf4\x5d\xaa\xd0\xd8\x1e\x7e\ +\xb5\xb4\xad\xcc\x67\xe9\x3d\x91\xd5\x1d\x56\xb3\x9a\x4f\x43\x1f\ +\xdc\x63\x8a\x66\xd5\xcb\x4a\x19\x7c\x5b\xc3\x62\x80\x68\x57\x10\ +\x34\x77\x06\x2a\x3b\x2e\x51\x0a\x52\x1a\x6e\xa3\x28\x9c\x92\x5c\ +\xb5\x4d\x35\xba\x2b\xf3\xba\xd9\x47\x63\x5a\x53\x85\xd8\x27\xae\ +\x6c\xd8\xeb\xac\xb0\xe5\x14\xc1\x1a\x1b\x33\xf0\x0d\x4a\x77\x06\ +\x60\xd0\x75\x7c\xa8\x44\x9d\xff\xdc\x84\x3a\xdc\x01\xb7\xe8\x99\ +\x52\x35\x40\x34\x49\x52\xed\xd0\x55\x56\x3d\xc1\x1b\xb3\x1d\xc8\ +\x7e\x95\xeb\x88\x7b\x6e\x7f\xa3\x49\x35\x87\x05\x57\x43\x83\x53\ +\xce\xed\xfe\xb8\x08\xe3\x11\xd9\xb8\x9d\x04\x8a\x8a\xae\x75\xd6\ +\x6a\xf0\x6e\x09\x29\xbf\xce\x69\x3e\x6d\x4b\x77\xcd\x03\x2a\x7c\ +\x97\xc3\x65\x75\x7d\x45\x15\x84\x4f\x04\xfd\x0d\x78\x3c\xab\x70\ +\x58\x6c\xf6\x55\xa7\x42\xd4\xb0\x64\x57\x6f\x74\x3d\x71\x28\x36\ +\xf6\xd4\xd7\x1e\x9d\xc3\xfb\xcb\x21\x9b\x0d\x4a\x48\x1c\x1f\x66\ +\x18\x69\x1e\xc5\x8b\x0d\x5e\x5f\xb9\xe4\x28\xa2\x0b\x9c\x5e\x0e\ +\xc6\xcf\xd5\xa8\x1d\x62\xba\xdf\xc1\xb7\xf8\x29\x34\xa6\x71\xcf\ +\xe6\x1f\xa1\x92\x47\x7d\x6b\x96\x3e\x44\x5e\x17\xb6\x6b\xc4\x1e\ +\xf9\x7e\x1c\xcc\x96\x2b\x89\x99\x5b\x47\x57\x15\x61\x44\x7b\x3e\ +\x16\x66\x90\x81\x45\xbc\xb2\xf5\x5a\xc3\x3d\xdd\xe9\xe9\x49\xd9\ +\xc9\x49\x00\x0b\xfd\xa7\xdb\x72\xf3\xed\x4d\xf9\xe2\xc7\xbf\x53\ +\x1e\xb8\xf2\x90\x3e\x01\x90\x14\xf5\xf8\x2d\x58\xb0\x60\xc1\x82\ +\x3b\x0d\x5f\x21\x2d\x58\xb0\x60\xc1\x82\x0b\x01\x0b\x62\x2c\x67\ +\x75\x41\x1b\xcb\xda\xd3\x75\xd9\xc8\xe2\xf7\xe9\x97\xbe\x54\xd6\ +\x2f\xbc\x54\xfe\xec\xd5\x1f\x94\xab\x9b\x2b\xa5\x6c\x74\x79\xcd\ +\xff\xa7\x66\x6f\xaa\xc9\xed\x23\x67\xe3\x7a\xb3\xab\x5b\x7c\x85\ +\x91\xeb\xbc\xb1\x42\x91\x06\x9a\xc5\x3b\x05\x6c\xb4\xe8\x5f\x67\ +\x2b\x68\x91\x8d\x5a\xdc\x9e\x62\x05\x4c\x49\x83\x6c\x44\x81\xe8\ +\x9f\x78\xe2\x7d\x73\x26\x1b\x06\xa6\x83\x30\xed\xb7\xd5\x68\x57\ +\x76\x70\x92\x37\x73\x0c\xec\x99\x76\xef\x6c\x18\xaf\xd2\xbd\x0d\ +\x8c\xab\xc9\xee\x94\x1a\xa2\x17\x38\xdd\xa5\x1d\x80\x86\xba\x71\ +\x64\x71\x16\xca\xf1\x1c\x80\x8d\x83\x99\x22\x07\x8d\x0e\x55\xe0\ +\x83\x14\x37\x7e\x99\x1c\xb2\x63\x62\x50\x34\x09\x2a\x66\xd8\x67\ +\xe0\x62\x51\xf7\x1a\xb0\x97\xb7\xba\xa7\xb7\x9a\xe3\xe0\x58\x7b\ +\xc0\x95\x71\xbe\x76\xeb\xb9\x34\xcd\x94\xe0\x4f\x77\x80\x4c\xec\ +\x1a\x1b\x74\x87\x18\xf5\x09\xd4\xde\xce\xf0\x99\x1c\x6e\xd6\x18\ +\x8b\xc4\x83\x07\x95\xda\x64\xa9\x23\x33\xe9\x04\xa3\x5e\x39\xaa\ +\x2f\xa4\x10\x90\xd1\xb2\xc2\x96\x1a\x68\xa3\x92\xb3\x3a\x0c\xad\ +\x81\x2c\x9a\x52\x32\x43\xf5\x65\x4c\x0c\x02\xd8\xa4\xe4\x83\x30\ +\x4d\x37\x81\x1e\xda\x3e\x9f\xe6\x72\xab\xd6\xb6\xed\x72\x36\x91\ +\xe2\xa4\x9f\x9f\x42\x5b\x95\x9b\x27\xab\xf2\xca\xdb\xa5\x3c\xf3\ +\xe5\x9f\x2e\x8f\x3e\xf3\x3e\x98\x9b\x5c\x84\xe7\xeb\xfb\xda\xeb\ +\xb7\x03\x68\xe3\x90\x76\xf2\x4e\xce\xc9\x0b\xce\x0f\x1f\xbf\x7e\ +\x1c\xed\x98\x60\x5d\xb4\x2b\x47\x52\x9f\x94\xa7\x1f\xfb\x50\xf9\ +\xd0\x93\x5f\x2a\x9b\x1b\xfe\x88\x71\x27\xbf\x52\xb8\x88\xb1\x4f\ +\xaa\xf5\xc7\x92\x7a\x6f\x04\x46\x36\xa0\xce\x27\xc1\xc8\xaf\x9f\ +\x72\x72\xcf\x45\x4e\x20\x44\x72\x25\xdc\x63\x34\x53\xbb\xb3\xf0\ +\xc1\xe2\x56\x6f\xce\xf5\x96\x9d\xf4\xec\xb0\x86\xea\x15\x2b\x5a\ +\x93\x00\x8f\x5f\x85\x04\x63\x8e\x6b\x95\xaa\x1a\x4d\x55\x8c\x2d\ +\x85\x70\xfb\xfe\x28\x4f\x5b\x55\x5f\x25\x56\x9b\x80\x42\xee\x9d\ +\x42\xf7\x1d\x56\xf4\x8d\x26\x85\xf1\x33\xf2\x3c\xe5\x1e\x1e\xad\ +\x44\xf3\x16\xb0\xf5\xfd\x0f\xb7\x18\x28\xd3\x09\xc1\x20\x72\x8e\ +\x23\x18\xec\x5a\xf2\x65\xb3\x0b\x52\x79\x5b\xd9\x8f\x7d\xd3\x4f\ +\x05\xea\x03\x97\xba\xf7\x22\xf1\x3c\xd2\x39\x52\x2d\x31\xa2\xa2\ +\x88\x0d\xbf\x34\xa9\xdc\x82\x99\x2d\xb7\x3a\x11\x8f\xfc\xb1\x1f\ +\x29\x86\x62\xa3\x2b\x8b\x31\x98\xaf\x99\xaf\x12\x1a\xad\x11\x78\ +\xb7\x62\x26\xeb\x2f\x15\xc9\x40\x87\x7a\xd5\x6f\x5b\xee\x8b\xdb\ +\x60\x45\x9b\x2a\xe1\x17\x6f\xf6\x52\xb7\xd7\x71\xcd\xea\x6c\x85\ +\xb9\x55\x76\x57\x4b\x11\x88\x61\xd6\x27\x30\x1b\xab\x91\x5f\xd0\ +\xb6\x5d\x49\x21\xf1\x80\x60\xbc\x2a\x7c\x2c\xb3\xd1\x46\xe6\x0c\ +\x20\x00\x37\x7e\xaa\x39\xfa\x5c\x19\x6a\x4e\x4e\x17\xad\xce\x61\ +\x94\xb3\x41\x30\xb2\x0d\x21\x9c\x3c\xe5\x01\xae\x36\xfb\x26\xc6\ +\x51\x3a\x3f\xa3\x02\x24\x55\x26\x7d\x50\xc3\x34\x1e\xb1\x6a\x1d\ +\xb5\x92\x31\x88\x6f\x42\x92\x32\x6e\x8a\xf0\x2e\xc5\xbe\xcf\xe5\ +\x20\xa6\xba\x5b\xb4\x09\xd1\xc2\x10\x96\x30\xc1\xa6\xd6\xb6\x46\ +\x21\x07\x9f\x48\xe3\xf9\x66\x9f\x42\xdb\x1d\x49\xd9\x96\xa7\x1e\ +\xf9\x78\xf9\xd8\xb3\x5f\x2e\x5b\x61\x1e\xd9\xb7\xd6\x68\x7c\x64\ +\x5e\xb0\x60\xc1\x82\x05\x77\x10\x3a\x13\x2f\x58\xb0\x60\xc1\xbd\ +\x06\x5f\x79\xde\x25\xd0\xa5\xac\x2f\x68\xbd\x73\x47\x65\x7d\xe5\ +\x5a\xf9\xc0\x2f\xfe\x7c\x39\xbe\xf1\x40\x79\xf5\xad\x1b\x65\x75\ +\xac\x0f\x26\x36\x32\xfb\xae\x65\xb3\x5a\x63\x1a\x46\x9c\x2e\xc6\ +\xe3\xe6\x4c\x68\x44\xb3\x9f\xb8\x81\x46\x45\x86\xa0\xab\x9b\xf1\ +\x70\x5f\x86\x27\xed\xa8\x02\x7c\x6b\x92\x5a\x7b\x8f\xa1\x31\x0f\ +\x38\x33\x61\x15\x89\xc0\x9b\x04\xee\x08\xd5\x09\xd2\x6e\x91\x31\ +\xda\x15\x60\xc6\x4e\xf3\x5c\x0c\x10\xbe\xee\xa6\x0f\x48\x3e\x87\ +\x1e\x91\x9e\x39\xd3\xf7\x7d\xb0\x9b\x2a\xc7\x41\x19\xd8\x8d\x41\ +\xdb\x66\xaa\xbd\x54\xd3\x38\xa7\xb0\x40\xcc\x64\xc3\xc0\xb4\x07\ +\xe7\x63\xdf\x8b\xd0\xeb\x6f\x66\xb0\xce\x81\x5b\x1d\xa9\x83\xe3\ +\x1b\x22\x94\xf6\x0c\x18\xe6\x71\x4a\xe3\xac\xc6\xe6\x71\x91\x88\ +\x6d\x8e\xc1\x35\x63\xa8\x1e\x8b\xc8\x69\xda\x24\x0d\x3c\x6a\xf2\ +\xc0\x6c\x2f\x84\xe4\xbc\xc4\x1f\xf6\x6d\x62\xcc\x0d\x64\xe7\x7c\ +\xc3\x99\x45\xb9\xa3\x42\xa5\x49\xe6\x36\xe5\x4e\x1a\x15\x28\x8b\ +\xe3\x14\x3c\x83\xb8\x86\xfb\x3d\xb1\x89\x61\x94\x9a\x18\x25\x30\ +\xf4\x4f\xc7\x04\x48\x83\xa2\x0f\x76\x35\xaf\xb3\xa2\x66\x5b\xa2\ +\xc5\x9c\x0d\x9a\x7b\xd5\x82\x7e\xc7\x43\x51\xf7\x09\x7f\xb7\xdb\ +\xf2\xeb\xf8\x7e\x78\xba\x29\xd7\x1e\x7c\xba\xbc\xef\x67\x7f\xb1\ +\x5c\x11\x17\xff\x77\x5a\xec\xac\xe4\x65\x1b\x09\x4c\xaa\x62\xa0\ +\xe7\xdc\x0e\xf4\x6d\x66\xec\xf3\x2d\xb8\x38\xf2\xb8\xe6\x63\x3c\ +\x38\xde\x2b\x39\x7b\xf0\xff\x66\x3f\xf1\xdc\x2f\x94\x0d\xfe\x97\ +\xda\x4d\xb9\x92\xb0\x70\xc1\x1b\xb7\xa8\x71\x2a\xa1\x88\xbe\xf3\ +\xd7\xda\xc8\x2f\x02\x4c\x91\x17\x0b\x1e\x77\xd6\x4e\x0c\x2e\x13\ +\x0d\x11\xfb\xc0\x35\xe9\x66\xaf\xf7\x98\xf3\x6b\xee\x51\x0b\x82\ +\x6c\x0e\x79\xc0\xb5\x6b\x0a\x6d\x50\x8a\xc6\xd2\xcc\x6c\x61\x1e\ +\x3d\xc9\x92\x0c\xbd\x0f\x6f\x6b\x9a\x10\xb5\x8a\x10\xb4\x85\x3e\ +\x86\x20\x2f\xbd\xaa\xb2\x13\xc6\xb4\xaa\x42\xf2\x64\x9b\xc8\x13\ +\xca\x1c\x9c\x78\x56\x8c\xb4\x1f\x7e\x72\x4d\x1b\x05\xc9\x7e\xd1\ +\xdc\xf8\xa0\x48\x31\x5b\x76\xb9\xcc\x28\x28\x6e\x48\x75\x6d\x5d\ +\x24\x88\xfa\x51\x5d\xea\xb5\x00\x52\x63\x5c\x79\x2e\x43\xf6\xa2\ +\x55\x80\x72\x36\x54\xf0\xcd\x32\xb8\xdc\xad\x87\xc9\x90\xc6\xda\ +\x39\x52\x5c\x54\xc1\x7a\x6b\xc7\x97\xb0\x7f\x7e\xe9\xdd\x21\xbc\ +\x0e\xa4\x31\x4e\xd0\xd7\x3e\x95\xf4\xd7\xf3\xca\x2b\x88\x07\x0c\ +\x9e\x4c\xc1\xe7\x6e\x40\x5f\x3f\xd4\xa8\xf6\x2a\x47\x9f\x04\x21\ +\x9a\xc0\xd6\x92\x1f\xd0\x37\xfc\x4c\x86\x90\xfd\xe2\xcb\xf9\xa6\ +\x88\xc0\x00\xc4\x26\x64\x4f\x7c\x75\x89\x94\x78\x75\x5c\x00\xef\ +\xc3\x9e\x44\x03\xe4\x0c\x75\x5e\x9b\xe6\xa8\xbc\xfc\xca\x9e\xa1\ +\x56\xf0\x9a\xf9\x31\xe4\x9a\xa1\x75\x8f\xf2\xe5\x5e\x19\x1f\xa6\ +\x29\x31\x60\xab\x13\xc1\xfe\x6c\x6d\x66\x87\x5b\xad\x8e\xb6\x2a\ +\x7b\x1c\xe7\xe8\xdb\x84\x6e\x11\xc9\xd5\x9e\xed\x26\xb3\xc2\x28\ +\xf4\x2d\xe8\xfe\xa8\xb5\x7a\x75\x5d\xe4\x56\x0d\xdf\xc9\x86\x9f\ +\x2e\x16\xed\xca\x5a\x72\x6d\xef\x2f\x5f\xfd\xc4\x6f\x96\x2b\x20\ +\x6b\x03\x02\xcf\x00\xb8\x6d\xc1\x82\x05\x0b\x16\xdc\x29\x0c\x96\ +\x2d\x0b\x16\x2c\x58\xb0\xe0\xfc\xe8\x16\xb2\x50\xe5\xee\xe3\xa8\ +\xec\xca\xbb\x3e\xf3\x52\x79\xe8\xa3\x5f\x28\x7f\xf9\xea\x1b\xfc\ +\x0a\x2c\xbe\x7b\x25\x6b\x60\xdc\x24\xe1\x53\x6a\xfc\x5f\x6a\x8c\ +\x91\x6d\x97\xc6\x17\xcb\xdc\xba\xcf\xd7\xcf\xac\x65\x83\xda\x2a\ +\x80\x9f\x52\xe3\x4d\xb8\x2e\xdc\x51\xdc\x07\x4d\x97\xf0\x78\x08\ +\xa5\xbc\xb8\x57\x0e\x12\x7c\x39\x46\x41\x1d\x7c\x6a\x7b\xd0\xdc\ +\x75\x55\x54\xab\xf4\xc1\x15\x76\x0e\xb7\x23\x7d\x6b\x03\x58\x0c\ +\xaa\x9a\x4b\xd0\x28\x8e\x09\x8b\x08\x0b\x1e\x34\xa0\x8e\x66\x47\ +\x3d\x18\x26\x1e\xa2\x67\x8e\x5a\xae\x37\xe6\x26\xa0\xea\x1a\x85\ +\xa9\xd2\x06\x63\x02\x93\x93\xcc\x1d\xfc\x39\x90\x30\xc8\x65\xf0\ +\x74\x3f\xfa\xe8\xf7\xd2\xf7\x5c\x4b\x7b\x53\x0c\xb8\xef\x7c\x38\ +\x7f\x44\x8b\xbd\xf1\x7e\x18\x1b\xd2\x34\x62\xfe\x68\x0b\x12\x5d\ +\x45\x37\x4c\x47\x60\x16\x39\x47\x6a\x0c\xe2\xe9\xe8\xbc\x3d\x07\ +\x78\x65\x0e\x3a\x52\xb3\x76\xd7\xaa\x28\xc3\x7e\xa7\x79\x48\x25\ +\x25\x66\x2e\xf2\x30\xd7\x30\xc1\x1c\x40\xf6\x62\x70\x91\x4d\x98\ +\xe2\x36\xb9\xf0\xd9\x06\x37\x40\x22\x57\xe3\x5e\x44\x4b\x83\xb1\ +\x1d\x66\x30\x63\xf8\xce\x6a\x06\xfe\xc8\x1d\x1d\xd7\xed\xba\xce\ +\xf9\xce\xc0\xa3\x75\x58\xf5\xc1\x26\x6e\x25\xf4\x01\xcf\x1a\x0f\ +\x87\x05\xfc\xea\x3d\x61\xdc\x90\xea\x8d\x1b\xab\xf2\xcc\x57\x7f\ +\xae\x3c\xfc\xd4\x7b\xf5\x35\xc7\x1e\xcc\xeb\x38\x79\x66\x43\xdf\ +\xd0\xed\x82\xe7\xbf\x48\x3b\x88\xb9\xdd\xfd\xfb\x71\x02\xc6\x72\ +\x70\x2a\x10\xb8\x86\xc5\x0f\x17\x4f\xa9\xd5\xae\x3c\xf6\xe8\x47\ +\xca\x27\xde\xfb\xad\x72\xe5\x26\xfe\xb7\x2c\xfe\x4e\x5f\xce\x27\ +\xbe\x89\xe6\x7c\x9c\x5f\xf6\x69\xac\x2e\x31\x2c\x01\x9e\xef\x3e\ +\x97\x28\xa7\x32\xf7\x20\xcd\x2b\x80\x5e\x1d\xd3\x39\x89\x10\x97\ +\xb3\x9b\xd9\x35\x5d\xc7\x90\x72\x01\xaa\x5b\x63\x42\x1d\x20\x65\ +\x55\x78\x70\x6d\x98\x62\x6d\x5f\xfc\xbe\xd6\x74\x13\x40\xb9\xe9\ +\x65\xf0\xb2\x15\xd9\x1b\x0e\x81\xfd\x47\xde\x91\x4f\x40\x23\x9c\ +\xda\x37\xa8\xce\x8b\x3a\x16\x48\x5e\x27\xa9\x9a\x54\x36\xdd\x43\ +\x5a\x9e\xf6\xc3\x4e\x9d\xca\xd5\x4a\xd1\x28\x0a\xe5\xf6\xb3\x92\ +\x48\x69\x3c\x4d\x0a\x28\x2f\x45\x80\xee\xb2\x40\x5f\xcb\xf4\x0c\ +\xd1\xd3\x46\xe4\x86\x03\x09\x59\xa5\xc0\xe4\x45\x37\x5a\xbb\x28\ +\x50\xb7\x19\x98\xd7\x62\xb9\x4d\x44\x63\x2a\x52\xaf\xed\x78\x02\ +\xc9\x3a\x45\xa5\x55\x60\x1c\xa4\xe8\xb8\xa2\x65\x7d\x84\xe4\xbc\ +\x3a\x72\xde\x2b\xd7\x55\xab\x2d\x8a\x9f\x41\xc8\x00\x41\xdf\x32\ +\x00\xa2\x7b\xdc\x24\x9d\x80\xe4\x06\xcf\x2e\x3f\xd9\xcc\x8d\x23\ +\x18\x26\xd7\x0a\x70\x6f\x46\x73\x69\xdb\x71\x0b\x50\xb1\x7c\x90\ +\xcd\xe9\x7d\x0f\x83\x55\x3d\xaa\x39\xf1\xa4\x4c\xe9\x6a\x99\xda\ +\x6d\xaf\x47\x8e\x0e\xed\xb8\xd5\x8c\xda\xd7\x36\x01\xb5\xd6\x24\ +\x0d\xd5\xbd\x52\x78\x86\x8e\x2a\xbc\x9e\x59\x31\x49\x6a\xb5\x41\ +\xd4\xb0\x34\x03\x7f\x11\xcc\xc5\xab\x3d\xda\x11\x75\xd8\x5f\x0f\ +\xcf\x7d\x1a\x20\x77\x13\xff\xdf\x0c\xc0\xb6\x8e\x82\x10\xf4\x37\ +\x52\xa6\x10\x81\xf0\xc2\x20\xc7\x83\x61\x9a\xc1\xa1\x6e\x5c\x67\ +\x5b\x79\xb9\x93\x6b\x0c\xa4\x53\xb9\x52\x8e\x77\xe5\xb9\x77\x7d\ +\xb2\x7c\xf8\xe9\x4f\x95\x93\xb2\xb1\xf6\xf3\x39\x5a\x73\x2c\x58\ +\xb0\x60\xc1\x82\x3b\x87\xe5\x0d\xb5\x05\x0b\x16\x2c\xb8\x04\xe8\ +\x52\x36\x6f\x05\xb2\xd2\xc5\x2d\xe3\xd1\x43\x8f\x95\x67\x7e\xed\ +\x57\xca\xc9\xcd\x07\xca\x6b\x37\x6e\x8a\x4d\x6f\x4a\xf1\x45\x0e\ +\x9b\x8d\xff\x2f\x35\xdc\x5a\xea\x0d\x0f\x16\xc8\xf9\x86\x48\x6b\ +\x5a\xad\xd4\x76\xea\x82\x5c\x51\x25\x01\x09\x56\xb0\xe1\xdd\x80\ +\x31\x52\x65\xe2\x0c\xb4\x75\xc0\xa3\x83\x9f\x03\x9d\x96\x6c\x7d\ +\xde\x36\xce\x6f\x41\x12\xab\x36\x75\x36\x3a\x2e\x76\x0d\x99\xbc\ +\xe4\xb4\x49\xec\xd0\xdd\x30\x67\x34\x8e\x9a\xe1\x3c\x5d\x04\xa6\ +\x7c\xc9\x85\x07\x13\x68\x5b\xaa\xf9\xbe\x09\x7a\x67\x4e\xd6\xdd\ +\x80\x42\xe3\x83\x85\x21\xf6\xb6\x72\x20\x66\x93\xdf\x03\xe0\xe8\ +\xa8\x18\x72\xbb\x3f\xad\x76\x71\xdc\x6a\x9e\xf9\xf8\xc1\x31\x1c\ +\x92\xf5\x11\xd1\xe1\xfd\xa8\x7c\x8f\xf1\xc7\x2e\x84\x88\xd3\x96\ +\xa7\xd9\xd5\xd2\xd9\xcf\x3c\xed\xc0\x1f\x64\x3f\x33\x4e\x11\xb4\ +\xd4\x6c\xee\xc1\xc8\xdf\x29\x1d\x06\x0d\x0f\x3a\xd3\x8c\x8f\x81\ +\x16\x72\x2d\x7f\x5c\x8c\xce\x4d\xed\x1a\x4f\x47\x9e\x22\x51\x67\ +\x23\xa9\x13\x1d\x4a\xd3\x62\xe3\x73\x0c\x8d\x44\x8d\x9d\x72\x60\ +\xf1\xc7\x9a\xad\xbf\xe3\x36\xaf\x1d\x39\xa3\xfc\xc0\x87\xdf\x74\ +\x47\xb1\xdb\xed\x0a\x3e\x8c\xfd\xda\xc9\x95\xf2\xae\x27\x3f\x52\ +\xde\xf3\x8d\x5f\x2c\x47\xe2\xdf\xc8\xb8\xf0\x3d\x37\xe4\x98\x6b\ +\xae\xa6\xbf\xbd\xb8\x8c\x76\x72\xbf\x17\x9c\x1f\x38\x06\x3e\x86\ +\x93\xe3\x31\x1a\x5c\x21\x6d\x8e\xcb\x17\x3e\xfe\xab\xe5\xe9\xab\ +\xcf\x96\xa3\xed\x91\x9c\x9a\x5b\xb1\x0b\xd7\xce\x29\xa6\xc4\x06\ +\x45\xdf\xbb\x15\xa8\x41\x57\x1d\x64\xc0\xa8\x44\xbb\x56\x71\x2e\ +\xc3\x43\xf4\x2f\xa6\xe1\x10\x91\xae\xe9\x2c\xd0\x46\x54\x2d\xf3\ +\x86\x9c\xa6\x2d\xb7\x69\xe5\xa0\x1a\x36\x64\x44\x89\x19\xc4\x7c\ +\xda\x92\x5b\xc3\xe7\x98\x18\x14\x68\xbe\x8f\xe8\x77\x5f\x5d\x20\ +\xda\xde\x98\xbf\x2e\x43\xa4\x55\x91\xe9\x05\x8d\xb6\x5a\x03\xda\ +\x6b\x8c\x9b\x48\xd9\x91\xe5\x19\x80\xe2\x7d\xd2\x6a\x1a\x44\x0e\ +\x4b\xdd\x06\x4c\x69\x6c\x0e\xdb\xa7\xf0\x51\x68\xe3\xf5\x68\x8b\ +\xa5\x4f\xd0\xe9\x75\xff\x8d\x4f\xc0\x00\xd9\x27\x48\xdd\x7f\x98\ +\x68\xb1\x41\x6c\xce\x28\x9a\xd4\x5e\xeb\x56\x0a\x8a\x17\x43\x12\ +\x05\x59\xcb\x24\x39\x12\x0d\x51\x15\x6e\x1b\xbb\x03\x46\x2f\x15\ +\x7a\x3c\x2b\xaa\xd7\xa4\xb6\x12\xc8\x1e\x87\x0d\x42\xe3\x09\x30\ +\x6b\x3a\xd7\x9c\x19\x9f\x4c\x23\xc4\x4f\x4a\xb6\x55\x84\xc5\x04\ +\x84\xb6\xac\xd6\x00\x31\xfb\x5b\x2e\xd0\x9d\x53\x86\x3c\x8e\xf5\ +\x4d\x61\x81\x88\xaa\xd6\xfd\xd0\x11\x73\x39\xc1\x74\x37\x2b\xcb\ +\xe3\xac\x16\xf4\x61\x40\x34\x39\x72\x1a\x3c\x43\xca\x4a\xa5\x3d\ +\x7a\xf0\xf5\x7a\x05\xda\xc9\xb1\x2d\xda\x38\x27\xf4\xd6\x1e\x64\ +\x45\xae\x01\xdb\x7c\xe3\x76\x61\x6d\x63\xfa\x0c\x83\x8c\x86\x26\ +\x11\xa1\x5c\x3b\x3e\x94\x1c\x66\x91\x4a\x25\x6c\xe1\xd5\x82\x31\ +\xac\x31\x66\x27\x05\x1b\xf7\x64\x59\x5c\x42\xd1\x79\x90\x82\xfc\ +\xe2\xdc\xd2\x1f\x66\x3b\xd5\x3f\x08\xc1\x35\x01\xee\x46\x5e\xc8\ +\x56\xb2\xfd\xf2\x8b\xbf\x4e\xbe\xf2\x44\x60\x71\xd4\xfc\x0b\x16\ +\x2c\x58\xb0\xe0\xce\x21\xaf\x5f\x16\x2c\x58\xb0\xe0\xee\x83\xaf\ +\x43\xef\xfa\xb5\x22\x16\xb6\x58\xe6\x2a\xb8\xcc\xa5\xb2\x2a\x47\ +\xb2\x22\x7e\xef\xa7\x3e\x5b\xee\xfb\xca\xd7\xcb\x77\x5f\xbf\x5e\ +\x8e\x36\xd7\xc4\x2c\xdc\xd5\xba\x6c\x56\x9b\xb2\x3e\xc2\x9b\x6a\ +\x7a\xa3\x39\xdd\x4d\xb5\x84\x1d\x02\x0a\x17\xd5\x1d\xb8\xbe\xe6\ +\x46\x45\x93\xf0\xa3\xf7\x64\x22\x49\x9d\xee\xcf\xc6\xc8\x7e\x4d\ +\x92\x60\xad\x4e\x72\x54\xa2\xbb\x26\xfd\x33\xe0\x13\x2c\x75\xa4\ +\xea\x2d\x1d\x1f\xcc\x26\xf4\x4d\x64\xbd\xf7\x4d\xc0\x9d\x94\xe2\ +\x77\x9b\x91\xba\x3f\x46\xc6\xeb\x31\x30\x9d\x07\x7d\x38\xdb\x14\ +\xa3\xb7\x1d\xdd\x11\x8c\x9a\xca\xfe\x2c\x53\xd9\xd3\xb7\x86\x7b\ +\x4e\x4c\x63\xdd\x72\x2b\x59\xdf\x09\xa0\xbf\xb9\x8c\x71\x36\xc3\ +\x71\x36\x03\x38\x8c\x35\x8f\x33\xe3\xfd\xb8\xef\x39\xfe\xe7\x05\ +\x53\x71\xce\x18\xb4\x9e\x4d\xa0\x48\x19\xf6\x31\x19\x55\x34\x43\ +\xb2\xd7\x47\x0e\x82\xb1\x28\x50\xad\x9b\x06\x02\x6e\xde\xb7\xfb\ +\xfb\x7c\x7d\x6b\x00\x2c\xfd\x43\xa5\xb3\xb0\x8f\x1d\x0f\xb7\x1a\ +\xd8\x9c\xa3\x8d\xc5\x58\xe8\x7e\xaa\x0c\x40\xe2\xff\xc4\xa9\x26\ +\x41\x55\xd8\x6e\x1e\x1c\x1a\xba\xf9\x0c\x18\x0c\x20\x4d\x73\x1d\ +\x77\x7b\xf8\x2d\xde\xce\x0b\xff\x9f\x9a\xf0\xe7\x34\xb4\x8a\x0f\ +\x2f\x5d\x5a\x9c\xbf\x2b\x5b\x89\xfd\xc1\xc9\xa6\x1c\x1f\xdf\x57\ +\xde\xfb\x0b\x7f\xb5\x3c\xf2\xe4\xbb\xca\x6e\xe7\x7b\x8e\xad\xe5\ +\xec\x11\x7d\xb8\x8b\x31\xd3\xf5\x05\xe7\x40\x3e\x89\x20\xeb\xa9\ +\x33\x45\x3a\x55\xf0\xb0\x7a\x77\x8a\x3f\x42\x3a\x29\x0f\xde\xff\ +\x68\xf9\x89\xe7\xfe\x4a\xb9\xef\xe6\x15\x7e\x6d\xf6\x6a\xb5\xd3\ +\x7f\x9f\xd6\xcc\x65\x9e\x18\xa5\x7b\x6f\xcd\xea\x51\x93\x15\xfb\ +\xbd\x01\xcf\x97\xf9\xa9\x0b\x4d\x16\x4e\x10\x52\xfc\x9a\x92\xca\ +\xfd\xb8\x92\x5d\xae\xd0\xe4\xd1\x84\x60\x32\xc7\x30\x87\x31\x6a\ +\xb2\x80\x8a\x9a\xdb\x4b\x64\x0c\x5e\x6a\x5b\x04\x6f\x2f\x6c\x02\ +\xc8\x68\x47\x6d\x2d\x5f\x23\xf8\xf8\x17\x4a\x9d\x82\x82\x24\x62\ +\xd8\x34\x0b\x98\x6d\x8e\xaa\x83\x0b\x39\xfc\x23\x64\xf2\x90\xbd\ +\x2f\x5a\xfa\x2f\x6e\x65\xd4\x58\x6c\xb9\x07\xe6\x0b\xab\xe9\x43\ +\x84\xcf\x19\x92\xc1\x6c\xfe\x90\xc5\x73\x62\xc3\x53\x94\x23\x00\ +\xd5\xfb\x41\x4d\x40\xa7\xc2\x4d\x82\x24\x26\x39\x5b\x05\x9d\x4a\ +\x9d\xb6\xec\x48\xf9\xc5\xee\x3f\xaa\x29\x94\x91\x63\xc6\xa8\x0c\ +\xcd\xa0\x71\xd8\xea\xbe\xe9\xff\x66\x43\x8d\x0d\x8a\xde\xe3\x60\ +\x54\xd4\x14\x67\xad\x9a\x81\x74\x73\xa2\x36\xe8\x22\xd5\x83\x45\ +\xe0\xde\x89\xba\x14\x63\x4c\x31\xeb\xb7\x7d\xee\x83\x8c\x4b\x3b\ +\x7d\x89\x20\x62\xd2\x2a\x86\xc6\x33\x60\x31\x1e\x5a\xf7\xb8\x82\ +\xbe\x2e\x77\xb6\x75\xae\x33\xe0\xd7\xac\xdc\xff\x45\xa0\x0b\x6d\ +\xa6\xe0\xf5\x2d\xc8\xf8\xe7\x71\xcc\xde\x8e\x99\xd0\xee\x59\xbf\ +\x9f\xd0\xc3\x36\x9f\x24\xd0\xc7\xcf\x61\xd4\xaa\xa7\x77\x4d\xeb\ +\x41\x46\x21\x8e\xe2\xe7\xb8\x0e\x7a\x43\x37\xc1\xc6\x2c\x7c\x52\ +\xea\x95\xa2\xf9\x62\x2b\x6b\x27\xfe\x61\x2d\x8a\xe8\xfc\x96\x87\ +\xd5\x46\xaf\x9d\xdd\x51\x39\xd9\x1e\x97\x0f\xbd\xe7\x4b\xe5\xfd\ +\x8f\xbf\x28\x3e\x59\x73\x49\xa9\x6f\x2e\xa3\x2c\x58\xb0\x60\xc1\ +\x82\x77\x0a\xbe\xd6\x5b\xb0\x60\xc1\x82\x05\xb7\x04\x5f\xa4\x63\ +\x41\x6c\x0b\x5c\xb9\x73\xa6\x24\x0b\xdf\xa3\xd3\x4d\x79\xfe\xd7\ +\x7e\xa3\xdc\x58\x3d\x51\x7e\x70\xfd\xb8\xac\x4e\xb0\x60\x16\x3f\ +\xd6\xd2\x6b\x59\x38\x4b\x59\xf3\x4f\xfc\xf1\x70\x48\x3f\xad\xa6\ +\xb9\x94\x83\xe4\xb4\x89\x82\xac\xda\x16\x54\xf0\x5c\xcb\x30\x5b\ +\x72\xb9\x18\x26\x08\x5e\x80\x2c\x07\xcc\x20\x95\x3e\x08\x68\xa1\ +\x5f\x1b\x09\xc1\x74\x17\xce\x00\x58\xba\x77\x0e\x1b\xb3\x39\x98\ +\x3b\x9e\x43\xa5\x07\x52\xa9\x52\x21\x14\x6f\x27\xa1\x51\xa2\xdb\ +\x56\x5b\x70\xe6\x74\xfc\x00\x6f\x66\x46\xa8\x7b\x44\x4c\x68\x6e\ +\x90\x7a\xe2\xf3\x58\x38\xcc\xcf\x83\xdf\x51\x27\x71\x86\xdc\x74\ +\xd7\x8d\x43\x51\x53\xbb\x34\xd7\xd8\xdd\x80\xdc\x37\xc8\x5e\x6e\ +\x07\xf6\xe7\xbf\xd5\x56\xcf\x8c\xaf\x4f\x42\xce\x81\xc3\x62\x78\ +\xaa\xcc\x9d\x2f\x91\xa2\x12\xf2\x55\xeb\xc8\x96\x89\x5f\x72\xcc\ +\xf7\xc4\x3d\xfb\xfa\x3a\xf6\xa9\x35\x66\xdb\xc3\xd0\x4d\x62\xd0\ +\xa6\x7b\x93\x31\xca\x9e\x6c\xd9\x3d\x3c\x46\x6a\xdb\xdf\x86\x00\ +\xb4\x3e\x7c\x92\x4e\x0c\x9c\x0f\xa6\xe4\x26\x3f\x5d\x78\x2d\x49\ +\x9c\x49\x07\xda\xf8\x8a\x6c\x17\xb9\xa7\x59\x9e\x30\x4b\x33\x78\ +\x10\x84\x37\xd4\x60\xc5\xff\x4c\xc3\x77\xef\x1d\xef\x56\xe5\x2f\ +\xdf\xdc\x96\xab\xcf\x7c\xa2\x3c\xfe\xe5\xaf\x88\x6d\xcb\x87\x45\ +\x35\x52\x12\x8d\x5e\x50\xee\x15\xe4\x5d\x59\x70\x6b\xd8\x37\x96\ +\x38\x45\xfc\xba\xe2\xe9\x82\xf3\xe6\xaa\x9c\x3a\xdb\xf2\xe2\xf3\ +\xdf\x2c\x8f\x3f\xf0\x5c\xb9\x7a\xb2\x11\xab\xfe\xe0\x2f\xfb\xf1\ +\xbf\xbe\x28\xe3\x0d\x36\x0f\x03\x24\xcd\x74\xee\xf2\xf9\x43\x3d\ +\x73\xdd\x98\xa2\xcf\x23\x96\x03\x82\x6b\x5f\x20\x4d\x73\x34\x40\ +\xbe\x61\x4e\x75\x4c\xf7\xa5\xea\xb1\x57\x1e\x9f\xf3\x98\x9c\x4d\ +\x8a\xce\x12\xb1\x3d\x53\xdf\x9a\x6c\xf7\x57\x14\x69\xbe\x67\x6a\ +\x8f\x72\xbf\x72\xe9\xd9\x02\x31\x55\x6b\x65\x02\xfd\xde\xba\x9d\ +\x5b\x15\x15\x22\xbb\x8a\xae\x87\x0b\x42\xd6\x43\x69\x3b\x5e\xfb\ +\xa5\xb5\x3e\x28\x01\x57\x57\xde\xfe\x46\x51\x03\xb8\x5d\xe0\xd6\ +\x19\xa8\x5d\xb6\x3d\x48\x07\x45\x2d\xa2\xcb\x6f\xdd\xbf\xb0\xea\ +\xc6\x8b\xc0\x39\xa6\x4e\x91\x1c\x21\x8a\xa0\xe3\x20\xd1\x30\x52\ +\x0e\x2f\xa1\x9a\xdb\xe2\xec\xb1\x9f\xda\x9f\x5c\x00\xca\x54\x94\ +\xc9\x3a\x13\x24\x56\xc5\x30\x18\x7a\x5d\x60\x26\x7d\xe5\x82\x22\ +\xc5\x2a\x40\x7b\x81\xad\x19\xe2\xc8\x98\x9e\xaa\xfc\x49\x31\x4a\ +\xa1\x26\x52\x86\xe8\x39\xf3\x94\x90\x10\xae\x68\x59\x91\x14\x88\ +\x28\x9e\x53\x5d\x2a\xe9\x7e\xf4\xc0\x38\x19\x53\x7e\xc7\x9c\x0e\ +\x9a\xf4\x40\xd4\x8c\x08\x53\x8d\x67\x33\x25\x47\xdf\x6e\xf6\x0e\ +\x9b\x13\x63\x8e\x69\xe3\xb1\x47\xd9\xe2\x2d\x9b\x2d\x27\xe4\x64\ +\x32\x68\x21\xc2\x55\xc8\xd9\x86\x68\x72\x5a\x2d\x38\x2c\xda\x83\ +\x2b\x0f\x52\x68\x22\x34\x19\x6c\x02\xac\xf3\x20\xf6\x57\xcf\x5e\ +\x8c\x2b\x97\x37\xb2\x89\xe3\x4a\xc8\x6b\x13\x02\xe4\x97\xb7\xce\ +\xb2\x39\xc5\xfa\xc9\x39\x62\x5b\x9d\x9e\x94\xad\x9c\xbf\xfc\x4a\ +\x47\xe1\x5e\xdb\xac\xca\xe6\xf4\x91\xf2\x85\x17\x7e\x43\xf9\xd6\ +\x09\x3d\xfb\x17\x2c\x58\xb0\x60\xc1\x3b\x8d\x65\x3e\x5e\xb0\x60\ +\xc1\xbd\x09\x5f\x9f\xde\x75\xd0\xd5\xae\x2e\xa2\x0d\x30\xad\x76\ +\xe5\x89\x67\x9f\x2b\x4f\xfd\xd4\x2f\x94\xbf\xf8\xee\x1b\xb2\x60\ +\xc6\x62\x19\xff\xff\x43\x16\xdc\x42\x5d\xcb\xa2\x19\x6f\xaa\xf1\ +\xaf\xad\x35\x4a\xeb\xba\x5a\xd7\x67\x30\x80\xcd\xdc\xae\x72\xdd\ +\xad\xff\x40\xc4\x0c\x5a\x01\xb4\xd2\xef\x8a\x16\x5f\x94\x07\x42\ +\x37\xc1\x78\x79\xa0\x43\xea\x63\x09\xf1\x26\x3b\x6e\x1a\xa8\x86\ +\xad\xdf\x0f\xd9\xd0\xa4\x04\xf6\x31\x76\x50\x51\x23\x5a\x80\xa5\ +\xcc\x39\x86\x00\xf9\xe8\xe7\xa3\xb5\x40\x8e\xc3\xb6\x4a\x1d\x06\ +\xa6\x8c\x70\x0f\x79\xfd\x6d\xaa\xc1\x8c\x5a\x59\x4f\x26\x44\xed\ +\x2f\x8f\x4f\x3a\xf6\x40\x68\xf0\x75\x63\x95\xd1\x44\xcd\xd3\x66\ +\xd1\x9c\xbb\x77\x2d\xbc\x8f\xa8\xcf\xd7\xdf\xf3\x47\xdc\x3b\x38\ +\x68\xbf\x9a\x73\x42\x14\x09\xca\x57\x09\x8e\x3f\xcf\x81\x7c\xfe\ +\x41\xec\x78\x8e\xc3\x4e\x31\x65\x71\x1b\x01\x6d\x36\x6f\x2d\xb5\ +\x2a\x30\x8d\x6d\x6b\xed\xc8\xb1\x23\x28\xb5\xcd\x16\x68\xcc\x3d\ +\x07\xfa\x20\xbb\xd3\x66\x52\x02\x93\x28\x70\xa5\xd4\xeb\x7c\x4f\ +\xb0\xa0\x7d\x00\x65\xf0\x1c\xae\x80\x92\x68\x9c\x6d\x4c\xd7\xaa\ +\x51\x08\xc6\x6a\x82\x40\xa7\x26\x20\x50\xce\x00\x12\xf0\xae\x84\ +\x1c\xa7\x3e\x57\x8e\x16\x11\x6e\xfc\x7b\x50\x79\x19\x2b\xc7\xbb\ +\x6d\x79\xf5\x66\x29\xdb\x9b\x0f\x94\xa7\xbf\xf3\xd7\xca\xfd\xd7\ +\xee\xc3\x7f\xfc\xb0\xc7\xf0\x8e\x14\x2f\xc8\x5a\xeb\xb9\x43\x78\ +\x47\x1a\xfd\x31\x46\x1e\x6f\x3f\xb7\xd2\x39\x36\x85\x06\xe0\x41\ +\x39\x1f\x51\xae\x77\xe5\xda\x7d\x8f\x94\x97\x3e\xfc\x6b\xe5\xda\ +\xf1\x51\xd9\x9e\xae\xcb\x0e\xeb\x29\x39\x09\x71\x1e\x6a\x2e\xd9\ +\x98\xa2\xa9\x7d\xab\x3f\x94\xb5\x32\x8c\x4e\x82\x6a\x6b\xa8\xe8\ +\x83\x49\xfc\x68\x5c\x02\x78\xca\x15\xc6\x24\xa5\x7a\xdd\xcc\x75\ +\x8f\xcb\xf6\x9a\xde\x86\x68\x3b\x61\x13\xa1\x5f\x5d\xa8\xe6\xd7\ +\xeb\xd9\x00\x8d\xf3\x4c\xe6\x37\xb1\x69\xdf\x04\x21\x8b\x00\x4f\ +\xcc\x0b\x3d\x68\xf7\xfe\x46\x54\xed\x97\xed\xa8\x8e\xbd\x6c\xcd\ +\x1e\xcc\x1a\xe2\x54\x45\xe2\x39\x65\x14\xe3\x99\x5b\xd4\xa8\x1c\ +\xe3\x32\xcf\x25\x2a\x75\x3c\x90\x03\x22\xfa\x37\x19\x53\xd7\xe1\ +\x33\x31\x30\x31\xc0\xa4\x8f\xd8\x03\xc1\xd1\x99\x5e\xb7\x2a\xa1\ +\x2d\xb8\xb5\xa8\x1d\xf1\xd0\xa1\x41\xd0\xfe\xd8\x35\x00\xb1\x83\ +\xb9\xa3\xdf\xa8\x82\x07\xbb\x56\x55\xa0\x92\x31\x93\x17\xe7\x66\ +\x14\x18\xd4\x3e\x5b\x6b\x8f\x0d\x66\xec\x7c\xce\xe0\x7e\x07\x45\ +\x05\xfa\x28\xc2\xa2\x67\xbc\x7a\x44\x0f\xae\x7a\xc9\x36\x9b\xa2\ +\x51\x44\x55\xa6\xdb\x3b\x2f\xa1\x5e\xd9\xd2\x99\x18\x74\x78\xaf\ +\x2a\x7a\xda\xc4\x60\x62\x58\xd2\x7a\x3d\x87\x11\x9d\x01\xea\x84\ +\x23\xa8\x19\xe6\xa0\x91\x11\x6b\x42\x9f\xcb\xc7\x56\xd9\xad\x5f\ +\x65\x6d\x09\x5b\xe7\xaa\x54\x99\xca\x50\x8c\xad\x67\xc3\xe3\x22\ +\xea\x7c\xe1\x09\x87\x04\xd6\x5e\x56\x8c\x6d\x61\xa5\x20\x1b\x9e\ +\x3f\x72\x15\x43\x84\x89\xa8\x0a\x2a\xb7\xb7\xb7\x6c\x72\xde\x06\ +\x07\x5f\xdf\x88\x3f\xf4\x50\xf0\x8d\x31\xf8\xf1\x89\x34\xfe\x01\ +\xed\x46\x5f\x8b\xe4\x3e\xfe\x04\x5c\xbe\x6c\x89\x61\x5b\xca\xcd\ +\x9b\xd7\xcb\x67\x3e\xf0\x33\xe5\x3d\x8f\xbd\x4f\x12\x61\x36\xd1\ +\xeb\xa1\xe2\xc2\x03\xb7\x60\xc1\x82\x05\x0b\x2e\x01\xcb\x1b\x6a\ +\x0b\x16\x2c\x58\x70\x29\xd0\x45\x2d\xb6\xf5\xb6\x1e\xcb\x5e\x93\ +\x57\x47\x32\xe1\x9e\x96\x17\x7e\xf3\xd7\xca\x6e\xf3\x9e\xf2\x67\ +\x6f\xbc\xcd\x4f\xa4\x61\xc1\x8d\x25\xfc\x66\xad\xff\x4b\x0d\x5f\ +\xe5\x80\xaf\x7f\xcc\x5f\x01\x89\x0c\xba\x80\x16\x49\x56\xec\x90\ +\xfd\x2f\x30\xb5\x2d\xbd\xfd\x26\x5c\xc0\x62\x3c\xde\x64\x0b\xaf\ +\xa0\xca\x43\x6b\x4f\x07\x44\x0f\x73\xef\x03\xfa\x9b\x45\xde\x19\ +\x18\x35\xf9\x32\x74\xbf\xe0\x53\x89\x25\xee\x46\xbc\x6e\xd1\x5a\ +\x6b\x5e\x8b\xae\x80\x62\x64\x56\xe3\x74\xc9\x8e\x1b\x14\xcf\x22\ +\xc5\xc6\x78\x3f\x9a\x16\x03\x7e\x03\x35\x8f\x69\x5c\x84\xa4\xfe\ +\x04\x8f\x4f\x75\x54\x6c\x00\xf7\xcc\xd8\x02\x71\x23\x37\x8a\x9d\ +\x05\xc8\x1a\x70\xae\xb0\x3b\x8e\x8b\xf7\xee\x72\xf6\xcb\xb3\xbc\ +\x43\x63\x35\xdb\x60\x3a\x6f\xf6\xf4\x2a\x3c\x71\xfa\xc0\x92\xf8\ +\xf3\xa1\x82\x7d\x4e\x49\x38\x93\xa6\x39\x53\x47\x29\xe6\xce\xe5\ +\x21\xd7\x6a\xc3\x4c\x64\xe2\x89\x10\x17\x84\x56\x87\x63\x36\xbb\ +\x22\xb9\x21\x32\xfd\xa0\x0d\xa7\xb5\x0f\x5c\x04\xd0\x2d\x68\xda\ +\x52\x25\xe7\x19\xa9\xbe\xbe\x08\x44\xec\x53\x6a\x23\x6d\xb6\x56\ +\xf3\x08\xd4\x35\x7a\x2a\x49\x94\x05\xa2\xe2\xb4\x2e\x1b\x54\x8c\ +\x94\x31\xc5\xcb\x94\x51\xe8\xdb\xee\x76\x65\xbb\xba\x5a\xbe\xf7\ +\xc3\x6d\x79\xef\x4f\xfd\x42\x79\xdf\xa7\x5f\xe2\x57\x3d\x62\xfc\ +\x37\x4a\x62\x9c\x02\x0f\x93\x4c\x14\x64\x79\xc1\x8f\x19\xe2\x24\ +\x4a\xc8\xe7\x43\xf6\x8b\xfd\xf4\x54\xce\xa6\xd5\x71\xf9\xd8\xfb\ +\xbf\x5a\xde\xfb\xf0\x67\xca\xb5\x13\x59\x5d\xad\xfd\x7f\xa9\xe1\ +\x53\x00\x7a\x9e\xd6\x6b\x65\xd4\x00\x6c\xe9\x8d\x21\xce\x41\x87\ +\x9d\x84\x9a\x6d\xae\x83\x8a\x51\x8b\x8c\x99\x6d\xc2\x1c\x13\xbf\ +\xc6\xf4\x66\x7e\x3d\x6c\x03\xe8\xd2\xaa\x54\x7d\xdb\xca\x4c\xd7\ +\x5b\x0e\x4d\x72\x73\x3d\x5a\x0d\x64\x99\x9a\xfe\xf6\x0e\xea\x3e\ +\xe6\xfb\x3f\x25\x64\x33\x5a\xeb\x10\x68\xff\x09\x7b\x4d\xc8\xde\ +\x56\x91\xb9\xc4\x26\xd4\xbc\x05\xf2\x3c\xab\x32\x36\x5e\x5a\x3f\ +\x6c\xa1\x9a\x10\xe3\x97\xf2\xf7\x92\x57\xd9\xe4\x35\xe3\xbb\xfd\ +\x0f\x5a\x35\x63\x0f\x92\x2a\x52\xf2\xf5\x70\x57\xf4\x4d\x00\x5b\ +\x2e\x17\x42\x9f\x24\x17\xc0\xeb\x00\x7a\x20\xa5\xb3\xf3\x4d\xb7\ +\xa6\x77\xa0\xd8\xeb\x5a\xca\x45\x31\xe9\x13\xc0\x66\xf6\xd6\x2d\ +\x9a\x19\x22\xa7\x95\x2a\x9a\x62\x98\x5c\x22\x40\x5a\x6b\xd0\x3d\ +\xe2\xcc\x21\xe7\xf6\x7d\x1d\xc4\xb7\xa3\xe0\x50\xeb\xd4\x87\x04\ +\x52\xac\x6a\x91\xfa\x3a\x68\x27\x90\x7c\xed\xb9\x3d\x80\xf8\x9d\ +\x82\xec\xb9\x3f\x90\xe1\x73\x7f\x4e\x35\xed\x77\x07\x21\x64\x3e\ +\xc0\x98\xde\x68\xb0\xdb\xc4\x0a\xf2\xf6\xb5\x82\xeb\xdd\xc4\x39\ +\x64\xff\x5c\xbb\x56\x07\x84\xe7\x36\xad\x2b\xa3\x5f\x95\xa9\x36\ +\x4a\x0c\x5b\xb5\xbb\x84\xeb\x5b\xa3\xe4\x75\x86\xc1\xaa\x53\xc4\ +\x2d\xfe\xe9\xda\xf6\x49\xfd\xdb\xd5\x96\xf3\x26\x9e\x15\x80\xbb\ +\xc6\xd7\x1b\xaf\x9e\x2e\x2f\xbf\xf0\x2b\x7a\x3b\x0f\x30\x79\x7d\ +\x65\x53\x83\xb7\xb8\x60\xc1\x82\x05\x0b\xee\x34\x96\x37\xd4\x16\ +\x2c\x58\x70\xef\x20\xaf\x19\xeb\x6a\xf2\x2e\x83\x2e\x6e\x7d\xb9\ +\x1b\x5b\x0a\xab\xf2\xe0\xe3\xef\x2d\x4f\xfd\xca\xaf\x94\xbf\xfc\ +\x8b\xb7\xcb\xdb\x27\xb0\xc9\x02\x5a\x7c\x58\x42\xf3\x8d\x34\x86\ +\xeb\x8e\xc2\x86\x2d\x8b\xa5\x50\x8f\x80\x82\x6b\x4c\x1e\x95\x83\ +\x6a\xb2\x85\x98\x6d\x90\xa5\xe4\x7b\x61\x8a\xae\x4b\xd1\x9b\x82\ +\x0c\xd5\xf5\x86\x28\xf5\x41\xfa\x4d\x13\x51\xa5\x8a\x3e\x4f\xc2\ +\x60\x57\x28\xce\x85\x88\x3d\xdf\x52\x8c\x80\x1b\xfc\x9e\x51\xd3\ +\x31\x01\xfd\x78\x30\xd5\xf0\x46\x6d\xce\xf5\xe3\x40\xe4\xfc\x7d\ +\x9f\x7a\xd4\xa6\xa6\x4c\xfa\x82\x20\x82\xdf\x61\x0e\x92\x9e\xbf\ +\xcb\x6d\x92\xf3\xc7\xdf\x09\x5c\xbc\x57\xb7\x63\x7f\xee\xc8\x18\ +\x9d\x75\xc2\x24\x34\x54\x2a\x83\x1e\x9a\xa9\xf1\x88\xe2\xb1\xb8\ +\x6a\xf4\xca\xe9\xaf\x7c\x65\x70\x6b\x64\xf8\x5b\x4e\xc2\x84\x63\ +\x0f\x0f\xcd\x3e\x17\x19\xee\x0c\x31\xce\xb6\x93\x31\x09\x1e\x66\ +\x13\xf4\xd9\x94\x57\xb7\x9d\x7f\xb6\xf1\xe4\x10\xb1\x69\x8d\x2e\ +\x35\x42\xd4\x07\x5d\xf6\x00\x9f\xf2\xa1\xd0\x1c\x80\xff\x3f\x33\ +\x55\x2d\x49\xd3\xa8\xc1\x9f\xaa\xd1\x37\xdf\x58\x78\x52\x0e\xda\ +\x62\xee\xf4\xb9\xb1\x6e\x71\x14\x95\x83\xbf\xac\x16\xbf\xbc\x10\ +\x60\x1a\xc2\xff\x4e\xbb\x7e\xbc\x2b\x7f\xf1\xc6\x69\xb9\xf2\xd8\ +\x87\xca\x07\xfe\xda\xaf\x95\xf5\x76\x27\x5d\xc9\x0f\xc2\xb4\xc5\ +\xbe\x5d\x77\xc3\x1e\xd4\x3b\x89\x77\xa4\xd1\x05\x44\x9c\x0c\x86\ +\xac\xf7\x3e\x39\x4e\x3c\xe7\xb0\x95\x93\xea\xe8\xca\xd5\xf2\xf2\ +\x87\x7f\xad\x3c\xb0\xbb\x56\x8e\xe4\xa7\xac\x4e\xca\x0a\x4f\x1e\ +\x59\xe4\x5a\xe3\x09\xa5\xf3\x98\xa7\xe2\xa1\xd6\xc5\x8b\x19\x4d\ +\x0e\xa4\x46\x29\xca\xc6\x4c\x99\x19\x32\xae\xb5\x08\x09\x41\xd1\ +\x5c\x87\x8a\x3c\xab\xb6\x0f\xc9\x41\xea\xe2\x05\xd3\x55\x8c\xe8\ +\x12\xd8\x33\xc9\x12\x63\x65\x77\x8c\xa4\x4e\xa3\x1d\x66\x6f\x3b\ +\xd6\xe8\x90\xea\xff\xbb\xb5\x4c\xe1\xae\x3c\xa0\x9a\xeb\xbc\xa7\ +\x33\x4a\xbb\x57\xe4\x25\xc3\xa4\x7f\x50\x27\xa6\x29\xc7\x2d\xac\ +\xb3\x5b\x64\x4f\xef\x73\x11\xdc\x99\xe2\xc8\xbb\x8e\x63\xd5\x9e\ +\x3d\x02\x8a\xaa\x27\x2b\x15\xe8\x4d\x7c\x4c\x7c\x6a\x0c\x8d\x5c\ +\x27\xa6\x00\xc8\x59\xb5\x08\x35\x99\x03\xf3\x29\x44\x2f\xb7\x13\ +\x91\x7f\xdc\xa0\x8e\x0e\xfa\xe8\x7b\x06\xe8\x9e\x55\xa6\x49\x42\ +\xa1\xc4\x0d\xf6\xc1\x63\x15\x8c\x31\x02\x65\x88\x82\x9c\x19\xe0\ +\xa9\xe7\x4e\x22\x65\xc9\xf6\x7c\x20\x1c\xbd\x49\xf4\x30\x51\x50\ +\x2d\x89\x9d\x5f\xa1\xa7\x7f\x32\x08\x54\xeb\xf7\xdd\x61\x16\xa9\ +\x1a\x5f\xaf\x0b\x9a\xfd\x0d\x67\x65\x51\x6a\x82\xfa\x0c\x06\x4b\ +\xd4\x8f\x1f\x00\x5b\xb5\x77\xb9\x09\x3d\xeb\x47\xb1\xfb\x90\xf9\ +\xc3\xd8\x64\x6c\xaf\x13\x13\xce\x80\x87\x9f\xd5\x2f\xfa\x1b\xd2\ +\x74\x16\x3d\x04\x3a\x0a\x9e\xca\xae\x58\xef\xab\x25\x6c\xf3\xd6\ +\x1d\x81\x84\xcb\x1f\xfe\x5a\x94\xcd\xff\x83\xc6\xda\x2c\x9c\x27\ +\xa4\x48\xcd\x07\xb3\xbb\x55\x39\x3a\xd9\x94\xed\xf5\x55\xf9\xc9\ +\x8f\xff\x46\x79\xec\xfe\xa7\xc4\xab\xb9\xd1\x0b\xcd\x52\xdb\x5a\ +\xb0\x60\xc1\x82\x05\xef\x1c\x96\x37\xd4\x16\x2c\x58\xb0\xe0\x40\ +\xec\x5f\xbe\xf6\x5e\xe8\x58\xf6\x26\xfb\x6a\x53\xd6\xbb\x6d\x79\ +\xff\xaf\xfc\x95\xf2\xc0\xf3\x9f\x29\xdf\xfd\xde\x0f\xcb\xe9\x76\ +\x2d\x8b\xea\x1d\x6f\x2e\xc0\x5c\x6d\xea\x57\x3e\x42\x80\xdd\xdf\ +\x56\x0b\x48\x5a\x2e\xc3\x19\xa0\x8b\x6b\x88\xa8\x51\x14\x29\x62\ +\x87\x5f\x06\x19\x01\xb2\x95\x30\xea\xc2\x1e\x05\xd0\x7c\xbe\xfc\ +\x37\x50\x31\x4b\xbe\x03\x72\x99\x09\xaa\x5d\xef\x11\x2c\x53\x93\ +\x28\x03\x0e\x70\x94\x57\x6b\xc3\x48\x8c\x26\x34\x2e\xdf\x98\x65\ +\xa4\x50\x02\x7a\xb5\x65\x2f\x64\x49\xc2\x3c\x32\x9e\xa2\x56\x6f\ +\x97\xdc\xd4\x1c\x9d\x11\xfb\x39\xd3\xa7\x31\xfc\x56\x69\x06\xa3\ +\xc6\x10\x30\xd7\x09\x87\xf8\xfd\x10\x1f\xde\x9d\x36\x29\xe2\xce\ +\xb5\x2b\xb7\x0d\x77\x47\x2f\x14\x18\xa3\x43\x0e\xc0\x61\xd8\xbb\ +\x67\x17\x6c\x82\x61\xbc\x00\x51\x6b\x45\x88\x1c\x29\x9b\x86\x53\ +\x43\x7b\x9f\x6e\x8c\x3b\xd4\x46\x28\x67\x36\xcd\xc8\x2e\x64\xcf\ +\x5c\xdd\x89\x78\x9e\x5c\x8e\xe8\x6a\x9e\xc9\x3c\xa0\xdb\x8f\x4e\ +\xad\x00\xbf\x36\x42\x5a\x4e\xe5\xae\x4a\x51\x37\xf5\x64\x34\x34\ +\x96\x50\x44\x80\x3c\xa5\x1b\xa4\xf7\x93\x40\x33\xf8\x03\x19\xc0\ +\x04\x54\xc9\x4a\x90\x4d\x47\xdf\x48\xa7\x67\xbf\xf0\x99\x05\xef\ +\x4b\xb8\x0c\xb7\x14\xc8\xf8\x74\x1a\x00\x13\xfe\x77\xda\x6e\xbb\ +\x2b\xd7\xcb\x95\xf2\xdd\xd7\x8e\xcb\xb3\xbf\xf2\x1b\xe5\x89\xa7\ +\x9f\x11\x9e\xcd\x6d\x31\x49\x8b\x85\x89\x00\xed\xa5\xa5\x0c\xbb\ +\x33\x2f\x1d\xfb\x12\xdf\xb6\x46\x17\xec\x45\x9c\x0b\x03\x8c\x7c\ +\x3c\x51\xa4\x92\xfa\xf4\xf4\x48\x4e\xbc\x6d\x79\xdf\x33\x9f\x2e\ +\xcf\xbd\xeb\x73\xe5\xca\x75\xd8\x70\x4e\xe1\x13\x6a\xf8\xb4\x9a\ +\xea\x72\x66\xca\xf9\x29\x41\x39\x9f\xad\x9b\xea\x06\xc5\x4e\x02\ +\xa9\xce\x3a\x1d\x10\xcd\xff\x71\xd3\x30\xb1\xca\x62\xc2\xfd\x10\ +\x0a\x59\xb8\x76\x83\x9e\xf2\xf4\xd7\xa8\xa9\x95\x9a\xfd\x55\xee\ +\xa2\xcc\x30\x58\x1f\x25\xbd\x71\xb9\x92\xfd\x7b\x62\x53\x8f\x1a\ +\xd8\x63\x67\x43\x96\x9d\x0f\x9b\xb3\xb0\x35\x3b\x0d\x49\x0f\x4e\ +\x87\x30\xca\xf8\x85\x6c\xc2\x24\x60\xd0\x47\xd9\x29\xbc\x21\x48\ +\x8f\xbf\x46\x76\x81\xb1\xdf\x8d\x39\x29\x14\x65\xa3\xbf\x1d\x60\ +\x94\xbc\xcc\x5d\x39\xd8\x1b\xe4\x85\x4c\x84\xd0\x23\x02\x6c\x13\ +\x0a\x6b\x95\x2c\x37\xca\x61\x49\x2f\x04\x6d\x41\x73\xaa\xac\x92\ +\xfe\xb4\xc0\x4c\x5f\xed\xb2\xf5\x00\x8a\xc9\xee\x5b\x15\x0d\x24\ +\x25\x13\x24\x2d\x3c\x16\x2c\xd8\x67\x3d\x5e\x95\x97\x40\xa3\xfa\ +\x21\x2b\x27\x31\xc3\xa6\xc8\x72\x3d\xe0\x86\x4e\x75\x83\x9b\xab\ +\x7b\x6a\xc9\x22\x21\xba\x9a\x7a\x47\x05\x9b\x97\xae\xa3\x22\x6b\ +\x9e\x2a\xa8\xce\x11\xad\xb7\x55\xdd\xc6\x46\xe0\x36\xd4\x99\xef\ +\x23\xec\x25\x23\xf3\xe2\xb2\x21\x4c\x09\x42\x17\xd9\x27\x22\xf2\ +\x4c\x69\x12\xab\xdc\xca\x7e\x78\xbc\xd6\xa6\x9d\x19\xee\x51\x53\ +\x78\x8f\x70\x1e\xcf\xcf\xe3\x68\x60\xd0\x16\xaf\x77\x93\x1d\x72\ +\x50\xfb\xd3\x0a\xa1\x78\x2d\xe2\xec\x83\x10\x72\x84\x84\x94\xab\ +\x5d\x59\x9f\xa6\xc7\xb2\x27\xa5\x3c\xfb\xc8\x4b\xe5\x93\xcf\xff\ +\x8c\xcc\x73\xfa\x8c\xc0\x7b\xb7\x60\xc1\x82\x05\x0b\xee\x1e\x2c\ +\x6f\xa8\x2d\x58\xb0\x60\xc1\x2d\xa0\x5f\x2f\x57\x70\x85\xac\x22\ +\x6b\x5d\x40\x63\xd6\x7d\xe0\x81\xc7\xcb\xfb\x7f\xe7\x77\xca\x6b\ +\x37\x1e\x2e\xaf\x5c\xbf\x2e\x8b\x68\x71\xac\x4f\xf9\xe9\xb4\x8d\ +\x10\xf0\xb5\x8f\x5c\x68\x33\xaa\xb6\xa0\x92\x59\xf8\x24\xc1\x16\ +\xd6\xc2\xa5\x84\x8d\x15\xfe\xcf\x34\x88\x92\xdb\x58\x82\xf1\x6d\ +\x82\x87\xf1\xe9\x0e\x95\xb0\x08\x24\x91\xdb\x03\xea\xd7\x7e\x60\ +\x63\x88\xbb\x2c\xef\x69\x2d\x15\xea\x23\x12\x1d\x3d\x23\x97\xee\ +\xc4\x31\xb4\x39\x14\xce\x0a\x5f\x17\x36\xc9\x62\x86\x78\x08\x63\ +\x75\xe5\x41\x1a\xb5\x24\x30\xf3\x8c\x37\xe0\xb9\xe6\x79\xb5\xb5\ +\x60\x65\xd3\x1c\x52\xc2\x4a\x17\xa3\x9f\x07\x33\x39\xf4\x26\xec\ +\x50\x80\x7c\xae\x80\x3b\x8c\xbb\xa5\x6f\xda\x8f\xbb\x79\xa4\x2a\ +\xe6\xcf\xc4\x29\xa6\x5c\x58\xfc\xac\x88\xfd\x15\xc1\xaf\xa1\xb8\ +\x96\x66\xc0\xeb\x9a\x69\x41\xcc\xd9\x0c\xfe\xd0\x31\x61\xda\x8b\ +\x0e\xfb\x08\x29\xd5\x99\x79\x00\xf2\xd1\xcb\x1a\xa8\x32\x4a\x9b\ +\x41\xb5\xca\x53\xa9\x6b\x45\x8c\x95\xa1\xf0\x6b\x10\x15\x73\x9b\ +\xce\xc8\x8e\x0c\x5b\xdf\x0e\x80\x61\x6a\x5a\xe2\xb8\x35\x96\x04\ +\x8d\x0d\x6f\x08\x35\xa7\x4b\x70\xa9\x2c\x5b\xe7\xc1\x60\xaf\x1f\ +\x6e\x83\xaa\x5c\xfd\xf1\xaf\x24\x06\xf0\x95\x8e\x78\x9d\xd9\xca\ +\xc9\xf0\x83\xeb\xa5\x3c\xfb\xa9\xaf\x94\xf7\x7f\xe3\x1b\x65\xb5\ +\xdd\x09\x0f\x24\x23\x5a\x2c\xd0\x77\x09\xe7\x08\x44\xd8\xc3\xb7\ +\xe0\xc7\x03\xfd\x01\xcf\x7a\xe3\xb3\x73\xc9\x4e\x14\x9e\x4d\xb2\ +\x6e\xc2\xfb\x6a\x5f\xf8\xe8\xef\x96\x47\x4f\x1f\x29\xe5\x64\x55\ +\x76\xeb\x13\x52\xf8\x55\xa3\x88\x67\x0e\x7d\xb3\x0b\x22\x7c\x0a\ +\x3a\x12\xb2\xb7\xb2\x32\xb2\x55\xa3\x65\x8b\x0b\x1c\x15\x75\x11\ +\x6d\x3d\x46\xbf\xba\xa4\xe6\x96\x70\x5e\xce\xa5\x2c\x58\xa4\x36\ +\x47\xf5\xab\xd4\xf3\x31\x97\xa0\xe9\xd6\x8e\x51\xa9\x6d\x65\x4c\ +\xb3\xd4\x60\xad\xc6\x71\x15\x29\xd6\x42\x51\xf2\xdc\x99\x18\x2d\ +\x64\x6e\xa0\xcf\x9b\x18\xcc\xfb\x43\x90\x62\xb1\x82\xbe\x87\x07\ +\x64\x10\x68\x54\xbc\x66\x61\x03\x99\x13\x73\xcd\xed\x52\xdb\x86\ +\x68\x4a\x9b\x22\x6c\x88\x34\xa5\xa9\x90\x49\xcf\xb9\xce\x6d\x90\ +\x91\x83\x41\x8a\x1f\xc7\xea\x77\x87\x6a\x2d\x5a\xa6\xc2\xb8\x23\ +\xd7\x0c\xe6\x68\x23\x7b\xb6\xb5\x7e\x68\xba\xff\xdc\x17\x07\x65\ +\x35\xc4\xf9\x48\x82\x8f\xae\xc6\xa1\x28\x0b\x70\x9b\x73\x04\x74\ +\x2a\xc7\x44\xad\x09\xb5\xea\x4f\x8b\x5e\xcf\x08\xdf\x3e\x52\x8f\ +\xcc\x1d\xc4\xd5\x9c\xa9\xef\x04\x3c\xea\xad\x52\x8b\x88\x18\x39\ +\x05\x6a\xae\x79\x9b\x16\xfa\x98\xac\x37\xbe\x99\xe4\x62\x9f\xeb\ +\xf1\x38\x62\x2e\x8f\x80\x89\xec\x7c\x9f\x01\xae\xc1\x68\x51\x17\ +\x86\xc1\x9f\x7e\x85\xed\x08\xfb\xf3\x67\xe7\x68\x6d\xda\xb4\xd8\ +\xfb\x47\xcd\xcb\xf1\x9c\xb6\xd7\x12\x55\x73\x5b\x65\x53\x92\x7d\ +\xc4\xfe\xe2\xb4\xe0\x1a\xca\x74\xba\x64\x6d\xa4\x43\x20\x1b\x7e\ +\x4d\xb1\x8a\x65\xb7\xc1\x67\xad\xcb\xea\x64\x5d\xbe\xf6\xa9\x5f\ +\x2f\xd7\xd6\x57\xc5\x8c\xc7\xb5\xbe\x0a\x33\xd8\xf8\x2d\x58\xb0\ +\x60\xc1\x82\x77\x16\xcb\x1b\x6a\x0b\x16\x2c\x58\x70\x20\xce\xb7\ +\x7c\xd5\x65\xb3\x2e\xb3\xf3\x22\x78\x53\x36\xab\x93\xf2\x81\x2f\ +\x7c\xa5\x3c\xf6\xd5\x9f\x29\xaf\x7c\xef\x66\x39\x5e\x5f\x29\xa7\ +\xdb\xad\xf2\xd7\xb2\xe0\x96\x85\x76\x3c\x88\xb4\x75\x3a\x2a\x2c\ +\xc5\x6b\x2a\x6a\x04\xea\x7a\x2f\x82\x1b\x00\x23\xc5\x82\x5b\x6a\ +\x91\x5d\xe5\x73\x26\x77\x61\x8d\xbe\x43\xde\x48\x40\xb8\x3b\x52\ +\xb9\x08\x5e\x38\x2d\x86\xba\xda\xf5\xff\x28\x98\xde\xf4\xd0\xe0\ +\xdc\xd8\x02\x91\x50\x50\xfb\x49\x08\x29\xab\x84\x19\x46\xb7\x3a\ +\x80\x77\x31\x7b\x21\xa7\x5e\x88\x1e\xb7\x75\x13\x0c\xef\xeb\xdc\ +\x66\x41\x13\x8a\x19\x62\x18\x87\xc9\xe7\x7a\xdc\x67\x93\xde\x4d\ +\x1a\x38\x0b\xb6\x87\xb9\x81\x26\xc7\xf4\xa1\xc3\x79\x80\x58\x8f\ +\xbf\x95\x3c\x17\xc7\x78\xe4\xde\x19\xa0\x2f\x77\x53\x7f\xc6\xd0\ +\xaf\x07\x9c\x3f\x5a\x76\xc6\x4c\x30\x7b\x0a\x75\xa8\x33\x90\xc3\ +\x75\xab\xfb\x21\x6a\xe8\x5d\x6c\x7a\x10\xa5\x9e\xce\x3f\x84\x70\ +\x3c\x2c\xd1\x23\x53\xd8\x46\xe7\x7e\x67\x09\x35\x75\xba\xa1\x24\ +\xc5\x45\x52\x45\x69\x78\x8e\xd6\xd8\x4c\x9b\x0d\xc0\x53\x4f\x8d\ +\xd0\xb9\xc9\xd3\xeb\xc6\x0b\x10\x5e\xa9\x6a\x54\xf5\x03\x55\xce\ +\xd6\x1c\x17\x73\x8c\x99\xc0\xf4\xff\x83\xe3\x26\x95\xa4\xc8\xaf\ +\xd2\xe5\xb5\x09\xff\x18\x1f\xff\xc2\x0a\xaf\x29\xf6\x46\x05\xbe\ +\x5d\xef\xb5\x72\xad\x6c\x8e\x9e\x28\x1f\xff\xcd\xdf\x2d\x8f\xdc\ +\x77\x5f\xd9\xe2\x8f\x44\x22\xae\x3d\x5b\x3c\x17\xf2\xa2\x85\x0c\ +\xe7\x5f\x3a\x6e\x43\xca\x05\xb7\x88\x7c\x52\x1c\x02\x1c\x43\x9c\ +\xf3\x88\x93\xb2\x93\xf5\xd4\x5a\xd6\x53\x4f\x3f\xf1\xfe\xf2\xa9\ +\xe7\xbe\x5d\x8e\xde\x3c\xa6\x03\x5f\x3f\x8a\x93\xd2\xcf\x64\x9c\ +\xd6\x30\x41\xa7\xc5\x16\x19\xee\x0f\x34\xfd\xc9\x8a\xcd\x21\x61\ +\xc2\xed\xb3\xdd\x42\x23\x37\x05\xbf\x7e\x54\x06\xdc\x3e\x04\x9c\ +\x13\xd7\x0c\x57\x10\x99\x29\xb4\xbc\x7e\xbd\x50\xfb\x51\xe3\x2a\ +\x84\x0c\xbe\xc5\x78\x68\x97\x62\xe2\x40\xd5\x72\xa0\xa5\xec\xc9\ +\x99\x79\x94\xdb\xc0\x84\xea\x70\x09\xb5\xef\xcf\xb4\xef\xc6\xab\ +\x1b\xab\x30\xbf\x40\x90\x92\xcd\x66\xcd\xd0\x9c\x3a\x1f\xf1\xab\ +\x2b\x31\x56\x54\x60\xaf\xfc\x3c\x86\x0e\xf7\xb5\x18\xf7\xd2\xd2\ +\x71\x03\x06\xa7\x6a\x3f\x77\x47\x98\xb5\xe7\xfe\xed\x03\x08\x68\ +\x49\x6a\x19\xc0\x18\x0f\x20\x89\x40\x12\x09\x77\x67\x7b\xcf\x01\ +\x46\x7b\xda\x04\x8e\x82\x3a\x04\xc5\x76\x0b\xf0\xb1\xd6\xad\x59\ +\x07\xb9\xfa\xa3\x19\xda\x80\xdb\x40\xfc\x95\x32\x22\xa7\x3d\x4b\ +\x6e\x8a\x49\x07\x4b\x55\x33\xb2\xdf\x89\x10\x72\xb6\x4d\x66\x99\ +\x06\x2d\x73\x06\x72\x3c\xc3\x37\x38\x2f\x33\xfa\x75\xd9\x5e\xb6\ +\x50\x83\x0d\xb9\x0d\x25\x72\xfc\xfe\x96\x33\xe6\x98\xda\x00\xb6\ +\x94\x48\xab\x8d\x42\x8d\x39\xfa\x0c\xe4\xae\xea\x3e\x5b\xd4\x21\ +\xc1\x02\x6d\xcb\x37\xd1\xa3\x66\xdb\xb6\x02\x68\xf2\x89\x55\xcc\ +\x71\xdf\x4a\xa7\x9c\xa9\x78\x93\x8c\x32\x56\x49\xa8\x6c\xbf\xc4\ +\x06\x33\x8e\xe8\x06\xc7\x52\x78\xb8\x05\xc7\xb9\xad\xaf\x2a\xab\ +\x72\x7c\xf3\xa4\x7c\xea\xf9\xaf\x97\xe7\x9e\xfc\x78\xc1\x93\x01\ +\x3e\x0e\x30\x78\x33\x9e\x65\xc1\x82\x05\x0b\x16\xbc\xb3\x58\xde\ +\x50\x5b\xb0\x60\xc1\x82\x03\xe0\x4b\xd7\x7e\xf9\x5a\x17\xb7\x3d\ +\xd4\xa3\x5b\x7f\x40\x2a\x5b\xae\xbc\x37\xe5\xaa\x4c\xbf\x1f\xfd\ +\xad\xdf\x2a\xbb\x47\x3e\x58\x5e\x7d\xeb\xad\x72\xb4\xda\x94\xd5\ +\x6e\xa7\x6d\xe0\x7f\xa9\x6d\xf0\x3f\xd5\x74\x81\xcd\xbb\x1c\xfd\ +\x95\x22\x5b\x49\xe1\x35\x81\x94\x26\x56\x74\x16\x72\xe4\x07\xef\ +\xa6\x99\x0f\x5d\xc1\x42\x9f\x1a\x57\xfc\x68\x41\xe0\x14\x3a\x60\ +\x53\x85\x6b\x7f\x95\x24\x56\x0a\x63\x0c\xf4\xa9\xdd\xb2\x44\x3d\ +\x86\x8e\x89\x43\xb9\xf3\x11\x23\x0f\x86\x05\xfb\x74\x56\xac\x23\ +\xb7\x97\xe1\x76\xbb\xdd\x89\xba\x22\xe5\x36\xb1\x67\x84\xae\x77\ +\x50\x93\xde\x84\xee\x42\x4f\x38\x0b\x1d\xbf\x55\x45\xdb\x93\x0f\ +\xae\xbe\xbf\xb7\x8a\x3d\xcd\xdd\x26\xdc\xf9\x16\xc7\xb8\xec\x91\ +\xbc\x4c\xe8\x18\xb1\x87\x72\xb1\x8e\x1e\x8e\xd0\x99\x76\x21\xef\ +\x4d\x5c\xb9\x1e\x27\xb5\xd3\x9d\x57\x53\x4e\x2d\x0d\x30\x59\x88\ +\x8b\x39\x67\x28\x0a\x38\x31\x91\x54\x92\x67\x9e\x45\xce\x47\x79\ +\xdc\x40\x76\x8d\x73\xa6\x38\x12\x44\xa7\x89\x33\xa5\xd4\xfb\x97\ +\xc8\xfe\xb0\xa4\x87\xcf\x48\x0e\x67\xf8\xf1\x80\xae\x7f\x8d\x6d\ +\x86\x96\x4e\x84\xc9\x82\x59\xc5\x46\xbc\x36\xcf\x10\xc6\xd1\xa0\ +\x6c\x87\x2c\x25\x4c\xe8\x99\x1e\xe5\x64\xaa\x35\x8d\xee\x11\x03\ +\x5f\xab\xf0\xa6\x85\xd1\xb8\x91\x6a\xbd\x93\x91\x51\x23\xdf\xa4\ +\x90\xfa\xed\xd5\x95\xf2\x17\xaf\xdc\x2c\x4f\x7e\xfd\xaf\x94\xc7\ +\x7f\xe2\x27\xca\x6e\x7b\xc2\x4f\x5a\xfb\x4e\xa3\x55\x84\x5b\x8a\ +\xd4\x01\x05\x54\xf8\x3a\xf3\x9d\x43\xd3\xb9\x05\x77\x0c\xb7\x72\ +\xd0\xfd\x78\xc9\x7a\x6a\xb7\x3a\x2e\x9f\x7a\xf1\x3b\xe5\x03\x8f\ +\xfd\x44\xb9\xfa\xd6\x56\x2e\x5d\x3b\xa0\x78\xa7\x37\xa6\x17\xd1\ +\xe5\x57\xdf\x08\x36\x3d\x41\xbb\x61\x36\x28\x93\x7e\xb9\xa1\x32\ +\xf5\x5a\xaf\xd9\x50\xea\xca\x26\x27\xc0\x5c\x22\x76\x77\x81\x25\ +\x6e\x70\xd5\x64\xdc\x54\x05\xd5\x10\xf3\x79\xd4\x1a\xeb\x3c\x98\ +\xd5\xe5\x04\xf1\x60\x1e\x86\xee\x26\x41\x15\x53\x0b\x61\xd4\x3d\ +\x8a\xb6\x04\x21\x26\x1b\x61\xfa\xe4\x8d\xa7\xb8\xe6\x15\xcd\x7c\ +\x18\x62\xb5\x25\x6f\x23\xb7\xe8\xe6\x2d\x43\xdb\x72\x3f\xf3\x0a\ +\x68\xd0\xd9\xc7\x44\x82\x71\xb6\xc9\x51\x6d\x7c\xab\x51\x95\x7d\ +\x6b\xac\x31\x50\x36\x6e\x10\x1b\x41\x1a\x31\x59\xab\x14\x1f\x42\ +\x82\xd8\x34\x25\x36\x03\x42\x98\xba\x31\x0f\xd4\x98\x98\xfe\x99\ +\x50\x4b\x12\x15\x52\xbb\x58\x85\x46\x1c\xdb\x21\x78\xe9\x31\xb2\ +\x39\x7c\xbc\xa4\x6a\xfb\x62\x76\x20\x6c\x8a\x24\x26\x8c\x09\x0c\ +\xa5\xde\x1a\x93\xc6\x91\xf3\x6e\x10\xd6\x91\x6c\x9a\xc3\x59\x9c\ +\x89\xdf\xae\x8d\xd6\x6e\xc7\xce\x8d\xc9\x99\x79\x90\x55\x07\xbf\ +\x1e\xef\xcc\xb9\x0c\xd4\xcc\xc0\x7c\xf6\x96\xd7\x23\x7b\xfb\x1c\ +\x7d\xdf\xb1\x55\x5b\x7b\xf5\x8d\x31\xd7\x6e\x6f\x1f\xf1\x7a\x9b\ +\xb7\x45\xfb\x5c\xe2\xb9\x0e\x09\x3f\x87\x50\x26\xb7\x5d\x27\xb6\ +\x67\x12\x58\xd0\x35\x12\x5f\xdd\x78\x7a\xca\xd5\x93\x44\x09\x53\ +\x04\x8c\x81\xde\x37\x4b\xbd\xdd\x94\xd5\xc9\xcd\xf2\xf0\xd5\xa7\ +\xca\x4f\x7e\xe6\xd7\x85\x04\xbb\xc6\x6b\x9d\x72\xe7\x66\x16\x2c\ +\x58\xb0\x60\xc1\x3b\x86\xe5\x0d\xb5\x05\x0b\x16\x2c\x38\x10\x58\ +\x04\xfb\xf2\x18\xc8\xcb\xdb\xe9\xda\x36\x5b\x74\x31\x0d\xf0\x26\ +\x17\x9b\xd3\x5d\x79\xec\xd9\x0f\x96\xe7\x7e\xfb\xb7\xca\x0f\xbe\ +\x5b\xca\x9b\x5b\x59\x4c\x63\x75\x2d\x37\x77\x78\x10\xc9\x37\xd3\ +\xf8\x4f\x6a\xd6\xfe\x28\xa6\x6b\x0b\xcb\x70\x43\xeb\x50\x72\x6d\ +\xd2\x20\x06\xb7\x41\xf4\x77\xd3\x08\x2e\xe9\x55\x0f\x9b\x01\x31\ +\x52\xf4\x9f\xd0\x43\xf1\xca\x1c\xb0\x7b\xbb\x01\xf3\x49\xc9\x2e\ +\x86\xd9\xd6\xab\x40\x93\x03\x4e\x33\x88\x08\xa9\xa7\x03\x6e\x63\ +\xdd\x3f\x38\x4a\xf9\xcc\x63\xc8\x99\x12\xc9\xe2\xb3\xb7\xc7\x3e\ +\x9f\xc3\x33\x8c\xb9\xb8\x81\x3a\x24\x4b\xc6\x98\x3f\xb5\x62\xdf\ +\xd3\xc1\xeb\x09\xf1\x10\xf1\xd6\x71\x59\x79\xce\x87\x5b\x6f\xf5\ +\xd6\x32\x20\xfa\xf6\xec\xf9\x6c\xd6\x91\x23\x9d\xb2\xfb\xd0\xd0\ +\x0e\xea\x76\x8d\xb0\x67\x40\x63\xe0\x34\xd3\x4a\x8a\x13\x07\x01\ +\x66\xca\x1e\x7e\x62\xce\x92\x47\x6b\xa2\x52\x9e\x5c\x17\xbd\x9e\ +\x10\xae\x31\xc7\x73\x57\xef\x9e\x5c\x06\x7d\x28\x8c\xe2\xd1\xd1\ +\xc3\x04\xb1\x65\x33\xd3\x8e\x78\xa9\x45\xb8\x8d\x32\xed\x85\xcd\ +\xbb\x86\x91\x34\x97\xdf\x31\xcd\x09\xa8\xd5\x1f\x1a\x46\x1b\x9c\ +\xc3\x15\x14\xf1\x67\xd1\x01\x7d\x5c\x83\x17\x00\xbc\x49\x46\x37\ +\x54\x1c\x97\x74\xcc\xf8\x1a\x05\x48\x02\xfd\xfc\xcf\xb6\xdc\x3c\ +\x3e\x2e\x7f\xf1\xc6\x49\x39\x7a\xfc\xf9\xf2\x9e\x5f\xfc\x36\xe3\ +\xd6\x47\x57\x2c\xcc\x1f\x08\x29\x20\x51\xb3\x34\x8a\x9a\xbf\xa2\ +\xd5\xee\x08\xde\x81\x26\x7f\xec\x71\xe1\x31\xd7\x40\x9c\xe3\xf8\ +\x3a\x2c\x2c\x95\xee\x7f\xe0\xe1\xf2\xd5\xcf\xfd\xad\xf2\xf0\xc9\ +\x03\xa5\x1c\x9f\xca\xe9\x8d\x3f\x50\x02\x4f\xce\x48\x39\x5f\x79\ +\xc3\x8b\xaf\x27\x45\x2d\x40\xcd\xf8\xe6\x5c\x14\xcc\xf4\x09\xb4\ +\x88\x05\x27\xf1\x42\x84\x83\x09\xeb\x6b\xb1\xc7\xed\x7b\x74\x9c\ +\xe7\x01\x47\xcf\x8e\xb6\xad\xae\x0c\xb4\x69\x62\x40\x6c\xa3\xe6\ +\xcc\xcc\xab\x92\x3b\x71\x06\x3a\x0a\xf7\x21\xd9\x5c\xf4\x3a\xba\ +\x61\x86\x44\x35\xb4\x1d\x85\x7f\x34\x2e\x93\xdd\x71\x08\x35\xb7\ +\x11\xf1\xc9\x9e\xf7\x0b\x92\x6a\xd8\x2a\x43\x6d\xb2\x95\x09\x8a\ +\xb1\x34\x5b\xb4\xcf\x6f\x06\x9c\x1f\xe0\xfb\xd6\x31\xd5\xbc\x28\ +\x5c\x0a\x8b\x08\x75\x3f\xa5\x75\x8a\xe1\xed\xd0\xda\xf5\x1c\x4e\ +\x80\x1a\x1d\xa3\x02\xa1\x81\x5b\xb2\x47\x65\x1e\x79\xd5\x24\x07\ +\x6d\xa6\x12\x67\xc9\xae\x1f\x02\xe3\x46\x08\x05\x19\x5f\xa9\xdb\ +\x34\xd0\x7c\xfc\xbd\x8a\x5e\x56\xb4\x41\xaa\x76\xb6\x09\x06\xfe\ +\xf9\x10\xf1\xe8\x6f\xc5\x2c\x39\x9f\x27\xed\x39\x53\x81\x60\xdf\ +\x13\x53\x0d\xba\x76\xd2\x38\x3d\x2f\xbc\xd4\x4a\xd1\x28\x07\x61\ +\x14\x51\x7b\xe8\x6d\x1a\x20\x44\x40\x8e\xac\x11\x07\x23\xae\x9d\ +\x9c\xd4\x6a\x73\xe1\x8a\x83\x88\x7d\xf6\x39\xaf\x9f\xfb\x3c\x52\ +\x79\x8a\x96\x31\x42\xca\x95\x77\x43\x90\x63\xeb\x5c\x9f\x78\x43\ +\x7e\x8d\xaa\xee\x6a\xc3\x14\x03\x7b\x3d\xb6\x90\xec\x0a\xcf\x6d\ +\xf0\x57\x0d\x58\x2f\xf1\x3f\xa4\x5b\x2c\xd8\x5b\xdc\xb3\x49\xec\ +\x91\xc8\x18\xbe\x2b\x1b\xd9\x1c\xaf\xca\x4f\x7f\xfc\x77\xca\xa3\ +\x57\x9f\xe6\xa7\xd3\x2c\xbc\x83\xb5\xbb\x60\xc1\x82\x05\x0b\xde\ +\x71\x2c\x6f\xa8\x2d\x58\xb0\xe0\xde\xc3\x3b\xb4\x96\xf4\x66\xb1\ +\xbe\xcd\xf2\x3e\x28\x4f\x6f\xaa\x20\x73\xcb\x1b\x8f\x2b\xb2\xc2\ +\x3e\x29\x1f\xfa\x85\x5f\x2a\x0f\x7d\xfe\x67\xca\x9f\x7f\xef\x87\ +\x65\xc3\x87\x90\xb2\xcc\x96\x05\x36\xde\x46\x5b\x6d\x64\x92\xe6\ +\x2c\xad\x8b\x6d\x4a\xf6\x24\x27\xf2\xc1\x4e\x9f\xb6\xd4\xf4\x47\ +\x14\x5a\x61\x44\xb3\x90\x1d\x62\xe3\x42\x5f\xda\xcb\x37\x19\x49\ +\xd4\x42\x58\x24\x6d\x6e\x44\x42\xd8\x45\x37\x13\xfa\xa2\x4c\xd9\ +\xce\x3e\xac\xf1\x1b\x29\xbb\xf9\x00\x3c\x85\xef\x64\x06\x52\x69\ +\x55\x61\xb6\x29\x26\xcc\xe0\x45\x77\x5a\xb7\x40\xc7\x51\x25\x67\ +\xab\x65\xdc\x46\x8b\x36\x62\x5f\x3b\x15\x13\x97\x25\xa1\x3d\x9c\ +\x62\xec\x88\xa0\x79\x99\xc0\x8d\x88\x81\xec\x35\x20\x32\xf7\x72\ +\x18\x98\x01\xc2\x7e\x12\xd2\xa2\x00\x5e\xdf\x7e\xe4\x56\x17\x8c\ +\x51\x8f\x1d\x47\x8a\xe2\xcc\xf1\x1c\x0e\x65\xcb\x53\xca\xbe\x31\ +\x87\x0f\x05\x57\xb3\x5d\x39\xcd\xf5\x8b\x33\x6e\xd0\x76\x0f\x36\ +\x21\x9b\x49\x53\x13\xc3\x00\x63\x4e\xd3\xea\x01\x5d\x00\x82\x16\ +\xf3\x5b\x9a\x0b\x05\xc3\x96\x64\xfe\x6b\x59\x8e\x3d\x8d\x46\x22\ +\xe1\x84\x2c\x42\xd3\x80\x8e\x5c\xdb\x26\x2c\x52\xd2\xbc\x1a\xad\ +\xd0\x24\x1b\xa3\xa0\x28\xcb\x0d\xbe\xf5\x5a\xb9\x48\x05\x1e\x5f\ +\x4b\x68\x82\x57\x23\xfd\x83\xcc\xe4\x0b\x11\x87\x16\x6f\xa6\xe1\ +\xdb\x1e\xc1\xe0\xff\xe6\x3c\xdd\x95\x95\x10\x5f\xdd\x6e\xca\xf5\ +\xb7\xae\x96\x9f\xf8\xfd\xbf\x53\x1e\x7e\xf2\x5d\xb4\x21\x52\x3f\ +\x19\xa1\x80\xc5\x35\x1f\xb3\xea\x6d\xa1\xde\x05\x3f\x72\xf0\x03\ +\xdb\x1f\xe0\x8b\x1e\x70\x3b\x81\xf4\xdc\xc5\x7f\x9d\xb9\x5e\x3e\ +\xf0\xd4\x67\xcb\x67\x3f\xf2\x9d\xb2\x7e\x5d\xbf\x42\x1b\x9f\x08\ +\x58\xe1\x8d\x63\x7b\x7f\x8b\x6f\x9c\xe3\xfd\x35\x5e\xe7\xf5\x0c\ +\xc4\x39\xe9\xe7\x65\x8b\xb9\xb3\x54\x3d\xee\xf5\x48\xd5\xf9\x6a\ +\x2b\x95\x37\xaa\x15\x85\x90\x01\x67\x63\xe3\x0e\xf4\x02\xd7\x7f\ +\x25\x36\x21\x82\x3a\xaf\x6a\xcd\x2d\xe7\x22\x85\xf3\xb5\x17\x52\ +\xd2\xbc\xac\x3e\xd3\x2b\xb1\x8a\x2e\x08\x5c\xd4\xfc\x14\xad\xb2\ +\xfd\x0b\xa4\xb6\xc5\x91\xbd\x3e\xc7\xb4\xdb\x39\x54\x0e\xa5\x86\ +\x2c\x6d\x48\x23\x68\x67\x7f\x0e\x41\x4f\x30\xdd\xcd\x3e\x85\x32\ +\x57\xf3\x9a\x05\xf4\xfb\xe6\x70\x9e\xd4\x93\xfc\x39\x47\x8a\xa7\ +\x80\x0d\xfc\x29\x3e\x43\x07\xac\x01\x18\xf9\x38\x00\x50\x73\x09\ +\x84\x52\xdb\xed\x6b\xa0\x89\x69\x00\x8f\x97\x84\xf9\x80\xfd\x3e\ +\x83\x53\x50\xf3\x5c\x36\xc3\x74\x74\x13\xb3\x77\xd1\x60\x46\x0e\ +\x08\x8a\x8d\x5f\x72\x39\xa8\xf6\x03\xd7\xc0\x7c\x13\x4a\xbd\xda\ +\xb2\xab\xa7\x51\x0f\xa3\x08\x66\x88\x7d\x62\x35\xdf\xbf\x8a\x59\ +\x87\x20\xf9\x62\x5f\xb4\x05\xbd\xca\x78\x76\x58\x19\x43\x7b\x50\ +\x63\xf7\x8e\x49\x76\x59\xd7\x2f\x0c\xc6\x7b\x92\xb9\x64\xda\x20\ +\xb6\x5a\x84\xc7\x0b\xb2\xf2\xfb\xc8\xc9\x25\x7a\x06\x7c\x9e\x00\ +\x7c\xf7\x26\x39\xa5\xb4\x36\xd3\x18\xa0\x3d\x23\xf8\x3a\x61\x25\ +\x7c\x2d\xda\x3c\xd0\xf1\x02\x83\xa2\x5a\x7d\xbd\x01\xec\x6c\x59\ +\xeb\x7c\xa6\x69\xf1\x36\x1b\xbe\x1e\xfb\x8a\xe8\x27\xe5\xc3\xef\ +\xfd\x5a\xf9\xf4\x87\xbe\x2e\x6b\x30\xbc\xaa\xf1\xbb\xb5\x11\xb1\ +\x60\xc1\x82\x05\x0b\xee\x52\x2c\x6f\xa8\x2d\x58\xb0\x60\xc1\x81\ +\xc0\xb2\x36\x2f\xa7\xf3\x32\x77\x6e\xc9\x0b\x7b\xf5\xa5\x68\x88\ +\x78\xb7\x6c\x73\xb5\x3c\xf7\x3b\xbf\x55\x6e\x5c\x7b\x6f\xf9\xc1\ +\xeb\xd7\xe5\xde\x67\xcd\x07\x97\xf0\x6d\x44\x5e\x1f\x49\x41\xcd\ +\x27\x99\x29\xbe\x6f\xd0\x74\x2c\xd7\x29\xc6\x22\xdc\x6a\x7e\x1a\ +\xc1\x1e\x1a\xc5\xe2\xde\x21\x56\x31\xd9\xe3\x9f\x08\x09\x50\xc7\ +\x06\x39\x34\x4f\x26\x65\x8d\x72\x75\x29\x4c\xf7\x48\x40\x1f\x1a\ +\x51\x20\xd0\xdd\xe8\xb2\xec\x27\x7b\xea\xba\x20\x89\x1d\xb8\x47\ +\x52\xd5\xb1\xa9\x52\x0f\xed\x7f\x9f\x4b\xe3\x29\xee\x09\x9e\xcf\ +\x0a\xd4\x9c\xfb\x5a\x17\xd6\xfe\x34\x03\xcc\x04\xf4\x3b\x01\xa4\ +\x31\x20\xa0\x9e\xb9\x5f\x17\xc3\xa8\xf9\xcb\xc7\xe5\x76\xfa\xfc\ +\xd9\xb0\x97\x5e\xee\x66\x9c\xa3\x7f\xc3\x41\xd0\xf8\x26\xcb\x80\ +\x47\xbf\x6c\x5a\xb6\x11\xe5\xe2\x6d\xe2\xa9\xc5\x6c\x64\xda\x18\ +\x6d\x5c\x82\x07\xcc\x05\x9e\x0b\x67\x24\xf1\x4e\x90\x86\xcd\x94\ +\xdf\x5a\x4c\x93\x6a\x7f\xff\x2b\xaf\x85\x1b\x74\x84\xfa\x39\x13\ +\xde\xfc\x50\x5d\x31\x49\xa2\x3c\xb9\xee\x6b\x3c\x2c\x99\x27\xb2\ +\xcf\x0b\x52\xf9\xc3\x3f\xd4\x99\xc5\xbd\x90\x5f\x7c\x43\x9e\x69\ +\xba\x05\x49\xe2\xf1\xe0\x19\x2f\x41\x6b\x6b\x6b\x77\x8a\x4f\xb2\ +\xed\xca\x5b\xab\x2b\xe5\xb5\x1f\xee\xca\x33\x3f\xf5\xed\xf2\xdc\ +\x97\x7e\x52\xb8\x92\x80\x3c\x26\x10\xe8\x79\xc1\x34\xd4\x5b\xc0\ +\xde\xf7\xe4\x1d\xc3\xa8\x83\x0b\x2e\x1f\xfd\xc9\x70\x91\xc3\x8f\ +\xf8\xee\x78\xe1\xef\xfc\xb1\x8a\xf9\xec\xc7\x7e\xb3\x3c\xfb\xd8\ +\x87\xca\x7d\x37\x44\xc5\xc9\xca\x8b\x43\xce\x43\x39\x35\xb1\xc6\ +\x88\x99\x8a\x3e\x15\x1d\x50\x27\xdd\x71\x83\xd4\xd9\x07\xae\x5e\ +\xa3\x76\x06\x7b\x2e\x2a\xce\x1c\x34\x60\xb6\xba\xde\xd1\xaf\xfa\ +\x86\xaa\x26\x77\x28\xa8\x59\x3a\xcf\xaa\xe8\x8c\xad\x33\xa1\xf2\ +\xbc\x8d\x18\x03\xba\x66\x03\x89\xa1\xb7\xa6\x54\x34\x24\xc9\xcd\ +\xf4\x5e\x1b\xfa\x44\x39\x87\xfb\x7a\x0e\x10\xbc\x91\x53\xdd\x68\ +\x06\xcb\xe3\x68\xce\xa8\xd0\x69\x4b\xa1\x2e\x22\x1f\xe3\x54\xad\ +\x40\xa2\x64\xd4\xaf\xe7\x75\x98\xdc\x50\x1a\x85\x88\x7e\x08\xd4\ +\x85\x2d\x46\xdd\x89\xdd\xde\x24\x25\x18\x22\x34\x9c\x21\xa4\x25\ +\x90\xce\x26\x1e\x00\x4f\x94\xcb\xc5\xa1\xe7\xb7\xe4\xb0\x34\x35\ +\xdb\x20\x77\xe2\xf8\x71\x21\x8c\xea\x6c\x53\x43\xaf\x48\x24\x87\ +\xe9\xd5\x6c\x63\x95\x91\xf5\xde\x97\x40\xd7\x1e\x3f\x70\x86\x3b\ +\xc0\xbd\x3b\x94\xbc\x0f\x17\xcd\xb1\xa7\xf9\x18\xf7\x4b\x85\xb4\ +\xa6\x13\x6f\x00\x57\x42\x6e\x4b\xd7\x2f\xe3\xd6\xab\x55\xa5\x26\ +\x2e\x36\x03\x88\x9d\xae\xd8\x59\x13\x68\xaf\x23\x30\xe4\x38\x4c\ +\xd5\x6a\x9f\x0f\x48\xe7\x2d\x25\x5d\x2b\x41\xe6\x12\x8c\x45\x36\ +\x52\xf4\xda\xd0\x4f\x50\xaf\xca\x56\x28\xf2\xea\x25\xe4\x07\xd6\ +\x4f\x96\x9f\xfb\xf4\xef\xf2\x5b\x6a\x7c\xd9\x36\x7d\x50\x5b\x5b\ +\x5c\xb0\x60\xc1\x82\x05\xef\x3c\xa6\xf3\xf4\x82\x05\x0b\x16\xdc\ +\xed\xa8\xab\xd6\x3b\x06\x6f\x52\x97\xc9\xe3\x2e\xec\x5b\xe6\xfa\ +\xed\x43\x73\x1b\x71\x2a\x53\xf0\xe9\xae\x3c\xf1\xc1\x8f\x95\xa7\ +\x7f\xe3\xb7\xcb\xbf\xfb\xfe\xb6\xfc\xf0\xfa\xf5\xb2\xda\x6e\xcb\ +\x0a\x5f\xf9\xb8\x3a\x2a\x47\xeb\xa3\xb2\xde\x6c\xf4\xff\xaa\x61\ +\xf1\x8d\xf5\xb8\x84\x46\x5b\x33\x8d\x46\x7f\x29\x60\x23\x25\x57\ +\xfe\x34\xc7\x6c\xea\x40\x89\x4a\x6a\xe9\x2d\x0a\x8d\xda\x10\xb7\ +\x74\xa2\x60\x63\x48\x62\x85\xf6\x74\xda\xc5\x71\xa7\x6b\x8a\x24\ +\xb9\x98\xf3\x67\xd9\x52\x61\x7f\xf4\x26\x09\xce\x94\xbf\x69\xaa\ +\x19\x7d\xc3\xc8\x62\x3c\xcf\xad\xd5\x81\x68\xd9\x59\x63\xff\xf6\ +\x24\xa3\xab\x0d\xf0\x0d\x81\xee\x34\xbb\x43\x8c\x12\x8e\xda\xc9\ +\xb7\x90\xfb\x70\x18\x0b\x18\xb5\x7c\xf9\x38\xbc\x3f\x67\xe1\xb2\ +\xfb\x7b\x67\xf6\xff\xfc\x98\xed\xd7\xde\xa1\x84\xb3\x46\x52\x92\ +\x8b\xaf\x09\x11\xc5\x6f\xf2\x15\xd9\xdf\x38\x26\xe8\x79\x93\x3e\ +\x1e\x34\x98\x88\x1d\xb7\x33\x17\x5e\xfb\xbb\xbf\x01\xcc\xab\x15\ +\x95\xeb\xd2\x34\x1a\x96\xfd\x39\x89\x71\x77\xcf\xc4\x01\x99\x89\ +\x59\x5e\xd7\x2e\x55\x27\x4b\x4d\x91\x9b\xfa\x10\x48\x25\xcc\x7d\ +\x78\x57\x0d\x5f\x50\x04\x15\xaf\x39\x22\xf1\xf5\x08\xb7\x0c\xe2\ +\xdd\xe1\xb8\x9f\x96\xed\xc9\xaa\x7c\xf7\x07\x37\xcb\x43\x4f\x7f\ +\xa4\x7c\xf0\x6f\xfc\x76\x29\x5b\xfc\x6f\x35\x7d\x4c\xe4\x1d\xd0\ +\x07\x46\x0e\x6d\x69\xf4\x8a\x90\xe1\xde\xfd\xac\xdb\x80\x3b\xde\ +\xe0\x8f\x19\x30\xbe\x7e\xb2\x8d\x70\xee\xf1\x97\x00\xe6\xd3\xc0\ +\x1d\xff\x9a\x7f\x57\xae\x3c\xf8\x70\xf9\xea\xa7\x7f\xbf\x3c\x78\ +\x7c\x05\x7f\xf0\x2f\x76\x59\x4f\xe1\xcd\x34\x21\xb7\x6f\x8e\x18\ +\x92\x89\xd7\x00\x72\xa6\x7e\xf2\x7c\xd5\x5f\x6a\x74\x26\x3f\x4c\ +\x59\xad\x4a\x04\x11\x30\xeb\x95\xe3\xc6\x26\xca\xa0\x3e\xe5\xa4\ +\xe0\x89\xec\x59\xea\xd5\x34\xba\xae\x60\x19\x59\x23\x96\x13\xa4\ +\xf5\x63\x42\x1c\x64\x14\x83\xc7\xd6\x0a\x7d\x51\xae\xee\xa3\xc0\ +\xc6\xd9\x58\x2d\x3a\x63\xee\x02\x10\x39\x7a\x08\xaf\x7b\x2e\x2f\ +\xe8\x99\x3a\x8b\x39\xfa\xf6\xc3\x1b\x8e\x9e\x01\xf4\x39\x05\x23\ +\xda\x04\x20\x29\xb1\x49\x2f\x85\xfa\xe4\xdc\xab\xc7\x70\x16\x70\ +\x79\x49\xc8\xe6\x70\x49\x7e\x36\x31\x71\xdc\x0a\xc6\xc9\x5c\xcb\ +\x9e\x90\x65\x83\x63\xca\xe3\x4a\x43\xe5\xb4\x18\x5b\x03\x43\xf7\ +\xd4\x08\xcb\x19\x99\xc6\x38\x2b\xe8\xdc\x49\xfd\xbc\x39\x20\x70\ +\xee\x14\xb3\x50\x56\x89\xd3\xd2\x07\xc1\x02\x6f\xb5\x6d\x5d\xb8\ +\x03\xfa\x28\x43\x6d\xb3\xcd\x30\xd3\xdc\x18\xe4\x8e\xee\xb3\x24\ +\x67\x97\x56\x01\xe3\xa8\x81\x64\xeb\xe3\x7a\xfa\x24\xef\xa8\xf5\ +\x61\xe3\x81\x98\x6f\x9b\xd0\xaa\xf0\x5c\x16\xb4\x59\xf0\xbf\xd0\ +\x5a\x4b\xfb\x95\xfe\xed\x38\x60\x6d\xc4\x56\xc8\xe1\x0b\x92\x3e\ +\x84\x3d\xdd\x94\x2b\x72\xe1\x9e\xde\xd8\x95\xaf\xbc\xf8\xab\xe5\ +\x5d\x8f\x3c\x2d\x4b\x6f\xe9\x31\x83\xb1\x16\xcb\x68\xdb\x5b\xb0\ +\x60\xc1\x82\x05\xef\x3c\x38\x97\x2f\x58\xb0\x60\xc1\x5d\x85\xbc\ +\x0a\x1d\xe1\x1d\x5e\x53\xa2\x7b\xe7\xe9\x82\x72\xb1\x95\xe5\x77\ +\xdc\x54\x4b\x16\x2c\xac\x57\x47\x78\x56\x59\x3e\xf2\xed\xef\x94\ +\x77\x7d\xe5\x9b\xe5\x3f\xfd\xe9\x1b\x65\xbb\xba\x5a\x56\x27\x27\ +\xe2\x53\xfe\x66\xb3\xb6\xff\xa7\x86\x58\x9d\xb6\x23\x27\x52\xb8\ +\x8e\x94\xa8\x89\xf4\x60\xa1\x1a\x09\x72\x65\x9d\x8e\xe5\x7e\xcf\ +\x09\x4b\xb7\x8e\x27\x57\xfa\x5b\xbf\xba\x22\x21\x62\x7d\x63\x35\ +\xb8\xfc\xb5\x9b\x03\xf7\x11\x8d\x62\xd0\xbd\x6a\x30\x30\xc1\x56\ +\xcd\x99\x80\x9c\xd0\x07\xb9\x7b\x93\xd0\xb8\x4f\xa6\x02\x94\x07\ +\xa1\x3d\x0e\xa0\x0c\x80\xa8\x36\x32\x4e\x05\x41\x78\xf2\xee\x1c\ +\x8c\xae\x47\xc8\x91\x87\x41\x6a\x3d\x6c\x67\xdd\x56\x1e\x8e\xcb\ +\xca\xb3\x1f\xdd\x7e\x5d\x02\x0e\xcb\x78\xf9\xed\x9e\x85\xbe\xc5\ +\xd1\x65\xa6\x18\x39\x0e\x3c\x1a\x07\xec\x56\xa5\x68\xce\x26\xa4\ +\x8f\xb7\x13\x18\x5b\x5c\xdf\xd3\x5e\x74\x01\x46\xe8\x79\xd4\xdd\ +\x38\x4d\x22\x80\x51\xca\xd0\xe7\x48\xfe\xc4\xd3\x87\x12\x1d\xc2\ +\x0f\xa7\x2a\x41\x9b\x08\xc8\x0b\x8e\xf2\x26\xfb\x99\x68\xd5\xd1\ +\x30\x66\x80\x40\xcb\xc9\xed\x00\x9e\x9b\xf5\x80\xe5\x7e\xc7\x5e\ +\xbd\x8b\xef\x72\xe2\x7c\xd3\x7f\xa9\x86\x37\xcc\x58\xd9\x5c\x7f\ +\x2a\xaf\x3d\x78\x50\x6b\x5c\x56\xbb\xb2\xdb\x9e\x96\x57\xb6\xab\ +\x72\xf3\xfa\x7d\xe5\x63\x7f\xf3\xef\x95\x77\x3d\xf5\x94\x58\x11\ +\x24\xaf\x57\xc2\xe0\xcc\xca\x18\xe4\x00\xfa\x47\x4f\x0e\xf7\xb7\ +\xf0\xc8\x71\xcc\x82\x7b\x12\xf5\x54\x98\x1e\xd8\xf3\x1c\xe8\x86\ +\xdb\x06\xf2\x41\x64\xb9\x59\x3e\xfc\xec\x57\xca\x27\x3e\xf0\x0b\ +\xe5\xf4\x8d\x1b\x46\xb1\x05\x8d\xb4\xcd\xff\x63\xe3\xeb\x1b\xd1\ +\xbd\x3b\xb5\x7b\x2e\x09\xc4\x91\x34\x83\x18\x27\x13\x0b\x1b\x09\ +\x4c\x63\x0c\x41\x4b\xad\xf0\x69\xad\x68\xe6\xdb\x9f\x19\x48\x8c\ +\xec\x74\xf3\x34\x20\xd6\x1a\xac\xea\x66\x0c\x73\xe9\x43\x64\x6c\ +\xe6\xb9\xe3\xbe\x3a\x1f\xdf\xb6\xa0\xd2\x7c\x86\x3e\x26\xa1\x4f\ +\xbe\x07\xbe\xb2\xf1\xfd\x3c\x34\x16\x74\xf6\xd1\x8b\xa1\xaa\xd8\ +\xce\x24\x13\x57\x0a\x49\x4a\x8d\x0c\xc8\xf9\x02\x5d\xfb\xd7\x78\ +\x0c\x62\x83\x73\xe4\x72\x4c\x7c\xd5\x30\x92\x08\xa8\xb9\xdc\x12\ +\xce\x48\x64\xae\x3d\x0c\x41\xf2\x38\x71\x40\x8e\xe3\x28\x4e\xfc\ +\xe0\x6a\x49\xa6\x29\x68\x1b\x39\x12\xc4\x5d\x73\xb8\xe4\x67\xce\ +\x3c\xe8\xaf\x81\x56\x3c\x12\xe7\x06\xfa\xd6\xde\x4b\x38\x22\x2c\ +\x49\x67\xc3\xb8\x33\x21\xed\x2b\x69\xba\xcf\x9b\x01\xd8\x1a\x31\ +\xdd\xd7\x3e\xb6\xf5\x57\xef\x59\x6d\x8c\xd0\xc4\x50\x71\x4b\xce\ +\x3b\xca\xdc\xf7\x52\x91\x99\x21\xcf\x84\x4f\xf7\x53\x7f\x88\x34\ +\x77\xf7\x79\x46\xe9\x88\x89\x7f\xf4\xf8\xd4\x5b\xb0\xad\x54\xf8\ +\xe3\xa4\x9d\xb4\xe7\x9f\xd8\xd7\xa6\xf1\x27\x1e\x22\xc8\x82\x0b\ +\x6b\xac\xb5\xe8\xd7\xdf\xbe\x5e\x3e\xf0\xe4\x67\xcb\xe7\x5e\xf8\ +\x56\xd9\xca\x02\x0c\x6b\xae\xc8\xc3\xed\x82\x05\x0b\x16\x2c\xb8\ +\x5b\xb1\xbc\xa1\xb6\x60\xc1\x82\x7b\x07\xbe\xb2\xbc\x4b\x56\x98\ +\x58\xf2\x7a\x01\x72\xb7\xb2\xaf\xda\xfd\xe6\x47\x6b\x7f\x8e\x02\ +\xe1\xbe\xcd\xd5\xf2\xd2\xdf\xfa\xc3\x72\xe3\x89\x8f\x94\x57\xdf\ +\x78\x43\xee\xf7\x36\xe5\x74\x7b\x4c\x3f\x3e\xad\x86\x37\xd5\x36\ +\x78\x53\xcd\x3f\x29\x20\xb1\x98\xc0\xf9\x70\x08\x89\xc0\x63\x66\ +\x14\x6c\x15\x7a\xab\x47\x37\x17\xf8\x5c\xd0\xa3\x00\xac\xed\x56\ +\x03\x29\xcc\xee\x0f\x52\xd5\x88\x45\xbf\xd6\x01\x73\x7b\x09\x0f\ +\x74\xd9\xb0\x42\x88\x6b\xcc\xa7\xac\x9a\xa5\x4a\xe4\xc9\x06\x16\ +\xf6\x5d\xda\x62\x5d\xef\xaa\x83\x0e\xee\x1c\x3c\x8f\x72\x52\xec\ +\x00\xfb\xf2\x44\x64\xe4\x72\xf8\xf1\x53\xf8\x8d\xad\xdb\xf6\xe5\ +\xcc\x37\xc1\x2d\x4f\x35\x64\x26\xc3\x9c\xed\x4d\x73\x8d\x08\x29\ +\xbb\x27\x30\x16\x38\x52\xa0\x05\x9d\x63\x7b\x6b\xa8\xbd\xb9\x13\ +\xc8\xad\x5d\x46\xcb\x76\xbe\xdb\x8f\xe6\xec\x0b\xe0\xf5\x7e\xe4\ +\x88\x5b\x45\x9f\xa7\xd1\xed\x58\xb6\xc8\xad\xb7\xce\xec\x39\x1c\ +\x9a\x83\xb1\xd8\x50\xd5\xf3\xa5\x66\xd7\xac\x3c\x3f\x85\xd4\xb6\ +\x51\x59\x74\x9b\xc0\x7c\x94\x2b\xc8\x4c\xf4\x1e\x3d\xbf\xc1\x20\ +\x8e\xa6\x99\x20\x37\x47\xed\xc2\xbe\x20\xa2\xbf\x0a\x45\xf3\x39\ +\xc9\x1d\xac\xf5\xea\xd5\x92\xda\xb1\xda\xb9\xee\xcb\x53\x29\x00\ +\x9b\x9a\xb0\x95\xe2\x81\x0d\x2f\xb2\x99\x68\x5c\x87\xd8\x68\x76\ +\x5a\x70\x12\xab\xc9\x27\x2a\x75\x21\xe2\x45\x41\xe4\x53\xbc\xa3\ +\x66\x83\xe3\x69\x18\xc3\x97\x1b\xfd\x64\x1a\xfe\x3d\x1a\xf6\xf3\ +\xfa\xfa\x6a\xf9\xde\x0f\xb6\xe5\xc9\x5f\xf8\xd5\xf2\x9e\x2f\x7f\ +\xb9\x9c\x9e\xec\x84\x87\x4f\x51\x6b\x90\xcd\xe0\xcc\xe3\x67\x49\ +\xe4\x24\xd4\xa3\x0d\xb8\xec\xc5\xb7\x0a\x30\x50\x16\xdc\xe3\xf0\ +\x03\xb9\xef\x60\x66\x9f\xcb\x7b\xf9\x72\xa6\xd8\x64\x45\x51\xd6\ +\x46\xf8\xd4\xd5\xe9\xea\xb8\x7c\xe9\x13\xbf\x5b\x9e\x7d\xe0\x23\ +\x65\xf3\xf6\xcd\xb2\x5b\xcb\xf9\x89\x37\xd1\xf0\x6e\x31\x4e\x55\ +\x44\xc8\xc9\x8c\x1f\xc6\x31\x83\xa5\x02\xb8\x50\x12\xd0\x81\x33\ +\x5e\x3b\xe1\x6e\xb2\x61\x92\x02\xaf\x42\xe7\x80\x06\xbc\xd8\x2d\ +\xaa\x73\xb9\xee\x0c\x9d\x3d\x00\xb1\x48\x9b\xb5\x2d\x83\x98\x63\ +\xee\x90\x8b\x57\x63\xa8\x70\xdb\xcc\x2b\x59\x4e\x00\x07\x7d\x8c\ +\x7e\x4a\x1e\xa7\xb6\xb5\xb6\xce\xad\x18\xfc\x7a\xce\xc0\x9b\xec\ +\xb0\x69\x4f\xb4\x37\x29\x8a\x50\xbf\x5b\xa6\x39\x02\xc9\x51\x73\ +\x8e\xd1\xe6\x50\x4d\x47\x0b\xb2\xd6\xc3\x96\x38\xe1\x99\x3d\xa5\ +\x9f\x32\xcd\x12\x0e\x8b\xb3\x2a\x39\xd4\x1c\xaa\x24\xf5\xf3\xc6\ +\x10\x21\x61\x06\x47\x2a\x1a\x35\x30\x54\xf1\xb1\xdf\xaa\x74\x30\ +\x96\x55\x41\xaa\x8d\x1f\x06\x8f\xef\xcb\x19\x68\xa8\xb2\xc1\x27\ +\x3d\xf9\x47\x16\x52\x42\x6e\x58\xf5\x08\xa8\x24\x85\x7c\xb5\x51\ +\xd5\xaa\x29\x40\x73\x1e\x1b\x22\x5b\xe7\xa3\x3a\xe1\x8b\x41\x7f\ +\xab\xcb\xf4\x16\x9e\x75\xea\xe4\xee\x18\xda\x23\x6a\x30\x3f\x2b\ +\xd9\xa0\xcf\x6a\x0a\xc1\x2b\x41\xb5\x05\x72\x03\x86\xdc\x4e\xdf\ +\x66\xcb\x1e\xf6\x28\xac\xad\xf7\xac\xc8\x6a\xa1\x34\xed\x96\x22\ +\x05\x86\x38\x4d\xa6\xa0\x5d\x9d\xd8\x56\xbe\x24\x8f\x09\x76\x0a\ +\xb8\xa6\x5e\xcf\xa0\x9e\xa9\x5f\x6c\x62\xec\xed\x3a\xb3\x1b\x4c\ +\x18\xed\x5a\xb6\x91\x66\x06\x3d\x3c\xc9\x6b\xc7\x8b\x95\xc9\x91\ +\x5f\x54\x9a\xa9\x88\x55\x7e\xf1\xff\xcf\xf0\x07\x46\x35\x8f\x5c\ +\x27\x70\x9d\xee\xd4\xbe\x15\xdb\xe9\x56\xa6\x8b\x4d\x29\xc7\x37\ +\xcb\xfd\xdb\xc7\xcb\xd7\x5e\xfa\x2d\xa1\xc9\xeb\x17\xff\x78\x16\ +\xb1\x35\x2b\x31\xba\x30\x16\x2c\x58\xb0\x60\xc1\x3b\x0e\xbd\xf7\ +\x5d\xb0\x60\xc1\x82\xbb\x0d\xb1\x5a\x35\x40\xbf\x47\xd6\x93\x7d\ +\x37\x55\xb7\x05\x7e\xbf\x5f\x34\xac\xcb\xe9\x6e\x5b\x1e\x78\xe6\ +\xd9\xf2\xf1\xbf\xff\x87\xe5\x4f\xff\x62\x57\xbe\x77\xfd\xa6\x04\ +\x6e\x24\x76\x47\x0a\x16\xd7\xeb\x0d\xfe\x7d\x31\x80\x1b\x41\x91\ +\x6c\x61\x3f\x1a\x96\x89\xcd\xda\x6d\x9a\x87\x12\x76\x13\xf0\xd0\ +\x49\xa0\x2e\xbf\x2d\xb1\x5a\x9f\xc6\x4c\xa1\x14\x03\xfa\x26\x6c\ +\xea\x95\x9f\xc3\xea\x33\x87\xb6\x97\xda\x96\x4a\x23\x84\x57\x84\ +\x60\x88\x50\xb3\x88\xd4\xa6\x0c\xcc\x75\xdd\x91\x7d\xfb\x78\xfb\ +\xe1\x91\xd6\x89\x99\xbe\x38\x74\x8c\xe6\xda\xcb\xd6\x9a\x68\x3e\ +\xe5\x20\x4b\x67\xb2\xa3\x78\x29\xb8\xac\x3c\x87\x01\xad\x79\x8b\ +\xb9\xe5\xde\x96\x7d\x19\xf3\xfe\xb9\x88\xf3\xe2\x32\xf3\xec\xcf\ +\x35\x3a\x03\xe6\x23\x0e\xef\x57\xc7\x44\x33\x72\xd1\xf0\x5a\xe6\ +\x56\x4c\xc3\x93\x4f\x3c\xb0\xcf\x9c\x98\x9e\xb5\xba\xa7\xc4\x29\ +\x07\x98\xe7\x01\xe8\x53\x46\xf6\x65\x8c\xed\xd8\x1f\x89\x8f\x07\ +\x14\x29\xd7\xb4\xd9\x9a\x03\x21\x26\xce\x36\x08\x44\x8e\x9a\x8c\ +\xf4\x26\x77\xdb\x10\xfc\xa3\x94\xfc\x63\x86\x8e\xdb\xe8\x16\xa4\ +\x2c\xb3\x4f\xe8\xea\xad\x0e\x61\x8a\x88\x47\x3e\x0e\xca\x7c\xd8\ +\xa3\x1a\xde\x94\xc0\x1f\x6e\xe0\x8f\x39\xa2\x63\x12\x84\x3f\xb6\ +\xd8\x6e\x4b\xf9\xee\x5b\xbb\x72\xf4\xae\x0f\x97\xe7\x7f\xfd\xb7\ +\x38\x9f\xe3\xdb\x8b\xd7\x98\xd0\xf2\x49\x02\x35\xda\xf5\xd2\xc3\ +\x93\x8f\xb1\xdf\xbb\xe0\x9e\xc3\x59\x07\x14\xfe\xd1\x69\x92\x91\ +\x73\x50\xae\x01\x90\x4e\xcb\x91\x9c\x86\xa7\xe5\xfe\x87\x1f\x2b\ +\x5f\xfb\xcc\xdf\x2c\x47\x6f\x5e\x29\xe5\x18\x8f\x31\x8f\xf9\x3f\ +\x00\xb9\xc8\xb1\x10\xae\x45\xac\xa0\xf2\x4c\xfa\xda\x2c\x1b\x31\ +\xf8\x75\x45\x13\x44\x27\x79\x20\xb6\xb8\x36\x28\x29\x82\x32\x03\ +\xe5\xa6\xbc\x01\xd1\x66\x82\x9b\xa6\x05\x3d\x6d\x12\x96\x02\x6a\ +\x1b\x30\xe0\x61\xed\x4c\x6f\x43\x8c\xd9\xa4\x62\x62\xa8\xa8\xae\ +\x29\xc9\x5b\x9a\x0f\x17\x4f\x74\x47\xc6\xd1\x89\x29\x00\x6e\xce\ +\xd9\x93\x24\x7d\x76\xf4\x5b\x6c\x89\xd7\x86\x18\xbf\x31\xda\x2c\ +\x15\x7d\x50\x50\x15\x63\x1b\x0f\x74\x44\x81\x72\x8c\xc9\x8a\x19\ +\x5d\xb1\xad\xc7\x8d\xfa\x30\x51\x0d\xbd\xd5\x74\x74\xd6\x5d\xa8\ +\xc7\xc1\x87\xc3\x73\x74\xa5\x79\xe9\x70\x9b\x89\x8e\x2c\xb7\x48\ +\x9e\x2e\x60\x18\x03\xe3\xd0\x67\x96\x51\xd0\x81\xb6\xd6\x34\x0a\ +\xaa\xc8\x2f\x61\x14\x87\x74\x18\xeb\x79\x30\x9f\x71\xce\x83\xd8\ +\x66\x66\xe9\xd0\xe6\x77\xa0\x6f\xe3\x8c\xd5\xda\xfb\x6b\x96\x7a\ +\x2e\x8f\x73\x8c\x7b\x72\x31\xb4\x2d\x34\x79\xcf\x6c\xc4\x09\x56\ +\x8f\xf8\x62\x0b\x73\x6a\xaa\xa7\xe6\xab\x97\xbe\xc1\x8e\x8f\xd2\ +\x0f\x21\xb1\xca\xf5\x24\x35\x32\x5e\x2f\xcc\xc4\x0a\xd7\xa8\x2c\ +\x8c\xf4\x6b\x75\x69\x28\xbb\x15\x3f\x9b\x26\x92\xdd\x8d\x1d\xcb\ +\x62\xea\xfa\x69\xf9\xc6\x67\x7e\xa7\xbc\x4f\xd6\x53\x3b\xff\x7a\ +\x00\xc2\xeb\x05\x0b\x16\x2c\x58\x70\x37\x63\x79\x43\x6d\xc1\x82\ +\x05\x77\x37\x7c\x4d\x39\x58\x08\xdf\x4d\xa8\x4b\xe6\x29\x74\x01\ +\xad\x9e\xea\x4f\x0f\x2c\x70\xd3\xbe\xbe\x2a\xc4\x9b\xe5\x85\x6f\ +\xfc\x42\x79\xfa\x97\x7f\xa3\xfc\xaf\xff\xdb\x9f\x95\x9b\x5c\x88\ +\xe3\x96\x40\x8a\x26\xe1\x27\xd5\x1c\x6d\x2e\x68\xb2\x8d\x35\x78\ +\xf5\x12\x59\x05\x27\x78\x02\x5f\xc3\xcb\x5d\x81\x55\x95\x83\x02\ +\x48\x6d\xb7\x00\x02\xf6\xa8\xfa\x12\x68\xb2\x7e\x37\x80\x9a\x4c\ +\xec\xce\x20\x5e\x1f\xe8\x02\xe6\x8c\x9b\x91\x79\xd4\x34\x2e\xa1\ +\x6f\x83\xe4\x13\x4c\x73\x7b\x14\xea\xd1\x83\x1d\x57\x94\x97\xdb\ +\x70\xb9\x06\x65\xaf\x62\x64\x53\xe8\x51\xee\x30\xed\x1e\x11\xe6\ +\x19\xff\x08\x35\xb7\x1c\xc3\xb9\x4e\x1c\x80\x5b\x08\xbd\x24\x60\ +\xa7\xd1\x0b\xef\xc9\x5c\x0d\x8c\x78\x53\xcc\x7b\xce\x87\xcb\xca\ +\x93\x13\x1d\x9e\xd3\x99\x69\x5e\x31\xd0\x03\xe3\xcc\xf9\xd2\x44\ +\x64\x8e\xc8\x4d\xfb\xa2\x28\x97\x42\x70\xf7\x9e\x4f\x36\x21\xe9\ +\xb6\x26\x9f\x86\x54\xdf\x1c\x32\x63\x78\x25\x9d\x9d\x42\xe1\x93\ +\x24\xf9\x16\x24\x17\x3b\xe7\xb4\x0c\xd2\x26\x56\xce\x0b\xb5\xf5\ +\xec\x85\xd5\x74\xab\x60\x71\x6b\x30\x6b\x70\x82\x78\xc5\x5e\x5d\ +\xaa\x03\xa8\xf0\xc6\x5a\x1d\xe7\x86\x28\x10\xc5\x93\xc7\x0b\x80\ +\x1a\xe2\xd8\x82\x62\xf3\x3c\x2c\x9c\xc9\x49\x95\x0d\xec\x3e\xf1\ +\xd2\x6f\x31\xf8\xaa\x47\xa9\xf0\x90\x07\xed\xa3\xde\x9e\x6c\xcb\ +\xf7\x6f\x96\x72\xe3\xad\xab\xe5\xa5\x3f\xf8\xc3\xf2\xc4\x53\xef\ +\x2e\xa7\xf8\xd8\x9a\x10\xf1\x47\x1f\xf5\x35\x02\x50\xc9\x8f\x95\ +\x65\x35\xb4\x9a\xea\x5e\xb2\x57\xf3\xd5\x9c\x0b\xee\x59\x9c\x75\ +\x10\xb3\x1f\x27\x80\xeb\x7b\xe3\xec\x4c\x49\x5c\x3c\x74\x3e\x2d\ +\xb2\x9e\x5a\xdd\x2c\x1f\xfd\xc0\x57\xca\xcb\x2f\xfc\x52\x29\x3f\ +\xb8\x2e\x36\x71\xac\x8e\x79\x1d\x9c\xf2\xc1\xa5\x9f\x65\xfa\x5f\ +\xff\x1c\x9a\x4a\xcf\x3b\x9e\xbb\xf8\xa5\xb1\x99\x29\x05\x49\x23\ +\xd9\x74\xab\x60\x62\xd8\x10\x29\x56\x44\x68\xf5\xca\xc9\x51\x89\ +\x67\xb2\x7a\x85\x2d\x6a\x65\xc2\xe7\x65\x1e\xb3\x8c\xde\xb8\x3f\ +\x4d\xe7\x86\x26\x3d\x31\xe3\xd4\xd7\xdb\x12\xe8\xa8\xb1\xfb\x21\ +\xbc\xba\xc3\x0a\x8b\xef\xc3\x33\xad\x0f\x71\x60\xfc\x02\x50\x92\ +\x3e\x6c\x66\x6f\x27\x3b\x5f\x5d\x88\x0b\xe4\x2c\xe2\x3b\x21\x83\ +\x78\x98\xbc\xe4\x1c\x22\x76\xa7\x53\xc2\xd4\x42\xc0\xcc\x76\x29\ +\xc0\x92\x80\x73\x57\xed\xd9\xd3\xb3\x32\xdc\xb7\x8f\x73\x10\xba\ +\x04\xc3\x7c\x33\xc6\x30\x1f\xd8\x09\xa7\x55\xba\x48\x7d\xac\xe9\ +\xad\xb9\x1a\xc7\xc7\x1e\x18\x06\xde\x22\xc6\x67\xe7\x5c\x13\x87\ +\xb3\xc7\xcc\xe9\x5a\x0d\xb1\x1e\x9f\x9d\x62\x1b\xa7\x68\x71\x08\ +\xa7\x87\x35\xe7\xa1\x87\x36\x53\xf9\x59\x13\x98\x8a\x0a\xa9\xdb\ +\x7d\xac\xb3\xaa\x23\xeb\x59\xf6\x51\x68\xad\xd0\xf2\x58\xa4\xfb\ +\x6f\xb7\xa1\x41\x79\x51\xf1\x6f\x76\xf1\xf6\xf9\x49\x69\x0a\xf2\ +\x2b\x64\xe6\x17\x03\x3e\x2c\x8d\x3f\x5e\x5a\x1d\x1f\x95\x9b\x37\ +\xae\x97\x8f\xbc\xe7\xeb\xe5\xe5\x4f\x7c\x93\x79\xae\xac\x8f\xc8\ +\xb1\x8d\x01\x91\x48\xa2\xda\x82\x05\x0b\x16\x2c\xb8\xbb\xb0\xbc\ +\xa1\xb6\x60\xc1\x82\xbb\x0b\x79\x1d\x09\x39\x2f\x22\xb3\xef\x1d\ +\x06\xba\xd2\x77\x67\x6e\xbd\xab\x8f\x19\xb5\x76\x28\x37\x5b\x44\ +\x5a\x5d\x29\x65\x7b\x52\x3e\xfe\x9f\xff\xad\x72\xfa\xcc\x27\xcb\ +\x7f\xfa\x93\xbf\x94\x35\xf6\x46\x3c\x5b\x7c\x9b\x96\x4c\xd8\x6b\ +\xde\x64\xaf\xed\x4e\x1b\xdb\x7a\x9b\xec\xb0\x9b\x50\x4f\xcc\x5a\ +\xdb\xa1\x28\x1b\x7f\x76\x9a\x51\xe3\x35\xd0\xf9\xec\x79\x13\xb0\ +\xe2\xd7\x7e\x29\x24\x2f\x1e\x4e\x99\x06\x01\x37\x19\xd4\x23\xa1\ +\xf6\x0e\x79\x9a\x1b\x93\x08\x52\x3f\x2b\x40\x6e\x2a\xc0\xd3\xaf\ +\x99\x0c\xd2\x01\x90\xfd\x66\x0e\x1d\x6b\x95\x0e\x00\x9a\x31\x71\ +\x0e\xf0\x9f\xa7\x27\xc1\xb5\x27\x36\x6d\x2c\x6c\x9a\x31\x8e\x7e\ +\xf3\xf0\x05\x00\xc7\x3a\xc6\x14\xba\x4f\x5e\x00\x33\x0f\x90\x8c\ +\x24\xfd\x38\x22\x8f\xd4\x61\x38\x1f\x7b\x1e\x97\x95\x27\xe3\x96\ +\x73\x1e\x78\x1e\xf8\xf9\xe8\x0f\xf2\x4c\xa3\x44\x53\x97\x27\xf7\ +\x6b\xda\xc7\x33\x1a\x9d\xb8\xeb\x75\x3b\xc4\x19\xe9\xf6\xc5\xe7\ +\x50\x70\x94\x97\xf9\x39\xb2\x6d\x68\x2e\x27\x06\xa9\xe6\x02\x4c\ +\x6a\xae\xe5\x3e\xda\x1f\x10\xc6\x95\x3f\x03\x61\x05\x41\x84\x26\ +\xa5\xf5\x2f\xda\x01\xd7\xfb\x6c\x36\x56\xb2\x41\x1f\x21\x73\xfe\ +\x36\x1f\x0f\xee\xae\xce\xd3\xe2\xdb\xd9\x24\x0e\x9d\x6e\x29\x5e\ +\xeb\x14\x6c\x6f\xa6\x1d\x1f\x97\x1b\xab\xa3\xf2\xfd\xd7\x6e\x94\ +\xf7\x7e\xeb\xd7\xca\xb3\x5f\xfe\x2a\xdf\x98\xd0\x4f\xa7\x81\x0c\ +\x2e\xc3\x04\xa6\x34\x80\x2d\x17\x6b\xc4\x22\xc6\x31\xb7\x09\xde\ +\xe4\x82\x3b\x07\x3f\xd4\xfd\x61\xce\x7a\x3e\x2e\x17\x39\x46\x11\ +\x83\xff\x4d\x73\x84\x0f\xf9\x97\xaf\x7e\xe6\x77\xca\xe3\x47\xef\ +\x2b\x57\xdf\x96\x6b\x9e\xd7\xca\x89\x9c\xf4\x3c\xf1\x79\x7e\xa3\ +\x79\x5c\x03\x2b\xd8\xbc\x2f\x42\x63\x2a\xea\xd8\x78\x31\xb8\x9f\ +\xa2\xcd\x8f\x09\x95\x09\x29\x66\x56\x6e\x5b\x54\xdb\x64\x19\x00\ +\x74\x21\x4e\x81\x39\xbb\x4e\x19\x2c\xc5\x8c\x4d\x98\x28\xae\xd7\ +\x7e\x24\xa3\x40\xc5\x6a\x18\xcf\x50\x29\x20\x50\xf3\xe0\xdb\x14\ +\x18\xc7\xc9\x83\x86\x5c\x05\x1a\x7d\xd0\xcc\x68\x1c\x3c\xe5\x34\ +\x1b\x00\x1b\x82\xbc\x18\x67\x44\xed\x8c\x4d\x53\x72\x32\x8c\x42\ +\x62\xca\x45\xa1\x32\x62\x8d\x30\xd8\x11\xc3\x30\x43\x18\xb5\x0d\ +\xee\x09\x6d\xba\xb6\xcd\x31\xfe\x4a\xd2\x83\x91\xc6\x55\x8e\x4b\ +\xfa\x7a\x97\xcf\x44\x14\xa0\x72\x15\xd9\x77\x61\xcc\x24\x19\xe7\ +\xcd\x56\x97\xad\x46\x35\x0e\x9a\x31\xab\x35\x46\x7e\x26\xb6\xc1\ +\x1e\x0e\xf2\x44\xae\x09\x24\xd0\x62\xc7\x1c\x73\xa6\xfc\x55\x54\ +\xa9\x3f\xe3\x46\xfd\x86\x18\x76\x11\xe6\xfb\xa3\x18\xf9\x7b\xdb\ +\x94\x53\x1b\xac\xbe\x29\x6b\x94\x1b\x80\xbd\xf5\x1d\x1e\xdb\x63\ +\x7c\x15\x8e\x31\xca\x59\xc7\xab\x7a\x21\xd5\xac\xa3\xd9\x0d\x16\ +\x2f\x03\xd8\xa4\x54\xe7\x21\x81\x28\x6d\x4f\x55\xc3\xa7\xfd\x21\ +\xad\x30\x9f\x48\x1c\x59\x0c\xc7\x42\x0c\x1e\x51\x76\x72\x37\xbf\ +\xdd\x96\x27\xef\xfb\x40\xf9\xf9\xcf\xff\x7e\xd9\xc8\xbc\xa2\xf3\ +\x8c\xbc\x6e\x69\x1a\x41\x08\x0b\x16\x2c\x58\xb0\xe0\x2e\xc6\xf2\ +\x86\xda\x82\x05\x0b\xee\x0d\x60\x41\x7a\x17\xad\x2f\xd1\x15\x94\ +\x99\xe5\xf7\x10\xce\x45\xad\xb7\xb7\xdd\x4e\xe1\x7f\xd8\xc8\xef\ +\x83\x8f\x3f\x55\x5e\xfe\x17\xff\xb2\xfc\xc9\x8d\x47\xcb\xf7\x5e\ +\x7d\xb5\x5c\x2b\x47\xb5\x41\xe1\xe0\x6b\xb8\xf8\xa6\x1a\xfe\x97\ +\x1a\x00\xbb\x00\xff\xf8\x98\xa2\x35\xd4\xdc\x24\x9b\x4d\x2b\x7b\ +\x98\x8c\x8d\xd9\x59\x07\xdd\x1d\x76\x33\x00\x29\x4c\x26\xec\xf4\ +\xff\xe9\x30\xc8\x7d\x86\xe8\x03\xb8\xd2\x30\x44\xcd\x03\x39\x1a\ +\x69\x61\xf1\xd6\x1a\xb7\x15\x5d\x8c\xa8\x4c\xaf\x5a\xf5\xfa\x93\ +\x0f\x81\x8b\x99\xe7\xc8\x7a\xe3\xeb\x89\x8e\x39\xbb\xc0\x5d\xba\ +\x5f\x28\xd3\xec\xcd\x4d\xd8\x08\xa4\xd5\xb8\x9c\x61\x16\x13\x52\ +\xd7\x48\xf6\x7b\xd7\xce\xc4\x41\xa4\x77\x18\x07\x8d\xce\x85\x80\ +\xcc\x97\x91\xfd\x76\xf4\xf0\xf0\x9c\x76\x6d\x1b\x78\x44\x93\x61\ +\x94\xa7\x46\xf8\x55\xaa\xc0\x9c\xe1\x32\xea\xca\x72\x40\x92\xd2\ +\x37\x52\x09\x17\xc4\x38\x41\x6a\x41\xe4\xfd\x8d\x64\xee\x14\x16\ +\x9b\x49\x62\x82\x35\xc6\x02\x0a\x69\xa3\x87\x2f\x80\x5b\x51\xbb\ +\x6c\x79\x45\x57\xab\x66\x54\x8b\x4b\xca\x71\xa6\xa2\xd5\x72\x8c\ +\x22\x4b\xf2\x93\xe6\x39\x47\x65\x64\x5f\xb6\x8a\x9d\xae\x7a\xb4\ +\x21\xe3\x11\x8f\x4a\x89\x0b\x5e\x7d\xaa\x53\xb6\x32\x8f\xeb\x9b\ +\x6e\xeb\xf2\xda\x1b\xdb\xf2\xf8\xfb\x3e\x51\x5e\xf8\xeb\xbf\x53\ +\x76\x5b\xd8\x10\x87\xdc\x9a\x3f\x9f\x41\xb9\xf5\x29\xdc\xe6\xac\ +\xb6\xde\x1f\x7b\x9b\x50\x1b\x5d\x70\xbb\x30\x1a\xe3\x7c\x88\xdb\ +\xd3\xe0\x40\x24\x32\xae\x0d\x53\x77\xbc\x4e\x4e\xca\xd5\x07\x9e\ +\x28\x3f\xff\xf9\x3f\x2a\x57\x5f\x3f\x29\xdb\x93\xd3\x72\xbc\xc2\ +\xff\xae\x11\x12\xdf\x40\x93\x62\x17\x01\x4d\x2a\x0a\x10\x9b\xaf\ +\x8a\x39\x08\x0f\x54\x14\x83\xc7\xd0\x94\xec\x2d\x84\xa5\xbf\xa9\ +\x8d\x96\xdc\x5c\xe6\x41\xf4\x15\x99\xa0\x06\x66\xeb\x19\xf0\xa0\ +\x14\xdc\x40\xf2\x30\x95\xe5\xeb\x16\x2f\x8d\x4b\x2b\xab\xeb\x3c\ +\x39\x97\x59\xd1\xe6\x73\x8c\xad\x7d\x26\x61\xf9\x42\xd6\xd1\x0c\ +\x52\x97\xc5\xa8\x61\xed\x42\x61\xc7\xee\xb9\xb9\x7d\x4d\xc1\x88\ +\xaa\xde\xbe\x02\x74\x49\x88\x1c\x97\x90\xcc\x2e\xe6\xe1\x1c\x47\ +\xa1\x17\xb9\x0d\x61\x45\xb0\x16\xcf\x01\x9e\x99\x08\xad\xc3\xc9\ +\xc2\x69\xd9\x4c\xf3\x00\xa1\xcd\x75\x69\x18\x26\xcc\x46\x91\xa9\ +\xba\xad\xee\xfb\x30\x54\x00\x7b\x13\x92\xd1\x9f\x1f\x82\x29\x6d\ +\x74\x0c\x2b\x32\x3f\xda\x4a\xa8\x67\x86\xa2\xe5\xec\xcf\x3d\xf6\ +\xc2\x2a\x45\x92\x68\x1e\x39\xb2\x3c\xaf\x6b\xd6\x2a\x39\x34\x13\ +\xb6\x53\xdf\x3c\x32\xb7\xef\xcb\xd8\x37\x92\x54\xde\x17\xbf\x17\ +\x12\xd8\xc7\x8e\xf2\x01\xfb\xec\x23\x4c\xed\xda\x2b\x6c\xf5\xca\ +\x3a\xa4\x97\x76\x05\x92\xaa\xc7\x5a\xb7\x6b\x5d\xee\x48\xd1\x2c\ +\x22\x98\x81\x15\x61\x02\x5c\xbe\x86\x82\x53\x5e\x67\xf0\x09\x36\ +\xdc\xa3\xe3\x1e\x1e\x7f\x80\xb4\x7b\xfb\xb8\xfc\xf4\xa7\xfe\x7a\ +\x79\xf2\xb1\xa7\xf4\xb5\x0a\x34\x8f\xb7\x16\x6a\xbd\x60\xc1\x82\ +\x05\x0b\xee\x56\x2c\x6f\xa8\x2d\x58\xb0\xe0\xee\x02\xd6\x8f\x79\ +\x2d\x39\x5a\x5f\xba\xfc\x0e\x61\xd4\xad\x7d\xc0\x22\x5e\x79\x79\ +\xab\xd0\xa5\xbb\x5b\x44\x5e\x5d\x29\x47\xeb\x93\xf2\xc2\xe7\xbf\ +\x5a\x3e\xf6\x77\xff\xb0\xfc\xbb\xff\xfd\xcd\xf2\xca\x8d\x1b\x65\ +\x7d\x22\x39\xf0\x57\xd4\x1b\xa9\xe5\x0e\x79\xbd\x59\x6b\x14\x67\ +\x71\xfc\x47\x35\x64\x12\x85\x1d\xb3\x7c\x59\x46\xed\x9d\x46\x2d\ +\xc5\xd5\x80\x3d\x1f\xb5\x7b\x84\x5a\x66\xe1\x04\x6f\xc3\xc0\x18\ +\xd8\xdc\xee\x49\x4c\x17\xd5\x2d\x40\x73\x0f\x4c\x8a\x6c\xcc\x18\ +\x37\x18\x99\x93\x00\x73\xf4\x97\xf0\x36\x0d\x62\xef\x2c\x1d\xaa\ +\x77\xd4\x44\xb5\xed\xcf\xd2\x43\xe3\x72\x8c\x58\xba\x06\x5c\x9d\ +\xed\x01\x1c\x34\xb5\x6d\xf3\x18\x99\x5c\x01\x0b\xca\x9e\x7e\xee\ +\x71\x29\x3c\xc7\x8f\x37\x2e\x63\x04\x6e\xc7\x28\xde\xca\xd1\x39\ +\x24\x8e\x1c\xd9\xc4\x69\x32\x38\x5f\x72\x1f\x5a\xf7\xe8\xe4\xf2\ +\x79\x4f\xe1\x71\xcd\x33\x50\x02\x86\x71\x7c\x98\x3d\x78\x04\x72\ +\xda\xf8\xfc\x10\x71\x36\x54\x38\xb3\xbe\xce\x31\xed\x73\x85\x52\ +\x9d\x90\x88\x21\x42\x90\x22\x17\xee\xf4\x11\x3d\xec\x26\x0a\x3c\ +\xc4\x4d\xa8\xbd\x34\xc0\xc7\xc2\x12\x34\xce\xb6\xd8\x79\x74\x18\ +\x7f\x7c\x41\x4b\x02\x27\x0f\xbc\x56\xc8\x0f\xdf\x3d\xc0\xff\x96\ +\xca\x40\x8c\xf8\x11\x88\x4f\x9f\x81\x4e\xee\x69\x79\xa5\x6c\xa4\ +\x7e\xa8\xbc\xf4\xb7\xff\x61\x79\xe8\xe1\x47\x69\xc7\x1f\x75\x68\ +\x4f\x20\x23\x88\x56\x81\xb7\x0c\x4d\x2d\x6a\xf3\x02\xb8\xdd\x6b\ +\x47\x8e\xb9\x4d\xe8\xbb\x04\x78\xbd\xe0\xf6\x20\x8f\x39\x90\x0f\ +\x71\x7f\xb8\xc1\x39\xf7\x29\x20\x41\x88\xf3\xfc\xb2\x86\xc0\x27\ +\xfc\xf1\xd5\x8f\x2f\xbe\xf0\xf9\xf2\xf2\x47\xff\x5a\x29\xdf\xff\ +\xa1\x9c\xaf\xeb\xb2\x3b\x3d\x91\xfc\xf0\x4b\x23\xf2\x1b\x6b\x10\ +\xbd\x28\x68\x83\xcb\x05\x77\x4f\xe0\x6d\x25\xb8\x29\x52\x5a\xed\ +\xd2\xe8\xa1\x2e\xae\xb7\x98\x63\xd0\xa4\x89\x43\xd8\xe4\x96\x39\ +\xda\x43\x4f\x60\x0f\x84\x7b\x88\x3b\x35\x51\xe1\x46\x41\x12\x13\ +\xc6\x56\x07\xf7\x87\xbf\xca\xdb\xcf\xee\x60\xe4\xb6\xbf\x83\x3c\ +\xc3\x1d\x72\xf4\x4e\xd3\x87\xb9\x67\x00\xae\x94\x96\x3b\xd0\x84\ +\xd3\xf4\x8b\x50\xde\xd4\x5e\xa1\x8c\xca\x6b\x33\x27\x58\x12\x1c\ +\xc1\xd1\xab\xe7\x5c\x1b\xfb\xda\x26\xe4\x9c\xd1\xd3\x06\x9b\x0b\ +\x67\x39\x0c\x33\x69\x26\xe6\xb3\x0c\x83\x3c\x33\xa9\x09\xbb\x2c\ +\x08\x8a\xd9\xb0\x17\x95\x77\x68\x04\x8f\xc6\x19\x64\x70\xe2\x9a\ +\x36\xa8\x8a\xed\xbe\xe3\x99\xcf\x8e\x3d\x73\xcf\x81\xc8\x6d\xe4\ +\x5c\xd5\xae\x56\x6e\xf7\x35\x26\xbe\x61\x7f\x2d\xc6\x43\x23\x85\ +\x4e\xa0\x09\xba\x2f\xbd\xd5\x2d\x7d\x3f\x1b\xde\x34\x68\x16\x2d\ +\xf5\xd0\x40\x6f\x7d\x30\x2a\x34\xa5\x39\x55\x74\xc8\x78\xcd\x38\ +\xe5\xf7\x68\x43\xc6\x1f\x27\xc9\x0f\x0f\xf8\x3a\x62\x37\x1c\x83\ +\xad\xd8\xe5\x7a\x16\xdf\x4a\xd6\x51\x47\xb2\x76\xbb\x79\xe3\xed\ +\xf2\xb9\x8f\x7c\xb3\x7c\xe6\x23\x3f\x5d\x4e\x4e\xb7\xfa\xbf\x6a\ +\x23\xca\x51\xfb\xb2\x60\xc1\x82\x05\x0b\xee\x5e\x2c\x6f\xa8\x2d\ +\x58\xb0\xe0\xee\x84\xaf\x25\xbd\xae\xab\xcc\x56\x7e\x87\x71\x48\ +\x57\xda\x5d\xa9\x37\x48\xf9\xc1\x0a\x6d\x50\xf9\xf0\xe6\x8a\x2c\ +\xbc\x8f\xcb\x17\x7e\xfb\x6f\x94\x27\xbf\xfd\x5b\xe5\x7f\xf9\xe3\ +\x57\xca\xdb\xbb\x93\x72\xba\x3d\xd5\xaf\x7e\xc4\xe2\x5b\x04\xfe\ +\xd8\x03\x4d\xc4\xc7\xd7\x4b\x40\xe6\x56\x27\xf9\x78\x58\xe4\xf0\ +\x1b\x4d\xb1\x73\xbd\x6f\x75\xa6\x99\x59\x8a\x3b\x45\x92\x8a\xb7\ +\x0f\x50\x53\x8d\x87\x52\xfa\x15\x8d\x30\x1a\x4c\x46\x8c\xde\x78\ +\xb8\x01\x39\x6a\xfb\x35\x46\x6d\xe0\xab\x60\x37\x30\xc9\xef\xfb\ +\x54\x6d\x15\x3a\xaa\xba\xad\x0f\x0e\x7c\x5b\x31\x08\x15\xf4\x2c\ +\x45\xcf\xad\xfa\x98\x0f\x38\x47\x19\xd6\xab\x08\xac\xde\x9a\xab\ +\x45\xbd\x01\x17\x46\x22\x35\x2d\xce\x36\x0f\x87\x8f\x44\x13\x3e\ +\xc5\xd0\x39\x9b\xf8\xec\x7c\x3f\x62\xb8\x8c\x7d\xbd\x9d\x63\xa6\ +\x79\xe7\x8f\x57\x06\x58\xce\x1c\x45\xe4\x3e\x52\x96\x8d\x5f\xae\ +\x53\xbe\x39\xea\x49\x1d\x98\x5a\x12\x98\xa8\x32\xf4\x6a\xf6\x32\ +\x40\xf0\x5b\x7f\x64\x98\x84\xe5\xd9\x54\x30\xd3\x19\xe5\xe4\xbc\ +\x52\xdb\x7c\xa8\x56\xc8\x83\xeb\x73\x62\xf0\x78\x81\x88\xad\xdb\ +\x7d\xf5\x5a\x54\x68\xee\xe0\xf7\x39\xe1\xe6\xbc\x67\xf1\xf4\x5b\ +\x0c\x13\x99\x0c\x91\xdb\x7d\x68\x79\x0c\xe7\x8f\xd6\x9c\xc8\xa1\ +\x48\xcd\x4f\xeb\x18\x1f\x8f\x82\xf0\x41\xe9\xb5\xbd\xb1\x80\xc7\ +\x44\xa7\xdb\x5d\x79\x7d\x75\xb5\xbc\xfa\xbd\xe3\xf2\xdc\xdf\xf8\ +\x83\xf2\xd8\xe7\x3f\x5f\x4e\x4f\xb6\xfa\x1a\x24\x5c\xed\xaf\xc6\ +\xa3\xae\x52\xdd\x6a\x63\x19\xbd\x0e\xd4\x3c\xc8\xe2\x91\x63\xee\ +\x25\x03\x8d\xdd\x81\x66\x7e\x64\x70\xc8\x58\x81\x73\x16\x2f\x73\ +\xea\x01\x3f\x27\xfa\x40\xd1\xe5\x5a\xc1\x0f\xce\x4d\x7c\x9a\x7f\ +\x7b\x7a\xbd\x7c\xe5\x73\xbf\x57\x3e\xfd\xbe\xaf\x95\x2b\xaf\xbc\ +\x56\x76\x1b\xbc\xa9\xb6\xe5\x03\x4e\x7c\x55\x21\x2f\x04\xb9\x0e\ +\xf8\xc3\x4f\xae\x69\xa7\x50\xf9\x95\xc0\xe2\x7d\x4d\xa0\x09\x13\ +\x26\xba\xc1\xae\x9c\xb1\x23\xc1\x49\xc9\xb2\x98\xde\x08\x08\x73\ +\x4a\x89\x3e\xc1\x9e\x68\x9a\x8d\x93\xb6\x1a\x93\x8b\x48\xe9\xe9\ +\xec\xfd\xb0\xe4\x7c\x44\xe6\x99\x90\xfb\xd6\x43\xdb\xc0\xb6\x69\ +\x6d\xd4\xd8\x10\x4e\xeb\xa2\x03\xea\x9f\x4b\x06\x7b\x1b\x39\x66\ +\xb6\x9c\x69\x5b\x6a\xe9\xdb\xaa\xeb\x32\x11\x46\x89\xfd\x05\xb3\ +\xc1\x94\xc8\xb9\x72\x26\x85\xc2\x9d\x99\x31\x60\xc3\x84\x63\x31\ +\x70\xed\x45\xf0\x99\xc0\x0a\x90\x6b\x97\xcf\x09\x09\xdb\x73\x7a\ +\x74\x30\x22\x62\x54\x32\x54\x7b\x8b\xfc\x7a\xb0\x0f\xc3\x6c\x15\ +\x87\x25\xa9\x68\xf8\x72\xf4\xb2\x3e\x3a\xe4\x09\xa0\xf6\xcd\x8d\ +\x43\x8c\x25\xce\xf0\x77\x81\x36\x1d\x75\x50\xd2\x19\xdd\xe8\x50\ +\xd9\x7d\x5c\xdf\x57\xa2\x23\xf5\x31\xd0\x51\x10\x9b\xe3\x9d\xa7\ +\x2b\x8e\x31\xc0\x9f\x78\x3d\x61\xbd\xe0\x2a\xc4\x5e\xf3\x0d\x7b\ +\x3b\x85\xd1\xb5\xf2\xd8\x04\x4f\xe3\x75\x43\xa9\xce\x36\x52\xcf\ +\x45\x3f\x26\xfa\xfa\x20\x56\xd1\x33\x8f\x0f\x58\xcd\xb6\x92\xfb\ +\xf4\x95\xbc\xde\xe0\xab\x1e\x8f\xaf\xbf\x5d\xde\xf7\xd8\x87\xcb\ +\xcf\x7d\xf9\x77\xcb\x1a\x7f\x20\x5b\x36\x6c\x81\x7f\x08\xc5\xcc\ +\x8e\x9c\x6d\xc1\x82\x05\x0b\x16\xdc\xad\x58\xde\x50\x5b\xb0\x60\ +\xc1\xbd\x83\xbb\x68\x7d\x59\x97\xda\x17\xed\x96\x3e\xee\xf1\x4c\ +\xb1\xc5\xaf\x3d\x38\xdd\x6c\xae\x94\x2f\xfc\x97\xff\xb4\x6c\x3e\ +\xf4\x99\xf2\x1f\xfe\xf4\x95\x72\xbc\xba\x52\x4e\x4f\x74\xf9\xce\ +\x3f\x68\x93\x15\x3c\x2b\xbe\xc1\x26\xb5\x86\x49\x87\x24\x37\x1f\ +\x28\x39\x44\x62\x27\xd5\xd2\xf7\x77\xd2\x7f\x18\xac\xf8\x03\x25\ +\xe5\xe8\x36\xc0\xb6\x54\x0c\xe0\x59\x94\x89\x10\x74\x5f\x72\xcb\ +\x5e\xb2\x64\x7e\xdb\xef\xce\x5a\xf4\xab\x25\x67\x20\x14\x84\xe5\ +\x28\x17\x58\xc1\x4f\x6d\x0a\xda\x3b\x2e\x61\xb6\xac\xe6\x1b\xc3\ +\x7d\x37\x89\xf3\x90\xa3\xcd\x84\x1e\x0b\xc5\x5b\x00\xb2\x2e\x9c\ +\x51\x13\x48\x60\xe3\xd9\x84\x12\x63\xfb\xe4\x46\x7c\x12\xd7\x63\ +\x4a\xb8\xc8\xde\xfe\x28\xe0\xb2\xf6\x1b\x79\x2e\x73\x0c\x3d\x17\ +\xce\x43\x9d\x01\xe6\xc1\xb6\x85\xb2\xaf\xfd\x3e\xc3\x94\x2b\x8c\ +\x41\x33\x95\xa7\xce\x01\xa5\x43\x65\xe4\x36\x46\x0f\xe1\xb2\x89\ +\x5c\x33\x8c\x33\x4c\x11\x5e\x0b\x70\x9d\x75\x0a\xed\x1f\x95\xb8\ +\xe6\x7d\xd2\x31\x16\x88\x9e\x99\x6e\xcb\x80\x2d\x73\x42\xb1\x5a\ +\xab\xca\x80\x54\xaf\x4f\x24\xb3\xde\x54\x4a\xc8\xda\x54\x76\x08\ +\x92\x9a\xbf\x06\x12\x39\xd5\x95\x83\xfb\x33\x45\xf7\x2c\x52\x88\ +\xb0\x96\xc0\x2d\x48\x52\xe3\x8f\x24\xb6\x7c\x63\x61\x5b\x8e\x37\ +\x47\xe5\x95\x57\xde\x2c\xef\xfd\xc6\x5f\x2d\xcf\xfd\xea\x7f\xc6\ +\x4f\xab\xad\x36\x1b\xbe\xf9\xd6\x64\x65\x32\x6c\x98\x04\x4a\x42\ +\xdb\x7a\xd5\x7b\xbb\xc7\xdf\x01\xcc\x75\x69\xc1\xd9\x18\x1d\xb6\ +\x39\xb8\x2f\xc7\x64\x3e\xec\xee\xf3\xfa\xa2\xa7\x01\xe2\x70\x01\ +\x20\x16\x95\xd4\xa7\xe5\x48\xd6\x52\x9b\x72\xe5\xfe\xa3\xf2\xf3\ +\x5f\xf9\x07\xe5\xb1\xd5\xb3\x65\xfd\xfa\xb1\x9c\xc3\xf6\xff\x6a\ +\xb0\xc0\x40\x1c\x82\x18\x8f\x65\x8c\x5f\x1d\x74\x28\x44\x54\x2b\ +\x04\xf5\xaa\x1f\x49\x7c\x3d\xa7\xa8\x97\xa3\x0a\xf0\xb0\x58\x13\ +\xc0\xf8\xa5\xdc\x99\x15\xf3\x73\xbc\xae\x05\x95\xed\x9c\x36\x76\ +\x0e\x2d\x0b\xb1\xbe\x3f\xba\x27\x15\xfb\xf3\x81\x49\x76\x9a\x7f\ +\x00\xcd\xa1\xb6\xbd\x19\xcc\x99\xa3\xdb\x4c\x67\xa3\xe7\x47\x7b\ +\x7d\xc3\x46\x6c\xf8\xe4\x28\x71\xda\x6e\x1a\x79\x39\xde\x38\xbe\ +\x3e\x4a\xd3\xd7\x2c\x35\x60\x5b\xa5\xb6\xc2\x98\xa0\x46\x06\xef\ +\x9a\xb9\x3b\xb8\x37\x63\xcc\x24\xf6\xb8\x86\xd0\xce\xd4\x72\x19\ +\x48\x79\x0e\x4a\x6b\x84\x9e\xb7\x3f\xd6\x3d\x52\xcf\x93\x06\xe8\ +\xc9\x33\xc1\x61\x56\x61\xae\x09\x1c\x1d\xf7\xb5\xd7\xca\x18\xa3\ +\xa3\xe9\x19\x98\x6b\x4c\x10\x1f\x38\x28\x33\x84\x03\xd1\x46\xd7\ +\xfe\xa6\x1e\x50\x52\x9c\xd5\xd6\x7e\x7f\x78\x45\xa8\x53\xc2\x61\ +\x39\xb1\x0d\x66\xee\x52\xc6\x59\xa9\x3a\x34\x39\x67\x21\x8d\x25\ +\x92\x8b\x3a\x9f\xcb\x8d\xb5\x54\x38\x16\xd0\xd9\x2d\xbc\xbe\x10\ +\x32\xff\xca\x2f\xfe\xf7\x26\x67\x06\x31\x33\x46\x04\x3e\x5c\xdd\ +\xe1\x4f\x35\x74\x8e\xd6\x4f\xaa\xe1\x8f\x3b\x4e\xcb\x83\x47\x0f\ +\x95\x5f\x7a\xf9\xef\x95\x87\xaf\xbe\x8b\x5f\xa7\x9d\x5f\x37\x16\ +\x2c\x58\xb0\x60\xc1\xbd\x87\xe5\x0d\xb5\x05\x0b\x16\xdc\xbd\xc8\ +\xeb\xcc\xbc\xc0\x9e\x5b\x6c\xdf\x13\xc8\x8f\x1a\xf4\x16\x5d\x01\ +\x8b\x2e\xba\xf5\x0e\xeb\xa8\x9c\xee\xb6\xe5\x91\x47\x9f\x2a\x2f\ +\xff\xcb\x7f\x55\xfe\xd3\xee\x89\xf2\xfa\xdb\xaf\x8b\x4f\x16\xe9\ +\x62\x07\x45\xff\x85\x9a\x66\xd2\xc9\x5c\x73\x43\xd6\xac\xa2\x79\ +\x7a\x81\x32\x75\xdb\x20\x71\x1a\x99\xa8\x7c\xb8\xf0\x17\xdd\xb8\ +\x37\x80\x9c\x0b\x80\xe7\x52\xf8\x74\x43\x10\x02\x62\xc4\x7d\x05\ +\xcd\xc9\x61\xa9\x79\xaf\x61\xe6\x68\xcd\xde\x2c\xd4\x27\x17\xfc\ +\x9c\x84\xfc\x84\x37\x24\x0d\x4b\x39\x25\x99\x6b\x95\x7d\x38\x52\ +\x57\xac\x96\x2c\x29\x11\xfb\x6a\x06\xe7\xf5\x40\x0f\x34\x4f\xd7\ +\x83\xee\xa1\xd3\x10\xa3\xa4\x62\xd3\x76\x0d\xc3\x3c\x4a\x60\x9b\ +\x73\x77\xe8\x67\x02\x71\x6d\xec\x45\x33\xfd\xa8\x60\x3a\x22\x17\ +\x87\xe7\x3a\x57\xbe\x03\x4e\x19\x25\x29\x31\x72\x57\x13\x31\x97\ +\x66\xae\x3f\xd3\x53\xcc\xf3\x9b\x23\xfc\x6d\xf4\x5c\x5c\xdb\x03\ +\xc8\x87\x8c\xc2\x59\xbc\x3c\x9b\x74\x8f\x25\xac\xb9\x3e\x5a\xcd\ +\x9e\x57\x63\xf4\xda\xaa\x4c\x97\xc8\xb0\x3c\x6e\x44\x55\xfd\xde\ +\x88\x93\x14\xee\xcf\x50\x9b\xcd\x0b\xb2\xa9\x1c\x93\xe8\x50\xb1\ +\x42\xf2\xf2\x5a\x96\x82\x26\xd2\x53\x5c\xed\x79\x6e\xd7\x38\xe8\ +\x0b\xf3\xa0\x77\xf2\x63\x32\x0b\x27\x68\x2d\xfa\x98\x47\xfc\x92\ +\x13\x6f\xc6\xad\xf1\xe8\xc7\xd3\xed\x44\xc6\x83\x22\xce\xba\xeb\ +\xf2\xdd\xd7\xde\x2e\x0f\x3c\xf3\xa9\xf2\x89\x3f\xfc\xa3\x72\x84\ +\x17\x1d\xfc\x3f\x10\xce\xcf\x6c\x90\xdb\x8a\x56\xd3\xb6\xdd\x66\ +\xfd\x60\x19\xa1\xda\x5b\x56\x9f\xf3\x36\x62\xae\x6b\x0b\xce\x8f\ +\x7c\xd8\x7c\x5c\xe7\x0e\x65\x3e\xe0\x97\x75\x0c\x70\xbd\xc8\xb9\ +\xcd\xaa\x5c\x11\xfd\xb8\x3c\xfc\xc8\x33\xe5\x97\xbf\xfa\xaf\xcb\ +\xea\x95\x93\xb2\xb9\x21\x27\xf9\xe6\x44\xaf\x11\xb9\x26\x70\x4d\ +\xe9\xe5\xa6\xaf\xe0\xfe\x9a\x6b\x26\x93\x32\x54\xef\x77\x69\x68\ +\x6d\xae\x5d\x70\xb0\x55\x89\x48\xf4\x10\xa3\xb9\xb6\xdd\x44\x15\ +\xa8\xaf\x69\x33\x11\x7c\x6a\x4a\xcd\x37\xc8\xe6\x9e\x32\x0a\x09\ +\xdb\xc0\x09\x93\x7e\xca\xe2\x62\x88\xbd\x6c\x52\x98\xf5\x80\xb4\ +\x3e\x13\xb1\x1f\x94\x04\x22\xec\x0b\x6d\xb8\x82\xda\x7f\x1f\x57\ +\x9d\xe5\xa6\x39\x60\xef\x3c\x3a\xd9\x26\xf4\xba\xe7\xd3\x18\xf7\ +\xe6\xdc\xd3\x76\x0e\xc4\x85\x03\x05\xc3\x58\x37\x9e\x91\x58\xdc\ +\xd3\x43\x0e\x83\xef\x25\xe0\x47\xc6\x10\xca\x24\x30\xb0\xd7\x33\ +\x72\xce\x07\x08\xd2\x71\x98\x1e\x92\x19\x4c\x13\x4e\x2c\x67\xb4\ +\x89\xa6\xfa\xe6\xea\x58\xcd\x77\x44\x3d\xd5\x8f\x90\x71\x53\xce\ +\x99\xe6\xea\x46\x7c\x3f\x6c\x41\x52\xb3\xa8\x34\xcd\x2a\x18\x1a\ +\xc5\xdc\xc4\x27\x84\x1d\xdb\xd4\xa7\x09\xbf\x6a\x21\x65\xc2\x64\ +\x10\x74\x7c\x55\x1a\x23\xdb\xa7\xb2\xc5\xbb\xc3\x73\x0f\x86\x4d\ +\x3f\x95\x2b\x23\x1a\xeb\x3c\xac\x8b\xb0\x82\x12\xdd\xc7\x4e\x54\ +\xba\xa5\x68\xc5\x2f\x80\xa4\x1d\xdf\x0a\xb9\x93\x05\xd5\xd1\xf1\ +\x51\x59\x1f\x9f\x96\xaf\xbf\xf4\x7f\x2a\x1f\x7a\xf6\x53\xe5\x44\ +\x9c\x47\x2b\x7c\x25\x31\x72\x7a\x47\x00\x4b\xa4\x8e\x05\x0b\x16\ +\x2c\x58\x70\x97\x63\x79\x43\x6d\xc1\x82\x05\x77\x37\xfa\x75\xe6\ +\x5d\x00\x74\x29\x97\x8b\x75\xab\x8d\x86\x04\x59\x97\xf9\x62\xc3\ +\x03\xcb\xd5\xd5\x72\xba\x3d\x2e\xef\xff\xf4\xe7\xcb\x67\xff\xe9\ +\xbf\x28\x7f\xfc\x9f\xde\x2a\x3f\x78\xeb\x2d\xfd\xca\x47\x59\xac\ +\xe3\xab\x8c\xf0\x15\x90\x1a\xac\x5f\xbf\x85\x58\x3c\xf3\xb4\xff\ +\xb0\x46\x54\x49\xe1\x37\x06\xde\x83\x5c\x1a\x84\x43\xf8\x3d\x01\ +\xf7\x13\x49\xd7\x1b\x8c\x4c\x70\xe8\x83\x29\xbd\xc1\xd3\x82\xad\ +\x3e\xa0\x1a\x83\x0c\xf8\xed\x01\x05\xf8\x00\x63\x72\x9c\xe9\xcc\ +\x47\xae\x48\x0c\xd5\x1f\x20\xe8\x21\x28\xb2\xaa\xb2\xb7\x52\x51\ +\x2d\x53\x5f\x4e\xe0\xe2\x5c\x1e\xa0\xd2\xe1\x4f\xc1\x82\xd0\x92\ +\x79\xf8\xb5\x4f\x94\xda\xd8\x0c\x7a\xdc\xcd\xff\x7e\x2d\x18\x77\ +\x67\xde\x2e\xf0\x56\x3c\xd5\x82\xcb\x1f\x8f\x9c\xef\xe2\x79\x71\ +\xa5\xf4\xd1\x38\xb0\x76\x70\xe1\xa2\x28\x1b\xb9\x86\xf3\xa7\x98\ +\x66\x91\x28\x35\xb3\x48\x4d\x33\x89\x34\xe4\x57\x44\x17\x0c\x23\ +\x4e\x60\x4f\x2e\xd7\xe7\xda\x70\x4c\x76\x31\x39\x43\x6c\x38\xa2\ +\xc8\x2f\x7c\x4d\x1e\x29\x7d\xaa\x09\x18\x30\x65\xb5\x96\xaa\x51\ +\xf2\x0e\x7a\x63\xa2\x62\x6e\x64\xfb\xb9\x03\x09\x6d\x3e\x23\xf5\ +\xdc\x96\x14\xcf\x76\x9d\xc6\x07\x3e\x29\x26\x87\xe3\x25\x64\x2b\ +\x2f\x1e\x7c\x93\x0c\x6f\xa6\x89\x7e\x5a\xf0\xf5\x44\xa7\xe5\x7b\ +\x6f\x9f\x94\xdd\xdb\x0f\x96\x8f\xfe\x9d\x7f\x5c\x1e\x7c\xf4\xb1\ +\x72\x7c\xba\x2d\x3b\xbc\xee\xd8\x7e\xd4\xc7\xa6\xc8\x18\xad\x59\ +\x0d\x5f\xf6\x67\xf4\x5c\x47\xb7\x23\x77\x12\x73\x5d\x5a\x70\x36\ +\xe6\x0e\x5b\x3e\x05\x1c\x18\xdf\x6c\xcb\xe3\xed\x72\xf6\xcf\xe5\ +\x9e\x85\x04\xf8\xc9\xee\x17\x82\x24\x5e\x95\xfb\xe4\xac\x3e\x29\ +\x1f\xfc\xd0\xa7\xcb\xb7\xbe\xf4\xf7\xca\xf6\x95\xb7\xca\xee\x58\ +\x3c\x47\xc7\xf5\x93\x6a\x08\x15\x11\x0f\x41\x19\xa9\x26\x0a\x7a\ +\x5d\x88\xa1\xbb\x50\xc9\xe7\xb6\x62\xb6\xcb\x99\xe6\x72\x1b\x9a\ +\xd4\x9c\xa5\x23\xd1\x37\x68\x25\xad\x1b\x10\x52\xb5\x7a\xa5\x02\ +\x21\x27\xa1\x6f\x21\x20\x1c\xa7\x81\x93\xf3\xcc\xc6\xd0\xa3\x5e\ +\xf2\x73\x50\x86\xd9\x73\x1e\xca\x73\xfc\x70\x64\x42\x8d\x9e\xe4\ +\xe9\x31\x09\x1b\xc4\xc6\x39\x93\xc6\xcc\x84\x1c\xde\xc2\x56\x9c\ +\x0d\x41\x15\x4c\x95\xb5\x15\x05\x0f\xd3\xc0\xae\xb8\xe0\xa3\x19\ +\xcb\x79\x21\x78\x6c\x13\x2f\x0a\x75\xd4\x26\x7b\x01\xbc\x6e\x90\ +\x8d\x18\xbf\x6e\x0c\x87\x31\x9d\x6b\x86\x73\x2e\xec\x69\x67\x88\ +\x0b\x36\x3e\x3e\x7e\xfb\xd0\xe6\xa7\x76\x66\x93\x67\x11\xaa\x7f\ +\x5f\x7f\xd4\x67\x0c\xa9\x9c\x8b\x7a\xdf\xd2\xb0\x4e\x77\x21\x4c\ +\x81\xf8\xde\x9d\xf4\xd6\xd5\x13\xa7\x8d\x1f\xd4\x66\xe7\x1a\x32\ +\x3d\xb5\x38\x1b\xff\x60\x7f\xf5\x1e\xb5\x73\x51\x71\x8f\x48\x58\ +\x48\x31\x99\x5c\xef\x52\x99\x46\x80\xb3\x61\x2d\x6b\x28\xf8\x2d\ +\xee\x54\x5e\x73\xd6\xe2\xd9\x6e\xdf\x28\x9f\x7d\xe1\x9b\xe5\x8b\ +\x2f\x7e\x5b\x18\xe2\xe3\x5f\xc4\xda\xa7\xd9\x16\x2c\x58\xb0\x60\ +\xc1\x3d\x8b\x65\x1e\x5f\xb0\x60\xc1\xdd\x8b\x66\x65\xfb\xa3\x06\ +\xdd\x39\xdd\x62\x49\xde\x2c\xf7\x05\xba\x14\x2f\xeb\x2b\xb2\x6a\ +\xdf\x95\xcf\xfc\xca\x5f\x2b\xcf\xfd\xf6\xff\xa5\xfc\xaf\x7f\xf2\ +\x4a\x39\xc1\x27\xd4\xb0\x20\xe7\x62\x1c\x5f\x0d\x29\x5b\xce\xe6\ +\x5e\x2b\xf0\x5c\x00\xb7\xb3\xc8\x9c\x6e\x6b\x4d\x92\x6d\x98\x84\ +\x81\x3b\x03\x3c\x44\x12\x91\xb7\x01\x76\x87\x65\x8f\x09\x02\xf9\ +\x06\x42\x05\x04\x30\x48\x21\x32\xfe\x47\x1a\xd3\xc1\x86\x82\x07\ +\xb5\xf0\x41\x64\x6e\x53\x2c\x0c\x4d\x81\x1f\xa0\xdf\x1f\xf0\x60\ +\x8b\x68\x14\xb5\x38\xdc\xda\xdc\x0d\xba\x2c\x54\xb2\xdb\x10\x62\ +\x60\x52\x24\x47\x8d\x95\x0d\x6b\xeb\x8f\x36\x28\x3f\xa9\x4d\x80\ +\xce\x33\xd0\x85\x00\xe3\x30\x25\xc2\x37\xf5\x0f\x92\xf4\xf0\x31\ +\x70\xaa\x27\x6a\x92\x8d\xf3\x4c\xdb\x1b\xe0\x20\xd2\x8f\x26\x26\ +\xc3\x78\x08\x3c\x68\x54\x0c\x49\x6c\xe4\xc0\xd0\x08\x33\xce\x4b\ +\xfd\x01\xe2\xa8\x42\x4d\x87\xd8\xc3\xfb\x37\xd5\xa0\xc5\xdc\xe0\ +\x2e\xd4\x16\x10\x59\x3b\x8a\x43\xdb\xcf\xe8\x19\x19\xc2\xa4\x1b\ +\x11\x35\x61\x1b\x9f\x91\x78\x8e\x86\xdf\xf9\x06\xe8\x19\x1a\xeb\ +\xa3\x65\x99\x58\x29\xb3\xb1\x0b\x5c\xc7\xb0\x55\x6b\x05\x6c\x73\ +\x76\x22\x39\x7d\xce\xa8\x7d\x82\xe4\x9a\x12\x31\x95\x56\x88\xc2\ +\xe3\x25\x63\x0c\x31\x39\xab\xa4\x7e\xce\xf3\x9c\xbf\x49\xa4\x9f\ +\x5b\x71\xf3\x19\x10\x81\xb9\x59\xdf\x18\xe0\x86\x01\xbb\xb2\xb3\ +\x37\xdf\xf1\x7a\x81\x70\x7c\x3a\x0d\x9f\x82\xfe\xee\x8d\x52\x4e\ +\x7e\xb8\x29\x1f\xff\xcf\xff\xcf\xe5\x3d\x5f\xf8\x1c\xff\x97\x1a\ +\xbe\xe8\x51\x3f\xc5\x81\x18\xef\x3b\xe0\xb2\xe6\x6a\x31\xb2\x8d\ +\xe0\x79\xdb\xcc\xb7\x0d\x68\xea\xd0\xae\x2d\xb8\x35\xf4\x07\x14\ +\xe3\xee\xb6\xd1\xc1\xde\x7b\x6c\x0e\x3c\x68\x41\xb3\xeb\x43\xa4\ +\xcd\xe9\x5a\xd6\x4f\x37\xca\x17\x5f\xfe\xcd\xf2\xf9\x0f\xff\x72\ +\xb9\xf9\xdd\x1f\x88\x55\x3c\xab\x13\x76\x03\x2c\x76\x87\x6f\xaa\ +\xe8\xa7\x0c\x50\x47\x2a\x11\x54\x36\x8b\x54\xda\xfd\xb4\x13\x93\ +\xfd\x89\x20\x56\x26\x0a\x94\x48\x3d\xfc\xb0\x99\xe2\x79\xe4\x7a\ +\xab\x31\x15\xb4\x81\x33\x69\xaf\x1a\x7d\xca\x88\xf8\x94\x13\x98\ +\xcd\x3b\x41\x6e\xa4\xe6\xb7\x34\x86\x46\x51\xd0\x34\xb0\x0f\x40\ +\x16\x1a\x9f\xe9\x54\x35\xa7\x7c\x21\x72\x42\x93\x92\xc6\x0a\xbe\ +\x41\xae\x81\x29\xa0\x3e\x04\x6a\x62\xe8\x4d\x3e\x41\xd6\x95\x59\ +\xf9\x8e\x5e\x83\x8e\xb8\xda\x3b\xb5\x01\x91\xaf\xc7\x34\x2d\x31\ +\x30\x5d\x3e\x72\xdb\xd1\xa0\x1b\xa5\xd0\xa6\x32\xce\x59\xff\x99\ +\xc5\x1e\xd7\x18\xed\xa8\x9c\x27\x5c\xb9\xb9\x37\x26\xa1\xea\x13\ +\x25\x7d\x6f\xff\x05\x4d\x8f\xf6\x53\xcf\x85\x9a\x77\xba\xcf\xd3\ +\xf5\x95\x60\x62\xd8\x07\x27\xa3\xf6\x4e\x4f\xdb\x69\x40\x77\x8e\ +\x6b\xf9\xae\x76\x56\x49\x84\x4c\x5d\xb6\xf4\xe6\xf4\x84\x0f\x43\ +\x18\x1b\xc5\x50\x73\xd9\xb2\x86\xf9\x7c\xf5\x56\x31\xc8\x1d\x80\ +\x67\xe4\xd5\xdc\xee\xf1\x79\xb2\x05\x6e\xa6\xeb\x3e\xf9\x9f\x1a\ +\x91\xca\x0d\x74\x05\xac\xf8\x23\x0c\x98\xf8\x3f\xc5\x45\xa4\x2e\ +\x86\xd5\xf1\xa6\x1c\x9f\xdc\x28\xcf\x3c\xfa\xe1\xf2\xb3\x2f\xff\ +\x4e\x39\x92\xfb\x75\xe4\xc4\x5d\x72\x9e\x0f\xda\x7a\xc1\x82\x05\ +\x0b\x16\xdc\x2b\x58\xde\x50\x5b\xb0\x60\xc1\xdd\x8d\xbb\x7c\x7d\ +\x89\xee\x0d\xd7\xe2\x7b\x91\x17\xd1\x5c\x7a\xdb\x6e\xea\xad\x69\ +\xce\xc8\x05\x37\x6e\x54\x4e\x6e\x96\x2f\xff\xfd\xbf\x5f\x1e\xff\ +\xda\xaf\x96\x7f\xff\xef\xbe\x57\x4e\x4e\xd7\x65\xb7\xdd\xf2\x9f\ +\x1a\x6f\xd6\x28\xca\xe5\x52\x5d\xf8\x78\x63\x4d\x73\x0a\x22\x1d\ +\x3e\x59\x60\xa2\x20\x6e\x20\x83\x68\xc0\x4d\x01\x6a\x7b\xf8\xce\ +\xdb\x03\x18\x58\xc4\x66\x37\x0c\xe4\x04\xc0\xf5\xdb\x03\xd9\x9a\ +\x93\xb7\x0c\x94\x33\x1b\x2d\xf7\x8d\x1a\xc3\x72\x13\xfc\x0e\x32\ +\x29\x71\x53\xc6\xae\xd1\x3f\xb9\x01\x62\x5f\x3d\xb6\xcd\x4d\x9b\ +\x98\x58\xcb\xa6\xf5\x3a\x6a\xbb\x7d\x9d\xa5\x1e\xb3\x31\xf3\x21\ +\x82\xb9\x1e\x54\x34\x8c\x21\x5d\x8c\x66\xf7\x38\xa8\x41\xb5\x63\ +\xa7\x5e\x93\xdd\x14\xa4\x0a\xb0\x34\xcf\xc0\x39\x42\xee\xec\x1d\ +\x86\xf7\xb5\xf6\xf9\xce\xe3\xe0\xb6\xcf\x20\x65\x77\xce\xd9\x84\ +\xed\x3d\x24\x60\x2a\x41\x63\x52\x16\x39\x07\x22\x0f\xaf\xa1\x9e\ +\x91\x13\x43\x4e\xd7\x5e\x72\x85\xad\x81\xf2\xf5\x42\x6c\x19\x7d\ +\x8e\x19\x6f\x67\x57\xe8\x03\x65\x43\x12\xcf\x03\xcf\x8b\x3a\x2e\ +\x03\x03\x6d\x2a\xce\xa0\x9b\x07\x3c\x81\x19\xf7\xc7\x2a\x72\x7c\ +\x64\xcb\x81\x22\x73\xfe\x53\x42\x82\x2a\xdc\x66\x7b\xc3\xe9\x00\ +\x9f\x94\x7a\x18\x7c\x87\xdd\xa0\x93\x39\xce\x04\x7b\xbe\x53\x4e\ +\x77\x3b\xe1\x8b\x60\x5f\xfd\x08\x16\xff\x0f\x88\x28\x5b\xd9\x9c\ +\x6e\x6f\x96\xeb\xab\x2b\xe5\xfb\xaf\x5c\x2f\x4f\x7d\xf3\x3f\x2b\ +\xcf\xfd\xd6\x6f\x95\x23\x7c\x72\x4d\x5e\x57\xf0\x07\x1c\xed\x8d\ +\x83\xb7\x33\xc2\x3e\x5f\x06\xfa\x8c\xc2\x9e\x58\x7d\x1b\xe1\x43\ +\x04\x78\x73\x7d\x93\xb7\xb9\x0b\x3f\xb6\xc8\xe3\x0a\xb9\x3f\x16\ +\x23\x34\xc7\xa2\x4f\x30\x00\xf3\xd8\x81\xc5\xf5\xcb\x35\x85\x36\ +\xb6\x93\xb3\xf7\x68\xbd\x91\x53\x7f\x5b\x7e\xee\x0b\x7f\x58\xde\ +\xf3\xe0\xc7\xca\xee\x7b\x6f\x89\x2e\xbc\xd5\x09\xaf\x0f\x5c\x2b\ +\xb8\x3e\xd7\xb8\x56\x34\x0b\xb7\x9a\x43\xb5\x2c\x02\xb8\xfe\xa8\ +\xce\xed\x83\x60\xe2\x77\x19\x5d\x44\x51\xb1\x52\x6c\x91\xe3\x7d\ +\x57\xed\x0c\x64\x92\x24\xca\x6f\x78\xed\x8f\xb7\x15\x99\xf3\x73\ +\xa0\xc0\x63\x5b\x6b\xc5\xc4\x7e\x30\x51\x91\xcd\x94\xa3\xb3\xea\ +\xe9\xfb\xde\x8e\x86\xf6\x9d\xc5\xcc\x5d\xf8\x1e\xec\x27\x68\xce\ +\x19\x0e\x1b\xa9\xbe\x9e\xd5\xe8\xa6\xf4\xfb\xd1\xe3\x2c\xff\x41\ +\x40\x5b\x5e\x2e\x82\x83\xe2\x30\xe6\x87\xf6\xf6\xc0\x8e\x34\x7d\ +\x9e\x89\xe9\xcc\x4d\xc8\x01\xf0\x3b\xac\x11\xf4\x3a\xbb\x2c\xa0\ +\x15\xc9\x97\x53\x7a\xc3\xa9\x03\x87\xb6\xd8\xf3\x5a\xfd\xd0\x2c\ +\x53\xd8\x14\x93\x6f\xb1\x3a\x68\x67\xb3\x1b\xb2\xeb\x2a\xcb\x4f\ +\x36\x12\xa6\xb0\xaa\x4e\x5d\xdf\xd9\xd8\x00\x69\x2c\x80\xca\xf4\ +\x1a\xab\x0d\xb7\x9c\x01\xa1\xb5\xb1\x92\xdc\x0c\x6c\x86\x32\x56\ +\x3c\x1d\x3c\xa8\xc1\xba\xee\x53\xf6\xc3\x88\xbf\x14\x95\xba\x9a\ +\x7d\xaf\x64\x8d\x24\x76\xb4\xa0\xe3\xb9\xb5\x37\xd5\x8e\xcb\x83\ +\xa7\xf7\x97\x5f\xfe\xd2\x1f\x95\x87\xae\x3d\x21\x7e\xdc\xa7\xd7\ +\x95\x6e\x4e\xbf\x60\xc1\x82\x05\x0b\xee\x3d\xb4\xf7\xc5\x0b\x16\ +\x2c\x58\xb0\xe0\x42\xf0\x45\xf1\xd9\x8b\xe3\xcc\x44\xc1\xb2\x3a\ +\x47\x65\xbf\x81\x0f\x7b\x36\x65\xb3\x3e\x2a\x5f\xfc\xc7\xff\xa4\ +\xbc\xf9\xfc\x17\xca\xf7\xfe\xec\x95\xb2\x3e\xba\x2a\x3e\x59\x9e\ +\x8b\x7b\xbd\x5a\xf3\xcd\xb5\xd5\xba\x7e\xf5\xa3\xfd\x46\xd1\x37\ +\xd3\x84\x23\x75\x7d\xbe\x2e\x1e\x26\x80\xec\x10\x87\xdd\x18\x90\ +\x23\xfe\xa0\x7b\xed\x0a\xde\xf4\x42\xbc\x13\x5c\xce\x4f\x36\xc4\ +\x66\xf7\x20\x15\xb4\xa7\x62\xd0\x36\xd5\x20\x99\xe8\xab\x6e\x5a\ +\x02\x6e\x4f\xe1\xb5\x5d\xa3\x0e\x39\x80\x19\xaa\x5f\x02\xda\xf4\ +\x84\xfa\xe1\xa8\x01\x7a\x2b\xe4\x91\x1d\x2a\x2d\xea\x60\xe6\x90\ +\x2c\x4b\xbe\x46\x35\x0c\xba\x23\x68\x99\xae\xa1\x9e\x3c\x10\x70\ +\x35\x27\x0a\x4a\xe5\xb6\x51\x5d\x8e\xbb\x0c\xa3\xde\xc1\x36\x57\ +\x6e\x37\xbc\x0d\xb6\x77\x59\x0d\xda\xf1\x62\xba\x49\xce\x43\x1b\ +\x91\x24\xfd\x09\x04\xbd\xb7\x1d\x8a\x83\xf7\x4d\x89\x63\xba\x37\ +\xae\x75\xee\x4a\xc3\x9f\xe9\x63\x9f\x73\xda\xc6\x81\x3b\x67\x81\ +\x11\x3f\x09\x1b\x5d\x8f\xb0\x78\xb1\x80\x14\x37\xe1\x27\xc3\xc4\ +\x47\xa8\x15\x5b\x9e\x37\x98\x37\x1d\x36\xdf\x7a\x20\x2a\x78\x95\ +\x31\x6d\x9b\x3e\x21\xe1\x51\x21\xcd\x50\xf4\x37\x9e\x1f\x59\xa5\ +\xa0\x83\x8f\xc1\x8c\x83\x37\xd8\x64\xbe\x97\xd7\x92\x95\x94\xad\ +\xbc\xd6\x7c\xf7\xbb\x6f\x96\x87\x3f\xf6\xe5\xf2\xfc\xdf\xfa\xbb\ +\xf2\xba\x73\x85\x9f\x5a\x43\x5e\x7d\xce\xce\x16\x21\x24\x30\xd3\ +\x39\xe0\xf1\x39\xcf\xc8\x76\x9b\x80\x26\x50\xce\xdb\xed\x05\x97\ +\x03\x1f\x7f\x20\x1f\x83\x83\x0e\x7d\x26\xa5\xe0\x30\xbb\x0d\x06\ +\x93\xd3\xba\xe4\x14\x9f\xb3\x5c\xef\xca\x95\x87\x1f\x2d\xdf\xfe\ +\xa9\xff\xb2\x5c\x7b\xeb\xe1\xb2\x7d\xfd\x84\x6f\x26\xaf\xca\x71\ +\x59\x6d\x85\xc7\xf3\x5d\xdf\x40\x3e\x95\xc5\x4b\xee\x22\x34\x3c\ +\x14\xb5\x15\x52\xd4\x6d\xbf\xa0\xb9\x2e\x35\x9f\xac\x42\xaf\x1c\ +\x5c\xf7\x58\x4b\xe4\xde\x2a\xaa\xe4\xa0\xa5\x33\x53\xcd\xf3\x86\ +\x00\x5f\xdb\x9a\xfb\xea\x88\x56\x9a\x2a\x66\x0c\x41\x8d\xea\x9a\ +\x49\xa8\x9e\x49\x14\x0d\xa2\xd5\x34\x5d\x9e\xf9\xac\x0e\x86\x9e\ +\x41\x9b\x77\xc3\x83\x0c\xa9\x03\xb0\x65\x95\x48\x19\x28\x56\x42\ +\xf5\xa8\xad\x09\x75\x45\x48\xce\x83\xc9\x8b\x83\x72\x6a\x42\xa1\ +\x0c\x35\x8b\x8c\x5f\x23\x62\x3e\x65\xa1\x2f\xa1\x31\x68\xbc\x03\ +\x9a\x1e\x37\x2f\x7b\x70\x00\xe5\x22\xf0\x94\x38\xaf\x6e\x43\xfa\ +\x09\x78\xf9\xee\x69\x28\xbb\x74\xb4\xa6\xd7\x41\xe6\xec\xeb\x33\ +\x7c\x23\xff\x7c\x4c\xe7\xe9\x1b\xbe\x05\x44\xe6\xf9\xc6\x5b\x44\ +\xdb\xa3\xbd\x9f\x76\xcc\xad\xf4\x4c\xdd\xd5\xd4\xf8\x06\x44\xc1\ +\x78\xee\xd9\xdf\x71\xe7\xfb\x3d\x55\x9d\x0d\x15\x59\x23\x43\x4e\ +\x82\xca\x41\x9d\x19\x55\x8e\x56\x43\x30\xae\x51\x9c\x39\xea\x9d\ +\x7f\x09\xa3\xf6\x08\xf3\x36\x66\xfb\x04\x51\x7c\xc6\x77\x80\x0b\ +\x16\xd6\x50\x24\x63\xc1\x24\xbf\xab\x93\x4d\xb9\x2a\x73\xff\x37\ +\x5f\xfe\xfd\xf2\xc1\x67\x5e\xe4\x6b\x8c\xdc\xa1\x5b\xbe\x3b\x75\ +\xf5\x2c\x58\xb0\x60\xc1\x82\xdb\x89\xe5\x0d\xb5\x05\x0b\x16\x2c\ +\xb8\x05\xe4\x85\x76\xb3\xe8\xde\x8b\x7e\x11\x3d\xb7\xa8\xf6\x5b\ +\x07\xd9\xae\x37\xbc\x09\x7f\xfc\xfd\x1f\x2c\x9f\xfe\x27\xff\x55\ +\xf9\x0f\xdb\x47\xcb\x2b\xdf\x7b\xbd\x9c\xf2\x53\x5c\x5b\x7e\x22\ +\x6d\x23\x1c\xfe\x7f\x35\xfd\xe5\xc2\x5d\x53\x73\x53\xfb\xa7\x6a\ +\x85\xdc\xd1\xf3\x27\xd9\xa3\xdd\x09\xc4\x36\x32\x37\x46\x4f\x24\ +\x36\x3c\xdc\x25\xcc\x86\x3b\x11\xa4\x30\xfb\xa4\x2b\xf2\x43\x8f\ +\x87\x01\xe9\x26\x8a\x7c\xc4\x6b\xd5\xd0\xa0\x68\x5a\xb5\xf6\x3e\ +\x47\x63\xcf\xe8\x1f\x4e\x59\x0d\x4c\x63\x06\xfd\xcc\x88\xfd\xae\ +\x80\xc5\xcb\x10\xa9\xf9\x59\x4e\x22\xe9\x43\x99\x0c\x1f\xa5\x0c\ +\xf0\xc5\x6a\x55\xef\xaf\xba\xe7\x35\xe2\x1c\xf6\xb8\x2e\x0a\xa4\ +\xdc\x57\x1c\x59\x3e\x14\x73\xb9\x2e\x13\x3c\x0e\x96\x5c\x1f\x92\ +\x9a\x6c\xf5\xf9\x21\x91\x76\x38\x98\x63\x6f\xa2\x7c\xdc\x94\xca\ +\x42\x35\xdd\xae\xd3\x10\x9a\x00\xe7\x8a\x3e\x00\x61\x7a\xb8\xc8\ +\x49\xb6\x04\xb5\x5a\x7c\xa4\x11\x21\x64\x47\xcf\x11\x34\x1c\x28\ +\x7d\xf6\x31\x0e\x63\x29\x32\xb7\xef\xd2\x24\x4f\x22\x4c\x1f\x01\ +\x55\xa7\x7a\xa6\xbd\x98\x5a\x12\x66\x1a\xab\x66\xd1\x65\xa2\x0d\ +\xdd\xe7\x1c\x56\xb5\x6d\x45\xd2\x19\x20\xba\x05\x72\x46\xa4\x8c\ +\x8d\x14\x50\xe9\x16\xd9\x39\xf6\x57\x0c\xf8\xaa\x22\x3e\xe7\xc1\ +\xdc\x1b\x13\xb0\xd8\xc1\x97\x5a\xdf\x4c\x83\x7c\x52\x4e\xd6\xeb\ +\xf2\xbd\x1f\x5c\x2f\x47\x0f\x7f\xa8\xbc\xf4\x47\xff\xbc\x3c\xfa\ +\xf8\xe3\xe5\x64\x2b\x31\xf8\x14\x34\xc2\xd1\x08\xda\xf2\x46\x2e\ +\x0d\x9e\xcf\x8f\xc8\x65\xe7\x4f\x38\x24\x35\xf7\x71\xc1\x2c\x2e\ +\x7a\x78\x30\xae\x79\x6c\x73\x9e\x83\x72\xe6\xe0\x99\x83\xc4\x3c\ +\xd8\xa4\x84\xa4\xca\x7c\x28\x26\x9c\x61\x78\x53\xed\xb4\x5c\x2f\ +\xcf\xbf\xff\xe3\xe5\x5b\x5f\xfe\x07\xe5\xc6\x5f\xfe\xb0\xac\xde\ +\xb6\xeb\x44\xae\x03\x5c\x1f\x91\x9d\x0b\x23\x04\x5a\xce\x94\x56\ +\x1f\xb8\xd6\xba\x47\xa2\x4a\x1e\xd7\xf2\xeb\xb4\x4a\xee\x6a\xf9\ +\x56\x77\xc8\x9c\xda\x47\xab\x0d\xce\x61\x97\x51\x6b\xd5\xac\xf1\ +\x32\xba\xa5\x4f\x00\xf3\x4c\x60\xb0\xa6\x21\xba\xd8\x69\xaa\x69\ +\x1c\xfa\x31\xd3\x64\xb7\x7f\x3e\x1f\xb4\x08\x9b\x09\xa1\xf7\x7d\ +\xec\x1b\x81\xbb\xb1\xcd\xf4\xc2\xcc\x9a\xad\xcd\x09\x8d\xbd\x22\ +\x27\xfb\xa6\xb9\x60\x89\x63\x2b\x4a\xc3\x70\x3b\x8a\xf9\x1a\xbf\ +\xc3\x8c\xad\x7f\x7f\xbb\x13\x78\x70\x9b\x44\x70\x40\xec\x0c\xce\ +\x7c\x33\x60\xd8\x5e\xc6\xbe\xf8\xbc\x7f\x23\xa4\x58\x11\x47\xa3\ +\xd1\x66\xcf\xd7\x9c\xa1\x6b\x3e\x9f\xeb\xe4\x76\xfe\xf3\x82\xe1\ +\xe7\xca\x21\xad\x5a\x27\x51\xf5\xfd\xed\xf5\xc6\xe0\x73\xd3\x30\ +\xb2\xc7\x59\xfe\x0c\xe7\x76\x31\xa1\x42\x18\xed\x64\xb6\xa9\x9c\ +\x33\xe1\xdc\xc1\x35\x84\x6b\x23\x52\x25\x64\xdb\xf8\x3c\x03\x03\ +\x6b\xa0\x34\x43\x18\x0d\x9a\x5a\x64\x9b\x27\x36\x11\x23\x97\x85\ +\x50\x87\x29\x68\x2a\x98\xdb\x04\xd9\xf0\x0d\x32\x79\x7d\x08\x87\ +\x22\x1e\xa2\xca\x0b\x07\x5e\x01\xb0\x96\xc2\x1f\x25\x21\xe6\xca\ +\xa9\xbc\xc6\x1c\x5f\x2f\x5f\xfa\xc8\x6f\x96\x2f\x7e\xe2\xdb\xfa\ +\x07\x1b\x72\xa3\x3e\x9e\xd1\x80\xe8\xc4\x82\x05\x0b\x16\x2c\xb8\ +\x87\xb0\xbc\xa1\xb6\x60\xc1\x82\x7b\x0f\x73\xeb\xd1\x77\x10\xbe\ +\x26\x3f\x7b\x49\x0c\x46\xde\x81\x7e\x67\x06\x19\x68\x92\x85\xfa\ +\xfa\xa8\x9c\x6e\x4f\xcb\x87\x3f\xff\xa5\xf2\xc2\x7f\xf1\xcf\xca\ +\xff\xfb\x7b\xdb\xf2\xca\x0f\xdf\x28\x57\xb6\xf8\x3b\x6a\xe5\x40\ +\xda\xe0\x53\x6a\x78\xfa\xc9\xf7\xd3\xda\xaf\xe8\xd2\x9b\x7b\xbd\ +\x75\x44\xf1\xaf\x80\x6c\x6e\x14\xac\x0b\xf5\xe1\x8b\xdc\x02\x88\ +\x5f\x8b\x46\xe2\xa6\x00\x7f\xb9\x8d\x07\xb1\x7c\x94\x64\xf1\xf4\ +\x42\xe6\x1b\x7d\x66\x16\x03\x6a\x9a\xad\x64\x90\xe9\x04\xc0\x1e\ +\x38\x87\x8a\x0d\x15\xb7\x8c\x91\x63\xda\xe0\xaa\xfa\xfd\x55\xc3\ +\x4d\x18\xdd\xbc\xb1\xf7\x46\x1e\xc7\x8c\x6b\x95\xa6\xf9\x1a\xe4\ +\x1b\x3e\x42\xf7\x1d\x88\x3c\x35\xa1\xa0\x8e\xe5\x14\xe7\xf3\x4c\ +\x99\xde\x97\x33\xfa\xec\x18\x37\x75\x2e\x1c\x92\x62\xd4\xf7\x8b\ +\xe2\x5c\x79\x72\xc3\x2e\x8f\x4a\x0f\xb1\xd1\x6c\xf5\x88\x72\x36\ +\x6a\x14\xa5\x38\x24\xfb\x8e\x8d\xf8\xe2\x49\xa5\x35\x9e\xf8\x9a\ +\x11\xdb\xb9\x1c\xed\xd9\xaf\x7c\x83\xe7\xdc\x83\xb1\xb7\x6f\xab\ +\xb2\x20\x85\x46\xda\xb4\x5f\x73\x2d\xd2\x6e\xf3\x0a\xc5\x2e\xb4\ +\x89\x9b\xa6\x3d\x03\x88\xd6\x20\x48\x5e\xd4\xd6\x26\xcb\xed\x54\ +\x1e\x30\xe0\xe2\xe1\x8f\x10\x74\xbe\xd4\xeb\xbc\x65\x59\xb4\x4e\ +\xd2\xa2\xd5\x6c\x55\x32\x98\x21\xe6\x65\x9a\xf4\x41\x8e\x66\x54\ +\x23\xe6\x67\x95\xf1\x30\x68\x57\x76\x34\x08\x53\x28\x88\xe3\x83\ +\x20\x09\x43\xec\xf6\xa4\x94\xd7\x5e\xb9\x5e\xde\x7a\xeb\xc1\xf2\ +\xb1\x7f\xf4\x2f\xcb\x7b\x5e\x7c\x51\x6c\xfa\xc7\x1a\xfa\xa9\xe7\ +\xe6\x95\x44\x0a\x93\x5f\x10\x1e\xab\xfd\x51\xd4\xfa\x56\x32\x9f\ +\x0b\x75\xf0\x5b\xdc\xb1\x0e\xfc\x98\x22\x1f\x76\xc0\x8f\xc3\xdc\ +\xb8\x0f\x8f\x93\x93\xad\x8e\x58\x90\x73\x01\x6a\x62\x7c\x85\x1f\ +\x66\xba\xcd\xe9\x95\xb2\x2d\xd7\xcb\xe7\x3e\xf3\x8b\xe5\x9b\x9f\ +\xfb\x9d\xb2\xfb\xb3\xd7\xcb\x4d\x39\xdf\xb7\xab\x63\x59\x17\xe1\ +\xa2\xd0\x98\x26\x0b\x4c\xae\x08\xa0\xf2\x21\x2a\x15\xd1\xbc\x99\ +\xe0\xb8\x80\x9a\x6c\x2b\x02\xbb\xce\x9d\xe1\xa1\xac\x35\x21\x8b\ +\x47\x06\x3c\x80\x68\x3c\x02\x77\x36\x6f\x85\x09\x44\xeb\xe3\x38\ +\x7f\xa2\x76\xb6\x94\xf9\x86\x0c\xd9\x66\x72\xc4\x88\x9e\xdc\x39\ +\x55\x5d\xd5\x28\x5a\xed\x70\x68\x9c\x36\xe2\x4d\xd5\x5c\x53\xcb\ +\x08\xb5\x8b\xc2\x4b\xfd\xad\xe8\x8c\xa2\xd2\x82\xb4\xfb\x53\x0b\ +\x4f\x98\x3d\xa7\x31\x69\x32\xe6\x13\x9c\x91\x2e\x90\x5f\xdf\x20\ +\x8e\xe2\x60\x77\x9a\xcb\xd9\x36\xc5\x88\x7d\x18\x9a\xfd\xe9\x71\ +\x50\x2a\x27\x58\x7d\x26\x3f\x53\x12\x79\x12\xe7\x3d\xdb\xc7\xb9\ +\x6c\xf4\x47\xc3\x75\xa9\x1b\xd7\x7c\x47\x82\x16\x94\x8e\x2b\x84\ +\xf3\xed\x46\x7f\xc5\x39\x3c\x8b\x7a\x5b\xce\x9e\x16\xc4\x35\xc9\ +\x17\x06\x13\x50\x49\xa9\xab\xc8\x6a\xd7\x57\x74\xd3\x99\x4c\x67\ +\x1c\x5a\x6c\x93\x19\x19\xb9\x57\x1a\xa3\xfb\x36\xe5\xa6\xf5\x89\ +\x3b\x2d\xd8\x6f\xb3\xda\x51\xa9\x99\xfb\xd9\x12\xb4\xba\x9e\xf2\ +\xe2\x30\x19\x1c\x59\x4f\xe1\xeb\xb2\xc1\xc4\x87\x90\xf9\x89\x66\ +\x79\xed\x58\xef\x36\xe5\xc6\x5b\xd7\xcb\xc7\x3f\xf0\x85\xf2\xf5\ +\xcf\xfe\x36\x5f\x23\xb4\x95\x3a\x3a\x15\xb0\x4c\xad\x0b\x16\x2c\ +\x58\xb0\xe0\xde\x40\xbe\x3b\x5e\xb0\x60\xc1\x82\xbb\x13\x79\x3d\ +\xeb\xf5\x5d\x04\x5f\x0a\x1f\xde\xb5\x7e\xf1\xdc\x47\xd6\x8c\xc1\ +\xe4\x18\xc8\x06\x5f\xfd\x78\xba\x2d\x5f\xf8\xb5\xbf\x5e\x3e\xfa\ +\xfb\x7f\x58\xfe\xbf\xff\xe3\x5f\x94\xef\x5f\xbf\x51\x56\x78\x53\ +\x0d\x0f\x68\x64\x56\xc7\xff\x50\x5b\xaf\xa1\x6b\xe8\x6a\xad\x5f\ +\x5d\x44\x15\x1b\x36\x57\xf5\x78\x53\x8d\x16\x5a\x6d\xab\xe0\xbd\ +\x40\x02\x7d\xd9\x26\xb2\xfe\xaf\x34\xf1\x34\x76\xe8\x7a\x0b\x93\ +\x6f\x64\x28\xf1\x0e\xc7\x5a\x49\x31\x39\x1c\x60\xdb\x28\xdc\x19\ +\xe3\xcf\xc2\xa2\x23\xc9\x98\x3f\x69\xc3\xea\x8a\x14\xd7\x38\xb3\ +\x32\x8d\x6a\xe0\x6e\xab\x47\xec\x89\xed\x8c\x94\x2d\x06\xe4\xb3\ +\x86\xc7\x86\x10\x91\xd3\x68\xb7\xec\xeb\xc4\x3e\xdf\x7e\xe4\x48\ +\xc8\x5e\xde\x09\xe4\xf6\x9b\x82\xcd\x08\x73\xf6\x73\x20\xb7\xd3\ +\x60\x98\xdb\x0e\xa4\x1f\xcf\xee\xb8\x9e\xdd\x1d\x3d\xd0\xbc\xfc\ +\x84\xcc\xa2\x8e\x31\xf0\x60\x15\x1c\xf0\x25\x2e\x5f\xab\x04\xdb\ +\x57\x2b\xfc\xad\x57\x3b\x07\x9b\x4a\x23\x98\x27\x08\x63\xa6\xe7\ +\xed\x5a\xdf\x97\x98\xe8\xfb\x33\x89\x17\x43\x63\xa3\x5e\x93\xc2\ +\xc7\x22\x26\x7d\xac\x33\x6a\xb0\xcd\x4b\xbe\x6c\xc0\xa4\x0c\xa3\ +\x21\xf4\x6c\xcc\x39\x93\x1d\xed\xf1\xbc\x8b\xa0\x54\x0b\x92\xa8\ +\x3c\x81\xb7\xa9\x80\x26\x25\xc5\x7a\x3e\xfb\x9b\x06\xbe\xab\x86\ +\xf7\xd1\xf8\x86\x9a\x38\xf0\xf0\x47\x21\xf2\x16\x3e\xb1\x9f\x9c\ +\x94\x57\x8f\x77\xe5\x07\x6f\x1c\x95\xcf\xfc\xc3\x7f\x55\x3e\xf0\ +\x53\x5f\x2b\xa7\x7c\x33\x6d\x5d\x36\xcd\xdc\xeb\x0d\x5c\x36\x3c\ +\x3f\xa4\x2a\xdf\x71\xe4\x5d\x5d\x30\x8f\x8b\x8e\x91\x9f\x3a\x97\ +\x31\xc6\xf9\x5d\x06\x26\xf6\xe4\xf9\xfc\x84\x2c\xbc\xae\x5d\x2c\ +\x95\xf8\xe5\x5b\xa7\x9b\xb2\x5d\x5f\x2f\x3f\xff\xe5\x3f\x28\x9f\ +\x78\xee\x1b\xe5\xe6\x9f\xbf\x26\xf3\x00\xbe\xa2\x5a\x3f\xa5\xc6\ +\x07\xa1\x2c\x1a\x23\xbf\x02\x55\x70\x2d\x05\xec\x9a\xc0\xd6\xad\ +\x5c\xe2\x90\x4b\x55\x2a\x9f\x5b\x73\xbf\x55\xf6\x98\x1e\xb4\x6b\ +\xa2\x16\x62\x82\x2f\xe2\x44\x50\x59\xad\x2a\x0b\xa9\x0b\x0d\xbe\ +\x00\xfb\x03\x04\x97\xdb\xbe\xad\x3c\xe3\xc3\xa7\xb9\xb3\x05\x1b\ +\xea\x5d\x68\x55\x07\x73\xb2\x60\x64\xab\xd0\x68\x70\xba\xb4\x04\ +\x6c\xc3\xf8\x18\x2b\xf1\xf2\xf8\x75\xbc\x49\xe0\x30\x4b\x20\xe8\ +\x22\x78\x66\xc5\x24\x51\x03\x78\xdc\xeb\xe3\x4c\x8b\x27\x61\x2d\ +\xba\x99\xda\xdc\x2d\xc2\x27\x42\x3d\x15\x4c\x90\x0a\x92\x1f\xb7\ +\x68\x4a\xe0\x32\x6a\xe5\x24\xe0\xda\x69\x0c\x97\x84\x83\x73\xa6\ +\x57\xe0\x8b\xf6\x23\xc5\x8d\x52\x70\xff\xdd\x21\x35\xc4\x11\x6f\ +\x84\x21\xef\xd0\x60\x43\x3e\x16\x7b\x11\x44\x34\x30\x17\xe5\xd7\ +\x74\x8f\x43\x5a\x01\x07\xc5\x76\xc0\x43\xac\xee\x54\x45\xa3\xcc\ +\x01\xa4\x3a\x28\x11\x02\xc1\x14\xb7\xd5\xb9\x26\xef\x87\xcf\x87\ +\x82\x66\x8e\xab\x0c\x47\x33\x32\x21\xc8\x0c\x2c\x89\x75\x86\x92\ +\x42\xbb\x30\xf5\xf7\x1c\x10\xb6\xc7\x66\xc0\x86\xa4\xf6\xbe\x9a\ +\xce\x25\xb6\x7e\xc2\x1f\x5c\xf0\x13\x6b\xba\x3f\xf6\x77\x4a\xf2\ +\x8a\xb2\x93\xfb\xf3\x4d\xb9\x7e\xe3\xed\xf2\x9e\x07\xdf\x57\xbe\ +\xf9\xf2\x1f\x96\x07\xae\x3e\xc0\x98\xf1\x2c\xb8\x60\xc1\x82\x05\ +\x0b\xee\x75\x2c\x6f\xa8\x2d\x58\xb0\xe0\xee\x46\x5e\x83\xde\xc5\ +\xeb\xd1\xbe\x9b\xd3\xae\xba\x75\xea\x69\xb1\xdf\xcf\x1b\x67\x59\ +\x9d\x6f\x76\x27\xe5\xeb\x7f\xf0\xf7\xcb\xbb\xbf\xf3\x37\xca\xff\ +\xf4\xc7\xdf\x2d\xd7\x77\x37\xcb\xee\xa6\x38\x78\xe7\x22\x2c\xb9\ +\x61\xc6\xa7\xd4\x56\x28\x62\x51\xab\xb9\xbd\x76\x19\x45\xe4\x7a\ +\x3b\x41\xcb\x4c\x77\xc5\x40\x9b\x71\x12\x01\x12\xdf\x58\x93\xda\ +\x73\x69\x3b\x9e\x8b\x1b\x16\xdc\x80\x68\xd1\x9b\xa1\x88\x10\x1b\ +\x18\x26\x72\x8b\x1a\x45\x19\x9e\x59\xe1\x3e\x72\xe1\xa2\x90\x60\ +\x37\x6a\x11\xd5\xf9\xa9\x36\x36\x55\xf4\x93\x78\x2d\x32\xcd\xe5\ +\xbe\xce\xa0\xcd\x07\x3c\x01\x96\x11\xbf\xdf\xb7\x8c\x1a\x33\xcf\ +\x51\x9f\xdd\x58\x76\x0d\xec\x8b\x6a\x01\xe6\xb8\x77\x44\x4a\x34\ +\x62\x79\xd3\x7d\x71\x64\xf9\x52\xd0\x37\x70\x8b\xf0\x74\x2c\xb2\ +\xaf\x71\xea\x5a\x39\x08\x3e\x46\xa8\xbd\x24\x1c\x96\xc7\x82\xac\ +\xf2\xc7\x10\x1e\x3b\xdb\x9f\xb9\xe4\x92\x47\x53\xe5\xce\xc8\xb9\ +\x22\x6a\x0d\x91\x79\x43\x14\xe8\x7e\x55\xb6\xa8\x96\x88\x31\xa1\ +\xe5\x26\x6d\x92\x44\xe7\x87\x88\x77\x74\x86\xac\xce\xc9\x19\xb0\ +\xf7\xbe\x76\xdf\x12\xc4\x3e\xe9\x56\x40\xfb\xb7\xb7\xa5\x91\xcb\ +\xcc\x74\xd5\x8d\x22\x74\x1c\x45\xb5\x53\x53\x93\x01\x42\xee\x15\ +\x64\xdd\x81\xa0\x04\xf4\xf1\xa9\x17\x3d\x68\x78\xc0\x03\x05\xd0\ +\xbf\x98\xb6\x47\x3d\x32\xc7\x8a\x24\x7e\x7d\xf8\x63\x3f\xa2\x6f\ +\xb7\x78\x20\x25\xbc\xed\x49\x79\xe3\x74\x5d\xfe\xfc\x2f\x6f\x94\ +\x0f\xfe\xc1\x3f\x28\x2f\xfc\xfa\xaf\x97\xa3\x93\x6d\xd9\x49\xde\ +\xb5\xcd\x5f\x88\x69\x31\xed\xd5\xc5\x81\xbd\x40\x3e\xee\xcd\x9d\ +\xc5\xdc\x6e\xbc\x03\x5d\xf9\x91\x03\xc6\xd6\xc7\x37\x8f\xf3\x68\ +\xcc\xe7\x8e\x83\x23\xfb\x79\x6c\xdc\xd0\x1f\x28\xd8\xfd\x7c\x72\ +\x39\x21\xe5\xc1\xa7\x2e\x4f\xcb\x95\xb2\x91\x7a\x75\xe5\x4a\xf9\ +\xd6\x4f\xff\x51\x79\xee\xe1\x0f\x97\x93\xbf\xf8\x61\x39\xde\xac\ +\xe5\x92\x3a\xe6\xa7\x0f\xea\x4b\xb8\x08\x36\x41\xe2\xfa\x62\x66\ +\x55\xed\x7a\xd3\x2d\x8a\x7e\x22\x21\xa1\xeb\x06\x50\x67\xd8\xea\ +\xcc\x51\xf0\xe3\xa7\xb5\x65\x68\x1c\x18\xb8\x8e\x15\x2e\xf8\x15\ +\xeb\x11\x39\xd2\x7a\x5f\xa9\xc1\x0e\x5b\x87\x3a\x6b\xa7\x38\x62\ +\x26\x60\x82\x96\xb7\x4f\x3b\x0c\x3a\x07\xaa\xd4\xa3\xfa\xf6\xc2\ +\x07\x6d\x44\xce\xc3\x25\xe8\xd4\x40\xf3\x9e\xee\x1e\x60\xfc\xec\ +\xd4\x69\x80\x70\xd8\x68\x1f\xe4\x52\x53\xe7\x80\x8a\x64\x03\x3e\ +\x30\x63\x1e\x63\x94\xda\xca\x59\x98\x70\x0e\x09\xea\xc1\x18\x0f\ +\xcc\x09\x92\x2c\x62\xf6\x54\x8c\xad\x63\x38\xb7\x3f\x02\x63\x1c\ +\xc6\x72\xf4\xfd\x50\x7d\xd2\xbb\x48\xba\xa7\xdf\xc1\xc9\x3d\xa8\ +\xf9\x26\xfd\xa2\x61\x62\x15\x88\x2d\x9b\x43\x76\x61\x1c\x93\xbd\ +\x0d\xc3\x0c\xd5\x6e\xde\xa6\xf2\x1e\xd6\x3c\x19\xfd\x3c\x5a\x39\ +\xd0\x4d\x0c\xab\xf8\x2d\x9d\xde\x8b\xe9\x6c\x09\xaf\x5f\x73\xac\ +\x6a\x12\x42\x55\xb9\xda\xc4\x49\x19\xf3\x30\x04\xe3\xb5\xab\x5a\ +\x18\x55\x37\xb7\xcd\xdb\x98\x1f\x7d\x2e\x47\x85\xda\x8a\x99\x34\ +\x2f\xf6\xe1\xb4\x6c\xa5\xac\x85\xbe\x92\x98\xd5\x6e\x5d\xb6\xc7\ +\x37\xcb\x23\xa7\xf7\x97\x9f\xff\xd2\xdf\x2e\xef\x79\xd7\xfb\xca\ +\x89\xdc\xe8\x1e\xad\xfc\x0f\x5c\x3d\x81\x23\xf7\x67\xc1\x82\x05\ +\x0b\x16\xdc\x8b\x58\xde\x50\x5b\xb0\x60\xc1\xbd\x85\xbb\x70\xfd\ +\xe9\x4b\x64\x74\xad\x2e\x97\xf3\xc2\xb9\x5f\x44\xf7\x7a\x8f\x81\ +\x3f\xf6\x1b\x2b\xf7\x35\xd7\xf3\xeb\x6b\x57\xcb\x4f\xff\x5f\xff\ +\x4d\x59\x7d\xec\x27\xcb\x1f\xff\xfb\xef\x97\xb7\xe5\x26\xe5\xe4\ +\xc6\x89\x2c\xdc\xf1\x5d\xed\x78\x60\xb4\x2e\x47\x6b\x99\xe6\xd7\ +\x72\x1b\xc1\xd9\x5e\x93\x78\x2a\xb6\x92\x9b\x12\x39\x9a\x09\xa1\ +\x11\x09\xfe\xff\xb3\xc6\x28\xb7\x15\x62\xe2\x03\x5b\xd6\x4c\x45\ +\x3b\x78\xa0\xb7\x37\x32\x02\xbb\xbb\x82\x95\xb7\x25\x16\x4b\x90\ +\x6f\x82\xc7\xf9\xfd\x8d\x73\x1c\x8d\x5e\xdb\xa0\xd9\x7c\x1e\xd6\ +\x50\x81\xce\xe0\x2a\xfa\xa3\xe8\xf2\x99\x5e\x79\x17\x44\x04\xd6\ +\xc7\x54\x6e\x6b\x73\xa2\x3d\xe5\x38\x42\x6e\x89\x02\xe1\xc6\x00\ +\x5e\x14\x1e\x8f\x76\x21\xf7\xf9\xea\xfe\xbb\xa7\x1e\xeb\x29\xbb\ +\x47\xf8\x21\x78\x39\x04\x23\x6e\x6f\x1b\x71\xf6\xc1\xf9\xb9\x00\ +\x5e\x67\xe8\x6e\x13\x23\xf7\x41\x48\x39\x80\xdc\xe4\x6d\x85\x5f\ +\xab\x52\xf5\xed\xa9\x2e\x4e\x08\xc2\xab\xfe\xb6\xb3\x7d\x5c\x46\ +\xf6\xd5\x87\xba\x8a\x71\x5c\xb2\x76\x7c\x62\x60\x0b\xd3\x88\xdf\ +\xa1\x69\xd3\x15\x8b\x6b\xfb\x37\xea\x9d\xdb\x46\x63\x01\x8b\xda\ +\x73\x9e\x71\x96\xb6\xa3\xd4\x33\x31\x64\xf0\x94\x3b\xca\x03\xd0\ +\x9b\x9c\xe8\x01\x2f\x73\x2b\xec\x51\xba\xee\x5d\xe2\xc3\x7d\xf9\ +\xc5\xfb\x6c\x7a\x91\xea\x04\xaa\x22\x7c\x22\xe3\x98\x9f\x9e\x94\ +\x37\x37\x47\xe5\xfb\x7f\x76\xa3\x3c\xf7\x9d\xdf\x2f\x9f\xfa\xdd\ +\xbf\x5d\x4e\x4f\x76\x7c\x48\xc4\xff\xf7\x11\xa9\xdb\x7d\xba\x3c\ +\x78\xde\x9c\x7f\xf2\x6a\x71\xb9\xf0\xe4\x75\xd8\x14\xb0\xc3\xd6\ +\x97\x05\xe7\x43\x3f\x66\xae\x67\xfb\x79\xc7\xb5\x3f\x21\x78\xac\ +\xba\x24\xb3\x27\xcd\xa0\x31\x3b\xd6\x2b\x59\x1b\x9d\x96\xfb\xca\ +\xe9\x7a\x5b\x1e\x7b\xf2\xe9\xf2\xeb\xdf\xfc\x57\xe5\x81\xeb\x8f\ +\x95\xdd\x6b\x6f\x97\xed\x06\x17\xd0\x09\xaf\x15\x5c\x3f\x7a\x1d\ +\xe3\xf5\x58\x24\x98\x98\xc8\x72\x5b\xdb\xa6\x11\xe0\xe9\x53\xd4\ +\xfa\x06\x8f\x9e\xd9\x92\x97\xf3\x32\x8a\xc5\x18\x4f\x8b\x80\x46\ +\x6e\x38\xdf\x20\x2e\xef\xae\x79\x82\x5e\x61\x24\xc6\x08\x52\x4c\ +\xb8\xc4\xc7\x30\xea\x35\x81\xb6\x03\x48\x7f\x3d\xae\xba\x67\x81\ +\xaf\xd0\xac\xb4\x41\x80\x98\xa6\xd6\xdc\xb1\x79\x20\xae\x65\x62\ +\x54\x39\xb2\x67\xc3\xda\x6d\xda\xce\x81\xe6\xd8\x97\x0b\x3e\xdd\ +\xbb\xda\xa6\xe7\x63\x3d\x13\xec\x1c\xb8\xf5\xf5\x02\x1b\x29\x62\ +\xa8\x21\xa2\xc3\x2c\x06\x52\x0e\x40\xe6\xf1\x18\x35\xf9\x3a\x7f\ +\x57\x03\x87\xb6\x33\x06\xa2\xfb\xd2\x8a\x87\x43\x02\x9a\x18\x57\ +\xce\x4a\x74\x40\x43\xa4\xe4\x51\x01\x70\xfc\x0e\x88\xdd\x87\x9c\ +\xb2\x4f\x7f\x08\xe4\x80\xd5\x30\xf4\x65\x4f\x12\xba\x12\x5f\xdf\ +\x8d\x39\x37\xda\x16\x5c\xdb\x93\x4b\x28\x6d\xcc\x18\xe0\x28\xaf\ +\xb2\x35\xab\xe5\xe6\xbe\xe6\x79\xcf\x40\xa1\xb6\xaf\x76\xe8\x22\ +\x05\x09\x7a\xe5\x00\xea\xca\x5b\x01\x29\x6e\x4b\x47\x17\x26\x23\ +\x05\x57\x40\x99\x17\xcd\x28\x37\xe0\x92\xd4\x36\xd9\xea\x1f\x21\ +\xe9\xed\x67\xb8\xf5\x3b\xb2\xf9\x07\x47\xf8\x63\x25\x4e\xe7\xf8\ +\xbe\xc7\xdd\xaa\x1c\xdf\x3c\x29\x47\x37\xae\x97\x6f\xbe\xfc\xb7\ +\xcb\x4f\x7c\xf8\xab\x65\x7b\xba\xd5\xff\x6b\x1e\xc1\x19\x6d\x3f\ +\x16\x2c\x58\xb0\x60\xc1\xbd\x89\xe5\x0d\xb5\x05\x0b\x16\xdc\x5b\ +\x18\xad\x4b\xef\x12\xdc\xf6\xae\x61\xfd\x6d\x65\xb5\xbe\xc2\x07\ +\xa3\x8f\x3c\xf6\x64\xf9\xfa\xff\xe3\xff\x55\xfe\x8f\x47\x9e\x2f\ +\xff\xf1\x2f\x5f\xe3\xb3\x9f\x93\x9b\xc7\xd2\x19\xb9\x11\xb0\x0e\ +\xf1\x01\x0a\xe2\x30\xe3\xa3\x36\xe8\xed\x8e\x3e\xa8\xa9\xae\x44\ +\x80\xcf\x24\x07\xef\x47\x08\x08\xcd\x6d\x8c\x41\x6f\x40\xf8\xfc\ +\x36\xf9\x3c\x37\xf9\x4d\x8e\x5a\x39\xda\x8c\x70\xea\x43\x2c\x3c\ +\xd2\x52\xa0\xe7\x9a\x07\xdc\xe0\x93\xaa\xed\x2b\x20\x55\x2d\x8b\ +\x40\x56\x3b\x97\x40\x2d\x53\x3b\xd0\x5a\x43\x13\x41\xe5\xb4\x07\ +\x61\x9b\xa2\xb1\xeb\xee\x28\x20\x98\xc2\x2a\xa5\x1b\xa3\x23\x20\ +\x17\x8a\x04\xb3\x98\xf9\x6c\x58\x9e\xc3\x03\x14\xe7\x6a\xa3\x83\ +\x07\x9e\xb9\x8f\x33\xb8\x68\xdc\xa1\x40\xff\xba\x9d\x1b\x98\x2a\ +\xf6\xf5\x67\xe0\x9b\xcd\x33\xc1\xf4\x5a\x04\x86\x7d\x71\xa3\x3e\ +\xc9\xab\x10\x5b\xcf\xc5\xf5\x8c\x6b\xc9\xed\x1e\xb2\xff\xe1\x53\ +\xf2\x51\x1c\xf7\x0d\x88\xbc\x56\x37\x30\x23\xab\x7d\xcd\x75\xa8\ +\x7d\x14\xd8\x84\xd4\xe4\xd8\x93\x0b\x3c\x2f\x40\xae\xf5\x5a\x91\ +\x4d\xca\xef\xfe\x0a\x38\x65\x7f\xdd\x31\x25\x90\x82\xf1\x63\xbc\ +\x6c\x10\xa1\xe3\x69\xf3\x16\x60\x71\xfa\x95\x45\xa2\xc8\x4e\x39\ +\x9f\xb0\x38\x80\x35\xed\xe0\xe1\x57\xe7\xb8\x66\x1c\x00\x4c\xba\ +\xf2\x9a\x80\xe7\x3d\x7c\x21\x90\x19\x13\x5f\xe7\xa8\x39\x6d\xfe\ +\xa4\x7f\x57\xb6\xb0\x9d\x9c\x94\xeb\x27\xeb\xf2\xdd\x3f\x79\xa3\ +\x3c\xfe\xf5\x5f\x2d\x5f\xf8\x87\xff\xb8\x5c\x29\x47\xc2\xdf\xf1\ +\x21\x90\xbe\x26\x68\x23\xba\x8d\x96\x6e\x13\x72\x7e\xdf\xfb\x8c\ +\x4b\x68\xbf\x4f\x0b\xdd\xcb\x82\xcb\x85\x8f\xe9\x6d\x19\x5f\x4f\ +\x98\xce\x89\x10\xf3\x79\xd2\x9d\x33\xfe\x6e\x52\x63\xc6\xd5\x79\ +\x24\xd7\xc7\x71\x79\xf6\xd9\x8f\x97\xbf\xf1\xad\x7f\x53\x8e\x5e\ +\xb9\x5e\xca\x0f\xe5\x9a\x39\xc2\xa5\x74\x13\x97\x92\x70\xb8\xb1\ +\x58\xd9\xc4\xc5\xea\xe9\xb0\xd5\x32\x9d\x11\xeb\x00\xf4\x1e\x82\ +\x46\x8f\x97\xad\xd1\xf9\xbf\x0e\x55\x94\x0c\x66\xac\xb4\x10\xeb\ +\xba\xac\xf2\x15\xde\xe1\xdc\x3e\x7a\xe7\x91\x82\xea\xca\x22\xe1\ +\xf3\x16\xa0\x5b\xcf\x25\x45\x0d\x81\xe8\x43\x67\x0f\xcc\xd9\x89\ +\xea\x1c\xd3\xbc\xbf\xee\xc5\x1c\x3c\x97\x50\xf7\x8e\xe8\x28\x7d\ +\x16\x22\xc8\x15\x93\xd4\x62\x70\x53\xa6\x7b\xbe\x8c\xca\xac\xd0\ +\xf3\xa1\xf3\x98\x82\x6a\x9c\x67\x1e\xed\xbc\x7c\x1e\x20\x52\xa3\ +\x23\x56\x84\x78\x93\xd5\x05\xb3\xa9\x5e\x63\x08\x98\xac\x56\xd2\ +\x08\x74\xaa\x38\x81\xd8\xe7\x5c\x44\x72\x9a\xd8\x8f\x4d\x45\x4e\ +\x34\x9f\x14\x9e\x79\xaf\xa3\xb6\x32\xe2\xe2\x9c\x50\x46\x3a\xbf\ +\xf6\x64\x75\x6e\x46\xb0\x5b\x73\xc2\x0c\x5f\x90\x5b\x05\xb2\xd6\ +\xc8\x73\xb9\xc5\xde\xba\x64\x3e\x9b\x25\x57\x80\x91\x59\x93\x3d\ +\x16\x27\xae\x7d\xf4\xaf\xcf\x96\x63\x59\x23\x98\x5c\xcf\x62\x75\ +\x22\x45\x16\xe9\x1b\xaf\x43\xc6\xac\x83\x12\x6e\x6c\xc4\xa7\xaa\ +\xcf\x69\x80\x4a\xae\xf5\x50\x3b\xfe\x58\xc8\x1e\x81\x8a\x81\xb6\ +\x26\x48\x04\xae\xa1\x4c\x96\xc2\xad\x8d\x97\xca\xd2\xaa\x94\x35\ +\x04\x18\x8e\x77\x65\x73\xe3\xa4\x7c\xe9\x63\xbf\x5d\xbe\xfc\xd2\ +\xb7\xcb\x91\x38\x57\x05\xff\xcc\x1c\x0b\x32\xc0\x77\x06\xe0\x4e\ +\xa9\xb8\x60\xc1\x82\x05\x0b\xee\x69\x2c\x6f\xa8\x2d\x58\xb0\xe0\ +\xee\xc1\x8f\xd4\xfa\xd2\x17\xce\xd8\xa9\xbc\x88\xbe\x55\x48\x0e\ +\x8e\x93\x2c\xd6\xf1\xa6\xda\xc9\x49\x79\xff\xc7\x3e\x5a\x7e\xe1\ +\xbf\xfb\xef\xca\x9f\xbc\xf6\x70\xf9\xd3\x57\x5e\x2f\x27\xab\x2b\ +\xfc\x9f\x38\x65\xb5\x95\x1b\x12\x2c\xea\x65\xaa\x97\x1b\x5f\x4c\ +\xf8\xb9\x37\x80\x3f\x34\xcd\x43\x0f\x7f\x3c\x1c\xc9\x3e\x17\x50\ +\xcb\x9d\x8e\xaa\xb8\xd1\xd0\x8c\x91\x57\x1c\xf0\xed\x76\x2b\x7d\ +\xb8\x4b\xa2\x19\xa5\xf0\xe6\xdc\x9e\x58\x20\x1a\xff\xb3\xa4\x69\ +\x47\x80\xf6\x9d\x03\x16\xbe\xc2\x12\x88\x74\xdc\x46\x8b\xd1\x5f\ +\xde\xef\x98\x19\x22\xcd\xe6\x03\x1a\xbd\x86\x07\x7c\x5f\x00\xbd\ +\x85\x6a\xe1\x96\xa9\xe7\x6c\x1b\xe4\xac\xd7\x31\x16\x4c\x82\x07\ +\xe3\xee\x68\x02\x33\xd0\xf7\xce\x97\xc6\xe2\x3c\xd0\x71\xd0\x60\ +\xc4\xe6\x72\x6e\xd4\x21\x55\x78\xea\x6c\x47\xe2\x9e\xe7\xe8\xb9\ +\x40\xb6\xb9\xdc\x73\xf6\x21\xc7\xf4\xe5\x40\x9c\x6b\x2c\xe6\xc8\ +\xd2\xde\x79\xc7\x75\xd4\xc5\xb9\xf8\x38\x9f\x07\x41\xad\x09\x9a\ +\xf6\xc4\x73\xe5\x7e\x8d\xf2\x1f\x6a\x6b\x51\x5b\xcd\xdc\x7d\x71\ +\x67\xe7\x54\x38\x2f\xf8\xd6\x54\x1b\xaf\x1a\xb6\xfe\x98\xa3\x5a\ +\x46\xf0\xf9\x4d\x8a\xcf\x47\x46\xe5\xdc\xa5\xa2\xc2\x95\xf0\x1b\ +\xec\x21\xcc\x14\x6a\x4f\x8f\x2a\x89\x4c\x77\x46\x05\xfa\xd1\x12\ +\x38\x1d\x34\x36\x95\xf1\xc6\x19\xff\x3f\x9a\xfc\x6c\xc5\x06\x33\ +\x1e\x08\x71\xbf\xb7\x37\xcb\x8d\xd5\xa6\x7c\xef\xcf\x7f\x50\x1e\ +\xfc\xe8\x17\xca\xcb\xff\xe4\x9f\x95\xfb\x1f\x78\xb0\x6c\x77\xf2\ +\xba\xb1\xe1\x0c\x2d\x89\x51\x98\x4a\x90\xf2\x5f\x2a\x3c\x6f\xce\ +\xdf\xbe\x16\x28\x6e\x43\xfb\x79\x58\x1d\xb0\x8d\xec\xb7\x6b\xf7\ +\x7f\x14\x91\xc7\xcf\x65\x8c\xdf\xdc\xd8\x1e\x82\x43\xc6\xdf\x73\ +\xef\x6b\xc3\xf3\x74\x1c\x5c\xc9\x6b\xbc\xa9\x76\x7a\x5c\x3e\xfa\ +\xb1\xcf\x97\xdf\xfc\xc6\xbf\x28\xbb\x3f\xfd\x61\x39\x7e\x7b\x5b\ +\xca\x55\xd0\xa5\x96\xeb\x09\x6f\x36\x93\x2f\x79\x90\x42\x9f\xb9\ +\x62\x23\xd7\x95\x18\x72\x37\xfd\xba\xac\x3f\x86\xd4\x36\x6d\x16\ +\x87\x79\x86\xae\x86\xa8\x8a\xf3\x9a\x60\xf2\x4d\xc7\x27\x24\x04\ +\xf1\x26\x93\xe7\xc8\x6f\x78\xb8\x18\x3e\x6c\xa0\xa4\x18\xe7\x48\ +\x1d\x6e\xc0\xed\x01\xdd\x1f\x2f\x2d\x3a\x72\x10\xb2\x1d\x0d\xa8\ +\xa3\xcf\xe1\x72\x6f\x07\x30\xee\xfb\x91\x08\x26\xce\x86\xc0\x21\ +\xe3\x35\xd9\x35\x41\x6f\x1b\xb1\x98\x17\xfb\x90\xc7\x38\x90\x57\ +\x92\xfb\x20\xac\xc3\x88\x82\x8e\x08\x15\xe1\xd9\x4c\xc5\x4b\x0f\ +\xb7\xd5\x11\x69\x98\x93\x10\xdd\x6b\x9a\x65\x83\x53\x2b\x5e\x12\ +\xb8\x39\x04\x07\x13\x67\x31\xcc\x30\x31\xba\x01\xb5\xee\x5f\x4b\ +\xc9\xfe\x33\x00\xca\x01\x34\xe0\x6c\x9a\x30\xa4\x3b\xec\x51\x1d\ +\x76\x81\x47\x36\x46\xc3\xc0\x96\xee\x85\x6e\x05\x9a\xa5\xcf\x91\ +\xe6\xa6\x0c\x31\x4e\xec\x9d\x21\xd4\xb8\x27\x41\x2d\xa5\xe9\x6f\ +\xb0\x0c\xf0\x9b\x38\xf4\x03\x66\x33\xaa\x6a\x9e\xd3\x10\x61\x21\ +\x88\x68\x72\x47\x05\x68\xc2\x9b\x68\x42\x21\x6b\xc2\xc1\x1c\x2a\ +\x85\x9f\x48\x96\x5f\xf8\x91\x4f\x7e\x39\xbd\x62\xee\xc7\x1f\x28\ +\x91\x05\x19\x3e\xfd\x83\xa5\xd3\xad\xac\x59\xde\x7e\xbd\x7c\xee\ +\xf9\x5f\x28\x3f\xf7\x95\xdf\x2b\x9b\xcd\x86\xd9\xfc\x2b\xb3\x5b\ +\x30\xb1\x8a\x0b\x16\x2c\x58\xb0\xe0\x9e\xc7\xf2\x86\xda\x82\x05\ +\x0b\xee\x2d\x0c\x16\xca\x3f\x76\xf0\x31\xc0\xc2\xff\xe8\x48\xd6\ +\xf4\xdb\xf2\x91\x97\xbf\x52\x7e\xf6\xbf\xff\x1f\xca\xff\xf2\xea\ +\xd5\xf2\xfd\xd7\x5f\x91\x9b\x81\x55\xd9\x9e\x6c\x75\xdd\x2e\x7c\ +\xfe\xbf\x10\x29\x7a\xf3\xad\x8f\x77\xf0\xd8\xd2\xee\x17\xb8\xd1\ +\x7b\x11\x37\x18\xc8\xc7\x46\x4b\xeb\x92\x1f\x18\xb2\x11\x60\x0c\ +\xa0\x0e\xdc\x58\xe0\x7f\xab\xd9\x6f\x85\x74\xc8\xdb\x6c\x6e\xe9\ +\x1a\x91\xbd\x34\x4d\xa2\x25\x00\x31\xf1\x20\x0b\x3b\x95\xf8\x5d\ +\x0b\x01\x50\xe2\x1e\xcf\x61\x71\x5a\x65\xa5\xdd\x4f\x97\xc3\x96\ +\x12\x4d\x7c\x90\xd0\x47\xd3\xc6\x98\xf6\x51\xdf\x54\x6c\x31\xde\ +\x93\x11\x9a\xd6\x2b\x0e\x4f\x20\x00\x59\xfb\xed\x39\xaa\xdc\x64\ +\x55\x80\x9e\xcb\x45\xe1\xb1\x39\x47\xce\x9b\xed\x87\xe0\xbc\xfc\ +\xb3\x70\x46\x3f\xfc\xf4\xe3\x29\x31\xc3\x09\xf4\xc3\xd8\xf1\x07\ +\xa3\x7c\x2e\x4c\x8e\x95\xe5\x8f\xb3\x91\x7d\xd5\x37\x54\xfa\x33\ +\xd4\xbb\x02\x6b\xbe\xe2\xc6\x68\xbd\x3d\xb7\xf7\xce\xe6\xda\x3b\ +\x5e\x6d\xdc\x5c\x1b\xa8\x47\xf9\x7b\x7b\xcb\x19\x45\x08\x7c\xbc\ +\xc4\xdd\x33\x26\xf1\x73\x7d\x77\xa2\xd5\xa8\x74\xbc\xdd\xd4\x05\ +\xf2\xc4\x51\x4f\xb4\x2b\x26\xd4\x88\x33\x97\x00\x3c\xe5\x32\x03\ +\x1e\xee\xf0\xaf\x15\xc8\xe2\x16\x85\x39\xc4\xc7\x37\xd3\xfc\xc1\ +\x10\xb8\x22\xec\xb6\x5b\x7e\x32\x0d\x5f\xe9\x78\x72\xf5\xbe\xf2\ +\xbd\xbf\x7c\xbd\x6c\x3e\xf8\x99\xf2\xe5\xff\xe6\xbf\x29\x8f\x3c\ +\xf5\x74\xd9\xde\x3c\x29\xeb\xf5\x9a\xaf\x15\xf3\x3b\x78\x06\xe2\ +\x81\xee\x79\x10\x3b\x49\xb4\x1a\x90\x2d\x53\xef\xb9\xe0\xe1\x73\ +\x69\xdc\xee\xbb\x70\xc1\x61\x58\x90\x70\x8b\x87\xac\x85\x24\xd3\ +\x93\xdc\xf4\xf3\x02\xb1\x26\x02\x90\x4d\xc7\x95\xb5\x5e\x6d\xe4\ +\x1a\xb9\x5e\x5e\xfa\xec\xb7\xcb\xb7\xbf\xfc\x77\xcb\xcd\xff\xfd\ +\xcf\xca\xf6\x86\x5c\x3b\x57\xc4\xcf\x6b\x4e\x57\x24\x3c\x2d\xd0\ +\x07\x2c\x80\xf4\x57\xdf\x5b\xb1\x8b\x58\xaf\x38\x58\x0d\x49\x6c\ +\x4e\xaa\x38\xcf\x20\x44\xe6\x86\xbf\x62\x62\xbf\xd2\x1d\x4d\x42\ +\x01\xe2\xb4\x55\xc2\xf3\x12\x50\xc4\x9e\x5c\xba\xc2\xb1\xb7\x89\ +\x7c\x2c\x45\x89\xf6\x05\xca\x68\xb1\x57\xef\x9d\x33\x98\xd0\xc2\ +\xa0\x42\xef\x77\xab\xf6\xcd\xfa\x1a\x75\xc2\xc0\x04\x5b\x93\xcf\ +\x94\x11\x15\xd0\xe7\xdf\xe3\xd7\x1e\x6f\xbf\xe6\x53\x49\xc7\xb2\ +\x62\x94\x9b\x51\x9a\x9c\x80\x44\xcd\x4c\xc8\xc4\x6c\x26\x50\x1e\ +\x62\xde\x13\xae\xa0\x40\x98\x18\xef\x00\xda\xb6\x1a\xcd\xba\x74\ +\x48\x6f\xf2\x11\x9f\xe3\xeb\xf0\x9d\x9d\x0d\x47\xd4\x86\x5a\x31\ +\x0c\x51\x63\xe5\x39\xc9\xea\x70\xe4\x60\x37\x26\x5b\x76\x77\x18\ +\xa6\xe8\x61\x24\x9d\x4a\x72\xbf\x67\x82\x9c\xaf\xd5\x04\x23\x7b\ +\x63\xa3\x92\x2c\xd9\x39\x30\xf7\x53\x2f\x54\x37\xd5\x6b\x41\x6a\ +\x21\x76\xd4\x4a\x14\xc1\xa6\xca\x09\x38\x87\x72\x5f\x51\x8c\x94\ +\xae\x9d\x1e\x95\x99\xc6\x47\xe8\x49\x13\x20\x4f\xb5\x68\x3f\xbd\ +\x7f\xf8\x3f\x99\xf6\x49\x7e\xd0\x50\x68\x77\xaf\x89\xdc\x1f\x79\ +\x2d\xc0\xba\x0b\xaf\x03\x36\x21\xaf\x45\x3e\x7e\xfb\x87\xe5\x85\ +\x77\x7d\xbe\x7c\xeb\xa7\x7e\xaf\x3c\xfc\xc0\x7d\xe2\x66\x00\x7f\ +\xd6\x5d\x4f\x3c\x6f\xdf\xc3\x05\x0b\x16\x2c\x58\x70\x6f\x62\x79\ +\x43\x6d\xc1\x82\x05\x77\x0f\x7e\xc4\xd6\x97\xba\x5c\xc7\x4e\xf9\ +\x02\xda\xeb\x4b\x82\xa4\xc6\xcd\xc7\x6a\xbd\x29\xbb\xed\x49\xf9\ +\xf8\x37\x7f\xb1\x7c\xed\xff\xfe\x6f\xca\x1f\xff\xe9\xa6\xfc\xf9\ +\x0f\xde\x94\x45\xbd\xd8\x4f\x4e\xf4\x66\x01\x74\xf0\x65\x83\xfb\ +\x0a\x7d\xff\x46\xfb\x86\x2d\x55\xc0\xba\xe8\x3d\x0d\x7b\x40\x6f\ +\x73\xeb\x9e\xd4\xbf\xdd\xed\xf7\x0e\xba\xdf\x9c\x9c\xe2\xcf\xb7\ +\xdd\x86\x82\x8d\xc3\x65\xbe\x3b\xe1\xb7\x3a\xd5\x4c\x9b\x05\xd4\ +\xd6\xc0\x45\xad\xa3\xec\x5c\x7a\x23\x70\x1e\x1a\x95\xa8\x6c\x77\ +\x1a\x48\x8b\x9b\xa7\xee\x21\x46\xb4\x66\x7f\x05\xed\x18\xb6\x80\ +\xbd\xf1\xf9\x2e\xbb\x80\x71\x42\xc5\x6d\x85\xea\xf0\x25\x4f\x4f\ +\x1a\x02\xe3\xab\x35\x11\xed\x0d\xe0\xf9\x0e\xca\x2b\xe8\xba\x73\ +\x26\x72\xdb\x88\x43\x81\x2d\xd9\xcf\x93\xee\x4e\xe2\x32\xfa\xe5\ +\xbb\xec\x65\x84\xde\xae\xba\x6c\x6d\x8c\xf2\x79\xec\xc3\x06\x8b\ +\x5b\xd5\x56\xaf\x33\x27\xe9\xb5\xa5\xf6\xd1\xd9\x39\xb5\xcc\x60\ +\xe6\xe1\x47\x63\xf5\x8e\x25\xc0\x1f\x1c\xfa\xa7\xa4\xb3\xfa\x70\ +\x96\xbf\xcf\x59\xf9\x83\x0e\x11\xd5\xde\xe4\xa6\xa2\xbe\x98\xe3\ +\x58\xd2\xb8\xf2\x3a\xb5\x62\xa4\xe6\x3a\x33\xe0\x53\x25\x38\x66\ +\x64\xd2\x6f\xb0\x07\x36\xf0\xf1\x98\xa6\x49\xa4\xa5\xe9\xfc\xae\ +\x6f\x95\xe2\xc1\x90\x14\xfb\x34\x0d\x3f\xa1\xb6\x93\x68\x14\xf1\ +\xae\x57\xdb\x72\x7c\xb4\x29\xdf\xff\x8b\xd7\xcb\xeb\x0f\x7d\xb0\ +\x7c\xfe\x9f\xff\xdf\xca\x13\x1f\xf9\x64\xd9\xdd\x3c\x2e\xab\x2b\ +\xf8\x03\x09\xf4\x42\x6e\x0d\xda\x2e\x9e\x03\xda\xb3\xda\xbf\xc3\ +\x13\x69\x4c\xcf\xf7\x4c\xd9\x5e\xb3\x5f\x08\x87\x86\xe7\x26\x2f\ +\x3c\x1e\x0b\x38\x76\x28\x18\xf7\x83\x0f\x9d\x13\x73\x9d\x82\x47\ +\xc7\x03\x6e\x6f\x67\x0e\x1e\xe7\x9c\x26\x0f\xae\x91\x75\xd9\xac\ +\xf0\x49\xb5\x1b\xe5\x6b\x5f\xfb\xbd\xf2\xed\x97\x7f\xaf\xfc\xf0\ +\xdf\xfd\x79\xd9\x6e\xe5\x3a\x3a\x12\xef\xe9\xb6\x14\x91\x71\xad\ +\xf9\x83\x56\xd4\x7e\xdd\x36\x4d\x4b\x6e\xbd\xea\xbc\x08\xbc\x3d\ +\xa9\x6b\xd3\x2a\x29\x57\x50\x1d\x82\x76\x26\x46\xcb\x55\x17\xd9\ +\x14\x56\xc8\xc9\xd8\x34\x07\xa5\xda\xd1\xeb\xd1\x1c\xae\xfd\x34\ +\xc7\x34\xdd\x30\xc0\xab\xf6\xe4\x75\x71\x36\xb1\xc1\xfd\x66\xaf\ +\xdf\x40\xd0\xa2\xa3\x89\xae\x16\xea\xe3\x90\x40\xdf\x85\xf3\x80\ +\xb1\xc8\x2f\x42\xff\xfa\xa7\x5a\xb5\x45\x37\xc4\xd4\x32\x1d\x78\ +\xbc\x92\xd7\xd6\xc6\x12\x25\x62\x1d\x67\x8c\xc3\x85\xd0\xa4\xec\ +\xf3\x8f\xdb\xab\x18\xfb\xf7\x47\xcd\xc7\xe8\x7e\x88\x44\x4a\x5d\ +\xc1\x1f\x8a\xc3\xf8\x69\xb4\x64\x3c\x6b\xbb\x15\xfb\x5a\x3e\xb4\ +\x4f\xf1\xfa\x6c\x01\xf3\xc7\xc8\x3d\xf9\x7a\x75\x74\x49\x88\x6c\ +\xeb\xfd\x39\xc7\x5c\xc3\x62\xc8\xeb\x03\x17\xad\xce\x2a\x65\xd9\ +\xa8\xcd\x3c\xa1\x8f\x60\x0b\x91\x7d\xb0\xb9\x03\x39\xf2\xbd\x0d\ +\xc7\x6b\x3e\xb1\xc6\xa1\x4a\x31\x44\x1f\x23\xbc\xde\xc4\x48\xc6\ +\x8f\x1a\x01\xdf\x8e\x38\xba\x46\xbd\x63\xd1\x90\xf7\x0d\xfd\x57\ +\x16\xc7\xcf\x5d\xe4\xe8\x2a\x0b\x6f\x94\xf1\x9e\x9b\x89\xb6\xfc\ +\x64\xda\xcd\xd7\x5f\x29\x1f\x7a\xf0\xa3\xe5\x57\x7f\xfe\x1f\x95\ +\xc7\x1e\x7d\xaa\x6c\x85\xaf\x7f\x94\xa4\x68\xda\x24\xe0\x4c\x84\ +\x09\xa6\x11\x0b\x16\x2c\x58\xb0\xe0\xee\xc5\xf2\x86\xda\x82\x05\ +\x0b\xee\x5e\x9c\xb5\xae\xdc\xb7\x26\xbd\x2b\xe0\x1d\x3c\x6b\x01\ +\x7d\x8b\xd8\x9d\x96\xf5\x66\x2d\x8b\xfb\xe3\xf2\xd2\x5f\xfd\xeb\ +\xe5\xa5\xff\xfa\xdf\x94\xff\xe9\x3f\xec\xca\x0f\xae\xbf\x55\xf8\ +\xb5\x8b\xdb\x6d\x59\x09\x07\x77\x09\xb9\x17\xb8\x41\xd0\xdf\xe9\ +\x40\x67\x5e\x96\x33\x93\x37\x1d\x19\xd0\xad\xa0\xd2\x38\xd9\x92\ +\x87\xbf\xec\x63\x15\x7a\xd3\xae\x89\x71\x7b\x23\x3a\x6e\x5a\x58\ +\x68\xc0\x0d\x91\x19\x0c\xf8\xd4\x1b\x3f\xf9\x06\xc0\x5c\x5d\xd3\ +\xbe\x01\x66\x73\x17\x6b\x57\x98\x37\xef\x69\x96\x2b\x0d\xc8\x32\ +\x90\xdb\x1a\xf1\x26\xfc\xde\x02\xd5\x4c\xd9\xc3\xbc\x5e\xd0\x9d\ +\x66\x57\xd5\xa0\x37\x8a\x36\x36\x23\xb4\xbb\x31\x84\x46\xce\x66\ +\x10\x74\x49\x0e\xc8\x79\x6e\xcc\x37\x3e\xf4\xc1\xd4\x17\x22\x84\ +\x4b\xc6\x5c\x5e\xd8\xd3\x78\x78\x5f\x2e\xab\x1b\x7d\x9e\xd9\xbc\ +\xd6\x07\xb9\x95\x67\xcd\xa3\x69\xe4\xf6\xc1\xa5\x2f\xfb\x6a\xa6\ +\x3e\xa7\x3f\x78\x82\x9d\xcf\x49\xa8\x65\xe4\x7c\xc0\xf4\xdc\x99\ +\xc6\x8c\xd1\xf2\x54\xcb\xd9\xb2\xbf\xe1\xe6\x2e\xf0\xda\xcd\x45\ +\x60\xfe\x1c\x43\x2f\xf7\x47\xae\x17\x89\x71\x9f\x46\x8d\xf7\xc1\ +\x8b\xc3\xe5\xde\xde\xc0\x2e\x5c\xcf\x58\x63\xd4\xa2\xc5\x77\xc0\ +\x2c\x4e\x02\x9c\xe4\x15\x75\xdf\x21\x5c\xeb\xa8\x51\x24\x9f\x4c\ +\x98\x78\xb3\x8c\x93\x2b\x7e\xf1\x46\x1a\xfd\xda\x1a\x1e\xfc\xe3\ +\xcd\x35\xb8\xf1\x87\x15\x37\x25\xfe\xb5\xef\xbf\x59\x6e\x5e\x7d\ +\x77\xf9\xfa\x7f\xfb\xff\x2c\xef\xfd\xec\xcb\x65\x77\x53\x5e\x1f\ +\x36\xfa\x95\xc0\x93\x43\x1b\x98\x75\xb4\x40\x1f\xd8\xb6\x76\xf1\ +\x7c\xb0\x7d\xdb\x1b\x89\x7e\x1c\xd8\x97\x8b\xe0\x36\xa6\xfe\xb1\ +\xc7\xde\xb1\xf5\x63\x9e\xcf\x9c\x7d\xe7\xc1\x00\x87\x1e\xbb\x39\ +\x1e\x9b\xc3\xb9\xbb\x29\xab\xd5\xa6\x94\xcd\x71\xf9\xe6\xcf\xfc\ +\xc3\xf2\x4b\x9f\xf8\xeb\xe5\xf5\x7f\xfb\x7f\x94\x35\xae\xb5\x23\ +\xf1\xef\xb0\x9e\x42\x1a\x09\x40\x2e\xb9\xae\x78\xad\xf1\xba\x97\ +\xf3\x3f\xcf\x47\xde\x16\x6b\xf5\x2b\xcc\x21\x26\x49\xa5\x1e\x31\ +\x59\x14\x11\xec\x10\x00\xcc\x5d\x68\x79\x6d\x4b\x21\xbd\xd6\x54\ +\x82\xdd\x34\xf3\x01\xde\x05\x22\xdc\x7a\xad\x61\x1e\xb4\x77\xe1\ +\x12\x4c\x47\xd5\xbb\x02\x3a\x83\x59\x3a\x81\xe6\xab\xd0\xc0\x69\ +\x78\xe2\xcd\xe4\x1e\x9b\x39\xc2\x26\x0f\x70\xa8\x2b\x2b\x5d\x43\ +\x54\xe9\x97\x3e\xb2\x4e\x64\x0e\xb6\x30\x4e\xf1\x79\x13\x91\xe5\ +\xb7\x86\x2b\x2f\xd8\xe1\x00\x33\xac\x82\xca\x03\x85\xb4\x9a\x24\ +\x00\x93\x73\xc6\x98\x09\xea\xed\x50\xe7\x93\x9c\x81\xf3\x04\x66\ +\xee\x28\x4e\x6c\xfc\x1d\xbf\xd1\x35\x07\x7f\x8d\x6c\xf9\xed\x88\ +\x4e\x5b\x73\x6f\x7d\x85\x75\x34\x91\x4d\x52\xf7\x34\xc6\x04\xd8\ +\x2d\x5b\x5c\xdb\x0a\xb5\x76\x2d\xcd\xa5\x99\x01\xa3\x25\xa6\x0d\ +\x73\x2d\xe7\x76\xb9\x32\xcf\xd9\xd4\x24\x40\xd5\x33\xb2\x70\xed\ +\x81\x31\xd2\x71\xe2\xc8\xce\x86\x78\x1f\x71\xee\x6b\x01\xbc\x1d\ +\x8d\xef\x81\xf3\x02\x56\xdd\x6a\xad\xdc\x9a\x0f\x50\x3f\xed\xea\ +\x54\x70\x4d\x04\x03\x66\x52\x75\x79\xab\xca\x47\x7f\x3d\x8f\x06\ +\x7a\x38\x33\x92\xe4\x35\xcd\x02\x5d\x47\xe9\x27\xcd\xb4\xa6\x84\ +\xd7\x00\xda\xc4\x7f\xb2\x2e\xc7\x6f\xbe\x59\xde\x7d\xe5\x03\xe5\ +\x3b\x3f\xf7\x47\xe5\x99\x77\x3f\x57\xb6\xa7\xf2\xda\xc0\xa6\xa6\ +\xe7\x9f\x02\xd6\x68\x64\xc1\x82\x05\x0b\x16\xfc\x08\x60\x79\x43\ +\x6d\xc1\x82\x05\x77\x2f\xfa\x15\xe9\x78\x85\xfa\xe3\x0d\xac\xcd\ +\xb9\x46\x97\x1b\xfd\xf5\x86\xff\x53\xed\x0b\xbf\xfd\xbb\xe5\xab\ +\xff\xed\xbf\x2e\xff\x9f\xff\xdf\x1b\xe5\x8d\xe3\xe3\x72\x8c\x7f\ +\x8c\x8c\xbf\xac\x16\x2e\x6e\x0b\xea\xed\x8b\xea\x80\xd7\x73\x43\ +\x3c\xb4\xcb\xcd\x25\xa2\x34\x72\x06\x08\x4c\xc1\x0d\x97\x8a\x38\ +\x79\xb3\xe3\xa4\x9a\xd3\x4b\x00\x37\x4e\x34\xb4\xde\x7c\xeb\xe2\ +\xfc\x78\x53\x40\x0c\xb4\xb9\xc3\x61\x37\x89\xee\xa8\x6e\xb4\xef\ +\x9a\xe5\xa8\xe9\xcd\x87\xe2\x7d\x39\x14\x4a\xce\x21\xf5\x66\x33\ +\x35\x30\x0b\xe7\x1e\x82\xb3\xf3\x21\x8f\x97\x73\xc1\x53\xe7\x26\ +\xf6\x25\x39\xa3\x81\xbd\x7d\x40\x1b\xdd\xae\xdc\x42\x53\x97\x0f\ +\xef\xdb\xa0\x61\xb8\xdc\x8c\xda\xcb\x45\xd0\xc7\xf7\xba\x76\x43\ +\xb6\x66\xe0\xd7\x87\x9a\xea\x1c\x40\x79\x72\x06\xab\x50\x21\xa4\ +\x9e\x3b\x7b\x4e\x5a\xde\x16\x9e\xd9\x91\x74\x33\x4e\x63\xe6\x90\ +\x99\x2a\x73\xeb\xdd\x49\xdd\x82\xdd\xd9\x39\x8a\x48\x06\xf2\x52\ +\x1c\x45\x31\x26\x53\x60\x92\xa7\xb7\x30\x99\x8a\x78\xb6\x16\xde\ +\x5e\x60\x25\x63\x2d\x93\x44\x9d\x6d\x61\xd9\xe9\xbc\xe1\x34\x76\ +\x4c\x4b\xcc\x55\x73\xa0\xdf\x19\x26\xf1\x1d\x35\x0d\xd4\x37\xce\ +\xf4\x0d\x34\x99\xed\xf1\x77\x16\x05\xdf\xf1\xc8\xbf\xaa\x2e\x27\ +\xe5\x78\xbb\x2d\xaf\xbd\xf6\x56\xf9\xee\x0f\xd6\xe5\x53\xff\xfc\ +\xdf\x94\xe7\x7e\xf2\xa7\x4a\xc1\x27\x98\x37\xe2\x5f\xe1\x76\x40\ +\xca\x68\x50\x0e\x85\x76\x88\xa2\x57\x87\x23\x66\x6c\x6e\x2b\xbc\ +\x43\xe7\x4e\xb8\xe0\x9d\x86\x1f\xb2\x83\x0e\x1d\x8e\xb3\x13\xf5\ +\x7a\x68\xd1\xd9\xe6\x72\xc2\xee\x54\xa7\xf7\x7a\x46\x9f\x47\x74\ +\xbd\xb2\x8e\xb4\x96\xa5\xd3\xb7\x7f\xfe\xbf\x28\x3f\xfb\x91\xef\ +\x94\x37\xff\xf8\xcf\xf5\xc1\xea\x55\xb9\xe6\xf0\xbf\x06\x71\xad\ +\xf1\x62\xc6\xb5\xab\x89\x74\xcb\xe7\xae\x2c\x6e\x71\x3b\xaf\x55\ +\x68\xc8\xa3\x92\x40\x99\x04\xfb\x28\x9b\xd4\x57\x5e\x19\x08\x31\ +\xbd\xd6\x7e\xcd\x18\xc4\x01\xdd\x66\x06\xc2\xba\xd5\xa2\x4d\x5f\ +\xf9\xfe\xa6\x91\xc1\x63\xd5\x62\xb3\x58\x1b\xd8\x22\xfb\x32\x1a\ +\x7b\x0d\x0a\xa9\xcb\xe3\xfd\x71\xf3\x4c\x38\x45\x2f\x8e\x66\x44\ +\x44\xac\xbe\x46\x99\x60\xea\xaa\xf3\x51\xdb\x46\xea\x1d\x04\x19\ +\x10\x0e\x5b\xb5\x9a\xd4\xa2\xf6\xab\xf2\x66\x61\xce\x9e\x93\xf6\ +\x4c\xb0\x37\x43\x0b\x04\x7a\x99\x45\xef\x3c\x47\xfe\x39\x58\x9b\ +\x67\x36\x7d\x87\x50\xfb\x30\xd8\xb7\x33\x77\x17\x04\xbd\x06\x88\ +\x33\xf9\xb5\xb5\x76\xdf\xf3\xd5\xe9\x23\xd3\x27\xd3\x08\xb4\xe6\ +\x9e\xd4\xf2\x19\x00\x4f\xb9\x7d\xc4\x24\x83\x19\xb2\x1d\x32\x5b\ +\xed\xc9\x31\x91\x54\x87\x9b\xb4\xb2\x6d\x75\x13\xb1\x77\x61\xef\ +\x08\xd8\x33\x31\xa9\x15\xdb\xbc\xa7\xe8\x89\xfe\x4c\xe3\x72\x0c\ +\x80\x2b\x4c\x5a\xd3\xa1\x13\xc8\xec\xc8\xb5\x95\xac\x69\x8c\xc2\ +\x0a\x1b\x2f\x31\xef\x1a\x41\x80\xb6\xb8\x6e\xa2\x22\x7e\xe9\x1c\ +\x54\xbe\xbd\x26\xaa\x7e\x1d\xa5\x94\xd3\xa3\xb2\xbd\xf1\x7a\x79\ +\xcf\xe6\x89\xf2\xeb\xdf\xfa\xe7\xe5\xf9\xf7\x7f\x5a\x96\x5a\xc7\ +\x65\x2d\xeb\xa8\xe8\x02\xd1\x6a\x0a\xb7\x79\x43\x3d\x46\x31\x0b\ +\x16\x2c\x58\xb0\xe0\x6e\xc5\xf2\x86\xda\x82\x05\x0b\xee\x5e\xcc\ +\xad\x37\x1d\x67\xf9\xdf\x11\xd4\x4e\xb5\x37\x41\x97\xdb\xd9\xc8\ +\x16\x6b\x6f\xb1\xe0\x1f\x2e\x6f\xc4\xb0\x3b\x29\x2f\xfd\xce\x1f\ +\x94\xcf\xfd\xab\x7f\x5d\xfe\xc7\xff\xed\xf5\xf2\xf6\xf5\x37\xe4\ +\x5e\x60\x25\x37\x0a\x5b\xbd\xe1\x11\x0a\x1e\x8c\xf0\x56\x01\xf1\ +\x08\x85\x39\xdf\x0d\x41\xb4\x12\x4d\x4c\x90\x3c\x29\x14\xb0\xb4\ +\xb1\xcd\xe0\x07\x2a\xfc\x41\x72\xb8\xfd\xc6\xa9\x22\x1e\x33\x99\ +\x59\x23\x6a\x1c\x24\x75\xfa\x4d\x8f\x48\x92\xd7\xbf\x42\x0d\x50\ +\x4e\x82\xe5\x52\x07\x78\x76\x94\x2c\x46\x65\xa5\xf9\x43\x32\x47\ +\xd5\x2c\x46\x90\x19\x13\x59\x36\x63\x7f\xed\x55\xf6\x2b\xe0\x33\ +\xbf\x54\xf0\x63\xa8\xd0\x95\xdc\x9d\x9a\xc1\x31\xb5\xcc\x61\xda\ +\xa6\xe0\xf0\xf0\x79\x8c\x72\x98\xad\x6d\x53\x8d\x8d\x2d\xc5\xc2\ +\xde\x94\x94\x83\x0f\xf4\x46\xc5\x40\xae\x15\x8e\x1b\x6c\x5d\x21\ +\x52\xcc\x41\x48\x79\xa3\x00\x5e\xcf\xa0\x6f\x8f\x7d\xc8\xf1\xb7\ +\x88\xc8\xef\x82\xff\x63\x07\x34\xe0\x6d\x56\x51\x21\x5c\x3f\xef\ +\x19\x06\x67\x08\x26\x0a\xa8\x89\xa2\x0f\x0c\x81\xee\xbc\x6f\x92\ +\x56\xe4\xeb\x38\x85\x12\xda\x6e\x66\x24\x4e\x02\x6c\x73\x9c\x9e\ +\xef\xd7\x85\xdb\x51\xe7\xe2\xa0\x2c\x1b\xb6\x6e\x4f\x86\x2b\x47\ +\x74\x15\x14\x59\x16\xa5\xf2\xa4\x96\x01\xc9\xbb\x1e\x3e\xd9\xa8\ +\x0c\xaf\x17\x05\xf7\x99\x27\x64\xde\x7f\xd1\x25\x57\x37\xcd\x68\ +\x12\x47\xc8\x7c\xa4\x23\x10\xbe\x4c\xa0\x9c\x0f\xa0\xa1\x96\x0d\ +\xe6\x76\xbe\x99\x46\x19\xe7\x80\xc8\xf8\x9f\x69\x22\xc2\x76\x2c\ +\x6d\xbd\x75\xe3\xb4\xbc\xf6\xc3\x55\xf9\xdc\x3f\xfd\xd7\xe5\x23\ +\xdf\xfc\x16\xff\x97\x1a\x92\x34\x0f\xc9\x53\x9f\x5b\x78\x83\x5e\ +\xb0\xe9\x01\x5b\x7d\x74\xcc\x7a\x2e\x5d\x83\x4a\x8a\xf9\x9d\x98\ +\x6b\x63\x64\x5f\x70\xd7\xa0\x3f\x44\xa3\xc3\x39\x39\x2f\xe0\x9c\ +\x3b\xf6\x9e\x30\xdb\xf6\xc0\x69\xa8\xfb\x76\xe6\xd2\x24\x9b\x3e\ +\x88\xc5\xb5\x74\x24\xf6\xd3\xb2\xb9\x76\x54\xbe\xf3\x8b\xff\xac\ +\x7c\xe9\x03\xdf\x2c\x37\xfe\xfd\x9f\xe3\xb3\x61\x65\x75\x55\x28\ +\xb8\x06\xe4\x9a\xe3\xac\xc8\xeb\x18\xd7\xb5\x5e\x53\x81\x90\xb3\ +\xb1\xd5\x70\xce\xaf\x6c\xde\x86\x5d\x8b\x76\xbc\xed\xbe\x78\x38\ +\xf7\xa0\x1d\x69\xc9\x9c\x3e\x3f\x37\x5c\x2a\xd8\x80\x59\xc1\x5d\ +\x43\x2d\x3f\x14\xc5\xa0\x26\x6c\x95\xaf\xa5\xa2\x89\xb7\x9a\x5c\ +\x0d\x0c\xa3\xab\xaa\xcb\x46\x7f\x03\xad\x3f\x21\x1c\x00\x47\x43\ +\xea\x76\x8e\x75\xbd\xb5\x65\x5d\x93\x36\x7b\x2b\x62\xbc\x62\x59\ +\xd5\xe7\x74\x07\xec\xd4\x48\xd0\x31\x56\x68\x04\xc6\x98\xa3\x2e\ +\xaa\xae\x2f\x0d\x21\xb4\x99\x01\x64\xf1\x7d\x51\x1a\x82\xc7\xcc\ +\x8a\xde\x5b\xf5\xcc\x1a\x65\x99\xc5\x5c\xfa\x49\x8a\x73\xe4\x34\ +\xb4\x11\x49\x33\xb1\xed\xb3\xe2\xd0\x56\xfc\x75\xa9\x6f\xa3\x7d\ +\xbd\xea\xe1\xce\x29\xa9\x9e\x51\x53\x9f\xe6\xc4\x46\x7a\xac\xbf\ +\x06\x3d\x82\xd9\x17\x30\xb5\x9e\x73\x39\x2f\x6c\x16\x63\x7e\x6e\ +\x9d\x9a\xec\x15\x59\xd7\xac\x7e\xa6\xe5\x6d\x8f\x36\xaa\x05\xf5\ +\x71\xd8\x14\x7b\x79\x3e\x0e\x80\xf7\x4d\x43\xf2\x5e\x53\x9e\xc9\ +\x53\x97\x0c\x1a\xaf\xaa\x1b\x73\x16\x41\x52\xab\x58\x13\xfb\x3c\ +\xa6\xd0\x6c\xba\x85\x03\xa3\xe6\x75\x45\x0d\xd1\xf5\x11\xa1\x41\ +\x98\xed\xf9\xa3\x10\x1f\xa6\x71\xeb\xb0\xff\xcf\xb4\x53\x2c\xa6\ +\xc4\xb1\xda\x9e\x96\xb7\xe4\x9e\xfa\xf1\xed\x95\xf2\x2b\xdf\xf8\ +\x07\xe5\xc5\x17\x5e\x96\x75\x16\xfe\x84\x09\x8f\x54\x11\xe3\x2d\ +\x35\x9d\x34\x78\x1b\x99\xb7\x60\xc1\x82\x05\x0b\xee\x65\x2c\x6f\ +\xa8\x2d\x58\xb0\x60\xc1\x6d\x41\x5e\x38\x5f\xfe\xe2\x79\x98\x0d\ +\x0f\x5b\xf0\xa6\x9a\xb4\x77\x7a\x72\x5c\xbe\xfc\x87\xff\xb0\x7c\ +\xf2\x1f\xff\xd3\xf2\x6f\xff\xdd\x8d\xf2\xda\x5b\xd7\xc5\x8a\xaf\ +\x09\xda\x4a\x91\x1b\x03\x49\x80\x1c\xe8\x99\xfe\x37\x10\x91\x98\ +\xb4\xde\x76\x3a\x7c\x4f\x26\x30\x07\x2a\x2f\x13\x24\x07\xee\x4f\ +\xea\x4d\x55\xe6\x27\x23\x00\x9e\x54\xda\x1d\x7c\xad\xa3\xda\x02\ +\x94\xdb\x87\x1a\xd9\x1d\xb0\x07\x1f\x7d\xe9\x51\xf7\x37\xef\x79\ +\x62\x76\x41\xa3\x1c\x07\xc3\x82\xeb\x38\xd4\x36\x69\x4a\xc9\x29\ +\xc2\x9d\x6c\x8e\x81\x69\x68\x03\x60\x77\xdf\x98\x03\xab\x34\x34\ +\x97\x60\x00\xcf\xc9\xe2\xbb\xd0\xc5\xc3\x9e\x1f\x3e\x35\x31\xcd\ +\x58\x83\xa7\xf6\x39\xc4\x78\xd5\x04\x15\x9d\x1c\xe7\x19\x0a\x9a\ +\x69\x9b\xb2\x7e\xa9\xbb\x2f\x23\xcc\xd9\x03\x5d\x7e\x60\x18\xc3\ +\xbe\x28\xf9\xac\x36\x1b\x0c\xf2\x67\xe4\x3c\xfe\xd8\xa3\xcf\xeb\ +\x9c\x49\x2a\x37\xa0\xe6\xa0\x55\x86\xe7\xe8\x73\x4d\xb1\x87\xe1\ +\xe9\x82\x62\xc2\x4c\x08\xcc\x8d\x2b\x75\x38\xdb\xcf\xe4\xcc\xc6\ +\x55\x6d\x36\x9f\x80\xba\x1b\x93\xd3\xcf\x5b\x98\x1a\x8e\xc0\x1f\ +\xe2\xa4\xa6\x89\x38\x77\x1b\x9c\xe2\x59\xbc\xa1\x3e\xcc\xa9\xe7\ +\xa5\x6e\x1d\x9a\x43\x02\xf8\xe7\xd3\xe6\x65\x02\x91\x45\xe1\xa7\ +\xd3\x64\x5e\xd7\x22\xb6\xad\xfe\xf1\xc4\x7a\x73\x5a\x4e\xc4\xf7\ +\xfa\xdb\xbb\xf2\xa7\xaf\x96\xf2\xe2\x1f\xfd\xd7\xe5\xb3\x7f\xf3\ +\x6f\x95\xd5\xc9\x56\xba\x0a\x02\x7a\x8b\xd7\x0c\xa9\xfb\x8e\x4f\ +\x80\x56\x53\xad\x9d\x32\x40\xd6\x04\x67\xa6\x99\x00\xb1\xd8\x27\ +\xfd\x71\x5d\x33\xa1\x06\x20\x7b\xe6\xf3\xb7\x30\xc1\x25\xa4\x58\ +\x90\xe0\x87\x09\x98\x3b\x4c\xd0\xbd\x64\x7e\x03\x3f\xf6\x17\xc0\ +\x59\x61\xee\xcf\xfd\x73\xd9\x91\x6c\x2b\x5c\x1f\x2b\x7c\x52\xed\ +\xa4\x5c\x7b\xf0\x91\xf2\xab\xbf\xf8\x5f\x95\xcf\xbf\xf7\xa7\xcb\ +\x77\xff\xed\x9f\xf0\xcd\xac\xd3\xa3\x5d\x59\xe1\x41\xaa\x5c\x6b\ +\xb8\x16\x98\x5e\x36\xba\x9e\x52\xc0\xa6\x5a\x6e\x08\x56\x3f\xd7\ +\x2b\xea\x6a\x45\x41\xc9\x37\x2b\xff\x72\xeb\xd4\x41\x81\x5a\x35\ +\x86\xaf\x6b\x52\xb3\xdf\x0e\xa7\x8a\x29\x59\x15\x62\xd0\xe8\x9a\ +\x2f\xe7\x76\x91\x95\x71\x51\x26\x79\x86\xd0\x60\x8f\xad\x95\xda\ +\xf7\x61\x9c\xdf\x5a\x4e\xe1\xd3\x4c\xd8\x93\x6a\xcd\x79\xf2\x68\ +\x73\x78\x06\x8d\x30\x72\xce\x2e\x9b\xbe\x3d\xcd\xe8\x01\xfd\x8a\ +\x46\xa1\x5e\xf5\xe0\xf8\x76\x6f\xcf\xe8\x96\xa6\x1a\xed\x19\xd5\ +\xe2\xda\x2d\xa0\xa6\x56\xb8\x8e\xd4\x90\xa9\xf7\xed\xf4\x41\x63\ +\xe4\x28\xa6\x8a\x7c\x09\x87\xa5\x12\xcc\x10\xf7\x0e\xc1\x38\x46\ +\x43\xda\x40\x65\xce\xb5\xe1\xdc\xa9\xbf\x6f\x3e\xdd\x79\xec\x01\ +\xf2\x24\x5e\x17\x92\x55\x97\xfb\x96\xa9\xe7\x14\x5d\x8e\x06\xee\ +\x6b\x12\x4f\x03\x68\x99\xc9\xd3\x84\x5a\x69\x30\x8a\x33\x5b\x75\ +\x25\x83\x94\x6a\x1f\xc3\xfd\xda\xd5\x34\x02\x11\x98\x32\xe4\x64\ +\x22\x23\x06\x26\x35\x23\xb6\x1f\x41\x23\x35\x30\x1d\x15\xde\x24\ +\xa3\x90\x6c\xa1\xe2\x53\xfe\x58\xa3\x61\xcd\x65\xb6\xd5\x56\xd6\ +\x52\xa5\xbc\xfd\xe6\x9b\xe5\x89\x9b\x9b\xf2\xed\x6f\xfc\xb3\xf2\ +\x99\x4f\xfe\x6c\xd9\xe2\xd3\xca\xd2\x74\x7d\xa3\x97\x64\x15\x87\ +\x60\x03\x06\x6f\xb0\x2f\x0b\x16\x2c\x58\xb0\xe0\x5e\xc1\xf2\x86\ +\xda\x82\x05\x0b\xee\x5e\xf8\x1a\xd9\xcb\x5d\xbf\xd6\x44\xe7\x7c\ +\x21\xdd\xbe\x99\x73\xa9\x98\x4d\x68\xad\x9d\x1e\x69\xeb\x78\x53\ +\xed\xef\xff\xa3\xf2\xa1\x7f\xf2\xcf\xcb\xff\xfc\xef\xdf\x2e\x6f\ +\x1f\xdf\xc4\x37\x80\x89\x1f\x0f\x82\x18\x20\x37\x01\x7a\x8b\x0f\ +\x33\xef\x1b\xb0\xe1\x43\xdb\x16\x7e\x5f\xe2\x87\x62\x0e\xa4\xc9\ +\xa6\xcf\x30\xb8\xb7\x23\xd4\x2c\xbd\xe5\xd3\x20\xcd\x9c\xa9\xfa\ +\x97\x83\xfa\xa6\xda\x34\xc7\xa8\x27\x76\x8b\x14\x6f\xe4\xa4\x1e\ +\xa7\x78\xbf\x19\x73\x9c\x25\x87\x2d\x09\x53\x5e\x73\x7b\x16\xe8\ +\xdb\xea\x11\x31\x23\x12\x6c\xb1\x9b\x3d\x61\x1a\x00\x8b\x17\x20\ +\x33\x5c\x1e\x8d\x1a\xd1\x3b\x52\xf0\x28\x4f\x40\x0c\xb1\x8f\x92\ +\x03\x75\xe5\x40\x42\xe2\xd9\x56\x2b\x3c\xc7\x1e\x4c\xfc\x87\x06\ +\x1c\xd0\x3c\x00\x7a\x5f\x80\x2c\x0f\xe1\x84\x33\xdb\x11\x12\xb9\ +\x67\x8f\x09\xdb\x13\x0a\xaf\x0d\x72\xcf\xe2\xab\xdf\x9f\xa7\xb2\ +\x19\x15\x03\xbd\x0e\x20\xce\xdb\x9a\x30\xac\x59\xcd\x95\x7d\x5d\ +\x5f\x4c\x1d\xe7\x6f\x6b\x92\x2d\xa7\x63\x14\x07\xf4\xf6\x43\x78\ +\x0d\xa7\xe9\x97\x6c\xd9\x2e\xe6\x1b\x1a\x1a\xf8\xf8\x8d\x72\xe9\ +\xf9\x0d\x0d\x42\x5d\x3a\xd3\xef\x24\xfa\x54\xc1\xb6\x69\x03\x72\ +\x3c\xe8\xf6\xf6\x65\xe3\x1f\x33\xb1\xf9\x8a\x0f\xc3\x9d\x66\xb5\ +\xfe\xa5\xb4\x14\x99\x04\x55\x92\x2d\x27\x6a\xfd\x34\x1a\x3e\x15\ +\xe3\x1c\x6e\xf1\xe6\x1a\xdc\x92\xeb\x78\x7b\x52\x5e\xbf\x7e\x52\ +\xde\xf8\xfe\xb6\x7c\xea\xef\xfc\xe3\xf2\xd2\xef\xfd\x9d\x52\xb6\ +\x6b\xe1\xc8\xde\xa2\xad\xfc\x04\x54\x53\xd4\x02\x84\x9e\x0d\x06\ +\x0b\x0b\x24\x57\x8c\x50\x33\x08\x23\xf4\x49\x1c\x6e\xef\xfd\x73\ +\xfc\x73\x82\xfb\xa4\xe2\x82\x4b\xc0\xe8\x30\x9d\x6b\x8c\x47\xc7\ +\x1b\x72\x9f\xf8\x00\xe4\x10\xef\x43\xdf\x8f\xbe\x19\x47\xf0\xc4\ +\xc8\x6b\x52\x0c\xa7\x57\xe4\x3a\xbb\x59\x1e\x7a\xec\x5d\xe5\x57\ +\x7f\xe9\x5f\x95\x9f\x7e\xee\x5b\xe5\x95\xff\xf9\x3f\xea\x39\x7e\ +\xf5\x94\x0f\x54\x75\x3d\x25\x1b\xe4\x92\x73\x9e\xd7\x24\x8b\xc4\ +\x23\x15\x6a\x58\xe4\x9a\x6b\xbb\x62\x5a\xac\x57\x20\x56\x06\xd3\ +\x02\x30\xb1\x9f\xe6\x63\xce\x5a\xaa\xa0\xb5\x8b\x16\x44\xb8\x04\ +\x5f\x23\x8f\xae\x51\x98\x92\x39\x7a\xe7\x36\x6b\xbf\x01\x5f\xa7\ +\x1c\x13\x6f\x34\x9a\x59\x19\x29\xf5\x0c\x5a\x0f\xf8\xb5\x15\xf5\ +\x51\x4f\x4d\xeb\x9c\x9e\x0c\x19\x62\x6e\x8e\x46\x47\x53\xd5\x19\ +\xc8\x83\xb5\xf2\x7c\xef\xc0\xc5\x38\xe9\xe1\xc3\xc6\x5f\x51\x00\ +\xe8\xf5\x18\x3b\x57\x19\xb5\x8f\xed\xa1\x70\x1f\x50\x33\x8d\xf1\ +\xff\x67\xef\xbf\xa3\x75\xdb\xae\xfb\x30\x6c\x9d\x7e\xeb\xeb\x05\ +\x78\x05\x8d\x20\x40\x00\x24\x01\x90\x44\x21\x45\x52\x24\x45\x52\ +\x2c\x6a\x54\xa1\x24\x5a\xf4\x88\xa2\x41\x49\xa4\x64\x2b\x92\x12\ +\x25\x91\xe2\x61\xc7\x7f\x64\x24\x1e\x49\xc6\x90\xc7\x88\x33\x12\ +\x47\x8e\x2c\x39\x92\x15\x51\x72\x2c\xcb\x16\xd5\x28\x50\x20\x58\ +\x40\x82\x45\x00\x08\x80\x24\x00\x12\x44\x7b\xbd\xdd\x76\xca\x77\ +\x4e\x7e\x65\xce\xb5\xe6\xde\xdf\x77\xee\xbb\x0f\xb8\x0f\xc0\xc3\ +\xfd\x7e\xe7\xdb\x6b\xce\xf9\x9b\x65\xad\xbd\x76\x39\xbb\x9c\x92\ +\xb1\x2b\xe2\x4a\xcd\xee\xad\x61\xfd\xfa\x62\x05\x4e\xa1\x97\x80\ +\xb8\xdc\xfc\x16\x6c\xaf\x3f\x5b\x53\x64\x24\xe4\x78\x33\x61\x4c\ +\x4c\xcc\xd9\x64\x8e\x56\x60\x96\xfe\x7c\xe1\x82\x72\x56\x47\xba\ +\x1c\x7d\xd4\x72\x1b\xce\x8f\xe3\xec\x94\xb2\x7a\xd2\x9e\x46\x0f\ +\xd4\x39\x1a\x9a\x27\x73\xda\x87\xbd\xda\xc3\xec\x39\xa5\xa4\xe9\ +\x74\xce\xc7\x39\x43\x38\x7b\x4e\x9d\x5c\x9a\x16\x1d\x76\x73\x24\ +\x63\x5f\xae\x32\x97\x8e\x89\x01\xcc\x6d\x20\xcf\x71\xac\x9d\xee\ +\x11\x56\xe6\xe4\x7a\x88\x84\x3c\x75\xb2\xd6\xe4\xdc\x29\xf4\x9e\ +\xca\xe8\x01\xa8\xfd\xb7\xfe\xdd\xe8\xcc\xcd\xf3\xa2\xfe\x3f\xad\ +\xb8\x45\xdb\xc0\x75\xd3\xd5\xcb\xd7\xda\x1d\x07\x3b\xed\xfb\xbe\ +\xe9\x47\xdb\xdb\xde\xf2\xbd\x88\xe2\x0f\x26\xf9\xe7\x92\xc6\x96\ +\x3c\x6d\xcc\x73\x1e\x75\x57\xe2\xb4\xfc\x35\xd6\x58\x63\x8d\x35\ +\xbe\x14\xb1\x7e\xa1\xb6\xc6\x1a\x6b\x7c\x69\x83\xd7\x9c\xb9\x10\ +\xbc\xd6\xac\xcb\x97\x1c\x4e\xbb\x48\x3e\x8d\xbf\x41\xf4\x79\xb8\ +\x4e\x9d\x7e\x47\x8b\x98\xcd\x1d\x12\xfa\x1f\x3a\xbf\xeb\x47\xff\ +\x62\xfb\x86\xff\xf5\x5f\x6b\xef\x7f\xff\x53\xed\xe0\xf0\xb8\x1d\ +\xea\xef\xbc\xf3\x4f\x54\x54\xe0\x76\x20\x7e\x62\x4f\xcf\x78\x75\ +\x13\x61\x4f\x97\x09\xda\x73\x2e\x51\xd2\x12\x7e\x68\x00\xac\xda\ +\x66\x59\x2b\xf8\xf1\xf2\x80\x3a\x34\xa9\x0e\x60\x3b\x79\xd7\x47\ +\x1d\xf1\xbd\x7e\xf7\xc9\xd1\x35\x37\xce\xd7\x6a\xc5\x3c\xf5\x9b\ +\x2f\x8b\x1e\x97\xe8\x7c\x41\x72\x4b\x9b\xa1\x3b\x42\x02\xa9\x46\ +\x6f\x6a\x75\x2b\x17\x0e\x89\x12\x5f\x31\xa5\x63\x4c\x21\xd2\xe7\ +\xf5\x1e\x91\xe1\xee\x38\xa5\xf4\x75\xf9\xc9\x82\x82\xa9\x13\x55\ +\x9f\xa0\x74\x2c\x3f\xed\x1c\x9a\xf4\xcc\x2a\x81\xbd\x52\x06\x87\ +\x6f\x65\x07\x37\x11\xec\xe6\xf3\xe8\x83\xa9\xb9\x4c\x50\x57\x6d\ +\x86\x11\x5b\xd6\x93\xac\x1c\xd8\x1f\x40\x65\xcd\xba\x68\xa8\x54\ +\x84\x64\x8d\xa1\x4d\xb1\xb4\x5f\x02\xa7\xc5\x0e\x38\xe2\xf9\xe3\ +\xa6\x31\xd4\x57\xe6\xac\x20\x93\x9a\xbb\x64\xc7\x94\x54\x9f\x8e\ +\x93\x70\x90\x9f\xfa\x42\xe6\x54\x06\xe6\x31\xd5\xee\x96\x84\xf5\ +\xee\x2f\x4a\x9d\xbf\x11\x9a\x03\xf4\x39\x84\x0f\x5b\xcc\x1b\x45\ +\x15\x26\x35\xaa\x93\xba\x8e\x05\x93\xf4\xf1\x11\x4f\x58\x5a\xf2\ +\x07\x01\xf8\xbe\x4c\x92\x41\x5a\xdc\xaf\x6c\x9c\x04\xfd\xbf\xd2\ +\x52\xfa\xb7\xd2\x74\x6e\x5c\xf0\x65\x1a\x7f\x6f\x65\xd1\x16\x07\ +\x07\xed\xb9\xab\x87\xed\x91\x47\xae\xb4\x57\xff\xc8\x5f\x69\xdf\ +\xf0\x23\x3f\xda\x76\x58\x97\x2f\x00\xb6\xb9\x4e\x39\x81\x4c\x4c\ +\x99\x0b\xc5\xdc\xb6\x58\x06\x1c\xfc\xa6\x31\xdb\x1e\x37\x86\x51\ +\xf4\xf4\xf4\xcf\xa9\xf0\x1a\x5f\x6c\x70\xb3\x71\x39\x75\xbf\xa9\ +\x58\x15\x74\x43\x89\x03\xd9\x5f\x45\xda\xe9\x9b\xfb\x2b\xd2\x97\ +\xdd\xf2\x87\x8d\xa0\xf3\x3c\xb3\xb9\xb1\x85\xe3\xef\x5a\xbb\xed\ +\xb6\xfb\xdb\x1f\xff\xfe\xff\x5d\xfb\x5d\x0f\x7d\x57\x7b\xf6\x23\ +\x9f\xd2\xf1\xb8\xb1\x8b\xe3\x52\xff\x53\xcd\xc7\xa7\x8e\x61\x1e\ +\xd8\x71\x0c\x67\x9b\xef\xce\x89\xc9\xb9\x8b\x39\x8c\xc9\x7e\x01\ +\xbf\x54\x13\x8b\x85\xdf\x23\x36\x55\x77\xf8\x06\x48\x93\x19\x25\ +\x27\xc5\x2d\x22\x26\x54\xd5\x9c\x84\x75\x6f\xa0\xf8\x54\x3f\xec\ +\x1e\x35\x0b\x27\x3a\xa5\x58\x27\x4c\xc2\x4e\xef\xa2\xbb\x6a\xc8\ +\x2c\x3c\xb0\x3a\xc2\xe3\xe3\x23\xed\xe0\x20\x6a\xfd\xc4\xb4\xa6\ +\x1f\x81\x4f\x39\xa3\x73\x54\x78\x1e\xd4\xb9\xd0\x18\x0f\xce\x89\ +\xd4\x2d\xaf\x57\x6b\xea\x43\x3c\x06\x9d\xfd\xa7\x6f\xfa\x2e\xa9\ +\xb3\x21\x3f\x7f\x4c\xc6\x50\x7f\x98\x22\xbf\x2f\xd5\x01\x4c\xba\ +\x9d\x8d\x61\x66\x12\x49\xe5\xf7\xed\x1b\x47\x89\x0f\x95\xc3\x98\ +\x8c\xf5\x54\xac\x88\xe2\x6a\xa4\x5a\xdc\x3e\x9a\x6e\x10\x2b\x43\ +\x49\x72\xf1\x76\x2b\xa3\x3e\xa5\x76\x46\x4c\xf7\x98\x29\x5c\x2f\ +\xb5\x8a\x3c\xfa\xa7\xfc\x2c\x6a\x9e\x44\x80\x5b\xca\x29\x04\xd5\ +\x89\x5f\x86\x99\xa2\xce\x90\xe3\xc0\x11\xd6\xfd\x1c\x37\x8c\xa5\ +\xf8\x31\xe6\x95\xf3\x22\xca\xfc\x0a\xaf\xea\x8f\xf9\x9a\x56\x58\ +\x15\xcf\xd9\x9d\x5c\x2b\x46\xd0\x74\xce\x79\x42\x06\x47\xa7\x82\ +\x22\x8e\xd7\x50\xe4\xe9\xd4\x45\x17\xfa\xc3\x72\xcc\x8b\x29\x3a\ +\x1c\x04\xff\x56\xbb\x76\x78\xa9\xdd\x7b\xb8\xdd\xbe\xff\xdb\xfe\ +\x83\xf6\x8d\x6f\xfb\x01\xa4\x1e\xa2\x4c\xfd\xcd\xe1\xcf\x17\x37\ +\xa3\xc6\x1a\x6b\xac\xb1\xc6\x1a\x5f\x68\xac\x5f\xa8\xad\xb1\xc6\ +\x1a\x5f\xba\xe0\xb5\xec\x2a\xcc\xf9\x2f\xb9\xeb\x50\x0e\x70\x0c\ +\xf2\x73\xbe\xe0\x56\x19\x34\xba\xa8\xaf\x35\xc9\x59\x74\x6a\x28\ +\x01\xd8\xfc\x73\x45\xb8\x49\xd8\x5e\x1c\xb7\xaf\xfb\x91\xbf\xd8\ +\xde\xfc\x37\xfe\x46\xfb\xe0\x6f\x3d\xdb\x0e\xae\x5d\xd1\xeb\xb4\ +\x93\x63\xfe\x59\x30\xc6\x6d\xfa\x06\x96\x0b\x79\x34\xbe\x8d\xa1\ +\x62\xd9\x1f\x54\xcc\xb0\x92\xe5\xaa\xf6\xa7\x30\x32\xfa\xea\xab\ +\x5c\xc0\x95\x7d\xbb\x62\xde\xce\xf2\xcc\xb9\xc4\x5b\x61\xcb\xfb\ +\x1c\xdf\x1e\xcd\x11\xa3\x9c\xe4\x60\x41\x41\xaf\x4f\x8c\x85\x2d\ +\xc6\xa6\xe1\xc9\x08\x09\x58\x4d\x07\x00\x22\xdd\x43\x96\x04\xc0\ +\xd6\x2a\xce\x18\x3a\xb5\x12\x8d\xc6\x56\xf6\x67\x69\xae\x20\xb6\ +\x81\x3f\xd8\x16\x5a\x1f\xc3\x5b\x66\x64\x94\x91\xcf\x50\xfb\x98\ +\x47\x9d\xb6\x75\x6f\x00\xb5\x2c\x11\x85\x64\xd6\x6e\xa4\x8f\x51\ +\x9b\x28\x01\xdc\xe8\x33\xea\xba\xc8\xb8\x1b\x8d\xaf\xb8\x91\x9c\ +\x1b\x88\xe1\x5a\x4c\x16\xe6\x50\x39\x15\x70\xf6\x1d\x3a\x82\x33\ +\x71\x45\x7f\x8e\x74\x9c\xc2\x7a\x10\xe3\xbd\xff\x9a\xcf\xd8\xd1\ +\xce\xcb\x8d\x98\xe7\xc3\x34\x73\x9e\x33\xaf\x4b\x2c\x9d\x1d\x62\ +\x5c\x82\x14\x5b\xc9\x4d\x62\x81\x6a\x0f\x7d\x1e\x55\x98\x32\x88\ +\xeb\xd5\x12\x92\xe0\xf1\x4e\x61\x6b\x19\xdd\xb1\x7c\x2c\xe4\x26\ +\xab\xeb\xae\x73\x10\xf8\x3c\xf6\x18\x43\x2d\x42\x27\x18\xe7\xb0\ +\x98\x18\x12\x3a\xc9\x11\x7c\x88\x13\x6a\x8f\x53\x50\xd8\xe8\x01\ +\xf1\x7a\x89\x47\x8b\x7a\x3c\xe8\x59\xf0\x65\x1a\xbe\x3c\x0e\x54\ +\xc2\xf9\x7c\x11\x0f\x88\x0e\xb1\x5c\x81\xfe\xcc\xe3\x07\xed\xb5\ +\x7f\xe2\xcf\xb5\xaf\xfd\x73\x3f\xd6\x36\xb6\x76\xda\xf1\xd1\x11\ +\x4f\xf7\x81\xba\x46\xae\xdf\x11\x0f\x97\xc4\x53\xa6\x5e\x21\x93\ +\x3e\x59\x53\xd4\xd2\x5f\xca\x58\x35\xf6\x35\x6e\x1e\x38\xbf\xf3\ +\xdd\x4c\x73\xbe\x6a\xe2\xbb\xb3\x60\x55\xdc\xf3\x21\x3a\xcc\x7e\ +\xaf\xb7\x2f\x66\xf9\x1a\xcb\xa5\xf0\xfc\x9f\x6a\x34\x37\xe2\x37\ +\xd5\xce\x5e\xbc\xbd\xfd\xe0\xf7\xff\xf5\xf6\xf6\x57\x7e\x4f\xbb\ +\xf2\x1b\x9f\x6e\x1b\xb8\xbe\x3a\xd9\xe5\x8b\xed\x23\xfd\x9f\x1d\ +\x45\xf7\x6b\x0e\xb4\x3c\x4e\xfb\x31\xa4\x42\xe2\xe7\x98\x30\x3d\ +\x76\xf0\x1e\x22\x89\x29\xa9\xef\x0b\x92\x26\xd9\xd6\xb3\x58\xf2\ +\x08\x91\x96\x9e\xb9\x1c\x60\x64\xc4\x4f\x9c\xc9\x4f\x33\x68\xb1\ +\x8f\x9e\x25\xf7\x72\xd5\x25\x94\x10\xe7\x46\x9f\x56\x3b\x37\x01\ +\xd6\xdd\xfc\xf8\x6e\x28\x20\x89\x79\x33\xb6\x63\x32\x1f\x25\x84\ +\xf1\x59\x2f\x31\xb4\x84\xb3\xcd\xa3\xd5\xf6\xcb\x22\x23\xba\xf6\ +\x9d\xec\xf0\x06\xfa\x79\x1f\x08\x9d\x59\xfd\x95\x0b\xa9\xa2\xae\ +\xa8\x70\x0a\x32\x6e\x1a\xaf\x52\x63\x58\x01\xf7\x28\xf4\xfe\x06\ +\x37\x79\xfd\xd3\xfd\x44\xc4\xe4\xcd\x42\xd8\xf9\x0e\x8e\xa1\xd9\ +\x7b\x7a\xb3\xbd\x61\x44\x81\x55\x73\xb9\x1a\x2b\xea\xbf\xc0\x2e\ +\x85\x3a\xf8\x19\x96\xf6\x29\xc4\xe5\xb1\x2d\xd1\xe1\x38\xb5\xe5\ +\xc0\xa1\xad\xe3\x23\xb8\x55\xc7\x94\x41\x47\x2e\x44\x6c\x89\x30\ +\x87\x27\xdb\x39\xc3\x68\x2c\x51\x52\x9c\x1d\x13\x5d\xa8\x7a\xc1\ +\x18\x4d\x4d\xac\xe1\x85\x90\xca\x0c\x28\x23\xa0\x83\x94\xea\xad\ +\xf0\x99\x63\x33\x9b\xdd\x9e\x04\xc8\x3d\xf1\x4e\x81\xe3\xa7\xee\ +\xab\x3a\xc7\x06\x26\xfb\x70\x5e\x63\x4d\x2e\xb5\x54\x5c\xd7\x4a\ +\x72\x14\x2c\x58\x87\xd7\x51\xba\xb0\x3a\x6e\xc7\x38\xa7\x3f\x73\ +\xf9\x4a\xbb\xed\xda\x71\xfb\xfe\xdf\xfd\x67\xda\x37\xbd\xfd\x07\ +\xda\xf6\xa6\xff\x6a\x0a\xff\xc5\xc2\xc6\xb8\xa0\x02\x4a\xbf\xd9\ +\x59\xc7\x12\xb1\x02\x75\xdc\x37\x12\xbf\xc6\x1a\x6b\xac\xb1\xc6\ +\x17\x1b\x5b\xff\x09\x10\xfa\x1a\x6b\xac\xb1\xc6\x97\x3e\xea\xf5\ +\x66\xea\x95\xfb\xa2\xe0\xf9\x2f\x7c\x97\x87\x78\x9d\x41\xb3\x9c\ +\xdc\xa5\xee\xe4\x2e\xac\xe6\x52\x87\x4f\x39\x3d\x11\x70\xfc\xc6\ +\xc6\x96\x5e\x9c\xf1\xa1\xd0\x43\xef\xf8\xa6\x76\x74\x76\xa7\x7d\ +\xe8\x5f\xfe\x6c\x3b\xb3\x75\xd4\x76\x76\x77\xc1\x1f\xb7\x2d\xa4\ +\xf8\xb6\xc6\xb9\xbc\xd9\x50\x36\x1a\x31\x79\xc7\x4c\xcb\x65\xa7\ +\xa8\x9c\x42\xd8\xf8\x66\xa7\xff\x34\x75\x89\x61\xb5\x55\x65\xba\ +\xa7\xf7\x17\x00\xa5\xf8\xbc\x81\xea\x37\xf3\x86\x7c\x4c\x93\x35\ +\x90\xfc\x40\x3c\x56\x51\x33\x6a\x8c\x10\x68\x71\x03\x37\x49\x3b\ +\x05\x8c\xc9\xd5\x23\x9e\x2f\x47\xf3\x82\x8f\x7f\xd2\xdc\xfd\x18\ +\xc3\xbe\x7e\x8d\x8c\xe3\xa2\xde\xb1\x24\xcc\x71\x7e\x2a\x9b\xa8\ +\x75\x1d\x31\x96\xa5\x3e\xe7\xa5\x89\x55\xdd\xa5\x9c\xc7\xd2\x5e\ +\x55\x63\x82\x55\x49\x29\xd8\x5c\x37\xd9\x60\xc8\xd2\xe0\x57\x20\ +\x4b\xdd\x40\xc9\x8e\x17\x12\x5b\x90\x43\xaa\x43\xcb\x52\x13\x9b\ +\xfb\xb8\x16\x51\x40\x57\x00\xea\xb9\xd4\x15\x74\xcc\xd2\x36\xee\ +\x06\xf8\x4c\x0b\x4c\xe2\x66\x90\x0f\x4d\x8e\xd7\xa0\x36\xea\xcf\ +\x0f\xc5\x74\x48\x54\x1f\xf4\x6e\x16\x7e\x92\x0f\x63\xc4\xc4\xb1\ +\x2c\xbd\x88\xd4\x33\x30\x94\x61\xcf\xf4\x90\x12\x95\x4f\x1d\xe8\ +\xff\x53\xa8\xfa\x7b\x92\x05\xe1\x9c\xc1\x53\xd3\xdc\x54\x9e\x28\ +\x2a\x9d\xdd\xac\x3c\xc0\x3f\xa7\x6b\xa5\x08\x71\x25\x30\xf3\xd1\ +\x50\x96\x59\x89\x30\x9d\x35\xa0\x63\x24\x79\x6e\xc2\x39\x5b\x0b\ +\xbe\xf4\xff\xd2\xf8\x68\x47\x2f\xd7\x80\xcd\x93\xb6\x38\x5a\xb4\ +\x4b\x8b\xe3\xf6\xd9\x27\x17\xed\xe1\x1f\xfa\x0b\xed\x1b\xff\xd2\ +\xff\xb2\x9d\xd9\x3d\xd3\x8e\xc1\x6f\xe0\x64\xbf\xa1\xff\x9b\xd6\ +\x7b\x29\x88\x79\x0a\xa1\xef\x39\xd4\x3d\x80\xc1\xa7\x9d\x88\x71\ +\x4d\x4a\x56\xfd\x73\x06\x8b\xf4\x01\xbc\xb8\xf8\x02\x74\xf1\x92\ +\xc5\x64\xbb\xbf\x40\xac\xca\x11\xc7\x26\x0b\x9f\x02\x86\xf0\x78\ +\x59\x55\x23\xa1\x98\x58\x86\x12\x32\xf5\xd3\x10\xfd\xe7\x71\xba\ +\x04\xf8\x4b\x19\xee\xe6\x7c\x78\x7a\x72\x72\xd0\xf6\xce\xdc\xde\ +\x5e\xfb\xca\x6f\x68\x97\x9f\xf8\x4c\xfb\xe5\x0f\xfc\x5c\xdb\xbb\ +\xeb\x62\xdb\xd8\xd9\x6a\x1b\x47\x3c\x0e\x79\xdd\x33\x12\xf3\x30\ +\x92\x19\x7a\x94\x34\x4f\x44\x40\xb7\x09\xf6\x07\xa1\xff\x7d\x2b\ +\xd3\xc9\xca\x55\xc3\xe8\x38\x63\xf4\x44\x39\xd0\x27\xe5\xa4\x9a\ +\x90\x69\xf4\xf8\xfc\xe4\x25\x2f\x2f\x9d\xc5\x8a\xf3\x5c\x65\x1a\ +\x25\x56\x90\x52\xfc\x45\x7d\x21\x60\xda\xbc\xd7\xc4\xb4\xe4\x69\ +\x51\x53\x8c\xa8\xcc\x0e\x29\x07\x9b\x3c\xd7\xfa\x7a\x77\x16\x65\ +\x84\x51\xb9\x7a\xcd\x97\x48\xca\x71\x6c\xbd\x70\x1e\xdd\x0b\x97\ +\x9a\x98\xfe\x19\x62\x5f\x1c\xbb\xfd\x3c\xa2\x8e\x74\x8e\xd3\xf8\ +\x55\x9e\x60\x28\xb4\xf1\xa1\x14\x2a\xf5\x2e\xab\x73\xb6\xfe\x79\ +\xf8\x58\xd4\x96\x98\x05\x2f\xa1\x24\xe7\x52\xb0\x82\x02\x30\x6f\ +\x41\x4e\x67\xb0\x93\x5d\xc8\xef\x4f\x30\xd9\x02\x5d\x31\xb2\x66\ +\xdf\x62\x33\x7f\x85\x7d\x8a\xb2\x08\x6b\x82\x49\x01\x8e\xd9\xf3\ +\x2c\x76\xa4\x4d\x90\x3e\x07\x8c\x7d\xa7\x96\x9a\x8f\x2b\xc7\xd2\ +\xaf\x37\x88\x50\xc3\x25\xa8\x56\x09\x19\x7c\xa0\xf8\x54\x4a\x27\ +\x3c\xdb\x56\x69\x04\x11\x38\xad\x66\x45\xa7\x56\xf9\x56\x70\x59\ +\x72\xec\xe9\x41\x04\xa4\xc6\xdc\x8c\xf3\xac\xf7\x33\xfb\x1c\xac\ +\x73\x18\xd4\x8c\x10\x94\x87\x68\xbb\xcc\x53\x07\xb1\x08\x87\x36\ +\x93\xca\x2d\xf4\x52\xed\xca\xd3\xcf\xb4\xbb\x4e\x76\xda\x1f\xfb\ +\xce\xbf\xd2\xde\xf9\xf5\x7c\x99\xe6\x97\x6e\x38\xdb\xa3\xab\x53\ +\x5e\xa6\x11\xdd\x4c\x65\xe6\x17\xaa\x4f\x9d\xae\xc0\xaa\xbc\x35\ +\xd6\xf8\xfc\xb0\xde\xab\xd6\x58\xe3\xe6\x61\xfd\x42\x6d\x8d\x35\ +\xd6\xf8\xd2\xc5\xf5\xae\x3f\x89\x2f\x99\x2b\x82\xeb\x0d\x84\x97\ +\xfd\xf3\x41\x73\xe1\xc5\xf3\xf5\xf2\xca\xc5\xb5\x6e\x78\xa5\x04\ +\xcd\x06\x8b\xae\xfc\x81\x2c\x99\x08\x3a\xee\x8a\x20\xb6\x20\xf4\ +\x3b\x69\xed\xc1\x6f\x78\x47\xbb\x76\xc7\xdd\xed\xc3\x3f\xf1\x6f\ +\xdb\x85\xdd\xc3\xb6\xbb\xbd\x0b\xfa\x18\x31\x1b\xb8\x79\xe0\x0d\ +\x02\x6f\x43\x50\x20\x6b\x50\x4a\x1f\x1d\x74\x0a\xdc\xd2\x1a\x94\ +\x58\xdf\xf2\x4c\xf3\x26\xf1\x2e\x62\x91\x4e\xdc\xb9\x49\x90\x5b\ +\x42\xf8\x26\x45\x12\x24\xb1\x84\x33\xa7\xac\xd7\xa9\x9d\xc4\xbc\ +\xe8\xd6\x2a\x03\x20\xe3\x56\x2b\xec\xa8\xa3\x16\x32\x69\x8b\x80\ +\x63\x88\xca\xf7\x9c\x90\x1d\x20\xc4\x29\xad\x3c\xb2\xea\x2b\x34\ +\xea\xad\x86\xd7\xdf\x51\x11\x2b\x11\x3a\xeb\xf8\x63\x13\x0b\x57\ +\x75\x69\x1c\x1d\x19\xb9\x02\x72\x65\x66\x14\x2d\x66\x97\xea\x44\ +\x96\x91\x76\xe5\x12\x9a\xf7\x74\xac\x0a\x00\x62\xdb\x74\x14\x55\ +\xc8\x12\x91\x3e\xef\x7e\x25\x6a\xc0\xbc\x5e\xc1\x0d\xd5\xba\x2e\ +\xea\xde\xbe\x02\xb9\x9d\x21\xe6\x91\x1e\x16\xd9\xe0\x73\x9c\x4b\ +\x05\xb3\x46\x66\x04\x53\x94\x88\x58\x8d\xe2\x5c\xb5\x6f\xf4\x6c\ +\x08\x6a\xb1\x4b\x8d\xb9\x51\x13\x59\xe1\x13\xba\x02\xb5\xe8\xc9\ +\x4b\x44\x63\x61\x47\xb8\x87\x02\x69\x7f\xca\x70\x54\xbe\x2b\x83\ +\x13\x66\xb6\xe2\x0a\xd1\xc7\xb5\x8a\x03\x4c\xb3\xf5\xc2\x87\x35\ +\xd6\x1c\xa4\xb9\xb0\x3a\x45\xe1\xa4\xa6\x1d\xc1\x13\x93\x4b\x4c\ +\x6a\xce\xa9\xc3\xd0\x8b\xe4\x00\x7f\x06\xda\x0f\x8c\x70\xae\xe2\ +\x09\x28\x16\xbe\x40\xe3\x0b\x35\xbf\x52\x03\xa5\xdf\x80\x81\xc4\ +\x3e\xc1\x1f\x9e\x78\xfa\x70\xd1\xae\x3d\x76\xd0\x5e\xf5\xef\xff\ +\xc5\xf6\xf5\xff\xc1\x5f\x6d\xe7\xce\x5f\x6c\xc7\x07\x87\xfa\x33\ +\x8f\x7a\x99\x56\x37\x2a\x9b\xda\xb1\x0a\x51\x29\x9c\xc0\x1c\x39\ +\xac\x4f\x64\xa0\xd6\x99\xa7\x77\x9c\xea\x00\x38\xd3\x73\xff\xf5\ +\xe2\x6f\x22\xbe\x40\xdd\xbc\xa4\xf1\xf9\xcc\x51\xdd\x75\xa8\xab\ +\xd6\xf3\x14\xcc\xfd\x29\x73\xe7\xe8\xe9\x54\x56\xd5\x3a\x2d\xd1\ +\x3c\x8f\x29\x65\x4d\x0e\xbc\xc8\x59\x2a\xe9\x3d\x53\xde\x8d\x4d\ +\xfd\xa6\xda\x99\x33\xe7\xdb\x6b\x5f\xf5\xb6\x76\xfc\xdc\xd5\xf6\ +\x81\x5f\xfb\xd9\x76\xe6\xc2\xb9\xb6\x71\x76\xbb\x1d\x1d\x1e\xe9\ +\x15\x98\xca\xaa\xf1\x71\x3a\xea\x59\x49\x93\xbe\x1c\x02\x05\x7f\ +\xf8\x29\x9d\xce\xb3\x11\x23\x13\x86\x9e\x89\xaa\x22\xde\xbe\x1a\ +\x1d\x31\x44\xa1\xc7\x03\xf8\xe2\x07\x68\x8d\x3f\x2f\x29\x71\x0a\ +\x7c\x85\x37\x4a\x52\x43\x42\x10\xd7\xcf\x2d\xc8\x78\x8b\xd9\x68\ +\x8c\xd1\xc7\x32\x62\x2b\x2e\x61\xc2\xca\x08\x66\x29\xfc\x34\x1e\ +\x88\x8e\x27\x2e\x18\xf3\xf3\x94\x2d\xb6\x5c\xa6\xa3\x1d\x7b\x0e\ +\xa4\x26\x85\xcb\xe9\xe0\x6f\xbd\x8c\xb9\xa8\xb1\xa3\x4e\x54\x0b\ +\xac\xae\x69\x66\xd2\x7b\x60\x1e\x0b\x3b\x28\xee\x46\xfc\x3e\x22\ +\x53\x49\xd0\x72\x7f\xe4\x42\xae\x40\xee\xd4\x43\xa6\x56\xdb\xd5\ +\x98\xf9\xaa\xc9\xef\x43\xb0\x57\x67\xdb\x41\xdf\xf2\xfc\x4c\x85\ +\xd6\xc4\x1f\x61\xbe\xdd\xaa\x49\x35\x5f\xd0\xa8\x9d\x85\x4e\x01\ +\xa7\xe6\x89\xd7\x09\xce\x75\x78\xed\x21\x1c\x01\xa9\x68\x94\x15\ +\xfc\x2c\xba\x4f\xb9\x00\x19\x23\x99\x8c\x45\x6a\xb1\xa9\x2b\x0e\ +\x41\x9d\x2e\x7e\xa9\x61\x3b\xce\xba\x50\xcd\xa2\xb8\x12\xb7\x41\ +\x92\x0c\x1c\x5b\xba\x87\x06\xea\xf8\xc6\x71\x9f\x75\x82\x80\xd0\ +\x6f\xfb\x52\x9a\xe9\xba\xd6\x5b\x0c\x10\x4a\xb7\x89\xec\x80\x73\ +\x2e\x3d\x6b\x17\xc8\x8c\x1e\xd1\xe4\x99\x49\x7a\x0e\x9d\x12\x8b\ +\x7f\xd0\x93\x91\xdc\x1a\xb8\xa2\x52\x0c\xce\xd3\xfc\x97\x68\xfa\ +\x61\xa5\x45\x3b\x39\xdc\x68\xcf\x3e\x7b\xa9\xdd\x73\x7c\xae\xfd\ +\xe0\xef\xfd\x0b\xed\x9b\xbe\xfe\x8f\xb4\x4d\x14\x5b\x9c\xf0\xfc\ +\xbe\xa9\x74\x56\x70\x6b\x6d\x8a\xca\x57\xb9\x8a\xcb\xf1\x9c\x86\ +\x1b\x89\x59\x63\x8d\x1b\xc7\x7a\x4f\x5a\x63\x8d\x9b\x87\xf5\x0b\ +\xb5\x35\xd6\x58\xe3\x4b\x17\xbc\x7e\xbc\x1e\x78\x45\x50\x97\x2f\ +\x38\x9e\xff\x02\x77\x5c\xf4\xcf\xe3\x68\x97\x15\xec\xea\x6c\xa5\ +\xf5\x80\x33\x38\xde\x04\xd4\x38\xea\xe9\xe3\x9d\x89\x62\xa1\xf7\ +\xd2\xe1\x23\xf8\x93\x74\xc7\xb8\x5b\x00\xf5\xd0\x5b\xbe\xae\x9d\ +\x7b\xe8\xfe\xf6\xbe\x7f\xfc\xaf\xda\xb9\xad\xc3\xb6\x71\xe6\x4c\ +\xdb\xe4\x6f\xb1\x21\xcf\x7f\xc6\x02\x4a\xd4\x88\x47\x41\x86\x6e\ +\x64\xc0\x75\xca\x76\x07\xe3\x45\xb1\x89\x35\x8f\x90\x52\xc5\x88\ +\xd8\x70\x17\x38\x97\xfd\xaa\x42\x24\x66\x9c\xcd\xac\x46\x36\x0a\ +\x51\xc3\xc0\x98\xc3\xd6\x09\x91\x95\xe1\x19\x87\x45\x5a\xf2\x33\ +\x98\xce\xdb\xb1\x15\x98\x39\x3c\x47\xa3\xb6\x90\x4a\xc8\x91\x82\ +\xb8\x18\x87\x53\xd8\x84\x9d\x90\x1f\x0b\x3e\x99\x47\xc6\x7a\xdc\ +\x30\x4a\x37\x97\x3f\xf9\xda\x83\x62\x3b\xa5\x69\xad\x82\x76\x0f\ +\x26\x31\x90\x94\xe8\x50\x22\xa4\x0c\x6b\x28\x5c\xdc\xc9\xe8\x3a\ +\xfa\x5f\x8d\x4c\x5a\x05\xf0\x72\xd9\x1f\x65\xa7\xd1\x30\x92\x27\ +\xd8\xd5\x3c\xae\xda\x1c\xf3\x84\xef\x37\xe4\x03\x93\x7a\x21\x87\ +\x72\xb3\xc0\x82\xd1\x93\x6a\x8f\x33\x43\xed\x3f\xa1\x6d\xba\x34\ +\x86\xd5\x19\x93\xb0\x30\x28\x18\xb5\x54\x82\x20\xb9\xd2\x41\x1a\ +\x0e\xf9\x52\xce\x20\x3a\x1c\xc5\x3f\x99\x52\xc5\x04\xe6\xa1\x52\ +\x50\xa1\x13\xb0\x8a\x4e\x7f\x84\x18\xdd\x36\x21\x11\xbe\x9e\x07\ +\x29\xf5\x79\xf8\x6e\x13\xd5\x31\xe1\xbd\x76\x7d\xee\xd0\x8c\xf3\ +\x89\xed\xfe\x2c\x26\x20\xb5\xd8\x8a\xe9\x0a\xb5\xb1\xad\x89\xd4\ +\xfb\x38\x89\xaa\x0b\xde\xc6\x7c\xb0\xad\x07\x3d\x3a\xb7\xf9\x37\ +\xd2\x78\x02\xe6\x4f\x48\x2b\xe2\x98\xff\x3f\x8d\x3f\x10\x01\xdf\ +\xe1\x51\xbb\x74\x74\xd4\x9e\x7a\xe4\x4a\x7b\xed\x9f\xfd\xab\xed\ +\x6d\x3f\xf6\x97\xdb\xd9\x33\xe7\xdb\xf1\xc1\x41\xdb\xd8\xf1\x6f\ +\xb9\x4c\x3b\x82\x1e\xf5\xbc\x80\xa2\x14\x42\x32\x5c\x07\x11\xed\ +\x59\x6e\x37\x43\xc9\x15\xaa\x61\x4b\x48\xe7\xaa\xa0\x55\xbe\xeb\ +\x16\xbb\x39\xf8\x02\x74\xf1\x92\xc6\xaa\xcd\x72\x1a\xe6\xbb\xc9\ +\x69\xb8\xd1\x98\xdc\x1d\xe7\xe8\xf9\xf3\x42\x48\x98\xe7\xf4\x3a\ +\xe3\x3b\x75\xdf\xcd\x7b\x30\x65\x27\x05\xef\xce\xd3\xfa\xb6\x4e\ +\xda\xe6\xc6\x36\x8e\xbb\xfd\xb6\xb7\x7b\xb1\xbd\xe1\x2b\xde\xd9\ +\x36\x2f\x1f\xb4\xf7\xbf\xff\x3d\xad\x9d\x3f\xd3\x76\xce\xc1\xb7\ +\xd0\x95\x54\xff\x56\x4f\x85\x87\x10\x7b\xd0\x0f\x2d\x8d\x01\x28\ +\xc6\x57\x2e\x61\x87\xb4\x42\x56\x67\xa0\x68\xa5\x98\xce\x04\x14\ +\x4e\x5f\xba\x12\x73\x3b\x61\x0e\xad\x14\xf6\x9d\x51\x55\xcf\x38\ +\x00\xe3\x75\x1f\xc3\x97\xe7\x85\x3e\x2e\xca\x3a\x66\xe9\x03\x25\ +\x53\x98\xb9\x97\xfc\xa7\x61\x9e\xf7\xbc\xe8\x63\xf2\x36\x31\x46\ +\x6f\xda\x14\xb5\x73\xd8\xfd\x54\x16\xb2\xf7\xf9\x7c\x9d\xc3\x3f\ +\x2d\x87\xf3\x2e\xb7\xbd\x88\xa9\xa7\x23\x68\x8b\xe9\x75\x67\xdf\ +\x16\x39\x10\xd9\xb9\x8d\x72\x21\xb2\x76\xda\x43\x1b\x4c\x62\xc6\ +\x14\xb3\xff\x36\x37\x21\x1e\x0d\x25\x27\xa9\x8f\x01\xa0\x2a\xd7\ +\xd8\x2b\xa6\xe3\x1e\xad\x65\xea\x89\xb9\x0d\x9c\x12\xb2\x1c\x19\ +\xb3\x82\xc6\xbe\xe5\x88\x41\x8d\xd8\xc4\x24\x7a\xce\xc7\x3a\x2a\ +\xcb\x9f\x25\x64\x5c\x54\x0e\x7d\x45\xac\x6a\xe5\x76\x29\x6d\xc6\ +\x9b\xe8\x10\x97\x4a\x42\x41\x88\x2f\xdc\x72\x8c\x22\x52\x09\xdd\ +\x66\x17\xa1\xcb\xdb\x75\x00\x3a\xcd\xbe\xed\xc2\xee\x58\xb2\x87\ +\x65\x2d\x6c\x89\xb1\xae\x19\x17\x16\x40\x2d\x7d\x43\xa4\x9f\xe1\ +\x39\x86\xec\x22\x7d\x79\x7e\xe9\xf7\x39\x5c\x10\x94\x56\x61\xc5\ +\xcb\xc3\x10\x71\x62\x03\x93\x33\x15\x16\xdb\x7c\x99\xa6\xef\x0c\ +\x0b\x56\x3a\xe6\xcf\x97\x8a\x7f\xe6\xb9\x27\xda\x3d\x47\xe7\xdb\ +\x1f\xff\xfd\x7f\xad\x7d\xd3\xd7\xfd\x3e\x04\x2d\xe0\xc5\x7d\x32\ +\x5f\xa7\xe1\x7e\x9a\xd2\x91\x44\xca\xeb\xa1\xc6\x0c\x3d\xbf\x17\ +\xcc\xef\x4b\x56\x63\x1e\x93\x6b\xbf\xc6\x1a\x2f\x0c\xeb\xbd\x66\ +\x8d\x35\x6e\x1e\xd6\x2f\xd4\xd6\x58\x63\x8d\x2f\x5d\x5c\xef\x3b\ +\xfe\x97\xcc\xd5\x00\x07\x52\x2f\x6a\x97\xe5\xf4\x16\x79\x06\xb9\ +\xaa\x7f\x16\xcb\x8b\xed\xb8\xe0\xb6\x6e\x55\xe5\x97\x7c\x5c\xe0\ +\xe8\x37\x1e\xe1\xd3\xdd\x0a\xf5\x2d\x2c\x7c\xf8\x7a\xdc\xee\x7d\ +\xc3\x9b\xdb\xd9\x57\xbc\xaa\xbd\xff\xdf\xbe\xa7\xed\x5d\x79\xbc\ +\xed\x9d\x3b\xd3\x4e\x0e\x17\x6d\x73\x2b\x6e\x33\x54\x2a\xf2\x97\ +\xc0\xda\xd9\x0d\xd6\xaf\x86\xd9\x65\xe9\x32\x9d\xea\x88\x78\xf2\ +\xd9\x17\x51\xcb\xb4\x93\xfc\x53\x1a\xbe\x25\x92\x0f\x8d\x6b\xb1\ +\xb5\x96\xab\xaf\xf5\xa6\x08\xbd\x67\xa5\xff\x3a\xe8\x53\x78\x4a\ +\x70\xef\xa3\x60\x4a\xb9\xaf\xce\x41\xe9\xba\x87\xb5\x44\xc8\x5c\ +\x0a\x4a\x84\x2d\xb1\xec\xab\x0c\x75\xce\x61\xde\x8b\x65\xc9\xfc\ +\x29\x4e\xa3\x66\x10\xd5\x9e\xf9\x68\xb2\xc8\xf5\x52\x80\xb9\x9b\ +\xf0\xc8\xb0\xe4\x0e\xb1\xb2\xce\xf4\x68\x98\xb8\xbb\x51\xe6\x32\ +\xb8\xee\x82\x32\xc9\xb9\x1e\x56\xc6\xf6\x3d\x63\x09\x8a\x65\x83\ +\x45\xdb\x1c\x32\xe7\xb5\x62\xbe\x5a\xb6\x57\x04\x16\x68\x1b\x65\ +\xcc\xaa\xa2\x4b\x60\xcc\x74\x51\x16\xe6\x56\x87\x38\xf5\x19\xec\ +\x97\x3a\xc1\xaa\xd8\x29\x99\x46\x48\x08\x1f\xdb\x36\x27\xe8\x21\ +\x0c\xb2\x2e\x54\xb3\xf0\x75\x55\xa5\xa6\x0d\xc7\x3c\x7e\x12\xdb\ +\xe3\xdc\xa4\x2d\x59\x75\x29\x6c\x30\xc3\x92\x8c\xc5\xe0\x43\x4f\ +\x9f\x79\xea\xc3\xd5\xd1\x89\xc8\xa5\x24\x05\xe8\xfc\x94\x93\x41\ +\x12\xaa\x4f\x35\xa3\x5e\x47\xb5\x23\x26\x3e\xb1\x3f\x45\x40\x70\ +\x6e\x06\x14\x47\x1f\x82\x19\xae\xf3\x2f\x13\x65\xc7\xcb\x34\x69\ +\xf6\x1f\x2f\x16\xe0\xcc\xf0\x67\xaa\xaf\x1d\x2f\xda\xb3\x8f\x5d\ +\x6d\xaf\xfa\xc1\x3f\xd7\xde\xfa\x57\xff\x46\xdb\x3b\x73\xae\x1d\ +\x5f\x3b\xe0\xbf\xd2\x8c\xae\xf8\x53\xd5\x4a\x30\x4a\x7d\x2f\x7c\ +\xe0\x9c\x88\x20\x09\x36\x1c\x18\xd5\x90\x42\x28\x93\x89\xa5\xec\ +\x01\xcf\x03\x9f\x0b\xa6\xd1\xd5\xba\xd1\x3a\x9f\x07\x6a\x17\xcb\ +\x83\x59\xa3\x62\x3e\x37\x39\x5f\xda\x47\x0a\x92\x3b\x6d\x2e\x93\ +\x3f\xcd\x5f\x51\x63\xeb\xb2\x0a\x31\x8e\x1c\x4e\x86\xf5\xeb\x18\ +\x8d\x29\x74\xed\xa3\xd6\xfd\x1b\x39\xd4\xc3\x57\x81\x38\x45\xf2\ +\xf8\x88\x82\x3a\x6c\x98\xb3\xb1\x85\xe3\xef\xb0\x6d\x6f\x6f\xb5\ +\xaf\x7a\xf5\x37\xb6\x93\xfd\xe3\xf6\x81\x0f\xbe\x1b\x87\xd9\x76\ +\x3b\x39\x8f\x83\x4e\x0f\x68\x19\x8f\x44\x7c\x7a\x75\xe6\x87\xda\ +\x8b\x06\xe1\xe1\x99\xa3\x2a\x53\xc7\x3d\x58\xd2\x54\x23\x45\xc7\ +\x22\x45\x27\x0c\x59\x68\x32\x34\xb2\x87\x8e\x86\xe3\xcf\xdf\xb2\ +\x88\x26\xa4\xa3\x29\x33\x9f\xa8\x7f\xc2\x72\x48\x5d\x4d\xe2\x8b\ +\x23\xe8\x91\x21\x8d\x11\x39\xf7\x4c\x7d\x89\x55\x1c\x71\x1a\x4f\ +\x8c\xbe\x2b\xea\xe8\x89\x61\xe7\x68\x93\xa9\x51\xd2\xd1\xe4\xe6\ +\xce\x31\xf7\x38\x35\xab\x51\xb7\xdd\x24\x2c\xce\x87\xda\x0f\x7a\ +\xaf\x45\xa6\x3f\x73\x2d\x84\xe9\xbc\x8e\x6b\xa7\x12\x12\x58\x66\ +\x2a\x58\xc7\xb5\x4a\x5c\x0c\x61\x9e\x99\x71\x92\x8a\xf1\x18\x35\ +\x27\x76\x8d\xe1\xab\x91\xd2\xb5\xcc\xef\x21\x42\xb5\xa6\x2c\xd1\ +\x19\x2a\x0a\x85\x02\x59\xe7\x62\x00\x3d\x04\x6f\xb1\x22\xa8\xfb\ +\x27\x81\x40\x67\x8c\x62\x58\x45\x8b\xe2\x49\xaf\xea\x5f\x14\xc3\ +\xba\x35\x1f\x0f\x41\x8d\x2b\x90\x7a\x69\xb3\x3e\x55\x71\x53\x4c\ +\xfb\x9c\xc6\x17\x51\x14\xa0\xc7\xe4\xd8\xd1\x86\xbf\x87\x15\xa5\ +\xf7\x31\x71\x86\x01\x61\x2d\xb8\xa0\xbb\xd2\x6d\xaa\x11\x23\xa3\ +\x38\x84\x1a\x3f\xb6\xbf\xda\xea\x22\xba\x32\xe5\xac\x53\xc1\x51\ +\xdb\xaf\x3d\xcc\x0e\x61\xc5\x2e\x1e\xdd\xe3\x8c\xd8\x87\x14\xe7\ +\x50\xb5\xe2\x1c\xa3\x6b\x27\x6e\xa6\x23\x7a\xbc\xf0\x7f\xd1\x3e\ +\xf9\xd4\xa5\xf6\xc0\xc6\xd9\xf6\xc7\xbf\xff\xaf\xb4\x6f\x7a\xeb\ +\xf7\x9b\xc7\x17\xcf\x99\xfc\x33\x8f\x59\x36\x8a\x15\xf9\xc2\xc1\ +\x4c\x65\x4f\xe6\xef\xb4\x7a\x2f\x94\x27\xb8\x5e\xd7\xf3\xaf\x71\ +\x2b\x62\xbd\x47\xac\xb1\xc6\xcd\xc3\xfa\x85\xda\x1a\x6b\xac\xf1\ +\xa5\x81\x55\xd7\x7c\xe4\xae\x87\x2f\x99\x2b\x02\x0e\x24\x07\x4b\ +\xbd\x0e\x8c\x97\xfb\xb0\x97\x6e\x36\x00\xa5\xd4\x95\x84\x4e\x53\ +\x4b\xea\x21\xe5\x93\x62\x5d\x4f\x52\x69\x53\x06\xa7\x7e\xf9\x50\ +\x34\x7c\xf2\x83\xa3\x64\xff\x74\x53\xf2\x4f\x5a\xe0\x06\xe2\xfe\ +\x37\xbd\xa9\x9d\x7b\xcd\xc3\xed\x83\x3f\xf5\x4b\x6d\xf1\xf8\xa3\ +\x6d\xeb\xe2\x99\xb6\x0d\x7e\x6b\x9b\x79\x4c\xc3\xc8\xa1\xf2\x27\ +\xf8\x46\x1f\x7a\x2c\xab\x52\x79\xdb\x92\x37\x34\xf6\x56\x30\xbf\ +\xdc\xde\x94\x80\xe5\xd8\xc0\x2c\x46\x0f\x29\xd4\x59\xd4\x28\x18\ +\xa1\xf0\x45\x60\x8e\x65\x60\xc5\x43\x88\x20\x46\x7e\xea\x11\x91\ +\x63\x96\x2c\x58\x91\x27\x80\x18\xb7\x70\x89\x51\x23\xcc\x6c\x56\ +\xc0\xbc\xea\xf6\xe2\x58\x93\x9e\x53\x97\xd3\xe1\x70\xb4\x3d\x2c\ +\x15\xca\xba\x24\x52\x67\xa7\x85\xaf\x21\x2f\x00\x63\x3f\xf0\xd8\ +\xb5\x2a\x2b\x6b\x91\xcc\x3e\x21\xbd\xa2\x46\xdf\xe0\x33\x90\x5a\ +\x41\x5f\x17\x2f\x34\x9e\x60\x8e\x06\x0e\x15\x7a\xa8\x2b\xe0\x01\ +\xd5\x2e\x26\xdd\x4d\x0c\x82\x84\x66\x06\xea\x29\xeb\x28\x64\x8f\ +\xf6\xb3\xcd\x85\xbe\xeb\x65\xd6\x69\x9c\x23\x5d\x99\xcf\xdd\x72\ +\x84\xa7\x56\x18\xa8\xd3\x91\x04\xaa\x01\xbd\x9b\x85\x9f\x8c\x63\ +\x16\x63\x7d\x90\x12\xa1\x13\x3d\x37\x42\x72\x9c\xfd\xa7\x77\x65\ +\x58\xb8\xa1\x4f\xad\x14\x1d\xb1\x61\x8f\x5a\x54\xcc\x9b\x8a\xb6\ +\x07\x00\x52\xd9\x60\xc1\xf6\x59\xda\xb2\x7d\x9b\xb1\x2e\x65\xcc\ +\x0e\x5d\xd6\x8c\x34\x24\x87\xa7\xd7\x83\x48\x17\xe5\xd8\x0e\xa3\ +\x5e\x3f\x6f\x8b\xc3\x02\x9b\x0f\xf4\xf9\xd2\x4c\x0b\xfd\x0b\x68\ +\xca\x3d\x6e\x47\x8b\x45\x7b\xee\xf0\xa8\x3d\xf1\x5c\x6b\xaf\xf8\ +\xe1\xbf\xd8\xde\xf6\x97\xfe\x37\xed\xec\xde\x39\xfd\xc6\x1a\x7f\ +\x31\x79\xfc\xcf\xb4\xe8\x23\x84\xfa\xd1\x42\x83\x7e\x82\x46\x06\ +\x00\xa2\xd5\x91\x65\x8d\xcd\xf9\x4b\x5f\x82\x3c\xe3\x0a\xb5\x12\ +\x88\x3b\x3d\x24\x3d\x59\xe8\x46\x0a\x7e\x8e\xa8\x65\x5f\xa4\x2e\ +\x5e\xd2\xc8\xdd\xe1\x46\xe7\x86\x71\xa7\xc5\x92\xef\x9b\x34\x0b\ +\xdf\x00\x7a\xbd\x54\x20\xeb\xae\x51\x40\xca\x51\x3e\x5f\x0e\x7f\ +\x28\x3a\x96\xe1\xa3\x54\x60\x0f\x80\x4a\xce\xb6\xf7\xce\x61\x2b\ +\x38\x72\xe8\x63\xf5\x4d\xfe\x8f\xda\x13\xfe\x39\xd5\xcd\xf6\xba\ +\x57\xbf\xa3\xdd\xbe\x7b\xae\xbd\xf7\x97\xfe\x4d\x3b\xc0\xf5\xd9\ +\xf6\x6d\x7b\xfa\x9f\x6a\xfc\x13\x7e\xce\xf1\x9f\xf2\xcb\x6a\x1d\ +\x38\x90\x35\x8c\x25\x24\x1b\x92\x71\x1a\x4b\xf2\xd3\x4a\xb2\x0a\ +\x95\x87\x61\x07\x4f\x18\x14\x64\xe3\xd8\xd3\xea\xd4\xf5\x63\x1b\ +\x66\xf6\x32\x07\xdd\x53\x5f\xc9\xcf\x73\x42\x50\xe9\x59\x85\xeb\ +\xf9\x88\xe7\xf3\x0f\x2c\x8f\x54\xb9\xb1\xbe\xcb\x18\xfc\x3c\xa2\ +\xda\xd4\xab\x1d\x7b\xd3\x75\xb2\x09\x73\x13\x8f\xc6\xb1\x3a\x96\ +\x15\x75\x8d\x0c\xb7\x22\x44\x50\x31\xac\xb2\x9d\x6a\x1e\x49\xbd\ +\xea\x1c\xda\x54\x4f\x98\x73\x5b\x3a\xe9\xa1\x63\xdd\xa4\xc5\x80\ +\x72\x73\xd2\x48\x9f\xb8\xce\x03\x38\x66\x6a\x9c\xab\xbb\x5e\xe6\ +\x8d\x84\xf4\x47\xad\x58\xba\xbb\x60\xd4\x9c\x23\x6a\x86\x3f\x7b\ +\x18\x15\x03\x50\xbb\x6f\x4a\x0f\xcc\x78\xc5\xfb\x83\x66\x54\x0e\ +\x46\xb0\x06\x9f\x06\xe8\x3e\xeb\x58\x8b\x0a\xc0\x0a\xc2\x82\xf6\ +\xa8\xbb\x6a\x1d\x45\x75\xbe\xc4\x07\x57\x5d\x1d\x11\x90\xd7\x34\ +\xf3\x98\xa9\x8d\xa6\xf3\xa9\x50\xc6\x36\x0b\x6a\x78\xd1\x9e\x3a\ +\xd0\x49\x78\xdf\x04\xbe\x82\x5a\xae\x67\x01\x1e\xfb\xd7\x52\x49\ +\xd8\x93\xd3\x1b\x31\xc9\x65\x00\x65\x5e\x9f\x21\x18\x76\xbe\x68\ +\xe3\xb5\x10\xc1\x39\xa0\xd7\xa8\xc7\x88\xc2\x00\xe6\xb1\xe5\xcb\ +\x33\xf8\xb9\x6c\x81\x3a\x59\xb4\xc3\xc3\xe3\xf6\xf4\x23\x9f\x6d\ +\x0f\x6c\xdf\xdf\xfe\xfd\x3f\xf2\xd7\xdb\x3b\xbe\xe6\x7b\xb1\x7b\ +\x1f\xe9\xba\x8b\x7f\xee\xd1\x2f\xd3\x96\x2b\x9e\x86\xb1\x3a\xa7\ +\xc5\x81\xa7\x4b\xee\xd3\x62\x12\xe9\x67\xd5\x39\xae\x97\xfb\x7c\ +\x75\xd7\xb8\x15\xb1\xde\x2b\xd6\x58\xe3\xe6\x61\x03\x37\xe9\xab\ +\xce\xcc\x6b\xac\xb1\xc6\x2d\x80\x2f\xf9\x83\xff\xf9\x06\x38\xbf\ +\x22\xf8\xa2\xac\x50\x76\xca\xc1\x50\x4f\x49\x4c\x2f\xec\xbb\x3b\ +\xa1\xb0\x8c\x05\xf4\x70\x33\xe2\x32\x3e\x54\xfe\x83\xe4\x09\xaf\ +\x53\xb7\x08\x00\x45\x55\x37\x64\xdc\x74\x0c\x7e\xf6\x93\xc8\xba\ +\x01\xc1\x2d\xc2\x26\xc6\xb7\xb5\xd3\x3e\xf8\xd3\xef\x69\xef\xfe\ +\x4f\xfe\x7a\xbb\xf0\xc9\x0f\xb5\x07\x5e\x76\xb1\x9d\xc5\xdd\xc5\ +\x26\x7f\x99\x0d\x75\x78\xc3\xa1\x34\xe6\x44\xcd\x4d\xe8\xbc\x4d\ +\x51\xef\xea\x4b\x4a\xc8\x0a\x73\x63\x95\xd4\x06\x46\xbd\x09\x4d\ +\x28\x3e\x49\xc4\xc5\x6f\x4e\x70\x36\xc5\x87\xab\xa7\x55\x45\x63\ +\xb3\x9e\xff\x07\x44\xc8\x4e\x18\x62\x11\x8d\xe5\xb0\x69\xc4\xad\ +\x59\xb7\x53\x8d\x51\xa9\x31\x54\x36\xfc\xf4\xea\x5e\x31\xfc\x12\ +\x6a\xb8\x8e\xbe\xb1\xeb\xff\x9b\x44\x4d\x8e\xaf\xcc\x41\x4a\x46\ +\xf3\x03\xbb\x53\x00\xf5\xcc\xaa\xa8\x31\x8e\x88\xc4\xbe\x7d\xa6\ +\xe8\xf1\xa7\x14\xac\xd4\xb4\xf6\xf5\x50\xb2\x72\xe0\x4b\xb5\x41\ +\xa8\x20\x1a\xfa\x38\x07\x92\xc1\xd1\xd0\x5d\x75\x41\xd0\x96\x3d\ +\x78\xa0\xfa\x2b\xc8\x9d\x86\x79\x6c\x62\x55\xce\x29\xb1\xab\xba\ +\x74\x3e\x9a\x70\x78\x6f\xf4\x7e\xdb\xf7\x5f\x69\x23\x77\x74\x69\ +\xdf\xbc\xea\x3c\xb6\x46\x8d\x5c\xa0\x1a\x4b\xce\x29\x72\xb7\x18\ +\x61\xb3\x60\x99\xd9\xab\x21\xaa\x86\xc5\x76\x32\x5f\x62\xa1\xf7\ +\xb0\x50\xa6\xb9\x58\xff\xae\x03\xd0\xab\xbf\xeb\xdd\x86\x92\x7a\ +\xe5\x43\x0e\x3b\xd6\xc6\x9f\x21\x89\xae\x60\x6c\x5d\x07\xaa\x11\ +\xf9\xc9\xd4\x87\xd7\x5a\x3b\xad\x17\x6d\x2c\xf2\x85\x37\x12\x28\ +\x72\x77\x9e\x90\x5d\xf7\xef\x73\x24\x45\xe9\x2a\x6e\x35\x36\xb6\ +\x71\x32\xd0\xbe\x42\x1d\xe7\x3f\x3e\xd0\xe9\x2f\xd5\x8e\x59\x87\ +\x01\x8b\xb6\xc0\x39\xfc\x99\xcb\x57\xdb\xe2\xd2\x56\x7b\xf8\x47\ +\xfe\x72\xfb\xea\x3f\xf7\x1f\xb6\x0b\xbb\xe7\xda\x62\x7f\xbf\x6d\ +\xee\xe4\xba\xe0\xfc\xaf\x92\x38\xab\xf5\xae\xa0\xb8\xb3\xb0\x2d\ +\xac\x38\xcb\x02\x4d\x4a\x21\x6d\xaa\x54\xd2\x4e\x12\xe0\x4f\x5c\ +\x8c\x89\x38\x1d\xc8\x77\xf7\x39\xaf\x46\x1f\xca\x4a\x94\xf1\xdd\ +\x2c\xdc\xe4\x72\xb7\x04\xae\xb7\x91\xe6\xf3\x99\xb1\xe4\xb5\xc1\ +\xa1\x64\x4c\xee\x7f\xd7\xc3\xa4\x5e\x35\x4a\xee\x52\x99\xe8\x07\ +\xb2\xbb\xf8\x83\x44\x56\xd4\x5a\x86\xce\xe3\x39\xe9\x7a\x4e\xe8\ +\xfb\x71\xee\xa1\xb6\xf3\x4c\x9e\x38\x3e\x39\x6a\xdb\x7c\x7b\xdd\ +\xf6\xda\x4f\xfe\xdc\x8f\xb7\xbf\xfd\xcf\xfe\x8f\x6d\x71\x76\xbb\ +\x9d\x79\xf8\xf6\xb6\x83\xe3\x7e\xeb\x64\xab\x6d\xf0\x37\xd7\x32\ +\x93\x7d\x50\x28\xdb\xad\xa6\x42\x45\x87\x4d\x8d\x92\xb4\x86\xa8\ +\xf1\x40\xf1\x25\x91\xc0\xb5\xd2\x4b\x19\x06\x69\x41\x0f\xa8\xef\ +\x5c\x26\x99\x66\xc3\xdf\x7e\xa5\xc2\x71\xe8\xf7\x2c\xc2\xa1\x33\ +\x4a\xc4\x29\x46\x3c\x44\x91\x52\xd9\xe4\x82\x46\x82\x2d\x3f\x1c\ +\x1b\x2d\x05\xd3\x13\xeb\x4a\x55\xbc\x25\x15\xa9\xe1\x1a\x7c\xca\ +\xf4\x67\xfd\x69\x4c\x67\xa5\x53\xce\xb6\x46\x04\x8b\xd3\x98\x26\ +\x5e\x23\x72\x3c\x47\x22\xa4\xe7\xb4\x6a\x4d\x98\x2e\x2b\x11\x75\ +\xd0\x78\x4d\x67\xfe\x1e\x3f\xfa\xcc\x3a\xc9\x19\x96\xd1\x3b\xda\ +\xa8\x36\x5f\x0f\x02\x2e\xbd\x30\x98\xa1\xd7\x16\xa6\xd6\xb2\x6d\ +\x24\x33\xeb\x41\x98\x64\x63\x42\xf2\x10\x98\xc6\x2e\xd7\x24\xf4\ +\xad\xd0\x8d\xec\xec\xdf\xf3\xbb\x9c\xb3\xaa\x7f\x86\xa9\x44\x02\ +\x06\x33\x6b\xd5\x84\xaa\x4e\xc8\xec\x85\xd1\x25\x03\x82\x5a\x1f\ +\xc5\xa0\x07\x8a\x91\xb1\xfe\xd8\x31\xed\x67\x32\x40\xb7\x18\xa7\ +\xc7\x33\x02\xc3\x83\x2f\xfa\x90\x53\x6a\x50\xf5\xb1\x99\xf9\x12\ +\x81\x52\x1f\x7c\x77\x65\x7c\x27\x3c\x37\x42\x2a\x92\xd3\x38\xf6\ +\x1f\x4a\x87\xfb\xcb\x18\x3b\xba\xbb\x6e\x80\xe2\x27\x46\x4c\x48\ +\x22\x74\x8a\xcc\xec\xba\x7c\x1c\x0d\xad\x92\x84\x73\x61\xb5\x23\ +\x6c\xa0\xea\x04\x6f\x5d\xfb\xfe\x4f\x89\x7a\x31\x69\x6e\x73\x2e\ +\x20\xc1\xab\x37\xee\x3b\x39\xa0\x80\x7f\x23\x97\x0a\x4a\x22\x61\ +\xc1\x00\x5e\x0e\xf1\xfe\x96\xff\x2f\x0d\xf2\xe0\xca\x61\xbb\xf4\ +\xf4\x33\xed\x35\x17\x5e\xdb\x7e\xf8\x8f\xff\x58\xfb\xda\xd7\x7e\ +\x47\x5b\x9c\x1c\xea\x37\xd6\x36\x37\x39\x10\xff\x91\xc7\x69\xcf\ +\x9a\x71\xc1\x7b\x02\x51\xd6\x1a\x0a\xf5\x0c\x1a\xd1\xab\x40\x9f\ +\xa2\xaf\x83\x79\xcc\xf5\xea\xad\xb1\xc6\xe9\x58\xef\x39\x6b\xac\ +\x71\xf3\xb0\x7e\xa1\xb6\xc6\x1a\xb7\x30\xbe\xe4\x0f\xfe\x1b\xb9\ +\xb6\xac\xb8\xe9\x2b\xc4\x82\xa7\x5d\x76\xd4\xce\x96\x63\x74\xcd\ +\xaf\x90\xac\x51\xe2\xbb\x1a\x4a\x9e\x86\x29\xa8\x73\x89\x0b\x7e\ +\x41\xfe\x58\xd2\x4f\x33\xf3\x89\xec\x82\x1d\xc7\x0d\x87\x6d\x2c\ +\xbc\x83\xa8\x3e\xf9\xb9\xe0\x16\x00\xfc\xc6\xee\x6e\xfb\xc4\xfb\ +\x7f\xa9\xfd\xe4\x5f\xfb\xeb\x6d\xf1\xc1\xf7\xb6\x07\x1f\xba\xad\ +\x5d\x3c\x7b\xa6\x6d\xf1\x25\x1e\xee\x20\xf8\x8f\x9a\xf9\xab\x0e\ +\xf9\xed\xc2\xb7\x49\x6c\x43\xb2\x14\xe4\x32\x7c\x63\xc1\xc6\xd2\ +\xf9\x23\x96\xfd\x7b\x1c\xe2\x22\xd8\x51\xc9\xa3\x45\x8c\x7b\xf2\ +\x78\xcd\x0e\xf4\xb2\x44\xe8\x12\x13\x3e\x6e\x77\x22\x38\x73\x96\ +\x73\xf9\x1b\x20\x65\x2c\x13\x7f\x8c\x0d\x8d\x65\x8c\xb1\xdb\x73\ +\xbf\xa5\x46\xdf\x09\xe6\x50\xcb\x3e\x42\x04\x4f\x64\x9f\xcc\xd3\ +\x7e\x50\x7d\x21\xc9\x54\x9d\x90\x2d\x47\x61\x48\xe6\xfe\x20\xc4\ +\x18\x3b\xaa\xef\xf3\xc1\x8a\x3a\xf3\xbb\xda\x44\x8e\x6f\x3a\x2c\ +\xc7\xd3\x27\x5e\x44\xc8\x40\x52\x44\x75\x95\x10\x21\x63\x3a\x6a\ +\x22\x2c\x98\x4b\x21\x15\xe9\x9c\xd7\x4d\xd4\xbe\x2b\xc4\xaf\x4a\ +\x76\x42\x7a\x68\xa7\xd7\x1c\xad\xe1\x1d\x98\x76\xe2\xa3\x80\x28\ +\xfc\x2c\x4d\xa6\xca\x55\xc7\xb4\xce\xca\xae\x54\xbd\xa0\x1b\xd3\ +\xbe\x46\x0c\xf8\x9a\x80\x6d\xd7\xcd\xb2\xdd\xeb\x30\xa4\x26\x51\ +\x45\xea\x85\xf3\x43\x27\xf6\x61\xb2\xd7\x29\xb1\x5c\xd8\x53\xfa\ +\x7a\x7c\xb7\xb3\xb1\xb4\x3a\xc6\xdd\xd7\x38\x63\x08\xad\x47\x21\ +\x8a\xbd\xb4\xdb\xd6\xb0\x6c\xb0\x50\xe4\x6c\xb8\x05\xa2\x8e\xc7\ +\xcb\xd6\xbe\x5c\x87\xf1\x10\x9a\x3c\x8f\x51\x57\xe0\xff\x47\xcb\ +\x97\x69\x8a\x39\xe6\x7f\xf1\x38\x69\x5b\xc7\x8b\xb6\x8f\x3a\xcf\ +\x5d\xbe\xdc\x2e\x5f\xdb\x6d\x6f\xfa\x4b\xff\x71\xfb\xda\x1f\xfe\ +\x33\x6d\x67\xeb\x6c\x3b\x3e\xda\xf7\x4f\x5c\xf7\xe2\x2a\xca\x62\ +\xaa\x41\x55\x54\xf4\x67\xb7\x75\x83\x11\x21\x72\x72\x93\xa3\xe4\ +\x53\xa5\x3c\x4e\xe5\x0f\x3d\x63\xfa\xf7\x1b\x9b\x4b\xe8\x3e\x34\ +\x94\xd1\xb5\xc5\x69\x89\xd7\x2b\xf8\x79\xe2\x45\x2a\xfb\x92\xc7\ +\xf5\x36\xc5\x1c\xd7\x8d\xab\x85\x82\xcc\xfd\x8a\xfb\xe0\xcc\xb5\ +\x12\x7d\x3f\x04\x32\xa7\xc6\xcf\x6c\xa9\x0a\xf3\x4b\x68\x9d\x93\ +\xf4\xf0\x14\x74\x2f\xc5\x0b\x2c\x72\x58\xec\x02\xa0\x74\x3f\x14\ +\xf2\xd1\x37\x8f\x5f\xaa\xf9\xe7\x0f\xf3\x98\xf1\xb1\xca\x0b\xa5\ +\x43\xd0\xfc\xa3\x60\x67\xda\xfb\xde\xf7\x3f\xb6\xff\xe7\xff\xf8\ +\x9f\xb5\xa7\x37\x9f\x69\xe7\x5e\x7d\x77\xdb\xc3\xd5\xd4\x06\x97\ +\xcd\x4d\x0c\x65\xc3\xbf\xf5\x0f\x86\xd8\x9c\x74\xcf\xaa\xe6\x45\ +\x86\x83\x82\xab\xd0\xaf\x97\xf4\x71\xcf\x69\x2b\x57\x12\xac\x06\ +\xca\x0f\x09\x51\xb2\x6d\xf2\x49\x32\xea\xf1\x05\x20\xeb\x41\x17\ +\xdd\x95\x90\x58\xf2\x12\x54\x50\xfd\xe1\x63\x13\xc2\x9a\xc6\x06\ +\x91\x31\x66\x43\x27\x6f\x49\x25\xf9\xb9\x94\x88\x40\xd7\x94\x2a\ +\x29\x35\x73\x89\xce\xc9\x0a\x61\xb2\xea\x09\xa9\xdd\xf6\xd6\x63\ +\xcb\xee\x6c\xd5\xf5\x85\x1d\xeb\x13\x81\x56\xfc\x99\x62\x42\x64\ +\xa5\xd2\xa2\x71\x25\xb6\x23\x98\x9a\x19\x6e\x45\x68\x20\x06\x47\ +\x99\xde\xd4\x13\x64\x88\xec\xcb\x39\x46\x56\x58\x06\x59\xae\x9f\ +\xbe\xfd\xac\x0e\x11\xed\x9a\x19\x04\x29\xf5\x94\x84\x08\xcb\xd9\ +\x4c\x82\x2d\x91\x59\xd5\xce\x48\x62\x44\x27\x13\xc0\x20\x15\x0b\ +\x97\x3c\x13\x77\x64\x14\x6e\x96\x6d\x80\x9c\xf2\x26\x9e\x2f\x56\ +\x5b\x43\x86\xc9\xe4\xed\x49\x8d\x7c\x75\x4e\x02\xbb\xaa\xef\xf5\ +\x3c\x6e\x34\xe9\xe6\xf9\x6a\x27\xc7\x3e\xd6\xc1\x7e\x42\x31\x68\ +\xec\xa2\xd2\xb5\x68\x46\x2d\x21\x95\x8c\xab\xf1\x8c\xed\x81\x00\ +\xf4\xbe\x2f\x15\xbe\xab\x35\x96\xc6\x2c\x86\x3d\xd7\x1f\x34\xea\ +\xe8\xeb\x17\xdb\x5e\xee\x11\x33\xf6\x08\x60\x9e\x0a\x7b\xa9\x62\ +\xe6\xf3\x13\xce\x1e\x13\x8d\x79\xfe\x28\x00\x15\xce\x29\x25\xc1\ +\x00\x6c\xab\x3c\x57\xb0\x86\x04\x2c\x7c\x8e\x79\xfd\xc2\x03\x41\ +\xff\x37\x1c\xdf\x1d\x16\x9b\xed\xea\xd1\xb5\x76\xe9\xb3\x8f\xb7\ +\x37\xde\xf3\xce\xf6\x43\x7f\xec\x47\xdb\x9b\x5e\xfd\xb6\xb6\x38\ +\xde\xc7\x79\x5a\x5b\x4b\x73\xaa\x6e\xa3\xe5\x7e\x99\x7b\x83\xdb\ +\x0a\xf7\xe6\x11\xa7\x1a\x51\x29\xc6\x06\x5e\x81\x74\x44\xfe\x75\ +\x71\x6a\x91\x35\xd6\xb8\x2e\xd6\x7b\xce\x1a\x6b\xdc\x3c\xac\xff\ +\xe4\xe3\x1a\x6b\xac\xf1\xa5\x89\xd3\xae\x25\xeb\x55\xc0\x8b\x7e\ +\x45\x70\x23\x1d\x30\x86\x83\x2d\x32\x55\x34\xae\xe0\x56\xe8\xeb\ +\x05\x25\x62\x06\xc8\xd1\x4e\x49\x35\xf5\x28\x9a\x36\xa9\x9e\x1b\ +\xdc\xdc\xdf\xb9\x78\x4c\xc0\x07\x4a\xc7\xd0\x79\x07\xa3\x72\xbc\ +\x51\xa0\x5c\xb4\xdb\x5f\xfe\x50\x7b\xd9\x37\xbc\xa3\x7d\xf2\x93\ +\x9f\x68\x9f\xf8\x77\x1f\x6c\x77\x9c\x45\xc8\xf6\x76\xdb\x64\xea\ +\xd6\x66\xfc\x56\x44\xe4\x2d\xc1\x64\x6f\xa9\xb0\x5b\xaa\xf9\xbf\ +\xd0\x34\x16\xd1\x3d\x2e\x7f\xa2\x59\x8c\xdd\x10\xe4\x6c\x07\xd5\ +\xd1\x7d\x89\xe5\x80\x21\xba\x0e\x25\xfb\x91\x2c\xf9\x05\x31\x3c\ +\x21\x6f\x9d\x44\x65\xaa\x85\x94\x12\x3a\xc3\xb4\x76\xef\x76\xc2\ +\x4f\x6f\xcc\x08\xdf\x07\x96\x98\xae\x32\xb6\xe6\xae\xc6\xea\x88\ +\x72\x0b\x8b\x80\x5a\x67\x75\xcd\x39\xc7\xec\xd5\x95\x85\xeb\xb8\ +\xba\x93\x22\xca\x4c\xab\x41\x1b\x86\x20\x3f\x39\x35\x04\xe5\x6c\ +\x0c\x50\xb5\x9d\x20\x0b\x6b\x9e\x82\x64\x71\x8c\xd8\x49\xb4\x2c\ +\xba\x88\xea\x59\xc5\x25\xa2\x94\xb1\x2a\x40\x45\xd5\xc8\x3c\x0d\ +\x23\x95\xa3\x8a\x1b\x7e\xe9\xc4\xa4\x17\x60\x95\x3e\xab\x5f\x43\ +\x00\x99\x9d\x1b\xce\xe7\x1d\xbf\x30\x1c\x7d\x33\x08\x61\x14\x8e\ +\x2a\x57\x77\x1e\x26\xbb\x92\x35\x26\x94\xbe\x3d\xd2\x91\x31\x29\ +\x09\xe9\x98\xa1\xe2\x93\xc8\x00\xca\x09\x17\xf3\x92\x01\x13\xdf\ +\x00\x6d\x1e\x8f\xe6\xfb\x48\x7a\x3c\x1f\x96\x4f\x67\x18\x8e\xf0\ +\x8d\x58\x55\x08\xdd\x42\x90\xce\x26\xce\x79\x80\xfb\x89\xd9\xf7\ +\x13\xa0\x1e\x26\x09\x70\x2f\xe8\x0f\x91\x21\xf5\xf0\x8d\x12\x0b\ +\x1f\xe8\xf0\x4f\x3c\x4a\xe7\xff\x4c\x63\xd0\xd1\x51\x3b\xdc\xdb\ +\x6e\xcf\x3c\xfe\x64\x3b\xdc\xb9\xa7\x7d\xcd\xff\xe2\x3f\x6a\x6f\ +\xfc\xd3\x7f\xb6\xed\x6e\xee\xb6\xe3\x6b\xd7\x70\xbe\x3e\xd1\x43\ +\x7a\x75\xab\xb2\x68\xf8\x32\x0d\x5f\x7a\xc8\x84\x85\xf5\xb5\xd0\ +\x07\xd9\x87\x29\x40\xc9\xc1\x09\x61\xe4\x64\xe6\x46\x49\x5b\xa2\ +\xea\x09\x18\x13\xbb\x20\x73\xc2\xdf\xbb\x16\x41\xab\x26\xce\xed\ +\x17\x01\x2f\x72\xf9\x97\x24\x4e\x9b\x93\x55\xfc\x9c\xab\xfb\xd2\ +\x2a\x70\xdf\xd1\xfe\x47\x1d\xcb\x29\x61\x82\x6a\x97\x78\xa2\xc6\ +\xd3\xaf\x98\x02\x1d\x43\xfc\xb0\xc1\x51\x93\xba\x7c\x6c\x48\xd0\ +\x8e\x85\xe5\x45\x17\xae\xea\x6a\x2d\xc5\xc7\x58\xf4\xa0\x15\xc7\ +\xc3\x09\x1f\xec\xf2\x87\x8e\x70\x84\x6e\xb4\x83\xf6\xc0\x03\x6f\ +\x6a\x0f\xdc\xf1\x9a\xf6\x1b\x9f\xfc\x60\x7b\xf2\x77\x3e\xd9\x0e\ +\xcf\xee\xb6\xcd\xbd\xcd\xb6\xa5\x73\x87\xff\xf4\x63\x22\x2a\xa5\ +\x62\x4c\x74\x9f\x33\xe6\x6e\x2e\x5e\x6d\xb7\x92\x52\xd1\xc0\x99\ +\x87\x67\x06\x53\xb0\xcd\xdf\xf8\xd0\x0b\x35\x60\xac\x17\x79\x2e\ +\x19\x59\xd1\xa3\x26\xc8\x2e\x52\xeb\x31\x3a\xd7\x01\x4b\x49\xab\ +\xaa\xcc\x11\xe3\xbb\x91\x50\x60\x12\x16\x86\x2a\x14\xc7\x50\xb9\ +\x1e\x51\x1f\x5f\xfe\x61\xad\x59\x8d\x0e\xc7\x0d\xcc\x6c\x26\x05\ +\x95\xf9\x34\x6b\x94\xe7\xda\x4c\xe5\x89\xb4\x35\x8e\x28\x46\x6e\ +\x94\x65\x5b\x35\xeb\x15\xab\x79\xd8\xdc\x3f\xfb\x0e\x60\xa8\xae\ +\xf6\x5b\xf0\xe1\x9a\x67\x46\x90\xf5\xea\x55\xca\x2c\x3a\x4a\x51\ +\xea\x70\xee\xa6\x23\x33\x3e\xab\x11\xe6\x93\x1b\x91\x13\x28\x00\ +\x4d\xb8\xaa\x99\x2d\x21\x4d\xeb\x38\xe3\x02\xb3\xd5\x07\xd0\xdb\ +\x12\x17\x00\x5f\xab\x38\x2e\xd7\x00\x28\x79\xa9\x4e\x7d\x61\x4d\ +\x85\x95\x6e\x0c\xb5\xbf\xf4\x9a\x04\x16\x84\xa9\x11\xac\xd0\x89\ +\xae\xa6\xa2\x62\x36\xa8\x76\x3f\x51\x0d\x38\x23\x6a\x16\x24\x57\ +\xc1\xb2\x9f\xc8\x71\x78\x7b\x67\x80\x35\xed\xee\x84\x0c\xab\xdc\ +\x9f\x4c\xa7\x33\x50\xcd\x79\x4c\x1d\x48\xd4\xa9\x94\x55\xdf\xd7\ +\xb2\xe7\xb1\x7f\x10\xd4\xf2\x7c\x85\xba\x5c\x5f\x1d\x0f\x66\x75\ +\x3b\x8c\xfb\x59\xfe\x09\x47\xf6\x7a\xe5\xca\x73\xed\xf2\x63\x97\ +\xdb\x9b\x1f\x7e\x5b\xfb\xd3\x7f\xe2\x2f\xb7\xd7\xbf\xe2\xcd\xed\ +\x68\xc1\x1f\x8e\xf0\x9f\x79\xec\x50\x3c\x6a\xa0\xf1\xe9\x5f\x56\ +\x59\x12\xec\x33\xd4\x32\x2a\xc3\xb6\x5a\xd6\x43\x9a\x75\x36\x00\ +\xcb\xf4\x94\xae\x5c\x07\x37\x12\xb3\xc6\x1a\xcb\x58\xef\x39\x6b\ +\xac\x71\xf3\xb0\x7e\xa1\xb6\xc6\x1a\x6b\x7c\x69\x60\x72\x21\x79\ +\x1d\x30\x26\x97\x39\xbe\x60\x57\x08\xf5\xe2\xb9\x0e\x06\xb2\x8f\ +\xc1\x31\xba\x37\x4d\x4e\x54\xcd\x0d\xdd\x57\xe7\x21\xb1\x64\x88\ +\xae\xdc\x43\x17\x3f\x5b\x44\xe3\x06\x81\x6a\xe1\xfd\x93\x79\x71\ +\x83\xd2\x5f\xa6\x51\x46\x4e\xfc\xa4\xb6\x40\x15\x83\x3c\x39\x5c\ +\xb4\x8b\x2f\xbb\xaf\x3d\xf0\xf5\x6f\x6f\x4f\x5e\xb9\xd2\x3e\xf4\ +\x9e\x5f\x6c\xb7\x6f\xa3\xc6\xee\x2e\xdc\xc7\x6d\x0b\x17\xff\xac\ +\xc7\x1b\x05\xff\xcc\x9e\x73\x99\xde\x1f\x1f\xeb\x2e\x42\x9e\x0e\ +\x5b\xa5\x3f\x30\xba\x01\x0a\x4b\x08\x23\x39\x3e\xf0\x9d\x56\x09\ +\x9f\x9a\xf0\x94\x07\x15\x42\xad\x51\xf5\x12\xa3\xaa\xe1\x23\x38\ +\x5d\x92\x16\x06\x8c\x49\x5e\x3a\x53\x76\x3a\xeb\xd6\xfa\xd9\x24\ +\xe8\xe3\xcd\x9c\x2d\xfb\xc0\xa5\xec\x98\xd5\x10\x06\xe7\xd9\xaa\ +\xf1\xd7\x87\x6b\x30\x1e\x4b\xbf\xb3\xb3\x64\xeb\xb1\x27\x5f\x91\ +\x9c\xf7\x9e\x55\x11\xc6\xf0\xe4\x3c\xb0\x1d\x63\x27\x90\xcf\xbe\ +\xe5\x1e\xf1\xa9\xd7\x9f\x72\x55\x5e\x8f\x1b\x33\x5b\xd1\x6b\x87\ +\x53\x91\x59\x22\x9c\x7d\x55\x81\x5e\xb3\xf8\x72\x7b\x27\x72\x77\ +\x9d\xd1\x42\x49\xed\x20\x77\xaa\x63\x45\x11\x52\xd7\x9f\x45\xfa\ +\x46\x44\x96\x70\xb9\x79\x5e\xc6\x39\xa7\x23\xd4\xd1\x7d\xfa\x19\ +\xef\x11\x4c\x86\x06\x57\xc9\x9e\x21\x3c\x25\xc0\xea\x32\x2f\xa3\ +\xc6\x55\x5f\x75\x85\x22\x31\x89\x29\x33\x03\xa5\xfa\x47\x2d\x3a\ +\x62\x4f\x4c\x2e\x55\x36\x55\x47\x33\xe2\xbc\xde\xd6\xad\x5a\x80\ +\x57\xf1\x99\x3f\x50\xc3\xfd\x13\xe5\x63\x8c\x4c\xeb\xe1\x31\xf6\ +\x3e\xaf\xe1\x70\xff\x66\x49\x29\x86\x14\x65\xd8\x42\x70\xbd\x42\ +\x3f\x5f\x83\x05\xc5\xf3\xb7\x7f\x33\x8d\xa7\x6a\x78\x8e\x17\x3a\ +\x67\xeb\xcf\x16\xe1\x3c\x7e\x69\x7b\xb3\x3d\xf5\xe9\x27\xda\x73\ +\xf7\xbc\xb6\xbd\xed\x7f\xfb\x7f\x68\x6f\xfc\xc1\x7f\xaf\xed\x1c\ +\xb4\xb6\x38\x3a\xe0\x2f\xc8\xf8\x7c\xcc\x01\x33\x07\x75\xf8\x3f\ +\x42\xf4\xa2\x0e\x8b\x1f\xa8\x86\xce\xce\xc2\xa6\x1c\xe3\x4b\x8d\ +\xe3\x09\xbd\x4f\x40\x91\x12\x94\x85\x93\x29\x23\x90\xbe\x29\xfa\ +\x03\xb0\x49\x6c\x45\xe5\x4f\x8b\xb9\x49\x78\x91\xcb\x7f\x59\x22\ +\xe7\x8c\x72\xd5\xfc\xdd\xc8\x9c\xd6\x98\xd3\xe2\x73\xff\x9a\xa3\ +\xd2\x21\xb9\x27\x1b\xd6\xf4\xe2\xb8\xb3\xc3\xab\x3f\x3b\x26\x13\ +\xc7\x81\x14\x2c\x38\xb6\xf8\xc5\x52\x9d\x9b\xe7\xc3\xe9\x9a\x29\ +\x7d\x6d\xe5\x3c\x38\xf5\xdb\x12\x7c\x59\xc6\xaf\xc3\xf6\xe0\xcb\ +\xbe\xb2\xbd\xee\x65\xaf\x6f\x9f\x7e\xe6\xb3\xed\x23\x1f\xfd\x40\ +\xdb\xd9\xd8\x6d\xdb\x67\x76\x94\xe1\x41\x47\xed\x7e\x0c\x58\xfa\ +\x14\x82\xa3\x33\xdc\xdd\x0f\x3b\x33\x53\x93\x3e\x8f\xeb\x48\x07\ +\x50\x02\xa9\x4a\xd3\x0b\xb5\x88\x31\x21\xa5\x67\xc1\x24\xa3\x54\ +\x42\x3f\x1c\x65\xab\x9f\x16\x7a\xb0\x31\xfd\x6e\x13\xe3\x9b\x60\ +\x99\xa9\x70\xf6\xac\x28\xcc\x69\x55\x60\xc6\x09\x85\xb0\xba\xaa\ +\xaf\xe0\x22\x96\x56\x3f\x17\x55\xf4\x5a\xc3\x43\x6a\x12\x07\x83\ +\xdb\x88\x5c\xf2\x13\x3f\xc1\x6d\xe2\x8f\xe0\x1a\xb3\x4a\x13\x93\ +\x73\xc6\x08\xb7\xb1\x67\x19\xcb\x8a\x90\xb1\x46\xf8\x96\xf6\x05\ +\x50\xea\x07\xbc\x3f\x53\xd4\x31\xcc\x72\x35\x02\x71\xb3\x71\x87\ +\x3a\x0d\x4f\xa3\x8e\x69\xc0\x5e\x1f\x67\xd6\xd9\xae\xa8\x2b\x73\ +\xca\x95\x99\x18\x5a\x1f\x97\x51\x32\x84\xd9\xaa\xc0\x9e\x47\x04\ +\x82\xb6\x40\x4f\x52\xc2\xa2\xd0\x10\x23\xa8\x47\x05\xaa\x12\x7a\ +\xa7\x66\x84\x05\x5a\x7d\xba\x65\x74\x25\x10\x31\xb9\x7f\xf6\xf5\ +\x2f\x71\x52\xd3\xd6\xf8\x6c\xe4\x50\xd3\x55\x73\x64\xf8\x23\x2c\ +\xed\xff\xdd\xb0\xa2\xed\x88\x82\xb3\xbd\x51\xee\x89\x9d\x7a\x9f\ +\xa7\x40\x1f\x97\xb7\x53\x7a\x65\x85\x4b\x75\x34\x90\x20\x84\xb2\ +\x5d\xc1\x93\xf5\x66\x60\xeb\x7d\x28\x63\xd5\xa2\x91\xc4\x41\xa9\ +\x52\x90\x75\x28\x3a\xb3\xe1\xc3\x3f\xe8\xbf\xa5\x3f\xe1\x88\x6b\ +\xa9\xc7\x9e\x69\xfb\x8f\x5d\x69\xdf\xf8\x86\xef\x6d\x7f\xea\x8f\ +\xfc\x85\xf6\xea\x97\xbd\x41\x2f\xd3\xf2\x4f\x44\xaa\xbf\xc8\xd5\ +\x39\x9f\xb5\x49\xca\x53\x17\x20\xc6\x65\x24\x67\x41\x8c\xb9\x82\ +\x06\x35\x23\xa7\x73\x18\xe8\xd4\x0a\xdf\x75\xf1\x42\xe3\xd7\xb8\ +\x55\xb1\xde\x53\xd6\x58\xe3\xe6\x61\xfd\x42\x6d\x8d\x35\xd6\xf8\ +\xe2\x63\x5c\x59\x1a\x69\xaf\xc2\xfc\x2a\x80\xb1\x37\x92\x77\x53\ +\x50\x3b\x4b\xd8\xf6\x85\x3b\xfc\x94\x7a\xce\x02\x85\xa6\x9e\x6e\ +\x02\x75\x6c\xd2\x83\xf0\xd5\xb9\xa4\x2f\xd8\x99\xe9\x8b\x76\x3f\ +\xac\x08\x9e\x0e\x48\x3d\x10\xc5\x92\x17\xf7\xea\x26\xf5\xb2\x78\ +\x38\x88\xcb\xbc\xa8\xc3\x3f\x71\xa1\xbb\x0d\xc6\xd1\xa7\x38\x94\ +\xc1\x0a\x9c\x1c\x1d\xb6\x73\x77\xde\xd5\x5e\xf1\xce\x6f\x6c\xd7\ +\x76\xf7\xda\x2f\xfe\xf4\xaf\xb4\x0b\x57\xae\xb4\xdd\x73\x3b\x7a\ +\x28\xbb\x85\x75\xe1\x9f\x2a\xf2\x4f\xf5\xb2\x07\xe7\xab\x0f\x01\ +\x9c\x3e\xf4\x01\xa0\xd3\x43\x50\xaf\xbe\xea\xec\xaa\xc6\x35\x43\ +\x52\x91\x4a\x5b\x94\x1a\x92\xe9\x58\x06\xcb\xd1\x9b\x25\x62\x66\ +\x62\x6e\x07\x9f\xb0\xad\x5b\xc8\x25\x4c\xb8\x62\x58\x0d\x02\xe5\ +\xa9\xa9\x9f\xa0\xea\xfc\xa4\xe6\x51\x59\xa6\xd6\x31\xc2\xb3\x51\ +\xd4\xc8\x35\xaa\x5d\x6b\x64\x86\x23\x28\xab\x97\x48\xbb\xf2\x23\ +\x9e\x63\x4f\xcf\xbc\x4f\x7b\x06\xbb\xfc\x80\x82\xf6\xe0\xec\xcf\ +\x71\x04\xfa\xdd\x24\x64\xd0\x16\xb5\x37\xc6\x0c\xff\xb4\x44\x57\ +\x0c\x9a\xb3\xd0\x1e\x9f\x64\xca\xc4\xdc\x26\x6a\x7c\x22\xea\x98\ +\xb6\x92\xa5\x39\xbc\xeb\x61\xc5\x96\x0d\x90\xcf\x2d\x5a\x63\x52\ +\xa7\xd4\x5a\x00\xd0\x63\x8e\x93\xcd\x28\x01\x86\x0e\x99\x4e\xd6\ +\x5e\x33\x23\x10\x0e\xee\xfb\xf3\xb1\x8f\x48\xe4\x17\x5f\x6e\x6f\ +\xf9\x32\x5f\x2d\x98\x12\x37\x7c\xe4\x69\x78\x99\xd4\xea\x3a\x94\ +\xd0\x25\xd8\x88\xea\x8a\x20\x91\x49\x49\xa7\xa9\x03\x98\xa4\x1d\ +\x41\x0b\x7d\x9f\xec\x7c\x8e\x35\x79\xf6\x94\xf9\x41\xf5\x26\x41\ +\x5f\xc4\x08\x98\x03\xe5\x01\x6c\xc2\x25\x21\x3b\x67\x8a\x34\xb4\ +\x3e\x06\x32\x46\x30\x01\xf2\xe1\xe3\x06\x8c\xc5\x5f\xc7\x7e\x91\ +\x46\x7f\xbc\x14\x93\x7e\xb8\x68\xcf\x6e\xb5\xf6\xc4\x47\x1f\x6b\ +\x67\xbe\xea\x9d\xed\x5b\xfe\xd3\xff\x53\x7b\xed\x77\x7e\x5f\xdb\ +\xda\x3f\xd1\xcb\x34\xfe\x5a\xda\x26\xe2\x35\x82\xe3\xc8\xa1\xcd\ +\x5a\xfc\xc1\x0a\xd5\x64\x7f\xbd\xe9\xd0\xd8\xca\xb0\xfb\x68\x49\ +\x94\x75\x18\x81\x14\x68\xfa\x31\x5a\xa4\x10\xf6\x28\x38\x41\x86\ +\x4e\xe6\x74\x82\x55\x79\x75\xcc\xab\xfc\x9f\x23\xb2\x14\xcb\xdf\ +\xc4\xb2\x5f\xf6\x98\xcf\x55\xdf\xaf\x6e\x70\x12\x33\x8c\xb2\x6e\ +\x5a\x82\x5c\xee\x3b\x3c\x36\x4e\x43\xe9\xca\xaa\x63\xfb\x35\x53\ +\x6f\x23\x10\xfb\xb2\x7d\xb4\x23\x46\xc7\x47\xe8\x58\xf8\x95\x3f\ +\x94\x94\x2f\xcd\x7c\xbe\x70\x2c\xb9\x7e\x4c\x46\x5c\x7e\xd7\xf4\ +\x6f\x97\x42\x43\xf9\x8d\xb6\xdf\xee\xbe\xf3\x81\xf6\xfa\x87\xdf\ +\xd2\x8e\xf6\x0f\xdb\x47\x3f\xfc\xc1\x76\xed\x68\xd1\x76\x6f\xdf\ +\xd3\x6f\xaa\x31\x5d\x7f\xaa\x8c\x22\xda\x2e\xe5\xa3\x64\xcd\x31\ +\xda\xd4\xa8\x27\xcf\x45\x6d\xe6\x98\xb0\x19\x9c\x33\xa6\xf0\x6f\ +\xa8\x39\xb8\x7a\xf3\x37\xd8\x3a\xe4\x04\x27\xda\x3e\x0e\x9f\xda\ +\xbc\x6a\xb7\x55\x63\xf4\x3a\x8f\xb3\x9f\xd2\x22\x11\xd5\xbb\x36\ +\x45\x0d\x9e\xc7\x0c\x9f\xaf\xbd\xb0\xac\x2a\x91\x28\x3e\xaa\x93\ +\x61\xc8\xc8\x80\x9c\x7f\x92\xdc\xc2\xe4\xb1\x64\x7d\x4c\x44\x9c\ +\xc1\x4e\x81\xf7\x25\x07\x67\x4b\x40\x8b\x4e\xb3\xb2\xc0\xf3\x61\ +\x9c\x13\xb3\xf2\xc8\x26\x92\x19\x98\xf6\x0f\xbd\x27\x04\x0f\xbb\ +\x4f\x47\xe5\x2b\x92\xa2\xe4\x78\xc3\x66\x6d\xf5\xd6\xd7\xb3\x16\ +\x1b\xb0\x6f\x4a\xce\x42\xc2\x56\xb5\x15\x58\x2a\x18\xa0\x82\xa5\ +\xcf\x89\x31\xa2\x31\xae\xf0\x0d\x6e\x80\xc7\xe1\x04\x11\xbb\x12\ +\x13\x07\xe2\x32\x19\xa2\xbb\xaa\x0e\x48\x5f\xe1\xac\x31\xc2\x84\ +\x67\xdc\x18\x47\x8f\xed\x4a\x40\x76\x8d\x2d\x63\x2f\xb1\x19\xa6\ +\x26\xf8\x1e\x29\xca\x67\xa8\xf8\x98\x64\x6b\x61\x8b\x07\x74\xf0\ +\x12\xdc\xc6\xa1\xcb\x9c\xe8\xf6\xa9\xb5\x2a\x14\x55\xf1\x59\x5f\ +\xa8\x7a\xa2\x17\xf0\x68\x3d\xc6\xd8\xcf\x66\xfb\xa0\x3f\xde\xfa\ +\x94\xce\x30\x1f\xa3\x4b\x06\x43\x87\x1d\xe9\xb1\xe6\x5a\x1d\x5e\ +\x02\xf1\x87\x43\x79\x4a\x3f\x5a\x9c\xb4\xcb\x8f\x3d\xda\x4e\x9e\ +\xdc\x6c\xdf\xfa\x75\x7f\xb8\xfd\x89\x3f\xfc\xa7\xdb\x43\xf7\xbc\ +\x46\xff\x33\x6d\xc1\x3f\x05\xa9\x5c\x9e\xfb\xf3\x1c\x06\xc9\x73\ +\x3d\x16\xae\x57\xff\x7e\xa1\x79\x23\x2c\x99\xd7\x01\x23\xc7\x9c\ +\x8e\x5c\x97\x3c\x86\x34\x47\x5a\x6c\x0b\x29\x1d\x68\xf5\x86\xd1\ +\x93\xd7\x58\xe3\xba\x58\xef\x29\x6b\xac\x71\xf3\x80\xeb\x3c\x7d\ +\x57\x58\x63\x8d\x35\x6e\x41\x7c\x49\x1e\xfc\xd7\x1b\xd4\xaa\x2b\ +\x00\xc6\x27\xff\xa2\xad\x50\x76\xb2\xaa\x83\x32\xa8\x72\x3a\xed\ +\xec\x24\x2d\x14\xc6\x49\xb5\xad\x8b\x74\xea\xfc\xe4\x85\x3a\x05\ +\xaf\xe7\xf9\x02\xec\xd8\x7e\xf9\x62\x51\x0e\xa5\x93\x1c\xef\x46\ +\x7d\xe6\x4f\xd7\xf5\x07\x96\x02\x98\x63\xd8\xdb\xf0\x32\x47\x17\ +\xf1\xd0\x37\xb7\xb0\xf8\xe1\x0a\x7f\x1b\x62\xe3\xec\x5e\x3b\x3c\ +\x38\x69\x3f\xff\xe3\x7f\xaf\xbd\xf7\xff\xf2\x9f\xb5\xdb\x1f\x7f\ +\xa4\x3d\xf8\xd0\x85\xb6\xbd\xbd\xd3\xce\x21\x8c\xff\x9f\x67\xc1\ +\x9f\x56\xc6\x4d\x81\x6f\x2e\x58\x9b\x3a\x7b\xca\x45\xbd\xf5\xbe\ +\x27\x7a\xde\xac\x39\x11\xbe\xf4\x90\x4a\xce\xc8\xfb\x95\xb4\x09\ +\x85\x54\x22\x60\x8a\xf3\x12\x31\xb2\x02\x20\x86\xce\xfe\x18\x14\ +\x66\x8d\xa5\x01\xbf\x29\xce\xb3\x84\x11\x35\x64\xa2\x49\x3a\x49\ +\x6f\x0b\x12\xda\x5a\xd0\xdd\x8f\xeb\x43\x4f\x37\x91\x7d\x40\xc6\ +\x68\x62\x16\x18\xe7\x7e\x12\xf6\xd9\x5b\x51\x63\xb2\xc6\xc0\xb4\ +\xea\xc0\x32\x97\xcc\x34\x7f\x15\x62\x14\x98\x60\xaf\x13\x31\xcf\ +\x84\x9d\xe5\x83\xd6\x6e\x01\xc3\xdb\x79\xde\x9b\x83\xcd\xd4\x3a\ +\x44\x8d\x23\x1c\x3b\xe1\xb2\xdc\x0d\x82\xe3\xf6\x78\x68\x84\xac\ +\x98\xd7\xe2\x31\xc8\x43\x83\x98\xc7\xa3\x90\x8f\xcb\xb0\x27\x18\ +\x73\xe5\x6d\x3d\xd6\x3e\x3b\xa9\xfe\x65\x64\x51\xf8\x74\x10\x40\ +\x8a\x0a\x5d\x79\x45\xed\x25\xac\x74\xb3\xd7\x01\x48\x46\xce\x75\ +\x11\x13\x74\x6a\x0d\x09\x70\x93\x3a\xc5\x86\xec\x2e\x0c\x6e\xe8\ +\x21\x81\xfe\xb0\x0a\xb0\x8a\x26\x63\x4b\x9c\x68\x37\xa2\xb9\x9e\ +\x94\x6e\x2c\xab\x9d\xb4\xf9\x1c\x53\x6e\x0b\x36\x81\x99\x9e\x66\ +\x19\x96\xa1\xb9\x97\xd2\xe3\x6a\x88\xc6\x23\x02\xbd\x61\x47\x90\ +\x5f\x04\xfa\xc4\xb9\x9b\xd9\x35\x3e\x75\xef\xeb\xdc\x77\x2c\x79\ +\x2e\xe7\x78\xf9\xef\x2a\xf9\x20\x87\xbc\xff\x61\xfe\xb1\x1e\xf0\ +\xf0\xcf\xf2\x3e\xb3\x38\x6c\x4f\x7e\xe6\x4a\xbb\xeb\x9b\x7f\x6f\ +\xfb\xc6\xff\xd5\x7f\xdc\x1e\x78\xf3\x5b\x5b\xbb\xb6\x2f\x3f\x33\ +\xf5\x67\x1e\xd9\x03\x73\xa9\xb2\x66\xd7\xd9\x70\x6c\x5d\x15\x26\ +\x63\xe3\xff\x3e\x8b\x00\xfd\x4f\x28\xae\x7b\x9f\x90\xf0\xd1\x94\ +\x0c\x5d\x3b\x5e\xe8\x19\x7b\x9a\x4c\xe4\x00\x40\x0f\x15\x06\x6d\ +\x11\xc9\x12\xb3\xdc\x17\x03\xd9\x05\xbb\xfd\x02\x74\xf7\x65\x8b\ +\x95\xdb\x0e\x36\xb7\xff\x92\x6f\x86\x08\xed\xd0\x3e\x03\xc2\x9f\ +\xeb\x6e\x16\xa7\x95\xc0\xdc\xe7\xd1\x5a\x0b\x5f\xda\x7a\x19\x66\ +\xdb\x3e\xf3\xee\x31\xb8\xd4\xf1\xa9\x7d\xdb\x33\x90\xe7\x31\x66\ +\x6f\xf2\xff\xa3\xd1\xe6\x07\x92\xbf\x09\xc1\x07\xb8\x9b\x1b\xdb\ +\xed\xd9\x67\x2e\xb7\x7f\xf1\x33\xff\xb0\xfd\xd7\xff\xf6\xbf\x6e\ +\xdb\x67\x16\xed\xc2\xc3\xb7\xb7\x33\x7b\xbb\xfa\x93\xda\x7e\xb1\ +\x95\xdf\x64\x78\x1e\x09\xb5\x77\x96\x7d\x40\x63\x83\xa5\x9f\xef\ +\x65\x97\x9c\x4c\x62\x4c\x2c\x3d\x54\x04\x15\x0b\xf6\xcb\x7a\xce\ +\x0d\x12\x98\x9f\x33\xd2\x95\xe7\x37\xc7\x5b\xc9\x6b\xb9\xe4\x24\ +\x68\x58\xc9\x4f\x91\x6a\xa1\x23\x8f\xf9\x36\xb4\x84\x18\x4d\xc8\ +\x5e\x8e\x50\xbe\xd7\xd7\x9c\xfd\xdd\xb2\x30\x52\x07\xa9\x61\xc2\ +\x76\x8f\x31\x23\x51\xcb\xeb\x04\x5d\x93\xcb\x71\xe9\x43\x36\x5a\ +\xc4\x4c\xb8\xc8\xa7\x2e\x92\x55\x0b\x27\xb8\x8e\xe1\x9c\x6c\x2d\ +\x4d\xab\x36\xf5\x40\x4f\x11\x3b\xbc\xb5\x87\x8a\x8c\xaa\x99\xa3\ +\xaf\x19\x0f\x55\x87\xa2\x9d\x06\x74\xce\x4d\x9a\x23\x3e\x02\xb5\ +\x1f\x03\x65\x0e\x55\xa4\xa3\x16\x3b\x1d\x23\x22\xeb\x13\xbd\xa0\ +\xac\x53\xb1\xc2\x5d\xeb\x59\x47\x7b\x5a\xdc\x84\x1f\x71\x4b\xe1\ +\xc3\x05\xa4\x61\xa6\xf3\xa2\xbd\x0d\x13\x63\x3a\xa8\x28\xa0\x5b\ +\x46\x44\x87\xcb\x16\xcf\x15\x52\x04\xab\xf0\x14\x4e\xa0\x9d\xdb\ +\x20\xd0\xf5\x50\x24\x46\x53\x04\x14\x7d\x62\xbc\x36\xa1\xbb\x1e\ +\x17\x37\x04\x23\x22\xa0\xa2\x0f\x72\xac\x43\x0d\x9a\x84\xc3\xf0\ +\x9e\x67\x64\x9f\x1d\xa1\xeb\x58\x42\xa3\x6b\x0c\x11\x16\x04\xd5\ +\x18\x89\x11\xeb\xae\xfd\x9f\x39\x70\x0e\x5f\x48\x22\x12\x55\x97\ +\x39\xd8\x59\x79\xee\xd5\xef\xf9\x73\x1d\x94\xc7\xf3\xf1\x49\x3b\ +\x5c\x2c\xda\xa3\x9f\x79\xa4\xdd\x76\xf9\xb6\xf6\x07\xbe\xfb\x47\ +\xda\xf7\x7e\xfb\xf7\xb5\xdb\x2f\xde\x89\xeb\x28\xff\x20\x93\x0b\ +\x85\x54\xcb\xfc\x98\x43\x34\x9e\x12\x77\x9e\xe7\x7f\xda\xa6\xd9\ +\x06\x07\x9d\x3f\x2e\xc1\xbc\x1e\xc7\xfb\x66\xad\x3b\x6c\x72\x72\ +\xda\x15\x15\x06\x8a\xef\xc6\xf1\x82\x13\xd6\xb8\x45\xb1\xde\x53\ +\xd6\x58\xe3\xe6\x01\xdf\x5b\xf4\x5d\x63\x8d\x35\xd6\xb8\x05\xf1\ +\x25\x75\xf0\xe7\xc5\xe3\xf5\x06\x35\xbf\x02\xc8\xd8\xe4\x5f\xd4\ +\x15\x9a\x17\x5f\x31\x98\x08\xe9\xd7\xd8\x44\x4f\x4b\x7f\x95\x52\ +\x20\x2c\xfb\x45\x3c\x25\x3f\x7a\xa0\xca\x9b\x08\x5e\x80\xf3\xcf\ +\x80\xc1\xce\xdf\x38\x08\x9e\x7e\xe5\x4b\x4f\xe8\x16\x00\xad\xa1\ +\x8b\xfa\x3e\x47\xb8\x6c\xd7\x93\xd7\xbc\x7c\x47\xcb\x07\x3a\x5b\ +\x5b\x5e\xa5\x8d\xed\x76\xb2\x38\x68\x1b\x7b\x7b\xfa\xdf\x69\xbf\ +\xfe\x53\xef\x69\xff\xea\x3f\xff\x3f\xb7\xab\xbf\xf8\xbe\xf6\x95\ +\x0f\x9c\x69\xb7\x9d\xd9\x6a\x9b\xe8\x6b\x6b\x7b\xab\x1d\x33\x4f\ +\xf7\x2b\xac\x81\x3e\x50\xd6\x37\x10\x2a\x24\x4d\x3a\x4d\xf8\x74\ +\xff\xc0\x81\x40\xcf\xb1\x25\x74\xbb\x32\xe1\x1d\x67\x94\x68\xc5\ +\xb0\xaf\xc2\x25\x6a\x7c\xe8\x12\x32\x07\x91\x5c\xa2\x97\x92\x8f\ +\x0d\x07\x9c\xbc\x48\x7e\x34\xdf\x94\x85\x9e\xc8\x34\xa4\x12\x93\ +\x3a\x96\x54\x79\x53\x98\x73\x64\x12\x52\xa1\x9e\x33\xda\xee\x29\ +\xe5\xc0\xfc\xa6\x6b\xea\xad\x18\x71\x19\x63\x66\xb5\x65\xd0\x9a\ +\xd6\x9f\x02\x3e\x0f\xbe\x9b\xa3\x40\xc9\x4b\x35\x57\x1c\x1b\xbe\ +\xef\x0b\x35\x99\x6a\xc4\xda\xd3\x8b\x01\x35\x36\x11\xc1\x80\x3d\ +\xa8\x58\x6a\x5c\x0f\x7e\xf0\xe7\x11\xf4\xf8\x79\x79\xc2\x61\x03\ +\xab\x62\xc1\x99\x9e\x6d\x9f\xae\x86\x37\xe6\x8a\x2f\xb5\xfb\x5c\ +\xf4\x82\x86\x2d\xfa\xa6\x7c\xc7\x64\x05\xa3\xc6\xac\x54\xee\x13\ +\xab\xe6\xcf\xbe\xc2\x67\xa9\xd3\x20\x7f\xe6\x8c\xca\xc2\x24\x17\ +\xdc\xcc\xe6\x6a\x0a\x45\x52\xed\x7b\x73\x8d\x0f\xc3\x22\xfa\xd1\ +\xba\x52\xea\x63\xa4\x3f\x88\x69\x8d\xa9\xa4\xaf\xbb\xcb\xbc\x9d\ +\x96\x93\x6a\x3f\xfc\x00\x3d\xe2\x49\x23\x51\xed\x12\x2b\xd9\x1b\ +\x2e\xb1\x87\xa3\x6f\xae\xf3\x88\x04\xa0\x92\x8b\x5d\x02\x8b\xbf\ +\xbc\x5f\x90\x0f\x06\x71\x8b\x05\x4e\xaa\x27\x0b\xfd\x36\xf0\x06\ +\xf4\x83\x93\xe3\x76\xf9\xea\xd5\xf6\xc8\xe3\x07\xed\x15\x3f\xf0\ +\xa7\xda\x37\xff\xd5\xbf\xdc\xee\x7c\xc5\xeb\xda\xe2\xd2\x3e\xbe\ +\x47\x1c\xb5\x93\x2d\xe4\xeb\x4f\xfa\xf2\x01\x79\xd6\xa4\xb0\x24\ +\xf4\xbd\x24\x86\x33\x9d\xf3\x68\xf8\x91\x23\xb7\xb9\x39\x06\xcb\ +\x86\xf4\x0f\x67\x0c\x3e\x94\x62\xdf\x80\x4c\x70\x68\xa0\x42\xb8\ +\xa5\xdd\x87\x9c\xca\x2c\xef\xc5\x40\x76\xf1\x05\xec\xf2\xcb\x12\ +\x9a\xbf\xbe\x01\x8d\xdc\xee\x73\x1f\xe9\x59\x68\x87\x52\xd0\xe8\ +\x98\x30\x26\xa7\x41\x62\x96\x6f\x15\x6d\xee\xfb\xa1\x8f\x0a\xd6\ +\x7d\xad\xc4\x63\x25\x7c\x74\xeb\xa0\xc4\xc2\x2e\xf1\x35\xbe\xcf\ +\xb3\xa5\x3b\xb5\x82\x3a\x16\x18\x4a\x07\xc7\x97\x54\x9b\x9b\x38\ +\x4a\x78\x22\xa1\x8d\xaf\xe3\x93\xc3\xb6\x8b\xeb\xaa\x2b\x97\x16\ +\xed\xdf\xfe\xea\xbf\x68\xff\xe0\xa7\xff\x6e\xfb\xec\xe5\x47\xdb\ +\x5d\xf7\x9f\x6b\xe7\x6e\x3f\xab\xeb\x29\x3f\x60\xdf\x44\x1d\x16\ +\x8e\xe2\xea\x17\x7a\x76\xce\x7a\x38\x29\xc4\xb7\x32\x0f\x3b\x1c\ +\x2a\xe1\x06\x26\x73\x90\x4b\xbf\x02\xb2\x06\x09\x73\xcc\x55\x7f\ +\xa4\x3b\x1f\x85\x11\x40\x4d\x4e\x70\x39\x1b\xd2\xa9\xca\x46\x2b\ +\x3a\x75\xc6\xb9\xae\xe2\x45\x73\x0c\x59\x33\x28\x29\xa3\xce\x52\ +\xbd\xbe\x2e\x62\xf4\x15\x1f\x93\xfa\xe4\xfa\x40\x48\xe6\x0b\x52\ +\xda\xd4\x86\x9f\x50\x0d\x2b\x55\x28\xd7\x6b\x87\xad\xe4\x42\x1d\ +\xb2\xd0\xe8\xb7\x5d\x00\xaf\x57\xac\x8b\x64\xa0\xe7\x99\xf7\x88\ +\x75\x96\x34\x25\xc4\xdc\x60\xd1\xf8\xa2\x26\x49\x57\x4a\xbf\x73\ +\x2b\xa2\x12\xe0\xb5\x98\x7a\xe7\x18\xfd\x18\x61\x79\x45\xf1\xb1\ +\x7f\x82\x59\x51\xaa\x8a\x41\x8e\xe2\xd3\x17\x35\x3a\xe8\xa8\x36\ +\xd0\x73\x85\x61\x39\x6c\x78\xa8\x79\xbd\x92\x9b\x15\x9a\x63\xe2\ +\x1e\xd9\x15\x5a\xb3\xf9\xf7\x18\x40\xcc\x84\x86\x51\xec\xa5\x8c\ +\x89\x9b\xc6\xc4\xb2\xc4\xf6\x1b\x6b\x13\x7c\x6f\xb0\x44\x60\x08\ +\x20\xa2\x87\x0b\x0c\xd6\x61\xa9\x36\xd7\x41\x8a\x40\xd5\xf3\x9f\ +\xb1\xae\xd3\x43\x6a\x6c\xc4\x09\x5d\x58\xd1\x7e\x95\xb1\x25\x8e\ +\xed\x74\xca\x1c\xc7\xbc\xec\xa9\xbb\x73\x9f\x4d\x4c\xe2\x64\x02\ +\x61\x95\x9a\x23\x3f\xbc\xc5\x37\x33\x64\x71\xe9\x63\x05\x34\x02\ +\xfd\x29\xdd\x69\x34\x6b\x4d\xaf\xd5\xc6\x36\xd1\x6b\x2c\xfe\x30\ +\x13\x5f\x90\x81\xf5\xb1\x7b\xdc\xb6\xe0\xd9\x3f\x6a\xed\xca\xe3\ +\x9f\x6a\x77\x9e\xbc\xbc\xfd\xc1\xef\xfb\xb3\xed\x3b\xdf\xf1\x7d\ +\xed\xcc\xee\x99\xb6\xcf\xff\x99\xc6\x0a\xfa\xde\x40\x35\xeb\x41\ +\x66\xe1\x80\xbb\x8c\x16\x13\x98\xc7\xfb\xe4\xfa\x29\xf5\x3e\xc1\ +\x21\xb1\x72\xa6\x56\xf8\x84\xc8\xaf\x20\xc1\x31\x2c\x39\xe6\xc8\ +\xc0\xc4\x3c\xe1\x86\x8a\xac\x71\x8b\x60\xbd\x27\xac\xb1\xc6\xcd\ +\x03\xae\x21\xe7\xdf\x2a\xd6\x58\x63\x8d\x5b\x05\x5f\xb4\x83\xff\ +\x7a\xd7\x7c\x89\x55\x83\x7b\xbe\x2b\x80\x17\x7d\x85\xb2\x03\x0c\ +\x84\x63\x99\x9f\x3e\x69\x96\x31\x8e\x7b\x90\x50\xf2\x22\x5d\x79\ +\x58\x24\x28\xc5\x76\xde\x22\xf8\xd9\xe2\x53\x36\x1f\xb8\x8e\xf8\ +\xee\x93\x0e\x4a\xe8\x8a\x6f\x28\xe2\xee\x43\xc3\x63\xc3\xdf\x7a\ +\x8b\x0b\x7a\xc9\x0d\xdc\x84\xe8\x37\xd5\xc8\xf1\xc1\xce\xa2\x6d\ +\xec\x9c\x69\x6d\x6f\xaf\xfd\xce\x47\x3e\xd4\x7e\xee\xbf\xfc\x2f\ +\xda\xfb\xff\x9b\xbf\xdf\xde\x78\xef\x4e\xbb\x70\xd7\xb9\x76\xf1\ +\x78\xb3\x6d\xed\x22\x14\x85\x4f\xb0\x6c\x6c\x21\xcf\xc3\x08\x64\ +\x5f\x6c\xa5\xc5\x88\xa8\x8f\xb1\xa5\xea\x3c\xdf\xa0\x39\x02\x5a\ +\xe1\x68\xf8\xc6\x48\x6a\x70\x05\x95\x90\x3f\x88\x1a\x2b\x85\x73\ +\x58\xc6\x50\xfc\x1e\x03\x09\xf6\x69\x49\xbb\xaf\x53\xf8\xd3\xe6\ +\x8d\xd4\xe0\x4c\x4a\x60\xb1\xe5\x39\xa8\x1c\x17\xfe\xf4\x24\xeb\ +\x6b\xde\x82\x63\xa3\xed\xc0\xe0\x4e\x52\x09\x55\xa0\x16\x35\x65\ +\x1b\x55\xb7\x6f\xc4\x4c\x63\xe7\x91\x9f\x03\xe6\x85\x21\x3d\x64\ +\x28\xb3\x92\xe6\xd9\x54\x07\x93\xd8\xc6\xfe\x31\x81\x7d\xa7\x83\ +\x19\xd7\x8f\xa1\x77\x5e\x37\x33\x72\x4f\xaa\x11\xda\x36\x40\x67\ +\x6a\x17\xb5\x50\x70\x14\xb9\x3a\x0a\xad\xb1\xa9\x5f\x17\xf3\xa2\ +\x4e\xe4\x6c\xd4\x52\x02\x76\x78\xed\x63\x1d\xb0\x10\x34\x89\x0b\ +\x77\x56\x19\xde\x81\x5e\x21\x94\xec\x75\x25\xe4\x58\xf6\x7a\x3b\ +\x86\x91\x18\x27\x38\xa0\xf8\x21\xb3\x8c\x29\xc7\x69\xf7\x06\x93\ +\xbe\x2e\x62\x42\xfd\x67\x1c\x03\xe9\xcf\x60\xf8\x98\x49\x53\x87\ +\x25\x41\x3a\x54\xeb\xf2\x2a\x36\x2d\x37\x10\x90\xcc\x0b\x97\x39\ +\x2c\xe2\xc2\xa0\x0b\x67\x40\x48\xd6\x88\xfc\x82\x1a\x3b\x44\x8e\ +\x89\xd2\x0f\x7e\x58\x47\xed\x52\x8d\x13\xfd\x16\x19\xeb\xfb\x11\ +\x30\xcf\x01\x53\x79\x8c\xf3\xf2\x31\x7f\xe3\x4c\x85\x8e\xdb\x15\ +\x9c\x8f\x9f\x7e\xfc\xe9\xf6\xf4\xb5\xf3\xed\xe1\xff\xf9\x8f\xb5\ +\xef\xfc\xb1\x1f\x6d\xb7\x5d\xb8\xb3\x2d\x0e\xf7\x71\x0a\x3f\x6a\ +\x27\x7a\xf9\x16\xb3\x2a\xc9\x5a\xc8\x0d\x74\x35\x48\xb6\x9c\x0b\ +\xc6\x53\xf6\x31\xda\xa0\x06\x55\x5e\x9b\x0a\x76\x8c\x5e\x0c\xe7\ +\xe2\x88\x61\xdb\x18\x52\xe2\x14\x59\x50\x86\x0a\x37\x46\x2f\x22\ +\x59\xc6\x6b\xc4\xb2\x5e\x34\x64\xf9\x2f\x40\x57\x5f\xb6\x98\x6c\ +\xb7\x44\x4c\x26\x0f\xba\x9c\xdb\x3a\xc7\xf3\x70\xa2\xc7\x40\xc1\ +\xce\x90\x21\x99\x42\xd4\x12\x84\x63\xd0\xea\x43\x6b\xa6\x53\xd3\ +\x8e\x95\x72\xfa\x42\xad\xc7\xa9\x6f\xeb\x6c\x97\xf5\x82\x7c\x9a\ +\x4b\xde\x1f\x80\x2d\xae\x8b\x78\x2d\xc4\x0f\xeb\xf1\xe5\x9a\x9c\ +\x38\x37\x80\xd8\x3c\xde\xd0\xff\x53\xfb\xf1\x9f\xfd\xc7\xed\x17\ +\x3f\xf4\xee\xb6\x7b\xf7\x5e\xbb\xf0\xb2\x8b\x6d\x8f\x35\x70\x4d\ +\xe5\xdf\x12\x45\x71\x9c\x00\x98\xc6\xf1\x7a\xfa\xe2\x78\x53\x61\ +\x3a\x64\x48\x72\x08\xa2\x62\x8c\x8e\xc5\xb8\x95\x07\x1f\x5f\xc2\ +\x85\x47\x1f\x1b\x18\x29\xaf\xdd\xa0\x38\x19\x9f\x28\x4c\x2e\x62\ +\x86\x34\x99\xb9\x29\x1d\xeb\x39\x52\xbf\x50\x68\xd1\xaf\x5e\xfd\ +\x19\x52\x4a\x1e\xe7\x34\x15\x9d\xaa\xb5\xee\x0b\x11\xc1\x8a\xd3\ +\x07\xe3\x2c\x31\x79\x36\x95\x59\xf8\x44\xe6\x1b\xd9\xdb\x18\x43\ +\xce\x55\x4c\x84\x6d\x9a\x31\x1f\x14\xb9\x0d\x9c\xa2\x11\x84\x5f\ +\x11\x6a\x63\xd6\x65\x69\x6b\x39\x58\x48\x35\xe7\xa7\x03\xfb\x84\ +\x39\x82\xad\x6b\x1a\x59\x71\xb0\xf3\x88\x29\xe8\x71\xa5\xa1\x6b\ +\x24\x42\x7a\x86\x12\x50\xc0\x20\xf5\x27\x3f\x23\x49\x73\xa7\x1d\ +\x19\x92\x21\xa9\xf7\xaa\xd7\x87\xa3\x46\xed\x69\x66\xce\xa7\xb1\ +\xba\x22\x22\xd2\x51\xc6\xb5\x2a\x96\x43\x9b\x8f\x4c\x7a\x27\x8a\ +\x27\xd4\x1a\x2b\x80\x18\x1c\x8d\x89\x15\x18\x63\xea\x5c\x55\x22\ +\xa7\x53\xb9\x96\x41\x74\x6f\xa9\xcd\x18\x59\x85\xa2\xea\x5d\x2c\ +\x48\xc4\x53\xf3\xac\x71\x0c\x25\x98\xa8\x63\xcd\x14\x57\x81\xc2\ +\x9c\xd4\x29\xc7\x7e\x21\x89\x26\xf7\x4b\xed\x75\x49\x46\x9b\xd9\ +\xf3\x97\x89\x11\x32\x41\x49\xed\xb9\x42\x1f\x83\xd7\x60\xba\xf5\ +\x81\x48\x8c\xd4\xde\x17\x87\xab\xd4\x80\x2a\x44\x50\xd6\x19\xf5\ +\xd8\xf2\xfc\xce\xeb\xa2\x64\xa0\x23\xfe\x70\xff\xb0\x5d\x7a\xe4\ +\xd1\xf6\xc0\xee\x57\xb5\x1f\xfa\xa3\x7f\xbe\xbd\xe3\xad\xdf\xa2\ +\x73\xe0\xb5\x05\xae\xa3\x8e\x8e\x9c\xc3\xf8\x32\x8f\xdc\xfd\x59\ +\x83\x8d\x7e\x48\x02\x92\x77\x6d\xe2\x10\xa7\xb9\x92\x6a\x9d\x1d\ +\x39\x9d\xd2\xb6\x74\x52\xd1\xf6\x98\xf0\x27\x3b\xfc\x85\x1d\xd4\ +\x0c\x74\x68\x14\x05\x19\x9c\xfc\xa9\xc9\x6b\xac\xb1\xde\x3b\xd6\ +\x58\xe3\x26\x62\xfd\x42\x6d\x8d\x35\x6e\x61\x7c\xd1\x0e\xfe\x1b\ +\xbd\xde\x3b\xed\x7a\xf1\x34\xbc\xe8\x2b\xc4\x0e\x30\x08\x7e\x70\ +\xea\xec\x67\xcf\x15\xe3\x12\x25\x3f\x9a\x22\x7d\xe9\x1f\x9c\x16\ +\x32\xb4\x2b\xcf\xda\xb8\xc1\x0a\x29\x5f\x2c\xbe\xc1\xa5\x8e\x38\ +\xfd\x56\x82\x79\xc5\xf2\x8b\x7c\x70\xa1\x79\x2c\x1a\x36\x2e\xfe\ +\x63\xec\xf2\xd3\x01\xc1\x9f\xa8\x96\x17\xce\x0d\xfe\xe9\x47\x2d\ +\xdb\x72\x9e\xf0\xcf\x18\xed\xed\xb6\x4b\xcf\x3c\xd5\x7e\xe6\x1f\ +\xfe\x78\xfb\xe9\xff\xeb\x7f\xde\x1e\x38\xb9\xdc\x1e\xb8\x67\xb7\ +\x9d\xdb\xda\x6e\xfc\x1f\xfb\x1b\x88\x5d\xa8\x9c\x0b\xba\x6b\x58\ +\xbe\xb3\x90\x3e\xe0\x31\x68\x60\x09\xe8\x34\x95\x8f\x4f\x0e\x6f\ +\x02\xd9\x0e\x5c\x9d\x5f\x48\x89\x1c\x47\x42\x41\xf8\xb0\x03\x79\ +\x25\x13\x23\xb6\xe4\xc5\x0d\x59\x27\x20\x6d\xeb\x63\x48\x37\x21\ +\x4e\x32\x56\x42\x36\xc7\x65\x49\x26\x63\x24\x24\xd3\x6f\x11\xb3\ +\x00\x24\x11\x63\x08\x50\x8f\x8c\x09\x6a\xcc\xea\x08\x62\xd4\xfc\ +\xbc\xc1\x12\x28\x37\xe6\x9d\xdb\x7b\xd4\xf7\xba\x99\x8f\x4f\xb7\ +\xbb\xaf\xef\x1f\xe9\xaf\x88\xb9\x06\x38\x23\x69\x65\x5c\xf7\x91\ +\x80\xa1\x9a\xe1\x0c\x4a\xa8\xf1\xc9\x7b\x46\x73\x1c\x53\x64\xbd\ +\x4c\x94\x1a\x71\xd2\xb3\x20\xc0\xfc\x0c\xa7\x52\x6f\xfa\x85\xee\ +\x34\x3c\x57\xa6\x09\xae\x53\x67\x94\x0c\x89\xa2\xf5\x38\xe8\x70\ +\xa0\xc9\xd4\x85\xdc\x5f\x12\xf3\x41\x00\x3d\xd7\xdb\x28\xb7\xd9\ +\x34\xcf\x50\xb6\x1c\xb3\xba\x65\xe5\x9c\x0d\xa9\x5a\x01\xe8\x8e\ +\x97\x27\x3f\x21\x23\xaa\x6e\xef\xae\x3a\x50\x66\xf4\x61\x5d\x6a\ +\xf1\x25\x31\x51\x8b\x3f\xfa\x95\xde\xb5\xa1\x77\xc2\xaa\xa2\xa9\ +\x14\x9e\x9c\x4e\x85\x01\xea\x31\xf2\x01\xf9\x73\x6e\xb0\xce\x31\ +\x98\xdc\xf7\x33\x3e\xfd\x15\x9a\x07\x7d\xf0\xa5\x8d\x2b\x0d\xc2\ +\xfa\x82\x3f\xe4\xd0\x8e\x71\x2e\x85\x7e\xb8\x68\x97\xb7\xb6\xda\ +\xb3\x9f\x7e\xb2\x3d\x77\xc7\x2b\xdb\x6b\x7e\xec\x2f\xb6\x6f\xfd\ +\xe1\x1f\x6a\xb7\x6d\x9d\x6f\xfb\x57\xaf\x28\x8e\x3f\xf4\xa0\xdf\ +\x58\x86\xb5\x79\x12\x0f\x95\x61\x4b\x7a\x00\x53\xc8\x01\xc0\xc7\ +\x35\xc8\x3f\xf1\x18\x6b\xa0\xc5\x73\x42\x69\xb6\xeb\x93\x85\x0e\ +\xbd\x51\x10\x86\x5f\xd6\x0a\x29\x65\xc8\x82\xbe\x8f\x2b\x2c\xf6\ +\x94\xe4\x84\x12\xd0\x41\x6e\xb9\xd6\xe7\x8c\x2c\x75\x93\xcb\xde\ +\x52\xe8\xdb\x2c\x94\xdc\xd6\x39\xa7\xb9\xa1\xa5\x17\x39\x47\x9f\ +\x7f\x9e\x9f\x47\x80\xf7\x52\xdb\xc9\x4e\x18\x29\x79\x5c\x85\x2e\ +\xd2\xdc\xe4\x78\xcb\x85\x7c\xb1\xfd\x9b\xc4\x7c\x10\x6b\x96\xd2\ +\x3e\xaa\x90\x3c\xc6\x69\xf6\x31\x06\x14\x3f\x46\xd3\xaf\xa7\x20\ +\x7c\x8c\xc9\x82\xf7\xa8\x6d\x6f\x6e\xb5\xed\x8d\xad\xf6\xd9\x47\ +\x3f\xdd\xfe\xd9\x2f\xfc\x64\xfb\xef\x7f\xee\xff\xdb\x16\x47\x57\ +\xdb\x6d\xaf\xbc\xb3\x9d\x3b\x8f\x8b\x29\x5c\x48\x6d\xf0\x77\x29\ +\xfa\x6f\x8f\x45\xdf\x82\x67\x41\x05\xc3\xab\x5f\xa8\x18\xa6\x64\ +\x51\x31\x64\xce\x23\x0d\x3a\x1c\x98\xe5\xf4\x27\xd7\x82\x3f\xe1\ +\x9f\x16\x57\x32\xe3\xd1\x0f\x55\x7c\xf9\xb4\x56\x6a\x94\x7c\xc1\ +\x94\x62\x65\xa6\x4f\x7c\xb2\x80\x62\x52\x89\x7a\xb4\xa2\x66\xfa\ +\xfd\x52\x4f\x0a\x1a\xe8\xaa\xd1\xab\xeb\xa3\x1f\x5b\x80\x54\xa4\ +\x28\x7a\x23\x46\xf1\xf6\x27\x7a\x1f\x09\xf6\x9f\x6a\x48\x69\x95\ +\x1c\xc5\x05\x0b\x92\xe4\x9c\x9f\x6d\x7a\xb3\xd5\xfc\x75\x7b\x20\ +\xb9\x9c\x5b\x41\xfd\x78\xbe\x29\x3b\x2f\xc8\xd9\x59\x59\xa1\x50\ +\xf7\xe3\x7f\xe8\xe0\xfc\x03\x1d\x04\x0d\xda\xe6\x4d\xb2\x09\xc3\ +\xee\x88\x05\xd2\x95\x80\xed\x7b\x89\x8c\x08\xa7\xcc\x1a\x9c\x7e\ +\x20\x0b\xce\xe4\xaa\xf9\x29\x59\xb0\xab\x35\xf5\x65\xce\x04\x79\ +\x4e\x29\x98\x30\x61\x0c\x8e\x5a\xf4\x72\x4a\xe0\x84\x0e\x8c\x6e\ +\x32\xc0\xc4\x88\xc5\xd8\xc2\xd5\xd7\xa9\x3b\xb9\xd6\xd8\x16\xe1\ +\x37\x62\x5d\x06\xc1\x88\x1e\x67\xbb\xac\x6f\xe7\x22\x53\x76\x8d\ +\x25\xa2\xe7\xe0\x8c\x61\xd7\x75\xc8\xda\xa4\xf2\xf0\xca\xd8\x6a\ +\x4e\xb0\xc2\x61\x0d\xb5\xe6\xb1\x44\xe1\x52\x75\x5f\xd9\x77\xb0\ +\x18\x98\x18\xec\x63\x1c\x23\x0f\xcd\x3e\x56\x48\xc6\x69\xff\x93\ +\xee\x6c\xfa\x15\xa2\xe3\x18\xa0\xd1\x39\x36\x84\xb7\x33\xf7\x5c\ +\x1d\x2d\xe2\xfd\x03\x4e\x0b\x9c\x53\x9f\x7b\xf6\x6a\xdb\x7c\xfa\ +\x99\xf6\xfa\x57\xbe\xad\xfd\xe0\xf7\xff\x68\xfb\xea\xd7\x7d\x0d\ +\x03\xda\xb5\xa3\x43\x9c\x7f\x8f\x50\xfa\xb8\x5f\xd1\xe4\xb9\x97\ +\xb9\x3a\xbd\x46\x1f\x9b\x31\x76\x8f\x97\x8d\xce\xa0\x3a\xf6\xa8\ +\xfb\x9a\x29\xd6\x14\xba\x35\xb6\x88\x42\x11\xd9\x4e\x0e\xbe\xc8\ +\xc2\xfb\x93\xf6\xf5\xc0\x98\x18\x9c\x30\xb7\x89\xe4\x6e\xa4\xde\ +\x1a\xb7\x12\xd6\x7b\xc4\x1a\x6b\xdc\x3c\xe0\xfb\x56\x7e\x87\x5a\ +\x63\x8d\x35\x6e\x35\xbc\x24\x0e\xfe\x1c\xe4\xf5\xbe\xfb\xdf\xf4\ +\x15\xa9\x17\xa0\xa9\x47\x27\xbc\x50\x86\xaa\xcb\x76\x48\x7a\xfa\ +\x83\xc0\x68\x95\x19\x31\xca\xcc\xd3\x2c\xa5\x54\x4a\x5d\xf6\x07\ +\x47\xcd\xf5\xba\x5d\x79\x3e\x34\x95\xcd\x87\xa8\xe4\xd0\x07\x64\ +\x7f\x50\xa0\x87\x40\x54\x59\x13\x8a\x1e\xaa\x46\x1c\x69\x34\xba\ +\xf0\x27\x17\x77\x54\xf4\xf2\x6f\xcc\x73\x84\xbc\x51\x20\xc3\x8b\ +\x78\xae\xcb\xe6\xe6\x96\x5f\xac\xf1\x9f\xa5\x6d\xe1\xe6\x42\xff\ +\x57\xed\x1c\x9f\x14\xb5\x5f\xf9\x67\x3f\xd1\x7e\xf2\x6f\xfe\xcd\ +\x76\xe5\xfd\xbf\xdc\xbe\xfa\xe1\xdb\xda\x6d\xb7\x5d\x68\x5b\xc7\ +\xfb\x08\xdb\x6c\x47\xfa\x1b\x65\x2c\xa5\x4a\x71\x8f\xe0\xfe\x08\ +\x72\x1a\x66\xfa\x3c\x44\x09\x87\x3a\x56\xab\x23\x5f\xf7\x00\xb1\ +\x46\x91\x93\x88\xe9\xe8\xf0\x9c\x20\x67\xe6\xe8\x26\xa4\xd5\xae\ +\x58\x84\x4e\x85\x0f\x44\x26\xdf\x1a\xa3\x66\xe5\xea\x83\x9f\xa4\ +\xe9\x1f\x65\xb8\xae\xb0\x14\xc7\x05\x7a\xff\x49\x71\x80\xae\x50\ +\x3d\xde\x61\x73\x9e\x06\xbc\x5d\xe8\x1b\xf1\x53\x44\xf5\x82\xcc\ +\x27\x3b\xfa\xb4\x96\xed\x14\xd3\xfc\xeb\x60\xb9\x33\x23\xb6\x9d\ +\x5a\xf8\x1d\x82\x36\xf8\x91\x84\xb5\xa1\x7f\x3e\x80\x49\xd1\x9a\ +\x43\xbd\xfa\x08\x73\xab\x3c\x37\x86\xa8\x9b\xe5\x57\x20\xe9\xb2\ +\xc9\x45\x4e\xfa\x3c\xad\x73\xae\x33\x7c\x7a\xc9\x52\x62\x3c\x62\ +\x6b\x53\xc4\x16\x9f\xb9\x29\x92\xa2\x32\xb1\x27\xc8\x7a\xb9\xe7\ +\x94\xfa\x22\xe6\x59\xc5\x5f\xc0\x28\x6e\x97\xdc\x3e\xbd\x9a\x1e\ +\x06\xac\x00\x03\x3b\xa0\x2b\xc7\xd5\x39\x05\xb9\xe9\xb9\xc7\x99\ +\x9b\x55\x89\x78\x37\xf4\x87\xec\x4d\x40\xc5\x42\xb5\x30\x87\xaa\ +\xb2\x35\x0e\xdb\xe4\x47\x4c\x88\x24\xd2\xb6\x90\xd2\x75\xc0\x7f\ +\xde\x0b\xf9\x41\xea\x01\x4b\x0d\x20\x7a\x31\xba\xd8\x9f\x43\xb8\ +\x30\x7b\xc0\xd6\x88\xe6\x58\xfd\xb3\xd3\x3e\x67\x84\x1d\x3a\x97\ +\xe3\x86\xf3\x2c\xce\xdd\x87\xc7\xc7\xed\x99\xa3\xa3\xf6\xd8\x67\ +\x9f\x6d\xe7\xde\xfa\xad\xed\x6d\x7f\xfe\x3f\x6c\xaf\xfd\xae\xdf\ +\xd3\xce\x1d\x1d\xb7\x6b\x07\xd7\x10\x77\xd2\x36\xa1\x73\x56\x59\ +\x7f\x33\x5e\xa2\xf9\xfc\x64\x9d\xd0\x98\xea\x7c\x04\x64\x93\xd7\ +\x83\x7f\xff\x96\x6c\x7f\x18\xc4\x95\xce\x75\x54\x2e\x74\xda\xb1\ +\x28\x2e\x17\x07\x85\x3a\xe3\x27\x92\xbc\x8c\x90\x03\x1a\x72\xc0\ +\xa1\x98\x15\x71\x6c\x48\x94\x80\x9e\x9c\xbe\x9b\x84\x9b\x58\xea\ +\x96\x45\xdf\x66\x40\x6e\xfb\x44\xdd\xc8\xcf\x07\xa5\x3a\xdf\xfb\ +\xf3\x74\xf3\xd4\x6e\x7c\x51\x13\xfb\x3b\x63\x7b\x3f\x71\x3c\xb0\ +\x15\x07\x2d\x25\xb9\xe0\xd3\xef\xa3\xd2\x9e\xe1\xd3\xa3\x54\xe9\ +\x66\x29\x43\x07\xcd\xe3\x34\xf5\x8c\x31\xe8\xb4\xcd\x63\xc5\xd7\ +\x53\xc9\xf1\xf7\x21\x70\x19\xb0\xb9\xd0\x4b\xb5\xab\x57\x0e\xda\ +\x4f\xff\xea\xcf\xb5\xbf\xff\xae\xbf\xdb\x3e\xfe\xe4\x47\xdb\x2b\ +\x5f\x71\x4f\xbb\x70\xfb\x99\xb6\xc0\x75\x82\x72\x51\x9c\xc7\x6f\ +\x96\x67\x57\xd9\x12\xe4\x79\x0e\xe1\x59\x40\x2c\xec\x08\x0d\x1f\ +\x25\x5a\xf2\x51\xc4\x9c\x54\xc0\x3e\x0e\x4d\xe7\x3e\xf1\x94\xf1\ +\x9b\x6b\x32\x93\xa7\xde\x9b\xe2\x4f\xda\x4a\xd2\x13\x3b\x48\xeb\ +\x1e\x6f\xe7\xb2\x50\x48\x4f\x6b\xac\x15\x75\x2c\x9e\xfb\x11\xab\ +\x33\xa7\x54\x3a\xb9\x46\x04\xaf\x8d\x33\xd6\x7e\xad\xab\x7c\x72\ +\x74\xcb\x66\xe6\x99\xed\xfd\x25\xba\x6e\x65\xb8\x38\xf6\x1c\x51\ +\xed\x83\xa0\x46\x7f\xe5\x08\xf3\x8a\x85\xda\x73\x3c\xf1\xf2\xcd\ +\x33\x22\x25\x85\x90\x32\xa1\x51\x20\x5f\x87\x9b\x02\xb9\xde\x7c\ +\x89\x00\xa2\x70\x56\x69\x50\x59\xae\x62\xf4\x04\xab\xd4\xc3\xec\ +\x21\x09\x71\x0a\x9a\xa4\x09\x8a\x45\x03\x3b\x7b\xa6\x96\xfd\x4f\ +\x47\x53\x93\xcc\xdb\x4f\x38\x62\x02\xb8\xa6\xde\x11\xdd\x51\x62\ +\x6a\xb4\xb4\x1a\xac\x49\x9b\x52\x89\x11\x1b\xde\x49\x6c\x8c\x2b\ +\x5d\x16\x86\x0c\xac\x6b\xcc\xb9\x2d\xa2\xac\x4b\xcf\xa3\x82\x25\ +\x03\x05\xed\xd9\x90\x73\x1e\x60\xcd\x19\xa7\xd8\x25\xd2\xb6\xda\ +\xe2\xa2\xaa\xad\x30\x89\x87\x1e\x66\x67\xab\x9b\x98\xd9\x13\x13\ +\x46\x8c\x76\x8a\x4e\xc4\xf8\x14\xe4\x7d\xc0\xeb\x4d\x82\x88\x6c\ +\x7f\xac\x83\xe3\xeb\x2c\x45\x06\xef\xe8\x9a\xc3\x7b\x53\x7e\x06\ +\xa7\xf3\x2a\x24\xf7\xff\xf8\x5b\xd9\x6d\x0b\xe7\x58\x9e\xd7\x9e\ +\x78\xfc\xd1\x76\xf2\xd4\x56\xfb\xa6\x37\x7c\x4f\xfb\xc1\x1f\xf8\ +\xa1\xf6\xaa\x97\xbf\xb6\x1d\x2e\x0e\xdb\x41\xfc\x66\x5a\x8c\x82\ +\xd9\x92\xae\x6c\xdd\xbe\x64\x21\x75\xcd\xb4\xcc\x49\x62\xc0\x13\ +\x5e\xeb\x0e\x4d\x3c\x49\xeb\xe1\x95\x74\x8b\xfe\x32\x86\xad\x94\ +\xb4\x4f\x03\xbd\x63\xe4\x53\x64\x66\xf2\xd7\xaf\xb4\xc6\xad\x89\ +\xf5\x5e\xb1\xc6\x1a\x37\x0f\x5b\xff\x09\x10\xfa\x1a\x6b\xac\xb1\ +\xc6\x97\x1e\xea\x77\xfd\x2f\xd8\x15\xc0\xaa\x8e\xc0\xe9\x02\x99\ +\xba\x2f\x54\xd9\xea\x99\x8e\x2e\x92\xcd\xe5\x73\x89\xbc\xd8\xcf\ +\x87\x02\x6a\xfc\x14\x60\x2a\xbb\x1e\x76\xc4\xf1\xe1\x81\x7f\x52\ +\xd4\xba\x7c\xb3\x85\x5f\x73\x7d\xfe\x80\x82\xc8\xfc\x63\xfe\x46\ +\x1b\x63\xf4\xd4\x82\xb1\xb8\x68\x87\xae\x1b\x11\xf9\xfc\x50\x42\ +\x2f\xda\xc0\x53\x6a\xd9\xd8\x6c\xc7\x07\xfb\xfc\x53\xf6\xed\x65\ +\x6f\x78\x5d\x7b\xf8\xad\x6f\x6e\x9f\xbc\x74\xa9\xfd\xcc\xbb\xff\ +\x5d\x7b\xf9\xf6\x71\xdb\xbb\x78\xb6\x1d\x1f\x1e\xe9\xfd\x1b\xff\ +\x64\xd9\xe4\x27\x74\xcb\x54\xfa\x61\x09\xf8\xe4\xa8\x84\x9e\xb7\ +\x0f\x31\xd4\x40\x70\x93\x27\x1d\xab\x30\x72\x47\x87\x7d\x0b\xc0\ +\x21\xa5\xd4\x05\x92\xeb\x8d\x31\x89\x89\xdc\xa4\xba\x4b\x1c\x46\ +\x5c\x82\x87\x36\x85\xf8\x58\xcf\x7a\x8b\xe4\x39\x60\x93\x37\x6f\ +\xc3\x97\x30\x97\xed\x14\xac\xbb\x9c\x61\xf8\x56\xb0\x40\xc1\xb5\ +\x16\x7b\x9c\xe3\xb4\x6a\x33\xb8\x40\x20\x94\x6a\x7b\x85\xad\xab\ +\xcf\x32\xd6\xec\xb4\xdf\x3c\x56\x54\x26\x75\xca\xe5\x91\x76\x2c\ +\x15\x99\x12\xbd\xdf\xa2\x75\x7d\x2a\xbc\xdd\xa1\x64\x54\x07\x89\ +\x4e\x46\x00\x63\x89\xf4\x75\x3f\x90\xe7\x82\x98\xef\xe1\x4c\x99\ +\xc9\x89\xe0\x27\x6e\x0f\x26\x29\x2a\xda\x62\xa2\xcd\x8e\x70\x6f\ +\xed\x91\x31\xdd\xfa\xda\xcf\xfa\x01\x97\xe9\x35\x62\x86\x74\x85\ +\x9c\x44\x4e\x38\xf4\x38\x71\x02\xb0\x45\xa5\x24\xfa\xb1\x3b\xc8\ +\x1a\x53\x56\xa9\x73\x42\x57\xd2\x5f\x9d\x40\x31\xb5\xde\x32\x82\ +\x49\x07\x90\xb5\x29\xcb\xe9\x06\x88\x63\x6e\x10\x86\x12\x82\x4c\ +\x9f\x92\x69\x0e\x3e\x5d\x44\xfe\xd6\x9f\xb8\x38\x27\xe4\x5a\x53\ +\xd3\x3a\xa2\xd5\x23\x7a\x7d\x83\x20\x07\x9b\x12\xcb\xd1\xd1\x02\ +\xe7\xdb\x05\x62\x36\xdb\x02\x83\x7c\xe4\x99\x67\xdb\x23\x4f\x2f\ +\xda\xdd\xdf\xf5\xc7\xda\xb7\xfc\xef\xff\xa3\xf6\x86\x6f\x7a\x67\ +\xdb\xbe\x72\xd4\xae\xec\x5f\x45\xfc\xa2\x35\xc4\xab\x1f\x9c\xb3\ +\x75\xfe\xd6\x79\xdb\xe7\x6c\xf5\xa2\x2e\x7c\xae\xd7\x39\xdd\x84\ +\x78\x35\x65\xfc\x1c\x8e\x75\xac\x41\x27\xcd\xa7\x2e\x3b\x24\x11\ +\xc2\xa0\x0f\x5f\x7a\x20\x94\x0e\x2a\xd2\x53\x52\x0d\x25\x65\xd6\ +\x2f\x90\x4b\x0d\x9d\x3d\xb1\x2c\x89\xaa\xcf\x51\x73\x03\xf3\xf4\ +\x8a\xeb\x95\x5a\xe3\xc6\xa1\x79\xcc\xc9\x84\xac\xf3\x9a\xdb\xfc\ +\x7a\x28\xa9\xd3\xe4\x61\x2d\xef\x32\x60\xf0\xa9\xd1\xda\xd7\x43\ +\xd3\x3e\x2f\xc6\xb2\x2e\xf9\xd5\xed\x8c\xa5\x10\x67\x99\x5a\x8d\ +\xf1\xb1\x64\x5d\xff\xd7\xd6\xde\xee\xd7\x75\x96\x19\x49\x1e\x83\ +\xbc\xf6\xd1\x79\x02\x0b\xaf\xa3\x0e\x70\xbc\xef\x6c\xb7\xf6\x95\ +\xaf\x78\x65\x7b\xd5\xfd\xaf\x6d\x8f\x3d\x7d\xd8\x3e\xfa\x9b\x1f\ +\xc6\xf1\x7f\xdc\xce\x5d\x80\x83\x7f\x36\x52\xd7\x64\x3c\xae\x62\ +\x0d\x55\x43\xa2\x1f\xb7\xd4\xb9\xb8\x29\x71\x52\xdc\x7a\x1c\x81\ +\x50\xc9\xf5\xf3\x99\x48\xea\x69\x13\x43\xb7\x97\xc7\x78\xc8\xac\ +\x5f\xca\x76\x74\x2e\xe3\x8d\x11\x3a\xea\x0e\xd2\x05\x69\xda\x8b\ +\x5e\x4a\x9d\x9a\x2d\xb0\xb0\x90\x12\xfe\x59\x48\xaf\xc1\xa6\xf8\ +\x86\x1a\xb9\x20\x78\x6e\xae\xf3\xa1\xb4\x2e\x67\x7d\xa1\xef\x52\ +\x6e\x05\x32\x1e\xc8\x42\x9d\xcb\xcc\xac\x5a\x62\x03\x93\x14\x18\ +\x79\x3a\x54\xaf\x30\xec\x0f\x19\xf3\xa0\xfd\x43\x3e\x9e\xc3\xcd\ +\xd1\xaf\x1f\x94\xcb\xdc\xc0\x64\xab\x33\x4d\x56\x32\xdd\xb3\x4c\ +\x11\x11\xea\xed\x9f\x63\xc9\x06\xd0\xfe\x1f\x46\x72\x09\xe6\xc4\ +\xf8\x07\x1c\x34\x46\x64\xcd\xdb\xc2\xa0\xac\x7a\x1a\xe6\xd3\x53\ +\x50\xfc\xdd\x00\xa4\x4d\xc2\x61\xf8\xb3\x04\x4f\x61\xf1\xc4\x9c\ +\x12\x93\x78\x18\x73\xdb\x0d\x46\x16\x8e\x89\x3f\xd1\xe3\x52\x9d\ +\x46\x69\xbd\x26\x94\x6d\x53\x54\xba\xa6\x99\x9a\xa5\xcb\xdf\xa9\ +\xe2\x9b\x6f\x7b\x3a\x43\x08\x14\xda\x82\xb2\x73\x4b\xc1\xe8\x07\ +\x63\x04\x06\x68\x89\x09\x5a\xb9\x92\xb9\x1f\xda\xe1\xad\x99\x2d\ +\x59\x68\xf8\xd4\xf1\x50\x4a\xcf\xe3\xd5\x21\x56\x44\x14\xf8\xed\ +\x99\x90\x39\xdc\xf5\x78\xef\x49\x7e\xa3\xe1\xfa\x08\xfd\x9f\x9c\ +\x1c\xb6\x27\x3e\xfb\x64\xdb\x3b\xbc\xad\xfd\xa1\x6f\xff\x93\xed\ +\x07\xbe\xff\x87\xda\x83\xf7\x3e\xdc\xae\x1d\x5d\x6b\xfb\x87\x87\ +\xed\x78\x71\xa4\x6b\x27\xbf\x23\x73\x0d\x6b\x3c\xef\xd2\xb6\x74\ +\xf7\x5c\xab\x15\xe0\x58\x34\x0a\x2c\x79\x3c\x52\x2f\xdb\x60\x95\ +\xf4\x1c\x13\xa1\x4c\x44\x77\x02\xa3\x8e\x20\x83\x0d\x47\x33\xf1\ +\x04\x92\x4b\xff\xaa\x98\x35\xd6\x58\xef\x19\x6b\xac\x71\x33\xb1\ +\xfe\x0d\xb5\x35\xd6\xb8\x85\xf1\x65\x75\xf0\xbf\x28\x2b\x53\x8a\ +\xf2\x0a\x58\xe6\xe0\x78\xf6\x1c\x17\xc6\x81\x1a\x93\x7a\x5c\x94\ +\xeb\x92\x3c\x4f\xb9\xe2\xe2\x22\xbd\xeb\xe1\xe7\xc2\x9b\x03\x72\ +\xba\xa8\x67\x0c\x1f\x9a\x16\x3f\x17\xde\x48\x44\x9c\x16\x56\x20\ +\xed\x04\xa6\x58\xca\xa6\x6a\xcd\x2f\x82\x3c\x70\xb6\x7c\xc8\x43\ +\x2a\xff\xd0\x05\x5f\xa0\x11\xbc\x21\xdf\xdc\xe2\xff\x55\xe3\xff\ +\x05\xd9\x69\x0b\x3e\xf4\xdd\xda\x6e\x9b\x17\xce\xb6\xc7\x1e\x79\ +\xba\xfd\xe4\x7f\xf7\x77\xdb\x87\xfe\xef\x7f\xbb\xdd\xfd\xcc\x63\ +\xed\x15\xaf\xba\xbd\xed\xa2\xbf\xdd\xcd\x13\xe4\x21\x9f\x13\xb3\ +\xb1\xa5\x9b\x15\xde\x67\x78\x5c\x54\xe8\x62\xaf\x71\x43\xde\x27\ +\x30\x82\x82\xcf\x46\x82\x3e\x6a\x36\x04\xdd\x9e\x89\x4a\xde\x31\ +\x52\x4b\x5c\x12\x2a\x5d\x50\xbf\xf5\x4d\x7c\x30\x9c\x92\xe3\x60\ +\x3b\xcd\x1f\xbf\x9d\x26\xc3\x71\x04\x14\x59\xfc\x30\x44\xbf\x91\ +\x46\x03\xf3\x21\x22\x22\x15\x12\x35\x08\xc5\x47\x5c\xc6\x4c\xe0\ +\x9b\x2a\xf7\xe4\xbc\x11\xe5\xdb\xd2\xe1\x89\x71\x77\x66\x44\x66\ +\xc4\xf3\x61\x65\x86\x4a\xa5\x95\x11\xe8\x0b\x94\x59\x70\x93\xc4\ +\x9e\x19\xf4\x70\xce\x6e\x11\x0b\x46\xcc\x58\xab\x69\x59\x42\xd9\ +\x6c\xe0\x48\xdf\xbc\x62\xcd\xc9\x3a\x86\x23\xe7\x79\x23\xa2\xdc\ +\xe6\x83\x5c\x15\x27\x3d\x89\x44\x04\xf6\xf9\x18\x05\x23\x27\x1c\ +\xe2\x8b\x33\x0b\xc9\x57\xf9\x44\xfa\xe1\x1b\x93\x0d\x2c\xc7\x8e\ +\x79\x85\xaf\xab\x54\x22\x16\xdb\xa4\xa7\xaf\xc8\x17\x46\x80\xa0\ +\xec\x55\x1c\x25\xc7\x94\x50\x4c\xf6\x93\x73\x08\x1b\xa2\xf7\x1a\ +\x82\xd0\xe9\x01\x52\x19\xa1\x0b\x33\xbd\x5b\x9d\x84\x9a\x3a\x64\ +\xa7\x8b\x5f\x08\x5b\x42\x71\x38\x7a\x26\xeb\x0f\xae\x8f\x1f\xbc\ +\x74\xef\xcf\x66\xbc\xb0\xc9\x2c\xd7\x08\x9e\x88\xfc\x51\x35\xea\ +\x49\xa4\x8f\xe0\x23\x1a\xcc\x09\x28\xff\x70\x00\xea\x60\x5b\x1f\ +\x2f\x78\x44\xf3\x4f\x3d\xf2\xa7\xa4\x37\xdb\x11\xce\x9b\x1f\x7b\ +\xf4\xf1\x76\x79\xef\xde\xf6\xba\x3f\xfe\x67\xda\x37\xff\xe9\x1f\ +\x6a\xf7\xde\xff\xb2\x76\x74\xf5\xa0\x1d\x1c\x5c\x43\x0c\x4e\xb0\ +\x47\xfc\xd3\x44\x9c\x5f\x80\xe7\x7e\xe8\xfc\x90\x08\x21\x50\x17\ +\xa0\xe8\x74\x4c\x8f\x26\x9d\xeb\x4a\x2b\x46\x1d\x76\x97\xa4\xf8\ +\x13\xd7\xd0\x39\xa6\xf1\x27\xeb\xd0\x2b\x63\x66\x39\x5a\x1c\x20\ +\x29\x13\xd2\x2f\xd8\x64\x4c\x63\x92\xcb\xc1\x42\x6a\xac\x41\x4f\ +\xfc\x9f\x33\xb2\x78\xa0\xa8\x4b\x75\xab\x6f\x0d\x63\x36\x7d\x37\ +\x84\x3e\xaf\x99\x0c\xc9\x6d\xb9\xf2\x9c\xb6\x02\x91\xe2\x7e\xdd\ +\x39\x8f\x11\x6b\xc6\x72\x25\x30\x22\x7d\x3c\x85\x56\x6c\x4a\xb2\ +\x3c\xfa\x2c\x49\x8c\x18\x73\x8e\xa5\xa4\x9d\xfe\xa2\xe3\xc3\xa3\ +\xc1\x2f\xcf\x6c\x3b\xc6\x6d\x0e\x9d\x27\x87\x8d\x0d\xf6\xe5\x18\ +\x3a\x78\x0c\xf8\x58\x09\x9d\x61\xbc\x46\xe2\xf1\x7e\x72\xd4\x76\ +\xb6\x36\xda\x2e\xae\xa9\x3e\xf9\xe9\x27\xdb\xbf\x7c\xef\xbf\x6e\ +\x3f\xfe\xde\x7f\xd8\xf6\x37\x2f\xb7\x07\xee\xbf\xd8\xf6\x2e\x9e\ +\x6b\x9b\x87\x98\x03\xfe\xb5\x00\x2e\xca\x1e\xd0\x98\xd0\xf6\xd3\ +\x98\x00\xb6\xdb\x88\xe7\x50\x48\xf8\xa3\x86\x79\xd4\x79\x4c\x4b\ +\x19\x09\x25\xce\x75\x18\x2b\x7d\x38\x2c\xa5\x1b\x4e\x37\x9f\xaa\ +\x45\x10\x4b\x7c\x34\xa1\xe4\xb6\x23\xa8\xf2\xb2\xb5\xaf\x13\xa4\ +\x47\x4b\x5f\x4a\x8d\xca\xa0\x92\x7c\x7c\xd9\x88\x75\x4f\x1b\xa0\ +\xae\xf9\xa7\x4f\x60\x80\x18\x2d\x6e\x09\xe7\x26\x74\xde\x9e\x28\ +\x13\xb7\x31\x23\xaa\x49\xdd\xfd\xda\xf2\x5e\x30\x90\xb1\x53\x16\ +\x98\x38\x5c\x25\x87\xd0\x63\x4b\x52\x4e\xe3\xc4\x37\x8f\xef\x5a\ +\xce\xcc\x69\xa3\x79\x3e\xd4\xac\xec\x01\x32\xf6\x71\x0e\xa6\x4e\ +\xb3\x58\x3b\x92\x0a\x4c\xfb\x77\xa5\xe1\x25\x7a\x99\x5a\xa2\x27\ +\xd5\xec\x80\xe2\x2a\x5f\xce\x23\x55\x09\x9d\x62\x52\x92\xc8\xf5\ +\x48\xf0\x18\x16\xa2\xd6\xc4\x59\x4c\xc4\xf5\x2d\x1c\xe4\x7c\x7d\ +\x86\x93\x0b\xa2\xbb\xed\x38\x1f\x6d\xb0\xfd\x11\x93\x42\x5a\x37\ +\x73\x8f\x86\x2e\x91\x6b\x81\xfe\x23\x46\x4c\xe8\x09\x9a\xae\xef\ +\x91\xaa\x57\x9a\x94\x01\xeb\xf0\x68\x7d\x68\x2b\x4a\x76\xc5\x18\ +\x03\x63\xcd\x4c\x10\x2e\x41\x07\x75\xfa\xdd\xb3\x18\x50\xba\x27\ +\x0d\x7f\xaf\x40\x9e\x02\x34\x3d\xd9\x47\x8e\x5a\x7f\xf6\x5a\x3c\ +\x80\x93\x06\xaf\x73\x78\x6d\x74\x80\xeb\xa9\x83\xab\x57\xdb\xa5\ +\x27\x3e\xd3\xee\x3b\xf7\xe6\xf6\xc7\xbe\xf7\x87\xdb\x37\xbf\xed\ +\x5b\xda\xde\xee\xd9\xb6\xbf\x7f\xd8\x8e\x16\x8b\x76\xac\xff\x99\ +\xc6\x7b\x5c\xe4\xf9\x02\xa9\x8f\x53\xd7\x59\xfd\x5e\x2c\x66\x08\ +\x31\x1a\x0b\x63\xc9\x29\x85\xc9\x50\xb0\x63\xfa\xdc\xce\x08\xc7\ +\xf4\x73\x7e\xec\xb4\xc3\x47\x19\x5c\xea\xc3\x6b\x53\xb6\x19\x23\ +\xbc\x95\x12\xe6\x44\xce\xc6\x52\x20\xe0\x75\x31\xae\x17\xb7\xc6\ +\xad\x82\xf5\xd6\x5f\x63\x8d\x9b\x87\xf5\x0b\xb5\x35\xd6\xb8\x85\ +\xf1\x65\x75\xf0\xbf\x68\x2b\x13\x17\xa2\xfc\xf0\x26\xd1\xe4\x6a\ +\x74\x67\x28\x3c\xbd\xea\xc3\xc6\xba\x09\x29\x10\xc9\xd3\x46\x94\ +\x04\xed\x78\xc8\x73\x4c\x8e\x17\xf7\x8a\x16\x6f\x3f\x78\xfd\x14\ +\x34\x55\xda\x54\x68\xbb\xc6\x26\x6d\xdc\x85\xd0\xc7\x2f\xd5\x51\ +\x90\x52\x1d\x1f\xb6\x2f\xd2\x71\x73\x82\x0b\x7f\xc7\xe4\xed\xd1\ +\x86\x5e\xa8\xf1\xa1\x0b\x5f\x90\x9d\x6c\x6d\xb6\xad\xed\x6d\x24\ +\xe0\x06\x62\x71\xdc\xb6\x2e\x5c\x68\xc7\xc7\xfb\xed\x17\xde\xf5\ +\x6f\xdb\xbf\xf8\x2f\xfe\x5f\xed\xe4\xe7\x7f\xbe\xbd\xe9\x2b\xef\ +\x6c\x7b\x1b\xc7\xed\x0c\x06\xb0\xb5\xb5\x85\x1a\xbc\xf9\x00\x74\ +\xe3\x16\x3a\xe0\x9b\x05\x75\x1c\x03\x30\xa3\xb1\x51\x5a\x2c\x41\ +\xbf\xf9\x86\x40\xad\x72\x06\x49\x51\xb6\xf3\xe6\xc9\x8c\x95\x1c\ +\x0e\xab\xb6\x0b\x9d\x81\xe2\x46\x08\x8d\x9c\x9b\x30\xad\x39\x97\ +\x37\x4c\x85\x94\x80\x83\xf4\x09\xff\xf4\x08\xc6\xe6\x38\x3a\x1c\ +\xab\x56\x79\x41\x97\x5c\xce\x44\xef\x4b\xf0\xdc\x4c\xe0\xc0\x49\ +\x94\x6b\x13\x93\x62\xd9\x9c\x8a\x69\x0d\x47\xcf\xb9\xd3\xe0\x1b\ +\x42\xce\xd7\xac\x6f\x98\xd3\x51\x7b\x4e\x93\xaa\x9e\xb4\xd2\x6d\ +\x39\x9d\x81\x09\x32\x28\x51\xea\xae\x46\x09\xc8\xbc\x59\xbc\x6e\ +\xd8\x57\xd5\xa8\xfd\xcc\xa0\xf0\x59\x8e\xd6\x11\x48\xba\xa6\x9b\ +\x63\x6b\x36\x7d\x9a\xa7\x49\x02\x1a\x85\x25\x19\x98\x99\x8a\x63\ +\x7c\xe7\x47\x80\x34\x36\x3d\x84\xad\x14\x35\x8e\xe4\x1c\x47\x10\ +\x01\x35\x2d\xfb\x67\x58\x45\xea\x01\x88\x21\x77\xda\x51\x4b\x28\ +\x79\x8e\x91\xfa\xfc\x31\x5c\x38\x07\xfa\x60\xac\x3a\x17\x15\xe8\ +\x9c\x12\x4c\x75\x38\xc5\x6b\x15\x7a\xf5\x6b\x97\x0d\xa4\xee\xf9\ +\xc9\x60\x8a\xae\x00\xe8\x87\x7d\x2b\xc4\xeb\x57\x6b\x10\xb2\x63\ +\xe3\x6b\x56\xa1\x6a\xf3\x81\x73\x28\xd9\xe1\xd7\x6f\x92\x31\x9e\ +\x0f\xdf\x71\x2e\xbd\x86\x53\xf7\x73\xfb\x47\xed\xb7\x3e\xfd\x54\ +\x3b\xfa\xaa\xaf\x6f\xdf\xf4\xa3\x7f\xa1\xbd\xe3\xf7\x7d\x57\xbb\ +\xb8\xb1\xd3\x9e\xbb\x72\xad\x2d\x16\x47\xee\x1b\xb1\x9b\xcc\x43\ +\x71\xfe\xcf\x34\x42\x0f\xf9\xd1\x89\xfa\x99\x0f\x0c\x30\x6f\xa9\ +\x87\x41\x7c\x59\x16\xe7\x62\x3f\xf4\x81\xcd\x65\x04\xd9\xd6\x93\ +\x26\xc4\x85\x4d\xc9\xc7\x55\xce\x8b\x46\x0f\x8e\x3a\xa1\x8f\x65\ +\xe4\x40\xf7\x26\x0c\x9f\x38\x22\xa5\xe1\x99\x01\x44\x33\x37\xb8\ +\xee\x48\x65\x9a\xb7\x0c\xc6\xad\x88\x49\xaa\xd7\x2b\x78\xbe\x92\ +\x6b\x2c\xe3\xb4\xcd\xa1\x63\x00\x24\x79\xc5\xe4\xf6\x80\xec\x1c\ +\x50\x75\x82\x76\x47\x18\xa8\x55\xb2\x47\x4a\x1a\x59\x00\x42\xc7\ +\x12\x14\x67\xcc\xec\xd4\x27\x5c\xbc\xf4\x22\x23\x3e\xae\xb7\xd2\ +\x1f\xbd\xe9\xda\x8b\x80\x4f\x3f\x74\x44\x9f\x28\xfe\xc6\x59\x3d\ +\x7b\xba\x15\x58\x07\x0e\xd6\xd3\x30\x01\x1f\x3f\x54\xac\x77\x1b\ +\x50\xb7\x5b\x8b\x76\x61\x77\xaf\x5d\xba\x7c\xd0\x7e\xee\x57\xde\ +\xd7\xfe\xde\xcf\xfe\xf7\xed\xb7\x3f\xf3\xef\xda\x7d\xf7\x9c\x6f\ +\x67\xef\xbd\xd0\x36\x75\xad\x87\xeb\x30\x5c\x83\x21\x98\x59\x2c\ +\x64\xe9\xce\xb0\xb8\xa0\xd9\x2c\x6e\x97\x54\xc9\x38\x37\x59\x45\ +\xc5\x2d\x5e\x1a\xa2\x14\xea\x93\x0c\xc7\x89\x1e\x26\x43\x53\xdd\ +\xac\x29\xc6\x1f\x72\xec\x4f\x66\x7a\xec\x0b\xb3\xf7\x27\x84\x2b\ +\x1b\x8d\x8f\xba\x78\x36\x59\x05\x80\xc2\xb5\xcd\x71\xf6\xeb\xd2\ +\x1e\x03\x29\x5f\x9c\xb5\x45\x8a\x90\xd4\x23\x76\xe9\x8e\x89\x81\ +\x04\xe8\x73\x5e\x56\xf3\x6f\x79\x59\x2f\xa3\xe8\x71\x13\x94\x5a\ +\x53\xdf\xbc\x1f\xfb\x59\x99\xf0\xbe\x12\xe3\x1d\xdd\xad\x40\x38\ +\xab\x5f\x45\x90\x8d\x1a\x1a\x2a\x09\xf5\xc5\xfd\xc8\x73\x51\xa1\ +\x90\x80\xa3\x0c\xea\x7c\x25\x50\xd7\xd1\x1a\x47\x36\x07\x3c\x24\ +\x15\x50\x2b\xb0\x9d\xc7\x8f\x7a\x86\x13\xb9\x9e\xf2\x78\xd0\xa0\ +\xc1\x81\x48\x93\x70\xa4\x21\x9a\x46\xf1\x27\xe6\x14\x6b\x0c\x6e\ +\x55\xc2\xe9\x63\xd4\xfc\x57\xef\x44\x9d\xd5\x82\x39\x61\xba\xcd\ +\x16\x35\xc3\x19\x96\x4d\x74\x60\x1d\x96\x3f\x81\x31\x86\x08\x94\ +\x2a\x28\x2e\x6d\xed\xb5\x68\xb3\x3e\x9b\xf0\x46\x88\x05\x38\x6e\ +\xff\x1e\x4f\x9b\x3c\xfb\x29\xdf\xa7\x13\x55\x4f\x4c\x02\x62\xd4\ +\x85\xca\x23\xa0\x6e\x33\x22\xcd\xce\x43\xfa\x38\xb2\x4e\x8c\xb5\ +\xd5\xc8\xa2\xba\x61\xc9\x24\x1e\xe9\x1e\xff\xf0\x42\x1b\x2a\x10\ +\xeb\x27\x0e\x7a\xf4\xa3\xdf\xf4\x65\x51\x2c\x3c\x4f\x73\x2e\xf8\ +\x43\x0a\x07\xed\xb0\x5d\x7e\xf4\x91\x76\xfc\xdc\x46\x7b\xfd\xc3\ +\xef\x68\x7f\xec\x8f\xfe\xa9\xf6\xd5\xaf\x7d\x33\x62\x36\xdb\xb5\ +\x6b\xfb\xba\x6f\x3e\xe6\x5f\x04\x40\x19\xce\x92\x8e\x09\x74\xa8\ +\x3e\xfa\xa0\x59\x14\x42\x03\xb1\x8f\x4d\x5e\x07\xf9\x1c\x8e\x4c\ +\x8d\x85\x7e\x73\xf4\xf5\x7a\x34\xf1\x45\x45\x3e\xd5\x86\x9f\x29\ +\xc9\x53\xca\x9c\xea\x12\x69\x87\x94\x9d\x54\x8e\x53\x76\x92\x44\ +\x5f\x01\xe0\x34\x3e\x41\xbf\x56\x52\xd6\x1a\xb7\x1e\xd6\x5b\x7e\ +\x8d\x35\x6e\x1e\xd6\x2f\xd4\xd6\x58\xe3\x16\xc6\x4b\xfe\xe0\x7f\ +\xd1\x57\x60\x74\xc0\x0b\xda\x71\x33\x9a\x17\xa3\x05\xdd\x0c\x85\ +\xa7\x56\x7d\xd8\x54\xce\xba\x1f\x56\x14\x9d\x71\xf9\xa0\x95\x0f\ +\x72\xc2\x9f\x71\x3d\x3e\x7c\xfd\x4f\x34\xaa\x80\x8a\x78\xe1\xe3\ +\x88\x24\x45\xd1\x88\xfc\x18\x37\xf5\xa5\x35\xe8\xf9\x19\x87\x56\ +\x82\x37\x09\xfc\xed\x04\xdc\x7c\x6c\x6e\xb7\xad\xed\xcd\xb6\xd8\ +\xd8\x6e\xdb\x6d\xd1\x36\x77\xce\xb4\xcd\xbd\x33\xed\xd7\x3f\xfa\ +\x91\xf6\xae\xff\xdb\xdf\x6c\x1f\xfe\x6f\xff\x87\xf6\xe6\x87\xce\ +\xb7\xf3\x17\xf7\xda\x39\xdc\x70\xec\x6e\xa1\x16\xef\x20\x90\xac\ +\x9b\x0a\x40\xff\xd8\x59\x1d\x93\xb3\x94\x8e\x36\x6f\xad\xfa\x08\ +\x14\x67\x98\xe3\xcd\x0a\x14\x4d\x41\x38\x7b\x3d\x34\xb3\xf8\x6e\ +\x23\xa0\xbb\x22\x4c\x5b\xb3\x93\x40\xf0\x6c\x3b\xaf\x3c\x74\x28\ +\x3b\x6a\x64\x9c\x06\xe2\x58\x69\x4a\xd2\xa8\x1d\x13\x71\x3d\x1f\ +\xf1\xaa\xc0\xb9\x70\x48\x46\xf7\xfe\x42\x00\xf3\x08\x23\xd9\x65\ +\x14\x4f\x06\xf4\x54\xf6\x4b\xd4\xcc\x31\x86\x81\xa5\xc4\xe7\x41\ +\x54\xc8\xf0\x69\xf9\x6c\x80\x25\x07\x30\xe7\x56\xf5\x5d\x63\x0a\ +\x6a\xf8\x0b\x82\xb7\x9f\x7b\x28\xfd\xac\xea\x1a\x10\x8d\x26\x76\ +\x5b\x23\x49\x06\x2f\xf1\x01\xf2\xd5\x26\x4e\x89\xd5\x56\x98\xf8\ +\x5c\x9b\xbb\xd6\xa0\xc1\x89\xae\x81\xa7\x43\x51\x68\xd4\x4d\xf6\ +\xc5\x87\x0f\xac\xeb\x42\x8e\x09\xdd\x80\x3e\x2b\x4f\x33\xd3\xe7\ +\xbe\xc4\xf8\x0d\x2f\x40\x31\x71\x04\x67\x7c\xef\x97\x54\xc4\x62\ +\x3d\x32\x26\xc3\x88\xc9\x3a\x67\x4c\x42\xc6\x18\xa3\xc4\x7c\x3e\ +\x60\x76\xa6\xba\x34\x46\x3b\x45\x87\x6f\x12\x52\x39\x19\xb1\x1e\ +\x04\x14\xf3\xe0\xa6\x1b\x46\xa1\x59\xbe\x9f\x8f\x72\x3d\x59\x03\ +\x2a\xe7\x9c\x67\x69\xcd\x15\xce\x5b\xfc\x73\x70\xb4\xf9\x62\x8c\ +\xcf\xad\x8f\x36\x8e\xdb\xa3\x8f\x3c\xd9\x3e\xf6\xec\x76\xbb\xf0\ +\x5d\xdf\xdf\xbe\xf7\xcf\xff\x85\xf6\x9a\xaf\x7d\x63\xdb\x5d\x1c\ +\xb5\x2b\x57\xaf\xb6\x23\x9d\xef\xf9\xa7\x1d\x5d\x95\x79\xaa\xab\ +\xfe\xd4\x81\xe7\x8e\x63\xc0\x40\xfa\x03\x9b\x10\xd6\x30\x9f\x08\ +\xd0\xaa\xf1\x41\x90\x28\xc8\xce\xd9\x9f\x52\x2f\xdc\xf4\x42\x6d\ +\x70\x96\x4c\x84\x6f\xa6\x7b\xe1\xc7\xd2\x2f\xe2\xe8\xa7\x2d\x56\ +\xb2\x73\x56\x2c\xbc\x0a\x03\x11\xc3\xf0\x3e\xa5\x8a\x88\x9c\xcf\ +\x05\xd1\xcf\x4a\x7c\x1e\x65\x6f\x49\xd4\x79\xac\x73\x27\x1e\x8d\ +\x36\x9c\x98\x40\x70\x49\x52\xac\xda\x1e\xbd\x56\x28\x63\xe3\x2f\ +\x85\xca\xc7\x6e\xe4\x40\x03\xc5\x5f\xa0\xbb\x3e\xf8\x11\x43\x95\ +\x07\xd2\xe0\x79\x1c\xe5\xb1\x24\x89\x83\xcb\x71\x6c\x78\xa4\xe2\ +\xd8\x83\xbe\x20\xa1\x58\x76\x3d\x5e\xa8\x29\x5e\xb1\x04\x15\xc6\ +\xf1\x93\xb1\xe4\x10\xa9\x43\x22\xf6\x6b\x34\xe2\x29\xc1\x2b\x0e\ +\x92\x7f\xe5\x71\x7b\x73\xa7\x7d\xf4\xe3\x1f\x6d\xff\xe0\xa7\xff\ +\x45\x7b\xcf\xaf\xfc\xd3\x76\xe1\x4e\x9c\x17\x1e\xba\xa3\x6d\xe3\ +\x64\xb1\x89\x85\x2f\xba\xf5\x03\x4e\x3c\x7e\xb3\x36\xc1\x22\x34\ +\xd3\x06\xe4\x0d\x5a\x7d\x48\x67\xe3\x98\x0d\xbe\x9c\x83\x83\x5f\ +\x64\x18\x63\x1b\x16\x75\x42\x1c\x96\x2c\x44\x93\xf9\xc1\x2b\x3a\ +\xf9\x41\x3a\x46\x36\x75\x09\x2b\xfa\xb8\xff\x08\x45\x13\xd7\xb1\ +\x44\x70\x99\xd3\xbb\x55\x0c\xd7\x98\xfd\x61\xab\x60\x2e\x74\xde\ +\xd3\x78\xe9\xe7\xe2\xa4\x60\x18\x19\x1c\x97\x18\x0f\x3e\xfc\xad\ +\x3e\x73\x16\x31\x1a\x00\x99\x2e\x1a\xa5\xb8\x9d\xc4\xd6\x70\xa1\ +\x54\x28\x3e\x2a\xae\xa6\x39\x81\x4a\xce\xeb\x60\xfe\x7a\xc8\x7a\ +\x7d\x9d\x01\xec\x16\x1a\x6f\xff\xfe\xd9\x91\xf5\xc8\x87\xce\x41\ +\x87\x3a\xbc\x23\x97\x1c\xf7\x7e\x4a\x8f\x67\xe4\x7a\x66\xad\xa5\ +\x37\x7d\xe6\xa7\xb0\x87\xbe\x55\x6b\x16\xdb\xa9\x7a\xb4\x52\x23\ +\x4b\x15\x34\x49\x46\xaa\xf2\x30\x2c\x42\x56\x41\xf4\x68\x56\x42\ +\x35\xba\xdf\xc5\x69\x69\xf3\x4e\xf2\xc4\x4a\x4c\x79\x40\xdc\x0c\ +\x73\xae\x18\x56\x33\x20\x25\x84\xd6\xc5\x63\xe8\xc8\x98\x10\xa1\ +\x05\xea\x78\xd9\xc6\x36\xf4\x4a\x09\x1e\x2b\xe6\x58\xd4\xd8\x0a\ +\xbe\x26\xcb\x1c\xe6\xdb\x72\x4d\x6b\x29\x96\xed\xaa\xb2\xbf\x50\ +\x13\x73\x9b\x00\x17\xa3\x5b\x81\xe8\x13\x63\x1a\xa9\x88\xe6\x31\ +\xab\x3c\xfb\xed\x73\x05\x59\x65\xae\xbc\xcb\x38\x86\xeb\xa6\x77\ +\xff\x9b\x38\x17\x50\x22\x6c\x1b\x0e\xff\x50\xd1\x49\xbb\xb6\xff\ +\x5c\xbb\xf4\xe8\x33\xed\x5c\xbb\xa3\x7d\xf3\xd7\xfc\xe1\xf6\x3d\ +\xdf\xfd\xbd\xed\xc1\x87\x1e\x6c\x87\x07\x87\xed\x08\x8b\xfe\x14\ +\x2f\xff\x2a\x00\xce\xa1\xfc\xb1\x04\xd6\xcd\x96\x3d\xea\xfc\x4f\ +\x85\x93\xca\xbe\x28\x35\xd0\xec\x9f\x27\x6b\xc8\xcd\xb8\x76\x8a\ +\x2f\xfa\xfd\x57\x59\xf8\x61\xa4\x6b\xa4\x4f\xbf\xf1\x1f\x75\xc5\ +\x45\x6b\x5b\x4a\xf1\xd1\x2c\x31\xc9\x01\xdd\x5f\xa1\xd8\x04\x3b\ +\x79\x21\x60\xae\x06\x26\x6b\x8d\x5b\x0b\xeb\xad\xbe\xc6\x1a\x37\ +\x0f\xeb\x17\x6a\x6b\xac\x71\x0b\xe3\xcb\xe2\xe0\x7f\x51\x57\x62\ +\x5c\x6c\xb2\xf5\x2d\xfd\x0a\xf4\x31\x84\xc2\x1b\x06\xaa\xfd\xf4\ +\x0a\x49\x4e\xaa\x75\xab\xc1\x27\xd7\x17\xf4\x34\xe3\x94\xad\x9b\ +\x08\x36\xbc\xa1\x88\x3b\x0a\x2e\xf4\x4a\x57\xd5\xe1\x93\xe9\x5c\ +\x8d\x9b\x21\x50\x18\xab\x5b\x5e\xf9\x7c\x99\xde\xfb\xeb\x48\x8f\ +\xa1\x3f\x3b\x44\x89\x5b\x7c\xfe\x19\x48\xfd\xe9\x47\x58\xdb\x3b\ +\x90\x67\x77\xda\xd3\x07\xc7\xed\x5d\xff\xef\xff\xa6\xbd\xfb\xbf\ +\xfc\x7f\xb4\x7b\xae\x3e\xd5\x5e\x77\xdf\x5e\xdb\xd9\xdd\x6d\x67\ +\x30\x96\x8d\x1d\xfe\x24\x34\x1f\x22\xe7\x43\xdc\xf9\xcd\x42\x95\ +\xa3\xcf\x95\xc0\x0a\x70\x94\x5c\x78\x93\xc2\x35\x70\x8b\xbc\x18\ +\x3e\x2b\xe4\xaa\x48\x64\xe3\x8f\x51\xd6\x35\xdd\x16\x0c\x42\x1f\ +\x53\x32\x35\x28\xd1\xa3\xef\xf4\x64\x0f\xe9\x31\xd8\x2f\x56\x71\ +\x52\xd5\xd0\x4f\x25\x72\x01\xdd\x68\x01\x21\xba\xac\x31\x63\x2b\ +\xc9\x18\xa8\x54\xe5\x01\xdf\x67\x69\x2b\xcb\x76\x70\xd5\x3f\x4f\ +\xa8\x5c\xd6\x89\x11\xca\x9c\x0d\x84\xa6\xf8\x1a\x3b\x50\xf7\xb1\ +\x9a\xbb\x72\xa4\x34\xe0\xa8\xf9\x44\xd0\xc2\x24\x3e\xd0\xe3\xa9\ +\x4c\x02\x30\xea\x5c\x87\xc2\x2b\xbe\x14\xa4\x2b\xb7\x27\xa1\x50\ +\x91\x54\x6e\x10\x4b\xf1\x9e\x2f\x52\xdd\x25\x23\x19\x22\x12\x20\ +\x34\x4f\x49\xdf\x28\x4e\x89\x37\x1d\xb5\x89\xe7\xab\xbb\xd2\xaf\ +\x41\x75\xcc\xb7\xbd\x6d\x2a\xde\x77\xfb\x56\x87\x83\xae\xf4\x53\ +\xc8\x93\xf1\x80\xd4\xb4\x15\x3f\x1f\x6b\x38\x21\x5c\xd9\x35\x93\ +\x16\xe4\x23\x38\xce\x70\x4c\x45\x28\xa3\x3e\x35\x3d\x90\x02\xdf\ +\x63\x08\xda\x24\x14\x16\xbd\x4d\x62\x30\x86\xbe\x83\x44\x2d\xd8\ +\xde\xb5\xe2\xb7\x26\x8e\xf9\xa7\x1d\x71\x5e\xa6\xbe\x38\x69\x47\ +\x5b\xad\xed\xa0\xe8\xc7\x3e\xf1\x48\xfb\xad\x33\xf7\xb7\x97\xff\ +\xc9\x1f\x6e\x7f\xe8\x7f\xf6\x27\xdb\x83\xf7\xbd\xac\x1d\x3c\x77\ +\xad\x5d\x3d\x3c\x68\x0b\xfe\xd0\xc2\x62\x81\xbe\xf5\x8a\xcb\xa5\ +\x67\xfd\x08\xec\x88\x1f\xf6\xe7\x46\x42\xbb\x92\x9e\xf3\xb0\x21\ +\x4f\x41\x9f\xfd\x7c\x8a\x4f\x9d\x2f\xcf\xbc\x4e\xe9\x73\xbc\x7c\ +\xb1\x4c\x74\x9e\xf9\x21\xd5\x6d\xf2\xca\x0f\x3b\x6a\x25\x4f\xd1\ +\x7f\xc3\x50\x5c\x91\x40\x7d\xf8\x4e\x38\x2d\xb6\x4a\x6f\x46\xfc\ +\xd4\x1e\x79\x46\xd6\x2a\xf1\xa7\x85\x12\xb5\xec\x1a\xcf\x0f\xcd\ +\x61\x4e\x24\x26\xaf\xce\x5f\xf7\x91\x2c\x31\xd4\xb5\x51\x21\xe7\ +\xee\x84\xea\xa8\x31\xca\x09\x77\x1a\x5a\xf8\x8c\xe1\xb1\x46\x5e\ +\x52\x44\xf8\x06\x9f\x1c\x8f\xc6\x1e\x1f\x6d\xb7\x79\x6d\x15\x9c\ +\xed\xf4\xf3\x05\x1a\x7d\xd4\x23\x56\x7e\x8c\x78\x13\x15\xc3\x45\ +\x82\x5f\x7e\xe1\x63\x3b\x59\xae\xbf\x4e\x2d\xb1\x8a\x7c\xa8\x8b\ +\x8f\xc0\xc3\x8d\x21\x0b\x8c\x6d\x07\xd7\x4a\x3b\x70\x3c\xfd\xd4\ +\xd5\xf6\x2f\xde\xfb\x33\xed\x9f\xbf\xef\x1f\xb4\xa7\xaf\x3c\xda\ +\x76\xef\xbe\xd0\x2e\xdc\x7e\xbe\xed\x32\x8f\xc7\x4b\xfc\x09\x48\ +\x1f\x55\x59\xd4\x23\x13\x42\xa1\x5f\xc3\xa3\x2d\x0e\x8d\x4f\x4c\ +\x18\x0f\xff\x40\x5a\x38\xc0\x49\x57\x0c\xfc\x92\x40\xb8\x3b\xa1\ +\x38\x88\xe4\x64\x50\x0f\xc4\x3c\xc9\x9f\x35\x13\x24\xf5\x71\xfd\ +\xee\x9b\x8d\x9b\xba\xeb\x53\x49\xe9\xab\x6f\x46\x6a\x7e\xa9\xc3\ +\xc7\xf5\xf3\xb8\x19\x48\x4e\xd5\x7d\xce\x25\x43\x17\x95\x68\xcc\ +\x12\x63\x6c\x8a\xc1\xc2\x6d\xe3\x5a\xa2\x01\xc6\x04\x10\xd0\x75\ +\xc0\x33\x08\xd4\x70\xc0\x51\xf4\x9a\xed\xbf\x51\x43\x5d\xde\x9e\ +\x99\x64\x28\x44\xf8\x60\xca\xa5\x01\xa5\x8f\x98\x57\xf0\xd6\xcf\ +\x91\xd9\x1a\xd5\x86\x56\x33\x8a\x9f\xca\x70\x09\xd5\x3f\x89\xed\ +\xc1\xec\x3f\xe7\x65\x14\x30\x63\x7d\x44\x26\x63\x8c\xb1\x4f\xd9\ +\xb4\x97\xaa\xd6\xb0\x25\x14\x67\xa8\xd3\x70\x8c\xb2\x13\xae\x2b\ +\x88\xb3\xa3\xb6\xbd\x57\x7f\x8c\xaa\x27\xc4\x55\x36\x6a\x07\xd5\ +\x7d\x12\x23\x4e\xeb\x56\xd3\x96\xfc\xd1\xea\x9b\xb6\x6b\x92\xd3\ +\x8c\xc5\x8a\xa8\xb5\x1a\x18\x5b\x82\x79\x23\x5e\x84\x85\x34\x37\ +\x63\x3f\xa9\x8d\x94\x29\xa2\x56\xc7\x8a\x90\x9e\x3a\xd9\xbf\x03\ +\xe2\x43\x16\x8c\xc8\xb2\x1f\x68\x7d\x0d\x9e\xd1\x08\x96\xa4\xdf\ +\x1e\xc6\xe2\x3c\x05\x63\x13\xb1\xfc\x71\x24\x9e\x5c\xb9\x76\xba\ +\x56\x83\x63\x71\x74\xd8\x9e\x79\xe6\x72\xdb\xbe\xfc\x5c\x7b\xf5\ +\x43\x6f\x6d\xbf\xe7\x5b\xfe\x48\x7b\xeb\x9b\xde\xde\x2e\x9e\x3f\ +\xdf\xae\x5e\xd9\xf7\x6f\xf8\xa3\x0e\xef\x8b\x79\x4c\xf1\xe5\x97\ +\xfb\x8f\x3e\x58\x46\x96\x5f\x5d\x7b\x5c\xfc\x4c\x75\x5d\x17\x91\ +\xd9\xc0\xfd\xaf\x24\xb9\xb1\xd8\xe7\x1c\x71\x8c\x0a\x29\x5e\xba\ +\xa2\xd4\xa6\x6f\xc4\x8b\x54\x3b\x7c\x32\xa6\x12\x83\x95\xd6\xe9\ +\x54\x08\xaf\x89\x41\xfe\x34\x7b\xae\xaf\x71\xab\x61\xbd\xd5\xd7\ +\x58\xe3\xe6\x61\xfd\x42\x6d\x8d\x35\x6e\x61\xbc\xe4\x0f\xfe\x17\ +\x7d\x05\xd8\x81\x2f\x3b\x78\xcd\x7a\xea\xe9\xb2\xd3\x50\x10\x23\ +\x93\xb1\x56\xba\xec\xf9\x8c\x91\x3f\xa5\xb9\x78\x63\x86\x0b\x7f\ +\xfb\xf4\x10\x41\x92\x35\x21\x83\xd7\x9f\xb8\x08\x49\x9b\x8b\x7e\ +\x4a\x0f\x1f\x36\xcc\x91\x5f\xa6\xfd\x5a\xec\xb5\xca\x46\x37\x24\ +\xa2\x61\x86\x22\x44\x8d\xbc\xe4\x92\x0b\x36\x27\x01\x0b\x6f\x48\ +\xf4\x52\x6d\x73\xbb\xb5\xed\xad\xb6\x83\xd8\xed\xdb\xef\x6c\xc7\ +\xc7\xdb\xed\x67\x7e\xea\x27\xda\x2f\xfd\x7f\xfe\x7e\x7b\xf4\xdf\ +\xfc\xeb\xf6\xda\x3b\xb7\xda\xb9\x3b\xce\xb7\xb3\xb8\x43\xda\xe5\ +\x0d\xc2\x36\x7f\xca\x9a\x25\xe2\x81\x2d\xbe\xdc\x6f\xde\x8e\xbb\ +\x7e\xcc\x78\x0e\x2d\x6c\x00\x04\x47\x25\xbe\x8e\x97\x3c\x83\x92\ +\x52\x5c\x20\x94\xc9\xfa\x41\x67\x9d\x74\xd2\x95\x7d\x50\x17\x5b\ +\xe2\xa7\xa9\x9c\x5b\xdf\x7a\x99\xe0\x87\x0d\x83\xc0\x41\xaa\x36\ +\x4d\x0c\x8a\x42\x6e\x09\xac\x5b\xe8\x1d\x88\xa9\x6b\xaa\x5a\x01\ +\x8f\x71\x19\xac\xd1\x11\x5d\x09\x54\x6a\xca\xdc\x16\x56\xd7\xcc\ +\x1a\xe9\xcd\xd4\x21\xad\x8d\xec\xf4\xa2\xad\x81\x73\x80\xe7\x6e\ +\x33\x89\x57\x6b\x9c\x92\xb2\x12\xac\x53\xb7\xc5\xf5\xa0\x3e\x11\ +\x9b\xe3\x1e\x55\xab\x4e\x78\x04\x9d\x65\x07\x1e\xb0\x30\x78\x36\ +\x86\xbc\xe1\x48\xba\x73\x44\x90\x3d\xa5\xf0\x35\x77\xec\xeb\x11\ +\x3b\xeb\x3b\xd1\xc3\x65\xdd\x08\xb2\xa3\xd5\x98\xb8\x56\xc4\xd5\ +\xbe\x34\x2e\x18\x35\xcc\x7e\x79\x86\x03\x3b\x65\xee\xc9\x6a\xb9\ +\x1e\xe2\x2a\xc8\xeb\x03\x50\xc9\xf5\x8f\xad\x34\x0d\x9e\xf8\x43\ +\x11\x32\x2e\x73\x24\x55\x2f\xfb\xa3\x2e\x05\xc2\x5e\xee\xa3\xa2\ +\x3a\x1f\x28\x76\xfa\xd3\x47\xd9\xf3\x88\x38\xf0\x68\x8b\xa3\xcf\ +\x14\x7a\x81\xa2\x0f\x09\xb7\x74\xf2\x7c\x71\x12\xff\x2b\x4d\x8f\ +\x81\x71\x0e\xbf\x84\x93\xe0\xe5\xe7\xae\xb4\x8f\x3e\x71\xad\xb5\ +\x37\x7c\x5d\x7b\xfb\x8f\xfc\x99\xf6\xf5\xdf\xf6\x1d\xed\xf6\xad\ +\x9d\x76\x6d\xff\x6a\x5b\x1c\x2d\xf4\x7f\xd5\xf8\x27\x1e\xd9\x0f\ +\x1f\xff\xe8\xe1\x7b\xd4\x67\x6d\x3f\xb8\x89\x71\x08\x98\x01\x18\ +\xfe\x73\x43\x9e\x37\xc5\x20\x31\x7f\xb3\xce\xbc\x14\xfb\x42\xfa\ +\x7f\xa6\xb1\x06\xff\x5f\x26\x23\x4a\xcc\xdc\x96\xe4\x83\x25\x9e\ +\xc3\x65\xba\xb1\x22\x69\x95\x31\xb4\xc3\x2f\x21\xc3\x5c\x97\x80\ +\xd6\xab\x20\xfc\x0c\xf7\xf1\x5e\xbd\x74\xa6\x5d\x0a\x74\xfd\x3a\ +\xa8\xa9\xc4\x0d\xa4\x7c\x59\xe3\x06\xa7\x6d\x02\xcd\xdf\x6c\xfe\ +\xb3\x86\x36\x56\x9d\xe4\xe2\xf7\x86\x34\x32\x9e\x98\x84\xa6\x23\ +\xc8\xa9\x08\xc0\x4a\x5e\x35\xf3\x88\x18\x36\xfb\xca\xaf\xd4\x97\ +\x64\x2c\x3a\x3e\xa9\xcf\x24\x8f\x55\x99\x18\xd3\xc9\xc9\xa2\xd4\ +\xa5\xea\x08\x71\xa1\x91\x93\xa0\xd5\x6b\x89\xb2\x1e\x9a\x8e\x25\ +\xc8\x63\xec\xdc\x3c\xa6\xfb\x6a\xc7\xa2\xdf\xe0\xc7\xa1\xb3\x87\ +\xeb\xab\xc5\xd1\x49\xfb\xc0\x6f\xfc\x5a\xfb\xa7\xbf\xf8\x3f\xcc\ +\x24\x0c\xf3\x00\x00\xff\xf4\x49\x44\x41\x54\xb5\x9f\xfd\xcd\x5f\ +\xd0\x9f\xd2\xbe\xfd\xe5\xb7\xb5\x33\xbb\x7b\x0d\x57\x5e\x38\xd6\ +\x71\x3d\x85\x22\xfc\x73\x66\x3c\xcf\xb1\x17\xcf\x01\x0a\x41\xb0\ +\xe4\x38\x23\x82\xc0\x79\xc0\xc3\x8c\x18\xfe\x49\x6a\x9d\xa3\x1c\ +\x99\x2e\x9e\x2f\x14\x21\x02\x80\x74\x5d\x43\x35\x69\x17\x7f\x0a\ +\x5f\x97\x86\xe5\x8f\x31\xe1\x72\x1c\xa6\x78\x35\x95\x66\x84\x4c\ +\xfd\xd2\x1d\x23\x55\x4e\xd6\xe0\x38\xc5\xf4\x04\x09\x2c\xe2\xb1\ +\x02\xb9\x2e\x41\x86\x4e\x0c\x9e\xeb\x19\x25\x35\x7e\xb3\x46\xce\ +\x1f\xb5\x70\x75\xc8\xc3\x5c\x59\x01\xda\x39\x71\x9a\xd7\x01\x5b\ +\x7d\xc4\x40\xf5\x2b\xb1\xfb\x78\xf6\x1c\x71\xd6\x47\x34\xb5\xea\ +\x05\x14\x60\x5e\xaa\xdc\xb0\x39\x07\xf8\xca\x5e\x15\xd1\x7d\x94\ +\xe6\x85\x50\x79\x9e\xee\xf1\x10\x3d\x02\x7c\x7a\x46\x1d\x40\xbc\ +\xe3\xe4\x9f\xf0\x8c\x4f\x2f\xfd\xea\x14\xc8\xa0\xc4\x88\xe9\x88\ +\xd0\x91\xb3\x02\xc5\x35\x8d\x42\x56\x27\x6a\xdd\x5e\x34\x34\xb6\ +\x7d\xc0\xd5\x6d\x99\x4a\x45\xac\xaf\x11\xb9\x93\x38\x1a\xb5\x7f\ +\xc2\x71\x9d\xa3\xe4\xfe\x11\xf6\x24\x54\x1b\x8f\x7d\xc4\xdc\xc9\ +\x59\xfa\x9c\x04\x77\xf7\x0c\x20\xfc\x99\x80\x2f\xa1\x5c\x3d\x30\ +\x5f\xc1\xe8\x3b\x31\xf1\xc2\x88\xb5\x8d\x34\x8e\x90\xf0\x3e\x66\ +\xaf\xe5\xd8\xe6\x63\xdc\x5a\x1f\xed\x8f\xd0\xa7\xdd\x0c\x75\x04\ +\x7b\xdf\x83\xf4\x6b\x7f\x7c\xe1\xda\x89\xc7\x3c\x5f\xac\x29\x0c\ +\xf6\xb5\x6b\x57\xda\x93\x8f\x3c\xde\xee\xdc\xbc\xad\xbd\xfd\xad\ +\xdf\xd3\x7e\xdf\x77\xff\xc1\xf6\xf2\x97\xbd\x1a\xd1\xc7\xed\xda\ +\x65\x5c\x4b\xf1\xdc\x8d\x53\x79\x1e\xd7\xba\xde\xc1\x57\x1e\x9a\ +\xea\x83\x4a\x36\xe1\x27\x32\x8e\xe7\x64\x59\x38\xdf\xca\x0b\x73\ +\xbc\x5c\xf3\x0f\x17\x0d\x8e\xba\xa2\xa8\x4a\xe6\x75\xcf\x90\xca\ +\xc4\x47\x5e\x1a\xb2\x3b\x9f\xac\xfc\x52\xca\x92\x6d\x81\x88\xca\ +\x7a\x5d\x0d\xf2\xd5\xae\x98\xfb\x96\x2a\xaf\xf1\x65\x8c\xf5\xd6\ +\x5e\x63\x8d\x9b\x07\x7c\x8f\x99\x5f\x22\xae\xb1\xc6\x1a\xb7\x0a\ +\x5e\xf2\x07\xff\x17\x70\x05\x78\xb1\x7b\xea\xe9\x52\x34\x1a\x7d\ +\x22\x86\xb1\x9d\xa7\xc2\x9b\x01\xf3\xae\x63\x3e\x39\xeb\xe3\x05\ +\x59\xb5\x15\xaf\x97\x69\xf9\x82\x8d\x27\x6f\xeb\xb6\xb1\xf0\x81\ +\x83\x54\xfb\xd5\xa4\x3f\x75\xd6\x10\x82\x8f\xeb\xe9\x8c\x61\xab\ +\x1b\x0c\xd8\x72\xe9\x8a\x8b\x04\x05\x1a\x5e\xe0\xeb\x86\x86\x37\ +\x1a\x1b\x6d\x6b\x73\xab\x6d\x6c\x6f\xb7\xad\x8d\x2d\xf4\xbe\x68\ +\x67\xce\x9c\x6b\x9b\xe7\xce\xb5\x47\x1f\xf9\x6c\xfb\xe9\x7f\xf4\ +\x0f\xdb\x4f\xff\x57\x7f\xaf\x3d\xf8\xdc\x53\xed\xa1\x07\xce\xb6\ +\x1d\xd4\x3a\x8b\x9c\xdd\x5d\xdc\x74\xe0\xc6\x63\xfc\x54\xb7\xcb\ +\xeb\x67\x06\x59\xbf\x5f\xe6\xe5\xcd\x5a\x65\xe2\xb1\x0a\xc6\x60\ +\x9f\xd1\x6f\x8a\x12\x69\xcf\x78\xad\xa6\x48\xb3\xfd\xa6\x2f\x83\ +\x52\x8d\x66\xe8\x95\xa7\x0c\x9f\xd5\x50\x46\x8c\x1f\x50\x59\x4f\ +\xc9\x38\xd1\xe9\x23\xd2\x2f\x70\x3d\x47\x9f\x35\xcc\x6b\x1e\x98\ +\xe4\x00\xe9\x22\xdf\xc3\xa8\xb0\x08\x55\xeb\x5c\xd7\x52\x45\xc8\ +\x94\x5e\x72\x62\x5c\x0f\xb3\x40\xf5\x51\xd9\xe1\xa3\x36\xed\x79\ +\x55\x07\xc3\xdf\x6b\x2c\x6d\xd4\x9b\x8d\xd8\xdf\xeb\xd8\x4a\x7f\ +\x9c\xff\xee\x89\xa1\xc4\x6a\x0e\xcc\xc6\x17\x53\x3d\xa5\xfb\xdc\ +\xa0\xbf\x70\x8c\x3a\x99\x10\xf2\x94\x0e\xc2\x5b\x47\x3a\x43\x3d\ +\x1e\xe2\x61\x43\xaf\x35\x3c\x2b\x71\x7a\xd1\x81\xa5\x98\xa8\x19\ +\x7c\x77\x4b\x81\xaf\xf2\x68\x72\xbf\xe6\x03\x85\xa5\x3d\x51\xfe\ +\x00\x15\x05\xca\x52\x7c\xae\x8f\x7a\x84\x12\x2e\xa1\x6f\xa3\x42\ +\x56\xdb\xf9\x09\xf7\xeb\x1c\x69\xa5\xa6\xe3\xc8\x29\x27\x1f\xd8\ +\x10\x5d\xb1\xdf\xd2\x18\xe5\x73\xdb\x52\x52\xc1\x02\x5f\xfe\xaf\ +\xb4\xe3\x78\xa8\xb3\xc0\x72\x65\xe3\xa8\x3d\xfa\xc9\xa7\xda\x63\ +\xbb\x77\xb5\x33\xbf\xf7\x7b\xda\x77\xfd\xe8\x9f\x6e\x6f\x7a\xf5\ +\x6b\x5a\xbb\x7a\xd4\x9e\xbd\x72\x05\x49\x88\xe7\xcb\xb4\x38\x57\ +\x6f\xc1\xe6\x68\xf8\x50\x89\xe0\x69\x53\xfd\xba\xf1\x58\xd0\xf4\ +\x75\xd0\xf8\x61\x51\xf0\x89\xbd\xcf\xac\xe2\xf8\xf0\x9d\x13\xc0\ +\x18\x3d\xfc\xd9\xf4\x9c\x28\x9e\xbf\xf1\x42\x4e\x3e\x66\x38\xc6\ +\xff\x4b\x4d\x96\xfd\xb0\x95\x2f\xdb\xba\xaa\x30\x47\x8b\xfb\xa2\ +\x32\x38\xda\xa2\xd4\xb8\x3e\xd5\x90\x80\xe7\x6f\x40\x2e\x34\xa2\ +\x47\xb3\x02\xa3\xc6\x75\xc1\xb0\x55\x25\x6e\x30\x7d\x8d\x40\x9f\ +\xc3\x50\xca\x36\x9c\xfa\x62\xc2\xe5\x87\x4c\x6a\x8e\xce\x57\x67\ +\xc4\x17\xc8\x54\x6c\x1c\x6b\xb1\xc3\xf0\xe8\x90\x43\xc7\x49\x30\ +\xd4\x1d\x34\x6c\xe9\x71\xfd\x24\x0b\x92\x1f\x5e\x63\x75\x1b\xed\ +\x24\x16\x02\xc3\x9a\xd4\xeb\x7e\x73\x8e\x71\x6c\x3f\xa7\xb0\xd5\ +\x27\x62\xc0\xe4\xef\x82\x11\x29\xf5\x27\xcc\xd8\x01\xbf\xd7\x51\ +\xd3\xe1\x87\x2a\xcc\x01\xbd\x83\x8b\xa6\xb3\xdb\xbb\xed\xb3\x4f\ +\x3c\xd6\xde\xf5\xf3\xef\x69\x3f\xf1\x2b\xef\x6a\x8f\x3d\xf5\xa9\ +\x76\xe1\xde\x9d\x76\xe1\xce\x8b\x6d\x77\x6b\x8b\x69\xaa\xc1\x2f\ +\xd7\xe5\x3c\x42\xd3\xf7\x94\x40\x74\x38\xff\x96\xaa\xeb\x14\xc5\ +\x99\xf5\x3a\x90\x0b\x0a\x8b\x3d\xcc\x8d\xf1\x4b\x96\xb5\x89\xb8\ +\x0e\x16\x29\x9c\x5f\x4c\x7a\x2c\xcc\xf1\x18\xb8\x8e\xa2\x22\x4e\ +\x57\x75\xa1\x5b\xa4\x5f\xf1\xd2\x19\x13\x73\x43\x1e\xed\x71\xaf\ +\x9b\xeb\xa6\xc6\x88\x02\x69\x4a\x0b\x43\x75\xac\x64\x23\xe1\x99\ +\x08\xbb\xc0\xa5\x98\x33\xf5\x69\xb3\x01\x53\x16\x16\x3f\x7d\x5a\ +\x3d\x46\x62\xa9\x7e\xaa\x11\xcb\x71\xa5\x59\x31\xc2\x22\x70\x82\ +\x8c\x0e\xbe\x07\x07\x4f\xbb\xa7\xa1\x77\xf0\xf2\x74\xde\x23\x72\ +\x78\x06\x42\x6a\xa5\x21\x83\x62\x94\x32\x65\x83\x08\xde\x54\xce\ +\xa7\x5a\x23\xfb\x01\xc6\x3a\x0f\xce\xc9\xd7\x01\x07\x84\x10\xcd\ +\xba\x92\x6a\x2e\xc1\xfc\x60\xa6\x22\x60\xcb\xeb\x35\xfa\x9f\x00\ +\x66\x1d\xa5\x21\xb2\xb3\x84\x6b\x14\x04\x11\x6b\x3d\xd0\xe3\xc2\ +\x3f\x4b\xec\xf1\x95\x2e\x31\x23\xbd\xac\x5b\x05\xa8\xc9\x2c\xcc\ +\xd5\x79\x4a\x1f\x67\x05\x6a\x2f\xc5\x55\xaa\x38\xbb\xea\x6d\xaf\ +\x51\x81\xcb\xfd\x94\xe8\xfb\x85\xbd\x21\x89\xcc\xa0\x0a\x89\x7d\ +\xa3\xce\xc7\xd0\x00\xf8\x27\x35\x62\xfd\x71\x3a\x14\xa7\x33\x34\ +\xf7\x53\xfe\x0f\x59\xe8\xfc\x6d\xe1\xc5\xd1\x71\xbb\xf6\xe4\xe3\ +\x6d\xff\x52\x6b\xaf\xb8\xed\x2b\xdb\xb7\xff\xde\xef\x6c\xdf\xf8\ +\xf6\xef\x6c\x77\x5e\xb8\xbd\x1d\x5c\x5b\xb4\xfd\x83\x03\xe4\x1c\ +\xc5\x31\xca\x9a\x94\x51\x3a\x8d\x44\x74\x6b\x09\x05\x52\x11\xd0\ +\xfd\xc2\x4c\x46\xe8\x1c\x29\x75\x92\xbe\x17\x66\x70\xfa\xd0\x94\ +\x17\x70\x8e\x15\x52\x0f\xa9\x90\xb4\xa3\x5f\x7e\x09\x25\xd6\x63\ +\x21\x4f\x5b\x4e\x0b\x22\xc7\x4d\xb8\x60\x80\x8e\x0a\xfa\xe6\x1c\ +\x91\x39\x59\xa8\x16\x5c\xe3\xcb\x1d\xeb\x2d\xbd\xc6\x1a\x37\x0f\ +\xeb\x17\x6a\x6b\xac\x71\x0b\xe3\x25\x7f\xf0\x7f\x81\x56\x20\xaf\ +\x55\x57\x9e\x2e\x45\xf9\x96\xb1\x3e\x74\xa0\xc2\x78\x5f\xa6\xca\ +\x10\xcd\x07\x03\x0a\x92\x6d\x5e\x11\x7a\x80\x8a\x25\x1e\xc2\x8e\ +\x97\x67\x33\x3d\x1e\xb4\xea\xa7\xa6\xbb\x7f\xd4\xe2\x17\xef\x40\ +\x27\x2f\xe3\xc4\x41\x67\x2e\xcd\x8d\x05\xcc\xb8\x80\x0e\x4a\x7e\ +\x7d\x79\x3d\xec\x65\x1d\x32\x8a\x90\xae\x17\x6a\xba\xd3\xc1\x85\ +\x3d\x26\x66\x93\x2f\xd5\xf4\xdb\x6a\x3b\x08\x58\xb4\xed\x9d\xdd\ +\x76\xe6\xf6\x8b\xb8\xa9\x39\x69\xbf\xf2\xde\x77\xb7\x5f\xfa\x5b\ +\x7f\xab\x7d\xec\xa7\xde\xd3\x5e\x73\xfb\x5e\x3b\x77\xe7\x6e\xbb\ +\x63\x7b\xaf\xed\x6e\x2e\xda\xd6\xd6\x46\x3b\xe6\x4f\x48\xb3\x27\ +\xd6\x89\x49\xee\x37\x0f\x02\xfa\xa7\x3b\x6c\x0e\x85\x9a\x47\x13\ +\x98\x18\x00\x6c\x52\x5e\x13\x2a\x99\x3b\x02\xbb\x1a\x8a\xda\xe1\ +\x9e\xfa\x91\xae\x67\x6e\x09\x50\x74\xab\xbe\xe2\x18\xd0\x7b\x53\ +\x0a\xe7\x56\xbd\x42\xba\x04\xfd\x8c\xd3\x47\x0b\x23\xea\x98\x08\ +\x67\x99\xeb\x2e\x15\x22\x58\xc5\xa6\x6b\xae\x80\xba\x48\x4f\x14\ +\x88\x24\xf5\x67\xa6\x43\xb5\xac\x4e\x31\x2b\x31\x41\xfa\x12\xaa\ +\x3f\x27\xa7\x88\x21\x84\xb6\x0a\x39\x92\x15\x1d\x17\x6a\xa9\x0e\ +\xfb\x2d\xa1\x46\xd6\x22\x96\x9c\x81\x31\x17\xf3\x1e\x47\xfd\xf4\ +\x00\x72\xa2\x41\x7f\xae\xee\x2d\x2a\x8a\xae\x12\x4a\x4e\x08\xc7\ +\x7c\xd6\x99\xeb\xf0\xe0\x5d\x46\xc7\x92\x31\x8d\x1f\xa0\x5f\x91\ +\x5d\x8e\x8c\x92\x23\x32\xfb\xcd\xd8\xeb\x20\x8b\x9c\x86\x95\xfe\ +\xa8\xdd\x7d\xd1\x47\xa7\x60\x4b\xb7\x4c\x56\x48\xbe\x73\x24\xbc\ +\xd7\x46\x15\xe8\xe6\x32\xa4\xfb\x48\x53\x26\xaa\x51\x62\x85\xd8\ +\x56\x62\xfc\x14\xc5\xb6\xe6\x39\x8f\x12\xf6\x41\xcd\xb1\x39\x5e\ +\xf9\x1c\x20\x90\x67\x05\xc7\xb8\xb1\xdb\x75\x25\xf5\xc1\x17\x0e\ +\x4e\xb1\x3a\xcd\xf3\x3c\xcb\x17\x64\xad\x1d\xe2\x9c\xfb\xd8\x73\ +\xcf\xb6\x47\x1e\xdd\x6f\x3b\x6f\x7c\x4b\x7b\xf5\x1f\xfe\xa1\xf6\ +\xf6\xef\xfb\xee\x76\xef\x9d\xb7\xb5\xab\x97\x2f\xeb\x27\xad\xf5\ +\xf2\xea\xe8\x58\xfb\x82\xfe\x57\x9a\x2b\xbb\xc5\x87\x43\xd5\x79\ +\x9b\x2f\xb5\x40\xe8\xa5\x98\x06\x02\x1b\xd2\x2a\x75\x1a\x7e\x91\ +\xa6\x87\x3a\xb2\x2d\xbd\x30\xcf\x05\xeb\x83\x20\x49\xfe\x7f\x10\ +\x66\xce\xf9\x22\x5d\x7b\xce\xb9\x6f\x2a\x2c\xcf\x57\x08\x19\xc3\ +\xf1\x76\x30\x07\x82\x0f\x76\x15\x1b\xae\x7e\xbe\x13\x40\x72\x9f\ +\x08\xa7\x7d\x19\x10\x09\xdd\x26\x92\xfb\x1c\xf0\x79\xa4\xde\x92\ +\x58\xb5\x2d\x26\x9b\x84\xcd\x8c\x17\x6a\x4e\xea\x40\x0f\x2f\x45\ +\x92\x9b\x85\xb1\xd5\xbe\x10\x3b\x4b\x1c\x69\xd6\xec\x88\x4f\x5c\ +\x2f\x05\xef\x38\x3a\x42\x0f\xd9\x63\x74\xb0\xca\x63\xc9\xeb\x2d\ +\x1e\x1f\x19\x2f\x3a\xfd\xac\x4d\xc5\x7d\x58\x67\xe3\x8b\x84\x88\ +\x76\x2b\x3f\x8f\x63\xc7\x55\xdf\x7c\xfd\xda\xa6\x8f\x7b\x1f\x16\ +\x94\xc8\x42\x12\xdf\x99\xed\x6c\x6d\xb7\xc3\x83\x83\xf6\xeb\x1f\ +\xfd\x68\xfb\x27\xbf\xf4\xaf\xdb\xcf\xbc\xff\xe7\xda\xe6\xde\x7e\ +\xbb\xeb\x65\xb7\xb7\x0b\x67\xcf\xea\xda\x49\xe7\x0e\x5d\x2c\xf9\ +\xf8\xea\x1d\xc4\xf5\x0f\x07\xa0\xee\xc2\xb6\x17\x6d\x8c\x81\xe3\ +\x13\x47\x3f\x39\x12\x00\xab\x71\x1c\x24\x1d\x4f\x9d\x6b\x24\xca\ +\xb0\x3b\x54\x28\x85\xf7\xba\x93\x90\x36\xe2\xca\xb8\x48\x06\x2d\ +\x3f\xa9\xb4\x63\x33\x00\x9e\xf7\xe4\xa9\xb1\xc6\x9c\x4b\xd1\xe7\ +\x9d\x63\x0e\xd2\x75\x6c\x7b\x4c\x33\x74\x6a\xf8\xa8\x69\x0c\x36\ +\x3b\x64\xcf\x48\x5d\xff\xb3\xbc\x92\x2c\x6b\xff\xd9\xb7\xf3\xd0\ +\x68\x63\x53\xa5\x6e\xc1\x3f\xe7\x99\x53\xc3\x18\xe6\xd3\x2c\xd9\ +\x53\xc8\x91\x11\xae\x31\x89\x1b\x2e\x20\x3d\x9d\x28\x98\x04\x06\ +\x2a\xb7\x3a\x57\xfb\xc7\xca\x7a\x40\x8e\x8b\xee\x48\x9f\x57\x49\ +\x7b\x60\x16\x51\x02\xa6\xb1\xa7\x3a\x8a\x49\x2d\x66\x70\x16\x93\ +\xc8\x4d\x30\x41\x3f\x86\x06\x56\xc5\xad\xce\xed\xcd\x68\xb9\x03\ +\x05\x8a\x7b\x20\x0a\x4d\xe8\x30\xc6\xec\x82\xe8\x5c\x89\x9c\xa9\ +\x7d\xaa\x7b\x03\xa6\x0c\x94\xf5\x3a\x06\x0d\x44\xd5\xc2\x29\x92\ +\xdf\x87\xb9\x43\x96\x1a\x1e\x11\x6d\xef\xdd\x4b\x7d\x8a\xa0\x8f\ +\x91\x9e\x7f\xb9\x26\xa8\xe3\xa0\x97\x31\xe6\xf8\x83\x06\x3a\xa7\ +\xc1\xe6\x0f\x21\x89\xc6\x79\xd7\xf6\xa2\x1d\x5c\xd9\x6f\x4f\x3c\ +\xf1\x44\x3b\xb7\x7f\xa1\x7d\xc3\xd7\xfe\x9e\xf6\xfd\xdf\xf9\x5d\ +\xed\xe1\x57\xbf\x56\xe7\xc9\x6b\x57\x0f\x11\x8a\x73\x05\xff\xbc\ +\x23\xf2\x78\x29\xc2\xdf\xe4\xd5\x2a\xc0\xd6\x6f\xc8\xf1\x20\x71\ +\x57\xd9\x63\x7e\xac\xc7\xa2\xf3\x71\x91\x1c\x67\xe7\x78\x9d\xd4\ +\x73\x7c\xad\x34\x5f\x6a\x0d\x21\xf5\x8c\x49\x9e\x9a\xd4\xe0\x64\ +\x90\x83\xd4\x00\x23\xd2\x41\x69\x19\xf4\x2b\xbc\x70\x42\xac\xe0\ +\x75\x31\xcf\x59\xe3\x56\xc2\x7a\xeb\xaf\xb1\xc6\xcd\xc3\xfa\x85\ +\xda\x1a\x6b\xdc\xc2\x78\xc9\x1f\xfc\x5f\x80\x15\xd0\x35\xad\xfa\ +\x39\xa5\x33\xd0\xba\xc1\xc8\x98\x22\x7d\x7a\x0d\x0e\xba\xe3\x62\ +\xa1\x95\xbc\x38\x3d\x81\xd5\x8d\x80\x63\xfc\xc0\x66\xea\x9f\xc5\ +\x16\x9e\x04\x55\x3b\xf8\x97\xe6\x63\xe0\xbc\xb9\x60\x9e\x5e\xc4\ +\xf9\xa1\x84\x6e\x74\x94\x43\x40\xb7\x50\x7c\x58\xae\xc5\x2b\x2e\ +\xc6\xf1\xa3\xbb\x11\x53\xa8\x02\xe9\xcb\x7a\xb6\xfc\x4d\xb5\x13\ +\xdc\x60\xf0\x37\xd5\x36\xb7\x36\x75\x13\x73\xf6\xfc\xf9\xb6\x71\ +\x66\xab\x3d\xf6\xe4\x73\xed\x67\xfe\xd1\x3f\x69\xef\xfa\x3b\x7f\ +\xab\x9d\x7b\xe4\xd9\xf6\x95\xf7\x6f\xb6\xbb\x6e\x3b\xd7\xb6\x17\ +\x47\x6d\x73\x93\xbd\x71\x9c\xc8\xd8\x8c\x7f\x14\xad\x87\xb5\x52\ +\xd4\x1a\xa1\x73\x68\x71\x93\x21\x55\xa4\x75\x21\x95\xf0\xb3\xb5\ +\x74\xa4\xe7\x4b\x6a\x89\x21\x6c\x74\x5b\x3a\x1b\xe6\x99\xed\xd3\ +\x45\xd0\x25\x9b\x0d\xc7\xe3\x7e\x32\x46\x92\xeb\x24\xc3\x42\x80\ +\x9e\xa6\x64\xa9\x3f\x50\xd6\x6a\xe2\x8a\xdb\xcd\x74\x27\x7a\x0c\ +\x1c\xf2\x25\x01\x83\x03\xe9\xf1\xa7\x26\x0a\xf4\x9a\x09\x2d\xc3\ +\xe3\xe9\x0e\x7d\xd6\xd0\x86\xcf\x5c\xad\xd3\x93\x42\x9e\x86\x8c\ +\x63\xa4\x63\xbd\x37\xad\xc8\xeb\xa1\x88\xc4\x58\xdc\xdf\xc8\x1f\ +\x39\xe6\xbc\x67\x92\x9b\xc6\xd9\x72\xec\xd4\xe3\x1c\x22\x2b\x38\ +\xd2\x95\x64\x8b\x2a\x19\x18\x47\x1f\x77\x2d\x54\xe0\x9b\x77\xd7\ +\xd4\xfe\x90\x3a\x9d\xaa\x1c\x15\xe4\x73\x4f\x61\x84\xbc\x1e\x1c\ +\x3d\x22\x23\xde\xf4\x04\x2b\xa8\xde\x0b\xd1\xc7\x88\xa5\xc6\xf6\ +\x11\x14\xbf\x91\x5a\x38\x60\xf7\xbc\xb0\xb5\xf2\x61\x8a\x1a\x4d\ +\x17\x59\x47\x6b\xde\xb9\x40\xa1\x18\x35\x99\xe3\xd4\x0b\xd7\x55\ +\x29\x6c\xa2\x76\xd8\x25\x54\xee\xb4\x7b\x5d\x3e\x64\xb1\x32\xf1\ +\x4b\xcf\x83\x9a\x28\x3e\xed\x4b\x32\x20\x15\xc2\xfd\xd3\xcb\x91\ +\x7e\x92\x1a\x3a\x3a\x38\x38\x82\x8d\x33\xe6\xa7\x1e\x7d\xbc\x3d\ +\xd2\x6e\x6f\x2f\xfb\xfe\xdf\xdf\xde\xf1\x27\xfe\x70\x7b\xc5\x57\ +\x7c\x45\xbb\xd0\xb6\xdb\xa5\x4b\x97\x11\x73\x88\x7e\x16\xea\x6b\ +\x4b\xfb\x82\x1e\x03\x69\x7c\xde\x77\xd0\x1c\xa3\x47\xd0\x9e\x2f\ +\xb4\x12\xa1\xb3\x7b\x86\xa5\x2d\x8e\xe7\x54\x3d\xea\xd1\xb9\x55\ +\x51\xe9\xd3\xa9\x09\x1e\xf2\x25\xc7\x09\x11\xc3\xa0\xe4\x29\xa3\ +\x8e\x62\x82\x17\xc7\xf3\x35\xeb\x31\xae\xf4\x21\x50\xa6\x5d\xb9\ +\x2e\xc9\xeb\x93\x53\x38\x90\x3c\xe3\x3a\x9f\x4a\x66\xf4\x4c\x80\ +\x3a\x91\xfc\x0d\xe2\x05\x84\x7e\x59\xe3\x85\x4c\x5b\x3f\x26\x22\ +\xa1\x4e\x7d\x07\x8c\xdc\xd6\x42\x71\x4e\xe2\x00\x85\x45\x6c\xaf\ +\x6d\xcc\xad\xfa\x3d\xdc\x67\x50\xda\xd6\x86\x9f\xb6\xbf\xba\x4e\ +\x1e\xc7\x61\x8f\x81\xf4\x9f\xc9\x36\xef\x58\x79\xbb\x9f\x3e\x7a\ +\xa4\x8b\x27\x65\x5e\x2f\xe1\xc8\x52\x27\x97\x31\x66\xdd\x2a\x0e\ +\xc7\x31\xa4\xfa\x22\x47\x5b\x3e\x5a\x38\xa6\x37\x78\xfd\xc6\xa9\ +\x82\xc4\x7c\xe9\x4b\xc7\x93\x4c\xc5\xf1\xfc\x71\x66\x67\xa7\x6d\ +\x23\xe6\xc9\xe7\x9e\x6d\x3f\xfb\x2b\xbf\xda\xfe\xf1\xcf\xff\x44\ +\x7b\xfc\x89\x4f\xb5\x73\x77\x6c\xb4\xbb\xee\xb9\xd8\x76\xcf\xec\ +\xea\xcf\xc9\x7a\xce\x5d\x80\x5d\xb0\x9e\x3a\xa0\xc1\xa5\x83\x7e\ +\x76\x10\x26\xa4\x2f\xf1\x82\xd3\x00\x99\x4b\x55\x57\x93\x0e\x65\ +\x1c\x44\xfe\x76\x18\xa1\xd0\x1e\x0f\x29\x1b\x0b\x21\xe9\x79\x10\ +\x52\x30\x3f\x7c\xf6\x87\x4a\x01\x29\x16\x0d\xd7\x44\x97\xa2\xba\ +\xce\xb5\x4e\x28\x83\x9f\xf2\xbd\x58\xfd\x6b\x1c\x80\xc4\xe8\x37\ +\xe9\xb1\x4e\x24\x62\xbc\x89\xc8\x99\x63\xd0\x23\xde\x2f\x04\xe7\ +\xb1\xb0\x2b\x85\x09\xe5\x9f\xe3\x9c\x22\x02\x42\x68\x34\xd8\x66\ +\x1c\x8f\x2b\xe6\x76\xa3\x6e\x4d\x31\x33\x70\xf8\xce\x75\x29\x7f\ +\xcb\x8d\xcc\x48\x18\x3c\x15\x2c\xa9\x77\x44\xfc\x2a\xac\x88\x5f\ +\x8a\xce\x1d\x74\x15\x32\x30\xdc\x32\xa3\xe6\xea\x6b\x8e\x64\x56\ +\x20\x5c\x12\x68\x9c\xe3\x76\x0e\xb1\x4b\x2e\xcc\x61\xe4\xcd\x7b\ +\xd0\xe1\xb2\xe4\x89\x60\x6b\x03\x9d\x66\xeb\xed\x35\x0d\x08\x84\ +\xa3\xbb\x4a\xcc\x2a\x8e\xf0\xf7\xcc\x1c\x43\x4d\x98\x8e\xcb\xe3\ +\xad\x00\x51\xc3\xb1\x30\x23\xd7\x4b\x3a\x55\xc9\xa8\x55\xe2\x05\ +\xd8\x1c\xed\x88\xc5\x9e\x17\xf9\x09\xae\x6d\xcf\x9f\x63\x52\xcf\ +\xeb\xcd\xff\xdc\x38\xf6\x5f\x48\x0e\x28\xf6\x71\x36\xb9\xff\x6a\ +\x7b\x86\x42\x49\xd5\xd2\x2f\xd3\xfc\xf2\x6b\xa1\xf3\xe7\xe2\xf0\ +\xa8\x3d\xf3\xc4\xb3\x6d\xff\xf2\xb5\xf6\xc0\xed\x5f\xd1\xbe\xf5\ +\x5b\x7f\x4f\xfb\xb6\x6f\xfc\xf6\x76\xf7\x1d\xf7\xb4\xe3\xfd\xe3\ +\x76\x4d\xbf\x95\xc6\xf8\x7a\x14\x15\x88\xa2\x7f\xc6\x33\x4e\x9f\ +\xe0\x31\x00\xbe\x44\xd4\x35\x8e\x06\x43\x4f\xe8\x74\xe3\x5e\x97\ +\xff\xf6\x80\xd0\xf5\x55\x8d\xe3\xf5\x10\x54\xdd\x05\xd3\x56\x02\ +\x5b\xfa\xd4\x06\x9f\x9c\x35\xea\xe2\x23\x56\x0c\xf5\x18\xab\xa2\ +\xe4\xeb\x96\xc1\x75\x22\x48\xc8\x5f\xd7\x3b\x9d\xa7\xa1\x57\x59\ +\xe3\x16\xc4\x7a\xeb\xaf\xb1\xc6\xcd\xc3\xfa\x85\xda\x1a\x6b\xdc\ +\xc2\x78\x49\x1f\xfc\x2f\xca\xe0\xeb\xc5\x28\x90\xd7\xa7\xc2\x72\ +\x87\x3c\x7b\xf2\xc2\xdd\x67\xd1\xf0\x43\xf4\xd3\x2a\xa5\xf4\x12\ +\x13\x5c\x5e\xf8\xeb\xa6\x83\x7a\xfc\x66\x1a\x97\xfc\x73\x8e\x9d\ +\xe7\x63\x84\xf0\xe9\xd7\x1d\x42\xef\x31\xbd\x2e\xf3\xdc\xaf\x6e\ +\x29\xf4\x10\x02\x5c\xd4\x56\x9c\xdc\xec\x23\x39\xdb\xf4\xf1\x5e\ +\x43\xb7\x41\x7a\x6a\x01\x83\xb4\x6e\x40\x18\x83\xc9\x60\x1e\x6c\ +\x7d\xc9\xe7\x29\xe2\xc3\x5b\x5e\xcb\x6f\x6e\x6c\xb5\xad\xed\x2d\ +\xe8\x90\x5b\xad\x6d\x6d\xee\xb4\x33\x77\xdd\xd9\x8e\x16\x1b\xed\ +\x57\x7e\xf1\x7d\xed\xe7\xfe\xe1\xdf\x69\xbf\xfd\xcf\xde\xd5\x5e\ +\x76\x7c\xb5\xbd\xfc\xe1\xdb\xda\x1e\x6a\xf2\xff\xaf\x6d\x32\x16\ +\x5f\xfa\x67\xd1\x9b\x9c\x51\xde\x58\xa8\x3b\xd5\xcf\x5e\x06\xaa\ +\x6e\x68\x3c\x42\x8c\xb7\xc7\x70\xb4\x14\x61\x47\xe0\x88\xa7\x5e\ +\x8d\x10\x19\xc7\x3a\xc5\x9f\x2a\xe5\xd8\xf6\xbe\x7d\x53\x83\x25\ +\x04\x1a\xe6\x52\xa1\x1e\x12\x50\x4e\x2f\x3b\xc6\xd9\x45\xac\x7c\ +\xde\x1f\x8d\x75\x31\x58\x36\x36\x4b\xf1\x44\x70\x88\x49\x59\xe9\ +\x23\x92\xe4\x34\xb7\x62\x16\xa7\xb1\xd8\xca\x1b\xca\x9a\x3f\xad\ +\x33\xfc\x15\xd5\x72\x04\xda\xdc\xaf\x64\x0f\x70\xff\xea\xdb\x2a\ +\x44\x8f\xa1\x92\xae\x92\x2b\x0a\x8d\x6c\x4f\x2a\xe0\x9b\x4e\xcd\ +\x15\x4d\xf0\x93\x78\xb4\x83\x21\x14\x8d\xd6\x5e\xf9\xe8\xc6\x3a\ +\x9b\x09\x90\x8e\x31\xf6\xe9\x00\x14\x6a\x75\x02\x57\x5d\x85\xf4\ +\x38\xcb\x7b\xd0\xe9\xd1\xd3\xc8\xf9\x1e\x11\x58\x49\x9e\x02\x75\ +\x85\x86\xeb\xf2\x7c\xe8\x75\x4b\x6c\xee\x9c\x05\x7a\x28\xcc\x60\ +\xc5\xdb\x27\x55\x94\xb4\x00\x7c\x61\x52\x78\xd6\x93\x2b\x8e\x8a\ +\x1a\x8f\x66\xe2\xae\x46\x8c\x2b\xa9\xb1\xcf\x1a\x83\x67\xcb\x3e\ +\xcb\xc8\x34\x17\x1e\x4b\xa6\xf5\xf8\x90\x86\xc7\x5a\xf7\x20\x9e\ +\x2f\x8e\x79\x6e\x06\x43\x79\x84\x73\xe2\x02\xce\xc7\xaf\x5e\x6d\ +\x9f\x78\xf4\xd9\x76\xfc\x95\x6f\x6e\x6f\xfc\xa3\x7f\xa8\x7d\xf3\ +\xef\xfb\xde\x76\xdb\xde\xb9\x76\x78\x74\xd4\x0e\xae\x5e\x6a\x8b\ +\xc3\x85\xfe\x94\x11\xff\x27\x12\x6b\xf2\x27\xb3\xf9\x90\x86\xc7\ +\x9d\x47\x83\x8a\xec\x8b\xfb\x6f\x3c\xac\x61\x93\xbf\xd1\xab\xff\ +\xa3\x44\x3f\x23\xc1\xe9\x01\x4d\xc4\x58\x37\xaf\x07\x3c\x7a\xc6\ +\x33\x38\x3e\xb9\x57\x9d\x58\xcc\xb3\x8f\xd5\xb6\x74\x76\x2a\x5f\ +\x3c\x30\x0a\xdf\x88\xa1\xd0\x0c\x9a\x23\xc1\x97\x74\x91\xa7\x25\ +\x11\x36\x99\x9c\xc7\xa1\x44\x28\x1a\x51\xab\x02\x56\xa2\xd4\xbf\ +\x11\xbc\xc0\xf0\x5b\x1e\xd3\x8d\x01\x70\x1b\x86\xda\x7d\x41\xd4\ +\xb9\xed\xe7\xe5\x19\x7a\x4c\x28\x71\x9e\x9e\xa4\x86\xb4\x0f\x96\ +\x08\x68\x29\xc5\x85\x24\x23\x87\x1f\xe8\x4a\xef\xbe\xb0\xe9\x23\ +\x27\xdd\x72\xea\x9f\xf1\xfa\x24\x87\x96\xd7\x54\x22\xd3\x6f\x2f\ +\xeb\xca\x94\xce\x96\xf1\xb1\xc8\x91\x71\x6e\x45\xe9\x7b\x09\x63\ +\xb0\xce\x7e\x46\xdb\x0f\x11\xef\xff\xa8\x0a\xa7\x28\x5c\x27\x9d\ +\xdd\xde\x69\xc7\x1b\x8b\xf6\xd1\x4f\x7c\xba\xfd\xf3\xf7\xbe\xab\ +\xfd\xf4\x47\xde\xd7\x2e\x1d\x3d\xd6\xee\xbf\x78\xa6\x9d\xbd\xfb\ +\xf6\xb6\xab\xb3\x07\xa2\xb7\x20\x59\x9a\x35\x59\x9b\x3a\x6b\x50\ +\x97\x18\xe7\x17\x3b\x00\xbe\xb4\x4f\xaf\xe2\xa1\x73\x60\x0c\xe0\ +\x07\xa6\x4e\x91\x36\x01\xfa\x43\xcf\xc6\x8e\xae\x2a\x1e\x5a\xae\ +\x79\x17\x5d\x4e\x79\xc5\xa2\x23\x99\xd5\xa5\x38\x6e\x37\x8d\x98\ +\x51\x96\xb4\xa1\xda\xce\xf1\xd2\x91\x9c\x6d\xb5\x6a\x98\x2f\x67\ +\x47\x57\x97\x15\x6b\xea\x73\x39\xc1\xa2\xf0\x81\x3e\xd7\x80\xa5\ +\xc7\x6c\xc4\x0c\x67\x40\x94\x9e\xf6\x10\xeb\x2f\xcd\x60\x3c\xf7\ +\x07\xf2\x9e\xd3\xa2\x88\x44\x0e\x82\xb4\xed\x19\xc7\x78\x39\x7b\ +\x85\xa9\x54\x31\x25\xda\x5e\x42\xdf\x13\xd4\x26\x9c\xb1\x9c\xb3\ +\xba\xd2\x60\x87\x2f\xb7\x14\xc6\x1b\xe4\x88\x18\xfd\x4c\x50\x5d\ +\x18\xb7\x56\x7b\x14\x9c\x40\xb4\x9a\x0c\x8a\x40\x24\xe5\xb8\x6b\ +\x7a\x4a\xa1\x1b\x99\x33\xf3\x13\xc3\x65\xb9\x14\x60\x4c\x79\x18\ +\xb3\x3c\x8d\xa1\xc7\xcc\x9c\xf0\xf6\xb1\x6a\xdc\x89\x32\xf3\x83\ +\x1c\x88\x82\x6c\x73\x1d\x95\xdd\x6b\x98\x15\x4f\x5a\xdc\xc0\xf2\ +\x98\x72\x1b\xd5\x31\x0c\xd4\x79\x34\x82\xc1\x75\x20\xb7\x91\xfa\ +\x70\x13\xd5\xb2\x12\xe3\xa8\x79\x3f\x67\x9f\x5a\x98\x43\x96\x21\ +\x38\x95\xea\x4f\xe2\x62\x1f\x3d\x38\x3a\x68\x57\x2e\x5f\x69\xcf\ +\x3e\xf1\x54\xdb\x39\x3a\xdf\xde\xf0\x95\xdf\xd2\xfe\xc0\x77\x7d\ +\x47\x7b\xdd\x57\xbd\xb1\x9d\xd9\xd8\x6b\xfb\xd7\x8e\xda\x62\x71\ +\xe4\x24\x02\x7d\xb2\xb2\xfb\x32\xd4\x6b\x1e\x1f\x85\x77\xff\x6a\ +\xf1\xe5\x3f\xac\xed\x6b\x2b\xda\xf8\x82\xde\xaf\x71\xc0\xe6\x35\ +\x93\xf8\xee\x8f\x6b\xa1\x12\xaf\x9c\x62\x2b\x15\x5f\xfc\xf0\x42\ +\x4c\xde\x12\x97\xb1\x0e\x29\x5c\x4c\x90\x39\xeb\x19\xb1\x04\xf9\ +\x98\x40\x54\xfd\x34\xac\xac\xb2\xc6\x2d\x82\xf5\xd6\x5f\x63\x8d\ +\x9b\x87\xf5\x0b\xb5\x35\xd6\xb8\x85\xf1\x92\x3e\xf8\x5f\xd4\xc1\ +\xb3\x38\x2e\x5a\x71\xc5\x31\xce\x90\xb3\x0e\xc3\xcc\x1b\xfb\x1e\ +\x08\x69\x15\x0d\x95\xd0\x75\xaa\x8d\xc5\xd4\xe0\xfc\xe2\x0b\x5c\ +\xfc\x36\x19\x39\xbd\xd5\xea\x7e\x4a\xfe\xf9\xb0\x9a\x67\xbf\x75\ +\xaa\x6a\xd4\x97\x79\xd6\x92\xd5\xeb\x2a\x86\x90\xc3\xfe\x1e\x2f\ +\x1a\xad\x7e\x93\xcd\x76\xf2\x04\x6f\x6c\x90\x81\x59\x01\xe3\x90\ +\xe1\x8b\x56\xf7\x03\xfa\x4d\x35\xdc\x30\x6c\x6d\xb7\x2d\xfe\x29\ +\x48\xe4\x9d\xbb\x70\xa1\x6d\x9d\x3b\xd7\x9e\x7c\xfc\xb3\xed\x97\ +\x7e\xf2\xa7\xdb\x3f\xff\xbb\x7f\xa7\xed\x7c\xf8\x63\xed\x35\x0f\ +\x9c\x6f\x67\xf7\x36\xda\x79\x64\xef\xe1\x9e\x84\xbf\xdd\xe6\xbf\ +\x92\xef\x5a\xee\xa0\x57\x97\x2a\x59\xfa\x4e\x3f\xc1\xe1\xa7\x87\ +\x2d\x6f\xe6\xf2\xe5\x47\x22\xe7\x20\x44\xc7\x98\x9b\x10\xdd\xcf\ +\x79\x8b\x7c\x90\xa2\xd3\x17\x86\x85\x63\x94\xc7\x7e\x65\x01\x50\ +\xa8\xeb\xc6\x28\x50\xfb\xb6\x9a\xb9\x79\xc3\x07\x56\x13\x60\x75\ +\x15\x44\x2b\x14\x8d\x6e\x3c\x49\x0c\x8c\x55\xa6\xc3\x46\xaf\xdd\ +\xdb\xf4\x18\x23\x72\xf8\x6b\x44\x0e\x29\x9d\xd9\xc7\x84\x56\x11\ +\xf6\x34\x2a\x0c\x0d\xd0\x40\xb1\x8d\x7b\xf0\x0c\x28\xa6\x7a\x70\ +\xf5\x75\xa8\x61\x9d\x0b\xb2\x0e\x6a\xac\x34\x40\x3f\x6c\x7e\x72\ +\xbb\x2d\x81\xf1\x11\xd7\x23\xaa\x4e\xd0\xce\x96\xfb\x02\x0d\xc7\ +\x64\x2b\x1f\x78\x6d\x0a\xea\x37\x00\xf7\xea\x0a\x15\xab\xf2\x4f\ +\x8b\xb0\x16\xde\xa0\x5d\xd7\xa8\xfa\x80\xb7\x8c\xda\x65\xe7\x12\ +\x96\xd7\x09\x73\x10\x84\x44\xef\x04\x33\x01\x49\x53\xfb\x23\x65\ +\x02\x46\xcc\x52\x80\x7d\x27\xa3\x0c\x23\xe2\xd4\x67\xaf\x9b\x35\ +\xbb\x29\xbb\x6f\xf6\xe4\x41\x6a\x5c\xac\xab\x04\x35\x11\xe7\x60\ +\xea\xd6\xec\xcb\x82\x25\x04\x02\x5f\x71\x30\xd5\x58\x3f\xf8\x88\ +\x3c\x20\x7f\x03\x8d\x3b\x84\x7f\xfb\x04\x0b\xce\xd1\xfc\xa9\xea\ +\x6b\x58\xae\x1e\x1d\xb6\xdf\x7e\xec\xd9\xf6\xf4\xde\x1d\xed\x9e\ +\xdf\xfd\x7b\xdb\x37\xfe\x7b\x3f\xd0\x5e\xff\xba\x57\xb5\xbd\xc5\ +\x56\xbb\x74\xf9\x6a\x3b\x5a\x1c\xb6\xe3\xa3\xa3\xd6\x16\x8b\x86\ +\xb3\xa4\xc7\xc9\x87\x35\x2c\xae\x8e\xd1\xa8\x3c\x7c\x9b\xac\xaf\ +\x00\x8d\x43\xeb\xe1\x86\x81\x6d\x13\xe7\x5c\xf9\xf4\xe2\xca\xbc\ +\xe3\x66\x3a\xcf\xb1\xf2\x43\x21\xc7\xf8\xf4\x25\x27\x7d\x99\xd3\ +\x43\x23\xe6\x46\x3f\x3d\x46\x36\xaa\x4a\x65\x3c\x64\xc4\xe9\x43\ +\x47\x2c\xd6\xe1\xca\x9d\xca\x49\x12\x7d\x66\xbb\xc2\x18\xee\x53\ +\x8c\xe1\x3c\x48\xcc\x90\x24\x63\x72\x8e\x5e\x00\x5e\x60\xf8\x1a\ +\x81\xbe\x31\xca\x04\xe6\x26\x10\xa0\xe4\x46\x55\x08\x94\xee\x2b\ +\x98\xcc\x7f\x18\x51\x3b\x53\x47\x1a\xcf\xbd\xa3\x8e\xce\xe8\xfa\ +\xe0\x60\x13\x41\xc6\x5f\xa9\xe7\x35\x8e\xae\x5c\x54\x77\xea\x77\ +\x3d\x5e\xd5\xcc\x38\x81\x32\xf3\xd3\x9f\x3a\xcd\x59\x4d\x6a\xe0\ +\xec\xe4\xd9\xd5\xba\xbe\x22\x5e\xae\xf8\x62\x44\xef\x4a\xba\xcf\ +\x99\x7e\x80\x1e\x73\xc1\xf3\x90\x54\x4a\x2a\xcc\xe2\x9f\xd5\xde\ +\x6a\xe7\xcf\x9c\x6d\x4f\x3d\xfd\x74\xfb\xa5\x0f\x7f\xb8\xfd\x93\ +\x5f\x7d\x4f\xfb\xe8\x47\xff\x5d\xbb\xb0\x75\xd0\xce\xdc\x7f\x11\ +\xd7\x5b\xfe\x9f\xb5\xaa\xa4\x3c\x3f\xc0\x35\xa8\xb1\x63\xd4\xe2\ +\xb9\x85\xba\x4e\x9c\x1c\x43\x1e\xe3\xb0\xd8\x65\xae\x1f\x75\x69\ +\xe4\xe8\xb5\x5f\x35\x6c\xe1\x93\x35\x44\x38\xb8\x4b\x36\x8c\xa1\ +\x3e\x53\x33\xa1\x0b\x3b\x35\x43\x90\xee\xc1\xfa\xd8\x56\xb0\xd1\ +\x5d\xe6\xfa\xfa\x8c\xbc\x4c\xc1\x2e\x36\x11\x13\x8d\x67\x99\x7a\ +\xd7\xba\xcf\x28\xf1\x8a\xc6\x99\xbe\xfa\x66\x71\x89\x89\x45\x63\ +\x32\xa4\xec\x89\x40\x4d\xf2\xe1\x3f\x0d\xec\x39\x43\x7c\xfd\xd2\ +\xf7\x0a\x73\x2a\x62\x9b\x10\x87\x2f\xcd\x4f\xc4\x5a\x4b\x94\x60\ +\x61\x52\x6d\xb8\x23\x51\x75\xa0\x8f\xfc\x82\x48\xe9\xde\x6e\xcf\ +\xe1\xa2\xd3\x91\x27\xc8\xb1\x8f\x95\x89\x81\x88\xe9\xb0\xad\x8c\ +\x9e\x36\x8d\x51\x39\x9a\x13\xbf\x8d\xee\xea\x3e\x63\x84\x66\x62\ +\x30\x10\xd4\x26\xe5\x08\x14\xf0\x7e\x69\xb0\xde\x52\x0c\xa1\xfc\ +\x60\xa7\xa2\x8c\x23\x99\x02\x51\x5e\xcf\x5e\xb7\xc4\xa6\x9a\x23\ +\x30\x1b\x08\xa3\x72\x8a\xd3\x98\x8d\x94\xda\x07\x2b\x68\x93\x9c\ +\xf1\xa2\x8b\x4c\x8c\x30\xb2\xf6\x64\x7a\xfa\xbc\x47\xda\xe2\xd9\ +\xc5\x67\x6b\xc7\xf2\xac\x44\x3f\xcf\x51\xc7\xbc\x74\x80\xd3\xc7\ +\x5b\xfc\x46\x2c\xee\x5b\xaf\x1d\xec\xb7\x4b\x8f\x7c\xa6\x5d\x7b\ +\x76\xbb\xdd\x73\xe7\x83\xed\xdb\xbe\xe3\xdb\xdb\x37\x7d\xdd\xef\ +\x6e\xf7\xdf\x73\x6f\xdb\x3c\xde\x6a\xd7\xf6\x0f\xf4\x03\x49\x04\ +\x8f\x09\xfe\xc9\x54\x5d\x87\x08\xe8\x9b\xa7\x5d\xf0\xac\xeb\x7e\ +\x55\x59\x32\xc7\xa8\x78\x50\x79\xad\x41\xa9\x2f\xda\xa1\xa7\xd4\ +\xcb\x36\x8e\x95\xa3\x47\x9e\x62\x73\xe1\x17\xfd\x21\x73\x49\x3b\ +\x6b\xd3\x16\xc7\x2f\xd5\x1a\x36\x02\xac\x53\xd0\xc6\xfa\xf4\xdc\ +\xee\x0f\x3d\x91\xab\x45\xc8\x5f\x09\x82\x36\x91\xbe\x8a\x55\xf1\ +\x6b\xdc\x0a\x58\x6f\xf1\x35\xd6\xb8\x79\xc0\x75\xda\xb8\x54\x5c\ +\x63\x8d\x35\x6e\x2d\xbc\xa4\x0f\xfe\x2f\xc0\xe0\x79\x6d\xba\xf2\ +\x14\x59\x28\xdd\x78\xca\x0e\xa9\x9b\xdf\xca\xc1\x9a\xe8\x96\xb4\ +\x2d\xe2\xc1\x0c\x7d\x7c\x99\x25\x9d\x77\x01\xc5\xe6\x6d\x08\xed\ +\xf0\x99\x72\x1e\xbf\x44\x84\xdf\x37\xdf\xf8\xca\x17\x63\x72\x51\ +\xa2\x06\x7f\x53\x0d\x2c\xc9\x1e\xe7\x80\xe0\xb9\xa0\x6e\x7d\xa9\ +\xc6\x96\x31\xd2\xa8\xd3\xf4\x2d\x92\xc3\xf8\x2f\xea\x5b\x5b\x60\ +\xb2\x28\x7d\xbd\xcf\x1b\x8f\xcd\xb6\xa9\xff\xad\xb6\x2d\x7e\x67\ +\x7b\xb3\x5d\xb8\xed\x36\xa4\x6f\xb7\x0f\x7f\xe4\x43\xed\xdd\xff\ +\xed\xdf\x6e\xef\xff\xf1\x9f\x68\x0f\xee\x6c\xb4\xbb\xef\xde\x69\ +\x67\x76\x77\xdb\x39\xe4\x9d\xd9\xe1\x6f\xb8\xa1\x27\xde\xac\xf0\ +\x01\x0f\x6f\x38\xd8\x0f\x0a\xb3\x74\xb6\x1a\x91\x78\x2a\x6a\xbc\ +\x2e\x94\x58\xf2\xde\xd8\x0f\x8d\xcc\x86\x5b\xd0\x9c\x84\x6e\x65\ +\x5a\x83\x9c\xb4\x68\xa6\xb9\xa1\x10\xdd\xef\x7c\xdd\x51\x82\x0b\ +\xda\x92\xe8\x0a\x50\xf4\x54\x35\xa3\x35\xe6\x14\x44\x2f\x40\x8c\ +\xdf\x13\x3e\xc9\x25\x93\xc3\xb1\x63\x64\x51\xcf\xc7\x2e\x37\x04\ +\xa5\x96\x7c\x24\x4e\xeb\x0f\x70\x5e\x72\x38\x11\x65\xb5\x22\x92\ +\x3d\x2a\xfb\xad\x47\x93\x29\xb9\x01\x01\x8d\x16\x1f\xdd\x58\x6a\ +\xf2\x91\x69\x57\xd4\x88\x4a\xe1\x73\x19\xcc\x68\x8f\x37\xec\x8d\ +\x06\xc6\xf0\x8c\xac\x01\x45\x16\xd8\xa7\xed\xec\x0f\x2d\xb5\x1a\ +\x4c\x84\x53\x90\x4d\x49\x84\x6b\x25\xae\x17\x53\x6b\x4c\x91\xd1\ +\x5c\xc7\xd4\x4e\x43\xdd\xde\x51\x71\x45\x67\xa3\xe2\x0a\xc8\x39\ +\xf3\x4c\x6a\x8c\x71\x10\xea\x0f\x36\x29\x65\xc1\x69\xf7\x18\xc5\ +\x68\xa6\x75\xf3\xe1\x41\xe7\x6b\x61\x42\xfb\x85\x7a\xec\xae\xac\ +\xae\x1c\x91\x3a\x9a\xc6\xfe\x88\x85\x31\x8a\x42\xbe\x23\x44\x47\ +\x33\xc0\x77\x45\xc4\xf0\xb9\x3f\xaa\x5c\xbc\x5f\x21\x0e\xf4\x02\ +\xb6\xce\x7d\xc7\xfe\x93\x44\xc7\x9b\x9b\xed\x70\x71\xd8\x9e\x78\ +\xea\x99\xf6\xc1\x27\x8e\xda\x99\xaf\x7e\x73\x7b\xeb\x1f\xf8\x83\ +\xed\xad\xdf\xf3\x9d\xed\x9e\x73\x67\xf5\x8f\xf2\xaf\x5d\xbd\xca\ +\xff\xac\xd6\x36\xf9\x32\x0d\x35\xf8\x67\x6e\xf9\x10\x88\x0f\x94\ +\x58\x4b\xa3\xe3\x87\xdd\x6a\x30\xde\xd7\x3d\x2e\x3a\xb8\xde\x5e\ +\xf8\x34\x46\x11\xd2\x71\xce\xd5\x8b\x2d\x05\xc2\x35\x8d\xcd\x98\ +\xa9\xce\x93\xeb\xf5\x6c\xca\xa8\x59\x74\xaa\xd5\x86\x02\x09\x9d\ +\x2b\x10\x63\x74\x10\xc5\xb0\x1d\x2b\xb2\x48\xd7\xd3\x2c\xd3\xf4\ +\xb3\x31\x41\xeb\x4d\x05\x01\xe5\x30\x0e\xcc\x89\xa8\xf9\x42\xf0\ +\x39\xa4\x7c\x59\x82\x53\xf9\x42\xe6\x42\x53\x5f\xe6\x3f\xb7\xe7\ +\xf5\xb0\xbc\x01\x4b\x9f\xa9\x20\xc6\x1f\x31\x23\xc3\x9a\x4b\x38\ +\xc0\xdf\x13\xd8\x92\x44\x2b\xae\x5c\x27\xc9\x13\x31\x8a\xe3\x8e\ +\x25\x06\x22\xae\x9d\x82\xef\xf1\x92\x11\x15\x3a\x77\x48\xc7\x91\ +\x42\x8b\x03\xd3\xe1\x94\xf0\x31\x44\x7e\x91\x5a\xc4\xdb\x61\x86\ +\x86\x93\xac\x87\x0c\x4d\x3e\xea\xec\x4b\xbf\xd1\x41\x4b\x07\xbc\ +\xd9\x7e\x1c\xa8\xf1\x75\x17\xff\x02\xc0\xde\xde\x9e\x8c\x4f\x3d\ +\xf2\x99\xf6\x13\xef\xfd\xf9\xf6\xae\x5f\xf9\x57\xed\xea\xa5\x27\ +\xdb\x6d\xf7\x9d\x6f\xbb\x77\x9c\x6b\x67\x37\x77\x10\x97\xc7\x6c\ +\xce\x31\x25\x6c\xb4\x1a\x0a\x41\x89\x45\xe7\x54\x19\xee\x88\xa3\ +\xe2\x43\xee\x0c\x53\x05\xc6\x05\x31\xce\xa4\x9a\x16\xf1\xe1\x8a\ +\x20\xf8\x23\xd8\x22\xbc\x58\x21\x9b\x59\x01\x56\xba\x42\xcf\xeb\ +\xa9\xe1\xcb\x5a\x64\xf0\x15\xf3\x24\x26\xe7\x4c\x71\x05\x88\x77\ +\x84\xbe\x23\x45\xc8\x88\x0d\xcd\xe8\x0a\x91\x59\xd0\x62\x1c\x3d\ +\x60\x96\xd0\xe3\x64\x01\xa9\x8c\x6e\x3a\x34\xbb\x5c\x87\x49\x42\ +\x35\xdd\x17\x75\x9d\xff\xd5\x00\x25\xd6\x27\xcb\x20\x7a\xe2\xc8\ +\x63\x9b\x5b\x91\xc8\x90\x2a\x05\x18\x8a\x71\x47\xd4\x04\x6d\x47\ +\x4a\x9b\xa1\x2b\x72\x60\x84\xc3\x63\x63\x50\xd3\x6c\xef\x69\xd4\ +\x72\xe6\xe7\xa3\xa3\x88\x1c\x08\x69\x99\xde\xe1\xcc\xd4\x12\x9a\ +\x8a\xd0\x89\xec\x6b\x00\xde\xc9\x7e\xaf\xea\x8e\x2a\xa1\x5d\x2d\ +\xdc\x04\xe0\x9d\xe5\xfc\xa0\xa6\xf1\xa1\x4f\x29\xac\x29\x08\x72\ +\x1a\xa7\x74\xcc\x00\x48\xfd\x30\x0e\x29\x88\x5c\x07\x33\x00\xe6\ +\x23\xb7\x43\x92\x12\x6c\xb2\x60\x98\x42\x57\x0a\x66\x4e\xb5\xb3\ +\xb8\x3e\x26\x2a\x11\xb0\x34\x16\x21\x59\xc3\x79\x58\x3b\xed\xcb\ +\x7c\xf9\x85\x68\x1e\x6b\xe4\x14\x91\x28\x5b\x9b\x8e\xd8\xf7\xc9\ +\xb1\xcf\x4d\x34\xf4\xf5\x18\x34\xdb\x5b\x1b\x6d\x71\x74\xd2\x0e\ +\x0f\xf7\xdb\xb3\xcf\x3e\xd3\xae\x3e\x75\xa9\x9d\x6f\x77\xb6\x37\ +\xbe\xfe\x9d\xed\xdb\xbe\xe5\x9b\xdb\xeb\x5f\xf7\x55\x6d\x6f\x9b\ +\xff\x53\x72\x81\xb8\x05\xcb\xa9\x02\x7f\x28\xc9\x7f\x12\xdb\xf5\ +\x78\xb6\xd7\x7a\x45\x0f\x16\xf4\x58\xb5\x3e\x78\xc6\xa8\xed\x3a\ +\xbe\xa0\xe6\x35\x91\x7f\x2b\x0d\x2e\xf1\x5c\x70\x5e\xed\xba\x6d\ +\x34\xd6\x23\x77\xc4\x46\xcd\x22\xed\xa6\x4c\x4e\x44\x8f\xe9\x3a\ +\xb6\xb7\x39\x31\xe1\xb3\xb0\x0d\xc4\x2a\x0a\x8a\xad\x84\xd6\xf6\ +\x14\xcc\x63\xd2\x5e\xe3\x56\xc0\x7a\x6b\xaf\xb1\xc6\xcd\xc3\xfa\ +\x85\xda\x1a\x6b\xdc\xc2\x78\xc9\x1f\xfc\x37\x75\x05\x58\x6c\x7a\ +\x89\xa1\xeb\x59\xf5\x31\xeb\x28\x4c\xdf\x0e\x48\x71\xc3\x60\x7d\ +\x2c\x75\x93\x91\x3a\x35\xf9\xc7\xe2\x87\x2a\xd0\xf9\x84\x24\x6c\ +\xbe\x28\x63\x2c\x39\xc7\xf3\x89\xc6\x78\x70\xd3\x1f\x06\xf5\x9c\ +\x78\xe2\x21\x3d\x38\xde\x4e\x84\x6d\x4e\x26\x16\xf3\xb9\xf0\x27\ +\xf7\xe8\xe7\x8d\x87\x7e\xcb\x02\x1f\xf1\x11\xa7\x5c\xf7\x4c\x53\ +\xba\x05\x5a\xfa\xf1\xc5\x5c\x99\xe4\x01\x3e\x8a\xe1\x8d\x15\x6f\ +\x37\x3c\x9d\x1b\xb8\x49\xda\x6e\x1b\x9b\x5b\x6d\x1b\xf6\xf9\x73\ +\x67\xdb\xce\xf9\xbd\xf6\xec\xb5\xad\xf6\x0b\xff\xf2\x5f\xb6\x9f\ +\xfe\x07\xff\x55\x7b\xe2\x03\x1f\x6b\xaf\xd8\xdb\x68\x77\xde\x73\ +\xa6\xdd\x8e\x8c\x3d\xfe\xd9\xc8\x4d\xdc\x20\xf1\xe6\x11\x85\xb9\ +\x1d\x36\x61\xe7\xdf\xb5\x27\x3c\x9e\x84\x39\xc6\x1e\x43\xf5\x8d\ +\x54\x80\x35\xfa\xe8\xf2\xc6\x2d\xe7\x93\x8d\x31\x6c\xc6\x40\xa9\ +\x3e\xea\xd1\x61\xed\xb7\xeb\x92\x1c\x2f\x75\xf7\xc7\x9b\x1d\xda\ +\x0e\xe1\x5c\x4a\x31\xaa\x1e\x30\x15\xeb\x41\xf4\x18\x2a\x85\xef\ +\x98\xf1\x75\x35\x89\x53\x4a\xc5\xf4\xdd\x30\xb4\x26\x7d\x42\x91\ +\xac\x15\x81\x3c\xa5\xbe\x5d\x74\x76\xd6\x88\xf8\x3a\x0f\x8a\x62\ +\x3c\x38\x4d\x1b\x11\xfe\x1c\x67\x86\x2b\x26\x95\xa8\xaf\x39\x26\ +\x47\x4c\x26\x98\x45\x29\x0b\x07\xb5\xc7\x3b\x1d\x1f\xd6\x08\x93\ +\x1d\xca\x39\x72\x54\x22\x60\x17\x98\xe8\x5f\x39\xd2\x32\x7e\xd5\ +\x5a\x3b\x62\x48\x63\x1e\x97\x9e\x51\x69\x9e\x61\x4c\xfc\x68\xe6\ +\xfe\xeb\x61\xa9\xde\xa9\xc9\x65\x64\x4b\x09\xc3\x67\x0d\xeb\xac\ +\x3f\xf3\x28\xb5\x84\xc3\xbb\x94\x6b\xe1\xf9\xa2\x52\xfa\x09\xf4\ +\x14\x28\x11\x55\xc8\x04\x09\x6c\x39\x6c\xaf\xb9\x6b\xc4\x7b\x4b\ +\xab\x06\x6c\x52\x3e\x6f\xb8\xcf\x11\xd7\x85\x01\x83\xb6\xf7\xbd\ +\x59\x2c\xf6\x2f\xf3\x04\x7c\xfa\x1c\xb7\xe3\x05\x5f\xac\x6d\xe0\ +\xfc\xb9\x68\x97\xf7\xf7\xdb\xc7\x1e\x7d\xa6\x7d\xf6\xec\xbd\xed\ +\xae\xef\xfe\x8e\xf6\xdd\x3f\xf0\xfb\xdb\x6b\x5e\xf5\x8a\x76\xe6\ +\x64\xab\x5d\xba\xba\xdf\x0e\x16\x87\x48\x3a\x6e\x1b\x0b\xff\x04\ +\x36\xc7\xc4\x17\x6a\x42\x8e\x8f\x92\x5d\xab\xaf\x78\x61\xa5\x67\ +\x35\x7e\x80\xe3\x9f\x31\xe0\xbc\x93\xd7\x59\xd6\x3a\x16\xc5\x48\ +\x62\xf1\x1b\xb8\xa9\x8f\xe7\xd0\x6e\x5b\xf2\x2d\xd8\xf4\xcf\x3e\ +\xba\xc6\xb0\x1d\x33\xc9\xeb\xfd\x3b\xbe\xdb\x35\x46\x2a\x1a\x2b\ +\xe6\x3d\x20\x2f\xa9\xcf\x25\x8f\x63\xae\xbf\x6c\x7d\xc4\x8b\x4a\ +\x7e\x28\x00\x23\x68\x47\x8d\xe7\x43\x86\x27\x6e\x30\xed\x96\xc2\ +\xf3\x4d\xa7\xe6\x2f\x27\x11\x81\xf3\xd8\xfa\x3d\x22\x6b\x91\x9b\ +\xc7\x09\x95\x44\x8c\x3f\x1d\x2e\x91\xfc\xf0\xf4\x6b\x1b\x71\xd6\ +\xd3\xee\x32\x75\x7d\xbf\xf7\x17\x08\xc7\xe6\x8b\xb2\x12\x4b\x9f\ +\xf4\xce\x11\xb6\xcd\x25\x4b\x1b\xad\x9a\xb8\x96\x88\xb8\x94\xbe\ +\x06\x93\xa5\x2f\x25\x50\xe3\xf1\x0f\x75\x91\x36\x53\xc3\x2f\x0a\ +\x4e\xe6\xf3\xd8\xa1\x37\x67\x47\x2e\xfd\xa6\x2a\x64\xf8\xf8\xb5\ +\xb3\xbb\xd3\x76\xb7\x36\xdb\x95\xab\xd7\xda\x2f\xfe\xda\x87\xdb\ +\xbb\xdf\xff\x53\xed\x63\x1f\xfb\xf5\x76\x69\xe3\x5a\x3b\x77\xd7\ +\x5e\xbb\xed\xc2\x6d\xed\xcc\xce\x26\xce\x97\x1c\x0f\xab\x8d\x07\ +\xbf\xc7\xb8\x86\xe4\x19\x84\x75\xf8\xb1\x3f\x11\xba\xbb\x9c\xc8\ +\x54\xb9\x1e\xd6\xa3\x55\x3e\xc9\x38\x5e\x09\x29\xe4\x64\x09\x5a\ +\xcf\x88\xb3\x1c\x4e\x5e\xd6\xe6\x9a\xe7\x9c\x2b\xb7\xa8\x88\xea\ +\x29\x1e\x7b\xf4\x57\x63\x7a\xc3\x65\xac\xa3\x68\xae\x5b\xe9\x53\ +\x98\x99\x0e\xce\xf5\x28\xce\xae\x4e\x3d\x5a\x13\xad\x0f\x31\xe2\ +\xad\xc5\x7a\x42\x7a\xce\x86\x7f\xc0\x31\x11\xe5\x75\xe7\x76\xca\ +\x71\xf6\x12\x50\xe4\xb3\x30\x7c\x6e\xd5\xf7\x44\xde\x37\xd0\x08\ +\x48\x45\x20\x39\xd5\x95\xcd\x66\x94\x72\xb2\x49\xa7\x22\x2e\xb8\ +\x9e\x83\x36\x75\xe6\x51\xe1\x9e\x4f\x4e\x39\x68\x38\x7a\x59\x4e\ +\x30\xe4\x54\x16\x15\xc1\x5a\x09\xd2\x40\x42\x27\x26\xd7\x06\x35\ +\x8f\x7a\xf5\x01\xe1\x1e\x51\x89\x74\xd4\xbe\x2d\x7b\x6c\x49\x2a\ +\x6a\x37\x28\xb2\x37\xad\x73\x47\x8c\x04\x4d\xd2\x92\x93\x98\x81\ +\x8c\xb5\x9e\xca\x2c\xb8\x98\x56\xd1\x33\x95\x3a\x7c\x40\xea\x3c\ +\x17\x48\x66\x69\xdb\xa7\x44\x4e\x5f\x97\xde\xb0\x3c\x47\xe4\x2d\ +\xe7\xae\x06\xe3\xa0\xc8\xea\x7d\xda\x56\xcc\x06\xff\xef\xab\xf9\ +\x11\xc9\xfc\x84\xb5\xe9\x3c\xc1\x1f\x46\x6e\x66\xee\xeb\xba\x8a\ +\xc0\xb5\xc4\xe1\xe1\x51\xbb\x76\xf9\x52\x7b\xea\x89\x4b\x6d\xeb\ +\xda\x66\x7b\xd5\x2b\x5e\xdb\xde\xf9\x8e\xdf\xdd\xde\xf2\xd5\x6f\ +\x69\xf7\xdd\x79\x0f\x4f\xb7\x6d\x1f\xd7\x59\xde\x37\x79\x09\xa2\ +\x36\x24\x40\xc9\x7d\x59\xb5\xa1\xf3\x53\x06\xa0\x97\x99\xfd\x37\ +\xfe\x71\x9f\xc9\x3a\xbc\x8e\x91\x8d\x56\x71\x61\xc3\xe0\x79\xb2\ +\x2f\xf2\x07\x1f\x7a\xe6\xea\xba\x29\x39\xc6\x74\x9d\x2a\x7d\xae\ +\x4a\xc2\x7e\xda\xbc\xae\xb2\x36\xf5\x79\xe9\x75\x34\xdc\xd0\xd1\ +\xca\xcf\x0f\x39\xfa\xb4\xae\x80\x9d\x21\xd3\x48\xe7\x2a\xcc\x63\ +\xd2\x5e\xe3\x56\xc0\x7a\x6b\xaf\xb1\xc6\xcd\xc3\xfa\x85\xda\x1a\ +\x6b\xdc\xc2\x78\x49\x1f\xfc\x2f\xca\xe0\x59\x74\x5c\x66\xe8\x7a\ +\xf5\x94\x53\xa4\xe9\xf0\x65\x0c\x64\xe7\x29\x69\x4b\xf7\x62\x17\ +\x63\x82\xa3\x37\x5f\x8c\xf1\x45\x5a\xf0\xf6\x87\xad\x98\xaa\x8f\ +\x98\x1a\x97\x35\xa7\x32\x1f\x3c\xd0\x26\x4d\x89\x78\xd6\x30\xab\ +\x8b\x75\xf3\x52\xa6\x3a\xbe\x28\xb5\xd8\xb2\x2f\x25\x16\xce\x16\ +\xf5\xfe\x7f\x3e\xd0\xe6\xbc\xf1\xf2\x9f\x59\x5b\x1b\x5b\xfa\xed\ +\x89\xfc\x0d\x8a\x5d\xc8\xdb\xef\xb9\xa7\xb5\xed\x8b\xed\x37\x7e\ +\xf3\xd7\xda\x2f\xfd\xe4\x3f\x6f\xbf\xf1\x3f\xfc\x4f\xed\xda\x47\ +\x7f\xa7\x3d\x78\xff\xb9\x76\xf6\xc2\x56\x3b\xbf\xd8\x6e\xdb\x9b\ +\x47\xce\x3b\x66\x2e\xaa\xe9\x01\xb2\x7a\xd4\x58\xdc\xf4\x5e\x7d\ +\x33\xe9\xe1\x85\xbf\x10\x01\xf3\x68\x27\x71\xf8\xb8\x8c\x89\xe1\ +\xee\x8a\xd7\xd7\x3a\x21\x95\x37\x67\xd4\x98\xdc\xe3\xd8\x7a\xcd\ +\xed\x27\x99\x6e\xb7\x29\x88\xa2\x02\x39\x08\xf0\x53\x47\xf1\xac\ +\x06\xc3\x75\xcf\x25\x85\x8c\x31\x2b\xd3\x31\xaf\xd7\xe3\xc2\xd1\ +\x6f\x76\x55\x54\x1a\x16\xe8\x12\xd6\xbb\x27\x5c\x84\xd7\x7c\xf8\ +\x63\x4b\xd9\x1f\xea\x4a\xcc\xfd\xbd\x78\xc8\xf4\x43\xb2\xbf\x3e\ +\x2c\xc0\xdb\x80\x5c\x21\x09\x05\xa6\x0e\x25\x56\x4a\x34\x55\xec\ +\x53\x59\x3f\xc7\xe9\xf0\x59\x9d\xa8\x2f\xbe\xbb\x48\xe4\x1c\x44\ +\x11\x59\xac\x34\x66\x81\xb0\x55\x52\x09\x10\x1a\x52\x98\xa7\xc3\ +\x35\xdd\x16\x30\x77\x56\x63\xf4\x17\x0d\xfd\xd4\x4f\x43\x26\xae\ +\x42\xe4\x4f\x63\xa6\xd5\xdc\x4f\xe1\x44\x84\x0d\xdd\x26\xd6\x3d\ +\x6a\x78\xf3\xd8\x4f\x75\x52\xbe\x2b\x01\xd8\xe9\x67\x5e\x66\x59\ +\x7a\x86\x05\x09\x47\xe6\x2c\x7b\x3f\xc8\x0c\x37\x96\x19\x87\x56\ +\x84\x91\x2a\x39\xeb\x88\x0b\xdd\x55\xd0\xf2\x83\x7c\x3e\xf8\xe1\ +\xf9\x98\xe7\xa2\x23\x9c\x47\x8f\xb0\x33\x5d\x3b\x3a\x6a\x9f\x78\ +\xea\xb9\xf6\x5b\xd7\x36\xda\x85\xb7\xbe\xb9\x7d\xed\xef\xff\xde\ +\xf6\x0d\x6f\x7b\x67\xbb\xfd\xcc\xb9\x76\xb4\xe0\xff\x4a\xbb\x86\ +\x38\x3e\x48\xc7\xb8\x91\xc3\xba\x5b\x31\x80\x1c\x07\x1f\xc8\xe4\ +\x7e\xad\x07\xa3\x90\x5a\x0f\x2d\x3e\x6f\x6a\xe4\xd8\x67\xb9\xdb\ +\x4e\x38\x4a\x92\x90\x3c\x43\x32\x40\x3e\x2c\xe2\x42\xf6\x97\x65\ +\x2e\x10\x5c\xc6\x45\x3d\xd5\x19\x0f\xdd\xe5\xe3\x5a\x93\x52\x53\ +\x73\x4a\x2c\xbf\x82\x23\x05\x25\xfc\xe4\xe7\xb6\x08\xdb\x13\x89\ +\x05\xdf\x9e\x3a\xba\x3b\xb6\xfb\x68\x0a\x22\xe8\x46\x90\xa1\x59\ +\xe2\x05\xa4\xde\x52\xb8\x91\xf9\xe1\xce\xda\x37\x90\xc5\xf3\xe3\ +\x7a\xdb\x0e\xbe\x70\x4f\xa3\x6c\xa9\xbb\x88\xc9\x33\x6b\x5e\x83\ +\xd8\x46\x9b\x3a\xaf\x7b\x96\x38\x4b\xe7\xf0\xba\x88\x96\x65\xc6\ +\x11\x64\x47\xac\x19\xbf\xc0\x21\x6f\xbf\x68\x4a\xda\xbc\x9e\xea\ +\xf1\x96\x72\x98\x11\xd7\x63\x95\xc6\x78\xd4\xc3\xb9\xc4\x7f\x09\ +\xc0\x91\x0c\xe0\xae\xcf\x3d\x5d\x75\x94\xe7\x19\xe2\x72\xbc\x39\ +\xbe\xab\x88\xc3\x31\xa6\x3c\x02\xfa\x99\x9d\x1d\x90\xc7\xed\xd1\ +\x27\x1f\x6b\xbf\xfc\xc1\x5f\x6d\xef\xc2\xf2\x1b\xbf\xf3\xdb\x6d\ +\xef\xec\x51\x3b\x7f\xcf\xf9\x76\xc7\xd9\xb3\x6d\x2b\x8f\x6d\xf4\ +\xb4\xb1\xb5\xa5\xa1\x64\x89\x21\xd9\x0b\xcd\xd1\xd2\xc7\xe1\x98\ +\x21\xa0\x51\xe1\xa2\x6f\x42\x41\xc9\x69\x9f\xd4\xa1\x8c\x7c\xd9\ +\x83\x27\x72\x8e\x92\x76\xdc\x38\xd7\x27\x1f\xc4\x88\x97\x8e\x46\ +\x63\x40\x3c\x05\xcd\xe4\x65\x49\x41\x9b\x03\xcc\xba\x80\x83\x8c\ +\x50\x1d\x61\x8c\x1a\x03\xec\xca\x3f\xb4\x65\x3e\xe7\xc9\x60\x1f\ +\xb6\x4a\x2f\x8e\x89\xbe\x1d\x3e\x7c\x41\x58\x8a\x2e\x3e\x9e\x17\ +\xe7\xdc\x12\x98\xcf\x08\xd7\x70\xf9\x88\xb7\x0b\x10\x8b\x31\x7b\ +\xff\x31\x63\xdd\x9e\x44\x4f\x08\x6f\xea\xca\x0e\x7d\xf0\x35\x7e\ +\x52\x25\xc6\xcd\xef\xfb\x9a\x07\xe9\x1e\x5b\x66\x64\xdf\x03\x61\ +\x51\x70\xfc\xdd\x99\x8a\xa5\xea\xcd\x01\x57\x0f\xef\x08\x92\xe1\ +\xdc\x68\x11\xe1\x51\x04\x4d\x19\x61\x44\x4a\xa1\xe4\x10\xd2\x26\ +\x01\x30\xf3\xfb\x56\x05\x28\xb2\x5c\xbb\xc9\x58\x4f\x8d\x75\xb4\ +\xb3\x88\x98\x97\x15\xe1\x83\x43\xd6\x3c\x0d\x28\xee\x99\xcb\xc1\ +\x1a\x13\xcf\x23\xdc\x0f\x62\x1b\x11\x23\x16\xda\x48\xea\x9b\x41\ +\x61\xbd\x43\x8f\x4f\xd5\x54\xc3\x36\x17\xba\x1d\xcb\x36\xc6\x68\ +\x8f\x04\xff\x4c\xb6\x78\xb4\x3a\xff\x2d\x58\x83\x3c\xc6\x83\x93\ +\xd1\xe1\xd5\xc3\xf6\xf4\x53\x4f\xb6\x4b\x4f\x1e\xb4\xbb\x2f\xbe\ +\xbc\x7d\xdd\xd7\x7e\x5d\xfb\xf6\xdf\xf5\xad\xed\xfe\x97\x3d\x84\ +\x7b\xc1\xad\xb6\xc0\x75\xd6\xd1\x62\xe1\xeb\x19\x9c\xbb\x74\x4f\ +\x58\xaf\x49\x38\xa6\x93\xf8\x13\xad\x08\xe1\x31\x9a\xff\x63\xb6\ +\xf7\x2b\x15\x1a\xe6\x80\x42\x57\x4c\x54\x04\x73\x96\x8c\x67\x80\ +\xaf\x9f\x14\x13\x52\x5f\xd2\xa3\x6f\x7c\x8d\x6b\x2c\xdb\x3d\x3e\ +\x74\x9a\x20\xc4\x71\x7d\x4d\x84\x8f\x76\xe8\x53\x09\x41\x9f\xc6\ +\x2a\x83\xac\xa4\x9c\x58\x34\xd5\x40\x3f\x64\xc2\x2d\x44\x4e\xac\ +\xf5\x0a\xcc\xfd\x35\x79\x8d\x2f\x77\xac\xb7\xf6\x1a\x6b\xdc\x3c\ +\xac\x5f\xa8\xad\xb1\xc6\x2d\x8c\x97\xf4\xc1\xff\x85\x18\x3c\xaf\ +\x38\x4e\x39\x45\x4e\x4e\x9d\x52\xd1\xf0\x02\xfe\x54\x9d\x46\xe1\ +\x93\xd3\x0b\xb2\x7c\x60\x13\x9c\x1e\xba\x84\xaf\x3f\xcc\x19\x3e\ +\x8b\x78\x1a\x42\x5e\x35\x4a\x8c\x72\x68\x46\x1d\x7d\x1c\x47\x7f\ +\xd6\x23\x4f\xd8\x17\xb1\xd4\x4b\x8c\x28\xfe\x71\x33\xba\x63\x3e\ +\xf8\x25\x9b\x52\x61\xbc\xa9\x92\xa5\x45\x1e\xf8\x75\x43\x89\x0f\ +\x6f\x06\x58\x67\x7b\x93\x37\x20\xba\x9d\xc0\xcd\xd0\x49\x3b\x77\ +\xee\x7c\xbb\xed\xe2\x1d\xed\xe0\x68\xbf\x7d\xe2\x37\x3f\xde\xfe\ +\xd5\x7f\xf7\x8f\xda\x47\xfe\xf5\xbb\xdb\xc5\xcb\xfb\xed\x9e\x3b\ +\x4f\xda\xbd\xe7\xce\xb5\x33\xed\x50\x7f\xce\x83\xc8\x1b\x98\x71\ +\x43\x12\x60\x1f\xec\x2d\x29\x0f\x02\xa2\xc4\x10\x1a\x7b\xa0\x2b\ +\x00\xf4\x34\x25\x8b\xe1\x1a\x0e\xd0\x9c\x14\xe4\x4f\x24\x8b\xce\ +\x85\x90\x8c\x3c\x4a\x88\xe1\xe2\x4d\xdf\xb0\x2b\x3a\xe7\x89\xc6\ +\xe2\xfa\xab\xe0\xff\xa1\x11\xfd\xab\x05\x4e\x0f\xef\x31\xa7\x86\ +\x64\x97\xc4\x5c\x07\x72\x2e\xa7\xf9\x31\x86\x4a\x52\xef\x03\x5a\ +\x8d\x49\xe9\x8c\xaf\x35\x80\xa4\x14\x8b\x86\x9b\x3b\xf3\x26\xe8\ +\xdb\xc4\x37\xa0\xc3\xa2\x2b\x12\xa3\xda\x78\x08\x46\x80\xa7\x0b\ +\x56\xbf\x29\xc5\xe2\x1b\x56\xef\x27\x99\xe9\x06\x76\xdd\xe7\x80\ +\x8c\x31\x26\x19\x33\x6d\x86\xa8\xc7\x8e\xdd\x1f\x75\x2c\xe0\xe5\ +\xea\xdb\x36\xab\xf4\xa8\xf0\x51\xda\xbc\x3e\x10\xa4\x39\x18\xe6\ +\x1c\xd7\x2b\x45\x5f\x42\xc7\xf2\x24\x30\x6d\x36\x23\x72\xfc\x36\ +\x63\xa0\xe6\x84\x6e\xe1\x33\x46\x77\xd7\xb8\x40\xee\x5a\x5c\x26\ +\x55\xb5\xa1\x6b\xff\x00\x4d\x9e\x1e\x6c\x41\x71\x46\xda\xde\x74\ +\x9e\xc7\xdc\x8c\x14\x7d\x0c\x68\xe4\xa3\x8e\x3a\xfc\x21\x66\x1f\ +\x86\x88\x60\x5f\xfa\xf8\x3f\x3c\xf2\x61\xd4\xc1\xd1\x49\xdb\x07\ +\xff\xe8\x73\xcf\xb5\x4f\x3c\x71\xb9\x3d\xf3\xe0\x6b\xda\x43\xdf\ +\xf1\x2d\xed\x3b\x7f\xe0\x7b\xda\xab\xef\xba\x4f\x45\xae\x5e\xb9\ +\xd6\x0e\x17\x47\xca\xdf\xd0\xf9\x7a\xa3\x6d\xb1\x1e\xf2\x59\x47\ +\xe5\xd5\xaf\x07\xae\x71\xf1\xfc\x48\x25\x78\xbe\xe0\xd2\x5e\x22\ +\x3f\xa5\x39\xeb\x4e\x1a\x7a\xfc\xa4\xb6\x6c\x0e\xc1\xb5\xe6\x71\ +\x7a\x69\xc6\xdf\x8d\x13\x3d\x7c\xd9\x77\xbe\x54\x63\x54\x72\x23\ +\xa6\x4a\x8e\x9b\x51\x8c\x61\xac\x7d\xae\xef\x18\x73\x2a\x34\x6c\ +\xe9\x8e\x17\x52\x12\xde\x6c\x82\x54\xb8\x38\x57\x8c\xe1\x66\x98\ +\x04\x08\x25\xf7\x85\xe2\xf3\x48\x7d\x49\x81\x53\xf6\x42\xd7\xf5\ +\xf9\x72\xea\xb6\xa8\xdb\x2f\x71\xdd\xfc\xb9\x33\xea\x40\x84\x26\ +\xaf\x75\x93\x53\x9d\x0d\x5b\x1e\x9b\xe6\xcd\xe1\xba\x47\xd2\x36\ +\x8f\x3b\xdb\x85\x17\x17\xd7\x54\x64\x3b\x37\x6c\x34\xb2\x2c\xa5\ +\x01\xce\x71\x9e\x22\xe5\x71\xbc\xaf\xb7\xfa\xb5\x1a\x79\x7e\xf1\ +\x22\x68\x12\x67\xe9\x57\x67\x34\x9c\xa7\x08\xf1\x04\xf3\x86\xcd\ +\xc5\x33\x05\x4d\xe7\x34\x2e\x80\x8e\x23\x72\x6c\x51\x07\x41\xfc\ +\x33\x90\x7c\xb1\xc6\xeb\xa9\xdf\xfe\xcc\x27\xdb\xbb\xff\xdd\x07\ +\xdb\xcf\x7c\xe0\xd7\xda\xd3\x8f\x7d\xb6\x9d\xb9\x77\xd1\xee\xb8\ +\xfb\x42\xbb\xb0\xb7\xc3\x64\x7d\x7c\xfd\x92\xc7\x23\x09\x55\x2e\ +\xdf\x62\xe8\xa7\x31\x7c\x12\x0c\x27\x1d\xdc\x04\x11\x5b\x5d\x5c\ +\x93\x11\xef\xf5\xca\x3e\x84\xe0\x05\x0a\x2c\xc7\x08\x60\xbc\x46\ +\x90\x7e\xd4\xb6\xca\x56\x9a\xc3\x4d\x62\xc9\x73\x04\xd0\x39\x8a\ +\x24\x99\x6f\xbd\xba\x05\xe8\xd5\x14\x3a\x11\x63\xb6\x11\xfc\xe0\ +\xca\x77\x31\x18\xe4\x6d\xc7\x68\x6d\x73\x0c\x0e\x36\xaa\x0e\xa8\ +\x96\x6c\x67\x65\xee\x1c\xf6\x19\xa9\xeb\xfb\x03\x65\xed\x43\xc7\ +\x24\x14\x52\x71\x7c\xd2\x9f\xee\xac\x62\xdb\x4c\x49\x46\x0e\x58\ +\xcc\xb7\x5f\x4a\x88\x89\x38\x18\xea\x27\x63\xad\x66\xd7\x6e\x23\ +\x2e\x32\x08\x8f\x50\xca\xa9\xb0\xcb\xb9\xcc\x74\x17\xd3\x84\x58\ +\x95\xd5\x08\x5f\xf6\xa5\x74\x69\x31\x8a\xee\x77\x9b\x2f\xf9\xe6\ +\x30\x8b\x9c\x12\xaf\x51\xad\x08\x36\x37\x77\xc0\x9e\x51\x69\xe6\ +\xea\x4c\xdc\x0a\xef\x11\x16\x2b\xe2\xbc\x1d\x0c\xc6\x6b\x4c\x36\ +\xa7\x81\x89\x39\x27\xbb\xe6\xb1\x8d\x7d\x82\xab\x0b\x25\x7a\x9f\ +\x40\xc7\xaa\x76\xce\xe1\xcd\x39\x52\x1d\xfa\xa9\x97\x7c\xea\xb9\ +\x4e\x9a\x23\xd9\xbe\xa6\xc8\x1f\xea\x54\x45\x5c\x17\x1d\x1d\x1c\ +\xb5\xe7\x9e\xb9\xdc\x0e\x2e\x5d\x6d\x3b\xc7\x17\xda\x6b\x1e\xfe\ +\x8a\xf6\x8e\x6f\xfc\x86\xf6\x35\x6f\x7c\x73\xbb\xfd\xec\x6d\x0d\ +\x97\x50\x38\xa7\xf9\xb7\xfb\x59\x61\x73\x63\x4b\xe3\xc1\xd5\x0e\ +\xac\xe8\x05\x9d\xe8\xba\x8a\x63\x01\xe1\x9e\xe4\x88\x01\x98\xd3\ +\xfc\x9f\x48\x03\xed\xeb\x17\x55\xd0\x87\x4e\xb4\x11\xaf\x6b\x19\ +\x5d\xff\x84\x0f\x8a\xaf\xaf\xc8\x39\xce\x5f\x61\xab\x1c\x6b\x2b\ +\xd9\x3e\xf1\x60\xf8\xa7\x05\x7a\x4d\x7a\x68\x38\x0f\x0a\xc3\x15\ +\x6f\x7d\x2a\x39\x68\xa9\xe9\xa7\x0c\x5b\x22\x26\x3d\xe7\x7e\xb8\ +\xd5\x02\xdd\x53\x90\xbe\x04\x63\xe6\xdc\x1a\x5f\xce\x58\x6f\xed\ +\x35\xd6\xb8\x79\x58\xbf\x50\x5b\x63\x8d\x5b\x18\x2f\xc9\x83\xff\ +\x0b\x39\x68\x5e\x71\x9c\x76\x8a\x04\xad\x9b\x88\x90\xe6\xa0\x49\ +\x25\x39\xd5\x6d\x33\x32\x6d\x7c\x66\x2f\xd3\xbc\x84\x1d\x2f\xc9\ +\xf4\xf0\x45\x0f\x63\x69\xa6\x9f\x02\x9c\x94\xa8\x4b\xbd\xc7\xd9\ +\x57\xfb\xf2\x9f\x74\x2c\xb1\x29\x9d\x30\xe5\xb2\x8f\xe4\x38\x06\ +\xe9\xfc\x64\x1e\x65\xe6\x42\x72\xbc\x14\x98\x10\x4f\x1b\xec\xe0\ +\x22\x51\xd2\x37\x1c\x8c\xc0\x0d\xc6\xe6\x71\xdb\xc3\xcd\xd1\x6d\ +\xb7\xdf\xd9\xce\x5d\x38\xd7\x9e\xbe\x74\xad\xfd\xca\xbb\x7f\xaa\ +\xfd\xfc\x3f\xfd\xf1\xf6\x99\x5f\xf8\x60\xbb\x77\x6b\xab\xbd\xec\ +\xfe\x0b\xed\x0c\x42\xcf\x21\x7f\x13\xf1\x06\xff\xcf\x1a\xea\xe8\ +\x06\x06\xb5\x34\x80\xb8\xb9\x40\x1b\x5d\x19\x26\x1d\x92\x80\xde\ +\x4d\xdf\x61\xc9\x96\x96\xbe\x1e\x30\xb3\x11\x60\x95\xfd\xca\x0c\ +\x1f\xfa\xcd\x18\x42\x06\xc7\xe2\x7d\xc4\x7a\x00\xca\xf0\x12\x39\ +\x48\x8b\xa2\x0c\x17\x6f\xaa\x28\xb1\x04\x05\x05\x96\xc6\x1f\x98\ +\x95\x49\x4f\xa9\x36\x41\xc9\x34\x40\xf4\x75\x80\x3e\xfc\xb1\x6e\ +\xc1\x39\x24\x02\xfb\xcd\x1e\x30\x9c\x12\xa2\x93\x83\x4c\x4e\x21\ +\x68\x72\xd3\x89\x63\x03\x74\xff\xf3\x62\x1a\xc5\xd9\xd1\x5c\x4b\ +\x12\x6c\xa3\xa8\x10\xf1\x25\xcd\x37\xac\x8e\xf3\x3e\x4d\x38\x67\ +\x6c\x9b\x01\xef\x6b\xd6\xed\xad\xdb\x24\x19\xc2\x2d\xe1\xf0\x8c\ +\x1d\x35\x9d\x79\x3a\xb2\x66\xaf\x35\x15\xbd\x0e\xb1\xaa\xd2\x69\ +\xfe\x5e\xb1\x90\x8e\x8d\xe3\x16\xad\x25\x50\x13\x23\x8a\x98\x8c\ +\x8b\x3a\xd4\xce\x78\x67\x1f\x50\x31\x34\x72\xba\x0f\x6b\xa0\xd2\ +\x28\xe8\xa1\x13\x90\x89\xf9\x8d\x6d\x56\x98\x5e\x47\x42\xe7\x9f\ +\x32\x42\x34\x94\x43\x97\x06\x65\x8c\x85\x50\x8c\x1a\xeb\xfc\x69\ +\x6a\xad\x09\x9a\x05\xce\x87\xfc\x3f\x67\x27\x27\x8b\x76\x04\xcf\ +\xe1\xe2\xb8\x3d\x7d\xed\x52\xfb\xd8\x13\xcf\xb4\x67\x76\xef\x68\ +\xf7\xbe\xfd\xed\xed\x6b\xbf\xf3\xf7\xb4\xd7\xbf\xf9\x4d\xed\xe2\ +\xd9\x73\xed\x60\xff\xb0\x1d\x1c\x5c\x73\xad\x05\x0a\x40\xe6\x59\ +\x8f\xa0\xd4\xf8\xd0\xa1\x58\x7e\x42\xf7\xcb\x2c\x48\x9f\xdc\x82\ +\x63\x16\xcf\x77\xe4\xed\xd3\x3c\x48\x8f\x45\x2f\xcf\x54\x54\xd2\ +\xf9\x23\x2e\x5f\xb4\x41\x09\xdf\xc8\x4d\x9d\x32\x73\x6c\x4f\xfb\ +\x49\xc9\x2f\xeb\x98\xa5\x1c\x53\x70\xe6\xbd\xd8\xf6\x98\xa8\x88\ +\x4b\xd9\xf9\x2a\xb1\xe8\x14\x4f\xc5\xf3\xa6\x79\xe2\x82\x18\xea\ +\xe3\x04\x95\x88\xdc\xeb\x21\xca\x09\x73\xfd\xcb\x1d\xab\xd6\xf5\ +\x66\xac\xbf\x6a\x44\xa1\xdc\x7e\xa7\x82\x71\x19\x73\xca\x80\x82\ +\x4e\xef\x80\x7d\x79\xe6\x9c\x5c\x7b\x48\x26\x8f\x6b\x16\xc6\xc0\ +\xce\xeb\x15\x7d\x51\xf2\x7a\x88\x31\x7c\xf1\xc4\xf8\xf0\x89\x91\ +\xed\x5c\xaa\xe4\x46\x1f\x99\xc7\x86\xad\xaf\x8b\xec\x43\xbb\x91\ +\xd7\x49\xa4\x5c\x9b\x5f\x46\xd8\x11\x7f\xcc\x5a\xa1\x7b\xac\x54\ +\xd9\x96\x9a\xf2\xc1\x50\x5e\xd8\xf0\xf4\x99\x0b\xce\xc7\x4f\xd4\ +\xa3\xaa\xf3\x03\xcc\xe3\x85\xce\x9f\x5b\xdb\x7c\xd4\x7c\xd2\xae\ +\x1c\x5c\x6d\x1f\xf8\xcd\x8f\xb7\xf7\xfc\xea\x2f\xb6\x9f\xff\xf5\ +\x5f\x6f\xbb\x9b\xcf\xb4\x0b\xf7\x9d\x6b\xb7\x9d\x3f\xdf\x76\xf8\ +\x1b\x6a\x27\x9b\x8a\x65\x5d\x1d\xbf\xd1\xaa\xa8\xc6\x04\xa4\x24\ +\xfa\x60\x1c\xc7\xa1\x26\xba\xeb\x38\x8e\xd3\xce\x40\xfa\x83\x66\ +\x78\xdc\x98\x9a\x64\xb0\xc1\x92\x33\x2f\x8f\xdd\x1a\xa7\x95\xde\ +\xf4\x31\x50\x74\x3a\xb8\x54\x54\xa5\x73\x86\x4c\x5d\x74\x44\x0c\ +\x84\xc6\x4f\x3d\x5b\x2b\x05\x88\xa8\xeb\x80\xd6\x15\x46\x66\xd6\ +\x49\x4e\xad\x4a\x31\xc3\x9e\xda\x53\x67\xa9\xac\x40\xcc\x74\x2c\ +\x23\x3f\x7b\x1e\xdc\xac\x0e\x0d\x89\xd3\xce\x9b\xc0\x48\x3d\x15\ +\xce\x5f\x11\x44\xaa\xf7\x31\xca\x04\xd5\xc9\xc1\x77\x0f\x8c\x4c\ +\x1e\x45\xdc\x8e\xf9\x20\xa4\xcb\x40\x93\x85\x80\xeb\x9d\x6e\xd4\ +\xcf\xfc\x1a\x24\x2b\x16\xe1\x08\x44\x07\x57\xfb\x25\xac\x83\x45\ +\xc0\x88\x1f\x31\xe3\x3a\x85\xad\x0d\xdb\x15\xce\x27\xbc\x15\x62\ +\x5b\x2c\xc5\xc6\xec\xc4\xb8\x3d\xe3\x23\x28\x63\x5d\xa1\x34\x22\ +\x18\x99\x11\x40\xa8\xae\x34\x90\xf3\xe8\xe8\xf0\x66\xc1\x5e\xd8\ +\xca\x74\x2b\xf8\x25\x96\xfe\x02\x09\xa8\xea\xa1\xe6\x4d\xe9\xa3\ +\xb5\x23\x02\x74\xcd\x01\x50\x48\x43\x2c\xff\xb7\xb6\xce\x63\xc7\ +\x47\xed\xe8\xe0\xb8\xed\x5f\xb9\xd6\x9e\x7a\xfa\x99\x76\xed\xea\ +\x76\x7b\xf8\xae\x57\xb5\x77\x7c\xc3\xd7\xb6\x6f\xf8\xda\xaf\x6b\ +\xf7\xde\x7b\x5f\xdb\xde\xdc\x6e\x47\x87\xc7\xb8\xad\xf5\xff\x4a\ +\xe3\xc2\xb1\xf8\xba\x84\x05\xb9\x2e\x75\xed\xa1\xc3\xa1\x17\x6b\ +\x24\x75\x7c\x93\x56\x96\x7d\x3d\x83\xb1\xae\x90\x79\x04\xa5\x75\ +\x4b\xc5\x50\xa2\x67\x1a\xe9\x4f\x6e\x62\x8b\x53\xc2\xe9\xba\xb5\ +\x95\x7c\x97\x6c\xa1\x77\x89\xf5\x90\xd9\x7d\x33\x9d\xdb\x80\x4b\ +\xa0\xaf\xb6\x9a\x30\x6a\x80\x50\xf9\xd4\xd7\xb8\x95\xb0\xde\xea\ +\x6b\xac\x71\xf3\xb0\x7e\xa1\xb6\xc6\x1a\xb7\x30\x5e\x72\x07\xff\ +\x17\x78\xc0\xba\x96\xad\xa7\xc8\x59\xff\xba\xf1\x10\xe7\x5b\x10\ +\xdd\xb4\x66\x3c\x6f\x1a\xa4\xfa\xc1\x87\xea\x24\xa7\x87\x2b\xd6\ +\xf3\xe5\x57\x2e\xdd\xe6\x4f\xf0\x41\x6e\xb4\x05\xc2\xad\xc3\x61\ +\xc9\x38\xbd\x70\x73\x2d\x72\xf9\x82\x8d\x5f\x92\x8c\xcb\x78\xe6\ +\x8b\xa7\x2b\xb8\x90\xec\x8f\x17\x56\x7a\xf7\xa5\x58\xd6\x8b\x31\ +\x8b\xca\xf8\x05\x2c\xdb\x72\xc4\x83\xa0\xfc\xdf\x6b\xf5\x37\xe6\ +\x78\xa9\xc6\x38\x32\xe2\xd4\xbf\xe3\xf9\x13\xaf\xec\x2f\x6f\x26\ +\x68\xf1\x4f\x40\xee\xee\xee\xb4\xfb\xee\xba\xb3\x6d\x6c\xed\xb5\ +\xc7\x1f\xff\x6c\xfb\xf9\x77\xff\x7c\x7b\xcf\xff\xef\xc7\xdb\xc1\ +\xc7\x3f\xdb\x5e\x7e\xb6\xb5\x7b\xee\xdc\x69\x67\x70\x03\xb3\x83\ +\x7c\xfe\xa9\x0f\xd5\xea\x37\x34\xd4\x09\xea\xd6\x34\x4e\x81\x7d\ +\x84\x06\x25\x75\x4a\x85\x04\x91\xf9\x1c\x29\xc9\x9e\x4e\x0f\x74\ +\x99\xd9\xe8\xe3\x0c\x71\x69\xcb\x0f\x11\xd2\x8e\x88\x0b\xc8\xd5\ +\xfd\x05\x19\x0a\xe9\x51\xd4\x3c\x91\x11\x30\x07\x22\xc3\x37\xdc\ +\xec\x60\x55\xec\x6a\xf4\xd2\x93\xb4\x91\xaf\xf1\x30\xa0\x53\x0e\ +\xcc\x51\x72\x3b\xf2\x43\xd6\x8d\x41\x5f\x96\x14\x4d\x65\x8e\x12\ +\xaf\x80\xa5\x87\x21\xa7\x23\x6b\x13\x55\x4f\x68\xff\xe2\xbe\x1c\ +\x03\xe0\x8d\x36\x37\x8e\xe2\x4a\x22\x19\xae\x4d\x0f\xcc\x78\xfa\ +\x01\x87\xa2\x0d\xde\x0d\x8c\x10\x46\x46\x13\x9d\x04\x26\x41\x1d\ +\x13\x26\x8c\xb2\xcb\x4e\xcb\x01\x0a\xf1\x86\xa6\x76\x0a\x5c\xc8\ +\x5b\xc6\x88\xd2\x61\x4f\xd7\x94\xcd\xb4\x9a\xad\x49\x4e\x18\xce\ +\xc9\x68\x6d\x71\x58\x9e\xcb\xdc\x35\x1c\x1f\x1c\x55\xda\x44\x28\ +\xc3\x13\x15\xf4\x20\xc6\x4e\xb3\x31\x3e\xba\x64\xcf\x90\x45\xe9\ +\x87\x2e\x33\x6c\x1a\xfe\xed\xb8\x5c\x43\xaa\x1e\x27\x17\x82\xb1\ +\xd2\x3b\x31\x11\x52\x7c\x5e\xc2\x38\xb0\x31\xf8\x22\x6d\x0b\x43\ +\x3c\xc2\xb9\x8d\x23\x3d\x3c\x3a\x6e\x57\x0e\x0f\xda\x6f\x3e\xf3\ +\x4c\x7b\xe2\xea\x6e\x3b\xfb\x75\x6f\x6e\x5f\xf1\x1d\xef\x6c\x6f\ +\x7e\xdb\x5b\xda\x3d\x17\xef\x6e\x7b\xc7\x5b\xed\xca\xb5\xfd\x76\ +\x88\x73\xe5\x16\x6b\xe0\x8b\xcf\xba\xfd\x02\x8b\x1f\x0e\xda\xeb\ +\xb7\xc9\x8d\xcd\xbe\xe2\x05\x97\xce\x5b\xb4\x29\xf9\x72\x8c\x5f\ +\xe2\x68\xaa\x0a\x62\xc7\x03\x9c\x8c\xd5\x12\xfc\x84\x2b\xb6\x65\ +\x3c\x10\x62\x7f\xf9\x70\x88\x4f\x9d\x28\xd5\x09\xda\x79\x6c\x97\ +\xc5\xc7\xd8\xce\x8d\x17\x6a\x20\xcd\x45\x2d\xc6\x10\x99\xc7\xc5\ +\x14\x6b\xca\x61\x1f\x91\x32\x11\x9b\x8f\x71\xa9\xf2\xe1\x9c\xf4\ +\x71\x72\x05\x66\x79\xab\xc0\x90\x17\x98\xf2\x65\x85\x32\x97\x1d\ +\xe4\x6e\xc6\x3c\xac\xaa\xbd\x0a\x93\x6d\x16\xa8\xdb\x7c\x85\xdf\ +\x4c\xb4\x12\x68\xf4\x61\x13\xe7\x37\x49\x7f\x49\x57\x20\xad\xb8\ +\x26\x92\x6d\x5d\x3c\x39\xc5\x82\xcb\xaf\x88\xe3\xc2\x11\xf1\xfb\ +\x85\xa2\x99\x93\xf1\xd1\x66\x9e\x79\x11\x92\x99\xdf\xe3\x43\x76\ +\xbd\xf2\x33\x3d\x5f\x8c\xe1\x53\x7c\x39\x7e\xf2\x39\x2e\x46\xd8\ +\xb6\x8e\x45\x27\x41\x1c\x47\x38\xa4\x14\x07\x9b\x5f\x8b\x05\xae\ +\x19\x71\x0c\xee\xec\x60\xd9\x58\xb4\x47\x9e\x7e\xba\xbd\xf7\x83\ +\x1f\x6e\xef\xfb\xf5\x0f\xb5\x4f\x7f\xe6\x13\xed\x78\xfb\x6a\xdb\ +\xb9\xfd\x4c\xdb\xdd\xd8\x6e\xe7\xcf\xed\xb5\xed\xed\x6d\x6f\x0e\ +\x96\x64\xb1\x84\xbb\x1c\x52\xf0\x76\x8b\x70\xe7\xe0\x8b\xfd\x8a\ +\xe5\xf9\xcd\x9e\xc9\xb7\x72\x0f\x1f\x1e\x29\xae\xc1\x38\x9f\xc7\ +\xa3\x5a\xc6\x23\xc6\x2a\x6a\x49\xb1\x35\x6a\xc8\x04\xa0\x84\x4e\ +\xd1\x79\x49\x36\x35\x3f\x9d\x00\x54\xfd\xc6\x0d\x4f\xc4\x89\x70\ +\xf7\x28\x29\x6c\xfa\x9a\x1a\x50\x93\x25\xba\x27\x94\xf4\xe5\x1a\ +\xf4\x00\x90\xf9\xff\xa6\x4c\x39\x92\xf3\xc1\xb9\xcf\xb1\x3b\x37\ +\xe0\x10\xe5\x69\xae\xb4\x7d\x5d\x63\x04\x4d\x32\x02\x11\x23\xfe\ +\x14\x3f\x3a\xe4\x70\x32\x32\xe1\xed\x41\x85\xfa\x06\x8f\x1e\xef\ +\x1b\x80\xaa\xd5\x52\x30\x3c\x8d\xd8\x03\xb4\x02\x18\xe7\xbc\x20\ +\x90\x94\x23\x2a\x68\x81\x0d\x72\x45\xaa\xa0\x3c\x85\x3a\x9e\xfb\ +\xdb\xa9\xc1\xf4\x4e\x06\x19\x98\x4c\xb2\x93\xbd\xdf\x16\x2c\x95\ +\x8d\xbe\x08\x89\xcc\xf3\x98\x04\x18\x11\x01\x84\x1f\xa2\x6f\x7f\ +\x70\xd1\xdd\x32\x98\xcb\xb0\xf0\x4f\xc2\xaa\x51\xfc\x25\x3c\x94\ +\x1a\x38\x62\x66\x34\xe0\x75\x65\xab\xf5\xe6\x5c\x78\xa0\xb3\x58\ +\x8f\xdc\x94\xaf\xcf\xbc\xd7\xb9\xb2\xdb\xf0\xf3\x37\xbd\xa4\x60\ +\x2f\x81\x94\x9a\x52\x6a\x6a\xbe\x24\x10\x70\x2f\x78\xb8\x7f\xa8\ +\xff\xf9\x78\xed\xd9\xcb\xed\xf2\xa5\x93\x76\xf1\xb6\xfb\xdb\x5b\ +\xbe\xfa\xab\xda\xd7\x7f\xcd\xd7\xb7\xd7\x3e\xfc\x70\x3b\xb3\x8b\ +\x1b\x3e\x5e\x77\x1d\xe1\x3c\x86\x14\x9e\x91\x78\x45\x24\x1d\x1d\ +\x72\x14\xb4\x35\x12\xd8\xfc\x33\x8f\x34\x27\xd7\x21\xd4\x73\x67\ +\x0c\x1f\xbf\xf4\xb2\x8d\x84\x2c\x39\x64\x45\x10\x3f\xf6\x50\xe7\ +\xb5\x8d\xbc\x61\x2b\x16\x5f\x79\x1d\x96\x3a\xbf\x54\x84\xb2\x2c\ +\xf8\xa2\x23\x6d\xaf\xc5\x34\xae\xeb\x19\x4b\x19\xdc\x44\xa2\xa5\ +\x34\x97\x3a\x5a\x1a\x9c\x18\x2e\x01\xa9\xa0\x1d\xc6\x96\x4c\xca\ +\x84\xbc\x6b\xdc\xc2\x58\xef\x01\x6b\xac\x71\xf3\xb0\x7e\xa1\xb6\ +\xc6\x1a\xb7\x30\x5e\x72\x07\xff\x17\x7a\xc0\xba\x06\x5d\xd1\x69\ +\x50\xba\xf5\x90\x6e\x69\x5b\x84\x64\x3f\xbd\xa6\xbe\x42\x4e\x75\ +\x3f\x48\x91\x1e\x2f\xa1\xfc\x82\x6b\x1e\x97\x3a\x55\x3e\x90\x81\ +\xcd\x37\x62\xf5\x81\x0f\x97\xd4\x59\x0b\x92\x37\xbd\xe6\x01\xd6\ +\xe5\x17\x6c\xc5\x68\x9c\x2c\xe1\x17\x78\x34\xe8\xb2\x4f\x8e\x99\ +\x4d\xca\x7a\xbe\x4c\x1b\xb5\xa8\xf3\xc6\x87\xe3\xa7\xc5\xd8\x05\ +\x1a\x70\x1c\x2f\x90\x2f\xd6\x78\xc1\x9f\xbf\x3d\xb1\xbb\xb1\xd9\ +\x2e\x9c\x3d\xd3\x6e\xbb\xeb\xae\xf6\xdc\x62\xbb\xfd\xf6\xc7\x3f\ +\xd2\x7e\xf5\xa7\xfe\x4d\xfb\xd8\xbb\x7f\xa6\x9d\x7c\xfc\xd1\x76\ +\xef\xc5\xd6\x2e\x5c\xdc\x6a\x7b\x6d\xbb\xed\xb2\xe8\xe6\x71\xdb\ +\xc2\x97\x6e\x69\x54\x02\x37\x56\xbc\x73\xd3\x18\x00\x35\x03\xfd\ +\x76\xd0\x1f\x34\xb6\xc9\x53\x23\x94\x59\xf2\xb8\x4a\x09\xaa\x79\ +\xaf\x9e\x7f\x2e\x49\xe1\x9d\xb3\xcc\x7c\x09\xad\xa7\xab\xdb\x96\ +\x3a\x00\x5b\x54\x0e\x80\xe8\x81\x33\x52\xdd\xa1\x5a\xe6\x04\x74\ +\xcf\x14\xa8\x7c\x82\x6e\x55\x63\xbe\xcb\xf4\xb8\x91\x0a\xad\x3c\ +\x88\x50\xbc\xd5\x40\x5a\x8e\x71\x3b\xe6\x6d\x82\x95\xe4\x14\x59\ +\x7f\x75\x3f\xb1\xfd\x80\xe5\x18\x58\x30\xbc\x1e\xbe\xc9\x26\xec\ +\xcf\x48\xe4\x43\xd4\xe7\x2a\x52\x95\x83\x5d\x92\xbe\x4e\x66\x06\ +\x64\x28\x41\x0f\xc4\xc4\xe5\xfc\x89\xc2\x57\xdf\x73\x98\xa7\x44\ +\x29\xca\x1f\x23\x4b\x98\x71\x04\xd0\x15\x60\x1e\xba\x0a\xd1\xcd\ +\xa4\x46\x40\x73\x31\x21\x57\x46\x85\x9c\x21\x57\xfa\x3a\x88\xd5\ +\x2a\x15\x67\xf1\x4b\x7d\x03\x9d\x83\xdd\xf5\x49\xa0\xe0\x39\x04\ +\x46\xd3\x61\x0a\x11\xf3\xe1\x95\xd8\x8c\xe9\x7a\x80\xab\x95\xb6\ +\x75\x7c\x05\x37\x9d\x2b\xa0\xd8\x7a\x9e\x8c\xf3\x99\xb6\x2f\xce\ +\x55\x87\xe8\xfc\x10\xa7\xac\x2b\xfb\x07\xed\x33\x57\xaf\xb6\xdf\ +\x7e\x6a\xbf\xed\x3e\xfc\xea\xf6\xd0\xb7\xfd\xae\xf6\xd6\xef\x78\ +\x67\xbb\xf7\xee\xbb\xda\xce\xc6\x6e\x5b\x1c\x2e\xb0\x1c\xb4\xb6\ +\xf0\x0f\x28\x6c\xa1\x10\xa5\xfe\x6f\x24\x35\x7c\xfa\x9f\x24\xc2\ +\x97\x1e\x0c\xd1\xd6\xcb\x27\xff\xa9\x46\x3d\x1c\x91\x44\x4e\xb1\ +\x33\xa6\x72\x3d\xa6\xbe\x64\xe3\x73\xa5\xe0\xd1\x4c\xa4\xce\x8d\ +\x94\x7a\xb2\x55\x73\x20\x35\xbe\x62\x67\x2c\xed\xac\xc7\x28\xd2\ +\xee\x24\x7c\x53\xbf\x73\xb9\xd0\x84\xc4\x97\x1e\xb6\x92\xd0\xc2\ +\x4f\xea\xc1\x13\x29\x09\x6d\x4a\xda\xde\x6f\x72\xd3\x2f\xbf\x50\ +\x2b\x39\x37\x8a\x1b\x49\xf9\x3c\xca\x7f\xc9\x82\xeb\x54\xd7\x67\ +\x6e\xbf\x18\xc8\x93\xd2\xd2\xc1\x1b\xe8\xdb\x1c\xfe\x59\xc8\x30\ +\xad\xb9\x44\x9e\x07\xd8\x50\x1f\x76\x5e\x53\xf8\xda\x06\xba\x24\ +\x9c\x61\x9b\xc7\x97\x12\x86\x9d\x71\xbc\x7e\x71\x29\xb6\xc1\xf1\ +\x2b\x6c\x7d\x32\xa7\xf3\xe6\x64\xdb\x18\x31\x71\x1d\x96\xfc\xf8\ +\xeb\x00\x31\x4e\x7e\x25\xa7\xa8\xb8\xb6\x0a\x9e\x71\x99\xab\xaf\ +\xe2\x33\x5d\xe2\xf1\xa5\x69\x0e\x49\x4d\xaf\xff\x11\xb0\x80\xe4\ +\xff\x4d\xdb\xd9\xe1\x6f\xd5\xe2\xfc\xf5\xe8\x63\xed\x7d\x1f\xf9\ +\x70\x7b\xdf\x47\x7f\xb3\x7d\xfc\xd3\x9f\xc0\xe5\xd3\xa5\x76\xe6\ +\xe2\xb9\x76\xfb\x85\xf3\xed\xfc\xb9\xb3\x6d\x67\x1b\xc7\x32\xce\ +\x27\xcc\xf7\xef\xb8\xb1\x9c\xfb\xf4\x35\x87\x8e\x5e\x5a\x6a\x05\ +\xbb\x3b\x74\x36\x0f\x8e\x51\xdd\x2d\xa5\xac\x43\x6f\x19\xcf\x73\ +\xad\x08\xe8\xc5\x03\x9d\x32\xa2\xc2\xc5\x1a\x96\x6a\xf9\xcd\x89\ +\x44\x08\xf9\xc3\xa8\x39\xd9\x92\xa3\x62\x86\x50\x54\x25\xac\xf6\ +\x46\x19\x80\x63\x44\x03\x91\x65\xa8\x13\x33\xee\x95\x28\x91\x39\ +\x16\x13\x4b\xf0\x18\x67\xc8\x92\xaa\x18\xdb\x82\x2d\x3e\x93\xc3\ +\x6a\x55\xe1\xe0\x48\xab\x04\x50\xc3\x27\x98\xc5\xf5\x7a\x41\x70\ +\x1b\xf8\x3b\x1a\xf4\xf0\xf9\xfb\x98\xf7\xd1\x7e\x9d\x05\xce\x51\ +\x39\xff\x11\xdf\x61\xde\x51\x4c\x28\x88\xb8\x49\x78\x81\xca\x5b\ +\x75\xfe\x52\xe0\x88\x60\xbb\x7c\xbd\x22\xd6\x6a\xb2\x10\xe9\xb7\ +\x27\xf9\xb1\x05\x47\x44\xa0\xe4\x74\xc4\x4a\x4e\xf8\x88\x9b\x8d\ +\x4a\xda\x3c\xd0\x26\x7c\x73\x7e\x62\x1b\xaa\x12\xfc\x0a\xb7\xb6\ +\x4b\x07\xd7\x23\xfe\xcc\xe0\x58\xf3\xd4\x8c\xbe\xdb\x52\x57\xab\ +\x1e\x82\xca\x58\xd6\x81\xc8\xd2\x5d\x8f\x2d\x89\x26\xeb\xea\x7b\ +\xbf\x34\xdb\xac\xcf\x21\x71\xe1\x75\xcf\x31\xae\x8d\xae\x5d\xb9\ +\xda\x9e\x7e\xfa\x99\xb6\xff\xcc\x41\xdb\xdd\xbd\xbb\xbd\xf6\xd5\ +\xaf\x6b\x6f\x7b\xeb\x57\xb7\xd7\x7f\xe5\xeb\xdb\xed\xb7\xdd\xd6\ +\x76\x8e\xb6\xdb\x11\xee\x15\x75\x0e\x42\x71\xd5\x53\x1f\xee\x45\ +\x97\x2f\x62\xc9\xe0\x4b\x7d\xd2\x87\x7d\x32\x7c\xfd\x1a\x87\xf9\ +\x31\x00\x0a\x0f\xd6\xf1\xfd\xda\x03\xe8\x76\xf1\x8d\x85\x11\xbc\ +\xc6\x89\x48\x72\xba\xa6\x1b\xd7\x6c\x5c\xba\xaf\xc7\x0f\x1f\xbf\ +\xe8\x48\x9b\xe3\xd0\x97\xc6\x19\x7a\xc9\x23\xa7\x78\x49\x7c\x38\ +\x6e\xc5\x50\xd2\x65\x3b\x0c\x4d\xb7\xb6\x51\x40\xe1\x80\x44\xe4\ +\x0c\x94\x40\x61\xee\x5f\xe3\x56\xc1\x7a\xcb\xaf\xb1\xc6\xcd\xc3\ +\xfa\x85\xda\x1a\x6b\xdc\xc2\x78\xc9\x1d\xfc\x5f\xe0\x01\xeb\x5a\ +\x55\x7d\x96\x8e\x53\x95\x0f\x46\xf8\xfb\xa9\x34\xa4\x7d\xf6\xf3\ +\x56\xd2\x7a\xc4\xad\x90\x7a\x08\x93\xba\x5e\x8e\x31\xeb\x58\x0f\ +\x77\x97\x63\xad\xdb\xa6\xc9\x38\x28\x88\xf7\x8b\x35\xe6\x86\x3f\ +\xa5\xea\xd0\xe5\x1b\x24\x3d\xe4\x99\xc7\x33\x9a\x76\xe9\x93\xa0\ +\xee\x87\x41\x51\x4b\x36\x6b\xb8\x5f\x71\xaa\xa5\x08\xc5\xf1\xb3\ +\x00\xaf\x87\x22\x8c\xc1\xd7\x06\x02\xc8\x71\xb5\xb2\x1e\xc7\xe2\ +\x1b\x04\xeb\x94\x3b\xdb\xdb\xed\xdc\xc5\x8b\xed\xf6\xf3\xb7\xb5\ +\xcd\xc3\x45\xfb\xf0\xc7\x3e\xd2\x7e\xe1\x27\xff\x55\xfb\xf0\x7b\ +\x7e\xa5\x9d\x7d\xf4\xd9\x76\xdf\xed\x1b\xed\xfc\xb9\x8d\x76\xb1\ +\x6d\xb5\xed\x4d\xff\x49\x12\x82\x37\x20\xba\xa9\xd4\xc7\x37\x60\ +\xf2\xa8\x2e\x11\xb7\x7e\xd1\xa0\x47\x71\xb2\x7a\x4c\x57\x8c\x30\ +\x47\x9e\xe1\x78\xdc\xb0\x42\x4a\xaf\xbe\x90\x5d\x99\xc9\x12\x6a\ +\x90\xf0\x30\x54\xcb\xd3\x31\x48\xc5\x87\x7f\x1a\x6c\x61\x13\x8d\ +\x92\xc5\xdc\x18\x56\xc4\x92\x72\xd9\xd0\xd4\x9d\x6e\xed\x64\x7b\ +\xce\xdc\x12\xd4\x34\x5e\x1b\x46\x6c\x4f\x22\x57\xa3\x86\x4c\xc2\ +\x27\x7e\x6e\x1f\xe7\xd1\x41\x4e\xf5\x25\xe1\xc5\x0e\x22\x16\x45\ +\xc9\xf9\xb5\x47\x85\x73\xd9\xbd\xfa\xa5\x8e\x25\x75\xdd\x4f\x5b\ +\xcd\xd0\x01\xfa\xc0\xe9\x66\xb4\xfa\x92\x9f\xf5\xd4\x11\xf1\xf3\ +\xb4\x44\x66\xa5\xaf\xcf\x15\x40\xce\xfb\xfc\x14\xa2\x22\xae\x84\ +\xaf\x46\x2f\x1c\x12\x28\x7b\x7e\x41\xe9\xe8\x79\x8b\x1a\x4b\x43\ +\x5b\x35\x58\xa2\xd7\x9b\xfa\xbd\xbd\xa8\xc8\x34\xb4\x11\x1c\xc7\ +\x56\x2e\x36\x32\xba\x02\x91\x33\x1e\xc7\x2c\x5b\x10\x8e\xa0\xd2\ +\x1f\xf3\xa9\x4d\xc8\xa2\x1b\xc2\x0f\x58\x80\xb0\x59\x9e\x7b\x4c\ +\x6e\x83\xde\x1d\x1b\x7d\xf8\x7f\x39\x18\x74\xc2\xf7\x62\xed\x00\ +\xcd\xa5\x83\x6b\xed\x89\xfd\xfd\xf6\xc9\xa7\x0e\xdb\x93\x67\xef\ +\x68\x77\xbd\xe3\x2d\xed\xed\xdf\xfd\xbb\xdb\x1b\x5e\xff\xca\x76\ +\x6e\x7b\xaf\x1d\x1c\x9e\xb4\x43\x9c\xa3\xf4\x90\x7b\x71\xd4\xb6\ +\xb0\x7e\xfc\xf2\xc3\x16\xf6\x81\x73\x04\x06\xe2\x2e\x59\x9d\xeb\ +\x41\x5f\x2c\x9b\x7e\x30\xc3\x18\xf7\x9d\xf1\xb0\xe1\xeb\xb1\xe4\ +\xf2\xe5\x55\x72\xb4\xb9\x92\xdd\x66\x9d\xa8\xc7\x5a\xca\x09\x3e\ +\x72\xc7\x0b\x35\x86\x04\x27\xbf\x97\x3e\xde\x6e\x63\xe1\x79\x8e\ +\x1c\x6b\x06\x57\xe5\xa4\x4e\xef\x17\xea\x52\xbc\xb7\x5d\x8f\x23\ +\xa7\x30\xea\x54\x00\x6d\x8f\x00\x78\x9b\xf1\x02\x52\x6a\x06\xcc\ +\x13\xd2\x2e\xa8\xd4\x75\xc2\x26\xb8\xd1\xb8\x97\x12\xb8\x4e\x5f\ +\xe8\xf5\xe1\x76\xd2\x76\x96\xb1\x62\x5e\x43\xe9\xdb\x73\x60\x30\ +\xce\xeb\xdf\x13\x10\x2b\x4d\x12\x5f\xca\xb5\xae\x0f\x79\x1e\x87\ +\x36\x24\xfb\xb5\x89\xec\x94\xf4\xf3\xfa\x83\x97\x2f\x8c\xd1\x05\ +\x49\xd4\x12\x2b\xd3\x71\x11\x0f\xe4\x75\x8c\x3c\x19\x2f\x57\xf0\ +\x8c\x8d\xf8\xee\xc7\x7a\x6a\x4c\xca\xf5\x35\x4f\xcf\xc9\x98\xc8\ +\xa1\x83\x94\xaf\x8d\xbc\x1e\x19\xcb\x8f\xaf\xd9\xc8\x79\x3d\xec\ +\x51\x0f\xf1\xbd\x2d\xd6\x2f\xce\xaf\xbc\x3e\xa3\x1f\x57\x5d\x6d\ +\x67\x77\x47\xbf\x35\xbb\xcf\xff\xaf\xf6\xe8\x67\xda\x7b\xdf\xff\ +\xc1\xf6\xde\x0f\x7c\xb4\x5d\x7a\xf4\xd3\xed\xf0\xec\x71\x3b\x77\ +\xdb\x6e\xbb\xfd\xb6\x0b\xed\xfc\xd9\xbd\xb6\xc9\x17\x6b\xdc\x3c\ +\x68\xfc\x50\x9a\xb5\xbd\xbd\x74\xfc\xba\xbc\x60\x9d\xbe\x1c\x0f\ +\x17\xe4\x6b\x7c\x1a\x59\xc9\x05\x47\x9e\x63\x0c\xce\x80\x4e\xda\ +\x0d\x3f\x8a\x91\x50\x0b\x94\x6f\xcc\x75\x6e\x49\x29\x4f\x4a\x9e\ +\x2f\x00\x28\xca\x90\x64\x84\xa3\x7a\x95\x1e\xe8\x18\xc2\xe3\x84\ +\xa1\x4f\x09\x08\x90\xc9\x75\x97\x1e\x4a\xad\xec\xb5\xb5\xdd\x6b\ +\x68\xec\x52\x22\x2a\x9b\x32\xde\xe2\xeb\x31\x44\x10\xe2\x82\xcc\ +\x98\x1a\x99\x3d\x17\xa7\x39\xce\x09\x06\x4d\x9f\x46\x56\xe7\x4e\ +\x2d\x64\xc4\x67\x07\x1c\x6e\xdf\xae\xf4\xf1\xf0\x28\x61\x02\x02\ +\x34\xb7\x24\xd5\xa7\x15\xf7\xc1\x00\x20\x26\xcb\x79\x9e\x0f\xf5\ +\x37\x43\x96\x20\x54\xa6\x42\xb5\xad\x26\x64\x76\x6e\x9e\x00\x14\ +\x8a\x6a\xaf\x8d\xaf\x5a\xce\x3e\x30\x41\xd8\xb6\xc1\x71\xa4\x4e\ +\x0c\x0d\x80\x41\xdb\x75\xc7\x1a\x4d\xc7\x0e\x3e\xe7\x48\x66\xf4\ +\x3c\x12\x07\xd7\xdb\x80\x13\xa4\x52\x4c\x7c\x89\x19\xd9\x4b\x82\ +\xef\xb3\xac\xfd\xce\x9e\xdc\x56\xda\x36\x90\xe9\xe9\x9c\x2c\x29\ +\x02\xfd\x5d\x82\xd6\x3c\x11\xe1\xd0\xf7\x7b\xab\xd2\x25\xd5\x72\ +\x9d\x1d\xab\x3e\xd1\xf0\xdc\x77\x78\x70\xd4\xf6\x2f\x5d\x6a\xcf\ +\x3d\x73\xa5\xed\x2c\xce\xb6\xfb\x5e\xfe\xb2\xf6\xe6\xaf\x7d\x4b\ +\x7b\xf3\x9b\xde\xd4\xee\xbb\xe3\xee\xb6\xb9\xb5\xd3\x16\xb8\xde\ +\x3a\x39\x3a\xd1\x0f\x01\xe8\x6a\x08\x05\xa9\xf1\x4b\xeb\x44\x9b\ +\x63\x81\x02\xaf\x79\x8e\x23\xae\x4d\xf4\xa5\x41\xe0\x7a\x45\x7a\ +\x72\x24\xe7\x92\x40\x9d\xd4\x21\x14\x8b\x5a\x19\x53\xf3\xf9\x05\ +\xa5\x70\x18\x81\xae\x73\xd2\x9e\xfb\xc7\xc2\xf1\xb8\x6c\x8c\x2b\ +\xe3\x33\x0e\x5f\x50\xa6\x3c\xda\xe4\x68\x67\xac\x68\xda\xa1\x0b\ +\xd8\xce\x69\xe5\x26\xcf\xe3\x35\x73\xa6\xe0\xf6\x59\xc5\x57\xdc\ +\x48\xcc\x1a\x2f\x65\xac\xb7\xee\x1a\x6b\xdc\x3c\xac\x5f\xa8\xad\ +\xb1\xc6\x2d\x8c\x97\xdc\xc1\xff\x05\x1e\x30\xaf\x45\xeb\x29\x52\ +\x97\x98\x61\x5a\xa0\x95\x62\xa9\x9b\x8e\x8c\xe7\x8d\x04\x75\xca\ +\x99\x5d\xf5\xc1\xe1\x66\x02\x37\x1e\x50\x70\x03\x1b\x0f\x4c\x92\ +\x0f\x7d\x9e\x3f\xe7\x25\x91\x2b\x9d\x5f\xc9\xab\xa6\x6d\x3e\x94\ +\xd1\x4d\x0e\x5d\xbc\x53\x66\x9f\xb2\x23\x4e\x26\xb4\x5a\x07\x6a\ +\x7f\x58\x23\xdb\x75\xe8\xe7\xe2\xff\x0f\x42\xfd\x58\xe5\xa0\xe8\ +\x26\x1c\x19\xf6\xb3\x16\xfb\x57\x0d\xd4\x82\x7d\xc4\x00\x1a\xd1\ +\x7f\x2e\xf9\xd0\x98\x37\x20\xfc\x29\xe9\x7b\xef\xba\xbd\x9d\xdd\ +\x3b\xdf\x2e\x5f\xb9\xda\x3e\xf0\xa1\x5f\x6d\x1f\xfa\xc9\x9f\x6a\ +\x9f\xfa\xe5\x8f\xb4\xbd\xa7\x9e\x6e\x77\xde\xbd\xd3\x6e\x3b\x7b\ +\xb6\xed\xa1\xc7\x5d\xce\x53\xfc\x09\xb9\xf1\xe0\x59\x96\x4a\x53\ +\xd7\x4f\x49\x72\x78\x04\x39\x0a\xc4\xc1\x25\x53\x71\x15\x22\xc3\ +\xeb\x3b\x39\xa7\x45\x5c\xfd\x2d\x35\xdb\x96\x89\x6e\xcf\xf8\x95\ +\xf6\x28\x13\x80\x95\x77\x45\xe1\x37\x38\x8f\x61\x14\xbe\xbb\x67\ +\x70\x08\xc7\xed\xea\x8e\xe3\x8d\xa8\x6d\x62\x39\x97\x4c\xfa\xd3\ +\x9b\x9d\x8d\x3c\xa1\x27\xc7\x4d\x1d\xe7\x28\x6a\x2b\x3a\xd2\x32\ +\x6c\x54\x49\x8d\xb0\x1c\xa3\xac\x70\x9c\x7d\xcb\x55\xe6\x58\xcd\ +\x02\x85\xcc\x07\x1d\x8a\x9e\x95\xe4\x36\x65\x5f\x22\xb8\x6f\x40\ +\x70\x33\x30\x3e\xd6\xd0\xc8\xf9\x93\x20\xaf\x80\x82\x62\xc4\x8e\ +\xc0\x5d\x32\xf9\xc8\x36\xaa\x31\xa9\xb1\x64\xf6\x50\x8f\x71\xee\ +\xb5\x7f\xee\x5b\x9a\xd7\xe5\xb4\xe7\x41\xd4\x2b\xfb\x4c\x42\x95\ +\xe9\x92\x6e\xf4\xfe\x7b\x3f\xa5\xff\xce\xcd\xe1\x0a\x3c\x6e\x79\ +\x9e\xb1\x95\x75\x2c\x95\x1a\x94\x85\xab\x8a\x07\xb8\x9d\xf8\xc8\ +\x42\xb1\x4c\xb3\x2a\xe8\x51\x46\x90\xdc\xfe\xb4\x55\x03\x0d\xcf\ +\x4b\xfe\x69\x6e\xf4\x88\x98\x6b\x38\x3f\xed\x1f\x5e\x6b\x4f\x5c\ +\xbe\xdc\x3e\xf3\xe4\xd5\xf6\xec\xe6\xf9\xb6\xfb\x35\x6f\x6c\xaf\ +\x7b\xe7\x5b\xdb\x57\xbf\xe3\x2d\xed\xe2\xf9\x8b\x28\xb3\xd9\x0e\ +\x0f\x0e\xbc\xbf\x6c\x6d\xe8\x4f\x43\xb2\xab\x7c\xd0\x43\xe4\xcb\ +\x2e\x72\x7e\xa2\x42\x81\x51\x93\xc3\xc2\xf1\xd4\xdf\x30\xf3\xf8\ +\xb6\xe4\x63\x5e\x7f\xd9\xc6\x8a\x7a\x78\x83\xd8\xa8\x39\x79\xa0\ +\x93\xf1\x7c\x60\x93\x5c\xf4\x59\x7d\xd2\xd9\x1f\x7d\xe2\x86\x3f\ +\x6d\x14\x9d\xf0\xd2\xe3\xc5\x1e\x9a\x09\xdf\x25\x67\x93\x3a\xfb\ +\xeb\xfd\x72\x6d\x97\x63\xb9\x8d\x14\x93\x3e\x85\xa9\x15\x15\x9b\ +\xd4\x80\x9d\xa6\xe6\x8d\x4a\x6f\x22\x47\x98\xdb\x05\x59\xb3\xca\ +\x55\x50\xdd\x82\xd3\xe2\x6e\x75\x5c\x6f\x0e\x2b\x74\xc2\x2c\x81\ +\x3e\x81\x96\xfc\xf0\xc5\xb9\xb1\xa2\x33\xf0\xe9\x1c\x10\x44\x9e\ +\x45\x78\x7e\x90\x55\xa4\xcb\xc4\xb5\x52\x72\x92\xfc\x8e\x9f\x76\ +\x5c\xc3\x24\xc7\x96\xd7\x0d\xcc\xc9\xbc\xf8\xf2\xc7\xbc\x73\xa9\ +\x8e\x98\x1e\x2f\x59\x7c\x8a\x4d\x9e\x52\xad\x79\xf5\xa5\xe8\x11\ +\xab\x00\xfe\x3e\x06\xa5\x9c\xbe\x9e\x22\x18\x2f\x19\xb1\x25\x87\ +\xeb\xe2\x14\xe8\x3a\x89\x39\x57\xeb\x88\x2f\x1e\x2d\x8a\x01\x58\ +\xcf\xec\x71\xdb\xdd\xde\xc2\x71\x7a\xdc\x2e\xe1\x7a\xea\xa3\x9f\ +\xf8\xed\xf6\x33\x1f\xfc\x50\xfb\xf0\x6f\xfc\x66\x7b\xec\xb9\x47\ +\xdb\xce\xd9\xcd\x76\xfe\xe2\xf9\x76\x27\x96\xbd\xbd\x9d\xb6\xb3\ +\xbb\x8d\xd3\xc5\x96\x6b\xc7\xb6\xcc\x63\x57\xd7\x90\x92\xa2\x01\ +\xda\x84\x37\x32\xe3\x7c\x16\x8f\xed\x4c\x2f\x03\x14\x14\xeb\x05\ +\xf8\x1a\x2a\x10\x21\xb9\x2e\xdd\x9e\xc0\x64\xaf\x90\x31\xd1\xa8\ +\x9e\x4f\xea\x86\x24\xfb\xf0\x5c\x8c\x58\x82\x0a\xc6\xd9\x6d\xc3\ +\xeb\x56\xc1\x7c\x30\x41\x6a\xc8\xd0\x25\x66\xb9\x9a\x15\x04\x64\ +\x4c\x34\x53\x80\xd2\x30\xad\xaa\xe9\x7a\xa0\xd7\x9e\xd4\xa1\x31\ +\xc5\x98\x75\x9f\x1f\x15\x61\x0a\xa8\x39\x18\x17\xb6\xa1\xae\xff\ +\x6d\x79\xdb\x8d\x0d\x18\x60\x25\xcf\xef\xc8\x34\x6c\xd7\x9a\x44\ +\xd5\x67\x80\x8b\x73\x99\x7a\x5f\x1f\x34\xa7\x65\x75\x9e\x4a\xa4\ +\xe6\x5c\x25\xec\x32\xe3\x4a\x08\x8c\x00\x77\x31\xa2\xb9\xdb\x4e\ +\xb7\x66\xe6\x15\x84\x51\xb9\x1c\xaa\xfa\x59\xe1\x27\x64\x4f\xc8\ +\xd9\x7a\xf5\xbc\x18\x01\x06\x53\xfd\xd9\x87\x1a\x18\xf5\x74\xd9\ +\xd1\xb9\x50\x56\xc5\x24\xe4\x2b\x01\xda\xd6\xdc\xbf\x21\x51\x7c\ +\xcc\x83\xf6\xd2\x12\x09\x3b\x37\x8e\x3f\x01\x5c\x27\x71\x5f\x0e\ +\x9d\x0e\x45\x29\x80\xf9\xf8\xc2\xfe\x13\x26\x9c\xec\x07\xd7\x02\ +\x0b\x9c\x69\x70\x0d\xc5\x17\x64\xc7\x8b\xa3\x76\xed\xca\x95\x76\ +\xe9\xb9\x2b\xed\xe4\x80\x7f\xd6\xff\xbe\xf6\x86\xd7\xbd\xae\xbd\ +\xf9\x4d\x6f\x6e\x0f\x3e\xf8\x40\xdb\xdb\xda\x41\x0c\x52\x16\x0b\ +\x5d\x93\xf1\x5a\x82\xdf\xeb\xf9\xbf\xd6\x7c\x3d\xc1\xd2\xfc\x0d\ +\xcd\xd4\x19\x12\x7d\xf3\x8b\xeb\xa5\x78\x7b\x69\x6b\x0c\x18\xb7\ +\x74\x7c\x41\xb1\x64\x44\xe8\x94\x72\xb9\x71\x2e\xbf\xc8\x87\xd4\ +\x92\x7d\xcd\xf9\x5c\xd2\x27\x3b\xae\x9d\x66\x71\x23\x8f\x6b\x08\ +\x19\xb6\x79\x08\x5d\x21\xe2\x8b\x97\x51\x9a\x05\x91\x93\xdc\x5c\ +\x9f\xca\x77\xd0\x17\x2a\xc1\xe3\xc5\x5b\xc5\xd7\xb9\xee\x24\xb6\ +\xef\x04\xab\xb8\x35\x6e\x15\xac\xb7\xfc\x1a\x6b\xdc\x3c\xac\x5f\ +\xa8\xad\xb1\xc6\x2d\x8c\x97\xdc\xc1\xff\x45\x1b\xf0\xb8\x15\xa9\ +\xf7\x9f\x62\x65\x5b\xda\x16\xe1\x1b\x94\x58\xc4\x50\x56\x6e\x66\ +\xeb\xe1\x09\x25\x5f\x3c\xf1\x81\xca\x9c\xc7\x32\x24\x39\xd4\xd4\ +\x4b\xaa\x8c\x0b\xbf\x5e\x84\xd9\x2f\xaf\x02\xe9\x06\xa7\x97\x57\ +\xf9\x20\x86\x8b\x6d\xca\x5e\x3b\x73\x34\x8e\xe0\x28\x79\x8b\x2d\ +\xdd\x79\x5a\xd0\x57\xea\x60\x21\x3d\x6e\xff\x34\x36\xd4\xe2\x4f\ +\xdd\x63\xc6\x8d\x56\x8c\xc5\x3e\xc6\x58\xe7\x0d\x78\xbf\xd0\x03\ +\xb7\xb5\xb9\xd5\xce\x6e\x6d\xb7\xdb\x6f\xbb\xd8\xf6\xf6\xce\xb4\ +\xa3\xab\xfb\xed\x83\xbf\xf6\xf3\xed\x17\xde\xf5\xcb\xed\xd1\xf7\ +\xff\x66\x3b\x77\xf5\x72\xbb\xe7\xf6\xad\x76\x61\x0f\x71\x48\x51\ +\x3e\x36\x92\x5f\x8c\xf0\xa6\x2c\xb6\x99\x8a\xfa\xc6\x83\xc3\x40\ +\xcb\x06\x20\x93\x37\x8d\x40\x28\x1c\x85\xc6\x1b\x18\x63\x1a\x99\ +\xbc\x73\x99\x3c\x10\x22\x7a\x7e\x36\x10\x3d\x21\x40\x5b\x03\x91\ +\x35\xb5\x21\xf3\x66\x48\xa3\xca\xfa\xe1\xf7\xcb\x2a\x8f\xd7\x9e\ +\x70\x9c\x06\xc6\xcf\xc7\x38\x33\xaf\x07\xce\x18\xb7\x98\xf5\x53\ +\xb0\xe4\x00\x31\x06\x38\x01\xa9\x3a\x5a\xe9\x20\x27\xeb\x5a\xd0\ +\xcb\xa4\xab\x27\x77\x0f\xb4\x9c\xb1\x11\x9b\x73\x4e\x9b\x8b\x1f\ +\xa7\x59\x57\x5c\x04\x67\x8e\xe2\xa1\xf8\x01\x10\x15\x08\x02\x26\ +\x87\xa5\x78\x07\xf4\xa4\x10\x82\x1f\xe4\x51\x81\x10\x69\xaf\xc3\ +\x83\x14\xc5\x86\x08\x3b\xe2\x7a\xa1\xae\x90\xcf\xd8\x44\x0f\x7a\ +\x1e\x78\x3e\x56\xa1\x4e\x71\x8d\x89\x51\x44\x8f\xf3\x7e\x03\x4b\ +\x45\x4b\xdc\xdc\xd7\xd7\x73\x60\xc2\x4c\x3a\x1f\x3d\xc7\x33\x03\ +\x21\x37\x05\x61\xc1\x99\xe4\xba\x8d\xa0\x8c\xef\x0c\x14\xea\xe4\ +\xc5\x41\xa1\xd4\xe6\x81\xae\x47\x17\x18\x1b\xb7\x33\x1f\x33\x6f\ +\xea\x94\x05\x1d\x7d\xed\x43\xbf\x76\x78\xd0\x9e\x39\xb8\xda\x7e\ +\xe7\xc9\xab\xed\xca\xf6\xb9\x76\xe6\xf5\xaf\x6f\xf7\xbd\xfd\xf5\ +\xed\x0d\x5f\xfd\xa6\x76\xff\xfd\xf7\xb4\x73\xc7\xdb\xed\xda\xd1\ +\xa2\x1d\x20\x81\xf5\xb6\x51\x9b\x0f\x9d\xb7\x50\x97\xff\xb7\x88\ +\x2f\xed\xd9\x21\x7f\x18\x40\x7d\x73\x01\x4f\xf8\x81\x4b\x48\x3d\ +\x37\x41\x16\xc7\xa4\xa7\x1e\xf1\xf2\x8c\x35\x82\xef\xbf\x6d\x16\ +\xbc\x6a\xa9\xc6\xa8\xab\x87\x34\x69\x57\x9d\x7d\x86\xce\xce\x32\ +\x27\xf5\xf4\xf1\x8b\xb5\x6d\xd7\x5a\x23\x46\x83\x95\x9e\xb9\x34\ +\xc3\x8f\x2f\xfd\x50\x42\xf5\xc7\x58\x85\xf0\x0d\x49\x0e\xf5\x34\ +\x4f\xe0\x22\x66\x25\x40\x7b\xaf\x60\x49\x9f\xf3\x26\x3b\x45\xc7\ +\x2a\x2e\x50\xe9\xeb\x84\xf5\x8e\x12\xa7\xc5\xdd\xaa\x78\xa1\xf3\ +\xc3\xed\x34\xd9\xae\x39\xf9\x59\x28\x7c\xda\x9e\x53\x98\x41\xcb\ +\x4f\xf1\xe7\xf7\x21\x73\xb0\x8a\x1c\x3a\xdb\xb8\x0e\x91\xcd\x33\ +\x3f\xaf\x2d\x48\x41\x06\x47\xc9\x8f\x5f\x5e\xc9\x29\xce\xb9\xfc\ +\xa0\x21\xc8\x87\x2f\x79\xeb\x45\x62\x51\x28\x6d\x2c\xfa\x61\x23\ +\x5d\xe7\xf8\x4b\x3e\x85\x72\x1c\x31\x1e\xf2\x38\x29\x8d\xb1\xd3\ +\x67\x3d\x32\x1c\xab\xc4\xc8\x88\x71\x2b\x46\x2e\x8f\xdd\x79\xf4\ +\xd1\x72\x8e\xaf\x13\xc8\xb3\xe5\xff\x22\x62\x7d\x9c\xf1\xe8\xc3\ +\xd7\xce\xee\x56\xdb\xdb\xde\x6c\x4f\x5c\xba\xd4\x3e\xf4\xf1\x5f\ +\x6f\xef\xfb\xf0\xc7\xda\xc7\x3f\xf1\xe9\xf6\xf4\xb3\x8f\xb7\x93\ +\xbd\x63\xfd\x6f\xb5\xdb\x2e\x9c\x6b\xe7\xcf\xef\xb5\x9d\xed\x9d\ +\xbe\xb9\x74\xc4\xc6\x71\xab\xee\x05\xf6\x15\xc7\xb2\x20\xaf\xa4\ +\x7e\x5b\x4d\x1c\x18\x0e\xc6\x8a\x25\x20\x0d\x4d\x67\xa4\x87\x15\ +\x71\x93\xef\xee\xa2\xbc\x0e\xf1\x31\x52\xd7\xfa\xc5\x08\xa0\xf4\ +\xbe\xf1\x25\x3d\xe3\x02\xce\x91\x6a\x74\x82\x4b\x64\x43\xb5\x15\ +\xe7\xa0\xde\xf2\xfb\x08\x35\xf5\x26\xd6\x1a\x5a\x8d\x3d\xf2\xe5\ +\xa9\xb0\x7f\x29\x62\x1e\xb6\x02\xdc\xca\x39\xa3\x5e\xa7\xd0\x51\ +\x2f\xb6\x8a\x58\x4a\x8f\xd7\x16\x31\xe2\xdd\x73\xef\x1f\x8a\xbe\ +\x3f\x26\xc1\xed\x8b\x7a\xdc\xbc\x23\x77\xc4\x8e\x40\x9a\x4c\x24\ +\x35\xfa\x25\x72\x5c\xd5\x96\x96\x34\x50\x23\xac\x4f\x73\xe6\xe8\ +\xdf\x53\x66\x20\x9b\xb5\x6b\x05\xeb\xdd\x0b\xcc\x03\xc6\xdc\xd8\ +\x07\x5b\x3c\xc6\x0a\xa9\xfb\x08\x45\x44\xd4\x54\x4c\x30\x1f\x5a\ +\xae\xaf\x68\x15\x1d\xa8\x3e\xcd\xfb\x88\xec\x42\x70\x72\x4f\xef\ +\x55\x66\xf5\x32\x49\xf3\xc3\x81\x03\x1a\xbf\xc8\x58\x55\x72\xb4\ +\x85\x60\x78\xce\x50\x10\x10\xce\x34\x2d\x31\x32\xf4\x95\x1c\x91\ +\xeb\x69\x99\x51\x61\x73\x9f\x39\x3a\x6e\x47\x87\xb8\x3e\x3a\x38\ +\x68\x8b\xfd\xc3\x76\xed\xca\xb5\xb6\x38\xdc\x6e\x77\xdf\x73\x77\ +\xfb\x8a\x57\xbe\xa6\xbd\xf1\xf5\x5f\xd5\x1e\x7e\xf9\x43\xed\xb6\ +\xb3\x17\x94\xc4\xdf\x5c\xe3\xfa\x6f\xb1\x00\xae\x0b\xf8\xa7\xb2\ +\x59\x51\x2f\xd4\xc0\x91\xe6\x08\x58\x9e\xfb\xfd\xf8\x61\x24\x5a\ +\xfe\xea\x2f\xd4\xb8\xc0\x96\x1e\x3e\x72\xaa\x93\xba\x35\xba\x1d\ +\x93\xb1\x19\x87\x85\xd7\xf2\xba\x24\x62\x8f\x5b\x8c\x37\x3f\x8f\ +\xd3\x17\xf9\x15\x5c\x5e\x0b\xc9\x5f\x38\x42\x75\x93\xc7\x97\x3f\ +\xf6\x8b\x86\x3f\xb9\x1e\xc3\x96\xce\xc2\x33\x98\x73\x77\x72\x6c\ +\x46\x0d\xb6\x23\xb7\x69\x6e\x6b\xf5\xe8\xa2\x05\xe9\xad\x7c\xec\ +\x13\x6b\xdc\x32\x58\x6f\xed\x35\xd6\xb8\x79\xc0\x35\x50\x7c\xf7\ +\x5d\x63\x8d\x35\x6e\x39\xbc\xe4\x0e\xfe\x2f\xda\x80\x79\x63\x65\ +\xd4\x7b\x99\xce\xf2\x34\xaa\x8f\xa5\x0d\x58\xe2\x23\x2a\xf5\x53\ +\xa4\x75\x3e\x0c\xc1\x4d\x8e\x9e\x93\xc4\x83\x91\x90\xd6\x97\xe5\ +\x34\x1f\x52\x0f\x72\x16\xbc\xf3\x86\x4c\xbf\xeb\xe9\x61\x4a\x8f\ +\x19\x7c\xad\xa3\x2f\xaa\x7a\x31\x17\x5c\x7f\x38\xa4\xa2\x8a\x4d\ +\x7f\xaf\x29\x19\xb5\x18\x1f\xe3\x4e\xff\x78\xa1\xc6\xbf\x8f\x0f\ +\x17\x25\x4c\xdd\xb8\x43\x39\x3e\xc6\x8d\x15\x1c\xf4\x6e\x2c\xf8\ +\xe7\xdc\xf2\x56\x56\xb7\x0c\x6d\x1b\xb7\x06\x67\x36\x37\xdb\xdd\ +\x77\xdd\xde\x8e\xf7\xb6\xdb\x67\x9e\xb9\xd4\x7e\xe7\x43\x1f\x68\ +\x1f\xff\xd9\x5f\x6c\x8f\x7f\xf8\xd3\x6d\xef\xe9\x67\xdb\x1d\x77\ +\x6c\xb7\x73\x7b\x8b\xb6\x8b\xe8\x6d\x66\xa1\x20\xff\xc3\x9a\xfe\ +\x16\xbf\xee\x51\x78\x7b\xc1\x31\x41\x4c\xe0\x4b\xcb\x4a\x4f\x5e\ +\x94\xd1\xc1\x0d\x5f\x38\xae\x8a\x81\x9a\x74\x85\xd5\x95\x15\xdc\ +\x52\xcc\x0d\x21\x83\x4b\xdf\x21\xc7\xec\xa4\x15\xa0\x42\x32\x64\ +\x5d\x15\x62\x66\x02\x19\xbc\x0a\xe0\xb5\xee\x11\x81\x46\xd1\x93\ +\x94\xd3\x72\x57\x63\xa4\xae\xd2\xac\x13\x4b\xf7\x81\x40\xf7\x85\ +\xc2\xb5\x67\x98\xcc\x52\xc0\x5c\xb4\x11\x90\xb9\x13\xcc\x49\xc4\ +\xaa\x0c\xe3\x23\x4f\x10\x39\x03\x7d\x11\xef\xbe\x0a\x22\xcf\xeb\ +\x50\x8b\x38\x49\x0c\x1a\xfa\xab\x77\x19\xe9\x4d\x3c\x5f\xd4\xd2\ +\x48\x06\x46\xf7\x33\xcc\xfb\x18\x38\xd5\xa3\x1a\x33\x6f\xad\x1b\ +\xfb\xcc\x04\xf0\x93\xca\x61\x10\x43\x1f\xc1\xe6\xb2\x18\x78\xa8\ +\xda\xcf\x23\x24\x3d\xb9\x7f\x48\x28\x86\xdc\x78\xb8\x20\x29\x80\ +\xb3\x53\x67\x00\xfe\xb6\xad\xa0\x73\x62\x6b\x57\x71\xbe\xb9\x7c\ +\x78\xd4\x2e\x1f\x1c\xb4\xcf\x3e\x77\xad\x5d\x3d\xd9\x6b\x1b\xaf\ +\x7d\x4d\xbb\xff\x2d\xaf\x6b\xaf\xfb\xba\x37\xb4\xbb\xef\xb8\xb3\ +\x6d\xef\x9c\xc1\xa9\x0b\xc1\x07\x47\x6d\x73\x8b\xaf\xd1\x1a\xce\ +\x31\xa8\xc7\xdf\xf8\xc2\xc9\x85\x0f\x60\xf4\x42\x8d\x3d\xa8\x6f\ +\xf6\x89\x45\x2f\x97\xc6\xc3\x15\x3f\x14\xc9\x3c\xea\x7e\x69\x36\ +\x7c\xb0\xf5\x34\xc7\xfe\xe5\x3f\xfb\x38\x7c\xf3\x17\x6a\x96\xa3\ +\x2f\x0e\xaa\xfa\x1d\x93\xfd\x56\x1b\x2b\x33\xe3\x87\x8e\x7c\x8e\ +\x27\xd7\xa7\xd7\x23\x55\x62\x64\xa2\x86\xc6\xee\xd8\x20\xbb\x9d\ +\x35\x39\x3f\x6e\xc0\x65\xcc\x04\xb4\x79\xfe\xb6\x45\x8c\x17\x6a\ +\x32\x0b\x48\xcc\xf3\x0b\xd2\x95\x79\xf3\xd0\x4c\x7f\x9e\x32\x5f\ +\x16\xb8\xd1\x75\x5c\x35\x57\xc9\x25\x4e\x9b\xc7\x04\x0f\xd6\xa5\ +\xed\x9a\x28\xc1\xe3\x1b\x69\x87\x19\xb4\xfa\x58\x8a\x51\xcd\x90\ +\xf4\x14\xe9\x32\x71\xfd\xa1\x1c\x4b\x5d\x93\xc8\x1e\xbe\xc1\x31\ +\x2c\xf5\xf0\x49\x27\xc7\xd2\xb2\xa2\x2e\xcd\xf4\x9b\x9d\xf4\x6f\ +\xc6\x7a\x2c\x68\x1c\x4f\x0f\xed\x1c\x5f\xe7\xa9\xd3\xe7\x31\xe8\ +\x07\x9e\xc2\xe3\x31\xd0\xaf\x00\x66\x5a\xca\x96\xa5\xf8\xac\xd5\ +\x7f\x78\x49\x71\xbc\x8a\x62\x04\x7b\x24\xef\xeb\x29\xeb\xb8\x3a\ +\x64\x3e\x62\x76\x76\x77\xdb\x99\x9d\xcd\xb6\xd8\x38\x6a\x8f\x3f\ +\xf3\x5c\xfb\xcd\x4f\x7c\xbc\xfd\xf2\x47\x7e\xab\x7d\xf8\xe3\xbf\ +\x03\xfb\xb1\x76\xf6\xec\x46\x3b\x7f\xfe\xac\x5e\xac\x9d\x3b\x77\ +\xb6\xed\xee\xf2\xb7\xdb\x50\x09\xf9\xdc\xb6\xbc\x76\x53\x77\xa8\ +\xce\xad\xe9\xc5\xdb\xd5\xbd\x1b\x3c\x2b\xfa\x7c\xce\x6b\x42\x73\ +\xce\x4b\x35\x0d\x6e\x5c\x7e\xe2\xfc\x0c\x88\xce\x40\x40\x7d\x69\ +\x3d\x6d\xa5\x8b\x43\xb1\x4c\xc5\x42\x28\xba\xbe\x8f\x40\x8a\x1a\ +\x0d\xe0\xbe\x8d\xae\x48\xd3\x1a\xe1\x64\x34\x7a\x0b\xcc\x4c\x42\ +\x54\xe7\x33\x3b\x64\x8e\xad\x20\x19\x57\xaf\x63\x30\xf8\x6d\xf4\ +\x18\xcd\x64\x5e\xd1\xf0\x65\x0f\xa5\xe7\xd5\xb6\x7f\x88\x8c\x52\ +\x84\x79\x2c\x39\xee\xfc\x96\xac\xf3\x70\xcc\xa1\xa3\x00\xc5\xbb\ +\x9a\xa3\x09\x56\xcb\x98\xdc\xa3\x60\xe7\xff\xe6\x82\xa3\xce\x4a\ +\xfe\x66\x9e\xe3\x9d\x39\xf2\x07\x14\xe3\x41\x9a\x00\x34\x24\x4a\ +\x9b\x00\xb5\xac\x5c\x90\x34\x64\xce\xc9\x04\x41\xd5\x6c\x53\x1e\ +\xe9\x24\xa3\xc4\x1a\xd5\x9b\x9d\x4c\xab\x10\xfd\x7b\x5b\xc7\xd4\ +\x96\xa5\xbc\x9a\x83\x46\x54\xd6\x33\x26\x99\x08\xea\x5b\x05\x71\ +\x3c\x6e\x12\xd3\x2c\x23\x73\x7b\x4f\x51\x3f\x84\xa0\x35\xa6\x33\ +\xc9\x2a\xa9\xd2\xc7\xc3\x52\x31\x88\x56\xa1\xd8\x6e\x2a\x22\x22\ +\x5a\x40\x0a\xe3\x82\x41\x88\xc2\xb8\x3f\xe1\x3a\x6a\x7f\xff\x5a\ +\xbb\x76\x75\xbf\xed\x5f\xd9\x6f\x47\x47\x27\xed\x8e\x8b\x77\xb5\ +\x57\x3d\xf8\x9a\xf6\xd5\x6f\x7c\x63\x7b\xc5\x2b\x1e\x6c\xb7\x9f\ +\xbd\x4d\xf7\x64\x0b\xdc\xff\x9d\xe0\x7a\x8a\xfd\xf2\x65\x9a\x5f\ +\xa0\xf1\x6e\x8a\x72\x5c\x93\xd4\x97\x63\xda\xde\xba\xa6\xe1\xcc\ +\x40\x67\x1c\xc7\x00\x9b\x9c\xe6\x8b\x3e\xe5\xe4\x35\x49\xc9\xb7\ +\x9a\x96\x62\xbb\x7f\xae\x2b\x97\xe3\xa0\x6d\xbd\xc6\x39\xc6\x12\ +\xcd\xc4\x1e\x8b\xf3\x6b\x9e\x74\xd9\xa3\x9e\x39\x96\xf1\xf8\xcd\ +\x50\x87\x42\x5f\xc9\x13\x13\x36\x63\xb5\xcd\xb4\xf1\x06\x68\xc6\ +\xe6\xf5\x2c\x28\x7e\x6c\xcb\xe1\x4d\x7e\x8e\x69\xbd\x35\xbe\x3c\ +\xb1\xde\xca\x6b\xac\x71\xf3\xb0\x7e\xa1\xb6\xc6\x1a\xb7\x30\x5e\ +\x72\x07\xff\x17\x6d\xc0\xbe\x49\x21\xea\x45\xc8\xb8\x79\x87\x94\ +\x8a\xb8\x2e\xc9\x0d\xbf\x63\x21\xe3\x21\x88\x7c\xc9\x6b\xf1\xc3\ +\x8e\x2e\xf9\x70\x45\x3a\x4f\xd4\xe6\x72\x11\x59\xf4\x2a\xad\x23\ +\x5e\xf9\xb0\x39\xb0\xf4\xcd\xfa\xd7\x7d\x95\x7c\xd9\xb7\x7d\xfa\ +\xca\xfc\x58\xe6\xba\x7e\xb2\x9b\xb5\xe2\x21\x8d\x6b\xc4\xba\xe6\ +\xc3\x9d\x90\xfa\x93\x8f\x8c\x8c\x71\xe9\x65\x1c\x24\x2c\xe7\xf1\ +\x6f\xe7\x43\x32\xce\x3e\x45\xa3\x91\xe2\x39\x57\xde\x91\x6e\xbe\ +\xce\xec\x9d\x69\x17\x2e\x9e\x6b\xbb\x1b\x3b\xed\xe0\xd2\x73\xed\ +\x37\x7e\xfd\x57\xdb\x07\x7e\xf1\xc3\xed\xf1\x5f\x7f\xb4\xed\x5d\ +\xbb\xd4\xee\x3c\x7b\xd4\xce\x6e\x6f\xb4\x8b\x9b\x5b\x6d\x1b\x2b\ +\xc9\xf9\x63\x1d\x55\x42\x3e\x55\xd6\x84\xc7\xf7\x1a\x84\x48\x18\ +\x90\x0a\x05\xe8\x4f\xad\x93\xe4\xba\x69\xdd\x88\xd8\xb0\x35\x17\ +\x94\x16\xa1\x38\x86\xaa\x34\x05\x51\xeb\x51\x40\xde\x54\x7f\x0e\ +\x88\x21\x08\xbd\x93\xcf\x0f\xd3\xf9\xb1\xfa\x7c\xe0\x8d\xdf\x74\ +\x8d\x72\x0d\xdd\x6a\x9a\xa5\x3a\x92\xf3\xec\x56\x94\xf7\x4b\xea\ +\x36\x71\x83\x18\x09\x0a\x20\xc1\x4f\xe9\xa5\xf3\x8a\x16\xab\x71\ +\x67\x11\x22\xec\x39\x45\xe4\x66\x28\xcf\x0f\x8c\x08\xce\x9c\x3e\ +\x17\x2b\x11\x4e\x14\x53\x19\x98\x1a\x72\x19\x88\x34\x8e\x51\xa1\ +\x8a\xa2\x62\xc8\x1c\x71\x11\x2d\xcd\xed\x40\x66\x65\x85\xea\x9f\ +\xfb\x3a\xc2\x50\xec\xcc\x59\xb7\x56\xad\x75\x3d\xe4\x9f\xf5\x5c\ +\x82\xea\xba\x83\xc9\x7e\x0c\x5e\xdb\x15\x8d\xe4\xa0\xa7\x7d\x26\ +\xd1\xeb\x84\x28\x81\x9c\x52\x9a\x3d\x54\x63\xe1\x83\x14\x08\xd9\ +\x7a\x1c\xa1\x00\xbb\xb0\xaf\x40\xf2\xc1\x24\x7f\x93\x6c\x63\xf3\ +\xa4\x2d\xf8\xbf\xcf\x16\x8b\xf6\xf4\xe1\x7e\x7b\x76\xff\xb0\x3d\ +\x71\xe9\xb0\x3d\x73\xb2\xd5\x76\x1e\x7e\xa8\xdd\xfb\xd6\x37\xb5\ +\x57\xbd\xf5\x75\xed\x9e\xbb\x6f\x6f\xe7\x76\xce\x20\x63\x0b\xb1\ +\xc7\x6d\x03\xe7\xa0\x0d\x9d\x53\xf8\x93\xd4\xf1\xf0\x07\x9d\xf2\ +\x61\x10\x7f\x9b\x8c\x7b\xa4\xb6\x37\xfb\xd7\x83\x1f\x3f\x20\x19\ +\x2f\xcc\x1c\xef\x18\xbf\x38\xd3\x48\xe9\x0b\x5e\x63\xd7\x4b\xb4\ +\x78\x98\x13\x2f\xde\xac\xbb\x76\x3e\xa8\xb1\x3d\xfc\x53\xdd\x71\ +\xf9\x00\xaa\xfb\xd5\x67\xf1\x53\xb2\x4e\x19\x7b\x8d\xcf\x7c\xae\ +\xad\x65\xc4\x4b\x25\x17\x32\xf2\x9d\xe7\x85\xe9\x0c\xac\x9c\x78\ +\x08\xf2\xf2\x49\x55\x5b\x60\xdb\xcf\x89\xbc\xd1\xf5\x42\xcd\x2a\ +\xe0\xed\x7d\x43\x60\x58\xcf\x03\xe6\x69\x59\xea\x05\x94\xfc\xb2\ +\xc0\xf3\xad\xef\xdc\x5f\xe7\x90\x48\x9f\xf8\x12\xfc\x82\xe7\x10\ +\xb9\xb3\xda\xc3\xb4\x2f\xcf\x23\xba\xf6\xa0\x25\x93\x32\x6d\x46\ +\x28\x30\x74\x7e\xbf\xe7\xf5\x06\xfd\xbc\xb6\x18\x9c\xbe\x28\x79\ +\x4d\x20\xcb\x7e\x62\xbc\xac\xb2\xed\x78\x47\xe9\xfa\x23\xf2\x79\ +\x66\x83\x19\x1e\xe6\xa4\x0c\x46\x54\xd4\xe5\x62\x56\x5f\xfe\x8c\ +\xb1\xa8\x0e\x75\x2d\xd1\x77\xc4\x58\x0f\x9f\x74\xff\x00\x00\xb9\ +\xba\x6e\xba\xbe\x82\xa9\xeb\x2b\xf2\xf9\x42\x0d\xbc\x5f\xa2\xd1\ +\x0d\xa9\x13\xaf\x18\xc7\x61\x5b\xf1\xd0\xdb\xda\xde\x6c\x3b\x3b\ +\x5b\xed\xe8\xf0\xa0\x3d\xfe\xdc\xd3\xed\x23\x9f\xfa\x44\x7b\xff\ +\x47\x7e\xbb\xfd\xce\xef\x3c\xd9\x9e\x7a\xfa\xb1\x76\xbc\xb3\x68\ +\x67\x2f\x6c\xb7\xdb\x2e\x9c\x6d\xe7\xce\xed\x21\x76\x47\x73\xa0\ +\x7c\x7d\x01\xa9\xf3\xf8\x56\x7f\x62\xa3\x4d\xf0\x18\x86\x93\x88\ +\x87\xc0\xb6\x94\x10\x3a\xa1\xb5\x35\x26\x3c\x90\x86\x64\xcc\xcb\ +\x30\x85\xde\x05\x16\xf6\x62\xdb\x57\x0c\x02\x6c\xe6\xc9\x67\x43\ +\x81\x31\x25\x69\x4a\xa1\x9e\x70\x3e\x32\x54\x50\x11\x23\x96\x98\ +\xc5\x0f\x78\x94\x7a\xf0\xad\xc9\x09\x5b\xbe\xc8\x56\x2e\x1a\x9a\ +\x31\x37\x1d\xf2\x01\x91\x4e\x70\x1b\x66\x54\xae\x17\xf3\x95\x2e\ +\xab\x8f\xd6\x04\x0c\x8e\xbb\x9f\xc3\xcb\x18\x46\x3c\x35\xb3\x1a\ +\x42\x06\x40\xa1\xe0\xbe\x97\x7d\x51\x38\x03\xa4\x26\x0e\x44\x8f\ +\xef\x9e\x25\x44\x76\xa0\x58\x54\x7b\xfe\x32\x96\x68\x10\x39\xe2\ +\x69\x1b\xc8\x7a\x01\xad\xb6\x90\xa4\x0a\x84\x06\x05\x74\x6e\x1e\ +\x07\xf3\x25\x34\xe9\x1e\x04\x64\x0f\x63\xee\x65\x8f\xe2\xe1\x1d\ +\x18\xae\x79\x0c\xeb\x43\x1b\x74\xcf\x73\x8e\xbe\x79\x06\x6a\xc5\ +\x19\x62\x43\xe5\xc8\x2a\xc4\x81\xd4\xee\x8a\xfe\xba\x01\xe1\x63\ +\xd4\x92\x90\x1e\x05\xa8\xfb\x92\x80\xf1\x18\x25\x82\x9c\xa6\x46\ +\x50\x4d\x96\xe4\x9e\xb8\xf0\xff\x48\x3b\x3a\xd8\x6f\x97\x2f\x1f\ +\xb4\x93\xfd\xe3\xb6\x77\xee\x7c\x7b\xf9\x03\x2f\x6b\x6f\x7c\xdd\ +\x1b\xda\x6b\x1f\x7e\x55\xbb\xfb\x8e\x3b\xda\xd6\xd6\xae\x7f\x68\ +\x92\x7f\xde\x11\xb5\x59\x5e\x57\x0e\x54\x70\xb1\xa0\x6b\x33\xe9\ +\x9c\x19\x5f\x6f\xe4\x35\x0a\x7d\x94\xec\xd1\x7c\x2c\xc1\x67\x6c\ +\xda\x8c\xe3\xe2\x4b\x10\xf2\xa4\xd9\x5a\xd6\x3c\xc6\x39\xbf\xe8\ +\x9d\x13\xd3\x63\xbd\xc4\xd8\x22\x06\xcd\xc4\x1e\x8b\xe3\xb2\xe6\ +\xa4\x36\xbe\x7c\xfd\x14\x3c\xbf\x66\x31\xfc\xa4\x9d\x31\x46\xf1\ +\x73\xfb\x98\x8a\x8d\x68\x91\x67\x02\xaf\xbf\x22\x02\xf4\x26\x32\ +\xa9\xa2\xc6\xae\xf1\xe5\x8c\xf5\x96\x5e\x63\x8d\x9b\x87\xf5\x0b\ +\xb5\x35\xd6\xb8\x85\xf1\x92\x3a\xf8\x9f\xef\x3a\xf0\xc5\x84\xfa\ +\x5b\xbe\x69\x19\x0f\x07\x8a\xd4\x87\x37\x20\xe4\x6c\xf3\x4e\x54\ +\xd9\xac\x21\x9a\x0f\x39\x22\xa6\x2f\xe6\x86\xc4\xc2\xbc\x99\xbf\ +\xe6\xa4\xae\x97\x54\x51\xdf\x7c\xd4\xa8\xfd\xc6\xf8\xfc\xe2\xaa\ +\xc6\x2e\x8f\x47\x3a\x63\x98\x9d\x36\x62\xba\x0f\x4b\x8e\x8d\x0f\ +\x71\x78\x73\x8e\x0a\xaa\xa3\xd2\xf1\x62\x4c\xb1\x8a\x5b\x60\x61\ +\xba\xf9\xf1\x62\x0d\x0b\x33\xc9\x95\x97\x6a\xfc\x1f\x6b\xfc\x23\ +\x45\x0d\x1c\x9c\xaa\xc3\x87\x43\x5a\x09\xe8\xec\x6f\x0b\x2a\x1f\ +\x6c\xdf\x73\xfb\x85\xd6\xb6\x4e\xda\xa5\xa7\x9f\x6e\xbf\xfe\x1b\ +\x1f\x6c\x9f\xfd\xd5\xdf\x69\x4f\xff\xd6\x23\x6d\xeb\xca\xa5\x76\ +\xfe\x7c\x6b\xe7\xf7\xb6\xdb\x1e\x52\x77\x38\x16\xde\x01\x02\xda\ +\x86\xfd\xe6\xc5\x65\xeb\xcd\x0a\x19\xff\x86\x1a\x64\x06\x74\x0c\ +\x5b\x37\x2d\x1a\x13\x96\xbc\x69\xe9\xbe\x6c\x8c\xbc\xc1\xa9\x9c\ +\xa0\x7e\x80\xbc\xc3\x2d\xa0\x19\x59\x5d\x2e\x23\xbd\x53\x31\x62\ +\x8b\x7f\x05\xd2\xe3\xf8\x11\xdb\x33\xb2\x98\x9f\x34\x90\x01\x1c\ +\x5d\xa2\x4e\x45\xcd\x70\x29\xdf\xe4\x1e\xcb\xc8\x59\xf1\xec\x7b\ +\xca\x71\x13\x88\xb9\xf4\x96\x62\x0e\xf7\x31\xc8\xc9\x76\x20\x61\ +\x2d\xf3\x99\x97\x82\x8a\x1f\xaf\x54\xd8\xe6\xf6\x54\x6a\xb8\x15\ +\x0f\x82\xfb\x54\xbd\xf1\x14\x1d\x9c\x75\x36\xe9\xc0\x32\x41\x10\ +\xf4\x65\x61\x22\x68\x8f\x66\xac\x6b\x8e\x75\x92\x17\x4f\x36\x82\ +\x59\x82\x42\xac\xae\xc4\xdc\xbf\x1c\xef\xfa\x64\xf3\xa5\xd6\x72\ +\x41\x12\x1c\xe9\x0d\x00\x05\x26\x71\x4e\x35\xe8\x93\x1e\x44\xe9\ +\x67\x84\x4d\xb2\x81\xe8\x1b\xb4\x5f\x90\x11\xe0\x40\x68\xd3\x8b\ +\x0f\x1a\x3c\x67\x54\x7c\x67\xfc\xd2\x85\x0a\x1f\x06\xe5\xe3\xa8\ +\x5c\x4f\x3e\xcc\x54\x3e\x9a\x6b\x47\xc7\x6d\x7f\xb1\xdf\x9e\xbc\ +\x7a\xb5\x3d\xf1\xf4\xb5\x76\x79\x63\xaf\x6d\x3e\xf8\xb2\x76\xd7\ +\x57\xbd\xaa\x3d\xfc\xf5\x6f\x68\x77\xdf\x77\x5f\xdb\xde\xda\xe5\ +\x93\x66\x9d\xe7\xd8\x1b\xeb\xf1\xcf\x11\x6d\x6d\xf0\xcf\x3b\xb2\ +\x0f\x30\x7c\xd9\x85\xce\xac\xeb\x11\x10\xca\x87\x0e\xa9\x97\x57\ +\x94\xe8\x33\x17\xfb\x38\x20\xff\xaf\x34\xf3\x99\x03\xbd\xbf\x40\ +\x03\x57\x6d\xf8\x69\xab\x2e\x24\xe3\x7b\x4c\x2c\x08\x1a\x7a\xe4\ +\xa1\x09\x2e\xeb\x81\x8b\x71\x56\xff\x54\xc2\x17\xfd\xa5\x0d\x45\ +\x7a\xce\x71\xf6\xd5\x63\xf8\xa5\x31\x05\x27\x1b\x82\xb2\xc6\x49\ +\x9a\xef\xbe\x19\xc8\xf0\x38\xf5\xb6\xd5\x11\xa3\x38\x7d\x1f\xb0\ +\x37\xe4\x0d\x20\xc3\x13\x37\x98\x76\xcb\x63\x3e\xc5\x75\xea\x89\ +\x89\xaf\x90\x2f\x78\x7e\x91\x9b\xe9\x81\x61\xda\xa7\x33\x0d\x3f\ +\xd9\x8f\xce\x2f\x5e\xe4\x95\xdb\xd7\x07\x8c\xed\xd7\x3f\xd2\xc3\ +\xa6\x93\xd7\x1a\x91\xa7\x45\x39\x94\x2b\x62\x49\x49\x23\x67\x5d\ +\xd7\x4d\x72\x78\x21\xcf\x1c\xe9\xe4\xa2\x16\xaf\x1d\xfa\x18\xe4\ +\x67\x4d\x86\x29\x2a\x62\x62\x2c\xc9\x6b\xa9\x71\x63\x6c\x10\xf6\ +\x65\x9c\x38\xfb\xfd\x12\x90\x92\x7e\x5e\x5b\xc1\x87\x71\xf2\xbf\ +\xd4\xfa\xda\x8b\x35\xe3\x0b\xd7\x61\x84\x7a\x41\x5c\x1e\x7a\x0b\ +\xf2\xdc\x74\x98\xd7\xdd\xed\x8d\x76\xb8\x38\x68\x4f\x3e\xfb\x5c\ +\xfb\xf8\x27\x7f\xa7\x7d\xf8\x13\x9f\x6e\x1f\xfd\xe4\x67\xdb\x23\ +\x4f\x7e\xb6\x6d\xe2\x74\x78\xf6\xdc\xd9\x76\x11\xcb\x99\x33\xbb\ +\x6d\x17\xd7\x56\xdb\x5b\xfc\xf3\xb4\x1a\x35\x4a\x8c\xe3\x99\xba\ +\x01\xc9\xee\xa4\x71\x14\x62\x20\xcd\x13\x3e\xc2\x6d\x70\x75\xba\ +\x03\x48\x93\x72\x44\x01\xd5\x81\x86\x22\x29\x2e\xd2\x7b\xcb\xd1\ +\x98\x24\xc3\x3a\xe1\x0a\x0c\x63\x99\xf6\xa8\x95\x03\x70\x7c\x5d\ +\x0f\xa9\x71\x79\xe0\x40\xf5\xaa\x57\xec\xae\xc3\xe7\x5a\x6e\x9d\ +\x17\xf9\xf2\x1b\xce\x34\xb4\x66\xfe\x78\x6e\x7b\x2d\x03\x67\x61\ +\xf9\xb8\x4d\xf3\x7b\x5d\x88\x81\x69\x0a\x30\x8b\xa0\xba\x14\x93\ +\x64\x9f\xbd\x65\xb0\x2f\x38\x5c\x09\x6d\xec\x07\xa7\x95\x4f\x2a\ +\x6b\xf5\xbc\x8e\xf0\xf4\x7d\x68\xe4\xcd\x4a\x4e\x21\xc7\xc8\x31\ +\xa6\x19\xb9\x06\xbc\xc6\xf4\xcc\xa7\xaf\xc6\x85\xae\x0f\x74\x99\ +\xe9\x1b\x20\xe3\x3a\x2b\x20\x67\x28\x2b\x02\x62\xab\x43\x89\xbe\ +\x84\xd8\x1f\x3a\x37\x4b\x54\xbd\x80\x5c\x85\xf0\x45\xb3\x75\x20\ +\x2b\x88\xe1\x35\xcf\xa6\xcf\x1b\x3d\x0e\x22\x37\x93\x51\xf2\xa1\ +\x52\xe3\x18\xb5\xda\xda\xdf\xa8\xfb\xdc\xaa\xfd\x56\x2a\x0c\x9c\ +\x5b\x16\xfc\x0d\xb3\x05\x5f\xa4\x1d\xb6\x6b\xd7\xf6\xdb\xe1\xfe\ +\xa2\x9d\x39\x7b\xb1\xdd\x7f\xcf\xcb\xdb\x6b\x5f\xf5\xaa\xf6\xea\ +\x57\xbc\xa2\xdd\x77\xcf\xbd\xed\xcc\x36\xae\x98\x8e\x37\x3d\x0e\ +\xd4\xe4\xcb\x31\x5f\x47\x50\xa2\x1f\x8d\x13\x3a\xf7\x66\x70\x79\ +\x6d\xa2\x2f\x5e\x44\xe0\x5a\x46\x7f\x12\x12\x36\x73\xcc\x7b\xa1\ +\xcd\x3c\xf1\xe1\x93\x4e\x59\x74\x5a\x32\xf9\x05\x4e\x5a\xe4\x38\ +\x86\x8c\xeb\xe4\x75\x19\x49\x7a\xe6\xf1\x1a\x9f\x9c\x95\x23\x53\ +\xed\x5c\x97\x69\xae\x2b\xea\xc2\xa8\xc7\x98\x2b\xfe\x49\xac\x02\ +\x43\xc3\x22\x5d\xa4\x5a\xcd\x9d\x35\x41\x9b\x99\x52\xec\xaa\xff\ +\xa1\x46\x59\x51\xb9\x48\x5e\xe3\x96\xc0\x7a\x6b\xaf\xb1\xc6\xcd\ +\x03\xae\xf3\x66\x57\x67\x6b\xac\xb1\xc6\x2d\x83\x97\xdc\xc1\xff\ +\xc5\x1a\x30\xae\x3c\x78\x53\xbc\xd4\x7d\x72\xd9\x74\xbb\xe8\x7a\ +\xa8\x41\x8d\x9c\x7d\xbe\xc1\xb1\xcc\x07\x27\x7c\x61\x34\xf8\x78\ +\x98\xc2\x07\x38\xc1\xe5\x8b\xa5\x9a\x0b\xa5\xd7\x9f\xf0\x92\xa3\ +\x9e\x62\x38\x16\xf6\x46\x9f\x5e\x4e\x25\x9f\xf1\x5e\xa4\xc3\xcf\ +\xae\x75\x03\x05\x3b\x7f\x72\x9b\xbe\x7c\x80\x93\x0f\x6b\xa4\xe7\ +\xd8\x14\xcf\x50\xc4\xf1\x3f\x4d\xc3\xd0\x6f\x9d\x65\x2e\xfb\x55\ +\x6d\xc4\x49\x9a\x5f\xb0\x33\xda\x0b\xfe\x19\x48\xc6\x64\xde\xc2\ +\xfd\xf0\xcf\x83\x28\x06\x0b\xe7\x0b\x1f\x35\xb8\x99\xdb\x06\x75\ +\x6e\x67\xaf\x5d\xbc\xb0\xd3\x36\xf5\x62\xed\xd9\xf6\xdb\x1f\xff\ +\x8d\xf6\xf1\x5f\x7b\xa4\x3d\xfb\x89\xcf\xb6\x33\xfb\xd7\xda\xde\ +\xce\xa2\x9d\xdf\x69\xed\x2c\x52\xf8\xc7\xda\xf8\xa7\x20\xb9\xda\ +\xe3\x4f\xd4\xe0\x2b\x24\xc1\x5e\x86\x1c\x97\x9d\xb2\xe3\x8e\xa5\ +\xeb\x19\x4c\x9a\xf5\x6c\x0d\x1e\xd0\x3c\x32\x00\x1c\x69\x85\xca\ +\x43\x90\x74\x4d\x63\xea\x25\xe6\x39\x8a\x46\xc3\xb9\xb6\x61\xb8\ +\x9f\xa4\xdc\x3a\xc7\x6d\xe5\x05\xa9\xf0\xd9\x1d\x08\x7f\x86\x45\ +\xc1\x6a\x26\xc8\xa5\x6d\x7f\x32\x19\xbd\x0c\x8d\x30\xc2\x38\xe7\ +\xf9\x67\x8a\x68\x68\xff\x33\xa9\x18\x87\x45\x30\x3e\x56\xc3\x46\ +\x9c\x8e\x49\xc6\x87\x3f\x43\x84\x1a\x3b\x47\xa6\x60\x99\xc4\x57\ +\x44\x3d\xde\x90\x4e\x36\x0f\xb0\xb2\x6a\x10\x5e\x1b\x1b\x4a\x2b\ +\xb9\x62\xd1\x68\xc8\xa1\x0b\xb3\xfa\xa7\xc3\x3d\xbb\x4d\x8b\xc8\ +\x42\x44\xb0\x9a\x47\x33\x53\x3f\x90\x73\xf6\x3c\x98\x46\x4c\x73\ +\x72\x1d\x45\x27\xb4\x43\x42\x88\x5b\xe1\x07\xf8\x30\xa7\xe7\x2e\ +\x81\x3c\x97\x91\x64\xad\x70\xa5\x9e\xd4\x4a\x63\xbd\xf8\x80\x86\ +\xdb\x8c\xff\xcb\x8c\xe3\xd8\xe2\x98\xf0\xe1\x29\x83\xff\x23\xed\ +\xea\xe1\x41\x7b\xf6\x60\xbf\x3d\xf6\xdc\x7e\xbb\xbc\xb9\xdb\x76\ +\x1f\x7a\x45\xbb\xfd\x0d\x0f\xb4\x7b\xbf\xf2\xe1\x76\xff\x03\x2f\ +\x6f\xe7\x37\x77\xda\xc9\xe6\x76\x5b\x30\x79\x83\xbf\x45\xe6\x9f\ +\x9c\xd6\x9f\x77\xdc\xb2\x4e\x9e\x0f\x3c\xf8\xbf\xd3\xfa\x9f\x64\ +\x84\xec\x0f\x89\xf4\x32\x0b\x0b\x1f\x12\x89\xb3\xce\x2f\x0e\xd0\ +\xff\x2f\x04\x95\xc8\x31\x57\xf5\x22\x46\x36\xe3\xc8\xa5\x0f\xb2\ +\xdb\xd4\xa3\x26\xe3\x4a\x8c\xf4\xe2\x9b\xfb\x47\x0c\x67\x28\x7d\ +\x8e\x17\xa5\xf1\x21\x96\x5f\xaa\x63\x9f\x62\x6a\x3c\xc7\xc9\x2f\ +\xf9\x83\x2f\x39\xbd\x9f\x2e\xa3\x76\xe1\x8c\xb0\x97\x80\x63\xa8\ +\xd3\xfe\x9f\x41\xb2\xb5\x7f\x49\x09\x79\x03\xc8\xf0\xc4\x0d\xa6\ +\xdd\x72\xa8\x53\x3a\x9f\xde\x9c\xbf\x55\x73\x27\xdf\x2c\x60\x9e\ +\x3b\xb1\x41\xc8\x4e\xb2\x04\xc4\xf9\x83\x90\x96\xe7\x13\x5a\xfc\ +\x54\x9b\x2d\xec\xee\xd3\x75\x14\x3e\x79\xad\x41\x03\x8b\x62\xe2\ +\xfa\x84\x67\x01\x65\x50\x57\x8c\x63\x19\xa7\xeb\x1a\xe6\x88\xb7\ +\xec\x3c\x4e\x5a\xfc\x3f\x35\xf4\x98\xa7\xc7\x31\x63\x0c\x6a\x43\ +\xe2\x4b\x94\xe3\xed\xc9\x98\xb0\xa8\x73\x5c\x99\x93\xbe\xcc\x09\ +\x9b\xd0\xf5\x12\x63\x79\x2d\x44\x4e\x79\xe4\x5c\x93\xd7\x4a\xaa\ +\x24\xe9\x38\x71\xbc\x6e\xd2\x17\x75\xc6\x87\xcd\xd0\xb6\xd0\xac\ +\xab\x06\xd6\xcf\x2f\xe4\x8e\xa0\xe3\x98\x84\x97\xe7\x83\xc5\xd1\ +\x61\x7b\xfa\xea\xa5\xf6\xf1\xcf\x7e\xba\x7d\xe4\xe3\x9f\x6a\x9f\ +\x7a\xfc\xd9\xf6\xe4\x13\xcf\xb6\xc3\x76\xad\x6d\xef\x6e\xb4\x8b\ +\xe7\x76\xf5\x62\x6d\x6f\x6f\xaf\x6d\xef\xf8\x5c\x99\x5b\xd5\x87\ +\x35\x6b\x41\x41\x17\x73\x70\x1c\x1d\xf9\x27\x04\xc9\x05\x6d\xbf\ +\xab\x99\xcf\xca\xd3\x38\x59\x0a\x2d\x5c\x55\x7b\x5e\x32\x40\x51\ +\xe9\xb5\x59\x92\x84\xd2\xb7\x15\xa1\x56\x93\x8e\xce\xed\x3a\xa5\ +\x1f\x75\xa0\xc6\xa6\xdc\xd0\x15\x8e\x06\xb6\xbd\x04\xd7\x85\xe7\ +\x44\x13\xe6\x12\xb6\x94\x06\x95\xbf\x6d\xad\xd9\x66\x1c\x44\x5d\ +\x7d\x17\x8c\xfe\xb4\x70\xdf\x1d\x30\x1f\x5e\x6d\x7f\x46\x25\x3f\ +\x55\xbc\x37\x38\x1e\xdf\xcd\xb4\x2f\xe6\x29\x7b\xac\x79\xaf\xb6\ +\x1a\x2b\x1c\xa6\x72\x5c\xee\x87\xf5\x28\xfb\x00\x14\x04\x5d\xe6\ +\x28\x32\xb4\x44\xe4\x20\x46\xf3\x50\x02\x86\xca\x22\x09\xb0\x91\ +\x12\x96\xe7\xb0\x44\xa7\x73\x30\x0a\x58\x06\xe9\xe8\x93\x6e\x66\ +\x4d\x67\x63\x96\x24\x33\x3a\x4e\x88\x2b\x71\x5a\x01\xc4\x04\xb5\ +\xb4\x6d\x75\x1f\x44\xc0\xa0\xb3\xe6\x22\x52\xde\xd1\x4c\x90\x3f\ +\x24\x96\xa8\x11\x62\x59\x52\xec\x96\x75\xd6\xe7\x0e\x80\x3c\xfe\ +\x99\x46\x5c\x18\xb5\xc5\xe2\xb8\x1d\xe1\xdc\x70\x7c\x78\xd4\x16\ +\x5c\x70\xda\xd8\x3b\x77\xae\xdd\x73\xe7\x7d\xed\x2b\x5e\xf5\xca\ +\xf6\xd0\x03\xaf\x68\xf7\xdd\x71\x77\x3b\x77\x76\x17\xfd\xa1\x1a\ +\xce\x45\x9c\x5b\x5e\x0b\xf9\x65\x95\x7f\x98\x88\xe3\x90\x54\xb7\ +\xd4\xb1\x47\xe3\x1c\x92\xd7\x4c\xdc\xbf\x79\x7d\xc0\x78\x5d\x1b\ +\x85\xad\x68\xc5\x90\x41\x94\x62\x8a\x0f\x5f\xf4\xf1\x72\x84\xb6\ +\xdb\xe4\x1c\x43\x5d\x5f\xb4\x67\xba\x8e\x2b\x7d\x58\x9b\x14\x9a\ +\xf0\xd7\x6b\x29\x7d\x39\x60\x70\x9d\x1f\x71\x35\x97\x60\x5d\xb5\ +\xf4\x45\x7c\x97\x6c\x0b\x67\xdb\x59\xc9\xc9\x8c\x56\x3c\x37\x57\ +\x9a\x00\x4d\x1e\x49\x6c\x79\xbd\x5a\x8f\x87\x15\x5b\x7c\x8d\x5b\ +\x14\xeb\xad\xbf\xc6\x1a\x37\x0f\xeb\x17\x6a\x6b\xac\x71\x0b\xe3\ +\x25\x77\xf0\x7f\x11\x07\xec\xdb\x3d\x80\x4d\x5e\x89\xc4\x78\x7c\ +\x1a\xc5\x12\x01\x69\x5b\x40\xea\x06\x68\xe6\x27\xaf\x25\x1e\xd2\ +\x30\x46\x0f\x35\x52\x22\x54\x2f\x95\xa8\xb0\x46\xc4\x61\x49\x4e\ +\xba\x1e\x94\x04\xd7\xa5\xf3\x61\xa9\x06\x6b\x43\xb3\x1f\x5f\xfe\ +\x0d\xb5\xe8\x23\xfa\x57\x0d\xc5\x53\x8f\xfc\xe0\x69\x58\x8f\xf1\ +\x4c\xfa\x24\x67\x5e\x0b\xbf\xe0\xd7\x03\x1c\x8d\x1f\x4b\xac\x87\ +\xe3\x17\xb8\x31\x23\x37\xfc\xf9\x12\x8d\x37\x6a\xf9\xd2\x4d\x3f\ +\x35\xad\x18\xbf\x4c\x33\xbf\x08\xc9\x87\x09\xac\x85\xf1\xc3\xde\ +\xc4\xc2\xdf\x1a\xd9\xdb\xdd\x69\x17\xce\x6d\xb5\x43\xd4\x7b\xec\ +\x99\xe7\xda\x53\x9f\x7c\xa4\x3d\xf9\xf1\xdf\x6a\x97\x3f\xf9\x44\ +\x3b\x79\x72\xbf\x9d\xd9\x3b\x69\x67\xb7\xf6\xdb\x0e\xee\xb4\xf4\ +\x1b\x6b\xec\x17\x1b\x93\x37\x50\x79\xab\xc3\x4d\x7b\xec\x3b\x98\ +\x0e\x76\xa3\x3d\x80\x74\xb9\x3b\x19\x0f\x6b\x08\x8e\x27\x6d\xdf\ +\x92\x0a\x50\x94\x66\xcb\x08\x03\x23\xb0\x22\x20\x6a\x12\x64\xb8\ +\x4f\xeb\x1a\x56\x89\x91\x1a\x1c\x7d\xb4\x47\xcf\xb3\xe0\x39\xd2\ +\x4d\x49\x9c\xa6\x43\xb1\x9a\xe4\xc4\x79\x0a\x32\x6e\x05\x34\xd0\ +\xa8\x31\xb9\x13\x84\x2e\x33\xfc\x7d\x1b\x70\x3b\x59\x1b\xeb\x58\ +\xd7\x12\x1a\xb7\x65\xd4\xe1\xcd\xa8\xd3\x33\x2f\x1e\xd6\xc0\xad\ +\x08\x86\x4b\xb2\x85\xa7\xf4\x33\x64\xd6\x28\x3e\x7f\x34\x86\x01\ +\x1a\x63\x7c\x84\x66\x6b\x83\xbf\xb5\xe9\x3e\x5d\x88\x51\x39\x8f\ +\x81\x9e\xe3\x1a\xc3\x99\x0e\x12\xe1\x9b\x21\x59\xad\x7b\x41\xcd\ +\xf4\x6f\x56\x56\x3f\x6c\xce\xb7\x13\x5f\x10\xa6\xbd\x24\xc0\xaa\ +\x0b\xf5\x16\x4b\x80\x73\x1f\xea\x40\x30\x12\x6c\x38\x1e\xea\x04\ +\x8f\x43\x20\x6a\x65\x45\xae\x42\xee\x22\x91\x2d\xdf\x64\x7b\xc2\ +\x23\x9f\x6c\x3e\x8c\xc1\xb9\x01\xeb\xcd\x63\x9a\x1e\x3e\x00\xbc\ +\x76\x74\xd4\xae\x1c\x9d\xb4\x2b\x87\x87\xed\xc9\xab\xc7\xed\x1a\ +\x7f\xfb\xec\x65\xf7\xb4\xdb\x5f\xff\x50\x7b\xf0\x4d\xaf\x69\xb7\ +\xdf\x71\x47\xdb\xdb\xd9\x6d\x27\x9b\xbb\x6d\xf3\x08\xdb\x8e\x0f\ +\x86\x37\xf8\x53\xd1\xfe\xc9\x68\xfe\x56\x9a\x5f\x92\xa1\x67\x3e\ +\xd8\x01\x2f\x5b\x0f\x7f\x2c\xc9\x77\x1d\x71\x19\x0f\x22\x7c\xd4\ +\x47\xae\x74\x7e\x45\x5c\xaf\x5b\x72\xf4\x00\x26\xfd\xc1\x3b\x35\ +\xf2\x33\x96\x3a\xe2\xbb\x2e\xde\xf9\x43\x0f\xbe\x8f\x0b\x0b\xfb\ +\xcf\x5a\xca\x2f\x71\x92\xa3\x1f\x2e\x9a\x55\xc5\xf1\x13\x71\xb4\ +\x43\x97\x2f\xf9\xc8\x99\x48\x6d\x27\xeb\x52\xc9\x48\xe7\x92\x5b\ +\xd8\xf0\x8b\x72\x69\x9a\x13\x79\xb5\x3f\x67\x6c\xfa\x5f\x20\xe6\ +\x69\x9f\x47\xa9\x5b\x06\xb9\x69\x56\xcd\x9d\x50\x02\x18\x73\x5a\ +\x7c\xc7\x8a\x49\xaf\xe7\xaa\xa8\xa1\x23\xdb\x1f\x11\xfa\x76\x2d\ +\x96\x0c\xda\xc8\xb1\x4c\xdb\x12\x57\x16\x74\x60\xe1\xf5\x05\xf9\ +\xb8\xd6\x00\xef\x1f\x8e\x72\x9c\x22\x29\x15\xe3\x9c\xe1\xb3\x34\ +\x58\x07\x03\x43\x0d\xfb\x38\xcc\x11\xe7\x3c\x0a\xb5\x5a\x70\x99\ +\x32\xe2\x83\x77\x6c\x68\xf2\x59\xa7\xd2\x65\x1f\xb3\x39\xc5\x90\ +\xc7\x75\x8e\xea\x50\xd7\x17\xaf\x8d\x68\x46\xbc\xa4\x63\xfc\x42\ +\x2d\x6d\xff\xa0\x52\x8e\xc3\xf1\xb0\xd9\x43\xbc\x64\x83\x82\x96\ +\x1c\xc7\xed\x1c\xfa\xb7\xb7\x8f\xdb\xd1\x62\xd1\x9e\xbd\x74\xa5\ +\x7d\xfa\x89\x27\xda\xc7\x3e\xf5\xd9\xf6\x89\x47\x9e\x68\x8f\x3e\ +\xf9\x44\x3b\xc2\x79\x75\x7b\x67\xa3\xed\xed\x6d\xfb\xc5\xda\x99\ +\xed\xb6\xbb\xbd\xd3\x76\xf8\xbf\xd6\x72\x1b\x62\xa1\x1e\x47\xbf\ +\x37\x2d\x79\x59\x53\x90\xd3\x91\x7e\xa2\xab\x3b\x31\x3d\xae\x24\ +\x48\x65\x58\x92\x2c\x18\x48\x5f\x85\xe3\x50\x39\x78\x8d\xa4\xe7\ +\x78\x5c\x93\x24\xa8\xc3\x9b\xbd\x64\x1c\x40\x02\xe6\xea\x1f\xb2\ +\x0b\xa9\x15\xb5\x4a\x28\x05\xcd\xa0\xc4\x0c\x75\x82\xe1\xb3\x0b\ +\x6d\xc4\x4c\x3c\x91\xee\xef\x9b\x5c\xc6\xf7\xce\x1a\x99\xbe\x29\ +\x17\x7a\xae\x03\x36\x52\x7a\x0c\xf2\x8e\x91\xa7\xa4\xd6\x19\x71\ +\x8f\xd4\xa7\x73\xe1\xef\xdb\xcb\x15\xd5\x4f\xa9\x75\x3d\x64\xe5\ +\xda\xb9\x2c\xa9\x53\x6e\x19\x8a\xac\x59\x96\xab\x83\x41\x7b\x0d\ +\xe4\x56\xf8\x88\x3f\x25\xc5\xe8\x4e\xcf\xdf\x18\x55\xcc\xc7\x52\ +\x72\x25\x32\x1a\x0b\x45\xdf\x27\x03\x61\xca\x65\x35\x50\x2c\xcc\ +\xa7\x2c\x36\x0c\xc4\x49\x47\x6b\x12\x25\x33\x54\x73\x06\x5d\x1c\ +\xd5\xf4\xcf\x11\x3c\xd7\x46\xf7\x69\xcc\x87\x64\xee\xe2\x08\xf7\ +\x6e\x47\x87\xed\xe8\xf0\xa8\x1d\xec\x1f\xea\x7c\x74\xe1\xec\xf9\ +\x76\xf7\x1d\xf7\xb5\x57\xbd\xfa\x95\xed\x15\x0f\x3c\xd4\xee\xbd\ +\xf3\xee\xb6\x8b\x6b\x29\x5e\x37\xf1\xbe\x8d\xdb\xda\xd7\x4a\xbe\ +\x06\x82\x86\x21\xdb\xa6\xc5\x6b\x26\x76\xc8\x6b\x2d\x5f\xaf\x8c\ +\xeb\x23\xc6\x22\x50\x79\x79\x4d\xa6\x59\xe6\x00\x5d\x09\x5c\x2c\ +\xc1\x9b\x63\xac\x75\x29\xe2\xe4\x91\x24\x47\x36\x79\xdb\xa9\xbb\ +\x32\xfb\x75\x0e\xdd\x18\x4f\xf8\x27\x4b\x70\x68\x0a\x3f\x1b\x17\ +\x16\xe7\x66\xbd\x88\x8f\x18\xf9\xc8\x55\x7b\x16\xe7\x8f\x7d\x9d\ +\x13\xa0\xc5\xf6\x4d\xf8\xd8\xe0\xe6\xa2\x72\xe2\xed\x10\x8c\xf2\ +\xc3\x1a\xc8\x5a\x6b\xdc\x6a\x58\x6f\xf9\x35\xd6\xb8\x79\x58\xbf\ +\x50\x5b\x63\x8d\x5b\x18\x2f\xb9\x83\xff\x46\x06\xbc\xea\x9a\xf1\ +\xf3\x45\xaf\x39\x2b\x1c\xa6\x6e\x9d\x78\x2a\x8d\xd3\x69\x9e\x56\ +\x93\xe7\x8d\x45\xfa\x64\x53\x97\xf4\x8d\x8a\x65\xf2\x43\xe7\x0d\ +\x0b\x75\x2d\xba\xb9\x89\x3c\x7e\x49\x67\x3d\xf3\xbd\x0f\x7c\x8e\ +\xf9\x32\x4a\xaa\xb9\x51\xc7\x5c\x8d\x77\x9d\xa8\x11\xf1\x7a\x38\ +\x03\x3f\xc7\x45\x95\x8d\xfc\x5a\xc0\xc9\x97\xf9\x8c\x89\x31\x93\ +\x8f\xfa\xfe\x89\x68\xc6\xda\xef\x9c\x94\x7c\x31\x06\x09\x9f\x1e\ +\xde\x30\x86\x3a\x16\xde\xc4\x69\x5d\xd3\xcf\x85\x0f\x77\xc8\xf1\ +\xcf\x42\xf6\x3f\x03\xc9\x3f\x0d\x89\x18\x8e\x19\xbe\x0d\xfe\xf4\ +\x24\xe4\x16\xec\xdd\x9d\x9d\x76\x66\x77\xab\x6d\x23\xf4\xd2\x33\ +\x57\xdb\x93\x4f\x7e\xba\x7d\xfa\x93\x9f\x6a\xcf\x7e\xfa\x52\x3b\ +\x7e\xe6\x52\x3b\x73\xbc\xdf\xf6\x36\x8f\xda\x79\xdc\x3a\x6d\x23\ +\x9e\xff\x0f\x09\x05\xb1\x99\x7d\x89\x39\x1e\xe6\x02\xfd\x86\x84\ +\x28\x37\xaf\xa9\x27\xba\x31\x72\x39\x45\x06\x2a\xeb\x69\x0a\x73\ +\x4a\x16\xa9\x50\x8d\xd2\x2f\xc0\x7c\x0d\xcd\xa6\x50\x87\x26\xbf\ +\xec\x69\x95\x53\x91\xb9\x0c\x9f\xeb\xbd\xd6\x1c\x73\xb2\x26\x0f\ +\x30\x77\xac\xef\x14\xbc\x41\x94\xab\x37\x08\x66\x89\xa2\x12\x99\ +\xaf\x9b\xfd\xd0\x57\x74\x35\x1d\x01\x92\x64\x6b\x00\xce\xa5\xec\ +\xeb\x12\x93\xc4\x7d\xd2\xdb\x17\xf1\xbd\x80\xed\x71\x83\x1a\x50\ +\x4d\x6e\xb3\x61\x33\x24\x4a\x15\x98\xcc\x9b\xd8\x74\x51\xb2\x0b\ +\xb6\xb1\xd9\x81\xf4\x06\x62\x0c\x33\x16\x34\x7b\x26\x3c\x67\x73\ +\x7f\x87\x0a\x87\xbe\x02\x59\xa5\x77\xd4\x5b\x8f\x97\xba\x3c\x2c\ +\x93\xa1\xc4\x08\xef\x58\xee\x26\x19\xcf\xab\xd5\x94\x6c\xb8\x16\ +\x12\xd1\x01\x0d\xc2\x7c\x6e\x87\x61\x17\xa0\x9e\xf7\x17\xaf\x01\ +\x63\x73\xbc\x44\x8f\x45\x22\xb7\x85\xcb\x47\x1d\x18\xdb\x38\xa6\ +\xf9\x27\x2d\x8f\x17\x27\xed\xda\xe2\xa8\x3d\xc7\xe5\xf2\x41\x7b\ +\xee\x60\xab\xed\x9f\x3b\xd7\x76\xee\xbb\xb3\x5d\x78\xed\x43\xed\ +\xde\xaf\x78\xb0\xdd\x71\xef\x9d\xed\xfc\xee\x99\xc6\xff\x8b\xc6\ +\x4e\x78\x4e\xda\xd8\xda\xd2\xc3\x1d\x3e\x16\xd1\xff\x4a\xdb\xe4\ +\x03\x1e\x3e\x20\x8e\x07\x22\x7a\x38\xe4\x87\x3e\x7a\xf0\x43\xc9\ +\x78\x3e\x20\x62\x8c\xec\x88\x93\x4d\x9e\x03\xdd\x18\x31\x51\x8b\ +\x6b\x33\xe2\xf8\x6e\xca\x3a\x94\x11\x23\xbf\x6b\xb8\x56\xf0\x8c\ +\x4b\x8e\xb3\xb2\x22\x87\xf5\x35\x16\x2c\x27\xa5\x0e\x9a\x90\x59\ +\x2b\x73\x99\x52\xb9\x69\xec\xd0\xa9\x86\x2e\x83\x3e\x76\x3b\xfa\ +\xb5\xa0\x6f\x56\x87\x90\x2c\x76\x82\x26\x37\x24\x14\xef\x93\x32\ +\xb4\x0e\xd2\xb4\xaf\x65\x4e\xd5\x5f\x00\x56\xa5\x7c\x8e\xa5\x6e\ +\x79\x78\xa3\x60\xe1\xe4\xc9\x00\xca\xf6\xc9\xed\x3b\x3f\x71\xca\ +\xa6\x32\xe3\x66\x30\x83\x56\x1f\x7c\x65\x0c\x24\x35\xdb\x74\xfa\ +\x55\x50\xea\xe4\xc9\xd0\x66\x88\xae\x3b\xc4\x33\xca\xd7\x2a\x8a\ +\xa7\x93\x4c\xf8\x1d\x3f\x24\xbf\x18\x23\x09\xf8\x25\x17\x28\x5c\ +\x67\x30\x46\x3a\x65\x5c\x87\x88\x61\x7c\xcf\xa1\xce\xd6\x7d\x7a\ +\x0c\x23\xcf\xb6\x47\x9e\x7e\xab\xb8\xde\x09\x9b\x5f\xaa\xc0\x3a\ +\xb4\x79\x1d\x24\x0e\x92\xfd\xc6\xd8\xc7\x0b\x35\x72\xbc\xbe\xe2\ +\xe5\x10\x7d\x0b\xfd\x70\x92\xf2\x14\x67\xc9\x3c\xf2\xb4\x61\x38\ +\x17\xe7\x4d\xd5\x0e\xff\xd1\xf1\x11\xb6\x10\x6c\x6c\x3b\x1c\xda\ +\xed\xf0\xf0\xb0\x3d\x77\xe5\x4a\x7b\xf4\xe9\xa7\xf5\x62\xed\xb1\ +\x67\x9e\x6d\x4f\x3d\x75\xb5\x3d\x77\xed\x4a\x3b\xde\x3a\x6c\x7b\ +\xdb\x1b\x6d\x6b\x67\xb3\x9d\xdb\xdd\x6b\xbb\x7b\x7e\xb1\xb6\x85\ +\xf3\x92\x4f\xe0\x1c\x73\x1c\xcb\x56\x0b\xea\x7e\xe0\x86\x2f\xef\ +\x0d\x8e\xc5\xd2\x71\x1a\x61\xc4\x19\xc1\x88\xeb\x34\x14\x46\x63\ +\x6d\x23\x2b\xd0\x95\x02\x9d\x6c\x66\x0e\x9a\x1a\x16\x94\xa5\x9c\ +\x59\xbc\x06\xa8\xe0\x15\x18\xbe\xb1\xde\xe6\xba\x87\xf3\x2d\xdd\ +\x75\x15\x96\xce\x34\x78\xfc\x94\x89\x63\xac\x22\xcb\x7c\x66\x7e\ +\x82\xbc\x0f\x3b\x36\xdc\xce\x88\x85\x2a\x0a\x3e\xeb\xa8\xc2\x14\ +\x04\x6a\x13\xa5\x93\xad\xf2\x45\x94\x3e\xe8\x8d\x40\x26\xa0\x88\ +\x86\x46\x4e\x31\x8e\x18\xe7\xf6\x48\x74\x61\x59\x8e\x48\x26\x90\ +\x24\xd5\xec\x53\x2d\xe1\xe8\x49\x3c\x90\x35\x34\x17\x18\x8b\x22\ +\x44\x8e\xcc\x44\x96\xb7\x1c\x95\xac\x85\xb7\xe4\xa9\xa6\x22\x33\ +\x36\xe4\x29\xb5\x85\x28\x33\x08\x9b\x84\x29\xd6\x24\x38\x3f\x14\ +\x66\x35\x1e\x8e\x1f\xce\x9c\xe7\x91\xb9\x02\x74\x21\x45\x11\xa1\ +\x6b\xfb\x52\xa5\x70\xd9\xe1\x83\x54\x6c\xf0\x5c\x27\x6f\x33\x20\ +\x9b\x88\xe3\xe2\xf3\x0e\xce\x07\xb8\x86\x92\x8d\x73\x07\x5f\xa6\ +\x9d\x1c\x1d\xb5\xfd\x7d\x9c\x33\xc0\xef\x9d\x39\xdb\xee\xb9\xfb\ +\xce\xf6\x8a\x07\x1f\x6c\xaf\xbc\xff\xc1\x76\xff\xbd\xf7\xb4\xb3\ +\x67\xcf\x61\x1d\xe2\x4f\x3b\xe2\xfc\xa1\x3f\xb3\x8d\xe3\x5f\xd7\ +\x4a\xb8\x46\xe0\xb1\xcf\x05\x67\x01\x8d\x21\xaf\x17\x78\xfd\xc5\ +\xeb\x2c\x72\xbc\x96\x70\x3c\x2d\x7c\xf1\x7a\x24\xe3\x78\x9d\xe1\ +\x28\xd7\x60\x6d\xe5\x90\x31\x9f\xd7\x40\xa2\xc8\xa5\x4f\x1c\x63\ +\x1c\x6f\xb7\xed\x11\x43\xca\x1c\xc7\x91\xfa\x24\xaf\x2e\xe1\x1b\ +\x7c\xf6\x2d\x4f\x97\xbd\x56\xb7\xd9\x8e\xfa\x20\x48\x01\x3e\xe7\ +\xa9\x0e\x79\x7d\x32\x5e\x01\x53\xbd\x68\x02\xa7\x5d\x84\xf7\x5d\ +\x62\xbc\x50\x4b\x4c\x2d\x63\x52\x65\x8d\x5b\x04\xeb\xad\xbe\xc6\ +\x1a\x37\x0f\xeb\x17\x6a\x6b\xac\x71\x0b\xe3\x25\x77\xf0\x7f\xc1\ +\x07\xcc\x0e\x79\xd9\x01\xc9\x2b\x5e\xf5\xbf\x3c\x08\xdf\x40\xe0\ +\x12\x16\x8b\x2e\x52\xa8\x27\x4f\x8d\xf7\xb2\x94\x25\x4e\x3a\x59\ +\x3d\x14\xa1\xed\x07\x1b\x7c\x90\xa1\x50\x3e\x11\x09\x9e\x7e\xf3\ +\x25\x57\xc2\xba\xfd\xc9\x3b\x56\x75\xa3\xcf\x69\x5c\x8c\x2f\xeb\ +\xf1\x49\x0d\x1f\x3b\xa8\x5b\xc7\xf4\x3e\xfb\xd8\x2c\xcd\x39\xcf\ +\x0f\x70\xc8\x31\x16\x5c\xc4\xfa\xa1\x93\xeb\xe5\xcb\x32\x3e\xdd\ +\xf1\x83\x9e\x88\xd7\x6f\x9a\xb9\x16\x6d\x3d\xf8\x51\x0c\x6f\xe2\ +\x42\x17\xe7\x78\x73\xbc\x91\xe3\xff\x05\x71\x5f\x0b\xf0\xfc\x5f\ +\x6b\x8c\x93\x84\xcd\x7e\x36\x70\xb3\xb7\x01\x9d\x7f\xea\x6d\xeb\ +\x78\xa3\x9d\xd9\xe3\x8d\xcb\x66\x7b\xee\xd2\x33\xed\xe9\x67\x9e\ +\x6a\x4f\x7f\xfa\xd1\x76\xf9\xb3\xcf\xb6\xf6\xd4\xe5\xb6\x73\x72\ +\xd4\xce\x6e\x2f\xda\x0e\x46\xbc\x8b\xf4\xf1\x9f\xbb\xb8\xb9\x7d\ +\x23\x12\xf7\xbc\x40\x2a\xe3\x06\x25\xb6\x36\x95\x2a\xc0\x9a\xd7\ +\x54\x04\x7a\x19\xa0\xd3\xc5\x6f\xb5\x46\x19\xe4\xc9\xa6\x5c\x46\ +\x29\x72\x3d\x44\xf2\xca\x71\x00\xab\x6b\x93\xf7\xfa\xfa\x16\x2d\ +\x47\x42\x38\x83\x87\x45\x04\xcc\x5d\x81\x69\x00\x6b\x4c\xdc\x33\ +\x64\x09\x06\xf1\xf6\x12\x9b\x3a\xcd\x28\xe3\x6c\x56\xf2\x13\x88\ +\xca\x73\xc1\x3e\x80\x2f\xec\x31\x72\x73\x3b\xb2\x86\xb2\xd0\x68\ +\x7f\x96\xea\x3a\x5a\x2f\xe6\x96\x8d\xa5\x72\xf2\x0f\xae\x62\xee\ +\xa1\x5e\x1e\xff\x45\xae\x2d\x63\x3e\x87\xb5\xbe\xe3\x47\xbd\x8c\ +\xcc\x76\x0e\xe4\xe5\x7a\x3f\x0f\x6a\x88\x7a\x8b\xd4\x8e\x18\xc2\ +\xca\x52\x0a\x64\x40\xf5\x17\x4d\xea\x2c\x13\xe1\xda\x2e\x13\x1e\ +\x7a\x31\x87\xca\x63\x6d\xcc\x54\x7a\xd2\x4f\x5e\xbe\x08\xa8\x71\ +\xcc\xe2\x6f\x07\x10\x9b\x58\x29\x3e\x4c\x23\xe8\xe1\x76\xe7\x3f\ +\xbd\x7f\xee\x68\xbf\x5d\xb9\x76\xd8\x9e\x3d\xd8\x6a\xed\xc2\x6d\ +\x6d\xf3\x81\x3b\xda\x85\x87\xef\x6f\x77\xbd\xe6\x81\x76\xdb\x1d\ +\x77\xb4\xcd\xed\x33\x58\xf8\x7b\xad\xaa\xa6\x07\x33\x7a\x91\x16\ +\x0f\x3f\xf8\x32\x6d\x73\x8b\xbf\x99\xc6\x3f\x4f\x04\xae\x3c\xfc\ +\xd1\x83\x20\x3e\xf4\x89\x85\xfb\x9e\x5e\x96\x29\x86\x1c\x74\xc9\ +\xc8\xe1\xfe\x15\xb9\xb2\xf9\x45\x9f\xfc\x74\xb1\x41\xbc\xfa\x61\ +\x3c\x6a\x86\x1c\x2f\xd1\x38\x54\x4a\xda\x30\xa2\x5f\xdb\x45\x17\ +\xef\x38\x28\x31\x16\xcc\x8d\xb8\xe0\x33\x56\x7a\xe1\x18\x8b\x2f\ +\xea\xb2\x8b\xcc\x3e\x72\x31\xe7\x31\x51\xd1\x83\xb2\xe0\xa1\xe8\ +\x80\x48\xbd\xd6\xa1\xa4\x9b\x3b\xa3\xfd\x84\x08\xab\x02\xb7\x29\ +\x65\x6c\x6b\xe8\x79\xdc\x4e\x91\xf9\x37\x88\x79\x38\x4b\xbe\xc0\ +\x12\x6b\xcc\x70\xda\x66\xc9\xb9\x95\x3f\x0c\xd9\xd0\xfb\x76\x9f\ +\x61\xb6\x8d\x6d\xa1\xf5\x07\x0d\x8f\xee\xa4\xa8\xa1\x65\x0e\x96\ +\xfc\x92\x9e\xb6\xea\x51\x22\x2f\x38\xd5\x50\x9d\xb4\xf9\xe8\x38\ +\xf3\xcc\x5b\x1f\x7e\xb4\xb2\x79\x4e\xa4\x98\xfb\xd1\x84\xbd\xec\ +\xf3\x17\xd6\xb7\xbc\x24\x53\xbc\x42\x69\x73\x3c\xc1\x58\xc1\xbe\ +\x0f\x0e\xd7\x32\xa3\x8e\xfd\xb4\x75\x7d\xc5\xeb\x1d\x8e\x1a\x2a\ +\x1b\xfd\xc0\x11\xea\x58\x47\x5c\xf7\xa3\xa5\xce\xdf\xfc\xe7\xcb\ +\x33\xf1\xac\x13\x3c\xaf\xa9\x32\x8f\x5f\x88\xa1\xce\x2f\x7d\xf4\ +\xc2\xcd\xf5\x19\xc7\x3f\xcd\xcd\x33\x2c\xff\xdc\xdb\x95\x6b\xfb\ +\xed\x89\x67\x9f\x69\x9f\x79\xf2\xe9\xf6\xc8\x53\x4f\xb5\x27\x9f\ +\xbb\xdc\xae\xee\xef\xb7\x23\x5e\xb3\x21\x66\x0b\xc7\xff\xde\xee\ +\x26\xae\xbf\x76\xda\xee\xee\x8e\x7f\x30\x81\x3f\xb9\xc4\x31\x73\ +\x57\xc0\x3e\x60\x35\x38\x82\xbb\x45\xea\x40\xfe\xf6\x73\xa1\xe4\ +\xb7\x3d\xd8\xae\x85\xc2\x0c\xfd\x86\xb8\x4d\x80\xeb\xc8\x4e\xa3\ +\x96\x1a\xd6\x9e\x61\x24\x04\x4c\x64\x24\xa6\xc2\xe7\x22\x19\x85\ +\xef\x71\xb9\x4e\x86\xe2\xe5\x2d\x49\x3d\x46\x84\x7d\xa1\x27\xf8\ +\xed\xcc\x31\x94\x13\x43\xe0\xdc\x71\x3b\x8a\xf2\x89\xb2\x1f\x52\ +\xdc\x47\x82\x89\x34\x44\x82\xe0\x7c\x18\x96\x2e\x15\x05\x03\xf4\ +\xc4\x68\xa3\x4d\x98\xa1\xf0\x3a\x4d\x61\xaf\x7b\x4b\x58\x73\x35\ +\xeb\x18\x0f\x94\x11\x41\x20\x07\x24\xaf\xbf\x38\x4e\x7a\x6b\x1e\ +\x31\x99\x53\x34\xd3\x5e\x0c\xda\xe4\x89\xe1\x03\x93\x86\xd6\x1d\ +\x8b\xec\x8c\x34\xb2\xc7\x1e\x3f\x29\x94\xbe\x65\x78\x5c\xd3\x59\ +\xb2\x81\x02\x65\x45\x59\x8e\xaa\xa4\x5c\x31\x23\xdc\x60\xba\x30\ +\x0d\xaf\x3e\x8c\x4a\x0c\xbe\xd6\x12\x52\x91\xe4\xf5\xee\x08\xab\ +\xdb\xa7\xc7\x07\xc1\xae\xfa\xf6\xd0\x38\x36\x71\xae\xe0\x37\xea\ +\x23\x1f\x22\x3c\x2f\xe0\xfe\x89\xe7\x02\xfe\xb0\x22\xef\xd1\x7c\ +\xfe\x38\x6c\x8b\x43\x9e\x3f\x5a\x3b\x73\xe6\x42\xbb\xfb\xf6\x7b\ +\xda\x2b\x1e\x7a\x79\x7b\xe0\xde\xfb\xdb\xdd\xf7\xde\xd9\x2e\xee\ +\x9d\xc5\xf1\xbd\xad\x0e\xd9\xbf\x7a\xe1\x38\x78\xcc\xa3\x33\x5e\ +\x3b\xe8\xda\x86\x3d\xea\x9a\xc7\xd7\x1c\x94\x7c\xe1\x93\xd7\x54\ +\xfc\xe2\x20\x9d\x67\x7f\xc6\xa5\x44\x80\xbf\x64\x7b\x49\x0e\x86\ +\xfa\xa3\x94\xcd\xb6\xc6\x24\x2f\x39\xe2\x4e\x8d\x29\xfe\xb4\xb9\ +\x16\xdd\x97\x0b\x59\xc8\x09\x1f\x79\x1a\x7b\xe8\x68\xa4\x5b\x32\ +\x47\xd5\x7a\xbf\x96\xb4\x9d\xe3\x0f\x1b\xb6\xf6\xfb\x43\x9d\x80\ +\x2c\xdb\x9b\xc8\xc3\x9c\x9b\x81\xaa\xeb\x6a\xa3\xac\xc0\xdc\x57\ +\x2b\xad\xf1\xe5\x8e\xf5\xd6\x5e\x63\x8d\x9b\x87\xf5\x0b\xb5\x35\ +\xd6\xb8\x85\xf1\x92\x3b\xf8\x6f\x64\xc0\xd7\xbb\x7e\xfc\x7c\xa1\ +\xda\x2b\x8a\x83\xd3\xa9\x54\xae\xb8\x2d\x92\x1d\x7c\xd8\x8e\x99\ +\xc5\xe2\x26\x46\x2f\xb5\x14\x47\x9d\x34\x24\x15\x3e\x9c\x88\x1c\ +\x39\xb0\xe8\x81\x0a\x43\x21\x5d\x1b\x52\x71\xf4\x9b\x97\x0f\x77\ +\x3f\x68\x15\x43\x5a\x35\x4b\x3d\x0b\x34\xec\x5b\xfd\x2a\xba\xf8\ +\x39\x06\xa6\xb1\x6e\xe5\xed\xf3\x83\x1d\xe8\x99\x4b\x9e\x7d\xc6\ +\x38\x32\x46\x5c\xf0\x8e\x61\x2c\x7d\xe6\x79\xc3\x96\x31\xa9\xfb\ +\x61\x4f\xe1\xf9\x40\x87\x37\x7a\x0b\xfe\x16\x1a\x7f\xda\x9a\x37\ +\x7a\xf1\x80\x8a\x31\x7c\x60\x24\x9f\xe7\x8c\x0f\xaf\xf4\x93\x9a\ +\x94\xe0\x71\xbb\xd6\xf6\x76\xb6\xdb\x36\x6e\x1c\x9f\xbd\x7a\xad\ +\x5d\x79\xea\xe9\xf6\x34\x96\x2b\x8f\x3d\xdb\x8e\x9f\x79\xb6\x6d\ +\xed\x1f\xb4\x5d\xdc\x01\xee\x61\xe0\xfc\x53\x90\xfc\x3f\x6b\xbc\ +\x0f\x41\xa5\xbe\xf8\xbe\xc4\x37\x36\xc7\xf5\x4a\x94\xdd\x0d\x15\ +\xf0\xed\x8e\x7e\xc2\x1a\xb5\x0c\x27\xf8\xd1\xc0\x88\xef\x00\x21\ +\xce\x89\x52\x28\x66\xdd\x74\xf7\xf0\x2a\xb8\x43\x6c\x24\xa5\x47\ +\x66\x86\x87\xa8\x59\x41\xaf\xc4\xd4\x17\x0f\x10\xd0\x81\xf6\x05\ +\x32\xd9\xd9\xa9\xc8\xde\x56\xc7\x4d\x3c\xba\x13\x04\x43\x81\xba\ +\x7c\x61\x82\x2d\x0b\x33\x22\x14\x1c\x31\xe4\xb8\xed\x21\xe4\x85\ +\xe2\x97\x2a\x98\x75\xe8\xdc\x3e\xbc\xf5\xe6\xc3\x26\x3d\xc0\xe8\ +\x29\xae\xc7\xf5\x20\x94\x0b\x30\x5e\x31\xe1\xe3\xed\x6c\xc6\x24\ +\x72\xab\x8e\xcc\xf0\x43\x70\x58\xb4\x98\xb5\x04\x85\x66\x3c\x65\ +\xaa\x19\xeb\x11\xa5\xce\xf1\x72\xdc\x93\x5a\xcc\xf7\x87\x46\xf5\ +\x08\x8e\x65\x5b\xfb\x99\x45\x2d\x51\x41\x44\x7f\xdd\x49\x95\xe0\ +\xdc\x59\x51\xeb\xb9\x07\x38\xef\x21\x7b\x6c\x82\xeb\x44\x7e\x9a\ +\x29\x38\xab\x30\x54\x91\xdf\xbb\x0b\x39\xb7\xb5\x1d\x25\x93\x81\ +\xc4\x31\xae\x17\x38\xa4\xd0\x1f\x1f\x29\xed\xc3\x38\x38\x3c\x6c\ +\x97\x16\x87\xed\xca\xc1\x71\xbb\x72\xb2\xdd\x4e\xee\xba\xbd\x9d\ +\xbb\xef\xde\x76\xe1\xd5\xf7\xb6\xbb\xee\xbb\xbb\x9d\xb9\x78\xb1\ +\x9d\xdb\xd9\x69\xc7\x5b\xdb\x18\xea\x66\x3b\xe6\x83\x9b\x4d\x3e\ +\xda\xd8\x6c\x3b\xdc\xea\xfc\x1f\x69\xdc\xf7\xf8\x3f\x3b\xa8\xc7\ +\x83\x1e\x34\x7a\x20\x64\xdd\xbf\x75\xe1\x87\x3e\xc8\x81\xcc\x9f\ +\xc2\x86\x82\x5c\xeb\x5c\xa8\xfb\x85\x18\x97\x88\xd5\x4a\x5b\xd7\ +\x3a\x54\xbf\xe2\x43\xc2\x46\xd3\x6d\xe9\xca\xa3\x74\x0d\x73\x63\ +\xe1\x38\x7b\x9e\xfa\x41\xab\x7e\x30\x4f\xb3\x78\xea\xe4\xdc\xaf\ +\xfd\xae\xcd\x39\x46\x6c\x1f\x97\x9c\xdd\x76\x0e\x63\x46\x9d\x1c\ +\xbb\xbb\x34\xd7\xfd\xec\x56\x8e\xec\x87\x3a\x24\xf7\x71\x11\x84\ +\x08\xab\x00\xf7\x63\xef\xf2\x71\x2c\xca\x3d\xfc\x8e\xff\x1c\xf0\ +\x39\xa6\xad\x51\xc0\xcd\x70\x23\xf3\x98\x71\x75\xb3\x25\xd9\xf3\ +\xd3\x19\xc4\x64\x1b\x97\xd4\xe0\xf5\xfd\x3e\x58\x7f\x0f\xe2\xb9\ +\x6b\x48\xf9\xf4\xc1\x77\x0e\xda\xf4\x05\x3f\xe2\xe8\xc3\xb5\x03\ +\xbe\x64\xf3\x4b\x97\x2c\xbc\xd6\x80\xae\xff\xaf\x6a\x5e\x52\x3a\ +\x55\xed\x95\x88\x52\x1a\xec\xe8\x03\x5f\xe4\xa1\x4a\xa7\x92\xbc\ +\x3f\x68\xd8\xca\xe5\x6b\x96\x6e\xd3\xa7\x58\x5e\xe3\xa8\x13\xf1\ +\x3e\x27\xe7\x3a\x68\x70\x8c\x80\x03\x2a\xaf\x7d\xba\x6f\xc4\xa1\ +\x41\x18\x1f\x7a\x7b\x3d\x18\x93\x71\xbc\x36\xca\xdf\x52\x13\xcf\ +\x9e\x71\xfd\x94\x7f\x62\xdb\xb1\xbe\xae\xe2\x58\xb2\xb6\x7a\x65\ +\xfe\xf1\x91\xe2\xf4\x27\xe0\xe8\xe7\xb5\x17\xbe\x8e\x0e\x0f\xda\ +\x35\x2c\x4f\x5f\xbe\xd4\x1e\x7d\xfa\xb9\xf6\xe4\xe5\xcb\xed\xb9\ +\x2b\x87\xed\xd9\xcb\x57\xda\xb5\x83\x03\xc4\x1d\x60\x5d\x8e\xdb\ +\x2e\xce\xb7\xfa\x73\x90\xbc\x06\xdb\xde\xf6\x8b\xb5\xd8\x0f\x70\ +\x7a\xb0\x5e\xa0\x29\x08\x99\x5a\xfd\x1e\x55\xdb\x38\x39\xa4\x25\ +\x48\x47\x33\xcf\x90\x08\x92\x19\x3a\x2f\x69\x31\xb4\xca\x25\x68\ +\x78\x88\xe4\x8b\xaa\xf8\xc4\x8c\x4c\xd1\x29\x2b\xee\x13\x9a\x3b\ +\x73\xd6\x52\x2d\x80\xfe\xe0\xd3\xc5\xb9\x4a\xbd\xca\xce\x23\x9e\ +\xff\x3b\x54\xfb\x12\x74\xf7\x04\x5f\xb1\x15\x07\x4d\x7a\x8c\x21\ +\x59\x9d\xe3\xb5\x0f\x80\xc1\xa0\x54\x4b\x79\xce\xd4\x9c\x69\x85\ +\x9c\xe1\x71\x47\xae\xe9\x09\x32\x8f\xda\x98\x6f\x22\x72\x8a\xbf\ +\x03\xaa\x58\xd0\x8c\xcf\x1f\x96\x49\x38\x12\xad\xd2\x14\x19\x09\ +\xe4\x83\x5a\x02\xfb\x1f\x61\x4b\xe3\x40\x1f\x62\x62\xdd\x74\x1d\ +\x23\xc6\x79\xc4\xc8\x18\x15\x32\x2a\x21\x5b\x04\x34\x7f\x86\xcd\ +\xc8\x5e\x1f\x2a\x29\xf1\x30\x19\x1b\xae\x29\xe8\x18\x22\x5b\x83\ +\x64\xae\x09\x46\x05\x93\xba\x22\x58\xdf\xc2\xad\x3e\x8e\xd7\xce\ +\xc2\x0e\xb9\x61\x29\x74\xdc\x43\xe5\x79\x00\xe7\x09\xdd\x67\x49\ +\x27\xc9\xe3\x7e\x81\xcb\x8a\xed\x76\xfe\xc2\xf9\x76\xd7\xed\x77\ +\xb5\x07\x5f\xfe\x60\xbb\xef\xee\xfb\xdb\xdd\x17\xef\x68\xe7\xce\ +\xed\xb6\x1d\xbe\x48\x53\xc9\xe8\x07\x0b\xc1\xeb\x70\x5e\x8f\xe4\ +\x6f\x9a\x51\xe6\xff\x9c\xf5\xf5\x82\x7d\xbe\x56\xf2\x5f\x00\x50\ +\x2c\x0b\x74\x1d\x71\x51\x83\x03\x67\x4b\x3f\x79\x76\x26\x3f\x3b\ +\x8b\x3c\x85\xb9\x37\xeb\xe4\x14\x27\xc3\x31\x73\x3b\x38\x28\xfc\ +\x44\x3e\xf5\xe4\x62\x51\x4d\xea\x8c\x40\xff\xd5\x97\x4b\xe4\x69\ +\x5c\x90\x8a\x0c\xd9\xb9\x8c\xc3\x97\xae\x89\xd8\x25\xad\xe0\xe9\ +\x97\x1d\xba\x24\x5b\x89\xb4\x13\xc5\x8a\x0d\x4e\xe1\xbd\x59\x77\ +\xa0\xca\x31\xbb\x0a\x99\x5d\xfd\xbd\xe2\x1a\x5f\xe6\x58\x6f\xe9\ +\x35\xd6\xb8\x79\x58\xbf\x50\x5b\x63\x8d\x5b\x18\x2f\xb9\x83\xff\ +\x8b\x3c\x60\x5f\x9a\xae\x18\x04\x4e\xa3\xfd\x54\x1a\x52\x76\xd1\ +\xbb\xad\x4f\xea\xc9\xfb\x21\x46\xb7\xf9\xe0\xa2\xdb\xbc\xb1\x81\ +\xd4\x5d\x32\x1f\x66\x98\x47\x33\x62\x14\x12\x71\xc1\xb9\x26\x55\ +\x70\xd1\x9f\x1e\xbe\x20\xac\xfb\xc8\xf3\x06\xba\xc7\xa7\x6e\xd9\ +\xf5\x18\xcf\xf0\x0d\xbb\x2f\x8a\xc1\xa2\xf1\xa5\x9f\xe1\xb8\x39\ +\xe3\x0d\x1a\x16\xfe\xe6\x58\x7f\xc9\x26\xde\x37\x6f\xb2\x3b\x17\ +\x0f\x85\xe2\x61\x4f\xe6\xeb\x01\xd0\x91\x75\xfe\x79\x47\xff\x69\ +\xc8\xcc\x77\x0e\x48\x48\xbe\x58\xc3\x2d\x05\x6d\xae\x1f\xb8\x93\ +\xe3\x23\x3d\x1c\xd8\xde\xdc\xd0\xc2\x07\x44\x97\xaf\xed\xb7\xc3\ +\x4b\x97\xda\x3e\x1f\xfe\x3c\xf5\x74\x5b\x3c\x71\xa5\x9d\x5c\x3d\ +\x6c\xdb\xf0\xed\x6e\x1c\xb5\x1d\xcc\x35\x9f\xad\xe5\xfd\x48\xbf\ +\xf8\x04\x01\x93\x8a\x5a\xac\x4d\xb7\x2b\x6f\xf8\x86\xc7\x3c\xda\ +\xd5\x77\xcd\x1d\x8e\x03\xa4\x20\x36\x1f\x26\x74\x87\xd5\xac\xc9\ +\xb1\x71\x8e\x85\x28\x9d\xbe\x44\xd0\x13\x2c\x73\xb3\x22\x40\xd6\ +\x49\x26\xfb\x23\xd3\xf9\x1a\xb0\x12\xae\x32\xda\x64\x0c\xe9\x58\ +\x01\xde\x4c\x72\x3d\x54\x5f\x4f\x17\xe4\xc6\x16\x70\x0c\x67\xd1\ +\x54\x56\x49\x04\x1f\x39\xf6\xb1\x56\x18\x75\x82\x26\x02\x15\xf5\ +\xc6\x15\xc0\x36\x09\x97\x72\x5c\xca\x3d\x26\xdf\xfb\x94\xc2\x80\ +\x91\x33\xb6\x70\x32\x0e\xa3\xa5\xee\xd3\xea\xee\x5a\x7b\xac\x99\ +\xc0\xf8\xc9\x3e\xa2\x2a\xd2\xdc\x96\xd8\x84\x72\x5c\x29\xfd\xa3\ +\xad\xb5\x12\xe6\x1d\x43\x0c\x4d\x50\x19\xd7\x9a\x79\x02\xe0\xbb\ +\x23\x6a\x69\x3f\xf5\xb2\x94\x19\xc1\xc9\xe4\x88\x4a\x44\xf4\x39\ +\xdd\xb6\xf4\x73\xfe\xf2\x01\x9f\x18\x7c\x34\x77\x90\x7a\xd0\x8b\ +\x65\x1f\xc7\xf9\x01\x96\xab\xfb\xad\x3d\x87\x84\xc5\xf6\x4e\x3b\ +\xb9\xe3\x5c\x3b\xfb\xe0\x3d\xed\x2e\x2c\xb7\xdd\x77\x4f\x3b\x7b\ +\xe6\x2c\x0e\xfe\xbd\xa6\x17\x60\x3c\xa6\xb7\xb6\xf5\xa0\x43\x0f\ +\x73\x20\xf5\x9b\x69\xf1\xa0\x47\x92\x7f\xf6\x71\x0b\x92\x0f\x80\ +\x98\xa3\x87\x3e\x8c\xdf\x92\xee\x87\x3c\x8e\x85\x12\xb9\x7c\x28\ +\x84\xda\x8a\xa5\x6d\x9e\x24\x73\x51\x54\x5c\x5f\x22\x26\x1f\xb4\ +\x50\xb2\x96\xec\xee\x63\x5e\x72\x69\xdb\x27\x5e\x75\x21\xf9\xb0\ +\x47\x3a\xfb\xe3\xd8\x3c\x79\xaa\x29\xe9\xd8\x5a\x6f\x2a\x93\x1f\ +\xfa\xb0\x1d\x93\xf6\x69\x32\x75\xc2\x39\x94\xcb\x71\x06\x25\x6d\ +\x5b\xb6\x63\xdf\x01\xc9\xed\xab\x17\xe1\xb0\xb9\x7d\x68\x6b\xe3\ +\x77\xf4\xc4\x53\xc0\xd8\x15\x31\x73\xea\x94\xb0\x35\x66\x78\xa1\ +\xf3\x54\xe3\xe7\xb9\xdc\x98\xda\xf0\x74\x10\x45\x87\x58\x0a\x0f\ +\xc9\x3c\x9d\x09\xf4\x61\x13\xb6\x5c\xd0\xba\x9f\xdc\xb0\x75\x4d\ +\x92\x1c\xbe\x70\x31\x80\xf3\x06\x4e\x02\xe9\xe7\x17\xfd\x58\xf4\ +\x02\x0a\x5f\x8c\x51\x4a\xf5\x8b\xe7\x87\x31\xdc\x27\x5d\xd7\x2e\ +\x7e\x2f\x51\xa6\x63\x7a\x9d\x64\x5d\x23\x17\x26\xe5\x57\xfa\x78\ +\x2e\x13\x4f\x2a\xbd\xac\x2b\x2e\x96\x88\x75\x7c\xf6\xcf\xbc\xd0\ +\xf1\xe5\x1f\x34\xe2\x75\x90\x2c\x5d\x17\x79\xf9\xff\xb3\xf7\x2f\ +\xea\x8e\x1b\x49\xb2\x26\xca\xbc\x28\x75\xa9\x6b\xf7\xee\xd3\xf3\ +\xcd\x99\xf7\x7f\xbe\x33\x33\xbb\xbb\xba\x4a\xca\x4c\x1d\xfb\xcd\ +\xcc\x03\x01\x2e\xae\x54\x4a\x4a\xa9\xa4\x4a\x38\x89\x70\x77\x73\ +\x73\x8f\x00\x08\x12\x40\x60\x91\xab\x78\x17\xce\xb7\xbe\x7b\xc7\ +\x64\x7a\x62\x07\x9e\x3c\xd7\x23\xf6\x7d\xce\xad\x7c\x9e\x65\x8e\ +\x70\xf4\xe4\xdc\xb8\x31\xf7\xdd\xed\x6f\xff\xf8\xee\xf6\x5f\x3a\ +\xa7\xfa\x7f\xfe\xeb\x6f\xb7\xff\xfb\xbf\xfe\xfb\xf6\x7f\xff\xed\ +\xbf\x6f\xff\xad\x0f\x65\xbe\xb5\xf6\xdd\xdb\x77\xda\x62\xef\xf5\ +\x99\xca\xff\x64\x7b\x75\xfb\xf2\xcd\xeb\xdb\x17\x6f\xbe\xb8\xbd\ +\xe4\x6b\x6c\x88\x5e\xf0\x79\xcd\xe7\xfd\xbe\xef\x21\x8c\x68\x21\ +\x06\x39\x0a\x1c\xd0\x30\xd2\x48\xce\xc9\x36\xb3\xcb\x05\x9c\x50\ +\x88\x0f\xa4\xbc\xa7\xf1\x23\xf3\x5e\x7c\x08\x94\xa0\x26\xeb\xc4\ +\xee\x31\x35\xd1\xfb\x3a\xb3\x86\x5d\x2f\xf5\xbf\xb3\xce\x36\xdb\ +\xbf\x3d\x54\x59\x3a\xe6\xd4\xa0\xd5\xeb\x55\x64\x57\xe1\xed\x89\ +\xa9\xed\x9e\x05\x13\x76\x94\x73\x1c\x6d\x34\xf7\x57\x06\x72\x64\ +\x1e\xf8\xa9\x1a\x0e\x30\x22\xdb\xee\x91\x2e\x39\xb1\xef\xbc\x3b\ +\x21\x5f\xb9\x53\x6e\x09\xb8\xd4\xd1\xcd\xe3\x2a\x8b\xe3\xf0\xac\ +\x4b\xc4\xaf\xd7\x4a\xdb\xab\x8d\x1c\x35\x4f\xd4\x1f\x2b\x5b\xa2\ +\xde\x2e\xed\xea\xdc\xd7\xf4\x9e\x5d\xa4\xe3\xd4\xfb\x6e\x92\xdd\ +\xee\x29\x02\x3c\x26\xea\x59\x78\xc7\x1e\x75\x56\x56\x8c\x51\x11\ +\x11\xfc\xca\xe9\xfd\xec\x1b\xea\xbc\x87\xdf\xe1\xf3\x59\xa0\x3a\ +\xdc\x7c\xd7\xfb\x95\x1b\x6a\xfc\x6f\xc4\x3f\xff\xe9\x8f\xb7\xff\ +\xf8\xeb\xff\xba\xfd\x5f\xff\xdf\xff\xf3\xf6\x9f\xff\xf1\x7f\xdc\ +\xfe\xf4\x87\x3f\xf9\x7f\x55\xeb\x0c\x49\x67\x1d\x3a\xef\xf0\xb8\ +\xd4\xc3\x2b\x9d\x85\xb0\xbf\x08\x00\x07\xf3\x39\x12\x98\xce\x67\ +\xfc\x93\x8e\xf8\x73\xf3\x4c\xe7\x23\x89\x73\xee\x82\x1f\x9b\xbc\ +\x9c\x4f\xd4\x37\xce\x36\x61\x2d\x12\x53\xe3\x78\x91\x0d\xb3\x17\ +\xbb\xda\xac\xc6\x90\x13\xa7\x76\x62\x87\x9f\x67\x71\xf3\xa8\xd2\ +\x07\xe7\x51\x3c\x8c\xb3\xb0\x5e\x4f\xeb\xad\x98\x1e\x8e\x2d\xbc\ +\xeb\xb8\x70\x24\x35\x58\x10\x46\x6d\x8e\x5d\x9a\xd8\x89\x6b\xe9\ +\x36\x77\x78\x93\xf9\x58\x70\x58\xa2\x2d\x5d\x6c\x90\x7b\xb9\xaf\ +\x70\xc9\xe7\x24\xd7\xab\x7f\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\ +\xf2\x19\xcb\xef\xee\xcd\xff\x4f\x1e\x30\x27\x20\xc7\x25\xd9\x26\ +\xfa\x18\x35\xda\x8f\xd3\x4c\x72\x94\xe7\x58\xfc\xdc\x14\x2b\x86\ +\xe9\x2b\x2c\x26\x41\x74\x09\xcc\x85\x0d\x60\x17\x4f\xa6\x30\xb9\ +\x61\x5f\xb6\x61\x74\x26\x3d\x00\xa6\x1f\xf4\x6e\xc3\x55\x51\x18\ +\xe6\xf2\x70\xac\xfe\xce\x73\xae\xb8\xae\x6b\x8c\x18\xa1\xf8\x67\ +\x7e\x7c\xc6\x91\xb1\x88\x55\xdc\x13\x2d\x9d\x74\x89\x1e\x5c\x0a\ +\xbf\x13\x3a\x0b\x17\x36\x13\x3b\x2c\x9e\xb0\xa1\xb6\x78\xef\xe6\ +\xe2\x6e\xf2\x1a\xf7\x24\x0e\x37\xc8\x7c\x93\x6c\xcf\x4b\xcc\x37\ +\xd4\xb4\x08\x70\x6d\x81\xb9\xa1\x36\xb6\x16\x26\x1a\xb8\x5c\xf1\ +\x37\x5e\xde\xbd\xbd\xbd\xff\xee\xdd\xed\xbb\xbf\xff\xe3\xf6\xdf\ +\x7f\xfb\xef\xdb\xdf\xfe\xf7\xff\xbe\xfd\xfd\xff\xf7\xff\xde\x6e\ +\xff\xf5\x8f\xdb\x97\xdf\xbe\xbd\x7d\x25\xe2\x1b\xe5\xf0\xf3\x91\ +\x39\xfb\xec\x29\xa8\x94\x10\x0b\x7a\xd9\x5c\x14\xd9\x09\x2f\x13\ +\x1b\x68\x5e\x5f\x2e\x93\x2b\x01\x9f\x95\x27\xa1\x01\xe8\x17\x3b\ +\xe5\x23\x77\x7e\x26\x0d\x0a\x34\x96\x9e\xc1\x32\xa2\x23\x05\x0b\ +\x49\x2c\xe2\x84\x58\x82\x16\xea\x8b\x39\x6a\x83\x1f\x1c\xc4\x58\ +\xcc\xb3\x78\x7b\x24\x9a\x96\x3c\xb6\x85\x72\xd6\x36\x45\x30\x60\ +\x54\x88\x43\x8d\x79\xd0\x64\x05\xcb\x38\x2c\xdd\xe6\x47\xbd\x23\ +\x63\x5a\xc7\x24\x8e\x08\x74\x8d\x40\x12\xd5\xc2\xe6\x2e\x84\x74\ +\x57\x33\x17\xa2\xf8\x50\x10\x19\x86\x88\x05\x09\x17\x01\x98\x20\ +\x52\x2e\xad\x91\xa3\x33\x21\x26\xc6\xa9\xac\xcd\xe9\x7d\x64\x15\ +\x03\x59\xfc\xc9\x30\xef\x89\x1c\xfc\xc9\x8e\x1c\xde\x11\x8d\xac\ +\x7d\xc4\x72\xe0\x88\x3d\xc6\xbc\x36\x06\x40\xd4\xf4\xe4\x11\xe9\ +\x09\x45\xef\x54\xc2\x95\x92\x2d\xe1\x90\x34\x6b\x30\xbd\xee\x2c\ +\x63\x03\x58\x8b\xcd\x8b\xaa\xb2\x4c\x1a\xf9\x73\xa2\x41\xbd\xb3\ +\x6f\xdf\x09\xfb\xbb\xde\x97\xdf\xbe\x7b\x77\xfb\x1f\xbd\xed\xbf\ +\x7d\xf1\xfa\xf6\xfe\x4f\x7f\xba\xbd\xf8\xf7\x3f\xdd\xfe\xf8\x9f\ +\xff\x76\xfb\xf7\xff\xfc\xeb\xed\x8f\xff\xfe\x97\xdb\x9b\xaf\xbe\ +\xbe\xbd\x78\xcd\x4d\x31\xfe\xb3\x22\xe9\x4c\xdc\xbc\xd6\x98\x5f\ +\xf4\x5b\x66\xaf\x6e\xaf\x65\xaf\x9f\x1c\x62\xd2\x87\x09\x1f\x7e\ +\xea\xf1\x55\x7d\xc5\x57\x4c\xfd\xd8\x7e\xa5\x9c\x17\x47\x5c\xc6\ +\xb2\x47\xe7\x06\x96\x6c\xfb\xc5\xaa\xd5\x84\xc7\x3e\xb7\xc7\x26\ +\x07\x4e\xeb\xa8\x59\x58\xf0\xea\x7b\x8c\x4f\xb5\xfa\x7b\x3f\x53\ +\xd3\x76\x17\xec\xc9\x9f\x7e\x78\x80\x03\x39\xb6\xfa\x19\x3c\x35\ +\x62\xa3\xc6\xde\xf4\xaa\xa1\x85\x07\x1f\xb4\xc5\x0e\x4e\xb0\xe4\ +\xd5\x9d\x37\x9b\xcd\x80\xec\x2f\x1a\x85\x53\xe7\xfd\x7b\x24\x7c\ +\x48\xe0\x3e\xc3\x7b\x04\x7f\x80\x7e\xc9\x4f\x90\xbc\xd1\xb4\x68\ +\xa3\xce\x76\x1d\x6c\x5e\xff\xf5\x39\xf9\x60\xc3\x6f\x9f\x95\x87\ +\x85\x68\x8f\x68\x2c\x1a\xdf\x5e\x7c\x2d\xf3\x88\x5d\x1e\x9f\x1d\ +\xf6\xf9\x0c\x99\x58\x31\x7f\xae\x98\x09\x1c\x7f\x16\x97\x26\x3a\ +\x39\x68\x33\x51\x40\x6a\xa6\x0e\xce\xe4\x94\x03\x36\x79\xf6\x71\ +\xb1\xf7\x9c\x46\x5d\xe7\xd0\x47\xad\xf0\x8e\xf1\x62\xa3\x15\xd2\ +\xe7\x5f\xf8\x3b\x1e\x2c\x37\xcf\x94\x85\xaf\xf3\x28\x7f\xb3\xcc\ +\x98\xce\xad\x92\x6c\xec\x2d\xdf\x48\xe1\x9c\x8a\x7c\xf9\xf3\xd3\ +\x8e\xae\x87\xef\xd8\xa1\x53\x5b\x5a\x8f\x75\x3e\x86\xae\xff\x56\ +\xe7\x53\xff\xf8\xf6\xdb\xdb\xdf\xfe\xfe\x3f\xb7\xff\xfd\x37\x2d\ +\xff\xf8\xbb\xf4\x3f\x6e\xff\xfb\xef\x7f\xbf\xfd\x97\x34\x3f\x15\ +\x49\xed\x97\x2f\xbf\xbf\x7d\xf1\x85\x3e\x7b\xf9\x6c\x7e\x9d\x6f\ +\x02\xf3\x79\xc3\xc4\x39\x12\xc5\x7b\x9f\xb1\xf6\x18\x0a\x96\x8d\ +\x42\x23\xe1\xb8\xde\xfd\xc7\xb1\xe0\xa1\xa8\x55\x11\xc6\x49\x09\ +\x13\x8c\x61\x1f\x15\x2c\x27\x07\x99\x73\xa4\x09\x34\x49\x72\x58\ +\xab\x8b\xb3\x0c\xb8\xd5\xdc\xcb\x67\x2c\x11\x8f\x6d\xd9\x9b\xe0\ +\x3c\x0c\xec\x92\x6c\xce\xad\x66\x13\x20\xd0\xfd\x91\xbb\x84\x60\ +\xd6\xa4\x9b\x92\xac\x62\xe4\x27\x07\x61\x5b\xb3\x1f\xf8\x73\x99\ +\xf5\x30\x33\xdb\xbe\x15\xec\x61\xe9\xa5\x12\xa5\x99\xdd\x08\x69\ +\xb7\x7a\x5a\x92\x15\xd9\xed\x48\x5f\x1f\x9b\x1d\x8b\x1c\xf7\xd8\ +\xd7\x3c\x31\x9a\xa3\x2e\x72\x5f\x67\x45\x1b\xf0\x76\xbe\x4f\x3e\ +\x27\xfd\x80\x7c\x0c\x79\x1f\x11\x72\x97\xe3\x3e\xb5\x86\x27\x5a\ +\x9d\xc1\x66\x78\xe5\x1a\x97\xe3\xed\xb2\xed\x5c\x5e\x1f\xc2\x32\ +\x8c\x96\x6a\x5c\x92\x5f\xcc\xc8\x36\x9c\x9a\xa8\x71\x43\x53\xeb\ +\x4b\xa0\xbc\x87\xbd\xbc\x23\xc2\x18\x65\xeb\x3a\x08\xef\xbd\x8a\ +\x7d\xf5\xc5\x9b\xdb\x1f\xff\xf4\xf5\xed\xdf\xfe\xed\x2f\xb7\xff\ +\xeb\x3f\xff\xf3\xf6\x7f\xfc\xfb\x7f\xdc\xfe\xfc\xe7\x3f\xdf\xbe\ +\xfa\x52\xe7\x53\x7a\x30\xbe\x97\xe2\xf9\x3a\xa0\xe7\x09\xb9\x99\ +\x36\xef\x61\x9d\x0f\xd9\x46\xeb\x28\xee\x9f\xce\x0e\xc6\x79\x44\ +\xec\x2e\xd8\x5a\x38\x59\x98\x38\x75\xa2\xc7\x4e\x4d\xda\x23\x36\ +\xb8\x34\x11\x4a\x8c\xdd\x98\x1f\xe5\x38\xba\x70\x28\xd8\x39\xa7\ +\x69\x34\xb6\xfd\xda\x3c\xd0\x8c\x2f\x5e\x7c\x85\x7d\xb3\xcf\x36\ +\x0b\xe3\x81\xc1\x18\x83\x9d\x62\x7d\x0c\xe6\x5a\xd8\x60\xbb\x3d\ +\x71\xbf\x11\x8a\xc1\x00\x3b\xbc\xc4\xe6\xc5\xdd\x24\xaf\xf3\xbc\ +\x4b\xf7\xff\x9f\x96\xf6\x79\xb9\x2b\x74\xc9\x67\x21\xd7\xab\x7e\ +\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\xcb\xef\xf2\xcd\xff\ +\x4f\x1f\xf4\x83\x01\x18\xe2\xc2\x64\x74\x26\x98\x39\x61\xc1\x64\ +\x42\x04\x8e\x6f\x4e\xd9\x60\x41\xc5\xcf\x44\x08\x5a\x17\x4c\xb5\ +\x75\x75\xbb\x70\x6c\x0a\x61\xbe\xf0\xa4\x07\x7e\xf3\xb5\x50\x9f\ +\x7e\x6c\x0f\x56\x3d\x79\xf8\x3c\xec\x33\x9c\x72\xb8\x28\x4f\x3d\ +\xbe\xd9\x15\x5c\xed\x8a\x7b\x0c\x8b\x6f\xc3\x0b\x13\x2c\xfb\x18\ +\xd7\xc2\xc4\x8d\x70\xc7\x8b\xb9\x7e\x2f\xe2\xa6\x06\x7a\xff\x86\ +\x5a\x62\xe1\xe5\x86\x1a\x58\x34\x0b\x7f\x4d\x49\xed\xe1\xbb\x9f\ +\xf9\x79\x12\x6c\xfe\x69\x76\x6d\x35\x99\x38\x92\x66\xf1\x4d\x38\ +\x6c\x30\xe3\xef\x74\x41\x08\x0f\x1f\x3c\x7d\x7e\xfb\xed\x3f\x6e\ +\x7f\xff\xaf\xff\xb9\xfd\xcf\xff\xfd\xff\xdc\x5e\xfc\xbf\x7f\xbb\ +\xbd\xf8\xdb\x77\xb7\x37\xef\xdf\xde\xbe\x50\x3f\x4c\xc9\xcf\xcf\ +\xce\xf9\x44\x54\x8d\xd7\x57\x26\xd7\x3f\x91\x31\x16\xe0\x38\x97\ +\x42\xc9\xfc\x80\x94\xb0\xf3\x92\x1b\xc3\xd7\x58\xd5\x87\x2c\x86\ +\x4c\xd9\x32\x37\x64\x13\x90\x5e\x8c\x6f\xf2\xd0\x57\x63\xa6\x0b\ +\xb1\x7f\xc8\xbe\x27\x2e\x21\x30\x3d\x1e\x3d\x0f\xdd\x88\x1c\x26\ +\xbe\x0e\x46\xc6\x81\x3d\x79\x47\x66\x39\x09\x66\x9d\xd1\x5a\x12\ +\x27\x37\xdb\x72\xb0\x50\x0f\x7c\x17\xc7\xd9\x2e\x58\x25\x9b\xa5\ +\x0b\x64\x4f\x1e\x39\x96\x70\x58\x18\x33\x9e\x24\xe4\x62\x16\x2b\ +\x7d\xb0\xcb\x18\x0a\x49\xcf\x44\xbc\xfd\x0d\xa0\x6d\x99\x72\x96\ +\x6d\x94\xf7\x41\x27\xa4\xda\x08\xd0\x87\x05\x6e\x2a\xde\xf7\x37\ +\xe8\x81\xed\xd6\x54\xde\x33\xea\xcd\x36\x91\x3c\xb1\xa4\xb0\xf6\ +\xbe\xf8\x89\xb4\xac\xf2\xfe\x3a\x1e\x6b\xc1\x08\xf4\x0e\xdb\x7a\ +\x9c\x48\x04\xdc\xf5\xba\xfd\xe6\x35\xc9\x67\x03\x93\xc1\xdc\x60\ +\x97\x16\x89\xbe\xbe\x7b\xfb\xfd\xed\x5b\x71\xfe\xf1\xfd\xab\xdb\ +\xbb\x2f\xde\xdc\xbe\xff\xeb\x1f\x6f\x5f\xff\xdb\x9f\x6e\xdf\xfc\ +\x9f\xff\x7e\xfb\xe3\x9f\xff\x7c\xfb\xfa\x4f\xdf\xdc\x5e\x7e\xf5\ +\xa5\x5e\xa3\xd7\x37\x6e\x8e\xb9\xb8\x5e\x6f\x79\xc2\x5e\xf9\xdb\ +\x68\x9e\xbc\x59\x3f\xe9\x28\xfc\x65\x6e\x94\xf9\x2f\xa9\x99\xe4\ +\x65\x02\x45\xcb\x3e\xe1\xb3\xfe\x8a\x7a\x4d\xfe\x06\xc3\x5e\x5c\ +\x63\xf4\x43\x4d\xd9\xbb\x66\xa7\xa1\x3f\x06\xb4\x61\x9e\x70\x71\ +\x4e\x27\x68\x6a\x87\x1f\x8e\x0c\xdb\xae\x8f\xdf\x25\x9c\xc1\xee\ +\x6a\x1a\x1b\x7f\xe7\xc9\xe7\xa1\x7a\x93\x63\xec\xa4\x5b\xcb\x9c\ +\x0d\x9f\x3c\x6f\xcb\x0d\xb7\x46\x11\xeb\x7a\xc8\x2a\x18\x7c\xc5\ +\x1d\xa9\x3d\x82\x9d\xd7\xdd\xdf\x50\x33\x92\x1b\x6a\xfe\xbc\x9b\ +\xf7\xd6\x47\xcb\x03\xfe\x8f\x49\xff\x1c\xe5\x43\x9b\xf8\x51\xec\ +\xa7\xf0\x2d\x35\x4e\xaf\xff\x2e\x8d\x2f\xfe\x98\x6a\xfd\x3c\x74\ +\x3e\x33\x58\xd4\xca\x1e\xdf\xe7\x24\x41\x8b\xcb\xe7\x38\x6f\xf4\ +\xc0\x38\x06\xf0\x90\xa3\x16\x0e\x39\x3a\x8f\x70\x3c\x0b\x62\x16\ +\x36\x58\x1f\x3c\x7d\x2c\x58\x75\xa8\x6f\x72\xe3\x6a\xcb\x37\x72\ +\xc2\xe9\x6b\x62\x84\xdd\xbb\x4e\x43\x8a\x79\xac\xc0\x61\x2c\xbe\ +\x7d\x6c\xbd\x2f\x74\x3e\x33\xb8\x18\xb1\x89\x16\xf7\x79\x11\x7c\ +\x6b\xd6\x89\x73\x27\xc5\xe1\x09\xe3\x86\xda\x3b\xff\x94\x23\x39\ +\xc7\x79\x95\x3e\x6d\x9b\xd3\x1a\xe0\xce\xdd\xea\x32\x06\x9d\x53\ +\x71\x8e\x65\xdf\xfd\x70\x5e\x2a\xec\xdd\xdb\xdb\x77\xef\xbe\xbb\ +\x7d\xfb\xdd\xb7\xb7\xbf\x71\x73\xed\x1f\xdf\xde\xfe\xeb\xef\x7f\ +\xbf\xfd\xf7\xff\x7c\x7b\xfb\x6f\xe9\xff\x91\xff\xad\xce\xd5\xe8\ +\xdf\xef\x74\x7d\x5c\xf0\x0b\x90\xaf\x5e\xe5\x06\xdb\x0b\xbe\xe9\ +\xc2\xe7\x1e\x0f\xed\x23\xa7\xcf\x09\x36\x8d\xf8\x68\xef\x5f\x68\ +\x0c\x6b\xd6\x7e\x13\x6f\x97\xc8\x09\x77\x22\x72\x46\x77\x79\x7a\ +\x9e\x75\x1e\x03\x43\x22\x3b\x9f\x54\xc1\x4e\x1c\xcb\xce\x48\x0b\ +\x83\x61\x59\xe3\x8f\x51\xb9\xe7\x5a\x3a\x90\xfd\x73\x90\x35\xc5\ +\x5d\xe3\x68\x8d\x55\x3b\x29\x47\x0d\x49\x28\x93\xcf\x66\x4f\xd4\ +\xb5\x04\xe4\x18\x4d\x01\x8a\xa2\x93\xef\x3d\x91\x04\x89\x5f\x8b\ +\xe9\x04\xa1\xa3\xda\xa8\xbc\x02\xb1\x0e\xd2\x9d\x90\xd2\x7a\x4e\ +\xaf\x6d\x79\x98\x32\x60\x6a\x66\xf4\xd3\x46\x76\xfb\x81\xb1\xc9\ +\xc1\x3c\xe5\xaa\x59\x37\xab\xd4\x82\x3d\x12\xc7\xe1\xda\x53\x0b\ +\xb0\xc8\xad\xe8\x62\x31\x2d\x76\xa9\x4d\xdd\x3d\x10\x7c\x6d\x43\ +\xbd\x77\x12\xa6\x39\x15\x9e\xca\xde\xf4\x8b\xb2\x8b\x4b\x0c\xab\ +\xd9\x75\xf3\x87\x7c\x7a\xe8\xfd\xfa\xfe\xad\xde\x9f\x6f\xdf\xfa\ +\xbd\xc7\xe7\x06\x6f\x25\xde\xc3\xfc\x91\x21\x37\x83\xbe\xfa\xea\ +\xeb\xdb\x5f\x74\x0e\xf5\xff\xf9\xeb\x5f\x6f\xff\xf9\x1f\xff\xeb\ +\xf6\x97\xbf\xfc\xe9\xf6\xf5\x37\xdf\xdc\xbe\xf9\xe2\xeb\xdb\x17\ +\x7a\x7f\xce\xd6\x47\x72\x5d\xc0\x39\x0f\xef\x51\xf6\x27\xed\x51\ +\xdb\x39\x8a\xcf\xa5\x1c\xd7\x39\xd7\x6b\xb0\x59\xc2\x59\xe7\x55\ +\x8a\xfb\xfd\x6e\x2e\x3a\x75\xcd\xa5\x26\x2e\x0d\xbd\x9b\x13\x4c\ +\xae\xc7\x93\x18\x5c\x13\x69\x83\xd9\x4e\x7c\x71\x1a\xdf\x63\xbb\ +\x9d\xf8\x19\xb3\x3d\x3e\x8f\xf5\xd9\xa4\x7a\xdb\xe7\xd4\x89\xe7\ +\xb1\xc7\x3f\xf0\xe9\x3f\x98\x1a\xac\xe8\xf2\xb5\x72\xd1\xda\xc8\ +\xce\xb5\x27\x6d\x62\x6d\x4b\xad\x71\xd9\x2f\xc6\x96\xf0\x1a\x91\ +\x1e\xd6\xfd\xce\xf2\x9c\x6c\x05\x2e\xf9\x2c\xe4\x7a\xc5\x2f\xb9\ +\xe4\xd3\xc9\x75\x43\xed\x92\x4b\x3e\x63\xf9\x5d\xbe\xf9\x7f\x13\ +\x83\x7e\x30\x08\x7d\x94\x1a\xe5\x23\xd5\x13\x23\x76\xe2\x4b\xa3\ +\x8e\x1b\x6a\x89\xad\xc9\x10\x70\x26\x3a\x08\x70\x5d\x85\xad\x8b\ +\x9e\x24\xc1\xab\xed\xba\xb2\xd1\xe0\xf0\xcb\x61\x52\x23\x2e\xf1\ +\xea\xc6\x1c\x2f\xd7\x79\x5d\xe2\xa3\xd4\xb8\x3f\x26\x5e\x18\x92\ +\x2b\x4b\xe5\xc2\xcb\x13\x3d\x21\xae\xb1\xa6\xbf\xc6\x8d\xef\x36\ +\x93\x2b\x8a\x0f\xc6\x43\x79\x73\xb3\x6b\xf1\xa8\x23\xdf\x93\x35\ +\x83\x6f\x7e\x74\x27\x73\xfc\xd7\xd4\x1b\x97\x0b\xc4\xda\x9e\x10\ +\x22\x3e\x37\xce\x8c\xa1\x33\x19\x8f\xef\x9c\xc6\x66\x8c\xde\x4e\ +\xd2\xbe\xa0\x14\xc6\xe4\x98\x27\x84\xfe\xfe\xdd\xed\xdb\xbf\xfd\ +\xed\xf6\xee\xbf\xff\x76\xfb\x5e\xcb\xbb\xbf\xfd\xe3\xf6\xea\xbb\ +\xb7\xb7\xd7\x6f\xbf\xbf\xbd\x12\xe7\xb5\x2f\x56\x58\x7f\x3d\x75\ +\x01\x2d\x65\xe1\x02\x26\xb6\x34\x9c\x09\x54\x26\xb6\x44\xa6\xba\ +\xa5\x48\x7c\x64\xbb\x20\x8f\xaa\xd3\xda\xd3\x46\x6a\x53\x04\xe8\ +\xa0\x46\x1c\xde\xf9\xbb\x75\xb6\x77\xe1\x62\xcc\x7f\xfd\x9d\xe7\ +\x26\x47\x2d\xda\xe9\x6e\xe4\xcc\x8d\xe7\xa1\x61\x6a\xf1\xaa\xb1\ +\xc8\xce\xbc\x18\x6b\xa3\x6d\xef\x0e\x4d\x57\x3c\x09\xb9\x20\xd4\ +\x4b\x54\x3c\x02\x92\xac\x4c\x51\x2c\xc8\xe9\x35\x6b\x1c\x1c\x16\ +\xbd\xea\xbe\xec\x4e\x39\x5e\x6b\x30\xfa\x09\x82\x4c\x0d\xc4\x13\ +\x06\x12\x7f\x53\x4a\x62\x3e\xe3\x92\x76\xc4\xb8\x2c\xa9\x63\x32\ +\xc6\x95\xb7\xf6\xa8\x13\xfe\x47\xc8\xda\x17\xc2\x6f\x2f\xcf\xca\ +\xa3\xaa\xe9\xfb\x71\xc4\xdb\xf7\x4e\x8e\x9e\x22\xbb\xff\x94\x9e\ +\xca\x19\xd3\xf4\x72\x90\x8e\x2d\x1c\xd9\xc7\x81\x35\x37\xcc\xdc\ +\xca\x76\x1d\x30\x9e\xd2\x4c\xf6\xf0\xd9\xf1\x56\x2f\xfc\x77\x5e\ +\xde\xdf\xde\xca\xff\x0e\x9a\xc8\xdf\xbe\x7a\x73\x7b\xff\x87\xaf\ +\x6f\x5f\xfc\xe5\x9b\xdb\x1f\xff\xfa\x97\xdb\x37\xff\xf1\xd7\xdb\ +\x57\x7f\xfe\xc3\xed\xeb\x37\x6f\x6e\xaf\xde\x7c\x71\xfb\xfe\xe5\ +\x2b\x2d\x2f\xf5\x5a\xcf\x37\xcd\xf8\xe9\x9b\x57\xb7\xd7\x18\xdb\ +\x24\x0e\x13\xb7\xbe\xa1\xc6\x44\x11\x93\x3a\x7c\xeb\x0c\xdf\xdf\ +\x68\x2b\x6f\x26\x7a\xf8\xf9\x47\xbe\x9d\xa6\xfe\xcd\x77\x9d\xc4\ +\xce\x76\x35\xfb\x89\xfb\x89\x4d\xbf\xc6\x16\x3e\xbc\xc6\x8d\x07\ +\xf3\xa4\xca\xd4\x70\x4c\xb6\x30\x73\x36\x7e\xfc\x59\x94\x37\x31\ +\xf2\x79\x80\xb9\xd6\xb1\xa8\xa9\x1e\xee\xde\xcf\xae\xcf\xfd\x04\ +\x43\x63\xd2\x57\xfc\x59\x2c\x63\xdb\xc7\x2e\x46\x52\xc7\xc4\x33\ +\x31\x1b\x4f\xc4\x7b\x83\x43\x7a\xaf\x8a\x33\xfb\xc8\x21\x8f\xf3\ +\x2c\x84\x76\xea\x2e\x13\xfb\x40\xfa\x25\x1f\x90\xd9\xae\xb3\xfd\ +\xee\xfd\x8f\x91\xd9\xfe\xce\x55\xf3\x68\x1f\x38\xbd\xd6\x92\xf2\ +\x83\xc6\x58\x9f\x27\xe2\xfa\x38\x1e\xc7\x3e\x9f\xf1\x07\xce\xde\ +\x14\x7d\x3a\x57\xd1\x23\xfc\x7c\xce\x18\x1f\x0e\x15\x80\x84\xb9\ +\x4e\x71\xd7\xb1\x3f\xb1\x1c\x4f\x2c\xe0\x5e\x26\x87\xb0\x8b\x6c\ +\x1a\xd5\x88\xb9\x5b\xac\xb8\xb2\x35\x94\xe1\xb4\x96\xd6\xdf\x71\ +\xf9\x8c\x63\x72\xa0\x05\xef\x79\x96\x63\x33\x76\x59\x73\xce\x34\ +\x79\xd2\x73\xc3\xcb\x98\x6f\x86\x71\x6e\xa4\xc5\x7f\x94\xc4\x79\ +\x9f\x70\x7f\xf6\x26\x77\xe5\xdb\x2e\xd6\xdc\xd4\xed\x32\xb8\x16\ +\x9f\x8b\x49\x73\x0e\xf5\x56\xfa\xed\xdb\xb7\xb7\x7f\x7c\xf7\xad\ +\x96\xef\x6e\xff\xf8\x96\xff\x6d\xf9\xad\x6f\xa8\xf1\xf3\x90\x7f\ +\xf7\x8d\x35\x9d\x67\x89\xe3\xf5\xd6\xf1\x91\xf7\x3c\x9f\xc3\x7c\ +\xc6\xa2\xf9\x86\x05\x9f\x55\xf9\xf8\x73\xc3\x16\xf0\x7e\x31\x87\ +\x53\x1f\x9f\xbd\xa1\xb4\xe0\x87\xb1\x04\x8f\x48\xd0\xf1\x2a\x67\ +\xaa\xe4\x09\x20\xa1\xb3\x9a\x7b\x18\x78\xca\x3d\x49\x3b\x12\x42\ +\xd9\x48\x52\x0c\xd5\x6b\xe2\x31\x3f\x49\x5e\x48\xd6\x36\x7f\xc6\ +\xe5\xd5\xe4\xa1\x14\x9f\x3b\xe9\x75\xcd\xe7\xa8\x03\xe1\xc4\x7b\ +\x22\xe0\xe6\x0c\x7f\x93\x1d\xc1\x66\x3f\x34\x5f\x32\x35\x0f\x43\ +\x4a\x36\x1c\x5e\x13\xe7\x81\xb7\x80\xcb\x0b\xc8\xd8\x9a\xa6\xc6\ +\x9a\x10\xe2\x80\x90\x72\x2d\xa8\xd6\xb8\x97\x95\x57\x39\x6a\xa9\ +\xb5\x41\x07\xea\x73\xdc\x53\x6f\xa3\xb1\xe6\xb5\x78\x2c\xbc\xcb\ +\x89\x3d\x19\x86\x80\xc1\x53\x63\x63\x75\xdf\x1b\x74\x60\xcb\x5d\ +\x31\x56\xf9\xc0\x32\x96\x80\x5d\x0c\x48\xd8\x3e\x6c\xe0\xe1\xdc\ +\x09\xd8\xf4\x65\x2d\xbe\xd7\xfd\xd4\x81\xb4\x7c\xbf\xf7\xf5\xfe\ +\xf6\x4f\x38\x72\x23\x0d\xcd\xfb\x54\x38\x37\xbb\x38\x07\x7a\xf3\ +\xe5\x9b\xdb\x37\x5f\x7e\x79\xfb\xeb\x5f\xff\x74\xfb\x8f\xbf\xfe\ +\xfb\xed\xaf\x7f\xf9\xf7\xdb\x9f\xff\xf4\x87\xdb\x37\x6f\xbe\xf6\ +\xff\x3c\xf4\x1f\x1e\xf1\xe7\x48\xf0\xd9\xf1\xe8\x4b\x0f\xbd\x2b\ +\xad\xd9\x07\xf7\x9b\x68\xbe\x51\x66\x5f\x67\x5d\xe2\x73\xa3\x9c\ +\x9b\x6a\x73\x9e\x44\x2c\xef\x69\xec\xc1\x9b\xcf\x03\xbb\x75\xc7\ +\x76\x8f\xcd\xd1\x53\x2e\xe8\xe0\x59\x32\x2a\x06\x17\x7d\xc2\xef\ +\x6d\x97\x78\x26\xc6\xd8\xe5\xc9\x88\x2d\x87\xb5\x9d\xf8\xf9\xa6\ +\xdf\xe4\x68\x61\x7b\x00\x2f\xdb\x0e\x59\xc5\x9a\x63\xcd\xf3\x88\ +\xdb\x6b\x5f\x0e\xea\x05\x1d\xdb\x71\xf3\x1a\xf3\x33\xde\x12\xbd\ +\xe4\xec\x03\x44\x78\xf5\x01\xb4\x65\x8b\x05\x79\x2c\x77\x75\x2e\ +\xf9\xac\xe4\x7a\xf5\x2f\xb9\xe4\xd3\xc9\x75\x43\xed\x92\x4b\x3e\ +\x63\xf9\x5d\xbe\xf9\x7f\x33\x83\x7e\x3a\x10\x5f\x48\x0a\xd7\x35\ +\x8b\x6d\x5f\x19\xf9\xac\x56\x18\x6e\x2f\x66\x2c\xd2\xb1\xb5\xd4\ +\xb6\x6f\x8e\xe0\xf7\x2e\xa2\xa7\xf4\xfb\xe8\x99\x70\x99\x3a\xe6\ +\x39\x47\x36\x13\x2a\xef\xd5\x3b\x7c\xc7\x8e\x5c\x8f\xc9\xb4\xe4\ +\xa7\x56\xfc\x59\xd4\xe8\x99\x9b\x4c\xb6\xcd\x0b\xee\x0b\xb3\x35\ +\x9e\xe1\xce\x18\x12\x8b\x5d\xcd\x78\xcd\x67\x82\x25\x1c\xdb\xf0\ +\xbc\x6c\x5c\xe3\x4c\xea\x30\x56\x26\x6e\x1a\x2b\x37\xff\x34\x9b\ +\xf8\x5b\xc2\x5a\xe0\xc8\xe0\x86\x5a\x79\x9e\xe4\x11\xee\xbf\xb8\ +\x96\xcd\x3a\x1b\x67\xa2\xc8\x75\xa6\x7e\x72\x88\xdb\x27\x9f\x9f\ +\x3d\x61\xbd\x65\xb3\x9d\xb8\x30\xf5\x5f\x5f\x73\x01\xfa\x8f\x6f\ +\xb5\xfc\xe3\xf6\xfe\x7f\xfe\x7e\x7b\xff\xb7\xff\xb9\xbd\xf8\xdb\ +\xb7\xb7\x97\xdf\xbe\xbd\xbd\xd0\x85\x29\x37\xdf\x58\x98\xee\x98\ +\x13\x53\x55\x8a\x70\x35\x24\x27\xaf\xfc\x26\x86\x87\x2d\xfb\x11\ +\x07\x29\xa0\x91\xc4\x10\x0b\xeb\xc8\x3c\x62\x5c\x5c\xd9\x56\x31\ +\xdb\x53\xd0\xe4\xe9\xed\x69\x3e\x12\x3f\x79\x16\x54\xca\x2e\xbb\ +\xab\x62\x09\xab\xdc\x67\xc4\x69\xcd\x8b\xec\x7d\x77\x8c\xb5\xf1\ +\xb8\x40\x65\x1f\x71\x7c\x4b\x4c\xb4\xf5\x9a\x93\x88\x84\x95\x7c\ +\xc9\xeb\xd7\x5a\x04\xe4\x26\x17\x03\xc8\xd3\x4e\x7e\xc4\x9f\x1a\ +\x41\xb2\xce\xda\x0f\xb0\x95\xe7\xd7\x5d\x01\xc7\x14\x22\xfe\xfe\ +\x85\x7a\x4e\xba\x44\x60\x12\xeb\x6d\xe4\x3d\xb0\x6c\xf4\x48\x7a\ +\xdf\x91\xc8\x96\xeb\x60\xed\x99\x85\x7a\x20\xbe\x79\x37\xeb\xfd\ +\x84\xf4\xfc\x18\x58\xb7\x7b\xfe\x7d\xb6\xdf\xa7\x68\xb7\x91\xa7\ +\x08\x32\xdb\x75\xb6\x2a\xf2\x94\xb9\x46\x69\xd5\x08\xdb\xb9\x36\ +\x6f\x41\xde\x77\xfe\x26\x1a\xef\x39\xc5\x7c\xf3\x4c\xfe\xb7\xa2\ +\xbc\x15\x4f\xe6\xed\xdd\xcb\x2f\x6e\xaf\xbf\xf9\xe6\xf6\xfd\x1f\ +\xbf\xbe\x7d\xf9\x97\x6f\x6e\x5f\xfd\xf5\x0f\xb7\x3f\xfd\xf5\x4f\ +\xb7\x37\x5f\x7f\x7d\x7b\xf1\xe5\x97\x9e\xb4\xe1\x75\xf0\xe4\xcc\ +\x0b\x26\x68\xf8\x76\xda\x4b\x2f\xaf\xb4\x19\xf2\xcf\xf0\x99\xa4\ +\x9d\xc9\x9b\xd7\xfe\x1f\x69\xb7\xd7\x7c\x33\x8d\x38\x37\xcb\xb4\ +\xc7\x70\xe3\xcc\x37\xcc\xf2\x4d\x36\xf2\x15\x70\x4e\x38\x60\xf0\ +\xd4\x97\xfb\x71\xf1\x85\x33\x86\x4c\x26\xb1\x64\x3c\x9e\x58\xa9\ +\x0e\xae\x45\x5c\xe3\x0b\xab\x3f\xbc\xc9\xf3\xb2\xc5\x4f\x3a\x63\ +\x4b\xac\xeb\x7f\x17\x87\xc2\xfb\xe0\xb8\x21\xb7\xe5\xa2\xe9\x47\ +\x0f\xec\xe0\xd2\xab\x26\x58\x79\xb6\xcf\x3a\x36\xcf\xfb\x18\xaf\ +\xac\xf2\x24\x83\x2d\x9c\x46\xaf\xa7\xf1\x93\xc4\xf7\x67\x97\x65\ +\xbf\xa1\x66\xe0\xe7\xcb\x7d\x97\x97\x7c\xbc\xcc\x6b\x30\xdb\xf0\ +\xde\xff\x64\x42\x61\x8a\xee\x1d\xc8\xce\x73\xb3\x77\x3d\x9f\x27\ +\x6a\x51\xd6\x2c\x39\x0e\xf8\x13\xde\x5c\x1d\xeb\x17\x4e\xc6\xc1\ +\x8b\x6e\x8d\xc5\x3b\x62\xc6\x5d\xa3\xb6\x3e\x94\x96\xcd\x67\x31\ +\x5c\xf7\x83\xdf\xd8\xce\x77\x32\x3a\xd8\xf4\x61\x4c\x8f\x68\xf6\ +\x77\x3d\x5c\x9b\xf3\x11\x69\xd2\xc1\xca\xb3\xde\x6d\xb8\xac\x0f\ +\xe3\x9c\x87\x70\xdf\xe4\xea\xf9\x0d\x9f\xa9\x59\x8f\xdc\x14\x73\ +\x9e\x3e\x6b\xdf\xca\x9f\xff\xa1\xe4\x5f\x04\x90\x5e\x37\xce\x7a\ +\xde\x94\x3f\x6e\x50\x8e\xb1\xf2\x6a\xcf\xcf\x43\xba\xa6\x7d\x8d\ +\xda\xfd\x4c\x1c\xfd\xce\x3f\x2b\xc9\xf2\xed\xbb\xef\x6e\xdf\x7d\ +\xf7\xce\x37\xd7\xfe\xfe\xdd\xb7\xb7\xbf\x7f\xcb\x4d\xb6\x7f\x54\ +\xf3\xad\x36\xd5\xd3\xb9\x98\xd7\x87\x97\x5d\x4b\x3e\x77\xf5\xd9\ +\xe1\xcf\x43\x41\x6a\xd6\xe7\x0e\xba\xdb\x33\xbb\x09\x4d\x7d\x13\ +\xec\xda\x5b\x14\xec\x5d\x34\xe6\x45\xfc\x18\xa1\x4f\x55\x71\x4b\ +\x4d\xf9\x6c\xcf\xa7\x9f\x67\x47\xdd\x64\x20\x6a\x63\x08\x5c\xc6\ +\x81\x1d\xc6\x9d\xa4\x0e\xd1\xfc\x71\x8e\x2c\xe7\xb3\xad\x88\x82\ +\x05\x27\xec\x50\x69\x91\x01\x22\xf6\x1a\x67\x5b\x25\xff\x4e\x04\ +\x79\xbd\x1a\x4b\xa9\xac\xf7\x21\x77\x79\x72\x41\xbc\x49\x91\xa7\ +\x61\xd7\x79\xaa\xd5\x7a\x3b\x72\x2c\x9a\xe4\xd1\x62\x99\x38\x19\ +\x23\x8d\x2b\x6f\xea\xb8\x29\x25\xd8\x53\xfe\xc6\x2e\x3d\x9c\x95\ +\x8f\x18\xca\xba\x9f\xf0\x31\x96\x1f\x89\xdb\xde\x70\x8e\x2e\x36\ +\xea\x58\xac\x27\xad\xde\x27\x60\x03\xd7\x4c\x8f\x2a\x20\xd2\x84\ +\x9e\x4a\x3a\x58\xe3\x9b\x73\x45\x72\x78\xcb\x63\xea\xfd\x87\xc1\ +\xff\x9c\xf6\x75\x4c\x7f\xbd\x23\xa7\x01\x2f\x6e\xaf\xbf\x78\x7d\ +\xfb\xe6\x0f\x5f\xdf\xbe\xf9\xea\xcb\xdb\xbf\xfd\xf9\xcf\xb7\xff\ +\xf5\xd7\xbf\xde\xfe\xed\xdf\xff\x7a\xfb\xc3\xd7\x7f\xb8\xbd\xf9\ +\xe2\x0b\xbf\xef\x5e\xe4\x36\x9a\xcf\x67\x7c\x1e\xc0\x8d\x35\xb6\ +\x37\x35\x78\x08\x83\x95\x73\x2b\xde\x9f\xb1\x39\xd7\xe0\xff\xa5\ +\xf1\xf0\x4f\xb9\x92\xe7\xb8\x16\x70\xd7\x40\xe3\xe7\xbc\xcb\xe7\ +\x43\xae\x99\x58\xb4\x07\x4b\x0f\xcb\x37\x54\xdf\xa3\x28\x8e\xbd\ +\x7c\xec\xe2\xb1\x39\x1b\x39\xce\x63\x60\xda\xe6\x21\xbd\xf2\x8a\ +\x39\xb6\x2f\xc6\xd4\xa7\xd3\xb6\xb1\xf0\x90\x56\x63\xed\xf5\x59\ +\x58\x79\xe3\x57\xf3\x18\xfb\x5e\xdb\xf6\xfb\x1b\x5b\x6a\x8f\xe3\ +\xd2\x62\x88\x63\x98\x17\xba\x3a\x1f\x7d\x71\x80\x91\xd3\xcf\x3d\ +\x0e\xf7\x24\x4f\x80\x4b\x3e\x33\xb9\xf6\x80\x4b\x2e\xf9\x74\x72\ +\xdd\x50\xbb\xe4\x92\xcf\x58\x7e\x17\x6f\xfe\x39\x19\xfc\x4d\x0c\ +\x76\x3f\x33\xbd\x1b\x90\xdd\x60\x9e\xb4\xe0\xa3\x95\xd9\xe0\x20\ +\x80\xa5\x10\xc3\x60\x22\x02\x9c\x8a\xdf\x7b\x42\x02\x27\x17\x43\ +\xe0\xa9\xe1\xc9\x90\xc1\x3c\x81\xc2\xc5\x14\x93\x15\xe5\x9f\xb8\ +\xd8\xb8\xf5\x95\xe7\xbf\x5c\xa4\x86\x43\x1f\xe0\xda\xe7\x8e\xd5\ +\xf8\x1b\x5f\x75\xce\x3c\x8d\x67\xf1\x32\x99\x92\x3e\x98\xcc\x89\ +\x6d\xad\x3c\xdf\xc0\x6a\xde\x4c\xce\x4c\x3d\x70\x4f\xc8\x94\x7f\ +\xc4\x0e\x4e\x26\x6c\x98\xe8\xc1\xd6\x85\x21\x13\xef\xef\xb8\xa1\ +\xc6\x84\xce\xe4\xc8\xd6\xc5\x23\x37\xdd\x98\xf4\xf1\xdc\x16\x93\ +\x45\xf0\xed\x33\xd9\xa3\xfe\x94\xe3\x9b\x6b\x6c\x7b\xc5\xd3\x2f\ +\xf9\x8c\x55\x31\x71\x7c\x19\x62\xee\x5b\x73\xdc\x8f\x2e\x4a\xdf\ +\xff\xfd\x1f\xb7\xf7\xdc\x5c\xfb\xdb\xff\xdc\xbe\xff\xfb\x77\xb7\ +\xdb\xb7\xdf\xdd\x5e\x7c\xf7\xee\xf6\x4a\x9c\xfe\x87\x26\xbf\x1e\ +\xbc\x9a\xe7\x13\x55\x8d\x71\x59\xb3\x2b\xef\x8c\x20\x74\x79\x2f\ +\xc1\x92\x75\x84\x65\x05\x8a\xc8\xf6\xb5\x98\xed\x3a\xc3\x96\xb2\ +\x25\x88\x51\x4d\x24\xd5\x52\x20\xad\x7c\xe5\xed\xf3\x3c\xcf\xc9\ +\x91\x75\xd4\x78\x24\x2b\xba\xd7\x95\xd0\xf7\xb1\xfe\x9d\x18\x50\ +\xdc\x93\x41\xce\x42\x1a\x57\x80\x8b\x4a\xdf\x70\x93\xf6\x96\x3c\ +\xd5\x9b\x5a\xc1\x2d\xbc\x96\xae\x15\x99\xbe\x98\x4c\x70\x1d\x3d\ +\xf4\x8a\xaf\xf8\x2e\x7e\xfd\xa7\x8e\x04\x8b\xae\x18\x1f\xf9\x68\ +\x5f\x9b\x4b\x4f\xbf\x1e\x8b\x53\x26\xcf\x41\xe7\x01\x0d\xfa\x54\ +\x1a\x31\x31\xfb\xc8\xea\xda\x98\x14\xf9\xb5\xa7\x23\x8f\xe1\x24\ +\x4f\x80\x43\x14\x4a\xf4\xcc\x71\x8d\x6d\x60\xa9\x99\x31\xc4\x9a\ +\xf6\xb0\x2c\x36\x96\x67\x71\x19\x35\x47\x76\x87\xba\x7c\x45\xf4\ +\x9a\x04\xe2\xbd\x26\x25\x47\xef\x2a\xbd\x57\xf5\x5e\xd4\xfb\xe7\ +\x3b\x81\x6f\xc1\x64\xff\x43\xb4\x77\xda\xd8\xef\x5e\xbe\xbe\xbd\ +\xfa\xea\xab\xdb\x17\xdf\x7c\x7d\x7b\xfd\xc7\xaf\x6f\x6f\xf8\xf9\ +\xa1\xbf\x7c\x7d\xfb\xea\xeb\xaf\x6e\xaf\xde\x7c\x79\x7b\xfd\xe6\ +\x0b\xdf\x00\x53\x93\x17\x47\x1b\x8f\x49\x8d\x57\x73\x33\x4d\xb6\ +\xbf\xe9\xc0\xfe\x22\x9e\x7f\x7a\xc8\x37\xcb\x14\x03\xc7\x06\x97\ +\xff\x4a\x31\x4f\x0a\xe1\x97\x93\x49\x20\xd5\x75\x3c\x31\x4f\x08\ +\x19\x47\xab\x2e\x38\xba\x98\x8c\xf4\xe7\xf1\x80\x6d\x1c\x6a\x11\ +\x6f\x9e\x9a\xc4\x8c\x1f\xbc\x7b\xfb\xa8\x33\xb1\xb1\xcf\x75\x5d\ +\x93\x17\x42\x58\x6e\xea\xe1\x0e\x7f\xfa\x4b\x3c\xfd\x82\x01\x8f\ +\xa6\x49\x5f\xe1\x6c\xfe\xc4\x67\x62\xca\x71\x60\x07\x96\x5e\x3c\ +\x16\x77\x1f\x3b\xb9\x06\x68\xa0\x45\x30\xd8\x31\x84\x1f\x7b\x0b\ +\x70\x6f\xa8\x3d\xd9\xd9\x57\xe6\x8f\x97\x9f\x91\xfa\xd9\xcb\xbc\ +\x0c\xfb\x36\xcc\x0b\xf5\xf1\xf2\x51\xfc\xbd\xa3\x26\x6c\xfb\xc0\ +\xfa\x8c\x91\xc2\xce\xfe\x31\x1a\xd3\xa8\x1e\xd8\x1c\xdf\xc7\x53\ +\x8b\x6d\x5f\x1f\x40\xf5\xa3\x73\xfc\xe7\x9c\x40\x0e\x88\x1f\xd8\ +\x39\x77\xa1\x8e\x99\x34\xd6\x53\xcb\x9e\x35\xfb\x2a\x3c\x2d\x21\ +\x59\x27\x16\x7b\xd5\xd9\xf2\x16\x67\x6c\x3d\xb0\x73\x3e\x55\x44\ +\x9a\xad\x31\xe7\x58\x3e\xe7\x69\xcc\x1c\x2f\x59\xa7\xc4\xe8\x47\ +\x36\xc7\x41\x6e\x9a\x49\xa1\x39\x0f\xd2\x99\x90\x6b\xf8\x46\x99\ +\x3e\x6b\xdf\x0a\x9b\x9b\x67\x9c\x07\xe5\x06\x1a\xe7\x55\x9c\xfb\ +\x64\xfd\xfd\xf3\x70\xc6\xb1\xc5\x55\xde\xba\x61\x26\x5e\xce\x9f\ +\x8a\xf1\x90\x9e\x9b\x78\xc6\xf0\x8d\xa9\xff\xb7\xef\x7c\xe3\x8c\ +\xff\xa5\xf6\x0f\xbe\x9d\xa6\x73\xa8\x6f\x7d\x83\x8d\xff\xbd\xa6\ +\xe5\xdd\x77\x8a\xf1\xcd\x36\xc6\x45\x35\x6d\xd9\xee\x33\x7c\xee\ +\xb2\x21\xfc\x47\x0c\x7e\xf2\xb9\xc2\x5a\xc7\x47\x50\xac\x6e\xa4\ +\x20\x32\x3c\x8d\xab\x6e\xcc\x73\xc2\xf3\xe2\x52\xf9\xdc\x1a\xfa\ +\xd8\xbb\x1e\x89\x9f\x76\xe2\x07\xb6\xc9\x5e\xf0\x07\xc4\xf9\x3d\ +\x21\x60\xec\xd4\x32\xe6\x8d\xb0\x17\x2a\x6e\x2b\x3a\xc6\x78\x8d\ +\xac\x94\x18\x6c\x1f\x6d\x61\x5b\x23\xce\x50\x98\x54\xec\xf1\x63\ +\x68\x41\xc6\xee\xd8\x0c\x0b\xcb\xb7\xff\x71\x08\x87\x34\xad\x75\ +\x5e\x3c\x23\x4f\xc5\x81\xa7\x72\xa2\x36\x5f\x0a\x38\x6b\xf0\x64\ +\x0b\x4b\x82\x38\x55\x63\xf4\x30\x8d\xc8\x3d\x6d\xb7\xd6\x91\x7b\ +\xa0\x4f\xab\x9d\x45\xf1\x07\x94\xf3\xbe\x75\x10\xf2\x5e\x96\xaf\ +\x75\x37\xc7\xcd\xa8\x8c\x7f\x64\x7f\x1d\x28\x76\x44\x52\x07\x40\ +\x6f\xb1\x24\xeb\x39\x37\xa3\x7d\x1d\xa5\xf7\x18\xe7\x52\xc4\x78\ +\xef\xf1\x4f\xd6\x5e\x7d\xf1\xea\xf6\xf5\x57\x6f\x74\xfe\xf4\xf5\ +\xed\x4f\x7f\xf8\xfa\xf6\xef\x7f\xfd\xf3\xed\x4f\x7f\xfa\xe6\xf6\ +\x97\x3f\xfc\xd1\x37\xd2\xbe\xd6\x39\x95\xff\x98\x88\x71\x70\xdc\ +\xe7\x36\x94\xc6\x89\x8d\xd6\x1b\xcf\x7a\x30\x6e\xb8\xf1\x56\xcc\ +\x1f\x2a\xf5\x3c\x0b\x5b\xda\xe7\x4e\x5a\xf8\x65\x80\xf5\x47\x4c\ +\x2c\xce\x47\x07\xcb\x4d\x35\xd6\x2d\xb1\x2c\x3d\xc7\xe0\x61\xdd\ +\x98\xdf\xfe\xea\x90\x9c\xc6\x86\xe7\x88\x5d\xf6\xe0\xda\x0b\xcf\ +\x02\xe8\xc7\x68\x3d\x8c\xcd\x32\xfe\x68\x8d\x8b\x9e\x82\x1d\x7d\ +\x66\xbc\xb1\x87\xef\xed\x21\xdb\xdb\x69\x61\xd8\x5a\x47\xd9\x83\ +\xc9\xb0\x3d\x18\xbe\x79\xd6\x52\xe0\xda\x27\xdd\x8f\xdd\xc6\xe2\ +\x39\xbc\xec\x4d\xfa\xae\xb3\xcc\xfb\x20\xf5\xf6\x7d\xe8\x91\x3c\ +\xad\x75\xc9\xe7\x23\xd7\xab\x7f\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\ +\x5c\xf2\x19\xcb\xef\xe2\xcd\xcf\x20\xe7\xc8\xbf\x0f\x18\xec\x9f\ +\xb2\x02\x19\x90\x4f\x58\x65\xfa\xc2\x67\x8d\x23\xc6\x7c\xac\xe6\ +\x86\x19\xf6\x86\x6b\xb1\x87\xcd\xc5\x8f\x1e\x5c\xc4\x10\x5b\x71\ +\x6b\x26\x2a\xe0\xe9\x22\x09\xc3\xfc\x4c\x96\xc8\x49\xee\x89\x7f\ +\xd4\x98\xc5\xe2\x9c\xe6\xfb\xd9\x78\xc7\xa6\x28\x07\x82\x60\x70\ +\xda\x87\x6d\x3d\xcd\x61\x2c\x2b\x8e\xa6\x5e\xb1\xae\xc3\xdc\x00\ +\x63\xf1\x78\xf1\xd7\x18\x59\x87\xd8\x4c\xec\x18\x1f\x3e\x23\x90\ +\x9f\x1b\x6a\xdc\xd4\xc2\x27\x36\x78\xfc\x4c\xfc\xc4\x7f\xcf\x5f\ +\x5c\xde\xde\x4a\x4f\x1d\x61\xba\x80\xf4\x8d\x35\x16\x2e\x2e\xf1\ +\x7d\x03\x2d\x13\x3a\x0a\xb4\x8e\xb4\xfa\xf4\x0d\x36\x6c\x38\x8c\ +\x03\x7e\xc7\x28\x62\xb4\x6a\xb1\xf8\xe7\x26\xb9\x61\xf7\xdd\x77\ +\xb7\xf7\xdf\x7e\x7b\xfb\xfe\xef\x7f\xbf\xdd\xfe\xfe\xed\xed\xc5\ +\x3f\xbe\xd3\xf2\xf6\xf6\x82\x8b\x57\xd5\x7a\xa9\x9c\x5c\xd2\x21\ +\xca\x77\x1b\x6d\xa5\x80\xbd\x42\xc8\x32\x6d\x64\xa7\xda\x31\xae\ +\xf9\xf1\xcf\x37\x29\x76\x6b\xcf\x82\xbc\x47\x2a\x10\xca\x1a\xeb\ +\xdc\xee\x97\x64\x12\x3b\x27\xc4\xf2\x14\x01\xf3\x14\x81\x63\xae\ +\x4e\xff\x73\x41\x88\xd8\xf5\x1e\x9e\x89\x99\x5c\xe9\x39\x60\x5c\ +\xaf\x29\x90\x47\xa0\xdc\x70\x1b\xa7\xed\x0c\x08\xf6\x2e\x6b\x7d\ +\x11\x17\xd0\x6b\x80\xbb\x36\x98\x23\x0e\x51\x57\xdd\xf8\xa2\x7c\ +\x66\xe9\x3c\x22\xe7\x31\x28\x98\xe0\x87\xea\x6a\x84\x5e\xdb\x34\ +\x1a\xd9\xa6\xd6\xa6\xf1\xfa\x61\x9e\x04\xc4\x59\x3f\x28\xf4\x37\ +\xf4\x19\x16\xc2\x4f\x52\x66\xdb\xe0\x9d\xd6\xda\xe2\x71\xa2\xb5\ +\x9c\xc6\x68\x59\xc6\xaa\x37\xd8\x11\x69\x6c\x72\xd5\xa6\x17\x9b\ +\xae\xcd\x36\x88\x08\x28\x17\x1c\xe1\xdd\x34\x76\xb4\x7c\x38\x2a\ +\xea\xf9\x2a\xde\xb3\xb2\xfd\xbe\x15\xce\xa4\x2c\x3f\xe7\xc8\xb7\ +\xcf\xf2\x73\x63\xb2\xc5\xe3\xe7\x34\xb9\x91\x76\x7b\xfd\xe6\xf6\ +\xea\xeb\xaf\x6e\x6f\xfe\xf4\x87\xdb\x17\xfc\xf4\xd0\x5f\xfe\x70\ +\x7b\xfd\xcd\x97\xb7\x97\x5f\x0a\xff\xe2\xb5\x27\x7d\x98\xdc\x79\ +\xcd\x84\x8c\x6f\xa6\x65\x32\xc3\x7f\x0d\x6d\x5b\x4b\x27\x6b\xfc\ +\xcd\x35\x26\x89\x64\xbf\x46\x33\xf1\xc3\x02\xcf\x37\xd9\xe0\xc6\ +\xe7\x1b\x6b\xfe\xe9\x47\xfe\x8f\x0f\x93\x29\x8a\x09\x6e\x4d\xf2\ +\xf8\xcc\x6f\x2e\x93\x2a\xed\x67\x26\x8a\x3c\x99\x83\x9e\x58\x31\ +\xeb\x62\x33\xd6\x63\x69\x8e\x96\x23\x16\xad\x01\xd8\x56\x53\x5c\ +\x98\x17\xe2\xda\xae\xe5\x79\x51\x2e\x20\x53\x35\xce\xe3\x21\x73\ +\xe7\x2c\xfb\x49\x5d\x6c\xb8\x1b\x2e\xce\xee\x13\xc7\x86\x96\x3a\ +\xe1\xb3\x40\x2d\x41\x4f\x34\x3e\x9d\x03\x15\x8f\xc3\x13\x83\xe6\ +\x2c\x0a\xb0\xcb\x58\xb4\xf3\xbc\xd4\x8e\xe3\x7d\x67\x76\xcc\x15\ +\x7d\x90\xfb\xb1\xf2\x33\x52\x3f\x6b\x59\x2f\x8c\xe4\x97\xda\x86\ +\xbc\xce\xec\x1c\xa3\xdd\x69\xf5\xd6\x7f\xcc\xb6\x70\xfd\xc4\xef\ +\x67\x96\x30\xef\x32\xf5\x7d\x6e\x20\x2f\x9f\xce\x7a\x70\x5c\xe7\ +\x51\x3c\x05\xf8\x7c\xca\x39\x80\x6d\x47\xd4\xda\x85\xdd\xf3\x03\ +\x60\xfb\x04\x78\x82\xc1\xc3\xca\xd8\x5d\xc3\xb9\x8e\x2e\x9e\xdb\ +\xc6\xf1\xcc\x2d\x66\xbb\xfe\xce\xc3\xce\x4d\xb4\xc4\x06\x9b\xf8\ +\x53\xff\xe8\x77\x9d\x3b\x15\xe7\xd8\xe8\x1b\x60\xac\xb7\xb0\xb1\ +\xdf\xbe\xcb\x0d\xb1\x2c\xdc\x48\xab\xcd\x4d\xb5\xfe\x7f\x35\x9f\ +\x33\x91\x83\x66\xa2\xbe\xdb\x8a\xf3\x2d\x3e\xcb\xf3\x0b\x02\x5b\ +\x7e\xb9\xf4\xeb\x1b\x6b\xb2\xf9\xc3\x89\x7c\x43\x4e\xf9\xf8\xaa\ +\x93\x6f\xad\xbd\xf5\x0d\xb5\xef\xa4\xb9\xa9\xf6\xed\xb7\x5a\xde\ +\x66\xe1\xa6\x9a\xbf\x61\xa3\x7e\xbc\x1d\x7c\x50\xd1\xaa\xf4\x73\ +\x24\x0b\x9f\x49\xaa\x0d\xc6\x83\x97\xc1\x3e\x74\x35\xf0\xb5\x80\ +\xe7\x33\x89\x68\x7d\x19\xf9\x8c\x81\x1b\x9e\xa5\x98\x25\x25\x36\ +\x09\xb0\x53\x96\x08\x1c\xbc\x43\x95\xf0\x39\xd6\xe3\xe3\x96\x60\ +\x4e\xc9\x86\xe1\x74\xbc\x87\x24\x61\x4b\x53\x4e\xf6\xe4\xa9\xcf\ +\x66\xe9\x6a\x1d\x7d\x6b\xa1\xcd\x9a\x8e\x74\x0c\x9b\xcc\x36\x9a\ +\x9c\xad\x94\x16\xdf\x0e\x6b\x44\xad\x14\xaf\xf9\x2e\xce\xcb\x86\ +\x8d\x83\xc8\x05\x71\x4c\x2d\xbd\x8e\x8f\x1c\xbd\xc9\x1a\xae\x83\ +\x65\xa8\x5e\xd6\x2d\xe3\x9d\xd7\xc7\xb2\x80\xe7\x44\xb1\x6e\x47\ +\xaf\xfb\x9e\xdb\x7a\x80\x81\x1a\x5c\xf1\x20\xc8\x01\xd5\xda\x38\ +\x4f\xa5\x35\x4e\x7d\xd5\x64\x45\x7c\xe2\x24\x4d\x7c\x4e\xa2\x64\ +\xb3\xce\xa7\xed\x59\xf3\xae\x8c\xc5\xe3\x72\x53\x21\xd7\xef\xa7\ +\xbc\x07\xa9\xcb\xfb\x89\x6b\x1e\x5f\x23\xe9\x7d\xa7\x37\x8c\x8e\ +\xcb\xda\x96\x3a\xa7\x79\xf3\xe6\xcb\xdb\x97\x6f\xde\xdc\xfe\xf4\ +\xc7\x3f\x68\xf9\xe6\xf6\xe7\x3f\xff\xe9\xf6\xc7\xaf\xbf\xbe\xfd\ +\xe1\x0f\x5f\xdd\xbe\xe6\x0f\x96\x5e\xbd\xf6\xcf\x61\xe7\x5c\x88\ +\x85\xee\x78\x5f\xe9\xe1\x73\x92\xdc\x14\x72\x5c\x35\xd7\x8d\x30\ +\x70\xd5\xf7\xff\x49\xe3\x3c\x4b\xb8\x6d\x0d\x91\x73\xaa\xd7\x9c\ +\x2f\xb9\x6e\xcf\x99\xc8\x25\x6f\x6a\xf6\x3c\x24\xef\x61\xec\xf1\ +\xb5\xb2\xd8\x0b\xcb\xc2\xde\x69\x9b\xfa\xf8\xb6\xe9\x2d\x7e\x38\ +\xe5\xc3\xaa\x7e\x88\xa3\x6c\xb3\x2e\x3b\xfe\xd4\xb6\x9e\x31\xce\ +\xb6\x11\xe6\x0a\xc3\xeb\xb8\xc3\x23\x7d\x8b\x33\x46\x6b\x07\x40\ +\x1b\x0f\xee\x35\xb0\xdf\x9c\xfa\xb1\xec\x0d\x5a\xbc\xd2\x1d\x65\ +\xde\x12\x7d\xc7\xb8\xd4\x3a\x7f\x7a\xb2\x37\xdd\xcb\xaa\x76\xc9\ +\x67\x28\xd7\xab\x7f\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\ +\xcb\xef\xe2\xcd\xcf\x20\xf7\x23\xff\x3e\x68\xf0\x5f\x7d\x25\x8e\ +\x01\xa5\x7b\xf9\x03\x79\x2c\xf1\x8d\xf7\xc2\x27\x12\xdc\x93\x1b\ +\xe3\x13\x97\xe5\xcb\x3c\xd9\xef\x07\xe3\xa2\x48\x79\x20\x3c\x3d\ +\x01\x44\x1d\x30\xc5\x72\x03\x6c\xc7\x58\x52\x3b\x3a\xd8\xe8\xa9\ +\x17\x1f\x75\x8e\x17\x54\xd7\xd2\xee\xf3\x1c\xcf\x32\xb5\x99\x3c\ +\x21\x26\x7f\xf1\x3a\xe9\xa1\x05\x6d\x3e\x17\x77\xf0\xe0\xf8\x1f\ +\xdd\x2b\xcc\x1a\x39\x4f\x0b\x17\x83\xe6\x57\xc3\xf3\x05\x21\x9a\ +\xbe\xe8\x27\xda\x7f\x15\xed\x89\x1b\x51\x6d\xe7\xdb\x63\xf3\xd7\ +\xd3\xb3\x98\xcf\x24\x51\x6f\xa8\x71\x81\xa9\xc6\x3c\x5d\x75\xba\ +\x0f\xf7\x07\x36\xfd\xb0\x4c\x5f\x5e\x84\x2b\x26\xc3\x36\xb8\x0a\ +\x72\x27\x40\xbe\xc6\xc0\x37\xd7\xbe\xfd\xce\x37\xd7\xb8\xa1\xc6\ +\x37\xd5\xde\xff\xe3\xdb\xdb\xed\x3b\x7e\x0a\xb2\x37\xd5\x94\xf7\ +\x92\x7e\xb8\xba\xa1\x16\xaf\xab\x85\xba\xe3\x65\x1f\x72\xf8\x5e\ +\x18\xdb\x98\x5e\xa6\xce\x21\xf1\x0e\x8c\xeb\x77\x67\x89\x1a\x3b\ +\x3d\x98\x91\xae\xa2\x1a\x28\xb4\xe4\xe4\xfb\x02\x8f\x5e\xa5\xe9\ +\xd7\xfe\x21\x89\x9e\x73\xdc\x8f\x64\xbb\xe4\xb3\x2c\x8f\x2b\x3c\ +\x3b\xcd\x74\xdd\x40\xc7\x4d\x33\x6d\x6f\xf9\x5c\x64\xfa\xa7\xb4\ +\xf4\xf0\xc5\xa7\xa8\xa1\xb4\x17\x30\x88\x92\x55\x36\xec\x83\x23\ +\x01\x87\x96\x1a\xbc\xae\x8a\x7b\xe3\xa4\xae\x63\xb8\xe6\xc4\x7e\ +\x3f\xf5\xc0\x8b\xd9\xdd\xf0\x18\x51\x0d\x37\x77\x2e\xf1\x07\x7d\ +\x2c\x8e\x7e\x98\xf2\x44\xd8\x27\xbb\x1a\xcf\x08\x81\x8e\x28\xcf\ +\x3b\x39\xf6\x29\xc4\x36\xdb\xa4\x2b\xc3\x76\xd1\x1e\xfe\x24\x37\ +\x76\xc0\xae\xb6\xb7\x05\x00\xb1\x6c\xbf\x56\x61\x70\x32\xfc\xbe\ +\x91\xed\x9b\x65\x7a\xff\xf0\x7e\xe4\xa7\x1c\xc1\x78\xdf\x31\xc1\ +\xaa\x77\xa9\xb7\x35\xff\xf3\xec\x05\x3f\x33\xf4\xd5\x9b\xdb\xeb\ +\xaf\xbf\xf2\x4d\xb4\x37\x7f\xfc\xe6\xf6\xd5\x1f\xbe\xb9\x7d\xf1\ +\xe5\x1b\xc7\xf8\xeb\x6a\x26\x62\xbe\x67\x12\x86\x89\x1b\x2d\xf9\ +\xa9\xa1\xdc\xfc\x62\x22\x23\x7e\x27\x36\xb0\x5f\xbd\xba\xbd\xf2\ +\xff\x43\xe3\xa6\x1a\x39\x60\xe2\xf1\x33\x8f\xe6\x30\x99\x22\x3e\ +\x1a\x9c\xdc\x72\x14\xe8\x5f\x57\x87\xe7\x3e\x88\x35\xcf\x13\x27\ +\xc6\xb1\x85\xf1\xc2\x78\x0c\xf1\xb1\x33\x8e\xc4\xe0\x2b\x58\x7b\ +\xf8\xc1\xa7\xc6\xf2\x6b\xb3\x50\x6f\x6c\xe3\xda\xbb\xa6\xe6\xc2\ +\x96\x26\x97\x05\x9a\x30\x1e\x53\xef\x6e\x9c\x4f\x6a\xf0\xa2\x19\ +\xcb\xba\x2f\x9e\x29\xc4\x5b\xc7\xa6\xe2\xae\x8d\x83\x46\x4d\x0e\ +\x0e\xb2\xe1\x7a\x0c\x9e\x9c\x3b\x11\xc4\xde\xc3\xbe\x84\x95\x09\ +\x2e\x76\xa5\x20\x67\x79\x90\xff\xb1\xf2\x33\x52\x3f\x7b\x99\x97\ +\xc2\x2f\x4c\x4c\xcb\xcf\xdd\xa6\x8f\x5e\xe3\x53\xcd\x3a\x1b\x2f\ +\x96\x5a\x3f\xeb\x29\x9e\x63\x36\xc8\x7c\x4e\xca\xd2\xe7\xcc\xf7\ +\x2f\xf4\x29\x5f\xae\x8f\x2e\xb2\x39\x97\x98\x9a\xc6\x39\xd6\x7b\ +\x89\x1d\x14\xca\xc4\xaa\x8b\x39\xbe\x69\x5b\xea\xeb\x09\x3e\xb6\ +\xda\x1d\xb3\xaf\x7a\x39\x67\x0a\x63\xc6\x76\xca\x0f\xc0\x27\x25\ +\x83\xc6\x93\xbb\xaf\x4f\xe2\x3e\xf7\x59\x7c\xc6\x99\xcf\xde\x8c\ +\x1d\x3e\x9f\xbd\xe2\x08\xf3\xf9\x17\x8b\x72\xf2\x0d\x35\x70\x96\ +\xda\xe6\x71\xe3\x8b\xfc\xdc\x04\x73\x0e\xe7\x53\x5a\xde\xb2\x3d\ +\xe1\xf9\xa6\x58\xfa\x78\xff\xfd\x77\x19\x83\xf3\x85\x91\x2f\x5c\ +\x74\xc7\x7d\x9e\xe6\x31\x9c\xfb\x9b\x9f\x83\xe4\x86\x9a\xf5\xdb\ +\xfc\x24\x24\x37\xd4\xf2\x4d\xb6\x59\x18\x2b\x63\xce\x39\x25\xc7\ +\x59\x15\xe4\x63\x49\xc7\x1f\xd9\xd2\x16\xef\x2e\xdd\x67\xa4\xb0\ +\xd8\x66\xc8\xfe\x39\x34\xe2\xd8\x4e\xb2\x94\x43\xfd\x3b\xfe\x3d\ +\x35\x51\x7d\x76\xf5\x24\x61\xc5\x9b\x7a\x2a\x41\x60\x40\xe4\xa5\ +\xb4\xb6\x8f\xb3\x94\xef\x30\xb5\xf4\xc8\x27\x60\x84\xed\x96\xcf\ +\x4d\x8a\x99\xea\x12\x39\x37\x09\xee\xdc\x52\x72\x9e\xa2\x66\xfa\ +\xa9\x2c\xdc\xec\x86\x95\xe4\x6b\x09\xb4\x23\xe9\x9b\x3e\xf8\xb9\ +\xeb\xfe\xf7\xb6\xb6\x93\x29\xe1\x38\x41\x5e\x91\xf5\xb9\x3e\x04\ +\xf7\x85\x1c\x00\x5c\x1d\x45\xb4\xca\x09\xba\xdf\x89\x42\x3e\x8a\ +\x6b\x69\x5d\x2c\x82\x19\xac\xb1\x89\x05\xd9\x13\x27\x7e\x16\xa3\ +\xa2\x98\xe5\x8d\x87\x11\x7c\x32\x97\x18\xb8\x43\x9f\x90\x76\x51\ +\x70\x8b\x2f\xd3\xc5\x89\x69\x99\x8e\x58\xd4\xbf\x76\x5f\xdb\x33\ +\x5a\xc3\x68\x8c\xb1\xc5\xcb\x50\xe5\xf1\x74\x4c\xb9\xec\xfb\x5c\ +\x87\xe8\x7d\xe7\x9b\x68\xbd\xe1\x4c\x51\x36\x93\x17\xed\x57\xdc\ +\x40\x7b\xf3\xe5\x97\xb7\xaf\x75\x3e\xf5\xa7\x3f\xfd\xf1\xf6\xa7\ +\x3f\xfc\xe1\xf6\xc7\x6f\xbe\xbe\x7d\xf5\xd5\x57\x8e\x79\xd1\x79\ +\xd0\xab\x57\xfc\x6f\x34\x9d\x67\x68\xc9\xcf\x33\xc6\xa6\x53\x9f\ +\x1b\xe9\x15\x9b\x73\x1e\x7f\x4b\x5f\xe7\x52\x9c\x3b\xe4\x26\x1a\ +\xe7\x27\xaa\xa1\x58\xce\x7b\xd0\xe2\xa2\x1d\xe7\x7c\x69\x8b\x79\ +\x6c\xca\xdf\x30\xfa\xe6\xe1\x3e\xeb\xab\x31\xe6\x98\x17\xde\xdc\ +\x68\xb7\xa7\xf8\xc9\x66\xef\xfa\x01\x0e\x8f\x3c\xdb\xf7\xc2\xb0\ +\xc1\xd1\x7c\xa8\x98\x51\xdc\xa8\xca\x6b\xdc\x8e\xcb\xae\xce\x32\ +\xb5\x9c\x61\x7b\xc5\x41\x8c\xa3\x8d\xae\xb8\x3d\xb6\x97\xde\x98\ +\x79\xd7\x09\xd9\x72\x23\xc1\x17\x7f\x60\xa4\x3b\x0e\xca\xfb\x89\ +\x25\xe7\x4f\x63\xff\xb0\xec\x05\x2f\xf9\xdc\xe4\x7a\xf5\x2f\xb9\ +\xe4\xd3\xc9\x75\x43\xed\x92\x4b\x3e\x63\xf9\x5d\xbc\xf9\x7b\xe2\ +\x68\xd9\x07\xfc\x63\xce\x1b\x3f\xb9\x64\x50\x9c\x0a\x73\x4d\x9c\ +\x0b\x1e\x0c\x2d\xf3\x91\x2a\xed\x8f\x57\x9e\x1b\x06\xe0\x4b\x49\ +\xc7\x0d\xfa\x19\x9f\x25\x93\x0f\xba\x7a\x6a\x6c\xf0\xda\x9e\x58\ +\x20\xaf\x3c\xf8\x5c\xa5\x11\x1b\xbe\xe3\x93\x13\x9e\x6d\xf1\x16\ +\xc7\x6a\xe2\xd0\x0f\x7e\x26\x7a\xb2\x04\x8b\x9e\xb1\x19\xf3\x38\ +\x06\x4f\x4c\x8d\x73\xed\x7b\xd2\x24\x98\xc7\xcc\xc3\xfc\xa9\xa1\ +\x98\x39\xc5\x96\xee\x22\x3b\xe3\x90\xcd\x85\xa3\x27\xc1\x6e\xfe\ +\xab\x65\x26\x7a\xe0\x10\xe3\xdb\x2e\xfe\x79\x46\xd7\xe2\x86\x57\ +\x2e\x3c\x75\xb5\xa9\x8b\x4d\xfa\x4c\x2c\x71\x2d\xba\x10\x75\xbf\ +\x1e\x17\xdc\xc4\xfc\xff\x3f\x3c\x61\x43\x59\xfa\xc8\x78\x1c\x37\ +\x97\x9b\x6a\xad\xc7\x37\xe4\xe0\x7e\xfb\xd6\x37\xd2\xbe\xff\xee\ +\x3b\xdb\x2f\x7c\x53\xed\xed\xed\xa5\x2e\x72\xf9\xd6\xda\x4b\xe5\ +\x52\x90\xc9\x03\xae\x73\xe8\x33\xbb\x88\xdb\x79\x46\x8c\xd9\x70\ +\xab\x4c\xe7\x91\x11\x84\xf1\xd8\x58\x32\x38\x92\xba\xb5\xe5\x60\ +\x4d\x45\xcb\x02\x62\x9c\x62\x15\x63\x34\x9e\x7d\xe1\xa6\x60\xfb\ +\xce\xd5\xbd\x63\x64\xda\xdd\x0a\xd8\x84\xbb\x78\xa9\xcf\x70\xb8\ +\x90\x06\x4a\x4d\x62\xe1\x50\x5b\x5b\x36\x3c\x60\xac\xc6\xb2\xad\ +\xd0\x89\xc2\x9a\xad\x60\xa9\xe9\x1b\x2c\xfb\x46\xc1\x5c\x39\x31\ +\x29\xe9\x5a\xa0\x9e\x80\x4b\xc0\xfb\x1f\xe2\x98\xc6\x22\x02\x63\ +\xc5\xf7\x76\x14\x07\x17\x21\x05\xb1\xef\xfc\xd8\x83\x0f\xe8\x8b\ +\x63\x77\x10\x99\xfc\x5d\x56\xf4\xa0\x9d\x24\x6b\x3b\x15\x23\x27\ +\x6a\x9d\xae\x61\x39\xf1\x26\x36\xc6\x72\x2b\xde\x54\x2d\xde\x8c\ +\xb6\xde\xdb\x16\x7f\x74\xe4\xa8\xed\xd7\x5c\x45\x66\x7c\xb4\x33\ +\x31\x96\xf7\x8b\x2a\x69\x9f\xe7\xe6\x99\xbf\x89\x20\xcd\xfb\xd3\ +\x6f\x47\xf2\xe9\x43\xc9\xef\x99\x8f\x7b\xfd\xfa\xf6\x9a\x9b\x68\ +\x5f\x7d\x65\xfd\xc5\x1f\xbe\xbe\x7d\xc1\x0d\xb5\x6f\xbe\xbc\xbd\ +\xfa\xf2\xcd\xed\x25\x93\x3d\xfe\xb6\x18\x13\x16\x4a\xe0\xb5\xd6\ +\x6b\xc2\xc4\x0f\x8b\x1a\x4f\xcc\x1c\xff\x9f\xe3\x95\x7d\x6e\x88\ +\x91\x43\xbe\x6f\xaa\xc9\x96\x61\xed\x89\x1c\xdf\x64\xab\xdd\xc5\ +\x35\x9c\x47\x0d\x6d\x09\xb4\x6b\x86\x47\xdf\xf1\x15\xf3\xa4\x92\ +\x6c\xfb\x19\x93\x17\xe5\x0c\x26\xa3\x38\x3c\xf9\xe6\x1f\x5c\x35\ +\x7a\xa6\x86\xd7\xab\x71\x5e\x83\x7b\x8e\xe3\x1b\x26\xf2\xb2\xef\ +\xb9\x8f\x70\xf3\x4f\xfd\x1f\x35\x65\x98\x82\x8f\xc1\x3a\x8e\x6d\ +\x9e\xcd\xa3\x96\xed\x80\x89\x2d\xbb\x31\x99\xb9\x69\x2d\x83\xb5\ +\xb1\x26\xce\x33\xfa\x5e\x98\x30\x3d\xde\x6f\x99\x74\xcd\x7e\x96\ +\x78\x04\xe7\x41\xf2\x8f\x95\x4f\x50\xe2\xb3\x94\x79\x2d\x66\xfb\ +\xdd\xfb\x3f\x45\xf6\xd7\x77\x5e\xef\xf9\xec\xdc\xeb\x3f\xb0\xa3\ +\xd4\xfa\x89\x97\xcf\x1e\x8e\xdb\x19\x53\x7d\x1a\x3e\xdb\xa4\x39\ +\xd6\x80\x1f\x31\x8e\xeb\x41\xe1\xe4\xf3\x2b\x1a\x9f\xcf\xab\xe0\ +\x1b\xd7\x1c\x02\xad\xd1\x7a\xfe\x6c\x53\x1c\xd0\xd8\x1d\xcf\xda\ +\xf6\x81\xb9\xd6\x60\xd8\xe4\x0f\xd3\x39\x33\x86\xc6\x04\xfa\x9c\ +\x45\x0f\x7f\xe6\x92\xa6\x87\x5b\x11\xfd\x87\x42\xd8\x8e\xb1\xf4\ +\x1c\x87\x73\x25\xb8\x9c\xc7\xe8\xe1\x9b\x63\x3a\x77\x21\xe6\x6f\ +\x98\x09\x67\xf1\x4d\x2f\x9d\xb3\xf8\x01\xc6\xc4\xbd\x6d\x6e\x8e\ +\xe9\x1c\x87\x18\x3c\xf2\xa9\x5d\x8e\x75\x6f\xbc\x31\xb9\x4f\x8e\ +\xcf\xa7\xc0\x35\xae\x39\xaf\xa2\x3f\xf7\x49\x2d\xc6\xeb\x38\x37\ +\xee\xc4\x55\x1e\x63\xc1\xf6\xb7\xd6\xfc\x0d\xb5\xf7\xbd\xa9\xf6\ +\xd6\x37\xda\xb8\x81\x60\x9e\xb9\xf4\xdd\xf5\xd4\xeb\xbd\x8e\x41\ +\xd8\xde\x0a\x77\xa2\x8f\xb2\x7b\xc9\x51\xac\x09\xc8\xc3\xc4\xe7\ +\x64\x92\x9a\x56\xb7\xa7\x2f\x11\x61\xf6\xab\x07\x0b\xc3\x59\x5b\ +\x22\xcd\x81\xcf\xe7\xa8\x6d\x3d\x78\x65\x8f\xa3\x33\x92\xcf\xca\ +\xac\x43\xda\x70\xb2\x8c\x7d\xc8\x19\xa5\x25\x6b\x6e\xdc\x58\x02\ +\x46\xfc\xb9\x1d\x67\x32\xf6\xde\x0f\x01\x15\xe3\x94\xdb\x9c\xcd\ +\x7f\x22\xea\x34\xeb\x47\x78\x92\x47\x23\x7b\xd2\x8e\x31\xde\x8c\ +\xdb\xfe\xa4\x21\x43\x93\xec\xdb\x66\x49\xb9\xa6\xcb\xde\x22\x87\ +\x18\xbc\xcb\x79\x28\x09\xd0\xae\x5e\x4e\x5c\x39\xda\x27\x6b\xc5\ +\x1d\x42\xd5\xdd\xe8\x8e\x7d\x45\x76\xde\xef\x5a\x0b\xd7\x50\xa6\ +\xde\x2f\x5c\xd7\xf8\x5c\x8a\x1b\x69\x7a\x0f\xb8\xbe\x7c\xf8\x9c\ +\x7b\x7c\xf9\xe5\x17\xb7\x2f\xdf\xe4\x67\x1d\xbf\xf9\xe6\x6b\xdf\ +\x48\xfb\xfa\x9b\x6f\xe4\x7f\xa9\x58\xbe\xa5\xf6\xa6\x37\xd1\x5e\ +\xeb\xd8\x9e\x6f\x8e\xd1\x61\xcf\x6d\x74\xfe\xa3\x33\x18\x1f\xb3\ +\x73\x9c\x87\x73\x7c\xf3\xdf\xe7\x48\x3e\xc7\x01\xcb\x79\x91\x6b\ +\x90\x57\x9b\x73\x9f\xe0\xca\xef\xff\x9c\x3d\x6e\xb2\x45\xcf\xb9\ +\x53\x6e\xa2\xd1\xb7\xd7\x20\xb1\x62\x7e\xa0\xc1\xf4\xc8\xf3\x1c\ +\x7b\x6a\x93\xaf\x52\x41\x9f\x72\xac\x69\x39\xaf\xd9\xfb\x75\x1b\ +\x4e\xc7\xe0\x65\x30\xe9\x8c\x35\x63\xb1\x29\x1b\x43\x6b\xe1\x75\ +\x1e\x3e\x98\x1f\xcb\x27\x07\xd8\x6d\xfb\x2b\x0f\xad\xd7\x38\x3c\ +\x47\x82\xcf\x4e\x10\xc4\xda\x38\xe6\xb6\xc3\x40\x8b\x74\x3f\xa1\ +\x9e\x08\xa7\xff\x9d\xf6\xac\xac\xe4\x4b\x3e\x63\xb9\xf6\x82\x4b\ +\x2e\xf9\x74\xa2\xf3\xd0\x1e\xf5\x2f\xb9\xe4\x92\xcf\x4e\x7e\x57\ +\x6f\xfe\x47\x83\x9d\x33\x82\x7f\xd2\x8a\xe4\x14\x36\x97\x4a\xeb\ +\xc2\x74\x1b\x8c\x3f\x5e\xbd\x84\x77\x6f\xef\xd8\xee\xfb\x02\x8a\ +\x0b\x60\x6b\x2e\x22\xd5\x76\x31\xf6\x9e\x49\x8d\x72\x7d\xf1\xb5\ +\xc5\xa9\x01\x67\x7c\x34\x18\xba\x38\x9c\x84\x68\x98\xf0\xe0\xc2\ +\x6c\xb0\xd4\x5e\xb9\x5a\x5e\x28\x2e\xd4\xfd\x26\xb7\x0b\xfe\xd6\ +\x97\x73\xcd\xcb\xe2\x49\x1e\x8f\x35\x8b\x57\xc9\xf9\x6a\x9d\x87\ +\x6e\xdc\x39\xd8\xa3\x37\x5b\x0b\x13\x30\x60\x9e\x48\x31\xf6\xd6\ +\xf1\xfc\xd5\x35\x37\xb8\x84\x31\xa1\xa3\x25\x7f\x51\x2d\xcc\x93\ +\x2f\x89\x31\x0e\xd7\x40\xc3\x73\x7f\x99\x50\x02\xcb\xc4\x0f\x1c\ +\xe1\xd4\xd0\x38\x05\x34\x4e\x3f\x47\x0d\x6e\xd6\xa5\xbf\x77\xb7\ +\x1b\x37\xd7\xb4\x58\x73\x83\xed\xad\x62\x5a\xf8\xff\x6a\x2f\x89\ +\x8b\xc7\xf6\xe3\x35\x7c\xa1\x7a\x94\xf5\x6e\x2b\xdf\x42\x37\x69\ +\xf4\x9c\x3d\x0a\x95\x78\xec\x6a\x62\x31\x4e\x42\x06\x97\x6e\x1e\ +\x73\x00\x77\x42\x35\xf7\x25\x61\x5b\x2d\xa7\x72\xe7\x1e\xbe\x8c\ +\xd9\x9f\xb9\xf0\xeb\x88\x12\x77\x6d\x2e\xf0\x40\x93\x41\x69\xe6\ +\xac\xe6\x22\x8f\x5c\xae\xef\x32\xd6\x01\xc1\xb1\x53\xad\x68\x8c\ +\x8d\x8f\xcb\x7a\x78\x72\xbf\xb6\xb9\xae\x25\x59\x89\x35\x85\x6b\ +\xab\xe6\x7a\xd2\xa4\x10\x68\xf1\xa8\xa2\xcd\x9f\xfa\x0b\x8f\xc5\ +\x36\xc9\xc5\xaf\x30\x20\xc4\x33\x1b\xc3\x55\x84\x20\x62\xac\x7f\ +\x01\xea\x81\x4e\x60\x5c\x32\x90\x2d\x01\xbb\x6a\x49\x69\x8b\x6d\ +\x8a\xbc\x01\xee\x65\xc7\xe1\xae\x81\x1e\x42\xd7\x6c\x83\x48\x5e\ +\x17\xfe\xba\x1c\x66\xda\xc8\x9e\x3a\xf8\x60\xf5\xd6\x90\xed\xc5\ +\x8d\xed\x87\x0d\xf5\x17\x8f\x09\x52\x48\xfe\x5f\x68\x68\xb9\xfe\ +\x66\x02\xb6\xa9\x99\x0c\xf4\x5f\x99\xf3\x17\xcb\x7c\x3b\xec\x4b\ +\x2d\x5f\xbc\xb9\xbd\xf2\xcd\xb4\x37\xb7\x2f\x7c\x43\xed\x8b\xdb\ +\xcb\x37\xf2\xbf\xec\x3f\xc4\xe7\x66\x1a\x73\x16\xb6\x33\x79\xc1\ +\x24\x06\xff\xeb\x2c\xff\x07\x2d\x93\x3c\x9e\xbc\x81\x63\x2d\x4c\ +\x5c\x63\xdc\x48\x33\xaf\x78\x79\xa9\xbd\xd9\x4c\xfa\x2c\x9b\x45\ +\xdb\xcd\x0b\x39\xe9\x33\xb8\x16\x8f\x41\x4b\xfd\x4c\xb2\x88\x87\ +\x42\xbf\x42\xcf\x58\x93\x2b\xe2\xc6\x25\x34\x78\x74\x6e\xbe\xc9\ +\xdf\x26\x65\xd0\x8e\x2b\x2f\xbc\xc1\x32\x06\xb0\x13\x4e\xce\x13\ +\xee\xae\x33\x86\x70\xdb\x27\xfd\x65\x40\x8d\x53\xa6\x9c\x19\x0b\ +\xa0\x29\xe0\xc4\x8b\xd9\x04\xb0\x51\xdc\xce\x81\xaf\xda\xb1\x0f\ +\x7e\x54\x24\x0e\xfb\x14\x0b\xef\x1f\x3e\x1f\xa0\x1e\xfb\x38\x9c\ +\xdd\xfe\x99\xf2\x09\x4a\x7c\xb6\x32\x2f\xc3\xc8\x6c\x4b\xbf\x78\ +\x31\x9f\x95\x7b\x8e\x6b\x15\x5c\x75\xee\x3b\xa8\x64\x87\xa8\x73\ +\x16\x7f\x22\xf9\x49\x5c\xad\x78\xc7\xbe\x83\x4d\xab\x23\x88\x8d\ +\x72\xf4\x70\x94\x63\x39\xc7\x63\x7f\xde\x07\x4f\x3e\xfc\x39\xfe\ +\x97\x2b\x6d\xae\x63\xe5\xf9\xe1\xe0\xc2\x6c\x3b\x83\x1b\x48\x89\ +\xa9\xb1\x4a\xa4\x5c\x3e\x15\xb5\xaf\x1f\xb5\x3a\x46\xa7\xec\x3c\ +\x27\x5a\xaf\xf3\x21\xe2\xe5\xb8\x0f\xc7\xcc\x90\x19\x4e\x3e\x97\ +\x59\xbf\xc6\x8c\x6f\x63\xd7\xc2\x39\x93\xbf\xe5\xa2\xed\xc0\x67\ +\xf6\x9c\xe7\x24\xc6\xb7\xfc\x83\x73\xfe\xe2\xff\x7f\xe6\x78\x96\ +\xb7\xc5\x73\x43\x8c\x73\x1c\x26\xfb\x73\x4e\x34\xe7\x51\x7c\xa3\ +\x2c\xb9\xf1\x5d\x5f\x0f\x7f\x2b\xae\xfd\x8d\xce\xff\xd2\xd4\xd2\ +\x7a\xdf\xa9\xef\xef\xde\xf7\xff\xa9\x69\x8c\x59\xc4\x43\xc3\xe7\ +\xfc\x4c\xe7\x57\x1e\xb7\xf3\xa4\xb3\x05\xbc\x3b\x69\x15\xbc\x5d\ +\x8e\xb6\xd8\xec\x6b\xa3\x97\x08\xd0\x7e\xc6\xe9\xc9\x3a\x8c\x4b\ +\x36\xf3\x59\x71\x7f\x27\x63\xef\x48\xd2\xcf\xb5\xa9\x95\x8f\x42\ +\x79\x3e\x17\xaa\xad\x8f\x55\xad\x8a\x83\x09\x0b\x0b\x31\x65\x27\ +\xc7\x22\x4e\x4d\x94\xe3\xf6\x24\x72\xec\x4f\xe0\x4e\xd8\x42\xf4\ +\x90\x9c\x23\xd3\xb8\xdd\x26\x49\xd9\x55\x98\xcf\x6e\x6f\xd9\x65\ +\x23\x69\xe1\x3b\xc3\x03\x0a\x0f\x24\xf5\x14\x09\x9c\x42\x61\xd6\ +\x6f\xa8\xd0\x49\x56\x4e\xb4\xdf\x9e\xe0\x1f\x92\xe1\x63\x78\xd0\ +\xe3\x47\x70\x23\x1a\xd9\x1e\x3b\x15\x96\x73\xf2\xe5\xda\xcf\x3a\ +\xc5\xa2\xd6\xac\x65\x90\x95\xe2\xf4\x30\xf2\x62\x56\x52\xc4\x72\ +\x98\x07\x36\xe2\x7d\x84\xf7\x1f\x7b\x32\x9a\xf7\x04\x5a\x49\xb9\ +\x8e\xc9\xaf\x5f\xf0\x0d\x3f\xfa\xe6\x3c\xe6\xcd\x17\xaf\x6f\x6f\ +\x74\xde\xf4\xd5\x97\x6f\xfa\x13\x8e\xd2\xdf\xa0\xf9\x36\xda\x97\ +\xb7\x2f\xb8\x89\xa6\xf3\xa0\xd7\x3a\x9f\xe2\x7c\x08\x9d\x9b\x68\ +\xdc\x3c\xcb\x79\x09\xaf\x53\xce\x0f\xf0\x73\xac\xf7\xb7\xfa\x15\ +\x7f\x25\x2e\xe7\x42\xeb\x8f\x91\x46\x93\x2f\xcd\x37\xd5\xe6\x7c\ +\x8c\x5a\xe1\x48\x2b\x7f\x78\xee\x63\xd9\xea\xda\xe7\x4c\xe9\x57\ +\x8d\x30\xc5\x58\x23\x34\xca\x36\x71\x7c\x7b\xf6\x1d\xb1\xdf\x78\ +\xfd\xdd\xe6\x31\xfe\x09\xd7\x32\xf9\xe8\x9c\x8f\x35\xee\xf2\xf8\ +\xed\x6f\x70\xeb\x03\x53\xb3\xb8\xc1\xb5\xf8\x5c\x49\x5a\x78\xe2\ +\xf8\x66\x2d\x7c\xf9\x78\xd8\xe5\xf9\xc9\x5f\xf8\xed\x1c\x94\xb5\ +\x0c\xef\x22\xe5\xd1\xdc\x49\xf6\x20\xf0\xee\x75\xf0\xd8\xb9\x4d\ +\x7d\xba\x7f\x9d\xe5\x69\xbd\x4b\x3e\x3f\xb9\xf6\x82\x4b\x2e\xf9\ +\x74\x72\xdd\x50\xbb\xe4\x92\xcf\x58\x7e\x77\x6f\xfe\x7d\xc0\xfb\ +\xd9\xc0\xe0\x60\xbf\xda\x4a\xa9\x23\x9f\x1c\xc7\xf4\x69\x2d\x7d\ +\xaf\x31\xe4\x62\xc8\xda\xd7\x57\x8d\x17\x43\xfb\x1a\x5a\xda\x3c\ +\xe3\xa8\x23\x8f\x09\x87\x17\xba\x90\x0a\xdd\x3d\x78\x92\xc2\x13\ +\x1b\xe6\xe4\xe2\xcb\xb9\x93\x57\x3d\xb6\x1a\xf7\x3f\x17\x6a\xc6\ +\x88\xf3\x70\x98\xf8\xd4\xc3\x67\xa2\xa3\x1c\x6b\x25\x73\x61\x37\ +\x75\xd4\x84\xdb\xb8\x72\xfd\x8d\xb0\xf2\x1d\x37\xb7\xfe\x1a\xaf\ +\x93\x8d\x65\xa2\x07\x7c\x34\xf1\xbd\x16\x63\x48\xbf\xe8\xe1\xfa\ +\x02\xf3\xfd\x76\xf3\xcc\x7f\x7d\x9d\x3e\x3c\xe1\x03\xef\x2d\xbc\ +\xb9\xe1\x45\xbd\x4c\xf8\xcc\xe4\x0d\x37\xc1\xe0\xb2\xf1\xb9\x29\ +\x77\x60\xa9\xe3\x9b\x6d\xe2\x66\x32\xa9\xfd\x37\xe6\xb8\xfb\x68\ +\xbf\x63\x2b\xff\xa6\xc5\xff\xdb\xed\xed\x5b\xdb\xb7\xef\xde\xdd\ +\x5e\xc8\xf7\xa2\xbc\x7c\x63\x4d\x97\xe2\xca\xe1\x35\xd7\x26\xf2\ +\x76\xca\x2f\x52\xe5\xe1\xcd\x6f\x35\xf1\xc8\x60\xd1\xb6\x8e\x60\ +\x65\xf2\x91\x5c\xf4\x67\x57\x3c\xc9\x1d\xf8\x24\x2e\x21\xf7\x68\ +\x37\x8e\x0c\x4f\x6e\x00\x48\xaf\x8b\x3f\xb0\x40\x8b\xcf\x05\xe1\ +\x1a\x73\x2b\x50\x71\x5d\x28\x92\x23\x33\x91\x48\x7a\x24\x14\xce\ +\x4b\x15\xb6\x8d\xab\x62\xbc\xd3\xc2\x90\x90\x08\x36\xf5\x70\x6b\ +\xb8\x6f\x3d\x4c\xc1\x6f\x5e\xb0\x78\xc6\xd5\x24\x43\x02\x19\xa5\ +\x9a\xc9\xb4\x77\x90\x5a\x2c\x91\xe2\xb1\xd6\x6b\x92\x0d\xb2\x9c\ +\x9a\x34\xe1\x3b\x05\x78\x28\xcf\x48\x47\x77\x22\x52\x19\x01\x31\ +\x5a\xca\xce\x59\x96\x63\xf5\xa4\x76\xc6\xce\xc1\x8e\xbf\x7a\xdc\ +\xb0\x43\xe8\x42\x7b\x39\x96\xdf\x07\x33\xb6\xbc\x47\x72\x33\x0d\ +\xed\x1b\x6a\x8a\x72\x53\xcd\xf3\x04\x4c\x28\xbc\x96\xc1\x5f\x45\ +\xfb\x46\x1a\x37\xcc\xde\xf8\xdb\x67\xaf\xbe\xfc\xe2\xf6\x6a\x6e\ +\xa0\x11\xfb\x82\xbf\x74\xce\xe2\xd7\x94\x9b\x5e\xca\x67\x06\xc6\ +\x93\x38\x3c\x98\xd8\xe1\x1b\x6b\x9e\xc8\x90\x0f\x1f\xcd\x64\x8d\ +\x75\x7d\x6a\x28\x1f\x8c\xff\x0d\x22\xf0\xc4\x63\xf1\xff\x4b\x03\ +\xa3\x06\xf5\xf0\x5d\x77\x26\x83\x34\x06\x73\x63\x33\xa6\x2c\xc7\ +\x98\xc6\xcf\xc2\xea\xc6\xc6\xf1\x44\x8b\xc6\x6c\xae\x30\xca\x05\ +\x4f\x9e\x8c\xe5\x5b\xf3\x30\x9e\x58\xc2\xe1\xae\x9a\x2b\x1e\x7b\ +\xfc\x13\x87\x7a\xae\xd5\xfe\xbc\xb0\x0d\x58\xaf\xbd\x0e\x26\x0d\ +\x18\xfd\x15\xef\x78\x0f\xce\x91\x13\x4c\x5a\xa5\xd1\x51\x68\xf0\ +\x40\xf3\x0e\xdb\x79\xe1\x54\x30\xbb\x83\xf9\x26\x2b\xfb\x94\x33\ +\xd4\x36\xc7\x61\x76\xba\x54\x90\x34\x61\xf9\x3f\x51\x7e\x66\xfa\ +\x67\x2f\xfb\xcb\xb0\xbf\x3c\x3f\x45\xa6\x16\xb2\x5e\xe6\x1d\x94\ +\xb0\x7f\x0c\xb6\xf6\x21\xf9\x85\xa2\x0e\x87\x3d\xc9\xe7\x10\x71\ +\xe2\xdb\xb8\xd3\xb4\x76\xd1\x3a\xf8\xfa\x2c\x0c\x3b\x71\x1f\xd3\ +\xb5\xf8\x1c\x88\xc8\xe0\x1c\xff\xf5\x90\x11\x6c\xf1\x8d\x42\x5c\ +\x58\x38\xae\x6a\xbc\x96\xe3\xb6\x4f\xdc\xc4\xa2\x93\x47\x43\x6f\ +\x75\x38\x0d\xb1\xce\xd8\x82\xfb\xe1\x38\x6e\x6c\x1e\x8e\x79\x99\ +\x71\x66\x5d\xd0\x6a\xb2\x5e\xc6\x72\xce\xc4\xf9\xd1\x9c\xd7\x10\ +\xcb\x8d\xae\x0d\xeb\xb9\x4f\xb8\x5a\xb8\x59\xc8\xb9\x8e\x70\x72\ +\x27\xdf\x37\xd6\xc4\xf7\x4f\xfc\xb2\x90\x0b\x6f\xea\x32\x86\x77\ +\x6f\x7d\xbc\x00\x63\x3c\xbe\x21\xc6\xf1\xc3\x35\xc2\x21\x07\xdc\ +\x37\xcf\x66\x51\x9c\x9b\x6c\xdc\x54\xf3\x8d\x3e\x16\x61\xf8\xbe\ +\xd9\x60\x9f\x5a\xf4\xa5\x61\xcc\x76\xf0\xb6\xf1\x16\xb2\x6d\x18\ +\x3d\xfb\x30\x4a\xf6\x71\xc6\x60\xc7\x16\x92\x2c\xbc\xc3\x1a\x69\ +\x7a\xa3\xbb\xdc\x31\x97\x9b\xcf\x39\xe4\x8e\x61\xe7\x09\x66\x01\ +\xc9\xb9\x03\xdf\xc6\x67\x57\xe5\x23\xd9\xeb\x64\x72\x3f\x3d\x53\ +\x76\x15\xc8\xda\xc8\x11\xee\xb7\x51\xe0\xe0\x02\x56\x3c\xa0\xf3\ +\xf0\xfc\xad\xb1\x39\x77\xb8\x13\xc7\xdd\xd8\xad\x6c\xc0\x74\xd4\ +\x13\x1d\x22\x00\xee\x49\xd0\xb1\x9d\x91\xd5\xfb\x92\x55\x29\xe9\ +\xa3\x0a\x3e\x12\x05\xf6\x95\x53\x27\xfe\x76\xf4\x00\x5b\xde\xaa\ +\x3d\x03\x79\xc0\xb1\x10\xae\x79\xe7\x3c\x10\xfa\x2e\x01\xaa\x6b\ +\xe3\x0f\x96\x7e\xf0\xb0\x10\xbf\x5f\xeb\xd8\x2c\xdd\xb8\x96\xfc\ +\xa1\x5f\xde\x13\x9c\x48\x71\x5e\x05\x41\x6f\x07\xdf\xdc\x7a\xad\ +\xf3\x1f\x7e\xfe\xfa\x8b\x2f\x5e\xdf\xbe\xe4\x7f\xa3\x7d\xf5\xe5\ +\xed\x9b\x3f\x7e\x73\xfb\x46\xf6\xd7\x5f\xbf\xf1\xb7\xd4\xf8\x16\ +\xda\x17\x5d\xe0\xe7\xdc\x27\x7f\x60\xc4\x1f\x24\x71\xac\x67\x10\ +\xfe\xd9\x46\xd9\x6a\xb5\x19\xb1\x73\x1e\x00\xae\x13\xa3\xdc\x70\ +\x73\xae\x96\x9e\x2f\x81\xf9\x1c\x49\x0f\x9f\x43\x69\xe1\x7c\xc9\ +\xdf\x62\xd3\x6b\x31\xe7\x58\x9c\x6b\xd8\x46\x6b\xf1\xb1\x1d\x6d\ +\x0c\x9b\xd7\x29\x5a\x4d\x62\xf5\x79\x04\x3b\x6c\xe4\x49\x4e\x6d\ +\x1e\xbb\x2f\xe7\x09\x67\xb0\xf1\x83\x41\x29\xa6\xf5\xc9\xb9\x4f\ +\x97\xe1\xb1\xbe\xe6\xc6\x97\xca\xfa\xf0\x60\x5d\x26\x6e\x6e\xea\ +\x85\x1b\x4e\x9e\x83\x61\x01\x8c\x2f\xe5\x7d\xe4\x3e\x36\x2a\x36\ +\x9c\xc2\x4b\xd8\x2b\x12\xef\xfe\x25\x93\x1e\x83\xa7\x9d\xf8\x59\ +\xa6\x90\xb3\x62\x5e\xf2\xd9\xca\xb5\x07\x5c\x72\xc9\xa7\x93\xeb\ +\x86\xda\x25\x97\x7c\xc6\xf2\xbb\x79\xf3\xcf\xf9\xdf\xa3\x01\x3f\ +\x87\x7f\x52\x99\x01\x3c\x96\x23\xc2\x45\x9d\xb8\x9c\xe1\x4a\xe7\ +\xd3\x55\x57\x43\xcc\x65\xe8\xe1\x6b\x2e\xd7\x92\x38\x1e\xdb\x98\ +\x67\x02\xb0\x4c\xb2\xcd\xc4\x83\x8b\x98\xeb\x22\xb1\x75\xd1\x95\ +\x8b\xb0\xd1\xce\x3a\x30\xd5\x62\xf1\xa6\x21\xd6\x3a\xb1\x0f\x3e\ +\x03\x73\x48\xf5\x26\x3e\x31\x72\x70\x6f\x9e\x5c\x31\xa0\x45\x18\ +\x8f\x8e\x15\xd8\x18\xfd\x41\x92\xce\x84\x4d\xfc\xe9\x7b\xe2\xae\ +\xef\x49\x0f\xfc\xe6\x48\xfb\xa6\x16\x3e\x9a\x19\x79\xc6\xb5\xe7\ +\xb9\x6e\x26\x4c\x9c\x8f\x76\x5e\x26\x62\xb2\x64\xf2\x66\x6e\xa2\ +\x05\x23\x97\x49\x1f\xea\xc9\x67\x82\x67\xf2\xd1\x8b\x8b\x9d\x1b\ +\x6d\xc9\xc9\xc4\xd0\x0b\x2e\x6a\xfd\xe2\x31\xe9\x83\x9e\x1c\xf2\ +\xb7\x7e\x95\x4b\x3d\xea\xcf\xa2\x84\xdc\x54\xc3\xe6\xa6\x1a\xbe\ +\x6c\x7f\x4b\x4d\x79\xbe\xc9\xa6\xba\xd4\x76\x2d\xad\xf5\xbc\x5e\ +\x38\xf8\xb4\xb8\x34\xd6\xe3\x5b\xca\x58\xfe\x20\x66\x3d\xd9\x5b\ +\xe3\x6f\x64\xcb\xce\x73\xef\xd6\xa7\xdc\xc2\xc1\xd4\x7a\x16\x40\ +\x32\x13\x13\x85\x70\x9d\xa9\x01\xa1\x5d\x49\xef\x03\xd6\x27\x15\ +\x8f\x75\x4c\xbc\x3f\xef\xb6\x50\x09\xa6\x1a\xbf\x7d\xca\xa2\xb6\ +\xff\x67\x8a\x11\xbe\x77\xa5\xed\x67\xbe\xc9\x93\x79\xea\x7f\xfc\ +\x52\x0e\xfa\x86\xf5\x2d\x6a\xcc\x4a\x65\x9d\x13\xe8\xa1\xe8\xb2\ +\x3b\xbd\x77\xbd\x20\xce\xe6\x78\x22\xad\x8d\xec\xf5\xa6\xcf\x35\ +\x36\x89\x57\x0f\x40\x4f\x7e\x7a\x72\x8f\xed\x62\xb8\xeb\x17\x49\ +\xce\x8c\xdb\x84\xe6\x63\xc6\xad\x23\x61\xec\x91\x6c\xf5\x58\xd5\ +\x8b\x76\x8e\x69\xd7\xcc\xfb\x4a\x04\x73\x04\x78\xe2\x53\x51\xea\ +\x71\x13\xcd\x31\xad\xc4\x7b\x26\x6b\x98\x70\x79\xfd\xfa\xf6\xea\ +\x8b\xd7\xb7\x97\x6f\xbe\xb8\xbd\xe4\x7f\xa0\x49\xfb\xe7\x1d\xbf\ +\x78\x23\xac\x37\xd8\x14\x67\x52\x46\x8d\x27\x6c\x72\xe3\x4a\x7b\ +\x44\x27\x65\x72\x33\x4b\x5a\x75\x3d\x49\x83\xdf\x9b\x68\x87\xdf\ +\x89\x9b\x72\xed\xef\x1c\xd5\xb3\x2d\x7c\x7c\xeb\xf1\xc7\x06\x9f\ +\x98\x16\xdb\xe6\x68\x5d\x64\x0b\xc8\x38\xb0\xe9\x83\x17\x0c\x0e\ +\x0f\xe7\x68\xc3\x70\xe3\x6a\x78\xec\x29\xae\x57\xdf\x25\x8a\x4d\ +\x9d\x89\x69\x51\xa3\xad\x88\xcd\xcd\x2f\xdc\x8d\x63\x3c\x9c\xd4\ +\x80\x5a\x8c\x1f\x69\x32\x4d\xaf\x32\xe3\x30\x06\x17\xca\xf0\xdb\ +\xa7\xd7\x4b\x01\x97\xa0\x69\x0d\x70\xf5\x73\x8c\xad\xf8\x23\xad\ +\xea\xe8\x1a\xc5\x63\xb3\xb3\x8c\x6f\x3d\xf1\x11\x4c\x76\x28\x94\ +\xf0\x9a\x92\x7c\x0e\x40\xf5\x7b\xea\x24\x5b\xfe\x2e\x5b\xad\x8f\ +\x96\x67\x4a\x5d\xf2\x91\xf2\x68\x7b\xef\xdb\x94\xf8\xc7\x6c\xe3\ +\xe1\x3d\xe4\x6f\x41\xcc\x11\xf3\xd4\xb0\x7f\x4c\xce\xa2\xc4\x58\ +\x9f\x5a\x7c\x16\xf1\x98\x7d\x69\xfc\xc1\x8c\x63\xd3\xf2\x09\x86\ +\x3d\xda\xac\x7c\xde\xf9\x98\x3c\x5c\x3e\xff\x30\x75\xec\x07\x5b\ +\x9f\x87\xe1\xc4\x16\x1c\x92\x1e\xaa\x87\xdf\x18\x41\x1e\x46\xac\ +\xe2\xaf\x1a\x5a\x27\xce\x05\x7c\x5e\xe4\x5c\x70\xf1\x36\x4e\xbd\ +\xd8\xd3\x7f\xd1\x75\xce\x05\x82\x9e\x85\xc7\x1a\xab\xc6\x2e\xed\ +\xf3\x14\xe3\xdf\xfb\x66\x95\x71\xd6\x55\xe7\x79\x59\xef\xf0\xfc\ +\x33\x8e\x3a\x67\x81\x97\x6f\x99\xe5\xfc\xc8\x63\xe4\x1c\x88\x38\ +\xbe\xcf\xaf\xb2\xb0\xcd\x64\xf9\x7c\xc8\x31\x69\x6e\x0a\xa4\x8f\ +\x6d\xf1\x58\xba\xd0\xb7\xea\xf1\x3f\x35\x3d\x56\xc5\xf9\x06\x9c\ +\x6f\x94\xc9\xf6\x22\x9b\x9f\x7f\xc4\x7e\xcb\x4d\x39\xc7\x34\x46\ +\xf2\x6c\x4f\x7f\xe1\x66\xbc\x59\x47\x3d\xb3\xbe\xd9\x54\x7d\xfd\ +\xbc\xe1\x06\x3d\xfc\xbb\x83\x39\x67\x1c\x09\xce\x4e\x87\xe8\xb3\ +\xcb\x27\x3c\x75\x2d\xc4\xd9\x87\x90\x9d\x7b\xc8\x54\x8a\xc4\x0b\ +\x33\x9f\x85\xf9\xa8\xcc\x88\x86\xcb\x27\x6e\xec\x64\xe6\xfc\xa7\ +\x36\x9f\xd9\xac\x5f\x3c\x3d\x8e\x5c\xc4\xb6\x3f\x54\x93\x9f\x3a\ +\x6a\x35\xf6\x70\xe6\x33\x78\xb2\x84\x8b\xef\xf3\xad\x46\xf0\x27\ +\x8a\xa4\x8e\x30\x81\xc6\x9c\x86\xb3\xf1\x52\x6a\x49\xf0\x8c\x8f\ +\x2d\x34\xb5\x46\x76\xfa\x43\x7b\xab\x75\x2f\xa9\xad\x36\x6f\xa0\ +\x01\x56\xce\xee\xa2\x2d\x8e\xa9\x31\xd8\x6d\x36\xae\x23\xc3\x2c\ +\xf8\x48\xb4\x6f\x59\x38\x69\x94\xb0\x09\x56\x01\x64\xf3\xe7\x15\ +\xca\x36\x93\xd7\x18\xfb\x26\x75\x96\x66\x7f\xd6\x7e\xeb\xda\x7a\ +\xba\x94\x9a\x17\x3a\x9f\xe1\x9b\x68\xdc\x2c\xfb\x42\xe7\x51\x5f\ +\xea\x3c\x8a\x9f\x70\xfc\xfa\xcb\xaf\x6e\x6f\xbe\xcc\x4d\xb4\x2f\ +\x5f\x2b\xa6\xf3\xac\x2f\xbe\xe8\xb7\xd1\xf4\x7a\xcc\xb9\x51\xbe\ +\x41\x96\x1b\x65\xaf\x5e\xf2\x3f\xd3\x38\x5f\xe0\x88\xcb\x71\x9f\ +\x9b\x6c\x7a\x6d\xe4\xfb\x5c\xc8\x8b\x22\x68\x9f\x0f\x24\x67\x70\ +\xdf\x6c\x33\xa6\x1c\xea\x73\xfe\x81\xef\x73\x22\xea\x35\xdf\x76\ +\x6f\xb2\xb5\x7e\x16\xec\x2c\xac\xdc\x60\x6a\xf0\xee\x62\xf7\xda\ +\xad\xb4\x72\x84\x30\x8e\xc4\x64\x0e\xc7\xf1\x2c\xc9\xb9\xb3\xab\ +\xd5\xc4\xae\xbf\xb0\xc1\x6d\xd3\x4f\xec\xe4\xd3\xfa\x64\x6b\x6d\ +\x1b\x47\xa4\x91\xc9\xf5\xb8\xac\x8d\x7a\xfd\xd1\xc1\xc6\xb6\xd2\ +\xeb\x4c\x1d\xe0\xc1\x1d\xb1\x1d\x55\x44\xfb\xc3\x48\xce\xf5\xf3\ +\x7e\x23\x40\xaa\x7f\x9a\xff\x9e\xf8\x44\x5a\x73\xc9\xce\xbd\x8f\ +\x5d\xf2\x39\xc8\xf5\xaa\x5f\x72\xc9\xa7\x93\xeb\x86\xda\x25\x97\ +\x7c\xc6\xf2\xbb\x7b\xf3\xdf\x0f\x98\x33\x82\x5f\x6d\x25\xe8\x68\ +\x3a\x9c\x53\x91\xc3\x76\xab\xc6\x1f\xa9\x6b\x4c\xd8\x73\x11\xc5\ +\xa5\xd5\x7b\x51\x72\x32\xec\x6f\xc3\xcc\x52\x5e\x96\xe4\xc5\xc5\ +\xe9\xe4\x80\x96\x5c\x90\x61\x73\x21\x17\x0d\x65\xe1\x4e\x62\x92\ +\x82\x70\xf2\x2c\xd8\x84\xf4\xc0\xf6\x05\x9c\x71\x72\x98\xd8\x90\ +\x4d\x12\xbe\x39\x98\xcd\x69\x4d\x6b\xf2\xd0\x33\xa6\xad\x86\xfb\ +\x1a\x9e\x16\x4f\x94\xa4\x50\xe3\x89\x8d\xf6\xc5\xa3\xfd\xdd\x4e\ +\x9d\x83\x3f\x39\xc1\x64\xdc\xde\x59\xa9\x61\x12\xc5\x37\xdf\x98\ +\x4c\x49\x2e\x93\x2a\xb9\x81\x96\x1c\xf8\x99\xdc\xc9\x4d\xb3\xd5\ +\x3f\xdc\x4e\xfa\xcc\x0d\x37\x0a\x7b\xc2\xc8\xb1\xa3\x96\xbf\xb9\ +\xe6\xf1\x66\xc2\x28\x93\x49\xd4\x22\x5e\xdf\xdc\xd4\x20\x67\xfa\ +\xe0\x06\x1a\x8b\x7f\x12\x52\xb1\xf8\xe1\xf9\x86\x9a\x97\xd4\x1f\ +\xed\x29\x13\x51\xbc\x69\xd7\xf6\xc3\xa9\x9d\x40\x63\x7e\x6e\xd2\ +\xb8\xe5\x49\x30\xfb\x89\xf5\x21\xd9\x1b\x63\xed\x09\x3b\xc7\xc2\ +\xc5\x9d\xc3\xe7\x0a\xbb\x77\xce\x11\x5f\x00\xc3\xbe\xc7\x07\x04\ +\x67\xf1\xfa\x19\xd0\x76\xd8\x26\x47\x18\xdb\x7b\x2e\xfc\x1d\x3e\ +\xc6\x6e\xba\x2c\xdf\x90\x84\x45\x8a\xd1\x70\xb8\xc4\xd5\xe6\x14\ +\xe8\x4c\x27\xe5\xfd\x56\x57\xf8\x54\x43\xd3\x72\xb1\xdc\x72\x2b\ +\x62\x43\x56\x7e\xce\x31\x3d\xa4\x95\xa4\xd3\xac\x4a\x36\x4c\x64\ +\xc6\x4f\xd0\x2d\xb5\x3b\x9e\x1f\x94\x8c\xea\x24\x02\x72\xb1\x1c\ +\xfb\x10\x02\x81\x58\x86\x82\x0c\x8d\xfd\xe9\x24\xe6\xa7\x8f\x59\ +\x10\xdb\xe5\xa2\xb4\xf7\x26\x26\xc7\x13\x97\xf8\x02\xc0\xd8\x35\ +\x59\x97\xf7\xac\xe3\x4b\xd6\x55\x0b\x37\x9f\x98\xb8\xe1\x2f\xa2\ +\xb9\x61\xc6\xcd\xb2\x37\x5f\x48\xbf\x89\x9e\x9b\x68\xaf\xbf\xf0\ +\xb7\xd6\xd6\x84\x0d\xba\x13\x3f\x6a\x5c\x0b\xdb\x13\x37\xdc\x18\ +\xdb\x27\x6a\x7a\xa3\x8c\xc5\x37\x87\xb6\x9b\x68\xb6\xa7\x8e\x79\ +\x99\xfc\x09\xef\xc8\x79\x52\x4b\xfd\x31\x31\x24\xf0\x14\x97\x52\ +\x3c\x13\x51\x9e\x30\x81\xc7\xd8\x12\x30\xc7\x63\x65\xdf\xec\x36\ +\xf0\xa4\x88\xb5\x36\xd0\x0b\xd5\x1f\x7f\xaf\x71\x67\xb3\xa7\x7a\ +\x5f\xd4\x22\xcb\xdb\xd3\xfd\xcb\x37\x87\x05\xbc\xb6\x82\xb5\x51\ +\xe7\x9a\x8e\x0f\x97\x90\x2a\x62\xb8\xc6\xd4\x5c\x38\x39\xf8\xc2\ +\x19\xc7\xe4\x1b\x47\x1d\xd8\xc2\x55\xdd\xe3\x73\x1f\xb2\xbb\xff\ +\xbb\xf1\x93\xa6\x7c\xd0\xea\x7b\xf1\xbe\xcc\xbe\xe4\x9a\x7a\x6f\ +\xb4\x36\xfb\x96\x77\xb2\x93\x3c\xae\xf1\x51\x32\x45\x7f\x46\x89\ +\x4b\x36\xb9\x7f\x69\x46\x66\xfb\xfe\xd8\x6d\x7d\xcf\xe7\xb5\xf7\ +\x3e\xd3\xc0\x93\x7d\xe1\x4e\x86\xba\x94\x5a\xe5\x60\xe7\xb3\x0c\ +\x3f\xb8\x1f\x8e\x1d\x1c\x0e\xb2\x83\xef\x1c\xe2\x3a\xa2\x27\x0e\ +\xd7\xfc\xd1\xc1\xe0\xac\x73\x13\x5c\xe3\xa9\x92\x98\x34\x68\xf5\ +\xe4\x1c\x18\x6e\xb0\x79\x0c\xe6\xc7\xc4\x36\xce\x8a\xdb\xef\x38\ +\xc0\x88\x0d\xde\xc5\xa8\x34\x9b\x28\xe7\x2a\xb0\x94\xc5\x79\x09\ +\xe7\x31\xa6\x7c\x7f\xfb\x4e\xe7\x2a\xac\xa7\x6f\x92\x71\x1e\xb4\ +\xe9\x2c\x9c\xcb\x40\xc9\x4d\x2b\xfa\x5d\x3f\xb1\x08\xcf\x9a\x7c\ +\x6c\xbe\xed\x3f\xb1\x7c\xf3\xdf\x3e\xb7\xca\xd0\x9c\x27\xd1\x97\ +\x70\xd7\x73\xbf\xf1\x65\xf8\x38\xa3\xb3\xad\x62\x53\x27\x76\xce\ +\xcb\x72\x43\xed\x3b\x6c\xd5\x62\x3c\xdc\x3c\xf3\x0d\x35\x72\xa8\ +\xaf\xd8\x60\xf4\xe1\x3a\xac\x87\xec\x6c\x03\x56\x5b\x5a\x0b\x0e\ +\x08\x18\xdb\x22\x90\x3d\x4b\xec\x63\x27\x4b\x8b\x2f\x7b\xdb\xf7\ +\x62\x04\xa0\x06\xbb\xf0\x84\x86\xe6\x2c\x1b\xb6\x24\xc3\x40\x86\ +\x85\x24\x3e\x2c\x8b\x9d\x9d\x53\xaf\xb5\x8e\xc8\xb4\xf9\x3c\x75\ +\x54\x0d\xe8\xc1\x39\x4b\x3e\x81\xc7\x96\x05\xdf\x2a\x19\xf9\x8c\ +\x46\xa6\xca\x51\x07\xfe\x61\x93\x68\x63\x0a\xd4\x29\xa4\x07\x1c\ +\xce\x1d\x82\x8e\x34\xe9\x94\x32\x75\xc3\x2c\x54\x2c\xad\x65\x33\ +\xcf\x92\x7c\xf2\x76\x8a\x7d\x03\x45\x77\x7b\x49\xfa\x7c\x02\x4b\ +\x5c\xf5\xfd\x6c\x31\xed\x4f\x01\x23\x7b\x67\xe8\x0e\x3a\xfd\x35\ +\x97\xa7\x01\x55\xd0\xbe\xcb\x3e\xaf\xdd\x72\x9d\xc3\x52\x97\x63\ +\xa1\x7f\x4a\x51\xe7\x48\xaf\xfb\x0d\xb3\x37\xdc\x44\xf3\x8d\xb3\ +\x37\xb9\xa1\xa6\xe5\x8d\xce\xab\xd0\xaf\xbf\xd0\xa2\xf3\x17\xfe\ +\x2f\xda\xfc\x2c\x63\xbe\x89\xa6\x92\x3e\x3f\x9a\x1b\x69\x73\xbe\ +\xc3\xf1\x3e\x7a\x6e\xa4\xb9\x4f\xe5\xf8\x6c\xa6\x35\xbc\x50\x77\ +\x30\xf1\x72\x3e\x84\x16\x53\xda\x3f\xdd\xe8\x78\xfc\x97\xea\x54\ +\xad\x6d\x9f\xff\xf4\x5c\xc1\xc7\x77\xf7\x73\x9c\x4f\xb0\x78\x9d\ +\x37\x0c\xb1\xaf\x47\x9e\x34\xb4\xd1\xeb\xc6\xd4\x86\x19\xc7\xb6\ +\xef\xa8\xa0\xd4\x4c\xbd\xc4\xa6\x8f\xc4\x37\xcc\x3a\xe7\x43\x53\ +\x3f\x4f\xfc\x7d\x6c\xd1\x7e\x78\xdd\x13\x9f\x3f\x09\x04\xa7\xc6\ +\x5a\x1f\x65\xa4\x90\x33\x96\x4e\xad\xc4\x6c\xe1\xeb\xc3\x24\xeb\ +\x5d\x31\x66\xc3\xa6\xc5\xbe\xa4\xa1\xec\x32\x04\xfb\x13\xf4\x96\ +\x21\x7d\x8c\xec\x39\x63\x5f\xf2\xb9\xc9\xf5\xca\x5f\x72\xc9\xa7\ +\x93\xeb\x86\xda\x25\x97\x7c\xc6\xf2\xbb\x7c\xf3\xff\xd3\x06\x7d\ +\xdf\x71\x4e\x68\x0f\xc9\x49\xf2\x5c\x3c\x1d\x61\x2e\xac\xc0\xa4\ +\x75\x11\x35\xe7\xbf\x60\x33\xc9\x4f\x0e\x8f\xf8\xcd\xc7\x36\xf1\ +\x7d\x2e\xdf\xde\x11\xe3\x92\x54\xa2\x3a\xf9\xe8\xce\x84\x07\x79\ +\x70\x56\x3f\x2c\xe2\x38\xb8\x63\xca\x30\x87\x09\x06\x3c\x87\x12\ +\x83\xc3\x32\x13\x45\x09\x63\x4b\xb7\xd6\xf0\x0e\x9d\x38\x0d\x13\ +\x21\x1e\xbf\xc7\x76\x70\x99\xd0\x40\xaf\x09\xa8\x99\xdc\xf0\x04\ +\x8d\x42\x5d\x17\xc7\x57\x6c\xec\x8c\x3f\x58\x70\x6f\x0d\xb6\x45\ +\xe3\x07\xb7\x71\x26\x7a\xa6\x06\xf3\x45\x9d\xec\x99\xfc\x59\x3c\ +\xc9\xa2\x85\x49\x9a\x1b\x63\x01\xeb\xa4\x8c\x63\x4c\xd4\xf4\xa6\ +\x9b\x9a\xfc\xd5\x33\x71\xc6\xa4\x27\xff\x57\x04\x3c\x93\x3f\xa9\ +\x1d\x5f\xb5\xca\xc5\xf7\x0d\x35\xe9\xf9\xd6\x1a\x38\xb6\xbf\xb1\ +\xd6\x1c\xbe\x09\x37\xdf\x5c\x53\x72\x97\x6c\x57\xd6\x6b\x5e\xa7\ +\x89\x11\x3a\x34\x0d\x6a\x19\x87\xbd\x61\x23\xd9\xfd\x0a\xdc\xef\ +\xc2\x95\x83\xd3\x0b\xbf\x91\x8d\x3f\x78\x58\x6d\xe4\x1c\xfc\xc3\ +\x42\xec\x99\xbc\x32\xbc\xbf\xd0\x83\x4b\x0a\x22\xc4\xfb\x83\xcd\ +\x00\x1a\x66\xeb\x48\xcd\x4f\xfa\x98\x6f\x48\x76\xdf\x50\xde\xf7\ +\x5a\x23\xdc\x68\xa4\x6a\x61\xf8\x53\xa3\x9d\x18\x73\xbf\x43\x46\ +\x4a\x5a\x90\x83\x02\x57\xb2\xe4\xc4\x6f\x31\x64\xd4\x1d\xfd\x24\ +\xf0\x55\xf3\x58\xa3\x8a\xd7\xa5\x05\xb6\x90\x79\x4f\x8a\x6d\xd9\ +\x8f\xc2\x12\x18\x74\x35\xb1\xa5\xe9\xa7\x3a\x7e\x62\x7e\xff\xe0\ +\x63\xab\xd5\x9e\x1b\xe7\xa5\xc6\xca\x78\xb5\xcc\x8d\xb1\x17\xaf\ +\x5f\xdf\x5e\xf0\x93\x8d\xf3\xad\x33\xdf\x50\xe3\x66\x1a\x37\xd1\ +\x84\xcb\xe6\x06\xd6\x7c\x4b\x8c\xc9\x03\x26\x5b\xd4\x78\x52\x22\ +\x37\xc4\x72\xf3\xc7\x13\x33\x70\xac\x95\x4b\x6c\xf0\xf2\x3c\x61\ +\xa3\x25\x13\x48\xd4\x65\xf2\x26\x31\x30\x62\xf6\xc5\xf7\xa4\x0e\ +\x36\x13\x16\xe2\xe6\x2f\xb7\x99\x18\xea\xe4\x10\xdb\xd8\x63\x91\ +\x2f\x45\x7e\xb8\x2c\xc5\xb5\xda\xbe\x61\x27\xe3\xc5\x2b\xf6\xbf\ +\xf4\x61\x9e\xf3\x85\xf3\xc0\xd6\x12\x4d\xbd\xd8\x5e\x9c\x1c\xbe\ +\xe3\x8c\x4b\xbe\x1a\x36\x6a\x30\x2c\x8d\xd9\xdb\x76\x2d\x8a\xe9\ +\x61\x8c\x1c\x3d\x9c\xcb\x83\x9a\xe4\xba\xb6\x7c\x2d\x32\x30\x9d\ +\x47\x7f\xde\xce\xed\x77\x38\x63\x7b\x3b\x49\xf3\xcd\xb6\xc1\x77\ +\xde\x59\xa3\xd4\xd0\x3f\x6f\x32\x95\xc7\x36\x04\xe6\x27\xb8\xdb\ +\x85\x79\x9f\x31\xa0\x86\x9d\x0b\xa5\x86\xbd\xcb\x35\x3d\x99\x44\ +\x08\x62\x79\x4e\x1a\xc1\x7f\x46\xee\xa9\xf7\x32\xa9\x6b\x0c\x97\ +\x7c\x32\xf9\x98\xed\xfe\x63\x64\x5e\x23\xef\x23\x7d\x61\xf7\x3e\ +\x0a\x21\x03\xaf\x6e\xf6\x98\x3f\xb7\xc8\x0d\x90\x4f\xb1\xe0\x60\ +\xf1\xd5\xda\xc5\xe6\xd3\x6d\xb0\x70\x40\xc2\xe5\x38\xce\x67\xa1\ +\x8e\xcb\xf6\xc3\x81\xa1\x03\xba\x8f\x15\xc6\x4f\xb1\xe6\x6a\x41\ +\x1f\xb5\x0e\x8c\x07\x72\xf2\xad\xa5\x6a\xaf\xbc\x8d\x63\x7b\xcb\ +\x3b\xd5\x16\x7e\x3e\x07\x94\x85\x1e\xbe\x70\xd6\x03\x7b\x9d\x87\ +\x69\xf1\x4d\xb2\x62\xb9\xe9\x14\xbd\xb8\xb6\x27\x9e\x1a\xf3\xcd\ +\xb5\xe5\x73\xbe\xe5\x05\x3b\x35\xe6\xbc\x29\x1c\xce\x7f\xfa\x53\ +\x8f\x3c\x84\x73\x1e\xc4\x79\x17\xe7\x50\x3e\x77\x72\x7f\x83\xc9\ +\x86\xe2\x73\x5b\x30\xbd\x06\xab\x56\xf2\xf3\x7f\xd4\x8e\x7e\xbf\ +\xf3\x4d\xbe\xdc\x70\x73\x8e\x7c\xbe\x7d\xb7\xf2\xc0\xe8\x07\xbf\ +\xeb\xae\x67\xb6\x1d\xf8\xda\x6e\xd9\x5e\xdd\x72\xd5\x12\x70\x1f\ +\xc8\xb3\xd7\x0d\xbe\x31\xb4\x1b\x9e\x63\x23\xc7\xee\x49\x1b\x4e\ +\xda\xb3\x1c\x51\xd9\x32\xf8\x88\x05\xdb\xb3\xe6\xad\x41\xe3\x33\ +\xa7\x7c\x00\xdb\x3f\x4b\x89\x8d\xe7\x33\xd6\x15\xec\xef\xe3\xb6\ +\x88\x40\x44\x5b\x2f\xfd\x12\x9e\x5c\x3d\x16\xbf\x27\x33\xf4\x6b\ +\x8e\x71\xf1\x84\xef\xff\x27\x2e\xa3\x43\x68\xc3\xd9\xdb\xa0\xd8\ +\x87\x3f\x02\x92\xc1\x0a\x97\xf2\x26\x37\x0d\x87\xa0\x64\xf4\x49\ +\x52\xd1\x7d\x34\x29\xeb\x61\x33\x32\x1d\x9d\xf2\xeb\x6c\xdc\x31\ +\x47\x3c\x1c\x35\xe9\x61\x93\xe5\x9e\x33\xd8\x87\xf6\xe1\x5a\xb4\ +\x9f\x51\xc8\x35\xbc\xad\x38\x06\x6a\x1d\x95\xf6\x9a\x1b\x50\x3a\ +\x9f\xe2\xa7\x1c\xf9\x36\x9a\xb5\xce\xa3\x6c\xbf\x79\x13\x5f\xe7\ +\x57\xfe\x29\x47\x6e\xa2\x71\x7e\x25\x3e\x37\xca\xfc\xd3\x8b\xfd\ +\x03\x9e\x9c\xbf\xe4\x66\xcf\xba\xd1\x65\x5b\xe7\x66\x68\xdb\xb3\ +\xb0\x8f\x71\xfe\x10\x9f\x1b\x6f\x3e\xe7\x5a\xf1\xd4\xf1\xcd\x38\ +\xe9\xfc\x01\x13\xe7\x4f\xc9\x79\xf1\x7d\xce\x99\xe0\xfa\xdc\x8a\ +\x7a\x1a\xc7\x9c\x6f\xcc\xe2\x5c\xdb\xec\x59\x59\xdf\x75\xee\x04\ +\xce\x76\x73\x5c\x3a\x23\x82\xc6\x73\xc5\x9d\x6f\x90\x3c\x07\x82\ +\xd9\xc9\xe2\xc7\x60\xe8\xfa\x66\x1b\xa7\x32\xda\x48\xed\x63\x1c\ +\x73\x43\xcd\x2d\x63\x1d\x4c\xcb\xce\x5d\x39\x60\x7a\x1d\x83\xe1\ +\x0e\xee\x88\x1f\x0e\x10\xaf\xcd\x3e\x11\xbb\xac\x3d\x8e\x78\xbf\ +\x45\xa2\x09\xdf\x0b\xef\x2c\xf6\x2b\xff\xcf\xd9\xc9\x33\xf2\x63\ +\xe4\x41\xe1\x4b\x3e\x3b\xb9\xf6\x82\x4b\x2e\xf9\x74\xa2\x73\x04\ +\x9f\x72\x5c\x72\xc9\x25\x9f\xa1\xfc\x6e\xdf\xfc\xfb\xc0\x39\x2b\ +\xf8\xd5\x57\xe4\x51\x87\x1a\x08\x4f\x85\xe6\xc2\xcb\x43\x5b\x1f\ +\xb1\x42\xb9\x78\xc7\x2f\x96\xa1\x3b\xc1\x38\x0b\x17\x6e\xc4\xc3\ +\x00\xc3\xcd\x24\x8e\x15\x91\xb9\x38\x23\xc8\x74\x37\x93\x0e\xc2\ +\xdd\xb7\x73\xf5\x70\x5f\x9e\x8d\x80\xea\x7c\x57\x9c\xbc\x2e\xc7\ +\x0d\xaf\x03\xdb\x39\x7e\xc8\x0c\x4e\x2d\xc6\x41\x2c\x35\xa3\x18\ +\xd8\xe4\x24\x6e\xdb\xb9\xb5\xd7\x64\x06\x35\xf0\x33\xc1\x62\x6d\ +\x4c\x74\x26\x48\x30\xf0\x7b\x03\x11\x96\x54\x6c\x63\x4c\xb4\x48\ +\x1b\x97\x66\xfd\xba\x8e\xb9\x79\x16\x1c\xed\x3e\xd1\xca\x0d\xfe\ +\x54\x67\xe9\xe4\x4d\x6f\x72\xa1\x89\x7b\xc2\x86\x1b\x61\xb2\xdf\ +\xaa\xa6\x63\xc2\x18\x73\x26\x6f\x18\x0f\xe3\x4f\x3e\xf1\x35\x41\ +\x84\x36\x07\x5c\x71\xd5\xf4\x52\x3b\x33\x45\xdc\x64\x4b\xdd\x63\ +\xf1\x8a\xd8\x9e\x6f\xad\xb1\x91\xa9\x67\x9c\x85\xed\x2a\x6a\x77\ +\x30\xc2\xc5\x47\x9d\xb1\x48\x6c\x52\x22\xf2\x57\x78\xe7\x1d\x72\ +\xba\x60\xf3\x85\x1f\xe6\xc1\xc5\x1a\x0e\x3d\x72\xc9\x3a\x36\x11\ +\x5f\x90\x8a\xcf\x85\xa7\xbf\xd1\x94\x32\xce\x61\xbd\x98\xef\xf7\ +\xff\xed\x28\x1f\x4d\x1b\x19\x3f\x17\x90\x4c\x68\x51\xdf\xdb\x63\ +\x09\x31\x6d\x27\xf7\x33\x08\x66\xeb\xd9\x51\x0d\xc2\x73\xb1\xaa\ +\x3a\xd3\x9b\x45\xb8\x7d\x73\x0d\xd0\x9c\x39\xae\xd5\xf7\xd7\x86\ +\xc6\x5b\x89\x56\x74\xb3\x33\x52\x68\x90\x8d\x77\x78\xe2\x9b\xa4\ +\xe5\x18\xdb\xc4\x8c\xcc\xd8\x25\xf1\x65\xcc\x80\xeb\x8e\xf0\xfe\ +\x59\xbd\xd5\x60\x93\xc1\x49\xf5\xc8\xc2\x64\x44\xc7\x47\xec\x6b\ +\x61\xd7\xd4\x46\x4f\x5f\x9e\x38\x91\xc3\x8d\x34\x2f\xdc\x40\x63\ +\x22\xe8\xd0\xb9\x89\x26\xff\x55\x6f\xb2\xbd\xec\x8d\xab\x99\x84\ +\x99\x3a\xd2\x99\xc8\x49\x1c\x3f\x93\x38\xca\x11\xd7\x93\x34\x73\ +\xa3\xec\x45\x7c\x76\x96\xf9\xd6\xd9\xfa\x86\x99\x67\x71\x98\xcc\ +\x01\x3f\x6a\xc2\xf5\x8d\x33\x3d\x5c\xa3\x38\x9c\xd1\xee\x17\xae\ +\xfa\xf6\x5f\x6b\x73\xb3\x4c\xf5\x05\x3a\xb6\x6e\x46\xf1\x68\x0d\ +\xe7\xc1\x65\x61\xc3\x40\x97\xad\x36\xba\x31\xc6\xb4\x78\x3b\xee\ +\xda\x87\x3d\xb8\x27\x69\xf8\xd9\x48\xff\x84\xd2\xce\x7f\xa4\xc5\ +\x75\x2e\xee\x5d\x3c\xa0\x9e\x70\xa4\x19\x33\x0f\xaf\x0b\x21\xc6\ +\x9c\xf8\xe8\xc9\x67\x79\x52\xcf\x9a\xb2\xe2\xbb\x3a\x0e\xae\x41\ +\x3f\x8d\x8e\x36\x2e\x99\x1d\x09\x01\x92\xbf\xed\xc2\x16\xdf\xcc\ +\xab\xed\x9d\x6f\x88\x4b\xee\x12\x76\x99\xd0\x4e\x1f\xf9\x40\xda\ +\x25\x9f\x50\x3e\xe5\xb6\x5f\xaf\x7f\x05\x13\xcc\xda\x88\xec\xc4\ +\xf9\xbc\x7a\xd4\x4d\x68\x6d\xfd\x61\x36\x48\x0b\xc8\xf7\x63\x70\ +\x7c\xdb\xa0\x1c\x4c\xeb\x9b\x17\x34\xdf\xe6\x0a\x1e\x3f\xf1\xf7\ +\xdf\xbf\xb5\xef\xe7\x16\x27\xe6\xc7\xf0\x1e\x60\x07\x97\xa7\x1a\ +\x1b\xb5\x76\xee\x68\xb0\x89\xd3\x2e\xbf\xb6\x70\x22\xd8\xab\xbf\ +\x2e\xe0\xd1\xc0\x44\x1b\xd3\xb9\x05\xb6\x6f\x8c\x91\xe5\x34\xce\ +\x61\x74\x5e\x33\xe7\x4a\x3e\x87\xd1\xf9\x0e\xdb\x06\xdf\xe7\x22\ +\x8a\x89\xec\x1b\x5b\xe4\xda\xe6\x1c\x29\x39\x3e\x5f\x52\x6c\xdd\ +\x50\x6b\x8d\xf5\x8d\x35\xf2\x5a\x8b\x9b\x62\xf4\xe9\xf3\x28\x78\ +\xaa\x85\x3d\x7d\xaf\x7e\xd0\xc6\x19\x06\xe3\x6b\x6d\x2f\xf4\x27\ +\x8c\x1b\x68\xb2\x5d\x4b\x63\xc9\xb7\xd7\x8e\x7a\x8c\xcf\xdf\x80\ +\x23\xae\x25\xeb\x98\xf5\xd1\x93\x5b\x77\xde\x6e\x2a\xe6\x71\x78\ +\xcb\x55\x83\x5b\x5b\x88\xd7\x94\x10\xc1\xdf\x77\xd3\xd9\x8f\xe3\ +\xdf\xa3\x87\x10\x19\x0c\x9b\x4f\xea\x7c\x46\x66\xff\x76\x5d\x7f\ +\x46\xe6\x1c\x83\x3f\xaa\x58\x3f\xf8\x28\x22\x6f\x87\xa3\xfa\xb9\ +\x3e\x79\x5a\xb3\x7a\x12\x4c\x12\xf2\xac\xbf\xe9\xcd\xb4\x56\x93\ +\x3f\xec\xc0\xa0\x57\x9d\x63\x11\xcd\xa0\x4a\x84\x89\x04\x67\xec\ +\x86\x03\xde\x49\x23\x04\xe1\x55\x0f\x99\x92\x39\x9d\xcd\xfa\xed\ +\x71\x53\xf6\xbe\x90\xf1\xb7\x1a\x96\x1d\x97\xd8\xcd\x49\xdb\x9d\ +\x88\xe0\x58\xbc\xa3\x7e\x65\x4b\x49\x17\xbc\x06\x6a\x07\xdc\xe8\ +\x33\x84\x29\x85\xb0\x7f\x1b\x57\xc0\xba\x41\x8e\x79\xac\x6b\xce\ +\x5d\xb8\x19\xf6\xca\xdf\x42\x63\xe1\x66\x19\x37\xcd\x5e\xeb\x1c\ +\xea\xcb\x37\xf9\x76\xda\x6b\xc7\xb1\xb9\x99\x96\x6f\xad\xe5\xdb\ +\x68\x3a\x4f\xe0\x1c\x4c\xd5\x39\xe6\xe6\x5b\x68\xf2\x7c\xe3\x4c\ +\xfb\x09\x8b\xce\x8d\x8e\x9b\x64\x5a\xfc\x47\x3e\xf9\x46\x53\x6e\ +\x90\x29\xd6\x3c\xc6\xe3\x9a\x93\xe3\xf8\xf0\x7a\xae\x45\x9e\xed\ +\x68\xef\x0f\xe4\x31\x0a\x69\x51\x55\x5f\xda\x0b\x51\xd6\x95\x85\ +\xd8\xe1\xab\x91\x55\x0e\xbe\xbc\x3c\x69\x84\xf3\x58\xbe\xbd\xf0\ +\x76\xdb\x9a\x2d\xba\x61\x5b\xfc\xe0\x1c\xda\x8f\xbb\xd8\x8e\x3f\ +\xe5\x65\x8c\xc8\xe1\x67\x3b\xc0\x95\x93\x1c\xf3\xb1\xbc\x01\x88\ +\x54\x83\xe3\x81\xfb\xe9\x1d\x21\xb5\x4c\xf2\x32\x7d\x58\x66\x47\ +\x01\x8f\x5a\xc2\x3e\x36\xbb\x1d\x29\x6c\xa9\xf8\x83\x4a\x30\xb7\ +\x9c\x38\x5b\x7c\xc9\x89\x74\xc9\x67\x2a\xd7\x5e\x70\xc9\x25\x9f\ +\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\xcb\xef\xf2\xcd\xbf\x0f\x7a\xce\ +\x08\xee\xb1\x5f\x6d\xc5\xa6\xa3\xa3\x53\x4e\x85\x73\x01\xb6\x0d\ +\xc3\x06\x17\x64\x32\xb4\xcc\xc7\xae\x6f\x9e\x89\xe8\x9b\x25\x12\ +\x5f\xc4\x6b\xc9\x5f\x43\x26\x6e\x8c\x18\x97\xc8\x5c\xf0\xc3\x15\ +\xc6\x25\x68\x54\x26\x83\xec\xe8\xc9\x04\x03\x86\x5d\x66\x0b\x3a\ +\x49\xc0\xcc\x41\x74\x6b\x3e\xb4\x49\x4d\xbd\xe0\x98\xd2\xab\xaf\ +\xc1\xe1\xa7\xde\xf0\xf8\x86\x15\x9a\x9b\x44\x19\x6b\x73\xbd\x1c\ +\x7d\x7b\x7c\x7b\x2e\x93\x1c\x13\x57\x7d\xe2\xe1\xbe\x97\xcd\xf8\ +\xcb\x75\xdf\xb2\xdf\x69\xd9\xb6\x85\xed\x77\xe4\x89\x2b\x5e\x26\ +\x71\xa4\x19\x87\x73\xa8\x9b\x49\x98\x4c\xee\xb4\xe6\xe6\x9b\xeb\ +\x09\x22\x34\xb9\xb2\x3d\x49\x54\xdc\xf9\x4c\xd2\x28\xc7\x63\xc9\ +\x04\x8d\x82\xc2\x33\x0e\xd7\xf5\x98\x13\xcf\xd8\x6b\xc3\x75\xad\ +\xd1\x19\xc3\xd8\x87\xcf\x98\xe0\x6c\xb6\xc7\x8f\x5f\xdb\x0b\x8a\ +\x86\x9d\x47\x7d\x04\xa0\xb5\xb6\x1b\x2f\xbc\x58\x9b\x1a\xac\x82\ +\xeb\x59\x8c\xd8\xec\xbb\xde\x2f\xa5\x98\xe7\x5f\x93\x25\xa6\xd0\ +\xd8\x53\x9b\xbd\x3d\xa8\xb3\x6a\xc5\x1e\x64\x89\xa8\xbe\xa0\x64\ +\xac\xad\xeb\x39\x78\x19\x8c\x77\xf8\x5c\x2c\xc2\x65\x4c\x5a\x73\ +\x8b\xe7\x45\xe0\xcb\x66\x53\x0c\x39\xef\xa1\x38\x87\x09\x61\x17\ +\xc0\x24\x65\xbb\x8c\x7f\x96\x83\xf5\x58\x1c\x9f\xb4\x92\x66\xe4\ +\xf7\x15\x67\x73\xae\x8a\x02\x6c\xa9\xc9\x3a\x35\xe3\x3e\x51\x12\ +\xa6\xb4\xd5\xd8\xe9\x10\x2f\x29\x47\x92\x31\x35\x83\x1c\xeb\x18\ +\x19\x1f\x3d\xdb\xd3\xdb\x7f\x6c\x16\x35\x8e\x91\xe6\x45\x7c\x26\ +\x11\xb8\x31\xf5\xfa\x85\x27\x80\x7c\x93\xca\x37\xcf\x66\x79\x7d\ +\x68\xf0\x72\x3c\x01\xe3\x49\x16\xbd\x5a\xd5\x6b\xe1\xf5\x97\x66\ +\xb2\xc6\xf5\xd0\x13\xeb\xcd\x34\x4f\xee\x0c\xc6\x64\x8c\x38\x33\ +\xf1\xb3\xea\x7e\x21\xdb\xff\x43\xac\x13\x3c\x8c\x95\x38\xbf\x77\ +\xe4\x9a\xed\xa7\x7c\xf7\x87\xad\x3e\xcc\x75\xdf\xe4\xb2\xae\xcd\ +\xf7\x92\x3c\x99\xb2\x8b\x73\xdf\x8d\x3d\xef\x34\x31\x44\x3c\x7c\ +\x35\x5e\x9c\xcb\xa2\xf1\x2c\x1f\x22\x3b\x79\xf9\x14\x4e\xce\xf4\ +\x55\x9e\x63\x66\x5b\xdb\x76\x3c\x78\x7c\x29\xad\xb3\x27\x57\xed\ +\x53\xe3\x78\xbd\x56\x5d\x1e\x68\xf7\x8b\x86\x22\xdb\x7d\x05\x9f\ +\xff\xb9\x66\xdc\x79\xc4\x0e\xbd\xdb\xd9\x7b\xc6\x6f\x5f\xf6\x65\ +\x57\x9b\x3f\x32\x3b\x56\xc5\xfb\x97\x73\xf4\x4e\x41\x0b\xf0\xee\ +\x7c\xff\x66\xb2\xa4\xb7\xa7\x7a\x93\x7b\xfa\xbd\x3c\x2a\x77\xc9\ +\xa7\x97\xfb\x6d\xff\x53\xb6\xb3\x6b\xcc\x8b\x74\x57\x70\x87\x36\ +\x7b\xd8\xcf\x09\x9f\x73\x39\x3e\x26\x61\xda\x1c\x0b\x1d\x35\xe8\ +\x63\x39\x8b\x1e\xf3\xe9\x98\x94\x03\x5f\xc7\x74\xc7\x8a\x7b\xe1\ +\xd3\xf2\xb0\xd5\xa6\xe6\x86\xa9\xa9\x9f\x9a\x39\xb7\xe9\x27\x30\ +\xb6\xdf\x08\x5a\x74\x40\x0b\x0a\xbb\x31\xe7\x11\xa7\x36\x50\x30\ +\x62\x3e\x87\xb2\x6d\xf2\x16\xb3\x57\x5b\xed\x2c\xe3\x2f\x3c\xeb\ +\xe2\x6f\x83\x0d\x67\x70\x9d\x6b\xe8\xac\x44\x3c\x69\x9f\xef\x68\ +\x64\x60\xc4\xd8\x06\x3d\xd7\xf2\x39\x12\x0f\x71\x18\x8f\x7f\x42\ +\x7b\xdd\xec\x92\x6f\x9d\xf3\x26\x6a\xf8\xfc\xc9\x58\x17\xea\x69\ +\x31\x46\x5c\x75\x35\x22\xc5\x52\x7f\xce\x9b\x1c\x23\xd2\x3c\xc6\ +\x99\xfc\xb9\x41\x86\x0e\x2f\x7f\x08\x95\x38\x37\xd5\x72\xce\x76\ +\xe4\x1a\x17\xe7\xd4\x27\x18\xeb\x2e\x3d\xdb\x41\x25\xac\xb3\xb9\ +\x84\xf5\xe0\xaa\x27\x00\x4f\x8b\xac\xda\xd5\xda\x29\x9d\x67\x33\ +\x9f\x9b\x27\x29\x89\x3c\x7f\x7e\x5a\xca\x5a\x3b\xf4\xec\xe8\x1b\ +\xc3\x9f\x99\xca\x2a\x40\x84\x8f\xdb\xe9\xb3\x74\xe3\xc8\xc4\x5a\ +\xd9\x92\xcf\xe7\x03\x49\x4a\xf8\x56\xe6\x17\x6d\x7f\xfc\x3f\x57\ +\x9f\x5f\x39\x9c\xcf\x6e\x53\xca\x5b\x96\xf0\x59\xef\x48\x2a\x67\ +\x3d\xa5\x89\x51\x6b\xa1\x56\x19\xa7\x4c\x36\x2f\xc2\x7b\x00\x86\ +\x79\xca\xc9\xfa\x2a\x48\xdc\xc4\xe6\x2b\xb6\x42\x32\x6c\x23\xae\ +\xe3\xc6\x72\x58\x8f\xa4\x59\xa7\x71\x6f\xb2\xe3\xe9\xf6\x10\xc7\ +\x02\x66\x9d\x0e\xca\x3a\x1f\x65\x8c\xd2\x2c\xfe\x23\x21\x9d\x6f\ +\xbc\xd6\x79\x01\xdf\xda\xe7\x67\x1a\xe7\x27\x1d\xf9\x03\xa4\x2f\ +\xc0\xb4\x7c\x21\x0e\xdf\x38\xcb\x8d\x33\x9d\xdd\x0c\x06\xaf\xff\ +\xcb\xec\x15\x3f\xad\xa8\x3a\x39\x9f\x69\x7d\xfb\x70\x38\x4f\x52\ +\xdf\x8a\xcd\xb7\xf1\x9d\xc3\x31\xdf\xcb\xf0\x8f\xf3\xa1\xd7\xce\ +\xd1\x79\x8e\xb9\x8a\x81\x6b\x11\x71\xf1\xe6\xfc\xc9\xdf\x86\x93\ +\xcd\x39\x08\xeb\x4b\xdc\xe7\x48\xba\x48\xc8\xb9\x52\xea\xfb\x51\ +\x9b\xb1\xb8\x4f\x32\x26\x0e\x5e\x8e\x05\xce\xf2\xd1\xb4\xe4\xe1\ +\x3a\x22\xa5\x31\x25\x5a\xec\x1c\xdb\x6b\xf2\xc8\x73\x8b\x8d\x6f\ +\x0c\x27\xb8\x2c\xd9\xc1\x7d\xb3\x6c\x1f\x8b\x16\x36\x67\xfe\xd0\ +\x69\xf8\x06\x0e\xdb\xb4\xe4\xe4\x69\x40\xfb\x81\xf4\xd8\x5a\x9c\ +\x83\x8f\x16\xdf\x21\xfb\xec\xcf\x58\x89\x19\x1d\xb3\xc2\x5e\x96\ +\xdd\x8f\xed\xac\xed\x2e\xfe\xe9\xbd\x71\xc7\x7f\x5e\x3e\x9a\x78\ +\xc9\x67\x20\xd7\xde\x70\xc9\x25\x9f\x4e\x74\xec\x7f\xee\x6c\xe2\ +\x92\x4b\x2e\xf9\x57\x97\xdf\xed\x9b\xff\xd1\xc0\x39\x3b\x98\x93\ +\xcb\x5f\x64\xc5\xa6\x38\xb2\x77\xb4\x9f\x96\xc4\x0f\xd2\x0b\x47\ +\x89\x99\x76\xd4\xc8\xe0\x63\xd7\x17\x85\x25\xe8\xd2\x35\x5a\x2a\ +\x97\xdb\x75\xf4\x9c\x2a\xc9\x01\x60\x12\x01\x16\xf6\x51\x2f\x36\ +\x93\x02\x26\x3b\x6f\xfa\xb1\xff\x7e\xf8\x3c\xef\x62\x77\xb6\xfb\ +\xb6\xbb\xc5\x03\x1c\x7e\x97\x93\x9f\x99\x08\x2d\xef\xac\x3d\xf1\ +\x33\xb1\x93\x7d\x4c\x5e\x18\xf3\x64\xc6\x81\x51\x27\x7e\xb6\x43\ +\xbe\x41\x56\x6c\x26\x3e\xbc\x3a\x4c\xd6\x04\xcf\x4d\x2b\x26\x4a\ +\x8e\x5c\x26\x7b\xc4\xd2\x70\x32\xd9\xe3\xf1\xc1\xa1\xc6\x2c\xe2\ +\x7a\xe2\x48\x7d\x10\x8b\x9d\x85\x7c\x70\x4f\xc6\xc8\xce\x64\x4d\ +\x7c\x6a\xcd\x64\x11\x5c\xff\xa4\x10\xe3\xc0\xf7\xe4\x90\x1e\x53\ +\x47\x0b\x03\xf2\xcd\x33\xc5\x05\x98\xa3\xa2\x7a\xa6\x5f\x66\x71\ +\xf2\xed\xb5\xe0\xf8\xe4\xf9\x02\xdd\xe3\x90\x96\x8d\x4f\x09\x1a\ +\x42\x6e\xc0\xac\x31\xe9\x2b\x30\x3b\x98\xb5\x81\xea\xa5\x14\xc3\ +\x28\xb4\x19\x96\xec\xdd\xc1\x66\xff\xf5\x85\xde\x46\xcb\x7e\x1e\ +\xde\x71\x41\x18\x7b\x68\x46\xb9\x60\x94\x31\xfd\xcd\xa5\x31\xc2\ +\xaa\x70\x0f\x84\xf1\x83\xec\xb9\x26\x1b\xcd\xb7\xd3\xd8\x04\x16\ +\xa7\xb6\x96\x0a\xb3\xcd\xa9\x9a\x3e\xb0\x93\x83\x1c\xef\xc6\x91\ +\x53\x91\x4d\x0e\xc6\x7a\x5f\xaa\x20\xa3\x71\x35\x2e\x62\xa5\x9d\ +\xb5\xca\x87\x78\x8c\xb9\x89\x3f\x20\x07\x6b\xb6\xf0\x21\xf8\xe9\ +\x8f\x45\x4d\xfb\x3a\x78\x01\xf0\x0f\x4c\x22\xee\xf8\x8c\x7b\x97\ +\xc5\x13\xee\x9a\x12\xd7\xc7\xf7\x43\xe2\x89\x18\x5e\x27\x2d\x4c\ +\x9c\xbc\x62\x92\xe5\xe5\xdd\x8d\x33\xb0\x68\xdf\x0c\xc3\x1e\x1e\ +\x93\x2b\xd5\x2c\x6a\x82\xb1\x78\xd2\x45\x75\xc1\xa8\x5f\x7c\xe2\ +\xbe\x21\xb6\xf9\x4c\x0c\xed\xf9\x33\x99\x03\xc6\x38\xdd\x27\x39\ +\x7a\x18\x57\x7c\xf5\xc5\x84\x93\xd7\x63\xc3\xd6\xc2\x58\x89\xcb\ +\x9e\x71\xd8\xce\x02\x5f\x86\x38\x6c\xe5\xc4\xe9\x2f\x13\x20\x68\ +\xa3\xd1\x6c\xe2\xc1\xf5\x08\x8f\x85\x7e\x0e\x1c\xcc\xfb\x91\xa1\ +\xdc\x68\x73\x4c\xcb\x8c\xc3\xb9\xd4\x68\x6c\xe2\x8e\x95\x13\x7b\ +\xeb\x73\x16\xde\x4d\x2b\x0d\xfb\xe0\xfb\x86\x1a\xef\x0b\xc1\x2b\ +\xaf\xeb\x93\x75\x07\x27\x51\xb6\x4d\xb5\xe0\xb2\x83\xf3\x24\x39\ +\xbe\xf9\x42\xcc\xb3\x79\x60\x1f\x12\xbf\x23\x45\x71\x65\x3d\xb3\ +\x0b\xd2\x3c\x97\x97\x7d\xf4\xd9\xf8\x23\xf8\x43\xe5\x2e\xf9\xf4\ +\x32\x2f\xd1\xbd\xfc\x98\xd7\xe0\x49\x8d\x07\x45\x5d\x8f\xa6\x2f\ +\xf0\xf6\x39\x87\xac\xee\x86\x52\xf1\xe7\x9a\x77\xb4\x82\x52\xce\ +\x5c\xf9\x89\x0f\x67\x1e\x3e\xbe\x9a\x93\x87\x9f\x9c\x3b\xf0\x18\ +\x9c\xe3\x37\xc7\xdf\x62\x6a\x96\xcd\x03\x7f\x9d\xfb\x14\xa7\xd0\ +\x8e\x45\xa3\x68\x8f\x63\x39\x0a\xae\x1f\x01\xad\x67\x89\x1f\x86\ +\xcf\x01\x4c\xb7\x67\xdd\x88\x6d\x9f\x0b\xe1\xf9\x5c\x61\xec\x30\ +\xf0\x73\xfe\x12\x3b\x31\xce\x5f\x38\xf5\x00\x47\x2b\x8f\x75\xed\ +\xfa\xe6\xe7\x18\xc5\x94\xef\x18\x7c\xec\xfa\xf3\x6d\x35\x73\x9b\ +\xb7\x62\x68\x9f\x87\xc5\x76\x2d\x6e\x76\x91\xd3\xf3\x28\x73\x34\ +\x0e\x9f\x6b\xf1\x98\xbe\xc0\x5c\x87\x75\xa2\xee\xe1\xcf\x98\xe0\ +\x1e\x37\xce\xc2\xa3\x0e\xd8\x8e\xfb\x46\x1b\xfd\xe2\xbb\xef\xf2\ +\xab\x33\x0e\x74\x96\x79\xcd\x14\xe6\x34\x26\xdb\x97\x0f\x34\xe2\ +\x3c\x14\x46\xe0\xf9\x68\x0a\xdd\x08\xf6\xec\x9d\x0b\xb4\x90\xc7\ +\x0e\x3b\x67\x0d\x2e\x3c\x27\x1d\x6b\x47\x6e\x6e\xfb\x8c\x41\x4e\ +\x64\x6a\xe4\x99\xcf\x61\xfa\xa6\x66\x6e\x84\x25\x76\x08\x19\x01\ +\x7c\x6c\x68\x77\x83\xce\x39\x43\x7a\x48\xf5\xd4\x83\x4f\x04\x4c\ +\x00\x01\x01\xc4\x7c\x03\x02\x88\x62\x02\x1c\x72\x06\xe2\x91\xd4\ +\x4a\xcd\xe1\x1e\x1c\x44\x79\x0e\x05\x75\xc4\x7e\xf8\x6e\x9c\x6e\ +\x27\xb2\x99\xab\xd4\x8e\x6d\x12\x58\xb5\xbd\x32\x7b\xbf\xbb\x28\ +\x06\x71\x0b\x3f\x66\x9e\x47\xbe\xcb\xe0\x73\x7e\xc3\x8d\x2d\xdf\ +\x14\x7b\x95\x9f\x6a\xf4\x37\xce\xfa\x47\x47\xdc\x40\xe3\x46\x19\ +\x37\xce\xf0\xf9\x26\x9a\xb9\xca\xe3\xe6\xdb\xfc\x04\x24\x37\xba\ +\xf8\x69\xc7\x7c\xbb\x8c\x7a\xc2\x75\xac\x16\x1c\xcd\xe2\xe3\x39\ +\x37\xdb\x14\xd7\x92\x3f\x2e\x42\x13\x4b\x0d\x9f\xdb\x30\x2e\x69\ +\xdf\x68\xa3\x6e\xe3\x19\x6b\xb4\xf3\x78\x50\x53\x1c\xd7\xe0\xa8\ +\xed\xba\xc4\x67\x61\x53\xc2\xcb\x39\x98\x7f\x7e\xb0\x63\xcc\x92\ +\x5a\x6c\x14\x2a\x2e\x7b\xf2\x71\x10\xb8\xd6\xf4\x82\x8b\x97\x1a\ +\x89\x1d\x3a\xb6\xa3\x4f\x38\xd8\xa7\xdc\xc1\xb6\x18\x0f\x19\x67\ +\xbc\x18\xca\xeb\xe9\xb8\x47\x52\x9b\xf0\xf8\x8c\xdb\x16\xa0\x35\ +\x71\xc6\x7e\x60\x12\x6d\xab\xfc\xaf\x3d\xe2\x26\xf4\x89\x6f\xc2\ +\xf2\x11\xef\x96\xb5\xad\x63\x46\xd8\x2d\xe5\xcf\xae\x79\xc4\x41\ +\xaa\x76\xfe\x73\x72\xe2\x7d\x4c\xc2\x25\x9f\x83\x5c\x7b\xc2\x25\ +\x97\x7c\x3a\xb9\x6e\xa8\x5d\x72\xc9\x67\x2c\xbf\xdb\x37\xff\x0c\ +\x7c\xce\x08\x76\xff\x57\x5d\x29\x3a\xdb\x4f\x4b\xe2\xfb\xc2\x3a\ +\xc0\x03\x8a\x00\x2d\x73\xc1\xc8\x84\x81\x2f\x6e\xc5\xc9\x45\xbc\ +\x49\x7e\xfa\x87\x5b\xf0\xd5\xf8\xd2\x94\xc9\x83\x00\xcc\xc1\x78\ +\xa2\x41\x57\xf2\xc2\xb8\xda\x47\xeb\xc2\xa6\x9a\x87\x9f\xf6\x13\ +\x67\x71\x7e\xf5\x2c\x10\x0d\x7b\xd6\x60\xeb\xc7\x0b\xca\x3d\xd9\ +\x3f\xe5\x7b\x10\xe8\x62\xee\x66\xc6\x72\xd4\x38\xe5\x9c\xec\x70\ +\x3c\x49\xc3\xda\xb8\xff\x73\xcc\xf5\x85\x3b\xce\x8d\x2a\xf3\x99\ +\x0c\xa1\x4e\xf3\x79\x38\xc6\x64\xc8\x3b\xe0\x60\xe4\xc1\x41\x77\ +\x3b\x65\x42\x08\x4e\x62\x4c\xa4\xe4\x5b\x68\xe8\x4c\xb0\x80\x33\ +\x83\x92\xbf\x78\xce\x0d\x2f\x4f\xba\xd4\x37\x67\x30\xc7\x33\x51\ +\x43\x6d\x26\x78\xf0\x89\x09\xf0\xc4\x8d\x0a\x0a\x4a\x4d\x4f\xd6\ +\xb4\x7f\xfe\x77\x5a\x6a\xa5\x0f\xf2\xd5\x89\x63\x2a\xb4\xc6\x91\ +\x6d\xd0\xf5\x95\xce\x4d\x35\xfc\x4d\x6b\x31\x4f\x8a\x46\x4c\xbf\ +\xae\xfc\x22\xa8\xe7\x75\x12\x30\x1a\x7b\x74\xec\x40\xc5\xd1\xdb\ +\x64\x90\xd3\xe3\x48\x88\xd5\xac\x4c\x79\xae\x25\x11\xc2\x47\x36\ +\x97\x90\x53\x41\xda\xb9\x5c\x80\xa3\x27\x81\x3e\xf2\xae\x99\x8b\ +\x4b\xc4\x36\xeb\x8c\x4d\x82\x78\x9e\xf8\x69\x0d\xe4\x60\xc7\x36\ +\x6a\x23\x71\x64\xe5\xd7\x49\x3f\xe8\xf3\x7b\x75\xe5\x4b\xcc\x56\ +\xc3\x4b\x70\xea\xd2\x81\xaa\x21\x4b\x30\x7d\x2d\xdd\x75\xf1\x9b\ +\xda\xfc\xa3\x87\x0d\xb2\xa8\xf4\x53\x61\x1d\xc7\x64\xa9\xb3\x0d\ +\x3f\x35\xd4\xe4\x75\x05\x5d\x4a\x81\xea\xd3\x40\xd5\x54\xfb\xfd\ +\x22\xdb\xdb\x11\x8c\x09\x03\xd9\xb9\x89\xf6\xd2\x13\x3c\x4c\xea\ +\xac\x1b\x67\x73\xf3\xec\x74\x13\x4d\x71\x26\x58\xf0\x99\x6c\x61\ +\x52\x41\xfe\x8d\x09\x18\xf9\x99\x9c\x21\x4e\xec\xb5\x7d\x70\xe2\ +\xfe\x79\x45\x26\x62\xe6\xc6\x16\xdc\x2e\x99\x2c\x4a\xee\x4c\xf6\ +\x78\x52\x47\xfc\x9b\x71\xe5\x74\x8c\xf9\xab\xe1\xef\x1d\x17\x50\ +\xbe\x6a\x3b\x37\x63\x98\x1a\xc6\xe9\x93\x85\xfe\xe1\x78\x1c\x6c\ +\x03\x72\xd9\x04\x59\x17\xe6\x3b\x32\xf9\x94\x9b\x5f\xa2\x46\xc7\ +\xf0\x18\x7d\x83\x8c\x54\x6b\x6f\x44\x92\xe2\xa3\x35\xb6\x10\x50\ +\x2e\x1e\xdc\x18\xf1\xac\x0b\x63\xcb\xfc\x4a\x7c\xf8\x34\xce\x39\ +\xf1\xc7\x4e\x2d\x63\xb3\xac\xd8\xa1\xe1\xd1\x9f\x27\x3c\xbd\xa0\ +\xc8\x9d\x6d\x91\x3a\xe6\x2b\x68\x9e\xc3\x6a\x20\xd3\x36\x8f\x86\ +\xc7\x51\xc7\xa0\xf1\x3c\xc7\xbf\x17\x82\xd9\x2b\xcd\x50\x9e\x3d\ +\xef\xd0\x8f\x72\x06\x9f\x3d\xf9\xb9\xba\x92\x0f\x84\x2e\xf9\x95\ +\xe4\xfe\xe5\xda\xe5\xc7\xbc\x3e\x4f\xf2\x1f\x14\x5c\xfb\x5c\x65\ +\xfb\x8c\x44\x26\x3a\x98\x7d\x35\xfe\xac\x9b\x0f\x50\x45\x63\xaa\ +\x59\xf9\x89\x07\x46\x63\x81\xe5\x93\x39\x31\xf8\x3a\x06\xd9\x46\ +\xc3\xa8\x6f\x5c\x5c\xc7\x0e\x7e\x70\x88\xf1\xf3\x04\xef\x02\x60\ +\xbf\x39\xee\xef\xc0\x68\xea\x15\x33\xd1\x7e\xf2\xc3\xf1\x39\x05\ +\x1e\x58\x40\x1a\x6b\x9f\x1f\x0d\x7f\xb7\xad\x71\x73\xae\x92\xf8\ +\xac\x87\x59\x2b\xc6\x7a\xeb\x34\xa4\xb1\x9c\x0f\x99\xab\x73\x12\ +\xdf\xd8\xb2\x1d\xee\x9c\x13\xe5\xfc\x27\xe7\x3d\xc4\xc1\xbd\x2c\ +\x9b\xf3\x27\x8d\x4f\xda\xfd\x4f\xdc\x1c\x62\x3a\xff\xa1\x7f\xfb\ +\x19\x9b\xf9\xe5\xf2\x6d\xb2\xc1\xdd\x37\x23\x76\x2d\x7d\xbe\xb8\ +\x2e\x79\xcd\x81\xef\xfe\x32\x9e\x03\x43\x07\xcf\x42\x7f\x1d\x57\ +\xeb\x1a\x93\xad\x8e\xe2\xb7\xdf\xf8\x9c\x99\xe7\x8f\x9d\x0c\x69\ +\x73\x92\x97\x4d\x87\x87\x99\xd8\x1c\xa4\x07\x37\xd9\xb2\x0c\xc9\ +\x66\xc3\x67\xdf\x55\x93\xcf\xd6\x9c\xab\xe4\x26\x99\x0c\x1c\xcb\ +\xc4\xb4\xde\xc4\x02\x2e\x09\x96\xe3\x3d\x6f\x1f\xf7\xa0\x66\x3e\ +\xbf\x69\x07\x5b\xf9\x26\x1a\xdd\xf8\x35\x00\xe4\xb0\x5e\xa7\xcf\ +\x7c\x87\xcc\xde\xd1\x62\x1e\x41\x00\xc9\x58\x8b\x37\xb9\x1a\x40\ +\xea\x6e\x62\xf2\x39\xf7\x88\xd7\x23\xb5\x9c\xe3\xb8\x74\x16\x56\ +\xc7\x91\xbb\x70\xdc\x01\xb3\x8d\x76\xd2\x7d\x39\xea\x7b\xcd\xa9\ +\xb7\x62\xf2\x65\x13\xe3\x18\xea\x9b\x61\x3a\x86\xfa\x1b\x65\xdc\ +\x34\xf3\xb7\xcf\x72\x33\x8d\x73\x11\x6e\x9a\x7d\xa1\x73\x90\x3d\ +\xee\x9b\x64\x8a\xad\x45\x75\x38\x46\xcf\xcd\x35\x6e\xa6\x1d\x31\ +\x74\xfb\x3a\xf1\x55\xaf\x31\x9f\xdb\x4c\x4c\x8b\x10\xf7\xeb\x3a\ +\xcd\x9b\x5f\x00\x38\xf2\x73\xfe\x21\x86\xfb\xf6\x79\x1e\x75\xb4\ +\x70\x62\xc0\xb7\xfe\xb3\x8e\xd4\x9b\x73\x87\xc9\xa5\x07\x20\x6a\ +\xa4\x0e\x8b\x1a\xf7\x3d\xdb\x48\x64\x59\xaa\x2b\x13\x80\x4a\x09\ +\xa0\xc2\x59\xb5\x1b\x23\x3a\xb6\xad\xfb\x98\xc7\x57\x7c\x71\xdc\ +\xaa\xc9\xf8\x56\x7c\xf4\x09\xc3\x1c\xfb\xe9\xd8\x87\xeb\x6d\x70\ +\xc2\x4c\x51\xc3\x5a\x0c\x3f\xe0\xfd\x37\xd3\x16\x8e\x5e\xdc\x78\ +\xd9\x75\x1b\x09\xd1\x76\x74\xf6\xeb\x11\x6a\x05\x39\xe3\x3f\x5e\ +\xa6\x8f\x4b\x3e\x77\xb9\xf6\x84\x4b\x2e\xf9\x74\x72\xdd\x50\xbb\ +\xe4\x92\xcf\x58\x7e\xb7\x6f\xfe\x7d\xe0\xf7\xe7\x9e\x4f\xcf\x45\ +\x7f\x41\xa1\xa3\xfd\xb4\x24\x7e\x4e\x8e\x25\x1e\x87\x2e\xf9\x4a\ +\x5b\x30\x00\x4f\x2e\xc2\x31\x74\xc1\xbe\x70\x34\x8d\xb0\x5c\x64\ +\x6a\x81\x0b\xae\x78\x96\xc9\x1b\x3c\x17\xfe\x4c\x0e\x70\x91\x8f\ +\xcd\xc3\xcf\xe6\x18\x2b\x2f\xa1\xe0\x47\x0c\x45\xc3\x44\xc8\x68\ +\x17\x6f\xbc\x3a\x45\x0b\xa7\xde\x1e\x63\xf2\xe1\xa8\x79\xe8\x70\ +\xa7\x36\x3e\x8a\x26\xd8\x2c\x37\xfe\x3a\xda\x35\x88\x67\x72\xc5\ +\xb6\xd6\x6d\xc5\xb9\xff\xe4\x3b\x45\x6c\x26\x37\x07\x57\x36\xdb\ +\x21\xdb\xef\xbd\xff\x1a\x19\xed\x9a\xad\x61\x3d\x0b\xfd\xdb\xce\ +\xa4\xca\x6d\x6e\xaa\xc9\x76\xad\xfa\x6a\xac\x3d\x51\xd4\x05\xdf\ +\x0b\x37\xc6\xbc\x7e\xfd\x59\xc8\x8e\x21\xb5\xd5\x9f\x34\x13\x34\ +\x6a\x3c\x21\x84\x5e\x7d\x8b\x8f\x9f\x3e\xe0\xd2\xaf\x6c\xc6\x8d\ +\x5e\x7c\x69\xfa\x80\x63\xbb\x71\xe7\x8c\x1f\x1b\x17\xae\x79\x7e\ +\x4d\xa4\xd8\x58\x8d\x7d\xff\x82\xba\x81\x1c\x09\xc1\xf1\x91\x98\ +\x87\x7f\xc4\x76\xac\xfa\x4e\xd8\xcf\x59\x9c\x32\x3b\xbd\x84\xcb\ +\x5f\xc4\x69\x6a\xcc\x6b\x3c\x3f\x7b\x32\x05\x9d\x6d\xbe\xa7\x59\ +\xb6\x71\x3d\x95\xe9\xc4\xcc\x54\x18\xa8\x2a\xd9\x13\x4f\xe0\xc8\ +\x1a\x64\xb0\x7d\x1c\x6c\xaf\x8c\x62\xaf\x84\x1c\xd6\xea\x6a\xc9\ +\x1e\xc3\xbb\x8f\x23\x47\x0f\xf7\xfc\xdd\xc7\xda\xb3\x33\x86\x27\ +\xfc\xf5\x81\x23\x31\x25\x9f\x41\xf4\x8c\x9e\x49\x80\x3a\xb7\xef\ +\x5f\x4a\x77\xf2\x85\x1b\x55\xbe\x89\xe5\x1b\x65\x2c\xb5\x99\x04\ +\x62\x62\xa5\x93\x41\xbe\xe1\x86\xee\x44\xcc\xf2\x55\x0f\x5f\x8d\ +\x7d\xea\x7b\xa2\xc6\x3e\x7f\x09\xad\x7e\x1a\x73\x7f\x13\x13\xef\ +\x98\xd8\x09\xc7\x7f\x89\x3d\xf6\xf0\xb4\x90\x33\x3c\xdf\x5c\xf3\ +\x64\x09\x18\xeb\xc1\x38\xd1\x74\xcd\xc4\x12\xf6\x91\x9b\x7a\x4c\ +\xe4\x44\x93\xe2\x78\xfb\x1a\x2e\xdb\x6d\x26\x87\x88\xb1\x1e\x8e\ +\xa3\xbd\xed\xb2\x6e\x9e\x24\xa1\x8f\x3b\x1d\x1b\x17\x9e\xfa\x35\ +\x46\x5e\x6b\x39\x1e\x6c\xfd\x35\x37\xfd\x01\x24\x71\xf1\xa8\xc1\ +\x6b\xe4\x87\x71\xc6\xc4\x5e\xa9\x5a\xc2\x55\xbd\x7c\xdc\xf4\x15\ +\x48\x7c\x8f\x39\xf5\x03\x16\x77\x2c\xdb\x44\x8e\xeb\xf0\x80\x60\ +\x2e\x75\xd1\x2c\x08\xfc\x93\x6d\xa3\x4b\x64\xc5\x9f\x88\x70\x1d\ +\xb4\xa8\xef\xf9\x25\x64\xbd\x87\x01\xee\xf7\x6b\xe4\x7e\xaf\x1e\ +\xb9\xe3\x3d\x97\x7e\xc9\x3f\x4f\xf6\x97\xee\x63\x5f\x97\xfd\x35\ +\x5c\xf9\x03\xee\x05\x25\x3b\x34\xfb\xdc\x7e\x4c\x78\x90\x32\xe2\ +\x4f\x4b\x3f\x87\xc0\x67\xfa\x8e\xe1\x6f\xb8\x2d\x8e\x8f\x44\x21\ +\x45\xcf\x31\x56\x47\xea\x70\x38\xbe\xce\xe2\xf8\x96\xb7\x2f\x7a\ +\x18\x2b\x07\x56\xf2\x86\x6f\x24\x5c\x13\x06\x2b\x97\x96\xe3\xf3\ +\xc6\xb3\x05\xdf\x14\x6a\x39\x02\x11\xc4\xba\xac\x8d\x1f\xff\xe0\ +\x73\xea\x50\xfb\xa4\x5d\xa0\xfe\x2c\x9c\x5b\x71\x1a\xc2\xda\xf7\ +\x5c\x45\xc0\xdc\x10\x23\xcf\x31\x6c\x9d\x73\xe4\xa6\xd4\x71\x83\ +\xca\x8b\x63\xb1\x73\x73\x6b\x96\xde\xd8\x32\x07\x3b\xe7\x71\xc7\ +\x0d\xb9\xa3\xc6\xd4\xf6\x0d\x35\xd9\xc4\xfd\x73\x8d\x5a\x12\xe7\ +\xdb\xea\xe9\x77\xdd\xac\x23\x86\xbf\x8d\x67\xce\xe1\xd0\xb1\xd3\ +\x5f\x6c\x78\xd9\x36\xfe\xd5\x01\x39\x7b\x7f\xd4\x98\xed\x72\xe0\ +\x6c\x32\x78\x68\xe1\x52\x3e\x0f\xd7\x76\x7c\xcf\x9d\x30\xb4\xfc\ +\xee\xb9\xe6\xf0\xe0\xb9\xcb\xb1\x1b\xeb\x73\x93\x7c\x3e\x77\x8b\ +\xa1\x63\x3b\x53\xb6\x3e\xc7\xb1\xfa\xd9\xcc\x76\xc8\x0d\x84\x7b\ +\x19\x3e\x35\x4d\xb7\x07\x9a\x7a\xe9\x23\x12\x2e\x71\x0c\x58\x36\ +\xca\x98\xd8\xea\xc6\xeb\x81\xb6\x27\x99\x75\xec\xe7\xbe\xe2\x56\ +\x86\xd4\xf6\x60\x90\xde\x2b\xcb\x40\xea\x9c\xb0\xc8\x96\xd1\x3e\ +\x22\xa0\x53\xf5\x91\x30\xd6\x83\x73\xc8\x1c\xbb\xdc\xaa\x59\x5b\ +\xa1\xc0\xfd\xa6\x24\x4e\x0e\xe7\x20\x1c\xdf\xe7\xfc\x83\x1b\x5f\ +\xf9\x26\xda\xcb\xfc\xcf\x33\x2f\xb9\xa9\x96\x6f\x9e\x65\xe1\x1c\ +\xc3\x3f\xf5\x38\x58\xcf\xab\xbc\xb8\x6e\x8e\xe3\xb9\x61\x46\x3d\ +\xce\x4f\x7a\xf3\xcb\xfd\xa9\x7f\xbd\xe4\xfe\x36\x59\xfb\x3f\x72\ +\x93\x9f\x73\x81\xe0\xd4\xf2\xd8\x74\x2e\xe0\x18\x36\x38\xf5\xda\ +\x47\x34\x2b\x9a\x3a\xfe\xb9\xc8\x97\xfc\x8f\x36\xc5\xd8\x10\xee\ +\x33\x35\xf3\xff\xd7\x62\x83\xab\x6a\xcf\x21\xc0\xd8\x36\xc0\x89\ +\xd9\x27\x9f\xed\x96\x80\x79\xd1\x7a\x80\x39\xa6\x65\xfc\x13\xc7\ +\x51\x3f\xec\x0f\x66\x3d\x5c\x3d\x1a\x33\x77\xd3\xc7\x98\xb0\xe1\ +\x93\x12\x7b\xf0\x3d\xc7\xdb\x76\xfa\x5e\xb1\xe4\xe4\x0f\xb7\x8c\ +\x24\x9e\x68\x5a\x6f\x27\xc4\x04\x10\xed\x6c\xd4\x61\xd3\x10\x19\ +\x1c\x09\xee\x9a\x6b\x57\x8e\x9d\xda\x85\x24\xa7\xfd\xd5\x75\x90\ +\x95\x74\x47\xf8\x58\xf9\xd1\x09\x97\xfc\x8b\xcb\xb5\x47\x5c\x72\ +\xc9\xa7\x93\xeb\x86\xda\x25\x97\x7c\xc6\xf2\xbb\x7e\xf3\x3f\x37\ +\x78\xce\x12\x7e\xb5\x15\x7b\x74\x66\x7b\x60\x5c\x38\x72\x71\x8d\ +\xf0\xbf\xa8\x80\x3d\xb4\x69\x7c\x41\x8a\xc6\xe4\x2a\x7e\x06\x3f\ +\x18\xb6\xd2\x5e\x64\xb2\x00\x10\xcc\xb8\x63\xd8\x6e\x7b\x61\x8f\ +\xe3\xd9\x00\x63\x09\x1e\xf6\x9e\x6b\x8d\x6c\x13\x04\xc6\x79\xd8\ +\x56\x9f\x50\xf6\x58\x66\x0c\xce\x58\xf9\xcb\xbf\xb3\xcf\x9a\x9a\ +\x1a\xdf\xc3\xd8\xfd\xd2\xf5\xa8\xed\xbe\xa5\x99\x98\xc8\xd8\x98\ +\xac\xa0\x16\xae\x38\xda\xd2\xc6\xd6\x0d\xb4\x23\xdf\x3c\x4f\x04\ +\xc9\x77\x4e\xb0\xd4\x65\x01\xcf\x8d\xac\xb1\x99\xd8\x51\x63\x9e\ +\x7f\xc6\xc8\x31\xfe\x0f\x48\x73\x27\x66\x5b\x39\xef\x88\x0d\x4f\ +\x38\x63\x15\x4e\x5f\xe0\xf8\x19\x4f\xf8\xf3\x97\xdc\x8c\x0f\x4d\ +\x1d\x6b\xc6\xff\xfd\xbb\xdb\xcb\xf6\x03\x36\xeb\x81\x4d\x6d\x6a\ +\x1a\xb3\xbf\xc5\xa4\xc7\x47\xc3\xf3\x63\xf3\x91\x95\xc3\x24\x87\ +\xca\x0d\x6f\xc5\xd1\x98\xc7\x9d\xdc\x6d\x62\x9c\x45\xcd\xec\xaa\ +\xce\x93\x03\x77\xa4\x3e\x17\x8a\xd4\x72\xaa\x2f\x24\x0f\x0e\x98\ +\xe3\x7a\x38\xb5\x17\x8e\x99\x88\xaa\xed\x0e\x8e\xbc\x53\x89\xd1\ +\xc3\x39\x80\x4d\x8a\x4d\x9e\xb4\x57\xa9\xf4\x53\xbd\x29\xe1\x71\ +\x83\x0f\x90\xd0\x59\x32\xb2\x91\x89\x7b\x5d\xac\x23\x2e\x07\xba\ +\x93\x2b\x8b\xa3\x84\xa3\x7e\xea\x3a\xcf\x85\x08\x66\x3b\x0e\x2b\ +\xc3\x0a\x1e\x4c\x2f\x20\x13\x19\x08\x30\x50\x9a\xfa\xca\x66\x22\ +\xe4\xa5\x6a\xcf\xe4\x08\x13\x27\xdc\x10\x63\x01\x63\xc2\x47\x76\ +\x7e\xd2\x31\xd8\x4c\xe8\xf8\x5b\x6b\xe8\xbb\xc5\x13\x4b\xd6\xc5\ +\x5c\x77\x62\x5a\xf0\x9b\xcb\xa2\x80\x9e\x4c\x5e\x94\x23\x4d\xbe\ +\x27\x6f\xda\x67\x26\x6c\x34\x5e\xf2\x6c\x13\x93\x0f\x67\x72\x9c\ +\xa7\x3a\xc6\x34\x6e\xf3\x59\xcf\xc4\x56\x7f\xd6\xc9\x85\x30\x13\ +\x1c\xce\xa3\x3f\x26\x5d\xa8\xcd\x46\xea\xb8\xb2\xbd\x84\xc3\x25\ +\x17\x2c\x20\xcf\xe4\x08\x1f\x5e\xf4\xc4\x9b\x57\x3e\x4b\xd6\x3b\ +\xb9\xd1\xf8\xe1\x79\xa1\xfc\xfd\x44\x8e\xeb\x0f\x87\x90\x49\xda\ +\x27\x52\x8f\x9b\xa7\xb3\x9d\xcc\x87\xd7\x31\x81\xbf\x77\x9c\x3c\ +\x37\x64\x75\x5d\xb2\xb0\x5d\x96\xdd\x85\x7c\xf3\x0a\xb5\xa1\xdb\ +\xf0\x62\x14\x52\xa3\x5d\x6f\xe1\x4b\x88\xcf\x5e\x8d\x4c\x7c\xc7\ +\x1e\xc9\x87\x78\xf7\x7d\x54\x80\x67\xf7\xbf\xe4\xb7\x21\xf3\xf2\ +\x7d\xcc\x6b\x72\xbf\x9b\xcc\x87\xb3\xa5\x41\xf6\xaf\xfd\x83\xd3\ +\xbc\x98\xa1\xde\xc5\x3f\x20\x39\xb6\xed\x36\x6d\x00\x1f\xeb\x96\ +\xed\x76\x61\x3e\x8f\x98\x3e\x9c\xc3\x71\xbc\xb1\xfa\xc6\x05\xf9\ +\xf8\x6e\x5b\x39\x8d\xc3\xcb\xf9\x8a\x91\xa5\x9d\xdb\x38\x8f\xf7\ +\x7c\x9e\x93\x67\xcc\x07\x64\xa8\x96\xc5\x2b\xe0\x5c\x3d\x20\x58\ +\x4b\xe6\x9c\x68\xc6\x16\x38\xb1\xe1\x1f\x75\x40\xe9\x2b\x63\x76\ +\x8c\xa1\x3b\x96\x31\xcc\x3a\x40\x4a\xfe\xe0\x82\x38\x37\x22\xea\ +\x3f\x22\x02\x23\x96\xbe\xf9\xe3\x23\xdb\x3e\x17\x89\xf6\x79\x10\ +\x1c\xd9\x9c\xf3\xe4\x7c\x09\x4c\x7c\xb4\xcf\xa9\x06\x8b\x1f\x9d\ +\x85\x3a\x8e\xd3\x97\x74\xbe\xa1\x06\x9f\xbe\x63\xbb\x16\xf1\xb1\ +\xcb\x9f\x1b\x68\x70\xc1\xd2\xff\x81\x1b\xd3\x12\xac\xb9\xfc\x0a\ +\x81\x6f\xca\xdd\xe1\xd2\x47\x4d\xc6\x92\xfe\xb3\x9e\xc1\xb2\xc9\ +\x12\x33\x47\x0f\x3e\x12\x9d\xaf\x65\x7d\x3c\xe2\xeb\x91\x6f\xb3\ +\xd8\xed\xee\x3d\x84\xe0\x76\x6d\x0e\x5e\x48\x0d\xa9\xfa\x24\x97\ +\xaf\x45\xb6\x31\xbc\x7e\x2e\x33\x8e\xe9\x70\xea\x73\x5c\x31\x67\ +\xc3\x9c\x8b\xd5\x7c\x8b\x82\xae\x6d\x18\x4c\x0c\x12\x84\x86\x1f\ +\x8e\x15\x71\x3d\x8d\xe1\xd7\x40\x85\xb1\x49\x79\xe6\x28\x9f\x91\ +\xb8\xae\xfc\x42\x21\x49\xf0\x91\x78\x69\x23\x13\x39\xc4\xb9\x68\ +\xad\xbb\xa3\x0b\xc0\x41\x17\xc7\xd4\x32\xdc\xf1\x7d\xe8\xf3\x8d\ +\x90\x6c\x3f\x42\x64\x98\xa3\x25\x87\xd7\x9c\x57\x70\xac\x9c\x9f\ +\x68\xe4\x8f\x7b\x7c\xf3\x4c\x78\x6e\x9c\xdd\x6b\x16\xf2\x63\xfb\ +\x7f\xa6\x39\x4f\x0b\x75\x7b\x2c\xf6\x39\x8c\xea\xfa\x5b\x64\xc4\ +\x1c\xa7\x06\x18\x7d\x96\x3f\xb6\x8f\xe7\xe1\xcc\x0d\x38\x1f\xc3\ +\xa5\x5f\x97\xc3\x98\xa6\x8e\xfb\xd1\xc2\xff\x70\xf3\xf9\x03\x39\ +\xbc\xc2\xac\x17\xb1\xd6\xf6\x4f\x38\x92\x8f\xcd\xb6\x69\x2d\x05\ +\xed\xcb\x91\x79\x6c\x17\x3f\xcc\x77\x21\x69\x5e\x51\xb6\x23\xf5\ +\xb2\x6f\xf2\x10\xd0\x67\xfa\x69\x29\xbc\x85\x1b\x90\xa8\x4a\xf7\ +\xb1\xe6\xd2\xcf\xea\xab\xfe\xd8\xb0\xad\xe3\xdb\xf2\x38\xa8\x34\ +\x58\x34\x3e\x63\x22\xb8\x63\xe6\x78\xe9\xb8\x1a\x97\xa1\x96\xf1\ +\x11\x33\xb3\xb8\x9e\x1e\xe0\xd1\x4f\x9e\x6a\xbc\x0f\x29\xcb\xa5\ +\x1c\x0c\xbe\xac\x70\x8f\x37\xc9\x11\x7d\x56\xdc\xc9\xbe\xff\x57\ +\xf6\xfd\xfb\x59\xd9\x73\x87\xfc\x51\x89\x97\x7c\x06\x72\xed\x05\ +\x97\x5c\xf2\xe9\xe4\xba\xa1\x76\xc9\x25\x9f\xb1\xfc\x4b\xbd\xf9\ +\x7f\x13\x2b\x33\x27\xab\xd2\x9c\x2c\x4b\xe9\x32\x3c\x98\x3e\x6a\ +\x89\xf8\x24\x66\xce\x64\x14\xca\x05\x29\x2d\x64\xb5\x7c\x24\xfb\ +\x84\x9b\x0b\xf8\x70\xf8\x81\x99\x96\x38\xb8\xe8\x2e\x96\xe2\x76\ +\xf9\xd6\x13\xf9\xaa\x97\x50\xf8\xb9\xe8\x07\x2b\xcf\x2e\xb3\x29\ +\xd3\x57\x26\x0d\x6c\x9b\x63\x42\x74\x27\x14\x06\x33\xa3\xb6\x1f\ +\x63\x5b\x63\x86\x7f\x60\xa3\xa7\xaf\xfc\x25\xb2\x6f\x5c\xd4\x96\ +\x11\xcc\xdb\x61\xcf\x4f\x4e\xf8\xb2\xbb\x9d\x16\x67\x7c\x69\x26\ +\x4a\xf0\x99\xb0\x08\x9e\x09\x0f\xfa\xf5\xfa\x6f\x13\x23\xa9\x05\ +\x8f\x58\xf3\xde\x73\x63\x0d\x9e\xb4\x27\x57\xc8\x87\xf7\x6e\xdd\ +\x58\xf3\x24\x0d\xb1\x72\x13\xc7\x8f\x1d\x9e\xea\xf7\x9f\xec\x27\ +\xc6\x76\x56\xdc\x7d\x1e\xd8\xb1\x3e\xd2\xe4\xb1\x1e\xb2\x15\xf4\ +\x78\xe0\x65\x1d\x87\x37\x76\xe3\x2b\x3f\xdc\xe4\xd4\xef\xb2\x78\ +\xf6\xfd\xc2\x1d\x58\x5e\x2c\xf9\x52\xda\x61\x3d\xf1\xa3\x98\x61\ +\x76\x60\x3d\x69\x5c\x27\x26\x9e\x61\xc2\xf1\x8e\x5d\xda\xce\x26\ +\x0b\x6f\x60\x4d\x22\x71\xf1\x2d\xc8\x97\x94\x2e\x90\xf7\xc7\x12\ +\xc7\xee\xc4\x63\x20\x83\xf1\x10\x55\x4e\xd3\x2d\x33\xc6\x4a\xd8\ +\xe8\xb1\x0e\x05\x37\xec\xfd\xa2\xf6\x9c\x3f\x32\x71\x36\x8b\x1d\ +\x69\x5f\xe7\xc6\x94\x14\xac\xe0\xb1\x65\x67\xf3\x1d\x91\x43\x8c\ +\x4d\xe1\x31\x36\x3f\x17\xfc\xb2\xac\xf0\xa5\x58\x67\x74\x42\x92\ +\xc3\x37\x5f\xcb\xd2\x2f\x99\x98\xd0\x45\xff\x9a\x70\xe9\xc2\x84\ +\xce\xab\xde\x2c\x7b\x3d\xb8\xf8\x9d\xe8\x61\x36\x60\xb8\xf9\x8b\ +\xe6\xc4\xc1\xe3\x33\xe9\x82\x9f\x9b\x70\xc4\x5d\x9f\xc9\x1f\xe2\ +\xed\x2b\x7f\xed\x7c\xf8\x33\x0e\x4f\xda\x90\xd3\x25\xb1\xc4\x33\ +\x6e\xd9\xbd\x01\x36\x3c\x8f\xcf\x38\x9c\x60\x6a\xd2\x87\x30\xfb\ +\xc5\x17\x97\x85\xbe\x3d\xd6\xc3\xce\xa4\x11\x1c\x6d\x37\xb8\xd8\ +\x3c\x1c\xa7\x0e\xf6\xc4\x20\xb5\x0f\x30\x26\x70\x0c\xb5\xee\x70\ +\xc7\x77\x1d\x69\x72\x79\xdc\x73\xa9\xd5\xba\xee\xd7\x39\xd3\x67\ +\x39\xd3\x6f\x7d\x35\x8e\xf9\xe1\x38\xb9\xc0\xc1\xac\x19\x1c\x60\ +\xb1\x55\xab\x8b\x07\xef\x3c\xad\x07\x39\xb2\x9d\x6a\x1b\x8e\x07\ +\x7a\x60\x9b\xa6\x4e\x64\xf0\xda\xf7\xf2\x04\x02\x78\xb4\xe7\x23\ +\xcf\xc5\xa6\x08\xb1\x07\x7d\xec\x32\x25\x7e\x80\x76\xc9\xaf\x20\ +\xf3\x52\xee\x2f\x1f\xf2\xdc\x6b\xb3\xbf\x6e\xc3\x7d\xf8\x62\xae\ +\x60\x84\xf0\x0e\xb1\x6f\x3e\xfa\xcc\x7f\x54\x4a\xe2\x4f\x7c\x3f\ +\x9b\xe3\x63\x40\x6d\x2c\x9b\xe8\xe2\x2b\x1e\x9b\xcf\x74\x93\x8a\ +\xfb\x61\x97\x63\x6b\x8f\xaf\x7a\xe8\x00\xdc\x58\x17\xdb\x1c\x60\ +\x79\x26\x7f\x6a\xf9\xb8\xaa\x01\x27\x1c\x9e\x31\x0e\xc8\xf4\x8c\ +\x69\x8d\x41\xdc\x5e\xb9\x83\x49\xeb\xa9\x33\x0a\x88\x8e\xe5\x49\ +\xe3\xd6\xba\x88\xf9\x7e\x4c\x5f\x5a\x3c\xe2\xb1\x8d\x63\x32\x06\ +\x70\xb7\x2b\xc6\x39\xc2\xea\x93\x73\xa0\xf2\x73\x3e\xc4\x0d\xb1\ +\xd6\xd0\xf9\xc8\xae\x9d\x67\x3b\xe7\x45\xc6\xf0\xb1\x9d\x07\x97\ +\x58\xf9\xbb\xf6\xf9\x0a\x39\x8d\x2f\x1f\x0e\x75\x6b\x7b\x50\xf9\ +\x83\xa5\x85\xdd\xeb\x19\x47\xfd\xc5\xf5\x32\x37\xf0\x12\x87\xe7\ +\x3f\xa2\x32\x67\x72\xf9\x23\xa9\xa3\x7f\x70\x29\xdf\xec\x63\xa3\ +\x50\x43\x01\x6f\x13\x6a\xb3\x3f\xc2\xf7\x06\xe3\x69\x93\x3e\x30\ +\x10\x1d\xab\x6b\x2b\xcb\x3e\xca\xbb\xbb\x1a\x9f\xef\x24\x38\xd1\ +\x48\x0d\x4a\xaf\xcf\x6b\x49\xf8\xf4\x3f\x6c\x47\x2d\x60\x39\x05\ +\x0b\xc2\x27\x3f\xb4\xf0\xcb\x76\x23\x87\xdd\x09\x12\xa8\xc0\x64\ +\x84\x57\xeb\xf6\x72\xce\x49\x60\xf6\x9c\xac\x9e\xe1\x52\x2d\xc9\ +\x3f\x30\x34\xfd\x23\xda\x6a\x6a\xc2\x70\x3b\x64\x09\xfd\xf0\x74\ +\xbd\x0d\x0f\x2f\xe3\xa2\x96\x8f\x77\x78\x79\x1a\x43\xe6\xe6\x0e\ +\x08\xeb\x36\xbc\xd8\x30\xb0\xcf\x4b\x6e\x5a\x71\xdc\xd7\x79\x06\ +\x37\xc8\x74\xcc\xe4\x7c\xc7\xff\xd7\x6c\xd3\x9c\x73\xec\xfe\x09\ +\xef\xb7\xd0\x72\xc3\x4d\x18\xc7\x7d\xd5\x3d\xf4\xf4\x81\x3e\xdf\ +\x4c\xe3\x5b\xf7\x39\x5f\xea\x71\xdb\x38\xbc\xe1\x04\xf3\x39\x12\ +\x98\x7c\x7e\xf6\x11\xdf\xe7\x69\xed\x2f\x7d\x6d\x7c\x6a\xf0\x98\ +\x71\xe0\x0b\x57\xe3\x6f\xb3\xb1\x39\xe0\x8a\x9c\x18\x35\xbc\x89\ +\xf0\xd9\x5e\xfd\xc6\xfd\xb6\xcd\x12\xe0\x79\xd4\x1f\x71\x7c\xe7\ +\xda\x76\x4b\x30\x38\x36\x6d\x3a\xd2\xa2\x3a\x98\x60\x8e\x43\x65\ +\x8c\xf8\xb1\x57\x0e\xba\x35\x3c\xee\x19\xe7\x86\x4f\x1f\xe7\x31\ +\xdc\xd9\x7a\xc8\xe0\x29\x49\x7d\xec\x9c\x1b\x99\x45\xa3\x67\xfb\ +\x0e\x51\x2a\xf8\xed\x3d\xfd\x36\x1f\x9d\x68\x62\xda\x69\x07\x09\ +\x10\x49\x1d\x19\xde\x79\x0d\x1d\xe2\x42\xb3\x07\x7f\x84\x0c\x75\ +\xd5\xd9\x0b\x3e\xea\xe0\x92\xcf\x5d\xae\x3d\xe2\x92\x4b\x3e\x9d\ +\x5c\x37\xd4\x2e\xb9\xe4\x33\x96\x7f\x99\x37\xff\xbe\x22\x3f\xf2\ +\x3c\xf4\xd3\xca\x74\x9c\x53\x15\x5a\x5d\x36\x1b\xcd\x09\xb5\x2c\ +\x3d\x7d\x8a\x4e\x43\xc0\x10\x0d\x17\xaa\x0b\x88\x6d\x97\x28\x17\ +\x82\xf8\xaa\x61\x7f\xe2\xcd\x61\x81\x85\x49\x14\x9c\x8b\xfa\xc6\ +\x88\xa2\x99\x0c\x30\x66\x2e\x9c\xe0\xe6\x18\x67\x62\x60\xe2\xc0\ +\x3b\x17\xa0\x93\x00\x5d\x78\xf8\x89\x6d\x8c\xb5\x4d\xd8\xc5\x1b\ +\x9b\xbc\x7d\x82\x86\x66\x61\x8b\x37\x3e\xe3\x08\xc6\xb7\xb5\x8e\ +\x3e\xa8\xd3\x18\x0f\x4f\x5a\xa4\xb6\x1a\xeb\xfc\x64\x22\xb1\x70\ +\x30\x3c\xe1\x41\x4c\x38\x13\x20\x99\xec\xc0\x4f\x3d\x4f\x80\x98\ +\x17\x8c\x09\x95\xf8\x5a\x7c\xe3\xac\xb6\xb1\x77\xf9\x2b\xe6\xf1\ +\x97\xad\x5c\xec\xd6\x73\xdd\xb7\xb5\xf5\x48\x8d\x99\x6c\x69\xbc\ +\xe3\xa1\x36\x63\xf2\xd8\x8a\x0f\x36\xe3\x04\xcf\xfa\x6a\x9d\xc8\ +\x37\x46\x0c\xac\xf9\x3b\x06\x07\xbb\xbe\x71\xdb\xa9\x73\xf8\xdd\ +\x46\x6c\x2b\xf2\x1c\xc2\xef\xbe\x06\x40\x14\x05\xc7\xcf\xe8\x36\ +\x87\xc0\x97\xca\xde\x2f\x19\x47\x7a\x61\x95\xfc\xc5\xf3\x8e\xe7\ +\x1d\x02\x3e\x55\x99\x06\x59\x0c\xf8\xe3\x3a\x77\xde\x51\x61\x03\ +\xc5\xb7\xe7\x76\x97\x35\xb2\x92\x26\x6f\x5d\xe8\xfa\xfd\x95\xcc\ +\x22\x4b\xc2\x3c\x8b\xcb\xb4\x96\xa5\x49\x5d\x2d\x4b\xcc\xb4\xa1\ +\x4e\x82\xb4\x9e\xf8\x5e\x47\x5f\x3c\x03\x47\xe7\x42\x1f\x4a\x78\ +\xb9\xe0\x77\xc0\x3e\x3a\x17\xf2\x68\xd5\xd1\x45\x3f\x13\x40\xf9\ +\xeb\xe3\x4e\x3c\x30\x89\xc2\xa4\x88\x97\xf8\xc6\xd6\x4d\xb4\xfa\ +\xd6\x2a\x62\x9b\x9a\x13\x9b\x1c\xfa\xc8\xcd\xb3\xc4\x8f\x89\x9f\ +\xb9\x09\x77\xfc\x8c\x50\x73\x5c\x23\x63\x71\x1f\x1e\x67\x78\xeb\ +\x26\x9c\x71\x8d\xd5\x9c\xe6\xf1\xb0\x3d\x37\xbd\xc2\x01\x33\x4f\ +\x8f\xb9\x21\x47\xaa\x71\x8f\x87\xbe\x5b\x8b\x3c\xfa\x40\xf3\x13\ +\x89\xf5\xf9\xb8\xf5\xff\x5e\x73\x4e\xc6\x4a\x11\xf3\xcc\x95\xcf\ +\x37\xd6\x5c\x98\x8d\x3d\x35\x66\x7b\xa7\x4f\xdb\xa0\xd2\xc1\x6b\ +\x0b\x4b\xcd\x70\xf9\x4a\xb2\x79\xb3\x5e\xae\x8b\x9f\x9c\xe4\x11\ +\x23\x35\x7d\xed\xf1\xc4\xf2\x30\xc6\xc3\xeb\xe7\x04\x3f\xf7\x75\ +\x20\x70\xd4\x0d\x07\xfe\xd1\xdf\xd6\x07\xbe\x29\x70\x8a\xc1\x0f\ +\xda\x38\xb8\x6c\xd6\x79\x22\xe6\x3d\x27\xe5\x8f\xec\x6f\x84\x8f\ +\x92\x0f\xd5\x7e\x20\x43\xef\xdb\xe9\x92\x7f\xb2\x7c\xec\xeb\x30\ +\xbb\x05\xdc\xd3\x2e\xf2\x11\xfb\xcb\x5e\x7f\xf5\x57\xb0\xfb\xdb\ +\x5e\xe5\x34\x1c\x39\x39\x96\x1d\x62\x5f\xcb\x9e\xb9\x8e\x77\xf8\ +\x86\x64\x99\x33\x58\xfc\xe1\x4c\x6c\x70\x1f\x8b\xb5\xf8\x88\x3a\ +\x3c\x73\xb8\xf1\xa4\xcf\x68\x63\x1c\x9b\x49\x01\x4f\x2e\xc7\x1f\ +\x0e\xdf\xd8\xe4\x52\x03\xdb\x71\x5a\xd4\xae\xc1\x79\x1a\x88\x1f\ +\x3b\xd8\x5e\xdb\x3a\x81\x62\xcd\x60\x9c\xc2\x38\x06\xd1\xb5\xcf\ +\x03\x9c\x42\x94\x98\x30\xce\x17\xcc\xc5\x89\xf6\xf9\x41\x79\xbe\ +\xc1\xb4\x30\x2d\xe2\xaf\x1b\x52\xf5\xa9\xbb\x7f\xb3\x6c\x70\xf4\ +\xc2\x7c\x43\x8d\x05\x5b\xf8\xc4\x5d\x6b\xb0\xe8\xef\xbf\x7f\xdb\ +\x9b\x5c\x2c\x5b\x4d\xf9\xb9\xd1\x15\xfb\x84\x2f\xde\x81\xad\x9a\ +\xf6\xb1\x39\x05\x4a\x9f\x5e\xee\x38\xc7\xf9\x1a\xf8\xe4\x65\xfd\ +\xc3\x57\xfe\xfa\xa3\xa8\x60\x6c\xb3\x2a\xe5\x1d\xb1\x59\x10\x6b\ +\x9b\xc2\xbc\xa3\xc6\xb2\x78\x32\x5e\x35\xe2\x78\x9f\x66\x5c\xeb\ +\xf3\xd9\x3c\x18\xf9\x8c\x4e\x0c\xb6\xff\x03\xb3\x3f\xb2\xf9\x23\ +\xa6\x61\x11\x7a\xe7\x54\x27\x4b\xc4\x51\x1c\x2e\x0f\x7f\xdc\x83\ +\x8a\xea\x5c\xd7\x09\x9b\xfc\x35\xe6\x69\xcc\x19\x60\x41\x6a\xd4\ +\x7a\xbd\x94\x13\x20\x38\x0c\x9e\xc5\x18\x90\x4d\x80\x10\x2c\xee\ +\x4b\x6d\x34\x80\x82\x2d\xbe\x68\xc2\x80\x74\x54\x5f\x1c\x8e\x9a\ +\xe6\x0a\x59\xc7\xc3\x84\x96\x9f\x65\x7c\x65\xf4\x18\x49\xee\xd8\ +\xfc\xb1\xce\xfa\x96\x59\x6f\x92\xcd\x0d\x33\x9f\x6f\x58\xe7\xfc\ +\xe4\x95\xce\xa9\xc2\xe3\x5b\x60\x39\xb7\xe1\x9c\x83\x9f\x9f\xde\ +\xcf\x81\xc8\x73\x3f\x60\x3c\x64\xd3\x1f\x35\xa8\xe7\x9f\xc7\x26\ +\x3e\xe7\x34\xf0\x88\x99\x97\xbe\x0e\xfe\xd4\x0c\xc7\x37\xfc\xba\ +\x0c\xd7\x79\xce\x55\x3d\x36\x83\x6c\x59\xae\x31\xe7\x03\x59\x52\ +\x83\x5c\x36\x1f\xb9\xde\xaa\xf0\x39\x2f\x5e\x1c\x17\xb1\xe6\x61\ +\xbc\xbe\xdd\xee\x3d\x07\xcf\x9e\xc7\xa1\x4e\x71\x16\x76\xae\x31\ +\x01\xf5\x81\xbd\xc5\xad\x57\x0e\x63\xc0\x84\x17\xee\xd1\x17\xec\ +\x89\x37\x6a\x2c\xb1\xdd\xe6\x61\xbf\x4b\xf2\x69\x19\xe3\xc4\xa1\ +\xd4\xa6\x45\xd5\x66\x63\x16\xf5\x23\xfb\xa9\xfc\x6c\xe4\x7a\x88\ +\xac\x24\xda\x3e\xe4\x60\xd8\xf0\xce\x2b\x59\xdc\x01\x3e\x52\xa0\ +\xef\xe5\x2d\x4f\x80\x4b\x2e\x39\xc9\xb5\x87\x5c\x72\xc9\xa7\x93\ +\xeb\x86\xda\x25\x97\x7c\xc6\xf2\x2f\xf3\xe6\x5f\x27\xa4\x5a\xfe\ +\xa9\x2b\x75\x77\x66\x2b\xd3\x9e\x60\x2e\x58\x67\x80\xb4\x5c\xa7\ +\x0c\x75\x7d\x0c\x5b\xa9\xe1\x22\x94\x87\x34\x37\x18\xb8\x50\xcf\ +\x29\xb8\xae\x86\x09\xa7\x49\x9e\x73\xe1\x26\x37\x18\x70\xb9\xa3\ +\xe3\x38\x6e\x8a\x71\x07\x96\x9d\x71\x68\x71\xca\xe4\x1f\x38\x13\ +\x09\x4f\xb8\x3b\x47\x31\xab\x15\xdb\xf9\x40\xc1\x87\x1f\x97\x89\ +\x26\x42\xc3\x8f\xa6\x16\x93\x16\xb6\x95\xc3\x44\xc1\xc1\x6d\x3f\ +\x1e\xcf\x7e\xc3\x8d\x85\x58\xf4\xcd\x3f\xff\x38\x7c\xd9\x1d\xff\ +\xa1\x89\xf5\x06\x9c\xfd\xe1\xd5\xb6\xaf\x71\xf4\xa6\x19\x33\x23\ +\x4c\xfa\xf0\x82\xe0\x13\x1f\xbd\x2f\x9e\xd4\xc1\x26\x57\xda\x9c\ +\xd6\x65\x9d\xa2\x13\x9f\xbe\xf1\xa7\xae\x00\x99\xf1\x53\x27\x1a\ +\x7c\x7c\x11\x5d\x4b\x40\x6b\xa4\x8e\xed\xa9\x31\xf8\xf0\x6a\xc3\ +\x73\x5f\xd4\xd9\xf3\xcd\x4b\xdc\x7d\xd8\x46\x49\xeb\xc1\xbf\x5e\ +\x03\x50\x54\x5a\x76\x1a\x0b\x71\x9e\xdd\xa5\xed\xb3\xcf\x92\x3b\ +\xd8\x68\x17\xb5\x6c\x17\x96\x40\x7a\x53\xf8\x7d\x51\xd9\x6d\x24\ +\xd3\x27\xca\x90\x72\xfd\xc6\xd3\xb7\x70\x03\xf2\x76\xfc\x4e\x0e\ +\x2c\xd5\x62\x81\x23\x07\x72\x60\x89\x23\xee\x73\x79\x15\xb9\xc3\ +\x43\x76\xfb\x79\x51\x92\xcb\xd0\x68\xa3\x7a\x82\x00\x97\xea\x89\ +\xf9\xda\x1a\x7f\x5b\xec\x73\xd1\x0e\x1f\xed\x89\x91\x60\xb9\xd9\ +\x02\x46\xec\xe5\xba\x71\xb5\x26\x4f\xc0\x1a\xdb\xb1\x95\xbb\x6a\ +\xed\x9c\xde\x28\x33\x27\x13\x48\xf1\xc7\xde\x6b\x6a\x69\x7e\x26\ +\x72\xee\xfa\x33\xfe\xf2\x76\x7b\x75\x9e\x2c\x5a\x7d\xae\x9c\x59\ +\xbf\xde\x54\xd3\x92\xf5\xdc\xeb\xb1\x29\x68\xc0\xb8\x49\x06\x05\ +\x7c\xf8\xd4\x63\xa1\xd6\xd6\x97\x6b\x02\x05\x3f\x34\x31\xcc\xd4\ +\xcc\x4b\x30\xb1\xda\xae\xe1\x17\x49\xfa\x88\x85\xdf\x18\x98\x27\ +\x75\xb4\x9f\x98\xc3\xa4\x14\x70\xf9\x77\xe3\x72\x35\xe7\xb7\x66\ +\xc7\xcf\x63\x1f\xc7\x91\xa7\xfd\x6b\x30\x3d\x9c\xe7\xed\xb5\xf9\ +\x5d\x12\x53\x8d\x6e\xbb\xc4\x81\xd5\x20\xd3\x97\x96\xec\xd5\x8d\ +\xbb\x09\xc7\xb5\x63\xf9\xf9\xac\xb0\xd3\x2f\xaa\x8c\xf5\xfe\xfe\ +\x31\xf2\xa1\x0e\xee\xe4\x47\x50\x2f\xf9\x15\xe5\xfe\x03\xf3\x5e\ +\x9e\xdd\x2d\xf6\xc0\x24\x7f\x60\x1f\xda\xeb\x43\x9b\x7d\x1a\x79\ +\x6e\xdf\x83\xa2\x50\x3e\xff\xeb\x20\xe2\xc7\x92\xb6\x41\x73\xd8\ +\x3c\x38\xac\xd8\x02\xd4\xe2\xe3\x5f\x7d\x1e\xcb\x6e\x3c\x37\xcf\ +\x40\x7b\x1c\xc5\xda\xe2\xf1\x7d\x30\xad\x4b\x4e\x1f\xe6\x98\x61\ +\x9b\x47\xe2\xe1\x11\xb1\xb2\xbe\xc3\x6d\x0e\x67\xe2\xf2\x17\x8f\ +\x3e\x87\xc3\x91\x67\x3b\xce\x1b\x69\x8e\x21\xd6\x72\x7c\xe5\x99\ +\x83\x9d\xfc\x23\x5e\xae\x17\x7c\x8d\x9c\x73\x93\xda\x3e\xd7\x59\ +\xf1\x9c\xe7\x2c\x1e\xd8\x16\x9f\x9b\x54\x5e\xc0\x5b\xc7\x37\xdb\ +\x7c\x8e\xd2\x9f\x87\x94\x36\xb7\xfc\xd4\x48\x5f\xeb\x7f\xaa\x99\ +\xd7\xb8\x7d\x6c\x62\xbb\x3f\x76\xf3\xe9\x77\x7c\xf7\xd7\x7a\xf5\ +\x33\xb6\xf8\x52\x1e\xcb\xc9\xa7\x5e\xf3\x56\x7f\xf6\x37\x5d\x3e\ +\x09\x82\xec\x77\xcb\x0b\xc7\x10\x2e\x35\x7f\x70\x64\x5c\x0f\xef\ +\xe1\xf0\xa5\xf8\x8c\x56\x4f\xde\x2f\xa9\x01\xea\xcf\x6d\x4b\xfa\ +\x5d\x1e\xc7\x22\x1d\x34\x5c\xb3\xb6\xc7\xd0\x8c\xd8\xfd\x89\x47\ +\xf2\x04\x7a\x5c\x8a\xe5\xe3\x7f\xce\x93\x5a\x93\x3e\x6d\xeb\xa1\ +\xa2\xef\x5f\x1e\xb9\xc3\x4a\x86\xab\xbb\xcd\x2d\xb3\xe6\xc7\xb4\ +\xc4\x2c\xae\xd6\xe3\xd6\x00\x18\x83\xaf\x7b\x84\xf1\x23\x95\xd6\ +\xc2\x9a\x96\x3c\x78\xd8\xc3\xc7\x33\x10\x3b\x37\x71\xf4\x74\x3c\ +\x4b\xce\x03\x12\x3b\xce\x39\x62\xe7\x9c\x84\x1b\x69\xb9\x31\x36\ +\xdf\x2a\x7b\xf5\xf2\xb5\xf3\xe6\x86\x1a\xb9\xf8\xbe\x61\x85\x3f\ +\x5c\x30\x2d\x3e\x3f\x22\x26\x3d\x7d\x91\x97\xe3\x37\x79\xe0\xc4\ +\x19\x9b\xf2\xe4\xe3\xcc\x98\x5c\xdf\x36\x37\xc1\xea\x9f\xea\x66\ +\x09\xf7\x88\x1b\x9b\x1a\x2c\xde\x0a\xf1\xd7\x7a\x7a\x7b\x90\xab\ +\xf3\x20\xed\x07\x0b\x17\x47\x48\xb8\xe6\x93\x0d\x37\xaf\x1a\xfd\ +\x64\x7b\x97\xef\xcd\xec\x62\x5e\x50\x5a\x89\x13\x6e\xcd\x38\x12\ +\x0c\xc7\xbb\x45\x63\xd6\xf5\x1d\xcc\xe2\xc7\xe2\x10\x4e\x5d\xc7\ +\xca\x05\xbb\xe7\x06\x87\xc7\xf8\x0f\x6c\xcf\x5b\xb6\x1e\x32\x36\ +\x3b\xd5\x66\x1d\xdd\xe3\x8a\x23\x6d\xed\xe7\xbc\xac\x00\x3b\xa2\ +\xdc\x70\xc1\x27\xc3\x16\x18\x92\x93\xb6\xac\xff\x30\x68\x96\xd1\ +\x3d\xdb\xdb\x27\xe6\x8f\x92\xc9\x7b\x92\xff\x53\x8a\x5d\xf2\xb9\ +\xc8\xb5\x77\x5c\x72\xc9\xa7\x93\xeb\x86\xda\x25\x97\x7c\xc6\xf2\ +\x2f\xf3\xe6\xdf\x57\x64\x4e\x2c\x7f\x2b\xa2\xf1\xf8\xc4\x45\x1f\ +\xb5\x0c\x2b\x7f\xed\xa9\xcb\x94\x8e\x71\x2e\x57\x67\xe0\xbe\xc0\ +\xe5\xc2\x12\xaf\x1f\xcf\xce\xc4\xe6\xaa\x18\xc9\x0c\x4f\xe3\x67\ +\x1b\x75\xe0\xa9\x15\xca\xe1\x1b\xe2\xea\x3d\x86\xb1\x84\xd5\x60\ +\x78\x82\x80\x8c\x89\x37\x66\xfb\xd0\x8b\x6f\x1b\x33\x35\x3d\x69\ +\x21\x77\x6c\x3b\xb6\x9f\xe6\x2c\x8c\x1c\xfb\xc3\x7f\x27\x15\x0e\ +\x57\xf8\xe1\x44\xcf\x44\x48\x7c\xec\xe9\x37\x7c\xeb\x4e\x5a\x78\ +\xb2\x43\x25\x12\x7f\x7f\xe3\x7f\x94\xb1\x21\x99\xf0\xa0\x4f\x2e\ +\xe2\xad\xf1\xc5\xb5\x4f\x0e\xb6\x67\x2b\xa4\xf9\xab\x63\xd9\xf4\ +\xfb\xc2\x7f\x81\xfc\xd6\x31\x4f\xda\x6c\x0b\xb9\x67\xac\x63\x95\ +\x4e\xfc\x88\xad\xfc\x62\xe4\x66\xd2\x45\xe3\x36\x4e\x3c\xfe\xe0\ +\xce\x15\x9e\x9b\xac\xc1\x65\x38\x66\x6e\xe3\x6a\xbc\x64\x2c\xc4\ +\x8f\xd8\xd4\xe2\x67\x1d\x67\xbc\xe6\x4b\x67\x5b\x94\xdb\x3c\x01\ +\xb1\x59\x66\x07\x5c\x31\x47\x7d\x71\xee\x71\x7b\xa7\xcd\x7e\xdc\ +\xa7\xa1\x18\xd9\xa7\xb1\xc3\x68\x9e\x1c\xd6\x07\x7b\x82\xec\xde\ +\xea\xc2\xd7\xab\x79\x9f\x10\x57\x0b\x25\x6e\x05\x50\x4f\x2d\xbc\ +\x8f\x06\x8e\xae\x47\x3c\x96\xf2\x71\xca\x74\xed\x3d\xab\x72\xdf\ +\x07\x3e\x74\xe3\x13\xdc\x64\x70\x6b\x55\x5b\xe5\x00\x70\x8e\x58\ +\xde\xf9\x72\xed\x83\xdb\xa8\xd9\x0b\xf0\xda\xc4\x06\xf3\xf2\xb2\ +\x37\x47\x3c\xe1\x81\xde\x6d\x69\xfb\xca\x63\x12\xc3\x7e\x97\xc6\ +\x83\xc9\xf6\x84\x0a\xfe\xa3\xfc\xc4\xcc\x31\xef\xc8\x5d\xfc\xf1\ +\x5b\x67\x2d\xd3\x0f\x7a\xc5\xf8\x0b\x67\xc6\x2d\xbb\x93\x4f\xe1\ +\xc4\xf6\xe4\x87\xeb\xb2\xba\x6e\xac\xf9\xb9\xa3\xef\xf9\x2b\x6d\ +\xb6\x98\xe2\xe4\x1f\x75\x9f\xd3\xed\x47\x3c\x35\xca\x94\xad\x3a\ +\xd8\xca\x76\xff\x47\xac\xfd\xd1\x25\x0f\x6c\xbe\x9d\x66\x00\xdf\ +\x8c\x68\x7c\xfa\xd0\xa3\x4f\x63\x8b\x47\xdf\xe8\xf2\x3d\x5e\xf6\ +\xf5\xb9\x99\x46\xe3\x31\xc2\xc9\x4d\xc2\xe9\xd7\xb9\x13\x23\xd7\ +\x58\x7c\xff\x5c\x27\x8f\x59\x3f\xd2\x09\xd3\xd0\x4e\xce\x03\xed\ +\x7c\x6f\x33\xa8\xc9\x65\xfb\x79\xea\x13\x2c\x01\xf3\x22\x9b\x8d\ +\xd6\x62\xcf\xbc\x7b\x01\xeb\x4e\x2e\xc5\x5e\xed\xf7\xb2\x60\x46\ +\x9c\xb7\xf1\x7a\x13\x3c\x23\x7b\xdd\xbe\x47\x96\xfe\x01\xf9\x08\ +\xca\x25\xbf\x61\xb9\xdf\x35\xe6\xa5\x7f\xf2\xfa\xdf\x13\x1f\xc8\ +\x73\xfb\xc2\x73\xa9\xe5\x9f\x77\x4f\x39\x7e\xd2\xd0\x36\xe8\x71\ +\xcd\xe7\x79\x71\xc7\x8b\xf3\x70\x30\x7a\xd9\x7a\x24\xde\xe3\xad\ +\xed\xea\xe5\xf7\x98\x6b\x1c\x5e\x32\x31\xfc\xf0\x01\x30\xd8\x8a\ +\x9b\x4f\x0a\x5a\x58\x6d\x74\x62\x70\x9d\x41\x24\x31\xd5\xe1\xb0\ +\xbc\xe2\xc4\x16\xb7\x48\x73\x86\x83\x18\xdb\xf1\xfa\xee\xd5\x6e\ +\xd6\x2d\x5c\xec\xf8\xc9\x89\xcd\xf1\x3b\xe7\x35\x8d\x01\x28\x96\ +\x1b\x62\xc3\x53\xdc\xff\x33\x36\xbc\x70\xb5\x88\xe3\x9b\x53\xd4\ +\xa1\xc6\x2c\x70\x36\xed\x3c\xd5\x5d\x7e\xed\xb9\xa9\x96\xfe\x83\ +\xcd\xf9\x8c\xb9\x8d\x47\xd7\x77\xbd\x60\xc3\x3f\x6e\x90\x35\x0f\ +\xdb\x7d\x1c\x79\xe9\x3f\x3e\x3c\xff\xec\x23\xb5\x58\x5b\xfe\xcf\ +\xdc\xd4\x15\x4f\x46\xf2\x6a\x27\x8f\xad\x08\x07\x48\xbe\xb7\x29\ +\x58\x38\x2c\x56\x8e\x14\xe2\xf3\x99\x75\x13\x96\x5d\x3a\x37\xa3\ +\x08\xfa\x93\x9b\x1c\xf6\x21\x09\xf0\x92\xe5\xe8\x00\x24\x3b\xf9\ +\xe4\xf9\xe9\xcf\x70\xff\x94\xb6\xf7\x7d\xc6\xd4\xea\x09\x88\xc3\ +\xce\x14\x3b\xc7\x08\x65\x8b\xd7\xc4\x70\x9d\x2c\x77\x5a\x1d\x7f\ +\x12\x0b\x32\x02\x2b\x5d\xf5\xf8\x01\x56\x2e\x4c\x4a\xc6\xd0\x32\ +\x46\xf9\x88\xe3\x6e\x50\x3a\x72\x13\x93\xce\x71\x4c\xbe\x8f\x9b\ +\x5a\x7a\x1c\xa4\xf6\x71\xfe\x41\x5c\x9a\x9f\x55\x34\x37\xb1\xf9\ +\x96\x99\xbf\x85\xa6\xf3\x85\xdc\x24\xa3\x76\x73\x9d\x17\xdf\xb1\ +\x9e\xd3\x24\x9e\x3a\x33\x86\x9c\xaf\xe4\x66\x1a\xdf\x38\xcb\x31\ +\xbc\x31\xd7\xe0\xf0\xca\x1f\x03\x1d\x79\xce\xd1\x88\x3c\xf6\xa9\ +\xbb\xd5\xc6\x36\x3e\xcb\xaa\x17\xdc\xeb\x88\xcf\x56\xa2\x46\x35\ +\x1b\xda\x35\x89\xb8\xf6\x6b\xd9\xc7\xf6\x3a\xc6\x36\x7f\x70\xe4\ +\x2d\xd8\x6d\xcb\xc9\x0a\xb9\x06\xa3\x69\x81\x6b\x3b\x41\x2f\xd1\ +\xd4\x63\xff\x4a\x7f\x2e\x40\x5b\x6e\x38\xf6\xac\x68\x3c\x5a\x20\ +\x6b\xd7\xc0\xa9\x0d\xc7\x5e\x12\xa4\x3b\xd6\x79\xd8\x06\x73\xd8\ +\x36\xce\x8a\x35\x70\xd8\x07\x87\x4d\x83\x37\xf1\xc5\x33\xcc\xb8\ +\x2a\xc6\x26\x6e\xa0\x31\xb5\xc4\xb6\x78\x03\xf1\xb1\xfd\x7e\xd9\ +\xb0\x18\x8b\xf7\xc9\xa4\x7d\xa4\x4f\xf4\xa7\xee\xe0\x92\x7f\x35\ +\xb9\xf6\x90\x4b\x2e\xf9\x74\x72\xdd\x50\xbb\xe4\x92\xcf\x58\xfe\ +\x65\xde\xfc\xbf\xd9\x15\xf1\x99\xad\xad\xb4\xfc\xed\x32\xc2\xa9\ +\x75\x07\x2d\x85\x3d\x27\x37\x46\xa7\xe9\xc7\x73\x3e\xa6\x75\xa1\ +\x39\x17\xb3\xeb\x63\x7b\x8b\x6b\xf1\xa5\xa8\x9f\xd1\xc6\xcc\x45\ +\xd7\xb7\x5d\xdc\x0b\xca\xb3\x37\x8e\x19\xeb\x24\xc0\x93\xdc\xc1\ +\xd0\x70\x99\x60\x38\xe5\x7a\xf6\x86\x67\xfd\x2c\x2b\x67\xec\xc6\ +\x6c\xad\x89\x06\x7c\xec\x4c\x2e\x0c\xb6\x62\xb6\x33\xae\x1d\x73\ +\xbe\x27\x24\x76\x1e\xb8\x30\xd7\x97\x9e\x3e\x78\x78\xcc\x2c\xf9\ +\xa6\x99\x27\x42\x46\x3b\x6f\xe2\x99\x0c\x39\xb6\x05\x13\x21\x70\ +\x83\xe5\xff\x85\x64\x52\xe5\x36\x7f\x41\xed\xf8\x99\x9b\x49\x93\ +\x89\x15\x5f\x3e\x93\x2a\xc1\xbd\x08\x5f\x75\xf6\x71\x9d\xf4\x1d\ +\x36\xb5\xa4\xd5\x2c\x3c\x93\x36\x7b\x4e\x79\xf5\x45\x88\x2f\x7b\ +\xe7\xce\xf8\xd4\xac\xb8\xb9\x28\x71\x6c\x10\x43\xf9\xf5\xd2\x62\ +\x7d\x28\x31\x73\xb3\x0a\x9e\x2e\xec\x5e\x4a\xfb\x5e\x96\x63\x12\ +\x7c\xef\xf1\xc4\x75\x49\x0d\x4f\x86\xa7\x56\xe4\xfb\xe6\x1a\x64\ +\x6e\x4c\x58\x11\xc7\x10\x07\x8d\xef\x6c\xc6\xf3\xca\xd6\xf7\x2f\ +\xe8\x93\x31\xca\x25\x4a\x1d\x3d\xfc\xfa\x10\x07\x5e\x92\x49\x9c\ +\x5d\xf0\x3c\x46\xe7\x05\x30\x86\x93\x41\xba\xde\x4a\xdb\x2f\x58\ +\x65\xfb\x2f\xc1\xb1\x5b\x83\x2a\x67\x4a\x1d\xe9\x84\xd5\xf2\x74\ +\x2e\x5c\x2e\xf0\x63\x33\x19\x61\x1e\x8b\x27\x40\x32\x89\x90\x89\ +\x13\xf0\xea\xe5\x1f\xb6\x1a\xeb\x99\x7c\x59\xbc\xc9\x59\x75\x36\ +\xac\xf6\xaa\x6f\x7f\xe3\x69\xc9\xcf\x11\x1d\x3e\x0b\xe3\x15\x69\ +\xd5\x99\xc9\x1f\x30\x4f\xf6\x48\xdb\xee\x32\x7d\x28\x20\x9b\x55\ +\xac\xed\x3e\x45\xad\xcf\x44\x97\xaa\x95\x47\x3d\xfa\x9e\xfe\x53\ +\x37\xfe\xab\xf8\x49\x4e\x2e\x7c\xb2\xf1\xdd\x2f\x3e\xbc\x63\xdb\ +\xbb\xa6\x97\xd6\x73\x2d\x08\x81\x7d\x33\xcb\x98\x7c\x32\x5c\x1b\ +\x2b\x98\x51\x1b\xd2\x13\xeb\x92\xd7\x92\xb1\x4b\x3b\x0e\x1f\x9f\ +\x85\x52\x8d\x91\xbe\xd6\x23\x31\xf8\x89\xed\x3a\xeb\x94\xfd\x52\ +\x7c\xca\x39\x66\x43\xe1\xd4\x4b\x6a\xea\x31\x5e\xd7\x75\x1c\x22\ +\x0b\x31\xd6\x8d\x98\x33\x9d\x67\x2c\x9e\xfd\xc1\x9c\x63\xfd\x8c\ +\xf4\x7d\x60\x25\x1e\x23\xf3\x7e\x6f\x60\xde\x24\x8f\x64\x48\xbb\ +\xfe\x48\xd9\xa9\x3f\x32\xf5\x92\xdf\x90\xec\xbb\xc7\xec\x06\x96\ +\xfd\x45\x2d\xe8\x1d\x74\xf0\x3d\xb1\xb2\xef\x03\x0f\xd2\x27\xc3\ +\xc7\x8d\x9d\xbb\x95\x9b\x63\xc1\x1c\xf7\x26\x78\x1c\x23\x64\xd9\ +\x2c\xe6\x27\x0d\x38\x96\x8e\x43\x8d\x0e\xc6\x31\x70\x1d\x7b\xcc\ +\xa9\xe6\xf8\xeb\xe3\x96\x9e\x7c\xc5\xc7\xc7\x70\xd2\x5a\x63\xb8\ +\x26\xf4\x98\x5b\x1c\x22\x8a\xaf\x06\x59\x97\x63\xb6\x81\x4d\xb7\ +\xcd\x31\x71\xc7\xa5\x93\xfc\x70\x7c\xe3\x23\x83\xc3\xe7\xe1\x63\ +\x2b\xb6\xcf\x03\xf4\x7e\xf7\x7a\xe0\x27\xbe\xce\x47\xc4\x4b\x9f\ +\xf8\x83\x69\xe1\xfc\x42\x8f\x03\xab\xd6\xf9\x85\xcf\x83\x64\xfb\ +\xc6\xd5\xd8\x9c\x63\x19\x9b\x6f\xa8\x71\x5e\x93\xed\x1a\x1d\x3f\ +\xdc\x2e\x70\xc9\x37\x1f\x1f\xce\x66\x4b\xa7\xbf\x03\x43\x7b\x6c\ +\xb5\x67\xec\xa9\x77\xf0\xd4\xf4\x66\xdd\xd4\x49\x6c\x30\x35\x5b\ +\x4e\xeb\x1a\xcb\x76\x7b\xa7\xf5\xe1\xf5\xf0\x4d\xb7\x2e\x62\xa9\ +\x6e\x5f\x0b\x3f\xa9\x43\x28\x7d\x58\xa4\x5d\x4b\xfb\xe5\xf4\xc3\ +\x1f\x47\x80\x95\x50\x8e\x2d\xf5\x41\x7c\xe4\xc8\xf5\xee\x6f\x0e\ +\x03\x92\x46\x09\xf4\xe7\x3d\x65\xa5\x5d\x93\xb1\xf7\x58\x43\x4c\ +\xab\x64\x9b\x75\xc3\xd7\xa9\xd0\xed\xbd\xdf\x50\x11\x72\x7c\xce\ +\xe6\x27\x4c\x61\x53\xd0\xc5\x5b\xc0\x29\x26\x2d\x95\x90\x2c\x1f\ +\xa7\xb0\x19\xef\x1c\x8f\x32\xea\x96\x5e\xe2\x92\x1c\xf7\x1c\xc5\ +\xe7\x78\x9f\x00\xa3\xe6\x98\x37\xe7\x1f\x73\x4e\x12\x3d\xdf\x8e\ +\x67\x89\xef\xf3\x9a\x57\xfd\xa9\x46\xbe\x3d\xbf\xf8\xad\xe1\x63\ +\xaa\x30\xf7\x71\xe4\x72\x43\x6d\xce\x81\x96\x66\xd1\x23\x58\x78\ +\xee\xd3\x35\x12\xcf\x79\x10\x43\x25\x16\x7c\xe5\x0a\x9b\xff\x83\ +\x46\x3f\x27\x8e\x31\x2d\xe5\xf9\x1c\x09\x6e\x73\x64\xa4\x6f\xe3\ +\xb6\x96\x66\x3b\x2a\xe3\x54\x37\xfd\xc5\x16\xa1\xdc\x6c\x43\xfb\ +\xc6\xc8\x8d\x07\xee\x08\x71\x0c\xea\x26\xe2\xd6\x38\xb6\xe3\x8c\ +\xd3\x8e\xf7\x81\x86\xec\x27\x03\x0a\x31\x8d\x63\xf0\x89\x55\xa7\ +\x5e\xb4\xad\xfa\xd4\x9e\xf8\xe4\xb0\x4d\x86\x7b\xe4\xc0\xad\x3d\ +\x78\x63\xc8\xce\xb5\xaf\x87\x1c\xfb\xf3\x58\xfb\x1d\x58\xf7\x65\ +\x7c\x9f\x43\xed\x39\xf5\x46\x96\x3f\x90\xf7\x67\x76\xf4\x02\x56\ +\x34\xc7\x7b\xe8\xa3\xe4\x11\x7d\xf5\xa1\x65\xec\x55\x7b\x01\x97\ +\x5c\xf2\x44\xae\xbd\xe3\x92\x4b\x3e\x9d\x5c\x37\xd4\x2e\xb9\xe4\ +\x33\x96\x7f\x99\x37\xff\x4f\x5d\x91\x39\xef\xfc\x24\xf2\xdc\x09\ +\x6c\x3b\xf0\x49\x39\x5e\x2e\x76\xa7\x5b\x67\xc8\x41\x73\xbe\x7d\ +\xfa\x48\x1e\x5b\x3a\x96\x5a\x6c\x1c\x03\x35\xac\xca\xd9\xb8\xd4\ +\xca\xc5\xee\x16\xab\xcd\x64\x40\xb8\xd1\x51\x63\x1f\x93\x01\xf8\ +\x6a\xa3\x17\x76\x5c\x90\xaf\x0b\x7c\x2d\xfe\x21\x1a\xc8\xf5\xcd\ +\xa5\x87\x14\xf0\x95\xb9\x27\x1a\xec\xaa\x85\xc3\x85\x37\x25\xcc\ +\x03\x83\xc6\x98\x3b\xa1\x00\x07\x3d\x71\x8f\x3b\x35\x16\x4e\x3e\ +\xb5\xcd\x39\xc6\x13\x9b\x58\xc7\xc5\x8d\x2f\x03\x07\xcf\x7d\x30\ +\xc1\xd2\xba\xf1\x9b\xef\x3c\x2d\x2e\x23\x3d\x3f\xfd\x68\xec\xb0\ +\x3d\x61\xb3\x6c\x69\x2d\xfb\x5f\x49\x93\x87\x7d\x4c\xde\xc0\x61\ +\x82\x05\xff\xc0\x3c\x39\x64\x0c\xbf\xb9\xee\x2b\xb9\x72\xc2\x99\ +\x78\x73\x8d\x13\x37\x76\xb6\x4f\xdc\xc1\xb6\x7e\xd4\x3c\xdb\x6f\ +\xb6\x09\xdb\xa3\xb1\x72\x73\x83\x4b\x8b\x36\x29\xfd\xc0\xa9\x17\ +\xbe\xcd\xf8\xb8\xf0\x97\x6c\x31\x5f\x78\x92\xcf\xce\x0f\x24\x9d\ +\x79\x1a\x35\x85\x6b\xda\xe1\xc6\xdb\x4e\x77\xe3\x04\x5d\xae\x7a\ +\x8c\x0b\xb4\xb6\x5b\xcb\xeb\xda\x44\x2e\x88\x43\xf6\xf4\x4d\x40\ +\x5f\xec\x6a\x44\x0e\x81\x21\x72\xf2\x24\xb2\xa0\xe8\x31\x30\x55\ +\x67\x52\x98\x67\x28\xc9\x17\xeb\xe5\xb9\x95\xcd\x84\x06\x92\x1b\ +\x1b\x89\x5b\x81\x7b\xa2\x03\xd5\x09\x0f\x26\x3f\xd6\x84\xca\xd8\ +\x9d\x14\xc1\x46\x93\xc0\x44\x89\xf9\xe1\x9e\x7c\x73\xce\x3a\x93\ +\x34\x83\x4d\x1e\x75\xd1\x93\xc7\x5f\x69\x27\xc7\x38\x73\x2b\x9e\ +\x1c\x6a\x9d\xc5\xd3\xc2\xc3\x76\x6a\xbb\xff\x53\x7f\x99\x54\x12\ +\xa0\x18\xec\xc9\x67\x65\xbd\xc2\xe6\xbe\x6a\x1f\x6c\xac\xf4\x11\ +\x1e\x1c\x8f\x95\x3e\xc0\x5a\x5b\x03\x24\x94\x7c\x1e\xcd\xa3\x8f\ +\x8c\x39\x7d\x4e\x0d\x35\xb6\x3d\xb9\xd1\x1a\xf6\xc9\x59\xf1\xd6\ +\x2b\xb4\xbe\x29\x26\x98\x86\xb1\x13\x70\x4d\x53\xc7\xb7\xb3\x62\ +\x7e\x00\xea\xf9\x3d\xe3\x5c\x7e\x63\x5a\x59\x5c\xf7\x15\xe3\x88\ +\xdf\x6b\xa2\xd8\x27\xce\xde\x9f\x09\x7a\xce\xb2\xe1\x64\xdb\x90\ +\xef\x75\xce\x62\x7c\x04\xdf\x34\x37\x05\x7f\x58\xcc\x2c\xdf\xbb\ +\xff\xfe\xbe\x09\x72\x27\x53\x7b\xe7\xfd\x48\xf9\x09\x29\x97\xfc\ +\x8a\xc2\x4b\x3b\x2f\xff\xa3\xd7\x6a\x8f\x3f\x94\x7d\xdf\x78\x96\ +\x74\xc8\x7d\x1f\xae\x5f\xb0\xfb\xe3\x7d\x95\x1e\x32\x9e\x74\xe1\ +\x63\x81\x72\xd6\x6e\x8c\x6d\xb2\x16\x6a\xe2\x0f\x3e\xdc\xa5\x61\ +\xdd\x63\xe8\x1c\x97\x74\xe4\xaa\x4e\xcc\xc7\x68\x63\xf2\x41\x17\ +\x2f\x71\x6b\x18\x0e\x13\x2f\x66\x4d\x2e\x18\x8c\xc4\x6c\x95\x67\ +\x2c\xc8\x16\x3b\x7c\xfa\x0a\xe7\x88\x4d\xae\xf9\xbe\x61\x97\x18\ +\xb2\xf0\xc9\xdf\x31\xfb\xc5\x6d\xab\xb6\xf4\x31\x6e\x9d\x47\x0c\ +\x47\x60\xd6\x33\xf5\x67\x1c\xb9\x09\x75\x60\x93\xb3\x30\x1d\xdb\ +\xb1\x0f\x2c\xe7\x26\x39\x17\x2a\x5e\x9f\x1b\x6a\xf4\x33\xfc\x89\ +\xcf\xb9\x8f\xf1\xad\xbf\x39\x9f\x5a\xbe\xb9\xc9\x11\x60\x9d\x3a\ +\xf8\xe0\xbc\x26\xe1\x9e\xf3\x0f\x5e\xd6\x41\xbc\xc6\x70\x8e\x58\ +\x7d\xc6\xc3\xc3\x36\xdb\x0c\xb8\x1c\xe3\xda\x34\x6c\x1d\x62\x68\ +\x78\x90\x18\x80\x76\x5c\x7b\x4c\xf2\x9b\x6f\x86\x39\x75\x62\xdb\ +\x70\x24\xb6\x04\xdc\xbb\xfd\x0a\x3f\x17\xc3\x92\xb0\x2e\xe5\xe4\ +\xfa\xe5\x81\x94\x9f\xb7\x48\x6b\x00\x8d\xf8\xfd\x08\x22\x8e\xfd\ +\x58\xd4\xe5\x98\x43\x86\xf1\x84\x22\xe5\x38\xd5\x4d\x24\xc7\xa8\ +\x40\x89\xf7\x58\x6d\x5b\x47\x67\x2d\x1c\x93\x75\xa8\xf3\x79\xc7\ +\x7c\xdb\x6c\xdd\x28\xf3\x22\x4c\x1c\x7f\x1b\x8d\x98\xf4\xca\xe5\ +\x01\x07\xbb\x0b\xb6\xf3\xdc\x17\x37\xb0\xe0\x24\xef\x74\x3e\xe4\ +\x71\x85\x37\x7d\x18\x5f\x35\xf3\x87\x3d\xeb\xdc\xc8\xdc\xd8\x4b\ +\xb7\xee\xd4\x49\x5e\xe3\xd3\x9f\x75\x38\x14\x34\xc6\xc3\x7f\x88\ +\xa4\xc7\xe0\x3c\xcc\x67\xfb\x50\x2b\x39\x8a\x32\xd0\xda\x1e\x74\ +\xb4\xe1\x9e\x3b\x18\xe7\xa9\x87\xfc\xd8\x8a\xc5\x00\xb5\x4d\x3b\ +\xfc\x39\x2f\xeb\x2b\xeb\x47\xc2\xd1\x07\x4f\xf6\xf7\xa9\x95\xd2\ +\xe8\xd6\x33\x60\x44\x0f\xcc\x0d\x97\x66\xbd\xc7\x5f\x4b\x98\x87\ +\xbd\xe3\x4b\x63\xd6\xa6\xb5\x8d\x59\x7f\xe1\xc1\x1a\x35\x6f\xc5\ +\x0d\xad\x08\xc1\x42\x6a\xbb\xc3\x87\x57\x1f\x33\x0c\xdb\x6d\x24\ +\xa7\x77\xc7\x8f\x93\xd6\x7d\x2a\x80\x13\x7c\x96\x74\xc9\x25\x4b\ +\xae\x3d\xe4\x92\x4b\x3e\x9d\x5c\x37\xd4\x2e\xb9\xe4\x33\x96\x7f\ +\x99\x37\xff\x6f\x7e\x45\x7a\x82\x9b\xa7\x65\x3e\x7a\x1b\x89\xc8\ +\xc9\xc5\x88\x34\x60\x28\x07\x77\x3e\xae\xad\xc5\xab\x3b\x7e\xf8\ +\xc1\xc3\x35\x60\x3b\x2e\x01\x23\x79\xd4\x8f\x1e\xbf\x7a\xe2\xbe\ +\xa0\x97\xed\x79\x92\xc1\x71\x7a\x51\xef\x0b\xfc\x2d\xaf\xcb\xaa\ +\xa5\xe8\xf8\xf6\x3a\x91\x00\x36\xb8\x8c\xe8\xc1\xea\x67\x39\xf2\ +\xed\x78\x41\xf5\x42\xbf\x31\xdb\xd4\xae\xbf\xf0\x4e\x6e\x78\x62\ +\xa0\x71\xec\x0c\x3b\x31\xff\x1f\xb5\xe1\x33\x09\x42\xd0\x3e\xf1\ +\xe6\xcd\xb2\xb0\xe0\x4c\xae\xb0\x8d\x98\x30\x39\x6b\x78\xe5\xf3\ +\x33\x93\xd2\x9e\x74\x51\x4c\x60\x38\xe5\x1b\xd3\xe2\x7a\x68\xb0\ +\xad\xee\xf4\x95\xbe\xab\xed\x37\x66\x2c\x63\x76\x1e\x5a\x71\x05\ +\x9d\xaf\xa6\x1c\xfa\x0c\x6f\xea\xcd\x78\x8e\xbe\x53\x9b\x9c\x99\ +\x9c\x3a\xfa\x81\x4b\xd9\xe6\xf0\x90\xb6\x8d\x46\xc6\xd6\x93\x5d\ +\xd8\xbb\xb1\xb1\x9b\x2f\xc7\xcd\x6a\x1c\x99\xf8\xb6\xbb\xf7\xa6\ +\x1a\xd2\xa9\x16\xc6\x20\x05\xc7\x75\xb5\x68\x34\x47\xac\x0f\x9e\ +\x23\xc4\xdd\x8f\xc4\xdd\x79\x36\xc8\x15\x42\x8b\x69\xc1\xc7\x0d\ +\xbb\xd2\x78\x2e\xa8\xa3\x87\x97\xeb\x65\xf5\xee\x90\x1a\x7c\x39\ +\x76\x41\x08\x24\x58\xfb\x0e\xf3\xc4\x43\xfc\x93\xbd\x2f\x6b\xf2\ +\x64\xec\x97\xb9\x09\x33\x93\x16\xd2\x4c\xbc\x38\x0f\xbb\x98\xfd\ +\x89\xb7\xce\x29\xc7\x5a\x8b\xb4\x1c\xe9\x70\x26\x3f\x93\x39\xe1\ +\xe8\x19\x7b\x72\x5a\x67\xd5\x95\x4e\x8d\xd8\x68\x7e\x3a\x71\xfe\ +\x7a\x9b\x6f\x90\xa5\x1e\x6b\x1d\x6d\xce\xf4\x2b\x3b\x3f\x4d\x48\ +\xbd\x63\x6c\x10\x1d\x67\xc3\x4d\x7d\xd7\x0c\x2e\x82\x6c\x6e\xbc\ +\xe1\xa3\x68\xa8\x9f\xb8\xb7\x0b\xfd\xf1\xe5\xc5\xa9\xc1\xde\x07\ +\x0f\x64\xb8\x40\x8d\xdb\x91\x30\x16\xa0\x04\x1d\x3d\x6b\x72\x9d\ +\x83\x6b\x62\xf1\x6a\xfb\x7a\xb6\x4f\xdf\x4c\x33\x94\x38\x0b\xeb\ +\x99\xf5\xc2\x6d\x3f\x8d\xa9\x59\xb6\xc7\xe8\x3c\xa3\x0b\x43\xaf\ +\xb8\xed\x19\x63\xd6\xcb\x63\x2b\xdf\xd6\xc4\x19\x3b\xb6\x13\x50\ +\xd1\x8c\x35\x50\xf1\x1f\x92\xe6\x2d\xe9\xfb\x2c\x42\xec\xe1\x3b\ +\x4a\xf2\x91\xf5\x57\xfe\x03\xf9\xd8\x12\x97\xfc\xba\xf2\x81\x97\ +\xec\x24\x3b\xef\x7e\xf7\xb0\x0c\x08\xe9\x01\x81\x7d\xef\xb4\xbf\ +\x49\x5c\xef\x11\x7f\x3a\x92\xcc\xb1\xc0\x6d\x64\x8b\x2e\xf1\x71\ +\x64\xac\x65\xf6\xf8\xb2\xa4\xbe\x9f\x34\x59\xc2\xd0\x71\xb3\xd8\ +\xc4\xfc\x40\x73\x6c\x05\x1b\xbc\x39\x83\xe7\xb8\xa9\x63\xab\x6d\ +\x5a\xe1\xd5\x39\xdf\x4a\x3c\x18\x8d\xb3\xe8\xd4\xb9\xce\x6f\x0e\ +\x0c\xb7\xb5\xa7\xaf\x3d\x1e\xac\xbc\x39\x8e\x3a\x88\x05\x0f\x3b\ +\xdb\xbb\xac\x95\xe3\x18\xb6\x39\xc9\xc0\xf6\xf9\x86\xc7\x68\x84\ +\x00\x34\x2d\xc2\x5a\xd3\xb6\x75\x6c\x9f\xe3\x40\x52\xdc\x37\x9a\ +\x64\xcb\xca\x98\x56\x3c\x39\xd8\x39\xb7\x1a\x2e\xf1\xcd\xd6\xb9\ +\x89\x39\x3e\x5f\x39\xf4\xd4\x39\x71\xc1\xb7\xbc\xa9\x7f\xe8\xc9\ +\xed\xf8\x17\x7e\x68\x3f\x76\x9f\xfe\x8b\x4d\x6d\x99\x0b\xc7\xb1\ +\xdf\xfe\x71\xac\xc5\x75\x0d\x38\xe4\x79\xa3\x0a\x43\x83\xba\x96\ +\x1d\xd7\x32\xe6\x16\x7f\x02\xcd\xc3\xe4\xdb\x7d\x7e\xaf\xe4\xf5\ +\x53\xa3\x45\xfb\x90\xfa\xf5\xb1\xa1\x08\x2d\x61\x70\xc3\xef\x75\ +\xf0\x48\xd5\xf5\x60\x10\xc9\x98\x1c\x09\x49\x80\xaa\xcf\x31\x87\ +\xf5\x75\x77\xc3\xc7\x71\x52\x33\xab\x90\x1c\x9b\x52\x8b\xa3\xa9\ +\x2d\xf8\x68\x9f\xa3\x51\x2b\x75\xcd\xb6\xca\xa8\x53\x37\xb1\x59\ +\x38\x7c\xad\x9b\x50\xa3\xfb\xf3\x8d\x1c\xdb\x5e\x73\xdc\x93\xed\ +\x9f\x69\xf4\x12\x9e\xcf\x3b\x7c\x4c\xa4\xc6\x7d\xcd\x0d\x83\x6f\ +\x3f\xf9\x8b\xb3\xd9\xf6\x57\x7c\xe7\xed\xf5\x35\x74\x6a\xb1\xd6\ +\xf4\xcf\x52\xce\xd2\x8a\xa3\x21\x4f\xff\x8b\xe7\x73\x09\x30\x85\ +\x39\xc8\xd3\xc2\x67\xc1\xa6\x2f\x1e\x6b\x0c\xa6\xe8\x99\x3c\x12\ +\xf3\x60\xfb\x26\xb8\xe3\xf1\xa5\xec\x39\xd1\xb5\x7d\x42\xb1\x50\ +\x40\xb7\xd5\xf5\xad\xe0\x1d\xaf\x2a\x92\x78\x2d\x78\xd4\xe3\x35\ +\xc6\xf6\xcb\x5e\xdb\x71\xb3\x96\x6f\xef\x14\x3f\xf4\xc4\xe8\x13\ +\xec\xf0\xf1\xce\x39\xb8\x19\x93\x8d\xc5\xb3\x3d\x9c\xc3\x2b\x1f\ +\x5c\x8a\x1b\x7f\x86\x86\xd7\xeb\x0e\xd9\x58\x5e\x1d\xd8\xde\x6f\ +\x11\x93\x0d\x1e\x7d\x6f\x02\x19\xb9\xc7\x7f\xb6\x4c\xc1\x5f\xac\ +\x83\x4b\xfe\xc5\xe4\xda\x43\x2e\xb9\xe4\xd3\xc9\x75\x43\xed\x92\ +\x4b\x3e\x63\xf9\x97\x79\xf3\xb3\x22\x9c\x1d\xfc\xe6\x57\xa8\x03\ +\xcd\xf3\x2c\xfd\x28\xe6\xda\x98\x53\x75\x9e\xe6\x94\xe8\x68\xae\ +\x7c\x9f\xf8\xd8\xce\x29\x64\x6c\xf1\xb0\x55\x84\x0b\x66\x41\x94\ +\x0b\x66\xa2\xb5\x6d\x9e\xcb\xce\x32\x38\x57\xc8\x83\x87\x83\x99\ +\x6f\x2a\x79\x32\x20\xc9\x8e\x25\xd8\x1c\x5f\xe8\x0f\x3f\x31\x6b\ +\x63\xf5\x9d\x7b\xc4\x83\x65\xac\x60\x8b\x6f\xa8\x1c\xd7\x9d\x31\ +\x05\x5f\xf5\xba\x1c\x76\x26\x34\x28\x70\x8a\x79\x82\xe2\xf0\x33\ +\xb9\xc1\x98\x0f\x9e\x73\xe9\xab\x7a\x7c\xc7\x66\x02\x86\xc9\x8d\ +\xe6\xce\x44\xcd\xca\x27\x97\x89\x0d\x8d\x15\x53\x84\x55\xc7\x93\ +\x27\xd3\x97\xf1\xc4\x3c\x59\x34\x3c\xc7\x59\xd2\xcf\xe4\x2e\x3d\ +\xfd\x78\x19\x7c\x8b\xf1\x10\x46\xe7\x7e\x98\xc3\x50\x89\x77\x42\ +\x87\xd8\xee\xf3\x2d\x3c\xf3\x64\x83\xb9\xa6\x92\xa4\x67\xd2\x49\ +\x8d\xeb\x79\x7d\xb0\xc1\x90\x65\xc3\x09\x14\x53\x97\x9e\xd5\x3c\ +\x11\xef\xd6\xb8\xe2\xe7\x7a\x56\x97\xa9\xce\x4f\x00\x35\x37\xd6\ +\x1c\xce\x2e\x61\xae\xfb\x98\xfd\x81\xa0\x5f\x02\xd9\x2c\x26\x33\ +\x34\x7c\x19\x2f\x53\x73\xea\x26\x1e\x92\x21\x57\xc9\xc5\x73\x7c\ +\x09\x86\xfc\xb9\x20\x86\xbd\x6e\x98\x2d\x9d\x26\x13\x0e\xc0\x79\ +\x07\x32\xf1\x61\x0e\x70\x1a\xc7\xe0\xa3\x67\x21\x96\xdc\x70\x33\ +\x09\x82\x3b\x93\x27\x06\xd7\xa4\x10\x37\xd3\xd6\xff\x23\x6b\x3c\ +\x37\xa0\xc8\x07\x67\x72\xe5\x88\x79\xa2\x61\x8b\x33\xf1\x22\xc3\ +\x71\x78\xb1\x8f\x78\x34\xe5\x5b\x43\x18\x7d\xf9\x9f\xe6\x3b\xbf\ +\x78\xf5\xf8\x6a\xdc\xf7\x4c\x10\xa5\xaf\x68\xe3\xe5\xf8\x21\xdc\ +\xb6\x17\x71\x1a\xcf\xfa\x12\x63\x41\xe5\x26\x94\x0a\x14\xa2\x56\ +\xfa\x5b\xf5\xbc\xb4\x1f\x6c\x29\x9a\x60\xf1\xd5\x3a\xe6\xb8\x54\ +\xfe\x87\xd8\x9e\x1f\xfb\x78\xcd\xf4\x1a\x62\x52\x2a\x05\x81\xad\ +\x59\x17\x8f\x87\x87\x43\x8d\xa1\x89\xe3\xd0\xb7\xed\x89\x67\x6c\ +\xa9\x1f\xfb\x78\x9d\x89\x83\x9f\x35\x0f\xdb\xa3\xe1\x2e\x3b\xcb\ +\xd8\xd6\x2a\xfb\x3d\x3f\x9d\x84\x0b\x6f\xb6\x39\x9e\x29\xe5\x15\ +\xb3\xd8\x8e\x0e\x5c\xff\x5e\xe6\x0d\xe1\x30\x4d\xdf\x18\x2b\xf0\ +\x43\x72\xcf\x7d\xa6\x9f\x1f\x23\x9f\xa0\xc4\x25\xbf\x90\xcc\xee\ +\xf1\x43\xf2\x83\xbb\xcf\x56\x68\x76\xa1\xa9\x9b\x0f\xf2\xc8\x73\ +\x7d\xdd\xd7\x37\x4f\x4d\x73\x69\xa7\xa4\x8f\x31\x77\x75\x72\xf4\ +\xd9\x44\x2e\xc7\x17\x8e\xe3\x2b\x44\x0e\x98\x0f\x6c\xcd\x70\x7d\ +\xd9\x40\x46\xb0\x0f\xed\x87\xfd\x1e\x37\x65\x41\x9e\x73\xa8\x15\ +\x27\x36\x18\xc7\x5e\x69\x73\xd4\xd7\xfa\x56\x12\xc7\xe8\x14\xf0\ +\xc3\xd8\x49\x37\x12\x52\xb1\xfb\x18\xb5\x1b\x43\x13\xf7\x32\xa8\ +\x0f\xac\x8d\x0d\x16\xc7\x8f\xea\xf8\xa8\xda\xf6\xe7\xdc\xa0\x59\ +\x9b\x9d\xb1\x47\x1b\xb1\x7d\x6c\x07\xf4\x3a\x0f\x2a\x4f\xad\x75\ +\xce\x47\xa8\x9e\x58\xce\x49\x82\x3b\x07\xbe\xb0\x55\xa3\x1c\xfc\ +\x7b\x7c\xfc\xa3\x4e\x6d\xeb\xc3\x1f\x4c\x46\x62\x1d\xb3\x31\xc6\ +\xe3\xd1\x10\xde\x72\x8d\xd7\xe6\x35\x53\xfd\xf5\xd3\x90\xe5\xba\ +\x7f\x71\x52\x83\x18\x8b\x83\xe9\x6b\x78\x06\x65\xb3\x8e\xf0\x69\ +\x3d\x81\x1f\x9e\xe9\x61\x88\xe3\x76\x9d\x6f\xc5\xe6\xdc\x84\x07\ +\xbb\x90\xb4\x8d\xd9\x85\x83\xbb\x42\x79\x23\xee\xd7\x4f\xce\x90\ +\x2a\x8c\x75\x39\x32\xc4\x39\x5c\x1f\x81\x5c\x3f\x87\x94\x44\x86\ +\x1f\x28\xe7\x49\xb6\xcd\x93\xd5\x38\xe2\x5c\x69\xf0\xa9\x11\xbb\ +\x0b\x51\x1f\x4a\xf1\xd1\x9c\x23\x25\x36\xe7\x24\xbe\x71\xc6\xb1\ +\x58\x7a\x7e\xaa\x9a\x18\xc7\x61\xeb\x62\x3e\xb7\x91\xed\xa3\x36\ +\x31\x72\x0c\xa5\x8e\x0f\xf3\xad\xb9\xea\x2f\x7e\x6d\x12\x88\x4d\ +\x8e\xf9\x66\xc8\xee\x1f\xd3\xb0\x98\x9b\x98\xc7\x61\x9d\x1a\x53\ +\x6b\xfa\x51\x54\xb1\xac\x9b\x71\x6a\x1a\x4b\xb1\x35\x1e\x16\x7a\ +\x52\xdc\x78\x39\x4a\xf3\x76\x0b\xa6\x87\x31\x2c\xb3\x8d\x9b\x61\ +\x6d\x46\x21\x74\x62\xcb\xd6\x42\x9e\x91\xc6\x56\xde\xca\x69\x5d\ +\xef\x27\xe4\x04\x77\xbb\xb8\x5a\x28\x33\xdf\x4c\x23\x68\x9c\x56\ +\xf9\xa6\x81\x1b\x28\x36\x7e\xf4\xc1\x39\x62\xab\xbe\x1e\x8e\x15\ +\xdf\x6d\x8f\xaa\xfb\x9a\xf9\xc6\x5b\x0b\xbf\x15\x96\x4e\xb0\x1e\ +\x9c\xf1\x1b\xef\xf6\xb5\x2d\xc9\x3e\x1b\x1b\x59\xf6\xbc\x0e\xb3\ +\x53\x4b\x6d\xb4\x43\xc0\x91\x89\x3d\xc7\x7b\x22\x1f\x2a\x7a\xc9\ +\x25\x1f\x96\x6b\xaf\xb9\xe4\x92\x4f\x27\xd7\x0d\xb5\x4b\x2e\xf9\ +\x8c\xe5\x5f\xf6\xcd\xff\xb1\x2b\x36\xe7\xa3\xbf\xb8\xec\x27\xbd\ +\xcf\xdb\x58\xbe\xdc\xee\xc5\xb2\x23\xa2\xbc\xf0\xac\x4f\xd8\x96\ +\x7e\x6c\xe7\xe3\x5b\xcb\x04\x4e\xf8\x88\x2e\xc2\x53\x34\x71\x42\ +\xb9\xda\x36\xcf\x17\xd0\xe8\x2e\xb1\x09\xab\xd1\xc5\xf3\xc4\x0c\ +\x82\xda\xe4\xaa\x1d\xc6\xc6\x71\x0c\x8e\xc4\xe1\x72\x8c\x31\x01\ +\x00\x0f\x08\x1f\x1c\x95\xbc\x5c\xe4\x3b\x68\x4d\x68\x6c\x6b\x90\ +\xdd\x3f\xe1\x98\xf1\x71\x76\xce\x2c\x67\x9f\x29\x09\x8d\x8d\x6d\ +\x82\x3d\x78\xfd\x99\x38\x09\x06\xf3\xfd\xed\x05\x93\x08\xf6\xe1\ +\xb3\x40\x05\x63\x1d\xc5\x58\xdb\xe9\xb0\xc1\x8f\xda\x5a\x6e\x7c\ +\xdb\x8b\x90\x9b\x63\x02\x67\xd7\x5a\x3c\x21\x23\xcd\x8b\xb6\x4f\ +\x12\x8d\xef\xfe\xab\xd5\x24\x6e\x3f\xfd\xe2\xa3\x5d\x93\x34\xe3\ +\x07\xc7\x8f\xd6\xc7\x5f\x13\x40\xfd\x59\x4a\xd7\x75\x18\x1f\x23\ +\x63\x95\x23\x73\xfe\xef\x9c\xab\xb8\x26\x3f\xcd\xc9\xe4\x8e\xa2\ +\xc6\xe1\xa9\xd5\xbe\x4b\xe7\x18\xe8\xec\xcf\x8e\xe8\x39\x9e\x6d\ +\x94\xae\x58\xf1\xf7\xc9\x1e\xc7\xa4\x96\xa6\x22\xe3\x21\x0e\xe2\ +\xbe\xe8\x22\x79\x88\x86\x23\xa1\x46\x62\x1e\xe7\x14\xa1\x9d\x38\ +\xf9\xea\x98\x0b\x5f\x20\x28\x0c\x71\x2e\x91\x4d\xf3\xc5\x36\x2a\ +\x9c\x99\xcc\x70\x48\x17\xca\xce\x55\x80\x89\x0a\x92\xe6\xc2\x9c\ +\x99\x10\x57\xf1\x53\x0f\xe2\xe8\xe6\xa3\xf7\xe5\x84\x91\x5b\xcc\ +\x93\x25\x9d\x28\xc9\xff\xf6\x10\xae\xb8\x27\x4c\x3c\xd1\xc2\x32\ +\x79\x9d\x60\xa8\x4e\x5e\x31\xe3\xd5\xe5\xc8\x68\xbd\x4e\xc0\xb8\ +\x4b\x62\xfd\x0b\xe8\xa9\xe7\x40\xfa\x99\x1b\x6b\xc4\x9c\x6b\x5e\ +\x16\xbe\x0a\xb6\x4f\x0e\x39\xc6\x6c\x82\xcd\xd4\x71\x6d\x73\x07\ +\x0b\x9f\x3c\xf8\x8c\x05\xb5\x26\x67\xe2\xc4\x77\x5d\x16\x7f\xe5\ +\x2c\x3e\x93\x2a\xad\xb7\x78\x2b\x67\xcb\x87\x40\x17\x26\x32\xa6\ +\x23\xee\x87\x6d\xdc\x62\x68\xe3\xee\xc9\x4f\xe3\xb6\xd3\x07\x4b\ +\x7e\xb2\x93\x90\x09\xd1\xb5\xd1\xc7\x36\x7a\x3a\x2e\x8f\x7b\xcb\ +\x41\xdb\xde\x31\x79\xe9\xcf\xc6\x99\x37\xb6\xea\xf0\xde\x03\x32\ +\xb6\xe5\x3b\xab\x76\xb4\x91\x03\x8f\xe5\x4d\x12\xdc\x7b\xfd\x47\ +\xca\x8f\xe1\x3f\xe2\x4e\xff\x3f\x41\x7e\x46\xea\x25\xbf\xb0\xf0\ +\x32\x7f\xe8\xf5\x99\xf8\xbe\x3b\x3c\xda\x3d\x2c\x8f\x8a\x09\x7b\ +\x92\x2f\xa0\x9f\xff\x3f\x28\xb3\xdf\x73\x5c\xc0\x8d\x77\x96\x27\ +\xf5\x7b\x4c\xd2\xe2\xe3\xca\x16\x8c\x0f\x22\xed\x62\x70\x4d\x2c\ +\xab\x7e\xb5\xd1\x93\xe6\x00\xc9\x71\xeb\xc0\x17\x9f\xe3\x2c\xff\ +\x63\x0d\xed\x07\xf0\x58\x6a\xb1\xc7\x5f\xda\x91\x4d\xbb\x7d\xc0\ +\x9f\x38\x47\xcf\xc4\x8b\x90\x62\x9e\x31\x3f\xf9\xf6\x3e\x3a\x3e\ +\xb2\xd7\x18\xee\xd4\x3e\x7c\xb5\x69\x16\x6e\x57\x0f\x63\xc6\xe9\ +\xff\xf0\xbd\x35\xc6\xf6\xd8\x38\xa7\xd0\xe2\x6d\x01\x1e\xdb\xe7\ +\x2c\x3c\x26\xe6\x9c\x9c\x3b\xcd\xf9\xcc\x9c\x2b\x51\x67\x9d\xe3\ +\x4c\x2e\xe7\x52\xc6\xda\x8f\xb1\xb3\xbf\x72\xac\xe3\xcb\x58\x79\ +\x6b\xf1\x38\xb4\xf0\x52\xcd\x78\xe5\x0b\xae\x4f\x1c\x9d\xf3\x05\ +\x6c\x8c\xc9\xb7\xbd\x78\xb8\x6a\xb2\x05\x8b\x95\x83\xf2\xe6\x71\ +\xbb\x62\xde\x5d\x93\x92\x98\x9e\xaa\x16\xb0\x38\x42\x1f\x5a\x45\ +\x7f\xdc\x0f\x9c\x5c\xb3\x65\x67\x7c\x8e\xca\xc0\xa4\x1e\xc7\x31\ +\xd6\x79\xde\x2b\xd3\x67\x77\xf8\xd6\x4a\xeb\x02\x3d\x66\xb9\xf6\ +\x89\xc3\xa1\xb7\xbe\xcf\xbd\x34\x12\x4e\xce\x78\x72\x12\x28\x23\ +\x6a\x3b\x5e\x69\xc0\x3e\x7e\xfa\x18\xd5\x63\x21\x71\x1e\xce\xe3\ +\x38\x8b\x86\x93\x73\x89\x9c\xcf\xc8\xc6\x5f\xe7\x31\xc2\x1d\x6f\ +\x6c\xf1\xc7\x2f\xa7\xfa\xc0\x8e\xe5\xec\x4f\xdd\xe0\x32\xdc\xd7\ +\xaa\x33\xe7\x51\x8c\xb9\xff\x7b\xf7\x18\x03\xb9\x47\xff\xce\x25\ +\x2e\x7f\xd5\x27\x53\xf5\x58\xe7\xfc\x21\x94\x19\x47\x1c\x2e\xb1\ +\xf1\x5d\x33\xb5\xac\xd8\x5c\xd8\xee\x1f\x6d\xc0\xbc\x08\x58\xf9\ +\xf3\xa0\x1f\x47\x68\x68\x85\x59\xf1\x3a\x01\x0d\x06\xbb\x1c\xdb\ +\x79\xcc\xab\x6c\xaf\x5c\x73\xb0\xe0\xd9\xa4\xff\xb0\x57\x3d\x1e\ +\x2b\xae\x06\x1b\x53\xad\xb7\x0f\xeb\x00\x3c\x31\xc7\x79\xa8\xd6\ +\xe6\x27\xa5\xdb\xcb\xfd\x4c\x4e\x35\x2d\x85\xa4\xbb\xaa\xc1\x8b\ +\x65\x51\xa6\x54\x5e\x31\x42\xc5\xfd\x24\x80\xef\x40\xd2\x10\xaf\ +\x76\x9c\x64\x55\xc6\x3c\xf1\x24\x1b\xe5\xa1\xdc\xf3\xf0\xef\x73\ +\x4e\x18\xc6\xc7\x16\xbf\xe4\x92\x43\xae\xbd\xe5\x92\x4b\x3e\x9d\ +\x5c\x37\xd4\x2e\xb9\xe4\x33\x96\x7f\xd9\x37\xff\x6f\x72\xc5\xf6\ +\x41\xcd\xa9\xcc\x71\x22\x3c\x27\xe8\x7c\x24\x9f\x86\x2f\x27\xa1\ +\x5e\x9e\x42\x1c\x4e\x3f\xbe\xd7\xc7\x38\x57\xcc\x5c\x95\xd6\x45\ +\x1c\x63\x32\x82\x3b\x06\xe6\x65\x99\x14\x8c\xf4\x29\x80\xa7\x6d\ +\x66\x07\xb8\xc0\x66\x8a\x23\xf1\xf0\xc2\x8f\x3d\xba\x13\x04\x53\ +\x8b\xcb\xf9\xa4\xad\x98\x71\xb4\x59\xe3\xa3\xe0\xc7\x9f\x05\x65\ +\x3d\xbc\x15\x47\x11\x0f\xf6\x63\x6e\xc2\x0d\x66\x4a\x6f\x24\x05\ +\xea\xd8\x1d\x3b\xf0\x85\x79\x92\x85\xf5\x91\xa6\x9e\x27\x62\xc8\ +\x01\xd3\xf6\xc4\x5f\xb8\x18\xd2\xe4\x66\xf2\x25\xf5\x0e\x9f\x31\ +\x87\x67\x7f\x8d\xa3\xf5\xb1\xa9\x83\xed\x3a\xb1\x3d\xc1\x83\xdf\ +\xb1\xcc\x44\x91\x9a\xf0\xa9\x35\x75\xac\x9f\x5f\xd4\x38\x07\x3b\ +\xeb\x81\x4f\x2c\x63\x50\xd3\xfe\x1e\xe0\xf5\xc9\x99\xf1\x3b\x9f\ +\x87\x5c\x38\xc8\xea\x87\xed\x62\xdb\x4f\x8b\x5f\x33\xb4\x96\xe4\ +\x68\x9b\x68\x7f\x36\x9a\xf4\x23\x98\xa7\xdd\xc5\x97\xe1\xfa\xe2\ +\x06\x3b\xf3\xbc\x5e\x1a\x67\x2b\x7a\x19\x82\xd6\xc4\x8f\xfd\xed\ +\x41\x8e\xbb\xc5\x50\x83\xca\x9c\x83\x2a\x68\x5c\xbe\xf0\x96\xf6\ +\x85\x35\x5a\x2e\xb9\x86\xfd\x3f\xb0\xe8\xa9\x7e\xc8\x5a\x22\xe3\ +\x7b\x42\x08\x6b\xab\x33\x13\x29\xf8\x33\xe9\x33\xfe\x69\x99\x09\ +\x21\xd5\xca\x4d\xb2\xfc\xf5\x35\xfa\x88\x55\x6b\x61\xc0\x6b\x12\ +\x02\x7c\xfa\xdd\xb8\x32\x6c\xfb\x46\x96\xdd\xf8\x2c\xf9\x06\x5c\ +\x6c\x75\xb8\x70\x25\x7a\xa2\x22\x93\x41\xe9\x67\x70\x6a\x66\x7d\ +\x1a\xa3\xcf\x95\x7b\x1e\x2b\xfd\x89\x2d\xbf\x18\x23\x7c\x95\x5c\ +\x26\x2b\x04\xc9\xce\x64\x14\x21\x21\xa9\x23\xbe\xeb\xb4\x3f\x22\ +\xa4\x58\x2b\xb4\x62\xce\x1b\xae\x03\x76\xdd\xb1\x71\x3d\xc9\x6f\ +\x9c\x07\x3b\x44\xb8\x93\xdf\x7a\xbc\xb0\xd3\x6f\xc0\xe6\xda\x34\ +\x96\x09\x2a\xf6\x95\xfa\xf0\xad\x3b\x6e\xe2\xc4\x5c\x17\x1f\x05\ +\x46\x1c\x6a\x71\x1e\x63\x27\x50\x1f\x68\xf7\xa3\xa7\x9f\x48\x7c\ +\x1e\x13\x4f\x08\x3b\xba\x46\xe2\xd5\x96\x89\xaf\x77\xc4\x26\x70\ +\x16\xfc\x20\xfe\xac\x3c\xaa\x77\x8f\xb9\xe3\x1f\x2f\x8f\xd2\x28\ +\xfb\x13\xcb\x5d\xf2\x4f\x90\x1f\xb3\x2b\x59\x3e\x90\xb0\xbf\xee\ +\x1f\x5b\x77\xf6\x7d\xcb\x96\x74\x9f\x0f\x6d\x30\xd9\x73\xac\x19\ +\xf1\x11\x46\x58\xf4\x42\x3a\x26\xd9\xdb\xf1\x70\x8e\x7b\xd3\xae\ +\x63\x76\x0f\x7a\x71\xcb\x30\x0e\x90\x23\x96\x35\x0a\x9b\x76\xe2\ +\x78\x1c\x93\xb1\x17\xa6\xd6\x75\x80\x26\x66\x74\x71\x4e\xf1\xb1\ +\x3d\x8e\xb1\xc1\x6d\xde\x71\xc3\x09\xb4\x73\x65\x13\x37\x60\x24\ +\x98\xf5\xc6\x19\x1f\x4e\x17\xa7\xe8\x71\xe3\xa7\xa5\xb1\xc1\xcd\ +\x33\x51\x16\xeb\x7e\x60\xb1\x8f\x73\x11\xd3\x1c\x0b\x8f\xed\x1a\ +\x5e\xce\x8b\x8c\x2d\xee\x86\x0b\xe3\x3c\x67\x71\x64\xcb\x88\xcd\ +\x39\x15\x35\x9d\xd7\x31\x35\x3f\xbc\xda\x19\x7c\xea\x7b\x0c\xe5\ +\x79\xcc\xe4\xb9\x8a\xeb\x40\x0c\x16\x7c\xfa\x75\xad\x89\xe9\x61\ +\x03\x36\xf1\x18\x5e\xb0\x3d\xe6\x3b\xce\x13\x5d\xee\xe8\x89\x2d\ +\x19\xae\x5b\xc9\x29\x7e\x97\x53\xc5\x58\x39\xbe\x0f\xee\xb7\x05\ +\x66\xf7\x73\x8b\xd4\x82\x10\x8e\x33\x7d\x9f\x99\x6f\x68\x45\x85\ +\xc9\xe6\xe9\xba\x1c\x66\xcb\x7d\xa0\xbd\xb8\x0a\x00\xcf\x60\xb6\ +\x87\xa7\xe3\x1f\x35\x72\x0e\x40\xbd\x1c\x7f\x39\x67\xe1\x31\x37\ +\xd0\xa6\x9e\xff\x07\x9a\xb0\x75\x73\xcb\x7e\xc6\xb1\x7c\x1d\xa6\ +\x65\xd1\x49\xf1\x59\x86\x7f\x2c\x93\x67\xed\x7e\xe6\x86\x5a\xc7\ +\x46\xa5\x9e\x13\xc0\xa1\xf8\xe2\x7a\x7c\xe4\x24\xae\xa6\xb9\xc2\ +\x7d\xae\x33\xe3\x62\x69\x5d\xc7\x39\x8f\x90\xf6\x29\x06\x79\xa3\ +\x69\xf5\x28\xcf\x28\x24\x6d\x67\xbb\x8d\x1d\x1a\xcb\x2b\x2b\x1d\ +\x8f\x87\x9f\xe4\x55\x3c\x3e\x40\x3b\x61\xd9\x6c\x0d\x83\x5a\xb4\ +\x4a\xea\x6a\x6a\xa3\x87\xc3\x42\x0d\x47\x01\xad\xa7\x8f\x94\xc1\ +\x0f\x9e\x38\x10\x5b\x2f\xda\x11\x83\xd9\x56\xab\x0f\xc7\xf1\x67\ +\x8c\xb4\xf8\x0e\x1c\x3e\x83\xab\xe0\x33\x58\xeb\xde\x28\x73\x4b\ +\x9d\xea\x16\x08\x27\x60\xb6\x63\x9c\x43\x26\x07\x39\x19\xec\xf9\ +\x3f\x52\xfc\x66\x89\xf9\xac\xec\x9c\xe9\xa2\x63\xbd\xe4\x92\x8f\ +\x95\x6b\x8f\xb9\xe4\x92\x4f\x27\xd7\x0d\xb5\x4b\x2e\xf9\x8c\xe5\ +\x5f\xf6\xcd\xbf\xaf\xd8\x7e\x5e\x7b\x7f\x12\xfa\x8b\x0b\x1d\xed\ +\x03\x18\xd9\x07\x32\x71\xe9\x3c\x0f\xe9\xc7\xb3\xdb\x96\x70\xdc\ +\xb3\xbd\xc7\x45\xae\x83\x3c\xf1\x0d\x9d\xf1\x58\xb1\xa1\xbc\xe8\ +\x45\x7f\x64\xf0\xed\x62\xdc\x36\x1a\x1f\xae\x09\x07\x6f\xf9\x59\ +\x3c\xbd\xc0\x5c\x83\x73\x84\x35\x97\xc9\x03\xc7\x71\x3c\xb1\x40\ +\x68\x72\xc0\x9d\x64\x9b\x67\xf0\xc9\xc1\x77\x42\xfd\x6a\xd3\x12\ +\x5c\xd8\x8a\xa1\x1b\x67\x29\xe7\xc4\x03\xdb\xc7\xba\xe2\xc7\x7a\ +\xee\xda\x13\x22\xb6\x1b\xef\x0d\x29\x3f\x98\x4c\x71\x98\x46\x78\ +\x63\x80\xe6\x78\xc9\x3a\x2a\x92\x6d\x20\xff\x34\xa1\x82\xed\x3a\ +\xe0\xd4\x80\x27\xbb\x58\xe2\xe0\xd9\x2e\x4f\xbe\xd9\x26\x0e\xf8\ +\x51\x47\x4b\xc7\x46\xc7\xc3\x89\x86\x4a\xad\xe0\x32\x4e\x7e\x6c\ +\x86\x49\xd3\x1c\xf7\x0b\x55\x3e\x6b\x41\xdd\xe1\xda\x4c\x9d\x60\ +\x5a\xfc\xfa\xa8\x71\x12\x17\xcf\x87\x1f\x05\x8e\x81\xa8\x22\x1c\ +\x5d\x0c\x72\xd1\x3c\x21\x5f\x74\xeb\x22\xb7\x19\x16\xef\xf7\xc4\ +\x45\x32\x0a\x59\xdd\x72\x21\x39\xeb\xe7\x8b\x4a\xe2\x2e\x04\xcb\ +\x7b\xba\xeb\x19\x02\x21\x4e\xba\x17\xff\x08\xa0\x6d\xe7\x92\x0e\ +\xc6\xe4\x07\x0f\x63\x4c\x12\x88\xe3\xb0\x6c\x5d\x84\xb3\x09\xe4\ +\xe6\x82\x5c\x31\x6c\xff\xbf\x92\x3c\x25\x18\x8d\x3d\x5a\xb8\xb0\ +\x67\xa2\xa0\xfe\xaa\xc3\xc2\xa3\x9c\x99\x70\x59\x37\x68\x96\xd6\ +\x62\xbe\x7c\xd9\xbe\x39\x46\xc7\xf8\x5e\x12\x77\xdd\xd6\x53\xe3\ +\xfe\xd0\x47\x1d\xd2\x52\x63\xe5\x54\xaf\x3a\xc4\xe8\xe3\x36\xff\ +\xb3\x2c\x7c\x32\x27\x1e\x3c\xb1\xc3\x9e\xbe\xf8\x66\x9a\x4d\x09\ +\x3f\xc1\x54\xc7\xf5\x65\x8f\x5b\x0c\xc7\x0f\xe2\xa7\xda\xcd\xe1\ +\x21\x1a\x78\x62\x76\xec\x0e\xb6\xfb\x3c\x06\x77\x8d\xbe\xb6\x89\ +\x99\x6a\x7f\xc6\xbb\x78\x88\xfb\x6f\x9f\x83\x11\xd7\x3e\x82\xff\ +\x7d\x63\x5e\x07\x1a\xf1\x61\x79\xe2\xcb\xdb\x48\x22\x0d\x8b\x3c\ +\xd7\xb2\x66\x31\xf1\x78\x4d\xca\x49\xbd\x63\x9d\xc2\xb7\x57\x5b\ +\x8b\x81\xc6\x97\x6d\xa7\xb1\x1d\x2f\x66\x55\x2d\xc1\xf4\x7e\xff\ +\xac\xc0\xfd\x30\xe3\xb1\x3c\x97\x37\xf8\x31\x86\x1f\x2d\x3f\x23\ +\xf5\x92\xdf\x88\xec\xbb\xc6\x87\x76\xb1\x79\xad\xfd\x39\xfe\x40\ +\xbc\x03\x3f\x88\xfd\x50\x4d\x62\x53\xfb\x5e\xf6\xbc\x7b\xde\xb2\ +\x73\x2c\x19\xae\x8f\x26\x3d\xa6\xf8\x80\x74\x3a\x6e\x61\x95\xbc\ +\x38\xd2\x2d\x90\x63\x59\x51\xec\x39\x8e\x8e\xaf\x47\xce\xd5\x62\ +\x47\x3b\x68\x1f\xcd\xf1\x0d\x6d\x45\x43\x8b\x6f\x5a\xec\xc1\xf3\ +\x2c\xa6\x25\x9b\x90\x0a\xf1\x47\x62\x83\x6e\xb6\xc3\xc3\x63\x1d\ +\x73\x5e\xc0\x3a\x83\x3d\xe6\xba\x25\x50\x4e\x1e\x7d\x6e\xf8\xac\ +\xf7\xf8\xcd\x99\x87\x5d\x2c\x34\x37\xdf\x26\x4e\xdf\x98\xc7\x39\ +\x15\xda\x31\x29\x9f\x4f\x15\x73\xbe\xfd\x39\xb7\x3a\x96\xe1\x25\ +\x8e\xaf\x12\xe6\x1c\x75\x1f\x2d\x62\x43\x5c\xbe\x1c\xd7\x92\xe3\ +\xbc\xac\x62\xb6\x93\xff\x8d\xae\x32\x38\xff\xa0\xbe\xcf\x99\xd6\ +\xf8\xdd\xb0\x15\x08\xd4\xf7\xd3\xbe\x9f\x8f\x38\x95\xe9\x7b\x41\ +\xc3\xc7\xa0\xb5\x52\x5c\xed\xbc\x05\x2c\x4d\xb0\xf2\x5f\x1a\xb5\ +\x86\x48\xfb\x1f\x1e\x59\x88\x55\xcf\x7b\x6f\xaf\x85\x4d\x3b\xc7\ +\x21\xf0\x60\x91\x75\x7c\xd2\xfb\x03\x93\xc6\xc7\x28\xcc\x69\x63\ +\x58\x85\xcf\xf1\xb2\x76\x71\xb7\xc5\x8e\xe5\xf0\x7d\x3c\x15\x21\ +\xe7\x70\xc5\x7d\x5c\x4e\x8c\xf3\x85\xb9\xe1\x06\x0e\x2b\xb9\xc5\ +\xa6\x56\xf1\x75\x7c\xae\x1d\x4e\xfb\x18\xdf\xe7\x53\xc9\x5f\xb5\ +\xa7\x6f\xfc\x39\x07\x98\x71\xa0\x3d\xbe\x70\x91\xe4\xf8\x44\xa2\ +\x76\x78\x9c\x5c\xec\xfd\x7a\xf1\x37\xe0\xb2\x85\x53\xc3\x25\x24\ +\x89\x03\x18\xd7\x23\xcf\xe2\x30\xac\xc7\x3f\xf0\xe4\x8c\x99\xd8\ +\xc4\x13\xd1\xb2\xfa\x0c\x73\xe5\x0e\x32\xdc\xe2\xce\xb5\x9d\x65\ +\xb5\x7e\x12\xf3\x56\x49\xd8\xbe\x51\x99\xd1\x27\x9b\x3a\x9b\xcd\ +\xc3\x89\xd8\x56\xda\x76\x3e\x49\x9f\x08\x78\xad\xe1\xe3\x7a\x15\ +\x62\x1b\xf3\x76\x1a\x81\x2b\xc5\x3e\xca\x29\x58\x19\x3e\xb7\xb7\ +\x67\xc7\x76\xc4\xd1\xb0\x30\x1d\x52\xe3\x37\xd1\x9d\x38\x56\xb9\ +\x7f\x73\xec\xfe\xa4\xe2\x9f\x78\x1b\xe1\x83\xfc\x95\x70\xc9\x25\ +\x1f\x94\x6b\x4f\xb9\xe4\x92\x4f\x27\xd7\x0d\xb5\x4b\x2e\xf9\x8c\ +\xe5\x5f\xf6\xcd\xbf\xaf\xd8\x9c\x68\x22\xbb\xfd\x8b\x0b\x1d\x3d\ +\xea\xf0\x87\x4e\x63\x8e\xc1\xae\x73\xe3\xb9\x98\x8d\xe9\x0a\x4c\ +\x69\x6c\x84\x9c\xc3\x7b\x81\x2b\x03\x3b\x4d\x25\x18\x3c\xe2\xce\ +\x74\x12\x6a\xd7\xad\xc5\xc5\xbe\xbf\xa5\x36\xf5\xb2\x98\x33\x1a\ +\x59\xfe\x79\x62\x21\xf3\x0a\xb5\xcb\x61\x89\xed\xc4\xc3\xc7\x33\ +\x9e\x09\x86\x89\xa1\x87\x1f\xde\x51\x0b\xef\x1c\x77\x87\x41\x89\ +\x97\x47\x70\xf7\x6d\x87\xc4\xb3\x9a\x5c\xcc\xac\x83\x31\x38\x4c\ +\xaa\x78\xd2\x23\x71\x66\x45\x3c\xa5\x21\xdf\x13\x26\xdc\x64\x92\ +\x4b\xd0\x75\x7d\x13\x0a\x17\x9f\x00\x1a\xb7\xf1\x38\x8b\x7f\xfc\ +\x94\x62\x63\xce\x6f\x7d\xfa\x9e\x49\x1d\x66\x60\xac\xc3\x3f\x6e\ +\xa6\x85\xe3\x18\xf9\x83\xed\xf6\x8c\x6d\xe1\x33\x76\xfc\xd4\x51\ +\x93\x31\x6c\xf5\x53\xaf\xfd\xb4\x8f\xd4\xd0\xf0\xe9\x7f\xea\x2a\ +\xe6\x9f\x7d\xf4\x63\x62\x5e\x45\xc7\x6d\xb0\xb7\xd9\x5e\x5e\x63\ +\xb1\x13\xe3\x06\x05\xb5\x02\x9a\x83\xc9\x90\xa4\x01\xdc\x83\xc7\ +\xd2\x18\x5a\x0d\xe9\xce\x83\x01\x66\x00\x17\x3f\xeb\x66\x29\x5e\ +\x2f\x2e\x93\x1b\xd2\xfe\xd7\x0e\x0a\x92\x76\x5c\xbc\xdb\xf1\x32\ +\x93\x1a\xe4\x0e\x0e\xc6\x3b\x89\x71\xcd\xc5\x3b\xb8\x2f\xe0\xbd\ +\x84\xe7\x07\xfd\xcc\x64\xcb\x16\x5f\x37\xb7\xec\x6c\xb1\x6d\x92\ +\xc6\x0f\xdf\x63\x69\xec\x14\x07\x56\xd0\x13\x34\x38\x3c\xc3\x21\ +\x68\x4d\xaa\xe2\x8e\xbd\xe4\xe7\x19\x09\x25\xb6\x96\x80\x1b\x96\ +\xfa\x9e\x04\xc2\xe7\x41\x8d\x6a\x41\x8b\x3f\x7a\xc6\x1b\x3f\xb9\ +\x6c\x23\xe6\x89\x18\x9d\x12\x33\x4e\xc7\x27\x9f\x1b\x75\x1e\x61\ +\x72\xc0\x1c\x92\xf6\x98\x8e\xbf\xca\x36\x0b\xe5\x31\x85\xab\xa6\ +\xea\x91\x2d\x6d\x5e\xb0\x75\xe3\x71\x62\x8b\x4f\x78\xfa\x96\x23\ +\xd3\x79\xf1\x16\x37\x71\x03\x71\xbd\x62\xd4\x68\xcc\x4b\xfa\x30\ +\x8f\x18\x0f\x61\xdf\xdb\x86\xd6\xb8\xb4\x6d\x3b\xa9\xe9\xfd\x49\ +\xf6\xda\xd7\xd0\x09\x6a\x81\x12\x5c\x4f\xf3\xc1\xa3\xfa\x7a\x94\ +\x17\x15\xee\xd8\x13\xb2\x9e\x37\xc0\x2f\x26\xd3\x19\xb2\xde\x31\ +\x9f\x46\x3e\x61\xa9\x4b\x7e\x23\xf2\x68\x7f\x5c\xfb\xe9\x7d\xf0\ +\xc1\x0e\x3c\xd0\xec\x1b\x13\xde\xfd\xb1\x77\xb9\xe7\x21\x77\xa5\ +\x9f\x95\x1e\x77\x86\x3f\xc7\x3a\x1e\xc6\x54\x73\x8e\x71\xc6\xe7\ +\x40\x26\x2c\x28\xf9\x06\x7c\x48\x73\xd0\x31\xb4\xd1\x65\xeb\xa0\ +\x67\xae\x17\x63\xd5\x64\xd5\x9e\x5a\x56\x27\x7f\x6c\xa4\xbe\x1e\ +\x21\xda\xda\xb8\x83\x80\x69\xbc\xd6\xf5\xc3\x2c\x07\xb3\xcc\x36\ +\xc7\xf9\xce\xe0\x68\xc8\xf1\x8f\x3e\x8a\x87\xd2\xf8\x9c\x33\x24\ +\x76\x70\xc6\x26\x14\xfb\x8c\xd1\x67\xb7\x4d\xf1\x39\xd6\xe7\xfc\ +\x25\x3e\x8b\xcf\x75\x38\xe7\xe1\xfc\x4d\xda\x5b\x77\x8f\x59\xe3\ +\x2b\x0d\xde\x86\x2d\x1e\x8f\x9e\xdf\x04\xe7\x35\x4d\x0c\xed\xaa\ +\xc3\x73\xbc\x63\x60\x40\x36\xc3\x1f\x4e\x40\x9e\xe1\x4d\x0e\x11\ +\xfb\xd5\xb6\xfd\x01\x6f\xf2\xd6\x9f\x19\xc1\xb5\xc3\x05\xee\x19\ +\xc9\x84\x2c\x61\xfa\x66\x1e\x1a\xc8\xfb\x67\x32\x39\xb7\xb3\xd2\ +\x32\x6f\x85\xd4\x41\xa8\xab\x88\xf9\xd4\x9d\x73\x1d\x87\xd8\xfc\ +\xcb\x74\xd3\xd8\xb4\xf4\xec\x63\x56\x7d\xec\xbd\x1f\xf8\x53\x8f\ +\xa3\xa1\x23\xc6\xcc\xf6\x18\x39\x0d\xc8\xf9\x4d\xc4\x7c\x86\x04\ +\xa7\xb8\xfb\x00\xe8\x31\x97\x1c\x8e\xaf\x73\x53\x6a\x38\xeb\x86\ +\x17\x71\xf0\xf2\xed\x3b\x6e\x23\x19\xf5\x5d\xb7\x36\x59\xc9\xdf\ +\x6f\x74\x4d\xcd\x2e\xad\x97\xf3\x0d\xd9\xd3\x07\x0f\xd9\xc6\xcd\ +\x69\x1e\xdb\x48\xeb\xe1\xed\x32\x75\x1d\x3f\x38\x47\xbf\x8c\xc5\ +\xcf\xe2\xc4\x1d\x05\xd0\x93\x2a\xd4\x9f\xda\x48\x38\x66\x59\x6f\ +\xb1\x10\x24\xc3\x55\xeb\x18\x5e\xf9\x0e\x0c\x56\x7b\x61\xe3\xcb\ +\x0a\x68\x14\x33\x7f\xae\x56\x4c\xc0\x44\x09\x3a\x62\x3e\x3a\x63\ +\x3e\x7c\xb7\xe6\xed\x3a\x35\xea\x8f\x6d\x69\x3f\xc6\x50\x6e\xab\ +\xf1\x79\x1d\xd4\xc7\xdc\xcc\x15\xdf\xfb\x8f\x73\x88\x87\x8f\xb8\ +\xa5\x8e\x0c\xde\x01\x41\x25\x77\x37\xd2\xc2\xb3\x33\x49\xe2\xb0\ +\x1e\x9b\xec\x29\x77\xa1\x25\x8f\x38\x60\xd8\x7b\xcc\x32\x81\xaa\ +\x89\xaf\xbc\x27\x09\x97\x5c\xf2\xac\x5c\x7b\xcb\x25\x97\x7c\x3a\ +\xb9\x6e\xa8\x5d\x72\xc9\x67\x2c\xff\xb2\x6f\xfe\x0f\xad\xd8\x76\ +\x4e\xfa\xeb\xc9\xde\xe1\xfd\x69\xcc\xfd\x60\x66\x80\xd1\x73\xd2\ +\xcf\xc9\x3a\xa8\xd9\x4d\x01\x66\x59\x22\x3c\x2c\xec\xb1\xa8\x11\ +\xf1\xc7\xfd\x89\xa3\xc5\x17\x1a\xc1\x0d\xf5\x90\x80\x36\xaf\xb1\ +\xf9\x69\x1b\x0f\xa5\x37\x54\x78\x12\x4f\x8e\xb4\x70\xc3\xf6\x99\ +\x5c\x30\x4c\x44\xcd\xf8\xe5\xef\x5a\x0f\x0f\x83\x47\x31\x24\x76\ +\x2f\xf6\x65\x67\xa8\xe1\xc3\x29\xcb\x13\x24\xa6\x1a\xef\xd8\x9c\ +\x06\x5e\x96\x09\x44\xc0\x0e\x3f\x18\x84\x8e\x8f\x75\x03\x06\x25\ +\x66\x07\x6c\xf7\xd1\xea\x40\x5c\x4f\x6e\x78\x16\x86\xcb\x62\xfe\ +\xdf\x88\xb6\x90\x39\xc9\x99\x3a\x6a\xe2\xcf\x02\xee\x71\x6b\x71\ +\x9f\xe1\xc5\x47\x83\x71\x13\x2d\x36\xb1\xb9\xb1\x46\x7c\x26\x82\ +\x52\xe3\x2e\xff\xce\xf6\xd2\x71\xa4\x36\xcb\x91\x33\x7f\x55\x6d\ +\xbf\x63\xd9\x17\xfa\x74\x3f\x2c\x3c\x56\xbf\x6c\xb8\x83\x6f\x59\ +\x36\x79\xda\x26\xdd\xbf\xbc\xdf\x38\x4e\x83\x80\xf3\xcc\xc5\x6b\ +\x38\x6c\xc3\x4d\xc3\x55\xcc\xdb\x58\xc2\x94\x83\x2b\xa9\x6f\x94\ +\xc3\xc4\xf2\x74\x8d\xa2\x1d\x03\x50\xc7\x13\x58\x0a\xbb\x31\x1a\ +\x5f\x3c\x33\x80\xd8\x56\x36\xd5\x8e\x0f\x07\xd4\x6e\xf8\x2c\xe4\ +\x73\x29\xef\x1b\x1f\xcc\x61\x84\xa0\x98\x46\x2a\xd3\xd3\x26\x04\ +\x98\x50\x69\x4e\x4a\xd4\xf6\x64\x4f\xb5\xb1\x4c\x2a\xf8\x51\x8c\ +\xc9\x15\x7e\x5d\x94\x5f\x46\x74\x45\xe1\xaf\x5e\xbc\x72\x9f\x4e\ +\xa7\xa2\x0c\x3f\xc8\x35\xa8\x85\x38\xb8\x74\xb6\x31\x3c\x46\x6b\ +\x7a\xb8\xc4\x86\x47\x6d\xfa\xcf\xa0\xc9\x58\xb5\x86\x7b\xf4\xb3\ +\xad\x53\xe3\x4f\x63\xa9\x35\x9c\x6c\x23\xf7\xee\xfe\x33\x16\x08\ +\xb2\x61\xc8\xb7\x55\x9e\x63\x1d\xaf\x1b\x2d\xc1\x30\x88\x1b\x30\ +\x1f\xbf\xce\xc2\x6d\x3b\xa6\x1a\xe5\xa0\x22\x89\x05\x27\x14\x5e\ +\x42\xe0\x8c\x4b\x3a\x2e\x6d\x8d\x2d\xc7\x70\xf0\x4c\xea\x6d\x31\ +\xeb\xd6\x18\x4e\x02\xed\x66\x8b\x09\xf7\x44\x5d\xfd\x40\xf8\x19\ +\x0f\x79\xc6\xac\xc1\x09\x9b\xd4\xa7\x01\x08\x4b\x0f\x6f\xe1\x9f\ +\x44\xa8\x95\xf7\xcd\xc7\xc9\xa7\xec\xbb\x32\x43\xd8\xf5\x25\xbf\ +\x7f\xe9\xe7\xf1\xe3\x17\x74\x8f\x3d\xd8\xff\xee\xe1\x67\x68\x1f\ +\x2d\x33\x84\x8f\xaa\xc1\xb1\xa5\x66\x25\xc7\x97\xb1\x62\x5b\xbb\ +\x2e\xc7\xd9\x86\x6d\x84\xb3\x78\x2e\x56\x1f\x8b\x63\x74\x02\x5e\ +\xfc\x68\x87\x3e\xae\xf5\xe1\xd8\xe0\xe3\xf3\x00\x73\xac\x78\xdb\ +\x89\xe3\x1b\x73\xbc\xe7\x00\x7b\xdc\xcf\x89\x3b\x62\xb9\x1f\x43\ +\x9e\x60\x5d\xbf\xc1\xcb\x71\xd4\x2e\xfa\x51\xac\x98\x9f\x67\xcc\ +\xe7\x53\x73\x8e\x91\xa4\xe0\x78\xe5\x27\x36\x9c\xfa\xc4\xc6\x9f\ +\x73\x9e\xc6\x08\xea\xcc\x2a\x98\x97\x72\xd7\x92\x58\xce\xb1\xba\ +\xd0\x35\xe7\x46\xad\x31\x9c\x59\xd4\x44\xbf\x98\x3f\x46\x92\xcf\ +\xc3\x9b\x04\x2d\x43\xab\x12\xfe\xac\xc7\x3b\x69\x8e\xcf\xe1\xc3\ +\x24\xd7\x6b\x4c\xa3\xd8\x0b\xe5\xbd\x03\xd3\xc9\x90\x29\xc0\x5a\ +\x38\xef\xa1\x16\x23\xe2\xe8\xc3\x29\x51\x24\xbc\x97\x8a\xbc\x13\ +\xee\xf3\x23\xef\x7b\x3e\x0b\x70\x8e\x3d\x61\x85\x83\xc9\x21\xe2\ +\x6e\xd1\xe0\xb6\x95\xa7\x38\xb6\xc7\x63\x95\x31\x1a\x93\xb8\x4e\ +\xc5\xb9\x7a\x4c\xfd\x64\x38\xd5\xc7\x39\xff\xf2\x40\x63\x2b\x3a\ +\xc7\x2d\x1a\xf5\xe5\x73\x81\x04\x38\x52\xb6\x1f\x71\x85\xe5\xd8\ +\x77\x68\xc0\x9c\x12\x24\x07\xd4\x37\xcd\xb0\x54\xc7\x31\x1e\x60\ +\xe2\xba\x86\xfd\x62\x29\x11\x7f\x70\x92\x58\x57\x73\x0e\x8c\xd1\ +\xd0\xca\xdd\x62\xa9\x3b\x37\xd7\xba\xa2\xc5\x88\x79\x90\xce\x77\ +\x6f\xf0\x58\x2b\xf3\x79\x9d\x20\x60\x87\xeb\xf5\xb0\xdf\x85\x07\ +\xe3\x01\x85\xe0\x98\x5b\x80\x4d\x37\xce\xf2\x7d\xaa\x1a\x6f\xcc\ +\xb8\xed\xfa\xc8\xc4\x16\x22\x3f\xe4\xc5\x3d\x38\x48\xed\x89\x59\ +\x64\x91\xe4\x27\x18\x3e\x38\xeb\x61\x58\x4d\xf9\xd5\xa1\x3b\xe2\ +\xdc\xd8\xe0\xc3\x71\x40\xfa\xd8\x7e\x13\xcf\x6b\x86\x1e\x1c\x55\ +\x2c\x8e\x79\xd6\x76\x77\x6e\x6d\x5e\x23\x4b\xb8\x27\x0c\xbf\x5a\ +\x20\x46\x94\x2d\xd9\x73\x51\x32\x32\xbc\x72\x96\x6c\x94\x27\xf2\ +\x1c\x77\xf0\x96\x3c\x69\xcb\x5e\x54\x81\xbd\x8e\xc7\x71\xc9\x25\ +\x1f\x2f\xd7\x1e\x73\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\ +\xcb\xbf\xfc\x9b\xff\x9f\xb6\x82\xd3\xf1\x9c\xb2\xe0\xdf\x9d\x0c\ +\xff\xa0\xc0\x4f\x9e\x33\xeb\xf6\xd2\xb6\x11\x69\x19\x7b\xe5\x48\ +\x38\x51\xc9\xf0\x85\xf5\x78\x5c\x3c\x70\x91\x3c\xc9\x21\x18\xb3\ +\xd8\x8c\x8d\x4e\x05\xc0\xfa\xef\x1d\x09\xa7\x58\x8c\x4e\xca\xac\ +\x1b\x2f\xd1\x3c\xad\x98\x54\x28\x6e\xdf\x3a\xc1\xa9\x11\x15\xfb\ +\xe6\x7e\x70\x93\x97\xb8\xb4\x16\x53\x56\x9e\xa1\xe2\x18\x1d\x07\ +\x54\xf2\x8c\x1d\xf1\x4c\x3e\x38\xe8\x78\x26\x27\x98\x20\x01\xaf\ +\x26\x06\x11\xdc\x4e\x72\xa7\xff\x2c\xb9\xe1\xe5\x4d\xb8\x4d\xb6\ +\xc8\x93\x9f\x6d\xec\x7a\x6c\x8f\x6e\xdf\x40\xf4\x21\x43\x18\x31\ +\x4f\xc0\xc0\x71\x9c\x3a\x1b\x47\x7a\x4d\xec\x14\x5b\xdf\x54\x63\ +\xbb\xc0\x01\x43\xbb\x56\xb6\x95\x73\x1d\x6a\x2e\x8b\x01\xc6\x03\ +\x3e\x35\x92\x9f\xf5\x2f\x6f\x61\x5a\xa6\x2f\x1e\xaa\x9f\x71\x76\ +\x8c\x34\xce\x9b\x5a\x05\x31\xba\x5f\x91\x67\x9e\xc5\x9e\x42\x6c\ +\x9b\x52\x68\x8a\x92\xc7\x75\x61\xea\x44\x12\x6e\x6d\xc7\xe0\xdc\ +\x91\x8e\x0e\x2c\xd9\x4e\xb6\xe6\xa9\xa5\x06\xd2\x3a\xad\x1e\xe9\ +\x85\x31\x63\xcb\x85\x7d\xe8\x4c\x00\x79\x32\x45\x58\x7c\x35\xf5\ +\xcd\x83\x88\x5a\x79\xf1\xe5\xc9\xd4\x85\xbe\xe7\x15\x86\x4b\x38\ +\x36\x8b\x6f\x32\x39\x85\x89\x83\xc4\x01\x66\x72\x85\xbc\xdc\x6c\ +\x69\x1e\x13\x2b\x8b\x6b\x42\x70\x61\x6c\xc7\x55\x47\x8b\xe7\x60\ +\x30\x6b\xf8\xaf\xa2\x99\x60\x62\x2d\xc8\x49\xd1\xac\x0b\x0f\xe2\ +\x68\x2b\x47\x65\xbf\x52\x8b\x2e\xc7\x13\x5d\xd2\x0e\xb6\x26\x8e\ +\x31\x34\xfd\xab\x0f\xfe\x11\x7f\xf1\x60\x2e\xe2\x98\xff\x1a\x59\ +\x7a\x4d\xb8\x10\x63\xe2\x84\x52\xfe\x29\x23\xd9\xf4\x9e\x70\xe3\ +\xd4\x39\x16\x3f\xc0\x9d\x64\x03\x92\xd5\x6c\x8f\xb1\x89\x5b\xaf\ +\x82\x69\xcc\x63\xbd\xec\xcf\x18\xe1\x8f\x6f\x00\xc7\x7a\xf6\x81\ +\xe4\x16\x35\x3f\xcb\xd8\x3c\xac\xbb\xcd\x4e\x31\x61\x1e\x87\x79\ +\x52\xdc\x88\x9b\x18\x00\x19\x0e\x10\x0f\x6e\x34\x60\xb4\xa1\x0d\ +\x2f\xc7\x74\x37\x87\xff\x69\x85\x82\xec\xfc\x1f\x92\xe1\x7c\xf2\ +\xce\x7f\x91\x92\x97\xfc\x46\x64\xed\x56\xf7\xfb\xce\xfd\xfe\xf6\ +\x60\x1f\xbc\x87\x76\xff\x43\xa5\x3e\x24\x7b\xde\xc8\x07\xf2\x1d\ +\x3a\x1a\x4b\x8e\x37\xf1\x73\xd4\xc3\x90\x56\x6d\x1d\xa5\xeb\x37\ +\x26\x3c\x1c\xb5\xc6\x38\x9e\xfa\x19\x92\xf1\x43\x9f\x6c\x28\xb6\ +\xd5\x16\xc7\xa1\x86\xdd\xfa\x1c\xb1\x13\x07\xe1\x38\x17\x9f\x87\ +\x31\xc7\xc0\x12\xc7\x88\x8e\x9f\x54\x23\xc5\xd0\x59\x8f\x95\x1b\ +\xcf\xfe\x69\x1d\xa6\x96\xcd\x72\x27\x66\xbb\x75\x6c\x1f\xf1\x68\ +\xa3\xcb\x3f\xb0\xf0\x09\xf8\xf1\x80\xcf\x4d\x33\x9f\x76\x0d\xde\ +\x98\xcf\x95\x76\xcc\x65\xc6\x66\xbb\xd5\x3e\x71\xb2\xa8\xb1\x9e\ +\x73\x32\x7c\xb6\xad\xcf\x83\xac\xcb\xb5\xcd\x8d\xae\xd6\x6b\x4c\ +\x4d\x94\x35\xdb\xa8\x31\x23\xde\x39\x8c\x0f\x62\xa3\x98\xcf\x17\ +\x13\x90\x60\xe8\x55\x14\xc0\xd6\x3b\xce\xef\xa7\x01\x55\x45\xd9\ +\x3e\x37\x50\xe3\xf3\x0d\x61\x33\x9e\x1c\x2f\xe0\x46\xbc\x3e\x15\ +\x60\x46\x91\x0c\x89\x1a\x30\x73\xb2\x51\xcf\xe2\x52\x29\x66\x1e\ +\xba\xc7\xa2\xa9\x61\x8f\x31\xc4\xa0\xb1\x30\x3e\x8e\xce\xd1\xf9\ +\xa6\x16\x0e\xf9\x2d\x21\xf1\x5a\xe6\x01\xd6\x58\xfc\x2c\xc6\x5c\ +\x09\xf3\x1c\xcf\x0d\xaf\x3d\xd6\xc5\x88\xfa\x95\x2d\x20\x7c\x50\ +\x1d\xab\x39\x13\x01\x73\x0c\x94\x73\x13\x38\x86\xd1\xb3\x50\x37\ +\xb6\x7b\x28\x9e\x32\xb2\x79\x70\xac\xd7\xc3\x5b\x14\xdc\x3a\xf5\ +\xfc\x47\x4d\x7e\x91\xc0\x60\x51\xc3\xbd\x6f\x18\x5e\x6d\xb6\x3f\ +\x7e\x71\xf7\x85\xd6\x79\xd7\xed\xa6\x73\x28\xd7\x22\x1c\xdc\x31\ +\x54\xbd\xf8\xcb\xb2\x76\xc4\x26\xba\xfc\x75\x63\x8e\xfd\x68\x70\ +\x10\xa3\xd6\x29\x13\x3c\xe6\xc4\xe3\x17\x15\xcc\xba\x1a\xd8\x22\ +\x38\xd1\x6b\x3c\xe8\x62\x47\x8c\x88\xb7\xd8\xc1\xd3\x63\xf1\x6c\ +\x0f\x76\xa7\xbb\xd0\xba\x50\xf7\x2b\xbb\xd3\xc6\x08\xcb\x9c\xc0\ +\xd9\x11\x11\x72\xac\xda\xac\xc0\x99\xeb\xf8\x33\xb2\xc7\xb7\xf4\ +\x53\xee\xe0\x7b\x9d\x47\x98\x65\x03\xfc\x9e\x7c\x42\xb8\xe4\x92\ +\x0f\xca\xb5\xc7\x5c\x72\xc9\xa7\x93\xeb\x86\xda\x25\x97\x7c\xc6\ +\xf2\xd9\xbc\xf9\x7f\x53\x2b\x7a\x3f\x98\x39\xad\xd9\x71\xb0\xf1\ +\xb7\xd3\x1e\x99\xcb\x73\x38\x1c\x5a\x7f\x92\x13\x97\x36\xa7\x44\ +\x5f\xac\x87\x56\x12\x7a\xc7\xa3\x63\xba\x55\x2e\x17\xfa\x2a\x20\ +\x7f\xc7\x73\xb8\x10\x66\xd5\x89\x09\x2f\x46\x6b\x13\x67\x12\x21\ +\x9c\x44\xf4\xa0\x64\x39\xae\xd3\x65\xec\x39\x14\xf9\xe6\x96\x53\ +\xcb\x91\xc7\x7d\x9c\xe0\xc5\xca\x99\xf8\xaa\xb1\xf2\x1c\x2c\x16\ +\x3f\xba\xf6\xe2\xeb\x21\xd3\x51\x74\x1a\xa9\x7d\xfc\xb2\x3d\x37\ +\x11\xbe\xb1\xde\xfc\x32\xc6\xe0\x3c\xf5\xc0\x45\x67\x70\x2f\x42\ +\x1d\x47\x9b\x23\x9b\x3c\x5e\x17\xea\x53\x93\xbc\x10\x13\x73\x6e\ +\xff\xc2\x99\x1c\xe9\xf5\xed\x31\xc7\xe1\x47\xcf\x18\x66\xa1\xe0\ +\xf1\x7a\x04\x9b\x89\x23\x3f\x5d\x27\x5a\xd1\xad\xbe\x74\xfd\xc9\ +\x41\xfb\x67\x1c\x6d\x43\x93\xe6\xc6\xda\xc6\xf3\xa2\xc7\x8b\x8e\ +\x8b\x10\x0d\x8f\x24\xe9\xe9\x7d\x30\x36\xe2\x55\xaf\xcf\xc5\xab\ +\xaf\xd1\x8d\xf3\x9f\x62\xd0\xd4\x1a\x62\x93\x2a\x93\xeb\x8b\x5e\ +\x0b\x5c\xc6\x29\x53\x17\x93\x66\x3b\xa7\x05\x58\xbf\x7a\xdf\xbf\ +\x7f\x2b\xc8\x53\x36\x89\xaa\x71\xd4\xa5\x52\xcf\xf5\x4f\x17\xda\ +\x92\xdd\xc7\xd6\xc2\x04\x49\x2a\xcb\xf6\x0d\x12\x2e\xb6\xc1\x7a\ +\xd1\x5d\x1f\xc7\x3e\x5a\x0f\x9e\x8d\x7a\xb2\x66\xb0\xdc\x64\x69\ +\x5d\x43\x1a\xe7\xe4\x97\xef\x7a\xe4\x68\x1d\xd2\x7f\xb6\x83\xc7\ +\x6b\x4c\x44\xa5\xa5\x86\x33\x92\x53\x1b\x5c\xea\xc0\x96\xdf\xbe\ +\xdc\x0f\x0d\x93\x1e\x60\xc0\x07\x07\xdb\xcb\xab\x4c\x6a\xc8\x69\ +\x1c\x4f\xda\x37\x86\x58\x0c\x1d\xb1\x01\x60\xb9\x2b\x35\xce\x47\ +\xdb\xb2\xed\xda\xd4\xf0\x0d\x3b\x6d\x5d\xfc\xd9\x39\xcc\x8f\x9d\ +\xbe\xdc\xca\x99\x5a\x28\x30\x3d\xca\xa3\x59\x37\xff\xec\x82\x9b\ +\xb8\xfc\xf4\x19\xcc\xcf\x89\x4b\x3f\x79\x2d\xd1\xe6\xda\xc4\x53\ +\x93\x58\x6c\x70\x37\xe1\x37\x86\xf6\x3e\xe2\x58\xd6\xd3\x93\x67\ +\x5a\x4e\x3c\xa7\x33\x5e\x74\x7c\x9c\x50\xf0\x6d\xb8\x9b\x80\x89\ +\xc7\x8d\x36\x6e\x1d\xf5\xcb\x0b\x1d\xe5\x9d\x70\x96\xc1\x3f\xf1\ +\x40\x7e\xb5\xf5\xba\xe4\x9f\x26\x4f\x76\xa7\x01\xfa\xe2\x7b\xd7\ +\x2a\xc6\xfe\x7e\x77\x8c\x38\xc9\xfd\xfe\xf2\x01\xea\x47\x89\xfb\ +\x8e\xf9\x44\x4e\x7d\xf5\x18\x56\xae\x8f\x38\xb6\xb1\xa6\x40\x74\ +\xfc\x2d\xde\xf5\x19\x1c\x17\x3b\x78\x7c\x74\xec\x0d\x37\xc6\x21\ +\x4f\xba\x18\xda\x8f\xe1\xd8\x47\x88\x19\xd1\x63\x3f\x6e\xa3\x82\ +\x26\x07\x17\x6d\x72\xf0\x78\xc1\x87\x03\xe2\xbc\x7a\x36\x68\xb0\ +\x7b\xce\x11\xef\x14\x5f\x1a\xdc\xcf\xb1\xdd\x1e\xb6\x89\xc1\x12\ +\xb3\x65\x7c\xb7\x87\x63\xdc\x7e\x90\x15\x2b\x3f\xbe\x3e\x87\x7b\ +\x1e\x34\xfc\xb3\xbd\xd7\x91\x9e\x73\x9e\xb1\x79\x34\x3e\xe7\x7c\ +\xfb\x1f\x32\xf9\xa1\xd4\x68\x8c\xd6\x31\xb6\x6d\xf3\x15\xe3\xc6\ +\x9b\xd9\x04\x04\x0d\x27\x02\x4e\x3f\x8c\x98\xa3\x13\xcf\xf7\x6b\ +\xa7\x6b\x1d\xac\x6a\xc4\xbb\x2b\xbe\x0c\x0e\xa9\xf0\x73\x23\x26\ +\x92\xf3\x26\x57\x96\xe1\x23\x1e\x65\x49\xa2\xd5\x71\x4a\x3a\x27\ +\x70\xae\x13\xd6\x51\xd7\xdf\x98\x73\xd6\x60\x35\x50\xd6\x89\x8c\ +\x7d\x60\x11\x1f\xb7\xd2\x95\x0f\xe5\xae\x45\x97\xf2\x7d\x1e\x23\ +\xe3\xc8\x65\x29\x59\x32\xe7\x11\x47\xdc\xad\x79\x52\x5d\xb7\xf8\ +\x5e\x1a\x0b\xfd\xec\xaf\x1c\x1e\x1c\xab\xdd\x2f\xb6\xce\xab\xf8\ +\x1d\x70\xec\x24\x2e\xbe\xcf\x55\xd0\x3c\x1c\x77\xe4\x38\xcf\xd2\ +\x76\xf3\xcd\x2d\x7e\xae\xda\x1c\xf2\x95\x63\x3b\x3e\x36\x2b\x3e\ +\x75\xf2\xa4\xd1\x82\x15\x15\x8c\x7a\xce\xc3\x33\x68\x7b\xf1\xac\ +\x31\x7a\x0e\xd1\xf5\x3f\xe2\x86\x25\x8c\x01\x27\x5e\x6a\x95\x10\ +\xef\x88\xa1\x59\x05\x73\x0c\x49\xb5\xbe\x9b\x80\xcd\xb2\x1f\x28\ +\xaf\x0d\x2d\x3a\xcf\x3e\x88\xc3\xd3\xc3\xa8\xf9\x10\x82\x65\xfd\ +\x10\x8d\xb3\xe7\x5b\x46\xf6\x1c\x83\xb5\xc1\xbd\xad\xc3\x05\x73\ +\xeb\x78\xd9\xb5\x91\x64\xd3\x82\x07\x39\x5a\xc9\xc6\x0d\x8f\xf7\ +\x16\x70\x71\x14\xdb\xf6\x43\xb2\x97\xf0\xeb\x50\x3d\x32\xfe\x3d\ +\x0f\xd9\xb9\xcf\xd5\x39\x8d\xf1\x92\x4b\x7e\xba\x5c\x7b\xd2\x25\ +\x97\x7c\x3a\xd1\x39\x9a\x4f\x83\x2e\xb9\xe4\x92\xcf\x50\x3e\x9b\ +\x37\xff\x6f\x66\x45\xe7\xcc\x18\xb9\xb7\x47\xe6\xcc\xf9\x43\x92\ +\xbc\x30\x73\xb1\xcb\xe5\xfc\xa4\xe1\x9b\xa1\x66\xf5\xa2\x8f\xfa\ +\x55\x75\x3e\xf6\xad\x72\xd1\x60\xa9\x41\xeb\x0b\x58\x9e\x83\xad\ +\x1c\xea\x34\xd6\x4e\xe3\x53\xe7\xe0\x10\xb4\x2a\x1e\x0e\xb0\x41\ +\xfb\x33\xb9\xe0\x9b\x32\x18\x0e\xc5\xce\x44\x85\x8b\x2d\x7e\x9e\ +\xd1\xc6\x42\x88\xb6\x7d\x60\x8e\x97\x7b\xca\xb1\xed\x56\x9a\xfe\ +\x63\xa7\x06\xcf\x68\xe3\x5d\xb0\x1d\xa9\xbd\x30\xdb\xad\x21\xd7\ +\x93\x1e\x18\x2e\x90\x75\xb3\x0b\x82\xd1\x58\xea\x62\x76\x8a\x64\ +\xd5\xc8\x32\xdf\x4e\x5b\xbe\x75\x31\xdf\x28\x92\xed\x49\x1e\x4a\ +\xf0\x33\x93\xee\xe0\xcc\x9b\xce\xad\x0e\x9f\xf4\x4c\xce\xcc\xf8\ +\xe0\x77\x2c\xe6\x77\x1d\xba\x38\xae\xb0\x13\x9f\xc4\xe6\x75\x3a\ +\xea\x07\x27\xc1\x8d\xc5\x3c\xef\x84\x38\x5a\x5f\xed\x5b\x5c\x70\ +\x9b\xa7\x00\x31\xec\x4c\xd2\xe8\x62\x9a\x1a\x26\x23\xe5\xc2\xb3\ +\x4b\xfd\x2c\x4e\x54\x0e\x17\xd5\xe6\x83\xd9\xd0\xba\x59\xd8\xb6\ +\x60\x70\xe5\x3a\x6c\x42\x79\x12\xf7\x3f\x83\xab\xe0\x82\xab\x2e\ +\x36\xd5\x3c\x41\x50\x2e\xaf\xd9\xf8\x51\xad\xd1\x85\x47\x03\x51\ +\x34\xba\xe8\x37\x6e\x4e\xb1\x99\x18\x52\x4b\x57\xf9\x16\x99\x23\ +\x16\xa8\xee\xab\x13\x2f\xe6\x3a\x9f\xc1\x77\x32\x26\x70\x26\x15\ +\xec\x33\x11\x84\x8d\xcb\xb6\xa6\xfe\xf0\x62\xf3\xe4\x37\x24\x6d\ +\xd7\x0f\xae\xd6\x2a\xe3\x30\x86\x5e\x35\xe4\x5b\xf3\x7f\xcf\xa4\ +\x45\xf3\xe4\x12\x0f\xff\x75\xf4\xd4\x20\x80\xce\x12\x1c\x88\x6f\ +\xd2\x15\xe7\x05\xf0\xc4\x14\xdb\xa0\x37\x05\xbb\x5e\xa1\x33\xf6\ +\x68\x91\xbc\xb8\x94\xe3\xce\x96\x0a\x96\xfe\x0c\x84\x4f\x6b\x45\ +\x6d\x54\x30\xe3\xa6\xca\xb6\x0b\x0f\xfb\x88\xe7\x19\xdb\x31\xaf\ +\xbf\xdc\x20\x6e\xfd\xdc\xf2\x12\xdf\xf8\x10\x98\x90\x93\xcd\xeb\ +\x67\x5f\x31\xc6\xe1\x47\xc7\x6b\xbe\x7d\x9c\xa9\x81\x0a\xef\xc0\ +\x0e\xdb\xed\xd8\x0b\xff\x25\x65\x3a\xe8\xeb\x6b\xc1\x46\xf0\x77\ +\xfb\x17\x90\x5f\x7c\xfd\x2e\xf9\xd5\x65\xdf\x95\xee\x65\x76\xa7\ +\xc3\xa8\xdc\x27\x4c\x91\x7b\x5e\xe5\x07\xeb\x3f\x23\x8f\x4a\x3e\ +\xea\xfa\x43\x62\x3e\xc7\x28\xab\xd8\x56\x49\x5c\xc7\x20\x0b\x5e\ +\x89\x21\xf9\x98\x75\x62\x8e\xbf\x0a\x0e\x47\xb6\x9f\x13\xd7\xd3\ +\xc7\xeb\x72\x0c\x80\x8d\xdf\x63\x7e\xc0\x33\xc7\x8d\x5b\xe3\xc7\ +\x79\x0c\x22\xdc\xe1\xf2\x8d\xd0\x04\xb7\xe6\xb3\xdb\xcf\x62\x66\ +\x60\xe7\x58\x1c\xc8\x51\x7b\xe1\xd8\x2a\x8e\x6a\x6c\xb7\x4b\x2c\ +\xda\xbc\x3b\x5c\xf6\xf2\x26\x4e\x6b\x67\xb8\x89\x11\x71\x74\x6c\ +\x6b\xb6\x4b\x23\x68\xce\x27\xea\x73\x5e\x64\xa6\xcc\x39\xf7\x81\ +\xef\xf5\x9a\x5c\x3f\x13\xcb\x76\xb3\x49\x96\x0d\x3f\x8c\x67\x99\ +\x9b\x72\x89\x45\x92\x36\x3c\xfc\x15\xd9\x72\x33\xae\x91\xc9\xce\ +\x39\xa1\x16\x1f\x18\xe0\x9b\xa9\x87\x7c\x3b\x3e\x9a\x38\x76\xfa\ +\x43\x15\x06\x3e\x3c\x23\xe1\xba\x1a\x0d\x22\xc3\x26\xa1\x00\x5a\ +\xb0\x94\xd5\xf3\xb5\x5d\xc2\xa9\xae\x93\x63\x59\xc7\xe0\x31\x46\ +\x62\x9e\xf3\x93\xc4\x31\x6f\x06\x60\xcf\x30\xc7\x4d\xa7\xd8\xb5\ +\x55\x3b\x46\xea\x45\x9b\x3b\x7d\x82\xd1\x26\xe0\xd3\x8c\x39\x27\ +\x70\x8b\x0d\xe6\x02\xc2\xe4\xa7\x27\x6a\x48\x81\xca\xc8\x0d\x33\ +\x72\x88\x8e\x6d\xe5\x78\x7c\x34\x4f\x3d\xe6\xfc\xa3\x78\xea\xe3\ +\xef\xf9\xe1\x3b\x63\xe2\x19\x8c\x63\xa9\x5b\xbe\x7d\x53\xca\xad\ +\xef\x46\x9c\x6e\xb2\xe4\x24\x63\xa4\x67\xac\x18\x6e\x8e\xbe\xd0\ +\xf0\xed\xc6\x27\xc6\x7e\x52\x7f\xb8\x0e\xd1\x60\x4e\x1f\x6b\x7f\ +\x42\xe5\xdb\x85\xde\x4e\xf8\xd6\x8c\xdd\x54\x5a\x1b\xf1\xdd\xfa\ +\x91\x67\x63\x8e\xd7\x26\x65\xd9\x78\xd1\x4e\x1d\xdf\x61\x35\x1d\ +\x07\x68\x08\xc9\x88\xf4\x7c\x6b\x21\x63\x1d\x0c\x24\x63\xba\x93\ +\x1d\xea\xf6\x3d\xc9\x83\x14\xcb\x70\x89\xef\xf6\x8f\x11\xf2\x9c\ +\xa3\x26\x6f\xea\x01\x2e\xb9\xe4\x67\xcb\xb5\x27\x5d\x72\xc9\xa7\ +\x93\x17\x3a\x39\x7b\x74\x88\xb8\xe4\x92\x4b\x3e\x03\xf9\x6c\xde\ +\xfc\xbf\x99\x15\xfd\x14\x03\xe1\x34\xe8\xa8\x93\x8b\x09\x9e\xc1\ +\x26\x72\x5c\x5c\x05\xf3\xc9\x93\x79\x27\x23\x32\x87\x81\xb9\x78\ +\x5e\x32\x93\x06\x91\x75\xa3\xc3\x5a\x0f\x9c\x1d\xab\xef\x0c\xe9\ +\x99\x64\xe0\x66\x8c\x59\xe6\x6c\x7a\xd1\x1d\x95\x66\xa2\x22\xf1\ +\x02\xe5\x15\xc3\xb2\x39\x76\xc6\x07\xe8\x0a\x7e\x46\xdb\x5a\xb9\ +\x7a\x36\x07\xee\x11\x2b\xae\xe5\x9c\x4f\xdc\xd1\xc3\xb6\x1e\x1f\ +\x4d\xdf\xd8\x4c\x4a\x24\xbe\x62\x76\x47\xd3\x6e\xdb\xf1\x11\x8f\ +\x1b\x68\x3c\x8c\xc3\x9b\xda\xe5\xb1\xfd\xb0\xd9\xa2\xef\x92\x0f\ +\x2b\x43\xe0\x86\x5a\x79\xa3\xa7\x3f\x2f\xf8\x94\x60\x32\x85\x1a\ +\xe1\x00\x7b\xd2\xc5\xf6\xb1\x38\xa0\x65\x5e\x3b\xe7\xb8\x1c\x3e\ +\xaf\x0f\x30\x3f\xa5\x04\x9f\x61\x10\xcf\xf8\x61\x85\xe0\x1e\x55\ +\x7f\xfb\xdf\x1e\xe4\x66\x2f\xcc\xf5\xae\x78\xec\xbb\x0e\x4b\xfb\ +\x7e\x8c\xbc\xf7\x9e\x3c\x98\xa4\x70\x5f\xbc\x57\x1d\xe6\x03\x94\ +\xf3\x52\x3b\x36\x35\xe9\x9f\x20\xcc\x94\x1b\x2b\xb6\x31\x3d\xa8\ +\xeb\x9f\xe5\xe4\x7f\x9b\x2c\x86\x5a\xf3\xe1\xe8\x72\xfb\x65\x6e\ +\xf4\x78\x4c\x02\x6c\x5b\x66\x8c\x5c\xb8\x0f\x86\xad\x56\x4d\xd6\ +\x30\x13\x2d\x8e\x3a\x60\x76\x6a\xf8\xa9\x47\x82\x34\x9b\xed\xa0\ +\x7c\xfa\xc6\xcc\x45\xbf\x17\xc6\x5d\xdf\xd6\x56\xcb\xf1\x4e\xd4\ +\xa4\x2f\x6d\x2f\xc5\x5d\x57\xf8\x31\xe9\x23\x61\xa2\x08\x9b\x75\ +\xe5\x66\x0e\x31\x56\x18\x4c\xeb\x8c\x98\x09\x99\x9b\x5b\x8a\xbd\ +\xe0\x9f\xb5\xc1\x6b\x5d\x33\xe0\x63\x62\x73\x23\xce\xfd\x47\x83\ +\x87\x16\x63\xe5\xb8\x3f\xba\xeb\xcd\x37\x60\xd3\x58\xaf\xf2\x8a\ +\x27\x46\x53\xdc\x2e\x01\x1b\xb6\x0d\xb7\xdf\x3c\x83\x27\x46\x10\ +\xb3\x18\xd1\x40\x32\xbb\x7d\x6c\xb3\x0c\x5f\x9a\xed\x33\x75\xf0\ +\xd5\x4e\x62\xd6\x8d\x18\x1b\x45\xb6\x51\x09\xf9\xce\x89\x8d\x91\ +\x14\xb4\xc6\x37\xdb\x19\xcd\x6b\x08\xce\x2a\xb3\x3d\x27\x36\x7c\ +\x0c\x9e\x7b\x9d\xdd\x26\x68\x75\xe8\xc0\xe3\x47\xfd\xba\x32\x9d\ +\xb2\x23\x21\xf8\xbb\xfd\x89\xe5\x9f\xb2\x8e\x97\xfc\xa2\xf2\xdc\ +\xee\x32\xb8\xe5\xe4\x54\x3e\x98\xf0\x54\x7e\x24\xfd\x59\xa1\xce\ +\x47\x8d\x59\x32\xf1\x1e\x8f\x72\x5c\xda\x25\x47\x4a\x27\x2a\x76\ +\x44\x65\xe9\xb3\x66\xf8\x4b\x9b\x57\x2b\x90\x2c\x8e\x64\xe0\xcd\ +\xb7\xc6\x1a\x4e\x62\x3e\x86\xe3\xe1\x16\x4b\xdd\x83\xef\xa5\x38\ +\xde\x8a\xf9\x99\xb8\x53\xac\x01\x17\xea\x75\xe5\xdc\x20\xd1\x9e\ +\x73\xa4\x89\xa6\x75\x32\x3a\xac\xe0\xd9\x2e\xb6\xfd\x7c\xc0\x69\ +\x3f\xd1\xb6\x9c\x63\xed\xf8\xe8\x2d\x3e\x7a\x78\xd6\x8d\xfb\xa9\ +\x87\x43\xc1\x78\xf4\x79\x70\xf1\x97\xdd\xf3\x1a\xf9\x67\x4e\xd7\ +\x95\xc5\x5b\x39\xce\xdc\x84\xe4\xa8\xbc\xc6\x90\x93\x15\xeb\xfc\ +\xef\x31\xf9\x4a\x3f\x6e\xbc\x35\x47\x3a\xc8\x81\xc5\x49\xb3\xea\ +\xb9\x81\x2b\x8b\x7d\xad\xdb\xdf\x76\x71\x8e\x12\xf0\x0c\x11\x6b\ +\xae\x45\x60\x8f\x22\x92\xec\x21\xf6\x4c\x0e\xee\x9b\xa3\xfc\x64\ +\x39\x7a\x71\x29\x93\xda\xbb\x04\x53\xaf\x8b\x9e\x78\x5a\x01\x1c\ +\xb3\xec\x90\x09\x29\x96\x5b\x05\x48\x89\x14\x85\xcc\x78\xf7\x3a\ +\xae\x11\x9f\x9a\xcb\x74\x0d\x29\x75\x8e\x3e\x8e\xa3\x07\xff\xd4\ +\x72\xbc\xd7\xf6\x5a\x71\xb4\x70\xfe\x60\x89\x71\x70\xb4\x66\x3d\ +\xe6\xdc\x6b\xf2\x7c\x7e\xc7\x41\x5c\xe2\xf3\x02\x6b\xb7\x5a\x18\ +\xcf\x9c\x63\xc8\xf7\x93\xe6\xec\x2f\xdb\x5c\x57\xa2\x09\x6e\x43\ +\x96\x73\xd8\x9e\xf4\x0f\xbe\xe7\x95\x69\x6d\x60\xf9\x26\xc4\xb3\ +\x2c\xae\xda\x58\x5a\x1a\xde\x7d\xdb\xa3\x1d\x94\xa5\x0d\xe0\xd7\ +\xd2\x58\x23\xa7\x7a\x56\x5a\xd8\x0e\x45\x3d\x06\x5b\x83\x74\x0c\ +\xf2\xf2\x94\x64\x1b\x21\x07\x9e\xed\x6c\xa6\x63\xe8\x32\xc6\xc7\ +\x5d\x3e\xc2\xeb\x50\x5c\x18\xde\x1a\x6f\x40\xe3\xde\x17\x83\xf2\ +\x02\xf2\x32\x8d\x27\x19\x1d\x59\xb9\xe4\xec\xa1\xb1\x5d\xeb\x19\ +\x39\x97\xfa\x30\x77\xe4\x51\xce\xde\x17\xf6\xfd\x58\xa6\xee\xda\ +\x0e\x97\x5c\xf2\xf3\xe4\xda\x93\x2e\xb9\xe4\xd3\xc9\x0b\x9d\x0c\ +\x7d\xcc\xc7\xff\x25\x97\x5c\xf2\x2f\x28\x9f\xd5\x9b\x7f\x9d\x90\ +\x6a\xf9\xa7\xad\xf8\xde\xf1\x27\x1c\x08\x17\x10\x35\x73\xf1\xec\ +\x4b\xdc\xf8\x95\x5c\x60\x3c\x1d\x01\x62\xae\x03\x67\x52\xae\x6b\ +\x67\x5a\x46\x82\xd1\x43\x86\x0f\x1d\x5a\x02\xe5\xa2\xda\x37\x4f\ +\x1a\x97\xc1\xac\x81\x5d\x4f\x3a\xf8\xc2\x1f\x1f\xc0\xc4\x35\xa9\ +\x10\x6e\x60\xff\xd4\x20\x88\x79\x24\xa1\xfd\x04\x0c\x1e\x33\xcd\ +\xc2\xb2\x38\x6a\x38\x31\xbb\x13\xf7\xb3\xf8\xca\xa9\xbb\xe1\x51\ +\xc4\x40\x07\x3f\xb0\xe1\x44\x77\x8c\x59\x79\xe3\xc9\x09\xdc\x46\ +\x38\x18\x91\x06\xec\x0e\x26\xb5\xf2\xb5\xfe\x60\x13\x43\x1b\x87\ +\x93\x8d\x74\xe2\xd6\x1e\xee\x9a\xc0\x21\x01\xba\x63\x50\x1a\x4f\ +\xe6\xf2\xeb\x39\x8f\x1b\x2f\xde\xfa\xe0\xd8\x5a\xbc\x97\xca\xe5\ +\x27\x8d\x7c\x63\x86\x85\x1c\xf1\xc9\x7f\xa9\x85\x2d\xc0\x4d\x41\ +\xe2\x7e\xa0\xa1\x29\xd9\x7b\xa2\xf1\xec\xa3\x13\x67\x92\x02\x8a\ +\xf5\x70\x6b\xcf\x35\x63\x14\xad\xf7\x2e\xb5\xc4\x21\xcb\xee\x45\ +\x32\x4b\xd3\x15\x13\xc3\xfb\xab\x3c\xdf\xe4\x4b\x26\x5a\x03\x0e\ +\xb1\x42\x1f\xe9\x17\x43\x2c\x6d\x33\xa6\x08\xb2\x27\xd3\x93\xd7\ +\xca\xe2\xbe\x18\x9b\x6c\xdf\xb0\x52\xb4\x57\xf1\x82\xf1\x11\xfa\ +\xae\x25\x83\x47\x00\x65\xa1\xcb\x8f\x84\xcb\xe4\xca\xdc\xbc\xb3\ +\xd2\xe2\x6f\x97\xa9\x3f\x94\x79\x6e\x5f\x76\x52\x40\x23\xe3\x46\ +\x18\xff\xdb\xe2\xa5\xd7\xb2\x65\x3b\x49\xc3\x4d\x31\xb4\x24\x53\ +\x0d\xca\xcf\x9d\x4a\x99\x13\xa3\x6f\x92\x32\x86\x36\x7d\xc2\xc7\ +\xa7\x7e\xb9\x3c\xcc\x17\xe0\x1c\x16\x28\x44\x80\xb2\x0e\xa6\x98\ +\x83\x76\x44\x4f\x17\x89\x5f\x4e\xc6\x81\xa1\xf1\x17\x57\x53\x0c\ +\xf3\xac\xc1\x33\xa6\xbe\x2e\x36\xcb\x6f\x7d\x62\x27\xdc\x90\xb4\ +\x36\x8e\xf3\x1d\x63\xb9\xdf\x06\xcd\x87\xb3\xf4\xc4\xfa\xba\x25\ +\x12\x0c\x9b\xa7\xe3\xcd\x09\x50\x2a\xdb\x0d\x9b\xba\x53\x27\xda\ +\xdc\xe9\x3f\x8d\xd5\x70\xf0\x91\xf8\xb6\x0e\xdf\xc6\x6a\x22\x9b\ +\xf9\xeb\x0b\x9d\xfb\xcd\x63\xef\x17\x97\x7f\xea\xba\x5e\xf2\x8b\ +\xc8\xbe\xfb\xf4\x23\x2a\x32\xce\xfd\x8b\xbe\xe1\x84\xec\x9e\x12\ +\x1f\xcb\xc3\x3e\x7e\xa6\x4c\xff\xf7\xfa\x19\xc9\x31\xeb\x9e\xd4\ +\xe3\x12\xad\xe3\x7b\xd4\x47\x49\xeb\x3e\xd5\x0c\x56\xdb\xe5\x86\ +\xd3\x63\x70\x6d\x50\x3e\x2d\x8f\x1b\x3c\x13\x6a\x8d\x6a\x7f\xc3\ +\x08\x7b\x70\xda\xe6\x24\x05\xad\x8e\x84\xf9\x5c\x00\x0d\x66\x7e\ +\x85\xe3\x2d\x3f\x8d\x67\x78\x46\x31\x75\xea\x99\x8f\x8f\x9d\xb8\ +\xdd\x58\x52\x13\xc7\x44\xc7\x3f\x62\xd1\xc1\xed\x98\x67\xc8\x27\ +\xb6\xb5\x87\x3b\xfe\x78\x76\x72\x3e\x40\x03\xab\x91\xc6\xe2\x4f\ +\xce\xc2\xa4\x83\x4d\x2e\xbc\xc1\xba\x4d\x36\x3d\x38\x79\xeb\xf5\ +\xb0\xcf\x8b\xc5\x76\x0a\xef\x9d\x3c\xff\xa1\x0f\xdb\xf6\xbd\xbc\ +\x6c\xe2\xc4\xb1\x7b\x4e\xf7\x9e\x75\x73\x21\xf2\x64\x02\x9f\x6a\ +\x1a\x88\xd8\x8d\x3f\x28\x47\xa1\x75\x16\x53\x90\x43\x53\xc6\x51\ +\x11\xbe\xfe\x80\x88\x7c\x0f\x00\x9d\x98\x7d\x94\x1c\x97\x2f\x3e\ +\xe1\xad\xd9\x24\xc7\x36\x5b\x68\x35\x3d\x02\x46\xec\xdb\x68\x7b\ +\x90\xe1\x1f\xcc\x38\xf6\x09\xac\xf1\x15\xd3\xba\xe4\x1b\x52\xad\ +\xd0\x73\x12\xa2\xb9\x29\x16\xe2\xaa\x5f\xcb\x7d\x28\x8f\x54\x1d\ +\x91\x83\x03\x3a\x16\x1d\x2c\x51\x27\x18\xc9\xf1\x3b\x18\x5b\x97\ +\xd0\xc4\x52\xe3\x9c\x5f\xad\x47\x9e\x9b\xf6\xa2\x96\x9c\x80\x77\ +\x7c\x1c\x59\x0e\xc5\xce\x73\xd7\x89\x73\x3e\xe8\x97\x00\x5f\x6a\ +\xc5\x87\x03\xd6\x16\xf1\x18\xfd\x04\xc3\x90\xa5\x7c\xf6\x8a\x9d\ +\xbd\xce\xe7\x06\xf1\x93\x3d\x61\xe3\x91\x6b\x93\xa6\x68\xfb\x8c\ +\xcd\x36\x94\x55\xac\xe4\x0d\xd3\x23\x01\x69\x8c\xc3\x4f\x1b\x2c\ +\x5c\x4c\x69\xbf\xe6\x47\xf4\xb0\x8b\x2b\xbe\x6c\xac\xea\x25\x6c\ +\x2b\xc9\xc1\xb9\x13\xb0\x72\x1e\xda\xf7\x39\x83\x7d\x8c\xde\xe5\ +\x39\x6c\xc9\x96\x3c\xef\xc9\x33\xe1\x92\x4b\x7e\xb2\x5c\x7b\xd2\ +\x25\x97\x7c\x3a\xb9\x6e\xa8\x5d\x72\xc9\x67\x2c\x9f\xdd\x9b\xff\ +\x9f\xba\xc2\x8f\x3a\x9f\x13\xe6\x4f\x29\xb9\x80\x70\xd5\xed\xe3\ +\xfd\x74\x31\xbc\x75\x3b\x27\x55\x1b\xf3\x70\xac\x8f\x08\x76\xa0\ +\xe1\x24\xe6\xc3\x88\x96\x81\xf0\xed\x95\x77\xd8\xb2\xd0\xe6\x75\ +\xd2\xc1\x7e\xf8\x9e\x48\xb0\x1b\x6e\xf0\xf8\xe4\x79\xd8\xa6\x34\ +\x6e\x1c\x02\x93\x15\xe5\xe1\x3a\xce\x93\x66\x38\xb1\xeb\xc4\x1d\ +\x0c\xcb\x70\xf5\x86\x1d\x1c\x94\x74\x27\x3b\x66\x9d\x07\xe7\xe1\ +\x1b\x4a\x86\xc3\x99\xf8\xae\x1d\xe9\xc4\x93\x7d\xd3\x8c\x6e\x7e\ +\xd7\x67\xad\x57\x26\x63\x42\xa1\x91\xcf\xcd\x35\x42\xf2\xb3\xdd\ +\x84\xf1\x30\x1f\x8d\x81\xd4\xf6\x33\xba\xcd\x9a\x24\xf3\x03\x08\ +\xbb\xbe\x01\x2b\x5e\xa7\xdc\x38\x03\x1a\xce\x13\xed\x1a\xd4\x03\ +\x3a\xc6\xc6\xe5\x77\x1d\x5b\xd9\x37\xdd\xf4\x42\x77\x19\x16\x5f\ +\xe4\xd6\x8a\x10\xe7\x49\xfd\xde\x90\x00\x9d\xc9\x26\x7c\x0a\xdb\ +\x84\x83\xa5\x40\xb1\x8c\x21\x3a\x82\x16\xd3\x17\xdd\xe2\x2b\xc8\ +\xc8\x98\x80\x81\xe2\xfa\xc6\x10\xde\x4b\x2c\xfc\x05\xb3\xea\x10\ +\x74\x31\x47\xcc\x98\x01\xa1\x92\x5f\x0e\x0c\xcf\xd8\xb0\x4d\x8a\ +\x15\xaf\x71\x7b\xf1\x92\x6f\x6f\xf1\xd4\x78\x99\x78\x68\xad\x4c\ +\x08\x48\xf0\x3d\x6f\x43\x03\x46\x07\xdd\x06\xac\x3f\x13\x3c\xcc\ +\x79\x60\xda\xd0\x93\x05\xbe\x39\x5a\xca\xf1\x4d\x38\x88\xbe\xe9\ +\xa6\x00\xdb\xc5\x64\x05\xb7\x9b\x63\x48\x7e\x6e\x69\xea\xb9\xb1\ +\x9e\x1b\x45\x6b\xe2\x8a\xd0\xd6\x97\x27\xa0\xca\xff\x1e\xdb\x9c\ +\x04\xe7\xa6\xa4\xbd\x04\xc2\x75\x62\xfc\x09\xc6\x45\xcb\xf2\x90\ +\xf2\x17\xe4\x19\x03\xbc\xc9\xad\x38\x8f\xfe\x12\x03\x48\xb8\x1a\ +\x98\xed\x20\xc7\x2f\x05\xe0\x0a\x38\x6b\xe3\xc2\x33\x20\x09\xe6\ +\x1b\x86\xf1\x9a\xcf\x3a\x87\xe4\x08\xb6\x16\x7e\xe2\x31\xfb\x4a\ +\xf2\x88\xad\xf1\xb2\xfe\xf0\xf1\x9d\x53\x9b\x18\x4e\x82\x3c\x31\ +\xec\x8e\x2a\xf8\x1b\x94\x5f\x70\x5c\x53\xda\x2f\x7c\xcc\x4b\x3e\ +\x03\xf9\x98\xd7\x1b\x4e\x9a\x0f\xcb\xbe\x0f\x7d\x4a\xa1\xee\xa3\ +\x9a\xcf\xe1\x16\x05\xfa\x3e\xe6\x58\x62\xde\xe2\x1a\xb1\xce\x73\ +\x02\x58\xc1\xec\xf9\x00\x13\x7f\xcb\x20\x20\x3c\xc7\xbc\xe5\x5b\ +\x25\x7f\x61\xe3\x3b\xae\xc5\x9f\xf3\x07\x6f\xe2\xc4\x4c\x69\xcc\ +\x5c\xb7\xe0\xdb\xb1\xd5\x8d\x30\xd6\x0b\xdd\xa4\x73\x3d\x78\x7c\ +\x22\x26\x1e\xdf\xa4\x46\x62\xd7\x32\x67\xe1\xe8\x87\xbc\xf1\x6b\ +\x19\x4f\x3c\xb0\x03\xd1\xcb\xc7\x3e\x78\x2b\x12\x20\x91\x3c\x1d\ +\xe7\x9c\xa7\x9e\x5c\x02\x3b\xa7\x31\xf3\x62\xf2\xfd\xf7\x7c\x8e\ +\x2b\xea\xa2\xc4\x8a\xd9\x47\xb5\x86\x84\xfa\x79\x29\xc3\x5f\x7f\ +\x0c\xe4\x63\x7f\x39\xad\x43\x55\x8f\xa7\x75\x82\xe7\xd0\xe8\xbe\ +\xbc\x5f\x81\x55\xe7\x99\xd7\xf7\x7d\x8f\x59\xf8\xad\x14\x2b\x5c\ +\x23\x7e\xfd\x40\xdd\x44\x1c\x56\x83\xb6\x4b\x51\xbf\x8a\xa6\xad\ +\xb0\xdd\xd4\x99\x6c\xd7\x76\x1e\xeb\x94\xbc\x1c\xeb\x82\x39\xdf\ +\xc7\x75\x03\xb0\x9c\x1b\x4a\xb9\x16\x00\xce\xcd\x94\x32\x63\x69\ +\x27\xc3\x39\x8e\xa1\xf6\x64\x52\x3c\x5e\xcf\x40\x3c\x3a\xd7\xa8\ +\x0e\x7c\xe4\xa4\x95\x3e\xd5\x89\x75\x60\x98\xce\xc6\x6a\x17\x89\ +\x85\xbb\x63\x32\xb6\xf8\x51\xa3\xed\xe2\x4f\x9c\x06\xa5\xfa\xb2\ +\x93\x5f\x8e\x03\x5b\x7e\x9e\x6a\x7a\xbe\x13\xaf\x35\x97\xe7\x65\ +\x61\xd5\x7e\xc1\x66\x03\xf0\x9a\xd8\x3c\x6a\x9b\xd7\x17\xc2\xa8\ +\x9f\x8d\x3a\x14\xbc\xc8\xe2\xad\xfa\x40\x34\x36\x27\x5e\x0f\xce\ +\xee\x63\xe1\xb4\x46\x1c\xdc\xf1\x63\x5b\x4f\x9c\x27\x98\xf7\x81\ +\x60\xa6\xb0\xc4\xab\x33\x15\x10\x59\x7d\xd9\xd8\x35\xec\x13\xf4\ +\x7a\x56\x8f\xdc\xfb\x1f\x12\xb8\x23\x8f\x6a\x8d\x7c\x2c\xfe\xa4\ +\xde\x00\x72\xec\x63\xef\xa4\x4b\x2e\xf9\x79\x72\xed\x4d\x97\x5c\ +\xf2\xe9\xe4\xba\xa1\x76\xc9\x25\x9f\xb1\x7c\xb6\x6f\xfe\x7f\xda\ +\x8a\xef\x1d\x73\x3a\x33\x67\xca\xbf\xc4\x80\xe6\x74\xa9\x17\xcd\ +\x71\x0e\xe1\xe2\xaa\xb1\x91\xfd\x1c\x3e\xc2\x85\x7e\x4d\xc0\xdd\ +\x16\x37\x7f\x49\x1b\x37\x17\xda\xf8\xc9\x89\xa9\xc6\xdd\x04\x08\ +\x07\xd3\xc1\x65\x4f\xae\x47\x83\x5e\xf1\x70\x2c\xea\x6b\x1e\x7e\ +\x2e\x0e\xaa\x91\xcd\x36\x6e\xcc\xc6\x13\x7c\xcc\xb9\xa1\xe4\x67\ +\x0a\x60\x38\xb6\xec\xbb\x98\x23\x01\xc3\x7b\x64\xa3\x5b\xc5\xaa\ +\x7e\xfe\x9a\xb9\xae\xfc\xd4\xb1\x65\xd0\x0f\x53\x99\x5c\x01\xea\ +\x04\x16\xb1\xda\xfc\xcc\xa3\xb3\x79\x51\xd3\x08\xd3\xd2\xd7\x83\ +\x1a\xbc\xe0\xb9\xe9\xa4\x45\x3a\xe3\x71\xb0\x4a\x86\x6b\x5a\x49\ +\xa6\x36\xce\xe0\x8c\x15\x83\x32\x83\xc7\xcf\xf8\xc6\x06\x8f\x21\ +\x3d\x96\xc8\x00\x00\x3c\x4c\x49\x44\x41\x54\xef\x5d\xc8\xb6\x0d\ +\x9a\x8e\x21\x2e\xfd\x9a\x83\xac\xab\x61\x61\xdd\xf9\x9c\x27\x1b\ +\x17\xdb\x97\xc6\xb9\x12\x76\xfe\xcc\x69\xb0\xda\xb3\xbf\x3a\x7a\ +\x34\x1e\x87\x93\xb5\x98\x33\x31\xf9\xd9\xed\xa9\x09\x66\xa8\x23\ +\x40\x62\x91\xc3\xe4\x06\x5b\xd6\xf9\x6a\x98\xbe\xf0\xf6\x64\x22\ +\xc2\xb9\x6e\xac\xb0\x5c\x47\x01\xea\xac\xcb\x79\x62\x36\x97\xd1\ +\x48\x7d\x3d\x73\x9f\x65\x7c\x2d\xda\x56\xdc\x7c\xc9\x4d\x9c\x4c\ +\x09\x65\xb8\xb6\x7a\x63\xa6\x3d\x78\xfe\x65\x26\x61\x80\x3d\xca\ +\xfe\x7f\x34\x36\x94\xd1\xc6\xd5\x4c\x6e\xfb\x46\x25\x92\x1a\xc6\ +\x80\xc0\x66\x3c\x8c\x63\xf1\xe1\xb9\x92\x39\x89\x61\x62\xab\xef\ +\xb1\x57\xec\xce\xf6\x13\xcc\x90\xfd\x20\x1a\xb5\xc6\x16\xc8\xa4\ +\x10\x16\x49\xe8\x60\xb6\xb3\x58\xac\xd4\xf0\x04\x2b\x07\xed\x07\ +\x6e\x7d\x54\x70\x74\xb6\xcf\xc4\x1d\x9e\x9d\xcb\x54\x37\x75\xe7\ +\xf5\x90\x78\x1b\x86\x37\xfd\xb9\x86\xd7\xbf\x75\x60\x06\xdc\x62\ +\xce\x38\xfb\x34\x09\x58\x8e\x3c\x3b\x59\xb2\x63\xfe\x46\xe5\x18\ +\xfb\x27\x93\xfb\x92\x79\x43\x5d\xf2\x39\xcb\xbc\x07\xd6\xfb\xe1\ +\x07\xde\x14\x7e\x0f\x89\xf3\x03\xb4\x9f\x25\x33\x96\x47\xfb\xe6\ +\x73\xfd\x3e\xe1\xe6\x38\xbb\xea\xd8\x31\x6a\x7d\x58\x6a\x79\x36\ +\x6e\xdc\xe6\x8a\xa6\xf5\xf1\x09\xf3\xc8\x23\xa7\xa7\x7a\xcd\x0f\ +\x66\x99\xf3\x82\x85\xd3\x9e\x8f\xdd\x42\x6d\x5a\x1b\x50\xbc\xf6\ +\xaa\xa7\xc1\xaf\x9a\xd2\x8d\x2e\xcc\x88\xf1\xc6\x76\x0e\x96\x9f\ +\x20\x6a\x43\x88\xff\x8c\x3d\x7e\xa0\xdd\x37\x72\xf8\xed\x3f\x48\ +\x63\xc6\xb2\xb8\x5d\x9c\xc3\x76\xcb\x09\x86\x6d\x79\xee\xa3\xde\ +\x70\x8c\xed\x7c\x96\xc1\x68\xfb\x8d\x7a\x7c\x9e\x7d\x6d\x88\x22\ +\xa9\xc3\xb6\xee\x4e\x61\x3f\x51\x9f\x4b\x49\xf7\x65\xab\xad\x4a\ +\xe2\x10\xa1\x2e\xb1\xdc\xb0\x83\x30\xcc\xb3\xd0\x77\x22\x68\x8e\ +\x59\xe5\x48\xf9\x5c\x92\xe3\x5d\x8f\x37\x07\x8f\x9e\x10\xb5\x1c\ +\xa7\xba\x4e\x89\x4f\xcf\x5b\x9d\xb1\x1b\xf5\x73\x20\x30\xd5\xe7\ +\xd8\x49\x34\xff\xdb\x15\xac\xc7\x59\xd7\x8a\xe6\xb0\x9a\x5a\xaa\ +\xe2\x02\x19\xf1\x1a\x1f\xda\xf0\xf8\x56\x86\x8e\x6a\x1b\xb7\xb5\ +\x16\x2a\xac\x29\x95\xc5\x76\x2c\x16\x1a\x7f\xec\x71\x8b\xbb\x35\ +\x50\x5d\xd6\xe8\x9c\xa8\x25\x66\x38\xfa\xcc\x6b\x6c\x5a\x3f\x69\ +\xb6\xc8\x66\x4f\x8d\x70\xb0\xf6\xb5\x25\x5e\x3b\x34\x99\xb2\x3b\ +\x8e\xe0\x2b\x60\x8e\xff\x28\xad\x9b\x46\x88\x1a\xb7\xd5\x06\x2d\ +\x41\xeb\xe0\x4d\x3c\xae\x6b\x1d\x9c\x46\xee\x6b\x61\xa2\x21\x63\ +\x57\x27\x9e\xf5\x18\x9e\x2d\xa8\xf8\x86\xb0\x62\xef\xeb\xc0\xcb\ +\x7a\x70\xc6\x8e\x6f\x1b\x99\xf7\x54\xc5\xbb\xdb\x8e\xed\x61\xb6\ +\xc5\x0f\x09\xfc\x0f\xf1\x26\xfe\x31\x75\x1f\x71\x16\xb6\x17\x6a\ +\x70\x71\xf6\xc4\x4b\x2e\xf9\xf9\x72\xed\x51\x97\x5c\xf2\xe9\xe4\ +\xba\xa1\x76\xc9\x25\x9f\xb1\x7c\xd6\x6f\xfe\x5f\x7d\xe5\x9f\xeb\ +\x70\x3b\x79\x3e\xd9\x3f\x55\xee\x6b\xe8\x32\x63\x41\x07\x8e\xb5\ +\x43\x8f\x4e\xae\x76\xcc\x17\xbb\x93\x3e\xda\x57\x66\xc1\xd7\xa1\ +\xa4\x17\xe0\x36\x33\x27\x21\xa9\xaf\x18\x97\xd6\xbe\x39\xe3\x27\ +\x4d\xec\xe4\x99\xb5\xd5\xca\x8d\x9c\x5c\xd4\x43\x49\xbe\xe3\x5e\ +\xcc\x0e\xd1\x50\xec\x28\x22\xc1\x63\x23\x89\x31\xec\xc4\x1c\x8c\ +\xb2\x8f\x22\x62\x00\x47\x6e\xf0\x55\x5b\x6d\x56\x3b\x31\xcc\x95\ +\x63\xae\x11\xc7\x6a\x6c\x31\x03\xc5\x26\x16\xcc\x74\xfc\x72\xd2\ +\x6f\xf4\xd8\xe3\x8f\x9e\x6d\xb1\x38\x4e\xad\x4f\xe5\x42\x36\x8c\ +\xd5\xe6\x95\xc5\xe7\x26\xa5\x56\xc6\xbb\x47\x6f\x7a\x19\x6b\xad\ +\x68\x2d\x3c\x0d\x75\xb2\x8d\xa6\xcb\xc1\x61\x41\xc5\x47\x7b\x3b\ +\x8d\x4d\x70\x6b\x4d\xd3\x85\xee\x0b\x7e\xae\x46\xc4\xe0\x1a\x80\ +\x07\x63\x27\xda\x82\xc3\xe4\x11\xdf\xfe\x91\xf6\x0e\x0d\x57\x04\ +\x9e\xd6\xca\x56\x51\xff\xb5\x3c\x3f\x3f\x29\x95\xfd\xaf\xdb\x29\ +\xa6\x16\x35\x0a\x1a\xa1\x8c\xf2\x80\x31\x0b\xa8\x95\x36\x10\x3f\ +\x5a\xa8\x2f\xcc\xb5\x20\xe3\x98\xe7\xa8\x4a\xab\xf5\x4a\x2f\x30\ +\x94\xfe\xbf\xb2\x03\x90\xd6\x62\x16\xa6\x35\xb9\x01\x3c\x02\x53\ +\x52\x93\xf5\x3c\x6e\xf6\xbc\x34\x3f\x6e\xfa\x7b\xf1\xe2\x95\xec\ +\xf6\xdb\x1a\xb3\x8d\x86\x97\x27\x4d\x6a\x1b\x00\x71\x47\xf8\x8d\ +\x23\xca\x39\xb8\xc3\x21\x16\x9b\x21\x79\x14\x83\x7b\x21\x4c\x56\ +\xfd\xea\x84\xbb\x8d\x37\x1c\x89\x0a\x36\x3c\xdc\xac\xbf\x83\x4b\ +\x87\x2c\xdc\x37\xde\xc2\x8b\x0c\xb7\x98\x6c\x87\xc0\xb0\x27\x2f\ +\x60\x9e\xde\x28\xb5\x0d\x1b\x94\x3d\x98\xd1\xe0\xd6\x98\xd8\x36\ +\x0a\x49\xaf\xb1\xa8\xed\x62\x97\x66\xe1\x98\x20\xc1\xd2\x75\xe3\ +\x36\xa3\x83\x55\x36\xf3\x9f\x2f\x0c\x86\x57\xef\x39\xd9\x07\xdb\ +\x7d\xf0\xe7\xc8\x7d\xfa\x27\x28\x79\xc9\xbf\x98\xf8\xe0\x71\x27\ +\xbc\x7f\x76\x9c\x7d\xe6\x43\xbb\xed\xa7\x92\xd9\x37\xa7\xaf\x7d\ +\x5f\xfd\xc8\xfe\x7b\x74\xda\xf8\x31\xf6\x76\x79\x1c\xe3\xee\x79\ +\x3d\xa6\x71\x8c\x04\x9b\x38\x9f\xba\x39\x04\xce\xf1\xaf\xfc\x72\ +\xf8\x46\xd4\xe1\x0b\xe0\x69\x4e\xf9\x83\x8f\xbf\x6c\x69\x3f\x37\ +\x9b\x10\x46\x19\x00\x9b\x27\x75\xf4\x95\xe7\x16\x4f\x72\x90\xc6\ +\x9e\xe2\x41\x77\x3c\xf6\x68\x8c\xcd\x47\x2d\xbc\x48\x9e\xf1\x6c\ +\x9c\x63\xb5\xac\x21\x8c\x67\x7c\x8f\x6f\xb1\x85\xc7\xe8\xb9\x08\ +\x47\x30\x50\x23\xe1\x72\xd0\x34\x0f\x2c\x37\xcc\xbc\xb3\x18\x28\ +\xc7\xf1\xec\x40\xf8\xce\x98\x38\x4a\x40\x30\xf2\x0b\x04\xd1\x82\ +\x04\x0b\xc2\xf6\x96\xb5\xe7\xc5\x4c\x2d\x8e\xf1\xd2\x61\xb1\xa7\ +\xf8\xa8\x2b\x2f\x98\x4f\x1b\x56\xc6\x64\x93\x7b\xac\x5b\xd8\x69\ +\xe3\x87\xe3\x63\x21\x18\x1d\xd9\xde\x98\x47\xb3\x4c\xf4\x1c\xf3\ +\x27\x92\x18\xf5\x38\xd3\x48\x1d\x43\x6e\x25\x27\x7f\xd0\xc9\xdb\ +\x6c\x0b\xb5\x6b\x5a\xf6\x18\x42\x7c\x10\xf4\x5e\x67\x54\x70\xc7\ +\x1a\x5c\x55\xa4\xc6\x3e\xea\x48\x76\xdc\x4e\xbd\xd1\x6e\x0f\xcc\ +\x76\x9c\xd8\x36\x77\x3c\xaf\x4a\x36\x07\x71\x81\xd6\x12\x4c\xb6\ +\xd5\x38\x16\x83\x7a\xc6\x27\xc7\xe7\xa8\xb5\x1d\xdc\x6d\xce\x25\ +\x13\x6d\x44\xd2\x98\x11\x3f\xeb\x9b\xe0\x66\xe5\x9f\x39\xa3\x8b\ +\x89\x93\x78\xb1\xfb\x36\x05\xb1\xfc\xc8\x73\xc7\xac\x0e\xdb\xad\ +\x96\x3c\xeb\xef\x32\x39\xc7\xbe\xd3\x9d\x34\x32\x36\xfa\x63\xe4\ +\xc7\x70\x7f\x48\xee\x6b\xcd\x98\x0e\x43\x22\xc2\x89\xb3\xc7\x2e\ +\xb9\xe4\xe7\xcb\xb5\x47\x5d\x72\xc9\xa7\x93\xeb\x86\xda\x25\x97\ +\x7c\xc6\xf2\xd9\xbf\xf9\x7f\xf5\x0d\x40\x87\xf7\x67\xd3\xc8\x60\ +\x73\x8a\xf3\x4b\x0c\x4c\xb5\x5b\xde\xbd\xa9\x8b\x5c\x46\xd7\x27\ +\x80\x7c\x54\xd7\x25\xdd\x27\xa9\x28\xd6\xdc\x00\x03\xf7\x21\x66\ +\x78\x3d\xdc\x58\x75\xe2\x81\x18\x1c\x67\xf8\x19\x1d\xde\x1d\xe6\ +\xc4\xd6\xb4\x9b\x49\x1a\x70\x23\xe5\xcc\xb7\xa9\x2c\x0d\x9c\x6a\ +\xc5\xc8\x1c\x8f\xc6\x41\x6c\x1f\xb3\x9f\xae\xb1\xf9\x3c\x5a\x23\ +\x40\xf9\xe6\x11\x8b\x6d\x34\x81\x13\x6e\xbf\x36\x2a\x18\x0a\x4e\ +\x6c\x08\xab\x8f\x85\x47\x07\xef\x02\xc6\x0d\xb0\x8d\x3f\xdc\x3c\ +\x8b\x23\xa3\x2b\x71\x0f\x2c\xf9\x9d\xe0\x91\xed\xe9\x12\x93\xc0\ +\xa9\x13\x13\xf1\x7f\xff\xb0\x3f\x78\x39\x7d\x2d\xbd\x3d\xd3\x68\ +\x91\xf8\xe5\x69\xcc\x5a\x9b\x9b\x9d\x8d\x2e\x1c\x93\xc1\x45\xbc\ +\x40\x56\xe7\x25\xaf\x85\x30\x1e\x54\x80\x8a\x30\x39\xe4\x9f\x64\ +\x94\x0d\x86\x76\x21\xfa\x97\x46\x51\xd0\x90\x1e\x0c\x27\xfb\x17\ +\x80\xd6\x4d\xca\x18\xb4\x4d\xcf\xcf\x03\xb1\x0d\x7c\x41\x6f\x90\ +\xa0\xd4\xdc\x04\x2b\x3f\x81\x6a\x4c\xbb\x6a\x52\x08\x67\x41\xe9\ +\x24\xeb\x11\x10\xc1\xd0\xe2\x1b\x2a\x89\xd6\xb0\x78\xc2\x81\xb1\ +\x60\x33\x60\x7f\x13\x2a\x75\x10\xc7\x8d\x45\xf2\x6d\xb1\x44\x67\ +\x9b\xad\x9b\x67\xb6\x59\xa7\xae\x03\x58\xb9\x26\x65\x03\xf9\x51\ +\x90\x46\xca\x08\x2a\x0d\xbe\x9d\x4e\xd4\xb8\x41\x25\xc6\x92\xf8\ +\xd8\x8e\xfa\x19\x67\xe2\x6c\xa3\x8c\x25\xb9\xb6\x02\xdb\x0f\x76\ +\xd4\xe2\x69\x00\x62\x71\x49\x5f\x93\xc4\x26\xbc\x8f\x01\x75\xd8\ +\xab\x46\xed\x84\x68\x66\x2c\x69\x4e\xf9\xb6\xc6\xde\x73\xb2\xac\ +\xb1\x48\xb0\xd7\x37\x06\x17\x07\x95\x3c\x63\xb6\x1b\xb3\x92\x3f\ +\x3c\xc4\x31\x74\xd4\xef\x4b\xf6\x41\x1f\xfb\xea\xcf\x96\x29\x43\ +\x49\xe4\x77\xb9\x6d\x2e\xf9\xc5\xc4\xfb\xc5\xec\x1c\xbb\xb0\xa3\ +\xf0\xa1\x12\xf5\x49\x64\xdf\x17\xef\xf7\x4b\xe4\x51\x5f\xc3\x43\ +\x3e\x72\x1c\x07\x4d\xd6\x72\x62\xf8\xd8\xc9\xe7\x84\x8f\x35\x89\ +\xfb\x10\x63\x51\x74\x3b\x6e\x45\xc8\x18\x07\xf2\x8e\xe0\x4c\x2c\ +\xf8\xb2\x1c\xc2\xc7\x8e\x1e\xdc\x1a\x35\x5a\xa0\x2d\x3d\x73\x98\ +\x77\x6b\x7f\x98\xcb\xea\x39\xc1\x42\x9d\x6b\x2b\xfd\xf0\xf4\x7a\ +\x1d\x78\x9e\x79\x8c\xed\x36\x83\x89\x3f\x7c\x6b\x93\xa2\x69\x13\ +\xb0\xb7\xfc\x3d\xd7\xc6\x16\xc7\x1a\xb8\xc6\x81\xd1\x94\x63\xf7\ +\xb0\xef\xfb\xc9\x72\xe0\xbc\x30\x61\x07\xcf\x6a\xc6\x26\x9e\xf5\ +\xc6\x0c\x36\x7f\x1c\x64\x7b\xb0\x10\x00\x6a\x4b\xe6\xf5\x86\x8f\ +\x63\x38\x79\x71\x38\x2b\x28\x7c\x12\x8e\x47\x42\xdb\x07\x42\x37\ +\xf9\x06\x76\xd8\x2b\x8f\xa6\xb4\x9c\x63\x60\x84\x33\x32\x14\xc7\ +\x9c\xd8\x84\x4d\xad\x32\xde\x87\xb1\xa5\x01\x34\x0e\x0f\x5f\xc2\ +\x4f\x44\xfb\xa8\x4c\x28\x64\x2f\x36\xdd\x66\x7d\xa6\x09\x2e\x99\ +\xe3\xa7\x24\xd6\xde\x4a\x1c\xcf\xe8\xd7\x3a\x54\x4e\x9e\x4d\x9a\ +\x2c\xe3\xde\x67\xa4\x1d\x4c\x56\xfb\x3f\xc6\xdc\xb6\xcd\x20\xc3\ +\x5b\xd8\xe4\xe1\x05\x58\x76\x18\x18\xe5\x2e\x3b\xb8\xf5\xc4\x30\ +\xd1\xa0\xae\x39\xf8\x66\xd3\x62\xe8\xb5\x39\x8f\xa3\xf6\xa9\xd6\ +\x16\x2f\xd7\x58\x09\x63\x9f\x78\x01\xaa\x27\xd2\x96\x1a\xab\x3e\ +\xad\x6c\xef\x10\x89\xdb\xaf\x15\x1e\x7c\x3b\xc5\xa7\x1d\x1c\x29\ +\x2f\xa6\xf7\xa9\x2d\x68\x69\x57\x91\xb5\x03\x56\xba\xcf\x3d\xc1\ +\x1e\xf9\xc3\xfd\xa5\xc5\x7d\xcf\x00\xee\x07\x73\xc9\x25\x9f\x5e\ +\xae\x3d\xec\x92\x4b\x3e\x9d\x5c\x37\xd4\x2e\xb9\xe4\x33\x96\xcf\ +\xfa\xcd\x3f\x2b\xff\x6b\x9e\x34\x9f\x64\x1f\x00\x82\xbf\x9f\xe2\ +\xfc\xd2\x83\x52\x5f\xed\xce\x9b\xc0\xdd\x1d\x63\xe2\xd0\xb0\x8f\ +\xe6\x59\x39\xe5\x49\x7c\xb1\x2e\x5d\xdc\xca\x37\x7f\xe4\xcd\xe1\ +\x46\xba\x56\xfa\x01\xd7\x15\x90\xff\xaa\x96\x40\x79\x9e\x3e\xb0\ +\x5f\x6f\x70\xf4\xc6\xa1\xcb\x75\x13\xcd\x4f\x9a\xd8\x69\x52\x27\ +\x79\xc1\xa2\x26\x16\xdc\x75\xd6\xc6\x08\x86\x75\xf0\xe0\xec\xb9\ +\xa8\xc4\xf2\xa4\x39\x7c\x6c\x54\xb4\xad\xf0\x37\xdc\x52\x0c\x30\ +\xcc\xda\xf0\xcc\xb1\xe3\x25\x2a\xdb\x6c\x62\xd1\x98\xb1\x79\x8c\ +\x3f\xab\x03\x66\xdb\x78\x9b\x3c\x2d\x53\x63\xdd\xa4\x44\x5c\x8b\ +\xac\xe3\x75\xc9\x37\xd9\x26\x11\x2d\xcc\x1d\x00\x68\x81\x3a\x76\ +\x48\x7e\xfd\x7d\x8f\x48\x6e\x11\x69\x2a\xeb\x31\x83\xc2\x68\x8a\ +\xbf\xb4\xa6\xc7\x70\xbd\xae\xf0\x46\xa0\x0a\xe3\x62\xdd\x5d\xbb\ +\x36\x15\x33\xb4\x50\x1b\xd0\x80\xc0\x67\xdc\x5e\x1f\x00\x4b\x6a\ +\x78\x75\xa0\xaa\xc9\x37\xbe\xfc\x5f\xcd\x3c\x02\xf3\xb5\xf0\xb0\ +\x69\x2c\x88\xf5\x8c\x9b\x0c\x6c\x22\xd6\x12\x8a\xb6\x1e\x1c\x8f\ +\x53\x0f\xd3\xe9\x14\x35\x37\xbd\x9c\xc2\x8d\x2b\x72\x16\x70\x98\ +\x86\xdd\xe8\xe9\x0d\x14\x99\x3e\x6d\xe3\x36\xe0\x7e\xa9\x1d\x3f\ +\xf8\xc4\x0e\xec\x80\xf7\x98\x96\xc6\x56\x9f\x72\x66\x7d\x57\xad\ +\xbe\x4e\x21\x06\xa3\x8d\x6f\xc3\x76\xf8\x15\x7c\xe3\xe3\x86\x73\ +\xb6\xd1\x7e\xd6\x6e\x0d\x74\x90\x6c\xda\xd9\x0e\x5b\xcc\x80\x8d\ +\x1d\x93\xf0\x6d\x32\x78\x46\x5a\x47\x18\xaf\x2f\xb8\x79\x47\x23\ +\x05\x8e\x31\xaf\x4f\x39\x88\x6d\x79\xd4\x44\xfb\x19\x9d\x3c\x1b\ +\xd1\x98\x89\x3a\xe6\xc5\x36\x8d\xb7\x28\xc6\xef\x44\x18\x6b\xf6\ +\xdb\xc8\x2f\x30\xf6\xfb\x2e\x90\xc1\x7e\x4f\x9b\xea\x92\x5f\x47\ +\x7c\xac\xa9\x78\xff\x98\x9d\x44\xf8\xfd\xae\x7a\xbf\x5f\x7d\x8c\ +\x6c\xe5\x2c\xf7\xfe\xc8\x5e\x7f\xec\xe1\x8e\x7c\x64\xff\x59\xa5\ +\x8d\xec\x3a\x7b\x72\x8e\x41\x03\x1d\xfc\x00\x7b\xfe\xde\x5a\x37\ +\x66\xe5\x03\x1f\x86\x94\x93\x84\xaf\x78\x02\xc7\xb1\x7c\xe3\xc4\ +\x03\xb0\x1d\x1c\xd9\xf3\x51\x6a\xd5\xc7\xc4\x57\xe6\x70\x6c\x0c\ +\x0a\x1e\x3f\x31\x23\x89\xc9\x99\x47\xec\xc6\x16\x07\x3c\xd6\x70\ +\x97\x4f\x8b\xda\x74\x3d\x9b\xe1\x14\xb9\x8f\xa3\x03\x62\x15\x91\ +\x18\x5b\x0c\x3f\xc7\xdf\x58\x0d\x05\x8d\xc8\xab\x99\x5d\xe4\xc0\ +\x63\xf2\xc7\x60\x8a\x29\x98\xb3\xb0\x9e\x77\x35\x0e\xdf\x87\x0f\ +\x38\x56\x9c\x31\x73\x04\xeb\x39\xc5\x12\xb0\x3b\xf1\x6b\xcd\xf9\ +\x12\x4c\x69\x11\xfa\xdd\x2f\x49\xf8\x84\x72\x78\x9a\x6c\xc6\x2b\ +\x5b\xcf\x64\x55\x9c\x94\x4c\x57\x28\xe7\x90\xd6\x57\x41\xb3\x88\ +\x09\xc8\xe1\x8f\xb1\xf2\x3f\x79\x27\x2d\x89\x1c\x65\x17\xb7\xc7\ +\xf5\x44\xd2\xc6\x87\x31\x19\xc8\x66\x6f\xc6\x09\x73\x27\xc5\x9c\ +\x9e\xe8\xe2\x2c\x29\x02\x77\x06\x62\x48\xfe\x46\x4e\xa5\x0d\x28\ +\x12\x2c\xdc\xe3\x57\x0a\xb6\x98\x8d\x7a\x5b\x41\x33\xe8\xd3\xb1\ +\xe4\x9b\x67\x2c\x76\x20\xf4\x6c\x17\x37\xd1\x16\x2c\x00\xb5\x0b\ +\x4f\x0c\x7b\xb6\xb3\xfb\xc5\x99\x88\xcd\xd1\xc8\x7c\xc3\x0d\x71\ +\x46\x2c\x83\xb5\xf5\x48\xbd\x78\x24\x24\x7a\xf7\x9a\xf9\x49\xb3\ +\xaa\x74\x19\x7c\x59\x15\xd9\xc5\x46\x76\xde\xf2\x47\x96\x29\x43\ +\x9b\xfb\x18\xb7\x64\xb7\xfd\x5a\x4a\x06\x1b\xff\x5e\x88\xcf\xcb\ +\xf6\x1c\xe7\x97\x94\xd3\x0a\x5c\x72\xc9\x2f\x2f\xd7\x1e\x77\xc9\ +\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\xcb\x67\xfd\xe6\x7f\xb4\ +\xf2\x3f\x74\xd2\xfd\xc9\x84\x0e\xee\xcf\xe0\xf7\xd3\x9b\x7b\x1f\ +\xf9\xc5\x07\x25\x99\xb1\xa8\xb5\xca\x18\x72\x21\x6b\xe3\xc3\xc3\ +\xe8\xc5\x3a\x24\x2e\x2a\xed\x96\xef\x4b\x6b\xdb\xd5\xa2\xcd\xcf\ +\x0c\xb6\xb3\x15\x5f\x5c\xab\xc6\x24\xc7\xb7\xb2\xec\xd1\xc8\x0e\ +\xe3\xb8\xc1\x84\x94\xe3\xd8\x7b\xc5\x58\x83\xc6\x79\xa2\xe9\x9f\ +\x9b\x47\x98\x8e\xe7\x16\x4a\x72\x26\x17\x9d\xa9\x0d\x0b\x79\x56\ +\xd1\xe1\x50\xb7\xfd\x27\x63\xe1\x76\xcb\xb5\x5a\x9c\xc6\x68\x5c\ +\x3e\x3f\xe1\x73\x70\xa2\xc7\xce\xb8\x6d\xc5\xf6\xb0\x8b\x2d\xdc\ +\x49\x75\x83\x19\x49\x20\x22\x7b\xf3\x4c\x39\x21\xc4\x7d\xc1\x9d\ +\x75\x26\xf2\xc2\xdb\xbc\x08\xb5\xfa\x7a\x79\x7e\x66\x6d\x1b\x3b\ +\xf5\xbb\x0d\xcd\x21\x37\xf9\xc6\x14\xe3\xba\x11\x9a\x63\xcc\xaa\ +\xc0\x07\x6c\xaa\xbf\xc9\x44\xcc\x44\xfe\x57\x5c\xe3\x4a\xfa\xfe\ +\xc6\x4f\x1b\xe6\x06\x19\x54\xd7\xa3\xa5\x76\x00\x47\xe8\x89\x09\ +\x9a\xf4\x09\x3c\xc5\x33\xee\x20\xc7\xe5\x39\x56\xec\x8c\xf1\x98\ +\x30\x40\x92\xe7\xb4\x85\x66\x04\x4c\x34\xc4\xb2\x67\x96\x2b\x09\ +\x37\x73\x35\x62\x69\xbd\x32\xcf\x92\x4a\x89\xa1\x31\xb4\x5e\xe5\ +\x7a\x55\x65\xe5\xdb\x7a\xbd\xc1\xd6\x01\x99\x8a\xd8\xad\x63\x65\ +\x60\xc3\x70\x62\xdb\x74\x50\xcb\x6c\xd7\xc1\x0e\x42\x3c\xe7\x04\ +\x77\xbf\xf5\xad\x4a\x9a\x6f\x64\x01\xce\xb7\xe4\x12\x0d\x66\x95\ +\x46\xee\xb1\x7d\xfc\xba\x5a\x8e\x58\xdc\xd4\x27\x87\xad\x37\xb1\ +\xa9\xe1\x60\xed\xa9\x90\xbf\xa6\x0f\x96\x3a\xb1\x0b\xd4\x74\x6b\ +\xc9\x38\x0f\xce\xcb\xcd\xce\xf3\xf0\xa3\xdc\x2e\x9d\xf8\x60\x87\ +\xbf\xd6\x21\xa0\xfc\x4e\x48\xa5\x71\x24\x21\x07\x97\x7f\x16\x80\ +\xee\x13\xbf\x49\x99\xf1\xed\xe3\x7c\xb2\x12\xbf\x9c\xfc\x8a\x5d\ +\x5d\xf2\x3b\x14\x3e\xd3\x46\xf6\x7d\xe5\x53\xbf\xa5\xf6\xdd\x1f\ +\x79\xb4\x5f\xce\xdb\xe4\x5e\xf6\xb7\xcd\x8f\x18\xd7\x41\xad\x35\ +\xb5\x67\x9d\xe5\xdb\xdc\xb6\x41\xcc\xf1\xa3\x8d\x39\x17\x43\x4b\ +\x9e\x19\xce\x1c\x8f\x44\x9a\xdc\x28\xda\x1d\x2b\xcf\x02\x7e\xf0\ +\xc2\x41\x62\xe4\x9c\xa3\x71\xea\x9b\x5b\x12\x2e\x0f\xbb\x1b\x6e\ +\x0c\x7b\x8f\x55\xef\x5c\xd7\xc2\x8d\xbf\xdb\xf7\x31\x19\x98\x67\ +\x8d\xb2\x1f\x6b\x61\x93\xdb\x76\xf7\x27\x3e\xde\xf1\x32\xee\xb9\ +\x41\x12\x3b\xf0\xb3\x4c\x16\xcd\xc4\x72\x6e\xf2\x3d\x3f\xbf\xf9\ +\x9e\x23\x9c\xce\x4d\x54\x24\xe7\x4e\x88\xb4\x9f\xf8\xc1\xe8\x23\ +\x67\x41\xc8\x76\x8c\x5d\x56\xb9\x3e\x6f\x38\x78\x23\x61\xd5\x97\ +\x43\x05\xf7\x09\xa6\x7e\x89\x78\x54\xb8\x1b\x2f\x64\xb1\xc6\xd6\ +\x42\x4b\x1e\xd6\xaa\x59\xc1\x33\x55\x92\x08\xb7\x5d\x32\x5e\x8a\ +\x4c\x7c\xe5\xfb\x18\x99\x73\x0a\xf7\x91\x24\x49\x2a\xdb\x75\x33\ +\x59\xb5\xe6\xd8\x5a\x2c\x82\x75\xf6\xdc\xa4\xf3\x2d\x82\xc8\x5b\ +\xc0\xd3\x1a\xab\x7c\xfb\x8d\xb0\x26\xc8\xd6\x42\xe4\x99\x41\x81\ +\xc8\xdd\x74\x4c\xc9\xd8\x89\xce\x1f\x3e\x25\xa5\x19\x76\x26\x1e\ +\xdb\x7e\x82\x0b\x5b\xad\xfc\x84\x36\xbb\x51\x3f\xd7\x49\xed\xfd\ +\xb8\x83\xdb\x73\x5e\xf0\x53\x8d\x53\xbd\xca\xce\xb5\x05\x2f\xd6\ +\xd2\x5e\xc6\xc6\x58\x96\x44\xb6\x9d\x41\xc6\x1f\x81\x2b\xe0\x84\ +\x8d\x14\xf4\x6b\x29\x0f\x77\xe7\xcd\xcb\xd4\xb8\x65\xfc\x7b\xde\ +\x2f\x2d\xd3\xdf\x87\xfa\x32\x67\x1f\xd8\x25\x97\xfc\xf2\x72\xed\ +\x71\x97\x5c\xf2\xe9\x44\xe7\x6c\x4f\xce\xf8\x2e\xb9\xe4\x92\xcf\ +\x44\x3e\xdb\x37\xff\xac\x38\x67\x14\xfb\x46\xb8\xf7\x7f\x33\xf2\ +\x4b\x0e\x6a\x4e\xab\xe8\x43\x36\x4f\x1d\x16\xf0\xbc\xa8\xe1\x82\ +\x65\x5d\xe0\xa2\x7f\x48\xca\x9d\x3a\x4b\x7a\xb8\xf1\x61\x87\x5a\ +\xc7\x7d\x0e\x37\x8d\x2e\x7f\x04\xfe\xa4\x98\xd5\xb8\x71\xfb\xe5\ +\x2e\x33\xf8\x5c\xf8\x4f\xfe\x8e\xdb\x67\x91\x13\x3b\x00\x0f\xe3\ +\xd6\x36\xea\xc6\x0e\x5c\x5b\x4e\x4c\xc0\xe2\x06\x5c\x25\xeb\x3f\ +\x3e\xaa\x3c\x5b\x02\x88\xaf\x89\x11\x73\x6d\x24\x27\x4e\xbe\x79\ +\xe7\x05\x05\x36\x3e\x7d\x0c\x17\xe6\x60\x31\x69\xc2\xaf\xd4\x5e\ +\xc8\x16\x8b\xf9\xd4\x9f\x69\x12\x00\xb0\xf8\x32\x16\xb5\x76\x6b\ +\xcd\xb8\x79\x9d\x9c\xa3\xc7\x7a\x0d\x50\xd5\xb9\x31\xd2\xba\xb6\ +\xb0\xb5\xf8\xb5\x50\xce\xba\xb2\x1e\xad\xad\x34\x98\x13\xe0\xa7\ +\xa2\x25\x45\x6a\xa6\x4f\x6e\xee\x01\x85\xc6\x56\xa6\x97\x12\x8d\ +\xa9\xa9\xe9\x49\x1e\xdc\x09\x39\x11\x35\x06\x3a\x31\x23\x36\x82\ +\x59\xc9\x5f\x73\x57\x68\x3d\x42\x09\x07\xf1\x5f\x91\x8b\x60\x04\ +\x5c\xcb\xb2\x25\x59\x3f\x61\x01\x17\xee\x4a\xcb\x3e\x35\x82\xa3\ +\x89\xcf\x90\xb6\xb5\x0c\x60\x99\xba\x98\x9d\xb0\x0a\xc1\xd0\x04\ +\x3d\x22\x4c\xf9\x09\x37\x4e\x04\x1b\xbc\xda\xe8\xc4\xad\xb6\xb8\ +\x3d\xfc\xc0\xf6\x16\xf7\xd0\xc1\xd0\x81\x8c\x55\x5b\x69\xe1\xa7\ +\xa0\xfc\xad\x41\x7b\x5a\xac\xf0\x6a\x6f\x3a\x69\x3b\xbe\x61\x8e\ +\x17\x03\xda\xe3\x21\x6d\x38\xca\x4d\x10\xab\xf8\x31\xd5\xe6\x19\ +\x3b\x96\x4c\xc0\xf6\xb3\x4b\xfd\x1d\xe6\x35\xfa\xed\x0a\x03\xbd\ +\x1f\xe1\x60\x77\xeb\xf6\x73\xe4\x51\x37\xc8\x2f\xd0\xd5\x25\x9f\ +\x91\xec\xc7\x86\x7b\x79\x6e\x9f\xdb\xe5\x63\x38\xc8\xa3\xfd\x73\ +\xf2\x26\x76\x5f\xc7\xb8\x9a\x6d\x8c\xa7\x14\x9c\xbd\x6e\x7d\x73\ +\x26\xe6\x83\xd5\xee\x6b\x49\xd3\x16\x91\x55\x67\x8e\xbe\xa9\x9b\ +\x63\x6c\x5c\x1d\x0b\x64\x4f\xfc\x68\x6b\xa1\x7c\x30\x4d\x27\xfe\ +\x83\x19\x99\x49\x07\x4f\x7c\xfc\x81\x63\xdb\x88\x6d\x42\x96\x70\ +\x65\xed\x3c\x3f\x13\xb7\xf5\x4c\x6c\xf7\xa7\xe6\xd2\xb4\x2d\x8e\ +\x36\x62\x6d\xa0\x8c\x83\x23\xeb\x6c\x5b\x95\x63\xaf\x76\x02\xb1\ +\xab\x0f\x9f\xe6\xc0\xc6\x72\xc4\xcf\x03\x19\x39\x63\x1b\xcf\xdb\ +\xd9\xcf\xe0\x9b\x3a\xd0\x9c\x3f\x78\xdc\x7e\x2d\xb1\xab\x1d\xcb\ +\xeb\x94\x60\x02\x60\xe9\x33\xfa\xe0\x8c\x6c\xe7\x0b\xc8\x1a\x07\ +\xdc\x9c\xa9\x25\x3f\xd2\x23\xa0\xc0\xbd\x46\x2a\x26\x32\xf8\xde\ +\x9f\xbc\xa3\x03\x2f\xfe\x83\xa1\xbd\x84\xe0\x8c\x35\x9a\x67\xe1\ +\xd5\x36\x12\x61\x9c\x2b\x8a\x6e\x8c\x66\xd5\x15\x36\x09\xa5\xc3\ +\xba\xeb\x76\xb5\x11\xec\xbd\x1f\x59\xce\x1d\x6c\xfa\x8d\x77\x30\ +\x83\xf9\xde\x98\x28\x46\x57\xe7\xc2\x03\xd8\xb3\x6f\xa5\xd6\x4f\ +\xce\x40\xc7\x66\xc1\xa8\xd5\x1a\x47\xfc\x0e\x2f\x0f\x7e\x23\xb5\ +\xa3\xcd\xc1\x1e\xcb\xe6\x81\x67\xd5\xca\x37\xf8\x20\xc7\x6a\xf7\ +\xc7\x06\x7e\x80\xbb\xde\x39\xe6\x76\xf9\x48\xd9\x1b\x56\x96\xdb\ +\x43\xee\x7c\xb9\xdd\x45\x8f\x88\x77\x53\x79\x77\xfb\xe4\x07\x85\ +\xe4\x1f\x41\xff\x68\xb9\xaf\xbb\xfb\x1f\xea\x73\xb6\x83\xdf\xdb\ +\xb5\x1f\x89\xd7\x51\xf1\x0f\x50\x2e\xb9\xe4\x63\xe4\xda\x85\x2e\ +\xb9\xe4\xd3\xc9\x75\x43\xed\x92\x4b\x3e\x63\xb9\xde\xfc\x95\xd9\ +\x10\xfb\x19\xc6\x2f\xbe\x71\x7a\x62\xfc\x83\xf2\x4f\x78\x95\x74\ +\x42\xef\x91\xad\xc3\x43\x2e\x8e\x4f\x72\x3f\x2c\x2e\x02\x9e\x39\ +\x9c\xcc\x5a\xee\x13\x18\x4b\x11\xec\x45\x02\x71\xbb\x7b\x1c\x4f\ +\xda\x97\x7e\xd3\x85\x16\x73\x5a\x6f\xea\xae\xfa\xa3\x9d\xbb\x25\ +\xe1\xbf\x57\xeb\x2b\x32\x16\x93\x24\x31\x9c\xef\xe7\x0a\x00\x26\ +\x7d\x30\xfc\xea\xa8\x03\x4f\x2e\x1d\xf0\xa4\x39\x62\xb6\xaa\x73\ +\xa3\xcd\x40\x79\xb1\x1d\xb7\x02\x88\xef\xdb\x42\x1e\x34\x6e\x34\ +\xcd\x8c\xb5\x81\x95\x13\xe5\x80\xc3\x6c\xcf\x7c\xbb\x2b\x62\x7d\ +\x34\x11\x6d\xa3\x35\x0e\x4f\x54\x48\xd4\x15\xc0\xb0\xbc\xc9\x66\ +\xbb\x49\xe8\x2f\xb5\xed\x4a\x29\xe1\x3d\xfb\x0d\x39\x8a\xcd\x78\ +\xd4\xa6\xa4\x2d\xe5\xe5\x46\x57\x7e\xda\xc8\x15\xe4\xb7\x7f\x22\ +\x1d\xeb\xe9\x62\x9c\xfd\x51\xa0\x73\x9d\x0c\xdc\x1c\x7c\xd7\x22\ +\x9e\x09\x9c\xf7\xfc\xb5\x37\x45\xcc\xa3\x24\x0e\x24\x2d\x28\x79\ +\xbb\x70\x33\xcb\x37\xd5\x64\xcf\x7a\x86\x5a\x26\xeb\x82\xa9\xa5\ +\xef\x8c\x71\x96\x64\x1d\xc8\x61\xfd\xb8\xc2\x27\x48\x1e\xbc\x53\ +\x96\x9b\xac\x9f\x16\x4f\xc0\x70\xb3\x2d\x01\xc3\x16\x72\xfb\xd7\ +\xc4\x47\xe3\x3c\xfa\xb1\x08\x2a\xea\xd6\x02\x36\xb5\xeb\xd3\x54\ +\x45\x7a\x53\x8d\x4e\x3d\x01\x04\xb4\xea\x32\x86\xc9\xcd\x78\xf6\ +\x7a\xcb\x76\x20\x3e\x79\x8e\x6e\xb1\x98\xd2\xac\x58\x6d\x64\xf0\ +\x65\x27\x53\xf6\x59\x1f\x1c\xf4\x60\x9b\x6f\x28\xf8\xfa\xd6\x5c\ +\x08\x45\x25\x36\xb8\x21\x87\x0d\x4e\x1c\x0c\x61\x8c\xe3\x07\x1c\ +\x1f\x95\x3d\xc9\x46\xc2\xce\x8f\x0e\x09\x07\x55\xdb\xf1\x03\xdf\ +\x0c\x4b\x6a\xfe\x96\x85\xf1\xce\x08\x77\x1b\x19\xff\xbc\x4e\x3f\ +\x5b\xa6\xdc\xfd\x86\xb9\x1f\xca\x25\x97\x7c\x8c\xf4\xd8\xf4\x50\ +\xf6\x7d\xea\xc7\xc8\xa3\xbc\x7d\xbf\xbd\xdf\x3f\x3f\x84\x4d\x9d\ +\x15\x97\x71\x37\xe6\x47\xe9\x23\x8b\x69\x92\x9a\x1f\x24\xe7\xa8\ +\x3a\x32\xc7\x6c\x63\x1c\xe3\xdc\x7f\xfd\x8d\xe9\x73\x09\xd7\x6d\ +\xc4\x4a\x0d\x5a\x79\xcb\x9f\xf8\xc4\xc6\xae\xcc\x39\x89\x6d\xb4\ +\x9f\xf5\x57\xac\x88\xfc\xd1\x67\xcc\x56\x74\x40\xe7\x06\x8f\x6d\ +\xf4\x84\x0d\x75\xc7\xaa\x8b\x5b\xc5\x6b\xac\x7e\x6d\x7b\x36\x27\ +\xd6\xb6\x98\xd5\xbc\x06\x92\xa9\xb5\x00\x09\x16\x47\x47\x23\x6a\ +\xe6\x50\x48\x7f\x0b\xc7\x3f\x35\x41\x8f\x28\x52\x5b\x79\xc1\xfd\ +\xe2\xd8\xc2\x67\x18\x16\x17\xaf\x46\x26\xad\xe0\xfa\x29\x42\xaf\ +\x58\x49\x93\x63\x96\xf7\x88\xf2\x91\x09\x86\x3f\xde\x96\x12\xd9\ +\xb6\xc3\xbd\xc0\xcd\xc1\xaf\x04\x8e\x93\x98\x0e\x34\x84\x23\x6c\ +\x1d\xfb\xd9\x3e\x63\x5b\x62\xbb\x5d\x78\xc6\xb3\xcb\x91\xcf\xba\ +\xa2\xb5\x2c\xd2\x18\x1b\xb8\xf7\x69\x19\xbb\xf9\xf8\xd0\x2d\xb2\ +\x1b\x8e\xa2\x1d\x6b\x62\xc7\x98\xa8\xeb\x9e\x5a\x3f\xe1\xb1\xa5\ +\x97\xdd\x13\x30\x50\x61\x7e\x24\x64\x0e\x8f\xc4\x00\x7a\x2e\x53\ +\x74\xc5\xfb\xd3\xd3\xb6\x8d\x8d\xc4\x3a\xd6\x71\x62\x9b\xdf\xd8\ +\xd4\x8d\xdc\x63\xcd\xa3\xf1\x89\xaa\xbd\xa3\xcd\xd3\xf6\xde\x57\ +\x9e\x87\xbf\xf7\xb1\xb7\x56\xeb\x65\x29\x86\x6c\x2f\xd5\x86\x1e\ +\x72\x0f\x0e\x7f\xcb\x7b\x22\xc4\xee\x65\x72\x7e\xae\xec\x7d\xee\ +\xf5\x58\x71\xf6\xff\x0f\xf5\xb3\x38\x7b\x91\x3b\x99\xf7\xd0\x74\ +\xf4\x01\xea\x25\x97\xfc\x90\x5c\xbb\xcf\x25\x97\x7c\x3a\xb9\x6e\ +\xa8\x5d\x72\xc9\x67\x2c\xd7\x9b\x7f\x93\xbb\x73\xd5\x5f\x67\xe3\ +\xd0\xc9\xde\xe1\xa3\x53\x9c\x7f\xd6\xab\xa4\xb1\x30\x9c\xbd\xfb\ +\x7d\x78\xf7\x87\x0e\xbb\xf7\x09\xcf\x09\x9c\x29\x26\x7b\x52\xee\ +\x6a\xc6\xa5\x61\x11\xbf\xf1\xe3\xb0\xa5\x4b\xff\xe1\x54\xa3\x72\ +\x7d\x1f\x6c\x71\xe7\xa2\x7f\x6a\xd8\x69\x3c\x66\x30\xdb\x03\x80\ +\x9c\xc7\x79\xe2\xf0\x9c\x7a\xd2\x99\x24\x69\xdc\xb9\xb5\xb1\xaa\ +\x0f\x7f\xb3\xad\xf0\x0f\xde\x1a\xb7\xd4\x7b\xdf\x48\x1b\x3f\xb1\ +\xc4\xb5\xf0\xc4\xae\x8f\xca\xab\x30\x98\x9d\xf8\x9b\xd8\x6b\x9c\ +\xd6\x6b\x29\x7f\x52\x52\x64\x22\xd2\x7b\xe0\x09\x9e\xea\x53\x63\ +\x71\xa5\x6b\x69\xf3\xcf\xb7\xc4\x9a\x57\x71\xde\xd1\x18\xe0\xbf\ +\x6c\x70\x5b\x8a\xed\x69\x2d\x98\x7b\x62\xfc\x54\x9f\x59\x72\x7c\ +\xfd\x29\xdb\xe5\x50\xea\x8b\xfb\x67\x01\xdf\x37\x2f\xeb\xe3\x1e\ +\x7d\x23\xef\xa5\x79\x3c\xb8\x07\x43\xcc\xf4\x29\xe2\x88\x44\x2e\ +\x37\x82\x56\x1f\x2a\xec\xbf\xa8\x5e\x77\x9f\xb4\x10\x60\x71\x6a\ +\xc6\x65\xa0\x17\xc4\x9e\x58\xd8\xe2\x99\xcc\xea\x0d\x32\x84\xf8\ +\x2c\x01\xfc\x9c\xc2\x9e\x68\x91\x1f\x8b\x9b\x84\x0d\xb7\x71\x1a\ +\x2b\x40\x94\x1b\x88\x88\xc1\x9d\x58\x9e\xe5\xc0\x3d\xb1\x87\xed\ +\xe1\x96\x20\x1d\xf3\xf0\xb1\x1d\xe7\xb9\x7c\x47\x1b\xb7\x61\x3b\ +\x6e\xed\x65\xda\x32\x36\x3a\x96\x83\x8b\x47\x83\xca\x84\xa3\x9b\ +\x60\xd5\x79\xda\x91\x11\xff\x8c\xb3\xfd\x87\x2f\xcf\x1c\xfc\xc4\ +\xf2\x8c\x8e\x34\x56\x3f\x35\x6c\x48\x66\xd2\x0a\x39\x38\x66\x61\ +\xaf\x60\xb5\xfc\x40\x8b\x78\xc8\x50\xb4\xf8\x1b\x88\x7e\xbd\x7e\ +\xab\xf2\x60\xfc\x16\xc6\xfc\x5c\xec\x67\xca\x7d\xd9\x7d\xf3\xfc\ +\x42\x5d\x5e\xf2\x2f\x2e\xcf\xbd\xc7\x66\x7f\xfa\xa1\xb7\x20\xbc\ +\xe7\x38\x7b\x8d\x9d\xf7\xc8\x1e\x2e\xf2\xc1\x7a\x43\x14\xe9\x39\ +\xde\x33\xf2\x94\x1e\xc4\x1f\x35\x87\x1b\x29\xb0\x43\xeb\x73\xaf\ +\x12\xca\x30\x36\x2e\x18\x35\x27\x86\x72\x2a\xb8\x78\x07\x31\x39\ +\x6a\x6c\x6d\xaf\xc5\xf8\x41\x4c\xd0\x67\x62\xe3\xe6\x4d\xee\xc1\ +\x59\xfd\x6d\x76\xa2\x77\xfe\xe4\x63\xea\x60\x9d\x10\x11\x03\xd1\ +\xb4\xc3\x73\xb8\x9a\x76\x6c\x4c\xc6\x54\x27\xca\xad\x25\x48\x7c\ +\xdb\x79\x6a\x53\x0c\xb6\xb7\x1c\x91\xc6\xdb\xa4\xf5\x1c\x97\xe9\ +\xff\xd9\x6b\x29\xae\xf8\xfe\xaa\x8c\x9f\xb3\x9b\x44\x8e\x0a\xb2\ +\x7c\xd0\x0c\x82\xac\x4d\x1a\x25\x91\x35\x3b\x84\xd7\x6d\xaf\xbe\ +\x4b\x32\x4c\xd3\xe3\xf0\x9e\x8a\x2b\x38\xe4\x11\x54\xc6\x22\x3a\ +\xeb\x40\x9d\x8e\x5f\xcd\x9c\x53\xb5\xc2\x21\x1b\x76\x8e\xcc\x1e\ +\xaa\x76\x0b\xec\xfb\xed\xb2\x51\x1a\x02\xc7\x75\x46\xb2\x73\xce\ +\x12\x7c\x6f\x0f\x19\x74\xf0\xea\x71\x53\x78\xc5\xd7\xf9\xc5\xf8\ +\x6e\x91\x32\xb2\xb2\xe5\xd9\xf0\x36\x20\x68\xc6\xc4\xcd\x56\x6b\ +\x17\xbd\xe1\xe4\xd8\xcd\xb9\xe3\xd1\x27\xf6\x9c\xab\xe8\x5c\x71\ +\xc6\xb6\xe7\x1a\x18\x1b\xa9\x55\x0e\xb2\xc7\xa2\x0e\x24\x12\x6f\ +\xad\xc3\x96\xe1\x58\x9e\xb6\x43\x99\xe8\xc6\x73\xcd\xe5\x1d\x94\ +\x31\x66\xd7\xd9\xc4\xb5\xba\x4e\x7b\xea\x13\x79\x90\xfb\x50\xa6\ +\xde\xaf\x2d\xb3\xdd\xb6\xcf\x91\x27\x02\x87\xf8\x70\x3f\x24\xae\ +\x53\xde\x47\xd0\x2f\xb9\xe4\x39\xb9\x76\x9f\x4b\x2e\xf9\x74\x72\ +\xdd\x50\xbb\xe4\x92\xcf\x58\x3e\xdb\x37\xff\x76\x4e\xba\x64\x36\ +\xc6\x8e\xff\xaa\x1b\x68\xef\xec\xb9\xc1\x7d\x48\xc8\xf9\x39\x03\ +\xfe\x31\xf9\xe2\x3e\xd9\x4e\xcd\xed\x05\xa3\x5d\xeb\x67\x6a\x0e\ +\xe7\x89\x6c\xe0\x32\x65\x60\xb3\xbc\xd0\x25\xba\x35\x7e\x41\x3f\ +\xb9\x70\x17\x28\x9b\x9f\x49\xf4\xa5\xbc\x79\x13\xdf\xf8\xe5\x25\ +\x30\x93\x02\xd8\x3c\xf1\x32\x38\xe8\xc7\x30\x5b\xaf\x9e\xd5\xe4\ +\x26\x50\x5f\x76\xfd\x75\x78\xdd\x79\x13\x33\x6f\x74\xec\x78\x7a\ +\xc8\xf6\x0d\xa2\x62\x7e\x36\x17\xcd\xc3\xab\xe5\x1b\x6d\x50\x82\ +\xd9\x66\xe2\xc5\x3e\x32\xd8\x52\x11\x3b\xc3\x91\x6c\x06\x26\x17\ +\xfd\x2b\xfa\x84\x24\xcd\x6b\x7c\x04\x64\xee\xb1\x51\x99\x00\x9a\ +\x7f\x4c\xcf\x42\xd6\xce\x29\x20\xc1\xa9\x12\xc6\xc5\xbb\x57\x4d\ +\x9a\xed\x00\xc6\x74\xc2\x91\xe2\x69\x33\xd9\xf2\x0a\xd2\x8b\x7b\ +\xf2\xd8\x3d\xc5\x50\x1f\x0f\x21\x93\x31\xd5\x12\x9e\x5a\xe2\x63\ +\xb4\x0e\xfc\xe3\xe2\x1f\x2b\xf9\xe6\xd8\xa8\xe6\xe2\xd7\x7c\x37\ +\x7a\x88\x7b\x77\x41\x9c\x08\xf8\x46\x5d\x3c\x3b\x91\x12\x8c\x78\ +\x7d\x33\xa6\x30\x6a\x7b\x7c\xc9\x2d\xc5\x84\xe1\xd0\x53\xcc\x8c\ +\x18\x1e\x8f\x60\x51\xa7\xdf\x23\x5a\x1d\xcc\x78\x9c\xd5\x6f\x7b\ +\xc9\x32\x66\x2b\x2d\x7e\x31\x8f\x01\x4d\x4c\x76\x62\x06\x86\xdd\ +\x27\xcd\x80\x6e\x96\x1d\x55\x4c\x32\xfd\x8d\xf6\x6b\x1f\xa0\x99\ +\x6a\x19\x3e\x71\x8d\x7d\x62\x96\x8d\x8b\x81\x37\xe3\x5b\x63\x4b\ +\x63\x99\x3e\x9c\xb7\x62\x5a\x86\xd2\xf8\x6a\x6d\xec\xdc\xca\xd4\ +\x79\x24\xa4\x29\xce\x38\x8e\x7d\xf0\xb7\x28\xac\x43\xb6\xd6\x63\ +\xf9\x50\xec\x67\xca\x87\xca\xfe\x82\xdd\x5e\xf2\x2f\x2c\xf7\xef\ +\xb5\xe7\x76\xef\xa1\x3d\xda\xc7\xee\x4a\x9c\x64\xea\x21\x7b\xee\ +\x87\xea\x7d\xb4\x28\xf9\x27\x7e\x56\x38\x4d\xe9\xa7\xe1\xe5\xa0\ +\xd1\x92\x5b\xdd\x83\x70\x82\xed\xec\x05\x24\x36\xd7\x98\x7c\x44\ +\x3d\x04\x7c\x0d\x39\x36\xce\xe2\x34\xef\xd4\x6e\xb5\xd2\x4a\xdb\ +\x9c\x3c\xf4\x8e\x05\x3d\x6a\x4d\xfc\xf0\x57\x9f\xd6\x58\x67\x3f\ +\xd4\xe2\x5b\x1e\x36\x9f\xd0\x47\x86\x96\x3c\x57\x33\xf6\xf9\xe6\ +\xdf\x8a\x44\xe8\x47\xeb\x9e\x53\x4d\x35\xb5\xe7\x77\x01\xd8\x2c\ +\x39\x5f\x89\xbf\xfa\x22\x22\x65\xab\x35\x06\x9f\x71\xfa\x3c\x50\ +\x58\x72\x8f\x0a\x47\xeb\x2a\xcb\x46\xa8\x3f\xc3\xdd\x65\x1d\xf2\ +\x8f\xc1\x9e\x24\xae\x5a\xef\x17\x78\xd8\x28\x67\x55\x32\xfa\x19\ +\x09\xd2\xa1\xae\x71\xf8\xb0\x28\x23\xbc\x43\x72\xb8\x5c\xac\x65\ +\x21\xf6\x4a\x4e\x24\xd6\x2e\x07\x3e\x52\x24\x85\x55\x4c\x3e\xe6\ +\x1a\x7f\xf0\xb8\xc3\xd5\xb2\x42\xc7\x38\x22\x9c\x60\x48\xd6\xfa\ +\x52\x6f\x12\x46\x12\x9b\x73\x88\x28\x9a\xfa\xd5\x0d\xc4\xf7\xb3\ +\xb5\x25\xc9\xbd\x8f\x07\x4b\xa8\x55\xac\xb1\x92\x4b\xcc\xbe\x39\ +\x2f\x8b\xde\xd5\xf5\x2a\x35\x7f\x5a\xf0\x58\xd5\x4f\xb1\xd5\xe6\ +\x79\xb7\x65\x0e\x7c\x5a\xc4\x96\xeb\x34\x12\xc0\x36\xb2\xf2\xef\ +\xf0\x27\xd2\xcd\xbb\x86\x34\xf2\x81\x94\x27\x2f\xc9\xee\xff\x56\ +\x64\xc6\x7f\x3f\x56\x8b\x8c\x87\x6f\x9c\x1f\x90\x87\xb5\x2e\xb9\ +\xe4\xc7\xcb\xb5\xfb\x5c\x72\xc9\xa7\x93\xeb\x86\xda\x25\x97\x7c\ +\xc6\x72\xbd\xf9\x37\xf1\x09\xed\x9d\x46\x1e\x61\xbf\xb8\x4c\x87\ +\x23\xbf\x5a\xc7\x3f\x41\x3a\x4e\x6f\x1f\x8d\xf3\xc9\xb6\x9a\xf5\ +\xb8\x5b\x87\x13\xe7\xb1\xec\x14\x2e\xe0\x8f\xa3\x55\x8d\x51\x0a\ +\x70\x2d\xe2\xc3\x19\x18\xda\xbe\xa3\x34\x27\xdb\x6a\xf8\x31\x2d\ +\xe3\x37\xbc\x7c\xcb\x8a\x49\xdb\xac\x8f\x9a\xd8\xe2\xcf\x5f\x49\ +\x17\xb3\x5d\x8e\x1e\x9e\xec\x10\x6e\xb5\xfb\xc5\xcc\xb5\x2d\x9d\ +\xfb\x63\xc6\x52\xab\x31\xee\x38\xb1\x55\x7c\xe7\xa9\xb1\x0a\xb6\ +\x27\x68\xc8\x37\x10\x85\x2c\x13\xa3\xdb\x20\xeb\x8f\xc3\x53\x4d\ +\x56\xfe\xe0\x56\xf6\x49\x1a\xa2\xe3\x8f\x9d\x3e\x83\x44\x82\x0f\ +\xe6\x7e\xea\x1f\x7d\x96\x2b\xd3\x37\xf2\xda\x37\x2f\x28\x13\x49\ +\x2f\x4d\x26\x89\x89\x03\xd5\x57\x3c\x56\xc4\x13\x4e\xce\x71\x09\ +\x18\xab\x24\xc2\x45\xbd\xc7\xe7\x0d\xa9\xcd\xe9\x7e\x20\x60\xe8\ +\xf9\x3e\xb7\xfe\xec\xa8\xf0\x0b\x11\x3c\x06\xfa\xf4\x26\x4e\x05\ +\xa4\x59\x5a\xa6\x66\xb8\xc1\x89\x44\x96\x6f\x48\x56\xb5\x17\xdb\ +\x11\x9b\xea\x73\x4d\xf6\x50\x53\xe4\x54\xae\x68\x1c\xf9\x76\x93\ +\x30\x73\x05\x39\x58\x06\xaa\x18\xfd\x22\x2b\x1b\x30\xe4\x60\xac\ +\x93\x9d\x61\x80\xd9\x30\xb6\x73\x3d\x06\x43\x25\x4c\xce\xf8\xf6\ +\x84\xf1\x62\x60\xd9\x2d\x16\x22\x4d\xb1\xe8\x5a\x0d\x6d\xbc\xf1\ +\xad\xdc\x9e\xf4\x81\x07\x5b\x7e\x31\xbf\x3e\xcb\x6e\x0c\xd5\x9b\ +\x83\xe0\x23\x66\x2c\xbc\xbe\xdd\xd1\x23\x75\x54\x6b\xc1\xc3\x7b\ +\x4e\x9e\xe4\xcf\x2b\xf2\x5b\x96\x0f\xac\xcf\x8f\x12\xd6\xf5\x47\ +\xd6\xfa\x31\xf4\x9f\x50\xfe\x92\x4b\x8e\x1d\x47\x7a\xdf\x87\x3e\ +\xb4\x3f\x11\xfb\x18\xb9\xaf\x75\x5f\x1f\x19\x7c\xe4\x91\x7f\x92\ +\x02\xfb\x41\x6c\x97\xbd\x0f\xe4\x9e\x46\x6c\xe2\xe5\xba\xd4\x9e\ +\xe7\x1c\x35\xfd\x9c\xb4\x4c\xdc\xb1\x47\xf2\x34\xc0\x31\x70\x87\ +\xed\x2f\x91\xb7\xdc\x18\xab\x2d\xbe\xf8\x22\xd6\x92\x60\x8d\x3f\ +\x28\xb5\x36\xdb\x6a\x18\x68\xe2\xf1\xdc\xda\x21\x12\x1f\x95\xdb\ +\x52\x18\x07\x67\xc5\x8b\xe3\x1d\x9c\x1c\xe3\x6d\x35\x66\x1e\xad\ +\x15\x4d\x96\xa0\xc8\x58\xc5\x8e\x80\x24\xce\x62\x4b\x1d\x99\xe8\ +\xf4\xb7\x5c\x7b\xbb\x8f\x0c\x32\x40\x5e\xbf\x23\x5c\xeb\xfe\x75\ +\xf4\xf9\x53\xb8\xf3\x8a\x1f\x7d\x8f\xc8\x57\x70\x9d\xf6\x04\x5c\ +\x02\x3f\x47\x5a\xf2\x64\xb7\xde\xf1\x8d\xbe\x7b\xd9\xc1\x73\xdf\ +\x08\xb6\x19\x3d\xbe\xba\x9c\x1b\xf9\x2b\x38\x32\xc7\x60\xb5\x31\ +\x16\x32\x40\xce\x53\x48\x3a\x74\x20\x35\xa6\xa8\x69\xcd\xb5\xdb\ +\x37\x76\xd4\x42\xb0\xe3\x2f\x7c\x6d\x3f\x2d\x79\xc6\x76\x3b\xc0\ +\xee\x37\xd3\xa1\xe0\xc1\xe6\x64\xc9\x4f\x49\xfc\x39\xc7\x0a\x37\ +\xc1\x85\x59\x6b\x51\xff\x98\xe6\x38\x14\x3f\x8e\x0d\x10\x9b\xa9\ +\x13\xc4\xad\xd5\x60\x5b\xbc\x7d\x8c\x94\x7d\x50\xb5\xda\xeb\xfc\ +\x6f\xc9\x62\xa5\x6d\xf8\xe8\xf3\x5e\x0e\xce\xf9\x35\x8d\x38\x44\ +\xf3\x5c\xfa\x23\xd9\xeb\x90\xf7\xa0\xee\x6f\x42\x4e\x63\xab\xb3\ +\x6f\xcf\xf5\x7e\x15\x66\xf3\x2e\xfe\x9c\xc0\xfd\x08\xda\x25\x97\ +\x7c\x48\xae\x5d\xe8\x92\x4b\x3e\x9d\xe8\x3c\x71\x3e\xd1\x2f\xb9\ +\xe4\x92\xcf\x4d\xae\x37\xff\x8f\x90\x7f\xca\xc6\xfa\x3d\xbd\x42\ +\x3a\x3d\xcb\x33\xa3\xbe\x3f\xb4\x3c\x59\x95\xc5\x8c\x89\xe0\x6e\ +\xf0\xc2\x47\x56\x8d\xbb\x62\x76\xd5\xdc\xf5\xb9\x0e\x6f\x4f\x70\ +\xb7\xb6\x2d\x98\xbe\xd9\xf0\x22\x39\x31\x0f\xd9\xf2\x3d\xa1\x50\ +\x37\xf5\xb7\x98\xdd\x60\x46\xeb\xa3\x72\x13\x07\x37\x71\xdb\x34\ +\xef\x89\xc7\x07\x39\xd5\x40\xf3\x2c\xe6\x5b\x3f\x0b\x4b\x20\xf5\ +\x12\x27\xb0\xfe\x5f\xd8\xb4\x8d\xa7\x8d\xcc\xfc\x40\x26\x8a\x32\ +\x49\xb2\x56\x37\x81\xc3\x9e\x4c\xb8\xcb\xe5\xf2\x99\x2c\x0a\xe1\ +\x23\x31\x26\xd5\x32\x63\x53\xcc\x7d\x62\xba\x46\xb9\x98\xb6\x90\ +\x10\x72\x3d\xf9\xd2\x94\x63\x8a\xa9\x01\xe7\xa9\xef\x95\x68\x52\ +\x60\x2d\xc7\xf8\xdc\x34\xc0\x58\xfb\x13\x90\x83\x8f\x28\x3e\x3f\ +\xc5\x37\x5b\x60\x6a\x67\x33\xb8\x31\xee\xd4\x50\x6a\x12\xc3\x53\ +\x33\x65\xeb\xa3\x3c\x96\x58\x6e\xf9\x79\x9e\x55\x42\x8d\x6f\xa2\ +\x2d\x0e\x6a\x55\x15\x4f\x39\x33\x10\xdf\x45\x83\x10\x65\xb8\xa1\ +\x16\xc0\xd0\x53\x40\x79\xc8\x31\x11\x42\x2c\x75\x3d\x7f\x33\x1c\ +\x30\x38\x7e\x86\x13\xc9\xb6\x08\x86\x2f\xcb\xbf\x8f\x19\xdb\xcf\ +\x72\x7d\x33\xcd\xdb\xc8\x5e\x4a\xac\x3a\xc1\xf1\xd6\xb7\xcd\x06\ +\xb3\xd3\xc9\x25\xc9\x5e\x2f\x7d\xdb\xf3\xd3\x96\xe2\xc6\x67\x9d\ +\x07\xe7\xb1\xf9\x36\xfc\x5c\x84\x69\xa4\x8a\xa2\x5d\x6f\x04\xbf\ +\xe6\x70\x91\x3d\xf7\x5e\x80\x9f\x09\x6d\x85\x7f\xe3\xc2\x0a\xac\ +\x9d\xa1\xfa\x9f\x20\x1f\xea\xda\xaf\x77\x35\xf2\x4f\x1c\xe6\x25\ +\xbf\x77\xd1\x4e\x34\xfb\x13\xb2\xdb\xbb\xcc\xbe\xf6\x53\xe4\xbe\ +\xde\x7d\x7f\x8f\xe4\x07\xf7\x69\x08\x4a\xfe\xd8\x71\x95\xbe\xf4\ +\x9d\x18\x1a\xfc\x51\xdf\x93\xbb\xcb\x3d\x7f\xd5\x5d\xc6\x92\x20\ +\x67\xdc\x87\xe1\x87\xdc\x62\x8d\x1f\x8c\x58\x07\x52\x7f\x0e\xf4\ +\x71\x16\x2b\x22\x5f\x66\x50\x1b\x9b\xbd\x71\x6d\x8f\x87\x3f\x3a\ +\x18\xde\xfa\x65\x80\xaa\xdc\x34\xca\x06\x4d\x2e\x7e\x83\x6e\xa3\ +\x11\xec\x1c\x8a\x27\x96\xf6\xf4\x72\xac\xf1\x20\x26\xa7\x0f\xce\ +\x05\x7d\x30\x2a\xdf\xa4\x30\xd3\xf6\x65\xed\x3a\xac\x9a\x32\xce\ +\x87\xff\x44\x27\x3e\xc3\x8f\x9f\x3c\x8b\x83\x31\x77\x81\x73\xc8\ +\x4e\x3a\x70\xa3\xf7\xeb\x71\x92\xf4\x16\x62\x7c\x54\xd0\x80\x41\ +\x22\x8b\x46\xeb\x6d\xa0\x45\x20\x16\xb1\x04\xdd\xdc\xb5\xd2\x79\ +\xd6\x6f\x4b\x8d\xad\xef\x11\x2c\x96\xd9\x0a\x73\xee\x11\x19\xfb\ +\xc0\xb0\xb8\x11\x36\x63\x98\x31\xaf\xd6\x46\xbd\xd6\x8a\x16\x33\ +\xee\xf2\x8d\x05\xa0\xc5\x38\xce\x69\xac\xca\xcb\x33\xf6\x6e\x35\ +\x6e\x1d\x78\x6d\x1c\xbb\xa7\x3a\xb6\x4a\xab\xbf\xd4\xc4\x77\x79\ +\x8a\xa5\xcc\x3d\x1e\xff\x01\xfb\xa4\x4e\xe2\x31\x46\xd6\xd0\x46\ +\x76\x7f\xbd\x5e\x3f\x52\xa6\x3e\xb9\x5b\x5f\xbf\x29\xd9\x57\x7c\ +\x3e\x6b\x9e\x6c\x8c\x3b\xf9\xa9\xdb\xe3\x92\x4b\x3e\x42\xae\x5d\ +\xeb\x92\x4b\x3e\x9d\x5c\x37\xd4\x2e\xb9\xe4\x33\x96\xeb\xcd\xff\ +\x91\xf2\x4f\xdf\x50\x73\x66\xfd\x43\x03\xf9\x18\xce\xaf\x20\x1f\ +\xbc\x50\xd0\xf8\x66\x88\xa7\xa1\x4e\xce\xdd\xf8\x9f\x81\x1f\xca\ +\x7e\x38\xb3\xb9\xfb\xc7\xc5\xff\xda\x4a\x0f\x0f\x7f\x07\x76\x84\ +\x6b\x24\x69\x54\x45\xfe\x19\xd8\xfc\x3d\xa6\x5e\xed\xf4\x36\x91\ +\x6d\x07\x6d\x0f\xcf\x0c\x7c\x7f\x6d\xaa\xdf\x9e\x92\x63\x6c\xe3\ +\x61\xf8\x67\x0b\x31\xeb\x37\x68\x1e\x28\x4f\x9a\xaa\x35\x84\x6c\ +\x52\x0c\xee\x60\x6c\x13\x33\x95\x96\xd9\xa4\xc9\x4b\xf0\xb5\x94\ +\xb7\x22\xf6\x0b\x22\xab\x50\xa7\x77\xe4\xe6\xe7\x8b\x92\x43\x74\ +\x72\x19\xf3\x60\x47\x50\x59\xad\x01\xc4\x44\x17\xbb\x56\xd7\xc8\ +\xeb\xee\xed\x53\x1f\x31\xbd\x33\x48\xa9\x8d\x1d\xed\x50\x6b\xe3\ +\xe5\x66\x1a\xb1\xd4\x3f\x06\x30\x02\x90\x11\xe7\x7f\xae\xe5\x46\ +\xcc\xda\xbd\xcd\x57\x63\x7f\xc0\xc2\xb4\x13\xb2\x2f\x7b\x51\x30\ +\xb6\xa0\x04\xf3\xe0\x30\x81\xa3\x0a\x06\xe1\xed\x83\x5a\x4c\x7b\ +\x89\xc5\x9e\x76\xd8\xc7\x38\xb5\x2d\xb4\xb8\xa6\xdd\xde\xcc\x2a\ +\x21\xb1\x08\x5b\x8d\xc9\x3d\x6f\x3d\xc7\x93\x7b\x08\x3e\xca\x5b\ +\xa5\x10\x5c\x1b\xd5\x91\xd4\xc0\xb0\x65\xdd\xca\x11\xe3\xe5\x58\ +\x86\xc7\x12\x70\xb1\xa5\x06\x19\xe7\x98\x58\x72\x63\x39\x8d\x75\ +\xd9\xd1\x07\x7f\xa4\xce\xc2\x4e\xc1\xa7\xf2\x03\xe1\xdf\x97\xfc\ +\x86\x56\xe6\x7e\x28\xdb\xee\x6d\x39\x76\xce\x4b\x2e\xf9\x89\x32\ +\x3b\x55\xf5\x1c\x9b\x66\x9f\xda\xf7\xb1\xb1\x3f\x46\xf6\xfc\xb1\ +\x91\x8f\xad\xb1\xe7\xec\xb2\x8f\x67\xc9\x47\x74\xb0\xc3\xcf\xd5\ +\x7e\x24\xda\x1e\x7c\x36\xaf\x74\x19\xa7\x8f\x52\x02\xf5\x73\x8c\ +\x8d\xfd\x68\x18\x73\x9c\xb9\x97\xa7\x54\x21\x05\x8f\x58\xac\xbc\ +\x3c\x07\x8a\x7d\xe2\xd0\x41\x5f\xc3\x23\x22\x6b\x5e\xd7\x65\x13\ +\xcd\x78\x38\x5f\x8a\x48\xcb\x8e\x17\x3d\x37\x87\xdc\x26\x20\x91\ +\xb7\x72\x48\xd9\xec\x83\x44\xc0\x87\x69\x74\x24\xda\x2e\x1b\xce\ +\xcf\x62\x5b\x3b\xf8\x29\xd5\x72\x38\xd3\xe7\x7d\x7f\x7e\x71\xac\ +\xf1\x03\x8f\x4c\xc6\x53\x01\xcb\x11\x75\xa2\x87\xfd\x88\x2f\x79\ +\x3a\x38\xc9\x31\x9a\x84\xf7\x38\x36\x28\xb2\xdb\xf7\x72\xe0\xb1\ +\xc6\x97\xf6\x36\xdb\xfc\x69\xf7\x1d\x52\x48\xb0\xda\xee\xaa\x5c\ +\x69\xc6\x14\x77\xfb\xc3\x1d\xc8\xa1\x74\x68\xeb\xec\x22\x42\x42\ +\xfb\x3d\x71\xe3\x59\xc7\xd8\xf3\x64\xe3\x4c\xad\x74\xda\xb8\x03\ +\x82\xa4\xd5\x5f\xce\x4d\xb4\x38\xe8\xe6\xdc\x0e\x4e\x2d\xec\xec\ +\x54\xc6\x5c\xbd\x71\x2b\x64\xd5\xb5\x63\x28\xb4\xc5\x50\xec\xb0\ +\x23\xf7\x7e\x64\xcf\xf9\x51\xd2\x31\xdc\x8b\xab\xd1\x7c\x4c\xd9\ +\xfb\xfc\x8f\x1d\xca\x83\x7e\x7f\xb3\xb2\xbf\x0e\x7e\xbf\xd4\x7f\ +\xb4\xae\x5b\xf8\x64\x5f\x72\xc9\x27\x94\x6b\xb7\xba\xe4\x92\x4f\ +\x27\xd7\x0d\xb5\x4b\x2e\xf9\x8c\xe5\x7a\xf3\xff\x08\xf9\x4d\x6c\ +\xac\xfb\x41\x70\x4a\x34\xd8\x7e\x06\xfe\x5b\x15\x8d\x71\x3b\x8b\ +\xf3\xe8\xf7\x43\x90\xcd\xe1\xe0\xc8\xb0\x52\x63\x3d\xc9\x26\x2e\ +\xca\xb8\x87\x30\x49\x91\x80\x43\x6d\xc0\xce\x13\x1f\x92\x31\x57\ +\x9d\x23\xb6\x5f\xf7\x18\x06\x28\xef\xc9\x04\x47\xe5\xfe\x90\xfa\ +\x74\xfd\xce\x79\x8e\xab\xa6\x35\x21\x30\x14\x2d\x21\xe3\xf9\xc1\ +\x22\x74\xe0\xb1\xc9\x9f\x9c\xfa\xd4\x6d\x1b\x28\xf6\x5a\xbd\x8a\ +\x57\x8b\xb8\x8c\x4c\xa3\x65\x12\x22\x01\x37\x11\x27\xa5\x2e\xdb\ +\x0f\x6e\xa1\x4a\x0c\xd7\x3f\x07\x52\xa5\xfd\x23\x64\xfa\x75\xd9\ +\x78\xb4\xe1\x8d\x1d\xbc\x15\xef\xac\x88\xeb\x78\x5d\x99\x2c\xa1\ +\x66\x6e\xb6\x85\x88\x51\x47\xb6\x63\xe5\x50\xfb\x7d\x56\xf8\x24\ +\xb8\x61\xac\x22\x5a\xce\xe2\xb4\x95\xeb\xc6\x12\x76\x71\xfa\x5b\ +\xfb\xe8\xb6\xad\x90\x0d\x9f\x7e\x02\x8d\x8f\xc8\x1e\xda\x61\x98\ +\x77\x8c\x68\xe3\xb6\xce\xc8\x20\x88\x27\x95\x62\xad\xae\xad\xc7\ +\x81\xed\xa7\x78\xd5\x2b\x24\xe1\x66\xe3\xfc\xdf\xba\x48\xe3\x6a\ +\x4c\x6b\x33\x93\x45\xf8\x53\xc7\x11\xc3\x53\x93\x80\x83\xb6\xd7\ +\xe4\xec\xe4\xda\x9c\x38\x12\xc3\xb5\x30\x59\x54\x3c\xb5\x24\x35\ +\xa2\x0a\x1e\xc1\xc3\x9c\xfc\xa5\x77\x79\x02\x3c\x96\xd2\xa8\xb9\ +\xed\xca\xff\x22\xc2\xca\xcd\x4a\xdd\x6f\x8f\x79\x91\x3e\x81\xec\ +\xdd\xec\xf2\x89\xca\x5f\x72\xc9\x07\x65\x7f\xe3\xee\xfb\xdc\x73\ +\xfb\xe4\x23\xfc\x63\x65\xea\x4f\x8d\x7b\x7f\xe4\x53\xec\xfb\x1f\ +\x33\xce\x59\x9f\x47\xeb\xb5\xc7\xc6\xd9\x39\xc6\x1f\x0b\x9b\xf4\ +\x51\xc9\x8f\x96\xd5\xaf\x64\x75\xfb\xb8\x9a\x8f\xa2\x2b\x74\x70\ +\xd6\xd1\xb5\x83\xc9\xcb\x5c\x4c\x07\x99\x9c\xcf\x68\xf1\x93\x86\ +\x18\x56\x46\x4e\xbc\x16\x0d\x4f\x7b\x51\x87\x77\xe2\x8d\x6c\xf1\ +\x27\xad\x8d\x78\x48\xdc\x89\x16\x97\xcf\xf1\xf2\x9e\x8b\x89\x07\ +\x8f\x30\xc2\xf9\xcb\x2b\x74\x73\xe6\x74\x18\xc2\xb2\x2d\x87\x85\ +\xe0\x9d\xb8\xe8\x13\x67\x7a\x10\x86\xb9\x87\x24\x33\xd6\x61\x21\ +\x60\xa0\xc6\x64\xd8\x7b\x90\x1b\x19\x50\x84\x95\x44\xc3\x2f\x2d\ +\x48\xe7\x19\x1b\xf1\x41\x36\x66\x62\xc5\x97\xe0\x07\x73\x7b\x1c\ +\xe8\x97\x49\x8e\xbb\x12\xb0\xff\xdf\xb4\xfc\x5f\xe0\x83\x17\x66\ +\x65\x48\x8c\xa3\xe3\x74\x74\xf0\x31\x2d\x7b\x5e\x03\xee\x27\xe8\ +\x71\xfe\xb7\xd9\xd2\x8d\xb6\x95\xb6\xb9\xf9\x23\x0e\x6d\x3e\xde\ +\xc6\x7d\x1a\x97\xb4\x9f\xbd\x3d\x64\xf2\x3f\x24\x3f\x48\xf8\xa0\ +\x38\xfb\xe7\x95\x58\xdb\xfd\x07\x65\xf6\x8f\x11\x72\xee\xb1\xdf\ +\xa2\xec\x2f\x42\x3f\x0b\x3e\xe2\x85\x89\x7c\xec\xb6\xb9\xe4\x92\ +\x1f\x21\xd7\x2e\x75\xc9\x25\x9f\x4e\xae\x1b\x6a\x97\x5c\xf2\x19\ +\xcb\xf5\xe6\xff\x11\xf2\x9b\xdd\x58\xbf\xd7\x57\xb1\xa7\x73\x73\ +\x56\x37\x87\xa2\x8f\x5a\x1d\x92\x7e\xea\x7a\x2b\x8f\x0b\xe7\x75\ +\x36\x89\x1f\xeb\x61\xd5\x27\x87\xc8\x83\x1f\xb5\xc5\x17\x7e\x22\ +\x54\x84\xe2\x9f\x3a\x89\xb1\x0e\xc3\xd2\xb6\xac\xbf\xef\x64\x88\ +\x9b\xa5\xf9\xb6\x1a\xca\xc5\x16\x9e\x05\xdc\x37\xe0\x56\x18\x1b\ +\x63\x3a\x65\x52\x81\x89\x9a\xc3\x3f\x86\x13\x7c\xe2\xc1\xee\xe5\ +\x0e\x4d\x09\xe9\xe2\x52\x58\xfe\x81\x9c\xda\x33\xa3\xb3\xf7\x53\ +\x63\xc3\x24\xaa\x71\xf6\x15\x5f\x17\x9c\x41\xd3\xcd\xf0\xe4\x78\ +\xbd\x6a\x1b\x84\x50\xcc\xf5\xb2\x05\x66\x7c\xc7\x7a\xa5\x1d\xee\ +\x2e\xae\x90\x0e\x0e\x63\x6c\x2d\xae\x79\x26\xb9\x0a\x16\x82\x9d\ +\xd8\xc8\x66\x9b\xa8\x0a\x6c\x93\xba\x2b\x2e\x75\x30\x4d\x5c\x35\ +\x13\x53\x1e\xeb\xd4\x7e\xf3\x2a\xc9\x12\x09\x68\x71\x43\x8e\x34\ +\x38\xbf\xd8\xe8\x1a\x84\x71\xe6\xff\x88\x29\x1e\x4b\x1a\x9e\xeb\ +\x17\x2b\x25\xb2\xe1\xfe\xa3\xef\xc9\x93\x90\x63\x27\x1a\x33\x3f\ +\x69\x69\xd0\xf1\x58\x8e\x94\xe3\x26\x72\x8a\x57\x26\x17\x81\xea\ +\x81\x8f\x13\x33\x7b\x82\xec\x13\x77\xb3\x91\x7b\xff\x39\x11\xcd\ +\x4c\xf1\xb7\x2d\x1f\xf1\x7e\x76\x87\xfd\x4b\xc8\xa3\xf5\x1a\xcc\ +\x5b\xe3\xd3\xc8\x73\x9b\xef\x13\x76\x71\xc9\x25\x1f\x94\x1e\x03\ +\x96\xf0\xb9\xe0\xcf\xc7\xfa\xbb\x3c\xda\x57\x3f\x56\xf6\x7a\xfb\ +\xdb\xe8\xb9\x9a\xc4\x77\xde\xc8\xf0\x1f\xe1\x8f\xfa\x78\xae\xfe\ +\x8f\x91\x8f\xa8\x73\xdf\x7d\xbe\x21\x1e\xb9\x1f\xea\x13\xd9\x93\ +\x3f\x7a\xbc\x49\x7a\xf2\x99\x6c\x29\x26\x95\x8f\xe8\x9d\x33\x19\ +\xd2\x0b\x96\x21\xde\x7e\xbe\xb5\xfc\x95\x9f\x98\xdb\x23\xf1\xc8\ +\x71\xc4\xe4\x86\xd5\xe0\x62\x9d\x38\x51\x4f\xc7\x7d\x1e\x4f\x4c\ +\x1d\xc9\xe0\xae\x31\xa4\x3e\x62\xcf\x31\x1a\x9c\xc6\xea\x46\x62\ +\x71\x14\x75\x45\xdc\x8e\x69\x19\xd4\xb5\x39\x59\x43\x18\xff\xa9\ +\x50\x6b\x67\xad\x92\x44\x1e\xa6\x75\x7d\x9e\x89\xed\x15\x96\xf8\ +\x7d\x78\x1f\xc1\x3b\xf8\xc7\xf1\x1d\x7d\x30\x03\x97\x53\xfe\xf1\ +\xf3\xd2\x78\x41\x63\x59\x45\xfc\x8f\x74\xf5\x2c\xb8\x36\x0d\xd2\ +\xbe\x8e\x2a\x40\x63\x4b\xe7\x59\x39\x70\x5b\x75\x57\xee\x1a\xcb\ +\xbd\x8f\xc8\xca\x33\x76\x65\xf5\xb5\x56\x7f\x8b\xb9\x39\xfc\x48\ +\xfc\x7b\xf4\x23\x80\xa7\x92\x8d\xf5\xc3\xd4\x19\x1b\xdb\x0d\xfd\ +\x11\xa5\x9f\x95\xb5\x9e\x92\xdd\x46\x66\x3c\x48\xfb\xfb\xdd\xca\ +\xfe\xba\xce\x8a\xee\xeb\x7a\xc9\x25\xbf\xb2\x5c\xbb\xdf\x25\x97\ +\x7c\x3a\xb9\x6e\xa8\x5d\x72\xc9\x67\x2c\xd7\x9b\xff\x47\xc8\x6f\ +\x7a\x63\xfd\x1a\x83\xfb\x25\xaf\x68\x72\x71\xb1\x7a\xf8\xa1\xc3\ +\xd2\xcf\x1d\xc6\xbe\x2a\xed\x17\xf1\x85\x75\x9d\x19\xc2\x1d\xf5\ +\x18\xdf\x4a\x5a\x8d\x55\xac\xfa\x23\xb8\x93\xfc\xe2\x7b\xff\x9c\ +\x23\xfd\xac\xc3\xef\x8a\x33\x21\x21\xa7\x70\xfc\xfe\x35\xaf\xb1\ +\xf7\x1d\x57\x38\xce\x37\x67\xc3\xfc\x70\x37\xc1\x54\xd8\xbc\xf6\ +\xbf\xae\xc7\x4b\x9a\x1b\x33\x16\xe7\x30\x29\x71\x4c\xf0\x38\x66\ +\x7c\xc4\x89\xd5\x9b\x82\x8b\xcd\x78\x5a\x70\x6e\xee\x59\x56\xda\ +\x86\x8d\x0c\xa4\x38\x63\x6d\x7a\xc4\xb1\x23\xc7\x25\x78\x64\xf6\ +\x69\x71\x43\xcb\xba\x23\x4c\xa5\xa4\x2b\x9a\xc9\xaa\xbb\xb0\x4d\ +\xbc\x61\x0e\x7c\xb9\x23\xf2\x4f\xdb\x6a\x64\x6d\xd0\x67\xc4\x2f\ +\xb4\x16\x6f\x9c\xe1\xee\x85\x41\x89\xd7\x91\x24\x2a\x94\x54\x3b\ +\x8f\xf8\xc2\xba\x0d\x86\x1f\x1e\x31\x03\x52\xf2\x3b\x3e\x72\x1c\ +\xc5\xd7\x33\xeb\xb2\x88\x51\xb3\x2e\x93\x03\x4f\x7d\x0c\x0c\xf1\ +\xa0\x4c\x3d\x7b\x5d\x46\x64\xe7\xa9\x66\xf0\x8c\x6d\xf5\xcf\xd0\ +\x80\xe5\x03\x65\x3d\xcf\x7d\x2d\x91\x39\xdc\x85\xaf\xf0\x04\x91\ +\x65\x7c\x58\x9a\x92\xfd\xd4\x56\x86\xf7\xd9\xcb\xa3\xed\x97\xd7\ +\xed\x67\x49\x37\xf1\x43\xf9\x99\xa5\x2f\xb9\xe4\xa1\x78\x7f\x53\ +\xb3\x3e\x50\x64\xdf\xef\x83\x5b\x68\xc9\xbe\x3f\xde\xf3\x3f\x56\ +\xf6\xfd\xfd\xbe\x8f\xdd\x7f\x2e\xf6\x21\x99\xbc\x3d\xff\x39\x99\ +\xba\x8f\x64\x6a\x8c\x7c\xa8\xd6\x87\xfa\xf2\x31\x37\xc7\x82\x0f\ +\xc9\x0f\x0d\xf5\x89\x7c\xcc\xfa\x2d\x11\x39\xcf\x4d\x0e\x6f\x3f\ +\xff\xa1\xf1\xb1\x66\xd5\x1e\xde\x1c\x47\x25\x26\xc4\x73\x3b\x8d\ +\x72\x72\x9c\x42\x96\x71\x30\x31\x56\x3f\xa8\x83\x93\xf0\xf8\xd1\ +\x1c\xc2\xb9\x21\x99\x94\x62\xd8\x1d\xef\x0c\x1b\xe2\x7c\xdb\x0a\ +\x9e\xb1\xda\xbb\x3c\x39\x3f\x39\x0a\xd8\x85\xb1\x0b\xde\x89\x6f\ +\x24\x3d\xf8\x15\xe5\x79\x26\x08\xd8\x6b\x28\x28\x1f\x8e\x4f\x6f\ +\x36\xc1\x25\x75\xd7\x87\xb7\x63\xd8\xea\xad\x63\xf5\xf9\x81\x4c\ +\x8f\x21\xd4\x0a\xac\xe6\xde\xe1\x81\x13\x9d\xd1\x17\xdc\x24\xd1\ +\x48\x63\x75\xe3\xa9\x5d\x29\xed\x89\x06\x4e\x3b\xdc\x5b\xd4\xd9\ +\xdf\xbd\x04\x77\x24\xa2\xba\xbb\x3b\xb1\xe1\x7a\x43\x1a\xd9\x24\ +\xc0\x13\x18\x39\x17\xfb\xf4\x32\x9b\x6b\x97\xfb\x21\xd6\xf1\x66\ +\x8a\xf9\xe3\xe4\x87\x12\x1f\x8d\xe1\x77\x2b\xb3\xa2\x5d\xe9\x9f\ +\xb4\xc1\x2e\xb9\xe4\xd3\xc8\xb5\xfb\x5d\x72\xc9\xa7\x93\xeb\x86\ +\xda\x25\x97\x7c\xc6\x72\xbd\xf9\x7f\x82\xfc\x26\x37\xda\xcf\x1d\ +\x14\xa7\x56\x3f\xa5\xc6\x4f\xcd\xfb\x80\xfc\xc8\x8b\xc4\x63\x04\ +\x6a\xef\x86\xe2\x98\xea\x31\x39\x40\xc8\xf7\x20\x1c\x91\xdc\x71\ +\x47\x0e\xf6\x5e\xfb\x6c\x3f\x91\x45\x92\xf1\x2c\x49\xf2\xe0\x70\ +\xeb\xbe\x4e\xf0\xe1\xaf\xc3\xb3\x75\x6c\xcc\x27\x38\xcf\xd5\x77\ +\x7d\x4c\x4b\x2c\x8f\x1f\x13\xe3\x50\x8e\xce\x3a\x47\x07\xc5\xc6\ +\xb1\xaf\xda\x67\xce\x04\x76\x09\xb0\xfa\xb1\xd4\xb0\xa2\xd9\x7b\ +\xad\x40\xe6\x35\xdf\x06\xf7\xff\x6f\xef\x5c\xb4\x9c\x37\x75\x28\ +\xdc\xf6\xfd\x9f\xf9\xac\xc3\x96\xb4\x41\x96\x85\x4d\x12\xe7\x32\ +\x89\xbe\xd5\x31\xa0\x3b\x98\x24\x8e\xdd\x99\x1f\x0f\xe2\xfa\x4d\ +\x1a\xaa\x7a\x2c\x6d\x51\x89\xc8\x6c\xac\xea\x56\x5d\x73\xea\xf5\ +\x21\x8e\xd9\xf5\x9e\x99\x2b\x9a\x84\xf3\x86\x9e\x47\x36\x16\xb8\ +\x01\x81\xd3\x85\x9b\x1f\xec\xee\x6e\x40\x09\xe2\xd0\x5b\x59\x5b\ +\xe9\x59\xbf\xfd\xa7\x0f\xae\x9a\xc4\xcc\xc4\xd2\x52\xcb\xf2\xa8\ +\xa5\x0a\x9b\x60\xcc\xcc\x10\xbf\x8d\xa4\xc1\x4c\x0d\x74\x64\x30\ +\xfe\x4d\x11\x41\x64\x66\x87\xd7\x8a\x8d\x15\x1d\xeb\x54\x4d\x26\ +\x7d\x64\xa1\xc4\xe4\x8d\xf1\x40\x4e\x1b\x74\x28\x1a\x34\xc1\x46\ +\xa6\x63\x1f\x3f\x18\xb8\xa1\xb7\x01\xc1\xee\x04\x99\x8b\x74\xda\ +\x8f\x5f\xa6\xc2\x71\xdb\x9a\x3e\xc4\x0b\x53\x15\x3f\x8a\xbd\x5f\ +\x76\xfc\x9b\xaa\x7f\x13\x40\x37\xee\xc7\xb3\xf7\x88\x10\x62\x8a\ +\x8f\xeb\xed\x29\xcf\x72\x83\x59\x4d\x2b\xb6\x3e\xcf\xad\x20\x4e\ +\x16\x2f\xcb\x9b\x0b\x1d\x74\xbc\xaf\xa0\xee\x75\xb3\x7b\x73\x30\ +\x9f\xdc\x75\x48\xd1\x93\x0a\x71\xc1\x81\x01\x05\xad\x23\xdb\x85\ +\x9f\xb9\xdc\x3b\xc3\x43\x46\x04\x9f\xc9\xd6\x31\x86\x5e\x5d\xdb\ +\x81\x6e\xd6\xaa\x85\x1e\x3b\x32\x6c\x87\x66\x13\x34\xe6\x86\x4f\ +\x5f\x5e\x01\x18\x30\x8c\x7b\xba\x11\x25\x63\x2c\x0e\xda\xd2\xa0\ +\x87\x53\x99\x64\x08\x26\x7b\xe6\xca\x71\x8d\x00\x03\x66\xee\x49\ +\x02\xd4\xed\xf5\xfd\xda\xc0\xda\xf1\x72\xe6\x18\x6d\xe6\x3f\x2a\ +\xd8\xc2\xd5\x8b\x3a\x1b\x6f\x9a\x76\xa4\x59\x4b\x11\x73\x93\x7e\ +\xed\x23\x8c\xfe\x30\xdf\xda\x43\x03\x09\xaa\x06\x51\x2b\x88\xb0\ +\x1d\x68\x04\xe8\x14\x1d\x32\x19\xf0\xbe\xa0\xd9\x88\x59\x66\x7b\ +\x07\xb3\xb4\x4b\x1c\xcd\x2b\xd6\xfd\x6d\xec\xf6\xc3\x8d\x70\x7d\ +\x2e\x3a\x8f\xc5\xef\x51\x5b\xa7\x28\xae\xa3\x1e\xa8\x15\xc5\x0f\ +\x53\x2f\xfe\x45\xfe\xc4\x42\x5d\x51\xa4\xff\x56\xf3\xcc\x49\xaf\ +\xc4\xe7\xe5\x9e\xb7\x9b\xc8\x28\x8e\x74\x33\x74\xec\x0b\xac\xb3\ +\x95\x31\x74\x3e\x9c\x18\x98\xa0\x77\x9d\x4c\xe2\x34\x2f\x8a\xd0\ +\x6e\x68\x02\xfb\x58\xed\xdf\x99\xda\x50\x4c\x4d\xa5\xae\x6a\xc3\ +\x46\x85\x43\xc6\x2f\xfc\x5a\x1f\xfa\x68\xcc\xab\x1f\xda\x58\xfa\ +\xe8\x6a\x47\x2d\x90\x48\x47\x60\xe4\x63\x44\x95\xe8\xd8\x7a\xe8\ +\xa0\xdf\x06\xd2\x6d\x07\xf6\xd5\x52\x61\x1f\xed\xc0\x49\xa5\x0e\ +\x6f\x3d\x1a\xc5\xd9\x9a\x1d\xe6\x85\xfc\x2a\xb5\x79\x77\x1f\x1f\ +\xc3\x7c\x4c\xc9\x99\x40\x2c\x1a\x27\x57\x4b\xb3\x10\x31\x8d\x5a\ +\xa3\x66\x8d\xd6\xb1\x89\xeb\x4a\x18\xbd\xeb\x64\xc4\x44\xdd\x1e\ +\x0d\x42\xb7\xd6\xba\xd6\x8e\xb5\x05\xda\xd7\x91\xcc\xcf\x2c\xba\ +\x9f\x95\x32\x6a\x53\xc6\x9e\xe1\x9c\x10\x07\x47\x83\xf6\xf2\xf4\ +\x91\x16\xc0\xd9\xc8\x3f\x35\xa7\x63\x9d\xae\xe9\x6c\xee\x60\x73\ +\x43\xa8\xf5\xdd\xa8\xdb\x49\x63\x71\x60\x20\x56\x36\x54\x86\x6e\ +\xdb\x07\x5c\x8f\x56\xbd\xcf\x25\xb4\xb1\x88\x82\xbc\x0f\xa3\xfd\ +\x3a\x92\xca\x62\xeb\xda\x72\xc1\x8a\x3d\xf7\xaf\xf3\xdd\xbc\x21\ +\x65\xf1\xc7\xf0\x6f\x6b\x19\x51\x7f\x64\xcf\x37\x58\x7d\x33\x53\ +\x5b\x62\xa2\xde\xce\x38\xd3\x47\x58\x4b\xf4\xf1\x72\xf6\x23\xf4\ +\x99\xe9\x8f\xc8\x6a\x64\xed\x6c\x67\x64\x76\x99\x4f\xd4\x13\x6f\ +\xe7\x63\x01\x67\x2f\xa7\xc3\xf9\x45\x93\xc1\xf8\xfc\x10\xf6\x06\ +\x37\xd3\x63\x91\x4d\x2d\x4d\xdb\xc6\xdb\x7a\xa2\xbd\x19\x98\x5f\ +\x9f\x4b\x37\x0b\xf6\x0d\x91\x8c\x43\x07\x23\x6c\xc9\xe9\x2d\x19\ +\x06\x47\x7c\xb5\xb6\xd6\xa0\x68\x43\xb0\xd9\x31\xae\x29\x80\xa6\ +\xc6\xe7\x33\x5a\x7c\x5e\x9a\xef\x26\x8c\xf7\x60\x84\x04\x2f\x36\ +\xff\xf1\xe0\x2b\x62\xf1\x9a\x0a\xf1\x36\xd7\x15\x62\xae\x63\x15\ +\x51\x01\xbc\xbc\x21\x0b\x68\xfd\x06\xe7\xb1\x8e\xda\xe6\x1e\x26\ +\x6d\xcd\xd6\x0a\x09\xa3\xc7\x18\x4b\x6f\x67\xea\xec\xbd\x7b\x16\ +\x6a\x85\xe6\xa7\x73\x55\x10\x86\xc4\x74\xe0\xde\x34\x1b\x2e\x09\ +\xe2\xf0\xf1\xfc\x04\xbe\x15\x7f\xc2\xee\xe5\xea\x73\x50\xfc\x14\ +\xb5\x75\x8a\xe2\x3a\xea\x81\x5a\x51\xfc\x30\xf5\xe2\xbf\x91\x8f\ +\x5f\xb0\x47\x0b\xf4\xdf\x68\xd0\x9f\xc5\x3b\xd2\x5d\x89\xaf\xe7\ +\x0c\x7f\x79\xa8\xf5\xe3\x21\xc4\x18\x01\x3d\x6e\x6e\x02\xb4\x2f\ +\x36\x9b\xd9\xac\x7c\x24\x2e\x98\x00\xc6\x8d\x95\x91\x9e\xd7\x8c\ +\x64\xbc\xcb\xdf\xc6\x14\x49\x57\x07\xf2\x80\xa5\x9b\xa2\xa3\x37\ +\x40\x34\x66\x57\x08\xb0\x1b\xdf\xdf\xd4\x56\x51\x6b\xed\xa9\x8c\ +\x9e\x3e\x8e\xae\x24\xfd\x68\x91\x23\x16\xdd\x34\xb7\x95\x7a\xb4\ +\x27\xc7\xe3\xb0\x4d\x61\x3a\x34\xf2\xd0\xcc\xec\x4d\xdc\xe0\x00\ +\x6d\xfb\xc1\x64\xad\x08\xa9\xdb\xfa\x6a\x81\x7e\x0f\x21\x3d\x9f\ +\x5e\xad\x1a\x9b\xce\xf0\xc7\x4d\x21\x0d\x17\x6e\xfc\x74\x68\x0f\ +\xd4\x16\xbf\x79\x36\xe4\xe6\xd3\x4d\x5a\xc7\x1e\x52\x69\xad\xda\ +\x93\xa7\x60\x2a\x36\x9c\x4e\xfc\xdb\x41\x82\x5b\x63\xad\x0f\xef\ +\xeb\xfb\x57\xfe\x65\x3b\xdd\x1f\x34\xea\x36\xec\x99\xad\x06\x43\ +\x6b\xfa\x2e\x6f\x3f\x22\x47\x47\x3d\xbb\x6e\x74\x36\xdd\x30\x68\ +\xc3\x91\x91\x88\x45\x93\x7b\xd9\x0a\x2c\x93\x6c\xe2\xf6\xb4\x30\ +\xba\x35\xf2\x2f\xd1\x17\xea\x79\x6c\x4e\xcc\x01\x2f\x28\xa5\xf8\ +\x83\x60\xef\x1c\xed\x8d\xb8\xb7\x66\xb6\xf6\x7e\xb9\x31\x88\xef\ +\x0d\x54\xad\xec\xd7\x55\x10\x73\x25\x9e\xaf\x9b\xf6\xde\xd7\xeb\ +\x49\xd4\x61\x3c\xcb\xe7\x6d\x9e\x89\xaf\xf3\xa8\xf6\x06\x3f\xb3\ +\x76\x1c\xc9\x9f\x8d\xe4\x6e\x07\xab\xe1\xfc\xe3\x63\x6e\xd0\x35\ +\xb1\x83\xb9\x51\x66\x7d\x5e\x63\xf1\x93\x50\x8e\xde\x26\xc5\x1b\ +\xb4\x3e\x86\x1b\x5b\x9f\xe8\x88\x61\xc3\x73\xa2\x9e\x16\xf3\x04\ +\xbd\x6e\xd5\x6b\x08\x74\xa5\x84\x98\x5a\x84\x07\x98\x6d\xbf\xc6\ +\x92\xbe\xb6\x83\x21\x50\x5d\x16\xb4\xc9\x4c\xbc\xb9\xf4\x02\xbd\ +\x6f\x36\xd4\x1f\x42\x03\xbb\xe6\x9b\xd1\x55\xad\xc3\x45\xb4\xe1\ +\x26\xff\x83\x30\xb2\x84\x72\xf1\xb2\x14\x94\x01\xc8\x5d\x55\x39\ +\xa7\x06\x0f\x72\x16\xdf\x17\xfc\xcd\xec\x37\x76\x51\xbc\x94\xda\ +\x81\x45\x71\x1d\xf5\x40\xad\x28\x7e\x98\x7a\xf1\x37\x8e\x2e\xf0\ +\x3f\x7a\x81\x62\xe1\x8f\x16\x8b\x58\xab\x31\x98\x97\x35\xdc\xe2\ +\xf7\x68\x9d\x47\x24\xeb\x11\x53\xca\x78\x56\x87\xf9\xfb\x30\x47\ +\xf0\xe3\xf3\x70\x4a\x2d\x18\xd3\x49\xdb\xbe\x94\xe3\x86\x81\x0d\ +\x95\xae\x94\xd1\x8e\x26\x56\x0b\xd3\xb7\x18\x7c\x74\xa6\x63\x1e\ +\x4c\x66\x62\xdc\x4d\x10\x29\xe6\x8b\x7e\x1b\x8c\xef\x71\xad\x43\ +\x17\x73\xbb\x94\xa5\x4b\x0b\x16\xa0\xb6\xbd\xbe\xd6\x52\x03\x78\ +\x99\xb2\x2b\xb3\xe7\x30\xeb\xd6\x60\x8d\xfe\x87\x56\x86\xad\x43\ +\x93\xde\xd1\xa8\x9b\x98\xed\x20\x6b\x24\x34\xaf\xe6\xcc\x91\x20\ +\xc1\x2c\xa8\x63\xfb\x9b\x56\x88\x87\x31\x5b\x25\x93\xda\xe9\xe8\ +\xf4\x69\x0c\x37\x75\xc0\xa1\x3b\xf1\x80\x9b\x4d\xda\x72\x0c\xf8\ +\xef\xde\x09\x88\xaf\x07\xf3\x53\x9b\x0e\xe5\x98\x27\x55\x32\x47\ +\xb4\x3a\x54\xec\x06\x59\x1f\x8d\xa3\xb0\x99\x7f\x23\x8e\x1b\x5b\ +\x91\x0e\x18\xef\x5e\x24\x66\x3b\xa4\x97\xaf\xd0\x3d\x9a\xe0\x6b\ +\x58\x59\x0c\x7f\x82\x60\xeb\xc7\x17\xc1\x90\xab\xa5\x3c\xa9\x8c\ +\xe2\x0f\x72\xe5\x5e\xe0\xfb\x85\xbc\x81\xb4\xbe\xc4\x6e\xfd\xf8\ +\x3e\x62\xea\x97\xc2\x9c\x47\xb9\xa1\x3b\x83\x31\x80\xef\x67\xc4\ +\x3c\xde\xf6\xa8\x86\x99\x0e\xac\xd4\x78\xc0\x51\x68\xa1\x19\xb0\ +\x04\xda\xce\x53\xfa\x62\xd9\x8f\xed\x95\xcc\xe3\xc5\x2a\xf6\x34\ +\xa9\x5c\x18\xd8\xf0\xa6\xda\xe0\x8b\xd6\xfb\x03\xc6\x98\x67\xf5\ +\x88\x05\x5e\x0b\xfc\xd0\xbe\xe1\xf3\x55\xaf\x34\xa1\xc6\xe7\xf2\ +\x08\xa1\x98\x03\xfd\xb6\xca\xc0\x48\xc0\xab\x30\x8c\x76\x1e\xf2\ +\xba\x45\xdb\x7e\x2c\xae\x86\xa5\x65\xea\xb5\xc8\xbd\x7e\x27\xb8\ +\x92\xd0\x58\xd9\x87\x64\xb3\x90\xb1\x1d\xb8\xee\x84\x71\xa3\x4f\ +\x26\x7b\x29\x2c\xf3\xac\x88\xed\x74\xbe\x94\xb6\x08\x6f\x3d\x19\ +\x45\x51\x5b\xb0\x28\xae\xa4\x1e\xa8\x15\xc5\x0f\x53\x2f\xfe\x03\ +\x3e\x7a\x71\x7c\x71\xd9\x65\x51\xa6\x8f\x13\x82\xfc\x95\x93\x9c\ +\xd5\x71\x35\x57\xcc\xeb\x2c\x86\xcd\xa5\x35\x71\x56\x9b\xb1\xff\ +\x78\x45\x37\x86\xe5\x4d\x01\x41\x1f\xb4\x61\x3c\x6e\x4e\x04\x73\ +\x6b\x69\xd3\xc7\xce\x52\xe5\xa6\x81\x9d\xa8\x5c\x6c\x33\xd5\x9b\ +\x0f\x8a\x7a\xba\xf8\x0f\x81\x68\x79\x24\x5c\x6e\x88\xa6\xab\x5b\ +\x47\x92\xeb\x8c\xbb\xce\x64\x11\x2e\xa7\xba\x0f\xfd\x58\x66\xe7\ +\x03\xa1\xcc\x59\x65\x7d\x08\x1b\x11\xf5\x44\x8a\x06\x6d\xa2\xd6\ +\xb1\x3e\x45\x83\x4c\x81\x81\x8b\x23\x04\x99\x5f\x6c\xd0\x0b\xde\ +\xfb\x6a\x9d\x72\x5b\xaa\x9f\x3b\x59\x35\x51\x60\x6c\x3f\x60\x13\ +\xd6\xec\x1a\x72\x34\x5b\xc6\xc3\x40\xa3\x0e\xc6\x03\x41\x33\x96\ +\xae\xc9\xa4\xd1\x9d\xb4\xf1\x81\xc4\x4c\xb6\xcc\xe4\x39\x8c\x69\ +\xa5\xf5\x7d\x39\xc5\xc2\x9f\xda\xfd\x1c\x58\x10\x80\x45\xe1\xe2\ +\x78\xd9\x19\xb4\x5d\xc1\xc7\xbe\x01\x96\xe5\xf1\x61\x66\x61\xef\ +\x4c\x57\x7c\x09\xdc\x33\x57\xed\x01\xff\x1e\x0a\xd8\x8f\x32\xc0\ +\xb1\xc7\xdb\x45\xb2\x58\xab\x30\x27\xf1\xfe\x31\x6e\xb4\x25\x47\ +\xba\x19\xb1\x4e\xfa\x47\xf9\x19\xde\xef\xa8\x86\xa8\x67\x9e\xc4\ +\xc7\xab\xe8\xb6\x71\x37\x03\xda\x6d\x74\x5f\x07\x67\xa9\x33\xd4\ +\xab\xa5\xe3\xf9\xc6\xf5\x38\x5b\x1f\xbd\x4e\x18\x7d\xf5\x08\x30\ +\x40\xa2\x5a\x66\x31\x86\x5d\x01\xb9\xd1\x09\x3b\x03\x08\x7c\x12\ +\x8e\xb5\xc5\x5c\x79\xbd\x24\xc8\xa4\x45\x98\xc4\xba\x1f\x09\x15\ +\xe2\xc5\xaa\x6e\x63\xff\x10\x0d\xf8\x38\x7b\xad\x72\x94\xcb\x9f\ +\xff\x9b\x89\x6b\x76\x34\x8e\x3a\x40\x19\xda\xaf\x62\x36\xa9\x26\ +\x8f\x6b\x50\x14\x2f\xa6\xb6\x60\x51\x5c\x47\x3d\x50\x2b\x8a\x1f\ +\xa6\x5e\xfc\x13\x3e\x7a\x61\x50\x1c\x2f\xd4\xfd\x25\x51\x1c\x13\ +\x6f\x1f\xa1\x7d\xb4\x99\xd9\xff\x15\x62\xfd\x2b\xf3\xf1\x6b\xb1\ +\xc2\x59\xcc\xa6\x67\xc8\xc8\xee\x63\x97\xb1\xb6\x0e\xb9\xbb\xf7\ +\x35\x3f\x8a\xe8\x20\x63\x8b\x67\x32\x8a\xf8\x00\x63\x74\xc0\xac\ +\x0f\xdc\x78\xe3\x87\x16\xf8\x3e\xa1\xac\xb5\x3b\x35\xfd\x47\x93\ +\xba\x03\x67\xea\x3a\x03\x11\x25\x72\xc8\xa2\x58\x44\x7a\x0b\x05\ +\x2a\xa6\xcc\xbc\x55\x67\x16\x34\xf4\x48\x90\xa0\xc8\xec\x1c\x72\ +\xa9\xd5\xd6\xae\x9b\x59\x62\x79\xc8\x88\x35\x6d\xff\x69\x7f\xe8\ +\xc8\xe6\x06\x0a\xf2\x4a\x2c\x1b\x6b\x31\xda\x25\x51\x84\xbe\x3b\ +\x6f\x7c\xc0\x86\xd5\xe8\x61\x40\x1f\x38\xa9\x74\x37\x56\x7b\x36\ +\x7e\xfb\xdb\x60\x63\xbb\x6b\x7e\xa5\x0b\xf7\x34\x13\x29\xb1\x75\ +\xd4\xaa\x1d\xeb\x49\xda\x09\x0b\xeb\x2a\x70\x1d\x7d\xfb\x62\xb2\ +\x53\xf9\x86\x32\x8a\x1f\x20\x6e\xf1\xdd\x7b\x27\xe1\x86\xb4\xcd\ +\xe9\x87\x80\x71\x28\x8f\x44\x9d\xf7\x3b\x23\xf3\x65\x3e\x12\xc7\ +\x80\xb2\x4c\xb7\x42\x96\xf3\x8c\x98\xef\xde\xdc\x77\xb2\x4d\xe7\ +\x8b\x30\x92\x39\xec\x44\xbe\xde\xc4\x7e\xcb\xca\x44\x4f\x83\x5c\ +\x0b\xca\x98\xa5\x8c\xe5\x7a\x3b\xfc\x0a\xbb\x8c\xcd\xa8\xeb\xcd\ +\x58\xf4\xc1\x89\xd7\x0d\x5d\x04\x3b\xb4\x5e\xf6\x6e\xa4\xa0\x25\ +\x30\x9d\xc3\xb2\x4f\xe6\x64\xab\x91\xa7\x6c\x0a\xc6\xa7\x3a\x0b\ +\x37\xd3\x65\x21\x41\x16\x23\x23\xfa\xfb\x3a\x5e\x42\x9c\x78\x9c\ +\x28\xc6\x59\xff\x6b\x88\x93\xcf\x26\xd8\xe4\xde\x0c\x70\x5c\x14\ +\x2f\xa4\xb6\x5d\x51\x5c\x47\x3d\x50\x2b\x8a\x1f\xa6\x5e\xfc\x27\ +\xc4\x05\x8a\x17\xc2\x2f\x07\x89\x51\x04\x5b\xe0\x65\xc0\xf7\x57\ +\xc9\x26\x76\x4f\x9c\x57\xb1\x5a\xdb\x27\xcc\x21\xd6\xc0\xb5\x36\ +\x38\x94\x8f\x62\xda\xb6\x96\x37\xfe\xfc\x83\x9b\xd6\x95\x3f\xeb\ +\xd7\x45\x6d\x00\x3d\x85\x68\xda\x41\x9a\x60\xdb\xef\x23\xe2\x20\ +\x06\xc0\x94\x80\x5d\x31\x74\x72\x81\x0e\x74\x6e\x2d\x2f\x1d\xfa\ +\x1d\x04\xda\x9c\x60\x66\x16\x65\x84\x24\x22\x6c\xd0\x60\x1a\xb6\ +\x47\x68\x38\xa3\x8d\x78\x62\x03\xfc\x3c\xa9\xa2\xa9\x80\x41\xf4\ +\x6f\x7d\x3f\x3c\x83\x21\x00\xfd\x3c\x5e\x17\xe3\xf5\x3c\xa6\x90\ +\xf3\x8c\xe1\x78\xe8\x06\x0d\x1e\x5a\xc9\xa3\xb1\xff\x54\x46\x64\ +\x7a\xd6\xdf\x74\xd4\x29\x47\xe4\xaa\x64\xa8\x99\xe9\x4e\x8f\x4e\ +\x13\x52\x3e\xc3\xa5\xe8\x03\xd9\xb1\xed\x3f\x8a\xf1\xa0\xef\x3c\ +\x52\xb1\x87\x2b\x08\xb8\x7e\x5c\x4b\xaf\x3b\xe2\x16\xdb\x3b\xf0\ +\xe5\xc4\xb6\x28\xae\x02\x7b\x0a\x64\xfb\xca\xbf\xf7\x4f\x37\x61\ +\x1b\x27\xa2\x14\xba\xaf\x90\xd9\x46\x99\xcf\xe9\x89\xf5\x00\xca\ +\xe8\xef\xf5\x99\xcc\x73\xa4\xa7\x2e\x23\xcb\x01\x66\x79\x22\x67\ +\x75\x25\xc0\x85\xe6\xec\x1f\xa5\xf6\x36\xfc\x8c\x9c\x72\xa0\x2a\ +\x22\x5c\x59\xc0\x85\x8b\xab\x0f\x68\xe7\x6c\xfa\xeb\xce\x64\x53\ +\x77\xef\xe7\xd9\x19\x2a\x30\x35\x15\x2f\x47\xf5\xba\x69\xd8\xc7\ +\x4b\xbd\x29\x07\x06\x54\x4d\xaa\xd0\xaa\x67\xca\x13\xc4\x57\xbb\ +\x29\x0c\xcb\x59\xc5\xf6\x65\xc4\x84\x2c\x9a\xc5\x9c\xb1\x6a\xf7\ +\xd1\x24\x93\x98\x6e\x30\x2f\x68\x36\x66\xd6\x81\x3a\xca\x8a\xe2\ +\x05\xd4\xb6\x2b\x8a\xeb\xa8\x07\x6a\x45\xf1\xc3\xd4\x8b\xff\x84\ +\xa3\x8b\xdd\xa8\xe3\xf8\x63\x16\xf5\xac\x10\x16\x9b\x4d\x02\x44\ +\xff\x4f\x9a\xdc\x47\x2d\xf4\x83\x84\xb9\xd8\x83\x93\xed\x4d\x3f\ +\x00\x9b\x36\xb6\x06\x1d\xfd\xb7\xd1\xd0\x57\x86\x8b\x1a\xf1\x26\ +\x92\x9a\x38\xc3\x09\x6a\x3d\x2c\xe3\xf8\x6e\x10\xc0\x82\x49\x65\ +\x3e\x20\x93\x18\xa2\xd7\xee\x02\x59\x85\x21\x20\x61\xe0\xcd\x8d\ +\x96\xcc\x3f\xe0\x4d\xb3\xfe\x19\xc1\x76\x77\x5a\x49\x8c\xbf\x0c\ +\x8d\xe1\xdc\xfa\x8c\x23\xad\x4f\xdc\x7e\x92\xbc\xf4\x06\x9b\xf4\ +\x6d\xb0\xff\x0d\x33\xc0\x41\xd3\x9a\xc3\xd0\x3b\x43\xd3\xa1\x81\ +\x94\x7f\x5e\x52\x2c\xc6\xa1\xb8\x0c\x5b\x70\x5d\x6d\xed\xa6\x9c\ +\xe9\x9f\x4c\xdf\x10\x32\x2a\x8a\xe7\xc1\xb7\x98\xd3\xbd\x96\x19\ +\x52\x66\x84\xa1\x30\xdb\xcb\x99\xad\x87\x7e\x60\x96\x32\x8b\x19\ +\x65\x20\xe6\x8a\xf1\x32\x1f\x70\xe4\xe7\x61\x0c\xda\xcf\x6a\x98\ +\xf9\x3f\x09\x5f\x96\x2f\x0f\xb0\x14\x2f\x3b\x42\x3f\xe7\xec\x6a\ +\x69\xd5\x69\x09\x5f\xd9\xad\x55\xdd\x00\x43\x1f\xf1\x84\xb4\xf7\ +\x80\xcb\x00\x5d\xe9\x95\xa2\x13\x36\xd7\x6f\x4a\xbf\x0e\xd1\xa6\ +\xe3\xad\x56\xa7\x0f\x1f\xb1\x65\x1a\xe7\xc8\x61\x8f\x6b\x1d\x2f\ +\x73\xe6\x53\x42\xd8\x4d\xdc\x99\x3f\xe3\x7b\x7c\xde\x97\xc1\x02\ +\x67\x89\x67\x13\xf0\xac\x4c\xf8\xaf\x31\xdb\x84\x7d\xa2\xc6\x6c\ +\xdd\x8a\xe2\xc5\xd4\x56\x2c\x8a\xeb\xa8\x07\x6a\x45\xf1\xc3\xd4\ +\x8b\xff\x02\xb8\x88\x1f\xf1\xe5\xe0\xd6\x62\x68\xc7\x4b\xab\xd8\ +\x7f\x94\x58\xc7\xac\xae\x99\x7c\xc6\xad\xf6\x9f\x4c\x9b\x0b\xa6\ +\x03\xf0\x71\x1c\x97\x8b\x40\xee\xc7\x02\xd7\x41\x15\x7a\x74\xff\ +\x2f\xb6\x74\x68\x43\xc2\x58\x9d\x06\x12\x6e\x08\x4f\xbc\x6f\xe6\ +\x11\xff\x51\x95\x14\xa9\x5d\x43\x25\x8c\xec\x75\x26\xdb\xfc\x26\ +\x5f\x6b\x61\x42\x73\xb0\x0d\x37\xc7\xfb\x78\xf4\x4e\x51\x23\x18\ +\x58\x5c\x5e\x69\x6d\xd2\x70\x90\xc4\x8c\xa2\x68\xba\x89\xd3\x98\ +\xd9\xef\x80\xc2\x8c\xb3\x58\x5b\x19\x35\x90\xce\xff\x2f\x7f\xb7\ +\x5d\x64\x20\x56\xe3\x50\x2c\xe3\x4e\xce\xdd\xf8\x93\xf1\x61\x70\ +\x7a\xbe\x2d\x8a\x47\xc9\xf6\x54\x7f\x19\xb5\x8e\x7f\x83\x4a\xf7\ +\x5d\x26\xec\x01\x06\x34\x4b\x63\x18\xde\x26\xc3\xfb\xc5\x78\xf4\ +\x99\xc5\x3e\x82\x31\x56\xb9\x25\x27\x6d\x08\xfd\x56\xfd\x9f\x84\ +\x2f\xc1\xa7\x8f\xe5\xde\x02\xff\x27\x12\x44\x89\x71\x07\xb3\xc9\ +\xc6\x6b\xaf\x03\x5a\x08\x44\x51\x33\xf6\x86\xe4\x2f\x10\xab\xc5\ +\x18\x3c\x73\x06\xcc\x41\x9e\x91\xeb\xec\x2c\x1c\xe9\xcf\x7c\xc9\ +\xd4\x0e\x42\x37\x49\x76\x29\xa6\x0f\xfb\xce\xf4\x79\xac\x26\x62\ +\x71\x2b\xf8\xc9\x7c\x0d\x07\x8b\xf4\x92\x13\x55\x14\xeb\xd4\x96\ +\x2c\x8a\xeb\xa8\x07\x6a\x45\xf1\xc3\xd4\x8b\xff\x41\x3e\x7a\x01\ +\xaf\x2c\x2e\x7e\xfb\x59\xfd\x36\x94\xd9\x51\xe6\x75\xe8\x83\x5b\ +\x63\x66\xf1\xc1\x4c\x0e\x8e\x74\xaf\x86\xf3\x36\xda\xd0\x57\xd7\ +\xfb\xe9\xc7\x34\x7d\x55\xa7\xcf\x73\x28\xa3\x76\x44\xf2\x11\xb6\ +\x9e\x03\xc8\xbb\xac\xe5\x94\x31\xff\x86\x8d\x34\xd0\xfe\x2b\xcf\ +\xa5\x54\x4c\xeb\xfd\x6d\xa8\x31\x1e\x40\xa6\x63\xb5\xd9\x31\x0c\ +\x36\x74\x4b\xe7\x22\x79\x58\x5b\x43\x7a\xed\xc0\x67\x65\x7b\x7c\ +\x4e\x4d\x82\x19\xea\x63\x22\xd6\xeb\x6d\x40\xf4\xb1\x7e\x6b\xf4\ +\x94\x4c\xf4\x1e\x29\x28\x91\x37\x20\x1d\x5e\xdb\x58\xfe\x5c\x02\ +\xb5\x6d\x36\x62\x36\xd6\x17\x74\x39\x10\x85\x5b\xff\x26\x8f\xe9\ +\xf5\xb2\x4f\x85\xba\x6f\x0c\x9d\x54\x03\x3a\xed\x8f\x9e\xd1\x04\ +\xe6\xb9\xfd\xf3\x46\x62\xb4\xb1\x2c\xde\x82\x3f\x29\x1f\xc8\x87\ +\x97\x57\xfc\x51\xfc\x5b\x17\xd9\xbc\x27\x41\xe1\xde\x9f\x76\xef\ +\xc9\x4d\x07\xb5\x88\x83\xad\x1f\xd3\xa6\xdb\x06\xbc\x1e\x64\xa1\ +\x88\xb7\x21\x99\xec\x15\xc4\x7a\x8f\xf2\x53\x4f\x1f\x70\x6f\xbd\ +\x67\xb9\xee\x60\x56\x96\x97\xaf\x40\x5f\x5f\xe2\x4a\x0c\xff\xe9\ +\x2c\x9f\xcd\x3b\xa0\xbf\xb5\x9a\xe2\x5d\xac\xee\x21\x9e\xd5\x78\ +\x76\xbd\x7f\x64\x63\xdf\x0e\xbc\x1e\x3b\xf2\xf9\x48\xfc\x84\x57\ +\x89\x0b\xf5\xe7\xc9\xce\x9a\x9d\xcd\x3f\x77\x42\x8b\x6f\xa7\xb6\ +\x64\x51\x5c\x47\x3d\x50\x2b\x8a\x1f\xa6\x5e\xfc\x17\xc0\x45\xe4\ +\xd5\xc9\xd1\xa2\xc2\xe6\x65\x8b\x1e\x13\x65\xc9\x57\x0a\xf2\x97\ +\x5d\xde\x76\x65\xc2\x19\x47\xf1\xb2\xfa\x40\x66\xe7\xe3\x00\xda\ +\x64\x71\xc8\x91\xce\xb3\x6a\x77\x05\x9c\xc7\x6c\x4e\x4d\xd6\x4d\ +\x8e\x6a\xd2\xdb\x38\xfe\x06\x0e\x24\x77\xcf\xc2\xe5\xd4\xee\xf6\ +\x01\x8a\xe6\x52\xba\xa9\xb5\x1e\x6f\xb7\xa5\x49\x33\x45\x93\xc9\ +\x4d\x85\x76\x70\xe9\x04\x3f\x7d\x8d\xeb\x04\xe8\xfa\x64\x21\x71\ +\xbf\x7f\xda\x3a\x22\x66\xb0\xfe\xc0\xd0\x8f\x5b\xbf\x3b\xb4\x3e\ +\x54\x1c\x46\xcc\x6d\xa3\xa7\x4c\xb0\x78\x67\x34\xb3\xf1\xa0\xb2\ +\x61\x2e\xe2\x9d\x86\x98\xc5\xf5\x72\x06\xf3\x64\x3e\x03\xbf\x4e\ +\x1e\x78\xf5\xc8\x3d\xc4\x71\xac\xe2\x5d\x64\xe7\xfd\x43\x88\xa5\ +\xf9\x2d\xf4\xc1\x65\x17\x2f\x84\x6f\x36\xf7\x40\xdf\xdd\x5b\x53\ +\x13\xe0\x3d\x0d\xef\xfb\xe1\xbd\x4d\xe0\xe7\x81\xa8\xa2\xde\x74\ +\x8c\x49\x35\xc6\xe8\xb3\x05\xd1\x06\x64\x32\xe0\xfd\x3c\x33\xf9\ +\xd5\xf8\xba\x62\xce\xd5\xda\x5e\x55\xeb\x0d\x70\x5a\x20\x96\xc6\ +\x72\xbd\x4d\x51\xec\x68\x1b\x24\xbe\x5d\xc4\x7d\x95\x8d\xcd\x54\ +\x88\xe3\x19\x8c\x93\xc5\xf8\x58\x7c\xd1\x80\xe3\x15\xe2\x22\x7d\ +\x2c\x3c\x23\x11\x3f\xe9\xc5\xb3\x35\x33\xbb\x21\x44\x51\x5c\x49\ +\x6d\xbb\xa2\xb8\x8e\x7a\xa0\x56\x14\x3f\x4c\xbd\xf8\x1f\x24\x2e\ +\xa0\xbf\xce\x7e\x3b\x2c\xc2\x17\x85\x3e\x5b\x4f\x26\x03\x59\x8c\ +\x2b\x58\x89\xe7\x6d\xd0\x9f\xb5\x11\xaf\xff\x2b\x70\x1e\x67\x35\ +\x37\xbb\x74\xca\x57\xcf\xd5\x92\xc4\x5c\x0b\xe5\x69\x2d\x99\x7f\ +\x93\x8b\x7f\x13\xf2\x4f\x2f\x82\xac\xf6\xdd\x1d\x8c\x68\x83\x18\ +\xd6\xed\x71\x1f\x00\xfe\x88\x77\x6b\x1c\xd6\x40\xbf\x95\x18\xab\ +\x79\x62\x6c\x70\x6f\x7c\x17\x6b\xdc\x4b\x6e\x1d\xeb\xef\x42\x76\ +\xc1\x59\xb2\xe2\x33\xe9\x27\xf9\xf3\xf0\xa5\x71\x7b\x51\x86\xf1\ +\x07\x97\x5e\xfc\x11\xe2\x3e\x8a\xfb\x6c\xca\x81\x21\x3f\xa7\x62\ +\x5c\x8e\xd9\x9f\xc9\x48\x1c\x03\xda\x03\xea\xbc\xec\x59\xf8\x5c\ +\xb1\x56\x2f\x23\x57\xd4\x16\x63\x3e\x91\xa3\x54\x9c\xca\xc7\xe1\ +\x0b\x7b\xd1\x3a\x15\xba\xd4\x7d\xe9\x5b\x47\x96\xde\xd6\x9f\xfb\ +\x88\xfa\x67\x9d\x16\xe6\x79\x29\x57\x24\xe5\xc2\xdc\x83\x5f\xd8\ +\x3f\x41\x58\xac\x5d\xfd\x7e\x41\x5d\x3f\xb8\x15\xc5\xbb\xa9\x2d\ +\x59\x14\xd7\x51\x0f\xd4\x8a\xe2\x87\xa9\x17\xff\x05\x7c\xf5\x22\ +\xfa\xc9\xf9\x2f\x09\x00\xe3\x6c\xf2\x33\x39\xf1\x97\x71\xb3\xf8\ +\x3e\x46\x8c\xc7\x71\x94\x83\x23\xdd\x27\x83\x7a\xc9\x27\xd4\xcd\ +\x7a\xb8\x96\x5b\x2e\x5d\xdd\x98\x2a\x04\x3e\xcd\xd5\x0c\x7c\x08\ +\xb2\xf1\x63\x6c\x83\x3a\x27\x3a\xc4\xdb\x46\xbf\x9e\xe3\x8c\x66\ +\x28\x0f\xb3\x2c\x80\xf8\xb5\xcb\xaf\x7f\xc7\x13\xae\x4d\xac\xfe\ +\xdb\x6a\x6a\x88\x43\x73\x33\xdb\xe1\xd2\x7d\x9c\x68\x87\x8f\xdb\ +\xe9\xc2\x54\x5b\xfc\x49\x8e\x76\xc1\x07\xb0\x52\x9e\xdf\x8e\x1f\ +\x3e\x9d\xe2\xdb\xf0\xef\xa6\xe8\xfb\x0d\x18\x75\x8b\xf8\x30\xec\ +\xfb\x16\x44\xfd\xab\x88\xf9\xc9\x59\x5d\xf7\xd6\x39\xcb\xf7\x26\ +\x58\xce\xdb\xc8\xd6\xd5\xf3\x21\xeb\xf4\x6b\x60\xd9\xb3\xad\xca\ +\xd3\x15\x4f\x1b\xf1\xf2\x99\xcd\x9f\x87\x0b\xe3\xf1\x8b\xe2\xdb\ +\xaf\x63\xf5\x8c\x4e\xce\xfe\xaa\x7b\x51\xbc\x80\xda\x8e\x45\x71\ +\x1d\xf5\x40\xad\x28\x7e\x98\x7a\xf1\x5f\xc0\xd7\x2d\xe2\xea\x84\ +\xf8\xad\x89\xad\xc7\xcb\x78\xd9\xe6\x6d\xbc\x2f\xf0\x7d\x72\x64\ +\x0f\x32\x3d\x88\x31\xbd\xdd\xbb\x39\xaa\xe7\x53\x6a\xe5\xfa\x91\ +\xac\x26\xd6\xea\x6b\xce\xfc\x28\x5b\xed\x83\x38\x06\xf7\xf8\xb2\ +\x6f\x60\xe8\x43\xde\x43\x1a\x23\xd6\x11\xf2\x82\x44\xd4\x91\x78\ +\x49\x8c\x99\x8f\xd8\x83\xde\x31\x32\x07\x1f\x17\x44\x9f\xe2\xef\ +\x11\xf6\x89\x10\xcf\x73\x06\xcf\xfd\x99\xdd\x93\xc8\xd2\x66\x65\ +\xbf\xb9\xcc\xe2\x0b\x99\xed\xb3\x9d\x8c\x9b\xaf\x31\xdd\x7f\x50\ +\x34\xbb\x47\xf7\x69\x96\xff\xd5\x1c\xd5\x10\x75\x9c\x2f\xb0\x25\ +\xd8\xb4\xab\xc4\x38\x1f\x86\x2f\xaf\xf8\x70\xe2\xc9\x7a\x60\x3f\ +\xc5\x2d\x4d\xce\x42\xd2\xe7\x67\x88\x8b\xc3\x71\xb6\x08\xde\xf6\ +\x2b\xe0\x84\x67\x93\xa5\x7c\x62\x93\xb9\x15\xc5\x9b\xa8\xed\x58\ +\x14\xd7\x51\x0f\xd4\x8a\xe2\x87\xa9\x17\xff\x8d\xcc\xae\xa5\x41\ +\x5c\x4c\xd8\x7d\xcc\x02\xb3\x90\x95\x4b\xa8\x57\x16\x7d\x56\x4f\ +\x5c\xf0\x6c\xfc\x97\xf9\xa8\x4d\xf2\x02\xfc\x7c\x9f\x31\x77\xee\ +\x0d\x1f\x37\xee\x17\xe6\xf5\xf2\x5b\xf1\xfe\xb3\x5c\x9e\x68\x13\ +\xf3\x73\x9c\xb5\x9e\x33\x1d\xa0\x1e\xcc\x6c\x48\xd4\x17\x9f\x4d\ +\x3c\x7f\x7f\x88\x3f\x5c\x7a\xf1\x85\xf8\xb7\xc9\x0c\x7c\x35\xc6\ +\x6f\x0f\x4b\x8b\x71\xfb\x89\xf6\x67\x31\x00\x6d\xd0\x82\x33\xfb\ +\x57\xb0\x52\x37\xf0\x76\xac\x1f\x7c\xda\x7c\xee\x24\x5b\x06\x3f\ +\xcd\xe2\x43\x99\x9d\xa4\x3b\xf6\xa2\xdf\xca\x1e\xca\x8f\x42\x9e\ +\xe9\x53\xee\x72\x7a\x23\x59\xbd\xb3\x05\x03\xd4\x61\x9c\xd9\x7d\ +\x05\xd9\x09\xf4\x0b\xe5\x17\xc1\x91\xb9\x15\xc5\x9b\xa8\xed\x58\ +\x14\xd7\x51\x0f\xd4\x8a\xe2\x87\xa9\x17\xff\x9d\xf8\x85\x8b\xd7\ +\xd0\x1f\x0b\x0a\xf4\x97\x50\x67\x05\xc3\x76\x65\x52\xab\x76\x67\ +\xf8\x85\x64\xcc\xd8\xde\xc3\x51\x8c\x47\xe2\x16\x8f\xf3\x8a\xf5\ +\xbf\x35\xc7\x2f\xec\x09\xcc\x11\xd4\xde\xff\x3b\x70\x5f\xf2\xdc\ +\x65\x9c\xe9\xdf\xc0\x87\x95\x53\x14\x29\xfc\x2a\xdc\xff\x04\x6f\ +\x1b\xcf\xde\x1e\x57\xf7\x74\xf4\x7f\xc6\x4b\xf7\x5e\x3f\xc2\x1a\ +\x7d\x0c\xc6\xf4\xf5\x53\xef\x65\x64\x96\x3f\xd6\x16\xc7\x2f\x80\ +\xe5\xfa\xf2\xb3\x12\x28\xa7\x7d\xf1\x1b\xc4\x73\xce\x71\xb6\x47\ +\x7e\x8e\x6c\x21\x66\x2f\x94\x4c\xf6\xd5\x64\x0b\x13\x49\x76\x51\ +\x22\x2a\x8a\x77\x50\x5b\xb1\x28\xae\xe3\x3f\x6b\x8b\xa2\x28\x8a\ +\xc8\xca\x17\x04\xda\xac\x5c\x9d\xac\x5e\xc1\x3c\xe5\x4a\xc7\x07\ +\x45\xd1\x18\x53\x96\x25\xa4\x0d\xf1\xf6\x9e\xb3\x2f\x12\x99\x4f\ +\x84\x36\x8c\xe5\x5b\xe8\xb2\x5a\x6e\x25\x8b\xc1\x3c\xc5\x7b\x78\ +\xc5\xfa\xdf\x9a\xe3\x17\xf6\x04\xe6\x58\x7b\xff\xb9\xdc\xf3\x1e\ +\x05\x66\x7e\x3c\x5f\xb3\xf3\x76\xa6\x7f\x03\xf7\x2e\x41\x51\xbc\ +\x1a\x3c\x48\x73\xff\x9e\xa5\x80\x21\x45\xec\xcb\x98\xc2\x03\xf0\ +\x32\xf4\x66\x67\x2e\x33\xfd\xd9\xcb\x79\xa1\x94\x25\x7c\x1e\xc4\ +\x8c\x79\x39\x8e\xf9\x8e\xf2\x7b\xdd\x2c\x5e\xc6\x91\xee\x41\x8e\ +\xca\x7d\x62\xda\xe2\x89\xe0\x9c\x1e\x9d\xd7\x0c\x6f\x4f\x7f\xfc\ +\xdc\xb2\x07\xce\x6c\x53\xfd\xa7\x6e\xb2\x58\xd7\xac\x4e\x2e\x12\ +\x17\x90\xed\xa7\xce\xeb\x65\xc4\x05\x61\x5b\x14\x45\x51\x7c\x3b\ +\xf5\x40\xad\x28\x8a\x22\x83\x5f\x10\xb2\x2f\x0a\xb8\x56\xf6\xd7\ +\xcb\xab\x5f\x26\xae\xb6\xbb\x0b\x04\xf7\xc5\x1f\x5d\xf8\xd3\x16\ +\x3f\xb7\x14\xe5\x6d\x1f\x9d\x0c\x6b\xb8\x37\xe6\x91\xed\xd1\xdc\ +\x8b\xcf\xe5\xf8\xbc\xa9\x76\xd8\xc4\xb1\x72\x36\x2e\x8a\x47\x78\ +\xf4\x7d\xef\x56\xb8\x7f\x3f\x60\x1f\xb3\x84\xb3\xb7\xec\x57\x2f\ +\x51\xf1\xdb\x60\xbf\xf9\x3f\xca\x72\xb8\xff\xdc\xeb\x49\xfe\xf4\ +\xa3\x0d\x8f\x5e\x67\x12\xdf\x7e\xa0\x3e\x8c\xbf\x48\x92\xe6\x52\ +\x10\x3f\xe6\x98\xd5\xcd\xb9\x01\xfa\x78\x19\xf1\x63\xdf\xf7\x79\ +\x8e\x72\x46\xdd\x03\x20\x54\x16\xce\x97\x8d\xf6\xc2\x94\xc5\x8b\ +\xf1\xe7\x72\x15\x7f\xee\xfd\x4f\x64\x26\x27\x47\xba\x74\x4f\x51\ +\x78\xe4\xf8\x2e\xfc\x64\xe3\x0b\xc7\xd7\x3b\x93\xff\x0c\x6d\x01\ +\xfc\x1a\x08\x58\x08\x0a\xd1\xfa\xc5\x2c\x8a\xa2\x28\xbe\x97\x7f\ +\xfe\xf9\x3f\xca\x23\x68\x09\xe4\x1d\xe2\xaf\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x11\xe0\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x11\xa7\x49\x44\x41\x54\x78\x5e\xed\x9d\x7b\xb0\x1b\xf5\ +\x75\xc7\xcf\x91\xe4\x7b\xb5\xb2\x0d\x26\x18\x1c\xc0\x40\x52\x1a\ +\x20\x25\x94\x94\x49\x61\x3a\x10\xd2\x0c\x49\x01\xed\xba\x74\x28\ +\x90\x10\x1e\xf1\x5d\x99\x4c\x87\x42\x4a\x28\x05\xdf\xc2\xa4\xce\ +\x50\x08\x21\xc9\xb4\x10\x18\x9a\xc2\xae\x4d\xa9\x1d\x82\xc9\x10\ +\xb0\xf6\x1a\x87\xd6\x25\xa5\x65\x28\x2d\x43\x42\x5b\x0c\x6d\x6a\ +\x08\xd4\x60\x20\xd8\xe6\xda\xe8\xea\x3e\xa4\xd3\xd1\xb5\xe3\x72\ +\x6d\x49\xfb\xdb\xc7\x5d\xed\xea\xf7\xd5\x3f\x66\xe6\xfe\x1e\xe7\ +\x7c\xce\xef\xc3\x4a\xab\xc7\x61\xc2\x03\x04\x40\xa0\x23\x01\x06\ +\x1b\x10\x00\x81\xce\x04\x20\x08\x4e\x07\x08\x74\x21\x00\x41\x70\ +\x3c\x40\x00\x82\xe0\x0c\x80\x40\x38\x02\xb8\x82\x84\xe3\x86\x59\ +\x9a\x10\x88\x24\xc8\x86\x6f\x5e\x3a\xb7\xd9\x98\xfa\x8d\x29\xc9\ +\x17\xb2\xca\xab\xd0\x6c\x6c\x3b\xe7\x86\xef\x3d\x9f\xd5\xf8\x11\ +\xf7\xec\x12\x08\x2d\x88\x77\xcb\x17\xbe\x4c\x39\xbe\x7d\x76\xc3\ +\x4b\x66\x75\x21\xf9\xcf\xc2\xc0\xe4\x19\x67\x5f\xb3\x76\x5b\x32\ +\x3b\x62\x97\xac\x10\x08\x25\xc8\xe3\xb7\x5e\x70\xe0\x04\x0d\xec\ +\xc8\x4a\x92\x2a\x71\x8a\xd0\xc3\xd6\xf0\xea\xf3\x54\xc6\x62\x8c\ +\x3e\x04\x42\x09\x52\xbd\xf9\x73\x1f\xe3\x7c\xe1\xdf\xfb\x0d\x93\ +\x90\x9c\x6d\x2d\x5f\xb3\xa1\xdf\xf2\x42\x3e\xe1\x09\x84\x12\xc4\ +\xbb\xed\x0b\x1f\xa7\x26\x3f\x17\x7e\xdb\x74\xce\x14\x91\xcd\x73\ +\xc7\x5f\x3f\xee\xd3\x2b\x9e\x98\x4a\x67\x84\x88\x2a\x69\x02\x10\ +\x64\x1f\xe2\x42\x72\x83\xb5\x7c\xcd\x2d\x49\x17\x02\xfb\xa5\x93\ +\x00\x04\xd9\x57\x10\xa1\x1a\xe7\x27\x8e\x31\xaf\x5b\xbb\x35\x9d\ +\x25\x43\x54\x49\x12\x80\x20\xed\x68\x8b\xfc\xc0\x1c\x5e\x73\x7e\ +\x92\x85\xc0\x5e\xe9\x24\x00\x41\x3a\xd4\x85\xa5\x79\x66\x79\xf8\ +\x7b\x1b\xd3\x59\x36\x44\x95\x14\x01\x08\xd2\x81\x34\x5e\xb0\x27\ +\x75\x04\xd3\xbd\x0f\x04\xe9\x52\x1f\x26\xba\xbe\xbc\x7c\xf5\x6d\ +\xe9\x2e\x21\xa2\x9b\x4d\x02\x10\xa4\x0b\x5d\xc1\x0b\xf6\xd9\x3c\ +\x7b\x99\x58\x1b\x82\xf8\x95\x49\xe8\xfb\xe6\xf0\xea\xcf\xfb\x0d\ +\xc3\xdf\xfb\x93\x00\x04\x51\xa8\xab\x50\xe3\x34\x6b\xf9\x03\x4f\ +\x29\x0c\xc5\x90\x3e\x23\x00\x41\x14\x0a\x2a\x22\x2f\x9a\xe3\xc7\ +\x9e\xc0\x2b\x56\x34\x15\x86\x63\x48\x1f\x11\x80\x20\x8a\xc5\x64\ +\xa1\x6b\xcb\xc3\xab\xbf\xad\x38\x1c\xc3\xfa\x84\x00\x04\x51\x2c\ +\xa4\x88\xec\x92\xc6\xe4\xf1\x4b\x6e\x5c\xbb\x45\x71\x0a\x86\xf5\ +\x01\x01\x08\x12\xac\x88\x9b\x58\x1a\x17\x97\x87\x1f\xe8\xbb\x0f\ +\x6a\x06\xc3\xa0\xcf\x68\x08\xa2\x4f\xad\x75\xcd\x74\x13\x11\xdd\ +\x65\x2e\x5f\x7d\x57\x18\x00\x10\x24\x0c\x35\xcc\xc9\x20\x01\xf9\ +\x94\xb9\x7c\xcd\x3f\x06\x0d\x1c\x82\x04\x25\x86\xf1\x99\x24\x20\ +\x4c\x5f\xb1\xae\x5f\xfd\x97\x41\x83\x87\x20\x41\x89\x61\x7c\x26\ +\x09\xb0\xc8\x57\xcb\xc3\x6b\x6e\x0a\x1a\x3c\x04\x09\x4a\x0c\xe3\ +\x33\x49\x00\x82\x64\xb2\x6c\x08\x3a\x29\x02\x10\x24\x29\xd2\xd8\ +\x27\x93\x04\x20\x48\x26\xcb\x86\xa0\x93\x22\x00\x41\x92\x22\x8d\ +\x7d\x32\x49\x00\x82\x64\xb2\x6c\x08\x3a\x29\x02\x10\x24\x29\xd2\ +\xd8\x27\x93\x04\x20\x48\x26\xcb\x86\xa0\x93\x22\x00\x41\x92\x22\ +\x8d\x7d\x32\x49\x00\x82\x64\xb2\x6c\x08\x3a\x29\x02\x10\x24\x29\ +\xd2\xd8\x27\x93\x04\x20\x48\x26\xcb\x86\xa0\x93\x22\x00\x41\x92\ +\x22\x8d\x7d\x32\x49\x00\x82\x64\xb2\x6c\x08\x3a\x29\x02\x10\x24\ +\x29\xd2\xd8\x27\x93\x04\x20\x48\x26\xcb\x86\xa0\x93\x22\x90\x49\ +\x41\x0a\x0b\x0e\x23\xe6\x5c\x52\x8c\xb0\x4f\x46\x09\x4c\xed\x7c\ +\x9b\x64\x6a\x22\x52\xf4\x99\x14\x64\xc1\x27\x2b\x94\x9b\x63\x44\ +\x4a\x1c\x93\xfb\x9f\xc0\xe8\xbf\x3d\x44\x53\xa3\xd1\xfa\x19\x41\ +\x90\xfe\x3f\x27\xda\x66\x08\x41\xb4\x2d\x3d\x12\x57\x21\x00\x41\ +\x54\x28\x61\x8c\xb6\x04\x20\x88\xb6\xa5\x47\xe2\x2a\x04\x20\x88\ +\x0a\x25\x8c\xd1\x96\x00\x04\xd1\xb6\xf4\x48\x5c\x85\x00\x04\x51\ +\xa1\x84\x31\xda\x12\x80\x20\xda\x96\x1e\x89\xab\x10\x80\x20\x2a\ +\x94\x30\x46\x5b\x02\xda\x08\x72\xf0\xb1\xa7\xd0\xd1\x67\x5c\xa2\ +\x6d\xa1\x91\x78\x74\x02\x3b\x5e\xfe\x09\x6d\xfe\x7b\x37\xf0\x42\ +\x99\x78\x27\x1d\x82\x04\xae\x2b\x26\xec\x43\x00\x82\xe0\x48\x80\ +\x40\x17\x02\x10\x04\xc7\x03\x04\x20\x08\xce\x00\x08\x84\x23\x80\ +\x2b\x48\x38\x6e\x98\xa5\x09\x01\x08\xa2\x49\xa1\x91\x66\x38\x02\ +\x10\x24\x1c\x37\xcc\xd2\x84\x00\x04\xd1\xa4\xd0\x48\x33\x1c\x01\ +\x08\x12\x8e\x1b\x66\x69\x42\xa0\xef\x04\x39\xfa\xe4\xcf\xd0\x80\ +\x71\xc0\x74\xf9\xf2\xc5\xf9\x94\x9f\x77\xb0\x26\xa5\x44\x9a\xb3\ +\x41\x40\x26\x6a\x34\x39\xfa\xd6\xde\xa5\x5f\x79\xf6\x31\x9a\xac\ +\xd7\x7c\xb7\x4a\xed\x3b\xe9\x9f\xb4\xbf\x4e\xf3\x0f\x39\xd2\x37\ +\x01\x0c\x00\x81\x30\x04\xfe\xe1\xaf\xbe\x42\x63\xef\xbe\xed\x3b\ +\x15\x82\xf8\x22\xc2\x80\x7e\x24\x00\x41\xfa\xb1\xaa\xc8\x29\x36\ +\x02\x10\x24\x36\x94\x58\xa8\x1f\x09\x40\x90\x7e\xac\x2a\x72\x8a\ +\x8d\x00\x04\x89\x0d\x25\x16\xea\x47\x02\x10\xa4\x1f\xab\x8a\x9c\ +\x62\x23\x00\x41\x62\x43\x89\x85\xfa\x91\x00\x04\xe9\xc7\xaa\x22\ +\xa7\xd8\x08\x40\x90\xd8\x50\x62\xa1\x7e\x24\x00\x41\xfa\xb1\xaa\ +\xc8\x29\x36\x02\x10\x24\x36\x94\x58\xa8\x1f\x09\x40\x90\x7e\xac\ +\x2a\x72\x8a\x8d\xc0\xac\x0b\x32\xe6\xd9\x5f\x27\xa2\xdf\x0a\x12\ +\xb1\x34\x29\x3f\xd5\xa4\xf9\x2a\x73\x78\x4e\xb1\x44\x9c\x47\x9f\ +\x35\x15\x58\x18\x13\x9c\xc0\x64\xed\x3d\x11\x11\xbf\x89\x39\xa6\ +\x7a\x3e\x4f\x75\xbf\x71\x33\xfe\x2e\xbc\x91\xc7\xaa\x95\x9d\xc4\ +\x34\x2f\xd0\x44\x0c\x06\x01\x0d\x08\x88\xd0\x76\xae\x55\xed\x67\ +\x99\xf9\x64\x0d\xf2\x45\x8a\x20\x10\x88\x80\x08\x3d\xcb\x63\x9e\ +\xbd\x86\x88\x2f\x0a\x34\x13\x83\x41\x40\x0f\x02\x6b\x5a\x82\xac\ +\x20\xe2\x3f\xd3\x23\x5f\x64\x09\x02\x41\x08\xc8\x0a\xae\x79\x43\ +\x17\x31\xe5\xd6\x04\x99\x86\xb1\x20\xa0\x03\x01\x11\xba\x88\x27\ +\x1e\x1b\x3a\xb9\xd1\xc8\x3d\xab\x43\xc2\xc8\x11\x04\x82\x10\xc8\ +\x33\x9d\xcc\x32\x72\xd5\x60\x5d\x6a\xc1\x6e\x7f\x05\xd9\x05\x63\ +\x41\x20\xa3\x04\x8a\x5c\x2a\x72\x2b\xf6\x5a\xd5\xde\xc2\xcc\x87\ +\x67\x34\x0f\x84\x0d\x02\xb1\x13\x10\x91\x2d\x25\xcb\x5d\x3c\x2d\ +\xc8\x98\x67\x6f\x24\xe2\x4f\xc7\xbe\x0b\x16\x04\x81\xcc\x12\x90\ +\x8d\x86\xe9\x9e\xf9\x4b\x41\xee\x26\xe2\x3f\xc8\x6c\x2e\x08\x1c\ +\x04\xe2\x26\x20\x74\xb7\x61\x39\x57\x4c\x0b\x52\xaf\xda\x57\x0b\ +\xf3\x5f\xc4\xbd\x07\xd6\x03\x81\xac\x12\x60\xa2\xab\x8b\xa6\x73\ +\xfb\x6e\x41\xd6\x2f\x2b\x4b\x53\xbc\xac\x26\x83\xb8\x41\x20\x6e\ +\x02\xcc\x52\x2e\x96\xdd\xf5\xbb\x05\x19\xf9\xe2\x31\x22\x85\x9f\ +\xc5\xbd\x09\xd6\x03\x81\xac\x12\x60\x91\x63\x8a\x96\xbb\x79\x5a\ +\x10\x79\xf0\x82\x7c\xbd\x34\x7f\x9c\x98\xf3\x59\x4d\x08\x71\x83\ +\x40\x6c\x04\x44\x1a\x86\xe5\x16\x5a\xeb\x4d\x0b\xd2\x7a\x8c\x79\ +\x95\x17\x88\xe8\xa3\xb1\x6d\x82\x85\x40\x20\xb3\x04\xe4\x05\xc3\ +\x74\x4f\x98\x21\x48\xcd\xab\x3c\xcc\x44\xbf\x97\xd9\x9c\x10\x38\ +\x08\xc4\x44\x40\x44\x1e\x2e\x59\xee\x79\x33\x04\xa9\x57\xed\x5b\ +\x85\xf9\xfa\x98\xf6\xc0\x32\x20\x90\x61\x02\x72\xab\x61\xba\xc3\ +\xfb\x3c\xc5\x1a\x1a\x22\xca\xb9\x19\xce\x0a\xa1\x83\x40\x4c\x04\ +\x64\xc8\x30\xdd\x55\x33\x9f\x62\x8d\x54\x4e\x63\xa1\x7f\x8a\x69\ +\x07\x2c\x03\x02\x99\x25\x20\xd2\x3c\xad\x64\xad\x7c\x6a\x86\x20\ +\xb2\xee\x4b\x0b\xeb\xb9\x86\x7f\x27\x92\xcc\xa6\x8d\xc0\x41\x40\ +\x8d\x40\x71\x4a\x0e\xe0\x73\xdd\x9d\x33\x04\x99\xbe\x93\x55\xb5\ +\x47\x89\x59\xe9\xc7\x18\xd4\xb6\xc2\x28\x10\xc8\x16\x01\x11\x79\ +\xa7\x64\xb9\x0b\x7f\x19\xf5\xde\xdb\xbc\x7b\x04\x79\x8a\x98\x03\ +\xfd\xc2\x49\xb6\xd2\x47\xb4\x20\xe0\x43\x40\xe4\x29\xc3\x72\x4f\ +\xeb\x20\x48\x65\x15\x31\x7d\x11\x10\x41\x40\x5f\x02\xb2\xca\x30\ +\xdd\xa1\xf6\x82\x78\x95\xd6\xad\xad\x5b\xf4\x85\x83\xcc\x75\x27\ +\x20\x24\xc3\x25\xd3\xbd\xb5\xad\x20\xe3\xd5\x65\xe7\x35\x59\x7e\ +\xa0\x3b\x24\xe4\xaf\x2f\x81\x5c\x53\xce\x1b\x5c\xe2\x3e\xdc\x5e\ +\x90\xc7\x2e\x3f\xa1\xd9\x68\xfe\x87\xbe\x78\x90\xb9\xee\x04\x72\ +\xdc\x3c\x61\xb0\xbc\xb2\xf5\xb1\xab\xe9\xc7\x8c\x17\xe9\xf8\x7e\ +\xba\xee\xc7\x03\xf9\x17\xdf\x1b\x2d\xf0\x85\x6b\x1b\x6d\x05\xd9\ +\x7d\x27\xab\xb2\x99\x98\x3e\x0c\x54\x20\xa0\x1d\x01\x91\xcd\x86\ +\xe5\x1e\xf3\xfe\xbc\x67\x5c\x41\xa6\x05\xf1\x2a\xeb\x89\xe8\x6c\ +\xed\xe0\x20\x61\x10\x20\x59\x6f\x98\x6e\xb9\xab\x20\x35\xcf\xbe\ +\x9d\x89\xbf\x0c\x5a\x20\xa0\x1b\x01\x21\xba\xbd\x64\x3a\x57\x77\ +\x15\xa4\x5e\xad\x5c\x21\x4c\x77\xe9\x06\x07\xf9\x82\x00\x4b\xf3\ +\x8a\xa2\xb5\xf2\xee\xee\x4f\xb1\xd6\x57\xce\xa4\x26\xfd\x1d\x70\ +\x81\x80\x76\x04\xb8\x79\xa6\x51\x5e\xb9\xb1\xfb\x53\xac\x91\x65\ +\x8b\x59\xe4\x35\xed\xe0\x20\x61\xed\x09\x14\x9b\x93\x8b\x79\xc9\ +\xdf\x6c\xe9\x2a\xc8\x9e\x17\xea\xad\x9f\x22\x1d\xd4\x9e\x18\x00\ +\xe8\x44\x60\xdc\x30\x9d\xe2\xbe\x09\xef\x77\x17\xab\x35\xa0\xe6\ +\x55\x9e\x63\xa2\x8f\xeb\x44\x07\xb9\xea\x4d\x40\x88\x9e\x2b\x99\ +\xce\x7e\x8d\xa4\xda\x0a\x32\xe6\x55\x1e\x20\xa2\xcf\xe9\x8d\x0c\ +\xd9\x6b\x45\x40\xe4\x01\xc3\x72\xf7\x6b\x24\xd5\x5e\x90\x6a\xe5\ +\x6b\xc4\xf4\x55\xad\x00\x21\x59\xcd\x09\xc8\xd7\x0c\xd3\x5d\xa1\ +\xf4\x14\x6b\x6c\xc4\xbe\x98\x84\xff\x56\x73\x62\x48\x5f\x23\x02\ +\x42\x74\x71\xc9\x74\xf6\x6b\x24\xd5\xf6\x0a\x32\xe1\xd9\x9f\x68\ +\x10\xff\xab\x46\x7c\x90\xaa\xe6\x04\xf2\xc2\x9f\x18\xb0\xee\xdd\ +\xaf\x91\x54\x5b\x41\xe4\x11\x7b\x7e\xbd\xc0\xa3\x9a\x33\x43\xfa\ +\x1a\x11\x78\xff\xf7\xd0\x7d\x6f\xf3\xee\xb9\x93\xf5\x3a\x13\x1d\ +\xa6\x11\x23\xa4\xaa\x29\x01\x11\x79\xbd\x64\xb9\x47\xb4\x4b\xbf\ +\xed\x15\x64\xf7\x7b\x21\xf6\x13\x44\xfc\x29\x4d\x99\x21\x6d\x9d\ +\x08\x08\x3d\x61\x58\x4e\xdb\x06\x52\x9d\x05\xa9\xda\xdf\x25\xe6\ +\x2f\xe9\xc4\x09\xb9\x6a\x4b\xe0\xbb\x86\xe9\xb4\x6d\x20\xd5\x51\ +\x90\x9a\x67\x5f\xc3\xc4\xdf\xd6\x16\x19\x12\xd7\x86\x80\x10\x5d\ +\x53\x32\x9d\xb6\x0d\xa4\x3a\x0a\x52\xf7\x86\x2c\xa1\xdc\x3a\x6d\ +\x28\x21\x51\x6d\x09\xb0\x90\x55\xb4\x9c\xb6\x0d\xa4\x3a\x0b\xb2\ +\x6e\xe9\x47\x24\x97\xff\x2f\x6d\xa9\x21\x71\x6d\x08\x70\x9e\x3e\ +\x52\x3c\xdb\x69\xdb\x40\xaa\xa3\x20\x68\xaa\xa3\xcd\xf9\xd0\x3b\ +\x51\x91\x46\xb1\xb6\x73\xf0\xfd\xdf\x43\x57\xba\xcd\x3b\x7d\x27\ +\xab\x6a\x6f\x22\xe6\xe3\xf5\x26\x18\x7f\xf6\xcd\x79\x8b\x89\x72\ +\xb9\xf8\x17\xce\xd0\x8a\x3c\x55\x27\xae\xbd\x95\x86\x88\x37\x19\ +\xa6\xf3\x6b\x9d\x02\xe9\x78\x05\x99\x7e\x2f\xa4\x6a\x3f\xc2\xcc\ +\xbf\x9b\x86\x2c\xfa\x29\x86\xb1\x93\xae\x24\x19\x98\xdb\x4f\x29\ +\x05\xce\x25\xbf\xe3\x7f\x68\xf0\xbf\x1f\x0a\x3c\x2f\xee\x09\x42\ +\xf4\x48\xc9\x74\x3a\x36\x8e\xea\x2a\x48\xdd\xb3\x6f\x13\xe2\x3f\ +\x89\x3b\x28\xdd\xd7\x83\x20\x44\x69\x11\x84\x89\x6e\x2b\x9a\x4e\ +\xc7\xc6\x51\x5d\x05\x19\xab\xda\x15\x62\xbe\x57\xf7\x03\x1d\x77\ +\xfe\x10\x24\x3d\x82\x90\x50\xc5\xb0\x9c\x8e\x8d\xa3\xba\x3f\xc5\ +\x5a\x6f\x9f\xce\x4d\x7e\x32\xee\x03\xa2\xfb\x7a\x10\x24\x3d\x82\ +\x08\xd3\xe9\xa5\xb2\xf3\xcf\xa1\x5e\x83\xc8\x86\x4b\x0f\xad\x4f\ +\x0d\xbc\xa9\xfb\x81\x8e\x3b\x7f\x08\x92\x1e\x41\x8a\xdc\x3c\x94\ +\xcb\x2b\x3b\x36\x8e\xea\x7a\x05\xd9\x73\x27\x0b\x4d\x75\x62\x36\ +\x04\x82\xa4\x44\x10\x91\x9d\x86\xe5\x1e\xd0\xad\xbc\xbe\x82\xd4\ +\x3c\xfb\x69\x26\x3e\x35\xe6\x33\xa2\xf5\x72\x10\x24\x1d\x82\x08\ +\xd1\xd3\x25\xd3\xe9\xda\x30\xca\x57\x90\x31\xcf\xbe\x8f\x88\x2f\ +\xd3\xfa\x44\xc7\x9c\x3c\x04\x49\x87\x20\x24\x74\x9f\x61\x39\x4b\ +\x23\x5d\x41\xc6\xaa\x43\x37\x10\xe7\xfe\x3c\xe6\x33\xa2\xf5\x72\ +\x10\x24\x2d\x82\xc8\x0d\x86\xe5\x76\x6d\x18\xe5\x7b\x05\x19\x1f\ +\x19\x3a\xbf\x29\xb9\xb5\x5a\x9f\xe8\x98\x93\x87\x20\xe9\x10\x24\ +\x47\x72\xfe\xa0\xe9\x76\x6d\x18\xe5\x2f\x88\xb7\xf4\xc4\x26\xe5\ +\x9f\x8f\xf9\x8c\x68\xbd\x5c\x10\x41\xc6\xc7\x6b\xb4\x7d\xdb\x9b\ +\x34\x5e\x7f\x2f\x34\xb3\x5c\x2e\x4f\x46\x69\x3e\x7d\xe0\xe0\xc3\ +\xa8\xf5\xdf\xdd\x1e\xef\xee\x78\x9b\x76\x8d\x6e\xa3\xa9\xc6\xe4\ +\x7e\xc3\x5a\x6b\x1c\x74\xd0\x22\x9a\x33\xb0\xdf\xef\xab\x05\x8e\ +\x2d\x0d\x6f\x14\xe6\x84\x4e\x1c\xb4\x9c\xae\x0d\xa3\x7c\x05\x41\ +\x53\x9d\xc0\xb5\xf7\x9d\xa0\x2a\xc8\xd4\xd4\x24\xbd\xb1\xe5\x67\ +\xd4\x6c\xee\xed\xe7\xe2\xbb\x76\xb7\x01\xad\x03\x7e\xe8\xa2\xa3\ +\x3b\x0e\x19\x1d\x7d\x87\xb6\xbf\xf3\x46\xd7\x3d\x5a\x82\x1d\x71\ +\xe4\xb1\xbe\xa2\xf9\x05\x9a\x06\x41\x8a\x5c\x2a\x72\xf9\x3b\xe3\ +\x91\x5e\x83\x4c\xdf\xea\xf5\x2a\xaf\x10\x51\x67\xb2\x7e\x34\xf0\ +\xf7\x19\x04\x54\x05\x51\x39\xb0\x41\xd1\x1e\xfd\xe1\x8f\x75\x9c\ +\xb2\xf5\x8d\x97\x95\xae\x54\x1f\x3c\xfc\x57\x68\x70\xb0\x14\x74\ +\xeb\x19\xe3\x7b\x2f\x88\xbc\x62\x98\xae\x6f\xa3\x28\xdf\x2b\xc8\ +\x6e\x41\xec\x0d\x44\xfc\x3b\x91\x88\x60\xf2\x5e\x02\xaa\x82\xec\ +\xd8\xfe\x26\xb5\x9e\xf2\xc4\xf9\x38\xfc\x88\x5f\xed\xf8\x14\xe9\ +\xd5\x9f\xbf\x40\xd2\x6c\xfa\x6e\x77\xe0\x82\x43\x68\xc1\x41\x8b\ +\x7c\xc7\x75\x1b\xd0\x73\x41\x44\x36\x18\x96\xeb\xdb\x28\x4a\x49\ +\x90\x5a\xd5\xbe\x83\x99\xaf\x8a\x44\x04\x93\x03\x0b\x82\x2b\xc8\ +\xec\x1d\x1a\x21\xb9\xa3\x64\xba\x7f\xe4\xb7\x83\x92\x20\xf5\x91\ +\xca\x95\x22\xf4\x1d\xbf\xc5\xf0\x77\x35\x02\xaa\x57\x90\xd6\x6b\ +\x8f\xff\x7d\xed\x25\xa5\xff\xab\xab\xec\x3c\x77\xde\x02\x5a\x78\ +\xc8\xe2\x8e\x43\xdf\xdb\xb5\x9d\x7e\xf1\xf6\x8c\x5f\xff\xdf\x6f\ +\x6c\x21\x5f\xa0\x23\x8e\x8a\xfe\x15\xa1\x5e\x5f\x41\x98\xe4\xca\ +\xa2\xe9\xfa\x36\x8a\x52\x13\xc4\x5b\xf6\x59\x21\xf9\x91\x4a\x11\ +\x30\xc6\x9f\x80\xaa\x20\xad\x95\x5a\x2f\xd4\xb7\xfd\xe2\x75\x6a\ +\x34\x26\x69\x62\xa2\xd5\x95\x22\xd8\x83\x73\x39\x1a\x18\x30\xa8\ +\x58\x2c\xd1\x01\x07\x2e\xf4\x7d\x71\xdd\x92\x64\xe7\xce\x1d\xd4\ +\x98\x1c\xa7\xa9\xc6\xd4\xde\xcd\x06\x8b\x73\xa9\x50\x98\x33\xfd\ +\xd4\xaa\xf5\x6f\xd4\x47\xcf\x05\x11\xf9\x6c\xd1\x72\x7d\x1b\x45\ +\x29\x09\x52\x7b\xf4\xd2\xa3\x38\x3f\xf0\xf3\xa8\x50\x30\x7f\x37\ +\x81\x20\x82\xf4\x2b\xb3\x5e\x0b\x22\x85\xe6\x51\xa5\xb3\x56\xfa\ +\x36\x8a\x52\x12\x64\xba\xa8\x5e\x05\x4d\x75\x62\x3a\xad\x10\xa4\ +\xe7\x6f\x14\xb6\x6d\x96\xd3\xae\xbc\xca\x82\xd4\xbc\xca\x4f\x99\ +\xe8\xd7\x63\x3a\x23\x5a\x2f\x03\x41\x7a\x2b\x88\x88\xfc\xb4\x64\ +\xb9\x4a\x0d\xa2\xd4\x05\xa9\x56\x1e\x64\xa6\x0b\xb4\x3e\xd9\x31\ +\x25\x0f\x41\x7a\x2b\x08\x91\x3c\x68\x98\xae\x52\x83\x28\x65\x41\ +\xc6\xbc\xca\x4d\x44\x74\x63\x4c\x67\x44\xeb\x65\x20\x48\x8f\x05\ +\x11\xb9\xc9\xb0\x5c\xa5\x06\x51\xea\x82\x54\x87\x2e\x21\xce\xdd\ +\xaf\xf5\xc9\x8e\x29\x79\x08\xd2\x63\x41\x58\x2e\x31\xca\xee\x6a\ +\x95\x72\x2a\x0b\x32\xb1\xae\x72\x4a\x23\x47\xff\xa2\xb2\x28\xc6\ +\x74\x27\x10\x46\x90\xd6\xed\xde\xc6\xd4\x44\x2a\xd1\xe6\x0b\x03\ +\x81\x6f\xfd\xf6\xf2\x2e\x56\x3e\xd7\x38\x65\xe0\x9c\x55\x4a\x0d\ +\xa2\x94\x05\x41\x53\x9d\xf8\xce\x66\x10\x41\x5a\xef\x4b\x6c\x7b\ +\x67\x6b\x6c\x1f\x58\x8c\x2f\x8b\x99\x2b\x15\xf2\x73\x68\xe1\xa2\ +\x23\x95\x3f\xa3\xd5\x4b\x41\x3a\x35\xcb\x89\x74\x17\xab\x35\xb9\ +\x56\xad\x6c\x65\xa6\x68\x1f\xc2\x99\xad\x0a\x65\x68\x5d\x55\x41\ +\x5a\x57\x8d\x2d\xaf\xbd\x94\x99\xcc\x82\x7c\xd2\xb7\x57\x82\x08\ +\xc9\xd6\x92\xe9\x2a\x37\x86\x52\xbe\x82\xec\x79\x2f\xe4\xc7\x44\ +\x74\x46\x66\x2a\x96\xd2\x40\x55\x05\x99\x8d\x0f\x2b\xce\x36\x12\ +\xd5\x4f\xfa\xf6\x4a\x10\x22\xf9\xb1\x61\xba\xbf\xad\xca\x21\xa8\ +\x20\xf7\x10\xd1\x32\xd5\xc5\x31\xae\x3d\x01\x08\xd2\xc3\x17\xe9\ +\x22\xf7\x18\x96\xab\xdc\x18\x2a\x90\x20\xb5\x6a\xe5\x5a\x66\xfa\ +\x26\x0e\x7e\x34\x02\xaa\x82\xa8\x7c\x78\x30\x5a\x24\xf1\xcf\xee\ +\xf6\x71\xfa\xf7\xef\xd6\xab\x2b\x88\xb0\x5c\x5b\x2a\xbb\xca\x8d\ +\xa1\x02\x09\x52\x1f\xa9\x2c\x11\xa1\x47\xe3\xc7\xaa\xd7\x8a\xaa\ +\x82\xb4\xa8\x6c\x79\xf5\xc5\x19\x1f\x1a\x4c\x33\x29\xc3\x98\x4f\ +\x87\x7e\x50\xed\x7b\x75\xbd\x12\x84\xa9\xb9\xa4\x68\xae\xac\xaa\ +\x72\x0c\x26\xc8\x7a\xfb\x38\x69\xf2\x8b\xaa\x8b\x63\x5c\xb4\xa7\ +\x58\xad\xd9\xad\x8f\xbc\xef\xda\xb5\x83\xea\xb5\x5d\xd4\x14\xff\ +\x2f\x33\xf5\x82\x79\xeb\xd3\xbd\x86\x31\x97\xe6\xce\x3b\x48\x79\ +\xfb\xde\x09\x92\x3b\xae\x68\xde\xa3\xdc\x18\x2a\x90\x20\x68\xaa\ +\xa3\x5c\xff\xae\x03\x83\x5c\x41\xe2\xd9\x31\x7d\xab\xf4\x44\x10\ +\x9f\x66\x39\xed\x28\x05\x12\x64\xcf\x9d\xac\xd6\x7d\xc7\x63\xd3\ +\x87\x3c\x3b\x11\x41\x90\x5e\xbd\x48\x97\x97\x0c\xd3\x0d\xf4\x6d\ +\xaf\xc0\x82\xd4\xbc\xca\xa3\x4c\xb4\x24\x3b\xc7\x31\x7d\x91\x42\ +\x90\xde\x08\x22\x22\x8f\x96\x2c\xf7\xdc\x20\x27\x22\xb0\x20\xf5\ +\xaa\xfd\x2d\x61\xfe\xe3\x20\x9b\x60\xec\x4c\x02\x10\xa4\x37\x82\ +\xb0\xd0\xb7\x8a\x96\x13\xa8\x21\x54\x60\x41\xc6\x46\xec\xcb\x49\ +\xf8\xaf\x71\xe8\xc3\x13\x80\x20\xbd\x11\x84\x88\x2e\x37\x4c\x27\ +\x50\x43\xa8\xe0\x82\x78\x95\xd6\x3b\xe9\xad\x77\xd4\xf1\x08\x49\ +\x00\x82\xf4\x48\x10\x69\x9c\x61\x58\xab\x02\x35\x84\x0a\x2c\x88\ +\x3c\xb2\x6c\x51\xbd\x20\x5b\x43\x9e\x0d\x4c\xc3\x77\xd2\xa7\xcf\ +\x40\x2f\xee\x62\x15\x0b\x13\x8b\xf8\xac\xfb\x03\xb5\xd6\x0d\x2c\ +\xc8\xf4\x9d\xac\xaa\x8d\xa6\x3a\x11\x54\xc7\x15\xa4\x07\x82\x28\ +\x34\xcb\x89\xe5\x36\x6f\x6b\x91\x9a\x67\x3f\xc3\xc4\xbf\x19\xe1\ +\x8c\x68\x3d\x15\x82\x24\x2f\x88\x08\x3d\x53\xb2\x9c\xc0\x8d\xa0\ +\x42\x5e\x41\x2a\xf7\x13\xd3\x25\x5a\x9f\xf2\x08\xc9\x43\x90\xe4\ +\x05\x21\xa2\xfb\x0d\xd3\x09\xdc\x08\x2a\x9c\x20\x5e\xa5\xf5\xdd\ +\xf4\xd6\x77\xd4\xf1\x00\x81\x6c\x10\x90\xe6\x8d\x86\xb5\xf2\xe6\ +\xa0\xc1\x86\x12\xa4\xe6\xd9\x17\x32\xf1\xf7\x83\x6e\x86\xf1\x20\ +\xd0\x2b\x02\x22\x74\x61\xc9\x72\x02\x37\x82\x0a\x25\xc8\xc4\x3a\ +\xfb\xa4\x46\x8e\x7f\xd2\xab\x64\xb1\x2f\x08\x04\x25\x90\xcb\xf1\ +\x49\x83\xe7\xdc\x1b\xb8\x11\x54\x28\x41\xd0\x54\x27\x68\x79\x30\ +\xbe\xd7\x04\x54\x9a\xe5\xc4\x76\x17\x6b\xfa\x56\xaf\x67\xbf\x4a\ +\xc4\x47\xf6\x3a\x71\xec\x0f\x02\xbe\x04\x84\x5e\x35\x2c\x47\xed\ +\x8b\x2a\xfb\x2c\x16\xea\x0a\x32\x2d\x48\xd5\x7e\x9c\x98\x3f\xe3\ +\x1b\x1c\x06\x80\x40\xef\x09\x3c\x6e\x98\x4e\xa8\x06\x50\xa1\x05\ +\xa9\x79\xf6\x9d\x4c\xfc\x87\xbd\xcf\x1d\x11\x80\x40\x77\x02\x22\ +\x74\x67\xc9\x72\x42\x35\x80\x0a\x2d\x48\xbd\x6a\x5f\x25\xcc\x77\ +\xa0\x38\x20\x90\x76\x02\xcc\x74\x55\xb1\xec\xdc\x19\x26\xce\x08\ +\x82\x0c\x9d\x25\x9c\x7b\x2c\xcc\xa6\x98\x03\x02\x49\x12\x60\x96\ +\xb3\x8a\x65\x37\x54\x03\xa8\xd0\x82\x8c\xad\x5f\xfa\x21\x6a\xe6\ +\x5f\x4e\x32\x51\xec\x05\x02\x21\x09\x7c\xc8\x30\x9d\x50\x0d\xa0\ +\x42\x0b\xb2\xfb\x4e\x16\x9a\xea\x84\x2c\x18\xa6\x25\x47\x40\xb9\ +\x59\x4e\xac\xb7\x79\xf7\xdc\xea\x7d\x9e\x88\x4f\x4c\x2e\x57\xec\ +\x04\x02\xc1\x08\x08\xd1\xf3\x25\xd3\x39\x29\xd8\xac\xff\x1f\x1d\ +\xe9\x0a\x52\xf3\xec\x87\x98\xf8\xf7\xc3\x6e\x8e\x79\x20\x30\xdb\ +\x04\x44\xe4\xa1\x92\xe5\x86\x6e\xfc\x14\x49\x90\xb1\xaa\x7d\x33\ +\x31\xff\xe9\x6c\x27\x89\xf5\x41\x20\x34\x01\xa6\x9b\x8d\xb2\x13\ +\xba\xf1\x53\x34\x41\x46\xec\xcb\x48\xf8\xbe\xd0\xc1\x63\x22\x08\ +\xcc\x3e\x81\xcb\x0c\xd3\x09\xdd\xf8\x29\x92\x20\x13\xde\xd0\xa9\ +\x0d\xca\x3d\x3d\xfb\x39\x62\x07\x10\x08\x47\x20\xdf\xa4\x53\x07\ +\x96\x38\xcf\x84\x9b\x4d\x14\x49\x10\x34\xd5\x09\x8b\x1d\xf3\x92\ +\x22\x10\xa4\x59\x4e\xec\x77\xb1\x5a\x0b\xd6\x3c\xfb\x2d\x26\x3e\ +\x24\xa9\x84\xb1\x0f\x08\xa8\x12\x10\x92\xb7\x4a\xa6\x1b\xa9\xe1\ +\x53\xa4\x2b\x48\x2b\xd0\xb1\xaa\xfd\x24\x31\x9f\xae\x1a\x34\xc6\ +\x81\x40\x62\x04\x84\x9e\x34\x2c\x27\x52\xc3\xa7\x18\x04\xa9\x38\ +\xc4\x64\x27\x96\x34\x36\x02\x01\x65\x02\xe2\x18\xa6\x1b\xa9\xe1\ +\x53\x64\x41\x6a\x23\x95\xeb\x58\xe8\x1b\xca\x31\x63\x20\x08\x24\ +\x44\x40\x48\xae\x2b\x99\x6e\xa4\x86\x4f\x91\x05\x19\xf7\x86\xce\ +\x6d\x52\xee\x87\x09\xe5\x8c\x6d\x40\x40\x99\x00\x8b\x9c\x5b\xb4\ +\xdc\x48\x0d\x9f\xa2\x0b\xb2\x6e\xe9\xf1\xcd\x5c\x7e\x93\x72\xd4\ +\x18\x08\x02\x09\x11\xe0\x9c\x1c\x5f\x3c\xc7\x8d\xd4\x26\x38\xb2\ +\x20\x7b\x5e\xa8\xe3\x97\x16\x13\x2a\x3a\xb6\x51\x23\x20\x44\xef\ +\x96\x4c\x67\x81\xda\xe8\xce\xa3\x62\x11\x44\x7e\x64\x1f\x5e\x1f\ +\xcf\xa1\xa9\x4e\xd4\x6a\x60\x7e\x6c\x04\x8a\xb9\xa9\x17\xd9\x5c\ +\x15\xf9\x37\xa4\x63\x11\x24\xb6\xac\xb0\x10\x08\xa4\x8c\x00\x04\ +\x49\x59\x41\x10\x4e\xba\x08\x40\x90\x74\xd5\x03\xd1\xa4\x8c\x00\ +\x04\x49\x59\x41\x10\x4e\xba\x08\x40\x90\x74\xd5\x03\xd1\xa4\x8c\ +\x00\x04\x49\x59\x41\x10\x4e\xba\x08\xfc\x1f\xc8\x2f\xf6\xa5\xa3\ +\x2a\x4e\x64\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x1d\x21\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x1c\xe8\x49\x44\x41\x54\x78\x5e\xed\x9d\x0b\x74\x5c\xc5\ +\x79\xc7\xff\xdf\x5d\xd9\xe2\x61\x02\x09\x90\x87\xa1\x84\xe4\x84\ +\x02\x49\x9b\x40\x20\x81\xd0\xa6\xb5\x5b\x90\x6c\x1a\x02\x58\x92\ +\x2d\xb9\x98\x68\x1f\x12\xc4\x49\x48\x81\x24\x2d\xd0\x56\x38\x0f\ +\x9a\x36\x4d\x4c\x03\x81\x44\xba\x77\x56\x89\xb1\x25\x59\x12\x10\ +\x48\x25\xad\x84\xb1\x28\xaf\x3a\x04\x08\x25\x8f\xf2\x48\x42\xea\ +\x9a\xc4\x14\x27\x31\x06\x6c\x4b\xda\xfb\xf5\x8c\x24\x13\x21\xef\ +\x6a\xef\xdd\xdd\xb9\xba\xbb\xfb\xdd\x73\x74\x64\xfb\xce\xfc\x67\ +\xe6\x3f\xdf\xcf\x73\x1f\x73\x67\x08\x72\x88\x03\xe2\x40\x56\x07\ +\x48\xbc\x11\x07\xc4\x81\xec\x0e\x08\x20\x12\x1d\xe2\xc0\x1c\x0e\ +\x08\x20\x12\x1e\xe2\x80\x00\x22\x31\x20\x0e\xe4\xe7\x80\x8c\x20\ +\xf9\xf9\x26\xb9\x2a\xc4\x01\x01\xa4\x42\x3a\x5a\x9a\x99\x9f\x03\ +\x02\x48\x7e\xbe\x49\xae\x0a\x71\x40\x00\xa9\x90\x8e\x96\x66\xe6\ +\xe7\x40\xc5\x03\x92\x48\x24\xde\x02\xe0\x2d\x13\x13\x78\x53\x7e\ +\x16\x4a\xae\x52\x71\x20\x9d\xae\xfa\xc9\x86\x0d\xdf\x7c\xc1\x4f\ +\x7d\x2b\x0e\x90\x68\xb4\xf5\xfd\x96\x95\xfe\x73\x80\x96\x32\xe3\ +\x02\x3f\x66\x49\xda\xb2\x70\xe0\x79\x00\x4f\x02\x78\xda\xb2\xf0\ +\xe0\xa1\x87\x1e\x7a\xe7\x4d\x37\xdd\xb4\x3f\x5b\xcb\x2a\x06\x90\ +\x44\x22\x71\x7c\x3a\xcd\x9f\x26\xa2\x2b\x00\x2c\x2c\x8b\xae\x96\ +\x46\x14\xc3\x81\x9f\x03\xe8\x50\xca\xfe\x72\x26\xb1\x8a\x00\xa4\ +\xb9\x39\xb1\xc4\xb2\xe0\x00\x78\x67\x31\x1c\x15\x8d\xf2\x73\x80\ +\x08\x23\x8e\x63\xd7\xcc\x6e\x59\xd9\x03\x12\x8f\xc7\x4f\x67\xa6\ +\xc7\xca\xaf\x4b\xa5\x45\x06\x1c\xb8\x41\x29\xfb\xba\x99\xba\x65\ +\x0d\xc8\xea\xd5\x1f\x7f\xe3\x21\x87\x8c\xff\x2f\x80\xc3\x0c\x98\ +\x29\x92\x65\xe9\x80\xdb\xaa\x94\xea\x38\xd0\xb4\xb2\x06\x24\x16\ +\x8b\xf7\x01\x54\x57\x96\xfd\x28\x8d\x32\xe6\x80\x65\xa1\xd1\xb6\ +\xed\x1e\x5d\x40\xd9\x02\x12\x8d\xb6\x7c\x84\x88\xef\x36\xe6\xa2\ +\x08\x97\xb1\x03\xb4\x4d\xa9\x8e\xb3\xcb\x1a\x90\x78\x3c\x71\x97\ +\x3c\xc6\x2d\xe3\x18\x36\xde\x34\xba\x44\xa9\x8e\x8d\x65\x39\x82\ +\xc4\x62\xb1\x33\x01\xeb\x11\xe3\x1e\x4a\x01\xe5\xec\xc0\x16\xa5\ +\xec\x73\xcb\x14\x90\xc4\xb5\x00\xbe\x54\xce\xbd\x27\x6d\x33\xef\ +\x00\x33\x2e\x2a\x4b\x40\xa2\xd1\xc4\x56\x22\x2c\x29\xa6\x85\xcc\ +\x18\x2d\xa6\x9e\x68\x15\xc7\x01\x22\xe8\xa9\x42\x6f\x05\xf0\xc6\ +\xe2\x28\xfe\x5e\x45\xf7\x79\x59\x02\x12\x8b\x25\x7e\x02\xe0\xd4\ +\x22\x18\xf6\x10\x80\x4d\x13\x13\x55\x77\x7e\xe7\x3b\xdf\xdc\x51\ +\x04\x3d\x91\x30\xe4\x40\x43\xc3\xda\x45\x8b\x16\x8d\xbf\x97\x08\ +\xef\x25\xe2\xf3\x8b\x75\xff\x59\xae\x80\xfc\xa6\x90\xff\x51\x88\ +\xf0\x63\x66\xfa\x07\xa5\x3a\xee\x30\xd4\x9f\x22\x6b\xd8\x81\xe9\ +\xa7\x98\xd7\x00\x38\xa7\x90\xa2\xca\x15\x10\xce\xd7\x14\x0d\xc7\ +\xd8\xd8\xfe\xb3\x36\x6c\xd8\xf0\x4a\xbe\x1a\x92\x2f\x3c\x0e\xc4\ +\x62\x89\xeb\x01\xb4\xe5\x5b\x23\x01\x64\x86\x73\xfa\x9a\x33\x99\ +\xb4\x97\xe6\x6b\xa6\xe4\x0b\xa7\x03\xd1\x68\xe2\x12\x22\x6c\xc8\ +\xa7\x76\x02\xc8\x6b\xae\xd1\x13\x55\x55\x74\x6e\x7b\x7b\xfb\x8b\ +\xf9\x18\x29\x79\xc2\xed\x40\x2c\x16\xff\x1e\x40\x7f\xe5\xb7\x96\ +\x02\xc8\xb4\x63\xcc\xf8\x74\x32\x69\x7f\x3d\x93\x81\xb1\x58\xcb\ +\x72\x80\xd7\x00\xa8\x05\xf8\x15\x22\xfa\x6f\x80\x9e\x62\xc6\x7f\ +\x56\x57\x57\x0d\xdc\x7a\xeb\xad\xbf\xf5\x6b\xbc\xa4\x0f\xd6\x81\ +\x68\x34\xb1\x8a\x08\xdd\x7e\x4b\x15\x40\xa6\x1c\xdb\x5e\x5d\xbd\ +\xe0\x7d\x99\x02\x5d\x7f\x71\xe8\xba\x78\x00\xc0\xbb\xe6\x30\xf7\ +\x61\x22\x1a\x20\xe2\x41\xdb\xb6\x1f\xf5\xdb\x09\x92\x3e\x18\x07\ +\x62\xb1\x84\x7e\x79\x7c\xa6\x9f\xd2\x04\x10\x3d\x21\x8d\x70\xab\ +\xe3\xd8\x6b\x33\x8f\x1e\x09\xfd\xc2\x51\xbf\x78\xf4\x7a\xec\x04\ +\x30\x09\x4b\x24\x12\x19\x6e\x6f\x6f\xdf\xed\x35\xa3\xa4\x33\xeb\ +\x40\x2c\x16\x6f\x07\xa8\xc5\x4f\x29\x02\xc8\x24\x20\xbc\xdc\x71\ +\x9c\xa1\x2c\x80\x7c\x0b\x40\xab\x1f\x53\x67\xa5\xbd\x8f\x88\x07\ +\x88\x68\xc8\xb6\xed\xff\x2a\x40\x47\xb2\x16\xe8\x40\x3c\xde\xb2\ +\x96\x99\xbf\xe1\x47\x46\x00\x01\xc6\x94\xb2\xab\xb3\x99\x16\x8d\ +\x26\xfa\x89\xb0\xc2\x8f\xa9\x73\xa4\xdd\xae\x2f\xc5\x5c\x97\x07\ +\xc7\xc6\xf6\x6e\xdd\xb8\x71\xe3\x4b\x45\xd2\x15\x19\x0f\x0e\x44\ +\xa3\x2d\xe7\x10\xf1\x83\x1e\x92\xbe\x96\x44\x00\x01\xb6\x2b\x65\ +\x9f\x30\x07\x20\x45\x9f\xb6\x72\xa0\x2c\xfd\x99\x27\x33\x06\x5c\ +\xd7\xda\xd2\xd9\xd9\xae\x17\x12\x90\xc3\xa0\x03\xcd\xcd\x97\x9d\ +\x64\x59\xe9\xa7\xfd\x14\x21\x80\x00\x3f\x50\xca\xfe\xc0\x7c\x00\ +\x32\xb3\x4c\x22\xfc\x4c\xc3\xc2\x4c\xc3\x44\xe9\xfb\x94\x52\x7b\ +\xfc\x74\xa4\xa4\xcd\xed\x40\x73\x73\xf3\x51\x96\x55\xe5\xeb\x89\ +\x63\xc5\x03\x92\xeb\xe5\xa0\x89\x89\x8f\xb9\xbb\x12\x0c\xd0\x00\ +\xb3\x3b\x64\x59\x18\x75\x1c\xe7\x47\x1e\xf2\x48\x12\x0f\x0e\xc4\ +\x62\x09\x5f\xb3\x2c\x04\x90\x1c\x6f\xcf\xe7\x09\x90\xd9\x5d\xfd\ +\xd3\xa9\x27\x63\xd6\xd6\x97\x5e\xaa\xba\xaf\xb7\xf7\x96\x97\x3d\ +\xc4\x82\x24\xc9\xe0\x80\x00\x02\xc0\x8f\x09\x21\x1d\x41\xe6\x0a\ +\x6e\xbd\xc8\xd9\x00\x80\x2d\x91\x08\x8d\x76\x74\x74\xfc\x58\x48\ +\xf0\xee\x80\x9f\xd8\xd0\xaa\x32\x82\x94\xc6\x08\x32\x47\x04\xd0\ +\x13\x00\x0f\xeb\x4b\x31\xcb\xb2\x46\xdb\xdb\xdb\x5f\xf5\x1e\x2e\ +\x95\x97\x52\x00\x29\xff\x11\x64\xae\xa8\xde\xc3\x8c\x21\xcb\xe2\ +\x51\xd7\x75\x47\x93\xc9\xa4\xfe\x2e\x46\x8e\x19\x0e\x08\x20\x95\ +\x0d\xc8\x6c\x18\x1e\x21\xa2\xad\xfa\x32\xf2\xc8\x23\x17\x8d\xae\ +\x5f\xbf\x7e\x6f\xa5\xd3\x22\x80\x08\x20\x59\x18\xe0\x5d\x00\x6d\ +\xd1\xb0\x44\x22\x18\xb5\x6d\x5b\xdf\xf8\x57\xdc\x21\x80\x08\x20\ +\x1e\x83\x9e\xb7\x69\x58\xf4\xbd\x4b\x3a\x9d\x1e\xed\xec\xec\xdc\ +\xe7\x31\x63\x49\x27\x13\x40\x04\x90\x7c\x02\xf8\xd7\xcc\xb8\x8f\ +\x88\x46\x2d\x8b\x53\xb6\x6d\xff\x22\x1f\x91\x52\xc8\x23\x80\x08\ +\x20\x85\xc6\xe9\x3e\x66\xdc\x1e\x89\xa0\xdf\xb6\xed\xdb\x0b\x15\ +\x0b\x5b\x7e\x01\x44\x00\x29\x5a\x4c\x12\xe1\xee\x48\xc4\x8a\x95\ +\xd3\x57\x96\x02\x88\x00\x52\x34\x40\xb4\x10\x33\x1e\x8d\x44\xb0\ +\xa6\x5c\x6e\xea\x05\x10\x01\xa4\xa8\x80\x4c\x8b\x7d\x5d\x29\xfb\ +\xd3\x26\x84\x83\xd6\x14\x40\x04\x10\x13\x31\xf7\x5b\xa5\xec\xb2\ +\xd8\xe4\x54\x00\x11\x40\x4c\x00\x02\xd7\x45\x4d\x67\xa7\x3d\x62\ +\x44\x3c\x40\x51\x01\x44\x00\x31\x12\x6e\x44\xd4\xe4\x38\x1d\xbe\ +\x57\x05\x31\x52\x99\x02\x44\x05\x10\x01\xa4\x80\xf0\xc9\x9e\x95\ +\x99\x3f\x95\x4c\x3a\x37\x1b\x11\x0f\x50\x54\x00\x11\x40\x4c\x85\ +\xdb\x3a\xa5\x6c\xbd\x8c\x67\x49\x1f\x02\x88\x00\x62\x24\x80\x99\ +\xf9\xf3\xc9\xa4\x93\xf7\x1a\xb7\x46\x2a\x95\x87\xa8\x00\x22\x80\ +\xe4\x11\x36\x9e\xb2\x7c\x41\x29\xfb\x1f\x3d\xa5\x0c\x71\x22\x01\ +\x44\x00\x31\x12\x9e\xcc\xfc\xc5\x64\xd2\xf9\x07\x23\xe2\x01\x8a\ +\x0a\x20\x02\x88\x91\x70\x23\xc2\x97\x1c\xc7\xfe\x7b\x23\xe2\x01\ +\x8a\x0a\x20\x02\x88\xa9\x70\xbb\x41\x29\xfb\x3a\x53\xe2\x41\xe9\ +\x0a\x20\x02\x88\x91\x58\x63\xe6\x7f\x4a\x26\x1d\x3f\x6b\x14\x1b\ +\xa9\x47\xa1\xa2\x02\x88\x00\x52\x68\x0c\x65\xcb\xff\x65\xa5\x6c\ +\xbd\xa5\x59\x49\x1f\x02\x88\x00\x62\x24\x80\x99\xf9\x9f\x93\x49\ +\xe7\xef\x8c\x88\x07\x28\x2a\x80\x08\x20\x46\xc2\x8d\x88\xfe\xc5\ +\x71\x3a\xfe\xd6\x88\x78\x80\xa2\x02\x88\x00\x62\x2a\xdc\xbe\xa2\ +\x94\xfd\x39\x53\xe2\x41\xe9\x0a\x20\x02\x88\x91\x58\x63\xa6\x7f\ +\x4d\x26\x3b\x3e\x6b\x44\x3c\x40\x51\x01\x44\x00\x31\x15\x6e\x5f\ +\x55\xca\xfe\x8c\x29\xf1\xa0\x74\x05\x10\x01\xc4\x50\xac\xf1\xd7\ +\x94\x72\xae\x36\x24\x1e\x98\xac\x00\x22\x80\x18\x09\x36\x22\x5a\ +\xef\x38\x1d\x57\x19\x11\x0f\x50\x54\x00\x11\x40\x4c\x85\xdb\x8d\ +\x4a\xd9\x57\x9a\x12\x0f\x4a\x57\x00\x11\x40\x8c\xc4\x1a\x11\xfd\ +\x9b\xe3\x74\xfc\x8d\x11\xf1\x00\x45\x05\x10\x01\xc4\x54\xb8\xdd\ +\xa4\x94\x7d\x85\x29\xf1\xa0\x74\x05\x10\x01\xc4\x48\xac\x31\xf3\ +\xcd\xc9\xa4\xf3\x29\x23\xe2\x01\x8a\x0a\x20\x02\x88\xa9\x70\xfb\ +\x86\x52\xf6\x27\x4d\x89\x07\xa5\x2b\x80\x08\x20\x86\x62\x8d\x6f\ +\x51\xca\xf9\x84\x21\xf1\xc0\x64\x05\x10\x01\xc4\x48\xb0\x11\xe1\ +\x56\xc7\xb1\xd7\x1a\x11\x0f\x50\x54\x00\x11\x40\x4c\x85\xdb\x37\ +\x95\xb2\x3f\x6e\x4a\x3c\x28\x5d\x01\x44\x00\x31\x12\x6b\xcc\xf4\ +\xad\x64\xb2\xe3\x72\x23\xe2\x01\x8a\x0a\x20\x02\x88\xa9\x70\x6b\ +\x57\xca\xbe\xcc\x94\x78\x50\xba\x02\x88\x00\x62\x28\xd6\xb8\x43\ +\x29\xa7\xd5\x90\x78\x60\xb2\x02\x88\x00\x62\x24\xd8\x88\x60\x3b\ +\x8e\xdd\x62\x44\x3c\x40\x51\x01\x44\x00\x31\x15\x6e\x8e\x52\x76\ +\xc2\x94\x78\x50\xba\x02\x88\x00\x62\x24\xd6\x98\x49\x25\x93\x1d\ +\x71\x23\xe2\x01\x8a\x0a\x20\x02\x88\xa9\x70\x4b\x2a\x65\xc7\x4c\ +\x89\x07\xa5\x2b\x80\x08\x20\x86\x62\x8d\x3b\x95\x72\xa2\x86\xc4\ +\x03\x93\x15\x40\x04\x10\x23\xc1\x46\x84\x6f\x3b\x8e\xdd\x6c\x44\ +\x3c\x40\x51\x01\x44\x00\x31\x15\x6e\xdf\x51\xca\xfe\x98\x29\xf1\ +\xa0\x74\x05\x10\x01\xc4\x48\xac\x31\xe3\xb6\x64\xd2\x5e\x63\x44\ +\x3c\x40\x51\x01\x44\x00\x31\x15\x6e\x1b\x95\xb2\x2f\x31\x25\x1e\ +\x94\xae\x00\x22\x80\x18\x89\x35\x66\x6c\x4a\x26\xed\xbf\x36\x22\ +\x1e\xa0\xa8\x00\x22\x80\x98\x0a\xb7\x2e\xa5\xec\xd5\xa6\xc4\x83\ +\xd2\x15\x40\x04\x10\x43\xb1\xc6\xdd\x4a\x39\x4d\x86\xc4\x03\x93\ +\x15\x40\x04\x10\x23\xc1\x46\x84\x1e\xc7\xb1\x1b\x8d\x88\x07\x28\ +\x2a\x80\x08\x20\xa6\xc2\x6d\xb3\x52\xf6\x2a\x53\xe2\x41\xe9\x0a\ +\x20\x02\x88\x91\x58\x63\x46\x6f\x32\x69\xaf\x34\x22\x1e\xa0\xa8\ +\x00\x22\x80\x98\x0a\xb7\x3e\xa5\xec\x06\x53\xe2\x41\xe9\x0a\x20\ +\x02\x88\xa1\x58\xe3\x7e\xa5\x9c\x7a\x43\xe2\x81\xc9\x0a\x20\x02\ +\x88\x91\x60\x23\xc2\xed\x8e\x63\xd7\x19\x11\x0f\x50\x54\x00\x11\ +\x40\x4c\x85\xdb\x1d\x4a\xd9\x2b\x4c\x89\x07\xa5\x2b\x80\x08\x20\ +\x86\x62\x8d\xee\x54\xaa\xe3\x62\x43\xe2\x81\xc9\x0a\x20\x02\x88\ +\x91\x60\x23\xc2\x77\x1d\xc7\xbe\xc8\x88\x78\x80\xa2\x02\x88\x00\ +\x62\x28\xdc\xe8\x2e\xa5\x3a\x2e\x34\x24\x1e\x98\xac\x00\x22\x80\ +\x18\x09\x36\x22\xdc\xed\x38\xf6\x47\x8d\x88\x07\x28\x2a\x80\x08\ +\x20\x86\xc2\x8d\xff\x5d\x29\xe7\x23\x86\xc4\x03\x93\x15\x40\x04\ +\x10\xdf\xc1\x46\xc4\x2b\xf7\xed\x3b\x2c\xb5\x70\xe1\xd8\xf1\x40\ +\xfa\x7a\x22\x1c\xf4\x42\x90\x19\x03\xc9\xa4\xfd\x57\xbe\xc5\x43\ +\x96\x41\x00\x11\x40\x7c\x85\x24\x33\xd6\x26\x93\xf6\xad\x33\x33\ +\x45\xa3\x89\x1f\x10\xe1\x8c\xd7\x0b\xf1\xa0\x52\xce\xf9\xbe\xc4\ +\x43\x98\x58\x00\x11\x40\x3c\x87\x25\x33\xfe\x67\xc1\x02\xeb\xbd\ +\xed\xed\xed\xbb\x67\x01\xd2\x4a\x84\x6f\xcd\x12\x1a\x52\xca\x5e\ +\xee\x59\x3c\xa4\x09\x05\x10\x01\xc4\x47\x68\x52\xbf\x52\x1d\x07\ +\x4d\x1f\x89\x46\xa3\xc7\x12\x45\x5e\x98\x25\x94\x52\xca\x5e\xe6\ +\x43\x3c\x94\x49\x05\x10\x01\xc4\x4f\x60\x7e\x45\x29\xfb\x73\x99\ +\x32\x44\xa3\x89\xad\x44\x58\xf2\xfb\x73\x3c\xac\x94\x53\xeb\x47\ +\x3c\x8c\x69\x05\x10\x01\xc4\x4f\x5c\x66\xdd\x14\x27\x16\x8b\xff\ +\x02\xa0\x13\x0f\x88\x31\x63\x24\x99\xb4\x6b\xfc\x88\x87\x31\xad\ +\x00\x22\x80\x78\x8e\x4b\x22\x8c\x38\xce\xc1\x41\x9f\x48\x24\xce\ +\x70\x5d\xfc\x60\x96\xd0\x3d\x4a\xd9\xe7\x79\x16\x07\x50\xdf\x35\ +\xb8\xa4\xaf\x69\xf9\xa8\x9f\x3c\xa6\xd3\x0a\x20\x02\x88\xaf\x18\ +\x23\xe2\xb8\xe3\x38\x6a\x66\xa6\x58\x2c\xa1\x6f\xd0\x67\xef\x05\ +\xb2\x45\x29\xfb\x5c\xaf\xe2\x61\x84\x43\xd7\x5d\x00\xf1\x69\x02\ +\x33\x46\x93\x49\x7b\x69\xb6\x8e\x3f\xf8\x5a\xdc\x6b\x88\x94\x4e\ +\x3a\xfd\x1e\xc4\x71\x9c\xde\xe6\xe6\xe6\x13\x2d\xab\xea\x6f\x01\ +\x64\xda\x6a\xed\x5e\xa5\xec\xbf\xf4\xd2\x2a\x0d\x07\xc3\xda\xdb\ +\xdf\x54\xbb\xcd\x4b\xfa\x20\xd3\x94\x25\x20\x0d\x1b\x87\x4f\x63\ +\x72\x97\xc0\xa2\x5f\xf7\x35\xd6\x76\xe7\x32\xd4\x8f\x09\x02\xc8\ +\x6b\x6e\x3e\x0b\xe0\x5d\xd9\xbd\xa5\xad\x4a\x75\xfc\x45\x2e\xef\ +\x35\x1c\x20\xeb\xc2\xbe\xc6\xda\x2b\x73\xa5\x9d\x8f\xf3\x7e\x62\ +\x43\xd7\x8f\xe6\xa3\x92\x5e\xcb\xbc\xa8\x6b\xf0\xc4\x08\x45\xda\ +\x08\xfc\xfb\x45\x93\x5d\xbe\xb2\x6f\xf5\xb2\x1b\xe7\xd2\xf0\x63\ +\x82\x00\xe2\xad\x37\x72\xf9\xa4\x55\xa6\xe0\xa0\x2e\x76\xb9\xb6\ +\x7f\xf5\xf2\xff\xf2\xa6\x1c\x6c\x2a\x3f\xb1\x11\x6a\x40\x1a\xba\ +\x86\x9b\x5d\xe2\x36\x02\x5e\x7b\x92\x32\x65\x25\x3f\xde\xd7\xb8\ +\xec\xfd\x02\x48\xb0\x81\x05\x60\x9d\x52\xf6\xf5\xd9\x4a\x9d\x1e\ +\x39\xb6\x82\xf1\x4f\x7d\x4d\xb5\xd7\x06\x5e\x3b\x8f\x05\x96\x3c\ +\x20\x2b\x36\x8e\xbc\xd3\x8a\xb8\x6d\x00\x2e\xcd\xd8\x66\xc2\xab\ +\x7d\xab\x6a\x0f\x17\x40\x3c\x46\x44\xd1\x92\xd1\x0a\xa5\x3a\xee\ +\xc8\x24\x77\x00\x0e\x02\x9e\x77\xab\x68\x49\x7f\x7d\xcd\x33\x45\ +\x2b\xb6\xc8\x42\x25\x0d\xc8\x8a\xae\x54\xdc\xb2\xe8\x1f\xc1\x7c\ +\x42\x36\x5f\x18\xd8\xde\xdf\x58\x9b\xf5\xbc\xce\xe7\xc7\x84\x5c\ +\x97\x0e\x95\x70\x93\xee\x21\x06\xb3\x8e\x1e\xaf\x8d\x1c\x53\xd7\ +\x23\xd7\xf7\xad\xaa\x5d\xe7\x41\x6f\xde\x92\xf8\x89\x8d\xd0\x5c\ +\x62\xd5\x6d\x1c\x3e\x89\xaa\xa0\xc1\xc8\xbd\x7a\x38\x61\xa4\x6f\ +\x55\xed\x9c\x2f\xac\xfc\x98\x20\x80\xcc\x19\xab\x2e\x80\x2f\x64\ +\xbb\xb4\xaa\xef\x1e\xa8\x01\x22\xa9\xe9\x40\x7a\x7e\x8c\x71\xf6\ +\x77\x9b\x6a\xb7\xcf\x5b\xf4\x7b\x28\xd8\x4f\x6c\x84\x02\x90\xba\ +\x9e\x91\x16\x62\x6e\x03\xf8\x38\x0f\xed\x03\x83\x6e\xee\x6f\xac\ +\xf9\x94\x5c\x62\x79\x71\xab\xa0\x34\xf7\xb8\x2e\x3e\xdf\xd9\x69\ +\xdf\x9f\xf9\xb2\x2a\xf5\x19\x10\xbe\xf2\xda\x39\x76\xd7\xf5\x35\ +\x2d\xcf\x7a\x8f\x52\x50\x4d\x8a\x98\xb9\x64\x00\x69\xd8\x7c\xef\ +\xc9\xcc\x13\x6d\x60\xf6\xb5\x20\x32\x81\x3f\xd5\xdb\xb8\xec\x66\ +\x01\xa4\x88\x51\x33\x43\x8a\x19\x7b\x89\xf0\x79\xa5\xec\x2f\x67\ +\x2b\xa1\xbe\x27\xd5\x09\xc6\xcc\xdd\xa6\xee\x7f\xcf\x4f\x1f\x5a\ +\xb2\x6e\xdd\x3a\x3d\xe2\x84\xfa\x28\x09\x40\xea\x7a\x86\x2f\x9f\ +\x1a\x35\xf0\x56\xbf\x6e\x92\x8b\x9a\xde\xd5\xb5\x23\x02\x88\x5f\ +\xe7\x3c\xa5\xff\x1e\x11\x7f\xc1\x71\x9c\xef\x67\x4b\xdd\xd0\x9d\ +\xba\x83\x81\xd7\x2d\xde\xe0\x12\x9f\x77\xfb\xaa\x65\xf7\x78\x2a\ +\x61\x9e\x13\x85\x1a\x90\x86\xcd\xf7\xbc\x9b\xd3\x6e\x1b\x88\xf3\ +\x5e\xe3\xb5\x8a\x71\x42\x77\x8e\xeb\x5c\x3f\x26\xc8\x3d\x08\xa0\ +\xbf\x0b\x01\xf8\xc6\x64\xd2\x59\x9f\x2d\x7e\x9b\x36\xdd\xf3\x96\ +\xf1\x48\x7a\x13\x18\xaf\x7f\x59\x18\xf2\xc7\xba\xb3\xdb\xe3\x27\ +\x36\x02\xbd\x07\xa9\xeb\x19\xfe\xc4\xf4\xa8\x71\x6c\xde\xff\x89\ +\x78\x78\xc4\xab\xb5\xfd\x98\x50\xd9\x80\xf0\x03\xcc\xb4\x69\xc1\ +\x02\x6b\xd3\xec\x8f\xa6\x66\xf6\x51\x5d\xdf\xc8\xe9\x34\xee\x76\ +\xe0\xa0\xaf\x0c\xb1\x6d\xd1\xde\x85\x4b\x3a\xa3\x4b\xf7\xe5\xdd\ +\xa7\x01\x67\xf4\x13\x1b\x81\x00\xd2\xb0\x79\xe4\x8f\xe1\xba\x6d\ +\x0c\x14\x61\xd9\xca\xdc\x2f\x09\x05\x90\xdc\x11\xa7\xb7\x53\xb3\ +\x2c\xde\xe4\x38\xce\xbf\xcf\x95\xfa\xe2\xdb\xef\x39\x3a\x32\xee\ +\x5e\x45\x8c\xab\x18\x7c\xc8\xec\xb4\xc4\xfc\x91\xde\xa6\x65\x73\ +\x6a\xe4\xae\x4d\xb0\x29\x42\x05\x48\x5d\x57\xea\x0a\x22\xe8\x7b\ +\x8d\x37\x15\xc9\x86\xee\xbe\xc6\xda\x9c\x37\xf5\x7e\x4c\xa8\x9c\ +\x11\x84\x9f\x01\xa8\xdf\x75\xad\x4d\x9d\x9d\xed\x4f\xe6\xea\x8f\ +\xfa\xee\xe1\xcb\x08\x93\x60\xfc\x61\xa6\xb4\x0c\xfe\x5a\x7f\xe3\ +\xb2\xab\x73\xe9\x84\xed\xbc\x9f\xd8\x30\x36\x82\x34\x6c\x1e\x3e\ +\x0d\x2e\xeb\x51\xa3\xb8\x2b\xf1\x79\x7c\x94\xe8\xc7\x84\x32\x07\ +\xe4\x49\x22\x4a\xa5\xd3\x3c\xdc\xd9\x69\xcf\xf9\x60\xe3\x40\x20\ +\xd7\x77\xa7\x96\x13\xe1\x2a\x66\xcc\x35\xb5\xfd\x87\x64\x59\x4b\ +\x7a\x57\x9e\xf7\xba\x6f\xd9\xc3\x06\x43\xa6\xfa\xf8\x89\x0d\x23\ +\x80\xd4\x75\xa5\xae\xa4\xa9\xb7\xe1\x47\x19\x30\xac\x49\x66\xf3\ +\xe6\x72\x95\x1f\xd6\x8b\xbc\xa5\xd3\xe9\xef\x75\x76\x76\xe6\x1c\ +\x29\x0e\xa8\xd5\xf5\xdd\xfb\x1e\x4a\x8f\x5f\x05\x46\x2c\x47\x09\ +\xe3\x64\x61\x59\xef\xca\xda\x7b\x73\xd5\x24\x8c\xe7\xe7\x0d\x90\ +\x86\x8d\xa9\x33\xdc\x08\xf4\xe4\xc2\x0b\x4c\x19\xc3\x6c\xbd\xbf\ +\xbf\xe9\xbc\xc7\x73\xe9\xfb\x31\xa1\xc4\x47\x90\x27\x89\xf0\x18\ +\x40\x8f\x03\xee\xe3\xd5\xd5\xd5\x8f\xdd\x72\xcb\x2d\x2f\xe7\xf2\ +\x67\xe6\xf9\x55\xdd\xa9\x3f\x4a\xb3\x5b\x4f\x64\x5d\xc9\xc0\x1b\ +\x72\xe5\x65\xa2\x4f\xf6\xaf\xaa\xf9\x46\xae\x74\x61\x3d\xef\x27\ +\x36\x8a\x36\x82\xd4\x77\xa5\x3e\x03\x4b\x4f\x15\xc1\x11\x26\x8d\ +\xd9\xbf\x7b\xec\xf0\xbb\x2f\xbb\xe0\xd5\x5c\x65\x5c\x7a\xe9\xa5\ +\xc7\x59\x56\xf5\xe2\x48\xc4\x3d\x0e\xb0\x16\x33\xeb\xb7\xf4\xbc\ +\x98\x99\x8e\xb3\x2c\x2c\x66\x86\x7e\x6b\x3f\x39\xc2\x95\x08\x20\ +\x3f\x07\xa0\x27\x00\x3e\x4d\xc4\x3f\xb6\x2c\xeb\xb1\xc5\x8b\x17\ +\x3f\xbe\x6e\xdd\xba\x89\x5c\x5e\x64\x3a\xdf\xb0\x79\xf3\xa1\x2e\ +\x1f\x55\x67\x31\xd7\xf9\xba\x0c\x66\xfe\x46\x5f\xd3\xb2\x4f\xe6\ +\x53\x66\x58\xf2\x04\x0a\x48\xc3\xc6\xa1\x0f\x72\x95\xa5\x2f\xa7\ +\x8c\xaf\xb8\xc7\xc0\x73\xfd\x8d\xb5\xef\x28\xa6\xd1\x97\x5f\x7e\ +\xf9\x9b\xf7\xef\x77\x8f\x4f\x26\xdb\x1f\xcb\xa6\x3b\x3d\x59\x51\ +\x2f\xa2\x56\x74\xf8\x89\x68\x82\x99\xf5\x75\xfc\xe4\x0f\x33\x76\ +\x13\xf1\x33\x44\xd6\xd3\xae\xcb\xcf\x44\x22\x78\xfa\xd9\x67\x9f\ +\x7d\x66\x74\x74\x34\x2f\x10\x66\xb7\x69\x55\xf7\xc8\xd9\x69\x72\ +\xf5\xd3\xc4\x3a\x30\xfc\x79\xc9\xb8\xf7\x4d\x2f\x1d\xbd\xac\xfd\ +\xb2\x33\xc7\x8b\xd9\x07\x41\x6b\x05\x06\x48\x7d\xcf\xf0\xe7\x30\ +\xf5\x36\xfc\xb0\x20\x1a\xc9\xc0\x40\x7f\x63\xad\x71\x10\xb3\xb5\ +\xa5\xa1\xa1\x61\xe1\x11\x47\x1c\x51\xcd\xcc\x87\x44\x22\x91\xc9\ +\xdf\x96\x65\x55\x8f\x8d\xe9\xdf\xa4\xff\xbe\x30\x97\x0f\x55\x55\ +\xd0\xef\x0b\x76\xbb\xae\xbb\x7b\x7c\x7c\x7c\xf7\x86\x0d\x1b\x5e\ +\xc9\x95\xa7\xd0\xf3\x0d\x9b\x07\x8e\x75\xd3\x56\x9d\x45\xa4\x47\ +\x0b\xcf\xdf\x94\xcf\x2c\x77\x72\x1a\xbb\xeb\x2e\x0f\xeb\x47\x50\ +\x7e\x3c\x32\x0e\xc8\xf4\xff\x42\x6d\x60\x04\xba\x88\x18\x03\x5f\ +\x41\x15\x7f\x3b\xbd\xa7\x7a\xc7\x9d\xd1\xa5\xbf\xf3\x63\x4a\x25\ +\xa5\x6d\xd8\x9c\x7a\x07\xbb\x74\x26\x80\x33\x19\xfc\x01\x02\xf4\ +\x9f\x0b\x1a\xfd\x88\xd1\xd8\xdb\x54\xdb\x53\x0e\x3e\x1a\x05\xa4\ +\xbe\x27\x75\x0d\x78\xf2\xbd\x46\xf5\x3c\x9a\xf5\x0a\x83\x77\x58\ +\xa0\x1d\xcc\xd8\x01\xf0\x0e\x30\xed\xd0\xdf\x89\x58\x4c\xcf\x8d\ +\x8f\x2d\x78\xae\x92\x00\xaa\xeb\x4a\x9d\x05\x0b\x67\x81\x71\x16\ +\x31\xce\x06\xe1\x9d\x45\xed\x1b\x8f\x8f\xd6\x8b\x5a\xa6\x41\x31\ +\x23\x80\xac\xe8\x19\xfe\x13\x0b\xac\x47\x0d\x5f\xeb\x22\x19\x6c\ +\x67\x2e\xe9\x1d\x98\x84\x07\x3b\x40\xf8\x25\x5c\xfe\x25\x83\x9e\ +\x2b\x55\x80\x3e\xfa\xdd\x07\x8e\xa8\x7e\xf9\xe5\x53\x39\x82\x53\ +\xc0\x74\x0a\x2c\x3a\x05\x2e\x9f\x0a\xc2\x29\xb9\x8c\x28\xe4\x3c\ +\x81\xbe\xd6\xdb\x58\x53\x72\x2f\x03\xe7\x6a\x73\xd1\x01\xa9\xef\ +\x49\xfd\xfd\xf4\xa8\x51\x55\x88\xd9\x21\xcb\xab\x2f\xd1\x9e\x23\ +\xa2\xe7\x5d\x76\x77\x11\xd1\x8b\xcc\xd8\x45\xa0\x17\x99\xdc\x17\ +\xc9\xe5\x5d\x11\xb2\x5e\x1c\x1f\xe7\x5d\xc7\xbc\x7a\xcc\x8b\x26\ +\x6f\x4c\x2f\xd8\x74\xf7\x31\x87\x54\x55\x1d\x9d\xe6\xc8\x31\x11\ +\xc2\xd1\x2e\xf3\x31\x04\x3e\x06\x2e\x4e\x98\x02\xc0\x3a\xc5\xeb\ +\xb7\x32\xc5\xf5\x98\xec\xbe\xc6\x9a\x96\xe2\x6a\xce\xbf\x5a\xd1\ +\x00\x59\xd1\x93\xfa\x33\xcb\x45\x1b\x68\xd6\xec\xcd\xf9\x6f\x63\ +\xf0\x35\x20\xbc\x0a\xc6\x1e\x40\xff\xf0\x1e\x02\xed\x61\xe6\x3d\ +\x20\xda\x03\xe6\x3d\x4c\xd8\x43\xfa\xef\xb0\x16\x32\x71\xb5\xfe\ +\x4d\xec\x56\xc3\xa2\x85\x60\x7d\x39\xaa\x7f\x4f\xfd\x9d\x18\x87\ +\x31\x70\x0c\x81\x8e\x66\x0d\x42\x28\x0f\x1a\xed\x6b\xac\xc9\xba\ +\x56\x58\x28\xab\xec\xb1\x52\x45\x01\xa4\xbe\x27\xa5\x2f\xa7\xf4\ +\xbd\x46\xa8\x97\x05\xf2\xe8\x89\x24\xf3\xe3\x80\x1e\x49\x23\xbb\ +\xff\xa0\x77\xe5\xca\xbd\x7e\xb2\x95\x4a\xda\x82\x01\xa9\xef\x1e\ +\xda\x0c\xd0\x41\x3b\x0c\x95\x8a\x01\x52\xcf\xc2\x1c\x18\x73\xf7\ +\xbd\xf5\xae\xd5\x17\xee\x9c\xad\xd2\xdc\xdc\xfa\xc7\x5e\x26\x39\ +\x16\x56\xba\xf9\xdc\x05\x01\x52\xdf\x93\x7a\x08\x8c\x0f\x99\xaf\ +\xa6\x94\x10\x46\x07\x22\xe0\xd3\x7a\x1a\x97\x3d\x31\xbb\x6e\x1f\ +\xfb\x58\xe2\x8c\x48\x04\x17\xcc\xb5\x2e\x56\x18\xdb\x93\xa9\x4e\ +\x79\x03\x52\xdf\x9d\xe2\x52\x69\xa4\xd4\xb3\xf8\x0e\x90\xe5\x9e\ +\xd3\xbb\x72\xf9\xc3\xb3\x95\xa3\xd1\xcb\xde\x4d\x94\xd6\xeb\x61\ +\x75\x55\x2c\x20\xf5\xdd\x29\x3d\xcf\x67\x8e\x75\x59\x8b\xdf\x21\ +\xa2\x18\x1e\x07\xd8\x75\xdf\x97\xe9\x2d\x79\x34\x1a\x7d\x27\x51\ +\x44\xcf\xda\x7d\x7b\xae\x95\x15\xc3\xd3\x9a\xb9\x6b\xe2\x7b\x04\ +\xa9\xef\x4e\x0d\x00\x28\xf9\xbd\xe7\x4a\xa5\x83\xc2\x56\xcf\x08\ +\xaa\xde\xd5\xd3\xf8\x97\x3f\x9b\x5d\xaf\x58\x2c\xb6\x18\xb0\xf4\ +\x1e\x21\x6f\x9b\x3e\x37\xe7\xd2\xa3\x61\x6b\x57\xb6\xfa\xe4\x03\ +\x88\x5c\x5a\x95\x4a\xef\x16\xb9\x9e\x64\x2d\x7c\x5b\xef\xca\xa5\ +\xbf\x9e\x2d\x1b\x8f\xc7\xdf\xc4\x4c\xfa\xaa\x62\xe6\x97\xa0\x02\ +\x48\x91\xfd\x17\xb9\x10\x3b\xf0\xca\x44\xfa\xc8\xc1\x4b\xce\x7f\ +\x69\x76\x15\x5b\x5b\x5b\x0f\x4b\xa7\xdd\x9d\xcc\x58\x34\xeb\x5c\ +\x85\x02\xd2\x95\xda\x22\x2f\x03\x43\x1c\xc9\xc5\xaf\xda\xab\x64\ +\xed\x7e\x43\xef\xca\x95\xe9\xd9\xd2\x6d\x6d\x6d\xd6\xf6\xed\x3b\ +\xf4\x8c\xe3\x05\x19\x8a\xad\x4c\x40\x1a\x36\x0d\x7e\x88\x2d\x6b\ +\x0b\x80\x43\x8b\xdf\x17\xa2\x18\x2a\x07\x18\x8f\xf6\x35\xd5\xea\ +\xd9\xbd\x07\x1d\xd3\x97\x55\xbb\xe6\xa8\x6f\x65\x02\xa2\x0d\xa9\ +\xeb\x49\x5d\x49\x8c\xaf\x85\xaa\x33\xa5\x32\xc5\x75\x80\x70\x5b\ +\xdf\xaa\xda\x35\x99\x44\x5b\x5a\x5a\xde\x93\x4e\xf3\x8f\x72\x14\ +\x58\xb9\x80\x68\x63\xea\xbb\x87\x14\x40\xd1\xe2\xf6\x8a\xa8\x85\ +\xc2\x01\xa2\xeb\xfa\x56\xd5\xdc\x90\xa9\x2e\xd1\x68\xcb\xb9\x44\ +\xec\x65\xc5\x93\xca\x06\xa4\x61\xf3\xc8\x91\x9c\x76\x07\x41\xf2\ +\x26\x3d\x14\x41\x5d\x94\x4a\xd0\x2f\x81\xf4\x55\x7d\x8d\xcb\x6f\ +\xcf\x0c\x47\xe2\x12\x22\x6c\xf0\x58\x54\x65\x03\x32\x79\xa9\xd5\ +\x95\x3a\xcb\x22\x0c\x32\xf0\x46\x8f\xa6\x49\xb2\x90\x3a\xc0\xe0\ +\x94\x8b\xc8\x95\x77\x34\x9e\xf7\xd3\x4c\x55\x8c\xc5\x12\x9f\x05\ +\xf0\x2f\x3e\xaa\x2f\x80\x4c\xdf\x8f\x7c\x8c\x18\x9d\x3e\x8c\x93\ +\xa4\x21\x73\x80\x40\x9f\xef\x6d\xac\xd1\xb3\xb1\x33\x1e\xb1\x58\ +\xfc\xab\x00\x5d\xe5\xb3\xda\x02\xc8\x01\xc3\xea\xbb\x86\xbe\x0c\ +\x22\xbd\x5f\xb6\x1c\xa5\xe5\xc0\x43\x7a\xe3\xd3\x6c\x5b\x11\x5c\ +\x7a\xe9\xe5\xc7\x55\x55\x4d\xe8\x4d\x6f\x72\x2e\xdf\x9a\xa1\xd9\ +\x02\xc8\x4c\x53\xea\xbb\x53\x77\x02\xb8\xb0\xb4\xe2\xa3\x82\x6b\ +\x4b\xf4\xcf\xaf\xec\x9c\x68\x1b\xbc\xe2\xfc\xfd\x99\x5c\x68\x6e\ +\x4e\xac\xb0\x2c\xe8\x1b\xf5\x93\xf3\x74\x49\x00\x99\x69\xdc\x8a\ +\x0d\x43\x6f\xb3\x16\xd0\xd6\x02\x0c\xcd\xb3\x1f\x24\x9b\x2f\x07\ +\x18\x8f\x12\xb8\x2d\xdb\x2a\xeb\x0d\x0d\x0d\x91\x45\x8b\x8e\xba\ +\x81\x88\x3f\xe7\x4b\xf7\xe0\xc4\x02\xc8\x6c\x4f\xf4\x42\xc6\x00\ +\xf4\x64\x46\x39\xc2\xe9\xc0\x8d\xaf\x4c\xa4\xdb\x32\x4d\x19\xd1\ +\xd5\x8d\x46\x5b\xce\x01\xf8\x4b\x44\x58\x52\x84\xea\x0b\x20\x99\ +\x4c\xac\xeb\x1e\xbc\x8a\x60\x7d\xb5\x08\x06\x8b\x44\xd1\x1c\xe0\ +\xef\x92\x6b\xad\xef\x5d\x5d\x73\x5f\x36\xc9\x58\x2c\xf1\x37\xcc\ +\xb8\x81\xa8\x68\x33\x24\x04\x90\x6c\x66\xd7\x77\xa5\xda\x41\x28\ +\xbb\x15\x2e\x8a\x16\xaf\x01\x09\x11\xe8\x11\x97\xb0\xbe\x7f\x55\ +\x4d\x57\xb6\x22\x13\x89\xc4\x3b\x5c\x97\x6f\x00\xa8\xb1\xc8\xd5\ +\x12\x40\xe6\x32\xb4\xbe\x3b\xf5\x1f\x00\x3e\x5c\x64\xd3\x45\xce\ +\x9b\x03\xcf\x83\xb1\x9e\x22\xbb\xd7\x67\x9a\x64\x78\x40\x22\x1e\ +\x8f\x5f\xe6\xba\x74\x2d\x11\x4e\xf0\x26\xeb\x2b\x95\x00\x32\x97\ +\x5d\x93\x4b\x5a\xa6\xf9\xfb\x20\x0a\xe9\x52\x35\xbe\x3a\xbb\x74\ +\x12\x13\xd6\x13\x59\x37\xf6\xae\x3c\xef\x7f\xb2\x55\x3a\x1a\x8d\ +\x9e\x65\x59\x91\x6b\x98\x8d\x3e\x75\x14\x40\x72\x45\x4d\x7d\x77\ +\xea\xaf\x01\xdc\x96\x2b\x9d\x9c\x2f\xd8\x81\x3d\x20\x24\x89\x28\ +\xd9\xbb\xb2\xe6\x87\xd9\xd4\xa6\x16\xd4\x3e\xf2\x1a\x00\xd7\x02\ +\xc8\xb9\x78\x76\x81\xb5\x12\x40\xbc\x18\x58\xd7\x9d\xfa\x22\x01\ +\xd7\x79\x49\x2b\x69\x7c\x3b\xf0\x3c\x01\x49\x8c\x73\x67\xef\x9a\ +\x65\xcf\xce\x95\x3b\x1a\x4d\x5c\x48\x44\xd7\x00\x7c\x96\xef\x52\ +\xf2\xcb\x20\x80\x78\xf5\xad\xa1\x3b\xd5\x57\x9c\x5d\x6b\xbd\x96\ +\x58\xf6\xe9\x9e\x02\x51\x72\x2c\xbd\xb7\x33\xd3\x9a\x54\x33\x5b\ +\xdf\xda\xda\x7a\xc2\xf8\x38\x5f\x4b\xc4\x97\x05\xec\x8a\x00\xe2\ +\xc7\xf0\xfa\xee\x94\xfe\x7e\xe0\x3d\x7e\xf2\x48\xda\x83\x1c\xd8\ +\xc6\xcc\x1b\xc6\x5e\x1a\x4f\xe6\xda\x39\xab\xb5\xb5\xf5\x6d\x13\ +\x13\xae\x86\x42\x3f\x4d\x5c\x3c\x0f\x5e\x0a\x20\x7e\x4c\xbf\xb8\ +\x7b\xe4\xd4\x08\xa7\x7f\x04\x22\xcb\x4f\x3e\x49\x8b\x6d\xd0\x33\ +\xa6\x5d\x0c\xf5\x37\xd5\x6e\xcb\xe5\x47\x08\xc0\x38\x50\xc5\xcf\ +\x28\x65\x97\xfc\xfb\x30\xdf\xab\x9a\xe4\xea\xa0\xb9\xce\x37\x74\ +\xa5\xe2\x4c\xb0\x0b\xd1\xa8\x90\xbc\xdb\xc0\xee\x10\xc3\x1a\xf4\ +\x02\x85\xf6\x64\x1a\x8c\x56\xfd\xc7\x79\x1a\x31\x5e\xd7\x35\xcc\ +\x58\x93\x4c\xda\x25\xff\x80\x26\x50\x40\xb4\x83\x75\xdd\xa9\x5b\ +\x08\xf8\x78\x85\x04\xba\xd7\x66\xba\x04\xdc\xcb\xec\x3e\xe8\x07\ +\x8a\x19\x60\xcc\xe7\xa5\x54\xc6\x36\x32\xd3\xb2\x64\xb2\x23\xe5\ +\xd5\x80\xb0\xa6\x0b\x1c\x10\x6d\x44\x43\x77\xea\x5e\x06\xca\x72\ +\xb9\x7c\xef\x1d\x4d\x3f\x21\x60\x08\x8c\x07\x26\xc6\xf9\xc1\x3b\ +\x2e\xad\x7d\xc1\x7b\x5e\x20\x91\x48\x7c\xd8\x75\xf9\xa2\xe9\x37\ +\xe0\xf3\x71\x8f\x91\xb5\xba\x44\xb8\xdf\x71\xec\x3f\xf3\xd3\x9e\ +\xb0\xa6\x9d\x17\x40\xb4\x19\xf5\xdd\x43\xbf\x02\xe8\xad\x61\x35\ +\xa6\xd8\xf5\x22\xe0\x67\x0c\x7a\xc2\x65\x4e\xb9\x94\xde\x72\x67\ +\xe3\xf9\x07\xad\x4e\x98\xab\xcc\xe6\xe6\xe6\x93\x2c\xab\xea\x22\ +\x00\xfa\xe7\x9c\x5c\xe9\xe7\xef\x3c\xd5\x2b\xd5\xd1\x3f\x7f\xe5\ +\x17\xaf\xe4\x79\x03\xa4\xae\x6b\xe0\x74\xa2\x48\xd6\xed\x94\x3d\ +\x37\x91\xf9\xef\x40\xf8\x15\xc8\x3a\x19\x3c\xb9\xc5\x98\xde\x61\ +\x49\xff\x0e\xfe\x61\x00\x63\x17\x08\x4f\x01\xf4\x14\x83\x9f\xb6\ +\x98\x9e\x42\xc4\x7a\xea\xff\x8e\x8d\x3c\x3d\xba\x74\x69\x5e\x5b\ +\x33\xaf\x5d\xbb\x76\xd1\xde\xbd\x63\x17\x11\x4d\x8e\x16\x1a\x8c\ +\x88\x67\x6f\xe6\x27\x61\x59\x3c\xbd\x3a\x60\xdd\xbc\x01\x32\x79\ +\x3f\xd2\x33\xfc\x09\x62\xbe\xb9\x90\x7e\x24\x46\x43\x6f\x53\x6d\ +\xdf\x6c\x0d\xbd\x9d\x31\x26\xe8\xe4\x34\xe1\x64\x0b\xd6\x89\x20\ +\x1c\x09\xc2\x1b\x88\x71\x24\x13\xde\x00\x77\xf2\xef\x93\xff\x06\ +\x9e\xfc\x1d\x01\x63\x3f\x08\xfb\x26\x7f\x83\xf6\x31\x78\x3f\xcd\ +\xf8\x0d\x76\x5f\x00\xd1\x4e\x10\x5e\x60\xf0\x4e\x62\xbc\x10\x41\ +\x64\xe7\x78\x7a\xff\x0b\x87\xa7\x17\xec\xdc\x70\x69\x6d\x51\xb6\ +\x69\x5e\xb3\x66\xcd\xe1\x55\x55\xd5\xe7\x5a\x16\x9d\xcb\xac\xc1\ +\xc0\xf1\x85\x78\x14\x50\x5e\xbd\x77\xfb\x8d\xe5\xb0\xa2\xfb\x4c\ +\xbf\xe6\x15\x90\xc9\x4b\xad\xae\xa1\x4d\x20\xca\xe7\x93\xce\xc9\ +\x76\x90\x45\xa7\xcf\x35\xbd\x22\xa0\xe0\x28\xb8\x98\xe6\xe6\xe6\ +\x13\x23\x91\x85\x1f\x71\x5d\x77\xe9\xf4\xf7\x18\x33\xd7\xb9\x2d\ +\x58\xdf\x90\xc0\x7e\x22\x6c\x01\xf8\xae\xfd\xfb\x23\x77\xdd\x76\ +\x5b\xfb\xaf\x0c\x95\x33\x6f\xb2\xf3\x0e\x88\x6e\x79\x43\x77\xea\ +\x87\x0c\xbc\x2f\x0f\x17\x7e\x33\x76\xe8\xe1\x27\xde\x75\xe1\x9f\ +\xea\xfd\x00\x4b\xee\x68\x6e\x6e\xf9\x00\x91\xfb\x51\x22\xaa\x05\ +\xf0\x81\x12\x69\xc0\xcf\x01\x6c\x05\xf4\xd7\xa3\xe9\xad\x4a\xa9\ +\xe7\x4b\xa4\xde\x79\x55\x33\x14\x80\x4c\x8e\x24\xdd\x29\xfd\x6d\ +\xb4\xdf\x09\x74\xdb\xfa\x1a\x6b\xcf\xce\xab\xe5\x01\x67\xd2\xdf\ +\x5d\xa4\xd3\xf4\x87\x96\x85\xd3\x98\x71\x1a\xc0\x7f\x3e\x63\xab\ +\x80\x80\x6b\xe3\xaf\x38\x66\xdc\x0f\xf0\x56\xc0\xba\x37\x99\xec\ +\xc8\xfa\xd1\x95\x3f\xd5\xd2\x48\x1d\x1a\x40\x1a\x36\x0f\x7e\x88\ +\x5d\xeb\x21\x9f\xb6\x6d\xec\x6b\xac\xbd\xc4\x67\x1e\xa3\xc9\x13\ +\x89\xc4\xf1\xae\x6b\x9d\xc4\xec\x9e\x64\x59\x74\x12\xc0\xef\x9e\ +\x02\x62\x5e\xa6\x7b\xe4\xdb\x56\xbd\xc5\xc1\xe4\x28\x41\xe4\x6e\ +\x75\x1c\x67\xce\x89\x90\xf9\x16\x52\x0a\xf9\x42\x03\xc8\xe4\x28\ +\xd2\x33\x7c\x35\x98\xff\xd5\xb3\x71\xec\xae\xeb\x6b\x5a\x7e\xbd\ +\xe7\xf4\x01\x24\x8c\x46\x13\x5b\x8b\xf4\x4d\x77\x00\xb5\xfd\x7d\ +\x11\xcc\x78\x54\x03\xc1\xcc\x5b\xdf\xfe\xf6\xe3\x86\xd6\xad\x5b\ +\xe7\x06\x5a\x81\x90\x16\x16\x2a\x40\xa6\x20\x49\xdd\x0e\xc6\xc5\ +\x5e\xfc\x62\xa2\x35\xfd\xab\x6a\x0a\x9e\xce\xe0\xd7\x04\xa5\xec\ +\xac\xdb\x5d\x97\x10\x20\x7a\x0f\xf7\xc9\x51\x22\x9d\xa6\x91\x6f\ +\x7f\xbb\xe3\xc7\x5e\x3c\xaf\xb4\x34\x7e\x63\x23\x90\x7d\xd0\xeb\ +\xbb\x86\xb6\x83\x28\xe7\xa3\xcd\x6c\x1b\x49\xfa\xed\xc4\x58\x2c\ +\x31\x0e\xa0\xca\x6b\xbe\x52\x05\x84\x19\xff\xad\x2f\x9d\x88\x68\ +\x4b\x55\x15\x0d\xb6\xb7\xb7\xbf\xea\xb5\xcd\x95\x9a\x2e\x94\x80\ +\x2c\xff\xfa\x40\xf5\xe1\x6f\x8e\xe8\x8d\x59\xe6\x3c\xd2\x63\x78\ +\x8b\xdf\x29\x1a\x99\x04\x63\xb1\xc4\x5e\x00\x87\xe4\x2a\xef\xc0\ +\xf9\x12\x02\x44\x6f\x7a\xa3\xd7\x2a\xdb\xca\x6c\x0d\x25\x93\xed\ +\x85\xbf\x98\xf5\x6a\x52\x99\xa4\x0b\x25\x20\xda\xdb\x15\x3d\x43\ +\x4b\x2d\x26\xbd\x63\x6a\xb6\xe3\xd9\xbe\xc6\xda\x93\x8a\xd1\x0f\ +\xb1\x58\x42\x3f\x26\x9e\xbd\x85\x58\x56\xe9\x30\x03\x42\x04\xfd\ +\x2d\xfa\x56\x66\x1a\xd9\xb7\xaf\x6a\x60\xd3\xa6\x5b\x7f\x5b\x0c\ +\x8f\x2a\x55\x23\xb4\x80\xe8\x0e\x69\xe8\x1e\xb9\x8e\xe1\x7e\x31\ +\x4b\xe7\x0c\xf6\x35\xd6\x9e\x5f\x8c\x8e\x8b\xc5\x12\x3a\x88\x8e\ +\xf2\xaa\x15\x42\x40\x1e\x66\xe6\x2d\x44\x3c\xa0\x94\x3a\x68\xef\ +\x72\xaf\xed\x92\x74\xaf\x77\x40\xcf\x68\x58\xb0\xa0\xfa\x65\x3f\ +\xbe\x04\x72\x0f\x32\xb3\x42\x73\x6c\x3b\x7d\x53\x5f\x63\xed\x15\ +\x7e\x2a\x9f\x2d\x6d\x2c\x96\xf8\x3f\x00\x9e\x57\x5f\x99\x7f\x40\ +\x78\xd7\xd4\x23\x58\x1e\x4c\xa7\xd3\x03\x9d\x9d\x9d\x07\xed\x3c\ +\x5b\x0c\x5f\x2a\x5d\x43\xcf\x6e\xb0\xac\xaa\x5f\xf8\xf1\x21\x70\ +\x40\x74\xe5\xea\xbb\x53\xbf\x03\x70\xe4\xeb\x2b\x6a\xd5\xf5\x35\ +\x9e\x97\x71\xa3\x17\x3f\x0d\xd2\x69\x63\xb1\x84\x9e\x22\xe1\x79\ +\x66\xb1\xeb\x4e\xbc\xb1\xb3\xb3\x53\xd7\xe9\xa0\xc3\xdc\x53\x2c\ +\x7a\x02\xe0\x61\xcb\xc2\x80\x6d\xdb\xa3\x7e\xdb\x28\xe9\xfd\x3b\ +\xa0\x67\x3a\x58\x16\x7f\xdf\x4f\xce\x79\x01\x64\xf2\x72\xab\x27\ +\x75\x17\x33\x2e\xd0\x7f\xd6\x2b\x06\xf6\x36\xd6\x7c\xd0\x4f\xc5\ +\xe7\x4a\x1b\x8b\x25\xb6\xfb\x99\x10\xe8\xba\x74\x7a\x67\x67\x47\ +\xc6\xe5\x75\x8a\x07\x08\xed\x05\x78\x0b\x33\x06\x2c\x8b\x07\x1c\ +\xc7\xf9\x65\xb1\xda\x2b\x3a\xde\x1c\x88\xc7\xe3\x0d\xcc\xb4\xd9\ +\x5b\xea\xa9\x54\xf3\x06\x88\x2e\xbc\xae\x3b\xf5\x59\x22\xfc\x05\ +\x51\xe4\xea\xde\x95\xe7\xfe\xc4\x4f\xc5\xe7\x06\x24\xfe\x0b\x80\ +\x4e\xf4\xaa\x47\xc4\x17\x3b\x8e\xa3\xb7\x7b\xc8\x34\x82\x6c\x26\ +\x42\x83\x57\xad\x59\xe9\xf4\x1b\xeb\x01\x66\x1a\x28\x87\xaf\xf1\ +\xf2\xf4\x20\x34\xd9\x62\xb1\x84\x7e\x09\x9d\x75\x63\xa1\x4c\x15\ +\x9d\x57\x40\x4c\x39\x17\x8b\x25\x9e\x01\xf0\x2e\x1f\xfa\x57\x2a\ +\x65\xdf\x98\x29\x7d\x2c\x96\x88\x03\xde\xbf\xbb\x67\xc6\x08\x11\ +\x06\x22\x11\x1a\xe8\xe8\xe8\x78\xda\x47\x1d\x24\xa9\x61\x07\x62\ +\xb1\x84\xbe\x84\xf7\xf4\xd2\xfa\x40\x55\xca\x15\x10\xbd\x2f\x9f\ +\xfe\xc8\xca\xe3\x41\xf7\x28\xd5\x71\x5e\xa6\xc4\xcd\xcd\xcd\x87\ +\x58\x56\x95\xde\x47\x3e\xdb\x17\x7f\xfa\x72\x6e\x50\x5f\x3a\x2d\ +\x58\x60\x0d\xb4\xb7\xb7\xeb\x97\x94\x72\x84\xcc\x81\x44\x22\x71\ +\xaa\xeb\x42\x5f\x46\xfb\x9a\x40\x5b\xae\x80\x3c\x09\xe0\x8f\x7c\ +\xf6\x51\xd6\x51\xa4\xb9\xb9\xf5\x14\x22\x8e\x02\x3c\x79\x9f\x64\ +\x59\xf8\x5f\x80\x1e\x4e\xa7\xe9\xfe\xce\xce\x76\x5d\x96\x1c\x21\ +\x77\x20\x16\x4b\x7c\x69\x7a\x89\x56\x5f\x35\x2d\x4b\x40\xe2\xf1\ +\xc4\xe3\xd3\x33\x6e\xfd\x98\xb1\xd3\x75\x23\x1f\xee\xec\xfc\x96\ +\xbe\x3c\x93\xa3\x8c\x1c\xc8\xe7\xe6\xbc\xdc\x2f\xb1\x1e\x01\x70\ +\xa6\xff\x3e\xa6\x3b\x89\xdc\xb8\xe3\x38\xbf\xf1\x9f\x57\x72\x84\ +\xd5\x01\xbf\x6f\xcf\x67\xb6\xa3\x2c\x47\x90\x58\x2c\xfe\x9f\x00\ +\xe5\xb5\xa8\x33\x11\x7e\xe8\xba\xe9\xcb\x93\xc9\x64\xce\x55\x0f\ +\xc3\x1a\x10\x52\xaf\x29\x07\xe2\xf1\xf8\x07\x99\xa9\xa0\x7e\x2c\ +\x53\x40\x12\x0f\x00\xf8\x93\x02\x02\xe5\x77\xcc\x68\x9b\x7e\x5f\ +\x51\xb1\x1f\x17\x15\xe0\xdf\xbc\x66\x9d\xbe\x21\xd7\x1f\xde\xe9\ +\x6d\x21\x0a\x3a\xca\x15\x10\xfd\x66\x5a\x7f\x02\x5b\x8c\xe3\x3f\ +\x00\xea\x63\x9e\xf8\xbe\x65\x59\xbb\x00\xfc\x46\x2e\xc1\x8a\x61\ +\x6b\xe1\x1a\xad\xad\xad\x0b\xf6\xed\xdb\xf7\x66\xcb\xaa\x3e\xd6\ +\xb2\xf4\xae\x5a\x7a\x2b\x08\x7a\x37\xc0\x7a\x4e\x9f\xaf\xa7\x55\ +\xd9\x6a\x53\xa6\x80\xb4\x74\x01\x5c\xec\x3d\xfa\x0a\xef\x51\x51\ +\x28\x35\x07\xbe\x5a\xa6\x80\x24\xf4\x67\xbe\x57\x97\x5a\x6f\x48\ +\x7d\xc3\xe5\x40\x24\x42\x27\x97\x29\x20\x2d\x17\x03\x5c\x94\x89\ +\x8f\xe1\xea\x32\xa9\x4d\x80\x0e\x74\x29\x65\xaf\x2e\x4b\x40\xb4\ +\x89\xb1\x58\xe2\xc1\x70\xaf\x77\x1b\x60\x57\x4b\x51\xbe\x1d\x20\ +\xe2\x8f\x3a\x8e\x73\x77\xd9\x02\x12\x8d\x26\xa2\x44\x50\xbe\x9d\ +\x91\x0c\xe2\x00\xf0\x88\x52\xf6\xe4\xac\x89\xb2\x05\x44\x37\x2e\ +\x1a\x4d\x14\x32\x13\x57\x02\xa5\x42\x1d\x98\x39\xbb\xbb\xac\x01\ +\x99\xba\xd4\x8a\x27\x01\x6a\xae\xd0\xbe\x96\x66\xfb\x77\xe0\x75\ +\x73\xf2\xca\x1e\x90\xe9\xfb\x11\xdf\xdf\x01\xf8\xf7\x55\x72\x94\ +\xba\x03\xcc\x74\x41\x32\xd9\xf1\xbd\x99\xed\xa8\x08\x40\xa6\x2e\ +\xb7\x5a\xce\x21\xe2\x4f\x02\xc8\x7b\xe5\xf9\x52\x0f\x00\xa9\x7f\ +\x66\x07\xf4\x2a\x94\x96\xc5\x6b\x1d\xc7\x39\xe8\x73\xdc\x8a\x01\ +\xe4\x80\x35\xb1\x58\xcb\xf2\xa9\x8d\x31\x27\xf7\xe9\x90\xa3\x82\ +\x1d\x98\x5a\x9e\x15\xed\xc9\xa4\xdd\x9e\xcd\x86\x8a\x03\xe4\x80\ +\x11\x89\x44\xe2\x0c\xd7\x9d\xdc\x41\x56\xff\xc8\x51\x41\x0e\x30\ +\xa3\xd7\xb2\xb8\xd7\x71\x9c\xde\x5c\xcd\xfe\x7f\x50\x39\xe8\x87\ +\x9f\x52\x16\x37\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x24\xdd\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x20\x00\x49\x44\x41\x54\x78\x5e\xed\x9d\x09\x98\x5c\x45\ +\xb5\xc7\x7f\xa7\x67\x9f\xec\x09\x04\x64\x49\x58\x45\x76\x1f\x9b\ +\x28\xa0\x3c\x65\x11\x90\x2d\x99\x9e\xc4\x24\x33\x93\x27\x0f\xc1\ +\xf5\x53\xf4\x09\xa2\x42\x00\x91\x45\xe4\x05\x44\x90\x25\x90\xee\ +\x49\x02\x99\x1e\x02\xca\x13\x44\x45\xb6\x88\x22\x08\x3c\x50\x96\ +\x47\x00\x21\x20\x92\x3d\x93\xc9\xac\xdd\x7d\xde\x57\xd3\x33\x26\ +\x99\xcc\xcc\xad\x7b\xfb\x76\xcf\xed\xe9\x5b\xdf\x37\x99\x7c\xdf\ +\x3d\x75\xaa\xea\x5f\xf5\x9f\xda\xce\x39\x25\x84\x29\x44\x20\x44\ +\x60\x50\x04\x24\xc4\x26\x44\x20\x44\x60\x70\x04\x42\x82\x84\xa3\ +\x23\x44\x60\x08\x04\x42\x82\x84\xc3\x23\x44\x20\x24\x48\x38\x06\ +\x42\x04\xbc\x21\x10\xce\x20\xde\x70\x0b\x73\x15\x09\x02\x21\x41\ +\x8a\xa4\xa3\xc3\x66\x7a\x43\x20\x24\x88\x37\xdc\xc2\x5c\x45\x82\ +\x40\x48\x90\x22\xe9\xe8\xb0\x99\xde\x10\x08\x09\xe2\x0d\xb7\x30\ +\x57\x91\x20\x10\x12\xa4\x48\x3a\x3a\x6c\xa6\x37\x04\x42\x82\x78\ +\xc3\x2d\xcc\x55\x24\x08\x84\x04\x29\x92\x8e\x0e\x9b\xe9\x0d\x81\ +\x90\x20\xde\x70\x0b\x73\x15\x09\x02\x21\x41\x8a\xa4\xa3\xc3\x66\ +\x7a\x43\x20\x24\x88\x37\xdc\xc2\x5c\x45\x82\x40\x48\x90\x22\xe9\ +\xe8\xb0\x99\xde\x10\x08\x09\xe2\x0d\xb7\x30\x57\x91\x20\x10\x12\ +\x24\x8f\x1d\x3d\x73\xa6\xee\x5e\x9a\xe4\xd4\x12\xf8\x84\x46\xd8\ +\x43\x60\x34\x50\x89\x52\x89\x50\x81\x52\xae\x42\x29\x4a\x12\xe8\ +\x14\xa1\x13\xa1\x43\xd3\x74\x28\xb4\x8a\xf0\x7a\x09\x2c\x4f\x56\ +\xf0\x50\x63\xa3\xac\xca\x63\xd5\x8b\xb6\xa8\x90\x20\x39\xea\xfa\ +\x73\x66\xea\xbf\x75\xa7\x39\x4f\xe0\x63\xaa\x4c\x15\x18\x87\x10\ +\xf1\xab\x38\x55\x92\x02\xeb\xd3\xc2\xdf\x23\xf0\x44\x77\x8a\x5b\ +\x97\xdc\x2b\xaf\xfb\xa5\x3f\xd4\x93\x41\x20\x24\x88\x4f\x23\xc1\ +\x10\x22\xd9\xcd\xb9\xe9\x08\x9f\x16\xd8\x4b\x84\x32\x9f\x54\x5b\ +\xa9\x51\xed\xe9\xcc\x0e\x84\x57\x25\xcd\xc3\xe5\x25\xdc\x7e\xdb\ +\x52\x79\xc3\x2a\x73\x28\x34\x28\x02\x21\x41\xb2\x18\x1c\x86\x14\ +\xa9\x14\x97\x29\x7c\x06\xa1\x3a\x0b\x55\x39\xc9\xaa\xca\x7a\x51\ +\x1e\x48\x57\x31\xaf\xb1\x51\xde\xca\x49\x21\x23\x5c\x69\x48\x10\ +\x97\x1d\xfc\xc5\x19\xba\x77\xa7\xf2\xc3\x34\x9c\x22\xca\x38\x29\ +\x00\x04\x7b\x66\x17\xe1\x03\x84\x44\xba\x9c\x2b\xc2\xfd\x8b\x7d\ +\xa7\x17\x40\xf7\xda\x37\x26\x97\x92\xb3\xa7\xe9\x91\xa5\xa5\x2c\ +\x54\xe5\x80\x42\x20\xc5\x60\x58\xa8\x62\xf8\xf2\x44\x79\x8a\x86\ +\x05\xcb\xe4\xed\x5c\x62\x36\x12\x74\x87\x04\x71\xe8\x45\x43\x8c\ +\x92\x32\xe2\xa2\x7c\x64\x24\x74\x78\x5f\x1b\x0c\x51\x10\x9e\x2c\ +\x4b\x52\x1f\x12\x65\xf0\x9e\x0d\x09\x32\x08\x36\x73\x67\xe8\xd1\ +\x9a\x26\x8e\xb0\xef\x48\x22\xc6\x76\x6d\x31\x33\x8a\xf0\x74\x59\ +\x92\x99\x21\x51\xb6\xef\xe9\x90\x20\xfd\x30\xa9\xab\xd3\xc9\xd2\ +\xc1\xfd\x22\x7c\x7c\x44\x13\xa3\x5f\xe3\xd2\x8a\x0a\x34\xb5\x43\ +\x7d\x22\x21\x5d\xc5\xd4\xf6\xa1\xda\x1a\x12\xe4\x5f\xe8\x68\xa4\ +\xa1\x86\xbb\x88\x30\x07\xfc\xbb\xaf\x28\xb8\x81\xa6\x74\xa6\x95\ +\xef\x35\x36\xcb\x4f\x0a\xae\xee\x39\xa8\x70\x48\x10\xe0\x0b\xd3\ +\xf5\x2b\xa9\x08\xd7\x21\x54\xe6\x00\xe3\x1e\x95\x66\x63\x5f\x55\ +\x05\x63\xc7\xc2\x8e\x3b\xc3\x6e\xbb\xc3\xe4\x9d\x60\xd4\x18\x18\ +\x33\x06\x46\x8f\xcd\xfc\x1e\x3f\x1e\x36\xac\x87\x96\x8d\xb0\xa9\ +\x05\x36\xb7\xc2\xa6\x56\xf8\xe7\x7b\xf0\xde\xbb\xb0\x7a\x35\x6c\ +\xda\x08\x1d\x9d\x80\xe6\xaa\xb6\x3d\xaa\xcd\x4d\xfd\xcc\x78\x93\ +\x3c\x9a\xbb\x52\x82\xaf\xb9\xa8\x09\x32\x6f\x9e\x96\xbe\xf9\x32\ +\x8f\x08\x7c\xd2\xef\xae\x32\xc0\x4e\x98\x04\x87\x1e\x06\xa7\x9e\ +\x0e\x3b\xee\xe4\x77\x09\xf0\xce\xdf\xe1\xd7\x0f\xc0\x5f\x5f\xca\ +\x10\xca\xef\x64\x36\xf2\x22\xfc\x24\xd6\x24\xff\xe5\xb7\xee\x42\ +\xd1\x57\xb4\x04\x99\x31\x43\x3f\x5c\xa1\xfc\x49\x60\x82\x5f\x9d\ +\x65\x66\x89\xa9\x7b\xc2\x27\x3e\x09\x27\x9d\xe2\x97\x56\x7b\x3d\ +\xf7\x27\xe0\xe9\xa7\xe0\xfd\x7f\xd8\xe7\xb1\x94\x7c\x29\xd6\x24\ +\x87\x58\xca\x8e\x28\xb1\xa2\x24\xc8\xdc\x5a\x3d\x5f\xe1\x26\xa0\ +\xc4\x8f\xde\x34\x4b\xa5\x7f\x3f\x01\x4e\xfe\x1c\x44\x7c\xb3\xb6\ +\xf2\x5e\xb3\x8e\x0e\xf8\x45\x33\x3c\xf5\x64\x66\xb9\xe6\xd3\xbd\ +\x4d\x47\x5a\x39\xb1\x31\x21\xcb\xbd\xd7\xac\xf0\x72\x16\x1d\x41\ +\x1a\x6a\xf4\x61\x22\x9c\x94\x6d\x57\x95\x94\xc0\x71\xc7\x43\xed\ +\x1c\xa8\x0e\x9c\x91\xc9\x96\xd6\xad\x5d\x0b\x8b\x16\xc0\xf3\xcf\ +\x65\xbf\x67\xe9\x59\x72\xc1\x15\xb1\x84\x5c\x9a\x2d\x7e\x85\x92\ +\xbf\xa8\x08\x52\x1f\xd5\xff\x15\x21\xab\xa5\x42\x59\x19\xfc\xfb\ +\x89\x30\xb3\xce\xbf\xd9\x62\x7d\x0a\xd6\xa5\xa0\x33\x0d\x5d\xba\ +\xed\x4f\x1a\x28\x17\x28\x93\xcc\xef\xbe\x9f\xd1\x11\xd8\xd5\x85\ +\x39\x64\x5b\x1b\x2c\xbc\x0d\x9e\x7d\x1a\xd2\x46\xa9\xc7\xd4\x4b\ +\x92\xdb\x63\x09\x39\xcf\xa3\x8a\x82\xca\x56\x34\x04\xa9\xaf\xd5\ +\x37\x05\xf6\xf4\xda\x3b\xa5\xa5\xf0\xd9\xcf\x41\xcd\xe7\xbd\x6a\ +\x80\x6e\x85\x95\xdd\xf0\xbe\xf9\x49\xc2\xaa\x6e\xf8\x47\x32\x43\ +\x08\xaf\x69\xe7\x52\x98\x5c\x0a\x3b\x97\xc1\x2e\xa5\xb0\x5b\x39\ +\x8c\x75\x58\xe6\xdd\xf6\x53\xf8\xe3\xf2\x2c\x0f\xc1\xd2\x3c\x12\ +\x6b\x96\x13\xbc\xd6\xbb\x50\xf2\x8d\x78\x82\x44\xa3\x3a\xba\x5a\ +\x58\x01\x78\x3a\x47\x32\x00\x1d\x7d\x0c\x9c\xfb\x55\xf7\x33\x86\ +\x99\x15\xde\xee\xea\xfd\xe9\x25\x46\x16\x7f\xbc\xad\xc7\xd4\xf8\ +\x12\x98\x5a\x06\x53\xcb\x61\x8f\x72\xd8\xa5\x6c\xfb\x8b\x9d\xd6\ +\x16\x98\x7f\x1d\xac\x78\xd5\xbb\xd3\x83\x2a\x2f\xc6\x13\x72\xa8\ +\x75\xc5\x0a\x50\x70\x44\x13\xa4\xf7\x56\xfc\x75\x11\xc6\x7a\xe9\ +\x1b\x73\x22\xf5\x8d\x0b\x61\x82\x8b\x73\xae\x4d\x69\x78\xb6\x0d\ +\x9e\x6d\x87\xd5\xc6\x2f\x30\x00\xa9\x52\xe0\xd0\x2a\x38\xb2\x1a\ +\xa6\xf4\x5b\x96\xbd\xb9\x02\x6e\xba\x1e\xd6\xad\xf5\x56\x51\x55\ +\xfe\x1e\x4f\x88\xe7\x99\xd9\x5b\xa9\xf9\xcb\x35\x62\x09\x32\xef\ +\x78\x2d\x7d\x6b\x32\x1f\x00\x13\xdd\xc2\x69\x4e\xa2\xce\xff\x1a\ +\x1c\xf5\x09\xbb\x9c\x86\x07\x7f\x6d\xcf\x90\xe2\xf5\xce\x2c\x97\ +\x2e\x76\x45\x7a\x96\xda\xb1\x04\x8e\xa8\x86\xc3\xaa\x61\xdc\x56\ +\x4b\xb1\x65\x4b\xe1\x97\xcb\xbc\xa9\x55\x58\x11\x6f\x92\x11\x69\ +\xb3\x36\x62\x09\xd2\x10\xd5\x37\x10\xf6\x72\xdb\xe5\xd5\xa3\xe0\ +\xf2\x6b\x60\x87\x1d\x9d\x73\x9a\xbd\xc3\xf2\xcd\xf0\xc4\x66\x68\ +\xcb\xc7\xda\xc9\xb9\x4a\xd6\x12\xa6\xe3\x0f\xab\x82\xcf\x8c\x81\ +\x1d\x7a\x0f\xbb\x5f\x7c\x01\xe6\x5f\x0b\xe9\x94\xb5\x9a\x7f\x09\ +\xaa\xf2\x78\x3c\x21\xc7\xbb\xcf\x19\xec\x1c\x23\x92\x20\xf5\xb5\ +\xfa\xb8\x97\xdb\xf1\xbd\xf7\x81\xef\x5d\xe1\xbc\xd7\xe8\x54\x78\ +\x72\x33\x3c\xd9\x0a\xed\x59\x6c\xb0\x83\x30\x34\xcc\x00\xf8\x68\ +\x15\x9c\xd8\x4b\x14\xb3\xd4\xba\xf4\xa2\x8c\x99\x8b\xeb\xa4\xdc\ +\x36\xd2\x4e\xb7\x46\x1c\x41\x1a\x6a\x34\x46\x84\x7a\xb7\x9d\x7b\ +\xca\xe9\x30\xc3\x98\x29\x3a\xa4\xdf\xb6\xc2\x13\xad\x60\x48\x32\ +\xd2\x92\x21\xca\x69\x63\x33\x4b\xaf\x2b\xe7\xc1\xeb\xaf\xb8\x6f\ +\xa1\xa6\xb9\x24\xde\x2c\x57\xb8\xcf\x19\xcc\x1c\x23\x8a\x20\x0d\ +\x35\xfa\x7d\x22\xb8\xee\x9c\x2f\x9c\x07\x9f\xfc\xf4\xd0\x1d\xf4\ +\x66\x27\x34\x6d\xcc\xdc\x57\x8c\xe4\x64\xee\x5b\x4e\x1e\x03\xc7\ +\x8d\x82\xd8\x6d\xf0\xd8\x23\x2e\x5b\xab\x3d\x27\x66\x33\xef\x4a\ +\xc8\x52\x97\x39\x03\x29\x3e\x62\x08\x52\x37\x5d\x3f\x26\x11\xfe\ +\x28\x62\x1f\xa9\xc5\xdc\x86\x7f\x77\x1e\xec\xf3\xe1\xc1\xfb\xc6\ +\xec\x2d\x1e\x68\x81\xbf\xb4\x07\xb2\xff\x72\x56\xa9\x0f\x95\xc2\ +\x8c\xf1\xf0\xca\xef\xa1\xf1\x4e\x77\xc5\x98\x90\x44\xed\xb0\x77\ +\x22\x21\xef\xb8\xcb\x19\x3c\xe9\x11\x43\x90\xfa\x5a\x6d\x17\x13\ +\x84\xcd\x32\x55\x54\xc0\x8f\xfe\x1b\x26\x4d\x1a\x3c\xc3\x0b\xed\ +\xb0\xcc\x98\x96\x8f\xc0\xe5\x94\x25\x4c\x1c\x3b\x0a\x76\x7f\x1d\ +\x6e\xf8\xb1\x3b\x53\x15\x55\x56\xc7\x13\x32\xd9\xb6\x9c\xa0\xca\ +\x8d\x08\x82\x34\xd4\xaa\x09\x69\xb3\x87\x2d\xc8\xe6\x56\xfc\xea\ +\xf9\x83\x9f\x54\x99\x1b\xef\x7b\x37\xc2\x73\x45\x36\x6b\x0c\x86\ +\xdf\x4e\xa5\x70\xd8\x5b\x10\x73\xe9\x42\xa5\xca\x23\xf1\x44\x61\ +\xdf\xb6\x17\x3c\x41\xea\x6a\x74\x51\x24\xc2\x6c\x5b\x72\x98\x3b\ +\x8e\x2b\xae\x85\x5d\x77\x1f\x38\xc7\xbb\xdd\xb0\x68\xfd\xc8\xdf\ +\x6b\xd8\xe2\xd5\x27\x67\xf6\x26\xfb\xbc\x0c\x8f\xdf\x6a\x9f\xb3\ +\x27\x30\x04\x7c\x33\x9e\x90\x1b\xec\x73\x05\x4b\xb2\xa0\x09\xd2\ +\x30\x43\x4f\x42\x79\xd8\x0d\xa4\x17\x5e\x02\xfb\x1f\x38\x70\x8e\ +\xc7\x36\xc3\x83\x5e\x8e\x37\xdd\x54\xa0\xc0\x65\xc7\x3c\x07\x6f\ +\xc4\x5d\x34\x42\x49\x6b\x15\x53\xe2\x71\x79\xcf\x45\xae\xc0\x88\ +\x16\x36\x41\xa2\x6a\x82\xa1\x59\xaf\x73\xcf\xfb\x2a\x7c\xfc\xb8\ +\xed\xb1\x4f\x2b\x2c\xdd\x00\xcf\x77\x04\xa6\x5f\x02\x5d\x91\xd4\ +\xef\x60\xed\xff\xd8\x57\x51\x95\xe7\xe3\x09\x39\xcc\x3e\x47\x70\ +\x24\x0b\x96\x20\x75\x35\xfa\x9d\x48\x84\x6b\x6c\xa1\x3c\xe4\x50\ +\xb8\xe0\xe2\xed\xa5\x93\x0a\xb1\xf5\xf0\x9a\xf1\xf1\x0e\x93\x35\ +\x02\x1b\x6e\x84\xae\x37\xed\xc4\x7b\x63\x70\x7d\xa6\x10\xfd\xdb\ +\x0b\x92\x20\xbd\x76\x56\x9b\x8d\xab\x84\x4d\x17\x55\x56\xc1\xcd\ +\x77\x6e\x7f\x43\xde\x91\x86\x3b\xd6\xc1\x3b\xdd\x36\x5a\x42\x99\ +\xad\x11\x48\xb7\xc2\xda\x1f\x81\xb6\xd9\xe1\x52\xa8\xa7\x5a\x05\ +\x49\x90\xba\xe9\x7a\x5f\xa4\x84\xb3\xac\xba\xc6\xb8\xc0\x5d\x03\ +\xbb\x4f\xdd\x56\xda\x98\x88\xdc\xb2\x06\xfe\x19\x10\x8b\x5b\xab\ +\xb6\x04\x4c\xa8\xeb\x35\xd8\x70\x8b\x7d\xa5\x14\x2e\x8a\x37\x89\ +\xf5\xac\x6f\xaf\x39\x77\x92\x05\x47\x90\x59\xd3\x75\xdf\xd2\x08\ +\xaf\xd9\x5e\x08\x9e\x39\x0d\xce\x9e\xb1\x2d\x80\x66\x59\x75\xcb\ +\xda\x8c\xf3\x52\x98\xb2\x43\x60\xd3\x32\x68\x7f\xc2\x4e\x87\x2a\ +\x5d\xf1\x84\x54\xd8\x49\x07\x43\xaa\xe0\x08\x52\x1f\xd5\x27\x45\ +\x38\xd6\x06\xbe\x89\x93\xe0\xfa\x9b\xb7\x95\x34\x91\x9b\xcd\x9e\ +\xe3\xe5\x70\xcf\x61\x03\xa1\xa3\x8c\x76\xc1\xda\x2b\x21\x6d\x19\ +\x76\x48\x95\x5b\xe2\x09\xf9\xb2\xa3\xe2\x80\x08\x14\x14\x41\xea\ +\xce\xd6\xc9\x52\xca\x3f\x6d\x67\x8f\x2b\x7e\x0c\xbb\x4f\xd9\x16\ +\xe9\xfb\x36\xc2\x1f\x2d\xd7\xcd\xb9\xee\xa3\xe4\x7b\x90\x6e\x87\ +\xee\x21\x9e\xb9\x29\xdb\x1b\x4a\x26\x66\x7e\x82\x9a\x3a\x5f\x85\ +\x8d\x3f\xb7\xab\x9d\x71\xb9\x8f\x37\x15\xce\x2c\x52\x58\x04\x89\ +\xea\x43\x11\xe1\xb3\x36\x5d\x61\xdc\x64\xcf\xff\xfa\xb6\x92\xc6\ +\x77\xe3\x97\xc3\x74\xcf\xa1\xed\xd0\xb5\x22\xf3\xd3\xfd\x3a\x24\ +\x3d\xc4\xae\x2a\xdd\x05\x2a\x0e\x05\x43\x9a\xf2\x7d\x6c\x50\xc8\ +\x9f\xcc\x86\x05\xd0\xf5\x92\x65\x79\xca\x95\xb1\x84\x7c\xdf\x52\ +\x7a\x58\xc5\x0a\x86\x20\xd1\xa8\x4e\xac\x16\x56\xdb\xc4\xcd\x35\ +\x76\x56\xb7\xf6\xbb\xcc\x32\xd6\xb8\xb7\xae\xcb\xbf\xb7\x5f\xe7\ +\x4b\xd0\xf9\x22\x74\x3c\xe3\x6f\x3f\x4b\x25\x54\x1c\x0c\x55\x1f\ +\x83\xb2\x00\x90\x25\xdd\x02\x6b\x7e\x08\x58\x84\xbd\x56\xa5\x35\ +\x9e\x90\x31\xfe\x22\x92\x1b\x6d\x05\x43\x90\x39\x35\x9a\x28\x89\ +\x50\x63\x03\xc3\x8c\xd9\x70\xca\x19\x5b\x24\x37\xa6\xe0\xfa\xd5\ +\xf9\x73\x6e\x32\xb3\x45\xdb\x13\xd0\xf1\x34\xa4\xd6\xd9\xd4\x38\ +\x3b\x19\xb3\xfc\x1a\x75\x0a\x54\x1e\x99\x9d\x9e\x6c\x73\x6f\xfa\ +\x25\xb4\xff\xde\x4e\x4b\x1a\x2e\x68\x6c\x92\xff\xb6\x93\x1e\x3e\ +\xa9\x82\x21\x48\x7d\x54\xbb\xc5\x3c\x91\xec\x90\xfa\xcf\x1e\xe6\ +\xc4\xea\xa6\x35\x99\xf0\x3a\xf9\x48\x9b\x1f\x86\xb6\x47\x41\x87\ +\xe1\x56\x7e\xb8\x89\xd2\x33\x8b\x5c\x62\x8d\xf2\x07\xb1\x26\xd9\ +\xd9\x5a\x7a\x98\x04\x0b\x82\x20\x75\xb5\x7a\x7e\x04\xac\x4e\xdc\ +\x4f\x3b\x13\xa2\xb3\xb6\xa0\xb9\x64\x3d\xbc\x90\x87\xc1\xda\xbd\ +\x02\xcc\x91\xa7\x97\xbd\x85\xdf\x7d\x6f\x96\x5c\x63\xce\x86\xd2\ +\x5d\xfd\xd6\xec\xac\xaf\x65\x29\x74\xfc\xd1\x59\xce\xdc\xae\x27\ +\x53\xec\xb9\x24\xe0\xcf\xc0\x15\x04\x41\xea\xa3\xfa\x57\x11\x06\ +\x31\x31\xdc\xd2\x19\xc6\x01\xea\xf6\x45\x5b\x6e\xcc\x5f\xe9\x84\ +\xbb\xf2\xb0\xc4\xd9\x74\x1f\xb4\x3f\xee\x3c\x28\xf2\x2d\x61\x96\ +\x5d\xa3\x4e\xce\x6f\xa9\x66\x49\xb9\xd6\xf8\x74\xda\xf8\xd0\xa4\ +\xb9\x3b\xd6\x2c\x5b\xfd\x39\xcb\x6f\x5d\x6d\x4a\x2b\x14\x82\xa4\ +\x6d\x8e\x76\x4d\xac\xdc\x73\xbe\xb4\xa5\xd9\xd7\xac\x82\xb5\x39\ +\x74\x91\x35\x83\x61\xe3\x1d\xc1\x98\x35\x06\xeb\x6c\x33\x9b\x8c\ +\x3f\x07\xa4\xca\x66\x38\xf8\x23\xb3\xe1\x4e\xe8\x7a\xd1\x4a\x57\ +\x4b\xac\x49\xc6\x59\x49\x0e\x93\x50\xe0\x09\x52\x3f\x4d\xaf\x94\ +\x52\x06\x30\x33\xdc\x1e\xb1\xf9\xb7\x66\x1e\xa0\x31\xe9\xd1\x56\ +\x78\x68\x53\xee\x50\x35\x77\x18\xeb\x7f\x3a\x3c\x7b\x0d\xb7\xad\ +\x32\x27\x5e\x13\xbe\x96\xbf\x25\x97\x39\xb9\xdb\xb8\xc0\xae\x96\ +\xc9\x24\x47\x2d\x5e\x26\x3e\x9f\xf1\xd9\x95\x6d\x23\x15\x78\x82\ +\xd4\xd5\xe8\xca\x48\x84\xdd\x9c\x1a\x33\x71\x07\xb8\xfe\x67\x19\ +\xa9\x96\x14\x98\xd9\x23\x57\x96\x24\xed\x7f\x86\xd6\x65\x85\x41\ +\x8e\x3e\xdc\xf2\x49\x12\x4d\xc1\x9a\xef\x83\x39\xcd\x73\x4c\xca\ +\x6f\x63\x09\xc9\x3a\xda\xbe\x63\x39\x1e\x05\x02\x4d\x90\x68\x54\ +\xcb\xab\xa0\xc3\x66\x79\x75\x66\x14\xce\xee\x3d\x04\xbe\xdb\xf8\ +\x76\xd8\x74\x8e\x07\xd0\x0c\x39\x36\x2d\xf1\x90\x71\x80\x2c\xfb\ +\xed\x0f\x53\xf6\xc8\xb8\xfe\x4e\x1d\xc0\x61\xf8\x95\x97\xa1\x6d\ +\x73\xe6\x25\xa9\xd7\x3c\x84\xe0\xe9\x5f\x64\x3e\x49\xd2\xd2\x04\ +\x1d\x4f\x39\xe3\x14\xf4\x3b\x91\x40\x13\xa4\x21\xaa\xe7\x20\xdc\ +\xe1\x0c\x33\xdc\xb1\x18\x8c\xaf\xb9\xb1\xce\x35\x77\x1e\xb9\x48\ +\x66\x59\xb5\xce\x04\x2f\xf0\x98\xcc\x1b\x85\x87\x1d\x05\x87\x1f\ +\x09\x87\xb9\xbc\xb3\x30\x44\x79\xf5\x65\xf8\xcb\x33\xf0\x87\x2c\ +\x0e\x04\xf2\x45\x12\x63\x3e\x63\x96\xa0\x4e\xc9\x9c\x66\xad\x6e\ +\x65\xfc\x43\x0f\xc9\x30\xd9\x38\x0c\x5d\xc3\x40\x13\xa4\x2e\xaa\ +\xbf\x8e\x08\x8e\xe7\x30\xbb\x4d\x81\x1f\xf6\x0e\x5c\xe3\x4f\xfe\ +\x62\x0e\x8e\x75\xb3\xd9\x73\x18\x62\x9c\x74\x1a\x9c\x7c\x2a\x98\ +\xd0\xa6\xd9\x26\x43\x96\x87\x1f\x84\xdf\xfc\x0a\xda\x3d\xcc\x94\ +\x86\x24\x3b\x5c\x9a\xfb\x8d\xbb\xb9\x13\x31\x77\x23\x8e\x29\xcd\ +\xc5\xb1\x66\xb9\xca\x51\x6e\x18\x04\x02\x4d\x90\xfa\x5a\x5d\x2d\ +\xb0\x83\x13\x2e\xa7\x9f\x0d\xd3\x67\xc2\x9a\x24\x5c\x9b\x83\xd9\ +\xc3\xac\xa5\xcd\x5f\x43\x2f\x77\x1c\x67\xd6\xf8\x47\x8c\xfe\x38\ +\x18\xa2\xdc\x97\x80\xdf\x3e\xe4\x84\xd0\xf6\xdf\xcd\xe9\xd6\x84\ +\xaf\xba\xcf\xe7\x26\x47\xcb\x12\xe8\xf8\xb3\x73\x0e\x55\x9e\x8a\ +\x27\xe4\x18\x67\xc9\xfc\x4b\x04\x96\x20\x6e\xf6\x1f\x37\xde\x06\ +\x63\xc7\xc1\x92\x0d\x60\x62\x59\xf9\x9d\x5a\x16\xbb\xb7\xa5\x32\ +\x0e\x5a\xe7\x7e\x39\xb3\xc7\xc8\x75\x32\x7b\x14\x13\xb7\x6a\xed\ +\x1a\x77\x25\x55\x9f\x0c\xa3\x73\xf8\xd8\x68\xfb\x33\xb0\x69\xb1\ +\x73\x9d\x54\xd9\x14\x4f\x88\xa7\x27\x2a\x9c\xb5\x67\x27\x11\x58\ +\x82\xd8\xee\x3f\xfa\x4c\x4b\xcc\xec\xf1\xe3\xd5\x76\xf7\x53\x6e\ +\x20\x73\x73\x64\xd9\xa7\xf7\x98\x4f\xc1\xec\x06\x7f\x96\x53\xb6\ +\x75\x35\xb3\xc9\xed\x37\xc3\xf3\xcf\xda\xe6\xc8\xc8\x99\x59\x24\ +\x57\xc6\x8e\xa9\x16\x58\x6b\x61\x7a\x12\xe4\x7d\x48\x60\x09\x52\ +\x5f\xa3\x4d\x12\x21\xea\xd4\xdd\x1f\xde\x1f\x2e\x9e\x97\x31\x63\ +\x37\xe6\xec\x7e\x26\xb3\xb4\x32\x9b\x72\x37\x06\x87\xc7\xce\x80\ +\xa9\x27\xc1\x1b\xbd\x0e\x59\x7b\x57\xc0\x81\x95\x99\xe7\xd1\xf2\ +\x91\x0c\x49\xdc\x6c\xe2\x8d\x09\xfd\xc4\xef\xe4\xae\x66\xc6\x99\ +\x2a\x65\xb1\xec\x4d\xa6\x38\x67\xf1\xbd\xe2\x32\xc8\x69\xee\xea\ +\xdd\xa7\x39\xb8\x04\xa9\xd5\x17\xcc\xc3\x48\x4e\x10\x7c\xbe\x1e\ +\x4e\x38\x15\x2e\xfb\xc0\xff\x10\xa1\xad\x0f\x41\x9b\x8b\xa8\x5b\ +\x1f\xff\x0a\xbc\x31\xc0\x33\x32\xe6\x85\xa7\x33\xc6\xc1\x11\x79\ +\xba\xcd\x76\x4b\x92\xd1\x67\x41\x75\x8e\x5e\xf6\xd8\xb4\x14\xda\ +\x6d\x6c\xb3\x8c\x87\x42\x93\x9c\xef\xd4\xdf\xf9\xfe\x1e\x58\x82\ +\x34\x44\x75\x0d\xc2\x10\x91\x73\x33\x50\x5d\x79\x1d\x6c\xd8\x31\ +\xe3\x46\xeb\x67\x32\xb3\xc7\xea\xef\xda\x6b\x3c\x74\x26\xbc\x7f\ +\xf4\xd0\xf2\xe7\x4d\x82\xbd\xad\xe2\xb0\xd8\x97\x3b\x98\xa4\xd9\ +\x93\xd8\x2e\xb7\x72\x79\xaa\xd5\xf6\x38\xb4\xde\xe7\xdc\x9e\xb4\ +\xf2\x64\x63\x42\x3e\xe9\x2c\x99\x5f\x89\xc0\x12\xa4\x3e\xaa\x49\ +\x11\x7a\xdf\x3e\x1a\x1c\x94\x85\x4b\x33\xe4\xf8\x9b\xcf\x47\xbb\ +\x6e\x66\x0f\xb3\x21\x97\x0b\x9c\x67\xb0\x09\x26\x9a\xbc\x75\x98\ +\xbb\xec\x06\x82\xd9\x93\xfc\xe0\x3b\xf6\x1b\xf7\x31\xb3\xa0\xea\ +\xa8\xec\xca\x1c\x28\x77\xd7\x2b\xb0\xc1\x2e\x5c\xe9\xca\x58\x93\ +\xf4\x73\x90\xf6\xbf\x3e\x6e\x35\x06\x92\x20\xbd\x2f\xd3\x3a\x5a\ +\x52\x55\x54\xc2\xfc\x85\x70\xe9\x3f\xdd\x36\x7b\x68\x79\x33\x7b\ +\xac\xb9\xcc\xce\x94\xc4\xdc\x71\x7c\xfb\x5a\xb8\xd5\xd2\x28\xd2\ +\x10\xc4\x10\x25\x1f\xc9\x9c\x6e\x5d\x72\xa1\x5d\x49\xc6\x97\x64\ +\x92\xc5\x86\xda\x4e\xdb\x16\xa9\xe4\x5a\x58\x67\xf1\x62\x8b\x2a\ +\xed\xf1\x84\x54\xbb\xd5\x9f\x6b\xf9\x40\x12\x64\x6e\x8d\x4e\xd3\ +\x08\xf7\x3a\x35\x7e\xf2\x4e\x50\x73\x35\x34\x5b\x46\xd4\x70\xd2\ +\xd7\xf7\xdd\x8d\x39\x89\xd9\x03\xed\x73\x22\xdc\x6a\xf9\x4a\x6c\ +\x3e\x97\x59\xa6\x3d\x8b\x17\xda\xdf\x93\x8c\x3b\x27\xe3\xc6\xeb\ +\x77\x5a\xf5\x2d\xc0\xe1\x0f\x88\x39\xc9\x8a\x27\xc4\xe1\x85\x77\ +\xbf\x6b\xe6\xac\x2f\x90\x04\x99\x53\xab\x17\x96\xc0\xd5\x4e\xd5\ +\x3f\xf8\xa3\xb0\xd3\xf9\xfe\xdf\x9c\xaf\xbb\xd6\xee\x52\x70\xd2\ +\x0e\xf0\x93\x9f\xc1\xfa\x14\x5c\xb5\xca\xa9\xb6\x99\xef\x97\xed\ +\x0c\x55\x79\x44\xdd\x2c\xb5\xbe\xf5\x15\xbb\x1b\xf7\xf2\x83\x60\ +\xfc\x7f\xda\xb5\xc3\x8d\xd4\xba\xab\x21\x69\x31\xcb\x77\x46\x98\ +\x72\xcf\x3d\xb2\xd2\x8d\xee\x5c\xcb\xe6\xb1\xab\xec\x9b\x52\x5f\ +\xa3\x57\x4b\x04\xc7\xc5\xc1\xc7\x8e\x81\xf7\x6b\x9d\xd7\xfe\xf6\ +\x25\x67\x8e\x74\xd7\x5e\x6e\x97\xc3\xf8\x9e\x18\x1f\x14\x93\x7e\ +\xb4\x0a\x36\x38\xfc\x95\x1c\x5f\x02\x17\xe7\x69\x0f\xb2\x75\x0b\ +\xcc\x6d\xfb\x2f\x9a\xed\xda\xb4\xe3\x55\xfe\x9b\xa0\xac\xbf\x19\ +\xba\xff\xcf\xb9\xfc\x64\x92\x8f\x2f\x5e\x26\x7f\x72\x96\xcc\x9f\ +\x44\x30\x09\x12\xd5\x9b\x45\xd8\xca\xf5\x69\x60\x40\x0e\x3f\x11\ +\x56\x9e\xe6\x2f\x58\x6d\x8f\x41\xeb\xfd\xce\x3a\xfb\x66\x8f\x3e\ +\xc9\x37\xba\x9c\x97\x59\xf9\x5e\x5e\xf5\xd5\xcd\xcd\x2c\x92\x8b\ +\x65\xd6\xc6\x18\x74\x3e\xef\x8c\xa9\xa4\x99\xbe\xb0\x59\x3c\xbe\ +\xd6\xee\xac\xdf\x8b\x44\x20\x09\x62\xfb\x28\xce\xc1\x67\xc3\x07\ +\x9f\xf2\xd2\xec\xc1\xf3\x6c\xb8\x03\xba\xfe\xea\xac\xd3\xd8\x58\ +\x9d\xdd\xef\x1a\xf3\xd9\x76\xf8\xe5\x00\x4f\xb6\xe5\xfb\x1e\x64\ +\xa0\xda\xdb\xde\x8d\x54\x7d\x12\xc6\x4c\x73\x6e\xbf\x1b\x89\x4d\ +\x09\x68\xff\x83\x73\x8e\x94\xf2\xe5\x45\x09\xb1\x8a\x3d\xe0\xac\ +\xcd\x1f\x89\x40\x12\xa4\x3e\xaa\xf7\x8b\x70\xa6\x53\x13\xf7\x9c\ +\x03\x9b\x8f\x70\x92\x72\xf7\x7d\xf5\x45\x76\xa7\x57\xd7\xdd\x34\ +\xf0\x13\x6e\x66\x3f\xf2\x4c\xdb\x96\x28\x2a\xe6\x06\xfd\xc8\xea\ +\xfc\x9d\x5c\x0d\xd6\xda\xe7\x9e\x81\x1b\xaf\x73\xc6\x22\x17\xa7\ +\x59\xad\x0f\x42\xdb\x6f\x9c\xcb\xd6\x34\x97\xc5\x9b\x65\x9e\xb3\ +\x64\xfe\x24\x82\x4a\x90\xdf\x8a\x70\x82\x13\x0c\x3b\x9d\x0b\xea\ +\x18\xca\xc1\x49\xcb\x96\xef\xb6\xfe\x1e\xfd\x97\x57\xf6\x25\x0c\ +\xaf\xe4\xdc\x7e\x41\xbc\x07\xab\xcd\xe4\xf9\xfe\xd6\x73\xf3\x63\ +\xb0\xd9\x62\xd9\xaa\xca\x4d\xf1\x84\x7c\xcd\xdf\xd2\xb3\xd3\x16\ +\x48\x82\x34\xd4\xe8\xef\x88\xf0\x19\xa7\xa6\x8d\xfb\x12\x54\xec\ +\xe7\x24\x65\xff\xdd\x84\xee\x59\x7f\x93\xb3\xbc\x31\x46\x34\x96\ +\xba\x85\x96\x6c\x6f\xd7\xfd\x36\x60\xec\xf8\x13\xb4\xdc\xe3\x8c\ +\x96\xc2\x1d\xf1\x26\x39\xd7\x59\x32\x7f\x12\x81\x24\x88\xed\x12\ +\x6b\xec\x7f\x40\xa5\xa3\xb5\x96\x3d\x98\xb6\xb7\xe7\xe6\xee\xe3\ +\x64\x9f\x0f\x07\xec\x6b\xe9\x5d\xd2\xf6\x34\xcb\xef\x8d\xba\xad\ +\xb9\x49\x2a\xc5\xf5\x8b\xee\x15\x73\x6b\x12\x98\x14\x48\x82\xd4\ +\x45\x35\x1e\x11\xea\x9c\x50\x1a\x3b\x0b\x2a\x7d\x34\x8f\xb0\x25\ +\xc8\x45\x97\xc0\x47\x7c\x5c\xda\x39\xb5\xd3\xaf\xef\x4f\x3e\x06\ +\x0b\x2c\xb6\xc0\x7e\xfb\x89\x98\x68\x93\x9b\x6d\x9c\xba\x94\xef\ +\xc7\x12\x72\xa5\x5f\xed\xf5\x43\x4f\x20\x09\x52\x1f\xd5\x9f\x8a\ +\xe0\xe8\xef\x36\x66\x3a\x54\x0d\xf0\x28\xa7\x57\x60\x6c\x4f\xb0\ +\x06\xdb\xa0\x7b\x2d\x37\x5f\xf9\x5e\xfd\x1b\x5c\x6d\x71\xc7\xe3\ +\x37\x41\x5a\x7f\x09\x6d\x16\x31\x7b\xd3\xf0\xa5\xc6\x26\xb1\x7c\ +\x48\x21\x3f\xa8\x05\x92\x20\x73\x6a\xf5\xf2\x12\xf8\x81\x13\x04\ +\xa3\x4e\x87\x51\x8e\x3b\x15\x27\x2d\x5b\xbe\x1b\xb7\xda\xa1\xde\ +\xea\xe8\x93\x34\x06\x92\x85\x98\x86\x8b\x20\xd6\xc7\xbc\x29\x6a\ +\x16\xdd\x2b\x8e\x26\x46\xf9\xc4\x3e\x90\x04\x99\x5b\xa3\xdf\xd0\ +\x08\x8e\x91\xbf\xab\x4f\x82\xd1\xa7\xfa\x07\x57\x48\x90\x0c\x96\ +\x15\x47\xc2\xb8\xd9\xfe\xe1\xda\xb2\x08\x3a\x2c\x3c\x1d\x4b\x4a\ +\x38\xee\xce\xbb\x65\xb9\x7f\x25\x67\xaf\x29\x90\x04\x69\x98\xae\ +\x9f\xa7\x04\xc7\xe8\x53\x15\x47\xc0\xb8\x39\xd9\x83\xd0\xa7\x21\ +\x24\x48\x06\x09\xbf\x97\x58\xeb\x6f\x80\xee\xb7\x9c\xfb\x29\x5d\ +\xc1\x5e\x8d\x8d\x62\x21\xe9\xac\xcb\x2f\x89\x40\x12\x64\xe6\x19\ +\xba\x4b\x45\x25\xef\x39\x35\xb2\x74\x0a\x4c\xbc\xc0\x49\xca\xfe\ +\xbb\x2d\x41\xcc\x93\xd2\x7e\x84\xef\xb1\xaf\x99\x3f\x92\xc3\xb5\ +\xc4\x5a\xfd\x1d\x30\x6f\x19\x0e\x95\x42\x6b\x5e\x97\x7d\x5c\x17\ +\xd5\x74\x44\x18\x92\xc0\xe6\xa5\xbb\x1d\x7d\x7c\x54\xd8\xf6\xc5\ +\xd6\x42\x3d\xc5\xb2\xbd\x4d\xf7\x73\x06\x31\xef\xa9\x9b\x30\xa4\ +\x8e\x29\x42\x5b\xec\x1e\xf1\x21\x6a\x98\x63\x49\xae\x04\x02\x39\ +\x83\x98\x16\xd4\x47\x75\x93\x08\xa3\x9d\x5a\xb3\xc3\xe5\x10\xf1\ +\x29\x60\x8c\xed\x31\xef\xd6\x56\xbc\x4e\xf5\x0b\xd2\x77\xdb\x7b\ +\x10\x3f\x7d\xd4\xbb\xdf\x84\xf5\x37\x5a\xa0\x50\xc9\x7b\xb1\xb8\ +\x38\xc6\x60\xb6\xd0\xe4\xab\x48\x60\x09\x52\x17\xd5\x37\x23\xc2\ +\x9e\x4e\xad\x1d\xff\x55\xff\x1e\xb4\xb4\x75\x94\x3a\xf1\x14\x98\ +\x3d\xd7\xa9\x66\xc1\xfb\x6e\x6b\xb0\xe8\xe7\x4d\x7a\xfb\x9f\x60\ +\x93\xc5\x2d\x7a\x64\x07\x9e\xbf\xeb\x66\x39\x2c\x68\xa8\x05\x96\ +\x20\xf5\x51\x7d\x44\x84\x4f\x3b\x01\x36\xea\x0c\x18\xe5\x28\xe5\ +\xa4\x25\xf3\xdd\xd6\xd4\x64\xca\x54\xb8\xfc\x5a\x3b\x9d\x41\x92\ +\xfa\xf6\x57\x61\x8d\x45\x08\x1e\x3f\x7d\x42\x6c\x83\x58\x97\x7e\ +\x88\xa5\x0b\x6e\x90\x99\x41\xc2\xcb\xd4\x25\xb0\x04\x99\x5b\xa3\ +\x37\x6a\x04\x47\xc3\xb5\xb2\xfd\x61\xc2\x79\xfe\xc1\xba\xea\x1b\ +\x76\xba\x0a\x6d\xa3\x6e\xeb\x9f\xee\xf7\xbe\x6e\xcd\x15\x90\xb6\ +\x70\x47\x2e\xd9\x99\xaf\xdf\x79\xa3\x58\x84\xbb\xb6\xeb\x1f\xbf\ +\xa4\x02\x4b\x90\xd9\xd3\xf4\x98\xd2\x52\x9c\xcf\xc4\x4b\x33\x1b\ +\x75\xf1\x29\x10\x82\xed\x49\x56\xa1\xed\x43\x6c\x7d\xd3\xfd\x74\ +\xbb\x4d\xad\x87\xb5\x97\x59\x0c\xd5\x12\x68\x4b\x52\x91\x48\x88\ +\xc5\x23\xd2\x16\xfa\x7c\x14\x09\x2c\x41\x7a\x37\xea\x56\x2f\xdb\ +\x8e\xff\x1a\x94\xef\xed\x0f\x2a\xb6\x1b\xf5\x42\x5b\x66\xd9\x2e\ +\xaf\xfc\x0c\xff\x63\x02\xc6\x99\xc0\x71\x4e\xa9\x74\x2f\x52\x0b\ +\xae\x96\x3c\xc5\x9e\x74\xaa\xcd\xb6\xdf\x03\x4d\x90\xba\xa8\xbe\ +\x1a\x11\x1c\x0d\xda\xcd\x43\x95\xe6\xc1\x4a\x3f\x92\xad\x4f\x88\ +\x29\xab\x50\x8e\x7b\x6d\x8d\x14\x4d\x9b\x4c\xe8\x1f\xe3\x34\xe5\ +\x47\xb2\x75\xb5\x2d\x3f\x9c\xb7\x6f\xbf\x50\xf2\x10\xe6\xdb\x7d\ +\xab\x02\x4d\x10\x5b\xa3\xc5\x92\x5d\x61\xd2\x7f\xb9\x6f\xfc\x60\ +\x39\x4c\x4c\xac\xb4\x45\xa4\xc6\x8f\x1c\x00\x17\x5d\xea\x5f\xb9\ +\xb9\xd2\x64\x3b\x7b\x94\xec\x02\x93\x7c\x8a\xd3\xdb\xf3\x0c\xdb\ +\x77\x9d\x2f\x08\x4d\x9b\x2b\x3f\xcd\x0d\xb7\x9e\x2f\x96\xbb\xbf\ +\x5c\xa1\x34\xb0\xde\x40\x13\xa4\x6e\x86\x1e\x14\x51\x5e\xb2\x81\ +\x64\xe2\x85\x50\xfa\x21\x1b\x49\x67\x19\xdb\x0b\xc3\x42\x98\x45\ +\xdc\xcc\x1e\x7e\x2e\xaf\x3a\x5e\x80\x96\x85\xce\x58\x4b\x25\xba\ +\xd3\x7c\x26\x5c\x33\x51\x7c\x8e\x6e\xe6\x5c\xb6\x8d\x44\xa0\x09\ +\xd2\xb3\x0f\xa9\xd5\x76\x81\x4a\xa7\xc6\x54\x9f\x00\xa3\x3f\xe7\ +\x24\x65\xf7\xdd\x4d\xe8\x1f\xf3\xbe\xe0\xe5\xd7\x04\xd3\xf4\xc4\ +\x44\x33\x31\xb3\x47\x5b\x9b\x73\xbb\xcd\xe9\xd5\x0e\xf3\xfc\x0b\ +\xf9\x63\x5e\xb9\x35\x4f\x47\x38\xa5\xb2\x7d\xe8\xb8\xe3\x47\xf9\ +\x7c\xa4\xda\xa9\x46\xdb\x7e\x0f\x3e\x41\xa2\xfa\x6b\xb1\x78\x86\ +\x2d\x32\x3e\xd3\xc1\x7e\xa5\x8d\x8b\xa1\xd3\xf2\x71\xe2\x63\x3f\ +\x05\xff\x19\x40\x17\x5c\x13\xa4\xc1\x98\x97\xd8\x24\x3f\x2d\x78\ +\xd3\x6d\xbd\xe6\x25\x69\xe7\x92\xcb\x0e\xa2\xf9\x8e\x4b\xc4\xf1\ +\x99\x0b\x67\x4d\xb9\x91\x08\x3c\x41\x66\x4f\xd3\x23\x4b\x4b\xb1\ +\x78\xc8\x2b\xf3\x16\x78\x99\x4f\xa7\x59\xb6\x97\x86\x7d\xdd\x12\ +\xb4\x63\xdf\x87\x7f\x05\x77\xc7\xed\x07\x8d\x9f\x9b\xf3\xb6\x3f\ +\x40\x6b\xc2\xb9\x6c\xb3\xbc\xfa\xfb\x3b\x54\x3f\xf6\x98\xf8\x1c\ +\x7a\xdc\xb9\x6c\x5b\x89\xc0\x13\xa4\x67\x99\x15\xd5\x8d\x22\x38\ +\x5a\x5c\x55\x7c\x14\xc6\xf9\x68\x02\x62\x7b\x27\xd2\x07\x76\x50\ +\x4e\xb5\xdc\xec\x3b\x4c\xdd\xfd\x8c\x85\xa5\x0a\x26\xd4\x68\xea\ +\x03\xe7\x21\x58\xb2\x1b\xab\xee\xbc\x5e\x76\x72\x96\x1c\x3e\x89\ +\x82\x20\x48\x5d\x54\x17\x47\x84\x59\x36\x30\xf9\xb9\x59\x37\x7b\ +\x91\x75\xd7\x80\xf6\xbe\x16\xe5\x54\x7e\x75\x35\x7c\xfd\xdb\xc3\ +\xeb\xaf\xee\x96\x1c\x7e\xef\x3d\x3a\x9e\x87\x96\x98\x13\x52\x99\ +\xef\x91\x2a\x2e\xb8\x2b\x26\x8e\x8e\x71\x76\xda\x72\x23\x55\x10\ +\x04\x99\x35\x4d\xa7\x96\x96\xf0\x96\x38\x98\xbf\x1b\x88\x2a\xfe\ +\x0d\xc6\x35\xf8\x07\x96\xed\xc5\xe1\xd6\x25\x0e\xd7\x72\xeb\x37\ +\x0f\xc2\x12\xcb\xc1\xd9\x57\x5f\x3f\x4f\xae\xdc\xcc\x1e\x52\x41\ +\x7a\x61\xa3\x5f\xf6\x0f\xfe\xf5\x77\x7f\x4d\x05\x41\x10\x53\xe9\ +\x86\x5a\x7d\x07\xd8\xdd\x06\x8a\x49\xdf\x85\x12\x1f\x27\xee\xb5\ +\xd7\x42\xea\x1f\x36\x25\x6f\x91\x39\xe9\x54\x98\xe5\x23\x51\x87\ +\x2a\xdd\x9c\x56\xdd\x71\x8b\xfd\x86\xbc\x4f\x97\xd9\xaf\x99\x7d\ +\x9b\x5f\xc9\xf6\x68\xb7\xa7\x3c\xe5\xd1\x58\x42\x7c\x32\x33\xf5\ +\xab\x05\xdb\xeb\x29\x18\x82\xd4\xd7\xea\x1c\x81\x46\x1b\x28\xfc\ +\xde\x8b\xb8\x5d\x6a\xf5\xd5\xd1\x98\xa3\x18\x92\xe4\x32\x44\x90\ +\x39\xa5\x32\xb3\x86\x8d\x95\xee\xd6\xd8\xf9\xbd\xb4\x32\xba\xd7\ +\x5e\x65\xb7\xf7\x30\xb2\x1d\xc2\x7e\x4b\x97\x8a\x45\xcc\x77\x9b\ +\x1e\xcf\x9d\x4c\xc1\x10\xc4\x40\x60\xbb\x59\x37\xb2\x7e\xda\x67\ +\x19\x7d\x5e\x9e\x83\xee\xeb\x36\x73\x0c\x7c\x56\x74\xe0\x58\xbe\ +\x5e\xbb\xd6\xb8\xcf\xde\xdf\x0c\xaf\xbe\xec\x4d\x83\x9f\x3e\x1f\ +\xa6\x06\x6d\x4f\x40\xab\x6d\x5c\xf6\x34\x7f\x8b\x35\xcb\x41\xde\ +\x6a\x9e\xdf\x5c\x85\x45\x90\x69\x7a\xa5\x94\x72\xb1\x0d\x44\x66\ +\x89\x65\x36\xec\x7e\xbe\x59\x64\xfb\x34\xc2\x60\xf5\x33\xa6\x29\ +\xc7\x1e\x0f\x86\x30\x5e\x92\x59\x4a\x3d\xf7\x2c\x2c\x7f\xcc\x3b\ +\x31\x4c\xb9\x7e\xee\x3b\x8c\x3e\xe3\x56\xbb\xf6\x0a\xeb\xc3\x0c\ +\x4d\x26\x39\x6e\xf1\x32\xb1\x88\xf7\xee\x05\x25\x7f\xf3\x14\x14\ +\x41\x4c\xd3\x1b\x6a\x7b\xdc\xff\xcb\x6c\x60\x18\x3d\x0d\xaa\x7d\ +\x7e\x37\xd5\xcd\x05\xe2\x50\x75\x34\x64\x31\x4b\x2f\xf3\xdb\xdc\ +\xc6\x9b\x9f\xfe\xc9\xf8\x70\x98\x5b\x70\x33\x4b\x98\x19\xc3\xeb\ +\x6c\xb1\xb5\x5e\xbf\xc9\x61\x74\xb7\xdc\x0d\x1d\x4f\xdb\xf4\x48\ +\x8f\xcc\x7b\xb1\xa6\xe0\xb9\xd6\x0e\x56\xfb\x82\x23\x88\xed\xdb\ +\x21\xa6\xc1\xc6\x80\x61\xd2\x0f\x20\xe2\xf3\xd3\x90\x7e\x91\xc4\ +\x7a\x48\xf9\x24\xe8\xa7\xaf\x79\x5f\x95\xba\xdf\x81\xf5\xd7\xdb\ +\x57\x50\xa1\x2e\xde\x24\x8b\xec\x73\x0c\xaf\x64\xc1\x11\xe4\xf8\ +\xe3\xb5\x72\xea\x64\x5a\x6c\x67\x91\xf2\x03\x61\x7c\x0e\xe2\x85\ +\x67\xbb\xdc\xca\x77\xb7\xe7\x62\xe6\x30\x73\xb9\xb9\x27\x4a\x59\ +\x78\x0c\x9a\xf6\xaa\xf2\x7e\x3c\x21\xbb\xe4\xbb\xed\xd9\x94\x57\ +\x70\x04\x31\x8d\xad\xab\xd1\x6f\x45\x22\x58\x3c\x07\x93\x81\xc6\ +\x4f\xbf\xf5\xad\xc1\x36\x41\x1e\x5a\xef\xb5\x5e\x7b\x67\xd3\x4f\ +\x9e\xf3\x9a\xd3\x2a\xf3\x07\xa2\x6c\x1f\xcf\x2a\x06\xcd\xb8\xf1\ +\x4e\xe8\x7c\xd1\x4e\xaf\x89\x7b\x95\x4a\xf1\xb1\xc5\xcb\xc4\xd2\ +\x3a\xcc\x4e\x6f\xae\xa5\x0a\x92\x20\x06\x94\x86\x5a\x7d\x17\xd8\ +\xd5\x0a\xa0\x48\xaf\x9d\x96\x63\x8c\x14\x2b\x6d\xdb\x08\x19\x07\ +\x2b\xb3\xe4\x72\x7b\x4f\xe2\xbe\x24\xf7\x39\xcc\x3d\x87\x79\xb5\ +\x36\x17\xb6\xb2\xb6\x4f\x1a\xf4\xd5\x5a\x95\xdf\xc4\x13\x72\xb2\ +\xfb\x56\x0c\x6f\x8e\x82\x25\x48\xfd\x74\x3d\x84\x08\x2f\xd8\xdc\ +\xae\xf7\xec\x47\x46\x83\xb9\x40\x8c\xe4\x20\x34\x99\xb6\x83\x79\ +\x45\xa9\xed\xe1\xe1\xed\xcc\xbe\xd2\xcd\xac\x51\x75\x3c\x8c\xf6\ +\xc9\xcb\xb2\x7f\xab\xba\x57\xf6\xee\x3b\xd4\xba\xbd\xdd\x6f\xaf\ +\x62\x6c\x90\x8d\x12\x07\x6b\x49\xc1\x12\xa4\x67\xa9\x15\xd5\x87\ +\x22\xc2\x67\x6d\xbb\xc9\x84\x2a\x9d\xf0\x15\x30\x03\x28\x17\xc9\ +\x5c\x28\xb6\x2c\xb6\x8b\x10\x9f\x8b\xf2\x8d\x4e\x13\x74\xc1\x3c\ +\xc2\xe9\x97\xdb\x6c\xff\x7a\xa6\xd6\xc0\xba\xf9\xa0\xad\xf6\x2d\ +\x90\x34\xdf\x5c\xd8\x2c\x3e\x3f\xec\x66\x5f\x7e\x36\x92\x05\x4d\ +\x10\xd3\xf0\xfa\xa8\xb6\x89\x50\x65\x0b\x42\xf9\x7e\x30\xde\xf1\ +\x81\x69\x5b\x6d\x03\xcb\x19\x53\x79\x63\xc3\x65\xf3\x94\x42\x76\ +\x25\x6d\xc9\x6d\xfc\x39\xcc\x8c\x91\x2b\x62\x98\x92\xd2\x9b\x60\ +\xfd\x7c\xfb\x4d\xb9\xc9\xa3\xb0\x22\xde\x24\xfb\xfa\xd5\xce\x7c\ +\xeb\x29\x78\x82\x98\xf0\x40\x25\x25\x3c\x69\xbb\xd4\x32\x00\x57\ +\x1c\x0a\x63\xe7\x82\xe4\xb8\xf5\x66\x7f\xd2\xfe\x74\xe6\x8e\xc0\ +\xd6\x22\xd8\xcd\x00\x88\x4c\x80\x8a\x83\xa1\xfa\xf8\xdc\x12\xa3\ +\x87\x1c\x1d\xbd\xe4\xf8\xa7\x9b\x1a\xd2\xd5\xa6\x7c\x28\x91\x90\ +\x75\xae\x72\x05\x48\x38\xc7\x43\x24\x3f\x2d\xad\xab\xd1\x9b\x22\ +\x11\xbe\xe2\xa6\x34\xf3\x32\x95\x79\xa1\x2a\x5f\xc9\x98\xaa\x74\ +\xbd\x0e\x5d\x2b\xb2\xdb\xd0\x9b\xc0\x0a\xe5\xfb\x40\xf9\xbe\x19\ +\x72\xe4\x23\x99\xe3\xdc\x0d\x3f\x83\xee\xb7\xdd\x95\xa6\x69\xce\ +\x8a\x37\xcb\x2f\xdc\xe5\x0a\x96\xf4\x88\x20\x48\xef\x52\xeb\x75\ +\x11\x5c\x1d\x66\x56\x1d\x03\xa3\x6b\x72\x3f\x93\xf4\xef\x72\xb3\ +\xa9\x37\xb3\x4b\xf7\xbb\x60\xf6\x2d\xe6\xff\x83\x25\x73\x3c\x1b\ +\xa9\x82\xb2\xdd\xa0\x74\xd7\xdc\x9c\x48\x0d\x35\x24\xd3\xed\xb0\ +\xe1\x16\x48\x1a\x5b\x6a\x17\x29\xad\x2c\x69\x4c\x88\x8f\xcf\xf0\ +\xb8\x28\xdc\x47\xd1\x11\x43\x90\x68\x54\x27\x56\x09\xef\x0b\x94\ +\xbb\xc1\xa7\x67\xb9\x55\xef\x5f\x64\x46\x37\x65\x07\x5d\xb6\x67\ +\xcf\xf1\x53\x48\xad\x72\x57\xd3\x42\xbc\x10\x1c\xac\x85\x23\x86\ +\x20\xa6\x81\x0d\x33\xf5\x34\x4d\xf1\x80\x9b\xfd\x88\xc9\x57\xf6\ +\x11\x18\x7f\x0e\x88\x95\x85\x97\xbb\xc1\x52\xa8\xd2\x66\x66\x33\ +\xcb\x2a\xdb\x5b\xf2\x7f\xb5\x53\xe9\xd0\x2a\xf6\x89\xc7\xc5\xf1\ +\x01\xa4\x42\xc0\x66\x44\x11\xa4\x67\xa9\x55\xab\x73\x50\xe2\x6e\ +\x49\x62\x8e\x80\xc7\x7f\x01\x4c\x74\x94\x62\x4f\xe6\x14\xce\x44\ +\x45\x34\x33\x88\xcb\xd4\x9d\xec\xe4\xa3\x8b\x7f\x21\x1e\x8d\xf0\ +\x5d\x96\x96\x07\xf1\x11\x47\x10\x83\x59\x5d\xad\x9e\x2b\xca\xad\ +\x6e\x49\x22\x95\x30\x76\x76\xfe\x36\xbf\x79\xe8\x5f\x77\x45\xa4\ +\x33\xc7\xd3\x6d\xbf\xcb\x9c\xcf\xba\x4c\xe9\x64\x92\xa3\x0b\xcd\ +\x94\xc4\xa9\x8d\x23\x92\x20\xbd\x33\xc9\x85\x28\x57\xb9\x25\x89\ +\xc9\x5b\xf5\x09\x30\xa6\xf2\xc1\x0c\xa7\xec\xd4\xa5\xde\xbe\x9b\ +\x48\xec\x1b\x17\x42\xd2\xe5\x49\x95\x29\xcd\xd8\x59\xa9\x70\x66\ +\x63\x93\x3c\xe0\xad\xf4\xe0\xe6\x1a\xb1\x04\x31\x90\xcf\x9d\xa1\ +\x57\xa9\x72\x91\x17\xf8\x8d\xc3\xd5\xd8\x59\x50\x36\xd5\x4b\xee\ +\xc2\xca\xd3\xfe\x4c\xaf\xd1\xa5\x87\xe8\x54\x6a\xf8\xa1\x34\x34\ +\x26\xc4\xca\x1d\xba\xb0\x90\x09\xf0\x03\x3a\x7e\x01\x59\x5f\xab\ +\x9e\x67\x12\xb3\xca\x30\x47\xc1\x63\x4e\x07\xb3\xfc\x1a\x69\x29\ +\xb9\x06\xcc\x1b\xe6\xc9\xbf\x7b\x6e\x59\x5a\x95\x59\xf1\x84\x58\ +\x3c\x72\xe0\xb9\x8c\x61\xcd\x38\xa2\x67\x90\x3e\x64\xeb\x6b\xb5\ +\x01\xe5\x2e\x2f\xcb\x2d\xa3\x43\xc6\xc0\xd8\x9a\xcc\x0d\xfc\x48\ +\x48\x26\xf2\xfa\xe6\x87\x7b\xf7\x1a\x16\xe1\x41\x07\x69\x73\x4a\ +\xe1\xc4\x78\x93\x3c\x3a\x12\x30\x19\xac\x0d\x45\x41\x10\xd3\xf8\ +\x39\x51\xfd\x6c\x89\xf0\x3f\x80\xe7\xb7\xa8\xca\xf6\x80\x51\x27\ +\x41\xf9\x01\x85\x39\x24\x34\x09\xed\x4f\x41\xdb\xef\x21\xbd\x21\ +\xab\x36\x74\x25\x93\x1c\x3b\xd2\x36\xe4\x03\x21\x52\x34\x04\x31\ +\x8d\x37\x71\x7e\x4b\x4a\x78\x4a\x84\xac\x5e\x33\x2a\xdd\x0d\xcc\ +\xa3\x3d\xf9\x32\xf5\xc8\x6a\x28\x9b\x4d\x74\x17\xb4\x2f\x87\xb6\ +\x47\x3d\x1d\xdd\x6e\x5b\xbc\xd2\x46\x37\x87\xc4\xee\x97\x37\xb2\ +\xad\x57\x21\xe4\x2f\x2a\x82\x98\x0e\xa9\xab\xd3\x3d\xa5\x93\x3f\ +\x09\x4c\xce\xb6\x83\xcc\x46\xbe\xea\x68\xa8\x3c\xdc\xbf\xb7\xda\ +\xb3\xad\xd3\xd6\xf9\x8d\xbf\x78\xc7\x5f\xa0\xe3\xcf\x60\xcc\x5b\ +\xb2\x4e\xc2\xdf\xa4\x8a\x63\x17\x2e\x94\xec\xe6\x9f\xac\x2b\x92\ +\x3f\x05\x45\x47\x90\x3e\x68\xeb\xa2\xfa\x2b\x81\x53\x7d\xb1\xe8\ +\x15\x28\xdb\x17\xaa\x8e\x84\x8a\x43\x72\xe7\x6f\x62\x33\x2c\xcc\ +\x0d\x78\xc7\xb3\x99\x1f\xb7\x26\x22\x83\xe9\xef\x39\xc6\x55\xe6\ +\x37\x36\xcb\x05\x36\x75\x18\x49\x32\x45\x4b\x90\x9e\xd9\x24\x73\ +\xa1\x78\x8b\x88\xf7\x7d\xc9\x76\x83\x21\x02\xa5\x53\x33\x16\xb7\ +\xc6\xd0\xb0\x7c\xaf\xdc\x9a\xb0\x98\xdb\xee\x3e\x2b\x61\x73\x03\ +\xee\x17\x29\xfa\xda\xa5\x4a\x97\x0a\x67\x34\x36\x49\x40\xfc\x25\ +\xf3\x4b\xbf\xa2\x26\x88\x81\x7a\xc6\x0c\xfd\x70\x85\xf2\x07\x81\ +\x1d\x72\x05\xbd\x21\x4c\xd9\xae\x50\xba\x7b\xef\xef\x29\xde\x4a\ +\x4a\x6f\xce\x58\xfe\x26\xdf\xcd\x58\x02\x27\x57\x42\x6a\xb5\x37\ +\x5d\x36\xb9\x54\x79\x2d\x32\x8a\xa3\x8b\x69\x49\xd5\x1f\x97\xa2\ +\x27\xc8\xbf\x96\x5c\x35\xfa\x23\x11\xbe\x2d\x62\x17\x94\xce\x66\ +\x80\x0d\x25\x53\xba\x33\x44\xc6\x19\x1f\x59\x88\x54\x80\x18\x1b\ +\xe4\x0a\x88\x94\x41\xda\x3c\xb7\xd0\xd5\xfb\xbb\x33\xf3\x3b\xb9\ +\x0a\xd4\x04\x3b\xca\x47\x52\xda\xd2\xc2\x37\x1a\x9b\xe4\xf6\x7c\ +\x14\x17\xe4\x32\x42\x82\x6c\xd5\x3b\x26\xe6\xd6\x94\x1d\xb9\x47\ +\xe0\x0c\x2c\x9e\x5a\x08\x72\xc7\x7a\xa9\x9b\x2a\x29\x11\x6e\x8f\ +\x35\x19\xe7\x33\xf1\x7e\x43\xe2\xa5\xf0\x80\xe6\x09\x09\x32\x40\ +\xc7\xcc\x9a\xae\xfb\x96\x95\x72\x1f\xca\x81\x01\xed\x37\x7f\xab\ +\x95\x31\x4c\x7c\x54\x46\x31\xad\x98\x97\x53\x03\x81\x1a\x12\x64\ +\x88\xa1\x36\x77\x86\x1e\xad\xca\x02\x55\x0e\xf0\xe5\xb4\xcb\xdf\ +\x61\x9d\xbd\xb6\x8c\x91\xe1\x53\x65\x49\x66\x2f\x58\x26\x1e\xcc\ +\x14\xb3\xaf\x42\xd0\x35\x84\x04\xb1\xe8\xa1\x1e\xa2\xc0\x1d\x9a\ +\xe6\xc0\x91\x40\x94\x9e\x63\x5b\x58\xde\x5d\xc2\xec\x7b\xee\x91\ +\x95\x16\x10\x14\xad\x48\x48\x10\x17\x5d\xdf\x10\xd5\xc3\x15\x7e\ +\x2e\xc2\x61\xe6\x89\x3d\x17\x59\x83\x22\xda\x8d\xb2\xbc\xb3\x84\ +\x86\x90\x18\x76\x5d\x12\x12\xc4\x0e\xa7\x6d\xa4\xe6\xcd\xd3\xd2\ +\xb7\x5e\xe6\x6b\x2a\x7c\x91\x34\xfb\x79\x35\x82\xf4\x50\xb4\x97\ +\x2c\xa9\x34\x3c\x97\x8e\x30\x7f\xf1\x3d\xb2\xc4\x8b\x82\x62\xce\ +\x13\x12\x24\xcb\xde\xaf\x9b\xae\x47\x48\x09\x3d\x01\x99\x83\x02\ +\x66\xcf\x9e\x5b\x33\xd1\x5a\x54\xf9\x71\x3c\x21\xdf\xc9\xb2\x99\ +\x45\x9b\x3d\x28\x7d\x5a\xb0\x1d\xd0\x10\xd5\x27\x10\x8e\xeb\xdf\ +\x00\x33\x48\xa5\xe7\x9f\xdc\x36\xcd\x6c\x26\xfa\xd2\x20\xfb\xa3\ +\x8e\x74\x37\x53\x1b\xef\x13\x97\xb1\x49\x72\x5b\xef\x42\xd1\x9e\ +\xe3\xee\x2b\x14\x18\xbc\xd5\xb3\xa1\x46\x4f\x22\x82\x95\x09\x86\ +\x42\x8b\xc0\x9b\x0a\x53\x04\xcc\x15\xa1\x17\xb3\xfb\x6e\x60\x9d\ +\xc2\x5b\x28\x55\x22\xd8\x79\xa8\x28\xb7\xc4\x12\xf2\x65\x6f\xad\ +\x2c\xee\x5c\x21\x41\xb2\xe8\xff\xfa\xa8\xfe\xaf\x08\x87\xd8\xa8\ +\x48\xa7\x99\xde\xd8\x2c\xdb\x3c\x73\x59\x5f\xaf\xbb\x26\x5b\xd8\ +\xb1\xb4\x9c\x09\x91\x34\x13\xd2\xca\x78\x2d\x61\x74\x24\xcd\x26\ +\x85\x75\xc9\x08\xeb\x53\xc2\xba\x48\x84\xd5\x77\xdf\x2d\x1f\x6c\ +\x5d\xce\xec\xd9\x3a\xb6\xb4\x8b\x77\x90\x1e\xb2\x0d\x99\xcc\x05\ +\xa0\xc2\xbe\x8d\x09\x79\xcb\x49\x36\xfc\xbe\x2d\x02\x21\x41\x3c\ +\x8e\x88\xba\x1a\x9d\x16\x89\x70\xaf\x4d\x76\x55\x9e\x8d\x27\xe4\ +\x48\x1b\x59\x37\x32\xf5\xb5\x7a\xb1\xc0\x95\x36\x79\x14\x16\xc5\ +\x9b\xa4\xce\x46\x36\x94\xd9\x6a\xd9\x1a\x82\xe1\x05\x01\x95\x86\ +\x28\x2f\x23\x7c\xc4\x32\xf7\xb1\xb1\x26\xff\x5f\x75\x3d\xe5\x14\ +\xad\x98\x3c\x06\x73\xc1\xb7\x93\x45\x3d\xd2\x29\xe5\x80\x45\x09\ +\x79\xcd\x42\x36\x14\xe9\x45\x20\x9c\x41\x3c\x0c\x05\xe3\xe3\x2e\ +\xb0\xd0\x2a\xab\xf2\x48\x2c\x21\x27\x58\xc9\x7a\x10\x6a\xa8\x55\ +\x13\xb4\xfb\x26\xcb\xac\xf7\xc7\x9a\xe4\x6c\x4b\xd9\x50\x2c\xf7\ +\x67\x2c\x23\x0f\xe3\xe3\x8f\xd7\xd2\x29\x3b\xf2\x96\x08\xbb\x59\ +\xb5\x4e\x39\x22\x96\x90\xbf\x58\xc9\x7a\x10\x72\x5b\x9f\x74\x8a\ +\x23\x1b\xef\x95\x67\x3d\x14\x55\x94\x59\xc2\x19\xc4\x65\xb7\xbb\ +\xf9\x8b\xad\xca\xb2\x78\x42\x72\xfe\xc8\x42\x5d\x54\xeb\x22\x42\ +\xdc\xa6\x29\x0a\xbf\x8b\x37\xc9\x89\x36\xb2\xa1\x4c\xce\x4f\xe9\ +\x47\x16\xc4\x6e\xd7\xfc\x2a\xec\x1f\x5f\x2a\xff\x97\x7b\x14\x54\ +\xea\xa3\xbc\x22\xc2\x7e\x36\x65\xa5\x95\xe3\x1a\x13\xb2\xdc\x46\ +\xb6\xd8\x65\xc2\x19\xc4\xc5\x08\xa8\x8b\xea\x45\x11\xe1\x2a\xcb\ +\x2c\x77\xc5\x9a\xe4\x0b\x96\xb2\x59\x8b\x35\x44\xd5\xf8\xb0\xd8\ +\x3e\x56\xf3\x4c\xac\x49\x8e\xca\xba\xd0\x22\x50\x10\x12\xc4\xb2\ +\x93\xdd\xdc\x3b\x00\xdd\xaa\xec\x19\x4f\xe4\xf7\x09\x80\xfa\xa8\ +\x3e\x23\xc2\x11\x36\x4d\x4a\xd3\xe3\x67\x3e\xe2\x62\xe9\xda\xb4\ +\xdd\x8d\x4c\x48\x10\x4b\xb4\x1a\xa2\xfa\x43\x84\xef\x59\x8a\xcf\ +\x8f\x35\xc9\x37\x2d\x65\x7d\x13\x6b\xa8\xd5\x63\x00\xbb\xa5\x93\ +\xf2\x6a\x2c\x21\xfb\xfb\x56\xf8\x2e\x54\xf4\x27\x00\x00\x04\x98\ +\x49\x44\x41\x54\x08\x55\x14\x12\xc4\xa2\x63\xcf\x89\xea\xc4\x6e\ +\xe1\x1d\x01\xc7\x57\xd6\x15\x36\x27\x4b\xd9\x7d\xc9\x12\x59\x6f\ +\xa1\xda\x77\x91\xfa\x5a\xfd\xb5\xc0\xc9\x36\x8a\x55\x99\x1d\x4f\ +\x84\x16\xbe\x43\x61\x15\x12\xc4\x62\x24\x35\xd4\xea\x0d\xc0\xd7\ +\x2d\x44\x8d\x11\xed\x65\xf1\x26\x99\x67\x23\x9b\x0b\x99\xba\x19\ +\x7a\x50\x44\x79\xc9\x4a\xb7\xf2\xe6\x9e\x07\xb2\xef\xbc\x79\xa1\ +\xff\xf9\x60\x78\x85\x04\x71\x18\x49\xf5\x51\xdd\x55\x04\x63\xc3\ +\xe4\xfc\x40\x9b\xb2\xae\xa2\x83\xdd\x6f\x7b\x40\xda\xac\x06\x68\ +\x8e\x84\x1a\x6a\xd5\x44\x5b\xaf\xb5\x52\xaf\x9c\x17\x4b\xc8\x6d\ +\x56\xb2\x45\x28\x14\x12\xc4\x89\x20\xb5\xba\x40\xc0\xea\x34\x2a\ +\x9d\xe6\x9b\x8d\xcd\x32\x7f\xb8\xc7\xd1\xdc\x99\xba\x47\x3a\xc5\ +\x0a\xcb\x80\x78\x1f\xbc\xbd\x8a\xdd\x1e\x7b\x4c\x92\xc3\x5d\xef\ +\x20\x96\x1f\x12\x64\x88\x5e\xa9\x8b\xea\x9e\x11\x61\x85\x8d\x7b\ +\xad\x2a\xef\xbe\xb3\x9a\x3d\x83\x32\xd0\xea\x6b\xf5\x36\x81\x73\ +\x6d\x06\x9d\x2a\xdf\x8a\x27\xe4\x7a\x1b\xd9\x62\x93\x09\x09\x32\ +\x44\x8f\xbb\x5a\xaa\xa4\xf9\x42\xac\x59\xee\x0a\xca\x00\xaa\x3b\ +\x5b\x27\x47\xca\x7a\x0c\x19\x1d\x9f\xfe\x51\x65\x6d\x65\x07\x53\ +\x86\x7b\x69\x18\x14\xec\xb6\xae\x47\x48\x90\x41\x7a\x65\x6e\x54\ +\x0f\x56\xe1\x45\x9b\x4e\x33\x21\x3a\xe3\x09\xf6\xef\xf5\x21\xb4\ +\xc9\x92\x17\x99\xfa\x5a\xfd\xb1\xc0\xb7\xad\x0a\x53\x2e\x8d\x25\ +\xe4\x72\x2b\xd9\x22\x12\x0a\x09\x32\x48\x67\xd7\x47\xf5\x41\x11\ +\x4e\xb1\x19\x0b\x03\x39\x43\xd9\xe4\xcb\xb5\xcc\xac\x59\x3a\xa1\ +\x34\xc9\x4a\xdb\xe3\xe9\x54\x19\xbb\x2c\x5e\x2c\xf9\x0a\x70\x9a\ +\xeb\xe6\xfb\xa2\x3f\x24\xc8\x00\x30\x9a\x40\x0c\x91\xde\x40\x0c\ +\x4e\x28\xe7\xca\x19\xca\xa9\x5c\xdb\xef\xf5\xb5\xfa\x03\x01\xab\ +\x99\x21\x0c\xf0\xb0\x3d\xaa\x21\x41\x06\x18\x69\x83\x05\x62\x18\ +\x70\x50\xa6\x39\x21\xd6\x2c\x8f\xd8\x0e\xd8\x7c\xcb\x7d\xf1\x74\ +\xad\xee\xac\x64\x25\xc2\x44\x8b\xb2\xc3\x00\x0f\xfd\x40\x0a\x09\ +\xd2\x0f\x90\xb9\x51\xfd\xac\x0a\x0f\x59\x0c\x26\x13\x52\x67\x79\ +\x3c\x21\xdb\x45\x34\xb1\xc9\x9b\x4f\x99\x86\x5a\x35\x97\x9c\xe6\ +\xb2\xd3\x39\x85\x01\x1e\xb6\xc1\x28\x24\x48\xbf\x21\xe3\x26\x10\ +\x03\x39\x76\x86\x72\x1e\xcd\x76\x12\x6e\x9c\xaa\xc2\x00\x0f\xdb\ +\x62\x1a\x12\x64\x2b\x3c\xea\x6a\x34\x1a\x89\xd0\x64\x33\xec\xf2\ +\xe5\x0c\x65\x53\x17\x1b\x19\x37\x6e\xc2\x61\x80\x87\x2d\x88\x86\ +\x04\xf9\x17\x16\x3d\x81\x18\x56\x20\xec\x65\x31\xe0\xd2\xf9\x73\ +\x86\xb2\xa8\x8d\x95\x88\x2b\xa7\xaa\x30\xc0\x43\x2f\xa6\x21\x41\ +\x7a\x81\x68\xa8\xd1\xff\x20\xc2\x9d\x56\x63\x0d\xf2\xea\x0c\x65\ +\x59\x27\x47\xb1\xb9\xb5\x7a\x96\xc2\x7d\x8e\x82\x19\x81\x30\xc0\ +\x43\x18\xb4\x21\x33\x12\xdc\xac\xd1\x87\xcb\x19\xca\x72\x50\x3b\ +\x8a\xb9\x72\xaa\x0a\x03\x3c\xe4\x3a\x72\xac\x63\x7f\x05\x42\xc0\ +\xd5\x29\x0f\x0c\x8b\x33\x94\x5f\x40\xb9\x71\xaa\x0a\x03\x3c\x14\ +\x68\xd0\x86\xd9\x51\x3d\xa0\x4c\x99\xec\xcb\xa0\x11\xca\xd2\xd0\ +\x2c\xc2\x58\x0b\x7d\x1d\x62\xcc\xc8\xd3\x6c\xb2\x90\x0d\xac\x88\ +\x0a\xd7\x21\x1c\x6e\x53\x41\x49\xf7\xf8\xc1\xd8\xf9\x97\x38\x28\ +\x4c\x09\xc9\x42\x0b\x16\x51\x50\x7b\x90\xfa\xa8\x7e\x1c\xe1\x72\ +\x81\x9c\x05\x62\xb3\x19\x34\xa1\x4c\x16\x08\x28\xaf\x02\x37\xc6\ +\x12\x72\x4b\x16\x5a\xf2\x96\xb5\x60\x08\x32\x27\xaa\xfb\x45\x84\ +\x3f\x0b\x56\x7f\xe9\xf3\x06\x60\x58\x90\x37\x04\xd2\xf0\xc5\x42\ +\x78\x66\xba\x60\x08\xd2\x50\xab\x7f\x04\x8e\xf6\xd6\x1d\x61\xae\ +\x20\x22\xd0\x9d\x64\x8f\x25\x01\x7f\x3c\xb4\x20\x08\x62\x66\x8f\ +\x12\xe9\x99\x9a\xc3\x34\x82\x10\x50\xb8\x28\xde\x24\xd7\x04\xb9\ +\x49\x05\x41\x90\xba\x5a\x3d\x35\x02\xbf\x0a\x32\x90\x61\xdd\xdc\ +\x23\xa0\x70\x7b\xbc\x49\xbe\xe8\x3e\x67\xfe\x72\x14\x04\x41\xea\ +\xa3\x5a\x23\x42\x22\x7f\xb0\x84\x25\xe5\x09\x81\xc5\xb1\x26\x99\ +\x93\xa7\xb2\x3c\x15\x53\x10\x04\x71\xe3\x9f\xe1\x09\x85\x30\xd3\ +\xf0\x20\xa0\x5c\x19\x4b\xc8\xf7\x87\xa7\x70\xbb\x52\x0b\x82\x20\ +\xa6\x29\xf5\x51\x5d\x69\xfd\xe4\x80\x5d\xdb\x43\xa9\x61\x46\x40\ +\x84\xa3\x16\x2e\x95\x9e\x17\x82\x83\x9a\x0a\x87\x20\x35\xfa\x39\ +\x89\x10\xc6\x92\x0d\xea\x48\x72\x5f\xaf\x9f\xc7\x9a\xe4\x4b\xee\ +\xb3\xe5\x37\x47\xc1\x10\xc4\xc0\x62\x5e\x95\x55\x61\x41\x38\x93\ +\xe4\x77\x90\xf8\x59\x9a\x2a\xed\x08\x57\xc5\x9b\xe4\x0a\x3f\xf5\ +\xe6\x4a\x57\x41\x11\xa4\x0f\x84\xba\xa8\x1e\x1b\x51\x3e\xa1\x11\ +\xaa\x73\x05\x4c\xa8\xd7\x5f\x04\x44\x49\x8b\xf0\xe2\x66\xe5\xd1\ +\x44\x42\x36\xfa\xab\x3d\x77\xda\x0a\x92\x20\xb9\x83\x23\xd4\x1c\ +\x22\xb0\x2d\x02\x21\x41\xc2\x11\x11\x22\x30\x04\x02\x21\x41\xc2\ +\xe1\x11\x22\x10\x12\x24\x1c\x03\x21\x02\xde\x10\x08\x67\x10\x6f\ +\xb8\x85\xb9\x8a\x04\x81\x90\x20\x45\xd2\xd1\x61\x33\xbd\x21\x10\ +\x12\xc4\x1b\x6e\x61\xae\x22\x41\x20\x24\x48\x91\x74\x74\xd8\x4c\ +\x6f\x08\x84\x04\xf1\x86\x5b\x98\xab\x48\x10\x08\x09\x52\x24\x1d\ +\x1d\x36\xd3\x1b\x02\x21\x41\xbc\xe1\x16\xe6\x2a\x12\x04\x42\x82\ +\x14\x49\x47\x87\xcd\xf4\x86\x40\x48\x10\x6f\xb8\x85\xb9\x8a\x04\ +\x81\x90\x20\x45\xd2\xd1\x61\x33\xbd\x21\x10\x12\xc4\x1b\x6e\x61\ +\xae\x22\x41\x20\x24\x48\x91\x74\x74\xd8\x4c\x6f\x08\x84\x04\xf1\ +\x86\x5b\x98\xab\x48\x10\xf8\x7f\xe2\xbb\x36\x6e\xe2\xc4\xb7\xc7\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x3a\xf6\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x20\x00\x49\x44\x41\x54\x78\x5e\xed\x5d\x07\x78\x54\x45\ +\xd7\x7e\x67\x37\x8d\x10\x7a\x80\x10\x6a\xe8\x91\xde\x9b\xf4\xde\ +\xbb\xb4\x04\xb1\x7c\x48\x49\xb0\x7e\x7e\xa8\x24\xae\x09\xf6\x82\ +\x9a\x80\x8a\xbf\x88\x24\xa0\x88\x22\x55\x8a\x20\xbd\xa3\x80\x48\ +\xef\xbd\x87\x96\x00\x09\xc9\xce\xff\x9c\x8b\x51\xcc\xce\xbd\x7b\ +\xef\xee\x6c\xb2\x49\xf6\x3c\x4f\x5c\x1e\x77\x66\xee\x99\x33\xf7\ +\xdd\x99\x39\x95\xc1\x43\x1e\x09\x78\x24\xa0\x2a\x01\xe6\x91\x8d\ +\x47\x02\x1e\x09\xa8\x4b\xc0\x03\x10\xcf\xdb\xe1\x91\x80\x86\x04\ +\x3c\x00\xf1\xbc\x1e\x1e\x09\x78\x00\xe2\x79\x07\x3c\x12\x70\x4c\ +\x02\x9e\x1d\xc4\x31\xb9\x79\x7a\xe5\x13\x09\x78\x00\x92\x4f\x16\ +\xda\x33\x4d\xc7\x24\xe0\x01\x88\x63\x72\xf3\xf4\xca\x27\x12\xf0\ +\x00\x24\x9f\x2c\xb4\x67\x9a\x8e\x49\xc0\x03\x10\xc7\xe4\xe6\xe9\ +\x95\x4f\x24\xe0\x01\x48\x3e\x59\x68\xcf\x34\x1d\x93\x80\x07\x20\ +\x8e\xc9\xcd\xd3\x2b\x9f\x48\xc0\x03\x90\x7c\xb2\xd0\x9e\x69\x3a\ +\x26\x01\x0f\x40\x1c\x93\x9b\xa7\x57\x3e\x91\x80\x07\x20\xf9\x64\ +\xa1\x3d\xd3\x74\x4c\x02\x1e\x80\x38\x26\x37\x4f\xaf\x7c\x22\x01\ +\x0f\x40\xf2\xc9\x42\x7b\xa6\xe9\x98\x04\x3c\x00\x71\x4c\x6e\x9e\ +\x5e\xf9\x44\x02\x1e\x80\xe4\xd0\x42\x8f\x1a\x67\x09\x4a\x33\xa3\ +\x82\x89\xa7\xfb\x6b\xb1\x60\x65\x5e\x77\x7c\x32\x70\x7a\xe6\x34\ +\xcb\xc5\x1c\x62\x35\x5f\x3f\xd6\x03\x10\x17\x2d\x7f\xef\xd1\x16\ +\xff\x22\x7e\xa8\xcf\x60\xad\x02\xce\x2b\x82\xb3\x4a\x1c\xa8\x00\ +\xc6\x2b\x31\xb0\x6a\x8e\x3c\x96\x83\x1f\x01\x70\x02\xc0\x69\xc6\ +\xd9\x49\x2b\xf8\x29\x30\xf3\x51\x93\x6f\xf2\xde\x84\x0f\x3e\x48\ +\x71\x64\x4c\x4f\x1f\x6d\x09\x78\x00\x22\xe1\x0d\x19\x39\xe6\xb5\ +\xb2\x19\x66\xd6\xc0\xc4\x4c\xf5\x38\xd0\x80\x31\x5e\x1f\x60\x55\ +\x24\x0c\xad\x7b\x08\x02\x0f\xe3\x6c\x37\x38\x76\x59\x19\x76\x9b\ +\xd2\x4d\xbf\x25\x7c\x6e\xb9\xac\x7b\x00\x4f\x43\xa1\x04\x3c\x00\ +\x71\xe0\xc5\x18\x3e\x76\x62\x31\x93\xb7\xf7\x40\x66\x45\x5f\xce\ +\x58\x73\x06\x04\x3a\x30\x8c\xeb\xbb\x70\x5c\xe4\xe0\x5b\x99\x89\ +\xcd\xb7\x72\xd3\xc2\xd9\x71\x96\x5b\xae\x7f\x68\xde\x7a\x82\x07\ +\x20\x3a\xd7\x73\xd8\x68\x4b\xa0\xd9\xd7\x3a\x18\xc0\x40\x06\x74\ +\xd4\xd9\xcd\xbd\x9a\x71\xfe\x33\x37\xe1\xa7\xd4\x7b\x69\xf3\xe6\ +\x4d\x7f\xf7\xa6\x7b\x31\xe7\x9e\xdc\x78\x00\xa2\xb1\x2e\xa3\x9e\ +\xb3\x14\xcd\xc8\x50\x40\x31\x0c\x40\x7b\xf7\x5c\x42\xc7\xb8\xe2\ +\xe0\xcb\x01\x7c\xeb\x93\x92\xfa\xd3\x8c\x19\xef\xdd\x76\x6c\x94\ +\xbc\xdf\xcb\x03\x10\xc1\x1a\x87\x8f\x7b\xfd\x51\x6e\xb2\x3e\xc3\ +\x18\x06\x03\xcc\x37\x2f\xbf\x06\x9c\x23\x19\xe0\x73\xac\x56\xf3\ +\x67\x73\xa6\x59\x76\xe7\xe5\xb9\x3a\x32\x37\x0f\x40\xfe\x92\xda\ +\x93\x4f\xbe\x5c\x28\xad\xa0\xef\xe3\x8c\x63\x0c\x18\xab\xe5\x88\ +\x30\xd5\xfa\x14\x2f\x5a\x18\xa5\x02\x8b\xa3\x54\x60\x31\x04\x16\ +\x2f\x0a\xff\x02\x05\x50\xd0\xdf\x0f\xfe\x05\xfc\x50\xd0\x9f\xfe\ +\x5d\x40\xf9\x77\x80\x7f\x01\x65\x88\xe4\x3b\x77\x71\xe7\xee\x3d\ +\xa4\xdc\xb9\xab\xfc\x3d\xf8\xf7\x3d\xdc\xb9\x7b\x17\x57\xae\xdd\ +\xc0\x95\x6b\x49\xb8\x7c\xf5\x3a\x92\x6e\x48\xbe\x52\x70\xbe\xcd\ +\xca\xd9\x67\xb3\xa7\xc6\x7c\xe3\xe8\xfc\x0f\xad\xf9\x66\xa2\xd5\ +\x6a\x1d\x9a\x7a\xe7\x56\x88\x35\x3d\xcd\xef\xce\x8d\x4b\x3e\x34\ +\x96\x4f\xc1\xa2\x19\xbe\x05\x0a\xdf\x35\xfb\x16\xb8\xec\xe5\x53\ +\x60\xc9\xdd\x13\x3b\x5f\x6f\xf0\xc4\xc7\x37\x1c\x7d\x4e\x76\xf5\ +\xcb\xf7\x00\x09\x7b\x76\x52\x0d\x66\x35\x45\x82\xe3\x09\x30\x68\ +\xda\x24\xec\x2d\x4a\xb9\x32\xa5\x50\xa3\x4a\x45\x94\x0d\x2a\x85\ +\x92\x81\xc5\x50\x3a\xb0\x38\x82\x4a\x95\xb0\xd7\xcd\xa9\xef\x2f\ +\x5c\xbe\x8a\xcb\x57\x92\x70\xf9\xda\x75\x9c\xbb\x78\x05\x07\x8f\ +\x9e\xc4\xf9\x8b\x57\x9c\x1a\x93\x73\x7e\x1d\x8c\x4d\xe7\x30\xc5\ +\xcf\x8e\xb3\x9c\xb5\x37\xd8\xe9\x8d\xdf\x06\xa7\xa4\xa6\x7e\x7d\ +\xe3\xc2\x91\x4e\x19\xf7\x53\x4d\xf6\xda\x67\x7e\x5f\x24\xa8\xca\ +\xfe\x80\x62\xa5\x9e\x0a\x69\x3e\x70\xab\xde\x3e\xd9\xdd\x2e\xdf\ +\x02\x44\x01\x46\x86\xe9\x0d\x28\xc7\x28\xe8\x5e\xd4\xcc\x05\x62\ +\x8c\xa1\x42\xd9\xd2\xa8\x51\xa5\x12\x6a\x56\xad\x88\x9a\xd5\x42\ +\xfe\xde\x01\xb2\x7b\x11\xb3\x3e\x2f\x39\xe5\x0e\xf6\x1f\x39\xa1\ +\x80\xe5\xd0\xd1\x53\x38\x73\xfe\x92\x43\x2c\x71\x20\x8d\x71\x3e\ +\x83\xa5\x5b\x27\xcf\xfa\xfc\xcd\x73\xa2\x41\x0e\x6f\x9c\xbb\xe4\ +\xda\xa9\x3f\x7a\x64\xa4\xa5\x3a\xfc\x2e\x95\xa8\x50\x7b\x6f\xcd\ +\x0e\x8f\xb7\x64\x8c\x25\x3b\xc4\xa8\x0b\x3b\x39\x3c\x29\x17\xf2\ +\xe4\xd2\xa1\x87\x8f\x7f\xad\xa2\x99\x99\xdf\x05\xc3\x10\x47\x1e\ +\x54\xa7\x66\x55\xb4\x6d\xd9\x10\x75\x6b\x56\x85\x9f\x5f\xee\xb8\ +\x9e\xd0\x11\x6d\xcf\xbe\xc3\x58\xb3\xf9\x37\x05\x34\x8e\x10\xe7\ +\x7c\x5a\xaa\xb7\x39\x6a\xde\x14\x4b\x12\xf5\xe7\x9c\x17\xd8\xff\ +\xcb\x57\x87\xaf\x9f\x3b\x58\xce\x91\xf1\xb2\xf6\xf1\x2f\x5a\x3a\ +\xb5\x52\xdd\xf6\x4d\x8a\x57\x69\xbc\x57\xc6\x78\xb2\xc6\xc8\x37\ +\x00\x21\xcb\x76\x61\xdf\x8c\x57\x4c\x9c\xbd\x04\x06\x3f\x23\x02\ +\x2c\x5a\xb8\x10\xda\xb4\x68\x80\xf6\x2d\x1b\xa3\x44\xb1\x22\x46\ +\xba\xba\x5d\x5b\xba\xbb\xac\xde\xb8\x1d\x1b\xb7\xef\xc6\xed\xe4\ +\x3b\x46\xf9\xbb\xc1\xc1\xa3\xa2\x1f\xab\xf7\xf3\xed\x2b\xc7\xf7\ +\xdd\xbd\x79\xd9\x90\x1c\xed\x3d\xcc\xec\xe3\xcb\x83\xaa\xb7\x18\ +\x1e\xd2\xa4\xd7\x77\xf6\xda\x66\xd7\xf7\xf9\x02\x20\x23\x27\x44\ +\xf7\xe5\x56\x7c\x0e\x86\x20\x23\x82\xad\x1b\x5a\x0d\x6d\x5b\x34\ +\x44\x93\xfa\x8f\x18\xe9\x96\x6b\xda\x6e\xda\xb1\x07\xeb\xb6\xfc\ +\x6e\x68\x57\xa1\xa3\xe5\x84\xce\x41\x19\xf7\xae\x1e\x33\xbb\x62\ +\xa2\x74\x99\x0f\xa9\xd3\xf6\x91\x92\xa1\xad\x0f\xbb\x62\x7c\xa3\ +\x63\xe6\x69\x80\x90\x66\xea\x7e\x41\xbf\xa9\x00\xc2\xf5\x0a\xc6\ +\xc7\xdb\x1b\x6d\x9a\x37\x40\x8f\x8e\xad\x14\x8d\x53\x7e\x20\xba\ +\xe8\x2f\xf9\x65\x03\x36\xef\xdc\x8b\x8c\x8c\x0c\xcd\x29\x8f\xee\ +\x54\x1e\x2c\xe9\x90\x66\x1b\xb3\xb7\x1f\x0a\x16\x0f\x46\x40\x89\ +\x60\xe5\xd3\xcb\xa7\x00\x92\x93\xce\xe3\xe6\x85\x63\x48\x4d\x4e\ +\x42\x6a\x8a\xb6\xf2\xaa\x50\x60\x85\xe4\xba\xbd\x22\x4b\x30\xc6\ +\xd2\x72\x5a\xfe\x79\x16\x20\xc3\x27\x44\xb7\x37\x5b\x79\x02\x18\ +\x2b\xab\x47\xc8\x85\x02\xfc\xd1\xa9\x75\x33\x74\x6e\xd3\x14\x01\ +\x05\x9d\x52\x66\xe9\x79\x9c\x5b\xb6\xb9\x71\xeb\x36\x96\xae\xda\ +\xa8\xec\x2a\xf7\x52\x6d\xdf\xcd\x56\xb5\x82\x50\xdb\xf7\xb8\x26\ +\xef\xa5\xaa\x34\x42\xe5\x66\x7d\x61\xf6\x79\xa0\xb2\x16\xd1\xe9\ +\xdd\x2b\x71\x66\xf7\x2f\x9a\xe3\x94\x08\xa9\xb7\x3e\xb4\x5d\x78\ +\xdb\x9c\x16\x54\x9e\x03\xc8\xe0\xc1\x16\x1f\xdf\xd2\xd6\xf7\x00\ +\x3e\x81\xd1\x79\xc0\x0e\x95\x2e\x59\x1c\xdd\xdb\xb7\x44\xeb\xe6\ +\x0d\xe0\xed\xe5\x65\xaf\x79\xbe\xf8\x9e\xc0\xf1\xeb\xc6\x1d\x58\ +\xb1\x76\x0b\xae\xdf\xfc\xc7\xc8\x3e\xa1\x63\x09\xa4\x5e\x3f\x23\ +\x94\x01\xed\x1a\xd5\x5b\x0f\x41\xf1\x0a\xb5\x75\xc9\x28\x25\xe9\ +\x3c\x8e\x6c\xf8\x0e\x29\xd7\x2f\x88\xc7\xf3\xf1\x43\xa5\x47\x5a\ +\x85\x94\x69\xd0\xdd\x31\xad\x82\x2e\x2e\xec\x37\xb2\xfb\x02\xd9\ +\x1f\xc2\x7d\x5a\x0c\x8b\xb0\xd4\xf4\x42\xc6\x7c\x30\x16\x6a\x8f\ +\xab\x02\x7e\xbe\x18\xd8\xb3\xa3\xb2\x63\xe8\xc0\x91\xbd\xe1\xf2\ +\xe4\xf7\xf7\xd3\xd3\xb1\x74\xd5\x26\x2c\x5e\xb9\x1e\xad\xeb\x94\ +\x41\x35\xa6\x7e\xb4\xaa\xdf\xe7\x79\xe5\x38\x65\x84\x32\xd2\xee\ +\x62\xd7\xc2\x8f\x54\x8f\x5c\x25\xab\x34\xdc\x56\xa3\xcd\xf0\xe6\ +\x46\xc6\x94\xdd\x36\xcf\x00\x64\x44\x44\x74\xa4\x89\xf1\xf7\xf5\ +\xb8\x86\xb4\x6c\x5c\x17\xc3\x07\x74\x43\xe1\x80\x82\xb2\xe5\x99\ +\x27\xc7\xbb\x72\xed\x3a\xce\xee\x5c\x80\x3b\x17\xf6\x0b\xe7\x57\ +\xbe\x7e\x67\x54\xa8\xdf\xc5\xa1\xb9\xdf\xbc\x78\x0c\x7f\x2e\xff\ +\x5c\xd8\xd7\x37\xa0\x18\x6f\x3c\xe8\x55\x33\x63\x8c\x3b\x34\xb8\ +\x84\x4e\xb9\x1e\x20\xe4\x50\x98\x9e\x61\x4d\x64\x40\x4f\x7b\xf2\ +\x20\xab\xf6\x7f\x86\xf7\x43\xb5\xca\x15\xec\x35\xf5\x7c\x9f\x45\ +\x02\x5b\x67\x47\x21\xe3\xfe\x3d\x1b\xb9\x14\x2e\x5d\x19\x75\xba\ +\x8f\x75\x4a\x5e\x27\xb6\x2f\xc4\xf9\xfd\x1b\xc5\xe0\xab\xd7\x69\ +\x64\xc5\x86\xdd\x12\x9c\x7a\x80\x13\x9d\x73\x35\x40\xc2\x22\xa3\ +\xea\x31\x8e\xa5\x7a\x2e\xe2\x43\xfa\x76\x41\xcf\x8e\xad\x9c\x10\ +\x55\xfe\xed\x4a\xf7\x85\xdd\x8b\xa6\x08\x05\x10\xda\xe1\x71\xdd\ +\xf7\x0e\x35\x09\x92\x66\x6b\xe7\x0f\x6f\x0b\xbf\x0e\x0c\xa9\xf7\ +\x7d\xcd\x76\xe1\x0e\x19\x75\x65\xac\x58\xae\x05\xc8\x88\x88\xe8\ +\xee\x26\xe0\x07\x7b\xfe\x53\xc5\x8b\x15\xc1\x8b\xcf\x8c\x40\xf9\ +\xe0\xd2\x32\xe4\x95\x2f\xc7\xd0\x3a\x06\x39\x72\xf7\x10\x09\x51\ +\x6d\x87\x2a\x51\xa9\xee\xba\xd0\xf6\x23\xdb\xe5\x94\xe0\x73\x25\ +\x40\xc2\x23\xa3\x5f\x04\xf0\x81\x3d\xa1\xd5\x09\xad\x8a\xf1\xa3\ +\x06\x2b\x9e\xb2\x1e\x72\x5c\x02\xe7\xf7\x6f\xc0\x89\xed\x8b\x84\ +\x03\xb4\x1a\xf5\xbe\xe3\x03\x3f\xd4\x73\xef\xb2\xcf\x70\xeb\x92\ +\xad\x0a\x39\x20\xb0\xc2\xa9\xfa\xbd\x27\x54\x92\xf2\x10\x07\x06\ +\xc9\x75\x00\x09\x8b\x88\x7a\x9f\x31\xf6\x92\xd6\x5c\x49\x2b\xd5\ +\xbf\x7b\x7b\xf4\xed\xda\xc6\xa3\xa1\x72\xe0\xa5\xc8\xda\x45\xcd\ +\x6e\x21\xe3\xfe\x91\xf9\x2c\xb5\x67\x14\x2c\x16\x9c\xd4\xa0\xdf\ +\x0b\xae\x75\x89\xd6\x90\x51\xae\x02\x88\x1e\x70\x50\x6c\xc5\xb3\ +\x4f\x0f\x45\xcd\xaa\x39\xf6\xa3\x23\xe1\x95\x74\xaf\x21\xd4\x5e\ +\x5e\xb3\x8f\x1f\x9a\x0f\x8f\x95\xc2\xec\x81\xd5\x33\x91\x74\x66\ +\x9f\xcd\x58\xfe\xc5\xca\x5c\x6d\xd8\xef\xc5\x92\x52\x1e\xe2\xc0\ +\x20\xb9\x06\x20\xe1\x11\xd1\x9f\x82\x21\x52\x6b\x8e\xc1\xa5\x03\ +\xf1\xdf\x71\x23\x73\xbd\x43\xa1\x03\xeb\xe8\xd2\x2e\x5a\x77\x90\ +\xc6\x83\x5e\x81\x6f\x40\x71\xa7\x9f\xbf\x73\xde\x9b\x42\x7b\x48\ +\xc9\x2a\x8d\x76\xd4\x68\x33\xac\xa9\xd3\x0f\x70\x70\x80\x5c\x01\ +\x90\xb0\xc8\xe8\x69\x0c\xd0\xd4\x25\x56\xad\x54\x0e\x2f\x8d\x0d\ +\xcf\x55\xf7\x8d\xb4\xb4\xfb\x48\xbb\x9f\xae\xfc\xdd\x57\x3e\xef\ +\x2b\x47\x42\x3f\x5f\x1f\xf8\xfa\x7a\xc3\xcf\xc7\x07\xde\xde\x39\ +\x6f\xdd\xd7\x02\x48\xed\x6e\x63\x50\x24\xc8\xb9\x0c\x47\x64\x30\ +\xdc\x3a\x27\x5a\xf8\x0a\x97\xa8\x54\x67\x4d\x68\xfb\xc7\x3b\x38\ +\xf8\x7e\x3b\xdd\xcd\xed\x01\x12\x1e\x19\x35\x05\x60\xcf\x69\xcd\ +\xb4\x41\x9d\x1a\x88\x78\xe2\x31\xb7\x74\x15\xa1\x50\xd9\xb3\x17\ +\xae\xe0\xda\xf5\x5b\x48\xba\x79\x5b\x71\xdd\xa0\x50\xd9\x1b\xb7\ +\xf4\xe7\x79\x23\xab\xbf\x1f\x01\xc6\xd7\x07\x85\x0a\xfa\x23\xb8\ +\x74\x09\x94\x0f\x2e\x85\xb2\x41\x81\xf0\xf5\xf1\x76\xfa\x25\xd0\ +\x33\xc0\xa6\x99\xff\x15\x36\x23\xdf\xab\x6a\xad\x87\xea\x19\x42\ +\xb5\x8d\x96\x12\x20\xa4\x49\xef\x88\xb2\xb5\xdb\x92\xc3\x69\x8e\ +\x90\x5b\x03\x24\x2c\x32\xea\x55\x06\xf6\xa6\x96\x64\x3a\xb5\x6e\ +\x8a\x91\x83\xed\xda\x08\xb3\x4d\xb8\x56\xab\x15\xa7\xce\x5e\xc2\ +\xd1\x53\xe7\x71\xf4\xe4\x39\x5c\xbe\xe6\xba\xb0\x6b\x5a\xbc\xc0\ +\xe2\x45\x50\xae\x4c\x49\x94\x2f\x53\x52\xf9\x2c\x59\xc2\x35\x1e\ +\xc8\x6a\x77\x04\x12\xac\x33\xb6\x10\xb2\x81\xec\x5a\x34\x05\x19\ +\x69\xb6\x46\x48\xf2\xef\x6a\x3e\x22\xd6\x87\x31\x76\x3f\xdb\x16\ +\x30\xcb\x83\xdc\x16\x20\xe1\x91\x93\x06\x00\xa6\x1f\xb5\x04\x33\ +\xb8\x77\x27\xf4\xee\xdc\x3a\xa7\x64\xf7\xf7\x73\xe9\x78\x74\xe0\ +\xe8\x69\xec\x3f\x72\x0a\xc7\x4e\x9d\x47\xba\x1d\x97\x71\x57\x32\ +\x1c\x50\xb0\x00\x1a\xd4\xaa\x8a\xc6\x75\xaa\xa3\x70\x21\x79\xae\ +\x34\x97\x8f\xee\xc0\x91\x8d\xdf\x0b\x59\xa7\xcb\x7a\x93\x41\xaf\ +\x6a\x7a\xf0\xaa\xcd\x59\x4d\xbd\x4b\xed\x8b\x95\xad\x71\xaa\x56\ +\x97\xff\xe4\xa8\xb6\xc5\x2d\x01\x32\x7c\x42\x54\x23\x33\xc7\x26\ +\x2d\xbf\xaa\x11\x03\xba\xa3\x6b\xbb\x9c\xf3\x63\x23\x47\xbe\x43\ +\xc7\xce\x60\xdf\xe1\x53\x38\x7a\xf2\x2c\xd2\x33\xac\xae\x7c\xef\ +\x0d\x8f\x4d\x0b\x5b\xa5\x62\x30\x1a\xd5\xa9\x8e\x1a\x55\xca\x4b\ +\x51\x77\xab\x5d\xa4\x89\x39\x72\x54\xa4\x9d\x44\xef\x85\x9d\xee\ +\x1d\xc7\xb7\x2f\xc2\xe5\xa3\x3b\x55\xe7\x56\xb5\x45\xff\x7e\x41\ +\x35\x5b\x2d\x34\x3c\x79\x89\x1d\xdc\x0e\x20\x43\x23\x2c\xc1\xde\ +\x2c\x63\x37\xc0\x54\x55\x7b\x7d\xba\xb4\xc1\xa0\x5e\x39\x93\xdc\ +\x30\x39\xe5\x2e\xb6\xfc\xbe\x1f\x3b\xff\x38\xa4\x5c\xae\x73\x03\ +\x05\xf8\xfb\xa1\x41\xad\x6a\x68\x5c\xd7\xb9\x5d\x45\x6b\x17\x21\ +\x39\xd0\x4e\x42\x4e\x8b\xc1\x8f\x68\xef\xea\x74\xe9\x3f\xb2\x71\ +\x2e\x52\x93\xaf\xab\x8a\xaf\x58\x70\xf5\x93\xb5\xba\x8e\x0e\xc9\ +\x69\xf9\xba\x1b\x40\x58\x58\x44\xd4\x06\xc6\x98\xaa\xd3\xd4\xa3\ +\x4d\xeb\x63\x74\x58\xff\x6c\x97\xdb\xf5\x9b\xc9\xd8\xb8\x63\x2f\ +\xf6\xec\x3f\x86\x0c\xab\x7b\xed\x16\x7a\x85\x41\x8b\xdd\xb0\x4e\ +\x35\x74\x68\xd9\x10\xfe\x05\x1c\x4b\x38\xa1\x75\x24\xca\xe4\x83\ +\xb4\x5a\xf4\x47\xbb\x4a\xc1\xe2\x65\x94\x88\xc2\x94\xa4\x0b\x20\ +\x60\xdc\x4b\x4e\xd2\xdc\x35\x68\x0c\x1f\xff\x22\x19\x15\x42\x5b\ +\x54\x0f\xaa\xdb\x49\x3b\x3a\x4b\xef\xc4\x9d\x68\xe7\x56\x00\x19\ +\x11\x19\x15\x6b\x02\x9b\xa4\x36\x9f\xc6\xf5\x42\x15\x6d\x95\xc9\ +\x64\x38\x4b\x8f\xc3\x22\xba\x7b\x2f\x15\xbf\x6e\xde\x85\x9d\x7f\ +\x38\x1f\x22\x5d\xaa\x44\x51\xe5\x12\x4d\x9f\xa5\x02\x8b\x2a\x69\ +\x82\x7c\xbc\xbd\xe0\xe3\xe3\xad\x68\xa3\x48\x5b\x45\x44\xc9\x14\ +\xe8\xb9\x77\xef\xa5\xfd\xf5\xf9\xe0\xdf\xb7\x92\x53\x70\xf6\xc2\ +\x55\x9c\xbb\x74\xd5\xe1\xf9\x50\x47\x7a\x56\xbb\xe6\xf5\xd0\xbc\ +\xa1\xf1\x58\x7b\x3a\x1a\x11\x48\xd4\x02\x9d\x9c\x62\x8c\x76\x21\ +\x6f\x3f\x04\x55\x6f\x36\x34\xa4\x69\xef\xb9\xce\x8e\x25\xa3\xbf\ +\xdb\x00\x64\xc4\xf8\xe8\x8e\x26\x13\x56\xa9\x4d\xea\x91\x6a\x21\ +\x98\x18\x39\x4a\xc6\x9c\x75\x8f\x41\xc7\xa8\xd5\x9b\x76\x09\xc3\ +\x4f\xed\x0d\x42\x2f\x3e\xdd\x01\x42\xab\x56\x00\x19\x30\x4b\x14\ +\x2b\x6c\xaf\x8b\xa1\xef\xcf\x5f\xba\x8a\xf3\x97\xae\xe1\xdc\xc5\ +\xab\x38\x71\xe6\x22\x6e\xde\xd6\xaf\x36\xce\x7c\x50\x89\xa2\x85\ +\xd1\xa3\x43\x33\x54\xae\x50\xc6\xd0\xb3\xc9\xbb\x97\x40\x22\x72\ +\x7f\x37\x34\x90\xa0\xf1\x39\xaf\x1a\xc9\x4b\xb7\x1e\xaf\x34\x6b\ +\xea\xdb\xd7\x9c\x1d\x4b\x46\x7f\xb7\x00\x88\xbd\x7b\x47\x70\x50\ +\x49\xbc\xf1\xd2\x68\xf8\xfa\x28\x59\x2c\x5d\x4e\x27\xcf\x5e\xc4\ +\x92\xd5\x5b\x15\xdb\x85\x11\x2a\x5e\xb4\x10\xaa\x87\x94\x43\xf5\ +\xca\xe5\x51\xb1\x6c\x69\x98\x4c\xd9\x27\x5e\xb2\xb5\xfc\x79\xe8\ +\x04\xf6\x1d\x39\x05\xba\x27\x19\x21\xe2\xb9\x5b\xbb\xa6\x28\x56\ +\x24\x40\x77\x37\x52\xcf\x92\xea\x57\xd6\x4e\x42\x3b\xc7\xef\xc9\ +\x15\xb0\x75\xdf\x59\x70\x8e\x5f\x12\xe3\x63\x1c\x8b\xc0\xd2\x3d\ +\x03\x7d\x0d\xb3\x6f\x05\xd5\xf9\x61\xe1\x11\x51\x9b\xc0\x58\x0b\ +\x51\x13\xca\x32\xf2\xe6\xc4\xb1\x28\x5d\x32\x7b\xfc\xd5\x96\xfe\ +\xba\xd5\xf0\x71\x8a\x76\x89\x16\x0d\x1f\x51\x8c\x77\xee\x40\xb4\ +\xa3\xec\x3d\x78\x5c\x01\xcc\xfd\x74\xed\x2c\x25\x0f\xf3\xdb\xa1\ +\x65\x03\xb4\x6e\x5a\x47\xf7\x14\xe8\xb8\x75\x78\xc3\x5c\xa1\x0f\ +\x95\xee\x41\x00\xf8\x15\x2e\x8d\x9f\x8f\x7a\xe1\xc8\xd9\x7f\x2e\ +\xed\x1c\xfc\xb5\xc4\xb8\xd8\xb7\x8c\x8c\xe3\x8a\xb6\x39\x0e\x10\ +\x7b\xf7\x8e\xb1\x23\x07\xa2\x45\xe3\xba\xae\x98\xfb\xbf\xc6\xbc\ +\x9a\x74\x13\xdf\x2f\x59\x8b\x2b\x49\xfa\xca\x66\xd0\x25\x97\x54\ +\xa8\x4d\xeb\xd5\x04\xd9\x1e\xdc\x91\x28\xf9\xc2\xd6\xdf\xf7\x63\ +\xdb\xee\x03\xb8\x97\xaa\xcf\xd6\x56\xb5\x62\x30\x06\xf6\x68\xa3\ +\x58\xed\xf5\x12\x5d\xbe\x4f\xef\x5a\x29\x74\x57\xd7\x1a\xc3\xb7\ +\x60\x51\x5c\xf3\xae\x88\x1f\x37\x9d\xc6\xbd\xd4\x54\x9b\xa6\xcc\ +\xca\x5b\xce\x9a\x1a\xbb\x45\x2f\x1f\xae\x68\x97\xa3\x00\xa1\x88\ +\x40\x70\xfc\xc6\x18\x13\x26\x21\xa3\xfc\x54\x4f\x0f\xef\xe7\x8a\ +\x79\xff\x6b\xcc\xdf\xf6\x1e\xc6\xf2\xb5\x3b\x74\x19\xf8\x28\xf3\ +\x49\xab\xc6\xb5\xd0\xaa\x71\x6d\x78\x79\xb9\x24\x77\x9a\xf4\xf9\ +\x92\xcf\xd7\xf6\x3d\x87\xb0\xe5\xf7\x7d\xb8\x73\xd7\xf6\x45\xcc\ +\xfa\x40\x32\x30\x0e\xef\xdb\x01\xa5\x03\x8b\x19\xe2\x85\xee\x26\ +\xd7\x4e\xff\x89\xa4\x53\x7f\xaa\x1e\xbd\x08\x14\x25\x2a\xd6\x56\ +\xb4\x5c\x45\xca\x86\x22\x66\xca\xff\xe1\xc4\xe9\xf3\xc2\xe7\x50\ +\x59\x39\xff\xd4\x4b\xb5\xa6\x4f\x9f\xae\x0f\xdd\x86\xb8\xd5\xd7\ +\x38\xc7\x00\x32\x78\xf0\x60\xb3\x6f\x50\xe8\x1f\x0c\x10\xaa\x52\ +\xca\x94\x0e\xc4\xe4\xff\x8d\x35\xec\x5f\x75\x2e\x39\x1d\xab\xcf\ +\xdc\xc1\xd9\x94\x74\x1c\x4c\x7a\x90\xdb\xa9\x90\x8f\x09\xa1\xc5\ +\x7d\x10\x5a\xcc\x07\x1d\xcb\xff\x93\xf3\x8a\x73\x8e\x45\xbf\x6c\ +\xc6\xee\xfd\xc7\xec\x4a\x8b\x04\x55\xbf\x56\x55\x74\x7a\x94\x54\ +\xa4\xb9\x33\x00\x8b\x80\xb2\x7a\xf3\x2e\xec\xd8\x7d\x10\xf6\xb2\ +\x20\x78\x99\x4d\xe8\xd9\xa1\xb9\x32\x67\x47\x89\x8e\x60\x94\x30\ +\x8e\xc8\x2f\xa0\x98\xd0\x88\x48\x7e\x69\xaf\xbe\x3d\x55\x29\xf1\ +\xa0\x82\x92\xb7\x13\xe2\x63\x5e\x75\x94\x07\x67\xfb\xe5\x18\x40\ +\xc2\x23\xa2\x5f\x03\xc3\x64\xd1\x04\xe8\xde\x31\x79\xe2\x58\x04\ +\x19\xb8\x77\xac\x3a\x73\x07\x6f\xef\x48\xc2\xb9\x14\xfb\xc6\xbb\ +\xfe\x55\x02\xf0\xdf\xfa\x45\xb0\x6c\xc5\x3a\xc5\x67\xca\x1e\xd1\ +\x85\xbb\x67\xc7\x66\x28\x99\x47\x32\x2d\x92\x06\x6c\xe1\xca\xcd\ +\xba\xfc\xc4\x6a\xd7\x08\x41\xdf\xce\x2d\x5d\xba\x5b\xee\xfa\xf3\ +\x10\xa6\x4c\x9f\xa3\xba\x0c\x19\x19\xa6\x06\x39\x55\xdc\x27\x47\ +\x00\x12\xf6\xdc\xab\x65\x58\x86\xf9\x84\x9a\x2b\x49\xd8\xc0\xee\ +\xe8\xd2\x56\x9f\x1b\xc9\xad\x34\x2b\x22\xd6\x5e\xc6\xf6\x4b\x2a\ +\xbf\x40\x2a\x62\x2f\xe4\x6d\x42\xcf\x42\x37\xc0\x8e\xa8\x17\x55\ +\xa2\x22\x37\xbd\x3a\x34\x47\xcd\xaa\x79\x33\x0b\xca\xe6\xdf\xf6\ +\x61\xed\x96\xdd\x76\x2f\xf2\xf4\x03\x11\x36\xa0\x13\xbc\xcc\xae\ +\x3b\x52\x7e\x39\xfb\x27\x6c\xd8\x26\x5e\x0b\x0e\x6c\x4e\x8c\x8b\ +\xc9\x91\x8c\x1b\x39\x02\x90\xf0\xc8\xe8\x59\x6a\xf9\x72\xa9\x08\ +\x0d\x1d\xad\xf4\x18\x03\x0f\x5c\x4f\xc3\xc8\x15\x17\x71\xfb\xbe\ +\xe3\x96\xed\x96\x45\xee\xa3\xe2\x71\xdb\x7b\x60\x48\xf9\x20\x0c\ +\xea\xd1\xd6\x61\x8b\xb3\xbd\x5d\xc9\x5d\xbe\x27\xfb\xc9\xe2\x55\ +\x5b\x14\x27\x4b\x2d\x22\x79\x0c\xef\xd7\xd1\x65\x20\xb9\x9d\x9c\ +\x82\x17\xdf\xf8\x58\xd5\xe6\xc4\xb9\xb5\x7f\x62\xfc\xe4\x05\xd9\ +\x2d\xb7\x6c\x07\xc8\xf0\x71\x96\xfa\x66\xb3\x75\x97\xda\x44\xc9\ +\xde\x11\x52\xc1\x7e\x3a\x5d\x19\xe0\xc8\xe4\xa1\x79\xa1\x34\x84\ +\x9c\xfc\xa7\xc8\x51\xfb\x16\xf5\xd1\xa6\x99\xeb\x35\x67\xd9\xbd\ +\xd8\x5a\xcf\x5b\xb3\x65\x37\xd6\x6f\xfb\x43\x93\x25\x32\x28\x86\ +\x0f\xe8\xec\x32\xb6\x7f\x59\xbf\x0d\x09\x3f\xfc\xac\x76\x17\x39\ +\x5c\x25\xd0\x14\x6a\xb1\x58\x1c\xff\x35\x74\x80\xf3\x6c\x07\x48\ +\x58\x44\xd4\x1a\xc6\x98\x30\x8d\x4b\xeb\x66\x0d\xf0\x9f\x11\xf6\ +\xb5\x56\x74\xac\x1a\xb9\xf2\x22\x0e\x5e\x97\x97\xfc\xbb\xa7\xcf\ +\x45\x04\xdd\x38\x85\xc1\x3d\xdb\xa2\x52\x39\x43\x55\x12\x1c\x10\ +\xbb\x7b\x76\xd9\x77\xf8\x24\x7e\x5a\xb1\x11\x19\x1a\x9e\xc9\x55\ +\x2b\x95\xc5\xd0\xde\xed\x60\x76\xd1\x71\x6b\xd2\xbb\x9f\xe1\xf4\ +\xb9\x8b\x2a\xf7\x75\x8c\x4b\x8c\x8b\xf9\x2c\x3b\xa5\x97\xad\x00\ +\x09\x8f\x98\xd4\x01\xcc\xb4\x5a\x34\x41\xd2\xbb\x7f\xf8\xfa\x73\ +\x28\xa4\x23\x1d\x68\xdc\x9e\x1b\x98\xfa\x87\x76\x20\x52\x8d\x62\ +\x0f\xb4\x56\x65\x03\xbc\x94\xfb\xc9\x81\xa4\x54\x24\xdf\x57\xd7\ +\xdd\xd0\x9d\x64\x7e\xa7\xa2\x28\x1f\x28\xd7\x25\x44\x6b\x31\x29\ +\x6e\x24\x25\xe5\x2e\x52\xfe\x2a\xd2\x49\xd1\x87\x44\x74\xf7\x79\ +\xf0\x57\x40\xf1\xd7\x32\x9b\xb3\xcf\xf7\xec\xc2\xe5\x24\x24\xfe\ +\xb4\x4a\x5d\xab\x04\x80\x40\x32\xac\x4f\x7b\x5d\xc7\x60\xa3\x2f\ +\xf3\xf1\x53\xe7\x60\xf9\x70\xba\x0a\x40\xf8\x05\xff\xd4\x4b\x15\ +\xb3\x53\xed\x9b\xbd\x00\x89\x8c\xde\x06\x40\x18\x80\x3f\x72\x50\ +\x4f\x74\x6a\x63\x3f\x36\x9f\xd4\xb8\x1d\x7f\x52\xaf\x2b\x49\xc0\ +\x78\xa7\x55\xa0\x02\x8e\xac\x64\x0f\x58\xfd\x2a\x07\x28\x7d\x5d\ +\x41\xb7\x53\xee\xe0\xe4\x99\x8b\x38\x73\xfe\x32\x6e\xde\x4e\x56\ +\xaa\xd6\xea\x75\x97\x27\xbf\x2e\x02\x0c\x55\xba\xa2\xa8\xc1\x4a\ +\xe5\x83\x94\xd0\x5b\x57\x11\x39\x4b\xce\x59\xb8\x1a\x17\xaf\xa8\ +\xbb\xa3\x53\x8c\xc9\x63\x3d\xdb\xba\x04\x24\x9a\x17\x76\x8e\xe7\ +\x12\xe3\x63\x3e\x71\xd5\xdc\xb3\x8e\x9b\x6d\x00\x09\x9b\x30\xa9\ +\x1b\xe3\xa6\x65\xa2\x89\x91\x33\xdf\x3b\xaf\x69\x26\x2c\xf9\xbb\ +\x9b\xd6\x4b\xde\xa1\xbc\x3f\xa6\xb5\xd3\x76\xf7\x20\x75\x30\x69\ +\xbd\xd4\xe8\x60\xb8\x9c\x00\x36\x72\x89\x27\x47\xc2\xd3\xe7\x2e\ +\xe1\xd4\xb9\x4b\xb8\x79\x4b\x6e\x7d\xca\xa2\x85\x03\x94\x22\xa2\ +\xa4\x61\xa2\xd8\x74\x3d\x4a\x0d\x23\x2f\x15\x45\x49\xce\xfc\x61\ +\x85\xe2\x10\xa9\x46\xe4\x5e\xd3\xa5\x4d\x63\x23\xc3\xea\x6a\x4b\ +\x5e\xcb\xcf\xbf\xfe\x91\x92\xc8\xc2\x96\xf8\x95\x7b\x5e\xc9\x15\ +\xe7\x4d\x99\x62\xcc\xe1\x4c\xd7\x93\x6d\x1b\x65\x1b\x40\xc2\x23\ +\xa2\x77\x80\x41\x28\xcd\x31\x23\x07\x82\x32\xae\xeb\xa1\xbe\x4b\ +\xce\xe3\x90\xe0\xee\x11\xe0\xcd\xf0\xeb\x80\xf2\x28\xec\x63\xff\ +\x38\xa2\x05\xb2\xf8\x76\xa5\xd0\xe9\x21\x63\xa2\x1e\x9e\x1e\x6e\ +\x43\x5a\xa1\x6d\xbb\xf6\xe3\xc4\xe9\x0b\xd9\x16\x37\x42\x47\xb0\ +\x90\xf2\x65\xd0\xb4\x7e\x28\x08\x38\xb2\x88\x5c\x55\x66\xcc\x5d\ +\xa6\xe9\x7e\xf3\xf8\xa0\x2e\x2e\xb9\xb3\x25\xfe\xb8\x0c\x2b\xd7\ +\xa9\x54\x87\xb6\x22\x22\x61\x6a\x4c\xb6\x24\x72\xc8\x16\x80\x84\ +\x8f\x7b\xfd\x51\x98\xf9\x06\xd1\xc2\x51\xee\xdc\x8f\x5e\x7f\x4e\ +\xf7\x2f\x60\xcd\x04\x71\x3d\x95\x57\x1a\x17\xc7\xe3\xa1\xfa\xef\ +\x0f\x8d\xbf\x3b\x25\xbc\x93\x8c\xaf\x5b\x14\x91\xf5\x8c\x27\x3e\ +\x20\x4b\xf0\xb6\x5d\x07\x70\xf0\xd8\x29\xf2\x46\xcd\x11\xa2\x94\ +\x41\xe4\x38\xd9\xa4\x5e\xa8\x72\x24\x93\x41\x74\x14\x24\x90\x50\ +\x46\x16\x11\x91\x1f\xda\xf8\x91\x7d\x0d\xf9\x6e\xe9\xe1\xeb\xc6\ +\xcd\xdb\x78\xde\x32\x45\x5c\x12\x8e\xf3\x13\x09\xf1\xb1\x94\x6b\ +\xc8\xe5\x92\xce\x16\x80\x84\x45\x46\x2f\x51\x2b\x4f\xf0\xd4\xf0\ +\xbe\x68\xdb\xbc\xa1\x1e\x99\x81\x54\xbb\xfd\x97\x88\xf5\xf5\xdf\ +\x74\x09\x42\xb3\xd2\xfa\x5f\x8a\xf0\x95\x17\xb1\x43\x60\x5c\x34\ +\x7a\x0f\x49\x4d\xbb\x8f\xdf\xfe\x38\xa4\x78\xcf\xba\x4b\xa4\x21\ +\xed\x28\x75\x6b\x56\x41\xc3\x3a\xd5\xa5\xa4\x05\xa2\x5d\xf1\xff\ +\xbe\xfb\x59\xd5\x8d\x9e\xdc\xe5\x87\xf5\x95\x9f\xba\xea\xeb\xb9\ +\x8b\xb1\x66\x93\x38\x66\x9d\x03\xc3\x13\xe3\x62\xbe\xd5\xf5\xe2\ +\x38\xd1\xc8\xe5\x00\x19\x39\xde\x52\x9d\x9b\xac\xc2\xd2\x44\x54\ +\x52\x79\xca\x1b\x2f\xe8\x66\x7f\xdb\xa5\x7b\x78\x7c\xa5\x58\x05\ +\x68\xf4\xee\xa0\x76\xcc\x6a\x52\xda\x0f\x09\x5d\xec\xab\x79\xd3\ +\xd3\x33\xf0\xc7\xc1\x63\xf8\x7d\xef\x61\xdd\x97\x6d\xb5\x89\x92\ +\x85\xda\xcf\xcf\xe7\x6f\x1f\x2f\xda\x8d\xee\xdd\x4b\xd3\xe5\x3c\ +\xa9\x25\x3c\x72\xd9\x21\x90\xd4\x0d\xad\xec\xb4\x81\x8f\xca\x47\ +\x7f\x31\x67\x29\x28\xad\x91\x88\x7a\x75\x6c\xae\x78\x37\xcb\xa4\ +\x6b\xd7\x6f\x2a\x77\x11\x21\x71\xbe\x2d\x21\x3e\x56\x9f\xbb\x85\ +\x13\x4c\xb9\x1c\x20\x5a\xf9\x74\x47\x3d\xd6\x0b\x1d\x1e\x6d\xa2\ +\x9b\x7d\x2d\x80\xac\xee\x5f\x4e\x51\xe9\xea\xa5\x89\x9b\xae\x62\ +\xc1\x71\xdb\x8b\xb3\x1e\x80\x90\x46\x6a\xf1\x2f\x9b\x71\xc3\x81\ +\x8b\x37\x69\xa1\xe8\x17\x97\x8e\x96\x05\xfc\x1e\x24\x82\xd3\x22\ +\x7a\x16\x85\xdb\xd2\xcb\x72\xe4\xc4\x59\x25\x09\x9d\x51\xa2\x40\ +\xa8\xde\x9d\x5b\x29\x2a\x63\x67\x88\xdc\xe6\xc9\xeb\x59\x44\xb4\ +\x6b\x8d\x19\xd1\x5b\xc9\xd3\x25\x93\x34\x35\x5a\x26\x6b\xcd\xc4\ +\x4f\x26\x6b\x97\xdc\x75\x92\x19\xd7\x03\x24\x32\xfa\x0a\x03\x6c\ +\x74\xa7\x45\x0a\x05\x20\xee\x4d\x71\xb6\x3e\xb5\x39\x91\x81\xb0\ +\xe9\xdc\xd3\xc2\xaf\x8d\x5e\xae\xd5\x2e\xfb\xf6\xee\x20\x14\x37\ +\xb2\xe8\x97\x4d\x86\xc2\x70\x49\x4b\x57\x2d\xa4\x2c\xaa\x56\x2c\ +\x0b\x5f\x03\x71\x16\xa2\x89\xa6\xa6\xa6\xe1\xc8\xc9\x73\x4a\xaa\ +\x21\x2d\x0d\x53\xd6\xbe\x14\xef\xde\xbb\x53\x4b\xa7\x5f\xe0\x39\ +\x0b\x56\x2b\xcf\x17\x11\xc5\xda\x8f\x1e\xde\x53\xaa\x11\xf1\xe2\ +\x95\x6b\x78\x39\xf6\x53\x95\x4d\x04\x9f\x24\xc6\xc7\x68\x66\xdd\ +\x74\x12\x1f\x70\x29\x40\x46\x44\x4e\x1a\x64\x82\x69\x9e\x88\x49\ +\x4a\xf8\x46\x89\xdf\x8c\x92\xda\xe5\x9a\xdc\xd8\xa7\xda\x51\xf1\ +\x66\x3e\x4b\xeb\x2e\xa3\x75\xd9\x27\x95\xed\xf2\x75\xdb\x41\xc7\ +\x2b\x3d\x54\xbf\x56\x35\xd4\x7f\xa4\x8a\xcb\xdc\xe3\xe9\x02\xbd\ +\xe7\xc0\x31\xec\xde\x77\x44\x0f\x3b\xf0\xf6\x32\xa3\x6b\xbb\x66\ +\xa8\xe0\x44\xe4\x23\x25\x93\x98\x3a\x6b\xa1\x62\xc7\x11\x51\xd7\ +\x36\x8d\x1d\x4a\x06\xa1\x35\x81\xb7\x3e\xfd\x1a\x07\x8f\x0a\x95\ +\x33\x37\xce\x94\x30\x95\x5c\x6b\xb1\xd8\x77\xe1\xd6\x25\x21\xdb\ +\x46\x2e\x05\x48\x78\x64\x34\x55\x5d\xe9\x2d\xe2\xed\x9d\xd7\x22\ +\x10\x5c\xda\x78\x56\x7b\xb5\xa3\x11\x3d\xe3\xad\x96\x81\x18\x50\ +\x45\x5b\xcd\x49\xbb\x10\x5d\xf4\xd5\xdc\xe2\xd5\x8e\x6a\x07\x8e\ +\x9e\xc2\x9a\xcd\xaa\x2e\x64\x7f\x4f\x31\x53\x93\x44\x2a\xd7\xec\ +\x8a\x1b\xa1\x97\x75\xc7\x9e\x03\x20\x1e\xed\x69\xd0\xa8\x30\x76\ +\xbb\x16\x0d\x10\x5a\xb5\xa2\x83\xaf\x0c\x94\xd4\xaa\x64\x23\x11\ +\x11\xed\x54\xcf\x3f\x3d\xd0\x70\x1c\x8f\x16\x33\x54\xb7\xfd\xab\ +\x6f\xc5\xf9\xe3\xac\x56\x0c\x98\x3d\x35\xe6\x27\x87\x27\x63\xa7\ +\xa3\xcb\x00\x32\x78\x9c\x25\xc0\xcf\x94\x91\x04\xc6\x6c\xb2\x2b\ +\x57\x2c\x57\x06\xb1\x2f\x8f\x71\x68\x4e\xf3\x8f\x25\xe3\xd5\xcd\ +\xe2\xb4\x37\xe4\x2e\xf2\x4a\x93\xe2\xaa\x20\x21\x2b\xfc\x2b\x9b\ +\xaf\xaa\xba\xc6\x07\x17\x34\x2b\xb6\x94\xac\xf4\xfb\x9f\x87\x95\ +\xd0\x55\x7b\x54\x2d\xa4\x1c\x9a\x35\x78\x04\x85\x03\x5c\x67\xe5\ +\xd6\xe2\x81\xee\x44\x64\x83\xb1\xe7\x99\x4b\x63\x50\xca\x9f\x86\ +\xb5\x1d\xbf\x54\x2f\x5d\xbd\x15\x3b\xf7\x8a\x53\x21\x75\x6e\xdd\ +\x08\x2d\x1b\xd5\xb2\x27\x2e\xdd\xdf\x53\x38\xee\xd8\xff\xbd\x23\ +\xd6\x12\x72\xfe\x5d\x42\x7c\xec\x30\xdd\x83\x19\x6c\xe8\x32\x80\ +\x84\x45\x44\x3f\xc1\x18\x66\x88\xf8\x19\x31\xa0\x1b\xba\xb6\x13\ +\xe6\x68\xd0\xc5\xbe\xda\xfd\x21\xb3\x33\x1d\xb7\x68\x27\xa9\xf9\ +\x97\x2f\x16\x5d\xee\x0f\x25\xa5\x81\x34\x57\x5a\xae\xf1\xa2\x7b\ +\x0c\x25\xa0\x5e\xb9\x5e\x7c\x31\xcd\x7c\x1e\x85\xde\x76\x6b\xdb\ +\x54\xb1\x6c\xbb\x03\x51\x56\x16\xe2\xd9\xde\x51\xb0\x5b\x3b\xe3\ +\x29\x7f\x32\xe7\x97\x72\xe7\x2e\x3e\x99\xf1\x13\x28\x05\x6b\x56\ +\x72\xc5\x2e\x12\x37\x63\x2e\x76\xec\xb6\xfd\x91\xe2\xe0\x77\xbd\ +\x6e\x9b\x8b\xcf\x9c\x69\x31\x16\x10\xa4\x73\xa1\x5c\x09\x90\x9f\ +\x19\x43\x77\x11\x1f\xf1\x6f\xbd\xec\x54\x8d\x72\x2d\x6d\x96\xce\ +\x79\xdb\x34\x13\x69\xaf\xe8\x42\xfe\xc3\xcf\xeb\x54\x55\x9b\x34\ +\x08\xed\x16\x3d\x3b\xb6\x40\xb1\x22\x85\x1c\x7d\xb4\x4b\xfa\x51\ +\x99\x85\xa5\xab\xb7\xe0\x56\xf2\x1d\xd5\xf1\x49\xf3\x34\xa0\x7b\ +\x1b\x87\x23\x25\x29\xd3\x24\xe5\x0d\x13\x51\xc7\x56\x0d\xf1\x68\ +\x93\xda\xd2\xe6\xf6\xfb\xde\x83\xf8\xf8\x4b\xb1\xd9\x83\x73\x0c\ +\x4a\x8c\x8f\xd1\x4c\x74\xee\x28\x23\x2e\x01\xc8\xe0\xc1\x16\x1f\ +\xdf\xd2\x19\x77\x44\xc9\x18\xa8\xb0\xe6\x7f\xc7\x86\x3b\xca\xef\ +\xdf\xfd\xec\x39\x1e\x1a\x79\x80\xc8\x4d\x85\x2e\xa3\x73\x17\xff\ +\xaa\x99\xe4\x80\xd2\xfc\x74\x6d\xd3\x44\xc9\x8c\xe8\x8e\x44\x31\ +\xe8\xcb\xd6\x6e\x53\x7c\xc2\xd4\x88\xb2\xb3\x0c\xe9\xdd\xe1\xef\ +\xac\x8e\x46\xe6\x41\xde\xc8\x71\x5f\xff\x24\x04\x21\xed\x22\xcf\ +\x3d\x35\x50\xc9\x1c\x29\x83\xe8\x59\x11\xaf\xbe\x27\xf4\x32\xe6\ +\x1c\x5f\x27\xc6\xc7\x3c\x29\xe3\x39\x59\xc7\x70\x09\x40\xc2\xc7\ +\x4f\xea\x01\x93\x69\xa9\x88\x61\x99\x69\x7c\xb4\x2e\xec\x7a\x85\ +\x45\xe0\x48\xe8\x5a\xe6\x5f\xde\xbf\x19\x19\x19\x98\xbf\x7c\x03\ +\xae\x68\xd4\xf6\x20\xa3\x18\xdd\x37\xdc\x9d\xe8\xd2\xbe\x6d\xd7\ +\x3e\xfc\xfe\xa7\xba\xa6\x8b\xd4\xb3\xfd\xbb\xb7\x81\xd9\x81\x94\ +\xae\x7b\x0f\x9e\x50\x64\x25\xa2\x0e\x2d\xeb\xa3\x75\x53\x7d\x3e\ +\x76\x7a\xe4\x38\xf3\xfb\x25\xf8\x75\xa3\xe0\xb8\xcb\xf9\xb9\x84\ +\xf8\xd8\x72\x7a\xc6\x30\xda\xc6\x35\x00\x89\x8c\xfa\x04\x60\x13\ +\x44\xcc\x7c\xf6\xce\x44\x25\xce\x41\x16\x45\xfc\xb4\x17\xab\x92\ +\x1d\x3b\xde\xa8\xb9\xc6\xaf\x58\xb7\x5d\xf3\xa2\x4b\x1a\xaa\xc6\ +\x75\x6b\xc8\x9a\x42\xb6\x8c\xb3\x63\xcf\x41\xd0\x9f\x1a\xd5\xa8\ +\x5c\x1e\x1d\x1f\x6d\xe4\x10\x2f\xd3\x66\x2d\x14\x3a\x34\x16\xf0\ +\xf5\xc1\xcb\x63\x9d\xab\x3e\xf5\x30\x43\x5a\xc7\x2c\x2b\x4c\xb5\ +\x66\xc7\x59\xec\x6b\x52\x0c\xce\xd0\x35\x00\x89\x88\x3e\x00\x86\ +\x9a\x59\x79\x29\x1f\x5c\x1a\x6f\x4e\x1c\x67\x90\x45\xf5\xe6\x07\ +\x8e\x9c\xc2\xf7\x4b\xd7\x21\xa5\x48\x10\xfe\x28\x52\x03\x27\x53\ +\xf4\xfb\xae\x91\x41\x90\x9c\x1b\xb3\x7a\xff\x1e\x3f\x7d\x01\xcb\ +\xd7\x52\xd8\x8a\x98\x28\xdf\x6e\xd7\xb6\xf6\xe3\x56\xa4\x4d\x52\ +\xe2\x40\xcb\xd6\x6c\xc3\x89\x33\x17\x54\x47\xec\xd1\xa1\xb9\x43\ +\x9e\xb9\xdb\x77\x1f\xc4\xb2\xb5\xdb\x85\xe3\x92\x8f\x16\x79\x0e\ +\xc8\xa0\x7b\xf7\x52\x31\xfa\x65\x71\xb2\x45\xee\xa2\x38\x11\xe9\ +\x00\x19\xf6\xec\xab\xa5\xbd\xac\x5e\x42\x87\x29\x2a\x78\x43\x85\ +\x6f\x64\xd1\xdc\xc5\x6b\x70\xf0\xd8\x99\xbf\x87\xbb\x51\xba\x1a\ +\x92\x0b\x95\xc6\xae\x64\xb3\xd0\x53\x97\x76\x0c\x72\x65\x27\x0d\ +\x97\xc8\x2d\x85\xf2\x64\xcd\x59\xb0\x4a\x35\x11\x34\xf9\x8e\x0d\ +\xea\xd1\x46\xaa\xa5\x58\x96\x2c\xf4\x8c\x43\x5a\xad\xf9\xcb\xd6\ +\xe3\xea\x75\x71\xf6\x48\x72\x95\x1f\xd6\xb7\xa3\xe1\x62\x3b\xe4\ +\x16\xff\xc1\xf4\xef\x85\xa1\xba\x75\x6b\x56\x46\xff\x6e\x8f\xea\ +\x61\x4f\x57\x9b\xa8\xf7\x3e\xc7\xa9\xb3\x42\x90\x2f\x4c\x88\x8b\ +\xb1\x1f\xaf\xad\xeb\x29\xff\x34\x92\x0e\x90\xf0\xf1\x51\x43\x61\ +\x62\x42\x75\xc3\xf3\xa3\x87\xa3\x41\x6d\x39\x47\x13\xba\x44\xd3\ +\xa2\x58\xad\xb6\xbb\x46\x93\xba\x35\x94\xac\xe5\xa4\xed\x22\x2a\ +\x57\xd0\x4b\x97\x9f\x96\x96\x31\x90\x2e\xb3\x83\x7b\xb6\x97\xe6\ +\x46\x6e\x70\x9d\xa4\x35\x27\xa3\x22\x29\x1f\xe8\xa5\x16\x11\x69\ +\x9f\x6a\x54\x31\x9e\xe6\x88\x12\xf0\xed\xda\x77\xd4\x66\x48\xba\ +\xa4\xbf\x3c\x66\x88\xb4\x1f\x95\x6f\x17\xac\xc0\xb2\x5f\x37\xdb\ +\xb2\xce\xf9\xb5\x84\xf8\x58\xe9\xe1\xa0\xf2\x01\x12\x11\xf5\x19\ +\x18\x13\x5a\x01\xbf\x7c\xff\x35\xa7\x7d\x91\x32\x25\x43\xe9\x42\ +\x29\x03\xbb\x88\xc8\x1f\xa8\x4c\x29\x63\xc9\xae\x49\x4b\x32\x7b\ +\xfe\x2f\x4a\x7c\x78\x56\xa2\x68\x3d\x4a\x01\x24\xdb\x11\x4f\xda\ +\x5b\x6f\x70\xa0\x4b\x57\xaf\xe3\xa7\x65\xeb\x61\x15\x98\xdd\x29\ +\x8e\x24\x6c\x40\x17\xc3\x17\x76\x4a\x46\xf7\xe5\xb7\xe2\x8c\x24\ +\x43\x7a\xb7\x43\x4d\x07\x40\x27\x9a\xd6\x9e\x7d\x87\xf1\xe1\x17\ +\xb3\xc5\x33\x66\xa6\x3a\x09\x9f\x5a\xfe\x34\x28\x0e\xcd\xe6\xf2\ +\x01\x12\x19\xbd\x17\x80\x8d\x02\x3c\xa4\x42\x30\xde\x78\xe9\x19\ +\x69\xbc\x7f\xfd\xfd\x72\x9c\x3e\x6f\x1b\x3a\x4b\x1e\xab\x2f\x8e\ +\x1e\x6c\xf8\x39\xe4\xcf\x44\x89\xd4\x44\xd4\xa4\x5e\x4d\xd0\x5f\ +\x5e\xa2\xad\xbb\xf6\x2b\xae\xfa\x22\x7a\xb4\x49\x1d\xd4\x0d\x35\ +\x5e\xfb\xfc\xb3\x84\x45\xc2\x6c\x8d\xb5\xab\x57\x52\x12\x62\xcb\ +\x20\xcd\x7b\x08\x30\x26\x31\x2e\xe6\x0b\x19\xcf\xc9\x1c\x43\x36\ +\x40\x58\x78\x64\x34\x99\x56\x6d\xe2\x5e\x7b\x76\x7a\x14\x43\xfa\ +\xc8\xc9\xa9\x44\xc7\xab\xf7\x3e\x17\x17\x20\xa2\x6c\xeb\xdd\xdb\ +\x1b\xbb\x44\x93\xbd\xe0\x9b\x1f\x57\x08\x63\xa0\xa9\x1a\xd3\xc8\ +\x81\x5d\xe1\x2d\x49\x9f\x2f\x73\xf1\x9c\x19\x8b\x02\xbd\x12\x7e\ +\x5c\x21\x8c\x65\x71\x74\xce\x9b\x76\xfe\x89\x55\x1b\x7f\xb7\x61\ +\x8b\xe2\x5d\x5e\x1e\x3b\x44\x9a\x7f\xd6\x1b\x1f\x4e\xc7\xb1\x53\ +\x42\x8f\xe2\xa9\x09\x71\x31\x11\xce\xc8\x25\x6b\x5f\xa9\x00\x09\ +\x9f\x60\xa9\x0d\x6e\xa5\x1d\xc4\x86\x22\x9f\x1c\x82\x26\xf5\xe5\ +\xd8\x0d\x0e\x1e\x3b\x8d\xb9\x8b\xd7\x0a\xe5\x30\x72\x40\x67\x84\ +\x18\xac\x98\xb4\x7d\xf7\x01\xa5\x28\xa7\x88\x5a\x35\xa9\x83\x7a\ +\x0e\xfc\x9a\xca\x5c\x24\x57\x8d\xb5\x6b\xdf\x11\x6c\x91\xb8\x6b\ +\x6a\x1d\xb3\x28\xdf\xd8\x23\xd5\x1c\x77\x90\x7c\x58\x06\xb3\xe6\ +\x2d\xc5\xaa\x0d\x42\xad\xd9\x9a\x84\xb8\x18\xa9\xa1\x8d\x72\x01\ +\xa2\x71\x41\x7f\xeb\x95\xf1\xa0\xb4\xa2\x32\x88\x82\x76\x28\x78\ +\x27\x2b\x91\x45\xfb\x7f\x63\x86\xe8\x8e\x6f\xcf\xec\x3f\x73\xde\ +\x32\xa1\xc5\xdc\xd1\xf3\xb8\x8c\x39\x66\xc7\x18\x74\xef\x4a\xf8\ +\x71\xa5\x52\x07\x31\x2b\x91\x27\xf2\xa8\xc1\xdd\x0c\xb1\x41\x5a\ +\xc0\xb7\xa7\x7d\x2b\xdc\x89\xa9\x6e\x7b\xcf\x8e\x72\x02\x00\x55\ +\x33\x30\x72\x5c\x4e\x88\x8f\x91\xea\x10\x27\x17\x20\x91\x51\x6f\ +\x00\x2c\x5a\x24\xd5\x59\x9f\xbe\x61\x48\xd8\x5a\x8d\xbf\x98\xbd\ +\x58\x98\xb3\xc9\x11\x95\x22\x95\x59\x23\xad\x8e\x88\xda\x93\x5b\ +\xb8\xa4\x5f\x3d\xad\xf9\xec\xbc\x72\x1e\x17\xee\x24\xe3\xfc\x9d\ +\x07\x89\x11\x82\xfd\x0b\x21\xb8\x60\x21\x34\x0a\x34\x56\x3b\xd0\ +\x11\x01\xef\x3b\x7c\x02\xeb\xb6\xee\x11\x76\x1d\xda\xa7\x03\x8a\ +\x17\xd5\x9f\x08\x83\x06\xc9\xaa\x7a\xcf\x1c\x98\x22\x29\x9f\x1a\ +\x22\x47\xc5\xbf\xef\xd0\x71\xbc\x3b\xf5\x1b\x21\xcf\x19\xe9\x69\ +\xc5\xe7\x7c\xf6\x8e\x7a\x42\x2f\x83\x42\x92\x0b\x90\x88\xa8\x6f\ +\xc1\x98\x8d\xe9\xb4\x54\x60\x71\x7c\x10\xfd\xac\x41\xd6\xc4\xcd\ +\xe9\xbe\x40\xbf\x52\x22\xea\xdd\xb1\x85\x52\xe6\xd8\x08\xd1\xd1\ +\x8a\x8e\x58\x59\x89\x1c\xf9\x9e\x1e\xda\xcb\x65\x59\x0d\x09\x14\ +\x73\x8e\xee\xc5\xce\xab\xe7\x71\xfb\xbe\x58\xe5\x5a\xc8\xdb\x07\ +\x8d\x03\x83\x31\xbc\x6a\x1d\x34\x2e\x19\x6c\x64\x5a\xba\xdb\x52\ +\x9a\xd1\xaf\xbe\x5b\x2a\x8c\x7f\x6f\xde\xe0\x11\x25\xa6\xdd\x08\ +\xa9\x19\x0d\xa9\xf0\xd0\xab\x11\xc3\x8d\x0c\xa5\xda\x56\x2b\x56\ +\x3d\x03\xa6\x66\x73\xe2\x2c\x62\xab\xa5\x03\x4f\x97\x0b\x10\x95\ +\xcc\x89\x64\xfb\x20\x1b\x88\x0c\xa2\xec\x84\xdf\xfc\xb8\x52\x38\ +\xd4\x7f\x86\xf5\x50\x2a\xca\x1a\xa1\x1f\x96\xae\x15\x6a\x5e\x5c\ +\x65\x31\x27\x30\x7c\xf0\xc7\x66\x2c\x3a\x65\x2c\x94\xba\x4f\xc5\ +\x1a\x78\xa9\x6e\x4b\x10\x68\x64\xd3\xf2\xb5\xdb\x71\x5c\x50\xe5\ +\x89\x2a\x4c\x0d\xec\xd1\xd6\xd0\xe3\xa8\x84\x1d\xb9\x9e\x88\x28\ +\x72\x54\x7f\x50\xa1\x53\x19\xf4\xe4\xf3\x31\x42\x50\x5b\x39\x86\ +\xce\x8e\x8f\x91\x56\x42\x5a\x2a\x40\xc2\x54\xe2\xcf\x7b\x74\x6c\ +\x85\xa1\x7d\xe5\x14\x2d\xd5\xb2\x7f\x4c\x8a\x0c\x33\xf4\x8b\xff\ +\x20\x31\x9a\x58\x77\xdf\xe9\xd1\x46\x4a\xb5\x5a\x99\x74\xe8\xe6\ +\x35\xbc\xb0\x65\xc5\xdf\x47\x29\xa3\x63\xd3\xd1\xeb\xa3\x16\x5d\ +\x51\xa3\x88\x31\x1b\x8f\xbd\xe7\x1c\x3a\x76\x1a\xab\x37\xd9\x6a\ +\x9f\xa8\xdf\x13\x8f\x75\x37\xec\xe9\x3b\x39\x2e\x51\x68\x55\xa7\ +\x54\xa5\xb2\x8e\xac\x6a\x16\x75\x2b\xe7\xaf\xcc\x8e\x8f\x7d\xc7\ +\xde\x9c\xf5\x7e\x2f\x0d\x20\x4a\x04\xa1\xd9\x2a\xcc\x2e\x46\x75\ +\x06\xa9\xde\xa0\x0c\x5a\xb9\x7e\x27\xb6\x08\xa2\xfb\x4a\x16\x2f\ +\x82\x71\x23\xfb\x1a\x7a\x04\x65\x33\x5f\xb7\xd5\xb6\x68\x0b\x85\ +\xa5\x3e\x35\xa4\xa7\x54\x37\x76\x02\xc7\x7f\xd6\x2f\x52\x3d\x4e\ +\xe9\x65\x9c\x76\x90\x2f\xdb\xf4\x91\x0a\x12\x52\xf9\xd2\x31\x4b\ +\x44\x54\xf9\xb6\xa6\xc1\xf0\xdc\xcf\x13\x17\x83\x8c\x91\x59\x89\ +\x4a\x4a\x50\x69\x09\x19\xf4\xd9\xac\x1f\xb1\x65\xa7\x6d\xb9\x06\ +\x0e\x7c\x91\x18\x17\xe3\x58\xb8\xaa\x80\x31\x69\x00\x09\x1b\x67\ +\xa9\xca\xcc\x56\xa1\x4f\xf5\xc4\xc8\x51\x78\xa4\x5a\x88\x0c\xb9\ +\xe0\xdb\x85\xbf\xe2\xf0\x09\xdb\xe4\xd5\x75\x6a\x84\x60\x40\xf7\ +\xd6\x86\x9e\x41\x01\x45\x94\x37\x37\x2b\x51\xae\xdb\xbe\x5d\xe4\ +\xf9\x0f\xd1\xb1\x6a\xe8\xea\x1f\x1c\xde\x39\xb2\xf2\x47\x3b\xc9\ +\x77\x1d\x07\x49\x3d\x6e\xfd\xb4\x7c\x03\x2e\x5c\xb6\xcd\xc3\x4b\ +\x29\x4d\xbb\xb7\x6f\x66\x48\xae\x54\x2d\xf8\xc0\x51\xdb\xec\x33\ +\x35\x2a\x97\x03\x5d\xfc\x65\xd0\x0f\x4b\x57\x63\xd1\x8a\xf5\xa2\ +\xa1\xa4\xfa\x64\x49\x03\xc8\x88\x88\xa8\x56\x26\xc6\x36\x8a\x38\ +\x8e\x7e\xe1\x3f\xa8\x5a\x49\x8e\x47\x67\xfc\xcc\x05\xb8\x76\xe3\ +\x96\xcd\x63\x3a\x3f\xda\x08\x2d\x1b\x1b\x8b\x83\x9e\xf9\xfd\x32\ +\xdc\x11\xa8\x38\x65\xdb\x3e\xa2\x77\xae\xc1\xe2\xd3\x62\xab\xb5\ +\xa3\x2f\x4b\xef\x0a\xd5\x11\xd3\xb8\xbd\xa3\xdd\x6d\xfa\xa9\xd9\ +\x44\x28\xb5\x28\x19\x4a\x8d\xd0\xea\x8d\xbf\x63\xe3\x4e\x5b\x8f\ +\x8f\x22\x85\x0a\x2a\x41\x54\x32\x88\xfc\xb1\xc8\x2f\x2b\x2b\xc9\ +\x2e\xd7\x26\x0d\x20\x61\x11\x93\xfa\x31\x66\x12\x66\x97\xa0\x92\ +\x6a\x15\xca\xda\xcf\x56\xa8\x47\x70\x6f\x4f\x9d\x23\xb4\xfe\x1a\ +\x35\x44\x91\xce\xfe\xb3\x04\xf1\x65\xb2\x7f\xd7\xd6\x28\x53\x5a\ +\xce\x39\x9f\xb4\x55\xff\xd9\xb0\x58\xcf\xd4\x0c\xb7\xf9\xb2\x75\ +\x6f\x69\xda\xad\xb3\x17\xaf\x60\xd1\xca\x4d\x36\x3c\x98\x4c\x0c\ +\x63\xc2\x8c\x1d\x5d\x77\xfd\x79\x04\x8b\x56\xd9\x96\xb5\x33\x31\ +\x86\xa8\x67\x9d\x8f\x26\x25\x26\x37\x6c\xdb\x85\x2f\x67\x0b\x2a\ +\xb2\x71\x1c\x4e\x88\x8f\x91\xe3\x11\x0b\xc8\xcb\x8b\x15\x1e\x11\ +\xfd\x14\x18\xfe\x4f\xb4\xca\xef\x47\x3d\x8b\xd2\x25\x8b\x1b\x7e\ +\x01\x6c\x7e\x1d\x38\x47\xcc\x27\x09\xc2\x71\xa8\x34\x18\x95\x08\ +\xd3\x4b\xb4\x73\xd0\x0e\x22\xa2\x11\xfd\x3a\xa1\x88\xa4\x2c\xe9\ +\xcf\x6f\x59\x81\xb5\x17\xc4\x09\xb7\xf5\xf2\xaa\xd6\xae\x5d\x99\ +\x4a\x98\xd2\xc2\xd8\xaf\xbb\xda\x58\x49\x37\x6e\xe3\xbb\x45\xc2\ +\xda\x46\x78\x6a\x68\x4f\x43\x39\x7e\xe9\xd8\x3a\x73\x9e\x38\x2d\ +\xd0\xeb\xcf\x8d\x74\x76\xda\x4a\x7f\xd5\xe0\x29\xc9\x5e\xbd\xd2\ +\x76\x10\x2d\x80\x7c\x1c\xf3\xa2\x61\x83\x93\x48\x8a\xa9\xa9\xf7\ +\xf1\xce\x67\x62\x1b\x88\x51\x15\x2f\xc5\x44\x7c\xbf\x78\x8d\x70\ +\xb1\x9e\x1e\xd6\x4b\x5a\x2c\x75\x6b\x68\x14\xc4\x00\x00\x1a\xb1\ +\x49\x44\x41\x54\xeb\x45\x5f\x23\x39\x5d\x67\xa9\x38\x5a\x0d\xae\ +\xfc\x47\xd7\x4b\x44\x17\xf6\xf5\xbd\x9f\xd0\xd5\xd6\x5e\x23\x2d\ +\x8d\x1e\xc5\x88\x18\x49\x4a\xa1\xa5\xea\x7d\x65\xfc\x70\x29\xb2\ +\x3d\x74\xec\x14\xde\xfc\x44\x98\x34\xc7\x9a\x10\x17\x43\x81\xf0\ +\xfa\x84\x68\x47\x30\xd2\x00\x12\x16\x19\x3d\x8c\x01\xc2\x62\xd7\ +\xd3\xde\xfe\x1f\x02\x24\x54\x44\xba\x75\x3b\x05\x53\xbe\x12\x27\ +\xaf\x88\x1c\xd5\xcf\x10\x08\xc9\x13\x78\xc9\x2a\xdb\xb8\x02\x3a\ +\x06\x8c\x09\x37\x76\xa4\x50\x93\xb1\x91\xe3\x15\x1d\xf9\x28\xe9\ +\x1c\x11\x79\xa1\xff\xf5\x4f\x7b\xef\x35\x64\x1d\xb3\xb4\x8e\x9c\ +\xa4\xb0\x20\xc5\x85\x5e\xa2\xdd\x28\x6e\xa6\x38\x97\xdb\x7f\x9f\ +\x19\x22\xa5\x72\xf0\xd9\x0b\x97\xf1\xea\xdb\xe2\x12\x21\x32\xad\ +\xe9\xf2\x00\xa2\x71\x07\xf9\xf2\x83\x49\x86\xb6\x68\xb5\x85\xa0\ +\x24\x0a\xd3\x12\x28\x59\xa3\x2d\xfd\xf7\x99\xc7\x0c\x65\x32\x24\ +\x87\xc7\x5f\x05\xba\x7f\x4a\x26\x1d\x3e\x50\x8e\xcd\x86\x8c\x81\ +\xaf\xff\x26\x76\xaa\xfc\xd7\x0c\x54\x10\x41\x3f\x81\xf6\x16\xe8\ +\xa3\xe6\x5d\xd1\x3e\x58\x4e\x55\xac\x99\xf3\x96\x0b\xb3\x86\x74\ +\x6e\xdd\x18\x94\x14\x4f\x2f\xdd\xbc\x95\x82\x8f\x67\x88\x7f\xc8\ +\x9e\x7f\x7a\x90\x94\xc4\x7a\x94\xd6\xe8\xd9\xa8\x0f\x84\x2c\x99\ +\x60\xad\xfa\x4d\xdc\xe4\x63\x7a\xf9\xd5\x6a\x67\x4f\xfe\xba\x9f\ +\x11\x1e\x11\xdd\x15\x0c\xcb\x45\x1d\x64\xf9\x61\x51\x66\xf3\xaf\ +\xe6\x8a\xef\x0d\xd1\xcf\x86\x1b\x0a\x15\xa5\x2c\x1f\x5b\x7f\xb7\ +\x8d\xff\x28\x15\x58\x4c\x09\x8e\x92\x41\x9f\x1f\xd8\x89\x2f\x0e\ +\xfc\xa6\x39\x94\x91\xdd\x42\x34\xd0\x33\xa1\x8d\x30\x26\x54\x4e\ +\x19\xb4\xef\x97\xac\x01\xe5\x02\xcb\x4a\xad\x1a\xd7\x46\xbd\x47\ +\xaa\xea\x16\x09\x65\xa4\xff\xe8\xcb\x1f\x84\xed\x65\x59\xd3\xa9\ +\x3c\xdb\x53\x2f\xc6\x0a\x9f\x61\xcd\xe0\x4d\x67\x4f\x8b\xd5\xce\ +\xf6\xa7\x73\x36\xd2\x00\x12\x16\x19\xd5\x9a\x81\x09\x15\xd3\x33\ +\x3e\x8a\x06\x65\x1f\x74\x96\xa8\x02\xeb\xf4\x39\x4b\x6c\x86\x09\ +\x2c\x56\x18\xe3\x1f\x37\x16\x8e\xbc\x7b\xdf\x51\x6c\xfe\xcd\x56\ +\x15\x59\xb2\x78\x51\x0c\xee\x25\xac\x52\x6d\x98\x7d\x7d\x00\xf9\ +\xe7\x68\x65\xf8\x01\x00\x64\x02\x64\xde\x92\xb5\xb8\x92\x64\x5b\ +\x3d\xb8\x65\xa3\xda\xa8\x5f\x4b\x3f\x40\xee\xdc\x4d\xc5\xfb\x5f\ +\x88\xbd\x3d\xc6\x86\xf7\x01\xa5\x19\x72\x96\x28\xbe\xfe\xc9\x17\ +\x62\xc4\xc3\x64\xb0\xd6\x09\xd3\xde\x10\x9a\x1c\x8c\x3e\x57\x1a\ +\x40\xc2\xc7\x47\x35\x83\x89\x09\x63\x60\xa7\xbd\x33\xd1\xe9\xda\ +\x14\x34\x31\xba\x48\xbe\xfb\xd9\x77\x36\x73\x6c\xdd\xa4\x0e\x3a\ +\xb4\x32\x66\xa9\x3f\x7c\xfc\x0c\x56\x6d\xb4\xfd\x75\x27\x17\xf7\ +\xc7\x07\x19\x73\xf3\x56\x13\xba\xee\x23\x96\xd1\x55\x7b\xa8\xbd\ +\xdc\x23\x96\xd8\xed\xbf\x53\xeb\xc6\x86\x32\x93\x68\x2b\x53\x7a\ +\x22\x58\x82\x0a\x3d\x39\xe5\x0e\xc6\xbd\xf2\xae\x50\x72\x32\x1d\ +\x16\xa5\x01\x64\x64\x64\x54\x03\x0e\x26\x74\xe8\xa1\x2a\x52\x94\ +\x11\x44\x06\xd1\xd1\x88\xe2\x41\x32\x73\xc2\x52\xa5\x55\x72\x87\ +\x30\xba\x43\xa9\xe9\xfd\x89\xc7\xb1\xe1\x7d\x0d\x1d\xd7\xd4\xe6\ +\x65\xe4\x92\x6e\xf7\x66\xae\x72\x21\x71\xc7\x4b\x7a\x72\xca\x5d\ +\x7c\xf8\xa5\xb0\xea\x85\x52\xcf\x50\x46\x6c\x3f\xed\x74\x2f\x5a\ +\xa6\x08\x45\xcf\xc1\xeb\x27\xc6\xc5\x8a\x7d\xf8\x0d\xbe\x84\xd2\ +\x00\xa2\x15\x4d\x28\x33\x58\x2a\x73\x7e\x74\xdc\xa2\x8c\x19\x25\ +\x8a\x19\x8b\x57\xc8\xec\x4f\x97\xbc\x6f\x17\x8a\xf5\xfe\x4f\x0e\ +\xe9\x21\xad\x28\xa5\x21\x35\xaf\xc1\xc5\x0b\xf0\xf2\xc1\x86\x3e\ +\x72\xd4\xbc\x54\xf6\x8d\x2e\xe9\x22\x1a\xde\xaf\x93\xa1\xea\xb9\ +\xe4\xb2\x32\x7d\x8e\xd8\xb7\x8b\x5c\xde\xc9\xf5\xdd\x59\x3a\x73\ +\xfe\x12\x5e\x7b\x67\x9a\x70\x98\x74\x6e\x0a\xfd\x36\xde\xa2\x9e\ +\x25\xcf\xc0\xc3\xa5\x01\x64\xf8\x58\x4b\x65\xb3\x97\x55\xa8\x39\ +\x78\xfd\xc5\xd1\xa8\x52\xb1\xac\x01\xb6\x5c\xdf\x54\xcb\x41\x8f\ +\x72\xd5\x3a\x0a\xbc\xac\x9c\xe7\x16\x43\x21\x69\x08\xe7\x2d\x15\ +\x6b\xdc\x8c\xda\x85\x0e\x1d\x3b\x83\xef\x04\x36\x26\x3f\x5f\x1f\ +\xfc\x4f\x52\xa6\xc5\xa3\x27\xce\x20\x66\x8a\xd0\x2e\x8d\xfb\x19\ +\x19\x15\xbe\x9b\xf6\xe6\x3f\x09\xd3\x9c\x78\x9d\xa4\x01\x64\xf0\ +\xe8\xff\x15\xf1\xf3\xf5\xb5\xbd\xe1\x01\xf8\xdf\xf8\x91\xa8\x55\ +\xc3\x78\x96\x0c\x27\xe6\xa5\xab\xeb\xe7\x09\x0b\x85\xa9\x6f\x7a\ +\x77\x6e\x89\xf2\x92\xc2\x83\x0d\x1d\xb3\x74\x71\xfd\x4f\x23\x59\ +\xc7\x2b\x1a\x91\x4a\x26\xfc\xfc\xab\xed\x15\x92\x6c\x33\x74\xe4\ +\x34\x42\x3b\xf6\x1c\xc2\xcf\x6b\x6c\xb3\x53\x52\x7c\xc9\x98\x30\ +\x61\x3d\x25\x23\xc3\x2b\x6d\xf7\x1e\x3c\x8a\xf7\xa7\x89\xbd\x2a\ +\xce\x94\x30\x79\xcb\xaa\x3a\x25\x0d\x20\xc4\x74\x58\x44\x94\x95\ +\x65\x5a\xbb\x1e\x9a\xf2\xb3\x4f\x0f\x45\xa3\xba\xa1\x86\x85\xe0\ +\xea\x0e\xb3\x7e\x5c\x21\x2c\x6d\xec\x6c\x71\x99\xac\x7c\xbb\xc2\ +\x59\xd1\xdf\xec\x8d\x45\x5d\x87\xa2\x84\x9f\x9c\x62\x3d\x6a\xb9\ +\x7b\x0b\x07\x14\x44\xd8\x00\x63\xd9\x68\x7e\xdd\xb4\x0b\x1b\x76\ +\xd8\xe6\xee\x90\x59\x2e\x9a\x6a\x85\x50\xcd\x10\x5b\xe2\x29\x09\ +\x71\xb1\xda\x65\xc6\x0c\xbc\x58\x92\x01\x12\x7d\x8e\x31\xd8\xc4\ +\x86\x3e\x13\x3e\x00\xad\x9a\xd4\x33\xc0\x56\xf6\x34\xa5\x1c\xbc\ +\x94\x8b\x37\x2b\x05\x95\x2c\xae\xd4\xcd\x90\x45\xe4\xee\x3e\x64\ +\xf5\x3c\x25\xee\x5c\x26\x95\xf5\x2f\x84\x6f\xda\xf5\x93\x02\x12\ +\x3a\x5e\x89\xb2\xd9\xd3\xd1\xb8\x6b\x5b\xfd\x95\x88\x69\x7e\x0b\ +\x56\x6c\x52\x6a\x27\x66\xa5\xcc\x8c\x97\x32\x64\xa0\xe6\xac\xc8\ +\x39\x8e\x27\xc6\xc7\x48\x3b\xae\xc8\x06\xc8\x6f\x8c\xa1\x61\x56\ +\x01\x0c\xec\xd9\x01\x7d\xbb\xca\x31\xbe\xc9\x10\x6e\xe6\x18\x6a\ +\xd6\x74\xfa\xde\xa8\x83\x9e\x3d\xbe\x28\x60\xea\xe9\x75\x8b\xf4\ +\xfb\x65\xd9\x1b\xf0\xaf\xef\x65\x80\x84\xb2\x9a\x7c\xad\xe2\xb8\ +\xe9\x48\x64\xe5\x97\xdf\x2e\x15\x56\xe0\x95\x59\x54\x67\xfe\xcf\ +\xbf\x62\xc1\xf2\x75\x36\x52\x72\x5b\x77\xf7\x07\x47\xac\xe8\xf9\ +\x8c\xa1\x7f\x56\xae\x5b\x34\xaa\x83\xb1\x8f\x0f\xd2\xb9\xe4\xd9\ +\xd7\x4c\xeb\xc5\x70\x34\x47\xad\x16\xf7\x04\x92\xe7\xb7\x2c\x77\ +\xbb\x9d\x84\xb2\xe4\xaf\xd9\x22\xae\x14\xf5\xf4\x50\x63\x91\x95\ +\x56\xab\x15\x93\xe3\x66\x83\x7c\xbb\xb2\xd2\x80\x6e\xad\x51\xa7\ +\xa6\x9c\xc0\xb9\xf8\x19\xdf\x63\xfb\x6e\x41\x26\x4c\xce\xe7\x24\ +\xc4\xc7\x8e\x90\xf5\x16\xc9\xdd\x41\x22\xa3\x3e\x64\x60\x2f\x64\ +\x65\xce\x99\xa2\x9d\xb2\x26\xaa\x36\xce\x8f\x3f\xaf\x13\x86\x87\ +\xba\x32\x69\xc3\xfb\x7b\x36\x19\x0e\xa0\xa2\x3b\xc7\x9d\x8c\xfb\ +\xaa\xe2\x70\x66\x27\x51\x2b\x8b\x50\xa6\x54\x71\xf4\xef\x66\xec\ +\xa8\x79\xe6\xfc\x15\xcc\x50\xd9\x8d\x28\xed\x0f\xa5\xff\x91\x41\ +\xe4\xa8\x48\x0e\x8b\x59\xc9\x0a\x3e\x79\x76\x5c\x6c\x94\x8c\x67\ +\xd0\x18\xb2\x01\x12\xc1\xc0\xe2\xb2\x32\x47\xa9\x27\x67\x4c\x11\ +\xa6\xcb\x92\x35\x0f\x87\xc7\xa1\x24\x10\x54\x19\x56\xc4\x33\xa9\ +\x37\x29\x60\xc8\x15\x44\xda\xad\xd9\x94\xf6\xe7\xca\x79\xd5\x63\ +\x17\xd9\x39\x28\xdd\xcf\x88\xaa\x75\x10\x52\xa8\x28\x1e\x5f\xbb\ +\x00\xe7\xfe\xca\x9d\x25\xe2\x89\x40\x32\xa3\x6d\x5f\x94\x2a\x50\ +\x50\x37\xcb\x5a\x69\x7f\x5a\x34\xac\x85\x06\xb5\x8d\xa5\x51\xa2\ +\x4c\x8d\x2b\x37\xd8\x7a\x28\x90\xed\x63\xe2\xb8\xa1\x86\x93\xfa\ +\xa9\x4d\xe4\x89\xe7\x63\x40\x95\xc0\xb2\x12\xe7\x78\x32\x31\x3e\ +\xe6\x6b\xdd\x02\xb0\xd3\x50\xea\xea\x87\x4d\x98\xd4\x8d\x71\x93\ +\xd0\x9b\xf0\x93\x98\x17\x51\xcc\x60\x12\x32\x59\x93\xd4\x1a\x47\ +\x2b\x71\x1c\xd5\x13\x97\x95\x2e\x53\x8b\x07\x02\x09\x5d\xe4\x0f\ +\xdd\x7c\x50\x4b\xb0\x46\x91\x40\x25\xde\x3c\x6b\x2e\xac\x6b\xf7\ +\xee\xd8\x05\x49\x99\x02\x01\x98\xd9\xae\x9f\x6e\x90\xec\x3f\x72\ +\x12\x6b\xb7\xd8\x26\xae\x20\x3e\x8c\xc6\x81\x50\x9f\x79\x4b\xd7\ +\x61\xff\x91\x53\x36\xd3\xad\x16\x52\x16\xc3\xfb\x76\x94\xb2\xa4\ +\x97\xaf\x5e\xc7\x4b\x31\x1f\x8b\xc7\x92\xe8\x87\x25\x7d\x07\x19\ +\x3e\xfe\xb5\x8a\x66\x93\x59\x18\x3e\xe7\xae\xb6\x10\x12\x82\x9a\ +\x9b\x37\x15\xa2\x24\xd7\x77\xda\x01\xdd\x85\x64\x82\xe4\x41\xea\ +\xd1\x15\xb8\x7b\xcf\x36\xa0\xcb\x51\xb7\xff\x29\xff\xf7\x83\xb0\ +\xa8\x27\x69\xc2\x9a\x37\x90\xa3\xea\xdf\xbd\xef\x30\x3e\x52\x29\ +\x81\x70\x23\xd5\x54\x70\xf1\x74\x8b\x7a\x69\x5f\x83\x0b\x29\x75\ +\x07\xa1\x67\x87\x45\x44\xdf\x66\x0c\x36\x7a\xe8\xf0\x41\x3d\xd0\ +\xb9\x8d\xb1\xec\x18\x06\xe7\xe2\x70\x73\xad\xe4\xd5\x2d\x1b\xd5\ +\x42\xfd\x5a\xc6\x8e\x19\x0e\x33\xa2\xb3\xa3\x2c\x90\xa8\xb9\xfc\ +\x13\x1b\x8e\x94\x7c\xb8\x71\x33\x19\x9f\x7c\x3d\x5f\x38\x8b\x71\ +\xe1\x7d\x50\x52\x82\x17\x2f\x0d\xae\x9e\xb0\x81\x5f\x48\x8c\x8b\ +\x95\x9a\x82\x52\x3e\x40\x22\xa3\xb6\x33\x30\x1b\xc5\xf9\xa3\x4d\ +\xeb\x63\x74\x98\x8d\x82\x4b\xe7\x2b\xe1\xda\x66\x14\x5b\x40\x46\ +\x43\x72\x3f\xc9\x4a\xe4\xef\x15\x3e\xb0\xab\x94\x80\x2f\x99\xb3\ +\x70\x16\x24\xae\x28\xf9\x40\x39\x7e\xd7\x0a\xf2\xfc\x52\x75\x2e\ +\x8a\x24\x94\x45\x53\xbf\x9e\x87\x6d\xbb\x44\x75\x72\xf8\xaa\x84\ +\xb8\x58\x63\x56\xcd\xec\xbc\x83\xd0\xb3\xc2\x23\xa3\xbe\x02\x98\ +\x4d\xcd\x6a\x8a\x69\xfe\x24\xf6\x25\x59\x32\x92\x3e\x8e\x5a\x7c\ +\x08\x3d\xa8\x61\xed\xea\x20\xeb\xba\xbb\x91\x33\x20\xa1\x62\x41\ +\x54\x34\x48\x44\x8e\xa6\x3d\xfa\x64\xc6\x7c\xdc\xb8\x65\x6b\x0c\ +\xad\x1b\x5a\x19\xfd\xbb\xca\xcb\x33\x36\x6e\xe2\x3b\x48\xbe\x73\ +\xd7\x86\x75\x0e\xfe\x51\x62\x5c\xec\x8b\x32\xd7\x49\xfa\x0e\x32\ +\x22\x32\xea\x49\x13\xd8\x57\x22\x26\x3f\x88\x7e\x0e\x14\xb1\xe7\ +\x8e\x94\x61\xb5\x22\x71\xfe\x4a\x50\x0d\xbf\xac\x44\x71\xea\x54\ +\x47\x9c\x7c\x89\xdc\x8d\x1c\x01\x09\x79\xdb\x2e\x5c\xb1\x51\x5c\ +\x82\xad\x80\x1f\xc2\x06\x1a\x2f\xc1\xa6\x15\xed\x49\xe0\x20\x90\ +\xc8\x20\xad\x58\x74\xab\x15\x03\x66\x4f\x8d\x11\x07\xc3\x3b\xf8\ +\x70\xe9\x00\xd1\xca\xb0\xf8\xd4\xb0\xbe\x68\xdb\xc2\xc6\xd0\xee\ +\x20\xeb\xf2\xbb\x69\x15\xf1\x24\x4f\x54\xf2\xf2\xa5\x80\x2a\x77\ +\x23\x23\x20\x29\x60\x65\x4a\x36\x17\xd1\x71\x92\xe6\xd5\xa1\x55\ +\x43\x87\xea\x09\x2e\x5d\xbd\x15\x3b\x55\x4a\xba\xbd\x34\xfa\x31\ +\x69\x72\x5b\xb9\x6e\x1b\x12\x7f\x14\xe7\x53\x96\x99\xac\x21\x73\ +\x8d\xa5\x03\x84\x06\x0e\x8b\x10\xfb\x64\xb5\x68\x5c\x17\x63\x47\ +\xca\xc9\xac\xe7\x8a\x97\x94\xac\xbf\x14\x23\x22\x3a\x26\xd0\xf3\ +\x02\x8b\x15\x51\x7c\xb4\x8c\x06\x67\xb9\x82\xd7\xac\x63\xea\x01\ +\x49\x50\x81\x00\xf4\x4f\x0d\x44\xfa\x2d\xdb\xe3\x09\x8d\x47\x99\ +\x0f\x29\xf6\x43\xe0\x6f\xaa\x39\x05\xb2\xa5\xbc\x3f\x7d\x2e\x28\ +\x92\x30\x2b\x55\x2a\x17\x84\xc7\x07\xc9\x49\x82\x41\x63\x7f\xfc\ +\xe5\xb7\x4a\x4e\x2c\x01\xfd\x99\x10\x17\x53\x47\xb6\xac\x5d\x03\ +\x90\xc8\xe8\x44\x06\xd8\x98\xfb\x29\x19\x5b\xdc\xe4\xff\xca\x9e\ +\x83\xd4\xf1\xa8\x0c\x00\x95\x03\x50\x23\x47\x72\xd5\x4a\x65\x50\ +\x63\x30\x3d\x20\x09\xb0\x9a\xd0\xe7\x6e\x71\x14\xe4\xb6\xaa\xeb\ +\x1e\x1d\x9a\x83\x5e\x68\xa3\xa4\x95\x71\x7f\x58\x9f\x0e\xa8\x5e\ +\x59\x7f\x46\x14\x7b\xcf\x7e\xe6\xe5\xb7\x84\x15\xb1\x38\xc7\x27\ +\x89\xf1\x31\xcf\xd9\xeb\x6f\xf4\x7b\x97\x00\x24\x3c\x32\x6a\x14\ +\xc0\x84\xd6\xcc\x77\x27\x45\xa2\x4c\x29\xfd\x39\x96\x8c\x4e\x48\ +\x46\xfb\x95\xeb\x76\xe0\xa8\xb8\x48\xa4\x32\x7c\xd3\xfa\xa1\x68\ +\x5c\x57\x5a\x76\x4b\x19\x2c\xff\x3d\x86\xa3\x20\x21\x57\x74\x8a\ +\x3d\x37\x4a\x94\x3c\x81\x52\xfc\x88\xee\x6e\x45\x0b\x07\x60\xc2\ +\x13\xfd\x0d\xef\x48\x6a\x3c\x9c\x3c\x73\x01\xd1\xef\x7f\x2e\xfc\ +\x9a\x03\xbd\x12\xe3\x62\xc4\x61\x8c\x46\x27\xf5\x50\x7b\x97\x00\ +\x24\xec\xb9\x57\xcb\xb0\x0c\xaf\xf3\x22\xbe\xc2\x06\xf6\x40\x97\ +\xb6\xee\x69\x0f\xc9\xe4\x97\x5c\x18\x7e\xfc\x79\x3d\x28\xfb\xa2\ +\x1a\x39\x62\x27\x70\x62\x9d\x0c\x75\x35\x0a\x12\xb2\x4f\xd0\xd1\ +\xd1\x6c\xb2\x29\x4e\x6c\xf7\xb9\x6a\x95\x6d\xa9\x63\x8f\xf6\x4d\ +\xa5\x96\xcf\x5e\xb4\x72\x3d\x7e\x58\x22\x0e\x93\x96\x6d\x20\xcc\ +\x9c\xb8\x4b\x00\x42\x83\x87\x47\x44\xfd\x09\xc6\x6c\xd2\xad\xcb\ +\xae\x97\x6e\x77\x05\x1d\x6c\x40\xbf\x88\xf3\x96\xae\x11\x16\xf7\ +\xcc\x1c\xb2\x52\xf9\x20\x50\x52\x35\x19\x31\xd6\x0e\xb2\xa9\xda\ +\x8d\x40\x32\x72\xed\x02\xcd\x92\x0b\x74\xdc\x1a\x86\x60\x3c\xd1\ +\xab\x93\xe1\x22\x39\xf4\x60\xca\x32\xf3\xf1\x57\x3f\xaa\xda\x8f\ +\x5e\x7a\xe6\x31\xa9\xb2\x79\xc1\x32\x05\x57\x05\x69\x89\xc0\xf9\ +\xaf\x09\xf1\xb1\x72\xfc\x58\xb2\x48\xd4\x95\x00\x79\x17\x8c\xbd\ +\x2c\x5a\x41\x59\xc9\xac\x65\xbf\x54\x59\xc7\xa3\xcc\x19\xb4\x93\ +\x90\x0b\xb7\x1a\x51\x49\xb1\x9e\x1d\x5b\x80\x5c\x33\xdc\x89\x28\ +\x79\xdb\xf7\xab\x36\xe0\x9b\xfb\x67\x70\xdb\x64\xeb\xd4\x97\xc9\ +\x6b\x29\x5f\x7f\x24\x74\x18\xa0\xdb\x77\xeb\xe1\x39\xaa\x45\x0e\ +\x52\x9b\x56\x8d\x6b\x81\x62\x49\x64\xd1\x89\x33\xe7\xf1\xfa\xfb\ +\x5f\x88\x87\xe3\x78\x21\x21\x3e\x46\x9c\xe2\xc4\x49\x06\x5c\x08\ +\x10\x4b\x63\x30\xab\x30\xbb\x1d\x05\x4f\x51\x10\x55\x6e\xa0\x23\ +\x27\xcf\xe2\x97\xf5\x3b\x35\x59\xf5\xf5\xf1\x06\x5d\x70\xcb\x94\ +\x92\x53\x32\xc1\x59\xb9\x90\x9d\x83\xe2\xcb\x49\x95\x7b\x87\x65\ +\x60\x51\x81\xeb\x9a\x20\x31\xea\xe0\x48\xfc\xdd\xbc\x9d\x82\xa9\ +\xdf\x2c\xc0\xfd\x74\x31\xf8\x5e\x78\x7a\x10\x0a\x05\xc8\xfb\xd1\ +\x48\xfc\x71\x19\x56\xae\xb3\x8d\x99\xe7\x9c\x73\x96\x6e\x0e\x4a\ +\xf8\xdc\x62\xeb\xfb\xee\xac\x20\x65\xbb\xbb\x67\xe5\x27\x3c\x32\ +\x9a\xdc\x3a\x2b\x64\xfd\xff\xc5\x8a\x14\xc6\x27\x72\x0d\x9e\x12\ +\x44\xa1\x3e\x84\x96\xcf\xd2\xc3\xbd\x1e\xa9\x56\x49\x39\x73\xe7\ +\x94\xad\x84\xf2\x51\x6d\xdf\x73\x10\x07\x8f\xfe\xdb\x9b\xd6\x15\ +\x20\xa1\x14\xb0\x64\x1c\x14\x51\xb3\xfa\xa1\xe8\xd6\xce\x58\x98\ +\xae\xd6\x02\xd2\x0e\x1e\xf9\xda\xfb\xa0\x5d\x51\x40\x1b\x13\xe2\ +\x62\x8c\x95\x16\x33\xf0\xb6\xb8\x6c\x07\x21\x1e\xc2\x23\xa2\xde\ +\x06\x63\x13\x45\xfc\x44\x3d\xff\x34\xaa\x85\xc8\x2d\x92\x69\x60\ +\xde\x86\x9b\x1e\x3d\x79\x0e\xab\x37\xfe\x06\xb2\xb8\x6b\x91\xc9\ +\x64\x42\xad\xea\x95\x14\x2d\x17\x79\x03\x67\x07\x51\x64\x24\x25\ +\x5d\x20\xd7\x75\xab\x55\x9c\xf5\x5f\x26\x48\xd4\x4a\x3d\xd3\x5c\ +\xe9\xc7\x61\xc2\xa8\xfe\x52\xeb\x3b\xee\xd9\x7f\x04\x1f\x7e\x9e\ +\x28\x16\xa5\x15\x11\x09\x53\x63\xc4\x69\xde\x25\x08\xdf\xa5\x00\ +\x09\x7b\x76\x52\x0d\x66\x35\x09\xad\x3a\x1d\x1e\x6d\x82\x51\x8f\ +\xf5\x92\x30\x85\xec\x1b\x82\x12\x3b\x2f\xfd\x75\x8b\x50\xa5\x99\ +\x95\x0b\xd2\x08\xd5\xa9\x59\x19\x75\x43\xab\x80\xca\x98\xb9\x82\ +\x68\xc7\xd8\xbd\xff\x28\xf6\x1d\x3a\x61\x17\xb8\xca\xf3\xfd\xbd\ +\xb1\xd8\xff\x3a\x2e\xde\x4b\x51\x65\xc7\xde\x71\xeb\xe6\xad\x64\ +\xc4\x7d\xb3\x40\x58\xc5\x96\x06\x1d\xd2\xbb\x9d\x43\x96\x78\x2d\ +\xf9\x4c\xfb\xe6\x07\x6c\xfd\xcd\x36\x4b\x0a\x07\xd2\x53\xbd\x4c\ +\xa5\xe7\x4d\xb1\x24\xb9\x42\xbe\x34\xa6\x4b\x01\xf2\xd7\x2e\xb2\ +\x19\x8c\xb5\xc8\x3a\x01\xff\x02\x7e\xa0\xc2\x3a\xe4\xc2\x91\x9b\ +\x88\x12\x33\x13\x48\x44\x19\x40\xd4\xe6\x41\x49\xe8\x2a\x95\x2f\ +\xa3\x18\xe1\x9c\xf5\xe7\xba\x74\x25\x49\xc9\x61\x45\x7f\x14\xec\ +\xa5\x97\xe8\xb9\xa4\x4c\x48\xe1\xe9\x0e\x07\x5d\x91\xa7\xc1\x8c\ +\xef\x97\xab\x1e\xad\x28\x4c\x39\xac\x7f\x27\xbd\x2c\xe9\x6a\x77\ +\x2b\x39\x05\xcf\x47\x7f\xf4\x77\xaa\xd9\x7f\x75\xe2\x98\x9b\x10\ +\x1f\x33\x54\xd7\x40\x0e\x36\x72\x39\x40\xc2\x26\x44\x3d\xcd\x38\ +\xfb\x52\xc4\xdf\x63\x7d\x3a\xa3\x57\x27\x79\x5e\x9e\x0e\xca\xc0\ +\xa1\x6e\x54\x5b\x84\xb2\xa2\x18\x25\x5f\x5f\x1f\xa5\x54\x5c\x89\ +\xa2\x85\x95\x74\x9e\x05\xfd\x0b\x28\x2e\x1e\x59\xdd\x57\xe8\xf2\ +\x7b\xf3\x76\xb2\xb2\x5b\xd1\xaf\xf6\xd5\xeb\xb7\x70\xe2\xcc\x05\ +\xa4\xa6\xea\xac\x56\xf5\x10\x63\x35\xab\x54\x50\x7c\xac\x32\x49\ +\x8f\x9d\x44\xb4\x93\x50\xb2\xef\x4d\x3b\x05\x89\x12\x00\x25\xa8\ +\x8c\x8a\x18\x15\x2e\xa4\x3f\xdc\x57\x8f\xec\xe6\x2e\xfa\x05\x4b\ +\x57\x89\x13\xb5\x73\x2b\xba\x24\x4e\x8d\xf9\x45\xcf\x38\x8e\xb6\ +\x71\x39\x40\xc2\x5f\x7a\xa9\x20\xee\xf9\x5f\x06\x83\x8d\x4a\x83\ +\xaa\x4e\x7d\x1c\xf3\x02\x7c\xbc\xbd\x1d\xe5\x3f\x47\xfb\xd1\xaf\ +\xf8\xa6\x1d\x7b\x15\x8d\x8e\xb3\x44\x32\x28\x52\xb8\xa0\xa2\x52\ +\xbe\x9d\x7c\x47\x58\xa8\xd4\xe8\x33\x08\x78\xe4\xba\x2e\x72\x1f\ +\x31\x0a\x92\xbd\x07\x8f\x63\xfe\x72\xf5\x8a\x02\x32\x23\x06\x33\ +\xe7\x49\xf9\x82\x9f\x8d\xfa\x10\xa9\x69\x82\x1f\x05\xce\x4f\x24\ +\xc4\xc7\xca\x71\x11\xd6\x10\xac\xcb\x01\x42\xcf\x0e\x8b\x88\xfe\ +\x88\x31\x3c\x2f\xe2\x63\xc4\x80\xee\xe8\xda\xae\xb9\xd1\xb5\x77\ +\x9b\xf6\x56\xce\x95\x3b\x00\x69\x8f\x1c\xf9\x75\x77\xc5\x44\xe8\ +\xd8\x4a\xee\x30\xa4\x2c\xd0\x72\x3c\xd4\x0b\x92\xb7\x42\x5b\x63\ +\xf1\xa2\x75\xaa\x0a\x00\xb2\xc4\x8f\x19\x41\x09\x2e\x8c\x5b\xe2\ +\xb5\xe6\xaf\x96\xfb\xea\x41\x1f\xfe\x6c\x42\x5c\xec\xa7\xae\x90\ +\xdf\xc3\x63\x66\x0b\x40\x86\x46\x58\x82\xbd\x98\xf5\x14\x03\x6c\ +\xd2\x7a\x93\x03\xe3\x14\xcb\xf3\xf0\x92\x90\xf1\xdb\xd5\xc2\xd2\ +\x1a\x3f\xed\xfe\x7d\xec\xdc\x73\x08\x7f\x1c\x3c\xa6\xfa\x22\xb9\ +\x9a\x3f\x7a\x41\x49\x29\x40\x19\x0c\xbd\xbd\xf5\x65\x50\xd7\x03\ +\x12\xff\x0c\x86\xd6\x17\x7d\x51\x20\xc3\xf6\x75\xf1\xf1\xf1\xc6\ +\xe8\x61\x3d\xa5\x25\xfb\xce\x94\xd1\xbd\xd4\x54\x44\xbe\xf6\x81\ +\x70\xf7\xe0\x9c\x5f\xf7\x4a\x36\x07\xcf\x9c\x69\xb1\x0d\xde\x91\ +\x2c\xe4\x6c\x01\xc8\x83\x5d\x24\xea\x1b\xc6\x98\xb0\x06\x30\x69\ +\xb3\x48\xab\x95\x17\x88\x2e\x95\x5b\x7f\xdf\x0f\x52\x0b\x67\x27\ +\xd1\x05\x99\x2a\x41\x39\x62\x9c\xd3\x03\x92\x02\xe9\x0c\x6d\x2e\ +\xd9\x82\x84\x5c\xd9\x1d\xf1\x00\xb6\x27\x9b\x45\x2b\xd6\xe3\x87\ +\xa5\x62\xbf\x2b\x80\xbf\x9e\x10\x17\xab\x52\x5e\xca\xde\xc8\xc6\ +\xbe\xcf\x36\x80\x0c\x8b\xb0\xd4\xf4\x62\xd6\x03\x22\xf6\xa8\xb8\ +\x0e\x15\xd9\xc9\x4b\x44\x19\x43\x28\x89\x1a\x79\xa0\xd2\x5d\x85\ +\x6c\x15\x32\xc9\xdf\xcf\x17\x15\xcb\x05\x81\xfc\xc1\xca\x07\x97\ +\x72\x3a\xf3\x8a\x23\x20\xe9\xde\xae\x29\x9a\xd6\xaf\x29\x73\x5a\ +\xca\x58\x74\xe7\xa0\xbb\x07\xdd\x41\x6c\x89\xdf\xbe\x97\x9a\x56\ +\x7e\xde\xf4\x77\xd5\x3d\x49\x25\x72\x94\x6d\x00\x21\x9e\xc3\x23\ +\xa2\x66\x83\xb1\xe1\x22\xfe\x73\xb3\x46\x4b\xcf\x7a\x50\x2e\x27\ +\xd2\x42\x19\x55\xcf\x3e\x3c\x76\xa6\xba\x38\xa4\x5c\x90\x4b\x42\ +\x97\x8d\x80\xa4\x45\x8d\xaa\xe8\xdb\xa5\x95\x9e\xa9\x1b\x6e\xf3\ +\xed\x82\x15\x4a\xe6\x12\x11\x71\x0e\x4b\x62\x7c\xcc\x1b\x86\x07\ +\x75\xb0\x43\xb6\x02\xe4\xf1\xc8\x49\x55\xac\x30\x1d\x06\x60\x73\ +\x9b\x23\x2d\xce\x07\xd1\xcf\xa2\x68\x91\x42\x0e\x4e\x25\x77\x75\ +\x23\xf5\x2d\x79\xc3\xd2\xaf\x25\x7d\x3e\xf8\x7b\x10\x91\xe7\xe7\ +\xeb\xad\xd8\x87\xe8\xcf\xd7\xe7\xc1\x67\x76\xb9\xaf\xe8\x01\x49\ +\x21\x6e\xc6\xf7\xdd\x86\x20\xa8\xa0\xfc\xb5\xba\x70\xe9\x2a\x26\ +\xbe\x15\x2f\xcc\xed\xcb\x39\xbf\x79\x33\xcd\x1c\x2c\x33\xef\x95\ +\xbd\xb7\x26\x5b\x01\xa2\xec\x22\x91\x51\x5f\x03\x6c\x94\x88\xb1\ +\xa6\x0d\x6a\x21\xe2\x89\xc7\xec\xf1\xec\xf9\xde\xc5\x12\xd0\x03\ +\x12\x7b\x16\x77\x47\x59\x7c\xeb\xd3\x19\x36\xbe\x64\x99\x63\x71\ +\x60\x62\x62\x5c\x8c\xb8\x72\xa7\xa3\x0f\xb4\xd3\x2f\xdb\x01\x42\ +\x1a\x2d\x6f\x58\x8f\x81\x41\x98\xfd\xe0\x7f\xe3\x1f\x47\xad\x1a\ +\x2e\x57\x6f\xbb\x48\x9c\x79\x67\xd8\x9c\x00\xc9\x96\x9d\x7f\xe0\ +\xb3\x59\x3f\xaa\x1d\xad\xce\xa7\x5e\x32\x85\xcc\x9b\x67\x31\x6e\ +\x29\x75\x62\x59\xb2\x1d\x20\x0f\xee\x22\xd1\x6f\x81\xe1\x15\x11\ +\xdf\x25\x4b\x14\x03\x85\xe5\xba\x53\xba\x4f\x27\xe4\x9b\xab\xbb\ +\x66\x27\x48\x48\x89\xf1\x72\xec\xa7\x8a\xf7\x80\x88\xac\x9c\x87\ +\xcf\x8e\x8f\x55\xf1\x58\x74\x9d\x98\x73\x04\x20\xbd\x47\x5b\xfc\ +\x8b\xfa\x58\x4f\x80\xa1\x94\x68\x6a\x79\xfd\xc2\xee\xba\xe5\x94\ +\x3f\x72\x76\x81\x64\xf6\xfc\xe5\x58\xb1\x76\x8b\xca\x04\xf8\xae\ +\x84\xb8\xd8\x1c\xc9\x17\x95\x23\x00\xf9\xeb\x2e\xa2\x9a\xd8\x81\ +\x8c\x5c\x6f\xbc\xf4\x0c\xca\x49\x2a\xa4\x29\xff\xb5\xc9\x5f\x23\ +\xba\x1a\x24\x07\x8f\x9e\xc4\x5b\x9f\x6a\x54\x2c\xe0\xa6\x26\x09\ +\xf1\x16\xed\xa8\x35\x17\x2d\x49\x8e\x01\x84\xe6\x13\x16\x11\xbd\ +\x8e\x31\x08\x2b\xb4\x94\x0a\x2c\x8e\x37\x27\x8e\x55\xb4\x38\x1e\ +\xca\x79\x09\xb8\x0a\x24\x14\x04\xf5\xca\x5b\xf1\xb8\xa5\xe2\xcf\ +\xc6\x39\xa6\x24\xc6\xc7\xe4\x98\x91\x2c\x47\x01\x42\xe5\x12\x4c\ +\x26\xd3\x01\x06\x26\x0c\x98\xf0\x68\xb5\x72\x1e\x18\x0f\x73\x20\ +\x1b\x24\xe4\x3e\xff\x76\xdc\x4c\xd0\x0e\x22\x22\xce\xf9\x29\xaf\ +\x64\x73\xcd\xec\x70\x29\x51\x93\x74\x8e\x02\x44\xd9\x45\x22\xa3\ +\x84\x55\xa9\x32\x19\x7e\x6a\x78\x5f\xb4\x6d\x9e\x23\xc7\x4f\xf7\ +\x7a\x3b\xdd\x84\x1b\x99\x20\x59\xb0\x7c\x2d\xe6\xff\xbc\x46\x75\ +\x66\x19\x56\x53\xdb\x39\x53\x2d\xeb\x73\x72\xea\x39\x0e\x90\xbf\ +\x40\xb2\x8c\x81\x75\x13\x09\x82\x52\xea\xc4\xbc\xfc\x0c\xca\x06\ +\x09\xef\xf3\x39\x29\xbb\x7c\xfb\x6c\x19\x20\x39\x72\xe2\x0c\x26\ +\x7f\xfc\x95\xd0\x20\xf8\x40\xb0\xd9\xe7\x6f\xa5\xb5\x90\x6e\x01\ +\x90\x51\xcf\x59\x8a\x66\xa4\x67\xfc\x01\xc6\x84\x41\xea\x41\x25\ +\x4b\x20\xe6\xe5\x31\xb9\x2e\xfa\x30\x2f\x23\xc8\x19\x90\x90\x2a\ +\xf7\xb5\x77\xa6\xa9\xde\x3b\x00\xf9\x75\x3e\x1c\x5d\x0b\xb7\x00\ +\x08\x31\x3f\x3c\xd2\xd2\xd4\x0c\xeb\x36\xb5\x89\x84\x56\x0b\xc1\ +\x2b\x91\x42\x03\xbc\xa3\x73\xf7\xf4\x73\x52\x02\x8e\x80\xe4\xde\ +\xbd\x54\xc4\x4c\xf9\x3f\x61\x85\x5a\x65\xdf\x00\xbf\x60\xb2\xa6\ +\xd7\x99\x35\xf5\xed\x6b\x4e\xb2\x27\xa5\xbb\xdb\x00\x44\x39\x6a\ +\x8d\x8f\x7a\x81\x99\xd8\x87\x6a\x33\x6b\x50\xbb\x06\x9e\x7d\x5a\ +\x5e\xa5\x54\x29\x12\xcc\xe7\x83\x10\x48\x9e\x5a\xbf\x08\xa7\x92\ +\xd5\x9d\x6b\x33\xdd\x52\x8a\x7a\xf9\xe0\x9d\xf8\x6f\x70\xf4\xc4\ +\x19\x35\xa9\x59\x39\x33\xb5\x4e\xfc\xd4\x22\xf6\x54\xcc\x01\x59\ +\xbb\x15\x40\x68\xfe\xe1\x11\x51\x4b\xc1\x58\x0f\x35\x59\xb4\x69\ +\xde\x00\x4f\x0f\xef\x97\x03\xa2\xf2\x3c\x52\x4d\x02\x49\xa9\x77\ +\xf1\xd4\xba\x45\x38\x99\x7c\x43\x55\x48\x65\xfc\x03\xd0\xec\x64\ +\x06\x8e\xed\x3f\xa6\x21\x48\xf7\xb8\x77\x3c\xcc\xa0\xdb\x01\x64\ +\xf8\xd8\x89\xc5\x4c\x66\x9f\x3f\x19\x83\x6a\x31\xc6\xde\x5d\x5a\ +\x63\x70\x2f\xb9\xd9\x33\x3c\xaf\xbf\x73\x12\xd0\x03\x92\x02\xb7\ +\xd3\x50\xf5\xb7\x07\xa5\xae\xb3\x12\x07\x56\x27\xc6\xc5\xb8\xdd\ +\xa2\xba\x1d\x40\x48\x70\x23\x22\xa2\xea\x30\x86\x6d\x6a\xf6\x11\ +\x6a\x33\x72\x50\x4f\x74\x6a\xd3\xd4\xb9\x55\xf5\xf4\x96\x2a\x01\ +\x3d\x20\xa9\xf2\xfb\x15\xf8\xdf\xfa\x77\xa1\x1d\x0e\x7e\xc4\xcb\ +\x6c\x6e\x3a\xf3\x63\x8b\xfa\x16\x24\x95\x53\xfd\x83\xb9\x25\x40\ +\x94\xfb\x48\x64\x74\x4f\x06\x2c\x12\xc5\x8e\x64\x4e\x6f\x48\x9f\ +\xce\xe8\x99\x4b\xd3\x06\xe9\x5f\xa2\xdc\xd5\xf2\x7a\xea\x5d\x3c\ +\xb1\x6e\xa1\xea\x9d\xa4\xea\x8e\xcb\x28\x90\x92\xfe\xf7\xa4\x28\ +\xbe\xdc\xca\xad\x0d\xe6\x4c\x7d\xf3\xdf\xf9\x52\xdd\x64\xda\x6e\ +\x0b\x10\x05\x24\x11\xd1\xcf\x32\x86\x8f\xb5\x64\x45\xbb\x08\xed\ +\x26\x1e\x72\x1f\x09\xa8\x81\xc4\xff\x66\x1a\x2a\xef\xba\xfa\xaf\ +\x6c\x85\x1c\xbc\x4d\x62\x5c\xec\x06\xf7\xe1\xfe\xdf\x9c\xb8\x35\ +\x40\xfe\x02\x89\x85\x31\xbc\xae\x25\xc0\x06\x75\x6a\x28\x81\x56\ +\xee\x58\xa7\xc3\x5d\x17\xde\x95\x7c\x51\x2c\xf9\x9b\xd3\x13\xb0\ +\xc5\xeb\x36\xae\x97\x79\x90\x48\xce\xef\x76\x1a\x42\xfe\xb8\x0e\ +\xaf\xfb\x0f\xb2\xc1\x73\x20\x8d\x71\xf4\x49\x88\x8f\x59\xe1\x4a\ +\x5e\x9c\x1d\xdb\xed\x01\xf2\x00\x24\x51\xef\x33\xc6\x34\x8b\xac\ +\x57\xad\x54\x0e\x2f\x8d\x0d\x07\xa5\x34\xf5\x50\xce\x49\x20\xe9\ +\xc6\x4d\x45\x95\x7b\xf1\xf2\x03\x33\x46\xba\x97\x09\xf7\xfd\xcc\ +\x28\x90\xfc\xcf\xbd\x83\x72\xea\x32\x8e\x5e\xee\x0e\x0e\xe2\x3f\ +\x57\x00\x44\x2f\x48\xca\x06\x95\xc4\xcb\xe3\x46\xa2\x58\xd1\xc2\ +\x39\xf7\x86\xe4\xe3\x27\x9f\x3e\x77\x11\xef\x4d\x9b\xa5\x61\x21\ +\x7f\x20\x1c\xc6\xd0\x6f\xd6\xa7\x31\x0b\x73\x83\xa8\x72\x0d\x40\ +\xf4\x82\x84\x72\xdd\x92\x31\xb1\x66\xd5\x4a\xb9\x41\xfe\x79\x86\ +\xc7\xed\xbb\xf7\xe1\x8b\x84\xf9\xb8\x7f\xff\x9f\x0b\xb8\xcd\xe4\ +\x38\xbf\x0f\xce\xfb\x25\x4c\x9d\x2c\x2e\x74\xee\x86\xd2\xc8\x55\ +\x00\xf9\xeb\x4e\xf2\x3a\x63\xb0\x68\xc9\x92\xd2\x6d\x0e\xea\xd5\ +\x11\xbd\x3b\xbb\xac\xae\x8a\x1b\x2e\x65\xce\xb0\x44\xf5\x52\x12\ +\x7e\xf8\x19\xbf\x6e\x14\x16\x13\x7b\x88\x29\x9e\xca\xc0\x7b\xcd\ +\x8a\x9b\xbc\x2a\x67\x38\x75\xec\xa9\xb9\x0e\x20\x34\xcd\xf0\xc8\ +\xa8\xe7\x00\x66\xb7\x26\x5d\xc3\x3a\x35\x31\x26\x7c\x00\xfc\xb2\ +\xa9\x90\x8d\x63\x4b\x90\x7b\x7b\x5d\xbf\x71\x0b\x9f\x7e\xf5\x1d\ +\x8e\x69\x94\xcc\xfe\x6b\x76\x37\x90\xc1\x7a\x27\x4c\x7b\x43\x3d\ +\xfb\xb5\x9b\x8a\x21\x57\x02\x44\xd9\x49\xc8\x4e\xc2\xf1\xbd\x28\ +\x6b\xfc\xc3\xb2\x0e\x2c\x5e\x14\x2f\x8d\x09\x43\x70\x50\x49\x37\ +\x5d\x82\xdc\xc9\x16\x05\x39\x7d\xf2\x7f\xdf\x21\xe5\xce\x5d\xcd\ +\x09\x70\x8e\xa3\x56\x9e\xd1\xc9\x5d\xed\x1c\xf6\xa4\x9f\x6b\x01\ +\x42\x13\x1b\x19\x19\xd5\xc0\xca\xd9\x12\x2d\xb7\x14\x6a\x47\x45\ +\x36\x29\x11\x44\xe7\x36\xee\x5d\x9f\xdd\xde\x62\xb9\xc3\xf7\x54\ +\x18\x74\xe1\xf2\xb5\x58\xa2\x52\xb3\xe3\xdf\x3c\xf2\x75\x66\xb3\ +\xb9\x9f\x3b\x5a\xc8\xf5\xca\x32\x57\x03\x84\x26\x49\xb1\x24\xe9\ +\x19\x19\x73\x19\x58\x17\x7b\x93\x2e\x1f\x5c\x1a\x4f\x0e\xeb\x83\ +\x2a\x15\xcb\xd9\x6b\xea\xf9\x5e\x20\x81\x9d\x7b\xf6\x83\xaa\xcd\ +\x26\xdd\xd0\xae\x6c\xc5\x39\xcf\x60\x0c\x31\x55\x4a\x98\x27\x5b\ +\x2c\x16\xed\xa2\x8e\x6e\x2e\xe9\x5c\x0f\x90\x4c\xf9\x92\xd5\x1d\ +\x0c\xef\x31\xc0\x6e\x96\x07\x0a\xe1\x1d\xd2\xb7\x33\xa8\x80\x8f\ +\x87\xec\x4b\xe0\xca\xb5\xeb\xf8\x7a\xee\x62\xfc\x79\x50\xcb\x13\ +\xf7\xc1\x38\x14\xcf\xc1\xac\xe8\x9f\x30\x35\x56\x35\xb6\xc7\xfe\ +\x13\xdd\xa7\x45\x9e\x01\x88\x72\x79\x9f\x60\xa9\xcd\x79\xc6\x7c\ +\x06\x56\xcd\x9e\x88\x49\x1d\x4c\xbe\x5c\x6d\x5b\x34\xd4\x2c\x32\ +\x63\x6f\x9c\xbc\xfc\xfd\xfd\xf4\x74\x2c\x5e\xb9\x41\x29\x81\x46\ +\xff\xb6\x4f\x7c\xfe\xbd\xd4\xb4\x27\xb3\x2b\xf3\xba\x7d\x7e\x9c\ +\x6f\x91\xa7\x00\xa2\x1c\xb9\x46\x59\xfc\xd2\x03\x32\x3e\x64\x8c\ +\x8d\xd3\x23\x1e\xba\xbc\xf7\xe8\xd0\x0a\xad\x9a\xd4\x85\xd9\x6c\ +\xd6\xd3\x25\xcf\xb7\xa1\x2c\x87\xa4\xb6\x5d\xb1\x76\x2b\x6e\xdc\ +\xba\x6d\x77\xbe\x1c\xb8\x05\xf0\xc8\xc4\xb8\xd8\x59\x76\x1b\xe7\ +\xb2\x06\x79\x0e\x20\x99\xf2\x0f\x1f\x3f\xa9\x07\x4c\x6c\x26\xc0\ +\x74\xa9\xaf\x8a\x14\x0a\x40\x97\x76\xcd\xd1\xa9\x75\xd3\x6c\xab\ +\x6f\xee\x6e\xef\xca\xf5\x9b\xb7\xf1\xf3\xea\x4d\x58\xbb\x79\x27\ +\xe8\x32\xae\x87\x38\xf8\x86\x74\xb3\x79\xe4\x77\x1f\x5b\xc4\xb9\ +\x7b\xf4\x0c\xe2\xc6\x6d\xf2\x2c\x40\x48\xe6\x83\x9f\xb7\x14\xf7\ +\x4b\xcf\xf8\x12\x60\x03\xf4\xae\x01\x95\x1a\x68\xdf\xaa\x31\xba\ +\xb5\x6f\x89\x62\xf9\xa4\x14\xc3\xb9\x8b\x57\xb0\xe4\x97\x0d\x4a\ +\x2d\x72\x32\xfc\xe9\x22\x8e\x7b\x9c\xf3\xd7\x12\xa7\xc6\x92\x3d\ +\x8a\xeb\xea\x93\x0b\x1b\xe5\x69\x80\x64\xae\xc7\x88\x88\xa8\x30\ +\x13\xc3\x47\x7a\x77\x93\xcc\x7e\x4d\xeb\xd7\x42\xeb\xe6\x0d\x50\ +\xef\x11\xbb\x57\x9a\x5c\xb8\xf4\xc0\xc6\xed\xbb\xb1\x76\xcb\x6f\ +\x38\x6c\xbc\x9c\xf5\x46\x9e\x61\x7a\x22\x71\x9a\xe5\x68\xae\x9c\ +\xb8\x01\xa6\xf3\x05\x40\x94\x0b\x3c\x95\xa3\x4e\xf5\x7f\x03\x9c\ +\x4f\x00\x63\x86\xea\x4e\x93\xb1\xb1\x5d\x8b\x46\x68\xd7\xb2\x91\ +\xf4\x3a\xe0\x06\xd6\x4a\x4a\xd3\x4b\x57\x92\xb0\x6a\xc3\x36\x6c\ +\xdc\xbe\xc7\xae\x91\xcf\xe6\x81\x9c\x9f\x63\xc0\xcb\xb3\xe2\x63\ +\xe7\x48\x61\x26\x17\x0c\x92\x6f\x00\x92\xb9\x16\xc3\x27\x4c\xaa\ +\x66\xe6\x26\xca\x9c\xd2\xdb\x91\xf5\xa1\x5d\xe5\xd1\x66\xf5\xf1\ +\x48\xf5\x90\x5c\x53\xdf\x9d\xac\xdd\xbb\xf7\x1d\x56\x2e\xde\x94\ +\xb0\xcd\x30\x71\xdc\xe1\x8c\x7f\x7c\x33\xd5\xfc\x66\x76\x56\x77\ +\x32\xcc\xa7\x0b\x3a\xe4\x3b\x80\x64\xca\x90\xac\xf0\x1c\x8c\x6a\ +\xdd\x39\x04\x14\x2a\xb9\x1c\x52\xbe\x0c\x6a\x54\xad\xa4\x78\x0e\ +\xd7\xa8\x52\xd1\x6d\x2e\xf7\x94\x08\x7a\xff\xe1\xe3\x38\x78\xec\ +\x14\x0e\x1d\x3d\x09\xba\x63\x38\x46\xfc\x36\x07\xe2\xbc\xcc\xe6\ +\xf7\x73\xb3\x35\xdc\xb1\xb9\x3f\xe8\x95\x6f\x01\xf2\xf7\x8e\x32\ +\xce\x52\xdf\x64\xb2\x4e\x60\x0c\x4f\x38\x23\x48\xea\x4b\x55\x67\ +\x09\x2c\x65\x4a\x05\x82\xb2\xd3\x97\x0a\x2c\xa6\x7c\xba\x92\xe8\ +\xe5\xbf\x7c\x35\x09\x64\xcc\xa3\x7f\x1f\x38\x72\xe2\xef\x60\x25\ +\x47\x9f\xcb\x81\xb3\x9c\xf3\xa9\x69\xde\xe6\xe9\xf3\xa6\x58\x92\ +\x1c\x1d\x27\x2f\xf4\xcb\xf7\x00\xc9\x5c\x44\xd2\x78\xf9\xa6\x5b\ +\x9f\x62\x9c\x8f\x05\x63\x21\x32\x17\xb7\x64\xf1\xa2\x28\xf9\x17\ +\x60\x02\x8b\x15\x55\xa2\x1e\xfd\xfd\xfd\x94\x4f\x32\x58\x3e\xf8\ +\xf4\x43\xd1\xc2\x85\x90\x76\xff\x3e\xa8\xc0\x27\x1d\x8b\x28\x74\ +\xf5\xe1\xcf\xe4\x94\xbb\xb8\x9a\x74\x43\x01\x04\x55\xcd\xd5\x63\ +\xa3\x30\x32\x0f\x0e\xbe\x1c\x9c\x7f\x91\x18\x3f\x79\x81\x91\x7e\ +\x79\xb9\xad\x07\x20\xb6\xab\xcb\x46\x44\x4e\xea\xcc\x38\x1b\x4b\ +\xc7\x2f\xc6\x58\xde\xb6\x1e\x72\x5c\x06\xf8\x8c\xfb\x56\xeb\xb4\ +\xef\xa6\xbd\xe9\xc0\x05\x25\x2f\xc3\xc3\x73\xc4\xd2\x5c\x5d\x2a\ +\x38\xea\xc5\xac\x23\x18\x30\x08\x40\xde\x49\xc2\x45\x97\x6e\xf0\ +\xf9\x9c\xb3\xf9\xb3\xa7\xc6\xfc\x94\xb7\x5f\x71\xe7\x66\xe7\xd9\ +\x41\x74\xca\x6f\x44\xa4\xa5\x1c\x83\x75\x18\x80\x01\x0c\x68\xae\ +\xb3\x9b\x1b\x35\xe3\xb7\x39\xc7\x42\x0f\x28\x8c\x2d\x89\x07\x20\ +\xc6\xe4\xa5\xb4\x1e\x39\xe6\xb5\xb2\x19\x5e\xe6\x01\x8c\xa1\x2f\ +\x03\x6f\x0a\xb0\x42\x0e\x0c\xe3\xf2\x2e\x9c\xe3\x38\x80\x0d\x1c\ +\x98\x3b\x3b\x3e\x66\x99\xcb\x1f\x98\x07\x1f\xe0\x01\x88\x84\x45\ +\x1d\x3e\xd6\x52\xd9\x64\xb6\x36\xe0\x8c\xd7\x67\x60\x0d\x18\xe7\ +\xf5\xc1\x58\x59\x09\x43\xeb\x1e\x82\x73\xec\x66\x8c\xef\xe6\x9c\ +\xed\xb6\x72\xd3\x2e\xbf\xbb\x77\x76\xcd\x98\xf1\x9e\x7d\x4f\x43\ +\xdd\x4f\xc8\x9f\x0d\x3d\x00\x71\xd1\xba\x8f\x1c\xff\x4a\x09\x2b\ +\x33\xd7\x61\x30\x55\xe1\x40\x45\xc6\x50\x09\xe0\x15\x38\x47\x25\ +\xc6\x58\x45\xa3\x8f\xe5\x9c\xdf\x64\x8c\x51\x7a\xce\x53\x1c\xfc\ +\x14\x38\x4e\x71\xc6\x4f\x32\xab\xd7\xf1\xc4\xa9\x96\xdf\x8d\x8e\ +\xe7\x69\xaf\x4f\x02\x1e\x80\xe8\x93\x93\xf4\x56\xe1\x13\x5e\xaf\ +\x60\xb5\x5a\xcb\x33\x70\x4d\xb7\x17\x93\xd9\x2b\x89\x7b\x27\x1f\ +\x4b\xf8\xe0\x83\x14\xe9\x4c\x78\x06\xb4\x2b\x01\x0f\x40\xec\x8a\ +\xc8\xd3\x20\x3f\x4b\xc0\x03\x90\xfc\xbc\xfa\x9e\xb9\xdb\x95\x80\ +\x07\x20\x76\x45\xe4\x69\x90\x9f\x25\xe0\x01\x48\x7e\x5e\x7d\xcf\ +\xdc\xed\x4a\xc0\x03\x10\xbb\x22\xf2\x34\xc8\xcf\x12\xf0\x00\x24\ +\x3f\xaf\xbe\x67\xee\x76\x25\xe0\x01\x88\x5d\x11\x79\x1a\xe4\x67\ +\x09\x78\x00\x92\x9f\x57\xdf\x33\x77\xbb\x12\xf0\x00\xc4\xae\x88\ +\x3c\x0d\xf2\xb3\x04\x3c\x00\xc9\xcf\xab\xef\x99\xbb\x5d\x09\x78\ +\x00\x62\x57\x44\x9e\x06\xf9\x59\x02\x1e\x80\xe4\xe7\xd5\xf7\xcc\ +\xdd\xae\x04\x3c\x00\xb1\x2b\x22\x4f\x83\xfc\x2c\x01\x0f\x40\xf2\ +\xf3\xea\x7b\xe6\x6e\x57\x02\x1e\x80\xd8\x15\x91\xa7\x41\x7e\x96\ +\x80\x07\x20\xf9\x79\xf5\x3d\x73\xb7\x2b\x01\x0f\x40\xec\x8a\xc8\ +\xd3\x20\x3f\x4b\xc0\x03\x90\xfc\xbc\xfa\x9e\xb9\xdb\x95\xc0\xff\ +\x03\x43\xa4\x5e\x13\x9a\xad\xfc\x01\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x0a\x9f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x0a\x66\x49\x44\x41\x54\x78\x5e\xed\x9d\x4d\x88\x56\x55\ +\x18\xc7\xcf\xc5\x19\xf3\x73\x4c\x2b\x0b\x29\x2b\x0b\x25\x0c\xdc\ +\xb8\x48\x5d\x69\x04\xe9\xae\x45\x14\x41\x24\xd1\x07\x6d\x6a\x93\ +\x10\x7d\x41\xd8\x42\xc8\xa0\x22\x68\xd1\x22\xa5\x4d\xae\x0a\x02\ +\x15\xa2\x8c\x28\x6b\x51\x0b\x21\x17\x11\x35\x95\x65\x64\xf9\x95\ +\x5f\xa3\x33\x7a\xe3\x8e\x8e\x8d\xfa\xce\x9c\xfb\x9e\x73\x9f\xf7\ +\x3e\xe7\x3c\xbf\x17\x44\x1c\xce\x79\xee\x73\xfe\xcf\xff\xe7\xff\ +\x7d\x9d\x7b\xc7\xc2\x5d\x78\xad\x59\xb7\xfe\x17\xe7\xdc\xcd\x63\ +\x7f\xd6\xf2\xfb\xcb\x2f\x3c\xe5\x96\x2c\xb9\xbd\xe7\xed\x1c\x3c\ +\x78\xc0\x1d\x3b\x7a\xa4\xe7\xd7\xcd\xe9\x82\x1b\x37\x6d\x71\x43\ +\x43\xa7\x6b\x1f\xa9\x2c\xcb\x91\xd2\x15\xf7\x7f\xbe\x63\xcb\x47\ +\xb5\x37\x09\x2f\x2c\x00\xa4\xb3\xc2\x67\x47\x46\xdc\xef\xfb\x06\ +\x5d\x59\x96\xc2\x23\xc8\xb7\x7c\xb7\x80\x54\x4a\x68\x83\x04\x40\ +\x26\xf1\x27\x29\x12\x07\x6f\x08\x20\xda\x20\x01\x90\x49\x3c\x40\ +\x8a\xb4\x03\x88\x26\x48\x00\xc4\xe3\x01\x52\x24\x1c\x92\xd0\x04\ +\x19\xbb\xa2\x86\xb7\x5b\x00\xe2\x99\x3f\x29\xd2\x1e\x20\x1a\x92\ +\x04\x40\x6a\xcc\x9f\x14\xa9\x21\x52\x87\x25\xb1\x09\xa2\x21\x49\ +\x00\xa4\xc6\xec\x49\x91\x1a\x22\x09\x02\xd2\x66\x92\x00\x48\xcd\ +\xd9\x93\x22\x35\x85\x1a\xb7\xac\xa9\x04\x69\x33\x49\x00\xa4\xe6\ +\xdc\x49\x91\x9a\x42\x09\x02\xd2\x46\x92\x00\x48\x17\x73\x27\x45\ +\xba\x10\xcb\x39\xd7\x74\x82\xb4\x91\x24\x00\xd2\xc5\xcc\x49\x91\ +\x2e\xc4\x12\x04\xa4\x97\x49\x02\x20\xdd\xcd\xdc\x91\x22\xf5\x05\ +\x93\x4a\x90\x5e\x26\x09\x80\xd4\x9f\xf7\xe8\x4a\x52\xa4\xbe\x60\ +\xd2\x80\xf4\x22\x49\x00\xa4\xfe\xbc\x2f\xae\x24\x45\xea\x89\xd6\ +\x0b\x40\xa4\x21\x01\x90\x7a\xb3\xbe\x64\x15\x29\x52\x4f\xb4\x5e\ +\x01\x22\x09\x09\x80\xd4\x9b\xf5\x15\xab\x48\x11\xbf\x70\xbd\x04\ +\x44\x0a\x12\x00\xf1\xcf\xb9\xe3\x8a\xf3\x29\xf2\x8b\x2b\xcb\x73\ +\x81\x15\xf2\xdf\xd6\x6b\x40\xc6\x20\x29\x8a\xe2\xd1\xcf\xb6\x6f\ +\x79\xbf\x09\x85\x01\x24\x42\xc5\x23\x87\x0f\xba\xea\x17\xaf\xce\ +\x0a\xb4\x01\xc8\x05\x48\xca\xa2\x28\x1e\x69\x02\x12\x00\x89\x70\ +\xf7\xb9\x73\x67\xdd\xbe\x5f\xab\xa7\x0e\x49\x91\x4e\x32\xb6\x05\ +\x48\x93\x90\x00\x48\x04\x20\xd5\x56\x52\x64\x62\x01\xdb\x04\xa4\ +\x29\x48\x00\x24\x12\x10\x52\x44\x2f\x20\x4d\x40\x02\x20\x91\x80\ +\x90\x22\xba\x01\x89\x85\x04\x40\x1a\x00\x84\x14\xd1\xf5\x21\xbd\ +\x53\x37\x65\x59\x06\x7d\x70\x07\x90\x06\x00\x21\x45\xf4\x03\x12\ +\x9a\x24\x00\xd2\x10\x20\xa4\xc8\x95\x42\xb6\xfd\x21\xbd\x89\x24\ +\x01\x90\x86\x00\x21\x45\xd2\x00\xa4\xdb\x24\x01\x90\x06\x01\x21\ +\x45\x2e\x15\x53\x63\x82\x8c\x75\x58\xf7\x33\x09\x80\x34\x08\x08\ +\x29\x92\x0e\x20\x75\x93\x04\x40\x1a\x06\x84\x14\xf9\x5f\x50\xcd\ +\x09\x52\x37\x49\x00\xa4\x61\x40\x48\x91\xb4\x00\xf1\x25\x09\x80\ +\x08\x00\x42\x8a\x9c\x17\x35\x85\x04\xf1\x25\x09\x80\x08\x00\x42\ +\x8a\xa4\x07\xc8\x44\x49\x02\x20\x42\x80\x90\x22\x69\x25\xc8\x44\ +\x49\x72\x11\x90\xd5\x6b\xd7\x0f\x16\x85\xbb\x45\xc8\x2f\xc1\x65\ +\xdb\xfa\x1f\xa6\x82\x1b\x1e\xb7\xd1\xfa\x9d\xbe\x29\xbd\xc5\x1a\ +\x3f\xef\xd2\x95\x83\xbb\xb6\x6f\x5d\x54\x7d\x0d\x40\x9a\x20\x61\ +\x82\x1a\xd6\x53\x04\x40\x04\xcd\x35\x56\x3a\xe5\x04\xb1\xfe\x59\ +\x04\x40\x00\xc4\xab\x80\xe5\x14\x01\x10\xaf\x3d\xe2\x17\xa4\x9e\ +\x20\x96\x53\x04\x40\xe2\xfd\xef\xad\x90\x03\x20\x56\x53\x04\x40\ +\xbc\xf6\x8e\x5f\x90\x03\x20\x56\x53\x04\x40\xe2\xfd\xef\xad\x90\ +\x0b\x20\x16\x53\x04\x40\xbc\xf6\x8e\x5f\x90\x0b\x20\x16\x53\x04\ +\x40\xe2\xfd\xef\xad\x90\x13\x20\xd6\x52\x04\x40\xbc\xf6\x8e\x5f\ +\x90\x13\x20\xd6\x52\x04\x40\xe2\xfd\xef\xad\x90\x1b\x20\x96\x52\ +\x04\x40\xbc\xf6\x8e\x5f\x90\x1b\x20\x96\x52\x04\x40\xe2\xfd\xef\ +\xad\x90\x23\x20\x56\x52\x04\x40\xbc\xf6\x8e\x5f\x90\x23\x20\x56\ +\x52\x04\x40\xe2\xfd\xef\xad\x90\x2b\x20\x16\x52\x04\x40\xbc\xf6\ +\x8e\x5f\x90\x2b\x20\x16\x52\x04\x40\xe2\xfd\xef\xad\x90\x33\x20\ +\xb9\xa7\x08\x80\x78\xed\x1d\xbf\x20\x67\x40\x72\x4f\x11\x00\x89\ +\xf7\xbf\xb7\x42\xee\x80\xe4\x9c\x22\x00\xe2\xb5\x77\xfc\x82\xdc\ +\x01\xc9\x39\x45\x00\x24\xde\xff\xde\x0a\x16\x00\xc9\x35\x45\x00\ +\xc4\x6b\xef\xf8\x05\x16\x00\xc9\x35\x45\x00\x24\xde\xff\xde\x0a\ +\x56\x00\xc9\x31\x45\x00\xc4\x6b\xef\xf8\x05\x56\x00\xc9\x31\x45\ +\x00\x24\xde\xff\xde\x0a\x96\x00\xc9\x2d\x45\x00\xc4\x6b\xef\xf8\ +\x05\x96\x00\xc9\x2d\x45\x00\x24\xde\xff\xde\x0a\xd6\x00\xc9\x29\ +\x45\x00\xc4\x6b\xef\xf8\x05\xd6\x00\xc9\x29\x45\x00\x24\xde\xff\ +\xde\x0a\x16\x01\xc9\x25\x45\x00\xc4\x6b\xef\xf8\x05\x16\x01\xc9\ +\x25\x45\x00\x24\xde\xff\xde\x0a\x56\x01\xc9\x21\x45\x00\xc4\x6b\ +\xef\xf8\x05\x56\x01\xc9\x21\x45\x00\x24\xde\xff\xde\x0a\x96\x01\ +\x49\x3d\x45\x00\xc4\x6b\x6f\x16\xa0\x40\x7a\x0a\x24\xf5\x3f\x4c\ +\xa5\x27\x2f\x1d\xa7\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\ +\x44\xe5\xa5\x78\xea\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\ +\x54\x5e\x8a\xa7\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\ +\xe5\xa5\x78\xea\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\ +\x5e\x8a\xa7\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\ +\xa5\x78\xea\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\ +\x8a\xa7\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\ +\x78\xea\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\ +\xa7\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\ +\xea\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\ +\xae\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\xea\ +\x0a\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\xae\ +\x00\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\xea\x0a\ +\x00\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\xae\x00\ +\x80\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\xea\x0a\x00\ +\x48\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\xae\x00\x80\ +\xa4\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\xea\x0a\x00\x48\ +\xea\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\xae\x00\x80\xa4\ +\x3e\x41\xfa\x17\x55\x00\x40\x44\xe5\xa5\x78\xea\x0a\x00\x48\xea\ +\x13\xa4\x7f\x51\x05\x00\x44\x54\x5e\x8a\xa7\xae\x80\x2a\x40\xd6\ +\xad\x9a\x96\xba\x9e\xf4\xdf\x90\x02\xc7\x87\x4a\xf7\xc5\x77\xa7\ +\x1b\xaa\x16\x5e\x46\x0d\x20\x37\xce\x9f\xe2\x5e\x7f\xe8\xe3\xf0\ +\x93\xb0\x33\x2b\x05\xce\xf4\xdd\xea\x1e\xde\x7c\x47\xeb\x67\x02\ +\x90\xd6\x47\x40\x03\x9d\x14\x00\x90\xcb\x54\x21\x41\x00\x65\xbc\ +\x02\x00\x02\x20\x10\x31\x89\x02\x00\x02\x20\x00\x02\x20\xf5\x3d\ +\xc0\x5b\xac\xfa\x5a\x59\x58\x49\x82\x90\x20\x16\x7c\x1e\x7c\x46\ +\x00\x01\x90\x60\xf3\x58\xd8\x08\x20\x00\x62\xc1\xe7\xc1\x67\x04\ +\x10\x00\x09\x36\x8f\x85\x8d\x00\x02\x20\x16\x7c\x1e\x7c\x46\x00\ +\x01\x90\x60\xf3\x58\xd8\x08\x20\xc2\x80\xf4\xcd\xbe\xd3\x4d\x9d\ +\x7f\x6f\xab\x5e\x1a\x3e\xfc\xb5\x1b\x3e\xf4\x55\xab\x3d\xa4\x7a\ +\x71\x00\x11\x04\x64\xe6\xe2\x8d\x6e\xfa\xcd\x4f\xa8\xf0\xc6\xe9\ +\x03\x3b\xdc\xf1\xbd\xcf\xb8\x72\xe4\xa8\x8a\x7e\x52\x69\x02\x40\ +\x84\x00\xa9\xc0\xa8\x00\xd1\xf4\x3a\xf5\xdb\xbb\xee\xc4\x0f\x2f\ +\x6a\x6a\x49\x7d\x2f\x00\x22\x04\xc8\xd5\x77\x7d\xea\xaa\xb7\x57\ +\xda\x5e\xff\x7c\x72\xbd\xb6\x96\x54\xf7\x03\x20\x42\x80\x5c\x7b\ +\xcf\x5f\x2a\x07\x7f\xe4\x9b\xbb\xdd\xc8\xb1\xef\x55\xf6\xa6\xb1\ +\x29\x00\x11\x02\xe4\x9a\xd5\x3f\xba\xa2\x6f\x40\xdd\xcc\x0f\xee\ +\x5a\xcc\xe7\x90\x2e\xa6\x02\x20\x42\x80\xcc\x5c\xf2\xaa\x9b\xbe\ +\xf0\xf1\x2e\x46\x21\xbf\x74\xf8\xf0\x6e\x77\xf4\xdb\xfb\xe4\x2f\ +\x94\xd1\x15\x00\x44\x08\x90\xa2\x6f\x8e\x9b\xb3\xfc\x43\xd7\x37\ +\x7b\xa9\x0a\xbb\x94\x23\xff\xba\x23\xdf\xac\x71\x67\x4f\xed\x53\ +\xd1\x4f\x2a\x4d\x00\x88\x10\x20\x55\xd9\x0a\x92\xe9\x0b\x9f\x70\ +\xfd\xf3\x56\xba\xfe\xb9\x2b\x5b\xf1\xc4\xc8\xb1\xbd\xa3\x9f\x39\ +\x4e\xfc\xf0\x12\x6f\xad\x02\x26\x00\x20\x82\x80\x04\xcc\x83\x2d\ +\xca\x14\x00\x10\x00\x51\x66\x49\x5d\xed\x00\x08\x80\xe8\x72\xa4\ +\xb2\x6e\x00\x04\x40\x94\x59\x52\x57\x3b\x00\x02\x20\xba\x1c\xa9\ +\xac\x1b\x00\x01\x10\x65\x96\xd4\xd5\x0e\x80\x00\x88\x2e\x47\x2a\ +\xeb\x06\x40\x00\x44\x99\x25\x75\xb5\x03\x20\xc2\x80\x54\x77\xf4\ +\xf6\xcf\x5d\xe1\x8a\xfe\x39\xba\x26\x3f\x49\x37\xe5\xf0\x51\x77\ +\xe6\xef\x9d\xde\xef\xba\x57\xdf\x08\xed\x9f\xb7\x62\xf4\xae\xe5\ +\xea\x9b\x91\xc3\x87\xbe\xce\xee\x9b\x91\x00\x22\x08\x88\xa6\x07\ +\xa6\x42\xe8\x3c\xf9\xf3\x6b\xee\xe4\x4f\x9b\x3b\x6e\xed\x9f\xb7\ +\xca\x0d\x2c\x7b\x6f\xf4\x6e\x81\xb1\x57\xf5\x30\x56\xf5\x50\x56\ +\xf5\x70\x56\x2e\x2f\x00\x11\x02\x44\xe3\x03\x53\x21\xa6\x3d\xb6\ +\x67\xfd\x15\x86\x9f\x32\xfd\x26\x57\x3d\xef\x32\x1e\x8e\xf1\xb5\ +\x0f\x7f\xb9\xdc\x9b\x3e\x21\xbd\xb4\xb1\x07\x40\x84\x00\xd1\xfa\ +\xc0\x54\xb7\x26\xeb\x74\x07\xf0\x8c\x45\x1b\xdc\x8c\xdb\x9e\x9d\ +\xb0\x54\x4e\x4f\x2e\x02\x88\x10\x20\x5a\x1f\x98\xea\x16\x90\x6a\ +\xfd\xe5\x4f\x21\x56\x77\x29\x4f\x76\xf3\x65\x4e\xb7\xd5\x03\x88\ +\x10\x20\x5a\x1f\x98\xea\x16\x90\xea\x6e\xe0\xea\x36\xf9\xf1\xaf\ +\x81\x65\x5b\x27\xfd\x49\x2d\x67\x0e\xec\x74\xff\xee\x79\xa4\xdb\ +\x4b\xa9\x5c\x0f\x20\x42\x80\xcc\x5a\xfa\x96\x9b\xb6\xe0\x01\x95\ +\x43\xef\xa6\xa9\x4e\x6f\x97\xa6\x2d\x78\xd0\xcd\x5a\xfa\xe6\x84\ +\x65\xaa\x0f\xea\x43\xfb\x3f\xe8\xe6\x32\x6a\xd7\x02\x88\x10\x20\ +\xda\x1e\x98\x0a\x71\x60\x95\x1e\xd5\x13\x88\x9d\x7e\x54\xd0\x44\ +\x7f\x01\x0c\xed\xdf\xe6\x8e\xef\x7d\x3a\xe4\x72\x2a\xf7\x00\x88\ +\x10\x20\x55\xd9\x0a\x92\x19\xb7\x6d\x18\x7d\xaa\xb0\xad\x07\xa6\ +\x42\x5c\x57\x7d\x86\x18\x3e\xb4\xdb\x55\xff\xcc\x3b\xd9\xab\x4a\ +\x92\xab\x16\x3c\x30\x7a\xb6\x6a\xcf\xe9\xfd\xdb\xb2\x49\x8e\xb1\ +\x73\x03\x88\x20\x20\x21\xe6\x64\x8f\x2e\x05\x00\x04\x40\x74\x39\ +\x52\x59\x37\x00\x02\x20\xca\x2c\xa9\xab\x1d\x00\x01\x10\x5d\x8e\ +\x54\xd6\x0d\x80\x00\x88\x32\x4b\xea\x6a\x07\x40\x00\x44\x97\x23\ +\x95\x75\x03\x20\x00\xa2\xcc\x92\xba\xda\x01\x10\x00\xd1\xe5\x48\ +\x65\xdd\x00\x08\x80\x28\xb3\xa4\xae\x76\x00\x04\x40\x74\x39\x52\ +\x59\x37\x00\x02\x20\xca\x2c\xa9\xab\x1d\x00\x01\x10\x5d\x8e\x54\ +\xd6\x0d\x80\x5c\x36\x90\x1b\xae\x9b\xea\xde\x78\xf2\x0f\x65\x63\ +\xa2\x9d\xb6\x14\x38\x3e\x32\xcf\x3d\xb6\x69\x4a\x5b\x97\xbf\x78\ +\xdd\xd2\x95\x83\xbb\xb6\x6f\x5d\x54\x7d\xa1\x18\xfb\xea\xea\xb5\ +\xeb\x07\x8b\xc2\xdd\xd2\xcb\xee\x06\x06\x66\xb9\x77\xde\x7e\xa5\ +\x97\x97\xe4\x5a\x8a\x15\xd8\xf7\xfb\x9f\xee\xb9\xe7\x3b\xff\xe0\ +\x8a\x5e\xb6\x0d\x20\xbd\x54\x9b\x6b\xd5\x56\x00\x40\x2e\x93\x8a\ +\x04\xa9\xed\x1d\x13\x0b\x01\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\ +\x20\xa1\xde\x31\xb1\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\ +\x12\xea\x1d\x13\xfb\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\ +\xa1\xde\x31\xb1\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\ +\xea\x1d\x13\xfb\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\ +\xde\x31\xb1\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\ +\x1d\x13\xfb\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\ +\x31\xb1\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\x1d\ +\x13\xfb\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\x31\ +\xb1\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\x1d\x13\ +\xfb\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\x31\xb1\ +\x0f\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\x1d\x13\xfb\ +\x00\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\x31\xb1\x0f\ +\x40\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\x1d\x13\xfb\x00\ +\x04\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\x31\xb1\x0f\x40\ +\x00\xc4\x84\xd1\x43\x0f\x09\x20\x00\x12\xea\x1d\x13\xfb\x00\x04\ +\x40\x4c\x18\x3d\xf4\x90\x00\x02\x20\xa1\xde\x31\xb1\x0f\x40\x00\ +\xc4\x84\xd1\x43\x0f\xa9\x11\x90\xff\x00\x31\x39\xd5\x6e\x03\xe2\ +\xc6\xa2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x27\x8d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc8\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xad\x58\xae\x9e\ +\x00\x00\x20\x00\x49\x44\x41\x54\x78\x5e\xed\x5d\x67\x78\x55\xc5\ +\xd6\x7e\x67\x9f\xf4\x84\x12\x7a\x2f\xa1\xa7\x80\x08\x8a\x82\x28\ +\x48\xb9\x2a\x02\x09\x4a\x4d\x40\xd1\x6b\x41\x04\xb1\x60\xbf\x88\ +\xe2\x55\x51\xf0\xb3\xa3\x28\x5c\x95\x04\x50\x84\x04\x50\x11\x31\ +\x01\x15\x10\x50\x44\x49\xa1\x43\x20\xf4\x5e\x42\xfa\xd9\xf3\x3d\ +\xb3\x43\x62\x42\xce\x9e\x5d\x4f\x92\x93\xcc\x3c\xf0\x03\xce\xac\ +\x99\x35\xef\xec\x77\xcf\xac\x99\xb5\xd6\x26\x10\x45\x20\x50\x05\ +\x11\x88\x09\x1d\xd2\x16\x0e\xd2\x8f\x42\xea\x0f\xd0\x08\x02\xd2\ +\x81\x52\x9c\x05\xc1\x31\x80\xfe\x2e\xe5\x39\x5f\x59\xb0\x6b\xe5\ +\x01\xad\xa1\x13\xad\x0a\xe2\x77\x81\x80\x27\x20\x30\xb6\x73\x54\ +\x03\x4a\x31\x00\x94\xf6\xa5\x20\xfd\x09\x41\x4b\x2d\xbd\xa9\x4c\ +\x9f\x89\x4b\x4d\x78\x93\x57\x4f\x10\x44\x0b\x45\xf1\x7b\xa5\x44\ +\xe0\xbe\x0e\x43\x6a\xe4\x39\xd0\x97\x4a\x8e\x7e\x20\xe8\x47\x80\ +\x30\x53\x8a\xca\xf4\xee\xd8\xd4\x84\xa5\x6a\xb2\x82\x20\xa6\x50\ +\x15\x42\xe5\x8d\xc0\xed\x6d\x6f\xf7\x0d\xf6\xf5\xee\x49\x48\x21\ +\x21\x00\x5c\x47\x00\x87\x75\x3d\xe8\xf9\x00\x9f\x8c\x06\x73\xb7\ +\x6e\xcd\x77\xd5\x96\x20\x88\x75\x84\x45\x0b\x6e\x40\x60\x3a\x20\ +\xed\x09\x1b\xd6\x0d\x12\xed\x07\xb0\xbf\xa4\x17\x01\xfc\xdd\xd0\ +\x15\x64\x19\xa3\x17\xa6\xc6\x2f\x16\x04\x71\x07\xba\xa2\x4d\xdb\ +\x10\x18\x1b\x36\x74\xb0\x2c\x49\xe3\x40\x71\x13\x21\xa8\x03\xc0\ +\xc7\xb6\xc6\x39\x0d\x51\x4a\x57\xc7\xa5\x24\xdc\x26\x08\x52\x1e\ +\x68\x8b\x3e\x74\x23\x30\x2a\x74\x48\x57\x89\x38\x1e\x21\x04\xb7\ +\x5e\x31\xaa\xff\xd9\x32\x51\x00\xe5\xb4\xbf\xa1\xa0\x05\x67\xb3\ +\x73\x83\x56\xed\x5d\x95\x7b\xb5\xf2\xe5\xa4\x82\x6e\xcc\x44\xc5\ +\x2a\x8c\xc0\xd8\x90\xe1\x2d\x10\x98\x3f\x91\x82\xdc\x41\x41\xdb\ +\x13\x10\xd5\x15\x82\x52\x0a\x42\xca\xf1\xf1\xa4\x18\x18\x9b\x12\ +\xbf\x46\x10\xa4\x0a\x3f\x80\x95\x6d\x68\x91\xad\x22\x6b\x07\x05\ +\x92\x87\x28\xa1\x43\x09\x41\x67\x0a\x12\xa8\xf7\x91\xb7\x6b\x01\ +\xa9\xd3\xb0\x2e\x3a\xf7\xea\x8a\x75\xcb\x7e\xe2\xc2\x43\x65\xbc\ +\x11\x97\x1a\xff\x9c\x20\x48\x65\x7b\x8a\xaa\x90\x3e\xc3\x11\xea\ +\xe3\x1f\xde\x36\x46\x26\xd2\x28\x0a\x74\x27\x14\xc1\x30\xbb\x0a\ +\x50\x0a\x33\xb2\x35\x82\x6b\x22\xf4\xfa\x08\x84\xf5\xe8\x8c\xb0\ +\x1b\x3a\xa3\x41\xb3\x86\x0a\xc2\xcf\x0d\x9b\x82\xc3\x7b\x0f\xa9\ +\xa2\x4d\x41\xb7\xc6\x25\x27\x74\x17\x04\xa9\x42\x0f\x64\x25\x18\ +\x0a\x89\x0e\x8f\x1a\x44\x40\xef\x65\xa7\x4c\x94\xd0\x86\xc4\xcc\ +\x53\x6d\x61\x20\xbe\xfe\x7e\xe8\xd4\x3d\x0c\xa1\x37\x74\x46\x58\ +\x8f\x08\x34\x6f\xd7\xd2\xe5\xd6\x2c\x76\xe6\x3c\xac\x8e\xfb\x4e\ +\x9d\x20\x94\x52\x4a\xf2\xeb\x2e\x4c\xfe\xee\x5c\xc9\x4a\x7a\x57\ +\x3c\x0b\x43\x10\xa2\x55\x09\x81\x31\x11\xc3\x42\x88\x4c\xfb\x81\ +\xb0\xbf\xe4\x6e\x7b\xee\x22\xd4\x10\x2a\xbb\xd1\x72\x78\x79\xa1\ +\x6d\x97\xf6\x85\x2b\x44\x8f\x08\xb4\x89\x68\x0f\x87\x97\xf6\x75\ +\xc8\xb6\x75\xbf\xe3\xed\xc9\xaf\x73\xa7\x42\xa6\xb8\x6b\x61\x4a\ +\xfc\x32\x41\x90\xaa\xf4\xc4\xba\x79\x2c\xc3\xdb\xde\x5e\xdf\xd7\ +\xd7\xb7\x3f\xbb\x9c\xa3\xca\x8d\x35\x69\x55\xd4\x25\x05\x05\x71\ +\xe3\x51\x13\x33\xd4\x25\x49\x42\xcb\x8e\xad\x11\xda\xa3\x70\xdb\ +\xd4\xe1\xda\x50\xf8\xfa\xfb\x1a\x1e\x75\x6e\x76\x0e\xfe\xdd\x63\ +\x0c\xdf\x0e\xa1\xf4\xa3\xb8\x94\x84\x89\x82\x20\x86\xe1\xad\x3e\ +\x02\xc3\x43\x87\x07\xf9\x48\x05\x7d\x94\x15\x02\x0a\x21\x22\x38\ +\xfb\x12\x53\x76\x82\x5e\x34\x63\x9e\x1e\x8f\x5e\x83\xfb\x22\xa8\ +\x56\x90\x5e\x11\x6e\xbd\xe9\xd1\xcf\x60\x5f\xf2\x1e\x4e\x1d\xba\ +\x3b\x36\x39\xa1\x83\x20\x88\x2d\x70\x57\x8d\x46\x86\xb7\xbf\xb3\ +\xa9\xaf\x9f\x14\x41\xa9\xd4\x0b\x14\xcc\x8d\xe3\x3a\x02\xe2\xa5\ +\x67\x74\xee\x3e\x8a\x9d\x1e\x37\x13\x6d\x22\xda\xe9\x51\x45\x57\ +\x9d\x25\xef\xc5\x61\xc5\x67\xaa\x6e\x57\x4a\x1b\x4e\xea\x6c\xb4\ +\x28\x65\xc5\x89\xa2\x06\x85\x0d\xa2\x0b\xda\xaa\x53\x69\x74\xfb\ +\xc1\xf5\x1c\x3e\x5e\xe3\x41\x68\x24\xa5\xa4\x33\x40\x83\x94\x87\ +\xc0\xcc\x69\x93\xc9\x93\x26\xd6\x5d\x7d\x2f\x2f\x9c\x2a\x28\xe0\ +\x02\xfb\xec\xdc\xe9\xca\x49\x94\x5d\x25\x6d\x73\x32\x5e\x7f\xe0\ +\x25\xfe\x36\x4b\xc6\xbd\x71\xa9\xf1\x5f\x08\x82\xd8\x85\x7a\x25\ +\x6f\xe7\xde\x56\x91\xb5\xf3\x6b\xd2\x31\x90\x71\x37\x20\x5d\x0b\ +\xd0\x5a\x57\x5f\xc0\x99\x5d\x09\x74\xcb\x51\x8a\x26\x3e\x3e\x68\ +\x1b\xe0\x87\xb6\x7e\x7e\x68\xe7\xe7\x07\x1f\x42\xf0\x64\xba\xfa\ +\xb1\x2b\x83\x75\xf2\xec\xa9\xb8\x6e\xc0\x8d\xb6\x21\x9c\x9f\x97\ +\x8f\x07\x6f\x8c\x46\x41\xbe\x3a\x31\x29\xa5\x0b\xe2\x52\x12\xc6\ +\x09\x82\xd8\x06\x7b\xe5\x6a\x88\xb9\x81\xe7\x78\x39\xa2\x24\xc8\ +\xa3\x29\x91\xae\x27\x40\x1d\x2d\x3b\x5a\xf7\x83\x7e\xd5\x50\xb5\ +\xe4\xea\x7b\x7b\x21\xaa\x6e\x1d\x85\x10\xfe\x0e\xa9\x0c\x50\x8f\ +\xee\x4b\xe7\x82\xf7\xc0\x2b\x8f\xe2\xe6\xc8\x5b\x6d\x05\xf8\xf5\ +\x7f\xbf\x84\xb4\x2d\xc9\xaa\x6d\x52\x4a\x4f\xc4\xa5\x24\x34\x12\ +\x04\xb1\x15\xf6\x8a\x6b\x4c\x31\xaa\xe1\xbc\x8d\x4a\x72\xb4\x04\ +\xd2\x93\x02\x0d\x8c\xee\x96\xcc\x9f\x46\xf1\xef\xbb\x43\x7c\x7d\ +\xf1\x44\xb3\xc6\xaa\xe0\x3c\x73\xe0\x20\x2e\xcb\xac\x0d\xd7\x65\ +\xcc\xd4\xf1\xb8\x7d\xec\x60\x5b\xc1\x5d\xf1\xe9\x37\x58\xf2\xfe\ +\x42\x6e\x9b\x84\x22\x74\x41\x4a\xfc\x0e\x65\xe7\x69\x6b\xef\xa2\ +\x31\xb7\x23\x30\xb8\xc9\xe0\x80\xa0\x60\xa9\x9f\x44\x48\x34\x21\ +\xe8\x4d\x81\xc6\x56\x2f\xe7\xcc\x98\x12\xcc\x85\x23\xb0\x56\x10\ +\x32\x76\x1f\x54\x1d\x73\x13\x1f\x6f\x3c\xdf\xbc\xa9\xea\xef\xd3\ +\x0f\x66\xe0\x74\x81\x53\xf5\xf7\x61\x13\x46\x22\x6a\xc2\x48\x5b\ +\x31\xdd\xb7\x7d\x37\xa6\xc7\x3c\xab\xd1\x26\x9d\x14\x9b\x9c\xf0\ +\x81\x20\x88\xad\xd0\xbb\xaf\xb1\xe8\x8e\x43\x23\x88\xb7\xf4\x24\ +\x0b\x27\x05\x21\x2d\xec\xee\x49\x0f\x41\xd8\x51\x6b\xa7\x22\x17\ +\x8e\x1e\x9d\xd1\xa8\x65\x63\x7c\xff\xf9\x72\x2c\x7a\xbb\xd8\x9e\ +\x2d\xa3\x56\xb0\xc3\x81\x19\xad\x9a\xab\xaa\x3b\x33\xe3\x28\x32\ +\xf2\xf2\x54\x7f\xbf\x6d\xec\x60\x44\x4f\x1d\x6f\xeb\x70\xd9\xb6\ +\xf0\x81\x1b\xc6\x20\x37\xbb\x8c\xe3\x6e\x71\x3f\x14\x58\x1e\x97\ +\x1c\x1f\x29\x08\x62\x2b\xf4\xf6\x36\x16\x1d\x31\x34\x02\x32\x29\ +\x0a\x27\x1d\x00\x42\x8c\xdf\x8e\xe9\x54\xc9\x95\x2d\xc1\x2e\xe3\ +\xd8\xa5\x1c\xbb\x9c\x63\x97\x74\xec\xb2\xee\x6a\xe3\x7e\xed\x37\ +\x6b\x30\xff\x95\x39\xaa\xbd\xf8\x11\x82\x59\x21\xea\xa1\xe1\xef\ +\x1e\x39\x8e\x3d\x39\x39\xaa\xf2\xcc\xfe\x60\x76\x88\xdd\xe5\xed\ +\x49\xaf\x61\xdb\xcf\x7f\x70\x9a\xa5\x97\x63\x93\x13\x6a\x00\xa0\ +\x62\x8b\x65\x37\xfa\x26\xdb\x1b\x1b\x7a\x67\x0b\x4a\x1c\x03\x41\ +\x24\x46\x0a\x66\x99\x36\x28\x6a\x4a\xcb\x18\x36\xd9\xe5\x3f\x6f\ +\x4c\x0a\x78\x79\x3b\x10\x12\xde\xee\x8a\x93\x5f\x04\xda\x75\xe9\ +\x00\xe6\xd6\xc1\x2b\x9b\x57\x6f\xc0\x07\x53\x67\x73\xeb\x7c\xd0\ +\xa6\xf8\xe2\xbd\x4c\xbd\xb9\xc7\x4e\x60\x7b\x56\xb6\xaa\x3c\x3b\ +\xc1\x62\x27\x59\x76\x97\xd5\xb1\xdf\x22\xf6\xcd\xf9\xdc\x66\x65\ +\x27\xed\xb1\x30\x2d\x61\x8b\x20\x88\xdd\xe8\xeb\x6c\x6f\x5c\xc7\ +\xa8\xba\x4e\x2f\xb9\xbf\x42\x08\xe5\xc6\x1a\x21\xaa\xa2\x76\xf9\ +\x7e\xab\x74\xd0\xa1\x6b\x27\x4c\xfd\xf8\x3f\x60\x8e\x7f\x46\xca\ +\xf6\x0d\xdb\xf0\xd6\x84\x19\x5c\x91\x37\x5b\xb5\x40\x80\x8b\x13\ +\x2c\x26\xb4\xe0\xe4\x29\x6c\xbe\x74\x59\x55\x3e\xfc\x86\x2e\x78\ +\x66\x2e\xff\xde\xc2\x88\xbe\x45\x75\x0f\xef\x39\x84\xe7\xee\x9a\ +\xc2\x15\xa5\x94\x3e\x1f\x97\x92\xf0\xba\x20\x88\x19\x84\x4d\xc8\ +\xb0\xd3\x26\x3f\xe4\xdf\x4d\x1d\xa4\x33\xbb\xb1\xa6\x2c\x57\x93\ +\xce\x88\x20\x3d\x36\x82\x09\x95\x8a\x45\x58\xbc\xc4\xd4\x39\xff\ +\x31\xdc\xc4\xde\xed\xbb\xf1\xb2\x86\xc1\xfb\x4a\x8b\xa6\xa8\xe3\ +\xed\xed\xb2\xed\xa5\xa7\xcf\x60\xed\x85\x4b\xaa\xfd\x86\x84\xb7\ +\xc5\xcb\x0b\xb9\x59\x79\x0c\xeb\x5c\x24\xf0\xd0\x4d\x63\x91\x75\ +\x51\x9d\x9c\x00\x92\x62\x93\xe3\xd9\x8b\x4b\x14\x77\x20\x70\x6f\ +\xab\x3e\x7e\xf9\x35\x82\xc7\x02\x74\x04\xa1\xe8\x46\x81\x60\xc5\ +\xb1\xcf\x0c\xe2\x26\x57\x10\x5f\x42\xd0\xc6\xdf\x0f\xe7\xf3\x0b\ +\x70\x34\xdf\x65\xd2\x0e\x65\xe8\x6c\x3b\x35\x6d\x01\xdf\xd3\xd5\ +\x15\x46\x47\xf7\x1f\xc6\x33\x91\x93\xb9\xf0\x3d\xd7\xac\x09\x9a\ +\xfa\xba\x0e\x1c\xfc\xee\xcc\x79\xac\x3a\x7f\x5e\x55\xbe\x51\xab\ +\x26\x78\x6b\x85\x72\x98\x64\x7b\xf9\xf0\xe9\xb7\xb1\xe9\x87\xf5\ +\xea\xed\x52\x9a\x7b\x26\x27\xb7\x96\x99\xe9\xb2\x5d\xd9\xaa\xd0\ +\xe0\x74\xc0\x6b\x6f\xc7\xc8\xe1\xb2\x97\x34\x5a\x22\xf2\x0d\x00\ +\xea\x95\xf1\xdf\x30\xbb\x14\xe8\x94\x0b\x94\x24\xb4\x61\x37\xd5\ +\xfe\x85\x37\xd6\xcd\x7c\xbd\x15\xc3\xfa\x9b\x53\x67\xb0\xee\xa2\ +\xfa\x9b\xba\x69\x9b\xe6\x78\x23\xfe\x5d\xc3\xd3\x70\xfe\xd4\x39\ +\x4c\xea\x77\x3f\x57\x6e\x4a\x93\x46\x68\xab\xb2\x75\x4b\x3a\x7f\ +\x01\xcb\xce\x94\x0a\xbf\x28\xd5\x56\xed\x7a\xc1\x78\x3f\x69\x9e\ +\x61\xbd\xf4\x08\xac\x5b\xba\x06\xf3\x5e\x56\x3f\x60\x60\x6d\x50\ +\x27\xed\x2f\x08\xa2\x07\x4d\xd7\x75\xc8\xa8\xce\x43\x06\x7b\xcb\ +\x8e\x18\x99\xd2\x5e\x90\x74\xdc\x47\x98\x5c\x09\xf4\x88\x3d\xd8\ +\xa8\x01\x3a\x07\x06\xb8\xd4\xf4\xdb\xb3\xe7\xf0\xc3\xb9\x0b\xaa\ +\x23\x65\x77\x1a\xef\xae\xf9\xd4\x30\x12\xec\xa8\xf4\xdf\x3d\x46\ +\x73\xe5\x1e\x6e\xd4\x00\xe1\x2a\x7a\xfd\x76\xf1\x12\xe2\x4e\x9d\ +\x51\x95\xf7\xf1\xf3\xc1\xbc\x2d\x2e\xb3\xf1\x18\xd6\xf5\x6a\x81\ +\x53\x87\x4f\xe0\x89\x3b\x26\x70\xdb\xa1\x94\x0a\x1b\xc4\x00\xd2\ +\x24\xa6\x63\xe4\x2d\xd4\x0b\xf7\x01\xe4\x66\x02\xda\x1c\x84\x94\ +\xf5\x9f\xe0\x35\xa8\x73\x25\x30\xa0\x53\x71\x55\xde\x9b\x3a\xf1\ +\xfc\x05\xc4\x73\xde\xd4\x7e\x81\xfe\xf8\xf4\xb7\x38\x33\xdd\x62\ +\x5c\x97\xbb\xc0\x4e\xd9\xd4\xca\x3d\xf5\xeb\xe1\xba\x9a\xae\xdd\ +\xd5\xff\xca\xbc\x8c\xcf\x4e\x9c\xe2\xf6\xfb\xc5\x5f\xdf\x28\x31\ +\x21\x76\x97\xcc\x0b\x99\x78\x6a\xd0\x23\xb8\x7c\x31\x53\xb5\x69\ +\x0a\xba\x4a\xac\x20\x1c\xe4\x47\x85\x0e\xed\xe1\x20\xb8\x1f\x84\ +\xb0\x0b\xba\xd6\x96\xa3\xe7\x4c\x10\x84\x5d\xc8\x85\xdd\xd0\x05\ +\x89\x5f\xfd\x60\xfa\x4d\xbd\xf1\xc2\x45\x2c\x3c\x7d\x96\x2b\xbf\ +\x60\x7b\xa9\x40\x3a\xdd\xcf\xe3\x84\xde\xe3\xc0\x1e\x36\xb5\x32\ +\xb2\x5e\x1d\xf4\xae\x55\xd3\xe5\xcf\x3b\xb3\xb2\xf0\xc1\xb1\x93\ +\xdc\xbe\xe6\xfc\xf2\x05\x82\x6a\xb3\x2b\x09\x6b\x85\xad\x76\x3b\ +\xb7\xa6\x2a\x7e\x58\x29\xbf\xfd\x8d\x43\xbb\xf8\x7e\x60\xac\x37\ +\x4a\xb1\x41\x10\xa4\x04\xee\x8a\x61\x1d\x54\x6b\x26\x01\x19\x40\ +\x09\xda\xe9\x8d\x8b\xb0\x36\x75\xa5\xa5\x83\x1b\xd4\x29\x4e\x3a\ +\x10\x7e\x63\x17\xb0\x7f\xb3\x32\xbe\xdb\x08\xae\x17\x2a\xef\x4d\ +\xfd\x67\xe6\x65\xcc\xd7\x78\x53\xcf\xdd\x18\x0b\xff\x20\xd7\x5b\ +\x34\xde\xf8\xd8\x36\x85\x6d\x57\xd4\xca\x90\x3a\xc1\x18\x18\x5c\ +\xcb\xe5\xcf\x07\x73\x72\xf1\xd6\x91\x63\x5c\xf8\xde\xfe\x7e\x0e\ +\xea\x5f\x49\xbc\x60\x04\x67\x67\x41\x01\xf6\xfe\xbd\x1b\xa9\x9b\ +\xb7\x23\x75\x73\x32\xf6\x25\xef\x86\x93\xe3\xd6\xe2\xba\x6d\xba\ +\xa8\xda\x13\x64\x74\x44\xd4\x8d\x12\xc5\xad\x04\xb4\x3f\x05\xfa\ +\xe8\x3c\x79\x35\x32\x57\xa5\xeb\x5e\xb5\x8a\xb0\x87\x32\xf4\xba\ +\x70\xc5\x8d\x23\xfc\x86\xce\x60\x06\xb3\xab\x32\xb1\xcf\x78\x5c\ +\x3c\xab\x6e\x47\xf0\xde\xd4\x3b\xb2\xb2\xf1\xe1\x31\xf5\x87\x98\ +\xf5\xf7\xce\x8f\x73\x51\xb7\x51\x3d\xc3\xe3\x7a\x71\xc4\x93\x38\ +\xb8\x53\xfd\x2b\x02\x03\x6a\xd5\xc2\xd0\x7a\xc1\x2e\xdb\x3d\x99\ +\x97\x8f\x57\x32\x8e\x70\xfb\x7c\xf5\xeb\xd9\xca\x2d\xbe\x9e\x72\ +\x20\x6d\x1f\x58\xcc\x47\xca\xa6\xbf\xb1\xeb\xcf\x1d\xc8\xcf\x55\ +\x77\x63\xd1\xd3\x1e\x95\xe5\x89\xd5\x8e\x20\x63\x3b\x45\x85\x53\ +\x47\x61\x38\x29\x05\x6e\x21\x84\xb8\x5e\xff\xf5\x20\x68\xa2\x8e\ +\x97\x8f\x37\x3a\x5c\xdb\x49\xb9\xb1\x66\x84\x68\xd5\x29\x04\x44\ +\xc7\x1e\xfb\xa9\x3b\x27\xe2\xc4\x21\xf5\xb7\xed\xe0\x3a\xb5\xf1\ +\xaf\xe0\xda\x2e\x35\x4a\xcf\xce\xc1\xac\xa3\xc7\xb9\xda\xbe\xbe\ +\xec\x1d\x34\x6b\x6b\xdc\xcd\xeb\xb5\xfb\xa7\x61\xc7\xef\x29\xaa\ +\x6d\xf7\xae\x19\x84\x91\xf5\x5d\x13\xef\x92\xd3\x89\xe7\xd2\x33\ +\xb8\x7a\xbd\x30\x7f\x06\x3a\x76\x77\x9d\xb8\xfd\x58\xfa\x11\xa4\ +\x6e\x2a\x5c\x21\x98\x0e\x3c\x7b\xc2\xf8\x54\xd1\xac\x0b\x67\x9c\ +\xf5\xab\x3c\x41\x98\x0b\x87\x2c\x79\xf7\x57\x62\xac\x29\xfa\x11\ +\x42\x0a\x13\x25\xa9\x15\x13\x76\x82\x11\xf0\xcd\x3e\x88\xd3\x46\ +\x4d\x05\x7b\x43\xaa\x95\x01\xb5\x6b\x62\x68\xdd\xc2\xed\xd8\xd5\ +\xe5\x78\x5e\x1e\x5e\xcd\x38\xca\x55\x73\xda\x97\xaf\xa1\xdd\x35\ +\x1d\x8d\x0c\x45\xa9\xfb\xce\x63\x6f\x60\xeb\xda\x2d\xaa\x72\xdd\ +\x83\x02\x71\x6f\xc3\xfa\x2e\x7f\x97\x29\xc5\xe4\xfd\xea\xde\xc0\ +\x4c\xe8\xf1\x77\x9f\xc5\xb5\x7d\xaf\x57\xe4\xcf\x9d\x3c\xab\xd8\ +\x0f\x6c\xdb\xc4\x6c\x09\xf6\x6f\x77\x14\x96\x01\x88\x12\x32\x72\ +\x61\x72\xfc\x92\x2a\x47\x90\xd1\xa1\x83\xc3\x1c\x92\xf7\x44\x10\ +\xd9\x51\x18\x63\x4d\xda\x18\x01\xd1\xdd\x7e\x4f\x33\x16\xcf\x42\ +\xab\x50\x75\xaf\x12\x35\x5d\xdf\x78\x70\xba\xf2\xb6\x54\x2b\x37\ +\xd5\xa8\x81\x51\x0d\xea\xba\xfc\xf9\x42\x41\x01\x5e\x38\x78\x98\ +\x0b\xc3\xd4\x8f\xfe\x83\xce\x37\x75\x35\x02\x95\x52\xf7\x93\x17\ +\xdf\xc3\xfa\x15\xeb\x54\xe5\xc2\xfd\xfd\xf1\x70\x13\xf5\x77\xd2\ +\x94\x7d\xe9\xe0\x05\xde\x0e\x18\x7d\x87\x62\x3b\xa4\x6d\xd9\x8e\ +\xe3\x07\xf9\xf6\x8a\x61\xe5\x55\x5f\x92\x78\x3a\x36\x25\xfe\x2d\ +\xf6\xb3\xc7\x13\x24\xa6\xd3\xb0\xc6\xd4\x41\x27\x02\x74\x10\x01\ +\x3a\x59\xf5\x7a\x35\xb3\x80\xd4\x90\x24\x44\x04\x05\x82\x1d\x46\ +\xae\xe7\x5c\xc8\x31\xc0\x79\x5b\x06\xde\x04\xbf\xf7\xc4\x9b\xf8\ +\xfd\xa7\x4d\x9c\x37\x75\x00\xee\x6d\x58\xec\xdf\x58\xaa\x5e\xae\ +\x53\xd6\x0c\x6f\x9d\xf8\xe6\x13\xb8\xe1\xb6\x9b\x0c\x3f\x63\x0b\ +\xde\x98\x87\x1f\x17\xaa\x27\x64\xd3\x0a\x9a\x62\x5b\x2c\xb6\xd5\ +\x52\x7d\x56\xcd\x25\x58\x34\x3c\x0e\x26\x40\x29\x4d\xa3\x84\x4e\ +\x5d\x98\xbc\xfc\xfb\xa2\x06\x3c\x8e\x20\x85\x1f\x52\xf1\x79\x44\ +\x02\x19\x46\x09\xb9\x86\x00\x41\x2e\x69\x6e\xe6\x49\x2f\x3c\xda\ +\xd3\xcc\x5f\xe0\xcd\x5c\x38\xfc\x7c\xd1\x29\xc0\x1f\xa1\xfe\x01\ +\x68\xec\x5b\xe8\x6b\x74\x2a\x3f\x1f\x2f\x1f\xe2\x1b\x9d\x25\xb7\ +\x0c\x46\x66\xf1\xd3\x69\x1f\xe0\x97\x84\x24\x55\x91\x30\x7f\x7f\ +\x4c\xe0\xbc\xa9\x27\xed\x4b\x87\xfa\x6d\x05\x70\xdf\xb4\x09\xe8\ +\x7b\xf7\x00\x23\x2a\x29\x75\x97\x7e\xb8\x18\x09\x9f\x7c\xad\x2a\ +\xd7\xd8\xc7\x1b\x2f\xa8\x04\x4d\x65\x3b\x65\xbc\x7a\xf8\x08\x2e\ +\x18\x3e\x5d\x32\xac\x26\x47\x80\x66\x51\x8a\x5f\x09\xc1\xb2\xd8\ +\xe4\x84\xb9\x57\x57\xac\xf4\x04\x19\x0e\x38\x7c\x43\x87\x8c\xa2\ +\x0e\x47\x34\x01\xbd\x1e\x14\x75\x35\x9f\x60\xf6\xa0\x9b\x5d\x1e\ +\x35\x04\x43\x03\xfc\xf1\x60\xa3\xfa\xf0\x72\x71\x47\x78\xd9\x29\ +\xe3\x19\x8d\x44\x04\x13\x5e\x9f\x82\x9e\x83\x6e\x36\x3c\xc3\x71\ +\x6f\xfd\x0f\x3f\x2c\x58\xa9\x2a\xa7\xf5\xa6\xd6\x0a\x6f\x1d\xfd\ +\xc4\x3d\xb8\xe3\xde\xa1\x86\xf5\xfa\xfe\x8b\xe5\x58\x34\x5b\x5f\ +\xd0\x14\x8b\xae\x3d\x90\x93\x8b\xb4\xec\x2c\xec\xcc\xca\xc6\xa1\ +\xdc\x3c\x2e\x69\xaf\xbc\xd5\x6d\xcd\xf2\x4e\x29\xf2\x08\xa1\x9b\ +\x41\x91\xe8\x94\x49\x62\x0d\xff\x43\x9b\xd5\xbe\x2e\x55\x69\xb7\ +\x58\xa3\x3b\x45\x0d\x70\x78\xd1\xf1\x00\xe9\x4d\x41\x9b\x9a\x09\ +\x29\x35\x6d\x4b\x68\x2c\x21\x11\x01\xfe\x78\xa8\xb1\xeb\x3d\xb5\ +\x1e\xa3\xf3\x9e\xe7\x1f\x40\xff\x51\xb7\x1b\x7e\x10\xe3\xe7\x7c\ +\x85\x65\x73\xbe\x52\x95\xd3\x0a\x6f\x7d\xe9\xe0\x61\x9c\xe1\xa4\ +\xd9\x89\x7c\x68\x38\xee\x9a\xc8\x77\x1b\x71\xd5\xf9\xcf\xf1\x89\ +\xf8\xec\xa5\x0f\x55\xf5\x62\x0e\x93\x91\x75\x83\x91\x96\x9d\x83\ +\x5d\x59\xd9\xc8\xe3\xdc\xba\xbb\x6c\x44\xcf\x92\xce\x43\x93\x42\ +\x06\xc1\x5f\x94\xca\x89\x94\x22\xf1\xd2\x39\xf9\xd7\x95\x47\x57\ +\x66\xe9\x9d\x80\x4a\xb1\x82\x8c\x0c\x1f\xd4\xc9\x21\x7b\x4f\x22\ +\x12\x58\x8a\xcb\xd6\xb6\x5c\xd0\x19\x04\xb6\x45\x87\x56\xca\xd1\ +\x6b\xc6\x9e\x83\xca\x49\x89\x5a\x69\xeb\xe7\x8b\x29\x4d\xd5\x13\ +\x11\x3c\xbe\xff\x20\xf2\x39\x0f\xc1\x88\xc7\x62\x30\xf8\xfe\x61\ +\x7a\xe7\xa7\xb8\x1e\x5b\x3d\xd8\x2a\xa2\x56\xb4\xc2\x5b\xdf\xc8\ +\x38\x8a\xc3\x9c\xf0\xd6\x81\x63\x06\x61\xec\xb3\x7c\xc7\x43\x57\ +\x7d\x6f\xf9\x71\x23\xde\x7f\x6a\x96\xe1\xf1\xe8\x16\x30\x38\x8f\ +\x85\xab\x0e\x76\x02\x34\x89\x82\x24\xfa\x64\xd2\xa4\xcf\xd3\x13\ +\xd4\x5d\x86\x35\x14\xa9\x10\x82\x0c\x0f\x19\x5e\xcb\x37\xa0\xe0\ +\x41\x80\x8e\x01\x48\x47\x10\x18\x8b\xd4\xd1\x83\xae\x06\xb0\x2c\ +\x2d\x3e\x73\xe1\x60\x89\xc9\x18\x31\x8a\xd2\x5b\x6a\x6d\x65\x9a\ +\xf9\xf8\xe0\xd9\xe6\x4d\x54\x35\x78\x21\x3d\x03\x17\x38\x46\x27\ +\x23\x07\x23\x89\xd1\xc2\xec\x0f\x66\x87\xa8\x15\xed\xf0\xd6\x63\ +\xd8\x93\xa3\x1e\x87\xdd\x7b\x68\x5f\x3c\x38\x63\x92\x51\xb5\x94\ +\x83\x03\x76\x80\xe0\xae\xa2\x67\x27\x40\x29\xcd\x00\x41\x12\x5b\ +\x21\xf2\xe5\xbc\x35\x4b\xd2\xbe\xe7\x5f\xfa\x18\x50\xb6\x5c\x08\ +\xa2\xb8\x70\x04\xd4\x66\x1e\xaf\xca\x05\x1d\x08\xe9\x06\x50\x87\ +\x3b\x13\x1f\x5f\x6d\x84\xd4\xaa\x5b\xbb\x38\x01\x72\x44\xcf\x6b\ +\xc0\x3c\x58\x5d\x15\xad\xad\x4c\x1d\x2f\x07\x5e\x69\xa9\x9e\x88\ +\x60\xc6\xc1\x23\x38\x51\xa0\x1e\x7b\xc1\xb6\x57\x6c\x9b\x65\xb4\ +\xe8\x79\x10\xdf\x0b\x69\x09\x49\x25\xe7\xcf\xdc\xe3\x27\xb1\xfd\ +\xb2\xfa\xce\xa2\xdb\xad\x3d\x30\xe5\x9d\x67\x34\xd5\x62\x49\xa0\ +\x77\x6e\x4d\xbb\x72\x41\xb7\x5d\xb9\x45\x77\xa7\xf7\x81\x2b\x82\ +\x50\x4a\x4f\x13\x42\xd6\x52\x8a\x24\xea\x94\x12\x17\xee\x58\xca\ +\x4b\xb8\xab\x39\x26\x5e\x05\xb7\x10\x64\x38\x86\x3b\xfc\x42\xf3\ +\xba\x53\x46\x08\x16\x52\x4a\xd1\xb3\xcc\x2a\x61\x62\xe9\x34\x32\ +\x52\x2f\x1f\x2f\x44\xf4\xec\x5a\x9c\x26\x5f\xef\x2d\xb1\xd6\x56\ +\xc6\x5f\x22\x78\xab\xb5\x7a\x22\x82\x59\x87\x8f\x22\x9d\xe3\xe2\ +\xd0\xeb\xce\x5b\xf0\xf0\x6b\x8f\x19\x19\x8a\x52\x97\xdd\x81\xb0\ +\xbb\x10\x5e\xe1\x86\xb7\x9e\x38\x85\xcd\x99\xea\x11\x74\xec\xa3\ +\x33\xcf\x7d\xf6\x72\x99\xe6\x59\x16\xc2\xbd\xdb\x77\x21\x75\x53\ +\xb2\x72\x41\xb7\x3f\x65\x4f\x29\x9f\x26\xf3\x39\xb5\xf4\x41\xc0\ +\xda\x07\x25\x99\x04\xf4\x17\x10\x92\x28\x3b\x69\xd2\xc2\xb4\x04\ +\xb6\x07\xe6\x1d\xca\xe9\x6b\x5c\x47\x2d\xdb\x08\x12\x1d\x3a\x34\ +\x14\x12\xcb\xc2\x41\xfa\x83\xb9\x70\x00\xae\x3d\xd4\xae\x28\xe5\ +\x66\x7e\x60\xd8\x84\x51\x88\x9a\x30\x42\x07\x04\xa5\xab\x68\x6d\ +\x65\x18\x60\xef\x73\x12\x11\x7c\x70\xf4\x38\x76\x66\xab\x67\xea\ +\x60\xb7\xc2\xec\xa8\xd7\x68\x39\x90\xba\x17\xd3\x46\x3f\xcd\x15\ +\xe3\x85\xb7\x6a\x05\x4d\xb5\x0e\x6d\x83\x57\x16\xbf\x05\x2a\xcb\ +\x48\xdf\x79\xa0\x78\x85\xd8\xbd\x6d\x07\xf2\x72\xac\xf9\x34\x19\ +\x1d\xeb\x95\xfa\xd9\x94\x22\x45\xa2\xf4\x9b\x8c\xd4\xf3\x6f\xaf\ +\xc3\x3a\x7e\x22\x5f\x93\x9d\x68\x89\x99\x26\x48\x74\xe7\x61\xcd\ +\x08\xa5\xec\xe0\x5c\x71\xe1\x00\x41\x71\xba\x46\xad\x4e\x95\xdf\ +\xdd\xcc\x90\x3b\xee\x19\x8a\xd1\x4f\xde\xa3\x4b\x95\x92\x95\xfe\ +\x48\xdc\x84\x77\x1f\xe7\xef\xa9\x67\xb5\x6a\x01\x3f\x95\x44\x04\ +\xf3\x8e\x9f\xc4\x36\xce\x56\xa6\xd3\x75\xe1\x78\x7e\xde\x2b\x86\ +\xf5\x62\xb7\xc8\x53\x07\x97\xfa\x74\x45\x99\x36\xb8\xe1\xad\x67\ +\xcf\x61\x15\x27\x68\xaa\x46\x70\x2d\xb4\xef\xda\x11\x3b\xfe\x48\ +\xd1\x8a\xd5\x2e\xd5\xaf\x7d\xd3\x48\x73\x41\xe9\x2e\x10\x69\x95\ +\x9c\x43\xe6\x2e\xdc\xb3\x6c\xbf\x61\x90\xdc\x20\xa0\x9b\x20\xc3\ +\x43\x87\xd7\xf1\x76\x14\xf4\x23\xcc\x9f\x89\x7d\xd8\x9d\x90\xb6\ +\x56\xf4\xd1\x63\x7c\x95\x6c\x9f\xdd\x52\xb7\xf6\xf3\x45\x68\x40\ +\x00\x3a\x05\xf8\x61\xc5\x99\x73\xdc\x37\x35\xbb\xf4\x62\x97\x5f\ +\x46\x8b\x9e\x0c\xe0\x33\x5a\x36\x43\xb0\x4a\x4a\x9c\x85\x27\x4f\ +\x63\xe3\x25\xf5\xf8\x08\xe6\x66\xc2\xdc\x4d\x8c\x16\xe6\xc9\xcb\ +\x3c\x7a\x79\xc5\x4a\xd0\x94\xd1\xf9\x30\xaa\x7f\x99\xfa\x14\xf9\ +\x94\x60\x1f\x40\xd7\xc8\x4e\xe7\x27\x8b\xd2\x56\xa6\x5a\x6e\xd3\ +\x0d\x0d\xa8\x12\x84\xa5\xb8\xac\x59\xd7\x71\x8b\xb2\x3a\xb0\x55\ +\x02\xe8\xa2\x37\x0b\x87\x2e\x3d\x75\xbc\x7a\xea\x7a\x79\x15\xde\ +\x56\x07\xf8\xa3\x83\xbf\x3f\x7c\xa5\x7f\xd4\xd5\x7a\x53\xf7\x18\ +\xd8\x13\x8f\xce\x7a\x4a\x97\x2a\x25\x2b\x31\x87\x40\xe6\x18\xc8\ +\x2b\xcf\x37\x6b\x82\x26\x2a\x89\x08\x96\x9d\x3e\x8b\xa4\x0b\x17\ +\x55\xc5\x1b\xb6\x68\x8c\x59\xdf\xaa\xdf\x1b\xf0\xfa\x1d\xdb\x99\ +\x7f\x3c\x3c\xa1\x71\x03\x84\x05\xb8\x8e\xe9\x58\x79\xf6\x1c\x56\ +\x73\x56\x10\xd3\x17\xab\x85\x2e\x1a\x7a\x0c\x75\x27\xa5\x38\x48\ +\x80\x24\x59\xa6\x9f\xb2\x9c\x53\x86\x27\xa7\x02\x04\xca\x10\x24\ +\x3a\x3c\xea\x4e\x00\x4f\x10\x82\xbe\xee\xd4\x47\x8f\x71\xf7\x66\ +\xab\xe6\x08\x70\xb8\xfe\xfe\x9c\xd6\x9b\x9a\x9d\x54\x3d\xfd\xf1\ +\x34\xc3\x43\x60\x2e\xe5\xcc\xb5\x9c\x57\x1e\x6f\xd2\x10\x6d\xfc\ +\xfd\x5d\x56\x59\x75\xf6\x1c\xbe\xe3\x3c\x88\x35\xeb\xd4\xc2\x87\ +\xeb\xd4\xef\x33\x78\xfd\xea\x0d\x9a\x62\xf7\x30\xe9\x39\xb9\xd8\ +\x9b\x93\x83\x3d\xd9\x39\x38\x90\x93\x83\x7c\x77\x9a\xb4\xae\x5f\ +\x76\x32\xa5\xf4\x08\x08\x59\x2f\xc9\xf2\x17\x0b\x52\x97\xaf\x36\ +\x3c\x19\x95\x40\xa0\x98\x20\x4a\xaa\x4b\x4a\xbe\x24\x84\x5c\x53\ +\x1e\x7a\xe9\x58\x40\xf0\x72\x8b\xa6\xa8\xab\x92\x53\x49\xeb\x4d\ +\xdd\xa6\x73\x7b\x4c\x8f\x7d\xc3\xf0\x50\xf4\x6c\x65\x78\x89\x08\ +\xd6\x9e\xbf\x88\xa5\x67\xd4\xdd\xb0\xbd\x7d\x7d\x30\xff\x77\x73\ +\x89\x08\x1e\xed\x7b\x1f\x2e\x9c\x51\xbf\xf3\x6a\xef\xef\x87\x7c\ +\x99\xe2\x40\xae\xfa\x7d\x87\x61\x40\x74\x08\x14\x9e\x34\xb1\x34\ +\x9d\xe4\x04\x95\xb0\x91\xca\xce\xb8\x85\x29\x2b\xcc\xc5\xf0\xea\ +\xe8\xaf\x3c\xab\x28\x04\x61\x5f\x2e\x95\x40\x7f\x2b\x99\xee\xd2\ +\x1d\x4a\x48\x0e\x09\x21\x61\x6d\x95\xcb\xb9\xc6\x2d\x9b\xe0\xe3\ +\x17\xde\xe3\x76\xf3\x6c\xb3\x26\x68\xa6\xb2\x95\xd1\x7a\x53\x37\ +\x69\xdd\x0c\x33\x97\xf3\xdb\x77\xd5\xb9\x2c\xcb\xb8\xe7\x9a\xbb\ +\xb9\x7a\xdd\xdb\xa0\x1e\xba\xd7\x70\x9d\x88\x60\xd3\xc5\x4c\xc4\ +\x9e\x3a\xcd\x95\x37\x9b\x88\x40\x2b\x68\xca\xea\x9c\x19\xda\x66\ +\x51\x9a\x4b\x41\x36\x02\x48\x04\x48\x5a\x5e\x8a\x63\xc5\x12\x2c\ +\x51\x77\xcb\xb5\xaa\x5c\x05\xc9\x13\x66\x6b\xd4\xaa\xe3\xd8\xe1\ +\x8e\xac\xe1\x6c\x4c\xec\xfe\x81\xc5\x56\x17\x85\x95\xfa\x05\x14\ +\x5e\x9a\xb3\x37\x21\x7b\x23\xf2\xca\x63\x4d\x1a\xa2\x9d\xca\x56\ +\x46\xeb\x4d\x5d\xbb\x7e\x30\xde\x4f\x34\x97\x53\xe9\xbe\xee\x23\ +\xc1\xbe\x46\xa4\x56\x46\xd6\xab\x8b\xde\xb5\x5c\x27\x12\xd8\x7e\ +\xf9\x32\xe6\x1e\xe7\x67\xea\x98\xf3\xeb\x97\x86\x3f\x4c\x79\x64\ +\x5f\x86\x92\xe6\xf3\xcc\x71\x3e\xf9\xac\x3c\x47\x5a\xb6\x04\xa5\ +\xf8\x1d\xa0\x3f\x11\x90\xb5\x5e\x99\xe7\x7e\xfd\x3c\x7d\x9d\xfa\ +\x79\xb6\x15\x45\x2a\x91\x2c\x89\x0e\x8b\x9a\x48\x24\xd8\x96\xbe\ +\xae\x5e\x93\xfa\x57\x12\x20\x77\x51\xbe\x63\xcd\xf6\xdc\xae\x0a\ +\x8b\x17\xbe\xef\xba\x51\x5c\x28\x1e\x6a\xd8\x00\x11\x2a\x89\x04\ +\xb4\xde\xd4\x2c\x3b\xf9\x67\x9b\x17\x99\x82\x5a\x2b\xfe\x9b\x97\ +\x88\x60\x77\x56\x36\xde\xd3\x88\xff\x7e\x7b\xd5\xc7\xa8\xdf\xd4\ +\x75\xec\x46\x91\xc2\x67\x4f\x9c\xf9\x27\x7a\x6e\x73\x32\xce\x9f\ +\x3e\xc7\x76\x31\x6e\xfd\xec\xf2\xd5\xde\x07\x14\x48\x65\x5e\xaf\ +\x44\x76\x26\xfa\x38\xb1\x76\xfe\xae\x15\xea\xd9\xe7\x4c\x21\x5d\ +\xf9\x85\x48\x74\x78\xd4\x7a\x42\xd0\xcb\xac\xaa\x2c\x25\x4b\xd8\ +\xf5\x11\xc5\x49\x07\xd8\x29\x8d\xde\xa2\x95\x53\x69\x5c\x83\x7a\ +\xb8\x5e\x65\x2b\xa3\xe7\x4d\x6d\x76\x2b\xc3\xee\x1b\x78\xd1\x6b\ +\xbc\x44\x04\x19\x39\xb9\x98\xa9\x91\xa9\xe3\xbf\xdf\xbc\x8d\x16\ +\xed\x4b\x67\x3d\xcf\x3c\x7f\x49\x49\x36\x90\xb6\x25\x45\x09\x27\ +\x75\x15\x7f\x6e\x68\x0b\xa4\x77\x12\x8a\xeb\x51\x76\x35\x75\x12\ +\x84\x2c\xa7\x32\x92\x1c\x0e\x24\x2d\xd8\x1e\xcf\xcf\xc9\x63\xb8\ +\x0f\xcf\x13\x20\x31\x11\x51\x2c\xdd\x05\xff\x75\x56\x62\x5c\x2c\ +\x03\x78\xc7\x6e\xa1\x08\xbb\xb1\x70\x85\x68\xde\xae\xa5\x9e\x23\ +\x3e\x97\xc8\x68\xbd\xa9\x87\xd7\xad\x83\x5b\x6a\xbb\xce\xa9\xa0\ +\xe7\x4d\x6d\x36\xa7\x12\xbb\xb1\x66\x37\xd7\x6a\x85\x97\x88\x40\ +\x4f\xd0\xd4\x8b\x9f\xff\x57\xc9\xd4\xb1\xf3\x8f\xd4\xc2\xf8\xea\ +\xcd\xc9\x38\xb4\x5b\x4f\x9e\x26\x5d\xc7\xa9\xba\x9f\xc2\xc2\xd8\ +\x08\xec\xa6\x32\xfd\x9e\xe4\xc8\x9f\xc6\xee\x5b\xa1\x3e\x68\xdd\ +\xad\x56\xad\x8a\x8c\x20\x9a\x07\x80\x45\x59\x38\x98\x71\xdd\xbe\ +\x6b\x27\xdb\x10\xd0\x32\x3a\x07\x07\xd7\xc6\xbf\xea\xb8\xce\xd4\ +\xa1\xe7\x4d\x3d\xfb\xfb\x39\x60\x5e\xbb\x46\x8b\x56\xfc\x37\x2f\ +\x11\x41\x66\x81\x13\xcf\x1e\xe4\x67\xea\x68\xdc\xba\x29\x8e\x1d\ +\xe0\x47\x1e\xba\xd2\xd9\xca\x0a\x72\x25\xfb\xa1\x0c\x42\xd2\x21\ +\x23\xd1\xe9\xc8\x9d\xb7\x78\xfb\xf7\x9b\x8d\x62\x53\xdd\xea\x93\ +\x98\x88\xc8\xfd\x00\x51\x4d\x3c\xd4\xe5\xa6\x6b\xf1\xd4\x47\x2f\ +\xba\x05\x17\xad\x4c\x1d\xfd\x6b\xd7\x44\xa4\x4a\xa6\x8e\xd3\xf9\ +\xf9\x98\xae\x11\xde\x3a\xe3\xab\x59\x4a\x5a\x1d\xa3\x45\x2b\xfe\ +\x9b\x17\xde\xaa\x27\x68\x4a\xcf\x11\xb7\x4b\x9d\x8d\x0a\x52\xe5\ +\xec\xf5\x28\xa1\x58\x2f\x17\xd0\xf9\x0b\x77\x7a\xe6\x5d\x84\xd1\ +\xf9\xb3\xb3\x3e\x89\x09\x8f\x9a\x0f\x02\x55\x1f\x06\x2f\x6f\x2f\ +\xc5\xd8\x75\x78\xb9\xbe\xb0\xb3\xa2\x0c\xfb\xa8\x3b\xdb\x5e\xa8\ +\x95\x5e\x35\x83\x30\x5a\x25\xa7\xd2\x65\xa7\x13\xcf\x68\xe4\x54\ +\x62\x3e\x4f\xcc\xf7\xc9\x68\x61\x11\x72\x2c\x52\x4e\xad\xb4\xf6\ +\xf5\xc5\x93\x2e\xbe\xde\x7a\x86\x79\xbe\x66\xe7\x60\x81\xc6\x31\ +\xaf\x51\x7d\x8a\xea\xeb\x38\x65\x62\xf7\xda\x67\x41\xc8\x66\xa9\ +\x80\x2c\x3a\x9d\x9f\xfd\xf5\xaa\xbd\xab\xca\xf7\x52\xc4\xec\xe0\ +\x2a\xa9\x1c\x89\x0e\x8f\x8c\x21\x84\x2c\xe0\xe9\xc7\xf6\xcc\x6c\ +\x9b\x65\x77\x61\x4e\x81\xcc\x39\x50\xad\x5c\x1b\x18\x80\xfb\x1a\ +\xb9\x36\x8f\xf4\xbc\xa9\xa7\xbc\xfb\x2c\xba\x5d\xc9\xa9\x64\x44\ +\x77\xad\xa0\xa9\xa2\xf0\x56\x96\x19\xb0\xe8\xb6\x9a\x11\xe3\x1c\ +\x27\x50\xaa\x54\xff\x66\xf7\x4a\x57\xcb\x29\x9e\xe0\xc8\x04\x95\ +\xff\x96\x28\x96\xca\xb9\x79\xf3\xe2\xf6\xae\x52\xf7\x73\x31\x02\ +\x82\xa8\xab\x20\x40\x46\x87\x0f\x69\xe8\x20\x0e\x6e\x04\x56\xd4\ +\xc3\x23\x30\xec\x11\xfe\x91\xac\x19\x3c\xb5\x32\x75\x84\xfa\xfb\ +\xe3\x11\x4e\xa6\x8e\x27\xf6\xa7\x23\x8f\x63\x41\x3d\xf4\xea\x64\ +\xdc\x34\xa4\x8f\x61\xd5\xe2\x3f\xfe\x1a\xcb\x3e\x52\xbf\xed\x66\ +\x59\x4d\x7c\x08\xc1\x65\x59\x36\xdc\xb6\x35\x01\x0a\x99\x22\x97\ +\x00\x3b\x40\xf1\x6d\x5e\x7e\xc1\xc7\x4b\x76\x7f\x6b\xdc\x98\xb1\ +\xa6\x44\xb5\x92\x56\x6e\xd2\xa3\xc3\xa3\x76\x10\x02\xd5\xb4\x7a\ +\xcc\x30\xff\xcf\x17\xff\xb5\x1d\x18\xad\x37\x75\x6b\x5f\x1f\x3c\ +\xd9\xcc\x7c\x78\x2b\x8b\xb1\x66\xb1\xd6\x46\x8b\x56\xd0\x94\xd1\ +\xf6\xca\xd4\x37\x62\x4b\x50\x1c\xa7\x84\x26\x81\x92\x44\x49\xce\ +\xff\x69\x41\xda\xb7\x87\x2c\xf7\x2f\x1a\xd0\x8d\x40\x21\x41\x22\ +\xa2\x3e\x20\x80\xaa\x87\x1e\x73\x11\x61\xd9\xbf\x8d\x7e\xe4\x51\ +\x4b\x0b\xad\xf0\xd6\x46\xde\x5e\x78\xb1\x45\x33\xd5\x66\xb4\xc2\ +\x5b\x59\x96\x0e\x96\xad\x43\x6f\x61\xb7\xe7\x7b\xfe\xda\xa9\xa4\ +\xd7\xe1\x7f\x26\x58\x6f\x8b\x2a\xf5\xb8\x5b\x2c\x7a\x9e\x82\xfc\ +\x0c\x4a\x13\x21\xd3\xc4\xb8\xb4\xe5\x69\x16\x7b\x13\xe2\x16\x10\ +\x28\xf4\xc5\x0a\x8f\x1a\x26\x11\x2c\xe5\xb5\xc3\x4e\xb2\xd8\x89\ +\x96\x9d\x45\xeb\x4d\x5d\xdb\xe1\xc0\xab\x9c\x0f\xd1\x6b\x85\xb7\ +\x6a\x05\x4d\xb1\xe8\xb9\xfd\xa9\xfb\x94\x8b\x39\x76\x1f\xb1\x7b\ +\xdb\x4e\x25\x23\xb8\x96\x31\x6c\x19\x83\x12\x2b\x08\x05\xb2\x01\ +\xba\x01\x20\x89\x90\x49\x62\xbb\xd4\x65\x5b\xa7\x03\xe5\xbd\x77\ +\xb3\x3c\xa4\xaa\xda\xc0\x15\x67\xc5\x41\xc1\x84\x7a\x9f\xe1\xc5\ +\x7b\xdc\x3e\x6e\x08\xc6\x3c\x75\xaf\xad\x38\x68\x85\xb7\xb2\x9c\ +\x4a\xb3\x39\x1f\xa2\xd7\x0a\x6f\xed\x73\xd7\x00\xdc\xff\x52\xe9\ +\xa0\xa9\xc3\x7b\x0f\x5d\x21\x44\x61\x46\xf0\xec\x4c\x17\x89\x0c\ +\xcc\x1a\xd1\x3a\xd1\xa1\x94\x9e\x00\xc1\xa7\x84\x22\x31\x57\xf6\ +\xde\xb8\x24\x6d\x49\x85\xc4\xb4\xea\x54\xb7\x5a\x57\x2b\x76\x77\ +\x8f\x89\x88\xda\x0a\x40\x75\x89\x60\xae\x11\xcc\x45\xc2\xce\x62\ +\x35\x53\x87\x9e\xa0\x29\x16\x76\x9b\xa2\xa4\xc8\x2f\xbc\xb1\xe6\ +\xb9\x8b\x17\x8d\xcd\x6e\x9f\x27\x0a\x9a\x47\x28\x76\x51\x22\xad\ +\x92\x9c\x8e\x0f\x17\xa4\x2d\x11\x76\x84\x9d\x0f\x92\x1b\xdb\xfa\ +\x27\x1e\x24\x7c\xe8\x9b\x84\x48\xdc\x50\xba\x8f\xd7\x7f\x89\x40\ +\x95\xef\xcd\x99\xd1\x51\x5f\xa6\x0e\xf3\x41\x53\x2c\xf6\xc2\xd4\ +\x47\x54\x8c\x18\xd1\x2e\x07\x4e\x9d\x00\x49\x27\x90\x93\x9c\x20\ +\x9f\x2c\x4c\x4e\x60\x2f\x1f\x51\x3c\x10\x81\x7f\x56\x90\xd0\xa8\ +\xdb\xe0\xc0\x2a\xde\x18\x1e\x7d\xeb\x49\xf4\xf8\x97\x69\xbf\xc6\ +\x32\x4d\xeb\x09\x6f\xb5\x12\x34\x65\x76\xa7\x64\xd4\x06\x61\x17\ +\xd6\x00\x65\x47\xe5\xbf\x42\xc6\xe7\x71\x69\x09\xec\x83\x82\x9a\ +\x2e\x3c\x1e\xf8\xbc\x54\x3b\x95\x8b\x09\xc2\xb2\xa6\xd7\xf1\xf7\ +\xcd\xe4\xa5\xfd\x34\x9b\x08\x41\x0d\xd5\x13\x19\xc7\x95\x2f\x8d\ +\xf2\xca\x73\xcd\x9b\xa0\xa9\x4f\xe9\x0f\xd1\x1f\xca\xcd\xc5\xce\ +\xac\x1c\x6c\xba\x74\x09\x27\xf3\x39\xd9\x60\xcc\x32\x44\xe3\x31\ +\xb8\x92\x59\xf4\x2c\x08\xb6\xc8\xb2\x73\x71\x01\xf5\x5d\x24\xec\ +\x88\xaa\xc9\x9d\x52\x31\xe9\x31\xe1\x51\xbf\x82\x40\xf5\x23\x11\ +\xcc\xf1\x8f\x39\x00\xda\x55\x2e\x9d\xbb\x88\x47\x6e\xe1\x1b\xfe\ +\x8f\x37\x69\x84\x06\xde\xde\xd8\x91\x9d\x8d\xb4\xac\x6c\xec\xca\ +\xce\xe1\x7e\x4f\xa2\xa4\x6e\x46\x57\x82\x52\xe3\xba\x6a\x9b\x45\ +\x29\xbd\x4c\x80\xbf\x29\xb0\x2c\x30\x2b\xf3\xb3\xb9\xfb\x7f\x52\ +\xff\x60\xa0\x5d\x00\x89\x76\x2a\x1c\x81\xab\x08\x12\x39\x1d\x84\ +\xbc\xc4\xd3\xea\x9d\xd5\x9f\xa0\x6e\x63\xd7\x9f\xd4\x32\x33\x1a\ +\xad\x4c\x1d\xec\xa8\xf7\xbc\x5e\x17\x8e\xab\x14\xb0\x60\x4a\xe4\ +\x53\x4a\xf3\x08\xc8\x3e\x0a\xfa\x9d\x13\x74\xce\xe2\x94\xe5\x7c\ +\x17\x5d\x33\x83\x17\x32\x95\x1e\x81\x52\x04\x19\x13\x31\xe4\x66\ +\x09\x8e\x9f\x79\x5a\xdf\x3f\xfd\x11\xf4\x19\xc6\x92\x27\xda\x53\ +\xb4\xc2\x5b\xed\xe9\x85\xdf\x4a\xe1\x27\xe9\x58\x8a\x7c\x24\x81\ +\x20\x51\x22\x59\xbf\x2c\xd8\xfe\xa3\x7a\x9e\xce\xf2\x50\x4a\xf4\ +\x51\x29\x10\x28\x45\x90\x3e\xe8\xe3\xd5\x2c\xbc\x76\x26\xef\x33\ +\x66\x37\xde\x7e\x13\x1e\x99\xf9\x84\x25\xe5\x59\xe6\x10\xf6\x65\ +\xd2\xb4\xcd\xdb\x15\xaf\xd9\x2b\xb1\x0a\x96\xda\x54\x15\x56\x5d\ +\x46\xe8\x6e\x16\x4e\x4a\x65\x9a\x94\x07\x9f\xa4\x25\x69\x4b\xdc\ +\xf3\x45\x48\xf7\x8c\x4a\xb4\x5a\x4e\x08\xb8\xc8\x8b\x15\xb9\x9a\ +\x10\x32\x50\xad\xff\x80\x9a\x81\xf8\x64\x3d\xd7\xf9\xb7\x8c\x68\ +\xce\xe5\x6c\xe5\x52\xae\xe8\xa3\xee\xec\xb2\xae\xa8\xd8\x7d\xe7\ +\x70\x75\xe7\x25\xec\xf4\x23\x0a\x21\x28\x92\x9c\x05\xce\x35\x8b\ +\x77\xad\xe0\x7f\xf6\xb5\x9c\x26\x40\x74\x53\xb9\x11\x28\x4b\x90\ +\xb0\xc8\xa7\x89\x44\x66\xf2\xd4\x7e\x7d\xe9\x3b\x68\xd6\x4e\xfd\ +\x9b\xda\x8a\x4f\xd3\xb6\x9d\x57\x08\xb1\x5d\x71\xe7\x60\x6e\x1d\ +\xae\x8b\x9b\x8e\x9a\x0a\xcf\x59\xf3\x00\xf9\xbf\x84\xd0\xaf\x62\ +\xb7\xaf\xd8\x55\xb9\xa7\x42\x68\x57\x19\x11\x28\x43\x90\x31\x11\ +\x91\xdd\x24\x90\x3f\x78\xca\x46\x4f\x1d\x8f\xdb\xc6\x0e\x2e\xae\ +\x22\x3b\x65\x25\x86\xbb\x68\x85\x60\x0e\x7f\xbc\xb4\x39\xa5\xda\ +\xb6\x97\x1f\x2c\x81\xe0\x6e\x50\xe7\x0f\x54\x96\x62\xcb\x33\x4d\ +\x7e\x65\x9c\x5c\xa1\x93\x75\x04\x5c\xe6\xe6\x8d\x0e\x8f\xba\x44\ +\x08\x5c\x67\x46\x03\xd0\xf5\x96\xee\x18\x31\x39\xa6\x78\x85\xd8\ +\xf1\x47\x2a\xd8\x36\xca\x4c\xb1\x74\x14\x0b\xea\xa4\x32\xd9\xcf\ +\x12\x20\x53\x09\xf3\xdb\x27\x27\x6c\x13\x8e\x7e\x66\x66\x41\xc8\ +\xa8\x21\xa0\x46\x90\x65\x84\x20\xaa\x3c\x60\x33\x46\x10\x25\x35\ +\x4d\xe1\x77\x9a\xd9\xe7\x9a\x99\x82\xba\xf3\xd3\x97\xc7\x68\x44\ +\x1f\x95\x1e\x01\x8a\xe3\x00\x3d\x4c\x59\x58\xb2\x13\xcb\x16\xa4\ +\xc5\xab\x7f\x5b\x5b\xed\xf1\x1a\x13\x36\xf4\x71\x49\x92\xec\xf5\ +\x4c\x54\x43\x8e\x73\x59\x51\xec\xab\xa1\x90\x41\x30\xa2\xd2\x3f\ +\x7c\x9e\xa8\x20\xa5\x87\x28\x30\xcb\x3b\xf3\xfc\xa7\xae\x32\x45\ +\x96\x79\xff\x8e\x6b\x7f\x67\x53\xd9\xdb\xb1\x11\x92\xa4\x6e\x85\ +\xdb\x08\x44\x49\x7e\x14\xae\x0e\x94\xfd\x51\x56\x06\x37\xe7\x11\ +\xb4\x71\x14\xa2\x29\x4f\x47\x40\xf9\x32\xae\x44\x06\xc4\x6d\x5f\ +\x76\xb8\xe4\x58\x4a\x11\x64\x6c\x78\x54\x27\x0a\xe5\xb2\xac\x91\ +\xbd\xb6\xb3\xda\x01\x16\x5b\x15\x18\x13\x8a\xd6\x0a\x22\xb6\x4c\ +\x9e\xfe\xa4\x79\xb0\xfe\x14\x38\xec\xc8\x47\xbf\x2f\x77\xc6\xef\ +\x2e\x1a\x46\x31\x41\xc6\x44\x28\x41\x53\x7f\x13\x42\x0a\x3f\xe1\ +\x6a\xc1\x4f\x83\xbb\x9b\x52\xb6\x4a\xc2\x70\xf0\xe0\xe7\xa8\x6a\ +\xab\xce\xb6\x5c\x39\xb9\x11\x45\xd9\x61\x4a\x7c\x1f\x24\x72\x0d\ +\x81\xf2\x01\xce\x2b\xc5\xfa\x15\x9e\xc2\x31\xc5\x90\x2e\xde\x33\ +\x89\x15\xa2\x6a\x3f\x5e\x55\x62\x74\x94\xd2\xd5\x71\x29\x09\xb7\ +\x15\x9f\x01\xc5\x84\x45\x8d\x83\x84\x2f\xca\x8c\xae\xc4\xce\x47\ +\xd7\xc8\x95\xfa\x25\x56\x88\x72\xd9\xa7\xe9\xd2\x4c\x54\x12\x08\ +\x18\x43\x40\xa6\x63\x62\x53\x13\x16\x91\xe1\xa1\xc3\x7d\x7c\x1c\ +\xf9\x07\x08\x88\x6a\x7e\x9d\x42\xe3\x59\xe5\xe5\x5f\xf8\x71\xa1\ +\xc2\x5d\x13\x15\x36\x84\xb1\x59\x10\xb5\x2b\x31\x02\x47\xce\x64\ +\xe7\xb4\x21\x63\xc2\xa2\x46\x49\x12\x34\x3f\xa4\x51\xb3\x6d\x5d\ +\xd4\x6c\x5f\x0f\x2c\x73\x59\x41\x4e\x3e\xfc\xea\x06\x82\xfd\x9f\ +\x57\x60\xe9\x60\xa6\x4a\x3c\x60\xa1\x5a\x35\x47\x80\x3a\x65\x64\ +\x1f\xbb\x84\xa3\x49\x7b\x71\x71\xaf\xb6\x6f\xaa\x4c\x71\x17\x4b\ +\x3d\x3a\x8f\x10\xc2\xfd\xd4\x53\xe3\x5b\x43\x10\xfa\x68\xcf\x6a\ +\x0e\xaf\x18\x7e\x55\x42\x20\xf5\xbd\x0d\x38\xbe\xee\x00\x77\x48\ +\x94\xe2\x63\x12\x13\x1e\xf9\x3b\x08\xe9\xae\x56\x33\xa8\x75\x30\ +\x7a\xcc\x36\x9e\x9d\xb0\x2a\x81\x29\xc6\x52\x35\x11\xd8\xf4\xd8\ +\x4a\x5c\xce\x50\x0f\x0c\xa5\xc0\x26\x96\xdd\xfd\x28\x08\x54\x3f\ +\x0b\xd5\x7a\x44\x04\x42\x46\x75\xa9\x9a\x08\x89\x51\x55\x6b\x04\ +\xf6\x2d\xfc\x0b\xe9\xdf\xa4\xa8\x62\xc0\xee\x45\x34\x3f\xa0\x13\ +\xfe\xf8\x4d\x68\xd8\xbb\xf4\xe7\xc2\xaa\x35\xaa\x62\xf0\x55\x06\ +\x81\xe3\xbf\xa4\x23\xf5\x9d\xf5\xdc\xf1\x68\x13\xe4\xa9\xde\x68\ +\xd8\xb3\x65\x95\x01\x45\x0c\x44\x20\x50\x84\xc0\x89\x0d\xe9\x48\ +\x99\x2d\x08\x22\x9e\x08\x81\x80\x4b\x04\x04\x41\xc4\x83\x21\x10\ +\xe0\x20\x20\x08\x22\x1e\x0f\x81\x80\x20\x88\x78\x06\x04\x02\xe6\ +\x10\x10\x2b\x88\x39\xdc\x84\x54\x35\x41\x40\x10\xa4\x9a\x4c\xb4\ +\x18\xa6\x39\x04\x04\x41\xcc\xe1\x26\xa4\xaa\x09\x02\x82\x20\xd5\ +\x64\xa2\xc5\x30\xcd\x21\x20\x08\x62\x0e\x37\x21\x55\x4d\x10\x10\ +\x04\xa9\x26\x13\x2d\x86\x69\x0e\x01\x41\x10\x73\xb8\x09\xa9\x6a\ +\x82\x80\x20\x48\x35\x99\x68\x31\x4c\x73\x08\x08\x82\x98\xc3\x4d\ +\x48\x55\x13\x04\x04\x41\xaa\xc9\x44\x8b\x61\x9a\x43\x40\x10\xc4\ +\x1c\x6e\x42\xaa\x9a\x20\x20\x08\x52\x4d\x26\x5a\x0c\xd3\x1c\x02\ +\x82\x20\xe6\x70\x13\x52\xd5\x04\x01\x41\x90\x72\x9a\xe8\xf3\xa9\ +\x27\x94\x9e\x2e\x1d\x38\x87\x82\xcb\x79\x08\x0e\x6f\x08\x47\x80\ +\x0f\x6a\xb4\x0e\x2e\x27\x0d\x44\x37\x66\x10\x10\x04\x31\x83\x9a\ +\x4e\x99\x73\x29\x27\x70\x6c\xed\x3e\x9c\xda\x92\x81\x82\xcb\xf9\ +\x2e\xa5\xbc\x02\xbd\xd1\xe2\xce\x4e\x68\xd4\x37\x04\xfe\x0d\x54\ +\xbf\x47\xa4\xb3\x47\x51\xcd\x6e\x04\x04\x41\xec\x46\x14\x40\xf6\ +\xc9\x4c\xec\x78\x7f\x23\xce\xa5\x9e\x34\xd4\x7a\xe3\xbe\x21\x68\ +\x3f\xbe\x3b\xbc\x82\x44\xa2\x3d\x43\xc0\xb9\xb1\xb2\x20\x88\xcd\ +\xe0\xb2\x2d\xd4\x9f\xd3\x7e\x54\x5d\x31\xb4\xba\x2b\x5a\x51\x5a\ +\x8f\xec\xac\x55\x55\xfc\x5e\x0e\x08\x08\x82\xd8\x08\x32\xdb\x52\ +\xfd\x39\x6d\x8d\x2d\x2d\xfa\xd5\x0f\x44\xfb\xfb\xbb\xa3\xfe\xf5\ +\x85\x5f\x9a\x10\xa5\x62\x10\x10\x04\xb1\x09\x77\xab\x2b\x87\x9a\ +\x1a\xc1\x61\x0d\xd0\xee\xbe\xeb\x84\x31\x6f\xd3\x3c\x19\x6d\x46\ +\x10\xc4\x28\x62\x2a\xf5\x37\x3f\xf1\x2d\x32\xd3\xcf\xdb\xd4\x5a\ +\xd9\x66\x84\x7d\xe2\x36\x68\xb9\x0d\x0b\x82\xd8\x80\xfb\xd1\xb5\ +\xfb\xb0\xe3\xfd\xdf\x6c\x68\x89\xdf\x84\xb0\x4f\xdc\x0e\x71\x99\ +\x0e\x04\x41\x6c\xc0\x7c\xc3\x43\xf1\xc8\x39\x75\x59\x57\x4b\xfe\ +\xfe\x0e\xb4\x68\x1e\x88\x5d\xbb\x2f\xea\xaa\xef\xaa\x92\xb0\x4f\ +\x4c\x43\x67\x58\x50\x10\xc4\x30\x64\xa5\x05\x98\xed\xb1\xe5\xc9\ +\xef\x34\x5b\xe9\x7a\x4d\x30\x86\x0d\x6d\x86\x16\x2d\x02\x95\xba\ +\xa7\x4e\xe7\x22\x7e\x79\x06\x36\x6c\x3c\xad\x29\x2b\xec\x13\xd3\ +\x10\x59\x16\x14\x04\xb1\x08\xe1\xa1\x95\x3b\xb0\xe7\x7f\x5b\xb9\ +\xad\x0c\xec\xdf\x10\xd1\xa3\x5b\xbb\xac\xb3\x73\xd7\x45\x2c\x4b\ +\x38\x6c\x69\x45\x11\xf6\x89\xc5\x49\xe4\x88\x0b\x82\x58\xc4\x76\ +\xff\xe2\xbf\x71\xe0\xeb\x64\xd5\x56\xd8\x96\xea\xed\x99\x5d\x11\ +\x10\xe8\xc5\xed\xe9\xd7\x0d\xa7\x10\x9f\x70\x18\x67\xce\xe6\x9a\ +\xd2\x48\xd8\x27\xa6\x60\xd3\x14\x12\x04\xd1\x84\x88\x5f\xe1\xef\ +\x37\xd6\xe1\xf4\x96\x52\xdf\x95\x2f\x25\xd0\xa1\x7d\x4d\x3c\xff\ +\x4c\xa8\xae\x5e\xb2\x2e\x17\x60\xf5\x9a\x63\x58\xfd\xd3\x71\x64\ +\x67\x3b\x75\xc9\x5c\x5d\x49\xd8\x27\xa6\x60\x53\x15\x12\x04\xb1\ +\x88\xe7\xd6\x17\xd7\xe0\x7c\x5a\xa1\x23\xa2\xab\x12\x39\xb8\x29\ +\xa2\x22\x8d\x5d\xf6\x09\xfb\xc4\xe2\xa4\xd8\x28\x2e\x08\x62\x11\ +\x4c\x77\x10\xa4\x48\x25\x61\x9f\xa0\x5a\x6c\xee\x00\x00\x07\x48\ +\x49\x44\x41\x54\x58\x9c\x1c\x1b\xc4\x05\x41\x2c\x82\xe8\x4e\x82\ +\x14\xa9\x26\xec\x13\x8b\x93\x64\x41\x5c\x10\xc4\x02\x78\x4c\xb4\ +\x3c\x08\xc2\xfa\x11\xf6\x89\xc5\x89\x32\x29\x2e\x08\x62\x12\xb8\ +\x22\xb1\xf2\x22\x48\x51\x7f\xc2\x3e\xb1\x38\x61\x06\xc5\x05\x41\ +\x0c\x02\x76\x75\xf5\xf2\x26\x88\xb0\x4f\x2c\x4e\x98\x41\x71\x41\ +\x10\x83\x80\x55\x16\x82\x08\xfb\xc4\xe2\xc4\xe9\x14\x17\x04\xd1\ +\x09\x94\x5a\xb5\x8a\x5a\x41\x4a\xea\x53\x64\x9f\x24\xac\x3c\x62\ +\x7a\x34\xe2\xfe\xc4\x35\x74\x82\x20\xa6\x1f\xa9\x42\xc1\xca\x40\ +\x90\x92\xf6\x49\xdc\xa2\x74\x6c\xfb\xeb\x9c\xe9\x51\x35\xbf\xb3\ +\x23\x42\x46\x74\x16\x61\xbf\x57\x10\x14\x04\x31\xfd\x28\x55\x3e\ +\x82\x94\xb4\x4f\x62\x17\xa6\x23\xe3\x70\x96\xa9\xd1\x05\xb5\xaa\ +\x8d\xd0\x49\xbd\x44\x90\x16\x00\x41\x10\x53\x8f\xd0\x3f\x42\x95\ +\x69\x05\xb9\x7a\x28\xec\xfe\x84\xad\x28\x66\xdc\x56\xd8\x96\xab\ +\xc7\xec\x41\xd5\x7e\x25\x11\x04\xa9\xc2\x04\x61\x43\xb3\x62\x9f\ +\xb0\x70\xdf\x6b\x67\x0c\xb4\x88\x90\x67\x8b\x0b\x82\x58\x9c\xbf\ +\xca\xbc\x82\x94\x1c\x1a\xbb\x3f\x31\x63\x9f\xb4\x1b\xdf\x0d\x2d\ +\x06\x77\xb2\x88\x92\xe7\x8a\x0b\x82\x58\x9c\x3b\x4f\x21\x88\x59\ +\xfb\x84\x6d\xb5\x7a\x7d\x12\x65\x11\x25\xcf\x15\x17\x04\xb1\x38\ +\x77\x9e\x46\x90\xa2\xe1\x1a\xb1\x4f\xae\x7d\x65\x80\x92\x2a\xb5\ +\x3a\x16\x41\x10\x8b\xb3\xee\xa9\x04\x61\xc3\x66\xdb\xae\x77\xdf\ +\xdf\xa5\x79\xda\xd5\x7a\x44\x04\x42\x46\x75\xb1\x88\x94\x67\x8a\ +\x0b\x82\x58\x9c\x37\x4f\x26\x48\x91\x11\x3f\x61\xf2\x1f\x5c\x14\ +\x6a\x87\x36\x44\xb7\x57\x07\x58\x44\xca\x33\xc5\x05\x41\x2c\xce\ +\x9b\xa7\x13\x84\x0d\xff\xb5\x99\x69\xdc\x98\x78\x41\x90\xf5\xdc\ +\xa7\x84\xc4\x44\x44\x51\x5e\x8d\xf0\xa7\x7a\xa3\x61\xcf\x96\x16\ +\x1f\x35\xcf\x14\xaf\x0a\x04\x89\x4f\xc8\x80\x96\x9b\x4a\xbf\x65\ +\x31\x9e\x39\x41\x16\xb5\x16\x2b\x88\x45\x00\xab\x02\x41\xb4\x56\ +\x90\xa0\x96\xc1\xe8\xf1\x7f\x83\x2c\x22\xe5\x99\xe2\x82\x20\x16\ +\xe7\xcd\xd3\x09\xc2\x2e\x12\x85\x0d\xa2\xfe\x10\x08\x82\x54\x63\ +\x82\x30\x72\xbc\xf6\x56\x1a\x32\x32\xf8\x3e\x5b\x8d\xfa\xb4\x46\ +\xd8\xe4\x5e\x16\x91\xf2\x4c\x71\x41\x10\x8b\xf3\xe6\xa9\x2b\xc8\ +\x7a\x96\x87\x6b\x79\x06\x4e\x9f\xc9\xd3\x44\xa0\xd3\xa4\x1b\xd1\ +\xa4\x6f\x1b\xcd\x7a\x55\xb1\x82\x20\x88\xc5\x59\xf5\x34\x82\xb0\ +\x4c\x29\x8c\x18\x3b\x77\x5d\xd2\x35\x72\x47\x80\x37\xfa\xc4\x8e\ +\xd4\x55\xb7\x2a\x56\x12\x04\xb1\x38\xab\x9e\x42\x10\x76\x29\x98\ +\xb0\x22\x03\xeb\x37\x18\xcb\x05\xdc\x7c\x50\x07\xb4\xbf\xff\x3a\ +\x8b\x28\x79\xae\xb8\x20\x88\xc5\xb9\xab\xec\x04\x61\x76\xc6\x8f\ +\x89\xc7\x95\x8c\x8d\x59\x59\xc6\xb2\x35\xfa\xd6\x0f\xc4\x0d\xd5\ +\xdc\xe5\x5d\x10\xa4\x0a\x13\xe4\xcf\x6d\x67\x15\x0f\x5e\x3d\x76\ +\xc6\xd5\x30\xb0\xad\x55\xb7\x19\x03\xab\x7d\xd0\x94\x20\x48\x15\ +\x24\xc8\xa1\x43\x97\x11\xb7\x38\x5d\xb7\x9d\xe1\x8a\x1c\xec\xfb\ +\x88\xd5\xd5\x30\x2f\x89\x87\x20\x48\x15\x22\x08\xdb\x4e\xc5\x7d\ +\x95\x6e\xd8\xce\x28\x09\x01\xbb\x14\x0c\x9d\xdc\xb3\xda\xaf\x1c\ +\x45\x98\x08\x82\x54\x11\x82\x24\xac\x38\x6c\xca\xce\x28\x39\xfc\ +\xea\x6e\x90\xbb\x7a\x14\x04\x41\x3c\x9c\x20\x56\xec\x8c\xa2\xa1\ +\x33\x67\xc4\xd0\xc9\x37\xc2\xbf\x41\x90\x45\x34\xaa\x9e\xb8\x20\ +\x88\xc5\x39\xad\xa8\x53\x2c\xab\x76\x06\x1b\x36\x3b\xa5\x0a\x9b\ +\xd4\xb3\xda\x06\x43\xe9\x99\x7a\x41\x10\x3d\x28\x71\xea\x94\x37\ +\x41\xec\xb0\x33\xd8\x09\x55\xc8\xc8\xce\xd5\x3a\xd6\x5c\xef\xb4\ +\x0b\x82\xe8\x45\x4a\xa5\x5e\x79\x12\xc4\x2e\x3b\x23\x64\x64\x97\ +\x6a\x9f\xce\x47\xef\xb4\x0b\x82\xe8\x45\xaa\x02\x09\x22\xec\x0c\ +\x8b\x93\x64\x41\x5c\x10\xc4\x02\x78\x4c\xd4\x9d\x2b\x88\xb0\x33\ +\x2c\x4e\x8e\x0d\xe2\x82\x20\x16\x41\x74\x07\x41\x84\x9d\x61\x71\ +\x52\x6c\x14\x17\x04\xb1\x08\xa6\x16\x41\xba\x5e\x13\x8c\x29\x93\ +\x3a\xe8\xee\x45\xd8\x19\xba\xa1\x2a\x97\x8a\x82\x20\x16\x61\xd6\ +\xfa\x4e\x7a\xbd\xba\x3e\x98\xfd\xe6\xb5\x9a\xbd\x08\x3b\x43\x13\ +\xa2\x0a\xa9\x20\x08\x62\x11\x76\x2d\x82\xb0\xe6\xc7\x8c\x6a\x89\ +\x7f\x0d\x68\xec\xb2\x27\x61\x67\x58\x9c\x00\x37\x8b\x0b\x82\x58\ +\x04\xf8\xe8\xda\x7d\xd8\xf1\xfe\x6f\xdc\x56\x02\x02\x1c\x88\x1a\ +\xd2\x1c\x03\x07\x34\x2a\xae\x67\x36\x3e\xa3\x64\x47\xe2\x3e\xc3\ +\xe2\xe4\xe9\x10\x17\x04\xd1\x01\x12\xaf\x4a\x41\x66\x1e\xd6\x3f\ +\x1c\x0f\x67\x56\xbe\x66\x4b\x8c\x28\x2d\x9a\x07\x28\xf5\xf4\x46\ +\xf4\xa9\x35\xca\xfc\xa6\xc4\x7d\x86\x26\xe4\x96\x2b\x08\x82\x58\ +\x86\x10\x48\x7d\x6f\x03\x8e\xaf\x3b\x60\x43\x4b\xda\x4d\x08\xbf\ +\x29\x6d\x8c\xec\xac\x21\x08\x62\x03\x9a\x97\x0e\x9c\xc3\x96\x27\ +\xbf\xb3\xa1\x25\xf5\x26\x84\xdf\x94\x5b\xe1\x55\x6d\x5c\x10\xc4\ +\x26\xdc\x0f\xad\xdc\x81\x3d\xff\xdb\x6a\x53\x6b\xff\x34\x23\xec\ +\x0c\xdb\x21\x35\xd4\xa0\x20\x88\x21\xb8\xf8\x95\xff\x7e\x63\x1d\ +\x4e\x6f\x39\x6c\x5b\x8b\xc2\xce\xb0\x0d\x4a\xd3\x0d\x09\x82\x98\ +\x86\xae\xac\x20\x33\xd8\x77\xcd\xff\xdd\xb2\x3d\x22\xec\x0c\x1b\ +\x27\xc5\x62\x53\x82\x20\x16\x01\x74\x25\xce\x8e\x7e\x77\xcf\xfb\ +\x43\xd7\xc9\x56\x49\x79\x61\x67\xb8\x61\x32\x2c\x36\x29\x08\x62\ +\x11\x40\x35\xf1\xec\x93\x99\xc8\x58\xb9\x03\x47\xd7\xee\xd7\x24\ +\x0a\x8b\x03\x6f\x3e\xa4\xa3\x48\x92\xe0\xa6\xb9\xb0\xd2\xac\x20\ +\x88\x15\xf4\x74\xc8\xb2\x6d\xd7\xc9\xdf\x33\x70\x2e\xf9\x38\x72\ +\x4e\x66\xe1\x52\xfa\x59\xf8\xd7\x0f\x82\x57\xa0\x0f\x82\xc3\x1b\ +\x20\x38\xbc\x91\x88\xe8\xd3\x81\x63\x45\x55\x11\x04\xa9\x28\xe4\ +\x45\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\x50\xb2\xa2\x10\x10\x04\ +\xa9\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\x50\xb2\xa2\ +\x10\x10\x04\xa9\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\ +\x50\xb2\xa2\x10\x10\x04\xa9\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\ +\x47\x4c\x93\x50\xb2\xa2\x10\x10\x04\xa9\x28\xe4\x45\xbf\x1e\x81\ +\x80\x20\x88\x47\x4c\x93\x50\xb2\xa2\x10\x10\x04\xa9\x28\xe4\x45\ +\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\x50\xb2\xa2\x10\x10\x04\xa9\ +\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\x50\xb2\xa2\x10\ +\x10\x04\xa9\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\x47\x4c\x93\x50\ +\xb2\xa2\x10\x10\x04\xa9\x28\xe4\x45\xbf\x1e\x81\x80\x20\x88\x47\ +\x4c\x93\x50\xb2\xa2\x10\xb0\x85\x20\x61\x53\x7a\xa1\xd1\xcd\xad\ +\x2b\x6a\x0c\xa2\x5f\x81\x80\xdb\x10\x38\xfe\xf3\x01\xa4\xbe\xbb\ +\x81\xdb\x3e\x89\x89\x88\x3a\x01\xa0\x81\x5a\xad\x96\x51\x61\x68\ +\x3b\xb6\xab\xdb\x94\x14\x0d\x0b\x04\x2a\x0a\x81\x3d\x5f\xfc\x89\ +\x43\xcb\xd3\xd4\xbb\xa7\x38\x46\xa2\x23\x22\xb7\x13\x90\x08\xb5\ +\x5a\x3e\xb5\xfd\xd0\x73\x4e\x24\x1c\xbe\x5e\x15\x35\x0e\xd1\xaf\ +\x40\xc0\x76\x04\x0a\xb2\xf3\xf1\xdb\xc4\xe5\xc8\x3b\x9f\xc3\x69\ +\x9b\x6e\x23\x31\xe1\x51\x5f\x80\x60\x1c\x4f\x83\x46\xb7\x84\x20\ +\xec\xb1\x9e\xb6\x2b\x29\x1a\x14\x08\x54\x14\x02\x6c\x6b\xc5\xb6\ +\x58\xdc\x42\xf1\x19\x19\x13\x1e\x35\x4c\x22\x58\xaa\xa5\x68\xcd\ +\xf6\xf5\xd0\xb8\x6f\x1b\x04\x34\x0e\x02\x91\x24\xad\xea\xe2\x77\ +\x81\x40\xa5\x43\x80\x3a\x65\x64\x1f\xbb\x84\xa3\x49\x7b\x71\x71\ +\xef\x59\x6d\xfd\x9c\xce\xa1\xe4\xc1\x6e\xdd\xbc\xb3\x72\x5b\x1c\ +\x04\x81\xeb\xcf\x24\x69\x37\x23\x6a\x08\x04\xaa\x1c\x02\x94\xd2\ +\x8c\x40\xdf\x8c\x36\x84\x8d\x2c\x26\x3c\x72\x02\x08\xf9\xa8\xca\ +\x8d\x52\x0c\x48\x20\x60\x16\x01\x59\x7e\x20\x36\x75\xf9\x67\x0a\ +\x41\x00\x90\xe8\x88\xa8\x75\x04\xb8\xd9\x6c\x7b\x42\x4e\x20\x50\ +\x55\x10\xa0\xa0\x89\x71\xc9\x09\x03\x00\xd0\x22\x82\x60\x4c\xc4\ +\xa0\x60\x89\x7a\xff\x05\x42\x5a\x54\x95\x81\x8a\x71\x08\x04\x8c\ +\x22\x40\x81\xfd\xc8\xce\xe9\x1a\xb7\x77\xd5\x45\x65\xe5\x28\xd9\ +\x40\x4c\xe7\x21\x1d\x28\x75\x7c\x4f\x80\x10\xa3\x0d\x8b\xfa\x02\ +\x01\x8f\x47\x80\xd2\xbd\x52\x01\x19\xf4\xe5\xce\xf8\xdd\x45\x63\ +\x29\x45\x10\xf6\x9f\xd1\x6d\x6f\xaf\x09\x3f\xbf\xff\x11\x82\x61\ +\x1e\x3f\x60\x31\x00\x81\x80\x5e\x04\x28\xfd\xda\x27\x5f\xfe\xf7\ +\xfc\x5d\x2b\x2e\x95\x14\x29\x43\x90\xa2\x1f\xa3\xc3\x23\x07\x12\ +\xe0\x23\x10\xd2\x46\x6f\x1f\xa2\x9e\x40\xc0\xd3\x10\x60\x5b\x2a\ +\xc9\x89\x07\x16\xa4\xc5\x27\xb9\xd2\x5d\x95\x20\x45\x95\xc7\x44\ +\x0c\xed\x2f\x51\x69\x24\x08\xed\x06\x4a\x1a\x83\xe0\x9f\x0f\x82\ +\x7b\x1a\x1a\x42\x5f\x81\x00\xc5\x71\x80\x1e\xa6\xc0\x16\x49\x26\ +\x4b\xd5\x88\x51\x04\xd4\xff\x03\x28\x9d\xf0\xbb\x14\x01\x3b\xd8\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x19\xad\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xfa\x00\x00\x00\xc8\x08\x06\x00\x00\x00\xc1\x5e\xfc\x9b\ +\x00\x00\x19\x74\x49\x44\x41\x54\x78\x5e\xed\x9d\x79\x78\x56\xd5\ +\x9d\xc7\xbf\xe7\x4d\x42\xc8\x06\x84\x40\xd8\x17\x89\xec\x09\xc8\ +\x22\xc8\x62\x51\x6b\xd1\x11\xc4\x44\xa6\xb6\x9a\xc8\xd3\xaa\xad\ +\x9d\x67\xc6\x8e\x3e\x1d\x5b\x69\x15\x1d\x81\x82\x4e\x6b\x95\x69\ +\x9f\xda\xd6\xaa\xb5\x01\x69\x6d\x21\xd0\x2a\x2d\x28\xe0\x58\x10\ +\xd1\x00\x81\x04\x90\x35\xec\x10\x48\x00\xb3\x91\xed\xbd\xf3\x9c\ +\xd0\x40\x02\x24\xf7\x9c\xbb\xbd\xdb\xf7\xfd\xa7\xd8\xf7\xf7\xfb\ +\x9d\x73\x3f\xe7\x7e\x72\xce\x7b\x57\x01\x1b\x9f\xfb\xd3\x67\x8c\ +\xf0\xc1\x37\x05\x10\xc3\x85\x40\x3f\x18\xe8\x07\x61\xf4\x03\x44\ +\xbc\x8d\xb2\x4c\x25\x81\xc8\x26\x60\x18\xe5\x86\x40\x31\x0c\x1c\ +\x12\xf2\x7f\x81\x1d\x68\xf0\xaf\xcd\xdd\xb9\x72\x9f\x55\x30\x42\ +\x37\x31\x27\x23\x33\x13\x10\x0f\x18\x86\x71\xab\x10\xa2\x8b\x6e\ +\x3e\xe3\x49\x80\x04\x2c\x13\x38\x66\xc0\x78\x5f\x18\xc6\xaf\x73\ +\x0b\x57\x6c\xd4\xa9\xa2\x2c\xfa\x83\x43\xb3\xd2\xfd\x51\x78\x55\ +\x08\x4c\xd2\x69\x80\xb1\x24\x40\x02\xce\x13\x30\x80\x3f\x35\xd4\ +\x19\x4f\x2e\xdd\x9d\x27\x67\x7c\xd3\x8f\xa9\xe8\x0f\x8e\x98\x9a\ +\xe0\xf7\xc7\x2f\x12\x42\x3c\x64\x5a\x8d\x01\x24\x40\x02\x9e\x12\ +\x30\x60\xbc\xb8\x78\x47\xde\x0f\xcc\x1a\x6d\x53\xf4\x9c\x11\x33\ +\x06\x1b\x86\x6f\x85\x80\x18\x6c\x56\x88\xdf\x93\x00\x09\x04\x86\ +\x80\x01\x6c\xaa\xad\xbe\x30\xe3\x9d\x7d\xab\x4e\xb7\xd6\x83\x56\ +\x45\xcf\x4e\xcf\x9a\x2e\x84\xb1\x14\x10\x09\x81\xe9\x3e\x5b\x25\ +\x01\x12\x50\x26\x60\xe0\x84\xe1\x13\xf7\x2e\xde\xbe\x6c\xd3\xb5\ +\x72\xae\x29\x7a\xce\xb0\x19\x33\x0c\x9f\x2f\x4f\x08\x61\xba\xb4\ +\x57\xee\x08\x03\x49\x80\x04\xdc\x25\x60\x18\x35\xf5\x7e\xff\x84\ +\xa5\x3b\x57\x6e\xbd\xb2\xa1\xab\x44\xce\x1e\x76\xcf\x30\x44\xf9\ +\x3e\x13\x40\x9c\xbb\xbd\x62\x75\x12\x20\x01\xc7\x09\x18\x38\x81\ +\x06\x31\x26\x77\xd7\xb2\x13\xcd\x6b\xb7\x10\xfd\x81\x8c\x69\xc9\ +\xc2\x88\x29\x10\x42\xf4\x71\xbc\x03\x2c\x48\x02\x24\xe0\x11\x01\ +\x63\x6b\x69\x75\xcd\x84\x55\xfb\x56\xd5\x34\x35\xd8\x42\xf4\xec\ +\x8c\xcc\x37\x04\xc4\x37\x3c\xea\x0d\x9b\x21\x01\x12\x70\x8d\x80\ +\x31\x27\x77\x47\xde\xdc\xab\x44\x7f\x60\xe8\xcc\x81\xbe\x68\xff\ +\x1e\xab\xed\x46\xc5\xc7\x20\xa9\x7f\x32\x92\xd2\x3a\x23\x3a\x2e\ +\xc6\x6a\x19\xe6\x91\x40\xc4\x13\x68\xb8\x50\x8f\x8a\xe2\x73\x28\ +\x2f\x2e\x43\xdd\x17\x97\x26\x65\x2d\x2e\x06\x70\x3e\xa6\xdc\xe8\ +\xff\x66\x71\xde\x39\x99\x78\x69\x46\xcf\xc9\xc8\x5c\x02\x88\xfb\ +\xb5\xaa\x01\x48\xcb\xbe\x01\xdd\x6e\xee\x8f\xb8\xd4\x44\xdd\x54\ +\xc6\x93\x00\x09\x98\x10\xa8\x29\xab\xc2\x99\xcf\x8e\x62\xcf\x1b\ +\x5b\xe0\xaf\xa9\xd7\xe4\x65\xcc\xcd\xdd\x91\x37\xe7\x92\xe8\xf7\ +\x67\xdc\x3d\x24\x0a\xd1\xbb\x74\xaa\x24\xa5\x25\x23\xfd\x89\x9b\ +\x11\xdf\xb3\x83\x4e\x1a\x63\x49\x80\x04\x2c\x10\x90\xc2\x17\xfd\ +\xec\x1f\x38\x5b\x54\xa2\x9c\x6d\x18\xa8\xf0\xd7\xd6\x5f\xf7\xf6\ +\x9e\xbf\x9c\x69\x9c\xd1\x73\xd2\x33\x5f\x86\x10\xff\xa9\x5a\xa1\ +\xcf\xf4\x21\x18\xf4\xd0\x58\xd5\x70\xc6\x91\x00\x09\x38\x44\xe0\ +\x50\xde\x4e\xec\x7b\x6b\x8b\x72\x35\xc3\x6f\x3c\xb1\xb8\x28\xef\ +\xe5\x7f\x8a\x9e\x75\x1c\x02\x3d\x54\xb2\xe5\x4c\x3e\xee\x85\xbb\ +\x00\x1f\x4f\xb1\xab\xf0\x62\x0c\x09\x38\x4d\x60\xfb\x82\xf5\x38\ +\xfd\xe9\x51\xa5\xb2\x86\x81\x75\x8b\x0b\x97\xdf\x26\x72\x86\x67\ +\x8d\x84\x0f\xdb\x54\xb2\x7c\x31\x3e\x8c\x7f\xe5\x6e\xc4\x77\x4f\ +\x52\x09\x67\x0c\x09\x90\x80\x0b\x04\xea\x2a\x6a\xb1\xe9\xb1\x95\ +\xa8\x3d\x7f\xc1\xb4\xba\x01\x34\xd4\x56\x46\xa7\x88\x9c\x8c\xcc\ +\x67\x00\xf1\xbc\x69\x06\x80\x41\x8f\xdc\x88\x3e\x77\xf1\xb2\x77\ +\x15\x56\x8c\x21\x01\x37\x09\x94\x6e\x3d\x8e\x6d\x73\xd7\x2a\x35\ +\x61\x34\xf8\xb3\x45\x76\x46\xd6\x0a\x01\xcc\x30\xcb\x10\x51\x02\ +\xb7\xfd\xe1\x01\x2e\xd9\xcd\x40\xf1\x7b\x12\xf0\x88\xc0\x86\xef\ +\x2c\xc7\x85\x92\x4a\xf3\xd6\xfc\xc6\x4b\x22\x3b\x3d\x6b\xb3\x10\ +\xb8\xd1\x2c\x3a\xb1\x7f\x32\xc6\xbf\x34\xcd\x2c\x8c\xdf\x93\x00\ +\x09\x78\x44\xa0\x60\xc1\x7a\x9c\x51\xfa\xad\x6e\xbc\x2d\xb2\xd3\ +\x33\x0f\xab\x5c\xf2\xda\xe3\x96\x01\x18\xf6\xdd\x89\x1e\x6d\x02\ +\x9b\x21\x01\x12\x30\x23\xb0\x7f\xc9\x36\x14\xff\xa9\xd0\x2c\x0c\ +\xf2\x80\x9c\xc8\xc9\xc8\x32\x4c\x23\x01\x5c\x3f\x6b\x34\xfa\x65\ +\x0e\x53\x09\x65\x0c\x09\x90\x80\x07\x04\x4a\x36\x1c\xc2\x8e\x9f\ +\x7e\x64\xde\x92\x81\x5d\xca\xa2\xf3\x40\x9c\x39\x4f\x46\x90\x80\ +\x97\x04\xce\x6c\x39\x86\x82\x79\xeb\x4c\x9b\x34\xe4\x43\x26\x55\ +\x67\x74\x8a\x6e\xca\x93\x01\x24\xe0\x29\x01\x8a\xee\x29\x6e\x36\ +\x46\x02\x81\x21\x40\xd1\x03\xc3\x9d\xad\x92\x80\xa7\x04\x28\xba\ +\xa7\xb8\xd9\x18\x09\x04\x86\x00\x45\x0f\x0c\x77\xb6\x4a\x02\x9e\ +\x12\xa0\xe8\x9e\xe2\x66\x63\x24\x10\x18\x02\x14\x3d\x30\xdc\xd9\ +\x2a\x09\x78\x4a\x80\xa2\x7b\x8a\x9b\x8d\x91\x40\x60\x08\x50\xf4\ +\xc0\x70\x67\xab\x24\xe0\x29\x01\x8a\xee\x29\x6e\x36\x46\x02\x81\ +\x21\x40\xd1\x03\xc3\x9d\xad\x92\x80\xa7\x04\x22\x5e\xf4\x73\x45\ +\xa7\x50\x7e\xf0\x2c\xea\x2b\x6b\x51\x57\x59\x8b\x8a\x83\x65\x97\ +\x06\x20\x39\xbd\x7b\xe3\xbf\xdb\xa7\x26\x42\xde\x7a\x9b\x74\x5d\ +\xb2\xa7\x83\xc3\xc6\x48\xc0\x29\x02\x11\x27\x7a\x75\x49\x05\xce\ +\x15\x95\xe0\xf4\xa6\xc3\xca\xcf\xd2\x6a\x82\x1d\x9d\x10\x83\xae\ +\xe3\xfa\xa0\xeb\xf8\xbe\xe8\x3a\xae\xb7\x53\x63\xc0\x3a\x24\xe0\ +\x3a\x81\x88\x11\x5d\xce\xda\x7b\x5f\xff\x54\xeb\x11\xb8\x66\xf4\ +\xe5\x13\x6e\x07\xdc\x37\x02\xd1\x89\xed\xcc\x42\xf9\x3d\x09\x04\ +\x94\x40\xd8\x8b\x2e\x67\xf0\x83\x7f\xd8\x8e\x13\xeb\x0e\xb8\x02\ +\x5a\xce\xf2\x7d\xa7\x0f\x45\x9f\x69\x43\x28\xbc\x2b\x84\x59\xd4\ +\x09\x02\x61\x2d\xfa\x9e\xd7\x3f\xc3\x91\xbf\xee\x76\x82\x93\x69\ +\x0d\x29\xfc\xc0\x87\xc6\xa2\xe7\xad\x69\xa6\xb1\x0c\x20\x01\xaf\ +\x09\x84\xa5\xe8\xf5\x15\xb5\xc8\x9f\xb3\xba\xf1\x9d\x54\x5e\x7f\ +\xf8\xc2\x0a\xaf\x89\xb3\x3d\x15\x02\x61\x27\xba\xfc\x2d\xbe\x7d\ +\xe1\x7a\x5c\x38\xad\xf0\xc4\x4b\x15\x42\x16\x62\xba\xde\xd8\x1b\ +\xc3\x1e\x9b\xc8\xa5\xbc\x05\x76\x4c\x71\x87\x40\x58\x89\x7e\xb6\ +\xf0\x14\xb6\xbf\xb0\x1e\xf5\x95\x75\xee\xd0\xd2\xa8\x9a\xd8\xbf\ +\x13\xc6\x3c\x3f\x95\xb2\x6b\x30\x63\xa8\x7b\x04\xc2\x46\x74\x39\ +\x93\x6f\x99\xb3\x3a\x28\x24\x6f\x1a\x2e\xca\xee\xde\x8e\xcb\xca\ +\x7a\x04\xc2\x42\xf4\x40\xfe\x26\x37\xc3\xdd\xe3\xd6\x01\x8d\xcb\ +\x78\x7e\x48\x20\x90\x04\xc2\x42\xf4\x2d\xcf\xac\x76\xe4\xfc\x78\ +\xaf\x76\xed\x10\xe7\xf3\xb5\x18\x8f\x7d\x17\xcc\xdf\x59\x65\x36\ +\x80\x03\xbf\x39\x06\x7d\xef\x1e\x6a\x16\xc6\xef\x49\xc0\x35\x02\ +\x21\x2f\xfa\x81\xa5\x05\x38\xf8\xc7\x1d\x96\x00\x25\x47\x47\x63\ +\x64\x42\x1c\x46\x26\x24\x60\x60\x5c\xfb\x56\x6b\x1c\xad\xa9\xc5\ +\xa6\xf2\x72\x14\x54\x56\xe3\x6c\xbd\xee\x0b\xe6\x2f\x96\x1d\xfd\ +\xfc\x57\x90\x9c\xde\xcd\x52\x3f\x99\x44\x02\x76\x09\x84\xb4\xe8\ +\xf2\x62\x98\xcd\xdf\x7b\x57\xfb\x77\x79\x7b\x9f\x0f\xb7\x76\x4c\ +\xc2\x6d\x1d\x3b\x22\x2e\xaa\xe5\x0c\x6e\x06\xf4\xdd\xb2\xb3\x58\ +\x77\xbe\x1c\x17\xfc\x7e\xb3\xd0\x16\xdf\x27\x0f\x4f\xc5\xe8\xb9\ +\x53\xb5\x72\x18\x4c\x02\x4e\x11\x08\x69\xd1\x8b\x16\x6d\xc0\xc9\ +\xf5\x07\xb5\x58\xc8\xe5\xf9\xe3\x3d\xbb\x6b\x0b\xde\xbc\x91\xea\ +\x06\x3f\x5e\x3e\x7e\x12\xc7\x6a\x6b\xb5\xda\x1e\xf1\xd4\x94\xc6\ +\x6b\xe5\xf9\x21\x01\xaf\x09\x84\xac\xe8\x72\x36\xdf\xf8\x9d\x3c\ +\x2d\x5e\xe3\x92\x12\xf0\xd5\x94\x14\x5b\x92\x37\x35\x28\x65\x7f\ +\xa7\xb4\x14\x9b\xcb\xd5\xcf\xd7\xb7\xef\x9a\x80\x49\xbf\xca\xd2\ +\xea\x33\x83\x49\xc0\x09\x02\x21\x2b\xba\xee\x6c\x9e\x91\x10\x8f\ +\x47\xbb\xa7\x3a\xc1\xac\x45\x8d\x97\x8f\x9d\x84\xce\x01\xbb\xa1\ +\x8f\x4d\xe0\x65\xb2\x8e\x8f\x02\x0b\x9a\x11\x08\x59\xd1\x3f\xb8\ +\x37\xd7\x6c\xdb\x2e\x7d\xef\xc4\x72\xbd\xb5\xc6\x74\x97\xf1\x5d\ +\xc6\xf5\xc6\xc8\xa7\x6e\x51\xee\x3b\x03\x49\xc0\x09\x02\x21\x29\ +\xfa\xe9\xcd\x47\xb0\x7d\xe1\x87\xca\xdb\xff\xdf\x7d\x7b\x23\x25\ +\x26\x5a\x39\x5e\x37\x50\x1e\x95\x5f\x78\xf4\xb8\x72\xda\x94\xb7\ +\xee\xe3\x15\x73\xca\xb4\x18\xe8\x04\x81\x90\x14\x5d\x67\xd9\x2e\ +\x7f\x97\xcf\x4a\xed\xea\x04\xab\x36\x6b\xbc\x55\x72\x5a\xf9\xf7\ +\x3a\x0f\xca\xb9\x3e\x1c\x6c\xe0\x0a\x02\x21\x29\xfa\x86\x47\x97\ +\x2b\xdf\xb4\xf2\x3f\xfd\xfb\x3a\x72\xf0\xcd\x6c\xcf\x29\xad\xab\ +\xc7\xb3\x87\x8f\x9a\x85\x35\x7e\xdf\xfd\x96\xeb\x30\xfc\xbb\x93\ +\x94\x62\x19\x44\x02\x4e\x10\x08\x39\xd1\xe5\x35\xed\xf2\xdc\xb9\ +\xca\xc7\xad\x03\x70\xad\xb5\xbd\xe0\xc8\x71\xa5\x53\x6e\xf2\xde\ +\xf5\x29\xbf\xff\x9a\xca\x26\x30\x86\x04\x1c\x21\x10\x72\xa2\xcb\ +\x3b\xd4\xb6\xcc\x59\xa3\xb4\xf1\x39\xa9\x5d\x70\x53\x52\xa2\x52\ +\xac\x13\x41\xf2\x62\x9a\x55\x67\xcf\x2b\x95\xfa\xf2\xb2\x1c\xa5\ +\x38\x06\x91\x80\x13\x04\x42\x4e\xf4\xe3\xeb\xf6\x63\xd7\xff\x7e\ +\xac\xb4\xed\x6e\x1f\x84\xbb\xb2\x13\x7b\xab\x2f\xe0\x95\xe3\x27\ +\x95\xfa\xc6\x03\x72\x4a\x98\x18\xe4\x10\x81\x90\x13\x5d\xe7\xda\ +\xf6\x9f\xa7\xf5\x77\x08\x93\x5a\x19\x1d\xd1\x79\xed\xbb\x1a\xd3\ +\xe6\x51\xfb\xdf\x2e\x40\xc9\x86\xe2\xc6\xe3\x33\x31\x1d\xda\xa3\ +\xe3\xc0\x14\x0c\xfc\xc6\x58\xb4\x4f\x4d\xd0\x2f\x16\x61\x19\x14\ +\xdd\xc1\x01\x97\xe7\xd4\x9f\x2c\x3e\xac\x54\x91\xa2\x2b\x61\xba\ +\x14\xb4\x6d\xc1\x7a\x94\x7e\x7a\xf5\xc1\x4e\x5f\x8c\x0f\x19\x4f\ +\x4e\x41\x97\xb1\xbd\xf4\x0a\x46\x58\x74\xc8\x89\xae\x73\x6a\xcd\ +\xeb\x19\x5d\xee\x3b\xff\xb1\xbf\x58\x69\x17\xa2\xe8\x4a\x98\xe0\ +\xaf\xf7\xa3\x60\xde\x5a\x94\x6d\x6f\xfd\x27\x91\x88\xf6\x61\xe4\ +\xec\x5b\x90\x32\xaa\xa7\x5a\xd1\x08\x8c\x0a\x39\xd1\x83\x79\xe9\ +\xae\x73\xe1\x0c\x45\x37\xb7\xcd\x5f\xd7\x80\x82\xf9\xeb\xda\x94\ +\xbc\xa9\x0a\x65\x6f\x9b\x27\x45\x37\xdf\xdf\x94\x23\x74\x7e\xa3\ +\x8f\xfb\xe9\x34\xbe\xe2\xa9\x0d\xb2\x52\xf2\xad\xcf\xaf\x85\x7c\ +\x65\x96\xea\x87\xb2\xb7\x4e\x2a\xe4\x44\xd7\x39\xbd\xe6\xf5\x51\ +\xf7\x4d\xe5\x15\xc8\x2d\x39\xa3\xb4\x5f\xf2\xf4\x5a\xeb\x98\xac\ +\x48\xce\x99\x3d\xcc\x66\x74\x1d\xd1\x67\xa6\x74\xc6\xad\x9d\x3a\ +\x28\x89\xe7\x44\xd0\xaf\x4e\x96\x60\x47\x65\x95\x52\x29\x8a\x7e\ +\x6d\x4c\x76\x24\x6f\x2e\xfb\x0d\xcf\xdc\x86\xce\x19\x17\x5f\x92\ +\xc9\x0f\x10\x72\x33\xba\x7c\x10\xe4\x87\xb3\xfe\xa8\x34\x76\x5e\ +\x5f\x19\xf7\xe4\xc1\x43\xa8\xf6\x1b\xa6\x7d\x4b\xec\x97\x8c\xf1\ +\x3f\x9b\x66\x1a\x17\x69\x01\x4e\x48\xde\xc4\x4c\x1e\x8d\x1f\xf9\ +\x34\x65\x6f\xe2\x11\x72\xa2\xcb\x8e\x7f\xf2\xc4\xbb\xa8\x38\x74\ +\x56\xc9\x03\xaf\x96\xef\x3a\xcb\x76\x3e\x2c\xf2\xea\xa1\x73\x52\ +\x72\xca\x7e\x35\xdf\x90\x14\xfd\xf0\x5f\x76\x61\xef\x1b\xf9\x4a\ +\xa2\x7b\x71\xf7\x9a\x3c\x7f\x3e\xe7\xf0\x11\xa5\xd9\x5c\x76\x9a\ +\x07\xe2\x5a\x0e\x9d\x1b\x92\x53\xf6\x96\x8c\x43\x52\x74\xdd\xc7\ +\x48\x3d\xd5\xbb\x27\x7a\xc7\xba\xf7\x6a\x63\x9d\x6b\xdc\x63\xbb\ +\x26\x60\x32\x1f\x27\x75\x69\x2f\x74\x53\x72\xca\x7e\x59\xf6\x90\ +\x14\x5d\x76\xff\x1f\x8f\x2e\x47\x8d\xe2\xfb\xd5\xe2\x7c\x02\xcf\ +\xf7\xed\xe3\xca\xed\xaa\x3a\x4b\x76\xd9\xef\x3e\xd3\x06\x63\xd0\ +\xc3\x37\x2a\xad\x46\xc2\x3d\xc8\x0b\xc9\x29\xfb\x45\x02\x21\x2b\ +\xba\xce\xcd\x2d\x72\x43\x7b\xb5\x8b\xc1\xe3\x3d\x7b\x38\x2a\xbb\ +\xbc\x40\xe6\x95\xe3\x27\x94\x97\xec\xb2\x1f\x13\x5f\xcd\x44\x5c\ +\xaa\x77\x77\xd4\x05\xeb\x1f\x8b\x86\x9a\x06\x6c\x9b\xbf\x16\xe7\ +\x0a\xd5\xcf\x93\x37\x6d\x4b\x7c\x7c\x14\xaa\xaa\x1a\xb4\x37\xcd\ +\xd7\x2e\x0a\x37\xfc\xe8\x56\x24\x47\xe0\xd1\xf8\x90\x15\x5d\x77\ +\x56\x77\x5a\x76\x39\x93\xff\xf9\x4c\xa9\x96\xe4\x7c\xe0\xc4\x65\ +\x37\xad\xbe\x5d\xa7\x57\xef\x38\xfc\xf0\xc9\xe1\x58\xb2\xb4\x18\ +\x1b\x3e\x56\xbb\x66\xa1\xf9\x5f\x04\x5f\x6c\x14\x46\xcd\xf9\x32\ +\x3a\x0d\x75\xfe\x41\xa1\xda\x7f\x79\x3c\x4c\x08\x69\xd1\x75\x9f\ +\x1d\x27\xb9\xca\x65\xfc\xb7\xbb\x77\x6b\xf3\xcd\x2c\x66\xfc\x57\ +\x95\x9d\xc3\xbb\x67\xf5\xde\xbd\x1e\x15\x1f\x83\xc9\xaf\x66\x45\ +\xfc\xb3\xe2\xec\x2c\xd7\x7b\xf7\x8a\xc3\xec\xef\x0f\x47\x62\x62\ +\x34\x0c\xc3\xc0\x6f\x7e\xbb\xdf\x9a\xec\xed\xa2\x30\xea\xd9\xc8\ +\x92\x3d\xa4\x45\x97\x42\xe6\x3f\xbd\x06\xe7\x76\xea\x2f\xff\x46\ +\xc4\xc7\x61\x66\x97\x14\xad\x87\x46\x7e\xf2\x45\x05\xde\x3d\x7b\ +\x16\x65\xf5\xfa\xcb\xc6\xeb\xee\xcb\xc0\x80\xaf\x8f\x34\xfb\x1b\ +\x12\xd6\xdf\x3b\x25\x79\x13\x24\xca\xae\xbe\xbb\x84\xbc\xe8\xf2\ +\xd1\x52\xf9\xcf\xac\x46\x43\x95\xb5\x77\xa2\xcb\xdf\xee\x37\xfc\ +\xf3\xdd\x6b\xf2\x55\x4d\x4d\x47\xe7\xe5\x29\x33\xf9\x26\x96\x2a\ +\xbf\x1f\x05\x95\x95\xd8\x5e\x59\xa5\xb5\x4c\x6f\x3e\x04\xf2\x02\ +\x99\x31\x73\xbf\x12\xd1\xb3\x79\x43\x4d\x3d\xb6\xcd\x5b\xa7\x75\ +\xed\x7a\x13\xc3\xe6\x33\xf9\x95\xbb\x36\x65\x57\x93\x3d\xe4\x45\ +\x97\x9b\xa9\x7b\x60\x4e\x0d\x8d\x33\x51\x72\xc9\x3e\xfe\xa5\x69\ +\x11\x7d\x00\x4e\x4a\xbe\xf5\xb9\xf7\x71\xfe\x73\xfd\xdf\xd4\x6d\ +\x49\xce\x99\x5d\x7d\x1f\x0d\x0b\xd1\xe5\xe6\xea\xdc\xbe\xaa\x8e\ +\xc7\x7e\x64\xa4\xdf\x8e\xea\xb6\xe4\x94\x5d\x6d\x1f\x0d\x1b\xd1\ +\xe5\xe6\x16\x2c\x5c\x8f\x33\x9b\xd5\x1e\xb9\xac\x86\xc7\x5e\x54\ +\xa4\xbf\x7e\xc9\x2b\xc9\x9d\x92\x5d\xfe\x51\xee\x38\xa8\x8b\xbd\ +\x41\x0f\xd2\xec\xb0\x12\x5d\x32\xd6\x79\x02\x8d\x9b\x63\x42\xc9\ +\xdd\x5d\xae\xb7\x36\x76\x76\x7e\xb3\x47\xb5\x8f\xc6\xa8\xe7\x6e\ +\x0f\x4b\xd9\xc3\x4e\x74\xb9\x03\xe8\x5c\x0b\xef\xb4\xec\xf2\x37\ +\xf9\x98\xb9\x53\x23\xfa\xa1\x12\x5e\xcf\xe4\x4e\x1e\xa0\x0b\x57\ +\xd9\xc3\x52\x74\x39\xf0\xf2\x1c\x7b\xd1\xa2\x8d\x96\x8f\xc6\x5b\ +\xf9\x03\x20\x8f\xae\x8f\x98\x3d\x85\x07\xde\x5c\x3c\xf0\xa6\x3a\ +\x2e\x9c\xd9\x5b\x92\x0a\x5b\xd1\xe5\x66\xca\x9b\x5f\xe4\x41\xba\ +\x93\xeb\x0f\xaa\xee\x1f\x96\xe2\xe4\x2c\xde\x77\xfa\x10\xf4\x9d\ +\x3e\x34\xe2\x4f\xa1\xb9\x79\x74\x5d\x77\x70\xa4\xec\x6f\xfc\xee\ +\x20\x3e\xfc\xa8\x44\x37\x15\xe1\x36\xb3\x87\xb5\xe8\x4d\xa3\x2b\ +\x85\xdf\xf3\xfa\x67\xae\x1c\xa8\x93\x17\xc2\x44\xba\xe0\x92\x73\ +\xa0\x97\xeb\x6d\x99\xfc\xfa\x9b\x07\x22\x5e\xf6\x88\x10\xbd\x69\ +\x27\x90\x8f\xa1\x3a\xbe\x76\x1f\xce\x16\x95\x28\xdf\xf9\x76\xad\ +\x1d\x48\x2e\xd1\xbb\x8e\xef\x8d\x1e\xb7\xa5\x45\xf4\x32\xbd\x89\ +\x4d\x30\x4b\xde\xd4\x47\x3b\xb2\x8f\x9e\x37\x15\x1d\x06\x74\xd6\ +\x5e\x15\x04\x53\x42\x44\x89\xde\x1c\xbc\xbc\xa2\xee\xf4\x27\x87\ +\x71\xb6\xb0\x04\xe5\xc5\x65\x6d\xfe\x96\x97\xf7\x90\x27\x5d\x97\ +\x8c\xe4\xe1\xdd\xd0\x75\x7c\x1f\xca\xdd\x0c\x64\x28\x48\x6e\x5b\ +\xf6\xf8\x18\xc8\x53\x6f\xa1\x2c\x7b\xc4\x8a\x7e\xad\xbf\xb6\xf2\ +\x79\x74\xe5\xc5\x97\x1f\x51\x95\x9c\xde\x2d\x98\xfe\x28\x07\x5d\ +\x5f\x42\x49\xf2\x48\x97\x9d\xa2\x07\x9d\x3e\xa1\xd1\xa1\x50\x94\ +\x3c\x92\x65\xa7\xe8\xa1\xe1\x55\x50\xf5\xb2\xbe\xba\x0e\xdb\x9e\ +\xff\xc0\xb5\x6b\xd7\xbd\xd8\x58\xcb\xbf\xd9\x43\x74\x19\x4f\xd1\ +\xbd\xd8\xab\xc2\xa8\x0d\x29\xf9\x96\x67\xdf\x47\xf9\xbe\x52\xed\ +\xad\x52\xb9\x41\x45\xbb\xa8\x8d\x84\x48\x92\x9d\xa2\xdb\xd8\x51\ +\x22\x2d\x35\x9c\x24\x77\x62\x19\x3f\x76\xfe\x54\xc8\x33\x30\xa1\ +\xf0\xa1\xe8\xa1\x30\x4a\x41\xd0\xc7\x70\x94\xdc\xae\xec\xd1\x89\ +\xed\x1a\x9f\x33\x10\x0a\xb2\x53\xf4\x20\x90\x28\xd8\xbb\x10\xce\ +\x92\x47\x8a\xec\x14\x3d\xd8\x2d\x0b\x70\xff\x22\x41\xf2\x48\x90\ +\x9d\xa2\x07\x58\xa4\x60\x6e\x3e\x92\x24\x0f\x77\xd9\x29\x7a\x30\ +\x9b\x16\xc0\xbe\x45\xa2\xe4\xe1\x2c\x3b\x45\x0f\xa0\x4c\xc1\xda\ +\x74\x24\x4b\xee\x84\xec\x63\x7f\x7c\x07\x12\x7a\x77\x0c\xaa\xe1\ +\xa5\xe8\x41\x35\x1c\x81\xef\x0c\x25\xbf\x3c\x06\x56\xcf\xb3\xc7\ +\x74\x88\xc5\x98\x79\x53\x83\x4a\x76\x8a\x1e\x78\xb7\x82\xa6\x07\ +\x94\xfc\xea\xa1\x08\x17\xd9\x29\x7a\xd0\x68\x16\xd8\x8e\xd8\x91\ +\xbc\x47\xf7\xf6\x78\x7a\x76\x7a\xe3\x1b\x54\xc2\xf1\x13\x0e\xb2\ +\x53\xf4\x70\xdc\x33\x35\xb7\xc9\xae\xe4\x3f\x7c\x6a\x38\x3a\x24\ +\xc5\x68\xb6\x1a\x5a\xe1\xa1\x2e\x3b\x45\x0f\xad\xfd\xcd\xf1\xde\ +\x52\x72\x75\xa4\xa1\x2c\x3b\x45\x57\x1f\xe7\xb0\x8b\xac\xaf\xaa\ +\xc5\x96\xe7\x3e\xb0\x74\x83\x8a\x5c\xae\x47\xc2\x4c\x7e\xe5\xa0\ +\xdb\x91\x7d\xec\x82\x3b\x11\xdf\x23\x29\x20\xfb\x11\x45\x0f\x08\ +\xf6\xc0\x37\x2a\x25\x97\x2f\xa8\xac\x68\xf6\xa0\x0d\xd5\x5e\x45\ +\xaa\xe4\x76\x4f\xbd\xb5\xeb\xd4\x1e\x63\xe6\xdf\x11\x10\xd9\x29\ +\xba\xea\xde\xad\x11\x57\x75\xfc\x0b\xd4\x55\xd6\x21\x2e\x35\x01\ +\xed\x3a\xb6\xd7\xc8\xf4\x26\xb4\xbe\x52\xde\x6a\xba\x06\xe5\x07\ +\xca\xb4\x1b\xec\xd9\x3d\x0e\xb3\x7f\x30\x0c\x1d\x3a\x84\xf7\x6f\ +\x72\x33\x30\x8b\xdf\x3e\x88\xd5\xef\xeb\xbf\xc5\xb7\x51\xf6\x79\ +\x77\x20\xbe\xa7\xb7\x33\x3b\x45\x37\x1b\x51\x8d\xef\xcb\x76\x9c\ +\xc4\xf6\x85\x1f\xa2\xa1\xfa\xf2\x9b\x5d\xe5\x33\xe6\x86\x3f\x3e\ +\x09\x51\xb1\xc1\x71\x44\x9a\x33\xb9\xc6\x80\x9a\x84\xbe\xb5\xf8\ +\x20\x3e\x58\x6b\x51\x76\x8f\x67\x76\x8a\xee\xd0\xb8\x1f\x5f\xb3\ +\x17\xbb\x7e\xf9\xc9\x35\xab\x25\x0d\xe8\xdc\xf8\xaa\x9f\x98\xc4\ +\x76\x0e\xb5\x66\xad\x4c\x7d\x55\x1d\xb6\xcc\xb1\x38\x93\xf7\x8c\ +\xc3\xec\x27\x39\x93\x5f\x49\x7e\xc9\xd2\x62\xfc\x7d\xcd\x49\xed\ +\x01\x89\xed\x14\x07\xf9\x74\x59\xaf\x66\x76\x8a\xae\x3d\x44\x57\ +\x27\x9c\x58\x7f\x00\x3b\x17\x6d\x6c\xb3\x52\x42\xdf\x4e\x8d\xf7\ +\x2e\xc7\x24\xc5\x3a\xd0\xa2\x7e\x09\xce\xe4\xfa\xcc\x54\x33\x42\ +\x61\x66\xa7\xe8\xaa\xa3\xd9\x4a\x9c\x8a\xe4\x4d\xa9\x81\x92\x9d\ +\x92\xdb\x1c\x64\x85\xf4\x60\x97\x9d\xa2\x2b\x0c\x62\x6b\x21\x3a\ +\x92\x37\x97\x5d\x3e\x82\x28\x3a\xc1\x9b\x65\x3c\x25\xb7\x31\xc0\ +\x9a\xa9\x76\x64\x1f\xbb\xf0\x4e\x57\xdf\x17\x40\xd1\x35\x07\xb3\ +\x29\xdc\x8a\xe4\x4d\xb9\xf2\x65\x10\xf2\x85\x00\x6e\xcb\x4e\xc9\ +\x2d\x0e\xae\x8d\x34\xab\xb2\xc7\x75\x4f\xc4\x4d\xaf\xdc\x0d\x5f\ +\x4c\x94\x8d\xd6\x5b\x4f\xa5\xe8\x16\xb0\xb6\x75\xe0\x4d\xb5\x9c\ +\x3c\x40\x37\xfa\xbf\xa5\xec\xee\x9c\xa6\xe2\x81\x37\xd5\x91\x70\ +\x3e\x6e\xf1\xdb\xc5\x58\xfd\xbe\xfe\x01\xba\xb4\xec\x1b\xd0\x7f\ +\x66\xba\xf3\x1d\x02\x40\xd1\x35\xb1\xda\x99\xc9\xaf\x6c\xca\xad\ +\x99\x9d\x33\xb9\xe6\xa0\xba\x10\x6e\x65\x66\x4f\x1e\xd9\x1d\xa3\ +\x9f\xbd\xdd\x85\xde\x50\x74\x2d\xa8\xc7\xd6\xec\xc3\xee\x5f\x6e\ +\xd2\xca\x31\x0b\x4e\x4a\x4b\xc6\xe8\xe7\xe4\x6f\x76\x67\x66\x76\ +\x5b\x33\x79\x8f\xf6\x98\xfd\xfd\xe1\x11\x7f\x31\x8c\xd9\x98\xa9\ +\x7e\xff\xf6\xd2\x62\xfc\x4d\xe3\xd4\x5b\xfb\x2e\xf1\x98\xf4\xeb\ +\x7b\x55\xcb\x6b\xc5\x71\x46\x57\xc4\xe5\xe4\x4c\xee\xd6\xcc\xce\ +\x99\x5c\x71\x30\x3d\x0c\xd3\x99\xd9\x63\x3b\xc7\x61\xf2\x6b\x33\ +\x5d\xe9\x1d\x45\x57\xc0\xea\xc6\x4c\x7e\x95\xec\x36\x7f\xb3\xd7\ +\x55\xd4\x36\x5e\xd6\x5a\x71\xf0\xf2\x4b\x22\x15\x36\xad\x31\xa4\ +\x27\x67\x72\x55\x54\x96\xe2\x16\xfd\x62\x0f\xf2\xb7\x98\x5f\x6e\ +\x4c\xd1\x2d\xe1\x75\x26\xe9\xd8\x9a\xbd\xd8\xdd\xca\x15\x6f\xce\ +\xb4\x70\xb9\x8a\xd5\xdf\xec\x75\x15\x35\xc8\xff\xd1\x6a\x54\x1e\ +\x39\xaf\xdd\xa5\x48\xbf\x41\x45\x1b\x98\x85\x84\x3f\xbc\x73\x08\ +\xef\xfd\xed\x84\x69\x26\x45\x37\x45\xe4\x4e\xc0\xb1\xbf\xed\xc1\ +\xee\x5f\x6f\xb6\x54\x3c\x3e\x3e\x0a\x55\x55\x0d\xda\xb9\xba\xbf\ +\xd9\xe5\x4c\x9e\xff\xf4\xdf\x51\x79\x58\x5f\x72\xde\xa0\xa2\x3d\ +\x3c\x96\x12\xfe\xf8\xa7\xc3\x78\x77\xd5\x71\xd3\x5c\x8a\x6e\x8a\ +\xc8\xf9\x00\x3b\xcb\xf5\x6f\x3f\x7c\x3d\xfa\xf5\x8b\xc7\xfc\x85\ +\x45\xd6\x64\x97\xe7\xd9\xe7\x4d\x45\x74\x5c\xdb\x07\xe8\x38\x93\ +\x3b\x3f\xee\x6e\x54\xe4\x8c\xee\x06\x55\x07\x6a\xda\x59\xae\x7f\ +\xeb\xe1\x34\x4c\x9e\xd8\xb5\xb1\x17\x47\x8f\x55\x59\x96\xbd\xc3\ +\xc0\x94\xc6\x1b\x61\x5a\x93\x9d\x92\x3b\x30\xd0\x1e\x95\xa0\xe8\ +\x1e\x81\xd6\x69\xe6\xe8\xaa\xcf\xf1\xf9\x6f\x3e\xd5\x49\xb9\x14\ +\xfb\xd0\x37\x06\x60\xca\xcd\xa9\x2d\x72\x8f\x1e\xad\xc2\xfc\x17\ +\xac\xcd\xec\x89\xfd\x3b\x61\xf8\xe3\x93\x91\xd8\xb7\x53\x8b\x9a\ +\xe5\xfb\x4b\x51\xf8\xca\x06\x54\x1d\xfd\x42\xbb\x9f\x3c\xf0\xa6\ +\x8d\xcc\x76\x02\x97\xee\xb6\x11\x3a\x5b\xc0\x69\xc9\x9b\x7a\x67\ +\x47\x76\x59\xa3\xf3\xa8\x1e\x48\xe8\xd5\x11\x46\x83\x1f\xd5\x27\ +\x2b\x50\xba\xd5\xfc\xf7\xde\xb5\xc8\x50\x72\x67\xf7\x17\xd5\x6a\ +\x14\x5d\x95\x94\x07\x71\x4e\x2d\xd7\x5b\xeb\xaa\x9d\x65\xbc\x13\ +\x9b\xcf\xa3\xeb\x4e\x50\xb4\x56\x83\x4b\x77\x6b\xdc\x1c\xcf\x72\ +\x5b\xf2\x4b\x33\xbb\x8d\xdf\xec\x76\x36\x9a\x92\xdb\xa1\x67\x3f\ +\x97\xa2\xdb\x67\x68\xbb\x82\x57\x92\x07\x4a\x76\x4a\x6e\x7b\x17\ +\xb1\x5d\x80\xa2\xdb\x46\x68\xaf\x80\xd7\x92\x7b\x2d\x3b\x25\xb7\ +\xb7\x7f\x38\x95\x4d\xd1\x9d\x22\x69\xa1\x4e\xa0\x24\xf7\x4a\x76\ +\x4a\x6e\x61\xa7\x70\x29\x85\xa2\xbb\x04\xd6\xac\xac\x9d\xa3\xeb\ +\x0f\x7f\x33\x0d\x5f\x9a\x7c\xf1\x3c\xb9\xdd\xcf\xb1\xa3\x55\xf8\ +\xf1\x8b\x45\xa8\xa8\xd4\xbf\x82\xae\xad\xb6\x79\x74\xdd\xee\xc8\ +\x38\x9b\xcf\xa3\xee\xce\xf2\x54\xaa\x16\xe8\x99\xfc\xca\x4e\x96\ +\x96\xd6\xe0\x85\x9f\xee\xc2\xa9\x53\x17\x94\xfa\x6f\x16\x34\x78\ +\x50\x12\x9e\xf8\xee\x60\xc4\xc5\x05\xc7\xe3\xa5\xcd\xfa\x1b\x09\ +\xdf\x73\x46\xf7\x78\x94\x8f\xbc\xb7\x1b\x7b\x5e\xfb\xcc\x52\xab\ +\x8f\x7c\x33\x0d\x37\x3b\x34\x93\x5f\xd9\x01\x79\x4d\xfc\x2f\x5e\ +\xdd\x83\xc2\x22\xfd\xeb\xd5\x9b\xd7\xba\xfd\xb6\x6e\x78\x30\xfb\ +\x3a\x4b\xdb\xc7\x24\xf7\x08\x70\x46\x77\x8f\xed\x55\x95\x83\x6d\ +\x26\xbf\xd6\xa6\xef\x3f\x50\x81\x3f\x2f\x3b\x82\xa2\x5d\xea\xc2\ +\x0b\x21\x30\x61\x7c\x0a\x32\xef\xe9\x8d\x6e\xa9\xc1\xf7\x56\x18\ +\x0f\x87\x38\x68\x9b\xe2\x8c\xee\xd1\xd0\x84\x82\xe4\xcd\x51\x9c\ +\x3c\x79\x01\x1b\x3e\x2e\xc1\xc7\x9f\x94\xe2\xf4\xe9\x9a\x6b\x52\ +\x92\x37\xcd\x4c\x9c\x90\x8a\x9b\xc6\x75\x46\xa7\x8e\xde\x3c\x51\ +\xd6\xa3\xe1\x0a\xbb\x66\x28\xba\x07\x43\x1a\xac\xcb\x75\xd5\x4d\ +\xaf\xae\x6e\xc0\x17\xe5\x75\xa8\xa8\xa8\x47\x94\x0f\x48\x4c\x8a\ +\x41\x97\x94\xc0\xbc\x04\x42\xb5\xcf\x8c\x6b\x49\x80\x4b\x77\x97\ +\xf7\x88\x50\x9b\xc9\x5d\xc6\xc1\xf2\x01\x22\xc0\x19\xdd\x45\xf0\ +\x47\xde\xfb\x1c\x7b\x5e\xb3\x76\x17\x5a\xf3\x5b\x4d\x5d\xec\x22\ +\x4b\x47\x08\x01\x8a\xee\xd2\x40\x53\x72\x97\xc0\xb2\xac\x25\x02\ +\x14\xdd\x12\xb6\xb6\x93\x28\xb9\x0b\x50\x59\xd2\x16\x01\x8a\x6e\ +\x0b\xdf\xd5\xc9\x94\xdc\x61\xa0\x2c\xe7\x08\x01\x8a\xee\x08\xc6\ +\x8b\x45\xec\x48\xfe\x6f\x8f\x5e\x8f\x9b\xc6\x75\x71\xb0\x37\x2c\ +\x45\x02\x97\x09\x50\x74\x87\xf6\x06\x4a\xee\x10\x48\x96\x71\x85\ +\x00\x45\x77\x00\x2b\x25\x77\x00\x22\x4b\xb8\x4a\x80\xa2\xdb\xc4\ +\x4b\xc9\x6d\x02\x64\xba\x27\x04\x28\xba\x0d\xcc\x94\xdc\x06\x3c\ +\xa6\x7a\x4a\x80\xa2\x5b\xc4\x7d\xea\xa3\x62\x14\xfe\xec\x1f\x96\ +\xb2\x1f\x7d\xe4\x7a\x4c\x9c\xc0\x03\x6f\x96\xe0\x31\xc9\x12\x01\ +\x5e\x02\x6b\x01\x5b\xed\xb9\x6a\x6c\xfc\xf7\x15\x68\xa8\xae\xd7\ +\xce\xfe\xd6\x43\x69\x98\x3c\xc9\x99\x87\x46\x68\x37\xce\x84\x88\ +\x25\x40\xd1\x2d\x0c\xbd\xd5\xd7\x17\xf3\x14\x9a\x05\xd8\x4c\x71\ +\x84\x00\x97\xee\x16\x30\xee\xcb\xdd\x8a\x43\xcb\x8a\xb4\x32\xb9\ +\x5c\xd7\xc2\xc5\x60\x87\x09\x70\x46\xb7\x00\x74\xef\x9b\xf9\x38\ +\xbc\x72\x97\x72\x26\x67\x72\x65\x54\x0c\x74\x89\x00\x67\x74\x0b\ +\x60\x75\x44\xa7\xe4\x16\x00\x33\xc5\x71\x02\x14\xdd\x02\x52\x55\ +\xd1\x53\x52\x62\xf1\xd2\x8b\xa3\x2c\xb4\xc0\x14\x12\x70\x96\x00\ +\x45\xb7\xc0\x93\xa2\x5b\x80\xc6\x94\x80\x12\xa0\xe8\x16\xf0\x53\ +\x74\x0b\xd0\x98\x12\x50\x02\x14\xdd\x02\x7e\x8a\x6e\x01\x1a\x53\ +\x02\x4a\x80\xa2\x5b\xc0\x4f\xd1\x2d\x40\x63\x4a\x40\x09\x50\x74\ +\x0b\xf8\x29\xba\x05\x68\x4c\x09\x28\x01\x8a\x6e\x01\x3f\x45\xb7\ +\x00\x8d\x29\x01\x25\x40\xd1\x2d\xe0\xa7\xe8\x16\xa0\x31\x25\xa0\ +\x04\x28\xba\x05\xfc\x14\xdd\x02\x34\xa6\x04\x94\x00\x45\xb7\x80\ +\x9f\xa2\x5b\x80\xc6\x94\x80\x12\xa0\xe8\x16\xf0\xef\x79\x23\x1f\ +\x47\xfe\x62\x7e\xad\x7b\x5c\x5c\x14\xee\xb8\xbd\xbb\x85\x16\x98\ +\x42\x02\xce\x12\x28\xdc\xf5\x05\xf6\xed\x2b\x37\x2d\x1a\xdb\x39\ +\x0e\x93\x5f\x9b\x69\x1a\x67\x25\xe0\xcc\x96\x63\x28\x98\xb7\xce\ +\x34\xd5\x30\x70\x48\xe4\x64\x64\x19\xa6\x91\x00\x06\x3d\x72\x23\ +\xfa\xdc\x35\x58\x25\x54\x3b\x46\x75\x46\xd7\x2e\xcc\x04\x12\x08\ +\x30\x01\x8a\xde\x6c\x00\x28\x7a\x80\xf7\x46\x36\xef\x1a\x01\x8a\ +\x4e\xd1\x5d\xdb\xb9\x58\x38\x78\x08\x50\x74\x8a\x1e\x3c\x7b\x23\ +\x7b\xe2\x1a\x01\x8a\x4e\xd1\x5d\xdb\xb9\x58\x38\x78\x08\x50\xf4\ +\x66\x63\x51\xbc\xac\x08\xfb\x73\xb7\x06\xcf\xe8\xb0\x27\x24\xe0\ +\x10\x81\xf8\xde\x1d\x30\x61\xd1\x0c\x87\xaa\xb5\x2c\x13\x72\x47\ +\xdd\x4f\x6f\x3e\x82\xed\x0b\x3f\x74\x05\x06\x8b\x92\x40\x20\x09\ +\x74\xfb\x52\x7f\xa4\x3f\x3e\xd9\x95\x2e\x84\x9c\xe8\x46\x83\x1f\ +\x1f\x3f\xb6\x12\xd5\x27\x2b\x5c\x01\xc2\xa2\x24\x10\x28\x02\x63\ +\x5f\xb8\x13\x1d\x07\xba\xf3\xce\x81\x90\x13\x5d\x0e\xc2\xd9\x9d\ +\xa7\x50\xf0\xe3\xf5\x68\xa8\xaa\x0b\xd4\x98\xb0\x5d\x12\x70\x94\ +\xc0\xf5\x0f\x8e\x42\xbf\xac\xe1\x8e\xd6\x6c\x5e\x2c\x24\x45\x97\ +\x1b\x20\x5f\xe4\x70\xf0\x9d\x1d\x38\xbd\xf9\x28\x6a\x4a\xab\x5c\ +\x03\xc4\xc2\x24\xe0\x16\x81\xa8\xb8\x68\xa4\x8c\xec\x81\x3e\x33\ +\x86\xa2\xd3\x90\x54\xb7\x9a\x69\xac\x1b\xb2\xa2\xbb\x4a\x85\xc5\ +\x49\x20\xcc\x08\x50\xf4\x30\x1b\x50\x6e\x0e\x09\x5c\x8b\x00\x45\ +\xe7\x7e\x41\x02\x11\x40\x80\xa2\x47\xc0\x20\x73\x13\x49\x80\xa2\ +\x73\x1f\x20\x81\x08\x20\x40\xd1\x23\x60\x90\xb9\x89\x24\x40\xd1\ +\xb9\x0f\x90\x40\x04\x10\xa0\xe8\x11\x30\xc8\xdc\x44\x12\xa0\xe8\ +\xdc\x07\x48\x20\x02\x08\x50\xf4\x08\x18\x64\x6e\x22\x09\x50\x74\ +\xee\x03\x24\x10\x01\x04\x28\x7a\x04\x0c\x32\x37\x91\x04\x5c\x11\ +\x3d\x2d\xfb\x06\xf4\x9f\x99\x4e\xba\x24\x40\x02\x41\x42\xa0\x74\ +\xcb\x71\x6c\x9b\xb7\x56\xa9\x37\x22\x27\x3d\xf3\x10\x84\xe8\x6b\ +\x16\x9d\x3a\xa9\x1f\x32\xbe\x77\xb3\x59\x18\xbf\x27\x01\x12\xf0\ +\x88\x80\xea\x8c\x2e\xbb\x23\x72\x32\x32\x37\x01\x62\xbc\x59\xdf\ +\xe2\x7a\x26\x61\xe2\xcf\xef\x31\x0b\xe3\xf7\x24\x40\x02\x1e\x11\ +\x38\xb5\xf1\x30\x0a\x7f\xf2\x7f\x4a\xad\x89\xec\x8c\xac\x3c\x01\ +\x98\x1b\x2c\x80\x5b\x16\x7f\x1d\x51\xed\xa3\x95\x0a\x33\x88\x04\ +\x48\xc0\x5d\x02\x05\xf3\xd7\xe1\x4c\xfe\x31\xd3\x46\x0c\xc3\xd8\ +\x26\x1e\x18\x9e\xf9\xb4\xcf\x27\xe6\x9a\x46\x03\x70\xfb\x89\x19\ +\x2a\x7d\x60\x0c\x09\x90\x00\x70\xe1\x4c\x25\x36\x7c\x7b\xb9\x12\ +\x0a\x03\xc6\x9b\xe2\xfe\xf4\x19\x23\xa2\x44\x54\x81\x4a\x86\x88\ +\xf2\x61\xc2\xa2\xbb\x11\xd7\x23\x49\x25\x9c\x31\x24\x40\x02\x2e\ +\x11\xd8\xfb\xbb\x7c\x1c\x5e\x61\xfe\xbe\x42\xd9\xbc\xdf\x30\x66\ +\x09\xf9\x8f\xec\x8c\xcc\x63\x02\xa2\xa7\x4a\x9f\x3a\x5c\xdf\x19\ +\x63\x17\xfc\x0b\x44\x54\x63\x2a\x3f\x24\x40\x02\x1e\x13\x38\xbf\ +\xfb\x34\xf2\x9f\x59\x03\xf9\x50\x55\xb3\x8f\x61\xa0\x36\xb6\xae\ +\xa1\xcb\x45\xd1\xd3\x33\x17\x09\x21\x1e\x33\x4b\x6a\xfa\xbe\xf7\ +\x5d\x83\x31\xf8\x91\x1b\x55\xc3\x19\x47\x02\x24\xe0\x10\x81\xf2\ +\x03\x65\xf8\xec\x47\xab\xe1\xaf\xa9\x57\xab\x68\x18\xef\xe5\x16\ +\xe6\x4d\x6b\x14\x7d\xd6\x90\xac\x41\xfe\x18\x7c\xae\x96\x79\x31\ +\x4a\xce\xec\xe9\x4f\xdc\xcc\x65\xbc\x0e\x34\xc6\x92\x80\x0d\x02\ +\xf2\x49\xc9\xdb\x17\x7c\x88\xfa\xca\x5a\xe5\x2a\x7e\xbf\xff\xce\ +\x25\x45\x2b\xfe\x7e\x69\xfd\x9d\x9d\x9e\xf9\x5b\x21\xc4\x43\xca\ +\x15\x00\xf8\x62\x7c\x48\xcb\x19\x8d\x3e\xd3\x07\x43\x08\x2e\xe5\ +\x75\xd8\x31\x96\x04\x54\x09\xc8\x27\x22\xef\x79\x23\x1f\x25\x1b\ +\x0f\xa9\xa6\x5c\x8c\x33\x8c\x8d\xb9\x85\x79\x93\xe4\x3f\x2f\xd9\ +\x39\x6b\xd0\xf4\x5e\xfe\xd8\x98\xa3\x7a\x95\x2e\x46\xfb\x62\xa3\ +\x10\xdf\x23\x09\x71\x5d\x13\x21\xcf\xb7\x47\xc5\xf2\x14\x9c\x15\ +\x8e\xcc\x21\x81\x8b\x7e\x02\xf5\x15\xb5\xa8\xab\xa8\x41\x5d\x79\ +\x0d\xca\xb6\x9d\xb0\x04\xc6\x0f\x63\xec\x92\x1d\x79\xf9\x2d\x44\ +\x97\xff\x91\x9d\x9e\xf9\x13\x21\xc4\xf7\x2c\x55\x65\x12\x09\x90\ +\x40\xf0\x10\x30\x8c\x3f\xe7\x16\xe6\xfd\x6b\x53\x87\x5a\xac\xb7\ +\xbf\x3a\xec\xab\x89\xed\x7c\xf5\x9f\x0a\x81\x21\xc1\xd3\x63\xf6\ +\x84\x04\x48\x40\x93\x40\x89\x10\xc8\xf8\xfd\xf6\xe5\x25\xd7\x14\ +\x5d\xfe\x9f\x5f\x4b\xcf\x4c\x8b\x86\xd8\x26\x04\x12\x35\x8b\x33\ +\x9c\x04\x48\x20\xc0\x04\x0c\xa0\x01\x42\x4c\x5e\xbc\x7d\xd9\xa6\ +\xe6\x5d\xb9\xe6\x11\xb4\x9c\xf4\x7b\xa7\x41\x18\x7f\x0d\x70\x9f\ +\xd9\x3c\x09\x90\x80\x36\x01\xe3\xb1\xdc\x1d\x79\x3f\xbf\x32\xad\ +\xd5\x43\xe5\x0f\x64\x64\xdd\xe3\x83\xb1\x04\x10\xf1\xda\x6d\x31\ +\x81\x04\x48\xc0\x53\x02\x8d\x33\xb9\xdf\xf8\xaf\xc5\x45\x79\x2f\ +\x5f\xab\xe1\x36\xcf\x89\x3d\x38\x34\x2b\xdd\x1f\x65\xbc\x27\x84\ +\xe8\xe3\x69\xaf\xd9\x18\x09\x90\x80\x06\x01\xe3\x1c\x1a\x8c\x19\ +\xb9\x3b\x57\x7c\xd4\x5a\x92\xe9\xc9\xef\x59\x43\xb2\x52\xfc\xd1\ +\xc6\x4a\x08\x31\x51\xa3\x65\x86\x92\x00\x09\x78\x40\xc0\x80\xf1\ +\xb9\x51\xef\xbb\x63\xc9\xae\x65\x6d\x9e\x64\x37\x15\x5d\xf6\xf5\ +\x39\xc0\xb7\x2f\x23\xeb\x7e\xc3\x30\x7e\x28\x84\x18\xe6\x41\xff\ +\xd9\x04\x09\x90\x40\x5b\x04\x0c\xe3\xb0\x61\x88\x17\xcb\x6a\x2e\ +\xbc\xb6\x6a\xdf\xaa\x1a\x33\x58\x4a\xa2\x37\x2f\x92\x93\x9e\x79\ +\x1f\x20\x66\x41\x60\x9a\x59\x71\x7e\x4f\x02\x24\xe0\x30\x01\xc3\ +\x58\x0f\xc3\x58\x9c\x5b\xb4\xe2\x35\x9d\xca\xda\xa2\x37\x15\xbf\ +\x78\xce\xbd\x76\x9a\x10\xbe\x99\x06\x8c\x01\xc2\x40\x27\x03\xe8\ +\x28\x84\xe8\xa2\xd3\x01\xc6\x92\x00\x09\x5c\x4d\xc0\x30\x50\x26\ +\x84\x71\x1e\xc0\x39\x03\xe2\x88\x01\x63\x79\x5d\x43\xcc\xca\x77\ +\x76\xbe\x53\x66\x85\xd7\xff\x03\xda\x05\x7a\x48\xe9\x08\x2e\x88\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +" + +qt_resource_name = b"\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x07\ +\x0b\xf6\x03\x03\ +\x00\x75\ +\x00\x69\x00\x5f\x00\x69\x00\x6d\x00\x67\x00\x73\ +\x00\x06\ +\x03\x44\x57\x47\ +\x00\x31\ +\x00\x31\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x0a\xc8\xfb\x07\ +\x00\x66\ +\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x06\ +\x01\xfd\x45\xe7\ +\x90\x00\ +\x51\xfa\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x0c\x91\x67\x27\ +\x00\x63\ +\x00\x61\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x00\x45\xec\x87\ +\x76\xee\ +\x68\x07\x68\xc0\x6d\x4b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x06\ +\x09\x2b\x5d\xe7\ +\x4f\xdd\ +\x5b\x58\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x0a\xc2\xae\xa7\ +\x00\x76\ +\x00\x69\x00\x64\x00\x65\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x07\ +\x00\x3a\x57\xa7\ +\x00\x69\ +\x00\x6d\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ +" + +qt_resource_struct_v1 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x10\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x05\ +\x00\x00\x00\x24\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\xbc\x00\x00\x00\x00\x00\x01\x00\x10\xfd\x84\ +\x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x10\x90\x56\ +\x00\x00\x00\x50\x00\x00\x00\x00\x00\x01\x00\x10\x4e\x50\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x10\xcb\x50\ +\x00\x00\x00\xa4\x00\x00\x00\x00\x00\x01\x00\x10\xd5\xf3\ +\x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x10\x3c\x6c\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x10\x6b\x75\ +" + +qt_resource_struct_v2 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x10\x00\x02\x00\x00\x00\x02\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x07\x00\x00\x00\x05\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x24\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x8c\x56\xa1\xd3\x59\ +\x00\x00\x00\xbc\x00\x00\x00\x00\x00\x01\x00\x10\xfd\x84\ +\x00\x00\x01\x87\xbc\xa2\x9b\x90\ +\x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x10\x90\x56\ +\x00\x00\x01\x8b\x18\x97\xae\x32\ +\x00\x00\x00\x50\x00\x00\x00\x00\x00\x01\x00\x10\x4e\x50\ +\x00\x00\x01\x88\x4e\x78\x2a\x30\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x10\xcb\x50\ +\x00\x00\x01\x8b\x18\x90\xe8\xf7\ +\x00\x00\x00\xa4\x00\x00\x00\x00\x00\x01\x00\x10\xd5\xf3\ +\x00\x00\x01\x87\xbc\x9d\x34\xc0\ +\x00\x00\x00\x36\x00\x00\x00\x00\x00\x01\x00\x10\x3c\x6c\ +\x00\x00\x01\x87\xbc\x9a\xfa\x70\ +\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x10\x6b\x75\ +\x00\x00\x01\x87\xbc\xa0\x51\xa0\ +" + +qt_version = [int(v) for v in QtCore.qVersion().split('.')] +if qt_version < [5, 8, 0]: + rcc_version = 1 + qt_resource_struct = qt_resource_struct_v1 +else: + rcc_version = 2 + qt_resource_struct = qt_resource_struct_v2 + +def qInitResources(): + QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/VideoTest.py b/VideoTest.py new file mode 100644 index 0000000..d7ee94e --- /dev/null +++ b/VideoTest.py @@ -0,0 +1,38 @@ +#coding:utf-8 +import cv2 +from ultralytics import YOLO + +# 所需加载的模型目录 +path = 'models/best.pt' +# 需要检测的图片地址 +video_path = "TestFiles/1.mp4" + +# Load the YOLOv8 model +model = YOLO(path) +cap = cv2.VideoCapture(video_path) +# Loop through the video frames +while cap.isOpened(): + # Read a frame from the video + success, frame = cap.read() + + if success: + # Run YOLOv8 inference on the frame + results = model(frame) + + # Visualize the results on the frame + annotated_frame = results[0].plot() + # annotated_frame = cv2.resize(annotated_frame, dsize=None, fx=2, fy=2, interpolation=cv2.INTER_LINEAR) + + # Display the annotated frame + cv2.imshow("YOLOv8 Inference", annotated_frame) + + # Break the loop if 'q' is pressed + if cv2.waitKey(1) & 0xFF == ord("q"): + break + else: + # Break the loop if the end of the video is reached + break + +# Release the video capture object and close the display window +cap.release() +cv2.destroyAllWindows() \ No newline at end of file diff --git a/__pycache__/Config.cpython-312.pyc b/__pycache__/Config.cpython-312.pyc new file mode 100644 index 0000000..e350cc0 Binary files /dev/null and b/__pycache__/Config.cpython-312.pyc differ diff --git a/__pycache__/Config.cpython-313.pyc b/__pycache__/Config.cpython-313.pyc new file mode 100644 index 0000000..c94779c Binary files /dev/null and b/__pycache__/Config.cpython-313.pyc differ diff --git a/__pycache__/Config.cpython-39.pyc b/__pycache__/Config.cpython-39.pyc new file mode 100644 index 0000000..424221a Binary files /dev/null and b/__pycache__/Config.cpython-39.pyc differ diff --git a/__pycache__/detect_tools.cpython-312.pyc b/__pycache__/detect_tools.cpython-312.pyc new file mode 100644 index 0000000..5287451 Binary files /dev/null and b/__pycache__/detect_tools.cpython-312.pyc differ diff --git a/__pycache__/detect_tools.cpython-313.pyc b/__pycache__/detect_tools.cpython-313.pyc new file mode 100644 index 0000000..087911c Binary files /dev/null and b/__pycache__/detect_tools.cpython-313.pyc differ diff --git a/__pycache__/detect_tools.cpython-39.pyc b/__pycache__/detect_tools.cpython-39.pyc new file mode 100644 index 0000000..ca80e70 Binary files /dev/null and b/__pycache__/detect_tools.cpython-39.pyc differ diff --git a/check_and_clean_images.py b/check_and_clean_images.py new file mode 100644 index 0000000..e6fe925 --- /dev/null +++ b/check_and_clean_images.py @@ -0,0 +1,188 @@ +""" +检查并清理没有标注文件的图片 +找出 train 目录下没有对应 label 文件的图片,并删除它们 +""" +import os +from pathlib import Path + + +def get_image_files(directory): + """获取目录下所有图片文件""" + image_extensions = {'.jpg', '.jpeg', '.png', '.bmp', '.tiff', '.tif', '.JPG', '.JPEG', '.PNG'} + image_files = [] + + for file in Path(directory).iterdir(): + if file.is_file() and file.suffix in image_extensions: + image_files.append(file) + + return image_files + + +def get_label_files(directory): + """获取目录下所有标注文件""" + label_files = [] + + for file in Path(directory).iterdir(): + if file.is_file() and file.suffix == '.txt': + label_files.append(file) + + return label_files + + +def find_images_without_labels(train_dir, label_dir, dry_run=True): + """ + 找出没有对应标注文件的图片 + + Args: + train_dir: 图片目录 + label_dir: 标注目录 + dry_run: 如果为True,只检查不删除 + + Returns: + list: 没有标注的图片文件列表 + """ + train_path = Path(train_dir) + label_path = Path(label_dir) + + if not train_path.exists(): + print(f"错误: 图片目录不存在: {train_dir}") + return [] + + if not label_path.exists(): + print(f"错误: 标注目录不存在: {label_dir}") + return [] + + # 获取所有图片和标注文件 + image_files = get_image_files(train_path) + label_files = get_label_files(label_path) + + print(f"找到 {len(image_files)} 个图片文件") + print(f"找到 {len(label_files)} 个标注文件") + print("-" * 60) + + # 创建标注文件名的集合(不含扩展名) + label_names = {f.stem for f in label_files} + + # 找出没有对应标注的图片 + images_without_labels = [] + + for img_file in image_files: + img_name_without_ext = img_file.stem + + if img_name_without_ext not in label_names: + images_without_labels.append(img_file) + + # 打印结果 + if images_without_labels: + print(f"发现 {len(images_without_labels)} 个没有标注的图片:") + print("-" * 60) + for img in images_without_labels[:20]: # 只显示前20个 + print(f" {img.name}") + if len(images_without_labels) > 20: + print(f" ... 还有 {len(images_without_labels) - 20} 个文件") + print("-" * 60) + + if not dry_run: + # 删除文件 + deleted_count = 0 + failed_count = 0 + + for img_file in images_without_labels: + try: + img_file.unlink() + deleted_count += 1 + except Exception as e: + print(f"删除失败: {img_file.name} - {e}") + failed_count += 1 + + print(f"\n删除完成:") + print(f" 成功删除: {deleted_count} 个文件") + if failed_count > 0: + print(f" 删除失败: {failed_count} 个文件") + else: + print("\n[预览模式] 未实际删除文件") + print("要删除这些文件,请运行: python check_and_clean_images.py --delete") + else: + print("✓ 所有图片都有对应的标注文件!") + + return images_without_labels + + +def main(): + """主函数""" + import sys + + # 默认路径 + train_dir = "datasets/handleImage/train" + label_dir = "datasets/handleImage/label" + + # 检查命令行参数 + dry_run = True + force = False + if len(sys.argv) > 1: + if '--delete' in sys.argv or '-d' in sys.argv: + dry_run = False + if '--force' in sys.argv or '-f' in sys.argv: + force = True + if '--help' in sys.argv or '-h' in sys.argv: + print("=" * 60) + print("图片标注检查工具 - 使用说明") + print("=" * 60) + print("\n功能:") + print(" 检查图片文件是否有对应的标注文件,并删除没有标注的图片") + print("\n使用方法:") + print(" python check_and_clean_images.py") + print(" # 预览模式:检查但不删除文件(推荐先运行)") + print("\n python check_and_clean_images.py --delete") + print(" # 删除模式:删除没有标注的图片(需要确认)") + print("\n python check_and_clean_images.py --delete --force") + print(" # 强制删除:直接删除,不确认(适合脚本自动化)") + print("\n参数说明:") + print(" --delete, -d 启用删除模式") + print(" --force, -f 跳过确认,直接删除") + print(" --help, -h 显示此帮助信息") + print("\n默认路径:") + print(f" 图片目录: {train_dir}") + print(f" 标注目录: {label_dir}") + print("\n支持的图片格式:") + print(" .jpg, .jpeg, .png, .bmp, .tiff, .tif (大小写不敏感)") + print("\n标注文件格式:") + print(" .txt 文件") + print("\n文件名匹配规则:") + print(" 通过文件名(不含扩展名)匹配,例如:") + print(" image001.jpg ↔ image001.txt ✓") + print(" image001.jpg ↔ image_001.txt ✗") + print("\n注意事项:") + print(" ⚠ 删除操作不可恢复!建议先备份数据") + print(" ⚠ 使用 --delete 前建议先运行预览模式检查") + print("\n详细教程:") + print(" 查看文件: check_and_clean_images_使用教程.md") + print("=" * 60) + return + + print("=" * 60) + print("检查没有标注的图片") + print("=" * 60) + print(f"图片目录: {train_dir}") + print(f"标注目录: {label_dir}") + print() + + if not dry_run and not force: + try: + response = input("⚠ 警告: 将删除没有标注的图片文件!确认继续?(yes/no): ") + if response.lower() != 'yes': + print("已取消") + return + except (EOFError, KeyboardInterrupt): + print("\n已取消(非交互式环境,请使用 --force 参数)") + return + + images_to_delete = find_images_without_labels(train_dir, label_dir, dry_run=dry_run) + + if images_to_delete and dry_run: + print("\n提示: 使用 --delete 参数来实际删除这些文件") + + +if __name__ == '__main__': + main() + diff --git a/check_and_clean_images_使用教程.md b/check_and_clean_images_使用教程.md new file mode 100644 index 0000000..7031dc8 --- /dev/null +++ b/check_and_clean_images_使用教程.md @@ -0,0 +1,355 @@ +# 📋 图片标注检查工具使用教程 + +## 工具简介 + +`check_and_clean_images.py` 是一个用于检查和清理数据集的工具,可以: +- ✅ 检查图片文件是否有对应的标注文件 +- ✅ 找出没有标注的图片 +- ✅ 删除没有标注的图片文件 +- ✅ 确保数据集完整性 + +--- + +## 🚀 快速开始 + +### 基本用法 + +#### 1. 预览模式(推荐先运行) + +检查哪些图片没有标注,但**不删除**文件: + +```bash +python check_and_clean_images.py +``` + +**输出示例:** +``` +============================================================ +检查没有标注的图片 +============================================================ +图片目录: datasets/handleImage/train +标注目录: datasets/handleImage/label + +找到 1330 个图片文件 +找到 1223 个标注文件 +------------------------------------------------------------ +发现 107 个没有标注的图片: +------------------------------------------------------------ + 订单1806953_51_7111322.jpg + 订单1805323_51_7096066.jpg + ... +------------------------------------------------------------ + +[预览模式] 未实际删除文件 +要删除这些文件,请运行: python check_and_clean_images.py --delete +``` + +#### 2. 删除模式(需要确认) + +删除没有标注的图片,但会要求确认: + +```bash +python check_and_clean_images.py --delete +``` + +**交互提示:** +``` +⚠ 警告: 将删除没有标注的图片文件!确认继续?(yes/no): +``` + +输入 `yes` 确认删除,输入 `no` 取消操作。 + +#### 3. 直接删除模式(不确认) + +直接删除,不需要确认(适合脚本自动化): + +```bash +python check_and_clean_images.py --delete --force +``` + +--- + +## 📖 详细说明 + +### 命令参数 + +| 参数 | 简写 | 说明 | 示例 | +|------|------|------|------| +| `--delete` | `-d` | 启用删除模式 | `--delete` | +| `--force` | `-f` | 跳过确认,直接删除 | `--force` | +| `--help` | `-h` | 显示帮助信息 | `--help` | + +### 默认路径 + +工具默认检查以下路径: +- **图片目录**: `datasets/handleImage/train` +- **标注目录**: `datasets/handleImage/label` + +### 支持的图片格式 + +工具会自动识别以下图片格式: +- `.jpg` / `.JPG` +- `.jpeg` / `.JPEG` +- `.png` / `.PNG` +- `.bmp` +- `.tiff` / `.tif` + +### 标注文件格式 + +工具查找 `.txt` 格式的标注文件。 + +--- + +## 📝 使用场景 + +### 场景 1: 检查数据集完整性 + +在训练前检查数据集是否完整: + +```bash +# 1. 先预览检查 +python check_and_clean_images.py + +# 2. 如果有问题,查看具体文件 +# 3. 确认后删除 +python check_and_clean_images.py --delete +``` + +### 场景 2: 清理导入的数据 + +从CVAT或其他工具导入数据后,清理不完整的文件: + +```bash +# 直接删除没有标注的图片 +python check_and_clean_images.py --delete --force +``` + +### 场景 3: 批量处理多个数据集 + +修改脚本中的路径,处理不同数据集: + +```python +# 修改 check_and_clean_images.py 中的路径 +train_dir = "datasets/你的数据集/train" +label_dir = "datasets/你的数据集/labels" +``` + +--- + +## ⚠️ 注意事项 + +### 1. 备份数据 + +**重要:** 删除操作不可恢复!建议在删除前备份数据: + +```bash +# 备份整个数据集 +cp -r datasets/handleImage datasets/handleImage_backup +``` + +### 2. 文件名匹配规则 + +工具通过**文件名(不含扩展名)**匹配图片和标注: + +- ✅ 匹配:`image001.jpg` ↔ `image001.txt` +- ✅ 匹配:`订单1804264_51_7086683.jpg` ↔ `订单1804264_51_7086683.txt` +- ❌ 不匹配:`image001.jpg` ↔ `image_001.txt`(下划线不同) +- ❌ 不匹配:`image001.jpg` ↔ `image002.txt`(数字不同) + +### 3. 空标注文件 + +如果标注文件存在但为空,工具**不会删除**对应的图片。如果需要处理空标注文件,需要额外检查。 + +### 4. 目录结构要求 + +确保目录结构正确: +``` +datasets/handleImage/ +├── train/ # 图片目录 +│ ├── image1.jpg +│ ├── image2.jpg +│ └── ... +└── label/ # 标注目录 + ├── image1.txt + ├── image2.txt + └── ... +``` + +--- + +## 🔍 输出说明 + +### 预览模式输出 + +``` +找到 1330 个图片文件 # 图片总数 +找到 1223 个标注文件 # 标注总数 +发现 107 个没有标注的图片 # 需要删除的数量 +``` + +### 删除模式输出 + +``` +删除完成: + 成功删除: 107 个文件 # 成功删除的数量 + 删除失败: 0 个文件 # 删除失败的数量(如果有) +``` + +### 完成状态输出 + +``` +✓ 所有图片都有对应的标注文件! +``` + +--- + +## 💡 使用技巧 + +### 技巧 1: 先预览再删除 + +**推荐流程:** +```bash +# 步骤1: 预览检查 +python check_and_clean_images.py + +# 步骤2: 查看结果,确认要删除的文件 +# 步骤3: 确认后删除 +python check_and_clean_images.py --delete +``` + +### 技巧 2: 批量处理多个数据集 + +创建一个批处理脚本: + +```bash +#!/bin/bash +# process_datasets.sh + +datasets=("handleImage" "仪表盘" "检测仪") + +for dataset in "${datasets[@]}"; do + echo "处理数据集: $dataset" + # 修改脚本中的路径或使用参数 + python check_and_clean_images.py +done +``` + +### 技巧 3: 检查反向问题 + +如果需要检查**有标注但没有图片**的情况,可以修改脚本或创建新工具。 + +--- + +## 🐛 常见问题 + +### Q1: 提示"目录不存在" + +**错误信息:** +``` +错误: 图片目录不存在: datasets/handleImage/train +``` + +**解决方法:** +1. 检查路径是否正确 +2. 确认目录是否存在 +3. 修改脚本中的默认路径 + +### Q2: 删除后想恢复文件 + +**解决方法:** +- 如果之前有备份,从备份恢复 +- 如果没有备份,文件无法恢复(删除操作不可逆) + +### Q3: 文件名不匹配 + +**问题:** 图片和标注文件名不完全一致 + +**解决方法:** +- 检查文件名格式 +- 确保文件名(不含扩展名)完全一致 +- 可以使用重命名工具统一文件名格式 + +### Q4: 在非交互式环境运行 + +**问题:** 使用 `--delete` 时提示需要输入 + +**解决方法:** +使用 `--force` 参数跳过确认: +```bash +python check_and_clean_images.py --delete --force +``` + +--- + +## 📊 实际案例 + +### 案例 1: 清理 handleImage 数据集 + +```bash +# 1. 检查数据集 +$ python check_and_clean_images.py + +找到 1330 个图片文件 +找到 1223 个标注文件 +发现 107 个没有标注的图片 + +# 2. 确认后删除 +$ python check_and_clean_images.py --delete +⚠ 警告: 将删除没有标注的图片文件!确认继续?(yes/no): yes + +删除完成: + 成功删除: 107 个文件 + +# 3. 再次验证 +$ python check_and_clean_images.py + +找到 1223 个图片文件 +找到 1223 个标注文件 +✓ 所有图片都有对应的标注文件! +``` + +### 案例 2: 处理其他数据集 + +修改脚本中的路径: + +```python +# 在 check_and_clean_images.py 的 main() 函数中修改 +train_dir = "datasets/仪表盘/train/images" +label_dir = "datasets/仪表盘/train/labels" +``` + +然后运行: +```bash +python check_and_clean_images.py +``` + +--- + +## 🔗 相关工具 + +- `verify_seg_labels.py` - 验证分割标注格式 +- `check_label_format.py` - 检查标注格式类型 +- `convert_bbox_to_seg.py` - 转换标注格式 + +--- + +## 📞 需要帮助? + +如果遇到问题: +1. 查看本文档的"常见问题"部分 +2. 运行 `python check_and_clean_images.py --help` 查看帮助 +3. 检查数据集目录结构是否正确 + +--- + +## 📝 更新日志 + +- **v1.0** (2024): 初始版本 + - 支持检查图片和标注文件 + - 支持预览和删除模式 + - 支持强制删除模式 + +--- + +**提示:** 使用前建议先备份数据,删除操作不可恢复! + diff --git a/check_dataset_match.py b/check_dataset_match.py new file mode 100644 index 0000000..267f37a --- /dev/null +++ b/check_dataset_match.py @@ -0,0 +1,39 @@ +import os + +def check_dataset_match(images_dir, labels_dir): + """检查图片和标注文件数量是否匹配""" + # 获取图片文件列表 + image_files = [f for f in os.listdir(images_dir) if f.lower().endswith('.jpg')] + # 获取标注文件列表(排除classes.txt) + label_files = [f for f in os.listdir(labels_dir) + if f.lower().endswith('.txt') and f != 'classes.txt'] + + # 提取文件名(不带扩展名) + image_names = {os.path.splitext(f)[0] for f in image_files} + label_names = {os.path.splitext(f)[0] for f in label_files} + + # 找出不匹配的文件 + missing_images = label_names - image_names + missing_labels = image_names - label_names + + print(f"图片数量: {len(image_files)}") + print(f"标注数量: {len(label_files)}") + print(f"匹配状态: {'匹配' if len(image_files) == len(label_files) else '不匹配'}") + + if missing_images: + print("\n缺少对应的图片文件:") + for name in sorted(missing_images): + print(f"- {name}.jpg") + + if missing_labels: + print("\n缺少对应的标注文件:") + for name in sorted(missing_labels): + print(f"- {name}.txt") + +if __name__ == "__main__": + images_dir = r'F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\猫狗\train\images' + labels_dir = r'F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\猫狗\train\labels' + + print("正在检查数据集匹配情况...") + check_dataset_match(images_dir, labels_dir) + print("\n检查完成") \ No newline at end of file diff --git a/convert_voc_to_yolo.py b/convert_voc_to_yolo.py new file mode 100644 index 0000000..48a9058 --- /dev/null +++ b/convert_voc_to_yolo.py @@ -0,0 +1,92 @@ +import os +import xml.etree.ElementTree as ET + +def convert_voc_to_yolo(xml_path, output_dir): + """将VOC格式XML转换为YOLO格式TXT""" + tree = ET.parse(xml_path) + root = tree.getroot() + + # 获取图像尺寸 + size = root.find('size') + if size is None: + return + + width_elem = size.find('width') + height_elem = size.find('height') + if width_elem is None or height_elem is None or width_elem.text is None or height_elem.text is None: + return + + try: + width = int(width_elem.text) + height = int(height_elem.text) + except (ValueError, TypeError): + return + + # 类别映射 + class_map = {'猫': 0, '狗': 1} + + # 准备输出内容 + yolo_lines = [] + + for obj in root.findall('object'): + name_elem = obj.find('name') + if name_elem is None or name_elem.text is None: + continue + + class_name = name_elem.text + class_id = class_map.get(class_name, -1) + if class_id == -1: + continue + + bndbox = obj.find('bndbox') + if bndbox is None: + continue + + try: + xmin_elem = bndbox.find('xmin') + xmin = int(xmin_elem.text) if xmin_elem is not None and xmin_elem.text is not None else 0 + + ymin_elem = bndbox.find('ymin') + ymin = int(ymin_elem.text) if ymin_elem is not None and ymin_elem.text is not None else 0 + + xmax_elem = bndbox.find('xmax') + xmax = int(xmax_elem.text) if xmax_elem is not None and xmax_elem.text is not None else 0 + + ymax_elem = bndbox.find('ymax') + ymax = int(ymax_elem.text) if ymax_elem is not None and ymax_elem.text is not None else 0 + except (ValueError, TypeError): + continue + + # 转换为YOLO格式 + x_center = (xmin + xmax) / 2 / width + y_center = (ymin + ymax) / 2 / height + box_width = (xmax - xmin) / width + box_height = (ymax - ymin) / height + + yolo_lines.append(f"{class_id} {x_center:.6f} {y_center:.6f} {box_width:.6f} {box_height:.6f}") + + # 写入TXT文件 + if yolo_lines: + txt_filename = os.path.splitext(os.path.basename(xml_path))[0] + '.txt' + txt_path = os.path.join(output_dir, txt_filename) + + with open(txt_path, 'w', encoding='utf-8') as f: + f.write('\n'.join(yolo_lines)) + +def batch_convert(input_dir, output_dir): + """批量转换目录中的所有XML文件""" + os.makedirs(output_dir, exist_ok=True) + + for filename in os.listdir(input_dir): + if filename.endswith('.xml'): + xml_path = os.path.join(input_dir, filename) + convert_voc_to_yolo(xml_path, output_dir) + +if __name__ == "__main__": + # 设置输入输出目录 + input_dir = r'F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\猫狗\train\labels' + output_dir = input_dir # 同一目录输出 + + print(f"开始转换: {input_dir}") + batch_convert(input_dir, output_dir) + print(f"转换完成,结果保存在: {output_dir}") \ No newline at end of file diff --git a/copy_cat_images.py b/copy_cat_images.py new file mode 100644 index 0000000..f5c9608 --- /dev/null +++ b/copy_cat_images.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +import os +import shutil +import random + +def copy_random_images(src_dir, dst_dir, num_images=20, prefix=''): + """ + 从源目录随机复制指定数量的图像到目标目录 + :param src_dir: 源目录路径 + :param dst_dir: 目标目录路径 + :param num_images: 要复制的图像数量 + :param prefix: 文件名前缀,用于区分不同来源 + """ + # 确保目标目录存在 + os.makedirs(dst_dir, exist_ok=True) + + # 获取源目录中所有图像文件 + image_files = [f for f in os.listdir(src_dir) if f.lower().endswith(('.jpg', '.jpeg', '.png'))] + + # 随机选择指定数量的图像 + selected_files = random.sample(image_files, min(num_images, len(image_files))) + + # 复制文件 + for file in selected_files: + src_path = os.path.join(src_dir, file) + dst_filename = f"{prefix}{file}" if prefix else file + dst_path = os.path.join(dst_dir, dst_filename) + shutil.copy2(src_path, dst_path) + print(f"已复制: {file} -> {dst_filename}") + + print(f"已完成复制 {len(selected_files)} 张图像到 {dst_dir}") + +if __name__ == "__main__": + # 目标目录 + destination_dir = r"F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\猫狗\train\images" + + # 复制猫图片 + cat_source = r"F:\myprojects\cats_and_dogs_filtered\train\cats" + print("正在复制猫图片...") + copy_random_images(cat_source, destination_dir, 20, prefix='cat_') + + # 复制狗图片 + dog_source = r"F:\myprojects\cats_and_dogs_filtered\train\dogs" + print("正在复制狗图片...") + copy_random_images(dog_source, destination_dir, 20, prefix='dog_') + + print("所有图片复制完成!") + diff --git a/datasets/.DS_Store b/datasets/.DS_Store new file mode 100644 index 0000000..111d65f Binary files /dev/null and b/datasets/.DS_Store differ diff --git a/datasets/TomatoData/data.yaml b/datasets/TomatoData/data.yaml new file mode 100644 index 0000000..3d98f1f --- /dev/null +++ b/datasets/TomatoData/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\TomatoData\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\TomatoData\val +nc: 2 +names: ['Riped', 'UnRiped'] \ No newline at end of file diff --git a/datasets/TomatoData/train/images/Riped tomato_101.jpeg b/datasets/TomatoData/train/images/Riped tomato_101.jpeg new file mode 100644 index 0000000..4876b05 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_101.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_102.jpeg b/datasets/TomatoData/train/images/Riped tomato_102.jpeg new file mode 100644 index 0000000..78a4673 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_102.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_104.jpeg b/datasets/TomatoData/train/images/Riped tomato_104.jpeg new file mode 100644 index 0000000..237ecc9 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_104.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_105.jpeg b/datasets/TomatoData/train/images/Riped tomato_105.jpeg new file mode 100644 index 0000000..1cabbd8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_105.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_106.jpeg b/datasets/TomatoData/train/images/Riped tomato_106.jpeg new file mode 100644 index 0000000..665018c Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_106.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_107.jpeg b/datasets/TomatoData/train/images/Riped tomato_107.jpeg new file mode 100644 index 0000000..4b36533 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_107.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_110.jpeg b/datasets/TomatoData/train/images/Riped tomato_110.jpeg new file mode 100644 index 0000000..98d6487 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_110.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_112.jpeg b/datasets/TomatoData/train/images/Riped tomato_112.jpeg new file mode 100644 index 0000000..51e36f4 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_112.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_114.jpeg b/datasets/TomatoData/train/images/Riped tomato_114.jpeg new file mode 100644 index 0000000..d4c2ee4 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_114.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_119.jpeg b/datasets/TomatoData/train/images/Riped tomato_119.jpeg new file mode 100644 index 0000000..6eddb38 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_119.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_12.jpeg b/datasets/TomatoData/train/images/Riped tomato_12.jpeg new file mode 100644 index 0000000..6e12229 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_12.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_121.jpeg b/datasets/TomatoData/train/images/Riped tomato_121.jpeg new file mode 100644 index 0000000..66b558f Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_121.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_122.jpeg b/datasets/TomatoData/train/images/Riped tomato_122.jpeg new file mode 100644 index 0000000..9c0fc11 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_122.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_123.jpeg b/datasets/TomatoData/train/images/Riped tomato_123.jpeg new file mode 100644 index 0000000..d9dc67b Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_123.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_127.jpeg b/datasets/TomatoData/train/images/Riped tomato_127.jpeg new file mode 100644 index 0000000..d4a7e1d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_127.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_128.jpeg b/datasets/TomatoData/train/images/Riped tomato_128.jpeg new file mode 100644 index 0000000..dbaef3f Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_128.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_129.jpeg b/datasets/TomatoData/train/images/Riped tomato_129.jpeg new file mode 100644 index 0000000..ec6a7dc Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_129.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_131.jpeg b/datasets/TomatoData/train/images/Riped tomato_131.jpeg new file mode 100644 index 0000000..f638bf0 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_131.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_134.jpeg b/datasets/TomatoData/train/images/Riped tomato_134.jpeg new file mode 100644 index 0000000..dbe70b6 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_134.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_139.jpeg b/datasets/TomatoData/train/images/Riped tomato_139.jpeg new file mode 100644 index 0000000..46901dd Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_139.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_14.jpeg b/datasets/TomatoData/train/images/Riped tomato_14.jpeg new file mode 100644 index 0000000..261279d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_14.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_141.jpeg b/datasets/TomatoData/train/images/Riped tomato_141.jpeg new file mode 100644 index 0000000..be31719 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_141.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_143.jpeg b/datasets/TomatoData/train/images/Riped tomato_143.jpeg new file mode 100644 index 0000000..16fb724 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_143.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_147.jpeg b/datasets/TomatoData/train/images/Riped tomato_147.jpeg new file mode 100644 index 0000000..05cfaae Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_147.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_153.jpeg b/datasets/TomatoData/train/images/Riped tomato_153.jpeg new file mode 100644 index 0000000..0f61864 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_153.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_154.jpeg b/datasets/TomatoData/train/images/Riped tomato_154.jpeg new file mode 100644 index 0000000..d2d9bbf Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_154.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_16.jpeg b/datasets/TomatoData/train/images/Riped tomato_16.jpeg new file mode 100644 index 0000000..12aa946 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_16.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_160.jpeg b/datasets/TomatoData/train/images/Riped tomato_160.jpeg new file mode 100644 index 0000000..0a31ac2 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_160.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_161.jpeg b/datasets/TomatoData/train/images/Riped tomato_161.jpeg new file mode 100644 index 0000000..12aa946 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_161.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_165.jpeg b/datasets/TomatoData/train/images/Riped tomato_165.jpeg new file mode 100644 index 0000000..fc640a1 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_165.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_166.jpeg b/datasets/TomatoData/train/images/Riped tomato_166.jpeg new file mode 100644 index 0000000..cf5cb59 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_166.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_168.jpeg b/datasets/TomatoData/train/images/Riped tomato_168.jpeg new file mode 100644 index 0000000..303bce4 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_168.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_170.jpeg b/datasets/TomatoData/train/images/Riped tomato_170.jpeg new file mode 100644 index 0000000..263d3db Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_170.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_171.jpeg b/datasets/TomatoData/train/images/Riped tomato_171.jpeg new file mode 100644 index 0000000..54ed616 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_171.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_176.jpeg b/datasets/TomatoData/train/images/Riped tomato_176.jpeg new file mode 100644 index 0000000..78a4673 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_176.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_177.jpeg b/datasets/TomatoData/train/images/Riped tomato_177.jpeg new file mode 100644 index 0000000..27fffba Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_177.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_178.jpeg b/datasets/TomatoData/train/images/Riped tomato_178.jpeg new file mode 100644 index 0000000..237ecc9 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_178.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_179.jpeg b/datasets/TomatoData/train/images/Riped tomato_179.jpeg new file mode 100644 index 0000000..1cabbd8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_179.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_18.png b/datasets/TomatoData/train/images/Riped tomato_18.png new file mode 100644 index 0000000..a956654 --- /dev/null +++ b/datasets/TomatoData/train/images/Riped tomato_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff91692ae205adb6d14e8c7379e175067295e91221420b75be928eec90c3a64 +size 429564 diff --git a/datasets/TomatoData/train/images/Riped tomato_180.jpeg b/datasets/TomatoData/train/images/Riped tomato_180.jpeg new file mode 100644 index 0000000..665018c Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_180.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_181.jpeg b/datasets/TomatoData/train/images/Riped tomato_181.jpeg new file mode 100644 index 0000000..4b36533 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_181.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_184.jpeg b/datasets/TomatoData/train/images/Riped tomato_184.jpeg new file mode 100644 index 0000000..98d6487 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_184.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_19.jpeg b/datasets/TomatoData/train/images/Riped tomato_19.jpeg new file mode 100644 index 0000000..d8bc688 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_19.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_191.jpeg b/datasets/TomatoData/train/images/Riped tomato_191.jpeg new file mode 100644 index 0000000..dd193e3 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_191.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_192.jpeg b/datasets/TomatoData/train/images/Riped tomato_192.jpeg new file mode 100644 index 0000000..f4f94fd Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_192.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_20.jpeg b/datasets/TomatoData/train/images/Riped tomato_20.jpeg new file mode 100644 index 0000000..fc640a1 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_20.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_204.jpeg b/datasets/TomatoData/train/images/Riped tomato_204.jpeg new file mode 100644 index 0000000..f638bf0 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_204.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_207.jpeg b/datasets/TomatoData/train/images/Riped tomato_207.jpeg new file mode 100644 index 0000000..dbe70b6 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_207.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_21.jpeg b/datasets/TomatoData/train/images/Riped tomato_21.jpeg new file mode 100644 index 0000000..cf5cb59 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_21.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_215.jpeg b/datasets/TomatoData/train/images/Riped tomato_215.jpeg new file mode 100644 index 0000000..be31719 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_215.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_222.jpeg b/datasets/TomatoData/train/images/Riped tomato_222.jpeg new file mode 100644 index 0000000..14a487a Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_222.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_23.jpeg b/datasets/TomatoData/train/images/Riped tomato_23.jpeg new file mode 100644 index 0000000..0f0baf8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_23.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_234.jpeg b/datasets/TomatoData/train/images/Riped tomato_234.jpeg new file mode 100644 index 0000000..12aa946 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_234.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_237.jpeg b/datasets/TomatoData/train/images/Riped tomato_237.jpeg new file mode 100644 index 0000000..fc640a1 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_237.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_239.jpeg b/datasets/TomatoData/train/images/Riped tomato_239.jpeg new file mode 100644 index 0000000..ac42649 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_239.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_24.jpeg b/datasets/TomatoData/train/images/Riped tomato_24.jpeg new file mode 100644 index 0000000..263d3db Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_24.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_240.jpeg b/datasets/TomatoData/train/images/Riped tomato_240.jpeg new file mode 100644 index 0000000..ac49651 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_240.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_242.jpeg b/datasets/TomatoData/train/images/Riped tomato_242.jpeg new file mode 100644 index 0000000..263d3db Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_242.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_248.jpeg b/datasets/TomatoData/train/images/Riped tomato_248.jpeg new file mode 100644 index 0000000..78a4673 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_248.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_249.jpeg b/datasets/TomatoData/train/images/Riped tomato_249.jpeg new file mode 100644 index 0000000..27fffba Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_249.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_25.jpeg b/datasets/TomatoData/train/images/Riped tomato_25.jpeg new file mode 100644 index 0000000..887b4b3 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_25.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_252.jpeg b/datasets/TomatoData/train/images/Riped tomato_252.jpeg new file mode 100644 index 0000000..665018c Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_252.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_253.jpeg b/datasets/TomatoData/train/images/Riped tomato_253.jpeg new file mode 100644 index 0000000..4b36533 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_253.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_26.jpeg b/datasets/TomatoData/train/images/Riped tomato_26.jpeg new file mode 100644 index 0000000..5204b89 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_26.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_27.jpeg b/datasets/TomatoData/train/images/Riped tomato_27.jpeg new file mode 100644 index 0000000..cbef455 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_27.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_270.jpeg b/datasets/TomatoData/train/images/Riped tomato_270.jpeg new file mode 100644 index 0000000..27a3f86 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_270.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_271.jpeg b/datasets/TomatoData/train/images/Riped tomato_271.jpeg new file mode 100644 index 0000000..d4a7e1d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_271.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_272.jpeg b/datasets/TomatoData/train/images/Riped tomato_272.jpeg new file mode 100644 index 0000000..dbaef3f Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_272.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_275.jpeg b/datasets/TomatoData/train/images/Riped tomato_275.jpeg new file mode 100644 index 0000000..5425bae Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_275.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_278.jpeg b/datasets/TomatoData/train/images/Riped tomato_278.jpeg new file mode 100644 index 0000000..dbe70b6 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_278.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_28.jpeg b/datasets/TomatoData/train/images/Riped tomato_28.jpeg new file mode 100644 index 0000000..667898d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_28.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_282.jpeg b/datasets/TomatoData/train/images/Riped tomato_282.jpeg new file mode 100644 index 0000000..42af0db Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_282.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_286.jpeg b/datasets/TomatoData/train/images/Riped tomato_286.jpeg new file mode 100644 index 0000000..be31719 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_286.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_288.jpeg b/datasets/TomatoData/train/images/Riped tomato_288.jpeg new file mode 100644 index 0000000..16fb724 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_288.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_29.jpeg b/datasets/TomatoData/train/images/Riped tomato_29.jpeg new file mode 100644 index 0000000..4876b05 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_29.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_30.jpeg b/datasets/TomatoData/train/images/Riped tomato_30.jpeg new file mode 100644 index 0000000..78a4673 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_30.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_31.jpeg b/datasets/TomatoData/train/images/Riped tomato_31.jpeg new file mode 100644 index 0000000..27fffba Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_31.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_32.jpeg b/datasets/TomatoData/train/images/Riped tomato_32.jpeg new file mode 100644 index 0000000..237ecc9 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_32.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_33.jpeg b/datasets/TomatoData/train/images/Riped tomato_33.jpeg new file mode 100644 index 0000000..1cabbd8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_33.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_34.jpeg b/datasets/TomatoData/train/images/Riped tomato_34.jpeg new file mode 100644 index 0000000..9eade2d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_34.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_35.jpeg b/datasets/TomatoData/train/images/Riped tomato_35.jpeg new file mode 100644 index 0000000..4b36533 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_35.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_36.jpeg b/datasets/TomatoData/train/images/Riped tomato_36.jpeg new file mode 100644 index 0000000..3c90b6e Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_36.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_37.jpeg b/datasets/TomatoData/train/images/Riped tomato_37.jpeg new file mode 100644 index 0000000..53b0e7d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_37.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_38.jpeg b/datasets/TomatoData/train/images/Riped tomato_38.jpeg new file mode 100644 index 0000000..98d6487 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_38.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_39.jpeg b/datasets/TomatoData/train/images/Riped tomato_39.jpeg new file mode 100644 index 0000000..d70c3dd Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_39.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_40.jpeg b/datasets/TomatoData/train/images/Riped tomato_40.jpeg new file mode 100644 index 0000000..94c51c8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_40.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_44.jpeg b/datasets/TomatoData/train/images/Riped tomato_44.jpeg new file mode 100644 index 0000000..dd193e3 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_44.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_45.jpeg b/datasets/TomatoData/train/images/Riped tomato_45.jpeg new file mode 100644 index 0000000..f4f94fd Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_45.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_46.jpeg b/datasets/TomatoData/train/images/Riped tomato_46.jpeg new file mode 100644 index 0000000..6eddb38 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_46.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_48.jpeg b/datasets/TomatoData/train/images/Riped tomato_48.jpeg new file mode 100644 index 0000000..66b558f Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_48.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_49.jpeg b/datasets/TomatoData/train/images/Riped tomato_49.jpeg new file mode 100644 index 0000000..9c0fc11 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_49.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_50.jpeg b/datasets/TomatoData/train/images/Riped tomato_50.jpeg new file mode 100644 index 0000000..b3666ce Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_50.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_52.jpeg b/datasets/TomatoData/train/images/Riped tomato_52.jpeg new file mode 100644 index 0000000..27a3f86 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_52.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_53.jpeg b/datasets/TomatoData/train/images/Riped tomato_53.jpeg new file mode 100644 index 0000000..62bf0b8 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_53.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_54.jpeg b/datasets/TomatoData/train/images/Riped tomato_54.jpeg new file mode 100644 index 0000000..ec6a7dc Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_54.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_56.jpeg b/datasets/TomatoData/train/images/Riped tomato_56.jpeg new file mode 100644 index 0000000..f638bf0 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_56.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_57.jpeg b/datasets/TomatoData/train/images/Riped tomato_57.jpeg new file mode 100644 index 0000000..1aef888 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_57.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_59.jpeg b/datasets/TomatoData/train/images/Riped tomato_59.jpeg new file mode 100644 index 0000000..dbe70b6 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_59.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_60.jpeg b/datasets/TomatoData/train/images/Riped tomato_60.jpeg new file mode 100644 index 0000000..b787d71 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_60.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_61.jpeg b/datasets/TomatoData/train/images/Riped tomato_61.jpeg new file mode 100644 index 0000000..3440330 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_61.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_62.jpeg b/datasets/TomatoData/train/images/Riped tomato_62.jpeg new file mode 100644 index 0000000..d35f28d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_62.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_64.jpeg b/datasets/TomatoData/train/images/Riped tomato_64.jpeg new file mode 100644 index 0000000..1652b49 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_64.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_65.jpeg b/datasets/TomatoData/train/images/Riped tomato_65.jpeg new file mode 100644 index 0000000..46901dd Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_65.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_67.jpeg b/datasets/TomatoData/train/images/Riped tomato_67.jpeg new file mode 100644 index 0000000..be31719 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_67.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_68.jpeg b/datasets/TomatoData/train/images/Riped tomato_68.jpeg new file mode 100644 index 0000000..18db837 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_68.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_69.jpeg b/datasets/TomatoData/train/images/Riped tomato_69.jpeg new file mode 100644 index 0000000..16fb724 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_69.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_73.jpeg b/datasets/TomatoData/train/images/Riped tomato_73.jpeg new file mode 100644 index 0000000..05cfaae Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_73.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_77.jpeg b/datasets/TomatoData/train/images/Riped tomato_77.jpeg new file mode 100644 index 0000000..b9d4128 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_77.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_79.jpeg b/datasets/TomatoData/train/images/Riped tomato_79.jpeg new file mode 100644 index 0000000..0f61864 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_79.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_8.jpeg b/datasets/TomatoData/train/images/Riped tomato_8.jpeg new file mode 100644 index 0000000..0f61864 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_8.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_84.jpeg b/datasets/TomatoData/train/images/Riped tomato_84.jpeg new file mode 100644 index 0000000..12756c6 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_84.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_85.jpeg b/datasets/TomatoData/train/images/Riped tomato_85.jpeg new file mode 100644 index 0000000..261279d Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_85.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_87.jpeg b/datasets/TomatoData/train/images/Riped tomato_87.jpeg new file mode 100644 index 0000000..12aa946 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_87.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_89.png b/datasets/TomatoData/train/images/Riped tomato_89.png new file mode 100644 index 0000000..a956654 --- /dev/null +++ b/datasets/TomatoData/train/images/Riped tomato_89.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff91692ae205adb6d14e8c7379e175067295e91221420b75be928eec90c3a64 +size 429564 diff --git a/datasets/TomatoData/train/images/Riped tomato_9.jpeg b/datasets/TomatoData/train/images/Riped tomato_9.jpeg new file mode 100644 index 0000000..d2d9bbf Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_9.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_91.jpeg b/datasets/TomatoData/train/images/Riped tomato_91.jpeg new file mode 100644 index 0000000..fc640a1 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_91.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_92.jpeg b/datasets/TomatoData/train/images/Riped tomato_92.jpeg new file mode 100644 index 0000000..cf5cb59 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_92.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_93.jpeg b/datasets/TomatoData/train/images/Riped tomato_93.jpeg new file mode 100644 index 0000000..44a8750 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_93.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_96.jpeg b/datasets/TomatoData/train/images/Riped tomato_96.jpeg new file mode 100644 index 0000000..263d3db Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_96.jpeg differ diff --git a/datasets/TomatoData/train/images/Riped tomato_98.jpeg b/datasets/TomatoData/train/images/Riped tomato_98.jpeg new file mode 100644 index 0000000..5204b89 Binary files /dev/null and b/datasets/TomatoData/train/images/Riped tomato_98.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_100.jpeg b/datasets/TomatoData/train/images/unriped tomato_100.jpeg new file mode 100644 index 0000000..fe2fcd3 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_100.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_101.jpeg b/datasets/TomatoData/train/images/unriped tomato_101.jpeg new file mode 100644 index 0000000..11e8cd7 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_101.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_102.jpeg b/datasets/TomatoData/train/images/unriped tomato_102.jpeg new file mode 100644 index 0000000..b9a83a0 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_102.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_103.jpeg b/datasets/TomatoData/train/images/unriped tomato_103.jpeg new file mode 100644 index 0000000..869bfa4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_103.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_104.jpeg b/datasets/TomatoData/train/images/unriped tomato_104.jpeg new file mode 100644 index 0000000..59cf01e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_104.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_107.jpeg b/datasets/TomatoData/train/images/unriped tomato_107.jpeg new file mode 100644 index 0000000..0defd18 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_107.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_108.png b/datasets/TomatoData/train/images/unriped tomato_108.png new file mode 100644 index 0000000..2091568 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1387f42db5121700f1910e28792f7db1a6f93b4f801232da2b4dbd914afdcf87 +size 598339 diff --git a/datasets/TomatoData/train/images/unriped tomato_109.png b/datasets/TomatoData/train/images/unriped tomato_109.png new file mode 100644 index 0000000..ace8695 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9222d08cf2a37188f43f061bd5fced080b1b6b98cf038d92b12ff21d32c0227b +size 957779 diff --git a/datasets/TomatoData/train/images/unriped tomato_110.jpeg b/datasets/TomatoData/train/images/unriped tomato_110.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_110.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_118.jpeg b/datasets/TomatoData/train/images/unriped tomato_118.jpeg new file mode 100644 index 0000000..3dd407b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_118.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_125.jpeg b/datasets/TomatoData/train/images/unriped tomato_125.jpeg new file mode 100644 index 0000000..b2f35df Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_125.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_13.jpeg b/datasets/TomatoData/train/images/unriped tomato_13.jpeg new file mode 100644 index 0000000..74bfbdb Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_13.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_130.jpeg b/datasets/TomatoData/train/images/unriped tomato_130.jpeg new file mode 100644 index 0000000..b246396 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_130.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_132.jpeg b/datasets/TomatoData/train/images/unriped tomato_132.jpeg new file mode 100644 index 0000000..942b97b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_132.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_138.jpeg b/datasets/TomatoData/train/images/unriped tomato_138.jpeg new file mode 100644 index 0000000..4016358 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_138.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_14.jpeg b/datasets/TomatoData/train/images/unriped tomato_14.jpeg new file mode 100644 index 0000000..4016358 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_14.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_141.jpeg b/datasets/TomatoData/train/images/unriped tomato_141.jpeg new file mode 100644 index 0000000..55973c5 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_141.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_142.jpeg b/datasets/TomatoData/train/images/unriped tomato_142.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_142.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_151.jpeg b/datasets/TomatoData/train/images/unriped tomato_151.jpeg new file mode 100644 index 0000000..827a55f Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_151.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_158.jpeg b/datasets/TomatoData/train/images/unriped tomato_158.jpeg new file mode 100644 index 0000000..7506678 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_158.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_159.jpeg b/datasets/TomatoData/train/images/unriped tomato_159.jpeg new file mode 100644 index 0000000..0a9b7c6 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_159.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_16.jpeg b/datasets/TomatoData/train/images/unriped tomato_16.jpeg new file mode 100644 index 0000000..a7c9f0b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_16.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_163.jpeg b/datasets/TomatoData/train/images/unriped tomato_163.jpeg new file mode 100644 index 0000000..11e8cd7 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_163.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_165.jpeg b/datasets/TomatoData/train/images/unriped tomato_165.jpeg new file mode 100644 index 0000000..869bfa4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_165.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_17.jpeg b/datasets/TomatoData/train/images/unriped tomato_17.jpeg new file mode 100644 index 0000000..40beb7d Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_17.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_173.jpeg b/datasets/TomatoData/train/images/unriped tomato_173.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_173.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_179.jpeg b/datasets/TomatoData/train/images/unriped tomato_179.jpeg new file mode 100644 index 0000000..82a5e90 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_179.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_189.jpeg b/datasets/TomatoData/train/images/unriped tomato_189.jpeg new file mode 100644 index 0000000..fc38052 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_189.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_193.jpeg b/datasets/TomatoData/train/images/unriped tomato_193.jpeg new file mode 100644 index 0000000..b246396 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_193.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_198.jpeg b/datasets/TomatoData/train/images/unriped tomato_198.jpeg new file mode 100644 index 0000000..011da4c Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_198.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_20.jpeg b/datasets/TomatoData/train/images/unriped tomato_20.jpeg new file mode 100644 index 0000000..eeafe99 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_20.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_200.jpeg b/datasets/TomatoData/train/images/unriped tomato_200.jpeg new file mode 100644 index 0000000..4016358 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_200.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_203.jpeg b/datasets/TomatoData/train/images/unriped tomato_203.jpeg new file mode 100644 index 0000000..dc39d5e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_203.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_204.jpeg b/datasets/TomatoData/train/images/unriped tomato_204.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_204.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_209.jpeg b/datasets/TomatoData/train/images/unriped tomato_209.jpeg new file mode 100644 index 0000000..536ccc1 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_209.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_210.jpeg b/datasets/TomatoData/train/images/unriped tomato_210.jpeg new file mode 100644 index 0000000..1edb747 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_210.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_213.jpeg b/datasets/TomatoData/train/images/unriped tomato_213.jpeg new file mode 100644 index 0000000..827a55f Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_213.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_214.png b/datasets/TomatoData/train/images/unriped tomato_214.png new file mode 100644 index 0000000..2f27f29 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_214.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea08de8e6e9e9957f6ab7dbeb849b51783404e83e30ff2e4b767e69b4423b00a +size 486171 diff --git a/datasets/TomatoData/train/images/unriped tomato_220.jpeg b/datasets/TomatoData/train/images/unriped tomato_220.jpeg new file mode 100644 index 0000000..7506678 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_220.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_222.jpeg b/datasets/TomatoData/train/images/unriped tomato_222.jpeg new file mode 100644 index 0000000..6d2bbe9 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_222.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_228.jpeg b/datasets/TomatoData/train/images/unriped tomato_228.jpeg new file mode 100644 index 0000000..59cf01e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_228.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_23.jpeg b/datasets/TomatoData/train/images/unriped tomato_23.jpeg new file mode 100644 index 0000000..536ccc1 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_23.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_232.jpeg b/datasets/TomatoData/train/images/unriped tomato_232.jpeg new file mode 100644 index 0000000..0defd18 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_232.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_233.png b/datasets/TomatoData/train/images/unriped tomato_233.png new file mode 100644 index 0000000..2091568 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_233.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1387f42db5121700f1910e28792f7db1a6f93b4f801232da2b4dbd914afdcf87 +size 598339 diff --git a/datasets/TomatoData/train/images/unriped tomato_235.jpeg b/datasets/TomatoData/train/images/unriped tomato_235.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_235.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_237.png b/datasets/TomatoData/train/images/unriped tomato_237.png new file mode 100644 index 0000000..93d0c3f --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_237.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82cdc605d08089be0b1ca109ca4400602e713ebb8c8dacc8e543cfb8e486a4ce +size 522107 diff --git a/datasets/TomatoData/train/images/unriped tomato_239.jpeg b/datasets/TomatoData/train/images/unriped tomato_239.jpeg new file mode 100644 index 0000000..b0e9bbc Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_239.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_243.jpeg b/datasets/TomatoData/train/images/unriped tomato_243.jpeg new file mode 100644 index 0000000..3dd407b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_243.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_244.jpeg b/datasets/TomatoData/train/images/unriped tomato_244.jpeg new file mode 100644 index 0000000..d525460 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_244.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_249.jpeg b/datasets/TomatoData/train/images/unriped tomato_249.jpeg new file mode 100644 index 0000000..33189b3 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_249.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_250.jpeg b/datasets/TomatoData/train/images/unriped tomato_250.jpeg new file mode 100644 index 0000000..fc38052 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_250.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_253.jpeg b/datasets/TomatoData/train/images/unriped tomato_253.jpeg new file mode 100644 index 0000000..5191f34 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_253.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_255.jpeg b/datasets/TomatoData/train/images/unriped tomato_255.jpeg new file mode 100644 index 0000000..eff77ea Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_255.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_258.jpeg b/datasets/TomatoData/train/images/unriped tomato_258.jpeg new file mode 100644 index 0000000..853479c Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_258.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_26.jpeg b/datasets/TomatoData/train/images/unriped tomato_26.jpeg new file mode 100644 index 0000000..f154feb Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_26.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_260.jpeg b/datasets/TomatoData/train/images/unriped tomato_260.jpeg new file mode 100644 index 0000000..011da4c Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_260.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_265.jpeg b/datasets/TomatoData/train/images/unriped tomato_265.jpeg new file mode 100644 index 0000000..a7ee253 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_265.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_266.jpeg b/datasets/TomatoData/train/images/unriped tomato_266.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_266.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_271.jpeg b/datasets/TomatoData/train/images/unriped tomato_271.jpeg new file mode 100644 index 0000000..1edb747 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_271.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_276.jpeg b/datasets/TomatoData/train/images/unriped tomato_276.jpeg new file mode 100644 index 0000000..1efc6d4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_276.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_28.jpeg b/datasets/TomatoData/train/images/unriped tomato_28.jpeg new file mode 100644 index 0000000..827a55f Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_28.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_281.jpeg b/datasets/TomatoData/train/images/unriped tomato_281.jpeg new file mode 100644 index 0000000..7506678 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_281.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_285.jpeg b/datasets/TomatoData/train/images/unriped tomato_285.jpeg new file mode 100644 index 0000000..ed6d41d Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_285.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_287.jpeg b/datasets/TomatoData/train/images/unriped tomato_287.jpeg new file mode 100644 index 0000000..869bfa4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_287.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_288.jpeg b/datasets/TomatoData/train/images/unriped tomato_288.jpeg new file mode 100644 index 0000000..59cf01e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_288.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_289.jpeg b/datasets/TomatoData/train/images/unriped tomato_289.jpeg new file mode 100644 index 0000000..5de4a1d Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_289.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_29.png b/datasets/TomatoData/train/images/unriped tomato_29.png new file mode 100644 index 0000000..2f27f29 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea08de8e6e9e9957f6ab7dbeb849b51783404e83e30ff2e4b767e69b4423b00a +size 486171 diff --git a/datasets/TomatoData/train/images/unriped tomato_291.jpeg b/datasets/TomatoData/train/images/unriped tomato_291.jpeg new file mode 100644 index 0000000..0defd18 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_291.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_292.png b/datasets/TomatoData/train/images/unriped tomato_292.png new file mode 100644 index 0000000..2091568 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_292.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1387f42db5121700f1910e28792f7db1a6f93b4f801232da2b4dbd914afdcf87 +size 598339 diff --git a/datasets/TomatoData/train/images/unriped tomato_294.jpeg b/datasets/TomatoData/train/images/unriped tomato_294.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_294.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_296.png b/datasets/TomatoData/train/images/unriped tomato_296.png new file mode 100644 index 0000000..93d0c3f --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_296.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82cdc605d08089be0b1ca109ca4400602e713ebb8c8dacc8e543cfb8e486a4ce +size 522107 diff --git a/datasets/TomatoData/train/images/unriped tomato_3.jpeg b/datasets/TomatoData/train/images/unriped tomato_3.jpeg new file mode 100644 index 0000000..fc38052 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_3.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_30.jpeg b/datasets/TomatoData/train/images/unriped tomato_30.jpeg new file mode 100644 index 0000000..1efc6d4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_30.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_32.jpeg b/datasets/TomatoData/train/images/unriped tomato_32.jpeg new file mode 100644 index 0000000..09e7c35 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_32.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_34.jpeg b/datasets/TomatoData/train/images/unriped tomato_34.jpeg new file mode 100644 index 0000000..b42f700 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_34.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_35.jpeg b/datasets/TomatoData/train/images/unriped tomato_35.jpeg new file mode 100644 index 0000000..7506678 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_35.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_37.jpeg b/datasets/TomatoData/train/images/unriped tomato_37.jpeg new file mode 100644 index 0000000..008dee1 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_37.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_38.jpeg b/datasets/TomatoData/train/images/unriped tomato_38.jpeg new file mode 100644 index 0000000..ebad0bf Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_38.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_4.jpeg b/datasets/TomatoData/train/images/unriped tomato_4.jpeg new file mode 100644 index 0000000..2a66133 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_4.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_40.jpeg b/datasets/TomatoData/train/images/unriped tomato_40.jpeg new file mode 100644 index 0000000..564f6e0 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_40.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_41.jpeg b/datasets/TomatoData/train/images/unriped tomato_41.jpeg new file mode 100644 index 0000000..869bfa4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_41.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_46.png b/datasets/TomatoData/train/images/unriped tomato_46.png new file mode 100644 index 0000000..2091568 --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1387f42db5121700f1910e28792f7db1a6f93b4f801232da2b4dbd914afdcf87 +size 598339 diff --git a/datasets/TomatoData/train/images/unriped tomato_48.jpeg b/datasets/TomatoData/train/images/unriped tomato_48.jpeg new file mode 100644 index 0000000..e08ec8e Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_48.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_5.jpeg b/datasets/TomatoData/train/images/unriped tomato_5.jpeg new file mode 100644 index 0000000..f9ac2db Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_5.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_50.png b/datasets/TomatoData/train/images/unriped tomato_50.png new file mode 100644 index 0000000..93d0c3f --- /dev/null +++ b/datasets/TomatoData/train/images/unriped tomato_50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82cdc605d08089be0b1ca109ca4400602e713ebb8c8dacc8e543cfb8e486a4ce +size 522107 diff --git a/datasets/TomatoData/train/images/unriped tomato_54.jpeg b/datasets/TomatoData/train/images/unriped tomato_54.jpeg new file mode 100644 index 0000000..9e221e8 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_54.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_55.jpeg b/datasets/TomatoData/train/images/unriped tomato_55.jpeg new file mode 100644 index 0000000..3dd407b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_55.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_57.jpeg b/datasets/TomatoData/train/images/unriped tomato_57.jpeg new file mode 100644 index 0000000..aac3085 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_57.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_6.jpeg b/datasets/TomatoData/train/images/unriped tomato_6.jpeg new file mode 100644 index 0000000..b246396 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_6.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_65.jpeg b/datasets/TomatoData/train/images/unriped tomato_65.jpeg new file mode 100644 index 0000000..d0fb221 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_65.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_66.jpeg b/datasets/TomatoData/train/images/unriped tomato_66.jpeg new file mode 100644 index 0000000..409e7fa Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_66.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_72.jpeg b/datasets/TomatoData/train/images/unriped tomato_72.jpeg new file mode 100644 index 0000000..853479c Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_72.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_75.jpeg b/datasets/TomatoData/train/images/unriped tomato_75.jpeg new file mode 100644 index 0000000..74bfbdb Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_75.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_76.jpeg b/datasets/TomatoData/train/images/unriped tomato_76.jpeg new file mode 100644 index 0000000..4016358 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_76.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_78.jpeg b/datasets/TomatoData/train/images/unriped tomato_78.jpeg new file mode 100644 index 0000000..a7c9f0b Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_78.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_79.jpeg b/datasets/TomatoData/train/images/unriped tomato_79.jpeg new file mode 100644 index 0000000..f198dd6 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_79.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_8.jpeg b/datasets/TomatoData/train/images/unriped tomato_8.jpeg new file mode 100644 index 0000000..1b09959 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_8.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_80.jpeg b/datasets/TomatoData/train/images/unriped tomato_80.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_80.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_82.jpeg b/datasets/TomatoData/train/images/unriped tomato_82.jpeg new file mode 100644 index 0000000..eeafe99 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_82.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_85.jpeg b/datasets/TomatoData/train/images/unriped tomato_85.jpeg new file mode 100644 index 0000000..536ccc1 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_85.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_87.jpeg b/datasets/TomatoData/train/images/unriped tomato_87.jpeg new file mode 100644 index 0000000..58fc03a Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_87.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_88.jpeg b/datasets/TomatoData/train/images/unriped tomato_88.jpeg new file mode 100644 index 0000000..f154feb Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_88.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_89.jpeg b/datasets/TomatoData/train/images/unriped tomato_89.jpeg new file mode 100644 index 0000000..18db837 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_89.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_90.jpeg b/datasets/TomatoData/train/images/unriped tomato_90.jpeg new file mode 100644 index 0000000..827a55f Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_90.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_91.jpeg b/datasets/TomatoData/train/images/unriped tomato_91.jpeg new file mode 100644 index 0000000..1efc6d4 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_91.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_93.jpeg b/datasets/TomatoData/train/images/unriped tomato_93.jpeg new file mode 100644 index 0000000..09e7c35 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_93.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_95.jpeg b/datasets/TomatoData/train/images/unriped tomato_95.jpeg new file mode 100644 index 0000000..b42f700 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_95.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_96.jpeg b/datasets/TomatoData/train/images/unriped tomato_96.jpeg new file mode 100644 index 0000000..7506678 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_96.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_97.jpeg b/datasets/TomatoData/train/images/unriped tomato_97.jpeg new file mode 100644 index 0000000..0a9b7c6 Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_97.jpeg differ diff --git a/datasets/TomatoData/train/images/unriped tomato_99.jpeg b/datasets/TomatoData/train/images/unriped tomato_99.jpeg new file mode 100644 index 0000000..ebad0bf Binary files /dev/null and b/datasets/TomatoData/train/images/unriped tomato_99.jpeg differ diff --git a/datasets/TomatoData/train/labels.cache b/datasets/TomatoData/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/TomatoData/train/labels.cache differ diff --git a/datasets/TomatoData/train/labels/Riped tomato_101.txt b/datasets/TomatoData/train/labels/Riped tomato_101.txt new file mode 100644 index 0000000..757297d --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_101.txt @@ -0,0 +1,8 @@ +0 0.817383 0.393555 0.245117 0.276693 +0 0.823975 0.777669 0.247559 0.277995 +1 0.574463 0.402344 0.223145 0.261719 +1 0.578613 0.785807 0.234375 0.261719 +1 0.339600 0.395182 0.227051 0.273438 +1 0.339111 0.784180 0.228027 0.264974 +1 0.127930 0.430013 0.166016 0.201172 +1 0.128418 0.816081 0.163086 0.186849 diff --git a/datasets/TomatoData/train/labels/Riped tomato_102.txt b/datasets/TomatoData/train/labels/Riped tomato_102.txt new file mode 100644 index 0000000..98ea169 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_102.txt @@ -0,0 +1,4 @@ +0 0.213449 0.593662 0.220249 0.325410 +0 0.431715 0.647708 0.262372 0.367855 +0 0.343597 0.419072 0.216094 0.268817 +0 0.569229 0.479626 0.254061 0.352009 diff --git a/datasets/TomatoData/train/labels/Riped tomato_104.txt b/datasets/TomatoData/train/labels/Riped tomato_104.txt new file mode 100644 index 0000000..5ad792d --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_104.txt @@ -0,0 +1,4 @@ +0 0.411250 0.405000 0.367500 0.525000 +0 0.067917 0.823125 0.132500 0.353750 +0 0.364583 0.958750 0.272500 0.082500 +0 0.411250 0.918750 0.369167 0.162500 diff --git a/datasets/TomatoData/train/labels/Riped tomato_105.txt b/datasets/TomatoData/train/labels/Riped tomato_105.txt new file mode 100644 index 0000000..27b5982 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_105.txt @@ -0,0 +1,3 @@ +0 0.487408 0.247776 0.242216 0.488434 +1 0.370421 0.661477 0.244505 0.452847 +0 0.595238 0.732206 0.258242 0.464413 diff --git a/datasets/TomatoData/train/labels/Riped tomato_106.txt b/datasets/TomatoData/train/labels/Riped tomato_106.txt new file mode 100644 index 0000000..8e695f5 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_106.txt @@ -0,0 +1 @@ +0 0.400000 0.537234 0.611765 0.734043 diff --git a/datasets/TomatoData/train/labels/Riped tomato_107.txt b/datasets/TomatoData/train/labels/Riped tomato_107.txt new file mode 100644 index 0000000..09c9fda --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_107.txt @@ -0,0 +1,4 @@ +0 0.506757 0.277477 0.372973 0.457658 +0 0.296622 0.610811 0.306757 0.403604 +0 0.476351 0.760360 0.295946 0.407207 +0 0.731081 0.588288 0.318919 0.441441 diff --git a/datasets/TomatoData/train/labels/Riped tomato_110.txt b/datasets/TomatoData/train/labels/Riped tomato_110.txt new file mode 100644 index 0000000..d3c611b --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_110.txt @@ -0,0 +1,5 @@ +0 0.427490 0.454427 0.454590 0.502604 +0 0.729004 0.285156 0.421875 0.486979 +0 0.308105 0.320638 0.389648 0.448568 +0 0.250977 0.757487 0.362305 0.472005 +0 0.562500 0.757487 0.375000 0.448568 diff --git a/datasets/TomatoData/train/labels/Riped tomato_112.txt b/datasets/TomatoData/train/labels/Riped tomato_112.txt new file mode 100644 index 0000000..fca6008 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_112.txt @@ -0,0 +1,9 @@ +0 0.420280 0.712626 0.212141 0.328283 +0 0.325550 0.478283 0.184123 0.259596 +0 0.637425 0.647980 0.211474 0.330303 +0 0.527685 0.343939 0.212141 0.318182 +0 0.949967 0.041919 0.100067 0.079798 +1 0.103736 0.649495 0.203469 0.272727 +1 0.239493 0.610606 0.078719 0.190909 +1 0.446298 0.472222 0.088059 0.152525 +1 0.755837 0.021212 0.162775 0.038384 diff --git a/datasets/TomatoData/train/labels/Riped tomato_114.txt b/datasets/TomatoData/train/labels/Riped tomato_114.txt new file mode 100644 index 0000000..b0314a5 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_114.txt @@ -0,0 +1,17 @@ +0 0.198333 0.316223 0.203333 0.259823 +0 0.287083 0.442966 0.215833 0.277567 +0 0.083333 0.641952 0.165000 0.328264 +0 0.112917 0.869455 0.224167 0.256020 +0 0.296250 0.717364 0.234167 0.316857 +0 0.302500 0.947402 0.255000 0.105196 +0 0.515417 0.842839 0.225833 0.281369 +0 0.832083 0.795311 0.284167 0.351077 +0 0.483750 0.547529 0.234167 0.316857 +0 0.703750 0.640051 0.234167 0.311787 +0 0.398333 0.394804 0.101667 0.150824 +0 0.572500 0.366920 0.196667 0.249683 +0 0.645000 0.456274 0.205000 0.294043 +0 0.811250 0.316857 0.205833 0.332066 +0 0.947917 0.351711 0.104167 0.219265 +0 0.961250 0.897338 0.077500 0.202788 +0 0.937083 0.594423 0.125833 0.334601 diff --git a/datasets/TomatoData/train/labels/Riped tomato_119.txt b/datasets/TomatoData/train/labels/Riped tomato_119.txt new file mode 100644 index 0000000..a2f6ce7 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_119.txt @@ -0,0 +1 @@ +1 0.496445 0.600000 0.624434 0.627957 diff --git a/datasets/TomatoData/train/labels/Riped tomato_12.txt b/datasets/TomatoData/train/labels/Riped tomato_12.txt new file mode 100644 index 0000000..61018bf --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_12.txt @@ -0,0 +1,5 @@ +0 0.372500 0.666917 0.403000 0.574644 +0 0.255500 0.432108 0.363000 0.429107 +0 0.467500 0.227307 0.305000 0.340585 +0 0.607000 0.486122 0.324000 0.453113 +0 0.800500 0.325581 0.249000 0.429107 diff --git a/datasets/TomatoData/train/labels/Riped tomato_121.txt b/datasets/TomatoData/train/labels/Riped tomato_121.txt new file mode 100644 index 0000000..b24a6ca --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_121.txt @@ -0,0 +1,3 @@ +1 0.128000 0.520000 0.248000 0.360000 +1 0.606000 0.490000 0.404000 0.440000 +1 0.548000 0.860000 0.312000 0.280000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_122.txt b/datasets/TomatoData/train/labels/Riped tomato_122.txt new file mode 100644 index 0000000..0e11ec6 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_122.txt @@ -0,0 +1,3 @@ +0 0.392593 0.277778 0.255556 0.364198 +0 0.653704 0.393519 0.281481 0.416667 +0 0.378704 0.614198 0.264815 0.395062 diff --git a/datasets/TomatoData/train/labels/Riped tomato_123.txt b/datasets/TomatoData/train/labels/Riped tomato_123.txt new file mode 100644 index 0000000..bc29992 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_123.txt @@ -0,0 +1,27 @@ +0 0.210162 0.061893 0.170901 0.115696 +0 0.107968 0.047330 0.081986 0.093042 +0 0.413395 0.170712 0.168591 0.106796 +0 0.559469 0.189320 0.128176 0.072816 +0 0.641455 0.343042 0.162818 0.079288 +0 0.783487 0.397249 0.151270 0.103560 +0 0.615473 0.409385 0.177829 0.108414 +0 0.483256 0.464401 0.091224 0.053398 +0 0.606813 0.552589 0.165127 0.111650 +0 0.444573 0.576456 0.173210 0.112460 +0 0.363741 0.661003 0.099307 0.079288 +0 0.465358 0.676780 0.170901 0.120550 +0 0.514434 0.774676 0.176674 0.115696 +0 0.627598 0.724919 0.165127 0.110032 +0 0.684180 0.807039 0.072748 0.050971 +0 0.299654 0.790453 0.160508 0.110032 +0 0.355658 0.827670 0.094688 0.066343 +0 0.439954 0.882686 0.173210 0.121359 +0 0.603926 0.904126 0.159353 0.115696 +0 0.311201 0.898058 0.125866 0.105178 +0 0.579099 0.250809 0.146651 0.105178 +1 0.120092 0.158172 0.131640 0.091424 +1 0.244226 0.209547 0.107390 0.077670 +1 0.219400 0.270227 0.073903 0.043689 +1 0.659353 0.298948 0.092379 0.068770 +1 0.693995 0.244741 0.078522 0.065534 +0 0.718245 0.487460 0.161663 0.099515 diff --git a/datasets/TomatoData/train/labels/Riped tomato_127.txt b/datasets/TomatoData/train/labels/Riped tomato_127.txt new file mode 100644 index 0000000..76814f8 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_127.txt @@ -0,0 +1,5 @@ +0 0.436789 0.268182 0.352718 0.532727 +0 0.804678 0.236364 0.383059 0.469091 +0 0.305310 0.713636 0.329962 0.481818 +0 0.647914 0.724545 0.367889 0.496364 +0 0.908976 0.673636 0.182048 0.576364 diff --git a/datasets/TomatoData/train/labels/Riped tomato_128.txt b/datasets/TomatoData/train/labels/Riped tomato_128.txt new file mode 100644 index 0000000..a63e7a9 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_128.txt @@ -0,0 +1,23 @@ +0 0.299286 0.548571 0.412857 0.805714 +0 0.084286 0.425714 0.148571 0.337143 +0 0.093571 0.742857 0.147143 0.308571 +0 0.160714 0.907143 0.170000 0.185714 +0 0.320000 0.974286 0.117143 0.051429 +0 0.118571 0.151429 0.140000 0.297143 +0 0.215000 0.075714 0.135714 0.145714 +0 0.376429 0.137143 0.127143 0.234286 +0 0.476429 0.052857 0.127143 0.100000 +0 0.599286 0.104286 0.121429 0.202857 +0 0.732857 0.221429 0.174286 0.328571 +0 0.715000 0.044286 0.150000 0.082857 +0 0.860000 0.115714 0.140000 0.225714 +0 0.930000 0.302857 0.108571 0.205714 +0 0.883571 0.364286 0.155714 0.288571 +0 0.542857 0.810000 0.174286 0.334286 +0 0.680000 0.684286 0.160000 0.288571 +0 0.709286 0.917143 0.170000 0.165714 +0 0.820714 0.810000 0.155714 0.311429 +0 0.939286 0.621429 0.121429 0.305714 +1 0.567143 0.447143 0.165714 0.334286 +1 0.497143 0.194286 0.151429 0.291429 +1 0.650714 0.387143 0.150000 0.328571 diff --git a/datasets/TomatoData/train/labels/Riped tomato_129.txt b/datasets/TomatoData/train/labels/Riped tomato_129.txt new file mode 100644 index 0000000..4da7614 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_129.txt @@ -0,0 +1,3 @@ +1 0.273750 0.731707 0.492500 0.536585 +0 0.694375 0.411820 0.566250 0.816135 +0 0.336875 0.260788 0.466250 0.517824 diff --git a/datasets/TomatoData/train/labels/Riped tomato_131.txt b/datasets/TomatoData/train/labels/Riped tomato_131.txt new file mode 100644 index 0000000..1e69544 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_131.txt @@ -0,0 +1,3 @@ +0 0.275424 0.454644 0.449153 0.572354 +0 0.629661 0.587473 0.459322 0.591793 +0 0.727119 0.503240 0.454237 0.656587 diff --git a/datasets/TomatoData/train/labels/Riped tomato_134.txt b/datasets/TomatoData/train/labels/Riped tomato_134.txt new file mode 100644 index 0000000..dfadd2b --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_134.txt @@ -0,0 +1,4 @@ +0 0.526667 0.668337 0.373333 0.400802 +0 0.294167 0.502004 0.336667 0.406814 +0 0.686250 0.458417 0.362500 0.407816 +0 0.445833 0.339178 0.266667 0.295591 diff --git a/datasets/TomatoData/train/labels/Riped tomato_139.txt b/datasets/TomatoData/train/labels/Riped tomato_139.txt new file mode 100644 index 0000000..71bf353 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_139.txt @@ -0,0 +1,16 @@ +0 0.402083 0.537500 0.262500 0.275000 +0 0.190417 0.644583 0.252500 0.232500 +1 0.183333 0.864167 0.218333 0.230000 +1 0.398333 0.802500 0.238333 0.253333 +0 0.609167 0.543333 0.140000 0.133333 +0 0.908333 0.276667 0.176667 0.218333 +1 0.678750 0.423750 0.100833 0.142500 +1 0.768750 0.319583 0.134167 0.120833 +1 0.802500 0.448333 0.206667 0.223333 +1 0.887500 0.585833 0.186667 0.155000 +1 0.950833 0.506667 0.093333 0.135000 +1 0.985833 0.728333 0.028333 0.153333 +0 0.211667 0.337500 0.060000 0.053333 +0 0.389583 0.353333 0.099167 0.073333 +1 0.328333 0.909583 0.123333 0.084167 +1 0.950833 0.648750 0.098333 0.187500 diff --git a/datasets/TomatoData/train/labels/Riped tomato_14.txt b/datasets/TomatoData/train/labels/Riped tomato_14.txt new file mode 100644 index 0000000..8891328 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_14.txt @@ -0,0 +1,4 @@ +1 0.408571 0.894444 0.131429 0.166667 +1 0.637143 0.768519 0.280000 0.329630 +0 0.272857 0.568519 0.534286 0.603704 +1 0.762857 0.520370 0.457143 0.537037 diff --git a/datasets/TomatoData/train/labels/Riped tomato_141.txt b/datasets/TomatoData/train/labels/Riped tomato_141.txt new file mode 100644 index 0000000..3e62789 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_141.txt @@ -0,0 +1,2 @@ +0 0.266000 0.537778 0.478667 0.804444 +0 0.711333 0.403333 0.465333 0.775556 diff --git a/datasets/TomatoData/train/labels/Riped tomato_143.txt b/datasets/TomatoData/train/labels/Riped tomato_143.txt new file mode 100644 index 0000000..034fb88 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_143.txt @@ -0,0 +1,3 @@ +0 0.277083 0.269932 0.535417 0.506834 +0 0.405990 0.739465 0.453646 0.493736 +0 0.740104 0.448178 0.496875 0.529613 diff --git a/datasets/TomatoData/train/labels/Riped tomato_147.txt b/datasets/TomatoData/train/labels/Riped tomato_147.txt new file mode 100644 index 0000000..666ec05 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_147.txt @@ -0,0 +1,18 @@ +0 0.076389 0.130000 0.150000 0.255556 +0 0.284722 0.173333 0.275000 0.342222 +0 0.495139 0.290000 0.256944 0.424444 +0 0.558333 0.087778 0.252778 0.171111 +0 0.695833 0.258889 0.200000 0.224444 +0 0.856250 0.118889 0.287500 0.233333 +0 0.891667 0.228889 0.216667 0.408889 +0 0.929861 0.581111 0.140278 0.406667 +0 0.704167 0.576667 0.369444 0.500000 +0 0.361806 0.560000 0.276389 0.426667 +0 0.129861 0.675556 0.209722 0.293333 +0 0.194444 0.807778 0.291667 0.384444 +0 0.475000 0.874444 0.277778 0.246667 +0 0.647917 0.947778 0.065278 0.104444 +0 0.813889 0.826667 0.361111 0.346667 +0 0.097222 0.413333 0.191667 0.324444 +0 0.038889 0.900000 0.075000 0.200000 +0 0.276389 0.434444 0.200000 0.246667 diff --git a/datasets/TomatoData/train/labels/Riped tomato_153.txt b/datasets/TomatoData/train/labels/Riped tomato_153.txt new file mode 100644 index 0000000..6091adf --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_153.txt @@ -0,0 +1,3 @@ +0 0.545312 0.549306 0.282813 0.429167 +1 0.375391 0.672917 0.199219 0.284722 +1 0.217188 0.477778 0.275000 0.494444 diff --git a/datasets/TomatoData/train/labels/Riped tomato_154.txt b/datasets/TomatoData/train/labels/Riped tomato_154.txt new file mode 100644 index 0000000..6ff5abd --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_154.txt @@ -0,0 +1,6 @@ +0 0.815333 0.625714 0.294667 0.651429 +0 0.232667 0.417143 0.393333 0.828571 +0 0.358667 0.881429 0.384000 0.237143 +0 0.887333 0.195714 0.217333 0.374286 +0 0.586000 0.227143 0.342667 0.448571 +1 0.512000 0.721429 0.341333 0.557143 diff --git a/datasets/TomatoData/train/labels/Riped tomato_16.txt b/datasets/TomatoData/train/labels/Riped tomato_16.txt new file mode 100644 index 0000000..031b024 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_16.txt @@ -0,0 +1,5 @@ +0 0.404667 0.461429 0.241333 0.597143 +0 0.638000 0.408571 0.406667 0.782857 +0 0.492667 0.881429 0.158667 0.237143 +0 0.647333 0.880000 0.180000 0.240000 +0 0.298667 0.797143 0.314667 0.405714 diff --git a/datasets/TomatoData/train/labels/Riped tomato_160.txt b/datasets/TomatoData/train/labels/Riped tomato_160.txt new file mode 100644 index 0000000..3f67229 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_160.txt @@ -0,0 +1,7 @@ +0 0.133440 0.569394 0.184960 0.371804 +0 0.323040 0.524836 0.153920 0.338203 +0 0.481600 0.502922 0.138880 0.285610 +1 0.622080 0.467860 0.129920 0.273923 +1 0.744480 0.458364 0.109120 0.228634 +1 0.847520 0.445946 0.084800 0.184806 +1 0.932480 0.436815 0.071040 0.138787 diff --git a/datasets/TomatoData/train/labels/Riped tomato_161.txt b/datasets/TomatoData/train/labels/Riped tomato_161.txt new file mode 100644 index 0000000..3da7c77 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_161.txt @@ -0,0 +1,6 @@ +0 0.209333 0.077143 0.085333 0.062857 +0 0.408667 0.464286 0.257333 0.597143 +0 0.637333 0.404286 0.408000 0.802857 +0 0.644000 0.878571 0.181333 0.242857 +0 0.298000 0.797143 0.321333 0.405714 +0 0.504667 0.877143 0.134667 0.245714 diff --git a/datasets/TomatoData/train/labels/Riped tomato_165.txt b/datasets/TomatoData/train/labels/Riped tomato_165.txt new file mode 100644 index 0000000..4ccc336 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_165.txt @@ -0,0 +1,3 @@ +0 0.314844 0.610882 0.285156 0.468824 +0 0.511523 0.667941 0.236328 0.457059 +1 0.654883 0.736765 0.198047 0.407647 diff --git a/datasets/TomatoData/train/labels/Riped tomato_166.txt b/datasets/TomatoData/train/labels/Riped tomato_166.txt new file mode 100644 index 0000000..97d8258 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_166.txt @@ -0,0 +1 @@ +0 0.412461 0.679743 0.590113 0.331833 diff --git a/datasets/TomatoData/train/labels/Riped tomato_168.txt b/datasets/TomatoData/train/labels/Riped tomato_168.txt new file mode 100644 index 0000000..c8da6f8 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_168.txt @@ -0,0 +1 @@ +0 0.504615 0.518418 0.587692 0.705309 diff --git a/datasets/TomatoData/train/labels/Riped tomato_170.txt b/datasets/TomatoData/train/labels/Riped tomato_170.txt new file mode 100644 index 0000000..a379c34 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_170.txt @@ -0,0 +1 @@ +0 0.511864 0.544715 0.772881 0.731707 diff --git a/datasets/TomatoData/train/labels/Riped tomato_171.txt b/datasets/TomatoData/train/labels/Riped tomato_171.txt new file mode 100644 index 0000000..80331e5 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_171.txt @@ -0,0 +1 @@ +0 0.511154 0.539983 0.733077 0.724747 diff --git a/datasets/TomatoData/train/labels/Riped tomato_176.txt b/datasets/TomatoData/train/labels/Riped tomato_176.txt new file mode 100644 index 0000000..fff9d70 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_176.txt @@ -0,0 +1,4 @@ +0 0.435399 0.648557 0.259161 0.359932 +0 0.216094 0.592671 0.219494 0.320600 +0 0.572913 0.483588 0.246694 0.353707 +0 0.340480 0.444114 0.216283 0.306452 diff --git a/datasets/TomatoData/train/labels/Riped tomato_177.txt b/datasets/TomatoData/train/labels/Riped tomato_177.txt new file mode 100644 index 0000000..10bb48b --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_177.txt @@ -0,0 +1,4 @@ +0 0.374841 0.396250 0.261753 0.305000 +0 0.604193 0.629375 0.270648 0.276250 +0 0.358958 0.623750 0.247776 0.230000 +0 0.595299 0.395625 0.212198 0.206250 diff --git a/datasets/TomatoData/train/labels/Riped tomato_178.txt b/datasets/TomatoData/train/labels/Riped tomato_178.txt new file mode 100644 index 0000000..5540760 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_178.txt @@ -0,0 +1,4 @@ +1 0.367500 0.957500 0.286667 0.085000 +0 0.067500 0.822500 0.133333 0.355000 +0 0.417917 0.400625 0.357500 0.526250 +0 0.411667 0.915625 0.365000 0.168750 diff --git a/datasets/TomatoData/train/labels/Riped tomato_179.txt b/datasets/TomatoData/train/labels/Riped tomato_179.txt new file mode 100644 index 0000000..c140e1b --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_179.txt @@ -0,0 +1,3 @@ +0 0.486951 0.244662 0.241300 0.487544 +1 0.370879 0.656139 0.245421 0.442171 +0 0.593864 0.720641 0.237179 0.460854 diff --git a/datasets/TomatoData/train/labels/Riped tomato_18.txt b/datasets/TomatoData/train/labels/Riped tomato_18.txt new file mode 100644 index 0000000..f110f06 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_18.txt @@ -0,0 +1,5 @@ +0 0.244186 0.638254 0.318605 0.548857 +0 0.505814 0.537422 0.288372 0.455301 +0 0.714535 0.419958 0.256977 0.465696 +0 0.459302 0.328482 0.260465 0.357588 +0 0.231395 0.383576 0.295349 0.359667 diff --git a/datasets/TomatoData/train/labels/Riped tomato_180.txt b/datasets/TomatoData/train/labels/Riped tomato_180.txt new file mode 100644 index 0000000..3bd61b6 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_180.txt @@ -0,0 +1 @@ +0 0.399020 0.533245 0.605882 0.731383 diff --git a/datasets/TomatoData/train/labels/Riped tomato_181.txt b/datasets/TomatoData/train/labels/Riped tomato_181.txt new file mode 100644 index 0000000..79393d5 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_181.txt @@ -0,0 +1,4 @@ +0 0.506757 0.275676 0.370270 0.461261 +0 0.295270 0.609009 0.306757 0.400000 +0 0.472973 0.759459 0.294595 0.401802 +0 0.731081 0.584685 0.321622 0.441441 diff --git a/datasets/TomatoData/train/labels/Riped tomato_184.txt b/datasets/TomatoData/train/labels/Riped tomato_184.txt new file mode 100644 index 0000000..4be46b4 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_184.txt @@ -0,0 +1,5 @@ +0 0.426270 0.455729 0.452148 0.505208 +0 0.307373 0.308268 0.386230 0.423828 +0 0.562500 0.760417 0.364258 0.437500 +0 0.245605 0.756836 0.353516 0.470703 +0 0.726318 0.279297 0.414551 0.481771 diff --git a/datasets/TomatoData/train/labels/Riped tomato_19.txt b/datasets/TomatoData/train/labels/Riped tomato_19.txt new file mode 100644 index 0000000..f1a28bb --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_19.txt @@ -0,0 +1,22 @@ +0 0.166420 0.144295 0.328391 0.280049 +0 0.498147 0.230933 0.345441 0.261745 +0 0.074500 0.040879 0.141586 0.080537 +0 0.308377 0.025015 0.323202 0.048810 +0 0.388065 0.191580 0.291327 0.250153 +0 0.391401 0.042404 0.269830 0.083588 +0 0.361379 0.192190 0.350630 0.253813 +0 0.096738 0.369433 0.191994 0.292251 +0 0.062268 0.579927 0.123054 0.286150 +0 0.284655 0.477730 0.367680 0.325808 +0 0.512602 0.481391 0.328391 0.257474 +0 0.827650 0.479866 0.344700 0.288591 +0 0.738325 0.307810 0.306894 0.223917 +0 0.848036 0.118975 0.303929 0.235509 +0 0.655300 0.104027 0.281690 0.206833 +0 0.429948 0.736425 0.361749 0.275778 +0 0.772424 0.805369 0.361749 0.303844 +0 0.931060 0.620805 0.137880 0.277608 +0 0.674574 0.629347 0.324685 0.193411 +0 0.895478 0.873703 0.209044 0.251373 +0 0.572276 0.948749 0.381023 0.102502 +0 0.166420 0.868212 0.331357 0.263575 diff --git a/datasets/TomatoData/train/labels/Riped tomato_191.txt b/datasets/TomatoData/train/labels/Riped tomato_191.txt new file mode 100644 index 0000000..fae5075 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_191.txt @@ -0,0 +1 @@ +0 0.501667 0.515833 0.980000 0.858333 diff --git a/datasets/TomatoData/train/labels/Riped tomato_192.txt b/datasets/TomatoData/train/labels/Riped tomato_192.txt new file mode 100644 index 0000000..146539a --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_192.txt @@ -0,0 +1,33 @@ +1 0.498750 0.365966 0.066250 0.098555 +0 0.485625 0.288436 0.050000 0.111695 +0 0.485938 0.186597 0.065625 0.141919 +0 0.449062 0.158344 0.080625 0.161629 +0 0.014687 0.388962 0.028125 0.186597 +0 0.036875 0.503942 0.072500 0.119580 +0 0.043125 0.676741 0.062500 0.162943 +0 0.011250 0.601183 0.021250 0.101183 +0 0.042500 0.813403 0.057500 0.139290 +0 0.030625 0.924442 0.057500 0.151117 +0 0.241563 0.838371 0.084375 0.160315 +0 0.202500 0.391590 0.078750 0.157687 +0 0.284687 0.381078 0.080625 0.173456 +0 0.361563 0.392247 0.076875 0.172142 +0 0.417812 0.470434 0.064375 0.141919 +0 0.396875 0.272668 0.085000 0.156373 +0 0.291250 0.122208 0.077500 0.165572 +0 0.435000 0.649146 0.085000 0.141919 +0 0.344375 0.608410 0.066250 0.155059 +0 0.372500 0.651117 0.092500 0.180026 +0 0.433125 0.748357 0.085000 0.159001 +0 0.462813 0.872536 0.078125 0.144547 +0 0.672500 0.113666 0.045000 0.088042 +0 0.740938 0.133377 0.049375 0.093298 +0 0.727812 0.239159 0.065625 0.118265 +0 0.593437 0.607753 0.031875 0.080158 +0 0.659375 0.622865 0.053750 0.118265 +0 0.710625 0.695795 0.057500 0.116951 +0 0.742812 0.782523 0.060625 0.098555 +0 0.745625 0.873850 0.062500 0.086728 +1 0.753125 0.940867 0.061250 0.097240 +1 0.760312 0.323916 0.055625 0.101183 +1 0.492500 0.898160 0.040000 0.093298 diff --git a/datasets/TomatoData/train/labels/Riped tomato_20.txt b/datasets/TomatoData/train/labels/Riped tomato_20.txt new file mode 100644 index 0000000..7ead7a8 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_20.txt @@ -0,0 +1,3 @@ +0 0.313867 0.610882 0.283203 0.468824 +0 0.509570 0.667941 0.232422 0.457059 +1 0.655469 0.736765 0.195312 0.386471 diff --git a/datasets/TomatoData/train/labels/Riped tomato_204.txt b/datasets/TomatoData/train/labels/Riped tomato_204.txt new file mode 100644 index 0000000..88c9350 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_204.txt @@ -0,0 +1,3 @@ +0 0.275424 0.457883 0.449153 0.578834 +0 0.628814 0.584233 0.461017 0.593952 +0 0.727119 0.433045 0.461017 0.520518 diff --git a/datasets/TomatoData/train/labels/Riped tomato_207.txt b/datasets/TomatoData/train/labels/Riped tomato_207.txt new file mode 100644 index 0000000..efb9974 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_207.txt @@ -0,0 +1,4 @@ +0 0.295000 0.506012 0.336667 0.418838 +0 0.441667 0.341182 0.270000 0.299599 +0 0.685417 0.460922 0.364167 0.420842 +0 0.527917 0.671343 0.369167 0.394790 diff --git a/datasets/TomatoData/train/labels/Riped tomato_21.txt b/datasets/TomatoData/train/labels/Riped tomato_21.txt new file mode 100644 index 0000000..ed7de4c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_21.txt @@ -0,0 +1 @@ +0 0.414006 0.682637 0.582904 0.331190 diff --git a/datasets/TomatoData/train/labels/Riped tomato_215.txt b/datasets/TomatoData/train/labels/Riped tomato_215.txt new file mode 100644 index 0000000..4834b26 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_215.txt @@ -0,0 +1,2 @@ +0 0.265333 0.532222 0.472000 0.806667 +0 0.712667 0.403333 0.465333 0.766667 diff --git a/datasets/TomatoData/train/labels/Riped tomato_222.txt b/datasets/TomatoData/train/labels/Riped tomato_222.txt new file mode 100644 index 0000000..29d2b67 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_222.txt @@ -0,0 +1 @@ +0 0.526000 0.494630 0.948000 0.788783 diff --git a/datasets/TomatoData/train/labels/Riped tomato_23.txt b/datasets/TomatoData/train/labels/Riped tomato_23.txt new file mode 100644 index 0000000..4bed615 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_23.txt @@ -0,0 +1 @@ +0 0.502692 0.451643 0.577692 0.606573 diff --git a/datasets/TomatoData/train/labels/Riped tomato_234.txt b/datasets/TomatoData/train/labels/Riped tomato_234.txt new file mode 100644 index 0000000..d04f40d --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_234.txt @@ -0,0 +1,6 @@ +0 0.298000 0.798571 0.318667 0.402857 +0 0.404667 0.457143 0.249333 0.600000 +0 0.638000 0.408571 0.409333 0.788571 +0 0.642667 0.875714 0.184000 0.248571 +0 0.503333 0.877143 0.134667 0.240000 +0 0.200000 0.080000 0.088000 0.085714 diff --git a/datasets/TomatoData/train/labels/Riped tomato_237.txt b/datasets/TomatoData/train/labels/Riped tomato_237.txt new file mode 100644 index 0000000..a3b386c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_237.txt @@ -0,0 +1,3 @@ +0 0.314258 0.605000 0.288672 0.490000 +0 0.510156 0.665882 0.243750 0.464706 +1 0.655273 0.742941 0.201172 0.401176 diff --git a/datasets/TomatoData/train/labels/Riped tomato_239.txt b/datasets/TomatoData/train/labels/Riped tomato_239.txt new file mode 100644 index 0000000..233f086 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_239.txt @@ -0,0 +1,20 @@ +1 0.640333 0.852356 0.115333 0.182199 +1 0.259333 0.126702 0.070667 0.079581 +1 0.168000 0.422513 0.049333 0.061780 +0 0.129667 0.043979 0.043333 0.062827 +0 0.145000 0.343979 0.084667 0.120419 +0 0.064333 0.284293 0.080667 0.118325 +0 0.076333 0.389529 0.052667 0.098429 +0 0.085667 0.478010 0.048667 0.068063 +0 0.148333 0.448691 0.060667 0.082723 +0 0.325000 0.199476 0.052667 0.070157 +0 0.327000 0.110471 0.046000 0.057592 +0 0.354000 0.151309 0.041333 0.049215 +0 0.337667 0.034555 0.058000 0.067016 +0 0.476667 0.456021 0.216000 0.317277 +0 0.338333 0.725654 0.076667 0.119372 +0 0.361333 0.962304 0.098667 0.075393 +0 0.390000 0.878534 0.068000 0.098429 +0 0.483000 0.792147 0.220667 0.325654 +0 0.670333 0.640314 0.210000 0.336126 +0 0.643000 0.285864 0.174000 0.255497 diff --git a/datasets/TomatoData/train/labels/Riped tomato_24.txt b/datasets/TomatoData/train/labels/Riped tomato_24.txt new file mode 100644 index 0000000..806c9c0 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_24.txt @@ -0,0 +1 @@ +0 0.511864 0.545528 0.766102 0.736585 diff --git a/datasets/TomatoData/train/labels/Riped tomato_240.txt b/datasets/TomatoData/train/labels/Riped tomato_240.txt new file mode 100644 index 0000000..312b58a --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_240.txt @@ -0,0 +1 @@ +0 0.500769 0.509494 0.587692 0.689873 diff --git a/datasets/TomatoData/train/labels/Riped tomato_242.txt b/datasets/TomatoData/train/labels/Riped tomato_242.txt new file mode 100644 index 0000000..a379c34 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_242.txt @@ -0,0 +1 @@ +0 0.511864 0.544715 0.772881 0.731707 diff --git a/datasets/TomatoData/train/labels/Riped tomato_248.txt b/datasets/TomatoData/train/labels/Riped tomato_248.txt new file mode 100644 index 0000000..6bdedb1 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_248.txt @@ -0,0 +1,4 @@ +0 0.212883 0.594228 0.213071 0.333333 +0 0.433887 0.645444 0.264450 0.375778 +0 0.570835 0.482739 0.250850 0.355405 +0 0.339441 0.409593 0.218360 0.247029 diff --git a/datasets/TomatoData/train/labels/Riped tomato_249.txt b/datasets/TomatoData/train/labels/Riped tomato_249.txt new file mode 100644 index 0000000..9fb349e --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_249.txt @@ -0,0 +1,6 @@ +0 0.374206 0.391250 0.273189 0.297500 +0 0.604193 0.630625 0.275731 0.273750 +0 0.353240 0.628125 0.243964 0.241250 +1 0.936468 0.685000 0.127065 0.142500 +0 0.519695 0.740000 0.180432 0.112500 +1 0.892630 0.791875 0.156290 0.148750 diff --git a/datasets/TomatoData/train/labels/Riped tomato_25.txt b/datasets/TomatoData/train/labels/Riped tomato_25.txt new file mode 100644 index 0000000..c1d43f4 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_25.txt @@ -0,0 +1 @@ +0 0.512692 0.493098 0.728462 0.667178 diff --git a/datasets/TomatoData/train/labels/Riped tomato_252.txt b/datasets/TomatoData/train/labels/Riped tomato_252.txt new file mode 100644 index 0000000..045838a --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_252.txt @@ -0,0 +1 @@ +0 0.400980 0.533245 0.621569 0.747340 diff --git a/datasets/TomatoData/train/labels/Riped tomato_253.txt b/datasets/TomatoData/train/labels/Riped tomato_253.txt new file mode 100644 index 0000000..af4240a --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_253.txt @@ -0,0 +1,4 @@ +0 0.507432 0.272072 0.371622 0.468468 +0 0.731757 0.586486 0.325676 0.434234 +0 0.474324 0.757658 0.294595 0.405405 +0 0.296622 0.612613 0.306757 0.410811 diff --git a/datasets/TomatoData/train/labels/Riped tomato_26.txt b/datasets/TomatoData/train/labels/Riped tomato_26.txt new file mode 100644 index 0000000..9dcabe8 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_26.txt @@ -0,0 +1,10 @@ +0 0.228271 0.577415 0.266113 0.389205 +0 0.481445 0.618608 0.339844 0.481534 +0 0.798340 0.671165 0.295898 0.414773 +0 0.181641 0.502486 0.268555 0.372869 +0 0.279053 0.415128 0.154785 0.242188 +0 0.399658 0.464134 0.210449 0.301847 +0 0.573975 0.398438 0.209473 0.285511 +0 0.515137 0.500355 0.274414 0.362926 +0 0.671875 0.417969 0.225586 0.225142 +0 0.802979 0.559304 0.303223 0.480824 diff --git a/datasets/TomatoData/train/labels/Riped tomato_27.txt b/datasets/TomatoData/train/labels/Riped tomato_27.txt new file mode 100644 index 0000000..2598ab0 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_27.txt @@ -0,0 +1,2 @@ +0 0.254167 0.566416 0.391667 0.476190 +0 0.665000 0.566416 0.366667 0.456140 diff --git a/datasets/TomatoData/train/labels/Riped tomato_270.txt b/datasets/TomatoData/train/labels/Riped tomato_270.txt new file mode 100644 index 0000000..98adbfd --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_270.txt @@ -0,0 +1,3 @@ +0 0.746250 0.585455 0.167500 0.218182 +1 0.541250 0.643636 0.142500 0.203636 +1 0.576250 0.450909 0.137500 0.181818 diff --git a/datasets/TomatoData/train/labels/Riped tomato_271.txt b/datasets/TomatoData/train/labels/Riped tomato_271.txt new file mode 100644 index 0000000..6711d98 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_271.txt @@ -0,0 +1,5 @@ +0 0.436157 0.273636 0.356511 0.543636 +0 0.310999 0.716364 0.341340 0.490909 +0 0.648546 0.723636 0.366625 0.505455 +0 0.906448 0.673636 0.187105 0.572727 +0 0.807838 0.233636 0.384324 0.463636 diff --git a/datasets/TomatoData/train/labels/Riped tomato_272.txt b/datasets/TomatoData/train/labels/Riped tomato_272.txt new file mode 100644 index 0000000..31fcd49 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_272.txt @@ -0,0 +1,24 @@ +0 0.125000 0.154286 0.152857 0.302857 +0 0.216429 0.080000 0.147143 0.154286 +0 0.374286 0.134286 0.131429 0.234286 +0 0.474286 0.060000 0.125714 0.108571 +0 0.595000 0.112857 0.132857 0.214286 +0 0.738571 0.220000 0.160000 0.331429 +0 0.711429 0.051429 0.168571 0.097143 +0 0.861429 0.122857 0.137143 0.240000 +0 0.931429 0.305714 0.105714 0.205714 +0 0.881429 0.367143 0.154286 0.300000 +0 0.078571 0.437143 0.140000 0.331429 +0 0.081429 0.742857 0.120000 0.320000 +0 0.162143 0.921429 0.167143 0.157143 +0 0.318571 0.972857 0.125714 0.054286 +0 0.545000 0.808571 0.170000 0.314286 +0 0.704286 0.915714 0.177143 0.168571 +0 0.296429 0.551429 0.415714 0.811429 +1 0.497143 0.194286 0.154286 0.314286 +1 0.565000 0.447143 0.170000 0.345714 +1 0.643571 0.387143 0.155714 0.340000 +0 0.822143 0.812857 0.158571 0.311429 +0 0.674286 0.688571 0.174286 0.314286 +1 0.937857 0.622857 0.124286 0.308571 +0 0.747857 0.510000 0.118571 0.242857 diff --git a/datasets/TomatoData/train/labels/Riped tomato_275.txt b/datasets/TomatoData/train/labels/Riped tomato_275.txt new file mode 100644 index 0000000..aa51630 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_275.txt @@ -0,0 +1,3 @@ +0 0.265487 0.474118 0.467257 0.628235 +0 0.638053 0.620000 0.483186 0.647059 +0 0.736283 0.440000 0.477876 0.545882 diff --git a/datasets/TomatoData/train/labels/Riped tomato_278.txt b/datasets/TomatoData/train/labels/Riped tomato_278.txt new file mode 100644 index 0000000..d95f71e --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_278.txt @@ -0,0 +1,4 @@ +0 0.297500 0.502004 0.346667 0.410822 +0 0.528333 0.668337 0.375000 0.402806 +0 0.686250 0.461423 0.369167 0.421844 +0 0.446667 0.301102 0.266667 0.225451 diff --git a/datasets/TomatoData/train/labels/Riped tomato_28.txt b/datasets/TomatoData/train/labels/Riped tomato_28.txt new file mode 100644 index 0000000..508ba13 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_28.txt @@ -0,0 +1,17 @@ +1 0.150418 0.198000 0.105850 0.156000 +1 0.068245 0.102000 0.108635 0.156000 +1 0.208914 0.098000 0.089136 0.124000 +1 0.238162 0.202000 0.097493 0.140000 +1 0.324513 0.244000 0.075209 0.112000 +1 0.310585 0.120000 0.114206 0.160000 +1 0.435933 0.242000 0.125348 0.180000 +1 0.536212 0.218000 0.097493 0.148000 +1 0.604457 0.428000 0.111421 0.152000 +1 0.601671 0.598000 0.116992 0.172000 +1 0.603064 0.806000 0.114206 0.148000 +1 0.552925 0.860000 0.091922 0.128000 +1 0.486072 0.798000 0.114206 0.172000 +1 0.459610 0.654000 0.116992 0.156000 +1 0.448468 0.494000 0.122563 0.172000 +1 0.008357 0.780000 0.011142 0.112000 +1 0.204735 0.018000 0.097493 0.028000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_282.txt b/datasets/TomatoData/train/labels/Riped tomato_282.txt new file mode 100644 index 0000000..244a64c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_282.txt @@ -0,0 +1,2 @@ +0 0.256977 0.589147 0.425581 0.558140 +1 0.697674 0.569767 0.488372 0.635659 diff --git a/datasets/TomatoData/train/labels/Riped tomato_286.txt b/datasets/TomatoData/train/labels/Riped tomato_286.txt new file mode 100644 index 0000000..f56c8a4 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_286.txt @@ -0,0 +1,2 @@ +0 0.266667 0.537778 0.477333 0.813333 +0 0.713333 0.403333 0.464000 0.771111 diff --git a/datasets/TomatoData/train/labels/Riped tomato_288.txt b/datasets/TomatoData/train/labels/Riped tomato_288.txt new file mode 100644 index 0000000..b57908c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_288.txt @@ -0,0 +1,3 @@ +0 0.272396 0.269362 0.539583 0.511390 +0 0.733854 0.451025 0.511458 0.527335 +0 0.403385 0.737187 0.453646 0.498292 diff --git a/datasets/TomatoData/train/labels/Riped tomato_29.txt b/datasets/TomatoData/train/labels/Riped tomato_29.txt new file mode 100644 index 0000000..3a55851 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_29.txt @@ -0,0 +1,8 @@ +0 0.814941 0.396484 0.233398 0.259115 +0 0.823975 0.775391 0.238770 0.273438 +1 0.580566 0.774089 0.233398 0.270833 +1 0.575439 0.398112 0.219238 0.253255 +1 0.340820 0.783529 0.224609 0.249349 +1 0.130615 0.821940 0.158691 0.175130 +1 0.128418 0.434245 0.158203 0.183594 +1 0.340576 0.398112 0.222168 0.253255 diff --git a/datasets/TomatoData/train/labels/Riped tomato_30.txt b/datasets/TomatoData/train/labels/Riped tomato_30.txt new file mode 100644 index 0000000..6914821 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_30.txt @@ -0,0 +1,4 @@ +0 0.222422 0.593520 0.227616 0.322298 +0 0.434832 0.650113 0.260295 0.366440 +0 0.571307 0.482032 0.247639 0.350594 +0 0.341991 0.421477 0.210994 0.264007 diff --git a/datasets/TomatoData/train/labels/Riped tomato_31.txt b/datasets/TomatoData/train/labels/Riped tomato_31.txt new file mode 100644 index 0000000..14509ea --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_31.txt @@ -0,0 +1,4 @@ +0 0.371665 0.394375 0.255400 0.296250 +0 0.594028 0.395000 0.209657 0.197500 +0 0.603558 0.628750 0.266836 0.267500 +0 0.358323 0.625000 0.241423 0.227500 diff --git a/datasets/TomatoData/train/labels/Riped tomato_32.txt b/datasets/TomatoData/train/labels/Riped tomato_32.txt new file mode 100644 index 0000000..116a726 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_32.txt @@ -0,0 +1,4 @@ +0 0.407500 0.403750 0.368333 0.517500 +0 0.063750 0.824375 0.124167 0.351250 +1 0.362917 0.958750 0.269167 0.080000 +0 0.413750 0.920000 0.362500 0.160000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_33.txt b/datasets/TomatoData/train/labels/Riped tomato_33.txt new file mode 100644 index 0000000..9d194a1 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_33.txt @@ -0,0 +1,3 @@ +0 0.488324 0.244217 0.240385 0.472420 +1 0.595238 0.731317 0.239927 0.469751 +1 0.372024 0.657473 0.241300 0.425267 diff --git a/datasets/TomatoData/train/labels/Riped tomato_34.txt b/datasets/TomatoData/train/labels/Riped tomato_34.txt new file mode 100644 index 0000000..c25e46c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_34.txt @@ -0,0 +1 @@ +0 0.400000 0.541223 0.603922 0.731383 diff --git a/datasets/TomatoData/train/labels/Riped tomato_35.txt b/datasets/TomatoData/train/labels/Riped tomato_35.txt new file mode 100644 index 0000000..146d169 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_35.txt @@ -0,0 +1,5 @@ +0 0.506757 0.275676 0.364865 0.454054 +0 0.733108 0.587387 0.317568 0.432432 +0 0.472297 0.761261 0.293243 0.405405 +0 0.295946 0.610811 0.302703 0.396396 +1 0.975000 0.868468 0.050000 0.115315 diff --git a/datasets/TomatoData/train/labels/Riped tomato_36.txt b/datasets/TomatoData/train/labels/Riped tomato_36.txt new file mode 100644 index 0000000..80a2a05 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_36.txt @@ -0,0 +1,107 @@ +0 0.199681 0.565947 0.127796 0.167866 +0 0.236422 0.672662 0.095847 0.117506 +0 0.299521 0.633094 0.132588 0.148681 +0 0.309105 0.482014 0.119808 0.163070 +0 0.198882 0.375300 0.129393 0.141487 +0 0.313898 0.330935 0.094249 0.110312 +0 0.138179 0.659472 0.017572 0.023981 +1 0.162939 0.664269 0.022364 0.028777 +0 0.153355 0.796163 0.012780 0.019185 +0 0.176518 0.718225 0.007987 0.011990 +0 0.171725 0.729017 0.007987 0.014388 +0 0.172524 0.744604 0.009585 0.011990 +0 0.198083 0.839329 0.019169 0.023981 +1 0.162939 0.703837 0.025559 0.031175 +0 0.226837 0.769784 0.063898 0.081535 +0 0.275559 0.758993 0.039936 0.064748 +0 0.301118 0.776978 0.043131 0.071942 +0 0.315495 0.488010 0.107029 0.151079 +0 0.200479 0.426859 0.094249 0.028777 +0 0.273163 0.534772 0.031949 0.057554 +0 0.388978 0.601918 0.027157 0.033573 +0 0.329872 0.821343 0.020767 0.031175 +0 0.337859 0.884892 0.027157 0.033573 +1 0.329073 0.905276 0.022364 0.016787 +0 0.316294 0.881295 0.022364 0.031175 +0 0.325080 0.859712 0.027157 0.040767 +0 0.349840 0.810552 0.012780 0.023981 +0 0.373003 0.854916 0.027157 0.031175 +0 0.463259 0.750600 0.009585 0.014388 +0 0.428115 0.809353 0.015974 0.016787 +0 0.432109 0.794964 0.014377 0.016787 +0 0.447284 0.748201 0.009585 0.014388 +0 0.354633 0.727818 0.009585 0.021583 +0 0.362620 0.741007 0.015974 0.023981 +0 0.356230 0.750600 0.009585 0.014388 +0 0.363419 0.766187 0.014377 0.021583 +0 0.373003 0.797362 0.014377 0.021583 +0 0.365815 0.784173 0.009585 0.014388 +0 0.403355 0.781775 0.011182 0.014388 +0 0.404952 0.770983 0.011182 0.011990 +0 0.386581 0.711031 0.012780 0.016787 +0 0.395367 0.724221 0.014377 0.019185 +0 0.407348 0.732614 0.022364 0.031175 +0 0.426518 0.720624 0.022364 0.021583 +0 0.446486 0.726619 0.017572 0.023981 +0 0.448882 0.711031 0.025559 0.026379 +1 0.388179 0.803357 0.009585 0.014388 +1 0.378594 0.812950 0.012780 0.014388 +1 0.400958 0.568345 0.028754 0.033573 +0 0.615016 0.917266 0.041534 0.035971 +0 0.596645 0.900480 0.036741 0.045564 +0 0.634185 0.905276 0.035144 0.040767 +0 0.626997 0.877698 0.033546 0.038369 +0 0.613419 0.862110 0.025559 0.031175 +0 0.657348 0.870504 0.030351 0.038369 +0 0.692492 0.876499 0.033546 0.035971 +0 0.663738 0.918465 0.023962 0.028777 +0 0.724441 0.826139 0.030351 0.035971 +0 0.723642 0.857314 0.025559 0.031175 +0 0.711661 0.847722 0.023962 0.026379 +0 0.652556 0.846523 0.027157 0.033573 +0 0.677316 0.838129 0.028754 0.040767 +0 0.626198 0.832134 0.031949 0.043165 +0 0.649361 0.818945 0.023962 0.031175 +0 0.672524 0.805755 0.028754 0.038369 +0 0.693291 0.830935 0.019169 0.035971 +0 0.800319 0.804556 0.019169 0.021583 +0 0.686901 0.655875 0.031949 0.045564 +0 0.711661 0.669065 0.036741 0.052758 +0 0.850639 0.517986 0.027157 0.038369 +0 0.894569 0.575540 0.022364 0.033573 +0 0.844249 0.551559 0.014377 0.023981 +0 0.837859 0.582734 0.011182 0.023981 +0 0.814696 0.565947 0.015974 0.019185 +0 0.898562 0.639089 0.020767 0.026379 +0 0.892173 0.798561 0.020767 0.023981 +0 0.891374 0.756595 0.022364 0.026379 +0 0.877796 0.733813 0.023962 0.028777 +0 0.904153 0.736211 0.022364 0.028777 +0 0.880990 0.691847 0.011182 0.011990 +0 0.799521 0.684652 0.020767 0.026379 +0 0.781150 0.689448 0.025559 0.035971 +1 0.795527 0.392086 0.028754 0.026379 +1 0.805112 0.412470 0.019169 0.023981 +1 0.849042 0.404077 0.014377 0.016787 +1 0.911342 0.449640 0.017572 0.021583 +1 0.895367 0.467626 0.017572 0.023981 +1 0.945687 0.456835 0.022364 0.031175 +0 0.873003 0.410072 0.017572 0.023981 +0 0.926518 0.416067 0.015974 0.011990 +0 0.928115 0.532374 0.028754 0.038369 +0 0.910543 0.595923 0.019169 0.026379 +1 0.923323 0.569544 0.015974 0.021583 +0 0.990415 0.420863 0.019169 0.045564 +0 0.982428 0.677458 0.035144 0.045564 +0 0.966454 0.714628 0.035144 0.047962 +0 0.989617 0.714628 0.020767 0.038369 +0 0.949681 0.735012 0.036741 0.050360 +1 0.912939 0.645084 0.014377 0.023981 +0 0.964856 0.535971 0.012780 0.026379 +0 0.976038 0.857314 0.025559 0.031175 +1 0.178115 0.045564 0.119808 0.086331 +1 0.985623 0.233813 0.028754 0.050360 +1 0.773962 0.111511 0.020767 0.016787 +0 0.795527 0.110312 0.015974 0.019185 +0 0.781949 0.044365 0.017572 0.021583 +1 0.697284 0.405276 0.014377 0.019185 diff --git a/datasets/TomatoData/train/labels/Riped tomato_37.txt b/datasets/TomatoData/train/labels/Riped tomato_37.txt new file mode 100644 index 0000000..23c8120 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_37.txt @@ -0,0 +1,21 @@ +0 0.307308 0.475173 0.159231 0.241339 +1 0.617692 0.296189 0.247692 0.377598 +1 0.799231 0.189376 0.333846 0.362587 +1 0.966154 0.085450 0.067692 0.168591 +1 0.940385 0.390878 0.117692 0.299076 +1 0.809615 0.568129 0.225385 0.397229 +1 0.942308 0.658776 0.107692 0.296767 +1 0.509615 0.081986 0.231538 0.161663 +1 0.408846 0.359122 0.245385 0.496536 +1 0.269615 0.098730 0.199231 0.188222 +1 0.158846 0.374711 0.260769 0.384527 +1 0.104231 0.794457 0.206923 0.337182 +1 0.343077 0.719977 0.238462 0.324480 +1 0.510000 0.844111 0.164615 0.237875 +1 0.720769 0.848152 0.260000 0.303695 +1 0.892308 0.868360 0.164615 0.263279 +1 0.378846 0.944573 0.225385 0.110855 +1 0.256154 0.900693 0.123077 0.177829 +1 0.092308 0.059469 0.156923 0.109700 +1 0.033846 0.219400 0.063077 0.300231 +1 0.575769 0.596420 0.188462 0.317552 diff --git a/datasets/TomatoData/train/labels/Riped tomato_38.txt b/datasets/TomatoData/train/labels/Riped tomato_38.txt new file mode 100644 index 0000000..fa6673d --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_38.txt @@ -0,0 +1,5 @@ +0 0.426270 0.456706 0.452148 0.500651 +0 0.725342 0.281576 0.412598 0.479818 +0 0.557617 0.755534 0.370117 0.447266 +0 0.235352 0.759766 0.326172 0.470052 +0 0.306885 0.313802 0.383301 0.429688 diff --git a/datasets/TomatoData/train/labels/Riped tomato_39.txt b/datasets/TomatoData/train/labels/Riped tomato_39.txt new file mode 100644 index 0000000..873314e --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_39.txt @@ -0,0 +1,14 @@ +0 0.598333 0.322000 0.274000 0.392000 +0 0.400000 0.093500 0.266667 0.185000 +0 0.210667 0.741500 0.286667 0.425000 +0 0.485000 0.702500 0.279333 0.397000 +0 0.775333 0.629500 0.278667 0.399000 +0 0.725667 0.934000 0.286000 0.132000 +0 0.300667 0.359500 0.274667 0.395000 +0 0.080000 0.449000 0.158667 0.408000 +0 0.943667 0.804000 0.102000 0.376000 +0 0.104000 0.960000 0.204000 0.080000 +0 0.399000 0.930000 0.310000 0.140000 +0 0.882667 0.196500 0.234667 0.391000 +0 0.697000 0.081500 0.274000 0.161000 +0 0.131000 0.140500 0.258000 0.279000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_40.txt b/datasets/TomatoData/train/labels/Riped tomato_40.txt new file mode 100644 index 0000000..727176b --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_40.txt @@ -0,0 +1,7 @@ +0 0.423333 0.628125 0.204000 0.283036 +0 0.638333 0.569196 0.206000 0.291964 +0 0.525000 0.304911 0.200667 0.274107 +0 0.325000 0.417857 0.182000 0.212500 +1 0.102333 0.575000 0.203333 0.217857 +1 0.442333 0.419196 0.080667 0.125893 +1 0.236333 0.534375 0.058000 0.140179 diff --git a/datasets/TomatoData/train/labels/Riped tomato_44.txt b/datasets/TomatoData/train/labels/Riped tomato_44.txt new file mode 100644 index 0000000..89884b7 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_44.txt @@ -0,0 +1 @@ +0 0.500833 0.518333 0.975000 0.860000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_45.txt b/datasets/TomatoData/train/labels/Riped tomato_45.txt new file mode 100644 index 0000000..cae9bf6 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_45.txt @@ -0,0 +1,33 @@ +1 0.499063 0.364652 0.063125 0.095926 +0 0.487187 0.289093 0.053125 0.107753 +0 0.484687 0.189882 0.064375 0.140604 +0 0.448750 0.164258 0.080000 0.152431 +0 0.400313 0.268725 0.078125 0.161629 +0 0.361250 0.391590 0.077500 0.165572 +0 0.415938 0.470434 0.064375 0.131406 +0 0.284375 0.381078 0.077500 0.165572 +0 0.202187 0.392247 0.076875 0.151117 +0 0.290625 0.118922 0.077500 0.153745 +0 0.243125 0.835085 0.081250 0.159001 +0 0.350000 0.598555 0.071250 0.137976 +0 0.370625 0.649146 0.086250 0.168200 +0 0.431563 0.749671 0.081875 0.153745 +0 0.462813 0.870565 0.071875 0.140604 +1 0.490000 0.895532 0.041250 0.093298 +0 0.433437 0.647832 0.081875 0.105125 +0 0.672500 0.114980 0.045000 0.095926 +0 0.741563 0.132720 0.048125 0.089356 +0 0.730000 0.241130 0.061250 0.106439 +1 0.751875 0.323259 0.052500 0.097240 +1 0.754062 0.946124 0.053125 0.076216 +0 0.746563 0.877792 0.054375 0.086728 +0 0.746563 0.782523 0.056875 0.082786 +0 0.710938 0.689225 0.059375 0.098555 +0 0.659375 0.620237 0.057500 0.118265 +0 0.595625 0.603811 0.026250 0.072273 +0 0.015312 0.360710 0.026875 0.119580 +0 0.034063 0.496058 0.066875 0.103811 +0 0.039062 0.672142 0.066875 0.159001 +0 0.007812 0.602497 0.014375 0.095926 +0 0.037500 0.813403 0.067500 0.144547 +0 0.030312 0.929041 0.055625 0.128778 diff --git a/datasets/TomatoData/train/labels/Riped tomato_46.txt b/datasets/TomatoData/train/labels/Riped tomato_46.txt new file mode 100644 index 0000000..c330b58 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_46.txt @@ -0,0 +1 @@ +1 0.495152 0.598566 0.624434 0.627957 diff --git a/datasets/TomatoData/train/labels/Riped tomato_48.txt b/datasets/TomatoData/train/labels/Riped tomato_48.txt new file mode 100644 index 0000000..038cf79 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_48.txt @@ -0,0 +1,4 @@ +1 0.122000 0.515000 0.236000 0.350000 +1 0.604000 0.480000 0.392000 0.430000 +1 0.544000 0.860000 0.304000 0.280000 +1 0.162000 0.735000 0.108000 0.100000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_49.txt b/datasets/TomatoData/train/labels/Riped tomato_49.txt new file mode 100644 index 0000000..335822f --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_49.txt @@ -0,0 +1,3 @@ +0 0.378704 0.614198 0.264815 0.395062 +0 0.392593 0.287037 0.255556 0.382716 +0 0.650926 0.401235 0.279630 0.425926 diff --git a/datasets/TomatoData/train/labels/Riped tomato_50.txt b/datasets/TomatoData/train/labels/Riped tomato_50.txt new file mode 100644 index 0000000..5746411 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_50.txt @@ -0,0 +1,10 @@ +0 0.280714 0.228051 0.324286 0.451820 +0 0.615714 0.237687 0.320000 0.471092 +0 0.869286 0.226981 0.250000 0.376874 +0 0.843571 0.559957 0.310000 0.447537 +0 0.696429 0.750535 0.338571 0.498929 +0 0.458571 0.471092 0.302857 0.385439 +0 0.352857 0.775161 0.351429 0.449679 +0 0.152143 0.604925 0.301429 0.468951 +0 0.170714 0.191649 0.255714 0.331906 +0 0.446429 0.069593 0.190000 0.134904 diff --git a/datasets/TomatoData/train/labels/Riped tomato_52.txt b/datasets/TomatoData/train/labels/Riped tomato_52.txt new file mode 100644 index 0000000..2f33f0c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_52.txt @@ -0,0 +1,3 @@ +0 0.745000 0.585455 0.170000 0.218182 +0 0.541250 0.647273 0.142500 0.196364 +0 0.575000 0.456364 0.130000 0.170909 diff --git a/datasets/TomatoData/train/labels/Riped tomato_53.txt b/datasets/TomatoData/train/labels/Riped tomato_53.txt new file mode 100644 index 0000000..5714a25 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_53.txt @@ -0,0 +1,5 @@ +0 0.441846 0.269091 0.360303 0.530909 +0 0.804678 0.237273 0.378003 0.467273 +0 0.315424 0.711818 0.347661 0.485455 +0 0.649810 0.726364 0.369153 0.496364 +0 0.910240 0.675455 0.179520 0.572727 diff --git a/datasets/TomatoData/train/labels/Riped tomato_54.txt b/datasets/TomatoData/train/labels/Riped tomato_54.txt new file mode 100644 index 0000000..f5dd8e5 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_54.txt @@ -0,0 +1,3 @@ +1 0.272500 0.735460 0.487500 0.529081 +0 0.692500 0.415572 0.567500 0.819887 +0 0.353125 0.291745 0.503750 0.575985 diff --git a/datasets/TomatoData/train/labels/Riped tomato_56.txt b/datasets/TomatoData/train/labels/Riped tomato_56.txt new file mode 100644 index 0000000..3e63237 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_56.txt @@ -0,0 +1,3 @@ +0 0.274576 0.454644 0.450847 0.576674 +0 0.628814 0.588553 0.464407 0.593952 +0 0.727119 0.429806 0.461017 0.518359 diff --git a/datasets/TomatoData/train/labels/Riped tomato_57.txt b/datasets/TomatoData/train/labels/Riped tomato_57.txt new file mode 100644 index 0000000..895ef1d --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_57.txt @@ -0,0 +1,8 @@ +0 0.549805 0.437012 0.218750 0.213867 +0 0.362305 0.492676 0.210938 0.245117 +0 0.352539 0.724609 0.232422 0.158203 +0 0.483398 0.677734 0.214844 0.216797 +0 0.413574 0.445801 0.153320 0.180664 +0 0.643555 0.364746 0.046875 0.041992 +0 0.414062 0.321289 0.234375 0.171875 +0 0.629395 0.274902 0.225586 0.143555 diff --git a/datasets/TomatoData/train/labels/Riped tomato_59.txt b/datasets/TomatoData/train/labels/Riped tomato_59.txt new file mode 100644 index 0000000..f0ee3fa --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_59.txt @@ -0,0 +1,4 @@ +0 0.528333 0.664830 0.366667 0.395792 +0 0.295000 0.504509 0.341667 0.415832 +0 0.686250 0.457916 0.364167 0.414830 +0 0.445000 0.334168 0.270000 0.287575 diff --git a/datasets/TomatoData/train/labels/Riped tomato_60.txt b/datasets/TomatoData/train/labels/Riped tomato_60.txt new file mode 100644 index 0000000..1a590b9 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_60.txt @@ -0,0 +1 @@ +0 0.420833 0.534815 0.438333 0.696296 diff --git a/datasets/TomatoData/train/labels/Riped tomato_61.txt b/datasets/TomatoData/train/labels/Riped tomato_61.txt new file mode 100644 index 0000000..0169314 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_61.txt @@ -0,0 +1,10 @@ +1 0.107917 0.490871 0.144167 0.330056 +1 0.239583 0.699438 0.219167 0.266854 +1 0.299583 0.399579 0.289167 0.321629 +1 0.658750 0.716994 0.174167 0.346910 +0 0.549167 0.113764 0.171667 0.224719 +0 0.530000 0.391152 0.186667 0.316011 +1 0.647500 0.195225 0.101667 0.160112 +0 0.725000 0.406601 0.201667 0.372191 +0 0.906667 0.606039 0.180000 0.299157 +0 0.814167 0.795646 0.178333 0.299157 diff --git a/datasets/TomatoData/train/labels/Riped tomato_62.txt b/datasets/TomatoData/train/labels/Riped tomato_62.txt new file mode 100644 index 0000000..8d1997a --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_62.txt @@ -0,0 +1,7 @@ +0 0.276148 0.106132 0.146684 0.207547 +0 0.394133 0.122642 0.122449 0.207547 +0 0.492985 0.375000 0.184949 0.349057 +0 0.658801 0.283019 0.192602 0.358491 +0 0.248087 0.725236 0.174745 0.323113 +0 0.234056 0.943396 0.179847 0.113208 +1 0.133929 0.954009 0.096939 0.091981 diff --git a/datasets/TomatoData/train/labels/Riped tomato_64.txt b/datasets/TomatoData/train/labels/Riped tomato_64.txt new file mode 100644 index 0000000..64699fd --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_64.txt @@ -0,0 +1,26 @@ +0 0.496603 0.462245 0.120924 0.185714 +0 0.551630 0.330612 0.059783 0.093878 +0 0.576766 0.453061 0.052989 0.126531 +0 0.656929 0.359184 0.126359 0.191837 +0 0.737772 0.351020 0.065217 0.126531 +0 0.775136 0.409184 0.055707 0.108163 +0 0.838315 0.393878 0.070652 0.118367 +0 0.820652 0.501020 0.062500 0.120408 +0 0.762228 0.540816 0.054348 0.093878 +0 0.708560 0.527551 0.052989 0.091837 +0 0.653533 0.498980 0.062500 0.087755 +0 0.609375 0.595918 0.115489 0.171429 +0 0.663723 0.680612 0.058424 0.075510 +0 0.521739 0.710204 0.062500 0.126531 +0 0.518342 0.607143 0.066576 0.104082 +0 0.461957 0.588776 0.051630 0.091837 +0 0.597147 0.774490 0.131793 0.202041 +0 0.687500 0.779592 0.043478 0.097959 +0 0.523098 0.935714 0.057065 0.095918 +0 0.633832 0.946939 0.126359 0.106122 +0 0.690897 0.896939 0.058424 0.079592 +1 0.786685 0.895918 0.130435 0.191837 +0 0.884511 0.766327 0.108696 0.165306 +0 0.885190 0.900000 0.080163 0.093878 +0 0.961957 0.866327 0.076087 0.189796 +0 0.716033 0.974490 0.046196 0.051020 diff --git a/datasets/TomatoData/train/labels/Riped tomato_65.txt b/datasets/TomatoData/train/labels/Riped tomato_65.txt new file mode 100644 index 0000000..96bc97c --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_65.txt @@ -0,0 +1,14 @@ +0 0.192083 0.644167 0.255833 0.230000 +0 0.405000 0.539583 0.256667 0.279167 +0 0.910000 0.275833 0.180000 0.223333 +1 0.623333 0.545417 0.180000 0.129167 +1 0.195417 0.862917 0.202500 0.235833 +1 0.307917 0.879167 0.184167 0.145000 +1 0.395417 0.802500 0.244167 0.255000 +1 0.801250 0.448333 0.204167 0.228333 +1 0.888750 0.583333 0.180833 0.160000 +1 0.952083 0.645833 0.095833 0.178333 +1 0.985833 0.734167 0.028333 0.136667 +1 0.775833 0.322917 0.148333 0.120833 +1 0.681250 0.417083 0.099167 0.120833 +1 0.948750 0.461250 0.097500 0.067500 diff --git a/datasets/TomatoData/train/labels/Riped tomato_67.txt b/datasets/TomatoData/train/labels/Riped tomato_67.txt new file mode 100644 index 0000000..fd98a94 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_67.txt @@ -0,0 +1,2 @@ +0 0.264667 0.537778 0.473333 0.800000 +0 0.711333 0.401111 0.465333 0.766667 diff --git a/datasets/TomatoData/train/labels/Riped tomato_68.txt b/datasets/TomatoData/train/labels/Riped tomato_68.txt new file mode 100644 index 0000000..a515a36 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_68.txt @@ -0,0 +1 @@ +1 0.485000 0.557540 0.856667 0.702381 diff --git a/datasets/TomatoData/train/labels/Riped tomato_69.txt b/datasets/TomatoData/train/labels/Riped tomato_69.txt new file mode 100644 index 0000000..a5f4daf --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_69.txt @@ -0,0 +1,3 @@ +0 0.278906 0.267084 0.542188 0.509112 +0 0.404167 0.738041 0.455208 0.493166 +0 0.743229 0.449032 0.495833 0.525626 diff --git a/datasets/TomatoData/train/labels/Riped tomato_73.txt b/datasets/TomatoData/train/labels/Riped tomato_73.txt new file mode 100644 index 0000000..9a18768 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_73.txt @@ -0,0 +1,17 @@ +0 0.195139 0.803333 0.284722 0.393333 +0 0.047222 0.898889 0.091667 0.197778 +0 0.133333 0.651111 0.219444 0.226667 +0 0.095139 0.405556 0.187500 0.322222 +0 0.081250 0.138889 0.159722 0.273333 +0 0.283333 0.166667 0.269444 0.328889 +0 0.272917 0.427778 0.195833 0.233333 +0 0.359028 0.560000 0.276389 0.413333 +0 0.496528 0.282222 0.251389 0.413333 +0 0.556944 0.088889 0.250000 0.173333 +0 0.695833 0.262222 0.197222 0.222222 +0 0.699306 0.563333 0.351389 0.464444 +0 0.813194 0.826667 0.359722 0.346667 +0 0.935417 0.576667 0.129167 0.402222 +0 0.854861 0.121111 0.273611 0.237778 +0 0.891667 0.234444 0.216667 0.411111 +0 0.476389 0.876667 0.277778 0.246667 diff --git a/datasets/TomatoData/train/labels/Riped tomato_77.txt b/datasets/TomatoData/train/labels/Riped tomato_77.txt new file mode 100644 index 0000000..3ea8b16 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_77.txt @@ -0,0 +1,28 @@ +0 0.063333 0.733333 0.124444 0.314074 +0 0.400000 0.631111 0.208889 0.263704 +0 0.397222 0.371852 0.212222 0.257778 +0 0.360000 0.185185 0.180000 0.210370 +0 0.105000 0.547407 0.194444 0.259259 +0 0.460556 0.301481 0.134444 0.188148 +0 0.593333 0.309630 0.137778 0.180741 +1 0.710556 0.351852 0.145556 0.182222 +1 0.887222 0.137037 0.154444 0.197037 +1 0.820000 0.331111 0.097778 0.128889 +1 0.713333 0.185926 0.122222 0.137778 +1 0.881667 0.511852 0.134444 0.167407 +1 0.748333 0.520741 0.156667 0.200000 +1 0.654444 0.674815 0.211111 0.259259 +1 0.542222 0.826667 0.173333 0.231111 +1 0.700000 0.884444 0.175556 0.228148 +1 0.219444 0.754815 0.218889 0.271111 +1 0.811667 0.703704 0.107778 0.154074 +1 0.831667 0.245926 0.130000 0.154074 +1 0.427222 0.933333 0.105556 0.133333 +1 0.397222 0.779259 0.130000 0.112593 +1 0.286111 0.828889 0.172222 0.214815 +1 0.250556 0.960000 0.167778 0.080000 +1 0.083333 0.961481 0.164444 0.077037 +1 0.597778 0.467407 0.151111 0.185185 +0 0.072778 0.369630 0.141111 0.167407 +0 0.216667 0.316296 0.144444 0.220741 +0 0.305000 0.562963 0.076667 0.127407 diff --git a/datasets/TomatoData/train/labels/Riped tomato_79.txt b/datasets/TomatoData/train/labels/Riped tomato_79.txt new file mode 100644 index 0000000..d22a496 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_79.txt @@ -0,0 +1,3 @@ +0 0.545312 0.550694 0.282813 0.429167 +1 0.376172 0.678472 0.194531 0.270833 +1 0.214062 0.479167 0.276562 0.500000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_8.txt b/datasets/TomatoData/train/labels/Riped tomato_8.txt new file mode 100644 index 0000000..e712114 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_8.txt @@ -0,0 +1,3 @@ +0 0.544531 0.545139 0.281250 0.429167 +1 0.370312 0.679167 0.206250 0.272222 +0 0.215625 0.475000 0.270313 0.483333 diff --git a/datasets/TomatoData/train/labels/Riped tomato_84.txt b/datasets/TomatoData/train/labels/Riped tomato_84.txt new file mode 100644 index 0000000..632d1aa --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_84.txt @@ -0,0 +1 @@ +0 0.523729 0.609110 0.661017 0.718220 diff --git a/datasets/TomatoData/train/labels/Riped tomato_85.txt b/datasets/TomatoData/train/labels/Riped tomato_85.txt new file mode 100644 index 0000000..a74bbc9 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_85.txt @@ -0,0 +1,4 @@ +0 0.272857 0.568519 0.534286 0.603704 +1 0.405714 0.900000 0.142857 0.162963 +1 0.638571 0.775926 0.282857 0.314815 +1 0.758571 0.511111 0.465714 0.540741 diff --git a/datasets/TomatoData/train/labels/Riped tomato_87.txt b/datasets/TomatoData/train/labels/Riped tomato_87.txt new file mode 100644 index 0000000..bae70bf --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_87.txt @@ -0,0 +1,5 @@ +0 0.294667 0.798571 0.328000 0.402857 +0 0.413333 0.457143 0.274667 0.577143 +0 0.639333 0.400000 0.409333 0.782857 +0 0.669333 0.871429 0.229333 0.257143 +0 0.503333 0.880000 0.158667 0.240000 diff --git a/datasets/TomatoData/train/labels/Riped tomato_89.txt b/datasets/TomatoData/train/labels/Riped tomato_89.txt new file mode 100644 index 0000000..17a7a40 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_89.txt @@ -0,0 +1,5 @@ +0 0.202326 0.376299 0.241860 0.345114 +0 0.464535 0.320166 0.252326 0.357588 +0 0.711628 0.422037 0.267442 0.478170 +0 0.501744 0.538462 0.301163 0.457380 +0 0.244186 0.645530 0.318605 0.550936 diff --git a/datasets/TomatoData/train/labels/Riped tomato_9.txt b/datasets/TomatoData/train/labels/Riped tomato_9.txt new file mode 100644 index 0000000..271b59e --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_9.txt @@ -0,0 +1,6 @@ +0 0.232667 0.411429 0.390667 0.817143 +0 0.364000 0.881429 0.389333 0.237143 +0 0.813333 0.624286 0.290667 0.642857 +0 0.891333 0.191429 0.214667 0.377143 +0 0.592667 0.227143 0.356000 0.448571 +1 0.534000 0.708571 0.294667 0.577143 diff --git a/datasets/TomatoData/train/labels/Riped tomato_91.txt b/datasets/TomatoData/train/labels/Riped tomato_91.txt new file mode 100644 index 0000000..8373d00 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_91.txt @@ -0,0 +1,3 @@ +0 0.314258 0.606471 0.286328 0.475294 +0 0.514258 0.665000 0.235547 0.457059 +1 0.656445 0.736765 0.197266 0.394706 diff --git a/datasets/TomatoData/train/labels/Riped tomato_92.txt b/datasets/TomatoData/train/labels/Riped tomato_92.txt new file mode 100644 index 0000000..b687f26 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_92.txt @@ -0,0 +1 @@ +0 0.404737 0.679743 0.615860 0.331833 diff --git a/datasets/TomatoData/train/labels/Riped tomato_93.txt b/datasets/TomatoData/train/labels/Riped tomato_93.txt new file mode 100644 index 0000000..5a8c980 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_93.txt @@ -0,0 +1,11 @@ +1 0.575441 0.895028 0.192731 0.187845 +0 0.303965 0.482320 0.341410 0.330387 +0 0.586454 0.304972 0.272026 0.256354 +0 0.622797 0.680663 0.346916 0.360221 +0 0.312225 0.834254 0.364537 0.331492 +0 0.075441 0.760773 0.133260 0.124862 +0 0.061674 0.216575 0.088106 0.088398 +0 0.101872 0.163536 0.080396 0.064088 +0 0.052313 0.117127 0.075991 0.064088 +0 0.071586 0.032044 0.092511 0.061878 +0 0.154736 0.924862 0.091410 0.112707 diff --git a/datasets/TomatoData/train/labels/Riped tomato_96.txt b/datasets/TomatoData/train/labels/Riped tomato_96.txt new file mode 100644 index 0000000..b4b6468 --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_96.txt @@ -0,0 +1 @@ +0 0.510169 0.544715 0.772881 0.731707 diff --git a/datasets/TomatoData/train/labels/Riped tomato_98.txt b/datasets/TomatoData/train/labels/Riped tomato_98.txt new file mode 100644 index 0000000..85858ba --- /dev/null +++ b/datasets/TomatoData/train/labels/Riped tomato_98.txt @@ -0,0 +1,9 @@ +0 0.170166 0.505327 0.250488 0.381392 +0 0.224854 0.589134 0.259277 0.412642 +0 0.268555 0.365412 0.151367 0.152699 +0 0.482422 0.613281 0.343750 0.470881 +0 0.800293 0.669389 0.295898 0.408381 +0 0.802979 0.523793 0.311035 0.409801 +0 0.514893 0.470526 0.280762 0.308949 +0 0.571045 0.370028 0.226074 0.232955 +0 0.705322 0.330611 0.077637 0.056108 diff --git a/datasets/TomatoData/train/labels/classes.txt b/datasets/TomatoData/train/labels/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/TomatoData/train/labels/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/TomatoData/train/labels/unriped tomato_100.txt b/datasets/TomatoData/train/labels/unriped tomato_100.txt new file mode 100644 index 0000000..d397e5b --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_100.txt @@ -0,0 +1,13 @@ +1 0.228807 0.843750 0.278424 0.312500 +1 0.235040 0.584250 0.257646 0.375000 +1 0.465758 0.667875 0.290891 0.457750 +1 0.252244 0.280500 0.227560 0.301500 +1 0.347241 0.266375 0.116356 0.273250 +1 0.371177 0.282000 0.097739 0.201500 +1 0.436586 0.450750 0.245180 0.317000 +1 0.528092 0.670250 0.193152 0.440500 +1 0.602394 0.746125 0.250332 0.404750 +1 0.850648 0.725000 0.244182 0.403000 +1 0.661569 0.925000 0.221410 0.150000 +1 0.065243 0.525750 0.125831 0.389000 +1 0.117188 0.181250 0.233710 0.353000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_101.txt b/datasets/TomatoData/train/labels/unriped tomato_101.txt new file mode 100644 index 0000000..48f9300 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_101.txt @@ -0,0 +1,4 @@ +1 0.442263 0.421583 0.415704 0.257554 +1 0.048499 0.789928 0.094688 0.113669 +1 0.177829 0.538129 0.353349 0.179856 +1 0.151270 0.863309 0.300231 0.105036 diff --git a/datasets/TomatoData/train/labels/unriped tomato_102.txt b/datasets/TomatoData/train/labels/unriped tomato_102.txt new file mode 100644 index 0000000..00f4f70 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_102.txt @@ -0,0 +1 @@ +1 0.479827 0.489286 0.654179 0.764286 diff --git a/datasets/TomatoData/train/labels/unriped tomato_103.txt b/datasets/TomatoData/train/labels/unriped tomato_103.txt new file mode 100644 index 0000000..81e4b4f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_103.txt @@ -0,0 +1,5 @@ +1 0.424939 0.368464 0.294118 0.341503 +1 0.723652 0.356822 0.261642 0.370507 +1 0.466605 0.648080 0.285539 0.316585 +1 0.963388 0.288194 0.073223 0.221814 +0 0.967678 0.527574 0.064645 0.283088 diff --git a/datasets/TomatoData/train/labels/unriped tomato_104.txt b/datasets/TomatoData/train/labels/unriped tomato_104.txt new file mode 100644 index 0000000..d84c3ac --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_104.txt @@ -0,0 +1,7 @@ +1 0.053333 0.408571 0.104000 0.451429 +1 0.276667 0.758571 0.313333 0.482857 +1 0.570667 0.658571 0.306667 0.682857 +1 0.286000 0.264286 0.294667 0.522857 +1 0.528667 0.091429 0.265333 0.177143 +1 0.879333 0.401429 0.241333 0.562857 +1 0.855333 0.837143 0.286667 0.325714 diff --git a/datasets/TomatoData/train/labels/unriped tomato_107.txt b/datasets/TomatoData/train/labels/unriped tomato_107.txt new file mode 100644 index 0000000..07c161e --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_107.txt @@ -0,0 +1,6 @@ +1 0.280000 0.467500 0.262222 0.391667 +1 0.482222 0.697500 0.302222 0.425000 +1 0.681111 0.422500 0.297778 0.431667 +1 0.492222 0.318333 0.324444 0.390000 +1 0.777778 0.147500 0.300000 0.291667 +1 0.506111 0.073333 0.256667 0.143333 diff --git a/datasets/TomatoData/train/labels/unriped tomato_108.txt b/datasets/TomatoData/train/labels/unriped tomato_108.txt new file mode 100644 index 0000000..bd5c1cd --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_108.txt @@ -0,0 +1,5 @@ +1 0.100000 0.582222 0.165000 0.213333 +1 0.281250 0.542222 0.222500 0.302222 +1 0.498750 0.501111 0.215000 0.371111 +0 0.717500 0.510000 0.212500 0.326667 +0 0.898125 0.524444 0.181250 0.293333 diff --git a/datasets/TomatoData/train/labels/unriped tomato_109.txt b/datasets/TomatoData/train/labels/unriped tomato_109.txt new file mode 100644 index 0000000..74249d9 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_109.txt @@ -0,0 +1,9 @@ +1 0.140000 0.230000 0.260000 0.406667 +1 0.183889 0.748333 0.245556 0.373333 +1 0.358889 0.571667 0.231111 0.356667 +1 0.753889 0.700833 0.301111 0.425000 +1 0.585000 0.470000 0.196667 0.396667 +1 0.748889 0.319167 0.266667 0.378333 +1 0.905000 0.428333 0.190000 0.433333 +1 0.946667 0.132500 0.106667 0.255000 +1 0.776667 0.074167 0.268889 0.145000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_110.txt b/datasets/TomatoData/train/labels/unriped tomato_110.txt new file mode 100644 index 0000000..88d23c1 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_110.txt @@ -0,0 +1,2 @@ +1 0.754464 0.638246 0.443994 0.562728 +0 0.328328 0.638855 0.414773 0.554202 diff --git a/datasets/TomatoData/train/labels/unriped tomato_118.txt b/datasets/TomatoData/train/labels/unriped tomato_118.txt new file mode 100644 index 0000000..dfe0e93 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_118.txt @@ -0,0 +1,13 @@ +1 0.791093 0.937760 0.112238 0.091146 +1 0.902969 0.547396 0.170891 0.113542 +1 0.910572 0.333073 0.178856 0.168229 +1 0.708545 0.043229 0.204924 0.085417 +1 0.520999 0.118229 0.380159 0.235417 +1 0.751991 0.260156 0.235337 0.131771 +1 0.597031 0.395313 0.368573 0.248958 +1 0.211803 0.291146 0.406227 0.315625 +1 0.269370 0.627865 0.295438 0.250521 +1 0.659305 0.725000 0.307748 0.201042 +1 0.360608 0.871094 0.289645 0.203646 +1 0.886676 0.184115 0.122375 0.098437 +1 0.755974 0.583594 0.166546 0.127604 diff --git a/datasets/TomatoData/train/labels/unriped tomato_125.txt b/datasets/TomatoData/train/labels/unriped tomato_125.txt new file mode 100644 index 0000000..34071cc --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_125.txt @@ -0,0 +1 @@ +1 0.502000 0.472685 0.660000 0.547222 diff --git a/datasets/TomatoData/train/labels/unriped tomato_13.txt b/datasets/TomatoData/train/labels/unriped tomato_13.txt new file mode 100644 index 0000000..eb84993 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_13.txt @@ -0,0 +1,2 @@ +0 0.329583 0.647710 0.407500 0.680945 +1 0.724167 0.502954 0.406667 0.701625 diff --git a/datasets/TomatoData/train/labels/unriped tomato_130.txt b/datasets/TomatoData/train/labels/unriped tomato_130.txt new file mode 100644 index 0000000..bd2bbe7 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_130.txt @@ -0,0 +1,3 @@ +1 0.258462 0.456923 0.423077 0.548718 +1 0.707692 0.474359 0.464615 0.538462 +1 0.439231 0.369744 0.196923 0.364103 diff --git a/datasets/TomatoData/train/labels/unriped tomato_132.txt b/datasets/TomatoData/train/labels/unriped tomato_132.txt new file mode 100644 index 0000000..7286ef8 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_132.txt @@ -0,0 +1 @@ +1 0.518462 0.479137 0.667692 0.519424 diff --git a/datasets/TomatoData/train/labels/unriped tomato_138.txt b/datasets/TomatoData/train/labels/unriped tomato_138.txt new file mode 100644 index 0000000..6113aee --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_138.txt @@ -0,0 +1,3 @@ +1 0.238381 0.674342 0.359836 0.497807 +1 0.605671 0.649561 0.332651 0.478070 +1 0.384537 0.473246 0.297281 0.430702 diff --git a/datasets/TomatoData/train/labels/unriped tomato_14.txt b/datasets/TomatoData/train/labels/unriped tomato_14.txt new file mode 100644 index 0000000..8ad61dc --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_14.txt @@ -0,0 +1,3 @@ +1 0.239842 0.676096 0.358667 0.479386 +1 0.604209 0.653070 0.331482 0.476316 +1 0.383514 0.486184 0.295235 0.441667 diff --git a/datasets/TomatoData/train/labels/unriped tomato_141.txt b/datasets/TomatoData/train/labels/unriped tomato_141.txt new file mode 100644 index 0000000..83ac44a --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_141.txt @@ -0,0 +1,3 @@ +1 0.314103 0.519643 0.403846 0.532143 +1 0.701923 0.455357 0.416667 0.410714 +1 0.483974 0.307143 0.397436 0.335714 diff --git a/datasets/TomatoData/train/labels/unriped tomato_142.txt b/datasets/TomatoData/train/labels/unriped tomato_142.txt new file mode 100644 index 0000000..b900112 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_142.txt @@ -0,0 +1,7 @@ +1 0.204375 0.320000 0.406250 0.630000 +1 0.200000 0.810000 0.397500 0.380000 +1 0.523750 0.430000 0.375000 0.540000 +1 0.735625 0.334167 0.136250 0.245000 +1 0.746875 0.610000 0.233750 0.320000 +1 0.897500 0.748333 0.197500 0.266667 +0 0.893125 0.352500 0.213750 0.295000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_151.txt b/datasets/TomatoData/train/labels/unriped tomato_151.txt new file mode 100644 index 0000000..5b7e669 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_151.txt @@ -0,0 +1,6 @@ +1 0.355000 0.548961 0.163333 0.243323 +1 0.390000 0.900593 0.113333 0.198813 +1 0.660833 0.594955 0.158333 0.270030 +1 0.770833 0.562315 0.151667 0.258160 +1 0.510833 0.321958 0.161667 0.264095 +1 0.667500 0.323442 0.165000 0.249258 diff --git a/datasets/TomatoData/train/labels/unriped tomato_158.txt b/datasets/TomatoData/train/labels/unriped tomato_158.txt new file mode 100644 index 0000000..0680f4f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_158.txt @@ -0,0 +1,3 @@ +1 0.332813 0.377670 0.296875 0.462136 +1 0.643750 0.403883 0.348750 0.485437 +1 0.443750 0.744175 0.311250 0.418447 diff --git a/datasets/TomatoData/train/labels/unriped tomato_159.txt b/datasets/TomatoData/train/labels/unriped tomato_159.txt new file mode 100644 index 0000000..0dec322 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_159.txt @@ -0,0 +1,5 @@ +1 0.408462 0.790416 0.061538 0.086605 +1 0.423846 0.904734 0.064615 0.086605 +1 0.586923 0.722864 0.155385 0.200924 +1 0.640000 0.545035 0.152308 0.196305 +1 0.452692 0.508083 0.051538 0.071594 diff --git a/datasets/TomatoData/train/labels/unriped tomato_16.txt b/datasets/TomatoData/train/labels/unriped tomato_16.txt new file mode 100644 index 0000000..207029b --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_16.txt @@ -0,0 +1,7 @@ +1 0.496875 0.218750 0.268750 0.316964 +1 0.300625 0.352679 0.226250 0.272321 +1 0.165000 0.577009 0.315000 0.448661 +1 0.519375 0.658482 0.396250 0.504464 +1 0.721250 0.484375 0.337500 0.482143 +1 0.861875 0.349330 0.243750 0.395089 +1 0.641250 0.200893 0.135000 0.187500 diff --git a/datasets/TomatoData/train/labels/unriped tomato_163.txt b/datasets/TomatoData/train/labels/unriped tomato_163.txt new file mode 100644 index 0000000..bdccaef --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_163.txt @@ -0,0 +1,5 @@ +1 0.441109 0.423741 0.431871 0.256115 +1 0.172055 0.536691 0.341801 0.174101 +1 0.043880 0.785612 0.085450 0.116547 +1 0.142032 0.851079 0.272517 0.143885 +1 0.023095 0.599281 0.043880 0.097842 diff --git a/datasets/TomatoData/train/labels/unriped tomato_165.txt b/datasets/TomatoData/train/labels/unriped tomato_165.txt new file mode 100644 index 0000000..53ae509 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_165.txt @@ -0,0 +1,4 @@ +1 0.420037 0.372141 0.288603 0.343137 +1 0.472580 0.642157 0.284620 0.319444 +1 0.697917 0.350899 0.313113 0.347222 +0 0.965993 0.525327 0.068015 0.287582 diff --git a/datasets/TomatoData/train/labels/unriped tomato_17.txt b/datasets/TomatoData/train/labels/unriped tomato_17.txt new file mode 100644 index 0000000..648e3a2 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_17.txt @@ -0,0 +1,3 @@ +1 0.313505 0.564202 0.401929 0.568093 +1 0.707395 0.501946 0.430868 0.459144 +1 0.485531 0.348249 0.398714 0.400778 diff --git a/datasets/TomatoData/train/labels/unriped tomato_173.txt b/datasets/TomatoData/train/labels/unriped tomato_173.txt new file mode 100644 index 0000000..ff3d497 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_173.txt @@ -0,0 +1,2 @@ +1 0.755682 0.630938 0.448052 0.574909 +0 0.324675 0.630938 0.418831 0.557856 diff --git a/datasets/TomatoData/train/labels/unriped tomato_179.txt b/datasets/TomatoData/train/labels/unriped tomato_179.txt new file mode 100644 index 0000000..c2799d5 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_179.txt @@ -0,0 +1,2 @@ +0 0.250625 0.477993 0.288750 0.286972 +1 0.752500 0.477993 0.282500 0.294014 diff --git a/datasets/TomatoData/train/labels/unriped tomato_189.txt b/datasets/TomatoData/train/labels/unriped tomato_189.txt new file mode 100644 index 0000000..dc7c7da --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_189.txt @@ -0,0 +1 @@ +1 0.503750 0.544776 0.640000 0.594527 diff --git a/datasets/TomatoData/train/labels/unriped tomato_193.txt b/datasets/TomatoData/train/labels/unriped tomato_193.txt new file mode 100644 index 0000000..2c7ce04 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_193.txt @@ -0,0 +1,3 @@ +1 0.256923 0.457436 0.427692 0.549744 +1 0.437308 0.383590 0.203846 0.373333 +1 0.708462 0.478462 0.470769 0.544615 diff --git a/datasets/TomatoData/train/labels/unriped tomato_198.txt b/datasets/TomatoData/train/labels/unriped tomato_198.txt new file mode 100644 index 0000000..12d03fe --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_198.txt @@ -0,0 +1,11 @@ +1 0.344841 0.264423 0.205339 0.295000 +1 0.246471 0.437500 0.149769 0.208462 +1 0.351835 0.459135 0.159266 0.200192 +1 0.660357 0.256346 0.196740 0.307692 +1 0.756609 0.443173 0.169020 0.149038 +1 0.609535 0.447885 0.182880 0.155385 +1 0.176976 0.588173 0.226643 0.368654 +1 0.374294 0.642596 0.244995 0.349423 +1 0.526181 0.703558 0.249230 0.368654 +1 0.638989 0.625769 0.241786 0.338077 +1 0.807431 0.593750 0.214964 0.312500 diff --git a/datasets/TomatoData/train/labels/unriped tomato_20.txt b/datasets/TomatoData/train/labels/unriped tomato_20.txt new file mode 100644 index 0000000..3b21213 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_20.txt @@ -0,0 +1,6 @@ +1 0.260417 0.249609 0.431944 0.225781 +1 0.793056 0.571875 0.319444 0.175000 +1 0.506250 0.579688 0.320833 0.193750 +1 0.332639 0.464062 0.365278 0.210938 +1 0.465278 0.321094 0.358333 0.192188 +1 0.712500 0.594141 0.250000 0.188281 diff --git a/datasets/TomatoData/train/labels/unriped tomato_200.txt b/datasets/TomatoData/train/labels/unriped tomato_200.txt new file mode 100644 index 0000000..992910b --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_200.txt @@ -0,0 +1,3 @@ +1 0.236334 0.675877 0.365683 0.494737 +1 0.383075 0.483114 0.290266 0.496053 +1 0.604648 0.650219 0.330605 0.491667 diff --git a/datasets/TomatoData/train/labels/unriped tomato_203.txt b/datasets/TomatoData/train/labels/unriped tomato_203.txt new file mode 100644 index 0000000..32e7679 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_203.txt @@ -0,0 +1,3 @@ +1 0.308682 0.559846 0.418006 0.594595 +1 0.702572 0.492278 0.427653 0.451737 +1 0.482315 0.337838 0.411576 0.389961 diff --git a/datasets/TomatoData/train/labels/unriped tomato_204.txt b/datasets/TomatoData/train/labels/unriped tomato_204.txt new file mode 100644 index 0000000..144e673 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_204.txt @@ -0,0 +1,8 @@ +1 0.206250 0.325000 0.410000 0.636667 +1 0.206250 0.806667 0.410000 0.386667 +1 0.549375 0.447500 0.338750 0.501667 +1 0.738750 0.316667 0.135000 0.220000 +1 0.741875 0.614167 0.253750 0.308333 +1 0.895625 0.748333 0.191250 0.270000 +1 0.447500 0.951667 0.145000 0.096667 +0 0.895625 0.353333 0.208750 0.296667 diff --git a/datasets/TomatoData/train/labels/unriped tomato_209.txt b/datasets/TomatoData/train/labels/unriped tomato_209.txt new file mode 100644 index 0000000..7e291b0 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_209.txt @@ -0,0 +1 @@ +1 0.501190 0.494764 0.585714 0.741710 diff --git a/datasets/TomatoData/train/labels/unriped tomato_210.txt b/datasets/TomatoData/train/labels/unriped tomato_210.txt new file mode 100644 index 0000000..ff4dadb --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_210.txt @@ -0,0 +1 @@ +1 0.508167 0.526136 0.700544 0.684091 diff --git a/datasets/TomatoData/train/labels/unriped tomato_213.txt b/datasets/TomatoData/train/labels/unriped tomato_213.txt new file mode 100644 index 0000000..4c8ddf5 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_213.txt @@ -0,0 +1,6 @@ +1 0.352500 0.544510 0.161667 0.258160 +1 0.660833 0.594955 0.158333 0.270030 +1 0.390000 0.893175 0.103333 0.207715 +1 0.505833 0.317507 0.155000 0.267062 +1 0.665833 0.316024 0.158333 0.264095 +1 0.771667 0.547478 0.153333 0.264095 diff --git a/datasets/TomatoData/train/labels/unriped tomato_214.txt b/datasets/TomatoData/train/labels/unriped tomato_214.txt new file mode 100644 index 0000000..0220dc3 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_214.txt @@ -0,0 +1,9 @@ +1 0.388577 0.400894 0.250936 0.324888 +1 0.195225 0.621461 0.218165 0.309985 +1 0.294476 0.680328 0.236891 0.329359 +1 0.511236 0.652012 0.207865 0.311475 +1 0.524345 0.354694 0.172285 0.286140 +1 0.617978 0.567064 0.146067 0.177347 +1 0.710674 0.684799 0.249064 0.329359 +1 0.811798 0.629657 0.198502 0.275708 +1 0.742041 0.516393 0.176966 0.168405 diff --git a/datasets/TomatoData/train/labels/unriped tomato_220.txt b/datasets/TomatoData/train/labels/unriped tomato_220.txt new file mode 100644 index 0000000..7494ac1 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_220.txt @@ -0,0 +1,3 @@ +1 0.333437 0.369417 0.310625 0.482524 +1 0.650625 0.401942 0.348750 0.491262 +1 0.442188 0.741748 0.314375 0.429126 diff --git a/datasets/TomatoData/train/labels/unriped tomato_222.txt b/datasets/TomatoData/train/labels/unriped tomato_222.txt new file mode 100644 index 0000000..5ff7c22 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_222.txt @@ -0,0 +1,5 @@ +1 0.431532 0.316137 0.356757 0.280062 +1 0.644595 0.570985 0.415315 0.346005 +1 0.347297 0.734678 0.411712 0.332040 +1 0.390541 0.923584 0.402703 0.152832 +1 0.832883 0.919317 0.312613 0.161365 diff --git a/datasets/TomatoData/train/labels/unriped tomato_228.txt b/datasets/TomatoData/train/labels/unriped tomato_228.txt new file mode 100644 index 0000000..8c8705c --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_228.txt @@ -0,0 +1,7 @@ +1 0.054000 0.387143 0.105333 0.442857 +1 0.286000 0.265714 0.292000 0.525714 +1 0.274667 0.758571 0.322667 0.482857 +1 0.569333 0.657143 0.325333 0.685714 +1 0.849333 0.831429 0.290667 0.337143 +1 0.529333 0.095714 0.269333 0.185714 +1 0.875333 0.377143 0.249333 0.605714 diff --git a/datasets/TomatoData/train/labels/unriped tomato_23.txt b/datasets/TomatoData/train/labels/unriped tomato_23.txt new file mode 100644 index 0000000..e795c13 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_23.txt @@ -0,0 +1 @@ +1 0.497619 0.493892 0.580952 0.743455 diff --git a/datasets/TomatoData/train/labels/unriped tomato_232.txt b/datasets/TomatoData/train/labels/unriped tomato_232.txt new file mode 100644 index 0000000..ddaeafe --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_232.txt @@ -0,0 +1,5 @@ +1 0.276111 0.473333 0.263333 0.406667 +1 0.483889 0.697500 0.307778 0.418333 +1 0.475556 0.310833 0.271111 0.368333 +1 0.682222 0.420833 0.295556 0.448333 +1 0.781667 0.137500 0.307778 0.271667 diff --git a/datasets/TomatoData/train/labels/unriped tomato_233.txt b/datasets/TomatoData/train/labels/unriped tomato_233.txt new file mode 100644 index 0000000..803bd33 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_233.txt @@ -0,0 +1,5 @@ +1 0.100000 0.574444 0.162500 0.237778 +1 0.283750 0.535556 0.222500 0.306667 +1 0.498750 0.500000 0.217500 0.386667 +0 0.717500 0.524444 0.220000 0.346667 +0 0.900000 0.523333 0.180000 0.291111 diff --git a/datasets/TomatoData/train/labels/unriped tomato_235.txt b/datasets/TomatoData/train/labels/unriped tomato_235.txt new file mode 100644 index 0000000..cbf98e7 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_235.txt @@ -0,0 +1,2 @@ +0 0.328328 0.642509 0.419643 0.573691 +1 0.755276 0.643727 0.443994 0.556638 diff --git a/datasets/TomatoData/train/labels/unriped tomato_237.txt b/datasets/TomatoData/train/labels/unriped tomato_237.txt new file mode 100644 index 0000000..3f2a277 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_237.txt @@ -0,0 +1,7 @@ +1 0.397936 0.223917 0.362385 0.434992 +1 0.252867 0.388443 0.189220 0.218299 +1 0.276376 0.632424 0.330275 0.455859 +1 0.552752 0.769663 0.332569 0.434992 +1 0.833142 0.700642 0.333716 0.428571 +1 0.579128 0.487159 0.341743 0.316212 +1 0.263761 0.373997 0.199541 0.179775 diff --git a/datasets/TomatoData/train/labels/unriped tomato_239.txt b/datasets/TomatoData/train/labels/unriped tomato_239.txt new file mode 100644 index 0000000..efa58a7 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_239.txt @@ -0,0 +1 @@ +1 0.518943 0.631671 0.521586 0.571926 diff --git a/datasets/TomatoData/train/labels/unriped tomato_243.txt b/datasets/TomatoData/train/labels/unriped tomato_243.txt new file mode 100644 index 0000000..52caa8b --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_243.txt @@ -0,0 +1,10 @@ +1 0.216872 0.301302 0.416365 0.303646 +1 0.511586 0.116146 0.365677 0.226042 +1 0.709631 0.048958 0.247647 0.096875 +1 0.597031 0.404687 0.380159 0.244792 +1 0.725561 0.262760 0.207096 0.143229 +1 0.912744 0.326823 0.174511 0.143229 +1 0.902969 0.541146 0.175235 0.129167 +1 0.663287 0.722135 0.299783 0.209896 +1 0.360970 0.873177 0.297610 0.205729 +1 0.285301 0.629948 0.340333 0.249479 diff --git a/datasets/TomatoData/train/labels/unriped tomato_244.txt b/datasets/TomatoData/train/labels/unriped tomato_244.txt new file mode 100644 index 0000000..3f900f0 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_244.txt @@ -0,0 +1,2 @@ +1 0.431877 0.615234 0.282776 0.425781 +1 0.580977 0.330078 0.267352 0.472656 diff --git a/datasets/TomatoData/train/labels/unriped tomato_249.txt b/datasets/TomatoData/train/labels/unriped tomato_249.txt new file mode 100644 index 0000000..c976264 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_249.txt @@ -0,0 +1 @@ +1 0.499500 0.539938 0.677000 0.633817 diff --git a/datasets/TomatoData/train/labels/unriped tomato_250.txt b/datasets/TomatoData/train/labels/unriped tomato_250.txt new file mode 100644 index 0000000..a13a8da --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_250.txt @@ -0,0 +1 @@ +1 0.498125 0.545398 0.656250 0.613184 diff --git a/datasets/TomatoData/train/labels/unriped tomato_253.txt b/datasets/TomatoData/train/labels/unriped tomato_253.txt new file mode 100644 index 0000000..7012afe --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_253.txt @@ -0,0 +1 @@ +1 0.504559 0.551724 0.656535 0.674330 diff --git a/datasets/TomatoData/train/labels/unriped tomato_255.txt b/datasets/TomatoData/train/labels/unriped tomato_255.txt new file mode 100644 index 0000000..c654b0e --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_255.txt @@ -0,0 +1,3 @@ +1 0.354101 0.414188 0.335962 0.443936 +1 0.702681 0.440503 0.335962 0.459954 +1 0.819401 0.756293 0.269716 0.391304 diff --git a/datasets/TomatoData/train/labels/unriped tomato_258.txt b/datasets/TomatoData/train/labels/unriped tomato_258.txt new file mode 100644 index 0000000..daf6a27 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_258.txt @@ -0,0 +1,2 @@ +1 0.289000 0.514243 0.306000 0.380810 +1 0.514500 0.657421 0.253000 0.334333 diff --git a/datasets/TomatoData/train/labels/unriped tomato_26.txt b/datasets/TomatoData/train/labels/unriped tomato_26.txt new file mode 100644 index 0000000..f9c1ea7 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_26.txt @@ -0,0 +1 @@ +1 0.573750 0.618421 0.367500 0.473684 diff --git a/datasets/TomatoData/train/labels/unriped tomato_260.txt b/datasets/TomatoData/train/labels/unriped tomato_260.txt new file mode 100644 index 0000000..1553d6f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_260.txt @@ -0,0 +1,11 @@ +1 0.171650 0.585769 0.222408 0.357308 +1 0.372690 0.647500 0.252310 0.346154 +1 0.526181 0.699519 0.251283 0.363654 +1 0.650218 0.625000 0.232161 0.339615 +1 0.811152 0.592981 0.215991 0.320577 +1 0.236845 0.437500 0.151822 0.230769 +1 0.344328 0.277308 0.212782 0.326923 +1 0.363065 0.460769 0.158368 0.193846 +1 0.510074 0.349327 0.259882 0.349423 +1 0.651822 0.258077 0.209702 0.317308 +1 0.733124 0.434327 0.220354 0.131346 diff --git a/datasets/TomatoData/train/labels/unriped tomato_265.txt b/datasets/TomatoData/train/labels/unriped tomato_265.txt new file mode 100644 index 0000000..0e67b79 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_265.txt @@ -0,0 +1,3 @@ +1 0.313505 0.549808 0.401929 0.570881 +1 0.705788 0.492337 0.434084 0.440613 +1 0.483923 0.325670 0.401929 0.360153 diff --git a/datasets/TomatoData/train/labels/unriped tomato_266.txt b/datasets/TomatoData/train/labels/unriped tomato_266.txt new file mode 100644 index 0000000..d4314ee --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_266.txt @@ -0,0 +1,8 @@ +1 0.209375 0.325000 0.416250 0.636667 +1 0.203125 0.801667 0.403750 0.396667 +1 0.433125 0.950833 0.151250 0.098333 +1 0.530000 0.442500 0.372500 0.508333 +1 0.749375 0.610000 0.238750 0.303333 +1 0.891875 0.746667 0.198750 0.270000 +1 0.733750 0.322500 0.145000 0.231667 +0 0.892500 0.350833 0.215000 0.288333 diff --git a/datasets/TomatoData/train/labels/unriped tomato_271.txt b/datasets/TomatoData/train/labels/unriped tomato_271.txt new file mode 100644 index 0000000..84f1935 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_271.txt @@ -0,0 +1 @@ +1 0.511797 0.518182 0.707804 0.668182 diff --git a/datasets/TomatoData/train/labels/unriped tomato_276.txt b/datasets/TomatoData/train/labels/unriped tomato_276.txt new file mode 100644 index 0000000..0a5238f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_276.txt @@ -0,0 +1,4 @@ +1 0.304688 0.668620 0.177734 0.217448 +1 0.637695 0.689453 0.156250 0.227865 +1 0.458496 0.542318 0.122070 0.154948 +1 0.665527 0.371745 0.131836 0.170573 diff --git a/datasets/TomatoData/train/labels/unriped tomato_28.txt b/datasets/TomatoData/train/labels/unriped tomato_28.txt new file mode 100644 index 0000000..c8085c4 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_28.txt @@ -0,0 +1,6 @@ +1 0.509167 0.317507 0.155000 0.272997 +1 0.660833 0.304154 0.138333 0.210682 +1 0.660833 0.600890 0.158333 0.258160 +1 0.761667 0.551929 0.166667 0.261128 +1 0.354167 0.547478 0.161667 0.252226 +1 0.391667 0.894659 0.100000 0.204748 diff --git a/datasets/TomatoData/train/labels/unriped tomato_281.txt b/datasets/TomatoData/train/labels/unriped tomato_281.txt new file mode 100644 index 0000000..faf8cea --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_281.txt @@ -0,0 +1,3 @@ +1 0.335313 0.376214 0.300625 0.486408 +1 0.641250 0.401456 0.363750 0.484466 +1 0.438125 0.737379 0.328750 0.422330 diff --git a/datasets/TomatoData/train/labels/unriped tomato_285.txt b/datasets/TomatoData/train/labels/unriped tomato_285.txt new file mode 100644 index 0000000..7a862ae --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_285.txt @@ -0,0 +1,4 @@ +1 0.446305 0.450077 0.428406 0.284056 +1 0.050808 0.846749 0.099307 0.137771 +1 0.142610 0.909830 0.282910 0.149381 +1 0.186490 0.590170 0.370670 0.197368 diff --git a/datasets/TomatoData/train/labels/unriped tomato_287.txt b/datasets/TomatoData/train/labels/unriped tomato_287.txt new file mode 100644 index 0000000..54b2976 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_287.txt @@ -0,0 +1,4 @@ +1 0.467065 0.645016 0.284620 0.330882 +1 0.421722 0.375000 0.290135 0.339869 +1 0.706189 0.340686 0.311887 0.347222 +0 0.963848 0.523284 0.072304 0.285948 diff --git a/datasets/TomatoData/train/labels/unriped tomato_288.txt b/datasets/TomatoData/train/labels/unriped tomato_288.txt new file mode 100644 index 0000000..8c886eb --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_288.txt @@ -0,0 +1,7 @@ +1 0.052667 0.407143 0.102667 0.471429 +1 0.274667 0.754286 0.325333 0.480000 +1 0.569333 0.650000 0.317333 0.671429 +1 0.852000 0.830000 0.293333 0.340000 +1 0.878000 0.391429 0.244000 0.565714 +1 0.529333 0.092857 0.277333 0.180000 +1 0.290000 0.261429 0.302667 0.517143 diff --git a/datasets/TomatoData/train/labels/unriped tomato_289.txt b/datasets/TomatoData/train/labels/unriped tomato_289.txt new file mode 100644 index 0000000..dc422ae --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_289.txt @@ -0,0 +1,8 @@ +1 0.180022 0.407756 0.111965 0.101058 +1 0.204171 0.654524 0.228321 0.260870 +1 0.402305 0.891892 0.113063 0.117509 +0 0.453897 0.478848 0.225027 0.245593 +0 0.519210 0.311398 0.217344 0.239718 +0 0.655873 0.535840 0.233809 0.244418 +0 0.775521 0.387192 0.268935 0.219741 +0 0.716795 0.217979 0.217344 0.168038 diff --git a/datasets/TomatoData/train/labels/unriped tomato_29.txt b/datasets/TomatoData/train/labels/unriped tomato_29.txt new file mode 100644 index 0000000..178344a --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_29.txt @@ -0,0 +1,8 @@ +1 0.387172 0.406855 0.242509 0.333830 +1 0.295412 0.684799 0.240637 0.329359 +1 0.514045 0.652757 0.200375 0.318927 +1 0.709270 0.687034 0.242509 0.321908 +1 0.200843 0.625186 0.214419 0.311475 +1 0.527622 0.362146 0.173221 0.295082 +1 0.815075 0.634873 0.197566 0.292101 +1 0.745318 0.525335 0.191011 0.180328 diff --git a/datasets/TomatoData/train/labels/unriped tomato_291.txt b/datasets/TomatoData/train/labels/unriped tomato_291.txt new file mode 100644 index 0000000..244dd99 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_291.txt @@ -0,0 +1,6 @@ +1 0.481667 0.695833 0.310000 0.421667 +1 0.274444 0.474167 0.264444 0.405000 +1 0.470000 0.312500 0.264444 0.371667 +1 0.678333 0.415000 0.298889 0.446667 +1 0.805000 0.149167 0.352222 0.295000 +1 0.504444 0.074167 0.277778 0.145000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_292.txt b/datasets/TomatoData/train/labels/unriped tomato_292.txt new file mode 100644 index 0000000..bc9815a --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_292.txt @@ -0,0 +1,5 @@ +1 0.100625 0.571111 0.163750 0.222222 +1 0.283750 0.533333 0.232500 0.293333 +1 0.498125 0.502222 0.218750 0.377778 +0 0.720000 0.510000 0.215000 0.322222 +0 0.900000 0.523333 0.175000 0.295556 diff --git a/datasets/TomatoData/train/labels/unriped tomato_294.txt b/datasets/TomatoData/train/labels/unriped tomato_294.txt new file mode 100644 index 0000000..c0650fc --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_294.txt @@ -0,0 +1,2 @@ +0 0.324675 0.633983 0.418831 0.559074 +1 0.758929 0.632156 0.446429 0.574909 diff --git a/datasets/TomatoData/train/labels/unriped tomato_296.txt b/datasets/TomatoData/train/labels/unriped tomato_296.txt new file mode 100644 index 0000000..3478124 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_296.txt @@ -0,0 +1,6 @@ +1 0.397362 0.220706 0.361239 0.422151 +1 0.258028 0.374799 0.176606 0.194222 +1 0.277523 0.627608 0.323394 0.446228 +1 0.552179 0.768058 0.331422 0.434992 +1 0.833716 0.691011 0.332569 0.418941 +1 0.583716 0.511236 0.332569 0.348315 diff --git a/datasets/TomatoData/train/labels/unriped tomato_3.txt b/datasets/TomatoData/train/labels/unriped tomato_3.txt new file mode 100644 index 0000000..d1adf96 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_3.txt @@ -0,0 +1 @@ +1 0.501875 0.547264 0.633750 0.597015 diff --git a/datasets/TomatoData/train/labels/unriped tomato_30.txt b/datasets/TomatoData/train/labels/unriped tomato_30.txt new file mode 100644 index 0000000..fab38fc --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_30.txt @@ -0,0 +1,4 @@ +1 0.308594 0.666016 0.169922 0.214844 +1 0.457031 0.541667 0.119141 0.156250 +1 0.639160 0.688802 0.151367 0.218750 +1 0.662598 0.378906 0.120117 0.151042 diff --git a/datasets/TomatoData/train/labels/unriped tomato_32.txt b/datasets/TomatoData/train/labels/unriped tomato_32.txt new file mode 100644 index 0000000..a85034f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_32.txt @@ -0,0 +1,3 @@ +1 0.351250 0.365000 0.361875 0.426667 +1 0.277187 0.754167 0.271875 0.376111 +1 0.102969 0.470000 0.205313 0.467778 diff --git a/datasets/TomatoData/train/labels/unriped tomato_34.txt b/datasets/TomatoData/train/labels/unriped tomato_34.txt new file mode 100644 index 0000000..b9a2e82 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_34.txt @@ -0,0 +1,11 @@ +1 0.521333 0.154309 0.213333 0.298597 +1 0.306333 0.312124 0.207333 0.295591 +1 0.171333 0.671343 0.164000 0.246493 +1 0.167667 0.862725 0.172667 0.158317 +1 0.342000 0.720441 0.172000 0.314629 +1 0.436333 0.642786 0.214000 0.345691 +1 0.598667 0.704910 0.188000 0.291583 +1 0.759000 0.789579 0.164667 0.254509 +1 0.851333 0.555110 0.145333 0.192385 +1 0.700000 0.540080 0.170667 0.240481 +1 0.491667 0.420842 0.202000 0.246493 diff --git a/datasets/TomatoData/train/labels/unriped tomato_35.txt b/datasets/TomatoData/train/labels/unriped tomato_35.txt new file mode 100644 index 0000000..41edae6 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_35.txt @@ -0,0 +1,3 @@ +1 0.336250 0.373786 0.306250 0.448544 +1 0.646250 0.404369 0.350000 0.486408 +1 0.444688 0.740777 0.311875 0.427184 diff --git a/datasets/TomatoData/train/labels/unriped tomato_37.txt b/datasets/TomatoData/train/labels/unriped tomato_37.txt new file mode 100644 index 0000000..b9dbd4b --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_37.txt @@ -0,0 +1,5 @@ +1 0.431982 0.309377 0.348649 0.268255 +1 0.642342 0.565719 0.410811 0.338201 +1 0.355856 0.728286 0.416216 0.320523 +1 0.400000 0.923136 0.396396 0.153728 +1 0.833784 0.918140 0.314414 0.160646 diff --git a/datasets/TomatoData/train/labels/unriped tomato_38.txt b/datasets/TomatoData/train/labels/unriped tomato_38.txt new file mode 100644 index 0000000..f473324 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_38.txt @@ -0,0 +1,4 @@ +1 0.183750 0.431770 0.292500 0.496802 +1 0.350000 0.588486 0.385000 0.584222 +1 0.556250 0.468017 0.292500 0.484009 +1 0.805625 0.606610 0.336250 0.577825 diff --git a/datasets/TomatoData/train/labels/unriped tomato_4.txt b/datasets/TomatoData/train/labels/unriped tomato_4.txt new file mode 100644 index 0000000..02245a3 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_4.txt @@ -0,0 +1,27 @@ +1 0.196250 0.212000 0.172500 0.126000 +1 0.362500 0.152500 0.165000 0.129000 +1 0.483750 0.216500 0.137500 0.109000 +1 0.074375 0.312500 0.146250 0.129000 +1 0.074375 0.442000 0.138750 0.114000 +1 0.034375 0.520000 0.066250 0.090000 +1 0.237500 0.377500 0.262500 0.227000 +1 0.595000 0.262000 0.130000 0.100000 +1 0.774375 0.361000 0.363750 0.248000 +1 0.458750 0.361000 0.270000 0.188000 +1 0.408750 0.465500 0.145000 0.113000 +1 0.581250 0.468000 0.160000 0.138000 +1 0.768750 0.579500 0.232500 0.217000 +1 0.789375 0.726000 0.131250 0.102000 +1 0.668750 0.699500 0.140000 0.109000 +1 0.698750 0.820500 0.150000 0.127000 +1 0.490625 0.637000 0.328750 0.196000 +1 0.319375 0.524000 0.151250 0.094000 +1 0.170000 0.539500 0.162500 0.105000 +1 0.123125 0.640500 0.151250 0.113000 +1 0.236250 0.624500 0.150000 0.121000 +1 0.296250 0.698000 0.145000 0.102000 +1 0.328750 0.861000 0.127500 0.100000 +1 0.363125 0.765000 0.153750 0.112000 +1 0.150000 0.791000 0.297500 0.212000 +1 0.519375 0.826500 0.226250 0.205000 +1 0.048750 0.647000 0.082500 0.104000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_40.txt b/datasets/TomatoData/train/labels/unriped tomato_40.txt new file mode 100644 index 0000000..210eb67 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_40.txt @@ -0,0 +1 @@ +1 0.481268 0.535156 0.662824 0.835938 diff --git a/datasets/TomatoData/train/labels/unriped tomato_41.txt b/datasets/TomatoData/train/labels/unriped tomato_41.txt new file mode 100644 index 0000000..5670e22 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_41.txt @@ -0,0 +1,5 @@ +1 0.426164 0.373775 0.300858 0.339869 +1 0.465380 0.649306 0.289828 0.316585 +1 0.716146 0.340686 0.283395 0.347222 +1 0.963388 0.289011 0.073223 0.208742 +0 0.966605 0.533292 0.066789 0.283088 diff --git a/datasets/TomatoData/train/labels/unriped tomato_46.txt b/datasets/TomatoData/train/labels/unriped tomato_46.txt new file mode 100644 index 0000000..4542f35 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_46.txt @@ -0,0 +1,5 @@ +1 0.099375 0.577778 0.166250 0.204444 +1 0.282500 0.536667 0.222500 0.291111 +0 0.500000 0.496667 0.215000 0.371111 +0 0.716875 0.516667 0.208750 0.326667 +0 0.901250 0.521111 0.177500 0.282222 diff --git a/datasets/TomatoData/train/labels/unriped tomato_48.txt b/datasets/TomatoData/train/labels/unriped tomato_48.txt new file mode 100644 index 0000000..bac0356 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_48.txt @@ -0,0 +1,2 @@ +0 0.325893 0.637637 0.416396 0.551766 +1 0.755276 0.641291 0.443994 0.542022 diff --git a/datasets/TomatoData/train/labels/unriped tomato_5.txt b/datasets/TomatoData/train/labels/unriped tomato_5.txt new file mode 100644 index 0000000..4ed2ab1 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_5.txt @@ -0,0 +1 @@ +1 0.507622 0.549808 0.637195 0.662835 diff --git a/datasets/TomatoData/train/labels/unriped tomato_50.txt b/datasets/TomatoData/train/labels/unriped tomato_50.txt new file mode 100644 index 0000000..8ba6838 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_50.txt @@ -0,0 +1,6 @@ +1 0.400803 0.227127 0.358945 0.412520 +1 0.836583 0.692616 0.326835 0.412520 +1 0.553326 0.765650 0.331422 0.433387 +1 0.276950 0.628411 0.317661 0.444623 +1 0.256881 0.374799 0.181193 0.187801 +1 0.576835 0.497592 0.334862 0.311396 diff --git a/datasets/TomatoData/train/labels/unriped tomato_54.txt b/datasets/TomatoData/train/labels/unriped tomato_54.txt new file mode 100644 index 0000000..082a7e9 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_54.txt @@ -0,0 +1,9 @@ +1 0.306006 0.695864 0.115260 0.238443 +1 0.447240 0.636253 0.189935 0.328467 +1 0.614448 0.518248 0.202922 0.364964 +1 0.788961 0.457421 0.165584 0.355231 +1 0.487013 0.328467 0.188312 0.340633 +1 0.357143 0.436740 0.097403 0.109489 +1 0.637987 0.170316 0.178571 0.335766 +1 0.297890 0.812652 0.105519 0.165450 +1 0.258929 0.569343 0.089286 0.155718 diff --git a/datasets/TomatoData/train/labels/unriped tomato_55.txt b/datasets/TomatoData/train/labels/unriped tomato_55.txt new file mode 100644 index 0000000..3685256 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_55.txt @@ -0,0 +1,11 @@ +1 0.216872 0.294010 0.420710 0.309896 +1 0.536930 0.129167 0.375815 0.257292 +1 0.716872 0.266667 0.253440 0.141667 +1 0.905865 0.328906 0.181028 0.161979 +1 0.908038 0.543750 0.176684 0.114583 +1 0.609341 0.392969 0.328023 0.247396 +1 0.706734 0.041667 0.217234 0.082292 +1 0.292180 0.635156 0.354091 0.230729 +1 0.657495 0.730208 0.299783 0.196875 +1 0.905865 0.557031 0.149167 0.126562 +1 0.358798 0.895052 0.317886 0.176563 diff --git a/datasets/TomatoData/train/labels/unriped tomato_57.txt b/datasets/TomatoData/train/labels/unriped tomato_57.txt new file mode 100644 index 0000000..4765965 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_57.txt @@ -0,0 +1,2 @@ +1 0.381062 0.691016 0.404157 0.277344 +1 0.711316 0.690234 0.401848 0.271094 diff --git a/datasets/TomatoData/train/labels/unriped tomato_6.txt b/datasets/TomatoData/train/labels/unriped tomato_6.txt new file mode 100644 index 0000000..c4bdb34 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_6.txt @@ -0,0 +1,3 @@ +1 0.260000 0.455897 0.420000 0.536410 +1 0.705769 0.480000 0.463846 0.549744 +1 0.433462 0.375897 0.239231 0.364103 diff --git a/datasets/TomatoData/train/labels/unriped tomato_65.txt b/datasets/TomatoData/train/labels/unriped tomato_65.txt new file mode 100644 index 0000000..f1405ce --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_65.txt @@ -0,0 +1,8 @@ +1 0.413000 0.722222 0.442000 0.495495 +1 0.098000 0.668168 0.192000 0.363363 +1 0.219000 0.436937 0.434000 0.339339 +1 0.404000 0.178679 0.372000 0.213213 +1 0.498000 0.537538 0.312000 0.258258 +1 0.612000 0.501502 0.276000 0.270270 +1 0.841000 0.627628 0.318000 0.468468 +1 0.872000 0.234234 0.256000 0.426426 diff --git a/datasets/TomatoData/train/labels/unriped tomato_66.txt b/datasets/TomatoData/train/labels/unriped tomato_66.txt new file mode 100644 index 0000000..a61c928 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_66.txt @@ -0,0 +1 @@ +1 0.509146 0.549808 0.640244 0.678161 diff --git a/datasets/TomatoData/train/labels/unriped tomato_72.txt b/datasets/TomatoData/train/labels/unriped tomato_72.txt new file mode 100644 index 0000000..7ba1b8f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_72.txt @@ -0,0 +1,2 @@ +1 0.289500 0.511244 0.297000 0.374813 +1 0.515000 0.660420 0.250000 0.331334 diff --git a/datasets/TomatoData/train/labels/unriped tomato_75.txt b/datasets/TomatoData/train/labels/unriped tomato_75.txt new file mode 100644 index 0000000..1408308 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_75.txt @@ -0,0 +1,2 @@ +1 0.722917 0.502216 0.412500 0.703102 +0 0.332500 0.647710 0.405000 0.672083 diff --git a/datasets/TomatoData/train/labels/unriped tomato_76.txt b/datasets/TomatoData/train/labels/unriped tomato_76.txt new file mode 100644 index 0000000..60f1f70 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_76.txt @@ -0,0 +1,3 @@ +1 0.241888 0.673465 0.356913 0.496053 +1 0.602163 0.653289 0.333821 0.491667 +1 0.377960 0.492763 0.286466 0.473246 diff --git a/datasets/TomatoData/train/labels/unriped tomato_78.txt b/datasets/TomatoData/train/labels/unriped tomato_78.txt new file mode 100644 index 0000000..5c46541 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_78.txt @@ -0,0 +1,7 @@ +1 0.493750 0.218750 0.267500 0.334821 +1 0.622500 0.191964 0.175000 0.183036 +1 0.860000 0.347098 0.255000 0.395089 +1 0.721875 0.475446 0.333750 0.473214 +1 0.518750 0.666295 0.400000 0.529018 +1 0.303750 0.364955 0.242500 0.301339 +1 0.185625 0.564732 0.358750 0.500000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_79.txt b/datasets/TomatoData/train/labels/unriped tomato_79.txt new file mode 100644 index 0000000..75c8fb8 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_79.txt @@ -0,0 +1,3 @@ +1 0.313505 0.578000 0.401929 0.588000 +1 0.699357 0.506000 0.427653 0.468000 +1 0.482315 0.336000 0.398714 0.360000 diff --git a/datasets/TomatoData/train/labels/unriped tomato_8.txt b/datasets/TomatoData/train/labels/unriped tomato_8.txt new file mode 100644 index 0000000..16cb272 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_8.txt @@ -0,0 +1 @@ +1 0.512308 0.513503 0.670769 0.553241 diff --git a/datasets/TomatoData/train/labels/unriped tomato_80.txt b/datasets/TomatoData/train/labels/unriped tomato_80.txt new file mode 100644 index 0000000..fe7682f --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_80.txt @@ -0,0 +1,7 @@ +1 0.896250 0.750000 0.197500 0.270000 +1 0.209375 0.320833 0.416250 0.631667 +1 0.209375 0.805833 0.416250 0.381667 +1 0.506875 0.453333 0.418750 0.486667 +1 0.747500 0.611667 0.235000 0.313333 +1 0.731875 0.331667 0.146250 0.243333 +0 0.893125 0.352500 0.213750 0.298333 diff --git a/datasets/TomatoData/train/labels/unriped tomato_82.txt b/datasets/TomatoData/train/labels/unriped tomato_82.txt new file mode 100644 index 0000000..efe3c84 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_82.txt @@ -0,0 +1,6 @@ +1 0.255556 0.251563 0.441667 0.232813 +1 0.452083 0.322656 0.373611 0.189062 +1 0.329861 0.464453 0.365278 0.203906 +1 0.503472 0.580859 0.326389 0.191406 +1 0.795833 0.573828 0.308333 0.188281 +1 0.715972 0.607031 0.231944 0.179688 diff --git a/datasets/TomatoData/train/labels/unriped tomato_85.txt b/datasets/TomatoData/train/labels/unriped tomato_85.txt new file mode 100644 index 0000000..e3460e4 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_85.txt @@ -0,0 +1 @@ +1 0.500595 0.493019 0.594048 0.738220 diff --git a/datasets/TomatoData/train/labels/unriped tomato_87.txt b/datasets/TomatoData/train/labels/unriped tomato_87.txt new file mode 100644 index 0000000..215c4f0 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_87.txt @@ -0,0 +1,6 @@ +1 0.586605 0.307914 0.288684 0.197122 +1 0.578522 0.525180 0.277136 0.188489 +1 0.321016 0.424460 0.274827 0.176978 +1 0.310624 0.623741 0.254042 0.181295 +1 0.541570 0.719424 0.244804 0.176978 +1 0.400693 0.756115 0.207852 0.149640 diff --git a/datasets/TomatoData/train/labels/unriped tomato_88.txt b/datasets/TomatoData/train/labels/unriped tomato_88.txt new file mode 100644 index 0000000..6c159cb --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_88.txt @@ -0,0 +1 @@ +1 0.579375 0.620301 0.383750 0.484962 diff --git a/datasets/TomatoData/train/labels/unriped tomato_89.txt b/datasets/TomatoData/train/labels/unriped tomato_89.txt new file mode 100644 index 0000000..ff844a5 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_89.txt @@ -0,0 +1 @@ +1 0.485000 0.559524 0.863333 0.690476 diff --git a/datasets/TomatoData/train/labels/unriped tomato_90.txt b/datasets/TomatoData/train/labels/unriped tomato_90.txt new file mode 100644 index 0000000..d272222 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_90.txt @@ -0,0 +1,6 @@ +1 0.354167 0.548961 0.161667 0.267062 +1 0.389167 0.900593 0.105000 0.198813 +1 0.509167 0.317507 0.155000 0.272997 +1 0.660833 0.597923 0.158333 0.264095 +1 0.762500 0.532641 0.168333 0.299703 +1 0.664167 0.308605 0.158333 0.267062 diff --git a/datasets/TomatoData/train/labels/unriped tomato_91.txt b/datasets/TomatoData/train/labels/unriped tomato_91.txt new file mode 100644 index 0000000..4c1d5c1 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_91.txt @@ -0,0 +1,4 @@ +1 0.308594 0.668620 0.164062 0.217448 +1 0.637207 0.684896 0.149414 0.226562 +1 0.459961 0.544271 0.117188 0.148438 +1 0.664062 0.371094 0.115234 0.156250 diff --git a/datasets/TomatoData/train/labels/unriped tomato_93.txt b/datasets/TomatoData/train/labels/unriped tomato_93.txt new file mode 100644 index 0000000..7fce7ae --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_93.txt @@ -0,0 +1,3 @@ +1 0.350313 0.366111 0.360000 0.432222 +1 0.283281 0.753889 0.284062 0.351111 +1 0.105938 0.479722 0.211250 0.483889 diff --git a/datasets/TomatoData/train/labels/unriped tomato_95.txt b/datasets/TomatoData/train/labels/unriped tomato_95.txt new file mode 100644 index 0000000..ce7a6ee --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_95.txt @@ -0,0 +1,11 @@ +1 0.174000 0.670341 0.170667 0.238477 +1 0.169333 0.872244 0.173333 0.153307 +1 0.336667 0.719439 0.170667 0.314629 +1 0.305667 0.318637 0.210000 0.308617 +1 0.759000 0.787575 0.164667 0.256513 +1 0.857667 0.554609 0.148667 0.197395 +1 0.601333 0.709419 0.182667 0.312625 +1 0.698333 0.543086 0.172667 0.250501 +1 0.489333 0.421844 0.204000 0.280561 +1 0.521000 0.157315 0.220667 0.302605 +1 0.436667 0.641784 0.217333 0.347695 diff --git a/datasets/TomatoData/train/labels/unriped tomato_96.txt b/datasets/TomatoData/train/labels/unriped tomato_96.txt new file mode 100644 index 0000000..0b3579c --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_96.txt @@ -0,0 +1,3 @@ +1 0.336875 0.377670 0.303750 0.458252 +1 0.445312 0.741262 0.304375 0.414563 +1 0.648750 0.402427 0.345000 0.488350 diff --git a/datasets/TomatoData/train/labels/unriped tomato_97.txt b/datasets/TomatoData/train/labels/unriped tomato_97.txt new file mode 100644 index 0000000..dec9ec0 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_97.txt @@ -0,0 +1,6 @@ +1 0.639231 0.543880 0.153846 0.205543 +1 0.591538 0.723441 0.161538 0.206697 +1 0.406154 0.800231 0.060000 0.071594 +1 0.465000 0.760970 0.130000 0.203233 +1 0.423846 0.907044 0.058462 0.084296 +1 0.454615 0.507506 0.047692 0.079677 diff --git a/datasets/TomatoData/train/labels/unriped tomato_99.txt b/datasets/TomatoData/train/labels/unriped tomato_99.txt new file mode 100644 index 0000000..8eaf618 --- /dev/null +++ b/datasets/TomatoData/train/labels/unriped tomato_99.txt @@ -0,0 +1,4 @@ +1 0.184375 0.432836 0.283750 0.494670 +1 0.348750 0.590618 0.380000 0.588486 +1 0.805625 0.603412 0.333750 0.579957 +1 0.555625 0.468017 0.288750 0.462687 diff --git a/datasets/TomatoData/val/images/Riped tomato_100.jpeg b/datasets/TomatoData/val/images/Riped tomato_100.jpeg new file mode 100644 index 0000000..14f1a6c Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_100.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_109.jpeg b/datasets/TomatoData/val/images/Riped tomato_109.jpeg new file mode 100644 index 0000000..53b0e7d Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_109.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_126.jpeg b/datasets/TomatoData/val/images/Riped tomato_126.jpeg new file mode 100644 index 0000000..27a3f86 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_126.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_13.jpeg b/datasets/TomatoData/val/images/Riped tomato_13.jpeg new file mode 100644 index 0000000..12756c6 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_13.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_137.jpeg b/datasets/TomatoData/val/images/Riped tomato_137.jpeg new file mode 100644 index 0000000..3568c82 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_137.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_158.jpeg b/datasets/TomatoData/val/images/Riped tomato_158.jpeg new file mode 100644 index 0000000..12756c6 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_158.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_167.jpeg b/datasets/TomatoData/val/images/Riped tomato_167.jpeg new file mode 100644 index 0000000..feda17a Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_167.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_183.jpeg b/datasets/TomatoData/val/images/Riped tomato_183.jpeg new file mode 100644 index 0000000..53b0e7d Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_183.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_185.jpeg b/datasets/TomatoData/val/images/Riped tomato_185.jpeg new file mode 100644 index 0000000..d70c3dd Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_185.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_188.jpeg b/datasets/TomatoData/val/images/Riped tomato_188.jpeg new file mode 100644 index 0000000..d4c2ee4 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_188.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_200.jpeg b/datasets/TomatoData/val/images/Riped tomato_200.jpeg new file mode 100644 index 0000000..d4a7e1d Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_200.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_217.jpeg b/datasets/TomatoData/val/images/Riped tomato_217.jpeg new file mode 100644 index 0000000..16fb724 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_217.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_22.jpeg b/datasets/TomatoData/val/images/Riped tomato_22.jpeg new file mode 100644 index 0000000..25a455d Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_22.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_245.jpeg b/datasets/TomatoData/val/images/Riped tomato_245.jpeg new file mode 100644 index 0000000..cbef455 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_245.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_251.jpeg b/datasets/TomatoData/val/images/Riped tomato_251.jpeg new file mode 100644 index 0000000..1cabbd8 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_251.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_273.jpeg b/datasets/TomatoData/val/images/Riped tomato_273.jpeg new file mode 100644 index 0000000..ec6a7dc Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_273.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_277.jpeg b/datasets/TomatoData/val/images/Riped tomato_277.jpeg new file mode 100644 index 0000000..fc929f4 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_277.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_4.jpeg b/datasets/TomatoData/val/images/Riped tomato_4.jpeg new file mode 100644 index 0000000..88b0017 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_4.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_43.jpeg b/datasets/TomatoData/val/images/Riped tomato_43.jpeg new file mode 100644 index 0000000..7f4f0f3 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_43.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_51.jpeg b/datasets/TomatoData/val/images/Riped tomato_51.jpeg new file mode 100644 index 0000000..a33746e Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_51.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_7.jpeg b/datasets/TomatoData/val/images/Riped tomato_7.jpeg new file mode 100644 index 0000000..b9d4128 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_7.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_74.jpeg b/datasets/TomatoData/val/images/Riped tomato_74.jpeg new file mode 100644 index 0000000..d32d026 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_74.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_80.jpeg b/datasets/TomatoData/val/images/Riped tomato_80.jpeg new file mode 100644 index 0000000..d2d9bbf Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_80.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_83.jpeg b/datasets/TomatoData/val/images/Riped tomato_83.jpeg new file mode 100644 index 0000000..6e12229 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_83.jpeg differ diff --git a/datasets/TomatoData/val/images/Riped tomato_99.jpeg b/datasets/TomatoData/val/images/Riped tomato_99.jpeg new file mode 100644 index 0000000..cbef455 Binary files /dev/null and b/datasets/TomatoData/val/images/Riped tomato_99.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_10.jpeg b/datasets/TomatoData/val/images/unriped tomato_10.jpeg new file mode 100644 index 0000000..853479c Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_10.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_113.jpeg b/datasets/TomatoData/val/images/unriped tomato_113.jpeg new file mode 100644 index 0000000..c18bba4 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_113.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_117.jpeg b/datasets/TomatoData/val/images/unriped tomato_117.jpeg new file mode 100644 index 0000000..9e221e8 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_117.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_12.jpeg b/datasets/TomatoData/val/images/unriped tomato_12.jpeg new file mode 100644 index 0000000..011da4c Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_12.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_126.jpeg b/datasets/TomatoData/val/images/unriped tomato_126.jpeg new file mode 100644 index 0000000..fc38052 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_126.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_129.jpeg b/datasets/TomatoData/val/images/unriped tomato_129.jpeg new file mode 100644 index 0000000..c97e349 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_129.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_147.jpeg b/datasets/TomatoData/val/images/unriped tomato_147.jpeg new file mode 100644 index 0000000..536ccc1 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_147.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_157.jpeg b/datasets/TomatoData/val/images/unriped tomato_157.jpeg new file mode 100644 index 0000000..88fdbd9 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_157.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_18.jpeg b/datasets/TomatoData/val/images/unriped tomato_18.jpeg new file mode 100644 index 0000000..941b558 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_18.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_188.jpeg b/datasets/TomatoData/val/images/unriped tomato_188.jpeg new file mode 100644 index 0000000..b2f35df Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_188.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_19.jpeg b/datasets/TomatoData/val/images/unriped tomato_19.jpeg new file mode 100644 index 0000000..6ebf5d6 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_19.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_192.jpeg b/datasets/TomatoData/val/images/unriped tomato_192.jpeg new file mode 100644 index 0000000..c97e349 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_192.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_196.jpeg b/datasets/TomatoData/val/images/unriped tomato_196.jpeg new file mode 100644 index 0000000..853479c Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_196.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_221.jpeg b/datasets/TomatoData/val/images/unriped tomato_221.jpeg new file mode 100644 index 0000000..0a9b7c6 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_221.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_229.jpeg b/datasets/TomatoData/val/images/unriped tomato_229.jpeg new file mode 100644 index 0000000..2fdf82a Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_229.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_24.jpeg b/datasets/TomatoData/val/images/unriped tomato_24.jpeg new file mode 100644 index 0000000..1edb747 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_24.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_25.jpeg b/datasets/TomatoData/val/images/unriped tomato_25.jpeg new file mode 100644 index 0000000..3766989 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_25.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_256.jpeg b/datasets/TomatoData/val/images/unriped tomato_256.jpeg new file mode 100644 index 0000000..685fa8d Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_256.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_275.jpeg b/datasets/TomatoData/val/images/unriped tomato_275.jpeg new file mode 100644 index 0000000..827a55f Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_275.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_282.jpeg b/datasets/TomatoData/val/images/unriped tomato_282.jpeg new file mode 100644 index 0000000..0a9b7c6 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_282.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_36.jpeg b/datasets/TomatoData/val/images/unriped tomato_36.jpeg new file mode 100644 index 0000000..0a9b7c6 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_36.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_39.jpeg b/datasets/TomatoData/val/images/unriped tomato_39.jpeg new file mode 100644 index 0000000..e18a986 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_39.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_42.jpeg b/datasets/TomatoData/val/images/unriped tomato_42.jpeg new file mode 100644 index 0000000..59cf01e Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_42.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_45.jpeg b/datasets/TomatoData/val/images/unriped tomato_45.jpeg new file mode 100644 index 0000000..0defd18 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_45.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_63.jpeg b/datasets/TomatoData/val/images/unriped tomato_63.jpeg new file mode 100644 index 0000000..fc38052 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_63.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_67.jpeg b/datasets/TomatoData/val/images/unriped tomato_67.jpeg new file mode 100644 index 0000000..b246396 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_67.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_68.jpeg b/datasets/TomatoData/val/images/unriped tomato_68.jpeg new file mode 100644 index 0000000..b4f4786 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_68.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_71.jpeg b/datasets/TomatoData/val/images/unriped tomato_71.jpeg new file mode 100644 index 0000000..8620016 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_71.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_74.jpeg b/datasets/TomatoData/val/images/unriped tomato_74.jpeg new file mode 100644 index 0000000..011da4c Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_74.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_81.jpeg b/datasets/TomatoData/val/images/unriped tomato_81.jpeg new file mode 100644 index 0000000..6ebf5d6 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_81.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_86.jpeg b/datasets/TomatoData/val/images/unriped tomato_86.jpeg new file mode 100644 index 0000000..1edb747 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_86.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_9.jpeg b/datasets/TomatoData/val/images/unriped tomato_9.jpeg new file mode 100644 index 0000000..53b7cac Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_9.jpeg differ diff --git a/datasets/TomatoData/val/images/unriped tomato_98.jpeg b/datasets/TomatoData/val/images/unriped tomato_98.jpeg new file mode 100644 index 0000000..edc2316 Binary files /dev/null and b/datasets/TomatoData/val/images/unriped tomato_98.jpeg differ diff --git a/datasets/TomatoData/val/labels.cache b/datasets/TomatoData/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/TomatoData/val/labels.cache differ diff --git a/datasets/TomatoData/val/labels/Riped tomato_100.txt b/datasets/TomatoData/val/labels/Riped tomato_100.txt new file mode 100644 index 0000000..90661fd --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_100.txt @@ -0,0 +1,15 @@ +1 0.460000 0.480469 0.131429 0.164062 +1 0.617143 0.421875 0.120000 0.164062 +1 0.621429 0.587891 0.122857 0.160156 +1 0.624286 0.783203 0.105714 0.152344 +1 0.570000 0.837891 0.094286 0.136719 +1 0.497143 0.779297 0.120000 0.175781 +1 0.468571 0.642578 0.125714 0.152344 +1 0.077143 0.099609 0.114286 0.152344 +1 0.151429 0.189453 0.108571 0.152344 +1 0.241429 0.203125 0.105714 0.156250 +1 0.328571 0.244141 0.091429 0.128906 +1 0.548571 0.220703 0.102857 0.160156 +1 0.445714 0.238281 0.137143 0.195312 +1 0.314286 0.128906 0.125714 0.171875 +1 0.215714 0.101562 0.100000 0.125000 diff --git a/datasets/TomatoData/val/labels/Riped tomato_109.txt b/datasets/TomatoData/val/labels/Riped tomato_109.txt new file mode 100644 index 0000000..2b5bf6c --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_109.txt @@ -0,0 +1,24 @@ +0 0.308077 0.473441 0.162308 0.254042 +1 0.158462 0.371247 0.264615 0.386836 +1 0.095385 0.486143 0.189231 0.286374 +1 0.034615 0.219977 0.067692 0.301386 +1 0.091538 0.056005 0.163077 0.109700 +1 0.273846 0.099885 0.201538 0.197460 +1 0.419615 0.330254 0.257692 0.438799 +1 0.619615 0.296189 0.253077 0.377598 +1 0.512308 0.084873 0.246154 0.167436 +1 0.799615 0.193418 0.337692 0.384527 +1 0.963846 0.085450 0.072308 0.163972 +1 0.940385 0.388568 0.119231 0.312933 +1 0.810385 0.568129 0.223846 0.411085 +1 0.711923 0.846420 0.280769 0.307159 +1 0.885000 0.864896 0.179231 0.270208 +1 0.951538 0.681293 0.096923 0.272517 +1 0.341538 0.720554 0.252308 0.327945 +1 0.510000 0.846420 0.167692 0.240185 +1 0.105769 0.796767 0.210000 0.334873 +1 0.145385 0.984411 0.153846 0.031178 +1 0.258462 0.900693 0.126154 0.193995 +1 0.382692 0.937644 0.239231 0.124711 +1 0.575385 0.591801 0.193846 0.317552 +1 0.203846 0.165127 0.184615 0.212471 diff --git a/datasets/TomatoData/val/labels/Riped tomato_126.txt b/datasets/TomatoData/val/labels/Riped tomato_126.txt new file mode 100644 index 0000000..3cee421 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_126.txt @@ -0,0 +1,3 @@ +0 0.743750 0.581818 0.167500 0.232727 +0 0.542500 0.649091 0.145000 0.200000 +0 0.573750 0.458182 0.132500 0.167273 diff --git a/datasets/TomatoData/val/labels/Riped tomato_13.txt b/datasets/TomatoData/val/labels/Riped tomato_13.txt new file mode 100644 index 0000000..d758611 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_13.txt @@ -0,0 +1 @@ +0 0.526271 0.609110 0.649153 0.709746 diff --git a/datasets/TomatoData/val/labels/Riped tomato_137.txt b/datasets/TomatoData/val/labels/Riped tomato_137.txt new file mode 100644 index 0000000..dadf5a9 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_137.txt @@ -0,0 +1,2 @@ +0 0.255172 0.593750 0.418391 0.562500 +1 0.690805 0.578125 0.471264 0.640625 diff --git a/datasets/TomatoData/val/labels/Riped tomato_158.txt b/datasets/TomatoData/val/labels/Riped tomato_158.txt new file mode 100644 index 0000000..1f792c9 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_158.txt @@ -0,0 +1 @@ +0 0.527119 0.610169 0.654237 0.716102 diff --git a/datasets/TomatoData/val/labels/Riped tomato_167.txt b/datasets/TomatoData/val/labels/Riped tomato_167.txt new file mode 100644 index 0000000..d6729ef --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_167.txt @@ -0,0 +1,9 @@ +0 0.222222 0.398577 0.360234 0.355872 +0 0.511111 0.207592 0.306433 0.282325 +0 0.560234 0.608541 0.371930 0.379597 +0 0.230409 0.780546 0.392982 0.365362 +1 0.508187 0.845196 0.200000 0.202847 +0 0.049708 0.965006 0.097076 0.069988 +0 0.066667 0.876038 0.093567 0.122183 +0 0.022222 0.696916 0.042105 0.119810 +0 0.019883 0.056346 0.037427 0.060498 diff --git a/datasets/TomatoData/val/labels/Riped tomato_183.txt b/datasets/TomatoData/val/labels/Riped tomato_183.txt new file mode 100644 index 0000000..4427a4e --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_183.txt @@ -0,0 +1,25 @@ +0 0.306923 0.475751 0.160000 0.251732 +1 0.158846 0.376443 0.265385 0.385681 +1 0.106154 0.796767 0.210769 0.344111 +1 0.093846 0.482102 0.186154 0.287529 +1 0.033846 0.217090 0.066154 0.309469 +1 0.092692 0.056582 0.154615 0.110855 +1 0.196154 0.159353 0.161538 0.191686 +1 0.271154 0.094111 0.200769 0.185912 +1 0.413077 0.336605 0.240000 0.433025 +1 0.617692 0.296189 0.253846 0.379908 +1 0.513077 0.082564 0.236923 0.162818 +1 0.575385 0.595843 0.193846 0.316397 +1 0.810769 0.569861 0.229231 0.409931 +1 0.797692 0.187644 0.332308 0.372979 +1 0.966154 0.090069 0.067692 0.177829 +1 0.939615 0.391455 0.120769 0.314088 +1 0.950000 0.673788 0.100000 0.289838 +1 0.897308 0.865473 0.153077 0.269053 +1 0.712692 0.846420 0.276154 0.307159 +1 0.510769 0.849885 0.166154 0.244804 +1 0.341538 0.717090 0.246154 0.330254 +1 0.388462 0.941109 0.243077 0.117783 +1 0.145769 0.983834 0.137692 0.032333 +1 0.259615 0.902425 0.126923 0.190531 +1 0.031538 0.952656 0.061538 0.085450 diff --git a/datasets/TomatoData/val/labels/Riped tomato_185.txt b/datasets/TomatoData/val/labels/Riped tomato_185.txt new file mode 100644 index 0000000..de00c13 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_185.txt @@ -0,0 +1,14 @@ +0 0.598667 0.322000 0.277333 0.396000 +0 0.398000 0.096500 0.266667 0.191000 +0 0.081000 0.449000 0.160667 0.408000 +0 0.301667 0.358000 0.280667 0.396000 +0 0.131000 0.141500 0.260667 0.281000 +0 0.694667 0.080500 0.270667 0.159000 +0 0.881333 0.199000 0.237333 0.396000 +0 0.206667 0.738500 0.286667 0.425000 +0 0.484333 0.701000 0.276667 0.400000 +0 0.773000 0.627000 0.282000 0.412000 +0 0.939667 0.805000 0.120667 0.384000 +0 0.402000 0.929500 0.325333 0.141000 +0 0.106333 0.957500 0.211333 0.085000 +0 0.728000 0.932500 0.281333 0.135000 diff --git a/datasets/TomatoData/val/labels/Riped tomato_188.txt b/datasets/TomatoData/val/labels/Riped tomato_188.txt new file mode 100644 index 0000000..6d31b6d --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_188.txt @@ -0,0 +1,19 @@ +0 0.196250 0.325729 0.204167 0.291508 +0 0.285833 0.448035 0.216667 0.287706 +0 0.089167 0.638150 0.176667 0.307985 +0 0.302917 0.714195 0.222500 0.320659 +0 0.371667 0.382763 0.151667 0.129278 +0 0.295833 0.947402 0.253333 0.105196 +0 0.112917 0.870722 0.224167 0.258555 +0 0.485833 0.550697 0.231667 0.320659 +0 0.514167 0.842839 0.230000 0.294043 +0 0.568750 0.323828 0.192500 0.171103 +0 0.646667 0.410646 0.203333 0.217997 +0 0.705417 0.634347 0.239167 0.297845 +0 0.818333 0.785805 0.256667 0.362484 +0 0.961667 0.897972 0.076667 0.204056 +0 0.935833 0.595057 0.128333 0.343473 +0 0.882083 0.408112 0.220833 0.207858 +0 0.811667 0.268695 0.206667 0.240811 +0 0.948750 0.332066 0.099167 0.172370 +0 0.351667 0.247148 0.070000 0.124208 diff --git a/datasets/TomatoData/val/labels/Riped tomato_200.txt b/datasets/TomatoData/val/labels/Riped tomato_200.txt new file mode 100644 index 0000000..78db7a4 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_200.txt @@ -0,0 +1,5 @@ +0 0.308470 0.715455 0.336283 0.496364 +0 0.436789 0.269091 0.357775 0.534545 +0 0.805310 0.236364 0.379267 0.465455 +0 0.646018 0.722727 0.369153 0.503636 +0 0.909608 0.674545 0.180784 0.578182 diff --git a/datasets/TomatoData/val/labels/Riped tomato_217.txt b/datasets/TomatoData/val/labels/Riped tomato_217.txt new file mode 100644 index 0000000..b6f2c51 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_217.txt @@ -0,0 +1,3 @@ +0 0.275781 0.264237 0.532813 0.501139 +0 0.742448 0.448178 0.494271 0.529613 +0 0.403906 0.738041 0.452604 0.496583 diff --git a/datasets/TomatoData/val/labels/Riped tomato_22.txt b/datasets/TomatoData/val/labels/Riped tomato_22.txt new file mode 100644 index 0000000..607e3e5 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_22.txt @@ -0,0 +1,20 @@ +0 0.128000 0.036331 0.041333 0.050863 +0 0.336333 0.031335 0.054000 0.060854 +0 0.320667 0.105359 0.050667 0.070845 +0 0.345333 0.139419 0.053333 0.040872 +0 0.328333 0.173025 0.055333 0.059037 +1 0.258000 0.111717 0.064000 0.069028 +0 0.069000 0.249773 0.080667 0.105359 +0 0.147000 0.298365 0.079333 0.099001 +0 0.081000 0.344233 0.059333 0.063579 +0 0.086667 0.408719 0.049333 0.054496 +0 0.148000 0.395095 0.052000 0.061762 +1 0.170000 0.367393 0.041333 0.059037 +0 0.339000 0.625795 0.076667 0.096276 +0 0.398667 0.764305 0.070667 0.088102 +0 0.367333 0.858765 0.093333 0.104450 +0 0.482333 0.686649 0.219333 0.272480 +1 0.641333 0.738874 0.112000 0.149864 +0 0.670667 0.554950 0.210667 0.287012 +0 0.478000 0.392825 0.204000 0.262489 +0 0.643333 0.249319 0.170667 0.215259 diff --git a/datasets/TomatoData/val/labels/Riped tomato_245.txt b/datasets/TomatoData/val/labels/Riped tomato_245.txt new file mode 100644 index 0000000..ca751d6 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_245.txt @@ -0,0 +1,2 @@ +0 0.254167 0.563910 0.395000 0.491228 +0 0.665833 0.571429 0.371667 0.466165 diff --git a/datasets/TomatoData/val/labels/Riped tomato_251.txt b/datasets/TomatoData/val/labels/Riped tomato_251.txt new file mode 100644 index 0000000..9b3a9d7 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_251.txt @@ -0,0 +1,3 @@ +0 0.486493 0.241993 0.242216 0.476868 +1 0.592262 0.731317 0.244048 0.469751 +1 0.372482 0.660142 0.250458 0.446619 diff --git a/datasets/TomatoData/val/labels/Riped tomato_273.txt b/datasets/TomatoData/val/labels/Riped tomato_273.txt new file mode 100644 index 0000000..28b4cf3 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_273.txt @@ -0,0 +1,3 @@ +0 0.697500 0.415572 0.562500 0.823640 +0 0.341875 0.285178 0.468750 0.566604 +1 0.272500 0.731707 0.492500 0.536585 diff --git a/datasets/TomatoData/val/labels/Riped tomato_277.txt b/datasets/TomatoData/val/labels/Riped tomato_277.txt new file mode 100644 index 0000000..8ff7034 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_277.txt @@ -0,0 +1,7 @@ +0 0.277273 0.252324 0.363636 0.430279 +0 0.596591 0.385126 0.379545 0.440903 +0 0.865341 0.374502 0.269318 0.509960 +0 0.592614 0.120850 0.348864 0.236388 +0 0.867045 0.374502 0.265909 0.507304 +0 0.399432 0.699203 0.385227 0.447543 +0 0.765341 0.786853 0.396591 0.420983 diff --git a/datasets/TomatoData/val/labels/Riped tomato_4.txt b/datasets/TomatoData/val/labels/Riped tomato_4.txt new file mode 100644 index 0000000..092bdbb --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_4.txt @@ -0,0 +1 @@ +0 0.528000 0.496433 0.944000 0.788347 diff --git a/datasets/TomatoData/val/labels/Riped tomato_43.txt b/datasets/TomatoData/val/labels/Riped tomato_43.txt new file mode 100644 index 0000000..647f5a8 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_43.txt @@ -0,0 +1,131 @@ +0 0.054500 0.321589 0.029000 0.046477 +0 0.084500 0.132684 0.023000 0.034483 +0 0.070000 0.074963 0.016000 0.032984 +0 0.106000 0.020240 0.020000 0.028486 +0 0.035000 0.327586 0.020000 0.043478 +0 0.077000 0.334333 0.024000 0.038981 +0 0.069500 0.378561 0.029000 0.043478 +0 0.050500 0.361319 0.025000 0.017991 +0 0.103500 0.386057 0.023000 0.028486 +0 0.031000 0.170165 0.018000 0.016492 +0 0.094500 0.282609 0.013000 0.025487 +0 0.128500 0.284108 0.023000 0.040480 +0 0.144500 0.376312 0.021000 0.035982 +0 0.171500 0.382309 0.021000 0.032984 +0 0.167000 0.417541 0.014000 0.019490 +0 0.216000 0.371064 0.024000 0.037481 +0 0.220500 0.401799 0.021000 0.029985 +0 0.207500 0.404048 0.023000 0.034483 +0 0.104000 0.569715 0.032000 0.041979 +0 0.071000 0.559220 0.032000 0.032984 +0 0.059000 0.525487 0.028000 0.034483 +0 0.102000 0.542729 0.030000 0.026987 +0 0.102500 0.508246 0.019000 0.041979 +0 0.059500 0.458771 0.031000 0.038981 +1 0.066500 0.580960 0.021000 0.034483 +1 0.073500 0.618441 0.023000 0.034483 +1 0.090500 0.614693 0.027000 0.041979 +1 0.104500 0.614693 0.021000 0.029985 +1 0.124000 0.626687 0.020000 0.038981 +1 0.119000 0.667916 0.024000 0.031484 +1 0.085000 0.688156 0.026000 0.035982 +1 0.118000 0.717391 0.022000 0.037481 +1 0.095500 0.745127 0.033000 0.041979 +1 0.093500 0.784858 0.029000 0.037481 +1 0.120500 0.763118 0.023000 0.038981 +1 0.012000 0.047226 0.022000 0.049475 +1 0.282500 0.147676 0.017000 0.028486 +1 0.272500 0.186657 0.017000 0.025487 +1 0.283000 0.042729 0.020000 0.031484 +1 0.279000 0.119190 0.020000 0.031484 +1 0.281000 0.011994 0.014000 0.020990 +1 0.214500 0.011244 0.017000 0.019490 +1 0.281500 0.233883 0.019000 0.023988 +1 0.273500 0.077211 0.015000 0.016492 +0 0.296500 0.432534 0.015000 0.022489 +1 0.146500 0.315592 0.023000 0.025487 +1 0.334000 0.027736 0.014000 0.019490 +1 0.318500 0.042729 0.009000 0.013493 +1 0.326000 0.036732 0.012000 0.022489 +1 0.343500 0.056972 0.015000 0.020990 +1 0.348500 0.071214 0.011000 0.016492 +1 0.357500 0.104198 0.011000 0.019490 +1 0.364500 0.091454 0.011000 0.017991 +1 0.372000 0.098951 0.010000 0.017991 +1 0.386500 0.098201 0.011000 0.019490 +1 0.381500 0.112444 0.011000 0.014993 +1 0.372500 0.112444 0.013000 0.017991 +1 0.341000 0.091454 0.012000 0.017991 +1 0.326000 0.074963 0.014000 0.020990 +1 0.339500 0.020240 0.013000 0.019490 +1 0.343000 0.018741 0.014000 0.019490 +1 0.355000 0.038231 0.012000 0.016492 +1 0.344500 0.158921 0.011000 0.014993 +1 0.393500 0.176162 0.011000 0.013493 +1 0.387500 0.216642 0.011000 0.013493 +1 0.391000 0.230885 0.012000 0.014993 +1 0.332500 0.226387 0.009000 0.011994 +1 0.310500 0.232384 0.013000 0.014993 +0 0.309000 0.211394 0.010000 0.017991 +0 0.308500 0.191904 0.009000 0.014993 +0 0.319000 0.179160 0.010000 0.013493 +1 0.284500 0.252624 0.017000 0.019490 +1 0.354500 0.245877 0.011000 0.014993 +1 0.353500 0.271364 0.011000 0.014993 +1 0.351000 0.271364 0.012000 0.014993 +1 0.361000 0.313343 0.008000 0.011994 +0 0.359000 0.326837 0.010000 0.011994 +0 0.368000 0.317091 0.008000 0.010495 +0 0.352000 0.311094 0.010000 0.010495 +0 0.285000 0.090705 0.010000 0.016492 +0 0.264500 0.368066 0.005000 0.013493 +0 0.281000 0.356822 0.010000 0.017991 +0 0.302000 0.354573 0.012000 0.016492 +0 0.288000 0.405547 0.012000 0.022489 +1 0.301000 0.398801 0.014000 0.017991 +0 0.299000 0.381559 0.016000 0.013493 +0 0.355000 0.435532 0.006000 0.010495 +0 0.391500 0.419040 0.009000 0.013493 +0 0.375500 0.374813 0.013000 0.011994 +1 0.387000 0.380810 0.010000 0.011994 +0 0.277500 0.561469 0.015000 0.019490 +0 0.286000 0.582459 0.008000 0.022489 +0 0.368000 0.488006 0.012000 0.016492 +0 0.328000 0.517241 0.016000 0.023988 +0 0.319500 0.547226 0.005000 0.011994 +0 0.380000 0.494003 0.008000 0.013493 +0 0.437500 0.411544 0.005000 0.007496 +0 0.435000 0.408546 0.006000 0.007496 +0 0.434000 0.377811 0.004000 0.008996 +0 0.448500 0.372564 0.005000 0.007496 +0 0.466500 0.374813 0.003000 0.005997 +0 0.470000 0.377061 0.004000 0.004498 +1 0.327000 0.589955 0.014000 0.016492 +1 0.326500 0.607196 0.017000 0.017991 +0 0.850500 0.627436 0.015000 0.025487 +0 0.844500 0.614693 0.013000 0.020990 +0 0.855500 0.607946 0.023000 0.034483 +0 0.852000 0.644678 0.018000 0.023988 +1 0.972500 0.074213 0.019000 0.028486 +0 0.797500 0.440030 0.009000 0.016492 +0 0.807500 0.427286 0.011000 0.020990 +0 0.771500 0.330585 0.021000 0.022489 +0 0.796500 0.422789 0.009000 0.011994 +0 0.807500 0.641679 0.013000 0.020990 +0 0.688000 0.423538 0.008000 0.013493 +1 0.702500 0.208396 0.019000 0.017991 +1 0.702000 0.239880 0.012000 0.014993 +1 0.711000 0.229385 0.008000 0.020990 +1 0.724000 0.279610 0.006000 0.010495 +1 0.716500 0.269115 0.009000 0.016492 +1 0.728500 0.266867 0.007000 0.014993 +1 0.688500 0.224888 0.011000 0.011994 +1 0.753500 0.009745 0.015000 0.016492 +1 0.750000 0.032234 0.014000 0.010495 +1 0.731000 0.068216 0.016000 0.013493 +1 0.723000 0.060720 0.016000 0.013493 +1 0.747000 0.074963 0.018000 0.014993 +1 0.750500 0.059970 0.019000 0.014993 +1 0.765500 0.065967 0.011000 0.014993 +1 0.664000 0.105697 0.010000 0.013493 +1 0.671500 0.122939 0.011000 0.014993 diff --git a/datasets/TomatoData/val/labels/Riped tomato_51.txt b/datasets/TomatoData/val/labels/Riped tomato_51.txt new file mode 100644 index 0000000..7ec3051 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_51.txt @@ -0,0 +1,21 @@ +1 0.402917 0.168125 0.032500 0.038750 +1 0.411250 0.199375 0.035833 0.043750 +1 0.407083 0.158125 0.054167 0.068750 +1 0.368333 0.201250 0.061667 0.090000 +1 0.330833 0.183750 0.068333 0.105000 +1 0.353750 0.110625 0.064167 0.078750 +1 0.292917 0.091875 0.074167 0.093750 +1 0.262917 0.023125 0.067500 0.043750 +1 0.342917 0.035625 0.065833 0.066250 +1 0.392500 0.652500 0.071667 0.102500 +1 0.362917 0.666250 0.044167 0.062500 +1 0.325833 0.635625 0.078333 0.113750 +0 0.416250 0.583750 0.074167 0.117500 +0 0.417500 0.470625 0.078333 0.113750 +0 0.293333 0.565000 0.088333 0.117500 +0 0.300000 0.452500 0.083333 0.120000 +0 0.359167 0.529375 0.070000 0.116250 +0 0.971250 0.154375 0.057500 0.118750 +1 0.988333 0.260625 0.023333 0.066250 +0 0.890000 0.949375 0.076667 0.098750 +0 0.966667 0.946250 0.066667 0.107500 diff --git a/datasets/TomatoData/val/labels/Riped tomato_7.txt b/datasets/TomatoData/val/labels/Riped tomato_7.txt new file mode 100644 index 0000000..a57484d --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_7.txt @@ -0,0 +1,29 @@ +0 0.354444 0.184444 0.182222 0.214815 +0 0.396667 0.374074 0.206667 0.256296 +0 0.398889 0.631111 0.204444 0.269630 +0 0.065000 0.740741 0.127778 0.361481 +0 0.484444 0.320000 0.080000 0.213333 +0 0.101667 0.543704 0.187778 0.251852 +0 0.080556 0.368148 0.156667 0.164444 +0 0.220556 0.316296 0.161111 0.223704 +1 0.217778 0.755556 0.208889 0.269630 +1 0.290000 0.824444 0.164444 0.211852 +1 0.083333 0.954815 0.164444 0.090370 +1 0.253889 0.959259 0.167778 0.081481 +1 0.408889 0.784444 0.100000 0.096296 +1 0.428889 0.931111 0.106667 0.137778 +1 0.543889 0.828148 0.174444 0.228148 +1 0.657222 0.677778 0.210000 0.250370 +1 0.701111 0.881481 0.175556 0.234074 +1 0.813333 0.702963 0.102222 0.131852 +1 0.751667 0.526667 0.163333 0.202963 +1 0.882778 0.513333 0.132222 0.164444 +1 0.818333 0.335556 0.098889 0.128889 +1 0.603333 0.460741 0.148889 0.174815 +0 0.596111 0.301481 0.143333 0.161481 +0 0.440000 0.164444 0.144444 0.142222 +1 0.884444 0.135556 0.168889 0.185185 +1 0.707778 0.354074 0.144444 0.180741 +0 0.723333 0.191111 0.140000 0.148148 +1 0.829444 0.248148 0.145556 0.155556 +1 0.341111 0.573333 0.180000 0.183704 diff --git a/datasets/TomatoData/val/labels/Riped tomato_74.txt b/datasets/TomatoData/val/labels/Riped tomato_74.txt new file mode 100644 index 0000000..a8ee763 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_74.txt @@ -0,0 +1 @@ +0 0.524500 0.495833 0.951000 0.779762 diff --git a/datasets/TomatoData/val/labels/Riped tomato_80.txt b/datasets/TomatoData/val/labels/Riped tomato_80.txt new file mode 100644 index 0000000..3a7e6ca --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_80.txt @@ -0,0 +1,6 @@ +0 0.227333 0.412857 0.385333 0.820000 +1 0.584667 0.228571 0.342667 0.451429 +0 0.813333 0.622857 0.290667 0.640000 +0 0.894000 0.194286 0.212000 0.382857 +1 0.536667 0.725714 0.278667 0.548571 +0 0.357333 0.885714 0.381333 0.228571 diff --git a/datasets/TomatoData/val/labels/Riped tomato_83.txt b/datasets/TomatoData/val/labels/Riped tomato_83.txt new file mode 100644 index 0000000..7a7eae0 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_83.txt @@ -0,0 +1,5 @@ +0 0.373000 0.669167 0.406000 0.582146 +0 0.772000 0.330833 0.300000 0.460615 +0 0.604500 0.501875 0.323000 0.484621 +0 0.466500 0.216804 0.303000 0.322581 +0 0.254000 0.429857 0.356000 0.427607 diff --git a/datasets/TomatoData/val/labels/Riped tomato_99.txt b/datasets/TomatoData/val/labels/Riped tomato_99.txt new file mode 100644 index 0000000..5ed00a2 --- /dev/null +++ b/datasets/TomatoData/val/labels/Riped tomato_99.txt @@ -0,0 +1,2 @@ +0 0.255833 0.566416 0.398333 0.491228 +0 0.665833 0.578947 0.375000 0.476190 diff --git a/datasets/TomatoData/val/labels/unriped tomato_10.txt b/datasets/TomatoData/val/labels/unriped tomato_10.txt new file mode 100644 index 0000000..10bf213 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_10.txt @@ -0,0 +1,2 @@ +1 0.288500 0.513493 0.303000 0.370315 +1 0.516000 0.659670 0.252000 0.323838 diff --git a/datasets/TomatoData/val/labels/unriped tomato_113.txt b/datasets/TomatoData/val/labels/unriped tomato_113.txt new file mode 100644 index 0000000..d3effdc --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_113.txt @@ -0,0 +1,9 @@ +1 0.194375 0.530000 0.383750 0.490000 +1 0.690625 0.330000 0.563750 0.562500 +1 0.658125 0.761875 0.673750 0.451250 +0 0.196250 0.164375 0.325000 0.296250 +0 0.346250 0.113125 0.212500 0.223750 +0 0.530000 0.086875 0.162500 0.163750 +0 0.707500 0.045625 0.185000 0.083750 +0 0.070000 0.111250 0.137500 0.217500 +1 0.870000 0.120000 0.145000 0.152500 diff --git a/datasets/TomatoData/val/labels/unriped tomato_117.txt b/datasets/TomatoData/val/labels/unriped tomato_117.txt new file mode 100644 index 0000000..2631c82 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_117.txt @@ -0,0 +1,9 @@ +1 0.305195 0.688564 0.116883 0.257908 +1 0.298701 0.828467 0.110390 0.124088 +1 0.448864 0.628954 0.196429 0.338200 +1 0.613636 0.514599 0.198052 0.377129 +1 0.788961 0.454988 0.172078 0.350365 +1 0.640422 0.166667 0.176948 0.328467 +1 0.505682 0.332117 0.154221 0.309002 +1 0.438312 0.293187 0.087662 0.240876 +1 0.362013 0.450122 0.097403 0.121655 diff --git a/datasets/TomatoData/val/labels/unriped tomato_12.txt b/datasets/TomatoData/val/labels/unriped tomato_12.txt new file mode 100644 index 0000000..108e22e --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_12.txt @@ -0,0 +1,11 @@ +1 0.176463 0.586538 0.219199 0.346154 +1 0.239541 0.423846 0.137962 0.171538 +1 0.373781 0.444712 0.181853 0.158654 +1 0.349653 0.270865 0.214964 0.304423 +1 0.371599 0.636250 0.248075 0.339808 +1 0.528298 0.700385 0.247048 0.355769 +1 0.641684 0.625000 0.229979 0.339615 +1 0.809035 0.596154 0.216119 0.320385 +1 0.745380 0.467885 0.180698 0.182692 +1 0.633149 0.469615 0.137962 0.182692 +1 0.647587 0.266827 0.218172 0.309423 diff --git a/datasets/TomatoData/val/labels/unriped tomato_126.txt b/datasets/TomatoData/val/labels/unriped tomato_126.txt new file mode 100644 index 0000000..a968cb9 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_126.txt @@ -0,0 +1 @@ +1 0.500000 0.547886 0.642500 0.605721 diff --git a/datasets/TomatoData/val/labels/unriped tomato_129.txt b/datasets/TomatoData/val/labels/unriped tomato_129.txt new file mode 100644 index 0000000..6e102a2 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_129.txt @@ -0,0 +1 @@ +1 0.506079 0.510714 0.641337 0.614286 diff --git a/datasets/TomatoData/val/labels/unriped tomato_147.txt b/datasets/TomatoData/val/labels/unriped tomato_147.txt new file mode 100644 index 0000000..71c15ea --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_147.txt @@ -0,0 +1 @@ +0 0.497619 0.493892 0.588095 0.750436 diff --git a/datasets/TomatoData/val/labels/unriped tomato_157.txt b/datasets/TomatoData/val/labels/unriped tomato_157.txt new file mode 100644 index 0000000..e51fc3c --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_157.txt @@ -0,0 +1,11 @@ +1 0.164333 0.861222 0.163333 0.169339 +1 0.335000 0.716934 0.170000 0.321643 +1 0.172333 0.667836 0.167333 0.241483 +1 0.435333 0.641283 0.217333 0.342685 +1 0.305333 0.310621 0.206667 0.292585 +1 0.489667 0.425351 0.202000 0.257515 +1 0.605000 0.702405 0.182000 0.302605 +1 0.758000 0.786573 0.158667 0.258517 +1 0.852333 0.555110 0.154000 0.198397 +1 0.699000 0.540080 0.164667 0.250501 +1 0.519333 0.163828 0.229333 0.317635 diff --git a/datasets/TomatoData/val/labels/unriped tomato_18.txt b/datasets/TomatoData/val/labels/unriped tomato_18.txt new file mode 100644 index 0000000..283e705 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_18.txt @@ -0,0 +1,8 @@ +1 0.207500 0.320000 0.412500 0.633333 +1 0.198125 0.810833 0.393750 0.375000 +1 0.545000 0.451667 0.340000 0.490000 +1 0.737500 0.325833 0.132500 0.228333 +1 0.745000 0.613333 0.235000 0.306667 +1 0.895000 0.748333 0.192500 0.266667 +0 0.894375 0.362500 0.211250 0.311667 +1 0.432500 0.950833 0.130000 0.098333 diff --git a/datasets/TomatoData/val/labels/unriped tomato_188.txt b/datasets/TomatoData/val/labels/unriped tomato_188.txt new file mode 100644 index 0000000..e79dc2e --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_188.txt @@ -0,0 +1 @@ +1 0.503000 0.475926 0.654000 0.538889 diff --git a/datasets/TomatoData/val/labels/unriped tomato_19.txt b/datasets/TomatoData/val/labels/unriped tomato_19.txt new file mode 100644 index 0000000..316bfae --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_19.txt @@ -0,0 +1,6 @@ +0 0.301563 0.736719 0.444792 0.526563 +0 0.231771 0.282813 0.461458 0.562500 +0 0.633854 0.250781 0.328125 0.482812 +0 0.839063 0.391406 0.240625 0.332813 +0 0.797917 0.405469 0.402083 0.539062 +0 0.794792 0.083594 0.316667 0.160938 diff --git a/datasets/TomatoData/val/labels/unriped tomato_192.txt b/datasets/TomatoData/val/labels/unriped tomato_192.txt new file mode 100644 index 0000000..4cbdcf0 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_192.txt @@ -0,0 +1 @@ +1 0.503040 0.503571 0.641337 0.635714 diff --git a/datasets/TomatoData/val/labels/unriped tomato_196.txt b/datasets/TomatoData/val/labels/unriped tomato_196.txt new file mode 100644 index 0000000..572ee7b --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_196.txt @@ -0,0 +1,2 @@ +1 0.514000 0.650675 0.254000 0.347826 +1 0.291500 0.517991 0.301000 0.382309 diff --git a/datasets/TomatoData/val/labels/unriped tomato_221.txt b/datasets/TomatoData/val/labels/unriped tomato_221.txt new file mode 100644 index 0000000..966db42 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_221.txt @@ -0,0 +1,7 @@ +1 0.641154 0.544457 0.154615 0.202079 +1 0.587692 0.725173 0.156923 0.207852 +1 0.464615 0.760393 0.133846 0.199769 +1 0.406923 0.792725 0.056923 0.086605 +1 0.423846 0.904734 0.063077 0.079677 +1 0.453077 0.510393 0.050769 0.076212 +1 0.594231 0.377598 0.086923 0.092379 diff --git a/datasets/TomatoData/val/labels/unriped tomato_229.txt b/datasets/TomatoData/val/labels/unriped tomato_229.txt new file mode 100644 index 0000000..a728291 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_229.txt @@ -0,0 +1,8 @@ +1 0.267653 0.657583 0.205153 0.284360 +1 0.241412 0.408768 0.091603 0.104265 +1 0.439408 0.907583 0.113550 0.130332 +0 0.483779 0.481635 0.194656 0.252370 +0 0.542462 0.313389 0.187977 0.240521 +0 0.663645 0.535545 0.193702 0.246445 +0 0.718034 0.212678 0.193702 0.145735 +0 0.763359 0.401659 0.229008 0.222749 diff --git a/datasets/TomatoData/val/labels/unriped tomato_24.txt b/datasets/TomatoData/val/labels/unriped tomato_24.txt new file mode 100644 index 0000000..5b7532b --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_24.txt @@ -0,0 +1 @@ +1 0.509074 0.518182 0.705989 0.663636 diff --git a/datasets/TomatoData/val/labels/unriped tomato_25.txt b/datasets/TomatoData/val/labels/unriped tomato_25.txt new file mode 100644 index 0000000..6ad9858 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_25.txt @@ -0,0 +1,6 @@ +1 0.591801 0.319887 0.266744 0.257036 +1 0.319284 0.468105 0.273672 0.219512 +1 0.579099 0.595216 0.273672 0.254221 +1 0.311201 0.722326 0.241339 0.234522 +1 0.535219 0.844278 0.236721 0.232645 +1 0.394342 0.895403 0.195150 0.194184 diff --git a/datasets/TomatoData/val/labels/unriped tomato_256.txt b/datasets/TomatoData/val/labels/unriped tomato_256.txt new file mode 100644 index 0000000..0c78fe4 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_256.txt @@ -0,0 +1 @@ +1 0.515000 0.550330 0.673077 0.610561 diff --git a/datasets/TomatoData/val/labels/unriped tomato_275.txt b/datasets/TomatoData/val/labels/unriped tomato_275.txt new file mode 100644 index 0000000..9c8a2ba --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_275.txt @@ -0,0 +1,6 @@ +1 0.352500 0.538576 0.158333 0.275964 +1 0.389167 0.896142 0.115000 0.207715 +1 0.659167 0.596439 0.161667 0.267062 +1 0.765833 0.553412 0.158333 0.258160 +1 0.509167 0.314540 0.158333 0.278932 +1 0.665833 0.310089 0.175000 0.252226 diff --git a/datasets/TomatoData/val/labels/unriped tomato_282.txt b/datasets/TomatoData/val/labels/unriped tomato_282.txt new file mode 100644 index 0000000..8d73da9 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_282.txt @@ -0,0 +1,6 @@ +1 0.456154 0.506351 0.053846 0.091224 +1 0.408462 0.789838 0.061538 0.094688 +1 0.423462 0.904157 0.063846 0.078522 +1 0.590385 0.717667 0.160769 0.211316 +1 0.465000 0.759815 0.133077 0.203233 +1 0.639231 0.545612 0.163077 0.209007 diff --git a/datasets/TomatoData/val/labels/unriped tomato_36.txt b/datasets/TomatoData/val/labels/unriped tomato_36.txt new file mode 100644 index 0000000..a154966 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_36.txt @@ -0,0 +1,8 @@ +1 0.406154 0.793880 0.060000 0.077367 +1 0.424231 0.903580 0.063846 0.077367 +1 0.465385 0.763279 0.133846 0.198614 +1 0.587692 0.724018 0.153846 0.207852 +1 0.644231 0.542725 0.148462 0.200924 +1 0.453846 0.506928 0.053846 0.073903 +1 0.495000 0.498845 0.046923 0.053118 +1 0.414615 0.510393 0.035385 0.046189 diff --git a/datasets/TomatoData/val/labels/unriped tomato_39.txt b/datasets/TomatoData/val/labels/unriped tomato_39.txt new file mode 100644 index 0000000..5c91cdc --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_39.txt @@ -0,0 +1,5 @@ +1 0.442263 0.462628 0.424942 0.280094 +1 0.044457 0.859559 0.086605 0.121951 +1 0.016744 0.647915 0.031178 0.084186 +1 0.180716 0.579858 0.359122 0.217152 +1 0.181871 0.939811 0.356813 0.115657 diff --git a/datasets/TomatoData/val/labels/unriped tomato_42.txt b/datasets/TomatoData/val/labels/unriped tomato_42.txt new file mode 100644 index 0000000..183f862 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_42.txt @@ -0,0 +1,7 @@ +1 0.290000 0.264286 0.286667 0.522857 +1 0.527333 0.097143 0.273333 0.188571 +1 0.054667 0.408571 0.106667 0.434286 +1 0.280667 0.760000 0.310667 0.480000 +1 0.567333 0.657143 0.313333 0.662857 +1 0.854000 0.835714 0.292000 0.328571 +0 0.876667 0.401429 0.246667 0.557143 diff --git a/datasets/TomatoData/val/labels/unriped tomato_45.txt b/datasets/TomatoData/val/labels/unriped tomato_45.txt new file mode 100644 index 0000000..20b4227 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_45.txt @@ -0,0 +1,6 @@ +1 0.276111 0.469167 0.254444 0.391667 +1 0.482778 0.696667 0.305556 0.420000 +1 0.678333 0.422500 0.290000 0.428333 +1 0.468889 0.306667 0.262222 0.366667 +1 0.506111 0.071667 0.272222 0.140000 +1 0.778889 0.146667 0.308889 0.290000 diff --git a/datasets/TomatoData/val/labels/unriped tomato_63.txt b/datasets/TomatoData/val/labels/unriped tomato_63.txt new file mode 100644 index 0000000..4741c23 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_63.txt @@ -0,0 +1 @@ +1 0.501875 0.542910 0.633750 0.598259 diff --git a/datasets/TomatoData/val/labels/unriped tomato_67.txt b/datasets/TomatoData/val/labels/unriped tomato_67.txt new file mode 100644 index 0000000..e6d1a25 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_67.txt @@ -0,0 +1,3 @@ +1 0.256538 0.464615 0.426923 0.564103 +1 0.435000 0.373333 0.197692 0.365128 +1 0.708077 0.474359 0.465385 0.540513 diff --git a/datasets/TomatoData/val/labels/unriped tomato_68.txt b/datasets/TomatoData/val/labels/unriped tomato_68.txt new file mode 100644 index 0000000..733af3b --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_68.txt @@ -0,0 +1,5 @@ +1 0.332013 0.389640 0.331220 0.459459 +1 0.681458 0.404279 0.332805 0.457207 +1 0.191759 0.726351 0.326466 0.443694 +1 0.513471 0.695946 0.316957 0.414414 +1 0.805864 0.707207 0.261490 0.373874 diff --git a/datasets/TomatoData/val/labels/unriped tomato_71.txt b/datasets/TomatoData/val/labels/unriped tomato_71.txt new file mode 100644 index 0000000..f317ddb --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_71.txt @@ -0,0 +1,8 @@ +1 0.628718 0.679231 0.325128 0.527692 +1 0.807179 0.477692 0.335385 0.487692 +1 0.678974 0.310000 0.302564 0.330769 +1 0.243590 0.067115 0.203077 0.133462 +1 0.134231 0.263846 0.267949 0.358462 +1 0.321538 0.603077 0.240000 0.384615 +1 0.502564 0.139231 0.228718 0.275385 +1 0.864872 0.068462 0.270256 0.133846 diff --git a/datasets/TomatoData/val/labels/unriped tomato_74.txt b/datasets/TomatoData/val/labels/unriped tomato_74.txt new file mode 100644 index 0000000..5898bc8 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_74.txt @@ -0,0 +1,9 @@ +1 0.527721 0.698750 0.250257 0.362115 +1 0.400475 0.644231 0.303773 0.333462 +1 0.183907 0.583365 0.238450 0.349423 +1 0.331558 0.267596 0.176463 0.301346 +1 0.234150 0.423077 0.137962 0.182692 +1 0.510139 0.347019 0.249230 0.341346 +1 0.657148 0.261250 0.196740 0.310962 +1 0.649641 0.625865 0.218172 0.341346 +1 0.821291 0.597788 0.195714 0.304423 diff --git a/datasets/TomatoData/val/labels/unriped tomato_81.txt b/datasets/TomatoData/val/labels/unriped tomato_81.txt new file mode 100644 index 0000000..b7cc9d2 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_81.txt @@ -0,0 +1,6 @@ +0 0.625521 0.255469 0.315625 0.479687 +0 0.778125 0.342969 0.347917 0.420312 +0 0.807813 0.465625 0.384375 0.434375 +0 0.793750 0.082812 0.312500 0.162500 +0 0.301042 0.742969 0.454167 0.514062 +0 0.243229 0.282813 0.484375 0.562500 diff --git a/datasets/TomatoData/val/labels/unriped tomato_86.txt b/datasets/TomatoData/val/labels/unriped tomato_86.txt new file mode 100644 index 0000000..440b202 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_86.txt @@ -0,0 +1 @@ +1 0.510889 0.515909 0.709619 0.663636 diff --git a/datasets/TomatoData/val/labels/unriped tomato_9.txt b/datasets/TomatoData/val/labels/unriped tomato_9.txt new file mode 100644 index 0000000..5778175 --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_9.txt @@ -0,0 +1 @@ +1 0.508997 0.556641 0.544987 0.636719 diff --git a/datasets/TomatoData/val/labels/unriped tomato_98.txt b/datasets/TomatoData/val/labels/unriped tomato_98.txt new file mode 100644 index 0000000..837b79a --- /dev/null +++ b/datasets/TomatoData/val/labels/unriped tomato_98.txt @@ -0,0 +1,5 @@ +1 0.432432 0.293525 0.347748 0.260432 +1 0.645946 0.528777 0.407207 0.313669 +1 0.348649 0.697122 0.403604 0.273381 +1 0.835135 0.858273 0.302703 0.158273 +1 0.397297 0.863309 0.396396 0.148201 diff --git a/datasets/handleImage/label/订单1804264_51_7086683.txt b/datasets/handleImage/label/订单1804264_51_7086683.txt new file mode 100644 index 0000000..bad852c --- /dev/null +++ b/datasets/handleImage/label/订单1804264_51_7086683.txt @@ -0,0 +1 @@ +6 0.128060 0.300804 0.124727 0.510078 0.554115 0.523863 0.584076 0.324618 diff --git a/datasets/handleImage/label/订单1804266_51_7086351.txt b/datasets/handleImage/label/订单1804266_51_7086351.txt new file mode 100644 index 0000000..a40ea8b --- /dev/null +++ b/datasets/handleImage/label/订单1804266_51_7086351.txt @@ -0,0 +1 @@ +6 0.402227 0.461201 0.387188 0.582754 0.659544 0.585254 0.657865 0.466211 diff --git a/datasets/handleImage/label/订单1804271_51_7086393.txt b/datasets/handleImage/label/订单1804271_51_7086393.txt new file mode 100644 index 0000000..92a9a59 --- /dev/null +++ b/datasets/handleImage/label/订单1804271_51_7086393.txt @@ -0,0 +1 @@ +6 0.279564 0.288340 0.278314 0.401120 0.467539 0.403626 0.465033 0.287083 diff --git a/datasets/handleImage/label/订单1804279_51_7086490.txt b/datasets/handleImage/label/订单1804279_51_7086490.txt new file mode 100644 index 0000000..2a9ee24 --- /dev/null +++ b/datasets/handleImage/label/订单1804279_51_7086490.txt @@ -0,0 +1 @@ +6 0.389714 0.377246 0.374674 0.490029 0.631979 0.520098 0.640339 0.401055 diff --git a/datasets/handleImage/label/订单1804280_51_7086504.txt b/datasets/handleImage/label/订单1804280_51_7086504.txt new file mode 100644 index 0000000..8c3b441 --- /dev/null +++ b/datasets/handleImage/label/订单1804280_51_7086504.txt @@ -0,0 +1 @@ +6 0.391380 0.500049 0.374674 0.590273 0.578516 0.612832 0.593555 0.517598 diff --git a/datasets/handleImage/label/订单1804281_51_7086514.txt b/datasets/handleImage/label/订单1804281_51_7086514.txt new file mode 100644 index 0000000..f428f28 --- /dev/null +++ b/datasets/handleImage/label/订单1804281_51_7086514.txt @@ -0,0 +1 @@ +6 0.356289 0.526367 0.366315 0.616592 0.566823 0.601553 0.551784 0.506318 diff --git a/datasets/handleImage/label/订单1804283_51_7086538.txt b/datasets/handleImage/label/订单1804283_51_7086538.txt new file mode 100644 index 0000000..5ee138f --- /dev/null +++ b/datasets/handleImage/label/订单1804283_51_7086538.txt @@ -0,0 +1 @@ +6 0.384701 0.403564 0.386367 0.516338 0.652031 0.513838 0.638659 0.393535 diff --git a/datasets/handleImage/label/订单1804284_51_7086566.txt b/datasets/handleImage/label/订单1804284_51_7086566.txt new file mode 100644 index 0000000..d1dbbb3 --- /dev/null +++ b/datasets/handleImage/label/订单1804284_51_7086566.txt @@ -0,0 +1 @@ +6 0.384951 0.111525 0.390735 0.331460 0.561686 0.321460 0.553333 0.111525 diff --git a/datasets/handleImage/label/订单1804288_51_7086560.txt b/datasets/handleImage/label/订单1804288_51_7086560.txt new file mode 100644 index 0000000..4f4984b --- /dev/null +++ b/datasets/handleImage/label/订单1804288_51_7086560.txt @@ -0,0 +1 @@ +6 0.518359 0.396045 0.526719 0.471230 0.718867 0.457441 0.705495 0.378496 diff --git a/datasets/handleImage/label/订单1804296_51_7086646.txt b/datasets/handleImage/label/订单1804296_51_7086646.txt new file mode 100644 index 0000000..e3878ee --- /dev/null +++ b/datasets/handleImage/label/订单1804296_51_7086646.txt @@ -0,0 +1 @@ +6 0.404740 0.347168 0.434818 0.456191 0.703828 0.407314 0.663724 0.292031 diff --git a/datasets/handleImage/label/订单1804297_51_7086665.txt b/datasets/handleImage/label/订单1804297_51_7086665.txt new file mode 100644 index 0000000..0505770 --- /dev/null +++ b/datasets/handleImage/label/订单1804297_51_7086665.txt @@ -0,0 +1 @@ +6 0.264401 0.419854 0.256042 0.548926 0.528385 0.555186 0.533398 0.434893 diff --git a/datasets/handleImage/label/订单1804300_51_7086694.txt b/datasets/handleImage/label/订单1804300_51_7086694.txt new file mode 100644 index 0000000..c599739 --- /dev/null +++ b/datasets/handleImage/label/订单1804300_51_7086694.txt @@ -0,0 +1 @@ +6 0.346263 0.221855 0.366315 0.313330 0.580182 0.279502 0.543424 0.190527 diff --git a/datasets/handleImage/label/订单1804301_51_7086834.txt b/datasets/handleImage/label/订单1804301_51_7086834.txt new file mode 100644 index 0000000..3b6d1a2 --- /dev/null +++ b/datasets/handleImage/label/订单1804301_51_7086834.txt @@ -0,0 +1 @@ +6 0.447365 0.408576 0.460735 0.573986 0.851861 0.571483 0.808405 0.398546 diff --git a/datasets/handleImage/label/订单1804303_51_7086722.txt b/datasets/handleImage/label/订单1804303_51_7086722.txt new file mode 100644 index 0000000..6a45fe4 --- /dev/null +++ b/datasets/handleImage/label/订单1804303_51_7086722.txt @@ -0,0 +1 @@ +6 0.363072 0.478696 0.354722 0.568921 0.560233 0.571429 0.558561 0.482454 diff --git a/datasets/handleImage/label/订单1804305_51_7086730.txt b/datasets/handleImage/label/订单1804305_51_7086730.txt new file mode 100644 index 0000000..7d5ee20 --- /dev/null +++ b/datasets/handleImage/label/订单1804305_51_7086730.txt @@ -0,0 +1 @@ +6 0.386328 0.560156 0.393047 0.667969 0.628633 0.662959 0.618620 0.552686 diff --git a/datasets/handleImage/label/订单1804307_51_7086734.txt b/datasets/handleImage/label/订单1804307_51_7086734.txt new file mode 100644 index 0000000..84fffe6 --- /dev/null +++ b/datasets/handleImage/label/订单1804307_51_7086734.txt @@ -0,0 +1 @@ +6 0.451680 0.456127 0.410065 0.552618 0.616445 0.609010 0.656393 0.503745 diff --git a/datasets/handleImage/label/订单1804310_51_7086877.txt b/datasets/handleImage/label/订单1804310_51_7086877.txt new file mode 100644 index 0000000..c5d4f1f --- /dev/null +++ b/datasets/handleImage/label/订单1804310_51_7086877.txt @@ -0,0 +1 @@ +6 0.306172 0.275742 0.312852 0.437393 0.700482 0.418594 0.672083 0.261953 diff --git a/datasets/handleImage/label/订单1804312_51_7086770.txt b/datasets/handleImage/label/订单1804312_51_7086770.txt new file mode 100644 index 0000000..ba98489 --- /dev/null +++ b/datasets/handleImage/label/订单1804312_51_7086770.txt @@ -0,0 +1 @@ +6 0.383122 0.542608 0.381456 0.631579 0.580283 0.634083 0.578611 0.538846 diff --git a/datasets/handleImage/label/订单1804316_51_7086793.txt b/datasets/handleImage/label/订单1804316_51_7086793.txt new file mode 100644 index 0000000..cc0fa5c --- /dev/null +++ b/datasets/handleImage/label/订单1804316_51_7086793.txt @@ -0,0 +1 @@ +6 0.526719 0.443662 0.543424 0.615342 0.690495 0.605273 0.673750 0.434893 diff --git a/datasets/handleImage/label/订单1804319_51_7086838.txt b/datasets/handleImage/label/订单1804319_51_7086838.txt new file mode 100644 index 0000000..a276638 --- /dev/null +++ b/datasets/handleImage/label/订单1804319_51_7086838.txt @@ -0,0 +1 @@ +6 0.351276 0.332129 0.372995 0.451182 0.611927 0.431133 0.591875 0.312080 diff --git a/datasets/handleImage/label/订单1804320_51_7086858.txt b/datasets/handleImage/label/订单1804320_51_7086858.txt new file mode 100644 index 0000000..63393c8 --- /dev/null +++ b/datasets/handleImage/label/订单1804320_51_7086858.txt @@ -0,0 +1 @@ +6 0.403172 0.365917 0.414889 0.469917 0.655472 0.453633 0.625394 0.349625 diff --git a/datasets/handleImage/label/订单1804322_51_7086804.txt b/datasets/handleImage/label/订单1804322_51_7086804.txt new file mode 100644 index 0000000..f923b38 --- /dev/null +++ b/datasets/handleImage/label/订单1804322_51_7086804.txt @@ -0,0 +1 @@ +6 0.198471 0.483696 0.195137 0.555127 0.365556 0.556373 0.367190 0.482451 diff --git a/datasets/handleImage/label/订单1804329_51_7086883.txt b/datasets/handleImage/label/订单1804329_51_7086883.txt new file mode 100644 index 0000000..06041b7 --- /dev/null +++ b/datasets/handleImage/label/订单1804329_51_7086883.txt @@ -0,0 +1 @@ +6 0.292799 0.375986 0.302826 0.528877 0.623633 0.520098 0.630312 0.370977 diff --git a/datasets/handleImage/label/订单1804330_51_7086948.txt b/datasets/handleImage/label/订单1804330_51_7086948.txt new file mode 100644 index 0000000..82a51b5 --- /dev/null +++ b/datasets/handleImage/label/订单1804330_51_7086948.txt @@ -0,0 +1 @@ +6 0.478268 0.374736 0.486615 0.469980 0.707174 0.456191 0.692135 0.360957 diff --git a/datasets/handleImage/label/订单1804345_51_7087222.txt b/datasets/handleImage/label/订单1804345_51_7087222.txt new file mode 100644 index 0000000..4920dd3 --- /dev/null +++ b/datasets/handleImage/label/订单1804345_51_7087222.txt @@ -0,0 +1 @@ +6 0.391478 0.392229 0.389806 0.492479 0.591978 0.496242 0.598661 0.394738 diff --git a/datasets/handleImage/label/订单1804348_51_7086990.txt b/datasets/handleImage/label/订单1804348_51_7086990.txt new file mode 100644 index 0000000..1f185df --- /dev/null +++ b/datasets/handleImage/label/订单1804348_51_7086990.txt @@ -0,0 +1 @@ +6 0.456639 0.525062 0.424894 0.604008 0.600333 0.651629 0.623728 0.566417 diff --git a/datasets/handleImage/label/订单1804351_51_7087028.txt b/datasets/handleImage/label/订单1804351_51_7087028.txt new file mode 100644 index 0000000..6fb4c6c --- /dev/null +++ b/datasets/handleImage/label/订单1804351_51_7087028.txt @@ -0,0 +1 @@ +6 0.531732 0.319600 0.541758 0.531377 0.713854 0.526367 0.698815 0.318350 diff --git a/datasets/handleImage/label/订单1804354_51_7087141.txt b/datasets/handleImage/label/订单1804354_51_7087141.txt new file mode 100644 index 0000000..419c325 --- /dev/null +++ b/datasets/handleImage/label/订单1804354_51_7087141.txt @@ -0,0 +1 @@ +6 0.357203 0.526304 0.363895 0.637833 0.597804 0.635324 0.592797 0.523794 diff --git a/datasets/handleImage/label/订单1804355_51_7087137.txt b/datasets/handleImage/label/订单1804355_51_7087137.txt new file mode 100644 index 0000000..765f429 --- /dev/null +++ b/datasets/handleImage/label/订单1804355_51_7087137.txt @@ -0,0 +1 @@ +6 0.655472 0.471179 0.658811 0.612783 0.787467 0.606517 0.775772 0.467417 diff --git a/datasets/handleImage/label/订单1804356_51_7087113.txt b/datasets/handleImage/label/订单1804356_51_7087113.txt new file mode 100644 index 0000000..01e942a --- /dev/null +++ b/datasets/handleImage/label/订单1804356_51_7087113.txt @@ -0,0 +1 @@ +6 0.324509 0.420995 0.304509 0.477388 0.504479 0.494931 0.522239 0.429766 diff --git a/datasets/handleImage/label/订单1804357_51_7087171.txt b/datasets/handleImage/label/订单1804357_51_7087171.txt new file mode 100644 index 0000000..06c0d61 --- /dev/null +++ b/datasets/handleImage/label/订单1804357_51_7087171.txt @@ -0,0 +1 @@ +6 0.520039 0.365967 0.494974 0.477490 0.753958 0.503809 0.767318 0.388525 diff --git a/datasets/handleImage/label/订单1804358_51_7087420.txt b/datasets/handleImage/label/订单1804358_51_7087420.txt new file mode 100644 index 0000000..6c42483 --- /dev/null +++ b/datasets/handleImage/label/订单1804358_51_7087420.txt @@ -0,0 +1 @@ +6 0.276189 0.540100 0.274517 0.609021 0.441606 0.605263 0.438261 0.537596 diff --git a/datasets/handleImage/label/订单1804361_51_7087277.txt b/datasets/handleImage/label/订单1804361_51_7087277.txt new file mode 100644 index 0000000..dd6ade2 --- /dev/null +++ b/datasets/handleImage/label/订单1804361_51_7087277.txt @@ -0,0 +1 @@ +6 0.250299 0.473667 0.248633 0.565147 0.455000 0.561392 0.451680 0.469912 diff --git a/datasets/handleImage/label/订单1804364_51_7087186.txt b/datasets/handleImage/label/订单1804364_51_7087186.txt new file mode 100644 index 0000000..62ec684 --- /dev/null +++ b/datasets/handleImage/label/订单1804364_51_7087186.txt @@ -0,0 +1 @@ +6 0.328942 0.384654 0.306733 0.451073 0.517807 0.463599 0.531135 0.392171 diff --git a/datasets/handleImage/label/订单1804365_51_7087279.txt b/datasets/handleImage/label/订单1804365_51_7087279.txt new file mode 100644 index 0000000..2d89623 --- /dev/null +++ b/datasets/handleImage/label/订单1804365_51_7087279.txt @@ -0,0 +1 @@ +6 0.409792 0.546311 0.419815 0.624010 0.573530 0.618993 0.570185 0.542552 diff --git a/datasets/handleImage/label/订单1804368_51_7087281.txt b/datasets/handleImage/label/订单1804368_51_7087281.txt new file mode 100644 index 0000000..e2b27e9 --- /dev/null +++ b/datasets/handleImage/label/订单1804368_51_7087281.txt @@ -0,0 +1 @@ +6 0.428138 0.334639 0.438164 0.483760 0.737240 0.474990 0.717201 0.328369 diff --git a/datasets/handleImage/label/订单1804374_51_7087324.txt b/datasets/handleImage/label/订单1804374_51_7087324.txt new file mode 100644 index 0000000..5279d38 --- /dev/null +++ b/datasets/handleImage/label/订单1804374_51_7087324.txt @@ -0,0 +1 @@ +6 0.202578 0.497549 0.210924 0.595293 0.449857 0.576494 0.424792 0.476240 diff --git a/datasets/handleImage/label/订单1804380_51_7087338.txt b/datasets/handleImage/label/订单1804380_51_7087338.txt new file mode 100644 index 0000000..21a3733 --- /dev/null +++ b/datasets/handleImage/label/订单1804380_51_7087338.txt @@ -0,0 +1 @@ +6 0.491655 0.393429 0.414803 0.545061 0.727245 0.641554 0.822488 0.498698 diff --git a/datasets/handleImage/label/订单1804383_51_7087409.txt b/datasets/handleImage/label/订单1804383_51_7087409.txt new file mode 100644 index 0000000..c3bc10b --- /dev/null +++ b/datasets/handleImage/label/订单1804383_51_7087409.txt @@ -0,0 +1 @@ +6 0.543228 0.677936 0.642852 0.685456 0.651309 0.473678 0.553564 0.468665 diff --git a/datasets/handleImage/label/订单1804384_51_7087390.txt b/datasets/handleImage/label/订单1804384_51_7087390.txt new file mode 100644 index 0000000..fedf85b --- /dev/null +++ b/datasets/handleImage/label/订单1804384_51_7087390.txt @@ -0,0 +1 @@ +6 0.342893 0.526340 0.337880 0.632860 0.556760 0.632860 0.553413 0.518820 diff --git a/datasets/handleImage/label/订单1804385_51_7087531.txt b/datasets/handleImage/label/订单1804385_51_7087531.txt new file mode 100644 index 0000000..cec4ebd --- /dev/null +++ b/datasets/handleImage/label/订单1804385_51_7087531.txt @@ -0,0 +1 @@ +6 0.470824 0.309510 0.480850 0.421039 0.689699 0.409765 0.678013 0.301990 diff --git a/datasets/handleImage/label/订单1804387_51_7087408.txt b/datasets/handleImage/label/订单1804387_51_7087408.txt new file mode 100644 index 0000000..f2abb26 --- /dev/null +++ b/datasets/handleImage/label/订单1804387_51_7087408.txt @@ -0,0 +1 @@ +6 0.170928 0.488721 0.179283 0.590225 0.371428 0.576442 0.369756 0.479950 diff --git a/datasets/handleImage/label/订单1804388_51_7087485.txt b/datasets/handleImage/label/订单1804388_51_7087485.txt new file mode 100644 index 0000000..1188f61 --- /dev/null +++ b/datasets/handleImage/label/订单1804388_51_7087485.txt @@ -0,0 +1 @@ +6 0.485802 0.414732 0.490819 0.545052 0.764833 0.548815 0.758155 0.410969 diff --git a/datasets/handleImage/label/订单1804391_51_7087435.txt b/datasets/handleImage/label/订单1804391_51_7087435.txt new file mode 100644 index 0000000..c31f9fe --- /dev/null +++ b/datasets/handleImage/label/订单1804391_51_7087435.txt @@ -0,0 +1 @@ +6 0.390953 0.596467 0.387193 0.682933 0.530053 0.677920 0.523787 0.592707 diff --git a/datasets/handleImage/label/订单1804392_51_7087455.txt b/datasets/handleImage/label/订单1804392_51_7087455.txt new file mode 100644 index 0000000..ecfa149 --- /dev/null +++ b/datasets/handleImage/label/订单1804392_51_7087455.txt @@ -0,0 +1 @@ +6 0.638659 0.639150 0.525052 0.674238 0.610260 0.822109 0.727214 0.780752 diff --git a/datasets/handleImage/label/订单1804397_51_7087486.txt b/datasets/handleImage/label/订单1804397_51_7087486.txt new file mode 100644 index 0000000..0912358 --- /dev/null +++ b/datasets/handleImage/label/订单1804397_51_7087486.txt @@ -0,0 +1 @@ +6 0.175846 0.490029 0.272747 0.540146 0.393047 0.416094 0.292799 0.370977 diff --git a/datasets/handleImage/label/订单1804398_51_7087556.txt b/datasets/handleImage/label/订单1804398_51_7087556.txt new file mode 100644 index 0000000..81d045c --- /dev/null +++ b/datasets/handleImage/label/订单1804398_51_7087556.txt @@ -0,0 +1 @@ +6 0.489988 0.436042 0.454907 0.547569 0.753935 0.576389 0.755648 0.456085 diff --git a/datasets/handleImage/label/订单1804400_51_7087530.txt b/datasets/handleImage/label/订单1804400_51_7087530.txt new file mode 100644 index 0000000..a48892a --- /dev/null +++ b/datasets/handleImage/label/订单1804400_51_7087530.txt @@ -0,0 +1 @@ +6 0.419170 0.244355 0.424805 0.367161 0.578003 0.359642 0.564844 0.239342 diff --git a/datasets/handleImage/label/订单1804402_51_7087549.txt b/datasets/handleImage/label/订单1804402_51_7087549.txt new file mode 100644 index 0000000..cd1bf4f --- /dev/null +++ b/datasets/handleImage/label/订单1804402_51_7087549.txt @@ -0,0 +1 @@ +6 0.354622 0.565215 0.426471 0.664209 0.613607 0.585264 0.540078 0.493789 diff --git a/datasets/handleImage/label/订单1804404_51_7088648.txt b/datasets/handleImage/label/订单1804404_51_7088648.txt new file mode 100644 index 0000000..d07d49c --- /dev/null +++ b/datasets/handleImage/label/订单1804404_51_7088648.txt @@ -0,0 +1 @@ +6 0.462074 0.177211 0.447936 0.350022 0.584181 0.412865 0.593824 0.237200 diff --git a/datasets/handleImage/label/订单1804405_51_7087580.txt b/datasets/handleImage/label/订单1804405_51_7087580.txt new file mode 100644 index 0000000..3859200 --- /dev/null +++ b/datasets/handleImage/label/订单1804405_51_7087580.txt @@ -0,0 +1 @@ +6 0.500067 0.526300 0.508403 0.600225 0.678830 0.590200 0.670477 0.515013 diff --git a/datasets/handleImage/label/订单1804409_51_7087612.txt b/datasets/handleImage/label/订单1804409_51_7087612.txt new file mode 100644 index 0000000..c461288 --- /dev/null +++ b/datasets/handleImage/label/订单1804409_51_7087612.txt @@ -0,0 +1 @@ +6 0.346263 0.464961 0.334570 0.596543 0.610260 0.609072 0.630312 0.476240 diff --git a/datasets/handleImage/label/订单1804410_51_7087567.txt b/datasets/handleImage/label/订单1804410_51_7087567.txt new file mode 100644 index 0000000..c8f252c --- /dev/null +++ b/datasets/handleImage/label/订单1804410_51_7087567.txt @@ -0,0 +1 @@ +6 0.319531 0.429883 0.322917 0.533887 0.561810 0.525117 0.551784 0.419854 diff --git a/datasets/handleImage/label/订单1804415_51_7087728.txt b/datasets/handleImage/label/订单1804415_51_7087728.txt new file mode 100644 index 0000000..0fce1e8 --- /dev/null +++ b/datasets/handleImage/label/订单1804415_51_7087728.txt @@ -0,0 +1 @@ +6 0.276094 0.649170 0.389714 0.720605 0.538411 0.599053 0.438164 0.523857 diff --git a/datasets/handleImage/label/订单1804416_51_7087651.txt b/datasets/handleImage/label/订单1804416_51_7087651.txt new file mode 100644 index 0000000..7b1055b --- /dev/null +++ b/datasets/handleImage/label/订单1804416_51_7087651.txt @@ -0,0 +1 @@ +6 0.390764 0.606479 0.415983 0.665376 0.612107 0.647832 0.592489 0.590190 diff --git a/datasets/handleImage/label/订单1804417_51_7087688.txt b/datasets/handleImage/label/订单1804417_51_7087688.txt new file mode 100644 index 0000000..e438b2c --- /dev/null +++ b/datasets/handleImage/label/订单1804417_51_7087688.txt @@ -0,0 +1 @@ +6 0.429805 0.406064 0.421458 0.495039 0.611927 0.515088 0.635326 0.422354 diff --git a/datasets/handleImage/label/订单1805100_51_7094084.txt b/datasets/handleImage/label/订单1805100_51_7094084.txt new file mode 100644 index 0000000..8a005cf --- /dev/null +++ b/datasets/handleImage/label/订单1805100_51_7094084.txt @@ -0,0 +1 @@ +6 0.383711 0.425186 0.369714 0.502617 0.563945 0.526240 0.567448 0.446182 0.383711 0.423877 diff --git a/datasets/handleImage/label/订单1805101_51_7094057.txt b/datasets/handleImage/label/订单1805101_51_7094057.txt new file mode 100644 index 0000000..b1af5b8 --- /dev/null +++ b/datasets/handleImage/label/订单1805101_51_7094057.txt @@ -0,0 +1 @@ +6 0.366211 0.314951 0.367969 0.401562 0.551693 0.397627 0.548190 0.312324 0.369714 0.316260 diff --git a/datasets/handleImage/label/订单1805102_51_7094011.txt b/datasets/handleImage/label/订单1805102_51_7094011.txt new file mode 100644 index 0000000..50d07b7 --- /dev/null +++ b/datasets/handleImage/label/订单1805102_51_7094011.txt @@ -0,0 +1 @@ +6 0.485195 0.430439 0.464206 0.531484 0.674180 0.565605 0.700430 0.469805 0.493945 0.433066 diff --git a/datasets/handleImage/label/订单1805103_51_7093987.txt b/datasets/handleImage/label/订单1805103_51_7093987.txt new file mode 100644 index 0000000..e50d783 --- /dev/null +++ b/datasets/handleImage/label/订单1805103_51_7093987.txt @@ -0,0 +1 @@ +6 0.285615 0.442295 0.292623 0.595840 0.642582 0.584027 0.625082 0.427859 0.282117 0.442295 diff --git a/datasets/handleImage/label/订单1805108_51_7094036.txt b/datasets/handleImage/label/订单1805108_51_7094036.txt new file mode 100644 index 0000000..c4bba9c --- /dev/null +++ b/datasets/handleImage/label/订单1805108_51_7094036.txt @@ -0,0 +1 @@ +6 0.500951 0.448809 0.499206 0.534111 0.681172 0.544609 0.684674 0.463242 0.514948 0.448809 diff --git a/datasets/handleImage/label/订单1805109_51_7094037.txt b/datasets/handleImage/label/订单1805109_51_7094037.txt new file mode 100644 index 0000000..9cc1fc8 --- /dev/null +++ b/datasets/handleImage/label/订单1805109_51_7094037.txt @@ -0,0 +1 @@ +6 0.626940 0.278203 0.569193 0.389756 0.803659 0.461934 0.866654 0.341201 diff --git a/datasets/handleImage/label/订单1805115_51_7094131.txt b/datasets/handleImage/label/订单1805115_51_7094131.txt new file mode 100644 index 0000000..5af7290 --- /dev/null +++ b/datasets/handleImage/label/订单1805115_51_7094131.txt @@ -0,0 +1 @@ +6 0.346871 0.338629 0.338129 0.448871 0.572602 0.455428 0.576096 0.354386 diff --git a/datasets/handleImage/label/订单1805119_51_7094223.txt b/datasets/handleImage/label/订单1805119_51_7094223.txt new file mode 100644 index 0000000..83fe658 --- /dev/null +++ b/datasets/handleImage/label/订单1805119_51_7094223.txt @@ -0,0 +1 @@ +6 0.332973 0.489495 0.315477 0.604980 0.570943 0.624665 0.588443 0.510493 0.329473 0.493432 diff --git a/datasets/handleImage/label/订单1805120_51_7094214.txt b/datasets/handleImage/label/订单1805120_51_7094214.txt new file mode 100644 index 0000000..c893b9a --- /dev/null +++ b/datasets/handleImage/label/订单1805120_51_7094214.txt @@ -0,0 +1 @@ +6 0.471198 0.534111 0.437956 0.618105 0.640938 0.666660 0.675924 0.574795 diff --git a/datasets/handleImage/label/订单1805123_51_7094124.txt b/datasets/handleImage/label/订单1805123_51_7094124.txt new file mode 100644 index 0000000..afb8c2e --- /dev/null +++ b/datasets/handleImage/label/订单1805123_51_7094124.txt @@ -0,0 +1 @@ +6 0.534078 0.351737 0.535828 0.442292 0.752800 0.435729 0.747550 0.346492 diff --git a/datasets/handleImage/label/订单1805124_51_7094151.txt b/datasets/handleImage/label/订单1805124_51_7094151.txt new file mode 100644 index 0000000..812a1e6 --- /dev/null +++ b/datasets/handleImage/label/订单1805124_51_7094151.txt @@ -0,0 +1 @@ +6 0.418693 0.527530 0.425680 0.591840 0.576173 0.589210 0.579667 0.518350 diff --git a/datasets/handleImage/label/订单1805128_51_7094217.txt b/datasets/handleImage/label/订单1805128_51_7094217.txt new file mode 100644 index 0000000..27091de --- /dev/null +++ b/datasets/handleImage/label/订单1805128_51_7094217.txt @@ -0,0 +1 @@ +6 0.332850 0.396358 0.353850 0.629954 0.544578 0.620767 0.541078 0.393733 diff --git a/datasets/handleImage/label/订单1805129_51_7094233.txt b/datasets/handleImage/label/订单1805129_51_7094233.txt new file mode 100644 index 0000000..46ecd95 --- /dev/null +++ b/datasets/handleImage/label/订单1805129_51_7094233.txt @@ -0,0 +1 @@ +6 0.345221 0.552480 0.350469 0.661406 0.576185 0.648281 0.576185 0.543301 diff --git a/datasets/handleImage/label/订单1805131_51_7094253.txt b/datasets/handleImage/label/订单1805131_51_7094253.txt new file mode 100644 index 0000000..fa6e620 --- /dev/null +++ b/datasets/handleImage/label/订单1805131_51_7094253.txt @@ -0,0 +1 @@ +6 0.425716 0.586602 0.443203 0.678467 0.632188 0.654844 0.612930 0.566924 diff --git a/datasets/handleImage/label/订单1805134_51_7094282.txt b/datasets/handleImage/label/订单1805134_51_7094282.txt new file mode 100644 index 0000000..7189045 --- /dev/null +++ b/datasets/handleImage/label/订单1805134_51_7094282.txt @@ -0,0 +1 @@ +6 0.296224 0.412061 0.320716 0.523613 0.569193 0.496055 0.544701 0.387129 diff --git a/datasets/handleImage/label/订单1805137_51_7094244.txt b/datasets/handleImage/label/订单1805137_51_7094244.txt new file mode 100644 index 0000000..9fcf834 --- /dev/null +++ b/datasets/handleImage/label/订单1805137_51_7094244.txt @@ -0,0 +1 @@ +6 0.629424 0.301829 0.614663 0.501309 0.705210 0.517057 0.717021 0.316270 diff --git a/datasets/handleImage/label/订单1805141_51_7094347.txt b/datasets/handleImage/label/订单1805141_51_7094347.txt new file mode 100644 index 0000000..c09bab8 --- /dev/null +++ b/datasets/handleImage/label/订单1805141_51_7094347.txt @@ -0,0 +1 @@ +6 0.168490 0.467178 0.175495 0.556426 0.395964 0.539365 0.388958 0.451436 diff --git a/datasets/handleImage/label/订单1805142_51_7094266.txt b/datasets/handleImage/label/订单1805142_51_7094266.txt new file mode 100644 index 0000000..36edcb5 --- /dev/null +++ b/datasets/handleImage/label/订单1805142_51_7094266.txt @@ -0,0 +1 @@ +6 0.324106 0.305808 0.352100 0.465913 0.698556 0.452788 0.686306 0.290058 0.325856 0.305808 diff --git a/datasets/handleImage/label/订单1805143_51_7094313.txt b/datasets/handleImage/label/订单1805143_51_7094313.txt new file mode 100644 index 0000000..1fa511d --- /dev/null +++ b/datasets/handleImage/label/订单1805143_51_7094313.txt @@ -0,0 +1 @@ +6 0.422729 0.188971 0.420762 0.291335 0.586118 0.299206 0.583164 0.188971 diff --git a/datasets/handleImage/label/订单1805149_51_7094351.txt b/datasets/handleImage/label/订单1805149_51_7094351.txt new file mode 100644 index 0000000..b9b66c5 --- /dev/null +++ b/datasets/handleImage/label/订单1805149_51_7094351.txt @@ -0,0 +1 @@ +6 0.491338 0.416003 0.470334 0.492119 0.652318 0.523616 0.669815 0.450130 diff --git a/datasets/handleImage/label/订单1805151_51_7094416.txt b/datasets/handleImage/label/订单1805151_51_7094416.txt new file mode 100644 index 0000000..07d70db --- /dev/null +++ b/datasets/handleImage/label/订单1805151_51_7094416.txt @@ -0,0 +1 @@ +6 0.338100 0.574838 0.341600 0.692946 0.597067 0.686383 0.595322 0.572213 0.336350 0.576150 diff --git a/datasets/handleImage/label/订单1805155_51_7094474.txt b/datasets/handleImage/label/订单1805155_51_7094474.txt new file mode 100644 index 0000000..86fa128 --- /dev/null +++ b/datasets/handleImage/label/订单1805155_51_7094474.txt @@ -0,0 +1 @@ +6 0.241941 0.416006 0.262343 0.484248 0.542191 0.468501 0.515954 0.393696 0.239024 0.413379 diff --git a/datasets/handleImage/label/订单1805158_51_7094455.txt b/datasets/handleImage/label/订单1805158_51_7094455.txt new file mode 100644 index 0000000..abb1443 --- /dev/null +++ b/datasets/handleImage/label/订单1805158_51_7094455.txt @@ -0,0 +1 @@ +6 0.283971 0.397627 0.278724 0.473740 0.467708 0.475059 0.476458 0.395000 diff --git a/datasets/handleImage/label/订单1805164_51_7094561.txt b/datasets/handleImage/label/订单1805164_51_7094561.txt new file mode 100644 index 0000000..7e81935 --- /dev/null +++ b/datasets/handleImage/label/订单1805164_51_7094561.txt @@ -0,0 +1 @@ +6 0.549948 0.519678 0.560443 0.656162 0.845651 0.644346 0.833411 0.506553 0.546445 0.523613 diff --git a/datasets/handleImage/label/订单1805167_51_7094525.txt b/datasets/handleImage/label/订单1805167_51_7094525.txt new file mode 100644 index 0000000..5cb6e67 --- /dev/null +++ b/datasets/handleImage/label/订单1805167_51_7094525.txt @@ -0,0 +1 @@ +6 0.135128 0.519717 0.163122 0.589271 0.332850 0.551212 0.306606 0.489533 0.136878 0.518404 diff --git a/datasets/handleImage/label/订单1805168_51_7094620.txt b/datasets/handleImage/label/订单1805168_51_7094620.txt new file mode 100644 index 0000000..fda779f --- /dev/null +++ b/datasets/handleImage/label/订单1805168_51_7094620.txt @@ -0,0 +1 @@ +6 0.465933 0.591840 0.451933 0.686320 0.667160 0.703390 0.672400 0.598400 0.465933 0.589210 diff --git a/datasets/handleImage/label/订单1805170_51_7094495.txt b/datasets/handleImage/label/订单1805170_51_7094495.txt new file mode 100644 index 0000000..7e24bd9 --- /dev/null +++ b/datasets/handleImage/label/订单1805170_51_7094495.txt @@ -0,0 +1 @@ +6 0.535920 0.384490 0.528920 0.510470 0.639160 0.513100 0.649653 0.389740 0.539427 0.383180 diff --git a/datasets/handleImage/label/订单1805172_51_7094657.txt b/datasets/handleImage/label/订单1805172_51_7094657.txt new file mode 100644 index 0000000..f028e5a --- /dev/null +++ b/datasets/handleImage/label/订单1805172_51_7094657.txt @@ -0,0 +1 @@ +6 0.418589 0.290058 0.436089 0.564338 0.640811 0.551212 0.618067 0.293996 0.416844 0.290058 diff --git a/datasets/handleImage/label/订单1805175_51_7094553.txt b/datasets/handleImage/label/订单1805175_51_7094553.txt new file mode 100644 index 0000000..4d6650c --- /dev/null +++ b/datasets/handleImage/label/订单1805175_51_7094553.txt @@ -0,0 +1 @@ +6 0.336333 0.421279 0.327577 0.535452 0.612795 0.549885 0.625038 0.429154 0.332833 0.422587 diff --git a/datasets/handleImage/label/订单1805177_51_7095468.txt b/datasets/handleImage/label/订单1805177_51_7095468.txt new file mode 100644 index 0000000..2e7b6d6 --- /dev/null +++ b/datasets/handleImage/label/订单1805177_51_7095468.txt @@ -0,0 +1 @@ +6 0.464193 0.471157 0.460703 0.563020 0.678568 0.564333 0.680312 0.464598 0.460703 0.469843 diff --git a/datasets/handleImage/label/订单1805181_51_7094604.txt b/datasets/handleImage/label/订单1805181_51_7094604.txt new file mode 100644 index 0000000..fe184aa --- /dev/null +++ b/datasets/handleImage/label/订单1805181_51_7094604.txt @@ -0,0 +1 @@ +6 0.375266 0.430435 0.370604 0.492115 0.596705 0.494735 0.585053 0.422560 0.368268 0.430435 diff --git a/datasets/handleImage/label/订单1805182_51_7094646.txt b/datasets/handleImage/label/订单1805182_51_7094646.txt new file mode 100644 index 0000000..5c9c3ad --- /dev/null +++ b/datasets/handleImage/label/订单1805182_51_7094646.txt @@ -0,0 +1 @@ +6 0.418693 0.307060 0.420440 0.393670 0.618160 0.391050 0.616413 0.309680 0.416933 0.305750 diff --git a/datasets/handleImage/label/订单1805187_51_7094690.txt b/datasets/handleImage/label/订单1805187_51_7094690.txt new file mode 100644 index 0000000..5618f31 --- /dev/null +++ b/datasets/handleImage/label/订单1805187_51_7094690.txt @@ -0,0 +1 @@ +6 0.397708 0.442246 0.397708 0.543301 0.618190 0.543301 0.626940 0.444873 diff --git a/datasets/handleImage/label/订单1805191_51_7094738.txt b/datasets/handleImage/label/订单1805191_51_7094738.txt new file mode 100644 index 0000000..c40feca --- /dev/null +++ b/datasets/handleImage/label/订单1805191_51_7094738.txt @@ -0,0 +1 @@ +6 0.334727 0.457998 0.341719 0.607598 0.640938 0.601045 0.637435 0.446182 0.332969 0.457998 diff --git a/datasets/handleImage/label/订单1805193_51_7094789.txt b/datasets/handleImage/label/订单1805193_51_7094789.txt new file mode 100644 index 0000000..21537b8 --- /dev/null +++ b/datasets/handleImage/label/订单1805193_51_7094789.txt @@ -0,0 +1 @@ +6 0.416933 0.560340 0.395933 0.646950 0.623413 0.669260 0.633907 0.578710 0.418693 0.559030 diff --git a/datasets/handleImage/label/订单1805202_51_7094824.txt b/datasets/handleImage/label/订单1805202_51_7094824.txt new file mode 100644 index 0000000..ee5c7c1 --- /dev/null +++ b/datasets/handleImage/label/订单1805202_51_7094824.txt @@ -0,0 +1 @@ +6 0.427321 0.433087 0.404564 0.538077 0.658282 0.553817 0.674038 0.446212 0.430821 0.431769 diff --git a/datasets/handleImage/label/订单1805204_51_7094885.txt b/datasets/handleImage/label/订单1805204_51_7094885.txt new file mode 100644 index 0000000..3be4674 --- /dev/null +++ b/datasets/handleImage/label/订单1805204_51_7094885.txt @@ -0,0 +1 @@ +6 0.271707 0.514410 0.289200 0.591840 0.448427 0.568210 0.425680 0.494720 0.262960 0.517030 diff --git a/datasets/handleImage/label/订单1805205_51_7094952.txt b/datasets/handleImage/label/订单1805205_51_7094952.txt new file mode 100644 index 0000000..c627d09 --- /dev/null +++ b/datasets/handleImage/label/订单1805205_51_7094952.txt @@ -0,0 +1 @@ +6 0.240980 0.421294 0.228732 0.549902 0.545451 0.576147 0.552444 0.444912 0.240980 0.419980 diff --git a/datasets/handleImage/label/订单1805207_51_7094908.txt b/datasets/handleImage/label/订单1805207_51_7094908.txt new file mode 100644 index 0000000..2954ce8 --- /dev/null +++ b/datasets/handleImage/label/订单1805207_51_7094908.txt @@ -0,0 +1 @@ +6 0.502539 0.452784 0.511250 0.536775 0.722148 0.523657 0.709948 0.437039 0.504271 0.451471 diff --git a/datasets/handleImage/label/订单1805208_51_7094957.txt b/datasets/handleImage/label/订单1805208_51_7094957.txt new file mode 100644 index 0000000..67ba210 --- /dev/null +++ b/datasets/handleImage/label/订单1805208_51_7094957.txt @@ -0,0 +1 @@ +6 0.401961 0.468539 0.398471 0.552529 0.601438 0.557775 0.594444 0.472471 0.400222 0.465912 diff --git a/datasets/handleImage/label/订单1805212_51_7094977.txt b/datasets/handleImage/label/订单1805212_51_7094977.txt new file mode 100644 index 0000000..e1d608b --- /dev/null +++ b/datasets/handleImage/label/订单1805212_51_7094977.txt @@ -0,0 +1 @@ +6 0.399344 0.435729 0.392344 0.523654 0.621567 0.524967 0.616317 0.429167 0.394094 0.437042 diff --git a/datasets/handleImage/label/订单1805213_51_7094911.txt b/datasets/handleImage/label/订单1805213_51_7094911.txt new file mode 100644 index 0000000..e6e6a84 --- /dev/null +++ b/datasets/handleImage/label/订单1805213_51_7094911.txt @@ -0,0 +1 @@ +6 0.254090 0.358279 0.164846 0.475077 0.441321 0.584000 0.506051 0.469827 0.257590 0.359596 diff --git a/datasets/handleImage/label/订单1805217_51_7095036.txt b/datasets/handleImage/label/订单1805217_51_7095036.txt new file mode 100644 index 0000000..fb63aca --- /dev/null +++ b/datasets/handleImage/label/订单1805217_51_7095036.txt @@ -0,0 +1 @@ +6 0.553322 0.329429 0.551572 0.485596 0.667061 0.485596 0.674061 0.333367 0.544578 0.329429 diff --git a/datasets/handleImage/label/订单1805223_51_7095092.txt b/datasets/handleImage/label/订单1805223_51_7095092.txt new file mode 100644 index 0000000..9cf234e --- /dev/null +++ b/datasets/handleImage/label/订单1805223_51_7095092.txt @@ -0,0 +1 @@ +6 0.514838 0.532847 0.502581 0.649644 0.756308 0.661450 0.772049 0.547283 0.509583 0.532847 diff --git a/datasets/handleImage/label/订单1805233_51_7095227.txt b/datasets/handleImage/label/订单1805233_51_7095227.txt new file mode 100644 index 0000000..717bd85 --- /dev/null +++ b/datasets/handleImage/label/订单1805233_51_7095227.txt @@ -0,0 +1 @@ +6 0.297105 0.488183 0.309354 0.606298 0.571822 0.599732 0.563080 0.480311 0.295363 0.484247 diff --git a/datasets/handleImage/label/订单1805234_51_7095307.txt b/datasets/handleImage/label/订单1805234_51_7095307.txt new file mode 100644 index 0000000..51a34fb --- /dev/null +++ b/datasets/handleImage/label/订单1805234_51_7095307.txt @@ -0,0 +1 @@ +6 0.376719 0.616787 0.348724 0.716523 0.590195 0.734902 0.593685 0.635166 0.373216 0.612852 diff --git a/datasets/handleImage/label/订单1805236_51_7095224.txt b/datasets/handleImage/label/订单1805236_51_7095224.txt new file mode 100644 index 0000000..c4e7ec1 --- /dev/null +++ b/datasets/handleImage/label/订单1805236_51_7095224.txt @@ -0,0 +1 @@ +6 0.318971 0.532803 0.304974 0.631221 0.539440 0.636475 0.541198 0.536738 0.317227 0.530176 diff --git a/datasets/handleImage/label/订单1805239_51_7095196.txt b/datasets/handleImage/label/订单1805239_51_7095196.txt new file mode 100644 index 0000000..bf206f3 --- /dev/null +++ b/datasets/handleImage/label/订单1805239_51_7095196.txt @@ -0,0 +1 @@ +6 0.511427 0.456670 0.399440 0.493410 0.481680 0.628580 0.590160 0.586590 0.513173 0.457980 diff --git a/datasets/handleImage/label/订单1805247_51_7095293.txt b/datasets/handleImage/label/订单1805247_51_7095293.txt new file mode 100644 index 0000000..b9a373d --- /dev/null +++ b/datasets/handleImage/label/订单1805247_51_7095293.txt @@ -0,0 +1 @@ +6 0.437933 0.426480 0.436187 0.535410 0.679400 0.544590 0.684653 0.431730 0.437933 0.425170 diff --git a/datasets/handleImage/label/订单1805252_51_7095412.txt b/datasets/handleImage/label/订单1805252_51_7095412.txt new file mode 100644 index 0000000..88cab6b --- /dev/null +++ b/datasets/handleImage/label/订单1805252_51_7095412.txt @@ -0,0 +1 @@ +6 0.350380 0.345197 0.339883 0.444934 0.586594 0.451491 0.584854 0.354386 0.346871 0.347818 diff --git a/datasets/handleImage/label/订单1805256_51_7095403.txt b/datasets/handleImage/label/订单1805256_51_7095403.txt new file mode 100644 index 0000000..9f76100 --- /dev/null +++ b/datasets/handleImage/label/订单1805256_51_7095403.txt @@ -0,0 +1 @@ +6 0.450089 0.398983 0.446589 0.544654 0.562072 0.547275 0.565572 0.397671 0.450089 0.400296 diff --git a/datasets/handleImage/label/订单1805261_51_7095495.txt b/datasets/handleImage/label/订单1805261_51_7095495.txt new file mode 100644 index 0000000..7aedfa4 --- /dev/null +++ b/datasets/handleImage/label/订单1805261_51_7095495.txt @@ -0,0 +1 @@ +6 0.594567 0.397638 0.554325 0.473746 0.727555 0.528867 0.771303 0.450130 0.594567 0.398945 diff --git a/datasets/handleImage/label/订单1805262_51_7095487.txt b/datasets/handleImage/label/订单1805262_51_7095487.txt new file mode 100644 index 0000000..086bedd --- /dev/null +++ b/datasets/handleImage/label/订单1805262_51_7095487.txt @@ -0,0 +1 @@ +6 0.374961 0.333320 0.341719 0.452744 0.646185 0.490801 0.665430 0.358262 0.380221 0.330703 diff --git a/datasets/handleImage/label/订单1805265_51_7095449.txt b/datasets/handleImage/label/订单1805265_51_7095449.txt new file mode 100644 index 0000000..bdb9fdf --- /dev/null +++ b/datasets/handleImage/label/订单1805265_51_7095449.txt @@ -0,0 +1 @@ +6 0.277821 0.543295 0.283628 0.628595 0.582677 0.623345 0.573971 0.539355 0.269115 0.541980 diff --git a/datasets/handleImage/label/订单1805271_51_7095498.txt b/datasets/handleImage/label/订单1805271_51_7095498.txt new file mode 100644 index 0000000..163efbd --- /dev/null +++ b/datasets/handleImage/label/订单1805271_51_7095498.txt @@ -0,0 +1 @@ +6 0.192846 0.459337 0.187603 0.573510 0.478064 0.569567 0.469308 0.451462 0.192846 0.455394 diff --git a/datasets/handleImage/label/订单1805274_51_7095554.txt b/datasets/handleImage/label/订单1805274_51_7095554.txt new file mode 100644 index 0000000..5ec0119 --- /dev/null +++ b/datasets/handleImage/label/订单1805274_51_7095554.txt @@ -0,0 +1 @@ +6 0.241960 0.185010 0.226213 0.438290 0.749400 0.459290 0.770387 0.199450 0.243707 0.186320 diff --git a/datasets/handleImage/label/订单1805275_51_7095581.txt b/datasets/handleImage/label/订单1805275_51_7095581.txt new file mode 100644 index 0000000..05d5f60 --- /dev/null +++ b/datasets/handleImage/label/订单1805275_51_7095581.txt @@ -0,0 +1 @@ +6 0.189372 0.566963 0.215617 0.689008 0.500833 0.657512 0.483333 0.530217 0.184122 0.569588 diff --git a/datasets/handleImage/label/订单1805276_51_7095550.txt b/datasets/handleImage/label/订单1805276_51_7095550.txt new file mode 100644 index 0000000..52346ef --- /dev/null +++ b/datasets/handleImage/label/订单1805276_51_7095550.txt @@ -0,0 +1 @@ +6 0.282227 0.656162 0.292721 0.749336 0.479948 0.733584 0.462461 0.637783 0.282227 0.656162 diff --git a/datasets/handleImage/label/订单1805278_51_7095545.txt b/datasets/handleImage/label/订单1805278_51_7095545.txt new file mode 100644 index 0000000..077096c --- /dev/null +++ b/datasets/handleImage/label/订单1805278_51_7095545.txt @@ -0,0 +1 @@ +6 0.404693 0.471100 0.420440 0.557720 0.619907 0.538030 0.602413 0.447480 0.399440 0.471100 diff --git a/datasets/handleImage/label/订单1805279_51_7095633.txt b/datasets/handleImage/label/订单1805279_51_7095633.txt new file mode 100644 index 0000000..f56a2aa --- /dev/null +++ b/datasets/handleImage/label/订单1805279_51_7095633.txt @@ -0,0 +1 @@ +6 0.320564 0.460630 0.332979 0.561683 0.555210 0.543307 0.544711 0.446191 0.315315 0.461939 diff --git a/datasets/handleImage/label/订单1805280_51_7095784.txt b/datasets/handleImage/label/订单1805280_51_7095784.txt new file mode 100644 index 0000000..c99fab2 --- /dev/null +++ b/datasets/handleImage/label/订单1805280_51_7095784.txt @@ -0,0 +1 @@ +6 0.331224 0.342510 0.327721 0.437002 0.520195 0.443564 0.535951 0.349072 0.329466 0.341201 diff --git a/datasets/handleImage/label/订单1805281_51_7095710.txt b/datasets/handleImage/label/订单1805281_51_7095710.txt new file mode 100644 index 0000000..02e53e2 --- /dev/null +++ b/datasets/handleImage/label/订单1805281_51_7095710.txt @@ -0,0 +1 @@ +6 0.563822 0.443604 0.572572 0.627329 0.724806 0.622079 0.721306 0.438354 0.562072 0.443604 diff --git a/datasets/handleImage/label/订单1805282_51_7095637.txt b/datasets/handleImage/label/订单1805282_51_7095637.txt new file mode 100644 index 0000000..892109c --- /dev/null +++ b/datasets/handleImage/label/订单1805282_51_7095637.txt @@ -0,0 +1 @@ +6 0.471198 0.513115 0.472956 0.598418 0.668932 0.598418 0.670677 0.511807 0.467708 0.510488 diff --git a/datasets/handleImage/label/订单1805286_51_7095666.txt b/datasets/handleImage/label/订单1805286_51_7095666.txt new file mode 100644 index 0000000..306f828 --- /dev/null +++ b/datasets/handleImage/label/订单1805286_51_7095666.txt @@ -0,0 +1 @@ +6 0.329350 0.540717 0.357350 0.622079 0.549828 0.580083 0.520078 0.497408 0.327606 0.540717 diff --git a/datasets/handleImage/label/订单1805288_51_7095735.txt b/datasets/handleImage/label/订单1805288_51_7095735.txt new file mode 100644 index 0000000..e3909a9 --- /dev/null +++ b/datasets/handleImage/label/订单1805288_51_7095735.txt @@ -0,0 +1 @@ +6 0.278724 0.430439 0.285729 0.534111 0.537695 0.518359 0.521953 0.412061 0.278724 0.429121 diff --git a/datasets/handleImage/label/订单1805291_51_7095845.txt b/datasets/handleImage/label/订单1805291_51_7095845.txt new file mode 100644 index 0000000..71700b9 --- /dev/null +++ b/datasets/handleImage/label/订单1805291_51_7095845.txt @@ -0,0 +1 @@ +6 0.416933 0.523600 0.418693 0.685010 0.796640 0.678450 0.768640 0.515720 0.416933 0.523600 diff --git a/datasets/handleImage/label/订单1805294_51_7095817.txt b/datasets/handleImage/label/订单1805294_51_7095817.txt new file mode 100644 index 0000000..6c2c7ec --- /dev/null +++ b/datasets/handleImage/label/订单1805294_51_7095817.txt @@ -0,0 +1 @@ +6 0.397594 0.308433 0.374844 0.395046 0.577822 0.430479 0.602317 0.335992 0.406344 0.305808 diff --git a/datasets/handleImage/label/订单1805296_51_7095785.txt b/datasets/handleImage/label/订单1805296_51_7095785.txt new file mode 100644 index 0000000..5e38045 --- /dev/null +++ b/datasets/handleImage/label/订单1805296_51_7095785.txt @@ -0,0 +1 @@ +6 0.453711 0.447500 0.444961 0.532803 0.644427 0.545918 0.646185 0.454062 0.457201 0.448809 diff --git a/datasets/handleImage/label/订单1805302_51_7095822.txt b/datasets/handleImage/label/订单1805302_51_7095822.txt new file mode 100644 index 0000000..ce83f94 --- /dev/null +++ b/datasets/handleImage/label/订单1805302_51_7095822.txt @@ -0,0 +1 @@ +6 0.482584 0.536739 0.505329 0.633858 0.727555 0.606298 0.710058 0.505242 0.482584 0.536739 diff --git a/datasets/handleImage/label/订单1805310_51_7095913.txt b/datasets/handleImage/label/订单1805310_51_7095913.txt new file mode 100644 index 0000000..823807d --- /dev/null +++ b/datasets/handleImage/label/订单1805310_51_7095913.txt @@ -0,0 +1 @@ +6 0.407216 0.505284 0.403712 0.582706 0.585699 0.581392 0.583948 0.500029 0.401961 0.505284 diff --git a/datasets/handleImage/label/订单1805311_51_7095915.txt b/datasets/handleImage/label/订单1805311_51_7095915.txt new file mode 100644 index 0000000..945e3a2 --- /dev/null +++ b/datasets/handleImage/label/订单1805311_51_7095915.txt @@ -0,0 +1 @@ +6 0.345221 0.518359 0.359219 0.619414 0.593685 0.611543 0.588438 0.503926 0.348724 0.513115 diff --git a/datasets/handleImage/label/订单1805314_51_7096010.txt b/datasets/handleImage/label/订单1805314_51_7096010.txt new file mode 100644 index 0000000..a7be89a --- /dev/null +++ b/datasets/handleImage/label/订单1805314_51_7096010.txt @@ -0,0 +1 @@ +6 0.229740 0.187656 0.185990 0.343818 0.306719 0.364824 0.357474 0.200781 0.227982 0.186338 diff --git a/datasets/handleImage/label/订单1805315_51_7095969.txt b/datasets/handleImage/label/订单1805315_51_7095969.txt new file mode 100644 index 0000000..3e2236f --- /dev/null +++ b/datasets/handleImage/label/订单1805315_51_7095969.txt @@ -0,0 +1 @@ +6 0.439714 0.465869 0.420456 0.565605 0.677682 0.590537 0.675924 0.478994 0.443203 0.464561 diff --git a/datasets/handleImage/label/订单1805316_51_7096200.txt b/datasets/handleImage/label/订单1805316_51_7096200.txt new file mode 100644 index 0000000..67b75e6 --- /dev/null +++ b/datasets/handleImage/label/订单1805316_51_7096200.txt @@ -0,0 +1 @@ +6 0.220960 0.421230 0.226213 0.541970 0.506173 0.534090 0.488680 0.419920 0.224467 0.418610 diff --git a/datasets/handleImage/label/订单1805323_51_7096066.txt b/datasets/handleImage/label/订单1805323_51_7096066.txt new file mode 100644 index 0000000..16691a0 --- /dev/null +++ b/datasets/handleImage/label/订单1805323_51_7096066.txt @@ -0,0 +1 @@ +6 0.086250 0.127285 0.088008 0.380566 0.682930 0.377939 0.668932 0.118105 0.084505 0.128604 diff --git a/datasets/handleImage/label/订单1805326_51_7096106.txt b/datasets/handleImage/label/订单1805326_51_7096106.txt new file mode 100644 index 0000000..a3aff05 --- /dev/null +++ b/datasets/handleImage/label/订单1805326_51_7096106.txt @@ -0,0 +1 @@ +6 0.483451 0.506553 0.488698 0.620723 0.744167 0.610225 0.733672 0.497363 0.483451 0.505244 diff --git a/datasets/handleImage/label/订单1805334_51_7096252.txt b/datasets/handleImage/label/订单1805334_51_7096252.txt new file mode 100644 index 0000000..20fa4bb --- /dev/null +++ b/datasets/handleImage/label/订单1805334_51_7096252.txt @@ -0,0 +1 @@ +6 0.378448 0.444853 0.364444 0.547218 0.633905 0.557721 0.635654 0.454044 0.373186 0.443542 diff --git a/datasets/handleImage/label/订单1805335_51_7096152.txt b/datasets/handleImage/label/订单1805335_51_7096152.txt new file mode 100644 index 0000000..73b0cc4 --- /dev/null +++ b/datasets/handleImage/label/订单1805335_51_7096152.txt @@ -0,0 +1 @@ +6 0.340719 0.564333 0.335477 0.666696 0.566444 0.669324 0.564693 0.566961 0.344222 0.561716 diff --git a/datasets/handleImage/label/订单1805337_51_7097483.txt b/datasets/handleImage/label/订单1805337_51_7097483.txt new file mode 100644 index 0000000..70414d0 --- /dev/null +++ b/datasets/handleImage/label/订单1805337_51_7097483.txt @@ -0,0 +1 @@ +6 0.324106 0.321554 0.311856 0.440979 0.598817 0.452788 0.602317 0.330742 0.320606 0.320242 diff --git a/datasets/handleImage/label/订单1805340_51_7096134.txt b/datasets/handleImage/label/订单1805340_51_7096134.txt new file mode 100644 index 0000000..b22e858 --- /dev/null +++ b/datasets/handleImage/label/订单1805340_51_7096134.txt @@ -0,0 +1 @@ +6 0.420456 0.414687 0.390716 0.489492 0.569193 0.520986 0.588438 0.442246 diff --git a/datasets/handleImage/label/订单1805341_51_7096228.txt b/datasets/handleImage/label/订单1805341_51_7096228.txt new file mode 100644 index 0000000..d5f8a3b --- /dev/null +++ b/datasets/handleImage/label/订单1805341_51_7096228.txt @@ -0,0 +1 @@ +6 0.476333 0.458037 0.411594 0.556462 0.646061 0.641767 0.709056 0.534154 0.478083 0.455412 diff --git a/datasets/handleImage/label/订单1805343_51_7096175.txt b/datasets/handleImage/label/订单1805343_51_7096175.txt new file mode 100644 index 0000000..4a3f4b8 --- /dev/null +++ b/datasets/handleImage/label/订单1805343_51_7096175.txt @@ -0,0 +1 @@ +6 0.289014 0.486865 0.307664 0.607600 0.671297 0.597100 0.664298 0.475050 0.286687 0.486865 diff --git a/datasets/handleImage/label/订单1805344_51_7096452.txt b/datasets/handleImage/label/订单1805344_51_7096452.txt new file mode 100644 index 0000000..6a496c6 --- /dev/null +++ b/datasets/handleImage/label/订单1805344_51_7096452.txt @@ -0,0 +1 @@ +6 0.096946 0.418633 0.127458 0.608919 0.381396 0.560365 0.357773 0.377949 0.098916 0.417321 diff --git a/datasets/handleImage/label/订单1805345_51_7096249.txt b/datasets/handleImage/label/订单1805345_51_7096249.txt new file mode 100644 index 0000000..7be66fd --- /dev/null +++ b/datasets/handleImage/label/订单1805345_51_7096249.txt @@ -0,0 +1 @@ +6 0.354719 0.435725 0.323229 0.521029 0.522706 0.553833 0.547203 0.468539 0.352967 0.435725 diff --git a/datasets/handleImage/label/订单1805348_51_7096292.txt b/datasets/handleImage/label/订单1805348_51_7096292.txt new file mode 100644 index 0000000..0a50861 --- /dev/null +++ b/datasets/handleImage/label/订单1805348_51_7096292.txt @@ -0,0 +1 @@ +6 0.444961 0.485557 0.437956 0.581357 0.663685 0.585293 0.667174 0.486865 0.443203 0.489492 diff --git a/datasets/handleImage/label/订单1805350_51_7096333.txt b/datasets/handleImage/label/订单1805350_51_7096333.txt new file mode 100644 index 0000000..35d0176 --- /dev/null +++ b/datasets/handleImage/label/订单1805350_51_7096333.txt @@ -0,0 +1 @@ +6 0.404714 0.492119 0.409961 0.619414 0.688177 0.602354 0.679427 0.476367 0.411706 0.488184 diff --git a/datasets/handleImage/label/订单1805351_51_7096392.txt b/datasets/handleImage/label/订单1805351_51_7096392.txt new file mode 100644 index 0000000..7ecdd38 --- /dev/null +++ b/datasets/handleImage/label/订单1805351_51_7096392.txt @@ -0,0 +1 @@ +6 0.349794 0.383198 0.355629 0.455376 0.626725 0.450127 0.615065 0.372700 0.352711 0.383198 diff --git a/datasets/handleImage/label/订单1805355_51_7096586.txt b/datasets/handleImage/label/订单1805355_51_7096586.txt new file mode 100644 index 0000000..31612e8 --- /dev/null +++ b/datasets/handleImage/label/订单1805355_51_7096586.txt @@ -0,0 +1 @@ +6 0.359200 0.590520 0.380187 0.671890 0.558667 0.643020 0.541173 0.557720 0.359200 0.590520 diff --git a/datasets/handleImage/label/订单1805358_51_7096443.txt b/datasets/handleImage/label/订单1805358_51_7096443.txt new file mode 100644 index 0000000..23cdd68 --- /dev/null +++ b/datasets/handleImage/label/订单1805358_51_7096443.txt @@ -0,0 +1 @@ +6 0.544362 0.484284 0.509505 0.565647 0.690768 0.612892 0.730859 0.523657 0.544362 0.485598 diff --git a/datasets/handleImage/label/订单1805362_51_7096361.txt b/datasets/handleImage/label/订单1805362_51_7096361.txt new file mode 100644 index 0000000..b528f53 --- /dev/null +++ b/datasets/handleImage/label/订单1805362_51_7096361.txt @@ -0,0 +1 @@ +6 0.295762 0.230964 0.323320 0.464564 0.430605 0.447500 0.407969 0.213906 0.296748 0.232279 diff --git a/datasets/handleImage/label/订单1805363_51_7096360.txt b/datasets/handleImage/label/订单1805363_51_7096360.txt new file mode 100644 index 0000000..970399a --- /dev/null +++ b/datasets/handleImage/label/订单1805363_51_7096360.txt @@ -0,0 +1 @@ +6 0.493945 0.471123 0.497448 0.572168 0.723177 0.566924 0.719674 0.464561 0.495703 0.472432 diff --git a/datasets/handleImage/label/订单1805367_51_7096539.txt b/datasets/handleImage/label/订单1805367_51_7096539.txt new file mode 100644 index 0000000..c1c6747 --- /dev/null +++ b/datasets/handleImage/label/订单1805367_51_7096539.txt @@ -0,0 +1 @@ +6 0.408225 0.565610 0.399748 0.637793 0.653834 0.640415 0.656660 0.565610 0.408225 0.562988 diff --git a/datasets/handleImage/label/订单1805370_51_7096533.txt b/datasets/handleImage/label/订单1805370_51_7096533.txt new file mode 100644 index 0000000..a3dced1 --- /dev/null +++ b/datasets/handleImage/label/订单1805370_51_7096533.txt @@ -0,0 +1 @@ +6 0.271732 0.244082 0.182487 0.330703 0.383711 0.434375 0.467708 0.339883 0.276979 0.244082 diff --git a/datasets/handleImage/label/订单1805373_51_7096473.txt b/datasets/handleImage/label/订单1805373_51_7096473.txt new file mode 100644 index 0000000..1b22af8 --- /dev/null +++ b/datasets/handleImage/label/订单1805373_51_7096473.txt @@ -0,0 +1 @@ +6 0.213984 0.416006 0.212240 0.524922 0.458958 0.518359 0.457201 0.406816 0.213984 0.417314 diff --git a/datasets/handleImage/label/订单1805375_51_7096482.txt b/datasets/handleImage/label/订单1805375_51_7096482.txt new file mode 100644 index 0000000..3c104d5 --- /dev/null +++ b/datasets/handleImage/label/订单1805375_51_7096482.txt @@ -0,0 +1 @@ +6 0.345221 0.422559 0.346966 0.493428 0.495703 0.486865 0.490456 0.416006 0.341719 0.418623 diff --git a/datasets/handleImage/label/订单1805376_51_7096538.txt b/datasets/handleImage/label/订单1805376_51_7096538.txt new file mode 100644 index 0000000..9afc605 --- /dev/null +++ b/datasets/handleImage/label/订单1805376_51_7096538.txt @@ -0,0 +1 @@ +6 0.693424 0.355635 0.689922 0.493428 0.801914 0.490801 0.810664 0.358262 0.695182 0.356943 diff --git a/datasets/handleImage/label/订单1805377_51_7096582.txt b/datasets/handleImage/label/订单1805377_51_7096582.txt new file mode 100644 index 0000000..17fa9ba --- /dev/null +++ b/datasets/handleImage/label/订单1805377_51_7096582.txt @@ -0,0 +1 @@ +6 0.666866 0.320255 0.578281 0.500046 0.662925 0.574850 0.755451 0.396377 0.667847 0.320255 diff --git a/datasets/handleImage/label/订单1805381_51_7096578.txt b/datasets/handleImage/label/订单1805381_51_7096578.txt new file mode 100644 index 0000000..4695db8 --- /dev/null +++ b/datasets/handleImage/label/订单1805381_51_7096578.txt @@ -0,0 +1 @@ +6 0.415208 0.515742 0.427461 0.629912 0.674180 0.612852 0.649687 0.494746 0.416966 0.513115 diff --git a/datasets/handleImage/label/订单1805382_51_7096625.txt b/datasets/handleImage/label/订单1805382_51_7096625.txt new file mode 100644 index 0000000..98eceab --- /dev/null +++ b/datasets/handleImage/label/订单1805382_51_7096625.txt @@ -0,0 +1 @@ +6 0.383600 0.346493 0.387095 0.427856 0.572581 0.421293 0.569074 0.332057 0.383600 0.341241 diff --git a/datasets/handleImage/label/订单1805383_51_7096566.txt b/datasets/handleImage/label/订单1805383_51_7096566.txt new file mode 100644 index 0000000..b339edc --- /dev/null +++ b/datasets/handleImage/label/订单1805383_51_7096566.txt @@ -0,0 +1 @@ +6 0.402847 0.242821 0.369606 0.359618 0.644317 0.380616 0.672315 0.252005 0.402847 0.242821 diff --git a/datasets/handleImage/label/订单1805385_51_7096707.txt b/datasets/handleImage/label/订单1805385_51_7096707.txt new file mode 100644 index 0000000..7dee4af --- /dev/null +++ b/datasets/handleImage/label/订单1805385_51_7096707.txt @@ -0,0 +1 @@ +6 0.528210 0.296582 0.480964 0.426504 0.711934 0.506556 0.753932 0.370072 0.530833 0.295267 diff --git a/datasets/handleImage/label/订单1805387_51_7096626.txt b/datasets/handleImage/label/订单1805387_51_7096626.txt new file mode 100644 index 0000000..25fe8da --- /dev/null +++ b/datasets/handleImage/label/订单1805387_51_7096626.txt @@ -0,0 +1 @@ +6 0.558560 0.494746 0.558560 0.599733 0.696353 0.602357 0.689463 0.490807 0.558560 0.496055 diff --git a/datasets/handleImage/label/订单1805395_51_7096699.txt b/datasets/handleImage/label/订单1805395_51_7096699.txt new file mode 100644 index 0000000..bbe5315 --- /dev/null +++ b/datasets/handleImage/label/订单1805395_51_7096699.txt @@ -0,0 +1 @@ +6 0.404594 0.442292 0.411594 0.507908 0.570822 0.497408 0.556822 0.429167 0.404594 0.440979 diff --git a/datasets/handleImage/label/订单1805397_51_7096898.txt b/datasets/handleImage/label/订单1805397_51_7096898.txt new file mode 100644 index 0000000..e82880a --- /dev/null +++ b/datasets/handleImage/label/订单1805397_51_7096898.txt @@ -0,0 +1 @@ +6 0.313724 0.384502 0.362721 0.509180 0.633932 0.448809 0.581445 0.317578 0.311979 0.383193 diff --git a/datasets/handleImage/label/订单1805398_51_7096786.txt b/datasets/handleImage/label/订单1805398_51_7096786.txt new file mode 100644 index 0000000..588db35 --- /dev/null +++ b/datasets/handleImage/label/订单1805398_51_7096786.txt @@ -0,0 +1 @@ +6 0.394094 0.451475 0.306606 0.581396 0.427339 0.626017 0.511328 0.501346 0.397594 0.452788 diff --git a/datasets/handleImage/label/订单1805400_51_7096752.txt b/datasets/handleImage/label/订单1805400_51_7096752.txt new file mode 100644 index 0000000..6cfc851 --- /dev/null +++ b/datasets/handleImage/label/订单1805400_51_7096752.txt @@ -0,0 +1 @@ +6 0.247987 0.423912 0.253229 0.518402 0.480706 0.510529 0.464954 0.409480 0.244484 0.421294 diff --git a/datasets/handleImage/label/订单1805404_51_7096839.txt b/datasets/handleImage/label/订单1805404_51_7096839.txt new file mode 100644 index 0000000..23c3c43 --- /dev/null +++ b/datasets/handleImage/label/订单1805404_51_7096839.txt @@ -0,0 +1 @@ +6 0.241861 0.317617 0.245361 0.515779 0.707306 0.517092 0.702056 0.311058 0.243611 0.316304 diff --git a/datasets/handleImage/label/订单1805408_51_7096821.txt b/datasets/handleImage/label/订单1805408_51_7096821.txt new file mode 100644 index 0000000..fc0317c --- /dev/null +++ b/datasets/handleImage/label/订单1805408_51_7096821.txt @@ -0,0 +1 @@ +6 0.285665 0.180449 0.234907 0.272313 0.437939 0.341864 0.493949 0.247378 0.283910 0.179133 diff --git a/datasets/handleImage/label/订单1805409_51_7096823.txt b/datasets/handleImage/label/订单1805409_51_7096823.txt new file mode 100644 index 0000000..13f0277 --- /dev/null +++ b/datasets/handleImage/label/订单1805409_51_7096823.txt @@ -0,0 +1 @@ +6 0.266484 0.410752 0.255977 0.552480 0.583190 0.556426 0.577943 0.409443 0.268229 0.409443 diff --git a/datasets/handleImage/label/订单1805410_51_7096872.txt b/datasets/handleImage/label/订单1805410_51_7096872.txt new file mode 100644 index 0000000..d7c4967 --- /dev/null +++ b/datasets/handleImage/label/订单1805410_51_7096872.txt @@ -0,0 +1 @@ +6 0.424712 0.299224 0.425697 0.416019 0.611721 0.401583 0.602861 0.282160 0.425697 0.297910 diff --git a/datasets/handleImage/label/订单1805413_51_7096930.txt b/datasets/handleImage/label/订单1805413_51_7096930.txt new file mode 100644 index 0000000..f05b1a8 --- /dev/null +++ b/datasets/handleImage/label/订单1805413_51_7096930.txt @@ -0,0 +1 @@ +6 0.266453 0.454040 0.269960 0.568210 0.569173 0.557720 0.544667 0.435670 0.262960 0.452730 diff --git a/datasets/handleImage/label/订单1805415_51_7096961.txt b/datasets/handleImage/label/订单1805415_51_7096961.txt new file mode 100644 index 0000000..2d068d4 --- /dev/null +++ b/datasets/handleImage/label/订单1805415_51_7096961.txt @@ -0,0 +1 @@ +6 0.476458 0.497363 0.460703 0.597100 0.740664 0.604980 0.730169 0.493428 0.479948 0.498682 diff --git a/datasets/handleImage/label/订单1805416_51_7096938.txt b/datasets/handleImage/label/订单1805416_51_7096938.txt new file mode 100644 index 0000000..a6ec23f --- /dev/null +++ b/datasets/handleImage/label/订单1805416_51_7096938.txt @@ -0,0 +1 @@ +6 0.374961 0.498682 0.380221 0.573486 0.567448 0.562979 0.560443 0.485557 0.380221 0.498682 diff --git a/datasets/handleImage/label/订单1805417_51_7096975.txt b/datasets/handleImage/label/订单1805417_51_7096975.txt new file mode 100644 index 0000000..ef142ab --- /dev/null +++ b/datasets/handleImage/label/订单1805417_51_7096975.txt @@ -0,0 +1 @@ +6 0.425680 0.398920 0.397693 0.493410 0.619907 0.535410 0.651413 0.431730 0.425680 0.397610 diff --git a/datasets/handleImage/label/订单1805419_51_7097018.txt b/datasets/handleImage/label/订单1805419_51_7097018.txt new file mode 100644 index 0000000..48569a9 --- /dev/null +++ b/datasets/handleImage/label/订单1805419_51_7097018.txt @@ -0,0 +1 @@ +6 0.143859 0.444894 0.142103 0.555135 0.416821 0.547260 0.397577 0.438337 0.145603 0.444894 diff --git a/datasets/handleImage/label/订单1805422_51_7097140.txt b/datasets/handleImage/label/订单1805422_51_7097140.txt new file mode 100644 index 0000000..dbb9331 --- /dev/null +++ b/datasets/handleImage/label/订单1805422_51_7097140.txt @@ -0,0 +1 @@ +6 0.477852 0.492122 0.530015 0.568236 0.636313 0.450124 0.583164 0.363509 0.476865 0.492122 diff --git a/datasets/handleImage/label/订单1805425_51_7097081.txt b/datasets/handleImage/label/订单1805425_51_7097081.txt new file mode 100644 index 0000000..767ad56 --- /dev/null +++ b/datasets/handleImage/label/订单1805425_51_7097081.txt @@ -0,0 +1 @@ +6 0.250778 0.683715 0.212856 0.812325 0.387833 0.824135 0.431578 0.694210 0.253689 0.683715 diff --git a/datasets/handleImage/label/订单1805428_51_7097030.txt b/datasets/handleImage/label/订单1805428_51_7097030.txt new file mode 100644 index 0000000..e26d546 --- /dev/null +++ b/datasets/handleImage/label/订单1805428_51_7097030.txt @@ -0,0 +1 @@ +6 0.616432 0.347764 0.549948 0.400254 0.665430 0.482930 0.728424 0.433066 0.614687 0.345137 diff --git a/datasets/handleImage/label/订单1805429_51_7097065.txt b/datasets/handleImage/label/订单1805429_51_7097065.txt new file mode 100644 index 0000000..fb9e8ff --- /dev/null +++ b/datasets/handleImage/label/订单1805429_51_7097065.txt @@ -0,0 +1 @@ +6 0.457120 0.396382 0.448363 0.469868 0.649591 0.475121 0.649591 0.393750 0.457120 0.392445 diff --git a/datasets/handleImage/label/订单1805430_51_7097192.txt b/datasets/handleImage/label/订单1805430_51_7097192.txt new file mode 100644 index 0000000..7e8a149 --- /dev/null +++ b/datasets/handleImage/label/订单1805430_51_7097192.txt @@ -0,0 +1 @@ +6 0.595962 0.101042 0.579229 0.355638 0.686509 0.367448 0.705210 0.125977 0.593989 0.099733 diff --git a/datasets/handleImage/label/订单1805431_51_7097106.txt b/datasets/handleImage/label/订单1805431_51_7097106.txt new file mode 100644 index 0000000..cbf6aab --- /dev/null +++ b/datasets/handleImage/label/订单1805431_51_7097106.txt @@ -0,0 +1 @@ +6 0.325977 0.572168 0.324219 0.698154 0.423958 0.696846 0.430964 0.569541 0.324219 0.569541 diff --git a/datasets/handleImage/label/订单1805433_51_7097054.txt b/datasets/handleImage/label/订单1805433_51_7097054.txt new file mode 100644 index 0000000..3afb95a --- /dev/null +++ b/datasets/handleImage/label/订单1805433_51_7097054.txt @@ -0,0 +1 @@ +6 0.462339 0.371425 0.478083 0.536779 0.595322 0.531529 0.591822 0.368800 0.460589 0.371425 diff --git a/datasets/handleImage/label/订单1805437_51_7097133.txt b/datasets/handleImage/label/订单1805437_51_7097133.txt new file mode 100644 index 0000000..f32763b --- /dev/null +++ b/datasets/handleImage/label/订单1805437_51_7097133.txt @@ -0,0 +1 @@ +6 0.437956 0.464561 0.422214 0.590537 0.688177 0.599727 0.702174 0.477686 0.439714 0.463242 diff --git a/datasets/handleImage/label/订单1805439_51_7097139.txt b/datasets/handleImage/label/订单1805439_51_7097139.txt new file mode 100644 index 0000000..b3dc37f --- /dev/null +++ b/datasets/handleImage/label/订单1805439_51_7097139.txt @@ -0,0 +1 @@ +6 0.492083 0.552525 0.483333 0.633892 0.672311 0.649638 0.675811 0.560400 0.490333 0.549900 diff --git a/datasets/handleImage/label/订单1805444_51_7097190.txt b/datasets/handleImage/label/订单1805444_51_7097190.txt new file mode 100644 index 0000000..f1a3257 --- /dev/null +++ b/datasets/handleImage/label/订单1805444_51_7097190.txt @@ -0,0 +1 @@ +6 0.399344 0.535467 0.402844 0.631267 0.605817 0.619454 0.593572 0.522342 0.404594 0.532842 diff --git a/datasets/handleImage/label/订单1805445_51_7097229.txt b/datasets/handleImage/label/订单1805445_51_7097229.txt new file mode 100644 index 0000000..174b1b1 --- /dev/null +++ b/datasets/handleImage/label/订单1805445_51_7097229.txt @@ -0,0 +1 @@ +6 0.404693 0.480290 0.364440 0.589210 0.639160 0.632520 0.660160 0.515720 0.406440 0.473730 diff --git a/datasets/handleImage/label/订单1805446_51_7097173.txt b/datasets/handleImage/label/订单1805446_51_7097173.txt new file mode 100644 index 0000000..d5f14ed --- /dev/null +++ b/datasets/handleImage/label/订单1805446_51_7097173.txt @@ -0,0 +1 @@ +6 0.480711 0.350391 0.480711 0.581361 0.585451 0.587923 0.593358 0.353014 0.483676 0.350391 diff --git a/datasets/handleImage/label/订单1805449_51_7097273.txt b/datasets/handleImage/label/订单1805449_51_7097273.txt new file mode 100644 index 0000000..14688e4 --- /dev/null +++ b/datasets/handleImage/label/订单1805449_51_7097273.txt @@ -0,0 +1 @@ +6 0.253442 0.181094 0.230801 0.463249 0.352852 0.486868 0.384346 0.195534 0.256392 0.178470 diff --git a/datasets/handleImage/label/订单1805451_51_7097408.txt b/datasets/handleImage/label/订单1805451_51_7097408.txt new file mode 100644 index 0000000..f54e64c --- /dev/null +++ b/datasets/handleImage/label/订单1805451_51_7097408.txt @@ -0,0 +1 @@ +6 0.430964 0.540674 0.415208 0.654844 0.682930 0.673223 0.691680 0.551172 0.430964 0.539365 diff --git a/datasets/handleImage/label/订单1805452_51_7097304.txt b/datasets/handleImage/label/订单1805452_51_7097304.txt new file mode 100644 index 0000000..15b7972 --- /dev/null +++ b/datasets/handleImage/label/订单1805452_51_7097304.txt @@ -0,0 +1 @@ +6 0.320729 0.459307 0.294479 0.535420 0.474701 0.561670 0.497448 0.476367 0.322474 0.460625 diff --git a/datasets/handleImage/label/订单1805453_51_7097272.txt b/datasets/handleImage/label/订单1805453_51_7097272.txt new file mode 100644 index 0000000..0a69b4c --- /dev/null +++ b/datasets/handleImage/label/订单1805453_51_7097272.txt @@ -0,0 +1 @@ +6 0.574185 0.444913 0.575659 0.618142 0.639146 0.624705 0.641357 0.443602 0.573447 0.443602 diff --git a/datasets/handleImage/label/订单1805454_51_7097240.txt b/datasets/handleImage/label/订单1805454_51_7097240.txt new file mode 100644 index 0000000..ff37e45 --- /dev/null +++ b/datasets/handleImage/label/订单1805454_51_7097240.txt @@ -0,0 +1 @@ +6 0.308477 0.345137 0.306719 0.422559 0.479948 0.422559 0.483451 0.345137 0.310221 0.342510 diff --git a/datasets/handleImage/label/订单1805458_51_7097359.txt b/datasets/handleImage/label/订单1805458_51_7097359.txt new file mode 100644 index 0000000..7262487 --- /dev/null +++ b/datasets/handleImage/label/订单1805458_51_7097359.txt @@ -0,0 +1 @@ +6 0.243737 0.610225 0.280482 0.703398 0.495703 0.652227 0.457201 0.557734 0.245482 0.610225 diff --git a/datasets/handleImage/label/订单1805459_51_7097355.txt b/datasets/handleImage/label/订单1805459_51_7097355.txt new file mode 100644 index 0000000..6d0efbc --- /dev/null +++ b/datasets/handleImage/label/订单1805459_51_7097355.txt @@ -0,0 +1 @@ +6 0.588438 0.551172 0.576185 0.648281 0.812409 0.662725 0.810664 0.557734 0.593685 0.551172 diff --git a/datasets/handleImage/label/订单1805460_51_7097375.txt b/datasets/handleImage/label/订单1805460_51_7097375.txt new file mode 100644 index 0000000..fe9644b --- /dev/null +++ b/datasets/handleImage/label/订单1805460_51_7097375.txt @@ -0,0 +1 @@ +6 0.320395 0.254620 0.270195 0.360920 0.413895 0.458033 0.460155 0.351733 0.322360 0.255933 diff --git a/datasets/handleImage/label/订单1805461_51_7097444.txt b/datasets/handleImage/label/订单1805461_51_7097444.txt new file mode 100644 index 0000000..a0f1f75 --- /dev/null +++ b/datasets/handleImage/label/订单1805461_51_7097444.txt @@ -0,0 +1 @@ +6 0.362693 0.562970 0.371440 0.669260 0.604160 0.658770 0.598920 0.552470 0.369693 0.559030 diff --git a/datasets/handleImage/label/订单1805463_51_7097391.txt b/datasets/handleImage/label/订单1805463_51_7097391.txt new file mode 100644 index 0000000..08da538 --- /dev/null +++ b/datasets/handleImage/label/订单1805463_51_7097391.txt @@ -0,0 +1 @@ +6 0.408216 0.536738 0.413464 0.639102 0.633932 0.631221 0.621680 0.530176 0.408216 0.536738 diff --git a/datasets/handleImage/label/订单1805466_51_7097460.txt b/datasets/handleImage/label/订单1805466_51_7097460.txt new file mode 100644 index 0000000..9437f65 --- /dev/null +++ b/datasets/handleImage/label/订单1805466_51_7097460.txt @@ -0,0 +1 @@ +6 0.318947 0.650890 0.325947 0.713880 0.474680 0.692890 0.464187 0.627270 0.318947 0.649580 diff --git a/datasets/handleImage/label/订单1805468_51_7097492.txt b/datasets/handleImage/label/订单1805468_51_7097492.txt new file mode 100644 index 0000000..4a47f09 --- /dev/null +++ b/datasets/handleImage/label/订单1805468_51_7097492.txt @@ -0,0 +1 @@ +6 0.444935 0.447475 0.423938 0.562966 0.686405 0.601017 0.705654 0.481605 0.443186 0.446164 diff --git a/datasets/handleImage/label/订单1805469_51_7097445.txt b/datasets/handleImage/label/订单1805469_51_7097445.txt new file mode 100644 index 0000000..9621a69 --- /dev/null +++ b/datasets/handleImage/label/订单1805469_51_7097445.txt @@ -0,0 +1 @@ +6 0.217346 0.381904 0.252333 0.486894 0.485064 0.467212 0.453564 0.363529 0.215590 0.379279 diff --git a/datasets/handleImage/label/订单1805471_51_7097467.txt b/datasets/handleImage/label/订单1805471_51_7097467.txt new file mode 100644 index 0000000..2989706 --- /dev/null +++ b/datasets/handleImage/label/订单1805471_51_7097467.txt @@ -0,0 +1 @@ +6 0.416966 0.452744 0.404714 0.564297 0.672435 0.587920 0.691680 0.464561 0.422214 0.450117 diff --git a/datasets/handleImage/label/订单1805472_51_7097529.txt b/datasets/handleImage/label/订单1805472_51_7097529.txt new file mode 100644 index 0000000..f986f95 --- /dev/null +++ b/datasets/handleImage/label/订单1805472_51_7097529.txt @@ -0,0 +1 @@ +6 0.277807 0.358261 0.294095 0.398945 0.440690 0.383201 0.433712 0.334645 0.277807 0.353010 diff --git a/datasets/handleImage/label/订单1805473_51_7097537.txt b/datasets/handleImage/label/订单1805473_51_7097537.txt new file mode 100644 index 0000000..61e7a4a --- /dev/null +++ b/datasets/handleImage/label/订单1805473_51_7097537.txt @@ -0,0 +1 @@ +6 0.279477 0.353049 0.268980 0.521029 0.624183 0.528902 0.638183 0.372735 0.272484 0.350422 diff --git a/datasets/handleImage/label/订单1805479_51_7097597.txt b/datasets/handleImage/label/订单1805479_51_7097597.txt new file mode 100644 index 0000000..fd041e9 --- /dev/null +++ b/datasets/handleImage/label/订单1805479_51_7097597.txt @@ -0,0 +1 @@ +6 0.297969 0.322822 0.327721 0.438311 0.607682 0.400254 0.567448 0.278203 0.299727 0.318887 diff --git a/datasets/handleImage/label/订单1805483_51_7097639.txt b/datasets/handleImage/label/订单1805483_51_7097639.txt new file mode 100644 index 0000000..bfb07a1 --- /dev/null +++ b/datasets/handleImage/label/订单1805483_51_7097639.txt @@ -0,0 +1 @@ +6 0.215080 0.569580 0.144210 0.766433 0.235750 0.803173 0.301695 0.598453 0.219015 0.565640 diff --git a/datasets/handleImage/label/订单1805485_51_7097619.txt b/datasets/handleImage/label/订单1805485_51_7097619.txt new file mode 100644 index 0000000..9d83460 --- /dev/null +++ b/datasets/handleImage/label/订单1805485_51_7097619.txt @@ -0,0 +1 @@ +6 0.289106 0.559087 0.222617 0.647012 0.422089 0.710008 0.488583 0.627329 0.294356 0.557775 diff --git a/datasets/handleImage/label/订单1805489_51_7097678.txt b/datasets/handleImage/label/订单1805489_51_7097678.txt new file mode 100644 index 0000000..cc5b78a --- /dev/null +++ b/datasets/handleImage/label/订单1805489_51_7097678.txt @@ -0,0 +1 @@ +6 0.418794 0.325456 0.425684 0.581361 0.549702 0.576107 0.538872 0.312331 0.420762 0.322826 diff --git a/datasets/handleImage/label/订单1805490_51_7097677.txt b/datasets/handleImage/label/订单1805490_51_7097677.txt new file mode 100644 index 0000000..00385d5 --- /dev/null +++ b/datasets/handleImage/label/订单1805490_51_7097677.txt @@ -0,0 +1 @@ +6 0.436554 0.654907 0.540885 0.644410 0.538915 0.413437 0.431632 0.416053 0.434583 0.657523 diff --git a/datasets/handleImage/label/订单1805494_51_7097669.txt b/datasets/handleImage/label/订单1805494_51_7097669.txt new file mode 100644 index 0000000..d31a305 --- /dev/null +++ b/datasets/handleImage/label/订单1805494_51_7097669.txt @@ -0,0 +1 @@ +6 0.399466 0.418623 0.390716 0.531484 0.661927 0.534111 0.660182 0.412061 0.402969 0.414687 diff --git a/datasets/handleImage/label/订单1805495_51_7097888.txt b/datasets/handleImage/label/订单1805495_51_7097888.txt new file mode 100644 index 0000000..758df72 --- /dev/null +++ b/datasets/handleImage/label/订单1805495_51_7097888.txt @@ -0,0 +1 @@ +6 0.289232 0.509180 0.289232 0.629912 0.542943 0.620723 0.532448 0.502617 0.289232 0.506553 diff --git a/datasets/handleImage/label/订单1805497_51_7097714.txt b/datasets/handleImage/label/订单1805497_51_7097714.txt new file mode 100644 index 0000000..12c958b --- /dev/null +++ b/datasets/handleImage/label/订单1805497_51_7097714.txt @@ -0,0 +1 @@ +6 0.373186 0.486850 0.374935 0.614142 0.646160 0.601017 0.640915 0.476348 0.378448 0.485539 diff --git a/datasets/handleImage/label/订单1805498_51_7097737.txt b/datasets/handleImage/label/订单1805498_51_7097737.txt new file mode 100644 index 0000000..6f94877 --- /dev/null +++ b/datasets/handleImage/label/订单1805498_51_7097737.txt @@ -0,0 +1 @@ +6 0.406429 0.342490 0.378426 0.476339 0.656653 0.499970 0.674140 0.370050 0.409934 0.342490 diff --git a/datasets/handleImage/label/订单1805499_51_7097753.txt b/datasets/handleImage/label/订单1805499_51_7097753.txt new file mode 100644 index 0000000..ba2bdd1 --- /dev/null +++ b/datasets/handleImage/label/订单1805499_51_7097753.txt @@ -0,0 +1 @@ +6 0.266484 0.376631 0.199987 0.580039 0.388958 0.610225 0.453711 0.406816 0.269974 0.377939 diff --git a/datasets/handleImage/label/订单1805500_51_7097767.txt b/datasets/handleImage/label/订单1805500_51_7097767.txt new file mode 100644 index 0000000..711b33b --- /dev/null +++ b/datasets/handleImage/label/订单1805500_51_7097767.txt @@ -0,0 +1 @@ +6 0.354719 0.447539 0.347725 0.574833 0.627686 0.581392 0.638183 0.447539 0.358222 0.440980 diff --git a/datasets/handleImage/label/订单1805506_51_7097821.txt b/datasets/handleImage/label/订单1805506_51_7097821.txt new file mode 100644 index 0000000..d08195f --- /dev/null +++ b/datasets/handleImage/label/订单1805506_51_7097821.txt @@ -0,0 +1 @@ +6 0.310390 0.427815 0.268506 0.509180 0.501188 0.538050 0.540745 0.447500 0.301082 0.427815 diff --git a/datasets/handleImage/label/订单1805509_51_7097852.txt b/datasets/handleImage/label/订单1805509_51_7097852.txt new file mode 100644 index 0000000..6194bf6 --- /dev/null +++ b/datasets/handleImage/label/订单1805509_51_7097852.txt @@ -0,0 +1 @@ +6 0.060000 0.292646 0.060000 0.417314 0.327721 0.421250 0.325977 0.295264 0.063503 0.284766 diff --git a/datasets/handleImage/label/订单1805510_51_7098040.txt b/datasets/handleImage/label/订单1805510_51_7098040.txt new file mode 100644 index 0000000..ed1d924 --- /dev/null +++ b/datasets/handleImage/label/订单1805510_51_7098040.txt @@ -0,0 +1 @@ +6 0.458164 0.419941 0.460132 0.538053 0.610723 0.534115 0.606787 0.417318 0.457183 0.419941 diff --git a/datasets/handleImage/label/订单1805511_51_7097845.txt b/datasets/handleImage/label/订单1805511_51_7097845.txt new file mode 100644 index 0000000..6bffa55 --- /dev/null +++ b/datasets/handleImage/label/订单1805511_51_7097845.txt @@ -0,0 +1 @@ +6 0.471159 0.486912 0.483359 0.593206 0.748294 0.568275 0.718659 0.456725 0.476393 0.484284 diff --git a/datasets/handleImage/label/订单1805512_51_7097838.txt b/datasets/handleImage/label/订单1805512_51_7097838.txt new file mode 100644 index 0000000..e791b30 --- /dev/null +++ b/datasets/handleImage/label/订单1805512_51_7097838.txt @@ -0,0 +1 @@ +6 0.448464 0.568232 0.444961 0.662725 0.658424 0.665342 0.661927 0.570859 0.443203 0.568232 diff --git a/datasets/handleImage/label/订单1805513_51_7097862.txt b/datasets/handleImage/label/订单1805513_51_7097862.txt new file mode 100644 index 0000000..4098fec --- /dev/null +++ b/datasets/handleImage/label/订单1805513_51_7097862.txt @@ -0,0 +1 @@ +6 0.386222 0.464598 0.375725 0.542029 0.589190 0.553833 0.583948 0.475098 0.380967 0.464598 diff --git a/datasets/handleImage/label/订单1805520_51_7097937.txt b/datasets/handleImage/label/订单1805520_51_7097937.txt new file mode 100644 index 0000000..a9a906a --- /dev/null +++ b/datasets/handleImage/label/订单1805520_51_7097937.txt @@ -0,0 +1 @@ +6 0.383711 0.473740 0.373216 0.565605 0.595443 0.564297 0.593685 0.471123 0.385469 0.469805 diff --git a/datasets/handleImage/label/订单1805524_51_7097938.txt b/datasets/handleImage/label/订单1805524_51_7097938.txt new file mode 100644 index 0000000..99b7f2d --- /dev/null +++ b/datasets/handleImage/label/订单1805524_51_7097938.txt @@ -0,0 +1 @@ +6 0.214985 0.515744 0.231273 0.581358 0.426718 0.565614 0.412761 0.500000 0.221963 0.513123 diff --git a/datasets/handleImage/label/订单1805525_51_7097930.txt b/datasets/handleImage/label/订单1805525_51_7097930.txt new file mode 100644 index 0000000..28ebaed --- /dev/null +++ b/datasets/handleImage/label/订单1805525_51_7097930.txt @@ -0,0 +1 @@ +6 0.297969 0.309697 0.304974 0.435684 0.628685 0.422559 0.607682 0.295264 0.299727 0.305762 diff --git a/datasets/handleImage/label/订单1805526_51_7097979.txt b/datasets/handleImage/label/订单1805526_51_7097979.txt new file mode 100644 index 0000000..9d4d366 --- /dev/null +++ b/datasets/handleImage/label/订单1805526_51_7097979.txt @@ -0,0 +1 @@ +6 0.292721 0.376631 0.294479 0.471123 0.509701 0.451436 0.500951 0.354326 0.290977 0.374004 diff --git a/datasets/handleImage/label/订单1805528_51_7097986.txt b/datasets/handleImage/label/订单1805528_51_7097986.txt new file mode 100644 index 0000000..c97a69d --- /dev/null +++ b/datasets/handleImage/label/订单1805528_51_7097986.txt @@ -0,0 +1 @@ +6 0.164872 0.421292 0.171872 0.544654 0.467583 0.527592 0.448339 0.412108 0.166622 0.418667 diff --git a/datasets/handleImage/label/订单1805530_51_7098034.txt b/datasets/handleImage/label/订单1805530_51_7098034.txt new file mode 100644 index 0000000..28edcd3 --- /dev/null +++ b/datasets/handleImage/label/订单1805530_51_7098034.txt @@ -0,0 +1 @@ +6 0.419464 0.452784 0.428209 0.555147 0.667935 0.545961 0.664431 0.444912 0.429961 0.452784 diff --git a/datasets/handleImage/label/订单1805537_51_7097998.txt b/datasets/handleImage/label/订单1805537_51_7097998.txt new file mode 100644 index 0000000..7416c6c --- /dev/null +++ b/datasets/handleImage/label/订单1805537_51_7097998.txt @@ -0,0 +1 @@ +6 0.568666 0.410761 0.564003 0.461938 0.766442 0.472439 0.768758 0.414697 0.573313 0.409446 diff --git a/datasets/handleImage/label/订单1805539_51_7098124.txt b/datasets/handleImage/label/订单1805539_51_7098124.txt new file mode 100644 index 0000000..343139f --- /dev/null +++ b/datasets/handleImage/label/订单1805539_51_7098124.txt @@ -0,0 +1 @@ +6 0.301356 0.544654 0.310106 0.649638 0.532328 0.635204 0.516578 0.531529 0.308356 0.542029 diff --git a/datasets/handleImage/label/订单1805540_51_7098097.txt b/datasets/handleImage/label/订单1805540_51_7098097.txt new file mode 100644 index 0000000..e1b1377 --- /dev/null +++ b/datasets/handleImage/label/订单1805540_51_7098097.txt @@ -0,0 +1 @@ +6 0.346970 0.450160 0.368620 0.640447 0.459175 0.624700 0.438505 0.434407 0.352875 0.450160 diff --git a/datasets/handleImage/label/订单1805542_51_7098142.txt b/datasets/handleImage/label/订单1805542_51_7098142.txt new file mode 100644 index 0000000..ad20592 --- /dev/null +++ b/datasets/handleImage/label/订单1805542_51_7098142.txt @@ -0,0 +1 @@ +6 0.346850 0.506596 0.343350 0.603708 0.560322 0.606333 0.565572 0.509221 0.355600 0.503971 diff --git a/datasets/handleImage/label/订单1805543_51_7098125.txt b/datasets/handleImage/label/订单1805543_51_7098125.txt new file mode 100644 index 0000000..200c1cf --- /dev/null +++ b/datasets/handleImage/label/订单1805543_51_7098125.txt @@ -0,0 +1 @@ +6 0.406458 0.527549 0.406458 0.586602 0.576185 0.586602 0.569193 0.518359 0.409961 0.524922 diff --git a/datasets/handleImage/label/订单1805545_51_7098061.txt b/datasets/handleImage/label/订单1805545_51_7098061.txt new file mode 100644 index 0000000..bd18436 --- /dev/null +++ b/datasets/handleImage/label/订单1805545_51_7098061.txt @@ -0,0 +1 @@ +6 0.177213 0.555090 0.231467 0.627270 0.394187 0.553780 0.331200 0.477660 0.171973 0.553780 diff --git a/datasets/handleImage/label/订单1805548_51_7098174.txt b/datasets/handleImage/label/订单1805548_51_7098174.txt new file mode 100644 index 0000000..5f9c81a --- /dev/null +++ b/datasets/handleImage/label/订单1805548_51_7098174.txt @@ -0,0 +1 @@ +6 0.617515 0.430441 0.615199 0.484247 0.780399 0.489498 0.782715 0.431756 0.615199 0.431756 diff --git a/datasets/handleImage/label/订单1805552_51_7098206.txt b/datasets/handleImage/label/订单1805552_51_7098206.txt new file mode 100644 index 0000000..2be2b20 --- /dev/null +++ b/datasets/handleImage/label/订单1805552_51_7098206.txt @@ -0,0 +1 @@ +6 0.525328 0.393733 0.530578 0.492158 0.735300 0.493471 0.742300 0.393733 0.525328 0.392421 diff --git a/datasets/handleImage/label/订单1805556_51_7098248.txt b/datasets/handleImage/label/订单1805556_51_7098248.txt new file mode 100644 index 0000000..700d7fa --- /dev/null +++ b/datasets/handleImage/label/订单1805556_51_7098248.txt @@ -0,0 +1 @@ +6 0.325977 0.459307 0.322474 0.589229 0.576185 0.599727 0.583190 0.464561 0.329466 0.457998 diff --git a/datasets/handleImage/label/订单1805557_51_7098288.txt b/datasets/handleImage/label/订单1805557_51_7098288.txt new file mode 100644 index 0000000..d577276 --- /dev/null +++ b/datasets/handleImage/label/订单1805557_51_7098288.txt @@ -0,0 +1 @@ +6 0.317227 0.485557 0.329466 0.581357 0.584935 0.556426 0.567448 0.451436 0.315469 0.481621 diff --git a/datasets/handleImage/label/订单1805558_51_7098208.txt b/datasets/handleImage/label/订单1805558_51_7098208.txt new file mode 100644 index 0000000..37a56b8 --- /dev/null +++ b/datasets/handleImage/label/订单1805558_51_7098208.txt @@ -0,0 +1 @@ +6 0.418794 0.540677 0.415840 0.636478 0.543794 0.636478 0.542813 0.540677 0.416826 0.539362 diff --git a/datasets/handleImage/label/订单1805559_51_7098303.txt b/datasets/handleImage/label/订单1805559_51_7098303.txt new file mode 100644 index 0000000..d73f103 --- /dev/null +++ b/datasets/handleImage/label/订单1805559_51_7098303.txt @@ -0,0 +1 @@ +6 0.346850 0.422604 0.343350 0.515779 0.583072 0.521029 0.579572 0.418667 0.348600 0.419979 diff --git a/datasets/handleImage/label/订单1805560_51_7098355.txt b/datasets/handleImage/label/订单1805560_51_7098355.txt new file mode 100644 index 0000000..c76035a --- /dev/null +++ b/datasets/handleImage/label/订单1805560_51_7098355.txt @@ -0,0 +1 @@ +6 0.457192 0.662744 0.469990 0.897647 0.584163 0.885840 0.569399 0.653551 0.457192 0.660115 diff --git a/datasets/handleImage/label/订单1805561_51_7098457.txt b/datasets/handleImage/label/订单1805561_51_7098457.txt new file mode 100644 index 0000000..78f0d19 --- /dev/null +++ b/datasets/handleImage/label/订单1805561_51_7098457.txt @@ -0,0 +1 @@ +6 0.231621 0.524928 0.244746 0.654850 0.429785 0.639102 0.423223 0.510495 0.236868 0.522305 diff --git a/datasets/handleImage/label/订单1805565_51_7098285.txt b/datasets/handleImage/label/订单1805565_51_7098285.txt new file mode 100644 index 0000000..d6babdf --- /dev/null +++ b/datasets/handleImage/label/订单1805565_51_7098285.txt @@ -0,0 +1 @@ +6 0.325977 0.349072 0.329466 0.447500 0.528945 0.444873 0.520195 0.346445 0.325977 0.349072 diff --git a/datasets/handleImage/label/订单1805567_51_7098253.txt b/datasets/handleImage/label/订单1805567_51_7098253.txt new file mode 100644 index 0000000..e3956af --- /dev/null +++ b/datasets/handleImage/label/订单1805567_51_7098253.txt @@ -0,0 +1 @@ +6 0.324219 0.514424 0.327721 0.611543 0.539440 0.604980 0.537695 0.506553 0.327721 0.511807 diff --git a/datasets/handleImage/label/订单1805569_51_7098391.txt b/datasets/handleImage/label/订单1805569_51_7098391.txt new file mode 100644 index 0000000..212a1b7 --- /dev/null +++ b/datasets/handleImage/label/订单1805569_51_7098391.txt @@ -0,0 +1 @@ +6 0.513203 0.427812 0.469453 0.498682 0.640938 0.553799 0.674180 0.473740 0.520195 0.427812 diff --git a/datasets/handleImage/label/订单1805570_51_7098370.txt b/datasets/handleImage/label/订单1805570_51_7098370.txt new file mode 100644 index 0000000..158b533 --- /dev/null +++ b/datasets/handleImage/label/订单1805570_51_7098370.txt @@ -0,0 +1 @@ +6 0.292721 0.422559 0.325977 0.560361 0.597187 0.538047 0.563945 0.405498 0.294479 0.418623 diff --git a/datasets/handleImage/label/订单1805571_51_7099256.txt b/datasets/handleImage/label/订单1805571_51_7099256.txt new file mode 100644 index 0000000..5d6deb4 --- /dev/null +++ b/datasets/handleImage/label/订单1805571_51_7099256.txt @@ -0,0 +1 @@ +6 0.274774 0.217865 0.292518 0.278239 0.382232 0.261177 0.362512 0.194245 0.274774 0.212622 diff --git a/datasets/handleImage/label/订单1805573_51_7098331.txt b/datasets/handleImage/label/订单1805573_51_7098331.txt new file mode 100644 index 0000000..e13f65b --- /dev/null +++ b/datasets/handleImage/label/订单1805573_51_7098331.txt @@ -0,0 +1 @@ +6 0.247987 0.616833 0.440458 0.552529 0.492954 0.647010 0.288235 0.706069 0.246235 0.616833 diff --git a/datasets/handleImage/label/订单1805575_51_7098413.txt b/datasets/handleImage/label/订单1805575_51_7098413.txt new file mode 100644 index 0000000..83b6bbe --- /dev/null +++ b/datasets/handleImage/label/订单1805575_51_7098413.txt @@ -0,0 +1 @@ +6 0.393345 0.437007 0.379343 0.534118 0.633068 0.544619 0.638316 0.439628 0.395098 0.435692 diff --git a/datasets/handleImage/label/订单1805576_51_7098503.txt b/datasets/handleImage/label/订单1805576_51_7098503.txt new file mode 100644 index 0000000..155a408 --- /dev/null +++ b/datasets/handleImage/label/订单1805576_51_7098503.txt @@ -0,0 +1 @@ +6 0.399344 0.377987 0.395844 0.506596 0.693306 0.510533 0.688056 0.377987 0.406344 0.380608 diff --git a/datasets/handleImage/label/订单1805578_51_7098451.txt b/datasets/handleImage/label/订单1805578_51_7098451.txt new file mode 100644 index 0000000..87213a0 --- /dev/null +++ b/datasets/handleImage/label/订单1805578_51_7098451.txt @@ -0,0 +1 @@ +6 0.332222 0.444931 0.334193 0.553854 0.471988 0.553854 0.466076 0.444931 0.332222 0.440995 diff --git a/datasets/handleImage/label/订单1805579_51_7098438.txt b/datasets/handleImage/label/订单1805579_51_7098438.txt new file mode 100644 index 0000000..a91d8ab --- /dev/null +++ b/datasets/handleImage/label/订单1805579_51_7098438.txt @@ -0,0 +1 @@ +6 0.481583 0.452788 0.483333 0.543342 0.691556 0.545967 0.688056 0.451475 0.479833 0.452788 diff --git a/datasets/handleImage/label/订单1805580_51_7098406.txt b/datasets/handleImage/label/订单1805580_51_7098406.txt new file mode 100644 index 0000000..6443eda --- /dev/null +++ b/datasets/handleImage/label/订单1805580_51_7098406.txt @@ -0,0 +1 @@ +6 0.706196 0.362201 0.690449 0.478997 0.856787 0.517057 0.869580 0.389759 0.706196 0.358262 diff --git a/datasets/handleImage/label/订单1805583_51_7098571.txt b/datasets/handleImage/label/订单1805583_51_7098571.txt new file mode 100644 index 0000000..ebc61f8 --- /dev/null +++ b/datasets/handleImage/label/订单1805583_51_7098571.txt @@ -0,0 +1 @@ +6 0.305725 0.224441 0.296980 0.341235 0.543699 0.343863 0.552444 0.217882 0.305725 0.220500 diff --git a/datasets/handleImage/label/订单1805587_51_7098669.txt b/datasets/handleImage/label/订单1805587_51_7098669.txt new file mode 100644 index 0000000..2f153d4 --- /dev/null +++ b/datasets/handleImage/label/订单1805587_51_7098669.txt @@ -0,0 +1 @@ +6 0.509935 0.166651 0.487049 0.262454 0.613281 0.305764 0.628043 0.198148 0.510673 0.161404 diff --git a/datasets/handleImage/label/订单1805592_51_7098703.txt b/datasets/handleImage/label/订单1805592_51_7098703.txt new file mode 100644 index 0000000..37eefa2 --- /dev/null +++ b/datasets/handleImage/label/订单1805592_51_7098703.txt @@ -0,0 +1 @@ +6 0.406982 0.443561 0.408950 0.561673 0.548716 0.555111 0.544780 0.443561 0.407969 0.440937 diff --git a/datasets/handleImage/label/订单1805593_51_7098545.txt b/datasets/handleImage/label/订单1805593_51_7098545.txt new file mode 100644 index 0000000..f7b41f5 --- /dev/null +++ b/datasets/handleImage/label/订单1805593_51_7098545.txt @@ -0,0 +1 @@ +6 0.455347 0.437040 0.453588 0.515781 0.630324 0.515781 0.625069 0.434418 0.455336 0.434418 diff --git a/datasets/handleImage/label/订单1805596_51_7098501.txt b/datasets/handleImage/label/订单1805596_51_7098501.txt new file mode 100644 index 0000000..a262516 --- /dev/null +++ b/datasets/handleImage/label/订单1805596_51_7098501.txt @@ -0,0 +1 @@ +6 0.423933 0.566900 0.355693 0.682390 0.602413 0.766380 0.670653 0.649580 0.427440 0.566900 diff --git a/datasets/handleImage/label/订单1805597_51_7098528.txt b/datasets/handleImage/label/订单1805597_51_7098528.txt new file mode 100644 index 0000000..ed1a1d3 --- /dev/null +++ b/datasets/handleImage/label/订单1805597_51_7098528.txt @@ -0,0 +1 @@ +6 0.394097 0.278247 0.385347 0.383238 0.644317 0.392422 0.647813 0.283498 0.394097 0.278255 diff --git a/datasets/handleImage/label/订单1805605_51_7098836.txt b/datasets/handleImage/label/订单1805605_51_7098836.txt new file mode 100644 index 0000000..07110a0 --- /dev/null +++ b/datasets/handleImage/label/订单1805605_51_7098836.txt @@ -0,0 +1 @@ +6 0.257865 0.408132 0.276243 0.505241 0.441595 0.476374 0.421908 0.380573 0.256556 0.408132 diff --git a/datasets/handleImage/label/订单1805608_51_7098659.txt b/datasets/handleImage/label/订单1805608_51_7098659.txt new file mode 100644 index 0000000..0b78a82 --- /dev/null +++ b/datasets/handleImage/label/订单1805608_51_7098659.txt @@ -0,0 +1 @@ +6 0.227960 0.465850 0.156213 0.628580 0.486933 0.703390 0.562173 0.547220 0.229707 0.464540 diff --git a/datasets/handleImage/label/订单1805609_51_7098743.txt b/datasets/handleImage/label/订单1805609_51_7098743.txt new file mode 100644 index 0000000..0137fb1 --- /dev/null +++ b/datasets/handleImage/label/订单1805609_51_7098743.txt @@ -0,0 +1 @@ +6 0.427461 0.326758 0.427461 0.421250 0.637435 0.422559 0.628685 0.325449 0.432708 0.324141 diff --git a/datasets/handleImage/label/订单1805615_51_7098757.txt b/datasets/handleImage/label/订单1805615_51_7098757.txt new file mode 100644 index 0000000..e24f38c --- /dev/null +++ b/datasets/handleImage/label/订单1805615_51_7098757.txt @@ -0,0 +1 @@ +6 0.217487 0.255898 0.212240 0.380566 0.462461 0.383193 0.462461 0.257207 0.215742 0.254580 diff --git a/datasets/handleImage/label/订单1805620_51_7098837.txt b/datasets/handleImage/label/订单1805620_51_7098837.txt new file mode 100644 index 0000000..27a1b3f --- /dev/null +++ b/datasets/handleImage/label/订单1805620_51_7098837.txt @@ -0,0 +1 @@ +6 0.644413 0.366120 0.633907 0.496040 0.929627 0.493410 0.933120 0.352990 0.649653 0.364800 diff --git a/datasets/handleImage/label/订单1805621_51_7098899.txt b/datasets/handleImage/label/订单1805621_51_7098899.txt new file mode 100644 index 0000000..18e3354 --- /dev/null +++ b/datasets/handleImage/label/订单1805621_51_7098899.txt @@ -0,0 +1 @@ +6 0.334727 0.513115 0.324219 0.616787 0.537695 0.628604 0.551693 0.524922 0.336471 0.511807 diff --git a/datasets/handleImage/label/订单1805624_51_7098851.txt b/datasets/handleImage/label/订单1805624_51_7098851.txt new file mode 100644 index 0000000..a08f16c --- /dev/null +++ b/datasets/handleImage/label/订单1805624_51_7098851.txt @@ -0,0 +1 @@ +6 0.320729 0.627285 0.317227 0.716523 0.509701 0.712588 0.507943 0.620723 0.320716 0.625977 diff --git a/datasets/handleImage/label/订单1805627_51_7099446.txt b/datasets/handleImage/label/订单1805627_51_7099446.txt new file mode 100644 index 0000000..64fd3a2 --- /dev/null +++ b/datasets/handleImage/label/订单1805627_51_7099446.txt @@ -0,0 +1 @@ +6 0.441458 0.446182 0.437956 0.534111 0.646185 0.544609 0.651432 0.448809 0.443203 0.442246 diff --git a/datasets/handleImage/label/订单1805629_51_7098926.txt b/datasets/handleImage/label/订单1805629_51_7098926.txt new file mode 100644 index 0000000..b77265b --- /dev/null +++ b/datasets/handleImage/label/订单1805629_51_7098926.txt @@ -0,0 +1 @@ +6 0.165840 0.296582 0.160923 0.459310 0.353833 0.476374 0.358755 0.317578 0.167813 0.295267 diff --git a/datasets/handleImage/label/订单1805632_51_7098946.txt b/datasets/handleImage/label/订单1805632_51_7098946.txt new file mode 100644 index 0000000..f15744c --- /dev/null +++ b/datasets/handleImage/label/订单1805632_51_7098946.txt @@ -0,0 +1 @@ +6 0.432589 0.522342 0.418589 0.611583 0.612817 0.616829 0.614567 0.526279 0.432589 0.522342 diff --git a/datasets/handleImage/label/订单1805638_51_7098944.txt b/datasets/handleImage/label/订单1805638_51_7098944.txt new file mode 100644 index 0000000..2d108a5 --- /dev/null +++ b/datasets/handleImage/label/订单1805638_51_7098944.txt @@ -0,0 +1 @@ +6 0.234987 0.379258 0.266484 0.497363 0.565690 0.447500 0.520195 0.328076 0.234987 0.379258 diff --git a/datasets/handleImage/label/订单1805639_51_7098976.txt b/datasets/handleImage/label/订单1805639_51_7098976.txt new file mode 100644 index 0000000..36ab5ad --- /dev/null +++ b/datasets/handleImage/label/订单1805639_51_7098976.txt @@ -0,0 +1 @@ +6 0.355703 0.352990 0.341699 0.506532 0.663660 0.517034 0.668905 0.362181 0.359199 0.349056 diff --git a/datasets/handleImage/label/订单1805640_51_7098963.txt b/datasets/handleImage/label/订单1805640_51_7098963.txt new file mode 100644 index 0000000..f8531de --- /dev/null +++ b/datasets/handleImage/label/订单1805640_51_7098963.txt @@ -0,0 +1 @@ +6 0.544701 0.412061 0.549948 0.530176 0.821159 0.538047 0.826406 0.409443 0.541198 0.409443 diff --git a/datasets/handleImage/label/订单1805641_51_7099018.txt b/datasets/handleImage/label/订单1805641_51_7099018.txt new file mode 100644 index 0000000..b2ff8ee --- /dev/null +++ b/datasets/handleImage/label/订单1805641_51_7099018.txt @@ -0,0 +1 @@ +6 0.349479 0.346450 0.337813 0.430439 0.578116 0.444878 0.601450 0.363511 0.347144 0.346450 diff --git a/datasets/handleImage/label/订单1805650_51_7099158.txt b/datasets/handleImage/label/订单1805650_51_7099158.txt new file mode 100644 index 0000000..7ccac08 --- /dev/null +++ b/datasets/handleImage/label/订单1805650_51_7099158.txt @@ -0,0 +1 @@ +6 0.373974 0.481657 0.366967 0.564333 0.541948 0.566961 0.545451 0.488216 0.366967 0.480343 diff --git a/datasets/handleImage/label/订单1805651_51_7099073.txt b/datasets/handleImage/label/订单1805651_51_7099073.txt new file mode 100644 index 0000000..1b0c755 --- /dev/null +++ b/datasets/handleImage/label/订单1805651_51_7099073.txt @@ -0,0 +1 @@ +6 0.332850 0.427854 0.331100 0.569588 0.614567 0.569588 0.614567 0.427854 0.332850 0.425229 diff --git a/datasets/handleImage/label/订单1805657_51_7099117.txt b/datasets/handleImage/label/订单1805657_51_7099117.txt new file mode 100644 index 0000000..196ac79 --- /dev/null +++ b/datasets/handleImage/label/订单1805657_51_7099117.txt @@ -0,0 +1 @@ +6 0.459839 0.514429 0.459839 0.606298 0.654060 0.607604 0.647059 0.518365 0.458085 0.514429 diff --git a/datasets/handleImage/label/订单1805658_51_7099576.txt b/datasets/handleImage/label/订单1805658_51_7099576.txt new file mode 100644 index 0000000..4dacbac --- /dev/null +++ b/datasets/handleImage/label/订单1805658_51_7099576.txt @@ -0,0 +1 @@ +6 0.420460 0.498678 0.408214 0.591855 0.611187 0.597103 0.609438 0.505241 0.427460 0.497366 diff --git a/datasets/handleImage/label/订单1805659_51_7099146.txt b/datasets/handleImage/label/订单1805659_51_7099146.txt new file mode 100644 index 0000000..25cd3fa --- /dev/null +++ b/datasets/handleImage/label/订单1805659_51_7099146.txt @@ -0,0 +1 @@ +6 0.357474 0.417314 0.364466 0.545918 0.614687 0.538047 0.611185 0.408125 0.352214 0.419941 diff --git a/datasets/handleImage/label/订单1805660_51_7099156.txt b/datasets/handleImage/label/订单1805660_51_7099156.txt new file mode 100644 index 0000000..dd723d0 --- /dev/null +++ b/datasets/handleImage/label/订单1805660_51_7099156.txt @@ -0,0 +1 @@ +6 0.196467 0.255880 0.189467 0.538030 0.835133 0.547220 0.835133 0.258500 0.203467 0.253250 diff --git a/datasets/handleImage/label/订单1805661_51_7099341.txt b/datasets/handleImage/label/订单1805661_51_7099341.txt new file mode 100644 index 0000000..3042259 --- /dev/null +++ b/datasets/handleImage/label/订单1805661_51_7099341.txt @@ -0,0 +1 @@ +6 0.689815 0.442292 0.653067 0.540720 0.847292 0.580087 0.871794 0.485599 0.693310 0.440981 diff --git a/datasets/handleImage/label/订单1805662_51_7099241.txt b/datasets/handleImage/label/订单1805662_51_7099241.txt new file mode 100644 index 0000000..d52f2db --- /dev/null +++ b/datasets/handleImage/label/订单1805662_51_7099241.txt @@ -0,0 +1 @@ +6 0.500951 0.493428 0.486953 0.574795 0.679427 0.586602 0.682930 0.502617 0.500951 0.492119 diff --git a/datasets/handleImage/label/订单1805667_51_7099345.txt b/datasets/handleImage/label/订单1805667_51_7099345.txt new file mode 100644 index 0000000..90de8ed --- /dev/null +++ b/datasets/handleImage/label/订单1805667_51_7099345.txt @@ -0,0 +1 @@ +6 0.360989 0.539365 0.336557 0.602358 0.587000 0.619419 0.602273 0.553799 0.370159 0.538052 diff --git a/datasets/handleImage/label/订单1805672_51_7099269.txt b/datasets/handleImage/label/订单1805672_51_7099269.txt new file mode 100644 index 0000000..acec0d3 --- /dev/null +++ b/datasets/handleImage/label/订单1805672_51_7099269.txt @@ -0,0 +1 @@ +6 0.390716 0.397627 0.353971 0.522305 0.614687 0.578730 0.656680 0.451436 0.394219 0.397627 diff --git a/datasets/handleImage/label/订单1805677_51_7099314.txt b/datasets/handleImage/label/订单1805677_51_7099314.txt new file mode 100644 index 0000000..e745afe --- /dev/null +++ b/datasets/handleImage/label/订单1805677_51_7099314.txt @@ -0,0 +1 @@ +6 0.345077 0.486894 0.353821 0.586625 0.570795 0.590567 0.551551 0.479019 0.345077 0.485577 diff --git a/datasets/handleImage/label/订单1805680_51_7099400.txt b/datasets/handleImage/label/订单1805680_51_7099400.txt new file mode 100644 index 0000000..e3636fd --- /dev/null +++ b/datasets/handleImage/label/订单1805680_51_7099400.txt @@ -0,0 +1 @@ +6 0.547755 0.455407 0.574330 0.696873 0.701300 0.674567 0.676695 0.429160 0.545785 0.454093 diff --git a/datasets/handleImage/label/订单1805681_51_7099392.txt b/datasets/handleImage/label/订单1805681_51_7099392.txt new file mode 100644 index 0000000..ad4f63e --- /dev/null +++ b/datasets/handleImage/label/订单1805681_51_7099392.txt @@ -0,0 +1 @@ +6 0.407804 0.536743 0.414809 0.625981 0.662109 0.620732 0.650443 0.535430 0.412474 0.534116 diff --git a/datasets/handleImage/label/订单1805683_51_7099308.txt b/datasets/handleImage/label/订单1805683_51_7099308.txt new file mode 100644 index 0000000..208ffea --- /dev/null +++ b/datasets/handleImage/label/订单1805683_51_7099308.txt @@ -0,0 +1 @@ +6 0.275116 0.526285 0.294363 0.626024 0.507836 0.591901 0.478090 0.488229 0.276863 0.523655 diff --git a/datasets/handleImage/label/订单1805684_51_7099421.txt b/datasets/handleImage/label/订单1805684_51_7099421.txt new file mode 100644 index 0000000..287bc97 --- /dev/null +++ b/datasets/handleImage/label/订单1805684_51_7099421.txt @@ -0,0 +1 @@ +6 0.248960 0.362180 0.241960 0.489470 0.542920 0.488160 0.537667 0.359550 0.247213 0.360870 diff --git a/datasets/handleImage/label/订单1805691_51_7099534.txt b/datasets/handleImage/label/订单1805691_51_7099534.txt new file mode 100644 index 0000000..090a1d3 --- /dev/null +++ b/datasets/handleImage/label/订单1805691_51_7099534.txt @@ -0,0 +1 @@ +6 0.401094 0.150950 0.345100 0.241504 0.569072 0.328117 0.621567 0.231004 0.401094 0.147012 diff --git a/datasets/handleImage/label/订单1805692_51_7099444.txt b/datasets/handleImage/label/订单1805692_51_7099444.txt new file mode 100644 index 0000000..7727314 --- /dev/null +++ b/datasets/handleImage/label/订单1805692_51_7099444.txt @@ -0,0 +1 @@ +6 0.425684 0.325456 0.426670 0.471120 0.596943 0.460625 0.588086 0.308392 0.425684 0.321517 diff --git a/datasets/handleImage/label/订单1805694_51_7099545.txt b/datasets/handleImage/label/订单1805694_51_7099545.txt new file mode 100644 index 0000000..34617f9 --- /dev/null +++ b/datasets/handleImage/label/订单1805694_51_7099545.txt @@ -0,0 +1 @@ +6 0.413431 0.530159 0.408186 0.637770 0.651405 0.632525 0.644412 0.524902 0.415180 0.528848 diff --git a/datasets/handleImage/label/订单1805696_51_7099528.txt b/datasets/handleImage/label/订单1805696_51_7099528.txt new file mode 100644 index 0000000..0c0d90b --- /dev/null +++ b/datasets/handleImage/label/订单1805696_51_7099528.txt @@ -0,0 +1 @@ +6 0.338102 0.490851 0.325856 0.580087 0.528831 0.586649 0.527083 0.494783 0.336354 0.490851 diff --git a/datasets/handleImage/label/订单1805698_51_7099633.txt b/datasets/handleImage/label/订单1805698_51_7099633.txt new file mode 100644 index 0000000..d245ae0 --- /dev/null +++ b/datasets/handleImage/label/订单1805698_51_7099633.txt @@ -0,0 +1 @@ +6 0.576185 0.337266 0.558698 0.431748 0.756419 0.446182 0.768672 0.349072 0.577943 0.335947 diff --git a/datasets/handleImage/label/订单1805699_51_7099594.txt b/datasets/handleImage/label/订单1805699_51_7099594.txt new file mode 100644 index 0000000..f32d1a5 --- /dev/null +++ b/datasets/handleImage/label/订单1805699_51_7099594.txt @@ -0,0 +1 @@ +6 0.318971 0.448809 0.271732 0.547236 0.483451 0.590537 0.523698 0.490801 0.318971 0.447500 diff --git a/datasets/handleImage/label/订单1805703_51_7099678.txt b/datasets/handleImage/label/订单1805703_51_7099678.txt new file mode 100644 index 0000000..3775afa --- /dev/null +++ b/datasets/handleImage/label/订单1805703_51_7099678.txt @@ -0,0 +1 @@ +6 0.255039 0.619451 0.286406 0.723127 0.483359 0.682441 0.445013 0.576147 0.256784 0.615520 diff --git a/datasets/handleImage/label/订单1805704_51_7099624.txt b/datasets/handleImage/label/订单1805704_51_7099624.txt new file mode 100644 index 0000000..926775a --- /dev/null +++ b/datasets/handleImage/label/订单1805704_51_7099624.txt @@ -0,0 +1 @@ +6 0.096211 0.662715 0.212856 0.704710 0.364511 0.616785 0.233278 0.576100 0.099122 0.661405 diff --git a/datasets/handleImage/label/订单1805706_51_7099653.txt b/datasets/handleImage/label/订单1805706_51_7099653.txt new file mode 100644 index 0000000..dc8350a --- /dev/null +++ b/datasets/handleImage/label/订单1805706_51_7099653.txt @@ -0,0 +1 @@ +6 0.663685 0.337266 0.660182 0.431748 0.866654 0.438311 0.868398 0.339883 0.660182 0.334639 diff --git a/datasets/handleImage/label/订单1805711_51_7099701.txt b/datasets/handleImage/label/订单1805711_51_7099701.txt new file mode 100644 index 0000000..9db1ed5 --- /dev/null +++ b/datasets/handleImage/label/订单1805711_51_7099701.txt @@ -0,0 +1 @@ +6 0.401211 0.371377 0.374961 0.514424 0.667174 0.541982 0.686432 0.402881 0.397708 0.368760 diff --git a/datasets/handleImage/label/订单1805715_51_7099691.txt b/datasets/handleImage/label/订单1805715_51_7099691.txt new file mode 100644 index 0000000..83e0627 --- /dev/null +++ b/datasets/handleImage/label/订单1805715_51_7099691.txt @@ -0,0 +1 @@ +6 0.392461 0.375322 0.408216 0.599727 0.604193 0.597100 0.588438 0.366133 0.394219 0.372695 diff --git a/datasets/handleImage/label/订单1805718_51_7099739.txt b/datasets/handleImage/label/订单1805718_51_7099739.txt new file mode 100644 index 0000000..5e09ddb --- /dev/null +++ b/datasets/handleImage/label/订单1805718_51_7099739.txt @@ -0,0 +1 @@ +6 0.275093 0.335951 0.282969 0.485560 0.466040 0.481621 0.455210 0.326764 0.275093 0.334642 diff --git a/datasets/handleImage/label/订单1805720_51_7099771.txt b/datasets/handleImage/label/订单1805720_51_7099771.txt new file mode 100644 index 0000000..ef58cca --- /dev/null +++ b/datasets/handleImage/label/订单1805720_51_7099771.txt @@ -0,0 +1 @@ +6 0.399466 0.541982 0.381966 0.641719 0.598932 0.660098 0.607682 0.559043 0.394219 0.541982 diff --git a/datasets/handleImage/label/订单1805723_51_7099785.txt b/datasets/handleImage/label/订单1805723_51_7099785.txt new file mode 100644 index 0000000..0f2418a --- /dev/null +++ b/datasets/handleImage/label/订单1805723_51_7099785.txt @@ -0,0 +1 @@ +6 0.632160 0.429110 0.586667 0.531470 0.845640 0.593150 0.877133 0.485540 0.628667 0.430420 diff --git a/datasets/handleImage/label/订单1805726_51_7099833.txt b/datasets/handleImage/label/订单1805726_51_7099833.txt new file mode 100644 index 0000000..fc29d2c --- /dev/null +++ b/datasets/handleImage/label/订单1805726_51_7099833.txt @@ -0,0 +1 @@ +6 0.369604 0.477736 0.364358 0.599775 0.628579 0.602408 0.626831 0.476424 0.366107 0.477736 diff --git a/datasets/handleImage/label/订单1805727_51_7099850.txt b/datasets/handleImage/label/订单1805727_51_7099850.txt new file mode 100644 index 0000000..beebf40 --- /dev/null +++ b/datasets/handleImage/label/订单1805727_51_7099850.txt @@ -0,0 +1 @@ +6 0.248960 0.329370 0.255960 0.455350 0.511427 0.455350 0.506173 0.329370 0.252453 0.328060 diff --git a/datasets/handleImage/label/订单1805731_51_7100007.txt b/datasets/handleImage/label/订单1805731_51_7100007.txt new file mode 100644 index 0000000..4f5216d --- /dev/null +++ b/datasets/handleImage/label/订单1805731_51_7100007.txt @@ -0,0 +1 @@ +6 0.397708 0.509180 0.402969 0.635166 0.658424 0.623350 0.642682 0.498682 0.394219 0.506553 diff --git a/datasets/handleImage/label/订单1805735_51_7099895.txt b/datasets/handleImage/label/订单1805735_51_7099895.txt new file mode 100644 index 0000000..b9113dc --- /dev/null +++ b/datasets/handleImage/label/订单1805735_51_7099895.txt @@ -0,0 +1 @@ +6 0.620604 0.269072 0.499542 0.274322 0.509383 0.526289 0.633400 0.514478 0.620604 0.265133 diff --git a/datasets/handleImage/label/订单1805736_51_7099971.txt b/datasets/handleImage/label/订单1805736_51_7099971.txt new file mode 100644 index 0000000..9c31a7e --- /dev/null +++ b/datasets/handleImage/label/订单1805736_51_7099971.txt @@ -0,0 +1 @@ +6 0.336471 0.489492 0.336471 0.598418 0.586693 0.597100 0.577943 0.481621 0.327721 0.489492 diff --git a/datasets/handleImage/label/订单1805737_51_7101315.txt b/datasets/handleImage/label/订单1805737_51_7101315.txt new file mode 100644 index 0000000..ca84d8c --- /dev/null +++ b/datasets/handleImage/label/订单1805737_51_7101315.txt @@ -0,0 +1 @@ +6 0.369580 0.307083 0.380410 0.597109 0.507378 0.585293 0.498521 0.304453 0.368599 0.307083 diff --git a/datasets/handleImage/label/订单1805739_51_7099950.txt b/datasets/handleImage/label/订单1805739_51_7099950.txt new file mode 100644 index 0000000..07c0522 --- /dev/null +++ b/datasets/handleImage/label/订单1805739_51_7099950.txt @@ -0,0 +1 @@ +6 0.152720 0.392360 0.171973 0.478980 0.381947 0.454040 0.346947 0.368740 0.150973 0.391050 diff --git a/datasets/handleImage/label/订单1805740_51_7099926.txt b/datasets/handleImage/label/订单1805740_51_7099926.txt new file mode 100644 index 0000000..9c9d77e --- /dev/null +++ b/datasets/handleImage/label/订单1805740_51_7099926.txt @@ -0,0 +1 @@ +6 0.409961 0.585293 0.401211 0.665342 0.565690 0.674531 0.567448 0.594482 0.411706 0.581357 diff --git a/datasets/handleImage/label/订单1805742_51_7099979.txt b/datasets/handleImage/label/订单1805742_51_7099979.txt new file mode 100644 index 0000000..2cdb23b --- /dev/null +++ b/datasets/handleImage/label/订单1805742_51_7099979.txt @@ -0,0 +1 @@ +6 0.334727 0.559043 0.343464 0.632539 0.502695 0.627285 0.495703 0.551172 0.331224 0.559043 diff --git a/datasets/handleImage/label/订单1805746_51_7100012.txt b/datasets/handleImage/label/订单1805746_51_7100012.txt new file mode 100644 index 0000000..6c4039d --- /dev/null +++ b/datasets/handleImage/label/订单1805746_51_7100012.txt @@ -0,0 +1 @@ +6 0.376719 0.468496 0.397708 0.559043 0.590195 0.538047 0.572695 0.444873 0.381966 0.464561 diff --git a/datasets/handleImage/label/订单1805747_51_7100048.txt b/datasets/handleImage/label/订单1805747_51_7100048.txt new file mode 100644 index 0000000..9a07173 --- /dev/null +++ b/datasets/handleImage/label/订单1805747_51_7100048.txt @@ -0,0 +1 @@ +6 0.308356 0.413421 0.303106 0.523654 0.532328 0.526279 0.527078 0.416042 0.297856 0.413417 diff --git a/datasets/handleImage/label/订单1805748_51_7100087.txt b/datasets/handleImage/label/订单1805748_51_7100087.txt new file mode 100644 index 0000000..46061a6 --- /dev/null +++ b/datasets/handleImage/label/订单1805748_51_7100087.txt @@ -0,0 +1 @@ +6 0.347725 0.337304 0.365216 0.473784 0.636431 0.460657 0.624183 0.316304 0.345974 0.334676 diff --git a/datasets/handleImage/label/订单1805751_51_7100254.txt b/datasets/handleImage/label/订单1805751_51_7100254.txt new file mode 100644 index 0000000..778e650 --- /dev/null +++ b/datasets/handleImage/label/订单1805751_51_7100254.txt @@ -0,0 +1 @@ +6 0.451933 0.566900 0.464187 0.669260 0.681160 0.644330 0.653160 0.543280 0.444933 0.566900 diff --git a/datasets/handleImage/label/订单1805752_51_7100195.txt b/datasets/handleImage/label/订单1805752_51_7100195.txt new file mode 100644 index 0000000..868a7eb --- /dev/null +++ b/datasets/handleImage/label/订单1805752_51_7100195.txt @@ -0,0 +1 @@ +6 0.441458 0.451436 0.439714 0.534111 0.623437 0.528857 0.625182 0.439619 0.437956 0.447500 diff --git a/datasets/handleImage/label/订单1805753_51_7100046.txt b/datasets/handleImage/label/订单1805753_51_7100046.txt new file mode 100644 index 0000000..d453502 --- /dev/null +++ b/datasets/handleImage/label/订单1805753_51_7100046.txt @@ -0,0 +1 @@ +6 0.464206 0.272959 0.472956 0.395000 0.719674 0.387129 0.703919 0.270332 0.469453 0.272959 diff --git a/datasets/handleImage/label/订单1805763_51_7100277.txt b/datasets/handleImage/label/订单1805763_51_7100277.txt new file mode 100644 index 0000000..ce89e24 --- /dev/null +++ b/datasets/handleImage/label/订单1805763_51_7100277.txt @@ -0,0 +1 @@ +6 0.296106 0.463288 0.261111 0.593208 0.509578 0.628642 0.544578 0.510533 0.297856 0.463288 diff --git a/datasets/handleImage/label/订单1805765_51_7100237.txt b/datasets/handleImage/label/订单1805765_51_7100237.txt new file mode 100644 index 0000000..600561e --- /dev/null +++ b/datasets/handleImage/label/订单1805765_51_7100237.txt @@ -0,0 +1 @@ +6 0.432708 0.475059 0.423958 0.552480 0.586693 0.555107 0.593685 0.475059 0.434453 0.475059 diff --git a/datasets/handleImage/label/订单1805766_51_7100199.txt b/datasets/handleImage/label/订单1805766_51_7100199.txt new file mode 100644 index 0000000..72cb03a --- /dev/null +++ b/datasets/handleImage/label/订单1805766_51_7100199.txt @@ -0,0 +1 @@ +6 0.423843 0.459349 0.429097 0.535469 0.598819 0.524974 0.586574 0.451476 0.427350 0.455417 diff --git a/datasets/handleImage/label/订单1805767_51_7100306.txt b/datasets/handleImage/label/订单1805767_51_7100306.txt new file mode 100644 index 0000000..0949605 --- /dev/null +++ b/datasets/handleImage/label/订单1805767_51_7100306.txt @@ -0,0 +1 @@ +6 0.507956 0.450117 0.514948 0.568232 0.761667 0.559043 0.749414 0.440937 0.507943 0.455371 diff --git a/datasets/handleImage/label/订单1805769_51_7100206.txt b/datasets/handleImage/label/订单1805769_51_7100206.txt new file mode 100644 index 0000000..cb81df1 --- /dev/null +++ b/datasets/handleImage/label/订单1805769_51_7100206.txt @@ -0,0 +1 @@ +6 0.636901 0.602358 0.543729 0.692910 0.854286 0.758525 0.944622 0.665352 0.648193 0.598423 diff --git a/datasets/handleImage/label/订单1805770_51_7100239.txt b/datasets/handleImage/label/订单1805770_51_7100239.txt new file mode 100644 index 0000000..b11c439 --- /dev/null +++ b/datasets/handleImage/label/订单1805770_51_7100239.txt @@ -0,0 +1 @@ +6 0.303229 0.519678 0.303229 0.619414 0.520195 0.604980 0.506198 0.503926 0.304974 0.517051 diff --git a/datasets/handleImage/label/订单1805771_51_7100316.txt b/datasets/handleImage/label/订单1805771_51_7100316.txt new file mode 100644 index 0000000..8a9da23 --- /dev/null +++ b/datasets/handleImage/label/订单1805771_51_7100316.txt @@ -0,0 +1 @@ +6 0.315369 0.595840 0.395861 0.653586 0.513087 0.555164 0.429098 0.497418 0.315369 0.591906 diff --git a/datasets/handleImage/label/订单1805773_51_7100246.txt b/datasets/handleImage/label/订单1805773_51_7100246.txt new file mode 100644 index 0000000..cfa74ac --- /dev/null +++ b/datasets/handleImage/label/订单1805773_51_7100246.txt @@ -0,0 +1 @@ +6 0.366211 0.212588 0.367969 0.325449 0.609440 0.324141 0.598932 0.208652 0.362721 0.211279 diff --git a/datasets/handleImage/label/订单1805775_51_7100312.txt b/datasets/handleImage/label/订单1805775_51_7100312.txt new file mode 100644 index 0000000..14f83e7 --- /dev/null +++ b/datasets/handleImage/label/订单1805775_51_7100312.txt @@ -0,0 +1 @@ +6 0.490427 0.471100 0.474680 0.535410 0.642653 0.534090 0.639160 0.465850 0.486933 0.472410 diff --git a/datasets/handleImage/label/订单1805779_51_7100335.txt b/datasets/handleImage/label/订单1805779_51_7100335.txt new file mode 100644 index 0000000..9b536ae --- /dev/null +++ b/datasets/handleImage/label/订单1805779_51_7100335.txt @@ -0,0 +1 @@ +6 0.451953 0.254580 0.444961 0.337266 0.623437 0.343818 0.621680 0.257207 0.450208 0.253271 diff --git a/datasets/handleImage/label/订单1805782_51_7100361.txt b/datasets/handleImage/label/订单1805782_51_7100361.txt new file mode 100644 index 0000000..bb1ba19 --- /dev/null +++ b/datasets/handleImage/label/订单1805782_51_7100361.txt @@ -0,0 +1 @@ +6 0.387214 0.398945 0.380221 0.494746 0.593685 0.510488 0.600690 0.410752 0.383711 0.400254 diff --git a/datasets/handleImage/label/订单1805783_51_7100455.txt b/datasets/handleImage/label/订单1805783_51_7100455.txt new file mode 100644 index 0000000..6356209 --- /dev/null +++ b/datasets/handleImage/label/订单1805783_51_7100455.txt @@ -0,0 +1 @@ +6 0.336350 0.455412 0.343350 0.608958 0.485083 0.606333 0.474583 0.447537 0.339850 0.454100 diff --git a/datasets/handleImage/label/订单1805788_51_7100527.txt b/datasets/handleImage/label/订单1805788_51_7100527.txt new file mode 100644 index 0000000..a1abf67 --- /dev/null +++ b/datasets/handleImage/label/订单1805788_51_7100527.txt @@ -0,0 +1 @@ +6 0.331224 0.318887 0.325977 0.446182 0.611185 0.440937 0.598932 0.311016 0.334727 0.320205 diff --git a/datasets/handleImage/label/订单1805791_51_7100431.txt b/datasets/handleImage/label/订单1805791_51_7100431.txt new file mode 100644 index 0000000..8015d91 --- /dev/null +++ b/datasets/handleImage/label/订单1805791_51_7100431.txt @@ -0,0 +1 @@ +6 0.429206 0.530176 0.474701 0.623350 0.656680 0.569541 0.605938 0.473740 0.423958 0.532803 diff --git a/datasets/handleImage/label/订单1805793_51_7100437.txt b/datasets/handleImage/label/订单1805793_51_7100437.txt new file mode 100644 index 0000000..a79f091 --- /dev/null +++ b/datasets/handleImage/label/订单1805793_51_7100437.txt @@ -0,0 +1 @@ +6 0.269974 0.343818 0.308477 0.450117 0.514948 0.412061 0.476458 0.308389 0.269974 0.343818 diff --git a/datasets/handleImage/label/订单1805794_51_7100487.txt b/datasets/handleImage/label/订单1805794_51_7100487.txt new file mode 100644 index 0000000..ee3d3db --- /dev/null +++ b/datasets/handleImage/label/订单1805794_51_7100487.txt @@ -0,0 +1 @@ +6 0.458164 0.370072 0.470962 0.675846 0.611709 0.667975 0.604819 0.362201 0.456196 0.370072 diff --git a/datasets/handleImage/label/订单1805797_51_7100514.txt b/datasets/handleImage/label/订单1805797_51_7100514.txt new file mode 100644 index 0000000..b7a563c --- /dev/null +++ b/datasets/handleImage/label/订单1805797_51_7100514.txt @@ -0,0 +1 @@ +6 0.332850 0.149638 0.280361 0.265125 0.523578 0.325492 0.579572 0.221817 0.327606 0.149638 diff --git a/datasets/handleImage/label/订单1805802_51_7100539.txt b/datasets/handleImage/label/订单1805802_51_7100539.txt new file mode 100644 index 0000000..e4a3400 --- /dev/null +++ b/datasets/handleImage/label/订单1805802_51_7100539.txt @@ -0,0 +1 @@ +6 0.425716 0.434375 0.383711 0.515742 0.579688 0.565605 0.612930 0.476367 0.429206 0.433066 diff --git a/datasets/handleImage/label/订单1805804_51_7100605.txt b/datasets/handleImage/label/订单1805804_51_7100605.txt new file mode 100644 index 0000000..e3d6484 --- /dev/null +++ b/datasets/handleImage/label/订单1805804_51_7100605.txt @@ -0,0 +1 @@ +6 0.392461 0.610225 0.394219 0.707344 0.618190 0.699463 0.604193 0.601045 0.390716 0.610225 diff --git a/datasets/handleImage/label/订单1805806_51_7100666.txt b/datasets/handleImage/label/订单1805806_51_7100666.txt new file mode 100644 index 0000000..d6ce546 --- /dev/null +++ b/datasets/handleImage/label/订单1805806_51_7100666.txt @@ -0,0 +1 @@ +6 0.455427 0.309680 0.450187 0.405490 0.675907 0.400240 0.668907 0.296560 0.457187 0.309680 diff --git a/datasets/handleImage/label/订单1805807_51_7100667.txt b/datasets/handleImage/label/订单1805807_51_7100667.txt new file mode 100644 index 0000000..ad57f4e --- /dev/null +++ b/datasets/handleImage/label/订单1805807_51_7100667.txt @@ -0,0 +1 @@ +6 0.551572 0.574838 0.500833 0.717879 0.614567 0.734942 0.665311 0.598458 0.551572 0.572213 diff --git a/datasets/handleImage/label/订单1805810_51_7100624.txt b/datasets/handleImage/label/订单1805810_51_7100624.txt new file mode 100644 index 0000000..f43791a --- /dev/null +++ b/datasets/handleImage/label/订单1805810_51_7100624.txt @@ -0,0 +1 @@ +6 0.345221 0.572168 0.338216 0.686338 0.614687 0.682402 0.597187 0.566924 0.343464 0.568232 diff --git a/datasets/handleImage/label/订单1805812_51_7100601.txt b/datasets/handleImage/label/订单1805812_51_7100601.txt new file mode 100644 index 0000000..59456a6 --- /dev/null +++ b/datasets/handleImage/label/订单1805812_51_7100601.txt @@ -0,0 +1 @@ +6 0.409961 0.473740 0.408216 0.545918 0.556940 0.555107 0.556940 0.481621 0.409961 0.471123 diff --git a/datasets/handleImage/label/订单1805813_51_7100697.txt b/datasets/handleImage/label/订单1805813_51_7100697.txt new file mode 100644 index 0000000..84473f6 --- /dev/null +++ b/datasets/handleImage/label/订单1805813_51_7100697.txt @@ -0,0 +1 @@ +6 0.257707 0.526220 0.273453 0.612830 0.453680 0.583960 0.427440 0.499970 0.248960 0.527530 diff --git a/datasets/handleImage/label/订单1805814_51_7100643.txt b/datasets/handleImage/label/订单1805814_51_7100643.txt new file mode 100644 index 0000000..ee82601 --- /dev/null +++ b/datasets/handleImage/label/订单1805814_51_7100643.txt @@ -0,0 +1 @@ +6 0.388852 0.404242 0.385355 0.527602 0.644331 0.528914 0.637322 0.402930 0.392363 0.401619 diff --git a/datasets/handleImage/label/订单1805815_51_7100717.txt b/datasets/handleImage/label/订单1805815_51_7100717.txt new file mode 100644 index 0000000..382420d --- /dev/null +++ b/datasets/handleImage/label/订单1805815_51_7100717.txt @@ -0,0 +1 @@ +6 0.105359 0.391096 0.100103 0.500019 0.345077 0.501327 0.336333 0.385846 0.100103 0.392404 diff --git a/datasets/handleImage/label/订单1805817_51_7100718.txt b/datasets/handleImage/label/订单1805817_51_7100718.txt new file mode 100644 index 0000000..456c71a --- /dev/null +++ b/datasets/handleImage/label/订单1805817_51_7100718.txt @@ -0,0 +1 @@ +6 0.217487 0.457998 0.215742 0.682402 0.686432 0.688965 0.682930 0.469805 0.220990 0.457998 diff --git a/datasets/handleImage/label/订单1805819_51_7100678.txt b/datasets/handleImage/label/订单1805819_51_7100678.txt new file mode 100644 index 0000000..1fc9a42 --- /dev/null +++ b/datasets/handleImage/label/订单1805819_51_7100678.txt @@ -0,0 +1 @@ +6 0.173622 0.640454 0.184122 0.809746 0.532328 0.766437 0.500833 0.603708 0.170122 0.636517 diff --git a/datasets/handleImage/label/订单1805821_51_7100715.txt b/datasets/handleImage/label/订单1805821_51_7100715.txt new file mode 100644 index 0000000..520f016 --- /dev/null +++ b/datasets/handleImage/label/订单1805821_51_7100715.txt @@ -0,0 +1 @@ +6 0.430630 0.322860 0.417835 0.416033 0.534960 0.425220 0.541850 0.325487 0.432600 0.324173 diff --git a/datasets/handleImage/label/订单1805823_51_7100659.txt b/datasets/handleImage/label/订单1805823_51_7100659.txt new file mode 100644 index 0000000..7671850 --- /dev/null +++ b/datasets/handleImage/label/订单1805823_51_7100659.txt @@ -0,0 +1 @@ +6 0.460703 0.405498 0.453711 0.553799 0.745924 0.573486 0.756419 0.431748 0.455456 0.405498 diff --git a/datasets/handleImage/label/订单1805830_51_7100767.txt b/datasets/handleImage/label/订单1805830_51_7100767.txt new file mode 100644 index 0000000..9faddfe --- /dev/null +++ b/datasets/handleImage/label/订单1805830_51_7100767.txt @@ -0,0 +1 @@ +6 0.441352 0.429180 0.430847 0.521035 0.642582 0.527602 0.637322 0.431803 0.437855 0.429180 diff --git a/datasets/handleImage/label/订单1805831_51_7100849.txt b/datasets/handleImage/label/订单1805831_51_7100849.txt new file mode 100644 index 0000000..793b9b8 --- /dev/null +++ b/datasets/handleImage/label/订单1805831_51_7100849.txt @@ -0,0 +1 @@ +6 0.386507 0.389787 0.397007 0.640447 0.563673 0.636507 0.566300 0.385853 0.383887 0.388480 diff --git a/datasets/handleImage/label/订单1805833_51_7100813.txt b/datasets/handleImage/label/订单1805833_51_7100813.txt new file mode 100644 index 0000000..2bbde52 --- /dev/null +++ b/datasets/handleImage/label/订单1805833_51_7100813.txt @@ -0,0 +1 @@ +6 0.453405 0.468496 0.442910 0.574798 0.608262 0.586608 0.610885 0.494746 0.457344 0.471120 diff --git a/datasets/handleImage/label/订单1805834_51_7100798.txt b/datasets/handleImage/label/订单1805834_51_7100798.txt new file mode 100644 index 0000000..e2e1221 --- /dev/null +++ b/datasets/handleImage/label/订单1805834_51_7100798.txt @@ -0,0 +1 @@ +6 0.464206 0.499990 0.446706 0.576104 0.642682 0.594482 0.646185 0.513115 0.460703 0.501299 diff --git a/datasets/handleImage/label/订单1805837_51_7100853.txt b/datasets/handleImage/label/订单1805837_51_7100853.txt new file mode 100644 index 0000000..1833ce5 --- /dev/null +++ b/datasets/handleImage/label/订单1805837_51_7100853.txt @@ -0,0 +1 @@ +6 0.002144 0.227067 0.002144 0.606333 0.752800 0.626017 0.770300 0.215254 0.009144 0.224442 diff --git a/datasets/handleImage/label/订单1805839_51_7100902.txt b/datasets/handleImage/label/订单1805839_51_7100902.txt new file mode 100644 index 0000000..e64c34a --- /dev/null +++ b/datasets/handleImage/label/订单1805839_51_7100902.txt @@ -0,0 +1 @@ +6 0.271732 0.497363 0.276979 0.636475 0.583190 0.612852 0.556940 0.480303 0.269974 0.498682 diff --git a/datasets/handleImage/label/订单1805841_51_7100892.txt b/datasets/handleImage/label/订单1805841_51_7100892.txt new file mode 100644 index 0000000..9c2cf50 --- /dev/null +++ b/datasets/handleImage/label/订单1805841_51_7100892.txt @@ -0,0 +1 @@ +6 0.310217 0.485550 0.292717 0.610219 0.570933 0.619406 0.567433 0.488175 0.306717 0.484237 diff --git a/datasets/handleImage/label/订单1805842_51_7100929.txt b/datasets/handleImage/label/订单1805842_51_7100929.txt new file mode 100644 index 0000000..d9d8379 --- /dev/null +++ b/datasets/handleImage/label/订单1805842_51_7100929.txt @@ -0,0 +1 @@ +6 0.548716 0.341198 0.544780 0.473750 0.733755 0.475059 0.728833 0.345137 0.549702 0.339889 diff --git a/datasets/handleImage/label/订单1805843_51_7100959.txt b/datasets/handleImage/label/订单1805843_51_7100959.txt new file mode 100644 index 0000000..0c4e8f0 --- /dev/null +++ b/datasets/handleImage/label/订单1805843_51_7100959.txt @@ -0,0 +1 @@ +6 0.404607 0.594482 0.404607 0.666660 0.645207 0.666660 0.645207 0.587920 0.410469 0.593169 diff --git a/datasets/handleImage/label/订单1805844_51_7100930.txt b/datasets/handleImage/label/订单1805844_51_7100930.txt new file mode 100644 index 0000000..726f984 --- /dev/null +++ b/datasets/handleImage/label/订单1805844_51_7100930.txt @@ -0,0 +1 @@ +6 0.327577 0.444894 0.308333 0.572192 0.572551 0.586625 0.590051 0.454087 0.329333 0.443587 diff --git a/datasets/handleImage/label/订单1805847_51_7100915.txt b/datasets/handleImage/label/订单1805847_51_7100915.txt new file mode 100644 index 0000000..c545ad3 --- /dev/null +++ b/datasets/handleImage/label/订单1805847_51_7100915.txt @@ -0,0 +1 @@ +6 0.233125 0.444913 0.250613 0.532847 0.423843 0.515781 0.415093 0.438359 0.238368 0.444922 diff --git a/datasets/handleImage/label/订单1805848_51_7101037.txt b/datasets/handleImage/label/订单1805848_51_7101037.txt new file mode 100644 index 0000000..7bb8031 --- /dev/null +++ b/datasets/handleImage/label/订单1805848_51_7101037.txt @@ -0,0 +1 @@ +6 0.609440 0.463242 0.527201 0.664033 0.707422 0.700781 0.786159 0.494746 0.609440 0.457998 diff --git a/datasets/handleImage/label/订单1805851_51_7100961.txt b/datasets/handleImage/label/订单1805851_51_7100961.txt new file mode 100644 index 0000000..0221557 --- /dev/null +++ b/datasets/handleImage/label/订单1805851_51_7100961.txt @@ -0,0 +1 @@ +6 0.376693 0.469790 0.380187 0.573460 0.593667 0.562970 0.584920 0.465850 0.381947 0.465850 diff --git a/datasets/handleImage/label/订单1805852_51_7101016.txt b/datasets/handleImage/label/订单1805852_51_7101016.txt new file mode 100644 index 0000000..f40ab45 --- /dev/null +++ b/datasets/handleImage/label/订单1805852_51_7101016.txt @@ -0,0 +1 @@ +6 0.306719 0.451436 0.313724 0.540674 0.513203 0.528857 0.502695 0.440937 0.311979 0.450117 diff --git a/datasets/handleImage/label/订单1805854_51_7101019.txt b/datasets/handleImage/label/订单1805854_51_7101019.txt new file mode 100644 index 0000000..7c44f23 --- /dev/null +++ b/datasets/handleImage/label/订单1805854_51_7101019.txt @@ -0,0 +1 @@ +6 0.313611 0.454106 0.322361 0.580087 0.595324 0.566962 0.586574 0.443602 0.315359 0.452795 diff --git a/datasets/handleImage/label/订单1805857_51_7100976.txt b/datasets/handleImage/label/订单1805857_51_7100976.txt new file mode 100644 index 0000000..0da1be8 --- /dev/null +++ b/datasets/handleImage/label/订单1805857_51_7100976.txt @@ -0,0 +1 @@ +6 0.547203 0.380608 0.587438 0.557775 0.946144 0.515775 0.909399 0.338618 0.547203 0.377980 diff --git a/datasets/handleImage/label/订单1805860_51_7101109.txt b/datasets/handleImage/label/订单1805860_51_7101109.txt new file mode 100644 index 0000000..9cfb3f5 --- /dev/null +++ b/datasets/handleImage/label/订单1805860_51_7101109.txt @@ -0,0 +1 @@ +6 0.562187 0.519678 0.511445 0.619414 0.740664 0.681094 0.793164 0.574795 0.556940 0.514424 diff --git a/datasets/handleImage/label/订单1805861_51_7101063.txt b/datasets/handleImage/label/订单1805861_51_7101063.txt new file mode 100644 index 0000000..fe2a817 --- /dev/null +++ b/datasets/handleImage/label/订单1805861_51_7101063.txt @@ -0,0 +1 @@ +6 0.226237 0.439619 0.203490 0.556426 0.500951 0.560361 0.495703 0.444873 0.231484 0.440937 diff --git a/datasets/handleImage/label/订单1805862_51_7101209.txt b/datasets/handleImage/label/订单1805862_51_7101209.txt new file mode 100644 index 0000000..8c80a4e --- /dev/null +++ b/datasets/handleImage/label/订单1805862_51_7101209.txt @@ -0,0 +1 @@ +6 0.724893 0.452730 0.665400 0.524910 0.842133 0.593150 0.885880 0.517030 0.723147 0.452730 diff --git a/datasets/handleImage/label/订单1805864_51_7101126.txt b/datasets/handleImage/label/订单1805864_51_7101126.txt new file mode 100644 index 0000000..3ae26c6 --- /dev/null +++ b/datasets/handleImage/label/订单1805864_51_7101126.txt @@ -0,0 +1 @@ +6 0.355600 0.481658 0.359100 0.549900 0.528828 0.544654 0.518328 0.475100 0.360850 0.480346 diff --git a/datasets/handleImage/label/订单1805865_51_7101100.txt b/datasets/handleImage/label/订单1805865_51_7101100.txt new file mode 100644 index 0000000..b425399 --- /dev/null +++ b/datasets/handleImage/label/订单1805865_51_7101100.txt @@ -0,0 +1 @@ +6 0.441458 0.372695 0.439714 0.509180 0.730169 0.510488 0.723177 0.371387 0.444961 0.372695 diff --git a/datasets/handleImage/label/订单1805866_51_7101143.txt b/datasets/handleImage/label/订单1805866_51_7101143.txt new file mode 100644 index 0000000..81fe2c0 --- /dev/null +++ b/datasets/handleImage/label/订单1805866_51_7101143.txt @@ -0,0 +1 @@ +6 0.408789 0.471120 0.396973 0.607604 0.606947 0.625977 0.614824 0.488184 0.410098 0.469811 diff --git a/datasets/handleImage/label/订单1805867_51_7101219.txt b/datasets/handleImage/label/订单1805867_51_7101219.txt new file mode 100644 index 0000000..726bcc8 --- /dev/null +++ b/datasets/handleImage/label/订单1805867_51_7101219.txt @@ -0,0 +1 @@ +6 0.472962 0.461941 0.464215 0.589236 0.717933 0.606296 0.733682 0.473750 0.476462 0.460627 diff --git a/datasets/handleImage/label/订单1805869_51_7101160.txt b/datasets/handleImage/label/订单1805869_51_7101160.txt new file mode 100644 index 0000000..91b8b3a --- /dev/null +++ b/datasets/handleImage/label/订单1805869_51_7101160.txt @@ -0,0 +1 @@ +6 0.416821 0.368779 0.420321 0.472452 0.646038 0.468519 0.635538 0.356971 0.413321 0.367471 diff --git a/datasets/handleImage/label/订单1805870_51_7101223.txt b/datasets/handleImage/label/订单1805870_51_7101223.txt new file mode 100644 index 0000000..e1ce84f --- /dev/null +++ b/datasets/handleImage/label/订单1805870_51_7101223.txt @@ -0,0 +1 @@ +6 0.388821 0.040702 0.369577 0.221798 0.702038 0.254606 0.758026 0.093192 0.392321 0.040702 diff --git a/datasets/handleImage/label/订单1805871_51_7101186.txt b/datasets/handleImage/label/订单1805871_51_7101186.txt new file mode 100644 index 0000000..8cfbcff --- /dev/null +++ b/datasets/handleImage/label/订单1805871_51_7101186.txt @@ -0,0 +1 @@ +6 0.555086 0.527597 0.534080 0.623394 0.747557 0.654892 0.759813 0.556466 0.549828 0.524978 diff --git a/datasets/handleImage/label/订单1805872_51_7101190.txt b/datasets/handleImage/label/订单1805872_51_7101190.txt new file mode 100644 index 0000000..56d2491 --- /dev/null +++ b/datasets/handleImage/label/订单1805872_51_7101190.txt @@ -0,0 +1 @@ +6 0.391260 0.347793 0.405040 0.675880 0.585155 0.653567 0.552675 0.326800 0.393230 0.343860 diff --git a/datasets/handleImage/label/订单1805873_51_7101260.txt b/datasets/handleImage/label/订单1805873_51_7101260.txt new file mode 100644 index 0000000..78474ab --- /dev/null +++ b/datasets/handleImage/label/订单1805873_51_7101260.txt @@ -0,0 +1 @@ +6 0.436967 0.353049 0.471961 0.477725 0.727425 0.429167 0.699425 0.309745 0.438706 0.351735 diff --git a/datasets/handleImage/label/订单1805879_51_7101280.txt b/datasets/handleImage/label/订单1805879_51_7101280.txt new file mode 100644 index 0000000..55475f1 --- /dev/null +++ b/datasets/handleImage/label/订单1805879_51_7101280.txt @@ -0,0 +1 @@ +6 0.299727 0.223086 0.304974 0.363506 0.612930 0.351699 0.597187 0.209961 0.301471 0.224404 diff --git a/datasets/handleImage/label/订单1805883_51_7101311.txt b/datasets/handleImage/label/订单1805883_51_7101311.txt new file mode 100644 index 0000000..336525d --- /dev/null +++ b/datasets/handleImage/label/订单1805883_51_7101311.txt @@ -0,0 +1 @@ +6 0.322453 0.362180 0.315453 0.444860 0.492173 0.450100 0.486933 0.366110 0.327693 0.364800 diff --git a/datasets/handleImage/label/订单1805886_51_7101418.txt b/datasets/handleImage/label/订单1805886_51_7101418.txt new file mode 100644 index 0000000..9414583 --- /dev/null +++ b/datasets/handleImage/label/订单1805886_51_7101418.txt @@ -0,0 +1 @@ +6 0.371471 0.493428 0.322474 0.611543 0.579688 0.666660 0.611185 0.541982 0.373216 0.489492 diff --git a/datasets/handleImage/label/订单1805887_51_7101386.txt b/datasets/handleImage/label/订单1805887_51_7101386.txt new file mode 100644 index 0000000..342c53f --- /dev/null +++ b/datasets/handleImage/label/订单1805887_51_7101386.txt @@ -0,0 +1 @@ +6 0.450208 0.509180 0.423958 0.622041 0.674180 0.656162 0.696927 0.541982 0.448451 0.507861 diff --git a/datasets/handleImage/label/订单1805891_51_7101877.txt b/datasets/handleImage/label/订单1805891_51_7101877.txt new file mode 100644 index 0000000..16c9ec7 --- /dev/null +++ b/datasets/handleImage/label/订单1805891_51_7101877.txt @@ -0,0 +1 @@ +6 0.288689 0.593160 0.139956 0.696835 0.320767 0.737520 0.466578 0.627285 0.277022 0.590540 diff --git a/datasets/handleImage/label/订单1805893_51_7101437.txt b/datasets/handleImage/label/订单1805893_51_7101437.txt new file mode 100644 index 0000000..e36345c --- /dev/null +++ b/datasets/handleImage/label/订单1805893_51_7101437.txt @@ -0,0 +1 @@ +6 0.546445 0.416006 0.535951 0.509180 0.737174 0.531484 0.747669 0.431748 0.551693 0.416006 diff --git a/datasets/handleImage/label/订单1805894_51_7101473.txt b/datasets/handleImage/label/订单1805894_51_7101473.txt new file mode 100644 index 0000000..c342df6 --- /dev/null +++ b/datasets/handleImage/label/订单1805894_51_7101473.txt @@ -0,0 +1 @@ +6 0.324200 0.392360 0.313707 0.528840 0.640907 0.527530 0.630413 0.394990 0.318947 0.393670 diff --git a/datasets/handleImage/label/订单1805895_51_7101462.txt b/datasets/handleImage/label/订单1805895_51_7101462.txt new file mode 100644 index 0000000..248c756 --- /dev/null +++ b/datasets/handleImage/label/订单1805895_51_7101462.txt @@ -0,0 +1 @@ +6 0.339974 0.443564 0.339974 0.540674 0.546445 0.540674 0.548190 0.437002 0.338216 0.442246 diff --git a/datasets/handleImage/label/订单1805896_51_7101467.txt b/datasets/handleImage/label/订单1805896_51_7101467.txt new file mode 100644 index 0000000..c27c5b5 --- /dev/null +++ b/datasets/handleImage/label/订单1805896_51_7101467.txt @@ -0,0 +1 @@ +6 0.492173 0.510470 0.457187 0.570840 0.593667 0.602340 0.628667 0.541970 0.490427 0.513100 diff --git a/datasets/handleImage/label/订单1805898_51_7101436.txt b/datasets/handleImage/label/订单1805898_51_7101436.txt new file mode 100644 index 0000000..2f6f858 --- /dev/null +++ b/datasets/handleImage/label/订单1805898_51_7101436.txt @@ -0,0 +1 @@ +6 0.667167 0.465863 0.507942 0.481612 0.525442 0.645650 0.689917 0.636469 0.667167 0.469800 diff --git a/datasets/handleImage/label/订单1805902_51_7101479.txt b/datasets/handleImage/label/订单1805902_51_7101479.txt new file mode 100644 index 0000000..eb5edf3 --- /dev/null +++ b/datasets/handleImage/label/订单1805902_51_7101479.txt @@ -0,0 +1 @@ +6 0.490459 0.500000 0.467546 0.614173 0.719514 0.645669 0.737178 0.526250 0.488543 0.501309 diff --git a/datasets/handleImage/label/订单1805903_51_7101581.txt b/datasets/handleImage/label/订单1805903_51_7101581.txt new file mode 100644 index 0000000..abaf843 --- /dev/null +++ b/datasets/handleImage/label/订单1805903_51_7101581.txt @@ -0,0 +1 @@ +6 0.362696 0.524902 0.355703 0.618088 0.555163 0.616777 0.549918 0.528848 0.369690 0.527537 diff --git a/datasets/handleImage/label/订单1805904_51_7101531.txt b/datasets/handleImage/label/订单1805904_51_7101531.txt new file mode 100644 index 0000000..90819f4 --- /dev/null +++ b/datasets/handleImage/label/订单1805904_51_7101531.txt @@ -0,0 +1 @@ +6 0.346966 0.375322 0.339974 0.517051 0.633932 0.519678 0.628685 0.372695 0.345221 0.374004 diff --git a/datasets/handleImage/label/订单1805909_51_7101514.txt b/datasets/handleImage/label/订单1805909_51_7101514.txt new file mode 100644 index 0000000..c87e85f --- /dev/null +++ b/datasets/handleImage/label/订单1805909_51_7101514.txt @@ -0,0 +1 @@ +6 0.450315 0.330733 0.472950 0.593200 0.588110 0.574827 0.566455 0.322860 0.449330 0.329420 diff --git a/datasets/handleImage/label/订单1805910_51_7101614.txt b/datasets/handleImage/label/订单1805910_51_7101614.txt new file mode 100644 index 0000000..7e3285e --- /dev/null +++ b/datasets/handleImage/label/订单1805910_51_7101614.txt @@ -0,0 +1 @@ +6 0.306719 0.377939 0.283971 0.513115 0.556940 0.536738 0.581445 0.409443 0.301471 0.375322 diff --git a/datasets/handleImage/label/订单1805912_51_7101596.txt b/datasets/handleImage/label/订单1805912_51_7101596.txt new file mode 100644 index 0000000..49053f8 --- /dev/null +++ b/datasets/handleImage/label/订单1805912_51_7101596.txt @@ -0,0 +1 @@ +6 0.269861 0.643079 0.292606 0.729692 0.471083 0.694258 0.443089 0.611583 0.269861 0.643079 diff --git a/datasets/handleImage/label/订单1805915_51_7101634.txt b/datasets/handleImage/label/订单1805915_51_7101634.txt new file mode 100644 index 0000000..9e1f052 --- /dev/null +++ b/datasets/handleImage/label/订单1805915_51_7101634.txt @@ -0,0 +1 @@ +6 0.332969 0.444873 0.325977 0.559043 0.572695 0.557734 0.565690 0.443564 0.332969 0.443564 diff --git a/datasets/handleImage/label/订单1805917_51_7101680.txt b/datasets/handleImage/label/订单1805917_51_7101680.txt new file mode 100644 index 0000000..732a352 --- /dev/null +++ b/datasets/handleImage/label/订单1805917_51_7101680.txt @@ -0,0 +1 @@ +6 0.304947 0.627270 0.311947 0.750630 0.581413 0.737510 0.570920 0.612830 0.304947 0.628580 diff --git a/datasets/handleImage/label/订单1805918_51_7101608.txt b/datasets/handleImage/label/订单1805918_51_7101608.txt new file mode 100644 index 0000000..6192e3c --- /dev/null +++ b/datasets/handleImage/label/订单1805918_51_7101608.txt @@ -0,0 +1 @@ +6 0.269861 0.404233 0.259361 0.532842 0.539328 0.542029 0.544578 0.418667 0.271611 0.401608 diff --git a/datasets/handleImage/label/订单1805920_51_7101670.txt b/datasets/handleImage/label/订单1805920_51_7101670.txt new file mode 100644 index 0000000..2eda3ab --- /dev/null +++ b/datasets/handleImage/label/订单1805920_51_7101670.txt @@ -0,0 +1 @@ +6 0.714427 0.548545 0.665430 0.641719 0.884154 0.720459 0.938398 0.622041 0.719674 0.547236 diff --git a/datasets/handleImage/label/订单1805923_51_7101772.txt b/datasets/handleImage/label/订单1805923_51_7101772.txt new file mode 100644 index 0000000..dfc29ca --- /dev/null +++ b/datasets/handleImage/label/订单1805923_51_7101772.txt @@ -0,0 +1 @@ +6 0.268242 0.232328 0.182612 0.301883 0.274146 0.472483 0.356825 0.408178 0.271196 0.229700 diff --git a/datasets/handleImage/label/订单1805924_51_7101695.txt b/datasets/handleImage/label/订单1805924_51_7101695.txt new file mode 100644 index 0000000..0d67c87 --- /dev/null +++ b/datasets/handleImage/label/订单1805924_51_7101695.txt @@ -0,0 +1 @@ +6 0.282200 0.356930 0.283960 0.507850 0.590160 0.509160 0.584920 0.358240 0.289200 0.355620 diff --git a/datasets/handleImage/label/订单1805927_51_7101742.txt b/datasets/handleImage/label/订单1805927_51_7101742.txt new file mode 100644 index 0000000..679dba0 --- /dev/null +++ b/datasets/handleImage/label/订单1805927_51_7101742.txt @@ -0,0 +1 @@ +6 0.385458 0.426494 0.392458 0.541981 0.633925 0.532794 0.618175 0.418619 0.388958 0.422556 diff --git a/datasets/handleImage/label/订单1805928_51_7101736.txt b/datasets/handleImage/label/订单1805928_51_7101736.txt new file mode 100644 index 0000000..1c9554b5 --- /dev/null +++ b/datasets/handleImage/label/订单1805928_51_7101736.txt @@ -0,0 +1 @@ +6 0.082747 0.468496 0.096745 0.589229 0.367969 0.576104 0.357474 0.455371 0.082747 0.467178 diff --git a/datasets/handleImage/label/订单1805929_51_7101755.txt b/datasets/handleImage/label/订单1805929_51_7101755.txt new file mode 100644 index 0000000..8f6d753 --- /dev/null +++ b/datasets/handleImage/label/订单1805929_51_7101755.txt @@ -0,0 +1 @@ +6 0.364466 0.246709 0.366211 0.309697 0.520195 0.305762 0.507943 0.237520 0.364466 0.248018 diff --git a/datasets/handleImage/label/订单1805931_51_7101785.txt b/datasets/handleImage/label/订单1805931_51_7101785.txt new file mode 100644 index 0000000..15f3934 --- /dev/null +++ b/datasets/handleImage/label/订单1805931_51_7101785.txt @@ -0,0 +1 @@ +6 0.374958 0.335944 0.313717 0.393687 0.446700 0.472425 0.506192 0.417306 0.376708 0.337256 diff --git a/datasets/handleImage/label/订单1805932_51_7101790.txt b/datasets/handleImage/label/订单1805932_51_7101790.txt new file mode 100644 index 0000000..5c8b1bf --- /dev/null +++ b/datasets/handleImage/label/订单1805932_51_7101790.txt @@ -0,0 +1 @@ +6 0.321353 0.391068 0.308560 0.590547 0.394189 0.593171 0.407969 0.402884 0.320371 0.393691 diff --git a/datasets/handleImage/label/订单1805933_51_7101818.txt b/datasets/handleImage/label/订单1805933_51_7101818.txt new file mode 100644 index 0000000..8d0e1be --- /dev/null +++ b/datasets/handleImage/label/订单1805933_51_7101818.txt @@ -0,0 +1 @@ +6 0.448320 0.442253 0.427651 0.665345 0.534937 0.683724 0.557573 0.458001 0.450293 0.442253 diff --git a/datasets/handleImage/label/订单1805934_51_7101828.txt b/datasets/handleImage/label/订单1805934_51_7101828.txt new file mode 100644 index 0000000..0eed6f6 --- /dev/null +++ b/datasets/handleImage/label/订单1805934_51_7101828.txt @@ -0,0 +1 @@ +6 0.391464 0.395049 0.391464 0.519716 0.659190 0.519716 0.650431 0.383235 0.391464 0.395049 diff --git a/datasets/handleImage/label/订单1805936_51_7101821.txt b/datasets/handleImage/label/订单1805936_51_7101821.txt new file mode 100644 index 0000000..ebc8f16 --- /dev/null +++ b/datasets/handleImage/label/订单1805936_51_7101821.txt @@ -0,0 +1 @@ +6 0.411706 0.342510 0.411706 0.427812 0.590195 0.429121 0.591940 0.339883 0.416966 0.341201 diff --git a/datasets/handleImage/label/订单1805937_51_7101863.txt b/datasets/handleImage/label/订单1805937_51_7101863.txt new file mode 100644 index 0000000..15cc73d --- /dev/null +++ b/datasets/handleImage/label/订单1805937_51_7101863.txt @@ -0,0 +1 @@ +6 0.467680 0.387110 0.483427 0.490790 0.709147 0.472410 0.696907 0.366110 0.467680 0.385800 diff --git a/datasets/handleImage/label/订单1805939_51_7101971.txt b/datasets/handleImage/label/订单1805939_51_7101971.txt new file mode 100644 index 0000000..63246ea --- /dev/null +++ b/datasets/handleImage/label/订单1805939_51_7101971.txt @@ -0,0 +1 @@ +6 0.172002 0.734905 0.303232 0.874014 0.579701 0.704722 0.446715 0.577424 0.170251 0.734905 diff --git a/datasets/handleImage/label/订单1805940_51_7101888.txt b/datasets/handleImage/label/订单1805940_51_7101888.txt new file mode 100644 index 0000000..5407844 --- /dev/null +++ b/datasets/handleImage/label/订单1805940_51_7101888.txt @@ -0,0 +1 @@ +6 0.294333 0.459337 0.296090 0.594500 0.570795 0.599750 0.579551 0.464587 0.297833 0.454087 diff --git a/datasets/handleImage/label/订单1805941_51_7101899.txt b/datasets/handleImage/label/订单1805941_51_7101899.txt new file mode 100644 index 0000000..6f5b420 --- /dev/null +++ b/datasets/handleImage/label/订单1805941_51_7101899.txt @@ -0,0 +1 @@ +6 0.175372 0.406858 0.166622 0.468537 0.327606 0.482971 0.325856 0.417354 0.177122 0.405546 diff --git a/datasets/handleImage/label/订单1805942_51_7101907.txt b/datasets/handleImage/label/订单1805942_51_7101907.txt new file mode 100644 index 0000000..10f324f --- /dev/null +++ b/datasets/handleImage/label/订单1805942_51_7101907.txt @@ -0,0 +1 @@ +6 0.392440 0.442230 0.394187 0.577400 0.688147 0.590520 0.686400 0.446170 0.394187 0.442230 diff --git a/datasets/handleImage/label/订单1805943_51_7101918.txt b/datasets/handleImage/label/订单1805943_51_7101918.txt new file mode 100644 index 0000000..b4f9b62 --- /dev/null +++ b/datasets/handleImage/label/订单1805943_51_7101918.txt @@ -0,0 +1 @@ +6 0.409960 0.263807 0.429645 0.510527 0.549725 0.493467 0.532010 0.250680 0.409960 0.263807 diff --git a/datasets/handleImage/label/订单1805944_51_7101928.txt b/datasets/handleImage/label/订单1805944_51_7101928.txt new file mode 100644 index 0000000..d0578ef --- /dev/null +++ b/datasets/handleImage/label/订单1805944_51_7101928.txt @@ -0,0 +1 @@ +6 0.556940 0.485557 0.530690 0.664033 0.688177 0.667969 0.714427 0.498682 0.555195 0.485557 diff --git a/datasets/handleImage/label/订单1805947_51_7101939.txt b/datasets/handleImage/label/订单1805947_51_7101939.txt new file mode 100644 index 0000000..c25e1ad --- /dev/null +++ b/datasets/handleImage/label/订单1805947_51_7101939.txt @@ -0,0 +1 @@ +6 0.289232 0.457998 0.278724 0.545918 0.448451 0.555107 0.462461 0.464561 0.294479 0.455371 diff --git a/datasets/handleImage/label/订单1805948_51_7101958.txt b/datasets/handleImage/label/订单1805948_51_7101958.txt new file mode 100644 index 0000000..965f738 --- /dev/null +++ b/datasets/handleImage/label/订单1805948_51_7101958.txt @@ -0,0 +1 @@ +6 0.520078 0.526279 0.451839 0.610271 0.630317 0.691633 0.691556 0.602396 0.521828 0.528904 diff --git a/datasets/handleImage/label/订单1805960_51_7102030.txt b/datasets/handleImage/label/订单1805960_51_7102030.txt new file mode 100644 index 0000000..2b0a08d --- /dev/null +++ b/datasets/handleImage/label/订单1805960_51_7102030.txt @@ -0,0 +1 @@ +6 0.434321 0.276923 0.423821 0.397654 0.705538 0.405529 0.696782 0.275606 0.437821 0.274298 diff --git a/datasets/handleImage/label/订单1805963_51_7102062.txt b/datasets/handleImage/label/订单1805963_51_7102062.txt new file mode 100644 index 0000000..fccff40 --- /dev/null +++ b/datasets/handleImage/label/订单1805963_51_7102062.txt @@ -0,0 +1 @@ +6 0.362721 0.492119 0.357474 0.580039 0.546445 0.587920 0.548190 0.496055 0.362721 0.490801 diff --git a/datasets/handleImage/label/订单1805964_51_7102072.txt b/datasets/handleImage/label/订单1805964_51_7102072.txt new file mode 100644 index 0000000..521e82a --- /dev/null +++ b/datasets/handleImage/label/订单1805964_51_7102072.txt @@ -0,0 +1 @@ +6 0.282227 0.452744 0.296224 0.573486 0.544701 0.556426 0.528945 0.437002 0.278724 0.452744 diff --git a/datasets/handleImage/label/订单1805965_51_7102082.txt b/datasets/handleImage/label/订单1805965_51_7102082.txt new file mode 100644 index 0000000..1c727d8 --- /dev/null +++ b/datasets/handleImage/label/订单1805965_51_7102082.txt @@ -0,0 +1 @@ +6 0.640938 0.539365 0.553438 0.608916 0.707422 0.711279 0.784414 0.637783 0.640938 0.536738 diff --git a/datasets/handleImage/label/订单1805967_51_7102112.txt b/datasets/handleImage/label/订单1805967_51_7102112.txt new file mode 100644 index 0000000..4ca7e34 --- /dev/null +++ b/datasets/handleImage/label/订单1805967_51_7102112.txt @@ -0,0 +1 @@ +6 0.136992 0.451436 0.142240 0.551172 0.355716 0.539365 0.341719 0.434375 0.143997 0.450117 diff --git a/datasets/handleImage/label/订单1805968_51_7102108.txt b/datasets/handleImage/label/订单1805968_51_7102108.txt new file mode 100644 index 0000000..8cc2741 --- /dev/null +++ b/datasets/handleImage/label/订单1805968_51_7102108.txt @@ -0,0 +1 @@ +6 0.290977 0.527549 0.317227 0.635166 0.539440 0.606289 0.520195 0.496055 0.290977 0.528857 diff --git a/datasets/handleImage/label/订单1805969_51_7102119.txt b/datasets/handleImage/label/订单1805969_51_7102119.txt new file mode 100644 index 0000000..e3f8385 --- /dev/null +++ b/datasets/handleImage/label/订单1805969_51_7102119.txt @@ -0,0 +1 @@ +6 0.417828 0.367477 0.439485 0.555137 0.667828 0.527582 0.653069 0.333353 0.417828 0.368784 diff --git a/datasets/handleImage/label/订单1805970_51_7102143.txt b/datasets/handleImage/label/订单1805970_51_7102143.txt new file mode 100644 index 0000000..80d26e8 --- /dev/null +++ b/datasets/handleImage/label/订单1805970_51_7102143.txt @@ -0,0 +1 @@ +6 0.444961 0.531484 0.430964 0.615479 0.602435 0.633848 0.607682 0.543301 0.450208 0.532803 diff --git a/datasets/handleImage/label/订单1805971_51_7102162.txt b/datasets/handleImage/label/订单1805971_51_7102162.txt new file mode 100644 index 0000000..91e39bd --- /dev/null +++ b/datasets/handleImage/label/订单1805971_51_7102162.txt @@ -0,0 +1 @@ +6 0.338535 0.524233 0.356909 0.643656 0.564256 0.622653 0.545882 0.492734 0.334602 0.521603 diff --git a/datasets/handleImage/label/订单1805972_51_7102129.txt b/datasets/handleImage/label/订单1805972_51_7102129.txt new file mode 100644 index 0000000..ce8d934 --- /dev/null +++ b/datasets/handleImage/label/订单1805972_51_7102129.txt @@ -0,0 +1 @@ +6 0.388947 0.360870 0.401187 0.557720 0.803640 0.551150 0.791387 0.349050 0.390693 0.362180 diff --git a/datasets/handleImage/label/订单1805975_51_7102175.txt b/datasets/handleImage/label/订单1805975_51_7102175.txt new file mode 100644 index 0000000..ecb0133 --- /dev/null +++ b/datasets/handleImage/label/订单1805975_51_7102175.txt @@ -0,0 +1 @@ +6 0.453711 0.438311 0.446706 0.564297 0.712669 0.568232 0.716172 0.437002 0.457201 0.437002 diff --git a/datasets/handleImage/label/订单1805976_51_7102161.txt b/datasets/handleImage/label/订单1805976_51_7102161.txt new file mode 100644 index 0000000..df3671f --- /dev/null +++ b/datasets/handleImage/label/订单1805976_51_7102161.txt @@ -0,0 +1 @@ +6 0.215778 0.493425 0.189533 0.569540 0.469500 0.583975 0.492822 0.507860 0.212856 0.492115 diff --git a/datasets/handleImage/label/订单1805979_51_7102191.txt b/datasets/handleImage/label/订单1805979_51_7102191.txt new file mode 100644 index 0000000..e030ef2 --- /dev/null +++ b/datasets/handleImage/label/订单1805979_51_7102191.txt @@ -0,0 +1 @@ +6 0.584920 0.494720 0.472933 0.566900 0.640907 0.707320 0.751147 0.629890 0.583160 0.492100 diff --git a/datasets/handleImage/label/订单1805981_51_7102216.txt b/datasets/handleImage/label/订单1805981_51_7102216.txt new file mode 100644 index 0000000..bfde781 --- /dev/null +++ b/datasets/handleImage/label/订单1805981_51_7102216.txt @@ -0,0 +1 @@ +6 0.138628 0.612896 0.131628 0.700821 0.343350 0.691633 0.332850 0.601083 0.138628 0.610271 diff --git a/datasets/handleImage/label/订单1805984_51_7102238.txt b/datasets/handleImage/label/订单1805984_51_7102238.txt new file mode 100644 index 0000000..9607ee5 --- /dev/null +++ b/datasets/handleImage/label/订单1805984_51_7102238.txt @@ -0,0 +1 @@ +6 0.143859 0.383221 0.156103 0.498702 0.395821 0.490827 0.388821 0.379279 0.142103 0.383221 diff --git a/datasets/handleImage/label/订单1805985_51_7102220.txt b/datasets/handleImage/label/订单1805985_51_7102220.txt new file mode 100644 index 0000000..ad7c26d --- /dev/null +++ b/datasets/handleImage/label/订单1805985_51_7102220.txt @@ -0,0 +1 @@ +6 0.486953 0.610225 0.476458 0.709961 0.695182 0.725713 0.700430 0.622041 0.485208 0.608916 diff --git a/datasets/handleImage/label/订单1805988_51_7102280.txt b/datasets/handleImage/label/订单1805988_51_7102280.txt new file mode 100644 index 0000000..d33b58a --- /dev/null +++ b/datasets/handleImage/label/订单1805988_51_7102280.txt @@ -0,0 +1 @@ +6 0.140467 0.318870 0.143973 0.429110 0.380187 0.421230 0.371440 0.311000 0.140467 0.318870 diff --git a/datasets/handleImage/label/订单1805989_51_7102267.txt b/datasets/handleImage/label/订单1805989_51_7102267.txt new file mode 100644 index 0000000..186a4be --- /dev/null +++ b/datasets/handleImage/label/订单1805989_51_7102267.txt @@ -0,0 +1 @@ +6 0.252453 0.422550 0.264707 0.506530 0.453680 0.488160 0.436187 0.404170 0.254213 0.423860 diff --git a/datasets/handleImage/label/订单1805990_51_7102467.txt b/datasets/handleImage/label/订单1805990_51_7102467.txt new file mode 100644 index 0000000..843b697 --- /dev/null +++ b/datasets/handleImage/label/订单1805990_51_7102467.txt @@ -0,0 +1 @@ +6 0.415094 0.564338 0.411594 0.640454 0.584822 0.644392 0.570822 0.566963 0.415094 0.563025 diff --git a/datasets/handleImage/label/订单1805993_51_7102311.txt b/datasets/handleImage/label/订单1805993_51_7102311.txt new file mode 100644 index 0000000..fba9cb9 --- /dev/null +++ b/datasets/handleImage/label/订单1805993_51_7102311.txt @@ -0,0 +1 @@ +6 0.475747 0.643073 0.475747 0.711313 0.601733 0.706060 0.595173 0.628633 0.471813 0.637820 diff --git a/datasets/handleImage/label/订单1805996_51_7102352.txt b/datasets/handleImage/label/订单1805996_51_7102352.txt new file mode 100644 index 0000000..a6065a9 --- /dev/null +++ b/datasets/handleImage/label/订单1805996_51_7102352.txt @@ -0,0 +1 @@ +6 0.416966 0.321514 0.415208 0.421250 0.618190 0.427812 0.619935 0.325449 0.413464 0.320205 diff --git a/datasets/handleImage/label/订单1805997_51_7102410.txt b/datasets/handleImage/label/订单1805997_51_7102410.txt new file mode 100644 index 0000000..4803f22 --- /dev/null +++ b/datasets/handleImage/label/订单1805997_51_7102410.txt @@ -0,0 +1 @@ +6 0.374947 0.484230 0.374947 0.587900 0.593667 0.587900 0.584920 0.482910 0.373187 0.482910 diff --git a/datasets/handleImage/label/订单1805998_51_7102420.txt b/datasets/handleImage/label/订单1805998_51_7102420.txt new file mode 100644 index 0000000..6b90651 --- /dev/null +++ b/datasets/handleImage/label/订单1805998_51_7102420.txt @@ -0,0 +1 @@ +6 0.416966 0.438311 0.415208 0.548545 0.642682 0.545918 0.633932 0.435684 0.416966 0.437002 diff --git a/datasets/handleImage/label/订单1806000_51_7102336.txt b/datasets/handleImage/label/订单1806000_51_7102336.txt new file mode 100644 index 0000000..d4e754b --- /dev/null +++ b/datasets/handleImage/label/订单1806000_51_7102336.txt @@ -0,0 +1 @@ +6 0.339974 0.586602 0.387214 0.654844 0.539440 0.599727 0.485208 0.530176 0.336471 0.583984 diff --git a/datasets/handleImage/label/订单1806006_51_7102373.txt b/datasets/handleImage/label/订单1806006_51_7102373.txt new file mode 100644 index 0000000..6608bf1 --- /dev/null +++ b/datasets/handleImage/label/订单1806006_51_7102373.txt @@ -0,0 +1 @@ +6 0.542828 0.359613 0.518328 0.437042 0.688056 0.459350 0.709056 0.379300 0.546328 0.358300 diff --git a/datasets/handleImage/label/订单1806008_51_7102438.txt b/datasets/handleImage/label/订单1806008_51_7102438.txt new file mode 100644 index 0000000..c93366f --- /dev/null +++ b/datasets/handleImage/label/订单1806008_51_7102438.txt @@ -0,0 +1 @@ +6 0.352208 0.501294 0.387208 0.608906 0.612925 0.566912 0.577933 0.456675 0.352208 0.501294 diff --git a/datasets/handleImage/label/订单1806010_51_7102491.txt b/datasets/handleImage/label/订单1806010_51_7102491.txt new file mode 100644 index 0000000..6e1e62d --- /dev/null +++ b/datasets/handleImage/label/订单1806010_51_7102491.txt @@ -0,0 +1 @@ +6 0.431591 0.538054 0.439467 0.632541 0.547736 0.616795 0.538872 0.524930 0.433558 0.535431 diff --git a/datasets/handleImage/label/订单1806011_51_7102502.txt b/datasets/handleImage/label/订单1806011_51_7102502.txt new file mode 100644 index 0000000..db2b47c --- /dev/null +++ b/datasets/handleImage/label/订单1806011_51_7102502.txt @@ -0,0 +1 @@ +6 0.367850 0.486908 0.395844 0.544654 0.528828 0.514467 0.504333 0.456725 0.364350 0.484283 diff --git a/datasets/handleImage/label/订单1806014_51_7102538.txt b/datasets/handleImage/label/订单1806014_51_7102538.txt new file mode 100644 index 0000000..380a2aa --- /dev/null +++ b/datasets/handleImage/label/订单1806014_51_7102538.txt @@ -0,0 +1 @@ +6 0.486849 0.391108 0.504271 0.540716 0.769206 0.522343 0.744805 0.380608 0.488594 0.391108 diff --git a/datasets/handleImage/label/订单1806018_51_7102536.txt b/datasets/handleImage/label/订单1806018_51_7102536.txt new file mode 100644 index 0000000..ec05b57 --- /dev/null +++ b/datasets/handleImage/label/订单1806018_51_7102536.txt @@ -0,0 +1 @@ +6 0.332762 0.488216 0.338010 0.615520 0.588560 0.611578 0.585052 0.490843 0.338010 0.489529 diff --git a/datasets/handleImage/label/订单1806019_51_7102564.txt b/datasets/handleImage/label/订单1806019_51_7102564.txt new file mode 100644 index 0000000..e804f56 --- /dev/null +++ b/datasets/handleImage/label/订单1806019_51_7102564.txt @@ -0,0 +1 @@ +6 0.511445 0.438311 0.514948 0.519678 0.684674 0.515742 0.670677 0.433066 0.507943 0.437002 diff --git a/datasets/handleImage/label/订单1806020_51_7102512.txt b/datasets/handleImage/label/订单1806020_51_7102512.txt new file mode 100644 index 0000000..d84e3c3 --- /dev/null +++ b/datasets/handleImage/label/订单1806020_51_7102512.txt @@ -0,0 +1 @@ +6 0.290977 0.451436 0.283971 0.556426 0.518451 0.559043 0.518451 0.452744 0.290977 0.451436 diff --git a/datasets/handleImage/label/订单1806022_51_7102599.txt b/datasets/handleImage/label/订单1806022_51_7102599.txt new file mode 100644 index 0000000..5bd8f6a --- /dev/null +++ b/datasets/handleImage/label/订单1806022_51_7102599.txt @@ -0,0 +1 @@ +6 0.391543 0.528906 0.389213 0.628646 0.666852 0.629957 0.662176 0.523655 0.391543 0.527595 diff --git a/datasets/handleImage/label/订单1806029_51_7102584.txt b/datasets/handleImage/label/订单1806029_51_7102584.txt new file mode 100644 index 0000000..f76f6f8 --- /dev/null +++ b/datasets/handleImage/label/订单1806029_51_7102584.txt @@ -0,0 +1 @@ +6 0.369600 0.282183 0.366100 0.393733 0.600567 0.388483 0.593572 0.274313 0.369600 0.283496 diff --git a/datasets/handleImage/label/订单1806031_51_7102704.txt b/datasets/handleImage/label/订单1806031_51_7102704.txt new file mode 100644 index 0000000..c55724d --- /dev/null +++ b/datasets/handleImage/label/订单1806031_51_7102704.txt @@ -0,0 +1 @@ +6 0.192872 0.147012 0.154372 0.232317 0.339850 0.288746 0.378344 0.200821 0.196367 0.144392 diff --git a/datasets/handleImage/label/订单1806033_51_7102627.txt b/datasets/handleImage/label/订单1806033_51_7102627.txt new file mode 100644 index 0000000..0e55024 --- /dev/null +++ b/datasets/handleImage/label/订单1806033_51_7102627.txt @@ -0,0 +1 @@ +6 0.427461 0.451436 0.446706 0.547236 0.635677 0.532803 0.626940 0.438311 0.423958 0.452744 diff --git a/datasets/handleImage/label/订单1806036_51_7102652.txt b/datasets/handleImage/label/订单1806036_51_7102652.txt new file mode 100644 index 0000000..433651c --- /dev/null +++ b/datasets/handleImage/label/订单1806036_51_7102652.txt @@ -0,0 +1 @@ +6 0.429049 0.427820 0.431380 0.484247 0.615199 0.477690 0.605890 0.418633 0.433712 0.426505 diff --git a/datasets/handleImage/label/订单1806040_51_7102691.txt b/datasets/handleImage/label/订单1806040_51_7102691.txt new file mode 100644 index 0000000..f49d927 --- /dev/null +++ b/datasets/handleImage/label/订单1806040_51_7102691.txt @@ -0,0 +1 @@ +6 0.235231 0.384549 0.246898 0.464601 0.515201 0.444922 0.491867 0.363550 0.239907 0.384549 diff --git a/datasets/handleImage/label/订单1806042_51_7102728.txt b/datasets/handleImage/label/订单1806042_51_7102728.txt new file mode 100644 index 0000000..da68f96 --- /dev/null +++ b/datasets/handleImage/label/订单1806042_51_7102728.txt @@ -0,0 +1 @@ +6 0.304856 0.515783 0.296106 0.627329 0.537578 0.628642 0.537578 0.514467 0.308356 0.514467 diff --git a/datasets/handleImage/label/订单1806043_51_7102888.txt b/datasets/handleImage/label/订单1806043_51_7102888.txt new file mode 100644 index 0000000..e3c66b6 --- /dev/null +++ b/datasets/handleImage/label/订单1806043_51_7102888.txt @@ -0,0 +1 @@ +6 0.437839 0.456725 0.453589 0.542029 0.623317 0.524967 0.607567 0.435729 0.441339 0.458037 diff --git a/datasets/handleImage/label/订单1806044_51_7102661.txt b/datasets/handleImage/label/订单1806044_51_7102661.txt new file mode 100644 index 0000000..2908a97 --- /dev/null +++ b/datasets/handleImage/label/订单1806044_51_7102661.txt @@ -0,0 +1 @@ +6 0.282227 0.536738 0.287474 0.646973 0.521953 0.644346 0.516693 0.527549 0.285729 0.534111 diff --git a/datasets/handleImage/label/订单1806050_51_7102748.txt b/datasets/handleImage/label/订单1806050_51_7102748.txt new file mode 100644 index 0000000..cf49433 --- /dev/null +++ b/datasets/handleImage/label/订单1806050_51_7102748.txt @@ -0,0 +1 @@ +6 0.280482 0.480303 0.276979 0.619414 0.555195 0.629912 0.562187 0.482930 0.287474 0.478994 diff --git a/datasets/handleImage/label/订单1806053_51_7102727.txt b/datasets/handleImage/label/订单1806053_51_7102727.txt new file mode 100644 index 0000000..fe63888 --- /dev/null +++ b/datasets/handleImage/label/订单1806053_51_7102727.txt @@ -0,0 +1 @@ +6 0.315380 0.442314 0.299635 0.637851 0.695088 0.654912 0.698582 0.454123 0.318874 0.440998 diff --git a/datasets/handleImage/label/订单1806056_51_7102894.txt b/datasets/handleImage/label/订单1806056_51_7102894.txt new file mode 100644 index 0000000..964e93c --- /dev/null +++ b/datasets/handleImage/label/订单1806056_51_7102894.txt @@ -0,0 +1 @@ +6 0.645228 0.266468 0.632431 0.564372 0.777118 0.573558 0.784990 0.271720 0.645228 0.267784 diff --git a/datasets/handleImage/label/订单1806058_51_7102805.txt b/datasets/handleImage/label/订单1806058_51_7102805.txt new file mode 100644 index 0000000..357c0ea --- /dev/null +++ b/datasets/handleImage/label/订单1806058_51_7102805.txt @@ -0,0 +1 @@ +6 0.359112 0.557787 0.359112 0.669334 0.597077 0.670645 0.595328 0.559098 0.359112 0.555164 diff --git a/datasets/handleImage/label/订单1806059_51_7102841.txt b/datasets/handleImage/label/订单1806059_51_7102841.txt new file mode 100644 index 0000000..9a3739c --- /dev/null +++ b/datasets/handleImage/label/订单1806059_51_7102841.txt @@ -0,0 +1 @@ +6 0.453588 0.576155 0.472836 0.728385 0.598819 0.720512 0.581331 0.565651 0.453588 0.574835 diff --git a/datasets/handleImage/label/订单1806060_51_7102808.txt b/datasets/handleImage/label/订单1806060_51_7102808.txt new file mode 100644 index 0000000..45a95cb --- /dev/null +++ b/datasets/handleImage/label/订单1806060_51_7102808.txt @@ -0,0 +1 @@ +6 0.390716 0.473740 0.397708 0.597100 0.637435 0.597100 0.633932 0.475059 0.392461 0.472432 diff --git a/datasets/handleImage/label/订单1806062_51_7103083.txt b/datasets/handleImage/label/订单1806062_51_7103083.txt new file mode 100644 index 0000000..b1ec483 --- /dev/null +++ b/datasets/handleImage/label/订单1806062_51_7103083.txt @@ -0,0 +1 @@ +6 0.395195 0.426533 0.393230 0.548580 0.532010 0.560393 0.527085 0.440973 0.399135 0.425220 diff --git a/datasets/handleImage/label/订单1806064_51_7102915.txt b/datasets/handleImage/label/订单1806064_51_7102915.txt new file mode 100644 index 0000000..4d8cec6 --- /dev/null +++ b/datasets/handleImage/label/订单1806064_51_7102915.txt @@ -0,0 +1 @@ +6 0.432708 0.510488 0.483451 0.597100 0.667174 0.534111 0.614687 0.447500 0.430964 0.507861 diff --git a/datasets/handleImage/label/订单1806067_51_7103041.txt b/datasets/handleImage/label/订单1806067_51_7103041.txt new file mode 100644 index 0000000..9e88c38 --- /dev/null +++ b/datasets/handleImage/label/订单1806067_51_7103041.txt @@ -0,0 +1 @@ +6 0.381947 0.511780 0.376693 0.591840 0.539427 0.590520 0.539427 0.511780 0.378440 0.507850 diff --git a/datasets/handleImage/label/订单1806068_51_7102992.txt b/datasets/handleImage/label/订单1806068_51_7102992.txt new file mode 100644 index 0000000..05f70a3 --- /dev/null +++ b/datasets/handleImage/label/订单1806068_51_7102992.txt @@ -0,0 +1 @@ +6 0.362721 0.478994 0.359219 0.603662 0.611185 0.608916 0.618190 0.481621 0.364466 0.477686 diff --git a/datasets/handleImage/label/订单1806070_51_7102892.txt b/datasets/handleImage/label/订单1806070_51_7102892.txt new file mode 100644 index 0000000..92e2382 --- /dev/null +++ b/datasets/handleImage/label/订单1806070_51_7102892.txt @@ -0,0 +1 @@ +6 0.404594 0.309746 0.406344 0.384546 0.546328 0.381921 0.544578 0.303183 0.402844 0.312371 diff --git a/datasets/handleImage/label/订单1806071_51_7102940.txt b/datasets/handleImage/label/订单1806071_51_7102940.txt new file mode 100644 index 0000000..e89f238 --- /dev/null +++ b/datasets/handleImage/label/订单1806071_51_7102940.txt @@ -0,0 +1 @@ +6 0.341719 0.329385 0.318971 0.409443 0.499206 0.431748 0.511445 0.349072 0.348724 0.325449 diff --git a/datasets/handleImage/label/订单1806072_51_7102966.txt b/datasets/handleImage/label/订单1806072_51_7102966.txt new file mode 100644 index 0000000..b5b879c --- /dev/null +++ b/datasets/handleImage/label/订单1806072_51_7102966.txt @@ -0,0 +1 @@ +6 0.403997 0.280789 0.382341 0.574751 0.511277 0.589189 0.531946 0.299159 0.405965 0.279474 diff --git a/datasets/handleImage/label/订单1806073_51_7103007.txt b/datasets/handleImage/label/订单1806073_51_7103007.txt new file mode 100644 index 0000000..5801ed9 --- /dev/null +++ b/datasets/handleImage/label/订单1806073_51_7103007.txt @@ -0,0 +1 @@ +6 0.273453 0.486850 0.275200 0.561650 0.443187 0.541970 0.429187 0.467160 0.276960 0.484230 diff --git a/datasets/handleImage/label/订单1806074_51_7102995.txt b/datasets/handleImage/label/订单1806074_51_7102995.txt new file mode 100644 index 0000000..b158cd6 --- /dev/null +++ b/datasets/handleImage/label/订单1806074_51_7102995.txt @@ -0,0 +1 @@ +6 0.369714 0.356943 0.374961 0.478994 0.618190 0.477686 0.619935 0.353008 0.371471 0.355635 diff --git a/datasets/handleImage/label/订单1806078_51_7103036.txt b/datasets/handleImage/label/订单1806078_51_7103036.txt new file mode 100644 index 0000000..e429fc2 --- /dev/null +++ b/datasets/handleImage/label/订单1806078_51_7103036.txt @@ -0,0 +1 @@ +6 0.318856 0.511846 0.322356 0.608958 0.523578 0.615517 0.527078 0.518404 0.315356 0.510533 diff --git a/datasets/handleImage/label/订单1806079_51_7103004.txt b/datasets/handleImage/label/订单1806079_51_7103004.txt new file mode 100644 index 0000000..90dfd95 --- /dev/null +++ b/datasets/handleImage/label/订单1806079_51_7103004.txt @@ -0,0 +1 @@ +6 0.376719 0.346445 0.317227 0.442246 0.511445 0.503926 0.565690 0.405498 0.381966 0.343818 diff --git a/datasets/handleImage/label/订单1806081_51_7102935.txt b/datasets/handleImage/label/订单1806081_51_7102935.txt new file mode 100644 index 0000000..29dfe10 --- /dev/null +++ b/datasets/handleImage/label/订单1806081_51_7102935.txt @@ -0,0 +1 @@ +6 0.411706 0.608916 0.416966 0.702090 0.609440 0.700781 0.598932 0.604980 0.422214 0.607598 diff --git a/datasets/handleImage/label/订单1806083_51_7102978.txt b/datasets/handleImage/label/订单1806083_51_7102978.txt new file mode 100644 index 0000000..28d84f3 --- /dev/null +++ b/datasets/handleImage/label/订单1806083_51_7102978.txt @@ -0,0 +1 @@ +6 0.262861 0.480346 0.282111 0.584021 0.499083 0.553837 0.471083 0.451475 0.262861 0.477725 diff --git a/datasets/handleImage/label/订单1806085_51_7103039.txt b/datasets/handleImage/label/订单1806085_51_7103039.txt new file mode 100644 index 0000000..d98613b --- /dev/null +++ b/datasets/handleImage/label/订单1806085_51_7103039.txt @@ -0,0 +1 @@ +6 0.424402 0.467189 0.422071 0.523616 0.570982 0.519680 0.561672 0.461938 0.429049 0.465874 diff --git a/datasets/handleImage/label/订单1806088_51_7103121.txt b/datasets/handleImage/label/订单1806088_51_7103121.txt new file mode 100644 index 0000000..266ba58 --- /dev/null +++ b/datasets/handleImage/label/订单1806088_51_7103121.txt @@ -0,0 +1 @@ +6 0.374821 0.408154 0.362577 0.530202 0.616295 0.539385 0.619795 0.416029 0.367821 0.406837 diff --git a/datasets/handleImage/label/订单1806091_51_7103122.txt b/datasets/handleImage/label/订单1806091_51_7103122.txt new file mode 100644 index 0000000..2a14031 --- /dev/null +++ b/datasets/handleImage/label/订单1806091_51_7103122.txt @@ -0,0 +1 @@ +6 0.406458 0.370068 0.392461 0.475059 0.616432 0.492119 0.626940 0.380566 0.411706 0.370068 diff --git a/datasets/handleImage/label/订单1806093_51_7103269.txt b/datasets/handleImage/label/订单1806093_51_7103269.txt new file mode 100644 index 0000000..73dbd48 --- /dev/null +++ b/datasets/handleImage/label/订单1806093_51_7103269.txt @@ -0,0 +1 @@ +6 0.423086 0.412072 0.413354 0.647028 0.476299 0.672972 0.487334 0.427928 0.423086 0.410629 diff --git a/datasets/handleImage/label/订单1806100_51_7103196.txt b/datasets/handleImage/label/订单1806100_51_7103196.txt new file mode 100644 index 0000000..aa61a0a --- /dev/null +++ b/datasets/handleImage/label/订单1806100_51_7103196.txt @@ -0,0 +1 @@ +6 0.370929 0.543324 0.370929 0.632564 0.635851 0.633873 0.633533 0.542010 0.375573 0.543324 diff --git a/datasets/handleImage/label/订单1806101_51_7103288.txt b/datasets/handleImage/label/订单1806101_51_7103288.txt new file mode 100644 index 0000000..f185ded --- /dev/null +++ b/datasets/handleImage/label/订单1806101_51_7103288.txt @@ -0,0 +1 @@ +6 0.269974 0.408125 0.278724 0.582666 0.661927 0.582666 0.663685 0.408125 0.276979 0.404189 diff --git a/datasets/handleImage/label/订单1806105_51_7103283.txt b/datasets/handleImage/label/订单1806105_51_7103283.txt new file mode 100644 index 0000000..1c803ce --- /dev/null +++ b/datasets/handleImage/label/订单1806105_51_7103283.txt @@ -0,0 +1 @@ +6 0.262861 0.450163 0.259361 0.566963 0.539328 0.566963 0.528828 0.446229 0.264611 0.447537 diff --git a/datasets/handleImage/label/订单1806106_51_7103306.txt b/datasets/handleImage/label/订单1806106_51_7103306.txt new file mode 100644 index 0000000..7b028a7 --- /dev/null +++ b/datasets/handleImage/label/订单1806106_51_7103306.txt @@ -0,0 +1 @@ +6 0.488588 0.523655 0.476343 0.608958 0.686308 0.624705 0.693310 0.535469 0.488588 0.522344 diff --git a/datasets/handleImage/label/订单1806107_51_7103354.txt b/datasets/handleImage/label/订单1806107_51_7103354.txt new file mode 100644 index 0000000..65a2389 --- /dev/null +++ b/datasets/handleImage/label/订单1806107_51_7103354.txt @@ -0,0 +1 @@ +6 0.134122 0.763765 0.218689 0.817570 0.422833 0.769015 0.338267 0.711275 0.125367 0.762455 diff --git a/datasets/handleImage/label/订单1806110_51_7103334.txt b/datasets/handleImage/label/订单1806110_51_7103334.txt new file mode 100644 index 0000000..5590164 --- /dev/null +++ b/datasets/handleImage/label/订单1806110_51_7103334.txt @@ -0,0 +1 @@ +6 0.770392 0.425172 0.621667 0.426483 0.612908 0.598395 0.766895 0.598395 0.773889 0.425172 diff --git a/datasets/handleImage/label/订单1806113_51_7103433.txt b/datasets/handleImage/label/订单1806113_51_7103433.txt new file mode 100644 index 0000000..7847fdd --- /dev/null +++ b/datasets/handleImage/label/订单1806113_51_7103433.txt @@ -0,0 +1 @@ +6 0.588438 0.332012 0.581445 0.427812 0.796667 0.439619 0.801914 0.338574 0.590195 0.332012 diff --git a/datasets/handleImage/label/订单1806114_51_7103385.txt b/datasets/handleImage/label/订单1806114_51_7103385.txt new file mode 100644 index 0000000..fe978f3 --- /dev/null +++ b/datasets/handleImage/label/订单1806114_51_7103385.txt @@ -0,0 +1 @@ +6 0.219232 0.418623 0.213984 0.536738 0.479948 0.536738 0.474701 0.417314 0.219232 0.418623 diff --git a/datasets/handleImage/label/订单1806115_51_7103376.txt b/datasets/handleImage/label/订单1806115_51_7103376.txt new file mode 100644 index 0000000..5c91396 --- /dev/null +++ b/datasets/handleImage/label/订单1806115_51_7103376.txt @@ -0,0 +1 @@ +6 0.441523 0.419980 0.451992 0.527588 0.682057 0.514471 0.671602 0.408167 0.441523 0.419980 diff --git a/datasets/handleImage/label/订单1806116_51_7103437.txt b/datasets/handleImage/label/订单1806116_51_7103437.txt new file mode 100644 index 0000000..8eeb9b7 --- /dev/null +++ b/datasets/handleImage/label/订单1806116_51_7103437.txt @@ -0,0 +1 @@ +6 0.507956 0.490801 0.506198 0.580039 0.702174 0.580039 0.696927 0.493428 0.506198 0.488184 diff --git a/datasets/handleImage/label/订单1806117_51_7103452.txt b/datasets/handleImage/label/订单1806117_51_7103452.txt new file mode 100644 index 0000000..7e48def --- /dev/null +++ b/datasets/handleImage/label/订单1806117_51_7103452.txt @@ -0,0 +1 @@ +6 0.429961 0.384549 0.436967 0.480343 0.681935 0.472471 0.676680 0.366176 0.435216 0.384549 diff --git a/datasets/handleImage/label/订单1806118_51_7103420.txt b/datasets/handleImage/label/订单1806118_51_7103420.txt new file mode 100644 index 0000000..daea004 --- /dev/null +++ b/datasets/handleImage/label/订单1806118_51_7103420.txt @@ -0,0 +1 @@ +6 0.598932 0.501299 0.500951 0.604980 0.707422 0.691592 0.803659 0.601045 0.597187 0.494746 diff --git a/datasets/handleImage/label/订单1806120_51_7103423.txt b/datasets/handleImage/label/订单1806120_51_7103423.txt new file mode 100644 index 0000000..c587b7e --- /dev/null +++ b/datasets/handleImage/label/订单1806120_51_7103423.txt @@ -0,0 +1 @@ +6 0.352214 0.431748 0.357474 0.506553 0.546445 0.505244 0.525443 0.422559 0.352214 0.429121 diff --git a/datasets/handleImage/label/订单1806123_51_7103545.txt b/datasets/handleImage/label/订单1806123_51_7103545.txt new file mode 100644 index 0000000..760ba07 --- /dev/null +++ b/datasets/handleImage/label/订单1806123_51_7103545.txt @@ -0,0 +1 @@ +6 0.453405 0.324141 0.462591 0.485560 0.715872 0.486868 0.713249 0.320202 0.450781 0.322826 diff --git a/datasets/handleImage/label/订单1806125_51_7103474.txt b/datasets/handleImage/label/订单1806125_51_7103474.txt new file mode 100644 index 0000000..f18cb27 --- /dev/null +++ b/datasets/handleImage/label/订单1806125_51_7103474.txt @@ -0,0 +1 @@ +6 0.526105 0.354360 0.559565 0.484280 0.706220 0.434407 0.674725 0.305800 0.529055 0.355667 diff --git a/datasets/handleImage/label/订单1806126_51_7103481.txt b/datasets/handleImage/label/订单1806126_51_7103481.txt new file mode 100644 index 0000000..cdc424a --- /dev/null +++ b/datasets/handleImage/label/订单1806126_51_7103481.txt @@ -0,0 +1 @@ +6 0.626907 0.370050 0.616413 0.422550 0.756400 0.443540 0.765147 0.387110 0.628667 0.368740 diff --git a/datasets/handleImage/label/订单1806128_51_7103584.txt b/datasets/handleImage/label/订单1806128_51_7103584.txt new file mode 100644 index 0000000..1432840 --- /dev/null +++ b/datasets/handleImage/label/订单1806128_51_7103584.txt @@ -0,0 +1 @@ +6 0.368620 0.388480 0.358780 0.523647 0.536930 0.543333 0.546770 0.402913 0.371575 0.389787 diff --git a/datasets/handleImage/label/订单1806130_51_7103513.txt b/datasets/handleImage/label/订单1806130_51_7103513.txt new file mode 100644 index 0000000..56bd213 --- /dev/null +++ b/datasets/handleImage/label/订单1806130_51_7103513.txt @@ -0,0 +1 @@ +6 0.383594 0.532842 0.380094 0.631267 0.579572 0.636517 0.590072 0.532842 0.381844 0.531529 diff --git a/datasets/handleImage/label/订单1806131_51_7103563.txt b/datasets/handleImage/label/订单1806131_51_7103563.txt new file mode 100644 index 0000000..937a0f9 --- /dev/null +++ b/datasets/handleImage/label/订单1806131_51_7103563.txt @@ -0,0 +1 @@ +6 0.568425 0.316299 0.567439 0.544649 0.671771 0.543333 0.670784 0.318922 0.570392 0.316299 diff --git a/datasets/handleImage/label/订单1806133_51_7103528.txt b/datasets/handleImage/label/订单1806133_51_7103528.txt new file mode 100644 index 0000000..e124e37 --- /dev/null +++ b/datasets/handleImage/label/订单1806133_51_7103528.txt @@ -0,0 +1 @@ +6 0.485195 0.320205 0.497448 0.429121 0.761667 0.413379 0.744167 0.301826 0.483451 0.317578 diff --git a/datasets/handleImage/label/订单1806136_51_7103552.txt b/datasets/handleImage/label/订单1806136_51_7103552.txt new file mode 100644 index 0000000..8686f30 --- /dev/null +++ b/datasets/handleImage/label/订单1806136_51_7103552.txt @@ -0,0 +1 @@ +6 0.322474 0.468496 0.355716 0.553799 0.544701 0.514424 0.511445 0.427812 0.325977 0.469805 diff --git a/datasets/handleImage/label/订单1806141_51_7103695.txt b/datasets/handleImage/label/订单1806141_51_7103695.txt new file mode 100644 index 0000000..a356f56 --- /dev/null +++ b/datasets/handleImage/label/订单1806141_51_7103695.txt @@ -0,0 +1 @@ +6 0.363477 0.293990 0.354719 0.433098 0.681935 0.433098 0.681935 0.293990 0.368719 0.288745 diff --git a/datasets/handleImage/label/订单1806142_51_7105268.txt b/datasets/handleImage/label/订单1806142_51_7105268.txt new file mode 100644 index 0000000..c180066 --- /dev/null +++ b/datasets/handleImage/label/订单1806142_51_7105268.txt @@ -0,0 +1 @@ +6 0.362693 0.580030 0.357440 0.691570 0.607667 0.692890 0.602413 0.585280 0.362693 0.577400 diff --git a/datasets/handleImage/label/订单1806144_51_7103599.txt b/datasets/handleImage/label/订单1806144_51_7103599.txt new file mode 100644 index 0000000..0890133 --- /dev/null +++ b/datasets/handleImage/label/订单1806144_51_7103599.txt @@ -0,0 +1 @@ +6 0.308477 0.526240 0.343464 0.614160 0.539440 0.578730 0.507943 0.485557 0.301471 0.530176 diff --git a/datasets/handleImage/label/订单1806146_51_7103703.txt b/datasets/handleImage/label/订单1806146_51_7103703.txt new file mode 100644 index 0000000..2ca9ea7 --- /dev/null +++ b/datasets/handleImage/label/订单1806146_51_7103703.txt @@ -0,0 +1 @@ +6 0.330222 0.494784 0.309229 0.614206 0.569948 0.623392 0.576941 0.505284 0.331974 0.494784 diff --git a/datasets/handleImage/label/订单1806148_51_7103678.txt b/datasets/handleImage/label/订单1806148_51_7103678.txt new file mode 100644 index 0000000..58a2151 --- /dev/null +++ b/datasets/handleImage/label/订单1806148_51_7103678.txt @@ -0,0 +1 @@ +6 0.247213 0.328060 0.234960 0.410730 0.413440 0.414670 0.420440 0.329370 0.250707 0.329370 diff --git a/datasets/handleImage/label/订单1806152_51_7103811.txt b/datasets/handleImage/label/订单1806152_51_7103811.txt new file mode 100644 index 0000000..2958db5 --- /dev/null +++ b/datasets/handleImage/label/订单1806152_51_7103811.txt @@ -0,0 +1 @@ +6 0.287474 0.580039 0.201732 0.505244 0.000000 0.605684 0.000000 0.668799 0.049505 0.715215 0.289232 0.585293 diff --git a/datasets/handleImage/label/订单1806158_51_7103859.txt b/datasets/handleImage/label/订单1806158_51_7103859.txt new file mode 100644 index 0000000..df5892c --- /dev/null +++ b/datasets/handleImage/label/订单1806158_51_7103859.txt @@ -0,0 +1 @@ +6 0.129878 0.439667 0.117628 0.510533 0.346850 0.511846 0.345100 0.439667 0.131628 0.435729 diff --git a/datasets/handleImage/label/订单1806159_51_7103731.txt b/datasets/handleImage/label/订单1806159_51_7103731.txt new file mode 100644 index 0000000..1981199 --- /dev/null +++ b/datasets/handleImage/label/订单1806159_51_7103731.txt @@ -0,0 +1 @@ +6 0.324753 0.683755 0.338698 0.797931 0.573997 0.780873 0.561797 0.662765 0.328242 0.682441 diff --git a/datasets/handleImage/label/订单1806160_51_7103768.txt b/datasets/handleImage/label/订单1806160_51_7103768.txt new file mode 100644 index 0000000..614b43b --- /dev/null +++ b/datasets/handleImage/label/订单1806160_51_7103768.txt @@ -0,0 +1 @@ +6 0.527061 0.364824 0.525093 0.469811 0.643203 0.477682 0.646157 0.367448 0.530015 0.363509 diff --git a/datasets/handleImage/label/订单1806166_51_7103910.txt b/datasets/handleImage/label/订单1806166_51_7103910.txt new file mode 100644 index 0000000..e510546 --- /dev/null +++ b/datasets/handleImage/label/订单1806166_51_7103910.txt @@ -0,0 +1 @@ +6 0.271732 0.499990 0.269974 0.601045 0.502695 0.602354 0.492201 0.498682 0.280482 0.499990 diff --git a/datasets/handleImage/label/订单1806169_51_7103877.txt b/datasets/handleImage/label/订单1806169_51_7103877.txt new file mode 100644 index 0000000..1b4e6b3 --- /dev/null +++ b/datasets/handleImage/label/订单1806169_51_7103877.txt @@ -0,0 +1 @@ +6 0.350469 0.418623 0.352214 0.514424 0.583190 0.513115 0.579688 0.410752 0.350469 0.418623 diff --git a/datasets/handleImage/label/订单1806173_51_7104016.txt b/datasets/handleImage/label/订单1806173_51_7104016.txt new file mode 100644 index 0000000..3c948e9 --- /dev/null +++ b/datasets/handleImage/label/订单1806173_51_7104016.txt @@ -0,0 +1 @@ +6 0.227895 0.427873 0.238392 0.557796 0.537602 0.535482 0.516608 0.414748 0.227895 0.425252 diff --git a/datasets/handleImage/label/订单1806174_51_7103900.txt b/datasets/handleImage/label/订单1806174_51_7103900.txt new file mode 100644 index 0000000..8f8ce70 --- /dev/null +++ b/datasets/handleImage/label/订单1806174_51_7103900.txt @@ -0,0 +1 @@ +6 0.243231 0.573486 0.278439 0.644351 0.530775 0.622041 0.501430 0.556426 0.243231 0.570859 diff --git a/datasets/handleImage/label/订单1806178_51_7103983.txt b/datasets/handleImage/label/订单1806178_51_7103983.txt new file mode 100644 index 0000000..1b515e2 --- /dev/null +++ b/datasets/handleImage/label/订单1806178_51_7103983.txt @@ -0,0 +1 @@ +6 0.530015 0.463249 0.547729 0.549863 0.660923 0.520990 0.639268 0.433066 0.531001 0.463249 diff --git a/datasets/handleImage/label/订单1806180_51_7103956.txt b/datasets/handleImage/label/订单1806180_51_7103956.txt new file mode 100644 index 0000000..e6abfa8 --- /dev/null +++ b/datasets/handleImage/label/订单1806180_51_7103956.txt @@ -0,0 +1 @@ +6 0.304974 0.514424 0.306719 0.625977 0.537695 0.633848 0.537695 0.520986 0.306719 0.511807 diff --git a/datasets/handleImage/label/订单1806188_51_7104051.txt b/datasets/handleImage/label/订单1806188_51_7104051.txt new file mode 100644 index 0000000..595e087 --- /dev/null +++ b/datasets/handleImage/label/订单1806188_51_7104051.txt @@ -0,0 +1 @@ +6 0.399149 0.359630 0.389306 0.465926 0.551710 0.486921 0.551710 0.374063 0.396198 0.357002 diff --git a/datasets/handleImage/label/订单1806189_51_7103908.txt b/datasets/handleImage/label/订单1806189_51_7103908.txt new file mode 100644 index 0000000..038ce4c --- /dev/null +++ b/datasets/handleImage/label/订单1806189_51_7103908.txt @@ -0,0 +1 @@ +6 0.537695 0.276895 0.546445 0.395000 0.856159 0.395000 0.831654 0.271641 0.542943 0.276895 diff --git a/datasets/handleImage/label/订单1806191_51_7103989.txt b/datasets/handleImage/label/订单1806191_51_7103989.txt new file mode 100644 index 0000000..7baf0de --- /dev/null +++ b/datasets/handleImage/label/订单1806191_51_7103989.txt @@ -0,0 +1 @@ +6 0.360964 0.569541 0.362721 0.685029 0.623437 0.679785 0.607682 0.564297 0.364466 0.566924 diff --git a/datasets/handleImage/label/订单1806192_51_7103954.txt b/datasets/handleImage/label/订单1806192_51_7103954.txt new file mode 100644 index 0000000..66e898f --- /dev/null +++ b/datasets/handleImage/label/订单1806192_51_7103954.txt @@ -0,0 +1 @@ +6 0.288362 0.250649 0.309354 0.387137 0.578824 0.377950 0.568328 0.237526 0.290104 0.250649 diff --git a/datasets/handleImage/label/订单1806194_51_7103950.txt b/datasets/handleImage/label/订单1806194_51_7103950.txt new file mode 100644 index 0000000..96373c5 --- /dev/null +++ b/datasets/handleImage/label/订单1806194_51_7103950.txt @@ -0,0 +1 @@ +6 0.171119 0.524931 0.188616 0.644351 0.438835 0.623356 0.423091 0.502621 0.174625 0.522310 diff --git a/datasets/handleImage/label/订单1806195_51_7104360.txt b/datasets/handleImage/label/订单1806195_51_7104360.txt new file mode 100644 index 0000000..c874ffb --- /dev/null +++ b/datasets/handleImage/label/订单1806195_51_7104360.txt @@ -0,0 +1 @@ +6 0.671783 0.204767 0.747571 0.547289 0.936550 0.482983 0.846983 0.116839 0.670800 0.204767 diff --git a/datasets/handleImage/label/订单1806196_51_7104047.txt b/datasets/handleImage/label/订单1806196_51_7104047.txt new file mode 100644 index 0000000..386bf31 --- /dev/null +++ b/datasets/handleImage/label/订单1806196_51_7104047.txt @@ -0,0 +1 @@ +6 0.630317 0.406858 0.590072 0.476413 0.775544 0.524967 0.798294 0.444917 0.635567 0.404233 diff --git a/datasets/handleImage/label/订单1806197_51_7104132.txt b/datasets/handleImage/label/订单1806197_51_7104132.txt new file mode 100644 index 0000000..218eb11 --- /dev/null +++ b/datasets/handleImage/label/订单1806197_51_7104132.txt @@ -0,0 +1 @@ +6 0.619935 0.392383 0.616432 0.456680 0.768672 0.464561 0.772161 0.397627 0.623437 0.393691 diff --git a/datasets/handleImage/label/订单1806198_51_7104058.txt b/datasets/handleImage/label/订单1806198_51_7104058.txt new file mode 100644 index 0000000..aa5ac92 --- /dev/null +++ b/datasets/handleImage/label/订单1806198_51_7104058.txt @@ -0,0 +1 @@ +6 0.635731 0.574148 0.612979 0.654197 0.798524 0.684387 0.809016 0.596461 0.633989 0.572841 diff --git a/datasets/handleImage/label/订单1806203_51_7104209.txt b/datasets/handleImage/label/订单1806203_51_7104209.txt new file mode 100644 index 0000000..2531581 --- /dev/null +++ b/datasets/handleImage/label/订单1806203_51_7104209.txt @@ -0,0 +1 @@ +6 0.595330 0.451487 0.588333 0.536789 0.786049 0.552532 0.787802 0.467231 0.604080 0.448858 diff --git a/datasets/handleImage/label/订单1806206_51_7104307.txt b/datasets/handleImage/label/订单1806206_51_7104307.txt new file mode 100644 index 0000000..f82a98b --- /dev/null +++ b/datasets/handleImage/label/订单1806206_51_7104307.txt @@ -0,0 +1 @@ +6 0.333984 0.467188 0.302487 0.574798 0.491465 0.618105 0.515085 0.499993 0.335293 0.464564 diff --git a/datasets/handleImage/label/订单1806207_51_7104196.txt b/datasets/handleImage/label/订单1806207_51_7104196.txt new file mode 100644 index 0000000..b37e70e --- /dev/null +++ b/datasets/handleImage/label/订单1806207_51_7104196.txt @@ -0,0 +1 @@ +6 0.347855 0.564299 0.344348 0.661410 0.549077 0.669291 0.559573 0.572171 0.347855 0.562984 diff --git a/datasets/handleImage/label/订单1806211_51_7104444.txt b/datasets/handleImage/label/订单1806211_51_7104444.txt new file mode 100644 index 0000000..fa1d652 --- /dev/null +++ b/datasets/handleImage/label/订单1806211_51_7104444.txt @@ -0,0 +1 @@ +6 0.313707 0.392360 0.304947 0.505220 0.562173 0.505220 0.560413 0.391050 0.315453 0.388420 diff --git a/datasets/handleImage/label/订单1806212_51_7104331.txt b/datasets/handleImage/label/订单1806212_51_7104331.txt new file mode 100644 index 0000000..d8d50c1 --- /dev/null +++ b/datasets/handleImage/label/订单1806212_51_7104331.txt @@ -0,0 +1 @@ +6 0.450096 0.556475 0.451844 0.637838 0.623333 0.643084 0.625082 0.553852 0.448347 0.553852 diff --git a/datasets/handleImage/label/订单1806215_51_7104325.txt b/datasets/handleImage/label/订单1806215_51_7104325.txt new file mode 100644 index 0000000..b1ef7db --- /dev/null +++ b/datasets/handleImage/label/订单1806215_51_7104325.txt @@ -0,0 +1 @@ +6 0.531001 0.496055 0.530015 0.622044 0.684541 0.628600 0.685527 0.494746 0.528047 0.492122 diff --git a/datasets/handleImage/label/订单1806217_51_7104303.txt b/datasets/handleImage/label/订单1806217_51_7104303.txt new file mode 100644 index 0000000..a331402 --- /dev/null +++ b/datasets/handleImage/label/订单1806217_51_7104303.txt @@ -0,0 +1 @@ +6 0.317106 0.434417 0.318856 0.570900 0.427339 0.569588 0.429089 0.429167 0.320606 0.434417 diff --git a/datasets/handleImage/label/订单1806218_51_7104322.txt b/datasets/handleImage/label/订单1806218_51_7104322.txt new file mode 100644 index 0000000..4517b5e --- /dev/null +++ b/datasets/handleImage/label/订单1806218_51_7104322.txt @@ -0,0 +1 @@ +6 0.514083 0.555112 0.480830 0.622042 0.652318 0.674533 0.680311 0.598426 0.521084 0.552491 diff --git a/datasets/handleImage/label/订单1806219_51_7104378.txt b/datasets/handleImage/label/订单1806219_51_7104378.txt new file mode 100644 index 0000000..0ff9f5e --- /dev/null +++ b/datasets/handleImage/label/订单1806219_51_7104378.txt @@ -0,0 +1 @@ +6 0.492807 0.353047 0.491493 0.488213 0.721153 0.485593 0.711967 0.347793 0.494120 0.350420 diff --git a/datasets/handleImage/label/订单1806225_51_7104423.txt b/datasets/handleImage/label/订单1806225_51_7104423.txt new file mode 100644 index 0000000..9f909c4 --- /dev/null +++ b/datasets/handleImage/label/订单1806225_51_7104423.txt @@ -0,0 +1 @@ +6 0.472933 0.442230 0.458933 0.543280 0.670653 0.560340 0.681160 0.456670 0.472933 0.442230 diff --git a/datasets/handleImage/label/订单1806226_51_7104403.txt b/datasets/handleImage/label/订单1806226_51_7104403.txt new file mode 100644 index 0000000..026ee6f --- /dev/null +++ b/datasets/handleImage/label/订单1806226_51_7104403.txt @@ -0,0 +1 @@ +6 0.280482 0.454062 0.268229 0.551172 0.472956 0.562979 0.479948 0.467178 0.280482 0.452744 diff --git a/datasets/handleImage/label/订单1806228_51_7104429.txt b/datasets/handleImage/label/订单1806228_51_7104429.txt new file mode 100644 index 0000000..498cc34 --- /dev/null +++ b/datasets/handleImage/label/订单1806228_51_7104429.txt @@ -0,0 +1 @@ +6 0.367969 0.498682 0.366211 0.604980 0.597187 0.601045 0.597187 0.486865 0.367969 0.494746 diff --git a/datasets/handleImage/label/订单1806231_51_7104704.txt b/datasets/handleImage/label/订单1806231_51_7104704.txt new file mode 100644 index 0000000..13787ed --- /dev/null +++ b/datasets/handleImage/label/订单1806231_51_7104704.txt @@ -0,0 +1 @@ +6 0.285729 0.384502 0.276979 0.464561 0.471198 0.475059 0.478203 0.395000 0.283971 0.384502 diff --git a/datasets/handleImage/label/订单1806234_51_7104480.txt b/datasets/handleImage/label/订单1806234_51_7104480.txt new file mode 100644 index 0000000..60d785f --- /dev/null +++ b/datasets/handleImage/label/订单1806234_51_7104480.txt @@ -0,0 +1 @@ +6 0.296224 0.476367 0.322474 0.595791 0.590195 0.559043 0.555195 0.431748 0.296224 0.473740 diff --git a/datasets/handleImage/label/订单1806239_51_7104590.txt b/datasets/handleImage/label/订单1806239_51_7104590.txt new file mode 100644 index 0000000..ce44efa --- /dev/null +++ b/datasets/handleImage/label/订单1806239_51_7104590.txt @@ -0,0 +1 @@ +6 0.426458 0.545961 0.422967 0.645696 0.643438 0.650951 0.643438 0.548588 0.428209 0.540716 diff --git a/datasets/handleImage/label/订单1806242_51_7104631.txt b/datasets/handleImage/label/订单1806242_51_7104631.txt new file mode 100644 index 0000000..aa8dd28 --- /dev/null +++ b/datasets/handleImage/label/订单1806242_51_7104631.txt @@ -0,0 +1 @@ +6 0.376178 0.376625 0.379089 0.455365 0.653222 0.434370 0.647389 0.347755 0.376178 0.372690 diff --git a/datasets/handleImage/label/订单1806244_51_7104569.txt b/datasets/handleImage/label/订单1806244_51_7104569.txt new file mode 100644 index 0000000..7dc9116 --- /dev/null +++ b/datasets/handleImage/label/订单1806244_51_7104569.txt @@ -0,0 +1 @@ +6 0.501486 0.444891 0.494596 0.513135 0.640264 0.531506 0.636327 0.455391 0.503452 0.440955 diff --git a/datasets/handleImage/label/订单1806246_51_7104763.txt b/datasets/handleImage/label/订单1806246_51_7104763.txt new file mode 100644 index 0000000..0e0f9a2 --- /dev/null +++ b/datasets/handleImage/label/订单1806246_51_7104763.txt @@ -0,0 +1 @@ +6 0.336471 0.478994 0.348724 0.601045 0.618190 0.576104 0.593685 0.456680 0.336471 0.477686 diff --git a/datasets/handleImage/label/订单1806247_51_7104645.txt b/datasets/handleImage/label/订单1806247_51_7104645.txt new file mode 100644 index 0000000..d25913c --- /dev/null +++ b/datasets/handleImage/label/订单1806247_51_7104645.txt @@ -0,0 +1 @@ +6 0.474673 0.463223 0.455425 0.549841 0.649657 0.570833 0.661912 0.482917 0.479935 0.461912 diff --git a/datasets/handleImage/label/订单1806248_51_7104713.txt b/datasets/handleImage/label/订单1806248_51_7104713.txt new file mode 100644 index 0000000..9023b1e --- /dev/null +++ b/datasets/handleImage/label/订单1806248_51_7104713.txt @@ -0,0 +1 @@ +6 0.297969 0.421250 0.297982 0.557734 0.625182 0.556426 0.618190 0.417314 0.294479 0.419941 diff --git a/datasets/handleImage/label/订单1806251_51_7104781.txt b/datasets/handleImage/label/订单1806251_51_7104781.txt new file mode 100644 index 0000000..f47f217 --- /dev/null +++ b/datasets/handleImage/label/订单1806251_51_7104781.txt @@ -0,0 +1 @@ +6 0.384010 0.446225 0.361354 0.534147 0.558307 0.557775 0.577474 0.463284 0.382266 0.447539 diff --git a/datasets/handleImage/label/订单1806252_51_7104609.txt b/datasets/handleImage/label/订单1806252_51_7104609.txt new file mode 100644 index 0000000..96272ed --- /dev/null +++ b/datasets/handleImage/label/订单1806252_51_7104609.txt @@ -0,0 +1 @@ +6 0.445371 0.346452 0.446353 0.517057 0.656982 0.523613 0.654033 0.349076 0.443403 0.343828 diff --git a/datasets/handleImage/label/订单1806253_51_7104764.txt b/datasets/handleImage/label/订单1806253_51_7104764.txt new file mode 100644 index 0000000..e1bc4d1 --- /dev/null +++ b/datasets/handleImage/label/订单1806253_51_7104764.txt @@ -0,0 +1 @@ +6 0.497427 0.397610 0.493933 0.484230 0.723147 0.476350 0.714400 0.388420 0.500933 0.393670 diff --git a/datasets/handleImage/label/订单1806254_51_7104737.txt b/datasets/handleImage/label/订单1806254_51_7104737.txt new file mode 100644 index 0000000..b1d2301 --- /dev/null +++ b/datasets/handleImage/label/订单1806254_51_7104737.txt @@ -0,0 +1 @@ +6 0.370556 0.263819 0.403210 0.316311 0.599182 0.284809 0.561867 0.231007 0.372886 0.261189 diff --git a/datasets/handleImage/label/订单1806256_51_7104758.txt b/datasets/handleImage/label/订单1806256_51_7104758.txt new file mode 100644 index 0000000..fda9154 --- /dev/null +++ b/datasets/handleImage/label/订单1806256_51_7104758.txt @@ -0,0 +1 @@ +6 0.424719 0.422608 0.424719 0.518402 0.667935 0.515775 0.652183 0.413422 0.426458 0.419980 diff --git a/datasets/handleImage/label/订单1806259_51_7104978.txt b/datasets/handleImage/label/订单1806259_51_7104978.txt new file mode 100644 index 0000000..539c918 --- /dev/null +++ b/datasets/handleImage/label/订单1806259_51_7104978.txt @@ -0,0 +1 @@ +6 0.236725 0.367437 0.227975 0.528856 0.583183 0.534106 0.595425 0.379250 0.243725 0.367437 diff --git a/datasets/handleImage/label/订单1806260_51_7104740.txt b/datasets/handleImage/label/订单1806260_51_7104740.txt new file mode 100644 index 0000000..e0570cf --- /dev/null +++ b/datasets/handleImage/label/订单1806260_51_7104740.txt @@ -0,0 +1 @@ +6 0.264707 0.580030 0.261213 0.685010 0.493933 0.695510 0.502680 0.590520 0.268200 0.578710 diff --git a/datasets/handleImage/label/订单1806265_51_7104815.txt b/datasets/handleImage/label/订单1806265_51_7104815.txt new file mode 100644 index 0000000..62778f3 --- /dev/null +++ b/datasets/handleImage/label/订单1806265_51_7104815.txt @@ -0,0 +1 @@ +6 0.287474 0.370068 0.273477 0.489492 0.574440 0.490801 0.572695 0.367441 0.287474 0.368760 diff --git a/datasets/handleImage/label/订单1806269_51_7104849.txt b/datasets/handleImage/label/订单1806269_51_7104849.txt new file mode 100644 index 0000000..f57004e --- /dev/null +++ b/datasets/handleImage/label/订单1806269_51_7104849.txt @@ -0,0 +1 @@ +6 0.272162 0.119444 0.275113 0.253301 0.427672 0.267739 0.430627 0.129941 0.272162 0.118131 diff --git a/datasets/handleImage/label/订单1806270_51_7104958.txt b/datasets/handleImage/label/订单1806270_51_7104958.txt new file mode 100644 index 0000000..3633048 --- /dev/null +++ b/datasets/handleImage/label/订单1806270_51_7104958.txt @@ -0,0 +1 @@ +6 0.404693 0.503910 0.388947 0.597090 0.602413 0.610210 0.607667 0.511780 0.406440 0.501290 diff --git a/datasets/handleImage/label/订单1806273_51_7104884.txt b/datasets/handleImage/label/订单1806273_51_7104884.txt new file mode 100644 index 0000000..ffc1040 --- /dev/null +++ b/datasets/handleImage/label/订单1806273_51_7104884.txt @@ -0,0 +1 @@ +6 0.212213 0.524910 0.236707 0.623330 0.460680 0.583960 0.436187 0.480290 0.208707 0.523600 diff --git a/datasets/handleImage/label/订单1806274_51_7104931.txt b/datasets/handleImage/label/订单1806274_51_7104931.txt new file mode 100644 index 0000000..9ca3b7d --- /dev/null +++ b/datasets/handleImage/label/订单1806274_51_7104931.txt @@ -0,0 +1 @@ +6 0.262861 0.598458 0.259361 0.678513 0.444839 0.675888 0.439589 0.590583 0.255861 0.595833 diff --git a/datasets/handleImage/label/订单1806280_51_7105035.txt b/datasets/handleImage/label/订单1806280_51_7105035.txt new file mode 100644 index 0000000..e540336 --- /dev/null +++ b/datasets/handleImage/label/订单1806280_51_7105035.txt @@ -0,0 +1 @@ +6 0.500680 0.339920 0.494120 0.471153 0.748713 0.469840 0.736900 0.325487 0.500680 0.338607 diff --git a/datasets/handleImage/label/订单1806282_51_7105048.txt b/datasets/handleImage/label/订单1806282_51_7105048.txt new file mode 100644 index 0000000..07ee211 --- /dev/null +++ b/datasets/handleImage/label/订单1806282_51_7105048.txt @@ -0,0 +1 @@ +6 0.317227 0.290020 0.303229 0.443564 0.667174 0.454062 0.670677 0.291328 0.317227 0.287393 diff --git a/datasets/handleImage/label/订单1806284_51_7105002.txt b/datasets/handleImage/label/订单1806284_51_7105002.txt new file mode 100644 index 0000000..dfc1e08 --- /dev/null +++ b/datasets/handleImage/label/订单1806284_51_7105002.txt @@ -0,0 +1 @@ +6 0.173725 0.484228 0.178971 0.597083 0.441438 0.599706 0.439690 0.482917 0.175474 0.481605 diff --git a/datasets/handleImage/label/订单1806286_51_7105055.txt b/datasets/handleImage/label/订单1806286_51_7105055.txt new file mode 100644 index 0000000..94a635a --- /dev/null +++ b/datasets/handleImage/label/订单1806286_51_7105055.txt @@ -0,0 +1 @@ +6 0.157995 0.342510 0.156237 0.450117 0.411706 0.438311 0.401211 0.333320 0.156237 0.345137 diff --git a/datasets/handleImage/label/订单1806291_51_7105064.txt b/datasets/handleImage/label/订单1806291_51_7105064.txt new file mode 100644 index 0000000..a1c68ca --- /dev/null +++ b/datasets/handleImage/label/订单1806291_51_7105064.txt @@ -0,0 +1 @@ +6 0.455210 0.307083 0.454229 0.427812 0.615645 0.438314 0.602852 0.322826 0.454229 0.305768 diff --git a/datasets/handleImage/label/订单1806292_51_7105155.txt b/datasets/handleImage/label/订单1806292_51_7105155.txt new file mode 100644 index 0000000..161e8d2 --- /dev/null +++ b/datasets/handleImage/label/订单1806292_51_7105155.txt @@ -0,0 +1 @@ +6 0.296106 0.524967 0.317106 0.610271 0.513078 0.578775 0.479833 0.493471 0.292606 0.522342 diff --git a/datasets/handleImage/label/订单1806293_51_7105244.txt b/datasets/handleImage/label/订单1806293_51_7105244.txt new file mode 100644 index 0000000..5db158a --- /dev/null +++ b/datasets/handleImage/label/订单1806293_51_7105244.txt @@ -0,0 +1 @@ +6 0.481615 0.438353 0.364844 0.465912 0.438047 0.595833 0.554818 0.570902 0.485104 0.439667 diff --git a/datasets/handleImage/label/订单1806296_51_7105118.txt b/datasets/handleImage/label/订单1806296_51_7105118.txt new file mode 100644 index 0000000..319b9b8 --- /dev/null +++ b/datasets/handleImage/label/订单1806296_51_7105118.txt @@ -0,0 +1 @@ +6 0.257734 0.644346 0.177240 0.770332 0.278724 0.807080 0.367969 0.677158 0.250729 0.640410 diff --git a/datasets/handleImage/label/订单1806298_51_7105110.txt b/datasets/handleImage/label/订单1806298_51_7105110.txt new file mode 100644 index 0000000..005bc6a --- /dev/null +++ b/datasets/handleImage/label/订单1806298_51_7105110.txt @@ -0,0 +1 @@ +6 0.382719 0.414725 0.382719 0.493471 0.561203 0.490843 0.562941 0.414725 0.382719 0.413422 diff --git a/datasets/handleImage/label/订单1806301_51_7105200.txt b/datasets/handleImage/label/订单1806301_51_7105200.txt new file mode 100644 index 0000000..b520eec --- /dev/null +++ b/datasets/handleImage/label/订单1806301_51_7105200.txt @@ -0,0 +1 @@ +6 0.441440 0.527530 0.404693 0.618080 0.607667 0.661390 0.628667 0.570840 0.439680 0.523600 diff --git a/datasets/handleImage/label/订单1806302_51_7105091.txt b/datasets/handleImage/label/订单1806302_51_7105091.txt new file mode 100644 index 0000000..0e3b30b --- /dev/null +++ b/datasets/handleImage/label/订单1806302_51_7105091.txt @@ -0,0 +1 @@ +6 0.413440 0.408110 0.418693 0.503910 0.632160 0.492100 0.618160 0.392360 0.409933 0.408110 diff --git a/datasets/handleImage/label/订单1806303_51_7105175.txt b/datasets/handleImage/label/订单1806303_51_7105175.txt new file mode 100644 index 0000000..ebee271 --- /dev/null +++ b/datasets/handleImage/label/订单1806303_51_7105175.txt @@ -0,0 +1 @@ +6 0.492083 0.419983 0.488588 0.485599 0.654815 0.493472 0.651319 0.421293 0.495590 0.419983 diff --git a/datasets/handleImage/label/订单1806306_51_7105187.txt b/datasets/handleImage/label/订单1806306_51_7105187.txt new file mode 100644 index 0000000..03e01a8 --- /dev/null +++ b/datasets/handleImage/label/订单1806306_51_7105187.txt @@ -0,0 +1 @@ +6 0.374961 0.486865 0.378464 0.593164 0.607682 0.578730 0.588438 0.469805 0.378464 0.484238 diff --git a/datasets/handleImage/label/订单1806307_51_7105144.txt b/datasets/handleImage/label/订单1806307_51_7105144.txt new file mode 100644 index 0000000..96d1e07 --- /dev/null +++ b/datasets/handleImage/label/订单1806307_51_7105144.txt @@ -0,0 +1 @@ +6 0.448464 0.397627 0.457201 0.498682 0.714427 0.484238 0.695182 0.377939 0.453711 0.393691 diff --git a/datasets/handleImage/label/订单1806308_51_7105217.txt b/datasets/handleImage/label/订单1806308_51_7105217.txt new file mode 100644 index 0000000..3f55b40 --- /dev/null +++ b/datasets/handleImage/label/订单1806308_51_7105217.txt @@ -0,0 +1 @@ +6 0.390716 0.455371 0.380221 0.551172 0.609440 0.557734 0.611185 0.459307 0.395964 0.455371 diff --git a/datasets/handleImage/label/订单1806309_51_7105279.txt b/datasets/handleImage/label/订单1806309_51_7105279.txt new file mode 100644 index 0000000..5bdb189 --- /dev/null +++ b/datasets/handleImage/label/订单1806309_51_7105279.txt @@ -0,0 +1 @@ +6 0.255977 0.528857 0.264727 0.625977 0.478203 0.614160 0.465951 0.518359 0.254232 0.527549 diff --git a/datasets/handleImage/label/订单1806310_51_7105820.txt b/datasets/handleImage/label/订单1806310_51_7105820.txt new file mode 100644 index 0000000..a59ec00 --- /dev/null +++ b/datasets/handleImage/label/订单1806310_51_7105820.txt @@ -0,0 +1 @@ +6 0.384922 0.510485 0.376178 0.583975 0.635722 0.591850 0.650311 0.518360 0.387833 0.506550 diff --git a/datasets/handleImage/label/订单1806311_51_7105525.txt b/datasets/handleImage/label/订单1806311_51_7105525.txt new file mode 100644 index 0000000..e969b21 --- /dev/null +++ b/datasets/handleImage/label/订单1806311_51_7105525.txt @@ -0,0 +1 @@ +6 0.462461 0.485557 0.425703 0.561670 0.598932 0.616787 0.639180 0.530176 0.460703 0.486865 diff --git a/datasets/handleImage/label/订单1806314_51_7105323.txt b/datasets/handleImage/label/订单1806314_51_7105323.txt new file mode 100644 index 0000000..7abd2d6 --- /dev/null +++ b/datasets/handleImage/label/订单1806314_51_7105323.txt @@ -0,0 +1 @@ +6 0.360964 0.562979 0.390716 0.654844 0.591940 0.616787 0.555195 0.527549 0.353971 0.565605 diff --git a/datasets/handleImage/label/订单1806315_51_7105307.txt b/datasets/handleImage/label/订单1806315_51_7105307.txt new file mode 100644 index 0000000..d5888be --- /dev/null +++ b/datasets/handleImage/label/订单1806315_51_7105307.txt @@ -0,0 +1 @@ +6 0.304947 0.527530 0.304947 0.601020 0.474680 0.599710 0.472933 0.520970 0.301453 0.527530 diff --git a/datasets/handleImage/label/订单1806318_51_7105355.txt b/datasets/handleImage/label/订单1806318_51_7105355.txt new file mode 100644 index 0000000..c67aefd --- /dev/null +++ b/datasets/handleImage/label/订单1806318_51_7105355.txt @@ -0,0 +1 @@ +6 0.367969 0.505244 0.346966 0.581357 0.534193 0.614160 0.553438 0.528857 0.366211 0.505244 diff --git a/datasets/handleImage/label/订单1806319_51_7105277.txt b/datasets/handleImage/label/订单1806319_51_7105277.txt new file mode 100644 index 0000000..9c22ab0 --- /dev/null +++ b/datasets/handleImage/label/订单1806319_51_7105277.txt @@ -0,0 +1 @@ +6 0.513078 0.511846 0.506083 0.597146 0.703806 0.614204 0.712556 0.521029 0.523578 0.510533 diff --git a/datasets/handleImage/label/订单1806323_51_7105337.txt b/datasets/handleImage/label/订单1806323_51_7105337.txt new file mode 100644 index 0000000..134a4c9 --- /dev/null +++ b/datasets/handleImage/label/订单1806323_51_7105337.txt @@ -0,0 +1 @@ +6 0.551693 0.434375 0.551693 0.518359 0.759922 0.522305 0.761667 0.433066 0.549948 0.433066 diff --git a/datasets/handleImage/label/订单1806324_51_7105310.txt b/datasets/handleImage/label/订单1806324_51_7105310.txt new file mode 100644 index 0000000..402a1a3 --- /dev/null +++ b/datasets/handleImage/label/订单1806324_51_7105310.txt @@ -0,0 +1 @@ +6 0.590182 0.400254 0.590195 0.498682 0.843906 0.497363 0.831654 0.395000 0.591940 0.398945 diff --git a/datasets/handleImage/label/订单1806325_51_7105633.txt b/datasets/handleImage/label/订单1806325_51_7105633.txt new file mode 100644 index 0000000..905a5db --- /dev/null +++ b/datasets/handleImage/label/订单1806325_51_7105633.txt @@ -0,0 +1 @@ +6 0.322474 0.335947 0.320716 0.433066 0.542943 0.439619 0.542943 0.342510 0.331224 0.332012 diff --git a/datasets/handleImage/label/订单1806327_51_7105361.txt b/datasets/handleImage/label/订单1806327_51_7105361.txt new file mode 100644 index 0000000..b7c5a9c --- /dev/null +++ b/datasets/handleImage/label/订单1806327_51_7105361.txt @@ -0,0 +1 @@ +6 0.404714 0.553799 0.348724 0.624658 0.521953 0.702090 0.579688 0.623350 0.411706 0.552480 diff --git a/datasets/handleImage/label/订单1806328_51_7105439.txt b/datasets/handleImage/label/订单1806328_51_7105439.txt new file mode 100644 index 0000000..bb59dcb --- /dev/null +++ b/datasets/handleImage/label/订单1806328_51_7105439.txt @@ -0,0 +1 @@ +6 0.340719 0.434412 0.342471 0.498716 0.494706 0.497402 0.489451 0.427853 0.344222 0.434412 diff --git a/datasets/handleImage/label/订单1806330_51_7105483.txt b/datasets/handleImage/label/订单1806330_51_7105483.txt new file mode 100644 index 0000000..4337326 --- /dev/null +++ b/datasets/handleImage/label/订单1806330_51_7105483.txt @@ -0,0 +1 @@ +6 0.416791 0.379873 0.403997 0.681707 0.542777 0.689585 0.556557 0.394314 0.416791 0.377243 diff --git a/datasets/handleImage/label/订单1806331_51_7105381.txt b/datasets/handleImage/label/订单1806331_51_7105381.txt new file mode 100644 index 0000000..6c677cd --- /dev/null +++ b/datasets/handleImage/label/订单1806331_51_7105381.txt @@ -0,0 +1 @@ +6 0.542617 0.402922 0.549596 0.489529 0.762227 0.490843 0.765716 0.393735 0.540872 0.398980 diff --git a/datasets/handleImage/label/订单1806333_51_7105436.txt b/datasets/handleImage/label/订单1806333_51_7105436.txt new file mode 100644 index 0000000..1ce910e --- /dev/null +++ b/datasets/handleImage/label/订单1806333_51_7105436.txt @@ -0,0 +1 @@ +6 0.290977 0.349072 0.280482 0.463242 0.553438 0.480303 0.558698 0.359570 0.292721 0.345137 diff --git a/datasets/handleImage/label/订单1806334_51_7105428.txt b/datasets/handleImage/label/订单1806334_51_7105428.txt new file mode 100644 index 0000000..11842ff --- /dev/null +++ b/datasets/handleImage/label/订单1806334_51_7105428.txt @@ -0,0 +1 @@ +6 0.116003 0.346445 0.219232 0.460625 0.471198 0.353008 0.385469 0.230957 0.116003 0.346445 diff --git a/datasets/handleImage/label/订单1806336_51_7105410.txt b/datasets/handleImage/label/订单1806336_51_7105410.txt new file mode 100644 index 0000000..71e40a3 --- /dev/null +++ b/datasets/handleImage/label/订单1806336_51_7105410.txt @@ -0,0 +1 @@ +6 0.365670 0.416033 0.447360 0.644380 0.549725 0.582700 0.469015 0.346480 0.369605 0.414727 diff --git a/datasets/handleImage/label/订单1806337_51_7105549.txt b/datasets/handleImage/label/订单1806337_51_7105549.txt new file mode 100644 index 0000000..17b0603 --- /dev/null +++ b/datasets/handleImage/label/订单1806337_51_7105549.txt @@ -0,0 +1 @@ +6 0.258484 0.498716 0.265477 0.610265 0.519203 0.590578 0.496458 0.484284 0.261987 0.496098 diff --git a/datasets/handleImage/label/订单1806340_51_7105570.txt b/datasets/handleImage/label/订单1806340_51_7105570.txt new file mode 100644 index 0000000..9bf0156 --- /dev/null +++ b/datasets/handleImage/label/订单1806340_51_7105570.txt @@ -0,0 +1 @@ +6 0.423839 0.518404 0.413344 0.616829 0.637317 0.631267 0.640811 0.526279 0.423839 0.517092 diff --git a/datasets/handleImage/label/订单1806342_51_7105897.txt b/datasets/handleImage/label/订单1806342_51_7105897.txt new file mode 100644 index 0000000..94e03dc --- /dev/null +++ b/datasets/handleImage/label/订单1806342_51_7105897.txt @@ -0,0 +1 @@ +6 0.369690 0.510466 0.367941 0.632525 0.626912 0.628578 0.621667 0.502598 0.367941 0.506532 diff --git a/datasets/handleImage/label/订单1806343_51_7105589.txt b/datasets/handleImage/label/订单1806343_51_7105589.txt new file mode 100644 index 0000000..184916d --- /dev/null +++ b/datasets/handleImage/label/订单1806343_51_7105589.txt @@ -0,0 +1 @@ +6 0.492646 0.498709 0.492646 0.590568 0.616860 0.590568 0.613902 0.496080 0.489689 0.496080 diff --git a/datasets/handleImage/label/订单1806345_51_7105509.txt b/datasets/handleImage/label/订单1806345_51_7105509.txt new file mode 100644 index 0000000..10f9623 --- /dev/null +++ b/datasets/handleImage/label/订单1806345_51_7105509.txt @@ -0,0 +1 @@ +6 0.117747 0.346445 0.116003 0.440937 0.343464 0.442246 0.339974 0.342510 0.112500 0.342510 diff --git a/datasets/handleImage/label/订单1806349_51_7105942.txt b/datasets/handleImage/label/订单1806349_51_7105942.txt new file mode 100644 index 0000000..148c8a9 --- /dev/null +++ b/datasets/handleImage/label/订单1806349_51_7105942.txt @@ -0,0 +1 @@ +6 0.411594 0.356988 0.413344 0.448850 0.614567 0.443604 0.611067 0.351737 0.402844 0.355675 diff --git a/datasets/handleImage/label/订单1806351_51_7105526.txt b/datasets/handleImage/label/订单1806351_51_7105526.txt new file mode 100644 index 0000000..cbae36b --- /dev/null +++ b/datasets/handleImage/label/订单1806351_51_7105526.txt @@ -0,0 +1 @@ +6 0.353971 0.452744 0.345221 0.565605 0.619935 0.573486 0.616432 0.455371 0.348724 0.452744 diff --git a/datasets/handleImage/label/订单1806353_51_7105640.txt b/datasets/handleImage/label/订单1806353_51_7105640.txt new file mode 100644 index 0000000..4cda23e --- /dev/null +++ b/datasets/handleImage/label/订单1806353_51_7105640.txt @@ -0,0 +1 @@ +6 0.297859 0.304497 0.296111 0.397674 0.535833 0.397674 0.527083 0.299245 0.296111 0.303186 diff --git a/datasets/handleImage/label/订单1806354_51_7105654.txt b/datasets/handleImage/label/订单1806354_51_7105654.txt new file mode 100644 index 0000000..283dcac --- /dev/null +++ b/datasets/handleImage/label/订单1806354_51_7105654.txt @@ -0,0 +1 @@ +6 0.378464 0.367441 0.360964 0.485557 0.632188 0.502617 0.649687 0.381885 0.380221 0.364824 diff --git a/datasets/handleImage/label/订单1806355_51_7105607.txt b/datasets/handleImage/label/订单1806355_51_7105607.txt new file mode 100644 index 0000000..0588b4c --- /dev/null +++ b/datasets/handleImage/label/订单1806355_51_7105607.txt @@ -0,0 +1 @@ +6 0.327721 0.520986 0.376719 0.622041 0.604193 0.578730 0.562187 0.467178 0.324219 0.517051 diff --git a/datasets/handleImage/label/订单1806357_51_7105670.txt b/datasets/handleImage/label/订单1806357_51_7105670.txt new file mode 100644 index 0000000..360447a --- /dev/null +++ b/datasets/handleImage/label/订单1806357_51_7105670.txt @@ -0,0 +1 @@ +6 0.231484 0.353008 0.227982 0.416006 0.376719 0.418623 0.374961 0.350381 0.236732 0.350381 diff --git a/datasets/handleImage/label/订单1806358_51_7105747.txt b/datasets/handleImage/label/订单1806358_51_7105747.txt new file mode 100644 index 0000000..56c4a45 --- /dev/null +++ b/datasets/handleImage/label/订单1806358_51_7105747.txt @@ -0,0 +1 @@ +6 0.273453 0.394990 0.278707 0.464540 0.481680 0.448790 0.465933 0.375300 0.275200 0.392360 diff --git a/datasets/handleImage/label/订单1806359_51_7105675.txt b/datasets/handleImage/label/订单1806359_51_7105675.txt new file mode 100644 index 0000000..8a7996d --- /dev/null +++ b/datasets/handleImage/label/订单1806359_51_7105675.txt @@ -0,0 +1 @@ +6 0.156250 0.573486 0.231484 0.715215 0.544701 0.612852 0.464206 0.471123 0.152747 0.574795 diff --git a/datasets/handleImage/label/订单1806360_51_7105662.txt b/datasets/handleImage/label/订单1806360_51_7105662.txt new file mode 100644 index 0000000..501209e --- /dev/null +++ b/datasets/handleImage/label/订单1806360_51_7105662.txt @@ -0,0 +1 @@ +6 0.514948 0.379258 0.507943 0.505244 0.789661 0.524922 0.793164 0.401562 0.523698 0.379258 diff --git a/datasets/handleImage/label/订单1806361_51_7105712.txt b/datasets/handleImage/label/订单1806361_51_7105712.txt new file mode 100644 index 0000000..5aad176 --- /dev/null +++ b/datasets/handleImage/label/订单1806361_51_7105712.txt @@ -0,0 +1 @@ +6 0.356597 0.494749 0.360104 0.604983 0.594567 0.602362 0.587566 0.492119 0.360104 0.493434 diff --git a/datasets/handleImage/label/订单1806362_51_7105959.txt b/datasets/handleImage/label/订单1806362_51_7105959.txt new file mode 100644 index 0000000..aa9553e --- /dev/null +++ b/datasets/handleImage/label/订单1806362_51_7105959.txt @@ -0,0 +1 @@ +6 0.444385 0.582669 0.332183 0.660098 0.442417 0.900254 0.568403 0.800521 0.444385 0.581361 diff --git a/datasets/handleImage/label/订单1806363_51_7105693.txt b/datasets/handleImage/label/订单1806363_51_7105693.txt new file mode 100644 index 0000000..3b4a7d7 --- /dev/null +++ b/datasets/handleImage/label/订单1806363_51_7105693.txt @@ -0,0 +1 @@ +6 0.406458 0.391064 0.427461 0.484238 0.668932 0.463242 0.644427 0.366133 0.409961 0.389756 diff --git a/datasets/handleImage/label/订单1806366_51_7105783.txt b/datasets/handleImage/label/订单1806366_51_7105783.txt new file mode 100644 index 0000000..6de9d4e --- /dev/null +++ b/datasets/handleImage/label/订单1806366_51_7105783.txt @@ -0,0 +1 @@ +6 0.458958 0.535420 0.441458 0.628604 0.670677 0.652227 0.674180 0.553799 0.455456 0.535420 diff --git a/datasets/handleImage/label/订单1806367_51_7105793.txt b/datasets/handleImage/label/订单1806367_51_7105793.txt new file mode 100644 index 0000000..c2beda1 --- /dev/null +++ b/datasets/handleImage/label/订单1806367_51_7105793.txt @@ -0,0 +1 @@ +6 0.433560 0.439629 0.435527 0.574798 0.593989 0.572174 0.592021 0.438314 0.435527 0.436999 diff --git a/datasets/handleImage/label/订单1806368_51_7105718.txt b/datasets/handleImage/label/订单1806368_51_7105718.txt new file mode 100644 index 0000000..e5a36cd --- /dev/null +++ b/datasets/handleImage/label/订单1806368_51_7105718.txt @@ -0,0 +1 @@ +6 0.528083 0.288756 0.576313 0.371433 0.704267 0.291383 0.655054 0.210017 0.526117 0.286133 diff --git a/datasets/handleImage/label/订单1806369_51_7105743.txt b/datasets/handleImage/label/订单1806369_51_7105743.txt new file mode 100644 index 0000000..b258159 --- /dev/null +++ b/datasets/handleImage/label/订单1806369_51_7105743.txt @@ -0,0 +1 @@ +6 0.345221 0.455371 0.346966 0.557734 0.576185 0.553799 0.579688 0.450117 0.346966 0.454062 diff --git a/datasets/handleImage/label/订单1806370_51_7105764.txt b/datasets/handleImage/label/订单1806370_51_7105764.txt new file mode 100644 index 0000000..3ed65be --- /dev/null +++ b/datasets/handleImage/label/订单1806370_51_7105764.txt @@ -0,0 +1 @@ +6 0.572359 0.329420 0.577286 0.439657 0.735748 0.440972 0.725907 0.325482 0.569412 0.329420 diff --git a/datasets/handleImage/label/订单1806371_51_7105828.txt b/datasets/handleImage/label/订单1806371_51_7105828.txt new file mode 100644 index 0000000..7ce6135 --- /dev/null +++ b/datasets/handleImage/label/订单1806371_51_7105828.txt @@ -0,0 +1 @@ +6 0.250611 0.443604 0.250611 0.532842 0.506083 0.509221 0.497333 0.418667 0.250611 0.443604 diff --git a/datasets/handleImage/label/订单1806374_51_7105810.txt b/datasets/handleImage/label/订单1806374_51_7105810.txt new file mode 100644 index 0000000..ad93759 --- /dev/null +++ b/datasets/handleImage/label/订单1806374_51_7105810.txt @@ -0,0 +1 @@ +6 0.576185 0.606289 0.572695 0.671904 0.730169 0.677158 0.726667 0.607598 0.579688 0.602354 diff --git a/datasets/handleImage/label/订单1806382_51_7105948.txt b/datasets/handleImage/label/订单1806382_51_7105948.txt new file mode 100644 index 0000000..18d88e0 --- /dev/null +++ b/datasets/handleImage/label/订单1806382_51_7105948.txt @@ -0,0 +1 @@ +6 0.420440 0.511780 0.415187 0.622020 0.653160 0.627270 0.656653 0.514410 0.423933 0.511780 diff --git a/datasets/handleImage/label/订单1806385_51_7105937.txt b/datasets/handleImage/label/订单1806385_51_7105937.txt new file mode 100644 index 0000000..6f14266 --- /dev/null +++ b/datasets/handleImage/label/订单1806385_51_7105937.txt @@ -0,0 +1 @@ +6 0.255960 0.422550 0.282200 0.569530 0.658413 0.513100 0.604160 0.370050 0.259453 0.422550 diff --git a/datasets/handleImage/label/订单1806386_51_7105908.txt b/datasets/handleImage/label/订单1806386_51_7105908.txt new file mode 100644 index 0000000..2d710eb --- /dev/null +++ b/datasets/handleImage/label/订单1806386_51_7105908.txt @@ -0,0 +1 @@ +6 0.257734 0.522305 0.247227 0.631221 0.495703 0.643037 0.497448 0.530176 0.259479 0.523613 diff --git a/datasets/handleImage/label/订单1806388_51_7106058.txt b/datasets/handleImage/label/订单1806388_51_7106058.txt new file mode 100644 index 0000000..648de3f --- /dev/null +++ b/datasets/handleImage/label/订单1806388_51_7106058.txt @@ -0,0 +1 @@ +6 0.276833 0.484269 0.315333 0.561692 0.523551 0.513135 0.476308 0.439644 0.280333 0.481644 diff --git a/datasets/handleImage/label/订单1806391_51_7106033.txt b/datasets/handleImage/label/订单1806391_51_7106033.txt new file mode 100644 index 0000000..5727966 --- /dev/null +++ b/datasets/handleImage/label/订单1806391_51_7106033.txt @@ -0,0 +1 @@ +6 0.546445 0.300518 0.537695 0.409443 0.786159 0.412061 0.779167 0.300518 0.544701 0.301826 diff --git a/datasets/handleImage/label/订单1806395_51_7106004.txt b/datasets/handleImage/label/订单1806395_51_7106004.txt new file mode 100644 index 0000000..e272403 --- /dev/null +++ b/datasets/handleImage/label/订单1806395_51_7106004.txt @@ -0,0 +1 @@ +6 0.467708 0.383193 0.457201 0.496055 0.738919 0.509180 0.735417 0.389756 0.465951 0.377939 diff --git a/datasets/handleImage/label/订单1806396_51_7105993.txt b/datasets/handleImage/label/订单1806396_51_7105993.txt new file mode 100644 index 0000000..16be21e --- /dev/null +++ b/datasets/handleImage/label/订单1806396_51_7105993.txt @@ -0,0 +1,2 @@ +6 0.456196 0.559049 0.499502 0.686348 0.653047 0.593171 0.608755 0.468496 0.454229 0.557734 +6 0.455210 0.559049 0.498521 0.690280 0.654033 0.590547 0.611709 0.461934 0.453242 0.561673 diff --git a/datasets/handleImage/label/订单1806398_51_7106151.txt b/datasets/handleImage/label/订单1806398_51_7106151.txt new file mode 100644 index 0000000..6d88c82 --- /dev/null +++ b/datasets/handleImage/label/订单1806398_51_7106151.txt @@ -0,0 +1 @@ +6 0.569193 0.448809 0.581445 0.612852 0.717917 0.595791 0.698672 0.434375 0.569193 0.450117 diff --git a/datasets/handleImage/label/订单1806400_51_7106043.txt b/datasets/handleImage/label/订单1806400_51_7106043.txt new file mode 100644 index 0000000..de4f9c3 --- /dev/null +++ b/datasets/handleImage/label/订单1806400_51_7106043.txt @@ -0,0 +1,2 @@ +6 0.555072 0.627329 0.577822 0.763813 0.686306 0.749375 0.656561 0.612896 0.562072 0.624704 +6 0.553322 0.624704 0.579572 0.765125 0.691556 0.749375 0.658311 0.611583 0.556822 0.622079 diff --git a/datasets/handleImage/label/订单1806402_51_7106069.txt b/datasets/handleImage/label/订单1806402_51_7106069.txt new file mode 100644 index 0000000..f2e15e6 --- /dev/null +++ b/datasets/handleImage/label/订单1806402_51_7106069.txt @@ -0,0 +1 @@ +6 0.230484 0.469843 0.233987 0.605020 0.533203 0.601078 0.529699 0.465912 0.233987 0.467225 diff --git a/datasets/handleImage/label/订单1806403_51_7106091.txt b/datasets/handleImage/label/订单1806403_51_7106091.txt new file mode 100644 index 0000000..c616d77 --- /dev/null +++ b/datasets/handleImage/label/订单1806403_51_7106091.txt @@ -0,0 +1 @@ +6 0.453676 0.375306 0.444935 0.486850 0.719657 0.511789 0.716144 0.387108 0.450180 0.376618 diff --git a/datasets/handleImage/label/订单1806410_51_7106166.txt b/datasets/handleImage/label/订单1806410_51_7106166.txt new file mode 100644 index 0000000..9d1ffe4 --- /dev/null +++ b/datasets/handleImage/label/订单1806410_51_7106166.txt @@ -0,0 +1 @@ +6 0.639180 0.433066 0.623437 0.527549 0.861406 0.551172 0.864909 0.446182 0.644427 0.431748 diff --git a/datasets/handleImage/label/订单1806413_51_7106233.txt b/datasets/handleImage/label/订单1806413_51_7106233.txt new file mode 100644 index 0000000..e2375ef --- /dev/null +++ b/datasets/handleImage/label/订单1806413_51_7106233.txt @@ -0,0 +1 @@ +6 0.280458 0.560343 0.282206 0.671887 0.525425 0.657451 0.513170 0.551152 0.276961 0.562966 diff --git a/datasets/handleImage/label/订单1806415_51_7106264.txt b/datasets/handleImage/label/订单1806415_51_7106264.txt new file mode 100644 index 0000000..04ca28b --- /dev/null +++ b/datasets/handleImage/label/订单1806415_51_7106264.txt @@ -0,0 +1 @@ +6 0.566458 0.311021 0.566458 0.377949 0.783429 0.372700 0.767092 0.299209 0.564123 0.309707 diff --git a/datasets/handleImage/label/订单1806417_51_7106289.txt b/datasets/handleImage/label/订单1806417_51_7106289.txt new file mode 100644 index 0000000..e7c24df --- /dev/null +++ b/datasets/handleImage/label/订单1806417_51_7106289.txt @@ -0,0 +1 @@ +6 0.502695 0.422559 0.493945 0.535420 0.754674 0.552480 0.758164 0.435684 0.504453 0.421250 diff --git a/datasets/handleImage/label/订单1806418_51_7106207.txt b/datasets/handleImage/label/订单1806418_51_7106207.txt new file mode 100644 index 0000000..39d7fd6 --- /dev/null +++ b/datasets/handleImage/label/订单1806418_51_7106207.txt @@ -0,0 +1 @@ +6 0.404714 0.681094 0.415208 0.751963 0.583190 0.729648 0.560443 0.656162 0.401211 0.675840 diff --git a/datasets/handleImage/label/订单1806420_51_7106202.txt b/datasets/handleImage/label/订单1806420_51_7106202.txt new file mode 100644 index 0000000..d3c4ff5 --- /dev/null +++ b/datasets/handleImage/label/订单1806420_51_7106202.txt @@ -0,0 +1 @@ +6 0.296224 0.431748 0.301471 0.549863 0.567448 0.547236 0.558698 0.427812 0.296224 0.430439 diff --git a/datasets/handleImage/label/订单1806421_51_7106234.txt b/datasets/handleImage/label/订单1806421_51_7106234.txt new file mode 100644 index 0000000..36b6577 --- /dev/null +++ b/datasets/handleImage/label/订单1806421_51_7106234.txt @@ -0,0 +1 @@ +6 0.396180 0.347793 0.400120 0.488213 0.470000 0.484280 0.469015 0.338607 0.394210 0.347793 diff --git a/datasets/handleImage/label/订单1806423_51_7106297.txt b/datasets/handleImage/label/订单1806423_51_7106297.txt new file mode 100644 index 0000000..239a3b8 --- /dev/null +++ b/datasets/handleImage/label/订单1806423_51_7106297.txt @@ -0,0 +1 @@ +6 0.357440 0.338560 0.341693 0.436980 0.621667 0.451420 0.625160 0.343810 0.362693 0.335930 diff --git a/datasets/handleImage/label/订单1806424_51_7106323.txt b/datasets/handleImage/label/订单1806424_51_7106323.txt new file mode 100644 index 0000000..bb1f616 --- /dev/null +++ b/datasets/handleImage/label/订单1806424_51_7106323.txt @@ -0,0 +1 @@ +6 0.355716 0.513115 0.357474 0.606289 0.546445 0.601045 0.532448 0.510488 0.359219 0.510488 diff --git a/datasets/handleImage/label/订单1806435_51_7106340.txt b/datasets/handleImage/label/订单1806435_51_7106340.txt new file mode 100644 index 0000000..fd074e5 --- /dev/null +++ b/datasets/handleImage/label/订单1806435_51_7106340.txt @@ -0,0 +1 @@ +6 0.278070 0.389787 0.280040 0.707373 0.405040 0.712627 0.399135 0.364853 0.279055 0.387167 diff --git a/datasets/handleImage/label/订单1806438_51_7106366.txt b/datasets/handleImage/label/订单1806438_51_7106366.txt new file mode 100644 index 0000000..bee9b30 --- /dev/null +++ b/datasets/handleImage/label/订单1806438_51_7106366.txt @@ -0,0 +1 @@ +6 0.345100 0.443604 0.343350 0.532842 0.569072 0.534154 0.562072 0.438354 0.345100 0.439667 diff --git a/datasets/handleImage/label/订单1806439_51_7106397.txt b/datasets/handleImage/label/订单1806439_51_7106397.txt new file mode 100644 index 0000000..ee372fc --- /dev/null +++ b/datasets/handleImage/label/订单1806439_51_7106397.txt @@ -0,0 +1 @@ +6 0.387417 0.181275 0.378980 0.352887 0.535373 0.394706 0.537966 0.214444 0.386765 0.178399 diff --git a/datasets/handleImage/label/订单1806445_51_7106489.txt b/datasets/handleImage/label/订单1806445_51_7106489.txt new file mode 100644 index 0000000..999bf0f --- /dev/null +++ b/datasets/handleImage/label/订单1806445_51_7106489.txt @@ -0,0 +1 @@ +6 0.306719 0.707344 0.257734 0.879258 0.402969 0.897627 0.441458 0.716523 0.308477 0.704717 diff --git a/datasets/handleImage/label/订单1806446_51_7106424.txt b/datasets/handleImage/label/订单1806446_51_7106424.txt new file mode 100644 index 0000000..6b2817c --- /dev/null +++ b/datasets/handleImage/label/订单1806446_51_7106424.txt @@ -0,0 +1 @@ +6 0.161467 0.406800 0.173720 0.480290 0.371440 0.464540 0.357440 0.389740 0.164973 0.404170 diff --git a/datasets/handleImage/label/订单1806448_51_7106612.txt b/datasets/handleImage/label/订单1806448_51_7106612.txt new file mode 100644 index 0000000..93a401f --- /dev/null +++ b/datasets/handleImage/label/订单1806448_51_7106612.txt @@ -0,0 +1 @@ +6 0.413908 0.126028 0.390288 0.362250 0.494621 0.377994 0.521196 0.140461 0.414896 0.122089 diff --git a/datasets/handleImage/label/订单1806449_51_7106451.txt b/datasets/handleImage/label/订单1806449_51_7106451.txt new file mode 100644 index 0000000..0c8c766 --- /dev/null +++ b/datasets/handleImage/label/订单1806449_51_7106451.txt @@ -0,0 +1 @@ +6 0.435550 0.482967 0.411930 0.755933 0.539880 0.775613 0.556615 0.493467 0.436535 0.484280 diff --git a/datasets/handleImage/label/订单1806450_51_7106443.txt b/datasets/handleImage/label/订单1806450_51_7106443.txt new file mode 100644 index 0000000..315fce0 --- /dev/null +++ b/datasets/handleImage/label/订单1806450_51_7106443.txt @@ -0,0 +1 @@ +6 0.367969 0.414687 0.360964 0.488184 0.548190 0.480303 0.549948 0.400254 0.367969 0.409443 diff --git a/datasets/handleImage/label/订单1806453_51_7106521.txt b/datasets/handleImage/label/订单1806453_51_7106521.txt new file mode 100644 index 0000000..864c03c --- /dev/null +++ b/datasets/handleImage/label/订单1806453_51_7106521.txt @@ -0,0 +1 @@ +6 0.480817 0.343840 0.459163 0.570878 0.580226 0.582686 0.598923 0.355654 0.482784 0.339904 diff --git a/datasets/handleImage/label/订单1806454_51_7106564.txt b/datasets/handleImage/label/订单1806454_51_7106564.txt new file mode 100644 index 0000000..e143c18 --- /dev/null +++ b/datasets/handleImage/label/订单1806454_51_7106564.txt @@ -0,0 +1 @@ +6 0.458860 0.231020 0.437865 0.297950 0.605848 0.328136 0.628596 0.245461 0.462368 0.224463 diff --git a/datasets/handleImage/label/订单1806464_51_7106658.txt b/datasets/handleImage/label/订单1806464_51_7106658.txt new file mode 100644 index 0000000..a7a5f29 --- /dev/null +++ b/datasets/handleImage/label/订单1806464_51_7106658.txt @@ -0,0 +1 @@ +6 0.408181 0.112059 0.411426 0.339902 0.563275 0.377397 0.561328 0.152440 0.410127 0.107734 diff --git a/datasets/handleImage/label/订单1806465_51_7106625.txt b/datasets/handleImage/label/订单1806465_51_7106625.txt new file mode 100644 index 0000000..96dfc21 --- /dev/null +++ b/datasets/handleImage/label/订单1806465_51_7106625.txt @@ -0,0 +1 @@ +6 0.513203 0.636475 0.527201 0.721777 0.702174 0.707344 0.695182 0.622041 0.516693 0.635166 diff --git a/datasets/handleImage/label/订单1806467_51_7106642.txt b/datasets/handleImage/label/订单1806467_51_7106642.txt new file mode 100644 index 0000000..67e1bdc --- /dev/null +++ b/datasets/handleImage/label/订单1806467_51_7106642.txt @@ -0,0 +1 @@ +6 0.255960 0.566900 0.311947 0.650890 0.478173 0.585280 0.423933 0.499970 0.252453 0.565590 diff --git a/datasets/handleImage/label/订单1806468_51_7106712.txt b/datasets/handleImage/label/订单1806468_51_7106712.txt new file mode 100644 index 0000000..387058f --- /dev/null +++ b/datasets/handleImage/label/订单1806468_51_7106712.txt @@ -0,0 +1 @@ +6 0.588438 0.494746 0.576185 0.590537 0.779167 0.597100 0.786159 0.502617 0.586693 0.493428 diff --git a/datasets/handleImage/label/订单1806470_51_7106702.txt b/datasets/handleImage/label/订单1806470_51_7106702.txt new file mode 100644 index 0000000..905c5ab --- /dev/null +++ b/datasets/handleImage/label/订单1806470_51_7106702.txt @@ -0,0 +1 @@ +6 0.441440 0.522280 0.430933 0.625960 0.667160 0.641710 0.674160 0.528840 0.439680 0.522280 diff --git a/datasets/handleImage/label/订单1806471_51_7106669.txt b/datasets/handleImage/label/订单1806471_51_7106669.txt new file mode 100644 index 0000000..29dc9c5 --- /dev/null +++ b/datasets/handleImage/label/订单1806471_51_7106669.txt @@ -0,0 +1 @@ +6 0.498209 0.405539 0.484209 0.530216 0.769425 0.542029 0.764170 0.408167 0.494706 0.401608 diff --git a/datasets/handleImage/label/订单1806476_51_7106691.txt b/datasets/handleImage/label/订单1806476_51_7106691.txt new file mode 100644 index 0000000..de46c7e --- /dev/null +++ b/datasets/handleImage/label/订单1806476_51_7106691.txt @@ -0,0 +1,2 @@ +6 0.523125 0.195534 0.472930 0.404193 0.560527 0.443561 0.621553 0.232279 0.520171 0.194219 +6 0.521157 0.194219 0.473911 0.401569 0.561509 0.443561 0.616631 0.230964 0.523125 0.194219 diff --git a/datasets/handleImage/label/订单1806477_51_7106810.txt b/datasets/handleImage/label/订单1806477_51_7106810.txt new file mode 100644 index 0000000..96bb08c --- /dev/null +++ b/datasets/handleImage/label/订单1806477_51_7106810.txt @@ -0,0 +1 @@ +6 0.325856 0.574838 0.345100 0.654887 0.527078 0.620767 0.504333 0.542029 0.325856 0.574838 diff --git a/datasets/handleImage/label/订单1806479_51_7106769.txt b/datasets/handleImage/label/订单1806479_51_7106769.txt new file mode 100644 index 0000000..c88663a --- /dev/null +++ b/datasets/handleImage/label/订单1806479_51_7106769.txt @@ -0,0 +1 @@ +6 0.525427 0.446170 0.532427 0.604960 0.644413 0.597090 0.630413 0.443540 0.520173 0.443540 diff --git a/datasets/handleImage/label/订单1806481_51_7106776.txt b/datasets/handleImage/label/订单1806481_51_7106776.txt new file mode 100644 index 0000000..41a40bb --- /dev/null +++ b/datasets/handleImage/label/订单1806481_51_7106776.txt @@ -0,0 +1 @@ +6 0.380196 0.429105 0.371438 0.531471 0.635654 0.534093 0.632157 0.425172 0.385441 0.426483 diff --git a/datasets/handleImage/label/订单1806482_51_7106783.txt b/datasets/handleImage/label/订单1806482_51_7106783.txt new file mode 100644 index 0000000..25e56c1 --- /dev/null +++ b/datasets/handleImage/label/订单1806482_51_7106783.txt @@ -0,0 +1 @@ +6 0.213960 0.535410 0.236707 0.637770 0.465933 0.616770 0.457187 0.519660 0.217467 0.534090 diff --git a/datasets/handleImage/label/订单1806483_51_7106799.txt b/datasets/handleImage/label/订单1806483_51_7106799.txt new file mode 100644 index 0000000..4d59f9d --- /dev/null +++ b/datasets/handleImage/label/订单1806483_51_7106799.txt @@ -0,0 +1 @@ +6 0.294479 0.389756 0.299727 0.522305 0.604193 0.527549 0.605938 0.396318 0.297982 0.388437 diff --git a/datasets/handleImage/label/订单1806487_51_7106855.txt b/datasets/handleImage/label/订单1806487_51_7106855.txt new file mode 100644 index 0000000..0f85d3c --- /dev/null +++ b/datasets/handleImage/label/订单1806487_51_7106855.txt @@ -0,0 +1 @@ +6 0.264635 0.510548 0.257632 0.605044 0.483363 0.602412 0.478114 0.510548 0.261140 0.511864 diff --git a/datasets/handleImage/label/订单1806488_51_7106871.txt b/datasets/handleImage/label/订单1806488_51_7106871.txt new file mode 100644 index 0000000..5fc34e9 --- /dev/null +++ b/datasets/handleImage/label/订单1806488_51_7106871.txt @@ -0,0 +1 @@ +6 0.185990 0.573486 0.243737 0.673223 0.472956 0.604980 0.416966 0.510488 0.189492 0.574795 diff --git a/datasets/handleImage/label/订单1806490_51_7106897.txt b/datasets/handleImage/label/订单1806490_51_7106897.txt new file mode 100644 index 0000000..a131f29 --- /dev/null +++ b/datasets/handleImage/label/订单1806490_51_7106897.txt @@ -0,0 +1 @@ +6 0.075566 0.421275 0.069739 0.518387 0.466351 0.514451 0.454684 0.418652 0.078486 0.419961 diff --git a/datasets/handleImage/label/订单1806491_51_7106887.txt b/datasets/handleImage/label/订单1806491_51_7106887.txt new file mode 100644 index 0000000..277f56a --- /dev/null +++ b/datasets/handleImage/label/订单1806491_51_7106887.txt @@ -0,0 +1 @@ +6 0.460703 0.431748 0.448451 0.526240 0.686432 0.539365 0.691680 0.435684 0.464206 0.430439 diff --git a/datasets/handleImage/label/订单1806493_51_7106927.txt b/datasets/handleImage/label/订单1806493_51_7106927.txt new file mode 100644 index 0000000..d60f491 --- /dev/null +++ b/datasets/handleImage/label/订单1806493_51_7106927.txt @@ -0,0 +1 @@ +6 0.318990 0.395010 0.322480 0.526250 0.616444 0.518376 0.611194 0.385827 0.317231 0.393701 diff --git a/datasets/handleImage/label/订单1806494_51_7106920.txt b/datasets/handleImage/label/订单1806494_51_7106920.txt new file mode 100644 index 0000000..45090e6 --- /dev/null +++ b/datasets/handleImage/label/订单1806494_51_7106920.txt @@ -0,0 +1 @@ +6 0.339974 0.572168 0.355716 0.664033 0.542943 0.641719 0.525443 0.555107 0.339974 0.569541 diff --git a/datasets/handleImage/label/订单1806495_51_7106942.txt b/datasets/handleImage/label/订单1806495_51_7106942.txt new file mode 100644 index 0000000..481ffdd --- /dev/null +++ b/datasets/handleImage/label/订单1806495_51_7106942.txt @@ -0,0 +1 @@ +6 0.359077 0.506577 0.352077 0.611567 0.593551 0.622067 0.593551 0.505269 0.359077 0.506577 diff --git a/datasets/handleImage/label/订单1806498_51_7106986.txt b/datasets/handleImage/label/订单1806498_51_7106986.txt new file mode 100644 index 0000000..0860967 --- /dev/null +++ b/datasets/handleImage/label/订单1806498_51_7106986.txt @@ -0,0 +1 @@ +6 0.247240 0.628606 0.233242 0.780837 0.563952 0.784775 0.553454 0.635168 0.245492 0.627295 diff --git a/datasets/handleImage/label/订单1806499_51_7106958.txt b/datasets/handleImage/label/订单1806499_51_7106958.txt new file mode 100644 index 0000000..df78ce4 --- /dev/null +++ b/datasets/handleImage/label/订单1806499_51_7106958.txt @@ -0,0 +1 @@ +6 0.345221 0.573486 0.338216 0.658779 0.514948 0.660098 0.509701 0.577422 0.352214 0.576104 diff --git a/datasets/handleImage/label/订单1806501_51_7106971.txt b/datasets/handleImage/label/订单1806501_51_7106971.txt new file mode 100644 index 0000000..3706daa --- /dev/null +++ b/datasets/handleImage/label/订单1806501_51_7106971.txt @@ -0,0 +1 @@ +6 0.534193 0.454062 0.527201 0.543301 0.759922 0.551172 0.744167 0.459307 0.537695 0.450117 diff --git a/datasets/handleImage/label/订单1806502_51_7107001.txt b/datasets/handleImage/label/订单1806502_51_7107001.txt new file mode 100644 index 0000000..7e9737a --- /dev/null +++ b/datasets/handleImage/label/订单1806502_51_7107001.txt @@ -0,0 +1 @@ +6 0.410150 0.695590 0.344537 0.829444 0.435093 0.870127 0.495451 0.717894 0.411470 0.692963 diff --git a/datasets/handleImage/label/订单1806504_51_7107026.txt b/datasets/handleImage/label/订单1806504_51_7107026.txt new file mode 100644 index 0000000..1ea9f37 --- /dev/null +++ b/datasets/handleImage/label/订单1806504_51_7107026.txt @@ -0,0 +1 @@ +6 0.322356 0.494783 0.336350 0.594521 0.565572 0.582708 0.551572 0.481658 0.322356 0.492158 diff --git a/datasets/handleImage/label/订单1806507_51_7107059.txt b/datasets/handleImage/label/订单1806507_51_7107059.txt new file mode 100644 index 0000000..7f5c289 --- /dev/null +++ b/datasets/handleImage/label/订单1806507_51_7107059.txt @@ -0,0 +1 @@ +6 0.446706 0.353008 0.436211 0.476367 0.710924 0.478994 0.712669 0.351699 0.450208 0.351699 diff --git a/datasets/handleImage/label/订单1806511_51_7107090.txt b/datasets/handleImage/label/订单1806511_51_7107090.txt new file mode 100644 index 0000000..8ce98a4 --- /dev/null +++ b/datasets/handleImage/label/订单1806511_51_7107090.txt @@ -0,0 +1 @@ +6 0.322453 0.321500 0.329453 0.507850 0.712653 0.502600 0.705653 0.307060 0.318947 0.317560 diff --git a/datasets/handleImage/label/订单1806513_51_7107909.txt b/datasets/handleImage/label/订单1806513_51_7107909.txt new file mode 100644 index 0000000..3d8fd42 --- /dev/null +++ b/datasets/handleImage/label/订单1806513_51_7107909.txt @@ -0,0 +1 @@ +6 0.269974 0.300518 0.275234 0.435684 0.551693 0.431748 0.555195 0.292646 0.266484 0.299199 diff --git a/datasets/handleImage/label/订单1806514_51_7107083.txt b/datasets/handleImage/label/订单1806514_51_7107083.txt new file mode 100644 index 0000000..4a9f097 --- /dev/null +++ b/datasets/handleImage/label/订单1806514_51_7107083.txt @@ -0,0 +1 @@ +6 0.292606 0.358300 0.273361 0.465913 0.513078 0.479038 0.520078 0.372737 0.292606 0.358300 diff --git a/datasets/handleImage/label/订单1806515_51_7107133.txt b/datasets/handleImage/label/订单1806515_51_7107133.txt new file mode 100644 index 0000000..485b58b --- /dev/null +++ b/datasets/handleImage/label/订单1806515_51_7107133.txt @@ -0,0 +1 @@ +6 0.040733 0.368740 0.028480 0.494720 0.324200 0.509160 0.329453 0.387110 0.044240 0.368740 diff --git a/datasets/handleImage/label/订单1806516_51_7107103.txt b/datasets/handleImage/label/订单1806516_51_7107103.txt new file mode 100644 index 0000000..87a3d2a --- /dev/null +++ b/datasets/handleImage/label/订单1806516_51_7107103.txt @@ -0,0 +1 @@ +6 0.486953 0.468496 0.464206 0.578730 0.731927 0.608916 0.745924 0.485557 0.488698 0.467178 diff --git a/datasets/handleImage/label/订单1806519_51_7107227.txt b/datasets/handleImage/label/订单1806519_51_7107227.txt new file mode 100644 index 0000000..17ed6f2 --- /dev/null +++ b/datasets/handleImage/label/订单1806519_51_7107227.txt @@ -0,0 +1 @@ +6 0.548112 0.420009 0.542867 0.560428 0.663601 0.560428 0.663601 0.417386 0.553357 0.417386 diff --git a/datasets/handleImage/label/订单1806522_51_7107184.txt b/datasets/handleImage/label/订单1806522_51_7107184.txt new file mode 100644 index 0000000..5f98134 --- /dev/null +++ b/datasets/handleImage/label/订单1806522_51_7107184.txt @@ -0,0 +1 @@ +6 0.425589 0.440979 0.427339 0.559087 0.691556 0.561712 0.691556 0.439667 0.434339 0.439667 diff --git a/datasets/handleImage/label/订单1806523_51_7107175.txt b/datasets/handleImage/label/订单1806523_51_7107175.txt new file mode 100644 index 0000000..da6a49e --- /dev/null +++ b/datasets/handleImage/label/订单1806523_51_7107175.txt @@ -0,0 +1 @@ +6 0.360850 0.447542 0.397594 0.509221 0.549828 0.460662 0.504333 0.396358 0.359100 0.446229 diff --git a/datasets/handleImage/label/订单1806524_51_7107203.txt b/datasets/handleImage/label/订单1806524_51_7107203.txt new file mode 100644 index 0000000..18670ff --- /dev/null +++ b/datasets/handleImage/label/订单1806524_51_7107203.txt @@ -0,0 +1 @@ +6 0.397693 0.476350 0.404693 0.589210 0.656653 0.576090 0.647907 0.464540 0.395933 0.473730 diff --git a/datasets/handleImage/label/订单1806526_51_7107134.txt b/datasets/handleImage/label/订单1806526_51_7107134.txt new file mode 100644 index 0000000..a82ca00 --- /dev/null +++ b/datasets/handleImage/label/订单1806526_51_7107134.txt @@ -0,0 +1 @@ +6 0.320729 0.562979 0.331224 0.681094 0.605938 0.662725 0.584935 0.545918 0.318971 0.560361 diff --git a/datasets/handleImage/label/订单1806528_51_7107115.txt b/datasets/handleImage/label/订单1806528_51_7107115.txt new file mode 100644 index 0000000..eb0a1fd --- /dev/null +++ b/datasets/handleImage/label/订单1806528_51_7107115.txt @@ -0,0 +1 @@ +6 0.339974 0.457998 0.346966 0.559043 0.562187 0.557734 0.569193 0.456680 0.338216 0.455371 diff --git a/datasets/handleImage/label/订单1806536_51_7107277.txt b/datasets/handleImage/label/订单1806536_51_7107277.txt new file mode 100644 index 0000000..a4e9dd3 --- /dev/null +++ b/datasets/handleImage/label/订单1806536_51_7107277.txt @@ -0,0 +1 @@ +6 0.303229 0.536738 0.294479 0.644346 0.534193 0.644346 0.534193 0.535420 0.303229 0.536738 diff --git a/datasets/handleImage/label/订单1806541_51_7107482.txt b/datasets/handleImage/label/订单1806541_51_7107482.txt new file mode 100644 index 0000000..0f801e8 --- /dev/null +++ b/datasets/handleImage/label/订单1806541_51_7107482.txt @@ -0,0 +1 @@ +6 0.399466 0.444873 0.390716 0.531484 0.604193 0.538047 0.604193 0.448809 0.404714 0.442246 diff --git a/datasets/handleImage/label/订单1806543_51_7107285.txt b/datasets/handleImage/label/订单1806543_51_7107285.txt new file mode 100644 index 0000000..466eeb9 --- /dev/null +++ b/datasets/handleImage/label/订单1806543_51_7107285.txt @@ -0,0 +1 @@ +6 0.357474 0.514424 0.357474 0.611543 0.583190 0.619414 0.588438 0.519678 0.364466 0.509180 diff --git a/datasets/handleImage/label/订单1806544_51_7107363.txt b/datasets/handleImage/label/订单1806544_51_7107363.txt new file mode 100644 index 0000000..ad76773 --- /dev/null +++ b/datasets/handleImage/label/订单1806544_51_7107363.txt @@ -0,0 +1 @@ +6 0.359200 0.556400 0.376693 0.636460 0.555173 0.614150 0.535920 0.534090 0.355693 0.555090 diff --git a/datasets/handleImage/label/订单1806545_51_7107289.txt b/datasets/handleImage/label/订单1806545_51_7107289.txt new file mode 100644 index 0000000..b2da8a8 --- /dev/null +++ b/datasets/handleImage/label/订单1806545_51_7107289.txt @@ -0,0 +1 @@ +6 0.154492 0.375322 0.208737 0.477686 0.436211 0.422559 0.383711 0.309697 0.145742 0.375322 diff --git a/datasets/handleImage/label/订单1806548_51_7107271.txt b/datasets/handleImage/label/订单1806548_51_7107271.txt new file mode 100644 index 0000000..9eee02d --- /dev/null +++ b/datasets/handleImage/label/订单1806548_51_7107271.txt @@ -0,0 +1 @@ +6 0.257734 0.461934 0.255977 0.538047 0.443203 0.545918 0.446706 0.464561 0.261224 0.460625 diff --git a/datasets/handleImage/label/订单1806552_51_7107273.txt b/datasets/handleImage/label/订单1806552_51_7107273.txt new file mode 100644 index 0000000..2d1f48b --- /dev/null +++ b/datasets/handleImage/label/订单1806552_51_7107273.txt @@ -0,0 +1 @@ +6 0.211855 0.427827 0.204855 0.518380 0.496487 0.517067 0.494154 0.427827 0.209521 0.426514 diff --git a/datasets/handleImage/label/订单1806555_51_7107321.txt b/datasets/handleImage/label/订单1806555_51_7107321.txt new file mode 100644 index 0000000..3f3b414 --- /dev/null +++ b/datasets/handleImage/label/订单1806555_51_7107321.txt @@ -0,0 +1 @@ +6 0.168490 0.472432 0.147500 0.569541 0.381966 0.578730 0.392461 0.476367 0.161497 0.469805 diff --git a/datasets/handleImage/label/订单1806560_51_7107355.txt b/datasets/handleImage/label/订单1806560_51_7107355.txt new file mode 100644 index 0000000..7d0b302 --- /dev/null +++ b/datasets/handleImage/label/订单1806560_51_7107355.txt @@ -0,0 +1 @@ +6 0.336374 0.652281 0.285629 0.776952 0.383626 0.797950 0.441360 0.673279 0.338129 0.650976 diff --git a/datasets/handleImage/label/订单1806561_51_7107346.txt b/datasets/handleImage/label/订单1806561_51_7107346.txt new file mode 100644 index 0000000..4772ed6 --- /dev/null +++ b/datasets/handleImage/label/订单1806561_51_7107346.txt @@ -0,0 +1 @@ +6 0.282135 0.587982 0.322383 0.644408 0.453611 0.593224 0.415117 0.535482 0.280380 0.582730 diff --git a/datasets/handleImage/label/订单1806563_51_7107441.txt b/datasets/handleImage/label/订单1806563_51_7107441.txt new file mode 100644 index 0000000..bc1b122 --- /dev/null +++ b/datasets/handleImage/label/订单1806563_51_7107441.txt @@ -0,0 +1 @@ +6 0.450208 0.267705 0.355716 0.337266 0.511445 0.473740 0.609440 0.398945 0.457201 0.265078 diff --git a/datasets/handleImage/label/订单1806566_51_7107507.txt b/datasets/handleImage/label/订单1806566_51_7107507.txt new file mode 100644 index 0000000..a72bd41 --- /dev/null +++ b/datasets/handleImage/label/订单1806566_51_7107507.txt @@ -0,0 +1 @@ +6 0.492083 0.438354 0.488583 0.524967 0.712556 0.528904 0.707306 0.440979 0.497333 0.437042 diff --git a/datasets/handleImage/label/订单1806567_51_7107454.txt b/datasets/handleImage/label/订单1806567_51_7107454.txt new file mode 100644 index 0000000..1cdec50 --- /dev/null +++ b/datasets/handleImage/label/订单1806567_51_7107454.txt @@ -0,0 +1 @@ +6 0.373216 0.468496 0.373216 0.555107 0.574440 0.553799 0.565690 0.465869 0.371471 0.464561 diff --git a/datasets/handleImage/label/订单1806568_51_7107451.txt b/datasets/handleImage/label/订单1806568_51_7107451.txt new file mode 100644 index 0000000..83dc4d0 --- /dev/null +++ b/datasets/handleImage/label/订单1806568_51_7107451.txt @@ -0,0 +1 @@ +6 0.557573 0.353014 0.557573 0.593171 0.665840 0.598418 0.663872 0.353014 0.557573 0.354323 diff --git a/datasets/handleImage/label/订单1806570_51_7107513.txt b/datasets/handleImage/label/订单1806570_51_7107513.txt new file mode 100644 index 0000000..b949c15 --- /dev/null +++ b/datasets/handleImage/label/订单1806570_51_7107513.txt @@ -0,0 +1 @@ +6 0.292721 0.469805 0.315469 0.606289 0.621680 0.590537 0.605938 0.446182 0.285729 0.469805 diff --git a/datasets/handleImage/label/订单1806578_51_7107558.txt b/datasets/handleImage/label/订单1806578_51_7107558.txt new file mode 100644 index 0000000..eb152ce --- /dev/null +++ b/datasets/handleImage/label/订单1806578_51_7107558.txt @@ -0,0 +1 @@ +6 0.506392 0.643040 0.518203 0.829388 0.586118 0.822826 0.576274 0.639102 0.505410 0.640417 diff --git a/datasets/handleImage/label/订单1806583_51_7108508.txt b/datasets/handleImage/label/订单1806583_51_7108508.txt new file mode 100644 index 0000000..7e1fc4f --- /dev/null +++ b/datasets/handleImage/label/订单1806583_51_7108508.txt @@ -0,0 +1 @@ +6 0.431608 0.304484 0.445387 0.459340 0.631412 0.435719 0.622554 0.279549 0.435549 0.301856 diff --git a/datasets/handleImage/label/订单1806589_51_7107638.txt b/datasets/handleImage/label/订单1806589_51_7107638.txt new file mode 100644 index 0000000..d83f8ef --- /dev/null +++ b/datasets/handleImage/label/订单1806589_51_7107638.txt @@ -0,0 +1 @@ +6 0.406344 0.401608 0.413344 0.481658 0.583072 0.473787 0.577822 0.395046 0.408094 0.398983 diff --git a/datasets/handleImage/label/订单1806596_51_7107765.txt b/datasets/handleImage/label/订单1806596_51_7107765.txt new file mode 100644 index 0000000..66446ed --- /dev/null +++ b/datasets/handleImage/label/订单1806596_51_7107765.txt @@ -0,0 +1 @@ +6 0.419464 0.362235 0.400222 0.463284 0.648680 0.477725 0.660928 0.367480 0.421216 0.358294 diff --git a/datasets/handleImage/label/订单1806598_51_7107754.txt b/datasets/handleImage/label/订单1806598_51_7107754.txt new file mode 100644 index 0000000..b914eec --- /dev/null +++ b/datasets/handleImage/label/订单1806598_51_7107754.txt @@ -0,0 +1 @@ +6 0.493833 0.644392 0.483333 0.708696 0.637317 0.717879 0.635567 0.644392 0.495583 0.641767 diff --git a/datasets/handleImage/label/订单1806600_51_7107938.txt b/datasets/handleImage/label/订单1806600_51_7107938.txt new file mode 100644 index 0000000..f3cea44 --- /dev/null +++ b/datasets/handleImage/label/订单1806600_51_7107938.txt @@ -0,0 +1 @@ +6 0.325948 0.461912 0.325948 0.560343 0.563922 0.564277 0.556912 0.460600 0.324199 0.460600 diff --git a/datasets/handleImage/label/订单1806601_51_7107745.txt b/datasets/handleImage/label/订单1806601_51_7107745.txt new file mode 100644 index 0000000..c803562 --- /dev/null +++ b/datasets/handleImage/label/订单1806601_51_7107745.txt @@ -0,0 +1 @@ +6 0.325977 0.535420 0.290977 0.612852 0.472956 0.669277 0.525443 0.573486 0.327721 0.531484 diff --git a/datasets/handleImage/label/订单1806603_51_7107795.txt b/datasets/handleImage/label/订单1806603_51_7107795.txt new file mode 100644 index 0000000..37d1705 --- /dev/null +++ b/datasets/handleImage/label/订单1806603_51_7107795.txt @@ -0,0 +1 @@ +6 0.116003 0.477686 0.171992 0.620723 0.507943 0.535420 0.437956 0.396318 0.114245 0.477686 diff --git a/datasets/handleImage/label/订单1806604_51_7107828.txt b/datasets/handleImage/label/订单1806604_51_7107828.txt new file mode 100644 index 0000000..b68ea7e --- /dev/null +++ b/datasets/handleImage/label/订单1806604_51_7107828.txt @@ -0,0 +1 @@ +6 0.395964 0.413379 0.402969 0.517051 0.647930 0.527549 0.654935 0.421250 0.397708 0.410752 diff --git a/datasets/handleImage/label/订单1806607_51_7107900.txt b/datasets/handleImage/label/订单1806607_51_7107900.txt new file mode 100644 index 0000000..525a1c6 --- /dev/null +++ b/datasets/handleImage/label/订单1806607_51_7107900.txt @@ -0,0 +1 @@ +6 0.373077 0.492144 0.383577 0.593192 0.586551 0.574817 0.572551 0.476394 0.371321 0.486894 diff --git a/datasets/handleImage/label/订单1806610_51_7107834.txt b/datasets/handleImage/label/订单1806610_51_7107834.txt new file mode 100644 index 0000000..9d62953 --- /dev/null +++ b/datasets/handleImage/label/订单1806610_51_7107834.txt @@ -0,0 +1 @@ +6 0.226237 0.404189 0.227982 0.549863 0.563945 0.538047 0.546445 0.397627 0.231484 0.402881 diff --git a/datasets/handleImage/label/订单1806615_51_7107821.txt b/datasets/handleImage/label/订单1806615_51_7107821.txt new file mode 100644 index 0000000..69abf88 --- /dev/null +++ b/datasets/handleImage/label/订单1806615_51_7107821.txt @@ -0,0 +1 @@ +6 0.486953 0.414687 0.481706 0.505244 0.709180 0.507861 0.709180 0.414687 0.479948 0.413379 diff --git a/datasets/handleImage/label/订单1806618_51_7107891.txt b/datasets/handleImage/label/订单1806618_51_7107891.txt new file mode 100644 index 0000000..6195a41 --- /dev/null +++ b/datasets/handleImage/label/订单1806618_51_7107891.txt @@ -0,0 +1 @@ +6 0.408216 0.482930 0.397708 0.555107 0.572695 0.570859 0.576185 0.494746 0.408216 0.482930 diff --git a/datasets/handleImage/label/订单1806625_51_7107994.txt b/datasets/handleImage/label/订单1806625_51_7107994.txt new file mode 100644 index 0000000..4c981b7 --- /dev/null +++ b/datasets/handleImage/label/订单1806625_51_7107994.txt @@ -0,0 +1 @@ +6 0.362539 0.351735 0.359045 0.473784 0.627107 0.484284 0.637618 0.353049 0.362539 0.349108 diff --git a/datasets/handleImage/label/订单1806626_51_7108129.txt b/datasets/handleImage/label/订单1806626_51_7108129.txt new file mode 100644 index 0000000..b656099 --- /dev/null +++ b/datasets/handleImage/label/订单1806626_51_7108129.txt @@ -0,0 +1 @@ +6 0.525443 0.530176 0.528945 0.699463 0.672435 0.698154 0.670677 0.528857 0.523698 0.527549 diff --git a/datasets/handleImage/label/订单1806627_51_7108082.txt b/datasets/handleImage/label/订单1806627_51_7108082.txt new file mode 100644 index 0000000..53f0b8e --- /dev/null +++ b/datasets/handleImage/label/订单1806627_51_7108082.txt @@ -0,0 +1 @@ +6 0.241960 0.229630 0.252453 0.372680 0.360947 0.371360 0.357440 0.225700 0.243707 0.227010 diff --git a/datasets/handleImage/label/订单1806629_51_7108069.txt b/datasets/handleImage/label/订单1806629_51_7108069.txt new file mode 100644 index 0000000..08b8131 --- /dev/null +++ b/datasets/handleImage/label/订单1806629_51_7108069.txt @@ -0,0 +1 @@ +6 0.284856 0.646981 0.263864 0.761151 0.507082 0.792647 0.522826 0.669291 0.288362 0.648287 diff --git a/datasets/handleImage/label/订单1806633_51_7108088.txt b/datasets/handleImage/label/订单1806633_51_7108088.txt new file mode 100644 index 0000000..6376569 --- /dev/null +++ b/datasets/handleImage/label/订单1806633_51_7108088.txt @@ -0,0 +1 @@ +6 0.416844 0.414733 0.406344 0.515779 0.611067 0.526279 0.616317 0.431792 0.422089 0.412108 diff --git a/datasets/handleImage/label/订单1806638_51_7108131.txt b/datasets/handleImage/label/订单1806638_51_7108131.txt new file mode 100644 index 0000000..1e30be2 --- /dev/null +++ b/datasets/handleImage/label/订单1806638_51_7108131.txt @@ -0,0 +1 @@ +6 0.336471 0.397627 0.322474 0.511807 0.588438 0.532803 0.593685 0.416006 0.338216 0.395000 diff --git a/datasets/handleImage/label/订单1806640_51_7108162.txt b/datasets/handleImage/label/订单1806640_51_7108162.txt new file mode 100644 index 0000000..ddcfed2 --- /dev/null +++ b/datasets/handleImage/label/订单1806640_51_7108162.txt @@ -0,0 +1 @@ +6 0.616317 0.517092 0.586572 0.598458 0.756300 0.639142 0.786044 0.549900 0.623317 0.515779 diff --git a/datasets/handleImage/label/订单1806641_51_7108198.txt b/datasets/handleImage/label/订单1806641_51_7108198.txt new file mode 100644 index 0000000..ef2850b --- /dev/null +++ b/datasets/handleImage/label/订单1806641_51_7108198.txt @@ -0,0 +1 @@ +6 0.569173 0.434360 0.562173 0.513100 0.712653 0.526220 0.726653 0.448790 0.567413 0.434360 diff --git a/datasets/handleImage/label/订单1806643_51_7108281.txt b/datasets/handleImage/label/订单1806643_51_7108281.txt new file mode 100644 index 0000000..7e2036f --- /dev/null +++ b/datasets/handleImage/label/订单1806643_51_7108281.txt @@ -0,0 +1 @@ +6 0.266307 0.612856 0.312125 0.670601 0.538136 0.632539 0.498432 0.578735 0.266307 0.610229 diff --git a/datasets/handleImage/label/订单1806644_51_7108286.txt b/datasets/handleImage/label/订单1806644_51_7108286.txt new file mode 100644 index 0000000..25c0a7a --- /dev/null +++ b/datasets/handleImage/label/订单1806644_51_7108286.txt @@ -0,0 +1 @@ +6 0.604193 0.539365 0.509701 0.572168 0.588438 0.699463 0.689922 0.661406 0.609440 0.540674 diff --git a/datasets/handleImage/label/订单1806646_51_7108239.txt b/datasets/handleImage/label/订单1806646_51_7108239.txt new file mode 100644 index 0000000..04d5894 --- /dev/null +++ b/datasets/handleImage/label/订单1806646_51_7108239.txt @@ -0,0 +1 @@ +6 0.212240 0.519678 0.236732 0.587920 0.430964 0.545918 0.402969 0.477686 0.208737 0.518359 diff --git a/datasets/handleImage/label/订单1806647_51_7108252.txt b/datasets/handleImage/label/订单1806647_51_7108252.txt new file mode 100644 index 0000000..42960a4 --- /dev/null +++ b/datasets/handleImage/label/订单1806647_51_7108252.txt @@ -0,0 +1 @@ +6 0.450187 0.350370 0.416933 0.499970 0.749400 0.531470 0.770387 0.385800 0.451933 0.351680 diff --git a/datasets/handleImage/label/订单1806650_51_7108312.txt b/datasets/handleImage/label/订单1806650_51_7108312.txt new file mode 100644 index 0000000..c844f1b --- /dev/null +++ b/datasets/handleImage/label/订单1806650_51_7108312.txt @@ -0,0 +1 @@ +6 0.441458 0.400254 0.444961 0.484238 0.703919 0.478994 0.672435 0.393691 0.443203 0.401562 diff --git a/datasets/handleImage/label/订单1806652_51_7108355.txt b/datasets/handleImage/label/订单1806652_51_7108355.txt new file mode 100644 index 0000000..637be69 --- /dev/null +++ b/datasets/handleImage/label/订单1806652_51_7108355.txt @@ -0,0 +1 @@ +6 0.402457 0.465833 0.399547 0.541949 0.711233 0.540634 0.702495 0.459271 0.399547 0.464518 diff --git a/datasets/handleImage/label/订单1806653_51_7108388.txt b/datasets/handleImage/label/订单1806653_51_7108388.txt new file mode 100644 index 0000000..8ffbcdd --- /dev/null +++ b/datasets/handleImage/label/订单1806653_51_7108388.txt @@ -0,0 +1 @@ +6 0.108000 0.539402 0.142993 0.650951 0.417712 0.593206 0.377464 0.484284 0.104510 0.540716 diff --git a/datasets/handleImage/label/订单1806654_51_7108342.txt b/datasets/handleImage/label/订单1806654_51_7108342.txt new file mode 100644 index 0000000..12a87f3 --- /dev/null +++ b/datasets/handleImage/label/订单1806654_51_7108342.txt @@ -0,0 +1 @@ +6 0.477852 0.389759 0.481787 0.480306 0.651079 0.494746 0.631392 0.400254 0.475879 0.387135 diff --git a/datasets/handleImage/label/订单1806655_51_7108343.txt b/datasets/handleImage/label/订单1806655_51_7108343.txt new file mode 100644 index 0000000..04b9b6a --- /dev/null +++ b/datasets/handleImage/label/订单1806655_51_7108343.txt @@ -0,0 +1 @@ +6 0.259453 0.493410 0.294453 0.627270 0.588413 0.583960 0.555173 0.450100 0.252453 0.492100 diff --git a/datasets/handleImage/label/订单1806657_51_7108437.txt b/datasets/handleImage/label/订单1806657_51_7108437.txt new file mode 100644 index 0000000..ad0f5b1 --- /dev/null +++ b/datasets/handleImage/label/订单1806657_51_7108437.txt @@ -0,0 +1 @@ +6 0.534108 0.391129 0.520102 0.452807 0.684591 0.465932 0.686330 0.395066 0.532354 0.388509 diff --git a/datasets/handleImage/label/订单1806663_51_7108428.txt b/datasets/handleImage/label/订单1806663_51_7108428.txt new file mode 100644 index 0000000..4766e30 --- /dev/null +++ b/datasets/handleImage/label/订单1806663_51_7108428.txt @@ -0,0 +1 @@ +6 0.287383 0.439682 0.303129 0.564353 0.588348 0.544671 0.565599 0.426557 0.283889 0.437061 diff --git a/datasets/handleImage/label/订单1806664_51_7108447.txt b/datasets/handleImage/label/订单1806664_51_7108447.txt new file mode 100644 index 0000000..dcc0f5b --- /dev/null +++ b/datasets/handleImage/label/订单1806664_51_7108447.txt @@ -0,0 +1 @@ +6 0.598920 0.511780 0.541173 0.594460 0.742400 0.677140 0.800133 0.585280 0.604160 0.509160 diff --git a/datasets/handleImage/label/订单1806667_51_7108421.txt b/datasets/handleImage/label/订单1806667_51_7108421.txt new file mode 100644 index 0000000..14e2445 --- /dev/null +++ b/datasets/handleImage/label/订单1806667_51_7108421.txt @@ -0,0 +1 @@ +6 0.471961 0.425225 0.449216 0.472471 0.578693 0.511843 0.606693 0.454098 0.470209 0.421294 diff --git a/datasets/handleImage/label/订单1806672_51_7108598.txt b/datasets/handleImage/label/订单1806672_51_7108598.txt new file mode 100644 index 0000000..7d46e79 --- /dev/null +++ b/datasets/handleImage/label/订单1806672_51_7108598.txt @@ -0,0 +1 @@ +6 0.134122 0.690275 0.282856 0.751955 0.504489 0.648280 0.355756 0.582665 0.131200 0.685025 diff --git a/datasets/handleImage/label/订单1806673_51_7108593.txt b/datasets/handleImage/label/订单1806673_51_7108593.txt new file mode 100644 index 0000000..99de692 --- /dev/null +++ b/datasets/handleImage/label/订单1806673_51_7108593.txt @@ -0,0 +1 @@ +6 0.356597 0.391073 0.346101 0.465874 0.549077 0.480311 0.547324 0.396324 0.356597 0.391073 diff --git a/datasets/handleImage/label/订单1806676_51_7108594.txt b/datasets/handleImage/label/订单1806676_51_7108594.txt new file mode 100644 index 0000000..34e4a53 --- /dev/null +++ b/datasets/handleImage/label/订单1806676_51_7108594.txt @@ -0,0 +1 @@ +6 0.177122 0.553837 0.348600 0.614204 0.462333 0.452788 0.299606 0.385858 0.173622 0.549900 diff --git a/datasets/handleImage/label/订单1806685_51_7108626.txt b/datasets/handleImage/label/订单1806685_51_7108626.txt new file mode 100644 index 0000000..1eccb89 --- /dev/null +++ b/datasets/handleImage/label/订单1806685_51_7108626.txt @@ -0,0 +1 @@ +6 0.322474 0.292646 0.306719 0.426504 0.675924 0.433066 0.663685 0.286084 0.322474 0.291328 diff --git a/datasets/handleImage/label/订单1806687_51_7108742.txt b/datasets/handleImage/label/订单1806687_51_7108742.txt new file mode 100644 index 0000000..0da2654 --- /dev/null +++ b/datasets/handleImage/label/订单1806687_51_7108742.txt @@ -0,0 +1 @@ +6 0.416933 0.557720 0.418693 0.628580 0.588413 0.622020 0.570920 0.549840 0.411693 0.555090 diff --git a/datasets/handleImage/label/订单1806688_51_7108719.txt b/datasets/handleImage/label/订单1806688_51_7108719.txt new file mode 100644 index 0000000..d97974e --- /dev/null +++ b/datasets/handleImage/label/订单1806688_51_7108719.txt @@ -0,0 +1 @@ +6 0.317974 0.377980 0.314484 0.479029 0.564693 0.472471 0.555948 0.370108 0.317974 0.374049 diff --git a/datasets/handleImage/label/订单1806689_51_7109608.txt b/datasets/handleImage/label/订单1806689_51_7109608.txt new file mode 100644 index 0000000..0116723 --- /dev/null +++ b/datasets/handleImage/label/订单1806689_51_7109608.txt @@ -0,0 +1 @@ +6 0.441343 0.414731 0.425590 0.493472 0.607569 0.507908 0.625069 0.429167 0.441343 0.413420 diff --git a/datasets/handleImage/label/订单1806693_51_7108727.txt b/datasets/handleImage/label/订单1806693_51_7108727.txt new file mode 100644 index 0000000..85d21ac --- /dev/null +++ b/datasets/handleImage/label/订单1806693_51_7108727.txt @@ -0,0 +1 @@ +6 0.302675 0.513147 0.302675 0.812360 0.446380 0.803173 0.434565 0.498713 0.300710 0.509213 diff --git a/datasets/handleImage/label/订单1806696_51_7108692.txt b/datasets/handleImage/label/订单1806696_51_7108692.txt new file mode 100644 index 0000000..503c8c6 --- /dev/null +++ b/datasets/handleImage/label/订单1806696_51_7108692.txt @@ -0,0 +1 @@ +6 0.535951 0.523613 0.493945 0.644346 0.758164 0.685029 0.786159 0.562979 0.530690 0.524922 diff --git a/datasets/handleImage/label/订单1806701_51_7108770.txt b/datasets/handleImage/label/订单1806701_51_7108770.txt new file mode 100644 index 0000000..eb8374e --- /dev/null +++ b/datasets/handleImage/label/订单1806701_51_7108770.txt @@ -0,0 +1 @@ +6 0.360964 0.472432 0.362721 0.552480 0.579688 0.545918 0.560443 0.461934 0.357474 0.467178 diff --git a/datasets/handleImage/label/订单1806702_51_7108883.txt b/datasets/handleImage/label/订单1806702_51_7108883.txt new file mode 100644 index 0000000..ceb69db --- /dev/null +++ b/datasets/handleImage/label/订单1806702_51_7108883.txt @@ -0,0 +1 @@ +6 0.485102 0.473805 0.483363 0.547292 0.654839 0.544671 0.651345 0.468553 0.483363 0.471184 diff --git a/datasets/handleImage/label/订单1806704_51_7108800.txt b/datasets/handleImage/label/订单1806704_51_7108800.txt new file mode 100644 index 0000000..addd4ed --- /dev/null +++ b/datasets/handleImage/label/订单1806704_51_7108800.txt @@ -0,0 +1 @@ +6 0.458958 0.480303 0.436211 0.566924 0.640938 0.585293 0.651432 0.497363 0.453711 0.480303 diff --git a/datasets/handleImage/label/订单1806705_51_7109131.txt b/datasets/handleImage/label/订单1806705_51_7109131.txt new file mode 100644 index 0000000..786fa2f --- /dev/null +++ b/datasets/handleImage/label/订单1806705_51_7109131.txt @@ -0,0 +1 @@ +6 0.170247 0.475059 0.231484 0.547236 0.388958 0.473740 0.327721 0.401562 0.166745 0.475059 diff --git a/datasets/handleImage/label/订单1806707_51_7108960.txt b/datasets/handleImage/label/订单1806707_51_7108960.txt new file mode 100644 index 0000000..1a00263 --- /dev/null +++ b/datasets/handleImage/label/订单1806707_51_7108960.txt @@ -0,0 +1 @@ +6 0.668811 0.139142 0.679311 0.328117 0.824539 0.326804 0.810544 0.144392 0.668811 0.139142 diff --git a/datasets/handleImage/label/订单1806710_51_7108866.txt b/datasets/handleImage/label/订单1806710_51_7108866.txt new file mode 100644 index 0000000..942ba0b --- /dev/null +++ b/datasets/handleImage/label/订单1806710_51_7108866.txt @@ -0,0 +1 @@ +6 0.405464 0.547275 0.389712 0.616833 0.580444 0.626020 0.575190 0.548588 0.407216 0.544647 diff --git a/datasets/handleImage/label/订单1806714_51_7108942.txt b/datasets/handleImage/label/订单1806714_51_7108942.txt new file mode 100644 index 0000000..8f9f25a --- /dev/null +++ b/datasets/handleImage/label/订单1806714_51_7108942.txt @@ -0,0 +1 @@ +6 0.454883 0.384685 0.450342 0.505770 0.550928 0.524512 0.552871 0.397657 0.454883 0.386128 diff --git a/datasets/handleImage/label/订单1806715_51_7108921.txt b/datasets/handleImage/label/订单1806715_51_7108921.txt new file mode 100644 index 0000000..ad4c23c --- /dev/null +++ b/datasets/handleImage/label/订单1806715_51_7108921.txt @@ -0,0 +1 @@ +6 0.406458 0.412061 0.409961 0.452744 0.502695 0.451436 0.497448 0.406816 0.408216 0.413379 diff --git a/datasets/handleImage/label/订单1806724_51_7108964.txt b/datasets/handleImage/label/订单1806724_51_7108964.txt new file mode 100644 index 0000000..e98f8f9 --- /dev/null +++ b/datasets/handleImage/label/订单1806724_51_7108964.txt @@ -0,0 +1 @@ +6 0.562072 0.381921 0.551572 0.485596 0.829789 0.477725 0.822789 0.371425 0.558572 0.380608 diff --git a/datasets/handleImage/label/订单1806725_51_7109074.txt b/datasets/handleImage/label/订单1806725_51_7109074.txt new file mode 100644 index 0000000..3b0fe32 --- /dev/null +++ b/datasets/handleImage/label/订单1806725_51_7109074.txt @@ -0,0 +1 @@ +6 0.357440 0.507850 0.352200 0.593150 0.586667 0.597090 0.572667 0.502600 0.355693 0.505220 diff --git a/datasets/handleImage/label/订单1806726_51_7109000.txt b/datasets/handleImage/label/订单1806726_51_7109000.txt new file mode 100644 index 0000000..eef266e --- /dev/null +++ b/datasets/handleImage/label/订单1806726_51_7109000.txt @@ -0,0 +1 @@ +6 0.346966 0.330703 0.345221 0.422559 0.572695 0.419941 0.563945 0.318887 0.348724 0.332012 diff --git a/datasets/handleImage/label/订单1806731_51_7109028.txt b/datasets/handleImage/label/订单1806731_51_7109028.txt new file mode 100644 index 0000000..7501a3a --- /dev/null +++ b/datasets/handleImage/label/订单1806731_51_7109028.txt @@ -0,0 +1 @@ +6 0.269960 0.383180 0.264707 0.538030 0.560413 0.548530 0.567413 0.397610 0.269960 0.381860 diff --git a/datasets/handleImage/label/订单1806732_51_7109071.txt b/datasets/handleImage/label/订单1806732_51_7109071.txt new file mode 100644 index 0000000..5b3be62 --- /dev/null +++ b/datasets/handleImage/label/订单1806732_51_7109071.txt @@ -0,0 +1 @@ +6 0.204063 0.519681 0.213249 0.627292 0.398288 0.611543 0.385163 0.497370 0.201439 0.517057 diff --git a/datasets/handleImage/label/订单1806735_51_7109159.txt b/datasets/handleImage/label/订单1806735_51_7109159.txt new file mode 100644 index 0000000..0b8bec7 --- /dev/null +++ b/datasets/handleImage/label/订单1806735_51_7109159.txt @@ -0,0 +1 @@ +6 0.363599 0.371384 0.384602 0.505242 0.659308 0.480311 0.631315 0.345138 0.365352 0.371384 diff --git a/datasets/handleImage/label/订单1806736_51_7109098.txt b/datasets/handleImage/label/订单1806736_51_7109098.txt new file mode 100644 index 0000000..7093ced --- /dev/null +++ b/datasets/handleImage/label/订单1806736_51_7109098.txt @@ -0,0 +1 @@ +6 0.164898 0.471184 0.177149 0.560417 0.394123 0.534178 0.369620 0.446250 0.159649 0.471184 diff --git a/datasets/handleImage/label/订单1806739_51_7109124.txt b/datasets/handleImage/label/订单1806739_51_7109124.txt new file mode 100644 index 0000000..7023438 --- /dev/null +++ b/datasets/handleImage/label/订单1806739_51_7109124.txt @@ -0,0 +1 @@ +6 0.360850 0.511846 0.373100 0.590583 0.551572 0.581396 0.541078 0.500033 0.360850 0.511846 diff --git a/datasets/handleImage/label/订单1806740_51_7109289.txt b/datasets/handleImage/label/订单1806740_51_7109289.txt new file mode 100644 index 0000000..3816c2f --- /dev/null +++ b/datasets/handleImage/label/订单1806740_51_7109289.txt @@ -0,0 +1 @@ +6 0.802958 0.477650 0.730043 0.503894 0.785225 0.688929 0.856168 0.658744 0.803945 0.477650 diff --git a/datasets/handleImage/label/订单1806744_51_7109168.txt b/datasets/handleImage/label/订单1806744_51_7109168.txt new file mode 100644 index 0000000..04ae3db --- /dev/null +++ b/datasets/handleImage/label/订单1806744_51_7109168.txt @@ -0,0 +1 @@ +6 0.514948 0.468496 0.500951 0.562979 0.712669 0.574795 0.717917 0.475059 0.521953 0.464561 diff --git a/datasets/handleImage/label/订单1806746_51_7109192.txt b/datasets/handleImage/label/订单1806746_51_7109192.txt new file mode 100644 index 0000000..4d49634 --- /dev/null +++ b/datasets/handleImage/label/订单1806746_51_7109192.txt @@ -0,0 +1 @@ +6 0.415208 0.497363 0.413464 0.574795 0.583190 0.580039 0.586693 0.498682 0.411706 0.498682 diff --git a/datasets/handleImage/label/订单1806748_51_7109280.txt b/datasets/handleImage/label/订单1806748_51_7109280.txt new file mode 100644 index 0000000..610559b --- /dev/null +++ b/datasets/handleImage/label/订单1806748_51_7109280.txt @@ -0,0 +1 @@ +6 0.448440 0.397610 0.409933 0.478980 0.600667 0.528840 0.639160 0.434360 0.451933 0.396300 diff --git a/datasets/handleImage/label/订单1806749_51_7109191.txt b/datasets/handleImage/label/订单1806749_51_7109191.txt new file mode 100644 index 0000000..155c510 --- /dev/null +++ b/datasets/handleImage/label/订单1806749_51_7109191.txt @@ -0,0 +1 @@ +6 0.453711 0.485557 0.439714 0.561670 0.630430 0.573486 0.632188 0.496055 0.451953 0.484238 diff --git a/datasets/handleImage/label/订单1806750_51_7109251.txt b/datasets/handleImage/label/订单1806750_51_7109251.txt new file mode 100644 index 0000000..ebefc1d --- /dev/null +++ b/datasets/handleImage/label/订单1806750_51_7109251.txt @@ -0,0 +1 @@ +6 0.450208 0.614160 0.409961 0.758525 0.527201 0.774268 0.562187 0.619414 0.450208 0.614160 diff --git a/datasets/handleImage/label/订单1806753_51_7109290.txt b/datasets/handleImage/label/订单1806753_51_7109290.txt new file mode 100644 index 0000000..df77da0 --- /dev/null +++ b/datasets/handleImage/label/订单1806753_51_7109290.txt @@ -0,0 +1 @@ +6 0.459150 0.272962 0.449307 0.482936 0.540840 0.489492 0.553638 0.270332 0.462100 0.272962 diff --git a/datasets/handleImage/label/订单1806754_51_7109252.txt b/datasets/handleImage/label/订单1806754_51_7109252.txt new file mode 100644 index 0000000..cd3cccb --- /dev/null +++ b/datasets/handleImage/label/订单1806754_51_7109252.txt @@ -0,0 +1 @@ +6 0.278707 0.520970 0.290947 0.615460 0.504427 0.606270 0.493933 0.511780 0.282200 0.520970 diff --git a/datasets/handleImage/label/订单1806757_51_7109352.txt b/datasets/handleImage/label/订单1806757_51_7109352.txt new file mode 100644 index 0000000..6d43656 --- /dev/null +++ b/datasets/handleImage/label/订单1806757_51_7109352.txt @@ -0,0 +1 @@ +6 0.322474 0.511797 0.310221 0.608916 0.509701 0.625977 0.521953 0.527549 0.327721 0.510488 diff --git a/datasets/handleImage/label/订单1806762_51_7109448.txt b/datasets/handleImage/label/订单1806762_51_7109448.txt new file mode 100644 index 0000000..cdd490a --- /dev/null +++ b/datasets/handleImage/label/订单1806762_51_7109448.txt @@ -0,0 +1 @@ +6 0.368719 0.367480 0.377464 0.481657 0.657438 0.488216 0.645190 0.366176 0.365216 0.366176 diff --git a/datasets/handleImage/label/订单1806764_51_7109325.txt b/datasets/handleImage/label/订单1806764_51_7109325.txt new file mode 100644 index 0000000..ce315d0 --- /dev/null +++ b/datasets/handleImage/label/订单1806764_51_7109325.txt @@ -0,0 +1 @@ +6 0.423843 0.326806 0.434340 0.418672 0.665313 0.400295 0.654815 0.305807 0.425590 0.325495 diff --git a/datasets/handleImage/label/订单1806767_51_7109350.txt b/datasets/handleImage/label/订单1806767_51_7109350.txt new file mode 100644 index 0000000..5fafe75 --- /dev/null +++ b/datasets/handleImage/label/订单1806767_51_7109350.txt @@ -0,0 +1 @@ +6 0.406458 0.531484 0.399466 0.639102 0.649687 0.641719 0.639180 0.532803 0.404714 0.528857 diff --git a/datasets/handleImage/label/订单1806769_51_7109510.txt b/datasets/handleImage/label/订单1806769_51_7109510.txt new file mode 100644 index 0000000..2351d56 --- /dev/null +++ b/datasets/handleImage/label/订单1806769_51_7109510.txt @@ -0,0 +1 @@ +6 0.581426 0.553624 0.593755 0.730633 0.645020 0.713221 0.633989 0.527511 0.581426 0.547817 diff --git a/datasets/handleImage/label/订单1806771_51_7109478.txt b/datasets/handleImage/label/订单1806771_51_7109478.txt new file mode 100644 index 0000000..66041b9 --- /dev/null +++ b/datasets/handleImage/label/订单1806771_51_7109478.txt @@ -0,0 +1 @@ +6 0.373216 0.392383 0.383711 0.464561 0.537695 0.457998 0.534193 0.384502 0.373216 0.391064 diff --git a/datasets/handleImage/label/订单1806772_51_7109424.txt b/datasets/handleImage/label/订单1806772_51_7109424.txt new file mode 100644 index 0000000..48276be --- /dev/null +++ b/datasets/handleImage/label/订单1806772_51_7109424.txt @@ -0,0 +1 @@ +6 0.385441 0.367426 0.380196 0.460600 0.591912 0.457978 0.590163 0.364804 0.390686 0.366115 diff --git a/datasets/handleImage/label/订单1806773_51_7109531.txt b/datasets/handleImage/label/订单1806773_51_7109531.txt new file mode 100644 index 0000000..b3ac948 --- /dev/null +++ b/datasets/handleImage/label/订单1806773_51_7109531.txt @@ -0,0 +1 @@ +6 0.553427 0.368740 0.542920 0.456670 0.740653 0.472410 0.742400 0.381860 0.558667 0.367430 diff --git a/datasets/handleImage/label/订单1806775_51_7109532.txt b/datasets/handleImage/label/订单1806775_51_7109532.txt new file mode 100644 index 0000000..dcb5bf5 --- /dev/null +++ b/datasets/handleImage/label/订单1806775_51_7109532.txt @@ -0,0 +1 @@ +6 0.252361 0.548592 0.255861 0.598458 0.387094 0.580083 0.380094 0.528904 0.254111 0.545967 diff --git a/datasets/handleImage/label/订单1806776_51_7109527.txt b/datasets/handleImage/label/订单1806776_51_7109527.txt new file mode 100644 index 0000000..b9b81da --- /dev/null +++ b/datasets/handleImage/label/订单1806776_51_7109527.txt @@ -0,0 +1 @@ +6 0.360964 0.257207 0.343464 0.379258 0.600690 0.397627 0.614687 0.275586 0.366211 0.255898 diff --git a/datasets/handleImage/label/订单1806779_51_7109619.txt b/datasets/handleImage/label/订单1806779_51_7109619.txt new file mode 100644 index 0000000..f0ac5a1 --- /dev/null +++ b/datasets/handleImage/label/订单1806779_51_7109619.txt @@ -0,0 +1 @@ +6 0.572695 0.304453 0.574440 0.404189 0.796667 0.392383 0.789661 0.288701 0.569193 0.303145 diff --git a/datasets/handleImage/label/订单1806786_51_7109635.txt b/datasets/handleImage/label/订单1806786_51_7109635.txt new file mode 100644 index 0000000..43ca14d --- /dev/null +++ b/datasets/handleImage/label/订单1806786_51_7109635.txt @@ -0,0 +1 @@ +6 0.298168 0.477690 0.298168 0.574801 0.523629 0.572171 0.518387 0.469810 0.296417 0.478997 diff --git a/datasets/handleImage/label/订单1806790_51_7109654.txt b/datasets/handleImage/label/订单1806790_51_7109654.txt new file mode 100644 index 0000000..a0c8f96 --- /dev/null +++ b/datasets/handleImage/label/订单1806790_51_7109654.txt @@ -0,0 +1 @@ +6 0.381230 0.688971 0.382539 0.771647 0.526895 0.774271 0.525586 0.690280 0.379915 0.685033 diff --git a/datasets/handleImage/label/订单1806799_51_7109764.txt b/datasets/handleImage/label/订单1806799_51_7109764.txt new file mode 100644 index 0000000..de9d17e --- /dev/null +++ b/datasets/handleImage/label/订单1806799_51_7109764.txt @@ -0,0 +1 @@ +6 0.574433 0.675837 0.577933 0.809694 0.695167 0.805756 0.681167 0.671900 0.574433 0.673213 diff --git a/datasets/handleImage/label/订单1806804_51_7109816.txt b/datasets/handleImage/label/订单1806804_51_7109816.txt new file mode 100644 index 0000000..d6aa0cc --- /dev/null +++ b/datasets/handleImage/label/订单1806804_51_7109816.txt @@ -0,0 +1 @@ +6 0.450089 0.514467 0.448339 0.623392 0.660061 0.620767 0.646061 0.514467 0.444839 0.514467 diff --git a/datasets/handleImage/label/订单1806805_51_7109765.txt b/datasets/handleImage/label/订单1806805_51_7109765.txt new file mode 100644 index 0000000..a48e105 --- /dev/null +++ b/datasets/handleImage/label/订单1806805_51_7109765.txt @@ -0,0 +1 @@ +6 0.353850 0.493471 0.359100 0.582708 0.565572 0.574838 0.553322 0.482971 0.355600 0.492158 diff --git a/datasets/handleImage/label/订单1806807_51_7110016.txt b/datasets/handleImage/label/订单1806807_51_7110016.txt new file mode 100644 index 0000000..4edbf7b --- /dev/null +++ b/datasets/handleImage/label/订单1806807_51_7110016.txt @@ -0,0 +1 @@ +6 0.154033 0.040680 0.186514 0.173226 0.347930 0.133854 0.323799 0.000000 0.312732 0.000000 0.154033 0.039368 diff --git a/datasets/handleImage/label/订单1806810_51_7110036.txt b/datasets/handleImage/label/订单1806810_51_7110036.txt new file mode 100644 index 0000000..e108928 --- /dev/null +++ b/datasets/handleImage/label/订单1806810_51_7110036.txt @@ -0,0 +1 @@ +6 0.245363 0.053103 0.244048 0.316886 0.635121 0.322134 0.633806 0.057036 0.241419 0.050473 diff --git a/datasets/handleImage/label/订单1806812_51_7109968.txt b/datasets/handleImage/label/订单1806812_51_7109968.txt new file mode 100644 index 0000000..226c347 --- /dev/null +++ b/datasets/handleImage/label/订单1806812_51_7109968.txt @@ -0,0 +1 @@ +6 0.364371 0.434441 0.364371 0.503991 0.516608 0.510548 0.525351 0.434441 0.371374 0.434441 diff --git a/datasets/handleImage/label/订单1806813_51_7109962.txt b/datasets/handleImage/label/订单1806813_51_7109962.txt new file mode 100644 index 0000000..ad5dd03 --- /dev/null +++ b/datasets/handleImage/label/订单1806813_51_7109962.txt @@ -0,0 +1 @@ +6 0.366655 0.383227 0.379450 0.511840 0.540865 0.485593 0.530040 0.355667 0.366655 0.381913 diff --git a/datasets/handleImage/label/订单1806819_51_7109971.txt b/datasets/handleImage/label/订单1806819_51_7109971.txt new file mode 100644 index 0000000..0d9ebad --- /dev/null +++ b/datasets/handleImage/label/订单1806819_51_7109971.txt @@ -0,0 +1 @@ +6 0.383594 0.535467 0.397594 0.641767 0.619817 0.626017 0.605817 0.523654 0.383594 0.536779 diff --git a/datasets/handleImage/label/订单1806820_51_7110176.txt b/datasets/handleImage/label/订单1806820_51_7110176.txt new file mode 100644 index 0000000..0c930b7 --- /dev/null +++ b/datasets/handleImage/label/订单1806820_51_7110176.txt @@ -0,0 +1 @@ +6 0.543820 0.232307 0.485750 0.481653 0.636340 0.542020 0.681615 0.283493 0.545785 0.231000 diff --git a/datasets/handleImage/label/订单1806821_51_7109957.txt b/datasets/handleImage/label/订单1806821_51_7109957.txt new file mode 100644 index 0000000..102754c --- /dev/null +++ b/datasets/handleImage/label/订单1806821_51_7109957.txt @@ -0,0 +1 @@ +6 0.324219 0.530176 0.343464 0.618105 0.530690 0.590537 0.507943 0.505244 0.322474 0.527549 diff --git a/datasets/handleImage/label/订单1806822_51_7109905.txt b/datasets/handleImage/label/订单1806822_51_7109905.txt new file mode 100644 index 0000000..982a697 --- /dev/null +++ b/datasets/handleImage/label/订单1806822_51_7109905.txt @@ -0,0 +1 @@ +6 0.446706 0.534111 0.432708 0.640410 0.679427 0.658779 0.677682 0.544609 0.448451 0.534111 diff --git a/datasets/handleImage/label/订单1806823_51_7109926.txt b/datasets/handleImage/label/订单1806823_51_7109926.txt new file mode 100644 index 0000000..6b630c3 --- /dev/null +++ b/datasets/handleImage/label/订单1806823_51_7109926.txt @@ -0,0 +1 @@ +6 0.318967 0.574788 0.360958 0.667963 0.553433 0.614156 0.509692 0.519669 0.318967 0.573475 diff --git a/datasets/handleImage/label/订单1806827_51_7110069.txt b/datasets/handleImage/label/订单1806827_51_7110069.txt new file mode 100644 index 0000000..f154f4c --- /dev/null +++ b/datasets/handleImage/label/订单1806827_51_7110069.txt @@ -0,0 +1 @@ +6 0.229617 0.398983 0.224367 0.518404 0.474583 0.522342 0.472833 0.405546 0.229617 0.398983 diff --git a/datasets/handleImage/label/订单1806828_51_7110021.txt b/datasets/handleImage/label/订单1806828_51_7110021.txt new file mode 100644 index 0000000..dddead1 --- /dev/null +++ b/datasets/handleImage/label/订单1806828_51_7110021.txt @@ -0,0 +1 @@ +6 0.332969 0.489492 0.332969 0.583984 0.546445 0.583984 0.546445 0.488184 0.334727 0.488184 diff --git a/datasets/handleImage/label/订单1806829_51_7110060.txt b/datasets/handleImage/label/订单1806829_51_7110060.txt new file mode 100644 index 0000000..09aba3a --- /dev/null +++ b/datasets/handleImage/label/订单1806829_51_7110060.txt @@ -0,0 +1 @@ +6 0.184213 0.476350 0.213960 0.611520 0.521920 0.578710 0.497427 0.439610 0.180720 0.472410 diff --git a/datasets/handleImage/label/订单1806830_51_7110171.txt b/datasets/handleImage/label/订单1806830_51_7110171.txt new file mode 100644 index 0000000..c9b35e5 --- /dev/null +++ b/datasets/handleImage/label/订单1806830_51_7110171.txt @@ -0,0 +1 @@ +6 0.222435 0.669284 0.257871 0.740150 0.377292 0.682409 0.340547 0.606296 0.219811 0.665345 diff --git a/datasets/handleImage/label/订单1806832_51_7110070.txt b/datasets/handleImage/label/订单1806832_51_7110070.txt new file mode 100644 index 0000000..4e51e8e --- /dev/null +++ b/datasets/handleImage/label/订单1806832_51_7110070.txt @@ -0,0 +1 @@ +6 0.233229 0.469805 0.222734 0.660098 0.649687 0.667969 0.647930 0.482930 0.236732 0.469805 diff --git a/datasets/handleImage/label/订单1806834_51_7110088.txt b/datasets/handleImage/label/订单1806834_51_7110088.txt new file mode 100644 index 0000000..679cd29 --- /dev/null +++ b/datasets/handleImage/label/订单1806834_51_7110088.txt @@ -0,0 +1 @@ +6 0.292717 0.606281 0.310217 0.687650 0.499192 0.665338 0.481692 0.583975 0.294467 0.601031 diff --git a/datasets/handleImage/label/订单1806836_51_7110123.txt b/datasets/handleImage/label/订单1806836_51_7110123.txt new file mode 100644 index 0000000..d01ae50 --- /dev/null +++ b/datasets/handleImage/label/订单1806836_51_7110123.txt @@ -0,0 +1 @@ +6 0.457187 0.552470 0.439680 0.645640 0.674160 0.685010 0.698653 0.586590 0.464187 0.551150 diff --git a/datasets/handleImage/label/订单1806838_51_7110100.txt b/datasets/handleImage/label/订单1806838_51_7110100.txt new file mode 100644 index 0000000..90159ff --- /dev/null +++ b/datasets/handleImage/label/订单1806838_51_7110100.txt @@ -0,0 +1 @@ +6 0.496458 0.467225 0.499948 0.586647 0.778170 0.585333 0.769425 0.467225 0.501699 0.465912 diff --git a/datasets/handleImage/label/订单1806841_51_7110192.txt b/datasets/handleImage/label/订单1806841_51_7110192.txt new file mode 100644 index 0000000..2366fd7 --- /dev/null +++ b/datasets/handleImage/label/订单1806841_51_7110192.txt @@ -0,0 +1 @@ +6 0.413464 0.391064 0.413464 0.480303 0.616432 0.480303 0.621680 0.387129 0.411706 0.391064 diff --git a/datasets/handleImage/label/订单1806845_51_7110197.txt b/datasets/handleImage/label/订单1806845_51_7110197.txt new file mode 100644 index 0000000..8ed1998 --- /dev/null +++ b/datasets/handleImage/label/订单1806845_51_7110197.txt @@ -0,0 +1 @@ +6 0.485083 0.532842 0.464083 0.620767 0.661811 0.639142 0.670561 0.547275 0.492083 0.530217 diff --git a/datasets/handleImage/label/订单1806849_51_7110264.txt b/datasets/handleImage/label/订单1806849_51_7110264.txt new file mode 100644 index 0000000..261a31b --- /dev/null +++ b/datasets/handleImage/label/订单1806849_51_7110264.txt @@ -0,0 +1 @@ +6 0.196484 0.562979 0.215742 0.675840 0.439714 0.644346 0.430964 0.543301 0.196484 0.562979 diff --git a/datasets/handleImage/label/订单1806852_51_7110283.txt b/datasets/handleImage/label/订单1806852_51_7110283.txt new file mode 100644 index 0000000..f0ee40f --- /dev/null +++ b/datasets/handleImage/label/订单1806852_51_7110283.txt @@ -0,0 +1 @@ +6 0.363599 0.535433 0.377601 0.652223 0.633068 0.639100 0.620819 0.522310 0.363599 0.535433 diff --git a/datasets/handleImage/label/订单1806855_51_7110336.txt b/datasets/handleImage/label/订单1806855_51_7110336.txt new file mode 100644 index 0000000..760553f --- /dev/null +++ b/datasets/handleImage/label/订单1806855_51_7110336.txt @@ -0,0 +1 @@ +6 0.548716 0.250651 0.546748 0.381882 0.701274 0.383197 0.703242 0.255898 0.547729 0.250651 diff --git a/datasets/handleImage/label/订单1806857_51_7110262.txt b/datasets/handleImage/label/订单1806857_51_7110262.txt new file mode 100644 index 0000000..1b35c4a --- /dev/null +++ b/datasets/handleImage/label/订单1806857_51_7110262.txt @@ -0,0 +1 @@ +6 0.259479 0.440937 0.257734 0.527549 0.448451 0.530176 0.450208 0.443564 0.257734 0.438311 diff --git a/datasets/handleImage/label/订单1806860_51_7110395.txt b/datasets/handleImage/label/订单1806860_51_7110395.txt new file mode 100644 index 0000000..ba66840 --- /dev/null +++ b/datasets/handleImage/label/订单1806860_51_7110395.txt @@ -0,0 +1 @@ +6 0.509701 0.303145 0.485208 0.372695 0.654935 0.410752 0.674180 0.337266 0.509701 0.307080 diff --git a/datasets/handleImage/label/订单1806862_51_7110450.txt b/datasets/handleImage/label/订单1806862_51_7110450.txt new file mode 100644 index 0000000..1696790 --- /dev/null +++ b/datasets/handleImage/label/订单1806862_51_7110450.txt @@ -0,0 +1 @@ +6 0.252487 0.490801 0.247227 0.580039 0.458958 0.570859 0.458958 0.480303 0.255977 0.486865 diff --git a/datasets/handleImage/label/订单1806863_51_7110471.txt b/datasets/handleImage/label/订单1806863_51_7110471.txt new file mode 100644 index 0000000..83c1173 --- /dev/null +++ b/datasets/handleImage/label/订单1806863_51_7110471.txt @@ -0,0 +1 @@ +6 0.483451 0.368760 0.458958 0.484238 0.726667 0.503926 0.738919 0.385820 0.486953 0.366133 diff --git a/datasets/handleImage/label/订单1806867_51_7110438.txt b/datasets/handleImage/label/订单1806867_51_7110438.txt new file mode 100644 index 0000000..b6a4205 --- /dev/null +++ b/datasets/handleImage/label/订单1806867_51_7110438.txt @@ -0,0 +1 @@ +6 0.366211 0.347764 0.383711 0.450117 0.605938 0.440937 0.591940 0.337266 0.369714 0.346445 diff --git a/datasets/handleImage/label/订单1806868_51_7110355.txt b/datasets/handleImage/label/订单1806868_51_7110355.txt new file mode 100644 index 0000000..d0a7f4b --- /dev/null +++ b/datasets/handleImage/label/订单1806868_51_7110355.txt @@ -0,0 +1 @@ +6 0.390275 0.434407 0.387325 0.503960 0.482795 0.501340 0.478860 0.429160 0.387325 0.430473 diff --git a/datasets/handleImage/label/订单1806869_51_7110358.txt b/datasets/handleImage/label/订单1806869_51_7110358.txt new file mode 100644 index 0000000..b4d9432 --- /dev/null +++ b/datasets/handleImage/label/订单1806869_51_7110358.txt @@ -0,0 +1 @@ +6 0.324980 0.363549 0.314484 0.500029 0.603190 0.515775 0.604941 0.384549 0.324980 0.359608 diff --git a/datasets/handleImage/label/订单1806871_51_7110436.txt b/datasets/handleImage/label/订单1806871_51_7110436.txt new file mode 100644 index 0000000..305b56b --- /dev/null +++ b/datasets/handleImage/label/订单1806871_51_7110436.txt @@ -0,0 +1 @@ +6 0.380223 0.404203 0.332979 0.559055 0.693268 0.608927 0.719514 0.448819 0.376732 0.402884 diff --git a/datasets/handleImage/label/订单1806872_51_7110488.txt b/datasets/handleImage/label/订单1806872_51_7110488.txt new file mode 100644 index 0000000..c50778b --- /dev/null +++ b/datasets/handleImage/label/订单1806872_51_7110488.txt @@ -0,0 +1 @@ +6 0.586572 0.527592 0.569072 0.586646 0.728306 0.615517 0.740550 0.545967 0.588322 0.524967 diff --git a/datasets/handleImage/label/订单1806873_51_7110448.txt b/datasets/handleImage/label/订单1806873_51_7110448.txt new file mode 100644 index 0000000..5b94a88 --- /dev/null +++ b/datasets/handleImage/label/订单1806873_51_7110448.txt @@ -0,0 +1 @@ +6 0.285729 0.439619 0.290977 0.536738 0.518451 0.534111 0.504453 0.435684 0.287474 0.434375 diff --git a/datasets/handleImage/label/订单1806876_51_7110528.txt b/datasets/handleImage/label/订单1806876_51_7110528.txt new file mode 100644 index 0000000..38ca759 --- /dev/null +++ b/datasets/handleImage/label/订单1806876_51_7110528.txt @@ -0,0 +1 @@ +6 0.084480 0.517030 0.086227 0.590520 0.264707 0.574780 0.248960 0.502600 0.079227 0.515720 diff --git a/datasets/handleImage/label/订单1806878_51_7110495.txt b/datasets/handleImage/label/订单1806878_51_7110495.txt new file mode 100644 index 0000000..b0a5933 --- /dev/null +++ b/datasets/handleImage/label/订单1806878_51_7110495.txt @@ -0,0 +1 @@ +6 0.399466 0.388437 0.376719 0.502617 0.632188 0.530176 0.653177 0.414687 0.406458 0.385820 diff --git a/datasets/handleImage/label/订单1806880_51_7110408.txt b/datasets/handleImage/label/订单1806880_51_7110408.txt new file mode 100644 index 0000000..59be0e2 --- /dev/null +++ b/datasets/handleImage/label/订单1806880_51_7110408.txt @@ -0,0 +1 @@ +6 0.679427 0.461934 0.625182 0.526240 0.794909 0.604980 0.850911 0.532803 0.686432 0.460625 diff --git a/datasets/handleImage/label/订单1806884_51_7110489.txt b/datasets/handleImage/label/订单1806884_51_7110489.txt new file mode 100644 index 0000000..a8253cc --- /dev/null +++ b/datasets/handleImage/label/订单1806884_51_7110489.txt @@ -0,0 +1 @@ +6 0.390716 0.557734 0.381966 0.643037 0.569193 0.657471 0.569193 0.572168 0.394219 0.557734 diff --git a/datasets/handleImage/label/订单1806886_51_7110543.txt b/datasets/handleImage/label/订单1806886_51_7110543.txt new file mode 100644 index 0000000..da2ba6c --- /dev/null +++ b/datasets/handleImage/label/订单1806886_51_7110543.txt @@ -0,0 +1 @@ +6 0.505898 0.607604 0.494089 0.682409 0.634505 0.696842 0.633197 0.612852 0.507214 0.604980 diff --git a/datasets/handleImage/label/订单1806889_51_7110587.txt b/datasets/handleImage/label/订单1806889_51_7110587.txt new file mode 100644 index 0000000..55a9798 --- /dev/null +++ b/datasets/handleImage/label/订单1806889_51_7110587.txt @@ -0,0 +1 @@ +6 0.565690 0.350381 0.532448 0.438311 0.747669 0.473740 0.770417 0.377939 0.565690 0.350381 diff --git a/datasets/handleImage/label/订单1806890_51_7110633.txt b/datasets/handleImage/label/订单1806890_51_7110633.txt new file mode 100644 index 0000000..17d2479 --- /dev/null +++ b/datasets/handleImage/label/订单1806890_51_7110633.txt @@ -0,0 +1 @@ +6 0.367947 0.409420 0.331200 0.514410 0.572667 0.561650 0.611160 0.448790 0.369693 0.406800 diff --git a/datasets/handleImage/label/订单1806891_51_7110644.txt b/datasets/handleImage/label/订单1806891_51_7110644.txt new file mode 100644 index 0000000..88e8c56 --- /dev/null +++ b/datasets/handleImage/label/订单1806891_51_7110644.txt @@ -0,0 +1 @@ +6 0.380208 0.497363 0.397708 0.611543 0.656680 0.589229 0.630430 0.476367 0.376719 0.494746 diff --git a/datasets/handleImage/label/订单1806903_51_7110702.txt b/datasets/handleImage/label/订单1806903_51_7110702.txt new file mode 100644 index 0000000..590cb48 --- /dev/null +++ b/datasets/handleImage/label/订单1806903_51_7110702.txt @@ -0,0 +1 @@ +6 0.124603 0.657500 0.173603 0.868779 0.626795 0.799231 0.572551 0.598442 0.117603 0.653558 diff --git a/datasets/handleImage/label/订单1806904_51_7110673.txt b/datasets/handleImage/label/订单1806904_51_7110673.txt new file mode 100644 index 0000000..c9ce20e --- /dev/null +++ b/datasets/handleImage/label/订单1806904_51_7110673.txt @@ -0,0 +1 @@ +6 0.325977 0.448809 0.320716 0.548545 0.584935 0.549863 0.572695 0.437002 0.325977 0.443564 diff --git a/datasets/handleImage/label/订单1806905_51_7110728.txt b/datasets/handleImage/label/订单1806905_51_7110728.txt new file mode 100644 index 0000000..f77d93c --- /dev/null +++ b/datasets/handleImage/label/订单1806905_51_7110728.txt @@ -0,0 +1 @@ +6 0.562510 0.271667 0.567428 0.473763 0.667822 0.472449 0.662904 0.266417 0.561524 0.269038 diff --git a/datasets/handleImage/label/订单1806907_51_7110712.txt b/datasets/handleImage/label/订单1806907_51_7110712.txt new file mode 100644 index 0000000..af868e5 --- /dev/null +++ b/datasets/handleImage/label/订单1806907_51_7110712.txt @@ -0,0 +1 @@ +6 0.362721 0.430439 0.390716 0.511807 0.562187 0.475059 0.530690 0.393691 0.357474 0.429121 diff --git a/datasets/handleImage/label/订单1806909_51_7110711.txt b/datasets/handleImage/label/订单1806909_51_7110711.txt new file mode 100644 index 0000000..3959d4e --- /dev/null +++ b/datasets/handleImage/label/订单1806909_51_7110711.txt @@ -0,0 +1 @@ +6 0.248861 0.481658 0.233117 0.624704 0.530578 0.635204 0.539328 0.493471 0.250611 0.480346 diff --git a/datasets/handleImage/label/订单1806912_51_7110756.txt b/datasets/handleImage/label/订单1806912_51_7110756.txt new file mode 100644 index 0000000..88f363a --- /dev/null +++ b/datasets/handleImage/label/订单1806912_51_7110756.txt @@ -0,0 +1 @@ +6 0.425716 0.454062 0.408216 0.570859 0.684674 0.585293 0.693424 0.461934 0.423958 0.452744 diff --git a/datasets/handleImage/label/订单1806913_51_7110893.txt b/datasets/handleImage/label/订单1806913_51_7110893.txt new file mode 100644 index 0000000..8b649a3 --- /dev/null +++ b/datasets/handleImage/label/订单1806913_51_7110893.txt @@ -0,0 +1 @@ +6 0.383382 0.442275 0.449328 0.640438 0.543814 0.585320 0.472946 0.381908 0.382397 0.440967 diff --git a/datasets/handleImage/label/订单1806917_51_7110789.txt b/datasets/handleImage/label/订单1806917_51_7110789.txt new file mode 100644 index 0000000..78a266a --- /dev/null +++ b/datasets/handleImage/label/订单1806917_51_7110789.txt @@ -0,0 +1 @@ +6 0.413464 0.376631 0.418711 0.461934 0.611185 0.463242 0.602435 0.375322 0.408216 0.372695 diff --git a/datasets/handleImage/label/订单1806918_51_7110858.txt b/datasets/handleImage/label/订单1806918_51_7110858.txt new file mode 100644 index 0000000..24bc680 --- /dev/null +++ b/datasets/handleImage/label/订单1806918_51_7110858.txt @@ -0,0 +1 @@ +6 0.479948 0.400254 0.474701 0.489492 0.696927 0.492119 0.689922 0.396318 0.474701 0.396318 diff --git a/datasets/handleImage/label/订单1806921_51_7110938.txt b/datasets/handleImage/label/订单1806921_51_7110938.txt new file mode 100644 index 0000000..b697927 --- /dev/null +++ b/datasets/handleImage/label/订单1806921_51_7110938.txt @@ -0,0 +1 @@ +6 0.317106 0.454100 0.283861 0.548588 0.541078 0.564338 0.551572 0.463288 0.315356 0.452788 diff --git a/datasets/handleImage/label/订单1806922_51_7110814.txt b/datasets/handleImage/label/订单1806922_51_7110814.txt new file mode 100644 index 0000000..dbfb36e --- /dev/null +++ b/datasets/handleImage/label/订单1806922_51_7110814.txt @@ -0,0 +1 @@ +6 0.364466 0.409443 0.350469 0.499990 0.562187 0.518359 0.569193 0.422559 0.371471 0.406816 diff --git a/datasets/handleImage/label/订单1806925_51_7110926.txt b/datasets/handleImage/label/订单1806925_51_7110926.txt new file mode 100644 index 0000000..908b600 --- /dev/null +++ b/datasets/handleImage/label/订单1806925_51_7110926.txt @@ -0,0 +1 @@ +6 0.234741 0.421257 0.239663 0.543301 0.390249 0.532799 0.384346 0.414694 0.237690 0.418626 diff --git a/datasets/handleImage/label/订单1806926_51_7110876.txt b/datasets/handleImage/label/订单1806926_51_7110876.txt new file mode 100644 index 0000000..a235dea --- /dev/null +++ b/datasets/handleImage/label/订单1806926_51_7110876.txt @@ -0,0 +1 @@ +6 0.405029 0.380590 0.392231 0.486885 0.569399 0.507885 0.567428 0.396333 0.404043 0.380590 diff --git a/datasets/handleImage/label/订单1806928_51_7110863.txt b/datasets/handleImage/label/订单1806928_51_7110863.txt new file mode 100644 index 0000000..f53e213 --- /dev/null +++ b/datasets/handleImage/label/订单1806928_51_7110863.txt @@ -0,0 +1 @@ +6 0.572695 0.244082 0.570937 0.387129 0.889401 0.384502 0.885898 0.236211 0.570937 0.241465 diff --git a/datasets/handleImage/label/订单1806929_51_7110854.txt b/datasets/handleImage/label/订单1806929_51_7110854.txt new file mode 100644 index 0000000..ae4e7e9 --- /dev/null +++ b/datasets/handleImage/label/订单1806929_51_7110854.txt @@ -0,0 +1 @@ +6 0.220990 0.456680 0.243737 0.538047 0.436211 0.507861 0.409961 0.430439 0.222734 0.455371 diff --git a/datasets/handleImage/label/订单1806935_51_7111073.txt b/datasets/handleImage/label/订单1806935_51_7111073.txt new file mode 100644 index 0000000..c393f3d --- /dev/null +++ b/datasets/handleImage/label/订单1806935_51_7111073.txt @@ -0,0 +1 @@ +6 0.130877 0.398945 0.118627 0.492119 0.363599 0.481626 0.354856 0.387137 0.129123 0.396324 diff --git a/datasets/handleImage/label/订单1806936_51_7110996.txt b/datasets/handleImage/label/订单1806936_51_7110996.txt new file mode 100644 index 0000000..9eaaf69 --- /dev/null +++ b/datasets/handleImage/label/订单1806936_51_7110996.txt @@ -0,0 +1 @@ +6 0.343478 0.469813 0.346811 0.589242 0.630276 0.583986 0.607703 0.460630 0.338228 0.472441 diff --git a/datasets/handleImage/label/订单1806937_51_7111019.txt b/datasets/handleImage/label/订单1806937_51_7111019.txt new file mode 100644 index 0000000..7b9f117 --- /dev/null +++ b/datasets/handleImage/label/订单1806937_51_7111019.txt @@ -0,0 +1 @@ +6 0.355716 0.601045 0.404714 0.686338 0.591940 0.628604 0.542943 0.547236 0.355716 0.597100 diff --git a/datasets/handleImage/label/订单1806938_51_7111055.txt b/datasets/handleImage/label/订单1806938_51_7111055.txt new file mode 100644 index 0000000..ba6cd4d --- /dev/null +++ b/datasets/handleImage/label/订单1806938_51_7111055.txt @@ -0,0 +1 @@ +6 0.203367 0.392421 0.192872 0.501346 0.443089 0.502658 0.434339 0.395046 0.203367 0.392421 diff --git a/datasets/handleImage/label/订单1806942_51_7111056.txt b/datasets/handleImage/label/订单1806942_51_7111056.txt new file mode 100644 index 0000000..c3b24e4 --- /dev/null +++ b/datasets/handleImage/label/订单1806942_51_7111056.txt @@ -0,0 +1 @@ +6 0.392461 0.418623 0.364466 0.505244 0.562187 0.535420 0.576185 0.440937 0.392461 0.414687 diff --git a/datasets/handleImage/label/订单1806943_51_7111143.txt b/datasets/handleImage/label/订单1806943_51_7111143.txt new file mode 100644 index 0000000..fd0abe7 --- /dev/null +++ b/datasets/handleImage/label/订单1806943_51_7111143.txt @@ -0,0 +1 @@ +6 0.423958 0.485557 0.416966 0.581357 0.632188 0.587920 0.630430 0.489492 0.423958 0.485557 diff --git a/datasets/handleImage/label/订单1806944_51_7111099.txt b/datasets/handleImage/label/订单1806944_51_7111099.txt new file mode 100644 index 0000000..cee3abb --- /dev/null +++ b/datasets/handleImage/label/订单1806944_51_7111099.txt @@ -0,0 +1 @@ +6 0.392461 0.417314 0.392461 0.497363 0.576185 0.497363 0.570937 0.416006 0.387214 0.417314 diff --git a/datasets/handleImage/label/订单1806947_51_7111167.txt b/datasets/handleImage/label/订单1806947_51_7111167.txt new file mode 100644 index 0000000..032690f --- /dev/null +++ b/datasets/handleImage/label/订单1806947_51_7111167.txt @@ -0,0 +1 @@ +6 0.422187 0.506540 0.423933 0.577400 0.602413 0.574780 0.598920 0.498660 0.423933 0.507850 diff --git a/datasets/handleImage/label/订单1806951_51_7111144.txt b/datasets/handleImage/label/订单1806951_51_7111144.txt new file mode 100644 index 0000000..3f032ee --- /dev/null +++ b/datasets/handleImage/label/订单1806951_51_7111144.txt @@ -0,0 +1 @@ +6 0.360964 0.662725 0.392461 0.737520 0.560443 0.700781 0.527201 0.623350 0.364466 0.657471 diff --git a/datasets/handleImage/label/订单1806953_51_7111322.txt b/datasets/handleImage/label/订单1806953_51_7111322.txt new file mode 100644 index 0000000..eb3c292 --- /dev/null +++ b/datasets/handleImage/label/订单1806953_51_7111322.txt @@ -0,0 +1 @@ +6 0.388821 0.647000 0.345077 0.771673 0.660038 0.812356 0.674038 0.667990 0.397577 0.641750 diff --git a/datasets/handleImage/label/订单1806954_51_7111215.txt b/datasets/handleImage/label/订单1806954_51_7111215.txt new file mode 100644 index 0000000..f21ede3 --- /dev/null +++ b/datasets/handleImage/label/订单1806954_51_7111215.txt @@ -0,0 +1 @@ +6 0.213984 0.400254 0.217487 0.493428 0.434453 0.484238 0.427461 0.387129 0.213984 0.398945 diff --git a/datasets/handleImage/label/订单1806959_51_7111293.txt b/datasets/handleImage/label/订单1806959_51_7111293.txt new file mode 100644 index 0000000..6331229 --- /dev/null +++ b/datasets/handleImage/label/订单1806959_51_7111293.txt @@ -0,0 +1 @@ +6 0.325948 0.566900 0.327696 0.667953 0.556912 0.660074 0.546422 0.560343 0.325948 0.566900 diff --git a/datasets/handleImage/label/订单1806961_51_7111241.txt b/datasets/handleImage/label/订单1806961_51_7111241.txt new file mode 100644 index 0000000..d667a67 --- /dev/null +++ b/datasets/handleImage/label/订单1806961_51_7111241.txt @@ -0,0 +1 @@ +6 0.369714 0.564297 0.297982 0.699463 0.430964 0.736211 0.497448 0.594482 0.373216 0.561670 diff --git a/datasets/handleImage/label/订单1806967_51_7111257.txt b/datasets/handleImage/label/订单1806967_51_7111257.txt new file mode 100644 index 0000000..6791bf2 --- /dev/null +++ b/datasets/handleImage/label/订单1806967_51_7111257.txt @@ -0,0 +1 @@ +6 0.201732 0.520986 0.166745 0.633848 0.418711 0.665342 0.458958 0.552480 0.198242 0.515742 diff --git a/datasets/handleImage/label/订单1806969_51_7111294.txt b/datasets/handleImage/label/订单1806969_51_7111294.txt new file mode 100644 index 0000000..f1c0773 --- /dev/null +++ b/datasets/handleImage/label/订单1806969_51_7111294.txt @@ -0,0 +1 @@ +6 0.423839 0.435729 0.413344 0.531529 0.682811 0.549900 0.679311 0.438354 0.416844 0.427854 diff --git a/datasets/handleImage/label/订单1806972_51_7111358.txt b/datasets/handleImage/label/订单1806972_51_7111358.txt new file mode 100644 index 0000000..4a56c88 --- /dev/null +++ b/datasets/handleImage/label/订单1806972_51_7111358.txt @@ -0,0 +1 @@ +6 0.495583 0.513154 0.486833 0.598458 0.670561 0.603708 0.670561 0.518404 0.495583 0.514467 diff --git a/datasets/handleImage/label/订单1806973_51_7111443.txt b/datasets/handleImage/label/订单1806973_51_7111443.txt new file mode 100644 index 0000000..051578e --- /dev/null +++ b/datasets/handleImage/label/订单1806973_51_7111443.txt @@ -0,0 +1 @@ +6 0.292606 0.524967 0.299606 0.622079 0.513078 0.605021 0.502583 0.510533 0.294356 0.522342 diff --git a/datasets/handleImage/label/订单1806981_51_7111413.txt b/datasets/handleImage/label/订单1806981_51_7111413.txt new file mode 100644 index 0000000..fd24526 --- /dev/null +++ b/datasets/handleImage/label/订单1806981_51_7111413.txt @@ -0,0 +1 @@ +6 0.402956 0.488184 0.397708 0.578730 0.618190 0.586602 0.618190 0.490801 0.402969 0.486865 diff --git a/datasets/handleImage/label/订单1806982_51_7111416.txt b/datasets/handleImage/label/订单1806982_51_7111416.txt new file mode 100644 index 0000000..2f195a9 --- /dev/null +++ b/datasets/handleImage/label/订单1806982_51_7111416.txt @@ -0,0 +1 @@ +6 0.352214 0.446182 0.359219 0.548545 0.579688 0.538047 0.563945 0.438311 0.350469 0.443564 diff --git a/datasets/handleImage/label/订单1806984_51_7111472.txt b/datasets/handleImage/label/订单1806984_51_7111472.txt new file mode 100644 index 0000000..6789c79 --- /dev/null +++ b/datasets/handleImage/label/订单1806984_51_7111472.txt @@ -0,0 +1 @@ +6 0.340115 0.473746 0.334862 0.552491 0.541106 0.549862 0.532362 0.465874 0.340115 0.473746 diff --git a/datasets/handleImage/label/订单1806987_51_7111464.txt b/datasets/handleImage/label/订单1806987_51_7111464.txt new file mode 100644 index 0000000..9a5f77d --- /dev/null +++ b/datasets/handleImage/label/订单1806987_51_7111464.txt @@ -0,0 +1 @@ +6 0.275200 0.423860 0.271707 0.548530 0.556920 0.552470 0.553427 0.418610 0.276960 0.427790 diff --git a/datasets/handleImage/label/订单1806988_51_7111491.txt b/datasets/handleImage/label/订单1806988_51_7111491.txt new file mode 100644 index 0000000..6c4f0f8 --- /dev/null +++ b/datasets/handleImage/label/订单1806988_51_7111491.txt @@ -0,0 +1 @@ +6 0.376719 0.333320 0.385469 0.478994 0.670677 0.475059 0.658424 0.326758 0.383711 0.329385 diff --git a/datasets/handleImage/label/订单1806990_51_7111507.txt b/datasets/handleImage/label/订单1806990_51_7111507.txt new file mode 100644 index 0000000..5181fc5 --- /dev/null +++ b/datasets/handleImage/label/订单1806990_51_7111507.txt @@ -0,0 +1 @@ +6 0.478173 0.396300 0.464187 0.499970 0.679400 0.513100 0.689907 0.408110 0.472933 0.398920 diff --git a/datasets/handleImage/label/订单1806991_51_7111532.txt b/datasets/handleImage/label/订单1806991_51_7111532.txt new file mode 100644 index 0000000..d8cb838 --- /dev/null +++ b/datasets/handleImage/label/订单1806991_51_7111532.txt @@ -0,0 +1 @@ +6 0.275234 0.408125 0.273477 0.526240 0.530690 0.540674 0.530690 0.414687 0.276979 0.406816 diff --git a/datasets/handleImage/label/订单1806992_51_7111542.txt b/datasets/handleImage/label/订单1806992_51_7111542.txt new file mode 100644 index 0000000..03679c6 --- /dev/null +++ b/datasets/handleImage/label/订单1806992_51_7111542.txt @@ -0,0 +1 @@ +6 0.499173 0.360870 0.483427 0.463230 0.710907 0.486850 0.724893 0.377930 0.497427 0.358240 diff --git a/datasets/handleImage/label/订单1806994_51_7111560.txt b/datasets/handleImage/label/订单1806994_51_7111560.txt new file mode 100644 index 0000000..b8b6783 --- /dev/null +++ b/datasets/handleImage/label/订单1806994_51_7111560.txt @@ -0,0 +1 @@ +6 0.374961 0.371377 0.378464 0.480303 0.635677 0.477686 0.626940 0.362197 0.369714 0.370068 diff --git a/datasets/handleImage/label/订单1806996_51_7111579.txt b/datasets/handleImage/label/订单1806996_51_7111579.txt new file mode 100644 index 0000000..7ee43bc --- /dev/null +++ b/datasets/handleImage/label/订单1806996_51_7111579.txt @@ -0,0 +1 @@ +6 0.555195 0.279521 0.544701 0.422559 0.856159 0.443564 0.870156 0.283457 0.555195 0.278203 diff --git a/datasets/handleImage/label/订单1806997_51_7111589.txt b/datasets/handleImage/label/订单1806997_51_7111589.txt new file mode 100644 index 0000000..6fd6232 --- /dev/null +++ b/datasets/handleImage/label/订单1806997_51_7111589.txt @@ -0,0 +1 @@ +6 0.478090 0.475104 0.486840 0.626024 0.616319 0.619462 0.611076 0.467231 0.471088 0.475104 diff --git a/datasets/handleImage/label/订单1807000_51_7111608.txt b/datasets/handleImage/label/订单1807000_51_7111608.txt new file mode 100644 index 0000000..6962482 --- /dev/null +++ b/datasets/handleImage/label/订单1807000_51_7111608.txt @@ -0,0 +1 @@ +6 0.369714 0.419941 0.366211 0.513115 0.595443 0.506553 0.588438 0.413379 0.373216 0.418623 diff --git a/datasets/handleImage/label/订单1807001_51_7111603.txt b/datasets/handleImage/label/订单1807001_51_7111603.txt new file mode 100644 index 0000000..d0922db --- /dev/null +++ b/datasets/handleImage/label/订单1807001_51_7111603.txt @@ -0,0 +1 @@ +6 0.124720 0.338560 0.117720 0.435670 0.371440 0.436980 0.371440 0.334620 0.121227 0.333310 diff --git a/datasets/handleImage/label/订单1807006_51_7111644.txt b/datasets/handleImage/label/订单1807006_51_7111644.txt new file mode 100644 index 0000000..9a4b1ee --- /dev/null +++ b/datasets/handleImage/label/订单1807006_51_7111644.txt @@ -0,0 +1 @@ +6 0.276979 0.556426 0.275234 0.654844 0.486953 0.641719 0.476458 0.544609 0.273477 0.551172 diff --git a/datasets/handleImage/label/订单1807008_51_7113981.txt b/datasets/handleImage/label/订单1807008_51_7113981.txt new file mode 100644 index 0000000..3d0e41b --- /dev/null +++ b/datasets/handleImage/label/订单1807008_51_7113981.txt @@ -0,0 +1 @@ +6 0.448464 0.366133 0.444961 0.454062 0.633932 0.456680 0.633932 0.368760 0.439714 0.366133 diff --git a/datasets/handleImage/label/订单1807010_51_7111695.txt b/datasets/handleImage/label/订单1807010_51_7111695.txt new file mode 100644 index 0000000..8d5fa4e --- /dev/null +++ b/datasets/handleImage/label/订单1807010_51_7111695.txt @@ -0,0 +1 @@ +6 0.414089 0.478990 0.408256 0.538045 0.641556 0.541980 0.647389 0.480300 0.419922 0.477675 diff --git a/datasets/handleImage/label/订单1807011_51_7111704.txt b/datasets/handleImage/label/订单1807011_51_7111704.txt new file mode 100644 index 0000000..db032d2 --- /dev/null +++ b/datasets/handleImage/label/订单1807011_51_7111704.txt @@ -0,0 +1 @@ +6 0.217346 0.341221 0.224346 0.434394 0.451808 0.438337 0.443064 0.342538 0.215590 0.342538 diff --git a/datasets/handleImage/label/订单1807012_51_7111662.txt b/datasets/handleImage/label/订单1807012_51_7111662.txt new file mode 100644 index 0000000..f81846f --- /dev/null +++ b/datasets/handleImage/label/订单1807012_51_7111662.txt @@ -0,0 +1 @@ +6 0.368719 0.521029 0.363477 0.594520 0.538444 0.591892 0.536706 0.519716 0.370471 0.518402 diff --git a/datasets/handleImage/label/订单1807014_51_7111680.txt b/datasets/handleImage/label/订单1807014_51_7111680.txt new file mode 100644 index 0000000..1909eb5 --- /dev/null +++ b/datasets/handleImage/label/订单1807014_51_7111680.txt @@ -0,0 +1 @@ +6 0.451319 0.360938 0.470998 0.484306 0.642257 0.443623 0.618637 0.322882 0.450330 0.360938 diff --git a/datasets/handleImage/label/订单1807017_51_7111731.txt b/datasets/handleImage/label/订单1807017_51_7111731.txt new file mode 100644 index 0000000..2623d60 --- /dev/null +++ b/datasets/handleImage/label/订单1807017_51_7111731.txt @@ -0,0 +1 @@ +6 0.413464 0.534111 0.394219 0.622041 0.625182 0.640410 0.625182 0.544609 0.420456 0.530176 diff --git a/datasets/handleImage/label/订单1807020_51_7111739.txt b/datasets/handleImage/label/订单1807020_51_7111739.txt new file mode 100644 index 0000000..50c2f01 --- /dev/null +++ b/datasets/handleImage/label/订单1807020_51_7111739.txt @@ -0,0 +1 @@ +6 0.372222 0.400294 0.380967 0.502657 0.613686 0.494784 0.606693 0.391108 0.375725 0.396353 diff --git a/datasets/handleImage/label/订单1807021_51_7111752.txt b/datasets/handleImage/label/订单1807021_51_7111752.txt new file mode 100644 index 0000000..785b089 --- /dev/null +++ b/datasets/handleImage/label/订单1807021_51_7111752.txt @@ -0,0 +1 @@ +6 0.457187 0.493410 0.436187 0.591840 0.668907 0.616770 0.688147 0.509160 0.458933 0.490790 diff --git a/datasets/handleImage/label/订单1807024_51_7111799.txt b/datasets/handleImage/label/订单1807024_51_7111799.txt new file mode 100644 index 0000000..cdf6a7b --- /dev/null +++ b/datasets/handleImage/label/订单1807024_51_7111799.txt @@ -0,0 +1 @@ +6 0.226213 0.444860 0.215707 0.604960 0.560413 0.620710 0.574413 0.461920 0.229707 0.440920 diff --git a/datasets/handleImage/label/订单1807025_51_7111816.txt b/datasets/handleImage/label/订单1807025_51_7111816.txt new file mode 100644 index 0000000..7e0c6da --- /dev/null +++ b/datasets/handleImage/label/订单1807025_51_7111816.txt @@ -0,0 +1 @@ +6 0.408967 0.452784 0.391464 0.552529 0.634693 0.561716 0.641686 0.458039 0.417712 0.452784 diff --git a/datasets/handleImage/label/订单1807028_51_7111855.txt b/datasets/handleImage/label/订单1807028_51_7111855.txt new file mode 100644 index 0000000..eff4753 --- /dev/null +++ b/datasets/handleImage/label/订单1807028_51_7111855.txt @@ -0,0 +1 @@ +6 0.238490 0.476367 0.201732 0.541982 0.376719 0.586602 0.408216 0.510488 0.241979 0.475059 diff --git a/datasets/handleImage/label/订单1807033_51_7111848.txt b/datasets/handleImage/label/订单1807033_51_7111848.txt new file mode 100644 index 0000000..4cd0a58 --- /dev/null +++ b/datasets/handleImage/label/订单1807033_51_7111848.txt @@ -0,0 +1 @@ +6 0.607567 0.427854 0.504333 0.549900 0.598817 0.598458 0.709056 0.475100 0.607567 0.427854 diff --git a/datasets/handleImage/label/订单1807034_51_7111852.txt b/datasets/handleImage/label/订单1807034_51_7111852.txt new file mode 100644 index 0000000..9a99b0e --- /dev/null +++ b/datasets/handleImage/label/订单1807034_51_7111852.txt @@ -0,0 +1 @@ +6 0.642413 0.528900 0.624040 0.605013 0.797267 0.641760 0.806453 0.545960 0.642413 0.528900 diff --git a/datasets/handleImage/label/订单1807036_51_7111866.txt b/datasets/handleImage/label/订单1807036_51_7111866.txt new file mode 100644 index 0000000..d4f64c7 --- /dev/null +++ b/datasets/handleImage/label/订单1807036_51_7111866.txt @@ -0,0 +1 @@ +6 0.476128 0.446198 0.467282 0.536749 0.688526 0.543308 0.679679 0.443574 0.479667 0.440951 diff --git a/datasets/handleImage/label/订单1807039_51_7111877.txt b/datasets/handleImage/label/订单1807039_51_7111877.txt new file mode 100644 index 0000000..e7f4ffe --- /dev/null +++ b/datasets/handleImage/label/订单1807039_51_7111877.txt @@ -0,0 +1 @@ +6 0.401187 0.553780 0.446680 0.610210 0.591920 0.564280 0.549920 0.505220 0.404693 0.551150 diff --git a/datasets/handleImage/label/订单1807040_51_7111929.txt b/datasets/handleImage/label/订单1807040_51_7111929.txt new file mode 100644 index 0000000..20218ca --- /dev/null +++ b/datasets/handleImage/label/订单1807040_51_7111929.txt @@ -0,0 +1 @@ +6 0.308477 0.442246 0.292721 0.594482 0.628685 0.608916 0.640938 0.446182 0.313724 0.439619 diff --git a/datasets/handleImage/label/订单1807041_51_7111977.txt b/datasets/handleImage/label/订单1807041_51_7111977.txt new file mode 100644 index 0000000..8e73b38 --- /dev/null +++ b/datasets/handleImage/label/订单1807041_51_7111977.txt @@ -0,0 +1 @@ +6 0.262982 0.498682 0.257734 0.595791 0.485208 0.598418 0.483451 0.493428 0.262982 0.490801 diff --git a/datasets/handleImage/label/订单1807042_51_7111966.txt b/datasets/handleImage/label/订单1807042_51_7111966.txt new file mode 100644 index 0000000..525418d --- /dev/null +++ b/datasets/handleImage/label/订单1807042_51_7111966.txt @@ -0,0 +1 @@ +6 0.409937 0.450124 0.406001 0.619414 0.486709 0.622044 0.488677 0.447500 0.412891 0.448815 diff --git a/datasets/handleImage/label/订单1807047_51_7112008.txt b/datasets/handleImage/label/订单1807047_51_7112008.txt new file mode 100644 index 0000000..c07ba31 --- /dev/null +++ b/datasets/handleImage/label/订单1807047_51_7112008.txt @@ -0,0 +1 @@ +6 0.163242 0.511797 0.173737 0.633848 0.464206 0.629912 0.458958 0.509180 0.157995 0.511807 diff --git a/datasets/handleImage/label/订单1807051_51_7111954.txt b/datasets/handleImage/label/订单1807051_51_7111954.txt new file mode 100644 index 0000000..e9c5687 --- /dev/null +++ b/datasets/handleImage/label/订单1807051_51_7111954.txt @@ -0,0 +1 @@ +6 0.171992 0.314951 0.171992 0.472432 0.513203 0.481621 0.521953 0.322822 0.173737 0.312324 diff --git a/datasets/handleImage/label/订单1807054_51_7112064.txt b/datasets/handleImage/label/订单1807054_51_7112064.txt new file mode 100644 index 0000000..c748bd6 --- /dev/null +++ b/datasets/handleImage/label/订单1807054_51_7112064.txt @@ -0,0 +1 @@ +6 0.362600 0.421292 0.359100 0.510533 0.570822 0.513158 0.570822 0.418667 0.360850 0.418667 diff --git a/datasets/handleImage/label/订单1807056_51_7112029.txt b/datasets/handleImage/label/订单1807056_51_7112029.txt new file mode 100644 index 0000000..da30eb3 --- /dev/null +++ b/datasets/handleImage/label/订单1807056_51_7112029.txt @@ -0,0 +1 @@ +6 0.495703 0.398945 0.602435 0.552480 0.724922 0.507861 0.618190 0.349072 0.495703 0.395000 diff --git a/datasets/handleImage/label/订单1807061_51_7112116.txt b/datasets/handleImage/label/订单1807061_51_7112116.txt new file mode 100644 index 0000000..7d44072 --- /dev/null +++ b/datasets/handleImage/label/订单1807061_51_7112116.txt @@ -0,0 +1 @@ +6 0.255861 0.434417 0.255861 0.535467 0.490333 0.536779 0.504333 0.429167 0.250611 0.429167 diff --git a/datasets/handleImage/label/订单1807065_51_7112141.txt b/datasets/handleImage/label/订单1807065_51_7112141.txt new file mode 100644 index 0000000..397bd4f --- /dev/null +++ b/datasets/handleImage/label/订单1807065_51_7112141.txt @@ -0,0 +1 @@ +6 0.369714 0.547236 0.367969 0.635166 0.579688 0.635166 0.576185 0.541982 0.362721 0.547236 diff --git a/datasets/handleImage/label/订单1807066_51_7112143.txt b/datasets/handleImage/label/订单1807066_51_7112143.txt new file mode 100644 index 0000000..3e19976 --- /dev/null +++ b/datasets/handleImage/label/订单1807066_51_7112143.txt @@ -0,0 +1 @@ +6 0.080859 0.404212 0.107103 0.503952 0.338077 0.479019 0.311833 0.376654 0.087859 0.401587 diff --git a/datasets/handleImage/label/订单1807069_51_7112243.txt b/datasets/handleImage/label/订单1807069_51_7112243.txt new file mode 100644 index 0000000..243ea7e --- /dev/null +++ b/datasets/handleImage/label/订单1807069_51_7112243.txt @@ -0,0 +1 @@ +6 0.457201 0.460647 0.410941 0.694248 0.525113 0.725745 0.562515 0.475085 0.459167 0.460654 diff --git a/datasets/handleImage/label/订单1807070_51_7112196.txt b/datasets/handleImage/label/订单1807070_51_7112196.txt new file mode 100644 index 0000000..9b710eb --- /dev/null +++ b/datasets/handleImage/label/订单1807070_51_7112196.txt @@ -0,0 +1 @@ +6 0.374868 0.408191 0.371374 0.509243 0.618099 0.507928 0.607588 0.401623 0.378377 0.404254 diff --git a/datasets/handleImage/label/订单1807073_51_7112179.txt b/datasets/handleImage/label/订单1807073_51_7112179.txt new file mode 100644 index 0000000..ab86ce1 --- /dev/null +++ b/datasets/handleImage/label/订单1807073_51_7112179.txt @@ -0,0 +1 @@ +6 0.224479 0.471123 0.194740 0.549863 0.409961 0.568232 0.418711 0.481621 0.226237 0.473740 diff --git a/datasets/handleImage/label/订单1807074_51_7113123.txt b/datasets/handleImage/label/订单1807074_51_7113123.txt new file mode 100644 index 0000000..65781b2 --- /dev/null +++ b/datasets/handleImage/label/订单1807074_51_7113123.txt @@ -0,0 +1 @@ +6 0.380208 0.503926 0.422214 0.594482 0.626940 0.555107 0.600690 0.455371 0.381966 0.501299 diff --git a/datasets/handleImage/label/订单1807076_51_7112165.txt b/datasets/handleImage/label/订单1807076_51_7112165.txt new file mode 100644 index 0000000..7ebb59f --- /dev/null +++ b/datasets/handleImage/label/订单1807076_51_7112165.txt @@ -0,0 +1 @@ +6 0.346966 0.482930 0.343464 0.552480 0.523698 0.543301 0.516693 0.465869 0.343464 0.482930 diff --git a/datasets/handleImage/label/订单1807077_51_7112279.txt b/datasets/handleImage/label/订单1807077_51_7112279.txt new file mode 100644 index 0000000..1a4c55f --- /dev/null +++ b/datasets/handleImage/label/订单1807077_51_7112279.txt @@ -0,0 +1 @@ +6 0.127863 0.465885 0.125530 0.569562 0.456821 0.563000 0.438162 0.456702 0.130197 0.465885 diff --git a/datasets/handleImage/label/订单1807079_51_7112332.txt b/datasets/handleImage/label/订单1807079_51_7112332.txt new file mode 100644 index 0000000..31be1e5 --- /dev/null +++ b/datasets/handleImage/label/订单1807079_51_7112332.txt @@ -0,0 +1 @@ +6 0.291826 0.334642 0.291826 0.703405 0.459150 0.703405 0.458164 0.333327 0.292812 0.334642 diff --git a/datasets/handleImage/label/订单1807081_51_7112220.txt b/datasets/handleImage/label/订单1807081_51_7112220.txt new file mode 100644 index 0000000..acd4e85 --- /dev/null +++ b/datasets/handleImage/label/订单1807081_51_7112220.txt @@ -0,0 +1 @@ +6 0.454591 0.517059 0.452837 0.610234 0.697809 0.607604 0.687313 0.509187 0.458085 0.515744 diff --git a/datasets/handleImage/label/订单1807082_51_7112235.txt b/datasets/handleImage/label/订单1807082_51_7112235.txt new file mode 100644 index 0000000..bc59f2c --- /dev/null +++ b/datasets/handleImage/label/订单1807082_51_7112235.txt @@ -0,0 +1 @@ +6 0.367969 0.455371 0.345221 0.561670 0.616432 0.586602 0.623437 0.475059 0.367969 0.455371 diff --git a/datasets/handleImage/label/订单1807088_51_7112349.txt b/datasets/handleImage/label/订单1807088_51_7112349.txt new file mode 100644 index 0000000..a14a6f1 --- /dev/null +++ b/datasets/handleImage/label/订单1807088_51_7112349.txt @@ -0,0 +1 @@ +6 0.289974 0.498716 0.286484 0.607647 0.545451 0.605020 0.540196 0.493471 0.295229 0.497402 diff --git a/datasets/handleImage/label/订单1807094_51_7112419.txt b/datasets/handleImage/label/订单1807094_51_7112419.txt new file mode 100644 index 0000000..e6e8d35 --- /dev/null +++ b/datasets/handleImage/label/订单1807094_51_7112419.txt @@ -0,0 +1 @@ +6 0.433560 0.377949 0.425684 0.557734 0.516235 0.562988 0.516235 0.377949 0.431592 0.377949 diff --git a/datasets/handleImage/label/订单1807095_51_7112473.txt b/datasets/handleImage/label/订单1807095_51_7112473.txt new file mode 100644 index 0000000..6031ca2 --- /dev/null +++ b/datasets/handleImage/label/订单1807095_51_7112473.txt @@ -0,0 +1 @@ +6 0.339947 0.465850 0.366200 0.577400 0.604160 0.548530 0.583160 0.442230 0.343440 0.463230 diff --git a/datasets/handleImage/label/订单1807097_51_7112451.txt b/datasets/handleImage/label/订单1807097_51_7112451.txt new file mode 100644 index 0000000..6900a84 --- /dev/null +++ b/datasets/handleImage/label/订单1807097_51_7112451.txt @@ -0,0 +1 @@ +6 0.605920 0.371360 0.602413 0.422550 0.731893 0.419920 0.731893 0.364800 0.605920 0.371360 diff --git a/datasets/handleImage/label/订单1807098_51_7112456.txt b/datasets/handleImage/label/订单1807098_51_7112456.txt new file mode 100644 index 0000000..234788a --- /dev/null +++ b/datasets/handleImage/label/订单1807098_51_7112456.txt @@ -0,0 +1 @@ +6 0.294479 0.793955 0.306719 0.906816 0.576185 0.884502 0.558698 0.769023 0.301471 0.792646 diff --git a/datasets/handleImage/label/订单1807107_51_7112611.txt b/datasets/handleImage/label/订单1807107_51_7112611.txt new file mode 100644 index 0000000..1245e2a --- /dev/null +++ b/datasets/handleImage/label/订单1807107_51_7112611.txt @@ -0,0 +1 @@ +6 0.387214 0.519678 0.399466 0.624658 0.640938 0.603662 0.612930 0.501299 0.385469 0.518359 diff --git a/datasets/handleImage/label/订单1807111_51_7112561.txt b/datasets/handleImage/label/订单1807111_51_7112561.txt new file mode 100644 index 0000000..94e5aa6 --- /dev/null +++ b/datasets/handleImage/label/订单1807111_51_7112561.txt @@ -0,0 +1 @@ +6 0.114127 0.636479 0.210950 0.688970 0.419279 0.619419 0.331255 0.566924 0.120000 0.636479 diff --git a/datasets/handleImage/label/订单1807117_51_7112521.txt b/datasets/handleImage/label/订单1807117_51_7112521.txt new file mode 100644 index 0000000..2e03e21 --- /dev/null +++ b/datasets/handleImage/label/订单1807117_51_7112521.txt @@ -0,0 +1 @@ +6 0.330895 0.406858 0.333225 0.482977 0.585185 0.461979 0.566528 0.383238 0.330895 0.402925 diff --git a/datasets/handleImage/label/订单1807118_51_7112530.txt b/datasets/handleImage/label/订单1807118_51_7112530.txt new file mode 100644 index 0000000..eb04a6a --- /dev/null +++ b/datasets/handleImage/label/订单1807118_51_7112530.txt @@ -0,0 +1 @@ +6 0.408216 0.464561 0.401211 0.539365 0.581445 0.552480 0.583190 0.472432 0.402969 0.460625 diff --git a/datasets/handleImage/label/订单1807121_51_7112649.txt b/datasets/handleImage/label/订单1807121_51_7112649.txt new file mode 100644 index 0000000..e3d299e --- /dev/null +++ b/datasets/handleImage/label/订单1807121_51_7112649.txt @@ -0,0 +1 @@ +6 0.572667 0.321500 0.558667 0.393670 0.724893 0.401550 0.730147 0.324120 0.579667 0.320180 diff --git a/datasets/handleImage/label/订单1807123_51_7112602.txt b/datasets/handleImage/label/订单1807123_51_7112602.txt new file mode 100644 index 0000000..ffe7140 --- /dev/null +++ b/datasets/handleImage/label/订单1807123_51_7112602.txt @@ -0,0 +1 @@ +6 0.287474 0.513115 0.296224 0.622041 0.541198 0.615479 0.528945 0.503926 0.296224 0.509180 diff --git a/datasets/handleImage/label/订单1807124_51_7112644.txt b/datasets/handleImage/label/订单1807124_51_7112644.txt new file mode 100644 index 0000000..ce8ee11 --- /dev/null +++ b/datasets/handleImage/label/订单1807124_51_7112644.txt @@ -0,0 +1 @@ +6 0.381966 0.560361 0.388958 0.648281 0.593685 0.640410 0.581445 0.549863 0.387214 0.562979 diff --git a/datasets/handleImage/label/订单1807126_51_7112788.txt b/datasets/handleImage/label/订单1807126_51_7112788.txt new file mode 100644 index 0000000..e1de30e --- /dev/null +++ b/datasets/handleImage/label/订单1807126_51_7112788.txt @@ -0,0 +1 @@ +6 0.374961 0.656162 0.469453 0.793955 0.733672 0.673223 0.630430 0.555107 0.373216 0.656162 diff --git a/datasets/handleImage/label/订单1807127_51_7112692.txt b/datasets/handleImage/label/订单1807127_51_7112692.txt new file mode 100644 index 0000000..a26b630 --- /dev/null +++ b/datasets/handleImage/label/订单1807127_51_7112692.txt @@ -0,0 +1 @@ +6 0.404922 0.477725 0.394466 0.580088 0.647201 0.586647 0.648945 0.476412 0.408411 0.475098 diff --git a/datasets/handleImage/label/订单1807130_51_7112696.txt b/datasets/handleImage/label/订单1807130_51_7112696.txt new file mode 100644 index 0000000..b544b8d --- /dev/null +++ b/datasets/handleImage/label/订单1807130_51_7112696.txt @@ -0,0 +1 @@ +6 0.474701 0.421250 0.465951 0.485557 0.642682 0.492119 0.649687 0.419941 0.478203 0.417314 diff --git a/datasets/handleImage/label/订单1807131_51_7112684.txt b/datasets/handleImage/label/订单1807131_51_7112684.txt new file mode 100644 index 0000000..d4ffe9d --- /dev/null +++ b/datasets/handleImage/label/订单1807131_51_7112684.txt @@ -0,0 +1 @@ +6 0.446589 0.463288 0.430839 0.549900 0.618067 0.573525 0.632067 0.482971 0.446589 0.463288 diff --git a/datasets/handleImage/label/订单1807134_51_7112717.txt b/datasets/handleImage/label/订单1807134_51_7112717.txt new file mode 100644 index 0000000..0b7783d --- /dev/null +++ b/datasets/handleImage/label/订单1807134_51_7112717.txt @@ -0,0 +1 @@ +6 0.271732 0.560361 0.273477 0.653535 0.476458 0.648281 0.467708 0.552480 0.273477 0.559043 diff --git a/datasets/handleImage/label/订单1807139_51_7112752.txt b/datasets/handleImage/label/订单1807139_51_7112752.txt new file mode 100644 index 0000000..d348eb5 --- /dev/null +++ b/datasets/handleImage/label/订单1807139_51_7112752.txt @@ -0,0 +1 @@ +6 0.297833 0.404212 0.290833 0.532827 0.593551 0.534135 0.595295 0.400279 0.310077 0.402904 diff --git a/datasets/handleImage/label/订单1807140_51_7112755.txt b/datasets/handleImage/label/订单1807140_51_7112755.txt new file mode 100644 index 0000000..5857d3e --- /dev/null +++ b/datasets/handleImage/label/订单1807140_51_7112755.txt @@ -0,0 +1 @@ +6 0.524149 0.397685 0.520217 0.518426 0.696398 0.534167 0.694427 0.402940 0.526120 0.398993 diff --git a/datasets/handleImage/label/订单1807141_51_7112783.txt b/datasets/handleImage/label/订单1807141_51_7112783.txt new file mode 100644 index 0000000..119b6f8 --- /dev/null +++ b/datasets/handleImage/label/订单1807141_51_7112783.txt @@ -0,0 +1 @@ +6 0.433022 0.543910 0.438270 0.650219 0.628558 0.643656 0.621995 0.529481 0.435652 0.539977 diff --git a/datasets/handleImage/label/订单1807142_51_7112827.txt b/datasets/handleImage/label/订单1807142_51_7112827.txt new file mode 100644 index 0000000..2417ddc --- /dev/null +++ b/datasets/handleImage/label/订单1807142_51_7112827.txt @@ -0,0 +1 @@ +6 0.233229 0.557734 0.238477 0.661406 0.474701 0.650908 0.465951 0.545918 0.233229 0.555107 diff --git a/datasets/handleImage/label/订单1807149_51_7112991.txt b/datasets/handleImage/label/订单1807149_51_7112991.txt new file mode 100644 index 0000000..b1fa6e1 --- /dev/null +++ b/datasets/handleImage/label/订单1807149_51_7112991.txt @@ -0,0 +1 @@ +6 0.419780 0.499993 0.426670 0.624668 0.581196 0.612852 0.575293 0.490807 0.422729 0.498678 diff --git a/datasets/handleImage/label/订单1807152_51_7112839.txt b/datasets/handleImage/label/订单1807152_51_7112839.txt new file mode 100644 index 0000000..8296401 --- /dev/null +++ b/datasets/handleImage/label/订单1807152_51_7112839.txt @@ -0,0 +1 @@ +6 0.495703 0.561670 0.483451 0.644346 0.681172 0.661406 0.695182 0.566924 0.497448 0.557734 diff --git a/datasets/handleImage/label/订单1807154_51_7112857.txt b/datasets/handleImage/label/订单1807154_51_7112857.txt new file mode 100644 index 0000000..c344b3b --- /dev/null +++ b/datasets/handleImage/label/订单1807154_51_7112857.txt @@ -0,0 +1 @@ +6 0.490667 0.498706 0.489681 0.723118 0.592044 0.724431 0.594010 0.496085 0.490667 0.501333 diff --git a/datasets/handleImage/label/订单1807155_51_7112959.txt b/datasets/handleImage/label/订单1807155_51_7112959.txt new file mode 100644 index 0000000..c3735a1 --- /dev/null +++ b/datasets/handleImage/label/订单1807155_51_7112959.txt @@ -0,0 +1 @@ +6 0.355716 0.287393 0.350469 0.375322 0.548190 0.381885 0.544701 0.292646 0.355716 0.286084 diff --git a/datasets/handleImage/label/订单1807156_51_7112931.txt b/datasets/handleImage/label/订单1807156_51_7112931.txt new file mode 100644 index 0000000..afa03fb --- /dev/null +++ b/datasets/handleImage/label/订单1807156_51_7112931.txt @@ -0,0 +1 @@ +6 0.094984 0.688946 0.142222 0.797868 0.406438 0.715196 0.350441 0.608897 0.096732 0.686324 diff --git a/datasets/handleImage/label/订单1807157_51_7112890.txt b/datasets/handleImage/label/订单1807157_51_7112890.txt new file mode 100644 index 0000000..2a815f8 --- /dev/null +++ b/datasets/handleImage/label/订单1807157_51_7112890.txt @@ -0,0 +1 @@ +6 0.338100 0.330742 0.329350 0.434417 0.577822 0.452788 0.577822 0.350425 0.343350 0.330742 diff --git a/datasets/handleImage/label/订单1807159_51_7113023.txt b/datasets/handleImage/label/订单1807159_51_7113023.txt new file mode 100644 index 0000000..358d40d --- /dev/null +++ b/datasets/handleImage/label/订单1807159_51_7113023.txt @@ -0,0 +1 @@ +6 0.336471 0.561670 0.336471 0.664033 0.574440 0.656162 0.567448 0.552480 0.336471 0.562979 diff --git a/datasets/handleImage/label/订单1807161_51_7113056.txt b/datasets/handleImage/label/订单1807161_51_7113056.txt new file mode 100644 index 0000000..fc6c545 --- /dev/null +++ b/datasets/handleImage/label/订单1807161_51_7113056.txt @@ -0,0 +1 @@ +6 0.255977 0.473740 0.254232 0.582666 0.520195 0.570859 0.504453 0.460625 0.257734 0.475059 diff --git a/datasets/handleImage/label/订单1807164_51_7113127.txt b/datasets/handleImage/label/订单1807164_51_7113127.txt new file mode 100644 index 0000000..be3032e --- /dev/null +++ b/datasets/handleImage/label/订单1807164_51_7113127.txt @@ -0,0 +1 @@ +6 0.290947 0.473730 0.317200 0.587900 0.577920 0.565590 0.562173 0.447480 0.290947 0.472410 diff --git a/datasets/handleImage/label/订单1807165_51_7113005.txt b/datasets/handleImage/label/订单1807165_51_7113005.txt new file mode 100644 index 0000000..fc772bd --- /dev/null +++ b/datasets/handleImage/label/订单1807165_51_7113005.txt @@ -0,0 +1 @@ +6 0.322383 0.519737 0.329386 0.582730 0.471111 0.570921 0.469357 0.503991 0.318874 0.515800 diff --git a/datasets/handleImage/label/订单1807166_51_7112975.txt b/datasets/handleImage/label/订单1807166_51_7112975.txt new file mode 100644 index 0000000..7153e5b --- /dev/null +++ b/datasets/handleImage/label/订单1807166_51_7112975.txt @@ -0,0 +1 @@ +6 0.385440 0.573460 0.367947 0.636460 0.523680 0.666640 0.546427 0.597090 0.387187 0.572150 diff --git a/datasets/handleImage/label/订单1807169_51_7113045.txt b/datasets/handleImage/label/订单1807169_51_7113045.txt new file mode 100644 index 0000000..6dea729 --- /dev/null +++ b/datasets/handleImage/label/订单1807169_51_7113045.txt @@ -0,0 +1 @@ +6 0.286406 0.413422 0.293385 0.510529 0.542617 0.505284 0.530417 0.402922 0.289896 0.410794 diff --git a/datasets/handleImage/label/订单1807181_51_7113193.txt b/datasets/handleImage/label/订单1807181_51_7113193.txt new file mode 100644 index 0000000..822a1c4 --- /dev/null +++ b/datasets/handleImage/label/订单1807181_51_7113193.txt @@ -0,0 +1 @@ +6 0.357350 0.539404 0.353850 0.629954 0.532328 0.632579 0.537578 0.540717 0.359100 0.536779 diff --git a/datasets/handleImage/label/订单1807182_51_7113177.txt b/datasets/handleImage/label/订单1807182_51_7113177.txt new file mode 100644 index 0000000..a258451 --- /dev/null +++ b/datasets/handleImage/label/订单1807182_51_7113177.txt @@ -0,0 +1 @@ +6 0.442554 0.185770 0.439961 0.305412 0.543789 0.309729 0.545737 0.184328 0.438662 0.185770 diff --git a/datasets/handleImage/label/订单1807183_51_7113142.txt b/datasets/handleImage/label/订单1807183_51_7113142.txt new file mode 100644 index 0000000..2b191e6 --- /dev/null +++ b/datasets/handleImage/label/订单1807183_51_7113142.txt @@ -0,0 +1 @@ +6 0.357451 0.586593 0.353938 0.670576 0.553415 0.675821 0.555163 0.582647 0.357451 0.583958 diff --git a/datasets/handleImage/label/订单1807184_51_7113191.txt b/datasets/handleImage/label/订单1807184_51_7113191.txt new file mode 100644 index 0000000..bc5b361 --- /dev/null +++ b/datasets/handleImage/label/订单1807184_51_7113191.txt @@ -0,0 +1 @@ +6 0.320729 0.618105 0.243737 0.786084 0.380221 0.816260 0.455456 0.645664 0.325977 0.619414 diff --git a/datasets/handleImage/label/订单1807185_51_7113220.txt b/datasets/handleImage/label/订单1807185_51_7113220.txt new file mode 100644 index 0000000..d2be407 --- /dev/null +++ b/datasets/handleImage/label/订单1807185_51_7113220.txt @@ -0,0 +1 @@ +6 0.394123 0.461996 0.392368 0.530241 0.572602 0.528925 0.565599 0.451491 0.399371 0.460680 diff --git a/datasets/handleImage/label/订单1807189_51_7113407.txt b/datasets/handleImage/label/订单1807189_51_7113407.txt new file mode 100644 index 0000000..e99f345 --- /dev/null +++ b/datasets/handleImage/label/订单1807189_51_7113407.txt @@ -0,0 +1 @@ +6 0.373187 0.562970 0.373187 0.667950 0.618160 0.658770 0.609413 0.548530 0.385440 0.559030 diff --git a/datasets/handleImage/label/订单1807191_51_7113329.txt b/datasets/handleImage/label/订单1807191_51_7113329.txt new file mode 100644 index 0000000..59bb840 --- /dev/null +++ b/datasets/handleImage/label/订单1807191_51_7113329.txt @@ -0,0 +1 @@ +6 0.603406 0.343828 0.603406 0.402881 0.833688 0.401572 0.833688 0.337266 0.609230 0.342515 diff --git a/datasets/handleImage/label/订单1807192_51_7113450.txt b/datasets/handleImage/label/订单1807192_51_7113450.txt new file mode 100644 index 0000000..586b1ba --- /dev/null +++ b/datasets/handleImage/label/订单1807192_51_7113450.txt @@ -0,0 +1 @@ +6 0.439714 0.463242 0.402969 0.553799 0.639180 0.590537 0.663685 0.488184 0.439714 0.461934 diff --git a/datasets/handleImage/label/订单1807197_51_7113341.txt b/datasets/handleImage/label/订单1807197_51_7113341.txt new file mode 100644 index 0000000..033c462 --- /dev/null +++ b/datasets/handleImage/label/订单1807197_51_7113341.txt @@ -0,0 +1 @@ +6 0.609342 0.439682 0.595351 0.610285 0.749327 0.610285 0.745833 0.440998 0.609342 0.437061 diff --git a/datasets/handleImage/label/订单1807199_51_7113385.txt b/datasets/handleImage/label/订单1807199_51_7113385.txt new file mode 100644 index 0000000..2ca803e --- /dev/null +++ b/datasets/handleImage/label/订单1807199_51_7113385.txt @@ -0,0 +1 @@ +6 0.262982 0.595791 0.271732 0.691592 0.485208 0.670596 0.462461 0.573486 0.261224 0.597100 diff --git a/datasets/handleImage/label/订单1807201_51_7113453.txt b/datasets/handleImage/label/订单1807201_51_7113453.txt new file mode 100644 index 0000000..2417281 --- /dev/null +++ b/datasets/handleImage/label/订单1807201_51_7113453.txt @@ -0,0 +1 @@ +6 0.292721 0.643037 0.297982 0.733584 0.469453 0.725713 0.467708 0.636475 0.289232 0.643037 diff --git a/datasets/handleImage/label/订单1807202_51_7113452.txt b/datasets/handleImage/label/订单1807202_51_7113452.txt new file mode 100644 index 0000000..8cfa6c1 --- /dev/null +++ b/datasets/handleImage/label/订单1807202_51_7113452.txt @@ -0,0 +1 @@ +6 0.285606 0.559087 0.352100 0.589271 0.434339 0.497408 0.355600 0.467225 0.282111 0.553837 diff --git a/datasets/handleImage/label/订单1807203_51_7113404.txt b/datasets/handleImage/label/订单1807203_51_7113404.txt new file mode 100644 index 0000000..a25692a --- /dev/null +++ b/datasets/handleImage/label/订单1807203_51_7113404.txt @@ -0,0 +1 @@ +6 0.369714 0.375322 0.380221 0.447500 0.565690 0.434375 0.546445 0.359570 0.367969 0.372695 diff --git a/datasets/handleImage/label/订单1807205_51_7113904.txt b/datasets/handleImage/label/订单1807205_51_7113904.txt new file mode 100644 index 0000000..d78b9e2 --- /dev/null +++ b/datasets/handleImage/label/订单1807205_51_7113904.txt @@ -0,0 +1 @@ +6 0.381973 0.290024 0.364476 0.611545 0.525456 0.604985 0.541204 0.326770 0.383724 0.288711 diff --git a/datasets/handleImage/label/订单1807208_51_7113555.txt b/datasets/handleImage/label/订单1807208_51_7113555.txt new file mode 100644 index 0000000..caf1217 --- /dev/null +++ b/datasets/handleImage/label/订单1807208_51_7113555.txt @@ -0,0 +1 @@ +6 0.617515 0.405510 0.624494 0.469810 0.840890 0.469810 0.838558 0.401574 0.619847 0.405510 diff --git a/datasets/handleImage/label/订单1807211_51_7113519.txt b/datasets/handleImage/label/订单1807211_51_7113519.txt new file mode 100644 index 0000000..2533335 --- /dev/null +++ b/datasets/handleImage/label/订单1807211_51_7113519.txt @@ -0,0 +1 @@ +6 0.411706 0.532803 0.404714 0.597100 0.583190 0.599727 0.581445 0.523613 0.408216 0.528857 diff --git a/datasets/handleImage/label/订单1807217_51_7113518.txt b/datasets/handleImage/label/订单1807217_51_7113518.txt new file mode 100644 index 0000000..b5f7ea6 --- /dev/null +++ b/datasets/handleImage/label/订单1807217_51_7113518.txt @@ -0,0 +1 @@ +6 0.367969 0.417314 0.373216 0.515742 0.612930 0.514424 0.600690 0.413379 0.366211 0.417314 diff --git a/datasets/handleImage/label/订单1807219_51_7113577.txt b/datasets/handleImage/label/订单1807219_51_7113577.txt new file mode 100644 index 0000000..429f276 --- /dev/null +++ b/datasets/handleImage/label/订单1807219_51_7113577.txt @@ -0,0 +1 @@ +6 0.432589 0.553837 0.434339 0.622079 0.598817 0.624704 0.600567 0.548588 0.434339 0.553837 diff --git a/datasets/handleImage/label/订单1807221_51_7113552.txt b/datasets/handleImage/label/订单1807221_51_7113552.txt new file mode 100644 index 0000000..dce3137 --- /dev/null +++ b/datasets/handleImage/label/订单1807221_51_7113552.txt @@ -0,0 +1 @@ +6 0.369606 0.517101 0.355602 0.616832 0.600567 0.626024 0.605822 0.521033 0.371354 0.518411 diff --git a/datasets/handleImage/label/订单1807224_51_7113585.txt b/datasets/handleImage/label/订单1807224_51_7113585.txt new file mode 100644 index 0000000..9b2fa92 --- /dev/null +++ b/datasets/handleImage/label/订单1807224_51_7113585.txt @@ -0,0 +1 @@ +6 0.373187 0.455350 0.367947 0.551150 0.597160 0.548530 0.593667 0.448790 0.378440 0.454040 diff --git a/datasets/handleImage/label/订单1807226_51_7113749.txt b/datasets/handleImage/label/订单1807226_51_7113749.txt new file mode 100644 index 0000000..bc1e528 --- /dev/null +++ b/datasets/handleImage/label/订单1807226_51_7113749.txt @@ -0,0 +1 @@ +6 0.201732 0.519678 0.243737 0.586602 0.413464 0.528857 0.369714 0.460625 0.201732 0.517051 diff --git a/datasets/handleImage/label/订单1807230_51_7113599.txt b/datasets/handleImage/label/订单1807230_51_7113599.txt new file mode 100644 index 0000000..8d5faf2 --- /dev/null +++ b/datasets/handleImage/label/订单1807230_51_7113599.txt @@ -0,0 +1 @@ +6 0.194622 0.431792 0.205117 0.509221 0.385344 0.505283 0.378344 0.418667 0.196367 0.427854 diff --git a/datasets/handleImage/label/订单1807231_51_7113614.txt b/datasets/handleImage/label/订单1807231_51_7113614.txt new file mode 100644 index 0000000..a60df00 --- /dev/null +++ b/datasets/handleImage/label/订单1807231_51_7113614.txt @@ -0,0 +1 @@ +6 0.359765 0.591887 0.380435 0.875353 0.508385 0.854353 0.480825 0.565640 0.359765 0.589267 diff --git a/datasets/handleImage/label/订单1807232_51_7113683.txt b/datasets/handleImage/label/订单1807232_51_7113683.txt new file mode 100644 index 0000000..e1b7896 --- /dev/null +++ b/datasets/handleImage/label/订单1807232_51_7113683.txt @@ -0,0 +1 @@ +6 0.327693 0.503910 0.325947 0.625960 0.597160 0.624650 0.595413 0.501290 0.331200 0.501290 diff --git a/datasets/handleImage/label/订单1807233_51_7113715.txt b/datasets/handleImage/label/订单1807233_51_7113715.txt new file mode 100644 index 0000000..73e837a --- /dev/null +++ b/datasets/handleImage/label/订单1807233_51_7113715.txt @@ -0,0 +1 @@ +6 0.098492 0.598406 0.096742 0.782138 0.472942 0.770325 0.469442 0.606281 0.100242 0.599719 diff --git a/datasets/handleImage/label/订单1807236_51_7113782.txt b/datasets/handleImage/label/订单1807236_51_7113782.txt new file mode 100644 index 0000000..85b236e --- /dev/null +++ b/datasets/handleImage/label/订单1807236_51_7113782.txt @@ -0,0 +1 @@ +6 0.567435 0.419941 0.563945 0.543301 0.842161 0.551172 0.843906 0.419941 0.574440 0.419941 diff --git a/datasets/handleImage/label/订单1807237_51_7113661.txt b/datasets/handleImage/label/订单1807237_51_7113661.txt new file mode 100644 index 0000000..de94b23 --- /dev/null +++ b/datasets/handleImage/label/订单1807237_51_7113661.txt @@ -0,0 +1 @@ +6 0.196484 0.440937 0.177240 0.549863 0.448451 0.557734 0.458958 0.447500 0.198242 0.437002 diff --git a/datasets/handleImage/label/订单1807238_51_7113657.txt b/datasets/handleImage/label/订单1807238_51_7113657.txt new file mode 100644 index 0000000..3d53f65 --- /dev/null +++ b/datasets/handleImage/label/订单1807238_51_7113657.txt @@ -0,0 +1 @@ +6 0.523698 0.620723 0.621680 0.658779 0.712669 0.543301 0.598932 0.494746 0.520195 0.616787 diff --git a/datasets/handleImage/label/订单1807240_51_7113721.txt b/datasets/handleImage/label/订单1807240_51_7113721.txt new file mode 100644 index 0000000..4fb5d3e --- /dev/null +++ b/datasets/handleImage/label/订单1807240_51_7113721.txt @@ -0,0 +1 @@ +6 0.584935 0.464561 0.574440 0.545918 0.759922 0.553799 0.763411 0.473740 0.581445 0.460625 diff --git a/datasets/handleImage/label/订单1807242_51_7113761.txt b/datasets/handleImage/label/订单1807242_51_7113761.txt new file mode 100644 index 0000000..934e06f --- /dev/null +++ b/datasets/handleImage/label/订单1807242_51_7113761.txt @@ -0,0 +1 @@ +6 0.398734 0.517056 0.375262 0.581362 0.645207 0.603672 0.662806 0.531489 0.404607 0.520991 diff --git a/datasets/handleImage/label/订单1807245_51_7113816.txt b/datasets/handleImage/label/订单1807245_51_7113816.txt new file mode 100644 index 0000000..ecc622a --- /dev/null +++ b/datasets/handleImage/label/订单1807245_51_7113816.txt @@ -0,0 +1 @@ +6 0.438359 0.416003 0.408113 0.469810 0.570982 0.492119 0.608221 0.434377 0.447669 0.414697 diff --git a/datasets/handleImage/label/订单1807246_51_7113791.txt b/datasets/handleImage/label/订单1807246_51_7113791.txt new file mode 100644 index 0000000..3a240c1 --- /dev/null +++ b/datasets/handleImage/label/订单1807246_51_7113791.txt @@ -0,0 +1 @@ +6 0.299727 0.468496 0.290977 0.564297 0.509701 0.565605 0.506198 0.471123 0.299727 0.464561 diff --git a/datasets/handleImage/label/订单1807248_51_7113945.txt b/datasets/handleImage/label/订单1807248_51_7113945.txt new file mode 100644 index 0000000..d34fae7 --- /dev/null +++ b/datasets/handleImage/label/订单1807248_51_7113945.txt @@ -0,0 +1 @@ +6 0.285729 0.489492 0.294479 0.586602 0.535951 0.573486 0.525443 0.475059 0.282227 0.486865 diff --git a/datasets/handleImage/label/订单1807251_51_7113927.txt b/datasets/handleImage/label/订单1807251_51_7113927.txt new file mode 100644 index 0000000..7b0f1f9 --- /dev/null +++ b/datasets/handleImage/label/订单1807251_51_7113927.txt @@ -0,0 +1 @@ +6 0.380208 0.455371 0.367969 0.583984 0.633932 0.604980 0.640938 0.481621 0.380221 0.452744 diff --git a/datasets/handleImage/label/订单1807252_51_7113872.txt b/datasets/handleImage/label/订单1807252_51_7113872.txt new file mode 100644 index 0000000..5128339 --- /dev/null +++ b/datasets/handleImage/label/订单1807252_51_7113872.txt @@ -0,0 +1 @@ +6 0.609440 0.447500 0.618190 0.551172 0.873659 0.549863 0.864909 0.438311 0.616432 0.443564 diff --git a/datasets/handleImage/label/订单1807253_51_7113859.txt b/datasets/handleImage/label/订单1807253_51_7113859.txt new file mode 100644 index 0000000..9896712 --- /dev/null +++ b/datasets/handleImage/label/订单1807253_51_7113859.txt @@ -0,0 +1 @@ +6 0.425716 0.419941 0.418711 0.482930 0.576185 0.482930 0.572695 0.418623 0.425703 0.422559 diff --git a/datasets/handleImage/label/订单1807255_51_7113891.txt b/datasets/handleImage/label/订单1807255_51_7113891.txt new file mode 100644 index 0000000..6dbf440 --- /dev/null +++ b/datasets/handleImage/label/订单1807255_51_7113891.txt @@ -0,0 +1 @@ +6 0.409961 0.510488 0.397708 0.618105 0.625182 0.627285 0.628685 0.523613 0.411706 0.510488 diff --git a/datasets/handleImage/label/订单1807259_51_7113928.txt b/datasets/handleImage/label/订单1807259_51_7113928.txt new file mode 100644 index 0000000..d7eebfe --- /dev/null +++ b/datasets/handleImage/label/订单1807259_51_7113928.txt @@ -0,0 +1 @@ +6 0.476427 0.438290 0.444933 0.541970 0.695147 0.576090 0.716147 0.463230 0.486933 0.436980 diff --git a/datasets/handleImage/label/订单1807260_51_7114022.txt b/datasets/handleImage/label/订单1807260_51_7114022.txt new file mode 100644 index 0000000..d3c78ee --- /dev/null +++ b/datasets/handleImage/label/订单1807260_51_7114022.txt @@ -0,0 +1 @@ +6 0.451839 0.561712 0.455339 0.648325 0.660061 0.650950 0.653061 0.559087 0.450089 0.561712 diff --git a/datasets/handleImage/label/订单1807262_51_7113998.txt b/datasets/handleImage/label/订单1807262_51_7113998.txt new file mode 100644 index 0000000..125987f --- /dev/null +++ b/datasets/handleImage/label/订单1807262_51_7113998.txt @@ -0,0 +1 @@ +6 0.492173 0.360870 0.497427 0.444860 0.714400 0.436980 0.695147 0.343810 0.486933 0.362180 diff --git a/datasets/handleImage/label/订单1807265_51_7114041.txt b/datasets/handleImage/label/订单1807265_51_7114041.txt new file mode 100644 index 0000000..e85d244 --- /dev/null +++ b/datasets/handleImage/label/订单1807265_51_7114041.txt @@ -0,0 +1 @@ +6 0.364200 0.612887 0.369447 0.678507 0.490187 0.658820 0.486247 0.594513 0.365513 0.605013 diff --git a/datasets/handleImage/label/订单1807271_51_7114136.txt b/datasets/handleImage/label/订单1807271_51_7114136.txt new file mode 100644 index 0000000..fa3a1e5 --- /dev/null +++ b/datasets/handleImage/label/订单1807271_51_7114136.txt @@ -0,0 +1 @@ +6 0.274360 0.360891 0.255110 0.497370 0.638316 0.498685 0.629562 0.351704 0.270865 0.358261 diff --git a/datasets/handleImage/label/订单1807281_51_7114155.txt b/datasets/handleImage/label/订单1807281_51_7114155.txt new file mode 100644 index 0000000..8771d0d --- /dev/null +++ b/datasets/handleImage/label/订单1807281_51_7114155.txt @@ -0,0 +1 @@ +6 0.496712 0.565612 0.470469 0.654850 0.621387 0.696842 0.648945 0.607604 0.500651 0.562988 diff --git a/datasets/handleImage/label/订单1807284_51_7114318.txt b/datasets/handleImage/label/订单1807284_51_7114318.txt new file mode 100644 index 0000000..2cef754 --- /dev/null +++ b/datasets/handleImage/label/订单1807284_51_7114318.txt @@ -0,0 +1 @@ +6 0.566471 0.290067 0.556625 0.535478 0.664896 0.542039 0.681625 0.295317 0.568438 0.290072 diff --git a/datasets/handleImage/label/订单1807286_51_7114197.txt b/datasets/handleImage/label/订单1807286_51_7114197.txt new file mode 100644 index 0000000..d8d3ad5 --- /dev/null +++ b/datasets/handleImage/label/订单1807286_51_7114197.txt @@ -0,0 +1 @@ +6 0.316222 0.640451 0.358222 0.733627 0.576941 0.674569 0.527948 0.570902 0.310980 0.631265 diff --git a/datasets/handleImage/label/订单1807288_51_7114663.txt b/datasets/handleImage/label/订单1807288_51_7114663.txt new file mode 100644 index 0000000..f4179ad --- /dev/null +++ b/datasets/handleImage/label/订单1807288_51_7114663.txt @@ -0,0 +1 @@ +6 0.243590 0.577442 0.276833 0.683740 0.506051 0.631250 0.465808 0.528885 0.240090 0.573510 diff --git a/datasets/handleImage/label/订单1807292_51_7114224.txt b/datasets/handleImage/label/订单1807292_51_7114224.txt new file mode 100644 index 0000000..15829c1 --- /dev/null +++ b/datasets/handleImage/label/订单1807292_51_7114224.txt @@ -0,0 +1 @@ +6 0.435216 0.454098 0.450954 0.535461 0.666183 0.505284 0.638183 0.416039 0.440458 0.456725 diff --git a/datasets/handleImage/label/订单1807296_51_7114313.txt b/datasets/handleImage/label/订单1807296_51_7114313.txt new file mode 100644 index 0000000..0f24de1 --- /dev/null +++ b/datasets/handleImage/label/订单1807296_51_7114313.txt @@ -0,0 +1 @@ +6 0.371374 0.459375 0.353874 0.552544 0.584854 0.566985 0.590102 0.467248 0.371374 0.463311 diff --git a/datasets/handleImage/label/订单1807299_51_7114302.txt b/datasets/handleImage/label/订单1807299_51_7114302.txt new file mode 100644 index 0000000..7a45801 --- /dev/null +++ b/datasets/handleImage/label/订单1807299_51_7114302.txt @@ -0,0 +1 @@ +6 0.439485 0.367477 0.433578 0.698183 0.596966 0.698183 0.599917 0.376660 0.443422 0.368784 diff --git a/datasets/handleImage/label/订单1807304_51_7114340.txt b/datasets/handleImage/label/订单1807304_51_7114340.txt new file mode 100644 index 0000000..28f94a9 --- /dev/null +++ b/datasets/handleImage/label/订单1807304_51_7114340.txt @@ -0,0 +1 @@ +6 0.427440 0.573460 0.392440 0.624650 0.527173 0.662700 0.555173 0.602340 0.429187 0.568210 diff --git a/datasets/handleImage/label/订单1807305_51_7114437.txt b/datasets/handleImage/label/订单1807305_51_7114437.txt new file mode 100644 index 0000000..d49272f --- /dev/null +++ b/datasets/handleImage/label/订单1807305_51_7114437.txt @@ -0,0 +1 @@ +6 0.369714 0.582666 0.364466 0.666660 0.555195 0.669277 0.563945 0.576104 0.366211 0.581357 diff --git a/datasets/handleImage/label/订单1807307_51_7114368.txt b/datasets/handleImage/label/订单1807307_51_7114368.txt new file mode 100644 index 0000000..e82412c --- /dev/null +++ b/datasets/handleImage/label/订单1807307_51_7114368.txt @@ -0,0 +1 @@ +6 0.438481 0.171908 0.454229 0.402884 0.554619 0.396322 0.543794 0.169284 0.439463 0.174538 diff --git a/datasets/handleImage/label/订单1807311_51_7114483.txt b/datasets/handleImage/label/订单1807311_51_7114483.txt new file mode 100644 index 0000000..227ceda --- /dev/null +++ b/datasets/handleImage/label/订单1807311_51_7114483.txt @@ -0,0 +1 @@ +6 0.479833 0.248063 0.479833 0.338617 0.721306 0.360925 0.710806 0.259875 0.488583 0.246750 diff --git a/datasets/handleImage/label/订单1807312_51_7114460.txt b/datasets/handleImage/label/订单1807312_51_7114460.txt new file mode 100644 index 0000000..601fd61 --- /dev/null +++ b/datasets/handleImage/label/订单1807312_51_7114460.txt @@ -0,0 +1 @@ +6 0.546445 0.560361 0.528945 0.643037 0.728424 0.652227 0.731927 0.566924 0.546445 0.561670 diff --git a/datasets/handleImage/label/订单1807317_51_7114433.txt b/datasets/handleImage/label/订单1807317_51_7114433.txt new file mode 100644 index 0000000..40f5d16 --- /dev/null +++ b/datasets/handleImage/label/订单1807317_51_7114433.txt @@ -0,0 +1 @@ +6 0.542943 0.402881 0.544701 0.489492 0.752917 0.492119 0.751172 0.400254 0.544701 0.402881 diff --git a/datasets/handleImage/label/订单1807318_51_7114408.txt b/datasets/handleImage/label/订单1807318_51_7114408.txt new file mode 100644 index 0000000..b74c302 --- /dev/null +++ b/datasets/handleImage/label/订单1807318_51_7114408.txt @@ -0,0 +1 @@ +6 0.360964 0.486865 0.348724 0.598418 0.637435 0.590537 0.619935 0.478994 0.360964 0.484238 diff --git a/datasets/handleImage/label/订单1807319_51_7114509.txt b/datasets/handleImage/label/订单1807319_51_7114509.txt new file mode 100644 index 0000000..eacb933 --- /dev/null +++ b/datasets/handleImage/label/订单1807319_51_7114509.txt @@ -0,0 +1 @@ +6 0.369714 0.564297 0.385469 0.639102 0.558698 0.640410 0.558698 0.551172 0.367969 0.568232 diff --git a/datasets/handleImage/label/订单1807320_51_7114495.txt b/datasets/handleImage/label/订单1807320_51_7114495.txt new file mode 100644 index 0000000..d18ea1c --- /dev/null +++ b/datasets/handleImage/label/订单1807320_51_7114495.txt @@ -0,0 +1 @@ +6 0.392458 0.423869 0.388958 0.522294 0.607675 0.522294 0.602425 0.419931 0.395950 0.419931 diff --git a/datasets/handleImage/label/订单1807322_51_7114586.txt b/datasets/handleImage/label/订单1807322_51_7114586.txt new file mode 100644 index 0000000..ff06ecc --- /dev/null +++ b/datasets/handleImage/label/订单1807322_51_7114586.txt @@ -0,0 +1 @@ +6 0.441458 0.448809 0.443203 0.527549 0.625182 0.528857 0.614687 0.452744 0.439714 0.448809 diff --git a/datasets/handleImage/label/订单1807323_51_7114599.txt b/datasets/handleImage/label/订单1807323_51_7114599.txt new file mode 100644 index 0000000..7d9d7a3 --- /dev/null +++ b/datasets/handleImage/label/订单1807323_51_7114599.txt @@ -0,0 +1 @@ +6 0.317227 0.316260 0.313724 0.444873 0.630430 0.443564 0.612930 0.324141 0.322474 0.316260 diff --git a/datasets/handleImage/label/订单1807326_51_7114625.txt b/datasets/handleImage/label/订单1807326_51_7114625.txt new file mode 100644 index 0000000..dbce800 --- /dev/null +++ b/datasets/handleImage/label/订单1807326_51_7114625.txt @@ -0,0 +1 @@ +6 0.322474 0.545918 0.304974 0.648281 0.549948 0.664033 0.551693 0.555107 0.327721 0.545918 diff --git a/datasets/handleImage/label/订单1807329_51_7114657.txt b/datasets/handleImage/label/订单1807329_51_7114657.txt new file mode 100644 index 0000000..430bd66 --- /dev/null +++ b/datasets/handleImage/label/订单1807329_51_7114657.txt @@ -0,0 +1 @@ +6 0.569173 0.633830 0.546427 0.688950 0.714400 0.728320 0.731893 0.661390 0.581413 0.632520 diff --git a/datasets/handleImage/label/订单1807331_51_7114848.txt b/datasets/handleImage/label/订单1807331_51_7114848.txt new file mode 100644 index 0000000..035b84c --- /dev/null +++ b/datasets/handleImage/label/订单1807331_51_7114848.txt @@ -0,0 +1 @@ +6 0.443187 0.526220 0.444933 0.601020 0.605920 0.595770 0.597160 0.522280 0.444933 0.524910 diff --git a/datasets/handleImage/label/订单1807337_51_7114881.txt b/datasets/handleImage/label/订单1807337_51_7114881.txt new file mode 100644 index 0000000..9ac54e6 --- /dev/null +++ b/datasets/handleImage/label/订单1807337_51_7114881.txt @@ -0,0 +1 @@ +6 0.570937 0.429121 0.563945 0.536738 0.856159 0.535420 0.849154 0.416006 0.572695 0.427812 diff --git a/datasets/handleImage/label/订单1807342_51_7114751.txt b/datasets/handleImage/label/订单1807342_51_7114751.txt new file mode 100644 index 0000000..8f288c6 --- /dev/null +++ b/datasets/handleImage/label/订单1807342_51_7114751.txt @@ -0,0 +1 @@ +6 0.332880 0.427873 0.345132 0.527610 0.584854 0.513180 0.569094 0.404254 0.334635 0.425252 diff --git a/datasets/handleImage/label/订单1807343_51_7114747.txt b/datasets/handleImage/label/订单1807343_51_7114747.txt new file mode 100644 index 0000000..af0b8b7 --- /dev/null +++ b/datasets/handleImage/label/订单1807343_51_7114747.txt @@ -0,0 +1 @@ +6 0.268165 0.400917 0.303165 0.509840 0.591981 0.446849 0.548218 0.347119 0.266410 0.398295 diff --git a/datasets/handleImage/label/订单1807349_51_7114675.txt b/datasets/handleImage/label/订单1807349_51_7114675.txt new file mode 100644 index 0000000..79b4893 --- /dev/null +++ b/datasets/handleImage/label/订单1807349_51_7114675.txt @@ -0,0 +1 @@ +6 0.436211 0.565605 0.441458 0.658779 0.660182 0.653535 0.660182 0.552480 0.436211 0.562979 diff --git a/datasets/handleImage/label/订单1807350_51_7114761.txt b/datasets/handleImage/label/订单1807350_51_7114761.txt new file mode 100644 index 0000000..f8efee2 --- /dev/null +++ b/datasets/handleImage/label/订单1807350_51_7114761.txt @@ -0,0 +1 @@ +6 0.499206 0.481621 0.486953 0.568232 0.693424 0.583984 0.691680 0.493428 0.500951 0.475059 diff --git a/datasets/handleImage/label/订单1807354_51_7114805.txt b/datasets/handleImage/label/订单1807354_51_7114805.txt new file mode 100644 index 0000000..41ae921 --- /dev/null +++ b/datasets/handleImage/label/订单1807354_51_7114805.txt @@ -0,0 +1 @@ +6 0.465951 0.538047 0.446706 0.628604 0.670677 0.654844 0.679427 0.557734 0.465951 0.536738 diff --git a/datasets/handleImage/label/订单1807356_51_7114884.txt b/datasets/handleImage/label/订单1807356_51_7114884.txt new file mode 100644 index 0000000..0efdf9d --- /dev/null +++ b/datasets/handleImage/label/订单1807356_51_7114884.txt @@ -0,0 +1 @@ +6 0.464206 0.534111 0.425703 0.611543 0.616432 0.650908 0.639180 0.570859 0.462461 0.535420 diff --git a/datasets/handleImage/label/订单1807358_51_7114911.txt b/datasets/handleImage/label/订单1807358_51_7114911.txt new file mode 100644 index 0000000..28d0697 --- /dev/null +++ b/datasets/handleImage/label/订单1807358_51_7114911.txt @@ -0,0 +1 @@ +6 0.588413 0.331990 0.527173 0.473730 0.651413 0.497350 0.707400 0.360870 0.597160 0.334620 diff --git a/datasets/handleImage/label/订单1807365_51_7114899.txt b/datasets/handleImage/label/订单1807365_51_7114899.txt new file mode 100644 index 0000000..01aceed --- /dev/null +++ b/datasets/handleImage/label/订单1807365_51_7114899.txt @@ -0,0 +1 @@ +6 0.370471 0.548588 0.384471 0.648324 0.618941 0.632578 0.604941 0.531529 0.361725 0.548588 diff --git a/datasets/handleImage/label/订单1807366_51_7114944.txt b/datasets/handleImage/label/订单1807366_51_7114944.txt new file mode 100644 index 0000000..3fdad25 --- /dev/null +++ b/datasets/handleImage/label/订单1807366_51_7114944.txt @@ -0,0 +1 @@ +6 0.406440 0.427790 0.439680 0.566900 0.695147 0.532780 0.663653 0.414670 0.411693 0.425170 diff --git a/datasets/handleImage/label/订单1807368_51_7115023.txt b/datasets/handleImage/label/订单1807368_51_7115023.txt new file mode 100644 index 0000000..f68aa4c --- /dev/null +++ b/datasets/handleImage/label/订单1807368_51_7115023.txt @@ -0,0 +1 @@ +6 0.618160 0.706010 0.618160 0.833310 0.716147 0.828060 0.717893 0.695510 0.616413 0.702070 diff --git a/datasets/handleImage/label/订单1807371_51_7115058.txt b/datasets/handleImage/label/订单1807371_51_7115058.txt new file mode 100644 index 0000000..a553e55 --- /dev/null +++ b/datasets/handleImage/label/订单1807371_51_7115058.txt @@ -0,0 +1 @@ +6 0.294479 0.573486 0.282227 0.661406 0.499206 0.669277 0.500951 0.573486 0.299727 0.569541 diff --git a/datasets/handleImage/label/订单1807374_51_7114939.txt b/datasets/handleImage/label/订单1807374_51_7114939.txt new file mode 100644 index 0000000..e94013b --- /dev/null +++ b/datasets/handleImage/label/订单1807374_51_7114939.txt @@ -0,0 +1 @@ +6 0.387214 0.375322 0.371471 0.457998 0.583190 0.476367 0.590195 0.381885 0.381966 0.374004 diff --git a/datasets/handleImage/label/订单1807377_51_7115068.txt b/datasets/handleImage/label/订单1807377_51_7115068.txt new file mode 100644 index 0000000..a7ccf22 --- /dev/null +++ b/datasets/handleImage/label/订单1807377_51_7115068.txt @@ -0,0 +1 @@ +6 0.325856 0.383233 0.264611 0.501346 0.646061 0.557775 0.670561 0.427854 0.331100 0.379300 diff --git a/datasets/handleImage/label/订单1807378_51_7115179.txt b/datasets/handleImage/label/订单1807378_51_7115179.txt new file mode 100644 index 0000000..9195fe1 --- /dev/null +++ b/datasets/handleImage/label/订单1807378_51_7115179.txt @@ -0,0 +1 @@ +6 0.509701 0.397627 0.516693 0.514424 0.829909 0.517051 0.810664 0.388437 0.507943 0.400254 diff --git a/datasets/handleImage/label/订单1807381_51_7115096.txt b/datasets/handleImage/label/订单1807381_51_7115096.txt new file mode 100644 index 0000000..5a2d6b3 --- /dev/null +++ b/datasets/handleImage/label/订单1807381_51_7115096.txt @@ -0,0 +1 @@ +6 0.437847 0.389800 0.434340 0.461979 0.600567 0.464601 0.602326 0.388490 0.439595 0.392422 diff --git a/datasets/handleImage/label/订单1807385_51_7115103.txt b/datasets/handleImage/label/订单1807385_51_7115103.txt new file mode 100644 index 0000000..12154a2 --- /dev/null +++ b/datasets/handleImage/label/订单1807385_51_7115103.txt @@ -0,0 +1 @@ +6 0.349922 0.534105 0.352844 0.603660 0.641556 0.616785 0.647389 0.536730 0.355756 0.535420 diff --git a/datasets/handleImage/label/订单1807386_51_7115174.txt b/datasets/handleImage/label/订单1807386_51_7115174.txt new file mode 100644 index 0000000..fabe927 --- /dev/null +++ b/datasets/handleImage/label/订单1807386_51_7115174.txt @@ -0,0 +1 @@ +6 0.324193 0.565585 0.310185 0.662698 0.535913 0.670565 0.539418 0.568204 0.327685 0.564266 diff --git a/datasets/handleImage/label/订单1807387_51_7115119.txt b/datasets/handleImage/label/订单1807387_51_7115119.txt new file mode 100644 index 0000000..d3c2554 --- /dev/null +++ b/datasets/handleImage/label/订单1807387_51_7115119.txt @@ -0,0 +1 @@ +6 0.471777 0.421257 0.470469 0.545924 0.545267 0.548548 0.551829 0.425189 0.478340 0.422565 diff --git a/datasets/handleImage/label/订单1807388_51_7115158.txt b/datasets/handleImage/label/订单1807388_51_7115158.txt new file mode 100644 index 0000000..a5ed455 --- /dev/null +++ b/datasets/handleImage/label/订单1807388_51_7115158.txt @@ -0,0 +1 @@ +6 0.380967 0.245441 0.354719 0.350422 0.601438 0.380608 0.624183 0.263814 0.387974 0.241500 diff --git a/datasets/handleImage/label/订单1807390_51_7115204.txt b/datasets/handleImage/label/订单1807390_51_7115204.txt new file mode 100644 index 0000000..16ffede --- /dev/null +++ b/datasets/handleImage/label/订单1807390_51_7115204.txt @@ -0,0 +1 @@ +6 0.566574 0.253279 0.521084 0.381886 0.886782 0.468503 0.909527 0.320208 0.568328 0.251964 diff --git a/datasets/handleImage/label/订单1807393_51_7115228.txt b/datasets/handleImage/label/订单1807393_51_7115228.txt new file mode 100644 index 0000000..39ee452 --- /dev/null +++ b/datasets/handleImage/label/订单1807393_51_7115228.txt @@ -0,0 +1 @@ +6 0.427440 0.519660 0.437933 0.611520 0.632160 0.597090 0.611160 0.509160 0.427440 0.519660 diff --git a/datasets/handleImage/label/订单1807395_51_7115255.txt b/datasets/handleImage/label/订单1807395_51_7115255.txt new file mode 100644 index 0000000..696c81f --- /dev/null +++ b/datasets/handleImage/label/订单1807395_51_7115255.txt @@ -0,0 +1 @@ +6 0.247154 0.526909 0.318923 0.631894 0.555213 0.546590 0.479947 0.446849 0.250652 0.524277 diff --git a/datasets/handleImage/label/订单1807396_51_7115232.txt b/datasets/handleImage/label/订单1807396_51_7115232.txt new file mode 100644 index 0000000..435871b --- /dev/null +++ b/datasets/handleImage/label/订单1807396_51_7115232.txt @@ -0,0 +1 @@ +6 0.367969 0.523613 0.348724 0.610225 0.539440 0.635166 0.563945 0.540674 0.373216 0.520986 diff --git a/datasets/handleImage/label/订单1807399_51_7115284.txt b/datasets/handleImage/label/订单1807399_51_7115284.txt new file mode 100644 index 0000000..05c49d3 --- /dev/null +++ b/datasets/handleImage/label/订单1807399_51_7115284.txt @@ -0,0 +1 @@ +6 0.373216 0.499990 0.367969 0.590537 0.577943 0.595791 0.570937 0.501299 0.376719 0.499990 diff --git a/datasets/handleImage/label/订单1807401_51_7115294.txt b/datasets/handleImage/label/订单1807401_51_7115294.txt new file mode 100644 index 0000000..41c50ce --- /dev/null +++ b/datasets/handleImage/label/订单1807401_51_7115294.txt @@ -0,0 +1 @@ +6 0.365941 0.527545 0.354281 0.603660 0.575728 0.611535 0.589716 0.528860 0.363606 0.527545 diff --git a/datasets/handleImage/label/订单1807404_51_7115386.txt b/datasets/handleImage/label/订单1807404_51_7115386.txt new file mode 100644 index 0000000..881a701 --- /dev/null +++ b/datasets/handleImage/label/订单1807404_51_7115386.txt @@ -0,0 +1 @@ +6 0.152747 0.325449 0.150990 0.385820 0.296224 0.385820 0.292721 0.321514 0.156237 0.322822 diff --git a/datasets/handleImage/label/订单1807405_51_7115359.txt b/datasets/handleImage/label/订单1807405_51_7115359.txt new file mode 100644 index 0000000..3281385 --- /dev/null +++ b/datasets/handleImage/label/订单1807405_51_7115359.txt @@ -0,0 +1 @@ +6 0.355693 0.492100 0.338200 0.601020 0.605920 0.614150 0.614667 0.501290 0.350440 0.488160 diff --git a/datasets/handleImage/label/订单1807408_51_7115322.txt b/datasets/handleImage/label/订单1807408_51_7115322.txt new file mode 100644 index 0000000..ce40367 --- /dev/null +++ b/datasets/handleImage/label/订单1807408_51_7115322.txt @@ -0,0 +1 @@ +6 0.528998 0.548610 0.527029 0.809761 0.663794 0.815013 0.656909 0.556483 0.532931 0.544674 diff --git a/datasets/handleImage/label/订单1807410_51_7115405.txt b/datasets/handleImage/label/订单1807410_51_7115405.txt new file mode 100644 index 0000000..7191ef9 --- /dev/null +++ b/datasets/handleImage/label/订单1807410_51_7115405.txt @@ -0,0 +1 @@ +6 0.527078 0.332054 0.535828 0.447537 0.787794 0.443604 0.787794 0.324179 0.525328 0.333367 diff --git a/datasets/handleImage/label/订单1807411_51_7115351.txt b/datasets/handleImage/label/订单1807411_51_7115351.txt new file mode 100644 index 0000000..0a52157 --- /dev/null +++ b/datasets/handleImage/label/订单1807411_51_7115351.txt @@ -0,0 +1 @@ +6 0.439463 0.364824 0.419780 0.594479 0.522139 0.599733 0.534937 0.376634 0.442417 0.368763 diff --git a/datasets/handleImage/label/订单1807412_51_7115406.txt b/datasets/handleImage/label/订单1807412_51_7115406.txt new file mode 100644 index 0000000..cdd4c07 --- /dev/null +++ b/datasets/handleImage/label/订单1807412_51_7115406.txt @@ -0,0 +1 @@ +6 0.388851 0.368804 0.371351 0.430485 0.562083 0.451487 0.567328 0.379300 0.388851 0.368804 diff --git a/datasets/handleImage/label/订单1807414_51_7115431.txt b/datasets/handleImage/label/订单1807414_51_7115431.txt new file mode 100644 index 0000000..b164318 --- /dev/null +++ b/datasets/handleImage/label/订单1807414_51_7115431.txt @@ -0,0 +1 @@ +6 0.079258 0.443564 0.103750 0.518359 0.290977 0.484238 0.257734 0.400254 0.077500 0.437002 diff --git a/datasets/handleImage/label/订单1807416_51_7115422.txt b/datasets/handleImage/label/订单1807416_51_7115422.txt new file mode 100644 index 0000000..cd05409 --- /dev/null +++ b/datasets/handleImage/label/订单1807416_51_7115422.txt @@ -0,0 +1 @@ +6 0.430933 0.409420 0.436187 0.488160 0.649653 0.475040 0.633907 0.389740 0.430933 0.409420 diff --git a/datasets/handleImage/label/订单1807419_51_7115476.txt b/datasets/handleImage/label/订单1807419_51_7115476.txt new file mode 100644 index 0000000..a5091b3 --- /dev/null +++ b/datasets/handleImage/label/订单1807419_51_7115476.txt @@ -0,0 +1 @@ +6 0.304106 0.430441 0.263864 0.553806 0.582318 0.597111 0.596321 0.461938 0.307601 0.430441 diff --git a/datasets/handleImage/label/订单1807420_51_7115500.txt b/datasets/handleImage/label/订单1807420_51_7115500.txt new file mode 100644 index 0000000..4bdfc78 --- /dev/null +++ b/datasets/handleImage/label/订单1807420_51_7115500.txt @@ -0,0 +1 @@ +6 0.595351 0.397686 0.595351 0.467248 0.744079 0.464616 0.745833 0.391129 0.591842 0.397686 diff --git a/datasets/handleImage/label/订单1807421_51_7115464.txt b/datasets/handleImage/label/订单1807421_51_7115464.txt new file mode 100644 index 0000000..6baf19b --- /dev/null +++ b/datasets/handleImage/label/订单1807421_51_7115464.txt @@ -0,0 +1 @@ +6 0.177240 0.509180 0.171992 0.589229 0.359219 0.598418 0.357474 0.517051 0.180742 0.509180 diff --git a/datasets/handleImage/label/订单1807423_51_7115489.txt b/datasets/handleImage/label/订单1807423_51_7115489.txt new file mode 100644 index 0000000..25ef182 --- /dev/null +++ b/datasets/handleImage/label/订单1807423_51_7115489.txt @@ -0,0 +1 @@ +6 0.152622 0.460662 0.187622 0.540717 0.364350 0.507908 0.338100 0.427854 0.159622 0.459350 diff --git a/datasets/handleImage/label/订单1807425_51_7115538.txt b/datasets/handleImage/label/订单1807425_51_7115538.txt new file mode 100644 index 0000000..5bf248e --- /dev/null +++ b/datasets/handleImage/label/订单1807425_51_7115538.txt @@ -0,0 +1 @@ +6 0.409933 0.402860 0.395933 0.520970 0.674160 0.532780 0.672400 0.410730 0.418693 0.402860 diff --git a/datasets/handleImage/label/订单1807430_51_7115559.txt b/datasets/handleImage/label/订单1807430_51_7115559.txt new file mode 100644 index 0000000..771f2a8 --- /dev/null +++ b/datasets/handleImage/label/订单1807430_51_7115559.txt @@ -0,0 +1 @@ +6 0.486953 0.410752 0.488698 0.544609 0.791419 0.547236 0.794909 0.416006 0.492201 0.410752 diff --git a/datasets/handleImage/label/订单1807431_51_7115577.txt b/datasets/handleImage/label/订单1807431_51_7115577.txt new file mode 100644 index 0000000..1a2dc8f --- /dev/null +++ b/datasets/handleImage/label/订单1807431_51_7115577.txt @@ -0,0 +1 @@ +6 0.299727 0.513115 0.290977 0.611543 0.513203 0.615479 0.514948 0.519678 0.303229 0.513115 diff --git a/datasets/handleImage/label/订单1807433_51_7115601.txt b/datasets/handleImage/label/订单1807433_51_7115601.txt new file mode 100644 index 0000000..bd8950e --- /dev/null +++ b/datasets/handleImage/label/订单1807433_51_7115601.txt @@ -0,0 +1 @@ +6 0.437956 0.405498 0.331224 0.460625 0.492201 0.591855 0.588438 0.526240 0.444961 0.405498 diff --git a/datasets/handleImage/label/订单1807435_51_7115592.txt b/datasets/handleImage/label/订单1807435_51_7115592.txt new file mode 100644 index 0000000..4af16ed --- /dev/null +++ b/datasets/handleImage/label/订单1807435_51_7115592.txt @@ -0,0 +1 @@ +6 0.589095 0.471153 0.609765 0.675880 0.706220 0.658820 0.687520 0.454093 0.590080 0.471153 diff --git a/datasets/handleImage/label/订单1807440_51_7115685.txt b/datasets/handleImage/label/订单1807440_51_7115685.txt new file mode 100644 index 0000000..b676348 --- /dev/null +++ b/datasets/handleImage/label/订单1807440_51_7115685.txt @@ -0,0 +1 @@ +6 0.432718 0.481626 0.465964 0.572175 0.688187 0.518372 0.639193 0.429131 0.441468 0.481626 diff --git a/datasets/handleImage/label/订单1807446_51_7115659.txt b/datasets/handleImage/label/订单1807446_51_7115659.txt new file mode 100644 index 0000000..75220e7 --- /dev/null +++ b/datasets/handleImage/label/订单1807446_51_7115659.txt @@ -0,0 +1 @@ +6 0.641068 0.435690 0.643691 0.590547 0.744746 0.587923 0.744746 0.430443 0.641068 0.434375 diff --git a/datasets/handleImage/label/订单1807447_51_7115697.txt b/datasets/handleImage/label/订单1807447_51_7115697.txt new file mode 100644 index 0000000..9d15538 --- /dev/null +++ b/datasets/handleImage/label/订单1807447_51_7115697.txt @@ -0,0 +1 @@ +6 0.437956 0.489492 0.460703 0.643037 0.569193 0.633848 0.551693 0.481621 0.446706 0.489492 diff --git a/datasets/handleImage/label/订单1807448_51_7115789.txt b/datasets/handleImage/label/订单1807448_51_7115789.txt new file mode 100644 index 0000000..d2543dc --- /dev/null +++ b/datasets/handleImage/label/订单1807448_51_7115789.txt @@ -0,0 +1 @@ +6 0.409961 0.544609 0.413464 0.623350 0.598932 0.620723 0.595443 0.536738 0.415208 0.541982 diff --git a/datasets/handleImage/label/订单1807449_51_7115668.txt b/datasets/handleImage/label/订单1807449_51_7115668.txt new file mode 100644 index 0000000..f32ef3b --- /dev/null +++ b/datasets/handleImage/label/订单1807449_51_7115668.txt @@ -0,0 +1 @@ +6 0.415180 0.602341 0.434428 0.687635 0.633905 0.669265 0.621667 0.581336 0.420441 0.599706 diff --git a/datasets/handleImage/label/订单1807451_51_7115671.txt b/datasets/handleImage/label/订单1807451_51_7115671.txt new file mode 100644 index 0000000..f6dd622 --- /dev/null +++ b/datasets/handleImage/label/订单1807451_51_7115671.txt @@ -0,0 +1 @@ +6 0.584054 0.380443 0.579510 0.508642 0.698264 0.521599 0.696966 0.384769 0.584054 0.373247 diff --git a/datasets/handleImage/label/订单1807455_51_7115711.txt b/datasets/handleImage/label/订单1807455_51_7115711.txt new file mode 100644 index 0000000..1ac7b2e --- /dev/null +++ b/datasets/handleImage/label/订单1807455_51_7115711.txt @@ -0,0 +1 @@ +6 0.509680 0.513100 0.467680 0.614150 0.719653 0.660080 0.742400 0.549840 0.509680 0.509160 diff --git a/datasets/handleImage/label/订单1807459_51_7115757.txt b/datasets/handleImage/label/订单1807459_51_7115757.txt new file mode 100644 index 0000000..500d9ab --- /dev/null +++ b/datasets/handleImage/label/订单1807459_51_7115757.txt @@ -0,0 +1 @@ +6 0.350469 0.540674 0.336471 0.633848 0.537695 0.646973 0.544701 0.551172 0.348724 0.541982 diff --git a/datasets/handleImage/label/订单1807462_51_7115731.txt b/datasets/handleImage/label/订单1807462_51_7115731.txt new file mode 100644 index 0000000..a07b94d --- /dev/null +++ b/datasets/handleImage/label/订单1807462_51_7115731.txt @@ -0,0 +1 @@ +6 0.327693 0.456670 0.334693 0.511780 0.483427 0.497350 0.472933 0.438290 0.325947 0.455350 diff --git a/datasets/handleImage/label/订单1807463_51_7115739.txt b/datasets/handleImage/label/订单1807463_51_7115739.txt new file mode 100644 index 0000000..bdc8191 --- /dev/null +++ b/datasets/handleImage/label/订单1807463_51_7115739.txt @@ -0,0 +1 @@ +6 0.443268 0.431794 0.448503 0.518402 0.685547 0.510529 0.664622 0.418667 0.446758 0.431794 diff --git a/datasets/handleImage/label/订单1807466_51_7115795.txt b/datasets/handleImage/label/订单1807466_51_7115795.txt new file mode 100644 index 0000000..18ad4e4 --- /dev/null +++ b/datasets/handleImage/label/订单1807466_51_7115795.txt @@ -0,0 +1 @@ +6 0.346850 0.586646 0.327606 0.745442 0.696806 0.763813 0.698556 0.601083 0.345100 0.586646 diff --git a/datasets/handleImage/label/订单1807471_51_7116054.txt b/datasets/handleImage/label/订单1807471_51_7116054.txt new file mode 100644 index 0000000..9340161 --- /dev/null +++ b/datasets/handleImage/label/订单1807471_51_7116054.txt @@ -0,0 +1 @@ +6 0.478173 0.450100 0.474680 0.551150 0.695147 0.573460 0.710907 0.467160 0.483427 0.450100 diff --git a/datasets/handleImage/label/订单1807472_51_7115781.txt b/datasets/handleImage/label/订单1807472_51_7115781.txt new file mode 100644 index 0000000..1d44e28 --- /dev/null +++ b/datasets/handleImage/label/订单1807472_51_7115781.txt @@ -0,0 +1 @@ +6 0.255868 0.477726 0.245370 0.545964 0.422095 0.551215 0.423843 0.473793 0.255868 0.476415 diff --git a/datasets/handleImage/label/订单1807473_51_7115861.txt b/datasets/handleImage/label/订单1807473_51_7115861.txt new file mode 100644 index 0000000..ccf54dd --- /dev/null +++ b/datasets/handleImage/label/订单1807473_51_7115861.txt @@ -0,0 +1 @@ +6 0.420599 0.447500 0.404850 0.574798 0.606947 0.589232 0.614824 0.463249 0.421908 0.447500 diff --git a/datasets/handleImage/label/订单1807474_51_7115810.txt b/datasets/handleImage/label/订单1807474_51_7115810.txt new file mode 100644 index 0000000..e6fba63 --- /dev/null +++ b/datasets/handleImage/label/订单1807474_51_7115810.txt @@ -0,0 +1 @@ +6 0.408216 0.419941 0.394219 0.503926 0.586693 0.514424 0.584935 0.431748 0.415208 0.417314 diff --git a/datasets/handleImage/label/订单1807475_51_7115914.txt b/datasets/handleImage/label/订单1807475_51_7115914.txt new file mode 100644 index 0000000..94f56c4 --- /dev/null +++ b/datasets/handleImage/label/订单1807475_51_7115914.txt @@ -0,0 +1 @@ +6 0.462461 0.486865 0.462461 0.591855 0.707422 0.591855 0.707422 0.485557 0.453711 0.484238 diff --git a/datasets/handleImage/label/订单1807476_51_7115863.txt b/datasets/handleImage/label/订单1807476_51_7115863.txt new file mode 100644 index 0000000..8d216b4 --- /dev/null +++ b/datasets/handleImage/label/订单1807476_51_7115863.txt @@ -0,0 +1 @@ +6 0.492065 0.467827 0.460567 0.549191 0.651316 0.588559 0.681065 0.503258 0.504316 0.471761 diff --git a/datasets/handleImage/label/订单1807478_51_7115862.txt b/datasets/handleImage/label/订单1807478_51_7115862.txt new file mode 100644 index 0000000..f0b038d --- /dev/null +++ b/datasets/handleImage/label/订单1807478_51_7115862.txt @@ -0,0 +1 @@ +6 0.240234 0.576104 0.324219 0.644346 0.492201 0.544609 0.409961 0.469805 0.247227 0.580039 diff --git a/datasets/handleImage/label/订单1807479_51_7115927.txt b/datasets/handleImage/label/订单1807479_51_7115927.txt new file mode 100644 index 0000000..c351e27 --- /dev/null +++ b/datasets/handleImage/label/订单1807479_51_7115927.txt @@ -0,0 +1 @@ +6 0.359100 0.476413 0.367850 0.557775 0.560322 0.544654 0.542828 0.460662 0.362600 0.476413 diff --git a/datasets/handleImage/label/订单1807481_51_7115895.txt b/datasets/handleImage/label/订单1807481_51_7115895.txt new file mode 100644 index 0000000..57d9dad --- /dev/null +++ b/datasets/handleImage/label/订单1807481_51_7115895.txt @@ -0,0 +1 @@ +6 0.392461 0.408125 0.373216 0.475059 0.514948 0.501299 0.542943 0.435684 0.390716 0.406816 diff --git a/datasets/handleImage/label/订单1807483_51_7116022.txt b/datasets/handleImage/label/订单1807483_51_7116022.txt new file mode 100644 index 0000000..73ed32e --- /dev/null +++ b/datasets/handleImage/label/订单1807483_51_7116022.txt @@ -0,0 +1 @@ +6 0.412471 0.496098 0.407216 0.591892 0.639935 0.587961 0.629438 0.492157 0.403712 0.494784 diff --git a/datasets/handleImage/label/订单1807487_51_7115978.txt b/datasets/handleImage/label/订单1807487_51_7115978.txt new file mode 100644 index 0000000..ce2f4b5 --- /dev/null +++ b/datasets/handleImage/label/订单1807487_51_7115978.txt @@ -0,0 +1 @@ +6 0.243737 0.338574 0.238477 0.423877 0.453711 0.440937 0.453711 0.349072 0.245482 0.339883 diff --git a/datasets/handleImage/label/订单1807489_51_7115997.txt b/datasets/handleImage/label/订单1807489_51_7115997.txt new file mode 100644 index 0000000..e45bded --- /dev/null +++ b/datasets/handleImage/label/订单1807489_51_7115997.txt @@ -0,0 +1 @@ +6 0.284179 0.275596 0.288846 0.366149 0.547812 0.367462 0.557145 0.276909 0.288846 0.275596 diff --git a/datasets/handleImage/label/订单1807495_51_7116081.txt b/datasets/handleImage/label/订单1807495_51_7116081.txt new file mode 100644 index 0000000..ad3d034 --- /dev/null +++ b/datasets/handleImage/label/订单1807495_51_7116081.txt @@ -0,0 +1 @@ +6 0.329466 0.477686 0.324219 0.549863 0.525443 0.548545 0.521953 0.467178 0.327721 0.477686 diff --git a/datasets/handleImage/label/订单1807496_51_7116067.txt b/datasets/handleImage/label/订单1807496_51_7116067.txt new file mode 100644 index 0000000..cd035d2 --- /dev/null +++ b/datasets/handleImage/label/订单1807496_51_7116067.txt @@ -0,0 +1 @@ +6 0.602326 0.404236 0.579572 0.463290 0.738808 0.493472 0.766806 0.422604 0.607569 0.401615 diff --git a/datasets/handleImage/label/订单1807497_51_7116086.txt b/datasets/handleImage/label/订单1807497_51_7116086.txt new file mode 100644 index 0000000..8f0d735 --- /dev/null +++ b/datasets/handleImage/label/订单1807497_51_7116086.txt @@ -0,0 +1 @@ +6 0.364466 0.561670 0.367969 0.664033 0.593685 0.646973 0.584935 0.549863 0.367969 0.561670 diff --git a/datasets/handleImage/train/订单1804264_51_7086683.jpg b/datasets/handleImage/train/订单1804264_51_7086683.jpg new file mode 100644 index 0000000..a46dd46 --- /dev/null +++ b/datasets/handleImage/train/订单1804264_51_7086683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5b993f0ba0c257198174339a21d95af9d785f35538d5c64ae6e7001e3de55a +size 94842 diff --git a/datasets/handleImage/train/订单1804266_51_7086351.jpg b/datasets/handleImage/train/订单1804266_51_7086351.jpg new file mode 100644 index 0000000..11babde --- /dev/null +++ b/datasets/handleImage/train/订单1804266_51_7086351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a26ea58dd356c85ece347c093731fcab2df74eee98926197ca715ad0179cc4 +size 115537 diff --git a/datasets/handleImage/train/订单1804271_51_7086393.jpg b/datasets/handleImage/train/订单1804271_51_7086393.jpg new file mode 100644 index 0000000..1063ec0 --- /dev/null +++ b/datasets/handleImage/train/订单1804271_51_7086393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91bf916b5340c48f59fa51121df0f2f1aa1010faea7d5ac7421374eabfe675a +size 254128 diff --git a/datasets/handleImage/train/订单1804279_51_7086490.jpg b/datasets/handleImage/train/订单1804279_51_7086490.jpg new file mode 100644 index 0000000..3aeefdf --- /dev/null +++ b/datasets/handleImage/train/订单1804279_51_7086490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687db145ecbaa564557e19a6201fe70e026185cb5fcbad3e6f97ba84b30dd350 +size 123992 diff --git a/datasets/handleImage/train/订单1804280_51_7086504.jpg b/datasets/handleImage/train/订单1804280_51_7086504.jpg new file mode 100644 index 0000000..83f93a2 --- /dev/null +++ b/datasets/handleImage/train/订单1804280_51_7086504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f85421bb7b60495b564ce3796ae0d0dff85f6b1ee72c829ec360aa3f2c365e +size 125877 diff --git a/datasets/handleImage/train/订单1804281_51_7086514.jpg b/datasets/handleImage/train/订单1804281_51_7086514.jpg new file mode 100644 index 0000000..5d5475f --- /dev/null +++ b/datasets/handleImage/train/订单1804281_51_7086514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347c2237e467389a6b57ee9baacee8fdfb97824458c6b866e5a8a0b9b1d67618 +size 153380 diff --git a/datasets/handleImage/train/订单1804283_51_7086538.jpg b/datasets/handleImage/train/订单1804283_51_7086538.jpg new file mode 100644 index 0000000..2931fd6 --- /dev/null +++ b/datasets/handleImage/train/订单1804283_51_7086538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2322a972519533e5671765f213fe73c3b000837f8c0d04820b355e36b4ef095 +size 141137 diff --git a/datasets/handleImage/train/订单1804284_51_7086566.jpg b/datasets/handleImage/train/订单1804284_51_7086566.jpg new file mode 100644 index 0000000..97470c1 --- /dev/null +++ b/datasets/handleImage/train/订单1804284_51_7086566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e671944731ef1d512fb6a68b348f282c1905b19db308219d399320fe50cdc6 +size 326718 diff --git a/datasets/handleImage/train/订单1804288_51_7086560.jpg b/datasets/handleImage/train/订单1804288_51_7086560.jpg new file mode 100644 index 0000000..f4ad56f --- /dev/null +++ b/datasets/handleImage/train/订单1804288_51_7086560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408229cd521b3384e3c7860b8a253650e92bddc320ff24138983e158cc7d7513 +size 137667 diff --git a/datasets/handleImage/train/订单1804296_51_7086646.jpg b/datasets/handleImage/train/订单1804296_51_7086646.jpg new file mode 100644 index 0000000..010ee84 --- /dev/null +++ b/datasets/handleImage/train/订单1804296_51_7086646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cc98d8ab6b1f5bf237efebe585cba3e06f274aae10fe3423d228fdb7e9f970 +size 150319 diff --git a/datasets/handleImage/train/订单1804297_51_7086665.jpg b/datasets/handleImage/train/订单1804297_51_7086665.jpg new file mode 100644 index 0000000..452bb61 --- /dev/null +++ b/datasets/handleImage/train/订单1804297_51_7086665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4650c089c7ce615d8fd9cdc74c7f142eb5ba7cb088d4e5412dd6261d34e282e +size 102324 diff --git a/datasets/handleImage/train/订单1804300_51_7086694.jpg b/datasets/handleImage/train/订单1804300_51_7086694.jpg new file mode 100644 index 0000000..12eac1e --- /dev/null +++ b/datasets/handleImage/train/订单1804300_51_7086694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f603a7d270b5aca0691a816cf9c7f9f38d4f416553dc6161c65f8d8b09aefe +size 87028 diff --git a/datasets/handleImage/train/订单1804301_51_7086834.jpg b/datasets/handleImage/train/订单1804301_51_7086834.jpg new file mode 100644 index 0000000..29bd81b --- /dev/null +++ b/datasets/handleImage/train/订单1804301_51_7086834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c79ac5617e99391c881f2b676bb467e4e4b4d7ff1a94ba2a8b86c5463e9c4ec +size 234305 diff --git a/datasets/handleImage/train/订单1804303_51_7086722.jpg b/datasets/handleImage/train/订单1804303_51_7086722.jpg new file mode 100644 index 0000000..e26b91c --- /dev/null +++ b/datasets/handleImage/train/订单1804303_51_7086722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a0210bec396964974c5a0c801e3a98f12b759c0dee41cc80c4cc17b3e2b74a +size 504663 diff --git a/datasets/handleImage/train/订单1804305_51_7086730.jpg b/datasets/handleImage/train/订单1804305_51_7086730.jpg new file mode 100644 index 0000000..a8511ea --- /dev/null +++ b/datasets/handleImage/train/订单1804305_51_7086730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d594090144f131c997d26b173ffdec476d832c56f9c2b5ecaf742851030d2a4f +size 141688 diff --git a/datasets/handleImage/train/订单1804307_51_7086734.jpg b/datasets/handleImage/train/订单1804307_51_7086734.jpg new file mode 100644 index 0000000..42bb397 --- /dev/null +++ b/datasets/handleImage/train/订单1804307_51_7086734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdae738c2b755f1b74eae3bdd60b31f11d707d8056a6da70669940aaabc176b +size 142521 diff --git a/datasets/handleImage/train/订单1804310_51_7086877.jpg b/datasets/handleImage/train/订单1804310_51_7086877.jpg new file mode 100644 index 0000000..87aba4a --- /dev/null +++ b/datasets/handleImage/train/订单1804310_51_7086877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0392d538322512bec53f36e524a374f2f88b429132817044da27db1db9d044 +size 129429 diff --git a/datasets/handleImage/train/订单1804312_51_7086770.jpg b/datasets/handleImage/train/订单1804312_51_7086770.jpg new file mode 100644 index 0000000..cbb4836 --- /dev/null +++ b/datasets/handleImage/train/订单1804312_51_7086770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16519746421823d3c848c7cb452ef15010ba9d0ab74f89671167e1111def441e +size 601340 diff --git a/datasets/handleImage/train/订单1804316_51_7086793.jpg b/datasets/handleImage/train/订单1804316_51_7086793.jpg new file mode 100644 index 0000000..1c5e809 --- /dev/null +++ b/datasets/handleImage/train/订单1804316_51_7086793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ba87128a043b1bed9115c40e2debea8716563e748e644916b7ace009b8792b +size 128127 diff --git a/datasets/handleImage/train/订单1804319_51_7086838.jpg b/datasets/handleImage/train/订单1804319_51_7086838.jpg new file mode 100644 index 0000000..c006151 --- /dev/null +++ b/datasets/handleImage/train/订单1804319_51_7086838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7a9dead3be29d4e27fd0834c15d3efd55c3855ea0a965b5c20fa2cb13984fe +size 169016 diff --git a/datasets/handleImage/train/订单1804320_51_7086858.jpg b/datasets/handleImage/train/订单1804320_51_7086858.jpg new file mode 100644 index 0000000..2a8daf0 --- /dev/null +++ b/datasets/handleImage/train/订单1804320_51_7086858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b679a27123de5c62f43247111df9ff20778f55fb857651f4e851e8c9e6f71323 +size 535313 diff --git a/datasets/handleImage/train/订单1804322_51_7086804.jpg b/datasets/handleImage/train/订单1804322_51_7086804.jpg new file mode 100644 index 0000000..fee5da0 --- /dev/null +++ b/datasets/handleImage/train/订单1804322_51_7086804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0566c9c6b8d106baecd089b872f038b1180475cac72ab28cf7fa47b1e816472d +size 139482 diff --git a/datasets/handleImage/train/订单1804329_51_7086883.jpg b/datasets/handleImage/train/订单1804329_51_7086883.jpg new file mode 100644 index 0000000..db00f6e --- /dev/null +++ b/datasets/handleImage/train/订单1804329_51_7086883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3735ea89f4a9f7f9c62dabfde8ab4708247092129774044849e484b1d2c2acd2 +size 108058 diff --git a/datasets/handleImage/train/订单1804330_51_7086948.jpg b/datasets/handleImage/train/订单1804330_51_7086948.jpg new file mode 100644 index 0000000..f26e181 --- /dev/null +++ b/datasets/handleImage/train/订单1804330_51_7086948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b2d23a48c8d3c2ef9378226039552237eca9be44e2b2ede478b727f3c2406d +size 146446 diff --git a/datasets/handleImage/train/订单1804345_51_7087222.jpg b/datasets/handleImage/train/订单1804345_51_7087222.jpg new file mode 100644 index 0000000..8a9b2c1 --- /dev/null +++ b/datasets/handleImage/train/订单1804345_51_7087222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed26562266a8f3f339744af33485b500bcf0347f57d19103b21222b0e1d0c15b +size 534835 diff --git a/datasets/handleImage/train/订单1804348_51_7086990.jpg b/datasets/handleImage/train/订单1804348_51_7086990.jpg new file mode 100644 index 0000000..40ed1e9 --- /dev/null +++ b/datasets/handleImage/train/订单1804348_51_7086990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38704e90f414c8eb17a8717d97e0a1dbb85ce87cced84bb32a36e9d00d1b8b5 +size 543590 diff --git a/datasets/handleImage/train/订单1804351_51_7087028.jpg b/datasets/handleImage/train/订单1804351_51_7087028.jpg new file mode 100644 index 0000000..a582646 --- /dev/null +++ b/datasets/handleImage/train/订单1804351_51_7087028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8c891c3b6481cd46eaf160e40632d284f278911dad9d364c864e8fe59b4e0a +size 135262 diff --git a/datasets/handleImage/train/订单1804354_51_7087141.jpg b/datasets/handleImage/train/订单1804354_51_7087141.jpg new file mode 100644 index 0000000..2696856 --- /dev/null +++ b/datasets/handleImage/train/订单1804354_51_7087141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b686b17f332c41b7c707c6ba3c9c783e91e889701252e813ccb0d56dc5e36a +size 122551 diff --git a/datasets/handleImage/train/订单1804355_51_7087137.jpg b/datasets/handleImage/train/订单1804355_51_7087137.jpg new file mode 100644 index 0000000..f117f69 --- /dev/null +++ b/datasets/handleImage/train/订单1804355_51_7087137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67d4ddf800c1be9a099d7877aa6b3171c2f400b51f678782b30fdcc56d17ec7 +size 462765 diff --git a/datasets/handleImage/train/订单1804356_51_7087113.jpg b/datasets/handleImage/train/订单1804356_51_7087113.jpg new file mode 100644 index 0000000..2ed0cd8 --- /dev/null +++ b/datasets/handleImage/train/订单1804356_51_7087113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048ef7ceedb35d292fd66246c5d19a918bb1195123af631dd72ca92b240d588b +size 138287 diff --git a/datasets/handleImage/train/订单1804357_51_7087171.jpg b/datasets/handleImage/train/订单1804357_51_7087171.jpg new file mode 100644 index 0000000..f9d69eb --- /dev/null +++ b/datasets/handleImage/train/订单1804357_51_7087171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd0f26e5a101e0d5753e5939a8e96912c697746f22352537abe846d4950902d +size 118915 diff --git a/datasets/handleImage/train/订单1804358_51_7087420.jpg b/datasets/handleImage/train/订单1804358_51_7087420.jpg new file mode 100644 index 0000000..136f93c --- /dev/null +++ b/datasets/handleImage/train/订单1804358_51_7087420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfc02d694217b93f2affa9d0adbfc3f57bcfc59b6df6dd7415e5394c876bbc1 +size 618160 diff --git a/datasets/handleImage/train/订单1804361_51_7087277.jpg b/datasets/handleImage/train/订单1804361_51_7087277.jpg new file mode 100644 index 0000000..9f38078 --- /dev/null +++ b/datasets/handleImage/train/订单1804361_51_7087277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c881d98938227bceb91e752a046b9b2b4da2911f5b2c73ae16dc7021d32d856 +size 151911 diff --git a/datasets/handleImage/train/订单1804364_51_7087186.jpg b/datasets/handleImage/train/订单1804364_51_7087186.jpg new file mode 100644 index 0000000..6a37f80 --- /dev/null +++ b/datasets/handleImage/train/订单1804364_51_7087186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfd748719a2167ab58876a1882d17070b7173fec3f509d60b64ab13954ad816 +size 146932 diff --git a/datasets/handleImage/train/订单1804365_51_7087279.jpg b/datasets/handleImage/train/订单1804365_51_7087279.jpg new file mode 100644 index 0000000..fe81653 --- /dev/null +++ b/datasets/handleImage/train/订单1804365_51_7087279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c7a596a83e2c987c93302434611fb9903bde9c8e245ee0ab428268be5de118 +size 147798 diff --git a/datasets/handleImage/train/订单1804368_51_7087281.jpg b/datasets/handleImage/train/订单1804368_51_7087281.jpg new file mode 100644 index 0000000..5881c65 --- /dev/null +++ b/datasets/handleImage/train/订单1804368_51_7087281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67333fd97e4c33be64b337bdb964fd6323b5fdd7e184fc2fe63f44950b3ce2fc +size 96237 diff --git a/datasets/handleImage/train/订单1804374_51_7087324.jpg b/datasets/handleImage/train/订单1804374_51_7087324.jpg new file mode 100644 index 0000000..f8a201f --- /dev/null +++ b/datasets/handleImage/train/订单1804374_51_7087324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a817c54e6dd39b0452a04a50d8105aaab049ef803be700334bb13ab121310933 +size 144809 diff --git a/datasets/handleImage/train/订单1804380_51_7087338.jpg b/datasets/handleImage/train/订单1804380_51_7087338.jpg new file mode 100644 index 0000000..242b768 --- /dev/null +++ b/datasets/handleImage/train/订单1804380_51_7087338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e288f36c42dbb792da764e568f4426d499ebbd2e105441c1512e3fdf168e1d2 +size 173137 diff --git a/datasets/handleImage/train/订单1804383_51_7087409.jpg b/datasets/handleImage/train/订单1804383_51_7087409.jpg new file mode 100644 index 0000000..b539203 --- /dev/null +++ b/datasets/handleImage/train/订单1804383_51_7087409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b8045cc731d71b0c6b7a908e3bfd67f3482601b6831f3e38d1fad065f7e7a7 +size 589730 diff --git a/datasets/handleImage/train/订单1804384_51_7087390.jpg b/datasets/handleImage/train/订单1804384_51_7087390.jpg new file mode 100644 index 0000000..9a7d3a6 --- /dev/null +++ b/datasets/handleImage/train/订单1804384_51_7087390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3674357934a8f2ff3826ea35300a47a26f63084dbc52b248f4daccd5378b2ef4 +size 168762 diff --git a/datasets/handleImage/train/订单1804385_51_7087531.jpg b/datasets/handleImage/train/订单1804385_51_7087531.jpg new file mode 100644 index 0000000..9b07dc1 --- /dev/null +++ b/datasets/handleImage/train/订单1804385_51_7087531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95534f772121c7ebe5e56b0d3a2ae53f3aa1d2b4b7a43ba996d3f3299b00de63 +size 141817 diff --git a/datasets/handleImage/train/订单1804387_51_7087408.jpg b/datasets/handleImage/train/订单1804387_51_7087408.jpg new file mode 100644 index 0000000..4551cec --- /dev/null +++ b/datasets/handleImage/train/订单1804387_51_7087408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6de09a559e7cd7e6d811c6519af6f31aefa07aa248a8b2f2cbf7b7cb388d78 +size 688014 diff --git a/datasets/handleImage/train/订单1804388_51_7087485.jpg b/datasets/handleImage/train/订单1804388_51_7087485.jpg new file mode 100644 index 0000000..3466340 --- /dev/null +++ b/datasets/handleImage/train/订单1804388_51_7087485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5427299fea367de545b7c1bbf36fe2c648d167ecd2fd7a45eaa2481403a4e78f +size 200063 diff --git a/datasets/handleImage/train/订单1804391_51_7087435.jpg b/datasets/handleImage/train/订单1804391_51_7087435.jpg new file mode 100644 index 0000000..6f90d7b --- /dev/null +++ b/datasets/handleImage/train/订单1804391_51_7087435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a92623dbaa5dc67c918565198ffd6f5cc3ad64c7d2a6c48dc15f0060af10ec +size 299514 diff --git a/datasets/handleImage/train/订单1804392_51_7087455.jpg b/datasets/handleImage/train/订单1804392_51_7087455.jpg new file mode 100644 index 0000000..9951185 --- /dev/null +++ b/datasets/handleImage/train/订单1804392_51_7087455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5f9b072d57f7eb84d33989ffe59d147b5a175079363a29dc70bb26d16a0558 +size 119304 diff --git a/datasets/handleImage/train/订单1804397_51_7087486.jpg b/datasets/handleImage/train/订单1804397_51_7087486.jpg new file mode 100644 index 0000000..d2f0a16 --- /dev/null +++ b/datasets/handleImage/train/订单1804397_51_7087486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79c83f8ee4577fd95cd437dd4ca62716e96055bc56f6727f151db86df74fa60 +size 120987 diff --git a/datasets/handleImage/train/订单1804398_51_7087556.jpg b/datasets/handleImage/train/订单1804398_51_7087556.jpg new file mode 100644 index 0000000..568c85a --- /dev/null +++ b/datasets/handleImage/train/订单1804398_51_7087556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b4db7106a00627f89a116211b49dddd92feb1d83fd0ba8853852b6662fd2a2 +size 139661 diff --git a/datasets/handleImage/train/订单1804400_51_7087530.jpg b/datasets/handleImage/train/订单1804400_51_7087530.jpg new file mode 100644 index 0000000..b4aea7f --- /dev/null +++ b/datasets/handleImage/train/订单1804400_51_7087530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9852d6c2b4e484dbe2e7165496071dc3e35934048719879c84ecd824e30d7f +size 409804 diff --git a/datasets/handleImage/train/订单1804402_51_7087549.jpg b/datasets/handleImage/train/订单1804402_51_7087549.jpg new file mode 100644 index 0000000..b43f121 --- /dev/null +++ b/datasets/handleImage/train/订单1804402_51_7087549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1e74b916ec84e91975715c281b98b347d5540456a687fe8de2a3dce2a906af +size 158484 diff --git a/datasets/handleImage/train/订单1804404_51_7088648.jpg b/datasets/handleImage/train/订单1804404_51_7088648.jpg new file mode 100644 index 0000000..6ddc321 --- /dev/null +++ b/datasets/handleImage/train/订单1804404_51_7088648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d947ec2f5ba91614a938c976213eb6d3689998d095d70ab88508b7e09b970f8 +size 302983 diff --git a/datasets/handleImage/train/订单1804405_51_7087580.jpg b/datasets/handleImage/train/订单1804405_51_7087580.jpg new file mode 100644 index 0000000..c6cb18e --- /dev/null +++ b/datasets/handleImage/train/订单1804405_51_7087580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c2472854f99ca47e46679f3247c226418723317f53987c15b5c6a7ae45dc45 +size 1190937 diff --git a/datasets/handleImage/train/订单1804409_51_7087612.jpg b/datasets/handleImage/train/订单1804409_51_7087612.jpg new file mode 100644 index 0000000..a65b9bc --- /dev/null +++ b/datasets/handleImage/train/订单1804409_51_7087612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ffacf15c6c8755e29258c64914c778eac8dbfdbd787b59359076a4745f444d +size 131438 diff --git a/datasets/handleImage/train/订单1804410_51_7087567.jpg b/datasets/handleImage/train/订单1804410_51_7087567.jpg new file mode 100644 index 0000000..3eb6db8 --- /dev/null +++ b/datasets/handleImage/train/订单1804410_51_7087567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5588a37231982a20b0e2f47a56f45a5dd20438d575c8e1e682067e68446729 +size 142340 diff --git a/datasets/handleImage/train/订单1804415_51_7087728.jpg b/datasets/handleImage/train/订单1804415_51_7087728.jpg new file mode 100644 index 0000000..38935f1 --- /dev/null +++ b/datasets/handleImage/train/订单1804415_51_7087728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc72e7fb13bb4a48ec828d0baf0d608744979801ab84ed2d8972e0eba7e8c37 +size 105791 diff --git a/datasets/handleImage/train/订单1804416_51_7087651.jpg b/datasets/handleImage/train/订单1804416_51_7087651.jpg new file mode 100644 index 0000000..d851572 --- /dev/null +++ b/datasets/handleImage/train/订单1804416_51_7087651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee727a181d0732a4e068641e3fa215c8a61a28b92aad72b45692ff5e1aa093e7 +size 261979 diff --git a/datasets/handleImage/train/订单1804417_51_7087688.jpg b/datasets/handleImage/train/订单1804417_51_7087688.jpg new file mode 100644 index 0000000..e86d74e --- /dev/null +++ b/datasets/handleImage/train/订单1804417_51_7087688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cb702f903781b444921f19fda41d0e30c57974b62206a2be813af7966df2d0 +size 161896 diff --git a/datasets/handleImage/train/订单1805100_51_7094084.jpg b/datasets/handleImage/train/订单1805100_51_7094084.jpg new file mode 100644 index 0000000..b16d4ff --- /dev/null +++ b/datasets/handleImage/train/订单1805100_51_7094084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f644848c4ae16f5f9649feb895bf5aa3dcec55ff1da24132400f116e3889f5 +size 155151 diff --git a/datasets/handleImage/train/订单1805101_51_7094057.jpg b/datasets/handleImage/train/订单1805101_51_7094057.jpg new file mode 100644 index 0000000..937547c --- /dev/null +++ b/datasets/handleImage/train/订单1805101_51_7094057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f7117ab71b9ec19535a816a54883eab2dcbf01ebb6c74b929cc165f6f26927 +size 120380 diff --git a/datasets/handleImage/train/订单1805102_51_7094011.jpg b/datasets/handleImage/train/订单1805102_51_7094011.jpg new file mode 100644 index 0000000..35fc056 --- /dev/null +++ b/datasets/handleImage/train/订单1805102_51_7094011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71895927d2b0c5328f340470de4bca02bf3f36ceb9eebfc6696f00bc2b63d296 +size 158690 diff --git a/datasets/handleImage/train/订单1805103_51_7093987.jpg b/datasets/handleImage/train/订单1805103_51_7093987.jpg new file mode 100644 index 0000000..ac56e93 --- /dev/null +++ b/datasets/handleImage/train/订单1805103_51_7093987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfec399d1795f560641c5c33e346d671b03de45ea372e66838723435737c742 +size 108935 diff --git a/datasets/handleImage/train/订单1805108_51_7094036.jpg b/datasets/handleImage/train/订单1805108_51_7094036.jpg new file mode 100644 index 0000000..03ee29b --- /dev/null +++ b/datasets/handleImage/train/订单1805108_51_7094036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fce497cd3f7210de9019c1134834310bec4609fb5bb1f1276f3b0c05d66439 +size 112115 diff --git a/datasets/handleImage/train/订单1805109_51_7094037.jpg b/datasets/handleImage/train/订单1805109_51_7094037.jpg new file mode 100644 index 0000000..95a8aa4 --- /dev/null +++ b/datasets/handleImage/train/订单1805109_51_7094037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76bf9dd4d1f213e08b681ab657362185cd02f26a4b0bc4e441f9d4e3ca0755d +size 144917 diff --git a/datasets/handleImage/train/订单1805115_51_7094131.jpg b/datasets/handleImage/train/订单1805115_51_7094131.jpg new file mode 100644 index 0000000..6038d88 --- /dev/null +++ b/datasets/handleImage/train/订单1805115_51_7094131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a246aab9cac9c92235a2cb0a96f518be3ac99e19e7e624e0e48f714925789ad4 +size 69502 diff --git a/datasets/handleImage/train/订单1805119_51_7094223.jpg b/datasets/handleImage/train/订单1805119_51_7094223.jpg new file mode 100644 index 0000000..14fb49c --- /dev/null +++ b/datasets/handleImage/train/订单1805119_51_7094223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526e48752650889d28adf9f006a75f59d03974cc6d6ca5bacb25afc9685bf293 +size 884566 diff --git a/datasets/handleImage/train/订单1805120_51_7094214.jpg b/datasets/handleImage/train/订单1805120_51_7094214.jpg new file mode 100644 index 0000000..8405a9e --- /dev/null +++ b/datasets/handleImage/train/订单1805120_51_7094214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a093b97f5b0fb9b629cc61d52b812c67b96a5bd94f20c54e61797addd3f58a51 +size 148651 diff --git a/datasets/handleImage/train/订单1805123_51_7094124.jpg b/datasets/handleImage/train/订单1805123_51_7094124.jpg new file mode 100644 index 0000000..a77b578 --- /dev/null +++ b/datasets/handleImage/train/订单1805123_51_7094124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d48ca4bf78630a33599c1e05989358c1c22b55e98f20cd24bce09a7a7da01ed +size 536872 diff --git a/datasets/handleImage/train/订单1805124_51_7094151.jpg b/datasets/handleImage/train/订单1805124_51_7094151.jpg new file mode 100644 index 0000000..96b703a --- /dev/null +++ b/datasets/handleImage/train/订单1805124_51_7094151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed80d07e44f30f3ad0f523b2300acfc4b10af93cee8602cc595565cbcf72370 +size 144153 diff --git a/datasets/handleImage/train/订单1805128_51_7094217.jpg b/datasets/handleImage/train/订单1805128_51_7094217.jpg new file mode 100644 index 0000000..ffd2067 --- /dev/null +++ b/datasets/handleImage/train/订单1805128_51_7094217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832803e676702fc75c815afa53539e74930418c38fa356c532e1643a6708ca6a +size 356274 diff --git a/datasets/handleImage/train/订单1805129_51_7094233.jpg b/datasets/handleImage/train/订单1805129_51_7094233.jpg new file mode 100644 index 0000000..3c62f69 --- /dev/null +++ b/datasets/handleImage/train/订单1805129_51_7094233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23715bf9cd13c0b53bfb0bab22114401000f9291b64fc591b50210afdbf2ec8 +size 109958 diff --git a/datasets/handleImage/train/订单1805131_51_7094253.jpg b/datasets/handleImage/train/订单1805131_51_7094253.jpg new file mode 100644 index 0000000..dc0f6cc --- /dev/null +++ b/datasets/handleImage/train/订单1805131_51_7094253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e477c5c20e611fd73ff8b9e1f3e6f8402212214636335b395150adfa46cf1815 +size 138314 diff --git a/datasets/handleImage/train/订单1805134_51_7094282.jpg b/datasets/handleImage/train/订单1805134_51_7094282.jpg new file mode 100644 index 0000000..70c6932 --- /dev/null +++ b/datasets/handleImage/train/订单1805134_51_7094282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e17c5cd70806d194493b1927b5b7abad205e2a034919e96d3b2ce9cacb7e658 +size 95600 diff --git a/datasets/handleImage/train/订单1805137_51_7094244.jpg b/datasets/handleImage/train/订单1805137_51_7094244.jpg new file mode 100644 index 0000000..34a341c --- /dev/null +++ b/datasets/handleImage/train/订单1805137_51_7094244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab18c90f0d31cf080551964706d5327082096b094d6ea00b319356ec4f170965 +size 392835 diff --git a/datasets/handleImage/train/订单1805141_51_7094347.jpg b/datasets/handleImage/train/订单1805141_51_7094347.jpg new file mode 100644 index 0000000..0fff9d7 --- /dev/null +++ b/datasets/handleImage/train/订单1805141_51_7094347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc4ea57bd80c3130c7f0c3e895cf938be2b1dbd014c959d1428d072e1b145ac +size 129754 diff --git a/datasets/handleImage/train/订单1805142_51_7094266.jpg b/datasets/handleImage/train/订单1805142_51_7094266.jpg new file mode 100644 index 0000000..fa0f773 --- /dev/null +++ b/datasets/handleImage/train/订单1805142_51_7094266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908f2df8772e09a8ca7e904411f15efddcc91b636f572ba5ab72c9f035287a40 +size 437996 diff --git a/datasets/handleImage/train/订单1805143_51_7094313.jpg b/datasets/handleImage/train/订单1805143_51_7094313.jpg new file mode 100644 index 0000000..67eb50c --- /dev/null +++ b/datasets/handleImage/train/订单1805143_51_7094313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc76d70a7a077612bb30e8a405afdd5a4ed47c578ad3374f1d0ac6ceca1a101 +size 413152 diff --git a/datasets/handleImage/train/订单1805149_51_7094351.jpg b/datasets/handleImage/train/订单1805149_51_7094351.jpg new file mode 100644 index 0000000..868cdae --- /dev/null +++ b/datasets/handleImage/train/订单1805149_51_7094351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715eed6c548f687385db8958ef852e195659bb4c8955a66d69fdcbd2b0994d40 +size 238140 diff --git a/datasets/handleImage/train/订单1805151_51_7094416.jpg b/datasets/handleImage/train/订单1805151_51_7094416.jpg new file mode 100644 index 0000000..d6bb5ee --- /dev/null +++ b/datasets/handleImage/train/订单1805151_51_7094416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188b7f54ee49cd149ba3e97c4f07ce1de44771d3f27417884b982ee651fe2609 +size 555045 diff --git a/datasets/handleImage/train/订单1805155_51_7094474.jpg b/datasets/handleImage/train/订单1805155_51_7094474.jpg new file mode 100644 index 0000000..4e3121f --- /dev/null +++ b/datasets/handleImage/train/订单1805155_51_7094474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7aa42d72a08e53ee4de8ce9f44da2700365063b6b7ebf0ef487c76c94083f2 +size 362447 diff --git a/datasets/handleImage/train/订单1805158_51_7094455.jpg b/datasets/handleImage/train/订单1805158_51_7094455.jpg new file mode 100644 index 0000000..4120c94 --- /dev/null +++ b/datasets/handleImage/train/订单1805158_51_7094455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dccda07d7f3b55d6538adc9b16c6150368e5e7d5d48f1aebc416efa66e8ba9 +size 137522 diff --git a/datasets/handleImage/train/订单1805164_51_7094561.jpg b/datasets/handleImage/train/订单1805164_51_7094561.jpg new file mode 100644 index 0000000..e677591 --- /dev/null +++ b/datasets/handleImage/train/订单1805164_51_7094561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fe26a7daa40047b603d2b9cb50ad4e212fd2ac9ac206f1b6ec679e91c5e4da +size 147953 diff --git a/datasets/handleImage/train/订单1805167_51_7094525.jpg b/datasets/handleImage/train/订单1805167_51_7094525.jpg new file mode 100644 index 0000000..4397410 --- /dev/null +++ b/datasets/handleImage/train/订单1805167_51_7094525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b883057c780463e4fb3dcc89ba2c1cfde8adccadb0c59ce8ca763968a6676ae4 +size 625668 diff --git a/datasets/handleImage/train/订单1805168_51_7094620.jpg b/datasets/handleImage/train/订单1805168_51_7094620.jpg new file mode 100644 index 0000000..b51cd42 --- /dev/null +++ b/datasets/handleImage/train/订单1805168_51_7094620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2137571ed89b8777891a97607efbcba6f1d1d08d7a685a614ceb9afdcd3434f8 +size 155269 diff --git a/datasets/handleImage/train/订单1805170_51_7094495.jpg b/datasets/handleImage/train/订单1805170_51_7094495.jpg new file mode 100644 index 0000000..3166a9f --- /dev/null +++ b/datasets/handleImage/train/订单1805170_51_7094495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58013eb1251e2cb3616d10108f11c7ac00902548519fff8f5e7012f7f451a22 +size 135902 diff --git a/datasets/handleImage/train/订单1805172_51_7094657.jpg b/datasets/handleImage/train/订单1805172_51_7094657.jpg new file mode 100644 index 0000000..19e0bee --- /dev/null +++ b/datasets/handleImage/train/订单1805172_51_7094657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bd1f09e25ebca5326054bbb94f447adaca9572bf5d387ebbf7dc461f8149c2 +size 553900 diff --git a/datasets/handleImage/train/订单1805175_51_7094553.jpg b/datasets/handleImage/train/订单1805175_51_7094553.jpg new file mode 100644 index 0000000..730f513 --- /dev/null +++ b/datasets/handleImage/train/订单1805175_51_7094553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ad372782cee5f8e1953198e3bae050dbec832e49de3b52b625b6ebfa984c76 +size 107403 diff --git a/datasets/handleImage/train/订单1805177_51_7095468.jpg b/datasets/handleImage/train/订单1805177_51_7095468.jpg new file mode 100644 index 0000000..16f6ab6 --- /dev/null +++ b/datasets/handleImage/train/订单1805177_51_7095468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9325e733e056caf766753d9b156074568b963064acc382a47f4d2fe450b2307a +size 144257 diff --git a/datasets/handleImage/train/订单1805181_51_7094604.jpg b/datasets/handleImage/train/订单1805181_51_7094604.jpg new file mode 100644 index 0000000..250adeb --- /dev/null +++ b/datasets/handleImage/train/订单1805181_51_7094604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92adf987e192829899861a14334dd2fbb83f13dfd924533ad3410a9c65fc9e5d +size 367265 diff --git a/datasets/handleImage/train/订单1805182_51_7094646.jpg b/datasets/handleImage/train/订单1805182_51_7094646.jpg new file mode 100644 index 0000000..fc5610f --- /dev/null +++ b/datasets/handleImage/train/订单1805182_51_7094646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1829c056dc50e2daa487c2b528410dafbe3d2a5b65e992c7514ef4839cf35bbe +size 100677 diff --git a/datasets/handleImage/train/订单1805187_51_7094690.jpg b/datasets/handleImage/train/订单1805187_51_7094690.jpg new file mode 100644 index 0000000..75e7aca --- /dev/null +++ b/datasets/handleImage/train/订单1805187_51_7094690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9dd088a7770d6fb424fe92902312a95d5e11d506c6830a586b508a9269b36c +size 85646 diff --git a/datasets/handleImage/train/订单1805191_51_7094738.jpg b/datasets/handleImage/train/订单1805191_51_7094738.jpg new file mode 100644 index 0000000..bfb8871 --- /dev/null +++ b/datasets/handleImage/train/订单1805191_51_7094738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68d2f68d5e30608d4738cf454d614bc80e17fa6b89c01f1088f734551cc36cb +size 140844 diff --git a/datasets/handleImage/train/订单1805193_51_7094789.jpg b/datasets/handleImage/train/订单1805193_51_7094789.jpg new file mode 100644 index 0000000..1c33148 --- /dev/null +++ b/datasets/handleImage/train/订单1805193_51_7094789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b8c5a564350004f6a81070e8aa86850eefa7f2c64e619d9b89740c106040ad +size 165303 diff --git a/datasets/handleImage/train/订单1805202_51_7094824.jpg b/datasets/handleImage/train/订单1805202_51_7094824.jpg new file mode 100644 index 0000000..dbcbe36 --- /dev/null +++ b/datasets/handleImage/train/订单1805202_51_7094824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67b26511efedda6351be9aa6f792a056001f528d3ce5eb77db26612a52354a6 +size 130324 diff --git a/datasets/handleImage/train/订单1805204_51_7094885.jpg b/datasets/handleImage/train/订单1805204_51_7094885.jpg new file mode 100644 index 0000000..db0a96d --- /dev/null +++ b/datasets/handleImage/train/订单1805204_51_7094885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d239ca654731889a53b22f122c88eca2e301ed72eac833e0b1154c29884f5ba4 +size 158665 diff --git a/datasets/handleImage/train/订单1805205_51_7094952.jpg b/datasets/handleImage/train/订单1805205_51_7094952.jpg new file mode 100644 index 0000000..c34866e --- /dev/null +++ b/datasets/handleImage/train/订单1805205_51_7094952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200775450e3342b04d5428e42ffa8a2d0587edce4b05ae5acb4f679de91f205f +size 98620 diff --git a/datasets/handleImage/train/订单1805207_51_7094908.jpg b/datasets/handleImage/train/订单1805207_51_7094908.jpg new file mode 100644 index 0000000..56f8af6 --- /dev/null +++ b/datasets/handleImage/train/订单1805207_51_7094908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263f69faaa6fcfd66fb5148b9fd5e4217a980e5e0868f8ef2be374ecfeef4de7 +size 141708 diff --git a/datasets/handleImage/train/订单1805208_51_7094957.jpg b/datasets/handleImage/train/订单1805208_51_7094957.jpg new file mode 100644 index 0000000..f69f9f4 --- /dev/null +++ b/datasets/handleImage/train/订单1805208_51_7094957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0621fd3842c1c8157c7fb815189b48b47c54d461c2b979b8d0759fe6d21e6cec +size 150637 diff --git a/datasets/handleImage/train/订单1805212_51_7094977.jpg b/datasets/handleImage/train/订单1805212_51_7094977.jpg new file mode 100644 index 0000000..5c89bb2 --- /dev/null +++ b/datasets/handleImage/train/订单1805212_51_7094977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788e3601101cde1ead2acb7b57c6539965489ebd4fe3e7f7ec2aefc520801d5c +size 564237 diff --git a/datasets/handleImage/train/订单1805213_51_7094911.jpg b/datasets/handleImage/train/订单1805213_51_7094911.jpg new file mode 100644 index 0000000..5b35872 --- /dev/null +++ b/datasets/handleImage/train/订单1805213_51_7094911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501b25e4edce36142b1767e1f2109550f8e79589175e55557a84fd7cc6a59e67 +size 101039 diff --git a/datasets/handleImage/train/订单1805217_51_7095036.jpg b/datasets/handleImage/train/订单1805217_51_7095036.jpg new file mode 100644 index 0000000..0351660 --- /dev/null +++ b/datasets/handleImage/train/订单1805217_51_7095036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2f68333ba996c2eb1024e53322ef8227387f98dfdab15617fe67419c3df67a +size 464997 diff --git a/datasets/handleImage/train/订单1805223_51_7095092.jpg b/datasets/handleImage/train/订单1805223_51_7095092.jpg new file mode 100644 index 0000000..9a49a9f --- /dev/null +++ b/datasets/handleImage/train/订单1805223_51_7095092.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5fed476418de0d5cb8a8bfa683c1442a2ac842adb5af0ebbb1ea8200e3e1d0 +size 160988 diff --git a/datasets/handleImage/train/订单1805233_51_7095227.jpg b/datasets/handleImage/train/订单1805233_51_7095227.jpg new file mode 100644 index 0000000..b4539d1 --- /dev/null +++ b/datasets/handleImage/train/订单1805233_51_7095227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5ff840d3ee3dbcd5e669d2bf376e83c38dae33422cee4e29dcfadc841a9d40 +size 176116 diff --git a/datasets/handleImage/train/订单1805234_51_7095307.jpg b/datasets/handleImage/train/订单1805234_51_7095307.jpg new file mode 100644 index 0000000..9b401d7 --- /dev/null +++ b/datasets/handleImage/train/订单1805234_51_7095307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a76d2a4138132d27b8f870fad34c24a5994f7c24a2aec0b11b6e431b04155d +size 147663 diff --git a/datasets/handleImage/train/订单1805236_51_7095224.jpg b/datasets/handleImage/train/订单1805236_51_7095224.jpg new file mode 100644 index 0000000..8ca3589 --- /dev/null +++ b/datasets/handleImage/train/订单1805236_51_7095224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fc76a757628ca2b22b859fd166497089cefe0e1eea7810a5146606b84861cc +size 146022 diff --git a/datasets/handleImage/train/订单1805239_51_7095196.jpg b/datasets/handleImage/train/订单1805239_51_7095196.jpg new file mode 100644 index 0000000..b61046d --- /dev/null +++ b/datasets/handleImage/train/订单1805239_51_7095196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd502dac1f0c5852ab7956755883a854f347cf026c96bd8d52df49948c9e13ef +size 145995 diff --git a/datasets/handleImage/train/订单1805247_51_7095293.jpg b/datasets/handleImage/train/订单1805247_51_7095293.jpg new file mode 100644 index 0000000..03fd6f6 --- /dev/null +++ b/datasets/handleImage/train/订单1805247_51_7095293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3f2c087ac0e42ec243c0007b7cd5cb1d9a48600b2d9fca4959d00407acabf7 +size 94910 diff --git a/datasets/handleImage/train/订单1805252_51_7095412.jpg b/datasets/handleImage/train/订单1805252_51_7095412.jpg new file mode 100644 index 0000000..60e5916 --- /dev/null +++ b/datasets/handleImage/train/订单1805252_51_7095412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e9bfba713a8612c531d5a86cf0f1c8b04a38d04e3efb34fa8947549cb8521 +size 102296 diff --git a/datasets/handleImage/train/订单1805256_51_7095403.jpg b/datasets/handleImage/train/订单1805256_51_7095403.jpg new file mode 100644 index 0000000..3f8c04c --- /dev/null +++ b/datasets/handleImage/train/订单1805256_51_7095403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0a4b20e89be1f08339672cb1e9b1cfa6afeae44d3a6d2b02dd043c9c1dbcaf +size 629893 diff --git a/datasets/handleImage/train/订单1805261_51_7095495.jpg b/datasets/handleImage/train/订单1805261_51_7095495.jpg new file mode 100644 index 0000000..ce38a9a --- /dev/null +++ b/datasets/handleImage/train/订单1805261_51_7095495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2701076f22acf3ec7cbcdc3814e469905eeb2c44fcf17a87f6c98d8c9875b3e5 +size 202338 diff --git a/datasets/handleImage/train/订单1805262_51_7095487.jpg b/datasets/handleImage/train/订单1805262_51_7095487.jpg new file mode 100644 index 0000000..a1bf90d --- /dev/null +++ b/datasets/handleImage/train/订单1805262_51_7095487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f163e0201ba1376ea0f52daa78bc192eabc20cdcee8c64b38f60aba91b83c36d +size 114528 diff --git a/datasets/handleImage/train/订单1805265_51_7095449.jpg b/datasets/handleImage/train/订单1805265_51_7095449.jpg new file mode 100644 index 0000000..97bc8e5 --- /dev/null +++ b/datasets/handleImage/train/订单1805265_51_7095449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d58e169f417fab2c95bbf94483ff74dbbf2d3a7e8f54e72819d4d33b49fc5a5 +size 230113 diff --git a/datasets/handleImage/train/订单1805271_51_7095498.jpg b/datasets/handleImage/train/订单1805271_51_7095498.jpg new file mode 100644 index 0000000..64780d8 --- /dev/null +++ b/datasets/handleImage/train/订单1805271_51_7095498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a10fd41b1dff985dae574ede075cea107dacefb2d407c019ba1ff5a9211e0e1 +size 163541 diff --git a/datasets/handleImage/train/订单1805274_51_7095554.jpg b/datasets/handleImage/train/订单1805274_51_7095554.jpg new file mode 100644 index 0000000..de0478d --- /dev/null +++ b/datasets/handleImage/train/订单1805274_51_7095554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57617cdc257b1fc4040adf3a642e6760fb38695828af2afb8b0a88c3825dec07 +size 98903 diff --git a/datasets/handleImage/train/订单1805275_51_7095581.jpg b/datasets/handleImage/train/订单1805275_51_7095581.jpg new file mode 100644 index 0000000..d1f7823 --- /dev/null +++ b/datasets/handleImage/train/订单1805275_51_7095581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf5d0c49c0e9e0dfcf9bb22cbefa5132f481aaebc26bc02ae1261b3b9263411 +size 435196 diff --git a/datasets/handleImage/train/订单1805276_51_7095550.jpg b/datasets/handleImage/train/订单1805276_51_7095550.jpg new file mode 100644 index 0000000..0a2b869 --- /dev/null +++ b/datasets/handleImage/train/订单1805276_51_7095550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173da3f7f90365deb941c33cbc27a339e214f2829774ec65c4ee70007502c1ae +size 156285 diff --git a/datasets/handleImage/train/订单1805278_51_7095545.jpg b/datasets/handleImage/train/订单1805278_51_7095545.jpg new file mode 100644 index 0000000..dca5dc0 --- /dev/null +++ b/datasets/handleImage/train/订单1805278_51_7095545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8113c0ae0dd21f8551af8075060029974427d51a1e9f6a20ce8db85b53caf3 +size 148489 diff --git a/datasets/handleImage/train/订单1805279_51_7095633.jpg b/datasets/handleImage/train/订单1805279_51_7095633.jpg new file mode 100644 index 0000000..14fe4cc --- /dev/null +++ b/datasets/handleImage/train/订单1805279_51_7095633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca81104289277d8d8399cac4a385aeb5235d4e460123fe7ec58ff2a649c508e +size 113609 diff --git a/datasets/handleImage/train/订单1805280_51_7095784.jpg b/datasets/handleImage/train/订单1805280_51_7095784.jpg new file mode 100644 index 0000000..5e765ba --- /dev/null +++ b/datasets/handleImage/train/订单1805280_51_7095784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4621d5365850bb66990796ff499524087d75172e2b964d4c8ef14633cd9096 +size 148288 diff --git a/datasets/handleImage/train/订单1805281_51_7095710.jpg b/datasets/handleImage/train/订单1805281_51_7095710.jpg new file mode 100644 index 0000000..0792f2d --- /dev/null +++ b/datasets/handleImage/train/订单1805281_51_7095710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061a3893f029b5047c84f25087d00c193a30550edadf5b382284f23973309b3b +size 492913 diff --git a/datasets/handleImage/train/订单1805282_51_7095637.jpg b/datasets/handleImage/train/订单1805282_51_7095637.jpg new file mode 100644 index 0000000..6fae890 --- /dev/null +++ b/datasets/handleImage/train/订单1805282_51_7095637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd7e48246e4aeed83bf0cb176864eef8253798d667a37ddffcdce7808d52eb9 +size 115676 diff --git a/datasets/handleImage/train/订单1805286_51_7095666.jpg b/datasets/handleImage/train/订单1805286_51_7095666.jpg new file mode 100644 index 0000000..17197a0 --- /dev/null +++ b/datasets/handleImage/train/订单1805286_51_7095666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecaaa988758c13ed07049d9987e6d2cd0f756fa94357b21a9c19db601041381a +size 498389 diff --git a/datasets/handleImage/train/订单1805288_51_7095735.jpg b/datasets/handleImage/train/订单1805288_51_7095735.jpg new file mode 100644 index 0000000..400ccd1 --- /dev/null +++ b/datasets/handleImage/train/订单1805288_51_7095735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ae5bd49ec4d2817bdc654dff058dd4faad9c70e4ae0c322a8d3710a5d7e356 +size 119790 diff --git a/datasets/handleImage/train/订单1805291_51_7095845.jpg b/datasets/handleImage/train/订单1805291_51_7095845.jpg new file mode 100644 index 0000000..c04b2a5 --- /dev/null +++ b/datasets/handleImage/train/订单1805291_51_7095845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6f63802271374f684d1e927252a0613b1f17b9164ce47efb913090697f9ebe +size 121149 diff --git a/datasets/handleImage/train/订单1805294_51_7095817.jpg b/datasets/handleImage/train/订单1805294_51_7095817.jpg new file mode 100644 index 0000000..7dab018 --- /dev/null +++ b/datasets/handleImage/train/订单1805294_51_7095817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95401948f9a9ce547f9788b3cd0190f509a3214472b8fb385d5bf2d39dcb93a1 +size 616558 diff --git a/datasets/handleImage/train/订单1805296_51_7095785.jpg b/datasets/handleImage/train/订单1805296_51_7095785.jpg new file mode 100644 index 0000000..ccc168a --- /dev/null +++ b/datasets/handleImage/train/订单1805296_51_7095785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e75b4c7dd7d6465c50387e72d4cab636c754ecb4f5021aaf764f96693c0b8f +size 157296 diff --git a/datasets/handleImage/train/订单1805302_51_7095822.jpg b/datasets/handleImage/train/订单1805302_51_7095822.jpg new file mode 100644 index 0000000..d1fe583 --- /dev/null +++ b/datasets/handleImage/train/订单1805302_51_7095822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab48551d0c5e62439810b3bf3b6f8501f3684c89641b48237c0b4c4cc9eaaa5 +size 196429 diff --git a/datasets/handleImage/train/订单1805310_51_7095913.jpg b/datasets/handleImage/train/订单1805310_51_7095913.jpg new file mode 100644 index 0000000..c47592f --- /dev/null +++ b/datasets/handleImage/train/订单1805310_51_7095913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1159700ab11bc3c5f0abbd368511ffd5d238217b6914a050c476de0777f25f4d +size 128507 diff --git a/datasets/handleImage/train/订单1805311_51_7095915.jpg b/datasets/handleImage/train/订单1805311_51_7095915.jpg new file mode 100644 index 0000000..e197af9 --- /dev/null +++ b/datasets/handleImage/train/订单1805311_51_7095915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d872f340e6adae26d28ddf342c9caa1b3d3b4fabd16754945b8b85626326fc5 +size 139365 diff --git a/datasets/handleImage/train/订单1805314_51_7096010.jpg b/datasets/handleImage/train/订单1805314_51_7096010.jpg new file mode 100644 index 0000000..f78671c --- /dev/null +++ b/datasets/handleImage/train/订单1805314_51_7096010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b8f0578410b4674bcd2569ab9b6a1919ca06e0f31f3fb4acbe22d156fbb025 +size 125876 diff --git a/datasets/handleImage/train/订单1805315_51_7095969.jpg b/datasets/handleImage/train/订单1805315_51_7095969.jpg new file mode 100644 index 0000000..de424e2 --- /dev/null +++ b/datasets/handleImage/train/订单1805315_51_7095969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f23bdf32f77e3d906bcb24b4bc0bfc4e5a1cfde411043a33e39d707797ae4 +size 159337 diff --git a/datasets/handleImage/train/订单1805316_51_7096200.jpg b/datasets/handleImage/train/订单1805316_51_7096200.jpg new file mode 100644 index 0000000..e01c7ad --- /dev/null +++ b/datasets/handleImage/train/订单1805316_51_7096200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d6ab7666b0ccf72af3cf4271b072131c035f6e4951706b39eba6b525b13cea +size 75373 diff --git a/datasets/handleImage/train/订单1805323_51_7096066.jpg b/datasets/handleImage/train/订单1805323_51_7096066.jpg new file mode 100644 index 0000000..5ae33fa --- /dev/null +++ b/datasets/handleImage/train/订单1805323_51_7096066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17da0f184e6ceedbf6aa33c4f3fd0be0dbf3a0ec141106db5d45a903e639bc93 +size 71737 diff --git a/datasets/handleImage/train/订单1805326_51_7096106.jpg b/datasets/handleImage/train/订单1805326_51_7096106.jpg new file mode 100644 index 0000000..cb35bb6 --- /dev/null +++ b/datasets/handleImage/train/订单1805326_51_7096106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af96412377e93418ee2d1d5070a6027d38c8e6925bd4c0f76aeea6caa0a4217 +size 84650 diff --git a/datasets/handleImage/train/订单1805334_51_7096252.jpg b/datasets/handleImage/train/订单1805334_51_7096252.jpg new file mode 100644 index 0000000..01073f9 --- /dev/null +++ b/datasets/handleImage/train/订单1805334_51_7096252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9b5dce488004053f074500871bbf57b123e97422082a10acce26841d0809e3 +size 84602 diff --git a/datasets/handleImage/train/订单1805335_51_7096152.jpg b/datasets/handleImage/train/订单1805335_51_7096152.jpg new file mode 100644 index 0000000..95a35c5 --- /dev/null +++ b/datasets/handleImage/train/订单1805335_51_7096152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7be22c5065b9d4b7de2a7534a27a3ee5160df59efcf601883b6bc7cb22f65a3 +size 110497 diff --git a/datasets/handleImage/train/订单1805337_51_7097483.jpg b/datasets/handleImage/train/订单1805337_51_7097483.jpg new file mode 100644 index 0000000..e4e741d --- /dev/null +++ b/datasets/handleImage/train/订单1805337_51_7097483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1a2c4ea3b4545c69e8fdc3447079484f661ae86d8cf63de7c186cda2db4473 +size 376268 diff --git a/datasets/handleImage/train/订单1805340_51_7096134.jpg b/datasets/handleImage/train/订单1805340_51_7096134.jpg new file mode 100644 index 0000000..0305a46 --- /dev/null +++ b/datasets/handleImage/train/订单1805340_51_7096134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c1cb6ce5c2ef02066c4364d3f4a93bd31eb576631a2ddbfe4ec750275ef8c4 +size 123936 diff --git a/datasets/handleImage/train/订单1805341_51_7096228.jpg b/datasets/handleImage/train/订单1805341_51_7096228.jpg new file mode 100644 index 0000000..4972b87 --- /dev/null +++ b/datasets/handleImage/train/订单1805341_51_7096228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153e9ae6d881e720eeb9ecdcbe1abe2d8b77ffd6141ab95457b1e91afa12e467 +size 177153 diff --git a/datasets/handleImage/train/订单1805343_51_7096175.jpg b/datasets/handleImage/train/订单1805343_51_7096175.jpg new file mode 100644 index 0000000..c6cff9a --- /dev/null +++ b/datasets/handleImage/train/订单1805343_51_7096175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dec85685c09f1ae299381f312d0010d76db3d66d5501d4c458b20036f350202 +size 239034 diff --git a/datasets/handleImage/train/订单1805344_51_7096452.jpg b/datasets/handleImage/train/订单1805344_51_7096452.jpg new file mode 100644 index 0000000..6c30e10 --- /dev/null +++ b/datasets/handleImage/train/订单1805344_51_7096452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86bbd87aa759c8b7d3db1f785803f780ed6e17025c5828233452f06f4997cb4 +size 490661 diff --git a/datasets/handleImage/train/订单1805345_51_7096249.jpg b/datasets/handleImage/train/订单1805345_51_7096249.jpg new file mode 100644 index 0000000..8f27094 --- /dev/null +++ b/datasets/handleImage/train/订单1805345_51_7096249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2466cb32ca12acc928308ed507229048366b8f29c977b59e51701669e698fb +size 87706 diff --git a/datasets/handleImage/train/订单1805348_51_7096292.jpg b/datasets/handleImage/train/订单1805348_51_7096292.jpg new file mode 100644 index 0000000..3985b51 --- /dev/null +++ b/datasets/handleImage/train/订单1805348_51_7096292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cebf7d14eb6310753c50ec546ea0a0a45ee22fc78ed6404db5e07c62bf605f +size 98360 diff --git a/datasets/handleImage/train/订单1805350_51_7096333.jpg b/datasets/handleImage/train/订单1805350_51_7096333.jpg new file mode 100644 index 0000000..32e5a5c --- /dev/null +++ b/datasets/handleImage/train/订单1805350_51_7096333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4021f7f19acdc05553e0f0c37e1ffb90b5ef95c381088f1bf55cc1d7d846798b +size 121237 diff --git a/datasets/handleImage/train/订单1805351_51_7096392.jpg b/datasets/handleImage/train/订单1805351_51_7096392.jpg new file mode 100644 index 0000000..3e92c28 --- /dev/null +++ b/datasets/handleImage/train/订单1805351_51_7096392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f684b6768f06e1bf4f0463218f308a3629e2fe36069f5110e48b5ed4a9e0e62 +size 366828 diff --git a/datasets/handleImage/train/订单1805355_51_7096586.jpg b/datasets/handleImage/train/订单1805355_51_7096586.jpg new file mode 100644 index 0000000..b744baa --- /dev/null +++ b/datasets/handleImage/train/订单1805355_51_7096586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6eefeee08abba298f1482872cbb8bcbd99ae1d4f16653e0e8a6e70e0ece0058 +size 158242 diff --git a/datasets/handleImage/train/订单1805358_51_7096443.jpg b/datasets/handleImage/train/订单1805358_51_7096443.jpg new file mode 100644 index 0000000..2044b7e --- /dev/null +++ b/datasets/handleImage/train/订单1805358_51_7096443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22db1b3767533a0df6f8a7ea463e46758b76519550a060562a082cad92e15a5a +size 156026 diff --git a/datasets/handleImage/train/订单1805362_51_7096361.jpg b/datasets/handleImage/train/订单1805362_51_7096361.jpg new file mode 100644 index 0000000..a3aab46 --- /dev/null +++ b/datasets/handleImage/train/订单1805362_51_7096361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d7e37967bcaf24edeecb0f896dfde7710ce4375f1c765f564e74b95938c2102 +size 389926 diff --git a/datasets/handleImage/train/订单1805363_51_7096360.jpg b/datasets/handleImage/train/订单1805363_51_7096360.jpg new file mode 100644 index 0000000..ad94a70 --- /dev/null +++ b/datasets/handleImage/train/订单1805363_51_7096360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2475d095fe0f8315e248e0a24ff6f43dfdeb54eb5f8f51eaa14869755978f84 +size 57765 diff --git a/datasets/handleImage/train/订单1805367_51_7096539.jpg b/datasets/handleImage/train/订单1805367_51_7096539.jpg new file mode 100644 index 0000000..b325c1a --- /dev/null +++ b/datasets/handleImage/train/订单1805367_51_7096539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d92e0b790a44b3377d073b2bb1e8939a27fc54c3c19b655cbc63fb53d0b3d17 +size 112129 diff --git a/datasets/handleImage/train/订单1805370_51_7096533.jpg b/datasets/handleImage/train/订单1805370_51_7096533.jpg new file mode 100644 index 0000000..91717c7 --- /dev/null +++ b/datasets/handleImage/train/订单1805370_51_7096533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de58771df36ac3cce3b6dbc1166d11ba50257443f93f74c7f3ca95ecd774699 +size 139984 diff --git a/datasets/handleImage/train/订单1805373_51_7096473.jpg b/datasets/handleImage/train/订单1805373_51_7096473.jpg new file mode 100644 index 0000000..21f5b94 --- /dev/null +++ b/datasets/handleImage/train/订单1805373_51_7096473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05bb2faf3b603dbd7a1a4c228cfeb014edf9ee01bfe8915b33d031054c1a79d4 +size 119179 diff --git a/datasets/handleImage/train/订单1805375_51_7096482.jpg b/datasets/handleImage/train/订单1805375_51_7096482.jpg new file mode 100644 index 0000000..5e9d170 --- /dev/null +++ b/datasets/handleImage/train/订单1805375_51_7096482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfda4aaf6786a67dfb68dc7d987b393b7cd59a33ad35ecb267c30a2acf4fe87d +size 102971 diff --git a/datasets/handleImage/train/订单1805376_51_7096538.jpg b/datasets/handleImage/train/订单1805376_51_7096538.jpg new file mode 100644 index 0000000..edfc1d1 --- /dev/null +++ b/datasets/handleImage/train/订单1805376_51_7096538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230cc4c270f346816b5fdda3d7b57ad8d35a3c9a009289f666626f17728f9001 +size 146076 diff --git a/datasets/handleImage/train/订单1805377_51_7096582.jpg b/datasets/handleImage/train/订单1805377_51_7096582.jpg new file mode 100644 index 0000000..f08a341 --- /dev/null +++ b/datasets/handleImage/train/订单1805377_51_7096582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8406f1f537e96c8c985845d196bec4cdb239643d72d227e062dd5ab4ccebbc0 +size 148238 diff --git a/datasets/handleImage/train/订单1805381_51_7096578.jpg b/datasets/handleImage/train/订单1805381_51_7096578.jpg new file mode 100644 index 0000000..8a0d73a --- /dev/null +++ b/datasets/handleImage/train/订单1805381_51_7096578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad8c5d93fa50cdb125d7a1689da68b19085572a6e8ef1d1cc80e2bf9076991f +size 108278 diff --git a/datasets/handleImage/train/订单1805382_51_7096625.jpg b/datasets/handleImage/train/订单1805382_51_7096625.jpg new file mode 100644 index 0000000..6940b1d --- /dev/null +++ b/datasets/handleImage/train/订单1805382_51_7096625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9337c6f33ad8c852ca0c498008708d4879f9d2fbf271e6ee16cfa226ee667b1c +size 156571 diff --git a/datasets/handleImage/train/订单1805383_51_7096566.jpg b/datasets/handleImage/train/订单1805383_51_7096566.jpg new file mode 100644 index 0000000..94adc9d --- /dev/null +++ b/datasets/handleImage/train/订单1805383_51_7096566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532b75de96855043be6a3e0226f873f206e971485f531af0d85cffe5dfa0283c +size 99713 diff --git a/datasets/handleImage/train/订单1805385_51_7096707.jpg b/datasets/handleImage/train/订单1805385_51_7096707.jpg new file mode 100644 index 0000000..5156b2d --- /dev/null +++ b/datasets/handleImage/train/订单1805385_51_7096707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14ec36b7bcdc6d55c8eab6147192d051a7a759eea13fa4546cf4808df9185b9 +size 215967 diff --git a/datasets/handleImage/train/订单1805387_51_7096626.jpg b/datasets/handleImage/train/订单1805387_51_7096626.jpg new file mode 100644 index 0000000..93797cb --- /dev/null +++ b/datasets/handleImage/train/订单1805387_51_7096626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdc364295178a72504d4a50f548f9072ea910200aff7e7d77b32ea5989a5c5 +size 446127 diff --git a/datasets/handleImage/train/订单1805395_51_7096699.jpg b/datasets/handleImage/train/订单1805395_51_7096699.jpg new file mode 100644 index 0000000..1388278 --- /dev/null +++ b/datasets/handleImage/train/订单1805395_51_7096699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd72a36474a3b0a7bd7291b59c5751cc36bbd8afebb8787a324120c30693ffe +size 441273 diff --git a/datasets/handleImage/train/订单1805397_51_7096898.jpg b/datasets/handleImage/train/订单1805397_51_7096898.jpg new file mode 100644 index 0000000..d664cfd --- /dev/null +++ b/datasets/handleImage/train/订单1805397_51_7096898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75b46fe21eb7e5ea76c682598207dfcca0d5f9448e729a90afb4d639e2923e8 +size 151756 diff --git a/datasets/handleImage/train/订单1805398_51_7096786.jpg b/datasets/handleImage/train/订单1805398_51_7096786.jpg new file mode 100644 index 0000000..493e3c0 --- /dev/null +++ b/datasets/handleImage/train/订单1805398_51_7096786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af66c2d7de2fe2574044cfc3f7e81514fdc444d28ebb6d62e034cb6177dcce2a +size 375967 diff --git a/datasets/handleImage/train/订单1805400_51_7096752.jpg b/datasets/handleImage/train/订单1805400_51_7096752.jpg new file mode 100644 index 0000000..881707c --- /dev/null +++ b/datasets/handleImage/train/订单1805400_51_7096752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cab292748112b32fd31e60a64265e116a22f0c3e7d23ba11e31b81421514ce +size 95260 diff --git a/datasets/handleImage/train/订单1805404_51_7096839.jpg b/datasets/handleImage/train/订单1805404_51_7096839.jpg new file mode 100644 index 0000000..5e68257 --- /dev/null +++ b/datasets/handleImage/train/订单1805404_51_7096839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fd429589c16104bbad11bc1cb76850df02e865aaf95c19d2ac5703e36f6e1e +size 165306 diff --git a/datasets/handleImage/train/订单1805408_51_7096821.jpg b/datasets/handleImage/train/订单1805408_51_7096821.jpg new file mode 100644 index 0000000..18029a9 --- /dev/null +++ b/datasets/handleImage/train/订单1805408_51_7096821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ecc93cdd283637d2d542496d073809e985c8248dbfec003ec2ebcb8d36ceb2 +size 136726 diff --git a/datasets/handleImage/train/订单1805409_51_7096823.jpg b/datasets/handleImage/train/订单1805409_51_7096823.jpg new file mode 100644 index 0000000..6caf0b6 --- /dev/null +++ b/datasets/handleImage/train/订单1805409_51_7096823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c542390eb2f33b94d77d8ffd7a34615c22cd5e650e872b810348d4e0dbae5c6b +size 114412 diff --git a/datasets/handleImage/train/订单1805410_51_7096872.jpg b/datasets/handleImage/train/订单1805410_51_7096872.jpg new file mode 100644 index 0000000..aad0b1f --- /dev/null +++ b/datasets/handleImage/train/订单1805410_51_7096872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2768b2e9abb55bd573bcf7602496aa4eda41df27f847c47d6b117f83cad907d7 +size 466219 diff --git a/datasets/handleImage/train/订单1805413_51_7096930.jpg b/datasets/handleImage/train/订单1805413_51_7096930.jpg new file mode 100644 index 0000000..258fbc6 --- /dev/null +++ b/datasets/handleImage/train/订单1805413_51_7096930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ae576eab22578353f021503acfd9cf401908b48a2d81b6dda998de60c5460b +size 87048 diff --git a/datasets/handleImage/train/订单1805415_51_7096961.jpg b/datasets/handleImage/train/订单1805415_51_7096961.jpg new file mode 100644 index 0000000..7923ae5 --- /dev/null +++ b/datasets/handleImage/train/订单1805415_51_7096961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97bb930443cad6d8f503d0117abba502937c984bd9f0504c69c55a738f9cd6c7 +size 136137 diff --git a/datasets/handleImage/train/订单1805416_51_7096938.jpg b/datasets/handleImage/train/订单1805416_51_7096938.jpg new file mode 100644 index 0000000..9ded9ce --- /dev/null +++ b/datasets/handleImage/train/订单1805416_51_7096938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2442ff8cd033162dc4ead4485172dfdce8a9e1f4240b280489f8fcca5d619d49 +size 147427 diff --git a/datasets/handleImage/train/订单1805417_51_7096975.jpg b/datasets/handleImage/train/订单1805417_51_7096975.jpg new file mode 100644 index 0000000..64815c9 --- /dev/null +++ b/datasets/handleImage/train/订单1805417_51_7096975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee5e95a7cce9a056d18cabe19d849c67c49dcbf8aa65fdff34d51e1a58e09fd +size 128683 diff --git a/datasets/handleImage/train/订单1805419_51_7097018.jpg b/datasets/handleImage/train/订单1805419_51_7097018.jpg new file mode 100644 index 0000000..67912b0 --- /dev/null +++ b/datasets/handleImage/train/订单1805419_51_7097018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092c46230c93f7e8109563ffbd45f028004efd5b9b0eb464626a5db8b041cecb +size 135746 diff --git a/datasets/handleImage/train/订单1805422_51_7097140.jpg b/datasets/handleImage/train/订单1805422_51_7097140.jpg new file mode 100644 index 0000000..a789c11 --- /dev/null +++ b/datasets/handleImage/train/订单1805422_51_7097140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cac67ea45930958c98570eab99383690f9aaf7ce08e008150257c82d724b82 +size 397599 diff --git a/datasets/handleImage/train/订单1805425_51_7097081.jpg b/datasets/handleImage/train/订单1805425_51_7097081.jpg new file mode 100644 index 0000000..2543a97 --- /dev/null +++ b/datasets/handleImage/train/订单1805425_51_7097081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5e5d3119f5ea860d6fb4ec3454b2242f6185a8800ad7f0752879239baa89a3 +size 308280 diff --git a/datasets/handleImage/train/订单1805428_51_7097030.jpg b/datasets/handleImage/train/订单1805428_51_7097030.jpg new file mode 100644 index 0000000..708dfde --- /dev/null +++ b/datasets/handleImage/train/订单1805428_51_7097030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ccbbb25d37fda96f5397cb3a812e64fa75ebd0b0e2b447d9560e11b30c9b99 +size 149244 diff --git a/datasets/handleImage/train/订单1805429_51_7097065.jpg b/datasets/handleImage/train/订单1805429_51_7097065.jpg new file mode 100644 index 0000000..059e358 --- /dev/null +++ b/datasets/handleImage/train/订单1805429_51_7097065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a45c713fa7bd9085aef0a8407c8d0aec28bf4dd523b5e0004bf0b77f52cac8 +size 88021 diff --git a/datasets/handleImage/train/订单1805430_51_7097192.jpg b/datasets/handleImage/train/订单1805430_51_7097192.jpg new file mode 100644 index 0000000..4ed4472 --- /dev/null +++ b/datasets/handleImage/train/订单1805430_51_7097192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91e29b76a40989c0b7ca95b50d219ec9d1c1a236bb0e1e9df7b6329d23c24a1 +size 492598 diff --git a/datasets/handleImage/train/订单1805431_51_7097106.jpg b/datasets/handleImage/train/订单1805431_51_7097106.jpg new file mode 100644 index 0000000..74b3ba4 --- /dev/null +++ b/datasets/handleImage/train/订单1805431_51_7097106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd50a3e168e176fb1eafa4ea6ee1b2cae27982cdf50b53c7b90d0576375899d +size 130926 diff --git a/datasets/handleImage/train/订单1805433_51_7097054.jpg b/datasets/handleImage/train/订单1805433_51_7097054.jpg new file mode 100644 index 0000000..8a4f8a3 --- /dev/null +++ b/datasets/handleImage/train/订单1805433_51_7097054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89926874563d1d03bd279a7e50043b3c41405f24a3b87f1fce4fba8e78c58028 +size 443521 diff --git a/datasets/handleImage/train/订单1805437_51_7097133.jpg b/datasets/handleImage/train/订单1805437_51_7097133.jpg new file mode 100644 index 0000000..11561a0 --- /dev/null +++ b/datasets/handleImage/train/订单1805437_51_7097133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de88d942a290d2a3bddb8f484fa3bfd1be0ea95198532207cf2a750a3fa295d +size 116999 diff --git a/datasets/handleImage/train/订单1805439_51_7097139.jpg b/datasets/handleImage/train/订单1805439_51_7097139.jpg new file mode 100644 index 0000000..b93902c --- /dev/null +++ b/datasets/handleImage/train/订单1805439_51_7097139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e277a1eef3e70f48f8dd32be116c980ee6595dc3f5d2c0ed4063029544b9949f +size 443084 diff --git a/datasets/handleImage/train/订单1805444_51_7097190.jpg b/datasets/handleImage/train/订单1805444_51_7097190.jpg new file mode 100644 index 0000000..f954b8a --- /dev/null +++ b/datasets/handleImage/train/订单1805444_51_7097190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1af338aa809de0993d85fb7bb2cbe3622df5178850c7d489f0854aa802a2a7 +size 338283 diff --git a/datasets/handleImage/train/订单1805445_51_7097229.jpg b/datasets/handleImage/train/订单1805445_51_7097229.jpg new file mode 100644 index 0000000..f63b2cf --- /dev/null +++ b/datasets/handleImage/train/订单1805445_51_7097229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fba1aa400cd48bf859a1cb94961d38c537ac84f45ce1f331f53584c29a49aeb +size 98937 diff --git a/datasets/handleImage/train/订单1805446_51_7097173.jpg b/datasets/handleImage/train/订单1805446_51_7097173.jpg new file mode 100644 index 0000000..188628f --- /dev/null +++ b/datasets/handleImage/train/订单1805446_51_7097173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1955a5d83aba4e540f5d52df37ae22fa424ab03e436257bd488ab48f16aff5 +size 398329 diff --git a/datasets/handleImage/train/订单1805449_51_7097273.jpg b/datasets/handleImage/train/订单1805449_51_7097273.jpg new file mode 100644 index 0000000..6203a4d --- /dev/null +++ b/datasets/handleImage/train/订单1805449_51_7097273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b66ab39edc3327e341c4c07c249cc757c9a7dad7f82dc53ba11479931f9905 +size 370859 diff --git a/datasets/handleImage/train/订单1805451_51_7097408.jpg b/datasets/handleImage/train/订单1805451_51_7097408.jpg new file mode 100644 index 0000000..d38f706 --- /dev/null +++ b/datasets/handleImage/train/订单1805451_51_7097408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c762b82c87244c1e9e349012f9058c3694e717d1793c14d3eff1617d64189f8f +size 117191 diff --git a/datasets/handleImage/train/订单1805452_51_7097304.jpg b/datasets/handleImage/train/订单1805452_51_7097304.jpg new file mode 100644 index 0000000..5b90fc6 --- /dev/null +++ b/datasets/handleImage/train/订单1805452_51_7097304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfddf6cd636a0a581debef1174bd1da72572d16ef452523cbd034aff3a15e52 +size 156467 diff --git a/datasets/handleImage/train/订单1805453_51_7097272.jpg b/datasets/handleImage/train/订单1805453_51_7097272.jpg new file mode 100644 index 0000000..ceaa182 --- /dev/null +++ b/datasets/handleImage/train/订单1805453_51_7097272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca939eb7fc39bad6bfe72d657785ab6e2e0c35ed747b48c17b51699e4bb00b8 +size 304661 diff --git a/datasets/handleImage/train/订单1805454_51_7097240.jpg b/datasets/handleImage/train/订单1805454_51_7097240.jpg new file mode 100644 index 0000000..a0025ad --- /dev/null +++ b/datasets/handleImage/train/订单1805454_51_7097240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6136e9450a80cc37d038c65093f02fd2a739ce5f2c08afe9dbff060e10230772 +size 121274 diff --git a/datasets/handleImage/train/订单1805458_51_7097359.jpg b/datasets/handleImage/train/订单1805458_51_7097359.jpg new file mode 100644 index 0000000..e1efcc6 --- /dev/null +++ b/datasets/handleImage/train/订单1805458_51_7097359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150b1f29a0b1d6ead219b3cfd3c56639c3d6fded1d562787ebc2fdc932f85958 +size 112567 diff --git a/datasets/handleImage/train/订单1805459_51_7097355.jpg b/datasets/handleImage/train/订单1805459_51_7097355.jpg new file mode 100644 index 0000000..22b89d1 --- /dev/null +++ b/datasets/handleImage/train/订单1805459_51_7097355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5e7cb840adeed9b4d410a71e76c292849ab62ef027edb27c30e269a1e57d2f +size 124770 diff --git a/datasets/handleImage/train/订单1805460_51_7097375.jpg b/datasets/handleImage/train/订单1805460_51_7097375.jpg new file mode 100644 index 0000000..453a5d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805460_51_7097375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949affdb2beebb788ea02594ec7153e194bab44537b17cb961a42cea197b20a5 +size 309963 diff --git a/datasets/handleImage/train/订单1805461_51_7097444.jpg b/datasets/handleImage/train/订单1805461_51_7097444.jpg new file mode 100644 index 0000000..5b55e65 --- /dev/null +++ b/datasets/handleImage/train/订单1805461_51_7097444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a864c5bae6e0732c961f22e715e1b01a4d7edadd144826a4a59a0cbc01b5ab +size 109468 diff --git a/datasets/handleImage/train/订单1805463_51_7097391.jpg b/datasets/handleImage/train/订单1805463_51_7097391.jpg new file mode 100644 index 0000000..e7732d6 --- /dev/null +++ b/datasets/handleImage/train/订单1805463_51_7097391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70335dd9e34296893c880ba1aa223fd0332ec44394209cc62f837393e618bb9 +size 116990 diff --git a/datasets/handleImage/train/订单1805466_51_7097460.jpg b/datasets/handleImage/train/订单1805466_51_7097460.jpg new file mode 100644 index 0000000..31bb31c --- /dev/null +++ b/datasets/handleImage/train/订单1805466_51_7097460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53efffcd5b158e9aa645227c48cdfabd130dd6e86265758534891dce418d375 +size 140598 diff --git a/datasets/handleImage/train/订单1805468_51_7097492.jpg b/datasets/handleImage/train/订单1805468_51_7097492.jpg new file mode 100644 index 0000000..02dcb75 --- /dev/null +++ b/datasets/handleImage/train/订单1805468_51_7097492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26a6fc54876c6ffff1902cf05c33cf59f849245f99093c3651884fb4f2bc278 +size 72605 diff --git a/datasets/handleImage/train/订单1805469_51_7097445.jpg b/datasets/handleImage/train/订单1805469_51_7097445.jpg new file mode 100644 index 0000000..328d71b --- /dev/null +++ b/datasets/handleImage/train/订单1805469_51_7097445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcbcac55e5b02f57e75f5a997c574357d6393a79de1c61c6513f6cefc4605a0 +size 114554 diff --git a/datasets/handleImage/train/订单1805471_51_7097467.jpg b/datasets/handleImage/train/订单1805471_51_7097467.jpg new file mode 100644 index 0000000..21cb2e0 --- /dev/null +++ b/datasets/handleImage/train/订单1805471_51_7097467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0866b7ec5ae120ffcb7dd7cbc71f2431570a9a4043bc1968e348065486919b57 +size 114029 diff --git a/datasets/handleImage/train/订单1805472_51_7097529.jpg b/datasets/handleImage/train/订单1805472_51_7097529.jpg new file mode 100644 index 0000000..83a7e96 --- /dev/null +++ b/datasets/handleImage/train/订单1805472_51_7097529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6352a84ef2993e9e5c02cf993967e0dd5033e63e3cceb28db941a060a6cd46d +size 97621 diff --git a/datasets/handleImage/train/订单1805473_51_7097537.jpg b/datasets/handleImage/train/订单1805473_51_7097537.jpg new file mode 100644 index 0000000..c9dd05e --- /dev/null +++ b/datasets/handleImage/train/订单1805473_51_7097537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de53da8d2774df59548c173bcc62b7584f62c2ab869e39593ed7df1f4f3275f5 +size 117297 diff --git a/datasets/handleImage/train/订单1805479_51_7097597.jpg b/datasets/handleImage/train/订单1805479_51_7097597.jpg new file mode 100644 index 0000000..b6883b1 --- /dev/null +++ b/datasets/handleImage/train/订单1805479_51_7097597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3b367a8cddb3f2a2d2a46388687460420946b44b3236518b0071a76137e9ad +size 96927 diff --git a/datasets/handleImage/train/订单1805483_51_7097639.jpg b/datasets/handleImage/train/订单1805483_51_7097639.jpg new file mode 100644 index 0000000..265361f --- /dev/null +++ b/datasets/handleImage/train/订单1805483_51_7097639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c295fba952fbe8dafc3377c347d9f5a1540c2394805a44c4288079d63a491c8 +size 630767 diff --git a/datasets/handleImage/train/订单1805485_51_7097619.jpg b/datasets/handleImage/train/订单1805485_51_7097619.jpg new file mode 100644 index 0000000..5046aad --- /dev/null +++ b/datasets/handleImage/train/订单1805485_51_7097619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad84ed8eeae863567dd08b0a1491cee6eb714d027044f525dae2fd5cd611eab2 +size 728883 diff --git a/datasets/handleImage/train/订单1805489_51_7097678.jpg b/datasets/handleImage/train/订单1805489_51_7097678.jpg new file mode 100644 index 0000000..46602d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805489_51_7097678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bb79f2381c36cc662e83100176560231ffd85b22df220ade1cc0a925bda730 +size 400290 diff --git a/datasets/handleImage/train/订单1805490_51_7097677.jpg b/datasets/handleImage/train/订单1805490_51_7097677.jpg new file mode 100644 index 0000000..1da46a0 --- /dev/null +++ b/datasets/handleImage/train/订单1805490_51_7097677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccf74037a38c81b7d6c0e1c630f9cb5318dcb8f2e5190e8a415870f2a156ab2 +size 70263 diff --git a/datasets/handleImage/train/订单1805494_51_7097669.jpg b/datasets/handleImage/train/订单1805494_51_7097669.jpg new file mode 100644 index 0000000..603588d --- /dev/null +++ b/datasets/handleImage/train/订单1805494_51_7097669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4403806aa518c2be4c82973140b6d0739a52b297a4504f563483804b324427d6 +size 137315 diff --git a/datasets/handleImage/train/订单1805495_51_7097888.jpg b/datasets/handleImage/train/订单1805495_51_7097888.jpg new file mode 100644 index 0000000..89adaeb --- /dev/null +++ b/datasets/handleImage/train/订单1805495_51_7097888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b933109b88d68a7a0618165810b3822727a85838f624b42d14fa2464c666e48c +size 125656 diff --git a/datasets/handleImage/train/订单1805497_51_7097714.jpg b/datasets/handleImage/train/订单1805497_51_7097714.jpg new file mode 100644 index 0000000..859a616 --- /dev/null +++ b/datasets/handleImage/train/订单1805497_51_7097714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e66a757028c439ca78fa82f18e36224a8b961d622b7079f3825468ffae92010 +size 76771 diff --git a/datasets/handleImage/train/订单1805498_51_7097737.jpg b/datasets/handleImage/train/订单1805498_51_7097737.jpg new file mode 100644 index 0000000..36a83fa --- /dev/null +++ b/datasets/handleImage/train/订单1805498_51_7097737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283f94112c55884b878a8e778cacce2ac3f7ac9d1b6fe0047d445e3a9480b34c +size 109781 diff --git a/datasets/handleImage/train/订单1805499_51_7097753.jpg b/datasets/handleImage/train/订单1805499_51_7097753.jpg new file mode 100644 index 0000000..50c1ceb --- /dev/null +++ b/datasets/handleImage/train/订单1805499_51_7097753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175e1f8d23c215613a4577632d6d7c941a8d6e7f51591f48d62f22e432075250 +size 110251 diff --git a/datasets/handleImage/train/订单1805500_51_7097767.jpg b/datasets/handleImage/train/订单1805500_51_7097767.jpg new file mode 100644 index 0000000..d18ed1c --- /dev/null +++ b/datasets/handleImage/train/订单1805500_51_7097767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eb86f2f7541544214c497001198d6608d0640bfddccbe5fcef3654712ead2 +size 118271 diff --git a/datasets/handleImage/train/订单1805506_51_7097821.jpg b/datasets/handleImage/train/订单1805506_51_7097821.jpg new file mode 100644 index 0000000..b221870 --- /dev/null +++ b/datasets/handleImage/train/订单1805506_51_7097821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae702c1e13fa7d12ec23613e015a37b7b53b7c118648d0ba761cd546b441d2cd +size 1026104 diff --git a/datasets/handleImage/train/订单1805509_51_7097852.jpg b/datasets/handleImage/train/订单1805509_51_7097852.jpg new file mode 100644 index 0000000..16dd228 --- /dev/null +++ b/datasets/handleImage/train/订单1805509_51_7097852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc72296bc30d075a74c33a5391d98dddcfd6563df8dcb6686913827e9e934ac +size 149018 diff --git a/datasets/handleImage/train/订单1805510_51_7098040.jpg b/datasets/handleImage/train/订单1805510_51_7098040.jpg new file mode 100644 index 0000000..5eed5cb --- /dev/null +++ b/datasets/handleImage/train/订单1805510_51_7098040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111039cd4b581f9baaf6d895df96446063b47abcf2651ccba44efbabd37bfc87 +size 445095 diff --git a/datasets/handleImage/train/订单1805511_51_7097845.jpg b/datasets/handleImage/train/订单1805511_51_7097845.jpg new file mode 100644 index 0000000..6a7dc7b --- /dev/null +++ b/datasets/handleImage/train/订单1805511_51_7097845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30592e53a43e3d22030e67d96454e2f3f8643b3031b59cb6b5aed7835bc3f7d4 +size 120683 diff --git a/datasets/handleImage/train/订单1805512_51_7097838.jpg b/datasets/handleImage/train/订单1805512_51_7097838.jpg new file mode 100644 index 0000000..0e1a20b --- /dev/null +++ b/datasets/handleImage/train/订单1805512_51_7097838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2f2884de7fb377999c512ac8ae730e8d8a4e47849e3d751589d99833524b8d +size 129728 diff --git a/datasets/handleImage/train/订单1805513_51_7097862.jpg b/datasets/handleImage/train/订单1805513_51_7097862.jpg new file mode 100644 index 0000000..e95ee7e --- /dev/null +++ b/datasets/handleImage/train/订单1805513_51_7097862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbdcadfcfaf05008bdc9d005a149eae5741fdfde379ad052171ebf85ecbe0df +size 141971 diff --git a/datasets/handleImage/train/订单1805520_51_7097937.jpg b/datasets/handleImage/train/订单1805520_51_7097937.jpg new file mode 100644 index 0000000..9f1de11 --- /dev/null +++ b/datasets/handleImage/train/订单1805520_51_7097937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f6dd35236d741fdd0b6cfb5e4524568e5e5496312a67e76f2ab82b6ad1f94d +size 126404 diff --git a/datasets/handleImage/train/订单1805524_51_7097938.jpg b/datasets/handleImage/train/订单1805524_51_7097938.jpg new file mode 100644 index 0000000..a746052 --- /dev/null +++ b/datasets/handleImage/train/订单1805524_51_7097938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0553695f922f37823aedb0caa1d45d5b6da29c3f30e361ee3e37c028bddea908 +size 163989 diff --git a/datasets/handleImage/train/订单1805525_51_7097930.jpg b/datasets/handleImage/train/订单1805525_51_7097930.jpg new file mode 100644 index 0000000..855c4c3 --- /dev/null +++ b/datasets/handleImage/train/订单1805525_51_7097930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1d04c56e0d0849ecbe889d65275bc47c0e6d53520934ee08adc6bbb3c66162 +size 181540 diff --git a/datasets/handleImage/train/订单1805526_51_7097979.jpg b/datasets/handleImage/train/订单1805526_51_7097979.jpg new file mode 100644 index 0000000..0af0a06 --- /dev/null +++ b/datasets/handleImage/train/订单1805526_51_7097979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3699d4ce2a1f80f3dbaf2c597e147ffa81cd658f9b119ccc7ba290ccf8b84091 +size 112877 diff --git a/datasets/handleImage/train/订单1805528_51_7097986.jpg b/datasets/handleImage/train/订单1805528_51_7097986.jpg new file mode 100644 index 0000000..285a06b --- /dev/null +++ b/datasets/handleImage/train/订单1805528_51_7097986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b90ddb2154fb0c7149e20d442fcbff87c415972d3ab4f40abe09e72442293 +size 490459 diff --git a/datasets/handleImage/train/订单1805530_51_7098034.jpg b/datasets/handleImage/train/订单1805530_51_7098034.jpg new file mode 100644 index 0000000..8a6bdaa --- /dev/null +++ b/datasets/handleImage/train/订单1805530_51_7098034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8fbb4252a09f3af4c1087bbab8a817ab5949a570e82d35bc6a9095dc21f6b6 +size 120756 diff --git a/datasets/handleImage/train/订单1805537_51_7097998.jpg b/datasets/handleImage/train/订单1805537_51_7097998.jpg new file mode 100644 index 0000000..381890b --- /dev/null +++ b/datasets/handleImage/train/订单1805537_51_7097998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8941b751e038c3f6c1bbd30adfe14fc3e48ba0a2d20b25f3d5e0a010e83e44 +size 147677 diff --git a/datasets/handleImage/train/订单1805539_51_7098124.jpg b/datasets/handleImage/train/订单1805539_51_7098124.jpg new file mode 100644 index 0000000..24f240f --- /dev/null +++ b/datasets/handleImage/train/订单1805539_51_7098124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c2bccd1e1aee172372df552e6a494ab473b319bbb21b634146d7bbc8ecfd38 +size 530691 diff --git a/datasets/handleImage/train/订单1805540_51_7098097.jpg b/datasets/handleImage/train/订单1805540_51_7098097.jpg new file mode 100644 index 0000000..61f4e48 --- /dev/null +++ b/datasets/handleImage/train/订单1805540_51_7098097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995a60f0b8c88bd76174b10b2b25fdf16c60200f303695d20ae29df1bf314461 +size 432512 diff --git a/datasets/handleImage/train/订单1805542_51_7098142.jpg b/datasets/handleImage/train/订单1805542_51_7098142.jpg new file mode 100644 index 0000000..352ca4a --- /dev/null +++ b/datasets/handleImage/train/订单1805542_51_7098142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58afc5f3bb0af1b5c126b7103bda245bf7a9092cdecb6b942c44350c83c746 +size 512162 diff --git a/datasets/handleImage/train/订单1805543_51_7098125.jpg b/datasets/handleImage/train/订单1805543_51_7098125.jpg new file mode 100644 index 0000000..3cd799a --- /dev/null +++ b/datasets/handleImage/train/订单1805543_51_7098125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcf0ff3842ac7b8c829c1fac490448239746fa8335c88b94613f84abf8e986a +size 92102 diff --git a/datasets/handleImage/train/订单1805545_51_7098061.jpg b/datasets/handleImage/train/订单1805545_51_7098061.jpg new file mode 100644 index 0000000..88ae571 --- /dev/null +++ b/datasets/handleImage/train/订单1805545_51_7098061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494291cc817fe7b60d85e412e941cc5f76e155c12fbda6b71bd0d73ddb1e7285 +size 107174 diff --git a/datasets/handleImage/train/订单1805548_51_7098174.jpg b/datasets/handleImage/train/订单1805548_51_7098174.jpg new file mode 100644 index 0000000..897900f --- /dev/null +++ b/datasets/handleImage/train/订单1805548_51_7098174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6fdabfe979b78e78076cb03bc97566fd8c122092d039bb13cc5c4e0a19a6f2 +size 171362 diff --git a/datasets/handleImage/train/订单1805552_51_7098206.jpg b/datasets/handleImage/train/订单1805552_51_7098206.jpg new file mode 100644 index 0000000..c30a660 --- /dev/null +++ b/datasets/handleImage/train/订单1805552_51_7098206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97894a174bb21f7b7e7b835cfa8a65615749ab741ff1cb6f1e663d3a1623cd38 +size 378655 diff --git a/datasets/handleImage/train/订单1805556_51_7098248.jpg b/datasets/handleImage/train/订单1805556_51_7098248.jpg new file mode 100644 index 0000000..d78b8e0 --- /dev/null +++ b/datasets/handleImage/train/订单1805556_51_7098248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233f9132c9509f38b5dba09fdc57d7c96f4bc23ff54e346373919595585e4859 +size 115214 diff --git a/datasets/handleImage/train/订单1805557_51_7098288.jpg b/datasets/handleImage/train/订单1805557_51_7098288.jpg new file mode 100644 index 0000000..6bb9047 --- /dev/null +++ b/datasets/handleImage/train/订单1805557_51_7098288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec82907f63e0597f67968c68c6ab758ef6267fd5249ef3720e902b9c0cf00c2 +size 146336 diff --git a/datasets/handleImage/train/订单1805558_51_7098208.jpg b/datasets/handleImage/train/订单1805558_51_7098208.jpg new file mode 100644 index 0000000..2317c0b --- /dev/null +++ b/datasets/handleImage/train/订单1805558_51_7098208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107e1b575fd7533ce86eb65ac11119314b5d8ac19b3ea6024a54251558b33918 +size 463272 diff --git a/datasets/handleImage/train/订单1805559_51_7098303.jpg b/datasets/handleImage/train/订单1805559_51_7098303.jpg new file mode 100644 index 0000000..8d9d9f7 --- /dev/null +++ b/datasets/handleImage/train/订单1805559_51_7098303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5a4e5cb25d0f5dc47edd3a789fd495dcffda5c7d7d9c9c4f8f0b347faa1ecc +size 735669 diff --git a/datasets/handleImage/train/订单1805560_51_7098355.jpg b/datasets/handleImage/train/订单1805560_51_7098355.jpg new file mode 100644 index 0000000..b61c30a --- /dev/null +++ b/datasets/handleImage/train/订单1805560_51_7098355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e276ca0adf5718031b453c8344d621705d5313ffde503bcefb348cd9be3fc +size 475724 diff --git a/datasets/handleImage/train/订单1805561_51_7098457.jpg b/datasets/handleImage/train/订单1805561_51_7098457.jpg new file mode 100644 index 0000000..ea0d8ae --- /dev/null +++ b/datasets/handleImage/train/订单1805561_51_7098457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a485641e7cc2419b336ab16a4df9a627d37468f4468e1f7d9a369cd7b8b3f8 +size 475817 diff --git a/datasets/handleImage/train/订单1805565_51_7098285.jpg b/datasets/handleImage/train/订单1805565_51_7098285.jpg new file mode 100644 index 0000000..3a02c1f --- /dev/null +++ b/datasets/handleImage/train/订单1805565_51_7098285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12827fb66c68d0bd3cb87ade4c40f17d2b493d6633e9bb2da2595561a9488c4 +size 123226 diff --git a/datasets/handleImage/train/订单1805567_51_7098253.jpg b/datasets/handleImage/train/订单1805567_51_7098253.jpg new file mode 100644 index 0000000..2dd5bdb --- /dev/null +++ b/datasets/handleImage/train/订单1805567_51_7098253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fb3dbeefb4697c5725d6dc5464bbb972dac0e8a108eefcf93563412514ec2b +size 128855 diff --git a/datasets/handleImage/train/订单1805569_51_7098391.jpg b/datasets/handleImage/train/订单1805569_51_7098391.jpg new file mode 100644 index 0000000..980e0ed --- /dev/null +++ b/datasets/handleImage/train/订单1805569_51_7098391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b483119a816864c92c66e176f2a0a3e2ff3db0a51e338a19e2a6f12d8213f52 +size 138920 diff --git a/datasets/handleImage/train/订单1805570_51_7098370.jpg b/datasets/handleImage/train/订单1805570_51_7098370.jpg new file mode 100644 index 0000000..3fd213f --- /dev/null +++ b/datasets/handleImage/train/订单1805570_51_7098370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bf38b5e96d8277732d0663ebb6274a908fd5be29366ea1ab3e73c0f337c92c +size 108490 diff --git a/datasets/handleImage/train/订单1805571_51_7099256.jpg b/datasets/handleImage/train/订单1805571_51_7099256.jpg new file mode 100644 index 0000000..34a6c6c --- /dev/null +++ b/datasets/handleImage/train/订单1805571_51_7099256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04b8b1b8ce36b190ed151213489ec72472928a2247c8e572bb95b1ff48092f2 +size 224798 diff --git a/datasets/handleImage/train/订单1805573_51_7098331.jpg b/datasets/handleImage/train/订单1805573_51_7098331.jpg new file mode 100644 index 0000000..d92a956 --- /dev/null +++ b/datasets/handleImage/train/订单1805573_51_7098331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2720651be3c60124e5b2bf88566ddde9cdd5447f7c24eda57e1ab33f5c850e9 +size 131558 diff --git a/datasets/handleImage/train/订单1805575_51_7098413.jpg b/datasets/handleImage/train/订单1805575_51_7098413.jpg new file mode 100644 index 0000000..2ce8253 --- /dev/null +++ b/datasets/handleImage/train/订单1805575_51_7098413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e92375248c448c65037a57f5d3cd8b22a86cc2187012f76e3f3d464dc25815 +size 156530 diff --git a/datasets/handleImage/train/订单1805576_51_7098503.jpg b/datasets/handleImage/train/订单1805576_51_7098503.jpg new file mode 100644 index 0000000..8df3112 --- /dev/null +++ b/datasets/handleImage/train/订单1805576_51_7098503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cfe249d9ed08b8b3db394164e42681918b1d60fe345a03677f9cbce44b8cc8 +size 546052 diff --git a/datasets/handleImage/train/订单1805578_51_7098451.jpg b/datasets/handleImage/train/订单1805578_51_7098451.jpg new file mode 100644 index 0000000..fa2cea7 --- /dev/null +++ b/datasets/handleImage/train/订单1805578_51_7098451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c80cf4468440b0a3303ea5c8eb9067fdc67d4e91bd819eb368293740e342ee0 +size 188134 diff --git a/datasets/handleImage/train/订单1805579_51_7098438.jpg b/datasets/handleImage/train/订单1805579_51_7098438.jpg new file mode 100644 index 0000000..9571c68 --- /dev/null +++ b/datasets/handleImage/train/订单1805579_51_7098438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a3c49a461002f46df1000e2f70078bf60348ea1ddc13cde94d5aa6a5e3126 +size 573231 diff --git a/datasets/handleImage/train/订单1805580_51_7098406.jpg b/datasets/handleImage/train/订单1805580_51_7098406.jpg new file mode 100644 index 0000000..191de05 --- /dev/null +++ b/datasets/handleImage/train/订单1805580_51_7098406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786de63bd162599ac5a89f6319fc99e6d30bccc06d0627d83e7b84a0648e299d +size 460617 diff --git a/datasets/handleImage/train/订单1805583_51_7098571.jpg b/datasets/handleImage/train/订单1805583_51_7098571.jpg new file mode 100644 index 0000000..f18b7a8 --- /dev/null +++ b/datasets/handleImage/train/订单1805583_51_7098571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8cdcde121581f098175f3132fc9e08630caa107df766b64ba248e9f4130f7a4 +size 141382 diff --git a/datasets/handleImage/train/订单1805587_51_7098669.jpg b/datasets/handleImage/train/订单1805587_51_7098669.jpg new file mode 100644 index 0000000..5d62126 --- /dev/null +++ b/datasets/handleImage/train/订单1805587_51_7098669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9cc7f8498a305b4369228e5ef8c6ef133817765e1656ce9b58b5d5bb4b0486 +size 495865 diff --git a/datasets/handleImage/train/订单1805592_51_7098703.jpg b/datasets/handleImage/train/订单1805592_51_7098703.jpg new file mode 100644 index 0000000..c97946f --- /dev/null +++ b/datasets/handleImage/train/订单1805592_51_7098703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a667cf70fcd422732eb458857e1a2f4778ff206f8abdef185e792e6a5e0377 +size 388063 diff --git a/datasets/handleImage/train/订单1805593_51_7098545.jpg b/datasets/handleImage/train/订单1805593_51_7098545.jpg new file mode 100644 index 0000000..954b7be --- /dev/null +++ b/datasets/handleImage/train/订单1805593_51_7098545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4961ceae89a3112e9ea1498ce9f0b7d1913a0801f5c30198bafd4b3793a9cbb4 +size 156386 diff --git a/datasets/handleImage/train/订单1805596_51_7098501.jpg b/datasets/handleImage/train/订单1805596_51_7098501.jpg new file mode 100644 index 0000000..d61227e --- /dev/null +++ b/datasets/handleImage/train/订单1805596_51_7098501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37375f3a0bfdb83e49d49360a706fb12e2f5501773ae8737299d80f559730f7 +size 131837 diff --git a/datasets/handleImage/train/订单1805597_51_7098528.jpg b/datasets/handleImage/train/订单1805597_51_7098528.jpg new file mode 100644 index 0000000..30c3f01 --- /dev/null +++ b/datasets/handleImage/train/订单1805597_51_7098528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe4aa1bff8ef0f3790d6d906d5314ff8391c6e90cb672c6c597ca293ab4184a +size 148251 diff --git a/datasets/handleImage/train/订单1805605_51_7098836.jpg b/datasets/handleImage/train/订单1805605_51_7098836.jpg new file mode 100644 index 0000000..4562bec --- /dev/null +++ b/datasets/handleImage/train/订单1805605_51_7098836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2e379acdff2ab2f71e7f0f48c71455f4410b7b06bae43586e55379ed276827 +size 335324 diff --git a/datasets/handleImage/train/订单1805608_51_7098659.jpg b/datasets/handleImage/train/订单1805608_51_7098659.jpg new file mode 100644 index 0000000..87243e7 --- /dev/null +++ b/datasets/handleImage/train/订单1805608_51_7098659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0f6f9107ca9151355da7fe25d178dafd2c1de220575c721a46a0ac4a4f7e6a +size 104330 diff --git a/datasets/handleImage/train/订单1805609_51_7098743.jpg b/datasets/handleImage/train/订单1805609_51_7098743.jpg new file mode 100644 index 0000000..586bd6b --- /dev/null +++ b/datasets/handleImage/train/订单1805609_51_7098743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48a759d832b4d1cf9b45981e7e9cd3eb71f3b4b59b5a74fbdca17a37e8eb4c5 +size 138900 diff --git a/datasets/handleImage/train/订单1805615_51_7098757.jpg b/datasets/handleImage/train/订单1805615_51_7098757.jpg new file mode 100644 index 0000000..14b345b --- /dev/null +++ b/datasets/handleImage/train/订单1805615_51_7098757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38fdcde322d2e59a947074d9323d084d859d1fed592088c29e70dcaea6476af6 +size 109481 diff --git a/datasets/handleImage/train/订单1805620_51_7098837.jpg b/datasets/handleImage/train/订单1805620_51_7098837.jpg new file mode 100644 index 0000000..8d9952f --- /dev/null +++ b/datasets/handleImage/train/订单1805620_51_7098837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9630ae62f6eb7a46f78feea7f81647db331028c30b5eb5781c503c470ed91580 +size 122382 diff --git a/datasets/handleImage/train/订单1805621_51_7098899.jpg b/datasets/handleImage/train/订单1805621_51_7098899.jpg new file mode 100644 index 0000000..b1a5567 --- /dev/null +++ b/datasets/handleImage/train/订单1805621_51_7098899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a2cbae92f60f95a664b3a2c86e60a1b82092ca3eb1e79759e4c36e7ff2bb22 +size 98531 diff --git a/datasets/handleImage/train/订单1805624_51_7098851.jpg b/datasets/handleImage/train/订单1805624_51_7098851.jpg new file mode 100644 index 0000000..605d418 --- /dev/null +++ b/datasets/handleImage/train/订单1805624_51_7098851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d441034dd8974f44fa491ef2051bf7f7f56e62a23e55a328b1f0b532690751 +size 149195 diff --git a/datasets/handleImage/train/订单1805627_51_7099446.jpg b/datasets/handleImage/train/订单1805627_51_7099446.jpg new file mode 100644 index 0000000..920d95d --- /dev/null +++ b/datasets/handleImage/train/订单1805627_51_7099446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab819d73d104fa00db6b2bbc09d8111524ec4f168998c2785342afa2601a43 +size 157669 diff --git a/datasets/handleImage/train/订单1805629_51_7098926.jpg b/datasets/handleImage/train/订单1805629_51_7098926.jpg new file mode 100644 index 0000000..5b051d3 --- /dev/null +++ b/datasets/handleImage/train/订单1805629_51_7098926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666f6b699ff390efce84da969803132f129b22cb06e693be76c263531a54c582 +size 470911 diff --git a/datasets/handleImage/train/订单1805632_51_7098946.jpg b/datasets/handleImage/train/订单1805632_51_7098946.jpg new file mode 100644 index 0000000..a2d552c --- /dev/null +++ b/datasets/handleImage/train/订单1805632_51_7098946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a18996ceed2a0d4b4c751dc7cd80b3f7bd582d5251e9eac42b294044e36f9f8 +size 246273 diff --git a/datasets/handleImage/train/订单1805638_51_7098944.jpg b/datasets/handleImage/train/订单1805638_51_7098944.jpg new file mode 100644 index 0000000..42b7612 --- /dev/null +++ b/datasets/handleImage/train/订单1805638_51_7098944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b5e19116a11be35357bcafdeedac3292b748b67dd94dfcba7083832850084d +size 174642 diff --git a/datasets/handleImage/train/订单1805639_51_7098976.jpg b/datasets/handleImage/train/订单1805639_51_7098976.jpg new file mode 100644 index 0000000..86b349f --- /dev/null +++ b/datasets/handleImage/train/订单1805639_51_7098976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c69e52a6e3f79a6e51d5d4eaf4c4cc283d4e0998eee199528b0d90ca2b1081 +size 59231 diff --git a/datasets/handleImage/train/订单1805640_51_7098963.jpg b/datasets/handleImage/train/订单1805640_51_7098963.jpg new file mode 100644 index 0000000..1244712 --- /dev/null +++ b/datasets/handleImage/train/订单1805640_51_7098963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3232d912b8b4898a7c86066d577cc64ff10ff31eaa8625d8203f0529698ef154 +size 107657 diff --git a/datasets/handleImage/train/订单1805641_51_7099018.jpg b/datasets/handleImage/train/订单1805641_51_7099018.jpg new file mode 100644 index 0000000..b798c80 --- /dev/null +++ b/datasets/handleImage/train/订单1805641_51_7099018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50d575e04c4abe02cc60ea766fc4dc9777c695e93b017c0f62b830daefa681a +size 349462 diff --git a/datasets/handleImage/train/订单1805650_51_7099158.jpg b/datasets/handleImage/train/订单1805650_51_7099158.jpg new file mode 100644 index 0000000..f9586a3 --- /dev/null +++ b/datasets/handleImage/train/订单1805650_51_7099158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ef6282629f1af11899efee2faf53ea61d3c16e4a540619c0ab164fc6a4b9b9 +size 138409 diff --git a/datasets/handleImage/train/订单1805651_51_7099073.jpg b/datasets/handleImage/train/订单1805651_51_7099073.jpg new file mode 100644 index 0000000..faa3a5b --- /dev/null +++ b/datasets/handleImage/train/订单1805651_51_7099073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076bc906cda2ce16236feb0f7ce72a518b23ea4a0c3683ae44722cc2b93569a0 +size 496898 diff --git a/datasets/handleImage/train/订单1805657_51_7099117.jpg b/datasets/handleImage/train/订单1805657_51_7099117.jpg new file mode 100644 index 0000000..594e610 --- /dev/null +++ b/datasets/handleImage/train/订单1805657_51_7099117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ec2677b92aea0696a8640a2bf262df34e9301b96fb47c217eebd5efb20f539 +size 219746 diff --git a/datasets/handleImage/train/订单1805658_51_7099576.jpg b/datasets/handleImage/train/订单1805658_51_7099576.jpg new file mode 100644 index 0000000..a39a1cf --- /dev/null +++ b/datasets/handleImage/train/订单1805658_51_7099576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e0bac6058e6211bedf082789c9b10276c5df66ffa3de8630aa2642e119ced8 +size 876953 diff --git a/datasets/handleImage/train/订单1805659_51_7099146.jpg b/datasets/handleImage/train/订单1805659_51_7099146.jpg new file mode 100644 index 0000000..54e8e77 --- /dev/null +++ b/datasets/handleImage/train/订单1805659_51_7099146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7aea0d98d390dba1df1f624d6d5467352ed82e5eb7928de57a21de4e595cea +size 145564 diff --git a/datasets/handleImage/train/订单1805660_51_7099156.jpg b/datasets/handleImage/train/订单1805660_51_7099156.jpg new file mode 100644 index 0000000..c8326a4 --- /dev/null +++ b/datasets/handleImage/train/订单1805660_51_7099156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7786db625f65677627cce9ef700c32c10a7929dde4820783a2317689e768e2 +size 78532 diff --git a/datasets/handleImage/train/订单1805661_51_7099341.jpg b/datasets/handleImage/train/订单1805661_51_7099341.jpg new file mode 100644 index 0000000..943fd7a --- /dev/null +++ b/datasets/handleImage/train/订单1805661_51_7099341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b51ad415b89506eb8abadd1186ca720a80aae897541421e442154ff147856d +size 224543 diff --git a/datasets/handleImage/train/订单1805662_51_7099241.jpg b/datasets/handleImage/train/订单1805662_51_7099241.jpg new file mode 100644 index 0000000..59eaab8 --- /dev/null +++ b/datasets/handleImage/train/订单1805662_51_7099241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e834d3d71f6641cc19f4573ffee7e624d299fe08cdd5e0ab01b8cb0631aa763a +size 149756 diff --git a/datasets/handleImage/train/订单1805667_51_7099345.jpg b/datasets/handleImage/train/订单1805667_51_7099345.jpg new file mode 100644 index 0000000..7b9162b --- /dev/null +++ b/datasets/handleImage/train/订单1805667_51_7099345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef5def3b873eaea3d82187cb6f3aae741a70c00e7625aa5e79295f5302df66c +size 325645 diff --git a/datasets/handleImage/train/订单1805672_51_7099269.jpg b/datasets/handleImage/train/订单1805672_51_7099269.jpg new file mode 100644 index 0000000..ae07056 --- /dev/null +++ b/datasets/handleImage/train/订单1805672_51_7099269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3488fbdefcce2af2d72636fa8689a04b7ce7531dff59052ad164bd46702e4c +size 125152 diff --git a/datasets/handleImage/train/订单1805677_51_7099314.jpg b/datasets/handleImage/train/订单1805677_51_7099314.jpg new file mode 100644 index 0000000..67238e0 --- /dev/null +++ b/datasets/handleImage/train/订单1805677_51_7099314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c5dfbeb9d1cedaef7eb2ef03cf041132fc1705269275327c968334a2056aa7 +size 130474 diff --git a/datasets/handleImage/train/订单1805680_51_7099400.jpg b/datasets/handleImage/train/订单1805680_51_7099400.jpg new file mode 100644 index 0000000..f6eb997 --- /dev/null +++ b/datasets/handleImage/train/订单1805680_51_7099400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67f52c08f5a32d48319a786bbb012c85fbeac05edba2d136611eddb0a57f486 +size 238478 diff --git a/datasets/handleImage/train/订单1805681_51_7099392.jpg b/datasets/handleImage/train/订单1805681_51_7099392.jpg new file mode 100644 index 0000000..b9fa607 --- /dev/null +++ b/datasets/handleImage/train/订单1805681_51_7099392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdaaeda7ee5ee7458db9d1632a3eaa38e35636659b02b6643d0aad2865ee0f7 +size 329492 diff --git a/datasets/handleImage/train/订单1805683_51_7099308.jpg b/datasets/handleImage/train/订单1805683_51_7099308.jpg new file mode 100644 index 0000000..331cb51 --- /dev/null +++ b/datasets/handleImage/train/订单1805683_51_7099308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a02ba8e70a79f6151471e621de9ccc0d3c5995f37efd0325995a2a985cf19c +size 122320 diff --git a/datasets/handleImage/train/订单1805684_51_7099421.jpg b/datasets/handleImage/train/订单1805684_51_7099421.jpg new file mode 100644 index 0000000..6c1a12b --- /dev/null +++ b/datasets/handleImage/train/订单1805684_51_7099421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c96b9dbe05fc585a11b6db15f69a15c161e16132348409252dd764aaa9289cf +size 97413 diff --git a/datasets/handleImage/train/订单1805691_51_7099534.jpg b/datasets/handleImage/train/订单1805691_51_7099534.jpg new file mode 100644 index 0000000..91328d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805691_51_7099534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf26712e0f2cd581c9c9d8e6a5b9e60052a5c4a5f5ec4329a8bf773cd0049dae +size 430435 diff --git a/datasets/handleImage/train/订单1805692_51_7099444.jpg b/datasets/handleImage/train/订单1805692_51_7099444.jpg new file mode 100644 index 0000000..7ac968d --- /dev/null +++ b/datasets/handleImage/train/订单1805692_51_7099444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3339fcaf3aea4c4cc8f8632f54cce1c8e4803051afaaab6a84220f3d0641ad +size 290946 diff --git a/datasets/handleImage/train/订单1805694_51_7099545.jpg b/datasets/handleImage/train/订单1805694_51_7099545.jpg new file mode 100644 index 0000000..3a12819 --- /dev/null +++ b/datasets/handleImage/train/订单1805694_51_7099545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946206787f9de1292e8a2f948d4cb2f37b21c9f3ce6897497b505957ef41f176 +size 98029 diff --git a/datasets/handleImage/train/订单1805696_51_7099528.jpg b/datasets/handleImage/train/订单1805696_51_7099528.jpg new file mode 100644 index 0000000..1bd4d49 --- /dev/null +++ b/datasets/handleImage/train/订单1805696_51_7099528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899cc04a5208679a7540e8403a97e6812d6f951c96cae5bb3472085eec56922c +size 148465 diff --git a/datasets/handleImage/train/订单1805698_51_7099633.jpg b/datasets/handleImage/train/订单1805698_51_7099633.jpg new file mode 100644 index 0000000..202a9e3 --- /dev/null +++ b/datasets/handleImage/train/订单1805698_51_7099633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7915c7c8933a08868ecaab92ca44a259f70c4669170704942a1dba9a04b793 +size 149939 diff --git a/datasets/handleImage/train/订单1805699_51_7099594.jpg b/datasets/handleImage/train/订单1805699_51_7099594.jpg new file mode 100644 index 0000000..e470ad2 --- /dev/null +++ b/datasets/handleImage/train/订单1805699_51_7099594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c302e421c3e2c052352fc9d228e63536b4194a30534f010a30dbe57427b6ed89 +size 132967 diff --git a/datasets/handleImage/train/订单1805703_51_7099678.jpg b/datasets/handleImage/train/订单1805703_51_7099678.jpg new file mode 100644 index 0000000..8bb40e9 --- /dev/null +++ b/datasets/handleImage/train/订单1805703_51_7099678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314273abfff660a3d33d59449e83d24ad93073747d66d438cea0cc04971eead9 +size 155462 diff --git a/datasets/handleImage/train/订单1805704_51_7099624.jpg b/datasets/handleImage/train/订单1805704_51_7099624.jpg new file mode 100644 index 0000000..eaeb550 --- /dev/null +++ b/datasets/handleImage/train/订单1805704_51_7099624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34e36840039a9fe0200cad3730d389147ec9618b87564cd2b425e62aab07681 +size 315617 diff --git a/datasets/handleImage/train/订单1805706_51_7099653.jpg b/datasets/handleImage/train/订单1805706_51_7099653.jpg new file mode 100644 index 0000000..43410cc --- /dev/null +++ b/datasets/handleImage/train/订单1805706_51_7099653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9955c4b84e4e5c8978a00f12ea97920f8fa212cef7a64973af4737098927fe0f +size 139604 diff --git a/datasets/handleImage/train/订单1805711_51_7099701.jpg b/datasets/handleImage/train/订单1805711_51_7099701.jpg new file mode 100644 index 0000000..1d411f4 --- /dev/null +++ b/datasets/handleImage/train/订单1805711_51_7099701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164d74382f7242437b634ae04b1bf4abff60d326f4d3a664a89c60dd7349b8f1 +size 131544 diff --git a/datasets/handleImage/train/订单1805715_51_7099691.jpg b/datasets/handleImage/train/订单1805715_51_7099691.jpg new file mode 100644 index 0000000..9097c47 --- /dev/null +++ b/datasets/handleImage/train/订单1805715_51_7099691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efdc834a29a3f92e5ae7ea897a23ae1b0c916eaca6a580fa9f10943c2ef265a +size 163077 diff --git a/datasets/handleImage/train/订单1805718_51_7099739.jpg b/datasets/handleImage/train/订单1805718_51_7099739.jpg new file mode 100644 index 0000000..59cc6ac --- /dev/null +++ b/datasets/handleImage/train/订单1805718_51_7099739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248d38a84e1b32d3b3fdc73bbdd33e0396ab931d33e0fa4bf334fe6f9764fa9e +size 581774 diff --git a/datasets/handleImage/train/订单1805720_51_7099771.jpg b/datasets/handleImage/train/订单1805720_51_7099771.jpg new file mode 100644 index 0000000..3e28b19 --- /dev/null +++ b/datasets/handleImage/train/订单1805720_51_7099771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af5cfab5a04b95b183e209684ef301386482705ae5997e8b9c577770258e912 +size 141615 diff --git a/datasets/handleImage/train/订单1805723_51_7099785.jpg b/datasets/handleImage/train/订单1805723_51_7099785.jpg new file mode 100644 index 0000000..6e7b110 --- /dev/null +++ b/datasets/handleImage/train/订单1805723_51_7099785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d489eb37958a8b4faeebf252a26351b7ef83a91f37013e0cd0182ad64d941b +size 128241 diff --git a/datasets/handleImage/train/订单1805726_51_7099833.jpg b/datasets/handleImage/train/订单1805726_51_7099833.jpg new file mode 100644 index 0000000..1ea0ae9 --- /dev/null +++ b/datasets/handleImage/train/订单1805726_51_7099833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3831277a73e7fa5fc4398604ab5f9fff6a59adb16c8f2d6659f5a4867bc25a +size 128219 diff --git a/datasets/handleImage/train/订单1805727_51_7099850.jpg b/datasets/handleImage/train/订单1805727_51_7099850.jpg new file mode 100644 index 0000000..a34045b --- /dev/null +++ b/datasets/handleImage/train/订单1805727_51_7099850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94341a145bddda59661159ea2ded8c1ea702be2240ad9527426225f6d4658f71 +size 102085 diff --git a/datasets/handleImage/train/订单1805731_51_7100007.jpg b/datasets/handleImage/train/订单1805731_51_7100007.jpg new file mode 100644 index 0000000..0b96e81 --- /dev/null +++ b/datasets/handleImage/train/订单1805731_51_7100007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c39910351bb55fbc30d62d4e4899900253da860f2b7e035bfea2bcf69d793e +size 151745 diff --git a/datasets/handleImage/train/订单1805735_51_7099895.jpg b/datasets/handleImage/train/订单1805735_51_7099895.jpg new file mode 100644 index 0000000..22b5026 --- /dev/null +++ b/datasets/handleImage/train/订单1805735_51_7099895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca6a424383cdfdd4a8f1bab66e7895f148f5c319797470ecc907748964787e0 +size 478669 diff --git a/datasets/handleImage/train/订单1805736_51_7099971.jpg b/datasets/handleImage/train/订单1805736_51_7099971.jpg new file mode 100644 index 0000000..4bc0295 --- /dev/null +++ b/datasets/handleImage/train/订单1805736_51_7099971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e0bcc391f7c20f236adea0579a4e2cdde63eb332afafc9c4541bb738c126d0 +size 74648 diff --git a/datasets/handleImage/train/订单1805737_51_7101315.jpg b/datasets/handleImage/train/订单1805737_51_7101315.jpg new file mode 100644 index 0000000..3f80181 --- /dev/null +++ b/datasets/handleImage/train/订单1805737_51_7101315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a51816a3b1335b3e6e3b1d700eecd33b8d1ab291b9f5a9b105cf2a1764177e2 +size 302775 diff --git a/datasets/handleImage/train/订单1805739_51_7099950.jpg b/datasets/handleImage/train/订单1805739_51_7099950.jpg new file mode 100644 index 0000000..85351b5 --- /dev/null +++ b/datasets/handleImage/train/订单1805739_51_7099950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80d35cd36362b33127b349cc4cb3d6dfeeca234229a6e77a15efe918380182d +size 137765 diff --git a/datasets/handleImage/train/订单1805740_51_7099926.jpg b/datasets/handleImage/train/订单1805740_51_7099926.jpg new file mode 100644 index 0000000..82cd491 --- /dev/null +++ b/datasets/handleImage/train/订单1805740_51_7099926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad83865e125003a4e426012907c835298b92bbcea51b7f0a4d8de63f4e2000c5 +size 136278 diff --git a/datasets/handleImage/train/订单1805742_51_7099979.jpg b/datasets/handleImage/train/订单1805742_51_7099979.jpg new file mode 100644 index 0000000..a5c0dd2 --- /dev/null +++ b/datasets/handleImage/train/订单1805742_51_7099979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74fdd4bcd3776da5b07d72212578c97aa2f879c417f00586a31ccabc7630cf6 +size 160266 diff --git a/datasets/handleImage/train/订单1805746_51_7100012.jpg b/datasets/handleImage/train/订单1805746_51_7100012.jpg new file mode 100644 index 0000000..a2f2191 --- /dev/null +++ b/datasets/handleImage/train/订单1805746_51_7100012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094f13bce39e1cf7d51a53ad7287eb437ef971de3ba306c6c4c02b3e70290dbc +size 128912 diff --git a/datasets/handleImage/train/订单1805747_51_7100048.jpg b/datasets/handleImage/train/订单1805747_51_7100048.jpg new file mode 100644 index 0000000..0fae44a --- /dev/null +++ b/datasets/handleImage/train/订单1805747_51_7100048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fafb1b74e41480093eff24440c4c81dbbead4752da4c10b1696bcf02fae75f9 +size 527596 diff --git a/datasets/handleImage/train/订单1805748_51_7100087.jpg b/datasets/handleImage/train/订单1805748_51_7100087.jpg new file mode 100644 index 0000000..47c81d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805748_51_7100087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b47eee087cdfe519539dc3e91e8d52491e1cd6d14866a0508da2e218c11a6 +size 151585 diff --git a/datasets/handleImage/train/订单1805751_51_7100254.jpg b/datasets/handleImage/train/订单1805751_51_7100254.jpg new file mode 100644 index 0000000..81932cb --- /dev/null +++ b/datasets/handleImage/train/订单1805751_51_7100254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12462152800f3d6400207ac417df7a07d6d0bb2547923bd371d9018de3dbc3b +size 97164 diff --git a/datasets/handleImage/train/订单1805752_51_7100195.jpg b/datasets/handleImage/train/订单1805752_51_7100195.jpg new file mode 100644 index 0000000..15d57a8 --- /dev/null +++ b/datasets/handleImage/train/订单1805752_51_7100195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13900aece85ff675ff4115cfb66a1e03ad29055506e6fa0e1757057fda6260e +size 118197 diff --git a/datasets/handleImage/train/订单1805753_51_7100046.jpg b/datasets/handleImage/train/订单1805753_51_7100046.jpg new file mode 100644 index 0000000..8e05946 --- /dev/null +++ b/datasets/handleImage/train/订单1805753_51_7100046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0835ca949503e8f28a4e02755bb57743da696581c1706b61eb7dbac442fa9c9 +size 101158 diff --git a/datasets/handleImage/train/订单1805763_51_7100277.jpg b/datasets/handleImage/train/订单1805763_51_7100277.jpg new file mode 100644 index 0000000..28d00f0 --- /dev/null +++ b/datasets/handleImage/train/订单1805763_51_7100277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bfc5f719a33a6b17437848cd5fd5a40934ce465f54e605793522403770b4ca +size 508025 diff --git a/datasets/handleImage/train/订单1805765_51_7100237.jpg b/datasets/handleImage/train/订单1805765_51_7100237.jpg new file mode 100644 index 0000000..25d7c07 --- /dev/null +++ b/datasets/handleImage/train/订单1805765_51_7100237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f7d98f3f0da30377aa8adb33cbfd554990702802081ecacc381f144b8c3b02 +size 136809 diff --git a/datasets/handleImage/train/订单1805766_51_7100199.jpg b/datasets/handleImage/train/订单1805766_51_7100199.jpg new file mode 100644 index 0000000..02daca5 --- /dev/null +++ b/datasets/handleImage/train/订单1805766_51_7100199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49c71e94da99c396e4864260c88f2e1aeacab05dc38abed14599e56500009d4 +size 146964 diff --git a/datasets/handleImage/train/订单1805767_51_7100306.jpg b/datasets/handleImage/train/订单1805767_51_7100306.jpg new file mode 100644 index 0000000..446cf85 --- /dev/null +++ b/datasets/handleImage/train/订单1805767_51_7100306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a906025ac6688b6643ee4d447ac84e16de93fe3a0270f5d868c1c7257ffb1e +size 139491 diff --git a/datasets/handleImage/train/订单1805769_51_7100206.jpg b/datasets/handleImage/train/订单1805769_51_7100206.jpg new file mode 100644 index 0000000..368e821 --- /dev/null +++ b/datasets/handleImage/train/订单1805769_51_7100206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26980d33465d017f567b3f8915d9e17dd3ed4f27c272fafb985b98381564107 +size 289943 diff --git a/datasets/handleImage/train/订单1805770_51_7100239.jpg b/datasets/handleImage/train/订单1805770_51_7100239.jpg new file mode 100644 index 0000000..f3d5bf5 --- /dev/null +++ b/datasets/handleImage/train/订单1805770_51_7100239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1f474a6bc6f02d8538cf338075fe85117d86f328ba36af04d6161c08fa4394 +size 139556 diff --git a/datasets/handleImage/train/订单1805771_51_7100316.jpg b/datasets/handleImage/train/订单1805771_51_7100316.jpg new file mode 100644 index 0000000..207b459 --- /dev/null +++ b/datasets/handleImage/train/订单1805771_51_7100316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f839e15a164f08f6e15571ef55f1aeb6ed267cae2c9538e1b49696752cfb2d3 +size 136182 diff --git a/datasets/handleImage/train/订单1805773_51_7100246.jpg b/datasets/handleImage/train/订单1805773_51_7100246.jpg new file mode 100644 index 0000000..a47e1a8 --- /dev/null +++ b/datasets/handleImage/train/订单1805773_51_7100246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a93fc06cf9b0e6da8489f964ef5d247af9b125684cdb062e5529a64791d16fd +size 105831 diff --git a/datasets/handleImage/train/订单1805775_51_7100312.jpg b/datasets/handleImage/train/订单1805775_51_7100312.jpg new file mode 100644 index 0000000..d152bb0 --- /dev/null +++ b/datasets/handleImage/train/订单1805775_51_7100312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44fb3cb5dd0c51f5cff90d1b829bdbb93e82177ad2eabf2a68570396681efe2d +size 130764 diff --git a/datasets/handleImage/train/订单1805779_51_7100335.jpg b/datasets/handleImage/train/订单1805779_51_7100335.jpg new file mode 100644 index 0000000..fab970b --- /dev/null +++ b/datasets/handleImage/train/订单1805779_51_7100335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad55bf7247fdb9f5b2284672e07df169dd7f1000376d7556223d581124dfbce7 +size 166111 diff --git a/datasets/handleImage/train/订单1805782_51_7100361.jpg b/datasets/handleImage/train/订单1805782_51_7100361.jpg new file mode 100644 index 0000000..1506dec --- /dev/null +++ b/datasets/handleImage/train/订单1805782_51_7100361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf71c57f37b5cacd005d7f2a4e3e1cab37cd704c23d048b588982dc3428623b +size 154622 diff --git a/datasets/handleImage/train/订单1805783_51_7100455.jpg b/datasets/handleImage/train/订单1805783_51_7100455.jpg new file mode 100644 index 0000000..f4edb0e --- /dev/null +++ b/datasets/handleImage/train/订单1805783_51_7100455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51214bacaa7788eaf141386d1499128b414dedaf977fbb4a8dce7878ac8446a +size 211715 diff --git a/datasets/handleImage/train/订单1805788_51_7100527.jpg b/datasets/handleImage/train/订单1805788_51_7100527.jpg new file mode 100644 index 0000000..6777963 --- /dev/null +++ b/datasets/handleImage/train/订单1805788_51_7100527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d5bb7ace498b8c6ec51cd2c881d81445059168558163ca71a97a8ced777315 +size 106216 diff --git a/datasets/handleImage/train/订单1805791_51_7100431.jpg b/datasets/handleImage/train/订单1805791_51_7100431.jpg new file mode 100644 index 0000000..b0dcf38 --- /dev/null +++ b/datasets/handleImage/train/订单1805791_51_7100431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd143d57bfdae568113ebcd532f3f4c7ad42fae228a9254652d3934e00d1e993 +size 124771 diff --git a/datasets/handleImage/train/订单1805793_51_7100437.jpg b/datasets/handleImage/train/订单1805793_51_7100437.jpg new file mode 100644 index 0000000..958fa07 --- /dev/null +++ b/datasets/handleImage/train/订单1805793_51_7100437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4429b897129aed7b24b803d156bb7d8da698fbcfc075121ce1bbbf487798d1 +size 121320 diff --git a/datasets/handleImage/train/订单1805794_51_7100487.jpg b/datasets/handleImage/train/订单1805794_51_7100487.jpg new file mode 100644 index 0000000..f212ab5 --- /dev/null +++ b/datasets/handleImage/train/订单1805794_51_7100487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabd5b933dbf807e1c758e73833890ec356a6045faabec47d498cca1d16b3c6f +size 211051 diff --git a/datasets/handleImage/train/订单1805797_51_7100514.jpg b/datasets/handleImage/train/订单1805797_51_7100514.jpg new file mode 100644 index 0000000..4870279 --- /dev/null +++ b/datasets/handleImage/train/订单1805797_51_7100514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d5cd073257c41e606c5da88d2b7cbab98e2f77ab6da8ebe20ba2824b62f9df +size 381484 diff --git a/datasets/handleImage/train/订单1805802_51_7100539.jpg b/datasets/handleImage/train/订单1805802_51_7100539.jpg new file mode 100644 index 0000000..6b70290 --- /dev/null +++ b/datasets/handleImage/train/订单1805802_51_7100539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31087c937585da5dfdb3a0340894f40e4dd533cacd7da8cbacb5753eadc57bd +size 120024 diff --git a/datasets/handleImage/train/订单1805804_51_7100605.jpg b/datasets/handleImage/train/订单1805804_51_7100605.jpg new file mode 100644 index 0000000..67c3c09 --- /dev/null +++ b/datasets/handleImage/train/订单1805804_51_7100605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0c60dff97b8cdbc0b77c7f782453d09d8db53c847b216a30d7e5fc8751a36e +size 76542 diff --git a/datasets/handleImage/train/订单1805806_51_7100666.jpg b/datasets/handleImage/train/订单1805806_51_7100666.jpg new file mode 100644 index 0000000..797a667 --- /dev/null +++ b/datasets/handleImage/train/订单1805806_51_7100666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7f7e47318e006bbbd2f39116575d477bfe8567c7cdf068a8dfe8c896e6f548 +size 135950 diff --git a/datasets/handleImage/train/订单1805807_51_7100667.jpg b/datasets/handleImage/train/订单1805807_51_7100667.jpg new file mode 100644 index 0000000..36fdf6e --- /dev/null +++ b/datasets/handleImage/train/订单1805807_51_7100667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6702ac88a9f866b99d059cc3cbf744603067e58ded91375be999141d320ea93a +size 582718 diff --git a/datasets/handleImage/train/订单1805810_51_7100624.jpg b/datasets/handleImage/train/订单1805810_51_7100624.jpg new file mode 100644 index 0000000..c502268 --- /dev/null +++ b/datasets/handleImage/train/订单1805810_51_7100624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d371f2cdef83ec555089bfab5d2c70038a94b15da2ae71ee3b950688184663c +size 47597 diff --git a/datasets/handleImage/train/订单1805812_51_7100601.jpg b/datasets/handleImage/train/订单1805812_51_7100601.jpg new file mode 100644 index 0000000..2e40f59 --- /dev/null +++ b/datasets/handleImage/train/订单1805812_51_7100601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abaee480e20d46cd4e74f410317073f422c9bd1ea38cf79bcbbc61e02f5728d +size 129339 diff --git a/datasets/handleImage/train/订单1805813_51_7100697.jpg b/datasets/handleImage/train/订单1805813_51_7100697.jpg new file mode 100644 index 0000000..3996355 --- /dev/null +++ b/datasets/handleImage/train/订单1805813_51_7100697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dde929f6107ba42bc89ee0b7ef871babd3a15ceb68b1426fec3836ee080385 +size 129158 diff --git a/datasets/handleImage/train/订单1805814_51_7100643.jpg b/datasets/handleImage/train/订单1805814_51_7100643.jpg new file mode 100644 index 0000000..56768b2 --- /dev/null +++ b/datasets/handleImage/train/订单1805814_51_7100643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dd6aeb2b520e8cf236d2633d2534f8cff5bfde8ea5ae11bf585e255887ec1e +size 136281 diff --git a/datasets/handleImage/train/订单1805815_51_7100717.jpg b/datasets/handleImage/train/订单1805815_51_7100717.jpg new file mode 100644 index 0000000..a1a704b --- /dev/null +++ b/datasets/handleImage/train/订单1805815_51_7100717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25ddf1c155a42f6d6f3a4cae12e3c34c5be2fa37227f157e6129977ebe60d3a +size 95180 diff --git a/datasets/handleImage/train/订单1805817_51_7100718.jpg b/datasets/handleImage/train/订单1805817_51_7100718.jpg new file mode 100644 index 0000000..ed38b84 --- /dev/null +++ b/datasets/handleImage/train/订单1805817_51_7100718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f539bb5e0dd79a0815e745c70faad6633d905a1ba1bdc667d2b25eabad72b7ec +size 89293 diff --git a/datasets/handleImage/train/订单1805819_51_7100678.jpg b/datasets/handleImage/train/订单1805819_51_7100678.jpg new file mode 100644 index 0000000..410d4e3 --- /dev/null +++ b/datasets/handleImage/train/订单1805819_51_7100678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483df4ea7849793e0ff8a417261770ca8326b822253e0bcd7aa6ccaf4f3ff151 +size 280058 diff --git a/datasets/handleImage/train/订单1805821_51_7100715.jpg b/datasets/handleImage/train/订单1805821_51_7100715.jpg new file mode 100644 index 0000000..6f4eecd --- /dev/null +++ b/datasets/handleImage/train/订单1805821_51_7100715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731b9178e2e648e873bb8e949017ba816395b1487e684ad1503f222c428f7445 +size 736744 diff --git a/datasets/handleImage/train/订单1805823_51_7100659.jpg b/datasets/handleImage/train/订单1805823_51_7100659.jpg new file mode 100644 index 0000000..340143a --- /dev/null +++ b/datasets/handleImage/train/订单1805823_51_7100659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2ab8c49edc2f9adc7d2adf003b65f4a455a6943c45f3d8c6ca9cd70af54d72 +size 112156 diff --git a/datasets/handleImage/train/订单1805830_51_7100767.jpg b/datasets/handleImage/train/订单1805830_51_7100767.jpg new file mode 100644 index 0000000..290b49b --- /dev/null +++ b/datasets/handleImage/train/订单1805830_51_7100767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb702a9d9500412cfc91b28d26732e8029e6327cdf1e3f33eff2f8dc1a0646d +size 120716 diff --git a/datasets/handleImage/train/订单1805831_51_7100849.jpg b/datasets/handleImage/train/订单1805831_51_7100849.jpg new file mode 100644 index 0000000..24bab80 --- /dev/null +++ b/datasets/handleImage/train/订单1805831_51_7100849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5b9311e8e7e2f4f8cd670d70a64dbba7bc046881109d1b7f4e4a8cd6a42636 +size 232989 diff --git a/datasets/handleImage/train/订单1805833_51_7100813.jpg b/datasets/handleImage/train/订单1805833_51_7100813.jpg new file mode 100644 index 0000000..5d87c6c --- /dev/null +++ b/datasets/handleImage/train/订单1805833_51_7100813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4315944fc9683ac30bc5c573f767d354ca56d97e1c96a032e11e12d31b8f45b1 +size 376076 diff --git a/datasets/handleImage/train/订单1805834_51_7100798.jpg b/datasets/handleImage/train/订单1805834_51_7100798.jpg new file mode 100644 index 0000000..df6957e --- /dev/null +++ b/datasets/handleImage/train/订单1805834_51_7100798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5e3c5456810546df4cf073835c21e305162b41355b587242fcee438cc297f1 +size 133613 diff --git a/datasets/handleImage/train/订单1805837_51_7100853.jpg b/datasets/handleImage/train/订单1805837_51_7100853.jpg new file mode 100644 index 0000000..47f2fbf --- /dev/null +++ b/datasets/handleImage/train/订单1805837_51_7100853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2f415ba1b3106985022a895d74f0b687020598ac6719abce50fcafd7ddd2cb +size 426388 diff --git a/datasets/handleImage/train/订单1805839_51_7100902.jpg b/datasets/handleImage/train/订单1805839_51_7100902.jpg new file mode 100644 index 0000000..256b0d4 --- /dev/null +++ b/datasets/handleImage/train/订单1805839_51_7100902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8257e5de7c7bdab41ca92c38ae174a6bf4f98df592ab5e281ee1b6f509afa1ba +size 97094 diff --git a/datasets/handleImage/train/订单1805841_51_7100892.jpg b/datasets/handleImage/train/订单1805841_51_7100892.jpg new file mode 100644 index 0000000..77f0b01 --- /dev/null +++ b/datasets/handleImage/train/订单1805841_51_7100892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965c7d2aae6303d2e199d18b379c2db820dcfdf5100aa8b4738f52ed31f97090 +size 240141 diff --git a/datasets/handleImage/train/订单1805842_51_7100929.jpg b/datasets/handleImage/train/订单1805842_51_7100929.jpg new file mode 100644 index 0000000..44bc56f --- /dev/null +++ b/datasets/handleImage/train/订单1805842_51_7100929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc31fa4a612fa25f68440b77574a507c1d9ea384aa99b6048f4c67934bdfc282 +size 361642 diff --git a/datasets/handleImage/train/订单1805843_51_7100959.jpg b/datasets/handleImage/train/订单1805843_51_7100959.jpg new file mode 100644 index 0000000..7a4ee55 --- /dev/null +++ b/datasets/handleImage/train/订单1805843_51_7100959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ceb07d1ef119ac00c273ee85e7f79c27b426339a1c3f35521c0c3ab64b0e81f +size 380960 diff --git a/datasets/handleImage/train/订单1805844_51_7100930.jpg b/datasets/handleImage/train/订单1805844_51_7100930.jpg new file mode 100644 index 0000000..020f9f1 --- /dev/null +++ b/datasets/handleImage/train/订单1805844_51_7100930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b45180aca2b83ce495ad9dfe32d5cda0c8f88e70819a18dea483e078b8ea79 +size 116576 diff --git a/datasets/handleImage/train/订单1805847_51_7100915.jpg b/datasets/handleImage/train/订单1805847_51_7100915.jpg new file mode 100644 index 0000000..2bb655f --- /dev/null +++ b/datasets/handleImage/train/订单1805847_51_7100915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851a51b14d5a9896abc4fb2f6ef491170ea97a6e0bb5a74df72988d252eb9a14 +size 152342 diff --git a/datasets/handleImage/train/订单1805848_51_7101037.jpg b/datasets/handleImage/train/订单1805848_51_7101037.jpg new file mode 100644 index 0000000..7bade1e --- /dev/null +++ b/datasets/handleImage/train/订单1805848_51_7101037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca718c33506c1673b015557e205fac0f986619fd9710a701eefb8d6335d6b60d +size 81769 diff --git a/datasets/handleImage/train/订单1805851_51_7100961.jpg b/datasets/handleImage/train/订单1805851_51_7100961.jpg new file mode 100644 index 0000000..26ce33b --- /dev/null +++ b/datasets/handleImage/train/订单1805851_51_7100961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a94386e6ba259d12cfe51cc1cdf2af2b8e5fed280b37a03e6e6986b8e28c84 +size 112031 diff --git a/datasets/handleImage/train/订单1805852_51_7101016.jpg b/datasets/handleImage/train/订单1805852_51_7101016.jpg new file mode 100644 index 0000000..b6ee283 --- /dev/null +++ b/datasets/handleImage/train/订单1805852_51_7101016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3d297d0101abcba4092185a3a03434c10adfd5d5c6f6dfb101e7982f9f6e2f +size 107181 diff --git a/datasets/handleImage/train/订单1805854_51_7101019.jpg b/datasets/handleImage/train/订单1805854_51_7101019.jpg new file mode 100644 index 0000000..7273695 --- /dev/null +++ b/datasets/handleImage/train/订单1805854_51_7101019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b496738ce5db1f547490c3dea033288f64cb92f89565315843e3d1eae10c735 +size 119587 diff --git a/datasets/handleImage/train/订单1805857_51_7100976.jpg b/datasets/handleImage/train/订单1805857_51_7100976.jpg new file mode 100644 index 0000000..33c553a --- /dev/null +++ b/datasets/handleImage/train/订单1805857_51_7100976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1de8dfac8d47dc67eea38c1a962b7096ca158cc51fd9910f8e36bd4cfdadbe +size 119550 diff --git a/datasets/handleImage/train/订单1805860_51_7101109.jpg b/datasets/handleImage/train/订单1805860_51_7101109.jpg new file mode 100644 index 0000000..f8b5007 --- /dev/null +++ b/datasets/handleImage/train/订单1805860_51_7101109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a059c9965c979a9ce891033100874e3e001ac23c7d457796014dce9fa74f05e +size 122809 diff --git a/datasets/handleImage/train/订单1805861_51_7101063.jpg b/datasets/handleImage/train/订单1805861_51_7101063.jpg new file mode 100644 index 0000000..fa295d4 --- /dev/null +++ b/datasets/handleImage/train/订单1805861_51_7101063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d4e40351bfee9eff0e06d3572a4e295f5701016e49d0afcfa94ea81c4c88a8 +size 112757 diff --git a/datasets/handleImage/train/订单1805862_51_7101209.jpg b/datasets/handleImage/train/订单1805862_51_7101209.jpg new file mode 100644 index 0000000..085d8cc --- /dev/null +++ b/datasets/handleImage/train/订单1805862_51_7101209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e8608437a85dbe99b07de074dca9c5ff3eb2fbbe09e1dbb2f76410a6685cc1 +size 144326 diff --git a/datasets/handleImage/train/订单1805864_51_7101126.jpg b/datasets/handleImage/train/订单1805864_51_7101126.jpg new file mode 100644 index 0000000..b323c14 --- /dev/null +++ b/datasets/handleImage/train/订单1805864_51_7101126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580ffc317003d3164ddbc9f906da4435262f7dfe51fc71a3aafb00ee06dac5f0 +size 380826 diff --git a/datasets/handleImage/train/订单1805865_51_7101100.jpg b/datasets/handleImage/train/订单1805865_51_7101100.jpg new file mode 100644 index 0000000..77330b3 --- /dev/null +++ b/datasets/handleImage/train/订单1805865_51_7101100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4cd3fb2f9ef55bb3e8a5702f0a03872c882cff50fa10f13969e91c327d0036 +size 81234 diff --git a/datasets/handleImage/train/订单1805866_51_7101143.jpg b/datasets/handleImage/train/订单1805866_51_7101143.jpg new file mode 100644 index 0000000..5b6f8da --- /dev/null +++ b/datasets/handleImage/train/订单1805866_51_7101143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb36c1fe0c884569e98233634637a01da7d37cf194bb72e5b0f894054a2214b +size 297328 diff --git a/datasets/handleImage/train/订单1805867_51_7101219.jpg b/datasets/handleImage/train/订单1805867_51_7101219.jpg new file mode 100644 index 0000000..03c3a94 --- /dev/null +++ b/datasets/handleImage/train/订单1805867_51_7101219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e77e256a540480c575889283de807660f400d39832b7f7437d541d58ff3a321 +size 1184294 diff --git a/datasets/handleImage/train/订单1805869_51_7101160.jpg b/datasets/handleImage/train/订单1805869_51_7101160.jpg new file mode 100644 index 0000000..0c2950c --- /dev/null +++ b/datasets/handleImage/train/订单1805869_51_7101160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259ba6937ad638584abbc03aa7993596fa5b752b381669af010f82af00d6106b +size 72884 diff --git a/datasets/handleImage/train/订单1805870_51_7101223.jpg b/datasets/handleImage/train/订单1805870_51_7101223.jpg new file mode 100644 index 0000000..1b7a923 --- /dev/null +++ b/datasets/handleImage/train/订单1805870_51_7101223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe1fa994a2a7f06a6c42404cb7b983338826855d08b8e020c752e0124e18832 +size 155885 diff --git a/datasets/handleImage/train/订单1805871_51_7101186.jpg b/datasets/handleImage/train/订单1805871_51_7101186.jpg new file mode 100644 index 0000000..fd7c57a --- /dev/null +++ b/datasets/handleImage/train/订单1805871_51_7101186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493848eeba1fce9b32d933670a6babe4c4f30eb656f14d1fb309bc5c5ae87865 +size 105051 diff --git a/datasets/handleImage/train/订单1805872_51_7101190.jpg b/datasets/handleImage/train/订单1805872_51_7101190.jpg new file mode 100644 index 0000000..1b9eb4d --- /dev/null +++ b/datasets/handleImage/train/订单1805872_51_7101190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62802136133d0583c54f73cb38d38143dd7cdea75e89c2bf504b290c58b9a53e +size 340712 diff --git a/datasets/handleImage/train/订单1805873_51_7101260.jpg b/datasets/handleImage/train/订单1805873_51_7101260.jpg new file mode 100644 index 0000000..baa9b7d --- /dev/null +++ b/datasets/handleImage/train/订单1805873_51_7101260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b063e185c80ed192acf7b6c9191aa045d09335d958e67159f0700e9e0a2aba86 +size 86169 diff --git a/datasets/handleImage/train/订单1805879_51_7101280.jpg b/datasets/handleImage/train/订单1805879_51_7101280.jpg new file mode 100644 index 0000000..519cadd --- /dev/null +++ b/datasets/handleImage/train/订单1805879_51_7101280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0afe5aaa4212ba1b5ac1384a7adb2bc9e1e9df5e3d12424bc805dec6850f2d8 +size 101993 diff --git a/datasets/handleImage/train/订单1805883_51_7101311.jpg b/datasets/handleImage/train/订单1805883_51_7101311.jpg new file mode 100644 index 0000000..c19087c --- /dev/null +++ b/datasets/handleImage/train/订单1805883_51_7101311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309f7d62f8db1bebb0e9e6e024025af06384d0e243df71cf18609edb17e5440e +size 115245 diff --git a/datasets/handleImage/train/订单1805886_51_7101418.jpg b/datasets/handleImage/train/订单1805886_51_7101418.jpg new file mode 100644 index 0000000..e2eb4d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805886_51_7101418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8889ded03e6c2bb79ef0317627b8f3634da4cdcf1338f9b1dee99b07ccf8344 +size 124535 diff --git a/datasets/handleImage/train/订单1805887_51_7101386.jpg b/datasets/handleImage/train/订单1805887_51_7101386.jpg new file mode 100644 index 0000000..cf05be2 --- /dev/null +++ b/datasets/handleImage/train/订单1805887_51_7101386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ced4b613a163b4c93f30d011723997ae59e3165bf45fa3db32843a67bab6e57 +size 103676 diff --git a/datasets/handleImage/train/订单1805891_51_7101877.jpg b/datasets/handleImage/train/订单1805891_51_7101877.jpg new file mode 100644 index 0000000..2fbafe6 --- /dev/null +++ b/datasets/handleImage/train/订单1805891_51_7101877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba4dd4d541564f2bebaaa35c4530fd8d73565f0d9a46e48e0d1b8fd19689a3f +size 301664 diff --git a/datasets/handleImage/train/订单1805893_51_7101437.jpg b/datasets/handleImage/train/订单1805893_51_7101437.jpg new file mode 100644 index 0000000..76979a1 --- /dev/null +++ b/datasets/handleImage/train/订单1805893_51_7101437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef744bd5f750721be447c16d429bb462a048ba0936dd97fe40d25d64a33e31f +size 101374 diff --git a/datasets/handleImage/train/订单1805894_51_7101473.jpg b/datasets/handleImage/train/订单1805894_51_7101473.jpg new file mode 100644 index 0000000..2d4e9f0 --- /dev/null +++ b/datasets/handleImage/train/订单1805894_51_7101473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44f363573808cf1b14fecff8a8735e202046afdd220ac2ca2c3fedaf95a377c +size 120360 diff --git a/datasets/handleImage/train/订单1805895_51_7101462.jpg b/datasets/handleImage/train/订单1805895_51_7101462.jpg new file mode 100644 index 0000000..a707c67 --- /dev/null +++ b/datasets/handleImage/train/订单1805895_51_7101462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f820f81b6d12a51edc0825f1de309be42ef9ce61754b6028afacfaaa7737804a +size 142117 diff --git a/datasets/handleImage/train/订单1805896_51_7101467.jpg b/datasets/handleImage/train/订单1805896_51_7101467.jpg new file mode 100644 index 0000000..ca2c3a4 --- /dev/null +++ b/datasets/handleImage/train/订单1805896_51_7101467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dffd4a2c0c571cdadc85333ed0a23c68912b840e8ed511881c7a94345bdc534 +size 151813 diff --git a/datasets/handleImage/train/订单1805898_51_7101436.jpg b/datasets/handleImage/train/订单1805898_51_7101436.jpg new file mode 100644 index 0000000..3d47c4c --- /dev/null +++ b/datasets/handleImage/train/订单1805898_51_7101436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e19df82804591a301054a0f2daa741d3ca38e5132e0fcaec69f0bd78f1b76fb +size 174438 diff --git a/datasets/handleImage/train/订单1805902_51_7101479.jpg b/datasets/handleImage/train/订单1805902_51_7101479.jpg new file mode 100644 index 0000000..672463e --- /dev/null +++ b/datasets/handleImage/train/订单1805902_51_7101479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3def7bad0fd68e4d9b6394101e7f484c8527b789ff431711997416b795b794e1 +size 99026 diff --git a/datasets/handleImage/train/订单1805903_51_7101581.jpg b/datasets/handleImage/train/订单1805903_51_7101581.jpg new file mode 100644 index 0000000..d4d0a01 --- /dev/null +++ b/datasets/handleImage/train/订单1805903_51_7101581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e9c154a0d87511ef4e595c95c1d740595619d07eb14c7ef97bbb4869a5975 +size 70271 diff --git a/datasets/handleImage/train/订单1805904_51_7101531.jpg b/datasets/handleImage/train/订单1805904_51_7101531.jpg new file mode 100644 index 0000000..a5768de --- /dev/null +++ b/datasets/handleImage/train/订单1805904_51_7101531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5d5f9a82d6534fb1ea771e55d5ff90cf586d9eabdfb75dbed3e79948f8bc03 +size 170159 diff --git a/datasets/handleImage/train/订单1805909_51_7101514.jpg b/datasets/handleImage/train/订单1805909_51_7101514.jpg new file mode 100644 index 0000000..d1679fe --- /dev/null +++ b/datasets/handleImage/train/订单1805909_51_7101514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3799ad4cc9a53185d70562680c86454764289058e9fa492d244404f7608b931 +size 321908 diff --git a/datasets/handleImage/train/订单1805910_51_7101614.jpg b/datasets/handleImage/train/订单1805910_51_7101614.jpg new file mode 100644 index 0000000..9ecf5c2 --- /dev/null +++ b/datasets/handleImage/train/订单1805910_51_7101614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f23be70b18feddee1947648e1abbff53b56c1e2a8397087180909b818f867b +size 123802 diff --git a/datasets/handleImage/train/订单1805912_51_7101596.jpg b/datasets/handleImage/train/订单1805912_51_7101596.jpg new file mode 100644 index 0000000..5a89db6 --- /dev/null +++ b/datasets/handleImage/train/订单1805912_51_7101596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92470dfcb105a00b55e1e2eda6c4e5aa05ad4ca1437d21b19240ec1e0324ff8 +size 458496 diff --git a/datasets/handleImage/train/订单1805915_51_7101634.jpg b/datasets/handleImage/train/订单1805915_51_7101634.jpg new file mode 100644 index 0000000..f446fc6 --- /dev/null +++ b/datasets/handleImage/train/订单1805915_51_7101634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63acf3476378da63b8829520b78689ca36eb52d9ea61ed3c4f699c863c8183b1 +size 90909 diff --git a/datasets/handleImage/train/订单1805917_51_7101680.jpg b/datasets/handleImage/train/订单1805917_51_7101680.jpg new file mode 100644 index 0000000..1754108 --- /dev/null +++ b/datasets/handleImage/train/订单1805917_51_7101680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b081847508aed587e91b802787030e6053e93936f8913dab112f4299037d823 +size 104704 diff --git a/datasets/handleImage/train/订单1805918_51_7101608.jpg b/datasets/handleImage/train/订单1805918_51_7101608.jpg new file mode 100644 index 0000000..a5ffd29 --- /dev/null +++ b/datasets/handleImage/train/订单1805918_51_7101608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f484435bbbcd375ef3a926b366e8aa3a6df603300fdc58435d7d5fe5e109320b +size 209661 diff --git a/datasets/handleImage/train/订单1805920_51_7101670.jpg b/datasets/handleImage/train/订单1805920_51_7101670.jpg new file mode 100644 index 0000000..55f37d6 --- /dev/null +++ b/datasets/handleImage/train/订单1805920_51_7101670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06a169d0a84534960e03f1f95d15c11b96e79dd55de70b6f7f9b6d7d2d466f5 +size 132977 diff --git a/datasets/handleImage/train/订单1805923_51_7101772.jpg b/datasets/handleImage/train/订单1805923_51_7101772.jpg new file mode 100644 index 0000000..344736f --- /dev/null +++ b/datasets/handleImage/train/订单1805923_51_7101772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f21646c369d5198e0ced729607d6b8e8776b347adb20f8d3d9e63bd9a83a261 +size 194364 diff --git a/datasets/handleImage/train/订单1805924_51_7101695.jpg b/datasets/handleImage/train/订单1805924_51_7101695.jpg new file mode 100644 index 0000000..18dbcb3 --- /dev/null +++ b/datasets/handleImage/train/订单1805924_51_7101695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ff24a60338ff3383fb8ddfe7b237cdbc11acf093a97dbcd6b8d8f8ce0fe403 +size 112115 diff --git a/datasets/handleImage/train/订单1805927_51_7101742.jpg b/datasets/handleImage/train/订单1805927_51_7101742.jpg new file mode 100644 index 0000000..1537c28 --- /dev/null +++ b/datasets/handleImage/train/订单1805927_51_7101742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5dcb0d5fb256fcd6182962501dacbb1ca0c72e13f82fda5ed4af276ff489cf +size 272711 diff --git a/datasets/handleImage/train/订单1805928_51_7101736.jpg b/datasets/handleImage/train/订单1805928_51_7101736.jpg new file mode 100644 index 0000000..140f41f --- /dev/null +++ b/datasets/handleImage/train/订单1805928_51_7101736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec84a7772775abff3801f39e5347afb0ecb2cf8b94bf918dd8e83a37c3e79e63 +size 124516 diff --git a/datasets/handleImage/train/订单1805929_51_7101755.jpg b/datasets/handleImage/train/订单1805929_51_7101755.jpg new file mode 100644 index 0000000..25b4485 --- /dev/null +++ b/datasets/handleImage/train/订单1805929_51_7101755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622d888048f044fe063fa51b0f293eca76bd549d2206df6a36e935d89d54c84d +size 70498 diff --git a/datasets/handleImage/train/订单1805931_51_7101785.jpg b/datasets/handleImage/train/订单1805931_51_7101785.jpg new file mode 100644 index 0000000..c82df51 --- /dev/null +++ b/datasets/handleImage/train/订单1805931_51_7101785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22058f13c49755c9f7b55a3e45a5d39cfde2f0f4fdd4366ad9ac233f5471a5b9 +size 340333 diff --git a/datasets/handleImage/train/订单1805932_51_7101790.jpg b/datasets/handleImage/train/订单1805932_51_7101790.jpg new file mode 100644 index 0000000..15b39b9 --- /dev/null +++ b/datasets/handleImage/train/订单1805932_51_7101790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ffb64f7f0581d355c02174e35d907a14e0d14bee2ba28c50939c0206f494e3 +size 381925 diff --git a/datasets/handleImage/train/订单1805933_51_7101818.jpg b/datasets/handleImage/train/订单1805933_51_7101818.jpg new file mode 100644 index 0000000..c281f6a --- /dev/null +++ b/datasets/handleImage/train/订单1805933_51_7101818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aeeb341ce6cfc6bd17047560655b3a669134ee5bd6cdab171d8bcb0fc5d613e +size 301628 diff --git a/datasets/handleImage/train/订单1805934_51_7101828.jpg b/datasets/handleImage/train/订单1805934_51_7101828.jpg new file mode 100644 index 0000000..7a5e173 --- /dev/null +++ b/datasets/handleImage/train/订单1805934_51_7101828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5036f7a3feb5763e136b0d9cc5fc415c7b93a12440bb47981880065144a6b3f2 +size 77794 diff --git a/datasets/handleImage/train/订单1805936_51_7101821.jpg b/datasets/handleImage/train/订单1805936_51_7101821.jpg new file mode 100644 index 0000000..6f9cd01 --- /dev/null +++ b/datasets/handleImage/train/订单1805936_51_7101821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d955b6fd9d01f4d6d17c82b5b7c9221d1920a3a641921482ef34d35749caed9 +size 110394 diff --git a/datasets/handleImage/train/订单1805937_51_7101863.jpg b/datasets/handleImage/train/订单1805937_51_7101863.jpg new file mode 100644 index 0000000..2e2c241 --- /dev/null +++ b/datasets/handleImage/train/订单1805937_51_7101863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8901dc884363e38fc3bf2e92139954dfb168068c6c6d7b723b55d5b6e0fdaa0 +size 105824 diff --git a/datasets/handleImage/train/订单1805939_51_7101971.jpg b/datasets/handleImage/train/订单1805939_51_7101971.jpg new file mode 100644 index 0000000..ddfa149 --- /dev/null +++ b/datasets/handleImage/train/订单1805939_51_7101971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3528c6adafe6dd623cd91304c646fd73e2b0d54fd0e4b344fb68ab5c7b73598e +size 570613 diff --git a/datasets/handleImage/train/订单1805940_51_7101888.jpg b/datasets/handleImage/train/订单1805940_51_7101888.jpg new file mode 100644 index 0000000..d1bf04e --- /dev/null +++ b/datasets/handleImage/train/订单1805940_51_7101888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f35aeefc650a6b475152a90c22cdcef405b046847711c5b47393f46ed8037dd +size 123723 diff --git a/datasets/handleImage/train/订单1805941_51_7101899.jpg b/datasets/handleImage/train/订单1805941_51_7101899.jpg new file mode 100644 index 0000000..9aadcad --- /dev/null +++ b/datasets/handleImage/train/订单1805941_51_7101899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c554c206648fb8cdc1a3923aa4810406d58b548ea8309aca9233b071a9e5998 +size 465523 diff --git a/datasets/handleImage/train/订单1805942_51_7101907.jpg b/datasets/handleImage/train/订单1805942_51_7101907.jpg new file mode 100644 index 0000000..41030e8 --- /dev/null +++ b/datasets/handleImage/train/订单1805942_51_7101907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24164af87e76a6d56e1d7b8f9f07855f77b6d25c54bd30e9ec685162b5c1534 +size 120148 diff --git a/datasets/handleImage/train/订单1805943_51_7101918.jpg b/datasets/handleImage/train/订单1805943_51_7101918.jpg new file mode 100644 index 0000000..5cab81b --- /dev/null +++ b/datasets/handleImage/train/订单1805943_51_7101918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4165ae0e303d09de416256dbc92d5627e9ee21e851c7e673b76ba74d9e15af5 +size 354867 diff --git a/datasets/handleImage/train/订单1805944_51_7101928.jpg b/datasets/handleImage/train/订单1805944_51_7101928.jpg new file mode 100644 index 0000000..6d33de0 --- /dev/null +++ b/datasets/handleImage/train/订单1805944_51_7101928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca6c65da09ede26f37d3267492b071bcfedb68994e7afef11f8b6fe11a46e49 +size 154372 diff --git a/datasets/handleImage/train/订单1805947_51_7101939.jpg b/datasets/handleImage/train/订单1805947_51_7101939.jpg new file mode 100644 index 0000000..4448e81 --- /dev/null +++ b/datasets/handleImage/train/订单1805947_51_7101939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d5e373b04f62b9e6722d765cec199c8d3c96464f306c726329c705a9012bcb +size 139881 diff --git a/datasets/handleImage/train/订单1805948_51_7101958.jpg b/datasets/handleImage/train/订单1805948_51_7101958.jpg new file mode 100644 index 0000000..9ccca9e --- /dev/null +++ b/datasets/handleImage/train/订单1805948_51_7101958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f2fedac449506ee5a8ae2180df2187e6ae26e170f30496c7931f94aec0ba49 +size 444792 diff --git a/datasets/handleImage/train/订单1805960_51_7102030.jpg b/datasets/handleImage/train/订单1805960_51_7102030.jpg new file mode 100644 index 0000000..cd0be23 --- /dev/null +++ b/datasets/handleImage/train/订单1805960_51_7102030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4063a98b36241fca2bd4c001229b50631a4749be0c62780724dd9201b09bcb78 +size 112071 diff --git a/datasets/handleImage/train/订单1805963_51_7102062.jpg b/datasets/handleImage/train/订单1805963_51_7102062.jpg new file mode 100644 index 0000000..76fe2bd --- /dev/null +++ b/datasets/handleImage/train/订单1805963_51_7102062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9247266ef84123e15850ea8e5696f3a9b1509ec846cdcfe28e3ad27b45142bdb +size 178007 diff --git a/datasets/handleImage/train/订单1805964_51_7102072.jpg b/datasets/handleImage/train/订单1805964_51_7102072.jpg new file mode 100644 index 0000000..09c7fa9 --- /dev/null +++ b/datasets/handleImage/train/订单1805964_51_7102072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15babb403904a3e97e2317aba43c43f4ecbdd4f6a749d1470080bbef92ec6527 +size 129358 diff --git a/datasets/handleImage/train/订单1805965_51_7102082.jpg b/datasets/handleImage/train/订单1805965_51_7102082.jpg new file mode 100644 index 0000000..e5dc06b --- /dev/null +++ b/datasets/handleImage/train/订单1805965_51_7102082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c879069f564b4bc886ed326ae0f2711839abeee09a63b59d45f5bca07ac302 +size 133545 diff --git a/datasets/handleImage/train/订单1805967_51_7102112.jpg b/datasets/handleImage/train/订单1805967_51_7102112.jpg new file mode 100644 index 0000000..074e71c --- /dev/null +++ b/datasets/handleImage/train/订单1805967_51_7102112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcaf10e65d534f28f8532fe9929bbd45c289d4fd1ad9153473cc2cf50f7475e +size 150817 diff --git a/datasets/handleImage/train/订单1805968_51_7102108.jpg b/datasets/handleImage/train/订单1805968_51_7102108.jpg new file mode 100644 index 0000000..7b8f8d2 --- /dev/null +++ b/datasets/handleImage/train/订单1805968_51_7102108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1853233b1df9bc9fc97e61c46fa3d97c2901841d3ffc8b48cb350577b49bd75 +size 130892 diff --git a/datasets/handleImage/train/订单1805969_51_7102119.jpg b/datasets/handleImage/train/订单1805969_51_7102119.jpg new file mode 100644 index 0000000..e475f98 --- /dev/null +++ b/datasets/handleImage/train/订单1805969_51_7102119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7717bbf8d63be7f0e78cb0daa56d15f8bc023d0015daf13a9cd7350851afd877 +size 370935 diff --git a/datasets/handleImage/train/订单1805970_51_7102143.jpg b/datasets/handleImage/train/订单1805970_51_7102143.jpg new file mode 100644 index 0000000..6bde84d --- /dev/null +++ b/datasets/handleImage/train/订单1805970_51_7102143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775605732223c98d1ee7c7aeeb3b733e68fe1f8842aa485684a300c2a3d26105 +size 157638 diff --git a/datasets/handleImage/train/订单1805971_51_7102162.jpg b/datasets/handleImage/train/订单1805971_51_7102162.jpg new file mode 100644 index 0000000..0d08bb4 --- /dev/null +++ b/datasets/handleImage/train/订单1805971_51_7102162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111bd184ba77d8543c4769d805a7880f866b3981aaec5c9611ffe647b7ce1b62 +size 138488 diff --git a/datasets/handleImage/train/订单1805972_51_7102129.jpg b/datasets/handleImage/train/订单1805972_51_7102129.jpg new file mode 100644 index 0000000..4282cdf --- /dev/null +++ b/datasets/handleImage/train/订单1805972_51_7102129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b530d93c69d7f6752fd91ba1ce6c310e1b87227008d72eee56bc7b157aac4eaa +size 105084 diff --git a/datasets/handleImage/train/订单1805975_51_7102175.jpg b/datasets/handleImage/train/订单1805975_51_7102175.jpg new file mode 100644 index 0000000..3300842 --- /dev/null +++ b/datasets/handleImage/train/订单1805975_51_7102175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231b133a7af42cf1e5802dd5969d0e7e4062fe989ebdad214b6dafcf2dc45fc6 +size 130766 diff --git a/datasets/handleImage/train/订单1805976_51_7102161.jpg b/datasets/handleImage/train/订单1805976_51_7102161.jpg new file mode 100644 index 0000000..da2cfa0 --- /dev/null +++ b/datasets/handleImage/train/订单1805976_51_7102161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199cd48ae870137ead10b23059d7fc36a745d43b0a163ee4e8bebd2c97062d52 +size 237540 diff --git a/datasets/handleImage/train/订单1805979_51_7102191.jpg b/datasets/handleImage/train/订单1805979_51_7102191.jpg new file mode 100644 index 0000000..06a8cb6 --- /dev/null +++ b/datasets/handleImage/train/订单1805979_51_7102191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64fc9a2d3e0f9fb6517d3f97d0fc4c1100a8c315ac58fe5cde30b6c4513c946f +size 140565 diff --git a/datasets/handleImage/train/订单1805981_51_7102216.jpg b/datasets/handleImage/train/订单1805981_51_7102216.jpg new file mode 100644 index 0000000..9697dd0 --- /dev/null +++ b/datasets/handleImage/train/订单1805981_51_7102216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0708002ae3d401e25db89317736324791ff000edc4dbdedf790ebe123834f5a9 +size 642835 diff --git a/datasets/handleImage/train/订单1805984_51_7102238.jpg b/datasets/handleImage/train/订单1805984_51_7102238.jpg new file mode 100644 index 0000000..54333ae --- /dev/null +++ b/datasets/handleImage/train/订单1805984_51_7102238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9433ffa66eaf888f8e291bb17f6ed5182915becc179fdf2e450255cfc5ac843d +size 172882 diff --git a/datasets/handleImage/train/订单1805985_51_7102220.jpg b/datasets/handleImage/train/订单1805985_51_7102220.jpg new file mode 100644 index 0000000..50c46a8 --- /dev/null +++ b/datasets/handleImage/train/订单1805985_51_7102220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e325aff94e23569d6fa732a447d25e20ca0480598b150b8260ac8ed4772b3645 +size 144015 diff --git a/datasets/handleImage/train/订单1805988_51_7102280.jpg b/datasets/handleImage/train/订单1805988_51_7102280.jpg new file mode 100644 index 0000000..a844e51 --- /dev/null +++ b/datasets/handleImage/train/订单1805988_51_7102280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba188c56592523c05c2ddf82d715843d5e2e962f00661f70a31e1fed5c4b30e +size 162260 diff --git a/datasets/handleImage/train/订单1805989_51_7102267.jpg b/datasets/handleImage/train/订单1805989_51_7102267.jpg new file mode 100644 index 0000000..9b483aa --- /dev/null +++ b/datasets/handleImage/train/订单1805989_51_7102267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98af65f4e8bf51567c936618685edf0f7af908fdc1cd0bf886519c2ef52b5c4 +size 152037 diff --git a/datasets/handleImage/train/订单1805990_51_7102467.jpg b/datasets/handleImage/train/订单1805990_51_7102467.jpg new file mode 100644 index 0000000..b4e810c --- /dev/null +++ b/datasets/handleImage/train/订单1805990_51_7102467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1a3ba2388fcdad29698b2a6373d44adcf000dc9151adbe4cf579589c04b777 +size 340177 diff --git a/datasets/handleImage/train/订单1805993_51_7102311.jpg b/datasets/handleImage/train/订单1805993_51_7102311.jpg new file mode 100644 index 0000000..aa506dd --- /dev/null +++ b/datasets/handleImage/train/订单1805993_51_7102311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fa01cfea24a5d01770e2634af79ddf1026a450c5c33dd0128a3a3a3a29bf90 +size 300414 diff --git a/datasets/handleImage/train/订单1805996_51_7102352.jpg b/datasets/handleImage/train/订单1805996_51_7102352.jpg new file mode 100644 index 0000000..0755689 --- /dev/null +++ b/datasets/handleImage/train/订单1805996_51_7102352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70efaca4bb4c27ba7740dc872859c6b02a6e63df3d69557d5822d18aa19fd7de +size 142392 diff --git a/datasets/handleImage/train/订单1805997_51_7102410.jpg b/datasets/handleImage/train/订单1805997_51_7102410.jpg new file mode 100644 index 0000000..e4dc8e4 --- /dev/null +++ b/datasets/handleImage/train/订单1805997_51_7102410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d67c14835fdbd09c90f7b147652fca685400e5255e98ab7f67004d00e3a275 +size 119553 diff --git a/datasets/handleImage/train/订单1805998_51_7102420.jpg b/datasets/handleImage/train/订单1805998_51_7102420.jpg new file mode 100644 index 0000000..364e43c --- /dev/null +++ b/datasets/handleImage/train/订单1805998_51_7102420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5fa9c67882fc1c3f828d30236d862bfd9a341adb3813d0212ed3a0c75fb81f +size 129437 diff --git a/datasets/handleImage/train/订单1806000_51_7102336.jpg b/datasets/handleImage/train/订单1806000_51_7102336.jpg new file mode 100644 index 0000000..3b73ce8 --- /dev/null +++ b/datasets/handleImage/train/订单1806000_51_7102336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be369640c77a751f1b213eed461513db315ddb054155ab99445af2f1b9adca83 +size 130028 diff --git a/datasets/handleImage/train/订单1806006_51_7102373.jpg b/datasets/handleImage/train/订单1806006_51_7102373.jpg new file mode 100644 index 0000000..089713f --- /dev/null +++ b/datasets/handleImage/train/订单1806006_51_7102373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460a8797028c962be0dfcd4f018babf9fcf9e8a51591bdebf6c703de0d0ced68 +size 683133 diff --git a/datasets/handleImage/train/订单1806008_51_7102438.jpg b/datasets/handleImage/train/订单1806008_51_7102438.jpg new file mode 100644 index 0000000..466195b --- /dev/null +++ b/datasets/handleImage/train/订单1806008_51_7102438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c266a56273e8114306de688e1258148dcbcbb5f2904e93706e4132c2a685da31 +size 337425 diff --git a/datasets/handleImage/train/订单1806010_51_7102491.jpg b/datasets/handleImage/train/订单1806010_51_7102491.jpg new file mode 100644 index 0000000..863b0f6 --- /dev/null +++ b/datasets/handleImage/train/订单1806010_51_7102491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4a1e28200c22d0a0012302d073f00b74fc33e75e139039a0774d52dbd33c0a +size 163412 diff --git a/datasets/handleImage/train/订单1806011_51_7102502.jpg b/datasets/handleImage/train/订单1806011_51_7102502.jpg new file mode 100644 index 0000000..df60722 --- /dev/null +++ b/datasets/handleImage/train/订单1806011_51_7102502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4c206fda9b25b92846428300535d9d7829efd6221e91ece8ee094fa6349071 +size 695414 diff --git a/datasets/handleImage/train/订单1806014_51_7102538.jpg b/datasets/handleImage/train/订单1806014_51_7102538.jpg new file mode 100644 index 0000000..06f6e92 --- /dev/null +++ b/datasets/handleImage/train/订单1806014_51_7102538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f556c59cd5c1b8d06326d5fd104a26696b03dae49369ffa7f4c4e7df1cb0e0c +size 157591 diff --git a/datasets/handleImage/train/订单1806018_51_7102536.jpg b/datasets/handleImage/train/订单1806018_51_7102536.jpg new file mode 100644 index 0000000..55d45b0 --- /dev/null +++ b/datasets/handleImage/train/订单1806018_51_7102536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a84046b833b8b75f971bbd14fa77836b020a6a9ab171b8cd52b2c4d688f6a3b +size 139426 diff --git a/datasets/handleImage/train/订单1806019_51_7102564.jpg b/datasets/handleImage/train/订单1806019_51_7102564.jpg new file mode 100644 index 0000000..7a683ea --- /dev/null +++ b/datasets/handleImage/train/订单1806019_51_7102564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b1688d480e0f3ff04e7f180eb4715b47d9e1bdff05c180962ae21cad237c3c +size 141420 diff --git a/datasets/handleImage/train/订单1806020_51_7102512.jpg b/datasets/handleImage/train/订单1806020_51_7102512.jpg new file mode 100644 index 0000000..7cb00d8 --- /dev/null +++ b/datasets/handleImage/train/订单1806020_51_7102512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809dacc00bd8b62fba4810ba4d970b409d11b0d0691705e31c1c81d8ac4499e2 +size 145913 diff --git a/datasets/handleImage/train/订单1806022_51_7102599.jpg b/datasets/handleImage/train/订单1806022_51_7102599.jpg new file mode 100644 index 0000000..cb2f208 --- /dev/null +++ b/datasets/handleImage/train/订单1806022_51_7102599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9caad96fc050bd8e9e3e5387424260672334049d2c69d6e20cb2a002830cc376 +size 126786 diff --git a/datasets/handleImage/train/订单1806029_51_7102584.jpg b/datasets/handleImage/train/订单1806029_51_7102584.jpg new file mode 100644 index 0000000..fdcfa0e --- /dev/null +++ b/datasets/handleImage/train/订单1806029_51_7102584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4283cf19f37b50cd4c2de1a0bb934cd71a3e7474810d47fdd45bab1c0b8ff71 +size 524351 diff --git a/datasets/handleImage/train/订单1806031_51_7102704.jpg b/datasets/handleImage/train/订单1806031_51_7102704.jpg new file mode 100644 index 0000000..987d1e0 --- /dev/null +++ b/datasets/handleImage/train/订单1806031_51_7102704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b76a356c46fc6d3b94bc22cf802a0adc1704c4b211c04f80a7b4b97ec52d7a +size 565952 diff --git a/datasets/handleImage/train/订单1806033_51_7102627.jpg b/datasets/handleImage/train/订单1806033_51_7102627.jpg new file mode 100644 index 0000000..34e5287 --- /dev/null +++ b/datasets/handleImage/train/订单1806033_51_7102627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeccfa7aa3d0cd49c51787cd25e4bcd53e59e014ba194ee8de6e1955834468fc +size 119137 diff --git a/datasets/handleImage/train/订单1806036_51_7102652.jpg b/datasets/handleImage/train/订单1806036_51_7102652.jpg new file mode 100644 index 0000000..c41e7a2 --- /dev/null +++ b/datasets/handleImage/train/订单1806036_51_7102652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19956582af6e4ffc705ea99c695564471f8b19a2530f45c8c4cb4adcaffd0c9f +size 153733 diff --git a/datasets/handleImage/train/订单1806040_51_7102691.jpg b/datasets/handleImage/train/订单1806040_51_7102691.jpg new file mode 100644 index 0000000..c008772 --- /dev/null +++ b/datasets/handleImage/train/订单1806040_51_7102691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dee1cb89e0aa83067e33272ba8a194cc1b4333329e77a29ca053bfda0e6fd7 +size 146396 diff --git a/datasets/handleImage/train/订单1806042_51_7102728.jpg b/datasets/handleImage/train/订单1806042_51_7102728.jpg new file mode 100644 index 0000000..3786a38 --- /dev/null +++ b/datasets/handleImage/train/订单1806042_51_7102728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51409adfd1293bb8b7af64695e5a3489a02e3a480247bbe5acadd6eacdd41dbd +size 304860 diff --git a/datasets/handleImage/train/订单1806043_51_7102888.jpg b/datasets/handleImage/train/订单1806043_51_7102888.jpg new file mode 100644 index 0000000..df5d526 --- /dev/null +++ b/datasets/handleImage/train/订单1806043_51_7102888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e371419c94c1d085c986290c022358697d65d8dd1c23ded0c466d1f87440c0 +size 705882 diff --git a/datasets/handleImage/train/订单1806044_51_7102661.jpg b/datasets/handleImage/train/订单1806044_51_7102661.jpg new file mode 100644 index 0000000..a9335de --- /dev/null +++ b/datasets/handleImage/train/订单1806044_51_7102661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe24239bac24e3557fb48a01a402adf4ca51acce6978cabfa489d553c25ffa9 +size 114875 diff --git a/datasets/handleImage/train/订单1806050_51_7102748.jpg b/datasets/handleImage/train/订单1806050_51_7102748.jpg new file mode 100644 index 0000000..fdd649c --- /dev/null +++ b/datasets/handleImage/train/订单1806050_51_7102748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d76a9324624acc0190b068fbc3e43294cec96cd31653bb57bc3ba1802db0ee +size 108135 diff --git a/datasets/handleImage/train/订单1806053_51_7102727.jpg b/datasets/handleImage/train/订单1806053_51_7102727.jpg new file mode 100644 index 0000000..f57bb6f --- /dev/null +++ b/datasets/handleImage/train/订单1806053_51_7102727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5c4a65cbe6a13c6a43f921ef76d9eb858b9bf2f095b8fd2a6d00b2d45a963c +size 79420 diff --git a/datasets/handleImage/train/订单1806056_51_7102894.jpg b/datasets/handleImage/train/订单1806056_51_7102894.jpg new file mode 100644 index 0000000..6692414 --- /dev/null +++ b/datasets/handleImage/train/订单1806056_51_7102894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4a17897b55291bde3521fde286e7b9d4745d3de73046cfee89abede6c3919f +size 243976 diff --git a/datasets/handleImage/train/订单1806058_51_7102805.jpg b/datasets/handleImage/train/订单1806058_51_7102805.jpg new file mode 100644 index 0000000..efd51db --- /dev/null +++ b/datasets/handleImage/train/订单1806058_51_7102805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e8a8be3844c9d063e319f466be7c63c64d87dbdc5f8fc9a7cfdfacd1b7058e +size 143974 diff --git a/datasets/handleImage/train/订单1806059_51_7102841.jpg b/datasets/handleImage/train/订单1806059_51_7102841.jpg new file mode 100644 index 0000000..20a5c86 --- /dev/null +++ b/datasets/handleImage/train/订单1806059_51_7102841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fba2bdaa7f064e46b58b032d34727d70b8441638ad0b6cda7209689d0a7a7b7 +size 151640 diff --git a/datasets/handleImage/train/订单1806060_51_7102808.jpg b/datasets/handleImage/train/订单1806060_51_7102808.jpg new file mode 100644 index 0000000..08a62d6 --- /dev/null +++ b/datasets/handleImage/train/订单1806060_51_7102808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7c5de34828ec6e0195d6bce130e164a1d79a1ddab576688b2c6191b05c6d14 +size 131549 diff --git a/datasets/handleImage/train/订单1806062_51_7103083.jpg b/datasets/handleImage/train/订单1806062_51_7103083.jpg new file mode 100644 index 0000000..9b5de49 --- /dev/null +++ b/datasets/handleImage/train/订单1806062_51_7103083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdacc9137365f41d9812967ddfdabe0d4e7b7718c30b0fbd285d116d14aac39d +size 579049 diff --git a/datasets/handleImage/train/订单1806064_51_7102915.jpg b/datasets/handleImage/train/订单1806064_51_7102915.jpg new file mode 100644 index 0000000..6e43d49 --- /dev/null +++ b/datasets/handleImage/train/订单1806064_51_7102915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022e716b75467d256552015c9acca519c60ed6af2335473c58194f018f6876db +size 129224 diff --git a/datasets/handleImage/train/订单1806067_51_7103041.jpg b/datasets/handleImage/train/订单1806067_51_7103041.jpg new file mode 100644 index 0000000..5d49a10 --- /dev/null +++ b/datasets/handleImage/train/订单1806067_51_7103041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0af7b11ecd446adf1c40c4c8c60dbd2865a063d78bb056fa1e6019f6bb355f1 +size 127133 diff --git a/datasets/handleImage/train/订单1806068_51_7102992.jpg b/datasets/handleImage/train/订单1806068_51_7102992.jpg new file mode 100644 index 0000000..7188df0 --- /dev/null +++ b/datasets/handleImage/train/订单1806068_51_7102992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83182f7c6ee298f7b26bd27b6a64ea2c95ef6774ecc48fc2104fa4b633cf882 +size 160731 diff --git a/datasets/handleImage/train/订单1806070_51_7102892.jpg b/datasets/handleImage/train/订单1806070_51_7102892.jpg new file mode 100644 index 0000000..1c3405e --- /dev/null +++ b/datasets/handleImage/train/订单1806070_51_7102892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c5c81fa22226e289d032234aa21a780552389893db56ae850159efd866db41 +size 586608 diff --git a/datasets/handleImage/train/订单1806071_51_7102940.jpg b/datasets/handleImage/train/订单1806071_51_7102940.jpg new file mode 100644 index 0000000..adb6e05 --- /dev/null +++ b/datasets/handleImage/train/订单1806071_51_7102940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ab14527f82666ceea71c877ffeb585da376d1421b573c459fc9339cf6c3fb7 +size 135949 diff --git a/datasets/handleImage/train/订单1806072_51_7102966.jpg b/datasets/handleImage/train/订单1806072_51_7102966.jpg new file mode 100644 index 0000000..1fd0d29 --- /dev/null +++ b/datasets/handleImage/train/订单1806072_51_7102966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7030f1efeb4e1ae3b079948db6f1908bfae6388ba3e8a784e65743a6019b085b +size 329848 diff --git a/datasets/handleImage/train/订单1806073_51_7103007.jpg b/datasets/handleImage/train/订单1806073_51_7103007.jpg new file mode 100644 index 0000000..0cc3d20 --- /dev/null +++ b/datasets/handleImage/train/订单1806073_51_7103007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00a67bb43556395d456f2fdc79276b63a9a9c99b996eeb876f3ac71b007ddf5 +size 131612 diff --git a/datasets/handleImage/train/订单1806074_51_7102995.jpg b/datasets/handleImage/train/订单1806074_51_7102995.jpg new file mode 100644 index 0000000..b9abc2b --- /dev/null +++ b/datasets/handleImage/train/订单1806074_51_7102995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8e7be680ede509ca36efbdf570cd9394060d77fd8032e0fbd4a28cd1b28c54 +size 136516 diff --git a/datasets/handleImage/train/订单1806078_51_7103036.jpg b/datasets/handleImage/train/订单1806078_51_7103036.jpg new file mode 100644 index 0000000..68e38a1 --- /dev/null +++ b/datasets/handleImage/train/订单1806078_51_7103036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24bc134a7fb378bf6e146b86fab6b12cff9ece83de1bee605a158fed2d77966 +size 565162 diff --git a/datasets/handleImage/train/订单1806079_51_7103004.jpg b/datasets/handleImage/train/订单1806079_51_7103004.jpg new file mode 100644 index 0000000..b9579f6 --- /dev/null +++ b/datasets/handleImage/train/订单1806079_51_7103004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccbd4834b65be941a45736d0497aeeb3790afdc68cd62488424f767a1c8d217 +size 152214 diff --git a/datasets/handleImage/train/订单1806081_51_7102935.jpg b/datasets/handleImage/train/订单1806081_51_7102935.jpg new file mode 100644 index 0000000..4896c32 --- /dev/null +++ b/datasets/handleImage/train/订单1806081_51_7102935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab3d14bdb7db06ffaccd5a4a52c741025bf4847ea28a49681748c134c24696a +size 141918 diff --git a/datasets/handleImage/train/订单1806083_51_7102978.jpg b/datasets/handleImage/train/订单1806083_51_7102978.jpg new file mode 100644 index 0000000..d19f749 --- /dev/null +++ b/datasets/handleImage/train/订单1806083_51_7102978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98443f96e69f6bf6c7743f644f46c209b062082f8598573cef410175cdaac20b +size 554416 diff --git a/datasets/handleImage/train/订单1806085_51_7103039.jpg b/datasets/handleImage/train/订单1806085_51_7103039.jpg new file mode 100644 index 0000000..ee2dd17 --- /dev/null +++ b/datasets/handleImage/train/订单1806085_51_7103039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7802c6b374973af0324ca1822366137565deaf20a5e017ce9ec433b2741be8a9 +size 160428 diff --git a/datasets/handleImage/train/订单1806088_51_7103121.jpg b/datasets/handleImage/train/订单1806088_51_7103121.jpg new file mode 100644 index 0000000..05cf7a9 --- /dev/null +++ b/datasets/handleImage/train/订单1806088_51_7103121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe6a2ab39f898223eeb17a5d331e16feaea640a1a14d5d5fc05d8a647d78a0b +size 140649 diff --git a/datasets/handleImage/train/订单1806091_51_7103122.jpg b/datasets/handleImage/train/订单1806091_51_7103122.jpg new file mode 100644 index 0000000..bac2907 --- /dev/null +++ b/datasets/handleImage/train/订单1806091_51_7103122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb1ef33dfbf4ec6d424ede30655fb5e89b9edad541a528b2215a488c6f543f3 +size 149512 diff --git a/datasets/handleImage/train/订单1806093_51_7103269.jpg b/datasets/handleImage/train/订单1806093_51_7103269.jpg new file mode 100644 index 0000000..2f5b083 --- /dev/null +++ b/datasets/handleImage/train/订单1806093_51_7103269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3401ea3e33e3a6cbe42662fda1963d6c14d2f62195d6e71e849e6cc92e4a42 +size 283040 diff --git a/datasets/handleImage/train/订单1806100_51_7103196.jpg b/datasets/handleImage/train/订单1806100_51_7103196.jpg new file mode 100644 index 0000000..ce2296b --- /dev/null +++ b/datasets/handleImage/train/订单1806100_51_7103196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1f7a205971cbed6362f5877e254b952074c311ad452754861561613d89973f +size 166526 diff --git a/datasets/handleImage/train/订单1806101_51_7103288.jpg b/datasets/handleImage/train/订单1806101_51_7103288.jpg new file mode 100644 index 0000000..efbe223 --- /dev/null +++ b/datasets/handleImage/train/订单1806101_51_7103288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa31ecddf1427d471fcae1852dd8dd6881b7464e2eb596bd76dde8308d5ad85 +size 74931 diff --git a/datasets/handleImage/train/订单1806105_51_7103283.jpg b/datasets/handleImage/train/订单1806105_51_7103283.jpg new file mode 100644 index 0000000..6607202 --- /dev/null +++ b/datasets/handleImage/train/订单1806105_51_7103283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f782681b532751d1309749e4185c52b0e4934bd76c30b2e84841fcbdb2e70662 +size 552193 diff --git a/datasets/handleImage/train/订单1806106_51_7103306.jpg b/datasets/handleImage/train/订单1806106_51_7103306.jpg new file mode 100644 index 0000000..8b58447 --- /dev/null +++ b/datasets/handleImage/train/订单1806106_51_7103306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e7158302a750e3b1e6d6a4d5e61b1fa44683765167e3485a5d7554d3b551f +size 212115 diff --git a/datasets/handleImage/train/订单1806107_51_7103354.jpg b/datasets/handleImage/train/订单1806107_51_7103354.jpg new file mode 100644 index 0000000..e9f487e --- /dev/null +++ b/datasets/handleImage/train/订单1806107_51_7103354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c758cfc1eae2218575c491621d7f0ac2d1631339948ea77c51897288e6a1ef +size 207124 diff --git a/datasets/handleImage/train/订单1806110_51_7103334.jpg b/datasets/handleImage/train/订单1806110_51_7103334.jpg new file mode 100644 index 0000000..8d4598c --- /dev/null +++ b/datasets/handleImage/train/订单1806110_51_7103334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc06e935a38c5beb616813ccf7f866a10ffefe999ead6a1f7b350e5aa84d4f8c +size 112615 diff --git a/datasets/handleImage/train/订单1806113_51_7103433.jpg b/datasets/handleImage/train/订单1806113_51_7103433.jpg new file mode 100644 index 0000000..59ce2ed --- /dev/null +++ b/datasets/handleImage/train/订单1806113_51_7103433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5b6f5a0fcbdef6202e0d529409ef141fee7cf8318e260115726d9b304223ea +size 137164 diff --git a/datasets/handleImage/train/订单1806114_51_7103385.jpg b/datasets/handleImage/train/订单1806114_51_7103385.jpg new file mode 100644 index 0000000..d30278e --- /dev/null +++ b/datasets/handleImage/train/订单1806114_51_7103385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550ccc3795af9e91b980e3dcb43b474a5cee00f3ba911ae683560b6abb0247c6 +size 127734 diff --git a/datasets/handleImage/train/订单1806115_51_7103376.jpg b/datasets/handleImage/train/订单1806115_51_7103376.jpg new file mode 100644 index 0000000..84c59de --- /dev/null +++ b/datasets/handleImage/train/订单1806115_51_7103376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8703a2400d438ff86dbd04bab5d6a07c963db108e28190e1217cfdda63e06d30 +size 160132 diff --git a/datasets/handleImage/train/订单1806116_51_7103437.jpg b/datasets/handleImage/train/订单1806116_51_7103437.jpg new file mode 100644 index 0000000..88d4403 --- /dev/null +++ b/datasets/handleImage/train/订单1806116_51_7103437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a55556dbe8b5855a97dcbe539396d5d17533fe3b4e4b5bb48adfb5ed742c4a +size 158801 diff --git a/datasets/handleImage/train/订单1806117_51_7103452.jpg b/datasets/handleImage/train/订单1806117_51_7103452.jpg new file mode 100644 index 0000000..53b3e2a --- /dev/null +++ b/datasets/handleImage/train/订单1806117_51_7103452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a52b3ddc7f1796b1ede90bd8878507de31edbd7fe218669c71795f0142a8c26 +size 89005 diff --git a/datasets/handleImage/train/订单1806118_51_7103420.jpg b/datasets/handleImage/train/订单1806118_51_7103420.jpg new file mode 100644 index 0000000..46d6f6e --- /dev/null +++ b/datasets/handleImage/train/订单1806118_51_7103420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe978099ec6724ab269702607cf591c2440d372d9da5edc52a52d2a0d5f9feb0 +size 127382 diff --git a/datasets/handleImage/train/订单1806120_51_7103423.jpg b/datasets/handleImage/train/订单1806120_51_7103423.jpg new file mode 100644 index 0000000..58b5406 --- /dev/null +++ b/datasets/handleImage/train/订单1806120_51_7103423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120432befbd8a2454e9d422b682eba41f850bd5c358c796cf3664b3f2af1334d +size 118657 diff --git a/datasets/handleImage/train/订单1806123_51_7103545.jpg b/datasets/handleImage/train/订单1806123_51_7103545.jpg new file mode 100644 index 0000000..8cabe93 --- /dev/null +++ b/datasets/handleImage/train/订单1806123_51_7103545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc5e941884ebc3f6165ec4e995bf9bfead29a5430648ad4b93ecaf69e2663b7 +size 231071 diff --git a/datasets/handleImage/train/订单1806125_51_7103474.jpg b/datasets/handleImage/train/订单1806125_51_7103474.jpg new file mode 100644 index 0000000..5bf6541 --- /dev/null +++ b/datasets/handleImage/train/订单1806125_51_7103474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d602db28312d51c222e4a997f62923c0ee564119178a6d4f2e9f884c71b002 +size 532351 diff --git a/datasets/handleImage/train/订单1806126_51_7103481.jpg b/datasets/handleImage/train/订单1806126_51_7103481.jpg new file mode 100644 index 0000000..1cd5553 --- /dev/null +++ b/datasets/handleImage/train/订单1806126_51_7103481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e63ee621427340c435d4ef67e15fd88ce5513443f4410d6e48445a159d4de7c +size 137532 diff --git a/datasets/handleImage/train/订单1806128_51_7103584.jpg b/datasets/handleImage/train/订单1806128_51_7103584.jpg new file mode 100644 index 0000000..295b773 --- /dev/null +++ b/datasets/handleImage/train/订单1806128_51_7103584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f86b0058b4825e8c5180377f1b809f5061669528f5ebc05a355cde1216bddd8 +size 566223 diff --git a/datasets/handleImage/train/订单1806130_51_7103513.jpg b/datasets/handleImage/train/订单1806130_51_7103513.jpg new file mode 100644 index 0000000..7f66676 --- /dev/null +++ b/datasets/handleImage/train/订单1806130_51_7103513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36d5c3dbfae995bf6cb975168cd7f6e71dd06302cbd7ed12226dbdfdc94c716 +size 575382 diff --git a/datasets/handleImage/train/订单1806131_51_7103563.jpg b/datasets/handleImage/train/订单1806131_51_7103563.jpg new file mode 100644 index 0000000..540c565 --- /dev/null +++ b/datasets/handleImage/train/订单1806131_51_7103563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02ed1bed74fd404d7632426c5a90e6781b843b38f40d16b387e663168569c35 +size 266089 diff --git a/datasets/handleImage/train/订单1806133_51_7103528.jpg b/datasets/handleImage/train/订单1806133_51_7103528.jpg new file mode 100644 index 0000000..4f99d5e --- /dev/null +++ b/datasets/handleImage/train/订单1806133_51_7103528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e9e4547e881e05b316927d6508a8ded34939f2fe79772f9549e477e8fbfa3d +size 130178 diff --git a/datasets/handleImage/train/订单1806136_51_7103552.jpg b/datasets/handleImage/train/订单1806136_51_7103552.jpg new file mode 100644 index 0000000..0d8bf82 --- /dev/null +++ b/datasets/handleImage/train/订单1806136_51_7103552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bb8903597ac149de780383988cae4bc48544069d10125beeae0c20617bfbdb +size 161391 diff --git a/datasets/handleImage/train/订单1806141_51_7103695.jpg b/datasets/handleImage/train/订单1806141_51_7103695.jpg new file mode 100644 index 0000000..0397e62 --- /dev/null +++ b/datasets/handleImage/train/订单1806141_51_7103695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778e45238d4484997f1ffd87a5b1630e98b3c20b8176b5d02062dccad4f6c71a +size 125050 diff --git a/datasets/handleImage/train/订单1806142_51_7105268.jpg b/datasets/handleImage/train/订单1806142_51_7105268.jpg new file mode 100644 index 0000000..fe54357 --- /dev/null +++ b/datasets/handleImage/train/订单1806142_51_7105268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1298d6e7ea461c89aed2d499decd22064dabbb275028864e26ac65e488a1f2f +size 97306 diff --git a/datasets/handleImage/train/订单1806144_51_7103599.jpg b/datasets/handleImage/train/订单1806144_51_7103599.jpg new file mode 100644 index 0000000..696e5f5 --- /dev/null +++ b/datasets/handleImage/train/订单1806144_51_7103599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82920f02a52a16f6d6d7a8e973ef2f563c9166be46df8f6959e3b6fad203aeb6 +size 110473 diff --git a/datasets/handleImage/train/订单1806146_51_7103703.jpg b/datasets/handleImage/train/订单1806146_51_7103703.jpg new file mode 100644 index 0000000..46d09bb --- /dev/null +++ b/datasets/handleImage/train/订单1806146_51_7103703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd73127881b9712cdaded4e207419a63742ecc8150c55dc6bde1da2bcd92e30 +size 101631 diff --git a/datasets/handleImage/train/订单1806148_51_7103678.jpg b/datasets/handleImage/train/订单1806148_51_7103678.jpg new file mode 100644 index 0000000..b7ac073 --- /dev/null +++ b/datasets/handleImage/train/订单1806148_51_7103678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd23c47b24b0ff2cfa8748e6c160d9faa4f115b6c7775912f1a36a53f2210211 +size 126267 diff --git a/datasets/handleImage/train/订单1806152_51_7103811.jpg b/datasets/handleImage/train/订单1806152_51_7103811.jpg new file mode 100644 index 0000000..2c43dad --- /dev/null +++ b/datasets/handleImage/train/订单1806152_51_7103811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd60077ea683d9c4efb7d684910d540d9e2f4417ba36daa9ba81d4a72bd4e70 +size 156336 diff --git a/datasets/handleImage/train/订单1806158_51_7103859.jpg b/datasets/handleImage/train/订单1806158_51_7103859.jpg new file mode 100644 index 0000000..32169c0 --- /dev/null +++ b/datasets/handleImage/train/订单1806158_51_7103859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2906c8d417b93daa42714a565c2932844487ad416278e1afbe8d7c36d628aa37 +size 199393 diff --git a/datasets/handleImage/train/订单1806159_51_7103731.jpg b/datasets/handleImage/train/订单1806159_51_7103731.jpg new file mode 100644 index 0000000..b1b6a27 --- /dev/null +++ b/datasets/handleImage/train/订单1806159_51_7103731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27d1a5cbe1efb0b17b2e18375d734dd5fbe5d9acfe555d61110f58691b41468 +size 135760 diff --git a/datasets/handleImage/train/订单1806160_51_7103768.jpg b/datasets/handleImage/train/订单1806160_51_7103768.jpg new file mode 100644 index 0000000..631a705 --- /dev/null +++ b/datasets/handleImage/train/订单1806160_51_7103768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3a2bc4143065ee7f3f3ff923dfbf9480c1b8860900a058359476fdce83470b +size 357192 diff --git a/datasets/handleImage/train/订单1806166_51_7103910.jpg b/datasets/handleImage/train/订单1806166_51_7103910.jpg new file mode 100644 index 0000000..c756ebf --- /dev/null +++ b/datasets/handleImage/train/订单1806166_51_7103910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844ac121e8b4fc014e93cd7919ba74761c05fb4b919fca4f0ca747704376ead1 +size 131688 diff --git a/datasets/handleImage/train/订单1806169_51_7103877.jpg b/datasets/handleImage/train/订单1806169_51_7103877.jpg new file mode 100644 index 0000000..2e6ef05 --- /dev/null +++ b/datasets/handleImage/train/订单1806169_51_7103877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aea56c7ec136fe4ce7a22040adc9dda922fd706d627777550251f103278a37 +size 116116 diff --git a/datasets/handleImage/train/订单1806173_51_7104016.jpg b/datasets/handleImage/train/订单1806173_51_7104016.jpg new file mode 100644 index 0000000..3717207 --- /dev/null +++ b/datasets/handleImage/train/订单1806173_51_7104016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592b48df07fef2bed92bee1389b9bbe111f5a136f01f5ec4dd4694f23829653 +size 85833 diff --git a/datasets/handleImage/train/订单1806174_51_7103900.jpg b/datasets/handleImage/train/订单1806174_51_7103900.jpg new file mode 100644 index 0000000..5c56e6e --- /dev/null +++ b/datasets/handleImage/train/订单1806174_51_7103900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f6a209ec7a560079b7d0414384d6dfd813fc6508b6905280ee0729053f1873 +size 241457 diff --git a/datasets/handleImage/train/订单1806178_51_7103983.jpg b/datasets/handleImage/train/订单1806178_51_7103983.jpg new file mode 100644 index 0000000..47ed410 --- /dev/null +++ b/datasets/handleImage/train/订单1806178_51_7103983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939f200c3a4bf1385bc4267344ef1dffb8fe839e1fb87b30d1885c60cfb877ef +size 437055 diff --git a/datasets/handleImage/train/订单1806180_51_7103956.jpg b/datasets/handleImage/train/订单1806180_51_7103956.jpg new file mode 100644 index 0000000..4513209 --- /dev/null +++ b/datasets/handleImage/train/订单1806180_51_7103956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e746a8a154b36f93542eed763f4d1304f1e72280e0771ecfd1ea19ccbaff70c +size 144187 diff --git a/datasets/handleImage/train/订单1806188_51_7104051.jpg b/datasets/handleImage/train/订单1806188_51_7104051.jpg new file mode 100644 index 0000000..8e74fcd --- /dev/null +++ b/datasets/handleImage/train/订单1806188_51_7104051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b7631905d0dba243996b25fdbfc1f311dc459469e81d6d2608884c0fcefaec +size 173525 diff --git a/datasets/handleImage/train/订单1806189_51_7103908.jpg b/datasets/handleImage/train/订单1806189_51_7103908.jpg new file mode 100644 index 0000000..298b436 --- /dev/null +++ b/datasets/handleImage/train/订单1806189_51_7103908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd693448f77a57e56e17d95b31bba9f50c8b11464be389ff9a6a606a1603ee3b +size 140412 diff --git a/datasets/handleImage/train/订单1806191_51_7103989.jpg b/datasets/handleImage/train/订单1806191_51_7103989.jpg new file mode 100644 index 0000000..bef9c02 --- /dev/null +++ b/datasets/handleImage/train/订单1806191_51_7103989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9731b1f8142174a54b081207708ffb053c4279d5c0918d5fe680db72ade27c64 +size 57197 diff --git a/datasets/handleImage/train/订单1806192_51_7103954.jpg b/datasets/handleImage/train/订单1806192_51_7103954.jpg new file mode 100644 index 0000000..ff99ae4 --- /dev/null +++ b/datasets/handleImage/train/订单1806192_51_7103954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe18dc11e4476f6ab7c1cb730c6e3bdbf1a1928fac13e5b1431209a7d5f37dd +size 176301 diff --git a/datasets/handleImage/train/订单1806194_51_7103950.jpg b/datasets/handleImage/train/订单1806194_51_7103950.jpg new file mode 100644 index 0000000..b521b0a --- /dev/null +++ b/datasets/handleImage/train/订单1806194_51_7103950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9501856018aa4a6da113033d8836ca1e51dbaa54184e5a6a4f5b3ec604274e9 +size 212171 diff --git a/datasets/handleImage/train/订单1806195_51_7104360.jpg b/datasets/handleImage/train/订单1806195_51_7104360.jpg new file mode 100644 index 0000000..c7af207 --- /dev/null +++ b/datasets/handleImage/train/订单1806195_51_7104360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfdc4570fd593039df89d360609bf36a8c6f55e8a35920350af45cd8dbbde6b +size 347810 diff --git a/datasets/handleImage/train/订单1806196_51_7104047.jpg b/datasets/handleImage/train/订单1806196_51_7104047.jpg new file mode 100644 index 0000000..93f6223 --- /dev/null +++ b/datasets/handleImage/train/订单1806196_51_7104047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956a8599a40612a51351df89adf56b72eaa1f17fb4e65777f6430740ce634ed9 +size 739470 diff --git a/datasets/handleImage/train/订单1806197_51_7104132.jpg b/datasets/handleImage/train/订单1806197_51_7104132.jpg new file mode 100644 index 0000000..3529899 --- /dev/null +++ b/datasets/handleImage/train/订单1806197_51_7104132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1802e2233af2d76e146a1ab9e8ea7f281060529ca32d67b546ac62324c5a5bae +size 145418 diff --git a/datasets/handleImage/train/订单1806198_51_7104058.jpg b/datasets/handleImage/train/订单1806198_51_7104058.jpg new file mode 100644 index 0000000..ae01d11 --- /dev/null +++ b/datasets/handleImage/train/订单1806198_51_7104058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ef8579c34a2e0d4bd09f7e44c91f362db56f39f281e35343928e740d1e966e +size 107080 diff --git a/datasets/handleImage/train/订单1806203_51_7104209.jpg b/datasets/handleImage/train/订单1806203_51_7104209.jpg new file mode 100644 index 0000000..659ea0b --- /dev/null +++ b/datasets/handleImage/train/订单1806203_51_7104209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caae7af3b5b876450c2753db7ae82904c6479c2f76634c01712d37fd6672749b +size 119418 diff --git a/datasets/handleImage/train/订单1806206_51_7104307.jpg b/datasets/handleImage/train/订单1806206_51_7104307.jpg new file mode 100644 index 0000000..bcaf752 --- /dev/null +++ b/datasets/handleImage/train/订单1806206_51_7104307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2497ddba78cce62aa16a37cbfc5eae97a4fa9fb783004d70cbf6afef118f8803 +size 357952 diff --git a/datasets/handleImage/train/订单1806207_51_7104196.jpg b/datasets/handleImage/train/订单1806207_51_7104196.jpg new file mode 100644 index 0000000..faae0fb --- /dev/null +++ b/datasets/handleImage/train/订单1806207_51_7104196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb8443d8463f6b229ebbb5cecd536e1de79b3235c2e2429d6c618d992860763 +size 146092 diff --git a/datasets/handleImage/train/订单1806211_51_7104444.jpg b/datasets/handleImage/train/订单1806211_51_7104444.jpg new file mode 100644 index 0000000..3c5a46e --- /dev/null +++ b/datasets/handleImage/train/订单1806211_51_7104444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f8bbd6905028218def7c192bc6e3951167018c64328adfdc380f11fc975840 +size 132400 diff --git a/datasets/handleImage/train/订单1806212_51_7104331.jpg b/datasets/handleImage/train/订单1806212_51_7104331.jpg new file mode 100644 index 0000000..f2e9832 --- /dev/null +++ b/datasets/handleImage/train/订单1806212_51_7104331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6a8a46a8ba91d445dafce39a55b621598e50b8150e491551085385e8cd4e8f +size 102417 diff --git a/datasets/handleImage/train/订单1806215_51_7104325.jpg b/datasets/handleImage/train/订单1806215_51_7104325.jpg new file mode 100644 index 0000000..a55a9f5 --- /dev/null +++ b/datasets/handleImage/train/订单1806215_51_7104325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b5e473454e03b6e9f5d8d305a762a7ec4374f53eab7599ff9c6b57681f960e +size 355618 diff --git a/datasets/handleImage/train/订单1806217_51_7104303.jpg b/datasets/handleImage/train/订单1806217_51_7104303.jpg new file mode 100644 index 0000000..a7dfe79 --- /dev/null +++ b/datasets/handleImage/train/订单1806217_51_7104303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3875c9367473e8507e80469c7d64bf6749ff6c46e2df808a5ca3c18ba7f84df9 +size 679817 diff --git a/datasets/handleImage/train/订单1806218_51_7104322.jpg b/datasets/handleImage/train/订单1806218_51_7104322.jpg new file mode 100644 index 0000000..98c251a --- /dev/null +++ b/datasets/handleImage/train/订单1806218_51_7104322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610d769d6a6e265a1dbffb23c46946bf6e78a5855d04ccac0a34c7f8b36706ee +size 241771 diff --git a/datasets/handleImage/train/订单1806219_51_7104378.jpg b/datasets/handleImage/train/订单1806219_51_7104378.jpg new file mode 100644 index 0000000..35dac7d --- /dev/null +++ b/datasets/handleImage/train/订单1806219_51_7104378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0d52dc875adbb2305edac19381c7e6cf92820917fa31c4e667e8b8758f21f9 +size 217278 diff --git a/datasets/handleImage/train/订单1806225_51_7104423.jpg b/datasets/handleImage/train/订单1806225_51_7104423.jpg new file mode 100644 index 0000000..2e3893d --- /dev/null +++ b/datasets/handleImage/train/订单1806225_51_7104423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d5ad63da5e86a56fcd68058b98b84f512e7858d0d40289dfb07e2b8354cd06 +size 146486 diff --git a/datasets/handleImage/train/订单1806226_51_7104403.jpg b/datasets/handleImage/train/订单1806226_51_7104403.jpg new file mode 100644 index 0000000..3032b3a --- /dev/null +++ b/datasets/handleImage/train/订单1806226_51_7104403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427dbadcda1d3fa7de7460d25665953b34dd13f35e0da8a680b0791419a9221e +size 141745 diff --git a/datasets/handleImage/train/订单1806228_51_7104429.jpg b/datasets/handleImage/train/订单1806228_51_7104429.jpg new file mode 100644 index 0000000..535a36c --- /dev/null +++ b/datasets/handleImage/train/订单1806228_51_7104429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee3b3a874204325e7108c1c2d143968456be4eb4afef9282dbd8e3a0f00ea28 +size 108354 diff --git a/datasets/handleImage/train/订单1806231_51_7104704.jpg b/datasets/handleImage/train/订单1806231_51_7104704.jpg new file mode 100644 index 0000000..6eeea61 --- /dev/null +++ b/datasets/handleImage/train/订单1806231_51_7104704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab347aaf7001b57ec1017e2541389460febe48d1bc5f0bbd90883cc368dd7b3f +size 166214 diff --git a/datasets/handleImage/train/订单1806234_51_7104480.jpg b/datasets/handleImage/train/订单1806234_51_7104480.jpg new file mode 100644 index 0000000..4bdc0b8 --- /dev/null +++ b/datasets/handleImage/train/订单1806234_51_7104480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c381d920d0f22d590dd7a31517ee7858c05ebb5ff8721d9e4074490dc570fb +size 142021 diff --git a/datasets/handleImage/train/订单1806239_51_7104590.jpg b/datasets/handleImage/train/订单1806239_51_7104590.jpg new file mode 100644 index 0000000..45521a6 --- /dev/null +++ b/datasets/handleImage/train/订单1806239_51_7104590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c84f135840465d265ddcdb5f4d8e24c10a2095f847dc4b4f564b6de886086c +size 138684 diff --git a/datasets/handleImage/train/订单1806242_51_7104631.jpg b/datasets/handleImage/train/订单1806242_51_7104631.jpg new file mode 100644 index 0000000..4f207d6 --- /dev/null +++ b/datasets/handleImage/train/订单1806242_51_7104631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfc62ab81998f29385ff35fdfa4a8bac7eda760f5d6f6e51913b031a78092bf +size 256060 diff --git a/datasets/handleImage/train/订单1806244_51_7104569.jpg b/datasets/handleImage/train/订单1806244_51_7104569.jpg new file mode 100644 index 0000000..b6e9fd6 --- /dev/null +++ b/datasets/handleImage/train/订单1806244_51_7104569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d229a50ede224c47245e941e7de1349a52d616800b7f731af9706cd84daef700 +size 474927 diff --git a/datasets/handleImage/train/订单1806246_51_7104763.jpg b/datasets/handleImage/train/订单1806246_51_7104763.jpg new file mode 100644 index 0000000..80b1957 --- /dev/null +++ b/datasets/handleImage/train/订单1806246_51_7104763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d6939992dc7d2db1bcb21506ee63d45b03eca5d7951f926ca63ad6f7d6cd57 +size 128765 diff --git a/datasets/handleImage/train/订单1806247_51_7104645.jpg b/datasets/handleImage/train/订单1806247_51_7104645.jpg new file mode 100644 index 0000000..9f3a5a1 --- /dev/null +++ b/datasets/handleImage/train/订单1806247_51_7104645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2ffb43a9bf9d07b02723cbd20c49aa9309da115159669f674dc4a9f04ea27a +size 83408 diff --git a/datasets/handleImage/train/订单1806248_51_7104713.jpg b/datasets/handleImage/train/订单1806248_51_7104713.jpg new file mode 100644 index 0000000..82fde40 --- /dev/null +++ b/datasets/handleImage/train/订单1806248_51_7104713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0c8ee4248cc53a044b327ec7be3a2ebe27bf5dc379877fb41894e1468bf173 +size 126500 diff --git a/datasets/handleImage/train/订单1806251_51_7104781.jpg b/datasets/handleImage/train/订单1806251_51_7104781.jpg new file mode 100644 index 0000000..e440cc9 --- /dev/null +++ b/datasets/handleImage/train/订单1806251_51_7104781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4e5e7ddbda5626e791ae0cf96b038ae47609107a547a5ba06338d96aab2cba +size 149176 diff --git a/datasets/handleImage/train/订单1806252_51_7104609.jpg b/datasets/handleImage/train/订单1806252_51_7104609.jpg new file mode 100644 index 0000000..12e8e57 --- /dev/null +++ b/datasets/handleImage/train/订单1806252_51_7104609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340b1b207901e6c2bf103cb953f768757af5193b17f6ab9f65b56247e4f684ee +size 413713 diff --git a/datasets/handleImage/train/订单1806253_51_7104764.jpg b/datasets/handleImage/train/订单1806253_51_7104764.jpg new file mode 100644 index 0000000..b8cd21e --- /dev/null +++ b/datasets/handleImage/train/订单1806253_51_7104764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d646a04aad8faa8b90a2650f81eadababa9d82836caa72373369aba3adafb5c +size 155399 diff --git a/datasets/handleImage/train/订单1806254_51_7104737.jpg b/datasets/handleImage/train/订单1806254_51_7104737.jpg new file mode 100644 index 0000000..148f52a --- /dev/null +++ b/datasets/handleImage/train/订单1806254_51_7104737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a44c5d3376e143fe06d1dfae8b2c22c8b4c7428b6abd1ae725ec708c245cc0 +size 168113 diff --git a/datasets/handleImage/train/订单1806256_51_7104758.jpg b/datasets/handleImage/train/订单1806256_51_7104758.jpg new file mode 100644 index 0000000..d6b6316 --- /dev/null +++ b/datasets/handleImage/train/订单1806256_51_7104758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275eed1a34043a981b8bd76e4c1beee1a388c7de6d2eefc684a529f127333810 +size 146362 diff --git a/datasets/handleImage/train/订单1806259_51_7104978.jpg b/datasets/handleImage/train/订单1806259_51_7104978.jpg new file mode 100644 index 0000000..9c6672c --- /dev/null +++ b/datasets/handleImage/train/订单1806259_51_7104978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d2563149588fe0ece4dd166ecc8ede098383f210310a0af284037952022220 +size 197156 diff --git a/datasets/handleImage/train/订单1806260_51_7104740.jpg b/datasets/handleImage/train/订单1806260_51_7104740.jpg new file mode 100644 index 0000000..4a9484e --- /dev/null +++ b/datasets/handleImage/train/订单1806260_51_7104740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca69d077874ff2c808c014d9774768ec67a8b5a123914971653a90110623e8ce +size 149132 diff --git a/datasets/handleImage/train/订单1806265_51_7104815.jpg b/datasets/handleImage/train/订单1806265_51_7104815.jpg new file mode 100644 index 0000000..5384a67 --- /dev/null +++ b/datasets/handleImage/train/订单1806265_51_7104815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb2d3bf86bfb0e3e6df120eca1ca1f957dc7d156d54783e43b9a6038bae1ec8 +size 124464 diff --git a/datasets/handleImage/train/订单1806269_51_7104849.jpg b/datasets/handleImage/train/订单1806269_51_7104849.jpg new file mode 100644 index 0000000..fde26e6 --- /dev/null +++ b/datasets/handleImage/train/订单1806269_51_7104849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e0230ded1792a599cd51b71c1a14889e9f836e80083e3f885d5389f340888a +size 489269 diff --git a/datasets/handleImage/train/订单1806270_51_7104958.jpg b/datasets/handleImage/train/订单1806270_51_7104958.jpg new file mode 100644 index 0000000..585f8b7 --- /dev/null +++ b/datasets/handleImage/train/订单1806270_51_7104958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75093eea7405c4202f5c607bf1fb66e29a6f46c35f64cc611fe713c2c021479 +size 123684 diff --git a/datasets/handleImage/train/订单1806273_51_7104884.jpg b/datasets/handleImage/train/订单1806273_51_7104884.jpg new file mode 100644 index 0000000..a095bcc --- /dev/null +++ b/datasets/handleImage/train/订单1806273_51_7104884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164313a9213b02cf2fe17fdcef686fa7c402605cac49838ff5f2a78744e9560e +size 170097 diff --git a/datasets/handleImage/train/订单1806274_51_7104931.jpg b/datasets/handleImage/train/订单1806274_51_7104931.jpg new file mode 100644 index 0000000..3a96052 --- /dev/null +++ b/datasets/handleImage/train/订单1806274_51_7104931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b62c05fee88e86a68a4dc5db8d074fc58713de8981e92095e451c8c2c38b5a +size 674284 diff --git a/datasets/handleImage/train/订单1806280_51_7105035.jpg b/datasets/handleImage/train/订单1806280_51_7105035.jpg new file mode 100644 index 0000000..cd62870 --- /dev/null +++ b/datasets/handleImage/train/订单1806280_51_7105035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec02d4f59b801061df06ca539d075d7b37f4191e05fdb798e65283795f4d825 +size 400482 diff --git a/datasets/handleImage/train/订单1806282_51_7105048.jpg b/datasets/handleImage/train/订单1806282_51_7105048.jpg new file mode 100644 index 0000000..030f86e --- /dev/null +++ b/datasets/handleImage/train/订单1806282_51_7105048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153bd5954928b69fc729b41bcab0ecb29b5c803535e0408ae400d82fc995317a +size 101444 diff --git a/datasets/handleImage/train/订单1806284_51_7105002.jpg b/datasets/handleImage/train/订单1806284_51_7105002.jpg new file mode 100644 index 0000000..2996d55 --- /dev/null +++ b/datasets/handleImage/train/订单1806284_51_7105002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41da6c30ef95a341f9c62819e818f409a2d41c26f8a3be40143213328bcff406 +size 108988 diff --git a/datasets/handleImage/train/订单1806286_51_7105055.jpg b/datasets/handleImage/train/订单1806286_51_7105055.jpg new file mode 100644 index 0000000..c8b1995 --- /dev/null +++ b/datasets/handleImage/train/订单1806286_51_7105055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e49b854d5b4fe00d554f75f7ce01790d0ae6fcac9fb09da6f4344add60cc81a +size 88585 diff --git a/datasets/handleImage/train/订单1806291_51_7105064.jpg b/datasets/handleImage/train/订单1806291_51_7105064.jpg new file mode 100644 index 0000000..72a8496 --- /dev/null +++ b/datasets/handleImage/train/订单1806291_51_7105064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200044c6e469bfe5b54bc563eb96417b3f52a73a5eebf0ae888cadbab627e839 +size 354102 diff --git a/datasets/handleImage/train/订单1806292_51_7105155.jpg b/datasets/handleImage/train/订单1806292_51_7105155.jpg new file mode 100644 index 0000000..f555947 --- /dev/null +++ b/datasets/handleImage/train/订单1806292_51_7105155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4df9d1f4c0bbf8fa13caf598df397f38e5499f1126d217d96cd75bf681bb391 +size 495552 diff --git a/datasets/handleImage/train/订单1806293_51_7105244.jpg b/datasets/handleImage/train/订单1806293_51_7105244.jpg new file mode 100644 index 0000000..5ed3c66 --- /dev/null +++ b/datasets/handleImage/train/订单1806293_51_7105244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97c9a50d21fd359976959cce48098dff3a76310c47115b5b7b30b8a680cd3f0 +size 147702 diff --git a/datasets/handleImage/train/订单1806296_51_7105118.jpg b/datasets/handleImage/train/订单1806296_51_7105118.jpg new file mode 100644 index 0000000..56afe1c --- /dev/null +++ b/datasets/handleImage/train/订单1806296_51_7105118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b6b78d16cdaba6a69b1fb73888960bce98dc712f309c215cb842a562716d1b +size 188399 diff --git a/datasets/handleImage/train/订单1806298_51_7105110.jpg b/datasets/handleImage/train/订单1806298_51_7105110.jpg new file mode 100644 index 0000000..329fe02 --- /dev/null +++ b/datasets/handleImage/train/订单1806298_51_7105110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f6e6b18ac86bb61014fa7b5db9e065d764a82ee831552f7e7cafb0ae36f5f0 +size 130817 diff --git a/datasets/handleImage/train/订单1806301_51_7105200.jpg b/datasets/handleImage/train/订单1806301_51_7105200.jpg new file mode 100644 index 0000000..47347d4 --- /dev/null +++ b/datasets/handleImage/train/订单1806301_51_7105200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6af9f4afa8275b621725be11e238c2fe51bd3bb658b7069039dd6aeca0cf22f +size 144886 diff --git a/datasets/handleImage/train/订单1806302_51_7105091.jpg b/datasets/handleImage/train/订单1806302_51_7105091.jpg new file mode 100644 index 0000000..b512748 --- /dev/null +++ b/datasets/handleImage/train/订单1806302_51_7105091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8364896724ac188f83adc135b4a89e677c1d5777ff2833d695b3bcbe446899a2 +size 142388 diff --git a/datasets/handleImage/train/订单1806303_51_7105175.jpg b/datasets/handleImage/train/订单1806303_51_7105175.jpg new file mode 100644 index 0000000..1988349 --- /dev/null +++ b/datasets/handleImage/train/订单1806303_51_7105175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b581a8b3439e1c5caf19ad88072fe1b4aff618a8f809eebb049d7da9a63c6c44 +size 166156 diff --git a/datasets/handleImage/train/订单1806306_51_7105187.jpg b/datasets/handleImage/train/订单1806306_51_7105187.jpg new file mode 100644 index 0000000..c27f0e6 --- /dev/null +++ b/datasets/handleImage/train/订单1806306_51_7105187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e332a9c98d34a54fc09dc0c0cda30c1bee6dc744f1a51e5dfd904af514d9d8 +size 121606 diff --git a/datasets/handleImage/train/订单1806307_51_7105144.jpg b/datasets/handleImage/train/订单1806307_51_7105144.jpg new file mode 100644 index 0000000..eb2bbfc --- /dev/null +++ b/datasets/handleImage/train/订单1806307_51_7105144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbba1118fe7e08e82ed573eef6e793db73ead2302f78e9842d07afd8bf818a45 +size 157823 diff --git a/datasets/handleImage/train/订单1806308_51_7105217.jpg b/datasets/handleImage/train/订单1806308_51_7105217.jpg new file mode 100644 index 0000000..f807672 --- /dev/null +++ b/datasets/handleImage/train/订单1806308_51_7105217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a9d414e1206dafb28faac12f6cfe1a6d46a76cb7da3c009a04f71bd4a291f3 +size 143103 diff --git a/datasets/handleImage/train/订单1806309_51_7105279.jpg b/datasets/handleImage/train/订单1806309_51_7105279.jpg new file mode 100644 index 0000000..5e006f9 --- /dev/null +++ b/datasets/handleImage/train/订单1806309_51_7105279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21697adc83b28538e1b13933b959f770414fcb7732c3c3e14a13ac2636330de +size 126686 diff --git a/datasets/handleImage/train/订单1806310_51_7105820.jpg b/datasets/handleImage/train/订单1806310_51_7105820.jpg new file mode 100644 index 0000000..e7f3598 --- /dev/null +++ b/datasets/handleImage/train/订单1806310_51_7105820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948ad2b0a712f2c6f02864d515eac7e5efc5cb358fa6af4bbaefe0bd24366552 +size 215339 diff --git a/datasets/handleImage/train/订单1806311_51_7105525.jpg b/datasets/handleImage/train/订单1806311_51_7105525.jpg new file mode 100644 index 0000000..cf71429 --- /dev/null +++ b/datasets/handleImage/train/订单1806311_51_7105525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba67fb6c5d3cf72c35bee2eba9debdc6df29f9f3f5eb2dfb866f448c9470a76 +size 108651 diff --git a/datasets/handleImage/train/订单1806314_51_7105323.jpg b/datasets/handleImage/train/订单1806314_51_7105323.jpg new file mode 100644 index 0000000..2e3e1a5 --- /dev/null +++ b/datasets/handleImage/train/订单1806314_51_7105323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2853868ddb97bf0e4b7f24c9b08d94f589abfd0d2da2cbd8536ca464ad8061d +size 120404 diff --git a/datasets/handleImage/train/订单1806315_51_7105307.jpg b/datasets/handleImage/train/订单1806315_51_7105307.jpg new file mode 100644 index 0000000..688b7e2 --- /dev/null +++ b/datasets/handleImage/train/订单1806315_51_7105307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0dcafb5858a4181206331c63b7188729cc418a135dd493eda4bd830d8145f0f +size 134711 diff --git a/datasets/handleImage/train/订单1806318_51_7105355.jpg b/datasets/handleImage/train/订单1806318_51_7105355.jpg new file mode 100644 index 0000000..b4045a8 --- /dev/null +++ b/datasets/handleImage/train/订单1806318_51_7105355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6712d64a987910c37cb5f10d052443caa8a406ab5d1714532bc0abe1e6dcff0 +size 125325 diff --git a/datasets/handleImage/train/订单1806319_51_7105277.jpg b/datasets/handleImage/train/订单1806319_51_7105277.jpg new file mode 100644 index 0000000..371068b --- /dev/null +++ b/datasets/handleImage/train/订单1806319_51_7105277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2312af67b02f8458c4240052a90f729704178788ad837d7c59be52c421557eae +size 412692 diff --git a/datasets/handleImage/train/订单1806323_51_7105337.jpg b/datasets/handleImage/train/订单1806323_51_7105337.jpg new file mode 100644 index 0000000..8250655 --- /dev/null +++ b/datasets/handleImage/train/订单1806323_51_7105337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83fc9ba952d1d53e0f82847cec18d6ea68be0eb697335dac7c6769ff7c85a52e +size 127048 diff --git a/datasets/handleImage/train/订单1806324_51_7105310.jpg b/datasets/handleImage/train/订单1806324_51_7105310.jpg new file mode 100644 index 0000000..9597f23 --- /dev/null +++ b/datasets/handleImage/train/订单1806324_51_7105310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d9b102a87306c3fdb5312e7b7fc78d3e3759c4e68af4feff830066eae6b562 +size 99973 diff --git a/datasets/handleImage/train/订单1806325_51_7105633.jpg b/datasets/handleImage/train/订单1806325_51_7105633.jpg new file mode 100644 index 0000000..8548aae --- /dev/null +++ b/datasets/handleImage/train/订单1806325_51_7105633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54994bfc1ebcc2487e511cf05ba433ebad849ca9e6a6f421c9b593b314cc226 +size 138307 diff --git a/datasets/handleImage/train/订单1806327_51_7105361.jpg b/datasets/handleImage/train/订单1806327_51_7105361.jpg new file mode 100644 index 0000000..9ba602a --- /dev/null +++ b/datasets/handleImage/train/订单1806327_51_7105361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d98da6fa0fb1424ade055ff6487e6365e3e40d5a156fbb4c12d3a31903ead20 +size 148490 diff --git a/datasets/handleImage/train/订单1806328_51_7105439.jpg b/datasets/handleImage/train/订单1806328_51_7105439.jpg new file mode 100644 index 0000000..49cf553 --- /dev/null +++ b/datasets/handleImage/train/订单1806328_51_7105439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c694bd3a98ca3430bf5d0bfbcfbbce22dad9c0b72bf20fbfa270ba3be4fd4996 +size 109823 diff --git a/datasets/handleImage/train/订单1806330_51_7105483.jpg b/datasets/handleImage/train/订单1806330_51_7105483.jpg new file mode 100644 index 0000000..6304e50 --- /dev/null +++ b/datasets/handleImage/train/订单1806330_51_7105483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb9d40b4a5fa2d6ddcd9753bddac31794e9b4a4bdbe6f741da112674086e75f +size 135462 diff --git a/datasets/handleImage/train/订单1806331_51_7105381.jpg b/datasets/handleImage/train/订单1806331_51_7105381.jpg new file mode 100644 index 0000000..01671af --- /dev/null +++ b/datasets/handleImage/train/订单1806331_51_7105381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd7f32f6df3c9b709535e7b27d17f65c3cb866b8a38ac0be85ec059b783990e +size 132201 diff --git a/datasets/handleImage/train/订单1806333_51_7105436.jpg b/datasets/handleImage/train/订单1806333_51_7105436.jpg new file mode 100644 index 0000000..c694df9 --- /dev/null +++ b/datasets/handleImage/train/订单1806333_51_7105436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f6f607f4968a708517ea775d5e38b0f382bb358e334aceac368ab74dcc6fce +size 91148 diff --git a/datasets/handleImage/train/订单1806334_51_7105428.jpg b/datasets/handleImage/train/订单1806334_51_7105428.jpg new file mode 100644 index 0000000..390ff72 --- /dev/null +++ b/datasets/handleImage/train/订单1806334_51_7105428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8f28c1b4f21ee7694b73374ab839bc3029a9b576750e585818854516746e77 +size 126844 diff --git a/datasets/handleImage/train/订单1806336_51_7105410.jpg b/datasets/handleImage/train/订单1806336_51_7105410.jpg new file mode 100644 index 0000000..d3bf528 --- /dev/null +++ b/datasets/handleImage/train/订单1806336_51_7105410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9591c958e95c903831188ec33de87551fd583c71650d5804e218b76d4622f1c7 +size 435386 diff --git a/datasets/handleImage/train/订单1806337_51_7105549.jpg b/datasets/handleImage/train/订单1806337_51_7105549.jpg new file mode 100644 index 0000000..ba11840 --- /dev/null +++ b/datasets/handleImage/train/订单1806337_51_7105549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbefd45aa15d3da68783c4589262c580f2921ba742b0af999bc74c830f5c684 +size 82598 diff --git a/datasets/handleImage/train/订单1806340_51_7105570.jpg b/datasets/handleImage/train/订单1806340_51_7105570.jpg new file mode 100644 index 0000000..43eaeeb --- /dev/null +++ b/datasets/handleImage/train/订单1806340_51_7105570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c5be6a741abfc8fd9fe584ff64b55329c095049661b33ab05037ac711e14d0 +size 284272 diff --git a/datasets/handleImage/train/订单1806342_51_7105897.jpg b/datasets/handleImage/train/订单1806342_51_7105897.jpg new file mode 100644 index 0000000..c2f3365 --- /dev/null +++ b/datasets/handleImage/train/订单1806342_51_7105897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ab6029629684184a7b447df40c0f0c5200a530503b290e2ad49ed52499798b +size 85829 diff --git a/datasets/handleImage/train/订单1806343_51_7105589.jpg b/datasets/handleImage/train/订单1806343_51_7105589.jpg new file mode 100644 index 0000000..7a08ced --- /dev/null +++ b/datasets/handleImage/train/订单1806343_51_7105589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1553ab5c4dcc16fa37efbdaf6d3d8cf8746cd830567c672f25989897fbe561 +size 370542 diff --git a/datasets/handleImage/train/订单1806345_51_7105509.jpg b/datasets/handleImage/train/订单1806345_51_7105509.jpg new file mode 100644 index 0000000..e2c1781 --- /dev/null +++ b/datasets/handleImage/train/订单1806345_51_7105509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930bddd3cfa5a0e8a695031d49a8752ea8d53c49245f10ab08b051644a1d72f1 +size 95274 diff --git a/datasets/handleImage/train/订单1806349_51_7105942.jpg b/datasets/handleImage/train/订单1806349_51_7105942.jpg new file mode 100644 index 0000000..52bba71 --- /dev/null +++ b/datasets/handleImage/train/订单1806349_51_7105942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0cb054e4decfd0c41df0aa678ba990e42b879af0beae30acaeeb0413851511 +size 420831 diff --git a/datasets/handleImage/train/订单1806351_51_7105526.jpg b/datasets/handleImage/train/订单1806351_51_7105526.jpg new file mode 100644 index 0000000..8aa71ce --- /dev/null +++ b/datasets/handleImage/train/订单1806351_51_7105526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9465787115d6d57808cdf82ce5ed2cc571f5d1e16676c84fa35b398ca77bd301 +size 115761 diff --git a/datasets/handleImage/train/订单1806353_51_7105640.jpg b/datasets/handleImage/train/订单1806353_51_7105640.jpg new file mode 100644 index 0000000..874f9c2 --- /dev/null +++ b/datasets/handleImage/train/订单1806353_51_7105640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80252d013617a0e51e51a2f07f191e718a3a290ac988d25a38d6877dfa975fe0 +size 158715 diff --git a/datasets/handleImage/train/订单1806354_51_7105654.jpg b/datasets/handleImage/train/订单1806354_51_7105654.jpg new file mode 100644 index 0000000..120ed70 --- /dev/null +++ b/datasets/handleImage/train/订单1806354_51_7105654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2fb08715eec3092c1605bfb0e7e92cacda178c18cd1e291e4418d5c6619cb +size 79513 diff --git a/datasets/handleImage/train/订单1806355_51_7105607.jpg b/datasets/handleImage/train/订单1806355_51_7105607.jpg new file mode 100644 index 0000000..20cbdf9 --- /dev/null +++ b/datasets/handleImage/train/订单1806355_51_7105607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5388498c393216e278b78e335cde69a675bd0f4a73603113b35fa7b1dc1e5ebc +size 160113 diff --git a/datasets/handleImage/train/订单1806357_51_7105670.jpg b/datasets/handleImage/train/订单1806357_51_7105670.jpg new file mode 100644 index 0000000..0fa64c3 --- /dev/null +++ b/datasets/handleImage/train/订单1806357_51_7105670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a70cf0aaa271b7f368444312fd9a07f226f09811a5f3716a1eeb1399bd126c +size 85499 diff --git a/datasets/handleImage/train/订单1806358_51_7105747.jpg b/datasets/handleImage/train/订单1806358_51_7105747.jpg new file mode 100644 index 0000000..7630d65 --- /dev/null +++ b/datasets/handleImage/train/订单1806358_51_7105747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bed8ecceab72fe2fb3f19061603f0d156ff9b44d148394a4635f6173c80b84 +size 95481 diff --git a/datasets/handleImage/train/订单1806359_51_7105675.jpg b/datasets/handleImage/train/订单1806359_51_7105675.jpg new file mode 100644 index 0000000..57083e6 --- /dev/null +++ b/datasets/handleImage/train/订单1806359_51_7105675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7966392b966f1614e86789deb906bc5be62f8947455e915a1c05ae5b1f410f +size 120641 diff --git a/datasets/handleImage/train/订单1806360_51_7105662.jpg b/datasets/handleImage/train/订单1806360_51_7105662.jpg new file mode 100644 index 0000000..596a967 --- /dev/null +++ b/datasets/handleImage/train/订单1806360_51_7105662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a4ecbd76882f5326b03a3ebfe53e167ebf746f68c19b75100f5e9a379a4eb6 +size 91353 diff --git a/datasets/handleImage/train/订单1806361_51_7105712.jpg b/datasets/handleImage/train/订单1806361_51_7105712.jpg new file mode 100644 index 0000000..d39f6d2 --- /dev/null +++ b/datasets/handleImage/train/订单1806361_51_7105712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae7f371bfa2b76fa8fb555a9d768ea8902e54b73585df33d0ee8f85d782a1af +size 173791 diff --git a/datasets/handleImage/train/订单1806362_51_7105959.jpg b/datasets/handleImage/train/订单1806362_51_7105959.jpg new file mode 100644 index 0000000..c382fe2 --- /dev/null +++ b/datasets/handleImage/train/订单1806362_51_7105959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6401f2ea78fedf8bb77e4dbb9b55889777266b513adf5eb97f990ff9b62930ee +size 465568 diff --git a/datasets/handleImage/train/订单1806363_51_7105693.jpg b/datasets/handleImage/train/订单1806363_51_7105693.jpg new file mode 100644 index 0000000..fce320b --- /dev/null +++ b/datasets/handleImage/train/订单1806363_51_7105693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0186ece41d8babcebd3aee894176b4b93417dd01bb60d7ea88cc3575fc65d7d +size 118502 diff --git a/datasets/handleImage/train/订单1806366_51_7105783.jpg b/datasets/handleImage/train/订单1806366_51_7105783.jpg new file mode 100644 index 0000000..15d09c9 --- /dev/null +++ b/datasets/handleImage/train/订单1806366_51_7105783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e87053bb0ac5392229d5119bc38fd0cf8a98f20eed9d10f38d3e1ce8792afdf +size 123724 diff --git a/datasets/handleImage/train/订单1806367_51_7105793.jpg b/datasets/handleImage/train/订单1806367_51_7105793.jpg new file mode 100644 index 0000000..f9909e8 --- /dev/null +++ b/datasets/handleImage/train/订单1806367_51_7105793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e48de2ef0d549ec96546bddba6b80e9aaa9ec60d8a3178bdcbc2b2afddc3107 +size 333464 diff --git a/datasets/handleImage/train/订单1806368_51_7105718.jpg b/datasets/handleImage/train/订单1806368_51_7105718.jpg new file mode 100644 index 0000000..0e652db --- /dev/null +++ b/datasets/handleImage/train/订单1806368_51_7105718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d2023c6adc9b600179f7d74a244b17e7e64f0c6302d835dbfbaf2d4731df29 +size 552310 diff --git a/datasets/handleImage/train/订单1806369_51_7105743.jpg b/datasets/handleImage/train/订单1806369_51_7105743.jpg new file mode 100644 index 0000000..d3e7a21 --- /dev/null +++ b/datasets/handleImage/train/订单1806369_51_7105743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6de492b06a74c3a2518360ebe1abda7d2eaef1a172a6fa411d582e793be2f1 +size 118699 diff --git a/datasets/handleImage/train/订单1806370_51_7105764.jpg b/datasets/handleImage/train/订单1806370_51_7105764.jpg new file mode 100644 index 0000000..9a8ae86 --- /dev/null +++ b/datasets/handleImage/train/订单1806370_51_7105764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed018a104954639be10de6ec8fa821c0ec24f3bcb69653e0d3251b356362b011 +size 416077 diff --git a/datasets/handleImage/train/订单1806371_51_7105828.jpg b/datasets/handleImage/train/订单1806371_51_7105828.jpg new file mode 100644 index 0000000..8a7fd2c --- /dev/null +++ b/datasets/handleImage/train/订单1806371_51_7105828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3456994a6d2a2233912c56167269e2b9d5cbec16dbd07f99d0bf63a38acf4d +size 633475 diff --git a/datasets/handleImage/train/订单1806374_51_7105810.jpg b/datasets/handleImage/train/订单1806374_51_7105810.jpg new file mode 100644 index 0000000..363b16b --- /dev/null +++ b/datasets/handleImage/train/订单1806374_51_7105810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0eb277955b9955e8bf85f8685116c488816cab1a59ca0bfcc58c5a2d76e3f91 +size 118348 diff --git a/datasets/handleImage/train/订单1806382_51_7105948.jpg b/datasets/handleImage/train/订单1806382_51_7105948.jpg new file mode 100644 index 0000000..031eb79 --- /dev/null +++ b/datasets/handleImage/train/订单1806382_51_7105948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ac85d0647a8a3ef81df91d7636d1ae23475df90cd3a1baf5531d7219f105e6 +size 85912 diff --git a/datasets/handleImage/train/订单1806385_51_7105937.jpg b/datasets/handleImage/train/订单1806385_51_7105937.jpg new file mode 100644 index 0000000..09900cc --- /dev/null +++ b/datasets/handleImage/train/订单1806385_51_7105937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd0d0dc45ee518a3bf30ee090bf77c8e5639991f208b5cf4675bbdbcddc5d76 +size 124577 diff --git a/datasets/handleImage/train/订单1806386_51_7105908.jpg b/datasets/handleImage/train/订单1806386_51_7105908.jpg new file mode 100644 index 0000000..e5c9b19 --- /dev/null +++ b/datasets/handleImage/train/订单1806386_51_7105908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a2fd68dd92b52dd6ad78e446a9bbcc3cf601c5a15bebc3cdf5c4c2e922edc1 +size 126790 diff --git a/datasets/handleImage/train/订单1806388_51_7106058.jpg b/datasets/handleImage/train/订单1806388_51_7106058.jpg new file mode 100644 index 0000000..5a5c90b --- /dev/null +++ b/datasets/handleImage/train/订单1806388_51_7106058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64cf773c156d3ff1a767f85b41dc74fd6d92dce61c7bedbb5eb1b1423615149 +size 128036 diff --git a/datasets/handleImage/train/订单1806391_51_7106033.jpg b/datasets/handleImage/train/订单1806391_51_7106033.jpg new file mode 100644 index 0000000..ac5d94c --- /dev/null +++ b/datasets/handleImage/train/订单1806391_51_7106033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188e7da81df7cc62206fe4d5027711280efbd85dbb37eacffd3fcb41a5c789d1 +size 108519 diff --git a/datasets/handleImage/train/订单1806395_51_7106004.jpg b/datasets/handleImage/train/订单1806395_51_7106004.jpg new file mode 100644 index 0000000..77f1af6 --- /dev/null +++ b/datasets/handleImage/train/订单1806395_51_7106004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f793bf1e7d1f0c7a89d3f9263a2aaeb250382190284279c5b795cb470fe879e +size 121940 diff --git a/datasets/handleImage/train/订单1806396_51_7105993.jpg b/datasets/handleImage/train/订单1806396_51_7105993.jpg new file mode 100644 index 0000000..7dd1e45 --- /dev/null +++ b/datasets/handleImage/train/订单1806396_51_7105993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d64d192939bb4377be216bffa103a3f855f80dcca8c8843938146a3d157034 +size 203316 diff --git a/datasets/handleImage/train/订单1806398_51_7106151.jpg b/datasets/handleImage/train/订单1806398_51_7106151.jpg new file mode 100644 index 0000000..d242d20 --- /dev/null +++ b/datasets/handleImage/train/订单1806398_51_7106151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0d711469dce5d2c702a8fd13c57bb5ac2076ee13c38dc1920b6ece7b8ac87b +size 131272 diff --git a/datasets/handleImage/train/订单1806400_51_7106043.jpg b/datasets/handleImage/train/订单1806400_51_7106043.jpg new file mode 100644 index 0000000..064845d --- /dev/null +++ b/datasets/handleImage/train/订单1806400_51_7106043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999c059abcc94b938c46480929de55bacb400f0845bc15cb7231ac912e8feeaa +size 490901 diff --git a/datasets/handleImage/train/订单1806402_51_7106069.jpg b/datasets/handleImage/train/订单1806402_51_7106069.jpg new file mode 100644 index 0000000..2cf8987 --- /dev/null +++ b/datasets/handleImage/train/订单1806402_51_7106069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5201681044408853981064cbcc6ff188292d675e6b197c0343e8ca793a85fb9f +size 95722 diff --git a/datasets/handleImage/train/订单1806403_51_7106091.jpg b/datasets/handleImage/train/订单1806403_51_7106091.jpg new file mode 100644 index 0000000..c906206 --- /dev/null +++ b/datasets/handleImage/train/订单1806403_51_7106091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc197dbd87cbd50f106f1d4239dfb2d889388aaacd13dbf0551d6533a6750fa3 +size 80724 diff --git a/datasets/handleImage/train/订单1806410_51_7106166.jpg b/datasets/handleImage/train/订单1806410_51_7106166.jpg new file mode 100644 index 0000000..8542225 --- /dev/null +++ b/datasets/handleImage/train/订单1806410_51_7106166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c079e66c9b8f908b1c0fef7e8f0ba09c4ed6c759d66e5ef1a69fb963df604256 +size 143068 diff --git a/datasets/handleImage/train/订单1806413_51_7106233.jpg b/datasets/handleImage/train/订单1806413_51_7106233.jpg new file mode 100644 index 0000000..c00c71c --- /dev/null +++ b/datasets/handleImage/train/订单1806413_51_7106233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b31679badad47a65ba5567eb3eca399189c2eea5e85e2e10ad42dd2d9f1f9d4 +size 106550 diff --git a/datasets/handleImage/train/订单1806415_51_7106264.jpg b/datasets/handleImage/train/订单1806415_51_7106264.jpg new file mode 100644 index 0000000..3aa38c2 --- /dev/null +++ b/datasets/handleImage/train/订单1806415_51_7106264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e0b89ba52db62d35610176e76f5686567bdcc6155e73884656833dbdafa58b +size 339440 diff --git a/datasets/handleImage/train/订单1806417_51_7106289.jpg b/datasets/handleImage/train/订单1806417_51_7106289.jpg new file mode 100644 index 0000000..d0c12e5 --- /dev/null +++ b/datasets/handleImage/train/订单1806417_51_7106289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec38bd605909280318396f4ffa8e51a6e35c62e4784fd011936c47dd8a5f598e +size 96150 diff --git a/datasets/handleImage/train/订单1806418_51_7106207.jpg b/datasets/handleImage/train/订单1806418_51_7106207.jpg new file mode 100644 index 0000000..8a10336 --- /dev/null +++ b/datasets/handleImage/train/订单1806418_51_7106207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e797e263487271607a2a0fdef9dc34d6bb51dcf10cddcf90f4ec65eee571c93 +size 130195 diff --git a/datasets/handleImage/train/订单1806420_51_7106202.jpg b/datasets/handleImage/train/订单1806420_51_7106202.jpg new file mode 100644 index 0000000..b05e3eb --- /dev/null +++ b/datasets/handleImage/train/订单1806420_51_7106202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d06d2e2a1c32172ba8110f8d6300ba4466a022cf74d13a46873a354b152d13 +size 101417 diff --git a/datasets/handleImage/train/订单1806421_51_7106234.jpg b/datasets/handleImage/train/订单1806421_51_7106234.jpg new file mode 100644 index 0000000..1d9ea56 --- /dev/null +++ b/datasets/handleImage/train/订单1806421_51_7106234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255972de442439fed21e721b5da9b111afeb6fd4272ec868e0cabb276f202f93 +size 520706 diff --git a/datasets/handleImage/train/订单1806423_51_7106297.jpg b/datasets/handleImage/train/订单1806423_51_7106297.jpg new file mode 100644 index 0000000..450120d --- /dev/null +++ b/datasets/handleImage/train/订单1806423_51_7106297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d647e3f9c9732d152ce6edbb770409bdbb43f23b80d5b2dbaaf6ff3dbd98ee +size 101817 diff --git a/datasets/handleImage/train/订单1806424_51_7106323.jpg b/datasets/handleImage/train/订单1806424_51_7106323.jpg new file mode 100644 index 0000000..a8d10c0 --- /dev/null +++ b/datasets/handleImage/train/订单1806424_51_7106323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc14387090df2476c6520903c5fec3536ef15221d9ad82dc6f35f98f407d2445 +size 113409 diff --git a/datasets/handleImage/train/订单1806435_51_7106340.jpg b/datasets/handleImage/train/订单1806435_51_7106340.jpg new file mode 100644 index 0000000..1757d68 --- /dev/null +++ b/datasets/handleImage/train/订单1806435_51_7106340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b208de04b6a378980382f3bd8a63bab3a6210298ee7425e65e47730750f5b6e +size 329243 diff --git a/datasets/handleImage/train/订单1806438_51_7106366.jpg b/datasets/handleImage/train/订单1806438_51_7106366.jpg new file mode 100644 index 0000000..5edddef --- /dev/null +++ b/datasets/handleImage/train/订单1806438_51_7106366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b06f3caf3758743079b1fd03b5ec980ac942e83160ef38d551ef0e7c15a80f +size 340246 diff --git a/datasets/handleImage/train/订单1806439_51_7106397.jpg b/datasets/handleImage/train/订单1806439_51_7106397.jpg new file mode 100644 index 0000000..b427611 --- /dev/null +++ b/datasets/handleImage/train/订单1806439_51_7106397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b09529a89e06eba4769e7f09a9aa6b901a6ded530032b56fd89b8028afcf589 +size 275372 diff --git a/datasets/handleImage/train/订单1806445_51_7106489.jpg b/datasets/handleImage/train/订单1806445_51_7106489.jpg new file mode 100644 index 0000000..04f45a6 --- /dev/null +++ b/datasets/handleImage/train/订单1806445_51_7106489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383f79ced4ddfd4e5bfbc9f44c1268a525eaa6c8f4eff8ab9e1e7b7c8740e80e +size 163828 diff --git a/datasets/handleImage/train/订单1806446_51_7106424.jpg b/datasets/handleImage/train/订单1806446_51_7106424.jpg new file mode 100644 index 0000000..3afeff9 --- /dev/null +++ b/datasets/handleImage/train/订单1806446_51_7106424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea2e2e3975468efa93e0f64a28ae16f4fa0b3020a778832ed6a4972810d0544 +size 110325 diff --git a/datasets/handleImage/train/订单1806448_51_7106612.jpg b/datasets/handleImage/train/订单1806448_51_7106612.jpg new file mode 100644 index 0000000..723e223 --- /dev/null +++ b/datasets/handleImage/train/订单1806448_51_7106612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0ff4299d4a61ec6e707171d11ba766f805d20c224108094f579b9e8980bb99 +size 446432 diff --git a/datasets/handleImage/train/订单1806449_51_7106451.jpg b/datasets/handleImage/train/订单1806449_51_7106451.jpg new file mode 100644 index 0000000..b982557 --- /dev/null +++ b/datasets/handleImage/train/订单1806449_51_7106451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8aa79139b87e886528bf6e26aad238b2d3caf3f5ca30dc3a5bbf06ea4bafac +size 319895 diff --git a/datasets/handleImage/train/订单1806450_51_7106443.jpg b/datasets/handleImage/train/订单1806450_51_7106443.jpg new file mode 100644 index 0000000..02c2901 --- /dev/null +++ b/datasets/handleImage/train/订单1806450_51_7106443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6c2fd2a24bf99d07f50f134c3e528454a01f31f1ad169f31524cc0ae43f35e +size 142777 diff --git a/datasets/handleImage/train/订单1806453_51_7106521.jpg b/datasets/handleImage/train/订单1806453_51_7106521.jpg new file mode 100644 index 0000000..8c63c57 --- /dev/null +++ b/datasets/handleImage/train/订单1806453_51_7106521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6525c36a0921fc66f97ee240eca6726d0d044eb2ec69e64d43dfd9369eaceda +size 374535 diff --git a/datasets/handleImage/train/订单1806454_51_7106564.jpg b/datasets/handleImage/train/订单1806454_51_7106564.jpg new file mode 100644 index 0000000..906b0e6 --- /dev/null +++ b/datasets/handleImage/train/订单1806454_51_7106564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229ff673357e860a091c1d07c3f4a579cb08e2657d58b74603ac5d6e82204c60 +size 109283 diff --git a/datasets/handleImage/train/订单1806464_51_7106658.jpg b/datasets/handleImage/train/订单1806464_51_7106658.jpg new file mode 100644 index 0000000..0e7588b --- /dev/null +++ b/datasets/handleImage/train/订单1806464_51_7106658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820b164dee694a3319f8f3ebdd4e36f9cab1995fcb005eef12d9d90625d7a1e1 +size 309094 diff --git a/datasets/handleImage/train/订单1806465_51_7106625.jpg b/datasets/handleImage/train/订单1806465_51_7106625.jpg new file mode 100644 index 0000000..9ddfdef --- /dev/null +++ b/datasets/handleImage/train/订单1806465_51_7106625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739e974053d5212d17a328a6c7bc3d571f96152d6b931489e02e1dc877f49165 +size 135149 diff --git a/datasets/handleImage/train/订单1806467_51_7106642.jpg b/datasets/handleImage/train/订单1806467_51_7106642.jpg new file mode 100644 index 0000000..f0c6b09 --- /dev/null +++ b/datasets/handleImage/train/订单1806467_51_7106642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c67fa4c37f458c32073f84333ff12b81a7676f487738bb5ec377979b6b2db +size 111911 diff --git a/datasets/handleImage/train/订单1806468_51_7106712.jpg b/datasets/handleImage/train/订单1806468_51_7106712.jpg new file mode 100644 index 0000000..9485bb4 --- /dev/null +++ b/datasets/handleImage/train/订单1806468_51_7106712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be1c45241819a990f6c271fef5c843b851efe694bd7aa57aebc372bb2e11a95 +size 155619 diff --git a/datasets/handleImage/train/订单1806470_51_7106702.jpg b/datasets/handleImage/train/订单1806470_51_7106702.jpg new file mode 100644 index 0000000..a882885 --- /dev/null +++ b/datasets/handleImage/train/订单1806470_51_7106702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56bed53790a4e4b78db54a33935f51a91d9a5ad05ab31946004fe75bf3b198a2 +size 109260 diff --git a/datasets/handleImage/train/订单1806471_51_7106669.jpg b/datasets/handleImage/train/订单1806471_51_7106669.jpg new file mode 100644 index 0000000..2edafde --- /dev/null +++ b/datasets/handleImage/train/订单1806471_51_7106669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a94512a2da7c6770a99f8f923922f00962d78aab8911b59890a50b1acd024d7 +size 113487 diff --git a/datasets/handleImage/train/订单1806476_51_7106691.jpg b/datasets/handleImage/train/订单1806476_51_7106691.jpg new file mode 100644 index 0000000..e29a039 --- /dev/null +++ b/datasets/handleImage/train/订单1806476_51_7106691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416c610c05ac6f181604d0a0cfe671d6e1cab2f7b2d4c31897b2fa8052c205a8 +size 426411 diff --git a/datasets/handleImage/train/订单1806477_51_7106810.jpg b/datasets/handleImage/train/订单1806477_51_7106810.jpg new file mode 100644 index 0000000..7f7abbc --- /dev/null +++ b/datasets/handleImage/train/订单1806477_51_7106810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d78c27d7cd0820a95d133b6df2290c8262ecf6f4ab7034dc70d83ce290e1c91 +size 290534 diff --git a/datasets/handleImage/train/订单1806479_51_7106769.jpg b/datasets/handleImage/train/订单1806479_51_7106769.jpg new file mode 100644 index 0000000..2585539 --- /dev/null +++ b/datasets/handleImage/train/订单1806479_51_7106769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb0298d4d6ea627735de55199e38673f4a17c8f948bb23fce471374dbc65b81 +size 111339 diff --git a/datasets/handleImage/train/订单1806481_51_7106776.jpg b/datasets/handleImage/train/订单1806481_51_7106776.jpg new file mode 100644 index 0000000..737bb23 --- /dev/null +++ b/datasets/handleImage/train/订单1806481_51_7106776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b753260688809fcb4920e76c83b25ac6160bb252dc6309ecb766b8f0375d4a +size 81620 diff --git a/datasets/handleImage/train/订单1806482_51_7106783.jpg b/datasets/handleImage/train/订单1806482_51_7106783.jpg new file mode 100644 index 0000000..491eb8f --- /dev/null +++ b/datasets/handleImage/train/订单1806482_51_7106783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d87926a23ffba8c590e71c06b7e731a574bae8d15e0b3cc4e8e407dad7a5c0 +size 115629 diff --git a/datasets/handleImage/train/订单1806483_51_7106799.jpg b/datasets/handleImage/train/订单1806483_51_7106799.jpg new file mode 100644 index 0000000..c761f4b --- /dev/null +++ b/datasets/handleImage/train/订单1806483_51_7106799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f18a2d3686f1ed4344e6ebf6eae6f89620e877dc99ff0064f552fdb86d25a35 +size 89487 diff --git a/datasets/handleImage/train/订单1806487_51_7106855.jpg b/datasets/handleImage/train/订单1806487_51_7106855.jpg new file mode 100644 index 0000000..70a1d5e --- /dev/null +++ b/datasets/handleImage/train/订单1806487_51_7106855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8839c6c589dd49916212cd83b655fb99631254f259e34a4a7583204a117c38 +size 113652 diff --git a/datasets/handleImage/train/订单1806488_51_7106871.jpg b/datasets/handleImage/train/订单1806488_51_7106871.jpg new file mode 100644 index 0000000..599642b --- /dev/null +++ b/datasets/handleImage/train/订单1806488_51_7106871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea2219355b223dd2a51246acaac1f6f6f41ecc2fa4ddec3e4c28e3f754bc69f +size 154292 diff --git a/datasets/handleImage/train/订单1806490_51_7106897.jpg b/datasets/handleImage/train/订单1806490_51_7106897.jpg new file mode 100644 index 0000000..aa8209d --- /dev/null +++ b/datasets/handleImage/train/订单1806490_51_7106897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e4a6181851271d444d0e54792475b956ed4fe2cc2b8e34921bb1d7e91c7f24 +size 320636 diff --git a/datasets/handleImage/train/订单1806491_51_7106887.jpg b/datasets/handleImage/train/订单1806491_51_7106887.jpg new file mode 100644 index 0000000..55ee5ad --- /dev/null +++ b/datasets/handleImage/train/订单1806491_51_7106887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139656292a2cc0b94545fb10318614c7d53ac655009bc7e9fe14280ec4fa93e4 +size 120769 diff --git a/datasets/handleImage/train/订单1806493_51_7106927.jpg b/datasets/handleImage/train/订单1806493_51_7106927.jpg new file mode 100644 index 0000000..f463f19 --- /dev/null +++ b/datasets/handleImage/train/订单1806493_51_7106927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ae44f1fceca0ea46069ed3381142c65275a5e270644e02985bdf99efe1c38f +size 97304 diff --git a/datasets/handleImage/train/订单1806494_51_7106920.jpg b/datasets/handleImage/train/订单1806494_51_7106920.jpg new file mode 100644 index 0000000..6c6e51d --- /dev/null +++ b/datasets/handleImage/train/订单1806494_51_7106920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da759adc4f248da7132b015c444d9398ce0e942770c1bcc4edf2856454f5f23 +size 180795 diff --git a/datasets/handleImage/train/订单1806495_51_7106942.jpg b/datasets/handleImage/train/订单1806495_51_7106942.jpg new file mode 100644 index 0000000..c3065d5 --- /dev/null +++ b/datasets/handleImage/train/订单1806495_51_7106942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d068524304569e24cf53e05b0e751e4bd3718d6589988dd2f454aa1cd010f76 +size 103838 diff --git a/datasets/handleImage/train/订单1806498_51_7106986.jpg b/datasets/handleImage/train/订单1806498_51_7106986.jpg new file mode 100644 index 0000000..32f8ba0 --- /dev/null +++ b/datasets/handleImage/train/订单1806498_51_7106986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b7e86ed21f3291585cf927784fafe58cc191da891096240fb087a24a89c91b +size 645835 diff --git a/datasets/handleImage/train/订单1806499_51_7106958.jpg b/datasets/handleImage/train/订单1806499_51_7106958.jpg new file mode 100644 index 0000000..c51b36a --- /dev/null +++ b/datasets/handleImage/train/订单1806499_51_7106958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42d10487e13d78fc980e72a008e95ba17d0479a28d0970bbe4a2af196adc745 +size 147931 diff --git a/datasets/handleImage/train/订单1806501_51_7106971.jpg b/datasets/handleImage/train/订单1806501_51_7106971.jpg new file mode 100644 index 0000000..f835bfe --- /dev/null +++ b/datasets/handleImage/train/订单1806501_51_7106971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a9255e687b34da6e2b1634a8b2d86359703f44d8f288ee005d5da050446b86 +size 123772 diff --git a/datasets/handleImage/train/订单1806502_51_7107001.jpg b/datasets/handleImage/train/订单1806502_51_7107001.jpg new file mode 100644 index 0000000..b1ee69d --- /dev/null +++ b/datasets/handleImage/train/订单1806502_51_7107001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6e7ee812ca4dd9f815632927011b177112c625289edf44f461cbdf2c2154c4 +size 198919 diff --git a/datasets/handleImage/train/订单1806504_51_7107026.jpg b/datasets/handleImage/train/订单1806504_51_7107026.jpg new file mode 100644 index 0000000..30047da --- /dev/null +++ b/datasets/handleImage/train/订单1806504_51_7107026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480cdbce8662e56fe338ea89799321962b0b7023708187bc53a935accbaa8074 +size 460819 diff --git a/datasets/handleImage/train/订单1806507_51_7107059.jpg b/datasets/handleImage/train/订单1806507_51_7107059.jpg new file mode 100644 index 0000000..812fc77 --- /dev/null +++ b/datasets/handleImage/train/订单1806507_51_7107059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01cd1c4841f0a39d8bfecc6830f650b3c2a43a5aa7ad859c47e492581356a43 +size 137194 diff --git a/datasets/handleImage/train/订单1806511_51_7107090.jpg b/datasets/handleImage/train/订单1806511_51_7107090.jpg new file mode 100644 index 0000000..e4b0864 --- /dev/null +++ b/datasets/handleImage/train/订单1806511_51_7107090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15aaf6f4ac6a9ae96626bdaa59347fec072df7ac47c50dba611e752ba75799 +size 127182 diff --git a/datasets/handleImage/train/订单1806513_51_7107909.jpg b/datasets/handleImage/train/订单1806513_51_7107909.jpg new file mode 100644 index 0000000..3c5c2b2 --- /dev/null +++ b/datasets/handleImage/train/订单1806513_51_7107909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf4a635e4c9192a09d2f0e30aefcd11ec6c9d44cbc04b275361b5cafe16c782 +size 143507 diff --git a/datasets/handleImage/train/订单1806514_51_7107083.jpg b/datasets/handleImage/train/订单1806514_51_7107083.jpg new file mode 100644 index 0000000..617c4b5 --- /dev/null +++ b/datasets/handleImage/train/订单1806514_51_7107083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3230377df4ae7128e0edb9b8c5acb24b46bc373155cc6d01630318b45021051 +size 543640 diff --git a/datasets/handleImage/train/订单1806515_51_7107133.jpg b/datasets/handleImage/train/订单1806515_51_7107133.jpg new file mode 100644 index 0000000..637410b --- /dev/null +++ b/datasets/handleImage/train/订单1806515_51_7107133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ceb66e895834b2e4327299b055f999dc96fa7a284a671cb3afa588fa4b51a8 +size 126857 diff --git a/datasets/handleImage/train/订单1806516_51_7107103.jpg b/datasets/handleImage/train/订单1806516_51_7107103.jpg new file mode 100644 index 0000000..0c7b9b0 --- /dev/null +++ b/datasets/handleImage/train/订单1806516_51_7107103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c742592ac1b33fd4aa4adeb3ca7e5d66b72b172d99569c9dd672553381cb1e +size 138313 diff --git a/datasets/handleImage/train/订单1806519_51_7107227.jpg b/datasets/handleImage/train/订单1806519_51_7107227.jpg new file mode 100644 index 0000000..f69d159 --- /dev/null +++ b/datasets/handleImage/train/订单1806519_51_7107227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a308a2ab5e81e7fda5865a43d56dd1cf6fee591244c54cfb46dd7ed1ff9168 +size 154619 diff --git a/datasets/handleImage/train/订单1806522_51_7107184.jpg b/datasets/handleImage/train/订单1806522_51_7107184.jpg new file mode 100644 index 0000000..9438ba5 --- /dev/null +++ b/datasets/handleImage/train/订单1806522_51_7107184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d080ff12c8ed0c09d09e66673b7820e221fd99fd2d85568639ed023bb81cb4ed +size 243562 diff --git a/datasets/handleImage/train/订单1806523_51_7107175.jpg b/datasets/handleImage/train/订单1806523_51_7107175.jpg new file mode 100644 index 0000000..9872102 --- /dev/null +++ b/datasets/handleImage/train/订单1806523_51_7107175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d8716b02491ec82430072acc9914053e2524ad64743a689912cd4cf5bf5116 +size 586763 diff --git a/datasets/handleImage/train/订单1806524_51_7107203.jpg b/datasets/handleImage/train/订单1806524_51_7107203.jpg new file mode 100644 index 0000000..4015879 --- /dev/null +++ b/datasets/handleImage/train/订单1806524_51_7107203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75fd36f51061f30579c73e74aaef747a9d49c67fc6643e428ddf42b2a1ca5bb +size 124796 diff --git a/datasets/handleImage/train/订单1806526_51_7107134.jpg b/datasets/handleImage/train/订单1806526_51_7107134.jpg new file mode 100644 index 0000000..11e4f41 --- /dev/null +++ b/datasets/handleImage/train/订单1806526_51_7107134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611620f280a11ce5b203120d3a2b2fe62576cd0b09f9f728812bcfadfdcb9154 +size 127986 diff --git a/datasets/handleImage/train/订单1806528_51_7107115.jpg b/datasets/handleImage/train/订单1806528_51_7107115.jpg new file mode 100644 index 0000000..93c3503 --- /dev/null +++ b/datasets/handleImage/train/订单1806528_51_7107115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9308801a1e6cdcf5937bfd10af59fa28d581efcbe2dcf29074b74ddfcba69a82 +size 117291 diff --git a/datasets/handleImage/train/订单1806536_51_7107277.jpg b/datasets/handleImage/train/订单1806536_51_7107277.jpg new file mode 100644 index 0000000..0f7fa58 --- /dev/null +++ b/datasets/handleImage/train/订单1806536_51_7107277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9a8afe921ce349006d9556da24aeea9113311f6b74be86e90b8e1b84b9f70c +size 176812 diff --git a/datasets/handleImage/train/订单1806541_51_7107482.jpg b/datasets/handleImage/train/订单1806541_51_7107482.jpg new file mode 100644 index 0000000..30eb3fa --- /dev/null +++ b/datasets/handleImage/train/订单1806541_51_7107482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba86317ac2710444e10d64512849811f65c1bf7e9f6297b08964e1f420b6475 +size 144287 diff --git a/datasets/handleImage/train/订单1806543_51_7107285.jpg b/datasets/handleImage/train/订单1806543_51_7107285.jpg new file mode 100644 index 0000000..bc09c99 --- /dev/null +++ b/datasets/handleImage/train/订单1806543_51_7107285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a4e6da827930f29f4c8824f95c9979966b4d0b03408edfa743f70f765c2131 +size 118932 diff --git a/datasets/handleImage/train/订单1806544_51_7107363.jpg b/datasets/handleImage/train/订单1806544_51_7107363.jpg new file mode 100644 index 0000000..b6aab21 --- /dev/null +++ b/datasets/handleImage/train/订单1806544_51_7107363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad3ebdd56da1f2065a878fc4cf1c9e379db948d1aa3985f4b74b1d2f5729169 +size 125251 diff --git a/datasets/handleImage/train/订单1806545_51_7107289.jpg b/datasets/handleImage/train/订单1806545_51_7107289.jpg new file mode 100644 index 0000000..577e433 --- /dev/null +++ b/datasets/handleImage/train/订单1806545_51_7107289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ea3aca9e423732fc07b58c4f61d4744db473b594c20dac1909206cfe2f7445 +size 92028 diff --git a/datasets/handleImage/train/订单1806548_51_7107271.jpg b/datasets/handleImage/train/订单1806548_51_7107271.jpg new file mode 100644 index 0000000..4cec398 --- /dev/null +++ b/datasets/handleImage/train/订单1806548_51_7107271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79992bbc833e278967d9077992229771e93ecb47ad724ccc6fae26404a396260 +size 150610 diff --git a/datasets/handleImage/train/订单1806552_51_7107273.jpg b/datasets/handleImage/train/订单1806552_51_7107273.jpg new file mode 100644 index 0000000..2d784fd --- /dev/null +++ b/datasets/handleImage/train/订单1806552_51_7107273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005e4e09d12e67ecef0bab78afd0671d807772283164cfb8ce6c3cb638d81d8d +size 411001 diff --git a/datasets/handleImage/train/订单1806555_51_7107321.jpg b/datasets/handleImage/train/订单1806555_51_7107321.jpg new file mode 100644 index 0000000..8de43c2 --- /dev/null +++ b/datasets/handleImage/train/订单1806555_51_7107321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c8e97fbfa34ef0b9406f3ddd1f093f1964329c3b6c3ca9a883d1c0263b9c00 +size 106654 diff --git a/datasets/handleImage/train/订单1806560_51_7107355.jpg b/datasets/handleImage/train/订单1806560_51_7107355.jpg new file mode 100644 index 0000000..2ce9263 --- /dev/null +++ b/datasets/handleImage/train/订单1806560_51_7107355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b79820f91f61761302fa46527e52bfb20ea8dc5b27cffb1dbb5ce0d9af2e7c4 +size 116631 diff --git a/datasets/handleImage/train/订单1806561_51_7107346.jpg b/datasets/handleImage/train/订单1806561_51_7107346.jpg new file mode 100644 index 0000000..408da2e --- /dev/null +++ b/datasets/handleImage/train/订单1806561_51_7107346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9488ce2a31ca445d018fd1efcff26fe076fa44ce01977b2f998bf851f23bbd +size 134051 diff --git a/datasets/handleImage/train/订单1806563_51_7107441.jpg b/datasets/handleImage/train/订单1806563_51_7107441.jpg new file mode 100644 index 0000000..390db5a --- /dev/null +++ b/datasets/handleImage/train/订单1806563_51_7107441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5008fa9827e7defbd8d5083f53ae5db0f28d9bb1b59266ce81b07ab0d9cecfe6 +size 171979 diff --git a/datasets/handleImage/train/订单1806566_51_7107507.jpg b/datasets/handleImage/train/订单1806566_51_7107507.jpg new file mode 100644 index 0000000..0866589 --- /dev/null +++ b/datasets/handleImage/train/订单1806566_51_7107507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0e0d8b9d40b3752757733f45cdd90d18abbc57cccb870bbfad658928ea3fe1 +size 565003 diff --git a/datasets/handleImage/train/订单1806567_51_7107454.jpg b/datasets/handleImage/train/订单1806567_51_7107454.jpg new file mode 100644 index 0000000..6d5c144 --- /dev/null +++ b/datasets/handleImage/train/订单1806567_51_7107454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60920c8190018ed05ce3a340ed8fd929aec154d1c35db796f76858a420ae0e +size 110665 diff --git a/datasets/handleImage/train/订单1806568_51_7107451.jpg b/datasets/handleImage/train/订单1806568_51_7107451.jpg new file mode 100644 index 0000000..00c892e --- /dev/null +++ b/datasets/handleImage/train/订单1806568_51_7107451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5774e5a32349979377f5ffe07d4ac562973939fd770ecd6af94c6d687d8d9c84 +size 440477 diff --git a/datasets/handleImage/train/订单1806570_51_7107513.jpg b/datasets/handleImage/train/订单1806570_51_7107513.jpg new file mode 100644 index 0000000..51e7a81 --- /dev/null +++ b/datasets/handleImage/train/订单1806570_51_7107513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc74e7893d46d5639c9d0b8d80624ce4bf3e6ebcb80b820dc1279b76207c743b +size 105463 diff --git a/datasets/handleImage/train/订单1806578_51_7107558.jpg b/datasets/handleImage/train/订单1806578_51_7107558.jpg new file mode 100644 index 0000000..e6660d9 --- /dev/null +++ b/datasets/handleImage/train/订单1806578_51_7107558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128f4d1b0723b380badcee8231f2bcbc834f78bcff0c235393bde1f713e69e23 +size 423949 diff --git a/datasets/handleImage/train/订单1806583_51_7108508.jpg b/datasets/handleImage/train/订单1806583_51_7108508.jpg new file mode 100644 index 0000000..8542daf --- /dev/null +++ b/datasets/handleImage/train/订单1806583_51_7108508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162223a73a74f2786466b18f826289365db84dedf949a5203375fa92dd3a899e +size 515021 diff --git a/datasets/handleImage/train/订单1806589_51_7107638.jpg b/datasets/handleImage/train/订单1806589_51_7107638.jpg new file mode 100644 index 0000000..13c4005 --- /dev/null +++ b/datasets/handleImage/train/订单1806589_51_7107638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34764e02719e27d26eda0e8759e7eed5be7f026f94867ed6a63dd57c39d35c57 +size 754554 diff --git a/datasets/handleImage/train/订单1806596_51_7107765.jpg b/datasets/handleImage/train/订单1806596_51_7107765.jpg new file mode 100644 index 0000000..1425cc8 --- /dev/null +++ b/datasets/handleImage/train/订单1806596_51_7107765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0657461a7f7e859dee4d2e45c5f4760f8fa013b931330f429be1ec53e32d32 +size 154593 diff --git a/datasets/handleImage/train/订单1806598_51_7107754.jpg b/datasets/handleImage/train/订单1806598_51_7107754.jpg new file mode 100644 index 0000000..00b82c1 --- /dev/null +++ b/datasets/handleImage/train/订单1806598_51_7107754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f9511c4e125791b3ebebcc3c49470a9cb8ad2b573a8830db9d24555bac0451 +size 400331 diff --git a/datasets/handleImage/train/订单1806600_51_7107938.jpg b/datasets/handleImage/train/订单1806600_51_7107938.jpg new file mode 100644 index 0000000..aacb6c3 --- /dev/null +++ b/datasets/handleImage/train/订单1806600_51_7107938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2417427037d5de15f79e5de3f1ecd0cb48ff7990ab68f11d10e4acaa43aefe84 +size 89838 diff --git a/datasets/handleImage/train/订单1806601_51_7107745.jpg b/datasets/handleImage/train/订单1806601_51_7107745.jpg new file mode 100644 index 0000000..963b2e8 --- /dev/null +++ b/datasets/handleImage/train/订单1806601_51_7107745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475a08489af918069d31672cb744a359ab66c01ceb7407c48b06312a4971785c +size 110274 diff --git a/datasets/handleImage/train/订单1806603_51_7107795.jpg b/datasets/handleImage/train/订单1806603_51_7107795.jpg new file mode 100644 index 0000000..50fdafc --- /dev/null +++ b/datasets/handleImage/train/订单1806603_51_7107795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5ac42923433d287e526564547038b04795128624e66acccdd8a0eef2f85cda +size 140069 diff --git a/datasets/handleImage/train/订单1806604_51_7107828.jpg b/datasets/handleImage/train/订单1806604_51_7107828.jpg new file mode 100644 index 0000000..921c042 --- /dev/null +++ b/datasets/handleImage/train/订单1806604_51_7107828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff484f171259fe552f187d0bf5c481e4e5c2a2813245ab36bc884de25f441b4b +size 113756 diff --git a/datasets/handleImage/train/订单1806607_51_7107900.jpg b/datasets/handleImage/train/订单1806607_51_7107900.jpg new file mode 100644 index 0000000..6c58322 --- /dev/null +++ b/datasets/handleImage/train/订单1806607_51_7107900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3a691f3777404553785c1eaf502ec99195860d3d400d2d141097746288b41a +size 132209 diff --git a/datasets/handleImage/train/订单1806610_51_7107834.jpg b/datasets/handleImage/train/订单1806610_51_7107834.jpg new file mode 100644 index 0000000..f867b16 --- /dev/null +++ b/datasets/handleImage/train/订单1806610_51_7107834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b159207dc143241dcba50a6a57ed7c4cd84c41b8af3f84f153082526d8eb8cd0 +size 95732 diff --git a/datasets/handleImage/train/订单1806615_51_7107821.jpg b/datasets/handleImage/train/订单1806615_51_7107821.jpg new file mode 100644 index 0000000..6fbd4c6 --- /dev/null +++ b/datasets/handleImage/train/订单1806615_51_7107821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ffcc5ac3eabdf4287ce01e3036003a9d4a3a3d6ffd19d74bb7094a594ebf62 +size 145844 diff --git a/datasets/handleImage/train/订单1806618_51_7107891.jpg b/datasets/handleImage/train/订单1806618_51_7107891.jpg new file mode 100644 index 0000000..4d1c524 --- /dev/null +++ b/datasets/handleImage/train/订单1806618_51_7107891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a52b964776e72bb2991c2ae0cc0faf165f7ec36d6180a1989294b7790ad38cf +size 172819 diff --git a/datasets/handleImage/train/订单1806625_51_7107994.jpg b/datasets/handleImage/train/订单1806625_51_7107994.jpg new file mode 100644 index 0000000..35206ce --- /dev/null +++ b/datasets/handleImage/train/订单1806625_51_7107994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad02d5098b4dacef9a96f9745b3b59772b7cf46cb9ce4589fa8f376d559a533 +size 66618 diff --git a/datasets/handleImage/train/订单1806626_51_7108129.jpg b/datasets/handleImage/train/订单1806626_51_7108129.jpg new file mode 100644 index 0000000..8faae63 --- /dev/null +++ b/datasets/handleImage/train/订单1806626_51_7108129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fda4d4853b409c776185511505680d4c69b16496c31a4509d2dd7bc061e94f5 +size 124416 diff --git a/datasets/handleImage/train/订单1806627_51_7108082.jpg b/datasets/handleImage/train/订单1806627_51_7108082.jpg new file mode 100644 index 0000000..10d7df8 --- /dev/null +++ b/datasets/handleImage/train/订单1806627_51_7108082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9505319f72faa0f12d1eec23d6206ed0ede06fe64e0b6e2db944d2cb9f6741a7 +size 187277 diff --git a/datasets/handleImage/train/订单1806629_51_7108069.jpg b/datasets/handleImage/train/订单1806629_51_7108069.jpg new file mode 100644 index 0000000..7f23d7b --- /dev/null +++ b/datasets/handleImage/train/订单1806629_51_7108069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29096fab1cd9dab5097e6e76cb8d1d7c9edbe47421e35d47c37294559a26d20 +size 165510 diff --git a/datasets/handleImage/train/订单1806633_51_7108088.jpg b/datasets/handleImage/train/订单1806633_51_7108088.jpg new file mode 100644 index 0000000..61c4c5b --- /dev/null +++ b/datasets/handleImage/train/订单1806633_51_7108088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221d7e8b34a2bc95974048d39ca7e019d1573d9c72436092769e998fb3b7096c +size 631423 diff --git a/datasets/handleImage/train/订单1806638_51_7108131.jpg b/datasets/handleImage/train/订单1806638_51_7108131.jpg new file mode 100644 index 0000000..e4e87c5 --- /dev/null +++ b/datasets/handleImage/train/订单1806638_51_7108131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8303a09edec9feaedb5ded4f65e416223c438fb0b76a7c65d4b9be5d7f746e +size 133993 diff --git a/datasets/handleImage/train/订单1806640_51_7108162.jpg b/datasets/handleImage/train/订单1806640_51_7108162.jpg new file mode 100644 index 0000000..7fca224 --- /dev/null +++ b/datasets/handleImage/train/订单1806640_51_7108162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b88bc2d9d2056314da0703e729a00cad4ed4c743ee67ff5bd0d42e790ef86dd +size 714067 diff --git a/datasets/handleImage/train/订单1806641_51_7108198.jpg b/datasets/handleImage/train/订单1806641_51_7108198.jpg new file mode 100644 index 0000000..a1d0bce --- /dev/null +++ b/datasets/handleImage/train/订单1806641_51_7108198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd64dbafb109fef24f5d03acbab82b05a43883698b2c9bcddce6db3f52899681 +size 121604 diff --git a/datasets/handleImage/train/订单1806643_51_7108281.jpg b/datasets/handleImage/train/订单1806643_51_7108281.jpg new file mode 100644 index 0000000..4d345ec --- /dev/null +++ b/datasets/handleImage/train/订单1806643_51_7108281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debf3cd856975137102003020fcc1f182c0acafbf1bd0b02dfdc287ebdee474b +size 303950 diff --git a/datasets/handleImage/train/订单1806644_51_7108286.jpg b/datasets/handleImage/train/订单1806644_51_7108286.jpg new file mode 100644 index 0000000..28003da --- /dev/null +++ b/datasets/handleImage/train/订单1806644_51_7108286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763c5256ce01e4e6656a71f9e05350bd0ddcc2169267d45130fb8f5688e9e9eb +size 159595 diff --git a/datasets/handleImage/train/订单1806646_51_7108239.jpg b/datasets/handleImage/train/订单1806646_51_7108239.jpg new file mode 100644 index 0000000..19f7e72 --- /dev/null +++ b/datasets/handleImage/train/订单1806646_51_7108239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e704a7d20652bf47082961023ceb0023122d0c526d8483519b76556709478a8a +size 128142 diff --git a/datasets/handleImage/train/订单1806647_51_7108252.jpg b/datasets/handleImage/train/订单1806647_51_7108252.jpg new file mode 100644 index 0000000..5210ce7 --- /dev/null +++ b/datasets/handleImage/train/订单1806647_51_7108252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab58ca6369c3b6af71b1a9cc50f5b4287c1efd04a03a20651df634625e01a608 +size 140159 diff --git a/datasets/handleImage/train/订单1806650_51_7108312.jpg b/datasets/handleImage/train/订单1806650_51_7108312.jpg new file mode 100644 index 0000000..1e3edb2 --- /dev/null +++ b/datasets/handleImage/train/订单1806650_51_7108312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd45b27d6e28880f41a4b8ba6839c2b3463bb37048eafbaf89748fd24268f56f +size 148586 diff --git a/datasets/handleImage/train/订单1806652_51_7108355.jpg b/datasets/handleImage/train/订单1806652_51_7108355.jpg new file mode 100644 index 0000000..92c85d4 --- /dev/null +++ b/datasets/handleImage/train/订单1806652_51_7108355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83d3fbaf04736d618f66a755c0cfb14c2202868511c5aed4b292f6352155b45 +size 299928 diff --git a/datasets/handleImage/train/订单1806653_51_7108388.jpg b/datasets/handleImage/train/订单1806653_51_7108388.jpg new file mode 100644 index 0000000..ee89484 --- /dev/null +++ b/datasets/handleImage/train/订单1806653_51_7108388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69ce9687726ed29576c590154a2495a3f4990ee9ec0d7604b2da665aa95dcc3 +size 102262 diff --git a/datasets/handleImage/train/订单1806654_51_7108342.jpg b/datasets/handleImage/train/订单1806654_51_7108342.jpg new file mode 100644 index 0000000..d9759d5 --- /dev/null +++ b/datasets/handleImage/train/订单1806654_51_7108342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2224d65382bb493190d185cb5ff7a6d802a98c0a7105d84e801f8c3b7d832bfa +size 407989 diff --git a/datasets/handleImage/train/订单1806655_51_7108343.jpg b/datasets/handleImage/train/订单1806655_51_7108343.jpg new file mode 100644 index 0000000..2fa289a --- /dev/null +++ b/datasets/handleImage/train/订单1806655_51_7108343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1f6d90f6b450e8307b91eb8c9e27b728b57698bfa39b576ebcd362fe3dd154 +size 145366 diff --git a/datasets/handleImage/train/订单1806657_51_7108437.jpg b/datasets/handleImage/train/订单1806657_51_7108437.jpg new file mode 100644 index 0000000..97db097 --- /dev/null +++ b/datasets/handleImage/train/订单1806657_51_7108437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d831f37f23cf833a4801b565e13af98dff3242e99fb5f2094b18a206ef367518 +size 92376 diff --git a/datasets/handleImage/train/订单1806663_51_7108428.jpg b/datasets/handleImage/train/订单1806663_51_7108428.jpg new file mode 100644 index 0000000..2c27dc8 --- /dev/null +++ b/datasets/handleImage/train/订单1806663_51_7108428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d05f6e722da1183c08a3c2d289bc209bbf1c36c43f6bc30d99df490f88ec3b +size 99538 diff --git a/datasets/handleImage/train/订单1806664_51_7108447.jpg b/datasets/handleImage/train/订单1806664_51_7108447.jpg new file mode 100644 index 0000000..c89dce1 --- /dev/null +++ b/datasets/handleImage/train/订单1806664_51_7108447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec236685742f195048e46dc1df24f2b66a850ce2dff19bd48f434fa24fa3402 +size 160207 diff --git a/datasets/handleImage/train/订单1806667_51_7108421.jpg b/datasets/handleImage/train/订单1806667_51_7108421.jpg new file mode 100644 index 0000000..bcc1238 --- /dev/null +++ b/datasets/handleImage/train/订单1806667_51_7108421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9947dce7d466e17347bf3859cec07afd07d319e6e6822efee3d9d3c0bba8cec6 +size 117472 diff --git a/datasets/handleImage/train/订单1806672_51_7108598.jpg b/datasets/handleImage/train/订单1806672_51_7108598.jpg new file mode 100644 index 0000000..affa56f --- /dev/null +++ b/datasets/handleImage/train/订单1806672_51_7108598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1852a4f9ef55c1b94bf8cb7273b99b0e99286331d0365cf6b0edeb12140ae40 +size 215371 diff --git a/datasets/handleImage/train/订单1806673_51_7108593.jpg b/datasets/handleImage/train/订单1806673_51_7108593.jpg new file mode 100644 index 0000000..9d2dffd --- /dev/null +++ b/datasets/handleImage/train/订单1806673_51_7108593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6ece4b08ef1656ebe7c2bac5ddef535590c21893b38b8f2061ebfac1e7e47b +size 220080 diff --git a/datasets/handleImage/train/订单1806676_51_7108594.jpg b/datasets/handleImage/train/订单1806676_51_7108594.jpg new file mode 100644 index 0000000..572bd74 --- /dev/null +++ b/datasets/handleImage/train/订单1806676_51_7108594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d811b7c35acea8c7f9a434a4a38f8c49b419ac719d13362cce9d56ca9d40ce6 +size 697254 diff --git a/datasets/handleImage/train/订单1806685_51_7108626.jpg b/datasets/handleImage/train/订单1806685_51_7108626.jpg new file mode 100644 index 0000000..a2b028a --- /dev/null +++ b/datasets/handleImage/train/订单1806685_51_7108626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4964ec596e1d184f3f43edea7fe2a484afc592ec33f5367cb4f1982fc2fa7a55 +size 142547 diff --git a/datasets/handleImage/train/订单1806687_51_7108742.jpg b/datasets/handleImage/train/订单1806687_51_7108742.jpg new file mode 100644 index 0000000..9af098b --- /dev/null +++ b/datasets/handleImage/train/订单1806687_51_7108742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2340a6c03398618a67ad224a0db00acaa3d4f9c14bc80b174a239b549dae8a +size 172553 diff --git a/datasets/handleImage/train/订单1806688_51_7108719.jpg b/datasets/handleImage/train/订单1806688_51_7108719.jpg new file mode 100644 index 0000000..1a964d3 --- /dev/null +++ b/datasets/handleImage/train/订单1806688_51_7108719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a25e4a9895c6a5dffa081963331d6d3142777436ef6e8b160960858d3740c4d +size 163105 diff --git a/datasets/handleImage/train/订单1806689_51_7109608.jpg b/datasets/handleImage/train/订单1806689_51_7109608.jpg new file mode 100644 index 0000000..f0e7441 --- /dev/null +++ b/datasets/handleImage/train/订单1806689_51_7109608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4565991264f3e2f72eba5e877f3bfd05ca6775712ca951a85cb5e0923895873a +size 192191 diff --git a/datasets/handleImage/train/订单1806693_51_7108727.jpg b/datasets/handleImage/train/订单1806693_51_7108727.jpg new file mode 100644 index 0000000..501cf77 --- /dev/null +++ b/datasets/handleImage/train/订单1806693_51_7108727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e36f07a90f855a5f5ce949dfdbde8e161293cbb6374c012642e3e747c0724ad +size 363801 diff --git a/datasets/handleImage/train/订单1806696_51_7108692.jpg b/datasets/handleImage/train/订单1806696_51_7108692.jpg new file mode 100644 index 0000000..0247936 --- /dev/null +++ b/datasets/handleImage/train/订单1806696_51_7108692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4b1d191d82ca1a8d5f2d340b9ba284b81b046cc131bf1dea69f76f4ce30a01 +size 129542 diff --git a/datasets/handleImage/train/订单1806701_51_7108770.jpg b/datasets/handleImage/train/订单1806701_51_7108770.jpg new file mode 100644 index 0000000..83458ab --- /dev/null +++ b/datasets/handleImage/train/订单1806701_51_7108770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25344917a0b82fe3627e7fe956f148b5e78b9c6196621f0d8903e924f2e84c48 +size 157720 diff --git a/datasets/handleImage/train/订单1806702_51_7108883.jpg b/datasets/handleImage/train/订单1806702_51_7108883.jpg new file mode 100644 index 0000000..dc84acb --- /dev/null +++ b/datasets/handleImage/train/订单1806702_51_7108883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42670c1898e351b70ed16cbe12367c006d5c1e7a2e55a4a7e2b8affc4488dc2a +size 120736 diff --git a/datasets/handleImage/train/订单1806704_51_7108800.jpg b/datasets/handleImage/train/订单1806704_51_7108800.jpg new file mode 100644 index 0000000..2b8b12c --- /dev/null +++ b/datasets/handleImage/train/订单1806704_51_7108800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e5b2830aa4fc157c90992614e5a7350271c59b6027900aa251f2882d55c6bf +size 155026 diff --git a/datasets/handleImage/train/订单1806705_51_7109131.jpg b/datasets/handleImage/train/订单1806705_51_7109131.jpg new file mode 100644 index 0000000..d2e1087 --- /dev/null +++ b/datasets/handleImage/train/订单1806705_51_7109131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58599303da546dfb2d361d42ef62f3095fa642f93dea08c2d8ee80c993f0d5 +size 144727 diff --git a/datasets/handleImage/train/订单1806707_51_7108960.jpg b/datasets/handleImage/train/订单1806707_51_7108960.jpg new file mode 100644 index 0000000..dfeb323 --- /dev/null +++ b/datasets/handleImage/train/订单1806707_51_7108960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607c82b54944be44262a9a652bf82d34aa2eb004923bd31eaff885c817cdd32f +size 575633 diff --git a/datasets/handleImage/train/订单1806710_51_7108866.jpg b/datasets/handleImage/train/订单1806710_51_7108866.jpg new file mode 100644 index 0000000..75596d7 --- /dev/null +++ b/datasets/handleImage/train/订单1806710_51_7108866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef00b3c007ccacb2111de1c72cf40445dbd320f13c03cdec8eace96257301b64 +size 177510 diff --git a/datasets/handleImage/train/订单1806714_51_7108942.jpg b/datasets/handleImage/train/订单1806714_51_7108942.jpg new file mode 100644 index 0000000..e0956d0 --- /dev/null +++ b/datasets/handleImage/train/订单1806714_51_7108942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5a8b2339e576f9a63bb6386c21b4f916ab273fb2445a48b63d6a233729df6e +size 299236 diff --git a/datasets/handleImage/train/订单1806715_51_7108921.jpg b/datasets/handleImage/train/订单1806715_51_7108921.jpg new file mode 100644 index 0000000..4ae6b97 --- /dev/null +++ b/datasets/handleImage/train/订单1806715_51_7108921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217e269a32998f69c3df4805eceef0e97457e9b287e98211a4939390cf8eac5d +size 239638 diff --git a/datasets/handleImage/train/订单1806724_51_7108964.jpg b/datasets/handleImage/train/订单1806724_51_7108964.jpg new file mode 100644 index 0000000..234c713 --- /dev/null +++ b/datasets/handleImage/train/订单1806724_51_7108964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b0b29d72103da328e2bc416b71c0770f592af0f9769096bb358de1fb850040 +size 224935 diff --git a/datasets/handleImage/train/订单1806725_51_7109074.jpg b/datasets/handleImage/train/订单1806725_51_7109074.jpg new file mode 100644 index 0000000..151f649 --- /dev/null +++ b/datasets/handleImage/train/订单1806725_51_7109074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b150190982855d7a4668dbb5f8c42f4aad771887a236475a35a50c6596a4ff0a +size 114204 diff --git a/datasets/handleImage/train/订单1806726_51_7109000.jpg b/datasets/handleImage/train/订单1806726_51_7109000.jpg new file mode 100644 index 0000000..73c0cdf --- /dev/null +++ b/datasets/handleImage/train/订单1806726_51_7109000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16990ef425c3c5860def782b6dcb6cdafc05306221ac84c2f7622c8641b46ab1 +size 130315 diff --git a/datasets/handleImage/train/订单1806731_51_7109028.jpg b/datasets/handleImage/train/订单1806731_51_7109028.jpg new file mode 100644 index 0000000..3e8a1b8 --- /dev/null +++ b/datasets/handleImage/train/订单1806731_51_7109028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b3182df15120ff7a32e13154510372596a9503e8e92a51cf254c1b8229333d +size 138284 diff --git a/datasets/handleImage/train/订单1806732_51_7109071.jpg b/datasets/handleImage/train/订单1806732_51_7109071.jpg new file mode 100644 index 0000000..43e3d02 --- /dev/null +++ b/datasets/handleImage/train/订单1806732_51_7109071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b8aab9250a819bdad20a49d1e27d3d3bb8cfc738fcd06d210e183e5d3614df +size 527515 diff --git a/datasets/handleImage/train/订单1806735_51_7109159.jpg b/datasets/handleImage/train/订单1806735_51_7109159.jpg new file mode 100644 index 0000000..c39dd86 --- /dev/null +++ b/datasets/handleImage/train/订单1806735_51_7109159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33681533b09f3b508341ea74b47fc599695d3c2b8d0ca6f9bf533b56cf834b45 +size 172353 diff --git a/datasets/handleImage/train/订单1806736_51_7109098.jpg b/datasets/handleImage/train/订单1806736_51_7109098.jpg new file mode 100644 index 0000000..53592b2 --- /dev/null +++ b/datasets/handleImage/train/订单1806736_51_7109098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df432cd292e3d496098ddce7546e148d2a38ff2a2e6771592a2fecb52ead8845 +size 124911 diff --git a/datasets/handleImage/train/订单1806739_51_7109124.jpg b/datasets/handleImage/train/订单1806739_51_7109124.jpg new file mode 100644 index 0000000..53c923e --- /dev/null +++ b/datasets/handleImage/train/订单1806739_51_7109124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca92e9b856620c41079cdff58ed24bfaecf9d74e0f62952a01ac92a05fc5ba3 +size 636462 diff --git a/datasets/handleImage/train/订单1806740_51_7109289.jpg b/datasets/handleImage/train/订单1806740_51_7109289.jpg new file mode 100644 index 0000000..df5eb47 --- /dev/null +++ b/datasets/handleImage/train/订单1806740_51_7109289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a059540c4fb5913d740e25d8ad237f6dcc5cf84f3d38cec25b5c2ecb028aebd +size 223785 diff --git a/datasets/handleImage/train/订单1806744_51_7109168.jpg b/datasets/handleImage/train/订单1806744_51_7109168.jpg new file mode 100644 index 0000000..a28aac3 --- /dev/null +++ b/datasets/handleImage/train/订单1806744_51_7109168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2356f368cea4fe5e5b08cd75ccde8f3820eeb33cff10f23fb52b05bcef62eb4b +size 149739 diff --git a/datasets/handleImage/train/订单1806746_51_7109192.jpg b/datasets/handleImage/train/订单1806746_51_7109192.jpg new file mode 100644 index 0000000..76d26d0 --- /dev/null +++ b/datasets/handleImage/train/订单1806746_51_7109192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa634ead83d52145e140e3faabeb48ca283d795c7fe87674fcbb73d310a6073 +size 165539 diff --git a/datasets/handleImage/train/订单1806748_51_7109280.jpg b/datasets/handleImage/train/订单1806748_51_7109280.jpg new file mode 100644 index 0000000..69e0f86 --- /dev/null +++ b/datasets/handleImage/train/订单1806748_51_7109280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee4cd65c002a238c2d45bf4c2a39ac97f310412e13a6189b9f07eb77c476c39 +size 152617 diff --git a/datasets/handleImage/train/订单1806749_51_7109191.jpg b/datasets/handleImage/train/订单1806749_51_7109191.jpg new file mode 100644 index 0000000..ae28d30 --- /dev/null +++ b/datasets/handleImage/train/订单1806749_51_7109191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34e827fc452b17f309769ae1735acb2e5627ce46b84e181f78c028d3ac50772 +size 125001 diff --git a/datasets/handleImage/train/订单1806750_51_7109251.jpg b/datasets/handleImage/train/订单1806750_51_7109251.jpg new file mode 100644 index 0000000..33d8347 --- /dev/null +++ b/datasets/handleImage/train/订单1806750_51_7109251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88813f189d8c94a08ca80509ce15d5e7987d960e361d91272f82e6a418ddac45 +size 138550 diff --git a/datasets/handleImage/train/订单1806753_51_7109290.jpg b/datasets/handleImage/train/订单1806753_51_7109290.jpg new file mode 100644 index 0000000..e793c66 --- /dev/null +++ b/datasets/handleImage/train/订单1806753_51_7109290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad009951fb32e0fdda974b4e03baa58d98116c89de1cb65b76471ff6d788a64d +size 603954 diff --git a/datasets/handleImage/train/订单1806754_51_7109252.jpg b/datasets/handleImage/train/订单1806754_51_7109252.jpg new file mode 100644 index 0000000..19d5895 --- /dev/null +++ b/datasets/handleImage/train/订单1806754_51_7109252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096468dc6c1c3704126ec5089c8c6c69950fb8a5e28552bc3f6d8d2f696d5149 +size 155891 diff --git a/datasets/handleImage/train/订单1806757_51_7109352.jpg b/datasets/handleImage/train/订单1806757_51_7109352.jpg new file mode 100644 index 0000000..4313980 --- /dev/null +++ b/datasets/handleImage/train/订单1806757_51_7109352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433abde4e3677bc99f048a99cfc9305db3d85309316353a49ef119e8f85ca714 +size 141427 diff --git a/datasets/handleImage/train/订单1806762_51_7109448.jpg b/datasets/handleImage/train/订单1806762_51_7109448.jpg new file mode 100644 index 0000000..28d533a --- /dev/null +++ b/datasets/handleImage/train/订单1806762_51_7109448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c8c0536d0947b147afaea5dd24d4b95ddb1e529f42dfcc7583ceaadcab36ad +size 161767 diff --git a/datasets/handleImage/train/订单1806764_51_7109325.jpg b/datasets/handleImage/train/订单1806764_51_7109325.jpg new file mode 100644 index 0000000..60312a3 --- /dev/null +++ b/datasets/handleImage/train/订单1806764_51_7109325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edb479b28c9affc41237724780ecb9328732cc8daa9926e8ae4e0e23b51437f +size 161570 diff --git a/datasets/handleImage/train/订单1806767_51_7109350.jpg b/datasets/handleImage/train/订单1806767_51_7109350.jpg new file mode 100644 index 0000000..563e8c4 --- /dev/null +++ b/datasets/handleImage/train/订单1806767_51_7109350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb08ff7a0c94b70c808c679906247f47562f208e4319d774a99ccce089b0844 +size 108083 diff --git a/datasets/handleImage/train/订单1806769_51_7109510.jpg b/datasets/handleImage/train/订单1806769_51_7109510.jpg new file mode 100644 index 0000000..9a9aa90 --- /dev/null +++ b/datasets/handleImage/train/订单1806769_51_7109510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b89795f8d373fec43ca6f9c543b44f4ebd45316be8e21fb9538d34c966ce8a6 +size 394321 diff --git a/datasets/handleImage/train/订单1806771_51_7109478.jpg b/datasets/handleImage/train/订单1806771_51_7109478.jpg new file mode 100644 index 0000000..ead6c7b --- /dev/null +++ b/datasets/handleImage/train/订单1806771_51_7109478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31587d4117f7839b04a9fe7cd411e4a8ff0afa60d91f1985ef258a616cbbf19a +size 101547 diff --git a/datasets/handleImage/train/订单1806772_51_7109424.jpg b/datasets/handleImage/train/订单1806772_51_7109424.jpg new file mode 100644 index 0000000..634e03c --- /dev/null +++ b/datasets/handleImage/train/订单1806772_51_7109424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20d5c07002c2daca2c22c157b6c5db676690557cc18574d317a0bdafb064ad5 +size 85200 diff --git a/datasets/handleImage/train/订单1806773_51_7109531.jpg b/datasets/handleImage/train/订单1806773_51_7109531.jpg new file mode 100644 index 0000000..297508f --- /dev/null +++ b/datasets/handleImage/train/订单1806773_51_7109531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0134220521017d2cee648c1a06b8053ec1b1a36971409df330e03124766423ca +size 116987 diff --git a/datasets/handleImage/train/订单1806775_51_7109532.jpg b/datasets/handleImage/train/订单1806775_51_7109532.jpg new file mode 100644 index 0000000..86bccf1 --- /dev/null +++ b/datasets/handleImage/train/订单1806775_51_7109532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4883d30b1852591e198a94cff2b00095c2527d3a2b5ca359fce33ed222fe2 +size 577346 diff --git a/datasets/handleImage/train/订单1806776_51_7109527.jpg b/datasets/handleImage/train/订单1806776_51_7109527.jpg new file mode 100644 index 0000000..6b5f30d --- /dev/null +++ b/datasets/handleImage/train/订单1806776_51_7109527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b905f7d0d55095613b9ba727615aa263700d4c1c21d4f7811047c28eb9a710 +size 116042 diff --git a/datasets/handleImage/train/订单1806779_51_7109619.jpg b/datasets/handleImage/train/订单1806779_51_7109619.jpg new file mode 100644 index 0000000..45896bc --- /dev/null +++ b/datasets/handleImage/train/订单1806779_51_7109619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fade0a29dda2474f877d21211e656b0f70b9a5da146e69d5efaf4e069148ad +size 126451 diff --git a/datasets/handleImage/train/订单1806786_51_7109635.jpg b/datasets/handleImage/train/订单1806786_51_7109635.jpg new file mode 100644 index 0000000..f1426de --- /dev/null +++ b/datasets/handleImage/train/订单1806786_51_7109635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8aa8c8c707a64932f2e6acf6045cc654bd92081e095d5c8b50f9056220936a3 +size 197271 diff --git a/datasets/handleImage/train/订单1806790_51_7109654.jpg b/datasets/handleImage/train/订单1806790_51_7109654.jpg new file mode 100644 index 0000000..f3cea3e --- /dev/null +++ b/datasets/handleImage/train/订单1806790_51_7109654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122c57ac6ce67f86b0eaea4fc417c3a5d1aad60115db4e0f2c384583d90ee719 +size 444432 diff --git a/datasets/handleImage/train/订单1806799_51_7109764.jpg b/datasets/handleImage/train/订单1806799_51_7109764.jpg new file mode 100644 index 0000000..7f49c47 --- /dev/null +++ b/datasets/handleImage/train/订单1806799_51_7109764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afc5ae32631cb90c105b24e6455ffa06401c67520e8edb16c5ffce6a8d40831 +size 312425 diff --git a/datasets/handleImage/train/订单1806804_51_7109816.jpg b/datasets/handleImage/train/订单1806804_51_7109816.jpg new file mode 100644 index 0000000..9853e0e --- /dev/null +++ b/datasets/handleImage/train/订单1806804_51_7109816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ede7c5c47b61c3516a4eae1b77ff2670d6d3b64e456800ce8fef8248a7da342 +size 506988 diff --git a/datasets/handleImage/train/订单1806805_51_7109765.jpg b/datasets/handleImage/train/订单1806805_51_7109765.jpg new file mode 100644 index 0000000..7fcd130 --- /dev/null +++ b/datasets/handleImage/train/订单1806805_51_7109765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f7213ff157e1d5a033ab3ebf9e1b884d78aecac167f358eb235a087baeb9cf +size 546459 diff --git a/datasets/handleImage/train/订单1806807_51_7110016.jpg b/datasets/handleImage/train/订单1806807_51_7110016.jpg new file mode 100644 index 0000000..f8681c4 --- /dev/null +++ b/datasets/handleImage/train/订单1806807_51_7110016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dafd77da4544b4c75c68b88da806f3f7c4fa4e343cc10c69f8c21b0d8f721c19 +size 1292168 diff --git a/datasets/handleImage/train/订单1806810_51_7110036.jpg b/datasets/handleImage/train/订单1806810_51_7110036.jpg new file mode 100644 index 0000000..8895b7e --- /dev/null +++ b/datasets/handleImage/train/订单1806810_51_7110036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86720952448f4764ccbce0564512718935143894c0437cbfae79e5765fea405e +size 88937 diff --git a/datasets/handleImage/train/订单1806812_51_7109968.jpg b/datasets/handleImage/train/订单1806812_51_7109968.jpg new file mode 100644 index 0000000..e084eb6 --- /dev/null +++ b/datasets/handleImage/train/订单1806812_51_7109968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab3c5e76086a4dc871daac73757ba81e016c10621f828bdeca787c73b1487b4 +size 106362 diff --git a/datasets/handleImage/train/订单1806813_51_7109962.jpg b/datasets/handleImage/train/订单1806813_51_7109962.jpg new file mode 100644 index 0000000..2e41f2e --- /dev/null +++ b/datasets/handleImage/train/订单1806813_51_7109962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c805e3040fd38f23de4ca2b07c63fd96902e932c9049fe6b92b9fa1bb409a +size 327450 diff --git a/datasets/handleImage/train/订单1806819_51_7109971.jpg b/datasets/handleImage/train/订单1806819_51_7109971.jpg new file mode 100644 index 0000000..5833cf5 --- /dev/null +++ b/datasets/handleImage/train/订单1806819_51_7109971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6ba81d09dcbc97bc1f6edee1455faff48d2fc92917fd7594805e24b4b4e656 +size 374953 diff --git a/datasets/handleImage/train/订单1806820_51_7110176.jpg b/datasets/handleImage/train/订单1806820_51_7110176.jpg new file mode 100644 index 0000000..6ef4506 --- /dev/null +++ b/datasets/handleImage/train/订单1806820_51_7110176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab3d5064915e917c86210eabc274f2ffc079deafd432dff56f4d360ec8ed96e +size 376305 diff --git a/datasets/handleImage/train/订单1806821_51_7109957.jpg b/datasets/handleImage/train/订单1806821_51_7109957.jpg new file mode 100644 index 0000000..9c8788c --- /dev/null +++ b/datasets/handleImage/train/订单1806821_51_7109957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e10cf060ca0717b46b6e0fe11650397848ec77ce10dca2486b58edde6040cb3 +size 131525 diff --git a/datasets/handleImage/train/订单1806822_51_7109905.jpg b/datasets/handleImage/train/订单1806822_51_7109905.jpg new file mode 100644 index 0000000..86344d4 --- /dev/null +++ b/datasets/handleImage/train/订单1806822_51_7109905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db53dc49add65564e998532378cdccff229d353702d33bd0103a9f6aec434d56 +size 123356 diff --git a/datasets/handleImage/train/订单1806823_51_7109926.jpg b/datasets/handleImage/train/订单1806823_51_7109926.jpg new file mode 100644 index 0000000..b834869 --- /dev/null +++ b/datasets/handleImage/train/订单1806823_51_7109926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78332d3f2a72aad7b52616f42d648a633e7a8fd2a7b9acf2e134ea3d9c85907 +size 349680 diff --git a/datasets/handleImage/train/订单1806827_51_7110069.jpg b/datasets/handleImage/train/订单1806827_51_7110069.jpg new file mode 100644 index 0000000..2035172 --- /dev/null +++ b/datasets/handleImage/train/订单1806827_51_7110069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dda9ab09d368b72a346850b6c09a7a4fbb3095249de281612a109416490161 +size 375469 diff --git a/datasets/handleImage/train/订单1806828_51_7110021.jpg b/datasets/handleImage/train/订单1806828_51_7110021.jpg new file mode 100644 index 0000000..5115212 --- /dev/null +++ b/datasets/handleImage/train/订单1806828_51_7110021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc769447560ea5d72e62d8f6089d63d662b40004a48a9734dbc54c75e9a9f762 +size 113244 diff --git a/datasets/handleImage/train/订单1806829_51_7110060.jpg b/datasets/handleImage/train/订单1806829_51_7110060.jpg new file mode 100644 index 0000000..4bc4c8f --- /dev/null +++ b/datasets/handleImage/train/订单1806829_51_7110060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a8acc2d482d0ddce6151397e2a17f22aa8e25d3519b2b5c9340dd41cfbfb23 +size 132789 diff --git a/datasets/handleImage/train/订单1806830_51_7110171.jpg b/datasets/handleImage/train/订单1806830_51_7110171.jpg new file mode 100644 index 0000000..14f6f42 --- /dev/null +++ b/datasets/handleImage/train/订单1806830_51_7110171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740a482db4eccbb8adf1d51c0c80813027ce3f733d865aaf21a67527759444f6 +size 400561 diff --git a/datasets/handleImage/train/订单1806832_51_7110070.jpg b/datasets/handleImage/train/订单1806832_51_7110070.jpg new file mode 100644 index 0000000..ea4d6aa --- /dev/null +++ b/datasets/handleImage/train/订单1806832_51_7110070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b31525ceced13c9c02e502e9d3233977c5015530b14fc0de27ddc1dcf32885 +size 95456 diff --git a/datasets/handleImage/train/订单1806834_51_7110088.jpg b/datasets/handleImage/train/订单1806834_51_7110088.jpg new file mode 100644 index 0000000..5358d2d --- /dev/null +++ b/datasets/handleImage/train/订单1806834_51_7110088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310165f88351c013e046825389dc4539cffc2bc1e9e5f830de66df3c9a168f3d +size 276238 diff --git a/datasets/handleImage/train/订单1806836_51_7110123.jpg b/datasets/handleImage/train/订单1806836_51_7110123.jpg new file mode 100644 index 0000000..6b64fbe --- /dev/null +++ b/datasets/handleImage/train/订单1806836_51_7110123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8cf24f869281f737b41583b012c45d3ca95b72eeb0f2f4e808a20845fadbc0 +size 94494 diff --git a/datasets/handleImage/train/订单1806838_51_7110100.jpg b/datasets/handleImage/train/订单1806838_51_7110100.jpg new file mode 100644 index 0000000..8aa7961 --- /dev/null +++ b/datasets/handleImage/train/订单1806838_51_7110100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2faf4fea2ee9eb1ad669b3a3be3be2a1665278c3a2722716a298123edbfd23a3 +size 99435 diff --git a/datasets/handleImage/train/订单1806841_51_7110192.jpg b/datasets/handleImage/train/订单1806841_51_7110192.jpg new file mode 100644 index 0000000..223f19d --- /dev/null +++ b/datasets/handleImage/train/订单1806841_51_7110192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f690e7809415885f86376d8ade8b0c6560a34f3ab1a1f1ae4c4f4a9a01ac785 +size 165445 diff --git a/datasets/handleImage/train/订单1806845_51_7110197.jpg b/datasets/handleImage/train/订单1806845_51_7110197.jpg new file mode 100644 index 0000000..d974add --- /dev/null +++ b/datasets/handleImage/train/订单1806845_51_7110197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:342b55a32e40f0fe9a8bf76fe6c15b62cc6b5577e57bc163e9862a11d009c779 +size 484780 diff --git a/datasets/handleImage/train/订单1806849_51_7110264.jpg b/datasets/handleImage/train/订单1806849_51_7110264.jpg new file mode 100644 index 0000000..8504efc --- /dev/null +++ b/datasets/handleImage/train/订单1806849_51_7110264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc711c026bfa4ac369d4b2fedda02455782be2252838dc4c4616cda2aea62205 +size 95374 diff --git a/datasets/handleImage/train/订单1806852_51_7110283.jpg b/datasets/handleImage/train/订单1806852_51_7110283.jpg new file mode 100644 index 0000000..31c3945 --- /dev/null +++ b/datasets/handleImage/train/订单1806852_51_7110283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12842968131a88312d3860824e501523768122b885b4a1ea3038354045b7057c +size 157815 diff --git a/datasets/handleImage/train/订单1806855_51_7110336.jpg b/datasets/handleImage/train/订单1806855_51_7110336.jpg new file mode 100644 index 0000000..521766f --- /dev/null +++ b/datasets/handleImage/train/订单1806855_51_7110336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e477cca7564143a812460fcdcffa3295e1c03a4d9737704e57de6986a94a3b +size 209980 diff --git a/datasets/handleImage/train/订单1806857_51_7110262.jpg b/datasets/handleImage/train/订单1806857_51_7110262.jpg new file mode 100644 index 0000000..233d66b --- /dev/null +++ b/datasets/handleImage/train/订单1806857_51_7110262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcc7e4c6d496315d468e10eb9c8a889dd0f710dfa11d967a5d6328625b6592f +size 129119 diff --git a/datasets/handleImage/train/订单1806860_51_7110395.jpg b/datasets/handleImage/train/订单1806860_51_7110395.jpg new file mode 100644 index 0000000..6c62c06 --- /dev/null +++ b/datasets/handleImage/train/订单1806860_51_7110395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43065f51453c68edc6a16dc667913a1a9a488e3b77cdf0992e44815d786f8f3 +size 130797 diff --git a/datasets/handleImage/train/订单1806862_51_7110450.jpg b/datasets/handleImage/train/订单1806862_51_7110450.jpg new file mode 100644 index 0000000..fd31628 --- /dev/null +++ b/datasets/handleImage/train/订单1806862_51_7110450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049dc6256999b9108a805210c80d7b2caf84629c5c47b15021340c6324894345 +size 145050 diff --git a/datasets/handleImage/train/订单1806863_51_7110471.jpg b/datasets/handleImage/train/订单1806863_51_7110471.jpg new file mode 100644 index 0000000..9b6b8ff --- /dev/null +++ b/datasets/handleImage/train/订单1806863_51_7110471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea741f2f608a70acab9911ade6f8cff7a0738b4882e67b338539453c8a74a19e +size 62339 diff --git a/datasets/handleImage/train/订单1806867_51_7110438.jpg b/datasets/handleImage/train/订单1806867_51_7110438.jpg new file mode 100644 index 0000000..f872ba3 --- /dev/null +++ b/datasets/handleImage/train/订单1806867_51_7110438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6a802358cfa9a95836d7465e49e662e4ea32dff2bd5df1bdbe10ea2383fbf5 +size 114496 diff --git a/datasets/handleImage/train/订单1806868_51_7110355.jpg b/datasets/handleImage/train/订单1806868_51_7110355.jpg new file mode 100644 index 0000000..3a803a9 --- /dev/null +++ b/datasets/handleImage/train/订单1806868_51_7110355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfef8738fcae4253490fae800e55472a1958565cb104bb5d95564851b5c65e7 +size 402923 diff --git a/datasets/handleImage/train/订单1806869_51_7110358.jpg b/datasets/handleImage/train/订单1806869_51_7110358.jpg new file mode 100644 index 0000000..129ada1 --- /dev/null +++ b/datasets/handleImage/train/订单1806869_51_7110358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7057a7feb832bfdd46b0026753b3cb9192543ed8e037c74a0a554d49a1d95107 +size 70552 diff --git a/datasets/handleImage/train/订单1806871_51_7110436.jpg b/datasets/handleImage/train/订单1806871_51_7110436.jpg new file mode 100644 index 0000000..3315aaa --- /dev/null +++ b/datasets/handleImage/train/订单1806871_51_7110436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c51b961debcca0bf46bbe5353d18cbf178c96dec76dc66c39ee7b261b9eb363 +size 66021 diff --git a/datasets/handleImage/train/订单1806872_51_7110488.jpg b/datasets/handleImage/train/订单1806872_51_7110488.jpg new file mode 100644 index 0000000..7424f2b --- /dev/null +++ b/datasets/handleImage/train/订单1806872_51_7110488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9749f9496dbbbc6bc946451ff23f68c9b1f7d1b134f1f4aa2c49b097469d30 +size 572060 diff --git a/datasets/handleImage/train/订单1806873_51_7110448.jpg b/datasets/handleImage/train/订单1806873_51_7110448.jpg new file mode 100644 index 0000000..de247c5 --- /dev/null +++ b/datasets/handleImage/train/订单1806873_51_7110448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98efbd563a5e153677f2beda0261948e3e9ab91ca018a2fe263e0603e9c7ab37 +size 133028 diff --git a/datasets/handleImage/train/订单1806876_51_7110528.jpg b/datasets/handleImage/train/订单1806876_51_7110528.jpg new file mode 100644 index 0000000..08e2743 --- /dev/null +++ b/datasets/handleImage/train/订单1806876_51_7110528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e4e003db8a812cab443afb85e73cb427c172d3d6c633b3b119f1d44bbe7415 +size 86000 diff --git a/datasets/handleImage/train/订单1806878_51_7110495.jpg b/datasets/handleImage/train/订单1806878_51_7110495.jpg new file mode 100644 index 0000000..844e295 --- /dev/null +++ b/datasets/handleImage/train/订单1806878_51_7110495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b35491abdb9a6305d87284ebf86409026c716003e33278603450cfa4e31712 +size 123605 diff --git a/datasets/handleImage/train/订单1806880_51_7110408.jpg b/datasets/handleImage/train/订单1806880_51_7110408.jpg new file mode 100644 index 0000000..44637fd --- /dev/null +++ b/datasets/handleImage/train/订单1806880_51_7110408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435445edee6cbfcbe688c6bd56217e016239ecbc42fb705b90eb8097fb1a50cb +size 115748 diff --git a/datasets/handleImage/train/订单1806884_51_7110489.jpg b/datasets/handleImage/train/订单1806884_51_7110489.jpg new file mode 100644 index 0000000..2dfb2a3 --- /dev/null +++ b/datasets/handleImage/train/订单1806884_51_7110489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8b5ece1fe1676eb42cf552b6926513a4ce98236f50cbc8b82cc6a04dbcd3e9 +size 94754 diff --git a/datasets/handleImage/train/订单1806886_51_7110543.jpg b/datasets/handleImage/train/订单1806886_51_7110543.jpg new file mode 100644 index 0000000..36cc749 --- /dev/null +++ b/datasets/handleImage/train/订单1806886_51_7110543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2585248d46e4abce029d74c39e193067ddee07d219892eb528e33beeaaddb87 +size 437808 diff --git a/datasets/handleImage/train/订单1806889_51_7110587.jpg b/datasets/handleImage/train/订单1806889_51_7110587.jpg new file mode 100644 index 0000000..4ec6ef0 --- /dev/null +++ b/datasets/handleImage/train/订单1806889_51_7110587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f45124a0b6c8be7af7a84ccaaebba59c648bb562e79a0b8ba3317946e2cead +size 123277 diff --git a/datasets/handleImage/train/订单1806890_51_7110633.jpg b/datasets/handleImage/train/订单1806890_51_7110633.jpg new file mode 100644 index 0000000..1e5d218 --- /dev/null +++ b/datasets/handleImage/train/订单1806890_51_7110633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43c45f29b5a406eef312f20ce4cd0ce10967821c3a9f5fc1dc0eb1af613d7fc +size 109451 diff --git a/datasets/handleImage/train/订单1806891_51_7110644.jpg b/datasets/handleImage/train/订单1806891_51_7110644.jpg new file mode 100644 index 0000000..51833c8 --- /dev/null +++ b/datasets/handleImage/train/订单1806891_51_7110644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff16f7b5a163eefdfca999bab2e6da74af75a09d77530c90b2be74707b50215b +size 125719 diff --git a/datasets/handleImage/train/订单1806903_51_7110702.jpg b/datasets/handleImage/train/订单1806903_51_7110702.jpg new file mode 100644 index 0000000..bcc3ecd --- /dev/null +++ b/datasets/handleImage/train/订单1806903_51_7110702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3c0e2d5e775dec67347637deed3321c8009739f6e9c6c6142742abdaccdd92 +size 136036 diff --git a/datasets/handleImage/train/订单1806904_51_7110673.jpg b/datasets/handleImage/train/订单1806904_51_7110673.jpg new file mode 100644 index 0000000..ca0d255 --- /dev/null +++ b/datasets/handleImage/train/订单1806904_51_7110673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622996f49c3dafaaa45d28ac6b7c9d2359017a05ae1542398164fe312f6ed7a0 +size 92672 diff --git a/datasets/handleImage/train/订单1806905_51_7110728.jpg b/datasets/handleImage/train/订单1806905_51_7110728.jpg new file mode 100644 index 0000000..ba26803 --- /dev/null +++ b/datasets/handleImage/train/订单1806905_51_7110728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c462010e5f9310615d2615b03f94739fa574232794f467037ab7310ace01130 +size 313141 diff --git a/datasets/handleImage/train/订单1806907_51_7110712.jpg b/datasets/handleImage/train/订单1806907_51_7110712.jpg new file mode 100644 index 0000000..6d32343 --- /dev/null +++ b/datasets/handleImage/train/订单1806907_51_7110712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cc2c4d0626b60606dd0ff61d742c8825a03a0317274a4313bbcdac24f0ac82 +size 87964 diff --git a/datasets/handleImage/train/订单1806909_51_7110711.jpg b/datasets/handleImage/train/订单1806909_51_7110711.jpg new file mode 100644 index 0000000..8443a2b --- /dev/null +++ b/datasets/handleImage/train/订单1806909_51_7110711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecd693544f74eb5ebe9ff5f4f6dbf93c9f82687cc6dec88432b1f62f3898bbc +size 214419 diff --git a/datasets/handleImage/train/订单1806912_51_7110756.jpg b/datasets/handleImage/train/订单1806912_51_7110756.jpg new file mode 100644 index 0000000..8bcf557 --- /dev/null +++ b/datasets/handleImage/train/订单1806912_51_7110756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a61d0b89b3aa7cf67809a18a899fbe5eba9a949fe33fbaef56aaebf729ec5c +size 126973 diff --git a/datasets/handleImage/train/订单1806913_51_7110893.jpg b/datasets/handleImage/train/订单1806913_51_7110893.jpg new file mode 100644 index 0000000..52bf71d --- /dev/null +++ b/datasets/handleImage/train/订单1806913_51_7110893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5e1bbf914cd4e20c1dce6111adde8791c7fbc5277dfbcf0d37b5d62451c55a +size 437040 diff --git a/datasets/handleImage/train/订单1806917_51_7110789.jpg b/datasets/handleImage/train/订单1806917_51_7110789.jpg new file mode 100644 index 0000000..50447c8 --- /dev/null +++ b/datasets/handleImage/train/订单1806917_51_7110789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871b563bf518c6b62736faf09a79f077c63690305b9b41dc23817ede178c96ea +size 104391 diff --git a/datasets/handleImage/train/订单1806918_51_7110858.jpg b/datasets/handleImage/train/订单1806918_51_7110858.jpg new file mode 100644 index 0000000..419e92e --- /dev/null +++ b/datasets/handleImage/train/订单1806918_51_7110858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b5afae11adb5b0c631e13248d8cc1334eb0a7298f696ccf08e160b2cda9de5 +size 126908 diff --git a/datasets/handleImage/train/订单1806921_51_7110938.jpg b/datasets/handleImage/train/订单1806921_51_7110938.jpg new file mode 100644 index 0000000..bc1ad84 --- /dev/null +++ b/datasets/handleImage/train/订单1806921_51_7110938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a01cc426b610438917f451a5a2370e785c57ab5a95cb3e23f86f676785b4b1 +size 489590 diff --git a/datasets/handleImage/train/订单1806922_51_7110814.jpg b/datasets/handleImage/train/订单1806922_51_7110814.jpg new file mode 100644 index 0000000..e4afc23 --- /dev/null +++ b/datasets/handleImage/train/订单1806922_51_7110814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5bade10fdc50a8fc4d4623ebf50e0f9500384bf7a86d1de73f69387a7e8c5e +size 126093 diff --git a/datasets/handleImage/train/订单1806925_51_7110926.jpg b/datasets/handleImage/train/订单1806925_51_7110926.jpg new file mode 100644 index 0000000..f889892 --- /dev/null +++ b/datasets/handleImage/train/订单1806925_51_7110926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3ad27c079da60cd4b5379110ef87302d781786d6a94e7bee00b670ed454a69 +size 459857 diff --git a/datasets/handleImage/train/订单1806926_51_7110876.jpg b/datasets/handleImage/train/订单1806926_51_7110876.jpg new file mode 100644 index 0000000..6a74d7c --- /dev/null +++ b/datasets/handleImage/train/订单1806926_51_7110876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f384027b6e5d7d383d657c505ef61556fec57f3c7b8c7fd5bc80b973c2daca12 +size 158123 diff --git a/datasets/handleImage/train/订单1806928_51_7110863.jpg b/datasets/handleImage/train/订单1806928_51_7110863.jpg new file mode 100644 index 0000000..fff2d0e --- /dev/null +++ b/datasets/handleImage/train/订单1806928_51_7110863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c5064f0e46e0c31f057c7e44e6e8fb69bcd365f6248e1a39d045a47ec6a249 +size 144119 diff --git a/datasets/handleImage/train/订单1806929_51_7110854.jpg b/datasets/handleImage/train/订单1806929_51_7110854.jpg new file mode 100644 index 0000000..859f7b1 --- /dev/null +++ b/datasets/handleImage/train/订单1806929_51_7110854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c169dcc34c49a0c8c5ef108740bcaa560e9ed266855b9f8d3c56ce3d60703639 +size 135851 diff --git a/datasets/handleImage/train/订单1806935_51_7111073.jpg b/datasets/handleImage/train/订单1806935_51_7111073.jpg new file mode 100644 index 0000000..670f3b2 --- /dev/null +++ b/datasets/handleImage/train/订单1806935_51_7111073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837a5e83198f13aa083a79121c531f8aba2027b094ef394513e24cdd75db341a +size 115056 diff --git a/datasets/handleImage/train/订单1806936_51_7110996.jpg b/datasets/handleImage/train/订单1806936_51_7110996.jpg new file mode 100644 index 0000000..130dbf8 --- /dev/null +++ b/datasets/handleImage/train/订单1806936_51_7110996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024c8f3e547353428ba9367543f5384dda85b89271bc3258b67fb4eb07f0bc9d +size 109173 diff --git a/datasets/handleImage/train/订单1806937_51_7111019.jpg b/datasets/handleImage/train/订单1806937_51_7111019.jpg new file mode 100644 index 0000000..d51b730 --- /dev/null +++ b/datasets/handleImage/train/订单1806937_51_7111019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56380fdb4bc48688880ad2de4cbb1e67abb3950488b1b9e83afbc0d2f59cb0a5 +size 115071 diff --git a/datasets/handleImage/train/订单1806938_51_7111055.jpg b/datasets/handleImage/train/订单1806938_51_7111055.jpg new file mode 100644 index 0000000..3f08f53 --- /dev/null +++ b/datasets/handleImage/train/订单1806938_51_7111055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d9b28d67d942aad690a1223758f4deaa3b53ffe8565d380972c2766900bc33 +size 234903 diff --git a/datasets/handleImage/train/订单1806942_51_7111056.jpg b/datasets/handleImage/train/订单1806942_51_7111056.jpg new file mode 100644 index 0000000..9357a2c --- /dev/null +++ b/datasets/handleImage/train/订单1806942_51_7111056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a743779a8fd6451a7e1c412a0543cdfbaa185136382aff21d86aca76e2f2e114 +size 151081 diff --git a/datasets/handleImage/train/订单1806943_51_7111143.jpg b/datasets/handleImage/train/订单1806943_51_7111143.jpg new file mode 100644 index 0000000..e4558d5 --- /dev/null +++ b/datasets/handleImage/train/订单1806943_51_7111143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9666c910d71470cc6935c0e2384a97651d2112be92bba744e746b9a867cdb8c +size 125627 diff --git a/datasets/handleImage/train/订单1806944_51_7111099.jpg b/datasets/handleImage/train/订单1806944_51_7111099.jpg new file mode 100644 index 0000000..ddbfca7 --- /dev/null +++ b/datasets/handleImage/train/订单1806944_51_7111099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c25499b14f7a6c920de5b6c3b74ae9d96297fa631e41be0da1e343a7615806 +size 122642 diff --git a/datasets/handleImage/train/订单1806947_51_7111167.jpg b/datasets/handleImage/train/订单1806947_51_7111167.jpg new file mode 100644 index 0000000..f3cefb7 --- /dev/null +++ b/datasets/handleImage/train/订单1806947_51_7111167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a8a0064a80226a1cc5d90596189e9f1ce657659f0ed19b4f718acf15ad01f4 +size 127911 diff --git a/datasets/handleImage/train/订单1806951_51_7111144.jpg b/datasets/handleImage/train/订单1806951_51_7111144.jpg new file mode 100644 index 0000000..2b571c8 --- /dev/null +++ b/datasets/handleImage/train/订单1806951_51_7111144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcea937d5572c9788a806af78f7a0113af04403d9ab25f7eb7fdcd410f3e9179 +size 151696 diff --git a/datasets/handleImage/train/订单1806953_51_7111322.jpg b/datasets/handleImage/train/订单1806953_51_7111322.jpg new file mode 100644 index 0000000..22e10ed --- /dev/null +++ b/datasets/handleImage/train/订单1806953_51_7111322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104961d68a86c8a2cdbf1de6113e8dc7e0320c839b9aedf6178941d0f89c590f +size 123437 diff --git a/datasets/handleImage/train/订单1806954_51_7111215.jpg b/datasets/handleImage/train/订单1806954_51_7111215.jpg new file mode 100644 index 0000000..a0921b3 --- /dev/null +++ b/datasets/handleImage/train/订单1806954_51_7111215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c9a9b1505307513f0fb2ba30ec6a6e08f5aff8cc0b1a3109fa9d957832a90f +size 96183 diff --git a/datasets/handleImage/train/订单1806959_51_7111293.jpg b/datasets/handleImage/train/订单1806959_51_7111293.jpg new file mode 100644 index 0000000..0434cc2 --- /dev/null +++ b/datasets/handleImage/train/订单1806959_51_7111293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c0f68bc65ea0240e8dfb684a542c07d835e50447def61655d4d47530227b0b +size 80300 diff --git a/datasets/handleImage/train/订单1806961_51_7111241.jpg b/datasets/handleImage/train/订单1806961_51_7111241.jpg new file mode 100644 index 0000000..9bf049f --- /dev/null +++ b/datasets/handleImage/train/订单1806961_51_7111241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a30d1d12d485f9594be3af086f2483010575f333c9920899283b0fbd6542e8 +size 166163 diff --git a/datasets/handleImage/train/订单1806967_51_7111257.jpg b/datasets/handleImage/train/订单1806967_51_7111257.jpg new file mode 100644 index 0000000..8441bb5 --- /dev/null +++ b/datasets/handleImage/train/订单1806967_51_7111257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704b64c90fca0d83873d57847dbef7441db4ae73fac9ccbda1b2519587ab2863 +size 118699 diff --git a/datasets/handleImage/train/订单1806969_51_7111294.jpg b/datasets/handleImage/train/订单1806969_51_7111294.jpg new file mode 100644 index 0000000..1f635d4 --- /dev/null +++ b/datasets/handleImage/train/订单1806969_51_7111294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d300eaa3546de85b3eb46c79d1d74e25e2698fe933df7017b1b1100e8eaec7 +size 266423 diff --git a/datasets/handleImage/train/订单1806972_51_7111358.jpg b/datasets/handleImage/train/订单1806972_51_7111358.jpg new file mode 100644 index 0000000..742c57b --- /dev/null +++ b/datasets/handleImage/train/订单1806972_51_7111358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631bb7307b86dd68ecda7305646b0fd5cfce5846ed47524d1345891be1dff14d +size 627627 diff --git a/datasets/handleImage/train/订单1806973_51_7111443.jpg b/datasets/handleImage/train/订单1806973_51_7111443.jpg new file mode 100644 index 0000000..5e7617a --- /dev/null +++ b/datasets/handleImage/train/订单1806973_51_7111443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d3352703ba76fb240964f5f2d72419d396cfbcc8c9febf6100375739567ff8 +size 307049 diff --git a/datasets/handleImage/train/订单1806981_51_7111413.jpg b/datasets/handleImage/train/订单1806981_51_7111413.jpg new file mode 100644 index 0000000..a3fea9b --- /dev/null +++ b/datasets/handleImage/train/订单1806981_51_7111413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e5dadaa8c6d3909a431c53229bcd4dae6092bd8ebae553746e2bd396f58df8 +size 116346 diff --git a/datasets/handleImage/train/订单1806982_51_7111416.jpg b/datasets/handleImage/train/订单1806982_51_7111416.jpg new file mode 100644 index 0000000..724cea5 --- /dev/null +++ b/datasets/handleImage/train/订单1806982_51_7111416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea221639576a1d791dde26a31e38072e12d04ac48d7d046c75ebecde05ae03f +size 109825 diff --git a/datasets/handleImage/train/订单1806984_51_7111472.jpg b/datasets/handleImage/train/订单1806984_51_7111472.jpg new file mode 100644 index 0000000..f9ebbac --- /dev/null +++ b/datasets/handleImage/train/订单1806984_51_7111472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef469b0f39196a7e6432b4b9c957ed749656d122bc85cb5f669edabb2026093 +size 190559 diff --git a/datasets/handleImage/train/订单1806987_51_7111464.jpg b/datasets/handleImage/train/订单1806987_51_7111464.jpg new file mode 100644 index 0000000..9f0ee76 --- /dev/null +++ b/datasets/handleImage/train/订单1806987_51_7111464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3dbee4bec714c02545345e05866b160afe1fc8f5d1e10fb66b4372a8d03a3d +size 103508 diff --git a/datasets/handleImage/train/订单1806988_51_7111491.jpg b/datasets/handleImage/train/订单1806988_51_7111491.jpg new file mode 100644 index 0000000..b846be5 --- /dev/null +++ b/datasets/handleImage/train/订单1806988_51_7111491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c08c5240cc527af5064bf5410eb87b794943ff112ca1ec6e473490e179fc035 +size 121550 diff --git a/datasets/handleImage/train/订单1806990_51_7111507.jpg b/datasets/handleImage/train/订单1806990_51_7111507.jpg new file mode 100644 index 0000000..43cb5ba --- /dev/null +++ b/datasets/handleImage/train/订单1806990_51_7111507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0825ac5e023145f439b01d512a6d5cc4766965df467725cbe90902361d3deac +size 120669 diff --git a/datasets/handleImage/train/订单1806991_51_7111532.jpg b/datasets/handleImage/train/订单1806991_51_7111532.jpg new file mode 100644 index 0000000..3c955ba --- /dev/null +++ b/datasets/handleImage/train/订单1806991_51_7111532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8c72578f14c81e03965ff49e1a5ee28231cda8a41ab58659d0292fc217effb +size 108137 diff --git a/datasets/handleImage/train/订单1806992_51_7111542.jpg b/datasets/handleImage/train/订单1806992_51_7111542.jpg new file mode 100644 index 0000000..18487f6 --- /dev/null +++ b/datasets/handleImage/train/订单1806992_51_7111542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540b41946746d30a28b8a2aa9c6e533ce7199c35d8ddc3e8bdf1a582c634664d +size 116903 diff --git a/datasets/handleImage/train/订单1806994_51_7111560.jpg b/datasets/handleImage/train/订单1806994_51_7111560.jpg new file mode 100644 index 0000000..3393365 --- /dev/null +++ b/datasets/handleImage/train/订单1806994_51_7111560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b5f514aca1c6fe041f27ddaa3c531fa9171f665bdbf065cdc593b9b50ee5a2 +size 128522 diff --git a/datasets/handleImage/train/订单1806996_51_7111579.jpg b/datasets/handleImage/train/订单1806996_51_7111579.jpg new file mode 100644 index 0000000..fac72db --- /dev/null +++ b/datasets/handleImage/train/订单1806996_51_7111579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dbc159b2b02bfe99d3dfca6e42fd7cd524ba2ddc500fe67323d815c164a6d7 +size 113245 diff --git a/datasets/handleImage/train/订单1806997_51_7111589.jpg b/datasets/handleImage/train/订单1806997_51_7111589.jpg new file mode 100644 index 0000000..8cc6241 --- /dev/null +++ b/datasets/handleImage/train/订单1806997_51_7111589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7c06791e0b2665acab8a794ca6c0015daa3ba1f0f2082d250c9076fb0f871f +size 171780 diff --git a/datasets/handleImage/train/订单1807000_51_7111608.jpg b/datasets/handleImage/train/订单1807000_51_7111608.jpg new file mode 100644 index 0000000..d620beb --- /dev/null +++ b/datasets/handleImage/train/订单1807000_51_7111608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60666fbb2759dd343c8a1cd168a609382d5abefac9905740dda4c20960eb3f4 +size 111513 diff --git a/datasets/handleImage/train/订单1807001_51_7111603.jpg b/datasets/handleImage/train/订单1807001_51_7111603.jpg new file mode 100644 index 0000000..b5dbfcd --- /dev/null +++ b/datasets/handleImage/train/订单1807001_51_7111603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24671f3d1b77141486e7ba729e3e7eb65fe264459afa5251e91bbec7b9851945 +size 119175 diff --git a/datasets/handleImage/train/订单1807006_51_7111644.jpg b/datasets/handleImage/train/订单1807006_51_7111644.jpg new file mode 100644 index 0000000..3f1e589 --- /dev/null +++ b/datasets/handleImage/train/订单1807006_51_7111644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a225681b791c5839dcbf90f0f97e295fd88cec79788d59cf04df4cac67c0ae48 +size 149996 diff --git a/datasets/handleImage/train/订单1807008_51_7113981.jpg b/datasets/handleImage/train/订单1807008_51_7113981.jpg new file mode 100644 index 0000000..c8abaca --- /dev/null +++ b/datasets/handleImage/train/订单1807008_51_7113981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9730eb83d8442af00840a94062f8434e85d5c4288fdcdc2122b6609ac365a972 +size 88848 diff --git a/datasets/handleImage/train/订单1807010_51_7111695.jpg b/datasets/handleImage/train/订单1807010_51_7111695.jpg new file mode 100644 index 0000000..3c59d8d --- /dev/null +++ b/datasets/handleImage/train/订单1807010_51_7111695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4932a5d8e04aec9cfdcdbe604e97cf0e4f7e0e7ca6f9f275829a0bd006855f70 +size 252445 diff --git a/datasets/handleImage/train/订单1807011_51_7111704.jpg b/datasets/handleImage/train/订单1807011_51_7111704.jpg new file mode 100644 index 0000000..b65cc0c --- /dev/null +++ b/datasets/handleImage/train/订单1807011_51_7111704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e9ee80f163a58f4df240c0d5b7c38537d23f4a70ff76608522b760c249a2f9 +size 160549 diff --git a/datasets/handleImage/train/订单1807012_51_7111662.jpg b/datasets/handleImage/train/订单1807012_51_7111662.jpg new file mode 100644 index 0000000..d584460 --- /dev/null +++ b/datasets/handleImage/train/订单1807012_51_7111662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a301b93452eb39721efebe153dd25592d320636e7d7e3dbbb00128966d60829 +size 126394 diff --git a/datasets/handleImage/train/订单1807014_51_7111680.jpg b/datasets/handleImage/train/订单1807014_51_7111680.jpg new file mode 100644 index 0000000..3f45386 --- /dev/null +++ b/datasets/handleImage/train/订单1807014_51_7111680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3648ac313e8e0bd1c99b96c405fd011272f0fd64b920814349dbd9b17c36bc82 +size 135444 diff --git a/datasets/handleImage/train/订单1807017_51_7111731.jpg b/datasets/handleImage/train/订单1807017_51_7111731.jpg new file mode 100644 index 0000000..1dfaf82 --- /dev/null +++ b/datasets/handleImage/train/订单1807017_51_7111731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cd708d521c8351c7ae708a45d01a5c9d3aa8f26dc02c78ba3502541e2e066b +size 126303 diff --git a/datasets/handleImage/train/订单1807020_51_7111739.jpg b/datasets/handleImage/train/订单1807020_51_7111739.jpg new file mode 100644 index 0000000..ab35448 --- /dev/null +++ b/datasets/handleImage/train/订单1807020_51_7111739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b2d7edc4c386b5e6d58cff4a344cb430fab95cf1251c0231682bc039d897cd +size 104705 diff --git a/datasets/handleImage/train/订单1807021_51_7111752.jpg b/datasets/handleImage/train/订单1807021_51_7111752.jpg new file mode 100644 index 0000000..e892e26 --- /dev/null +++ b/datasets/handleImage/train/订单1807021_51_7111752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cee2b6517ac602d4bf344d4c67df66a0ed9cfa8ea01df34fac710a804dfde6 +size 44097 diff --git a/datasets/handleImage/train/订单1807024_51_7111799.jpg b/datasets/handleImage/train/订单1807024_51_7111799.jpg new file mode 100644 index 0000000..84b621b --- /dev/null +++ b/datasets/handleImage/train/订单1807024_51_7111799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166d63d825165c8b8bf5b5965c8fc37f971a730b6ca387a527ec0bbd1eb32332 +size 101195 diff --git a/datasets/handleImage/train/订单1807025_51_7111816.jpg b/datasets/handleImage/train/订单1807025_51_7111816.jpg new file mode 100644 index 0000000..8318abd --- /dev/null +++ b/datasets/handleImage/train/订单1807025_51_7111816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbe396430c161560feac154d9aa35ea32ea201154d9e142b5c26f4598ca90cc +size 121411 diff --git a/datasets/handleImage/train/订单1807028_51_7111855.jpg b/datasets/handleImage/train/订单1807028_51_7111855.jpg new file mode 100644 index 0000000..818311c --- /dev/null +++ b/datasets/handleImage/train/订单1807028_51_7111855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d82a9cfb7c11fa58cd840219f2d36a865ff8a9196698c2b42eee124be142052 +size 156294 diff --git a/datasets/handleImage/train/订单1807033_51_7111848.jpg b/datasets/handleImage/train/订单1807033_51_7111848.jpg new file mode 100644 index 0000000..223a065 --- /dev/null +++ b/datasets/handleImage/train/订单1807033_51_7111848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d07bcda40f9318701a9638ab5f829f7a04e813cac2da8a085e7a855c18bbf0 +size 536698 diff --git a/datasets/handleImage/train/订单1807034_51_7111852.jpg b/datasets/handleImage/train/订单1807034_51_7111852.jpg new file mode 100644 index 0000000..a101d89 --- /dev/null +++ b/datasets/handleImage/train/订单1807034_51_7111852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac0819fde86b2f77fe9de294ebe6f0a3452007c97b82be55055d739b611bba5 +size 362750 diff --git a/datasets/handleImage/train/订单1807036_51_7111866.jpg b/datasets/handleImage/train/订单1807036_51_7111866.jpg new file mode 100644 index 0000000..2c92bed --- /dev/null +++ b/datasets/handleImage/train/订单1807036_51_7111866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196c1d8b24c7d5e99565b3b2ea8c9ebdb48b9804986478033a007b575ccd26f2 +size 154643 diff --git a/datasets/handleImage/train/订单1807039_51_7111877.jpg b/datasets/handleImage/train/订单1807039_51_7111877.jpg new file mode 100644 index 0000000..c87ec2b --- /dev/null +++ b/datasets/handleImage/train/订单1807039_51_7111877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaa52dd230e4c7175d7779af4eca3e8ecc042df8f7b7ebaaafdd6208d6970bc +size 128454 diff --git a/datasets/handleImage/train/订单1807040_51_7111929.jpg b/datasets/handleImage/train/订单1807040_51_7111929.jpg new file mode 100644 index 0000000..e16ce5e --- /dev/null +++ b/datasets/handleImage/train/订单1807040_51_7111929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff833f758e97db44808e3ade653166c37fd4cfe568e4867aa833d2ca77ad2e7 +size 113919 diff --git a/datasets/handleImage/train/订单1807041_51_7111977.jpg b/datasets/handleImage/train/订单1807041_51_7111977.jpg new file mode 100644 index 0000000..2cca537 --- /dev/null +++ b/datasets/handleImage/train/订单1807041_51_7111977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b235afdeff1315f68c73f916a9073c9a3ab527894c218205fac922e9028a2 +size 129615 diff --git a/datasets/handleImage/train/订单1807042_51_7111966.jpg b/datasets/handleImage/train/订单1807042_51_7111966.jpg new file mode 100644 index 0000000..11a9e6d --- /dev/null +++ b/datasets/handleImage/train/订单1807042_51_7111966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a002c11d6612f0ffce7cbcd206c5155b968bc66dbae3883ccbbde5b6c732ef06 +size 523652 diff --git a/datasets/handleImage/train/订单1807047_51_7112008.jpg b/datasets/handleImage/train/订单1807047_51_7112008.jpg new file mode 100644 index 0000000..470c2dc --- /dev/null +++ b/datasets/handleImage/train/订单1807047_51_7112008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6722461529acf17fac6bf91d36bfbb6a72f4fe3b4163feed45f2032693e81e +size 113953 diff --git a/datasets/handleImage/train/订单1807051_51_7111954.jpg b/datasets/handleImage/train/订单1807051_51_7111954.jpg new file mode 100644 index 0000000..1e31823 --- /dev/null +++ b/datasets/handleImage/train/订单1807051_51_7111954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9733bf3f66899a8c5496bec33230774252c01a2250825cc772d1b156ba7fe3 +size 82898 diff --git a/datasets/handleImage/train/订单1807054_51_7112064.jpg b/datasets/handleImage/train/订单1807054_51_7112064.jpg new file mode 100644 index 0000000..bc40e71 --- /dev/null +++ b/datasets/handleImage/train/订单1807054_51_7112064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb642e237379e3e2e117146892e027ea81428f9e21d1977c3b91d26906727ea +size 534696 diff --git a/datasets/handleImage/train/订单1807056_51_7112029.jpg b/datasets/handleImage/train/订单1807056_51_7112029.jpg new file mode 100644 index 0000000..fa65953 --- /dev/null +++ b/datasets/handleImage/train/订单1807056_51_7112029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08e65f5a0516cc4b279537d7888ec37cfef80ae6ad1db8ba3f414dc512ddd95 +size 130734 diff --git a/datasets/handleImage/train/订单1807061_51_7112116.jpg b/datasets/handleImage/train/订单1807061_51_7112116.jpg new file mode 100644 index 0000000..4f84ba1 --- /dev/null +++ b/datasets/handleImage/train/订单1807061_51_7112116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2397c9c59849f4bfe5d5c7f61b0ce20168ad580ca5bb84c30efd1ce6e4b48b +size 585015 diff --git a/datasets/handleImage/train/订单1807065_51_7112141.jpg b/datasets/handleImage/train/订单1807065_51_7112141.jpg new file mode 100644 index 0000000..ce0e537 --- /dev/null +++ b/datasets/handleImage/train/订单1807065_51_7112141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314842b7cafefb111fa9d688562cad4f6567566ee5a6b087eb17948b261c82ba +size 133155 diff --git a/datasets/handleImage/train/订单1807066_51_7112143.jpg b/datasets/handleImage/train/订单1807066_51_7112143.jpg new file mode 100644 index 0000000..c714b44 --- /dev/null +++ b/datasets/handleImage/train/订单1807066_51_7112143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006141489aa58f5f65de1977d20f579466524c0cdad05385932bd386da4f725e +size 143663 diff --git a/datasets/handleImage/train/订单1807069_51_7112243.jpg b/datasets/handleImage/train/订单1807069_51_7112243.jpg new file mode 100644 index 0000000..7922f6b --- /dev/null +++ b/datasets/handleImage/train/订单1807069_51_7112243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c222880eb6947c5c699cd9b5b6dab5d7c9f9231065e1d4aa8ae56485339fa6 +size 448898 diff --git a/datasets/handleImage/train/订单1807070_51_7112196.jpg b/datasets/handleImage/train/订单1807070_51_7112196.jpg new file mode 100644 index 0000000..96d589a --- /dev/null +++ b/datasets/handleImage/train/订单1807070_51_7112196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b372c6cdd26e395de4495adcb6aff6c4636ee71a90685bc06c87ce805a61cb +size 111302 diff --git a/datasets/handleImage/train/订单1807073_51_7112179.jpg b/datasets/handleImage/train/订单1807073_51_7112179.jpg new file mode 100644 index 0000000..15206c4 --- /dev/null +++ b/datasets/handleImage/train/订单1807073_51_7112179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8929f393d11d21a6b0c155f9e5d824813c23daa78ed8a19890439d9b2785ffbd +size 120097 diff --git a/datasets/handleImage/train/订单1807074_51_7113123.jpg b/datasets/handleImage/train/订单1807074_51_7113123.jpg new file mode 100644 index 0000000..9ea2f3d --- /dev/null +++ b/datasets/handleImage/train/订单1807074_51_7113123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d6be8dcbbc793ad40a472df229bd017a419f9219d243088e690392af50f7e5 +size 145111 diff --git a/datasets/handleImage/train/订单1807076_51_7112165.jpg b/datasets/handleImage/train/订单1807076_51_7112165.jpg new file mode 100644 index 0000000..9182010 --- /dev/null +++ b/datasets/handleImage/train/订单1807076_51_7112165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c342388b90fb721fd34fa361e979f0f1849e678a70c9e58421c2d7eadb40e4 +size 158618 diff --git a/datasets/handleImage/train/订单1807077_51_7112279.jpg b/datasets/handleImage/train/订单1807077_51_7112279.jpg new file mode 100644 index 0000000..e0984aa --- /dev/null +++ b/datasets/handleImage/train/订单1807077_51_7112279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269dcdf679e2dddeb73d8ccf8ad08d1b7180802cdc3a0a9cb724a1bdf7aa8c49 +size 431839 diff --git a/datasets/handleImage/train/订单1807079_51_7112332.jpg b/datasets/handleImage/train/订单1807079_51_7112332.jpg new file mode 100644 index 0000000..a1d453b --- /dev/null +++ b/datasets/handleImage/train/订单1807079_51_7112332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49533a0e5d716c2471d952a9fbfa47d720044d6cedfdcc76d163ac2a6b084ed9 +size 368198 diff --git a/datasets/handleImage/train/订单1807081_51_7112220.jpg b/datasets/handleImage/train/订单1807081_51_7112220.jpg new file mode 100644 index 0000000..bcc41b7 --- /dev/null +++ b/datasets/handleImage/train/订单1807081_51_7112220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66837e815916019ce677facfe1cb374c4e2a3fab08290f834382ae77dd3228f1 +size 163201 diff --git a/datasets/handleImage/train/订单1807082_51_7112235.jpg b/datasets/handleImage/train/订单1807082_51_7112235.jpg new file mode 100644 index 0000000..2fff0af --- /dev/null +++ b/datasets/handleImage/train/订单1807082_51_7112235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db45febf012bd434cc9955001c65f19da116fd1faa2b730bb3b9900f05994ebc +size 120036 diff --git a/datasets/handleImage/train/订单1807088_51_7112349.jpg b/datasets/handleImage/train/订单1807088_51_7112349.jpg new file mode 100644 index 0000000..8e1b63f --- /dev/null +++ b/datasets/handleImage/train/订单1807088_51_7112349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6ec14b12ef37b1a7b29085891d646c9fa8260b9e87f51431886a4f4ef606a6 +size 100953 diff --git a/datasets/handleImage/train/订单1807094_51_7112419.jpg b/datasets/handleImage/train/订单1807094_51_7112419.jpg new file mode 100644 index 0000000..3371181 --- /dev/null +++ b/datasets/handleImage/train/订单1807094_51_7112419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451db065edd5afbd0c208f25f2c56344a0b83e819b638016e23e086fd34cf0c7 +size 382171 diff --git a/datasets/handleImage/train/订单1807095_51_7112473.jpg b/datasets/handleImage/train/订单1807095_51_7112473.jpg new file mode 100644 index 0000000..119bcb7 --- /dev/null +++ b/datasets/handleImage/train/订单1807095_51_7112473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b23ce9baf39c7f996a07b889fb438338f5689b78f501ffba1067e53674b1f8 +size 126941 diff --git a/datasets/handleImage/train/订单1807097_51_7112451.jpg b/datasets/handleImage/train/订单1807097_51_7112451.jpg new file mode 100644 index 0000000..15fc93b --- /dev/null +++ b/datasets/handleImage/train/订单1807097_51_7112451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f82d86430b861824a8c8f0c6f31f262e882f75f396135ab557dea048788f240 +size 188040 diff --git a/datasets/handleImage/train/订单1807098_51_7112456.jpg b/datasets/handleImage/train/订单1807098_51_7112456.jpg new file mode 100644 index 0000000..f82a93d --- /dev/null +++ b/datasets/handleImage/train/订单1807098_51_7112456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48fb49695517191bb7fbec9bd84490a67d2c099f5eeab3a4019729f671f70a6 +size 139385 diff --git a/datasets/handleImage/train/订单1807107_51_7112611.jpg b/datasets/handleImage/train/订单1807107_51_7112611.jpg new file mode 100644 index 0000000..638387a --- /dev/null +++ b/datasets/handleImage/train/订单1807107_51_7112611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5896e9608335ee77ccc666dd21acb31d992c74faf84fc4679dc883117361fb8 +size 125874 diff --git a/datasets/handleImage/train/订单1807111_51_7112561.jpg b/datasets/handleImage/train/订单1807111_51_7112561.jpg new file mode 100644 index 0000000..0dc7f63 --- /dev/null +++ b/datasets/handleImage/train/订单1807111_51_7112561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3912b77dc051105e4386a32fcb0e0df3628d1677887c13c7e7772e63770d6d1 +size 383083 diff --git a/datasets/handleImage/train/订单1807117_51_7112521.jpg b/datasets/handleImage/train/订单1807117_51_7112521.jpg new file mode 100644 index 0000000..1d8f323 --- /dev/null +++ b/datasets/handleImage/train/订单1807117_51_7112521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c1891178494b38ecd5354be87436718d8e6744b3faf45539a3feec9702aa34 +size 144803 diff --git a/datasets/handleImage/train/订单1807118_51_7112530.jpg b/datasets/handleImage/train/订单1807118_51_7112530.jpg new file mode 100644 index 0000000..37d4581 --- /dev/null +++ b/datasets/handleImage/train/订单1807118_51_7112530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62435df796289ac62a2ea13eb41906e524d19b3150d8c50924ce40ae09dd61 +size 156242 diff --git a/datasets/handleImage/train/订单1807121_51_7112649.jpg b/datasets/handleImage/train/订单1807121_51_7112649.jpg new file mode 100644 index 0000000..41aec75 --- /dev/null +++ b/datasets/handleImage/train/订单1807121_51_7112649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0572fdc0b8e233c76676ba3511818ed4db449f7b21e65f496916540c233fdb33 +size 123392 diff --git a/datasets/handleImage/train/订单1807123_51_7112602.jpg b/datasets/handleImage/train/订单1807123_51_7112602.jpg new file mode 100644 index 0000000..49ff4b3 --- /dev/null +++ b/datasets/handleImage/train/订单1807123_51_7112602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69cffaa1eb6097d4ae39a9660c154ce08f11c903a5b8482151fbddcae99cefb7 +size 126671 diff --git a/datasets/handleImage/train/订单1807124_51_7112644.jpg b/datasets/handleImage/train/订单1807124_51_7112644.jpg new file mode 100644 index 0000000..4fdbbad --- /dev/null +++ b/datasets/handleImage/train/订单1807124_51_7112644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29c3ef95da900cc94e64b65223af694ebdc95773f1e300359588c42a7d29305 +size 163582 diff --git a/datasets/handleImage/train/订单1807126_51_7112788.jpg b/datasets/handleImage/train/订单1807126_51_7112788.jpg new file mode 100644 index 0000000..ef2d7b8 --- /dev/null +++ b/datasets/handleImage/train/订单1807126_51_7112788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a71b807520f7bb34fa0761281d33f4cc3618898f6034a212c989396c8c5817 +size 98494 diff --git a/datasets/handleImage/train/订单1807127_51_7112692.jpg b/datasets/handleImage/train/订单1807127_51_7112692.jpg new file mode 100644 index 0000000..390165f --- /dev/null +++ b/datasets/handleImage/train/订单1807127_51_7112692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b04806536225f97d53e6ab746ae0bd80e4a40b46b2fabee1a746f3076a42d5b +size 133726 diff --git a/datasets/handleImage/train/订单1807130_51_7112696.jpg b/datasets/handleImage/train/订单1807130_51_7112696.jpg new file mode 100644 index 0000000..575464b --- /dev/null +++ b/datasets/handleImage/train/订单1807130_51_7112696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17627be4691a65ee6e0bb7a5e475465d817571c170c38b279384bf1e0ce585e8 +size 85297 diff --git a/datasets/handleImage/train/订单1807131_51_7112684.jpg b/datasets/handleImage/train/订单1807131_51_7112684.jpg new file mode 100644 index 0000000..5f8451c --- /dev/null +++ b/datasets/handleImage/train/订单1807131_51_7112684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f545af2ce1c25afc5b45abd96103f1a2b38d692c054afb950e5d17534d87a7 +size 685177 diff --git a/datasets/handleImage/train/订单1807134_51_7112717.jpg b/datasets/handleImage/train/订单1807134_51_7112717.jpg new file mode 100644 index 0000000..4708060 --- /dev/null +++ b/datasets/handleImage/train/订单1807134_51_7112717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975500856b93b75f3303971192b41631735f3bb5fe078b34bc646c87db724f3b +size 147737 diff --git a/datasets/handleImage/train/订单1807139_51_7112752.jpg b/datasets/handleImage/train/订单1807139_51_7112752.jpg new file mode 100644 index 0000000..a287555 --- /dev/null +++ b/datasets/handleImage/train/订单1807139_51_7112752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827b3c01e34891dd5ec9dbdaf2bca2970ac3b1325627d79d10da2ed7802f182a +size 163974 diff --git a/datasets/handleImage/train/订单1807140_51_7112755.jpg b/datasets/handleImage/train/订单1807140_51_7112755.jpg new file mode 100644 index 0000000..728005e --- /dev/null +++ b/datasets/handleImage/train/订单1807140_51_7112755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d446f8fdf3d8dd537653cb751ffcbd6c1ef4eb0dde4567cb8bb18767964dd2b9 +size 159404 diff --git a/datasets/handleImage/train/订单1807141_51_7112783.jpg b/datasets/handleImage/train/订单1807141_51_7112783.jpg new file mode 100644 index 0000000..84d0205 --- /dev/null +++ b/datasets/handleImage/train/订单1807141_51_7112783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc238d1cbe8943c77f3e1ceb38d84be98a32abb5af2568af04c7209e28c4d7 +size 161357 diff --git a/datasets/handleImage/train/订单1807142_51_7112827.jpg b/datasets/handleImage/train/订单1807142_51_7112827.jpg new file mode 100644 index 0000000..b7f67c9 --- /dev/null +++ b/datasets/handleImage/train/订单1807142_51_7112827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a0e27d0b152f3f7b46d76621da0658f8b0d08de6f40993f029b872ed7b7c71 +size 106942 diff --git a/datasets/handleImage/train/订单1807149_51_7112991.jpg b/datasets/handleImage/train/订单1807149_51_7112991.jpg new file mode 100644 index 0000000..5ad75bc --- /dev/null +++ b/datasets/handleImage/train/订单1807149_51_7112991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2facdd9276bfacfdf4c04f97fcef408ed4024eeb8c8c91c40c72d36b112af +size 362841 diff --git a/datasets/handleImage/train/订单1807152_51_7112839.jpg b/datasets/handleImage/train/订单1807152_51_7112839.jpg new file mode 100644 index 0000000..7986837 --- /dev/null +++ b/datasets/handleImage/train/订单1807152_51_7112839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb7328ca0437314155661b34177dad3b3888cb2b91b4260ebe43cca9a90b3b7 +size 165177 diff --git a/datasets/handleImage/train/订单1807154_51_7112857.jpg b/datasets/handleImage/train/订单1807154_51_7112857.jpg new file mode 100644 index 0000000..4933f73 --- /dev/null +++ b/datasets/handleImage/train/订单1807154_51_7112857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4962d6c3def8d73d6e44c8ec2423f770be1ccb214ae6b8c850009823cfd090f +size 487452 diff --git a/datasets/handleImage/train/订单1807155_51_7112959.jpg b/datasets/handleImage/train/订单1807155_51_7112959.jpg new file mode 100644 index 0000000..bc658b7 --- /dev/null +++ b/datasets/handleImage/train/订单1807155_51_7112959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348bb03849da08ded1313753cdb89b229aff384e4c475b651060b1376468dc2b +size 175213 diff --git a/datasets/handleImage/train/订单1807156_51_7112931.jpg b/datasets/handleImage/train/订单1807156_51_7112931.jpg new file mode 100644 index 0000000..44879fc --- /dev/null +++ b/datasets/handleImage/train/订单1807156_51_7112931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515b6089465ad32dc73612498886909a8c3ead96a2dcaa22bdaace0da09f8562 +size 115947 diff --git a/datasets/handleImage/train/订单1807157_51_7112890.jpg b/datasets/handleImage/train/订单1807157_51_7112890.jpg new file mode 100644 index 0000000..c951e5d --- /dev/null +++ b/datasets/handleImage/train/订单1807157_51_7112890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83eabd142e85ed26d995d662c640ab7d3a8919a8d75ecbdcad598ea3506fa3 +size 569155 diff --git a/datasets/handleImage/train/订单1807159_51_7113023.jpg b/datasets/handleImage/train/订单1807159_51_7113023.jpg new file mode 100644 index 0000000..2e2effa --- /dev/null +++ b/datasets/handleImage/train/订单1807159_51_7113023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be6a23c90ce2f6e97c1c802d3815e2b03fea1241f2ef7339f367f255db398e4 +size 120666 diff --git a/datasets/handleImage/train/订单1807161_51_7113056.jpg b/datasets/handleImage/train/订单1807161_51_7113056.jpg new file mode 100644 index 0000000..9997376 --- /dev/null +++ b/datasets/handleImage/train/订单1807161_51_7113056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93075d35e3c46035c85968a48d55c9cd6605f96ef4c3623d5ece68eaccceaed5 +size 126893 diff --git a/datasets/handleImage/train/订单1807164_51_7113127.jpg b/datasets/handleImage/train/订单1807164_51_7113127.jpg new file mode 100644 index 0000000..121a4bc --- /dev/null +++ b/datasets/handleImage/train/订单1807164_51_7113127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca30e81adf268593a14344ff7cadb9b3888fec7df22129350731addff4debec +size 115446 diff --git a/datasets/handleImage/train/订单1807165_51_7113005.jpg b/datasets/handleImage/train/订单1807165_51_7113005.jpg new file mode 100644 index 0000000..bf5996c --- /dev/null +++ b/datasets/handleImage/train/订单1807165_51_7113005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d452cc97f91404e7db49ac89b709c3bf902e5cfb30bfdba743a87d70edb884 +size 117323 diff --git a/datasets/handleImage/train/订单1807166_51_7112975.jpg b/datasets/handleImage/train/订单1807166_51_7112975.jpg new file mode 100644 index 0000000..93cb918 --- /dev/null +++ b/datasets/handleImage/train/订单1807166_51_7112975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d90566c7e9d798de4328d369c9de80b8a9d561cf7950986585026c573527bea +size 150485 diff --git a/datasets/handleImage/train/订单1807169_51_7113045.jpg b/datasets/handleImage/train/订单1807169_51_7113045.jpg new file mode 100644 index 0000000..6037074 --- /dev/null +++ b/datasets/handleImage/train/订单1807169_51_7113045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ae7abf28fd34dd8878ec79366ad604219dfb1df86ef21c8d31660949f4a613 +size 124878 diff --git a/datasets/handleImage/train/订单1807181_51_7113193.jpg b/datasets/handleImage/train/订单1807181_51_7113193.jpg new file mode 100644 index 0000000..81ad425 --- /dev/null +++ b/datasets/handleImage/train/订单1807181_51_7113193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c6d644d9af2a8d924c107e4d1dbc1c40303aad0951cb60117d60b733f42ac9 +size 485514 diff --git a/datasets/handleImage/train/订单1807182_51_7113177.jpg b/datasets/handleImage/train/订单1807182_51_7113177.jpg new file mode 100644 index 0000000..c9d2820 --- /dev/null +++ b/datasets/handleImage/train/订单1807182_51_7113177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35e0d6cef56d04714ac0aabbc58545f75d818077be9ea84386959b5a15ed755 +size 267530 diff --git a/datasets/handleImage/train/订单1807183_51_7113142.jpg b/datasets/handleImage/train/订单1807183_51_7113142.jpg new file mode 100644 index 0000000..27da92f --- /dev/null +++ b/datasets/handleImage/train/订单1807183_51_7113142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5778ee71d9188658db058a42c8e1230af05c32bc2c26a49fa74b626e89da1f65 +size 107334 diff --git a/datasets/handleImage/train/订单1807184_51_7113191.jpg b/datasets/handleImage/train/订单1807184_51_7113191.jpg new file mode 100644 index 0000000..7aad9f3 --- /dev/null +++ b/datasets/handleImage/train/订单1807184_51_7113191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12121725cbc68dc50204f13999ca733f8b0aebc2c77064691b934d58a636bdf4 +size 140567 diff --git a/datasets/handleImage/train/订单1807185_51_7113220.jpg b/datasets/handleImage/train/订单1807185_51_7113220.jpg new file mode 100644 index 0000000..40c1b5c --- /dev/null +++ b/datasets/handleImage/train/订单1807185_51_7113220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d715223ce16e7b13ddd842ca5a8c27459257e838c1c6e1610144b613a869329b +size 111093 diff --git a/datasets/handleImage/train/订单1807189_51_7113407.jpg b/datasets/handleImage/train/订单1807189_51_7113407.jpg new file mode 100644 index 0000000..ed9a81f --- /dev/null +++ b/datasets/handleImage/train/订单1807189_51_7113407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df1a7f11744b1c7e9cf65bcd15eb4f05f0a59de461e4554d4d6136a8eae052 +size 122666 diff --git a/datasets/handleImage/train/订单1807191_51_7113329.jpg b/datasets/handleImage/train/订单1807191_51_7113329.jpg new file mode 100644 index 0000000..e925680 --- /dev/null +++ b/datasets/handleImage/train/订单1807191_51_7113329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4668cf26d22748b38ffc9d15c5ed975ab5039933cb5fdc96abaad686efca4bf8 +size 299248 diff --git a/datasets/handleImage/train/订单1807192_51_7113450.jpg b/datasets/handleImage/train/订单1807192_51_7113450.jpg new file mode 100644 index 0000000..72b7ebc --- /dev/null +++ b/datasets/handleImage/train/订单1807192_51_7113450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc66e875c80f3c2620d84b66ab2de0c29996abc74c6e99ee32c27a29ff3dfdd +size 117340 diff --git a/datasets/handleImage/train/订单1807197_51_7113341.jpg b/datasets/handleImage/train/订单1807197_51_7113341.jpg new file mode 100644 index 0000000..3c94e8f --- /dev/null +++ b/datasets/handleImage/train/订单1807197_51_7113341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fe7a70f186e5fc5fad145990d555334bd5758178dae03c38a4becf318ae4fb +size 125346 diff --git a/datasets/handleImage/train/订单1807199_51_7113385.jpg b/datasets/handleImage/train/订单1807199_51_7113385.jpg new file mode 100644 index 0000000..b62b60e --- /dev/null +++ b/datasets/handleImage/train/订单1807199_51_7113385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d348c96721fdf8b34f9c67ca172efe37619a95571ad3f671c327b243ef42e0b +size 121269 diff --git a/datasets/handleImage/train/订单1807201_51_7113453.jpg b/datasets/handleImage/train/订单1807201_51_7113453.jpg new file mode 100644 index 0000000..450b8b8 --- /dev/null +++ b/datasets/handleImage/train/订单1807201_51_7113453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa14cee552ed1fa01d167dbf03821cfbd984f38b0ec56a7471fe94dd33e4aebc +size 135460 diff --git a/datasets/handleImage/train/订单1807202_51_7113452.jpg b/datasets/handleImage/train/订单1807202_51_7113452.jpg new file mode 100644 index 0000000..9090a02 --- /dev/null +++ b/datasets/handleImage/train/订单1807202_51_7113452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfb6250d4775c2eaada362814e37ff74810945631a76ef048326da8b2f769b3 +size 581041 diff --git a/datasets/handleImage/train/订单1807203_51_7113404.jpg b/datasets/handleImage/train/订单1807203_51_7113404.jpg new file mode 100644 index 0000000..3324eca --- /dev/null +++ b/datasets/handleImage/train/订单1807203_51_7113404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa13f21e9161c935bce304b6afc4360caa765b214819cc100cf5a38b44df28c3 +size 173138 diff --git a/datasets/handleImage/train/订单1807205_51_7113904.jpg b/datasets/handleImage/train/订单1807205_51_7113904.jpg new file mode 100644 index 0000000..1714a97 --- /dev/null +++ b/datasets/handleImage/train/订单1807205_51_7113904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50f03f1e9741405d8f4bc411e6c7da61a3b86a5bbe37d9093cc0c2edfa8c3dc +size 563653 diff --git a/datasets/handleImage/train/订单1807208_51_7113555.jpg b/datasets/handleImage/train/订单1807208_51_7113555.jpg new file mode 100644 index 0000000..2dbd86b --- /dev/null +++ b/datasets/handleImage/train/订单1807208_51_7113555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f9f9ff0b011f994a49e639583e36dae87b44c8bb2815a6d3172098d0ac2bbf +size 162198 diff --git a/datasets/handleImage/train/订单1807211_51_7113519.jpg b/datasets/handleImage/train/订单1807211_51_7113519.jpg new file mode 100644 index 0000000..f351d01 --- /dev/null +++ b/datasets/handleImage/train/订单1807211_51_7113519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50dafb520bf241628d716aebf5817bcab092e5b7aa46a1b7b743e438325dc2d0 +size 149983 diff --git a/datasets/handleImage/train/订单1807217_51_7113518.jpg b/datasets/handleImage/train/订单1807217_51_7113518.jpg new file mode 100644 index 0000000..274992f --- /dev/null +++ b/datasets/handleImage/train/订单1807217_51_7113518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aea2f4a1d87463fc546f8624b572c605f9dcf84f34481eb294668d690d0ab67 +size 121991 diff --git a/datasets/handleImage/train/订单1807219_51_7113577.jpg b/datasets/handleImage/train/订单1807219_51_7113577.jpg new file mode 100644 index 0000000..f730efd --- /dev/null +++ b/datasets/handleImage/train/订单1807219_51_7113577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e46befb3e31a9022563a15b4661269c500c331c59a680df3adbedd2c6fee27 +size 589225 diff --git a/datasets/handleImage/train/订单1807221_51_7113552.jpg b/datasets/handleImage/train/订单1807221_51_7113552.jpg new file mode 100644 index 0000000..3e42ba0 --- /dev/null +++ b/datasets/handleImage/train/订单1807221_51_7113552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760cb031ffca985f3ef4abd65b3327d510bdb887b1d109f752339bd5b441e31d +size 147141 diff --git a/datasets/handleImage/train/订单1807224_51_7113585.jpg b/datasets/handleImage/train/订单1807224_51_7113585.jpg new file mode 100644 index 0000000..8682dd2 --- /dev/null +++ b/datasets/handleImage/train/订单1807224_51_7113585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3cb08131438ee888f3b430581249724705cfc09c968172c6033b351f413e52 +size 127922 diff --git a/datasets/handleImage/train/订单1807226_51_7113749.jpg b/datasets/handleImage/train/订单1807226_51_7113749.jpg new file mode 100644 index 0000000..0b20e80 --- /dev/null +++ b/datasets/handleImage/train/订单1807226_51_7113749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15952185af2091ad457451a78b10f5f562d2a7e1b6edb8c3767d589198de951d +size 135038 diff --git a/datasets/handleImage/train/订单1807230_51_7113599.jpg b/datasets/handleImage/train/订单1807230_51_7113599.jpg new file mode 100644 index 0000000..12a9b2f --- /dev/null +++ b/datasets/handleImage/train/订单1807230_51_7113599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb4fa9b73cdbc86f78505335c3ea3037c488ca84dc10cac84fc02560955c56b +size 743634 diff --git a/datasets/handleImage/train/订单1807231_51_7113614.jpg b/datasets/handleImage/train/订单1807231_51_7113614.jpg new file mode 100644 index 0000000..1d65383 --- /dev/null +++ b/datasets/handleImage/train/订单1807231_51_7113614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ed8769e870f93a23a90ec313a0fa1b34054540650b271175493f16734c225c +size 354555 diff --git a/datasets/handleImage/train/订单1807232_51_7113683.jpg b/datasets/handleImage/train/订单1807232_51_7113683.jpg new file mode 100644 index 0000000..d46f0e6 --- /dev/null +++ b/datasets/handleImage/train/订单1807232_51_7113683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47050d00c585bac6c8684de1026bcf1d60b9d18c8c6c022ba424948a9dc8a18f +size 129450 diff --git a/datasets/handleImage/train/订单1807233_51_7113715.jpg b/datasets/handleImage/train/订单1807233_51_7113715.jpg new file mode 100644 index 0000000..9940dfd --- /dev/null +++ b/datasets/handleImage/train/订单1807233_51_7113715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb81a59e283ca4c1313c03298e525203f828b0baff953e0a1ed6ea80a148925 +size 248366 diff --git a/datasets/handleImage/train/订单1807236_51_7113782.jpg b/datasets/handleImage/train/订单1807236_51_7113782.jpg new file mode 100644 index 0000000..d6f4925 --- /dev/null +++ b/datasets/handleImage/train/订单1807236_51_7113782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85417527d18ca26bbb6c097d614ffd90111dc06a9ce94404a905dfedb755728e +size 124809 diff --git a/datasets/handleImage/train/订单1807237_51_7113661.jpg b/datasets/handleImage/train/订单1807237_51_7113661.jpg new file mode 100644 index 0000000..dcf7a6e --- /dev/null +++ b/datasets/handleImage/train/订单1807237_51_7113661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4503ecf99f84652af2353c7402f25314c6414fd69b13ba9f83b6b8f7de317795 +size 144840 diff --git a/datasets/handleImage/train/订单1807238_51_7113657.jpg b/datasets/handleImage/train/订单1807238_51_7113657.jpg new file mode 100644 index 0000000..0998900 --- /dev/null +++ b/datasets/handleImage/train/订单1807238_51_7113657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c10e32783c735a6283ad7f306b81711e5fb396b4edc7cae033c5c3ebff84ae +size 177896 diff --git a/datasets/handleImage/train/订单1807240_51_7113721.jpg b/datasets/handleImage/train/订单1807240_51_7113721.jpg new file mode 100644 index 0000000..01d7edd --- /dev/null +++ b/datasets/handleImage/train/订单1807240_51_7113721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e7e4de235759cc66d869335349e7589cadf011e00f3a73247e04ad86be3cc8 +size 184585 diff --git a/datasets/handleImage/train/订单1807242_51_7113761.jpg b/datasets/handleImage/train/订单1807242_51_7113761.jpg new file mode 100644 index 0000000..4b180bc --- /dev/null +++ b/datasets/handleImage/train/订单1807242_51_7113761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36312bf3059353121b8d4e7b9a220b37d7a3288dd71183cc79cd4bf8477a6a01 +size 287671 diff --git a/datasets/handleImage/train/订单1807245_51_7113816.jpg b/datasets/handleImage/train/订单1807245_51_7113816.jpg new file mode 100644 index 0000000..4480e58 --- /dev/null +++ b/datasets/handleImage/train/订单1807245_51_7113816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36bc6d749203fa304f1c827e3d3776f87c92b90e51b0bc8150047efce2999cf +size 104980 diff --git a/datasets/handleImage/train/订单1807246_51_7113791.jpg b/datasets/handleImage/train/订单1807246_51_7113791.jpg new file mode 100644 index 0000000..a2ba8b5 --- /dev/null +++ b/datasets/handleImage/train/订单1807246_51_7113791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602c80a4b37ba2414187b7171d08d32cfacddddf0c4be1e026e4669c2a738b2 +size 179073 diff --git a/datasets/handleImage/train/订单1807248_51_7113945.jpg b/datasets/handleImage/train/订单1807248_51_7113945.jpg new file mode 100644 index 0000000..8301582 --- /dev/null +++ b/datasets/handleImage/train/订单1807248_51_7113945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bd3d36ba6045d2c66e829c654f13d525d4f828d01490dd6c3eca76262d0dab +size 129982 diff --git a/datasets/handleImage/train/订单1807251_51_7113927.jpg b/datasets/handleImage/train/订单1807251_51_7113927.jpg new file mode 100644 index 0000000..dedf9d8 --- /dev/null +++ b/datasets/handleImage/train/订单1807251_51_7113927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd3e9bdc0674b6992fd80f8f529d657aa310338ec8ecfee7078d129a3a0772d +size 143812 diff --git a/datasets/handleImage/train/订单1807252_51_7113872.jpg b/datasets/handleImage/train/订单1807252_51_7113872.jpg new file mode 100644 index 0000000..ac86ea5 --- /dev/null +++ b/datasets/handleImage/train/订单1807252_51_7113872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4471b5e65ed3d2d0bf8ee85d68a9b20a24ddc5f8be6e8c3c08127db14c446b +size 102385 diff --git a/datasets/handleImage/train/订单1807253_51_7113859.jpg b/datasets/handleImage/train/订单1807253_51_7113859.jpg new file mode 100644 index 0000000..6f76c6b --- /dev/null +++ b/datasets/handleImage/train/订单1807253_51_7113859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9d4af2264eb8363137b6ea12deddd5448b9bd07defcc9c3b4cd5bc9aa73aad +size 116338 diff --git a/datasets/handleImage/train/订单1807255_51_7113891.jpg b/datasets/handleImage/train/订单1807255_51_7113891.jpg new file mode 100644 index 0000000..971ab99 --- /dev/null +++ b/datasets/handleImage/train/订单1807255_51_7113891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed867e9108153b5c5f60392341618bad014548c42fce2dc6f0745479b02c2454 +size 134775 diff --git a/datasets/handleImage/train/订单1807259_51_7113928.jpg b/datasets/handleImage/train/订单1807259_51_7113928.jpg new file mode 100644 index 0000000..72f75ee --- /dev/null +++ b/datasets/handleImage/train/订单1807259_51_7113928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737ea4ee11298298ed30fa58026b23b940bf01420aa384848d6872d2ec87c0dd +size 115923 diff --git a/datasets/handleImage/train/订单1807260_51_7114022.jpg b/datasets/handleImage/train/订单1807260_51_7114022.jpg new file mode 100644 index 0000000..b5c9a91 --- /dev/null +++ b/datasets/handleImage/train/订单1807260_51_7114022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929b495dbad8a8b64f0649a0df24dd99842a8d1c81fc7d00b2fb7f35a1d6581f +size 603980 diff --git a/datasets/handleImage/train/订单1807262_51_7113998.jpg b/datasets/handleImage/train/订单1807262_51_7113998.jpg new file mode 100644 index 0000000..b2fb692 --- /dev/null +++ b/datasets/handleImage/train/订单1807262_51_7113998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d10167dbea1a22fb7d442dd8207268eb00eabfb1885fd758023ba2571e925f7 +size 123665 diff --git a/datasets/handleImage/train/订单1807265_51_7114041.jpg b/datasets/handleImage/train/订单1807265_51_7114041.jpg new file mode 100644 index 0000000..77c51a8 --- /dev/null +++ b/datasets/handleImage/train/订单1807265_51_7114041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce6fbf35c5a8eaf8408fc6158ff6143c17b6463c387df87a2463fba161245bc +size 288727 diff --git a/datasets/handleImage/train/订单1807271_51_7114136.jpg b/datasets/handleImage/train/订单1807271_51_7114136.jpg new file mode 100644 index 0000000..592b086 --- /dev/null +++ b/datasets/handleImage/train/订单1807271_51_7114136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4838b83b1ff139d3911ad09fef96188338b3c8a8a4079908de26593c31ad7ffb +size 131654 diff --git a/datasets/handleImage/train/订单1807281_51_7114155.jpg b/datasets/handleImage/train/订单1807281_51_7114155.jpg new file mode 100644 index 0000000..ca3c39d --- /dev/null +++ b/datasets/handleImage/train/订单1807281_51_7114155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc3b973266ec036bdb6e2f2eb1bbf6caf7f942180cda05ed889fa057d7d015c +size 272060 diff --git a/datasets/handleImage/train/订单1807284_51_7114318.jpg b/datasets/handleImage/train/订单1807284_51_7114318.jpg new file mode 100644 index 0000000..3607b2f --- /dev/null +++ b/datasets/handleImage/train/订单1807284_51_7114318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd1321339da35c13e18dedd509108094d644d245f1c69731f46d4d1c44a9c7d +size 475556 diff --git a/datasets/handleImage/train/订单1807286_51_7114197.jpg b/datasets/handleImage/train/订单1807286_51_7114197.jpg new file mode 100644 index 0000000..e106b49 --- /dev/null +++ b/datasets/handleImage/train/订单1807286_51_7114197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549a997bd8b83116b671ac7c5df0e0023348812452d70e7d9002223dfd584a25 +size 116947 diff --git a/datasets/handleImage/train/订单1807288_51_7114663.jpg b/datasets/handleImage/train/订单1807288_51_7114663.jpg new file mode 100644 index 0000000..0e90bbd --- /dev/null +++ b/datasets/handleImage/train/订单1807288_51_7114663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6336bd74f251ae118bb68143956f4fcdd984f6cd1a73a46abec1907d314a4264 +size 130055 diff --git a/datasets/handleImage/train/订单1807292_51_7114224.jpg b/datasets/handleImage/train/订单1807292_51_7114224.jpg new file mode 100644 index 0000000..caf3be1 --- /dev/null +++ b/datasets/handleImage/train/订单1807292_51_7114224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcc17e26bb60433f11ca4f023d0a03f2f254f870e006e916ac93d8c5ebf7a57 +size 128365 diff --git a/datasets/handleImage/train/订单1807296_51_7114313.jpg b/datasets/handleImage/train/订单1807296_51_7114313.jpg new file mode 100644 index 0000000..559bdba --- /dev/null +++ b/datasets/handleImage/train/订单1807296_51_7114313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08958a05e45f82d93b8c02e264e64f07532fa2c6f538ffd651c01452727ee409 +size 96639 diff --git a/datasets/handleImage/train/订单1807299_51_7114302.jpg b/datasets/handleImage/train/订单1807299_51_7114302.jpg new file mode 100644 index 0000000..f91b811 --- /dev/null +++ b/datasets/handleImage/train/订单1807299_51_7114302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd91913d8184823bcb5d4bd0ea039030e01021bd95adb7cb9dfeafb1f17a81ad +size 314524 diff --git a/datasets/handleImage/train/订单1807304_51_7114340.jpg b/datasets/handleImage/train/订单1807304_51_7114340.jpg new file mode 100644 index 0000000..ba13812 --- /dev/null +++ b/datasets/handleImage/train/订单1807304_51_7114340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cb2d221fa9bf82206c0157edfe9f255f63eba83a0f1a218714328b589b287a +size 118262 diff --git a/datasets/handleImage/train/订单1807305_51_7114437.jpg b/datasets/handleImage/train/订单1807305_51_7114437.jpg new file mode 100644 index 0000000..3ea86cc --- /dev/null +++ b/datasets/handleImage/train/订单1807305_51_7114437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dae2c7df05e516a8be37d2e222e3f47a79e8b7b70d6fe8184c3c85e4861ecca +size 198372 diff --git a/datasets/handleImage/train/订单1807307_51_7114368.jpg b/datasets/handleImage/train/订单1807307_51_7114368.jpg new file mode 100644 index 0000000..cda4613 --- /dev/null +++ b/datasets/handleImage/train/订单1807307_51_7114368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dac13e0e8b8b0a268961b1469262d1e69deac374b2619fd0a4aa734934f06a +size 278573 diff --git a/datasets/handleImage/train/订单1807311_51_7114483.jpg b/datasets/handleImage/train/订单1807311_51_7114483.jpg new file mode 100644 index 0000000..25dd505 --- /dev/null +++ b/datasets/handleImage/train/订单1807311_51_7114483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9935ba78d12b89edcb3c45e38144509368e15e5460d7ec8fe12a4672ed8a084 +size 578965 diff --git a/datasets/handleImage/train/订单1807312_51_7114460.jpg b/datasets/handleImage/train/订单1807312_51_7114460.jpg new file mode 100644 index 0000000..773c063 --- /dev/null +++ b/datasets/handleImage/train/订单1807312_51_7114460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bedb0f060e4b50b6bb2b27f4411a7096b5c1eed0a9abd8875985258e4fc2b1c +size 147442 diff --git a/datasets/handleImage/train/订单1807317_51_7114433.jpg b/datasets/handleImage/train/订单1807317_51_7114433.jpg new file mode 100644 index 0000000..9c27b8d --- /dev/null +++ b/datasets/handleImage/train/订单1807317_51_7114433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a67ec4541ea18c5b8e88045fa3981c7e4b750eaf2a96a8ede03d8a2e2a81ad +size 124372 diff --git a/datasets/handleImage/train/订单1807318_51_7114408.jpg b/datasets/handleImage/train/订单1807318_51_7114408.jpg new file mode 100644 index 0000000..fcfe7df --- /dev/null +++ b/datasets/handleImage/train/订单1807318_51_7114408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d28a9a62453aa49f4ffd83a4426eeb79f2c9d998d2923f7530d6ae4c6f46897 +size 76672 diff --git a/datasets/handleImage/train/订单1807319_51_7114509.jpg b/datasets/handleImage/train/订单1807319_51_7114509.jpg new file mode 100644 index 0000000..4c39eae --- /dev/null +++ b/datasets/handleImage/train/订单1807319_51_7114509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5923884ae56879fda53e6bce28306a68d8b1bf82ebc9208c508e82bded87f6aa +size 163086 diff --git a/datasets/handleImage/train/订单1807320_51_7114495.jpg b/datasets/handleImage/train/订单1807320_51_7114495.jpg new file mode 100644 index 0000000..c76a22a --- /dev/null +++ b/datasets/handleImage/train/订单1807320_51_7114495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8629e22ee745a909896657bf59f6e9871e7a1911787224cb4d4eb8b9ee87d7d7 +size 301233 diff --git a/datasets/handleImage/train/订单1807322_51_7114586.jpg b/datasets/handleImage/train/订单1807322_51_7114586.jpg new file mode 100644 index 0000000..9df42c6 --- /dev/null +++ b/datasets/handleImage/train/订单1807322_51_7114586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7739531212f1a3d7c1553a03537f9ba51ee8ccb3c2175d1b0615634ff18417ac +size 128063 diff --git a/datasets/handleImage/train/订单1807323_51_7114599.jpg b/datasets/handleImage/train/订单1807323_51_7114599.jpg new file mode 100644 index 0000000..362b9f3 --- /dev/null +++ b/datasets/handleImage/train/订单1807323_51_7114599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6056cbc544dd7a6d2f999d4e5f5422efa9ae47e096b25e0e02e5af4b2faeaac +size 128220 diff --git a/datasets/handleImage/train/订单1807326_51_7114625.jpg b/datasets/handleImage/train/订单1807326_51_7114625.jpg new file mode 100644 index 0000000..f6f2060 --- /dev/null +++ b/datasets/handleImage/train/订单1807326_51_7114625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4863af0a770cce6c49e2b58cbc725db9bc6dcd377b1af07c9c0d47416e151882 +size 70240 diff --git a/datasets/handleImage/train/订单1807329_51_7114657.jpg b/datasets/handleImage/train/订单1807329_51_7114657.jpg new file mode 100644 index 0000000..cbee764 --- /dev/null +++ b/datasets/handleImage/train/订单1807329_51_7114657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b76b87ba01662e004b67a79e68e596e75d7924f1044218bb4b74f03106966cb +size 154200 diff --git a/datasets/handleImage/train/订单1807331_51_7114848.jpg b/datasets/handleImage/train/订单1807331_51_7114848.jpg new file mode 100644 index 0000000..7cf38bd --- /dev/null +++ b/datasets/handleImage/train/订单1807331_51_7114848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed77bf142cb82c6a32917eab7b1d2d471f6be5ae1833313f08fa344df025ed0 +size 162127 diff --git a/datasets/handleImage/train/订单1807337_51_7114881.jpg b/datasets/handleImage/train/订单1807337_51_7114881.jpg new file mode 100644 index 0000000..71ce57f --- /dev/null +++ b/datasets/handleImage/train/订单1807337_51_7114881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8021a79cce68d6b07edda5e0a879a59934deaf0e3fd284bf503c9fc2ca255c +size 134894 diff --git a/datasets/handleImage/train/订单1807342_51_7114751.jpg b/datasets/handleImage/train/订单1807342_51_7114751.jpg new file mode 100644 index 0000000..79e305d --- /dev/null +++ b/datasets/handleImage/train/订单1807342_51_7114751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb82fec98df06604e0bc31076b1175c3ed5a7604dd07a29f37527a425b36d6e2 +size 87946 diff --git a/datasets/handleImage/train/订单1807343_51_7114747.jpg b/datasets/handleImage/train/订单1807343_51_7114747.jpg new file mode 100644 index 0000000..7f23420 --- /dev/null +++ b/datasets/handleImage/train/订单1807343_51_7114747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd11a9a83f637cfa6abfee1ad9abdd6bc79a24d4a09b861e31c458deaeb63eb +size 97844 diff --git a/datasets/handleImage/train/订单1807349_51_7114675.jpg b/datasets/handleImage/train/订单1807349_51_7114675.jpg new file mode 100644 index 0000000..1203f1d --- /dev/null +++ b/datasets/handleImage/train/订单1807349_51_7114675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be927b044ce99ceddb104670cb920dc3904a35c3b6ec65b4f8a49c3d850abdc +size 157485 diff --git a/datasets/handleImage/train/订单1807350_51_7114761.jpg b/datasets/handleImage/train/订单1807350_51_7114761.jpg new file mode 100644 index 0000000..7d6e0ae --- /dev/null +++ b/datasets/handleImage/train/订单1807350_51_7114761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679849d47e256678e5ca30a605b50c334cde10f8902220b4bf6640f1bce892c1 +size 138665 diff --git a/datasets/handleImage/train/订单1807354_51_7114805.jpg b/datasets/handleImage/train/订单1807354_51_7114805.jpg new file mode 100644 index 0000000..fec2fcd --- /dev/null +++ b/datasets/handleImage/train/订单1807354_51_7114805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c00328bdda50bb7f9ebd1c8bb4fb1342f6f9d266272190fb53d6a26f6121a0e +size 125391 diff --git a/datasets/handleImage/train/订单1807356_51_7114884.jpg b/datasets/handleImage/train/订单1807356_51_7114884.jpg new file mode 100644 index 0000000..dbffdd7 --- /dev/null +++ b/datasets/handleImage/train/订单1807356_51_7114884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9723d2d83171130b4a68b221a0b46ba97b7480921b4b8e9cab00a0a543686a2c +size 111916 diff --git a/datasets/handleImage/train/订单1807358_51_7114911.jpg b/datasets/handleImage/train/订单1807358_51_7114911.jpg new file mode 100644 index 0000000..08a712a --- /dev/null +++ b/datasets/handleImage/train/订单1807358_51_7114911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c054273bc5958aa240792186c1e05b09cc39e881f64f35ab2913a2c9762a14c +size 150127 diff --git a/datasets/handleImage/train/订单1807365_51_7114899.jpg b/datasets/handleImage/train/订单1807365_51_7114899.jpg new file mode 100644 index 0000000..47b1780 --- /dev/null +++ b/datasets/handleImage/train/订单1807365_51_7114899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530f6aac6a9d1416ec43a7d7feb6634261722655695df0d8bf3986098ac3c766 +size 106982 diff --git a/datasets/handleImage/train/订单1807366_51_7114944.jpg b/datasets/handleImage/train/订单1807366_51_7114944.jpg new file mode 100644 index 0000000..3ce32c5 --- /dev/null +++ b/datasets/handleImage/train/订单1807366_51_7114944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92735bfce701afe799a12b24e3e5b984e68c7c16acf8e6bf0a21fd6834e49b2d +size 107342 diff --git a/datasets/handleImage/train/订单1807368_51_7115023.jpg b/datasets/handleImage/train/订单1807368_51_7115023.jpg new file mode 100644 index 0000000..f16670c --- /dev/null +++ b/datasets/handleImage/train/订单1807368_51_7115023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8791bfe50afc5726f0d75bc3439a33d2c2a9b833a7692be6b3af359fbeeda230 +size 53746 diff --git a/datasets/handleImage/train/订单1807371_51_7115058.jpg b/datasets/handleImage/train/订单1807371_51_7115058.jpg new file mode 100644 index 0000000..662f1b7 --- /dev/null +++ b/datasets/handleImage/train/订单1807371_51_7115058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99d59fd4bd95e3954a4ca38cc329733dd79ac7a89464813f9b1d93afdff57f5 +size 136789 diff --git a/datasets/handleImage/train/订单1807374_51_7114939.jpg b/datasets/handleImage/train/订单1807374_51_7114939.jpg new file mode 100644 index 0000000..0c03685 --- /dev/null +++ b/datasets/handleImage/train/订单1807374_51_7114939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab1a51618ea9fd265952991a0b6cb53fe294b75990051acb5a2d090ed9201dd +size 139513 diff --git a/datasets/handleImage/train/订单1807377_51_7115068.jpg b/datasets/handleImage/train/订单1807377_51_7115068.jpg new file mode 100644 index 0000000..2d316ca --- /dev/null +++ b/datasets/handleImage/train/订单1807377_51_7115068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9a9eafa4293a386cd606755a597f379bb386ced6d02caa3ea39e3c5b32eb78 +size 509087 diff --git a/datasets/handleImage/train/订单1807378_51_7115179.jpg b/datasets/handleImage/train/订单1807378_51_7115179.jpg new file mode 100644 index 0000000..bc3e089 --- /dev/null +++ b/datasets/handleImage/train/订单1807378_51_7115179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6a9dc754cf62cf11c68060f607238a34489bab23177553bbf8fb3e88fb939f +size 138145 diff --git a/datasets/handleImage/train/订单1807381_51_7115096.jpg b/datasets/handleImage/train/订单1807381_51_7115096.jpg new file mode 100644 index 0000000..3ee6feb --- /dev/null +++ b/datasets/handleImage/train/订单1807381_51_7115096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b403d90c81f0a4e4c05c4e0266f1ac2dfe389c286b2b240d51d39bab949b50 +size 203626 diff --git a/datasets/handleImage/train/订单1807385_51_7115103.jpg b/datasets/handleImage/train/订单1807385_51_7115103.jpg new file mode 100644 index 0000000..c6b546a --- /dev/null +++ b/datasets/handleImage/train/订单1807385_51_7115103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb05c97c2ab5dc5d050f02e40054689a05189bae015082090ef307431ae3b63 +size 280735 diff --git a/datasets/handleImage/train/订单1807386_51_7115174.jpg b/datasets/handleImage/train/订单1807386_51_7115174.jpg new file mode 100644 index 0000000..5046ba7 --- /dev/null +++ b/datasets/handleImage/train/订单1807386_51_7115174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a054d13720e7bd446bef6ec24e8261319a14b0bcc39a60f7c236c6d68dc0ae +size 91229 diff --git a/datasets/handleImage/train/订单1807387_51_7115119.jpg b/datasets/handleImage/train/订单1807387_51_7115119.jpg new file mode 100644 index 0000000..f3cf86a --- /dev/null +++ b/datasets/handleImage/train/订单1807387_51_7115119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55df4d375ea9fc04b4a2cf9f215d0c54c81404a767877b7f5cc0a1827081e9f +size 360488 diff --git a/datasets/handleImage/train/订单1807388_51_7115158.jpg b/datasets/handleImage/train/订单1807388_51_7115158.jpg new file mode 100644 index 0000000..fbe24a3 --- /dev/null +++ b/datasets/handleImage/train/订单1807388_51_7115158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88bd2b2ed909c20790283b8fdb7fc338bf0275f1602c6cfaa6167e14ee1de6 +size 78420 diff --git a/datasets/handleImage/train/订单1807390_51_7115204.jpg b/datasets/handleImage/train/订单1807390_51_7115204.jpg new file mode 100644 index 0000000..467e706 --- /dev/null +++ b/datasets/handleImage/train/订单1807390_51_7115204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d50bb82f9c4f309b83112f22a364af766c0d98e7538b0bf4b32698018fdd7c +size 122365 diff --git a/datasets/handleImage/train/订单1807393_51_7115228.jpg b/datasets/handleImage/train/订单1807393_51_7115228.jpg new file mode 100644 index 0000000..aa8a94d --- /dev/null +++ b/datasets/handleImage/train/订单1807393_51_7115228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b831e10e83762a9c93b66475cc8942b2f6dd82ceafd2afcec91ea6bc64890e1 +size 132609 diff --git a/datasets/handleImage/train/订单1807395_51_7115255.jpg b/datasets/handleImage/train/订单1807395_51_7115255.jpg new file mode 100644 index 0000000..793addf --- /dev/null +++ b/datasets/handleImage/train/订单1807395_51_7115255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc025e6e6efd1be2d5736da904e183fd7e307d19ef741bb42d9836aa7a9a176 +size 101529 diff --git a/datasets/handleImage/train/订单1807396_51_7115232.jpg b/datasets/handleImage/train/订单1807396_51_7115232.jpg new file mode 100644 index 0000000..3d62c42 --- /dev/null +++ b/datasets/handleImage/train/订单1807396_51_7115232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b234d216970f8865fcdef9119cd596b889ffda5cb4cb9e7760f865aac0623a54 +size 140967 diff --git a/datasets/handleImage/train/订单1807399_51_7115284.jpg b/datasets/handleImage/train/订单1807399_51_7115284.jpg new file mode 100644 index 0000000..2935dd6 --- /dev/null +++ b/datasets/handleImage/train/订单1807399_51_7115284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49eb44f6023da287cad4238d94ba7d8b6d467ae44682a9ddad830cdd3faeabc8 +size 145076 diff --git a/datasets/handleImage/train/订单1807401_51_7115294.jpg b/datasets/handleImage/train/订单1807401_51_7115294.jpg new file mode 100644 index 0000000..b5ba345 --- /dev/null +++ b/datasets/handleImage/train/订单1807401_51_7115294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8db309e472e0c4fa332c3577baf2b3b02d98ca213368cf9f90fd95cbf97d4c6 +size 362285 diff --git a/datasets/handleImage/train/订单1807404_51_7115386.jpg b/datasets/handleImage/train/订单1807404_51_7115386.jpg new file mode 100644 index 0000000..82ac3d3 --- /dev/null +++ b/datasets/handleImage/train/订单1807404_51_7115386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f90f75b737fbab2e6fbcbab25c3b5203676bb2b1bfa95354330848793401d8c +size 112342 diff --git a/datasets/handleImage/train/订单1807405_51_7115359.jpg b/datasets/handleImage/train/订单1807405_51_7115359.jpg new file mode 100644 index 0000000..8b585c3 --- /dev/null +++ b/datasets/handleImage/train/订单1807405_51_7115359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f84b8532901ef877f0873fb641c62a5e7efac756cd9c2ded8e05d0b247056fb +size 101092 diff --git a/datasets/handleImage/train/订单1807408_51_7115322.jpg b/datasets/handleImage/train/订单1807408_51_7115322.jpg new file mode 100644 index 0000000..0962267 --- /dev/null +++ b/datasets/handleImage/train/订单1807408_51_7115322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8f4cd0d73f2229a399feba091d0655013b6018ae49b2ac7e96c4a3eaeb4c2a +size 345421 diff --git a/datasets/handleImage/train/订单1807410_51_7115405.jpg b/datasets/handleImage/train/订单1807410_51_7115405.jpg new file mode 100644 index 0000000..0d687dc --- /dev/null +++ b/datasets/handleImage/train/订单1807410_51_7115405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0499957c1c880eb22d9d7c3841108c752e5d57aa5686dc168b7c2867f5de7b9 +size 516419 diff --git a/datasets/handleImage/train/订单1807411_51_7115351.jpg b/datasets/handleImage/train/订单1807411_51_7115351.jpg new file mode 100644 index 0000000..80400da --- /dev/null +++ b/datasets/handleImage/train/订单1807411_51_7115351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a31dd9bcfd23da97fb32e532661af0295c29b3660b61d7ddf28020d36d0a4ee +size 329493 diff --git a/datasets/handleImage/train/订单1807412_51_7115406.jpg b/datasets/handleImage/train/订单1807412_51_7115406.jpg new file mode 100644 index 0000000..5794a19 --- /dev/null +++ b/datasets/handleImage/train/订单1807412_51_7115406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ae3b081c04b9cc6253a6f603ba3450d656c8ecadb9b92b052e187a3e93efb8 +size 99494 diff --git a/datasets/handleImage/train/订单1807414_51_7115431.jpg b/datasets/handleImage/train/订单1807414_51_7115431.jpg new file mode 100644 index 0000000..ebca6b3 --- /dev/null +++ b/datasets/handleImage/train/订单1807414_51_7115431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adeaf83bb8f8036e999f6ed380f69478a6ba6581537b5b73ce89d5db5b41234 +size 160954 diff --git a/datasets/handleImage/train/订单1807416_51_7115422.jpg b/datasets/handleImage/train/订单1807416_51_7115422.jpg new file mode 100644 index 0000000..327bebb --- /dev/null +++ b/datasets/handleImage/train/订单1807416_51_7115422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d533b42a23226a0f04438097af3aad498061775db45fb2dcb1d06e102f492f2d +size 158894 diff --git a/datasets/handleImage/train/订单1807419_51_7115476.jpg b/datasets/handleImage/train/订单1807419_51_7115476.jpg new file mode 100644 index 0000000..51496ef --- /dev/null +++ b/datasets/handleImage/train/订单1807419_51_7115476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169f4269ed9d359b67ff4b69557a790024ff088acfb854e8fb23e819e108db5d +size 150819 diff --git a/datasets/handleImage/train/订单1807420_51_7115500.jpg b/datasets/handleImage/train/订单1807420_51_7115500.jpg new file mode 100644 index 0000000..fe87151 --- /dev/null +++ b/datasets/handleImage/train/订单1807420_51_7115500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b721386b79dd6a23cb4af40cdfd893af8d9519f0ae06f776fa8719dfd2737f1f +size 123383 diff --git a/datasets/handleImage/train/订单1807421_51_7115464.jpg b/datasets/handleImage/train/订单1807421_51_7115464.jpg new file mode 100644 index 0000000..fe66fe0 --- /dev/null +++ b/datasets/handleImage/train/订单1807421_51_7115464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf3c279cd345c4ef95daa26fb2d9eb41ec63b4e290a4a755c7264c58636d012 +size 149795 diff --git a/datasets/handleImage/train/订单1807423_51_7115489.jpg b/datasets/handleImage/train/订单1807423_51_7115489.jpg new file mode 100644 index 0000000..50299ec --- /dev/null +++ b/datasets/handleImage/train/订单1807423_51_7115489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a96d2bcee0636a1455c56ebfdd4f419d4b3d8791a4230adf3744eb5f00dedc6 +size 618016 diff --git a/datasets/handleImage/train/订单1807425_51_7115538.jpg b/datasets/handleImage/train/订单1807425_51_7115538.jpg new file mode 100644 index 0000000..f84bf23 --- /dev/null +++ b/datasets/handleImage/train/订单1807425_51_7115538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6504c975a682ef201e36d502b20e99762329d49480a90a9fa114ef986a0dbd +size 130828 diff --git a/datasets/handleImage/train/订单1807430_51_7115559.jpg b/datasets/handleImage/train/订单1807430_51_7115559.jpg new file mode 100644 index 0000000..2e08c4a --- /dev/null +++ b/datasets/handleImage/train/订单1807430_51_7115559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f84723f0678a4b83e0acb6484969dbb1a9d6fdc1d9318ec8c904c52d99b8dd3 +size 106896 diff --git a/datasets/handleImage/train/订单1807431_51_7115577.jpg b/datasets/handleImage/train/订单1807431_51_7115577.jpg new file mode 100644 index 0000000..5b15ce5 --- /dev/null +++ b/datasets/handleImage/train/订单1807431_51_7115577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fbe7452ff77848c5860d806001885b99fc2439cd033ec3068aa10ac5a8c519 +size 125849 diff --git a/datasets/handleImage/train/订单1807433_51_7115601.jpg b/datasets/handleImage/train/订单1807433_51_7115601.jpg new file mode 100644 index 0000000..387d6ba --- /dev/null +++ b/datasets/handleImage/train/订单1807433_51_7115601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc4a98341c0522e2dab115b64c13b349a96025b9fdbbc0126493a315d64a6b1 +size 118454 diff --git a/datasets/handleImage/train/订单1807435_51_7115592.jpg b/datasets/handleImage/train/订单1807435_51_7115592.jpg new file mode 100644 index 0000000..3474936 --- /dev/null +++ b/datasets/handleImage/train/订单1807435_51_7115592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd71af76e219bdc759678583a5a396ad8c25641404adc79e087da68afdade4b +size 343237 diff --git a/datasets/handleImage/train/订单1807440_51_7115685.jpg b/datasets/handleImage/train/订单1807440_51_7115685.jpg new file mode 100644 index 0000000..59d123d --- /dev/null +++ b/datasets/handleImage/train/订单1807440_51_7115685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ae3f74dba64cd5865f25a653cbd8c807b9972b5ace220a79f4099bac5eb404 +size 965678 diff --git a/datasets/handleImage/train/订单1807446_51_7115659.jpg b/datasets/handleImage/train/订单1807446_51_7115659.jpg new file mode 100644 index 0000000..befc2b6 --- /dev/null +++ b/datasets/handleImage/train/订单1807446_51_7115659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c7e87475f166be75365b1d16b8121b00ce4b9ae7a3613aceb8b6376b70c498 +size 348168 diff --git a/datasets/handleImage/train/订单1807447_51_7115697.jpg b/datasets/handleImage/train/订单1807447_51_7115697.jpg new file mode 100644 index 0000000..4453728 --- /dev/null +++ b/datasets/handleImage/train/订单1807447_51_7115697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211a2679dc603498f6dc04675168ee2753857be30b1762aff1d7e5cacfb21c1e +size 136978 diff --git a/datasets/handleImage/train/订单1807448_51_7115789.jpg b/datasets/handleImage/train/订单1807448_51_7115789.jpg new file mode 100644 index 0000000..f18b739 --- /dev/null +++ b/datasets/handleImage/train/订单1807448_51_7115789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcef499ffb7f41e704fc8136f6284f8c1ddf36c577783ebb9268a48bbec1abd +size 132077 diff --git a/datasets/handleImage/train/订单1807449_51_7115668.jpg b/datasets/handleImage/train/订单1807449_51_7115668.jpg new file mode 100644 index 0000000..3e5bfb4 --- /dev/null +++ b/datasets/handleImage/train/订单1807449_51_7115668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370c1e851c26a8935d757c00c08061cdac0179edecfb575647738f02e3a806aa +size 106959 diff --git a/datasets/handleImage/train/订单1807451_51_7115671.jpg b/datasets/handleImage/train/订单1807451_51_7115671.jpg new file mode 100644 index 0000000..17aec8c --- /dev/null +++ b/datasets/handleImage/train/订单1807451_51_7115671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c89a9439c6bd42716f26d1abdb53c7b7916fd4f482e0c57929b171f4a2eb83 +size 375295 diff --git a/datasets/handleImage/train/订单1807455_51_7115711.jpg b/datasets/handleImage/train/订单1807455_51_7115711.jpg new file mode 100644 index 0000000..d2eedd0 --- /dev/null +++ b/datasets/handleImage/train/订单1807455_51_7115711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80fd8bef35b8a1639544c039d08f8554a2c7b16e81ea8adab37f14c625f47f2 +size 88740 diff --git a/datasets/handleImage/train/订单1807459_51_7115757.jpg b/datasets/handleImage/train/订单1807459_51_7115757.jpg new file mode 100644 index 0000000..07d6d41 --- /dev/null +++ b/datasets/handleImage/train/订单1807459_51_7115757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e82ea6132c2d753a2fa762ef02d66188bd97404a60093b4fbc562da7c2593c +size 164403 diff --git a/datasets/handleImage/train/订单1807462_51_7115731.jpg b/datasets/handleImage/train/订单1807462_51_7115731.jpg new file mode 100644 index 0000000..074c42c --- /dev/null +++ b/datasets/handleImage/train/订单1807462_51_7115731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d69084f7c63272f0cbb534280a00bd303d9daf48e9d9d071e4ceb0c4548db8 +size 156761 diff --git a/datasets/handleImage/train/订单1807463_51_7115739.jpg b/datasets/handleImage/train/订单1807463_51_7115739.jpg new file mode 100644 index 0000000..d4ca982 --- /dev/null +++ b/datasets/handleImage/train/订单1807463_51_7115739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf2f4c6ee10b3100cbd32ef7fcfcc259c92bb597282061d670c1de7ce396136 +size 143384 diff --git a/datasets/handleImage/train/订单1807466_51_7115795.jpg b/datasets/handleImage/train/订单1807466_51_7115795.jpg new file mode 100644 index 0000000..9073c31 --- /dev/null +++ b/datasets/handleImage/train/订单1807466_51_7115795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0c0d70d01c54447a96896335cdfa0e77202ab3f849df9d59f72a3a24edb922 +size 191494 diff --git a/datasets/handleImage/train/订单1807471_51_7116054.jpg b/datasets/handleImage/train/订单1807471_51_7116054.jpg new file mode 100644 index 0000000..61a1e67 --- /dev/null +++ b/datasets/handleImage/train/订单1807471_51_7116054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a93f451c3ede3f05dd33750f4692eb6be80be5c3def7feb12d5af2b8b89d194 +size 96829 diff --git a/datasets/handleImage/train/订单1807472_51_7115781.jpg b/datasets/handleImage/train/订单1807472_51_7115781.jpg new file mode 100644 index 0000000..17204c6 --- /dev/null +++ b/datasets/handleImage/train/订单1807472_51_7115781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282f83b30cb02ba374ebe755cda9d68fd7e2972729bfdf6e99619a89c6139586 +size 139890 diff --git a/datasets/handleImage/train/订单1807473_51_7115861.jpg b/datasets/handleImage/train/订单1807473_51_7115861.jpg new file mode 100644 index 0000000..5e4789b --- /dev/null +++ b/datasets/handleImage/train/订单1807473_51_7115861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573309a246a85f43b13c29e52d4a0f59dd10b04c4e806f95a3d14951516bb12f +size 355565 diff --git a/datasets/handleImage/train/订单1807474_51_7115810.jpg b/datasets/handleImage/train/订单1807474_51_7115810.jpg new file mode 100644 index 0000000..e02085b --- /dev/null +++ b/datasets/handleImage/train/订单1807474_51_7115810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf4523a8dd27a465aabd81a3c62905102652359247567d1d62f2081b18449fe +size 88364 diff --git a/datasets/handleImage/train/订单1807475_51_7115914.jpg b/datasets/handleImage/train/订单1807475_51_7115914.jpg new file mode 100644 index 0000000..3978f0a --- /dev/null +++ b/datasets/handleImage/train/订单1807475_51_7115914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202b6caaaaa90122651d0983a06bc091947413e731ad86150cd430c61859ffad +size 125066 diff --git a/datasets/handleImage/train/订单1807476_51_7115863.jpg b/datasets/handleImage/train/订单1807476_51_7115863.jpg new file mode 100644 index 0000000..6075952 --- /dev/null +++ b/datasets/handleImage/train/订单1807476_51_7115863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5209bef95f85660db33cbf4e9342dbaf834de223e25c9df113efeb549daaeda +size 475842 diff --git a/datasets/handleImage/train/订单1807478_51_7115862.jpg b/datasets/handleImage/train/订单1807478_51_7115862.jpg new file mode 100644 index 0000000..0dc9a0d --- /dev/null +++ b/datasets/handleImage/train/订单1807478_51_7115862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5ecc691706fe6d68a4677df07188423df2cf47b893e68700c0b1dea32b3aa7 +size 151502 diff --git a/datasets/handleImage/train/订单1807479_51_7115927.jpg b/datasets/handleImage/train/订单1807479_51_7115927.jpg new file mode 100644 index 0000000..d103dbf --- /dev/null +++ b/datasets/handleImage/train/订单1807479_51_7115927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26dc78fa4d093f2e490b3bad81a3cbf026b3e55822834531d0a9c9d41e7c3e7 +size 573034 diff --git a/datasets/handleImage/train/订单1807481_51_7115895.jpg b/datasets/handleImage/train/订单1807481_51_7115895.jpg new file mode 100644 index 0000000..77016bf --- /dev/null +++ b/datasets/handleImage/train/订单1807481_51_7115895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d81cb3d46f63e460b70bc0ff15654839a6521e0710ac43566192153c272101c +size 172075 diff --git a/datasets/handleImage/train/订单1807483_51_7116022.jpg b/datasets/handleImage/train/订单1807483_51_7116022.jpg new file mode 100644 index 0000000..1fe0ef7 --- /dev/null +++ b/datasets/handleImage/train/订单1807483_51_7116022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c223d99d8826f2ae296b7de01dd696888b9ec68011ebcf7f0f9526f3c38bed9 +size 66470 diff --git a/datasets/handleImage/train/订单1807487_51_7115978.jpg b/datasets/handleImage/train/订单1807487_51_7115978.jpg new file mode 100644 index 0000000..e639a61 --- /dev/null +++ b/datasets/handleImage/train/订单1807487_51_7115978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99493fd87ed9af86a10221605c498af6ee761796f803557d44577bb0e2490104 +size 44215 diff --git a/datasets/handleImage/train/订单1807489_51_7115997.jpg b/datasets/handleImage/train/订单1807489_51_7115997.jpg new file mode 100644 index 0000000..37fa6fc --- /dev/null +++ b/datasets/handleImage/train/订单1807489_51_7115997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987dcaf98450daa7cf01ce03b092cae2b5df14ec7061cc36a3e1ba69f399451c +size 500456 diff --git a/datasets/handleImage/train/订单1807495_51_7116081.jpg b/datasets/handleImage/train/订单1807495_51_7116081.jpg new file mode 100644 index 0000000..f4cec77 --- /dev/null +++ b/datasets/handleImage/train/订单1807495_51_7116081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc539ba0b1d5ec758eb46ff930df83537f79108ae0e6df3082c975a887df4bf +size 139175 diff --git a/datasets/handleImage/train/订单1807496_51_7116067.jpg b/datasets/handleImage/train/订单1807496_51_7116067.jpg new file mode 100644 index 0000000..3a6819b --- /dev/null +++ b/datasets/handleImage/train/订单1807496_51_7116067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b232f7c1a37938e2409f756108017d2d6827ea7a54d2f9406cb42d73ecd795 +size 197873 diff --git a/datasets/handleImage/train/订单1807497_51_7116086.jpg b/datasets/handleImage/train/订单1807497_51_7116086.jpg new file mode 100644 index 0000000..d78db8b --- /dev/null +++ b/datasets/handleImage/train/订单1807497_51_7116086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da28492447b3b660a4ca30390d898628b4ce8bdf8b9481192efca6a30077998 +size 119268 diff --git a/datasets/pinganmajia/.DS_Store b/datasets/pinganmajia/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/pinganmajia/.DS_Store differ diff --git a/datasets/pinganmajia/data.yaml b/datasets/pinganmajia/data.yaml new file mode 100644 index 0000000..6ca8e71 --- /dev/null +++ b/datasets/pinganmajia/data.yaml @@ -0,0 +1,5 @@ +path: F:\Environment\phpstudy_pro\WWW\JJCarDetection\datasets\pinganmajia +train: F:\Environment\phpstudy_pro\WWW\JJCarDetection\datasets\pinganmajia\train\images +val: F:\Environment\phpstudy_pro\WWW\JJCarDetection\datasets\pinganmajia\val\images +nc: 6 +names: ['da_dian_xian','tuo_che_shang_you_che','yi_biao_pan','lun_tai','ping_an_ma_jia','jian_ce_yi'] \ No newline at end of file diff --git a/datasets/pinganmajia/train/.DS_Store b/datasets/pinganmajia/train/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/pinganmajia/train/.DS_Store differ diff --git a/datasets/pinganmajia/train/classes.txt b/datasets/pinganmajia/train/classes.txt new file mode 100644 index 0000000..27396f4 --- /dev/null +++ b/datasets/pinganmajia/train/classes.txt @@ -0,0 +1 @@ +ping_an_ma_jia \ No newline at end of file diff --git a/datasets/pinganmajia/train/images/订单1812747_4_7164565.jpg b/datasets/pinganmajia/train/images/订单1812747_4_7164565.jpg new file mode 100644 index 0000000..470e6cc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812747_4_7164565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3322b6df780ec870f2e339dc24cd52b64e818fd39932fef69a6750f406f33784 +size 116698 diff --git a/datasets/pinganmajia/train/images/订单1812748_4_7164570.jpg b/datasets/pinganmajia/train/images/订单1812748_4_7164570.jpg new file mode 100644 index 0000000..e4283ba --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812748_4_7164570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49de3ed8b639127b6c7d4692ac493cae9d7cd5e9132906475f60b7529625b42a +size 130791 diff --git a/datasets/pinganmajia/train/images/订单1812750_4_7164563.jpg b/datasets/pinganmajia/train/images/订单1812750_4_7164563.jpg new file mode 100644 index 0000000..851b86a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812750_4_7164563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ec71f9296efa0c32e7eb288450018b26c728f2bedc576c02b8ecbb523953fd +size 74897 diff --git a/datasets/pinganmajia/train/images/订单1812751_4_7164601.jpg b/datasets/pinganmajia/train/images/订单1812751_4_7164601.jpg new file mode 100644 index 0000000..05d4aff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812751_4_7164601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5bbfccfe81e0ccc3f7670556ae69e9043ddce0e7a689ef92279e250870686c +size 120978 diff --git a/datasets/pinganmajia/train/images/订单1812752_4_7164582.jpg b/datasets/pinganmajia/train/images/订单1812752_4_7164582.jpg new file mode 100644 index 0000000..df4f982 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812752_4_7164582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb669611a6ad2227a35a6f2511094122f6d922a6e4085fe9c0dea7bbcf2baf32 +size 140947 diff --git a/datasets/pinganmajia/train/images/订单1812753_4_7164619.jpg b/datasets/pinganmajia/train/images/订单1812753_4_7164619.jpg new file mode 100644 index 0000000..ba7db1b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812753_4_7164619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54150f4f279635ae3a6e15d8d80c2f1e55a994f5ef27d11939de908f925a3bfb +size 401639 diff --git a/datasets/pinganmajia/train/images/订单1812755_4_7164778.jpg b/datasets/pinganmajia/train/images/订单1812755_4_7164778.jpg new file mode 100644 index 0000000..d70c5a8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812755_4_7164778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57090029a2d0fd23325650c790d15b035d17a4e5e10151e61f81bc3ecb87c099 +size 314274 diff --git a/datasets/pinganmajia/train/images/订单1812759_4_7164641.jpg b/datasets/pinganmajia/train/images/订单1812759_4_7164641.jpg new file mode 100644 index 0000000..4772810 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812759_4_7164641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b39cb3ea8000c4153fd0622fb67791d0b250891ebcc49a951e9d4f5ba49956 +size 329546 diff --git a/datasets/pinganmajia/train/images/订单1812760_4_7164644.jpg b/datasets/pinganmajia/train/images/订单1812760_4_7164644.jpg new file mode 100644 index 0000000..46f0c59 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812760_4_7164644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f379f4ab1dac769a17f4aab8a9ae937321b6f36c46a26e58fe0af8b443d6644 +size 394966 diff --git a/datasets/pinganmajia/train/images/订单1812761_4_7164670.jpg b/datasets/pinganmajia/train/images/订单1812761_4_7164670.jpg new file mode 100644 index 0000000..af7fef0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812761_4_7164670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b510650542ac84bf054963b5a458c10bb504e454f19fc4063063cc1e9a2a02e +size 164081 diff --git a/datasets/pinganmajia/train/images/订单1812762_4_7164672.jpg b/datasets/pinganmajia/train/images/订单1812762_4_7164672.jpg new file mode 100644 index 0000000..d567d13 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812762_4_7164672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfac42f3672b8fcd990faf32c43e94fd53f971ee5cf1b0990bea4a1c9ea2e39 +size 119336 diff --git a/datasets/pinganmajia/train/images/订单1812763_4_7164623.jpg b/datasets/pinganmajia/train/images/订单1812763_4_7164623.jpg new file mode 100644 index 0000000..8548ff5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812763_4_7164623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47895ea9aebf389d8e84324ded4d485282520bde9f2cdf1d5977f885a47e7ad4 +size 143328 diff --git a/datasets/pinganmajia/train/images/订单1812764_4_7164865.jpg b/datasets/pinganmajia/train/images/订单1812764_4_7164865.jpg new file mode 100644 index 0000000..a8c4cfe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812764_4_7164865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6ed816173c648e41c7485eec809003c1cf3a255b8adc6adb3d2016dab8d7c7 +size 2561694 diff --git a/datasets/pinganmajia/train/images/订单1812766_4_7164632.jpg b/datasets/pinganmajia/train/images/订单1812766_4_7164632.jpg new file mode 100644 index 0000000..8f92206 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812766_4_7164632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24cfa20ccaf9cebea454e9ec88da09270e3a7a942598f6594b1aac5357bfd352 +size 392948 diff --git a/datasets/pinganmajia/train/images/订单1812767_4_7164710.jpg b/datasets/pinganmajia/train/images/订单1812767_4_7164710.jpg new file mode 100644 index 0000000..dfa6861 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812767_4_7164710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915dae84066aae6a5a15d86da41a3a145dd43ae11343599b2433f4fff01d5a8c +size 293128 diff --git a/datasets/pinganmajia/train/images/订单1812768_4_7164724.jpg b/datasets/pinganmajia/train/images/订单1812768_4_7164724.jpg new file mode 100644 index 0000000..75fd051 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812768_4_7164724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb48da49a3407260f3e1be3bcccb674988334b8c8ca27762939cdf61e189f788 +size 288164 diff --git a/datasets/pinganmajia/train/images/订单1812769_4_7164744.jpg b/datasets/pinganmajia/train/images/订单1812769_4_7164744.jpg new file mode 100644 index 0000000..5120b8b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812769_4_7164744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab79fec5209a38c92a147511f6bbb50bdec4964d603d908a9cceea6cdc7fcfc9 +size 485716 diff --git a/datasets/pinganmajia/train/images/订单1812771_4_7164769.jpg b/datasets/pinganmajia/train/images/订单1812771_4_7164769.jpg new file mode 100644 index 0000000..6d9b584 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812771_4_7164769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64a6220dad7af663091fc65fed263a3fd4e84e66dcbad85666dd7f47c391c7a +size 122513 diff --git a/datasets/pinganmajia/train/images/订单1812772_4_7164842.jpg b/datasets/pinganmajia/train/images/订单1812772_4_7164842.jpg new file mode 100644 index 0000000..d1d1461 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812772_4_7164842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105c32168996e48c9d2a52941178ce138de58b2101df969469173d676563d8c0 +size 285838 diff --git a/datasets/pinganmajia/train/images/订单1812774_4_7164758.jpg b/datasets/pinganmajia/train/images/订单1812774_4_7164758.jpg new file mode 100644 index 0000000..a0161e6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812774_4_7164758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de76e6c7a14febf73101155980fcaa5614376badf6afb6c3fbe3e346f863aac +size 196327 diff --git a/datasets/pinganmajia/train/images/订单1812775_4_7164780.jpg b/datasets/pinganmajia/train/images/订单1812775_4_7164780.jpg new file mode 100644 index 0000000..2fefdcc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812775_4_7164780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380e03e70c5bd03ad417f4c3aaaac0f453374b75d2fd40f83bc1f7a1c249657a +size 107041 diff --git a/datasets/pinganmajia/train/images/订单1812777_4_7164796.jpg b/datasets/pinganmajia/train/images/订单1812777_4_7164796.jpg new file mode 100644 index 0000000..6880838 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812777_4_7164796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebdf9777f4fbdbb416a74fb359a9e220b14ad575ac8f056a9d4d4d6ef891aff +size 317407 diff --git a/datasets/pinganmajia/train/images/订单1812778_4_7164821.jpg b/datasets/pinganmajia/train/images/订单1812778_4_7164821.jpg new file mode 100644 index 0000000..2914c09 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812778_4_7164821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a761df41a174c683034c7fd7f230cc2077dc17709e47ef6b0effb890969d9c0 +size 125292 diff --git a/datasets/pinganmajia/train/images/订单1812781_4_7164814.jpg b/datasets/pinganmajia/train/images/订单1812781_4_7164814.jpg new file mode 100644 index 0000000..cbcbe67 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812781_4_7164814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03fd469000c985bb08b89d985a37cfd5521829051728a50f249f1325a45a0cc +size 191071 diff --git a/datasets/pinganmajia/train/images/订单1812784_4_7164848.jpg b/datasets/pinganmajia/train/images/订单1812784_4_7164848.jpg new file mode 100644 index 0000000..be64c56 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812784_4_7164848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0dd7b2f928e69530710bdba557df9b6ad06db3d26d8ef6f33374a190ebdbb58 +size 68730 diff --git a/datasets/pinganmajia/train/images/订单1812785_4_7164913.jpg b/datasets/pinganmajia/train/images/订单1812785_4_7164913.jpg new file mode 100644 index 0000000..99fe65e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812785_4_7164913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a8ba564b4284cdabaaa340a2c52a377738b0e86d65b6101a8fc99a2532bd0d +size 493121 diff --git a/datasets/pinganmajia/train/images/订单1812786_4_7164903.jpg b/datasets/pinganmajia/train/images/订单1812786_4_7164903.jpg new file mode 100644 index 0000000..020d894 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812786_4_7164903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74a356e5d11c25918a15cc4f9715dc0a102d0e5923eb9a4172c300ddb5d3d74 +size 88640 diff --git a/datasets/pinganmajia/train/images/订单1812789_4_7165059.jpg b/datasets/pinganmajia/train/images/订单1812789_4_7165059.jpg new file mode 100644 index 0000000..8a6f364 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812789_4_7165059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13aedf15ead627b551231ca26e5751df5b7964544e2a2f67951359726b071539 +size 108858 diff --git a/datasets/pinganmajia/train/images/订单1812790_4_7164991.jpg b/datasets/pinganmajia/train/images/订单1812790_4_7164991.jpg new file mode 100644 index 0000000..4c3f557 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812790_4_7164991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1258e1312a00d4fa80e0e001381055c7efb3cbe6e1af2eacf031dab4ee4fb89a +size 1799848 diff --git a/datasets/pinganmajia/train/images/订单1812791_4_7164958.jpg b/datasets/pinganmajia/train/images/订单1812791_4_7164958.jpg new file mode 100644 index 0000000..5b123af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812791_4_7164958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab08aa68b8a3a84baf1f73bdee70090be9279c52780a2939d80ae459a8443dce +size 133753 diff --git a/datasets/pinganmajia/train/images/订单1812792_4_7164997.jpg b/datasets/pinganmajia/train/images/订单1812792_4_7164997.jpg new file mode 100644 index 0000000..89d6849 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812792_4_7164997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2fbf96e029cf1cd5180ea0a023d0fd71ef621a83e7bd2b539519e9d9caea42e +size 149361 diff --git a/datasets/pinganmajia/train/images/订单1812794_4_7164955.jpg b/datasets/pinganmajia/train/images/订单1812794_4_7164955.jpg new file mode 100644 index 0000000..b8b0846 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812794_4_7164955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7071cd0903543adb5101181a4a610ca5b65751c838c183779df82a47b0fc3553 +size 80576 diff --git a/datasets/pinganmajia/train/images/订单1812797_4_7165010.jpg b/datasets/pinganmajia/train/images/订单1812797_4_7165010.jpg new file mode 100644 index 0000000..3a50314 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812797_4_7165010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e64e95af6115b436bc8707d7a36e62bb7f77895e1905afe3e407e08dbe73a17 +size 113346 diff --git a/datasets/pinganmajia/train/images/订单1812798_4_7165022.jpg b/datasets/pinganmajia/train/images/订单1812798_4_7165022.jpg new file mode 100644 index 0000000..429b87d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812798_4_7165022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88f17e7c24814f6587d44bd5480597547097d2ef2ad4b4e78e47f1d3b677dc0 +size 454045 diff --git a/datasets/pinganmajia/train/images/订单1812800_4_7165037.jpg b/datasets/pinganmajia/train/images/订单1812800_4_7165037.jpg new file mode 100644 index 0000000..9725cea --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812800_4_7165037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703286bfd67378656d2844680bcdf4e7e415fee75681152d11bbfead1f2ca8fe +size 192670 diff --git a/datasets/pinganmajia/train/images/订单1812801_4_7165050.jpg b/datasets/pinganmajia/train/images/订单1812801_4_7165050.jpg new file mode 100644 index 0000000..9801568 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812801_4_7165050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0768dc2e6cef9f5aea1c0001afa714fb44f6271d3a9b4a07f9f198dbce9ac9 +size 58363 diff --git a/datasets/pinganmajia/train/images/订单1812805_4_7165073.jpg b/datasets/pinganmajia/train/images/订单1812805_4_7165073.jpg new file mode 100644 index 0000000..2c44f3e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812805_4_7165073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8aae55a6ca7023776cce5a606d5e4c32d52526ce9564be6866f41799bb5dbe +size 52287 diff --git a/datasets/pinganmajia/train/images/订单1812806_4_7165100.jpg b/datasets/pinganmajia/train/images/订单1812806_4_7165100.jpg new file mode 100644 index 0000000..6a50ae0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812806_4_7165100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77a019a147e056c0621827c3b5f3d8647190e5531f15864a163121e3259bed1 +size 74470 diff --git a/datasets/pinganmajia/train/images/订单1812810_4_7165119.jpg b/datasets/pinganmajia/train/images/订单1812810_4_7165119.jpg new file mode 100644 index 0000000..9765198 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812810_4_7165119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b75536d2dad158fd60aa35910b2097afd0790265145a4a24cf38251f0a58855 +size 79165 diff --git a/datasets/pinganmajia/train/images/订单1812814_4_7165128.jpg b/datasets/pinganmajia/train/images/订单1812814_4_7165128.jpg new file mode 100644 index 0000000..4c1743b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812814_4_7165128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73da558aacc2ad035b7a30e8dbba4595fca173d0f3445cae9802560f60597c3a +size 166772 diff --git a/datasets/pinganmajia/train/images/订单1812816_4_7165171.jpg b/datasets/pinganmajia/train/images/订单1812816_4_7165171.jpg new file mode 100644 index 0000000..bd13ff2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812816_4_7165171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf01042c90f17a561e151e60db32550e70fcea24247f3cc16e9f3f62a12f2a20 +size 71997 diff --git a/datasets/pinganmajia/train/images/订单1812818_4_7165196.jpg b/datasets/pinganmajia/train/images/订单1812818_4_7165196.jpg new file mode 100644 index 0000000..a86eef9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812818_4_7165196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640395e45fb6c9c703e2cc0ac455f474df40818be3158d8f81b35d9823fbf6c7 +size 127437 diff --git a/datasets/pinganmajia/train/images/订单1812820_4_7165200.jpg b/datasets/pinganmajia/train/images/订单1812820_4_7165200.jpg new file mode 100644 index 0000000..7863879 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812820_4_7165200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11dd1a55293d38f0a373a673691885ab650744a352332b15e91bc9542d473fdf +size 189994 diff --git a/datasets/pinganmajia/train/images/订单1812821_4_7165186.jpg b/datasets/pinganmajia/train/images/订单1812821_4_7165186.jpg new file mode 100644 index 0000000..b934c46 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812821_4_7165186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d09493b935fcac57b7a6df9b376356b4d8a4f4e05bb74f1bf2c6f1de32d092 +size 109952 diff --git a/datasets/pinganmajia/train/images/订单1812823_4_7165228.jpg b/datasets/pinganmajia/train/images/订单1812823_4_7165228.jpg new file mode 100644 index 0000000..a6b997b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812823_4_7165228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55107590a3630ceab4c3ffdbbbc101ceae3751d0211f9bc67968c2453dadb90 +size 153225 diff --git a/datasets/pinganmajia/train/images/订单1812824_4_7165260.jpg b/datasets/pinganmajia/train/images/订单1812824_4_7165260.jpg new file mode 100644 index 0000000..3ec54a1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812824_4_7165260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac1fb5c7ed107df74376a2c197d8d24df9b5d89b28f0e34818d8309aba179b1 +size 79798 diff --git a/datasets/pinganmajia/train/images/订单1812825_4_7165347.jpg b/datasets/pinganmajia/train/images/订单1812825_4_7165347.jpg new file mode 100644 index 0000000..dd1350d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812825_4_7165347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5ff6548d56d57fdb513821117995fbce0ad4838530b80666da8447f31466a5 +size 390088 diff --git a/datasets/pinganmajia/train/images/订单1812826_4_7165219.jpg b/datasets/pinganmajia/train/images/订单1812826_4_7165219.jpg new file mode 100644 index 0000000..2729805 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812826_4_7165219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5912166ff1b77420788a06c5863ccc4b8c01099779ef687218042b85b278add1 +size 140651 diff --git a/datasets/pinganmajia/train/images/订单1812827_4_7165287.jpg b/datasets/pinganmajia/train/images/订单1812827_4_7165287.jpg new file mode 100644 index 0000000..127fd49 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812827_4_7165287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b8a514e97fadf914f0565c28e1d27bb3a277527d4f552ad4cfbe29d9093251 +size 488502 diff --git a/datasets/pinganmajia/train/images/订单1812829_4_7165244.jpg b/datasets/pinganmajia/train/images/订单1812829_4_7165244.jpg new file mode 100644 index 0000000..3ea943a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812829_4_7165244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde21b659a1f431d38f58b28f618a420b2808ef56289e00858bc55196e21c1d4 +size 182787 diff --git a/datasets/pinganmajia/train/images/订单1812830_4_7165286.jpg b/datasets/pinganmajia/train/images/订单1812830_4_7165286.jpg new file mode 100644 index 0000000..422952d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812830_4_7165286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1a05ddc76f23f9ead64b9a3cf6e44e96a4c133721f8d72692f3ecd88f47c1e +size 502349 diff --git a/datasets/pinganmajia/train/images/订单1812831_4_7165383.jpg b/datasets/pinganmajia/train/images/订单1812831_4_7165383.jpg new file mode 100644 index 0000000..348f1ee --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812831_4_7165383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56e131787b1d1b022c79c805e5c80e71f0c40e388cb4870a9aae993dccb5bd8 +size 168151 diff --git a/datasets/pinganmajia/train/images/订单1812832_4_7165384.jpg b/datasets/pinganmajia/train/images/订单1812832_4_7165384.jpg new file mode 100644 index 0000000..7028a78 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812832_4_7165384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e592f69a0f0387805e150702aec5de8ef6f85e5e84b79ad5a1024232ef39ce +size 104330 diff --git a/datasets/pinganmajia/train/images/订单1812833_4_7165277.jpg b/datasets/pinganmajia/train/images/订单1812833_4_7165277.jpg new file mode 100644 index 0000000..7cd14b2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812833_4_7165277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57473b02f9d8313a99bf7adfd7966f8b3ce5228d05cbd2c4e72f1084071a4543 +size 143619 diff --git a/datasets/pinganmajia/train/images/订单1812834_4_7165317.jpg b/datasets/pinganmajia/train/images/订单1812834_4_7165317.jpg new file mode 100644 index 0000000..edd6610 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812834_4_7165317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3210a614e45cbf7158c02e2db81160d04348bb8e88019771ec095dbee4b4f141 +size 79627 diff --git a/datasets/pinganmajia/train/images/订单1812836_4_7165306.jpg b/datasets/pinganmajia/train/images/订单1812836_4_7165306.jpg new file mode 100644 index 0000000..3c05289 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812836_4_7165306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a9cab3c46755c29dc84b7ff7ce65b00f6b2aa119dd1e99b798eb3b590d317e +size 173748 diff --git a/datasets/pinganmajia/train/images/订单1812837_4_7165590.jpg b/datasets/pinganmajia/train/images/订单1812837_4_7165590.jpg new file mode 100644 index 0000000..a1fc2df --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812837_4_7165590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910367aa92686b2324c38af85c348ebcb0d841166cc9ab844636a6f227103d2c +size 155025 diff --git a/datasets/pinganmajia/train/images/订单1812838_4_7165341.jpg b/datasets/pinganmajia/train/images/订单1812838_4_7165341.jpg new file mode 100644 index 0000000..72582ae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812838_4_7165341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d558db58555e075df818439933cff1fd8a06b90d0d4f344bd4463112f79cd691 +size 551924 diff --git a/datasets/pinganmajia/train/images/订单1812839_4_7165371.jpg b/datasets/pinganmajia/train/images/订单1812839_4_7165371.jpg new file mode 100644 index 0000000..bb38e41 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812839_4_7165371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f089de59dcfbdf1f4f6006be7193982e532e6c5934918b7bd47591de5ba597 +size 537212 diff --git a/datasets/pinganmajia/train/images/订单1812840_4_7165291.jpg b/datasets/pinganmajia/train/images/订单1812840_4_7165291.jpg new file mode 100644 index 0000000..f43f8d5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812840_4_7165291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374c5767bf9264486a80ca2178e76dbca801bbad1cc7e90809b074208ff03a89 +size 107240 diff --git a/datasets/pinganmajia/train/images/订单1812841_4_7165364.jpg b/datasets/pinganmajia/train/images/订单1812841_4_7165364.jpg new file mode 100644 index 0000000..f8c742f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812841_4_7165364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385cba340937f88b04a4b7da69e65dd9c80cb6b59ae9ec3dfb16023bfed4fbfc +size 113591 diff --git a/datasets/pinganmajia/train/images/订单1812842_4_7165376.jpg b/datasets/pinganmajia/train/images/订单1812842_4_7165376.jpg new file mode 100644 index 0000000..582f0aa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812842_4_7165376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b09e486ef16b11a2e23794f9622e61390a80adfb2266cdc1ea9742cf9a0ab43 +size 169109 diff --git a/datasets/pinganmajia/train/images/订单1812843_4_7165418.jpg b/datasets/pinganmajia/train/images/订单1812843_4_7165418.jpg new file mode 100644 index 0000000..99fb46c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812843_4_7165418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5df81a7b6fc3caf1ddae38d6f0850a3c7d9eada5bcf0fd033aae7b257b7e5e +size 182464 diff --git a/datasets/pinganmajia/train/images/订单1812844_4_7165403.jpg b/datasets/pinganmajia/train/images/订单1812844_4_7165403.jpg new file mode 100644 index 0000000..5dcaadb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812844_4_7165403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61db6afa6906a61adcda5e662f167c98762976518a1ffae0396da21b95d03b7 +size 137772 diff --git a/datasets/pinganmajia/train/images/订单1812845_4_7165460.jpg b/datasets/pinganmajia/train/images/订单1812845_4_7165460.jpg new file mode 100644 index 0000000..89d1c44 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812845_4_7165460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21292be5ded3d8f0238bb85fcc8fce335196c18854ee1ab481720aa07eebe975 +size 40251 diff --git a/datasets/pinganmajia/train/images/订单1812846_4_7165437.jpg b/datasets/pinganmajia/train/images/订单1812846_4_7165437.jpg new file mode 100644 index 0000000..78e1834 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812846_4_7165437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9402b51cab03b355f56fb93e76771df30c0da4e40b11a13ff70494a83592c84 +size 85404 diff --git a/datasets/pinganmajia/train/images/订单1812849_4_7165457.jpg b/datasets/pinganmajia/train/images/订单1812849_4_7165457.jpg new file mode 100644 index 0000000..e5ff072 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812849_4_7165457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b5728e4fbb551d60abeeb821b5c663d3607de2d88906069f3e632277642861f +size 113495 diff --git a/datasets/pinganmajia/train/images/订单1812850_4_7165468.jpg b/datasets/pinganmajia/train/images/订单1812850_4_7165468.jpg new file mode 100644 index 0000000..8e9ac48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812850_4_7165468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe1147c6a11aae5322f9e226537970863e582cbd342953a047280c92a9d1ea5 +size 99384 diff --git a/datasets/pinganmajia/train/images/订单1812851_4_7165521.jpg b/datasets/pinganmajia/train/images/订单1812851_4_7165521.jpg new file mode 100644 index 0000000..c38ff69 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812851_4_7165521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d87d1b08e60db445703c5acc2a93467b18dcfe9dca335afa2b5e8361b87c9f0 +size 145364 diff --git a/datasets/pinganmajia/train/images/订单1812853_4_7165501.jpg b/datasets/pinganmajia/train/images/订单1812853_4_7165501.jpg new file mode 100644 index 0000000..be632a2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812853_4_7165501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ad7b49f27d8c81c39cfe856f6f552bc107f3fe3168b81ee53b209f7943cf01 +size 239461 diff --git a/datasets/pinganmajia/train/images/订单1812855_4_7165473.jpg b/datasets/pinganmajia/train/images/订单1812855_4_7165473.jpg new file mode 100644 index 0000000..e82a554 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812855_4_7165473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851233f17367879924709abb34731ff2246eaf2f4f6bae185185bb282c8d8885 +size 157037 diff --git a/datasets/pinganmajia/train/images/订单1812856_4_7165609.jpg b/datasets/pinganmajia/train/images/订单1812856_4_7165609.jpg new file mode 100644 index 0000000..86df24e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812856_4_7165609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363814bbe0e8f4d0dffec7ff6b3178bebe1e91f210ad84b722ecc4e96f4953f5 +size 152784 diff --git a/datasets/pinganmajia/train/images/订单1812857_4_7165573.jpg b/datasets/pinganmajia/train/images/订单1812857_4_7165573.jpg new file mode 100644 index 0000000..d965e6e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812857_4_7165573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b7a301a5cbf21659a5ac8977f47718b9dd279b18bfe39426633c8aa4ab93e4 +size 140946 diff --git a/datasets/pinganmajia/train/images/订单1812858_4_7165632.jpg b/datasets/pinganmajia/train/images/订单1812858_4_7165632.jpg new file mode 100644 index 0000000..2a93cb4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812858_4_7165632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5220a03a09bfd25cb760faca7499cd936e385a278be62bea7e58b2bf41d1bb +size 115949 diff --git a/datasets/pinganmajia/train/images/订单1812860_4_7165548.jpg b/datasets/pinganmajia/train/images/订单1812860_4_7165548.jpg new file mode 100644 index 0000000..4fcd2c3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812860_4_7165548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d850d9ca839ac93b5a9d4bad3b0b4bcc2e51ce74f8c6b674f86af4cebffedf5 +size 80410 diff --git a/datasets/pinganmajia/train/images/订单1812861_4_7165483.jpg b/datasets/pinganmajia/train/images/订单1812861_4_7165483.jpg new file mode 100644 index 0000000..923a1ef --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812861_4_7165483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4841f5cdb12424cd40fa5eb060b2b32e4300aa70fa13b0edd6edf0b725c74a57 +size 212351 diff --git a/datasets/pinganmajia/train/images/订单1812862_4_7165603.jpg b/datasets/pinganmajia/train/images/订单1812862_4_7165603.jpg new file mode 100644 index 0000000..d868c0f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812862_4_7165603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1af7406d898ede8265dcdaca1fe10e7ab75e8289a2832a874b03acdaf4548f0 +size 584040 diff --git a/datasets/pinganmajia/train/images/订单1812863_4_7165551.jpg b/datasets/pinganmajia/train/images/订单1812863_4_7165551.jpg new file mode 100644 index 0000000..76de4c5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812863_4_7165551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8013d405d885f1f31486ebac1786be5a5d0df811e7f35170235e914484786542 +size 117522 diff --git a/datasets/pinganmajia/train/images/订单1812864_4_7165591.jpg b/datasets/pinganmajia/train/images/订单1812864_4_7165591.jpg new file mode 100644 index 0000000..95c8c74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812864_4_7165591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca4d1525b7cfb99a6f4df36bc26c1c821dfcd807369e4cb295c54c3501c916d +size 102726 diff --git a/datasets/pinganmajia/train/images/订单1812865_4_7165510.jpg b/datasets/pinganmajia/train/images/订单1812865_4_7165510.jpg new file mode 100644 index 0000000..122c37c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812865_4_7165510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29e56ece2fcadbfe7a09a2c26663dbdf18813d1c74787d5d3023d4df07ea70b +size 154511 diff --git a/datasets/pinganmajia/train/images/订单1812866_4_7165712.jpg b/datasets/pinganmajia/train/images/订单1812866_4_7165712.jpg new file mode 100644 index 0000000..f87fbc8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812866_4_7165712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752b470fa30f3482a55e388929747c23b56747a2595d7191ab530f0eff0b86a6 +size 340691 diff --git a/datasets/pinganmajia/train/images/订单1812868_4_7165700.jpg b/datasets/pinganmajia/train/images/订单1812868_4_7165700.jpg new file mode 100644 index 0000000..2ee5f84 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812868_4_7165700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5cfbeaa641817f907cc2a8c010d6a452e4668f862c88a593d4b020f141bdd07 +size 86999 diff --git a/datasets/pinganmajia/train/images/订单1812870_4_7165597.jpg b/datasets/pinganmajia/train/images/订单1812870_4_7165597.jpg new file mode 100644 index 0000000..2438a96 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812870_4_7165597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac14fa3eebf9ae84f78503624be640522c35217149ff2ff42905949ebb3aac5 +size 129086 diff --git a/datasets/pinganmajia/train/images/订单1812871_4_7166791.jpg b/datasets/pinganmajia/train/images/订单1812871_4_7166791.jpg new file mode 100644 index 0000000..e9a61a0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812871_4_7166791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8cab99a3c206618241bd48908eef2e884a95426b96aea04780bab6f237ee17 +size 78940 diff --git a/datasets/pinganmajia/train/images/订单1812872_4_7165858.jpg b/datasets/pinganmajia/train/images/订单1812872_4_7165858.jpg new file mode 100644 index 0000000..73a5f47 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812872_4_7165858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3f4dd99ec49df4934811720921697af7acbe3edee811348eb8b4813cdd3ac0 +size 608915 diff --git a/datasets/pinganmajia/train/images/订单1812875_4_7165668.jpg b/datasets/pinganmajia/train/images/订单1812875_4_7165668.jpg new file mode 100644 index 0000000..7c9076c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812875_4_7165668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ff8192b9aff797cb78c7d7055f0310307765c2db0c123ce5bf9a54e65b4d67 +size 83715 diff --git a/datasets/pinganmajia/train/images/订单1812877_4_7165723.jpg b/datasets/pinganmajia/train/images/订单1812877_4_7165723.jpg new file mode 100644 index 0000000..592cbc9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812877_4_7165723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45c3fda8f9e52c778bc487f773de3ed5ff5aa59a138c0464ad89e5479c029ca +size 89952 diff --git a/datasets/pinganmajia/train/images/订单1812878_4_7165628.jpg b/datasets/pinganmajia/train/images/订单1812878_4_7165628.jpg new file mode 100644 index 0000000..bf5efc3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812878_4_7165628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463015e53a860218964d17fb27c182ba0b24a4a24fa29d68830491cba03c8cdd +size 259147 diff --git a/datasets/pinganmajia/train/images/订单1812879_4_7165617.jpg b/datasets/pinganmajia/train/images/订单1812879_4_7165617.jpg new file mode 100644 index 0000000..f05cd7e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812879_4_7165617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0126e5d5301cadfa8ff26cdcc9b9fd48f43d0b558d49e7942bd4899ff282767f +size 306559 diff --git a/datasets/pinganmajia/train/images/订单1812881_4_7166379.jpg b/datasets/pinganmajia/train/images/订单1812881_4_7166379.jpg new file mode 100644 index 0000000..8132c3e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812881_4_7166379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a3ecdc3849a7d28570f4ebc9b59e77263cbdf00b9555d263679646710df015 +size 84693 diff --git a/datasets/pinganmajia/train/images/订单1812884_4_7165695.jpg b/datasets/pinganmajia/train/images/订单1812884_4_7165695.jpg new file mode 100644 index 0000000..fd50cd5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812884_4_7165695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5362ef4c2732f121e72c9242673632599ed90ab1ff11f8c982ba451a59e00502 +size 61160 diff --git a/datasets/pinganmajia/train/images/订单1812885_4_7166429.jpg b/datasets/pinganmajia/train/images/订单1812885_4_7166429.jpg new file mode 100644 index 0000000..07ed50d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812885_4_7166429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa8d2011f37bbf760e3f407f9de719e7506994bd658be08a8dbe37029afab89 +size 200560 diff --git a/datasets/pinganmajia/train/images/订单1812886_4_7166213.jpg b/datasets/pinganmajia/train/images/订单1812886_4_7166213.jpg new file mode 100644 index 0000000..23c0e4c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812886_4_7166213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b757a101091f69f6a646793f23e96cdc520ae094be6ad2f9fec3293c1b016125 +size 2264081 diff --git a/datasets/pinganmajia/train/images/订单1812887_4_7165688.jpg b/datasets/pinganmajia/train/images/订单1812887_4_7165688.jpg new file mode 100644 index 0000000..fffdef2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812887_4_7165688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66921ef78b5603541fc646bed1e75c6905e73981613b8e46cd057cf8af4a5d30 +size 99159 diff --git a/datasets/pinganmajia/train/images/订单1812888_4_7165868.jpg b/datasets/pinganmajia/train/images/订单1812888_4_7165868.jpg new file mode 100644 index 0000000..492b244 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812888_4_7165868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d89d1f3284b0cd95583da00c608cf57654305fc79d325aa5d8e8e0c1090a11 +size 211097 diff --git a/datasets/pinganmajia/train/images/订单1812889_4_7165767.jpg b/datasets/pinganmajia/train/images/订单1812889_4_7165767.jpg new file mode 100644 index 0000000..9fc7e78 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812889_4_7165767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf769cf1e706a77f1b14f7b62ed06a5d92ac7ab4650461ccd58574854ffa955 +size 185646 diff --git a/datasets/pinganmajia/train/images/订单1812891_4_7165867.jpg b/datasets/pinganmajia/train/images/订单1812891_4_7165867.jpg new file mode 100644 index 0000000..514a3c7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812891_4_7165867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55f003cce0d7e52aa4490908ad26481f420368bdfc3f41260dd2c872f8a02ff +size 125057 diff --git a/datasets/pinganmajia/train/images/订单1812893_4_7165706.jpg b/datasets/pinganmajia/train/images/订单1812893_4_7165706.jpg new file mode 100644 index 0000000..919193b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812893_4_7165706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b031791e45f8d36805ca267589ded539e6bf60823b8548cd8406e5ceb5d0198 +size 63733 diff --git a/datasets/pinganmajia/train/images/订单1812894_4_7165764.jpg b/datasets/pinganmajia/train/images/订单1812894_4_7165764.jpg new file mode 100644 index 0000000..5259ff0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812894_4_7165764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d182bf40712acad163be5720b92bf1b3a37cec7452d11ea22dfeb4c3e0a25a1 +size 585504 diff --git a/datasets/pinganmajia/train/images/订单1812895_4_7165727.jpg b/datasets/pinganmajia/train/images/订单1812895_4_7165727.jpg new file mode 100644 index 0000000..f0fecce --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812895_4_7165727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc57f2850ecb98b266f86903d9f0a7f638405cd21d97d68578ca78c99e6fff5 +size 170188 diff --git a/datasets/pinganmajia/train/images/订单1812899_4_7165887.jpg b/datasets/pinganmajia/train/images/订单1812899_4_7165887.jpg new file mode 100644 index 0000000..73f5099 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812899_4_7165887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6027ca65b8451b7333ccf6dc9ca5d7188b6fe9dcf9e5080cc33bd9f7f47f051 +size 371950 diff --git a/datasets/pinganmajia/train/images/订单1812901_4_7165815.jpg b/datasets/pinganmajia/train/images/订单1812901_4_7165815.jpg new file mode 100644 index 0000000..c759c29 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812901_4_7165815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51c0511be58637db39fbdcc74d2eca0d36c419c207fa6ae982b2604185d1021 +size 590580 diff --git a/datasets/pinganmajia/train/images/订单1812905_4_7165871.jpg b/datasets/pinganmajia/train/images/订单1812905_4_7165871.jpg new file mode 100644 index 0000000..64c86f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812905_4_7165871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd6f858ed205bb6e6aa0059a54d9da0e43a25de6f62ef4ff017d706f0be7a6d +size 160358 diff --git a/datasets/pinganmajia/train/images/订单1812906_4_7165832.jpg b/datasets/pinganmajia/train/images/订单1812906_4_7165832.jpg new file mode 100644 index 0000000..f02b671 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812906_4_7165832.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abf031004c7ed0a93c8b7b87d74964f4923517f88f45403a29d7aa52f6d9857 +size 197093 diff --git a/datasets/pinganmajia/train/images/订单1812907_4_7165910.jpg b/datasets/pinganmajia/train/images/订单1812907_4_7165910.jpg new file mode 100644 index 0000000..bd2d980 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812907_4_7165910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840c3bfef59444d6dcc7e606012dca0e7ead79aa0a0d88a992099117d99e354e +size 72731 diff --git a/datasets/pinganmajia/train/images/订单1812908_4_7165819.jpg b/datasets/pinganmajia/train/images/订单1812908_4_7165819.jpg new file mode 100644 index 0000000..5fe31a3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812908_4_7165819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6940f70105cc4df55a97966f8813b20ae5818de4336ae43615addfe069b902f5 +size 146015 diff --git a/datasets/pinganmajia/train/images/订单1812911_4_7165995.jpg b/datasets/pinganmajia/train/images/订单1812911_4_7165995.jpg new file mode 100644 index 0000000..87f3c0b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812911_4_7165995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92bd7f1a1f1518061b11a2a64971bc2855ce26880f5d20c8eab235478ad060cf +size 83952 diff --git a/datasets/pinganmajia/train/images/订单1812912_4_7166571.jpg b/datasets/pinganmajia/train/images/订单1812912_4_7166571.jpg new file mode 100644 index 0000000..db8f130 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812912_4_7166571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e129f003aaeb79c4c609994d0f007650226c7bfaa22e22db5d8e60648d400181 +size 128860 diff --git a/datasets/pinganmajia/train/images/订单1812915_4_7165966.jpg b/datasets/pinganmajia/train/images/订单1812915_4_7165966.jpg new file mode 100644 index 0000000..86460c8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812915_4_7165966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e88220f9ca101e83d1486bd1566258783e5f02b0f98ae1f8ad8af25ce0a482c +size 116850 diff --git a/datasets/pinganmajia/train/images/订单1812916_4_7166022.jpg b/datasets/pinganmajia/train/images/订单1812916_4_7166022.jpg new file mode 100644 index 0000000..8c51191 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812916_4_7166022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5b415a69307447879714ce10e108cf1bd7e92059dc2ae1a4b2aed98cc3ced6 +size 131444 diff --git a/datasets/pinganmajia/train/images/订单1812917_4_7166020.jpg b/datasets/pinganmajia/train/images/订单1812917_4_7166020.jpg new file mode 100644 index 0000000..5231077 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812917_4_7166020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33abf552f497de5437cf86059a1931a8538edc1c51b3f4b486bec11df1d1be47 +size 59638 diff --git a/datasets/pinganmajia/train/images/订单1812918_4_7166464.jpg b/datasets/pinganmajia/train/images/订单1812918_4_7166464.jpg new file mode 100644 index 0000000..3070ee2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812918_4_7166464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd3d447c8e3121e8953263edb904c6b04a85fc186bc42d02cf9b3f997b91572 +size 571159 diff --git a/datasets/pinganmajia/train/images/订单1812919_4_7166086.jpg b/datasets/pinganmajia/train/images/订单1812919_4_7166086.jpg new file mode 100644 index 0000000..f40f8d1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812919_4_7166086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28da805d9b3436f00370bffa8b6f4270069e923c725a0da74bedbdecb1436ca9 +size 71530 diff --git a/datasets/pinganmajia/train/images/订单1812920_4_7166122.jpg b/datasets/pinganmajia/train/images/订单1812920_4_7166122.jpg new file mode 100644 index 0000000..ede6f45 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812920_4_7166122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca596c9f8fd0ee03e09bbc94b2c9df2d0484d0ec2c0ea212562448a16073f12d +size 103090 diff --git a/datasets/pinganmajia/train/images/订单1812921_4_7166047.jpg b/datasets/pinganmajia/train/images/订单1812921_4_7166047.jpg new file mode 100644 index 0000000..c423fdd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812921_4_7166047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57add834577f6b4e0c9524f8f706d6687d07bf48448a8e797280cfa055c476ab +size 161400 diff --git a/datasets/pinganmajia/train/images/订单1812923_4_7166008.jpg b/datasets/pinganmajia/train/images/订单1812923_4_7166008.jpg new file mode 100644 index 0000000..c70a985 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812923_4_7166008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8967d71397f361fd1a9f5f1f3d1bc57ee519195405b0c43b1ac07b408ff29c8 +size 173592 diff --git a/datasets/pinganmajia/train/images/订单1812924_4_7166113.jpg b/datasets/pinganmajia/train/images/订单1812924_4_7166113.jpg new file mode 100644 index 0000000..0fa585c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812924_4_7166113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7f745ec9f4987b997f75161124e8788de0a617fdebd5395d9d50ab97114466 +size 67620 diff --git a/datasets/pinganmajia/train/images/订单1812925_4_7166079.jpg b/datasets/pinganmajia/train/images/订单1812925_4_7166079.jpg new file mode 100644 index 0000000..a9f2efb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812925_4_7166079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d762a58c068d32704fa934549f97a7b5be09fb61542f47dcc1a1a24aecd254f +size 279327 diff --git a/datasets/pinganmajia/train/images/订单1812927_4_7166174.jpg b/datasets/pinganmajia/train/images/订单1812927_4_7166174.jpg new file mode 100644 index 0000000..67ebced --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812927_4_7166174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d84843ecbedf28abf8e9f3df885e4aa2fa7f3471e08a3850c84b37876bdcb7c +size 46852 diff --git a/datasets/pinganmajia/train/images/订单1812928_4_7166111.jpg b/datasets/pinganmajia/train/images/订单1812928_4_7166111.jpg new file mode 100644 index 0000000..5576b0e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812928_4_7166111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79981a653c7cccccc4c8c5a31653263276337c3532961018251a9d20d270980c +size 430146 diff --git a/datasets/pinganmajia/train/images/订单1812929_4_7166242.jpg b/datasets/pinganmajia/train/images/订单1812929_4_7166242.jpg new file mode 100644 index 0000000..ea815c0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812929_4_7166242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab4e2cf5fc08e65ca89a89945b3ecb2e0009cd83983bd7f4978ca18ca38e7f3 +size 168779 diff --git a/datasets/pinganmajia/train/images/订单1812933_4_7166354.jpg b/datasets/pinganmajia/train/images/订单1812933_4_7166354.jpg new file mode 100644 index 0000000..3c29a19 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812933_4_7166354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c450551122553559571f4dfec7c61fdd882ee1a23d5616c9c28153477cd9974 +size 172031 diff --git a/datasets/pinganmajia/train/images/订单1812934_4_7166167.jpg b/datasets/pinganmajia/train/images/订单1812934_4_7166167.jpg new file mode 100644 index 0000000..4b2ef0e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812934_4_7166167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d02f667d295a5cd2626bab1ee2ed487d63f280dc5cb078f75aea091350d5ed +size 143549 diff --git a/datasets/pinganmajia/train/images/订单1812937_4_7166265.jpg b/datasets/pinganmajia/train/images/订单1812937_4_7166265.jpg new file mode 100644 index 0000000..738a560 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812937_4_7166265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb03b575f69671c7cc72586450d20ef83408d16c70e705c2199f9b451f5c1656 +size 569805 diff --git a/datasets/pinganmajia/train/images/订单1812942_4_7166327.jpg b/datasets/pinganmajia/train/images/订单1812942_4_7166327.jpg new file mode 100644 index 0000000..4b908fa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812942_4_7166327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d86b4929998d0c94d76607ab0f15f10e62f00c8bda8bf491a00dd5e50ade3c5 +size 85784 diff --git a/datasets/pinganmajia/train/images/订单1812943_4_7166296.jpg b/datasets/pinganmajia/train/images/订单1812943_4_7166296.jpg new file mode 100644 index 0000000..363f420 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812943_4_7166296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca17996b9b4fa21e1de287936fc969fc449e4f845c6f26a0291e153d49ce4d4 +size 112091 diff --git a/datasets/pinganmajia/train/images/订单1812944_4_7166255.jpg b/datasets/pinganmajia/train/images/订单1812944_4_7166255.jpg new file mode 100644 index 0000000..53a64a9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812944_4_7166255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd28f12cbbc3a8eac59b21d63b5f3dd81e3950124eecfe3979322b43619eab68 +size 67493 diff --git a/datasets/pinganmajia/train/images/订单1812945_4_7166219.jpg b/datasets/pinganmajia/train/images/订单1812945_4_7166219.jpg new file mode 100644 index 0000000..f6ca7af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812945_4_7166219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3356c5f3f0151064b1572ee2de1543a37753e559e4c33255c622867ec9d66ebe +size 93045 diff --git a/datasets/pinganmajia/train/images/订单1812946_4_7166202.jpg b/datasets/pinganmajia/train/images/订单1812946_4_7166202.jpg new file mode 100644 index 0000000..6cb2269 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812946_4_7166202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4aa64fd512d518af55bfff0f144150de742864c5fdeea1a385b4e66db7d38c +size 172072 diff --git a/datasets/pinganmajia/train/images/订单1812947_4_7166326.jpg b/datasets/pinganmajia/train/images/订单1812947_4_7166326.jpg new file mode 100644 index 0000000..14ebfd8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812947_4_7166326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2aa8b28d1eea8612fa13025565a168e0f875956c2493dff3b13764c69d6ce5c +size 84707 diff --git a/datasets/pinganmajia/train/images/订单1812949_4_7166256.jpg b/datasets/pinganmajia/train/images/订单1812949_4_7166256.jpg new file mode 100644 index 0000000..3029ef9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812949_4_7166256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e66772f5fe70c2e38178dee11461cb0409662811549432fe79bcc552aabaf9 +size 167390 diff --git a/datasets/pinganmajia/train/images/订单1812950_4_7166237.jpg b/datasets/pinganmajia/train/images/订单1812950_4_7166237.jpg new file mode 100644 index 0000000..b689c1d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812950_4_7166237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969935b29164a85648f5c6c761067d6b506aac1d7e8bf92e295bd0e36938a14e +size 122805 diff --git a/datasets/pinganmajia/train/images/订单1812951_4_7166280.jpg b/datasets/pinganmajia/train/images/订单1812951_4_7166280.jpg new file mode 100644 index 0000000..d1e92b0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812951_4_7166280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b52b0f08e06e3ae8caa25cc668b34c58ac6e30004c83aef23aa100862c07110 +size 105591 diff --git a/datasets/pinganmajia/train/images/订单1812953_4_7166355.jpg b/datasets/pinganmajia/train/images/订单1812953_4_7166355.jpg new file mode 100644 index 0000000..1e5ca0b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812953_4_7166355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7ed22ae88766e14d6ca841d3ffe721d6b8b5b3f5ed9a579f58a93dbb0b09a4 +size 105738 diff --git a/datasets/pinganmajia/train/images/订单1812955_4_7166398.jpg b/datasets/pinganmajia/train/images/订单1812955_4_7166398.jpg new file mode 100644 index 0000000..abcb5af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812955_4_7166398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e843758bd30f1c1cd7bed9196845b8f6416ede9ab359b1dd4288e251ad162d0 +size 664991 diff --git a/datasets/pinganmajia/train/images/订单1812957_4_7166313.jpg b/datasets/pinganmajia/train/images/订单1812957_4_7166313.jpg new file mode 100644 index 0000000..320b0b9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812957_4_7166313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70392b09643c3c480f6418bdaa3989a376d226232ba107356af45cd21fe2a2a8 +size 177347 diff --git a/datasets/pinganmajia/train/images/订单1812960_4_7166291.jpg b/datasets/pinganmajia/train/images/订单1812960_4_7166291.jpg new file mode 100644 index 0000000..b9cc5af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812960_4_7166291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09e4f276af6103473e34009946b58374a41d0e9d200803c741d518ccb12dcab +size 240615 diff --git a/datasets/pinganmajia/train/images/订单1812963_4_7166411.jpg b/datasets/pinganmajia/train/images/订单1812963_4_7166411.jpg new file mode 100644 index 0000000..350fd05 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812963_4_7166411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f22f18c5b637a9adbe1cf6adc5795f82cd6036fb2fae0fba1207b2b0b3974d +size 99738 diff --git a/datasets/pinganmajia/train/images/订单1812964_4_7166508.jpg b/datasets/pinganmajia/train/images/订单1812964_4_7166508.jpg new file mode 100644 index 0000000..b914cb0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812964_4_7166508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7febbf5f5e98da91b2d7cdb551254c4dea4f10bc482f1cbd3764be67e73fd895 +size 72579 diff --git a/datasets/pinganmajia/train/images/订单1812965_4_7166393.jpg b/datasets/pinganmajia/train/images/订单1812965_4_7166393.jpg new file mode 100644 index 0000000..163c3b1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812965_4_7166393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe240b258155c91c98811c57e15dc3703c987b1470a86f6e19717c7c91148d6 +size 324943 diff --git a/datasets/pinganmajia/train/images/订单1812966_4_7166436.jpg b/datasets/pinganmajia/train/images/订单1812966_4_7166436.jpg new file mode 100644 index 0000000..574070c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812966_4_7166436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05ec9f9f2dbb3a5e2355e857b1d841c3f1c7e3181cc1119806776212a068e71 +size 493674 diff --git a/datasets/pinganmajia/train/images/订单1812968_4_7167369.jpg b/datasets/pinganmajia/train/images/订单1812968_4_7167369.jpg new file mode 100644 index 0000000..36c3b59 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812968_4_7167369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d865173ad4f559f55f6fc17aab4d4360c84c9586313fd2657b2f3c8f29800f8 +size 1497864 diff --git a/datasets/pinganmajia/train/images/订单1812971_4_7166447.jpg b/datasets/pinganmajia/train/images/订单1812971_4_7166447.jpg new file mode 100644 index 0000000..e2501e0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812971_4_7166447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa7a74b0986f7fd6c1096669c572e20d51ddc04c249fc8ed6221ddfb4f7b8d9 +size 198258 diff --git a/datasets/pinganmajia/train/images/订单1812972_4_7166459.jpg b/datasets/pinganmajia/train/images/订单1812972_4_7166459.jpg new file mode 100644 index 0000000..fdef1b7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812972_4_7166459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffa26bf8258c64d62d1cb1c45d61c30482fdcc865fd353224eafd2285e29b53 +size 102019 diff --git a/datasets/pinganmajia/train/images/订单1812974_4_7166471.jpg b/datasets/pinganmajia/train/images/订单1812974_4_7166471.jpg new file mode 100644 index 0000000..ae94cd2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812974_4_7166471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a874dda05005bbdd84a7c3c28c23fe878f2d74c2d22ba98cfb82ec6e4ba5c0 +size 111701 diff --git a/datasets/pinganmajia/train/images/订单1812975_4_7166495.jpg b/datasets/pinganmajia/train/images/订单1812975_4_7166495.jpg new file mode 100644 index 0000000..50a25b8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812975_4_7166495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb9a6486c353bb11ad8c8bc6bda95607aab47b30fbdb5544bb56c7960a0c5b7 +size 67904 diff --git a/datasets/pinganmajia/train/images/订单1812977_4_7166538.jpg b/datasets/pinganmajia/train/images/订单1812977_4_7166538.jpg new file mode 100644 index 0000000..d23b54e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812977_4_7166538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a546f4ca9c90d33514fc6c84d9d68640061bcf7ad654894d06b461871d67810 +size 83245 diff --git a/datasets/pinganmajia/train/images/订单1812978_4_7166559.jpg b/datasets/pinganmajia/train/images/订单1812978_4_7166559.jpg new file mode 100644 index 0000000..25ae67c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812978_4_7166559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bc7e166af63247b66c685ea9e7fbafd208faa3c6f9396dd2114860ab0529ce +size 89818 diff --git a/datasets/pinganmajia/train/images/订单1812980_4_7166497.jpg b/datasets/pinganmajia/train/images/订单1812980_4_7166497.jpg new file mode 100644 index 0000000..f00a592 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812980_4_7166497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949dd7eca77f17c290b61c6f3caa9b64c4bbaca5865337c9234be13d51fa636d +size 186394 diff --git a/datasets/pinganmajia/train/images/订单1812981_4_7166658.jpg b/datasets/pinganmajia/train/images/订单1812981_4_7166658.jpg new file mode 100644 index 0000000..0c7bf69 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812981_4_7166658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282d0ac561ff133ff6996782814849142bd37d84438eab6ba179a38944c2c264 +size 975425 diff --git a/datasets/pinganmajia/train/images/订单1812983_4_7166581.jpg b/datasets/pinganmajia/train/images/订单1812983_4_7166581.jpg new file mode 100644 index 0000000..dc3e1fe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812983_4_7166581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec5cec6f0ce0d40b688b09d63f1f54e399e6be31210975d87d8fd41e06b8718 +size 120597 diff --git a/datasets/pinganmajia/train/images/订单1812984_4_7166659.jpg b/datasets/pinganmajia/train/images/订单1812984_4_7166659.jpg new file mode 100644 index 0000000..8ce5c07 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812984_4_7166659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f261ddd1f83eeea57d79452e5ef5300c1ce08613d8fbffaf9773cc4af930eff +size 150602 diff --git a/datasets/pinganmajia/train/images/订单1812986_4_7166615.jpg b/datasets/pinganmajia/train/images/订单1812986_4_7166615.jpg new file mode 100644 index 0000000..1f6c5f4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812986_4_7166615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4812f167d8fc3e53264105b1c5718fea3e1be8967c9285a13e68277c8e47724b +size 179073 diff --git a/datasets/pinganmajia/train/images/订单1812987_4_7166647.jpg b/datasets/pinganmajia/train/images/订单1812987_4_7166647.jpg new file mode 100644 index 0000000..dd7809c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812987_4_7166647.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de11f5c115c0ed8e51e90b50d237edc0b563bbf1bd73fa35bdf241f828999c1 +size 63535 diff --git a/datasets/pinganmajia/train/images/订单1812988_4_7166639.jpg b/datasets/pinganmajia/train/images/订单1812988_4_7166639.jpg new file mode 100644 index 0000000..74afad5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812988_4_7166639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63d03fd78f016fddab79ef37374686d6bf173fb43456b886cb512ef492dadb6 +size 139767 diff --git a/datasets/pinganmajia/train/images/订单1812989_4_7166707.jpg b/datasets/pinganmajia/train/images/订单1812989_4_7166707.jpg new file mode 100644 index 0000000..ac51de2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812989_4_7166707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb95ba01bbb44813fc67106d95e95527e6892365e92625d338d2da4ce235d8ef +size 81922 diff --git a/datasets/pinganmajia/train/images/订单1812990_4_7166700.jpg b/datasets/pinganmajia/train/images/订单1812990_4_7166700.jpg new file mode 100644 index 0000000..57e859d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812990_4_7166700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc497d35a558cd652af83ac0658db870c88505b6768d88ad0d744ef5896e4dd +size 94004 diff --git a/datasets/pinganmajia/train/images/订单1812991_4_7166782.jpg b/datasets/pinganmajia/train/images/订单1812991_4_7166782.jpg new file mode 100644 index 0000000..8f0bd2c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812991_4_7166782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946ac4bc44251856257c66b09125808ca554c974b7e2363f605293fd817ac3a2 +size 277010 diff --git a/datasets/pinganmajia/train/images/订单1812992_4_7166753.jpg b/datasets/pinganmajia/train/images/订单1812992_4_7166753.jpg new file mode 100644 index 0000000..3129675 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812992_4_7166753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c8c48e563e06d42bef3edb2ed45df0c95e009a3d0f59d3697ecad430601cbf +size 164364 diff --git a/datasets/pinganmajia/train/images/订单1812993_4_7166715.jpg b/datasets/pinganmajia/train/images/订单1812993_4_7166715.jpg new file mode 100644 index 0000000..7de02e0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812993_4_7166715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a9cbd856c4e14db8348c1d8c0a89c3a3628ab18390330c0679bf08b5e4b48b +size 160190 diff --git a/datasets/pinganmajia/train/images/订单1812994_4_7166769.jpg b/datasets/pinganmajia/train/images/订单1812994_4_7166769.jpg new file mode 100644 index 0000000..4f67f4b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812994_4_7166769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46404aca3152615316f69a24e040a1d4d580fe27ab9700ac1f4b99cd2f0d7d1a +size 713162 diff --git a/datasets/pinganmajia/train/images/订单1812995_4_7166883.jpg b/datasets/pinganmajia/train/images/订单1812995_4_7166883.jpg new file mode 100644 index 0000000..17f190d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812995_4_7166883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c337a8ee63665a06363a3385c51bc7fe574fc53595d6f3cc68f2c3cf7dd21aeb +size 707882 diff --git a/datasets/pinganmajia/train/images/订单1812996_4_7166862.jpg b/datasets/pinganmajia/train/images/订单1812996_4_7166862.jpg new file mode 100644 index 0000000..4e57c53 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812996_4_7166862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebd798dcaa24229776dbc72a104000f7e91a5c63a8a5cbe77e28ad51a8d5f55 +size 117287 diff --git a/datasets/pinganmajia/train/images/订单1812997_4_7166779.jpg b/datasets/pinganmajia/train/images/订单1812997_4_7166779.jpg new file mode 100644 index 0000000..847f5ee --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812997_4_7166779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e659d0ca3a54d16ad87a20a014df23d03a7cb63831b33085969eff5e61eac7 +size 224973 diff --git a/datasets/pinganmajia/train/images/订单1812998_4_7166761.jpg b/datasets/pinganmajia/train/images/订单1812998_4_7166761.jpg new file mode 100644 index 0000000..e22630c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812998_4_7166761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5976cd749f839d8c25e9d12adc2efe4bcc98896a16288b775271e0d06a098a50 +size 84595 diff --git a/datasets/pinganmajia/train/images/订单1812999_4_7166810.jpg b/datasets/pinganmajia/train/images/订单1812999_4_7166810.jpg new file mode 100644 index 0000000..f15f048 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1812999_4_7166810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0345761035bdaf794a2daa86491741ab4af9315bddef2d4ec0f1a9c4656aed1 +size 87119 diff --git a/datasets/pinganmajia/train/images/订单1813000_4_7166999.jpg b/datasets/pinganmajia/train/images/订单1813000_4_7166999.jpg new file mode 100644 index 0000000..3bbae49 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813000_4_7166999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9f0607f2fdd1bb6328e2065d476c4d6090f598f595dadcf9b6c4b84949a6b7 +size 214526 diff --git a/datasets/pinganmajia/train/images/订单1813001_4_7166762.jpg b/datasets/pinganmajia/train/images/订单1813001_4_7166762.jpg new file mode 100644 index 0000000..f50e93e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813001_4_7166762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f520c152bffbd37d576b3df936088a7dd314e065e0dab612239b4eff8b6ef2 +size 416480 diff --git a/datasets/pinganmajia/train/images/订单1813002_4_7166745.jpg b/datasets/pinganmajia/train/images/订单1813002_4_7166745.jpg new file mode 100644 index 0000000..a528882 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813002_4_7166745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88f245086c8508af0e3595d1a91642befb0b45ac428f385a2393841786f513f +size 483779 diff --git a/datasets/pinganmajia/train/images/订单1813003_4_7166836.jpg b/datasets/pinganmajia/train/images/订单1813003_4_7166836.jpg new file mode 100644 index 0000000..922e079 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813003_4_7166836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7dd9ff3160824efbcaeb4ac0d30f5caf994327b950b706316bfe46aabae8e3 +size 372582 diff --git a/datasets/pinganmajia/train/images/订单1813005_4_7166912.jpg b/datasets/pinganmajia/train/images/订单1813005_4_7166912.jpg new file mode 100644 index 0000000..db543c8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813005_4_7166912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd607c57f2f5bb58019b89d04b8fd969c20b11fbb9dff9e097122c5217b66993 +size 128712 diff --git a/datasets/pinganmajia/train/images/订单1813006_4_7166844.jpg b/datasets/pinganmajia/train/images/订单1813006_4_7166844.jpg new file mode 100644 index 0000000..4688e66 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813006_4_7166844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228489b2eb9f540a1c16958b439e23afa472834bbe01f5a6cf3c4c2ae8f09d7f +size 145829 diff --git a/datasets/pinganmajia/train/images/订单1813008_4_7166958.jpg b/datasets/pinganmajia/train/images/订单1813008_4_7166958.jpg new file mode 100644 index 0000000..2074798 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813008_4_7166958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec34ce8a6be49a001fafac9c1278ad48be1b0d3c9e980304890005ad124980db +size 189158 diff --git a/datasets/pinganmajia/train/images/订单1813010_4_7166925.jpg b/datasets/pinganmajia/train/images/订单1813010_4_7166925.jpg new file mode 100644 index 0000000..35c4c03 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813010_4_7166925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b23fe36c9306c04cdf7dde0f389b79a518680b2767b30993ad0befb74db8bdf +size 122414 diff --git a/datasets/pinganmajia/train/images/订单1813011_4_7166907.jpg b/datasets/pinganmajia/train/images/订单1813011_4_7166907.jpg new file mode 100644 index 0000000..6a8d62e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813011_4_7166907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02f91643ac7fae4dceeada5d2d553f15e91f7f67ee0946b63037433c8884b3e +size 344608 diff --git a/datasets/pinganmajia/train/images/订单1813012_4_7166969.jpg b/datasets/pinganmajia/train/images/订单1813012_4_7166969.jpg new file mode 100644 index 0000000..5ef2638 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813012_4_7166969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f640365687ac8e69821797e2d74227c092c2e2fa097b84cb99c53a264f43ec1 +size 115676 diff --git a/datasets/pinganmajia/train/images/订单1813013_4_7167047.jpg b/datasets/pinganmajia/train/images/订单1813013_4_7167047.jpg new file mode 100644 index 0000000..56198d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813013_4_7167047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0243c0073c43e6564a7bff39809f7d6adcf6348535cc6d4e37f3f280d078ce +size 182025 diff --git a/datasets/pinganmajia/train/images/订单1813014_4_7167435.jpg b/datasets/pinganmajia/train/images/订单1813014_4_7167435.jpg new file mode 100644 index 0000000..ad94733 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813014_4_7167435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c941f8aea8b665d0a81b084b399ea64b48fd7dac0e33e12d32b267cee0dbcd66 +size 85104 diff --git a/datasets/pinganmajia/train/images/订单1813017_4_7166996.jpg b/datasets/pinganmajia/train/images/订单1813017_4_7166996.jpg new file mode 100644 index 0000000..ec2f3c2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813017_4_7166996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b965b5246761817134529bdf528d163d325e8aa1db686a4f4ba9d8278957f9 +size 186489 diff --git a/datasets/pinganmajia/train/images/订单1813018_4_7167102.jpg b/datasets/pinganmajia/train/images/订单1813018_4_7167102.jpg new file mode 100644 index 0000000..a1ba151 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813018_4_7167102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9777646e64fafb9c5740c19a40e16d55dd15ddc6ee78d7ec8be4a765de02465d +size 189495 diff --git a/datasets/pinganmajia/train/images/订单1813019_4_7167879.jpg b/datasets/pinganmajia/train/images/订单1813019_4_7167879.jpg new file mode 100644 index 0000000..b340f74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813019_4_7167879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc5cd4dc03858ea0998b3f1627a5c944c92f1e8c664897f2b920552467f88c2 +size 80350 diff --git a/datasets/pinganmajia/train/images/订单1813020_4_7166960.jpg b/datasets/pinganmajia/train/images/订单1813020_4_7166960.jpg new file mode 100644 index 0000000..4af9fa6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813020_4_7166960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b2a9af2aeb81c4834410318a315164d14b41866d7b749a78738d2711ad39e1 +size 797938 diff --git a/datasets/pinganmajia/train/images/订单1813026_4_7166981.jpg b/datasets/pinganmajia/train/images/订单1813026_4_7166981.jpg new file mode 100644 index 0000000..5b4b34a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813026_4_7166981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734881f74e688a58f307023ea30a242d6ca7172a6abc731efbef12245e0d3583 +size 231075 diff --git a/datasets/pinganmajia/train/images/订单1813027_4_7167088.jpg b/datasets/pinganmajia/train/images/订单1813027_4_7167088.jpg new file mode 100644 index 0000000..275d76d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813027_4_7167088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f581182f6f07444897653281d600b5283014d2066d33f3ff160fed55ecf5fa +size 262936 diff --git a/datasets/pinganmajia/train/images/订单1813028_4_7167051.jpg b/datasets/pinganmajia/train/images/订单1813028_4_7167051.jpg new file mode 100644 index 0000000..5d31b54 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813028_4_7167051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e9361ea9111a350f83787c9041d0436c5932a7c61e2294f37b8b5b2a6c8f26 +size 97890 diff --git a/datasets/pinganmajia/train/images/订单1813029_4_7167133.jpg b/datasets/pinganmajia/train/images/订单1813029_4_7167133.jpg new file mode 100644 index 0000000..05ef6a8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813029_4_7167133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4741760c20d2d6e0ea18768f152c3fbe06e240bdd9d354dde82b20fa90e12db5 +size 102956 diff --git a/datasets/pinganmajia/train/images/订单1813030_4_7167041.jpg b/datasets/pinganmajia/train/images/订单1813030_4_7167041.jpg new file mode 100644 index 0000000..7a32ccb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813030_4_7167041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4720b1d3cc2271e3c997ba9b84c6f63d1d29f128ac002445ec640505389483 +size 74926 diff --git a/datasets/pinganmajia/train/images/订单1813032_4_7167170.jpg b/datasets/pinganmajia/train/images/订单1813032_4_7167170.jpg new file mode 100644 index 0000000..540992a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813032_4_7167170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa846b88adc8ca6d34e8b2d52089d4a855311a51df24934d1d08e87184e91d1c +size 187286 diff --git a/datasets/pinganmajia/train/images/订单1813034_4_7167196.jpg b/datasets/pinganmajia/train/images/订单1813034_4_7167196.jpg new file mode 100644 index 0000000..8d3e1f6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813034_4_7167196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12fe71edf18ac5dfd7174f937eed1ae11f966a12d446ae41dcc7d1aab75fcead +size 176100 diff --git a/datasets/pinganmajia/train/images/订单1813035_4_7167167.jpg b/datasets/pinganmajia/train/images/订单1813035_4_7167167.jpg new file mode 100644 index 0000000..d7b8f14 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813035_4_7167167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf8a59be1aae823ec60fc2d8f08a17dca8682a3bb5675e24e4f446b5db1142a +size 87203 diff --git a/datasets/pinganmajia/train/images/订单1813038_4_7167144.jpg b/datasets/pinganmajia/train/images/订单1813038_4_7167144.jpg new file mode 100644 index 0000000..a647acb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813038_4_7167144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6e0c0909b1f433b1c357fdfdcb18a1bd7f2f143657b61a7709cf056c15f328 +size 857235 diff --git a/datasets/pinganmajia/train/images/订单1813039_4_7167175.jpg b/datasets/pinganmajia/train/images/订单1813039_4_7167175.jpg new file mode 100644 index 0000000..d8f9b8d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813039_4_7167175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e1bce236af6b8b286c129e86d811a4a1663895902ae24337f4948c8c6092f9 +size 175554 diff --git a/datasets/pinganmajia/train/images/订单1813040_4_7167131.jpg b/datasets/pinganmajia/train/images/订单1813040_4_7167131.jpg new file mode 100644 index 0000000..fb29bd7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813040_4_7167131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74737a7cb4b99f196f8d0403a8cca3a3cc02fe820bf3372aa9d9385d63c8a431 +size 166003 diff --git a/datasets/pinganmajia/train/images/订单1813043_4_7167192.jpg b/datasets/pinganmajia/train/images/订单1813043_4_7167192.jpg new file mode 100644 index 0000000..9ef6993 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813043_4_7167192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57e581957bdc31b7ea86883c1387094172e45e32f323345f918223dc05f8223 +size 285683 diff --git a/datasets/pinganmajia/train/images/订单1813044_4_7167203.jpg b/datasets/pinganmajia/train/images/订单1813044_4_7167203.jpg new file mode 100644 index 0000000..365a53d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813044_4_7167203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a471007df3085412e7ab3ce793b32102a7c9b48cc5c4b530b6f07896c73068 +size 141059 diff --git a/datasets/pinganmajia/train/images/订单1813046_4_7167291.jpg b/datasets/pinganmajia/train/images/订单1813046_4_7167291.jpg new file mode 100644 index 0000000..34ec88c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813046_4_7167291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95df15eb4d198c07f8db30c0d662c7fd4f0f919d33ff20c96159ed1f7b7c4769 +size 50423 diff --git a/datasets/pinganmajia/train/images/订单1813049_4_7167299.jpg b/datasets/pinganmajia/train/images/订单1813049_4_7167299.jpg new file mode 100644 index 0000000..bda6e12 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813049_4_7167299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65692f149bc3f9b96ab5fb922066dd895e72b230741c9002e7b05a6f4b668934 +size 168324 diff --git a/datasets/pinganmajia/train/images/订单1813050_4_7167247.jpg b/datasets/pinganmajia/train/images/订单1813050_4_7167247.jpg new file mode 100644 index 0000000..010ac7c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813050_4_7167247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacc302845f9220481327741d7bdee9ce51a2ea8426a57dd2ef34b489f6eb979 +size 294664 diff --git a/datasets/pinganmajia/train/images/订单1813052_4_7167279.jpg b/datasets/pinganmajia/train/images/订单1813052_4_7167279.jpg new file mode 100644 index 0000000..494fc76 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813052_4_7167279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe23217d9ea3307ad75c8eb570805c854a249941c0a32a556e855fabee1b150 +size 106537 diff --git a/datasets/pinganmajia/train/images/订单1813054_4_7167236.jpg b/datasets/pinganmajia/train/images/订单1813054_4_7167236.jpg new file mode 100644 index 0000000..0698bb9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813054_4_7167236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24334d01341d56cef21113e9de3013f1a8ed601dff8f2da2bda441a87719b5f8 +size 82882 diff --git a/datasets/pinganmajia/train/images/订单1813055_4_7167284.jpg b/datasets/pinganmajia/train/images/订单1813055_4_7167284.jpg new file mode 100644 index 0000000..99126a5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813055_4_7167284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2def1a9d9ff957130b93c2726fcceedf1005e849a97cc20927be8847dcb223 +size 70022 diff --git a/datasets/pinganmajia/train/images/订单1813058_4_7167382.jpg b/datasets/pinganmajia/train/images/订单1813058_4_7167382.jpg new file mode 100644 index 0000000..dce43d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813058_4_7167382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0670c894550ac9a92c6e99130be9df96d8d8065a047cd6f1d020f55797e2790f +size 108340 diff --git a/datasets/pinganmajia/train/images/订单1813060_4_7167392.jpg b/datasets/pinganmajia/train/images/订单1813060_4_7167392.jpg new file mode 100644 index 0000000..aa9d136 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813060_4_7167392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8290e50d6b99652e6e4191ceb56d0a55317db120b26ddf3cb8a17681ae109b33 +size 333377 diff --git a/datasets/pinganmajia/train/images/订单1813066_4_7167355.jpg b/datasets/pinganmajia/train/images/订单1813066_4_7167355.jpg new file mode 100644 index 0000000..4d6947c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813066_4_7167355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0efdf0d8105b48ef669eb8e79a550444e12677f7ba9f7868c5edd3182f93ab +size 399543 diff --git a/datasets/pinganmajia/train/images/订单1813068_4_7167420.jpg b/datasets/pinganmajia/train/images/订单1813068_4_7167420.jpg new file mode 100644 index 0000000..1d8023c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813068_4_7167420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142a5c39829efb62ae4d0ccdd71ac6c950c92e837e72a364ccbf7bb6aa6f2e94 +size 111384 diff --git a/datasets/pinganmajia/train/images/订单1813069_4_7167520.jpg b/datasets/pinganmajia/train/images/订单1813069_4_7167520.jpg new file mode 100644 index 0000000..94fc4cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813069_4_7167520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348cc2ec01c3cdf2dd3e7214839a51adb71d1d34952777fb001b273e830055f7 +size 128161 diff --git a/datasets/pinganmajia/train/images/订单1813070_4_7167482.jpg b/datasets/pinganmajia/train/images/订单1813070_4_7167482.jpg new file mode 100644 index 0000000..e949263 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813070_4_7167482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f3363c0b4878be9920da094a5b41306f53da696d77651a6f8f22a3f9342fab +size 419406 diff --git a/datasets/pinganmajia/train/images/订单1813071_4_7167533.jpg b/datasets/pinganmajia/train/images/订单1813071_4_7167533.jpg new file mode 100644 index 0000000..a463c29 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813071_4_7167533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f01df5fc0cc15a6146684211f6642b931c60ef1796f37d6e580f6b2fa7cfbb +size 110510 diff --git a/datasets/pinganmajia/train/images/订单1813072_4_7167539.jpg b/datasets/pinganmajia/train/images/订单1813072_4_7167539.jpg new file mode 100644 index 0000000..56d75d8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813072_4_7167539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffdd93be2f0cd55233da51841b1c7bbdf9203154a319dd974714ece15df6acc +size 78584 diff --git a/datasets/pinganmajia/train/images/订单1813073_4_7167459.jpg b/datasets/pinganmajia/train/images/订单1813073_4_7167459.jpg new file mode 100644 index 0000000..f96ba0c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813073_4_7167459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa82e51e236faca8aa489d9c0917ef9a4842e0b6821256fd4b3ebf04af714bd3 +size 185946 diff --git a/datasets/pinganmajia/train/images/订单1813076_4_7167469.jpg b/datasets/pinganmajia/train/images/订单1813076_4_7167469.jpg new file mode 100644 index 0000000..e906400 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813076_4_7167469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f88957c55213a486c3fd67aedcf1254f285527726904d39d4d1e0d1e7b8406 +size 139773 diff --git a/datasets/pinganmajia/train/images/订单1813077_4_7167499.jpg b/datasets/pinganmajia/train/images/订单1813077_4_7167499.jpg new file mode 100644 index 0000000..85d7cd5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813077_4_7167499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8765d84577e6812b443df9f12af54c2bf0c479ec2ebdcb676275c5a9307d70c8 +size 501745 diff --git a/datasets/pinganmajia/train/images/订单1813078_4_7167598.jpg b/datasets/pinganmajia/train/images/订单1813078_4_7167598.jpg new file mode 100644 index 0000000..e43a7b8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813078_4_7167598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf557ec022b9f47eed12ec0bc2fc2d37af2184fd972a297f6412b7b78b8d2f6a +size 485180 diff --git a/datasets/pinganmajia/train/images/订单1813080_4_7167495.jpg b/datasets/pinganmajia/train/images/订单1813080_4_7167495.jpg new file mode 100644 index 0000000..db36644 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813080_4_7167495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086ccf0c6712c55c312ac43a6854fc949a2680364b8b3971541c3bcbdfa04d5e +size 89376 diff --git a/datasets/pinganmajia/train/images/订单1813081_4_7167601.jpg b/datasets/pinganmajia/train/images/订单1813081_4_7167601.jpg new file mode 100644 index 0000000..178eac8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813081_4_7167601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374cd8ca4cd0f401d4000a714e0c13f190d210fa484a0d741456b38cbf6c15f1 +size 166979 diff --git a/datasets/pinganmajia/train/images/订单1813083_4_7168095.jpg b/datasets/pinganmajia/train/images/订单1813083_4_7168095.jpg new file mode 100644 index 0000000..486124b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813083_4_7168095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e9bf645d51597e1c0a8e5f82c8a3a576abc4b079b7a30eeb49a550aad27ec8b +size 184313 diff --git a/datasets/pinganmajia/train/images/订单1813087_4_7167721.jpg b/datasets/pinganmajia/train/images/订单1813087_4_7167721.jpg new file mode 100644 index 0000000..14c2500 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813087_4_7167721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad86de114c8df54a289efb43f831bce2a18f56c9030f5c811862ed5927925a65 +size 208223 diff --git a/datasets/pinganmajia/train/images/订单1813089_4_7167660.jpg b/datasets/pinganmajia/train/images/订单1813089_4_7167660.jpg new file mode 100644 index 0000000..cba1f99 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813089_4_7167660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0787bf6921289a750d354b116b0928d0307d16d6720fc2125ede7c1e983a4fe6 +size 326904 diff --git a/datasets/pinganmajia/train/images/订单1813090_4_7167708.jpg b/datasets/pinganmajia/train/images/订单1813090_4_7167708.jpg new file mode 100644 index 0000000..f53776c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813090_4_7167708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f5a8b41b9ef470e1c7580b49dd303775f588cf4bd80c989d35432a8ed2224f3 +size 541995 diff --git a/datasets/pinganmajia/train/images/订单1813093_4_7167651.jpg b/datasets/pinganmajia/train/images/订单1813093_4_7167651.jpg new file mode 100644 index 0000000..b417e7d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813093_4_7167651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676ededfc49d82afed44885162be5d517b8a5fe1fbe3fe9b9de4abad58544f00 +size 630661 diff --git a/datasets/pinganmajia/train/images/订单1813094_4_7167670.jpg b/datasets/pinganmajia/train/images/订单1813094_4_7167670.jpg new file mode 100644 index 0000000..e6cc0a8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813094_4_7167670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b744cae8aab058e9c333a9b19cc4cd46e7018b491b740dbeade5b5ad701d7a +size 94206 diff --git a/datasets/pinganmajia/train/images/订单1813095_4_7167716.jpg b/datasets/pinganmajia/train/images/订单1813095_4_7167716.jpg new file mode 100644 index 0000000..7d46eac --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813095_4_7167716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28d2751cf4ab9ad695d6ba8f66c67cb52f9bbc827c5e56ee0035d1b6271bece +size 164614 diff --git a/datasets/pinganmajia/train/images/订单1813096_4_7167610.jpg b/datasets/pinganmajia/train/images/订单1813096_4_7167610.jpg new file mode 100644 index 0000000..3c9b816 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813096_4_7167610.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639f3639a11502997a8892be9bfaef1fd34fcf51fa7c7c0084913d85ebcf94d4 +size 480393 diff --git a/datasets/pinganmajia/train/images/订单1813098_4_7167577.jpg b/datasets/pinganmajia/train/images/订单1813098_4_7167577.jpg new file mode 100644 index 0000000..9ee62e3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813098_4_7167577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f6e2154bf2b675fec7a6e98ec5537fca8d83d062dcbeae5ed96254cda43d5d +size 219098 diff --git a/datasets/pinganmajia/train/images/订单1813099_4_7167634.jpg b/datasets/pinganmajia/train/images/订单1813099_4_7167634.jpg new file mode 100644 index 0000000..1d3f50a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813099_4_7167634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b671532a8dc1c175b51a356f63dd8ff10afd3eb197df07ca6915d4f2a4c1d022 +size 393881 diff --git a/datasets/pinganmajia/train/images/订单1813100_4_7168017.jpg b/datasets/pinganmajia/train/images/订单1813100_4_7168017.jpg new file mode 100644 index 0000000..931d72d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813100_4_7168017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76a3dc645fe7d6289d2af41068b4577f403a97faa7cba25904444e7ff544e35 +size 128267 diff --git a/datasets/pinganmajia/train/images/订单1813101_4_7167690.jpg b/datasets/pinganmajia/train/images/订单1813101_4_7167690.jpg new file mode 100644 index 0000000..6f9f738 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813101_4_7167690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af23d114ff94d8266631ec930be1c13638b552ba0982bca257409977e11b3d15 +size 529855 diff --git a/datasets/pinganmajia/train/images/订单1813102_4_7167678.jpg b/datasets/pinganmajia/train/images/订单1813102_4_7167678.jpg new file mode 100644 index 0000000..b38bf1d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813102_4_7167678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff85e1f8ea41a24b7b4df1fd802d90fee4c828a6a0c4d45dc0562a349f0b5153 +size 132429 diff --git a/datasets/pinganmajia/train/images/订单1813104_4_7167811.jpg b/datasets/pinganmajia/train/images/订单1813104_4_7167811.jpg new file mode 100644 index 0000000..a6070aa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813104_4_7167811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499135ee5b96a12de791faa3ff2e5765e4137460a28d458e17ae21f49d816ffb +size 117297 diff --git a/datasets/pinganmajia/train/images/订单1813105_4_7167746.jpg b/datasets/pinganmajia/train/images/订单1813105_4_7167746.jpg new file mode 100644 index 0000000..9b49688 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813105_4_7167746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e311e6175c81c1d230c02065589f3a669bb702dcd32e31ae217ebcdff1a626cf +size 155158 diff --git a/datasets/pinganmajia/train/images/订单1813106_4_7167757.jpg b/datasets/pinganmajia/train/images/订单1813106_4_7167757.jpg new file mode 100644 index 0000000..b5b206d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813106_4_7167757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b9a0e7d2f2773350dac357cc680b524e14b7b01751bdf138b96c08600cc640 +size 72228 diff --git a/datasets/pinganmajia/train/images/订单1813108_4_7167821.jpg b/datasets/pinganmajia/train/images/订单1813108_4_7167821.jpg new file mode 100644 index 0000000..a589177 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813108_4_7167821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9245a9ffc083fa904e6c89dd03123f6d532a1a2b357a582b0514a6dd61e236ad +size 352858 diff --git a/datasets/pinganmajia/train/images/订单1813112_4_7167964.jpg b/datasets/pinganmajia/train/images/订单1813112_4_7167964.jpg new file mode 100644 index 0000000..d24bd75 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813112_4_7167964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3292ca31f6348da81f8a26937c94581e2d6189c49f10a772750dfac1715464 +size 84708 diff --git a/datasets/pinganmajia/train/images/订单1813113_4_7167781.jpg b/datasets/pinganmajia/train/images/订单1813113_4_7167781.jpg new file mode 100644 index 0000000..f318491 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813113_4_7167781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ddece8da7d25deaf182785cc4f9930667a7370a8311b46750ce45ebeeb3d8f +size 219516 diff --git a/datasets/pinganmajia/train/images/订单1813114_4_7167820.jpg b/datasets/pinganmajia/train/images/订单1813114_4_7167820.jpg new file mode 100644 index 0000000..642ed1c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813114_4_7167820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1fcae7cf15719f5336c392f83945a4e0921054586f759750f906afaf48fa56 +size 236782 diff --git a/datasets/pinganmajia/train/images/订单1813115_4_7167897.jpg b/datasets/pinganmajia/train/images/订单1813115_4_7167897.jpg new file mode 100644 index 0000000..62f7e66 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813115_4_7167897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e9c3cf6a508b6fcedad5b1f662e20719b9bca5449a2d5c0f282ad315961449 +size 134332 diff --git a/datasets/pinganmajia/train/images/订单1813116_4_7167774.jpg b/datasets/pinganmajia/train/images/订单1813116_4_7167774.jpg new file mode 100644 index 0000000..3c29730 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813116_4_7167774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bfddae783b641758a338f717617644523d38717437c799fcf90da709e8ac5a +size 234874 diff --git a/datasets/pinganmajia/train/images/订单1813117_4_7167841.jpg b/datasets/pinganmajia/train/images/订单1813117_4_7167841.jpg new file mode 100644 index 0000000..bda8f78 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813117_4_7167841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cc0108f8b1ce41fde73ef1a3d3ed7574c1d8aeec7ceb20e890902a8edd981a +size 164525 diff --git a/datasets/pinganmajia/train/images/订单1813118_4_7167793.jpg b/datasets/pinganmajia/train/images/订单1813118_4_7167793.jpg new file mode 100644 index 0000000..6e9f471 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813118_4_7167793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43356a8c538b329b347a9617cfebe52e0d1b3b0505f2657bfe2b5d92afedb468 +size 78837 diff --git a/datasets/pinganmajia/train/images/订单1813122_4_7167849.jpg b/datasets/pinganmajia/train/images/订单1813122_4_7167849.jpg new file mode 100644 index 0000000..324fc23 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813122_4_7167849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae26d69862464740f45007eee2c1f1a0f16da7f9a82c70478112181ce664368 +size 167632 diff --git a/datasets/pinganmajia/train/images/订单1813125_4_7168024.jpg b/datasets/pinganmajia/train/images/订单1813125_4_7168024.jpg new file mode 100644 index 0000000..13271b8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813125_4_7168024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5dc36f20b8678e95d9b7fe827ecb9d32997c9d63ee9e078308504c9d87c56b5 +size 133165 diff --git a/datasets/pinganmajia/train/images/订单1813127_4_7167876.jpg b/datasets/pinganmajia/train/images/订单1813127_4_7167876.jpg new file mode 100644 index 0000000..9231bf3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813127_4_7167876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d58de7b4a3af897fcd39505d15107f7fc68f76e63fd35f80e84a45769d58d85 +size 309956 diff --git a/datasets/pinganmajia/train/images/订单1813128_4_7167991.jpg b/datasets/pinganmajia/train/images/订单1813128_4_7167991.jpg new file mode 100644 index 0000000..480b7b8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813128_4_7167991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32733424d6708dcf9a5dfd421c23b77cf2109f209b382d3ce7463f83e75542f +size 72264 diff --git a/datasets/pinganmajia/train/images/订单1813129_4_7167999.jpg b/datasets/pinganmajia/train/images/订单1813129_4_7167999.jpg new file mode 100644 index 0000000..e55a8b0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813129_4_7167999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16db9aaa759cfb5ced491f258b2882f93fcb7520492730f3db293e18212b5ce +size 104734 diff --git a/datasets/pinganmajia/train/images/订单1813130_4_7167869.jpg b/datasets/pinganmajia/train/images/订单1813130_4_7167869.jpg new file mode 100644 index 0000000..e8946b2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813130_4_7167869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afa1fa7eb60c14a95fadd615971e841733e66664f9fe14674fbfa249b8cd920 +size 191647 diff --git a/datasets/pinganmajia/train/images/订单1813131_4_7167968.jpg b/datasets/pinganmajia/train/images/订单1813131_4_7167968.jpg new file mode 100644 index 0000000..f709a73 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813131_4_7167968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50db928c682bacf6b91ce05399814522162861971e16d4841be86025d208c6f3 +size 486909 diff --git a/datasets/pinganmajia/train/images/订单1813133_4_7168075.jpg b/datasets/pinganmajia/train/images/订单1813133_4_7168075.jpg new file mode 100644 index 0000000..f58b185 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813133_4_7168075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914e8836ae4967186aff34317f92cb3fc465888e7c03938b1498d9fc73506175 +size 66974 diff --git a/datasets/pinganmajia/train/images/订单1813134_4_7168166.jpg b/datasets/pinganmajia/train/images/订单1813134_4_7168166.jpg new file mode 100644 index 0000000..48933b6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813134_4_7168166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd502dcefaede46998bbb2bb8969b4c21b6be211f0998436a4fa99757ce248c5 +size 134083 diff --git a/datasets/pinganmajia/train/images/订单1813135_4_7168032.jpg b/datasets/pinganmajia/train/images/订单1813135_4_7168032.jpg new file mode 100644 index 0000000..16cdba0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813135_4_7168032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ee32aa219d6dda8f05b0a6554a6fd1489c3c6ee1073da6babc67db1c4b0db3 +size 69570 diff --git a/datasets/pinganmajia/train/images/订单1813138_4_7168011.jpg b/datasets/pinganmajia/train/images/订单1813138_4_7168011.jpg new file mode 100644 index 0000000..cf81bcc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813138_4_7168011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d6b3efb41531dd6794810164421072b096fe70390a92b9aadfaf8067cfdb62 +size 459055 diff --git a/datasets/pinganmajia/train/images/订单1813140_4_7168239.jpg b/datasets/pinganmajia/train/images/订单1813140_4_7168239.jpg new file mode 100644 index 0000000..b0cc8c3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813140_4_7168239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598f3e91562dc07188ff19b74389b01ebbdafb396c5a7ce61bc7f78b9275ac6b +size 464459 diff --git a/datasets/pinganmajia/train/images/订单1813141_4_7168180.jpg b/datasets/pinganmajia/train/images/订单1813141_4_7168180.jpg new file mode 100644 index 0000000..e5cd72b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813141_4_7168180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef44ca328d7b0be05e9959bafdc3b75031ad150221633140162a43de9121e946 +size 135698 diff --git a/datasets/pinganmajia/train/images/订单1813142_4_7168140.jpg b/datasets/pinganmajia/train/images/订单1813142_4_7168140.jpg new file mode 100644 index 0000000..4a10cbd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813142_4_7168140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbe133b97451e732e9727cc18a5dc6fbdc68be7c14cdc6e8a4d83851da0e851 +size 501809 diff --git a/datasets/pinganmajia/train/images/订单1813143_4_7168109.jpg b/datasets/pinganmajia/train/images/订单1813143_4_7168109.jpg new file mode 100644 index 0000000..7fa6cbb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813143_4_7168109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed211f23f46b695afa0475be3e9575becf1b5e0c1724fc76bc4a5f5fec57bd6 +size 273071 diff --git a/datasets/pinganmajia/train/images/订单1813144_4_7168188.jpg b/datasets/pinganmajia/train/images/订单1813144_4_7168188.jpg new file mode 100644 index 0000000..337ac07 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813144_4_7168188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a9539bec08560757d8a68079d8db63797cf86200f490894972e24b0eaa77e9 +size 364598 diff --git a/datasets/pinganmajia/train/images/订单1813145_4_7168157.jpg b/datasets/pinganmajia/train/images/订单1813145_4_7168157.jpg new file mode 100644 index 0000000..8c8534d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813145_4_7168157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e5e8f8eba019f4083e86fcce8a5b64c84ca6d597f4395b30b939c543d93405 +size 82871 diff --git a/datasets/pinganmajia/train/images/订单1813147_4_7168133.jpg b/datasets/pinganmajia/train/images/订单1813147_4_7168133.jpg new file mode 100644 index 0000000..33569df --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813147_4_7168133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c213849e81bce14ef1225842a7899d0f5e53c1473ea3997e717fe16d1c7a59dd +size 399397 diff --git a/datasets/pinganmajia/train/images/订单1813152_4_7168211.jpg b/datasets/pinganmajia/train/images/订单1813152_4_7168211.jpg new file mode 100644 index 0000000..18b517a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813152_4_7168211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c13f123c6a8b03b6ba6f2fd21dbadaaa2396561786dfc2dc914e42ebefed576 +size 628255 diff --git a/datasets/pinganmajia/train/images/订单1813153_4_7168145.jpg b/datasets/pinganmajia/train/images/订单1813153_4_7168145.jpg new file mode 100644 index 0000000..8259d71 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813153_4_7168145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783f60bc89d3d61ba0f64bb49709a0b6ebac82395b0e1fd9d2ad1f7bbc9377c8 +size 112325 diff --git a/datasets/pinganmajia/train/images/订单1813154_4_7168289.jpg b/datasets/pinganmajia/train/images/订单1813154_4_7168289.jpg new file mode 100644 index 0000000..f12ac99 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813154_4_7168289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307e0f9fbdd4fca5ae8d37eb5c25907a5a7d0aedc441922a4ce3ed8cb35d58c5 +size 171610 diff --git a/datasets/pinganmajia/train/images/订单1813155_4_7168302.jpg b/datasets/pinganmajia/train/images/订单1813155_4_7168302.jpg new file mode 100644 index 0000000..a9b7af1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813155_4_7168302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65be956d147ebec31ed8e02dea8929f5407150b9cec1dc5f862ebe5dbe4b813c +size 148140 diff --git a/datasets/pinganmajia/train/images/订单1813156_4_7168179.jpg b/datasets/pinganmajia/train/images/订单1813156_4_7168179.jpg new file mode 100644 index 0000000..b9f4aeb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813156_4_7168179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebed0b9c45d8bd8c47968eca36e3edefb46ef74477d46bd0fe0107fdfb58c71 +size 497381 diff --git a/datasets/pinganmajia/train/images/订单1813157_4_7168363.jpg b/datasets/pinganmajia/train/images/订单1813157_4_7168363.jpg new file mode 100644 index 0000000..a956577 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813157_4_7168363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea4f5d37ad126279ad2aa3c6be34c2fe6d50d2f98808925fb94bc62884a3f3a +size 89409 diff --git a/datasets/pinganmajia/train/images/订单1813161_4_7168405.jpg b/datasets/pinganmajia/train/images/订单1813161_4_7168405.jpg new file mode 100644 index 0000000..bfa8bb9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813161_4_7168405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c254716319612f3f0b8ae65767a123b05f70b899f1775ec46e1e174399da838 +size 116487 diff --git a/datasets/pinganmajia/train/images/订单1813162_4_7168328.jpg b/datasets/pinganmajia/train/images/订单1813162_4_7168328.jpg new file mode 100644 index 0000000..b5cb6af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813162_4_7168328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe2b412bb36dcbfca5fbd05720e58bb66aecbebb8319e956fb41106d4eb06b0 +size 157191 diff --git a/datasets/pinganmajia/train/images/订单1813163_4_7168357.jpg b/datasets/pinganmajia/train/images/订单1813163_4_7168357.jpg new file mode 100644 index 0000000..317080d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813163_4_7168357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5adbf20db04b44957f3d7c5dbdafe1e093ec92a2c127dc4ddd6622187b6bf6f2 +size 142989 diff --git a/datasets/pinganmajia/train/images/订单1813164_4_7170947.jpg b/datasets/pinganmajia/train/images/订单1813164_4_7170947.jpg new file mode 100644 index 0000000..8b993e5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813164_4_7170947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c487fdd0003957bc9dd59281ca0868918ef939b67af89e2e1a42500237a55bb0 +size 153838 diff --git a/datasets/pinganmajia/train/images/订单1813165_4_7168539.jpg b/datasets/pinganmajia/train/images/订单1813165_4_7168539.jpg new file mode 100644 index 0000000..3338950 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813165_4_7168539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a27da30fc96ae60c8261adb17a5b53218bb07bff97197c3fadad2881bf34b7 +size 144806 diff --git a/datasets/pinganmajia/train/images/订单1813166_4_7168439.jpg b/datasets/pinganmajia/train/images/订单1813166_4_7168439.jpg new file mode 100644 index 0000000..76d6043 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813166_4_7168439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0655b7e07e695fe740d1a3cb5b2863843e57ccf01cdaec7247b5d89d57d778c0 +size 165750 diff --git a/datasets/pinganmajia/train/images/订单1813168_4_7168646.jpg b/datasets/pinganmajia/train/images/订单1813168_4_7168646.jpg new file mode 100644 index 0000000..c427235 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813168_4_7168646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784f9fc7c48b6921efd4171f44cfdfed3a069083b82a8e1a6f5c518095882ca7 +size 109489 diff --git a/datasets/pinganmajia/train/images/订单1813169_4_7168452.jpg b/datasets/pinganmajia/train/images/订单1813169_4_7168452.jpg new file mode 100644 index 0000000..544509c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813169_4_7168452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45350543cbcf2ed447a01388c70b1a70885d677ee90a91811a920fbf88f72519 +size 131102 diff --git a/datasets/pinganmajia/train/images/订单1813171_4_7168417.jpg b/datasets/pinganmajia/train/images/订单1813171_4_7168417.jpg new file mode 100644 index 0000000..4321e5e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813171_4_7168417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464470c9544f5f954a683a8177c649a7443a7187d6580276733c7f1baa6e0651 +size 136994 diff --git a/datasets/pinganmajia/train/images/订单1813172_4_7168443.jpg b/datasets/pinganmajia/train/images/订单1813172_4_7168443.jpg new file mode 100644 index 0000000..3f7c94e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813172_4_7168443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d7a13018c3832dac8b0be71a0db568612dcebbd76f8082bc0670935f5547e1 +size 315822 diff --git a/datasets/pinganmajia/train/images/订单1813174_4_7168483.jpg b/datasets/pinganmajia/train/images/订单1813174_4_7168483.jpg new file mode 100644 index 0000000..b0d7190 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813174_4_7168483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2f481052ce01d1fc8d05aa906782a7f7ecf8a5f8ec97ce0cb3f3c9f1bb5af6 +size 231781 diff --git a/datasets/pinganmajia/train/images/订单1813175_4_7168991.jpg b/datasets/pinganmajia/train/images/订单1813175_4_7168991.jpg new file mode 100644 index 0000000..4363963 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813175_4_7168991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a947766a5e3e8301e8b5656aba7a5cf92d9bfad505f9f31ea92fc9d30188bea6 +size 658980 diff --git a/datasets/pinganmajia/train/images/订单1813176_4_7168518.jpg b/datasets/pinganmajia/train/images/订单1813176_4_7168518.jpg new file mode 100644 index 0000000..1b61e02 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813176_4_7168518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd32061899e3fbb90a29af553bb433299a5d4e96e54922096e75431338ee85e +size 74620 diff --git a/datasets/pinganmajia/train/images/订单1813178_4_7168753.jpg b/datasets/pinganmajia/train/images/订单1813178_4_7168753.jpg new file mode 100644 index 0000000..4a9a188 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813178_4_7168753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8e129815849c7cc1fda5db61e427607c7af6f0b4c6c785adcd321a80ce60090 +size 184435 diff --git a/datasets/pinganmajia/train/images/订单1813179_4_7168525.jpg b/datasets/pinganmajia/train/images/订单1813179_4_7168525.jpg new file mode 100644 index 0000000..92eec87 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813179_4_7168525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b103f1441e6db0bfab9647b70b1f3c7f271380719c50663cb4eab41dbf55ac5 +size 188475 diff --git a/datasets/pinganmajia/train/images/订单1813180_4_7168620.jpg b/datasets/pinganmajia/train/images/订单1813180_4_7168620.jpg new file mode 100644 index 0000000..1f4d070 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813180_4_7168620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd38451bbc9085c9d09639eae865f6ed6755cab24db17e3eedea383087dd9062 +size 198695 diff --git a/datasets/pinganmajia/train/images/订单1813181_4_7168609.jpg b/datasets/pinganmajia/train/images/订单1813181_4_7168609.jpg new file mode 100644 index 0000000..bbae97a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813181_4_7168609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8415848b85eba148d35e9373ef3d30af236b2d25a987a1dbec2aae447f5da7 +size 74574 diff --git a/datasets/pinganmajia/train/images/订单1813184_4_7168666.jpg b/datasets/pinganmajia/train/images/订单1813184_4_7168666.jpg new file mode 100644 index 0000000..27bdb81 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813184_4_7168666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be33b17a22eeaa1737aab93682a5564a85db59ff9cc2805e2e54c70df9592be1 +size 667322 diff --git a/datasets/pinganmajia/train/images/订单1813186_4_7168571.jpg b/datasets/pinganmajia/train/images/订单1813186_4_7168571.jpg new file mode 100644 index 0000000..9377c6a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813186_4_7168571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc47e1a023c9578bdb4c9b1c27231c583e9c8582ebc19b698625e6ee82b1d353 +size 161439 diff --git a/datasets/pinganmajia/train/images/订单1813189_4_7168505.jpg b/datasets/pinganmajia/train/images/订单1813189_4_7168505.jpg new file mode 100644 index 0000000..dc39d24 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813189_4_7168505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5833bd51213cfd91150246405a5abfa31a4ab709359c22e7a0afd12063eef2e +size 86263 diff --git a/datasets/pinganmajia/train/images/订单1813191_4_7168612.jpg b/datasets/pinganmajia/train/images/订单1813191_4_7168612.jpg new file mode 100644 index 0000000..7faee15 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813191_4_7168612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a028e99a8d3ae128561d184c725cf4b8a70fa6282b6d4f3c0ee7f4df1a6c0ec1 +size 348707 diff --git a/datasets/pinganmajia/train/images/订单1813192_4_7168502.jpg b/datasets/pinganmajia/train/images/订单1813192_4_7168502.jpg new file mode 100644 index 0000000..500e1f8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813192_4_7168502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:277630cf958a311d7c772cac3e7445e56abb621961955285d5fc60451229bb0c +size 148850 diff --git a/datasets/pinganmajia/train/images/订单1813194_4_7168593.jpg b/datasets/pinganmajia/train/images/订单1813194_4_7168593.jpg new file mode 100644 index 0000000..b82e77c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813194_4_7168593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8828bafefe6a758e08a16f145f53cde473858a0887605fdd0b5e7cc07c0caa8 +size 85527 diff --git a/datasets/pinganmajia/train/images/订单1813195_4_7168618.jpg b/datasets/pinganmajia/train/images/订单1813195_4_7168618.jpg new file mode 100644 index 0000000..b29a5b7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813195_4_7168618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7419e6bed36972c1014e4878c0b01ad40358cc2cbb3a2ae276b7d69a665143 +size 111254 diff --git a/datasets/pinganmajia/train/images/订单1813196_4_7168680.jpg b/datasets/pinganmajia/train/images/订单1813196_4_7168680.jpg new file mode 100644 index 0000000..e6b5bfe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813196_4_7168680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8f01a89c6c18f9506cbd9e440a6ec123e927bcc3fe38cae055a04a642da14d +size 160221 diff --git a/datasets/pinganmajia/train/images/订单1813199_4_7168695.jpg b/datasets/pinganmajia/train/images/订单1813199_4_7168695.jpg new file mode 100644 index 0000000..618ec2e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813199_4_7168695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7755a66358b5cccf6ae70c8ab02a4c155120864d561030f7c93908f6c5f8a0 +size 149720 diff --git a/datasets/pinganmajia/train/images/订单1813200_4_7168731.jpg b/datasets/pinganmajia/train/images/订单1813200_4_7168731.jpg new file mode 100644 index 0000000..a04584c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813200_4_7168731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2f07edd85f3e117c513acb03c673c09243bfdd0512d5987cc9da51b13ffa07 +size 459002 diff --git a/datasets/pinganmajia/train/images/订单1813203_4_7168684.jpg b/datasets/pinganmajia/train/images/订单1813203_4_7168684.jpg new file mode 100644 index 0000000..453f5eb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813203_4_7168684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981ac1be49945396fae4c4cb0ea0ff0bae3c0cd1787f6e49486fb9834aaa9af6 +size 800740 diff --git a/datasets/pinganmajia/train/images/订单1813204_4_7168706.jpg b/datasets/pinganmajia/train/images/订单1813204_4_7168706.jpg new file mode 100644 index 0000000..30dc676 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813204_4_7168706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa97d75dd56944ad20757bbc1d6fa923555983d283dbfee71cd9295989336965 +size 416865 diff --git a/datasets/pinganmajia/train/images/订单1813207_4_7168800.jpg b/datasets/pinganmajia/train/images/订单1813207_4_7168800.jpg new file mode 100644 index 0000000..81a6321 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813207_4_7168800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ac0187d6a384ffa23fa730d7a0ed1a304b76ee011ff9ec71666a63e8078da3 +size 73399 diff --git a/datasets/pinganmajia/train/images/订单1813208_4_7168822.jpg b/datasets/pinganmajia/train/images/订单1813208_4_7168822.jpg new file mode 100644 index 0000000..e30a06f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813208_4_7168822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7acc01989f2ff21a257ee43bba398d5324144a8ecc29999243ed4eb6f2c84f +size 166631 diff --git a/datasets/pinganmajia/train/images/订单1813210_4_7168720.jpg b/datasets/pinganmajia/train/images/订单1813210_4_7168720.jpg new file mode 100644 index 0000000..57a4d53 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813210_4_7168720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dddc2817fa43e6d39aca12d1b43ffe0f6dbf50a5224ee33f6da9c2febf56cd +size 122530 diff --git a/datasets/pinganmajia/train/images/订单1813211_4_7168752.jpg b/datasets/pinganmajia/train/images/订单1813211_4_7168752.jpg new file mode 100644 index 0000000..698ac85 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813211_4_7168752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bc62f265d414e19ded5b97fe50f73879790b1e02da47c528180e104a595f34 +size 137357 diff --git a/datasets/pinganmajia/train/images/订单1813214_4_7168961.jpg b/datasets/pinganmajia/train/images/订单1813214_4_7168961.jpg new file mode 100644 index 0000000..30ebd0b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813214_4_7168961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78d418e9bb1c746cf50deba56e785d9c0ef823f3d157ea1854a2a4802319f5a +size 89908 diff --git a/datasets/pinganmajia/train/images/订单1813215_4_7168830.jpg b/datasets/pinganmajia/train/images/订单1813215_4_7168830.jpg new file mode 100644 index 0000000..85e030f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813215_4_7168830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0adb6fbedbdd00afaf955270606339418ebdb4257ae294423ed6baca511d4f3 +size 83082 diff --git a/datasets/pinganmajia/train/images/订单1813216_4_7168849.jpg b/datasets/pinganmajia/train/images/订单1813216_4_7168849.jpg new file mode 100644 index 0000000..d3c6621 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813216_4_7168849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc4158204d04b46ad77e76d9373bba9cc9a91ba1c63547fec628a86147f11a5 +size 80847 diff --git a/datasets/pinganmajia/train/images/订单1813217_4_7168872.jpg b/datasets/pinganmajia/train/images/订单1813217_4_7168872.jpg new file mode 100644 index 0000000..fda9c4d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813217_4_7168872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad2f7547ff4a5bcf242785a99cc064e865dc8ada1ebe3a335aeaa3b26bb7808 +size 167604 diff --git a/datasets/pinganmajia/train/images/订单1813218_4_7168783.jpg b/datasets/pinganmajia/train/images/订单1813218_4_7168783.jpg new file mode 100644 index 0000000..b9bbb87 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813218_4_7168783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5644b4df809a5b77d2da86414ecab819eaba9c7431d04388be1cae05534face2 +size 193198 diff --git a/datasets/pinganmajia/train/images/订单1813220_4_7168840.jpg b/datasets/pinganmajia/train/images/订单1813220_4_7168840.jpg new file mode 100644 index 0000000..fa8b450 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813220_4_7168840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace1ece540388ccbb18d08c8ac5d7a0ccc9669e5fdb246c719aec7950b9527ad +size 140326 diff --git a/datasets/pinganmajia/train/images/订单1813221_4_7168876.jpg b/datasets/pinganmajia/train/images/订单1813221_4_7168876.jpg new file mode 100644 index 0000000..842f419 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813221_4_7168876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9834ca73e9e0d62d0f5d469e6c4f7cecc0d7013ee6ee8b8385016bb5a2edd4bb +size 587208 diff --git a/datasets/pinganmajia/train/images/订单1813222_4_7168971.jpg b/datasets/pinganmajia/train/images/订单1813222_4_7168971.jpg new file mode 100644 index 0000000..668f63e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813222_4_7168971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb79b5a6af378099b6df30728ee18c9c6d46bdfbe4a79535e5a598d3cc17d58 +size 85056 diff --git a/datasets/pinganmajia/train/images/订单1813223_4_7168941.jpg b/datasets/pinganmajia/train/images/订单1813223_4_7168941.jpg new file mode 100644 index 0000000..6e33b02 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813223_4_7168941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4058d782bd44b3db7915188f316ef7657108f74dbb14634d2f43101aa07ceb23 +size 337916 diff --git a/datasets/pinganmajia/train/images/订单1813224_4_7168908.jpg b/datasets/pinganmajia/train/images/订单1813224_4_7168908.jpg new file mode 100644 index 0000000..3d36688 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813224_4_7168908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6025a2b3e22c77ba67ba2a075baee239e90f731b97351feb586ca94c2dcd1daa +size 136327 diff --git a/datasets/pinganmajia/train/images/订单1813225_4_7168925.jpg b/datasets/pinganmajia/train/images/订单1813225_4_7168925.jpg new file mode 100644 index 0000000..da728be --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813225_4_7168925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b05041ed3264586b0b36e1af4715e6a31332230a997bc8ca39586c7c8d4dcb +size 100177 diff --git a/datasets/pinganmajia/train/images/订单1813226_4_7168891.jpg b/datasets/pinganmajia/train/images/订单1813226_4_7168891.jpg new file mode 100644 index 0000000..5aed2d1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813226_4_7168891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17ae51ec2b791c1220d03dc2e61cc780fdfcb82ba607f9c288a232b9dc9e96d +size 107845 diff --git a/datasets/pinganmajia/train/images/订单1813227_4_7168977.jpg b/datasets/pinganmajia/train/images/订单1813227_4_7168977.jpg new file mode 100644 index 0000000..8f1e440 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813227_4_7168977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26380a52336a1f5fe70f09e40b95365334db80a37393bb2902bde33f03c139d3 +size 147063 diff --git a/datasets/pinganmajia/train/images/订单1813228_4_7168950.jpg b/datasets/pinganmajia/train/images/订单1813228_4_7168950.jpg new file mode 100644 index 0000000..f6d0d35 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813228_4_7168950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5efd18cf8adccab6aaf6a7ba10d273890236dbde2aabf39f51bc84c90d4a62d +size 458484 diff --git a/datasets/pinganmajia/train/images/订单1813229_4_7168984.jpg b/datasets/pinganmajia/train/images/订单1813229_4_7168984.jpg new file mode 100644 index 0000000..11a34e5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813229_4_7168984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c995be3902c1c1e755c85fa8a56a8f0f6bd185ab80e0363c7e66a3043657796 +size 577758 diff --git a/datasets/pinganmajia/train/images/订单1813230_4_7169047.jpg b/datasets/pinganmajia/train/images/订单1813230_4_7169047.jpg new file mode 100644 index 0000000..b6f70d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813230_4_7169047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af6227f9dcf685b9cb9eae197f2a7416914e000d36c19ed28bb501a80304043 +size 157846 diff --git a/datasets/pinganmajia/train/images/订单1813236_4_7169057.jpg b/datasets/pinganmajia/train/images/订单1813236_4_7169057.jpg new file mode 100644 index 0000000..dbc9501 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813236_4_7169057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3860a9768a51ab86b8cd97e2783b0a4d07f76160703adf5bb1cd1417f48e60fa +size 183859 diff --git a/datasets/pinganmajia/train/images/订单1813237_4_7169282.jpg b/datasets/pinganmajia/train/images/订单1813237_4_7169282.jpg new file mode 100644 index 0000000..e368d70 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813237_4_7169282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0402c6f6b86c7b6c550276bab64e1965038acf2724aca6fedfc2535d81fc122 +size 191951 diff --git a/datasets/pinganmajia/train/images/订单1813238_4_7172675.jpg b/datasets/pinganmajia/train/images/订单1813238_4_7172675.jpg new file mode 100644 index 0000000..dcfc5b4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813238_4_7172675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb32234f187e7b00aa3ebd363b261091a1dca7fae15111e14f51f0e0068a28f +size 80341 diff --git a/datasets/pinganmajia/train/images/订单1813239_4_7169046.jpg b/datasets/pinganmajia/train/images/订单1813239_4_7169046.jpg new file mode 100644 index 0000000..ec870ca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813239_4_7169046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c44090791ecde4a27735f7706c57ca10a637d7260c4b9a9eeb3288d77bb876 +size 124918 diff --git a/datasets/pinganmajia/train/images/订单1813240_4_7169123.jpg b/datasets/pinganmajia/train/images/订单1813240_4_7169123.jpg new file mode 100644 index 0000000..a2c3d45 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813240_4_7169123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2447a9eb1d37483ed9d100e6ee6269e81dc276d11a3c554d27dbade9d2242d +size 133244 diff --git a/datasets/pinganmajia/train/images/订单1813241_4_7169087.jpg b/datasets/pinganmajia/train/images/订单1813241_4_7169087.jpg new file mode 100644 index 0000000..0cf53da --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813241_4_7169087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af47d0186f85a6b447e1bc1055c599830fff5805c4bffdcbdea59eab494affa +size 86563 diff --git a/datasets/pinganmajia/train/images/订单1813242_4_7169130.jpg b/datasets/pinganmajia/train/images/订单1813242_4_7169130.jpg new file mode 100644 index 0000000..01af65b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813242_4_7169130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c87cb67d77f92cb7ce1b8a4d62569f83185b006a745ab8d4aa2aaccca7283b +size 333482 diff --git a/datasets/pinganmajia/train/images/订单1813243_4_7169062.jpg b/datasets/pinganmajia/train/images/订单1813243_4_7169062.jpg new file mode 100644 index 0000000..9c12f27 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813243_4_7169062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f86a3a49f797f4ce2c7f0dc0ae9f1dc81ed7358956cb838decb0a3e109b5c3d +size 434496 diff --git a/datasets/pinganmajia/train/images/订单1813246_4_7169984.jpg b/datasets/pinganmajia/train/images/订单1813246_4_7169984.jpg new file mode 100644 index 0000000..8eeef5f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813246_4_7169984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbc473127e90407a44bbbba03c58ca04efe84a5a33bcd571d52725e43ac03f5 +size 443857 diff --git a/datasets/pinganmajia/train/images/订单1813248_4_7169196.jpg b/datasets/pinganmajia/train/images/订单1813248_4_7169196.jpg new file mode 100644 index 0000000..7f2f3f7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813248_4_7169196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2dd70427afba3c844cb3de3c6f3b90ef1621e34ac2c84988edd4bd6b838fa7 +size 111878 diff --git a/datasets/pinganmajia/train/images/订单1813252_4_7169184.jpg b/datasets/pinganmajia/train/images/订单1813252_4_7169184.jpg new file mode 100644 index 0000000..b7f6795 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813252_4_7169184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e755b24313ae10e17a3f95bbeeb2b2e2d7852c54096fa9c18262db43e6e8453a +size 164388 diff --git a/datasets/pinganmajia/train/images/订单1813253_4_7169158.jpg b/datasets/pinganmajia/train/images/订单1813253_4_7169158.jpg new file mode 100644 index 0000000..e12ab56 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813253_4_7169158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183341193a55d45e616baf76edaaee22e87c96f356db147ce4c42ef495e47e8c +size 92503 diff --git a/datasets/pinganmajia/train/images/订单1813254_4_7169197.jpg b/datasets/pinganmajia/train/images/订单1813254_4_7169197.jpg new file mode 100644 index 0000000..0cde900 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813254_4_7169197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c1e35a05cd014d70ef56e1d4aaa85a0d14348b83a12a7d14ae4b74383d9b1d +size 155570 diff --git a/datasets/pinganmajia/train/images/订单1813255_4_7169178.jpg b/datasets/pinganmajia/train/images/订单1813255_4_7169178.jpg new file mode 100644 index 0000000..95b4450 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813255_4_7169178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6422e485d803ad14c5d7771699d7845e334d9e070de71b77734029e64d1849c4 +size 483525 diff --git a/datasets/pinganmajia/train/images/订单1813256_4_7169539.jpg b/datasets/pinganmajia/train/images/订单1813256_4_7169539.jpg new file mode 100644 index 0000000..23d9e62 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813256_4_7169539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49528c3eb50c65878095e3402a22d82dbeacae74ebf8bd2c664a3c7e91e311f3 +size 112284 diff --git a/datasets/pinganmajia/train/images/订单1813257_4_7169198.jpg b/datasets/pinganmajia/train/images/订单1813257_4_7169198.jpg new file mode 100644 index 0000000..8d5859e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813257_4_7169198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc2c9f80285f48ce89249ab06dba6e1180919dc0e8b0eea6996bc5184e79c62 +size 100639 diff --git a/datasets/pinganmajia/train/images/订单1813258_4_7169186.jpg b/datasets/pinganmajia/train/images/订单1813258_4_7169186.jpg new file mode 100644 index 0000000..3bf07d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813258_4_7169186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c360bb500b497e8fbda7ea433938ac545f3b6f315c485d0277b9ad1f75f81b2 +size 122329 diff --git a/datasets/pinganmajia/train/images/订单1813259_4_7169217.jpg b/datasets/pinganmajia/train/images/订单1813259_4_7169217.jpg new file mode 100644 index 0000000..326a65c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813259_4_7169217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e78397c524866ccea4134ecce96517f408da1feb2b513f6ce0a9b40bf7022c +size 195110 diff --git a/datasets/pinganmajia/train/images/订单1813262_4_7169291.jpg b/datasets/pinganmajia/train/images/订单1813262_4_7169291.jpg new file mode 100644 index 0000000..fa3ad0a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813262_4_7169291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5deb49445dcb18f6c93e188aedfca96b08ae7fdce43c7d8e805d88b069986817 +size 96378 diff --git a/datasets/pinganmajia/train/images/订单1813263_4_7169243.jpg b/datasets/pinganmajia/train/images/订单1813263_4_7169243.jpg new file mode 100644 index 0000000..3a5e679 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813263_4_7169243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15a4f558e6b096235eef71d069735b038f153250ace472545393cd3ba1483bb +size 252905 diff --git a/datasets/pinganmajia/train/images/订单1813264_4_7169305.jpg b/datasets/pinganmajia/train/images/订单1813264_4_7169305.jpg new file mode 100644 index 0000000..10a57b1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813264_4_7169305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92575676939af2b35086c167aad595df689063c7bc299c7fda96f654736fb66d +size 166341 diff --git a/datasets/pinganmajia/train/images/订单1813266_4_7169326.jpg b/datasets/pinganmajia/train/images/订单1813266_4_7169326.jpg new file mode 100644 index 0000000..22794eb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813266_4_7169326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34184d71ffe3cd628c6872b852df5833ac573b0cd4c983dd3362271ee50ce761 +size 205533 diff --git a/datasets/pinganmajia/train/images/订单1813268_4_7169280.jpg b/datasets/pinganmajia/train/images/订单1813268_4_7169280.jpg new file mode 100644 index 0000000..80c9488 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813268_4_7169280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08cd907b95c3ce41386fa98f876b62e6bff7c7e535e6eeeb259cadb1611c9680 +size 81665 diff --git a/datasets/pinganmajia/train/images/订单1813270_4_7169375.jpg b/datasets/pinganmajia/train/images/订单1813270_4_7169375.jpg new file mode 100644 index 0000000..1e33a73 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813270_4_7169375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e168c9d3286cbd08027b9e00115f0c840df95136f17ca9928f6d0e717d7df0fb +size 89279 diff --git a/datasets/pinganmajia/train/images/订单1813271_4_7169335.jpg b/datasets/pinganmajia/train/images/订单1813271_4_7169335.jpg new file mode 100644 index 0000000..8a509dd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813271_4_7169335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1cd23de233849367814d123b9e3f11a4ce9bc00ffa7e059390cc2d3055318aa +size 278947 diff --git a/datasets/pinganmajia/train/images/订单1813273_4_7169320.jpg b/datasets/pinganmajia/train/images/订单1813273_4_7169320.jpg new file mode 100644 index 0000000..ccde2cc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813273_4_7169320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392dd4b4a9c87f2fc017a28ea34ebf050965f2bf1c0daef608de1965091b753b +size 86059 diff --git a/datasets/pinganmajia/train/images/订单1813278_4_7170283.jpg b/datasets/pinganmajia/train/images/订单1813278_4_7170283.jpg new file mode 100644 index 0000000..b88ba61 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813278_4_7170283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2bf1202225585ffb2404db1dfc7b82470743a0ae30828b6f369650bd5d8fca +size 198998 diff --git a/datasets/pinganmajia/train/images/订单1813279_4_7169501.jpg b/datasets/pinganmajia/train/images/订单1813279_4_7169501.jpg new file mode 100644 index 0000000..f32d1ea --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813279_4_7169501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e280e87ab0e03dc7a6d00c2dcc8c6c4c9c88a9cc0ae94437d4697ba443c7dfd4 +size 118544 diff --git a/datasets/pinganmajia/train/images/订单1813280_4_7169478.jpg b/datasets/pinganmajia/train/images/订单1813280_4_7169478.jpg new file mode 100644 index 0000000..3364fe1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813280_4_7169478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7522550cc5adafe50f7594f3f80ecf0574eba52fb79cf5e0e3436cbd1d5e08e +size 98310 diff --git a/datasets/pinganmajia/train/images/订单1813281_4_7169515.jpg b/datasets/pinganmajia/train/images/订单1813281_4_7169515.jpg new file mode 100644 index 0000000..e8396d9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813281_4_7169515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963334e1ab7e03dd0a9254370d38b5b993d463f439f893520d58d18f413ea461 +size 65364 diff --git a/datasets/pinganmajia/train/images/订单1813283_4_7169624.jpg b/datasets/pinganmajia/train/images/订单1813283_4_7169624.jpg new file mode 100644 index 0000000..0fff6bf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813283_4_7169624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c566dc576a320a8bfcf3d4b5742b028f1edb578c17f443a065905e8122a5b7e +size 103286 diff --git a/datasets/pinganmajia/train/images/订单1813284_4_7169480.jpg b/datasets/pinganmajia/train/images/订单1813284_4_7169480.jpg new file mode 100644 index 0000000..7eabb6c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813284_4_7169480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017bb6b6d5c975df87ee8e5d731fa32244ef7c084e5d7bce9e9340f75f557bd6 +size 61363 diff --git a/datasets/pinganmajia/train/images/订单1813286_4_7169463.jpg b/datasets/pinganmajia/train/images/订单1813286_4_7169463.jpg new file mode 100644 index 0000000..5ec419b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813286_4_7169463.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418f649845a871250f017ad365f1ae6a08309b1698e9c8facfa7f1c22a3467a8 +size 282419 diff --git a/datasets/pinganmajia/train/images/订单1813287_4_7169537.jpg b/datasets/pinganmajia/train/images/订单1813287_4_7169537.jpg new file mode 100644 index 0000000..d079dbe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813287_4_7169537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d2f902cf7c978f2386b4496e4a2afeeda2f43fe9df33112ef9b1890b52ed79 +size 43254 diff --git a/datasets/pinganmajia/train/images/订单1813288_4_7169746.jpg b/datasets/pinganmajia/train/images/订单1813288_4_7169746.jpg new file mode 100644 index 0000000..b143138 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813288_4_7169746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d54e2ca8227495d30fdbfafadbbaff10992679b68ba0ccee0e6c64660883830 +size 105340 diff --git a/datasets/pinganmajia/train/images/订单1813290_4_7169497.jpg b/datasets/pinganmajia/train/images/订单1813290_4_7169497.jpg new file mode 100644 index 0000000..4f780a3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813290_4_7169497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783703ced3f5f67b79128938f47fb96fdceaf33da1eed23a89862ad8e4c7c971 +size 271995 diff --git a/datasets/pinganmajia/train/images/订单1813292_4_7169660.jpg b/datasets/pinganmajia/train/images/订单1813292_4_7169660.jpg new file mode 100644 index 0000000..eb66925 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813292_4_7169660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53eda0bed9e14d7e1aa4c6176eb2dc18dc7c3cf2baa42a765ecabca73fb2b7d +size 97412 diff --git a/datasets/pinganmajia/train/images/订单1813293_4_7169606.jpg b/datasets/pinganmajia/train/images/订单1813293_4_7169606.jpg new file mode 100644 index 0000000..d8c3b42 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813293_4_7169606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf24246dcf9bcb91e3ba3d66558a1d0ee8d2de17ac7ae236b8a7a8f11c84af70 +size 361862 diff --git a/datasets/pinganmajia/train/images/订单1813294_4_7169540.jpg b/datasets/pinganmajia/train/images/订单1813294_4_7169540.jpg new file mode 100644 index 0000000..5e2db26 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813294_4_7169540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74955549040f5c6906ab6c19a986fc6751fe92c487ace661c4659b98dbc88db +size 85613 diff --git a/datasets/pinganmajia/train/images/订单1813295_4_7169584.jpg b/datasets/pinganmajia/train/images/订单1813295_4_7169584.jpg new file mode 100644 index 0000000..f37012e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813295_4_7169584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccab7de0c81265cf6c87a52ab309a121bede684449ecf3546402274cdfe2c90 +size 533063 diff --git a/datasets/pinganmajia/train/images/订单1813297_4_7169541.jpg b/datasets/pinganmajia/train/images/订单1813297_4_7169541.jpg new file mode 100644 index 0000000..337df5f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813297_4_7169541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96f07cf21a253ca97dd7f605c4342705205977dfbf24111f733fe7e7eb37c55 +size 165969 diff --git a/datasets/pinganmajia/train/images/订单1813300_4_7169514.jpg b/datasets/pinganmajia/train/images/订单1813300_4_7169514.jpg new file mode 100644 index 0000000..93d96fd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813300_4_7169514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0230d2a738cb4e7cc0aa64bf502f6f73878a368bd5feda0ad1aa7fe7465b60d +size 173608 diff --git a/datasets/pinganmajia/train/images/订单1813303_4_7169815.jpg b/datasets/pinganmajia/train/images/订单1813303_4_7169815.jpg new file mode 100644 index 0000000..8e7d7ba --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813303_4_7169815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe5b32ce8d13c205475ce3067f2f52d859eeeffc4e46b44848d5f8850f3ed34 +size 683096 diff --git a/datasets/pinganmajia/train/images/订单1813306_4_7169638.jpg b/datasets/pinganmajia/train/images/订单1813306_4_7169638.jpg new file mode 100644 index 0000000..c7d7e81 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813306_4_7169638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c8adc3bce04ff5aac6f7f93872891ee2960123ae2fd4143369832e186d5b1f +size 69339 diff --git a/datasets/pinganmajia/train/images/订单1813309_4_7169673.jpg b/datasets/pinganmajia/train/images/订单1813309_4_7169673.jpg new file mode 100644 index 0000000..3fadbbf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813309_4_7169673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a64c58caef744e983e379d55cd44308df71d43df64bac5799b7fee8a5cf1941 +size 156064 diff --git a/datasets/pinganmajia/train/images/订单1813311_4_7169665.jpg b/datasets/pinganmajia/train/images/订单1813311_4_7169665.jpg new file mode 100644 index 0000000..cde2e84 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813311_4_7169665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6950781767a4024321bcf5ad64defb339c9bdb24554730b85491e04524384915 +size 92920 diff --git a/datasets/pinganmajia/train/images/订单1813312_4_7169693.jpg b/datasets/pinganmajia/train/images/订单1813312_4_7169693.jpg new file mode 100644 index 0000000..95c3492 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813312_4_7169693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eba51275e6a1007acfb49ab1fd27795c2e523604db17aeaa4b79fb96534c768 +size 236111 diff --git a/datasets/pinganmajia/train/images/订单1813313_4_7169842.jpg b/datasets/pinganmajia/train/images/订单1813313_4_7169842.jpg new file mode 100644 index 0000000..549bd95 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813313_4_7169842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23572e34658d0b1d4883966a4343691371c662971742e5dd13988a6507287e91 +size 137150 diff --git a/datasets/pinganmajia/train/images/订单1813314_4_7169664.jpg b/datasets/pinganmajia/train/images/订单1813314_4_7169664.jpg new file mode 100644 index 0000000..278e57d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813314_4_7169664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e953da6c92010c18231476b2ad6da95d718211ccd4a8eab5d30651f0c5688cec +size 127485 diff --git a/datasets/pinganmajia/train/images/订单1813315_4_7169807.jpg b/datasets/pinganmajia/train/images/订单1813315_4_7169807.jpg new file mode 100644 index 0000000..d54093c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813315_4_7169807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1b6b2238479fb1fe88d28ee091bb3929194b07b3e8cfae176b9603091b30ce +size 369502 diff --git a/datasets/pinganmajia/train/images/订单1813316_4_7169786.jpg b/datasets/pinganmajia/train/images/订单1813316_4_7169786.jpg new file mode 100644 index 0000000..fe25627 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813316_4_7169786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c890e7dbbd41e169f2ff5c891d50cb3480887d486bd3fc4ffed29ab355156c55 +size 79296 diff --git a/datasets/pinganmajia/train/images/订单1813318_4_7169728.jpg b/datasets/pinganmajia/train/images/订单1813318_4_7169728.jpg new file mode 100644 index 0000000..a5ba41d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813318_4_7169728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b56419c2b99615378dfb8f870878fc33fe301f7022e678c6da631b4a08362f +size 98044 diff --git a/datasets/pinganmajia/train/images/订单1813319_4_7169705.jpg b/datasets/pinganmajia/train/images/订单1813319_4_7169705.jpg new file mode 100644 index 0000000..65637d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813319_4_7169705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b572793d23e7829b8db18a10c223986278907ff5d0d155cf82a8ec228311aa +size 105769 diff --git a/datasets/pinganmajia/train/images/订单1813326_4_7169877.jpg b/datasets/pinganmajia/train/images/订单1813326_4_7169877.jpg new file mode 100644 index 0000000..5cf7045 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813326_4_7169877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50191896143b823b2c56d7f3bb0f7048b84f8571db109ca2befee1979997660f +size 73855 diff --git a/datasets/pinganmajia/train/images/订单1813327_4_7169909.jpg b/datasets/pinganmajia/train/images/订单1813327_4_7169909.jpg new file mode 100644 index 0000000..3d33b30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813327_4_7169909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c908bf599ecb851130d48dad6b0ea34c3e86b36a10fde4a28d4876da66aad9f7 +size 99874 diff --git a/datasets/pinganmajia/train/images/订单1813328_4_7169851.jpg b/datasets/pinganmajia/train/images/订单1813328_4_7169851.jpg new file mode 100644 index 0000000..f7bee6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813328_4_7169851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5c7a368a15280d44a5e8d5d9276b39a731d2bac2aadd5ec38447b17c314984 +size 307838 diff --git a/datasets/pinganmajia/train/images/订单1813330_4_7169916.jpg b/datasets/pinganmajia/train/images/订单1813330_4_7169916.jpg new file mode 100644 index 0000000..ba672be --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813330_4_7169916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d12de438c366d118e38fcbb533a44f07ab3bba93701d498c527f3d02169ac51 +size 241816 diff --git a/datasets/pinganmajia/train/images/订单1813331_4_7169901.jpg b/datasets/pinganmajia/train/images/订单1813331_4_7169901.jpg new file mode 100644 index 0000000..1375c54 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813331_4_7169901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b7a6c8e05466a61675994b9970b9518f6c40a6e0311c22017c6a31e7078787 +size 58146 diff --git a/datasets/pinganmajia/train/images/订单1813332_4_7169940.jpg b/datasets/pinganmajia/train/images/订单1813332_4_7169940.jpg new file mode 100644 index 0000000..7390b6a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813332_4_7169940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c235fb2e702382b8cd2f4e85271843aef2e458a0688b4aef2aeab02cb8d1d391 +size 85949 diff --git a/datasets/pinganmajia/train/images/订单1813333_4_7170013.jpg b/datasets/pinganmajia/train/images/订单1813333_4_7170013.jpg new file mode 100644 index 0000000..447cb3a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813333_4_7170013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3972f11732c00229553b7e2fe5535de394f8b66b320cfa3f2e3ac52a0f5fc060 +size 53936 diff --git a/datasets/pinganmajia/train/images/订单1813336_4_7169964.jpg b/datasets/pinganmajia/train/images/订单1813336_4_7169964.jpg new file mode 100644 index 0000000..cbaae34 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813336_4_7169964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57528a06080ebca2250585d6b5eb6d64afef4023e0ee990c2ad807056f8d94dc +size 90447 diff --git a/datasets/pinganmajia/train/images/订单1813338_4_7170033.jpg b/datasets/pinganmajia/train/images/订单1813338_4_7170033.jpg new file mode 100644 index 0000000..28afc5b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813338_4_7170033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af26d6771bd4e8dd0cb616dc204ad0dacf4a2d7f9127eedf080856943309c3c2 +size 71825 diff --git a/datasets/pinganmajia/train/images/订单1813339_4_7169991.jpg b/datasets/pinganmajia/train/images/订单1813339_4_7169991.jpg new file mode 100644 index 0000000..61aedca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813339_4_7169991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b4039caed6e7639174da974f5c6fc21836bc8d3f8ec573bd9b09c492f006f1 +size 180110 diff --git a/datasets/pinganmajia/train/images/订单1813340_4_7169967.jpg b/datasets/pinganmajia/train/images/订单1813340_4_7169967.jpg new file mode 100644 index 0000000..5eeb5c8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813340_4_7169967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58999dfc92fe3589dbb7b9ad1e8b9d05e05a715daa89b0659e7535326c43a1c +size 143069 diff --git a/datasets/pinganmajia/train/images/订单1813341_4_7169999.jpg b/datasets/pinganmajia/train/images/订单1813341_4_7169999.jpg new file mode 100644 index 0000000..573f690 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813341_4_7169999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cadc5ef63d21fe72a16b7b3ec7c4f619f5b813a16c6717f327ee91a4d41f11cd +size 66455 diff --git a/datasets/pinganmajia/train/images/订单1813342_4_7170024.jpg b/datasets/pinganmajia/train/images/订单1813342_4_7170024.jpg new file mode 100644 index 0000000..51fbd4e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813342_4_7170024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff41b946c65850230c94e5062f39994972b6021270bfbc52756f759e86d9757 +size 290071 diff --git a/datasets/pinganmajia/train/images/订单1813343_4_7169993.jpg b/datasets/pinganmajia/train/images/订单1813343_4_7169993.jpg new file mode 100644 index 0000000..c783542 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813343_4_7169993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df80b3d52ec427d8f5fba653492ae34ad77acf2173a8ea8e072fd6a354be26c9 +size 304988 diff --git a/datasets/pinganmajia/train/images/订单1813344_4_7170043.jpg b/datasets/pinganmajia/train/images/订单1813344_4_7170043.jpg new file mode 100644 index 0000000..2963d81 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813344_4_7170043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6e735d2b30bc480e1d7da87142b67e4228050c3d44e8ac05ce592516160f97 +size 92307 diff --git a/datasets/pinganmajia/train/images/订单1813345_4_7170088.jpg b/datasets/pinganmajia/train/images/订单1813345_4_7170088.jpg new file mode 100644 index 0000000..e03912f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813345_4_7170088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66088106f7887cae8387c509f45322f23f9079e2493d7e4f9c3c1e0e3df3ad94 +size 89112 diff --git a/datasets/pinganmajia/train/images/订单1813346_4_7170014.jpg b/datasets/pinganmajia/train/images/订单1813346_4_7170014.jpg new file mode 100644 index 0000000..f84356b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813346_4_7170014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07bfcb2509ac69fced04d8f3ed8a82e013bd6abe2cc2153aec75ce6dd854ce9e +size 97907 diff --git a/datasets/pinganmajia/train/images/订单1813348_4_7170159.jpg b/datasets/pinganmajia/train/images/订单1813348_4_7170159.jpg new file mode 100644 index 0000000..e46b4c3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813348_4_7170159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347107f2736281722a177e46684d45ef9d5e31fffd732c74973aa5528592d997 +size 351149 diff --git a/datasets/pinganmajia/train/images/订单1813351_4_7170172.jpg b/datasets/pinganmajia/train/images/订单1813351_4_7170172.jpg new file mode 100644 index 0000000..f97e6d1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813351_4_7170172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef8af6a5ab884a11f6989975c26ce4c7549e59017eec0c68982384d5576a15c +size 215446 diff --git a/datasets/pinganmajia/train/images/订单1813352_4_7170123.jpg b/datasets/pinganmajia/train/images/订单1813352_4_7170123.jpg new file mode 100644 index 0000000..f8dd7dc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813352_4_7170123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2ec24e66269c3cbebe35d1304264e76755cae75417f82344916ef2a9268a80 +size 114636 diff --git a/datasets/pinganmajia/train/images/订单1813353_4_7170139.jpg b/datasets/pinganmajia/train/images/订单1813353_4_7170139.jpg new file mode 100644 index 0000000..33b89cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813353_4_7170139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd2f06389194b4a77ea5986f5f89c2f4e12af0b75ec28b5df10a99fe9860eb4 +size 126285 diff --git a/datasets/pinganmajia/train/images/订单1813354_4_7170289.jpg b/datasets/pinganmajia/train/images/订单1813354_4_7170289.jpg new file mode 100644 index 0000000..35eda8c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813354_4_7170289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac5c12518bdd1a32a6c94be9f43e9b508904e64bb1fe36d83f769494a197fae +size 602847 diff --git a/datasets/pinganmajia/train/images/订单1813356_4_7170202.jpg b/datasets/pinganmajia/train/images/订单1813356_4_7170202.jpg new file mode 100644 index 0000000..46f6e27 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813356_4_7170202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f816528e8a18042cc001f031aa217a57f943cd395abfc237b6becd0ce684f9bd +size 319107 diff --git a/datasets/pinganmajia/train/images/订单1813357_4_7170200.jpg b/datasets/pinganmajia/train/images/订单1813357_4_7170200.jpg new file mode 100644 index 0000000..b8bcd5c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813357_4_7170200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0d8ed8d86edcd22cfff50899228e1b9fbdb785d33a1e98e363303cfe353c26 +size 215196 diff --git a/datasets/pinganmajia/train/images/订单1813358_4_7170108.jpg b/datasets/pinganmajia/train/images/订单1813358_4_7170108.jpg new file mode 100644 index 0000000..2468804 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813358_4_7170108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1362d0e3e8ebeaef0bfbdddaac8dc087d161ce046c08a2c05b1790806dd0ee07 +size 86110 diff --git a/datasets/pinganmajia/train/images/订单1813360_4_7170186.jpg b/datasets/pinganmajia/train/images/订单1813360_4_7170186.jpg new file mode 100644 index 0000000..c9166ab --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813360_4_7170186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b918432b63729ec302805ab5719e5d704dde38a4df5502e3aaeefd676bf8f8a +size 398823 diff --git a/datasets/pinganmajia/train/images/订单1813361_4_7170210.jpg b/datasets/pinganmajia/train/images/订单1813361_4_7170210.jpg new file mode 100644 index 0000000..1a67f0c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813361_4_7170210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425b3ed921c4e6c7d372aeb52eab98e7cb39f9f7cb7b07ecf18081020833b513 +size 101316 diff --git a/datasets/pinganmajia/train/images/订单1813362_4_7170217.jpg b/datasets/pinganmajia/train/images/订单1813362_4_7170217.jpg new file mode 100644 index 0000000..5ed0cef --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813362_4_7170217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ddac975944f731f03d4a235a1c2f93fefa815902efceb02600bf6e03e59637 +size 84572 diff --git a/datasets/pinganmajia/train/images/订单1813363_4_7170313.jpg b/datasets/pinganmajia/train/images/订单1813363_4_7170313.jpg new file mode 100644 index 0000000..fe3fea4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813363_4_7170313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e356fca49177233e33abd523eca3dfdf1c6fdd560a5172a9982ecded9f4d1c +size 101933 diff --git a/datasets/pinganmajia/train/images/订单1813364_4_7170227.jpg b/datasets/pinganmajia/train/images/订单1813364_4_7170227.jpg new file mode 100644 index 0000000..6a02127 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813364_4_7170227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad1266f21787cbbc3e56d669e20ad21e0d5556cd9263ae0d8e19890e80a9ec6 +size 205624 diff --git a/datasets/pinganmajia/train/images/订单1813365_4_7170218.jpg b/datasets/pinganmajia/train/images/订单1813365_4_7170218.jpg new file mode 100644 index 0000000..49d316d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813365_4_7170218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445c4578893faf9b166b4604e93468929c95d6a2832853fcc8bb75221b2b0870 +size 309841 diff --git a/datasets/pinganmajia/train/images/订单1813366_4_7170199.jpg b/datasets/pinganmajia/train/images/订单1813366_4_7170199.jpg new file mode 100644 index 0000000..cc44b30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813366_4_7170199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f8f9bdd9047dd6d693abd45a739e65baf277a11bc12e35d053a8ad24d92463 +size 71507 diff --git a/datasets/pinganmajia/train/images/订单1813367_4_7170345.jpg b/datasets/pinganmajia/train/images/订单1813367_4_7170345.jpg new file mode 100644 index 0000000..cf9a2e9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813367_4_7170345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f0fa2eb39a6269cae38083707b4a4eba6a9e170e00ad73f88ba85d76b1cd83 +size 63345 diff --git a/datasets/pinganmajia/train/images/订单1813368_4_7170434.jpg b/datasets/pinganmajia/train/images/订单1813368_4_7170434.jpg new file mode 100644 index 0000000..f7f52d5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813368_4_7170434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c341f8dc340b8d29e8fefc7a3cd2a442ffd581dce3a533d68c66b4543a7ac6 +size 165763 diff --git a/datasets/pinganmajia/train/images/订单1813369_4_7170409.jpg b/datasets/pinganmajia/train/images/订单1813369_4_7170409.jpg new file mode 100644 index 0000000..4f5a564 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813369_4_7170409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7023cecb01648c079acb677f2f8285c7d05e4aa95bbf81425ca83a8a85a4425e +size 78606 diff --git a/datasets/pinganmajia/train/images/订单1813370_4_7170327.jpg b/datasets/pinganmajia/train/images/订单1813370_4_7170327.jpg new file mode 100644 index 0000000..745ad58 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813370_4_7170327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad07dbcdcbf5ff008b1c505ca5dba4151037fbc970a959c365ff2f6c8387c4 +size 78369 diff --git a/datasets/pinganmajia/train/images/订单1813371_4_7170297.jpg b/datasets/pinganmajia/train/images/订单1813371_4_7170297.jpg new file mode 100644 index 0000000..d7b69ae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813371_4_7170297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9254cbb7a82c4402c7c26287f471fcf721f4fe46bf3481f039885f555646bccd +size 350664 diff --git a/datasets/pinganmajia/train/images/订单1813372_4_7170347.jpg b/datasets/pinganmajia/train/images/订单1813372_4_7170347.jpg new file mode 100644 index 0000000..c58187d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813372_4_7170347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482c44d1032ab41995ab0eb7c0d82a31ab74fa7730426dcad5788d2154d4601d +size 113986 diff --git a/datasets/pinganmajia/train/images/订单1813373_4_7170302.jpg b/datasets/pinganmajia/train/images/订单1813373_4_7170302.jpg new file mode 100644 index 0000000..3195421 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813373_4_7170302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9681c5de07ef3131cd872e7ec86d74f4d9864799aa321a55db987ae5c70b61 +size 185280 diff --git a/datasets/pinganmajia/train/images/订单1813374_4_7170358.jpg b/datasets/pinganmajia/train/images/订单1813374_4_7170358.jpg new file mode 100644 index 0000000..133a818 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813374_4_7170358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c901a0408d50bd65a727bf94cb91af277c98b3e384d76063032663c0a0e9f455 +size 441622 diff --git a/datasets/pinganmajia/train/images/订单1813375_4_7170381.jpg b/datasets/pinganmajia/train/images/订单1813375_4_7170381.jpg new file mode 100644 index 0000000..468b83f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813375_4_7170381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b6a0cd47a781f3378306ed3d1534a3e3afcc8a0ab39c4b683c470a7f0e84aa +size 72716 diff --git a/datasets/pinganmajia/train/images/订单1813376_4_7170319.jpg b/datasets/pinganmajia/train/images/订单1813376_4_7170319.jpg new file mode 100644 index 0000000..9d0a381 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813376_4_7170319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbfee33a07752a0b147ec284a7fa910fb4d1a411e5dca1a67b1d6b5b3422f38 +size 108591 diff --git a/datasets/pinganmajia/train/images/订单1813377_4_7170417.jpg b/datasets/pinganmajia/train/images/订单1813377_4_7170417.jpg new file mode 100644 index 0000000..b088f36 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813377_4_7170417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4915ead66dbadd441cb2b7b5a10326d87da246a45a5e0427f38e666c180b3c81 +size 215053 diff --git a/datasets/pinganmajia/train/images/订单1813378_4_7170395.jpg b/datasets/pinganmajia/train/images/订单1813378_4_7170395.jpg new file mode 100644 index 0000000..2ffdc49 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813378_4_7170395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6b89b9b85b9fbf8079a1fef72f1720bf8918f873849da1426ec7d8384f0180 +size 209544 diff --git a/datasets/pinganmajia/train/images/订单1813379_4_7170382.jpg b/datasets/pinganmajia/train/images/订单1813379_4_7170382.jpg new file mode 100644 index 0000000..5a6f64c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813379_4_7170382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00aacee5b96bbec1f7112ecc251cf4bf18141c07d07dbd7b1777bdb274f2043 +size 121668 diff --git a/datasets/pinganmajia/train/images/订单1813380_4_7170491.jpg b/datasets/pinganmajia/train/images/订单1813380_4_7170491.jpg new file mode 100644 index 0000000..1d0820d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813380_4_7170491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab04bf302b8854528f0d6be8617fa9c9ddafa3566884b8b8869dda5eba6af9c +size 66440 diff --git a/datasets/pinganmajia/train/images/订单1813382_4_7170452.jpg b/datasets/pinganmajia/train/images/订单1813382_4_7170452.jpg new file mode 100644 index 0000000..694acf2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813382_4_7170452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:674b8f31f6a10d62a34529d72c343bb2d6fd9eec00dd986a95d1e15cc3e255c0 +size 64335 diff --git a/datasets/pinganmajia/train/images/订单1813384_4_7170445.jpg b/datasets/pinganmajia/train/images/订单1813384_4_7170445.jpg new file mode 100644 index 0000000..4d4add4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813384_4_7170445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429b0008c797d8d689bc15571601f7d0f421ef6007f058c4c428b2d4c62f90dc +size 75311 diff --git a/datasets/pinganmajia/train/images/订单1813388_4_7170545.jpg b/datasets/pinganmajia/train/images/订单1813388_4_7170545.jpg new file mode 100644 index 0000000..df2f7cb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813388_4_7170545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cec6c2ae3b815d328a1f5205eefacc96eb66580ac1a185a225330a7f06e239a +size 164284 diff --git a/datasets/pinganmajia/train/images/订单1813389_4_7170518.jpg b/datasets/pinganmajia/train/images/订单1813389_4_7170518.jpg new file mode 100644 index 0000000..7bfa681 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813389_4_7170518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3aee7f240405e6d71e4b756fcd776d98fa77dd8036e7296db1be30fd817ec5 +size 144302 diff --git a/datasets/pinganmajia/train/images/订单1813390_4_7171588.jpg b/datasets/pinganmajia/train/images/订单1813390_4_7171588.jpg new file mode 100644 index 0000000..8d5e599 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813390_4_7171588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83e4bfa6c8d2b7257c30d493b9f062ef90b9a5f4ed0580fd580a4da29155149 +size 205570 diff --git a/datasets/pinganmajia/train/images/订单1813392_4_7170530.jpg b/datasets/pinganmajia/train/images/订单1813392_4_7170530.jpg new file mode 100644 index 0000000..4734b1a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813392_4_7170530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e20098900677d7c11bd40436076c4f2207031b8672dd36fa6beb4974d21f3cc +size 210952 diff --git a/datasets/pinganmajia/train/images/订单1813396_4_7170567.jpg b/datasets/pinganmajia/train/images/订单1813396_4_7170567.jpg new file mode 100644 index 0000000..f45a8cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813396_4_7170567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815897b346cd0c59dbd7bf52a574977ba9f487f5fb57c3e73443d5811e43b37d +size 155746 diff --git a/datasets/pinganmajia/train/images/订单1813397_4_7170579.jpg b/datasets/pinganmajia/train/images/订单1813397_4_7170579.jpg new file mode 100644 index 0000000..5d2b531 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813397_4_7170579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be1f8b732cc9a33ba9210f266e126fb8c8b8d376d60bced84e576a978c07ea5 +size 296030 diff --git a/datasets/pinganmajia/train/images/订单1813398_4_7170652.jpg b/datasets/pinganmajia/train/images/订单1813398_4_7170652.jpg new file mode 100644 index 0000000..9e976a8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813398_4_7170652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67eb5327a7ec78ee937a80394a22923c335231a595034c235952d7589eff3205 +size 247227 diff --git a/datasets/pinganmajia/train/images/订单1813400_4_7170595.jpg b/datasets/pinganmajia/train/images/订单1813400_4_7170595.jpg new file mode 100644 index 0000000..f7575b4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813400_4_7170595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a21926479143852d0682791430f7ef5907fdf1d7c6705f740a874fed9ee06b +size 109125 diff --git a/datasets/pinganmajia/train/images/订单1813401_4_7170605.jpg b/datasets/pinganmajia/train/images/订单1813401_4_7170605.jpg new file mode 100644 index 0000000..bd3789a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813401_4_7170605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796f0c34b6d734bade40678e8d5320ea2289338fc9a4f19f84b64915c0f7c509 +size 311865 diff --git a/datasets/pinganmajia/train/images/订单1813402_4_7170646.jpg b/datasets/pinganmajia/train/images/订单1813402_4_7170646.jpg new file mode 100644 index 0000000..2bcba74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813402_4_7170646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c71c78beac0f19ec884ad7eba671dd064088b8b50f14840a7ad02a82274f700 +size 140362 diff --git a/datasets/pinganmajia/train/images/订单1813406_4_7170719.jpg b/datasets/pinganmajia/train/images/订单1813406_4_7170719.jpg new file mode 100644 index 0000000..dc98676 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813406_4_7170719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5b765f047cd86b1cefc1f155eb5fa236ea9a859462d7bdd96ad7f68975353f +size 415023 diff --git a/datasets/pinganmajia/train/images/订单1813408_4_7170680.jpg b/datasets/pinganmajia/train/images/订单1813408_4_7170680.jpg new file mode 100644 index 0000000..15f62a2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813408_4_7170680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b3747395f161523014c60b2b8543a29d34e9e5e8292e043f41a0def7b6e8c4 +size 81360 diff --git a/datasets/pinganmajia/train/images/订单1813409_4_7170699.jpg b/datasets/pinganmajia/train/images/订单1813409_4_7170699.jpg new file mode 100644 index 0000000..e8a0cb7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813409_4_7170699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3423ee7ae2420a25cc887bf8f52409a0e6b62aaf465d5182ec8127d5fc59fa5 +size 556475 diff --git a/datasets/pinganmajia/train/images/订单1813410_4_7170741.jpg b/datasets/pinganmajia/train/images/订单1813410_4_7170741.jpg new file mode 100644 index 0000000..ea197ef --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813410_4_7170741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6a89e5f3aa1de8cc1402d5534f924773d54be07d5ca24ca3e04360535ffe2c +size 137355 diff --git a/datasets/pinganmajia/train/images/订单1813411_4_7170729.jpg b/datasets/pinganmajia/train/images/订单1813411_4_7170729.jpg new file mode 100644 index 0000000..e76d4f9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813411_4_7170729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21eb72ebfc0e02422baaf8b59bb30b9acdc0f115af284fb78d2e9d157ecd2810 +size 61244 diff --git a/datasets/pinganmajia/train/images/订单1813417_4_7170985.jpg b/datasets/pinganmajia/train/images/订单1813417_4_7170985.jpg new file mode 100644 index 0000000..80d4ffc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813417_4_7170985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf7c74031f5ad18ed0782882b088a9aadae923a0a531029ff87e50d856dd99e +size 440334 diff --git a/datasets/pinganmajia/train/images/订单1813418_4_7170782.jpg b/datasets/pinganmajia/train/images/订单1813418_4_7170782.jpg new file mode 100644 index 0000000..904eb3e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813418_4_7170782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a36fd3b272a0210911c4f24b74ef9d229b843645068d89be3d68bc09929ccec +size 180781 diff --git a/datasets/pinganmajia/train/images/订单1813419_4_7170821.jpg b/datasets/pinganmajia/train/images/订单1813419_4_7170821.jpg new file mode 100644 index 0000000..1f53412 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813419_4_7170821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f58b887172a0fa5a3e066abdddb235361c27605818a0d0bf017544145efb82c +size 106056 diff --git a/datasets/pinganmajia/train/images/订单1813420_4_7170805.jpg b/datasets/pinganmajia/train/images/订单1813420_4_7170805.jpg new file mode 100644 index 0000000..7535dd4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813420_4_7170805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6188a63b1556de21a085fb3592a285950290b5cac8009d81ac827124fcaa577 +size 87871 diff --git a/datasets/pinganmajia/train/images/订单1813421_4_7170841.jpg b/datasets/pinganmajia/train/images/订单1813421_4_7170841.jpg new file mode 100644 index 0000000..b10b0d6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813421_4_7170841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d335683346ae0870342e4eafffcd972ecd30953626034487d57e575c5fc59f42 +size 93406 diff --git a/datasets/pinganmajia/train/images/订单1813422_4_7172522.jpg b/datasets/pinganmajia/train/images/订单1813422_4_7172522.jpg new file mode 100644 index 0000000..0e8054c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813422_4_7172522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710ad386370b3699a802d1f5c0b930c5bb6eb99614587633c233c5940d9ead54 +size 62556 diff --git a/datasets/pinganmajia/train/images/订单1813423_4_7170832.jpg b/datasets/pinganmajia/train/images/订单1813423_4_7170832.jpg new file mode 100644 index 0000000..8db2805 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813423_4_7170832.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43863e43668ffb6b5f01a47ee91bdb28eebe6373a63610f50932d9ad4221f083 +size 141158 diff --git a/datasets/pinganmajia/train/images/订单1813424_4_7170867.jpg b/datasets/pinganmajia/train/images/订单1813424_4_7170867.jpg new file mode 100644 index 0000000..c2aee8d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813424_4_7170867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f53b5f0338dee855d2d3315f4512074a0cd918905ea77ae95ef713778f1896 +size 396436 diff --git a/datasets/pinganmajia/train/images/订单1813426_4_7170878.jpg b/datasets/pinganmajia/train/images/订单1813426_4_7170878.jpg new file mode 100644 index 0000000..d2301a7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813426_4_7170878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a41bc1031418104169972a7441dde588139962e60481ec3504e90ecc9e1d5e +size 191876 diff --git a/datasets/pinganmajia/train/images/订单1813430_4_7170910.jpg b/datasets/pinganmajia/train/images/订单1813430_4_7170910.jpg new file mode 100644 index 0000000..0544bb4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813430_4_7170910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2068c0399741137545f7bae4489adbd9356854df47f489e07773b23bbf942836 +size 128670 diff --git a/datasets/pinganmajia/train/images/订单1813431_4_7170919.jpg b/datasets/pinganmajia/train/images/订单1813431_4_7170919.jpg new file mode 100644 index 0000000..50db3cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813431_4_7170919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fe08dd4c04d16da1bdda3103dbca9dea54e6003b7a95a75d1becfea6e3b68d +size 118554 diff --git a/datasets/pinganmajia/train/images/订单1813432_4_7170927.jpg b/datasets/pinganmajia/train/images/订单1813432_4_7170927.jpg new file mode 100644 index 0000000..b980130 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813432_4_7170927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499a67c4bedb23a8992299c688c38bec0dbeea55e962326f62a19d012429900 +size 105797 diff --git a/datasets/pinganmajia/train/images/订单1813434_4_7170936.jpg b/datasets/pinganmajia/train/images/订单1813434_4_7170936.jpg new file mode 100644 index 0000000..1167e23 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813434_4_7170936.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669b85592edccf4f288e9dddccc4ab94420efe582513d89373450337c2e52a6b +size 308450 diff --git a/datasets/pinganmajia/train/images/订单1813437_4_7170963.jpg b/datasets/pinganmajia/train/images/订单1813437_4_7170963.jpg new file mode 100644 index 0000000..2e47ef6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813437_4_7170963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de52fa36159390bf6c6c58726c242ff7975a45d44dbeb71962d5cf62391b3f5 +size 66035 diff --git a/datasets/pinganmajia/train/images/订单1813438_4_7170980.jpg b/datasets/pinganmajia/train/images/订单1813438_4_7170980.jpg new file mode 100644 index 0000000..00e1db6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813438_4_7170980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c8a2f573f1579a92fcce0bfe47c42753f605703890648e755e0164be81d259 +size 73525 diff --git a/datasets/pinganmajia/train/images/订单1813439_4_7171040.jpg b/datasets/pinganmajia/train/images/订单1813439_4_7171040.jpg new file mode 100644 index 0000000..7a83bbc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813439_4_7171040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2128dfac014be4ae37d993e6afa4726da76abc6111db5e8151ed1d112e83ef6f +size 327945 diff --git a/datasets/pinganmajia/train/images/订单1813442_4_7170994.jpg b/datasets/pinganmajia/train/images/订单1813442_4_7170994.jpg new file mode 100644 index 0000000..5f49488 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813442_4_7170994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afefbac217b816e2fb3e5f4837929171a8745a69f5537f839180923d7774c75 +size 233222 diff --git a/datasets/pinganmajia/train/images/订单1813443_4_7171026.jpg b/datasets/pinganmajia/train/images/订单1813443_4_7171026.jpg new file mode 100644 index 0000000..9382e6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813443_4_7171026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7f3b16ddeaa74ebceb89bb196f42b591f53717780b978d42099e54f87fe377 +size 97001 diff --git a/datasets/pinganmajia/train/images/订单1813444_4_7171014.jpg b/datasets/pinganmajia/train/images/订单1813444_4_7171014.jpg new file mode 100644 index 0000000..9469b6e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813444_4_7171014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e7b6df784be6c70dfbf8444938c30f52ccffbc4571f8ffe8fcb616610acfb3 +size 156718 diff --git a/datasets/pinganmajia/train/images/订单1813445_4_7171111.jpg b/datasets/pinganmajia/train/images/订单1813445_4_7171111.jpg new file mode 100644 index 0000000..78f5cf2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813445_4_7171111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff59ae00d775ff4b540c61c6a9f97c4b6a069a5f0c280795ebfd624f28af98c7 +size 645746 diff --git a/datasets/pinganmajia/train/images/订单1813447_4_7171052.jpg b/datasets/pinganmajia/train/images/订单1813447_4_7171052.jpg new file mode 100644 index 0000000..13c31f3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813447_4_7171052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e0a4227856bf75fc973af1f57618a6a5855201a8f643f4775aa9f1e96fc221 +size 188037 diff --git a/datasets/pinganmajia/train/images/订单1813448_4_7171059.jpg b/datasets/pinganmajia/train/images/订单1813448_4_7171059.jpg new file mode 100644 index 0000000..0597c4e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813448_4_7171059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0934255b80c65fb454bd42d68645994e7fd04b3bd364dd193a4a944a30ca18 +size 136422 diff --git a/datasets/pinganmajia/train/images/订单1813449_4_7171038.jpg b/datasets/pinganmajia/train/images/订单1813449_4_7171038.jpg new file mode 100644 index 0000000..d115728 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813449_4_7171038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1447a954a278b991b2fadde65cf542926c249b8f3b7f0c5442118973eeb4b3e8 +size 171256 diff --git a/datasets/pinganmajia/train/images/订单1813450_4_7171159.jpg b/datasets/pinganmajia/train/images/订单1813450_4_7171159.jpg new file mode 100644 index 0000000..a672bb6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813450_4_7171159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4913a8a98403ddbd73e1d6a15785432fb38b4144f7772f7fc74f29ebbac07d14 +size 103567 diff --git a/datasets/pinganmajia/train/images/订单1813453_4_7171087.jpg b/datasets/pinganmajia/train/images/订单1813453_4_7171087.jpg new file mode 100644 index 0000000..0c9906a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813453_4_7171087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59856f8a66fb1554ec74ff859b8c5ba9a8850cf9e6e39868e1b5f631887a0993 +size 122563 diff --git a/datasets/pinganmajia/train/images/订单1813455_4_7171094.jpg b/datasets/pinganmajia/train/images/订单1813455_4_7171094.jpg new file mode 100644 index 0000000..39fb132 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813455_4_7171094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d61c019750c1925e15d61661ce2bbc963d8398370b8ffb6b35e17bc694a96c4 +size 144926 diff --git a/datasets/pinganmajia/train/images/订单1813458_4_7171110.jpg b/datasets/pinganmajia/train/images/订单1813458_4_7171110.jpg new file mode 100644 index 0000000..ea539d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813458_4_7171110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d623b76f6e1b68894cb86f63515140ba272a29b603402c032cc85a304360968c +size 90184 diff --git a/datasets/pinganmajia/train/images/订单1813460_4_7171128.jpg b/datasets/pinganmajia/train/images/订单1813460_4_7171128.jpg new file mode 100644 index 0000000..5b59bca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813460_4_7171128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433a7fe44c1dba7123dae5f080c9cff596fdd86b57537a90a325e46f0f0ce8b5 +size 128941 diff --git a/datasets/pinganmajia/train/images/订单1813462_4_7171151.jpg b/datasets/pinganmajia/train/images/订单1813462_4_7171151.jpg new file mode 100644 index 0000000..bb3df3a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813462_4_7171151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8a95ec9f641d18b06bb2bac5eacc1aac12128fcf192442fb716408544ea26 +size 98641 diff --git a/datasets/pinganmajia/train/images/订单1813464_4_7171143.jpg b/datasets/pinganmajia/train/images/订单1813464_4_7171143.jpg new file mode 100644 index 0000000..fcf926d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813464_4_7171143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4949137e934f38c51125d8b77af362c82ebd0ba4ba28c4386047a487aab6722 +size 168140 diff --git a/datasets/pinganmajia/train/images/订单1813466_4_7171124.jpg b/datasets/pinganmajia/train/images/订单1813466_4_7171124.jpg new file mode 100644 index 0000000..0ebf2b0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813466_4_7171124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a662a2055427134bdcdecb2921956e7eb36c8874f14c567b2a04f291ac2d3450 +size 521261 diff --git a/datasets/pinganmajia/train/images/订单1813467_4_7171242.jpg b/datasets/pinganmajia/train/images/订单1813467_4_7171242.jpg new file mode 100644 index 0000000..b3d12c7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813467_4_7171242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18dac76fbb124884b105ea376cf52a76795c857b0995e19eeb048681a1f6b0ac +size 92858 diff --git a/datasets/pinganmajia/train/images/订单1813468_4_7171171.jpg b/datasets/pinganmajia/train/images/订单1813468_4_7171171.jpg new file mode 100644 index 0000000..795c08f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813468_4_7171171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69a4c562db302e37ef7290746f698ea36ce78e181be3faee0362b57667a6bea +size 197159 diff --git a/datasets/pinganmajia/train/images/订单1813469_4_7171214.jpg b/datasets/pinganmajia/train/images/订单1813469_4_7171214.jpg new file mode 100644 index 0000000..d3454a6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813469_4_7171214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e86e27c5059ac1e63e5735f22d91a5345b3b65d61c6f00898292c3240c5aaad +size 100813 diff --git a/datasets/pinganmajia/train/images/订单1813471_4_7171203.jpg b/datasets/pinganmajia/train/images/订单1813471_4_7171203.jpg new file mode 100644 index 0000000..0e12f1c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813471_4_7171203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1040c4db35c9ad8e9aaec2f98d5ec8e01ea05705ddba97d5895d9666a8353d +size 174876 diff --git a/datasets/pinganmajia/train/images/订单1813472_4_7171229.jpg b/datasets/pinganmajia/train/images/订单1813472_4_7171229.jpg new file mode 100644 index 0000000..b24523a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813472_4_7171229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45358f510ef6e46305b9a5b2f5edf8eab77f01520130e605382b303c9c2dcb42 +size 202433 diff --git a/datasets/pinganmajia/train/images/订单1813475_4_7171290.jpg b/datasets/pinganmajia/train/images/订单1813475_4_7171290.jpg new file mode 100644 index 0000000..c457e60 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813475_4_7171290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ac9e2ea34fbb1e042baf46a9357732f90d9256133c4d441937ca895598e59 +size 114716 diff --git a/datasets/pinganmajia/train/images/订单1813479_4_7171613.jpg b/datasets/pinganmajia/train/images/订单1813479_4_7171613.jpg new file mode 100644 index 0000000..70a0e01 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813479_4_7171613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c64051b9eafb3ab1f9a87292baf154e17363bfc70b1d8b500c23c8bd1554fb +size 187827 diff --git a/datasets/pinganmajia/train/images/订单1813481_4_7171415.jpg b/datasets/pinganmajia/train/images/订单1813481_4_7171415.jpg new file mode 100644 index 0000000..9bf6900 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813481_4_7171415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8213059360bb47da8a83e332d9712435e8bfa70529e7a3001ba8abe3fb80b05b +size 84773 diff --git a/datasets/pinganmajia/train/images/订单1813482_4_7171160.jpg b/datasets/pinganmajia/train/images/订单1813482_4_7171160.jpg new file mode 100644 index 0000000..a90a2dc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813482_4_7171160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25adad06aca9f073f9afba0ceefee43fdc9055a17775627ec78b3ac9d2eae60 +size 134614 diff --git a/datasets/pinganmajia/train/images/订单1813486_4_7171228.jpg b/datasets/pinganmajia/train/images/订单1813486_4_7171228.jpg new file mode 100644 index 0000000..caa09b5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813486_4_7171228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78cb3644a33de0e21492eddb571aa8b35a5863a8c8f0f951c6ba76dae7788c58 +size 146640 diff --git a/datasets/pinganmajia/train/images/订单1813487_4_7171174.jpg b/datasets/pinganmajia/train/images/订单1813487_4_7171174.jpg new file mode 100644 index 0000000..c34e8f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813487_4_7171174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f500e8cf9b0ace17ad77856d1665bdc26148d7ff4ac110ddaa36d04ee83838b0 +size 133556 diff --git a/datasets/pinganmajia/train/images/订单1813488_4_7171723.jpg b/datasets/pinganmajia/train/images/订单1813488_4_7171723.jpg new file mode 100644 index 0000000..eb0b60f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813488_4_7171723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bece1b0d49f6a0fdddc5651750d3fef457e005faf3d2f1af03ad5cb8daa602 +size 1595228 diff --git a/datasets/pinganmajia/train/images/订单1813490_4_7171255.jpg b/datasets/pinganmajia/train/images/订单1813490_4_7171255.jpg new file mode 100644 index 0000000..6675d15 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813490_4_7171255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0adf85a65562cde30cc39424b69ac169485f18218b52a09871d4615ef6e4876e +size 78366 diff --git a/datasets/pinganmajia/train/images/订单1813491_4_7171408.jpg b/datasets/pinganmajia/train/images/订单1813491_4_7171408.jpg new file mode 100644 index 0000000..e085af1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813491_4_7171408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a6ae1ba8363fd5efe833ad42bf80ddf948086e1824962fab5656b1c5a9e477 +size 82195 diff --git a/datasets/pinganmajia/train/images/订单1813492_4_7171452.jpg b/datasets/pinganmajia/train/images/订单1813492_4_7171452.jpg new file mode 100644 index 0000000..781fd60 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813492_4_7171452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d60341bbb8547ee6300c5a339502369b6bb83314b51e89ca07d6347b0e715ca +size 464118 diff --git a/datasets/pinganmajia/train/images/订单1813494_4_7171306.jpg b/datasets/pinganmajia/train/images/订单1813494_4_7171306.jpg new file mode 100644 index 0000000..58f6efb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813494_4_7171306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab6fec35f3d945a3bef7f09efdc74e8f90c5a38e51388d2d1ed9815906bf4b +size 266540 diff --git a/datasets/pinganmajia/train/images/订单1813495_4_7171349.jpg b/datasets/pinganmajia/train/images/订单1813495_4_7171349.jpg new file mode 100644 index 0000000..1aa8b93 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813495_4_7171349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cee19d4d0ab85b82d82c53041494f1135998799ab9e8ccecb73ee1556d83745 +size 191346 diff --git a/datasets/pinganmajia/train/images/订单1813496_4_7171304.jpg b/datasets/pinganmajia/train/images/订单1813496_4_7171304.jpg new file mode 100644 index 0000000..d63dbd2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813496_4_7171304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740e74c0b76faf07166b040cbdc2ab7744beb75efd368680de1f2079e19dbf65 +size 113364 diff --git a/datasets/pinganmajia/train/images/订单1813497_4_7171339.jpg b/datasets/pinganmajia/train/images/订单1813497_4_7171339.jpg new file mode 100644 index 0000000..f21670e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813497_4_7171339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8608cc165eb17ae8439cd594645822f4eb2f9133454d7ce5e133c82833e60dd7 +size 535691 diff --git a/datasets/pinganmajia/train/images/订单1813501_4_7171443.jpg b/datasets/pinganmajia/train/images/订单1813501_4_7171443.jpg new file mode 100644 index 0000000..a510c07 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813501_4_7171443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ac23bdf3966eb5df8a0bf1abb5a0c6a38bf8bbe8eeb8e5485477379507c042 +size 177087 diff --git a/datasets/pinganmajia/train/images/订单1813502_4_7171366.jpg b/datasets/pinganmajia/train/images/订单1813502_4_7171366.jpg new file mode 100644 index 0000000..b6fe370 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813502_4_7171366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a9220a0495c4c5fdcfc9bf869678c02a1a66db67a8a541614ea4d0cf4488d0 +size 78015 diff --git a/datasets/pinganmajia/train/images/订单1813504_4_7171331.jpg b/datasets/pinganmajia/train/images/订单1813504_4_7171331.jpg new file mode 100644 index 0000000..b7d5584 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813504_4_7171331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda3410ee295599f261341943d46ab2ebfe4a4eaee81b62d44cb90131c1e898e +size 101789 diff --git a/datasets/pinganmajia/train/images/订单1813507_4_7171426.jpg b/datasets/pinganmajia/train/images/订单1813507_4_7171426.jpg new file mode 100644 index 0000000..0274940 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813507_4_7171426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db8c958a40e6414466e70aea11eb50af8baf715c21d27dd3e15a9bd1dffcc9a +size 166091 diff --git a/datasets/pinganmajia/train/images/订单1813508_4_7171534.jpg b/datasets/pinganmajia/train/images/订单1813508_4_7171534.jpg new file mode 100644 index 0000000..947a65f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813508_4_7171534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bb92f7bebee58b3f9503648a22f15cb720817386d29a3dcc53bdb57cb788ea +size 423807 diff --git a/datasets/pinganmajia/train/images/订单1813510_4_7171548.jpg b/datasets/pinganmajia/train/images/订单1813510_4_7171548.jpg new file mode 100644 index 0000000..03f95f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813510_4_7171548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52ccc65dde3688036397868fd3ec87cc513dcf81ed55a2447f83888568e4801 +size 143410 diff --git a/datasets/pinganmajia/train/images/订单1813511_4_7171641.jpg b/datasets/pinganmajia/train/images/订单1813511_4_7171641.jpg new file mode 100644 index 0000000..920b19e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813511_4_7171641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8022f1cfb5b7b0c6d7a889f21af53fe5819760dd0eb7c391703441f12c79251 +size 1744322 diff --git a/datasets/pinganmajia/train/images/订单1813512_4_7171592.jpg b/datasets/pinganmajia/train/images/订单1813512_4_7171592.jpg new file mode 100644 index 0000000..6e5cf47 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813512_4_7171592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efd92509d67d44ec3e0f45a4a11ba1830e8dfde5ac2cbf3bfcc43b5a1c9ff49 +size 68422 diff --git a/datasets/pinganmajia/train/images/订单1813513_4_7171485.jpg b/datasets/pinganmajia/train/images/订单1813513_4_7171485.jpg new file mode 100644 index 0000000..8a844b9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813513_4_7171485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d222e33c005c2f93c751e51b17557063c4922bf4aacac42b3a1709adf6b7651e +size 89407 diff --git a/datasets/pinganmajia/train/images/订单1813514_4_7171667.jpg b/datasets/pinganmajia/train/images/订单1813514_4_7171667.jpg new file mode 100644 index 0000000..851dcd9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813514_4_7171667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a7badacca86f799495ac4de8f880f04ac0480ee7b4ce66918d450c1df5ff8b +size 78010 diff --git a/datasets/pinganmajia/train/images/订单1813516_4_7171531.jpg b/datasets/pinganmajia/train/images/订单1813516_4_7171531.jpg new file mode 100644 index 0000000..c3eaa89 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813516_4_7171531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2baf1704dfb4dddcca29aa4be1ee35c0eea8e331eff2524c5595c0a3bf088e +size 130568 diff --git a/datasets/pinganmajia/train/images/订单1813517_4_7171560.jpg b/datasets/pinganmajia/train/images/订单1813517_4_7171560.jpg new file mode 100644 index 0000000..3e5c15d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813517_4_7171560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea44be1afc85c36085e0faf899b2bbb2dec8c7f77c957a0a9dcd85d1bc1d22d +size 114618 diff --git a/datasets/pinganmajia/train/images/订单1813519_4_7171631.jpg b/datasets/pinganmajia/train/images/订单1813519_4_7171631.jpg new file mode 100644 index 0000000..7f11a24 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813519_4_7171631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3f80b60d3e7d9e58043cbc1f746a0676ce0979b7eebe177b9948b50da88519 +size 113481 diff --git a/datasets/pinganmajia/train/images/订单1813520_4_7171678.jpg b/datasets/pinganmajia/train/images/订单1813520_4_7171678.jpg new file mode 100644 index 0000000..9a99107 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813520_4_7171678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92aee896184bf6147e23a45b457799793e1f7394947dc5166961417766093a0 +size 528731 diff --git a/datasets/pinganmajia/train/images/订单1813523_4_7171624.jpg b/datasets/pinganmajia/train/images/订单1813523_4_7171624.jpg new file mode 100644 index 0000000..3c12f12 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813523_4_7171624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f55a61bb50fb40448ef0814852c2627db91515b4c9ddc65c14b9b6318c6734 +size 77355 diff --git a/datasets/pinganmajia/train/images/订单1813524_4_7171657.jpg b/datasets/pinganmajia/train/images/订单1813524_4_7171657.jpg new file mode 100644 index 0000000..1c9b5e4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813524_4_7171657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27901727c5d072d0d64d0f5ae3afadac9abf676b8f93de76b5ec1aca52b1ddbe +size 97492 diff --git a/datasets/pinganmajia/train/images/订单1813525_4_7171995.jpg b/datasets/pinganmajia/train/images/订单1813525_4_7171995.jpg new file mode 100644 index 0000000..9c88c4c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813525_4_7171995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15046bba99f2a9fe50db9b2d07e639162350b58fe70614dc70059d849fc52156 +size 204419 diff --git a/datasets/pinganmajia/train/images/订单1813526_4_7174949.jpg b/datasets/pinganmajia/train/images/订单1813526_4_7174949.jpg new file mode 100644 index 0000000..a6a4a0a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813526_4_7174949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c231d6b380efb286e18a97cc50813543b6d055278b1883a6ada09bd83cf880d +size 72710 diff --git a/datasets/pinganmajia/train/images/订单1813527_4_7171756.jpg b/datasets/pinganmajia/train/images/订单1813527_4_7171756.jpg new file mode 100644 index 0000000..0ecdfec --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813527_4_7171756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6193738894e359acb7b4c123f4c7807c3a310f1b50b3ef648fc718de831929 +size 151995 diff --git a/datasets/pinganmajia/train/images/订单1813531_4_7172166.jpg b/datasets/pinganmajia/train/images/订单1813531_4_7172166.jpg new file mode 100644 index 0000000..f442bad --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813531_4_7172166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe742153c3dac9e86675872676ec96ee80fe160722949498e9d6f6292853d002 +size 157648 diff --git a/datasets/pinganmajia/train/images/订单1813532_4_7171934.jpg b/datasets/pinganmajia/train/images/订单1813532_4_7171934.jpg new file mode 100644 index 0000000..4955bc5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813532_4_7171934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f52e90a219e05a2cff9cd62a7a16a6f891b57d3143079757e01315442b45040 +size 304746 diff --git a/datasets/pinganmajia/train/images/订单1813535_4_7171843.jpg b/datasets/pinganmajia/train/images/订单1813535_4_7171843.jpg new file mode 100644 index 0000000..90df966 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813535_4_7171843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2eb65b37fce534fe607bdb8255dbc6f40f1b1e1c75e2236fa5785a037a46e2 +size 178968 diff --git a/datasets/pinganmajia/train/images/订单1813536_4_7171761.jpg b/datasets/pinganmajia/train/images/订单1813536_4_7171761.jpg new file mode 100644 index 0000000..f8a4bb5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813536_4_7171761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90cdb8ef1445e90330768fc2d00cdd8233390aae4139157bc1d3c4ebb08efcb +size 193057 diff --git a/datasets/pinganmajia/train/images/订单1813537_4_7171741.jpg b/datasets/pinganmajia/train/images/订单1813537_4_7171741.jpg new file mode 100644 index 0000000..b70b865 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813537_4_7171741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b3e4958eb2040ddefe190ca6585adb0164f156a64b65c7b58eecac8e8f8f5c +size 228041 diff --git a/datasets/pinganmajia/train/images/订单1813538_4_7171836.jpg b/datasets/pinganmajia/train/images/订单1813538_4_7171836.jpg new file mode 100644 index 0000000..c48a1e9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813538_4_7171836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a6087d4e90cdc6ec3d4d29bd2b66ae6f3fd543b8d24a27417d1507fda5473dc +size 427935 diff --git a/datasets/pinganmajia/train/images/订单1813541_4_7171787.jpg b/datasets/pinganmajia/train/images/订单1813541_4_7171787.jpg new file mode 100644 index 0000000..0774d2e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813541_4_7171787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f6ebe14a81cc947e6604c24a2203cc16ced3b02d4d6e12552c7e65825f248f +size 245544 diff --git a/datasets/pinganmajia/train/images/订单1813542_4_7171900.jpg b/datasets/pinganmajia/train/images/订单1813542_4_7171900.jpg new file mode 100644 index 0000000..d1c8a3d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813542_4_7171900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2890077dd669735494046af42648e750c98e241198c4333deb3b60a0d76ca57 +size 155298 diff --git a/datasets/pinganmajia/train/images/订单1813543_4_7171825.jpg b/datasets/pinganmajia/train/images/订单1813543_4_7171825.jpg new file mode 100644 index 0000000..b73f86a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813543_4_7171825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e75338c0a5fa86d83b5c0c4e2b1169eeb18f1e79c9baeb3e43ea990174536ba +size 432125 diff --git a/datasets/pinganmajia/train/images/订单1813545_4_7171826.jpg b/datasets/pinganmajia/train/images/订单1813545_4_7171826.jpg new file mode 100644 index 0000000..f60ece9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813545_4_7171826.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2893ac9405a7fd404e852ebb430ca59195b62e863fd779081682e9a85c3f2ee +size 117808 diff --git a/datasets/pinganmajia/train/images/订单1813546_4_7171875.jpg b/datasets/pinganmajia/train/images/订单1813546_4_7171875.jpg new file mode 100644 index 0000000..40d4785 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813546_4_7171875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7a9b073dbb5d5dabc5b16043e80e4a71b60ccbf98f411a5d24fe8ec95a5cdf +size 125842 diff --git a/datasets/pinganmajia/train/images/订单1813547_4_7172100.jpg b/datasets/pinganmajia/train/images/订单1813547_4_7172100.jpg new file mode 100644 index 0000000..dfab53b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813547_4_7172100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e609d13b8762b52b32473bed80a84e74197da9a26be908bd8d372ea491824fdf +size 130443 diff --git a/datasets/pinganmajia/train/images/订单1813549_4_7171932.jpg b/datasets/pinganmajia/train/images/订单1813549_4_7171932.jpg new file mode 100644 index 0000000..c815158 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813549_4_7171932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086ef0778b88b9b151906d259d5ecaca7df9d2c4df35223e4029306472ed3156 +size 93015 diff --git a/datasets/pinganmajia/train/images/订单1813551_4_7171912.jpg b/datasets/pinganmajia/train/images/订单1813551_4_7171912.jpg new file mode 100644 index 0000000..9551056 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813551_4_7171912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6504fa19e02611f521b75c348f4c16ffcf9e0985b166c4f6af8c3f018f2f3e +size 154512 diff --git a/datasets/pinganmajia/train/images/订单1813552_4_7171949.jpg b/datasets/pinganmajia/train/images/订单1813552_4_7171949.jpg new file mode 100644 index 0000000..7389a5c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813552_4_7171949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b0d01ac9634ef175e2921209af11492cd590e069e9cb5c0df8d28ad39cacbb +size 124838 diff --git a/datasets/pinganmajia/train/images/订单1813553_4_7171998.jpg b/datasets/pinganmajia/train/images/订单1813553_4_7171998.jpg new file mode 100644 index 0000000..23c7907 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813553_4_7171998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117e76341add5755b69b53aa16c0a3ec16905dc1d3cc082be330a7653f701e5c +size 499933 diff --git a/datasets/pinganmajia/train/images/订单1813554_4_7172006.jpg b/datasets/pinganmajia/train/images/订单1813554_4_7172006.jpg new file mode 100644 index 0000000..f1898dc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813554_4_7172006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36472fc3809e7f0c915b59a963b25f1d518c5601ffdd45c785adf6a69bd3abb +size 128082 diff --git a/datasets/pinganmajia/train/images/订单1813556_4_7172007.jpg b/datasets/pinganmajia/train/images/订单1813556_4_7172007.jpg new file mode 100644 index 0000000..0bff400 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813556_4_7172007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90884ae1292a907cdd25fe848329a37bb3bbb13944db76c137de8183646e9fe2 +size 458025 diff --git a/datasets/pinganmajia/train/images/订单1813557_4_7171915.jpg b/datasets/pinganmajia/train/images/订单1813557_4_7171915.jpg new file mode 100644 index 0000000..ecd3d08 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813557_4_7171915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130b499208ef3c1843539618249742e0d9fd680603eed4e2e8a3839fbc600647 +size 417875 diff --git a/datasets/pinganmajia/train/images/订单1813561_4_7172085.jpg b/datasets/pinganmajia/train/images/订单1813561_4_7172085.jpg new file mode 100644 index 0000000..bd18609 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813561_4_7172085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c075471d748bbeaebd5f215623be021bc318269c6c125edbe5a6b70fd1824e +size 347982 diff --git a/datasets/pinganmajia/train/images/订单1813564_4_7172026.jpg b/datasets/pinganmajia/train/images/订单1813564_4_7172026.jpg new file mode 100644 index 0000000..76667ca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813564_4_7172026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c90418454019594b1a8e493caf7ce59d28327aba93a66292277b8845b84d3b1 +size 142030 diff --git a/datasets/pinganmajia/train/images/订单1813565_4_7172025.jpg b/datasets/pinganmajia/train/images/订单1813565_4_7172025.jpg new file mode 100644 index 0000000..c486392 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813565_4_7172025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55658a58da29d3268a5f9a5a24862447c55d44387cf6f66daf8d063cc273506c +size 192691 diff --git a/datasets/pinganmajia/train/images/订单1813567_4_7172131.jpg b/datasets/pinganmajia/train/images/订单1813567_4_7172131.jpg new file mode 100644 index 0000000..c35df6c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813567_4_7172131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4a571325c9998fac4b3a4be303f49f0991c88b379355362190206753085bb0 +size 409962 diff --git a/datasets/pinganmajia/train/images/订单1813569_4_7172463.jpg b/datasets/pinganmajia/train/images/订单1813569_4_7172463.jpg new file mode 100644 index 0000000..13d098c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813569_4_7172463.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92347c58e3c86caa4165cf17310f5083d2129b821cabe625bb0b7bfae4e6b40c +size 210511 diff --git a/datasets/pinganmajia/train/images/订单1813570_4_7172539.jpg b/datasets/pinganmajia/train/images/订单1813570_4_7172539.jpg new file mode 100644 index 0000000..3ac14ed --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813570_4_7172539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7b0c19d6ed1e63b5b713c9546d8e766d6f37687c07515e1aa658ae658a62f3 +size 141337 diff --git a/datasets/pinganmajia/train/images/订单1813571_4_7172101.jpg b/datasets/pinganmajia/train/images/订单1813571_4_7172101.jpg new file mode 100644 index 0000000..b34bc9c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813571_4_7172101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9573e4ddc8fc126df603094b942bd85fbd2783367c1f416ec06103d31eca67b9 +size 191711 diff --git a/datasets/pinganmajia/train/images/订单1813573_4_7172420.jpg b/datasets/pinganmajia/train/images/订单1813573_4_7172420.jpg new file mode 100644 index 0000000..1b16647 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813573_4_7172420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafc9d9ec0c8dbcbf695fde7f2f1c7becc9c6057d5fcf0cc75cfc0a86f8e6162 +size 129497 diff --git a/datasets/pinganmajia/train/images/订单1813576_4_7172159.jpg b/datasets/pinganmajia/train/images/订单1813576_4_7172159.jpg new file mode 100644 index 0000000..52498be --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813576_4_7172159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a1604e185a977fef9445660f28c4abbd0280e9b3835ab611d30a906f648f2c +size 173278 diff --git a/datasets/pinganmajia/train/images/订单1813579_4_7172225.jpg b/datasets/pinganmajia/train/images/订单1813579_4_7172225.jpg new file mode 100644 index 0000000..7429473 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813579_4_7172225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde93f6d8fcb486dd810e15b44a1fc950581e0d096825c98f37a1e96ba4eb6c9 +size 339562 diff --git a/datasets/pinganmajia/train/images/订单1813580_4_7172450.jpg b/datasets/pinganmajia/train/images/订单1813580_4_7172450.jpg new file mode 100644 index 0000000..7edaee4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813580_4_7172450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2877f4924bd67b1e71ea7b16a99a461ee0222030936f9b7db02a5e96d086c86b +size 745954 diff --git a/datasets/pinganmajia/train/images/订单1813582_4_7172212.jpg b/datasets/pinganmajia/train/images/订单1813582_4_7172212.jpg new file mode 100644 index 0000000..560d807 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813582_4_7172212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36527f46d57320785256d712a40d9a3fb0ecd3ff59b6a8629c656609c3c99bfb +size 293588 diff --git a/datasets/pinganmajia/train/images/订单1813583_4_7172329.jpg b/datasets/pinganmajia/train/images/订单1813583_4_7172329.jpg new file mode 100644 index 0000000..779c89d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813583_4_7172329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e56f35002568090b89ec88cd9ede083b7b2908f1c9a46ccad72335a87747b5d +size 124781 diff --git a/datasets/pinganmajia/train/images/订单1813584_4_7172221.jpg b/datasets/pinganmajia/train/images/订单1813584_4_7172221.jpg new file mode 100644 index 0000000..d30a0f0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813584_4_7172221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aabdc9532a99b0f1f50aeff8e907a12deddc7b58c7babdb1feae2f8fd728cf4 +size 409261 diff --git a/datasets/pinganmajia/train/images/订单1813586_4_7172378.jpg b/datasets/pinganmajia/train/images/订单1813586_4_7172378.jpg new file mode 100644 index 0000000..7799627 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813586_4_7172378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1504b86bbebf806be04448323606e5f8a23de5317de3ded2f0378935feccbdef +size 270628 diff --git a/datasets/pinganmajia/train/images/订单1813587_4_7172299.jpg b/datasets/pinganmajia/train/images/订单1813587_4_7172299.jpg new file mode 100644 index 0000000..194f0bb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813587_4_7172299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7fa20014b32234a03f8e56689285b41ec89175d739699adda7a950d67c6233 +size 312656 diff --git a/datasets/pinganmajia/train/images/订单1813588_4_7172214.jpg b/datasets/pinganmajia/train/images/订单1813588_4_7172214.jpg new file mode 100644 index 0000000..834b3ed --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813588_4_7172214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72d92865e057882d8975b895142e30730a3afe72b0154b7b824c195af1282cf +size 168237 diff --git a/datasets/pinganmajia/train/images/订单1813589_4_7172227.jpg b/datasets/pinganmajia/train/images/订单1813589_4_7172227.jpg new file mode 100644 index 0000000..350e9ca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813589_4_7172227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58593a4c32c51f39461521f5418130168199258ac1dae3b07ca1adc1dce5b385 +size 301635 diff --git a/datasets/pinganmajia/train/images/订单1813590_4_7172365.jpg b/datasets/pinganmajia/train/images/订单1813590_4_7172365.jpg new file mode 100644 index 0000000..8eb69a2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813590_4_7172365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8446df2fca10650dfd61d83b7508644c229ebc70f0fc5de47d1431f2dcde9065 +size 170122 diff --git a/datasets/pinganmajia/train/images/订单1813591_4_7172367.jpg b/datasets/pinganmajia/train/images/订单1813591_4_7172367.jpg new file mode 100644 index 0000000..d87d0b4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813591_4_7172367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7be96858f5d7d129d85b43fe35575237ec31433b7c9b9cbaf40a19af8972cd +size 161474 diff --git a/datasets/pinganmajia/train/images/订单1813594_4_7172343.jpg b/datasets/pinganmajia/train/images/订单1813594_4_7172343.jpg new file mode 100644 index 0000000..19241e3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813594_4_7172343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9af138d0bc5fad129c3abb3fb4390715583bf0c06854302f93aacb9c4ab0e8a +size 125877 diff --git a/datasets/pinganmajia/train/images/订单1813596_4_7172380.jpg b/datasets/pinganmajia/train/images/订单1813596_4_7172380.jpg new file mode 100644 index 0000000..f674205 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813596_4_7172380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a387925fa1608f4b705c217886d4fc029762355a006a6f1b7c02fddf8ce94540 +size 220283 diff --git a/datasets/pinganmajia/train/images/订单1813602_4_7172553.jpg b/datasets/pinganmajia/train/images/订单1813602_4_7172553.jpg new file mode 100644 index 0000000..3019ace --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813602_4_7172553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45108314cc5a0e83c88a849a7c916d6e4bfc368ad74cedc0f5c18f8789c5d843 +size 455065 diff --git a/datasets/pinganmajia/train/images/订单1813605_4_7172414.jpg b/datasets/pinganmajia/train/images/订单1813605_4_7172414.jpg new file mode 100644 index 0000000..26ebd2e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813605_4_7172414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df551de44413c572d9f1c6bac55f4d5941d04fb5ed4c737743026fd1b775bb54 +size 88710 diff --git a/datasets/pinganmajia/train/images/订单1813607_4_7172530.jpg b/datasets/pinganmajia/train/images/订单1813607_4_7172530.jpg new file mode 100644 index 0000000..2014f0d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813607_4_7172530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9c9237c2f4008528e5a45b6eac302fd4fb4435e2da9153eff7d424fb8e8888 +size 143548 diff --git a/datasets/pinganmajia/train/images/订单1813609_4_7172509.jpg b/datasets/pinganmajia/train/images/订单1813609_4_7172509.jpg new file mode 100644 index 0000000..dd95582 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813609_4_7172509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ea178e56bfe4ac21c7cefcdfb8467166ec87b40871afeeb10183fe5c7c23c7 +size 107408 diff --git a/datasets/pinganmajia/train/images/订单1813612_4_7172548.jpg b/datasets/pinganmajia/train/images/订单1813612_4_7172548.jpg new file mode 100644 index 0000000..fbe3f6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813612_4_7172548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30671c41edc39bf7416d530f5f4f6b1be5c28f7f08a3f0403ae3465b76e023a7 +size 160638 diff --git a/datasets/pinganmajia/train/images/订单1813615_4_7172554.jpg b/datasets/pinganmajia/train/images/订单1813615_4_7172554.jpg new file mode 100644 index 0000000..a8ef88e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813615_4_7172554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb684f1f7b4a68ed57bfbcd7d595f244a58ec89e881d60822f858554374eb31 +size 163470 diff --git a/datasets/pinganmajia/train/images/订单1813616_4_7172663.jpg b/datasets/pinganmajia/train/images/订单1813616_4_7172663.jpg new file mode 100644 index 0000000..165ace2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813616_4_7172663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d1ffaaaf369f51fe5113b8d04273490e0bd0501d24317ea1452c7680e2471e +size 170693 diff --git a/datasets/pinganmajia/train/images/订单1813617_4_7172575.jpg b/datasets/pinganmajia/train/images/订单1813617_4_7172575.jpg new file mode 100644 index 0000000..ba29e1d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813617_4_7172575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39cf670e47af6c9c2099ceaaaa3dfb8681a0881e825b68f4282efe2e6c8ec52 +size 250355 diff --git a/datasets/pinganmajia/train/images/订单1813618_4_7172596.jpg b/datasets/pinganmajia/train/images/订单1813618_4_7172596.jpg new file mode 100644 index 0000000..e6ea335 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813618_4_7172596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d20ee839343e8af9cda5e5b82c87411b22435d69b697a1df40677dc46b14d6f +size 205910 diff --git a/datasets/pinganmajia/train/images/订单1813621_4_7172648.jpg b/datasets/pinganmajia/train/images/订单1813621_4_7172648.jpg new file mode 100644 index 0000000..549bb53 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813621_4_7172648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72136e4684ea1f8526fcf18327c321e101d0d1ba156d68f4d72577354e70cbd7 +size 65973 diff --git a/datasets/pinganmajia/train/images/订单1813625_4_7172577.jpg b/datasets/pinganmajia/train/images/订单1813625_4_7172577.jpg new file mode 100644 index 0000000..7ccf9c3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813625_4_7172577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f8e1df21bf1d67eec9c7c34c4619a360ef0fb9107fa3cbd5455e5d0cad265b +size 139027 diff --git a/datasets/pinganmajia/train/images/订单1813626_4_7172669.jpg b/datasets/pinganmajia/train/images/订单1813626_4_7172669.jpg new file mode 100644 index 0000000..2e84146 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813626_4_7172669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01963d4a62f23f358040cc30afde4c16a447d931710365a00de9482e6dd7aca +size 115046 diff --git a/datasets/pinganmajia/train/images/订单1813627_4_7172612.jpg b/datasets/pinganmajia/train/images/订单1813627_4_7172612.jpg new file mode 100644 index 0000000..021753c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813627_4_7172612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8156a8368335256c51e47ce257d1c719e34e48cdb6726a37c989fbf64b392a7f +size 89205 diff --git a/datasets/pinganmajia/train/images/订单1813628_4_7172622.jpg b/datasets/pinganmajia/train/images/订单1813628_4_7172622.jpg new file mode 100644 index 0000000..4dae0c5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813628_4_7172622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93a7127811a4ecbeaab6c9684cd50ed9df7e9e3a494150547bd070c3addcbfd +size 155440 diff --git a/datasets/pinganmajia/train/images/订单1813629_4_7173205.jpg b/datasets/pinganmajia/train/images/订单1813629_4_7173205.jpg new file mode 100644 index 0000000..8ada9b5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813629_4_7173205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6953ea42597180a192250e8dd69240a8d98a33bb51b2433e0495f4e3365f0fd6 +size 172742 diff --git a/datasets/pinganmajia/train/images/订单1813630_4_7172710.jpg b/datasets/pinganmajia/train/images/订单1813630_4_7172710.jpg new file mode 100644 index 0000000..d2751c0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813630_4_7172710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaf0c89abf0bae6f720241b9503c887504c0fac58a48b160a9137b4dc01064c6 +size 155398 diff --git a/datasets/pinganmajia/train/images/订单1813632_4_7172841.jpg b/datasets/pinganmajia/train/images/订单1813632_4_7172841.jpg new file mode 100644 index 0000000..a185bd5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813632_4_7172841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c28e0db8965c654d6c711bdc6535bb5927fb42197b614267cb171e053a1ffb4 +size 143646 diff --git a/datasets/pinganmajia/train/images/订单1813633_4_7172782.jpg b/datasets/pinganmajia/train/images/订单1813633_4_7172782.jpg new file mode 100644 index 0000000..51d0238 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813633_4_7172782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64bc167d756d448260d77088f39e796a388c736ee1b14ac8562c1e3ed3d58d79 +size 79622 diff --git a/datasets/pinganmajia/train/images/订单1813634_4_7172797.jpg b/datasets/pinganmajia/train/images/订单1813634_4_7172797.jpg new file mode 100644 index 0000000..8597b78 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813634_4_7172797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63d141ba9efcc4dabe63b44fb72935a609acfe15079afd941341dfa2b6779e3 +size 159288 diff --git a/datasets/pinganmajia/train/images/订单1813636_4_7172726.jpg b/datasets/pinganmajia/train/images/订单1813636_4_7172726.jpg new file mode 100644 index 0000000..149e070 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813636_4_7172726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee378237a8515d1c42d44583ed49daf88464f03b7eb0a5c14a41d6a994f067be +size 176514 diff --git a/datasets/pinganmajia/train/images/订单1813637_4_7172714.jpg b/datasets/pinganmajia/train/images/订单1813637_4_7172714.jpg new file mode 100644 index 0000000..4365138 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813637_4_7172714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbce6ca51f8adb8cdd563df69218931c0205cb1bd978456c4fdf9de05244cb1 +size 416132 diff --git a/datasets/pinganmajia/train/images/订单1813638_4_7172745.jpg b/datasets/pinganmajia/train/images/订单1813638_4_7172745.jpg new file mode 100644 index 0000000..5810eaa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813638_4_7172745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda914e6d6ac4f3a0cc37c7dc14af38a1bb95ed0a031cfce37288d6944800b57 +size 99389 diff --git a/datasets/pinganmajia/train/images/订单1813639_4_7172845.jpg b/datasets/pinganmajia/train/images/订单1813639_4_7172845.jpg new file mode 100644 index 0000000..f8f2f98 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813639_4_7172845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609c0580a7458ddb80161dfbf496e85a9defb19bf1a102edb178e9ac8ec48a0c +size 57849 diff --git a/datasets/pinganmajia/train/images/订单1813642_4_7172836.jpg b/datasets/pinganmajia/train/images/订单1813642_4_7172836.jpg new file mode 100644 index 0000000..9abb273 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813642_4_7172836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff16efbfb715dc18e257b2781ddee36c9e2af3cfaf05a44d5257e1332d01aec7 +size 225592 diff --git a/datasets/pinganmajia/train/images/订单1813643_4_7172882.jpg b/datasets/pinganmajia/train/images/订单1813643_4_7172882.jpg new file mode 100644 index 0000000..d8f214e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813643_4_7172882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd9985dadfdecca135fe83672b02d373fed2449f382894167fbb0963dd7504b +size 139932 diff --git a/datasets/pinganmajia/train/images/订单1813644_4_7173037.jpg b/datasets/pinganmajia/train/images/订单1813644_4_7173037.jpg new file mode 100644 index 0000000..b04b5e6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813644_4_7173037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf0db9552cf336b804f2f92baea5e1db48769da08fe2fac408eef956b6f8619 +size 442122 diff --git a/datasets/pinganmajia/train/images/订单1813649_4_7172924.jpg b/datasets/pinganmajia/train/images/订单1813649_4_7172924.jpg new file mode 100644 index 0000000..16a857e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813649_4_7172924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e7a128a329d9953f6f6f38860cff2cadef784f43d45089aa33c2f21aed68a4 +size 140108 diff --git a/datasets/pinganmajia/train/images/订单1813650_4_7172978.jpg b/datasets/pinganmajia/train/images/订单1813650_4_7172978.jpg new file mode 100644 index 0000000..9a3d23b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813650_4_7172978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7cc50be7e4c4f27a8c5fda3a0b5827790870422fb6657551c8ae4a381c61ef2 +size 180445 diff --git a/datasets/pinganmajia/train/images/订单1813652_4_7172941.jpg b/datasets/pinganmajia/train/images/订单1813652_4_7172941.jpg new file mode 100644 index 0000000..14217b2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813652_4_7172941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72295833a0750c1292204d1f55e7e4213ada2549944f7ef5fca3c048b64c90fc +size 86466 diff --git a/datasets/pinganmajia/train/images/订单1813653_4_7172963.jpg b/datasets/pinganmajia/train/images/订单1813653_4_7172963.jpg new file mode 100644 index 0000000..11fd8f7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813653_4_7172963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c430f453d54de24d4bb5ba9310d5d06365e9afdc9c4e73904b424b948f580c +size 393912 diff --git a/datasets/pinganmajia/train/images/订单1813654_4_7173002.jpg b/datasets/pinganmajia/train/images/订单1813654_4_7173002.jpg new file mode 100644 index 0000000..d51d7d9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813654_4_7173002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55835d6393240856202a03d1fdebf170e10cae1412e8f6b475bb155f2f391f39 +size 475710 diff --git a/datasets/pinganmajia/train/images/订单1813655_4_7173004.jpg b/datasets/pinganmajia/train/images/订单1813655_4_7173004.jpg new file mode 100644 index 0000000..0fc508b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813655_4_7173004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a063c141c61a7e75234ad75f675b6f0396a4806771c6003c4df34a156c25a921 +size 186066 diff --git a/datasets/pinganmajia/train/images/订单1813658_4_7172964.jpg b/datasets/pinganmajia/train/images/订单1813658_4_7172964.jpg new file mode 100644 index 0000000..9907250 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813658_4_7172964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6716c88b1dee55a5650546c15316aa3055c18fcf3cd3022e45e81f0c2db35395 +size 149799 diff --git a/datasets/pinganmajia/train/images/订单1813660_4_7173531.jpg b/datasets/pinganmajia/train/images/订单1813660_4_7173531.jpg new file mode 100644 index 0000000..d566cd4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813660_4_7173531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492fd062d20cdb2181fd831aae6f22d01dff8c9b181033fb84b3cb9a5f328e8b +size 194990 diff --git a/datasets/pinganmajia/train/images/订单1813661_4_7172960.jpg b/datasets/pinganmajia/train/images/订单1813661_4_7172960.jpg new file mode 100644 index 0000000..15eb4a0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813661_4_7172960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5990b7cfc6245aa0da4d65aa5e705616b8670eb43dbf5d17e8738e7c46443d32 +size 367380 diff --git a/datasets/pinganmajia/train/images/订单1813663_4_7173706.jpg b/datasets/pinganmajia/train/images/订单1813663_4_7173706.jpg new file mode 100644 index 0000000..b73c02f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813663_4_7173706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8acb7733e746a2719d53352e049c3d32d7e1a3050533541dc1cfe0bf2f3427 +size 88344 diff --git a/datasets/pinganmajia/train/images/订单1813664_4_7172992.jpg b/datasets/pinganmajia/train/images/订单1813664_4_7172992.jpg new file mode 100644 index 0000000..889bb35 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813664_4_7172992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f7a654777594a4787131997aa66893950a5a5021d9c1d75d532766160060ef +size 89356 diff --git a/datasets/pinganmajia/train/images/订单1813665_4_7173097.jpg b/datasets/pinganmajia/train/images/订单1813665_4_7173097.jpg new file mode 100644 index 0000000..8cf318d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813665_4_7173097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238d8791de3ef69ce23a3135f63a9a3116df4692591add74e07aa0d0c76f6011 +size 83286 diff --git a/datasets/pinganmajia/train/images/订单1813666_4_7173053.jpg b/datasets/pinganmajia/train/images/订单1813666_4_7173053.jpg new file mode 100644 index 0000000..847c384 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813666_4_7173053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:605026edf7bd4e3b3c456d0d84427a13df58d850b5c7d0573afa5cd33958b8bd +size 333176 diff --git a/datasets/pinganmajia/train/images/订单1813667_4_7173163.jpg b/datasets/pinganmajia/train/images/订单1813667_4_7173163.jpg new file mode 100644 index 0000000..c221538 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813667_4_7173163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b3190138f1822f4507d156fbe11947acf737d550a61d02534c882bbb345208 +size 924409 diff --git a/datasets/pinganmajia/train/images/订单1813668_4_7173126.jpg b/datasets/pinganmajia/train/images/订单1813668_4_7173126.jpg new file mode 100644 index 0000000..ca57ab3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813668_4_7173126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d3a07934f523cfded3810fba27941c3392ad8a262305178bc1bb6c2322f6dd +size 550763 diff --git a/datasets/pinganmajia/train/images/订单1813669_4_7173088.jpg b/datasets/pinganmajia/train/images/订单1813669_4_7173088.jpg new file mode 100644 index 0000000..0d153a5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813669_4_7173088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba52ac96f72fc5977e4a31899ea4bcff2bee96c6bd6bad4fbf718b13f5beec2 +size 174998 diff --git a/datasets/pinganmajia/train/images/订单1813671_4_7173223.jpg b/datasets/pinganmajia/train/images/订单1813671_4_7173223.jpg new file mode 100644 index 0000000..9569bcf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813671_4_7173223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2be8f5c129e485b31506f2103de043c3db49ff0a12637dfe15fe9550de9ea50 +size 181332 diff --git a/datasets/pinganmajia/train/images/订单1813672_4_7173268.jpg b/datasets/pinganmajia/train/images/订单1813672_4_7173268.jpg new file mode 100644 index 0000000..eab7f74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813672_4_7173268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e3caa2a87e5e8cb289c3f7d8ab299a68bf6a3c1329abdaed4ad18923ab9aa4 +size 270977 diff --git a/datasets/pinganmajia/train/images/订单1813678_4_7173156.jpg b/datasets/pinganmajia/train/images/订单1813678_4_7173156.jpg new file mode 100644 index 0000000..f06f95f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813678_4_7173156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a2c3782a2947e1141c936d5e22a4a49846496babc9cd7e49fcc23c51ef3d89 +size 665274 diff --git a/datasets/pinganmajia/train/images/订单1813679_4_7173171.jpg b/datasets/pinganmajia/train/images/订单1813679_4_7173171.jpg new file mode 100644 index 0000000..e1c7700 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813679_4_7173171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bf085a480beb9502f94b0b0b917cdf144d8889c6ca23a84f2b420017e35255 +size 876093 diff --git a/datasets/pinganmajia/train/images/订单1813681_4_7173191.jpg b/datasets/pinganmajia/train/images/订单1813681_4_7173191.jpg new file mode 100644 index 0000000..0ec1d8d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813681_4_7173191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815255ea7c56f7a4d776e1fd0c2f3cb4c53999d4f53878f7ab02905ca673c4dc +size 46826 diff --git a/datasets/pinganmajia/train/images/订单1813683_4_7173197.jpg b/datasets/pinganmajia/train/images/订单1813683_4_7173197.jpg new file mode 100644 index 0000000..ac22a60 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813683_4_7173197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af2628e864e37924dd37e84d4aeb5bac199b6577401250b7c3d3328f4087af7 +size 204669 diff --git a/datasets/pinganmajia/train/images/订单1813684_4_7178093.jpg b/datasets/pinganmajia/train/images/订单1813684_4_7178093.jpg new file mode 100644 index 0000000..a1977c2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813684_4_7178093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb1a281afd5dc30769d13373aa38ccf877bd44be0db28bc9095f1b154765da3 +size 111952 diff --git a/datasets/pinganmajia/train/images/订单1813686_4_7173251.jpg b/datasets/pinganmajia/train/images/订单1813686_4_7173251.jpg new file mode 100644 index 0000000..3fb87f3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813686_4_7173251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418b2538e5c28fbadc3b1199c467bc48cfc5c24b60197aa90bd61508f9eedde1 +size 85274 diff --git a/datasets/pinganmajia/train/images/订单1813687_4_7173490.jpg b/datasets/pinganmajia/train/images/订单1813687_4_7173490.jpg new file mode 100644 index 0000000..4bbce2e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813687_4_7173490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e56e485f8f78beb6b293d7c37a9fa2a1ba9d06a82240d53a2ce9b771679ede +size 96109 diff --git a/datasets/pinganmajia/train/images/订单1813688_4_7173210.jpg b/datasets/pinganmajia/train/images/订单1813688_4_7173210.jpg new file mode 100644 index 0000000..fc7d3e1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813688_4_7173210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1050070084a85448857d8bbe027a39b8eff20fa633b628ebde272dcf9991a3e4 +size 162334 diff --git a/datasets/pinganmajia/train/images/订单1813689_4_7173277.jpg b/datasets/pinganmajia/train/images/订单1813689_4_7173277.jpg new file mode 100644 index 0000000..eb954ff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813689_4_7173277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2774a91ead6b01e39c5ccb8d7b50d3614bfc8156af216a7aab6fe4db5c13cde9 +size 577305 diff --git a/datasets/pinganmajia/train/images/订单1813690_4_7173398.jpg b/datasets/pinganmajia/train/images/订单1813690_4_7173398.jpg new file mode 100644 index 0000000..43a30a5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813690_4_7173398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fda02c2f6673d3ca65a5a719029d781b201cec4cc5c7b421a33f5b983b831b +size 158697 diff --git a/datasets/pinganmajia/train/images/订单1813691_4_7173520.jpg b/datasets/pinganmajia/train/images/订单1813691_4_7173520.jpg new file mode 100644 index 0000000..7dde881 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813691_4_7173520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de56635cab6fa83ec7ee28880e5333e4bdb647a80371fc342cd8d31ca4d6f598 +size 174494 diff --git a/datasets/pinganmajia/train/images/订单1813695_4_7173291.jpg b/datasets/pinganmajia/train/images/订单1813695_4_7173291.jpg new file mode 100644 index 0000000..47baab1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813695_4_7173291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a962a3ced46ca862d9e41bc957b10422be62079eb8d1928882560b4e9f8461fa +size 483125 diff --git a/datasets/pinganmajia/train/images/订单1813698_4_7173354.jpg b/datasets/pinganmajia/train/images/订单1813698_4_7173354.jpg new file mode 100644 index 0000000..3c46aa5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813698_4_7173354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126be26928e28e7b49a6a39c4c4f5ff9719cdfdf409bb202e5d502f9297007a3 +size 87832 diff --git a/datasets/pinganmajia/train/images/订单1813699_4_7173353.jpg b/datasets/pinganmajia/train/images/订单1813699_4_7173353.jpg new file mode 100644 index 0000000..bd0f988 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813699_4_7173353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9fd0c5b828da8256c45b5b7da66a84073dbb357c6f302e5d8bf4d9c184fa7d +size 100927 diff --git a/datasets/pinganmajia/train/images/订单1813702_4_7173382.jpg b/datasets/pinganmajia/train/images/订单1813702_4_7173382.jpg new file mode 100644 index 0000000..1db7a3a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813702_4_7173382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55135aba6d6a7b222b6f292d0fb3b4c2e2acd525cded1b1eeed362d54cb13970 +size 134546 diff --git a/datasets/pinganmajia/train/images/订单1813703_4_7173460.jpg b/datasets/pinganmajia/train/images/订单1813703_4_7173460.jpg new file mode 100644 index 0000000..ad1a34d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813703_4_7173460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b9707da0ea164cddde2c9a8ec60ca024e84897bb759fc0273a60392e11f6ea +size 77434 diff --git a/datasets/pinganmajia/train/images/订单1813704_4_7173387.jpg b/datasets/pinganmajia/train/images/订单1813704_4_7173387.jpg new file mode 100644 index 0000000..6e9e3fc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813704_4_7173387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba48886e6fe270863d4bdb704796e3e8b0fcd9301e33e221931d4498144bd6c +size 91869 diff --git a/datasets/pinganmajia/train/images/订单1813705_4_7173451.jpg b/datasets/pinganmajia/train/images/订单1813705_4_7173451.jpg new file mode 100644 index 0000000..6ce99d8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813705_4_7173451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ded6e205fd7eef2bedbf0fc3c954fe3890c779ff85b5c876a62e508702721c0 +size 94158 diff --git a/datasets/pinganmajia/train/images/订单1813706_4_7173421.jpg b/datasets/pinganmajia/train/images/订单1813706_4_7173421.jpg new file mode 100644 index 0000000..c43354b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813706_4_7173421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0abc747d8f33025f3ae0935af4f5b2e66ee385721811cebccc816730c5a564e3 +size 154734 diff --git a/datasets/pinganmajia/train/images/订单1813707_4_7173500.jpg b/datasets/pinganmajia/train/images/订单1813707_4_7173500.jpg new file mode 100644 index 0000000..aab94ae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813707_4_7173500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd7a8c01cf0948f1645d95e8b199960c7f0e29448750fc297c510d045ae0ac6 +size 148418 diff --git a/datasets/pinganmajia/train/images/订单1813709_4_7173655.jpg b/datasets/pinganmajia/train/images/订单1813709_4_7173655.jpg new file mode 100644 index 0000000..33b1878 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813709_4_7173655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730113764d8830bcbef2afafd038a54ba49f745ef5f3530e87cb9278090f0a7e +size 483864 diff --git a/datasets/pinganmajia/train/images/订单1813710_4_7173416.jpg b/datasets/pinganmajia/train/images/订单1813710_4_7173416.jpg new file mode 100644 index 0000000..a9fad6b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813710_4_7173416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66653aff17bf5c0f15644157b187b9e55cd65a1638aba6663d1c3be2f867b1b +size 493297 diff --git a/datasets/pinganmajia/train/images/订单1813711_4_7173507.jpg b/datasets/pinganmajia/train/images/订单1813711_4_7173507.jpg new file mode 100644 index 0000000..4042953 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813711_4_7173507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3245d5c29ff90990d958f494be78f152d5699f1b2f46be368a560e581660df4b +size 88481 diff --git a/datasets/pinganmajia/train/images/订单1813713_4_7173629.jpg b/datasets/pinganmajia/train/images/订单1813713_4_7173629.jpg new file mode 100644 index 0000000..0cdea63 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813713_4_7173629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8aa9e85b6d7e4c8a3ec24915996ca15fe05381d761240b749510f643c52c74 +size 118043 diff --git a/datasets/pinganmajia/train/images/订单1813714_4_7173456.jpg b/datasets/pinganmajia/train/images/订单1813714_4_7173456.jpg new file mode 100644 index 0000000..9fede70 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813714_4_7173456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330b42e1ffd9232f9f809e5818eaa77ca5cc69455051ddc50fcf787787bc5751 +size 122079 diff --git a/datasets/pinganmajia/train/images/订单1813716_4_7173555.jpg b/datasets/pinganmajia/train/images/订单1813716_4_7173555.jpg new file mode 100644 index 0000000..04e37cc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813716_4_7173555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495352c3a190833c5bf37490ffad67e2b688b806c1a79b487b439927eb9fb5d1 +size 106800 diff --git a/datasets/pinganmajia/train/images/订单1813717_4_7173546.jpg b/datasets/pinganmajia/train/images/订单1813717_4_7173546.jpg new file mode 100644 index 0000000..c5b6f67 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813717_4_7173546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0196377e93278a0d782218b8068ba353cdf6dfa128cea5d89f1f9020a775fb0 +size 88561 diff --git a/datasets/pinganmajia/train/images/订单1813720_4_7173776.jpg b/datasets/pinganmajia/train/images/订单1813720_4_7173776.jpg new file mode 100644 index 0000000..8ce34f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813720_4_7173776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02021d2f3443129cea0aa0a40a1a7067bf0c02e11fc903af997311c7ceb12ebe +size 320126 diff --git a/datasets/pinganmajia/train/images/订单1813721_4_7173611.jpg b/datasets/pinganmajia/train/images/订单1813721_4_7173611.jpg new file mode 100644 index 0000000..715366f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813721_4_7173611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff8e6cc6041c104953a65c8d5dbd024b9bd0763297020e7f1bbcbafc0de4300 +size 419032 diff --git a/datasets/pinganmajia/train/images/订单1813726_4_7173697.jpg b/datasets/pinganmajia/train/images/订单1813726_4_7173697.jpg new file mode 100644 index 0000000..50efe0f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813726_4_7173697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e58398dbc83257bb8b4ee8a5f5b2a3823731f0786cde1108191e644267c6eb +size 347936 diff --git a/datasets/pinganmajia/train/images/订单1813728_4_7173665.jpg b/datasets/pinganmajia/train/images/订单1813728_4_7173665.jpg new file mode 100644 index 0000000..afda17e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813728_4_7173665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c72fc32c11f4a2f57559e6353eb2f2b9ac04c0a111a60191a8fdbdd1f462edd +size 129636 diff --git a/datasets/pinganmajia/train/images/订单1813731_4_7173779.jpg b/datasets/pinganmajia/train/images/订单1813731_4_7173779.jpg new file mode 100644 index 0000000..0a61e08 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813731_4_7173779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46712f19e286f0e66fd455b1faa4d1e3b0c4a286352e8b8ffc1c70bb82e388a7 +size 187781 diff --git a/datasets/pinganmajia/train/images/订单1813733_4_7173724.jpg b/datasets/pinganmajia/train/images/订单1813733_4_7173724.jpg new file mode 100644 index 0000000..18a4150 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813733_4_7173724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfcc588c16a6458cae213a9eec3c6c735f5a25d884940fb3e7ba92f6894cb62 +size 175854 diff --git a/datasets/pinganmajia/train/images/订单1813734_4_7174472.jpg b/datasets/pinganmajia/train/images/订单1813734_4_7174472.jpg new file mode 100644 index 0000000..6525edc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813734_4_7174472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009d2e9cd0c5fa06e03cf6bff61172fd0237e7d14a35bddc721213ddbaad877c +size 163007 diff --git a/datasets/pinganmajia/train/images/订单1813737_4_7173790.jpg b/datasets/pinganmajia/train/images/订单1813737_4_7173790.jpg new file mode 100644 index 0000000..66c52dd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813737_4_7173790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac58a6c1755ff91fbd87c58a6e76f19a2f9539a32e09ab37b5b8a5396d17640b +size 186795 diff --git a/datasets/pinganmajia/train/images/订单1813740_4_7173889.jpg b/datasets/pinganmajia/train/images/订单1813740_4_7173889.jpg new file mode 100644 index 0000000..d457fa2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813740_4_7173889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03bc23c1dde258561b200e5d844239c841eeb0ec04936d827db641efc0dd80c3 +size 314709 diff --git a/datasets/pinganmajia/train/images/订单1813741_4_7174109.jpg b/datasets/pinganmajia/train/images/订单1813741_4_7174109.jpg new file mode 100644 index 0000000..b2201e7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813741_4_7174109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f9bff105d2d4e2100052d8d142ff42799df17eac2352fd144bac74bc3e444a +size 71691 diff --git a/datasets/pinganmajia/train/images/订单1813742_4_7173802.jpg b/datasets/pinganmajia/train/images/订单1813742_4_7173802.jpg new file mode 100644 index 0000000..a4042aa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813742_4_7173802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d777e74be45154c275eca5c37f64ea24af00b7c74479dfdc07d03bb38105cba5 +size 93446 diff --git a/datasets/pinganmajia/train/images/订单1813744_4_7173834.jpg b/datasets/pinganmajia/train/images/订单1813744_4_7173834.jpg new file mode 100644 index 0000000..82e13e9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813744_4_7173834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2222d987501194b300bdcf1fb698006eb41ec60105ee8e7f93f9b11df35659 +size 80680 diff --git a/datasets/pinganmajia/train/images/订单1813745_4_7173952.jpg b/datasets/pinganmajia/train/images/订单1813745_4_7173952.jpg new file mode 100644 index 0000000..556d019 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813745_4_7173952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d91abac0c08013ff81d65b498ef5c6b30489e2cd2643ebcc4d85e480e327c6e +size 139624 diff --git a/datasets/pinganmajia/train/images/订单1813746_4_7173873.jpg b/datasets/pinganmajia/train/images/订单1813746_4_7173873.jpg new file mode 100644 index 0000000..efa75aa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813746_4_7173873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4dda75829daf2169074d020422f3e1d25b38b6c3f356b50b03c1c62f6989c7 +size 621089 diff --git a/datasets/pinganmajia/train/images/订单1813747_4_7173974.jpg b/datasets/pinganmajia/train/images/订单1813747_4_7173974.jpg new file mode 100644 index 0000000..e7d35d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813747_4_7173974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f5ac12a484f7d1a210018efdcab6ba4baa0c1ec18189dc0d67116d53676967 +size 306534 diff --git a/datasets/pinganmajia/train/images/订单1813748_4_7173907.jpg b/datasets/pinganmajia/train/images/订单1813748_4_7173907.jpg new file mode 100644 index 0000000..5c910a8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813748_4_7173907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d5e050d583bb9a4f32b6bc2a5effdecc24f9dbf74eef09d9fe7b831ea53999 +size 156239 diff --git a/datasets/pinganmajia/train/images/订单1813749_4_7173994.jpg b/datasets/pinganmajia/train/images/订单1813749_4_7173994.jpg new file mode 100644 index 0000000..0459174 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813749_4_7173994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4fdea876736668c7dd2e339034d82c2a668e77666664fbd64462b3aa2a03e1 +size 246303 diff --git a/datasets/pinganmajia/train/images/订单1813751_4_7173920.jpg b/datasets/pinganmajia/train/images/订单1813751_4_7173920.jpg new file mode 100644 index 0000000..25c771d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813751_4_7173920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33ede1cf3fa8622a2a3182b088e255090dbde516e54153565997ba90263c134 +size 131689 diff --git a/datasets/pinganmajia/train/images/订单1813752_4_7173989.jpg b/datasets/pinganmajia/train/images/订单1813752_4_7173989.jpg new file mode 100644 index 0000000..b612a00 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813752_4_7173989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b052a106b32fdeff70c54b972caff260fd4c53a9578f4bddad8114c919d60cac +size 134635 diff --git a/datasets/pinganmajia/train/images/订单1813753_4_7173886.jpg b/datasets/pinganmajia/train/images/订单1813753_4_7173886.jpg new file mode 100644 index 0000000..ace8678 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813753_4_7173886.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6d82b243694cc84ffe1ed6219bd157823f65a9ae9c7451198479bd2876ae6a +size 94835 diff --git a/datasets/pinganmajia/train/images/订单1813754_4_7173928.jpg b/datasets/pinganmajia/train/images/订单1813754_4_7173928.jpg new file mode 100644 index 0000000..efe4b69 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813754_4_7173928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2d3b808e605438fc97da996fadc9436025e7f1edc4b3cb683a54f6ea1d0249 +size 134524 diff --git a/datasets/pinganmajia/train/images/订单1813755_4_7174068.jpg b/datasets/pinganmajia/train/images/订单1813755_4_7174068.jpg new file mode 100644 index 0000000..c1fa48f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813755_4_7174068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0e6be4d20580b7439a464511382ade628b7d0e133dee1a78af4afffc6aca2e +size 257244 diff --git a/datasets/pinganmajia/train/images/订单1813756_4_7173948.jpg b/datasets/pinganmajia/train/images/订单1813756_4_7173948.jpg new file mode 100644 index 0000000..0ca8136 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813756_4_7173948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039afa634b590fac794ca0a4aeae006409e00cf471ed07484c980d4713a22156 +size 103648 diff --git a/datasets/pinganmajia/train/images/订单1813758_4_7173975.jpg b/datasets/pinganmajia/train/images/订单1813758_4_7173975.jpg new file mode 100644 index 0000000..0260058 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813758_4_7173975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb3e6fc6f75d1fc60d16acdb75818333b74cb815153b4ca3f89cd848a925223 +size 129983 diff --git a/datasets/pinganmajia/train/images/订单1813759_4_7174043.jpg b/datasets/pinganmajia/train/images/订单1813759_4_7174043.jpg new file mode 100644 index 0000000..3825a50 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813759_4_7174043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a061136403b065dfcbcd4052127a7c6e5491b9006810e6fb34b3b3654ed1d34 +size 89624 diff --git a/datasets/pinganmajia/train/images/订单1813760_4_7174019.jpg b/datasets/pinganmajia/train/images/订单1813760_4_7174019.jpg new file mode 100644 index 0000000..7a2f3c5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813760_4_7174019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5d104ca39f27189f71f39994ad2a04bd26e350754e6c00a1f6946089d19bd8 +size 159456 diff --git a/datasets/pinganmajia/train/images/订单1813763_4_7174230.jpg b/datasets/pinganmajia/train/images/订单1813763_4_7174230.jpg new file mode 100644 index 0000000..1cbdebe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813763_4_7174230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ddeff92c82c4352af2530e24d580713629ab6c4200c95a656c04b9a5fca9ce +size 182259 diff --git a/datasets/pinganmajia/train/images/订单1813765_4_7174017.jpg b/datasets/pinganmajia/train/images/订单1813765_4_7174017.jpg new file mode 100644 index 0000000..91e8a1a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813765_4_7174017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fffde242bb949667cc9c441ffb4bcd41d5a1642500c4226584b2d99d696710 +size 109528 diff --git a/datasets/pinganmajia/train/images/订单1813767_4_7174018.jpg b/datasets/pinganmajia/train/images/订单1813767_4_7174018.jpg new file mode 100644 index 0000000..dc17394 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813767_4_7174018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892be0cf6ba025858c311241003986e8009de5b6acca1f83dbe0c6b2cb64a2fb +size 492356 diff --git a/datasets/pinganmajia/train/images/订单1813769_4_7173963.jpg b/datasets/pinganmajia/train/images/订单1813769_4_7173963.jpg new file mode 100644 index 0000000..89bda88 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813769_4_7173963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c74ad5f5bc1cad95a227787ef87c812165e938792e2401347be1d68fcdaf89 +size 218206 diff --git a/datasets/pinganmajia/train/images/订单1813770_4_7174003.jpg b/datasets/pinganmajia/train/images/订单1813770_4_7174003.jpg new file mode 100644 index 0000000..f9982e1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813770_4_7174003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fbc5ace128f9dad0e57b6a647062ee29a92583197e75e907a5d026a978ac3c +size 76801 diff --git a/datasets/pinganmajia/train/images/订单1813771_4_7174139.jpg b/datasets/pinganmajia/train/images/订单1813771_4_7174139.jpg new file mode 100644 index 0000000..cf20e04 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813771_4_7174139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9953000e69001e934e5f1f721f74448fa2c4f73720dc659b9024e8da912a17c5 +size 166684 diff --git a/datasets/pinganmajia/train/images/订单1813773_4_7174100.jpg b/datasets/pinganmajia/train/images/订单1813773_4_7174100.jpg new file mode 100644 index 0000000..68b1bce --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813773_4_7174100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab429a77493c59ba1a244e2b8940f334248b65987418b3698a663e8770b156a5 +size 361131 diff --git a/datasets/pinganmajia/train/images/订单1813777_4_7174116.jpg b/datasets/pinganmajia/train/images/订单1813777_4_7174116.jpg new file mode 100644 index 0000000..5977c94 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813777_4_7174116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef7216cd8159ffd9ba10a07b1ade74aa631e5c5ae97422ea111d69a3f054635 +size 340263 diff --git a/datasets/pinganmajia/train/images/订单1813778_4_7174194.jpg b/datasets/pinganmajia/train/images/订单1813778_4_7174194.jpg new file mode 100644 index 0000000..2a4dc2f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813778_4_7174194.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecee12a213710e22feb3f9688392454d0e191cf1c6ce5ad477646e0641c545cb +size 160632 diff --git a/datasets/pinganmajia/train/images/订单1813779_4_7174204.jpg b/datasets/pinganmajia/train/images/订单1813779_4_7174204.jpg new file mode 100644 index 0000000..0cb9ffa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813779_4_7174204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ade7659d2d93881c2351f80b2c9160b7bc3773e40e1a8de200d5670a994711 +size 500255 diff --git a/datasets/pinganmajia/train/images/订单1813782_4_7174205.jpg b/datasets/pinganmajia/train/images/订单1813782_4_7174205.jpg new file mode 100644 index 0000000..aa38e39 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813782_4_7174205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c445ab95a673d62b55bf95c7cb956fe07be68e89689501789c576ee39ab4882e +size 91020 diff --git a/datasets/pinganmajia/train/images/订单1813784_4_7174248.jpg b/datasets/pinganmajia/train/images/订单1813784_4_7174248.jpg new file mode 100644 index 0000000..41c2187 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813784_4_7174248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85036d8ec15b26666ca4eea41dcf87cad57f2214cdc4f3af6029784c33d755f +size 95433 diff --git a/datasets/pinganmajia/train/images/订单1813786_4_7174249.jpg b/datasets/pinganmajia/train/images/订单1813786_4_7174249.jpg new file mode 100644 index 0000000..505bc5b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813786_4_7174249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04b97347175acbdb3bf60197d98520844f9d7818465987b2832c9145ef42388 +size 125500 diff --git a/datasets/pinganmajia/train/images/订单1813787_4_7174197.jpg b/datasets/pinganmajia/train/images/订单1813787_4_7174197.jpg new file mode 100644 index 0000000..fc95f35 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813787_4_7174197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2206156b211487bb70cdfa2aa7f6e7ea6196f23eef022e2e28510dd95f90dfbd +size 84873 diff --git a/datasets/pinganmajia/train/images/订单1813788_4_7174417.jpg b/datasets/pinganmajia/train/images/订单1813788_4_7174417.jpg new file mode 100644 index 0000000..ac92b26 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813788_4_7174417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e964137827fb6aa4fd1072dec3a63e2f8436bf317bd9c556fa591916459281 +size 97853 diff --git a/datasets/pinganmajia/train/images/订单1813789_4_7174252.jpg b/datasets/pinganmajia/train/images/订单1813789_4_7174252.jpg new file mode 100644 index 0000000..84cb224 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813789_4_7174252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8538a0e48e770845ed901e0fceaac7b53916d3862d2b0581880a08a9a9bb56 +size 80601 diff --git a/datasets/pinganmajia/train/images/订单1813791_4_7174238.jpg b/datasets/pinganmajia/train/images/订单1813791_4_7174238.jpg new file mode 100644 index 0000000..fd4cd84 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813791_4_7174238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60f1817f376b12892e604231d14caeea6d55abece8549ba02e7389121883db +size 63299 diff --git a/datasets/pinganmajia/train/images/订单1813792_4_7174310.jpg b/datasets/pinganmajia/train/images/订单1813792_4_7174310.jpg new file mode 100644 index 0000000..829ffd6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813792_4_7174310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a966720e5baa5779e03d3f822f37bdb6c3139d6248745cf430e099f0718cfb3 +size 257293 diff --git a/datasets/pinganmajia/train/images/订单1813793_4_7174344.jpg b/datasets/pinganmajia/train/images/订单1813793_4_7174344.jpg new file mode 100644 index 0000000..bc3aca6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813793_4_7174344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc31b27ac2756603066641a05b8e0e9262209a18c902506a49a2f9ae7a7c409 +size 206481 diff --git a/datasets/pinganmajia/train/images/订单1813794_4_7174250.jpg b/datasets/pinganmajia/train/images/订单1813794_4_7174250.jpg new file mode 100644 index 0000000..61ce055 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813794_4_7174250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b603373f341581b7a316110347e16698a3e5c014fbefa21b5a26814892aac3 +size 294224 diff --git a/datasets/pinganmajia/train/images/订单1813798_4_7174360.jpg b/datasets/pinganmajia/train/images/订单1813798_4_7174360.jpg new file mode 100644 index 0000000..d5d0be3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813798_4_7174360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45130c8fff249cdf1e266fa91e6a90a280b450675798121d503f0602b92dd847 +size 74613 diff --git a/datasets/pinganmajia/train/images/订单1813799_4_7174358.jpg b/datasets/pinganmajia/train/images/订单1813799_4_7174358.jpg new file mode 100644 index 0000000..dfa217c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813799_4_7174358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4f940b4f544a117d7acd90ee6b24fe3ff1e6db79e4955f1267b1b334ca6b0c +size 324913 diff --git a/datasets/pinganmajia/train/images/订单1813800_4_7174426.jpg b/datasets/pinganmajia/train/images/订单1813800_4_7174426.jpg new file mode 100644 index 0000000..0405618 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813800_4_7174426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80d0bf224bcd0d895030133cb00f168ec4bb62a14c279aa2c33377ac41163ca +size 110804 diff --git a/datasets/pinganmajia/train/images/订单1813801_4_7174658.jpg b/datasets/pinganmajia/train/images/订单1813801_4_7174658.jpg new file mode 100644 index 0000000..d5a6628 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813801_4_7174658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310b67fda0fcd3c30cf8a1a84e3ca6d085d0b420582e7e1f8a2d1fa6eeff7091 +size 523999 diff --git a/datasets/pinganmajia/train/images/订单1813802_4_7174420.jpg b/datasets/pinganmajia/train/images/订单1813802_4_7174420.jpg new file mode 100644 index 0000000..a8499d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813802_4_7174420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f2e10c7c76488915e62e04bd01dfa7d0d9de6538e04ac8e54c6c8331b145a6 +size 109997 diff --git a/datasets/pinganmajia/train/images/订单1813803_4_7174456.jpg b/datasets/pinganmajia/train/images/订单1813803_4_7174456.jpg new file mode 100644 index 0000000..692993d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813803_4_7174456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2aa8da1bc2c785194aec0fd28efb8c4d1ce6b531a086c52fda75c5c0c1cd336 +size 384761 diff --git a/datasets/pinganmajia/train/images/订单1813806_4_7174844.jpg b/datasets/pinganmajia/train/images/订单1813806_4_7174844.jpg new file mode 100644 index 0000000..772cf9a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813806_4_7174844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9227cbadd7d7792adce1075815684b7877dec8bb6f21b2e59a144ffe9092bd2c +size 52565 diff --git a/datasets/pinganmajia/train/images/订单1813807_4_7174801.jpg b/datasets/pinganmajia/train/images/订单1813807_4_7174801.jpg new file mode 100644 index 0000000..e139b7d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813807_4_7174801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae58a4906be7fdd6f6aa49d0081086772b6bb56a1c8ef548d2bcc02388288f4 +size 137999 diff --git a/datasets/pinganmajia/train/images/订单1813808_4_7174469.jpg b/datasets/pinganmajia/train/images/订单1813808_4_7174469.jpg new file mode 100644 index 0000000..88c8e74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813808_4_7174469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a6a9e349b6f16e2a1308f279dc7cffcbb644bed8bd4091063da905c57ea6b5 +size 90013 diff --git a/datasets/pinganmajia/train/images/订单1813809_4_7174501.jpg b/datasets/pinganmajia/train/images/订单1813809_4_7174501.jpg new file mode 100644 index 0000000..bc91576 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813809_4_7174501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5388808fe716ee072bfd302336ef509c38ddd0451ae37ccc97e050e7cb224fbd +size 62993 diff --git a/datasets/pinganmajia/train/images/订单1813810_4_7174573.jpg b/datasets/pinganmajia/train/images/订单1813810_4_7174573.jpg new file mode 100644 index 0000000..bd2c91c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813810_4_7174573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1b3fe0ebbdcedfb606dace95dda54957d0d65fa34f76f82e6e31b94342683e +size 408876 diff --git a/datasets/pinganmajia/train/images/订单1813812_4_7174521.jpg b/datasets/pinganmajia/train/images/订单1813812_4_7174521.jpg new file mode 100644 index 0000000..f7e2be5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813812_4_7174521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14939e97f87efbb7ef776965e782579c56013ee2ac3bd67ec898aba29ff10382 +size 77176 diff --git a/datasets/pinganmajia/train/images/订单1813813_4_7174711.jpg b/datasets/pinganmajia/train/images/订单1813813_4_7174711.jpg new file mode 100644 index 0000000..61c2637 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813813_4_7174711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ff908a090fd3bebdba783997cfd19d40e1c93e10695236ba7a9ea51eddc439d +size 415109 diff --git a/datasets/pinganmajia/train/images/订单1813816_4_7174637.jpg b/datasets/pinganmajia/train/images/订单1813816_4_7174637.jpg new file mode 100644 index 0000000..8eebe9c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813816_4_7174637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:663f557e2004b4653855d4ca0968ca73fce54dfda5b2aceb86470dd5c6a96fe7 +size 220433 diff --git a/datasets/pinganmajia/train/images/订单1813818_4_7174536.jpg b/datasets/pinganmajia/train/images/订单1813818_4_7174536.jpg new file mode 100644 index 0000000..b589182 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813818_4_7174536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464e42876877b66b11c0b70191424cf8d4ddb386fabee4d06168e3219002050e +size 473616 diff --git a/datasets/pinganmajia/train/images/订单1813820_4_7174913.jpg b/datasets/pinganmajia/train/images/订单1813820_4_7174913.jpg new file mode 100644 index 0000000..f009309 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813820_4_7174913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ec743e3fecff1718919c88542512e95a8da1ccfc0979ab1d1eb28ab926d4bd +size 480775 diff --git a/datasets/pinganmajia/train/images/订单1813821_4_7174700.jpg b/datasets/pinganmajia/train/images/订单1813821_4_7174700.jpg new file mode 100644 index 0000000..01f384c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813821_4_7174700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6d14ca5fe22b509145e9e18ae1fd5b20a1fcd074c8c36ef518913beb24edda +size 65120 diff --git a/datasets/pinganmajia/train/images/订单1813823_4_7174604.jpg b/datasets/pinganmajia/train/images/订单1813823_4_7174604.jpg new file mode 100644 index 0000000..8543529 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813823_4_7174604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01022a695f293f4d8859747e1cf776da4c8b23b9d5dfefea7456f72497c3f803 +size 70421 diff --git a/datasets/pinganmajia/train/images/订单1813825_4_7174526.jpg b/datasets/pinganmajia/train/images/订单1813825_4_7174526.jpg new file mode 100644 index 0000000..0407c87 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813825_4_7174526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af3a8acd76568f3129b89b42c23c138a3036561637371261a746c3594279277 +size 76500 diff --git a/datasets/pinganmajia/train/images/订单1813826_4_7174659.jpg b/datasets/pinganmajia/train/images/订单1813826_4_7174659.jpg new file mode 100644 index 0000000..12d897c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813826_4_7174659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7556b2ccedc983510b8690c7fd4f06a07c5763d123e8d594621ae2c2103a81 +size 73569 diff --git a/datasets/pinganmajia/train/images/订单1813827_4_7174690.jpg b/datasets/pinganmajia/train/images/订单1813827_4_7174690.jpg new file mode 100644 index 0000000..afd8203 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813827_4_7174690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d095aa61a61d72a9eb49d1e61819803b872b46ceae934b9d3e00bcede20b59f9 +size 117790 diff --git a/datasets/pinganmajia/train/images/订单1813828_4_7174696.jpg b/datasets/pinganmajia/train/images/订单1813828_4_7174696.jpg new file mode 100644 index 0000000..a6f4a4d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813828_4_7174696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3edb297e6279b54f5b5b2fbe050aa93b6a2fd2d98c5edc1b318cccc80cd1c3 +size 169795 diff --git a/datasets/pinganmajia/train/images/订单1813829_4_7174703.jpg b/datasets/pinganmajia/train/images/订单1813829_4_7174703.jpg new file mode 100644 index 0000000..4fa74c4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813829_4_7174703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39651d34f52df9ab21654f25dd3adcc9e47f7c0af87011bb16845e72067c1776 +size 137809 diff --git a/datasets/pinganmajia/train/images/订单1813830_4_7174674.jpg b/datasets/pinganmajia/train/images/订单1813830_4_7174674.jpg new file mode 100644 index 0000000..5ba30c2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813830_4_7174674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4273e5f6414eaeb31579e0f1727f4b7afd19694c222cfa21481a0a02e97c60a2 +size 215579 diff --git a/datasets/pinganmajia/train/images/订单1813834_4_7174653.jpg b/datasets/pinganmajia/train/images/订单1813834_4_7174653.jpg new file mode 100644 index 0000000..1a8daeb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813834_4_7174653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd451d5fa6e4ea72973bac305260a8f922442972d18a076806b284829f4a2cd +size 244482 diff --git a/datasets/pinganmajia/train/images/订单1813835_4_7174828.jpg b/datasets/pinganmajia/train/images/订单1813835_4_7174828.jpg new file mode 100644 index 0000000..3852f93 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813835_4_7174828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b1d6a24a9ffe0a7a37b60befe53216e4fbb0ee94cda3da8cfa54e898c52ead +size 76077 diff --git a/datasets/pinganmajia/train/images/订单1813837_4_7174746.jpg b/datasets/pinganmajia/train/images/订单1813837_4_7174746.jpg new file mode 100644 index 0000000..c4221df --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813837_4_7174746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42154e8ce4ba360c3c2559ce8f9e0008fd7821e3c588ba29b87e1f990132437c +size 73261 diff --git a/datasets/pinganmajia/train/images/订单1813838_4_7174900.jpg b/datasets/pinganmajia/train/images/订单1813838_4_7174900.jpg new file mode 100644 index 0000000..5207c2d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813838_4_7174900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5903443e674b6d73cc515d307c15dec511eb564e16e6d95f158f26249a27dac +size 72857 diff --git a/datasets/pinganmajia/train/images/订单1813840_4_7174808.jpg b/datasets/pinganmajia/train/images/订单1813840_4_7174808.jpg new file mode 100644 index 0000000..3f33b11 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813840_4_7174808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9acece740cdb893494d8d9dfbeeca6f5d79f7360fbaf14a28b292fe452e87143 +size 50808 diff --git a/datasets/pinganmajia/train/images/订单1813841_4_7174814.jpg b/datasets/pinganmajia/train/images/订单1813841_4_7174814.jpg new file mode 100644 index 0000000..90b993a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813841_4_7174814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b579509cf7dccbd6f2cdd24d0217b65fa5128f1bb645ed9750b63bdee0896f +size 322614 diff --git a/datasets/pinganmajia/train/images/订单1813843_4_7174776.jpg b/datasets/pinganmajia/train/images/订单1813843_4_7174776.jpg new file mode 100644 index 0000000..a4f64d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813843_4_7174776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67081e356253550a094f2d50aa467c6ef98f336654cd264e57fde1920f59670f +size 98217 diff --git a/datasets/pinganmajia/train/images/订单1813844_4_7174907.jpg b/datasets/pinganmajia/train/images/订单1813844_4_7174907.jpg new file mode 100644 index 0000000..214146e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813844_4_7174907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8137c7c480aaf82c4121a111823b74bb85100815e960eeab0b7c863495df84 +size 148870 diff --git a/datasets/pinganmajia/train/images/订单1813846_4_7175020.jpg b/datasets/pinganmajia/train/images/订单1813846_4_7175020.jpg new file mode 100644 index 0000000..3ab89fb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813846_4_7175020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:140562d26b77bd8f2f8c298288b0edb9f741af8ed71c199c94f1a53e261ef562 +size 911661 diff --git a/datasets/pinganmajia/train/images/订单1813847_4_7174978.jpg b/datasets/pinganmajia/train/images/订单1813847_4_7174978.jpg new file mode 100644 index 0000000..7365f0d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813847_4_7174978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22aba7207a29a7518aae2d04662294abf0de06b4f7ac96596d990b9ca86500f +size 274017 diff --git a/datasets/pinganmajia/train/images/订单1813848_4_7174953.jpg b/datasets/pinganmajia/train/images/订单1813848_4_7174953.jpg new file mode 100644 index 0000000..1a3f281 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813848_4_7174953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bda4cd1b2de8c9a1a1d75a76879a5bb032a8fcd46fbb9564e7c3caa5cbce7bb +size 519260 diff --git a/datasets/pinganmajia/train/images/订单1813849_4_7174928.jpg b/datasets/pinganmajia/train/images/订单1813849_4_7174928.jpg new file mode 100644 index 0000000..f4b980a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813849_4_7174928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a9d8d5773215c0e293683508fdf8659df1fcb97fedf7637d15349fa9c2921d +size 62551 diff --git a/datasets/pinganmajia/train/images/订单1813851_4_7174942.jpg b/datasets/pinganmajia/train/images/订单1813851_4_7174942.jpg new file mode 100644 index 0000000..b98f24f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813851_4_7174942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5a21977406a18c39449b49703b1e86368058a10e318bb47171d0624e58ae2e +size 131404 diff --git a/datasets/pinganmajia/train/images/订单1813853_4_7175188.jpg b/datasets/pinganmajia/train/images/订单1813853_4_7175188.jpg new file mode 100644 index 0000000..a74a6ab --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813853_4_7175188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ae048ac90e7dab7c858c9266022b16c15fa46e66fbc2ac6f2c372b92fe11a8 +size 127533 diff --git a/datasets/pinganmajia/train/images/订单1813854_4_7175008.jpg b/datasets/pinganmajia/train/images/订单1813854_4_7175008.jpg new file mode 100644 index 0000000..ddb6df8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813854_4_7175008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a16935d5460009d3851a95ff0feeb1b287ff34a852e5f7986f84a4e73edd7a +size 183124 diff --git a/datasets/pinganmajia/train/images/订单1813855_4_7174986.jpg b/datasets/pinganmajia/train/images/订单1813855_4_7174986.jpg new file mode 100644 index 0000000..c979d53 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813855_4_7174986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf5ff8c58aec7a453e6a836d26bec8d8974f4bbca601ed703f43260fae11693 +size 111213 diff --git a/datasets/pinganmajia/train/images/订单1813857_4_7175050.jpg b/datasets/pinganmajia/train/images/订单1813857_4_7175050.jpg new file mode 100644 index 0000000..47e0e46 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813857_4_7175050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e66bcd47ccefc403fd161d2200d1b2f0f116903b7bfbc6f5d98d119331cbc8 +size 202836 diff --git a/datasets/pinganmajia/train/images/订单1813863_4_7175257.jpg b/datasets/pinganmajia/train/images/订单1813863_4_7175257.jpg new file mode 100644 index 0000000..85523fa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813863_4_7175257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:592b0377dcbf6b6de0b7aad680ae796f027309d0e11f6fdc0552a1db406a94ac +size 95553 diff --git a/datasets/pinganmajia/train/images/订单1813864_4_7175018.jpg b/datasets/pinganmajia/train/images/订单1813864_4_7175018.jpg new file mode 100644 index 0000000..40cf19b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813864_4_7175018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec60d28f0c839596e172ea732aa352b8ef90c90e2775e50c7190962a965fb51 +size 393669 diff --git a/datasets/pinganmajia/train/images/订单1813865_4_7175001.jpg b/datasets/pinganmajia/train/images/订单1813865_4_7175001.jpg new file mode 100644 index 0000000..0786f2c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813865_4_7175001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d3cf75f55f5c846fac2d46354121ffbeed404a0044f3003cf5822dbed055be +size 186950 diff --git a/datasets/pinganmajia/train/images/订单1813866_4_7175029.jpg b/datasets/pinganmajia/train/images/订单1813866_4_7175029.jpg new file mode 100644 index 0000000..7001500 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813866_4_7175029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c81af58123aeb8a919d81111a9641bc4ebce8d08ba2b5e80a36a5943c524216 +size 121147 diff --git a/datasets/pinganmajia/train/images/订单1813867_4_7175042.jpg b/datasets/pinganmajia/train/images/订单1813867_4_7175042.jpg new file mode 100644 index 0000000..3cabbf3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813867_4_7175042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d25b6174c1e9e7d3311d17a788514b58ad2c6a4593fc6f29ed8700b38f391b4 +size 139004 diff --git a/datasets/pinganmajia/train/images/订单1813868_4_7175201.jpg b/datasets/pinganmajia/train/images/订单1813868_4_7175201.jpg new file mode 100644 index 0000000..89b7d29 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813868_4_7175201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c2782f6d8d84d68c6c3ae9e1d19e1afca99d58c53faf5fe2888f6a45bea8d6 +size 57993 diff --git a/datasets/pinganmajia/train/images/订单1813871_4_7175119.jpg b/datasets/pinganmajia/train/images/订单1813871_4_7175119.jpg new file mode 100644 index 0000000..2514bc1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813871_4_7175119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5339459190ff1bad047338e219c0d515189bdf8cee75d793baba1ac973d66168 +size 90713 diff --git a/datasets/pinganmajia/train/images/订单1813872_4_7175128.jpg b/datasets/pinganmajia/train/images/订单1813872_4_7175128.jpg new file mode 100644 index 0000000..b1d4a6a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813872_4_7175128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0332dc83c088f6431a7e8229f0335d67893763a03dfbb32b3d6e7b96e27eb018 +size 149573 diff --git a/datasets/pinganmajia/train/images/订单1813875_4_7175060.jpg b/datasets/pinganmajia/train/images/订单1813875_4_7175060.jpg new file mode 100644 index 0000000..6e52a19 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813875_4_7175060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abac5bc486eca66b822a6fb1e75aa898c609f8229fc06ef87d98e1cf2250df81 +size 113617 diff --git a/datasets/pinganmajia/train/images/订单1813876_4_7175206.jpg b/datasets/pinganmajia/train/images/订单1813876_4_7175206.jpg new file mode 100644 index 0000000..7253c5c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813876_4_7175206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966786ae7a6aaf93af3cc160f798e42cb48f17741caa98509c36130a171b4319 +size 59228 diff --git a/datasets/pinganmajia/train/images/订单1813877_4_7175344.jpg b/datasets/pinganmajia/train/images/订单1813877_4_7175344.jpg new file mode 100644 index 0000000..d7628ee --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813877_4_7175344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f8f97e77c689fd94f56c58d457cd1c064d71219614c43d1541e180a1aa6db1 +size 400883 diff --git a/datasets/pinganmajia/train/images/订单1813878_4_7175251.jpg b/datasets/pinganmajia/train/images/订单1813878_4_7175251.jpg new file mode 100644 index 0000000..4dd0835 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813878_4_7175251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9684650c1897cb73c9fedee73e21907fe7e6963676579ba5bbbf0d120c57107 +size 483048 diff --git a/datasets/pinganmajia/train/images/订单1813880_4_7175178.jpg b/datasets/pinganmajia/train/images/订单1813880_4_7175178.jpg new file mode 100644 index 0000000..a7d5a81 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813880_4_7175178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da70739c39fc905b2a917640d49e239783cd65192f4a1532f395ac18107828c7 +size 73453 diff --git a/datasets/pinganmajia/train/images/订单1813883_4_7175233.jpg b/datasets/pinganmajia/train/images/订单1813883_4_7175233.jpg new file mode 100644 index 0000000..afd3739 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813883_4_7175233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd51ad726aa12693c32a43388044b7cc3365a398873048df1789c5c72fda142 +size 135639 diff --git a/datasets/pinganmajia/train/images/订单1813884_4_7175248.jpg b/datasets/pinganmajia/train/images/订单1813884_4_7175248.jpg new file mode 100644 index 0000000..4caf758 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813884_4_7175248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a4f40ecdc4e5ea70866b1df294fee3a54c1f9e1491b3f9c39558b930c2cdac +size 98887 diff --git a/datasets/pinganmajia/train/images/订单1813885_4_7175231.jpg b/datasets/pinganmajia/train/images/订单1813885_4_7175231.jpg new file mode 100644 index 0000000..aca2407 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813885_4_7175231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca1d932f507736b84ac58d21abfebba2d2cd6fe1198f1fe49cee58bbf9ef1db +size 119663 diff --git a/datasets/pinganmajia/train/images/订单1813886_4_7175234.jpg b/datasets/pinganmajia/train/images/订单1813886_4_7175234.jpg new file mode 100644 index 0000000..0f3e882 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813886_4_7175234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8af9fc94c95574a1597a3360d6566f3834b49a33e41f7f9d5d7e28f7efb0b52 +size 78908 diff --git a/datasets/pinganmajia/train/images/订单1813887_4_7175309.jpg b/datasets/pinganmajia/train/images/订单1813887_4_7175309.jpg new file mode 100644 index 0000000..8daceed --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813887_4_7175309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b820da0e227a8cb9f3461a6ac208b071c3a75e53902f45f503738c4a54a2c53b +size 58306 diff --git a/datasets/pinganmajia/train/images/订单1813889_4_7175318.jpg b/datasets/pinganmajia/train/images/订单1813889_4_7175318.jpg new file mode 100644 index 0000000..380633a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813889_4_7175318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db625af8231b3e46ffce510cd2ca2721c14891cca0f8f1188d6e435dbe44035 +size 88782 diff --git a/datasets/pinganmajia/train/images/订单1813890_4_7175292.jpg b/datasets/pinganmajia/train/images/订单1813890_4_7175292.jpg new file mode 100644 index 0000000..ea364b5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813890_4_7175292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa660987fb27c054a5d807c9b83ef38dec346c3730a8980bb05d96bce79af23 +size 45575 diff --git a/datasets/pinganmajia/train/images/订单1813891_4_7175273.jpg b/datasets/pinganmajia/train/images/订单1813891_4_7175273.jpg new file mode 100644 index 0000000..62ee409 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813891_4_7175273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c9fd7ebaea936110c4437e3c0275c8626fa6f88c836769e66d59406223c9cf +size 334218 diff --git a/datasets/pinganmajia/train/images/订单1813895_4_7175359.jpg b/datasets/pinganmajia/train/images/订单1813895_4_7175359.jpg new file mode 100644 index 0000000..8a8273e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813895_4_7175359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77490df12e2c59c25d35e16d8852785a71edd943840b7ef21cf00f3c99813c1f +size 355695 diff --git a/datasets/pinganmajia/train/images/订单1813896_4_7175356.jpg b/datasets/pinganmajia/train/images/订单1813896_4_7175356.jpg new file mode 100644 index 0000000..01861d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813896_4_7175356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1beda6a8cdc5ad65054e5454983b51399488136d45a0d6d35550d97abba8d4 +size 72607 diff --git a/datasets/pinganmajia/train/images/订单1813900_4_7175466.jpg b/datasets/pinganmajia/train/images/订单1813900_4_7175466.jpg new file mode 100644 index 0000000..f3c2f1d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813900_4_7175466.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c722b5b5a314c25b33346a2621ec3376d6a3bedb1586e2fbd06cf8bd51677c +size 152384 diff --git a/datasets/pinganmajia/train/images/订单1813901_4_7175430.jpg b/datasets/pinganmajia/train/images/订单1813901_4_7175430.jpg new file mode 100644 index 0000000..9e4c87e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813901_4_7175430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bcdf5a8cdbf1d3c224ab756b8d82884897964bc450d460e7aca35d39466f3ec +size 57136 diff --git a/datasets/pinganmajia/train/images/订单1813902_4_7175420.jpg b/datasets/pinganmajia/train/images/订单1813902_4_7175420.jpg new file mode 100644 index 0000000..0bac802 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813902_4_7175420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44f7cde5e811ec90d7d0539154dbe8cc2a517d75b48f7bed6dbc4050a591030 +size 74285 diff --git a/datasets/pinganmajia/train/images/订单1813903_4_7175510.jpg b/datasets/pinganmajia/train/images/订单1813903_4_7175510.jpg new file mode 100644 index 0000000..2a934a2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813903_4_7175510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e3b67f40fb0c47d9c5e3b1aad2fc037724d5d9be8c9ba3998b152ed634c578 +size 197022 diff --git a/datasets/pinganmajia/train/images/订单1813905_4_7175577.jpg b/datasets/pinganmajia/train/images/订单1813905_4_7175577.jpg new file mode 100644 index 0000000..2389c72 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813905_4_7175577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed12356a0e04772144d20d05af5b4bb13e1228c44997d3fd9f250834835dcc22 +size 169211 diff --git a/datasets/pinganmajia/train/images/订单1813906_4_7175458.jpg b/datasets/pinganmajia/train/images/订单1813906_4_7175458.jpg new file mode 100644 index 0000000..6262115 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813906_4_7175458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1922bf642e92dac686e8b1c4422e0e712238ff9f987d7cbed37d152332141e16 +size 348638 diff --git a/datasets/pinganmajia/train/images/订单1813907_4_7175515.jpg b/datasets/pinganmajia/train/images/订单1813907_4_7175515.jpg new file mode 100644 index 0000000..c973e28 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813907_4_7175515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24dd5079f9cd06a63debe4f2723f0655c94ca269cb63e0fdf729039e44d864fe +size 233740 diff --git a/datasets/pinganmajia/train/images/订单1813908_4_7175497.jpg b/datasets/pinganmajia/train/images/订单1813908_4_7175497.jpg new file mode 100644 index 0000000..ef8962f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813908_4_7175497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94710fc65805a681ee9903742e0a090a003f863251dffce93c1d516c1435bff +size 159255 diff --git a/datasets/pinganmajia/train/images/订单1813912_4_7175542.jpg b/datasets/pinganmajia/train/images/订单1813912_4_7175542.jpg new file mode 100644 index 0000000..82fe819 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813912_4_7175542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662786024a5cd73e02a4c5a308da940a351f7895c58b8f9aa3eddc3f9dd344bb +size 486614 diff --git a/datasets/pinganmajia/train/images/订单1813913_4_7175534.jpg b/datasets/pinganmajia/train/images/订单1813913_4_7175534.jpg new file mode 100644 index 0000000..6c4d9b2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813913_4_7175534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e919085a701fb856b1f7141d9f2ab7e223eaf2d433df7ca678d8cdbffea1be +size 91024 diff --git a/datasets/pinganmajia/train/images/订单1813916_4_7175555.jpg b/datasets/pinganmajia/train/images/订单1813916_4_7175555.jpg new file mode 100644 index 0000000..209935d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813916_4_7175555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d5915962f5f9342512e0e8071e3499c8e2529ffc8bec699b9314a21758eee3 +size 342198 diff --git a/datasets/pinganmajia/train/images/订单1813917_4_7175687.jpg b/datasets/pinganmajia/train/images/订单1813917_4_7175687.jpg new file mode 100644 index 0000000..dcda62e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813917_4_7175687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acc5aee3886eb451e9ed92653b702a7cb21e2dfbecd56b336ce6075b4a71775a +size 81232 diff --git a/datasets/pinganmajia/train/images/订单1813918_4_7175606.jpg b/datasets/pinganmajia/train/images/订单1813918_4_7175606.jpg new file mode 100644 index 0000000..7b5a2e5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813918_4_7175606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8214b6fc2b5dde41631d729349360e86c868d82279ff3228048b7758e3196e98 +size 115005 diff --git a/datasets/pinganmajia/train/images/订单1813919_4_7175557.jpg b/datasets/pinganmajia/train/images/订单1813919_4_7175557.jpg new file mode 100644 index 0000000..0854b9f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813919_4_7175557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e250636e7888bdfa1e43f37215da2cb529ba9e3d1f93c7ac11336d8a69b8f6 +size 107879 diff --git a/datasets/pinganmajia/train/images/订单1813920_4_7175613.jpg b/datasets/pinganmajia/train/images/订单1813920_4_7175613.jpg new file mode 100644 index 0000000..bf35287 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813920_4_7175613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1798f412b91ff31bdde2281e72deb5eb4c780ae16b967e3ac0cd89cf838c9dcb +size 94060 diff --git a/datasets/pinganmajia/train/images/订单1813923_4_7175633.jpg b/datasets/pinganmajia/train/images/订单1813923_4_7175633.jpg new file mode 100644 index 0000000..fc1fdab --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813923_4_7175633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70a2211f1a9997a1163fd34e3e61d946d284ff5bd4b39343e6a2374d3e4f92c +size 179705 diff --git a/datasets/pinganmajia/train/images/订单1813926_4_7175658.jpg b/datasets/pinganmajia/train/images/订单1813926_4_7175658.jpg new file mode 100644 index 0000000..dabef7a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813926_4_7175658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbd31bd7cf94c1d76d6835fd65b29cd42d2fe86f22760017cc941d375001a37 +size 467965 diff --git a/datasets/pinganmajia/train/images/订单1813927_4_7175735.jpg b/datasets/pinganmajia/train/images/订单1813927_4_7175735.jpg new file mode 100644 index 0000000..3015c4e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813927_4_7175735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a700b8f0e9775983058ce6886e9ee36ffb4a0b705f92e878f05f69c4301c5871 +size 177710 diff --git a/datasets/pinganmajia/train/images/订单1813928_4_7175836.jpg b/datasets/pinganmajia/train/images/订单1813928_4_7175836.jpg new file mode 100644 index 0000000..6ed521c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813928_4_7175836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d91b2c268b5c69b88448ba722163b66e0151a5f80e4b8444a2687f652d0c9fd +size 113286 diff --git a/datasets/pinganmajia/train/images/订单1813929_4_7175746.jpg b/datasets/pinganmajia/train/images/订单1813929_4_7175746.jpg new file mode 100644 index 0000000..6030395 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813929_4_7175746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dc09b8f80baeb6563f69addc47d7e2016b901978ea402bbbb423afd107ce45 +size 120083 diff --git a/datasets/pinganmajia/train/images/订单1813930_4_7175759.jpg b/datasets/pinganmajia/train/images/订单1813930_4_7175759.jpg new file mode 100644 index 0000000..4034263 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813930_4_7175759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f0e60196135c6eed7f120291742d7066d1b82efb19125e6e4a6784990cf35f +size 417643 diff --git a/datasets/pinganmajia/train/images/订单1813931_4_7175790.jpg b/datasets/pinganmajia/train/images/订单1813931_4_7175790.jpg new file mode 100644 index 0000000..c995b28 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813931_4_7175790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51133bdbc77b8d1c6d81ccf87d9fc0a0415edfce48ed30fdb52034a429a2e5eb +size 100152 diff --git a/datasets/pinganmajia/train/images/订单1813933_4_7175778.jpg b/datasets/pinganmajia/train/images/订单1813933_4_7175778.jpg new file mode 100644 index 0000000..5d47376 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813933_4_7175778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b3f00e40f5b570ff973435951d578423895c5136aac1d83e23da1c7395b859 +size 91175 diff --git a/datasets/pinganmajia/train/images/订单1813935_4_7175783.jpg b/datasets/pinganmajia/train/images/订单1813935_4_7175783.jpg new file mode 100644 index 0000000..9211d02 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813935_4_7175783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94b658ff39e858996a78d0cd9d0642215472396911810da64acbb2a99a268f9 +size 173596 diff --git a/datasets/pinganmajia/train/images/订单1813937_4_7175862.jpg b/datasets/pinganmajia/train/images/订单1813937_4_7175862.jpg new file mode 100644 index 0000000..098ba48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813937_4_7175862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e3ef74820f09b19628950a999e5ecfcbf23b81a75b75ea9e9a580cfccc5b6d +size 114431 diff --git a/datasets/pinganmajia/train/images/订单1813940_4_7175892.jpg b/datasets/pinganmajia/train/images/订单1813940_4_7175892.jpg new file mode 100644 index 0000000..1b76a70 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813940_4_7175892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e81d17620151e9a80e4b617c2d435da8e6ec475f48b6c86ea65d5a56ab2e49 +size 76680 diff --git a/datasets/pinganmajia/train/images/订单1813942_4_7177801.jpg b/datasets/pinganmajia/train/images/订单1813942_4_7177801.jpg new file mode 100644 index 0000000..f75596f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813942_4_7177801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ed5cdd3a9637238b167e9a87fff85c1485c7d26bacfb5f3ed45bc84b3f5e9f +size 88275 diff --git a/datasets/pinganmajia/train/images/订单1813943_4_7175880.jpg b/datasets/pinganmajia/train/images/订单1813943_4_7175880.jpg new file mode 100644 index 0000000..86f6cf3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813943_4_7175880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f94d9af4079f5b8d418b9e08e0bf812f7cc9ab8d404ef4c98f9e743ae8fbdec +size 387614 diff --git a/datasets/pinganmajia/train/images/订单1813946_4_7175907.jpg b/datasets/pinganmajia/train/images/订单1813946_4_7175907.jpg new file mode 100644 index 0000000..b02b86b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813946_4_7175907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3859584a36cfceb40fd659cc87ee3a29aee723a70ae2537cc855eded79d2b82 +size 92006 diff --git a/datasets/pinganmajia/train/images/订单1813947_4_7175939.jpg b/datasets/pinganmajia/train/images/订单1813947_4_7175939.jpg new file mode 100644 index 0000000..789d14a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813947_4_7175939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f3832e6ec765f3d6a07786e37c368ef4dbd010dd9bbabee81d8b702598c1f9 +size 131821 diff --git a/datasets/pinganmajia/train/images/订单1813948_4_7175949.jpg b/datasets/pinganmajia/train/images/订单1813948_4_7175949.jpg new file mode 100644 index 0000000..6d6103f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813948_4_7175949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2deb8170e6b40425bc0d994e3306eef10ffd4950daefc436687de5bdaba679dd +size 154736 diff --git a/datasets/pinganmajia/train/images/订单1813950_4_7175919.jpg b/datasets/pinganmajia/train/images/订单1813950_4_7175919.jpg new file mode 100644 index 0000000..8aee56c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813950_4_7175919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9975679872518ec7a4e3eca065c4e069e5ce2e5b562f5e0739d01c06d3ca8d +size 503571 diff --git a/datasets/pinganmajia/train/images/订单1813951_4_7175964.jpg b/datasets/pinganmajia/train/images/订单1813951_4_7175964.jpg new file mode 100644 index 0000000..ea03fa8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813951_4_7175964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd995d20ab834ba0f5660d32dd089790c15bb78c3dbb296e290dae1f84d6c41 +size 94237 diff --git a/datasets/pinganmajia/train/images/订单1813954_4_7175962.jpg b/datasets/pinganmajia/train/images/订单1813954_4_7175962.jpg new file mode 100644 index 0000000..8521d58 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813954_4_7175962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b34a54b63539005b933f1d1d17a81431a0e931b0120461646e2cda1818b9ce +size 228891 diff --git a/datasets/pinganmajia/train/images/订单1813955_4_7175992.jpg b/datasets/pinganmajia/train/images/订单1813955_4_7175992.jpg new file mode 100644 index 0000000..c21e4b6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813955_4_7175992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c363f34de0ad363be88032060460e5c5187d9f986e3a7a6f79194aa2c2f334b4 +size 104992 diff --git a/datasets/pinganmajia/train/images/订单1813956_4_7175999.jpg b/datasets/pinganmajia/train/images/订单1813956_4_7175999.jpg new file mode 100644 index 0000000..e2549a2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813956_4_7175999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288384e94fe34e4e837704b341161033443d7eb1c3c33322eb35a45c18dd8ef7 +size 52639 diff --git a/datasets/pinganmajia/train/images/订单1813957_4_7176026.jpg b/datasets/pinganmajia/train/images/订单1813957_4_7176026.jpg new file mode 100644 index 0000000..c856e48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813957_4_7176026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e925c1840e21fac2181d31756ee6ee56c7bf02107770054023dd0314ea5d8191 +size 188741 diff --git a/datasets/pinganmajia/train/images/订单1813959_4_7176046.jpg b/datasets/pinganmajia/train/images/订单1813959_4_7176046.jpg new file mode 100644 index 0000000..1f29206 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813959_4_7176046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6876168726cc4b077cbc9e1848422cf19d06882005042c463bcf862f006ee34c +size 214034 diff --git a/datasets/pinganmajia/train/images/订单1813961_4_7176036.jpg b/datasets/pinganmajia/train/images/订单1813961_4_7176036.jpg new file mode 100644 index 0000000..02faa58 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813961_4_7176036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cf3c15e71f97cedc8222f585ad988322f6277b43c2d359b1013a0adf76219d +size 233320 diff --git a/datasets/pinganmajia/train/images/订单1813964_4_7176053.jpg b/datasets/pinganmajia/train/images/订单1813964_4_7176053.jpg new file mode 100644 index 0000000..d8ea349 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813964_4_7176053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea4c7963c8840d9796eae66d18c0b12736cd6353da071f585aecfbd1e142b8e +size 59218 diff --git a/datasets/pinganmajia/train/images/订单1813965_4_7176077.jpg b/datasets/pinganmajia/train/images/订单1813965_4_7176077.jpg new file mode 100644 index 0000000..3f148f0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813965_4_7176077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75b7ce89b3fcba30cfdd14530f0f04a321eae721f42958ce84f32e91712f182 +size 87320 diff --git a/datasets/pinganmajia/train/images/订单1813966_4_7176108.jpg b/datasets/pinganmajia/train/images/订单1813966_4_7176108.jpg new file mode 100644 index 0000000..77c9a5b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813966_4_7176108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948768829a24027bc129cdea4ec6135eddda1022b2f4abfeb166c567e74e914c +size 319120 diff --git a/datasets/pinganmajia/train/images/订单1813967_4_7176102.jpg b/datasets/pinganmajia/train/images/订单1813967_4_7176102.jpg new file mode 100644 index 0000000..d027574 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813967_4_7176102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd72253f88dcea2f0ba4ba3eb6a84933ec512777801639e789f8ee809d30b038 +size 246239 diff --git a/datasets/pinganmajia/train/images/订单1813971_4_7176154.jpg b/datasets/pinganmajia/train/images/订单1813971_4_7176154.jpg new file mode 100644 index 0000000..a28ed8b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813971_4_7176154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e9f49e877bca5b7ad3cbeaba44fc58b9a6cc1a50068beae1571588358cd804 +size 206318 diff --git a/datasets/pinganmajia/train/images/订单1813973_4_7176128.jpg b/datasets/pinganmajia/train/images/订单1813973_4_7176128.jpg new file mode 100644 index 0000000..dd89054 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813973_4_7176128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a600b08e1e919e9b810190875bd075d63616850e165a054ff33cabca9a42508 +size 73697 diff --git a/datasets/pinganmajia/train/images/订单1813975_4_7176229.jpg b/datasets/pinganmajia/train/images/订单1813975_4_7176229.jpg new file mode 100644 index 0000000..fbd5a56 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813975_4_7176229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bb317347d0bc376644c79c270c9abe5451f0acd713892b2ea086d39fa93a0b +size 100396 diff --git a/datasets/pinganmajia/train/images/订单1813976_4_7176138.jpg b/datasets/pinganmajia/train/images/订单1813976_4_7176138.jpg new file mode 100644 index 0000000..4872930 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813976_4_7176138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f864a263aaf22f5d2b3b30ec561da39976ee59469147177dc85e170f4aec2924 +size 481254 diff --git a/datasets/pinganmajia/train/images/订单1813979_4_7176180.jpg b/datasets/pinganmajia/train/images/订单1813979_4_7176180.jpg new file mode 100644 index 0000000..4dd1ff5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813979_4_7176180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef896b796ab751d3a1ce7fec3122ba05edcf1374e3900fff07178f60a10f0d21 +size 573885 diff --git a/datasets/pinganmajia/train/images/订单1813982_4_7176164.jpg b/datasets/pinganmajia/train/images/订单1813982_4_7176164.jpg new file mode 100644 index 0000000..89abcac --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813982_4_7176164.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c69c8f7ae806b3d709d09056f9f91683b90e7f4b7828a1d3d9951d9598100c0 +size 86444 diff --git a/datasets/pinganmajia/train/images/订单1813984_4_7176338.jpg b/datasets/pinganmajia/train/images/订单1813984_4_7176338.jpg new file mode 100644 index 0000000..4d89e7a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813984_4_7176338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce7d6c3930d47f0722c0b7ff1c347fbf3ed30a80418eb0f815a7d4a5eae94c8 +size 92140 diff --git a/datasets/pinganmajia/train/images/订单1813986_4_7176358.jpg b/datasets/pinganmajia/train/images/订单1813986_4_7176358.jpg new file mode 100644 index 0000000..1ee9eae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813986_4_7176358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bd6e15d7a6190a795f3333aa36ee9c9d827367a25df2521c612754e4f32f25 +size 77361 diff --git a/datasets/pinganmajia/train/images/订单1813987_4_7176272.jpg b/datasets/pinganmajia/train/images/订单1813987_4_7176272.jpg new file mode 100644 index 0000000..b2278ff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813987_4_7176272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30f35d2896e1448f071f7bf04a4a55da2f5ac8cb95bf04bbff8faa4583b9622 +size 103636 diff --git a/datasets/pinganmajia/train/images/订单1813989_4_7176234.jpg b/datasets/pinganmajia/train/images/订单1813989_4_7176234.jpg new file mode 100644 index 0000000..4f5ec56 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813989_4_7176234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572c005c03dc1cd79389f2616c42bd103a9428e31ebc5c47c2ad27f071339408 +size 222191 diff --git a/datasets/pinganmajia/train/images/订单1813990_4_7176252.jpg b/datasets/pinganmajia/train/images/订单1813990_4_7176252.jpg new file mode 100644 index 0000000..ea7ee31 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813990_4_7176252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64db1ca39f39136d63387cda5235d66861144c3574db036ed107c86a7c09835a +size 257379 diff --git a/datasets/pinganmajia/train/images/订单1813991_4_7176216.jpg b/datasets/pinganmajia/train/images/订单1813991_4_7176216.jpg new file mode 100644 index 0000000..97a0f43 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813991_4_7176216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24151eb29ce7fc82b44934ac0afff5f7554a310db606599825dd19fec59ec5c8 +size 155686 diff --git a/datasets/pinganmajia/train/images/订单1813992_4_7176203.jpg b/datasets/pinganmajia/train/images/订单1813992_4_7176203.jpg new file mode 100644 index 0000000..8bddcf8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813992_4_7176203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250d38782821341e18d85a9b0d89f0d61972fc335755cb004c1f07294f343818 +size 175611 diff --git a/datasets/pinganmajia/train/images/订单1813994_4_7176209.jpg b/datasets/pinganmajia/train/images/订单1813994_4_7176209.jpg new file mode 100644 index 0000000..9d64302 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813994_4_7176209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd28b9c05d5fd394cfe2bdec0fc5036da6494fc59f56f691b1bd7e9e88fcc73 +size 214746 diff --git a/datasets/pinganmajia/train/images/订单1813996_4_7176242.jpg b/datasets/pinganmajia/train/images/订单1813996_4_7176242.jpg new file mode 100644 index 0000000..bfcd988 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813996_4_7176242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fb167e563dacc5f6e6f2f6f021f82443321d6ba99b90fb9f16bf624c3781c9 +size 519052 diff --git a/datasets/pinganmajia/train/images/订单1813998_4_7176225.jpg b/datasets/pinganmajia/train/images/订单1813998_4_7176225.jpg new file mode 100644 index 0000000..bbdd293 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813998_4_7176225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0a33dd41dfa00f21f7577b568b425ccf41077d30234af95cdd99654b929cf8 +size 111574 diff --git a/datasets/pinganmajia/train/images/订单1813999_4_7176305.jpg b/datasets/pinganmajia/train/images/订单1813999_4_7176305.jpg new file mode 100644 index 0000000..6e41e6d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1813999_4_7176305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd57a497616eb57f9ec020e1c609e62652cf5f3b56fc3cc5c9efdf46341307e +size 99235 diff --git a/datasets/pinganmajia/train/images/订单1814001_4_7176261.jpg b/datasets/pinganmajia/train/images/订单1814001_4_7176261.jpg new file mode 100644 index 0000000..537b312 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814001_4_7176261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f129623b6e558fc8010f14121dd35202f32f8f0d81b8d13bec4f87b1eff6b4e +size 78931 diff --git a/datasets/pinganmajia/train/images/订单1814002_4_7176383.jpg b/datasets/pinganmajia/train/images/订单1814002_4_7176383.jpg new file mode 100644 index 0000000..377aae1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814002_4_7176383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3de91d45dd461e55c70eff277c68f5a3201067547a771a8e7444539eea94187 +size 165163 diff --git a/datasets/pinganmajia/train/images/订单1814003_4_7179571.jpg b/datasets/pinganmajia/train/images/订单1814003_4_7179571.jpg new file mode 100644 index 0000000..08359c6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814003_4_7179571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c71c80f86cd23b4b50f5d9cb5ebe885f4ff5a892c9de0341488ba41ccb49398 +size 523835 diff --git a/datasets/pinganmajia/train/images/订单1814006_4_7176423.jpg b/datasets/pinganmajia/train/images/订单1814006_4_7176423.jpg new file mode 100644 index 0000000..b03139d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814006_4_7176423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb50d46b7aab138e286b8e1cac552fc5a72a45f5b88686a2256829b0e58478e +size 281971 diff --git a/datasets/pinganmajia/train/images/订单1814007_4_7176394.jpg b/datasets/pinganmajia/train/images/订单1814007_4_7176394.jpg new file mode 100644 index 0000000..06c19d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814007_4_7176394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca29b961c8fea0a013df0be20a82d29f0be50d88eb18218910d1acfc64c259f +size 439921 diff --git a/datasets/pinganmajia/train/images/订单1814012_4_7176375.jpg b/datasets/pinganmajia/train/images/订单1814012_4_7176375.jpg new file mode 100644 index 0000000..572453f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814012_4_7176375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a758a1045550571186eedd04c7f31a24a624fa8832afcd2208f0cd53e7dfd503 +size 76058 diff --git a/datasets/pinganmajia/train/images/订单1814014_4_7176447.jpg b/datasets/pinganmajia/train/images/订单1814014_4_7176447.jpg new file mode 100644 index 0000000..a95fbae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814014_4_7176447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aafe2e9da619263472b41691ac4c45de2eb5377183547037651a9c4d3d60cb32 +size 262664 diff --git a/datasets/pinganmajia/train/images/订单1814015_4_7176396.jpg b/datasets/pinganmajia/train/images/订单1814015_4_7176396.jpg new file mode 100644 index 0000000..0abfe46 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814015_4_7176396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae30134d9f331bd08a98f69ca63c277d8ebf36bac7b7a38babff3d6b784a9540 +size 187595 diff --git a/datasets/pinganmajia/train/images/订单1814019_4_7176431.jpg b/datasets/pinganmajia/train/images/订单1814019_4_7176431.jpg new file mode 100644 index 0000000..f0f2268 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814019_4_7176431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9cf0ef42330c049108c1a74480b45c67e020a6345abfe04f4dd294674f7f88f +size 155541 diff --git a/datasets/pinganmajia/train/images/订单1814020_4_7176393.jpg b/datasets/pinganmajia/train/images/订单1814020_4_7176393.jpg new file mode 100644 index 0000000..c6d6f71 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814020_4_7176393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75af193cf365fc877378f7077a075e0449682d3c3a0adede3e9ce847f49fbb17 +size 120549 diff --git a/datasets/pinganmajia/train/images/订单1814021_4_7176465.jpg b/datasets/pinganmajia/train/images/订单1814021_4_7176465.jpg new file mode 100644 index 0000000..7ee5582 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814021_4_7176465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841a1dfa615f53adb53ff7576295501c70da98d74086ee769787c37ffd31a799 +size 209744 diff --git a/datasets/pinganmajia/train/images/订单1814026_4_7176559.jpg b/datasets/pinganmajia/train/images/订单1814026_4_7176559.jpg new file mode 100644 index 0000000..30726cd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814026_4_7176559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:067a9107f8c0b30d6b89509fa8def0688ce841577a22318f057949ccf151cc9c +size 151022 diff --git a/datasets/pinganmajia/train/images/订单1814027_4_7176491.jpg b/datasets/pinganmajia/train/images/订单1814027_4_7176491.jpg new file mode 100644 index 0000000..e780083 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814027_4_7176491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa45742d0a943cb94e65613226e0d5f549e1265d27db3ed8f363ea388416c9f +size 70941 diff --git a/datasets/pinganmajia/train/images/订单1814028_4_7176723.jpg b/datasets/pinganmajia/train/images/订单1814028_4_7176723.jpg new file mode 100644 index 0000000..06e55dd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814028_4_7176723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b360f8884adc4e7dc8362886c7868d6b1cb37cae366f7c746490f2370415db6b +size 181074 diff --git a/datasets/pinganmajia/train/images/订单1814029_4_7176653.jpg b/datasets/pinganmajia/train/images/订单1814029_4_7176653.jpg new file mode 100644 index 0000000..06fa224 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814029_4_7176653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:123d5ca5ff2cc2f10b50a79e4e752928d8b6e0874e2ecbdf1683036a027eebb2 +size 61299 diff --git a/datasets/pinganmajia/train/images/订单1814031_4_7176568.jpg b/datasets/pinganmajia/train/images/订单1814031_4_7176568.jpg new file mode 100644 index 0000000..8e272ec --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814031_4_7176568.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069963e0369c6e6b5492ff9f1a20411044e47bc24177f8e0cd87eb157c3aefff +size 80906 diff --git a/datasets/pinganmajia/train/images/订单1814032_4_7176919.jpg b/datasets/pinganmajia/train/images/订单1814032_4_7176919.jpg new file mode 100644 index 0000000..749f888 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814032_4_7176919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6594c1201bbd54f6ddb10ce53b8214ef31b6582d301c64ec7143809c949b59 +size 159467 diff --git a/datasets/pinganmajia/train/images/订单1814036_4_7176727.jpg b/datasets/pinganmajia/train/images/订单1814036_4_7176727.jpg new file mode 100644 index 0000000..ef16746 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814036_4_7176727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a44210bdc6f4651f90e496cbf67b6b2411ffc29053d36bf0cdb72ec1d55bd78 +size 306046 diff --git a/datasets/pinganmajia/train/images/订单1814038_4_7176787.jpg b/datasets/pinganmajia/train/images/订单1814038_4_7176787.jpg new file mode 100644 index 0000000..4f3b4c1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814038_4_7176787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b4894baf724a5266d76965991baf2e84d8d18405ff2d18d166597732a2136f +size 187951 diff --git a/datasets/pinganmajia/train/images/订单1814039_4_7176624.jpg b/datasets/pinganmajia/train/images/订单1814039_4_7176624.jpg new file mode 100644 index 0000000..cc1a256 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814039_4_7176624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa7ec71b7ddf1a53aa8e528c1105c9dc36da85f1c0068c931bfaa6c4adde897 +size 153608 diff --git a/datasets/pinganmajia/train/images/订单1814040_4_7177338.jpg b/datasets/pinganmajia/train/images/订单1814040_4_7177338.jpg new file mode 100644 index 0000000..d50502a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814040_4_7177338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02af9cb4ec97f11d5b5fc8c1721cb0ef330b907c95a67abfc1acbc5faf69736e +size 151322 diff --git a/datasets/pinganmajia/train/images/订单1814041_4_7176739.jpg b/datasets/pinganmajia/train/images/订单1814041_4_7176739.jpg new file mode 100644 index 0000000..d4cf5e5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814041_4_7176739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7450419a4bf489900b5ec2b4cda578cdcc52fddd67626322978107d7ea55dc3e +size 489755 diff --git a/datasets/pinganmajia/train/images/订单1814042_4_7176740.jpg b/datasets/pinganmajia/train/images/订单1814042_4_7176740.jpg new file mode 100644 index 0000000..5a42d57 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814042_4_7176740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55493653f0752d6becc0a38ede6daf9bc97e18cfab90f7ffe80d3f4cf5ed2638 +size 91359 diff --git a/datasets/pinganmajia/train/images/订单1814043_4_7177018.jpg b/datasets/pinganmajia/train/images/订单1814043_4_7177018.jpg new file mode 100644 index 0000000..2331f8b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814043_4_7177018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27888c72a208d188f47ef9a586ffb69dae44196de85fd3eb8912f164cdc3d668 +size 948711 diff --git a/datasets/pinganmajia/train/images/订单1814044_4_7176686.jpg b/datasets/pinganmajia/train/images/订单1814044_4_7176686.jpg new file mode 100644 index 0000000..3d40676 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814044_4_7176686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e195a942ad3cc0e182437c635318fe9f1013f02ada416b3ddcba082388be38 +size 78028 diff --git a/datasets/pinganmajia/train/images/订单1814045_4_7176704.jpg b/datasets/pinganmajia/train/images/订单1814045_4_7176704.jpg new file mode 100644 index 0000000..0017be2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814045_4_7176704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6816460ed2becf751cb7f90b61415b93027084df5cd537b2da9ecee5f4914b +size 90292 diff --git a/datasets/pinganmajia/train/images/订单1814046_4_7176703.jpg b/datasets/pinganmajia/train/images/订单1814046_4_7176703.jpg new file mode 100644 index 0000000..360c836 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814046_4_7176703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1fb522b10a4fc409067be197fba400bccbb73362573236850ad2581f0d3714 +size 175698 diff --git a/datasets/pinganmajia/train/images/订单1814048_4_7176732.jpg b/datasets/pinganmajia/train/images/订单1814048_4_7176732.jpg new file mode 100644 index 0000000..f6ec7a9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814048_4_7176732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62319782898eda229b41c2ad94511a45753a955c63801959c1ed4a500bb06caf +size 59681 diff --git a/datasets/pinganmajia/train/images/订单1814049_4_7176808.jpg b/datasets/pinganmajia/train/images/订单1814049_4_7176808.jpg new file mode 100644 index 0000000..a333d75 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814049_4_7176808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c285b168be5bba8ca30090621249ec838d718d165b8643e7dbdbfc2bdb2a3ab6 +size 82131 diff --git a/datasets/pinganmajia/train/images/订单1814052_4_7176772.jpg b/datasets/pinganmajia/train/images/订单1814052_4_7176772.jpg new file mode 100644 index 0000000..3665104 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814052_4_7176772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c94a78f0eced1a79cb07e6c2102731b792a74a2bf459a7048feeff31dd471ef +size 204177 diff --git a/datasets/pinganmajia/train/images/订单1814053_4_7176830.jpg b/datasets/pinganmajia/train/images/订单1814053_4_7176830.jpg new file mode 100644 index 0000000..198284d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814053_4_7176830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e637dd622fa67be609f999246c19eff1bd2cfc6c83328ee68266390d03a001b +size 137403 diff --git a/datasets/pinganmajia/train/images/订单1814055_4_7176991.jpg b/datasets/pinganmajia/train/images/订单1814055_4_7176991.jpg new file mode 100644 index 0000000..11b165c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814055_4_7176991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd0d7601f7a65ca9a4db76053cb885733e326cc0b4f720fbbdacc4263db7372 +size 83234 diff --git a/datasets/pinganmajia/train/images/订单1814056_4_7176850.jpg b/datasets/pinganmajia/train/images/订单1814056_4_7176850.jpg new file mode 100644 index 0000000..43dfb69 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814056_4_7176850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5cd9909b41254f1327c58d09034a647a582a34217ed48c6404c345047199e5 +size 130735 diff --git a/datasets/pinganmajia/train/images/订单1814057_4_7176866.jpg b/datasets/pinganmajia/train/images/订单1814057_4_7176866.jpg new file mode 100644 index 0000000..4ab96cd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814057_4_7176866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb9224cb33aea7baedfc3dc3d6c4eb5ef8eef486d0c42b5a5543d3fb9f0c530 +size 441229 diff --git a/datasets/pinganmajia/train/images/订单1814060_4_7176985.jpg b/datasets/pinganmajia/train/images/订单1814060_4_7176985.jpg new file mode 100644 index 0000000..edaeac1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814060_4_7176985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b271b10947bc97a812f5bce461e0b1174c957081f003a42d5efd10ec49150378 +size 264556 diff --git a/datasets/pinganmajia/train/images/订单1814061_4_7176937.jpg b/datasets/pinganmajia/train/images/订单1814061_4_7176937.jpg new file mode 100644 index 0000000..8a1659b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814061_4_7176937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953f00d9300fdb844287fd37f74228671fdc978f29d45fd37e4ad0c324b9c298 +size 169545 diff --git a/datasets/pinganmajia/train/images/订单1814062_4_7176915.jpg b/datasets/pinganmajia/train/images/订单1814062_4_7176915.jpg new file mode 100644 index 0000000..6d3e007 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814062_4_7176915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc570b3e89465ff260356aa2806cec5c8b1169d9bead28fb9df7a0fab504862d +size 75738 diff --git a/datasets/pinganmajia/train/images/订单1814063_4_7176884.jpg b/datasets/pinganmajia/train/images/订单1814063_4_7176884.jpg new file mode 100644 index 0000000..5bb97e5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814063_4_7176884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8ce050210102cb91429abd9f3affe7062ae85d0dbc79c821d7b5d295b21c05 +size 208773 diff --git a/datasets/pinganmajia/train/images/订单1814065_4_7176873.jpg b/datasets/pinganmajia/train/images/订单1814065_4_7176873.jpg new file mode 100644 index 0000000..453c8b3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814065_4_7176873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c1e790d24625054e95fd4f2d29eb6caad3854a38f6fec509b2060172a03db9 +size 73540 diff --git a/datasets/pinganmajia/train/images/订单1814068_4_7177015.jpg b/datasets/pinganmajia/train/images/订单1814068_4_7177015.jpg new file mode 100644 index 0000000..af9b5c7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814068_4_7177015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c32c7f61445c47bf4dc6880ba4265ea13606d89b55a59f0a6555285cd18afe +size 204112 diff --git a/datasets/pinganmajia/train/images/订单1814070_4_7177037.jpg b/datasets/pinganmajia/train/images/订单1814070_4_7177037.jpg new file mode 100644 index 0000000..2cad928 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814070_4_7177037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaacef5c42b2bbd2f3179d2651c69fe1eeb9ee4a73b841335c0554ae3ee391be +size 430500 diff --git a/datasets/pinganmajia/train/images/订单1814071_4_7176901.jpg b/datasets/pinganmajia/train/images/订单1814071_4_7176901.jpg new file mode 100644 index 0000000..405c332 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814071_4_7176901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462ac3244ffd9b40ffb03286045b1d1e9f3b898fb2ffc2a0d998250995b1f3f0 +size 210994 diff --git a/datasets/pinganmajia/train/images/订单1814073_4_7176932.jpg b/datasets/pinganmajia/train/images/订单1814073_4_7176932.jpg new file mode 100644 index 0000000..6aca809 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814073_4_7176932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad13fcf132383af6305773669a52862b29cf095c24d7beac4edb2462eca990c +size 279904 diff --git a/datasets/pinganmajia/train/images/订单1814074_4_7176959.jpg b/datasets/pinganmajia/train/images/订单1814074_4_7176959.jpg new file mode 100644 index 0000000..23a461e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814074_4_7176959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f76a9edb8cd6b13e37ffdc2bba7645fb97fc5629b609d597db3de51b9fc3a6 +size 182034 diff --git a/datasets/pinganmajia/train/images/订单1814076_4_7177058.jpg b/datasets/pinganmajia/train/images/订单1814076_4_7177058.jpg new file mode 100644 index 0000000..edbeda0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814076_4_7177058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaba907822838ae9b345a527c45563b7e217cd75b42f88fea36254345b7677c7 +size 202274 diff --git a/datasets/pinganmajia/train/images/订单1814077_4_7177358.jpg b/datasets/pinganmajia/train/images/订单1814077_4_7177358.jpg new file mode 100644 index 0000000..365cb48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814077_4_7177358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f18592ff12b4b7354da696fc0d25b13bcdcc30edc7cbd0234960fde8af9ba7 +size 218193 diff --git a/datasets/pinganmajia/train/images/订单1814080_4_7177067.jpg b/datasets/pinganmajia/train/images/订单1814080_4_7177067.jpg new file mode 100644 index 0000000..afcdbfd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814080_4_7177067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f73907c5aafcb2868399d98b2b48e1f0b4497b0087b50622f8b113503d5a4c7 +size 240350 diff --git a/datasets/pinganmajia/train/images/订单1814084_4_7177144.jpg b/datasets/pinganmajia/train/images/订单1814084_4_7177144.jpg new file mode 100644 index 0000000..e7bad8f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814084_4_7177144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b491a332f643d071aaa33050522608f629a630073d50a0d73b29babb14de942 +size 243477 diff --git a/datasets/pinganmajia/train/images/订单1814085_4_7177113.jpg b/datasets/pinganmajia/train/images/订单1814085_4_7177113.jpg new file mode 100644 index 0000000..6d3960d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814085_4_7177113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bc71fc0caeb44984d47c123fb20141929628bc2e5eeb35dadd17399763c3bd +size 326240 diff --git a/datasets/pinganmajia/train/images/订单1814088_4_7177200.jpg b/datasets/pinganmajia/train/images/订单1814088_4_7177200.jpg new file mode 100644 index 0000000..3ac4e07 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814088_4_7177200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cf29b7e783c2cf70b924b0a26223f77a75cacaf25118af88724503f4b201d0 +size 138713 diff --git a/datasets/pinganmajia/train/images/订单1814089_4_7177093.jpg b/datasets/pinganmajia/train/images/订单1814089_4_7177093.jpg new file mode 100644 index 0000000..0eb7dac --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814089_4_7177093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcdbb75c5b3d7898bdbea0a411e29062f5fb76251c5ef1a77cfca3c366e0b1a2 +size 81247 diff --git a/datasets/pinganmajia/train/images/订单1814090_4_7177222.jpg b/datasets/pinganmajia/train/images/订单1814090_4_7177222.jpg new file mode 100644 index 0000000..92174e6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814090_4_7177222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56139c98f8b1fafafa004b258bb74d1b7073c1c0be29173433a507470c078baf +size 270658 diff --git a/datasets/pinganmajia/train/images/订单1814091_4_7177207.jpg b/datasets/pinganmajia/train/images/订单1814091_4_7177207.jpg new file mode 100644 index 0000000..3a90186 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814091_4_7177207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1828e0e9a0880506b74d19e61740a0885823e3f426f55963a369b18a91cf043 +size 113943 diff --git a/datasets/pinganmajia/train/images/订单1814092_4_7177141.jpg b/datasets/pinganmajia/train/images/订单1814092_4_7177141.jpg new file mode 100644 index 0000000..578b844 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814092_4_7177141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d59af07ecf4e12b929a4dcdb52230cdc89af35cd6435bc71df758d90fa494c +size 82012 diff --git a/datasets/pinganmajia/train/images/订单1814093_4_7177103.jpg b/datasets/pinganmajia/train/images/订单1814093_4_7177103.jpg new file mode 100644 index 0000000..68f256c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814093_4_7177103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:891c55600929af57ee005ad2a9296e41b295196cf84cbf9c07a9bedc98385671 +size 297240 diff --git a/datasets/pinganmajia/train/images/订单1814094_4_7177156.jpg b/datasets/pinganmajia/train/images/订单1814094_4_7177156.jpg new file mode 100644 index 0000000..0557ee0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814094_4_7177156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aea73174a0c648a54990b37b23e0133a604cabe309308e91eb550c793b0a49b +size 215433 diff --git a/datasets/pinganmajia/train/images/订单1814095_4_7177256.jpg b/datasets/pinganmajia/train/images/订单1814095_4_7177256.jpg new file mode 100644 index 0000000..ea02e13 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814095_4_7177256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431d4d8363d20023f876472d4ae1b2aab126f96ad2d7b090f516a5c9648eb0ec +size 219628 diff --git a/datasets/pinganmajia/train/images/订单1814097_4_7177232.jpg b/datasets/pinganmajia/train/images/订单1814097_4_7177232.jpg new file mode 100644 index 0000000..5a47309 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814097_4_7177232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7f1eb6e2b1bd34307a7155eb20ce34400a2b3b4b8473eaa77426e44141c028 +size 273967 diff --git a/datasets/pinganmajia/train/images/订单1814104_4_7177646.jpg b/datasets/pinganmajia/train/images/订单1814104_4_7177646.jpg new file mode 100644 index 0000000..93355e2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814104_4_7177646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2080b49c56ec024d18213c8cabe99ce2647e95d732627226ef50e09f25a9bf6 +size 104865 diff --git a/datasets/pinganmajia/train/images/订单1814105_4_7177323.jpg b/datasets/pinganmajia/train/images/订单1814105_4_7177323.jpg new file mode 100644 index 0000000..55c40e3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814105_4_7177323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b53611cf77a335b9957d4d8cb80787579846468aa1a20a7ce6b05bed86a9305 +size 358606 diff --git a/datasets/pinganmajia/train/images/订单1814109_4_7177731.jpg b/datasets/pinganmajia/train/images/订单1814109_4_7177731.jpg new file mode 100644 index 0000000..2d3ae36 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814109_4_7177731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6bd09aa12b810b7d587eff7b20b5d8578472c93c071a951446a3541cf1577fa +size 197160 diff --git a/datasets/pinganmajia/train/images/订单1814110_4_7177369.jpg b/datasets/pinganmajia/train/images/订单1814110_4_7177369.jpg new file mode 100644 index 0000000..3c08e1e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814110_4_7177369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2208841d9ca129d4aea2f9bca423189b2c6791b5f0ccdb6998932d80d7e7c3b9 +size 70519 diff --git a/datasets/pinganmajia/train/images/订单1814111_4_7177382.jpg b/datasets/pinganmajia/train/images/订单1814111_4_7177382.jpg new file mode 100644 index 0000000..79ca155 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814111_4_7177382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2dedae12b2a84477bfb624c6e9c3065148d63b4f6b706ffc64ab4e9e2cf3d2 +size 255668 diff --git a/datasets/pinganmajia/train/images/订单1814112_4_7177455.jpg b/datasets/pinganmajia/train/images/订单1814112_4_7177455.jpg new file mode 100644 index 0000000..af3b618 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814112_4_7177455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b25b5a930605a6a6638a0d33308582cbd7b47a62da1262968b2b815e146985 +size 133247 diff --git a/datasets/pinganmajia/train/images/订单1814117_4_7177412.jpg b/datasets/pinganmajia/train/images/订单1814117_4_7177412.jpg new file mode 100644 index 0000000..63aec1d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814117_4_7177412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0f0b058e29c57eadfdc57474e7f98cc526908525f7e0fbf56a1681418ef5f0 +size 356219 diff --git a/datasets/pinganmajia/train/images/订单1814119_4_7177441.jpg b/datasets/pinganmajia/train/images/订单1814119_4_7177441.jpg new file mode 100644 index 0000000..3d1e337 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814119_4_7177441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e83e1648816a54f03c9ac9e4e6cc75a754f9cf20988a8e01d30e86f3992f181 +size 657730 diff --git a/datasets/pinganmajia/train/images/订单1814120_4_7177556.jpg b/datasets/pinganmajia/train/images/订单1814120_4_7177556.jpg new file mode 100644 index 0000000..6d3a585 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814120_4_7177556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1281e21476f18a5cfcf5c0a5134819c5dd3206c29b783cc23821010c1e611870 +size 110498 diff --git a/datasets/pinganmajia/train/images/订单1814122_4_7177544.jpg b/datasets/pinganmajia/train/images/订单1814122_4_7177544.jpg new file mode 100644 index 0000000..1b87247 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814122_4_7177544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44e638cd31a031c21a07f5d00a6d4aa94480c6922f3dca5c9d2e9ec0c2da6bc +size 105726 diff --git a/datasets/pinganmajia/train/images/订单1814123_4_7177496.jpg b/datasets/pinganmajia/train/images/订单1814123_4_7177496.jpg new file mode 100644 index 0000000..793979b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814123_4_7177496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d99a73a5e157f23205f46aa42e4f07c92b507b36ff4965b70939fc635b63e4 +size 69388 diff --git a/datasets/pinganmajia/train/images/订单1814124_4_7177518.jpg b/datasets/pinganmajia/train/images/订单1814124_4_7177518.jpg new file mode 100644 index 0000000..08e7f9f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814124_4_7177518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf268d6100ee5c7fd5f87f0c981ed3d1aac22e9e971af677ae7fbb10c232bec +size 98956 diff --git a/datasets/pinganmajia/train/images/订单1814125_4_7177508.jpg b/datasets/pinganmajia/train/images/订单1814125_4_7177508.jpg new file mode 100644 index 0000000..85aac35 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814125_4_7177508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dee1e57b798919950591189ef75c3322428d96076d21dae9ae24c37378f3eb +size 103485 diff --git a/datasets/pinganmajia/train/images/订单1814126_4_7177512.jpg b/datasets/pinganmajia/train/images/订单1814126_4_7177512.jpg new file mode 100644 index 0000000..8f4354c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814126_4_7177512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429340be5465385cf3a03c555dd3c40414f8290d8f94ef9def25ff3fcd4d908d +size 382335 diff --git a/datasets/pinganmajia/train/images/订单1814127_4_7177543.jpg b/datasets/pinganmajia/train/images/订单1814127_4_7177543.jpg new file mode 100644 index 0000000..2d20557 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814127_4_7177543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a238baf321cc17747472b679a94b8282bb44618eb96678474da48e22f97060 +size 94379 diff --git a/datasets/pinganmajia/train/images/订单1814128_4_7177600.jpg b/datasets/pinganmajia/train/images/订单1814128_4_7177600.jpg new file mode 100644 index 0000000..2913461 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814128_4_7177600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6714bc064b173ee31aaf5b3e7461e83c9811c0200b5551725d4ae1e1e8332cca +size 503595 diff --git a/datasets/pinganmajia/train/images/订单1814129_4_7177548.jpg b/datasets/pinganmajia/train/images/订单1814129_4_7177548.jpg new file mode 100644 index 0000000..8e69e7a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814129_4_7177548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04f783e7d5c0055e7d72539e3900bcd5b5ee9b78ec59a1b7c4afbe83a2bf8b2 +size 281732 diff --git a/datasets/pinganmajia/train/images/订单1814130_4_7177527.jpg b/datasets/pinganmajia/train/images/订单1814130_4_7177527.jpg new file mode 100644 index 0000000..c79e886 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814130_4_7177527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a761329f8e15cc52e02dd90e6f782c04bb7d6a4c03430ecfe5e7dc99f0ee45 +size 137045 diff --git a/datasets/pinganmajia/train/images/订单1814133_4_7177558.jpg b/datasets/pinganmajia/train/images/订单1814133_4_7177558.jpg new file mode 100644 index 0000000..381368a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814133_4_7177558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95067758d72f680d978ef690701370495895901aace137e8e48f7302f41ba97c +size 153524 diff --git a/datasets/pinganmajia/train/images/订单1814134_4_7177660.jpg b/datasets/pinganmajia/train/images/订单1814134_4_7177660.jpg new file mode 100644 index 0000000..618713a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814134_4_7177660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76a951e027810a85fc1fe72a2954217cc99971dacdcd5ebbf0a988154e2eec8 +size 184002 diff --git a/datasets/pinganmajia/train/images/订单1814136_4_7177622.jpg b/datasets/pinganmajia/train/images/订单1814136_4_7177622.jpg new file mode 100644 index 0000000..6fed6c1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814136_4_7177622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabf1da0689ee12d389753f74f9f29301b0d286bcb7c0fc37f3764b1283d4d1f +size 173195 diff --git a/datasets/pinganmajia/train/images/订单1814137_4_7177652.jpg b/datasets/pinganmajia/train/images/订单1814137_4_7177652.jpg new file mode 100644 index 0000000..6b0cd6e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814137_4_7177652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ec70b8d0cff410102c540e94e55dff00df396f88122ee68676ce9fa9b01cab +size 259190 diff --git a/datasets/pinganmajia/train/images/订单1814138_4_7178141.jpg b/datasets/pinganmajia/train/images/订单1814138_4_7178141.jpg new file mode 100644 index 0000000..3880ae6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814138_4_7178141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668c9dedfbe4b25889afff8e96df3cfd09f5c9e682c43f9c4b6abb0b71b99a85 +size 652969 diff --git a/datasets/pinganmajia/train/images/订单1814141_4_7177667.jpg b/datasets/pinganmajia/train/images/订单1814141_4_7177667.jpg new file mode 100644 index 0000000..0492071 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814141_4_7177667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958ea1434e9beef556d4b8d529a5b1768c252aa9319d3da6d7fd7bf6ae962031 +size 586845 diff --git a/datasets/pinganmajia/train/images/订单1814143_4_7177631.jpg b/datasets/pinganmajia/train/images/订单1814143_4_7177631.jpg new file mode 100644 index 0000000..b7d1378 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814143_4_7177631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5650f859b46a221495f5e959f68a63bcef468ff570177c03ef571edf7ae85c5f +size 221895 diff --git a/datasets/pinganmajia/train/images/订单1814145_4_7177691.jpg b/datasets/pinganmajia/train/images/订单1814145_4_7177691.jpg new file mode 100644 index 0000000..6a41e35 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814145_4_7177691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b149d2e7a94f57175715d7ccda06383e453b6e18cf90d0086e532a5baf7a67da +size 92292 diff --git a/datasets/pinganmajia/train/images/订单1814147_4_7177709.jpg b/datasets/pinganmajia/train/images/订单1814147_4_7177709.jpg new file mode 100644 index 0000000..72756cb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814147_4_7177709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a904e96b810d1fe1d08f390a756ceb821941b95690ea701da509e7b921b2c6 +size 76767 diff --git a/datasets/pinganmajia/train/images/订单1814148_4_7177700.jpg b/datasets/pinganmajia/train/images/订单1814148_4_7177700.jpg new file mode 100644 index 0000000..9d538a4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814148_4_7177700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7aa00bb25d52cefbc0151ded9373079375b928f26ab522d79c305077c9e5d91 +size 219477 diff --git a/datasets/pinganmajia/train/images/订单1814149_4_7177680.jpg b/datasets/pinganmajia/train/images/订单1814149_4_7177680.jpg new file mode 100644 index 0000000..e416898 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814149_4_7177680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369bb1553e83e4bd7a843e58307d5232039c66b620a9f0a8497260f90375d948 +size 97700 diff --git a/datasets/pinganmajia/train/images/订单1814150_4_7177840.jpg b/datasets/pinganmajia/train/images/订单1814150_4_7177840.jpg new file mode 100644 index 0000000..992cfde --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814150_4_7177840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2dda97dac0b8d6c07db7c0680c0bdebf39ecde78e9dea5d982c545cefeb27c3 +size 815588 diff --git a/datasets/pinganmajia/train/images/订单1814151_4_7177790.jpg b/datasets/pinganmajia/train/images/订单1814151_4_7177790.jpg new file mode 100644 index 0000000..20b29bb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814151_4_7177790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138542458b377384754b18de7e3ffa20edd99c2d8e8d0f96880359a6c05a96e3 +size 203446 diff --git a/datasets/pinganmajia/train/images/订单1814152_4_7177857.jpg b/datasets/pinganmajia/train/images/订单1814152_4_7177857.jpg new file mode 100644 index 0000000..2c1a176 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814152_4_7177857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c988e8f7e68f11acf338813160036463e1fb13a41780c303dad81399c9db2aca +size 346971 diff --git a/datasets/pinganmajia/train/images/订单1814153_4_7177777.jpg b/datasets/pinganmajia/train/images/订单1814153_4_7177777.jpg new file mode 100644 index 0000000..b3c446b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814153_4_7177777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec28c598a19af1b6416b6a198c7bf2b1fa97e965aa8423f100186dafb890f68 +size 178705 diff --git a/datasets/pinganmajia/train/images/订单1814154_4_7177800.jpg b/datasets/pinganmajia/train/images/订单1814154_4_7177800.jpg new file mode 100644 index 0000000..f896cf3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814154_4_7177800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c94a80658c7b252fc8948e717386ba9733da9adf2e331e4189bad8b4d211a5 +size 260829 diff --git a/datasets/pinganmajia/train/images/订单1814155_4_7177806.jpg b/datasets/pinganmajia/train/images/订单1814155_4_7177806.jpg new file mode 100644 index 0000000..7341ed3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814155_4_7177806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9324e1415546419cdda5b452a2e7478f0dca3b1097ccdc5e6e32cccf4ff88542 +size 498735 diff --git a/datasets/pinganmajia/train/images/订单1814156_4_7177861.jpg b/datasets/pinganmajia/train/images/订单1814156_4_7177861.jpg new file mode 100644 index 0000000..e8740d8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814156_4_7177861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314921eacec6e824aa0085e98869cf2099bfcb3e2555987f73ad579260c9007b +size 987526 diff --git a/datasets/pinganmajia/train/images/订单1814158_4_7177811.jpg b/datasets/pinganmajia/train/images/订单1814158_4_7177811.jpg new file mode 100644 index 0000000..1158351 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814158_4_7177811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67bb59a0dde4f214041ec938f61f0c1f5f59eb50768067f90275c9e975de365 +size 171398 diff --git a/datasets/pinganmajia/train/images/订单1814159_4_7177927.jpg b/datasets/pinganmajia/train/images/订单1814159_4_7177927.jpg new file mode 100644 index 0000000..e90841f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814159_4_7177927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b166162f154ff53d8d8f7651cf11353aa62951dd261d4a56b68b3f0cff411aa +size 263933 diff --git a/datasets/pinganmajia/train/images/订单1814160_4_7177828.jpg b/datasets/pinganmajia/train/images/订单1814160_4_7177828.jpg new file mode 100644 index 0000000..89b6dd0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814160_4_7177828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134e6a65f477fcd0981a592d9fe20db22a4b78835e73d07c05f09f46988d3d4a +size 149731 diff --git a/datasets/pinganmajia/train/images/订单1814161_4_7179729.jpg b/datasets/pinganmajia/train/images/订单1814161_4_7179729.jpg new file mode 100644 index 0000000..607617a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814161_4_7179729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11cb24c28a88baad8fa9bf0b8bfb13751aaf1b30c8d2a92a5f06471fc096899 +size 154088 diff --git a/datasets/pinganmajia/train/images/订单1814166_4_7177929.jpg b/datasets/pinganmajia/train/images/订单1814166_4_7177929.jpg new file mode 100644 index 0000000..9698fc7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814166_4_7177929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afea3bd31f9ec938b46807dcdbfb05f43282a918ce61be0eef865068efa750e4 +size 90335 diff --git a/datasets/pinganmajia/train/images/订单1814167_4_7177889.jpg b/datasets/pinganmajia/train/images/订单1814167_4_7177889.jpg new file mode 100644 index 0000000..362011c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814167_4_7177889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ee25e2df69e06ee4e5234b533b6980abaf388ff5d9afdb100378f47de5064b +size 565799 diff --git a/datasets/pinganmajia/train/images/订单1814168_4_7177939.jpg b/datasets/pinganmajia/train/images/订单1814168_4_7177939.jpg new file mode 100644 index 0000000..62f8e42 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814168_4_7177939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ca78c1a344c8e73e286e28e5e33a3ccd7d7bc254650f07a03d30829f6d2732 +size 105681 diff --git a/datasets/pinganmajia/train/images/订单1814171_4_7178007.jpg b/datasets/pinganmajia/train/images/订单1814171_4_7178007.jpg new file mode 100644 index 0000000..9dcc862 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814171_4_7178007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5b61771ee5e69b66cbd033ed679346a2211ff99268f24913ae99452a9115af +size 186950 diff --git a/datasets/pinganmajia/train/images/订单1814172_4_7177985.jpg b/datasets/pinganmajia/train/images/订单1814172_4_7177985.jpg new file mode 100644 index 0000000..564b1f5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814172_4_7177985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d99726c514459908d9e4ffd27fa9c21937e212cac726ae28c86a92d55e5ee7 +size 130857 diff --git a/datasets/pinganmajia/train/images/订单1814174_4_7178249.jpg b/datasets/pinganmajia/train/images/订单1814174_4_7178249.jpg new file mode 100644 index 0000000..7cbd22a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814174_4_7178249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a73b6372b8f6f361f87e9099c63de24073d4d15a7ee7249c1ebe7087728d5f35 +size 539976 diff --git a/datasets/pinganmajia/train/images/订单1814176_4_7177991.jpg b/datasets/pinganmajia/train/images/订单1814176_4_7177991.jpg new file mode 100644 index 0000000..cac9796 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814176_4_7177991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efca73a3126d0245bbd91d13cf42f23a0db0e6933d3d4100bab67605c3778103 +size 123601 diff --git a/datasets/pinganmajia/train/images/订单1814177_4_7178116.jpg b/datasets/pinganmajia/train/images/订单1814177_4_7178116.jpg new file mode 100644 index 0000000..b0511b0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814177_4_7178116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5197b0b48ce7582569e23f9a290efe08f366216adfeb038b7e3bf9504ba3c4 +size 108597 diff --git a/datasets/pinganmajia/train/images/订单1814178_4_7177996.jpg b/datasets/pinganmajia/train/images/订单1814178_4_7177996.jpg new file mode 100644 index 0000000..7bd8710 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814178_4_7177996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48efac2ec7f3f3edc64ad033dfcf4ea10da1333f82522f46a48a196800fe9fb9 +size 130258 diff --git a/datasets/pinganmajia/train/images/订单1814183_4_7178046.jpg b/datasets/pinganmajia/train/images/订单1814183_4_7178046.jpg new file mode 100644 index 0000000..ce1eb7c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814183_4_7178046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273cfd87e81f8c55a69a4bd6ecca79fb2ef1541fd1a3cc723caf92cc79b20600 +size 91039 diff --git a/datasets/pinganmajia/train/images/订单1814187_4_7178190.jpg b/datasets/pinganmajia/train/images/订单1814187_4_7178190.jpg new file mode 100644 index 0000000..6bcd348 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814187_4_7178190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6c2e85f9fc3d9f898d57cd60842c2d81dbdd38134726fb61a93950ad58dc13 +size 173676 diff --git a/datasets/pinganmajia/train/images/订单1814190_4_7178100.jpg b/datasets/pinganmajia/train/images/订单1814190_4_7178100.jpg new file mode 100644 index 0000000..0c70c07 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814190_4_7178100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6c6ebab850573dd86c913d071897ddb02554c987c6cb399f9c1ebbfed701a8 +size 132732 diff --git a/datasets/pinganmajia/train/images/订单1814192_4_7178129.jpg b/datasets/pinganmajia/train/images/订单1814192_4_7178129.jpg new file mode 100644 index 0000000..3a9f18e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814192_4_7178129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3a59f030a576a1bc9660248a269b19486c1c17b97c4f1e3f31964bff0be77b +size 79071 diff --git a/datasets/pinganmajia/train/images/订单1814195_4_7178168.jpg b/datasets/pinganmajia/train/images/订单1814195_4_7178168.jpg new file mode 100644 index 0000000..b16c37f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814195_4_7178168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefdf416320b28561dd3a01e6568580111677c7ce2f0fe181c2d02cc14110373 +size 204165 diff --git a/datasets/pinganmajia/train/images/订单1814196_4_7178264.jpg b/datasets/pinganmajia/train/images/订单1814196_4_7178264.jpg new file mode 100644 index 0000000..d748390 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814196_4_7178264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee07c023499b4c4965015b2716db97c5da8db79182ee434ef61a08590879c6 +size 459981 diff --git a/datasets/pinganmajia/train/images/订单1814197_4_7178267.jpg b/datasets/pinganmajia/train/images/订单1814197_4_7178267.jpg new file mode 100644 index 0000000..e855553 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814197_4_7178267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e7bbe97a32685f98e4bc4759c7ec6e567b0e51f97093c9456102e326f4bc6a +size 246796 diff --git a/datasets/pinganmajia/train/images/订单1814198_4_7178275.jpg b/datasets/pinganmajia/train/images/订单1814198_4_7178275.jpg new file mode 100644 index 0000000..8d28418 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814198_4_7178275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d8b456aafbb869d07f2d3870041a1799c488afcd334b6feb9aac0327664f74 +size 74052 diff --git a/datasets/pinganmajia/train/images/订单1814201_4_7178232.jpg b/datasets/pinganmajia/train/images/订单1814201_4_7178232.jpg new file mode 100644 index 0000000..1f9be20 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814201_4_7178232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8eae364cf4c2dd19a8409da69d9ff402bc2490e5239e725985fb8b5f5c8abee +size 113390 diff --git a/datasets/pinganmajia/train/images/订单1814202_4_7178205.jpg b/datasets/pinganmajia/train/images/订单1814202_4_7178205.jpg new file mode 100644 index 0000000..24a406c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814202_4_7178205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc266318403560ef69eedab337e04ebe4a6ef38b176c123611a858fa8278ddba +size 664912 diff --git a/datasets/pinganmajia/train/images/订单1814203_4_7178224.jpg b/datasets/pinganmajia/train/images/订单1814203_4_7178224.jpg new file mode 100644 index 0000000..acf44af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814203_4_7178224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af4d65ebbd8f04da2b06e96545a01eda018f28fc2052074a62efe52d3b742e4 +size 182983 diff --git a/datasets/pinganmajia/train/images/订单1814204_4_7178305.jpg b/datasets/pinganmajia/train/images/订单1814204_4_7178305.jpg new file mode 100644 index 0000000..71e24fd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814204_4_7178305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2331f7fd84588fae0054787148fb524f9b710f527feedd3f2c482a8df75663b9 +size 94802 diff --git a/datasets/pinganmajia/train/images/订单1814206_4_7178310.jpg b/datasets/pinganmajia/train/images/订单1814206_4_7178310.jpg new file mode 100644 index 0000000..c827621 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814206_4_7178310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a2e60ef2f7bbaaed5c38bc27cc871fdc002498ed8fea14833b320188a0fbe7 +size 129032 diff --git a/datasets/pinganmajia/train/images/订单1814208_4_7178348.jpg b/datasets/pinganmajia/train/images/订单1814208_4_7178348.jpg new file mode 100644 index 0000000..66e7e9f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814208_4_7178348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41daa525a77e1d1305ed00f38479ae196b857fae9f2afb20800faf573ed84620 +size 117728 diff --git a/datasets/pinganmajia/train/images/订单1814209_4_7178383.jpg b/datasets/pinganmajia/train/images/订单1814209_4_7178383.jpg new file mode 100644 index 0000000..c5f822a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814209_4_7178383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcadbce672bbd81ed8c98d29ac01a1f2ecf6bd811fc4b1f8d76ddaa76b5a0c4 +size 655634 diff --git a/datasets/pinganmajia/train/images/订单1814210_4_7178514.jpg b/datasets/pinganmajia/train/images/订单1814210_4_7178514.jpg new file mode 100644 index 0000000..11fc0b5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814210_4_7178514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe110bb769d8fdc37da1aa766eae8061b6f3ab34412881d2103f3364e4b8e936 +size 89300 diff --git a/datasets/pinganmajia/train/images/订单1814211_4_7178364.jpg b/datasets/pinganmajia/train/images/订单1814211_4_7178364.jpg new file mode 100644 index 0000000..10403ca --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814211_4_7178364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb200e890228572bbc3b84bc38522b00004015d357de8d916a6d86dd36f9480 +size 151961 diff --git a/datasets/pinganmajia/train/images/订单1814215_4_7178588.jpg b/datasets/pinganmajia/train/images/订单1814215_4_7178588.jpg new file mode 100644 index 0000000..19ade43 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814215_4_7178588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46cdf5aabf88909fb63a86d49a1087dba505b6fab8082ecb5e9b397bbf304c4 +size 93427 diff --git a/datasets/pinganmajia/train/images/订单1814217_4_7178538.jpg b/datasets/pinganmajia/train/images/订单1814217_4_7178538.jpg new file mode 100644 index 0000000..f48abfc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814217_4_7178538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5950d7349b60e11ebc7749eb39fc2fdc7116bc7a7522f206bef277c656f40764 +size 109978 diff --git a/datasets/pinganmajia/train/images/订单1814218_4_7178413.jpg b/datasets/pinganmajia/train/images/订单1814218_4_7178413.jpg new file mode 100644 index 0000000..a14dd8d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814218_4_7178413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf07d095527f510b76c95b7bd8398a13388f575514a3b142d3e0ac6b1b0794a6 +size 354263 diff --git a/datasets/pinganmajia/train/images/订单1814219_4_7178442.jpg b/datasets/pinganmajia/train/images/订单1814219_4_7178442.jpg new file mode 100644 index 0000000..11c7a05 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814219_4_7178442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ce2621285a43b9e508deb8852aacd58bae4a8da70036fdd02cfdc9ab574689 +size 142527 diff --git a/datasets/pinganmajia/train/images/订单1814221_4_7178461.jpg b/datasets/pinganmajia/train/images/订单1814221_4_7178461.jpg new file mode 100644 index 0000000..32b7bfd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814221_4_7178461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837882182de9e0beb5acd3aeff3780be73fcebf501a6fd0caa94e6d6f972d926 +size 268990 diff --git a/datasets/pinganmajia/train/images/订单1814222_4_7178432.jpg b/datasets/pinganmajia/train/images/订单1814222_4_7178432.jpg new file mode 100644 index 0000000..9798ffb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814222_4_7178432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29457c85e92e1ccc4f5a1a1f2f387cf9fc0b7c7cd628b292d21635c8d0888f70 +size 309053 diff --git a/datasets/pinganmajia/train/images/订单1814223_4_7178407.jpg b/datasets/pinganmajia/train/images/订单1814223_4_7178407.jpg new file mode 100644 index 0000000..b6a6eb7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814223_4_7178407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c587bf30b5bec02d4b5ac5c6c3e1f0de79961bd384a43a88f76fc6f3fe007cd7 +size 343364 diff --git a/datasets/pinganmajia/train/images/订单1814226_4_7178531.jpg b/datasets/pinganmajia/train/images/订单1814226_4_7178531.jpg new file mode 100644 index 0000000..93435b6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814226_4_7178531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc807564a345277ab39e5ddf0cf10ae99e090c3847e630dad62e26b0abdd6ae +size 608324 diff --git a/datasets/pinganmajia/train/images/订单1814227_4_7178501.jpg b/datasets/pinganmajia/train/images/订单1814227_4_7178501.jpg new file mode 100644 index 0000000..c523bb5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814227_4_7178501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161bdd0918de2838f58916b117cf86cb661546342889d243be1f227968aee905 +size 502256 diff --git a/datasets/pinganmajia/train/images/订单1814230_4_7178437.jpg b/datasets/pinganmajia/train/images/订单1814230_4_7178437.jpg new file mode 100644 index 0000000..081f1ea --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814230_4_7178437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3efcd440a02ea1d3b723402058d060803936e3991397e32aed8335229b5d88c +size 123670 diff --git a/datasets/pinganmajia/train/images/订单1814231_4_7178521.jpg b/datasets/pinganmajia/train/images/订单1814231_4_7178521.jpg new file mode 100644 index 0000000..9f63039 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814231_4_7178521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d3900e2343b10a00bdff3147b8bd39c820a9db6cf2df70c1468b2f81e38a66 +size 98172 diff --git a/datasets/pinganmajia/train/images/订单1814235_4_7178552.jpg b/datasets/pinganmajia/train/images/订单1814235_4_7178552.jpg new file mode 100644 index 0000000..e1ff7b9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814235_4_7178552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc604e8255ff7839cadaef63bb104fe9e69a7494c4fa1f34fe5ed1df705ae58b +size 137639 diff --git a/datasets/pinganmajia/train/images/订单1814236_4_7178510.jpg b/datasets/pinganmajia/train/images/订单1814236_4_7178510.jpg new file mode 100644 index 0000000..3eef3b8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814236_4_7178510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aaaa9a3b40dbf26ddc3a9eb89f8f313ce0d817133d6f3b7d46db52f33a627d6 +size 69865 diff --git a/datasets/pinganmajia/train/images/订单1814239_4_7178615.jpg b/datasets/pinganmajia/train/images/订单1814239_4_7178615.jpg new file mode 100644 index 0000000..de6438b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814239_4_7178615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9351ba1189c79de12cfc2ebac5ba9d11789351cc4dd99427cbbcbdccbf301a9 +size 124504 diff --git a/datasets/pinganmajia/train/images/订单1814240_4_7178668.jpg b/datasets/pinganmajia/train/images/订单1814240_4_7178668.jpg new file mode 100644 index 0000000..42e9785 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814240_4_7178668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70cd91a8d201a492236a738bc8d28479176e3a5e7dc69d4bd2aa45a2d73f30f8 +size 317461 diff --git a/datasets/pinganmajia/train/images/订单1814241_4_7178761.jpg b/datasets/pinganmajia/train/images/订单1814241_4_7178761.jpg new file mode 100644 index 0000000..cf8c95d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814241_4_7178761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20c90a50967629c38a1fa479d3b7440ce32cf826ad4a9cad24be13d0c24d35a +size 95369 diff --git a/datasets/pinganmajia/train/images/订单1814243_4_7178687.jpg b/datasets/pinganmajia/train/images/订单1814243_4_7178687.jpg new file mode 100644 index 0000000..d8d58fa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814243_4_7178687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a666ad353620216c59d39952e873bd6db7457d8c1ed40bb4f351251e21d73ec +size 355096 diff --git a/datasets/pinganmajia/train/images/订单1814244_4_7178617.jpg b/datasets/pinganmajia/train/images/订单1814244_4_7178617.jpg new file mode 100644 index 0000000..f91a148 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814244_4_7178617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b0336574ad3ca9a54cb65e82cc30981a7e064cf4a3c64a9c601f9fdc820f12 +size 146479 diff --git a/datasets/pinganmajia/train/images/订单1814246_4_7178600.jpg b/datasets/pinganmajia/train/images/订单1814246_4_7178600.jpg new file mode 100644 index 0000000..97c513d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814246_4_7178600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f259a7e6d0e714ef78cd664c2c8b78fac3e93e273f3b85a70edfa40ea6c2dfc +size 180265 diff --git a/datasets/pinganmajia/train/images/订单1814248_4_7178663.jpg b/datasets/pinganmajia/train/images/订单1814248_4_7178663.jpg new file mode 100644 index 0000000..eda0970 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814248_4_7178663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e09b4b5322e57fcf36b968af1bb2e6a2730f98ce630da035df7a40bae1e8b1 +size 94244 diff --git a/datasets/pinganmajia/train/images/订单1814251_4_7178727.jpg b/datasets/pinganmajia/train/images/订单1814251_4_7178727.jpg new file mode 100644 index 0000000..89dc4d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814251_4_7178727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9319d580db48f71bee5a9644ebaa3369051f17c70d46d4698c9dc4f953a07e7 +size 75272 diff --git a/datasets/pinganmajia/train/images/订单1814252_4_7178708.jpg b/datasets/pinganmajia/train/images/订单1814252_4_7178708.jpg new file mode 100644 index 0000000..650b207 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814252_4_7178708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5c5b5b9173f82e5d33835f8e6ba83304eb55eadc94d570449aade242c0a168 +size 124218 diff --git a/datasets/pinganmajia/train/images/订单1814253_4_7178753.jpg b/datasets/pinganmajia/train/images/订单1814253_4_7178753.jpg new file mode 100644 index 0000000..f429398 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814253_4_7178753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3db3aaafd43624bbd670e2dd60d71dccd374d7e797f6b15a8c85745926e596b +size 40159 diff --git a/datasets/pinganmajia/train/images/订单1814254_4_7178866.jpg b/datasets/pinganmajia/train/images/订单1814254_4_7178866.jpg new file mode 100644 index 0000000..a5f63a4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814254_4_7178866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517f38d9fa476d1078c4fc68fa9c69c6cf2f30301acd7ab18858ef8fc562fdbf +size 95819 diff --git a/datasets/pinganmajia/train/images/订单1814255_4_7178728.jpg b/datasets/pinganmajia/train/images/订单1814255_4_7178728.jpg new file mode 100644 index 0000000..2894f30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814255_4_7178728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69673c3bba39cac0509ef0100e37a95704c15a2f40af3f7ba6a34506927eed2 +size 454100 diff --git a/datasets/pinganmajia/train/images/订单1814256_4_7178751.jpg b/datasets/pinganmajia/train/images/订单1814256_4_7178751.jpg new file mode 100644 index 0000000..abc0ed9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814256_4_7178751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38846fef6546409d54032ff3594d8bdb4402669e627fad0d071d1b64394cfb4e +size 71183 diff --git a/datasets/pinganmajia/train/images/订单1814259_4_7178777.jpg b/datasets/pinganmajia/train/images/订单1814259_4_7178777.jpg new file mode 100644 index 0000000..227ce32 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814259_4_7178777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e315644d2463f8a531cc30ad1ebae3b84aff69c7ff6a8d75caeae26021f5ad8 +size 422485 diff --git a/datasets/pinganmajia/train/images/订单1814260_4_7178804.jpg b/datasets/pinganmajia/train/images/订单1814260_4_7178804.jpg new file mode 100644 index 0000000..450600e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814260_4_7178804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d51d532a37dd53c35b486fd5ff64fe970c4aae81d55235d42bf56065c0a3c4 +size 490672 diff --git a/datasets/pinganmajia/train/images/订单1814261_4_7178925.jpg b/datasets/pinganmajia/train/images/订单1814261_4_7178925.jpg new file mode 100644 index 0000000..cf2b385 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814261_4_7178925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3390c952c7c232cf1cf007f3b6afb81313de06b746188cdb243c73e3c105636b +size 99851 diff --git a/datasets/pinganmajia/train/images/订单1814262_4_7178815.jpg b/datasets/pinganmajia/train/images/订单1814262_4_7178815.jpg new file mode 100644 index 0000000..e76b7c5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814262_4_7178815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd314772e554703e64067f3f0ad098b8f4793a3a6bdc198c43db3467b620a85 +size 172310 diff --git a/datasets/pinganmajia/train/images/订单1814263_4_7178814.jpg b/datasets/pinganmajia/train/images/订单1814263_4_7178814.jpg new file mode 100644 index 0000000..a377a05 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814263_4_7178814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17da0e9534ac6da8f74a9142a07ceb13f8b1789ef6f0a336e851b7d7eb2d461 +size 229782 diff --git a/datasets/pinganmajia/train/images/订单1814264_4_7178844.jpg b/datasets/pinganmajia/train/images/订单1814264_4_7178844.jpg new file mode 100644 index 0000000..a46f229 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814264_4_7178844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d5079f431cd10f27557b9e9e3715b0df99fd6ee5ebceab4d36ec13513964ae +size 54475 diff --git a/datasets/pinganmajia/train/images/订单1814265_4_7178824.jpg b/datasets/pinganmajia/train/images/订单1814265_4_7178824.jpg new file mode 100644 index 0000000..adddde5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814265_4_7178824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc463d1c34cb204abb0cd7ce94a18bd33e24e0782ccc0a00a4044b9e3d18388 +size 73770 diff --git a/datasets/pinganmajia/train/images/订单1814266_4_7178934.jpg b/datasets/pinganmajia/train/images/订单1814266_4_7178934.jpg new file mode 100644 index 0000000..822de20 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814266_4_7178934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcba268a8ebce77b814907f913e848add3bbad7c52f8f3547f1751b783a2aefc +size 100945 diff --git a/datasets/pinganmajia/train/images/订单1814267_4_7178911.jpg b/datasets/pinganmajia/train/images/订单1814267_4_7178911.jpg new file mode 100644 index 0000000..89be7a7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814267_4_7178911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5bcc4cf022f627b39626966122c8fc92d209ed0cde7b1463c0b7b5aa0e389f +size 124200 diff --git a/datasets/pinganmajia/train/images/订单1814268_4_7178905.jpg b/datasets/pinganmajia/train/images/订单1814268_4_7178905.jpg new file mode 100644 index 0000000..45b36a4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814268_4_7178905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b562e060bbe47eb45b339b808f761804cdae7e085ca088905f1c502926949ee5 +size 328434 diff --git a/datasets/pinganmajia/train/images/订单1814270_4_7178926.jpg b/datasets/pinganmajia/train/images/订单1814270_4_7178926.jpg new file mode 100644 index 0000000..c5f6f51 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814270_4_7178926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8416f4624324b39a5ed3625f7acabd771645229028c1922c0a89d383052449 +size 80096 diff --git a/datasets/pinganmajia/train/images/订单1814271_4_7178950.jpg b/datasets/pinganmajia/train/images/订单1814271_4_7178950.jpg new file mode 100644 index 0000000..6ffeccd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814271_4_7178950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46e7aac910024e02ec71664dbdb271418a241d371bcbe579af8501176883c59 +size 86097 diff --git a/datasets/pinganmajia/train/images/订单1814274_4_7178944.jpg b/datasets/pinganmajia/train/images/订单1814274_4_7178944.jpg new file mode 100644 index 0000000..f56c302 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814274_4_7178944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516f27a09b262f0b1645f5dcb5fc2210fcd897b8b56646778608b1dd727b0b5a +size 93941 diff --git a/datasets/pinganmajia/train/images/订单1814275_4_7178959.jpg b/datasets/pinganmajia/train/images/订单1814275_4_7178959.jpg new file mode 100644 index 0000000..52af890 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814275_4_7178959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7f1aac84bfdf18bf8ed8b9a10391ebc18e2a5a0a127e037fb48c30403a1657 +size 58865 diff --git a/datasets/pinganmajia/train/images/订单1814278_4_7179018.jpg b/datasets/pinganmajia/train/images/订单1814278_4_7179018.jpg new file mode 100644 index 0000000..6d56e02 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814278_4_7179018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf73352405aefb6f22ef872ab4b44af32dfe3533bd0bc4da34392a36ee4612f +size 107700 diff --git a/datasets/pinganmajia/train/images/订单1814279_4_7178980.jpg b/datasets/pinganmajia/train/images/订单1814279_4_7178980.jpg new file mode 100644 index 0000000..9e5b387 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814279_4_7178980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389acbce555c9c993f678be3da8188d8b228d73d76d0e58c14e20554badff109 +size 88528 diff --git a/datasets/pinganmajia/train/images/订单1814280_4_7178969.jpg b/datasets/pinganmajia/train/images/订单1814280_4_7178969.jpg new file mode 100644 index 0000000..f2c5a74 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814280_4_7178969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34627bb47fec3654c36388460bb2e7770b33e91ed1a40b5c78e24ccb1c4cd45e +size 473350 diff --git a/datasets/pinganmajia/train/images/订单1814282_4_7179091.jpg b/datasets/pinganmajia/train/images/订单1814282_4_7179091.jpg new file mode 100644 index 0000000..2be585e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814282_4_7179091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b2e0a7f0df861ed66cf92d360417d38e154e6a9e6f24c77705cf5bf7e81aa99 +size 205759 diff --git a/datasets/pinganmajia/train/images/订单1814283_4_7179147.jpg b/datasets/pinganmajia/train/images/订单1814283_4_7179147.jpg new file mode 100644 index 0000000..1393595 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814283_4_7179147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a226a75315ab2534e3112dd1532a9768b8fa9f1f27dc20a8836a263c431c11a +size 235098 diff --git a/datasets/pinganmajia/train/images/订单1814285_4_7179036.jpg b/datasets/pinganmajia/train/images/订单1814285_4_7179036.jpg new file mode 100644 index 0000000..b2a613d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814285_4_7179036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4098d73cf2d4f0bb71868fae8e3f318320cdc86028f861476308bebdccbd9e8 +size 717839 diff --git a/datasets/pinganmajia/train/images/订单1814286_4_7179123.jpg b/datasets/pinganmajia/train/images/订单1814286_4_7179123.jpg new file mode 100644 index 0000000..d9b48b9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814286_4_7179123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d97a4d5e91be5014dff09423601728c5947af06708b091d43bb2f5c97490bdad +size 57243 diff --git a/datasets/pinganmajia/train/images/订单1814287_4_7179067.jpg b/datasets/pinganmajia/train/images/订单1814287_4_7179067.jpg new file mode 100644 index 0000000..b01d69e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814287_4_7179067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4ee40cd5d193c7d5f3f743f5968b99d090d8d0ba721c4c809ca665dc83292b +size 230006 diff --git a/datasets/pinganmajia/train/images/订单1814289_4_7179197.jpg b/datasets/pinganmajia/train/images/订单1814289_4_7179197.jpg new file mode 100644 index 0000000..5577e1c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814289_4_7179197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86180166cd1e9bf741a61f552561bebbe2e6c98b292797e8c9b5b2a4ad08025 +size 64696 diff --git a/datasets/pinganmajia/train/images/订单1814290_4_7179146.jpg b/datasets/pinganmajia/train/images/订单1814290_4_7179146.jpg new file mode 100644 index 0000000..d633d5d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814290_4_7179146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710fa5bd45c8224be7adecd3725f5e404080ccfbdd1a9cfd8d2bb6adec856858 +size 223193 diff --git a/datasets/pinganmajia/train/images/订单1814293_4_7179156.jpg b/datasets/pinganmajia/train/images/订单1814293_4_7179156.jpg new file mode 100644 index 0000000..417c047 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814293_4_7179156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c9ec2756a96f98ff63b744c939270b2769ddcbe081a2bfb6e64a24d1ddcb59 +size 224192 diff --git a/datasets/pinganmajia/train/images/订单1814296_4_7179212.jpg b/datasets/pinganmajia/train/images/订单1814296_4_7179212.jpg new file mode 100644 index 0000000..8da1d2c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814296_4_7179212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e76194857ed1f99f4ed0bd98eb74cc4b145737285c03093fa2f86e37211e58 +size 106663 diff --git a/datasets/pinganmajia/train/images/订单1814297_4_7179331.jpg b/datasets/pinganmajia/train/images/订单1814297_4_7179331.jpg new file mode 100644 index 0000000..cb47deb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814297_4_7179331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4e919fd915c0970ef8f8b2f71219ba94cc121953b049e8ba637d7ca13d6466 +size 266489 diff --git a/datasets/pinganmajia/train/images/订单1814298_4_7179205.jpg b/datasets/pinganmajia/train/images/订单1814298_4_7179205.jpg new file mode 100644 index 0000000..ad66f3b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814298_4_7179205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0de8115b9239f6c447b23fbfb8454a210a779088852a414e4b4f343bfe1783 +size 81484 diff --git a/datasets/pinganmajia/train/images/订单1814299_4_7179295.jpg b/datasets/pinganmajia/train/images/订单1814299_4_7179295.jpg new file mode 100644 index 0000000..f1cf8d0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814299_4_7179295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938b80a7478733b0075cca81f22f37c81b034d305645210a7473b1ab50fee752 +size 154183 diff --git a/datasets/pinganmajia/train/images/订单1814300_4_7179235.jpg b/datasets/pinganmajia/train/images/订单1814300_4_7179235.jpg new file mode 100644 index 0000000..4070078 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814300_4_7179235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07eecdd8931bb9b3dff3bff4aaf2b99c0d4d60565b27db7796c3f0a05d88b485 +size 151489 diff --git a/datasets/pinganmajia/train/images/订单1814301_4_7179264.jpg b/datasets/pinganmajia/train/images/订单1814301_4_7179264.jpg new file mode 100644 index 0000000..7be93fe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814301_4_7179264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ae08fdcb061e7d141f64fccd7eae348cc45f1433a7a5cda43e5db816f1153c +size 63165 diff --git a/datasets/pinganmajia/train/images/订单1814302_4_7179240.jpg b/datasets/pinganmajia/train/images/订单1814302_4_7179240.jpg new file mode 100644 index 0000000..1686b45 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814302_4_7179240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6a9a573ea5f7af35bd01eb37254ea18d63535289bc9e66909cfc8b3e6b00ca +size 116223 diff --git a/datasets/pinganmajia/train/images/订单1814303_4_7179277.jpg b/datasets/pinganmajia/train/images/订单1814303_4_7179277.jpg new file mode 100644 index 0000000..1f8b92d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814303_4_7179277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7112301317318df6170a45e588a3c185d4bc3d0972d94eb27c816ff05e6671c3 +size 107665 diff --git a/datasets/pinganmajia/train/images/订单1814304_4_7179376.jpg b/datasets/pinganmajia/train/images/订单1814304_4_7179376.jpg new file mode 100644 index 0000000..29c5f89 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814304_4_7179376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e17a3e24e7593d0e8c34dcbc3bf8a9cbca0aaa8a4f045bc55b89132c38c81c8 +size 267939 diff --git a/datasets/pinganmajia/train/images/订单1814305_4_7179272.jpg b/datasets/pinganmajia/train/images/订单1814305_4_7179272.jpg new file mode 100644 index 0000000..afe2a1f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814305_4_7179272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc016b2acf39e4185cd5db71337883ae7b3205fd9cd1d1f3de1aafa8a63fc97 +size 147119 diff --git a/datasets/pinganmajia/train/images/订单1814306_4_7179449.jpg b/datasets/pinganmajia/train/images/订单1814306_4_7179449.jpg new file mode 100644 index 0000000..a38ca2a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814306_4_7179449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3eaedfbed2c71d44e4d62948b92094ea8efd61201f7509edf229d2ca77faea +size 278222 diff --git a/datasets/pinganmajia/train/images/订单1814307_4_7179307.jpg b/datasets/pinganmajia/train/images/订单1814307_4_7179307.jpg new file mode 100644 index 0000000..01abbb5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814307_4_7179307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00573f6d28cfbf96b4dcab5fc5ad2544d2914fa5a4664461697abbfa96cd07f +size 107530 diff --git a/datasets/pinganmajia/train/images/订单1814309_4_7179335.jpg b/datasets/pinganmajia/train/images/订单1814309_4_7179335.jpg new file mode 100644 index 0000000..6dafed4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814309_4_7179335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de908d4bd6ab1a4013f79170503fdc82a688dce4908829ca6f36275802d3802b +size 94586 diff --git a/datasets/pinganmajia/train/images/订单1814310_4_7179429.jpg b/datasets/pinganmajia/train/images/订单1814310_4_7179429.jpg new file mode 100644 index 0000000..cf2ac4f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814310_4_7179429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6186acb4a17670075d6658dec657320cd222c819bd19442f1527c3fc64dedac +size 1172749 diff --git a/datasets/pinganmajia/train/images/订单1814311_4_7179413.jpg b/datasets/pinganmajia/train/images/订单1814311_4_7179413.jpg new file mode 100644 index 0000000..d4f762f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814311_4_7179413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63dd68b57d4644bce64cf0dca64336fd34a89c10f500ba363f961933478a151 +size 709603 diff --git a/datasets/pinganmajia/train/images/订单1814312_4_7179384.jpg b/datasets/pinganmajia/train/images/订单1814312_4_7179384.jpg new file mode 100644 index 0000000..66a873f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814312_4_7179384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78edc9883bb300adea2634ffd01caa69077aa26a0583c35b4bdfff1280b074c5 +size 140186 diff --git a/datasets/pinganmajia/train/images/订单1814313_4_7179383.jpg b/datasets/pinganmajia/train/images/订单1814313_4_7179383.jpg new file mode 100644 index 0000000..655998f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814313_4_7179383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7f9e3a1b07799965ec2af8bfb9ac5e478de092e9ef959444238d5aa0d1dac4 +size 152731 diff --git a/datasets/pinganmajia/train/images/订单1814315_4_7179454.jpg b/datasets/pinganmajia/train/images/订单1814315_4_7179454.jpg new file mode 100644 index 0000000..4ac1ae4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814315_4_7179454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a555b746d375c2cda17bce6ceb4c103093ae40b446a85caf8112c379e1b10c3d +size 70143 diff --git a/datasets/pinganmajia/train/images/订单1814316_4_7179441.jpg b/datasets/pinganmajia/train/images/订单1814316_4_7179441.jpg new file mode 100644 index 0000000..04348cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814316_4_7179441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea05ed484bfd6b5cf9f6d2842d2ec799321995ef32b8f365d7022350a0cd8c4 +size 85283 diff --git a/datasets/pinganmajia/train/images/订单1814318_4_7179475.jpg b/datasets/pinganmajia/train/images/订单1814318_4_7179475.jpg new file mode 100644 index 0000000..e882807 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814318_4_7179475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3711d97a92a067b89327ff137e42dc91b5b14e7fe326fd08eb30aa4bb08fb561 +size 110653 diff --git a/datasets/pinganmajia/train/images/订单1814320_4_7179645.jpg b/datasets/pinganmajia/train/images/订单1814320_4_7179645.jpg new file mode 100644 index 0000000..35ab227 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814320_4_7179645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5cd28a19be58b1999b6b79826eb66b0a0db6c7534fa7f2297869e5356ba35a +size 88105 diff --git a/datasets/pinganmajia/train/images/订单1814324_4_7179483.jpg b/datasets/pinganmajia/train/images/订单1814324_4_7179483.jpg new file mode 100644 index 0000000..cd3a840 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814324_4_7179483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49c9ea33b68a9543d85d44566db90dff48089e6b866d5c88eccb59272d329c6 +size 61668 diff --git a/datasets/pinganmajia/train/images/订单1814327_4_7179530.jpg b/datasets/pinganmajia/train/images/订单1814327_4_7179530.jpg new file mode 100644 index 0000000..8d4fdf4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814327_4_7179530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d875b09295024238b15793fb12fbd3f6410ec52b5bf0da3eb9fdf09b7688a9f4 +size 128940 diff --git a/datasets/pinganmajia/train/images/订单1814330_4_7179567.jpg b/datasets/pinganmajia/train/images/订单1814330_4_7179567.jpg new file mode 100644 index 0000000..bfcdd6d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814330_4_7179567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9188fa236b33552c2f0f8fac0fe2aeedf4687e78ae35fb1e022c2b7a505698e +size 81515 diff --git a/datasets/pinganmajia/train/images/订单1814333_4_7179603.jpg b/datasets/pinganmajia/train/images/订单1814333_4_7179603.jpg new file mode 100644 index 0000000..8c6060b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814333_4_7179603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:564b7a56a43f812fc774084e37c840e2ae261440049a76c87ed4fe9d5d600d00 +size 108560 diff --git a/datasets/pinganmajia/train/images/订单1814338_4_7179651.jpg b/datasets/pinganmajia/train/images/订单1814338_4_7179651.jpg new file mode 100644 index 0000000..e619e68 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814338_4_7179651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f9227d2e5116c2d6a641827512691588d425e0c53734a4ebacd1d9626e68e5 +size 155279 diff --git a/datasets/pinganmajia/train/images/订单1814341_4_7179656.jpg b/datasets/pinganmajia/train/images/订单1814341_4_7179656.jpg new file mode 100644 index 0000000..455ba06 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814341_4_7179656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1efe107af95442ee62be95cc250a4ca59ba8594ade3056860f4ece307a77da9 +size 167258 diff --git a/datasets/pinganmajia/train/images/订单1814342_4_7179698.jpg b/datasets/pinganmajia/train/images/订单1814342_4_7179698.jpg new file mode 100644 index 0000000..cf68b5f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814342_4_7179698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f695f4c669ca38c7daf452d82d2d258a51b388346c8970d6eb32ec52d7512a8f +size 490612 diff --git a/datasets/pinganmajia/train/images/订单1814346_4_7179757.jpg b/datasets/pinganmajia/train/images/订单1814346_4_7179757.jpg new file mode 100644 index 0000000..17cc590 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814346_4_7179757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636b5ac91e9942b14631d707b409a06071080c8b4f10bbd8f53f0fb6696a25b8 +size 256524 diff --git a/datasets/pinganmajia/train/images/订单1814347_4_7179734.jpg b/datasets/pinganmajia/train/images/订单1814347_4_7179734.jpg new file mode 100644 index 0000000..fbd0137 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814347_4_7179734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee5d686fec2f20d770b87da136da8770b4e90c8bf2be4e9b200b6ce0438584e +size 400327 diff --git a/datasets/pinganmajia/train/images/订单1814349_4_7179738.jpg b/datasets/pinganmajia/train/images/订单1814349_4_7179738.jpg new file mode 100644 index 0000000..56b7b34 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814349_4_7179738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f778cca126a41813d08a1a429056f4fa3f3cd2d8fd1fdf4e713848f1335bdb9 +size 463094 diff --git a/datasets/pinganmajia/train/images/订单1814351_4_7179804.jpg b/datasets/pinganmajia/train/images/订单1814351_4_7179804.jpg new file mode 100644 index 0000000..d17a492 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814351_4_7179804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0741906ad484f571a4e264b71d01a67556ad16dc8812ca05b7bb9869fa12b1 +size 715357 diff --git a/datasets/pinganmajia/train/images/订单1814352_4_7179799.jpg b/datasets/pinganmajia/train/images/订单1814352_4_7179799.jpg new file mode 100644 index 0000000..fc0ff8a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814352_4_7179799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6b7a38006972ef5c440758a84c2a5a1f58d6a17b91f4ab135c7e8bf017443e +size 85742 diff --git a/datasets/pinganmajia/train/images/订单1814354_4_7182078.jpg b/datasets/pinganmajia/train/images/订单1814354_4_7182078.jpg new file mode 100644 index 0000000..5e67201 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814354_4_7182078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255f619bc61d45ec67ceb1b4ed1934432c0c3d7bf52df0a167127c47207dae31 +size 79635 diff --git a/datasets/pinganmajia/train/images/订单1814357_4_7179850.jpg b/datasets/pinganmajia/train/images/订单1814357_4_7179850.jpg new file mode 100644 index 0000000..5aae926 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814357_4_7179850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53af8eab9d63119e87954fcffa231cc0c80a2763225adba25b1a2eef76bfe60 +size 154544 diff --git a/datasets/pinganmajia/train/images/订单1814358_4_7179837.jpg b/datasets/pinganmajia/train/images/订单1814358_4_7179837.jpg new file mode 100644 index 0000000..4f37856 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814358_4_7179837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f7bde6e7ad9ddf910c19b5c18ef80e059e5b9df65b84413a44d3ce91410b5c +size 91384 diff --git a/datasets/pinganmajia/train/images/订单1814359_4_7179864.jpg b/datasets/pinganmajia/train/images/订单1814359_4_7179864.jpg new file mode 100644 index 0000000..b9b3eba --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814359_4_7179864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc674798f806d0f54e2315ab1095552f9b9e96a203389eeb36863ef372fdf86 +size 131792 diff --git a/datasets/pinganmajia/train/images/订单1814360_4_7179845.jpg b/datasets/pinganmajia/train/images/订单1814360_4_7179845.jpg new file mode 100644 index 0000000..34d3d99 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814360_4_7179845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c702beffbce06a9eba833455a695b366b63812636f9d2ba9d8074bd092a92595 +size 92808 diff --git a/datasets/pinganmajia/train/images/订单1814365_4_7180178.jpg b/datasets/pinganmajia/train/images/订单1814365_4_7180178.jpg new file mode 100644 index 0000000..7135cae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814365_4_7180178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30de2ff4e65bc093a45b9da09c598bb92b54c2d227c451cfd4771f2f80ca1635 +size 64102 diff --git a/datasets/pinganmajia/train/images/订单1814367_4_7179899.jpg b/datasets/pinganmajia/train/images/订单1814367_4_7179899.jpg new file mode 100644 index 0000000..12a0db1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814367_4_7179899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d13cbff460ccf7b90c51c831919303e8142b4bb57458f5997b9f57025e23de9 +size 176918 diff --git a/datasets/pinganmajia/train/images/订单1814368_4_7179870.jpg b/datasets/pinganmajia/train/images/订单1814368_4_7179870.jpg new file mode 100644 index 0000000..1815c6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814368_4_7179870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ed5e1e52db9458988bda795171636cbeb708ad5ebc545ea3da6d72a2611b37 +size 261473 diff --git a/datasets/pinganmajia/train/images/订单1814369_4_7180123.jpg b/datasets/pinganmajia/train/images/订单1814369_4_7180123.jpg new file mode 100644 index 0000000..0a19f41 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814369_4_7180123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741c080cee4b0651ff66c527be49080fb7967321bd76bcf3eab18a1e88f92936 +size 979975 diff --git a/datasets/pinganmajia/train/images/订单1814370_4_7179919.jpg b/datasets/pinganmajia/train/images/订单1814370_4_7179919.jpg new file mode 100644 index 0000000..00e90cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814370_4_7179919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977b4299fef79d18d84a10c53108e4d5b32a114205b88c2fe09114dbec571c30 +size 133318 diff --git a/datasets/pinganmajia/train/images/订单1814371_4_7179907.jpg b/datasets/pinganmajia/train/images/订单1814371_4_7179907.jpg new file mode 100644 index 0000000..7d57e4e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814371_4_7179907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119f59d449f2fc7ffb51e5541cc21ef64d3965962f1ed642a4550b7f665917f3 +size 129097 diff --git a/datasets/pinganmajia/train/images/订单1814372_4_7179942.jpg b/datasets/pinganmajia/train/images/订单1814372_4_7179942.jpg new file mode 100644 index 0000000..543c996 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814372_4_7179942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4094ab789cc6acc1802a9b53884eae8abdc7bcf0a717c90f4e866d3951ddb1 +size 161954 diff --git a/datasets/pinganmajia/train/images/订单1814374_4_7179973.jpg b/datasets/pinganmajia/train/images/订单1814374_4_7179973.jpg new file mode 100644 index 0000000..214d19b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814374_4_7179973.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e82d6b6db3f3eeed05924b6775a62b05a7504417c4d91cbffd1fdc40b6e7e50 +size 305525 diff --git a/datasets/pinganmajia/train/images/订单1814376_4_7179987.jpg b/datasets/pinganmajia/train/images/订单1814376_4_7179987.jpg new file mode 100644 index 0000000..c85a054 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814376_4_7179987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8064d0bd0706b78ecffb61af9a62b06756e81b5c94635a372200b437caf6dcd5 +size 89879 diff --git a/datasets/pinganmajia/train/images/订单1814377_4_7179954.jpg b/datasets/pinganmajia/train/images/订单1814377_4_7179954.jpg new file mode 100644 index 0000000..b852782 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814377_4_7179954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bfa380e451f8abfd25cd4a0706324e4f32050cc02b0e3e771afa8110e670b6 +size 121566 diff --git a/datasets/pinganmajia/train/images/订单1814379_4_7180079.jpg b/datasets/pinganmajia/train/images/订单1814379_4_7180079.jpg new file mode 100644 index 0000000..3463c15 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814379_4_7180079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09348e012d25c4a9ad73e0af0c7356146525ed40e9fb666cef22d6ec566d07f3 +size 62532 diff --git a/datasets/pinganmajia/train/images/订单1814380_4_7180021.jpg b/datasets/pinganmajia/train/images/订单1814380_4_7180021.jpg new file mode 100644 index 0000000..fc41ae6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814380_4_7180021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766971c6345124a3040f53f139ff8f9933237fb42b4fad75ccc80de87bac91b4 +size 451419 diff --git a/datasets/pinganmajia/train/images/订单1814381_4_7180057.jpg b/datasets/pinganmajia/train/images/订单1814381_4_7180057.jpg new file mode 100644 index 0000000..7d7a2dc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814381_4_7180057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba1fb787a2fb4f87e843657a0bf3d632a27e32ab13eeded2483ee7d5cc01972 +size 286158 diff --git a/datasets/pinganmajia/train/images/订单1814382_4_7180147.jpg b/datasets/pinganmajia/train/images/订单1814382_4_7180147.jpg new file mode 100644 index 0000000..1ba6814 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814382_4_7180147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfada430d8b26b0c51dd2fba0761999d84310243e04c973282dcaac562e38ee0 +size 214020 diff --git a/datasets/pinganmajia/train/images/订单1814383_4_7179984.jpg b/datasets/pinganmajia/train/images/订单1814383_4_7179984.jpg new file mode 100644 index 0000000..a5d7791 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814383_4_7179984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2305783e0f4f6dd6faee731a02ddf8a818d3c523d1f9956c5b815475ea2252 +size 239995 diff --git a/datasets/pinganmajia/train/images/订单1814385_4_7179994.jpg b/datasets/pinganmajia/train/images/订单1814385_4_7179994.jpg new file mode 100644 index 0000000..d02cc30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814385_4_7179994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4629b27ccd0a73c2c8d832766a3a1d64b18a6f5a5cb7585c2b57712b88fbeb99 +size 68938 diff --git a/datasets/pinganmajia/train/images/订单1814388_4_7180001.jpg b/datasets/pinganmajia/train/images/订单1814388_4_7180001.jpg new file mode 100644 index 0000000..a623a45 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814388_4_7180001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa3d31bcc84e9163196afc4a5b097c431b26b42a5cfa2da2bd59c7ad4afdd49 +size 160238 diff --git a/datasets/pinganmajia/train/images/订单1814389_4_7180283.jpg b/datasets/pinganmajia/train/images/订单1814389_4_7180283.jpg new file mode 100644 index 0000000..2cf854c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814389_4_7180283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c40d3d1b1f6d7850950f294c5a4c3aedd939bd0d39234ae9787a08a4a90246 +size 425793 diff --git a/datasets/pinganmajia/train/images/订单1814390_4_7180118.jpg b/datasets/pinganmajia/train/images/订单1814390_4_7180118.jpg new file mode 100644 index 0000000..01288fe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814390_4_7180118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd33a4dc0f425c8fc5d3fb984ef66d96aaf6b274ae9f06c9d3e828b8504478b8 +size 233130 diff --git a/datasets/pinganmajia/train/images/订单1814391_4_7180030.jpg b/datasets/pinganmajia/train/images/订单1814391_4_7180030.jpg new file mode 100644 index 0000000..acbfe56 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814391_4_7180030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3e4edae4d7a0aa6ccb8d81dba51aba9176ceb1e933dfd4179cc295c7478802 +size 83546 diff --git a/datasets/pinganmajia/train/images/订单1814395_4_7180145.jpg b/datasets/pinganmajia/train/images/订单1814395_4_7180145.jpg new file mode 100644 index 0000000..39c7c68 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814395_4_7180145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3136b79880187cf865167f792a3f632b98bb65e5d93292e73c637f55dd561bbf +size 75488 diff --git a/datasets/pinganmajia/train/images/订单1814397_4_7180096.jpg b/datasets/pinganmajia/train/images/订单1814397_4_7180096.jpg new file mode 100644 index 0000000..472ac30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814397_4_7180096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f85d0927c89aae77397d87877789c24be1db12871d3c3e7bbadfea3d709c88 +size 287301 diff --git a/datasets/pinganmajia/train/images/订单1814398_4_7180149.jpg b/datasets/pinganmajia/train/images/订单1814398_4_7180149.jpg new file mode 100644 index 0000000..ce27457 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814398_4_7180149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629d2615b88ca5cb3111edde358493a8205c8713f9acb01964bbdeee80aa4742 +size 235821 diff --git a/datasets/pinganmajia/train/images/订单1814400_4_7180174.jpg b/datasets/pinganmajia/train/images/订单1814400_4_7180174.jpg new file mode 100644 index 0000000..bc749f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814400_4_7180174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c685cd9df047388f0133839b938015ce25855761fceafd98ebc9eff4c41cc55d +size 98077 diff --git a/datasets/pinganmajia/train/images/订单1814403_4_7180702.jpg b/datasets/pinganmajia/train/images/订单1814403_4_7180702.jpg new file mode 100644 index 0000000..f1bb1ae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814403_4_7180702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79febf29a4354546b31b5170042a5282dac0d662e70ba7a0305f20bf821def14 +size 74466 diff --git a/datasets/pinganmajia/train/images/订单1814404_4_7180196.jpg b/datasets/pinganmajia/train/images/订单1814404_4_7180196.jpg new file mode 100644 index 0000000..9ddb733 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814404_4_7180196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054a048f7c665ce142f2613d879bb57d6579db1b55714e9d99583e66e0a8fa35 +size 275309 diff --git a/datasets/pinganmajia/train/images/订单1814405_4_7180207.jpg b/datasets/pinganmajia/train/images/订单1814405_4_7180207.jpg new file mode 100644 index 0000000..338c0b7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814405_4_7180207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb98bbe6bd7669831597f4e58289c80e962af52688638c8f4c6fb892175cb85 +size 130506 diff --git a/datasets/pinganmajia/train/images/订单1814407_4_7180200.jpg b/datasets/pinganmajia/train/images/订单1814407_4_7180200.jpg new file mode 100644 index 0000000..b007e7c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814407_4_7180200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087a80502a0ea6a060cd86deaa2d22093ddbc86fe5c1e867142922e4ca11b91c +size 95427 diff --git a/datasets/pinganmajia/train/images/订单1814408_4_7180242.jpg b/datasets/pinganmajia/train/images/订单1814408_4_7180242.jpg new file mode 100644 index 0000000..4070eae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814408_4_7180242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c603c08e9c1a9ffe62cd839bd0c081a70a02db6645456e58e2f0362e1e2ad85 +size 164739 diff --git a/datasets/pinganmajia/train/images/订单1814409_4_7180229.jpg b/datasets/pinganmajia/train/images/订单1814409_4_7180229.jpg new file mode 100644 index 0000000..0716c21 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814409_4_7180229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f58d8f8f7a8dc609987e46dabe90136bad063e621775f3289d168042e38690e +size 161757 diff --git a/datasets/pinganmajia/train/images/订单1814410_4_7180222.jpg b/datasets/pinganmajia/train/images/订单1814410_4_7180222.jpg new file mode 100644 index 0000000..6e8d50e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814410_4_7180222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c82b975ce1fbb440d4b53feadf02a1bb457ab601c886cda2d22db9d1a55a17 +size 1039019 diff --git a/datasets/pinganmajia/train/images/订单1814411_4_7180218.jpg b/datasets/pinganmajia/train/images/订单1814411_4_7180218.jpg new file mode 100644 index 0000000..b9f3898 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814411_4_7180218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74df9515650420cd617267457e0aedb39c6c35dafd2e6fb97b379f7eacd98dcf +size 91683 diff --git a/datasets/pinganmajia/train/images/订单1814417_4_7180373.jpg b/datasets/pinganmajia/train/images/订单1814417_4_7180373.jpg new file mode 100644 index 0000000..ed7b37c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814417_4_7180373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64ce823914896789da45a79d101173694ad4473d9dba7288d6afeea29f563ab +size 112325 diff --git a/datasets/pinganmajia/train/images/订单1814419_4_7180287.jpg b/datasets/pinganmajia/train/images/订单1814419_4_7180287.jpg new file mode 100644 index 0000000..cf3c4d9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814419_4_7180287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38880fdf867d0a66dfe4957bc7b903782f17fc74a5e251e16b8461e26400839 +size 314431 diff --git a/datasets/pinganmajia/train/images/订单1814420_4_7180329.jpg b/datasets/pinganmajia/train/images/订单1814420_4_7180329.jpg new file mode 100644 index 0000000..06470e0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814420_4_7180329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4376714498a983945907bcc3eec15bf80d33a40710ae74b3c3138aa16de92baa +size 171005 diff --git a/datasets/pinganmajia/train/images/订单1814423_4_7180356.jpg b/datasets/pinganmajia/train/images/订单1814423_4_7180356.jpg new file mode 100644 index 0000000..3a01234 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814423_4_7180356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0eca064646885e30d1568747a7ca37a756cc0971a91f1309ff062006c01116f +size 95088 diff --git a/datasets/pinganmajia/train/images/订单1814424_4_7180433.jpg b/datasets/pinganmajia/train/images/订单1814424_4_7180433.jpg new file mode 100644 index 0000000..11e8c2a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814424_4_7180433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59d951c2f4ecceff13450b116811f6d9849f36afbb0e00bf26f43a1ea24c36f +size 713601 diff --git a/datasets/pinganmajia/train/images/订单1814427_4_7180336.jpg b/datasets/pinganmajia/train/images/订单1814427_4_7180336.jpg new file mode 100644 index 0000000..49471cb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814427_4_7180336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7782ed2e247927cf78c8434110b2fee0480ee1dd0fe4d3223f9381a1e93c6383 +size 97196 diff --git a/datasets/pinganmajia/train/images/订单1814428_4_7180645.jpg b/datasets/pinganmajia/train/images/订单1814428_4_7180645.jpg new file mode 100644 index 0000000..80884d5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814428_4_7180645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc5c3c60f00217d4d3c61311a7fecbeaa83d58ba7d0d272f9a466aef3605635 +size 179015 diff --git a/datasets/pinganmajia/train/images/订单1814433_4_7180456.jpg b/datasets/pinganmajia/train/images/订单1814433_4_7180456.jpg new file mode 100644 index 0000000..c544590 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814433_4_7180456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdc75cb95a8de4bc1d338ede553fa7c0d205909087dd755fcba6166c99ff1e7 +size 116156 diff --git a/datasets/pinganmajia/train/images/订单1814434_4_7180375.jpg b/datasets/pinganmajia/train/images/订单1814434_4_7180375.jpg new file mode 100644 index 0000000..ac2cb4f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814434_4_7180375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116228df590422b570aaf69ca556f6e5fd1b7d146391d5708da6c7189e8bd14b +size 72884 diff --git a/datasets/pinganmajia/train/images/订单1814435_4_7180457.jpg b/datasets/pinganmajia/train/images/订单1814435_4_7180457.jpg new file mode 100644 index 0000000..cee080d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814435_4_7180457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fa91fb55392225bb3192b346360a66f74770987ad4ec231f506c489f0f7a5a +size 154207 diff --git a/datasets/pinganmajia/train/images/订单1814438_4_7180517.jpg b/datasets/pinganmajia/train/images/订单1814438_4_7180517.jpg new file mode 100644 index 0000000..3933694 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814438_4_7180517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3b43aafafa2d96dd83ff85217d00a543c03d5f39b9a46d13a78e8e1fa1cd5a +size 153978 diff --git a/datasets/pinganmajia/train/images/订单1814439_4_7180441.jpg b/datasets/pinganmajia/train/images/订单1814439_4_7180441.jpg new file mode 100644 index 0000000..652f06c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814439_4_7180441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3606a4c6a44d35bdf016af26baafeeaa8e6ab064985030215ebb12ecffef9623 +size 715514 diff --git a/datasets/pinganmajia/train/images/订单1814440_4_7180510.jpg b/datasets/pinganmajia/train/images/订单1814440_4_7180510.jpg new file mode 100644 index 0000000..c95c220 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814440_4_7180510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8931d1bbf9551d484bd9c0986be176914e9a47541b9e26f6bc8f1abf302ab7a +size 137662 diff --git a/datasets/pinganmajia/train/images/订单1814443_4_7180892.jpg b/datasets/pinganmajia/train/images/订单1814443_4_7180892.jpg new file mode 100644 index 0000000..4666e82 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814443_4_7180892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a164c76c4b90be4278453cdbd24800beeefabce1afadaed3ac34029486a523f +size 818224 diff --git a/datasets/pinganmajia/train/images/订单1814444_4_7180583.jpg b/datasets/pinganmajia/train/images/订单1814444_4_7180583.jpg new file mode 100644 index 0000000..1b22cad --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814444_4_7180583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c21f85ab0ae9c5c89e10be44e0783e7957fbf02eedcc3a9b62fd009dbc71f0 +size 165876 diff --git a/datasets/pinganmajia/train/images/订单1814445_4_7180502.jpg b/datasets/pinganmajia/train/images/订单1814445_4_7180502.jpg new file mode 100644 index 0000000..603405b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814445_4_7180502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f611cb948430dcc30000166458a84708e8db95ad93fdb4121f643bef13378f88 +size 180035 diff --git a/datasets/pinganmajia/train/images/订单1814446_4_7180555.jpg b/datasets/pinganmajia/train/images/订单1814446_4_7180555.jpg new file mode 100644 index 0000000..582df53 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814446_4_7180555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0634b65e7dd5685db04948ff1b7c7ae2b9b5d7cde91f07ef2efbba2188e30649 +size 94988 diff --git a/datasets/pinganmajia/train/images/订单1814448_4_7180538.jpg b/datasets/pinganmajia/train/images/订单1814448_4_7180538.jpg new file mode 100644 index 0000000..68f7141 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814448_4_7180538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d40f9109a8c05eff49877589737d32636301a9f6e5a5a510e6ce7d6331681ef +size 167727 diff --git a/datasets/pinganmajia/train/images/订单1814451_4_7180640.jpg b/datasets/pinganmajia/train/images/订单1814451_4_7180640.jpg new file mode 100644 index 0000000..8e85681 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814451_4_7180640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362bab8d3105848ac932aaafe27870e632534f6f19a501154118af1239b77f37 +size 653290 diff --git a/datasets/pinganmajia/train/images/订单1814452_4_7180602.jpg b/datasets/pinganmajia/train/images/订单1814452_4_7180602.jpg new file mode 100644 index 0000000..12389c3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814452_4_7180602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07eb8c5a1e1125b13916fe08b0670afe27a5c3ad2efec7b4f443b80e7b066ec +size 160742 diff --git a/datasets/pinganmajia/train/images/订单1814453_4_7180594.jpg b/datasets/pinganmajia/train/images/订单1814453_4_7180594.jpg new file mode 100644 index 0000000..ff63ce1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814453_4_7180594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f03e036d0fdfecdf038bb03941a2d6a9b1ea7f7e018e3d45af16bde38a0efa +size 87470 diff --git a/datasets/pinganmajia/train/images/订单1814456_4_7180612.jpg b/datasets/pinganmajia/train/images/订单1814456_4_7180612.jpg new file mode 100644 index 0000000..48ce8fc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814456_4_7180612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a88cf16d366346671070b429e892b5e36fe4326d4b13461764c1b0f9cff37e04 +size 67667 diff --git a/datasets/pinganmajia/train/images/订单1814457_4_7180582.jpg b/datasets/pinganmajia/train/images/订单1814457_4_7180582.jpg new file mode 100644 index 0000000..597624d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814457_4_7180582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78a95a6c906c4a4c81555718944c05c3af786a6daa63d7a303f339c35c456c9 +size 73304 diff --git a/datasets/pinganmajia/train/images/订单1814458_4_7180656.jpg b/datasets/pinganmajia/train/images/订单1814458_4_7180656.jpg new file mode 100644 index 0000000..492e9fc --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814458_4_7180656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00e15dfbbcbe3a25f369df32cb3236dd8fcb275fc295a593552f0f17de5ab78 +size 83135 diff --git a/datasets/pinganmajia/train/images/订单1814459_4_7180679.jpg b/datasets/pinganmajia/train/images/订单1814459_4_7180679.jpg new file mode 100644 index 0000000..078bcf3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814459_4_7180679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41453845585c8de8c823df02bce40064de85ffb32477e02841fec55b84eaf28f +size 465758 diff --git a/datasets/pinganmajia/train/images/订单1814460_4_7180650.jpg b/datasets/pinganmajia/train/images/订单1814460_4_7180650.jpg new file mode 100644 index 0000000..32ab47d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814460_4_7180650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3faf3eb08b729f9c67f7c4728945c39ee154220e9ed572b4009e50f6cafe694a +size 143425 diff --git a/datasets/pinganmajia/train/images/订单1814461_4_7180696.jpg b/datasets/pinganmajia/train/images/订单1814461_4_7180696.jpg new file mode 100644 index 0000000..a2d35c8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814461_4_7180696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d151e21104fbadbc176c6520bcbb801a8fdc5e1a881f5bdc8874343458666e0 +size 72420 diff --git a/datasets/pinganmajia/train/images/订单1814462_4_7180753.jpg b/datasets/pinganmajia/train/images/订单1814462_4_7180753.jpg new file mode 100644 index 0000000..4d82234 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814462_4_7180753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03a99555dbfea2be41f9c9a9a04b133e14c9056d5dbfb764813d410e45163cc1 +size 254439 diff --git a/datasets/pinganmajia/train/images/订单1814463_4_7180692.jpg b/datasets/pinganmajia/train/images/订单1814463_4_7180692.jpg new file mode 100644 index 0000000..fda442c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814463_4_7180692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c0811924c098f521e4dd3d9be6941250420530ab7cb2068bcb93794b8bb169 +size 77614 diff --git a/datasets/pinganmajia/train/images/订单1814464_4_7180772.jpg b/datasets/pinganmajia/train/images/订单1814464_4_7180772.jpg new file mode 100644 index 0000000..d50653a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814464_4_7180772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a73f0d1030ff705db477e84fbf6fcf24523481754bacf3374bab6e193cfc504 +size 553093 diff --git a/datasets/pinganmajia/train/images/订单1814465_4_7180794.jpg b/datasets/pinganmajia/train/images/订单1814465_4_7180794.jpg new file mode 100644 index 0000000..cb35066 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814465_4_7180794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ab67797c05d98eabf572787da65dabc585d0e4a1cd3f91c6088b07f4b09450 +size 150311 diff --git a/datasets/pinganmajia/train/images/订单1814466_4_7181143.jpg b/datasets/pinganmajia/train/images/订单1814466_4_7181143.jpg new file mode 100644 index 0000000..bd6d180 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814466_4_7181143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3942096eaebf637be039f4061a3b3e4edbafdd0e5f23a6cbca1f42ec2f9c09 +size 106715 diff --git a/datasets/pinganmajia/train/images/订单1814469_4_7180811.jpg b/datasets/pinganmajia/train/images/订单1814469_4_7180811.jpg new file mode 100644 index 0000000..89b55ff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814469_4_7180811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38dcc11f5d1b652816a5271ddb137f0040ca00a0799b84c684d9dc035df65197 +size 414531 diff --git a/datasets/pinganmajia/train/images/订单1814472_4_7181197.jpg b/datasets/pinganmajia/train/images/订单1814472_4_7181197.jpg new file mode 100644 index 0000000..5bcf08e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814472_4_7181197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e324aa35dddb9d8c8924ebef6dd5ef340f65a09d5b2fe2e5e00f12ddf55fb3e7 +size 201258 diff --git a/datasets/pinganmajia/train/images/订单1814475_4_7180993.jpg b/datasets/pinganmajia/train/images/订单1814475_4_7180993.jpg new file mode 100644 index 0000000..c68febe --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814475_4_7180993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04278d089e4d1c6d2a04aec08e89e7ce56b8d97a253fb41a27aca2bbc82e3301 +size 357329 diff --git a/datasets/pinganmajia/train/images/订单1814476_4_7180822.jpg b/datasets/pinganmajia/train/images/订单1814476_4_7180822.jpg new file mode 100644 index 0000000..5826f7c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814476_4_7180822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c70153abee97976b537a495b5e0bf730a3ecab2ea101d776c48e751600a2c34 +size 420584 diff --git a/datasets/pinganmajia/train/images/订单1814477_4_7181022.jpg b/datasets/pinganmajia/train/images/订单1814477_4_7181022.jpg new file mode 100644 index 0000000..0577fb2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814477_4_7181022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75210146ba59e762b2f7334de585d45b1dc14409d68c3721c6660c0cb963d045 +size 144869 diff --git a/datasets/pinganmajia/train/images/订单1814478_4_7180827.jpg b/datasets/pinganmajia/train/images/订单1814478_4_7180827.jpg new file mode 100644 index 0000000..c4369bd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814478_4_7180827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72755658f4189c1f6d9f978b5778427e3ef41607b26927e229595453e50316c +size 241449 diff --git a/datasets/pinganmajia/train/images/订单1814480_4_7180934.jpg b/datasets/pinganmajia/train/images/订单1814480_4_7180934.jpg new file mode 100644 index 0000000..b829c34 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814480_4_7180934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9553fd43d31b6e6ce228e257627f6fc3a166ce4b32bdb7dc24b35fd843947b +size 396065 diff --git a/datasets/pinganmajia/train/images/订单1814481_4_7180883.jpg b/datasets/pinganmajia/train/images/订单1814481_4_7180883.jpg new file mode 100644 index 0000000..46b94df --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814481_4_7180883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799ea8916bd6cce53417a7b839d06927efb5ed390992f54eeaae34e6e19a4cb3 +size 73466 diff --git a/datasets/pinganmajia/train/images/订单1814482_4_7181050.jpg b/datasets/pinganmajia/train/images/订单1814482_4_7181050.jpg new file mode 100644 index 0000000..3608f41 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814482_4_7181050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473a8d7ee4b443689a0527bc36827275995df2866ab9386d85c3bb2b1a44b8d7 +size 127180 diff --git a/datasets/pinganmajia/train/images/订单1814484_4_7180882.jpg b/datasets/pinganmajia/train/images/订单1814484_4_7180882.jpg new file mode 100644 index 0000000..216765f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814484_4_7180882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc4a09aee4b04e57603a7ad33ca7d0d47610c797d0e44146fbe9bb675afc79d +size 90625 diff --git a/datasets/pinganmajia/train/images/订单1814485_4_7180944.jpg b/datasets/pinganmajia/train/images/订单1814485_4_7180944.jpg new file mode 100644 index 0000000..4c83757 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814485_4_7180944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e99ceaf1cb4098baed3b5aa4f30378db78e272cb8553cfc4608cbac7845536e +size 151481 diff --git a/datasets/pinganmajia/train/images/订单1814486_4_7180912.jpg b/datasets/pinganmajia/train/images/订单1814486_4_7180912.jpg new file mode 100644 index 0000000..00b9245 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814486_4_7180912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cb98511bf10537689a4e8f8999bbaa09d8507e5907809c2eff18b2fc25515d +size 286447 diff --git a/datasets/pinganmajia/train/images/订单1814488_4_7180907.jpg b/datasets/pinganmajia/train/images/订单1814488_4_7180907.jpg new file mode 100644 index 0000000..7e13a8a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814488_4_7180907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6ff4e16e7cb25d439b59c3da055e3da0f04a8381d7665ec0d552c2b8e1f9ee +size 230359 diff --git a/datasets/pinganmajia/train/images/订单1814490_4_7180953.jpg b/datasets/pinganmajia/train/images/订单1814490_4_7180953.jpg new file mode 100644 index 0000000..138c1fb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814490_4_7180953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048695d50d19b35d741eca91a48c31ed94739f14346c589534c33e040324cbc9 +size 73214 diff --git a/datasets/pinganmajia/train/images/订单1814491_4_7181010.jpg b/datasets/pinganmajia/train/images/订单1814491_4_7181010.jpg new file mode 100644 index 0000000..d66c7bd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814491_4_7181010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f5b5a2a6595355353e949713d310ef6dc9322f0bbdb611c1878741854d32c8 +size 140126 diff --git a/datasets/pinganmajia/train/images/订单1814493_4_7181123.jpg b/datasets/pinganmajia/train/images/订单1814493_4_7181123.jpg new file mode 100644 index 0000000..873ce8a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814493_4_7181123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062cfd86516875e8acd869801fe1cebaf0f2e89f5b1759ac9499938cd5ec3eb3 +size 165664 diff --git a/datasets/pinganmajia/train/images/订单1814498_4_7180981.jpg b/datasets/pinganmajia/train/images/订单1814498_4_7180981.jpg new file mode 100644 index 0000000..7d663c1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814498_4_7180981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f5a90884143671c52a7d23ea902c229db7c85f329ad7b9b3c138c4b9fbd4bd +size 110853 diff --git a/datasets/pinganmajia/train/images/订单1814499_4_7181124.jpg b/datasets/pinganmajia/train/images/订单1814499_4_7181124.jpg new file mode 100644 index 0000000..b8437b7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814499_4_7181124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24c43a80c37bf7ac9351357657aba4e664dbeea973c24e6fe2db2c40c921ed2 +size 471365 diff --git a/datasets/pinganmajia/train/images/订单1814500_4_7181041.jpg b/datasets/pinganmajia/train/images/订单1814500_4_7181041.jpg new file mode 100644 index 0000000..253422c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814500_4_7181041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9cd6f50318a214c780259a99fb9f5d724e3c2beb3b25e69c226869a1414144 +size 164878 diff --git a/datasets/pinganmajia/train/images/订单1814502_4_7181253.jpg b/datasets/pinganmajia/train/images/订单1814502_4_7181253.jpg new file mode 100644 index 0000000..647977f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814502_4_7181253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e547791b6032e6b1ae3e3b9df7f581d800244c522c918fb04661d89ee6102ef8 +size 1888108 diff --git a/datasets/pinganmajia/train/images/订单1814503_4_7181077.jpg b/datasets/pinganmajia/train/images/订单1814503_4_7181077.jpg new file mode 100644 index 0000000..4a808f9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814503_4_7181077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87759b8f2863e009b4513a179e15b94f885176b7ddf2075ca8c05eae5f6f599e +size 604764 diff --git a/datasets/pinganmajia/train/images/订单1814507_4_7181059.jpg b/datasets/pinganmajia/train/images/订单1814507_4_7181059.jpg new file mode 100644 index 0000000..374c930 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814507_4_7181059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4546267c2f08f9cfb178211048501c34a41aaaa26053dbdd0816ddf525192a60 +size 121897 diff --git a/datasets/pinganmajia/train/images/订单1814508_4_7181030.jpg b/datasets/pinganmajia/train/images/订单1814508_4_7181030.jpg new file mode 100644 index 0000000..840523d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814508_4_7181030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92c497f8dee6f7cd0a3f121f38a9a0a3fb4fa0a4ab145cf9b7e4ed8abb6b2e9 +size 151036 diff --git a/datasets/pinganmajia/train/images/订单1814510_4_7181556.jpg b/datasets/pinganmajia/train/images/订单1814510_4_7181556.jpg new file mode 100644 index 0000000..9a43398 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814510_4_7181556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac0f6b732df2a5603f3a7389965e1e26df901217255324ea86a11dcfcbca535 +size 107195 diff --git a/datasets/pinganmajia/train/images/订单1814512_4_7181287.jpg b/datasets/pinganmajia/train/images/订单1814512_4_7181287.jpg new file mode 100644 index 0000000..4c4601f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814512_4_7181287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28add333bf37d016ef106451d310378e1fa3cfa0c8492935aa21922c508975e9 +size 73831 diff --git a/datasets/pinganmajia/train/images/订单1814513_4_7181120.jpg b/datasets/pinganmajia/train/images/订单1814513_4_7181120.jpg new file mode 100644 index 0000000..aecb92b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814513_4_7181120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc490691efd3956f3eb759e412dc7136bd24cfcd403e1309b7fa92d62b81ddf +size 456063 diff --git a/datasets/pinganmajia/train/images/订单1814516_4_7181362.jpg b/datasets/pinganmajia/train/images/订单1814516_4_7181362.jpg new file mode 100644 index 0000000..6315fb5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814516_4_7181362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db599cea136996401d4ee706b91984c5d4d21da678bea6048afb6181fe4520e +size 135637 diff --git a/datasets/pinganmajia/train/images/订单1814519_4_7181106.jpg b/datasets/pinganmajia/train/images/订单1814519_4_7181106.jpg new file mode 100644 index 0000000..8da80f2 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814519_4_7181106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2458f3019ef5fff5a7fb4e8ca3e8fd1ff84daa6e77f0a36b6dbd61180b86aaf3 +size 462361 diff --git a/datasets/pinganmajia/train/images/订单1814521_4_7181237.jpg b/datasets/pinganmajia/train/images/订单1814521_4_7181237.jpg new file mode 100644 index 0000000..000b981 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814521_4_7181237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5173deca2af571958a6cf95b9ed25a06ffdbae7626116c88d739eff71b360e46 +size 276315 diff --git a/datasets/pinganmajia/train/images/订单1814522_4_7181306.jpg b/datasets/pinganmajia/train/images/订单1814522_4_7181306.jpg new file mode 100644 index 0000000..3a5973c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814522_4_7181306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bedcee2e39e2c344a055c48d11353fb1dcb14599c361186cb5573315787dbe4 +size 102491 diff --git a/datasets/pinganmajia/train/images/订单1814523_4_7181224.jpg b/datasets/pinganmajia/train/images/订单1814523_4_7181224.jpg new file mode 100644 index 0000000..b519cbd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814523_4_7181224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce09b5029dce9e035875a93b929aab37fb8d2ce764dd1f0546df32383a1c7dba +size 600239 diff --git a/datasets/pinganmajia/train/images/订单1814524_4_7181292.jpg b/datasets/pinganmajia/train/images/订单1814524_4_7181292.jpg new file mode 100644 index 0000000..3e9c595 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814524_4_7181292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3317288febcb91003b812aa454cedf8fba5d9e8ac3bba0184b4300284a8c3bb6 +size 309375 diff --git a/datasets/pinganmajia/train/images/订单1814525_4_7181524.jpg b/datasets/pinganmajia/train/images/订单1814525_4_7181524.jpg new file mode 100644 index 0000000..cdc5347 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814525_4_7181524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6b274a0af81fff3a889f9c0a568165534eda33064d8adfa4ce44f382dd7eeb +size 155734 diff --git a/datasets/pinganmajia/train/images/订单1814527_4_7181276.jpg b/datasets/pinganmajia/train/images/订单1814527_4_7181276.jpg new file mode 100644 index 0000000..dd4313f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814527_4_7181276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7780f70f46d3699f24e15641191b67b0361c948d2223f04880bfbc23b554f67c +size 184414 diff --git a/datasets/pinganmajia/train/images/订单1814528_4_7181348.jpg b/datasets/pinganmajia/train/images/订单1814528_4_7181348.jpg new file mode 100644 index 0000000..cec937c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814528_4_7181348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa0b41d17026abd9f56211935286483d206fdc5b353cab1fb5778e36249da40 +size 75480 diff --git a/datasets/pinganmajia/train/images/订单1814529_4_7181352.jpg b/datasets/pinganmajia/train/images/订单1814529_4_7181352.jpg new file mode 100644 index 0000000..dad5bb5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814529_4_7181352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e945e988710e10ce50c7d3bf100e2c06fbbeb0bb06f84b72edc07e92134dd36 +size 187217 diff --git a/datasets/pinganmajia/train/images/订单1814530_4_7181332.jpg b/datasets/pinganmajia/train/images/订单1814530_4_7181332.jpg new file mode 100644 index 0000000..0b1c03b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814530_4_7181332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a910398960e1525c0fffb3ac3423aa09cb67ea92671bc5fee9a967d1b9d92567 +size 135510 diff --git a/datasets/pinganmajia/train/images/订单1814532_4_7181391.jpg b/datasets/pinganmajia/train/images/订单1814532_4_7181391.jpg new file mode 100644 index 0000000..fddeb15 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814532_4_7181391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f90476ebf48bcced04b528eecaa2d92247e1a4cc9ed7913b20ee6544d1f3a9 +size 607602 diff --git a/datasets/pinganmajia/train/images/订单1814534_4_7181470.jpg b/datasets/pinganmajia/train/images/订单1814534_4_7181470.jpg new file mode 100644 index 0000000..ffb1413 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814534_4_7181470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f85be86b83611564059cfe7c20ba5ee852b1420e0e87984ff089f94ef556072 +size 240514 diff --git a/datasets/pinganmajia/train/images/订单1814535_4_7181319.jpg b/datasets/pinganmajia/train/images/订单1814535_4_7181319.jpg new file mode 100644 index 0000000..efb196e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814535_4_7181319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d858732ccde1c8eefba9d23c638c3a429bd08688e5738446ea2b825c38161303 +size 101665 diff --git a/datasets/pinganmajia/train/images/订单1814537_4_7181412.jpg b/datasets/pinganmajia/train/images/订单1814537_4_7181412.jpg new file mode 100644 index 0000000..d0af0a5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814537_4_7181412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c761a19003078e2cebaf9323fac8dde45f53ad942bb9c548da08db26f3df2bf0 +size 237775 diff --git a/datasets/pinganmajia/train/images/订单1814538_4_7181453.jpg b/datasets/pinganmajia/train/images/订单1814538_4_7181453.jpg new file mode 100644 index 0000000..efa8f48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814538_4_7181453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddde3f60749880f586843b645602e82271dd6ba0f30c13a4effca7a33853943 +size 510649 diff --git a/datasets/pinganmajia/train/images/订单1814539_4_7181517.jpg b/datasets/pinganmajia/train/images/订单1814539_4_7181517.jpg new file mode 100644 index 0000000..a8bda2b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814539_4_7181517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1fab8a64fed1b1a440b5f778bbfe098780d8e2a6aefeb6648516b50aeb294b +size 179994 diff --git a/datasets/pinganmajia/train/images/订单1814540_4_7181465.jpg b/datasets/pinganmajia/train/images/订单1814540_4_7181465.jpg new file mode 100644 index 0000000..376b4bd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814540_4_7181465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d775b1f9bccd2b35c2776cb96e30947a94c31b8641ab8db4bb58c56cd99a430 +size 435640 diff --git a/datasets/pinganmajia/train/images/订单1814543_4_7181421.jpg b/datasets/pinganmajia/train/images/订单1814543_4_7181421.jpg new file mode 100644 index 0000000..46976dd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814543_4_7181421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005ef68135e928fd021a28230a3c15ebf475cc6b7c728d28fe49567f0f35cc0c +size 270677 diff --git a/datasets/pinganmajia/train/images/订单1814544_4_7181431.jpg b/datasets/pinganmajia/train/images/订单1814544_4_7181431.jpg new file mode 100644 index 0000000..ae3f80b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814544_4_7181431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1abda0e833a47cf6e00cc1fe0d7a4726a575f7609061e8487d362e3e1c8503 +size 130475 diff --git a/datasets/pinganmajia/train/images/订单1814545_4_7181446.jpg b/datasets/pinganmajia/train/images/订单1814545_4_7181446.jpg new file mode 100644 index 0000000..f8cee61 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814545_4_7181446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa27692d41a90e59b4a4769fa8af3369c67a4216640c56629f21c43c23286e6 +size 84827 diff --git a/datasets/pinganmajia/train/images/订单1814546_4_7181450.jpg b/datasets/pinganmajia/train/images/订单1814546_4_7181450.jpg new file mode 100644 index 0000000..c5b14af --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814546_4_7181450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021f933b8a19efd379ff104f67375cbdb25c1b5a4b4caba1fe06c906d14d97da +size 381149 diff --git a/datasets/pinganmajia/train/images/订单1814550_4_7181537.jpg b/datasets/pinganmajia/train/images/订单1814550_4_7181537.jpg new file mode 100644 index 0000000..2c4a1d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814550_4_7181537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e104aae2d7838d34a85d75df6690de5a4ae8ba15534b3b53d0fb9e80e0f1b2fc +size 528030 diff --git a/datasets/pinganmajia/train/images/订单1814553_4_7181619.jpg b/datasets/pinganmajia/train/images/订单1814553_4_7181619.jpg new file mode 100644 index 0000000..fd282b5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814553_4_7181619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4020e291ffaf629c138b1e253eb7623defb159059e70bbc0a259eaf305ef2f0 +size 85109 diff --git a/datasets/pinganmajia/train/images/订单1814554_4_7181591.jpg b/datasets/pinganmajia/train/images/订单1814554_4_7181591.jpg new file mode 100644 index 0000000..af15df8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814554_4_7181591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f43a56c756ff274b14b0fd16278eb162af45ac0de2d0facaf1e5625662e142 +size 80249 diff --git a/datasets/pinganmajia/train/images/订单1814556_4_7181570.jpg b/datasets/pinganmajia/train/images/订单1814556_4_7181570.jpg new file mode 100644 index 0000000..8878139 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814556_4_7181570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11e09c6c179114f22cd153326a8d3a8f78d9aaf2b7dc081e5e0d4c5082a069c +size 112005 diff --git a/datasets/pinganmajia/train/images/订单1814557_4_7181563.jpg b/datasets/pinganmajia/train/images/订单1814557_4_7181563.jpg new file mode 100644 index 0000000..0fe0f40 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814557_4_7181563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285e0f74d7271ee3029505a376986c91c514751851845b168a41a59f16712880 +size 188526 diff --git a/datasets/pinganmajia/train/images/订单1814558_4_7181663.jpg b/datasets/pinganmajia/train/images/订单1814558_4_7181663.jpg new file mode 100644 index 0000000..d7b9c0e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814558_4_7181663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d423d1c7e1c096c40c98c23efff1a5b6c8b1c8c1a9ae21ad246b524e7fd37a33 +size 188122 diff --git a/datasets/pinganmajia/train/images/订单1814562_4_7181906.jpg b/datasets/pinganmajia/train/images/订单1814562_4_7181906.jpg new file mode 100644 index 0000000..3a10054 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814562_4_7181906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aff8a3ffe478f5727f40592e1c257aaa800c0387d0cec39bd837374daae712a +size 163948 diff --git a/datasets/pinganmajia/train/images/订单1814563_4_7181678.jpg b/datasets/pinganmajia/train/images/订单1814563_4_7181678.jpg new file mode 100644 index 0000000..81c331c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814563_4_7181678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1231e010d9c097c4e21147d52b3b08698ec547ccad504b9981b6ca37573eb2 +size 76667 diff --git a/datasets/pinganmajia/train/images/订单1814565_4_7181686.jpg b/datasets/pinganmajia/train/images/订单1814565_4_7181686.jpg new file mode 100644 index 0000000..6b9b253 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814565_4_7181686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2ed2e8011e36f29433da70e5d7eedf2050f25e327be9f440f25e0b32a04358 +size 224886 diff --git a/datasets/pinganmajia/train/images/订单1814566_4_7181722.jpg b/datasets/pinganmajia/train/images/订单1814566_4_7181722.jpg new file mode 100644 index 0000000..e4a31f5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814566_4_7181722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98a536e5adec8b9609d3552a37e1daca3d6d8cc74e1be34e14044edc0197558 +size 239410 diff --git a/datasets/pinganmajia/train/images/订单1814568_4_7181694.jpg b/datasets/pinganmajia/train/images/订单1814568_4_7181694.jpg new file mode 100644 index 0000000..f253a3e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814568_4_7181694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c9e2f4f72fd5420ccca640317b3124d02b48863c5461bdf0a686e38c26828d +size 205380 diff --git a/datasets/pinganmajia/train/images/订单1814569_4_7181730.jpg b/datasets/pinganmajia/train/images/订单1814569_4_7181730.jpg new file mode 100644 index 0000000..794f50c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814569_4_7181730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d663abdc0ea47a942152c6d70e7c5d476dcd8e8ef6edcb5ad93a635f6d163085 +size 108050 diff --git a/datasets/pinganmajia/train/images/订单1814570_4_7181742.jpg b/datasets/pinganmajia/train/images/订单1814570_4_7181742.jpg new file mode 100644 index 0000000..2c365da --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814570_4_7181742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e7a97741dca0e79ef671b802afc62b860a290fc403e9e4af9858b765861362 +size 324756 diff --git a/datasets/pinganmajia/train/images/订单1814571_4_7181807.jpg b/datasets/pinganmajia/train/images/订单1814571_4_7181807.jpg new file mode 100644 index 0000000..6137993 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814571_4_7181807.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f368edf175161b3972bc2e446743490544830e3fa54b766529f9d2cdd74bda0 +size 86688 diff --git a/datasets/pinganmajia/train/images/订单1814572_4_7182055.jpg b/datasets/pinganmajia/train/images/订单1814572_4_7182055.jpg new file mode 100644 index 0000000..1e9bb5b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814572_4_7182055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c721ee613af1eada77a6f512527aaaad4166ed7644eab9647cb7b7915837033 +size 233055 diff --git a/datasets/pinganmajia/train/images/订单1814577_4_7181850.jpg b/datasets/pinganmajia/train/images/订单1814577_4_7181850.jpg new file mode 100644 index 0000000..a1ffc89 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814577_4_7181850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2853de5dd33891d78c71ac23e847ddb106473682da28897936ffe35469a5ea62 +size 402833 diff --git a/datasets/pinganmajia/train/images/订单1814581_4_7181930.jpg b/datasets/pinganmajia/train/images/订单1814581_4_7181930.jpg new file mode 100644 index 0000000..2e2aa14 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814581_4_7181930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78e5864aba7d1e611bfdadcb45abc598b60e39f449d654c0b099744b1d4c6b4 +size 152425 diff --git a/datasets/pinganmajia/train/images/订单1814582_4_7181827.jpg b/datasets/pinganmajia/train/images/订单1814582_4_7181827.jpg new file mode 100644 index 0000000..228462f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814582_4_7181827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9914fdb3206abb9446d438ee1fe6de3e120170dbfcbaaec324ee6f9a3c7b8676 +size 258545 diff --git a/datasets/pinganmajia/train/images/订单1814583_4_7182334.jpg b/datasets/pinganmajia/train/images/订单1814583_4_7182334.jpg new file mode 100644 index 0000000..e60642e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814583_4_7182334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705bbef99e1dde5a8ff6b97c7fd7b7826b8f2bb42ea7f61e8e6c5f4d4c673b26 +size 73010 diff --git a/datasets/pinganmajia/train/images/订单1814584_4_7181841.jpg b/datasets/pinganmajia/train/images/订单1814584_4_7181841.jpg new file mode 100644 index 0000000..7105f48 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814584_4_7181841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66768a266a46be3f60131b8aec94cb7f0bfb5fb7d27efdc75305bd16f63a7083 +size 74796 diff --git a/datasets/pinganmajia/train/images/订单1814585_4_7181915.jpg b/datasets/pinganmajia/train/images/订单1814585_4_7181915.jpg new file mode 100644 index 0000000..e3bc53f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814585_4_7181915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1622bcda65359f83a9bce66a04f5063df5558aeb1eb56b8f1da6ac975c0565a +size 131938 diff --git a/datasets/pinganmajia/train/images/订单1814587_4_7181876.jpg b/datasets/pinganmajia/train/images/订单1814587_4_7181876.jpg new file mode 100644 index 0000000..600cf08 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814587_4_7181876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc372d8c461bdd53aead12d48b0b3e9a26d415a679c0c91f98b371cff83e256a +size 76631 diff --git a/datasets/pinganmajia/train/images/订单1814588_4_7181961.jpg b/datasets/pinganmajia/train/images/订单1814588_4_7181961.jpg new file mode 100644 index 0000000..67f9fa8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814588_4_7181961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604c14fd18291fc98cd26d112bbe004256372fb7dd4edbacd0992cff9e6ecf84 +size 177806 diff --git a/datasets/pinganmajia/train/images/订单1814589_4_7181977.jpg b/datasets/pinganmajia/train/images/订单1814589_4_7181977.jpg new file mode 100644 index 0000000..fd0419d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814589_4_7181977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f996e2ff3848363a994509a6097168f4df743c19d21dd9466fcae6514b5ef6 +size 189711 diff --git a/datasets/pinganmajia/train/images/订单1814590_4_7181927.jpg b/datasets/pinganmajia/train/images/订单1814590_4_7181927.jpg new file mode 100644 index 0000000..ceff28b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814590_4_7181927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913c60f34c9fead22cc765474d3dc674024c1c3bf8bb9ebbd8ca983a7bbace50 +size 181315 diff --git a/datasets/pinganmajia/train/images/订单1814591_4_7182054.jpg b/datasets/pinganmajia/train/images/订单1814591_4_7182054.jpg new file mode 100644 index 0000000..f64ca9c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814591_4_7182054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64350d9109819cd254d8df0dec61946b3be9421c84743b4bf0c2895670b406f +size 141786 diff --git a/datasets/pinganmajia/train/images/订单1814593_4_7182027.jpg b/datasets/pinganmajia/train/images/订单1814593_4_7182027.jpg new file mode 100644 index 0000000..7ca6d46 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814593_4_7182027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c46892dd4e3fe1f4077c2674081b4bfc8f0446065d9dc3a0b38362ee182b0 +size 69010 diff --git a/datasets/pinganmajia/train/images/订单1814595_4_7181976.jpg b/datasets/pinganmajia/train/images/订单1814595_4_7181976.jpg new file mode 100644 index 0000000..08fe3fa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814595_4_7181976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73774d8f09dffd4ba1abcc3c6dfb1019cc4de43befbdcd2e3deee931de883abe +size 468978 diff --git a/datasets/pinganmajia/train/images/订单1814597_4_7182009.jpg b/datasets/pinganmajia/train/images/订单1814597_4_7182009.jpg new file mode 100644 index 0000000..4c834b3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814597_4_7182009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05eada815d9ac24bb3322d7d5618b4ebceb7c0e0268e2da8282e4d770823894a +size 158084 diff --git a/datasets/pinganmajia/train/images/订单1814599_4_7182099.jpg b/datasets/pinganmajia/train/images/订单1814599_4_7182099.jpg new file mode 100644 index 0000000..b8e5672 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814599_4_7182099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab831d623cf67b600055e2e049edbd84c4a568a963376bd0b812f0728252e229 +size 54119 diff --git a/datasets/pinganmajia/train/images/订单1814601_4_7181996.jpg b/datasets/pinganmajia/train/images/订单1814601_4_7181996.jpg new file mode 100644 index 0000000..d518cc1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814601_4_7181996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30032babd73ea45e15f99debad51a4a86713c9a033795623484c219e2056a9dc +size 86406 diff --git a/datasets/pinganmajia/train/images/订单1814602_4_7182023.jpg b/datasets/pinganmajia/train/images/订单1814602_4_7182023.jpg new file mode 100644 index 0000000..0bfe4ff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814602_4_7182023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe05a735ae5c19669b86778ef3ed8cfe0c9f41b441c79c6a0b17466d253495c +size 544813 diff --git a/datasets/pinganmajia/train/images/订单1814604_4_7182166.jpg b/datasets/pinganmajia/train/images/订单1814604_4_7182166.jpg new file mode 100644 index 0000000..f50242d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814604_4_7182166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4a66ecee6e94741987d06505647176cc45fed9ab6572bb8f33ce992d7a5b39 +size 197166 diff --git a/datasets/pinganmajia/train/images/订单1814605_4_7182107.jpg b/datasets/pinganmajia/train/images/订单1814605_4_7182107.jpg new file mode 100644 index 0000000..c976ea5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814605_4_7182107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b00882d976c0cd23f5401e7d656b6e6d1030b539c99b0f4ed25b82a0077b47 +size 240843 diff --git a/datasets/pinganmajia/train/images/订单1814606_4_7182045.jpg b/datasets/pinganmajia/train/images/订单1814606_4_7182045.jpg new file mode 100644 index 0000000..d577a99 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814606_4_7182045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e97b6de4c607efe77a243d7568f91586e5422cbc74db125bae74e34fe15f99 +size 86741 diff --git a/datasets/pinganmajia/train/images/订单1814609_4_7182139.jpg b/datasets/pinganmajia/train/images/订单1814609_4_7182139.jpg new file mode 100644 index 0000000..90d6465 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814609_4_7182139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb828c501a18ce3966f18c1d88bba44e12c40abc4ce1043cf78537aea9a096d +size 200331 diff --git a/datasets/pinganmajia/train/images/订单1814610_4_7182153.jpg b/datasets/pinganmajia/train/images/订单1814610_4_7182153.jpg new file mode 100644 index 0000000..486cf0d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814610_4_7182153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0d03bea088aa93e3a88417f0b2c786ff4552eca263b4009d834035432b6148 +size 387041 diff --git a/datasets/pinganmajia/train/images/订单1814612_4_7182185.jpg b/datasets/pinganmajia/train/images/订单1814612_4_7182185.jpg new file mode 100644 index 0000000..63a24d3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814612_4_7182185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259275ec0e4185989bd1e088bd08b970645d937bfec47305d00436a35541aeea +size 132176 diff --git a/datasets/pinganmajia/train/images/订单1814613_4_7182196.jpg b/datasets/pinganmajia/train/images/订单1814613_4_7182196.jpg new file mode 100644 index 0000000..7e7a363 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814613_4_7182196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60e923dea07d5d90e97b7e073fcfa30bc4ff10897656525ae32bd9068eaa1d7 +size 71871 diff --git a/datasets/pinganmajia/train/images/订单1814614_4_7182212.jpg b/datasets/pinganmajia/train/images/订单1814614_4_7182212.jpg new file mode 100644 index 0000000..52cfea5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814614_4_7182212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4f6a13483d5e63269e05f58151f61eaca90a403d6bc6d9d04c62ffc2cd4e2b +size 81757 diff --git a/datasets/pinganmajia/train/images/订单1814616_4_7182279.jpg b/datasets/pinganmajia/train/images/订单1814616_4_7182279.jpg new file mode 100644 index 0000000..4ec7088 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814616_4_7182279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399c28666c3a5cd7eb4a18dae5da2a80355c7e8a2785b18c8dd0537b5d17adab +size 169673 diff --git a/datasets/pinganmajia/train/images/订单1814617_4_7182290.jpg b/datasets/pinganmajia/train/images/订单1814617_4_7182290.jpg new file mode 100644 index 0000000..1b4b8d5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814617_4_7182290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712d8f60a00a1fc42b061f378a46283fee36e2a4a0a4adc9610a3142c650e60d +size 75258 diff --git a/datasets/pinganmajia/train/images/订单1814620_4_7182352.jpg b/datasets/pinganmajia/train/images/订单1814620_4_7182352.jpg new file mode 100644 index 0000000..237be0d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814620_4_7182352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c850d5769f8dc426a9dce4af30d6ea583011843c080e67d6a4be62981a6b879 +size 324584 diff --git a/datasets/pinganmajia/train/images/订单1814621_4_7182314.jpg b/datasets/pinganmajia/train/images/订单1814621_4_7182314.jpg new file mode 100644 index 0000000..53a3ab4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814621_4_7182314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9d093acb7435e5d42f0894deba8e95f7c575a4db4f99360673893086a150e5 +size 66939 diff --git a/datasets/pinganmajia/train/images/订单1814624_4_7182310.jpg b/datasets/pinganmajia/train/images/订单1814624_4_7182310.jpg new file mode 100644 index 0000000..ff9d9f1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814624_4_7182310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f003dc2253d5272e1a12f02d617534d03b72004dc2747b99347245f7107565ef +size 348720 diff --git a/datasets/pinganmajia/train/images/订单1814630_4_7182364.jpg b/datasets/pinganmajia/train/images/订单1814630_4_7182364.jpg new file mode 100644 index 0000000..67996c6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814630_4_7182364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07becbd768f3a0734f23e2875f1e2efb8ffb493a33f9a43866afe87ecb880606 +size 77158 diff --git a/datasets/pinganmajia/train/images/订单1814632_4_7182392.jpg b/datasets/pinganmajia/train/images/订单1814632_4_7182392.jpg new file mode 100644 index 0000000..ee67298 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814632_4_7182392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08098f1b2ccfffc8973baa81b395e70b1fc44a8e2a9184f07af9d18f86c141b3 +size 151472 diff --git a/datasets/pinganmajia/train/images/订单1814633_4_7182414.jpg b/datasets/pinganmajia/train/images/订单1814633_4_7182414.jpg new file mode 100644 index 0000000..3568738 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814633_4_7182414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cc7a1f3fcf6190984f04a5670ae08480fc4719390ce145f0ae431ddd32242a +size 208589 diff --git a/datasets/pinganmajia/train/images/订单1814634_4_7182450.jpg b/datasets/pinganmajia/train/images/订单1814634_4_7182450.jpg new file mode 100644 index 0000000..0424f73 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814634_4_7182450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b4983391684a9396885553721899cc7d251d9170138d8c03ac35356966e051 +size 93602 diff --git a/datasets/pinganmajia/train/images/订单1814635_4_7182431.jpg b/datasets/pinganmajia/train/images/订单1814635_4_7182431.jpg new file mode 100644 index 0000000..1c9cb08 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814635_4_7182431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddec388bcb07c69811c067ef12369e79b61c2de238b586e5aa0100206bf1faf0 +size 65741 diff --git a/datasets/pinganmajia/train/images/订单1814636_4_7182447.jpg b/datasets/pinganmajia/train/images/订单1814636_4_7182447.jpg new file mode 100644 index 0000000..df01381 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814636_4_7182447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713381f5108a7abdd8b01f2951cdc06a9c0e087d2d12567f9ea8fdb2318d9d3b +size 204709 diff --git a/datasets/pinganmajia/train/images/订单1814637_4_7182494.jpg b/datasets/pinganmajia/train/images/订单1814637_4_7182494.jpg new file mode 100644 index 0000000..52c011e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814637_4_7182494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4f25babc9391d781b13e2be1d92df79f28f08d2906186c7ce8beb41f307948 +size 96779 diff --git a/datasets/pinganmajia/train/images/订单1814638_4_7182443.jpg b/datasets/pinganmajia/train/images/订单1814638_4_7182443.jpg new file mode 100644 index 0000000..3a4ad50 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814638_4_7182443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051e8d01f00fece1489cdd9a0be35eb632d455d0248e6c2f9fcf80f9265d16ab +size 138446 diff --git a/datasets/pinganmajia/train/images/订单1814639_4_7182543.jpg b/datasets/pinganmajia/train/images/订单1814639_4_7182543.jpg new file mode 100644 index 0000000..2727d94 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814639_4_7182543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d2bbd233740cfd50d40ce5217ad1572789bbfbda55a5e006e8bf8932f03b47 +size 117115 diff --git a/datasets/pinganmajia/train/images/订单1814641_4_7182851.jpg b/datasets/pinganmajia/train/images/订单1814641_4_7182851.jpg new file mode 100644 index 0000000..b994e7c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814641_4_7182851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9ba028f31402bbfb0c1843c84081c71024ff9b48962f0382703241cb3338c0 +size 467822 diff --git a/datasets/pinganmajia/train/images/订单1814642_4_7182471.jpg b/datasets/pinganmajia/train/images/订单1814642_4_7182471.jpg new file mode 100644 index 0000000..3f086ae --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814642_4_7182471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c3052922526cf1a17b824dde606731fd2716744af1cba8bcd59a854f4ce082 +size 64464 diff --git a/datasets/pinganmajia/train/images/订单1814643_4_7182472.jpg b/datasets/pinganmajia/train/images/订单1814643_4_7182472.jpg new file mode 100644 index 0000000..a802382 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814643_4_7182472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566635291af3d67c1fd1c372461381b69192e6cf0f44b66834451a242bd0b560 +size 250308 diff --git a/datasets/pinganmajia/train/images/订单1814648_4_7182973.jpg b/datasets/pinganmajia/train/images/订单1814648_4_7182973.jpg new file mode 100644 index 0000000..b6c1fb3 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814648_4_7182973.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37faa418d0c6d8a1617eb6012a995f9cca99fd37c15327a03a060facd3aab75c +size 73735 diff --git a/datasets/pinganmajia/train/images/订单1814649_4_7182503.jpg b/datasets/pinganmajia/train/images/订单1814649_4_7182503.jpg new file mode 100644 index 0000000..5b1fd96 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814649_4_7182503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42ea866bd35a9a471051e0f2e6113f46029d798798252618d9d5f51ed8c15a8 +size 160732 diff --git a/datasets/pinganmajia/train/images/订单1814652_4_7182561.jpg b/datasets/pinganmajia/train/images/订单1814652_4_7182561.jpg new file mode 100644 index 0000000..c7cedd7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814652_4_7182561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463f0337def4efff55a7bef97b6ace376e51fd4a7d58b43cba42aa38670db339 +size 369465 diff --git a/datasets/pinganmajia/train/images/订单1814653_4_7182563.jpg b/datasets/pinganmajia/train/images/订单1814653_4_7182563.jpg new file mode 100644 index 0000000..d219d24 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814653_4_7182563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a9f843c2ffac8b3a176f63f8a2544c77adbea9f15c73e5690ac989b32c0d0f +size 61195 diff --git a/datasets/pinganmajia/train/images/订单1814654_4_7182949.jpg b/datasets/pinganmajia/train/images/订单1814654_4_7182949.jpg new file mode 100644 index 0000000..375c561 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814654_4_7182949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a74cf8b533150b8cd9797c7564641f052bedfd9633111859c46b614991a24d +size 86864 diff --git a/datasets/pinganmajia/train/images/订单1814657_4_7182633.jpg b/datasets/pinganmajia/train/images/订单1814657_4_7182633.jpg new file mode 100644 index 0000000..c51e508 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814657_4_7182633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e54d0f1adfb881784b3a5ddf4ff0e849d21bc0dedb10099023168f2cbfc3881 +size 317754 diff --git a/datasets/pinganmajia/train/images/订单1814658_4_7182606.jpg b/datasets/pinganmajia/train/images/订单1814658_4_7182606.jpg new file mode 100644 index 0000000..725ccd5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814658_4_7182606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec51933fdf5a932bb6eb3de9a224e62e4789b019aa763957ce58a3bf5bb723fa +size 128280 diff --git a/datasets/pinganmajia/train/images/订单1814659_4_7182586.jpg b/datasets/pinganmajia/train/images/订单1814659_4_7182586.jpg new file mode 100644 index 0000000..b6c85b6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814659_4_7182586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c5525b0c40f2d4f4433474c16af4419169f675b6beaf7f919c90fa028b3527 +size 95607 diff --git a/datasets/pinganmajia/train/images/订单1814660_4_7182598.jpg b/datasets/pinganmajia/train/images/订单1814660_4_7182598.jpg new file mode 100644 index 0000000..242b9f9 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814660_4_7182598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9348e40652fd7b66b8665d30b400d57ba69a86f23780ff3353a31ed6f8c521af +size 127081 diff --git a/datasets/pinganmajia/train/images/订单1814661_4_7182670.jpg b/datasets/pinganmajia/train/images/订单1814661_4_7182670.jpg new file mode 100644 index 0000000..bacba58 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814661_4_7182670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7599badb8937df5be0f4c152cf633974e3a485c75dd39e2678bf6e6b2906aa30 +size 98312 diff --git a/datasets/pinganmajia/train/images/订单1814665_4_7182946.jpg b/datasets/pinganmajia/train/images/订单1814665_4_7182946.jpg new file mode 100644 index 0000000..3797bd8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814665_4_7182946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c6bb3985526ca06819e5749bcbd13b4c05ea1a4cc8ec0e0dbe27cc2bf2515f +size 61546 diff --git a/datasets/pinganmajia/train/images/订单1814666_4_7182675.jpg b/datasets/pinganmajia/train/images/订单1814666_4_7182675.jpg new file mode 100644 index 0000000..2bfce7a --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814666_4_7182675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba0df776b46f17237cc0bceccd4024b807235f6993f12b2d857914a28357e9b +size 70554 diff --git a/datasets/pinganmajia/train/images/订单1814670_4_7182664.jpg b/datasets/pinganmajia/train/images/订单1814670_4_7182664.jpg new file mode 100644 index 0000000..b2ee2c1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814670_4_7182664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf30223c5c7336d1d8dc92070e72d51ffd7cecc7ba556ca4de426ba73678250 +size 134342 diff --git a/datasets/pinganmajia/train/images/订单1814671_4_7182682.jpg b/datasets/pinganmajia/train/images/订单1814671_4_7182682.jpg new file mode 100644 index 0000000..12892be --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814671_4_7182682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81fbb97353e12fd630442ee10fca70145e6619cfe5ad6de50fdd6317819cbf0 +size 177124 diff --git a/datasets/pinganmajia/train/images/订单1814673_4_7182716.jpg b/datasets/pinganmajia/train/images/订单1814673_4_7182716.jpg new file mode 100644 index 0000000..e9a8624 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814673_4_7182716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79cfe36e59f3d0f9fd78c5fcbde6acc68a103658ac93ee10979236dae6109adf +size 70203 diff --git a/datasets/pinganmajia/train/images/订单1814675_4_7182790.jpg b/datasets/pinganmajia/train/images/订单1814675_4_7182790.jpg new file mode 100644 index 0000000..21004c7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814675_4_7182790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549b6e9f79ff961613e8d9ccd6d60995658b1826362575ff35f3ab693cfde58b +size 83155 diff --git a/datasets/pinganmajia/train/images/订单1814676_4_7182777.jpg b/datasets/pinganmajia/train/images/订单1814676_4_7182777.jpg new file mode 100644 index 0000000..d68bf6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814676_4_7182777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf3bc427eab3d8affda0154db448dba5378bf665d9b307b2c4683f66f91ba37 +size 124544 diff --git a/datasets/pinganmajia/train/images/订单1814677_4_7182835.jpg b/datasets/pinganmajia/train/images/订单1814677_4_7182835.jpg new file mode 100644 index 0000000..f6587d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814677_4_7182835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054f285d4fe81e4df6331a177679a3a1b79be685dc993b15673443f757a64edf +size 113829 diff --git a/datasets/pinganmajia/train/images/订单1814678_4_7182763.jpg b/datasets/pinganmajia/train/images/订单1814678_4_7182763.jpg new file mode 100644 index 0000000..cd5d779 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814678_4_7182763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fe896826c0e66e24ce80e85b7587eb3cce3c7f6b21150040ce17aa206b1674 +size 154872 diff --git a/datasets/pinganmajia/train/images/订单1814679_4_7182735.jpg b/datasets/pinganmajia/train/images/订单1814679_4_7182735.jpg new file mode 100644 index 0000000..56e96ce --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814679_4_7182735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62189161cbeaf69e400b663c9e29fce05b944b426b2b80131a0bbf96cb10165f +size 280853 diff --git a/datasets/pinganmajia/train/images/订单1814680_4_7182712.jpg b/datasets/pinganmajia/train/images/订单1814680_4_7182712.jpg new file mode 100644 index 0000000..c7a714b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814680_4_7182712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819d3880949017ecf3e78ca57ed6974f57e66dad2a7bbfc55d89710c5125a27f +size 295312 diff --git a/datasets/pinganmajia/train/images/订单1814683_4_7182764.jpg b/datasets/pinganmajia/train/images/订单1814683_4_7182764.jpg new file mode 100644 index 0000000..90bf4aa --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814683_4_7182764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01286e047ff056937b739a29570d8719cd1038bc5f46e46f42dd7662d9c4b598 +size 234201 diff --git a/datasets/pinganmajia/train/images/订单1814684_4_7182745.jpg b/datasets/pinganmajia/train/images/订单1814684_4_7182745.jpg new file mode 100644 index 0000000..0825e2d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814684_4_7182745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b9697c8380eb16478341755fccf3b2d66def66c01f4b12db91e0da876ed6a0 +size 74199 diff --git a/datasets/pinganmajia/train/images/订单1814685_4_7182867.jpg b/datasets/pinganmajia/train/images/订单1814685_4_7182867.jpg new file mode 100644 index 0000000..09f7d94 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814685_4_7182867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101b7b8555cc74184cbce49d519871534c45ffe14665506920b8c2a7d44fdb3f +size 65204 diff --git a/datasets/pinganmajia/train/images/订单1814687_4_7182771.jpg b/datasets/pinganmajia/train/images/订单1814687_4_7182771.jpg new file mode 100644 index 0000000..1fa6127 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814687_4_7182771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf02cd049a3a14ffac24eea4d2cf56388f3ce95ed7d5aae5cc79a3e1d131a46 +size 368752 diff --git a/datasets/pinganmajia/train/images/订单1814689_4_7182877.jpg b/datasets/pinganmajia/train/images/订单1814689_4_7182877.jpg new file mode 100644 index 0000000..b8d08a1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814689_4_7182877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bfdb0f0e1813e9b3702949fb3ae7b7ee56af39b7d22e7c734209ef7cc1b7e0 +size 418085 diff --git a/datasets/pinganmajia/train/images/订单1814691_4_7182947.jpg b/datasets/pinganmajia/train/images/订单1814691_4_7182947.jpg new file mode 100644 index 0000000..6caadb0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814691_4_7182947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d030907dd5eb3430f87a967db3c48dbeaf3445d7e5efe1adc83a74ef0f8c3816 +size 98503 diff --git a/datasets/pinganmajia/train/images/订单1814692_4_7182899.jpg b/datasets/pinganmajia/train/images/订单1814692_4_7182899.jpg new file mode 100644 index 0000000..7b65ea5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814692_4_7182899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b74f2b754fa28fe8e602e4e6e5a542f8265e23953071e6a35912b08a00ba389 +size 97771 diff --git a/datasets/pinganmajia/train/images/订单1814693_4_7182923.jpg b/datasets/pinganmajia/train/images/订单1814693_4_7182923.jpg new file mode 100644 index 0000000..7dfaf7e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814693_4_7182923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394643001f45466e7ba63149f2bc2a41f38480ee451522cb629ad64203c3478e +size 135970 diff --git a/datasets/pinganmajia/train/images/订单1814694_4_7182984.jpg b/datasets/pinganmajia/train/images/订单1814694_4_7182984.jpg new file mode 100644 index 0000000..2e0bc6f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814694_4_7182984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c50790169eed9d59ddcf1c973660d1e76eb3160653f5feabb5a868d7c140e11 +size 154808 diff --git a/datasets/pinganmajia/train/images/订单1814696_4_7182914.jpg b/datasets/pinganmajia/train/images/订单1814696_4_7182914.jpg new file mode 100644 index 0000000..f061a36 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814696_4_7182914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96600a7f1efbd0402aea35d9d5fac94adbe67d3e6103f59fff22778e026fc86 +size 219387 diff --git a/datasets/pinganmajia/train/images/订单1814697_4_7183025.jpg b/datasets/pinganmajia/train/images/订单1814697_4_7183025.jpg new file mode 100644 index 0000000..a232c4d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814697_4_7183025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1760c97ee214d279e67113433d58589ec7cf707c140efa18ddb7a784e9859f92 +size 133610 diff --git a/datasets/pinganmajia/train/images/订单1814700_4_7182928.jpg b/datasets/pinganmajia/train/images/订单1814700_4_7182928.jpg new file mode 100644 index 0000000..b709bbd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814700_4_7182928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a0b0177e81f8ac2c600bd134d7b82a070178a0eb239e307db77fedbf03ec75 +size 62736 diff --git a/datasets/pinganmajia/train/images/订单1814703_4_7183108.jpg b/datasets/pinganmajia/train/images/订单1814703_4_7183108.jpg new file mode 100644 index 0000000..7b6df0f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814703_4_7183108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0afbfb2131b536b4ef849155698a363c867ee66918c25d75a64d829fc3fa43b +size 52923 diff --git a/datasets/pinganmajia/train/images/订单1814705_4_7183229.jpg b/datasets/pinganmajia/train/images/订单1814705_4_7183229.jpg new file mode 100644 index 0000000..2f2bb77 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814705_4_7183229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38ddc49b2a18edde10b8a6b1a6a331cadbc3407bc865426144db5f0cb693b3e +size 212641 diff --git a/datasets/pinganmajia/train/images/订单1814708_4_7183099.jpg b/datasets/pinganmajia/train/images/订单1814708_4_7183099.jpg new file mode 100644 index 0000000..0b341e8 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814708_4_7183099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd0daf460a8dece2a1735f7ac1206ee6e19c72a0049adafda53861c546a0340 +size 124946 diff --git a/datasets/pinganmajia/train/images/订单1814709_4_7183088.jpg b/datasets/pinganmajia/train/images/订单1814709_4_7183088.jpg new file mode 100644 index 0000000..ae7456f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814709_4_7183088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc009ebbf0fac8421110060599ee3c4dc95e14a5af051b9f9a02bbb684a6422b +size 138151 diff --git a/datasets/pinganmajia/train/images/订单1814711_4_7183202.jpg b/datasets/pinganmajia/train/images/订单1814711_4_7183202.jpg new file mode 100644 index 0000000..c326939 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814711_4_7183202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c38b2b768392b8231b91b95d27fc047221524bac27ff5725afbb9fa7c75002 +size 58076 diff --git a/datasets/pinganmajia/train/images/订单1814712_4_7183140.jpg b/datasets/pinganmajia/train/images/订单1814712_4_7183140.jpg new file mode 100644 index 0000000..482c488 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814712_4_7183140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6186c3c2aae809b2da97680bf55c335886179dfd412f8db3252d11c1ba8e7c11 +size 636308 diff --git a/datasets/pinganmajia/train/images/订单1814713_4_7183134.jpg b/datasets/pinganmajia/train/images/订单1814713_4_7183134.jpg new file mode 100644 index 0000000..d1ed14c --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814713_4_7183134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcff8dc63fd48c1e773cc6c748cdfccf15593ccb6010d32ae1762be1d4df0f9 +size 66188 diff --git a/datasets/pinganmajia/train/images/订单1814715_4_7183150.jpg b/datasets/pinganmajia/train/images/订单1814715_4_7183150.jpg new file mode 100644 index 0000000..ab6fcee --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814715_4_7183150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08051371b85f9b5a06b9094cbe5914e843865d99972c4cfb0fb17403d85af4eb +size 174541 diff --git a/datasets/pinganmajia/train/images/订单1814716_4_7183168.jpg b/datasets/pinganmajia/train/images/订单1814716_4_7183168.jpg new file mode 100644 index 0000000..c10f47b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814716_4_7183168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb44049ee300ca639f514889de186a13319da3b638392186cf32988c95ebd2b +size 115403 diff --git a/datasets/pinganmajia/train/images/订单1814718_4_7183191.jpg b/datasets/pinganmajia/train/images/订单1814718_4_7183191.jpg new file mode 100644 index 0000000..03ee7ef --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814718_4_7183191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa901ae85a3f90f50463e8c77dcef621b2411a6cf07ea37a709024a7dab424a +size 164171 diff --git a/datasets/pinganmajia/train/images/订单1814721_4_7183261.jpg b/datasets/pinganmajia/train/images/订单1814721_4_7183261.jpg new file mode 100644 index 0000000..20813bb --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814721_4_7183261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98e5e83f6f96ebccab609d1dfae5c3565c5267675e504a153c9f9c798f61145 +size 78980 diff --git a/datasets/pinganmajia/train/images/订单1814727_4_7183220.jpg b/datasets/pinganmajia/train/images/订单1814727_4_7183220.jpg new file mode 100644 index 0000000..736c92b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814727_4_7183220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bce48512453fad400b285640a414ae89a43beba1509e962494c39fecc775cd +size 224629 diff --git a/datasets/pinganmajia/train/images/订单1814728_4_7183298.jpg b/datasets/pinganmajia/train/images/订单1814728_4_7183298.jpg new file mode 100644 index 0000000..63811d4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814728_4_7183298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a9332f9ddd8089f40c558292a49394a0b83cbec6e252122b9c1bbf11180f70 +size 88087 diff --git a/datasets/pinganmajia/train/images/订单1814729_4_7183308.jpg b/datasets/pinganmajia/train/images/订单1814729_4_7183308.jpg new file mode 100644 index 0000000..2db476b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814729_4_7183308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3433686156f5acbf00c5e7174fc1fb04ad542c4786c21ad74c3e7b7ee4b2933e +size 112381 diff --git a/datasets/pinganmajia/train/images/订单1814730_4_7183279.jpg b/datasets/pinganmajia/train/images/订单1814730_4_7183279.jpg new file mode 100644 index 0000000..19c1e30 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814730_4_7183279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbee29c5665746b3ed593a2daf53437ac483771fa134633cc8e430be35b72ed2 +size 72368 diff --git a/datasets/pinganmajia/train/images/订单1814732_4_7183330.jpg b/datasets/pinganmajia/train/images/订单1814732_4_7183330.jpg new file mode 100644 index 0000000..c63db47 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814732_4_7183330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eef51b4552fa3e17c5dc8cf7db14d581147e0fced61a4b0bb4e113dee32e2f3 +size 145196 diff --git a/datasets/pinganmajia/train/images/订单1814733_4_7183373.jpg b/datasets/pinganmajia/train/images/订单1814733_4_7183373.jpg new file mode 100644 index 0000000..b644fff --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814733_4_7183373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8559d9d70d491321cc9b5da5225307c65f61e6f6de3fea5e2cbd0005ef0103 +size 325047 diff --git a/datasets/pinganmajia/train/images/订单1814734_4_7183270.jpg b/datasets/pinganmajia/train/images/订单1814734_4_7183270.jpg new file mode 100644 index 0000000..c1956cf --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814734_4_7183270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0d9e3ea69d461d3f67bd9a8d77e6165085f4c70c4d1eb84734e94d18b196a9 +size 122595 diff --git a/datasets/pinganmajia/train/images/订单1814736_4_7183354.jpg b/datasets/pinganmajia/train/images/订单1814736_4_7183354.jpg new file mode 100644 index 0000000..0e45472 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814736_4_7183354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6688f0b2fc03c0e8ec78cf8d9e5fbf2e03484800584963df783728f52852d772 +size 175096 diff --git a/datasets/pinganmajia/train/images/订单1814737_4_7183333.jpg b/datasets/pinganmajia/train/images/订单1814737_4_7183333.jpg new file mode 100644 index 0000000..36176b7 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814737_4_7183333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41525193d408044ff3c14c2f7c9334e9731f6cf060ab46186ef86903ffdfb3f5 +size 148861 diff --git a/datasets/pinganmajia/train/images/订单1814738_4_7183342.jpg b/datasets/pinganmajia/train/images/订单1814738_4_7183342.jpg new file mode 100644 index 0000000..290468d --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814738_4_7183342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8668bcfc218319f85095ecd15e9d84266ad3ed07c3a4bc8c540c3978f6a70cfa +size 90141 diff --git a/datasets/pinganmajia/train/images/订单1814739_4_7183472.jpg b/datasets/pinganmajia/train/images/订单1814739_4_7183472.jpg new file mode 100644 index 0000000..c89ceb4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814739_4_7183472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78a1d2a83de0fbcf704d0f2e06d691827629e9e5ec7f924bce6a073bc1c9d97 +size 68598 diff --git a/datasets/pinganmajia/train/images/订单1814742_4_7183441.jpg b/datasets/pinganmajia/train/images/订单1814742_4_7183441.jpg new file mode 100644 index 0000000..0f70f5f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814742_4_7183441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37c8b0c702ff97488be713e7653134481fd346908183144db222257281b9b47 +size 73307 diff --git a/datasets/pinganmajia/train/images/订单1814743_4_7183461.jpg b/datasets/pinganmajia/train/images/订单1814743_4_7183461.jpg new file mode 100644 index 0000000..45b1cbd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814743_4_7183461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94be4ad47f6973f63a11a66a2cfa87dd3f08dabe50ad2aecae44e926d7cee15f +size 284507 diff --git a/datasets/pinganmajia/train/images/订单1814744_4_7183503.jpg b/datasets/pinganmajia/train/images/订单1814744_4_7183503.jpg new file mode 100644 index 0000000..714b55e --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814744_4_7183503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0a366199384a498f7fc49b19bddb998ad43007a54ea1626c1457c25ec48714 +size 276575 diff --git a/datasets/pinganmajia/train/images/订单1814745_4_7183557.jpg b/datasets/pinganmajia/train/images/订单1814745_4_7183557.jpg new file mode 100644 index 0000000..9494867 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814745_4_7183557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6aa14e513f9f7d66b293daaf535e2f43093edfb060b30f9cbc0dab515f94016 +size 94991 diff --git a/datasets/pinganmajia/train/images/订单1814746_4_7183495.jpg b/datasets/pinganmajia/train/images/订单1814746_4_7183495.jpg new file mode 100644 index 0000000..e65b832 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814746_4_7183495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49358f43a26ff12d2ec030236cc306ed85df89ef795ab6bc601109f13434565b +size 59806 diff --git a/datasets/pinganmajia/train/images/订单1814748_4_7183551.jpg b/datasets/pinganmajia/train/images/订单1814748_4_7183551.jpg new file mode 100644 index 0000000..0c40752 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814748_4_7183551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff7860a4921dea6eab0eee71c7dfd30f2dddeaa7d00eac907cea70c99775420 +size 258017 diff --git a/datasets/pinganmajia/train/images/订单1814750_4_7183528.jpg b/datasets/pinganmajia/train/images/订单1814750_4_7183528.jpg new file mode 100644 index 0000000..5e5f2f0 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814750_4_7183528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99757871a40686f4bb2567adb47bd05d17773fb6cd20686451688d567be8c086 +size 62561 diff --git a/datasets/pinganmajia/train/images/订单1814751_4_7183542.jpg b/datasets/pinganmajia/train/images/订单1814751_4_7183542.jpg new file mode 100644 index 0000000..ae50e9b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814751_4_7183542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fef8a7b529fd1bff019ed9d5356daca9bf7d90e3dd1820b20f93c6b1e5bb917 +size 95154 diff --git a/datasets/pinganmajia/train/images/订单1814752_4_7183538.jpg b/datasets/pinganmajia/train/images/订单1814752_4_7183538.jpg new file mode 100644 index 0000000..2a61aa6 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814752_4_7183538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d449e5ca105246e66c9fb43b6ca3955c65cca92a52078ac468b50775918077 +size 89600 diff --git a/datasets/pinganmajia/train/images/订单1814753_4_7183564.jpg b/datasets/pinganmajia/train/images/订单1814753_4_7183564.jpg new file mode 100644 index 0000000..a3bf333 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814753_4_7183564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93940e4b0cb2cad1477fb831d44716aea7a59cb6faa2e75f06cea985f5aca8fc +size 47174 diff --git a/datasets/pinganmajia/train/images/订单1814756_4_7183608.jpg b/datasets/pinganmajia/train/images/订单1814756_4_7183608.jpg new file mode 100644 index 0000000..8fc1fad --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814756_4_7183608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bda918e427259a099c25d4a5f795b173b8eeb1b0282f5be5d1f467a021a03e +size 69742 diff --git a/datasets/pinganmajia/train/images/订单1814757_4_7183598.jpg b/datasets/pinganmajia/train/images/订单1814757_4_7183598.jpg new file mode 100644 index 0000000..62c4e1f --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814757_4_7183598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643849e9a4ef838cc6249517b54438598203a4095989610ee06227522f011903 +size 81745 diff --git a/datasets/pinganmajia/train/images/订单1814760_4_7183659.jpg b/datasets/pinganmajia/train/images/订单1814760_4_7183659.jpg new file mode 100644 index 0000000..1659b03 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814760_4_7183659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ba7eb5416d705829eab2772e6899790ebfbdd767840f22c0d2cc407e1a88b3 +size 103492 diff --git a/datasets/pinganmajia/train/images/订单1814761_4_7183671.jpg b/datasets/pinganmajia/train/images/订单1814761_4_7183671.jpg new file mode 100644 index 0000000..91b5765 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814761_4_7183671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8c31fecf4b88a9faf5305b54c70705666d9cca794069227cdc86799404c215 +size 339420 diff --git a/datasets/pinganmajia/train/images/订单1814762_4_7183694.jpg b/datasets/pinganmajia/train/images/订单1814762_4_7183694.jpg new file mode 100644 index 0000000..8fdda50 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814762_4_7183694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2c8925591bc7b21ab6fb1739ef22d839a7272a4a99e711b59ee2e990516805 +size 252956 diff --git a/datasets/pinganmajia/train/images/订单1814764_4_7183718.jpg b/datasets/pinganmajia/train/images/订单1814764_4_7183718.jpg new file mode 100644 index 0000000..8af4285 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814764_4_7183718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fac9821ca2bfdba0151325976cc617f98531947737bce53f826254c38d045c5 +size 65741 diff --git a/datasets/pinganmajia/train/images/订单1814766_4_7183698.jpg b/datasets/pinganmajia/train/images/订单1814766_4_7183698.jpg new file mode 100644 index 0000000..bf3d1be --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814766_4_7183698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2479bb2113deb45e04598caf23f1f0dcb3af54f28ae1ad0419b21290a33878 +size 187612 diff --git a/datasets/pinganmajia/train/images/订单1814767_4_7183732.jpg b/datasets/pinganmajia/train/images/订单1814767_4_7183732.jpg new file mode 100644 index 0000000..53ec363 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814767_4_7183732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b15c39668c242e40f3af059992f197e79971342e0372ed5ca1996038c71cd0 +size 254674 diff --git a/datasets/pinganmajia/train/images/订单1814769_4_7183743.jpg b/datasets/pinganmajia/train/images/订单1814769_4_7183743.jpg new file mode 100644 index 0000000..184fccd --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814769_4_7183743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e0785b7b14a73ae80f5d567d8f1ce78229deb0b63f591e1dd71fb5cb81aa23 +size 84323 diff --git a/datasets/pinganmajia/train/images/订单1814770_4_7183764.jpg b/datasets/pinganmajia/train/images/订单1814770_4_7183764.jpg new file mode 100644 index 0000000..52e8827 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814770_4_7183764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fea202bfc27c1a4560d26876a0e5c51f617fbe7f9717eb9ef8a707e391bf82 +size 211736 diff --git a/datasets/pinganmajia/train/images/订单1814772_4_7183761.jpg b/datasets/pinganmajia/train/images/订单1814772_4_7183761.jpg new file mode 100644 index 0000000..5d4d031 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814772_4_7183761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24374eb2f2b2b3dd0a69943517ddac0ef23e78ceb618510fced6ed2b45c8fda3 +size 71118 diff --git a/datasets/pinganmajia/train/images/订单1814775_4_7183797.jpg b/datasets/pinganmajia/train/images/订单1814775_4_7183797.jpg new file mode 100644 index 0000000..1ace1ad --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814775_4_7183797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3096a90777de658b585ebddff9c5282627b421361d59aca978df5e502b6da0e6 +size 268893 diff --git a/datasets/pinganmajia/train/images/订单1814777_4_7183837.jpg b/datasets/pinganmajia/train/images/订单1814777_4_7183837.jpg new file mode 100644 index 0000000..f93e88b --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814777_4_7183837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d63561667241e2c9b29e3e7adfbb299400839e976e5cc582bbf614083ccd3d +size 99803 diff --git a/datasets/pinganmajia/train/images/订单1814778_4_7183820.jpg b/datasets/pinganmajia/train/images/订单1814778_4_7183820.jpg new file mode 100644 index 0000000..41803b1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814778_4_7183820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c49e3f0d4a923ee2ac579334c7f4c341f6fef5175cc813c03089563df56abe +size 241871 diff --git a/datasets/pinganmajia/train/images/订单1814784_4_7183903.jpg b/datasets/pinganmajia/train/images/订单1814784_4_7183903.jpg new file mode 100644 index 0000000..df9b178 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814784_4_7183903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44be6bdf5f6b151f2047f12b2d383288ad4a26d48729ae78492a375cf12a3fef +size 183928 diff --git a/datasets/pinganmajia/train/images/订单1814786_4_7183928.jpg b/datasets/pinganmajia/train/images/订单1814786_4_7183928.jpg new file mode 100644 index 0000000..4abb382 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814786_4_7183928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a4104cac48e6f06b908252aa7aeb20720fc93f6d12d7ff75f5e4b69ee8e1be +size 112126 diff --git a/datasets/pinganmajia/train/images/订单1814788_4_7184020.jpg b/datasets/pinganmajia/train/images/订单1814788_4_7184020.jpg new file mode 100644 index 0000000..1d9e6c5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814788_4_7184020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7267bd1b93153457fc62c35313f847dac865037fa63d6bb13bdee1097044b8b +size 203597 diff --git a/datasets/pinganmajia/train/images/订单1814790_4_7183952.jpg b/datasets/pinganmajia/train/images/订单1814790_4_7183952.jpg new file mode 100644 index 0000000..00a74ac --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814790_4_7183952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a560967852236c2e9a0753f4d92e25df0f417f298c6f4bb849742765885bd71 +size 103928 diff --git a/datasets/pinganmajia/train/images/订单1814792_4_7183966.jpg b/datasets/pinganmajia/train/images/订单1814792_4_7183966.jpg new file mode 100644 index 0000000..d9e0b01 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814792_4_7183966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782c725ee65e97f937eeee6a62928134fa341159312b7cb911b70c8342becfda +size 161300 diff --git a/datasets/pinganmajia/train/images/订单1814793_4_7183963.jpg b/datasets/pinganmajia/train/images/订单1814793_4_7183963.jpg new file mode 100644 index 0000000..ac9f0c1 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814793_4_7183963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452bfb3b9618b8cf19a2c526e9aaac46920e94eaf3a76ab8efb1543e4b73a244 +size 100652 diff --git a/datasets/pinganmajia/train/images/订单1814795_4_7184043.jpg b/datasets/pinganmajia/train/images/订单1814795_4_7184043.jpg new file mode 100644 index 0000000..faf7ff4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814795_4_7184043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9564dc5537fe36ea63a6a787ed4484b2be806d703a16028c2bb3b82b71ccdee +size 149089 diff --git a/datasets/pinganmajia/train/images/订单1814797_4_7183983.jpg b/datasets/pinganmajia/train/images/订单1814797_4_7183983.jpg new file mode 100644 index 0000000..111c000 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814797_4_7183983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb6192bda11f28f3b7916968da3eb88384eba2352bfe6a6dd048a8975ecfbe7 +size 229049 diff --git a/datasets/pinganmajia/train/images/订单1814800_4_7184055.jpg b/datasets/pinganmajia/train/images/订单1814800_4_7184055.jpg new file mode 100644 index 0000000..55f24b4 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814800_4_7184055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13cacc80b50a6f0c87f01d4046a14b1efa40ff63fd0a7cc59a460717e0752109 +size 124828 diff --git a/datasets/pinganmajia/train/images/订单1814802_4_7184010.jpg b/datasets/pinganmajia/train/images/订单1814802_4_7184010.jpg new file mode 100644 index 0000000..df8e766 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814802_4_7184010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5b7c351b008589590be63fe79ba6dbc66393b02864ea1f04a1efff748e878a +size 75468 diff --git a/datasets/pinganmajia/train/images/订单1814803_4_7184355.jpg b/datasets/pinganmajia/train/images/订单1814803_4_7184355.jpg new file mode 100644 index 0000000..9b561d5 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814803_4_7184355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64209418d478324b9cae292d932ac9ebf261e8ca3a36f595fe8af528b01715c6 +size 139460 diff --git a/datasets/pinganmajia/train/images/订单1814809_4_7184194.jpg b/datasets/pinganmajia/train/images/订单1814809_4_7184194.jpg new file mode 100644 index 0000000..c2df804 --- /dev/null +++ b/datasets/pinganmajia/train/images/订单1814809_4_7184194.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3478a2df999da48facd563cddbb66f8062eb4b6adc51ac014e348274bc8464d +size 276010 diff --git a/datasets/pinganmajia/train/labels/订单1812747_4_7164565.txt b/datasets/pinganmajia/train/labels/订单1812747_4_7164565.txt new file mode 100644 index 0000000..25a4d6e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812747_4_7164565.txt @@ -0,0 +1 @@ +4 0.475440 0.012682 0.400799 0.193342 0.500880 0.307847 0.536505 0.342196 0.556863 0.398177 0.600961 0.432526 0.646771 0.482144 0.568738 0.581389 0.489005 0.646267 0.482222 0.722604 0.516146 0.772222 0.555162 0.801484 0.533113 0.903264 0.551771 0.917266 0.497488 0.987240 0.999606 0.996146 0.994514 0.003776 diff --git a/datasets/pinganmajia/train/labels/订单1812748_4_7164570.txt b/datasets/pinganmajia/train/labels/订单1812748_4_7164570.txt new file mode 100644 index 0000000..48ec340 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812748_4_7164570.txt @@ -0,0 +1 @@ +4 0.749488 0.008854 0.685556 0.054653 0.643568 0.130995 0.591085 0.264583 0.581545 0.354907 0.603490 0.437604 0.553872 0.471956 0.510938 0.538113 0.461319 0.695880 0.430781 0.754398 0.447005 0.868900 0.472769 0.987222 0.483264 0.994861 0.997578 0.996134 0.998533 0.454144 0.976580 0.424884 0.995668 0.368900 1.000000 0.297257 1.000000 0.288854 0.975625 0.223866 0.917422 0.105544 0.864939 0.002488 0.768568 0.002488 diff --git a/datasets/pinganmajia/train/labels/订单1812750_4_7164563.txt b/datasets/pinganmajia/train/labels/订单1812750_4_7164563.txt new file mode 100644 index 0000000..82a0360 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812750_4_7164563.txt @@ -0,0 +1 @@ +4 0.767092 0.254461 0.653431 0.282451 0.611029 0.351152 0.611029 0.459289 0.629690 0.526716 0.536389 0.587794 0.555049 0.608150 0.477026 0.687022 0.471928 0.730282 0.422729 0.791348 0.395588 0.905858 0.395588 0.989828 1.000000 0.998713 1.000000 0.512243 0.960474 0.496189 0.994412 0.412218 0.975752 0.408395 0.968954 0.408395 0.975752 0.377868 0.962173 0.316801 0.924853 0.293897 0.841732 0.256998 diff --git a/datasets/pinganmajia/train/labels/订单1812751_4_7164601.txt b/datasets/pinganmajia/train/labels/订单1812751_4_7164601.txt new file mode 100644 index 0000000..5191d90 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812751_4_7164601.txt @@ -0,0 +1 @@ +4 0.969074 0.011406 0.860509 0.045764 0.768900 0.134818 0.763819 0.249323 0.770602 0.390547 0.797743 0.404540 0.719711 0.410903 0.504271 0.629731 0.436424 0.723880 0.438113 0.788767 0.466956 0.837109 0.482222 0.851102 0.368565 0.996146 1.000000 0.996146 1.000000 0.616814 0.997905 0.008863 diff --git a/datasets/pinganmajia/train/labels/订单1812752_4_7164582.txt b/datasets/pinganmajia/train/labels/订单1812752_4_7164582.txt new file mode 100644 index 0000000..3e86163 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812752_4_7164582.txt @@ -0,0 +1 @@ +4 0.290760 0.002590 0.005768 0.003864 0.004502 0.992410 0.573203 0.994959 0.547753 0.914804 0.522312 0.764673 0.486683 0.645082 0.465057 0.561111 0.322565 0.385539 0.299665 0.352459 0.332745 0.250678 0.316201 0.185792 0.321291 0.148897 diff --git a/datasets/pinganmajia/train/labels/订单1812753_4_7164619.txt b/datasets/pinganmajia/train/labels/订单1812753_4_7164619.txt new file mode 100644 index 0000000..387c58c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812753_4_7164619.txt @@ -0,0 +1 @@ +4 0.590711 0.263392 0.527950 0.283746 0.519467 0.318100 0.543217 0.356267 0.478756 0.386800 0.424472 0.524204 0.434650 0.606904 0.444828 0.615808 0.473667 0.666700 0.492322 0.657792 0.495717 0.576367 0.499111 0.676875 0.524556 0.717588 0.507589 0.874079 0.509289 0.914792 0.499111 0.950412 0.526250 0.968225 0.572056 0.973312 0.582233 0.918608 0.644994 0.965679 0.680622 0.956775 0.690800 0.931329 0.646694 0.877896 0.653478 0.777388 0.672139 0.669242 0.675528 0.634892 0.692494 0.662883 0.711156 0.634892 0.709456 0.615808 0.738294 0.587817 0.736600 0.442779 0.712850 0.403342 0.680622 0.374079 0.626339 0.360083 0.636517 0.319371 0.634817 0.281204 diff --git a/datasets/pinganmajia/train/labels/订单1812755_4_7164778.txt b/datasets/pinganmajia/train/labels/订单1812755_4_7164778.txt new file mode 100644 index 0000000..72a4308 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812755_4_7164778.txt @@ -0,0 +1 @@ +4 0.709309 0.005026 0.670034 0.125892 0.665245 0.270931 0.682485 0.333275 0.692064 0.348542 0.640338 0.366348 0.595314 0.376530 0.545500 0.479583 0.476529 0.614440 0.472696 0.711133 0.486108 0.750573 0.510059 0.871439 0.535922 0.899427 0.520593 0.966862 0.500475 0.998665 0.955500 0.997396 0.973701 0.815462 1.000000 0.799245 1.000000 0.565117 0.999564 0.370169 0.980407 0.357448 0.896108 0.366348 0.853956 0.311641 0.861623 0.276022 0.875034 0.265840 0.899936 0.208587 0.905686 0.174238 0.899936 0.160241 0.896108 0.141159 0.901853 0.069915 0.882696 0.001211 diff --git a/datasets/pinganmajia/train/labels/订单1812759_4_7164641.txt b/datasets/pinganmajia/train/labels/订单1812759_4_7164641.txt new file mode 100644 index 0000000..ccab832 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812759_4_7164641.txt @@ -0,0 +1 @@ +4 0.004451 0.395625 0.099073 0.368904 0.140171 0.354911 0.132524 0.333279 0.136348 0.312922 0.121055 0.265852 0.132524 0.246769 0.145902 0.253125 0.146860 0.174245 0.178396 0.123360 0.223317 0.090276 0.283530 0.089010 0.326543 0.123360 0.339921 0.165341 0.355213 0.228953 0.346610 0.295114 0.359037 0.305292 0.358079 0.338369 0.346610 0.356185 0.343744 0.380357 0.334189 0.386713 0.325585 0.426153 0.317939 0.433791 0.402043 0.548295 0.419250 0.672979 0.405866 0.767127 0.404915 0.909619 0.423073 0.993588 0.003500 0.996128 diff --git a/datasets/pinganmajia/train/labels/订单1812760_4_7164644.txt b/datasets/pinganmajia/train/labels/订单1812760_4_7164644.txt new file mode 100644 index 0000000..65b2c5b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812760_4_7164644.txt @@ -0,0 +1 @@ +4 0.996076 0.278641 0.902778 0.235383 0.755755 0.223934 0.651146 0.243016 0.543715 0.287547 0.498472 0.343527 0.523924 0.365152 0.535234 0.422406 0.540885 0.449125 0.538056 0.501285 0.600260 0.550906 0.535234 0.568715 0.555017 0.580168 0.277951 0.631059 0.195964 0.662863 0.162031 0.694672 0.145069 0.801539 0.088524 0.896961 0.003707 0.997469 0.998898 0.997469 diff --git a/datasets/pinganmajia/train/labels/订单1812761_4_7164670.txt b/datasets/pinganmajia/train/labels/订单1812761_4_7164670.txt new file mode 100644 index 0000000..aad9b07 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812761_4_7164670.txt @@ -0,0 +1 @@ +4 1.000000 0.353137 0.872125 0.329381 0.743747 0.324136 0.659128 0.335944 0.577425 0.362194 0.481131 0.489485 0.510313 0.555104 0.530736 0.601036 0.323569 0.733585 0.317725 0.800509 0.303134 0.866127 0.335232 0.917310 0.358583 0.985551 0.361499 0.994737 1.000000 0.998615 diff --git a/datasets/pinganmajia/train/labels/订单1812762_4_7164672.txt b/datasets/pinganmajia/train/labels/订单1812762_4_7164672.txt new file mode 100644 index 0000000..57a1905 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812762_4_7164672.txt @@ -0,0 +1 @@ +4 0.409850 0.002665 0.380104 0.055156 0.378345 0.141771 0.427350 0.220512 0.502581 0.297934 0.639062 0.388490 0.556829 0.515781 0.600567 0.683759 0.619815 0.820243 0.626817 0.998724 0.999525 0.998724 1.000000 0.937370 1.000000 0.000043 diff --git a/datasets/pinganmajia/train/labels/订单1812763_4_7164623.txt b/datasets/pinganmajia/train/labels/订单1812763_4_7164623.txt new file mode 100644 index 0000000..17ecd6a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812763_4_7164623.txt @@ -0,0 +1 @@ +4 0.989028 0.127335 0.898032 0.082717 0.850787 0.060399 0.796551 0.045964 0.717813 0.039410 0.660069 0.039410 0.574329 0.068281 0.488588 0.202135 0.499086 0.244132 0.485093 0.316311 0.500833 0.392422 0.504340 0.417361 0.383600 0.489540 0.348600 0.536780 0.346852 0.660139 0.343356 0.993472 0.983773 0.997413 diff --git a/datasets/pinganmajia/train/labels/订单1812764_4_7164865.txt b/datasets/pinganmajia/train/labels/订单1812764_4_7164865.txt new file mode 100644 index 0000000..770634b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812764_4_7164865.txt @@ -0,0 +1 @@ +4 0.224366 0.083383 0.207352 0.097053 0.207960 0.111634 0.212821 0.120747 0.192164 0.128038 0.193987 0.161302 0.239008 0.087528 diff --git a/datasets/pinganmajia/train/labels/订单1812766_4_7164632.txt b/datasets/pinganmajia/train/labels/订单1812766_4_7164632.txt new file mode 100644 index 0000000..0d04150 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812766_4_7164632.txt @@ -0,0 +1 @@ +4 1.000000 0.384077 0.919793 0.312346 0.905029 0.192923 0.885341 0.103686 0.840067 0.032821 0.786918 0.015756 0.734750 0.018385 0.695380 0.042006 0.661918 0.076128 0.640264 0.175865 0.629437 0.233609 0.638293 0.307096 0.630423 0.322846 0.633375 0.356968 0.604832 0.383212 0.572351 0.450141 0.559553 0.539378 0.555620 0.624679 0.583178 0.790038 0.592034 0.855654 0.604832 0.948827 0.616639 0.984263 1.000000 0.998571 diff --git a/datasets/pinganmajia/train/labels/订单1812767_4_7164710.txt b/datasets/pinganmajia/train/labels/订单1812767_4_7164710.txt new file mode 100644 index 0000000..8045b70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812767_4_7164710.txt @@ -0,0 +1 @@ +4 0.665417 0.236206 0.633925 0.253263 0.602425 0.283450 0.602425 0.313631 0.611175 0.335944 0.558683 0.360875 0.530683 0.391063 0.513192 0.417306 0.502692 0.448800 0.493942 0.555100 0.507942 0.585288 0.509692 0.610219 0.537683 0.619406 0.546433 0.615469 0.548183 0.560350 0.558683 0.586600 0.555183 0.698144 0.563933 0.734894 0.551683 0.790013 0.563933 0.846437 0.562183 0.872687 0.537683 0.898931 0.539433 0.915994 0.569183 0.919931 0.600675 0.902869 0.618175 0.870062 0.630425 0.879250 0.637425 0.896306 0.695167 0.921244 0.707417 0.898931 0.681167 0.870062 0.675917 0.847750 0.716167 0.757200 0.714417 0.730956 0.730158 0.667963 0.744158 0.612844 0.759908 0.560350 0.768658 0.587912 0.765158 0.628594 0.807150 0.631219 0.812400 0.601031 0.817650 0.538044 0.838650 0.456675 0.810650 0.410744 0.789658 0.380562 0.770408 0.360875 0.740658 0.339881 0.745908 0.293950 0.731908 0.259825 0.705667 0.232269 0.681167 0.233581 diff --git a/datasets/pinganmajia/train/labels/订单1812768_4_7164724.txt b/datasets/pinganmajia/train/labels/订单1812768_4_7164724.txt new file mode 100644 index 0000000..3ee547e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812768_4_7164724.txt @@ -0,0 +1 @@ +4 0.998542 0.678505 0.952286 0.629951 0.871575 0.540711 0.823346 0.486904 0.841060 0.433096 0.866654 0.375351 0.883388 0.288742 0.888309 0.207377 0.859761 0.162753 0.827286 0.107639 0.791850 0.085327 0.759369 0.076144 0.728860 0.081389 0.669804 0.133881 0.649136 0.170629 0.610748 0.237557 0.590080 0.311046 0.581219 0.346487 0.579252 0.398979 0.590080 0.439657 0.604841 0.475090 0.587126 0.494779 0.541850 0.515776 0.502482 0.535458 0.457206 0.552516 0.431612 0.593203 0.405037 0.640449 0.384369 0.682443 0.370588 0.746748 0.348940 0.829420 0.330239 0.887165 0.313505 0.976405 0.308585 0.996087 1.000000 0.998709 1.000000 0.915449 diff --git a/datasets/pinganmajia/train/labels/订单1812769_4_7164744.txt b/datasets/pinganmajia/train/labels/订单1812769_4_7164744.txt new file mode 100644 index 0000000..0e8690f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812769_4_7164744.txt @@ -0,0 +1 @@ +4 0.234775 0.000044 0.223950 0.173272 0.252492 0.198206 0.278083 0.246761 0.293833 0.311067 0.293833 0.342561 0.342058 0.393744 0.355842 0.405556 0.373554 0.422617 0.370604 0.452800 0.386350 0.493483 0.398163 0.535478 0.425721 0.614217 0.444421 0.660150 0.447375 0.700833 0.450329 0.733639 0.459187 0.780883 0.461154 0.805817 0.478871 0.879311 0.486746 0.922617 0.494621 0.942300 0.494621 0.990856 0.000000 0.997361 0.000000 0.002661 diff --git a/datasets/pinganmajia/train/labels/订单1812771_4_7164769.txt b/datasets/pinganmajia/train/labels/订单1812771_4_7164769.txt new file mode 100644 index 0000000..cdedf47 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812771_4_7164769.txt @@ -0,0 +1 @@ +4 0.007396 0.135208 0.059896 0.116832 0.082639 0.116832 0.115880 0.086649 0.224375 0.066962 0.282118 0.073524 0.327604 0.087960 0.360856 0.106337 0.388854 0.129957 0.420347 0.185078 0.423843 0.212630 0.413345 0.246753 0.399352 0.297934 0.371354 0.328116 0.341609 0.367491 0.306609 0.402925 0.243623 0.433108 0.206875 0.442292 0.213866 0.461979 0.229618 0.492161 0.271609 0.539410 0.285613 0.570903 0.285613 0.632578 0.268113 0.687700 0.275116 0.771693 0.261111 0.829436 0.247118 0.877986 0.245370 0.908168 0.245370 0.947543 0.236620 0.959358 0.241863 0.985599 0.241863 0.997413 0.000000 0.997413 0.000000 0.864175 diff --git a/datasets/pinganmajia/train/labels/订单1812772_4_7164842.txt b/datasets/pinganmajia/train/labels/订单1812772_4_7164842.txt new file mode 100644 index 0000000..4154f07 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812772_4_7164842.txt @@ -0,0 +1 @@ +4 0.003492 0.271720 0.011369 0.262533 0.028100 0.258598 0.030069 0.208724 0.038929 0.137857 0.037941 0.097176 0.060580 0.078803 0.080263 0.065681 0.112743 0.065681 0.160972 0.068307 0.195422 0.069616 0.225933 0.078803 0.256448 0.112923 0.282039 0.139173 0.283021 0.195602 0.287941 0.241534 0.287941 0.280906 0.298770 0.294028 0.303690 0.328148 0.291880 0.384577 0.283021 0.423948 0.291880 0.451508 0.315501 0.475132 0.336171 0.493505 0.359792 0.527626 0.375541 0.552560 0.389320 0.589306 0.399162 0.639173 0.401131 0.706104 0.410972 0.780906 0.412941 0.846521 0.416880 0.892454 0.418849 0.933135 0.422783 0.983003 0.411959 0.997440 0.395228 0.993505 0.364712 0.998750 0.320422 0.992189 0.000000 0.998743 0.000000 0.916858 diff --git a/datasets/pinganmajia/train/labels/订单1812774_4_7164758.txt b/datasets/pinganmajia/train/labels/订单1812774_4_7164758.txt new file mode 100644 index 0000000..4f8f03c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812774_4_7164758.txt @@ -0,0 +1 @@ +4 0.002466 0.371404 0.061524 0.350404 0.094990 0.326782 0.100894 0.265103 0.103846 0.207359 0.108769 0.144365 0.125500 0.095814 0.135341 0.049878 0.156995 0.021006 0.172745 0.001321 0.194072 0.000000 0.219827 0.000000 0.253452 0.009199 0.301683 0.027571 0.338096 0.044628 0.362707 0.073500 0.376486 0.106308 0.381404 0.137808 0.378452 0.206045 0.376486 0.278224 0.360736 0.351718 0.350894 0.401583 0.380423 0.425205 0.396168 0.459327 0.410933 0.497385 0.425697 0.566942 0.437510 0.610244 0.446365 0.661429 0.450303 0.738853 0.450303 0.787410 0.452269 0.834654 0.454240 0.883212 0.462115 0.922583 0.463096 0.969827 0.462115 0.988199 0.461130 0.994763 0.003452 0.994763 diff --git a/datasets/pinganmajia/train/labels/订单1812775_4_7164780.txt b/datasets/pinganmajia/train/labels/订单1812775_4_7164780.txt new file mode 100644 index 0000000..5175c4d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812775_4_7164780.txt @@ -0,0 +1 @@ +4 0.997578 0.380625 0.947378 0.355694 0.951319 0.313692 0.962144 0.278264 0.972969 0.242836 0.967066 0.227083 0.959193 0.228391 0.971988 0.171968 0.976910 0.153588 0.973950 0.064352 0.950330 0.035486 0.928681 0.017106 0.896198 0.002674 0.853872 0.001366 0.821398 0.000046 0.788915 0.009236 0.752500 0.023669 0.720017 0.047292 0.713125 0.098472 0.696398 0.169340 0.706233 0.217894 0.704271 0.228391 0.693438 0.233646 0.688524 0.242836 0.689505 0.261204 0.697378 0.283507 0.730842 0.389815 0.700330 0.418681 0.678681 0.440995 0.609783 0.465926 0.582222 0.496111 0.538915 0.578785 0.536944 0.622095 0.539896 0.691644 0.534974 0.773009 0.532023 0.826817 0.524149 0.893750 0.521198 0.954120 0.564505 0.993484 0.576319 0.972488 0.585174 0.944931 0.596988 0.877998 0.594028 0.729711 0.590095 0.960683 0.575330 0.993484 0.821398 0.997419 1.000000 0.998715 1.000000 0.634398 diff --git a/datasets/pinganmajia/train/labels/订单1812777_4_7164796.txt b/datasets/pinganmajia/train/labels/订单1812777_4_7164796.txt new file mode 100644 index 0000000..87335b6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812777_4_7164796.txt @@ -0,0 +1 @@ +4 0.995577 0.605000 0.944399 0.574814 0.916837 0.557750 0.881404 0.530192 0.877466 0.501321 0.871562 0.467205 0.881404 0.402897 0.906010 0.322846 0.900106 0.309724 0.909947 0.170615 0.888293 0.141744 0.853846 0.111558 0.818413 0.094500 0.779043 0.089250 0.745577 0.093186 0.710144 0.128622 0.691447 0.175865 0.677663 0.232295 0.677663 0.304474 0.671760 0.339904 0.669793 0.379276 0.672745 0.458013 0.673726 0.490827 0.580226 0.501321 0.541837 0.519692 0.493611 0.628622 0.469005 0.691609 0.445380 0.742795 0.431601 0.787410 0.425697 0.838596 0.432587 0.902897 0.444399 0.967205 0.999514 0.997385 diff --git a/datasets/pinganmajia/train/labels/订单1812778_4_7164821.txt b/datasets/pinganmajia/train/labels/订单1812778_4_7164821.txt new file mode 100644 index 0000000..16c2e4b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812778_4_7164821.txt @@ -0,0 +1 @@ +4 0.636431 0.195569 0.646941 0.154882 0.643438 0.132578 0.618941 0.106333 0.589190 0.105020 0.548954 0.110265 0.522706 0.123392 0.526196 0.139137 0.540196 0.173255 0.536706 0.195569 0.501699 0.217882 0.468458 0.238873 0.426458 0.265127 0.379216 0.293990 0.316222 0.334676 0.300484 0.381922 0.300484 0.409480 0.342471 0.435725 0.361725 0.437039 0.370471 0.389794 0.375725 0.377980 0.433464 0.354363 0.477203 0.322863 0.484209 0.342549 0.470209 0.395049 0.459712 0.429167 0.464954 0.492157 0.480706 0.535461 0.498209 0.574833 0.506954 0.610265 0.513948 0.647010 0.512196 0.700814 0.492954 0.725755 0.522706 0.736255 0.562941 0.719196 0.573451 0.691627 0.583948 0.639137 0.589190 0.544647 0.601438 0.598461 0.610196 0.635206 0.606693 0.687696 0.638183 0.750686 0.664431 0.746755 0.687176 0.721814 0.671438 0.694255 0.680183 0.643078 0.678431 0.578775 0.678431 0.515775 0.701176 0.492157 0.715176 0.450167 0.729176 0.396353 0.730928 0.339922 0.730928 0.299245 0.706431 0.227069 0.680183 0.211314 0.657438 0.202127 diff --git a/datasets/pinganmajia/train/labels/订单1812781_4_7164814.txt b/datasets/pinganmajia/train/labels/订单1812781_4_7164814.txt new file mode 100644 index 0000000..58d18ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812781_4_7164814.txt @@ -0,0 +1 @@ +4 0.374958 0.308381 0.376708 0.271637 0.346958 0.250638 0.318967 0.250638 0.304967 0.262450 0.301467 0.296569 0.285717 0.308381 0.266467 0.321506 0.255975 0.332006 0.192983 0.366125 0.208725 0.425181 0.198225 0.448800 0.187733 0.489487 0.191233 0.528856 0.203475 0.559038 0.215725 0.551162 0.226225 0.527544 0.224475 0.502606 0.243725 0.469800 0.245475 0.506544 0.243725 0.524919 0.245475 0.583975 0.247225 0.612844 0.255975 0.667963 0.264717 0.727019 0.261217 0.755888 0.243725 0.770325 0.283967 0.775575 0.313717 0.750637 0.341708 0.771637 0.366208 0.741456 0.364458 0.715206 0.371458 0.677150 0.380208 0.632531 0.388958 0.557725 0.392458 0.497356 0.399450 0.509169 0.401200 0.534106 0.408200 0.551162 0.429200 0.506544 0.434450 0.426494 0.427450 0.376625 0.402950 0.338569 diff --git a/datasets/pinganmajia/train/labels/订单1812784_4_7164848.txt b/datasets/pinganmajia/train/labels/订单1812784_4_7164848.txt new file mode 100644 index 0000000..1f1a2ea --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812784_4_7164848.txt @@ -0,0 +1 @@ +4 1.000000 0.514294 0.945982 0.475098 0.914450 0.426539 0.912696 0.393735 0.933717 0.334676 0.924961 0.313676 0.919699 0.238873 0.903940 0.191627 0.874149 0.150951 0.844359 0.127324 0.793560 0.112892 0.718220 0.112892 0.655144 0.128637 0.606086 0.148324 0.558783 0.179824 0.541257 0.227069 0.525484 0.271686 0.520236 0.325490 0.535995 0.376676 0.544764 0.437039 0.548259 0.486912 0.502709 0.543343 0.467670 0.611578 0.462408 0.670637 0.457160 0.719196 0.471178 0.770373 0.474673 0.839922 0.469424 0.881922 0.460668 0.918667 0.479935 0.965912 0.492199 0.998716 1.000000 0.998716 diff --git a/datasets/pinganmajia/train/labels/订单1812785_4_7164913.txt b/datasets/pinganmajia/train/labels/订单1812785_4_7164913.txt new file mode 100644 index 0000000..866b387 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812785_4_7164913.txt @@ -0,0 +1 @@ +4 0.983772 0.129954 0.906778 0.095833 0.845539 0.078775 0.814044 0.072212 0.775544 0.068275 0.709056 0.070900 0.667061 0.080083 0.619817 0.107646 0.593572 0.145704 0.556822 0.254625 0.556822 0.354363 0.586572 0.448850 0.527078 0.521029 0.499083 0.577462 0.492083 0.652263 0.474583 0.712633 0.481583 0.843867 0.483333 0.905546 0.462333 0.971163 0.467583 0.996096 0.995072 1.000000 0.999517 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812786_4_7164903.txt b/datasets/pinganmajia/train/labels/订单1812786_4_7164903.txt new file mode 100644 index 0000000..7df90f7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812786_4_7164903.txt @@ -0,0 +1 @@ +4 0.819294 0.253316 0.761551 0.254627 0.745810 0.265130 0.737060 0.304497 0.731806 0.328116 0.714306 0.342552 0.649572 0.387179 0.632072 0.412109 0.607569 0.461979 0.595324 0.498724 0.595324 0.553845 0.611076 0.584028 0.640822 0.597153 0.651319 0.587960 0.649572 0.559089 0.647813 0.524974 0.654815 0.485599 0.668819 0.437040 0.663565 0.481667 0.654815 0.544653 0.630324 0.632578 0.630324 0.675885 0.630324 0.774314 0.621574 0.804497 0.612824 0.821563 0.635567 0.833368 0.672315 0.812370 0.679317 0.771693 0.695058 0.721823 0.710810 0.665391 0.717813 0.717882 0.712558 0.779566 0.716053 0.803186 0.754549 0.833368 0.794803 0.843872 0.815799 0.833368 0.784306 0.801875 0.772049 0.779566 0.772049 0.703446 0.773796 0.623394 0.793044 0.578776 0.829792 0.553845 0.843796 0.509219 0.901539 0.410799 0.880532 0.358307 0.845544 0.343872 0.824549 0.328116 0.831539 0.304497 0.831539 0.290061 diff --git a/datasets/pinganmajia/train/labels/订单1812789_4_7165059.txt b/datasets/pinganmajia/train/labels/订单1812789_4_7165059.txt new file mode 100644 index 0000000..c354c55 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812789_4_7165059.txt @@ -0,0 +1 @@ +4 0.000490 0.364804 0.077484 0.350368 0.089722 0.312304 0.094984 0.276875 0.110719 0.244069 0.121225 0.190257 0.182467 0.141703 0.245458 0.129890 0.310196 0.135147 0.388938 0.156140 0.448431 0.221752 0.453676 0.254571 0.450180 0.325429 0.444935 0.359559 0.411683 0.426483 0.373186 0.476348 0.334690 0.501287 0.357451 0.527537 0.371438 0.570833 0.413431 0.628578 0.446683 0.699449 0.457190 0.751936 0.492173 0.821495 0.532418 0.900233 0.553415 0.964534 0.437941 0.993407 0.105474 0.993407 0.000000 0.997243 0.000000 0.453076 diff --git a/datasets/pinganmajia/train/labels/订单1812790_4_7164991.txt b/datasets/pinganmajia/train/labels/订单1812790_4_7164991.txt new file mode 100644 index 0000000..09b8238 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812790_4_7164991.txt @@ -0,0 +1 @@ +4 0.976767 0.132575 0.885778 0.110265 0.768544 0.107641 0.719549 0.120764 0.647808 0.178506 0.626812 0.228376 0.630310 0.290055 0.633809 0.372733 0.616311 0.427851 0.632061 0.463284 0.612812 0.493468 0.513076 0.612891 0.495578 0.664072 0.485078 0.707379 0.457081 0.786118 0.429085 0.864859 0.453583 0.909478 0.448333 0.981657 0.451832 0.994779 0.999514 0.998718 1.000000 0.953670 1.000000 0.507077 0.957520 0.464597 0.976767 0.412103 0.990766 0.343862 0.999514 0.318928 diff --git a/datasets/pinganmajia/train/labels/订单1812791_4_7164958.txt b/datasets/pinganmajia/train/labels/订单1812791_4_7164958.txt new file mode 100644 index 0000000..6d1932e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812791_4_7164958.txt @@ -0,0 +1 @@ +4 0.910289 0.210009 0.899780 0.122083 0.866539 0.057778 0.807049 0.015781 0.731806 0.015781 0.654815 0.015781 0.583079 0.022344 0.541076 0.047283 0.507836 0.101085 0.492083 0.171953 0.481586 0.245443 0.486840 0.304497 0.513079 0.379297 0.548079 0.426545 0.534086 0.484288 0.453588 0.577465 0.430845 0.628646 0.394097 0.674575 0.355602 0.698194 0.308356 0.708698 0.278611 0.728385 0.240116 0.779566 0.247118 0.825495 0.327604 0.858307 0.380104 0.853056 0.392350 0.883238 0.362604 0.959358 0.341609 0.990851 0.996019 0.997413 1.000000 0.743160 1.000000 0.517413 0.992523 0.437040 0.952280 0.391111 0.920787 0.356988 0.896285 0.309748 0.913785 0.252005 diff --git a/datasets/pinganmajia/train/labels/订单1812792_4_7164997.txt b/datasets/pinganmajia/train/labels/订单1812792_4_7164997.txt new file mode 100644 index 0000000..2eb4415 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812792_4_7164997.txt @@ -0,0 +1 @@ +4 1.000000 0.243941 0.957523 0.236259 0.887535 0.233628 0.803553 0.234948 0.756308 0.252005 0.700313 0.283498 0.670567 0.335998 0.675810 0.387179 0.670567 0.452795 0.674063 0.500035 0.691562 0.539410 0.679317 0.577465 0.646065 0.591901 0.549826 0.649644 0.502581 0.703446 0.479838 0.758568 0.481586 0.804497 0.497338 0.839931 0.462338 0.998724 0.992523 0.998724 1.000000 0.691267 1.000000 0.565503 0.978530 0.555156 0.994271 0.532847 1.000000 0.415269 diff --git a/datasets/pinganmajia/train/labels/订单1812794_4_7164955.txt b/datasets/pinganmajia/train/labels/订单1812794_4_7164955.txt new file mode 100644 index 0000000..0decb20 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812794_4_7164955.txt @@ -0,0 +1 @@ +4 0.969744 0.204740 0.910256 0.171933 0.829769 0.149625 0.728282 0.145683 0.654795 0.166683 0.588295 0.209990 0.549808 0.335971 0.551551 0.402904 0.558551 0.463269 0.579551 0.531510 0.532308 0.622067 0.460564 0.667990 0.436064 0.716548 0.422064 0.796606 0.401064 0.868779 0.380077 0.956712 0.381821 0.993452 1.000000 0.996067 1.000000 0.519231 0.976744 0.510510 1.000000 0.439596 1.000000 0.350558 0.980244 0.332038 0.978500 0.279538 diff --git a/datasets/pinganmajia/train/labels/订单1812797_4_7165010.txt b/datasets/pinganmajia/train/labels/订单1812797_4_7165010.txt new file mode 100644 index 0000000..9312955 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812797_4_7165010.txt @@ -0,0 +1 @@ +4 0.791296 0.639141 0.814051 0.603707 0.828044 0.576155 0.808796 0.574835 0.884039 0.528906 0.871794 0.479036 0.859537 0.458038 0.856042 0.439670 0.828044 0.417361 0.786053 0.392422 0.751053 0.384549 0.710810 0.379297 0.647813 0.388490 0.609317 0.405547 0.584826 0.426545 0.570822 0.454106 0.539329 0.497413 0.493831 0.582717 0.434340 0.595833 0.226123 0.678516 0.107130 0.755938 0.056389 0.805807 0.019641 0.863550 0.012650 0.904236 0.061644 0.958038 0.014398 0.975104 0.000000 0.992769 0.000000 0.998715 0.663565 0.997413 0.998368 1.000000 1.000000 1.000000 1.000000 0.996953 0.866539 0.860929 0.815799 0.816311 0.756308 0.790061 0.716053 0.759878 0.768553 0.738880 0.791296 0.661450 0.789549 0.640460 diff --git a/datasets/pinganmajia/train/labels/订单1812798_4_7165022.txt b/datasets/pinganmajia/train/labels/订单1812798_4_7165022.txt new file mode 100644 index 0000000..90f33ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812798_4_7165022.txt @@ -0,0 +1 @@ +4 0.556822 0.242817 0.562072 0.216567 0.572572 0.175888 0.558572 0.140454 0.523578 0.128642 0.492083 0.132579 0.462333 0.148325 0.450089 0.164075 0.446589 0.187696 0.451839 0.216567 0.450089 0.252000 0.432589 0.269062 0.392344 0.291371 0.366100 0.337304 0.352100 0.398983 0.352100 0.463288 0.388844 0.545967 0.392344 0.565650 0.415094 0.584021 0.427339 0.589271 0.432589 0.565650 0.429089 0.513158 0.413344 0.476413 0.418589 0.435729 0.423839 0.377987 0.427339 0.404233 0.418589 0.463288 0.432589 0.543342 0.451839 0.666700 0.474583 0.786121 0.464083 0.816304 0.460589 0.862237 0.474583 0.879300 0.509578 0.884546 0.518328 0.872738 0.514828 0.833367 0.516578 0.783496 0.527078 0.698196 0.530578 0.665388 0.532328 0.589271 0.542828 0.656200 0.546328 0.704758 0.539328 0.790058 0.555072 0.822867 0.567322 0.851738 0.588322 0.868800 0.616317 0.862237 0.623317 0.837304 0.598817 0.796621 0.593572 0.759875 0.595322 0.657512 0.618067 0.589271 0.612817 0.544654 0.625067 0.484283 0.614567 0.371425 0.623317 0.532842 0.637317 0.580083 0.660061 0.535467 0.691556 0.456725 0.688056 0.419979 0.681061 0.359613 0.640811 0.286121 0.600567 0.255937 0.572572 0.245442 diff --git a/datasets/pinganmajia/train/labels/订单1812800_4_7165037.txt b/datasets/pinganmajia/train/labels/订单1812800_4_7165037.txt new file mode 100644 index 0000000..2e23811 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812800_4_7165037.txt @@ -0,0 +1 @@ +4 0.392257 0.363565 0.420807 0.308449 0.436554 0.250706 0.478872 0.210023 0.516276 0.128657 0.505451 0.043356 0.488715 0.005301 0.201319 0.000046 0.195408 0.052546 0.183602 0.114225 0.177691 0.169340 0.147179 0.200833 0.113715 0.229711 0.078281 0.253333 0.000000 0.243021 0.000000 0.795000 0.000530 0.997419 0.281042 0.998738 0.309583 0.972488 0.308602 0.989549 0.420807 0.967234 0.417847 0.900312 0.411944 0.782199 0.435564 0.682465 0.435564 0.623403 0.413915 0.543356 0.455252 0.485613 0.459193 0.444931 0.442457 0.427870 0.408993 0.383252 diff --git a/datasets/pinganmajia/train/labels/订单1812801_4_7165050.txt b/datasets/pinganmajia/train/labels/订单1812801_4_7165050.txt new file mode 100644 index 0000000..44cee08 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812801_4_7165050.txt @@ -0,0 +1 @@ +4 0.175474 0.580025 0.136977 0.534093 0.138725 0.513100 0.108971 0.496042 0.122974 0.406801 0.140474 0.351679 0.198219 0.305748 0.276961 0.275564 0.318954 0.284755 0.420441 0.330686 0.453676 0.368738 0.506176 0.410735 0.516667 0.450110 0.476422 0.473725 0.485180 0.527537 0.485180 0.552463 0.465931 0.598395 0.455425 0.619400 0.478186 0.645637 0.504428 0.695515 0.528922 0.754571 0.567418 0.805748 0.565670 0.849056 0.574412 0.900233 0.590163 0.967169 0.002239 0.994718 0.007484 0.712574 0.143971 0.598395 0.171961 0.581336 diff --git a/datasets/pinganmajia/train/labels/订单1812805_4_7165073.txt b/datasets/pinganmajia/train/labels/订单1812805_4_7165073.txt new file mode 100644 index 0000000..017200f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812805_4_7165073.txt @@ -0,0 +1 @@ +4 0.175474 0.267684 0.002239 0.237500 0.002239 0.351679 0.002239 0.996042 0.635654 0.978971 0.541176 0.938297 0.525425 0.818873 0.485180 0.675821 0.418693 0.452733 0.376699 0.370049 0.444935 0.286066 0.464183 0.206005 0.446683 0.144326 0.420441 0.116777 0.373186 0.102341 0.296209 0.102341 0.229706 0.120711 0.184216 0.183701 0.191209 0.212574 0.163219 0.209951 0.164967 0.244069 diff --git a/datasets/pinganmajia/train/labels/订单1812806_4_7165100.txt b/datasets/pinganmajia/train/labels/订单1812806_4_7165100.txt new file mode 100644 index 0000000..722a2fa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812806_4_7165100.txt @@ -0,0 +1 @@ +4 0.327693 0.249320 0.313707 0.194200 0.290947 0.158770 0.241960 0.137770 0.185960 0.133830 0.152720 0.144330 0.136973 0.179760 0.135227 0.219130 0.131720 0.246690 0.135227 0.265070 0.124720 0.297870 0.108973 0.330680 0.091480 0.363490 0.056480 0.402860 0.017987 0.469790 0.010987 0.548530 0.035480 0.612830 0.154467 0.817560 0.170213 0.854300 0.231467 0.875300 0.245453 0.851680 0.245453 0.837240 0.264707 0.852990 0.266453 0.902860 0.271707 0.951420 0.290947 0.996040 0.406440 0.999970 0.420440 0.978980 0.411693 0.918610 0.401187 0.864800 0.432680 0.894990 0.453680 0.956670 0.465933 0.992100 0.611160 0.990790 0.598920 0.992100 0.560413 0.935670 0.553427 0.849050 0.513173 0.727010 0.511427 0.682390 0.539427 0.733570 0.556920 0.720450 0.567413 0.706010 0.551667 0.673200 0.567413 0.607580 0.537667 0.549840 0.532427 0.485540 0.492173 0.419920 0.446680 0.362180 0.395933 0.334620 0.376693 0.316250 0.367947 0.271630 diff --git a/datasets/pinganmajia/train/labels/订单1812810_4_7165119.txt b/datasets/pinganmajia/train/labels/订单1812810_4_7165119.txt new file mode 100644 index 0000000..0e7697d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812810_4_7165119.txt @@ -0,0 +1 @@ +4 0.651405 0.005221 0.609412 0.060343 0.567418 0.135147 0.549918 0.216507 0.551667 0.283444 0.570915 0.352990 0.584918 0.419926 0.427435 0.481605 0.388938 0.610208 0.388938 0.658762 0.353938 0.720441 0.313693 0.889743 0.381944 0.997353 1.000000 0.997353 1.000000 0.921985 0.983873 0.531471 1.000000 0.508370 1.000000 0.005221 diff --git a/datasets/pinganmajia/train/labels/订单1812814_4_7165128.txt b/datasets/pinganmajia/train/labels/订单1812814_4_7165128.txt new file mode 100644 index 0000000..b202f66 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812814_4_7165128.txt @@ -0,0 +1 @@ +4 0.720977 0.005271 0.704242 0.068260 0.694398 0.158812 0.697352 0.257240 0.713102 0.334667 0.667828 0.425208 0.610742 0.500021 0.544797 0.623375 0.519203 0.745427 0.513297 0.821542 0.526094 0.876656 0.528062 0.959333 0.555625 0.996083 0.590070 0.990833 0.608773 0.934396 0.634359 0.965896 0.661906 1.000000 0.666195 1.000000 0.998539 0.998708 0.998539 0.347781 0.962117 0.309729 0.959164 0.270354 0.970977 0.249365 0.973930 0.204740 0.976883 0.144375 0.959164 0.150938 0.944398 0.111562 0.933578 0.031510 0.910937 0.002646 diff --git a/datasets/pinganmajia/train/labels/订单1812816_4_7165171.txt b/datasets/pinganmajia/train/labels/订单1812816_4_7165171.txt new file mode 100644 index 0000000..995fcd5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812816_4_7165171.txt @@ -0,0 +1 @@ +4 0.353971 0.011797 0.343464 0.129912 0.332969 0.224404 0.318971 0.316260 0.320716 0.346445 0.404714 0.450117 0.441458 0.561670 0.437956 0.610225 0.444961 0.678467 0.479948 0.738838 0.485208 0.779521 0.492201 0.825449 0.509701 0.870068 0.535951 0.965869 0.509701 0.999990 0.004010 0.999990 0.000000 0.619336 0.000000 0.004072 diff --git a/datasets/pinganmajia/train/labels/订单1812818_4_7165196.txt b/datasets/pinganmajia/train/labels/订单1812818_4_7165196.txt new file mode 100644 index 0000000..7074814 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812818_4_7165196.txt @@ -0,0 +1 @@ +4 0.252333 0.200798 0.168346 0.216548 0.135103 0.275606 0.138603 0.334663 0.140359 0.367471 0.154346 0.414712 0.110603 0.422587 0.073859 0.456712 0.065115 0.482952 0.009115 0.503952 0.000000 0.827115 0.000000 1.000000 0.595295 1.000000 0.591795 0.960644 0.556795 0.889779 0.504308 0.797913 0.492064 0.662740 0.518308 0.643058 0.427321 0.542010 0.444821 0.513135 0.429064 0.468519 0.453564 0.395029 0.450064 0.337288 0.474564 0.267731 0.437821 0.211298 0.367821 0.167990 0.310077 0.169308 0.266333 0.188990 diff --git a/datasets/pinganmajia/train/labels/订单1812820_4_7165200.txt b/datasets/pinganmajia/train/labels/订单1812820_4_7165200.txt new file mode 100644 index 0000000..cccdfa0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812820_4_7165200.txt @@ -0,0 +1 @@ +4 0.011349 0.170588 0.031771 0.170588 0.119305 0.095784 0.183501 0.076103 0.481131 0.059044 0.644537 0.136471 0.644537 0.192898 0.609523 0.236207 0.542411 0.335944 0.396512 0.426495 0.484046 0.463241 0.387752 0.497359 0.393597 0.581354 0.405259 0.632531 0.451948 0.741458 0.524905 0.964553 0.516144 0.998676 0.002602 0.997359 diff --git a/datasets/pinganmajia/train/labels/订单1812821_4_7165186.txt b/datasets/pinganmajia/train/labels/订单1812821_4_7165186.txt new file mode 100644 index 0000000..f9c0df3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812821_4_7165186.txt @@ -0,0 +1 @@ +4 0.392350 0.009219 0.432593 0.082717 0.430845 0.169332 0.430845 0.275625 0.427350 0.316311 0.416840 0.376675 0.513079 0.517092 0.502581 0.606337 0.619815 0.669332 0.630324 0.710009 0.602326 0.771693 0.572581 0.784809 0.584826 0.881927 0.607569 0.998724 0.000000 0.997413 0.000000 0.612630 0.002153 0.001345 diff --git a/datasets/pinganmajia/train/labels/订单1812823_4_7165228.txt b/datasets/pinganmajia/train/labels/订单1812823_4_7165228.txt new file mode 100644 index 0000000..e6c64a8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812823_4_7165228.txt @@ -0,0 +1 @@ +4 0.726667 0.282139 0.696927 0.307080 0.691680 0.322822 0.660182 0.345137 0.647930 0.368760 0.632188 0.396318 0.605938 0.419941 0.572695 0.465869 0.560443 0.528857 0.581445 0.574795 0.598932 0.589229 0.621680 0.614160 0.635677 0.618105 0.637435 0.849072 0.633932 0.889756 0.654935 0.905498 0.675924 0.897627 0.682930 0.864824 0.689922 0.821514 0.710924 0.750645 0.721419 0.779521 0.712669 0.835947 0.712669 0.864824 0.800156 0.905498 0.803659 0.881885 0.777422 0.850381 0.798411 0.791328 0.807161 0.725713 0.814167 0.656162 0.856159 0.632539 0.864909 0.603662 0.896406 0.551172 0.889401 0.493428 0.850911 0.406816 0.847409 0.389756 0.796667 0.368760 0.798411 0.342510 0.794909 0.300518 0.763411 0.278203 0.740664 0.278203 diff --git a/datasets/pinganmajia/train/labels/订单1812824_4_7165260.txt b/datasets/pinganmajia/train/labels/订单1812824_4_7165260.txt new file mode 100644 index 0000000..70eae89 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812824_4_7165260.txt @@ -0,0 +1 @@ +4 0.007484 0.166642 0.045980 0.141703 0.049477 0.101017 0.107222 0.049841 0.184216 0.014412 0.276781 0.000000 0.277026 0.000000 0.355703 0.032782 0.418693 0.095772 0.457190 0.153517 0.441438 0.266373 0.423938 0.324118 0.385441 0.380551 0.324199 0.456667 0.283954 0.493407 0.299706 0.548529 0.359199 0.607586 0.339951 0.716507 0.367941 0.870049 0.352190 0.900233 0.348693 0.931728 0.369690 0.977659 0.378448 0.998664 0.002239 0.999975 0.012745 0.162708 diff --git a/datasets/pinganmajia/train/labels/订单1812825_4_7165347.txt b/datasets/pinganmajia/train/labels/订单1812825_4_7165347.txt new file mode 100644 index 0000000..ac4596f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812825_4_7165347.txt @@ -0,0 +1 @@ +4 0.721809 0.005241 0.694142 0.044616 0.678333 0.083984 0.663515 0.182409 0.654618 0.300521 0.682284 0.384505 0.596319 0.393691 0.452059 0.624668 0.468853 0.786081 0.513319 0.889759 0.491583 0.998678 0.954020 0.998678 0.941172 0.956686 0.945123 0.864824 0.959946 0.803145 0.969828 0.759837 0.998480 0.791335 1.000000 0.599173 1.000000 0.415625 0.875956 0.383197 0.835446 0.339889 0.850265 0.287396 0.870029 0.271647 0.888804 0.196842 0.869039 0.198158 0.886824 0.103665 0.879907 0.041986 0.850265 0.006556 diff --git a/datasets/pinganmajia/train/labels/订单1812826_4_7165219.txt b/datasets/pinganmajia/train/labels/订单1812826_4_7165219.txt new file mode 100644 index 0000000..c05b4a7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812826_4_7165219.txt @@ -0,0 +1 @@ +4 0.590182 0.196846 0.563945 0.221777 0.576185 0.257207 0.569193 0.279521 0.514948 0.314951 0.490456 0.377939 0.497448 0.492119 0.507943 0.520986 0.530690 0.510488 0.574440 0.653535 0.569193 0.687656 0.597187 0.724404 0.549948 0.757207 0.551693 0.772959 0.618190 0.763770 0.609440 0.799199 0.630430 0.816260 0.656680 0.816260 0.656680 0.793955 0.656680 0.753271 0.672435 0.729648 0.663685 0.715215 0.696927 0.541982 0.710924 0.530176 0.745924 0.519678 0.751172 0.492119 0.763411 0.443564 0.754674 0.379258 0.703919 0.292646 0.653177 0.279521 0.644427 0.267705 0.658424 0.238838 0.653177 0.207344 diff --git a/datasets/pinganmajia/train/labels/订单1812827_4_7165287.txt b/datasets/pinganmajia/train/labels/订单1812827_4_7165287.txt new file mode 100644 index 0000000..2215534 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812827_4_7165287.txt @@ -0,0 +1 @@ +4 0.678649 0.178487 0.645183 0.195551 0.632389 0.237545 0.640264 0.300538 0.642231 0.347782 0.635341 0.429147 0.652077 0.514449 0.642231 0.539378 0.591053 0.563000 0.554635 0.598436 0.525106 0.653551 0.505423 0.695551 0.451288 0.750667 0.431601 0.839904 0.455226 0.971141 0.467034 0.989513 1.000000 0.999981 1.000000 0.601308 0.829240 0.479013 0.840067 0.437019 0.847942 0.404212 0.848923 0.354340 0.850894 0.293974 0.848923 0.190301 0.825303 0.161429 0.776091 0.128622 0.732784 0.124679 0.700303 0.145679 diff --git a/datasets/pinganmajia/train/labels/订单1812829_4_7165244.txt b/datasets/pinganmajia/train/labels/订单1812829_4_7165244.txt new file mode 100644 index 0000000..ba8ea7c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812829_4_7165244.txt @@ -0,0 +1 @@ +4 0.000000 0.460779 0.072253 0.393688 0.065247 0.372693 0.016255 0.376628 0.002253 0.300509 0.014506 0.257207 0.014506 0.145656 0.042500 0.106289 0.143992 0.055108 0.262973 0.059043 0.359218 0.107600 0.385463 0.136474 0.434455 0.198148 0.471204 0.251952 0.446698 0.261142 0.402953 0.366127 0.383714 0.430432 0.485195 0.511798 0.541193 0.559043 0.574434 0.615471 0.556934 0.665340 0.556934 0.779514 0.577932 0.846443 0.593683 0.929120 0.593683 0.975054 0.609434 0.999985 0.007510 0.999985 -0.000000 0.671813 diff --git a/datasets/pinganmajia/train/labels/订单1812830_4_7165286.txt b/datasets/pinganmajia/train/labels/订单1812830_4_7165286.txt new file mode 100644 index 0000000..fe5ad2c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812830_4_7165286.txt @@ -0,0 +1 @@ +4 1.000000 0.463025 0.868283 0.435729 0.868283 0.406858 0.892783 0.383233 0.885783 0.341242 0.885783 0.297933 0.870033 0.288746 0.857789 0.192946 0.798294 0.112896 0.730050 0.086646 0.642561 0.091896 0.577822 0.107646 0.469333 0.186383 0.462333 0.280871 0.485083 0.339929 0.521828 0.446229 0.548078 0.501346 0.583072 0.534154 0.532328 0.553837 0.483333 0.632579 0.436089 0.689008 0.462333 0.773000 0.394094 0.909483 0.385344 0.955412 0.360850 0.989533 0.348600 0.996096 0.999517 0.996096 1.000000 0.849592 diff --git a/datasets/pinganmajia/train/labels/订单1812831_4_7165383.txt b/datasets/pinganmajia/train/labels/订单1812831_4_7165383.txt new file mode 100644 index 0000000..d39a53e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812831_4_7165383.txt @@ -0,0 +1 @@ +4 0.004029 0.547244 0.040774 0.510502 0.049514 0.485561 0.035525 0.472441 0.033766 0.413386 0.047598 0.392392 0.056522 0.367451 0.067021 0.309715 0.130013 0.276900 0.259488 0.266407 0.315315 0.305778 0.367808 0.374016 0.376732 0.492126 0.339987 0.559055 0.339987 0.573494 0.329488 0.601053 0.364475 0.624675 0.390722 0.707352 0.401220 0.784774 0.420302 0.797904 0.401220 0.875325 0.402979 0.919951 0.418727 0.993435 0.005604 0.997372 0.002270 0.552490 diff --git a/datasets/pinganmajia/train/labels/订单1812832_4_7165384.txt b/datasets/pinganmajia/train/labels/订单1812832_4_7165384.txt new file mode 100644 index 0000000..8c7d4ab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812832_4_7165384.txt @@ -0,0 +1 @@ +4 0.012615 0.147000 0.089615 0.105000 0.224346 0.123375 0.292590 0.165365 0.343333 0.233615 0.343333 0.295288 0.318833 0.345163 0.304833 0.404212 0.345077 0.421279 0.406321 0.477702 0.427321 0.502644 0.397577 0.552510 0.411564 0.612875 0.420321 0.647000 0.422064 0.681115 0.422064 0.700798 0.565551 0.880596 0.586551 0.973769 0.556795 0.971144 0.551551 0.939644 0.542808 0.959337 0.514808 0.976394 0.513051 0.956712 0.504308 0.933087 0.430821 0.881904 0.422064 0.922587 0.415064 1.000000 0.412654 1.000000 0.000372 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1812833_4_7165277.txt b/datasets/pinganmajia/train/labels/订单1812833_4_7165277.txt new file mode 100644 index 0000000..0dd7392 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812833_4_7165277.txt @@ -0,0 +1 @@ +4 0.012842 0.463241 0.059658 0.444871 0.042104 0.408125 0.012842 0.385815 0.012842 0.333321 0.039180 0.318885 0.062582 0.236207 0.276175 0.173217 0.369795 0.170588 0.498538 0.211275 0.559986 0.251955 0.571680 0.307071 0.527801 0.406814 0.495615 0.469804 0.475137 0.496048 0.545355 0.545919 0.571680 0.661403 0.571680 0.696838 0.530724 0.755895 0.516093 0.793952 0.530724 0.845129 0.571680 0.933058 0.562910 0.964553 0.513169 0.997359 0.006995 0.998676 diff --git a/datasets/pinganmajia/train/labels/订单1812834_4_7165317.txt b/datasets/pinganmajia/train/labels/订单1812834_4_7165317.txt new file mode 100644 index 0000000..110ea66 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812834_4_7165317.txt @@ -0,0 +1 @@ +4 0.002239 0.199449 0.051225 0.157451 0.135229 0.146961 0.245458 0.160074 0.301454 0.200760 0.346944 0.280809 0.357451 0.333309 0.346944 0.384485 0.345196 0.418603 0.345196 0.452733 0.320703 0.478971 0.352190 0.510466 0.530670 0.635147 0.537680 0.755882 0.542925 0.813627 0.548170 0.938297 0.548170 0.968480 0.616405 0.971103 0.499183 0.996042 0.000490 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1812836_4_7165306.txt b/datasets/pinganmajia/train/labels/订单1812836_4_7165306.txt new file mode 100644 index 0000000..f1f8817 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812836_4_7165306.txt @@ -0,0 +1 @@ +4 0.005451 0.346505 0.030052 0.324190 0.048759 0.153588 0.090095 0.001366 0.271198 0.003981 0.325330 0.081412 0.339115 0.220521 0.339115 0.287454 0.314505 0.358310 0.282023 0.406875 0.315486 0.422616 0.325330 0.509236 0.347969 0.578785 0.366667 0.650972 0.388325 0.713958 0.416866 0.812384 0.412925 0.904248 0.414896 0.969861 0.407023 0.994803 0.000000 0.998727 0.000000 0.948356 diff --git a/datasets/pinganmajia/train/labels/订单1812837_4_7165590.txt b/datasets/pinganmajia/train/labels/订单1812837_4_7165590.txt new file mode 100644 index 0000000..eec3a47 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812837_4_7165590.txt @@ -0,0 +1 @@ +4 0.705252 0.011863 0.688524 0.073542 0.688524 0.116840 0.688524 0.149653 0.694427 0.182465 0.702300 0.244144 0.705252 0.309757 0.681632 0.362257 0.575330 0.404248 0.545807 0.469861 0.517257 0.534167 0.473950 0.637847 0.447378 0.698206 0.441476 0.820255 0.448359 0.877998 0.493637 0.909502 0.481832 0.942303 0.437535 0.998738 0.980842 0.998738 1.000000 0.970764 1.000000 0.552153 0.999540 0.426563 0.944427 0.366192 0.938524 0.309757 0.953281 0.261204 0.973950 0.202153 0.978872 0.166713 0.984783 0.091910 0.977891 0.038102 0.964115 0.002674 diff --git a/datasets/pinganmajia/train/labels/订单1812838_4_7165341.txt b/datasets/pinganmajia/train/labels/订单1812838_4_7165341.txt new file mode 100644 index 0000000..01024b4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812838_4_7165341.txt @@ -0,0 +1 @@ +4 0.579229 0.481621 0.539858 0.555111 0.521157 0.628600 0.504424 0.671908 0.426670 0.847760 0.410923 0.940937 0.419780 0.993431 1.000000 0.999935 1.000000 0.610788 0.870566 0.544616 0.885332 0.234902 0.854819 0.157474 0.826274 0.123353 0.781982 0.123353 0.730801 0.135163 0.670762 0.167975 0.577261 0.278210 0.565449 0.384505 diff --git a/datasets/pinganmajia/train/labels/订单1812839_4_7165371.txt b/datasets/pinganmajia/train/labels/订单1812839_4_7165371.txt new file mode 100644 index 0000000..0d0eac7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812839_4_7165371.txt @@ -0,0 +1 @@ +4 1.000000 0.137454 0.903283 0.102396 0.810544 0.105021 0.693306 0.137829 0.597067 0.200821 0.567322 0.258562 0.567322 0.396358 0.583072 0.447537 0.675811 0.527592 0.618067 0.572213 0.555072 0.671950 0.560322 0.716567 0.565572 0.784808 0.556822 0.849112 0.504333 0.892421 0.478083 0.935729 0.497333 0.976412 0.493839 1.000000 0.500194 1.000000 1.000000 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1812840_4_7165291.txt b/datasets/pinganmajia/train/labels/订单1812840_4_7165291.txt new file mode 100644 index 0000000..e841c3a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812840_4_7165291.txt @@ -0,0 +1 @@ +4 0.268229 0.001299 0.262982 0.265078 0.257734 0.286084 0.257734 0.328076 0.318971 0.433066 0.359219 0.460625 0.360964 0.566924 0.381966 0.615479 0.409961 0.649600 0.446706 0.708652 0.453711 0.736211 0.495703 0.753271 0.488698 0.796582 0.472956 0.822822 0.458958 0.839883 0.502695 0.965869 0.513203 0.997363 0.002266 0.998682 0.000000 0.354736 0.000000 0.002607 diff --git a/datasets/pinganmajia/train/labels/订单1812841_4_7165364.txt b/datasets/pinganmajia/train/labels/订单1812841_4_7165364.txt new file mode 100644 index 0000000..38899d2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812841_4_7165364.txt @@ -0,0 +1 @@ +4 0.003377 0.635206 0.161060 0.526275 0.157552 0.481657 0.173325 0.463284 0.185589 0.430480 0.246911 0.345176 0.343272 0.333363 0.441387 0.353049 0.488691 0.409480 0.492199 0.494784 0.471178 0.580088 0.436139 0.640451 0.504463 0.729686 0.497461 0.755941 0.481688 0.807118 0.478181 0.868794 0.474673 0.888480 0.485196 0.959353 0.478181 0.993471 0.005628 1.000000 0.003377 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812842_4_7165376.txt b/datasets/pinganmajia/train/labels/订单1812842_4_7165376.txt new file mode 100644 index 0000000..07c1919 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812842_4_7165376.txt @@ -0,0 +1 @@ +4 0.119492 0.241465 0.096745 0.254580 0.100247 0.278203 0.107253 0.304453 0.075755 0.326758 0.056510 0.347764 0.053008 0.464561 0.072253 0.490801 0.093255 0.513115 0.105495 0.544609 0.140495 0.559043 0.159740 0.611543 0.170247 0.652227 0.136992 0.686338 0.150990 0.695527 0.191237 0.683721 0.220990 0.673223 0.205234 0.582666 0.215742 0.573486 0.240234 0.658779 0.231484 0.687656 0.243737 0.700781 0.266484 0.690283 0.269974 0.664033 0.268229 0.540674 0.283971 0.534111 0.268229 0.497363 0.280482 0.477686 0.282227 0.409443 0.248984 0.335947 0.224479 0.314951 0.198242 0.308389 0.185990 0.290020 0.171992 0.258525 0.156237 0.238838 diff --git a/datasets/pinganmajia/train/labels/订单1812843_4_7165418.txt b/datasets/pinganmajia/train/labels/订单1812843_4_7165418.txt new file mode 100644 index 0000000..edd4e1a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812843_4_7165418.txt @@ -0,0 +1 @@ +4 0.014264 0.031483 0.171839 0.022298 0.268120 0.031483 0.367330 0.061667 0.416935 0.137782 0.364414 0.212586 0.288556 0.324136 0.244782 0.355631 0.236022 0.370067 0.128065 0.423873 0.268120 0.446183 0.203937 0.475055 0.201008 0.564289 0.189346 0.608909 0.271035 0.713897 0.320640 0.783450 0.414019 0.951428 0.431526 0.999988 0.002602 0.998676 diff --git a/datasets/pinganmajia/train/labels/订单1812844_4_7165403.txt b/datasets/pinganmajia/train/labels/订单1812844_4_7165403.txt new file mode 100644 index 0000000..18994e8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812844_4_7165403.txt @@ -0,0 +1 @@ +4 0.002253 0.505239 0.032006 0.472431 0.037253 0.442245 0.023251 0.421250 0.016255 0.396312 0.023251 0.360880 0.018004 0.301821 0.056502 0.230957 0.128241 0.190278 0.212233 0.183711 0.278724 0.207338 0.346965 0.261142 0.367963 0.322824 0.371461 0.385818 0.369712 0.454059 0.359218 0.498673 0.336471 0.544606 0.394208 0.593164 0.425710 0.631219 0.486944 0.709961 0.499198 0.788704 0.514949 0.830694 0.520195 0.885818 0.551687 0.961929 0.597181 0.999985 0.000504 0.997361 diff --git a/datasets/pinganmajia/train/labels/订单1812845_4_7165460.txt b/datasets/pinganmajia/train/labels/订单1812845_4_7165460.txt new file mode 100644 index 0000000..1dad98c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812845_4_7165460.txt @@ -0,0 +1 @@ +4 0.009232 0.560343 0.047729 0.543284 0.061732 0.511789 0.105474 0.477659 0.159722 0.472414 0.166716 0.450110 0.136977 0.446164 0.117729 0.397610 0.136977 0.377929 0.145719 0.321495 0.180719 0.286066 0.271699 0.242757 0.355703 0.245380 0.388938 0.276875 0.420441 0.317561 0.422190 0.375306 0.441438 0.408113 0.436176 0.456667 0.432680 0.471103 0.437941 0.506532 0.427435 0.547218 0.542925 0.639081 0.595408 0.734877 0.630408 0.829375 0.654902 0.905490 0.644412 0.946164 0.658399 0.976348 0.688154 0.999975 0.000000 0.998664 0.000000 0.946017 diff --git a/datasets/pinganmajia/train/labels/订单1812846_4_7165437.txt b/datasets/pinganmajia/train/labels/订单1812846_4_7165437.txt new file mode 100644 index 0000000..18d5e62 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812846_4_7165437.txt @@ -0,0 +1 @@ +4 0.000490 0.800502 0.049477 0.720441 0.045980 0.671887 0.044232 0.650895 0.019739 0.566900 0.070474 0.507843 0.145719 0.498664 0.250703 0.484228 0.324199 0.515723 0.357451 0.570833 0.366193 0.619400 0.364444 0.669265 0.350441 0.720441 0.357451 0.757194 0.397696 0.792623 0.423938 0.820184 0.441438 0.870049 0.507925 0.938297 0.495670 0.998664 0.000000 0.998664 0.000000 0.855821 diff --git a/datasets/pinganmajia/train/labels/订单1812849_4_7165457.txt b/datasets/pinganmajia/train/labels/订单1812849_4_7165457.txt new file mode 100644 index 0000000..aba6f31 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812849_4_7165457.txt @@ -0,0 +1 @@ +4 0.008403 0.301887 0.021198 0.294016 0.004462 0.249387 0.005451 0.198206 0.021198 0.191644 0.010373 0.112905 0.031042 0.059109 0.061554 0.030231 0.094028 0.007917 0.135373 0.001366 0.170807 0.006609 0.264306 0.078785 0.294818 0.152280 0.281042 0.216586 0.261354 0.301887 0.253481 0.336007 0.238715 0.393750 0.255451 0.440995 0.250530 0.471181 0.261354 0.517106 0.312535 0.626030 0.335174 0.689028 0.351910 0.724456 0.366667 0.755949 0.385373 0.792697 0.406042 0.853067 0.407023 0.896377 0.387335 0.944931 0.356832 0.981678 0.347969 0.994803 0.005451 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1812850_4_7165468.txt b/datasets/pinganmajia/train/labels/订单1812850_4_7165468.txt new file mode 100644 index 0000000..f6b62bc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812850_4_7165468.txt @@ -0,0 +1 @@ +4 0.985621 0.144326 0.910376 0.167953 0.842141 0.177132 0.779134 0.175821 0.742402 0.167953 0.710899 0.124645 0.611160 0.011789 0.511422 0.005221 0.427435 0.020968 0.376699 0.081336 0.345196 0.150895 0.357451 0.216507 0.401193 0.271630 0.462435 0.356924 0.516667 0.370049 0.471176 0.409424 0.425686 0.477659 0.446683 0.565588 0.467680 0.595772 0.476422 0.654828 0.479935 0.679767 0.537680 0.749314 0.590163 0.814939 0.651405 0.862181 0.675899 0.860870 0.737141 0.896299 0.763399 0.893676 0.878873 0.956667 0.931373 0.947475 1.000000 0.996373 1.000000 0.923468 diff --git a/datasets/pinganmajia/train/labels/订单1812851_4_7165521.txt b/datasets/pinganmajia/train/labels/订单1812851_4_7165521.txt new file mode 100644 index 0000000..15a574f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812851_4_7165521.txt @@ -0,0 +1 @@ +4 0.007396 0.144392 0.142130 0.132578 0.252361 0.148333 0.332859 0.211319 0.359109 0.278255 0.362604 0.316311 0.352106 0.388490 0.350359 0.435729 0.331111 0.493472 0.378345 0.572214 0.409850 0.639141 0.457095 0.740191 0.500833 0.829436 0.500833 0.917361 0.507836 0.980347 0.001319 1.000000 0.000394 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812853_4_7165501.txt b/datasets/pinganmajia/train/labels/订单1812853_4_7165501.txt new file mode 100644 index 0000000..2e09ee6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812853_4_7165501.txt @@ -0,0 +1 @@ +4 0.000509 0.207377 0.082206 0.253309 0.095000 0.253309 0.109761 0.213938 0.157990 0.173252 0.205239 0.084020 0.249528 0.002647 0.349920 0.005278 0.413897 0.119453 0.416850 0.181127 0.419804 0.242810 0.408977 0.249371 0.372561 0.409477 0.371575 0.507900 0.365668 0.518399 0.341060 0.624698 0.347953 0.702124 0.324332 0.713938 0.320392 0.793987 0.315472 0.850417 0.293817 0.981650 0.289884 0.997402 0.000515 0.998717 diff --git a/datasets/pinganmajia/train/labels/订单1812855_4_7165473.txt b/datasets/pinganmajia/train/labels/订单1812855_4_7165473.txt new file mode 100644 index 0000000..7d869a2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812855_4_7165473.txt @@ -0,0 +1 @@ +4 0.513948 0.384549 0.463203 0.396353 0.429961 0.458039 0.412471 0.507902 0.405464 0.599765 0.429961 0.623392 0.445712 0.603706 0.463203 0.494784 0.478954 0.468539 0.466706 0.518402 0.461464 0.586647 0.456209 0.662765 0.452706 0.833363 0.442209 0.867480 0.457961 0.880608 0.489451 0.868794 0.513948 0.824176 0.527948 0.712627 0.543699 0.645696 0.555948 0.717882 0.533203 0.822863 0.564693 0.867480 0.604941 0.874049 0.606693 0.847804 0.596196 0.793990 0.618941 0.650951 0.632941 0.585333 0.625935 0.480343 0.643438 0.542029 0.648680 0.620765 0.657438 0.635206 0.687176 0.615520 0.687176 0.557775 0.664431 0.456725 0.650431 0.404235 0.606693 0.388480 0.625935 0.314990 0.594444 0.292686 0.555948 0.291373 0.524458 0.309745 0.519203 0.334676 diff --git a/datasets/pinganmajia/train/labels/订单1812856_4_7165609.txt b/datasets/pinganmajia/train/labels/订单1812856_4_7165609.txt new file mode 100644 index 0000000..03771f3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812856_4_7165609.txt @@ -0,0 +1 @@ +4 1.000000 0.332469 0.943642 0.297886 0.868395 0.282137 0.810658 0.290015 0.751163 0.314946 0.684671 0.367438 0.667171 0.469807 0.688169 0.560355 0.689918 0.581350 0.546440 0.662716 0.537695 0.698148 0.534187 0.738835 0.520195 0.788704 0.493951 0.895000 0.495700 0.936998 0.593683 0.999985 0.996132 0.999985 0.996132 0.547230 0.980381 0.539360 0.999630 0.518356 1.000000 0.479583 diff --git a/datasets/pinganmajia/train/labels/订单1812857_4_7165573.txt b/datasets/pinganmajia/train/labels/订单1812857_4_7165573.txt new file mode 100644 index 0000000..b0bf911 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812857_4_7165573.txt @@ -0,0 +1 @@ +4 0.992614 0.064277 0.903382 0.047218 0.824641 0.057721 0.775637 0.089216 0.716144 0.133836 0.656650 0.202071 0.660163 0.293934 0.654902 0.368738 0.681160 0.476348 0.591912 0.463223 0.474673 0.531471 0.416944 0.594461 0.306699 0.673199 0.138725 0.804436 0.065229 0.904167 0.150964 0.990784 0.971618 0.998664 1.000000 0.931042 1.000000 0.793174 diff --git a/datasets/pinganmajia/train/labels/订单1812858_4_7165632.txt b/datasets/pinganmajia/train/labels/订单1812858_4_7165632.txt new file mode 100644 index 0000000..285f678 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812858_4_7165632.txt @@ -0,0 +1 @@ +4 0.997859 0.494718 0.936618 0.443542 0.884134 0.430417 0.852631 0.346434 0.745899 0.282120 0.658399 0.279498 0.572663 0.310993 0.488676 0.393676 0.476422 0.456667 0.406438 0.507843 0.511422 0.469792 0.551667 0.602341 0.507925 0.619400 0.485180 0.627267 0.539428 0.662708 0.544673 0.720441 0.539428 0.858235 0.572663 0.946164 0.590163 0.999975 0.996111 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1812860_4_7165548.txt b/datasets/pinganmajia/train/labels/订单1812860_4_7165548.txt new file mode 100644 index 0000000..6a1e197 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812860_4_7165548.txt @@ -0,0 +1 @@ +4 0.171961 0.649583 0.114232 0.688946 0.000000 0.804473 0.000000 0.997353 0.639167 0.999975 0.619918 0.852990 0.551667 0.719130 0.560425 0.645637 0.500931 0.624645 0.486928 0.539338 0.471176 0.459289 0.402941 0.408113 0.294444 0.405490 0.236716 0.426483 0.152712 0.482917 0.147467 0.557721 0.152712 0.598395 0.138725 0.622022 diff --git a/datasets/pinganmajia/train/labels/订单1812861_4_7165483.txt b/datasets/pinganmajia/train/labels/订单1812861_4_7165483.txt new file mode 100644 index 0000000..e8cdabf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812861_4_7165483.txt @@ -0,0 +1 @@ +4 0.145741 0.473742 0.000504 0.540671 0.004012 0.997361 0.649681 0.999985 0.616430 0.893688 0.604187 0.825448 0.590185 0.720463 0.544691 0.610224 0.518447 0.566914 0.460700 0.522299 0.404712 0.496049 0.443200 0.434367 0.471204 0.430432 0.478200 0.308387 0.513189 0.266389 0.479949 0.204715 0.394208 0.171906 0.294475 0.162716 0.226235 0.157469 0.159743 0.190278 0.101996 0.295262 0.087994 0.360880 0.084496 0.433056 0.145741 0.423873 diff --git a/datasets/pinganmajia/train/labels/订单1812862_4_7165603.txt b/datasets/pinganmajia/train/labels/订单1812862_4_7165603.txt new file mode 100644 index 0000000..4db3640 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812862_4_7165603.txt @@ -0,0 +1 @@ +4 0.003894 0.492158 0.075633 0.473787 0.065133 0.427854 0.056389 0.391108 0.054639 0.339929 0.079133 0.333367 0.101883 0.244129 0.152622 0.219192 0.257611 0.194258 0.336350 0.213942 0.387094 0.248063 0.441339 0.307121 0.443089 0.385858 0.420339 0.503971 0.562072 0.633892 0.539328 0.691633 0.572572 0.876675 0.563822 0.946229 0.514861 1.000000 0.512256 1.000000 0.002144 0.993471 diff --git a/datasets/pinganmajia/train/labels/订单1812863_4_7165551.txt b/datasets/pinganmajia/train/labels/订单1812863_4_7165551.txt new file mode 100644 index 0000000..d905198 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812863_4_7165551.txt @@ -0,0 +1 @@ +4 0.604941 0.518402 0.571699 0.535461 0.533203 0.540716 0.524458 0.560402 0.589190 0.628637 0.568196 0.682441 0.575190 0.757245 0.503451 0.997402 0.992758 1.000000 0.998641 1.000000 0.996889 0.431794 0.881412 0.391108 0.856915 0.346490 0.835908 0.345176 0.827163 0.274314 0.755425 0.223127 0.673176 0.220500 0.589190 0.242814 0.513948 0.286118 0.503451 0.380608 0.555948 0.437039 diff --git a/datasets/pinganmajia/train/labels/订单1812864_4_7165591.txt b/datasets/pinganmajia/train/labels/订单1812864_4_7165591.txt new file mode 100644 index 0000000..f596137 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812864_4_7165591.txt @@ -0,0 +1 @@ +4 0.301389 0.387193 0.254137 0.402939 0.238392 0.430493 0.219137 0.591919 0.224386 0.611601 0.240146 0.631283 0.261140 0.624726 0.269883 0.599792 0.275132 0.510548 0.278640 0.563048 0.285629 0.606349 0.292632 0.664090 0.301389 0.698213 0.311886 0.766458 0.313626 0.792708 0.308377 0.839945 0.308377 0.863575 0.329386 0.866195 0.357368 0.841261 0.374868 0.822884 0.362632 0.782204 0.366126 0.713958 0.380117 0.649660 0.397617 0.712654 0.415117 0.786140 0.427368 0.815011 0.448363 0.829452 0.500863 0.842577 0.492105 0.809759 0.467617 0.773015 0.455365 0.711338 0.444868 0.587982 0.439620 0.490866 0.453611 0.557796 0.464108 0.607664 0.493860 0.582730 0.492105 0.481678 0.453611 0.399002 0.392368 0.381941 0.380117 0.362259 0.395877 0.330757 0.378377 0.292708 0.331126 0.279583 0.306637 0.291393 0.301389 0.316327 0.296126 0.333388 0.294386 0.349134 0.310132 0.367511 diff --git a/datasets/pinganmajia/train/labels/订单1812865_4_7165510.txt b/datasets/pinganmajia/train/labels/订单1812865_4_7165510.txt new file mode 100644 index 0000000..30b745d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812865_4_7165510.txt @@ -0,0 +1 @@ +4 0.269974 0.387129 0.205234 0.410752 0.163242 0.471123 0.163242 0.506553 0.175495 0.560361 0.185990 0.580039 0.187734 0.597100 0.210482 0.616787 0.210482 0.604980 0.219232 0.577422 0.231484 0.601045 0.236732 0.699463 0.241979 0.766396 0.234987 0.791328 0.227982 0.807080 0.245482 0.814951 0.283971 0.788701 0.299727 0.748018 0.303229 0.666660 0.311979 0.699463 0.308477 0.755898 0.331224 0.809697 0.357474 0.811016 0.371471 0.780830 0.362721 0.745400 0.369714 0.679785 0.381966 0.589229 0.388958 0.574795 0.408216 0.602354 0.427461 0.573486 0.434453 0.463242 0.406458 0.409443 0.385469 0.400254 0.338216 0.380566 0.345221 0.353008 0.310221 0.317578 0.285729 0.322822 0.268229 0.334639 0.264727 0.370068 diff --git a/datasets/pinganmajia/train/labels/订单1812866_4_7165712.txt b/datasets/pinganmajia/train/labels/订单1812866_4_7165712.txt new file mode 100644 index 0000000..2eaf615 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812866_4_7165712.txt @@ -0,0 +1 @@ +4 0.186538 0.364853 0.143229 0.426536 0.130435 0.452786 0.065472 0.477712 0.002482 0.530212 0.001495 1.000000 0.011305 1.000000 0.492635 0.998717 0.512322 0.891103 0.513309 0.828113 0.450313 0.626013 0.407010 0.530212 0.433585 0.471152 0.379449 0.419975 0.388309 0.321552 0.376495 0.210000 0.353860 0.148317 0.301691 0.110261 0.251495 0.115515 0.207206 0.147010 0.183585 0.199502 0.177678 0.274306 0.169804 0.290049 0.171771 0.328113 diff --git a/datasets/pinganmajia/train/labels/订单1812868_4_7165700.txt b/datasets/pinganmajia/train/labels/订单1812868_4_7165700.txt new file mode 100644 index 0000000..2bbfa2a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812868_4_7165700.txt @@ -0,0 +1 @@ +4 0.870131 0.001287 0.859624 0.098395 0.859624 0.160074 0.850882 0.198137 0.973366 0.337243 0.989118 0.376618 0.941879 0.406801 0.863137 0.405490 0.766895 0.476348 0.703905 0.545907 0.653154 0.624645 0.626912 0.700760 0.626912 0.729632 0.595408 0.797868 0.432680 0.955355 0.399444 0.982917 0.464183 0.998664 0.999608 0.998664 0.999608 0.005221 diff --git a/datasets/pinganmajia/train/labels/订单1812870_4_7165597.txt b/datasets/pinganmajia/train/labels/订单1812870_4_7165597.txt new file mode 100644 index 0000000..41669e2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812870_4_7165597.txt @@ -0,0 +1 @@ +4 0.267229 0.115520 0.254980 0.148324 0.246235 0.169324 0.253229 0.199510 0.204235 0.220500 0.184993 0.238873 0.160497 0.283500 0.153503 0.345176 0.156993 0.396353 0.179739 0.498716 0.212993 0.517088 0.226993 0.515775 0.261987 0.610265 0.300484 0.744127 0.305725 0.800559 0.321477 0.814990 0.349477 0.811059 0.358222 0.788745 0.356471 0.710010 0.352967 0.578775 0.387974 0.710010 0.447464 0.755941 0.478954 0.749373 0.459712 0.711314 0.442209 0.644392 0.447464 0.545961 0.452706 0.481657 0.489451 0.354363 0.431712 0.240186 0.351229 0.211314 0.351229 0.175882 0.344222 0.127324 0.310980 0.108951 diff --git a/datasets/pinganmajia/train/labels/订单1812871_4_7166791.txt b/datasets/pinganmajia/train/labels/订单1812871_4_7166791.txt new file mode 100644 index 0000000..1bb43b7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812871_4_7166791.txt @@ -0,0 +1 @@ +4 0.744150 0.010466 0.677647 0.066900 0.633905 0.146961 0.647908 0.234877 0.632157 0.341176 0.702157 0.476348 0.513170 0.514412 0.418693 0.598395 0.262958 0.736189 0.191209 0.813627 0.166716 0.999975 1.000000 0.999975 1.000000 0.006556 diff --git a/datasets/pinganmajia/train/labels/订单1812872_4_7165858.txt b/datasets/pinganmajia/train/labels/订单1812872_4_7165858.txt new file mode 100644 index 0000000..fc3cbc0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812872_4_7165858.txt @@ -0,0 +1 @@ +4 0.010927 0.143104 0.117663 0.099798 0.234898 0.106357 0.304890 0.154914 0.350384 0.203471 0.348636 0.333392 0.359134 0.439691 0.329387 0.515806 0.437876 0.620794 0.418627 0.689035 0.427373 0.740218 0.555110 0.809770 0.579608 0.887197 0.511364 0.925254 0.465870 0.960689 0.483370 0.997436 0.003930 0.998747 diff --git a/datasets/pinganmajia/train/labels/订单1812875_4_7165668.txt b/datasets/pinganmajia/train/labels/订单1812875_4_7165668.txt new file mode 100644 index 0000000..85fbdf1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812875_4_7165668.txt @@ -0,0 +1 @@ +4 0.997859 0.362181 0.847386 0.381863 0.822892 0.364804 0.791389 0.368738 0.782647 0.269007 0.721405 0.207316 0.654902 0.149583 0.511422 0.119400 0.416944 0.150895 0.343448 0.212574 0.353938 0.291311 0.371438 0.342488 0.432680 0.442230 0.532418 0.482917 0.513170 0.514412 0.532418 0.545907 0.486928 0.606275 0.430931 0.685012 0.437941 0.736189 0.404690 0.833309 0.332941 0.957978 0.329444 0.990784 0.996111 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1812877_4_7165723.txt b/datasets/pinganmajia/train/labels/订单1812877_4_7165723.txt new file mode 100644 index 0000000..fad4695 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812877_4_7165723.txt @@ -0,0 +1 @@ +4 0.000490 0.534093 0.061732 0.503909 0.056487 0.485539 0.072222 0.442230 0.094984 0.429105 0.089722 0.360870 0.110719 0.337243 0.128219 0.284755 0.196471 0.229632 0.315458 0.224387 0.371438 0.261127 0.397696 0.291311 0.411683 0.375306 0.394183 0.454044 0.383693 0.498664 0.465931 0.523591 0.448431 0.545907 0.544673 0.657451 0.534167 0.725699 0.579673 0.854301 0.593660 0.946164 0.577925 0.965858 0.516667 0.996042 0.005735 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1812878_4_7165628.txt b/datasets/pinganmajia/train/labels/订单1812878_4_7165628.txt new file mode 100644 index 0000000..f1fd40d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812878_4_7165628.txt @@ -0,0 +1 @@ +4 0.688490 0.404212 0.698337 0.263788 0.726880 0.186359 0.797745 0.119436 0.802663 0.049878 0.831207 0.011821 0.868611 0.031506 0.874514 0.107622 0.870577 0.132558 0.929635 0.185051 0.941447 0.320218 0.914870 0.447519 0.900106 0.473763 0.880423 0.498699 0.846957 0.556442 0.833178 0.681115 0.824317 0.751981 0.815462 0.812346 0.823337 0.856968 0.827269 0.884526 0.803649 0.875340 0.787904 0.841218 0.797745 0.669301 0.790856 0.616808 0.779043 0.646994 0.775106 0.754603 0.763293 0.821532 0.751486 0.860904 0.719990 0.851718 0.736721 0.803160 0.744596 0.644365 0.744596 0.538071 0.728846 0.451455 diff --git a/datasets/pinganmajia/train/labels/订单1812879_4_7165617.txt b/datasets/pinganmajia/train/labels/订单1812879_4_7165617.txt new file mode 100644 index 0000000..5abe344 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812879_4_7165617.txt @@ -0,0 +1 @@ +4 0.998542 0.342549 0.868621 0.325482 0.843033 0.304485 0.840080 0.263807 0.840080 0.215253 0.842047 0.156193 0.827286 0.164069 0.790864 0.048587 0.750515 0.000025 0.635355 0.002647 0.597953 0.042018 0.550711 0.132574 0.537911 0.208685 0.554645 0.284804 0.592047 0.387165 0.636336 0.461969 0.561538 0.564330 0.550711 0.645694 0.608781 0.938350 0.634357 1.000000 0.997561 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812881_4_7166379.txt b/datasets/pinganmajia/train/labels/订单1812881_4_7166379.txt new file mode 100644 index 0000000..5a0c797 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812881_4_7166379.txt @@ -0,0 +1 @@ +4 0.000000 0.526642 0.093235 0.460600 0.115980 0.438297 0.168464 0.447475 0.220964 0.409424 0.212206 0.376618 0.215719 0.304436 0.273448 0.238824 0.350441 0.192892 0.497435 0.202071 0.534167 0.276875 0.525425 0.392365 0.481683 0.464534 0.401193 0.539338 0.474673 0.660074 0.588415 0.892365 0.604167 0.999975 0.005735 0.997353 0.000000 0.612157 diff --git a/datasets/pinganmajia/train/labels/订单1812884_4_7165695.txt b/datasets/pinganmajia/train/labels/订单1812884_4_7165695.txt new file mode 100644 index 0000000..eb3d56c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812884_4_7165695.txt @@ -0,0 +1 @@ +4 0.005735 0.303125 0.100229 0.227010 0.208709 0.228321 0.289199 0.304436 0.311944 0.362181 0.287451 0.494718 0.327696 0.496042 0.292696 0.560343 0.373186 0.623333 0.420441 0.685012 0.430931 0.770319 0.493922 0.860870 0.549918 0.957978 0.609412 0.999975 0.003987 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1812885_4_7166429.txt b/datasets/pinganmajia/train/labels/订单1812885_4_7166429.txt new file mode 100644 index 0000000..72d3023 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812885_4_7166429.txt @@ -0,0 +1 @@ +4 1.000000 0.466871 0.972953 0.460654 0.914884 0.412100 0.906023 0.389788 0.922757 0.375351 0.919804 0.334673 0.926691 0.275613 0.933585 0.133881 0.890276 0.063015 0.830239 0.039395 0.768229 0.048587 0.710159 0.106324 0.669804 0.224436 0.683585 0.308423 0.696379 0.389788 0.716060 0.460654 0.678664 0.531520 0.623542 0.580082 0.593033 0.721814 0.558585 0.829420 0.544804 0.963284 0.560539 1.000000 0.569320 1.000000 0.999528 0.998717 1.000000 0.871144 diff --git a/datasets/pinganmajia/train/labels/订单1812886_4_7166213.txt b/datasets/pinganmajia/train/labels/订单1812886_4_7166213.txt new file mode 100644 index 0000000..151ad4c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812886_4_7166213.txt @@ -0,0 +1 @@ +4 0.012637 0.254623 0.077379 0.207379 0.192866 0.200816 0.303100 0.236250 0.329348 0.291368 0.332847 0.335988 0.339847 0.396354 0.348595 0.458035 0.338096 0.518402 0.297851 0.564334 0.348595 0.581394 0.331099 0.598454 0.362594 0.700816 0.416836 0.807116 0.476330 0.929164 0.495570 1.000000 0.484547 1.000000 0.003889 0.998718 0.003889 0.524963 0.023137 0.482969 0.003889 0.471158 diff --git a/datasets/pinganmajia/train/labels/订单1812887_4_7165688.txt b/datasets/pinganmajia/train/labels/订单1812887_4_7165688.txt new file mode 100644 index 0000000..b22e811 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812887_4_7165688.txt @@ -0,0 +1 @@ +4 0.009919 0.686317 0.160146 0.573463 0.203831 0.530146 0.189854 0.456659 0.189854 0.394976 0.167143 0.381854 0.182857 0.316244 0.235276 0.255878 0.313880 0.234878 0.383766 0.246683 0.448393 0.296561 0.472857 0.368732 0.453636 0.419915 0.450146 0.501280 0.434416 0.551146 0.439659 0.587890 0.499058 0.702073 0.511282 0.766378 0.551461 0.967159 0.002922 0.998659 diff --git a/datasets/pinganmajia/train/labels/订单1812888_4_7165868.txt b/datasets/pinganmajia/train/labels/订单1812888_4_7165868.txt new file mode 100644 index 0000000..d5f032e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812888_4_7165868.txt @@ -0,0 +1 @@ +4 0.003868 0.364844 0.017871 0.345163 0.009121 0.288730 0.017871 0.234925 0.037120 0.103689 0.084357 0.042011 0.091359 0.003954 0.413315 0.003954 0.472808 0.094504 0.467563 0.157493 0.465815 0.255924 0.464067 0.392405 0.579547 0.450149 0.560299 0.551196 0.661784 0.772982 0.742283 0.916026 0.745779 1.000000 0.742754 1.000000 0.002120 0.996080 diff --git a/datasets/pinganmajia/train/labels/订单1812889_4_7165767.txt b/datasets/pinganmajia/train/labels/订单1812889_4_7165767.txt new file mode 100644 index 0000000..3daa9e1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812889_4_7165767.txt @@ -0,0 +1 @@ +4 0.000676 0.153534 0.084324 0.106289 0.195850 0.087917 0.251619 0.115471 0.335266 0.174529 0.333514 0.255895 0.330031 0.350378 0.310861 0.427809 0.500809 0.488179 0.354426 0.543295 0.391025 0.632531 0.438074 0.720463 0.471189 0.821512 0.502551 0.996049 0.002418 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1812891_4_7165867.txt b/datasets/pinganmajia/train/labels/订单1812891_4_7165867.txt new file mode 100644 index 0000000..9c86beb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812891_4_7165867.txt @@ -0,0 +1 @@ +4 0.007406 0.341250 0.038906 0.294008 0.054656 0.234953 0.049406 0.129969 0.114146 0.047289 0.175385 0.001359 0.422104 0.003984 0.535844 0.078789 0.577844 0.139156 0.569094 0.213953 0.549844 0.246766 0.541094 0.337313 0.541094 0.396367 0.504344 0.459359 0.549844 0.492172 0.511344 0.560414 0.555094 0.689023 0.775562 0.996109 0.005656 0.996109 diff --git a/datasets/pinganmajia/train/labels/订单1812893_4_7165706.txt b/datasets/pinganmajia/train/labels/订单1812893_4_7165706.txt new file mode 100644 index 0000000..19e99a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812893_4_7165706.txt @@ -0,0 +1 @@ +4 0.004675 0.662695 0.156656 0.532780 0.156656 0.498659 0.111234 0.493402 0.116477 0.431732 0.116477 0.360866 0.193344 0.278183 0.313880 0.238817 0.361055 0.263744 0.436169 0.368732 0.437922 0.417293 0.443149 0.456659 0.383766 0.580024 0.465860 0.649573 0.441412 0.673195 0.492078 0.787366 0.518279 0.822805 0.511282 0.856927 0.527013 0.957976 0.516526 0.999963 0.001185 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1812894_4_7165764.txt b/datasets/pinganmajia/train/labels/订单1812894_4_7165764.txt new file mode 100644 index 0000000..59d272b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812894_4_7165764.txt @@ -0,0 +1 @@ +4 0.364350 0.003971 0.343350 0.099771 0.371350 0.249375 0.408094 0.367488 0.436089 0.452788 0.509578 0.542029 0.469333 0.725754 0.416844 0.833367 0.436089 0.866175 0.444839 0.990846 0.999517 0.998721 0.999517 0.458037 0.973272 0.414729 0.980272 0.371425 1.000000 0.366200 1.000000 0.231533 0.997767 0.202133 0.996017 0.059088 0.966272 0.001346 diff --git a/datasets/pinganmajia/train/labels/订单1812895_4_7165727.txt b/datasets/pinganmajia/train/labels/订单1812895_4_7165727.txt new file mode 100644 index 0000000..bd1ecb7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812895_4_7165727.txt @@ -0,0 +1 @@ +4 0.005794 0.524961 0.059831 0.482971 0.113854 0.455412 0.113854 0.426539 0.078997 0.404235 0.051107 0.346490 0.047630 0.278245 0.098164 0.207382 0.194036 0.174569 0.288151 0.185069 0.378789 0.217882 0.408411 0.293990 0.401445 0.358294 0.389245 0.398980 0.357865 0.468539 0.329987 0.513157 0.422357 0.559088 0.450247 0.641765 0.448503 0.719196 0.451992 0.853049 0.465924 1.000000 0.454870 1.000000 0.000560 0.998716 diff --git a/datasets/pinganmajia/train/labels/订单1812899_4_7165887.txt b/datasets/pinganmajia/train/labels/订单1812899_4_7165887.txt new file mode 100644 index 0000000..a316b40 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812899_4_7165887.txt @@ -0,0 +1 @@ +4 0.998554 0.494788 0.970011 0.472479 0.942452 0.389802 0.924735 0.354371 0.846981 0.322874 0.828279 0.287444 0.828279 0.210014 0.821388 0.206073 0.823358 0.094527 0.794815 0.051222 0.750524 0.028912 0.704264 0.030226 0.667844 0.057782 0.649142 0.091907 0.621584 0.216575 0.619619 0.301879 0.638316 0.375367 0.584184 0.464605 0.523162 0.559096 0.515286 0.643086 0.482807 0.687705 0.450323 0.731010 0.451308 0.805812 0.494619 0.835996 0.456229 0.977733 0.457214 1.000000 0.918835 1.000000 0.931626 0.901617 0.952293 0.891116 0.998554 0.980353 diff --git a/datasets/pinganmajia/train/labels/订单1812901_4_7165815.txt b/datasets/pinganmajia/train/labels/订单1812901_4_7165815.txt new file mode 100644 index 0000000..537eb29 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812901_4_7165815.txt @@ -0,0 +1 @@ +4 0.111746 0.321567 0.044817 0.350439 0.002492 0.437050 0.001508 1.000000 0.006063 1.000000 0.551704 0.994794 0.526117 0.849122 0.509383 0.736267 0.469029 0.603717 0.423754 0.519728 0.401117 0.461983 0.333200 0.381933 0.373554 0.261200 0.379463 0.219206 0.391271 0.103717 0.382412 0.045978 0.357808 0.007917 0.137338 0.003978 0.111746 0.084033 0.104854 0.154900 diff --git a/datasets/pinganmajia/train/labels/订单1812905_4_7165871.txt b/datasets/pinganmajia/train/labels/订单1812905_4_7165871.txt new file mode 100644 index 0000000..6fc11a6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812905_4_7165871.txt @@ -0,0 +1 @@ +4 0.875307 0.236272 0.882310 0.169342 0.857807 0.131283 0.796564 0.124726 0.737076 0.149660 0.682836 0.177215 0.646082 0.187719 0.674079 0.215274 0.726579 0.217895 0.728333 0.271711 0.749327 0.297950 0.675833 0.385877 0.635585 0.544671 0.628596 0.594539 0.677588 0.623410 0.700336 0.837325 0.628596 0.863575 0.661842 0.893750 0.766827 0.891129 0.761579 0.940998 0.686330 0.996118 0.786067 0.997423 0.829810 0.959375 0.850819 0.694276 0.894561 0.619474 0.899810 0.578794 0.943553 0.501360 0.978553 0.350450 0.975044 0.304518 0.903304 0.266458 diff --git a/datasets/pinganmajia/train/labels/订单1812906_4_7165832.txt b/datasets/pinganmajia/train/labels/订单1812906_4_7165832.txt new file mode 100644 index 0000000..94a659d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812906_4_7165832.txt @@ -0,0 +1 @@ +4 0.004462 0.400313 0.043837 0.397685 0.092066 0.357002 0.119627 0.339942 0.117656 0.278264 0.141276 0.259896 0.157023 0.170648 0.191476 0.124722 0.237734 0.106343 0.298759 0.114225 0.356832 0.185093 0.368637 0.265139 0.368637 0.336007 0.350920 0.442303 0.378481 0.539421 0.420807 0.713958 0.433602 0.849132 0.442457 1.000000 0.002500 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812907_4_7165910.txt b/datasets/pinganmajia/train/labels/订单1812907_4_7165910.txt new file mode 100644 index 0000000..e1939a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812907_4_7165910.txt @@ -0,0 +1 @@ +4 0.000000 0.483211 0.079232 0.456667 0.065229 0.380551 0.028480 0.355613 0.014493 0.272941 0.042484 0.244069 0.072222 0.263750 0.063480 0.146961 0.121225 0.103652 0.149216 0.061654 0.234967 0.044596 0.373186 0.035404 0.458938 0.076091 0.500931 0.160074 0.483431 0.313627 0.471176 0.376618 0.429183 0.489473 0.385441 0.524902 0.444935 0.556409 0.511422 0.602341 0.567418 0.648272 0.614657 0.740135 0.632157 0.810993 0.705654 0.998664 0.003987 0.997353 0.000000 0.704963 diff --git a/datasets/pinganmajia/train/labels/订单1812908_4_7165819.txt b/datasets/pinganmajia/train/labels/订单1812908_4_7165819.txt new file mode 100644 index 0000000..799dc5e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812908_4_7165819.txt @@ -0,0 +1 @@ +4 0.397708 0.002617 0.399466 0.076104 0.395964 0.158779 0.388958 0.241465 0.395964 0.332012 0.359219 0.406816 0.450208 0.485557 0.469453 0.539365 0.460703 0.594482 0.492201 0.734902 0.565690 0.908125 0.535951 0.927813 0.514948 0.998682 0.000508 0.999990 0.005768 0.001299 diff --git a/datasets/pinganmajia/train/labels/订单1812911_4_7165995.txt b/datasets/pinganmajia/train/labels/订单1812911_4_7165995.txt new file mode 100644 index 0000000..79ed9ca --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812911_4_7165995.txt @@ -0,0 +1 @@ +4 0.003872 0.343846 0.100103 0.304481 0.205090 0.314971 0.280333 0.358279 0.332833 0.410779 0.339833 0.481644 0.339833 0.532827 0.346833 0.580067 0.329333 0.624683 0.352077 0.660125 0.434321 0.724423 0.520051 0.929154 0.506051 0.996077 0.005615 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1812912_4_7166571.txt b/datasets/pinganmajia/train/labels/订单1812912_4_7166571.txt new file mode 100644 index 0000000..c011d1c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812912_4_7166571.txt @@ -0,0 +1 @@ +4 0.000000 0.237740 0.035372 0.242798 0.035372 0.133875 0.128103 0.031510 0.198090 0.001327 0.329333 0.027577 0.411564 0.082692 0.462308 0.165365 0.464064 0.272981 0.441321 0.397654 0.504308 0.458019 0.471064 0.528885 0.500808 0.637808 0.499064 0.720490 0.507808 0.846471 0.458808 0.973769 0.474564 0.994769 0.003872 0.997394 0.000372 0.388471 0.031872 0.371404 0.003872 0.351721 0.000000 0.267558 diff --git a/datasets/pinganmajia/train/labels/订单1812915_4_7165966.txt b/datasets/pinganmajia/train/labels/订单1812915_4_7165966.txt new file mode 100644 index 0000000..47f8f87 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812915_4_7165966.txt @@ -0,0 +1 @@ +4 0.702300 0.009236 0.632422 0.137847 0.618637 0.254641 0.622578 0.351759 0.636354 0.388495 0.597969 0.421308 0.573359 0.471181 0.525130 0.501366 0.448359 0.696898 0.423759 0.876690 0.387335 0.992176 0.997769 1.000000 1.000000 1.000000 1.000000 0.749329 0.998559 0.510544 0.881432 0.454120 0.851910 0.350440 0.865686 0.300567 0.883403 0.212650 0.865686 0.208704 0.866667 0.148345 0.830252 0.032859 0.811554 0.005301 diff --git a/datasets/pinganmajia/train/labels/订单1812916_4_7166022.txt b/datasets/pinganmajia/train/labels/订单1812916_4_7166022.txt new file mode 100644 index 0000000..3b6de8a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812916_4_7166022.txt @@ -0,0 +1 @@ +4 0.063480 0.202070 0.010987 0.069530 0.026733 0.002600 0.241960 0.002600 0.299707 0.095770 0.296200 0.217820 0.432680 0.293940 0.504427 0.468480 0.486933 0.548530 0.439680 0.590520 0.425680 0.691570 0.395933 0.720450 0.383693 0.939610 0.411693 0.997350 0.002240 0.999970 0.000000 0.912930 0.000000 0.585640 0.033733 0.560340 0.035480 0.518350 0.007493 0.522280 0.000000 0.361280 0.000000 0.294990 0.059987 0.263750 0.115973 0.248000 0.110720 0.215200 0.070480 0.213880 diff --git a/datasets/pinganmajia/train/labels/订单1812917_4_7166020.txt b/datasets/pinganmajia/train/labels/订单1812917_4_7166020.txt new file mode 100644 index 0000000..f514993 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812917_4_7166020.txt @@ -0,0 +1 @@ +4 0.534167 0.073468 0.420441 0.135147 0.376699 0.174510 0.338203 0.270319 0.366193 0.371360 0.406438 0.455355 0.430931 0.535404 0.518431 0.610208 0.427435 0.606275 0.359199 0.637770 0.306699 0.787377 0.276961 0.872672 0.299706 0.996042 0.997859 0.999975 1.000000 0.874081 1.000000 0.480502 0.922631 0.436985 0.948873 0.413358 0.955866 0.316250 0.919118 0.291311 0.889379 0.300502 0.863137 0.177132 0.821144 0.104963 0.747647 0.066900 0.649657 0.066900 diff --git a/datasets/pinganmajia/train/labels/订单1812918_4_7166464.txt b/datasets/pinganmajia/train/labels/订单1812918_4_7166464.txt new file mode 100644 index 0000000..871c71d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812918_4_7166464.txt @@ -0,0 +1 @@ +4 0.003930 0.095860 0.115916 0.056489 0.247150 0.076177 0.304892 0.118171 0.348637 0.170664 0.371384 0.258588 0.360885 0.318958 0.357387 0.447566 0.320638 0.509244 0.357387 0.547303 0.313642 0.595860 0.458873 0.691659 0.590103 0.809772 0.702094 0.933129 0.730087 0.981686 0.716091 0.997434 0.007428 0.998746 diff --git a/datasets/pinganmajia/train/labels/订单1812919_4_7166086.txt b/datasets/pinganmajia/train/labels/订单1812919_4_7166086.txt new file mode 100644 index 0000000..841160e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812919_4_7166086.txt @@ -0,0 +1 @@ +4 0.996111 0.150895 0.957614 0.094461 0.854379 0.056409 0.731895 0.064277 0.681160 0.104963 0.628660 0.170576 0.637402 0.244069 0.630408 0.307059 0.670654 0.404167 0.670654 0.440919 0.632157 0.482917 0.485180 0.611520 0.429183 0.657451 0.378448 0.767684 0.357451 0.860870 0.411683 0.935674 0.453676 0.946164 0.486928 0.996042 0.997859 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1812920_4_7166122.txt b/datasets/pinganmajia/train/labels/订单1812920_4_7166122.txt new file mode 100644 index 0000000..6346833 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812920_4_7166122.txt @@ -0,0 +1 @@ +4 1.000000 0.536512 0.867662 0.473720 0.865909 0.380549 0.865909 0.341171 0.810016 0.211256 0.752370 0.182378 0.654529 0.174512 0.539237 0.209939 0.476347 0.258500 0.457127 0.331988 0.521769 0.492098 0.471104 0.509159 0.441412 0.553768 0.355812 0.653512 0.308636 0.755878 0.280698 0.893671 0.376769 0.999963 0.995195 0.998659 1.000000 0.574585 diff --git a/datasets/pinganmajia/train/labels/订单1812921_4_7166047.txt b/datasets/pinganmajia/train/labels/订单1812921_4_7166047.txt new file mode 100644 index 0000000..301bf39 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812921_4_7166047.txt @@ -0,0 +1 @@ +4 0.996019 0.158828 0.840289 0.165391 0.751053 0.207387 0.700313 0.282187 0.672315 0.374054 0.660069 0.443602 0.684560 0.497413 0.590069 0.527595 0.513079 0.606337 0.432593 0.665391 0.388854 0.912109 0.443090 0.998724 0.999525 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1812923_4_7166008.txt b/datasets/pinganmajia/train/labels/订单1812923_4_7166008.txt new file mode 100644 index 0000000..dfbe995 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812923_4_7166008.txt @@ -0,0 +1 @@ +4 0.628481 0.005301 0.563524 0.120787 0.558602 0.225775 0.547769 0.240208 0.560564 0.308449 0.574349 0.341250 0.592066 0.410810 0.518247 0.461991 0.363715 0.898993 0.367656 0.986921 0.998559 0.996111 1.000000 0.600475 1.000000 0.455289 0.802691 0.401620 0.812535 0.315012 0.831233 0.297951 0.851910 0.196898 0.833203 0.195590 0.825330 0.196898 0.836155 0.091910 0.793837 0.010544 0.775130 0.002674 diff --git a/datasets/pinganmajia/train/labels/订单1812924_4_7166113.txt b/datasets/pinganmajia/train/labels/订单1812924_4_7166113.txt new file mode 100644 index 0000000..764b44c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812924_4_7166113.txt @@ -0,0 +1 @@ +4 0.003987 0.391054 0.079232 0.370049 0.166716 0.380551 0.233203 0.417292 0.269951 0.469792 0.273448 0.507843 0.292696 0.574779 0.283954 0.619400 0.366193 0.608897 0.348693 0.662708 0.339951 0.702071 0.420441 0.754571 0.464183 0.804436 0.492173 0.850368 0.542925 0.951422 0.611160 0.998664 0.002239 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1812925_4_7166079.txt b/datasets/pinganmajia/train/labels/订单1812925_4_7166079.txt new file mode 100644 index 0000000..3391a7c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812925_4_7166079.txt @@ -0,0 +1 @@ +4 0.985502 0.144375 0.835019 0.144375 0.745777 0.186371 0.675786 0.276918 0.681042 0.335973 0.679290 0.363537 0.689782 0.444901 0.752775 0.514453 0.768523 0.555135 0.731780 0.627315 0.686288 0.696868 0.616297 0.856974 0.605795 0.892408 0.595303 1.000000 0.600568 1.000000 1.000000 0.998707 1.000000 0.931023 diff --git a/datasets/pinganmajia/train/labels/订单1812927_4_7166174.txt b/datasets/pinganmajia/train/labels/订单1812927_4_7166174.txt new file mode 100644 index 0000000..581d82e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812927_4_7166174.txt @@ -0,0 +1 @@ +4 0.387190 0.288689 0.299706 0.237500 0.166716 0.220441 0.080980 0.259816 0.049477 0.313627 0.038987 0.396299 0.045980 0.451422 0.075735 0.477659 0.058235 0.511789 0.000000 0.523922 0.000000 0.783395 0.003987 0.999975 0.518431 0.999975 0.528922 0.959289 0.495670 0.917292 0.448431 0.783444 0.388938 0.619400 0.352190 0.549841 0.388938 0.489473 0.404690 0.433039 0.399444 0.402855 diff --git a/datasets/pinganmajia/train/labels/订单1812928_4_7166111.txt b/datasets/pinganmajia/train/labels/订单1812928_4_7166111.txt new file mode 100644 index 0000000..2ac5aea --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812928_4_7166111.txt @@ -0,0 +1 @@ +4 0.908988 0.343870 0.913909 0.279569 0.914894 0.221822 0.909974 0.136525 0.813517 0.089280 0.776112 0.116836 0.730837 0.181144 0.713120 0.250699 0.700323 0.313686 0.710169 0.422613 0.691467 0.490855 0.645207 0.545975 0.586155 0.616836 0.525127 0.679831 0.525127 0.767754 0.558591 0.803192 0.510365 0.904237 0.501504 0.940982 0.482807 0.997415 0.999539 0.998729 0.998554 0.400304 0.956229 0.376681 diff --git a/datasets/pinganmajia/train/labels/订单1812929_4_7166242.txt b/datasets/pinganmajia/train/labels/订单1812929_4_7166242.txt new file mode 100644 index 0000000..29bd510 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812929_4_7166242.txt @@ -0,0 +1 @@ +4 0.696367 0.049885 0.621570 0.108937 0.587117 0.145688 0.571367 0.211302 0.589086 0.300542 0.613695 0.408156 0.646172 0.481646 0.569398 0.544635 0.547750 0.632563 0.509359 0.933083 0.501492 0.997396 0.996359 1.000000 0.999523 1.000000 1.000000 0.927323 1.000000 0.551573 0.968023 0.539385 0.964086 0.503958 0.919797 0.477708 0.875508 0.452771 0.806609 0.422594 0.807594 0.385844 0.825305 0.366156 0.829242 0.280854 0.807594 0.276917 0.815469 0.251990 0.842039 0.157500 0.822352 0.111562 0.776094 0.052510 0.746570 0.043323 diff --git a/datasets/pinganmajia/train/labels/订单1812933_4_7166354.txt b/datasets/pinganmajia/train/labels/订单1812933_4_7166354.txt new file mode 100644 index 0000000..4507c59 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812933_4_7166354.txt @@ -0,0 +1 @@ +4 0.996059 0.434438 0.953913 0.400319 0.867853 0.391132 0.871366 0.370132 0.897714 0.333389 0.873123 0.283521 0.855558 0.224465 0.801115 0.168035 0.702760 0.154910 0.597388 0.177222 0.564015 0.220528 0.534164 0.308451 0.530651 0.337326 0.534164 0.416063 0.613197 0.484306 0.523625 0.674597 0.477955 0.899007 0.437565 0.994806 0.991914 1.000000 0.997816 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812934_4_7166167.txt b/datasets/pinganmajia/train/labels/订单1812934_4_7166167.txt new file mode 100644 index 0000000..49e5460 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812934_4_7166167.txt @@ -0,0 +1 @@ +4 0.682907 0.320180 0.602413 0.358240 0.569173 0.426480 0.546427 0.468480 0.579667 0.505220 0.604160 0.520970 0.597160 0.557720 0.614667 0.583960 0.618160 0.667950 0.635653 0.734880 0.661907 0.805750 0.688147 0.864800 0.646160 0.897610 0.600667 0.908110 0.674160 0.917300 0.751147 0.905490 0.763400 0.942230 0.754640 0.992100 0.810640 0.998660 0.828133 0.956670 0.831640 0.846430 0.829880 0.696820 0.840387 0.611520 0.912120 0.530160 0.899880 0.413360 0.894627 0.345120 0.843880 0.318870 0.782640 0.284750 0.786147 0.236190 0.742400 0.191570 0.675907 0.208630 0.665400 0.250630 0.672400 0.291310 diff --git a/datasets/pinganmajia/train/labels/订单1812937_4_7166265.txt b/datasets/pinganmajia/train/labels/订单1812937_4_7166265.txt new file mode 100644 index 0000000..0bf636b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812937_4_7166265.txt @@ -0,0 +1 @@ +4 0.235736 0.272974 0.158966 0.263788 0.085144 0.215231 0.002466 0.144365 0.003452 0.998699 0.458178 0.993449 0.464082 0.976391 0.481793 1.000000 0.481812 1.000000 0.520183 0.968513 0.502466 0.917333 0.486721 0.834654 0.475894 0.786103 0.463096 0.727045 0.479832 0.665365 0.476880 0.557750 0.456207 0.490827 0.400106 0.401583 0.464082 0.253288 0.492625 0.170615 0.488687 0.078750 0.432587 0.001321 0.313490 0.002635 0.263293 0.162737 0.241639 0.204737 diff --git a/datasets/pinganmajia/train/labels/订单1812942_4_7166327.txt b/datasets/pinganmajia/train/labels/订单1812942_4_7166327.txt new file mode 100644 index 0000000..08abf4f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812942_4_7166327.txt @@ -0,0 +1 @@ +4 1.000000 0.561593 0.899869 0.560343 0.847386 0.524902 0.843889 0.489473 0.871879 0.463223 0.887631 0.408113 0.866634 0.385797 0.856127 0.397610 0.824641 0.282120 0.738889 0.254571 0.616405 0.266373 0.528922 0.322806 0.502680 0.371360 0.520180 0.480294 0.549918 0.541973 0.625163 0.610208 0.630408 0.636458 0.451928 0.704694 0.408186 0.738824 0.385441 0.818873 0.343448 0.948787 0.262958 0.992096 0.999608 0.999975 1.000000 0.967757 diff --git a/datasets/pinganmajia/train/labels/订单1812943_4_7166296.txt b/datasets/pinganmajia/train/labels/订单1812943_4_7166296.txt new file mode 100644 index 0000000..b5876d0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812943_4_7166296.txt @@ -0,0 +1 @@ +4 0.961000 0.003952 0.934756 0.061692 0.861256 0.090567 0.784269 0.160125 0.765026 0.145683 0.752782 0.091875 0.730026 0.065635 0.625038 0.000019 0.534051 0.007885 0.420321 0.078760 0.413321 0.137808 0.425564 0.191615 0.516551 0.308413 0.583051 0.332038 0.497308 0.455394 0.563795 0.598442 0.611038 0.742798 0.653038 0.997394 1.000000 0.999990 1.000000 0.928981 diff --git a/datasets/pinganmajia/train/labels/订单1812944_4_7166255.txt b/datasets/pinganmajia/train/labels/订单1812944_4_7166255.txt new file mode 100644 index 0000000..48dc807 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812944_4_7166255.txt @@ -0,0 +1 @@ +4 0.146169 0.472415 0.126964 0.502598 0.085032 0.535402 0.000000 0.570598 0.000000 0.997341 0.691218 0.998659 0.614351 0.923854 0.575925 0.854293 0.525260 0.786061 0.520016 0.699439 0.488571 0.593146 0.437922 0.531463 0.437922 0.494720 0.467614 0.450098 0.513036 0.433037 0.523523 0.330671 0.546218 0.266378 0.504302 0.161390 0.409968 0.097085 0.292922 0.070829 0.133945 0.101012 0.067565 0.158756 0.041364 0.238817 0.067565 0.318866 0.116477 0.419915 diff --git a/datasets/pinganmajia/train/labels/订单1812945_4_7166219.txt b/datasets/pinganmajia/train/labels/订单1812945_4_7166219.txt new file mode 100644 index 0000000..daafcbe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812945_4_7166219.txt @@ -0,0 +1 @@ +4 0.989118 0.198137 0.899869 0.186324 0.779134 0.223076 0.698644 0.288689 0.712647 0.362181 0.710899 0.450110 0.703905 0.480294 0.693399 0.534093 0.612908 0.661385 0.528922 0.831998 0.514918 0.893676 0.565670 0.910735 0.581422 0.960600 0.595408 0.999975 1.000000 0.998689 1.000000 0.650833 diff --git a/datasets/pinganmajia/train/labels/订单1812946_4_7166202.txt b/datasets/pinganmajia/train/labels/订单1812946_4_7166202.txt new file mode 100644 index 0000000..48d8592 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812946_4_7166202.txt @@ -0,0 +1 @@ +4 0.077396 0.439680 0.031906 0.468547 0.021406 0.503984 0.003906 0.521047 0.003906 1.000000 0.027521 1.000000 0.682823 0.998734 0.672323 0.804508 0.600583 0.691648 0.555094 0.603719 0.420354 0.485609 0.446604 0.427867 0.453604 0.368812 0.492104 0.263828 0.411604 0.136531 0.126396 0.139156 0.063406 0.181148 0.079146 0.295320 0.061656 0.317633 0.051156 0.393750 0.082646 0.423930 diff --git a/datasets/pinganmajia/train/labels/订单1812947_4_7166326.txt b/datasets/pinganmajia/train/labels/订单1812947_4_7166326.txt new file mode 100644 index 0000000..b5a0c69 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812947_4_7166326.txt @@ -0,0 +1 @@ +4 0.002239 0.422549 0.065229 0.404167 0.103725 0.360870 0.070474 0.290000 0.075735 0.241446 0.072222 0.224387 0.068725 0.137770 0.091471 0.060343 0.175474 0.032782 0.315458 0.032782 0.360948 0.074779 0.397696 0.129890 0.416944 0.219130 0.423938 0.310993 0.353938 0.418603 0.513170 0.457978 0.488676 0.540650 0.509673 0.593150 0.595408 0.761127 0.618170 0.992096 0.003987 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1812949_4_7166256.txt b/datasets/pinganmajia/train/labels/订单1812949_4_7166256.txt new file mode 100644 index 0000000..d868da3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812949_4_7166256.txt @@ -0,0 +1 @@ +4 0.260235 0.263814 0.223490 0.276931 0.216484 0.316304 0.181490 0.354363 0.150000 0.489529 0.176248 0.586647 0.170993 0.633892 0.188497 0.649637 0.207739 0.616833 0.232235 0.574833 0.244484 0.656196 0.277725 0.753314 0.288235 0.832049 0.293477 0.880608 0.260235 0.914725 0.305725 0.926539 0.335477 0.893735 0.356471 0.775618 0.361725 0.710010 0.361725 0.818931 0.377464 0.880608 0.433464 0.933098 0.454458 0.910794 0.445712 0.867480 0.445712 0.750686 0.464954 0.631265 0.492954 0.620765 0.522706 0.507902 0.501699 0.413422 0.468458 0.332049 0.401961 0.301873 0.377464 0.273000 0.380967 0.215255 0.344222 0.171951 0.298732 0.175882 0.261987 0.211314 diff --git a/datasets/pinganmajia/train/labels/订单1812950_4_7166237.txt b/datasets/pinganmajia/train/labels/订单1812950_4_7166237.txt new file mode 100644 index 0000000..6849b94 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812950_4_7166237.txt @@ -0,0 +1 @@ +4 1.000000 0.086563 0.847292 0.053845 0.702060 0.060399 0.616319 0.098464 0.518333 0.175885 0.516586 0.333368 0.551574 0.446233 0.346852 0.560399 0.315359 0.593212 0.371354 0.653576 0.292616 0.791372 0.150880 0.897674 0.096632 0.993472 0.992836 1.000000 0.997778 1.000000 1.000000 0.767882 diff --git a/datasets/pinganmajia/train/labels/订单1812951_4_7166280.txt b/datasets/pinganmajia/train/labels/订单1812951_4_7166280.txt new file mode 100644 index 0000000..cafe027 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812951_4_7166280.txt @@ -0,0 +1 @@ +4 0.997859 0.153517 0.826389 0.153517 0.717892 0.191569 0.649657 0.274252 0.663660 0.346434 0.677647 0.481605 0.607663 0.503909 0.525425 0.574779 0.430931 0.673199 0.308448 0.952733 0.331193 0.997353 0.996111 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1812953_4_7166355.txt b/datasets/pinganmajia/train/labels/订单1812953_4_7166355.txt new file mode 100644 index 0000000..ea0e00e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812953_4_7166355.txt @@ -0,0 +1 @@ +4 0.992614 0.637770 0.913873 0.559032 0.929624 0.510466 0.955866 0.465858 0.947124 0.372672 0.891127 0.284755 0.773889 0.257194 0.677647 0.287377 0.635654 0.333309 0.609412 0.433039 0.625163 0.585270 0.560425 0.628578 0.472925 0.720441 0.430931 0.792623 0.371438 0.891054 0.310196 0.997353 1.000000 0.999963 1.000000 0.943505 diff --git a/datasets/pinganmajia/train/labels/订单1812955_4_7166398.txt b/datasets/pinganmajia/train/labels/订单1812955_4_7166398.txt new file mode 100644 index 0000000..f5e2a09 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812955_4_7166398.txt @@ -0,0 +1 @@ +4 0.453044 0.311016 0.418461 0.333327 0.398696 0.410755 0.389804 0.536738 0.401662 0.561673 0.413520 0.607604 0.413520 0.582669 0.422412 0.593171 0.424387 0.562988 0.444152 0.820202 0.451069 0.839889 0.441186 0.864824 0.457985 0.880573 0.474784 0.872695 0.494544 0.914694 0.510353 0.926504 0.523201 0.909440 0.517270 0.872695 0.530118 0.821517 0.534069 0.723092 0.539010 0.589232 0.561735 0.593171 0.568652 0.539362 0.583475 0.518366 0.582485 0.423880 0.561735 0.332012 0.530118 0.311016 0.505417 0.290020 0.501461 0.241465 0.472809 0.217839 0.448103 0.237526 0.454034 0.275586 diff --git a/datasets/pinganmajia/train/labels/订单1812957_4_7166313.txt b/datasets/pinganmajia/train/labels/订单1812957_4_7166313.txt new file mode 100644 index 0000000..4de5c16 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812957_4_7166313.txt @@ -0,0 +1 @@ +4 0.773168 0.007917 0.747578 0.094537 0.754462 0.198206 0.778090 0.300567 0.812535 0.387187 0.810564 0.450174 0.703281 0.494803 0.639306 0.599780 0.641276 0.691644 0.562535 0.990856 0.652101 0.981678 0.664896 0.990856 0.999540 0.992176 0.996589 0.005301 diff --git a/datasets/pinganmajia/train/labels/订单1812960_4_7166291.txt b/datasets/pinganmajia/train/labels/订单1812960_4_7166291.txt new file mode 100644 index 0000000..5900bd2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812960_4_7166291.txt @@ -0,0 +1 @@ +4 0.776458 0.009206 0.716543 0.061701 0.674313 0.154876 0.671366 0.237546 0.663503 0.380598 0.678241 0.437021 0.598681 0.542010 0.565285 0.553825 0.494560 0.728361 0.424823 0.908155 0.415000 0.998701 1.000000 0.997392 1.000000 0.881093 0.995502 0.505268 0.965054 0.481639 0.944421 0.427835 0.975856 0.245423 0.966034 0.187680 0.943441 0.061701 0.891381 0.002639 diff --git a/datasets/pinganmajia/train/labels/订单1812963_4_7166411.txt b/datasets/pinganmajia/train/labels/订单1812963_4_7166411.txt new file mode 100644 index 0000000..98dc6c1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812963_4_7166411.txt @@ -0,0 +1 @@ +4 0.989028 0.383238 0.903287 0.370113 0.815799 0.339931 0.745810 0.316311 0.724803 0.288750 0.686308 0.223134 0.663565 0.224444 0.581331 0.124705 0.474583 0.093212 0.381852 0.102396 0.301366 0.156207 0.278611 0.227066 0.304861 0.301875 0.345104 0.383238 0.439595 0.498724 0.395845 0.607648 0.338102 0.703446 0.304861 0.808438 0.317106 0.910799 0.362604 0.958038 0.437847 0.992161 0.996956 1.000000 0.999525 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812964_4_7166508.txt b/datasets/pinganmajia/train/labels/订单1812964_4_7166508.txt new file mode 100644 index 0000000..e32798b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812964_4_7166508.txt @@ -0,0 +1 @@ +4 0.212206 0.127267 0.119477 0.187635 0.108971 0.271630 0.098480 0.301814 0.129967 0.371360 0.166716 0.422549 0.131716 0.447475 0.086225 0.485539 0.000000 0.524093 0.000000 0.781850 0.003987 0.996042 0.520180 0.999975 0.556912 0.963223 0.560425 0.900233 0.560425 0.797868 0.516667 0.637770 0.443186 0.528848 0.457190 0.490784 0.416944 0.478971 0.464183 0.351679 0.448431 0.290000 0.457190 0.216507 0.229706 0.118088 0.373186 0.120711 0.455425 0.213885 diff --git a/datasets/pinganmajia/train/labels/订单1812965_4_7166393.txt b/datasets/pinganmajia/train/labels/订单1812965_4_7166393.txt new file mode 100644 index 0000000..19178a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812965_4_7166393.txt @@ -0,0 +1 @@ +4 0.117625 0.345154 0.097942 0.360904 0.007389 0.354340 0.001486 0.997385 0.507341 1.000000 0.509365 1.000000 0.544793 0.960641 0.555620 0.870090 0.530029 0.637808 0.517231 0.608936 0.506404 0.506571 0.468019 0.452769 0.429635 0.440955 0.371563 0.388462 0.364673 0.347782 0.378452 0.282160 0.374514 0.237545 0.370577 0.140429 0.319399 0.027571 0.315462 0.007885 0.160933 0.003949 0.116639 0.099750 0.102861 0.160115 diff --git a/datasets/pinganmajia/train/labels/订单1812966_4_7166436.txt b/datasets/pinganmajia/train/labels/订单1812966_4_7166436.txt new file mode 100644 index 0000000..28abbcf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812966_4_7166436.txt @@ -0,0 +1 @@ +4 0.005644 0.027592 0.035389 0.006596 0.509578 0.001346 0.590072 0.139142 0.569072 0.240192 0.520078 0.322867 0.422089 0.486908 0.502583 0.549900 0.593572 0.700821 0.633817 0.807121 0.649561 0.992158 0.002144 0.998721 diff --git a/datasets/pinganmajia/train/labels/订单1812968_4_7167369.txt b/datasets/pinganmajia/train/labels/订单1812968_4_7167369.txt new file mode 100644 index 0000000..e4e4078 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812968_4_7167369.txt @@ -0,0 +1 @@ +4 0.497293 0.006564 0.499041 0.094492 0.504292 0.173232 0.525289 0.250661 0.621528 0.360897 0.632025 0.440949 0.637275 0.503941 0.560285 0.824152 0.560285 0.870081 0.367811 0.951448 0.331062 0.994754 0.997275 1.000000 0.997729 1.000000 1.000000 0.767448 1.000000 0.085126 0.987232 0.048559 0.953985 0.053808 0.946986 0.003941 diff --git a/datasets/pinganmajia/train/labels/订单1812971_4_7166447.txt b/datasets/pinganmajia/train/labels/订单1812971_4_7166447.txt new file mode 100644 index 0000000..1fbc5f0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812971_4_7166447.txt @@ -0,0 +1 @@ +4 0.014406 0.528914 0.100146 0.497422 0.150896 0.451492 0.161396 0.406867 0.138646 0.396367 0.147396 0.358312 0.150896 0.307133 0.159646 0.186398 0.187635 0.141781 0.383615 0.114219 0.479854 0.135219 0.581333 0.248078 0.577844 0.303195 0.549844 0.338625 0.535844 0.414742 0.481604 0.522352 0.528844 0.568289 0.623333 0.679836 0.674073 0.794008 0.702073 0.944930 0.684573 0.998734 0.002156 0.998734 diff --git a/datasets/pinganmajia/train/labels/订单1812972_4_7166459.txt b/datasets/pinganmajia/train/labels/订单1812972_4_7166459.txt new file mode 100644 index 0000000..70c2a96 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812972_4_7166459.txt @@ -0,0 +1 @@ +4 0.009232 0.574779 0.159722 0.523591 0.135229 0.475037 0.096732 0.461912 0.066977 0.422549 0.068725 0.392365 0.037239 0.290000 0.119477 0.208640 0.264706 0.192892 0.364444 0.242757 0.395948 0.312304 0.401193 0.358235 0.402941 0.405490 0.390686 0.475037 0.357451 0.520968 0.450180 0.536716 0.535915 0.619400 0.544673 0.712574 0.567418 0.795245 0.607663 0.994718 0.003987 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1812974_4_7166471.txt b/datasets/pinganmajia/train/labels/订单1812974_4_7166471.txt new file mode 100644 index 0000000..3d79161 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812974_4_7166471.txt @@ -0,0 +1 @@ +4 0.992643 0.419941 0.899896 0.334639 0.838659 0.242773 0.744167 0.204717 0.658424 0.217842 0.548190 0.350381 0.586693 0.473740 0.628685 0.551172 0.590195 0.585293 0.602435 0.631221 0.542943 0.755898 0.513203 0.881885 0.497448 0.998682 1.000000 0.999980 1.000000 0.826650 diff --git a/datasets/pinganmajia/train/labels/订单1812975_4_7166495.txt b/datasets/pinganmajia/train/labels/订单1812975_4_7166495.txt new file mode 100644 index 0000000..9ef0b89 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812975_4_7166495.txt @@ -0,0 +1 @@ +4 0.000490 0.547218 0.112467 0.505221 0.124722 0.452733 0.107222 0.440919 0.117729 0.376618 0.136977 0.355613 0.143971 0.274252 0.170212 0.233566 0.276961 0.187635 0.408186 0.192892 0.471176 0.233566 0.506176 0.291311 0.488676 0.373983 0.474673 0.465858 0.444935 0.535404 0.502680 0.574779 0.535915 0.645637 0.597157 0.699449 0.625163 0.716507 0.709150 0.766373 0.759902 0.825429 0.789641 0.891054 0.824641 0.957978 0.817631 0.998664 0.002239 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1812977_4_7166538.txt b/datasets/pinganmajia/train/labels/订单1812977_4_7166538.txt new file mode 100644 index 0000000..bc56c25 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812977_4_7166538.txt @@ -0,0 +1 @@ +4 0.360964 0.380566 0.329466 0.395000 0.255977 0.419941 0.217487 0.465869 0.198242 0.564297 0.175495 0.628604 0.199987 0.765078 0.212240 0.783457 0.236732 0.825449 0.268229 0.839883 0.280482 0.805762 0.268229 0.866133 0.264727 0.989492 0.348724 0.996055 0.392461 0.922559 0.422214 0.957998 0.423958 0.992119 0.516693 0.996055 0.542943 0.821514 0.590195 0.778203 0.602435 0.750645 0.639180 0.662725 0.625182 0.476367 0.576185 0.418623 0.497448 0.391064 0.474701 0.376631 0.476458 0.317578 0.474701 0.270332 0.436211 0.242773 0.376719 0.248018 0.345221 0.276895 0.345221 0.314951 0.346966 0.342510 diff --git a/datasets/pinganmajia/train/labels/订单1812978_4_7166559.txt b/datasets/pinganmajia/train/labels/订单1812978_4_7166559.txt new file mode 100644 index 0000000..cc2615b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812978_4_7166559.txt @@ -0,0 +1 @@ +4 0.002922 0.607573 0.151412 0.564268 0.161899 0.538024 0.168880 0.511780 0.167143 0.448793 0.214302 0.352988 0.334838 0.321488 0.439659 0.368732 0.467614 0.423854 0.458880 0.509159 0.441412 0.587890 0.532256 0.654829 0.586412 0.762439 0.640568 0.997341 0.008166 0.998659 diff --git a/datasets/pinganmajia/train/labels/订单1812980_4_7166497.txt b/datasets/pinganmajia/train/labels/订单1812980_4_7166497.txt new file mode 100644 index 0000000..f919fa7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812980_4_7166497.txt @@ -0,0 +1 @@ +4 0.353971 0.300518 0.338216 0.324141 0.282227 0.338574 0.268229 0.375322 0.247227 0.439619 0.262982 0.545918 0.297982 0.583984 0.320716 0.569541 0.341719 0.675840 0.346966 0.770332 0.359219 0.811016 0.343464 0.835947 0.374961 0.841201 0.411706 0.826758 0.416966 0.801826 0.420456 0.758525 0.406458 0.671904 0.409961 0.625977 0.434453 0.670596 0.441458 0.737520 0.439714 0.790020 0.479948 0.817578 0.542943 0.837266 0.511445 0.795264 0.509701 0.746709 0.504453 0.677158 0.506198 0.590537 0.514948 0.566924 0.548190 0.532803 0.558698 0.461934 0.534193 0.364824 0.502695 0.330703 0.423958 0.300518 0.444961 0.263770 0.423958 0.224404 0.367969 0.209961 0.346966 0.225713 0.343464 0.257207 0.343464 0.290020 diff --git a/datasets/pinganmajia/train/labels/订单1812981_4_7166658.txt b/datasets/pinganmajia/train/labels/订单1812981_4_7166658.txt new file mode 100644 index 0000000..2c80d71 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812981_4_7166658.txt @@ -0,0 +1 @@ +4 0.142128 0.320242 0.129878 0.341242 0.087883 0.370113 0.063383 0.409483 0.038889 0.549900 0.051139 0.585333 0.101883 0.619454 0.105383 0.585333 0.122878 0.521029 0.126378 0.606333 0.135128 0.623392 0.198117 0.731004 0.199867 0.790058 0.147378 0.828117 0.171872 0.847800 0.247111 0.818929 0.255861 0.782183 0.248861 0.654887 0.280361 0.704758 0.296106 0.790058 0.297856 0.841242 0.331100 0.858300 0.338100 0.797933 0.339850 0.717879 0.334600 0.683758 0.334600 0.603708 0.373100 0.568275 0.387094 0.473787 0.325856 0.353050 0.278611 0.338617 0.252361 0.305808 0.236617 0.244129 0.185872 0.231004 0.143878 0.249375 0.131628 0.287433 diff --git a/datasets/pinganmajia/train/labels/订单1812983_4_7166581.txt b/datasets/pinganmajia/train/labels/订单1812983_4_7166581.txt new file mode 100644 index 0000000..d676e04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812983_4_7166581.txt @@ -0,0 +1 @@ +4 0.205212 0.091838 0.091471 0.127267 0.045980 0.182390 0.026732 0.288689 0.052990 0.356924 0.096732 0.379240 0.096732 0.414669 0.021487 0.463223 0.000000 0.467708 0.000000 0.846091 0.003987 0.996042 0.598922 0.967169 0.546422 0.901544 0.677647 0.900233 0.759902 0.913358 0.850882 0.921238 0.887631 0.922549 0.884134 0.868738 0.786144 0.843799 0.712647 0.841176 0.614657 0.774252 0.581422 0.727010 0.565670 0.637770 0.514918 0.519657 0.521928 0.482917 0.474673 0.447475 0.385441 0.410735 0.401193 0.305748 0.388938 0.275564 0.387190 0.177132 0.369690 0.128578 0.289199 0.065588 diff --git a/datasets/pinganmajia/train/labels/订单1812984_4_7166659.txt b/datasets/pinganmajia/train/labels/订单1812984_4_7166659.txt new file mode 100644 index 0000000..2454311 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812984_4_7166659.txt @@ -0,0 +1 @@ +4 0.010463 0.069540 0.170721 0.040668 0.304762 0.039357 0.505823 0.072163 0.578680 0.127286 0.604898 0.192898 0.546626 0.308388 0.505823 0.358254 0.395102 0.443554 0.418408 0.457990 0.296027 0.594473 0.357211 0.708646 0.450463 0.839884 0.491252 0.956679 0.505823 0.994737 0.000000 0.998664 0.000000 0.903376 diff --git a/datasets/pinganmajia/train/labels/订单1812986_4_7166615.txt b/datasets/pinganmajia/train/labels/订单1812986_4_7166615.txt new file mode 100644 index 0000000..dde0736 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812986_4_7166615.txt @@ -0,0 +1 @@ +4 0.985521 0.259878 0.892789 0.211319 0.759803 0.208698 0.642569 0.255937 0.595324 0.334679 0.590069 0.422604 0.598819 0.485599 0.591829 0.536780 0.469340 0.643082 0.416840 0.687700 0.331111 0.784809 0.304861 0.946233 0.313611 0.998724 1.000000 0.997422 1.000000 0.768325 diff --git a/datasets/pinganmajia/train/labels/订单1812987_4_7166647.txt b/datasets/pinganmajia/train/labels/订单1812987_4_7166647.txt new file mode 100644 index 0000000..fe6a899 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812987_4_7166647.txt @@ -0,0 +1 @@ +4 0.007484 0.387108 0.080980 0.347745 0.163219 0.342488 0.255964 0.396299 0.280458 0.454044 0.290948 0.507843 0.292696 0.566900 0.301454 0.604963 0.352190 0.607586 0.310196 0.665331 0.303203 0.691569 0.444935 0.812304 0.474673 0.896299 0.523676 0.978971 0.518431 0.999975 0.005735 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1812988_4_7166639.txt b/datasets/pinganmajia/train/labels/订单1812988_4_7166639.txt new file mode 100644 index 0000000..a56b378 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812988_4_7166639.txt @@ -0,0 +1 @@ +4 0.008626 0.616833 0.069948 0.569588 0.119005 0.530216 0.112003 0.490843 0.143534 0.486912 0.168063 0.396353 0.255668 0.343863 0.376558 0.355676 0.448403 0.405539 0.432631 0.589275 0.416859 0.641765 0.441387 0.717882 0.483442 0.738873 0.458914 0.816304 0.443141 0.896353 0.448403 0.956725 0.437880 0.993471 0.006872 0.997402 diff --git a/datasets/pinganmajia/train/labels/订单1812989_4_7166707.txt b/datasets/pinganmajia/train/labels/订单1812989_4_7166707.txt new file mode 100644 index 0000000..58713b8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812989_4_7166707.txt @@ -0,0 +1 @@ +4 0.301454 0.009154 0.345196 0.078713 0.331193 0.158762 0.315458 0.234877 0.303203 0.272941 0.266454 0.318873 0.241961 0.358235 0.255964 0.459289 0.318954 0.727010 0.334690 0.790000 0.332941 0.884485 0.350441 0.986850 0.346944 0.999975 0.003987 0.997353 0.000490 0.003909 diff --git a/datasets/pinganmajia/train/labels/订单1812990_4_7166700.txt b/datasets/pinganmajia/train/labels/订单1812990_4_7166700.txt new file mode 100644 index 0000000..6e95186 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812990_4_7166700.txt @@ -0,0 +1 @@ +4 0.002239 0.457978 0.030229 0.448787 0.038987 0.398922 0.040735 0.349056 0.091471 0.250625 0.135229 0.238824 0.252451 0.213885 0.357451 0.220441 0.418693 0.283444 0.453676 0.356924 0.469428 0.471103 0.467680 0.585270 0.499183 0.675821 0.518431 0.766373 0.495670 0.852990 0.502680 0.897610 0.483431 0.943542 0.462435 0.990784 0.002239 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1812991_4_7166782.txt b/datasets/pinganmajia/train/labels/订单1812991_4_7166782.txt new file mode 100644 index 0000000..2af8448 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812991_4_7166782.txt @@ -0,0 +1 @@ +4 1.000000 0.164231 0.879256 0.166673 0.800300 0.204731 0.659308 0.271663 0.693151 0.360899 0.704421 0.442264 0.746725 0.514442 0.794659 0.561688 0.780568 0.593183 0.569070 0.666673 0.512676 0.724418 0.430899 0.797909 0.264525 0.979010 0.241963 0.997385 0.989236 0.998697 1.000000 0.543538 diff --git a/datasets/pinganmajia/train/labels/订单1812992_4_7166753.txt b/datasets/pinganmajia/train/labels/订单1812992_4_7166753.txt new file mode 100644 index 0000000..a786934 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812992_4_7166753.txt @@ -0,0 +1 @@ +4 0.999498 0.429148 0.966250 0.402905 0.971506 0.356974 0.964498 0.324162 0.947008 0.321541 0.943504 0.233615 0.912008 0.167997 0.847263 0.126001 0.761525 0.103693 0.691534 0.115504 0.633797 0.146996 0.577803 0.202116 0.565549 0.317599 0.563807 0.402905 0.590047 0.473771 0.530559 0.531513 0.488561 0.616818 0.472813 0.687678 0.458816 0.748047 0.390578 0.931776 0.362576 0.998707 0.989508 1.000000 0.997746 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1812993_4_7166715.txt b/datasets/pinganmajia/train/labels/订单1812993_4_7166715.txt new file mode 100644 index 0000000..97115fa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812993_4_7166715.txt @@ -0,0 +1 @@ +4 0.607813 0.005301 0.618637 0.047292 0.654071 0.084039 0.687535 0.153588 0.743637 0.229711 0.778090 0.262512 0.770217 0.318947 0.746589 0.355694 0.744627 0.420000 0.739705 0.503981 0.764306 0.626030 0.799740 0.786134 0.802691 0.864873 0.784974 0.969861 0.781042 0.996111 0.999540 0.997419 1.000000 0.778773 1.000000 0.055093 0.935564 0.107662 0.909974 0.085347 0.913915 0.047292 0.913915 0.002674 diff --git a/datasets/pinganmajia/train/labels/订单1812994_4_7166769.txt b/datasets/pinganmajia/train/labels/订单1812994_4_7166769.txt new file mode 100644 index 0000000..edc3a07 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812994_4_7166769.txt @@ -0,0 +1 @@ +4 0.187622 0.216567 0.108878 0.237567 0.038889 0.387171 0.070383 0.437042 0.112378 0.479038 0.177122 0.503971 0.201617 0.484283 0.178872 0.538092 0.199867 0.573525 0.212117 0.614204 0.205117 0.654887 0.236617 0.742817 0.241861 0.778250 0.226117 0.800558 0.268111 0.801871 0.276861 0.774312 0.278611 0.731004 0.271611 0.641767 0.283861 0.582708 0.292606 0.636517 0.297856 0.689008 0.310106 0.729692 0.355600 0.734942 0.399344 0.752000 0.401094 0.733629 0.364350 0.708696 0.346850 0.664075 0.350350 0.616829 0.364350 0.523654 0.367850 0.506596 0.360850 0.476413 0.395844 0.479038 0.415094 0.377987 0.364350 0.269062 0.287356 0.221817 0.259361 0.115517 0.203367 0.114204 0.187622 0.147012 0.180622 0.177200 0.185872 0.194258 diff --git a/datasets/pinganmajia/train/labels/订单1812995_4_7166883.txt b/datasets/pinganmajia/train/labels/订单1812995_4_7166883.txt new file mode 100644 index 0000000..7f02178 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812995_4_7166883.txt @@ -0,0 +1 @@ +4 0.544578 0.291371 0.555072 0.244129 0.528828 0.207383 0.467583 0.200821 0.429089 0.234942 0.432589 0.265125 0.444839 0.304496 0.415094 0.333367 0.385344 0.385858 0.367850 0.464600 0.364350 0.556462 0.378344 0.603708 0.395844 0.620767 0.418589 0.653575 0.436089 0.623392 0.451839 0.720504 0.476333 0.788746 0.509578 0.883233 0.481583 0.929167 0.444839 0.956725 0.483333 0.967225 0.555072 0.942292 0.598817 0.925229 0.570822 0.889796 0.565572 0.851738 0.553322 0.763813 0.569072 0.797933 0.595322 0.850425 0.612817 0.916042 0.609317 0.956725 0.626817 0.997408 0.688056 0.997408 0.681061 0.964600 0.681061 0.875362 0.665311 0.807121 0.656561 0.723129 0.646061 0.632579 0.696806 0.566963 0.719556 0.413417 0.665311 0.326804 0.565572 0.296621 diff --git a/datasets/pinganmajia/train/labels/订单1812996_4_7166862.txt b/datasets/pinganmajia/train/labels/订单1812996_4_7166862.txt new file mode 100644 index 0000000..fcec7bb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812996_4_7166862.txt @@ -0,0 +1 @@ +4 0.990309 0.227045 0.862723 0.158806 0.717654 0.171933 0.591819 0.253290 0.567346 0.364845 0.597059 0.455395 0.591819 0.490825 0.600549 0.540696 0.569096 0.580069 0.401304 0.658806 0.313924 0.733608 0.263238 0.818909 0.168856 0.951460 0.111178 0.998703 0.999050 0.997388 diff --git a/datasets/pinganmajia/train/labels/订单1812997_4_7166779.txt b/datasets/pinganmajia/train/labels/订单1812997_4_7166779.txt new file mode 100644 index 0000000..72e9321 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812997_4_7166779.txt @@ -0,0 +1 @@ +4 0.374828 0.013139 0.381821 0.115503 0.373071 0.191617 0.369574 0.286107 0.353832 0.338601 0.443062 0.393716 0.493813 0.450149 0.450063 0.507887 0.549801 0.688995 0.677536 0.933084 0.709031 0.996080 0.002120 0.997391 0.005625 0.009205 diff --git a/datasets/pinganmajia/train/labels/订单1812998_4_7166761.txt b/datasets/pinganmajia/train/labels/订单1812998_4_7166761.txt new file mode 100644 index 0000000..4ce1e0f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812998_4_7166761.txt @@ -0,0 +1 @@ +4 0.007484 0.603652 0.089722 0.553775 0.145719 0.507843 0.184216 0.456667 0.220964 0.447475 0.224461 0.413358 0.180719 0.400233 0.171961 0.349056 0.168464 0.322806 0.149216 0.263750 0.177222 0.203382 0.262958 0.152206 0.327696 0.146961 0.406438 0.177132 0.467680 0.237500 0.485180 0.296556 0.488676 0.339865 0.485180 0.434350 0.472925 0.455355 0.521928 0.476348 0.521928 0.509154 0.605915 0.590527 0.696895 0.694203 0.782647 0.854301 0.810637 0.934350 0.814134 0.960600 0.829886 0.996042 0.003987 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1812999_4_7166810.txt b/datasets/pinganmajia/train/labels/订单1812999_4_7166810.txt new file mode 100644 index 0000000..8037a36 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1812999_4_7166810.txt @@ -0,0 +1 @@ +4 0.005735 0.520968 0.073987 0.499975 0.087974 0.433039 0.059984 0.414669 0.073987 0.347745 0.098480 0.330686 0.122974 0.227010 0.180719 0.185012 0.325948 0.181078 0.425686 0.220441 0.474673 0.286066 0.444935 0.366115 0.425686 0.480294 0.411683 0.520968 0.479935 0.545907 0.514918 0.612831 0.590163 0.679767 0.689902 0.751936 0.763399 0.829375 0.805392 0.868738 0.800147 0.898922 0.763399 0.933039 0.770392 0.964534 0.787892 0.998664 0.000490 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1813000_4_7166999.txt b/datasets/pinganmajia/train/labels/订单1813000_4_7166999.txt new file mode 100644 index 0000000..99925a9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813000_4_7166999.txt @@ -0,0 +1 @@ +4 0.007510 0.232269 0.058251 0.269020 0.149239 0.290015 0.215730 0.305764 0.233230 0.279514 0.247222 0.244082 0.278724 0.221775 0.318971 0.182400 0.406461 0.149591 0.495700 0.174529 0.535936 0.220463 0.535936 0.282137 0.516698 0.328071 0.488693 0.385818 0.444949 0.430432 0.516698 0.489491 0.516698 0.562978 0.537695 0.622037 0.551687 0.709961 0.544691 0.812323 0.443200 0.874005 0.467695 0.927809 0.500947 0.993426 0.007510 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1813001_4_7166762.txt b/datasets/pinganmajia/train/labels/订单1813001_4_7166762.txt new file mode 100644 index 0000000..d56cc3f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813001_4_7166762.txt @@ -0,0 +1 @@ +4 0.005423 0.503949 0.148139 0.440955 0.170774 0.379276 0.156010 0.328096 0.159947 0.297910 0.166837 0.225731 0.169793 0.090564 0.212115 0.032821 0.271168 0.003949 0.349909 0.034128 0.405029 0.144365 0.418808 0.259853 0.423726 0.338596 0.406995 0.408147 0.425697 0.488199 0.507389 0.580064 0.526091 0.741481 0.550697 0.960641 0.560538 1.000000 0.001486 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813002_4_7166745.txt b/datasets/pinganmajia/train/labels/订单1813002_4_7166745.txt new file mode 100644 index 0000000..0aee231 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813002_4_7166745.txt @@ -0,0 +1 @@ +4 0.009995 0.166630 0.124020 0.188940 0.135819 0.140380 0.125985 0.118069 0.125985 0.026204 0.142696 0.003901 0.380574 0.005209 0.388436 0.076073 0.381559 0.160065 0.332412 0.266368 0.309799 0.308357 0.344206 0.381852 0.365828 0.443527 0.363863 0.581329 0.393353 0.669254 0.418912 0.799175 0.443485 0.859542 0.439554 0.909411 0.426775 0.894974 0.416946 0.914660 0.405147 0.904162 0.393353 0.887101 0.388436 0.845105 0.392373 0.902847 0.376642 0.988148 0.004098 0.999961 diff --git a/datasets/pinganmajia/train/labels/订单1813003_4_7166836.txt b/datasets/pinganmajia/train/labels/订单1813003_4_7166836.txt new file mode 100644 index 0000000..e593d71 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813003_4_7166836.txt @@ -0,0 +1 @@ +4 0.000000 0.355551 0.035933 0.347782 0.018216 0.241481 0.000000 0.076571 0.000000 0.039897 0.000500 0.006571 0.317428 0.018385 0.334163 0.261167 0.299712 0.401583 0.387313 0.435705 0.449317 0.524942 0.453255 0.652244 0.472942 0.734917 0.475894 0.885840 0.484750 0.996071 0.002466 0.996071 0.000000 0.460737 diff --git a/datasets/pinganmajia/train/labels/订单1813005_4_7166912.txt b/datasets/pinganmajia/train/labels/订单1813005_4_7166912.txt new file mode 100644 index 0000000..ccd7a46 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813005_4_7166912.txt @@ -0,0 +1 @@ +4 0.996000 0.263798 0.913756 0.179808 0.821013 0.154875 0.726526 0.164058 0.672282 0.202115 0.588295 0.398962 0.721282 0.515760 0.590051 0.711298 0.528808 0.842538 0.509551 0.998702 0.993795 1.000000 0.999500 1.000000 1.000000 0.836538 1.000000 0.269048 diff --git a/datasets/pinganmajia/train/labels/订单1813006_4_7166844.txt b/datasets/pinganmajia/train/labels/订单1813006_4_7166844.txt new file mode 100644 index 0000000..21ff871 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813006_4_7166844.txt @@ -0,0 +1 @@ +4 0.000000 0.403218 0.131432 0.381933 0.158993 0.338634 0.151120 0.255949 0.141276 0.160150 0.158012 0.161470 0.164896 0.060417 0.194427 0.002674 0.372578 0.000046 0.408012 0.089282 0.410964 0.203461 0.402101 0.245451 0.406042 0.259896 0.386354 0.324190 0.375530 0.347812 0.330252 0.421308 0.332222 0.451493 0.335174 0.503981 0.435564 0.610289 0.442457 0.748079 0.473950 0.922616 0.475920 0.996111 0.008264 1.000000 0.002500 1.000000 -0.000000 0.832141 diff --git a/datasets/pinganmajia/train/labels/订单1813008_4_7166958.txt b/datasets/pinganmajia/train/labels/订单1813008_4_7166958.txt new file mode 100644 index 0000000..6a909cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813008_4_7166958.txt @@ -0,0 +1 @@ +4 0.566221 0.003882 0.541287 0.157427 0.568845 0.292595 0.599028 0.413333 0.631835 0.451389 0.545219 0.496009 0.516352 0.623304 0.505855 0.766352 0.459920 0.826718 0.441550 0.934327 0.486170 0.957953 0.500599 0.998633 1.000000 0.998633 1.000000 0.685205 0.999291 0.316221 0.994042 0.254539 1.000000 0.206016 1.000000 0.176835 0.990102 0.167924 0.986170 0.068187 0.978289 0.002573 diff --git a/datasets/pinganmajia/train/labels/订单1813010_4_7166925.txt b/datasets/pinganmajia/train/labels/订单1813010_4_7166925.txt new file mode 100644 index 0000000..0947a50 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813010_4_7166925.txt @@ -0,0 +1 @@ +4 1.000000 0.035087 0.815769 0.021010 0.733526 0.043327 0.621538 0.095817 0.598795 0.175865 0.618038 0.249356 0.618038 0.276913 0.625038 0.303163 0.651295 0.370096 0.681038 0.423904 0.626795 0.461962 0.604038 0.519702 0.558551 0.578760 0.504308 0.665365 0.499064 0.755923 0.549808 0.784788 0.597051 0.786106 0.583051 0.846471 0.574295 0.952769 0.607538 0.998702 0.997744 0.996077 1.000000 0.686683 diff --git a/datasets/pinganmajia/train/labels/订单1813011_4_7166907.txt b/datasets/pinganmajia/train/labels/订单1813011_4_7166907.txt new file mode 100644 index 0000000..1598e4e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813011_4_7166907.txt @@ -0,0 +1 @@ +4 0.600907 0.005278 0.597953 0.107639 0.608781 0.195564 0.631415 0.359608 0.524136 0.482966 0.480827 0.632574 0.418817 0.997402 0.994700 1.000000 1.000000 1.000000 1.000000 0.357998 0.825313 0.337296 0.842047 0.274306 0.858781 0.221814 0.855827 0.199502 0.856814 0.103701 0.845000 0.010523 diff --git a/datasets/pinganmajia/train/labels/订单1813012_4_7166969.txt b/datasets/pinganmajia/train/labels/订单1813012_4_7166969.txt new file mode 100644 index 0000000..52a2006 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813012_4_7166969.txt @@ -0,0 +1 @@ +4 0.320629 0.236272 0.329386 0.190340 0.301389 0.181151 0.257632 0.181151 0.234898 0.195592 0.234898 0.220526 0.234898 0.240208 0.192895 0.259890 0.189401 0.288761 0.175395 0.325515 0.166652 0.426557 0.182398 0.481678 0.206901 0.485614 0.219137 0.472489 0.212149 0.434441 0.222646 0.418684 0.234898 0.455428 0.248889 0.514485 0.259386 0.563048 0.275132 0.618158 0.247135 0.650976 0.273392 0.660154 0.320629 0.635219 0.331126 0.619474 0.322383 0.580110 0.306637 0.532862 0.315380 0.503991 0.332880 0.531546 0.341623 0.585351 0.353874 0.620789 0.359123 0.658849 0.390614 0.664090 0.397617 0.644408 0.385365 0.584046 0.380117 0.547292 0.380117 0.479057 0.402865 0.464616 0.408114 0.442314 0.413363 0.364879 0.406374 0.330757 0.362632 0.253333 0.327632 0.241524 diff --git a/datasets/pinganmajia/train/labels/订单1813013_4_7167047.txt b/datasets/pinganmajia/train/labels/订单1813013_4_7167047.txt new file mode 100644 index 0000000..d375324 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813013_4_7167047.txt @@ -0,0 +1 @@ +4 0.541866 0.080104 0.491667 0.114225 0.458203 0.175903 0.441476 0.223148 0.457222 0.355694 0.470017 0.388495 0.495608 0.439676 0.440486 0.494803 0.415885 0.552546 0.421788 0.740208 0.457222 0.994803 0.858793 0.998738 0.847969 0.925243 0.860764 0.862257 0.868637 0.820255 0.994627 0.961991 0.998559 0.564352 0.906042 0.517106 0.884384 0.505301 0.840095 0.455428 0.753481 0.398993 0.664896 0.384560 0.662925 0.360938 0.664896 0.328137 0.672769 0.295324 0.672769 0.253333 0.666866 0.161470 0.633403 0.101100 0.597969 0.078785 0.544818 0.072222 diff --git a/datasets/pinganmajia/train/labels/订单1813014_4_7167435.txt b/datasets/pinganmajia/train/labels/订单1813014_4_7167435.txt new file mode 100644 index 0000000..17593a5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813014_4_7167435.txt @@ -0,0 +1 @@ +4 0.009232 0.048529 0.101977 0.015723 0.210458 0.001287 0.289199 0.020968 0.366193 0.077402 0.397696 0.133836 0.406438 0.192892 0.376699 0.299191 0.336454 0.405490 0.324199 0.446164 0.444935 0.477659 0.507925 0.547218 0.521928 0.628578 0.520180 0.708640 0.469428 0.863493 0.488676 0.998664 0.002239 0.999975 0.000490 0.422549 0.019739 0.410735 0.003987 0.375306 diff --git a/datasets/pinganmajia/train/labels/订单1813017_4_7166996.txt b/datasets/pinganmajia/train/labels/订单1813017_4_7166996.txt new file mode 100644 index 0000000..8769b67 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813017_4_7166996.txt @@ -0,0 +1 @@ +4 0.003900 0.476415 0.103634 0.426545 0.077384 0.396363 0.049387 0.342552 0.068634 0.328116 0.035394 0.232318 0.070394 0.171953 0.129884 0.127335 0.238368 0.102396 0.359109 0.129957 0.458843 0.213950 0.474583 0.292691 0.495590 0.412109 0.462338 0.480347 0.502581 0.501345 0.499086 0.591901 0.535833 0.654896 0.546331 0.708698 0.663565 0.997413 0.003900 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1813018_4_7167102.txt b/datasets/pinganmajia/train/labels/订单1813018_4_7167102.txt new file mode 100644 index 0000000..3ff3072 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813018_4_7167102.txt @@ -0,0 +1 @@ +4 0.000394 0.233628 0.026644 0.215260 0.014398 0.169332 0.037141 0.145703 0.030139 0.087960 0.072141 0.002665 0.346852 0.003976 0.387095 0.045964 0.390602 0.136519 0.385347 0.192951 0.388854 0.258568 0.362604 0.335998 0.397593 0.379297 0.455336 0.416050 0.418600 0.460668 0.441343 0.505286 0.450093 0.577465 0.450093 0.683759 0.457095 0.753316 0.395845 0.892422 0.339861 0.998724 0.009699 1.000000 0.000394 1.000000 0.000000 0.831137 0.000000 0.239002 diff --git a/datasets/pinganmajia/train/labels/订单1813019_4_7167879.txt b/datasets/pinganmajia/train/labels/订单1813019_4_7167879.txt new file mode 100644 index 0000000..78cff25 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813019_4_7167879.txt @@ -0,0 +1 @@ +4 0.007372 0.423904 0.047615 0.422587 0.044115 0.381904 0.100103 0.329413 0.073859 0.244106 0.094859 0.198183 0.094859 0.149625 0.135103 0.036760 0.206846 0.007885 0.341577 0.001327 0.444821 0.034135 0.507808 0.103692 0.493808 0.224423 0.457064 0.338596 0.395821 0.437019 0.499064 0.535452 0.530551 0.576135 0.469308 0.639125 0.507808 0.702115 0.544551 0.862221 0.565551 0.965894 0.514833 1.000000 0.508859 1.000000 0.003872 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1813020_4_7166960.txt b/datasets/pinganmajia/train/labels/订单1813020_4_7166960.txt new file mode 100644 index 0000000..aaf67be --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813020_4_7166960.txt @@ -0,0 +1 @@ +4 0.614567 0.278250 0.604067 0.238879 0.598817 0.215254 0.619817 0.179825 0.665311 0.169325 0.712556 0.195571 0.714306 0.237567 0.703806 0.269062 0.780794 0.299246 0.833289 0.370113 0.842039 0.423917 0.803544 0.472475 0.791294 0.549900 0.763300 0.614204 0.742300 0.784808 0.793044 0.811058 0.770300 0.842554 0.730050 0.828117 0.681061 0.788746 0.684556 0.639142 0.672311 0.632579 0.658311 0.681133 0.672311 0.729692 0.667061 0.791371 0.630317 0.845179 0.591822 0.834679 0.593572 0.812371 0.618067 0.775625 0.597067 0.744129 0.586572 0.619454 0.548078 0.560400 0.556822 0.490846 0.502583 0.439667 0.507828 0.368800 0.556822 0.309746 0.567322 0.296621 diff --git a/datasets/pinganmajia/train/labels/订单1813026_4_7166981.txt b/datasets/pinganmajia/train/labels/订单1813026_4_7166981.txt new file mode 100644 index 0000000..80b0781 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813026_4_7166981.txt @@ -0,0 +1 @@ +4 0.015839 0.538045 0.062505 0.498676 0.050839 0.454056 0.064837 0.425184 0.074172 0.366127 0.165153 0.311011 0.363464 0.286078 0.449782 0.326759 0.482451 0.372690 0.480120 0.434369 0.480120 0.473738 0.487113 0.503922 0.428791 0.598413 0.613105 0.730956 0.683094 0.812322 0.788083 0.981612 0.776416 0.997359 0.006503 0.996048 diff --git a/datasets/pinganmajia/train/labels/订单1813027_4_7167088.txt b/datasets/pinganmajia/train/labels/订单1813027_4_7167088.txt new file mode 100644 index 0000000..5cee639 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813027_4_7167088.txt @@ -0,0 +1 @@ +4 0.655037 0.363546 0.645196 0.322859 0.641262 0.287426 0.631415 0.233619 0.642243 0.228374 0.639289 0.139134 0.650116 0.098448 0.714093 0.028897 0.745588 0.002647 0.845000 0.003962 0.888309 0.064330 0.894210 0.127320 0.885355 0.199502 0.889289 0.219183 0.877482 0.262492 0.878462 0.295302 0.883388 0.353047 0.888309 0.387165 0.998542 0.519714 1.000000 0.875147 1.000000 1.000000 0.590074 1.000000 0.579252 0.898979 0.572365 0.849109 0.554645 0.769052 0.555631 0.669314 0.558585 0.584020 0.599920 0.451471 0.623542 0.393725 diff --git a/datasets/pinganmajia/train/labels/订单1813028_4_7167051.txt b/datasets/pinganmajia/train/labels/订单1813028_4_7167051.txt new file mode 100644 index 0000000..45873cb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813028_4_7167051.txt @@ -0,0 +1 @@ +4 0.005735 0.423860 0.061732 0.393676 0.089722 0.330686 0.110719 0.299191 0.140474 0.208640 0.222712 0.148272 0.322451 0.150895 0.395948 0.179767 0.446683 0.237500 0.465931 0.339865 0.455425 0.398922 0.392435 0.513100 0.418693 0.627267 0.514918 0.769007 0.539428 0.849056 0.583170 0.906801 0.618170 0.998664 0.000490 0.993407 diff --git a/datasets/pinganmajia/train/labels/订单1813029_4_7167133.txt b/datasets/pinganmajia/train/labels/订单1813029_4_7167133.txt new file mode 100644 index 0000000..fe6db30 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813029_4_7167133.txt @@ -0,0 +1 @@ +4 0.000490 0.540650 0.063480 0.469792 0.128219 0.425172 0.087974 0.385797 0.086225 0.330686 0.056487 0.257194 0.066977 0.249314 0.059984 0.133836 0.108971 0.091838 0.213954 0.017034 0.360948 0.031471 0.420441 0.080025 0.472925 0.153517 0.481683 0.266373 0.467680 0.324118 0.439690 0.425172 0.530670 0.456667 0.539428 0.492096 0.653154 0.511789 0.787892 0.635147 0.887631 0.730944 0.919118 0.787377 0.999608 0.876618 0.997859 0.998664 0.009232 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813030_4_7167041.txt b/datasets/pinganmajia/train/labels/订单1813030_4_7167041.txt new file mode 100644 index 0000000..ea319ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813030_4_7167041.txt @@ -0,0 +1 @@ +4 0.005615 0.074817 0.138603 0.018385 0.229590 0.022327 0.399321 0.036760 0.439564 0.122067 0.439564 0.173240 0.415064 0.360904 0.486808 0.404212 0.462308 0.475077 0.513051 0.581385 0.481564 0.682433 0.495564 0.804481 0.472808 0.948837 0.479808 1.000000 0.477987 1.000000 0.009115 0.996077 0.005615 0.341221 diff --git a/datasets/pinganmajia/train/labels/订单1813032_4_7167170.txt b/datasets/pinganmajia/train/labels/订单1813032_4_7167170.txt new file mode 100644 index 0000000..05f477e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813032_4_7167170.txt @@ -0,0 +1 @@ +4 0.609413 0.371360 0.595413 0.338560 0.604160 0.322810 0.628667 0.299190 0.663653 0.301810 0.691653 0.320180 0.688147 0.358240 0.677653 0.377930 0.747640 0.404170 0.775640 0.465850 0.789640 0.541970 0.740653 0.637770 0.730147 0.671890 0.728400 0.727010 0.726653 0.787370 0.733653 0.863490 0.731893 0.912050 0.740653 0.976350 0.717893 0.977660 0.691653 0.959290 0.684653 0.930420 0.675907 0.901550 0.665400 0.824120 0.644413 0.766380 0.626907 0.843810 0.639160 0.867430 0.602413 0.880550 0.539427 0.885800 0.548173 0.863490 0.576173 0.839870 0.570920 0.750630 0.548173 0.641710 0.541173 0.591840 0.521920 0.583960 0.542920 0.555090 0.493933 0.509160 0.506173 0.464540 0.586667 0.377930 diff --git a/datasets/pinganmajia/train/labels/订单1813034_4_7167196.txt b/datasets/pinganmajia/train/labels/订单1813034_4_7167196.txt new file mode 100644 index 0000000..fca6364 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813034_4_7167196.txt @@ -0,0 +1 @@ +4 0.500530 0.465926 0.389306 0.526296 0.319427 0.591910 0.292847 0.654907 0.220998 0.822882 0.204271 0.989549 0.443437 0.998738 0.898620 1.000000 0.916441 1.000000 0.946398 0.997419 0.999540 0.998738 1.000000 0.933056 1.000000 0.568877 0.982813 0.536794 0.885373 0.496111 0.739705 0.427870 0.751510 0.329444 0.766276 0.178530 0.751510 0.091910 0.715095 0.043356 0.646198 0.013171 0.573359 0.028924 0.533993 0.051227 0.485764 0.123403 0.476910 0.234954 0.461155 0.255949 0.471988 0.337315 0.472969 0.372755 diff --git a/datasets/pinganmajia/train/labels/订单1813035_4_7167167.txt b/datasets/pinganmajia/train/labels/订单1813035_4_7167167.txt new file mode 100644 index 0000000..ecd735f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813035_4_7167167.txt @@ -0,0 +1 @@ +4 0.003987 0.635147 0.115980 0.549841 0.075735 0.531471 0.045980 0.493407 0.089722 0.489473 0.037239 0.400233 0.082729 0.334620 0.231454 0.263750 0.327696 0.287377 0.422190 0.418603 0.429183 0.476348 0.432680 0.527537 0.474673 0.578713 0.530670 0.720441 0.555163 0.757194 0.551667 0.842488 0.563922 0.898922 0.521928 0.999975 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813038_4_7167144.txt b/datasets/pinganmajia/train/labels/订单1813038_4_7167144.txt new file mode 100644 index 0000000..6f65ff3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813038_4_7167144.txt @@ -0,0 +1 @@ +4 0.416844 0.316304 0.422089 0.283496 0.397594 0.261188 0.388844 0.234942 0.401094 0.177200 0.446589 0.169325 0.479833 0.168013 0.525328 0.194258 0.520078 0.249375 0.502583 0.286121 0.509578 0.317617 0.597067 0.341242 0.611067 0.497408 0.591822 0.591896 0.558572 0.641767 0.516578 0.838617 0.504333 0.871425 0.525328 0.919979 0.507828 0.942292 0.469333 0.938354 0.455339 0.897671 0.448339 0.859613 0.465833 0.628642 0.439589 0.837304 0.422089 0.881921 0.395844 0.937042 0.362600 0.923917 0.381844 0.862237 0.357350 0.725754 0.366100 0.629954 0.355600 0.648325 0.329350 0.647012 0.320606 0.626017 0.325856 0.594521 0.306606 0.484283 0.310106 0.431792 0.332850 0.342554 diff --git a/datasets/pinganmajia/train/labels/订单1813039_4_7167175.txt b/datasets/pinganmajia/train/labels/订单1813039_4_7167175.txt new file mode 100644 index 0000000..2c6427f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813039_4_7167175.txt @@ -0,0 +1 @@ +4 0.647179 0.523669 0.628481 0.473796 0.625530 0.429178 0.630451 0.401620 0.626510 0.322882 0.654071 0.213958 0.683602 0.156215 0.724939 0.126030 0.776120 0.122095 0.830252 0.141782 0.873559 0.202153 0.898168 0.270394 0.893247 0.336007 0.879462 0.410810 0.878481 0.460683 0.865686 0.507917 0.992656 0.612905 0.998559 0.619468 0.999540 0.997419 0.442457 0.998738 0.448359 0.866192 0.457222 0.816319 0.498559 0.657523 0.535964 0.574850 0.568438 0.542037 diff --git a/datasets/pinganmajia/train/labels/订单1813040_4_7167131.txt b/datasets/pinganmajia/train/labels/订单1813040_4_7167131.txt new file mode 100644 index 0000000..cb0442c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813040_4_7167131.txt @@ -0,0 +1 @@ +4 0.011349 0.388437 0.023025 0.368750 0.031771 0.305760 0.107643 0.293952 0.189346 0.234896 0.355668 0.202083 0.571580 0.217837 0.676635 0.267702 0.711649 0.346446 0.644537 0.375312 0.545327 0.463241 0.451948 0.519669 0.399428 0.551170 0.492807 0.595784 0.346907 0.636471 0.419850 0.664026 0.376090 0.699461 0.352738 0.723082 0.381921 0.993425 0.005518 0.997359 diff --git a/datasets/pinganmajia/train/labels/订单1813043_4_7167192.txt b/datasets/pinganmajia/train/labels/订单1813043_4_7167192.txt new file mode 100644 index 0000000..12c6026 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813043_4_7167192.txt @@ -0,0 +1 @@ +4 0.992500 0.471143 0.926004 0.355661 0.829773 0.317599 0.798277 0.308416 0.793021 0.179808 0.709034 0.119439 0.632045 0.097131 0.535805 0.102379 0.472813 0.135185 0.413324 0.208679 0.404574 0.269048 0.394072 0.362223 0.416818 0.461960 0.350331 0.484268 0.367831 0.566946 0.329328 0.654872 0.299583 0.713928 0.301335 0.856974 0.283835 0.998707 0.990208 1.000000 0.999498 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813044_4_7167203.txt b/datasets/pinganmajia/train/labels/订单1813044_4_7167203.txt new file mode 100644 index 0000000..5652ef9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813044_4_7167203.txt @@ -0,0 +1 @@ +4 0.992500 0.215240 0.887513 0.144375 0.787769 0.132558 0.716026 0.149625 0.647795 0.216548 0.607538 0.301856 0.668782 0.460644 0.728282 0.496077 0.614538 0.590567 0.548051 0.677183 0.563795 0.746731 0.551551 0.817596 0.514808 0.909462 0.513051 0.998702 0.992103 1.000000 0.997744 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813046_4_7167291.txt b/datasets/pinganmajia/train/labels/订单1813046_4_7167291.txt new file mode 100644 index 0000000..77d3813 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813046_4_7167291.txt @@ -0,0 +1 @@ +4 0.003987 0.574779 0.040735 0.551152 0.058235 0.524902 0.096732 0.502598 0.145719 0.499975 0.142222 0.476348 0.117729 0.472414 0.100229 0.425172 0.108971 0.393676 0.119477 0.394988 0.124722 0.329375 0.154477 0.284755 0.210458 0.261127 0.296209 0.250625 0.346944 0.266373 0.387190 0.309681 0.413431 0.371360 0.418693 0.442230 0.420441 0.478971 0.464183 0.482917 0.446683 0.587904 0.572663 0.700760 0.639167 0.795245 0.780899 0.994718 0.000490 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813049_4_7167299.txt b/datasets/pinganmajia/train/labels/订单1813049_4_7167299.txt new file mode 100644 index 0000000..9e921b5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813049_4_7167299.txt @@ -0,0 +1 @@ +4 0.999528 0.497402 0.932598 0.465907 0.910944 0.448848 0.896183 0.433096 0.894210 0.358292 0.913897 0.356985 0.925711 0.251993 0.910944 0.219183 0.902089 0.136511 0.864688 0.097141 0.801691 0.078766 0.752482 0.097141 0.713113 0.135196 0.685551 0.217876 0.689485 0.317614 0.752482 0.472467 0.754449 0.505278 0.680631 0.519714 0.636336 0.622075 0.590080 0.770368 0.554651 1.000000 0.999528 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813050_4_7167247.txt b/datasets/pinganmajia/train/labels/订单1813050_4_7167247.txt new file mode 100644 index 0000000..fd88473 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813050_4_7167247.txt @@ -0,0 +1 @@ +4 0.998554 0.532846 0.929656 0.486914 0.932611 0.450169 0.935561 0.381928 0.898162 0.321561 0.845011 0.303192 0.802685 0.317627 0.795800 0.267754 0.794815 0.179831 0.770207 0.108962 0.692452 0.066970 0.643236 0.081405 0.601901 0.136525 0.588120 0.186391 0.588120 0.284816 0.595011 0.393743 0.606822 0.425240 0.553671 0.543347 0.523162 0.593213 0.437532 0.762507 0.412924 0.855685 0.419815 0.905551 0.465090 0.961984 0.502489 0.976419 0.590090 0.905551 0.494619 0.996102 0.994391 1.000000 0.999539 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813052_4_7167279.txt b/datasets/pinganmajia/train/labels/订单1813052_4_7167279.txt new file mode 100644 index 0000000..9ec65ff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813052_4_7167279.txt @@ -0,0 +1 @@ +4 0.322383 0.430493 0.262880 0.454123 0.259386 0.612917 0.282135 0.640471 0.287383 0.622094 0.296126 0.629978 0.304883 0.679846 0.296126 0.769079 0.304883 0.813706 0.329386 0.824200 0.345132 0.816327 0.334635 0.775647 0.331126 0.748081 0.357368 0.653596 0.378377 0.744145 0.373129 0.770395 0.392368 0.780888 0.430863 0.795329 0.436111 0.779583 0.413363 0.752018 0.408114 0.685088 0.411623 0.603728 0.423860 0.572226 0.446608 0.607664 0.458860 0.584046 0.423860 0.481678 0.413363 0.439682 0.385365 0.437061 0.371374 0.429189 0.388874 0.404254 0.376623 0.366195 0.336374 0.363575 0.317135 0.375384 0.315380 0.393750 0.320629 0.413443 diff --git a/datasets/pinganmajia/train/labels/订单1813054_4_7167236.txt b/datasets/pinganmajia/train/labels/订单1813054_4_7167236.txt new file mode 100644 index 0000000..1019dd3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813054_4_7167236.txt @@ -0,0 +1 @@ +4 0.003872 0.434394 0.056359 0.443587 0.063359 0.421279 0.051115 0.397654 0.037115 0.368779 0.038872 0.328096 0.028372 0.261173 0.049359 0.196865 0.105359 0.174558 0.166603 0.177183 0.213846 0.143058 0.282090 0.152250 0.332833 0.181115 0.373077 0.253298 0.367821 0.372721 0.338077 0.448837 0.378321 0.476394 0.355577 0.526260 0.425564 0.643058 0.490308 0.922587 0.520051 0.998702 0.003872 0.996077 diff --git a/datasets/pinganmajia/train/labels/订单1813055_4_7167284.txt b/datasets/pinganmajia/train/labels/订单1813055_4_7167284.txt new file mode 100644 index 0000000..a2007ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813055_4_7167284.txt @@ -0,0 +1 @@ +4 1.000000 0.621912 0.899869 0.565588 0.905131 0.523591 0.868382 0.498664 0.887631 0.460600 0.891127 0.419926 0.871879 0.419926 0.880621 0.296556 0.777386 0.228321 0.665408 0.229632 0.619918 0.251936 0.553415 0.310993 0.513170 0.392365 0.523676 0.530159 0.479935 0.540650 0.339951 0.666642 0.332941 0.719130 0.331193 0.893676 0.285703 0.998664 0.997859 0.999975 1.000000 0.885453 diff --git a/datasets/pinganmajia/train/labels/订单1813058_4_7167382.txt b/datasets/pinganmajia/train/labels/订单1813058_4_7167382.txt new file mode 100644 index 0000000..6e59f82 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813058_4_7167382.txt @@ -0,0 +1 @@ +4 1.000000 0.951250 0.882292 0.839931 0.801794 0.763819 0.789549 0.728385 0.835046 0.670642 0.821042 0.633898 0.840289 0.593212 0.847292 0.563030 0.852546 0.536780 0.885787 0.459358 0.800046 0.388490 0.733553 0.360929 0.658310 0.375365 0.567326 0.427856 0.532326 0.481667 0.497338 0.572214 0.425590 0.611589 0.276863 0.629957 0.163125 0.717882 0.000000 0.818568 0.000000 0.985295 0.000394 0.998724 0.972130 1.000000 0.999525 1.000000 1.000000 0.993776 diff --git a/datasets/pinganmajia/train/labels/订单1813060_4_7167392.txt b/datasets/pinganmajia/train/labels/订单1813060_4_7167392.txt new file mode 100644 index 0000000..79f5c33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813060_4_7167392.txt @@ -0,0 +1 @@ +4 1.000000 0.179048 0.870795 0.200793 0.760826 0.233606 0.712882 0.301846 0.707242 0.450139 0.743905 0.531505 0.687510 0.569562 0.464731 0.618120 0.422438 0.688986 0.250424 0.825466 0.016374 0.998697 0.997696 0.998697 1.000000 0.663538 diff --git a/datasets/pinganmajia/train/labels/订单1813066_4_7167355.txt b/datasets/pinganmajia/train/labels/订单1813066_4_7167355.txt new file mode 100644 index 0000000..bef1abd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813066_4_7167355.txt @@ -0,0 +1 @@ +4 0.000000 0.316492 0.079133 0.250688 0.185872 0.219192 0.294356 0.221817 0.359100 0.257250 0.402844 0.312371 0.409844 0.354363 0.416844 0.459350 0.324106 0.633892 0.294356 0.657512 0.458839 0.766437 0.422089 0.833367 0.416844 0.917354 0.409844 0.998721 0.000000 0.994813 diff --git a/datasets/pinganmajia/train/labels/订单1813068_4_7167420.txt b/datasets/pinganmajia/train/labels/订单1813068_4_7167420.txt new file mode 100644 index 0000000..19ee7f5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813068_4_7167420.txt @@ -0,0 +1 @@ +4 0.661842 0.213958 0.656594 0.177215 0.684591 0.149660 0.724825 0.156217 0.731827 0.186404 0.723085 0.219211 0.787822 0.229715 0.787822 0.262522 0.800073 0.341261 0.784327 0.404254 0.761579 0.443618 0.747573 0.439682 0.759825 0.417379 0.758070 0.389814 0.747573 0.368816 0.749327 0.400318 0.738830 0.469868 0.733582 0.527610 0.724825 0.568289 0.730073 0.587982 0.744079 0.619474 0.730073 0.622094 0.707325 0.570921 0.688085 0.530241 0.684591 0.476425 0.675833 0.448871 0.660088 0.479057 0.639094 0.486930 0.609342 0.473805 0.605848 0.426557 0.605848 0.359627 0.600599 0.392445 0.598845 0.417379 0.597091 0.440998 0.579591 0.427873 0.570848 0.402939 0.562105 0.353070 0.574342 0.318947 0.604094 0.252018 0.623348 0.224463 diff --git a/datasets/pinganmajia/train/labels/订单1813069_4_7167520.txt b/datasets/pinganmajia/train/labels/订单1813069_4_7167520.txt new file mode 100644 index 0000000..d75077b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813069_4_7167520.txt @@ -0,0 +1 @@ +4 0.014505 0.167969 0.108997 0.114160 0.219232 0.085293 0.324219 0.104980 0.434453 0.158779 0.478203 0.303145 0.460703 0.366133 0.455456 0.429121 0.416966 0.505244 0.457201 0.528857 0.555195 0.715215 0.532448 0.817578 0.577943 0.950117 0.598932 0.999990 0.000000 0.996064 0.000000 0.474395 0.032005 0.471123 0.033763 0.448809 0.002266 0.444873 diff --git a/datasets/pinganmajia/train/labels/订单1813070_4_7167482.txt b/datasets/pinganmajia/train/labels/订单1813070_4_7167482.txt new file mode 100644 index 0000000..1515106 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813070_4_7167482.txt @@ -0,0 +1 @@ +4 0.639175 0.292637 0.619925 0.267700 0.626925 0.254575 0.633925 0.220456 0.651425 0.206019 0.700417 0.196831 0.728408 0.208644 0.742408 0.238831 0.749408 0.258512 0.740658 0.276888 0.733658 0.305756 0.805400 0.335944 0.831650 0.375312 0.847400 0.439619 0.852650 0.591850 0.843900 0.607594 0.822900 0.657463 0.824650 0.627281 0.815900 0.639094 0.814150 0.599719 0.794900 0.531481 0.784408 0.565600 0.786158 0.603656 0.768658 0.690275 0.742408 0.740144 0.737158 0.790013 0.705667 0.872687 0.728408 0.908119 0.733658 0.936994 0.710917 0.943556 0.679417 0.926494 0.663667 0.895000 0.654925 0.872687 0.679417 0.757200 0.674167 0.675837 0.653175 0.757200 0.646175 0.849063 0.637425 0.896306 0.626925 0.904181 0.625175 0.947488 0.609425 0.961925 0.577933 0.954050 0.569183 0.931744 0.598925 0.892375 0.583183 0.853000 0.579683 0.766387 0.563933 0.677150 0.576183 0.585288 0.563933 0.527544 0.556933 0.553787 0.558683 0.616781 0.549933 0.633844 0.539433 0.615469 0.532433 0.633844 0.521942 0.631219 0.514942 0.593162 0.507942 0.548538 0.514942 0.480300 0.539433 0.383188 0.569183 0.345125 0.625175 0.322819 diff --git a/datasets/pinganmajia/train/labels/订单1813071_4_7167533.txt b/datasets/pinganmajia/train/labels/订单1813071_4_7167533.txt new file mode 100644 index 0000000..9bfea1f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813071_4_7167533.txt @@ -0,0 +1 @@ +4 0.007372 0.242798 0.016115 0.144375 0.080859 0.073510 0.182346 0.023635 0.296090 0.063010 0.394077 0.114192 0.427321 0.169308 0.422064 0.240173 0.420321 0.358279 0.397577 0.422587 0.472808 0.480327 0.472808 0.521010 0.507808 0.631250 0.506051 0.682433 0.502551 0.838596 0.495564 0.998702 0.000372 0.998702 0.000372 0.395029 0.016115 0.383221 0.003872 0.366154 diff --git a/datasets/pinganmajia/train/labels/订单1813072_4_7167539.txt b/datasets/pinganmajia/train/labels/订单1813072_4_7167539.txt new file mode 100644 index 0000000..425bb58 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813072_4_7167539.txt @@ -0,0 +1 @@ +4 0.009919 0.746683 0.161899 0.631207 0.153166 0.610207 0.130455 0.585268 0.149675 0.519659 0.158409 0.452720 0.207321 0.393671 0.299903 0.364793 0.388994 0.379232 0.457127 0.531463 0.457127 0.576085 0.455390 0.610207 0.479838 0.612829 0.533994 0.633829 0.575925 0.682378 0.565438 0.746683 0.602127 0.867427 0.621347 0.936976 0.605617 0.997341 0.002922 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1813073_4_7167459.txt b/datasets/pinganmajia/train/labels/订单1813073_4_7167459.txt new file mode 100644 index 0000000..56a801b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813073_4_7167459.txt @@ -0,0 +1 @@ +4 0.000000 0.488542 0.070394 0.465911 0.079144 0.446233 0.061644 0.345182 0.063391 0.267752 0.077384 0.187700 0.145625 0.135208 0.241863 0.107648 0.329352 0.116832 0.395845 0.156207 0.460590 0.187700 0.467593 0.280877 0.441343 0.395052 0.430845 0.475104 0.513079 0.553845 0.560324 0.653576 0.658310 0.906858 0.689815 0.959358 0.679317 0.988229 0.672338 1.000000 0.002153 1.000000 0.000000 0.791172 diff --git a/datasets/pinganmajia/train/labels/订单1813076_4_7167469.txt b/datasets/pinganmajia/train/labels/订单1813076_4_7167469.txt new file mode 100644 index 0000000..f071c34 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813076_4_7167469.txt @@ -0,0 +1 @@ +4 0.992500 0.148308 0.901513 0.124683 0.819269 0.115500 0.730026 0.127308 0.653038 0.171933 0.604038 0.242798 0.611038 0.287413 0.635538 0.381904 0.640795 0.425212 0.670538 0.493452 0.721282 0.540702 0.723026 0.565635 0.637295 0.649625 0.600551 0.698183 0.551551 0.761173 0.495564 0.874029 0.462308 0.998702 0.993244 1.000000 0.999500 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813077_4_7167499.txt b/datasets/pinganmajia/train/labels/订单1813077_4_7167499.txt new file mode 100644 index 0000000..cc6a347 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813077_4_7167499.txt @@ -0,0 +1 @@ +4 0.002492 0.316317 0.022179 0.294006 0.034975 0.258572 0.028083 0.225767 0.033004 0.211328 0.031037 0.149650 0.036942 0.115528 0.055642 0.105028 0.041862 0.002667 0.323358 0.005294 0.316471 0.124717 0.311550 0.158839 0.307613 0.195583 0.364700 0.303194 0.375525 0.347811 0.443437 0.422617 0.426704 0.454111 0.460171 0.551222 0.500525 0.721828 0.524146 0.804506 0.576313 0.998733 0.002492 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813078_4_7167598.txt b/datasets/pinganmajia/train/labels/订单1813078_4_7167598.txt new file mode 100644 index 0000000..5bca771 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813078_4_7167598.txt @@ -0,0 +1 @@ +4 0.003479 0.496106 0.069421 0.456739 0.111746 0.440989 0.167846 0.423928 0.158004 0.392433 0.141271 0.377994 0.137338 0.315006 0.157021 0.291383 0.165879 0.234950 0.206233 0.153589 0.277100 0.149650 0.331233 0.174583 0.352887 0.219206 0.363712 0.305817 0.363712 0.341250 0.330250 0.475111 0.334187 0.510544 0.393242 0.557789 0.414896 0.610278 0.460171 0.738889 0.484775 0.837311 0.482808 0.888494 0.498554 0.942300 0.495604 0.969861 0.497571 1.000000 0.489396 1.000000 0.003479 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813080_4_7167495.txt b/datasets/pinganmajia/train/labels/订单1813080_4_7167495.txt new file mode 100644 index 0000000..2d728be --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813080_4_7167495.txt @@ -0,0 +1 @@ +4 0.003987 0.409424 0.091471 0.391054 0.077484 0.375306 0.094984 0.352990 0.101977 0.326740 0.103725 0.288689 0.142222 0.223076 0.254199 0.183701 0.367941 0.196826 0.411683 0.230944 0.444935 0.301814 0.448431 0.354301 0.429183 0.433039 0.359199 0.539338 0.380196 0.593150 0.467680 0.683701 0.520180 0.769007 0.506176 0.820184 0.546422 0.884485 0.563922 0.967169 0.602418 0.998664 -0.000000 0.999975 0.000000 0.858150 diff --git a/datasets/pinganmajia/train/labels/订单1813081_4_7167601.txt b/datasets/pinganmajia/train/labels/订单1813081_4_7167601.txt new file mode 100644 index 0000000..b2ddaaf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813081_4_7167601.txt @@ -0,0 +1 @@ +4 0.004445 0.380594 0.052672 0.353031 0.076289 0.349094 0.076289 0.280854 0.062516 0.267729 0.053656 0.203427 0.046766 0.147000 0.066453 0.145688 0.058578 0.052510 0.064484 0.005271 0.364680 0.006583 0.372555 0.065635 0.366648 0.181115 0.360742 0.276917 0.342039 0.349094 0.290859 0.434396 0.299719 0.452771 0.354836 0.539385 0.380430 0.751990 0.407984 0.998708 0.004445 0.998708 0.000000 0.542698 0.000000 0.482458 diff --git a/datasets/pinganmajia/train/labels/订单1813083_4_7168095.txt b/datasets/pinganmajia/train/labels/订单1813083_4_7168095.txt new file mode 100644 index 0000000..29d0d09 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813083_4_7168095.txt @@ -0,0 +1 @@ +4 0.701303 0.311021 0.685559 0.287396 0.697809 0.254593 0.739804 0.238841 0.774798 0.270337 0.766044 0.304455 0.865790 0.343832 0.878039 0.396324 0.843045 0.534118 0.829043 0.580052 0.809792 0.586609 0.808039 0.620735 0.809792 0.717846 0.804544 0.759836 0.804544 0.782145 0.792295 0.790026 0.762549 0.811021 0.734556 0.807085 0.745052 0.775588 0.762549 0.746713 0.766044 0.667976 0.746805 0.625978 0.753806 0.686349 0.755548 0.724403 0.741557 0.749343 0.671557 0.758529 0.650565 0.746713 0.696055 0.725718 0.699562 0.645666 0.676805 0.527552 0.662814 0.464567 0.666309 0.396324 0.575329 0.421254 0.500081 0.434377 0.484337 0.425190 0.487832 0.412067 0.566574 0.391073 0.641811 0.364827 0.696055 0.325458 diff --git a/datasets/pinganmajia/train/labels/订单1813087_4_7167721.txt b/datasets/pinganmajia/train/labels/订单1813087_4_7167721.txt new file mode 100644 index 0000000..8ee1a1e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813087_4_7167721.txt @@ -0,0 +1 @@ +4 0.034687 0.678462 0.098883 0.644344 0.087221 0.577414 0.104728 0.553793 0.157248 0.517047 0.253529 0.446183 0.449033 0.413370 0.592016 0.450116 0.656199 0.494737 0.644537 0.534105 0.621185 0.577414 0.603678 0.601036 0.603678 0.654841 0.495722 0.737518 0.527820 0.795263 0.548243 0.837255 0.594932 0.893689 0.705804 0.999988 0.005518 0.998676 0.000000 0.803585 0.000000 0.688064 diff --git a/datasets/pinganmajia/train/labels/订单1813089_4_7167660.txt b/datasets/pinganmajia/train/labels/订单1813089_4_7167660.txt new file mode 100644 index 0000000..456b91f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813089_4_7167660.txt @@ -0,0 +1 @@ +4 0.684541 0.463249 0.670762 0.422565 0.658950 0.385820 0.646157 0.383197 0.644189 0.347760 0.645171 0.299206 0.654033 0.290020 0.664858 0.225716 0.674702 0.135163 0.716040 0.070859 0.772139 0.045924 0.829229 0.052487 0.871553 0.094479 0.899111 0.149603 0.900093 0.220469 0.889268 0.278210 0.895171 0.335951 0.889268 0.374010 0.875488 0.400254 0.836118 0.456686 0.836118 0.476374 1.000000 0.494264 1.000000 0.998678 0.511313 0.997370 0.502456 0.795267 0.504424 0.713906 0.520171 0.569551 0.530015 0.552487 0.651079 0.513118 0.679619 0.471120 diff --git a/datasets/pinganmajia/train/labels/订单1813090_4_7167708.txt b/datasets/pinganmajia/train/labels/订单1813090_4_7167708.txt new file mode 100644 index 0000000..84d3705 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813090_4_7167708.txt @@ -0,0 +1 @@ +4 0.173754 0.165400 0.167846 0.126028 0.173754 0.098467 0.188517 0.039411 0.217058 0.036789 0.258400 0.055161 0.277100 0.086656 0.275129 0.147028 0.262338 0.208706 0.272179 0.228389 0.300721 0.304506 0.297771 0.459361 0.284975 0.563033 0.284975 0.602406 0.265288 0.656211 0.254463 0.783506 0.248554 0.817628 0.256429 0.952800 0.306625 0.975111 0.312533 0.994794 0.266271 0.997417 0.246587 0.998733 0.217058 0.996106 0.214108 0.971172 0.206233 0.925239 0.204267 0.883244 0.194421 0.846500 0.193438 0.783506 0.185563 0.845189 0.188517 0.897683 0.188517 0.937050 0.209187 0.998733 0.142258 0.997417 0.145208 0.975111 0.134383 0.927867 0.129462 0.863561 0.136350 0.808444 0.118633 0.765133 0.124542 0.654900 0.109775 0.660150 0.097967 0.660150 0.062533 0.623406 0.025129 0.497417 0.012337 0.460672 0.030054 0.325506 0.033004 0.275633 0.065483 0.232328 0.064500 0.173272 0.165879 0.177211 diff --git a/datasets/pinganmajia/train/labels/订单1813093_4_7167651.txt b/datasets/pinganmajia/train/labels/订单1813093_4_7167651.txt new file mode 100644 index 0000000..1df5387 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813093_4_7167651.txt @@ -0,0 +1 @@ +4 0.999517 0.106333 0.913778 0.045967 0.831539 0.017092 0.747550 0.003971 0.665311 0.009221 0.558572 0.040717 0.465833 0.107646 0.418589 0.183758 0.437839 0.282183 0.451839 0.360925 0.500833 0.514467 0.485083 0.594521 0.399344 0.807121 0.364350 0.997408 0.999517 0.998721 diff --git a/datasets/pinganmajia/train/labels/订单1813094_4_7167670.txt b/datasets/pinganmajia/train/labels/订单1813094_4_7167670.txt new file mode 100644 index 0000000..5eb21f7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813094_4_7167670.txt @@ -0,0 +1 @@ +4 0.003987 0.446164 0.061732 0.394988 0.105474 0.355613 0.103725 0.290000 0.075735 0.263750 0.061732 0.212574 0.072222 0.199449 0.066977 0.118088 0.135229 0.003909 0.434428 0.006532 0.499183 0.077402 0.513170 0.154828 0.516667 0.229632 0.499183 0.312304 0.478186 0.389743 0.525425 0.412047 0.549918 0.460600 0.658399 0.482917 0.742402 0.551152 0.803644 0.627267 0.859624 0.656140 1.000000 0.752647 1.000000 0.998652 0.003987 0.993407 diff --git a/datasets/pinganmajia/train/labels/订单1813095_4_7167716.txt b/datasets/pinganmajia/train/labels/订单1813095_4_7167716.txt new file mode 100644 index 0000000..615f01c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813095_4_7167716.txt @@ -0,0 +1 @@ +4 0.173759 0.296632 0.146198 0.136528 0.158993 0.139155 0.178681 0.003981 0.381432 0.003981 0.410964 0.114225 0.404071 0.234954 0.391276 0.270394 0.384384 0.304514 0.345998 0.377998 0.350920 0.418681 0.351910 0.463299 0.443437 0.557789 0.451319 0.738889 0.470998 0.839942 0.512326 1.000000 0.493741 1.000000 0.003481 0.998738 0.002500 0.380625 0.081233 0.385880 0.118637 0.380625 0.155052 0.362257 diff --git a/datasets/pinganmajia/train/labels/订单1813096_4_7167610.txt b/datasets/pinganmajia/train/labels/订单1813096_4_7167610.txt new file mode 100644 index 0000000..17d20ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813096_4_7167610.txt @@ -0,0 +1 @@ +4 0.996017 0.654887 0.896283 0.605021 0.875283 0.580083 0.845539 0.540717 0.814044 0.527592 0.836789 0.454100 0.866533 0.433104 0.868283 0.375362 0.850789 0.375362 0.887533 0.271687 0.842039 0.223129 0.765050 0.179825 0.646061 0.161450 0.583072 0.178512 0.556822 0.227067 0.530578 0.359613 0.525328 0.396358 0.530578 0.476413 0.581322 0.542029 0.546328 0.566963 0.371350 0.623392 0.409844 0.656200 0.360850 0.716567 0.338100 0.753313 0.322356 0.898983 0.278622 1.000000 0.287694 1.000000 1.000000 0.997421 1.000000 0.849700 diff --git a/datasets/pinganmajia/train/labels/订单1813098_4_7167577.txt b/datasets/pinganmajia/train/labels/订单1813098_4_7167577.txt new file mode 100644 index 0000000..e36aacb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813098_4_7167577.txt @@ -0,0 +1 @@ +4 0.002253 0.061667 0.061749 0.007863 0.278724 0.002616 0.390710 0.074792 0.432706 0.144344 0.443200 0.204715 0.394208 0.191590 0.381965 0.240147 0.373210 0.312323 0.339969 0.414684 0.285720 0.485548 0.413457 0.692901 0.450206 0.843819 0.413457 0.915995 0.394208 0.997361 0.002253 0.996049 diff --git a/datasets/pinganmajia/train/labels/订单1813099_4_7167634.txt b/datasets/pinganmajia/train/labels/订单1813099_4_7167634.txt new file mode 100644 index 0000000..e8a44ca --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813099_4_7167634.txt @@ -0,0 +1 @@ +4 0.996584 0.534160 0.968040 0.485607 0.974931 0.443609 0.999539 0.434421 1.000000 0.382677 1.000000 0.324004 0.871584 0.279569 0.870599 0.254633 0.862728 0.234951 0.874539 0.118150 0.841075 0.052535 0.783988 0.018411 0.730837 0.038100 0.677685 0.094527 0.661939 0.171956 0.652097 0.250699 0.658003 0.353058 0.591075 0.427860 0.581229 0.460671 0.505445 0.577465 0.469025 0.624710 0.455249 0.675890 0.471981 0.724449 0.489698 0.773008 0.425720 0.954110 0.418829 0.997415 0.999539 0.998729 diff --git a/datasets/pinganmajia/train/labels/订单1813100_4_7168017.txt b/datasets/pinganmajia/train/labels/订单1813100_4_7168017.txt new file mode 100644 index 0000000..cddd5ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813100_4_7168017.txt @@ -0,0 +1 @@ +4 0.997578 0.674583 0.843047 0.623403 0.809583 0.593229 0.759384 0.540729 0.703281 0.502674 0.629462 0.489549 0.629462 0.450174 0.637335 0.384560 0.631432 0.291389 0.585174 0.215266 0.519227 0.199525 0.476910 0.224456 0.434583 0.273009 0.420807 0.343877 0.427691 0.401620 0.430642 0.459363 0.448359 0.515799 0.428681 0.556481 0.393247 0.681146 0.408012 0.749387 0.409974 0.799259 0.420807 0.996111 0.822378 0.997419 0.827300 0.937060 0.877500 0.967234 0.892257 0.996111 0.998238 1.000000 0.999540 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813101_4_7167690.txt b/datasets/pinganmajia/train/labels/订单1813101_4_7167690.txt new file mode 100644 index 0000000..4e41815 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813101_4_7167690.txt @@ -0,0 +1 @@ +4 0.509578 0.219192 0.509578 0.181133 0.516578 0.115517 0.464083 0.102396 0.411594 0.112896 0.387094 0.144392 0.387094 0.179825 0.385344 0.196883 0.395844 0.231004 0.376594 0.254625 0.336350 0.286121 0.317106 0.362237 0.306606 0.439667 0.350350 0.496096 0.359100 0.530217 0.346850 0.674575 0.366100 0.710008 0.360850 0.752000 0.366100 0.784808 0.327606 0.807121 0.303106 0.822867 0.346850 0.834679 0.390594 0.821554 0.397594 0.837304 0.385344 0.887171 0.387094 0.927854 0.432589 0.934417 0.446589 0.904233 0.441339 0.843867 0.476333 0.821554 0.488583 0.762500 0.506083 0.691633 0.530578 0.639142 0.560322 0.568275 0.623317 0.451475 0.618067 0.368800 0.567322 0.269062 0.514828 0.254625 diff --git a/datasets/pinganmajia/train/labels/订单1813102_4_7167678.txt b/datasets/pinganmajia/train/labels/订单1813102_4_7167678.txt new file mode 100644 index 0000000..f8c32da --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813102_4_7167678.txt @@ -0,0 +1 @@ +4 0.003377 0.542029 0.050681 0.506588 0.078704 0.469843 0.069948 0.426539 0.085720 0.416039 0.113757 0.350422 0.169817 0.313676 0.246911 0.312363 0.316990 0.342549 0.341518 0.392422 0.338010 0.454098 0.322251 0.523657 0.411597 0.616833 0.390576 0.668010 0.436139 0.729686 0.436139 0.780873 0.395838 0.783500 0.378312 0.877980 0.367801 0.918667 0.360798 0.952784 0.401086 0.992157 0.005118 0.996098 diff --git a/datasets/pinganmajia/train/labels/订单1813104_4_7167811.txt b/datasets/pinganmajia/train/labels/订单1813104_4_7167811.txt new file mode 100644 index 0000000..573352c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813104_4_7167811.txt @@ -0,0 +1 @@ +4 0.999500 0.351721 0.884013 0.328096 0.798269 0.346471 0.693282 0.409462 0.707282 0.435712 0.719526 0.475077 0.702038 0.543327 0.716026 0.584000 0.726526 0.610250 0.759769 0.648308 0.682782 0.656183 0.611038 0.767731 0.583051 0.824163 0.565551 0.868779 0.509551 0.998702 1.000000 0.996106 1.000000 0.413654 diff --git a/datasets/pinganmajia/train/labels/订单1813105_4_7167746.txt b/datasets/pinganmajia/train/labels/订单1813105_4_7167746.txt new file mode 100644 index 0000000..d74b3c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813105_4_7167746.txt @@ -0,0 +1 @@ +4 1.000000 0.510772 0.892901 0.488179 0.894650 0.459306 0.933138 0.451427 0.929640 0.425185 0.943642 0.355633 0.936646 0.328071 0.885895 0.216520 0.803663 0.165340 0.635679 0.133843 0.569187 0.149591 0.511440 0.233580 0.486944 0.345131 0.520195 0.396312 0.535936 0.447492 0.553436 0.515733 0.609434 0.556420 0.549938 0.582662 0.497449 0.631219 0.471204 0.698148 0.437953 0.829383 0.397706 0.897623 0.345216 0.997361 0.999630 0.998673 1.000000 0.964660 diff --git a/datasets/pinganmajia/train/labels/订单1813106_4_7167757.txt b/datasets/pinganmajia/train/labels/订单1813106_4_7167757.txt new file mode 100644 index 0000000..b3d1ac1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813106_4_7167757.txt @@ -0,0 +1 @@ +4 0.992614 0.062966 0.938366 0.018346 0.864886 0.017034 0.796634 0.018346 0.724902 0.032782 0.646160 0.052463 0.591912 0.103652 0.574412 0.187635 0.590163 0.237500 0.605915 0.326740 0.602418 0.394988 0.630408 0.455355 0.597157 0.496042 0.500931 0.602341 0.483431 0.636458 0.371438 0.745380 0.383693 0.809681 0.390686 0.849056 0.437941 0.889743 0.418693 0.999975 0.999608 0.996042 1.000000 0.972010 1.000000 0.444877 0.966373 0.418603 0.976863 0.404167 1.000000 0.400919 1.000000 0.266311 diff --git a/datasets/pinganmajia/train/labels/订单1813108_4_7167821.txt b/datasets/pinganmajia/train/labels/订单1813108_4_7167821.txt new file mode 100644 index 0000000..d44301c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813108_4_7167821.txt @@ -0,0 +1 @@ +4 0.964093 0.001340 0.897163 0.059085 0.849920 0.043333 0.835159 0.006585 0.645196 0.005278 0.605827 0.069583 0.595987 0.119453 0.601887 0.181127 0.626495 0.230997 0.658977 0.259869 0.759369 0.324175 0.782010 0.326797 0.774136 0.473783 0.788897 0.552516 0.806612 0.586642 0.849920 0.727059 0.861734 0.755931 0.896183 0.982966 0.998542 0.998717 1.000000 0.507320 1.000000 0.002598 diff --git a/datasets/pinganmajia/train/labels/订单1813112_4_7167964.txt b/datasets/pinganmajia/train/labels/订单1813112_4_7167964.txt new file mode 100644 index 0000000..5b083ca --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813112_4_7167964.txt @@ -0,0 +1 @@ +4 0.002239 0.452733 0.117729 0.452733 0.138725 0.438297 0.101977 0.417292 0.082729 0.345123 0.115980 0.292623 0.133480 0.230944 0.194722 0.181078 0.278709 0.167953 0.395948 0.198137 0.418693 0.246691 0.422190 0.335931 0.416944 0.380551 0.387190 0.444853 0.353938 0.485539 0.387190 0.559032 0.446683 0.603652 0.495670 0.653517 0.525425 0.728321 0.630408 0.817561 0.667157 0.913358 0.642663 0.955355 0.590163 0.957978 0.639167 0.999975 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813113_4_7167781.txt b/datasets/pinganmajia/train/labels/订单1813113_4_7167781.txt new file mode 100644 index 0000000..7b14e95 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813113_4_7167781.txt @@ -0,0 +1 @@ +4 0.206885 0.001359 0.301375 0.086656 0.331115 0.132594 0.308375 0.189023 0.303125 0.250703 0.303125 0.288758 0.255875 0.366187 0.327625 0.359625 0.320625 0.501359 0.304875 0.555164 0.355615 0.603719 0.343365 0.640469 0.362615 0.728391 0.404615 0.834688 0.408115 0.916055 0.464073 1.000000 0.003906 1.000000 0.000406 0.006609 diff --git a/datasets/pinganmajia/train/labels/订单1813114_4_7167820.txt b/datasets/pinganmajia/train/labels/订单1813114_4_7167820.txt new file mode 100644 index 0000000..900df92 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813114_4_7167820.txt @@ -0,0 +1 @@ +4 0.998554 0.660148 0.957214 0.615523 0.924735 0.602401 0.925720 0.564343 0.937532 0.538100 0.949343 0.493482 0.900127 0.426547 0.880445 0.405551 0.820403 0.401617 0.817452 0.384555 0.807611 0.379308 0.808591 0.271695 0.773162 0.232323 0.721981 0.203453 0.693438 0.206073 0.666859 0.227076 0.640286 0.255946 0.613713 0.284816 0.613713 0.335996 0.612728 0.379308 0.612728 0.463298 0.633395 0.526285 0.618633 0.544661 0.599931 0.563030 0.597961 0.582719 0.536939 0.652274 0.515286 0.695579 0.498554 0.745445 0.456229 0.788757 0.439497 0.855685 0.441467 0.905551 0.472961 0.958044 0.537924 0.968545 0.600916 0.927860 0.498554 0.976419 0.494619 0.997415 0.996584 0.997415 diff --git a/datasets/pinganmajia/train/labels/订单1813115_4_7167897.txt b/datasets/pinganmajia/train/labels/订单1813115_4_7167897.txt new file mode 100644 index 0000000..0838fcc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813115_4_7167897.txt @@ -0,0 +1 @@ +4 1.000000 0.021125 0.899756 0.002644 0.805269 0.005269 0.698538 0.035452 0.595295 0.085317 0.583051 0.154875 0.576051 0.206048 0.609295 0.241481 0.633795 0.325471 0.660038 0.383221 0.635538 0.393712 0.649538 0.447519 0.591795 0.521010 0.600551 0.572192 0.530551 0.665365 0.513051 0.728365 0.507808 0.804481 0.602295 0.853029 0.614538 0.998702 1.000000 0.996087 1.000000 0.262683 0.992500 0.240173 1.000000 0.123394 diff --git a/datasets/pinganmajia/train/labels/订单1813116_4_7167774.txt b/datasets/pinganmajia/train/labels/订单1813116_4_7167774.txt new file mode 100644 index 0000000..1f1dcf2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813116_4_7167774.txt @@ -0,0 +1 @@ +4 0.887535 0.250694 0.812292 0.255937 0.731806 0.284809 0.670567 0.367491 0.649572 0.475104 0.677558 0.587960 0.612824 0.598464 0.511331 0.695573 0.483333 0.778255 0.467593 0.847804 0.458843 0.876675 0.436088 0.998724 0.997778 0.998724 1.000000 0.538620 1.000000 0.275347 diff --git a/datasets/pinganmajia/train/labels/订单1813117_4_7167841.txt b/datasets/pinganmajia/train/labels/订单1813117_4_7167841.txt new file mode 100644 index 0000000..307cdba --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813117_4_7167841.txt @@ -0,0 +1 @@ +4 0.002153 0.263819 0.044144 0.263819 0.014398 0.219193 0.003900 0.178516 0.016146 0.129957 0.059896 0.127335 0.040648 0.032847 0.052894 0.005286 0.479838 0.006597 0.516586 0.053845 0.504340 0.144392 0.464086 0.219193 0.460590 0.262500 0.399352 0.350425 0.369606 0.395052 0.437847 0.438359 0.430845 0.473793 0.409850 0.517092 0.471088 0.611589 0.486840 0.698194 0.486840 0.767752 0.469340 0.879297 0.481586 0.952795 0.483333 0.997413 0.012199 1.000000 0.005648 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813118_4_7167793.txt b/datasets/pinganmajia/train/labels/订单1813118_4_7167793.txt new file mode 100644 index 0000000..7795168 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813118_4_7167793.txt @@ -0,0 +1 @@ +4 0.000490 0.401544 0.054739 0.352990 0.063480 0.297868 0.038987 0.278186 0.023235 0.230944 0.033742 0.175821 0.061732 0.174510 0.129967 0.098395 0.213954 0.041973 0.352190 0.034093 0.416944 0.068211 0.478186 0.141703 0.499183 0.209951 0.465931 0.301814 0.450180 0.345123 0.359199 0.442230 0.334690 0.473725 0.360948 0.606275 0.355703 0.707316 0.357451 0.807059 0.359199 0.892365 0.383693 0.999975 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813122_4_7167849.txt b/datasets/pinganmajia/train/labels/订单1813122_4_7167849.txt new file mode 100644 index 0000000..318fcbf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813122_4_7167849.txt @@ -0,0 +1 @@ +4 0.011354 0.354375 0.101910 0.359630 0.121589 0.341250 0.110764 0.301887 0.091076 0.241516 0.096988 0.185093 0.099939 0.145718 0.081233 0.061725 0.092066 0.006609 0.429661 0.000046 0.446398 0.069606 0.459193 0.192963 0.455252 0.232326 0.437535 0.385880 0.535964 0.480359 0.602891 0.519734 0.664896 0.578785 0.752500 0.671968 0.841076 0.741516 0.995608 0.770394 1.000000 0.975405 1.000000 1.000000 0.964132 1.000000 0.004462 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1813125_4_7168024.txt b/datasets/pinganmajia/train/labels/订单1813125_4_7168024.txt new file mode 100644 index 0000000..03f9ba2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813125_4_7168024.txt @@ -0,0 +1 @@ +4 0.003900 0.278247 0.063391 0.263819 0.094884 0.253316 0.086134 0.206076 0.110637 0.179826 0.122882 0.194262 0.142130 0.141771 0.175370 0.105026 0.203368 0.065651 0.289109 0.017092 0.367847 0.009219 0.437847 0.027595 0.500833 0.061719 0.546331 0.099774 0.576076 0.150955 0.569074 0.174575 0.558576 0.228385 0.527083 0.326806 0.495590 0.381927 0.595324 0.459358 0.583079 0.532847 0.686308 0.675885 0.635567 0.960668 0.518437 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813127_4_7167876.txt b/datasets/pinganmajia/train/labels/订单1813127_4_7167876.txt new file mode 100644 index 0000000..e309d17 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813127_4_7167876.txt @@ -0,0 +1 @@ +4 0.004449 0.128636 0.031023 0.069583 0.047757 0.021021 0.056612 0.001340 0.055631 0.000025 0.318425 0.000025 0.381415 0.126013 0.373542 0.227059 0.354841 0.314984 0.359761 0.334673 0.339093 0.396348 0.327286 0.451471 0.312518 0.471152 0.306612 0.527582 0.419804 0.671944 0.454252 0.788742 0.465080 0.893725 0.456219 0.994779 0.002482 0.996087 diff --git a/datasets/pinganmajia/train/labels/订单1813128_4_7167991.txt b/datasets/pinganmajia/train/labels/订单1813128_4_7167991.txt new file mode 100644 index 0000000..b55a3f2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813128_4_7167991.txt @@ -0,0 +1 @@ +4 0.721330 0.005296 0.709079 0.056480 0.691579 0.108980 0.703830 0.144408 0.712588 0.194276 0.735322 0.253333 0.751082 0.292708 0.786067 0.332072 0.803567 0.355691 0.840322 0.370132 0.843816 0.387193 0.758070 0.440998 0.702076 0.480373 0.635585 0.566985 0.586594 0.623410 0.548099 0.740208 0.563845 0.804518 0.513114 1.000000 0.532456 1.000000 0.997792 0.998739 0.996053 0.002675 diff --git a/datasets/pinganmajia/train/labels/订单1813129_4_7167999.txt b/datasets/pinganmajia/train/labels/订单1813129_4_7167999.txt new file mode 100644 index 0000000..51996b6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813129_4_7167999.txt @@ -0,0 +1 @@ +4 0.647930 0.448809 0.637435 0.464561 0.581445 0.469805 0.570937 0.486865 0.541198 0.568232 0.528945 0.639102 0.555195 0.709961 0.581445 0.734902 0.576185 0.708652 0.593685 0.712588 0.584935 0.778203 0.581445 0.927813 0.591940 0.968496 0.625182 0.994746 0.642682 0.980303 0.646185 0.925186 0.674180 0.937002 0.726667 0.965869 0.742422 0.950117 0.691680 0.904189 0.696927 0.821514 0.737174 0.716523 0.766914 0.682402 0.782669 0.583984 0.780911 0.511807 0.756419 0.477686 0.709180 0.456680 0.719674 0.437002 0.721419 0.416006 0.691680 0.372695 0.651432 0.385820 0.644427 0.405498 0.632188 0.422559 diff --git a/datasets/pinganmajia/train/labels/订单1813130_4_7167869.txt b/datasets/pinganmajia/train/labels/订单1813130_4_7167869.txt new file mode 100644 index 0000000..2a913c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813130_4_7167869.txt @@ -0,0 +1 @@ +4 1.000000 0.469931 0.964640 0.438310 0.952387 0.417307 0.983889 0.401559 0.987387 0.351690 0.973385 0.324136 0.955885 0.330694 0.957634 0.234892 0.910391 0.187654 0.843899 0.166651 0.742418 0.175841 0.677675 0.204715 0.644424 0.246705 0.633930 0.299198 0.621677 0.363503 0.630432 0.426497 0.677675 0.513110 0.572685 0.581350 0.528940 0.694213 0.408210 0.999985 1.000000 0.999985 diff --git a/datasets/pinganmajia/train/labels/订单1813131_4_7167968.txt b/datasets/pinganmajia/train/labels/订单1813131_4_7167968.txt new file mode 100644 index 0000000..469a732 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813131_4_7167968.txt @@ -0,0 +1 @@ +4 0.001508 0.412117 0.068437 0.400306 0.100917 0.380622 0.093046 0.339939 0.081233 0.324189 0.081233 0.288756 0.072375 0.231017 0.065483 0.147028 0.091075 0.005294 0.267258 0.009228 0.335171 0.057789 0.346983 0.118156 0.351904 0.178522 0.338125 0.244139 0.331233 0.263822 0.312533 0.368811 0.276117 0.435739 0.294817 0.482983 0.351904 0.509228 0.369621 0.577472 0.411942 0.631278 0.449342 0.822878 0.468046 0.870122 0.465092 0.956739 0.469029 0.994794 0.001508 0.996106 diff --git a/datasets/pinganmajia/train/labels/订单1813133_4_7168075.txt b/datasets/pinganmajia/train/labels/订单1813133_4_7168075.txt new file mode 100644 index 0000000..64f90d3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813133_4_7168075.txt @@ -0,0 +1 @@ +4 0.471176 0.007843 0.481683 0.066900 0.458938 0.098395 0.444935 0.131201 0.416944 0.191569 0.402941 0.228321 0.399444 0.275564 0.380196 0.300502 0.341699 0.359559 0.290948 0.387108 0.434428 0.498664 0.432680 0.541973 0.432680 0.562966 0.478186 0.636458 0.471176 0.700760 0.528922 0.813627 0.563922 0.955355 0.605915 0.997353 0.005735 0.997353 0.002239 0.326740 0.000490 0.009154 diff --git a/datasets/pinganmajia/train/labels/订单1813134_4_7168166.txt b/datasets/pinganmajia/train/labels/订单1813134_4_7168166.txt new file mode 100644 index 0000000..ce0af04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813134_4_7168166.txt @@ -0,0 +1 @@ +4 0.994271 0.473793 0.964525 0.450165 0.924282 0.380616 0.929537 0.338620 0.947025 0.296623 0.945278 0.181137 0.887535 0.097153 0.803553 0.073524 0.688067 0.069592 0.593576 0.106337 0.539329 0.152266 0.390602 0.215260 0.401100 0.266441 0.493831 0.287439 0.507836 0.297934 0.506088 0.359618 0.506088 0.452795 0.423843 0.492161 0.439595 0.551215 0.383600 0.887179 0.392350 0.996102 0.995706 1.000000 1.000000 1.000000 1.000000 0.904332 diff --git a/datasets/pinganmajia/train/labels/订单1813135_4_7168032.txt b/datasets/pinganmajia/train/labels/订单1813135_4_7168032.txt new file mode 100644 index 0000000..7e1308d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813135_4_7168032.txt @@ -0,0 +1 @@ +4 0.235276 0.522280 0.205568 0.572146 0.181120 0.601012 0.099010 0.696817 0.000000 0.767354 0.000000 0.844610 0.004675 0.997341 0.624838 0.999963 0.600373 0.883171 0.539237 0.750622 0.455390 0.614146 0.483328 0.535402 0.493815 0.459280 0.499058 0.421232 0.532256 0.371354 0.467614 0.299183 0.397744 0.254561 0.334838 0.267683 0.263214 0.297866 0.219545 0.363488 0.209058 0.410732 0.214302 0.446159 diff --git a/datasets/pinganmajia/train/labels/订单1813138_4_7168011.txt b/datasets/pinganmajia/train/labels/订单1813138_4_7168011.txt new file mode 100644 index 0000000..64b17ee --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813138_4_7168011.txt @@ -0,0 +1 @@ +4 0.997548 0.553814 0.900106 0.477699 0.839082 0.426519 0.831207 0.405519 0.847942 0.374026 0.854832 0.309724 0.848923 0.206045 0.807587 0.150929 0.769202 0.144365 0.722942 0.161429 0.679635 0.185051 0.659947 0.249353 0.655029 0.328096 0.655029 0.442269 0.661918 0.482949 0.591053 0.703423 0.587115 0.821532 0.573337 0.897647 0.561524 0.996071 0.998534 0.998699 diff --git a/datasets/pinganmajia/train/labels/订单1813140_4_7168239.txt b/datasets/pinganmajia/train/labels/订单1813140_4_7168239.txt new file mode 100644 index 0000000..b3bb651 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813140_4_7168239.txt @@ -0,0 +1 @@ +4 0.004463 0.346500 0.070408 0.383244 0.079267 0.366183 0.062533 0.296633 0.076313 0.192956 0.074342 0.156211 0.084187 0.060411 0.111746 0.003978 0.289896 0.003978 0.342058 0.084033 0.359775 0.149650 0.348950 0.246761 0.284975 0.400306 0.330250 0.460672 0.374542 0.521039 0.428675 0.614217 0.446392 0.669333 0.461154 0.774322 0.505446 0.956739 0.498562 1.000000 0.494475 1.000000 0.005446 0.994794 diff --git a/datasets/pinganmajia/train/labels/订单1813141_4_7168180.txt b/datasets/pinganmajia/train/labels/订单1813141_4_7168180.txt new file mode 100644 index 0000000..856415d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813141_4_7168180.txt @@ -0,0 +1 @@ +4 0.682930 0.329385 0.621680 0.346445 0.600690 0.400254 0.558698 0.497363 0.562187 0.553799 0.574440 0.580039 0.584935 0.608916 0.614687 0.601045 0.604193 0.702090 0.614687 0.769023 0.605938 0.834639 0.572695 0.862197 0.602435 0.879258 0.623437 0.860879 0.651432 0.839883 0.661927 0.795264 0.681172 0.664033 0.700430 0.654844 0.696927 0.734902 0.688177 0.811016 0.688177 0.845137 0.719674 0.905498 0.751172 0.885820 0.740664 0.843818 0.754674 0.790020 0.763411 0.713906 0.796667 0.606289 0.807161 0.583984 0.814167 0.637783 0.847409 0.602354 0.878906 0.498682 0.850911 0.350381 0.770417 0.313643 0.784414 0.284766 0.744167 0.233584 0.710924 0.237520 0.684674 0.257207 0.688177 0.305762 diff --git a/datasets/pinganmajia/train/labels/订单1813142_4_7168140.txt b/datasets/pinganmajia/train/labels/订单1813142_4_7168140.txt new file mode 100644 index 0000000..7fd86f2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813142_4_7168140.txt @@ -0,0 +1 @@ +4 0.364167 0.230964 0.354980 0.255898 0.315612 0.275586 0.284115 0.312331 0.263118 0.370072 0.263118 0.412070 0.285430 0.452747 0.330046 0.476374 0.315612 0.497370 0.322174 0.545924 0.323483 0.576107 0.337923 0.703405 0.344479 0.795267 0.345794 0.837266 0.328737 0.883197 0.353665 0.893691 0.378600 0.864824 0.389102 0.816270 0.394349 0.696842 0.421908 0.639102 0.427161 0.678470 0.416660 0.805768 0.428470 0.850391 0.490150 0.891068 0.500651 0.868763 0.479655 0.830703 0.457344 0.799206 0.474401 0.704720 0.492773 0.541986 0.500651 0.569551 0.507214 0.520990 0.532148 0.400254 0.517708 0.324141 0.496712 0.291335 0.449466 0.253275 0.449466 0.225716 0.458652 0.202096 0.450781 0.150911 0.429785 0.137786 0.410098 0.144349 0.387786 0.156159 0.381230 0.178470 0.372044 0.195534 0.375977 0.223092 diff --git a/datasets/pinganmajia/train/labels/订单1813143_4_7168109.txt b/datasets/pinganmajia/train/labels/订单1813143_4_7168109.txt new file mode 100644 index 0000000..9aae970 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813143_4_7168109.txt @@ -0,0 +1 @@ +4 -0.000000 0.150155 0.058585 0.005278 0.366654 0.006585 0.398150 0.103701 0.400116 0.187688 0.377482 0.270368 0.338113 0.384542 0.318425 0.440972 0.315472 0.490842 0.415864 0.662753 0.440472 0.771683 0.407990 0.996087 0.001495 0.996087 0.000000 0.676928 diff --git a/datasets/pinganmajia/train/labels/订单1813144_4_7168188.txt b/datasets/pinganmajia/train/labels/订单1813144_4_7168188.txt new file mode 100644 index 0000000..92537c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813144_4_7168188.txt @@ -0,0 +1 @@ +4 0.276967 0.328069 0.276967 0.288700 0.238475 0.267700 0.199975 0.278200 0.192983 0.313631 0.182483 0.339881 0.175483 0.374000 0.136983 0.417306 0.128233 0.446175 0.166733 0.454050 0.184233 0.451425 0.192983 0.501294 0.196475 0.552475 0.210475 0.628594 0.248975 0.748012 0.213975 0.786075 0.241975 0.791325 0.290967 0.762450 0.294467 0.796569 0.329458 0.803131 0.331208 0.766387 0.341708 0.695519 0.343458 0.644344 0.338208 0.553787 0.390708 0.469800 0.359208 0.375312 0.332958 0.359562 0.292717 0.333319 diff --git a/datasets/pinganmajia/train/labels/订单1813145_4_7168157.txt b/datasets/pinganmajia/train/labels/订单1813145_4_7168157.txt new file mode 100644 index 0000000..161a943 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813145_4_7168157.txt @@ -0,0 +1 @@ +4 0.000000 0.505613 0.089722 0.497353 0.142222 0.467169 0.122974 0.393676 0.112467 0.371360 0.093235 0.287377 0.114232 0.233566 0.149216 0.144326 0.220964 0.116777 0.359199 0.103652 0.425686 0.135147 0.488676 0.196826 0.504428 0.244069 0.497435 0.324118 0.469428 0.429105 0.418693 0.503909 0.565670 0.573468 0.647908 0.635147 0.786144 0.838554 0.859624 0.891054 0.884134 0.936985 0.910376 0.997353 0.005735 0.996042 0.000000 0.817672 diff --git a/datasets/pinganmajia/train/labels/订单1813147_4_7168133.txt b/datasets/pinganmajia/train/labels/订单1813147_4_7168133.txt new file mode 100644 index 0000000..705c054 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813147_4_7168133.txt @@ -0,0 +1 @@ +4 0.997571 0.548600 0.908988 0.468550 0.874542 0.410806 0.879463 0.362250 0.885367 0.294006 0.875525 0.291383 0.867650 0.190333 0.839108 0.147028 0.784975 0.129967 0.746587 0.143089 0.673754 0.210017 0.663913 0.286133 0.665879 0.341250 0.671783 0.405556 0.692454 0.465922 0.636350 0.484294 0.608792 0.531539 0.595012 0.610278 0.582217 0.971172 0.587138 0.996106 0.613712 0.997417 0.999542 0.998733 diff --git a/datasets/pinganmajia/train/labels/订单1813152_4_7168211.txt b/datasets/pinganmajia/train/labels/订单1813152_4_7168211.txt new file mode 100644 index 0000000..3a0634b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813152_4_7168211.txt @@ -0,0 +1 @@ +4 0.623534 0.465891 0.489673 0.507885 0.467034 0.584000 0.448337 0.678487 0.425697 1.000000 0.923731 1.000000 0.939476 0.906833 0.998534 0.984263 1.000000 0.804122 1.000000 0.619603 0.976880 0.581378 0.937510 0.544628 0.774120 0.467205 0.795774 0.381897 0.802663 0.363526 0.820380 0.275603 0.826288 0.162737 0.799712 0.085314 0.745577 0.035442 0.687510 0.045942 0.653058 0.065628 0.607784 0.124679 0.578255 0.194237 0.574317 0.276910 0.572351 0.332032 0.587115 0.367462 0.610736 0.452769 diff --git a/datasets/pinganmajia/train/labels/订单1813153_4_7168145.txt b/datasets/pinganmajia/train/labels/订单1813153_4_7168145.txt new file mode 100644 index 0000000..db9bfd9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813153_4_7168145.txt @@ -0,0 +1 @@ +4 0.014528 0.444882 0.012769 0.423888 0.004029 0.339892 0.028517 0.320207 0.063346 0.213907 0.182507 0.181102 0.287493 0.213907 0.332979 0.259843 0.346811 0.321526 0.343478 0.413386 0.317231 0.510502 0.378307 0.585305 0.425551 0.644360 0.444974 0.704724 0.432717 0.778219 0.492218 0.867451 0.507966 0.917323 0.525289 0.997372 0.004029 1.000000 0.004029 1.000000 0.004029 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813154_4_7168289.txt b/datasets/pinganmajia/train/labels/订单1813154_4_7168289.txt new file mode 100644 index 0000000..4c928ab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813154_4_7168289.txt @@ -0,0 +1 @@ +4 0.007396 0.105026 0.126377 0.080087 0.198125 0.080087 0.306609 0.107648 0.352106 0.154896 0.397593 0.215260 0.395845 0.283498 0.395845 0.389800 0.497338 0.452795 0.514838 0.551215 0.537581 0.601085 0.525336 0.754627 0.535833 0.837309 0.495590 0.944922 0.460590 0.997413 0.000000 0.997413 0.000000 0.859514 diff --git a/datasets/pinganmajia/train/labels/订单1813155_4_7168302.txt b/datasets/pinganmajia/train/labels/订单1813155_4_7168302.txt new file mode 100644 index 0000000..212286e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813155_4_7168302.txt @@ -0,0 +1 @@ +4 0.996889 0.535461 0.860405 0.471157 0.839412 0.439667 0.823660 0.425225 0.827163 0.355676 0.709922 0.317618 0.596196 0.322863 0.547203 0.372735 0.527948 0.427853 0.545451 0.477725 0.578693 0.555147 0.587438 0.577461 0.520954 0.586647 0.522706 0.661451 0.527948 0.766431 0.464954 0.994784 0.995464 1.000000 0.998641 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813156_4_7168179.txt b/datasets/pinganmajia/train/labels/订单1813156_4_7168179.txt new file mode 100644 index 0000000..4dd5250 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813156_4_7168179.txt @@ -0,0 +1 @@ +4 0.998558 0.507917 0.822375 0.383244 0.805642 0.353061 0.788913 0.334689 0.782021 0.183772 0.720996 0.082722 0.643242 0.084033 0.595012 0.126028 0.541863 0.202144 0.531038 0.442300 0.598950 0.534167 0.559579 0.606344 0.496587 0.765133 0.482808 0.803194 0.457217 0.883244 0.460171 0.947550 0.475904 1.000000 0.999542 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813157_4_7168363.txt b/datasets/pinganmajia/train/labels/订单1813157_4_7168363.txt new file mode 100644 index 0000000..37d4c45 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813157_4_7168363.txt @@ -0,0 +1 @@ +4 0.007484 0.007843 0.016242 0.001287 0.296209 0.002598 0.371438 0.055086 0.404690 0.124645 0.402941 0.170576 0.397696 0.255882 0.366193 0.355613 0.287451 0.409424 0.332941 0.450110 0.385441 0.476348 0.481683 0.675821 0.640915 0.994718 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813161_4_7168405.txt b/datasets/pinganmajia/train/labels/订单1813161_4_7168405.txt new file mode 100644 index 0000000..a7e44d3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813161_4_7168405.txt @@ -0,0 +1 @@ +4 0.318971 0.005239 0.357459 0.085285 0.387212 0.194213 0.383714 0.375316 0.366214 0.397623 0.457202 0.486867 0.448457 0.519676 0.451955 0.723086 0.439702 0.863503 0.464198 0.997361 0.000504 0.999985 0.007510 0.007863 diff --git a/datasets/pinganmajia/train/labels/订单1813162_4_7168328.txt b/datasets/pinganmajia/train/labels/订单1813162_4_7168328.txt new file mode 100644 index 0000000..0ebd748 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813162_4_7168328.txt @@ -0,0 +1 @@ +4 0.997744 0.212615 0.896256 0.127308 0.768526 0.099750 0.668782 0.112875 0.595295 0.196865 0.569051 0.282163 0.626795 0.433087 0.686282 0.475077 0.700282 0.507885 0.618038 0.557760 0.546308 0.662740 0.483308 0.892404 0.450064 1.000000 0.451654 1.000000 0.996000 0.994769 diff --git a/datasets/pinganmajia/train/labels/订单1813163_4_7168357.txt b/datasets/pinganmajia/train/labels/订单1813163_4_7168357.txt new file mode 100644 index 0000000..722665b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813163_4_7168357.txt @@ -0,0 +1 @@ +4 0.994876 0.153553 0.851064 0.131240 0.760826 0.164048 0.648027 0.212606 0.608554 0.293971 0.625465 0.338591 0.628285 0.460639 0.667769 0.523630 0.659308 0.570875 0.546508 0.602370 0.416798 0.644365 0.309638 0.765101 0.151725 0.958014 0.112252 0.998697 0.983595 0.996072 diff --git a/datasets/pinganmajia/train/labels/订单1813164_4_7170947.txt b/datasets/pinganmajia/train/labels/订单1813164_4_7170947.txt new file mode 100644 index 0000000..c8984de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813164_4_7170947.txt @@ -0,0 +1 @@ +4 0.007406 0.099781 0.061656 0.038102 0.142146 0.002672 0.331115 0.005297 0.460604 0.066977 0.513094 0.127344 0.532344 0.195586 0.506094 0.263828 0.478104 0.294008 0.472854 0.387188 0.560344 0.450180 0.476354 0.553852 0.570844 0.717891 0.640833 0.838625 0.630333 0.863562 0.637333 0.910805 0.607583 0.997422 0.005656 0.994797 diff --git a/datasets/pinganmajia/train/labels/订单1813165_4_7168539.txt b/datasets/pinganmajia/train/labels/订单1813165_4_7168539.txt new file mode 100644 index 0000000..469c167 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813165_4_7168539.txt @@ -0,0 +1 @@ +4 0.005615 0.511827 0.005615 0.476394 0.084359 0.437019 0.100103 0.401587 0.154346 0.337288 0.187603 0.292663 0.157846 0.282163 0.149103 0.240173 0.171846 0.202115 0.187603 0.147000 0.238346 0.089250 0.341577 0.053817 0.441321 0.087942 0.500808 0.154875 0.478064 0.276913 0.460564 0.326788 0.416821 0.398962 0.441321 0.439644 0.476308 0.460644 0.444821 0.502644 0.502551 0.615500 0.535808 0.786106 0.555051 0.963269 0.527064 1.000000 0.525013 1.000000 0.000372 0.996077 diff --git a/datasets/pinganmajia/train/labels/订单1813166_4_7168439.txt b/datasets/pinganmajia/train/labels/订单1813166_4_7168439.txt new file mode 100644 index 0000000..5f4611c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813166_4_7168439.txt @@ -0,0 +1 @@ +4 0.732261 0.485577 0.675293 0.507887 0.624221 0.552505 0.569213 0.611567 0.546620 0.665371 0.431698 0.872722 0.408125 0.996082 0.999429 0.998701 0.999429 0.568258 0.945409 0.519701 0.952284 0.464588 0.989606 0.406845 0.988627 0.366155 0.976836 0.363536 0.996481 0.259856 0.967014 0.183742 0.881559 0.131247 0.827539 0.136495 0.790216 0.179804 0.715563 0.288732 0.723426 0.343845 0.709668 0.393722 0.718511 0.452773 diff --git a/datasets/pinganmajia/train/labels/订单1813168_4_7168646.txt b/datasets/pinganmajia/train/labels/订单1813168_4_7168646.txt new file mode 100644 index 0000000..0b52813 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813168_4_7168646.txt @@ -0,0 +1 @@ +4 0.701319 0.013171 0.701319 0.080104 0.711155 0.103727 0.725920 0.213958 0.729861 0.265139 0.696398 0.347812 0.689505 0.377998 0.643247 0.392442 0.610764 0.431806 0.543837 0.593229 0.510373 0.740208 0.498559 0.797951 0.554661 0.900312 0.559583 1.000000 0.564991 1.000000 1.000000 0.996146 1.000000 0.406690 0.999540 0.329444 0.972969 0.307130 0.965095 0.242836 0.977891 0.206088 0.981832 0.177211 1.000000 0.110579 1.000000 0.029421 0.999540 0.006609 diff --git a/datasets/pinganmajia/train/labels/订单1813169_4_7168452.txt b/datasets/pinganmajia/train/labels/订单1813169_4_7168452.txt new file mode 100644 index 0000000..c947ead --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813169_4_7168452.txt @@ -0,0 +1 @@ +4 1.000000 0.434974 0.962778 0.408168 0.943530 0.354366 0.898032 0.297934 0.868287 0.249384 0.856042 0.246753 0.803553 0.143082 0.712558 0.122083 0.646065 0.137830 0.595324 0.177205 0.576076 0.240191 0.570822 0.299245 0.591829 0.397674 0.577824 0.434418 0.493831 0.477726 0.551574 0.531528 0.583079 0.568281 0.563831 0.632578 0.548079 0.769062 0.504340 0.914731 0.506088 0.996102 0.999525 0.996102 1.000000 0.958177 diff --git a/datasets/pinganmajia/train/labels/订单1813171_4_7168417.txt b/datasets/pinganmajia/train/labels/订单1813171_4_7168417.txt new file mode 100644 index 0000000..4f13b06 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813171_4_7168417.txt @@ -0,0 +1 @@ +4 1.000000 0.064236 0.819294 0.136519 0.724803 0.190321 0.696806 0.174575 0.665313 0.137830 0.637315 0.132578 0.555081 0.068281 0.457095 0.061719 0.364352 0.087960 0.311863 0.128646 0.315359 0.178516 0.359109 0.259878 0.395845 0.308437 0.427350 0.351745 0.495590 0.387179 0.535833 0.406858 0.521829 0.540720 0.551574 0.580087 0.563831 0.640460 0.572581 0.759878 0.653067 0.805807 0.630324 0.850425 0.581331 0.916050 0.527106 1.000000 0.529213 1.000000 0.994271 0.992161 1.000000 0.384010 diff --git a/datasets/pinganmajia/train/labels/订单1813172_4_7168443.txt b/datasets/pinganmajia/train/labels/订单1813172_4_7168443.txt new file mode 100644 index 0000000..26bac07 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813172_4_7168443.txt @@ -0,0 +1 @@ +4 0.000000 0.473480 0.040864 0.447533 0.144210 0.440972 0.193425 0.338611 0.186538 0.284804 0.181612 0.238873 0.193425 0.212623 0.202286 0.145694 0.251495 0.076144 0.297757 0.068268 0.349920 0.099763 0.387322 0.173252 0.399136 0.250686 0.396183 0.329420 0.387322 0.398979 0.451299 0.485588 0.442439 0.523652 0.481814 0.748056 0.486734 0.929158 0.487714 1.000000 0.484491 1.000000 0.003462 0.996087 0.000000 0.536487 diff --git a/datasets/pinganmajia/train/labels/订单1813174_4_7168483.txt b/datasets/pinganmajia/train/labels/订单1813174_4_7168483.txt new file mode 100644 index 0000000..3432f11 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813174_4_7168483.txt @@ -0,0 +1 @@ +4 1.000000 0.385773 0.941036 0.356950 0.953585 0.270327 0.960968 0.249336 0.958756 0.221776 0.963186 0.104978 0.966134 0.006547 0.684884 0.009172 0.685625 0.140414 0.684884 0.246710 0.716630 0.408126 0.655362 0.461928 0.604424 0.544608 0.592610 0.677157 0.568254 0.850381 0.574896 0.901569 0.568989 0.942244 0.567512 0.972429 0.576373 0.997364 1.000000 0.999989 diff --git a/datasets/pinganmajia/train/labels/订单1813175_4_7168991.txt b/datasets/pinganmajia/train/labels/订单1813175_4_7168991.txt new file mode 100644 index 0000000..6c9ec5d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813175_4_7168991.txt @@ -0,0 +1 @@ +4 0.559488 0.439614 0.499529 0.459296 0.476919 0.498668 0.475936 0.574784 0.450380 0.602343 0.400248 0.706018 0.353066 0.860874 0.325544 0.943550 0.338321 0.998668 1.000000 0.999977 1.000000 0.610131 0.909424 0.540664 0.848480 0.538037 0.795402 0.497356 0.730525 0.425177 0.728559 0.371371 0.734456 0.255887 0.703985 0.153524 0.645990 0.116777 0.597826 0.124653 0.547694 0.166646 0.522137 0.223076 0.530000 0.314941 0.533931 0.342500 0.546711 0.409431 diff --git a/datasets/pinganmajia/train/labels/订单1813176_4_7168518.txt b/datasets/pinganmajia/train/labels/订单1813176_4_7168518.txt new file mode 100644 index 0000000..f85a75f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813176_4_7168518.txt @@ -0,0 +1 @@ +4 0.004675 0.702073 0.202078 0.591829 0.200325 0.560329 0.209058 0.501280 0.210812 0.434354 0.261477 0.366110 0.369789 0.333305 0.472857 0.359549 0.497305 0.402854 0.502549 0.477659 0.506039 0.498659 0.511282 0.561646 0.499058 0.587890 0.609123 0.685012 0.616104 0.809683 0.623084 0.898915 0.631818 0.994720 0.001185 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1813178_4_7168753.txt b/datasets/pinganmajia/train/labels/订单1813178_4_7168753.txt new file mode 100644 index 0000000..2fe40c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813178_4_7168753.txt @@ -0,0 +1 @@ +4 0.994312 0.223153 0.927565 0.150972 0.820437 0.128667 0.722082 0.141785 0.653587 0.194278 0.604414 0.311076 0.609684 0.336014 0.599145 0.380632 0.667639 0.503993 0.585093 0.738903 0.507816 0.955437 0.511329 0.998743 0.996059 0.998743 diff --git a/datasets/pinganmajia/train/labels/订单1813179_4_7168525.txt b/datasets/pinganmajia/train/labels/订单1813179_4_7168525.txt new file mode 100644 index 0000000..64de06d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813179_4_7168525.txt @@ -0,0 +1 @@ +4 0.996801 0.300522 0.965729 0.318902 0.888793 0.284772 0.879914 0.241467 0.893229 0.221783 0.895447 0.119424 0.878437 0.060370 0.855502 0.060370 0.839228 0.003935 0.586955 0.009185 0.575858 0.083989 0.573640 0.136478 0.601011 0.253283 0.612849 0.297902 0.607672 0.320207 0.624681 0.362207 0.657237 0.433065 0.636520 0.459315 0.583995 0.509185 0.552923 0.582674 0.562543 0.607609 0.553664 0.717848 0.553664 0.755902 0.546268 0.786087 0.538131 0.850391 0.536648 0.900261 0.508536 0.996065 0.998284 0.997370 diff --git a/datasets/pinganmajia/train/labels/订单1813180_4_7168620.txt b/datasets/pinganmajia/train/labels/订单1813180_4_7168620.txt new file mode 100644 index 0000000..386bef7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813180_4_7168620.txt @@ -0,0 +1 @@ +4 0.544701 0.391064 0.553438 0.366133 0.562187 0.342510 0.588438 0.317578 0.595443 0.305762 0.598932 0.259834 0.616432 0.240146 0.651432 0.244082 0.663685 0.266396 0.665430 0.296582 0.691680 0.316260 0.709180 0.343818 0.714427 0.397627 0.714427 0.455371 0.698672 0.489492 0.693424 0.476367 0.684674 0.545918 0.654935 0.552480 0.639180 0.590537 0.642682 0.629912 0.618190 0.618105 0.619935 0.573486 0.618190 0.557734 0.598932 0.490801 0.581445 0.443564 0.546445 0.426504 diff --git a/datasets/pinganmajia/train/labels/订单1813181_4_7168609.txt b/datasets/pinganmajia/train/labels/订单1813181_4_7168609.txt new file mode 100644 index 0000000..42e498c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813181_4_7168609.txt @@ -0,0 +1 @@ +4 0.994363 0.669265 0.933121 0.652206 0.870131 0.624645 0.849134 0.597083 0.859624 0.576091 0.878873 0.532782 0.892876 0.518346 0.905131 0.455355 0.892876 0.443542 0.889379 0.329375 0.824641 0.271630 0.745899 0.253260 0.656650 0.261127 0.579673 0.295245 0.548170 0.347745 0.516667 0.438297 0.534167 0.477659 0.539428 0.532782 0.614657 0.611520 0.584918 0.636458 0.464183 0.660074 0.408186 0.687635 0.345196 0.814939 0.318954 0.889743 0.289199 0.997353 0.999608 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813184_4_7168666.txt b/datasets/pinganmajia/train/labels/订单1813184_4_7168666.txt new file mode 100644 index 0000000..b61394a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813184_4_7168666.txt @@ -0,0 +1 @@ +4 0.000525 0.463300 0.022179 0.455422 0.033004 0.364872 0.048754 0.345189 0.026117 0.329439 0.000000 0.261089 0.000000 0.196894 0.011350 0.196894 0.000000 0.145183 0.000000 0.126700 0.003479 0.002667 0.325329 0.006606 0.331233 0.073533 0.328279 0.168022 0.329267 0.194267 0.329267 0.257261 0.322375 0.374061 0.310563 0.426550 0.325329 0.463300 0.372571 0.521039 0.437533 0.608967 0.478871 0.679833 0.488713 0.779572 0.533987 0.860933 0.567454 0.926550 0.567454 0.989544 0.003479 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813186_4_7168571.txt b/datasets/pinganmajia/train/labels/订单1813186_4_7168571.txt new file mode 100644 index 0000000..4a1320d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813186_4_7168571.txt @@ -0,0 +1 @@ +4 0.005615 0.560385 0.089615 0.511827 0.152603 0.486894 0.157846 0.447519 0.122859 0.434394 0.101859 0.393712 0.096603 0.371404 0.112359 0.354346 0.091359 0.307106 0.093103 0.240173 0.135103 0.187683 0.243590 0.161433 0.352077 0.171933 0.387077 0.203423 0.460564 0.233615 0.464064 0.316288 0.462308 0.409462 0.434321 0.496077 0.418564 0.519702 0.507808 0.647000 0.537551 0.688990 0.577795 0.793981 0.588295 0.862221 0.640795 0.982952 0.646038 1.000000 0.642282 1.000000 0.000372 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813189_4_7168505.txt b/datasets/pinganmajia/train/labels/订单1813189_4_7168505.txt new file mode 100644 index 0000000..3888fc3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813189_4_7168505.txt @@ -0,0 +1 @@ +4 0.997859 0.295245 0.978611 0.280809 0.987369 0.187635 0.994363 0.099706 0.933121 0.003909 0.576160 0.003909 0.500931 0.080025 0.499183 0.171887 0.537680 0.245380 0.556912 0.304436 0.576160 0.352990 0.537680 0.404167 0.532418 0.460600 0.457190 0.478971 0.464183 0.532782 0.425686 0.578713 0.346944 0.628578 0.304951 0.703382 0.273448 0.787377 0.289199 0.835931 0.254199 0.884485 0.241961 0.931728 0.294444 0.980294 0.345196 0.992096 0.997859 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813191_4_7168612.txt b/datasets/pinganmajia/train/labels/订单1813191_4_7168612.txt new file mode 100644 index 0000000..9984bf1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813191_4_7168612.txt @@ -0,0 +1 @@ +4 0.003492 0.561746 0.057629 0.519749 0.119633 0.441012 0.149162 0.405575 0.133413 0.355708 0.122589 0.345212 0.132431 0.321587 0.121602 0.282216 0.113730 0.241534 0.096999 0.154921 0.101920 0.086680 0.131448 0.028935 0.153100 0.002692 0.294831 0.004001 0.354871 0.078803 0.384400 0.147044 0.393259 0.196918 0.384400 0.255972 0.383413 0.300589 0.374559 0.322897 0.375541 0.343896 0.368651 0.370146 0.353889 0.414762 0.438532 0.505317 0.458219 0.563056 0.485779 0.677229 0.506349 0.854398 0.532039 0.973816 0.514320 0.998750 0.002510 0.997440 diff --git a/datasets/pinganmajia/train/labels/订单1813192_4_7168502.txt b/datasets/pinganmajia/train/labels/订单1813192_4_7168502.txt new file mode 100644 index 0000000..a95a831 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813192_4_7168502.txt @@ -0,0 +1 @@ +4 0.007396 0.476415 0.007396 0.425234 0.030139 0.401615 0.002153 0.379297 0.000000 0.317283 0.000000 0.276832 0.007396 0.269062 0.038889 0.178516 0.107130 0.122083 0.201620 0.095833 0.324109 0.119462 0.387095 0.164080 0.423843 0.229696 0.423843 0.325495 0.374850 0.481667 0.448345 0.515781 0.462338 0.544653 0.528831 0.649644 0.542836 0.853056 0.581331 0.965911 0.612824 0.998724 0.023993 1.000000 0.007396 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813194_4_7168593.txt b/datasets/pinganmajia/train/labels/订单1813194_4_7168593.txt new file mode 100644 index 0000000..491667e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813194_4_7168593.txt @@ -0,0 +1 @@ +4 0.007484 0.333309 0.033742 0.295245 0.010980 0.284755 0.010980 0.259816 0.019739 0.224387 0.044232 0.204694 0.091471 0.129890 0.149216 0.072157 0.252451 0.059032 0.380196 0.086593 0.432680 0.140392 0.450180 0.190257 0.437941 0.244069 0.390686 0.324118 0.336454 0.406801 0.273448 0.446164 0.222712 0.469792 0.175474 0.468480 0.208709 0.494718 0.285703 0.599706 0.315458 0.667953 0.411683 0.997353 0.002239 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813195_4_7168618.txt b/datasets/pinganmajia/train/labels/订单1813195_4_7168618.txt new file mode 100644 index 0000000..f7a8ffd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813195_4_7168618.txt @@ -0,0 +1 @@ +4 0.007484 0.523591 0.103725 0.472414 0.101977 0.436985 0.077484 0.406801 0.065229 0.362181 0.087974 0.356924 0.084477 0.283444 0.126471 0.215196 0.199967 0.175821 0.283954 0.173199 0.366193 0.195515 0.429183 0.255882 0.450180 0.297868 0.441438 0.376618 0.432680 0.457978 0.436176 0.488162 0.467680 0.531471 0.553415 0.577402 0.614657 0.675821 0.621667 0.817561 0.630408 0.967169 0.632157 0.993407 0.000490 0.994718 diff --git a/datasets/pinganmajia/train/labels/订单1813196_4_7168680.txt b/datasets/pinganmajia/train/labels/订单1813196_4_7168680.txt new file mode 100644 index 0000000..52781f4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813196_4_7168680.txt @@ -0,0 +1 @@ +4 0.005451 0.515799 0.050729 0.480359 0.056632 0.437060 0.065486 0.353067 0.095998 0.236273 0.152101 0.118160 0.185564 0.106343 0.287925 0.160150 0.346988 0.250706 0.359783 0.337315 0.375530 0.416053 0.429661 0.496111 0.417847 0.573542 0.403090 0.643090 0.424740 0.696898 0.425729 0.820255 0.445408 0.908183 0.480842 0.998738 0.003481 0.997419 diff --git a/datasets/pinganmajia/train/labels/订单1813199_4_7168695.txt b/datasets/pinganmajia/train/labels/订单1813199_4_7168695.txt new file mode 100644 index 0000000..65b4ec1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813199_4_7168695.txt @@ -0,0 +1 @@ +4 0.623437 0.325449 0.612930 0.343818 0.537695 0.359570 0.514948 0.405498 0.493945 0.486865 0.474701 0.583984 0.478203 0.635166 0.492201 0.645664 0.495703 0.675840 0.521953 0.702090 0.514948 0.674531 0.534193 0.686338 0.528945 0.667969 0.535951 0.627285 0.555195 0.767705 0.560443 0.892383 0.535951 0.938311 0.541198 0.964561 0.572695 0.959307 0.591940 0.935684 0.616432 0.898945 0.621680 0.807080 0.639180 0.703398 0.654935 0.811016 0.642682 0.902881 0.667174 0.937002 0.707422 0.989492 0.733672 0.990801 0.735417 0.943564 0.709180 0.913379 0.726667 0.782139 0.747669 0.690283 0.775664 0.703398 0.791419 0.686338 0.803659 0.661406 0.833411 0.622041 0.831654 0.447500 0.803659 0.367441 0.723177 0.354326 0.721419 0.325449 0.724922 0.299199 0.738919 0.279521 0.712669 0.233584 0.675924 0.217842 0.633932 0.236211 0.605938 0.286084 0.619935 0.314951 diff --git a/datasets/pinganmajia/train/labels/订单1813200_4_7168731.txt b/datasets/pinganmajia/train/labels/订单1813200_4_7168731.txt new file mode 100644 index 0000000..95b7349 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813200_4_7168731.txt @@ -0,0 +1 @@ +4 0.322174 0.296582 0.311673 0.322826 0.251309 0.347760 0.238184 0.388444 0.215872 0.481621 0.206686 0.561673 0.247370 0.678470 0.272305 0.706029 0.274928 0.746712 0.290677 0.766400 0.303802 0.772962 0.319551 0.770332 0.323483 0.740150 0.326107 0.791335 0.336608 0.944876 0.340547 0.976374 0.333984 0.999993 0.370729 0.999993 0.383854 0.964564 0.406159 0.753275 0.433724 0.959310 0.453405 0.996055 0.505898 0.999993 0.484902 0.971120 0.486217 0.851699 0.503275 0.678470 0.495404 0.582669 0.562331 0.511803 0.553145 0.444876 0.495404 0.349076 0.421908 0.303145 0.432409 0.219154 0.364167 0.186348 0.331361 0.207344 0.320859 0.241465 0.319551 0.271647 diff --git a/datasets/pinganmajia/train/labels/订单1813203_4_7168684.txt b/datasets/pinganmajia/train/labels/订单1813203_4_7168684.txt new file mode 100644 index 0000000..ced2925 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813203_4_7168684.txt @@ -0,0 +1 @@ +4 0.182372 0.381921 0.112378 0.396358 0.079133 0.429167 0.019639 0.511846 0.042389 0.577462 0.093133 0.618142 0.129878 0.612896 0.124628 0.649638 0.149128 0.753313 0.150878 0.850425 0.154372 0.888483 0.150878 0.919979 0.171872 0.943604 0.191122 0.904233 0.205117 0.866175 0.205117 0.778250 0.217367 0.694258 0.224367 0.770375 0.238367 0.839929 0.261111 0.868800 0.317106 0.887171 0.317106 0.866175 0.278611 0.835992 0.273361 0.748062 0.315356 0.580083 0.355600 0.560400 0.385344 0.503971 0.348600 0.421292 0.278611 0.380608 0.275111 0.322867 0.241861 0.316304 0.198117 0.322867 0.187622 0.354363 diff --git a/datasets/pinganmajia/train/labels/订单1813204_4_7168706.txt b/datasets/pinganmajia/train/labels/订单1813204_4_7168706.txt new file mode 100644 index 0000000..4a56054 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813204_4_7168706.txt @@ -0,0 +1 @@ +4 0.211505 0.362166 0.170221 0.381852 0.142696 0.375288 0.124020 0.393658 0.070941 0.400223 0.064059 0.431721 0.092564 0.484215 0.002132 0.552454 0.000167 0.939594 0.099446 0.851669 0.136799 0.804424 0.165304 0.828043 0.171201 0.887101 0.179069 0.960589 0.183980 0.998645 0.567338 0.997336 0.570289 0.929097 0.540799 0.831983 0.513275 0.746682 0.478873 0.594450 0.464127 0.490772 0.465108 0.454031 0.440534 0.409411 0.440534 0.391034 0.354034 0.367415 0.359931 0.317546 0.366814 0.262428 0.363863 0.236178 0.360917 0.154817 0.333392 0.112821 0.294074 0.090510 0.238044 0.085262 0.181034 0.149568 0.178083 0.237493 0.186931 0.288671 0.210520 0.330668 diff --git a/datasets/pinganmajia/train/labels/订单1813207_4_7168800.txt b/datasets/pinganmajia/train/labels/订单1813207_4_7168800.txt new file mode 100644 index 0000000..44ae3db --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813207_4_7168800.txt @@ -0,0 +1 @@ +4 0.997859 0.266373 0.978611 0.267684 0.973366 0.181078 0.929624 0.135147 0.852631 0.098395 0.765147 0.089216 0.684657 0.115453 0.619918 0.162708 0.591912 0.304436 0.607663 0.401544 0.591912 0.440919 0.574412 0.492096 0.514918 0.522279 0.409935 0.582647 0.366193 0.627267 0.346944 0.686324 0.306699 0.736189 0.285703 0.803125 0.262958 0.849056 0.268203 0.933039 0.296209 0.998664 1.000000 0.999963 1.000000 0.564779 diff --git a/datasets/pinganmajia/train/labels/订单1813208_4_7168822.txt b/datasets/pinganmajia/train/labels/订单1813208_4_7168822.txt new file mode 100644 index 0000000..e7bd1cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813208_4_7168822.txt @@ -0,0 +1 @@ +4 0.003900 0.358307 0.047639 0.341241 0.045891 0.309748 0.047639 0.278255 0.049387 0.217882 0.077384 0.168012 0.126377 0.139141 0.240116 0.126024 0.306609 0.149644 0.378345 0.202135 0.411597 0.257257 0.401100 0.308437 0.378345 0.368802 0.341609 0.447543 0.392350 0.566962 0.385347 0.643082 0.385347 0.775625 0.336354 0.998724 0.000394 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1813210_4_7168720.txt b/datasets/pinganmajia/train/labels/订单1813210_4_7168720.txt new file mode 100644 index 0000000..40c1076 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813210_4_7168720.txt @@ -0,0 +1 @@ +4 0.733672 0.258525 0.712669 0.283457 0.693424 0.303145 0.675924 0.339883 0.647930 0.383193 0.670677 0.422559 0.696927 0.485557 0.710924 0.548545 0.716172 0.615479 0.724922 0.611543 0.730169 0.570859 0.744167 0.553799 0.749414 0.583984 0.733672 0.620723 0.759922 0.636475 0.765169 0.603662 0.786159 0.556426 0.812409 0.547236 0.810664 0.481621 0.824661 0.478994 0.845651 0.456680 0.864909 0.422559 0.868398 0.326758 0.847409 0.284766 0.842161 0.270332 0.805417 0.257207 0.814167 0.202090 0.758164 0.186338 0.733672 0.203398 0.731927 0.236211 diff --git a/datasets/pinganmajia/train/labels/订单1813211_4_7168752.txt b/datasets/pinganmajia/train/labels/订单1813211_4_7168752.txt new file mode 100644 index 0000000..91558ba --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813211_4_7168752.txt @@ -0,0 +1 @@ +4 0.999525 0.463290 0.962778 0.418672 0.913785 0.402925 0.917280 0.375365 0.906782 0.333368 0.884039 0.265130 0.798299 0.206076 0.714306 0.210009 0.644317 0.250694 0.621574 0.316311 0.609317 0.383238 0.632072 0.455417 0.605822 0.490851 0.514838 0.542031 0.593576 0.594523 0.565579 0.685078 0.513079 0.846493 0.506088 0.961979 0.481586 0.990851 0.992269 1.000000 0.994271 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813214_4_7168961.txt b/datasets/pinganmajia/train/labels/订单1813214_4_7168961.txt new file mode 100644 index 0000000..bc8df30 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813214_4_7168961.txt @@ -0,0 +1 @@ +4 0.002239 0.359559 0.009232 0.341176 0.000490 0.300502 0.007484 0.272941 0.026732 0.262439 0.044232 0.219130 0.087974 0.164020 0.133480 0.148272 0.227958 0.145637 0.283954 0.162708 0.332941 0.204694 0.338203 0.259816 0.346944 0.330686 0.341699 0.370049 0.317206 0.426483 0.415180 0.460600 0.366193 0.506532 0.425686 0.578713 0.471176 0.653517 0.479935 0.720441 0.506176 0.778186 0.493922 0.834620 0.493922 0.884485 0.490425 0.999975 0.000490 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813215_4_7168830.txt b/datasets/pinganmajia/train/labels/订单1813215_4_7168830.txt new file mode 100644 index 0000000..aa4f091 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813215_4_7168830.txt @@ -0,0 +1 @@ +4 0.003987 0.165331 0.024984 0.123333 0.096732 0.098395 0.234967 0.087904 0.294444 0.116777 0.343448 0.178456 0.373186 0.229632 0.364444 0.295245 0.353938 0.349056 0.357451 0.423860 0.336454 0.478971 0.261209 0.532782 0.346944 0.568211 0.432680 0.633836 0.471176 0.690257 0.490425 0.754571 0.521928 0.810993 0.537680 0.866115 0.563922 0.908113 0.619918 0.997353 -0.000000 0.998652 0.000000 0.798542 diff --git a/datasets/pinganmajia/train/labels/订单1813216_4_7168849.txt b/datasets/pinganmajia/train/labels/订单1813216_4_7168849.txt new file mode 100644 index 0000000..9487b70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813216_4_7168849.txt @@ -0,0 +1 @@ +4 0.996111 0.661385 0.919118 0.610208 0.934869 0.552463 0.941879 0.524902 0.959363 0.467169 0.952369 0.434350 0.961111 0.310993 0.871879 0.253260 0.824641 0.213885 0.738889 0.234877 0.665408 0.269007 0.584918 0.318873 0.572663 0.385797 0.555163 0.481605 0.555163 0.577402 0.390686 0.640392 0.310196 0.713885 0.222712 0.820184 0.117729 0.999975 0.997859 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813217_4_7168872.txt b/datasets/pinganmajia/train/labels/订单1813217_4_7168872.txt new file mode 100644 index 0000000..2b58225 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813217_4_7168872.txt @@ -0,0 +1 @@ +4 0.002500 0.435741 0.036944 0.409502 0.037925 0.295324 0.051710 0.233646 0.109783 0.126030 0.165885 0.045984 0.185564 0.030231 0.239705 0.056481 0.294818 0.098472 0.330252 0.153588 0.367656 0.299259 0.376510 0.375370 0.368637 0.433113 0.414896 0.482986 0.421788 0.521042 0.417847 0.565660 0.428681 0.677211 0.427691 0.787454 0.450330 0.997419 0.004462 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1813218_4_7168783.txt b/datasets/pinganmajia/train/labels/订单1813218_4_7168783.txt new file mode 100644 index 0000000..63f2f9b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813218_4_7168783.txt @@ -0,0 +1 @@ +4 0.016967 0.150907 0.119402 0.148278 0.210196 0.158781 0.280033 0.208646 0.305641 0.269013 0.319609 0.354320 0.307967 0.426495 0.296326 0.471115 0.424370 0.476366 0.426696 0.511795 0.477913 0.560355 0.529120 0.645656 0.540761 0.706023 0.596630 0.830692 0.591978 0.888437 0.587326 0.931746 0.538435 0.959301 0.533783 0.999988 0.003000 0.996048 diff --git a/datasets/pinganmajia/train/labels/订单1813220_4_7168840.txt b/datasets/pinganmajia/train/labels/订单1813220_4_7168840.txt new file mode 100644 index 0000000..0ab48e5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813220_4_7168840.txt @@ -0,0 +1 @@ +4 0.005615 0.623375 0.073859 0.585317 0.159603 0.507885 0.117603 0.429154 0.086115 0.393712 0.101859 0.381904 0.086115 0.322846 0.086115 0.248048 0.142103 0.174558 0.238346 0.147000 0.334577 0.150933 0.425564 0.190308 0.464064 0.267731 0.479808 0.345163 0.485064 0.371404 0.471064 0.486894 0.497308 0.489519 0.619795 0.616817 0.658282 0.746731 0.696782 0.853029 0.719526 0.948837 0.696782 0.984269 0.684538 0.998702 0.003872 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813221_4_7168876.txt b/datasets/pinganmajia/train/labels/订单1813221_4_7168876.txt new file mode 100644 index 0000000..69bb209 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813221_4_7168876.txt @@ -0,0 +1 @@ +4 0.304619 0.312331 0.291826 0.283457 0.288872 0.263776 0.303638 0.227025 0.331196 0.211283 0.353833 0.220469 0.369580 0.250651 0.373521 0.290020 0.363677 0.328079 0.404033 0.364824 0.424702 0.405508 0.435527 0.509180 0.444385 0.569551 0.441431 0.637786 0.432573 0.654850 0.417812 0.695534 0.408950 0.699466 0.415840 0.816270 0.423716 0.958001 0.442417 0.994746 0.399111 0.999993 0.385332 0.990807 0.389268 0.958001 0.377456 0.913379 0.369580 0.867448 0.351865 0.779518 0.344976 0.830703 0.347930 0.901569 0.348911 0.947500 0.350879 0.967187 0.347930 0.994746 0.311509 0.998678 0.318403 0.969811 0.305605 0.905508 0.293794 0.841204 0.281001 0.784772 0.257378 0.712591 0.239663 0.708652 0.240645 0.727025 0.225879 0.719154 0.210132 0.669284 0.193403 0.639102 0.192417 0.568236 0.194385 0.506556 0.208164 0.416003 0.233755 0.358262 0.245566 0.333327 0.274111 0.320202 diff --git a/datasets/pinganmajia/train/labels/订单1813222_4_7168971.txt b/datasets/pinganmajia/train/labels/订单1813222_4_7168971.txt new file mode 100644 index 0000000..c594e8a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813222_4_7168971.txt @@ -0,0 +1 @@ +4 0.000000 0.353799 0.042484 0.292623 0.005735 0.282120 0.002239 0.203382 0.023235 0.175821 0.042484 0.171887 0.073987 0.104963 0.129967 0.056409 0.229706 0.049841 0.336454 0.059032 0.418693 0.089216 0.464183 0.136458 0.467680 0.207316 0.460686 0.253260 0.423938 0.324118 0.378448 0.397610 0.318954 0.446164 0.269951 0.478971 0.273448 0.498664 0.334690 0.590527 0.359199 0.656140 0.450180 0.744069 0.591912 0.864804 0.621667 0.908113 0.602418 0.964534 0.600670 0.999975 0.436176 0.998664 0.005735 0.997353 0.000000 0.471201 diff --git a/datasets/pinganmajia/train/labels/订单1813223_4_7168941.txt b/datasets/pinganmajia/train/labels/订单1813223_4_7168941.txt new file mode 100644 index 0000000..8efb45e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813223_4_7168941.txt @@ -0,0 +1 @@ +4 0.004429 0.236220 0.050689 0.198163 0.117618 0.194226 0.121555 0.167979 0.173720 0.132546 0.180610 0.081365 0.186516 0.082677 0.218012 0.002625 0.382382 0.003937 0.413878 0.080052 0.409941 0.171916 0.374508 0.270341 0.379429 0.328084 0.374508 0.383202 0.358760 0.401575 0.395177 0.430446 0.404035 0.447507 0.431594 0.490814 0.434547 0.577428 0.417815 0.734908 0.402067 0.813648 0.379429 0.897638 0.356791 0.947507 0.299705 0.998688 0.002461 0.998688 diff --git a/datasets/pinganmajia/train/labels/订单1813224_4_7168908.txt b/datasets/pinganmajia/train/labels/订单1813224_4_7168908.txt new file mode 100644 index 0000000..0cf24d0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813224_4_7168908.txt @@ -0,0 +1 @@ +4 0.483308 0.471144 0.451808 0.502644 0.367821 0.521010 0.234846 0.569567 0.205090 0.644375 0.185846 0.706048 0.126359 0.804481 0.108859 0.874029 0.145603 0.992144 0.996000 0.997394 1.000000 0.642029 1.000000 0.531144 0.864756 0.490827 0.871756 0.465894 0.901513 0.451462 0.919000 0.400279 0.929500 0.349096 0.941756 0.279538 0.945256 0.191615 0.938256 0.124683 0.835013 0.072192 0.674038 0.065635 0.605795 0.086625 0.506051 0.139125 0.476308 0.196865 0.462308 0.293981 0.464064 0.334663 0.465808 0.379279 0.469308 0.426529 0.476308 0.439644 diff --git a/datasets/pinganmajia/train/labels/订单1813225_4_7168925.txt b/datasets/pinganmajia/train/labels/订单1813225_4_7168925.txt new file mode 100644 index 0000000..357ef02 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813225_4_7168925.txt @@ -0,0 +1 @@ +4 0.623348 0.312390 0.560351 0.326820 0.548099 0.363575 0.513099 0.423936 0.509605 0.475121 0.507851 0.542050 0.516608 0.573542 0.514854 0.595855 0.544605 0.605044 0.553348 0.631283 0.567354 0.673279 0.572602 0.732336 0.574342 0.784825 0.535848 0.825515 0.532354 0.841261 0.565599 0.849134 0.597091 0.825515 0.625088 0.794013 0.630336 0.745461 0.630336 0.681151 0.649591 0.635219 0.658333 0.682467 0.661842 0.746776 0.665336 0.797950 0.675833 0.845197 0.696827 0.875384 0.724825 0.871447 0.735322 0.845197 0.719576 0.796645 0.724825 0.737588 0.742325 0.671974 0.745833 0.611601 0.768567 0.608980 0.786067 0.585351 0.810570 0.538114 0.819313 0.439682 0.800073 0.355691 0.793070 0.324200 0.721330 0.309759 0.742325 0.246776 0.702076 0.224463 0.647836 0.227083 0.621594 0.265143 0.621594 0.294013 diff --git a/datasets/pinganmajia/train/labels/订单1813226_4_7168891.txt b/datasets/pinganmajia/train/labels/订单1813226_4_7168891.txt new file mode 100644 index 0000000..00fe815 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813226_4_7168891.txt @@ -0,0 +1 @@ +4 0.005735 0.548529 0.084477 0.498664 0.033742 0.379240 0.033742 0.225699 0.068725 0.143015 0.180719 0.089216 0.290948 0.093150 0.434428 0.196826 0.481683 0.305748 0.507925 0.404167 0.507925 0.532782 0.653154 0.607586 0.682908 0.691569 0.679412 0.820184 0.696895 0.955355 0.696895 0.992096 0.003987 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813227_4_7168977.txt b/datasets/pinganmajia/train/labels/订单1813227_4_7168977.txt new file mode 100644 index 0000000..811f167 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813227_4_7168977.txt @@ -0,0 +1 @@ +4 0.035369 0.994766 0.082614 0.965895 0.110606 0.916030 0.220843 0.849098 0.341581 0.796605 0.464062 0.730987 0.469318 0.653558 0.451818 0.601065 0.469318 0.497393 0.530559 0.416030 0.618049 0.376655 0.786023 0.405526 0.868267 0.451463 0.885758 0.548572 0.885758 0.653558 0.917254 0.695554 1.000000 0.701761 1.000000 0.902386 0.997746 0.997393 diff --git a/datasets/pinganmajia/train/labels/订单1813228_4_7168950.txt b/datasets/pinganmajia/train/labels/订单1813228_4_7168950.txt new file mode 100644 index 0000000..5e445c4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813228_4_7168950.txt @@ -0,0 +1 @@ +4 0.322356 0.013158 0.385344 0.090583 0.394094 0.182446 0.374844 0.257250 0.353850 0.314992 0.334600 0.408171 0.311856 0.442292 0.434339 0.502658 0.514828 0.647012 0.556822 0.744129 0.581322 0.834679 0.553322 0.961975 0.521828 0.998721 0.003894 0.998721 0.002144 0.003971 diff --git a/datasets/pinganmajia/train/labels/订单1813229_4_7168984.txt b/datasets/pinganmajia/train/labels/订单1813229_4_7168984.txt new file mode 100644 index 0000000..3700308 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813229_4_7168984.txt @@ -0,0 +1 @@ +4 0.368981 0.337325 0.364548 0.292709 0.366764 0.266462 0.378577 0.252026 0.392601 0.254650 0.409577 0.267769 0.408841 0.299274 0.408841 0.328137 0.408841 0.349137 0.440582 0.367513 0.454611 0.426564 0.464207 0.497436 0.464942 0.608983 0.464942 0.636538 0.457562 0.652291 0.450178 0.650974 0.444274 0.641786 0.441322 0.757274 0.439106 0.862265 0.434678 0.939692 0.434678 0.973812 0.428774 0.988248 0.409577 0.985624 0.414010 0.947564 0.415486 0.926564 0.409577 0.820265 0.400721 0.724470 0.402197 0.799274 0.405889 0.867513 0.407365 0.938376 0.394817 0.958060 0.367500 0.976436 0.363812 0.964624 0.385221 0.934436 0.374885 0.822889 0.369716 0.780897 0.358644 0.694282 0.358644 0.585359 0.354216 0.548615 0.340188 0.607667 0.341663 0.666726 0.333548 0.666726 0.326163 0.639162 0.328380 0.611607 0.331332 0.522368 0.337236 0.454128 0.342404 0.393761 0.358644 0.360949 0.368981 0.337325 diff --git a/datasets/pinganmajia/train/labels/订单1813230_4_7169047.txt b/datasets/pinganmajia/train/labels/订单1813230_4_7169047.txt new file mode 100644 index 0000000..8d53928 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813230_4_7169047.txt @@ -0,0 +1 @@ +4 0.255977 0.541982 0.116003 0.711279 0.131745 0.769023 0.159740 0.821514 0.163242 0.856943 0.171992 0.912061 0.166745 0.960625 0.184245 0.999990 0.213984 0.996055 0.231484 0.978994 0.226237 0.934375 0.240234 0.880566 0.264727 0.862197 0.292721 0.883193 0.343464 0.898945 0.329466 0.855635 0.299727 0.825449 0.290977 0.805762 0.318971 0.800518 0.315469 0.817578 0.357474 0.837266 0.374961 0.818887 0.493945 0.833320 0.509701 0.803145 0.472956 0.762461 0.444961 0.730957 0.402969 0.715215 0.390716 0.695527 0.423958 0.687656 0.423958 0.632539 0.409961 0.576104 0.367969 0.541982 0.357474 0.475059 0.311979 0.472432 0.275234 0.480303 0.266484 0.499990 0.259479 0.518359 diff --git a/datasets/pinganmajia/train/labels/订单1813236_4_7169057.txt b/datasets/pinganmajia/train/labels/订单1813236_4_7169057.txt new file mode 100644 index 0000000..2fb68f3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813236_4_7169057.txt @@ -0,0 +1 @@ +4 0.000000 0.430401 0.049506 0.429120 0.065247 0.410748 0.066996 0.362191 0.033755 0.370069 0.009259 0.349066 0.000000 0.305100 0.000000 0.280887 0.004012 0.221775 0.021502 0.143032 0.061749 0.110224 0.136996 0.077415 0.257726 0.076103 0.317222 0.104977 0.408210 0.131219 0.467695 0.181088 0.486944 0.224398 0.420453 0.269020 0.416955 0.312323 0.422202 0.366127 0.381965 0.398935 0.360967 0.431744 0.346965 0.460617 0.483447 0.543295 0.527191 0.620725 0.546440 0.670594 0.518447 0.741458 0.506193 0.816258 0.544691 0.951427 0.523693 0.997361 0.000000 0.997361 diff --git a/datasets/pinganmajia/train/labels/订单1813237_4_7169282.txt b/datasets/pinganmajia/train/labels/订单1813237_4_7169282.txt new file mode 100644 index 0000000..59b9f81 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813237_4_7169282.txt @@ -0,0 +1 @@ +4 0.004449 0.521021 0.027089 0.509216 0.109761 0.488219 0.174724 0.451471 0.197365 0.416038 0.158977 0.287426 0.158977 0.233619 0.143229 0.200817 0.100907 0.182443 0.134369 0.148317 0.144210 0.115515 0.184565 0.070891 0.237714 0.040711 0.288897 0.059085 0.336140 0.084020 0.358781 0.143072 0.374528 0.198186 0.371575 0.238873 0.365668 0.339918 0.336140 0.409477 0.345987 0.435719 0.399136 0.475090 0.456219 0.490842 0.491654 0.511838 0.505435 0.581389 0.530037 0.700817 0.544804 0.788742 0.528070 0.868791 0.534963 0.921283 0.514289 0.998717 0.061538 0.998717 0.064485 0.896348 0.056612 0.825482 0.034963 0.812361 0.016262 0.835980 0.000000 0.842361 0.000000 0.811675 diff --git a/datasets/pinganmajia/train/labels/订单1813238_4_7172675.txt b/datasets/pinganmajia/train/labels/订单1813238_4_7172675.txt new file mode 100644 index 0000000..2eb7c9f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813238_4_7172675.txt @@ -0,0 +1 @@ +4 0.000490 0.608897 0.136977 0.593150 0.173725 0.557721 0.122974 0.502598 0.145719 0.423860 0.210458 0.318873 0.282206 0.253260 0.385441 0.237500 0.453676 0.263750 0.546422 0.334620 0.562173 0.429105 0.539428 0.539338 0.488676 0.587904 0.614657 0.654828 0.663660 0.733566 0.702157 0.813627 0.763399 0.866115 0.765147 0.905490 0.773889 0.947475 0.768644 0.988162 0.002239 0.994718 diff --git a/datasets/pinganmajia/train/labels/订单1813239_4_7169046.txt b/datasets/pinganmajia/train/labels/订单1813239_4_7169046.txt new file mode 100644 index 0000000..79469f4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813239_4_7169046.txt @@ -0,0 +1 @@ +4 0.997891 0.619414 0.927891 0.576104 0.878906 0.540674 0.884154 0.510488 0.913893 0.476367 0.899896 0.437002 0.882409 0.438311 0.892904 0.353008 0.815911 0.305762 0.726667 0.295264 0.656680 0.314951 0.602435 0.347764 0.569193 0.427812 0.567448 0.503926 0.574440 0.540674 0.497448 0.614160 0.476458 0.700781 0.474701 0.790020 0.479948 0.885820 0.455456 0.946182 0.441458 0.993428 0.999635 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1813240_4_7169123.txt b/datasets/pinganmajia/train/labels/订单1813240_4_7169123.txt new file mode 100644 index 0000000..a664370 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813240_4_7169123.txt @@ -0,0 +1 @@ +4 1.000000 0.384990 0.891146 0.371387 0.812409 0.380566 0.752917 0.408125 0.742422 0.437002 0.677682 0.461934 0.728424 0.464561 0.723177 0.510488 0.716172 0.564297 0.716172 0.607598 0.534193 0.717842 0.434453 0.769023 0.369714 0.814951 0.311979 0.912061 0.296224 0.978994 0.362721 0.997363 1.000000 0.998662 diff --git a/datasets/pinganmajia/train/labels/订单1813241_4_7169087.txt b/datasets/pinganmajia/train/labels/订单1813241_4_7169087.txt new file mode 100644 index 0000000..03437ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813241_4_7169087.txt @@ -0,0 +1 @@ +4 1.000000 0.517451 0.952369 0.492096 0.968121 0.464534 0.968121 0.426483 0.940114 0.423860 0.966373 0.341176 0.922631 0.282120 0.859624 0.263750 0.717892 0.278186 0.689902 0.309681 0.667157 0.367426 0.658399 0.406801 0.639167 0.457978 0.653154 0.551152 0.614657 0.646961 0.574412 0.708640 0.534167 0.788689 0.504428 0.867426 0.446683 0.997353 0.996111 0.997353 1.000000 0.821029 diff --git a/datasets/pinganmajia/train/labels/订单1813242_4_7169130.txt b/datasets/pinganmajia/train/labels/订单1813242_4_7169130.txt new file mode 100644 index 0000000..58ca437 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813242_4_7169130.txt @@ -0,0 +1 @@ +4 0.566150 0.191554 0.529945 0.225675 0.516645 0.272922 0.498915 0.342469 0.494480 0.419902 0.504825 0.489449 0.515170 0.518321 0.521080 0.556385 0.538075 0.570817 0.519605 0.569503 0.524035 0.603623 0.518865 0.669245 0.512955 0.726989 0.518125 0.787353 0.507780 0.835906 0.499655 0.854281 0.510735 0.867407 0.517385 0.858224 0.527730 0.843783 0.543245 0.825409 0.541770 0.791288 0.553590 0.726989 0.563195 0.628561 0.565410 0.703366 0.565410 0.795231 0.562455 0.828037 0.568365 0.856909 0.599400 0.875284 0.611220 0.859529 0.598660 0.835906 0.590530 0.809663 0.597180 0.770293 0.602355 0.679742 0.614175 0.551137 0.634125 0.545888 0.637820 0.507824 0.648900 0.418588 0.651115 0.335906 0.643730 0.262416 0.629690 0.229609 0.609740 0.211234 0.603830 0.188925 0.612695 0.152185 0.615655 0.115435 0.598660 0.082629 0.580925 0.085258 0.563935 0.108872 0.559500 0.144307 0.560980 0.165311 diff --git a/datasets/pinganmajia/train/labels/订单1813243_4_7169062.txt b/datasets/pinganmajia/train/labels/订单1813243_4_7169062.txt new file mode 100644 index 0000000..301a807 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813243_4_7169062.txt @@ -0,0 +1 @@ +4 0.005446 0.531539 0.040879 0.510544 0.125525 0.493483 0.104854 0.419989 0.087137 0.402933 0.088125 0.358311 0.081233 0.299256 0.073358 0.258572 0.073358 0.178522 0.092058 0.111594 0.134383 0.056472 0.208200 0.039411 0.278083 0.059100 0.335171 0.108967 0.361746 0.181144 0.366667 0.269072 0.354854 0.334689 0.342058 0.409494 0.333200 0.446239 0.297771 0.522356 0.364700 0.569600 0.439500 0.637839 0.477888 0.685083 0.548754 0.838628 0.626508 0.965922 0.626508 0.989544 0.626508 0.998733 0.003479 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813246_4_7169984.txt b/datasets/pinganmajia/train/labels/订单1813246_4_7169984.txt new file mode 100644 index 0000000..0447230 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813246_4_7169984.txt @@ -0,0 +1 @@ +4 0.994306 0.573551 0.929563 0.553863 0.871818 0.519743 0.843824 0.486936 0.854322 0.441005 0.866569 0.404259 0.887569 0.349139 0.871818 0.326829 0.868321 0.238903 0.835074 0.186409 0.744085 0.147040 0.647847 0.140478 0.556859 0.173287 0.495617 0.249403 0.465870 0.333392 0.469371 0.402947 0.478117 0.467252 0.506115 0.519743 0.444873 0.547304 0.343386 0.602420 0.289142 0.675913 0.233150 0.807145 0.210400 0.884574 0.245396 0.997436 0.980923 1.000000 0.997802 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813248_4_7169196.txt b/datasets/pinganmajia/train/labels/订单1813248_4_7169196.txt new file mode 100644 index 0000000..8e533ca --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813248_4_7169196.txt @@ -0,0 +1 @@ +4 1.000000 0.337627 0.949349 0.347812 0.921788 0.300567 0.901120 0.275637 0.897179 0.161470 0.872578 0.073542 0.813524 0.015799 0.733793 0.010544 0.646198 0.059109 0.595017 0.131285 0.573359 0.210023 0.586155 0.353067 0.605842 0.389815 0.578281 0.461991 0.536944 0.561725 0.506432 0.624722 0.484783 0.795324 0.463125 0.905556 0.450330 0.947558 0.469028 0.997419 0.992752 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813252_4_7169184.txt b/datasets/pinganmajia/train/labels/订单1813252_4_7169184.txt new file mode 100644 index 0000000..695e46b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813252_4_7169184.txt @@ -0,0 +1 @@ +4 0.807133 0.334620 0.754640 0.349050 0.745893 0.375300 0.712653 0.419920 0.698653 0.465850 0.703907 0.502600 0.726653 0.518350 0.768640 0.549840 0.812387 0.610210 0.819387 0.686320 0.812387 0.737510 0.833387 0.738820 0.842133 0.706010 0.840387 0.629890 0.850880 0.586590 0.857880 0.681080 0.866627 0.716510 0.908627 0.745380 0.915627 0.728320 0.903373 0.698140 0.896373 0.603650 0.908627 0.552470 0.929627 0.556400 0.938373 0.520970 0.943627 0.447480 0.931373 0.393670 0.912120 0.360870 0.873627 0.334620 0.877133 0.308370 0.868387 0.279500 0.833387 0.279500 0.814133 0.292620 0.803640 0.317560 diff --git a/datasets/pinganmajia/train/labels/订单1813253_4_7169158.txt b/datasets/pinganmajia/train/labels/订单1813253_4_7169158.txt new file mode 100644 index 0000000..94f1856 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813253_4_7169158.txt @@ -0,0 +1 @@ +4 0.009115 0.261173 0.063359 0.265106 0.059859 0.234923 0.079115 0.200798 0.079115 0.129933 0.114103 0.078760 0.199846 0.035452 0.327577 0.030202 0.422064 0.057760 0.469308 0.115500 0.490308 0.186365 0.457064 0.257231 0.432564 0.309731 0.395821 0.379279 0.430821 0.402904 0.388821 0.423904 0.422064 0.506577 0.443064 0.589250 0.541051 0.786106 0.572551 0.847788 0.577795 0.883221 0.598795 0.916029 0.618038 0.947519 0.616295 0.997394 0.003872 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813254_4_7169197.txt b/datasets/pinganmajia/train/labels/订单1813254_4_7169197.txt new file mode 100644 index 0000000..7d15d7d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813254_4_7169197.txt @@ -0,0 +1 @@ +4 0.296224 0.300518 0.240234 0.311016 0.201732 0.354326 0.178984 0.417314 0.157995 0.488184 0.161497 0.513115 0.170247 0.547236 0.189492 0.540674 0.201732 0.536738 0.215742 0.481621 0.229740 0.437002 0.220990 0.538047 0.233229 0.608916 0.243737 0.653535 0.252487 0.729648 0.229740 0.775586 0.224479 0.792646 0.257734 0.791328 0.290977 0.766396 0.296224 0.733584 0.303229 0.658779 0.317227 0.611543 0.317227 0.653535 0.315469 0.730957 0.308477 0.765078 0.338216 0.795264 0.362721 0.787393 0.355716 0.750645 0.374961 0.669277 0.390716 0.545918 0.415208 0.518359 0.444961 0.485557 0.460703 0.429121 0.441458 0.354326 0.413464 0.322822 0.367969 0.305762 0.373216 0.284766 0.380221 0.267705 0.373216 0.238838 0.332969 0.228340 0.297982 0.236211 0.290977 0.257207 0.287474 0.276895 diff --git a/datasets/pinganmajia/train/labels/订单1813255_4_7169178.txt b/datasets/pinganmajia/train/labels/订单1813255_4_7169178.txt new file mode 100644 index 0000000..7c1412b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813255_4_7169178.txt @@ -0,0 +1 @@ +4 1.000000 0.230675 0.920778 0.210008 0.789544 0.207383 0.696806 0.250688 0.640811 0.313679 0.633817 0.395046 0.635567 0.452788 0.635567 0.526279 0.635567 0.570900 0.609317 0.568275 0.570822 0.597146 0.551572 0.629954 0.465833 0.703446 0.465833 0.748062 0.441339 0.847800 0.425589 0.937042 0.408094 0.998721 0.981272 1.000000 0.996022 1.000000 1.000000 0.416842 diff --git a/datasets/pinganmajia/train/labels/订单1813256_4_7169539.txt b/datasets/pinganmajia/train/labels/订单1813256_4_7169539.txt new file mode 100644 index 0000000..ba1d33a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813256_4_7169539.txt @@ -0,0 +1 @@ +4 0.996111 0.221752 0.863137 0.160074 0.756389 0.144326 0.654902 0.157451 0.576160 0.209951 0.541176 0.286066 0.539428 0.335931 0.537680 0.389743 0.534167 0.423860 0.590163 0.540650 0.548170 0.552463 0.451928 0.610208 0.401193 0.685012 0.392435 0.716507 0.268203 0.856924 0.177222 0.997353 1.000000 0.996042 1.000000 0.794865 diff --git a/datasets/pinganmajia/train/labels/订单1813257_4_7169198.txt b/datasets/pinganmajia/train/labels/订单1813257_4_7169198.txt new file mode 100644 index 0000000..9565b29 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813257_4_7169198.txt @@ -0,0 +1 @@ +4 0.016102 0.531496 0.056522 0.526250 0.061772 0.492126 0.037100 0.471132 0.039016 0.440945 0.030276 0.396329 0.037100 0.370079 0.058097 0.309715 0.100092 0.283465 0.161509 0.251969 0.235000 0.257215 0.283819 0.278219 0.317231 0.317589 0.338228 0.374016 0.348727 0.434380 0.339987 0.486880 0.338228 0.531496 0.371483 0.577431 0.455472 0.649606 0.458963 0.700787 0.478045 0.771654 0.607703 0.931762 0.619777 0.977687 0.614528 0.994754 0.002270 0.994754 diff --git a/datasets/pinganmajia/train/labels/订单1813258_4_7169186.txt b/datasets/pinganmajia/train/labels/订单1813258_4_7169186.txt new file mode 100644 index 0000000..506ad89 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813258_4_7169186.txt @@ -0,0 +1 @@ +4 0.008626 0.532843 0.041911 0.519716 0.041911 0.476412 0.054175 0.455412 0.068194 0.405539 0.112003 0.354363 0.203102 0.320245 0.290707 0.326804 0.350275 0.363549 0.383573 0.414725 0.387068 0.492157 0.374804 0.572206 0.360798 0.607647 0.415105 0.711314 0.408102 0.758559 0.387068 0.858294 0.392330 0.909480 0.373063 0.969843 0.346780 0.997402 0.006872 0.993471 diff --git a/datasets/pinganmajia/train/labels/订单1813259_4_7169217.txt b/datasets/pinganmajia/train/labels/订单1813259_4_7169217.txt new file mode 100644 index 0000000..88e001f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813259_4_7169217.txt @@ -0,0 +1 @@ +4 1.000000 0.227022 0.959393 0.244082 0.899897 0.212585 0.875401 0.145656 0.822901 0.094475 0.738920 0.051165 0.611183 0.039360 0.485195 0.069545 0.399455 0.146968 0.376708 0.220463 0.399455 0.297886 0.460700 0.379252 0.534187 0.436998 0.618179 0.480301 0.577932 0.538048 0.537695 0.615471 0.544691 0.694213 0.577932 0.832006 0.576183 0.891065 0.623426 0.980301 0.623426 0.997361 0.999630 0.993426 1.000000 0.912955 diff --git a/datasets/pinganmajia/train/labels/订单1813262_4_7169291.txt b/datasets/pinganmajia/train/labels/订单1813262_4_7169291.txt new file mode 100644 index 0000000..0171aa1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813262_4_7169291.txt @@ -0,0 +1 @@ +4 0.255977 0.413379 0.184245 0.443564 0.152747 0.482930 0.138750 0.526240 0.152747 0.589229 0.147500 0.627285 0.170247 0.678467 0.159740 0.724404 0.177240 0.740146 0.201732 0.725713 0.213984 0.691592 0.226237 0.639102 0.248984 0.664033 0.273477 0.671904 0.269974 0.643037 0.276979 0.622041 0.285729 0.653535 0.315469 0.666660 0.324219 0.646973 0.371471 0.671904 0.409961 0.667969 0.418711 0.640410 0.399466 0.601045 0.360964 0.576104 0.357474 0.560361 0.388958 0.541982 0.408216 0.505244 0.395964 0.469805 0.380221 0.439619 0.336471 0.398945 0.336471 0.364824 0.299727 0.355635 0.266484 0.367441 0.266484 0.391064 0.261224 0.404189 diff --git a/datasets/pinganmajia/train/labels/订单1813263_4_7169243.txt b/datasets/pinganmajia/train/labels/订单1813263_4_7169243.txt new file mode 100644 index 0000000..2ce168d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813263_4_7169243.txt @@ -0,0 +1 @@ +4 0.996415 0.513141 0.927409 0.475089 0.891915 0.437029 0.881073 0.401591 0.884030 0.355666 0.880085 0.337289 0.886000 0.270357 0.872201 0.206055 0.841634 0.162752 0.790372 0.141753 0.738122 0.161437 0.695732 0.200804 0.667140 0.265114 0.667140 0.350414 0.653341 0.410779 0.655311 0.463271 0.623762 0.524951 0.589256 0.548580 0.553768 0.585325 0.505463 0.741494 0.480817 0.917346 0.490671 0.964586 0.502506 0.992143 0.992470 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813264_4_7169305.txt b/datasets/pinganmajia/train/labels/订单1813264_4_7169305.txt new file mode 100644 index 0000000..6851c72 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813264_4_7169305.txt @@ -0,0 +1 @@ +4 1.000000 0.295284 0.867975 0.295284 0.814401 0.324154 0.749545 0.362212 0.712882 0.416019 0.715702 0.477697 0.763647 0.580063 0.783388 0.608933 0.724163 0.619428 0.783388 0.648303 0.684690 0.686361 0.574711 0.762476 0.518316 0.828091 0.504215 0.885837 0.374494 0.980322 0.371684 1.000000 0.375362 1.000000 1.000000 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1813266_4_7169326.txt b/datasets/pinganmajia/train/labels/订单1813266_4_7169326.txt new file mode 100644 index 0000000..0d7de2b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813266_4_7169326.txt @@ -0,0 +1 @@ +4 0.369716 0.240214 0.340928 0.271709 0.335024 0.316333 0.326904 0.380632 0.316567 0.454128 0.312875 0.542051 0.317308 0.605043 0.326163 0.619479 0.332067 0.615538 0.326163 0.593231 0.335760 0.605043 0.333548 0.568299 0.339452 0.535487 0.343880 0.523675 0.354952 0.556487 0.352000 0.626043 0.361596 0.681162 0.378577 0.872761 0.369716 0.909504 0.343880 0.958060 0.374885 0.962000 0.402197 0.930504 0.404413 0.769085 0.408841 0.732342 0.414010 0.812393 0.414010 0.892444 0.413269 0.938376 0.400721 0.975120 0.415486 0.986932 0.433202 0.963308 0.434678 0.927880 0.441322 0.855701 0.442058 0.801897 0.446490 0.713966 0.450918 0.633915 0.464942 0.623419 0.473062 0.568299 0.484875 0.517120 0.485611 0.412128 0.473803 0.315017 0.458298 0.265145 0.436154 0.229718 0.420654 0.211342 0.422130 0.170658 0.411793 0.133915 0.386697 0.128667 0.373409 0.150974 0.371192 0.199530 diff --git a/datasets/pinganmajia/train/labels/订单1813268_4_7169280.txt b/datasets/pinganmajia/train/labels/订单1813268_4_7169280.txt new file mode 100644 index 0000000..638097d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813268_4_7169280.txt @@ -0,0 +1 @@ +4 1.000000 0.617341 0.950621 0.590527 0.912124 0.569522 0.903382 0.538027 0.934869 0.480294 0.947124 0.448787 0.971618 0.381863 0.948873 0.355613 0.929624 0.272941 0.885882 0.224387 0.812386 0.174510 0.738889 0.173199 0.653154 0.182390 0.579673 0.212574 0.551667 0.266373 0.541176 0.320184 0.553415 0.400233 0.555163 0.465858 0.579673 0.531471 0.630408 0.589216 0.513170 0.619400 0.450180 0.660074 0.367941 0.775564 0.313693 0.883174 0.310196 0.994718 1.000000 0.999939 diff --git a/datasets/pinganmajia/train/labels/订单1813270_4_7169375.txt b/datasets/pinganmajia/train/labels/订单1813270_4_7169375.txt new file mode 100644 index 0000000..912b997 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813270_4_7169375.txt @@ -0,0 +1 @@ +4 0.999608 0.856924 0.961111 0.813627 0.933121 0.774252 0.948873 0.745380 0.934869 0.720441 0.901634 0.703382 0.933121 0.666642 0.929624 0.635147 0.948873 0.561654 0.908627 0.517034 0.828137 0.482917 0.735392 0.489473 0.668905 0.536716 0.651405 0.581336 0.619918 0.623333 0.616405 0.669265 0.569167 0.678456 0.558676 0.721752 0.469428 0.776875 0.408186 0.862181 0.355703 0.943542 0.306699 0.997353 0.999608 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813271_4_7169335.txt b/datasets/pinganmajia/train/labels/订单1813271_4_7169335.txt new file mode 100644 index 0000000..298d184 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813271_4_7169335.txt @@ -0,0 +1 @@ +4 0.000509 0.292680 0.034963 0.290049 0.040864 0.266430 0.023150 0.227059 0.016262 0.203440 0.020196 0.169314 0.031023 0.136511 0.045784 0.085327 0.063505 0.023652 0.068425 0.000025 0.251495 0.003962 0.267243 0.043333 0.280037 0.115515 0.279056 0.190319 0.276103 0.249371 0.243621 0.368791 0.233781 0.402917 0.262322 0.431781 0.321379 0.513154 0.336140 0.560392 0.356814 0.629951 0.373542 0.698186 0.402089 0.759869 0.426691 0.811046 0.442439 0.872729 0.437518 0.938350 0.411930 0.998717 0.262322 0.997402 0.002482 0.996087 diff --git a/datasets/pinganmajia/train/labels/订单1813273_4_7169320.txt b/datasets/pinganmajia/train/labels/订单1813273_4_7169320.txt new file mode 100644 index 0000000..e3a2f5c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813273_4_7169320.txt @@ -0,0 +1 @@ +4 0.000490 0.213885 0.056487 0.183701 0.124722 0.162708 0.201716 0.178456 0.266454 0.219130 0.311944 0.304436 0.325948 0.352990 0.331193 0.406801 0.313693 0.454044 0.369690 0.485539 0.357451 0.513100 0.401193 0.580025 0.436176 0.624645 0.436176 0.665331 0.479935 0.850368 0.481683 0.992096 0.000490 0.997353 0.000000 0.845147 0.000000 0.451091 0.017990 0.427794 0.003987 0.409424 diff --git a/datasets/pinganmajia/train/labels/订单1813278_4_7170283.txt b/datasets/pinganmajia/train/labels/订单1813278_4_7170283.txt new file mode 100644 index 0000000..7ca86ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813278_4_7170283.txt @@ -0,0 +1 @@ +4 0.640907 0.540660 0.548173 0.583960 0.472933 0.636460 0.450187 0.679760 0.374947 0.745380 0.381947 0.780810 0.341693 0.855620 0.348693 0.934360 0.348693 0.997350 0.996120 0.998660 1.000000 0.610140 1.000000 0.473350 0.929627 0.454040 0.947120 0.417300 0.931373 0.356930 0.908627 0.293940 0.857880 0.262440 0.737147 0.249320 0.651413 0.274250 0.604160 0.325430 0.612907 0.494720 diff --git a/datasets/pinganmajia/train/labels/订单1813279_4_7169501.txt b/datasets/pinganmajia/train/labels/订单1813279_4_7169501.txt new file mode 100644 index 0000000..6f7cf98 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813279_4_7169501.txt @@ -0,0 +1 @@ +4 0.348577 0.349096 0.317077 0.370096 0.283833 0.410779 0.269833 0.459337 0.282090 0.553817 0.289090 0.585317 0.315333 0.599750 0.331077 0.610250 0.343333 0.692933 0.357321 0.753298 0.359077 0.779538 0.334577 0.812356 0.359077 0.821538 0.378321 0.805788 0.397577 0.769048 0.390577 0.744106 0.394077 0.652250 0.404564 0.611567 0.430821 0.664058 0.430821 0.706048 0.429064 0.753298 0.432564 0.800538 0.464064 0.829413 0.467564 0.805788 0.467564 0.766423 0.478064 0.708673 0.478064 0.585317 0.502551 0.584000 0.514808 0.555135 0.534051 0.455394 0.516551 0.381904 0.492064 0.355654 0.441321 0.342538 0.434321 0.304481 0.394077 0.272981 0.360821 0.283481 0.355577 0.309731 0.360821 0.329413 diff --git a/datasets/pinganmajia/train/labels/订单1813280_4_7169478.txt b/datasets/pinganmajia/train/labels/订单1813280_4_7169478.txt new file mode 100644 index 0000000..f820165 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813280_4_7169478.txt @@ -0,0 +1 @@ +4 0.000000 0.065486 0.063391 0.057778 0.142130 0.064340 0.224375 0.091901 0.268113 0.148333 0.285613 0.196884 0.310104 0.249384 0.325856 0.296623 0.322361 0.329436 0.357350 0.343872 0.381852 0.400295 0.397593 0.433108 0.457095 0.493472 0.471088 0.540720 0.499086 0.601085 0.565579 0.703446 0.586574 0.845182 0.626817 0.993472 0.000394 0.998724 0.000000 0.786545 diff --git a/datasets/pinganmajia/train/labels/订单1813281_4_7169515.txt b/datasets/pinganmajia/train/labels/订单1813281_4_7169515.txt new file mode 100644 index 0000000..a446da1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813281_4_7169515.txt @@ -0,0 +1 @@ +4 -0.000000 0.599412 0.138725 0.552463 0.157974 0.517034 0.143971 0.467169 0.131716 0.444853 0.126471 0.404167 0.133480 0.368738 0.140474 0.317561 0.171961 0.258505 0.240212 0.212574 0.334690 0.220441 0.406438 0.242757 0.467680 0.290000 0.486928 0.354301 0.492173 0.417292 0.481683 0.469792 0.458938 0.536716 0.492173 0.583958 0.593660 0.618088 0.630408 0.674510 0.782647 0.750625 0.955866 0.887108 0.982124 0.939608 1.000000 0.960564 1.000000 0.972696 0.003987 0.999975 0.000000 0.818088 diff --git a/datasets/pinganmajia/train/labels/订单1813283_4_7169624.txt b/datasets/pinganmajia/train/labels/订单1813283_4_7169624.txt new file mode 100644 index 0000000..d1e96ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813283_4_7169624.txt @@ -0,0 +1 @@ +4 0.554693 0.322829 0.501181 0.345138 0.456979 0.414697 0.450000 0.490813 0.480245 0.528867 0.522117 0.552491 0.540736 0.671912 0.533758 0.716531 0.559356 0.723097 0.580291 0.702093 0.577960 0.677163 0.582623 0.620735 0.601227 0.601047 0.610537 0.620735 0.603558 0.661410 0.608221 0.690285 0.631488 0.709974 0.664049 0.716531 0.675690 0.706029 0.654755 0.679784 0.671043 0.606298 0.685000 0.528867 0.729202 0.519680 0.759448 0.439628 0.754801 0.376635 0.717577 0.338581 0.675690 0.324144 0.685000 0.266401 0.643113 0.248028 0.577960 0.250649 0.561672 0.270337 0.564003 0.293962 diff --git a/datasets/pinganmajia/train/labels/订单1813284_4_7169480.txt b/datasets/pinganmajia/train/labels/订单1813284_4_7169480.txt new file mode 100644 index 0000000..daebe9c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813284_4_7169480.txt @@ -0,0 +1 @@ +4 0.500931 0.417292 0.518431 0.464534 0.516667 0.490784 0.488676 0.519657 0.395948 0.532782 0.311944 0.615453 0.283954 0.678456 0.170212 0.838554 0.136977 0.849056 0.049477 0.997353 0.994363 0.999975 1.000000 0.605858 1.000000 0.509988 0.941879 0.489473 0.922631 0.439608 0.894624 0.391054 0.894624 0.320184 0.894624 0.255882 0.885882 0.173199 0.845637 0.115453 0.810637 0.074779 0.723154 0.044596 0.548170 0.047218 0.457190 0.082647 0.395948 0.160074 0.394183 0.244069 0.416944 0.309681 0.434428 0.338554 0.495670 0.417292 diff --git a/datasets/pinganmajia/train/labels/订单1813286_4_7169463.txt b/datasets/pinganmajia/train/labels/订单1813286_4_7169463.txt new file mode 100644 index 0000000..329458a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813286_4_7169463.txt @@ -0,0 +1 @@ +4 0.002677 0.549886 0.034226 0.532825 0.087457 0.514456 0.144640 0.498709 0.188018 0.459334 0.181116 0.397654 0.175201 0.330731 0.183085 0.278239 0.190976 0.206055 0.208720 0.137817 0.256043 0.110260 0.309274 0.111567 0.355610 0.139123 0.392085 0.192930 0.403921 0.248052 0.400963 0.337289 0.391104 0.381907 0.382232 0.425219 0.376317 0.465901 0.385189 0.500016 0.404902 0.548580 0.435463 0.607630 0.449268 0.686372 0.448280 0.740179 0.446311 0.849099 0.472927 0.990836 0.001689 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813287_4_7169537.txt b/datasets/pinganmajia/train/labels/订单1813287_4_7169537.txt new file mode 100644 index 0000000..b3876a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813287_4_7169537.txt @@ -0,0 +1 @@ +4 0.994363 0.310993 0.791389 0.313627 0.731895 0.351679 0.693399 0.406801 0.654902 0.484228 0.637402 0.586593 0.518431 0.616777 0.404690 0.674510 0.320703 0.717819 0.231454 0.800502 0.191209 0.896299 0.194722 0.963223 0.220964 0.998664 0.999608 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813288_4_7169746.txt b/datasets/pinganmajia/train/labels/订单1813288_4_7169746.txt new file mode 100644 index 0000000..18207f7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813288_4_7169746.txt @@ -0,0 +1 @@ +4 0.997891 0.091855 0.836914 0.095791 0.740664 0.120723 0.688177 0.158779 0.674180 0.223086 0.651432 0.303145 0.654935 0.356943 0.653177 0.438311 0.675924 0.489492 0.667174 0.505244 0.647930 0.561670 0.549948 0.927813 0.527201 0.998682 0.997891 0.998682 diff --git a/datasets/pinganmajia/train/labels/订单1813290_4_7169497.txt b/datasets/pinganmajia/train/labels/订单1813290_4_7169497.txt new file mode 100644 index 0000000..80b0b2d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813290_4_7169497.txt @@ -0,0 +1 @@ +4 1.000000 0.555154 0.931601 0.522321 0.905029 0.507885 0.894202 0.476391 0.878452 0.444891 0.891250 0.377962 0.906010 0.343840 0.915856 0.274288 0.906010 0.186359 0.875500 0.122058 0.839082 0.097122 0.791837 0.091872 0.753452 0.095814 0.718019 0.120744 0.696365 0.162737 0.699317 0.225731 0.694399 0.270353 0.685538 0.311032 0.688490 0.360904 0.698337 0.421269 0.640264 0.498699 0.572351 0.523635 0.515264 0.581378 0.425697 0.824160 0.437510 0.993449 0.997639 1.000000 0.998534 1.000000 1.000000 0.905737 diff --git a/datasets/pinganmajia/train/labels/订单1813292_4_7169660.txt b/datasets/pinganmajia/train/labels/订单1813292_4_7169660.txt new file mode 100644 index 0000000..353b4fc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813292_4_7169660.txt @@ -0,0 +1 @@ +4 0.005949 0.397685 0.051887 0.349132 0.107002 0.321574 0.125370 0.292697 0.116192 0.258576 0.092569 0.244144 0.089942 0.224456 0.099132 0.186400 0.129317 0.144410 0.188368 0.140463 0.215926 0.152280 0.221181 0.192963 0.223796 0.227083 0.230359 0.267766 0.240856 0.299259 0.292037 0.328137 0.353727 0.372755 0.378657 0.452801 0.414086 0.572222 0.416713 0.644410 0.398345 0.662778 0.393090 0.711331 0.369468 0.716586 0.368160 0.818947 0.379965 0.917373 0.404907 0.979051 0.419306 1.000000 0.418218 1.000000 0.327477 0.996111 0.295984 0.952801 0.274977 0.859630 0.253981 0.780891 0.253981 0.860938 0.255301 0.920000 0.265787 1.000000 0.264664 1.000000 0.172616 0.996111 0.163438 0.910810 0.148993 0.838634 0.122755 0.750706 0.080752 0.715266 0.079444 0.622095 0.065012 0.584039 0.007269 0.569606 diff --git a/datasets/pinganmajia/train/labels/订单1813293_4_7169606.txt b/datasets/pinganmajia/train/labels/订单1813293_4_7169606.txt new file mode 100644 index 0000000..29dca39 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813293_4_7169606.txt @@ -0,0 +1 @@ +4 0.238367 0.318929 0.191122 0.351737 0.145628 0.381921 0.117628 0.490846 0.150878 0.570900 0.154372 0.589271 0.168372 0.616829 0.185872 0.623392 0.203367 0.732317 0.220867 0.778250 0.219117 0.808433 0.194622 0.845179 0.224367 0.850425 0.252361 0.832054 0.255861 0.822867 0.280361 0.807121 0.276861 0.780871 0.264611 0.759875 0.259361 0.699508 0.290856 0.624704 0.301356 0.678513 0.292606 0.738879 0.287356 0.791371 0.311856 0.808433 0.353850 0.824179 0.380094 0.813679 0.371350 0.799246 0.343350 0.778250 0.360850 0.704758 0.369600 0.565650 0.378344 0.591896 0.381844 0.608958 0.401094 0.572213 0.418589 0.526279 0.394094 0.410796 0.352100 0.360925 0.336350 0.343867 0.318856 0.328117 0.325856 0.301871 0.310106 0.261188 0.268111 0.253312 0.241861 0.273000 0.233117 0.297933 0.227867 0.305808 diff --git a/datasets/pinganmajia/train/labels/订单1813294_4_7169540.txt b/datasets/pinganmajia/train/labels/订单1813294_4_7169540.txt new file mode 100644 index 0000000..5cae34d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813294_4_7169540.txt @@ -0,0 +1 @@ +4 0.303129 0.312390 0.299635 0.334693 0.227895 0.354386 0.215643 0.391129 0.203392 0.451491 0.170146 0.531546 0.171901 0.578794 0.184152 0.610285 0.199898 0.615537 0.208640 0.574857 0.240146 0.511864 0.257632 0.469868 0.255892 0.540735 0.264635 0.607664 0.297880 0.788761 0.303129 0.850450 0.287383 0.891129 0.324123 0.897686 0.362632 0.863575 0.378377 0.849134 0.423860 0.885877 0.432617 0.863575 0.423860 0.799265 0.427368 0.721842 0.450117 0.593224 0.472865 0.565669 0.502602 0.490866 0.490365 0.442314 0.453611 0.379320 0.429123 0.347818 0.381871 0.334693 0.380117 0.305822 0.390614 0.258586 0.367880 0.237588 0.320629 0.233651 0.304883 0.257270 0.296126 0.275647 0.299635 0.301886 diff --git a/datasets/pinganmajia/train/labels/订单1813295_4_7169584.txt b/datasets/pinganmajia/train/labels/订单1813295_4_7169584.txt new file mode 100644 index 0000000..d41ce4e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813295_4_7169584.txt @@ -0,0 +1 @@ +4 0.301356 0.301871 0.264611 0.334679 0.245361 0.371425 0.252361 0.413417 0.234867 0.465913 0.255861 0.485596 0.273361 0.511846 0.266361 0.560400 0.289106 0.586646 0.322356 0.589271 0.320606 0.572213 0.311856 0.545967 0.325856 0.509221 0.332850 0.521029 0.353850 0.532842 0.378344 0.531529 0.369600 0.517092 0.378344 0.501346 0.367850 0.480346 0.394094 0.475100 0.397594 0.455412 0.399344 0.429167 0.434339 0.492158 0.458839 0.510533 0.465833 0.505283 0.467583 0.475100 0.436089 0.396358 0.422089 0.355675 0.387094 0.313679 0.385344 0.274313 0.371350 0.258562 0.336350 0.263813 0.322356 0.282183 0.318856 0.295308 diff --git a/datasets/pinganmajia/train/labels/订单1813297_4_7169541.txt b/datasets/pinganmajia/train/labels/订单1813297_4_7169541.txt new file mode 100644 index 0000000..6dc2332 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813297_4_7169541.txt @@ -0,0 +1 @@ +4 0.003900 0.324184 0.070394 0.265130 0.194618 0.244132 0.264618 0.261189 0.327604 0.305807 0.366100 0.366181 0.383600 0.442292 0.371354 0.479036 0.357350 0.548594 0.339861 0.605026 0.409850 0.723134 0.467593 0.825495 0.504340 0.998724 0.005648 0.997413 diff --git a/datasets/pinganmajia/train/labels/订单1813300_4_7169514.txt b/datasets/pinganmajia/train/labels/订单1813300_4_7169514.txt new file mode 100644 index 0000000..bd32cb8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813300_4_7169514.txt @@ -0,0 +1 @@ +4 0.994445 0.422589 0.931348 0.391096 0.883043 0.375349 0.849524 0.324164 0.844591 0.233612 0.838677 0.136502 0.808116 0.065633 0.757841 0.039391 0.683902 0.063011 0.648409 0.111567 0.627707 0.213929 0.622780 0.257240 0.613902 0.321542 0.588274 0.368782 0.572500 0.454091 0.536024 0.521015 0.467012 0.700804 0.460110 0.792670 0.478841 0.997394 1.000000 0.997394 1.000000 0.885357 diff --git a/datasets/pinganmajia/train/labels/订单1813303_4_7169815.txt b/datasets/pinganmajia/train/labels/订单1813303_4_7169815.txt new file mode 100644 index 0000000..cb43e25 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813303_4_7169815.txt @@ -0,0 +1 @@ +4 0.016224 0.164007 0.093215 0.131198 0.185954 0.111512 0.241947 0.143009 0.313688 0.196815 0.317186 0.282116 0.320687 0.322799 0.306690 0.404163 0.331186 0.436971 0.373182 0.465843 0.402927 0.556395 0.427423 0.690253 0.467670 0.768993 0.537659 0.973717 0.525412 0.999963 0.002227 0.999963 0.002227 0.388416 0.038971 0.383166 0.028472 0.363482 0.016224 0.333297 0.003976 0.303113 diff --git a/datasets/pinganmajia/train/labels/订单1813306_4_7169638.txt b/datasets/pinganmajia/train/labels/订单1813306_4_7169638.txt new file mode 100644 index 0000000..3cecc50 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813306_4_7169638.txt @@ -0,0 +1 @@ +4 0.984691 0.358289 0.937546 0.337289 0.853079 0.290041 0.838341 0.229680 0.824591 0.085320 0.798071 0.010515 0.425810 0.003959 0.428758 0.119443 0.431698 0.215237 0.440540 0.255918 0.465100 0.353031 0.445455 0.402907 0.341335 0.486897 0.298117 0.699495 0.302045 0.923897 0.323657 0.998701 0.991767 1.000000 1.000000 1.000000 1.000000 0.983258 diff --git a/datasets/pinganmajia/train/labels/订单1813309_4_7169673.txt b/datasets/pinganmajia/train/labels/订单1813309_4_7169673.txt new file mode 100644 index 0000000..58373ba --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813309_4_7169673.txt @@ -0,0 +1 @@ +4 0.185960 0.295250 0.129973 0.324120 0.101973 0.359550 0.080973 0.404170 0.072227 0.433040 0.121227 0.442230 0.133467 0.506530 0.129973 0.587900 0.159720 0.595770 0.184213 0.692890 0.166720 0.733570 0.196467 0.734880 0.226213 0.700760 0.233213 0.640390 0.231467 0.589210 0.248960 0.526220 0.259453 0.589210 0.292707 0.645640 0.292707 0.699450 0.296200 0.738820 0.332947 0.742760 0.332947 0.700760 0.332947 0.641710 0.325947 0.595770 0.332947 0.507850 0.320693 0.460600 0.317200 0.447480 0.387187 0.405490 0.369693 0.379240 0.334693 0.345120 0.297947 0.316250 0.259453 0.304440 0.261213 0.261130 0.240213 0.234880 0.199960 0.233570 0.180720 0.257190 0.178973 0.274250 diff --git a/datasets/pinganmajia/train/labels/订单1813311_4_7169665.txt b/datasets/pinganmajia/train/labels/订单1813311_4_7169665.txt new file mode 100644 index 0000000..f496549 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813311_4_7169665.txt @@ -0,0 +1 @@ +4 0.994363 0.489473 0.920866 0.457978 0.940114 0.425172 0.912124 0.401544 0.903382 0.328051 0.899869 0.259816 0.842141 0.212574 0.740654 0.208640 0.667157 0.221752 0.595408 0.269007 0.574412 0.314939 0.537680 0.400233 0.546422 0.486850 0.576160 0.547218 0.483431 0.603652 0.458938 0.657451 0.479935 0.716507 0.411683 0.897610 0.401193 0.981605 0.401193 0.985539 0.996111 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813312_4_7169693.txt b/datasets/pinganmajia/train/labels/订单1813312_4_7169693.txt new file mode 100644 index 0000000..9acd83e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813312_4_7169693.txt @@ -0,0 +1 @@ +4 1.000000 0.241797 0.951299 0.244118 0.958186 0.219183 0.969013 0.169314 0.962126 0.131258 0.967047 0.063015 0.638309 0.007900 0.644210 0.085327 0.667837 0.187688 0.677678 0.221814 0.723940 0.368791 0.666850 0.426536 0.636336 0.576144 0.619608 0.673252 0.631415 0.734935 0.634369 0.850417 0.613701 0.998717 0.998542 0.997402 1.000000 0.857557 diff --git a/datasets/pinganmajia/train/labels/订单1813313_4_7169842.txt b/datasets/pinganmajia/train/labels/订单1813313_4_7169842.txt new file mode 100644 index 0000000..365ae55 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813313_4_7169842.txt @@ -0,0 +1 @@ +4 0.373115 0.339939 0.355615 0.351752 0.317117 0.364867 0.285615 0.423924 0.278620 0.510543 0.289126 0.577469 0.299617 0.595840 0.317117 0.595840 0.327609 0.594529 0.329372 0.653586 0.341612 0.692951 0.332869 0.761199 0.313620 0.811066 0.313620 0.828125 0.339863 0.809754 0.373115 0.784816 0.409850 0.683770 0.418607 0.633904 0.429098 0.704764 0.425601 0.787449 0.425601 0.836004 0.448347 0.842561 0.476352 0.828125 0.474590 0.780881 0.492090 0.707387 0.504344 0.647029 0.500847 0.605031 0.534085 0.589283 0.563839 0.540727 0.563839 0.471168 0.548087 0.410799 0.535833 0.367500 0.486844 0.356998 0.465847 0.334693 0.432596 0.266445 0.387104 0.271691 0.373115 0.296629 diff --git a/datasets/pinganmajia/train/labels/订单1813314_4_7169664.txt b/datasets/pinganmajia/train/labels/订单1813314_4_7169664.txt new file mode 100644 index 0000000..1a47740 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813314_4_7169664.txt @@ -0,0 +1 @@ +4 0.754661 0.353008 0.751172 0.305762 0.714427 0.296582 0.686432 0.303145 0.682930 0.335947 0.688177 0.359570 0.661927 0.380566 0.642682 0.430439 0.623437 0.488184 0.626940 0.518359 0.616432 0.548545 0.647930 0.535420 0.688177 0.580039 0.693424 0.614160 0.691680 0.666660 0.668932 0.692900 0.637435 0.704717 0.688177 0.717842 0.728424 0.715215 0.719674 0.733584 0.707422 0.744082 0.759922 0.758525 0.775664 0.736211 0.780911 0.666660 0.773919 0.591855 0.798411 0.541982 0.817656 0.481621 0.819414 0.418623 0.800156 0.383193 0.773919 0.363506 diff --git a/datasets/pinganmajia/train/labels/订单1813315_4_7169807.txt b/datasets/pinganmajia/train/labels/订单1813315_4_7169807.txt new file mode 100644 index 0000000..84cfbed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813315_4_7169807.txt @@ -0,0 +1 @@ +4 0.691447 0.447519 0.624514 0.467205 0.585144 0.521006 0.557587 0.597122 0.531010 0.664051 0.500500 0.734917 0.468019 0.824160 0.484750 0.943577 0.495577 0.998699 0.994543 1.000000 0.998534 1.000000 1.000000 0.846891 1.000000 0.485045 0.929635 0.447519 0.885341 0.380590 0.878452 0.287410 0.896168 0.199487 0.879437 0.127308 0.864673 0.065628 0.831207 0.026256 0.788885 0.001321 0.682587 0.031506 0.658966 0.108936 0.632389 0.175865 0.633375 0.246731 0.644202 0.324160 0.651091 0.387147 0.669793 0.408147 diff --git a/datasets/pinganmajia/train/labels/订单1813316_4_7169786.txt b/datasets/pinganmajia/train/labels/订单1813316_4_7169786.txt new file mode 100644 index 0000000..cc66b6a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813316_4_7169786.txt @@ -0,0 +1 @@ +4 0.996000 0.531510 0.957500 0.510510 0.954000 0.471144 0.952256 0.405529 0.945256 0.329413 0.887513 0.282163 0.763269 0.267731 0.637295 0.299231 0.604038 0.368779 0.602295 0.515760 0.640795 0.570885 0.661782 0.623375 0.572551 0.720490 0.539308 0.778231 0.521808 0.849096 0.534051 0.918654 0.553295 0.958019 0.518308 0.998702 0.992167 1.000000 0.997744 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813318_4_7169728.txt b/datasets/pinganmajia/train/labels/订单1813318_4_7169728.txt new file mode 100644 index 0000000..8736f69 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813318_4_7169728.txt @@ -0,0 +1 @@ +4 0.012729 0.082647 0.082729 0.056409 0.210458 0.047218 0.306699 0.066900 0.378448 0.144326 0.397696 0.221752 0.402941 0.307059 0.401193 0.368738 0.457190 0.430417 0.546422 0.568211 0.591912 0.732255 0.612908 0.881863 0.602418 0.902855 0.612908 0.984228 0.618170 0.999975 0.003987 0.999975 0.000490 0.362181 0.010980 0.349056 diff --git a/datasets/pinganmajia/train/labels/订单1813319_4_7169705.txt b/datasets/pinganmajia/train/labels/订单1813319_4_7169705.txt new file mode 100644 index 0000000..44fc975 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813319_4_7169705.txt @@ -0,0 +1 @@ +4 0.009284 0.095833 0.082487 0.043343 0.197513 0.015775 0.300352 0.040716 0.390990 0.124706 0.401445 0.196882 0.385755 0.271686 0.364844 0.363549 0.408411 0.381922 0.380521 0.459353 0.425846 0.576147 0.464193 0.712627 0.502539 0.994784 0.000000 0.996088 0.000000 0.784471 0.005794 0.364863 0.061562 0.330735 0.038906 0.304490 0.012760 0.257245 0.002305 0.245441 diff --git a/datasets/pinganmajia/train/labels/订单1813326_4_7169877.txt b/datasets/pinganmajia/train/labels/订单1813326_4_7169877.txt new file mode 100644 index 0000000..ed189d4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813326_4_7169877.txt @@ -0,0 +1 @@ +4 0.003987 0.566900 0.023235 0.536716 0.033742 0.492096 0.045980 0.446164 0.047729 0.404167 0.070474 0.328051 0.124722 0.266373 0.224461 0.236189 0.315458 0.251936 0.380196 0.292623 0.416944 0.346434 0.418693 0.430417 0.434428 0.506532 0.481683 0.578713 0.500931 0.610208 0.560425 0.683701 0.588415 0.770319 0.626912 0.994718 0.005735 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813327_4_7169909.txt b/datasets/pinganmajia/train/labels/订单1813327_4_7169909.txt new file mode 100644 index 0000000..0b31c64 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813327_4_7169909.txt @@ -0,0 +1 @@ +4 0.266484 0.433066 0.203490 0.461934 0.185990 0.515742 0.168490 0.582666 0.180742 0.681094 0.203490 0.704717 0.226237 0.704717 0.240234 0.695527 0.264727 0.772959 0.268229 0.849072 0.266484 0.901563 0.255977 0.940937 0.262982 0.952744 0.287474 0.944873 0.304974 0.923877 0.334727 0.908125 0.327721 0.881885 0.331224 0.825449 0.338216 0.728340 0.352214 0.816260 0.353971 0.893691 0.373216 0.918623 0.383711 0.948809 0.420456 0.944873 0.409961 0.906816 0.423958 0.834639 0.415208 0.775586 0.413464 0.702090 0.444961 0.671904 0.464206 0.646973 0.453711 0.538047 0.432708 0.493428 0.409961 0.448809 0.343464 0.388437 0.317227 0.356943 0.269974 0.359570 0.261224 0.381885 0.262982 0.405498 diff --git a/datasets/pinganmajia/train/labels/订单1813328_4_7169851.txt b/datasets/pinganmajia/train/labels/订单1813328_4_7169851.txt new file mode 100644 index 0000000..60d57fe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813328_4_7169851.txt @@ -0,0 +1 @@ +4 0.646124 0.300468 0.614627 0.310972 0.603799 0.335906 0.591990 0.355592 0.591990 0.396272 0.575258 0.465826 0.580175 0.583933 0.581162 0.631177 0.593958 0.645614 0.600844 0.642990 0.608717 0.726981 0.618564 0.820154 0.612659 0.884459 0.586080 0.926455 0.588048 0.946140 0.603799 0.956637 0.644150 0.930395 0.660883 0.904145 0.662856 0.849028 0.664825 0.765037 0.669742 0.716484 0.678602 0.779474 0.683525 0.864773 0.679583 0.921206 0.676634 0.963202 0.683525 0.993385 0.717971 0.997325 0.718958 0.952705 0.726831 0.901520 0.743564 0.673173 0.764232 0.666615 0.767182 0.633808 0.777029 0.608867 0.802615 0.517010 0.805570 0.421206 0.797697 0.372654 0.781946 0.325409 0.777029 0.295219 0.736672 0.284722 0.723876 0.276849 0.731749 0.221732 0.720927 0.188925 0.691398 0.165300 0.668761 0.183677 0.658914 0.225665 0.650060 0.272909 diff --git a/datasets/pinganmajia/train/labels/订单1813330_4_7169916.txt b/datasets/pinganmajia/train/labels/订单1813330_4_7169916.txt new file mode 100644 index 0000000..792e7c5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813330_4_7169916.txt @@ -0,0 +1 @@ +4 0.994608 0.640449 0.970000 0.618137 0.950313 0.585327 0.885355 0.542018 0.827286 0.506585 0.702286 0.418660 0.699332 0.374044 0.707206 0.318922 0.719013 0.253309 0.700313 0.148317 0.629449 0.080082 0.567439 0.087949 0.517243 0.129951 0.474920 0.202124 0.479841 0.291364 0.493621 0.370106 0.528070 0.480343 0.456219 0.572206 0.433585 0.657508 0.434565 0.755931 0.447365 0.902917 0.446379 0.997402 0.998542 0.997402 diff --git a/datasets/pinganmajia/train/labels/订单1813331_4_7169901.txt b/datasets/pinganmajia/train/labels/订单1813331_4_7169901.txt new file mode 100644 index 0000000..0fb0bc2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813331_4_7169901.txt @@ -0,0 +1 @@ +4 0.002239 0.414669 0.031977 0.371360 0.038987 0.307059 0.005735 0.291311 0.000000 0.190172 0.000000 0.168395 0.031977 0.179767 0.075735 0.090527 0.184216 0.010466 0.348693 0.002598 0.432680 0.056409 0.499183 0.132525 0.485180 0.269007 0.465931 0.326740 0.397696 0.410735 0.364444 0.472414 0.394183 0.618088 0.415180 0.748002 0.423938 0.847745 0.423938 0.952733 0.425686 0.988162 0.443186 0.999975 0.002239 0.992096 diff --git a/datasets/pinganmajia/train/labels/订单1813332_4_7169940.txt b/datasets/pinganmajia/train/labels/订单1813332_4_7169940.txt new file mode 100644 index 0000000..28ed57c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813332_4_7169940.txt @@ -0,0 +1 @@ +4 0.660163 0.013100 0.562173 0.083958 0.530670 0.199449 0.549918 0.267684 0.556912 0.331998 0.583170 0.394988 0.532418 0.471103 0.436176 0.556409 0.383693 0.608897 0.231454 0.779498 0.173725 0.843799 0.173725 0.896299 0.227958 0.922549 0.254199 0.975037 0.255964 0.994718 1.000000 0.997328 1.000000 0.530123 0.997859 0.379240 1.000000 0.362414 1.000000 0.350147 0.990866 0.339865 1.000000 0.314424 1.000000 0.210931 0.994363 0.039338 0.856127 0.010466 0.675899 0.005221 diff --git a/datasets/pinganmajia/train/labels/订单1813333_4_7170013.txt b/datasets/pinganmajia/train/labels/订单1813333_4_7170013.txt new file mode 100644 index 0000000..a48f6ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813333_4_7170013.txt @@ -0,0 +1 @@ +4 0.991688 0.539341 0.914838 0.499963 0.865909 0.456659 0.895617 0.360866 0.914838 0.271622 0.893864 0.167951 0.823994 0.089207 0.729659 0.073463 0.630081 0.077390 0.533994 0.129890 0.509545 0.202073 0.481591 0.296561 0.490325 0.387110 0.499058 0.427793 0.348815 0.502598 0.233523 0.610207 0.151412 0.742744 0.139188 0.877915 0.132208 0.985537 0.219545 0.997341 0.237013 0.913354 0.284188 0.787366 0.306899 0.883171 0.284188 0.992098 0.995195 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1813336_4_7169964.txt b/datasets/pinganmajia/train/labels/订单1813336_4_7169964.txt new file mode 100644 index 0000000..21c4cdb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813336_4_7169964.txt @@ -0,0 +1 @@ +4 0.000000 0.385637 0.037161 0.366176 0.094687 0.360922 0.113854 0.343863 0.077253 0.316304 0.052852 0.232314 0.042396 0.131265 0.078997 0.078775 0.211458 0.053833 0.371810 0.076147 0.451992 0.115520 0.485104 0.190324 0.465924 0.271686 0.429323 0.346490 0.404922 0.391108 0.364844 0.443598 0.399701 0.468539 0.417122 0.519716 0.425846 0.589275 0.439792 0.721814 0.448503 0.866176 0.445013 0.998716 0.009427 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813338_4_7170033.txt b/datasets/pinganmajia/train/labels/订单1813338_4_7170033.txt new file mode 100644 index 0000000..544b8dd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813338_4_7170033.txt @@ -0,0 +1 @@ +4 0.007513 0.371377 0.088008 0.364824 0.065260 0.321514 0.040755 0.272959 0.060000 0.241465 0.091497 0.238838 0.110755 0.152227 0.164987 0.106289 0.266484 0.072168 0.413464 0.082666 0.486953 0.141719 0.518451 0.251963 0.513203 0.350381 0.504453 0.409443 0.493945 0.433066 0.406458 0.490801 0.448451 0.548545 0.495703 0.688965 0.534193 0.759834 0.542943 0.872695 0.551693 0.969805 0.523698 0.997363 0.000000 0.996064 0.000000 0.818320 diff --git a/datasets/pinganmajia/train/labels/订单1813339_4_7169991.txt b/datasets/pinganmajia/train/labels/订单1813339_4_7169991.txt new file mode 100644 index 0000000..0637c4d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813339_4_7169991.txt @@ -0,0 +1 @@ +4 0.795781 0.007896 0.764281 0.056448 0.752477 0.160125 0.756406 0.282167 0.767234 0.335979 0.795781 0.387156 0.734758 0.426521 0.667828 0.553823 0.590070 0.786104 0.598930 0.838604 0.606805 0.892406 0.589086 0.996083 0.995820 1.000000 0.997555 1.000000 0.998539 0.288729 0.994602 0.009198 diff --git a/datasets/pinganmajia/train/labels/订单1813340_4_7169967.txt b/datasets/pinganmajia/train/labels/订单1813340_4_7169967.txt new file mode 100644 index 0000000..fb2ccb2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813340_4_7169967.txt @@ -0,0 +1 @@ +4 0.003900 0.237569 0.086134 0.212630 0.224375 0.199514 0.329352 0.238880 0.373102 0.301875 0.371354 0.416050 0.360856 0.439670 0.329352 0.503976 0.257616 0.576155 0.308356 0.678516 0.404595 0.855677 0.446597 0.994783 0.000000 0.998715 0.000000 0.802691 diff --git a/datasets/pinganmajia/train/labels/订单1813341_4_7169999.txt b/datasets/pinganmajia/train/labels/订单1813341_4_7169999.txt new file mode 100644 index 0000000..30f9baf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813341_4_7169999.txt @@ -0,0 +1 @@ +4 0.004675 0.513085 0.025633 0.489463 0.002922 0.480280 0.000000 0.443451 -0.000000 0.345073 0.002922 0.310988 0.090276 0.253244 0.209058 0.242744 0.315633 0.356927 0.319123 0.429098 0.312143 0.482902 0.257987 0.559024 0.233523 0.581329 0.278945 0.610207 0.301656 0.644329 0.277192 0.669256 0.355812 0.790000 0.387256 0.919915 0.416948 0.990780 0.002922 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1813342_4_7170024.txt b/datasets/pinganmajia/train/labels/订单1813342_4_7170024.txt new file mode 100644 index 0000000..5bfeb33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813342_4_7170024.txt @@ -0,0 +1 @@ +4 0.006404 0.353026 0.045774 0.332032 0.023139 0.237545 0.002466 0.191609 0.000000 0.099455 0.000000 0.079878 0.021168 0.014449 0.192428 0.003949 0.240659 0.108936 0.252466 0.182423 0.246563 0.265103 0.259361 0.362218 0.336130 0.391083 0.402077 0.459327 0.421760 0.532821 0.467034 0.803160 0.474909 0.906833 0.467034 0.963263 0.469005 0.985577 0.469990 0.998699 0.002466 0.998699 diff --git a/datasets/pinganmajia/train/labels/订单1813343_4_7169993.txt b/datasets/pinganmajia/train/labels/订单1813343_4_7169993.txt new file mode 100644 index 0000000..a889bba --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813343_4_7169993.txt @@ -0,0 +1 @@ +4 0.997548 0.703423 0.940462 0.664051 0.807587 0.565628 0.800697 0.523635 0.800697 0.455391 0.805620 0.406833 0.801683 0.324160 0.766250 0.166679 0.702269 0.122058 0.617625 0.124679 0.538885 0.175865 0.483769 0.261167 0.471957 0.438333 0.475894 0.526256 0.381404 0.670615 0.349909 0.736231 0.311524 0.835968 0.290856 0.971141 0.291837 1.000000 0.293712 1.000000 0.999514 0.996071 diff --git a/datasets/pinganmajia/train/labels/订单1813344_4_7170043.txt b/datasets/pinganmajia/train/labels/订单1813344_4_7170043.txt new file mode 100644 index 0000000..fa054af --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813344_4_7170043.txt @@ -0,0 +1 @@ +4 0.000000 0.310269 0.040648 0.292691 0.056389 0.262500 0.045891 0.199514 0.045891 0.049905 0.061644 0.001345 0.458843 0.009219 0.507836 0.089271 0.499086 0.160139 0.478090 0.228385 0.453588 0.376675 0.534086 0.421293 0.511331 0.496102 0.570822 0.652266 0.637315 1.000000 0.619907 1.000000 0.002153 0.998724 -0.000000 0.788108 diff --git a/datasets/pinganmajia/train/labels/订单1813345_4_7170088.txt b/datasets/pinganmajia/train/labels/订单1813345_4_7170088.txt new file mode 100644 index 0000000..dfd7197 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813345_4_7170088.txt @@ -0,0 +1 @@ +4 0.003900 0.065651 0.135127 0.052526 0.215625 0.076155 0.290856 0.156207 0.311863 0.232318 0.254120 0.448854 0.287361 0.502665 0.350359 0.572214 0.378345 0.629957 0.369606 0.729696 0.388854 0.832057 0.464086 0.997413 0.003900 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1813346_4_7170014.txt b/datasets/pinganmajia/train/labels/订单1813346_4_7170014.txt new file mode 100644 index 0000000..c8f7cf0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813346_4_7170014.txt @@ -0,0 +1 @@ +4 0.999500 0.481644 0.962756 0.451462 0.983744 0.412087 0.978500 0.364846 0.947000 0.360904 0.948756 0.250673 0.877013 0.199490 0.756282 0.161433 0.661782 0.186365 0.595295 0.215240 0.595295 0.262481 0.567295 0.397654 0.579551 0.511827 0.544551 0.591875 0.465808 0.682433 0.443064 0.867471 0.401064 0.997394 0.997744 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1813348_4_7170159.txt b/datasets/pinganmajia/train/labels/订单1813348_4_7170159.txt new file mode 100644 index 0000000..86d8799 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813348_4_7170159.txt @@ -0,0 +1 @@ +4 0.009144 0.221817 0.115878 0.216567 0.194622 0.240192 0.261111 0.312371 0.322356 0.440979 0.339850 0.519717 0.523578 0.614204 0.625067 0.700821 0.723056 0.813679 0.807044 0.998721 0.000394 0.997408 diff --git a/datasets/pinganmajia/train/labels/订单1813351_4_7170172.txt b/datasets/pinganmajia/train/labels/订单1813351_4_7170172.txt new file mode 100644 index 0000000..a2687be --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813351_4_7170172.txt @@ -0,0 +1 @@ +4 0.008227 0.551165 0.067835 0.509174 0.129206 0.467176 0.125701 0.417307 0.104660 0.400247 0.109918 0.349066 0.127454 0.325448 0.118691 0.233580 0.144990 0.173218 0.257206 0.145656 0.379938 0.123349 0.478134 0.177153 0.476381 0.233580 0.495670 0.311011 0.474629 0.410748 0.453588 0.478989 0.392216 0.527546 0.429041 0.604977 0.502680 0.805764 0.495670 0.943557 0.502680 0.997361 0.002969 0.997361 diff --git a/datasets/pinganmajia/train/labels/订单1813352_4_7170123.txt b/datasets/pinganmajia/train/labels/订单1813352_4_7170123.txt new file mode 100644 index 0000000..2a1bc9d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813352_4_7170123.txt @@ -0,0 +1 @@ +4 0.632188 0.404189 0.570937 0.433066 0.539440 0.498682 0.520195 0.601045 0.539440 0.721777 0.563945 0.753271 0.583190 0.763770 0.569193 0.736211 0.591940 0.749336 0.584935 0.719150 0.593685 0.824141 0.618190 0.968496 0.626940 0.992119 0.710924 0.996055 0.710924 0.879258 0.717917 0.829385 0.738919 0.897627 0.763411 0.993428 0.861406 0.959307 0.850911 0.929121 0.850911 0.814951 0.850911 0.751963 0.884154 0.723086 0.912148 0.616787 0.885898 0.472432 0.842161 0.422559 0.752917 0.398945 0.738919 0.389756 0.735417 0.341201 0.721419 0.304453 0.667174 0.276895 0.626940 0.290020 0.616432 0.321514 0.618190 0.370068 diff --git a/datasets/pinganmajia/train/labels/订单1813353_4_7170139.txt b/datasets/pinganmajia/train/labels/订单1813353_4_7170139.txt new file mode 100644 index 0000000..0ec2d4b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813353_4_7170139.txt @@ -0,0 +1 @@ +4 0.002235 0.502589 0.054722 0.496032 0.052976 0.448790 0.058228 0.408105 0.066971 0.328046 0.138717 0.288681 0.243704 0.268998 0.348690 0.287371 0.416931 0.350357 0.416931 0.450099 0.395926 0.509157 0.402923 0.531458 0.509669 0.633819 0.534167 0.702063 0.618148 0.843800 0.618148 0.925159 0.583161 0.955347 0.527169 0.999970 0.005728 0.996032 diff --git a/datasets/pinganmajia/train/labels/订单1813354_4_7170289.txt b/datasets/pinganmajia/train/labels/订单1813354_4_7170289.txt new file mode 100644 index 0000000..4a53bac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813354_4_7170289.txt @@ -0,0 +1 @@ +4 0.594000 0.429138 0.542820 0.465885 0.518212 0.493442 0.466048 0.501317 0.472938 0.515753 0.463094 0.557747 0.438488 0.602369 0.389276 0.691606 0.338094 0.790032 0.319394 0.996067 0.998611 1.000000 0.999512 1.000000 0.992623 0.715228 0.936519 0.662734 0.926678 0.586619 0.894197 0.536750 0.859748 0.488196 0.783962 0.409455 0.786913 0.343837 0.793803 0.262471 0.760339 0.177170 0.717031 0.153548 0.661913 0.169298 0.619591 0.207356 0.600889 0.295282 0.588094 0.368772 diff --git a/datasets/pinganmajia/train/labels/订单1813356_4_7170202.txt b/datasets/pinganmajia/train/labels/订单1813356_4_7170202.txt new file mode 100644 index 0000000..418a6a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813356_4_7170202.txt @@ -0,0 +1 @@ +4 1.000000 0.454712 0.940462 0.438333 0.935538 0.387147 0.916837 0.341218 0.878452 0.301846 0.850894 0.263788 0.834163 0.190301 0.809553 0.080064 0.764279 0.049878 0.704240 0.060378 0.625500 0.240167 0.624514 0.283474 0.629437 0.360904 0.619596 0.425205 0.606798 0.496071 0.564476 0.526256 0.522154 0.625994 0.490659 0.694237 0.425697 0.826782 0.418808 0.919955 0.436519 1.000000 0.999514 1.000000 1.000000 0.910686 diff --git a/datasets/pinganmajia/train/labels/订单1813357_4_7170200.txt b/datasets/pinganmajia/train/labels/订单1813357_4_7170200.txt new file mode 100644 index 0000000..dfbfe8c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813357_4_7170200.txt @@ -0,0 +1 @@ +4 0.590057 0.236216 0.525920 0.257212 0.532023 0.307080 0.544239 0.324141 0.516750 0.346450 0.486216 0.419941 0.455670 0.498682 0.449557 0.535430 0.458727 0.560361 0.504534 0.540679 0.510648 0.523618 0.559511 0.548550 0.605330 0.657476 0.657250 0.723091 0.614489 0.793960 0.638920 0.814956 0.736659 0.807080 0.782466 0.776899 0.770250 0.716533 0.767193 0.599731 0.819114 0.478999 0.831330 0.423882 0.834386 0.351699 0.748875 0.335952 0.678625 0.320205 0.669466 0.265088 0.663352 0.240151 0.614489 0.232280 diff --git a/datasets/pinganmajia/train/labels/订单1813358_4_7170108.txt b/datasets/pinganmajia/train/labels/订单1813358_4_7170108.txt new file mode 100644 index 0000000..a59c0c5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813358_4_7170108.txt @@ -0,0 +1 @@ +4 0.185964 0.007843 0.250703 0.059032 0.301454 0.128578 0.290948 0.177132 0.285703 0.262439 0.261209 0.318873 0.227958 0.404167 0.210458 0.439608 0.219216 0.480294 0.315458 0.530159 0.339951 0.640392 0.373186 0.713885 0.479935 0.918603 0.474673 0.998664 0.002239 0.997353 0.000490 0.007843 diff --git a/datasets/pinganmajia/train/labels/订单1813360_4_7170186.txt b/datasets/pinganmajia/train/labels/订单1813360_4_7170186.txt new file mode 100644 index 0000000..b56b009 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813360_4_7170186.txt @@ -0,0 +1 @@ +4 0.297856 0.038092 0.178872 0.073525 0.096633 0.149638 0.070383 0.244129 0.073883 0.279562 0.040639 0.266437 0.028389 0.291371 0.040639 0.354363 0.010894 0.370113 0.000394 0.623392 0.005644 1.000000 0.023817 1.000000 0.730050 0.998721 0.761550 0.866175 0.721306 0.706071 0.674061 0.629954 0.562072 0.560400 0.542828 0.526279 0.586572 0.412108 0.612817 0.372737 0.604067 0.358300 0.614567 0.207383 0.563822 0.127329 0.518328 0.065650 0.441339 0.038092 0.310106 0.035467 diff --git a/datasets/pinganmajia/train/labels/订单1813361_4_7170210.txt b/datasets/pinganmajia/train/labels/订单1813361_4_7170210.txt new file mode 100644 index 0000000..a0bf2c3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813361_4_7170210.txt @@ -0,0 +1 @@ +4 0.014493 0.272941 0.017990 0.213885 0.072222 0.173199 0.187712 0.164020 0.287451 0.190257 0.315458 0.238824 0.322451 0.320184 0.322451 0.400233 0.299706 0.446164 0.355703 0.482917 0.392435 0.557721 0.425686 0.628578 0.432680 0.720441 0.455425 0.786066 0.465931 0.997353 0.003987 0.998664 0.007484 0.410735 0.016242 0.391054 0.021487 0.349056 diff --git a/datasets/pinganmajia/train/labels/订单1813362_4_7170217.txt b/datasets/pinganmajia/train/labels/订单1813362_4_7170217.txt new file mode 100644 index 0000000..78bb04b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813362_4_7170217.txt @@ -0,0 +1 @@ +4 0.996000 0.229673 0.896256 0.179808 0.749282 0.183740 0.595295 0.279538 0.602295 0.351721 0.595295 0.444894 0.635538 0.501327 0.572551 0.584000 0.506051 0.664058 0.458808 0.787413 0.490308 0.835971 0.523551 0.893712 0.523551 0.998702 0.999500 0.998702 0.997744 0.486894 0.969744 0.463269 0.961000 0.435712 0.999500 0.402904 1.000000 0.395519 1.000000 0.299490 diff --git a/datasets/pinganmajia/train/labels/订单1813363_4_7170313.txt b/datasets/pinganmajia/train/labels/订单1813363_4_7170313.txt new file mode 100644 index 0000000..0abc35f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813363_4_7170313.txt @@ -0,0 +1 @@ +4 0.618190 0.388437 0.590195 0.409443 0.527201 0.433066 0.497448 0.534111 0.492201 0.678467 0.502695 0.727021 0.518451 0.733584 0.542943 0.699463 0.560443 0.826758 0.584935 0.959307 0.602435 0.998682 0.660182 0.997363 0.658424 0.909443 0.667174 0.821514 0.686432 0.881885 0.693424 0.993428 0.758164 0.984238 0.754674 0.921250 0.772161 0.868760 0.777422 0.737520 0.815911 0.740146 0.857904 0.691592 0.873659 0.654844 0.863151 0.578730 0.852656 0.513115 0.826406 0.444873 0.796667 0.416006 0.721419 0.397627 0.712669 0.384502 0.703919 0.312324 0.665430 0.290020 0.625182 0.297891 0.611185 0.324141 0.604193 0.343818 0.612930 0.368760 diff --git a/datasets/pinganmajia/train/labels/订单1813364_4_7170227.txt b/datasets/pinganmajia/train/labels/订单1813364_4_7170227.txt new file mode 100644 index 0000000..62c3853 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813364_4_7170227.txt @@ -0,0 +1 @@ +4 0.996575 0.400286 0.937518 0.363546 0.895196 0.321552 0.842047 0.293987 0.840080 0.254616 0.857794 0.224436 0.863701 0.169314 0.852874 0.133881 0.819412 0.010523 0.616654 0.001340 0.606814 0.040711 0.619608 0.179820 0.634369 0.215253 0.658977 0.349109 0.612714 0.400286 0.550711 0.526275 0.509369 0.681127 0.508388 0.997402 0.992672 1.000000 0.997561 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813365_4_7170218.txt b/datasets/pinganmajia/train/labels/订单1813365_4_7170218.txt new file mode 100644 index 0000000..3c0babc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813365_4_7170218.txt @@ -0,0 +1 @@ +4 0.999514 0.614186 0.967034 0.564314 0.914870 0.505263 0.862707 0.467205 0.872548 0.419955 0.883375 0.337282 0.893216 0.225731 0.868611 0.145679 0.821365 0.084000 0.755423 0.084000 0.695380 0.103686 0.656995 0.149615 0.619596 0.284788 0.614673 0.349090 0.611721 0.404212 0.534947 0.511821 0.492625 0.526256 0.442428 0.629929 0.399120 0.738853 0.376486 0.868776 0.409947 0.998699 1.000000 0.998699 1.000000 0.708814 diff --git a/datasets/pinganmajia/train/labels/订单1813366_4_7170199.txt b/datasets/pinganmajia/train/labels/订单1813366_4_7170199.txt new file mode 100644 index 0000000..5229596 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813366_4_7170199.txt @@ -0,0 +1 @@ +4 0.999608 0.077402 0.906879 0.055086 0.794886 0.045907 0.688154 0.093150 0.642663 0.143015 0.628660 0.216507 0.633905 0.297868 0.619918 0.389743 0.628660 0.457978 0.525425 0.551152 0.427435 0.691569 0.322451 0.851679 0.341699 0.989473 1.000000 0.998615 1.000000 0.481569 0.964624 0.451422 1.000000 0.441311 1.000000 0.157610 diff --git a/datasets/pinganmajia/train/labels/订单1813367_4_7170345.txt b/datasets/pinganmajia/train/labels/订单1813367_4_7170345.txt new file mode 100644 index 0000000..720184c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813367_4_7170345.txt @@ -0,0 +1 @@ +4 1.000000 0.166703 0.863137 0.173199 0.814134 0.169265 0.780899 0.099706 0.744150 0.055086 0.686405 0.007843 0.525425 0.009154 0.472925 0.047218 0.429183 0.145637 0.471176 0.262439 0.523676 0.317561 0.530670 0.339865 0.432680 0.465858 0.446683 0.606275 0.457190 0.679767 0.472925 0.711262 0.490425 0.748002 0.541176 0.800502 0.616405 0.824118 0.653154 0.831998 0.684657 0.902855 0.763399 0.954044 0.801895 0.996042 0.999608 0.997353 1.000000 0.814191 diff --git a/datasets/pinganmajia/train/labels/订单1813368_4_7170434.txt b/datasets/pinganmajia/train/labels/订单1813368_4_7170434.txt new file mode 100644 index 0000000..9d37ed5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813368_4_7170434.txt @@ -0,0 +1 @@ +4 0.004626 0.085288 0.258150 0.089228 0.412585 0.111538 0.523306 0.164026 0.532054 0.232267 0.488340 0.332010 0.456286 0.387126 0.392190 0.440931 0.325170 0.494737 0.208612 0.540668 0.231918 0.648278 0.275633 0.721771 0.298939 0.820196 0.365959 0.998676 0.010463 0.998676 diff --git a/datasets/pinganmajia/train/labels/订单1813369_4_7170409.txt b/datasets/pinganmajia/train/labels/订单1813369_4_7170409.txt new file mode 100644 index 0000000..9b3750d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813369_4_7170409.txt @@ -0,0 +1 @@ +4 0.626940 0.291328 0.619935 0.312324 0.567448 0.326758 0.541198 0.422559 0.546445 0.488184 0.569193 0.522305 0.576185 0.598418 0.579688 0.653535 0.563945 0.685029 0.583190 0.694219 0.605938 0.678467 0.619935 0.665342 0.663685 0.690283 0.684674 0.691592 0.691680 0.673223 0.668932 0.643037 0.674180 0.586602 0.707422 0.515742 0.733672 0.488184 0.740664 0.393691 0.737174 0.332012 0.719674 0.317578 0.677682 0.295264 0.689922 0.258525 0.674180 0.228340 0.644427 0.234902 0.623437 0.257207 0.625182 0.278203 diff --git a/datasets/pinganmajia/train/labels/订单1813370_4_7170327.txt b/datasets/pinganmajia/train/labels/订单1813370_4_7170327.txt new file mode 100644 index 0000000..397c098 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813370_4_7170327.txt @@ -0,0 +1 @@ +4 0.215729 0.343818 0.191237 0.366133 0.145742 0.380566 0.100247 0.455371 0.091497 0.570859 0.112500 0.603662 0.133490 0.624658 0.124753 0.653535 0.178984 0.677158 0.194740 0.801826 0.156237 0.851699 0.168490 0.863506 0.210482 0.839883 0.248984 0.821514 0.257734 0.790020 0.255977 0.692900 0.273477 0.736211 0.273477 0.808389 0.296224 0.838574 0.322474 0.860879 0.341719 0.834639 0.336471 0.800518 0.334727 0.758525 0.334727 0.702090 0.345221 0.615479 0.387214 0.520986 0.367969 0.440937 0.343464 0.401562 0.299727 0.377939 0.310221 0.343818 0.306719 0.307080 0.262982 0.295264 0.247227 0.311016 0.226237 0.328076 diff --git a/datasets/pinganmajia/train/labels/订单1813371_4_7170297.txt b/datasets/pinganmajia/train/labels/订单1813371_4_7170297.txt new file mode 100644 index 0000000..7daab06 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813371_4_7170297.txt @@ -0,0 +1 @@ +4 0.485083 0.002658 0.541078 0.074838 0.562072 0.161450 0.555072 0.213942 0.492083 0.207383 0.451839 0.208696 0.401094 0.313679 0.383594 0.338617 0.329350 0.446229 0.271611 0.502658 0.238367 0.521029 0.245361 0.585333 0.254111 0.652263 0.259361 0.691633 0.313606 0.731004 0.336350 0.813679 0.374844 0.868800 0.350350 0.943604 0.276861 0.998721 0.003894 0.994783 0.003894 0.007908 diff --git a/datasets/pinganmajia/train/labels/订单1813372_4_7170347.txt b/datasets/pinganmajia/train/labels/订单1813372_4_7170347.txt new file mode 100644 index 0000000..b6fa2f9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813372_4_7170347.txt @@ -0,0 +1 @@ +4 0.007484 0.190257 0.066977 0.144326 0.154477 0.119400 0.250703 0.128578 0.357451 0.183701 0.395948 0.251936 0.401193 0.314939 0.420441 0.383174 0.420441 0.447475 0.392435 0.484228 0.453676 0.519657 0.560425 0.653517 0.679412 0.863493 0.591912 0.872672 0.612908 0.969792 0.628660 0.999975 0.005735 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813373_4_7170302.txt b/datasets/pinganmajia/train/labels/订单1813373_4_7170302.txt new file mode 100644 index 0000000..e81748a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813373_4_7170302.txt @@ -0,0 +1 @@ +4 0.654925 0.301819 0.614675 0.314944 0.591933 0.350375 0.591933 0.417306 0.611175 0.464550 0.625175 0.484237 0.630425 0.539356 0.633925 0.629906 0.661917 0.677150 0.660167 0.702081 0.689917 0.717831 0.684667 0.690275 0.679417 0.635156 0.684667 0.517044 0.702167 0.573475 0.698667 0.631219 0.698667 0.702081 0.728408 0.720456 0.717917 0.673213 0.731908 0.619406 0.745908 0.552475 0.765158 0.490800 0.800150 0.414681 0.784408 0.339881 0.766908 0.309694 0.733658 0.304444 0.745908 0.255887 0.717917 0.238831 0.646175 0.282137 diff --git a/datasets/pinganmajia/train/labels/订单1813374_4_7170358.txt b/datasets/pinganmajia/train/labels/订单1813374_4_7170358.txt new file mode 100644 index 0000000..d245403 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813374_4_7170358.txt @@ -0,0 +1 @@ +4 0.000394 0.408171 0.052889 0.404233 0.051139 0.370113 0.061639 0.328117 0.035389 0.307121 0.038889 0.249375 0.054639 0.211321 0.107128 0.145704 0.145628 0.114204 0.248861 0.078775 0.357350 0.110271 0.415094 0.158825 0.460589 0.210008 0.474583 0.307121 0.448339 0.374050 0.385344 0.475100 0.444839 0.519717 0.546328 0.611583 0.619817 0.828117 0.670550 1.000000 0.662156 1.000000 0.000394 0.997408 diff --git a/datasets/pinganmajia/train/labels/订单1813375_4_7170381.txt b/datasets/pinganmajia/train/labels/订单1813375_4_7170381.txt new file mode 100644 index 0000000..e31a29a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813375_4_7170381.txt @@ -0,0 +1 @@ +4 0.575742 0.006588 0.567018 0.035461 0.577474 0.072206 0.584453 0.095833 0.540872 0.108951 0.492070 0.161451 0.481615 0.221814 0.488594 0.337304 0.511250 0.355676 0.518216 0.387167 0.542617 0.392422 0.561797 0.476412 0.563542 0.553833 0.573997 0.560402 0.560052 0.594520 0.565273 0.608951 0.589674 0.603706 0.605365 0.587961 0.622799 0.568275 0.621055 0.513157 0.622799 0.426539 0.633255 0.481657 0.622799 0.543343 0.631510 0.570902 0.635000 0.608951 0.668112 0.619451 0.682057 0.574833 0.702969 0.540716 0.699492 0.471157 0.706458 0.374049 0.736094 0.376676 0.767461 0.330735 0.786628 0.244127 0.680312 0.084020 0.659401 0.026275 0.659401 0.007902 diff --git a/datasets/pinganmajia/train/labels/订单1813376_4_7170319.txt b/datasets/pinganmajia/train/labels/订单1813376_4_7170319.txt new file mode 100644 index 0000000..c5ef1b0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813376_4_7170319.txt @@ -0,0 +1 @@ +4 0.992500 0.161433 0.905013 0.116817 0.789526 0.115500 0.691538 0.173240 0.649538 0.324163 0.640795 0.380596 0.675782 0.454087 0.691538 0.490827 0.670538 0.545942 0.612795 0.605000 0.541051 0.771673 0.520051 0.860904 0.506051 0.997394 0.998359 1.000000 1.000000 1.000000 1.000000 0.880654 diff --git a/datasets/pinganmajia/train/labels/订单1813377_4_7170417.txt b/datasets/pinganmajia/train/labels/订单1813377_4_7170417.txt new file mode 100644 index 0000000..40ef390 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813377_4_7170417.txt @@ -0,0 +1 @@ +4 0.247534 0.314954 0.233755 0.337266 0.201274 0.358262 0.185527 0.419941 0.179619 0.538053 0.186509 0.580046 0.198320 0.611543 0.218008 0.625977 0.224897 0.624668 0.233755 0.742773 0.240645 0.839889 0.253442 0.891068 0.273125 0.902884 0.287891 0.872695 0.288872 0.835951 0.291826 0.664036 0.299702 0.679785 0.314463 0.730964 0.328242 0.803145 0.329229 0.841204 0.335132 0.867448 0.363677 0.868763 0.366631 0.830703 0.357769 0.706029 0.350879 0.608919 0.369580 0.461934 0.341040 0.345137 0.328242 0.333327 0.299702 0.313639 0.297729 0.275586 0.294780 0.240150 0.275093 0.227025 0.257378 0.238841 0.247534 0.269023 0.245566 0.299206 diff --git a/datasets/pinganmajia/train/labels/订单1813378_4_7170395.txt b/datasets/pinganmajia/train/labels/订单1813378_4_7170395.txt new file mode 100644 index 0000000..5c41df9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813378_4_7170395.txt @@ -0,0 +1 @@ +4 0.994608 0.433096 0.942439 0.398979 0.906023 0.385850 0.830239 0.325482 0.840080 0.271683 0.852874 0.246748 0.854841 0.195564 0.842047 0.126013 0.827286 0.009216 0.641262 0.001340 0.609761 0.063015 0.611734 0.177190 0.599920 0.223121 0.606814 0.312361 0.643229 0.392418 0.652089 0.406846 0.553664 0.465907 0.495588 0.602386 0.462126 0.696879 0.457206 0.803178 0.440472 0.904224 0.465080 0.994779 0.998542 0.998717 diff --git a/datasets/pinganmajia/train/labels/订单1813379_4_7170382.txt b/datasets/pinganmajia/train/labels/订单1813379_4_7170382.txt new file mode 100644 index 0000000..051d990 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813379_4_7170382.txt @@ -0,0 +1 @@ +4 0.996111 0.203382 0.877124 0.145637 0.731895 0.146961 0.609412 0.200760 0.581422 0.259816 0.581422 0.341176 0.581422 0.467169 0.605915 0.536716 0.553415 0.549841 0.422190 0.635147 0.364444 0.711262 0.322451 0.757194 0.187712 0.929105 0.147467 0.997353 0.992614 0.997353 0.999608 0.482917 0.976863 0.471103 1.000000 0.467022 1.000000 0.280895 diff --git a/datasets/pinganmajia/train/labels/订单1813380_4_7170491.txt b/datasets/pinganmajia/train/labels/订单1813380_4_7170491.txt new file mode 100644 index 0000000..0844920 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813380_4_7170491.txt @@ -0,0 +1 @@ +4 0.987269 0.106337 0.836794 0.102396 0.703808 0.116832 0.611076 0.212630 0.583079 0.265130 0.595324 0.349115 0.621574 0.442292 0.621574 0.490851 0.565579 0.564340 0.499086 0.643082 0.493831 0.731007 0.504340 0.797934 0.497338 0.887179 0.472836 0.969852 0.481586 0.998724 0.987025 1.000000 1.000000 1.000000 1.000000 0.918776 diff --git a/datasets/pinganmajia/train/labels/订单1813382_4_7170452.txt b/datasets/pinganmajia/train/labels/订单1813382_4_7170452.txt new file mode 100644 index 0000000..0b6c937 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813382_4_7170452.txt @@ -0,0 +1 @@ +4 0.003987 0.463223 0.063480 0.431728 0.115980 0.400233 0.126471 0.339865 0.142222 0.287377 0.166716 0.274252 0.210458 0.215196 0.273448 0.182390 0.359199 0.177132 0.453676 0.206005 0.478186 0.261127 0.476422 0.338554 0.455425 0.392365 0.411683 0.447475 0.339951 0.501287 0.325948 0.514412 0.394183 0.589216 0.416944 0.702071 0.444935 0.791311 0.488676 0.913358 0.514918 0.996042 0.000490 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813384_4_7170445.txt b/datasets/pinganmajia/train/labels/订单1813384_4_7170445.txt new file mode 100644 index 0000000..c29e6ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813384_4_7170445.txt @@ -0,0 +1 @@ +4 0.000490 0.360870 0.035490 0.337243 0.059984 0.303125 0.045980 0.278186 0.012745 0.245380 0.000000 0.202390 0.000000 0.195025 0.010980 0.167953 0.002239 0.093150 0.010980 0.010466 0.110719 0.003909 0.355703 0.009154 0.404690 0.057721 0.415180 0.166642 0.415180 0.228321 0.388938 0.312304 0.357451 0.376618 0.381944 0.452733 0.460686 0.629890 0.521928 0.746691 0.541176 0.929105 0.523676 0.993407 0.009232 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813388_4_7170545.txt b/datasets/pinganmajia/train/labels/订单1813388_4_7170545.txt new file mode 100644 index 0000000..50cdd9b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813388_4_7170545.txt @@ -0,0 +1 @@ +4 0.008403 0.336007 0.157023 0.353067 0.171788 0.313692 0.186554 0.270394 0.214115 0.225775 0.218047 0.175903 0.214115 0.137847 0.223950 0.115532 0.234783 0.061725 0.247578 0.002674 0.450330 0.047292 0.469028 0.191644 0.466076 0.245451 0.433602 0.313692 0.410964 0.357002 0.425729 0.410810 0.421788 0.473796 0.465095 0.519734 0.486745 0.601100 0.473950 0.745451 0.514306 0.796632 0.544818 0.951493 0.567431 1.000000 0.546849 1.000000 0.003481 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1813389_4_7170518.txt b/datasets/pinganmajia/train/labels/订单1813389_4_7170518.txt new file mode 100644 index 0000000..c026249 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813389_4_7170518.txt @@ -0,0 +1 @@ +4 0.004429 0.202113 0.052562 0.182433 0.051582 0.118124 0.041759 0.072196 0.047654 0.001330 0.423843 0.003959 0.404198 0.097134 0.385540 0.162742 0.359020 0.212619 0.418935 0.292670 0.447415 0.376660 0.456258 0.452773 0.467060 0.569567 0.494560 0.685052 0.504383 0.791351 0.431698 0.998701 0.002469 0.998701 diff --git a/datasets/pinganmajia/train/labels/订单1813390_4_7171588.txt b/datasets/pinganmajia/train/labels/订单1813390_4_7171588.txt new file mode 100644 index 0000000..1574994 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813390_4_7171588.txt @@ -0,0 +1 @@ +4 0.725090 0.007900 0.668660 0.049894 0.646348 0.145694 0.664722 0.225752 0.677851 0.305801 0.705408 0.388480 0.750025 0.426536 0.697533 0.521021 0.693595 0.636511 0.700155 0.742810 0.672598 0.849109 0.648979 0.994779 1.000000 0.998693 1.000000 0.185694 0.999371 0.122075 0.984935 0.030212 0.963938 0.003962 diff --git a/datasets/pinganmajia/train/labels/订单1813392_4_7170530.txt b/datasets/pinganmajia/train/labels/订单1813392_4_7170530.txt new file mode 100644 index 0000000..ce6b64a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813392_4_7170530.txt @@ -0,0 +1 @@ +4 0.988687 0.254603 0.937510 0.213923 0.887312 0.169301 0.883375 0.124679 0.871562 0.091872 0.850894 0.006571 0.677663 0.002635 0.653058 0.069564 0.655029 0.171929 0.647154 0.215231 0.633375 0.282160 0.615659 0.356968 0.630423 0.389776 0.602861 0.442269 0.514279 0.597122 0.457192 0.712609 0.455226 0.834654 0.519202 0.908147 0.500500 0.998699 0.995558 1.000000 0.999514 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813396_4_7170567.txt b/datasets/pinganmajia/train/labels/订单1813396_4_7170567.txt new file mode 100644 index 0000000..aab8101 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813396_4_7170567.txt @@ -0,0 +1 @@ +4 0.003900 0.253316 0.087882 0.258568 0.073889 0.225755 0.051146 0.210009 0.056389 0.171953 0.054641 0.122083 0.073889 0.107648 0.086134 0.047283 0.100139 0.006597 0.411597 0.007908 0.439595 0.059089 0.425590 0.111589 0.423843 0.202135 0.406343 0.266441 0.366100 0.346493 0.367847 0.402925 0.420347 0.433108 0.472836 0.557778 0.497338 0.786128 0.513079 0.908168 0.450093 0.845182 0.413345 0.925234 0.418600 0.990851 0.007396 0.996102 diff --git a/datasets/pinganmajia/train/labels/订单1813397_4_7170579.txt b/datasets/pinganmajia/train/labels/订单1813397_4_7170579.txt new file mode 100644 index 0000000..e2d9e1e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813397_4_7170579.txt @@ -0,0 +1 @@ +4 0.008375 0.219173 0.143216 0.258538 0.207192 0.259853 0.228846 0.187673 0.237707 0.097122 0.261327 0.011821 0.441447 0.015756 0.462115 0.086622 0.469005 0.157494 0.456207 0.227045 0.445380 0.303160 0.398139 0.375340 0.471957 0.463263 0.506404 0.532821 0.499514 0.607622 0.556601 0.875340 0.555620 0.919955 0.568413 0.997385 0.494596 0.993449 0.486721 0.937019 0.464082 0.919955 0.450303 0.960641 0.450303 0.988199 0.449317 0.997385 0.000317 1.000000 0.000000 1.000000 0.000000 0.937910 0.005423 0.708673 diff --git a/datasets/pinganmajia/train/labels/订单1813398_4_7170652.txt b/datasets/pinganmajia/train/labels/订单1813398_4_7170652.txt new file mode 100644 index 0000000..6e8d599 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813398_4_7170652.txt @@ -0,0 +1 @@ +4 0.020183 0.110244 0.109750 0.140429 0.214082 0.167987 0.265264 0.166679 0.270183 0.114186 0.283966 0.072186 0.294793 0.009199 0.477861 0.011821 0.486721 0.072186 0.483769 0.124679 0.469005 0.216545 0.435538 0.265103 0.467034 0.300538 0.484750 0.374026 0.510341 0.463263 0.501486 0.594500 0.513293 0.656179 0.517231 0.808410 0.531995 0.858276 0.536918 0.909462 0.526091 0.950141 0.517231 0.940955 0.504437 0.955391 0.513293 0.904212 0.493611 0.921269 0.475894 0.923897 0.493611 0.888462 0.486721 0.881897 0.489673 0.832032 0.479832 0.799224 0.465067 0.868776 0.459163 0.935705 0.434553 0.992135 0.060538 0.985577 0.060538 0.818910 0.034947 0.734917 0.027077 0.633872 0.003452 0.587936 diff --git a/datasets/pinganmajia/train/labels/订单1813400_4_7170595.txt b/datasets/pinganmajia/train/labels/订单1813400_4_7170595.txt new file mode 100644 index 0000000..102bafd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813400_4_7170595.txt @@ -0,0 +1 @@ +4 0.210482 0.213906 0.205234 0.241465 0.208737 0.267705 0.198242 0.295264 0.168490 0.312324 0.145742 0.328076 0.124753 0.363506 0.110755 0.463242 0.136992 0.517051 0.147500 0.543301 0.177240 0.548545 0.194740 0.603662 0.213984 0.650908 0.215742 0.723086 0.220990 0.746709 0.198242 0.774268 0.210482 0.788701 0.234987 0.783457 0.255977 0.767705 0.275234 0.753271 0.278724 0.721777 0.278724 0.673223 0.278724 0.612852 0.287474 0.666660 0.299727 0.719150 0.304974 0.748018 0.355716 0.776895 0.374961 0.766396 0.350469 0.729648 0.353971 0.669277 0.366211 0.562979 0.395964 0.583984 0.387214 0.536738 0.404714 0.510488 0.411706 0.425186 0.362721 0.326758 0.327721 0.300518 0.306719 0.269023 0.296224 0.229648 0.275234 0.200781 0.222734 0.204717 diff --git a/datasets/pinganmajia/train/labels/订单1813401_4_7170605.txt b/datasets/pinganmajia/train/labels/订单1813401_4_7170605.txt new file mode 100644 index 0000000..c730be9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813401_4_7170605.txt @@ -0,0 +1 @@ +4 0.006404 0.311032 0.090067 0.332032 0.181601 0.332032 0.198337 0.291346 0.201288 0.217859 0.213096 0.152244 0.233769 0.085314 0.276091 0.051192 0.359750 0.060378 0.391250 0.114186 0.405029 0.178487 0.406010 0.244103 0.401091 0.292660 0.392231 0.351718 0.356798 0.442269 0.361721 0.463263 0.473923 0.569564 0.507389 0.908147 0.456207 0.993449 0.445769 1.000000 0.000000 1.000000 0.000000 0.951577 diff --git a/datasets/pinganmajia/train/labels/订单1813402_4_7170646.txt b/datasets/pinganmajia/train/labels/订单1813402_4_7170646.txt new file mode 100644 index 0000000..fa22960 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813402_4_7170646.txt @@ -0,0 +1 @@ +4 0.000000 0.468333 0.030039 0.451471 0.055633 0.408169 0.095988 0.383230 0.174722 0.368796 0.194414 0.358292 0.222955 0.288745 0.214097 0.253313 0.203272 0.173251 0.220988 0.170628 0.224923 0.051204 0.263310 0.011842 0.317438 0.013148 0.381420 0.059084 0.408974 0.107644 0.402091 0.199506 0.406026 0.227058 0.404059 0.244126 0.369606 0.333364 0.373542 0.355669 0.374529 0.405535 0.442438 0.489527 0.458187 0.666698 0.461142 0.835988 0.464097 0.930473 0.470988 0.981656 0.468040 1.000000 0.002485 1.000000 0.001497 0.477716 0.000000 0.476831 diff --git a/datasets/pinganmajia/train/labels/订单1813406_4_7170719.txt b/datasets/pinganmajia/train/labels/订单1813406_4_7170719.txt new file mode 100644 index 0000000..68e2c3e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813406_4_7170719.txt @@ -0,0 +1 @@ +4 1.000000 0.343342 0.947028 0.321554 0.936528 0.275625 0.964522 0.248063 0.992522 0.196883 0.983772 0.153575 0.964522 0.147012 0.927778 0.090583 0.884033 0.023654 0.840289 0.009221 0.584822 0.013158 0.530578 0.086646 0.518328 0.160137 0.502583 0.246750 0.521828 0.321554 0.609317 0.412108 0.495583 0.468537 0.418589 0.605021 0.357350 0.790058 0.338100 0.996096 0.831317 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813408_4_7170680.txt b/datasets/pinganmajia/train/labels/订单1813408_4_7170680.txt new file mode 100644 index 0000000..b8f1675 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813408_4_7170680.txt @@ -0,0 +1 @@ +4 0.000490 0.232255 0.112467 0.173199 0.222712 0.144326 0.325948 0.170576 0.380196 0.215196 0.404690 0.286066 0.392435 0.381863 0.399444 0.476348 0.373186 0.547218 0.446683 0.657451 0.465931 0.793934 0.497435 0.957978 0.490637 1.000000 0.002239 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813409_4_7170699.txt b/datasets/pinganmajia/train/labels/订单1813409_4_7170699.txt new file mode 100644 index 0000000..ad74563 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813409_4_7170699.txt @@ -0,0 +1 @@ +4 0.001508 0.528917 0.064500 0.501356 0.137338 0.488233 0.127492 0.447550 0.114700 0.433117 0.118633 0.406867 0.111746 0.367500 0.133400 0.350439 0.151117 0.225767 0.226904 0.182456 0.315483 0.219206 0.333200 0.313694 0.338125 0.389806 0.350917 0.398994 0.342058 0.439678 0.316471 0.510544 0.332217 0.552539 0.408004 0.611594 0.452296 0.715267 0.485762 0.841250 0.481825 0.944928 0.457808 1.000000 0.300288 1.000000 0.001508 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813410_4_7170741.txt b/datasets/pinganmajia/train/labels/订单1813410_4_7170741.txt new file mode 100644 index 0000000..0af8c02 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813410_4_7170741.txt @@ -0,0 +1 @@ +4 0.002153 0.275625 0.136887 0.261189 0.269861 0.300564 0.306609 0.372743 0.317106 0.437040 0.303113 0.477726 0.308356 0.545964 0.296111 0.608958 0.322361 0.675885 0.310104 0.695573 0.450093 0.916050 0.485706 1.000000 0.000000 1.000000 0.000000 0.720990 diff --git a/datasets/pinganmajia/train/labels/订单1813411_4_7170729.txt b/datasets/pinganmajia/train/labels/订单1813411_4_7170729.txt new file mode 100644 index 0000000..346db3d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813411_4_7170729.txt @@ -0,0 +1 @@ +4 0.003987 0.699449 0.143971 0.604963 0.105474 0.562966 0.129967 0.535404 0.115980 0.494718 0.117729 0.419926 0.192958 0.362181 0.289199 0.341176 0.381944 0.358235 0.443186 0.422549 0.451928 0.476348 0.462435 0.538027 0.443186 0.610208 0.506176 0.628578 0.520180 0.733566 0.597157 0.917292 0.623415 0.999975 0.000490 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1813417_4_7170985.txt b/datasets/pinganmajia/train/labels/订单1813417_4_7170985.txt new file mode 100644 index 0000000..5cda882 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813417_4_7170985.txt @@ -0,0 +1 @@ +4 0.000000 0.439408 0.050684 0.417318 0.036904 0.346452 0.026079 0.334642 0.000488 0.258522 0.014268 0.230964 0.032969 0.237526 0.031982 0.106296 0.064463 0.043301 0.117612 0.020990 0.199307 0.031491 0.247534 0.066921 0.283950 0.186348 0.285923 0.337266 0.278047 0.409440 0.234741 0.489492 0.271157 0.528867 0.285923 0.541986 0.361709 0.597109 0.391235 0.665345 0.418794 0.737526 0.441431 0.779518 0.445371 0.817578 0.475879 0.859577 0.481787 0.913379 0.488677 0.942253 0.507378 0.997370 0.001470 0.999993 0.000000 0.581061 diff --git a/datasets/pinganmajia/train/labels/订单1813418_4_7170782.txt b/datasets/pinganmajia/train/labels/订单1813418_4_7170782.txt new file mode 100644 index 0000000..9d899c4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813418_4_7170782.txt @@ -0,0 +1 @@ +4 0.994383 0.562978 0.943642 0.532793 0.954136 0.481613 0.982140 0.398935 1.000000 0.296620 1.000000 0.267608 0.996132 0.208650 0.880648 0.148279 0.768663 0.157469 0.661924 0.196836 0.581440 0.259830 0.570936 0.345131 0.598930 0.418619 0.621677 0.522299 0.639177 0.547230 0.583189 0.581350 0.476451 0.618094 0.415206 0.719151 0.385463 0.838573 0.422202 0.925185 0.415329 1.000000 0.996132 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813419_4_7170821.txt b/datasets/pinganmajia/train/labels/订单1813419_4_7170821.txt new file mode 100644 index 0000000..304d178 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813419_4_7170821.txt @@ -0,0 +1 @@ +4 0.338102 0.007908 0.390602 0.063030 0.392350 0.132578 0.360856 0.185078 0.339861 0.271693 0.317106 0.317622 0.287361 0.359618 0.261111 0.398984 0.315359 0.426545 0.353854 0.467231 0.453588 0.549905 0.513079 0.679826 0.525336 0.766441 0.576076 0.896363 0.588322 0.922604 0.634757 1.000000 0.000000 1.000000 0.000000 0.271623 0.000394 0.056467 0.061644 0.013160 diff --git a/datasets/pinganmajia/train/labels/订单1813420_4_7170805.txt b/datasets/pinganmajia/train/labels/订单1813420_4_7170805.txt new file mode 100644 index 0000000..4f1c56b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813420_4_7170805.txt @@ -0,0 +1 @@ +4 0.994244 0.450144 0.929500 0.440962 0.922500 0.408154 0.927756 0.346471 0.875256 0.261173 0.607538 0.263798 0.544551 0.324163 0.535808 0.425212 0.548051 0.468519 0.546308 0.496077 0.597051 0.569567 0.569051 0.620750 0.509551 0.708673 0.451808 0.839913 0.467564 0.930462 0.504308 0.958019 0.556795 0.971144 0.520077 1.000000 0.525641 1.000000 0.999500 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1813421_4_7170841.txt b/datasets/pinganmajia/train/labels/订单1813421_4_7170841.txt new file mode 100644 index 0000000..1a641ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813421_4_7170841.txt @@ -0,0 +1 @@ +4 0.009144 0.577465 0.110637 0.543342 0.196377 0.490851 0.189375 0.455417 0.171875 0.404236 0.196377 0.376675 0.219120 0.282187 0.308356 0.213950 0.409850 0.202135 0.530579 0.225755 0.591829 0.263819 0.618067 0.367491 0.602326 0.416050 0.576076 0.446233 0.549826 0.523655 0.509583 0.585339 0.604074 0.629957 0.654815 0.720512 0.735301 0.874054 0.789549 0.998724 0.000000 0.997413 0.000000 0.943333 diff --git a/datasets/pinganmajia/train/labels/订单1813422_4_7172522.txt b/datasets/pinganmajia/train/labels/订单1813422_4_7172522.txt new file mode 100644 index 0000000..b4ac198 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813422_4_7172522.txt @@ -0,0 +1 @@ +4 0.003987 0.385797 0.073987 0.388419 0.087974 0.339865 0.063480 0.313627 0.033742 0.280809 0.044232 0.246691 0.066977 0.238824 0.058235 0.149583 0.122974 0.098395 0.268203 0.077402 0.371438 0.129890 0.411683 0.191569 0.423938 0.250625 0.411683 0.293934 0.416944 0.331998 0.355703 0.429105 0.338203 0.446164 0.397696 0.468480 0.388938 0.510466 0.451928 0.666642 0.513170 0.834620 0.537680 0.917292 0.537680 0.950110 0.527435 1.000000 0.013023 1.000000 0.002239 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1813423_4_7170832.txt b/datasets/pinganmajia/train/labels/订单1813423_4_7170832.txt new file mode 100644 index 0000000..1dd0db7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813423_4_7170832.txt @@ -0,0 +1 @@ +4 0.990885 0.123349 0.850905 0.112847 0.703920 0.135154 0.609434 0.202083 0.556934 0.280826 0.572685 0.419938 0.591934 0.471119 0.628683 0.548542 0.516698 0.607600 0.406461 0.679776 0.432706 0.771644 0.509691 0.880563 0.509691 0.996049 0.805658 1.000000 1.000000 1.000000 1.000000 0.694552 0.999630 0.612847 0.971636 0.539360 0.971636 0.443557 0.999630 0.346443 diff --git a/datasets/pinganmajia/train/labels/订单1813424_4_7170867.txt b/datasets/pinganmajia/train/labels/订单1813424_4_7170867.txt new file mode 100644 index 0000000..de0ac11 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813424_4_7170867.txt @@ -0,0 +1 @@ +4 0.525328 0.014467 0.497333 0.101083 0.516578 0.242817 0.544578 0.388483 0.506083 0.480346 0.446589 0.615517 0.408094 0.694258 0.371350 0.931792 0.359100 0.994783 0.869611 1.000000 1.000000 1.000000 1.000000 0.642133 0.997767 0.010533 diff --git a/datasets/pinganmajia/train/labels/订单1813426_4_7170878.txt b/datasets/pinganmajia/train/labels/订单1813426_4_7170878.txt new file mode 100644 index 0000000..49d5bf8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813426_4_7170878.txt @@ -0,0 +1 @@ +4 0.007402 0.729681 0.094013 0.687688 0.112714 0.639134 0.129449 0.605016 0.294804 0.485588 0.287911 0.447533 0.274136 0.425221 0.259369 0.337296 0.269210 0.329420 0.271183 0.219183 0.306612 0.149632 0.364687 0.116822 0.439485 0.131258 0.489687 0.200817 0.495588 0.300547 0.498542 0.326797 0.507402 0.363546 0.495588 0.423913 0.492635 0.452786 0.483781 0.485588 0.568425 0.506585 0.588113 0.620760 0.601887 0.712623 0.618621 1.000000 0.612457 1.000000 0.001495 0.997402 diff --git a/datasets/pinganmajia/train/labels/订单1813430_4_7170910.txt b/datasets/pinganmajia/train/labels/订单1813430_4_7170910.txt new file mode 100644 index 0000000..1fe0829 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813430_4_7170910.txt @@ -0,0 +1 @@ +4 0.009384 0.098472 0.062535 0.035486 0.167847 0.017106 0.241667 0.049919 0.275130 0.129965 0.270217 0.237581 0.244627 0.347812 0.241667 0.384560 0.247578 0.442303 0.295807 0.513171 0.332222 0.593229 0.367656 0.653588 0.389306 0.706088 0.422769 0.799259 0.437535 0.858310 0.430642 0.920000 0.408012 0.964618 0.421788 0.998738 0.017821 1.000000 0.002500 1.000000 -0.000000 0.593935 0.000000 0.358912 0.033012 0.342569 0.031042 0.294016 0.019227 0.262512 0.000000 0.230775 0.000000 0.211111 diff --git a/datasets/pinganmajia/train/labels/订单1813431_4_7170919.txt b/datasets/pinganmajia/train/labels/订单1813431_4_7170919.txt new file mode 100644 index 0000000..7ee7629 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813431_4_7170919.txt @@ -0,0 +1 @@ +4 0.661817 0.014470 0.635567 0.056467 0.618067 0.150955 0.605822 0.194262 0.619815 0.220512 0.614572 0.278255 0.670567 0.384549 0.712558 0.442292 0.751053 0.461979 0.593576 0.611589 0.595324 0.665391 0.514838 0.746753 0.439595 0.797934 0.432593 0.862240 0.457095 0.902925 0.427350 0.980347 0.421829 1.000000 1.000000 1.000000 1.000000 0.009297 diff --git a/datasets/pinganmajia/train/labels/订单1813432_4_7170927.txt b/datasets/pinganmajia/train/labels/订单1813432_4_7170927.txt new file mode 100644 index 0000000..4f2b7cc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813432_4_7170927.txt @@ -0,0 +1 @@ +4 0.992500 0.376654 0.913756 0.350413 0.934756 0.311038 0.924256 0.261173 0.908513 0.259856 0.887513 0.123375 0.787769 0.087942 0.654795 0.090567 0.579551 0.148308 0.539308 0.195558 0.542808 0.254606 0.549808 0.350413 0.577795 0.425212 0.563795 0.494769 0.535808 0.555135 0.532308 0.628625 0.507808 0.692933 0.479808 0.765106 0.488564 0.809731 0.507808 0.877971 0.493808 0.901587 0.532308 0.942269 0.523551 1.000000 1.000000 1.000000 1.000000 0.911288 diff --git a/datasets/pinganmajia/train/labels/订单1813434_4_7170936.txt b/datasets/pinganmajia/train/labels/订单1813434_4_7170936.txt new file mode 100644 index 0000000..e89e063 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813434_4_7170936.txt @@ -0,0 +1 @@ +4 0.987707 0.649615 0.916837 0.584000 0.884361 0.532821 0.891250 0.454077 0.904043 0.418647 0.915856 0.322846 0.910933 0.208673 0.857784 0.101058 0.779043 0.072186 0.674712 0.086622 0.566447 0.169301 0.527077 0.450141 0.461130 0.552506 0.447351 0.633872 0.405029 0.908147 0.406966 1.000000 1.000000 1.000000 1.000000 0.987583 diff --git a/datasets/pinganmajia/train/labels/订单1813437_4_7170963.txt b/datasets/pinganmajia/train/labels/订单1813437_4_7170963.txt new file mode 100644 index 0000000..8c30b6a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813437_4_7170963.txt @@ -0,0 +1 @@ +4 0.986659 0.308412 0.891381 0.274299 0.837361 0.240175 0.828519 0.073505 0.812809 0.006577 0.469028 0.006577 0.464113 0.194247 0.491620 0.320227 0.405177 0.400278 0.412060 0.574825 0.368835 0.801856 0.496528 0.985577 0.508302 1.000000 0.999429 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813438_4_7170980.txt b/datasets/pinganmajia/train/labels/订单1813438_4_7170980.txt new file mode 100644 index 0000000..b13fb18 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813438_4_7170980.txt @@ -0,0 +1 @@ +4 0.007484 0.339865 0.005735 0.251936 0.051225 0.188946 0.126471 0.149583 0.308448 0.144326 0.418693 0.190257 0.432680 0.242757 0.429183 0.322806 0.409935 0.373983 0.413431 0.427794 0.408186 0.472414 0.471176 0.509154 0.394183 0.586593 0.450180 0.636458 0.490425 0.753260 0.485180 0.812304 0.541176 0.944853 0.601013 1.000000 0.483807 1.000000 -0.000000 0.994755 0.000000 0.371850 0.016242 0.355613 diff --git a/datasets/pinganmajia/train/labels/订单1813439_4_7171040.txt b/datasets/pinganmajia/train/labels/订单1813439_4_7171040.txt new file mode 100644 index 0000000..f6bef98 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813439_4_7171040.txt @@ -0,0 +1 @@ +4 0.999502 0.535430 0.942417 0.481621 0.905015 0.408132 0.849897 0.334642 0.823320 0.313639 0.794780 0.216530 0.747534 0.179785 0.691431 0.188971 0.633359 0.267708 0.622534 0.328079 0.628442 0.417318 0.629424 0.455378 0.597930 0.511803 0.577261 0.524928 0.604819 0.569551 0.582183 0.719154 0.528047 0.919941 0.533950 0.956686 0.516807 1.000000 0.531836 1.000000 0.559541 0.993431 0.561509 0.968496 0.572339 0.996055 0.958164 0.998678 0.968008 0.960625 1.000000 0.884355 1.000000 0.710964 diff --git a/datasets/pinganmajia/train/labels/订单1813442_4_7170994.txt b/datasets/pinganmajia/train/labels/订单1813442_4_7170994.txt new file mode 100644 index 0000000..b4b853b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813442_4_7170994.txt @@ -0,0 +1 @@ +4 0.282103 0.223092 0.237637 0.242773 0.212931 0.410755 0.218863 0.536738 0.245539 0.581361 0.250480 0.548548 0.263328 0.562988 0.279137 0.669284 0.290995 0.803145 0.294946 0.821517 0.283088 0.859577 0.288029 0.880573 0.307794 0.874010 0.327554 0.838574 0.340402 0.845137 0.349294 0.884505 0.371029 0.895007 0.386843 0.872695 0.377946 0.828079 0.385853 0.715215 0.396721 0.556426 0.404627 0.552487 0.428343 0.499993 0.428343 0.329388 0.404627 0.258522 0.379926 0.233587 0.344353 0.211283 0.335461 0.137786 0.308779 0.120729 0.288029 0.128600 0.275186 0.157474 0.271230 0.175846 0.278147 0.199466 diff --git a/datasets/pinganmajia/train/labels/订单1813443_4_7171026.txt b/datasets/pinganmajia/train/labels/订单1813443_4_7171026.txt new file mode 100644 index 0000000..413ee0b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813443_4_7171026.txt @@ -0,0 +1 @@ +4 1.000000 0.453240 0.947000 0.417337 0.845513 0.396337 0.749282 0.421279 0.688038 0.475077 0.661782 0.521010 0.639038 0.552510 0.626795 0.593192 0.604038 0.614192 0.551551 0.602375 0.521808 0.746731 0.455308 0.842538 0.427321 0.996077 0.994244 0.998702 1.000000 0.716038 1.000000 0.653000 0.985500 0.631250 0.983744 0.595817 0.975000 0.587942 0.992500 0.540702 1.000000 0.527192 diff --git a/datasets/pinganmajia/train/labels/订单1813444_4_7171014.txt b/datasets/pinganmajia/train/labels/订单1813444_4_7171014.txt new file mode 100644 index 0000000..9cf1240 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813444_4_7171014.txt @@ -0,0 +1 @@ +4 0.763411 0.318887 0.703919 0.353008 0.667174 0.435684 0.672435 0.509180 0.682930 0.531484 0.707422 0.532803 0.709180 0.599727 0.712669 0.691592 0.723177 0.740146 0.758164 0.751963 0.756419 0.733584 0.758164 0.678467 0.758164 0.636475 0.782669 0.585293 0.786159 0.627285 0.780911 0.682402 0.777422 0.699463 0.803659 0.728340 0.845651 0.742773 0.847409 0.729648 0.822904 0.686338 0.836914 0.618105 0.863151 0.543301 0.889401 0.527549 0.912148 0.519678 0.940143 0.452744 0.940143 0.395000 0.913893 0.337266 0.878906 0.316260 0.870156 0.288701 0.857904 0.232275 0.810664 0.232275 0.791419 0.257207 0.775664 0.290020 0.770417 0.301826 diff --git a/datasets/pinganmajia/train/labels/订单1813445_4_7171111.txt b/datasets/pinganmajia/train/labels/订单1813445_4_7171111.txt new file mode 100644 index 0000000..d215f26 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813445_4_7171111.txt @@ -0,0 +1 @@ +4 0.653058 0.521006 0.583178 0.563000 0.542822 0.594500 0.502466 0.692923 0.437510 0.814968 0.421760 0.887147 0.445380 1.000000 1.000000 1.000000 1.000000 0.947641 0.996562 0.569564 0.972942 0.559064 0.981798 0.510506 0.945380 0.501321 0.807587 0.497385 0.811524 0.435705 0.824317 0.422583 0.818413 0.405519 0.824317 0.338596 0.818413 0.318910 0.807587 0.194237 0.730812 0.111558 0.683572 0.120744 0.613688 0.186359 0.600894 0.257231 0.607784 0.359590 0.608769 0.396333 0.634361 0.485577 diff --git a/datasets/pinganmajia/train/labels/订单1813447_4_7171052.txt b/datasets/pinganmajia/train/labels/订单1813447_4_7171052.txt new file mode 100644 index 0000000..881e541 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813447_4_7171052.txt @@ -0,0 +1 @@ +4 0.005753 0.687653 0.066591 0.679779 0.081804 0.632531 0.033125 0.614161 0.011832 0.577414 0.033125 0.569540 0.027045 0.519669 0.100057 0.472426 0.224787 0.457990 0.340398 0.456679 0.474247 0.501299 0.483381 0.559044 0.480341 0.601036 0.459048 0.640404 0.425582 0.685025 0.392116 0.715208 0.452955 0.734896 0.513807 0.800509 0.589858 0.875313 0.611151 0.957990 0.676080 1.000000 0.546207 1.000000 0.011832 0.994737 diff --git a/datasets/pinganmajia/train/labels/订单1813448_4_7171059.txt b/datasets/pinganmajia/train/labels/订单1813448_4_7171059.txt new file mode 100644 index 0000000..7fc667d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813448_4_7171059.txt @@ -0,0 +1 @@ +4 0.992500 0.242798 0.859513 0.195558 0.759769 0.213923 0.665282 0.317596 0.653038 0.431769 0.702038 0.515760 0.752782 0.556442 0.702038 0.593192 0.562051 0.698183 0.555051 0.763798 0.535808 0.829413 0.472808 0.950144 0.459179 1.000000 0.734077 1.000000 1.000000 0.998721 1.000000 0.783058 diff --git a/datasets/pinganmajia/train/labels/订单1813449_4_7171038.txt b/datasets/pinganmajia/train/labels/订单1813449_4_7171038.txt new file mode 100644 index 0000000..8a45191 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813449_4_7171038.txt @@ -0,0 +1 @@ +4 1.000000 0.438588 0.973950 0.401620 0.975920 0.258576 0.949349 0.140463 0.904071 0.044664 0.867656 0.038102 0.764306 0.082720 0.702300 0.168032 0.656042 0.317639 0.647179 0.417373 0.596988 0.477743 0.622578 0.517106 0.600920 0.622095 0.567457 0.773009 0.555642 0.913438 0.563281 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813450_4_7171159.txt b/datasets/pinganmajia/train/labels/订单1813450_4_7171159.txt new file mode 100644 index 0000000..0c164ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813450_4_7171159.txt @@ -0,0 +1 @@ +4 0.000000 0.502393 0.037253 0.486865 0.058255 0.438311 0.039010 0.431748 0.037253 0.406816 0.049505 0.350381 0.081003 0.255898 0.164987 0.192900 0.276979 0.173223 0.345221 0.216523 0.388958 0.286084 0.388958 0.358262 0.374961 0.444873 0.322474 0.523613 0.339974 0.535420 0.329466 0.583984 0.406458 0.686338 0.427461 0.787393 0.430964 0.867441 0.460703 0.999990 0.004010 0.999990 0.000000 0.858555 diff --git a/datasets/pinganmajia/train/labels/订单1813453_4_7171087.txt b/datasets/pinganmajia/train/labels/订单1813453_4_7171087.txt new file mode 100644 index 0000000..8b7f4df --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813453_4_7171087.txt @@ -0,0 +1 @@ +4 0.005648 0.498724 0.028391 0.507908 0.021400 0.429167 0.047639 0.366181 0.119387 0.303186 0.213866 0.282187 0.297859 0.297934 0.355602 0.345182 0.395845 0.387179 0.411597 0.455417 0.418600 0.532847 0.434340 0.565651 0.429097 0.622083 0.486840 0.657517 0.551574 0.770373 0.574329 0.862240 0.584826 0.938359 0.570822 0.972474 0.601146 1.000000 0.010891 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813455_4_7171094.txt b/datasets/pinganmajia/train/labels/订单1813455_4_7171094.txt new file mode 100644 index 0000000..140267e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813455_4_7171094.txt @@ -0,0 +1 @@ +4 0.002253 0.213897 0.089743 0.152222 0.159743 0.124660 0.278724 0.141721 0.331214 0.203403 0.341718 0.251952 0.350463 0.324136 0.366214 0.385818 0.353961 0.465864 0.324218 0.513110 0.366214 0.548542 0.469444 0.654846 0.523693 0.825448 0.534187 0.867438 0.607973 1.000000 0.006924 1.000000 0.004012 0.999985 0.000000 0.712184 0.000000 0.498017 0.039002 0.506551 0.053004 0.490802 0.026759 0.425185 0.011008 0.406813 diff --git a/datasets/pinganmajia/train/labels/订单1813458_4_7171110.txt b/datasets/pinganmajia/train/labels/订单1813458_4_7171110.txt new file mode 100644 index 0000000..d854082 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813458_4_7171110.txt @@ -0,0 +1 @@ +4 0.000372 0.263798 0.157846 0.250673 0.271590 0.303163 0.315333 0.360904 0.308333 0.430462 0.322333 0.463269 0.325833 0.521010 0.322333 0.578760 0.362577 0.656183 0.437821 0.736240 0.488564 0.821538 0.520051 0.879279 0.537551 0.934394 0.518115 1.000000 -0.000000 1.000000 0.000000 0.341750 diff --git a/datasets/pinganmajia/train/labels/订单1813460_4_7171128.txt b/datasets/pinganmajia/train/labels/订单1813460_4_7171128.txt new file mode 100644 index 0000000..1ea5123 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813460_4_7171128.txt @@ -0,0 +1 @@ +4 0.003872 0.572192 0.147346 0.519702 0.133359 0.468519 0.091359 0.447519 0.070359 0.395029 0.073859 0.359596 0.086115 0.349096 0.070359 0.261173 0.152603 0.186365 0.268090 0.148308 0.404564 0.165365 0.481564 0.237548 0.493808 0.322846 0.502551 0.406837 0.495564 0.494769 0.609295 0.542010 0.712526 0.556442 0.938256 0.749356 0.999500 0.795288 1.000000 0.824433 1.000000 0.997356 0.772026 0.994769 0.007846 1.000000 0.005615 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813462_4_7171151.txt b/datasets/pinganmajia/train/labels/订单1813462_4_7171151.txt new file mode 100644 index 0000000..68a5840 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813462_4_7171151.txt @@ -0,0 +1 @@ +4 0.000490 0.423860 0.047729 0.408113 0.070474 0.372672 0.100229 0.360870 0.056487 0.338554 0.056487 0.267684 0.059984 0.220441 0.093235 0.152206 0.196471 0.097083 0.325948 0.110208 0.395948 0.174510 0.418693 0.232255 0.411683 0.275564 0.411683 0.363493 0.385441 0.430417 0.359199 0.451422 0.423938 0.467169 0.408186 0.493407 0.493922 0.643015 0.520180 0.729632 0.532418 0.825429 0.593660 0.977659 0.605915 0.998664 0.296095 1.000000 0.000000 1.000000 0.000000 0.585061 diff --git a/datasets/pinganmajia/train/labels/订单1813464_4_7171143.txt b/datasets/pinganmajia/train/labels/订单1813464_4_7171143.txt new file mode 100644 index 0000000..6cdc9a5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813464_4_7171143.txt @@ -0,0 +1 @@ +4 0.999523 0.435708 0.884359 0.332042 0.888297 0.303167 0.919797 0.238865 0.922750 0.195552 0.907984 0.196865 0.899125 0.206052 0.911922 0.099750 0.858773 0.049885 0.785937 0.017073 0.723930 0.017073 0.679641 0.066948 0.645188 0.191615 0.640266 0.221802 0.655031 0.292667 0.674719 0.388469 0.624523 0.448833 0.594992 0.582698 0.596961 0.623375 0.590070 0.713927 0.594008 0.816292 0.615664 0.912094 0.638297 0.959333 0.644203 0.994771 0.880984 1.000000 1.000000 1.000000 1.000000 0.711833 diff --git a/datasets/pinganmajia/train/labels/订单1813466_4_7171124.txt b/datasets/pinganmajia/train/labels/订单1813466_4_7171124.txt new file mode 100644 index 0000000..96df231 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813466_4_7171124.txt @@ -0,0 +1 @@ +4 1.000000 0.425792 0.950313 0.396348 0.975907 0.326797 0.982794 0.282181 1.000000 0.227124 1.000000 0.157181 0.998542 0.120760 0.966060 0.040711 0.921771 0.011838 0.846967 0.010523 0.776103 0.072206 0.739688 0.168007 0.744608 0.216560 0.726887 0.206062 0.720987 0.233619 0.728860 0.307116 0.751495 0.388480 0.664884 0.417353 0.592047 0.461969 0.538897 0.584020 0.485748 0.692941 0.465080 0.784804 0.486599 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813467_4_7171242.txt b/datasets/pinganmajia/train/labels/订单1813467_4_7171242.txt new file mode 100644 index 0000000..17de0c0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813467_4_7171242.txt @@ -0,0 +1 @@ +4 0.009232 0.570833 0.079232 0.505221 0.103725 0.435674 0.080980 0.385797 0.077484 0.347745 0.087974 0.320184 0.100229 0.234877 0.163219 0.191569 0.254199 0.192892 0.359199 0.245380 0.387190 0.334620 0.392435 0.388419 0.392435 0.444853 0.450180 0.472414 0.509673 0.524902 0.583170 0.624645 0.630408 0.736189 0.689902 0.855613 0.682908 0.936985 0.686405 0.994718 0.137663 1.000000 0.004003 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813468_4_7171171.txt b/datasets/pinganmajia/train/labels/订单1813468_4_7171171.txt new file mode 100644 index 0000000..c575d68 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813468_4_7171171.txt @@ -0,0 +1 @@ +4 0.152720 0.450100 0.080973 0.469790 0.044240 0.535410 0.033733 0.561650 0.080973 0.616770 0.087973 0.643020 0.070480 0.721760 0.105480 0.729630 0.112480 0.835930 0.093227 0.863490 0.056480 0.880550 0.079227 0.891050 0.119480 0.872680 0.156213 0.850370 0.150973 0.803120 0.163213 0.729630 0.196467 0.733570 0.203467 0.812310 0.212213 0.854300 0.208707 0.902860 0.229707 0.901550 0.254213 0.883180 0.248960 0.843810 0.254213 0.797870 0.252453 0.724380 0.257707 0.610210 0.290947 0.580030 0.289200 0.515720 0.278707 0.488160 0.257707 0.472410 0.215707 0.443540 0.233213 0.406800 0.201720 0.381860 0.168467 0.388420 0.159720 0.413360 0.152720 0.429110 diff --git a/datasets/pinganmajia/train/labels/订单1813469_4_7171214.txt b/datasets/pinganmajia/train/labels/订单1813469_4_7171214.txt new file mode 100644 index 0000000..fb8f7e9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813469_4_7171214.txt @@ -0,0 +1 @@ +4 0.985621 0.826740 0.920866 0.782120 0.884134 0.736189 0.814134 0.692892 0.765147 0.633836 0.689902 0.591838 0.590163 0.560343 0.523676 0.552463 0.499183 0.472414 0.497435 0.401544 0.499183 0.356924 0.483431 0.230944 0.409935 0.173199 0.306699 0.156140 0.220964 0.170576 0.143971 0.233566 0.119477 0.308370 0.124722 0.351679 0.133480 0.425172 0.075735 0.473725 0.087974 0.539338 0.056487 0.585270 0.000000 0.620772 0.000000 0.918150 0.002239 0.997353 0.505163 1.000000 0.997680 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813471_4_7171203.txt b/datasets/pinganmajia/train/labels/订单1813471_4_7171203.txt new file mode 100644 index 0000000..5d52e45 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813471_4_7171203.txt @@ -0,0 +1 @@ +4 0.003906 0.108969 0.096646 0.084031 0.257625 0.105031 0.366115 0.157523 0.406365 0.210016 0.397615 0.287445 0.381865 0.330758 0.367865 0.391125 0.371365 0.437055 0.350365 0.500047 0.394115 0.545977 0.362615 0.597156 0.401115 0.678523 0.418604 0.746766 0.602333 0.951492 0.612833 0.993484 0.611094 1.000000 0.005656 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813472_4_7171229.txt b/datasets/pinganmajia/train/labels/订单1813472_4_7171229.txt new file mode 100644 index 0000000..393afd4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813472_4_7171229.txt @@ -0,0 +1 @@ +4 0.001510 0.322882 0.139306 0.326817 0.189505 0.325509 0.182613 0.286134 0.172769 0.267766 0.165885 0.220521 0.168837 0.196898 0.180642 0.179838 0.170807 0.089282 0.211155 0.024977 0.231832 0.009236 0.330252 0.009236 0.395217 0.093229 0.396198 0.186400 0.393247 0.248079 0.394227 0.276956 0.386354 0.311076 0.375530 0.318947 0.346988 0.404248 0.392257 0.435741 0.439505 0.545984 0.474939 0.641782 0.489705 0.703461 0.506432 0.783507 0.509384 0.830752 0.501510 0.867500 0.478872 0.963299 0.440486 0.975116 0.426710 0.997419 0.012179 1.000000 0.004462 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813475_4_7171290.txt b/datasets/pinganmajia/train/labels/订单1813475_4_7171290.txt new file mode 100644 index 0000000..b1803b9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813475_4_7171290.txt @@ -0,0 +1 @@ +4 0.989000 0.778231 0.924256 0.717865 0.821013 0.637808 0.840269 0.602375 0.873513 0.540702 0.849013 0.534135 0.877013 0.477702 0.878756 0.392404 0.807026 0.345163 0.719526 0.328096 0.595295 0.346471 0.541051 0.408154 0.537551 0.440962 0.523551 0.522327 0.509551 0.601067 0.437821 0.671933 0.336333 0.776913 0.332833 0.816288 0.325833 0.931769 0.288064 1.000000 0.997744 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813479_4_7171613.txt b/datasets/pinganmajia/train/labels/订单1813479_4_7171613.txt new file mode 100644 index 0000000..50245b0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813479_4_7171613.txt @@ -0,0 +1 @@ +4 0.670534 0.014450 0.581295 0.094504 0.584801 0.166685 0.586549 0.284796 0.567301 0.359599 0.590045 0.458023 0.415072 0.561698 0.413315 0.628628 0.401069 0.683743 0.283832 0.854348 0.202337 1.000000 0.604529 1.000000 0.997745 0.998702 0.995996 0.013139 diff --git a/datasets/pinganmajia/train/labels/订单1813481_4_7171415.txt b/datasets/pinganmajia/train/labels/订单1813481_4_7171415.txt new file mode 100644 index 0000000..4bf33fd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813481_4_7171415.txt @@ -0,0 +1 @@ +4 0.000394 0.607648 0.070394 0.564340 0.094884 0.510538 0.133380 0.476415 0.187627 0.461979 0.184120 0.416050 0.156123 0.360929 0.157882 0.339931 0.175370 0.242821 0.245370 0.202135 0.362604 0.213950 0.429097 0.249384 0.446597 0.308437 0.444838 0.359618 0.441343 0.431797 0.411597 0.482977 0.383600 0.509219 0.387095 0.535469 0.450093 0.544653 0.437847 0.576155 0.497338 0.666701 0.521829 0.762500 0.551574 0.834679 0.567326 0.952795 0.602836 1.000000 0.302106 1.000000 0.003900 0.996102 diff --git a/datasets/pinganmajia/train/labels/订单1813482_4_7171160.txt b/datasets/pinganmajia/train/labels/订单1813482_4_7171160.txt new file mode 100644 index 0000000..4a78812 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813482_4_7171160.txt @@ -0,0 +1 @@ +4 0.332969 0.283457 0.261224 0.313643 0.215742 0.389756 0.208737 0.476367 0.229740 0.503926 0.250729 0.541982 0.261224 0.527549 0.282227 0.510488 0.301471 0.562979 0.306719 0.682402 0.320716 0.721777 0.304974 0.757207 0.325977 0.762461 0.353971 0.734902 0.371471 0.712588 0.369714 0.619414 0.387214 0.565605 0.401211 0.628604 0.401211 0.716523 0.478203 0.745400 0.479948 0.727021 0.462461 0.696846 0.457201 0.622041 0.465951 0.507861 0.488698 0.505244 0.490456 0.526240 0.500951 0.518359 0.506198 0.492119 0.525443 0.406816 0.506198 0.324141 0.469453 0.293955 0.420456 0.283457 0.423958 0.240146 0.397708 0.204717 0.355716 0.207344 0.327721 0.240146 0.327721 0.267705 diff --git a/datasets/pinganmajia/train/labels/订单1813486_4_7171228.txt b/datasets/pinganmajia/train/labels/订单1813486_4_7171228.txt new file mode 100644 index 0000000..9eb22c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813486_4_7171228.txt @@ -0,0 +1 @@ +4 0.000000 0.427365 0.063359 0.370096 0.056359 0.317596 0.110603 0.295288 0.124603 0.253298 0.147346 0.217865 0.184103 0.145683 0.301333 0.061692 0.446564 0.073510 0.546308 0.110250 0.546308 0.169308 0.546308 0.236240 0.535808 0.312356 0.521808 0.356971 0.485064 0.427837 0.499064 0.460644 0.528808 0.484269 0.490308 0.586625 0.548051 0.662740 0.609295 0.717865 0.630295 0.817596 0.661782 0.862221 0.672282 0.893712 0.661782 0.925212 0.660038 0.956712 0.628538 0.979019 0.567295 0.959337 0.602385 1.000000 0.000359 1.000000 0.000000 0.961144 diff --git a/datasets/pinganmajia/train/labels/订单1813487_4_7171174.txt b/datasets/pinganmajia/train/labels/订单1813487_4_7171174.txt new file mode 100644 index 0000000..a4dc9cc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813487_4_7171174.txt @@ -0,0 +1 @@ +4 0.997744 0.149625 0.917256 0.089250 0.794769 0.076135 0.703782 0.126000 0.646038 0.170615 0.625038 0.244106 0.611038 0.316288 0.626795 0.404212 0.628538 0.451462 0.607538 0.521010 0.516551 0.650933 0.520051 0.757231 0.492064 0.842538 0.460564 0.946212 0.462231 1.000000 1.000000 1.000000 1.000000 0.424837 diff --git a/datasets/pinganmajia/train/labels/订单1813488_4_7171723.txt b/datasets/pinganmajia/train/labels/订单1813488_4_7171723.txt new file mode 100644 index 0000000..3af10c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813488_4_7171723.txt @@ -0,0 +1 @@ +4 0.994265 0.598454 0.964518 0.589268 0.938272 0.510528 0.905027 0.502655 0.927774 0.423914 0.908525 0.362233 0.843785 0.308428 0.742296 0.284807 0.625061 0.314991 0.576068 0.377983 0.579567 0.446224 0.581317 0.543336 0.609314 0.585331 0.595315 0.623388 0.537571 0.632575 0.485078 0.665384 0.423836 0.710003 0.360844 0.775620 0.332847 0.821552 0.290854 0.889793 0.332837 1.000000 0.997741 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813490_4_7171255.txt b/datasets/pinganmajia/train/labels/订单1813490_4_7171255.txt new file mode 100644 index 0000000..6027387 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813490_4_7171255.txt @@ -0,0 +1 @@ +4 0.000000 0.436622 0.041364 0.433037 0.027386 0.404171 0.011656 0.368732 0.016899 0.347732 0.025633 0.283427 0.065812 0.211256 0.205568 0.171878 0.336591 0.192878 0.376769 0.251939 0.387256 0.312305 0.388994 0.366110 0.390747 0.430415 0.368036 0.499963 0.441412 0.552463 0.401234 0.580024 0.490325 0.650890 0.572435 0.733561 0.628328 0.826744 0.603880 0.883171 0.589903 0.943537 0.558458 0.968476 0.529919 1.000000 0.356640 1.000000 0.000000 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1813491_4_7171408.txt b/datasets/pinganmajia/train/labels/订单1813491_4_7171408.txt new file mode 100644 index 0000000..9a3172c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813491_4_7171408.txt @@ -0,0 +1 @@ +4 1.000000 0.545667 0.844154 0.488216 0.838919 0.438353 0.866810 0.404235 0.894701 0.349108 0.868555 0.325490 0.889466 0.257245 0.837174 0.170637 0.741315 0.128637 0.612344 0.150951 0.549596 0.212627 0.525195 0.278245 0.528672 0.325490 0.528672 0.447539 0.465924 0.501343 0.387500 0.605020 0.333464 0.671951 0.307318 0.765127 0.347409 0.997402 0.667747 1.000000 0.995872 1.000000 1.000000 0.881049 diff --git a/datasets/pinganmajia/train/labels/订单1813492_4_7171452.txt b/datasets/pinganmajia/train/labels/订单1813492_4_7171452.txt new file mode 100644 index 0000000..559e779 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813492_4_7171452.txt @@ -0,0 +1 @@ +4 0.003452 0.501321 0.083178 0.464577 0.089082 0.400276 0.135341 0.328096 0.178649 0.328096 0.178649 0.267724 0.187510 0.165365 0.225894 0.106308 0.279043 0.076128 0.364673 0.119436 0.392231 0.196859 0.401091 0.274288 0.396168 0.338596 0.375500 0.416019 0.434553 0.486885 0.418808 0.547256 0.458178 0.682423 0.477861 0.883212 0.479832 0.998699 0.000000 0.996077 0.000000 0.935212 diff --git a/datasets/pinganmajia/train/labels/订单1813494_4_7171306.txt b/datasets/pinganmajia/train/labels/订单1813494_4_7171306.txt new file mode 100644 index 0000000..fbcb13f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813494_4_7171306.txt @@ -0,0 +1 @@ +4 0.014601 0.038021 0.200875 0.026206 0.303337 0.070828 0.368531 0.145630 0.382500 0.202061 0.363872 0.279490 0.305661 0.415970 0.328949 0.451404 0.338259 0.527522 0.387160 0.669254 0.426741 0.751930 0.463813 1.000000 0.000000 1.000000 0.000000 0.793997 diff --git a/datasets/pinganmajia/train/labels/订单1813495_4_7171349.txt b/datasets/pinganmajia/train/labels/订单1813495_4_7171349.txt new file mode 100644 index 0000000..fc66136 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813495_4_7171349.txt @@ -0,0 +1 @@ +4 0.000000 0.334722 0.123559 0.343877 0.186554 0.308449 0.191476 0.246771 0.181632 0.179838 0.173759 0.098472 0.195408 0.006609 0.436554 0.007917 0.447378 0.123403 0.442457 0.177211 0.443437 0.224456 0.417847 0.265139 0.369627 0.377998 0.369627 0.438368 0.453281 0.522361 0.484783 0.589282 0.488715 0.636528 0.483793 0.804514 0.503481 0.897685 0.515946 1.000000 0.004453 1.000000 0.000000 0.396481 diff --git a/datasets/pinganmajia/train/labels/订单1813496_4_7171304.txt b/datasets/pinganmajia/train/labels/订单1813496_4_7171304.txt new file mode 100644 index 0000000..f2896ba --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813496_4_7171304.txt @@ -0,0 +1 @@ +4 0.995608 0.148345 0.916866 0.234954 0.875530 0.254641 0.823359 0.245451 0.819427 0.261204 0.772179 0.191644 0.736745 0.150972 0.668837 0.105035 0.595017 0.122095 0.544818 0.183773 0.520217 0.271701 0.528090 0.337315 0.581233 0.368819 0.627500 0.451493 0.668837 0.469861 0.703281 0.493484 0.708203 0.561725 0.699349 0.622095 0.717066 0.685093 0.747578 0.800567 0.785964 0.938368 0.788915 0.992176 1.000000 0.999954 1.000000 0.691400 diff --git a/datasets/pinganmajia/train/labels/订单1813497_4_7171339.txt b/datasets/pinganmajia/train/labels/订单1813497_4_7171339.txt new file mode 100644 index 0000000..427b2fc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813497_4_7171339.txt @@ -0,0 +1 @@ +4 0.993599 0.472435 0.925684 0.454063 0.961118 0.393691 0.978833 0.284772 0.975879 0.207344 0.984741 0.081361 0.900093 0.035430 0.824307 0.069551 0.759346 0.139102 0.733755 0.246712 0.735723 0.286081 0.718008 0.293958 0.711118 0.374010 0.733755 0.391068 0.752456 0.460625 0.588086 0.488184 0.535923 0.625977 0.470962 0.751960 0.442417 0.818893 0.413872 0.881882 0.395776 1.000000 1.000000 1.000000 1.000000 0.856569 diff --git a/datasets/pinganmajia/train/labels/订单1813501_4_7171443.txt b/datasets/pinganmajia/train/labels/订单1813501_4_7171443.txt new file mode 100644 index 0000000..b68788f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813501_4_7171443.txt @@ -0,0 +1 @@ +4 0.566444 0.339922 0.519203 0.367480 0.503451 0.429167 0.512196 0.497402 0.527948 0.534147 0.540196 0.540716 0.559451 0.612892 0.571699 0.686382 0.568196 0.723127 0.596196 0.733627 0.613686 0.696882 0.610196 0.622078 0.610196 0.543343 0.629438 0.619451 0.625935 0.679824 0.650431 0.713941 0.687176 0.719196 0.673176 0.678510 0.664431 0.594520 0.669686 0.517088 0.687176 0.500029 0.687176 0.531529 0.711673 0.509216 0.711673 0.413422 0.694183 0.363549 0.671438 0.345176 0.643438 0.329431 0.636431 0.291373 0.611935 0.267745 0.575190 0.280873 0.571699 0.305804 0.573451 0.326804 diff --git a/datasets/pinganmajia/train/labels/订单1813502_4_7171366.txt b/datasets/pinganmajia/train/labels/订单1813502_4_7171366.txt new file mode 100644 index 0000000..7abe11c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813502_4_7171366.txt @@ -0,0 +1 @@ +4 0.000490 0.006532 0.261209 0.009154 0.320703 0.057721 0.327696 0.129890 0.303203 0.179767 0.299706 0.248002 0.278709 0.307059 0.210458 0.388419 0.203464 0.429105 0.276961 0.513100 0.350441 0.620711 0.397696 0.767684 0.441438 0.854301 0.422190 0.894988 0.423938 0.996042 0.106814 1.000000 0.003987 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813504_4_7171331.txt b/datasets/pinganmajia/train/labels/订单1813504_4_7171331.txt new file mode 100644 index 0000000..dd8e10b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813504_4_7171331.txt @@ -0,0 +1 @@ +4 0.000000 0.371838 0.047729 0.349056 0.114232 0.341176 0.115980 0.309681 0.070474 0.291311 0.049477 0.245380 0.080980 0.234877 0.070474 0.160074 0.107222 0.086593 0.187712 0.032782 0.234967 0.024902 0.331193 0.022279 0.374935 0.055086 0.439690 0.132525 0.430931 0.207316 0.432680 0.269007 0.439690 0.324118 0.422190 0.384485 0.567418 0.392365 0.539428 0.506532 0.586667 0.578713 0.595408 0.648272 0.745899 0.775564 0.796634 0.831998 0.873627 0.824118 0.929624 0.845123 0.962876 0.868738 0.966373 0.894988 1.000000 0.905490 1.000000 0.999988 0.996324 1.000000 0.003938 1.000000 0.000000 0.824240 diff --git a/datasets/pinganmajia/train/labels/订单1813507_4_7171426.txt b/datasets/pinganmajia/train/labels/订单1813507_4_7171426.txt new file mode 100644 index 0000000..051fc1e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813507_4_7171426.txt @@ -0,0 +1 @@ +4 0.994244 0.553817 0.929500 0.517077 0.910256 0.489519 0.950500 0.439644 0.943500 0.392404 0.910256 0.392404 0.889256 0.295288 0.829769 0.238856 0.731782 0.229673 0.633795 0.255923 0.539308 0.345163 0.572551 0.503952 0.612795 0.555135 0.642538 0.584000 0.600551 0.620750 0.602295 0.719173 0.581295 0.799231 0.565551 0.976394 0.608038 1.000000 1.000000 1.000000 1.000000 0.921712 diff --git a/datasets/pinganmajia/train/labels/订单1813508_4_7171534.txt b/datasets/pinganmajia/train/labels/订单1813508_4_7171534.txt new file mode 100644 index 0000000..328f669 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813508_4_7171534.txt @@ -0,0 +1 @@ +4 0.155863 0.333341 0.120863 0.349091 0.062538 0.359587 0.043872 0.413394 0.006547 0.476385 0.006547 0.522317 0.008880 0.556438 0.020547 0.552500 0.034538 0.523630 0.081205 0.455389 0.071872 0.509192 0.046205 0.553813 0.041538 0.599745 0.064872 0.650928 0.055538 0.686361 0.053205 0.754601 0.022880 0.780846 0.050872 0.792659 0.088205 0.772971 0.113863 0.727043 0.137197 0.614183 0.146530 0.682423 0.127863 0.748038 0.132530 0.774284 0.137197 0.803159 0.179188 0.792659 0.183855 0.754601 0.223521 0.673236 0.230521 0.610245 0.274846 0.517067 0.288846 0.464577 0.293513 0.535442 0.270179 0.564312 0.295846 0.576125 0.316838 0.531505 0.335504 0.451452 0.321504 0.362212 0.284179 0.333341 0.253846 0.329404 0.246846 0.278221 0.200188 0.270351 0.160530 0.274284 0.155863 0.305784 0.151197 0.320216 diff --git a/datasets/pinganmajia/train/labels/订单1813510_4_7171548.txt b/datasets/pinganmajia/train/labels/订单1813510_4_7171548.txt new file mode 100644 index 0000000..1db2a8e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813510_4_7171548.txt @@ -0,0 +1 @@ +4 0.652183 0.440980 0.631190 0.397667 0.583948 0.389794 0.555948 0.426539 0.575190 0.456725 0.566444 0.475098 0.526196 0.458039 0.494706 0.467225 0.463203 0.527588 0.457961 0.563020 0.531451 0.557775 0.540196 0.624706 0.557699 0.685069 0.575190 0.749373 0.596196 0.842549 0.618941 0.968539 0.604941 0.997402 0.652183 0.997402 0.678431 0.997402 0.747595 1.000000 0.748431 1.000000 0.755425 0.929167 0.755425 0.790059 0.764170 0.752000 0.758928 0.661451 0.751922 0.614206 0.781673 0.576147 0.753673 0.503971 0.723922 0.468539 0.674928 0.464598 0.655686 0.455412 diff --git a/datasets/pinganmajia/train/labels/订单1813511_4_7171641.txt b/datasets/pinganmajia/train/labels/订单1813511_4_7171641.txt new file mode 100644 index 0000000..31db475 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813511_4_7171641.txt @@ -0,0 +1 @@ +4 0.002144 0.775625 0.159622 0.704758 0.131628 0.692946 0.135128 0.660137 0.096633 0.603708 0.112378 0.576150 0.119378 0.450163 0.192872 0.398983 0.331100 0.375362 0.474583 0.451475 0.523578 0.543342 0.535828 0.599771 0.534078 0.628642 0.509578 0.704758 0.637317 0.720504 0.730050 0.774312 0.768550 0.870112 0.801794 0.996096 0.007394 0.998721 diff --git a/datasets/pinganmajia/train/labels/订单1813512_4_7171592.txt b/datasets/pinganmajia/train/labels/订单1813512_4_7171592.txt new file mode 100644 index 0000000..248c6ef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813512_4_7171592.txt @@ -0,0 +1 @@ +4 0.002239 0.615453 0.019739 0.608897 0.038987 0.552463 0.042484 0.522279 0.016242 0.511789 0.017990 0.481605 0.021487 0.455355 0.014493 0.398922 0.000000 0.369583 -0.000000 0.360172 0.082729 0.269007 0.213954 0.250625 0.306699 0.279498 0.362696 0.375306 0.362696 0.427794 0.357451 0.506532 0.350441 0.522279 0.369690 0.599706 0.451928 0.631201 0.514918 0.715196 0.521928 0.791311 0.537680 0.891054 0.532484 1.000000 0.273627 1.000000 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813513_4_7171485.txt b/datasets/pinganmajia/train/labels/订单1813513_4_7171485.txt new file mode 100644 index 0000000..c3b2736 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813513_4_7171485.txt @@ -0,0 +1 @@ +4 0.565670 0.522279 0.558676 0.577402 0.423938 0.601017 0.359199 0.657451 0.338203 0.708640 0.208709 0.859559 0.185964 0.860870 0.072222 0.998664 0.996111 0.997353 0.997859 0.593150 0.992614 0.553775 1.000000 0.448542 1.000000 0.375159 0.975114 0.354301 0.980359 0.244069 0.836879 0.187635 0.698644 0.157451 0.527173 0.195515 0.483431 0.286066 0.485180 0.381863 0.514918 0.419926 0.544673 0.497353 diff --git a/datasets/pinganmajia/train/labels/订单1813514_4_7171667.txt b/datasets/pinganmajia/train/labels/订单1813514_4_7171667.txt new file mode 100644 index 0000000..904e608 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813514_4_7171667.txt @@ -0,0 +1 @@ +4 0.005735 0.101017 0.110719 0.081336 0.241961 0.111520 0.339951 0.200760 0.318954 0.207316 0.315458 0.287377 0.313693 0.360870 0.289199 0.426483 0.262958 0.463223 0.276961 0.489473 0.266454 0.510466 0.334690 0.590527 0.369690 0.674510 0.395948 0.748002 0.413431 0.888419 0.465931 0.996042 0.000000 0.997341 0.000000 0.835882 diff --git a/datasets/pinganmajia/train/labels/订单1813516_4_7171531.txt b/datasets/pinganmajia/train/labels/订单1813516_4_7171531.txt new file mode 100644 index 0000000..fade8dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813516_4_7171531.txt @@ -0,0 +1 @@ +4 0.184213 0.443540 0.157973 0.457980 0.170213 0.472410 0.122973 0.503910 0.094973 0.561650 0.065227 0.703390 0.080973 0.730940 0.122973 0.779500 0.119480 0.762440 0.140467 0.753250 0.136973 0.744070 0.128227 0.711260 0.142227 0.652200 0.150973 0.703390 0.163213 0.753250 0.177213 0.831990 0.203467 0.889740 0.210467 0.921230 0.184213 0.957980 0.175467 0.984230 0.189467 0.994720 0.217467 0.980290 0.234960 0.944860 0.250707 0.918610 0.250707 0.833310 0.255960 0.751940 0.262960 0.824120 0.269960 0.902860 0.276960 0.935670 0.273453 0.982910 0.308453 0.999970 0.325947 0.965850 0.325947 0.926480 0.320693 0.891050 0.334693 0.822810 0.343440 0.692890 0.359200 0.635140 0.353947 0.603650 0.395933 0.574780 0.387187 0.511780 0.366200 0.490790 0.327693 0.473730 0.296200 0.446170 0.290947 0.426480 0.266453 0.385800 0.217467 0.381860 0.185960 0.396300 0.187720 0.423860 0.184213 0.435670 diff --git a/datasets/pinganmajia/train/labels/订单1813517_4_7171560.txt b/datasets/pinganmajia/train/labels/订单1813517_4_7171560.txt new file mode 100644 index 0000000..e1849d9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813517_4_7171560.txt @@ -0,0 +1 @@ +4 0.994244 0.314981 0.920756 0.269048 0.821013 0.261173 0.703782 0.309731 0.653038 0.375346 0.644295 0.447519 0.646038 0.479019 0.633795 0.524952 0.654795 0.595817 0.691538 0.654875 0.663538 0.685058 0.656538 0.709990 0.619795 0.797913 0.607538 0.876654 0.597051 0.976394 0.604910 1.000000 0.995987 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813519_4_7171631.txt b/datasets/pinganmajia/train/labels/订单1813519_4_7171631.txt new file mode 100644 index 0000000..b8e14af --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813519_4_7171631.txt @@ -0,0 +1 @@ +4 0.011185 0.564330 0.084673 0.530212 0.131920 0.497402 0.137165 0.452786 0.150286 0.419975 0.160784 0.401601 0.143725 0.358292 0.146348 0.318922 0.181781 0.328113 0.177851 0.236250 0.218529 0.191626 0.299894 0.152255 0.385196 0.165384 0.427190 0.194248 0.463938 0.259869 0.479681 0.334673 0.486250 0.392418 0.457377 0.489526 0.498056 0.510523 0.512492 0.531520 0.452124 0.624698 0.504616 0.712623 0.546618 0.801863 0.554485 0.822859 0.537426 0.859608 0.559739 0.939657 0.585972 1.000000 0.574314 1.000000 0.001993 0.998717 diff --git a/datasets/pinganmajia/train/labels/订单1813520_4_7171678.txt b/datasets/pinganmajia/train/labels/订单1813520_4_7171678.txt new file mode 100644 index 0000000..faa46fe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813520_4_7171678.txt @@ -0,0 +1 @@ +4 0.000525 0.414744 0.086154 0.391122 0.109775 0.374061 0.109775 0.317628 0.104854 0.282194 0.101904 0.224456 0.107808 0.190333 0.129462 0.190333 0.149146 0.099783 0.224933 0.059100 0.298754 0.066972 0.336154 0.122089 0.371587 0.190333 0.373554 0.248072 0.358792 0.343878 0.326313 0.463300 0.361746 0.505294 0.413913 0.569600 0.426704 0.626028 0.432613 0.660150 0.458200 0.795317 0.474933 0.939678 0.482808 0.967233 0.470996 0.998733 0.001508 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813523_4_7171624.txt b/datasets/pinganmajia/train/labels/订单1813523_4_7171624.txt new file mode 100644 index 0000000..695ef9a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813523_4_7171624.txt @@ -0,0 +1 @@ +4 0.006429 0.737500 0.156656 0.610207 0.193344 0.581329 0.189854 0.544585 0.223036 0.535402 0.233523 0.507841 0.200325 0.485537 0.200325 0.442220 0.221299 0.370049 0.313880 0.297866 0.402971 0.304427 0.458880 0.343805 0.486834 0.427793 0.474594 0.493402 0.455390 0.559024 0.423945 0.595768 0.469367 0.636451 0.450146 0.670573 0.483328 0.737500 0.525260 0.776866 0.540990 0.908110 0.611364 1.000000 0.312013 1.000000 0.004675 0.996037 diff --git a/datasets/pinganmajia/train/labels/订单1813524_4_7171657.txt b/datasets/pinganmajia/train/labels/订单1813524_4_7171657.txt new file mode 100644 index 0000000..fcaea0c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813524_4_7171657.txt @@ -0,0 +1 @@ +4 0.996111 0.685012 0.835131 0.601017 0.828137 0.565588 0.849134 0.446164 0.796634 0.312304 0.633905 0.272941 0.499183 0.313627 0.451928 0.387108 0.450180 0.472414 0.453676 0.615453 0.362696 0.724387 0.322451 0.751936 0.227958 0.817561 0.173725 0.877929 0.206961 0.922549 0.243709 0.909424 0.264706 0.894988 0.282206 0.871360 0.315458 0.906801 0.352190 0.994718 0.999608 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813525_4_7171995.txt b/datasets/pinganmajia/train/labels/订单1813525_4_7171995.txt new file mode 100644 index 0000000..6beaa71 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813525_4_7171995.txt @@ -0,0 +1 @@ +4 0.020109 0.161403 0.177670 0.156152 0.402343 0.182402 0.504469 0.249332 0.478215 0.325447 0.443202 0.381875 0.431526 0.418621 0.376090 0.467175 0.273965 0.526232 0.218515 0.541979 0.355668 0.708646 0.332316 0.863505 0.352738 0.997359 0.008433 0.999988 diff --git a/datasets/pinganmajia/train/labels/订单1813526_4_7174949.txt b/datasets/pinganmajia/train/labels/订单1813526_4_7174949.txt new file mode 100644 index 0000000..afe07b1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813526_4_7174949.txt @@ -0,0 +1 @@ +4 0.670654 0.020968 0.577925 0.072157 0.565670 0.290000 0.572663 0.335931 0.586667 0.381863 0.609412 0.429105 0.534167 0.515723 0.467680 0.549841 0.383693 0.649583 0.304951 0.828051 0.282206 0.908113 0.271699 0.947475 0.252157 1.000000 0.997876 1.000000 0.999608 0.565588 0.987369 0.540650 0.938366 0.475037 0.954118 0.387108 0.999608 0.380551 1.000000 0.299510 1.000000 0.013125 diff --git a/datasets/pinganmajia/train/labels/订单1813527_4_7171756.txt b/datasets/pinganmajia/train/labels/订单1813527_4_7171756.txt new file mode 100644 index 0000000..0415e4a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813527_4_7171756.txt @@ -0,0 +1 @@ +4 0.000000 0.150295 0.024896 0.065651 0.112384 0.005286 0.329352 0.007908 0.455336 0.094523 0.439595 0.157517 0.420347 0.265130 0.401100 0.379297 0.388854 0.389800 0.492083 0.458038 0.478090 0.489540 0.516586 0.568281 0.542836 0.605026 0.532326 0.661450 0.614572 0.790061 0.635567 0.846493 0.642569 0.972474 0.621574 0.964601 0.598819 0.963290 0.604074 0.935729 0.565579 0.950165 0.572581 0.969852 0.532384 1.000000 0.263657 1.000000 0.005648 0.997413 0.000000 0.317622 diff --git a/datasets/pinganmajia/train/labels/订单1813531_4_7172166.txt b/datasets/pinganmajia/train/labels/订单1813531_4_7172166.txt new file mode 100644 index 0000000..18467f5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813531_4_7172166.txt @@ -0,0 +1 @@ +4 0.990231 0.477678 0.920394 0.459301 0.984416 0.435680 0.972772 0.400251 0.940761 0.388437 0.905842 0.304449 0.827269 0.253266 0.643940 0.255895 0.492622 0.284761 0.419878 0.321507 0.524633 0.334632 0.486807 0.400251 0.483899 0.461930 0.524633 0.505233 0.603207 0.566918 0.536277 0.597102 0.492622 0.619412 0.562459 0.674528 0.501359 0.776887 0.475163 0.879252 0.480992 0.938309 0.455856 1.000000 1.000000 1.000000 1.000000 0.919369 diff --git a/datasets/pinganmajia/train/labels/订单1813532_4_7171934.txt b/datasets/pinganmajia/train/labels/订单1813532_4_7171934.txt new file mode 100644 index 0000000..7349c41 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813532_4_7171934.txt @@ -0,0 +1 @@ +4 0.994608 0.276928 0.947365 0.293987 0.883388 0.290049 0.877482 0.220498 0.866654 0.195564 0.837126 0.118137 0.810551 0.019714 0.638309 0.007900 0.594013 0.081389 0.588113 0.194248 0.619608 0.271683 0.625515 0.297925 0.646183 0.375351 0.662911 0.392418 0.720987 0.434412 0.676691 0.509216 0.631415 0.551209 0.648150 0.565645 0.620588 0.636511 0.657990 0.821552 0.695116 1.000000 0.997549 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813535_4_7171843.txt b/datasets/pinganmajia/train/labels/订单1813535_4_7171843.txt new file mode 100644 index 0000000..c8980cc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813535_4_7171843.txt @@ -0,0 +1 @@ +4 0.527201 0.359570 0.476458 0.370068 0.457201 0.423877 0.441458 0.507861 0.444961 0.582666 0.458958 0.623350 0.472956 0.618105 0.467708 0.720459 0.469453 0.824141 0.469453 0.883193 0.411706 0.922559 0.423958 0.943564 0.451953 0.939619 0.495703 0.919941 0.534193 0.896318 0.542943 0.813643 0.534193 0.754580 0.565690 0.707344 0.572695 0.755898 0.563945 0.825449 0.565690 0.887129 0.548190 0.937002 0.558698 0.957998 0.597187 0.955371 0.605938 0.926504 0.619935 0.871387 0.637435 0.782139 0.647930 0.721777 0.658424 0.644346 0.684674 0.632539 0.689922 0.606289 0.707422 0.569541 0.726667 0.440937 0.707422 0.380566 0.667174 0.363506 0.614687 0.341201 0.614687 0.316260 0.609440 0.293955 0.556940 0.265078 0.520195 0.279521 0.518451 0.304453 0.518451 0.334639 diff --git a/datasets/pinganmajia/train/labels/订单1813536_4_7171761.txt b/datasets/pinganmajia/train/labels/订单1813536_4_7171761.txt new file mode 100644 index 0000000..a4c6c1e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813536_4_7171761.txt @@ -0,0 +1 @@ +4 0.323359 0.006609 0.328281 0.045984 0.293837 0.087975 0.277101 0.242836 0.384384 0.345197 0.400130 0.400313 0.423759 0.503981 0.458203 0.778264 0.471988 0.872755 0.467066 0.923935 0.452300 0.986921 0.449349 0.998738 0.000000 0.997431 0.000000 0.142384 0.002500 0.009236 diff --git a/datasets/pinganmajia/train/labels/订单1813537_4_7171741.txt b/datasets/pinganmajia/train/labels/订单1813537_4_7171741.txt new file mode 100644 index 0000000..9a8bfcc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813537_4_7171741.txt @@ -0,0 +1 @@ +4 0.786930 0.009216 0.777089 0.060392 0.782990 0.097141 0.791850 0.177190 0.798738 0.276928 0.809565 0.325482 0.794804 0.374044 0.734761 0.409477 0.691458 0.510523 0.651103 0.660131 0.583186 0.989526 0.996575 0.997402 0.995588 0.013154 diff --git a/datasets/pinganmajia/train/labels/订单1813538_4_7171836.txt b/datasets/pinganmajia/train/labels/订单1813538_4_7171836.txt new file mode 100644 index 0000000..11f8d5e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813538_4_7171836.txt @@ -0,0 +1 @@ +4 0.149128 0.276938 0.145628 0.296621 0.073883 0.318929 0.058139 0.364862 0.051139 0.419979 0.079133 0.440979 0.110628 0.439667 0.093133 0.507908 0.114128 0.521029 0.157872 0.547275 0.187622 0.601083 0.205117 0.681133 0.208617 0.731004 0.196367 0.762500 0.217367 0.761188 0.243611 0.733629 0.236617 0.679825 0.236617 0.608958 0.238367 0.547275 0.266361 0.611583 0.283861 0.681133 0.282111 0.710008 0.273361 0.750688 0.301356 0.759875 0.327606 0.725754 0.322356 0.685071 0.304856 0.595833 0.311856 0.532842 0.329350 0.556462 0.353850 0.518404 0.348600 0.425229 0.329350 0.354363 0.304856 0.320242 0.266361 0.295308 0.227867 0.280871 0.217367 0.266437 0.177122 0.192946 0.140378 0.200821 0.128128 0.225754 0.149128 0.262500 diff --git a/datasets/pinganmajia/train/labels/订单1813541_4_7171787.txt b/datasets/pinganmajia/train/labels/订单1813541_4_7171787.txt new file mode 100644 index 0000000..1a0f2ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813541_4_7171787.txt @@ -0,0 +1 @@ +4 0.997402 0.450154 0.927409 0.414716 0.901774 0.334667 0.899805 0.282175 0.908677 0.190308 0.872201 0.119440 0.813049 0.081388 0.729250 0.112881 0.695732 0.187687 0.681927 0.258547 0.675030 0.309732 0.672073 0.371412 0.634610 0.472459 0.568555 0.526266 0.523207 0.650942 0.506445 0.724432 0.492646 0.938336 0.558037 1.000000 0.997402 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813542_4_7171900.txt b/datasets/pinganmajia/train/labels/订单1813542_4_7171900.txt new file mode 100644 index 0000000..daf8c05 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813542_4_7171900.txt @@ -0,0 +1 @@ +4 0.027045 0.287390 0.227827 0.275576 0.386023 0.297886 0.455994 0.366127 0.449915 0.412059 0.428622 0.452745 0.398196 0.502610 0.328224 0.556415 0.379943 0.586599 0.459048 0.716520 0.465128 0.842506 0.529020 0.999988 0.011832 0.998676 diff --git a/datasets/pinganmajia/train/labels/订单1813543_4_7171825.txt b/datasets/pinganmajia/train/labels/订单1813543_4_7171825.txt new file mode 100644 index 0000000..f973e8d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813543_4_7171825.txt @@ -0,0 +1 @@ +4 0.000000 0.577904 0.026091 0.565628 0.006404 0.534128 0.004438 0.460641 0.223923 0.370090 0.226880 0.341218 0.211130 0.292660 0.221957 0.275603 0.229832 0.178487 0.274120 0.095814 0.328255 0.073500 0.378452 0.091872 0.427663 0.174551 0.443413 0.253288 0.443413 0.295288 0.451288 0.291346 0.443413 0.350404 0.437510 0.413397 0.450303 0.455391 0.535933 0.497385 0.507389 0.582686 0.520183 0.632558 0.538885 0.745417 0.584163 0.912083 0.596957 0.997385 0.560683 1.000000 0.560534 1.000000 0.525106 0.954077 0.504437 0.910769 0.512312 0.997385 0.116639 0.997385 0.079240 0.885840 0.050697 0.943577 0.001486 0.982949 0.000000 0.915667 diff --git a/datasets/pinganmajia/train/labels/订单1813545_4_7171826.txt b/datasets/pinganmajia/train/labels/订单1813545_4_7171826.txt new file mode 100644 index 0000000..6ab0406 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813545_4_7171826.txt @@ -0,0 +1 @@ +4 0.005615 0.472452 0.030115 0.454087 0.019615 0.414712 0.049359 0.397654 0.065115 0.342538 0.135103 0.278231 0.269833 0.259856 0.345077 0.314971 0.395821 0.371404 0.381821 0.440962 0.353821 0.523635 0.474564 0.605000 0.443064 0.650933 0.457064 0.779538 0.422064 0.870096 0.461128 1.000000 0.002115 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813546_4_7171875.txt b/datasets/pinganmajia/train/labels/订单1813546_4_7171875.txt new file mode 100644 index 0000000..31890d0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813546_4_7171875.txt @@ -0,0 +1 @@ +4 0.994244 0.745423 0.908513 0.707365 0.868256 0.678490 0.859513 0.622067 0.906756 0.539385 0.969744 0.488202 0.994244 0.334663 0.934756 0.250673 0.843769 0.213923 0.696782 0.225740 0.593551 0.288731 0.521808 0.387154 0.534051 0.458019 0.535808 0.534135 0.537551 0.581385 0.504308 0.632558 0.303077 0.633875 0.138603 0.751981 0.007372 0.884529 0.005615 1.000000 0.999410 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813547_4_7172100.txt b/datasets/pinganmajia/train/labels/订单1813547_4_7172100.txt new file mode 100644 index 0000000..37a0bcd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813547_4_7172100.txt @@ -0,0 +1 @@ +4 0.013516 0.080088 0.108000 0.076147 0.261987 0.078775 0.370471 0.141765 0.386222 0.211314 0.340719 0.266431 0.323229 0.313676 0.249739 0.418667 0.351229 0.513157 0.464954 0.620765 0.473712 0.669324 0.452706 0.733627 0.438706 0.773000 0.505203 0.880608 0.489451 0.891108 0.487699 0.946225 0.435216 0.913422 0.463203 0.998716 0.010536 1.000000 0.000000 1.000000 0.000000 0.968265 diff --git a/datasets/pinganmajia/train/labels/订单1813549_4_7171932.txt b/datasets/pinganmajia/train/labels/订单1813549_4_7171932.txt new file mode 100644 index 0000000..4a6dbce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813549_4_7171932.txt @@ -0,0 +1 @@ +4 0.002239 0.981605 0.187712 0.859559 0.348693 0.765061 0.401193 0.703382 0.560425 0.654828 0.551667 0.612831 0.539428 0.597083 0.551667 0.566900 0.541176 0.535404 0.562173 0.465858 0.635654 0.380551 0.768644 0.366115 0.868382 0.418603 0.894624 0.481605 0.887631 0.541973 0.885882 0.610208 0.878873 0.670576 0.999608 0.712574 0.999608 0.998664 0.660931 1.000000 0.003775 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813551_4_7171912.txt b/datasets/pinganmajia/train/labels/订单1813551_4_7171912.txt new file mode 100644 index 0000000..e032768 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813551_4_7171912.txt @@ -0,0 +1 @@ +4 0.158364 0.981641 0.182838 0.868780 0.224783 0.809725 0.277220 0.707363 0.347128 0.632560 0.490446 0.560378 0.476465 0.523634 0.490446 0.484261 0.474714 0.469828 0.460732 0.452766 0.471224 0.418651 0.458982 0.366151 0.445000 0.269046 0.495686 0.185052 0.590069 0.133875 0.701922 0.119433 0.840000 0.166684 0.888936 0.202113 0.899428 0.271667 0.892437 0.311040 0.906419 0.325473 0.909908 0.395026 0.911659 0.425206 0.901167 0.454081 0.911659 0.503952 0.960595 0.534132 1.000000 0.534132 1.000000 0.703179 0.995549 0.998703 0.153124 0.996074 diff --git a/datasets/pinganmajia/train/labels/订单1813552_4_7171949.txt b/datasets/pinganmajia/train/labels/订单1813552_4_7171949.txt new file mode 100644 index 0000000..cc79a01 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813552_4_7171949.txt @@ -0,0 +1 @@ +4 0.007539 0.668010 0.122565 0.605020 0.174857 0.573520 0.185312 0.551216 0.225404 0.523657 0.241094 0.485598 0.223659 0.454098 0.228893 0.417353 0.246315 0.366176 0.309063 0.303176 0.431068 0.308431 0.528672 0.350422 0.542617 0.400294 0.497305 0.417353 0.479870 0.498716 0.445013 0.548588 0.458958 0.585333 0.605365 0.750686 0.714010 1.000000 0.235456 1.000000 0.004049 0.998716 diff --git a/datasets/pinganmajia/train/labels/订单1813553_4_7171998.txt b/datasets/pinganmajia/train/labels/订单1813553_4_7171998.txt new file mode 100644 index 0000000..881337a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813553_4_7171998.txt @@ -0,0 +1 @@ +4 0.305179 0.242788 0.314504 0.199481 0.260846 0.182423 0.214188 0.192923 0.209521 0.236226 0.230521 0.262476 0.181521 0.297909 0.195521 0.343841 0.193188 0.404207 0.200188 0.443577 0.232855 0.489510 0.284179 0.581370 0.309838 0.654865 0.260846 0.669298 0.295846 0.671923 0.340171 0.666673 0.316838 0.694236 0.365838 0.690298 0.389162 0.671923 0.393829 0.633865 0.403162 0.570875 0.391496 0.548562 0.382162 0.498697 0.400829 0.486885 0.412496 0.455389 0.428829 0.370087 0.396162 0.288721 0.347171 0.259851 diff --git a/datasets/pinganmajia/train/labels/订单1813554_4_7172006.txt b/datasets/pinganmajia/train/labels/订单1813554_4_7172006.txt new file mode 100644 index 0000000..e8b05bb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813554_4_7172006.txt @@ -0,0 +1 @@ +4 0.332969 0.152227 0.245482 0.160098 0.208737 0.208652 0.159740 0.317578 0.164987 0.368760 0.187734 0.473740 0.205234 0.477686 0.226237 0.510488 0.229740 0.534111 0.236732 0.616787 0.233229 0.712588 0.238477 0.728340 0.247227 0.786084 0.283971 0.804453 0.304974 0.780830 0.292721 0.733584 0.299727 0.687656 0.315469 0.611543 0.338216 0.572168 0.343464 0.631221 0.341719 0.698154 0.327721 0.736211 0.366211 0.751963 0.432708 0.775586 0.434453 0.757207 0.399466 0.711279 0.406458 0.664033 0.439714 0.562979 0.453711 0.476367 0.497448 0.429121 0.504453 0.367441 0.493945 0.272959 0.490456 0.237520 0.427461 0.179785 0.451953 0.140410 0.451953 0.091855 0.411706 0.065605 0.366211 0.072168 0.338216 0.085293 0.325977 0.108916 0.329466 0.131221 diff --git a/datasets/pinganmajia/train/labels/订单1813556_4_7172007.txt b/datasets/pinganmajia/train/labels/订单1813556_4_7172007.txt new file mode 100644 index 0000000..fe2ae04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813556_4_7172007.txt @@ -0,0 +1 @@ +4 0.164515 0.324141 0.098314 0.397630 0.080525 0.477682 0.070647 0.608919 0.083490 0.649603 0.088431 0.703405 0.102265 0.717839 0.116098 0.711283 0.118074 0.675846 0.124005 0.623353 0.134873 0.745404 0.144755 0.816270 0.173407 0.997370 0.213922 0.999993 0.284078 0.996055 0.292971 0.914694 0.288029 0.779518 0.298897 0.699466 0.314711 0.677161 0.323603 0.639102 0.342377 0.503932 0.327554 0.423880 0.299887 0.354323 0.235662 0.307083 0.234672 0.259837 0.214912 0.217839 0.182304 0.204720 0.156613 0.241465 0.155623 0.278210 0.163529 0.301829 diff --git a/datasets/pinganmajia/train/labels/订单1813557_4_7171915.txt b/datasets/pinganmajia/train/labels/订单1813557_4_7171915.txt new file mode 100644 index 0000000..b0d94c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813557_4_7171915.txt @@ -0,0 +1 @@ +4 0.781328 0.010520 0.688003 0.064328 0.690920 0.170625 0.723003 0.299234 0.755078 0.384539 0.854236 0.442281 0.638429 0.530207 0.510113 0.527582 0.472196 0.574824 0.510113 0.581387 0.583021 0.711309 0.632595 0.888473 0.737587 0.914723 0.778411 0.992148 1.000000 0.996086 1.000000 0.009227 diff --git a/datasets/pinganmajia/train/labels/订单1813561_4_7172085.txt b/datasets/pinganmajia/train/labels/订单1813561_4_7172085.txt new file mode 100644 index 0000000..1a59bc3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813561_4_7172085.txt @@ -0,0 +1 @@ +4 0.003462 0.299240 0.107794 0.339918 0.179645 0.326797 0.210159 0.311046 0.245588 0.290049 0.271183 0.254616 0.251495 0.220498 0.257402 0.186381 0.283977 0.145694 0.295784 0.162753 0.342047 0.078766 0.398150 0.068268 0.469013 0.120760 0.498542 0.166691 0.495588 0.234935 0.456219 0.355670 0.382402 0.439657 0.380435 0.468529 0.453266 0.523652 0.494608 0.598448 0.491654 0.694248 0.480827 0.723121 0.499528 0.813676 0.489687 1.000000 0.002482 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813564_4_7172026.txt b/datasets/pinganmajia/train/labels/订单1813564_4_7172026.txt new file mode 100644 index 0000000..58b9a66 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813564_4_7172026.txt @@ -0,0 +1 @@ +4 0.005761 0.602353 0.182490 0.555108 0.150988 0.497361 0.135237 0.435687 0.143992 0.388441 0.112490 0.262454 0.173735 0.160093 0.308467 0.107600 0.465947 0.123349 0.544691 0.179776 0.584938 0.266389 0.572685 0.383187 0.546440 0.480301 0.523693 0.540671 0.777407 0.619414 0.882397 0.683711 0.990885 0.774267 1.000000 0.974807 1.000000 1.000000 0.007500 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813565_4_7172025.txt b/datasets/pinganmajia/train/labels/订单1813565_4_7172025.txt new file mode 100644 index 0000000..6ade43d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813565_4_7172025.txt @@ -0,0 +1 @@ +4 0.002156 0.492172 0.086146 0.455430 0.084396 0.431805 0.075656 0.396367 0.077406 0.351750 0.080896 0.283508 0.122896 0.220516 0.245375 0.182461 0.350365 0.190336 0.429104 0.274320 0.446604 0.324195 0.441354 0.379312 0.441354 0.438367 0.388865 0.501359 0.485104 0.610281 0.567344 0.706086 0.604083 0.818945 0.635583 0.996109 0.000406 0.994797 diff --git a/datasets/pinganmajia/train/labels/订单1813567_4_7172131.txt b/datasets/pinganmajia/train/labels/订单1813567_4_7172131.txt new file mode 100644 index 0000000..6aefa99 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813567_4_7172131.txt @@ -0,0 +1 @@ +4 0.002132 0.199437 0.076838 0.220432 0.070941 0.167938 0.059147 0.146944 0.055211 0.083953 0.052265 0.049830 0.057181 0.009149 0.309799 0.006525 0.318647 0.111512 0.303902 0.160065 0.281294 0.262428 0.244926 0.314921 0.335358 0.406787 0.346172 0.489463 0.342240 0.636446 0.364848 0.762428 0.401216 0.981590 0.392373 0.999961 0.000167 0.999961 diff --git a/datasets/pinganmajia/train/labels/订单1813569_4_7172463.txt b/datasets/pinganmajia/train/labels/订单1813569_4_7172463.txt new file mode 100644 index 0000000..1229993 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813569_4_7172463.txt @@ -0,0 +1 @@ +4 0.003900 0.614210 0.044144 0.598464 0.047639 0.564340 0.003900 0.535469 0.002153 0.207387 0.149132 0.191641 0.259363 0.233628 0.303113 0.303186 0.320613 0.355677 0.360856 0.435729 0.371354 0.507908 0.352106 0.572214 0.542836 0.711319 0.705556 0.851745 0.814051 0.996102 0.000000 0.996102 0.000000 0.826858 diff --git a/datasets/pinganmajia/train/labels/订单1813570_4_7172539.txt b/datasets/pinganmajia/train/labels/订单1813570_4_7172539.txt new file mode 100644 index 0000000..74176cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813570_4_7172539.txt @@ -0,0 +1 @@ +4 0.385347 0.287439 0.280359 0.317622 0.243623 0.387179 0.247118 0.505286 0.275116 0.538090 0.308356 0.586649 0.332859 0.649644 0.332859 0.729696 0.343356 0.745443 0.315359 0.801875 0.332859 0.812370 0.360856 0.803186 0.378345 0.773003 0.392350 0.746753 0.408102 0.703446 0.402847 0.644392 0.416840 0.597153 0.437847 0.639141 0.448345 0.712630 0.451840 0.738880 0.471088 0.775625 0.516586 0.794002 0.532326 0.778255 0.506088 0.731007 0.502581 0.668012 0.513079 0.618142 0.523588 0.561719 0.549826 0.536780 0.583079 0.472474 0.588322 0.402925 0.558576 0.338620 0.485093 0.290061 0.507836 0.207387 0.481586 0.152266 0.415093 0.153576 0.367847 0.183759 0.369606 0.228385 0.381852 0.258568 diff --git a/datasets/pinganmajia/train/labels/订单1813571_4_7172101.txt b/datasets/pinganmajia/train/labels/订单1813571_4_7172101.txt new file mode 100644 index 0000000..32b76bf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813571_4_7172101.txt @@ -0,0 +1 @@ +4 0.056364 0.996080 0.080862 0.944901 0.135104 0.879283 0.222595 0.821541 0.458816 0.709993 0.453570 0.649624 0.434318 0.612876 0.460568 0.544638 0.483314 0.452770 0.562055 0.375348 0.756278 0.370092 0.863011 0.429148 0.885758 0.527578 0.882263 0.624687 0.880511 0.678494 1.000000 0.740838 1.000000 1.000000 0.761970 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813573_4_7172420.txt b/datasets/pinganmajia/train/labels/订单1813573_4_7172420.txt new file mode 100644 index 0000000..34bbb9a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813573_4_7172420.txt @@ -0,0 +1 @@ +4 0.003020 0.563020 0.111503 0.535461 0.232235 0.518402 0.239242 0.479029 0.249739 0.417353 0.253229 0.356990 0.305725 0.293990 0.405464 0.282186 0.519203 0.314990 0.550693 0.363549 0.543699 0.446225 0.519203 0.544647 0.625935 0.607647 0.708183 0.689010 0.797412 0.826804 0.962118 1.000000 0.413948 1.000000 0.004771 0.996098 diff --git a/datasets/pinganmajia/train/labels/订单1813576_4_7172159.txt b/datasets/pinganmajia/train/labels/订单1813576_4_7172159.txt new file mode 100644 index 0000000..622c22d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813576_4_7172159.txt @@ -0,0 +1 @@ +4 0.994618 0.622095 0.907023 0.539421 0.857813 0.456736 0.861745 0.380625 0.878481 0.303194 0.874540 0.165405 0.809583 0.057789 0.694427 0.066979 0.652101 0.115532 0.598950 0.283507 0.597969 0.362257 0.614705 0.477743 0.602891 0.523669 0.558602 0.610289 0.537925 0.728391 0.519227 0.838634 0.485764 0.996111 0.866406 1.000000 0.999523 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813579_4_7172225.txt b/datasets/pinganmajia/train/labels/订单1813579_4_7172225.txt new file mode 100644 index 0000000..9f85019 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813579_4_7172225.txt @@ -0,0 +1 @@ +4 0.996852 0.183681 0.697287 0.142999 0.568509 0.211237 0.448120 0.283416 0.456519 0.391029 0.456519 0.518325 0.540509 0.590503 0.442519 0.627248 0.355731 0.762418 0.299741 0.998641 0.481065 1.000000 0.999639 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813580_4_7172450.txt b/datasets/pinganmajia/train/labels/订单1813580_4_7172450.txt new file mode 100644 index 0000000..3cc2669 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813580_4_7172450.txt @@ -0,0 +1 @@ +4 0.007426 0.535493 0.133411 0.454127 0.159657 0.402947 0.114163 0.336017 0.075670 0.280898 0.087917 0.240218 0.063419 0.145729 0.107165 0.053863 0.231401 0.019743 0.359134 0.042053 0.427373 0.108983 0.446622 0.211345 0.453623 0.341265 0.425625 0.404259 0.546360 0.425254 0.688092 0.538116 0.751087 0.607672 0.847324 0.754651 0.884069 0.812396 0.868321 0.920006 0.850821 0.996121 0.013145 1.000000 0.000429 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813582_4_7172212.txt b/datasets/pinganmajia/train/labels/订单1813582_4_7172212.txt new file mode 100644 index 0000000..dc16509 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813582_4_7172212.txt @@ -0,0 +1 @@ +4 1.000000 0.213264 0.950096 0.183681 0.807360 0.124622 0.612197 0.150872 0.411204 0.247982 0.402457 0.354284 0.419942 0.417274 0.425761 0.509141 0.469461 0.568194 0.250992 0.657431 0.236426 0.763733 0.084952 0.997326 0.120539 1.000000 0.157437 1.000000 0.181079 0.976332 0.210212 0.998641 0.617717 1.000000 0.996715 1.000000 1.000000 0.704835 diff --git a/datasets/pinganmajia/train/labels/订单1813583_4_7172329.txt b/datasets/pinganmajia/train/labels/订单1813583_4_7172329.txt new file mode 100644 index 0000000..02ac96f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813583_4_7172329.txt @@ -0,0 +1 @@ +4 0.551667 0.452730 0.542920 0.465850 0.481680 0.496040 0.446680 0.561650 0.485173 0.602340 0.492173 0.649580 0.511427 0.709950 0.530667 0.811000 0.534173 0.872680 0.485173 0.905490 0.516680 0.918610 0.546427 0.912050 0.588413 0.908110 0.588413 0.870050 0.595413 0.778190 0.611160 0.838560 0.623413 0.875300 0.637413 0.915980 0.654907 0.931730 0.682907 0.955350 0.695147 0.935670 0.686400 0.892360 0.677653 0.847740 0.672400 0.786060 0.672400 0.656140 0.721400 0.580030 0.691653 0.496040 0.674160 0.471100 0.625160 0.456670 0.625160 0.417300 0.616413 0.384490 0.570920 0.384490 0.546427 0.402860 0.542920 0.436980 diff --git a/datasets/pinganmajia/train/labels/订单1813584_4_7172221.txt b/datasets/pinganmajia/train/labels/订单1813584_4_7172221.txt new file mode 100644 index 0000000..9fbeb11 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813584_4_7172221.txt @@ -0,0 +1 @@ +4 0.302487 0.312331 0.297240 0.345137 0.260495 0.376634 0.232936 0.481621 0.247370 0.606296 0.259180 0.628600 0.281491 0.650911 0.295924 0.644349 0.318236 0.748027 0.322174 0.847760 0.327422 0.918626 0.356296 0.933066 0.368105 0.887135 0.369414 0.829388 0.366790 0.746712 0.377292 0.855638 0.385163 0.881882 0.429785 0.901569 0.459967 0.906816 0.462591 0.881882 0.428470 0.846452 0.423223 0.769023 0.425846 0.699466 0.444219 0.597109 0.458652 0.602357 0.471777 0.569551 0.466530 0.472435 0.442910 0.393691 0.423223 0.359577 0.398288 0.343828 0.381230 0.311016 0.364167 0.250651 0.324798 0.261146 0.309049 0.296582 diff --git a/datasets/pinganmajia/train/labels/订单1813586_4_7172378.txt b/datasets/pinganmajia/train/labels/订单1813586_4_7172378.txt new file mode 100644 index 0000000..d11dd75 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813586_4_7172378.txt @@ -0,0 +1 @@ +4 0.993621 0.602386 0.949332 0.556454 0.925711 0.507900 0.928664 0.465907 0.941458 0.439657 0.960159 0.381920 0.961140 0.343856 0.980827 0.232312 0.931612 0.126013 0.849920 0.082704 0.740668 0.105016 0.681612 0.195564 0.687518 0.276928 0.693425 0.363546 0.704252 0.454093 0.726887 0.522337 0.667837 0.587949 0.578266 0.686381 0.553664 0.766430 0.531023 0.803178 0.489687 0.858292 0.453266 0.927851 0.469013 0.997402 0.815257 1.000000 0.993621 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813587_4_7172299.txt b/datasets/pinganmajia/train/labels/订单1813587_4_7172299.txt new file mode 100644 index 0000000..72f1794 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813587_4_7172299.txt @@ -0,0 +1 @@ +4 0.992625 0.396333 0.932587 0.383212 0.875500 0.335968 0.810538 0.272974 0.781995 0.154865 0.753452 0.074814 0.728846 0.010506 0.497548 0.014449 0.479832 0.135179 0.494596 0.237545 0.553649 0.368776 0.508375 0.429147 0.503452 0.492135 0.439476 0.582686 0.421760 0.702109 0.421760 0.816282 0.403058 0.906833 0.401091 0.997385 0.599774 1.000000 0.999457 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813588_4_7172214.txt b/datasets/pinganmajia/train/labels/订单1813588_4_7172214.txt new file mode 100644 index 0000000..8061205 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813588_4_7172214.txt @@ -0,0 +1 @@ +4 1.000000 0.784411 0.941752 0.776918 0.957500 0.674560 0.940009 0.650937 0.957500 0.521016 0.891013 0.447521 0.787775 0.416030 0.602301 0.419964 0.530559 0.477706 0.493807 0.586634 0.506061 0.631250 0.481562 0.666683 0.479811 0.763800 0.275085 0.856974 0.187595 0.905526 0.099081 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813589_4_7172227.txt b/datasets/pinganmajia/train/labels/订单1813589_4_7172227.txt new file mode 100644 index 0000000..6a2a3d7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813589_4_7172227.txt @@ -0,0 +1 @@ +4 1.000000 0.395942 0.843019 0.377962 0.807587 0.321532 0.796760 0.213923 0.793808 0.064314 0.774120 0.010506 0.601880 0.021006 0.570380 0.066942 0.545774 0.148301 0.552663 0.236231 0.575303 0.358276 0.596957 0.409462 0.588096 0.425205 0.546760 0.515756 0.531995 0.631244 0.539870 0.885840 0.565846 1.000000 0.856303 1.000000 0.999514 0.998699 1.000000 0.924596 diff --git a/datasets/pinganmajia/train/labels/订单1813590_4_7172365.txt b/datasets/pinganmajia/train/labels/订单1813590_4_7172365.txt new file mode 100644 index 0000000..7027748 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813590_4_7172365.txt @@ -0,0 +1 @@ +4 0.992500 0.223115 0.836769 0.162740 0.709026 0.196865 0.632038 0.320221 0.686282 0.492144 0.651295 0.574817 0.553295 0.661433 0.530551 0.774298 0.509551 0.996077 0.997590 1.000000 0.999500 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813591_4_7172367.txt b/datasets/pinganmajia/train/labels/订单1813591_4_7172367.txt new file mode 100644 index 0000000..100aa3e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813591_4_7172367.txt @@ -0,0 +1 @@ +4 0.341719 0.456680 0.285729 0.481621 0.241979 0.536738 0.255977 0.604980 0.252487 0.636475 0.282227 0.694219 0.264727 0.732275 0.285729 0.730957 0.303229 0.709961 0.324219 0.691592 0.320716 0.662725 0.339974 0.658779 0.348724 0.640410 0.374961 0.641719 0.376719 0.666660 0.404714 0.688965 0.427461 0.675840 0.479948 0.694219 0.511445 0.666660 0.486953 0.632539 0.471198 0.610225 0.495703 0.559043 0.492201 0.513115 0.460703 0.480303 0.423958 0.459307 0.436211 0.416006 0.394219 0.398945 0.360964 0.414687 0.348724 0.438311 diff --git a/datasets/pinganmajia/train/labels/订单1813594_4_7172343.txt b/datasets/pinganmajia/train/labels/订单1813594_4_7172343.txt new file mode 100644 index 0000000..cf84517 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813594_4_7172343.txt @@ -0,0 +1 @@ +4 0.007539 0.349108 0.049362 0.309745 0.072031 0.280873 0.077253 0.199510 0.127799 0.145696 0.241094 0.124706 0.366589 0.137824 0.404922 0.192941 0.431068 0.282186 0.420612 0.339922 0.406667 0.402922 0.392721 0.438353 0.427591 0.505284 0.516471 0.686382 0.546107 0.818931 0.546107 0.870108 0.521706 0.876676 0.504271 0.998716 0.255859 1.000000 0.000000 1.000000 0.000000 0.751990 diff --git a/datasets/pinganmajia/train/labels/订单1813596_4_7172380.txt b/datasets/pinganmajia/train/labels/订单1813596_4_7172380.txt new file mode 100644 index 0000000..920246f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813596_4_7172380.txt @@ -0,0 +1 @@ +4 0.000000 0.120100 0.110741 0.097099 0.203488 0.135154 0.310216 0.196836 0.338220 0.291327 0.357459 0.389753 0.341718 0.486867 0.520195 0.560355 0.661924 0.643032 0.766914 0.821512 0.782665 0.821512 0.831656 0.888441 0.814156 0.914684 0.852654 0.998673 0.422479 1.000000 0.000504 1.000000 0.000000 0.873426 diff --git a/datasets/pinganmajia/train/labels/订单1813602_4_7172553.txt b/datasets/pinganmajia/train/labels/订单1813602_4_7172553.txt new file mode 100644 index 0000000..99a839e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813602_4_7172553.txt @@ -0,0 +1 @@ +4 0.005446 0.380622 0.075329 0.366183 0.098950 0.300567 0.150129 0.238889 0.215092 0.219206 0.228871 0.173272 0.241667 0.162772 0.268242 0.089283 0.310563 0.019728 0.403083 0.010544 0.448358 0.066972 0.483792 0.150961 0.477888 0.266450 0.476904 0.316317 0.445408 0.381933 0.442454 0.448861 0.485762 0.538100 0.521196 0.664083 0.534975 0.780883 0.529067 0.879311 0.501508 0.950172 0.467058 0.975111 0.456233 0.993483 0.003479 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813605_4_7172414.txt b/datasets/pinganmajia/train/labels/订单1813605_4_7172414.txt new file mode 100644 index 0000000..2f4f3c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813605_4_7172414.txt @@ -0,0 +1 @@ +4 1.000000 0.613946 0.948873 0.589216 0.908627 0.564277 0.908627 0.530159 0.933121 0.530159 0.947124 0.502598 0.947124 0.443542 0.927876 0.439608 0.896373 0.328051 0.814134 0.271630 0.703905 0.253260 0.590163 0.284755 0.527173 0.354301 0.513170 0.409424 0.528922 0.489473 0.534167 0.551152 0.593660 0.641703 0.539428 0.667953 0.472925 0.769007 0.455425 0.914669 0.444935 0.959289 0.412712 1.000000 0.999641 1.000000 1.000000 0.959902 diff --git a/datasets/pinganmajia/train/labels/订单1813607_4_7172530.txt b/datasets/pinganmajia/train/labels/订单1813607_4_7172530.txt new file mode 100644 index 0000000..00208af --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813607_4_7172530.txt @@ -0,0 +1 @@ +4 0.000000 0.347595 0.107130 0.328116 0.117639 0.291372 0.093137 0.225755 0.122882 0.202135 0.159630 0.154896 0.222616 0.080087 0.378345 0.036780 0.492083 0.069592 0.565579 0.147014 0.556829 0.282187 0.516586 0.349115 0.476343 0.439670 0.493831 0.475104 0.618067 0.616832 0.656562 0.698194 0.686308 0.762500 0.679317 0.815000 0.681065 0.871424 0.646065 0.963290 0.651134 1.000000 0.005648 1.000000 0.000000 0.737431 diff --git a/datasets/pinganmajia/train/labels/订单1813609_4_7172509.txt b/datasets/pinganmajia/train/labels/订单1813609_4_7172509.txt new file mode 100644 index 0000000..22dbb99 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813609_4_7172509.txt @@ -0,0 +1 @@ +4 1.000000 0.453019 0.954000 0.450144 0.982000 0.413404 0.983744 0.359596 0.992500 0.324163 0.980244 0.267731 0.842013 0.194240 0.703782 0.209990 0.584795 0.263798 0.555051 0.326788 0.583051 0.368779 0.591795 0.418654 0.597051 0.468519 0.630295 0.534135 0.556795 0.627308 0.502551 0.749356 0.462308 0.854346 0.485064 0.914712 0.535808 0.926529 0.611808 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813612_4_7172548.txt b/datasets/pinganmajia/train/labels/订单1813612_4_7172548.txt new file mode 100644 index 0000000..7138211 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813612_4_7172548.txt @@ -0,0 +1 @@ +4 1.000000 0.684988 0.941476 0.674583 0.874540 0.572222 0.856832 0.524977 0.854861 0.381933 0.836155 0.221829 0.787925 0.115532 0.695408 0.097164 0.602891 0.158843 0.550729 0.252014 0.554661 0.408183 0.535964 0.404248 0.534974 0.438368 0.542847 0.494803 0.429661 0.657523 0.439505 0.720521 0.375530 0.803194 0.331233 0.913438 0.321398 0.994803 1.000000 0.997419 diff --git a/datasets/pinganmajia/train/labels/订单1813615_4_7172554.txt b/datasets/pinganmajia/train/labels/订单1813615_4_7172554.txt new file mode 100644 index 0000000..5b4e425 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813615_4_7172554.txt @@ -0,0 +1 @@ +4 0.992523 0.227066 0.962778 0.225755 0.950532 0.196884 0.919028 0.085339 0.864792 0.044653 0.728310 0.027595 0.593576 0.069592 0.535833 0.148333 0.544583 0.225755 0.535833 0.296623 0.572581 0.398984 0.549826 0.479036 0.521829 0.540720 0.485093 0.654896 0.457095 0.769062 0.434340 0.867491 0.418600 0.897674 0.462338 0.884549 0.472836 0.993472 1.000000 1.000000 1.000000 0.777491 diff --git a/datasets/pinganmajia/train/labels/订单1813616_4_7172663.txt b/datasets/pinganmajia/train/labels/订单1813616_4_7172663.txt new file mode 100644 index 0000000..7bd3167 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813616_4_7172663.txt @@ -0,0 +1 @@ +4 0.000676 0.404190 0.094785 0.367438 0.084324 0.342508 0.052961 0.313634 0.033791 0.278202 0.061670 0.253272 0.059928 0.175841 0.075615 0.119414 0.113955 0.077415 0.235932 0.061667 0.317838 0.074792 0.382316 0.120725 0.413678 0.160093 0.410195 0.227022 0.394508 0.307076 0.387541 0.389753 0.366629 0.438310 0.431107 0.457994 0.425881 0.531481 0.474672 0.677153 0.490359 0.816258 0.481639 0.964552 0.463145 1.000000 0.235523 1.000000 0.004170 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1813617_4_7172575.txt b/datasets/pinganmajia/train/labels/订单1813617_4_7172575.txt new file mode 100644 index 0000000..cc237fa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813617_4_7172575.txt @@ -0,0 +1 @@ +4 0.005750 0.014419 0.049500 0.006544 0.282217 0.007856 0.388958 0.070850 0.394200 0.146962 0.388958 0.206019 0.394200 0.276888 0.357458 0.408119 0.320717 0.463237 0.444950 0.559038 0.471192 0.686338 0.493942 0.832006 0.483442 0.997356 0.004000 0.998669 diff --git a/datasets/pinganmajia/train/labels/订单1813618_4_7172596.txt b/datasets/pinganmajia/train/labels/订单1813618_4_7172596.txt new file mode 100644 index 0000000..3073445 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813618_4_7172596.txt @@ -0,0 +1 @@ +4 0.997881 0.346443 0.945391 0.308387 0.905144 0.233580 0.934887 0.188966 0.927891 0.127284 0.877150 0.094475 0.784414 0.011798 0.544691 0.014421 0.453704 0.077415 0.451955 0.220463 0.486944 0.303140 0.546440 0.385818 0.612932 0.426497 0.563940 0.468488 0.600679 0.480301 0.493951 0.568225 0.471204 0.656157 0.423951 0.851690 0.318971 0.959306 0.280473 0.998673 0.524270 1.000000 1.000000 1.000000 1.000000 0.544892 diff --git a/datasets/pinganmajia/train/labels/订单1813621_4_7172648.txt b/datasets/pinganmajia/train/labels/订单1813621_4_7172648.txt new file mode 100644 index 0000000..e55c961 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813621_4_7172648.txt @@ -0,0 +1 @@ +4 0.000000 0.790074 0.114232 0.678456 0.219216 0.590527 0.205212 0.557721 0.219216 0.527537 0.185964 0.461912 0.224461 0.398922 0.355703 0.345123 0.476422 0.368738 0.521928 0.414669 0.528922 0.482917 0.542925 0.541973 0.528922 0.601017 0.605915 0.759816 0.640915 0.850368 0.653154 0.999975 0.002239 0.999975 0.000000 0.866483 diff --git a/datasets/pinganmajia/train/labels/订单1813625_4_7172577.txt b/datasets/pinganmajia/train/labels/订单1813625_4_7172577.txt new file mode 100644 index 0000000..54b1cda --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813625_4_7172577.txt @@ -0,0 +1 @@ +4 0.992523 0.605026 0.961030 0.573524 0.999525 0.423924 0.996019 0.183759 0.899780 0.114210 0.758056 0.101085 0.616319 0.198194 0.453588 0.458038 0.376597 0.552526 0.343356 0.557778 0.320613 0.635208 0.275116 0.753316 0.276863 0.813681 0.273368 0.992161 0.757581 1.000000 1.000000 1.000000 1.000000 0.889106 diff --git a/datasets/pinganmajia/train/labels/订单1813626_4_7172669.txt b/datasets/pinganmajia/train/labels/订单1813626_4_7172669.txt new file mode 100644 index 0000000..7c27789 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813626_4_7172669.txt @@ -0,0 +1 @@ +4 0.002266 0.314951 0.103750 0.270332 0.219232 0.282139 0.278724 0.350381 0.292721 0.426504 0.264727 0.502617 0.236732 0.539365 0.334727 0.723086 0.429206 0.818887 0.415208 0.872695 0.367969 0.923877 0.373216 0.997363 0.121536 1.000000 0.000000 1.000000 0.000000 0.610742 diff --git a/datasets/pinganmajia/train/labels/订单1813627_4_7172612.txt b/datasets/pinganmajia/train/labels/订单1813627_4_7172612.txt new file mode 100644 index 0000000..079347d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813627_4_7172612.txt @@ -0,0 +1 @@ +4 0.012729 0.343799 0.047729 0.342488 0.038987 0.287377 0.005735 0.259816 0.000000 0.097353 0.000000 0.060956 0.084477 0.014412 0.311944 0.010466 0.362696 0.039338 0.357451 0.080025 0.425686 0.160074 0.397696 0.282120 0.308448 0.401544 0.346944 0.425172 0.416944 0.415980 0.464183 0.629890 0.616405 0.999975 -0.000000 0.998676 0.000000 0.820502 diff --git a/datasets/pinganmajia/train/labels/订单1813628_4_7172622.txt b/datasets/pinganmajia/train/labels/订单1813628_4_7172622.txt new file mode 100644 index 0000000..3798eef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813628_4_7172622.txt @@ -0,0 +1 @@ +4 0.007413 0.036794 0.035964 0.009236 0.198359 0.009236 0.249540 0.091910 0.262335 0.173275 0.248559 0.224456 0.235764 0.341250 0.218047 0.397685 0.233793 0.433113 0.213125 0.489549 0.252500 0.498738 0.311554 0.682465 0.319427 0.706088 0.312535 0.780891 0.411944 0.925243 0.413915 0.964618 0.405052 0.993484 0.002500 0.997419 0.000530 0.321574 0.010373 0.312384 0.002500 0.300567 0.005451 0.186400 diff --git a/datasets/pinganmajia/train/labels/订单1813629_4_7173205.txt b/datasets/pinganmajia/train/labels/订单1813629_4_7173205.txt new file mode 100644 index 0000000..2cb87ab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813629_4_7173205.txt @@ -0,0 +1 @@ +4 0.000000 0.489552 0.058251 0.439622 0.142243 0.400247 0.136996 0.362191 0.131739 0.317569 0.143992 0.293951 0.138745 0.206026 0.115998 0.150903 0.173735 0.099722 0.262973 0.089228 0.317222 0.091852 0.451955 0.099722 0.521944 0.146968 0.535936 0.228333 0.497449 0.278202 0.490442 0.379252 0.420453 0.489491 0.467695 0.513110 0.507942 0.619414 0.583189 0.791327 0.616430 0.999985 0.004012 0.998673 -0.000000 0.708596 diff --git a/datasets/pinganmajia/train/labels/订单1813630_4_7172710.txt b/datasets/pinganmajia/train/labels/订单1813630_4_7172710.txt new file mode 100644 index 0000000..c49f5d3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813630_4_7172710.txt @@ -0,0 +1 @@ +4 0.997744 0.467212 0.912000 0.439644 0.903256 0.413404 0.945256 0.371404 0.947000 0.288731 0.917256 0.286106 0.913756 0.153558 0.807026 0.086625 0.684538 0.084000 0.577795 0.127308 0.504308 0.206048 0.514808 0.316288 0.521808 0.427837 0.567295 0.517077 0.483308 0.585317 0.388821 0.707365 0.418564 0.758548 0.338077 0.926529 0.324077 0.992144 0.832282 1.000000 1.000000 1.000000 1.000000 0.697183 diff --git a/datasets/pinganmajia/train/labels/订单1813632_4_7172841.txt b/datasets/pinganmajia/train/labels/订单1813632_4_7172841.txt new file mode 100644 index 0000000..08e57dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813632_4_7172841.txt @@ -0,0 +1 @@ +4 0.007396 0.364870 0.047639 0.335998 0.047639 0.295312 0.080891 0.267752 0.131632 0.202135 0.208623 0.174575 0.357350 0.190321 0.416840 0.242821 0.436088 0.313681 0.422095 0.372743 0.416840 0.418672 0.367847 0.493472 0.304861 0.518411 0.394097 0.608958 0.416840 0.733628 0.443090 0.850425 0.474583 0.947543 0.478090 0.996102 0.124398 1.000000 0.002164 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813633_4_7172782.txt b/datasets/pinganmajia/train/labels/订单1813633_4_7172782.txt new file mode 100644 index 0000000..cf0048c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813633_4_7172782.txt @@ -0,0 +1 @@ +4 0.008166 0.628573 0.093766 0.590524 0.125211 0.524902 0.095519 0.464537 0.090276 0.385793 0.140942 0.290000 0.244010 0.249317 0.383766 0.278183 0.462370 0.356927 0.486834 0.511780 0.575925 0.573463 0.596883 0.610207 0.628328 0.757183 0.675503 0.868732 0.722662 0.997341 0.001185 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1813634_4_7172797.txt b/datasets/pinganmajia/train/labels/订单1813634_4_7172797.txt new file mode 100644 index 0000000..6f591cf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813634_4_7172797.txt @@ -0,0 +1 @@ +4 1.000000 0.540490 0.966373 0.539340 0.943627 0.447480 0.885880 0.429110 0.905120 0.388420 0.924373 0.331990 0.912120 0.314930 0.915627 0.229630 0.859627 0.157450 0.728400 0.141710 0.574413 0.186320 0.513173 0.250630 0.542920 0.330680 0.560413 0.438290 0.586667 0.481600 0.483427 0.578710 0.490427 0.622020 0.430933 0.711260 0.345200 0.808370 0.348693 0.881860 0.380187 0.954040 0.481680 0.993410 0.854400 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813636_4_7172726.txt b/datasets/pinganmajia/train/labels/订单1813636_4_7172726.txt new file mode 100644 index 0000000..82d8f43 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813636_4_7172726.txt @@ -0,0 +1 @@ +4 0.994248 0.115503 0.891014 0.061698 0.696784 0.072194 0.584801 0.158811 0.563804 0.228363 0.570797 0.341223 0.576051 0.452772 0.588297 0.517079 0.404574 0.637813 0.425571 0.724423 0.378324 0.934402 0.367826 1.000000 0.375507 1.000000 0.997745 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1813637_4_7172714.txt b/datasets/pinganmajia/train/labels/订单1813637_4_7172714.txt new file mode 100644 index 0000000..5bf470c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813637_4_7172714.txt @@ -0,0 +1 @@ +4 0.272700 0.288700 0.214423 0.309700 0.167806 0.349070 0.160817 0.414685 0.172469 0.494735 0.195782 0.520985 0.212096 0.536730 0.226083 0.534105 0.247060 0.540670 0.251723 0.612850 0.235409 0.669280 0.249387 0.727020 0.184121 0.782140 0.200444 0.790015 0.237735 0.786075 0.268037 0.765080 0.312327 0.740145 0.298339 0.716520 0.319316 0.645655 0.337966 0.569540 0.361279 0.622035 0.368268 0.679775 0.375266 0.708650 0.400906 0.728335 0.440533 0.749330 0.454512 0.733580 0.426545 0.688965 0.442860 0.619410 0.452185 0.519670 0.484822 0.515735 0.503464 0.489490 0.510462 0.405500 0.468499 0.342505 0.431208 0.304450 0.365941 0.286075 0.363606 0.263765 0.368268 0.241455 0.344956 0.204710 0.282025 0.206025 0.258712 0.230960 0.261048 0.271640 diff --git a/datasets/pinganmajia/train/labels/订单1813638_4_7172745.txt b/datasets/pinganmajia/train/labels/订单1813638_4_7172745.txt new file mode 100644 index 0000000..3adb6fe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813638_4_7172745.txt @@ -0,0 +1 @@ +4 0.000000 0.447475 0.070474 0.431728 0.135229 0.371360 0.108971 0.335931 0.100229 0.296556 0.110719 0.267684 0.129967 0.261127 0.150964 0.183701 0.219216 0.153517 0.299706 0.133836 0.399444 0.149583 0.422190 0.207316 0.441438 0.263750 0.439690 0.329375 0.430931 0.379240 0.408186 0.430417 0.318954 0.494718 0.367941 0.580025 0.399444 0.648272 0.415180 0.734877 0.453676 0.838554 0.469428 0.902855 0.458938 0.952733 0.444935 0.993407 0.000490 0.998664 0.000000 0.976765 diff --git a/datasets/pinganmajia/train/labels/订单1813639_4_7172845.txt b/datasets/pinganmajia/train/labels/订单1813639_4_7172845.txt new file mode 100644 index 0000000..64ad5df --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813639_4_7172845.txt @@ -0,0 +1 @@ +4 0.012729 0.591838 0.052990 0.559032 0.059984 0.501287 0.031977 0.476348 0.003987 0.438297 0.014493 0.410735 0.028480 0.339865 0.101977 0.259816 0.217467 0.237500 0.310196 0.263750 0.364444 0.354301 0.378448 0.447475 0.369690 0.509154 0.336454 0.582647 0.483431 0.652206 0.558676 0.721752 0.598922 0.803125 0.779134 0.994718 0.000000 0.998640 0.000000 0.920882 diff --git a/datasets/pinganmajia/train/labels/订单1813642_4_7172836.txt b/datasets/pinganmajia/train/labels/订单1813642_4_7172836.txt new file mode 100644 index 0000000..7dea9ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813642_4_7172836.txt @@ -0,0 +1 @@ +4 1.000000 0.388480 0.923738 0.359608 0.881415 0.321552 0.867635 0.236250 0.877482 0.169314 0.884369 0.090580 0.873542 0.070891 0.871575 0.009216 0.595987 0.111577 0.612714 0.202124 0.613701 0.245433 0.655037 0.355670 0.597953 0.387165 0.547757 0.410784 0.484761 0.510523 0.453266 0.622075 0.422757 0.706062 0.414884 0.784804 0.413897 0.867484 0.451299 0.993464 1.000000 0.998693 diff --git a/datasets/pinganmajia/train/labels/订单1813643_4_7172882.txt b/datasets/pinganmajia/train/labels/订单1813643_4_7172882.txt new file mode 100644 index 0000000..65b9acb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813643_4_7172882.txt @@ -0,0 +1 @@ +4 0.012656 0.371437 0.059906 0.351750 0.061656 0.326820 0.037156 0.316320 0.012656 0.263828 0.037156 0.245453 0.030156 0.162773 0.087896 0.084031 0.199885 0.063039 0.278625 0.080102 0.359115 0.171961 0.383615 0.242828 0.353865 0.320258 0.334615 0.404242 0.369615 0.440992 0.415104 0.477734 0.401115 0.530227 0.518344 0.668023 0.574344 0.792695 0.661823 0.996109 0.002156 0.998734 diff --git a/datasets/pinganmajia/train/labels/订单1813644_4_7173037.txt b/datasets/pinganmajia/train/labels/订单1813644_4_7173037.txt new file mode 100644 index 0000000..0148a49 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813644_4_7173037.txt @@ -0,0 +1 @@ +4 0.004463 0.178522 0.045800 0.168022 0.059579 0.145711 0.048754 0.116839 0.038913 0.072222 0.037925 0.014478 0.302692 0.013167 0.295800 0.078783 0.286942 0.148339 0.257412 0.234950 0.226904 0.275633 0.268242 0.367500 0.307613 0.513167 0.327296 0.645711 0.331233 0.866183 0.359775 0.944928 0.350917 0.997417 0.005354 1.000000 0.000000 1.000000 0.000000 0.923333 diff --git a/datasets/pinganmajia/train/labels/订单1813649_4_7172924.txt b/datasets/pinganmajia/train/labels/订单1813649_4_7172924.txt new file mode 100644 index 0000000..21f4c74 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813649_4_7172924.txt @@ -0,0 +1 @@ +4 0.035394 0.258568 0.031898 0.160139 0.087882 0.077465 0.208623 0.034158 0.336354 0.063030 0.427350 0.149644 0.441343 0.258568 0.432593 0.333368 0.432593 0.400295 0.539329 0.437040 0.514838 0.543342 0.588322 0.615521 0.682813 0.694262 0.716053 0.800564 0.703808 0.864861 0.672315 0.912109 0.700313 0.996102 0.007396 0.998724 0.002153 0.315000 0.016146 0.300564 0.010891 0.271693 0.021400 0.258568 diff --git a/datasets/pinganmajia/train/labels/订单1813650_4_7172978.txt b/datasets/pinganmajia/train/labels/订单1813650_4_7172978.txt new file mode 100644 index 0000000..b00a4ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813650_4_7172978.txt @@ -0,0 +1 @@ +4 1.000000 0.057813 0.860764 0.059109 0.791866 0.122095 0.757422 0.200833 0.745608 0.307130 0.740686 0.442303 0.754462 0.476424 0.731832 0.513171 0.696398 0.699525 0.684583 0.830752 0.691476 0.939676 0.686554 0.996111 0.874392 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813652_4_7172941.txt b/datasets/pinganmajia/train/labels/订单1813652_4_7172941.txt new file mode 100644 index 0000000..8e44960 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813652_4_7172941.txt @@ -0,0 +1 @@ +4 0.999608 0.022279 0.962876 0.007843 0.777386 0.009154 0.691650 0.090527 0.661912 0.188946 0.698644 0.371360 0.656650 0.419926 0.492173 0.505221 0.408186 0.639081 0.395948 0.703382 0.380196 0.782120 0.350441 0.855613 0.411683 0.927794 0.474673 0.950110 0.404690 0.997353 0.606797 1.000000 1.000000 1.000000 1.000000 0.094583 diff --git a/datasets/pinganmajia/train/labels/订单1813653_4_7172963.txt b/datasets/pinganmajia/train/labels/订单1813653_4_7172963.txt new file mode 100644 index 0000000..b75bdae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813653_4_7172963.txt @@ -0,0 +1 @@ +4 1.000000 0.439603 0.906010 0.437019 0.897154 0.416019 0.861721 0.364840 0.808572 0.334654 0.806601 0.257231 0.805620 0.191609 0.789870 0.055128 0.756404 0.006571 0.619596 0.013135 0.583178 0.064314 0.560538 0.171929 0.567428 0.229667 0.568413 0.304474 0.571365 0.335968 0.534947 0.392397 0.532981 0.464577 0.478846 0.557750 0.420774 0.696859 0.379437 0.847782 0.369596 0.951455 0.387332 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813654_4_7173002.txt b/datasets/pinganmajia/train/labels/订单1813654_4_7173002.txt new file mode 100644 index 0000000..c7a0072 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813654_4_7173002.txt @@ -0,0 +1 @@ +4 0.005644 0.510533 0.040639 0.501346 0.045889 0.471162 0.019639 0.443604 0.017889 0.396358 0.045889 0.368800 0.075633 0.299246 0.154372 0.248063 0.262861 0.238879 0.346850 0.287433 0.399344 0.345179 0.409844 0.431792 0.397594 0.482971 0.348600 0.577462 0.409844 0.618142 0.474583 0.791371 0.555072 0.971163 0.531667 1.000000 0.395156 1.000000 0.002144 0.996096 diff --git a/datasets/pinganmajia/train/labels/订单1813655_4_7173004.txt b/datasets/pinganmajia/train/labels/订单1813655_4_7173004.txt new file mode 100644 index 0000000..f492990 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813655_4_7173004.txt @@ -0,0 +1 @@ +4 0.000504 0.583974 0.115998 0.543295 0.110741 0.499985 0.093251 0.448804 0.051255 0.405502 0.075751 0.391065 0.072253 0.328071 0.108992 0.245394 0.236728 0.198148 0.362716 0.224398 0.465947 0.292639 0.485195 0.345131 0.474702 0.367438 0.448457 0.408125 0.444949 0.431744 0.402953 0.553796 0.492202 0.591852 0.516698 0.624660 0.611183 0.770332 0.639177 0.847755 0.612932 0.910748 0.635350 1.000000 0.002243 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813658_4_7172964.txt b/datasets/pinganmajia/train/labels/订单1813658_4_7172964.txt new file mode 100644 index 0000000..c7f8609 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813658_4_7172964.txt @@ -0,0 +1 @@ +4 0.198143 0.417379 0.129898 0.435746 0.103655 0.469868 0.075658 0.536798 0.131652 0.597160 0.161404 0.618158 0.171901 0.673279 0.184152 0.727083 0.178904 0.773015 0.203392 0.850450 0.210395 0.888509 0.219137 0.889814 0.252383 0.889814 0.245395 0.843882 0.245395 0.788761 0.247135 0.750713 0.264635 0.668026 0.280380 0.752018 0.292632 0.821579 0.327632 0.843882 0.374868 0.854386 0.385365 0.837325 0.341623 0.804518 0.331126 0.725779 0.336374 0.639156 0.348626 0.643092 0.367880 0.618158 0.381871 0.552544 0.376623 0.496118 0.329386 0.440998 0.262880 0.418684 0.269883 0.375384 0.257632 0.347818 0.215643 0.338640 0.187646 0.358322 0.187646 0.383257 0.189401 0.406875 diff --git a/datasets/pinganmajia/train/labels/订单1813660_4_7173531.txt b/datasets/pinganmajia/train/labels/订单1813660_4_7173531.txt new file mode 100644 index 0000000..5af2087 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813660_4_7173531.txt @@ -0,0 +1 @@ +4 0.988715 0.290012 0.708758 0.279516 0.634096 0.326759 0.596765 0.418621 0.606100 0.482929 0.407789 0.583977 0.335468 0.648278 0.307473 0.761140 0.377462 0.884504 0.344804 0.990803 0.401296 1.000000 0.998932 1.000000 1.000000 0.999988 1.000000 0.976593 diff --git a/datasets/pinganmajia/train/labels/订单1813661_4_7172960.txt b/datasets/pinganmajia/train/labels/订单1813661_4_7172960.txt new file mode 100644 index 0000000..c804d2e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813661_4_7172960.txt @@ -0,0 +1 @@ +4 0.013518 0.413409 0.060841 0.408157 0.116049 0.350414 0.111122 0.320227 0.114079 0.265114 0.224494 0.275609 0.219567 0.230990 0.209707 0.192930 0.223506 0.190308 0.225482 0.102378 0.265896 0.013141 0.386171 0.010519 0.455183 0.115503 0.448280 0.215244 0.438421 0.251989 0.455183 0.257240 0.438421 0.304481 0.428567 0.345162 0.411805 0.392411 0.433494 0.435714 0.457152 0.528888 0.468982 0.649627 0.465043 0.706055 0.457152 0.797922 0.455183 0.868782 0.461098 0.998709 0.004683 1.000000 -0.000000 1.000000 -0.000000 0.916242 diff --git a/datasets/pinganmajia/train/labels/订单1813663_4_7173706.txt b/datasets/pinganmajia/train/labels/订单1813663_4_7173706.txt new file mode 100644 index 0000000..1630102 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813663_4_7173706.txt @@ -0,0 +1 @@ +4 0.003987 0.429105 0.082729 0.394988 0.196471 0.322806 0.173725 0.266373 0.150964 0.228321 0.159722 0.199449 0.192958 0.211262 0.171961 0.133836 0.184216 0.068211 0.192958 0.013100 0.513170 0.007843 0.560425 0.078713 0.579673 0.181078 0.542925 0.241446 0.534167 0.286066 0.467680 0.405490 0.490425 0.480294 0.516667 0.614142 0.509673 0.775564 0.544673 0.922549 0.569167 0.968480 0.537680 0.998664 0.007484 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813664_4_7172992.txt b/datasets/pinganmajia/train/labels/订单1813664_4_7172992.txt new file mode 100644 index 0000000..2f85084 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813664_4_7172992.txt @@ -0,0 +1 @@ +4 0.532418 0.009154 0.425686 0.125956 0.443186 0.225699 0.499183 0.293934 0.537680 0.372672 0.598922 0.422549 0.506176 0.472414 0.369690 0.604963 0.299706 0.678456 0.245458 0.779498 0.259461 0.893676 0.243709 0.948787 0.231454 0.998664 0.622533 1.000000 0.997876 1.000000 0.999608 0.380551 0.887631 0.367426 0.894624 0.318873 0.926127 0.310993 0.933121 0.266373 0.934869 0.225699 0.917369 0.199449 0.950621 0.127267 0.917369 0.055086 0.843889 0.006532 diff --git a/datasets/pinganmajia/train/labels/订单1813665_4_7173097.txt b/datasets/pinganmajia/train/labels/订单1813665_4_7173097.txt new file mode 100644 index 0000000..1b37337 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813665_4_7173097.txt @@ -0,0 +1 @@ +4 0.996771 0.522361 0.927211 0.465926 0.907523 0.342569 0.903588 0.290069 0.912778 0.245451 0.923275 0.203461 0.904907 0.186400 0.903588 0.127350 0.887847 0.011863 0.488889 0.007917 0.442963 0.106343 0.458704 0.292697 0.494144 0.448866 0.395718 0.586667 0.368160 0.708704 0.348472 0.776956 0.324850 0.825509 0.310417 0.895058 0.327477 0.997419 0.658588 1.000000 1.000000 1.000000 1.000000 0.818160 diff --git a/datasets/pinganmajia/train/labels/订单1813666_4_7173053.txt b/datasets/pinganmajia/train/labels/订单1813666_4_7173053.txt new file mode 100644 index 0000000..c2ee017 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813666_4_7173053.txt @@ -0,0 +1 @@ +4 1.000000 0.451863 0.874528 0.405539 0.874528 0.388480 0.907010 0.292680 0.908977 0.263807 0.947365 0.179820 0.951299 0.084020 0.929645 0.010523 0.645196 0.007900 0.607794 0.136511 0.601887 0.194248 0.605827 0.245433 0.630435 0.304485 0.635355 0.356985 0.583186 0.438350 0.490668 0.481650 0.450313 0.542018 0.417837 0.814984 0.432494 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813667_4_7173163.txt b/datasets/pinganmajia/train/labels/订单1813667_4_7173163.txt new file mode 100644 index 0000000..71a98a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813667_4_7173163.txt @@ -0,0 +1 @@ +4 1.000000 0.690389 0.843832 0.606365 0.798336 0.593240 0.770340 0.536810 0.784337 0.497439 0.794836 0.463320 0.796586 0.393765 0.751093 0.313713 0.679351 0.292716 0.616358 0.291404 0.520121 0.329462 0.462379 0.402952 0.478126 0.451507 0.464129 0.471194 0.481626 0.521062 0.490375 0.573555 0.411635 0.627362 0.427382 0.647046 0.378388 0.720536 0.362641 0.765156 0.318896 0.857020 0.269902 0.893765 0.213910 0.941010 0.205161 0.986942 0.203821 1.000000 0.687881 1.000000 0.997811 0.997439 1.000000 0.902243 diff --git a/datasets/pinganmajia/train/labels/订单1813668_4_7173126.txt b/datasets/pinganmajia/train/labels/订单1813668_4_7173126.txt new file mode 100644 index 0000000..5c29898 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813668_4_7173126.txt @@ -0,0 +1 @@ +4 0.008400 0.545978 0.030054 0.559100 0.081233 0.544661 0.056629 0.479044 0.088125 0.393744 0.109775 0.350439 0.150129 0.328128 0.159975 0.240200 0.220012 0.162772 0.300721 0.162772 0.354854 0.191644 0.374542 0.225767 0.403083 0.270383 0.402100 0.359622 0.392258 0.419989 0.397179 0.443611 0.417846 0.523667 0.407021 0.594533 0.468046 0.640461 0.469029 0.682456 0.501508 0.744139 0.521196 0.867500 0.570408 0.993483 0.570408 1.000000 0.276542 1.000000 0.001508 0.998733 diff --git a/datasets/pinganmajia/train/labels/订单1813669_4_7173088.txt b/datasets/pinganmajia/train/labels/订单1813669_4_7173088.txt new file mode 100644 index 0000000..6c68345 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813669_4_7173088.txt @@ -0,0 +1 @@ +4 0.016276 0.996111 0.033993 0.863565 0.066476 0.765139 0.133403 0.656215 0.134384 0.639155 0.194427 0.623403 0.191476 0.577477 0.178681 0.566979 0.179661 0.552546 0.164896 0.514479 0.167847 0.475116 0.168837 0.433113 0.180642 0.435741 0.170807 0.366192 0.180642 0.288762 0.238715 0.253333 0.319427 0.234954 0.401120 0.267766 0.442457 0.342569 0.450330 0.431806 0.455252 0.587975 0.475920 0.627350 0.563524 0.689028 0.616667 0.741516 0.720998 0.807130 0.804661 0.833380 0.845017 0.867500 1.000000 0.853206 1.000000 0.897836 0.996589 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1813671_4_7173223.txt b/datasets/pinganmajia/train/labels/订单1813671_4_7173223.txt new file mode 100644 index 0000000..8cdbd90 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813671_4_7173223.txt @@ -0,0 +1 @@ +4 1.000000 0.655995 0.890175 0.628596 0.930505 0.547230 0.935763 0.409437 0.927000 0.320201 0.895443 0.254583 0.799000 0.195525 0.711330 0.199460 0.597361 0.206026 0.565804 0.257207 0.486897 0.359568 0.478134 0.439622 0.455340 0.451427 0.485144 0.557731 0.495670 0.619414 0.248443 0.681088 0.174794 0.751952 0.164278 0.784761 0.064330 0.877940 0.099402 0.901559 0.029268 0.922562 0.004722 0.951427 0.006381 1.000000 0.664897 1.000000 0.998887 0.998673 1.000000 0.944614 diff --git a/datasets/pinganmajia/train/labels/订单1813672_4_7173268.txt b/datasets/pinganmajia/train/labels/订单1813672_4_7173268.txt new file mode 100644 index 0000000..d44c842 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813672_4_7173268.txt @@ -0,0 +1 @@ +4 0.008375 0.475077 0.055620 0.447519 0.094005 0.431769 0.175697 0.408147 0.183572 0.391083 0.163885 0.312346 0.163885 0.275603 0.174712 0.223109 0.172745 0.187673 0.168808 0.080064 0.202269 0.013135 0.399120 0.007885 0.428649 0.065628 0.445380 0.137808 0.443413 0.241481 0.452269 0.254603 0.443413 0.293974 0.445380 0.318910 0.438490 0.354340 0.413885 0.414712 0.395183 0.443577 0.436524 0.465891 0.476880 0.532821 0.498534 0.632558 0.491639 0.707359 0.510341 0.904212 0.510341 0.964577 0.514139 1.000000 0.000000 1.000000 0.000000 0.922801 diff --git a/datasets/pinganmajia/train/labels/订单1813678_4_7173156.txt b/datasets/pinganmajia/train/labels/订单1813678_4_7173156.txt new file mode 100644 index 0000000..dbbf12c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813678_4_7173156.txt @@ -0,0 +1 @@ +4 0.992522 0.526279 0.926028 0.485596 0.889283 0.463288 0.906778 0.429167 0.931278 0.426542 0.933028 0.409483 0.957522 0.367488 0.952272 0.341242 0.940028 0.345179 0.945278 0.316304 0.957522 0.252000 0.908528 0.194258 0.843789 0.160137 0.766800 0.153575 0.695056 0.191633 0.644311 0.242817 0.630317 0.333367 0.607567 0.343867 0.612817 0.383233 0.632067 0.425229 0.663561 0.484283 0.565572 0.505283 0.513078 0.570900 0.495583 0.644392 0.457089 0.700821 0.486833 0.734942 0.511328 0.864862 0.474583 0.951475 0.471178 1.000000 0.578706 1.000000 0.996017 0.994783 diff --git a/datasets/pinganmajia/train/labels/订单1813679_4_7173171.txt b/datasets/pinganmajia/train/labels/订单1813679_4_7173171.txt new file mode 100644 index 0000000..c6f96ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813679_4_7173171.txt @@ -0,0 +1 @@ +4 0.273361 0.210008 0.264611 0.170637 0.269861 0.140454 0.318856 0.112896 0.353850 0.135204 0.362600 0.168013 0.355600 0.199508 0.341600 0.225754 0.374844 0.241504 0.399344 0.279562 0.418589 0.343867 0.420339 0.419979 0.420339 0.452788 0.402844 0.461975 0.395844 0.464600 0.380094 0.506596 0.376594 0.572213 0.366100 0.637829 0.359100 0.647012 0.394094 0.669325 0.367850 0.678513 0.336350 0.666700 0.310106 0.658825 0.308356 0.639142 0.294356 0.593208 0.297856 0.540717 0.287356 0.577462 0.287356 0.615517 0.289106 0.641767 0.264611 0.657512 0.268111 0.678513 0.259361 0.698196 0.231367 0.675888 0.226117 0.656200 0.206867 0.615517 0.194622 0.528904 0.196367 0.489533 0.173622 0.476413 0.173622 0.438354 0.145628 0.356988 0.168372 0.270375 0.205117 0.228379 0.261111 0.217879 diff --git a/datasets/pinganmajia/train/labels/订单1813681_4_7173191.txt b/datasets/pinganmajia/train/labels/订单1813681_4_7173191.txt new file mode 100644 index 0000000..44960c4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813681_4_7173191.txt @@ -0,0 +1 @@ +4 0.010980 0.429105 0.084477 0.438297 0.089722 0.370049 0.052990 0.356924 0.028480 0.280809 0.054739 0.287377 0.044232 0.230944 0.114232 0.165331 0.252451 0.124645 0.339951 0.191569 0.369690 0.241446 0.374935 0.349056 0.374935 0.412047 0.336454 0.455355 0.381944 0.535404 0.441438 0.627267 0.462435 0.671887 0.516667 0.730944 0.591912 0.790000 0.584918 0.841176 0.612908 0.876618 0.579673 0.930417 0.556912 0.965858 0.614248 1.000000 0.415327 1.000000 0.000490 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813683_4_7173197.txt b/datasets/pinganmajia/train/labels/订单1813683_4_7173197.txt new file mode 100644 index 0000000..31a382e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813683_4_7173197.txt @@ -0,0 +1 @@ +4 0.004462 0.357002 0.019227 0.351759 0.019227 0.342569 0.068437 0.308449 0.063524 0.270394 0.061554 0.245451 0.050729 0.216586 0.058602 0.200833 0.053681 0.157523 0.042847 0.077477 0.093047 0.006609 0.214115 0.010544 0.287925 0.060417 0.303681 0.148345 0.302691 0.219213 0.300729 0.299259 0.278090 0.366192 0.300729 0.397685 0.312535 0.437060 0.346988 0.547292 0.350920 0.605035 0.379462 0.679838 0.363715 0.685093 0.376510 0.808449 0.391276 0.926562 0.406042 0.951493 0.402101 0.981678 0.393247 0.997419 0.000000 0.997419 0.000000 0.841215 diff --git a/datasets/pinganmajia/train/labels/订单1813684_4_7178093.txt b/datasets/pinganmajia/train/labels/订单1813684_4_7178093.txt new file mode 100644 index 0000000..b4d0d52 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813684_4_7178093.txt @@ -0,0 +1 @@ +4 0.998773 0.297877 0.771182 0.286072 0.619477 0.330690 0.585750 0.413365 0.591386 0.505234 0.616659 0.572155 0.568909 0.591847 0.546432 0.619406 0.358182 0.719140 0.282318 0.788694 0.195227 0.877930 0.124977 0.947484 0.012568 1.000000 0.991182 1.000000 0.995955 0.999979 diff --git a/datasets/pinganmajia/train/labels/订单1813686_4_7173251.txt b/datasets/pinganmajia/train/labels/订单1813686_4_7173251.txt new file mode 100644 index 0000000..9ff6731 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813686_4_7173251.txt @@ -0,0 +1 @@ +4 0.995271 0.374014 0.941027 0.325458 0.851788 0.300519 0.708304 0.322829 0.689054 0.353010 0.596321 0.417318 0.585825 0.454066 0.643564 0.447500 0.659308 0.472439 0.648812 0.527552 0.664567 0.555112 0.701303 0.637794 0.582318 0.690285 0.533333 0.753279 0.512330 0.864827 0.498328 0.998685 1.000000 0.997379 1.000000 0.710986 diff --git a/datasets/pinganmajia/train/labels/订单1813687_4_7173490.txt b/datasets/pinganmajia/train/labels/订单1813687_4_7173490.txt new file mode 100644 index 0000000..0ade2ff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813687_4_7173490.txt @@ -0,0 +1 @@ +4 0.005735 0.396299 0.037239 0.367426 0.010980 0.328051 0.017990 0.282120 0.021487 0.240135 0.052990 0.219130 0.117729 0.124645 0.210458 0.070833 0.355703 0.065588 0.488676 0.119400 0.542925 0.181078 0.555163 0.270319 0.499183 0.367426 0.462435 0.433039 0.392435 0.524902 0.418693 0.635147 0.458938 0.729632 0.467680 0.828051 0.478186 0.905490 0.462435 0.898922 0.405866 1.000000 0.005735 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813688_4_7173210.txt b/datasets/pinganmajia/train/labels/订单1813688_4_7173210.txt new file mode 100644 index 0000000..2c8a161 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813688_4_7173210.txt @@ -0,0 +1 @@ +4 0.598920 0.372680 0.591920 0.387110 0.534173 0.406800 0.504427 0.501290 0.574413 0.526220 0.541173 0.519660 0.541173 0.539340 0.565667 0.574780 0.581413 0.660080 0.598920 0.690260 0.593667 0.771630 0.574413 0.803120 0.569173 0.821500 0.604160 0.822810 0.616413 0.804440 0.647907 0.795250 0.647907 0.750630 0.651413 0.704700 0.658413 0.670580 0.677653 0.707320 0.696907 0.741440 0.709147 0.776880 0.724893 0.811000 0.747640 0.834620 0.780893 0.846430 0.772147 0.813620 0.765147 0.780810 0.751147 0.742760 0.737147 0.690260 0.737147 0.612830 0.751147 0.581340 0.777387 0.498660 0.724893 0.388420 0.663653 0.373990 0.672400 0.356930 0.675907 0.335930 0.651413 0.304440 0.609413 0.311000 0.597160 0.329370 0.591920 0.349050 diff --git a/datasets/pinganmajia/train/labels/订单1813689_4_7173277.txt b/datasets/pinganmajia/train/labels/订单1813689_4_7173277.txt new file mode 100644 index 0000000..aef4ba6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813689_4_7173277.txt @@ -0,0 +1 @@ +4 0.782544 0.313679 0.772050 0.332054 0.717806 0.343867 0.693306 0.401608 0.661811 0.551212 0.677561 0.563025 0.700306 0.585333 0.705556 0.561712 0.714306 0.538092 0.719556 0.563025 0.731800 0.650950 0.738800 0.668013 0.738800 0.790058 0.751050 0.808433 0.731800 0.837304 0.745800 0.850425 0.777294 0.853050 0.779044 0.833367 0.786044 0.800558 0.791294 0.690321 0.810544 0.593208 0.808794 0.681133 0.808794 0.771687 0.814044 0.791371 0.805294 0.812371 0.835039 0.824179 0.889283 0.853050 0.891033 0.829429 0.863033 0.797933 0.873533 0.700821 0.870033 0.673262 0.884033 0.563025 0.906778 0.530217 0.917278 0.559087 0.919028 0.578775 0.945278 0.584021 0.955772 0.560400 0.971522 0.506596 0.936528 0.355675 0.878783 0.332054 0.852539 0.318929 0.850789 0.291371 0.863033 0.269062 0.824539 0.231004 0.791294 0.238879 0.775544 0.259875 0.780794 0.282183 0.770300 0.288746 0.779044 0.304496 diff --git a/datasets/pinganmajia/train/labels/订单1813690_4_7173398.txt b/datasets/pinganmajia/train/labels/订单1813690_4_7173398.txt new file mode 100644 index 0000000..4855525 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813690_4_7173398.txt @@ -0,0 +1 @@ +4 0.001993 0.475090 0.053178 0.435719 0.104355 0.423913 0.083358 0.353047 0.089918 0.305801 0.122729 0.311046 0.122729 0.225752 0.169975 0.165384 0.255278 0.131258 0.343203 0.147010 0.387819 0.185065 0.431127 0.257247 0.444248 0.345172 0.437688 0.433096 0.412753 0.502647 0.488873 0.565645 0.432443 0.633881 0.416691 0.653570 0.469183 0.751993 0.492810 0.763807 0.479681 0.809739 0.511822 1.000000 0.202565 1.000000 0.000000 0.997410 0.000000 0.872034 diff --git a/datasets/pinganmajia/train/labels/订单1813691_4_7173520.txt b/datasets/pinganmajia/train/labels/订单1813691_4_7173520.txt new file mode 100644 index 0000000..9029358 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813691_4_7173520.txt @@ -0,0 +1 @@ +4 0.005648 0.523655 0.065139 0.501345 0.066887 0.452795 0.030139 0.430486 0.016146 0.371424 0.047639 0.364861 0.045891 0.286128 0.093137 0.220512 0.180625 0.189010 0.311863 0.206076 0.367847 0.245443 0.380104 0.304497 0.397593 0.404236 0.381852 0.468542 0.332859 0.540720 0.387095 0.553845 0.427350 0.662769 0.448345 0.716571 0.500104 1.000000 0.003900 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813695_4_7173291.txt b/datasets/pinganmajia/train/labels/订单1813695_4_7173291.txt new file mode 100644 index 0000000..51250cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813695_4_7173291.txt @@ -0,0 +1 @@ +4 0.004463 0.493483 0.133400 0.459361 0.126508 0.404244 0.107808 0.367500 0.105842 0.325506 0.125525 0.322878 0.135367 0.238889 0.190483 0.164083 0.270208 0.173272 0.298754 0.219206 0.322375 0.325506 0.325329 0.355689 0.329267 0.380622 0.308596 0.459361 0.309579 0.506606 0.308596 0.523667 0.406037 0.603717 0.425721 0.696894 0.489700 0.998733 0.015767 1.000000 0.000000 1.000000 0.000000 0.952744 diff --git a/datasets/pinganmajia/train/labels/订单1813698_4_7173354.txt b/datasets/pinganmajia/train/labels/订单1813698_4_7173354.txt new file mode 100644 index 0000000..7fbe6b1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813698_4_7173354.txt @@ -0,0 +1 @@ +4 0.009258 0.149600 0.171992 0.164033 0.318971 0.280830 0.301471 0.379258 0.303229 0.490801 0.276979 0.532803 0.364466 0.590537 0.457201 0.707344 0.579688 0.927813 0.621680 0.999990 0.000000 0.997383 0.000000 0.710508 diff --git a/datasets/pinganmajia/train/labels/订单1813699_4_7173353.txt b/datasets/pinganmajia/train/labels/订单1813699_4_7173353.txt new file mode 100644 index 0000000..a9e748b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813699_4_7173353.txt @@ -0,0 +1 @@ +4 0.007484 0.097083 0.063480 0.045907 0.206961 0.051152 0.353938 0.076091 0.415180 0.141703 0.439690 0.223076 0.394183 0.304436 0.380196 0.345123 0.362696 0.387108 0.331193 0.454044 0.348693 0.478971 0.383693 0.475037 0.311944 0.532782 0.387190 0.673199 0.390686 0.779498 0.404690 0.841176 0.430098 1.000000 0.084167 1.000000 0.000000 0.998738 0.000000 0.648284 diff --git a/datasets/pinganmajia/train/labels/订单1813702_4_7173382.txt b/datasets/pinganmajia/train/labels/订单1813702_4_7173382.txt new file mode 100644 index 0000000..a773c90 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813702_4_7173382.txt @@ -0,0 +1 @@ +4 0.374961 0.311016 0.429206 0.297891 0.429206 0.274268 0.413464 0.255898 0.420456 0.244082 0.441458 0.204717 0.474701 0.206025 0.497448 0.232275 0.500951 0.254580 0.495703 0.276895 0.504453 0.297891 0.562187 0.313643 0.604193 0.359570 0.640938 0.423877 0.660182 0.472432 0.703919 0.497363 0.675924 0.492119 0.677682 0.503926 0.644427 0.488184 0.646185 0.501299 0.625182 0.477686 0.595443 0.430439 0.551693 0.400254 0.569193 0.473740 0.562187 0.503926 0.542943 0.591855 0.548190 0.616787 0.546445 0.677158 0.569193 0.724404 0.546445 0.727021 0.521953 0.708652 0.507943 0.690283 0.500951 0.612852 0.478203 0.553799 0.471198 0.602354 0.457201 0.658779 0.465951 0.686338 0.429206 0.706025 0.408216 0.724404 0.383711 0.715215 0.423958 0.670596 0.416966 0.583984 0.394219 0.492119 0.380221 0.527549 0.366211 0.509180 0.343464 0.418623 0.360964 0.347764 diff --git a/datasets/pinganmajia/train/labels/订单1813703_4_7173460.txt b/datasets/pinganmajia/train/labels/订单1813703_4_7173460.txt new file mode 100644 index 0000000..a4b9c23 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813703_4_7173460.txt @@ -0,0 +1 @@ +4 0.000000 0.483591 0.052990 0.461912 0.054739 0.410735 0.021487 0.414669 0.002239 0.400233 0.002239 0.173199 0.152712 0.131201 0.280458 0.132525 0.352190 0.174510 0.376699 0.263750 0.364444 0.321495 0.362696 0.389743 0.301454 0.498664 0.413431 0.520968 0.464183 0.666642 0.481683 0.772941 0.551667 0.973725 0.540000 1.000000 0.003922 1.000000 0.000000 0.767574 diff --git a/datasets/pinganmajia/train/labels/订单1813704_4_7173387.txt b/datasets/pinganmajia/train/labels/订单1813704_4_7173387.txt new file mode 100644 index 0000000..a9848c5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813704_4_7173387.txt @@ -0,0 +1 @@ +4 0.005735 0.473725 0.091471 0.457978 0.157974 0.472414 0.208709 0.514412 0.222712 0.577402 0.233203 0.620711 0.234967 0.666642 0.206961 0.728321 0.227958 0.749314 0.327696 0.820184 0.395948 0.897610 0.438595 1.000000 0.149886 1.000000 0.000490 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813705_4_7173451.txt b/datasets/pinganmajia/train/labels/订单1813705_4_7173451.txt new file mode 100644 index 0000000..b8c9fd5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813705_4_7173451.txt @@ -0,0 +1 @@ +4 0.000490 0.429105 0.089722 0.402855 0.087974 0.331998 0.056487 0.322806 0.047729 0.280809 0.045980 0.234877 0.061732 0.232255 0.049477 0.181078 0.072222 0.115453 0.136977 0.077402 0.215719 0.065588 0.339951 0.090527 0.409935 0.161385 0.422190 0.211262 0.413431 0.271630 0.380196 0.408113 0.341699 0.459289 0.464183 0.544596 0.537680 0.639081 0.558676 0.703382 0.602418 0.939608 0.618840 1.000000 0.157222 1.000000 -0.000000 0.998676 0.000000 0.588113 diff --git a/datasets/pinganmajia/train/labels/订单1813706_4_7173421.txt b/datasets/pinganmajia/train/labels/订单1813706_4_7173421.txt new file mode 100644 index 0000000..c65b04f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813706_4_7173421.txt @@ -0,0 +1 @@ +4 0.993637 0.707396 0.961155 0.654907 0.883403 0.582720 0.938524 0.502674 0.876510 0.389815 0.933602 0.301887 0.998559 0.203461 0.996589 0.015799 0.692457 0.005301 0.645217 0.107662 0.625530 0.213958 0.605842 0.330752 0.551710 0.374063 0.402101 0.397685 0.325330 0.527604 0.266276 0.648345 0.281042 0.920000 0.311042 1.000000 0.997543 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813707_4_7173500.txt b/datasets/pinganmajia/train/labels/订单1813707_4_7173500.txt new file mode 100644 index 0000000..03fd3fe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813707_4_7173500.txt @@ -0,0 +1 @@ +4 0.322474 0.007861 0.359219 0.059043 0.329466 0.133848 0.311979 0.183721 0.297982 0.209961 0.296224 0.249336 0.261224 0.326758 0.220990 0.359570 0.268229 0.392383 0.311979 0.492119 0.324219 0.522305 0.399466 0.614160 0.413464 0.674531 0.402969 0.711279 0.409961 0.730957 0.374961 0.783457 0.446706 0.988184 0.041667 1.000000 0.000000 1.000000 0.000000 0.007861 diff --git a/datasets/pinganmajia/train/labels/订单1813709_4_7173655.txt b/datasets/pinganmajia/train/labels/订单1813709_4_7173655.txt new file mode 100644 index 0000000..4f7d8e5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813709_4_7173655.txt @@ -0,0 +1 @@ +4 1.000000 0.290013 0.929635 0.316282 0.804635 0.244103 0.795774 0.150929 0.754437 0.006571 0.482784 0.009199 0.501486 0.187673 0.517231 0.219173 0.519202 0.241481 0.537904 0.280853 0.545774 0.309724 0.541837 0.332032 0.498534 0.405519 0.510341 0.454077 0.423726 0.530192 0.352861 0.825468 0.347087 1.000000 0.993644 1.000000 1.000000 0.539160 diff --git a/datasets/pinganmajia/train/labels/订单1813710_4_7173416.txt b/datasets/pinganmajia/train/labels/订单1813710_4_7173416.txt new file mode 100644 index 0000000..d7f883e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813710_4_7173416.txt @@ -0,0 +1 @@ +4 0.999514 0.443577 0.897154 0.406833 0.909947 0.337282 0.906995 0.284788 0.930620 0.107622 0.860736 0.036756 0.760341 0.039378 0.693413 0.098436 0.652077 0.161429 0.656010 0.296596 0.668808 0.380590 0.677663 0.434391 0.613688 0.497385 0.606798 0.531506 0.595971 0.734917 0.618500 1.000000 0.999514 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813711_4_7173507.txt b/datasets/pinganmajia/train/labels/订单1813711_4_7173507.txt new file mode 100644 index 0000000..2cd5e10 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813711_4_7173507.txt @@ -0,0 +1 @@ +4 0.000000 0.567745 0.114232 0.493407 0.115980 0.463223 0.091471 0.452733 0.100229 0.405490 0.115980 0.370049 0.119477 0.313627 0.178971 0.236189 0.331193 0.211262 0.416944 0.242757 0.455425 0.316250 0.462435 0.377929 0.451928 0.490784 0.397696 0.561654 0.509673 0.643015 0.656650 0.748002 0.740654 0.838554 0.754641 0.883174 0.780899 0.921238 0.784395 0.955355 0.773431 1.000000 0.157990 1.000000 0.000490 0.998664 0.000000 0.958799 diff --git a/datasets/pinganmajia/train/labels/订单1813713_4_7173629.txt b/datasets/pinganmajia/train/labels/订单1813713_4_7173629.txt new file mode 100644 index 0000000..3c38dc9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813713_4_7173629.txt @@ -0,0 +1 @@ +4 0.007396 0.897674 0.150880 0.787439 0.220868 0.725755 0.252361 0.691641 0.455336 0.622083 0.444838 0.581398 0.429097 0.543342 0.413345 0.494783 0.427350 0.494783 0.430845 0.387179 0.521829 0.316311 0.625069 0.311059 0.730058 0.346493 0.765058 0.410799 0.763299 0.501345 0.775556 0.503976 0.758056 0.538090 0.761551 0.577465 0.751053 0.622083 0.892789 0.757257 0.986748 1.000000 0.480313 1.000000 0.000394 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1813714_4_7173456.txt b/datasets/pinganmajia/train/labels/订单1813714_4_7173456.txt new file mode 100644 index 0000000..5351567 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813714_4_7173456.txt @@ -0,0 +1 @@ +4 0.995137 0.440980 0.869163 0.409480 0.827163 0.367480 0.774667 0.252000 0.568196 0.269059 0.508706 0.334676 0.513948 0.412108 0.531451 0.455412 0.590941 0.536775 0.491203 0.557775 0.541948 0.758559 0.538510 1.000000 0.998614 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813716_4_7173555.txt b/datasets/pinganmajia/train/labels/订单1813716_4_7173555.txt new file mode 100644 index 0000000..fa12230 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813716_4_7173555.txt @@ -0,0 +1 @@ +4 0.206992 0.271641 0.175495 0.303145 0.136992 0.324141 0.060000 0.478994 0.084505 0.597100 0.107253 0.606289 0.142240 0.639102 0.168490 0.643037 0.194740 0.770332 0.219232 0.846445 0.219232 0.888437 0.210482 0.929121 0.252487 0.933066 0.283971 0.856943 0.294479 0.813643 0.278724 0.742773 0.290977 0.637783 0.332969 0.741465 0.341719 0.833320 0.378464 0.864824 0.444961 0.887129 0.439714 0.858262 0.415208 0.811016 0.418711 0.730957 0.399466 0.577422 0.413464 0.606289 0.441458 0.612852 0.439714 0.561670 0.460703 0.507861 0.460703 0.451436 0.395964 0.318887 0.339974 0.271641 0.329466 0.191592 0.268229 0.171904 0.212240 0.187656 0.205234 0.225713 0.201732 0.257207 diff --git a/datasets/pinganmajia/train/labels/订单1813717_4_7173546.txt b/datasets/pinganmajia/train/labels/订单1813717_4_7173546.txt new file mode 100644 index 0000000..3293842 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813717_4_7173546.txt @@ -0,0 +1 @@ +4 0.483431 0.404167 0.422190 0.451422 0.390686 0.517034 0.252451 0.565588 0.154477 0.677132 0.000000 0.771103 0.000000 0.903150 0.002239 0.999975 0.022827 1.000000 1.000000 1.000000 1.000000 0.805527 0.994363 0.578713 0.938366 0.555086 0.884134 0.475037 0.836879 0.439608 0.852631 0.400233 0.845637 0.322806 0.871879 0.223076 0.782647 0.135147 0.658399 0.119400 0.560425 0.156140 0.511422 0.225699 0.481683 0.322806 diff --git a/datasets/pinganmajia/train/labels/订单1813720_4_7173776.txt b/datasets/pinganmajia/train/labels/订单1813720_4_7173776.txt new file mode 100644 index 0000000..968ef86 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813720_4_7173776.txt @@ -0,0 +1 @@ +4 0.997561 0.383227 0.938505 0.376667 0.936538 0.303178 0.929645 0.194248 0.909963 0.055147 0.862714 0.007900 0.759369 0.007900 0.691458 0.024959 0.642243 0.094518 0.635355 0.177190 0.647163 0.364853 0.678664 0.431781 0.573346 0.497402 0.509369 0.707377 0.478860 0.937034 0.494608 0.996087 1.000000 0.993464 1.000000 0.887712 diff --git a/datasets/pinganmajia/train/labels/订单1813721_4_7173611.txt b/datasets/pinganmajia/train/labels/订单1813721_4_7173611.txt new file mode 100644 index 0000000..08d61b2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813721_4_7173611.txt @@ -0,0 +1 @@ +4 0.005644 0.280871 0.143878 0.273000 0.248861 0.339929 0.283861 0.422604 0.287356 0.463288 0.290856 0.514467 0.257611 0.626017 0.311856 0.662763 0.392344 0.875362 0.453589 0.997408 0.155250 1.000000 0.000389 1.000000 0.000000 0.908600 0.000000 0.529521 diff --git a/datasets/pinganmajia/train/labels/订单1813726_4_7173697.txt b/datasets/pinganmajia/train/labels/订单1813726_4_7173697.txt new file mode 100644 index 0000000..74a0f8c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813726_4_7173697.txt @@ -0,0 +1 @@ +4 0.005634 0.325479 0.110134 0.307102 0.110134 0.240179 0.097317 0.225739 0.094360 0.186372 0.080561 0.145690 0.099293 0.143068 0.094360 0.053823 0.111122 0.007890 0.291530 0.009205 0.317165 0.089261 0.310262 0.181120 0.325049 0.183750 0.316177 0.217865 0.310262 0.259862 0.282659 0.339911 0.302378 0.342541 0.310262 0.366161 0.379274 0.489521 0.391104 0.631250 0.421665 0.855666 0.412793 0.879286 0.425335 1.000000 0.000000 1.000000 0.000000 0.970479 diff --git a/datasets/pinganmajia/train/labels/订单1813728_4_7173665.txt b/datasets/pinganmajia/train/labels/订单1813728_4_7173665.txt new file mode 100644 index 0000000..cdf53a7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813728_4_7173665.txt @@ -0,0 +1 @@ +4 0.665430 0.010488 0.626940 0.127285 0.619935 0.213906 0.635677 0.261143 0.591940 0.346445 0.490456 0.425186 0.493945 0.472432 0.497448 0.513115 0.507943 0.532803 0.467708 0.601045 0.443203 0.639102 0.446706 0.660098 0.436211 0.698154 0.444961 0.737520 0.472956 0.809697 0.488698 0.892383 0.436211 0.922559 0.439714 0.946182 0.493945 0.961934 0.548190 0.951436 0.605938 0.942246 0.649687 0.902881 0.717917 0.937002 0.723177 0.994746 0.910143 1.000000 1.000000 1.000000 1.000000 0.009199 diff --git a/datasets/pinganmajia/train/labels/订单1813731_4_7173779.txt b/datasets/pinganmajia/train/labels/订单1813731_4_7173779.txt new file mode 100644 index 0000000..ece6348 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813731_4_7173779.txt @@ -0,0 +1 @@ +4 0.000000 0.137191 0.136216 0.123349 0.225649 0.156157 0.285258 0.241458 0.290515 0.322824 0.276495 0.433056 0.218629 0.476366 0.220381 0.528858 0.318577 0.666651 0.383454 0.809699 0.423505 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813733_4_7173724.txt b/datasets/pinganmajia/train/labels/订单1813733_4_7173724.txt new file mode 100644 index 0000000..30d0757 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813733_4_7173724.txt @@ -0,0 +1 @@ +4 0.000369 0.127315 0.089612 0.074822 0.229593 0.066946 0.362576 0.107628 0.416818 0.208679 0.408068 0.297919 0.380076 0.367472 0.366080 0.447521 0.371326 0.545952 0.411572 0.618125 0.422074 0.788729 0.472813 0.866158 0.536307 1.000000 0.180634 1.000000 0.005625 0.998707 diff --git a/datasets/pinganmajia/train/labels/订单1813734_4_7174472.txt b/datasets/pinganmajia/train/labels/订单1813734_4_7174472.txt new file mode 100644 index 0000000..330ebcc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813734_4_7174472.txt @@ -0,0 +1 @@ +4 1.000000 0.609637 0.929488 0.565602 0.941691 0.545918 0.960861 0.513110 0.957377 0.446181 0.929488 0.439622 0.889416 0.317569 0.795307 0.276890 0.622797 0.288704 0.540891 0.372693 0.542633 0.442245 0.572254 0.602353 0.504293 0.729645 0.478156 0.847755 0.533914 0.998673 0.997449 0.997361 1.000000 0.714475 diff --git a/datasets/pinganmajia/train/labels/订单1813737_4_7173790.txt b/datasets/pinganmajia/train/labels/订单1813737_4_7173790.txt new file mode 100644 index 0000000..af37883 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813737_4_7173790.txt @@ -0,0 +1 @@ +4 1.000000 0.421648 0.919006 0.405526 0.938258 0.364844 0.943504 0.324162 0.919006 0.318913 0.948750 0.249361 0.892765 0.167997 0.765028 0.118125 0.653040 0.140440 0.565549 0.244112 0.546307 0.345163 0.556799 0.455398 0.570805 0.475085 0.427320 0.542010 0.443068 0.584006 0.411572 0.660121 0.422074 0.780859 0.406326 0.895028 0.387074 1.000000 0.999508 1.000000 1.000000 0.945966 diff --git a/datasets/pinganmajia/train/labels/订单1813740_4_7173889.txt b/datasets/pinganmajia/train/labels/订单1813740_4_7173889.txt new file mode 100644 index 0000000..385f64a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813740_4_7173889.txt @@ -0,0 +1 @@ +4 0.002466 0.492135 0.031995 0.464577 0.233769 0.429147 0.219990 0.418647 0.213096 0.367462 0.212115 0.329404 0.224909 0.329404 0.219990 0.267724 0.252466 0.192923 0.310538 0.162737 0.404043 0.211295 0.418808 0.278224 0.418808 0.339904 0.421760 0.375340 0.395183 0.489513 0.391250 0.524942 0.462115 0.770353 0.472697 1.000000 0.002466 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813741_4_7174109.txt b/datasets/pinganmajia/train/labels/订单1813741_4_7174109.txt new file mode 100644 index 0000000..4c16c51 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813741_4_7174109.txt @@ -0,0 +1 @@ +4 0.012729 0.295245 0.056487 0.265061 0.115980 0.275564 0.143971 0.192892 0.115980 0.162708 0.110719 0.118088 0.135229 0.094461 0.164967 0.106275 0.175474 0.011789 0.530670 0.015723 0.556912 0.114142 0.523676 0.199449 0.478186 0.246691 0.341699 0.380551 0.404690 0.423860 0.478186 0.492096 0.534167 0.632525 0.677647 0.850368 0.757451 1.000000 0.387958 1.000000 0.002239 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813742_4_7173802.txt b/datasets/pinganmajia/train/labels/订单1813742_4_7173802.txt new file mode 100644 index 0000000..d861fe2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813742_4_7173802.txt @@ -0,0 +1 @@ +4 0.007484 0.431728 0.094984 0.421238 0.068725 0.400233 0.059984 0.371360 0.042484 0.338554 0.061732 0.339865 0.047729 0.253260 0.084477 0.206005 0.168464 0.167953 0.259461 0.190257 0.317206 0.236189 0.360948 0.314939 0.381944 0.405490 0.343448 0.475037 0.450180 0.509154 0.457190 0.555086 0.516667 0.640392 0.675899 0.742757 0.672402 0.793934 0.653154 0.868738 0.711503 1.000000 0.005735 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813744_4_7173834.txt b/datasets/pinganmajia/train/labels/订单1813744_4_7173834.txt new file mode 100644 index 0000000..ed0b2ae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813744_4_7173834.txt @@ -0,0 +1 @@ +4 0.999608 0.039338 0.896373 0.015723 0.733644 0.044596 0.623415 0.135147 0.644412 0.291311 0.637402 0.370049 0.705654 0.505221 0.548170 0.528848 0.406438 0.602341 0.341699 0.669265 0.259461 0.719130 0.219216 0.786066 0.110719 0.999975 0.992614 0.999975 1.000000 0.721458 1.000000 0.533260 0.982124 0.515723 1.000000 0.487672 1.000000 0.137794 diff --git a/datasets/pinganmajia/train/labels/订单1813745_4_7173952.txt b/datasets/pinganmajia/train/labels/订单1813745_4_7173952.txt new file mode 100644 index 0000000..c29da28 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813745_4_7173952.txt @@ -0,0 +1 @@ +4 0.005648 0.290061 0.079144 0.294002 0.091389 0.261189 0.114132 0.241502 0.126377 0.249384 0.166632 0.152266 0.275116 0.094523 0.420347 0.098464 0.516586 0.178516 0.516586 0.266441 0.495590 0.360929 0.453588 0.456727 0.553333 0.523655 0.535833 0.603707 0.633819 0.716571 0.649572 0.881927 0.633819 0.930486 0.656562 0.997413 0.225116 1.000000 0.000405 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813746_4_7173873.txt b/datasets/pinganmajia/train/labels/订单1813746_4_7173873.txt new file mode 100644 index 0000000..ffa409a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813746_4_7173873.txt @@ -0,0 +1 @@ +4 1.000000 0.462911 0.924737 0.443611 0.896196 0.409494 0.892258 0.388494 0.896196 0.362250 0.900129 0.278261 0.893242 0.143089 0.764304 0.082722 0.684579 0.132589 0.659975 0.211328 0.667846 0.305817 0.671783 0.426550 0.696392 0.485606 0.636350 0.586656 0.590092 0.753322 0.573358 0.992167 0.999146 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813747_4_7173974.txt b/datasets/pinganmajia/train/labels/订单1813747_4_7173974.txt new file mode 100644 index 0000000..e3cce95 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813747_4_7173974.txt @@ -0,0 +1 @@ +4 0.005083 0.062952 0.095515 0.066891 0.095515 0.026204 0.091583 0.010458 0.356000 0.011774 0.339289 0.074764 0.299971 0.188940 0.342240 0.257179 0.361897 0.426473 0.371730 0.526204 0.402201 0.671878 0.400235 0.691564 0.418912 0.762428 0.413995 0.792611 0.407113 0.778174 0.391387 0.801800 0.388436 0.776865 0.375662 0.791302 0.366814 0.782114 0.365828 0.909411 0.316681 0.952716 0.325529 0.997336 0.105363 1.000000 0.000172 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813748_4_7173907.txt b/datasets/pinganmajia/train/labels/订单1813748_4_7173907.txt new file mode 100644 index 0000000..e3c559b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813748_4_7173907.txt @@ -0,0 +1 @@ +4 0.012757 0.253272 0.103745 0.242770 0.206986 0.269020 0.238477 0.303140 0.243724 0.317569 0.264722 0.419938 0.271728 0.461929 0.240226 0.523611 0.289218 0.530170 0.234979 0.580039 0.378457 0.727022 0.388961 0.817569 0.469444 0.999985 0.000000 0.999985 0.000000 0.933750 diff --git a/datasets/pinganmajia/train/labels/订单1813749_4_7173994.txt b/datasets/pinganmajia/train/labels/订单1813749_4_7173994.txt new file mode 100644 index 0000000..5081a29 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813749_4_7173994.txt @@ -0,0 +1 @@ +4 0.000509 0.158815 0.046771 0.139134 0.234761 0.216560 0.263309 0.132574 0.319412 0.010523 0.461140 0.009216 0.511336 0.101078 0.514289 0.181127 0.488701 0.272990 0.439485 0.404224 0.456219 0.425221 0.473940 0.577451 0.455239 0.728374 0.446379 0.942279 0.418676 1.000000 0.001495 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813751_4_7173920.txt b/datasets/pinganmajia/train/labels/订单1813751_4_7173920.txt new file mode 100644 index 0000000..a83e211 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813751_4_7173920.txt @@ -0,0 +1 @@ +4 0.020217 0.359630 0.105842 0.342569 0.095998 0.313692 0.080252 0.283507 0.070408 0.223148 0.055642 0.103727 0.089115 0.039421 0.120608 0.009236 0.260373 0.013171 0.302691 0.127350 0.311554 0.228391 0.307613 0.313692 0.285964 0.372755 0.390295 0.440995 0.430642 0.589282 0.470998 0.723148 0.470017 0.891123 0.422769 0.922616 0.452248 1.000000 0.000000 1.000000 0.000000 0.687141 0.002500 0.362257 diff --git a/datasets/pinganmajia/train/labels/订单1813752_4_7173989.txt b/datasets/pinganmajia/train/labels/订单1813752_4_7173989.txt new file mode 100644 index 0000000..87da2d6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813752_4_7173989.txt @@ -0,0 +1 @@ +4 1.000000 0.454844 0.940035 0.417361 0.875289 0.366181 0.866539 0.347804 0.882292 0.307127 0.875289 0.254627 0.870035 0.127335 0.766806 0.061719 0.665313 0.073524 0.569074 0.132578 0.520081 0.196884 0.521829 0.311059 0.548079 0.396363 0.597072 0.455417 0.581331 0.500035 0.521829 0.566962 0.443090 0.715260 0.334606 0.984288 0.342465 1.000000 0.994317 1.000000 1.000000 0.841276 diff --git a/datasets/pinganmajia/train/labels/订单1813753_4_7173886.txt b/datasets/pinganmajia/train/labels/订单1813753_4_7173886.txt new file mode 100644 index 0000000..8f4bfa2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813753_4_7173886.txt @@ -0,0 +1 @@ +4 0.002239 0.282120 0.100229 0.258505 0.226209 0.295245 0.268203 0.379240 0.275212 0.456667 0.257712 0.535404 0.315458 0.566900 0.297958 0.607586 0.346944 0.708640 0.338203 0.818873 0.367320 1.000000 0.000000 1.000000 0.000000 0.466483 diff --git a/datasets/pinganmajia/train/labels/订单1813754_4_7173928.txt b/datasets/pinganmajia/train/labels/订单1813754_4_7173928.txt new file mode 100644 index 0000000..748c160 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813754_4_7173928.txt @@ -0,0 +1 @@ +4 0.005794 0.486912 0.051107 0.463284 0.098164 0.439667 0.085964 0.412108 0.058086 0.389794 0.033685 0.313676 0.030195 0.213941 0.096432 0.147010 0.216693 0.137824 0.371810 0.185069 0.401445 0.278245 0.403190 0.388480 0.326497 0.501343 0.427591 0.559088 0.441523 0.708696 0.438047 0.994784 0.187565 1.000000 0.000000 1.000000 0.000000 0.830627 diff --git a/datasets/pinganmajia/train/labels/订单1813755_4_7174068.txt b/datasets/pinganmajia/train/labels/订单1813755_4_7174068.txt new file mode 100644 index 0000000..07b9ba5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813755_4_7174068.txt @@ -0,0 +1 @@ +4 0.378462 0.018399 0.330239 0.254616 0.283977 0.367484 0.256415 0.461969 0.383388 0.608946 0.407010 0.871413 0.410944 1.000000 0.002475 1.000000 0.000515 0.014461 diff --git a/datasets/pinganmajia/train/labels/订单1813756_4_7173948.txt b/datasets/pinganmajia/train/labels/订单1813756_4_7173948.txt new file mode 100644 index 0000000..a274cc9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813756_4_7173948.txt @@ -0,0 +1 @@ +4 0.002115 0.560385 0.019615 0.555135 0.084359 0.455394 0.068615 0.417337 0.082615 0.404212 0.140359 0.280856 0.252333 0.250673 0.390577 0.300538 0.411564 0.362221 0.404564 0.443587 0.397577 0.530202 0.544551 0.620750 0.467564 0.692933 0.523551 0.800538 0.504308 0.908154 0.532821 1.000000 0.000000 1.000000 0.000000 0.694721 diff --git a/datasets/pinganmajia/train/labels/订单1813758_4_7173975.txt b/datasets/pinganmajia/train/labels/订单1813758_4_7173975.txt new file mode 100644 index 0000000..71e126c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813758_4_7173975.txt @@ -0,0 +1 @@ +4 0.017872 0.610250 0.161346 0.492144 0.131603 0.435712 0.103603 0.398962 0.126359 0.397654 0.094859 0.297913 0.122859 0.198183 0.217346 0.166683 0.350321 0.162740 0.444821 0.227048 0.481564 0.321538 0.488564 0.370096 0.479808 0.497394 0.534051 0.510510 0.523551 0.551192 0.633795 0.649625 0.639038 0.753298 0.656538 0.930462 0.695308 1.000000 0.003872 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813759_4_7174043.txt b/datasets/pinganmajia/train/labels/订单1813759_4_7174043.txt new file mode 100644 index 0000000..d0d736e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813759_4_7174043.txt @@ -0,0 +1 @@ +4 0.980359 0.101017 0.775637 0.049841 0.635654 0.086593 0.520180 0.198137 0.507925 0.309681 0.548170 0.457978 0.373186 0.562966 0.416944 0.666642 0.387190 0.842488 0.453676 0.973725 0.450180 0.994718 0.997859 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813760_4_7174019.txt b/datasets/pinganmajia/train/labels/订单1813760_4_7174019.txt new file mode 100644 index 0000000..9fd87f9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813760_4_7174019.txt @@ -0,0 +1 @@ +4 1.000000 0.376852 0.981832 0.366192 0.969028 0.290069 0.978872 0.224456 0.955252 0.186400 0.680642 0.010544 0.658993 0.137847 0.658993 0.233646 0.625530 0.311076 0.567457 0.371435 0.500530 0.434433 0.463125 0.615532 0.461155 0.811076 0.409201 1.000000 0.999592 1.000000 1.000000 0.962720 diff --git a/datasets/pinganmajia/train/labels/订单1813763_4_7174230.txt b/datasets/pinganmajia/train/labels/订单1813763_4_7174230.txt new file mode 100644 index 0000000..b682b91 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813763_4_7174230.txt @@ -0,0 +1 @@ +4 0.317077 0.313663 0.245333 0.343846 0.205090 0.452769 0.210346 0.566942 0.224346 0.594500 0.254090 0.616817 0.250590 0.590567 0.271590 0.593192 0.252333 0.563010 0.269833 0.472452 0.278590 0.543327 0.280333 0.581385 0.301333 0.612875 0.332833 0.667990 0.336333 0.728365 0.359077 0.771673 0.329333 0.817596 0.360821 0.824163 0.378321 0.807106 0.406321 0.762481 0.404564 0.709990 0.394077 0.674558 0.392321 0.610250 0.411564 0.679808 0.430821 0.733615 0.430821 0.778231 0.446564 0.812356 0.472808 0.853029 0.495564 0.854346 0.495564 0.805788 0.492064 0.746731 0.486808 0.658808 0.486808 0.601067 0.509551 0.591875 0.532308 0.551192 0.537551 0.443587 0.492064 0.343846 0.416821 0.304481 0.409821 0.271673 0.383577 0.230990 0.338077 0.238856 0.325833 0.270356 0.325833 0.300538 diff --git a/datasets/pinganmajia/train/labels/订单1813765_4_7174017.txt b/datasets/pinganmajia/train/labels/订单1813765_4_7174017.txt new file mode 100644 index 0000000..d7456e9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813765_4_7174017.txt @@ -0,0 +1 @@ +4 0.997744 0.271673 0.850769 0.216548 0.756282 0.236240 0.679282 0.320221 0.649538 0.429154 0.705538 0.526260 0.658282 0.595817 0.544551 0.736240 0.471064 0.990827 0.999500 0.993452 diff --git a/datasets/pinganmajia/train/labels/订单1813767_4_7174018.txt b/datasets/pinganmajia/train/labels/订单1813767_4_7174018.txt new file mode 100644 index 0000000..a27a583 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813767_4_7174018.txt @@ -0,0 +1 @@ +4 0.004429 0.353018 0.083169 0.400262 0.104823 0.314961 0.206201 0.160105 0.268209 0.135171 0.343012 0.198163 0.369587 0.320210 0.381398 0.465879 0.364665 0.541995 0.309547 0.581365 0.320374 0.696850 0.307579 0.792651 0.244587 0.895013 0.227087 1.000000 0.151412 1.000000 0.000492 0.997375 diff --git a/datasets/pinganmajia/train/labels/订单1813769_4_7173963.txt b/datasets/pinganmajia/train/labels/订单1813769_4_7173963.txt new file mode 100644 index 0000000..f71b77e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813769_4_7173963.txt @@ -0,0 +1 @@ +4 0.992470 0.418653 0.956982 0.400284 0.896848 0.318920 0.907689 0.128628 0.846567 0.039391 0.755866 0.043328 0.682915 0.108945 0.662213 0.258547 0.659256 0.342541 0.569543 0.482963 0.524195 0.565633 0.467012 0.750674 0.469970 0.951461 0.509098 1.000000 0.906000 1.000000 1.000000 0.998742 1.000000 0.861567 diff --git a/datasets/pinganmajia/train/labels/订单1813770_4_7174003.txt b/datasets/pinganmajia/train/labels/订单1813770_4_7174003.txt new file mode 100644 index 0000000..454e2ae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813770_4_7174003.txt @@ -0,0 +1 @@ +4 0.310807 0.372735 0.253294 0.317618 0.209714 0.347804 0.227148 0.384549 0.152201 0.434412 0.115599 0.570902 0.138255 0.622078 0.155690 0.671951 0.159167 0.649637 0.180091 0.648324 0.190547 0.720500 0.211458 0.858294 0.185312 0.923912 0.207969 0.926539 0.249805 0.901608 0.268984 0.944912 0.291641 0.950167 0.321263 0.897667 0.333464 0.782186 0.352643 0.668010 0.371810 0.656196 0.399701 0.643078 0.436302 0.519716 0.401445 0.438353 0.359609 0.408167 0.300352 0.387167 diff --git a/datasets/pinganmajia/train/labels/订单1813771_4_7174139.txt b/datasets/pinganmajia/train/labels/订单1813771_4_7174139.txt new file mode 100644 index 0000000..e1ea6a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813771_4_7174139.txt @@ -0,0 +1 @@ +4 1.000000 0.360503 0.831539 0.304497 0.677558 0.359618 0.614572 0.488229 0.600567 0.557778 0.632072 0.656207 0.504340 0.690321 0.446597 0.834679 0.436100 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813773_4_7174100.txt b/datasets/pinganmajia/train/labels/订单1813773_4_7174100.txt new file mode 100644 index 0000000..963baa6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813773_4_7174100.txt @@ -0,0 +1 @@ +4 0.001486 0.358276 0.078255 0.341218 0.137313 0.321532 0.128452 0.278224 0.114673 0.270353 0.118611 0.241481 0.107784 0.187673 0.119596 0.158801 0.135341 0.070878 0.160933 0.017071 0.332192 0.019692 0.355813 0.097122 0.359750 0.206045 0.363687 0.255917 0.357784 0.313660 0.326288 0.389776 0.400106 0.429147 0.449317 0.607622 0.456207 0.774288 0.480813 0.998699 0.003452 0.998699 diff --git a/datasets/pinganmajia/train/labels/订单1813777_4_7174116.txt b/datasets/pinganmajia/train/labels/订单1813777_4_7174116.txt new file mode 100644 index 0000000..bd96794 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813777_4_7174116.txt @@ -0,0 +1 @@ +4 0.012129 0.292604 0.186908 0.249297 0.402457 0.262418 0.516069 0.355595 0.489846 0.436962 0.446156 0.503889 0.376243 0.565569 0.466541 0.606250 0.466541 0.694180 0.521888 0.744045 0.470501 1.000000 0.000000 1.000000 0.000000 0.561345 diff --git a/datasets/pinganmajia/train/labels/订单1813778_4_7174194.txt b/datasets/pinganmajia/train/labels/订单1813778_4_7174194.txt new file mode 100644 index 0000000..b51e94a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813778_4_7174194.txt @@ -0,0 +1 @@ +4 0.988144 0.530216 0.907647 0.492157 0.856915 0.484284 0.851660 0.433098 0.816667 0.427853 0.785163 0.341235 0.695935 0.311059 0.571699 0.333363 0.512196 0.398980 0.520954 0.473784 0.555948 0.521029 0.587438 0.586647 0.503451 0.599765 0.531451 0.761186 0.550693 0.832049 0.499948 0.994784 0.724915 1.000000 1.000000 1.000000 1.000000 0.799216 diff --git a/datasets/pinganmajia/train/labels/订单1813779_4_7174204.txt b/datasets/pinganmajia/train/labels/订单1813779_4_7174204.txt new file mode 100644 index 0000000..fd3eefe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813779_4_7174204.txt @@ -0,0 +1 @@ +4 0.989022 0.095833 0.833289 0.074838 0.738800 0.095833 0.649561 0.169325 0.626817 0.296621 0.625067 0.368800 0.665311 0.469850 0.546328 0.509221 0.567322 0.569588 0.488583 0.690321 0.478083 0.843867 0.469333 0.997408 0.991139 1.000000 0.997767 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813782_4_7174205.txt b/datasets/pinganmajia/train/labels/订单1813782_4_7174205.txt new file mode 100644 index 0000000..369ba2d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813782_4_7174205.txt @@ -0,0 +1 @@ +4 0.997744 0.418654 0.976744 0.330721 0.880513 0.267731 0.716026 0.279538 0.635538 0.355654 0.639038 0.450144 0.679282 0.569567 0.621538 0.570885 0.506051 0.696865 0.458808 0.837288 0.401628 1.000000 0.829013 1.000000 0.999500 0.997394 1.000000 0.955135 1.000000 0.553990 0.975000 0.534135 0.992500 0.493452 diff --git a/datasets/pinganmajia/train/labels/订单1813784_4_7174248.txt b/datasets/pinganmajia/train/labels/订单1813784_4_7174248.txt new file mode 100644 index 0000000..c045d00 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813784_4_7174248.txt @@ -0,0 +1 @@ +4 1.000000 0.170368 0.863137 0.149583 0.735392 0.177132 0.656650 0.263750 0.598922 0.427794 0.609412 0.528848 0.434428 0.585270 0.355703 0.675821 0.296209 0.816250 0.352190 0.885797 0.322451 0.994718 0.871176 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813786_4_7174249.txt b/datasets/pinganmajia/train/labels/订单1813786_4_7174249.txt new file mode 100644 index 0000000..8276c99 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813786_4_7174249.txt @@ -0,0 +1 @@ +4 0.999050 0.465893 0.948364 0.438333 0.925641 0.433084 0.936133 0.341220 0.869714 0.267732 0.724645 0.249356 0.546373 0.291349 0.493936 0.383213 0.509668 0.430455 0.511419 0.534132 0.532391 0.582689 0.443249 0.723110 0.403055 0.795292 0.369851 0.874029 0.324405 0.998703 0.999050 0.998703 diff --git a/datasets/pinganmajia/train/labels/订单1813787_4_7174197.txt b/datasets/pinganmajia/train/labels/订单1813787_4_7174197.txt new file mode 100644 index 0000000..d7083f1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813787_4_7174197.txt @@ -0,0 +1 @@ +4 0.992500 0.570885 0.952256 0.547260 0.933000 0.489519 0.943500 0.463269 0.943500 0.447519 0.961000 0.380596 0.933000 0.376654 0.913756 0.263798 0.838513 0.219173 0.714282 0.208673 0.623295 0.258548 0.586551 0.330721 0.579551 0.413404 0.611038 0.522327 0.581295 0.577442 0.558551 0.593192 0.471064 0.654875 0.392321 0.829413 0.366077 0.893712 0.332833 0.952769 0.327577 0.993452 0.999500 0.996077 diff --git a/datasets/pinganmajia/train/labels/订单1813788_4_7174417.txt b/datasets/pinganmajia/train/labels/订单1813788_4_7174417.txt new file mode 100644 index 0000000..7a31483 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813788_4_7174417.txt @@ -0,0 +1 @@ +4 1.000000 0.498273 0.955775 0.468542 0.947025 0.375365 0.871794 0.354366 0.878785 0.341241 0.917280 0.322873 0.968032 0.292691 0.973275 0.249384 0.943530 0.244132 0.982025 0.132578 0.931285 0.038090 0.866539 0.010538 0.674063 0.015781 0.588322 0.084028 0.576076 0.164080 0.560324 0.275625 0.586574 0.377986 0.483333 0.400295 0.511331 0.455417 0.457095 0.498724 0.492083 0.536780 0.394097 0.692951 0.331111 0.825495 0.269861 0.901615 0.170127 0.998724 0.980185 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813789_4_7174252.txt b/datasets/pinganmajia/train/labels/订单1813789_4_7174252.txt new file mode 100644 index 0000000..e89fdff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813789_4_7174252.txt @@ -0,0 +1 @@ +4 0.003987 0.368738 0.089722 0.370049 0.119477 0.326740 0.098480 0.303125 0.107222 0.255882 0.135229 0.238824 0.185964 0.146961 0.310196 0.104963 0.460686 0.131201 0.530670 0.185012 0.509673 0.271630 0.474673 0.354301 0.394183 0.461912 0.315458 0.501287 0.362696 0.607586 0.429183 0.828051 0.478186 0.996042 0.005735 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1813791_4_7174238.txt b/datasets/pinganmajia/train/labels/订单1813791_4_7174238.txt new file mode 100644 index 0000000..0e41f42 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813791_4_7174238.txt @@ -0,0 +1 @@ +4 0.985621 0.093150 0.772141 0.090527 0.677647 0.145637 0.667157 0.236189 0.684657 0.352990 0.702157 0.484228 0.569167 0.606275 0.492173 0.724387 0.422190 0.889743 0.483431 0.959289 0.503791 1.000000 0.991160 1.000000 1.000000 0.999975 1.000000 0.921434 diff --git a/datasets/pinganmajia/train/labels/订单1813792_4_7174310.txt b/datasets/pinganmajia/train/labels/订单1813792_4_7174310.txt new file mode 100644 index 0000000..2b05b43 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813792_4_7174310.txt @@ -0,0 +1 @@ +4 0.614687 0.019714 0.604841 0.132574 0.638309 0.207377 0.692439 0.255931 0.771183 0.313676 0.757402 0.408162 0.798738 0.417353 0.777089 0.616822 0.807598 0.771683 0.861734 0.990842 1.000000 0.999616 1.000000 0.099526 0.944412 0.042018 0.913897 0.086642 0.896183 0.069583 0.895196 0.015776 diff --git a/datasets/pinganmajia/train/labels/订单1813793_4_7174344.txt b/datasets/pinganmajia/train/labels/订单1813793_4_7174344.txt new file mode 100644 index 0000000..4d1932d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813793_4_7174344.txt @@ -0,0 +1 @@ +4 0.003309 0.391103 0.075482 0.375351 0.076797 0.349109 0.037426 0.288742 0.028243 0.225752 0.053178 0.194248 0.072859 0.198186 0.116168 0.069583 0.184412 0.022337 0.250025 0.013154 0.353701 0.034150 0.403570 0.114199 0.427190 0.189003 0.419314 0.304485 0.391757 0.416038 0.337949 0.493464 0.391757 0.616822 0.419314 0.745433 0.415384 0.926536 0.406193 0.998717 0.004926 1.000000 0.000000 1.000000 0.000000 0.697998 diff --git a/datasets/pinganmajia/train/labels/订单1813794_4_7174250.txt b/datasets/pinganmajia/train/labels/订单1813794_4_7174250.txt new file mode 100644 index 0000000..b27098d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813794_4_7174250.txt @@ -0,0 +1 @@ +4 1.000000 0.468718 0.944399 0.430455 0.954240 0.409462 0.963096 0.384526 0.982784 0.339904 0.980812 0.307096 0.995577 0.244103 0.953255 0.170615 0.881404 0.122058 0.814476 0.148301 0.759361 0.237545 0.747548 0.309724 0.753452 0.397647 0.765264 0.468513 0.722942 0.536756 0.682587 0.619436 0.669793 0.719173 0.616639 0.937019 0.602861 0.996071 0.622495 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813798_4_7174360.txt b/datasets/pinganmajia/train/labels/订单1813798_4_7174360.txt new file mode 100644 index 0000000..a578ae7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813798_4_7174360.txt @@ -0,0 +1 @@ +4 1.000000 0.469449 0.966373 0.468480 0.973366 0.433039 1.000000 0.411826 1.000000 0.203002 0.878873 0.169265 0.695147 0.215196 0.674150 0.318873 0.660163 0.400233 0.674150 0.452733 0.707402 0.498664 0.614657 0.551152 0.555163 0.661385 0.530670 0.734877 0.488676 0.782120 0.366193 0.997353 1.000000 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1813799_4_7174358.txt b/datasets/pinganmajia/train/labels/订单1813799_4_7174358.txt new file mode 100644 index 0000000..26f402c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813799_4_7174358.txt @@ -0,0 +1 @@ +4 1.000000 0.312628 0.960144 0.320218 0.924712 0.283474 0.809553 0.280853 0.825303 0.257231 0.815462 0.220481 0.788885 0.167987 0.740659 0.049878 0.641250 0.049878 0.554635 0.122058 0.543808 0.227045 0.573337 0.301846 0.617625 0.408147 0.575303 0.490827 0.527077 0.586622 0.489673 0.749353 0.492625 0.858276 0.517231 0.997385 0.837481 1.000000 0.999519 1.000000 1.000000 0.831846 diff --git a/datasets/pinganmajia/train/labels/订单1813800_4_7174426.txt b/datasets/pinganmajia/train/labels/订单1813800_4_7174426.txt new file mode 100644 index 0000000..7bad750 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813800_4_7174426.txt @@ -0,0 +1 @@ +4 0.012760 0.334639 0.096745 0.305762 0.198242 0.314951 0.250729 0.360879 0.262982 0.448809 0.257734 0.502617 0.189492 0.564297 0.234987 0.581357 0.261224 0.645664 0.350469 0.796582 0.407122 1.000000 0.001471 1.000000 0.000508 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1813801_4_7174658.txt b/datasets/pinganmajia/train/labels/订单1813801_4_7174658.txt new file mode 100644 index 0000000..7f73086 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813801_4_7174658.txt @@ -0,0 +1 @@ +4 0.007412 0.532850 0.055642 0.482983 0.127492 0.456739 0.178675 0.435739 0.217058 0.357000 0.199342 0.266450 0.193438 0.213956 0.180642 0.129967 0.184579 0.044661 0.219029 0.015789 0.393242 0.018417 0.427692 0.122089 0.450329 0.220517 0.450329 0.266450 0.431625 0.305817 0.419817 0.376683 0.462138 0.417367 0.512338 0.494794 0.556625 0.629967 0.547771 0.738889 0.507412 0.845189 0.514304 0.996106 0.132492 1.000000 0.000000 1.000000 0.000000 0.974017 diff --git a/datasets/pinganmajia/train/labels/订单1813802_4_7174420.txt b/datasets/pinganmajia/train/labels/订单1813802_4_7174420.txt new file mode 100644 index 0000000..9f66710 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813802_4_7174420.txt @@ -0,0 +1 @@ +4 0.009115 0.442269 0.054615 0.438337 0.045859 0.410779 0.052859 0.367471 0.049359 0.305788 0.086115 0.249356 0.156103 0.207365 0.271590 0.194240 0.366077 0.230990 0.390577 0.308413 0.373077 0.380596 0.350321 0.477702 0.318833 0.514452 0.380077 0.539385 0.369577 0.576135 0.381821 0.591875 0.373077 0.620750 0.418564 0.667990 0.416821 0.724423 0.430821 0.825471 0.491141 1.000000 0.365962 1.000000 0.000000 0.996096 0.000000 0.923317 diff --git a/datasets/pinganmajia/train/labels/订单1813803_4_7174456.txt b/datasets/pinganmajia/train/labels/订单1813803_4_7174456.txt new file mode 100644 index 0000000..ff6d404 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813803_4_7174456.txt @@ -0,0 +1 @@ +4 0.395208 0.301883 0.360763 0.286133 0.328279 0.207394 0.298754 0.101094 0.265288 0.045978 0.196392 0.057789 0.174737 0.106344 0.183596 0.182456 0.131429 0.255950 0.139304 0.301883 0.082217 0.412117 0.059579 0.513167 0.086154 0.561722 0.133400 0.586656 0.136350 0.640461 0.165879 0.711328 0.162925 0.960672 0.173754 0.994794 0.258087 1.000000 0.279450 1.000000 0.267258 0.972483 0.272179 0.914739 0.275129 0.857000 0.282021 0.906867 0.283004 0.964611 0.292846 0.989544 0.370392 1.000000 0.380242 1.000000 0.371587 0.942300 0.386350 0.855689 0.378479 0.774322 0.373554 0.652272 0.381429 0.591906 0.395208 0.536789 0.406037 0.464611 0.407021 0.396367 diff --git a/datasets/pinganmajia/train/labels/订单1813806_4_7174844.txt b/datasets/pinganmajia/train/labels/订单1813806_4_7174844.txt new file mode 100644 index 0000000..a6d585a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813806_4_7174844.txt @@ -0,0 +1 @@ +4 0.609317 0.026285 0.577824 0.086649 0.555081 0.194262 0.597072 0.311059 0.612824 0.346493 0.551574 0.456727 0.479838 0.637830 0.430845 0.733628 0.369606 0.919983 0.393310 1.000000 0.996019 1.000000 0.999525 0.307127 0.920787 0.292691 0.915532 0.266441 0.987280 0.213950 1.000000 0.175773 1.000000 0.016094 diff --git a/datasets/pinganmajia/train/labels/订单1813807_4_7174801.txt b/datasets/pinganmajia/train/labels/订单1813807_4_7174801.txt new file mode 100644 index 0000000..d405be9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813807_4_7174801.txt @@ -0,0 +1 @@ +4 0.997578 0.392442 0.979861 0.354375 0.939505 0.284826 0.949349 0.156215 0.914896 0.059109 0.809583 0.019734 0.688524 0.042037 0.626510 0.170648 0.608793 0.279572 0.636354 0.346505 0.650130 0.440995 0.632422 0.476424 0.541866 0.548600 0.513325 0.733646 0.454271 0.923935 0.465095 0.979051 0.465095 1.000000 1.000000 1.000000 1.000000 0.642431 diff --git a/datasets/pinganmajia/train/labels/订单1813808_4_7174469.txt b/datasets/pinganmajia/train/labels/订单1813808_4_7174469.txt new file mode 100644 index 0000000..ce84809 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813808_4_7174469.txt @@ -0,0 +1 @@ +4 0.000000 0.256699 0.093255 0.249336 0.212240 0.287393 0.273477 0.339883 0.278724 0.396318 0.268229 0.434375 0.240234 0.538047 0.367969 0.658779 0.437956 0.769023 0.517552 1.000000 0.005703 1.000000 0.000000 0.652646 diff --git a/datasets/pinganmajia/train/labels/订单1813809_4_7174501.txt b/datasets/pinganmajia/train/labels/订单1813809_4_7174501.txt new file mode 100644 index 0000000..30c67b2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813809_4_7174501.txt @@ -0,0 +1 @@ +4 0.007484 0.530159 0.059984 0.505221 0.044232 0.472414 0.024984 0.427794 0.033742 0.404167 0.077484 0.292623 0.147467 0.258505 0.243709 0.254571 0.343448 0.304436 0.373186 0.355613 0.383693 0.467169 0.350441 0.572157 0.348693 0.598395 0.539428 0.699449 0.560425 0.740135 0.861389 0.988162 0.003987 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813810_4_7174573.txt b/datasets/pinganmajia/train/labels/订单1813810_4_7174573.txt new file mode 100644 index 0000000..3da4be6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813810_4_7174573.txt @@ -0,0 +1 @@ +4 1.000000 0.485917 0.944421 0.448861 0.920800 0.402933 0.913912 0.359622 0.913912 0.311067 0.912925 0.278261 0.858792 0.131278 0.792846 0.097156 0.709187 0.119467 0.682612 0.171961 0.675721 0.282194 0.677692 0.414739 0.680642 0.444928 0.632412 0.493483 0.635367 0.528917 0.574342 0.721828 0.533004 0.980361 0.521958 1.000000 0.999546 1.000000 1.000000 0.881250 diff --git a/datasets/pinganmajia/train/labels/订单1813812_4_7174521.txt b/datasets/pinganmajia/train/labels/订单1813812_4_7174521.txt new file mode 100644 index 0000000..d45fcf8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813812_4_7174521.txt @@ -0,0 +1 @@ +4 1.000000 0.489363 0.969869 0.472414 0.973366 0.451422 0.997859 0.423860 0.999608 0.367426 0.975114 0.339865 0.915621 0.219130 0.744150 0.179767 0.626912 0.221752 0.548170 0.303125 0.535915 0.401544 0.581422 0.545907 0.485180 0.611520 0.367941 0.725699 0.308448 0.841176 0.210458 0.906801 0.100229 0.967169 0.095997 1.000000 0.989199 1.000000 1.000000 0.649755 diff --git a/datasets/pinganmajia/train/labels/订单1813813_4_7174711.txt b/datasets/pinganmajia/train/labels/订单1813813_4_7174711.txt new file mode 100644 index 0000000..d157f04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813813_4_7174711.txt @@ -0,0 +1 @@ +4 0.649561 0.392421 0.656561 0.359613 0.675811 0.358300 0.672311 0.322867 0.709056 0.308433 0.754550 0.324179 0.747550 0.355675 0.751050 0.385858 0.794794 0.404233 0.824539 0.482971 0.794794 0.581396 0.780794 0.606333 0.768550 0.608958 0.752800 0.696883 0.754550 0.724442 0.731800 0.775625 0.749300 0.816304 0.726556 0.826804 0.696806 0.799246 0.689806 0.758563 0.703806 0.692946 0.693306 0.628642 0.679311 0.626017 0.682811 0.695571 0.677561 0.728379 0.675811 0.770375 0.623317 0.811058 0.597067 0.797933 0.632067 0.771687 0.633817 0.737567 0.621567 0.698196 0.614567 0.591896 0.595322 0.565650 0.572572 0.530217 0.577822 0.459350 0.607567 0.412108 0.633817 0.397671 diff --git a/datasets/pinganmajia/train/labels/订单1813816_4_7174637.txt b/datasets/pinganmajia/train/labels/订单1813816_4_7174637.txt new file mode 100644 index 0000000..664ebad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813816_4_7174637.txt @@ -0,0 +1 @@ +4 0.000000 0.585090 0.067428 0.553814 0.167822 0.471141 0.165856 0.425205 0.147154 0.371404 0.159947 0.355654 0.154043 0.291346 0.189476 0.195551 0.245577 0.164051 0.299712 0.179801 0.350894 0.246731 0.370577 0.353026 0.372548 0.385840 0.373534 0.446205 0.434553 0.503949 0.486721 0.667987 0.509361 0.908147 0.512312 1.000000 0.005385 1.000000 0.000000 0.619551 diff --git a/datasets/pinganmajia/train/labels/订单1813818_4_7174536.txt b/datasets/pinganmajia/train/labels/订单1813818_4_7174536.txt new file mode 100644 index 0000000..e412353 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813818_4_7174536.txt @@ -0,0 +1 @@ +4 0.319410 0.236247 0.314490 0.192940 0.317440 0.162753 0.345985 0.156193 0.368620 0.178507 0.365670 0.234933 0.360750 0.249367 0.401100 0.282180 0.420785 0.339920 0.430630 0.419973 0.402085 0.513147 0.399135 0.536773 0.399135 0.658820 0.394210 0.712627 0.390275 0.767740 0.379450 0.797927 0.362715 0.797927 0.364685 0.751993 0.358780 0.702127 0.360750 0.650947 0.353860 0.599767 0.347950 0.523647 0.335155 0.589267 0.319410 0.649633 0.307600 0.719187 0.310550 0.751993 0.284960 0.769053 0.249525 0.784800 0.257400 0.757247 0.280040 0.723120 0.285945 0.683753 0.282990 0.643073 0.288895 0.602387 0.268230 0.586640 0.281025 0.489527 0.232795 0.416033 0.246575 0.360920 0.265275 0.282180 0.285945 0.254620 0.317440 0.236247 diff --git a/datasets/pinganmajia/train/labels/订单1813820_4_7174913.txt b/datasets/pinganmajia/train/labels/订单1813820_4_7174913.txt new file mode 100644 index 0000000..b64e714 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813820_4_7174913.txt @@ -0,0 +1 @@ +4 1.000000 0.575130 0.946353 0.539362 0.923716 0.481621 0.927651 0.425189 0.944385 0.380573 0.961118 0.320202 0.957183 0.290020 0.948320 0.110228 0.858755 0.032799 0.763281 0.044616 0.693403 0.102357 0.665840 0.216530 0.686509 0.318893 0.684541 0.355638 0.723911 0.509180 0.706196 0.547240 0.651079 0.549863 0.594976 0.666660 0.593008 0.741465 0.589072 0.925189 0.564888 1.000000 0.997466 1.000000 0.999502 0.999993 1.000000 0.893014 diff --git a/datasets/pinganmajia/train/labels/订单1813821_4_7174700.txt b/datasets/pinganmajia/train/labels/订单1813821_4_7174700.txt new file mode 100644 index 0000000..569b62c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813821_4_7174700.txt @@ -0,0 +1 @@ +4 0.001185 0.137768 0.102500 0.091829 0.228279 0.101012 0.306899 0.160073 0.327857 0.261122 0.336591 0.341171 0.310390 0.448793 0.443149 0.527524 0.472857 0.557707 0.492078 0.623329 0.672013 0.863488 0.729659 0.902854 0.722662 0.926476 0.761104 0.997341 0.001185 0.996037 diff --git a/datasets/pinganmajia/train/labels/订单1813823_4_7174604.txt b/datasets/pinganmajia/train/labels/订单1813823_4_7174604.txt new file mode 100644 index 0000000..865e428 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813823_4_7174604.txt @@ -0,0 +1 @@ +4 0.997744 0.532827 0.922500 0.480327 0.926000 0.448837 0.962756 0.412087 0.975000 0.346471 0.955756 0.328096 0.924256 0.167990 0.850769 0.099750 0.717782 0.101067 0.625038 0.139125 0.567295 0.213923 0.530551 0.317596 0.535808 0.371404 0.553295 0.475077 0.439564 0.479019 0.355577 0.524952 0.213846 0.766423 0.275090 0.927837 0.402821 0.980327 0.397577 1.000000 0.399333 1.000000 1.000000 0.994808 1.000000 0.681635 diff --git a/datasets/pinganmajia/train/labels/订单1813825_4_7174526.txt b/datasets/pinganmajia/train/labels/订单1813825_4_7174526.txt new file mode 100644 index 0000000..f64cd7a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813825_4_7174526.txt @@ -0,0 +1 @@ +4 0.999608 0.481605 0.978611 0.436985 1.000000 0.385429 1.000000 0.248321 0.996111 0.086593 0.927876 0.010466 0.639167 0.015723 0.583170 0.085270 0.588415 0.230944 0.598922 0.286066 0.602418 0.355613 0.691650 0.485539 0.562173 0.501287 0.535915 0.532782 0.353938 0.665331 0.275212 0.786066 0.182467 0.999975 0.184771 1.000000 0.406650 1.000000 0.415180 0.892365 0.451928 0.999975 1.000000 0.999975 1.000000 0.504485 diff --git a/datasets/pinganmajia/train/labels/订单1813826_4_7174659.txt b/datasets/pinganmajia/train/labels/订单1813826_4_7174659.txt new file mode 100644 index 0000000..5e653e7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813826_4_7174659.txt @@ -0,0 +1 @@ +4 0.000000 0.452549 0.055341 0.435659 0.067565 0.388415 0.036120 0.375293 0.023896 0.341171 0.029123 0.316244 0.030877 0.241439 0.081542 0.169256 0.224789 0.124634 0.357549 0.146951 0.397744 0.220439 0.416948 0.290000 0.415211 0.384488 0.387256 0.460598 0.443149 0.507841 0.430925 0.536707 0.506039 0.597085 0.586412 0.670573 0.642305 0.782122 0.619594 0.871354 0.581169 0.892354 0.625000 1.000000 0.008019 1.000000 0.002922 0.999963 0.000000 0.541598 diff --git a/datasets/pinganmajia/train/labels/订单1813827_4_7174690.txt b/datasets/pinganmajia/train/labels/订单1813827_4_7174690.txt new file mode 100644 index 0000000..3a03ba5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813827_4_7174690.txt @@ -0,0 +1 @@ +4 0.012842 0.095784 0.211803 0.066918 0.437090 0.074792 0.507309 0.124657 0.507309 0.230956 0.434167 0.400251 0.577541 0.498676 0.557049 0.619412 0.524863 0.674528 0.524863 0.734896 0.589235 0.797886 0.580464 0.834632 0.501462 0.981612 0.463429 0.999988 -0.000000 0.996115 0.000000 0.660337 diff --git a/datasets/pinganmajia/train/labels/订单1813828_4_7174696.txt b/datasets/pinganmajia/train/labels/订单1813828_4_7174696.txt new file mode 100644 index 0000000..b8d5a06 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813828_4_7174696.txt @@ -0,0 +1 @@ +4 0.003462 0.396348 0.029056 0.383227 0.025116 0.271683 0.041850 0.102386 0.084173 0.014461 0.316458 0.011838 0.385355 0.086642 0.393229 0.141757 0.421771 0.316299 0.353860 0.465907 0.405037 0.501340 0.390276 0.568268 0.413897 0.689003 0.433585 0.770368 0.416850 0.835980 0.407990 0.931781 0.417837 0.998717 0.002482 0.997402 diff --git a/datasets/pinganmajia/train/labels/订单1813829_4_7174703.txt b/datasets/pinganmajia/train/labels/订单1813829_4_7174703.txt new file mode 100644 index 0000000..de2bb70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813829_4_7174703.txt @@ -0,0 +1 @@ +4 0.006385 0.675833 0.148111 0.532784 0.126463 0.481610 0.113665 0.459299 0.100866 0.412055 0.098899 0.367434 0.104808 0.223078 0.130398 0.154830 0.184531 0.122027 0.278033 0.131212 0.337088 0.202074 0.366619 0.291316 0.378430 0.401553 0.369574 0.503911 0.525085 0.531477 0.614652 0.608902 0.666811 0.741449 0.684531 0.812311 0.705199 0.936989 0.700277 0.992102 0.100504 1.000000 0.002457 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813830_4_7174674.txt b/datasets/pinganmajia/train/labels/订单1813830_4_7174674.txt new file mode 100644 index 0000000..13e0e9b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813830_4_7174674.txt @@ -0,0 +1 @@ +4 0.514949 0.020988 0.507942 0.062978 0.521944 0.162716 0.584938 0.293951 0.604187 0.374005 0.607685 0.438310 0.551687 0.497361 0.448457 0.649591 0.390710 0.850378 0.240226 0.972431 0.229733 0.998673 1.000000 0.999985 1.000000 0.018380 diff --git a/datasets/pinganmajia/train/labels/订单1813834_4_7174653.txt b/datasets/pinganmajia/train/labels/订单1813834_4_7174653.txt new file mode 100644 index 0000000..e17976a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813834_4_7174653.txt @@ -0,0 +1 @@ +4 0.999353 0.521006 0.879929 0.477699 0.873372 0.431769 0.887808 0.356968 0.902244 0.320218 0.910115 0.263788 0.890429 0.249353 0.870744 0.120744 0.805128 0.064314 0.700141 0.064314 0.589904 0.091872 0.567596 0.208673 0.580718 0.307096 0.583346 0.355654 0.609590 0.429147 0.608276 0.476391 0.547910 0.551192 0.440301 0.605000 0.385179 0.692923 0.372058 0.786103 0.377308 0.845154 0.342173 1.000000 1.000000 1.000000 1.000000 0.638897 diff --git a/datasets/pinganmajia/train/labels/订单1813835_4_7174828.txt b/datasets/pinganmajia/train/labels/订单1813835_4_7174828.txt new file mode 100644 index 0000000..9902aae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813835_4_7174828.txt @@ -0,0 +1 @@ +4 0.990866 0.141703 0.903382 0.095772 0.759902 0.091838 0.651405 0.110208 0.555163 0.183701 0.521928 0.275564 0.579673 0.450110 0.486928 0.536716 0.427435 0.662708 0.434428 0.699449 0.357451 0.908113 0.439118 1.000000 0.665180 1.000000 1.000000 0.996115 1.000000 0.637279 diff --git a/datasets/pinganmajia/train/labels/订单1813837_4_7174746.txt b/datasets/pinganmajia/train/labels/订单1813837_4_7174746.txt new file mode 100644 index 0000000..dea39f7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813837_4_7174746.txt @@ -0,0 +1 @@ +4 0.994244 0.443587 0.948756 0.447519 0.941756 0.438337 0.971500 0.408154 0.969744 0.351721 0.929500 0.343846 0.892756 0.241481 0.770269 0.195558 0.660038 0.229673 0.602295 0.347788 0.591795 0.426529 0.614538 0.496077 0.674038 0.559067 0.612795 0.658808 0.591795 0.775606 0.572551 0.929154 0.541064 1.000000 1.000000 1.000000 1.000000 0.567010 diff --git a/datasets/pinganmajia/train/labels/订单1813838_4_7174900.txt b/datasets/pinganmajia/train/labels/订单1813838_4_7174900.txt new file mode 100644 index 0000000..e4760de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813838_4_7174900.txt @@ -0,0 +1 @@ +4 0.999608 0.129890 0.810637 0.081336 0.681160 0.124645 0.605915 0.179767 0.607663 0.303125 0.618170 0.387108 0.635654 0.452733 0.548170 0.517034 0.507925 0.580025 0.422190 0.696826 0.439690 0.783444 0.467680 0.849056 0.469428 0.887108 0.455425 0.997353 0.820768 1.000000 0.997859 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813840_4_7174808.txt b/datasets/pinganmajia/train/labels/订单1813840_4_7174808.txt new file mode 100644 index 0000000..37476ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813840_4_7174808.txt @@ -0,0 +1 @@ +4 0.007484 0.191569 0.128219 0.195515 0.254199 0.224387 0.310196 0.322806 0.301454 0.389743 0.299706 0.460600 0.296209 0.499975 0.418693 0.625956 0.441438 0.688946 0.439690 0.780809 0.464183 0.922549 0.493448 1.000000 0.007190 1.000000 0.000000 0.999975 0.000000 0.768174 diff --git a/datasets/pinganmajia/train/labels/订单1813841_4_7174814.txt b/datasets/pinganmajia/train/labels/订单1813841_4_7174814.txt new file mode 100644 index 0000000..e614110 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813841_4_7174814.txt @@ -0,0 +1 @@ +4 0.990645 0.452747 0.952261 0.421257 0.809541 0.405508 0.817417 0.363509 0.826274 0.330703 0.820371 0.241465 0.826274 0.118105 0.779033 0.045924 0.722930 0.017057 0.695371 0.035430 0.614663 0.098418 0.598911 0.237526 0.591040 0.290020 0.594976 0.380573 0.626470 0.434375 0.493599 0.513118 0.452261 0.628600 0.418794 0.757214 0.364663 0.898945 0.359741 0.990807 0.732612 1.000000 0.998428 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813843_4_7174776.txt b/datasets/pinganmajia/train/labels/订单1813843_4_7174776.txt new file mode 100644 index 0000000..3d93315 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813843_4_7174776.txt @@ -0,0 +1 @@ +4 0.009115 0.367471 0.058115 0.349096 0.084359 0.311038 0.065115 0.278231 0.051115 0.255923 0.052859 0.182433 0.063359 0.149625 0.093103 0.158808 0.117603 0.074817 0.192846 0.024952 0.357321 0.017077 0.450064 0.072192 0.481564 0.174558 0.476308 0.253298 0.437821 0.347788 0.507808 0.376654 0.506051 0.419962 0.539308 0.505269 0.590051 0.555135 0.572551 0.565635 0.579551 0.615500 0.555051 0.677183 0.569051 0.755923 0.577795 0.814971 0.508795 1.000000 0.249974 1.000000 -0.000000 0.997442 0.000000 0.777837 diff --git a/datasets/pinganmajia/train/labels/订单1813844_4_7174907.txt b/datasets/pinganmajia/train/labels/订单1813844_4_7174907.txt new file mode 100644 index 0000000..110e84c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813844_4_7174907.txt @@ -0,0 +1 @@ +4 0.788919 0.305771 0.806006 0.251963 0.729131 0.237529 0.683581 0.254590 0.677881 0.313643 0.629481 0.329390 0.595318 0.372700 0.569693 0.501309 0.581081 0.539365 0.606706 0.539365 0.635180 0.518369 0.652256 0.632539 0.649417 0.702095 0.601017 0.719155 0.615244 0.733589 0.675042 0.729653 0.740519 0.711279 0.740519 0.675850 0.726282 0.625981 0.737669 0.581362 0.763294 0.637793 0.746218 0.688970 0.771843 0.709971 0.768994 0.749341 0.820244 0.761152 0.857256 0.738843 0.834470 0.712593 0.837320 0.649600 0.837320 0.551177 0.894269 0.544614 0.885720 0.519683 0.925583 0.425190 0.905657 0.347764 0.871483 0.326768 0.786070 0.312329 diff --git a/datasets/pinganmajia/train/labels/订单1813846_4_7175020.txt b/datasets/pinganmajia/train/labels/订单1813846_4_7175020.txt new file mode 100644 index 0000000..e0d81c0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813846_4_7175020.txt @@ -0,0 +1 @@ +4 0.016155 0.040725 0.201632 0.060410 0.294369 0.145712 0.338113 0.234950 0.336363 0.311066 0.320616 0.465920 0.425602 0.463296 0.444850 0.485605 0.465848 0.511853 0.514841 0.564347 0.546337 0.647023 0.612830 0.738887 0.591832 0.745449 0.623328 0.870122 0.642569 1.000000 0.622222 1.000000 0.003906 0.998730 diff --git a/datasets/pinganmajia/train/labels/订单1813847_4_7174978.txt b/datasets/pinganmajia/train/labels/订单1813847_4_7174978.txt new file mode 100644 index 0000000..fbc4bdc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813847_4_7174978.txt @@ -0,0 +1 @@ +4 0.005648 0.238880 0.021400 0.249384 0.068634 0.141771 0.182373 0.082717 0.310104 0.089271 0.408102 0.143082 0.446597 0.216571 0.448345 0.312370 0.395845 0.425234 0.429097 0.479036 0.488588 0.517092 0.507836 0.576155 0.569074 0.666701 0.612824 0.712630 0.639062 0.776936 0.630324 0.996102 0.319965 1.000000 0.003912 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813848_4_7174953.txt b/datasets/pinganmajia/train/labels/订单1813848_4_7174953.txt new file mode 100644 index 0000000..387d9bd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813848_4_7174953.txt @@ -0,0 +1 @@ +4 0.010927 0.076173 0.121164 0.035493 0.254146 0.035493 0.352136 0.086673 0.397631 0.169350 0.394130 0.237592 0.374882 0.324206 0.373133 0.392448 0.318889 0.477748 0.367884 0.549926 0.383632 0.660162 0.383632 0.720530 0.441373 0.754651 0.472868 0.801896 0.465870 0.862264 0.387128 0.868827 0.392377 0.996121 -0.000000 0.994813 0.000000 0.895711 diff --git a/datasets/pinganmajia/train/labels/订单1813849_4_7174928.txt b/datasets/pinganmajia/train/labels/订单1813849_4_7174928.txt new file mode 100644 index 0000000..a781422 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813849_4_7174928.txt @@ -0,0 +1 @@ +4 0.012729 0.549841 0.086225 0.509154 0.114232 0.496042 0.119477 0.443542 0.098480 0.433039 0.096732 0.391054 0.101977 0.352990 0.133480 0.356924 0.149216 0.272941 0.259461 0.220441 0.387190 0.244069 0.446683 0.300502 0.455425 0.419926 0.455425 0.485539 0.406438 0.539338 0.560425 0.604963 0.644412 0.666642 0.733644 0.713885 0.763399 0.767684 0.793137 0.849056 0.824641 0.894988 0.829886 0.925172 0.826389 0.955355 0.744150 0.999975 0.000490 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1813851_4_7174942.txt b/datasets/pinganmajia/train/labels/订单1813851_4_7174942.txt new file mode 100644 index 0000000..6a6c411 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813851_4_7174942.txt @@ -0,0 +1 @@ +4 1.000000 0.513858 0.952387 0.505239 0.968138 0.366127 0.954136 0.245394 0.887644 0.162716 0.754660 0.129907 0.630432 0.156157 0.563940 0.207338 0.537695 0.300509 0.556934 0.409437 0.570936 0.505239 0.607685 0.541983 0.595432 0.569545 0.514949 0.627284 0.446698 0.748017 0.327716 0.993426 0.809835 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813853_4_7175188.txt b/datasets/pinganmajia/train/labels/订单1813853_4_7175188.txt new file mode 100644 index 0000000..01c8d12 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813853_4_7175188.txt @@ -0,0 +1 @@ +4 0.011016 0.535461 0.042396 0.522343 0.073763 0.468539 0.049362 0.438353 0.012760 0.383235 0.035430 0.372735 0.031940 0.307118 0.054596 0.234941 0.122565 0.190324 0.253294 0.165382 0.343919 0.202127 0.382266 0.257245 0.399701 0.322863 0.406667 0.387167 0.394466 0.497402 0.493815 0.540716 0.525195 0.586647 0.584453 0.645696 0.605365 0.706069 0.640221 0.804490 0.640221 0.919980 0.612344 0.939667 0.535651 0.996098 0.007539 0.996098 diff --git a/datasets/pinganmajia/train/labels/订单1813854_4_7175008.txt b/datasets/pinganmajia/train/labels/订单1813854_4_7175008.txt new file mode 100644 index 0000000..1d2f47d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813854_4_7175008.txt @@ -0,0 +1 @@ +4 0.003430 0.658769 0.138274 0.545909 0.109730 0.476354 0.092010 0.456676 0.091030 0.426487 0.071342 0.371373 0.070355 0.311004 0.077244 0.158769 0.106776 0.118087 0.184531 0.072159 0.262287 0.090530 0.320355 0.165331 0.350866 0.253258 0.368587 0.358248 0.372521 0.485540 0.470952 0.477670 0.538864 0.520975 0.606776 0.620710 0.675675 0.696828 0.730788 0.816250 0.760320 0.879242 0.763239 1.000000 0.387145 1.000000 0.000000 0.998674 0.000000 0.895597 diff --git a/datasets/pinganmajia/train/labels/订单1813855_4_7174986.txt b/datasets/pinganmajia/train/labels/订单1813855_4_7174986.txt new file mode 100644 index 0000000..300146a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813855_4_7174986.txt @@ -0,0 +1 @@ +4 0.465845 0.028906 0.439595 0.168012 0.434340 0.258568 0.478090 0.358307 0.451840 0.427856 0.324109 0.577465 0.294363 0.641771 0.177130 0.843872 0.203368 0.842552 0.224375 0.839931 0.201620 0.908168 0.122882 0.918672 0.126377 0.958038 0.205127 0.979036 0.999907 1.000000 1.000000 1.000000 1.000000 0.017161 diff --git a/datasets/pinganmajia/train/labels/订单1813857_4_7175050.txt b/datasets/pinganmajia/train/labels/订单1813857_4_7175050.txt new file mode 100644 index 0000000..513a5e4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813857_4_7175050.txt @@ -0,0 +1 @@ +4 0.005435 0.356985 0.025116 0.318922 0.006415 0.296618 0.000000 0.218750 0.000000 0.176953 0.015276 0.175882 0.015276 0.081389 0.058585 0.018399 0.237714 0.017083 0.260355 0.095825 0.272163 0.191626 0.277089 0.288742 0.227874 0.447533 0.275116 0.447533 0.261336 0.492149 0.341060 0.632574 0.337126 0.652255 0.363701 0.841234 0.383223 1.000000 0.304479 1.000000 0.000000 0.994837 0.000000 0.748154 diff --git a/datasets/pinganmajia/train/labels/订单1813863_4_7175257.txt b/datasets/pinganmajia/train/labels/订单1813863_4_7175257.txt new file mode 100644 index 0000000..85c0a70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813863_4_7175257.txt @@ -0,0 +1 @@ +4 0.003872 0.381904 0.033615 0.345163 0.005615 0.320221 0.000000 0.263029 0.000000 0.196548 0.028372 0.200798 0.026615 0.097125 0.054615 0.044635 0.073859 0.015760 0.423821 0.010510 0.453564 0.082692 0.441321 0.161433 0.448321 0.295288 0.411564 0.381904 0.474564 0.417337 0.474564 0.450144 0.530551 0.573510 0.511308 0.700798 0.530551 0.824163 0.530551 0.892404 0.472808 0.998702 0.009333 1.000000 0.003872 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813864_4_7175018.txt b/datasets/pinganmajia/train/labels/订单1813864_4_7175018.txt new file mode 100644 index 0000000..4523775 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813864_4_7175018.txt @@ -0,0 +1 @@ +4 0.673754 0.337317 0.668833 0.383244 0.616667 0.426550 0.586154 0.514478 0.582217 0.639150 0.595012 0.686394 0.596983 0.717889 0.609775 0.736267 0.615683 0.734950 0.616667 0.841250 0.610762 0.913428 0.620604 0.968550 0.624542 0.998733 0.634771 1.000000 0.666533 1.000000 0.664896 0.980361 0.658987 0.874061 0.686550 0.775633 0.693438 0.850439 0.680642 0.948861 0.672771 0.989544 0.713938 1.000000 0.714121 1.000000 0.740683 0.922617 0.745604 0.847811 0.758400 0.755950 0.770208 0.762511 0.786942 0.748072 0.786942 0.721828 0.800721 0.707394 0.805642 0.615528 0.811550 0.551222 0.787925 0.429178 0.745604 0.398994 0.748554 0.346500 0.754463 0.317628 0.746587 0.267761 0.717058 0.257261 0.688517 0.278261 0.682612 0.315006 0.671783 0.328128 diff --git a/datasets/pinganmajia/train/labels/订单1813865_4_7175001.txt b/datasets/pinganmajia/train/labels/订单1813865_4_7175001.txt new file mode 100644 index 0000000..8f98162 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813865_4_7175001.txt @@ -0,0 +1 @@ +4 0.409961 0.350381 0.409961 0.372695 0.338216 0.395000 0.332969 0.457998 0.331224 0.541982 0.345221 0.586602 0.359219 0.602354 0.367969 0.622041 0.390716 0.619414 0.399466 0.674531 0.420456 0.742773 0.427461 0.782139 0.441458 0.808389 0.406458 0.862197 0.409961 0.876631 0.432708 0.876631 0.465951 0.849072 0.483451 0.824141 0.476458 0.766396 0.476458 0.692900 0.486953 0.744082 0.507943 0.812324 0.500951 0.832012 0.523698 0.862197 0.558698 0.880566 0.574440 0.864824 0.530690 0.811016 0.539440 0.771641 0.542943 0.724404 0.541198 0.648281 0.555195 0.606289 0.581445 0.593164 0.584935 0.564297 0.593685 0.506553 0.565690 0.416006 0.546445 0.376631 0.481706 0.360879 0.471198 0.343818 0.490456 0.320205 0.471198 0.275586 0.416966 0.263770 0.397708 0.287393 0.390716 0.304453 0.397708 0.325449 diff --git a/datasets/pinganmajia/train/labels/订单1813866_4_7175029.txt b/datasets/pinganmajia/train/labels/订单1813866_4_7175029.txt new file mode 100644 index 0000000..bad3c6d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813866_4_7175029.txt @@ -0,0 +1 @@ +4 -0.000000 0.500660 0.019641 0.461979 0.103634 0.458038 0.108889 0.404236 0.087882 0.355677 0.103634 0.322873 0.129884 0.318932 0.159630 0.240191 0.224375 0.212630 0.297859 0.210009 0.381852 0.217882 0.446597 0.263819 0.465845 0.337309 0.453588 0.383238 0.401100 0.486910 0.443090 0.580087 0.506088 0.653576 0.534086 0.660139 0.546331 0.696884 0.630324 0.837309 0.668819 0.912109 0.708449 1.000000 0.468762 1.000000 0.007396 0.997413 0.000000 0.771797 diff --git a/datasets/pinganmajia/train/labels/订单1813867_4_7175042.txt b/datasets/pinganmajia/train/labels/订单1813867_4_7175042.txt new file mode 100644 index 0000000..ab88ec5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813867_4_7175042.txt @@ -0,0 +1 @@ +4 1.000000 0.519034 0.877443 0.465862 0.849886 0.427803 0.868587 0.321496 0.888274 0.305748 0.894176 0.254574 0.898111 0.195521 0.885320 0.191581 0.871541 0.031477 0.860710 0.010473 0.662876 0.018352 0.630398 0.098400 0.629411 0.203390 0.609730 0.207330 0.618587 0.295256 0.627443 0.318873 0.654020 0.423864 0.665831 0.476354 0.565433 0.531477 0.537876 0.624650 0.511300 0.694205 0.510320 0.829375 0.522131 0.918617 0.511641 1.000000 0.835405 1.000000 1.000000 0.998674 diff --git a/datasets/pinganmajia/train/labels/订单1813868_4_7175201.txt b/datasets/pinganmajia/train/labels/订单1813868_4_7175201.txt new file mode 100644 index 0000000..3af1501 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813868_4_7175201.txt @@ -0,0 +1 @@ +4 0.987369 0.074779 0.864886 0.047218 0.738889 0.068211 0.658399 0.139081 0.630408 0.250625 0.640915 0.334620 0.712647 0.440919 0.684657 0.455355 0.583170 0.564277 0.574412 0.661385 0.569167 0.728321 0.598922 0.817561 0.583170 0.875306 0.541176 0.998664 0.659036 1.000000 1.000000 1.000000 1.000000 0.820208 diff --git a/datasets/pinganmajia/train/labels/订单1813871_4_7175119.txt b/datasets/pinganmajia/train/labels/订单1813871_4_7175119.txt new file mode 100644 index 0000000..e69219c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813871_4_7175119.txt @@ -0,0 +1 @@ +4 1.000000 0.450279 0.964500 0.422587 0.992500 0.317596 0.983744 0.228365 0.938256 0.126000 0.817513 0.064317 0.649538 0.091875 0.520051 0.204740 0.474564 0.272981 0.530551 0.419962 0.616295 0.452769 0.619795 0.532827 0.534051 0.690308 0.474564 0.809731 0.457179 1.000000 0.999500 1.000000 1.000000 0.968683 diff --git a/datasets/pinganmajia/train/labels/订单1813872_4_7175128.txt b/datasets/pinganmajia/train/labels/订单1813872_4_7175128.txt new file mode 100644 index 0000000..28f78db --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813872_4_7175128.txt @@ -0,0 +1 @@ +4 0.535951 0.249336 0.499206 0.266396 0.516693 0.284766 0.453711 0.371387 0.416966 0.507861 0.444961 0.520986 0.478203 0.585293 0.474701 0.551172 0.488698 0.577422 0.485208 0.688965 0.492201 0.759834 0.485208 0.824141 0.506198 0.850381 0.551693 0.804453 0.558698 0.745400 0.586693 0.576104 0.612930 0.643037 0.614687 0.725713 0.618190 0.796582 0.656680 0.825449 0.707422 0.841201 0.684674 0.783457 0.698672 0.682402 0.710924 0.539365 0.710924 0.467178 0.735417 0.392383 0.742422 0.311016 0.719674 0.279521 0.654935 0.258525 0.665430 0.187656 0.623437 0.144346 0.570937 0.152227 0.539440 0.207344 diff --git a/datasets/pinganmajia/train/labels/订单1813875_4_7175060.txt b/datasets/pinganmajia/train/labels/订单1813875_4_7175060.txt new file mode 100644 index 0000000..5cad617 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813875_4_7175060.txt @@ -0,0 +1 @@ +4 0.000504 0.388441 0.045998 0.329383 0.012757 0.272955 0.014506 0.228333 0.040751 0.215208 0.045998 0.114159 0.101996 0.060355 0.164990 0.028858 0.296224 0.018356 0.423951 0.022299 0.493951 0.082662 0.493951 0.153534 0.464198 0.269020 0.464198 0.330694 0.397706 0.448804 0.436204 0.505239 0.457202 0.564290 0.446698 0.602353 0.506193 0.767701 0.528817 1.000000 0.002130 1.000000 0.000000 0.999992 0.000000 0.477269 diff --git a/datasets/pinganmajia/train/labels/订单1813876_4_7175206.txt b/datasets/pinganmajia/train/labels/订单1813876_4_7175206.txt new file mode 100644 index 0000000..ca536c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813876_4_7175206.txt @@ -0,0 +1 @@ +4 0.000490 0.334620 0.080980 0.333309 0.035490 0.300502 0.026732 0.245380 0.042484 0.223076 0.049477 0.110208 0.143971 0.045907 0.203464 0.028848 0.339951 0.060343 0.381944 0.141703 0.376699 0.220441 0.388938 0.270319 0.383693 0.375306 0.341699 0.427794 0.343448 0.456667 0.430931 0.511789 0.451928 0.608897 0.499183 0.646961 0.504428 0.793934 0.532418 0.976348 0.523676 0.996042 0.000000 0.996042 0.000000 0.426924 diff --git a/datasets/pinganmajia/train/labels/订单1813877_4_7175344.txt b/datasets/pinganmajia/train/labels/订单1813877_4_7175344.txt new file mode 100644 index 0000000..dc91780 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813877_4_7175344.txt @@ -0,0 +1 @@ +4 0.012337 0.431800 0.093046 0.395056 0.168833 0.387183 0.165879 0.322878 0.156037 0.288756 0.140288 0.246761 0.139304 0.199517 0.155054 0.194267 0.169817 0.091906 0.203279 0.052539 0.250525 0.035478 0.306625 0.057789 0.344029 0.122089 0.356825 0.212644 0.362729 0.252011 0.353871 0.330750 0.323358 0.395056 0.368633 0.438361 0.416863 0.476422 0.453279 0.538100 0.469029 0.626028 0.500525 0.767761 0.523158 1.000000 0.514563 1.000000 0.003479 0.997417 diff --git a/datasets/pinganmajia/train/labels/订单1813878_4_7175251.txt b/datasets/pinganmajia/train/labels/订单1813878_4_7175251.txt new file mode 100644 index 0000000..f2bb873 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813878_4_7175251.txt @@ -0,0 +1 @@ +4 0.002144 0.387171 0.066883 0.387171 0.087883 0.335992 0.082633 0.295308 0.063383 0.246750 0.073883 0.191633 0.096633 0.179825 0.136878 0.090583 0.234867 0.042029 0.345100 0.039404 0.439589 0.094521 0.497333 0.162763 0.507828 0.228379 0.490333 0.333367 0.453589 0.430479 0.429089 0.458037 0.446589 0.496096 0.523578 0.577462 0.541078 0.647012 0.598817 0.791371 0.707289 1.000000 0.000000 1.000000 0.000000 0.763371 diff --git a/datasets/pinganmajia/train/labels/订单1813880_4_7175178.txt b/datasets/pinganmajia/train/labels/订单1813880_4_7175178.txt new file mode 100644 index 0000000..d52a6d5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813880_4_7175178.txt @@ -0,0 +1 @@ +4 0.002260 0.107606 0.091511 0.072172 0.219237 0.070858 0.329477 0.115477 0.373220 0.188972 0.367966 0.249333 0.359223 0.335953 0.332980 0.439629 0.392472 0.513114 0.338220 0.557733 0.374972 0.658782 0.406469 0.686345 0.420466 0.959311 0.430960 0.994746 0.005763 0.994746 diff --git a/datasets/pinganmajia/train/labels/订单1813883_4_7175233.txt b/datasets/pinganmajia/train/labels/订单1813883_4_7175233.txt new file mode 100644 index 0000000..84c8419 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813883_4_7175233.txt @@ -0,0 +1 @@ +4 0.956644 0.290634 0.908085 0.261765 0.902837 0.242076 0.880531 0.215836 0.885779 0.179089 0.876597 0.108224 0.821476 0.091153 0.782099 0.126597 0.771603 0.188270 0.774233 0.219769 0.740104 0.256517 0.703368 0.264383 0.640369 0.383806 0.628558 0.442860 0.635121 0.572791 0.642999 0.612157 0.665306 0.604279 0.678431 0.568847 0.688927 0.550473 0.684994 0.635779 0.686309 0.734198 0.670554 0.835248 0.667935 0.894314 0.642999 0.921869 0.656125 0.944175 0.699423 0.925802 0.734856 0.912676 0.734856 0.866747 0.746667 0.798512 0.759792 0.710577 0.779481 0.680392 0.783414 0.759135 0.783414 0.822134 0.784729 0.913991 0.812284 0.942860 0.849031 0.980923 0.877901 0.980923 0.866090 0.928431 0.854279 0.811626 0.846413 0.761765 0.880531 0.626597 0.879216 0.644960 0.901522 0.638408 0.885779 0.665963 0.922526 0.644960 0.936955 0.610842 0.976332 0.512422 0.988143 0.421869 diff --git a/datasets/pinganmajia/train/labels/订单1813884_4_7175248.txt b/datasets/pinganmajia/train/labels/订单1813884_4_7175248.txt new file mode 100644 index 0000000..0f77da2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813884_4_7175248.txt @@ -0,0 +1 @@ +4 1.000000 0.124221 0.759769 0.086625 0.611038 0.135183 0.548051 0.228365 0.572551 0.314971 0.602295 0.380596 0.646038 0.469827 0.716026 0.514452 0.756282 0.560385 0.616295 0.666683 0.562051 0.772981 0.413321 0.992144 0.920769 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813885_4_7175231.txt b/datasets/pinganmajia/train/labels/订单1813885_4_7175231.txt new file mode 100644 index 0000000..412da85 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813885_4_7175231.txt @@ -0,0 +1 @@ +4 0.007513 0.398945 0.128242 0.368760 0.212240 0.383193 0.306719 0.443564 0.331224 0.501299 0.297982 0.587920 0.262982 0.620723 0.359219 0.719150 0.446706 0.822822 0.505339 1.000000 0.000547 1.000000 0.000000 1.000000 -0.000000 0.914990 diff --git a/datasets/pinganmajia/train/labels/订单1813886_4_7175234.txt b/datasets/pinganmajia/train/labels/订单1813886_4_7175234.txt new file mode 100644 index 0000000..6924883 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813886_4_7175234.txt @@ -0,0 +1 @@ +4 1.000000 0.569853 0.952369 0.559032 0.964624 0.541973 0.983873 0.465858 0.945376 0.448787 0.962876 0.334620 0.903382 0.261127 0.775637 0.236189 0.651405 0.254571 0.544673 0.342488 0.544673 0.426483 0.565670 0.570833 0.549918 0.619400 0.448431 0.716507 0.366193 0.851679 0.236716 0.998664 0.997859 0.997353 1.000000 0.923211 diff --git a/datasets/pinganmajia/train/labels/订单1813887_4_7175309.txt b/datasets/pinganmajia/train/labels/订单1813887_4_7175309.txt new file mode 100644 index 0000000..e0fa18e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813887_4_7175309.txt @@ -0,0 +1 @@ +4 0.987369 0.267684 0.859624 0.225699 0.672402 0.244069 0.600670 0.320184 0.598922 0.415980 0.630408 0.514412 0.663660 0.577402 0.588415 0.604963 0.527173 0.706005 0.523676 0.821495 0.451095 1.000000 0.904412 1.000000 0.997859 0.998664 0.997859 0.548529 0.969869 0.534093 0.973366 0.482917 1.000000 0.481740 1.000000 0.439301 diff --git a/datasets/pinganmajia/train/labels/订单1813889_4_7175318.txt b/datasets/pinganmajia/train/labels/订单1813889_4_7175318.txt new file mode 100644 index 0000000..a3de552 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813889_4_7175318.txt @@ -0,0 +1 @@ +4 0.651432 0.024922 0.574440 0.145664 0.576185 0.221777 0.555195 0.401562 0.602435 0.480303 0.528945 0.519678 0.539440 0.591855 0.479948 0.811016 0.453711 0.999990 1.000000 0.999990 1.000000 0.899756 0.985638 0.440937 0.966393 0.427812 0.971641 0.385820 1.000000 0.373252 1.000000 0.301289 0.996133 0.275586 0.975143 0.190283 0.952396 0.107598 0.891146 0.019678 diff --git a/datasets/pinganmajia/train/labels/订单1813890_4_7175292.txt b/datasets/pinganmajia/train/labels/订单1813890_4_7175292.txt new file mode 100644 index 0000000..9ca591b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813890_4_7175292.txt @@ -0,0 +1 @@ +4 1.000000 0.647855 0.866634 0.586593 0.807141 0.548529 0.812386 0.518346 0.861389 0.481605 0.852631 0.438297 0.824641 0.430417 0.800147 0.328051 0.724902 0.278186 0.621667 0.265061 0.509673 0.356924 0.507925 0.439608 0.506176 0.532782 0.523676 0.577402 0.397696 0.629890 0.341699 0.712574 0.257712 0.893676 0.233203 0.981605 0.234853 1.000000 0.608578 1.000000 0.997859 0.998664 1.000000 0.913762 diff --git a/datasets/pinganmajia/train/labels/订单1813891_4_7175273.txt b/datasets/pinganmajia/train/labels/订单1813891_4_7175273.txt new file mode 100644 index 0000000..0885bea --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813891_4_7175273.txt @@ -0,0 +1 @@ +4 0.999514 0.423897 0.873534 0.410769 0.828255 0.379276 0.830226 0.345154 0.835144 0.286103 0.823337 0.241481 0.784947 0.108936 0.721957 0.042006 0.657981 0.091872 0.611721 0.194237 0.612707 0.297910 0.597942 0.322846 0.616639 0.391083 0.649120 0.464577 0.561524 0.552506 0.509361 0.707359 0.483769 0.880590 0.511399 1.000000 1.000000 1.000000 1.000000 0.518853 diff --git a/datasets/pinganmajia/train/labels/订单1813895_4_7175359.txt b/datasets/pinganmajia/train/labels/订单1813895_4_7175359.txt new file mode 100644 index 0000000..b29cd04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813895_4_7175359.txt @@ -0,0 +1 @@ +4 0.989022 0.283496 0.859539 0.257250 0.691556 0.303183 0.649561 0.422604 0.642561 0.489533 0.635567 0.620767 0.698556 0.683758 0.625067 0.740192 0.532328 0.689008 0.509578 0.723129 0.513078 0.787433 0.493956 1.000000 0.997739 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813896_4_7175356.txt b/datasets/pinganmajia/train/labels/订单1813896_4_7175356.txt new file mode 100644 index 0000000..da4ce41 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813896_4_7175356.txt @@ -0,0 +1 @@ +4 0.798319 0.177215 0.850819 0.202149 0.878816 0.249397 0.901564 0.364879 0.868304 0.464616 0.835058 0.496118 0.800073 0.497423 0.744079 0.677215 0.768567 0.720526 0.731827 0.713958 0.698582 0.685088 0.705585 0.589287 0.681082 0.532862 0.649591 0.629978 0.646082 0.682467 0.597091 0.720526 0.565599 0.703465 0.590102 0.670658 0.602339 0.581414 0.584854 0.475121 0.574342 0.500055 0.546345 0.471184 0.541096 0.357007 0.576096 0.244145 0.618099 0.189024 0.682836 0.174594 0.686330 0.128662 0.707325 0.091919 0.761579 0.087982 0.791316 0.119474 0.794825 0.161469 diff --git a/datasets/pinganmajia/train/labels/订单1813900_4_7175466.txt b/datasets/pinganmajia/train/labels/订单1813900_4_7175466.txt new file mode 100644 index 0000000..75432d7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813900_4_7175466.txt @@ -0,0 +1 @@ +4 1.000000 0.394536 0.970941 0.388464 0.992554 0.333351 0.987639 0.280856 0.990586 0.242794 0.995502 0.076134 0.934599 0.021010 0.813789 0.022330 0.750926 0.095814 0.699846 0.185052 0.700833 0.242794 0.692971 0.290041 0.698866 0.389784 0.710656 0.400278 0.547600 0.552505 0.465100 0.707361 0.405177 0.797918 0.408125 0.845165 0.349198 0.994763 1.000000 0.997381 diff --git a/datasets/pinganmajia/train/labels/订单1813901_4_7175430.txt b/datasets/pinganmajia/train/labels/订单1813901_4_7175430.txt new file mode 100644 index 0000000..cb4d2a7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813901_4_7175430.txt @@ -0,0 +1 @@ +4 0.000490 0.444853 0.051225 0.440919 0.065229 0.410735 0.016242 0.370049 0.040735 0.331998 0.040735 0.253260 0.093235 0.181078 0.257712 0.136458 0.392435 0.170576 0.394183 0.228321 0.397696 0.305748 0.401193 0.367426 0.387190 0.446164 0.488676 0.506532 0.546422 0.526225 0.539428 0.669265 0.471176 0.889743 0.509673 0.996042 0.000000 0.996042 0.000000 0.598725 diff --git a/datasets/pinganmajia/train/labels/订单1813902_4_7175420.txt b/datasets/pinganmajia/train/labels/订单1813902_4_7175420.txt new file mode 100644 index 0000000..3199c91 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813902_4_7175420.txt @@ -0,0 +1 @@ +4 0.003987 0.392365 0.133480 0.362181 0.135229 0.276875 0.108971 0.257194 0.105474 0.228321 0.103725 0.186324 0.117729 0.179767 0.110719 0.107586 0.163219 0.053775 0.227958 0.026225 0.366193 0.028848 0.432680 0.087904 0.469428 0.157451 0.451928 0.223076 0.413431 0.330686 0.357451 0.400233 0.409935 0.456667 0.504428 0.559032 0.534167 0.646961 0.513170 0.708640 0.577925 0.846434 0.598922 0.933039 0.541176 0.955355 0.513170 0.984228 0.000000 0.997316 0.000000 0.852059 diff --git a/datasets/pinganmajia/train/labels/订单1813903_4_7175510.txt b/datasets/pinganmajia/train/labels/订单1813903_4_7175510.txt new file mode 100644 index 0000000..5060098 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813903_4_7175510.txt @@ -0,0 +1 @@ +4 1.000000 0.475116 0.912925 0.409502 0.930642 0.381933 0.955252 0.321574 0.942457 0.286134 0.927691 0.279572 0.924740 0.158843 0.877500 0.098472 0.785964 0.085347 0.698359 0.135220 0.661944 0.257269 0.646198 0.315012 0.658993 0.380625 0.679661 0.469861 0.636354 0.511863 0.568438 0.563044 0.574349 0.623403 0.546788 0.728391 0.524149 0.776956 0.512335 0.871435 0.472969 0.990856 0.998559 0.997419 1.000000 0.845313 diff --git a/datasets/pinganmajia/train/labels/订单1813905_4_7175577.txt b/datasets/pinganmajia/train/labels/订单1813905_4_7175577.txt new file mode 100644 index 0000000..cdd81a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813905_4_7175577.txt @@ -0,0 +1 @@ +4 1.000000 0.249144 0.819403 0.224398 0.640926 0.280826 0.586687 0.358256 0.614681 0.463241 0.660175 0.604977 0.549938 0.674529 0.476451 0.828071 0.516091 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813906_4_7175458.txt b/datasets/pinganmajia/train/labels/订单1813906_4_7175458.txt new file mode 100644 index 0000000..75c72a6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813906_4_7175458.txt @@ -0,0 +1 @@ +4 0.009144 0.105021 0.122878 0.034154 0.233117 0.026279 0.350350 0.053838 0.437839 0.105021 0.457089 0.227067 0.441339 0.333367 0.397594 0.467225 0.509578 0.535467 0.576072 0.801871 0.625056 1.000000 0.621939 1.000000 0.002144 0.993471 diff --git a/datasets/pinganmajia/train/labels/订单1813907_4_7175515.txt b/datasets/pinganmajia/train/labels/订单1813907_4_7175515.txt new file mode 100644 index 0000000..5ff4745 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813907_4_7175515.txt @@ -0,0 +1 @@ +4 0.378458 0.274263 0.359208 0.246700 0.392458 0.200769 0.436200 0.196831 0.472942 0.221769 0.458950 0.271637 0.502692 0.291325 0.525442 0.328069 0.544683 0.459300 0.530683 0.489487 0.506192 0.499981 0.490442 0.566912 0.488692 0.636469 0.471192 0.686338 0.488692 0.709956 0.474692 0.721769 0.446700 0.702081 0.437950 0.683713 0.441450 0.598406 0.434450 0.531481 0.429200 0.595781 0.430950 0.664025 0.402950 0.709956 0.367958 0.717831 0.376708 0.692900 0.395950 0.675837 0.380208 0.611531 0.366208 0.553787 0.369708 0.460613 0.338208 0.426494 0.345208 0.480300 0.338208 0.496044 0.304967 0.463237 0.306717 0.409431 0.322467 0.332006 0.336458 0.291325 0.374958 0.279512 diff --git a/datasets/pinganmajia/train/labels/订单1813908_4_7175497.txt b/datasets/pinganmajia/train/labels/订单1813908_4_7175497.txt new file mode 100644 index 0000000..7293a70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813908_4_7175497.txt @@ -0,0 +1 @@ +4 0.992656 0.435741 0.947378 0.397685 0.959193 0.322882 0.925729 0.232326 0.892257 0.084039 0.859783 0.022361 0.710174 0.015799 0.644227 0.091910 0.642257 0.171968 0.644227 0.325509 0.635373 0.408183 0.542847 0.493484 0.492656 0.626030 0.472969 0.752014 0.361771 1.000000 1.000000 1.000000 1.000000 0.823970 diff --git a/datasets/pinganmajia/train/labels/订单1813912_4_7175542.txt b/datasets/pinganmajia/train/labels/订单1813912_4_7175542.txt new file mode 100644 index 0000000..a14e6ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813912_4_7175542.txt @@ -0,0 +1 @@ +4 0.999502 0.648288 0.934541 0.602357 0.898125 0.517057 0.904033 0.450124 0.929619 0.368763 0.930605 0.295267 0.925684 0.108919 0.838086 0.039362 0.748521 0.036738 0.637300 0.110228 0.614663 0.237526 0.631392 0.371387 0.668794 0.499993 0.628442 0.583984 0.626470 0.622044 0.484741 0.686348 0.433560 0.791335 0.360723 0.996055 1.000000 0.997370 1.000000 0.824486 diff --git a/datasets/pinganmajia/train/labels/订单1813913_4_7175534.txt b/datasets/pinganmajia/train/labels/订单1813913_4_7175534.txt new file mode 100644 index 0000000..0c277eb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813913_4_7175534.txt @@ -0,0 +1 @@ +4 0.980244 0.161433 0.859513 0.156183 0.646038 0.219173 0.586551 0.303163 0.626795 0.363529 0.646038 0.429154 0.703782 0.498702 0.658282 0.543327 0.583051 0.661433 0.570795 0.754606 0.623295 0.813663 0.633795 0.875346 0.637295 0.998702 0.993551 1.000000 0.997744 1.000000 1.000000 0.653413 1.000000 0.295500 diff --git a/datasets/pinganmajia/train/labels/订单1813916_4_7175555.txt b/datasets/pinganmajia/train/labels/订单1813916_4_7175555.txt new file mode 100644 index 0000000..732a742 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813916_4_7175555.txt @@ -0,0 +1 @@ +4 0.989022 0.249375 0.920778 0.236254 0.857789 0.199508 0.870033 0.170637 0.810544 0.051213 0.737050 0.055150 0.689806 0.105021 0.691556 0.212633 0.619817 0.271687 0.576072 0.372737 0.556822 0.486908 0.542828 0.606333 0.556822 0.658825 0.576072 0.647012 0.595322 0.668013 0.632067 0.766437 0.649561 0.919979 0.591822 0.958037 0.563822 0.981658 0.628567 0.994783 0.654811 0.972475 0.712556 0.959350 0.700306 0.994783 0.822789 0.996096 0.831539 0.923917 0.887533 0.783496 0.931278 0.707383 0.969772 0.704758 1.000000 0.685867 1.000000 0.456513 diff --git a/datasets/pinganmajia/train/labels/订单1813917_4_7175687.txt b/datasets/pinganmajia/train/labels/订单1813917_4_7175687.txt new file mode 100644 index 0000000..73c0cfa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813917_4_7175687.txt @@ -0,0 +1 @@ +4 0.719674 0.278203 0.726667 0.233584 0.780911 0.213906 0.829909 0.234902 0.831654 0.282139 0.815911 0.303145 0.845651 0.349072 0.866654 0.388437 0.863151 0.477686 0.842161 0.543301 0.847409 0.612852 0.815911 0.631221 0.761667 0.737520 0.735417 0.799199 0.751172 0.847764 0.758164 0.877939 0.710924 0.850381 0.675924 0.821514 0.702174 0.746709 0.703919 0.661406 0.668932 0.725713 0.646185 0.795264 0.628685 0.841201 0.612930 0.885820 0.576185 0.856943 0.588438 0.801826 0.607682 0.713906 0.598932 0.603662 0.602435 0.551172 0.621680 0.486865 0.640938 0.414687 0.562187 0.406816 0.555195 0.371387 0.658424 0.309697 0.717917 0.288701 diff --git a/datasets/pinganmajia/train/labels/订单1813918_4_7175606.txt b/datasets/pinganmajia/train/labels/订单1813918_4_7175606.txt new file mode 100644 index 0000000..5c30115 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813918_4_7175606.txt @@ -0,0 +1 @@ +4 0.992059 0.140430 0.834760 0.133875 0.701922 0.182431 0.639005 0.249356 0.644245 0.343849 0.630263 0.425206 0.679199 0.527569 0.602300 0.632560 0.584828 0.695550 0.469966 1.000000 1.000000 1.000000 1.000000 0.628737 diff --git a/datasets/pinganmajia/train/labels/订单1813919_4_7175557.txt b/datasets/pinganmajia/train/labels/订单1813919_4_7175557.txt new file mode 100644 index 0000000..2bcffaf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813919_4_7175557.txt @@ -0,0 +1 @@ +4 0.457201 0.425186 0.551693 0.477686 0.588438 0.535420 0.584935 0.661406 0.569193 0.685029 0.530690 0.738838 0.520195 0.751963 0.528945 0.937002 0.535951 0.996055 0.481706 0.992119 0.462461 0.934375 0.427461 0.767705 0.420456 0.862197 0.420456 0.906816 0.411706 0.967178 0.369714 0.992119 0.315469 0.999990 0.352214 0.959307 0.338216 0.902881 0.324219 0.872695 0.320716 0.783457 0.327721 0.712588 0.299727 0.649600 0.317227 0.586602 0.234987 0.573486 0.226237 0.544609 0.285729 0.530176 0.290977 0.473740 0.341719 0.442246 0.357474 0.376631 0.394219 0.337266 0.451953 0.346445 0.479948 0.395000 diff --git a/datasets/pinganmajia/train/labels/订单1813920_4_7175613.txt b/datasets/pinganmajia/train/labels/订单1813920_4_7175613.txt new file mode 100644 index 0000000..d119cf4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813920_4_7175613.txt @@ -0,0 +1 @@ +4 0.005735 0.511789 0.045980 0.446164 0.045980 0.387108 0.077484 0.358235 0.089722 0.290000 0.168464 0.242757 0.271699 0.241446 0.350441 0.303125 0.364444 0.359559 0.352190 0.501287 0.448431 0.539338 0.397696 0.580025 0.478186 0.707316 0.497435 0.784755 0.534167 0.880551 0.544673 0.998664 0.009232 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813923_4_7175633.txt b/datasets/pinganmajia/train/labels/订单1813923_4_7175633.txt new file mode 100644 index 0000000..ca49622 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813923_4_7175633.txt @@ -0,0 +1 @@ +4 0.997561 0.552516 0.961140 0.502647 0.935551 0.476405 0.937518 0.418660 0.950313 0.372729 0.955239 0.308423 0.940472 0.189003 0.903070 0.129951 0.837126 0.094518 0.741654 0.128636 0.681612 0.220498 0.684565 0.381920 0.725907 0.528897 0.711140 0.566953 0.626495 0.607639 0.595987 0.787426 0.560551 0.982966 0.572475 1.000000 0.863940 1.000000 1.000000 0.998758 1.000000 0.710621 diff --git a/datasets/pinganmajia/train/labels/订单1813926_4_7175658.txt b/datasets/pinganmajia/train/labels/订单1813926_4_7175658.txt new file mode 100644 index 0000000..13eb7c6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813926_4_7175658.txt @@ -0,0 +1 @@ +4 1.000000 0.477606 0.861746 0.440989 0.836154 0.371433 0.843046 0.332067 0.835171 0.262511 0.814500 0.128650 0.763321 0.080094 0.675721 0.105028 0.630446 0.177211 0.628479 0.307128 0.632412 0.425239 0.656038 0.484294 0.617650 0.560411 0.615683 0.454111 0.539896 0.472483 0.519225 0.825500 0.505446 0.993483 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813927_4_7175735.txt b/datasets/pinganmajia/train/labels/订单1813927_4_7175735.txt new file mode 100644 index 0000000..cda8fc3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813927_4_7175735.txt @@ -0,0 +1 @@ +4 1.000000 0.386144 0.965054 0.377969 0.959159 0.303165 0.981752 0.229680 0.984691 0.141753 0.948349 0.039392 0.910046 0.021010 0.811821 0.023639 0.742083 0.127309 0.692971 0.232299 0.706728 0.276918 0.702793 0.349103 0.725386 0.383216 0.732261 0.418649 0.605556 0.473773 0.597701 0.511825 0.529923 0.635186 0.477863 0.748052 0.448403 0.859598 0.447415 0.990835 0.932122 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813928_4_7175836.txt b/datasets/pinganmajia/train/labels/订单1813928_4_7175836.txt new file mode 100644 index 0000000..3882f09 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813928_4_7175836.txt @@ -0,0 +1 @@ +4 0.009156 0.454117 0.005656 0.257266 0.052906 0.136531 0.194635 0.074852 0.465854 0.078789 0.523594 0.160148 0.507844 0.233641 0.476354 0.366187 0.492104 0.410805 0.588333 0.459359 0.535844 0.522352 0.509594 0.560414 0.556844 0.632594 0.649583 0.734953 0.723073 0.851750 0.745812 0.937055 0.728323 0.988234 0.002156 0.998734 diff --git a/datasets/pinganmajia/train/labels/订单1813929_4_7175746.txt b/datasets/pinganmajia/train/labels/订单1813929_4_7175746.txt new file mode 100644 index 0000000..9f3be73 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813929_4_7175746.txt @@ -0,0 +1 @@ +4 0.497448 0.347764 0.481706 0.308389 0.502695 0.279521 0.551693 0.275586 0.563945 0.320205 0.616432 0.353008 0.640938 0.397627 0.649687 0.468496 0.633932 0.543301 0.619935 0.583984 0.604193 0.687656 0.604193 0.754580 0.556940 0.778203 0.562187 0.728340 0.509701 0.751963 0.511445 0.700781 0.502695 0.633848 0.507943 0.532803 0.490456 0.511807 0.488698 0.423877 0.495703 0.368760 diff --git a/datasets/pinganmajia/train/labels/订单1813930_4_7175759.txt b/datasets/pinganmajia/train/labels/订单1813930_4_7175759.txt new file mode 100644 index 0000000..35f1d01 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813930_4_7175759.txt @@ -0,0 +1 @@ +4 0.999517 0.662763 0.943528 0.629954 0.961022 0.601083 0.966272 0.544654 0.936528 0.523654 0.929528 0.393733 0.847289 0.328117 0.719556 0.324179 0.548078 0.446229 0.544578 0.540717 0.560322 0.657512 0.511328 0.694258 0.495583 0.723129 0.465833 0.763813 0.481583 0.816304 0.431561 1.000000 1.000000 1.000000 1.000000 0.681438 diff --git a/datasets/pinganmajia/train/labels/订单1813931_4_7175790.txt b/datasets/pinganmajia/train/labels/订单1813931_4_7175790.txt new file mode 100644 index 0000000..08c74c8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813931_4_7175790.txt @@ -0,0 +1 @@ +4 0.444961 0.385820 0.518451 0.347764 0.507943 0.328076 0.500951 0.299199 0.514948 0.261143 0.548190 0.250645 0.590195 0.276895 0.600690 0.316260 0.595443 0.343818 0.668932 0.362197 0.714427 0.417314 0.738919 0.552480 0.728424 0.614160 0.696927 0.660098 0.698672 0.627285 0.674180 0.580039 0.677682 0.645664 0.663685 0.740146 0.665430 0.834639 0.670677 0.867441 0.684674 0.905498 0.654935 0.923877 0.602435 0.866133 0.556940 0.895000 0.511445 0.931748 0.500951 0.905498 0.542943 0.847764 0.525443 0.787393 0.504453 0.678467 0.490456 0.599727 0.486953 0.653535 0.462461 0.639102 0.423958 0.540674 0.427461 0.448809 diff --git a/datasets/pinganmajia/train/labels/订单1813933_4_7175778.txt b/datasets/pinganmajia/train/labels/订单1813933_4_7175778.txt new file mode 100644 index 0000000..9c9d66f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813933_4_7175778.txt @@ -0,0 +1 @@ +4 0.997859 0.346434 0.947124 0.335931 0.943627 0.295245 1.000000 0.256691 1.000000 0.161152 0.999608 0.149583 0.975114 0.072157 0.920866 0.017034 0.455425 0.014412 0.460686 0.160074 0.493922 0.229632 0.572663 0.373983 0.516667 0.419926 0.380196 0.527537 0.301454 0.627267 0.241961 0.713885 0.189461 0.801814 0.208709 0.883174 0.217092 1.000000 0.996111 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813935_4_7175783.txt b/datasets/pinganmajia/train/labels/订单1813935_4_7175783.txt new file mode 100644 index 0000000..0b2c8f0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813935_4_7175783.txt @@ -0,0 +1 @@ +4 0.010373 0.212650 0.105842 0.213958 0.190486 0.198206 0.204271 0.141782 0.183602 0.060417 0.195408 0.017106 0.442457 0.017106 0.428681 0.160150 0.389306 0.288762 0.416866 0.359630 0.476910 0.465926 0.495608 0.612905 0.531042 0.745451 0.544818 0.984306 0.520286 1.000000 0.000547 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813937_4_7175862.txt b/datasets/pinganmajia/train/labels/订单1813937_4_7175862.txt new file mode 100644 index 0000000..fa83a76 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813937_4_7175862.txt @@ -0,0 +1 @@ +4 0.997891 0.602354 0.898151 0.553799 0.859661 0.519678 0.873659 0.478994 0.880651 0.442246 0.864909 0.425186 0.868398 0.351699 0.740664 0.267705 0.626940 0.286084 0.541198 0.363506 0.537695 0.437002 0.558698 0.551172 0.479948 0.654844 0.458958 0.709961 0.430964 0.799199 0.404714 0.996055 0.602904 1.000000 0.997891 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813940_4_7175892.txt b/datasets/pinganmajia/train/labels/订单1813940_4_7175892.txt new file mode 100644 index 0000000..663d583 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813940_4_7175892.txt @@ -0,0 +1 @@ +4 0.534173 0.707320 0.569173 0.606270 0.576173 0.523600 0.548173 0.427790 0.500933 0.358240 0.392440 0.282130 0.394187 0.156140 0.320693 0.098400 0.271707 0.128580 0.247213 0.200760 0.257707 0.262440 0.168467 0.303120 0.096733 0.376610 0.000493 0.492100 0.009240 0.602340 0.038987 0.681080 0.049480 0.765070 0.103720 0.757190 0.136973 0.825430 0.164973 0.921230 0.199960 0.998660 0.213227 1.000000 0.395587 1.000000 0.430933 0.997350 0.443187 0.864800 0.467680 0.782130 0.527173 0.744070 diff --git a/datasets/pinganmajia/train/labels/订单1813942_4_7177801.txt b/datasets/pinganmajia/train/labels/订单1813942_4_7177801.txt new file mode 100644 index 0000000..60e660f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813942_4_7177801.txt @@ -0,0 +1 @@ +4 0.000000 0.459525 0.041866 0.439676 0.067457 0.375370 0.089115 0.343877 0.061554 0.270394 0.060564 0.224456 0.079271 0.225775 0.077300 0.136528 0.097969 0.056481 0.166866 0.024977 0.269227 0.057789 0.297769 0.101100 0.307613 0.249387 0.302691 0.325509 0.286944 0.384560 0.321398 0.443623 0.303681 0.501366 0.350920 0.559109 0.376510 0.670648 0.437535 0.753333 0.474939 0.838634 0.487734 0.955428 0.484783 0.992176 0.000000 0.992176 diff --git a/datasets/pinganmajia/train/labels/订单1813943_4_7175880.txt b/datasets/pinganmajia/train/labels/订单1813943_4_7175880.txt new file mode 100644 index 0000000..bab7975 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813943_4_7175880.txt @@ -0,0 +1 @@ +4 0.997534 0.677161 0.973911 0.654850 0.951274 0.640417 0.929619 0.559049 0.948320 0.505241 0.955210 0.450124 0.969976 0.290020 0.931592 0.217839 0.832183 0.183724 0.718008 0.245404 0.706196 0.393691 0.699307 0.450124 0.710132 0.509180 0.698320 0.590547 0.670762 0.650911 0.587100 0.772962 0.590054 0.940937 0.596514 1.000000 0.899131 1.000000 1.000000 0.998685 1.000000 0.945599 diff --git a/datasets/pinganmajia/train/labels/订单1813946_4_7175907.txt b/datasets/pinganmajia/train/labels/订单1813946_4_7175907.txt new file mode 100644 index 0000000..563d9bd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813946_4_7175907.txt @@ -0,0 +1 @@ +4 1.000000 0.648828 0.912148 0.590537 0.812409 0.535420 0.836914 0.503926 0.847409 0.440937 0.828164 0.421250 0.786159 0.312324 0.653177 0.291328 0.548190 0.335947 0.518451 0.442246 0.506198 0.506553 0.542943 0.580039 0.469453 0.692900 0.451953 0.784766 0.381966 0.918623 0.371471 0.992119 1.000000 0.998662 diff --git a/datasets/pinganmajia/train/labels/订单1813947_4_7175939.txt b/datasets/pinganmajia/train/labels/订单1813947_4_7175939.txt new file mode 100644 index 0000000..c393b95 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813947_4_7175939.txt @@ -0,0 +1 @@ +4 1.000000 0.674800 0.871794 0.610269 0.815799 0.570903 0.824549 0.561719 0.849039 0.526285 0.863044 0.477726 0.887535 0.395052 0.868287 0.321562 0.780799 0.283498 0.660069 0.279566 0.551574 0.329436 0.511331 0.392422 0.525336 0.477726 0.537581 0.548594 0.556829 0.598464 0.395845 0.719193 0.339861 0.812370 0.360856 0.922604 0.343356 0.996102 0.996019 0.997413 1.000000 0.851866 diff --git a/datasets/pinganmajia/train/labels/订单1813948_4_7175949.txt b/datasets/pinganmajia/train/labels/订单1813948_4_7175949.txt new file mode 100644 index 0000000..3618179 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813948_4_7175949.txt @@ -0,0 +1 @@ +4 0.000000 0.490694 0.038742 0.481650 0.078113 0.433096 0.067614 0.376667 0.003309 0.317614 0.000000 0.270654 0.000000 0.223529 0.020368 0.217876 0.017745 0.132574 0.043987 0.045956 0.079420 0.017083 0.298587 0.013154 0.348448 0.082704 0.358946 0.141757 0.376013 0.217876 0.394379 0.318922 0.335327 0.484281 0.463938 0.577451 0.524306 0.742810 0.598889 1.000000 0.112958 1.000000 0.000000 0.998775 diff --git a/datasets/pinganmajia/train/labels/订单1813950_4_7175919.txt b/datasets/pinganmajia/train/labels/订单1813950_4_7175919.txt new file mode 100644 index 0000000..b84d381 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813950_4_7175919.txt @@ -0,0 +1 @@ +4 0.780794 0.021029 0.719556 0.082708 0.693306 0.233629 0.684556 0.300558 0.614567 0.358300 0.661811 0.435729 0.626817 0.539404 0.593572 0.656200 0.577822 0.762500 0.537578 0.811058 0.499083 0.997408 0.993244 1.000000 0.999517 1.000000 0.994272 0.015779 diff --git a/datasets/pinganmajia/train/labels/订单1813951_4_7175964.txt b/datasets/pinganmajia/train/labels/订单1813951_4_7175964.txt new file mode 100644 index 0000000..c271071 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813951_4_7175964.txt @@ -0,0 +1 @@ +4 0.000000 0.627929 0.038668 0.624657 0.006658 0.580037 0.021209 0.548542 0.093967 0.455368 0.274375 0.415999 0.495543 0.455368 0.533370 0.534105 0.536277 0.612849 0.451889 0.694210 0.556644 0.828070 0.547921 0.891060 0.518818 0.994737 0.006658 0.998676 0.000000 0.829197 diff --git a/datasets/pinganmajia/train/labels/订单1813954_4_7175962.txt b/datasets/pinganmajia/train/labels/订单1813954_4_7175962.txt new file mode 100644 index 0000000..c336228 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813954_4_7175962.txt @@ -0,0 +1 @@ +4 0.994608 0.332051 0.962126 0.297925 0.963113 0.274306 0.973940 0.224436 0.992635 0.099763 0.985748 0.015776 0.675711 0.013154 0.663897 0.103701 0.676691 0.202124 0.712126 0.354355 0.595000 0.501340 0.595987 0.527582 0.541850 0.632574 0.532010 0.664069 0.488701 0.732312 0.485748 0.799240 0.490668 0.862230 0.522837 1.000000 1.000000 1.000000 1.000000 0.789616 diff --git a/datasets/pinganmajia/train/labels/订单1813955_4_7175992.txt b/datasets/pinganmajia/train/labels/订单1813955_4_7175992.txt new file mode 100644 index 0000000..cd1a8ab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813955_4_7175992.txt @@ -0,0 +1 @@ +4 0.000000 0.431838 0.019739 0.392365 0.049477 0.368738 0.042484 0.321495 0.073987 0.304436 0.075735 0.225699 0.135229 0.175821 0.240212 0.156140 0.350441 0.196826 0.401193 0.245380 0.404690 0.320184 0.404690 0.402855 0.404690 0.440919 0.502680 0.459289 0.455425 0.522279 0.549918 0.602341 0.558676 0.700760 0.593660 0.855613 0.619918 0.893676 0.581422 0.939608 0.544673 0.999975 0.007484 0.997353 0.000000 0.515478 diff --git a/datasets/pinganmajia/train/labels/订单1813956_4_7175999.txt b/datasets/pinganmajia/train/labels/订单1813956_4_7175999.txt new file mode 100644 index 0000000..aca402c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813956_4_7175999.txt @@ -0,0 +1 @@ +4 0.009258 0.139102 0.114245 0.125977 0.247227 0.144346 0.313724 0.206025 0.353971 0.300518 0.355716 0.375322 0.341719 0.438311 0.504453 0.595791 0.548190 0.632539 0.535951 0.656162 0.563945 0.662725 0.591940 0.783457 0.551693 0.849072 0.541198 0.860879 0.544661 1.000000 0.364570 1.000000 0.000508 0.997363 0.000000 0.964912 0.000000 0.442363 0.046003 0.435684 0.030260 0.413379 0.000000 0.388408 0.000000 0.301465 diff --git a/datasets/pinganmajia/train/labels/订单1813957_4_7176026.txt b/datasets/pinganmajia/train/labels/订单1813957_4_7176026.txt new file mode 100644 index 0000000..3ae7f44 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813957_4_7176026.txt @@ -0,0 +1 @@ +4 0.000000 0.377328 0.029551 0.367484 0.046618 0.337296 0.057116 0.253309 0.026928 0.210000 0.000000 0.165931 0.000000 0.074641 0.034804 0.064330 0.049240 0.078766 0.064984 0.014461 0.423252 0.014461 0.436381 0.063015 0.431127 0.169314 0.414069 0.280866 0.376013 0.359608 0.326144 0.412100 0.467876 0.542018 0.546618 0.706062 0.583358 0.854355 0.649681 1.000000 0.004575 1.000000 0.000000 0.563252 diff --git a/datasets/pinganmajia/train/labels/订单1813959_4_7176046.txt b/datasets/pinganmajia/train/labels/订单1813959_4_7176046.txt new file mode 100644 index 0000000..90c4d33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813959_4_7176046.txt @@ -0,0 +1 @@ +4 0.005435 0.645694 0.120588 0.650948 0.151103 0.615515 0.189485 0.560392 0.223940 0.545956 0.250515 0.511838 0.290864 0.431781 0.277089 0.377982 0.272163 0.332051 0.278070 0.333358 0.270196 0.259869 0.277089 0.196879 0.330239 0.135196 0.404056 0.126013 0.483781 0.237557 0.487714 0.321552 0.500515 0.314984 0.497561 0.362230 0.490668 0.417353 0.481814 0.446217 0.519210 0.526275 0.558585 0.561708 0.592047 0.653570 0.596967 0.713938 0.644210 0.996087 0.002843 1.000000 0.000000 1.000000 0.000000 0.925106 diff --git a/datasets/pinganmajia/train/labels/订单1813961_4_7176036.txt b/datasets/pinganmajia/train/labels/订单1813961_4_7176036.txt new file mode 100644 index 0000000..c9d9d57 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813961_4_7176036.txt @@ -0,0 +1 @@ +4 1.000000 0.412747 0.931289 0.402884 0.889789 0.355638 0.908564 0.295267 0.921412 0.272962 0.942162 0.227025 0.938206 0.192910 0.930304 0.191595 0.946113 0.082669 0.920422 0.035430 0.900657 0.015742 0.764299 0.018366 0.728725 0.093171 0.712917 0.185033 0.706000 0.274271 0.705015 0.342513 0.726750 0.400254 0.632882 0.404193 0.490593 0.683724 0.543951 0.862201 0.538025 0.981621 0.539010 0.980306 1.000000 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1813964_4_7176053.txt b/datasets/pinganmajia/train/labels/订单1813964_4_7176053.txt new file mode 100644 index 0000000..47817dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813964_4_7176053.txt @@ -0,0 +1 @@ +4 0.002239 0.106275 0.170212 0.077402 0.297958 0.102341 0.385441 0.170576 0.413431 0.272941 0.373186 0.354301 0.373186 0.429105 0.408186 0.448787 0.362696 0.523591 0.416944 0.629890 0.432680 0.715196 0.411683 0.767684 0.479935 0.894988 0.453676 0.926483 0.496160 1.000000 0.007435 1.000000 0.000490 0.398922 diff --git a/datasets/pinganmajia/train/labels/订单1813965_4_7176077.txt b/datasets/pinganmajia/train/labels/订单1813965_4_7176077.txt new file mode 100644 index 0000000..35e28b2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813965_4_7176077.txt @@ -0,0 +1 @@ +4 0.993442 0.564268 0.881640 0.511780 0.862419 0.488159 0.874643 0.454037 0.890373 0.422537 0.881640 0.358232 0.864172 0.259805 0.789042 0.187634 0.654529 0.192878 0.570682 0.269000 0.561948 0.377915 0.558458 0.450098 0.574172 0.488159 0.553214 0.555085 0.388994 0.643012 0.319123 0.820183 0.334838 0.997341 1.000000 0.997341 1.000000 0.835207 diff --git a/datasets/pinganmajia/train/labels/订单1813966_4_7176108.txt b/datasets/pinganmajia/train/labels/订单1813966_4_7176108.txt new file mode 100644 index 0000000..27c8ec5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813966_4_7176108.txt @@ -0,0 +1 @@ +4 0.992612 0.471120 0.826274 0.430443 0.770171 0.342513 0.779033 0.311016 0.770171 0.251960 0.752456 0.242773 0.740645 0.106296 0.653047 0.093171 0.590054 0.141725 0.557573 0.202096 0.566431 0.261146 0.582183 0.387135 0.611709 0.444876 0.606787 0.484245 0.497534 0.673223 0.470962 0.770332 0.490645 0.898945 0.517510 1.000000 0.996411 1.000000 0.997534 0.999993 diff --git a/datasets/pinganmajia/train/labels/订单1813967_4_7176102.txt b/datasets/pinganmajia/train/labels/订单1813967_4_7176102.txt new file mode 100644 index 0000000..9f29246 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813967_4_7176102.txt @@ -0,0 +1 @@ +4 0.996017 0.585333 0.877033 0.528904 0.892783 0.497408 0.891033 0.451475 0.891033 0.402921 0.863033 0.275625 0.730050 0.240192 0.576072 0.270375 0.527078 0.325492 0.520078 0.433104 0.506083 0.510533 0.535828 0.573525 0.430839 0.700821 0.380094 0.738879 0.388844 0.858300 0.346850 0.998721 1.000000 0.998721 1.000000 0.820454 diff --git a/datasets/pinganmajia/train/labels/订单1813971_4_7176154.txt b/datasets/pinganmajia/train/labels/订单1813971_4_7176154.txt new file mode 100644 index 0000000..ffdf5bc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813971_4_7176154.txt @@ -0,0 +1 @@ +4 1.000000 0.409216 0.940494 0.370093 0.951296 0.278237 0.967994 0.164062 0.925764 0.019701 0.637971 0.014454 0.572160 0.196866 0.582963 0.288732 0.590826 0.337289 0.596713 0.393722 0.434645 0.480330 0.397323 0.590567 0.351157 0.711299 0.358032 0.813670 0.374730 0.881907 0.446960 1.000000 0.997508 1.000000 1.000000 0.698268 diff --git a/datasets/pinganmajia/train/labels/订单1813973_4_7176128.txt b/datasets/pinganmajia/train/labels/订单1813973_4_7176128.txt new file mode 100644 index 0000000..3b68653 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813973_4_7176128.txt @@ -0,0 +1 @@ +4 0.002239 0.506532 0.040735 0.454044 0.014493 0.359559 0.042484 0.246691 0.131716 0.178456 0.304951 0.190257 0.364444 0.262439 0.408186 0.385797 0.411683 0.476348 0.395948 0.538027 0.455425 0.637770 0.495670 0.790000 0.542925 0.845123 0.558676 0.892365 0.476422 0.929105 0.439690 0.954044 0.453676 0.999975 0.451797 1.000000 0.000000 1.000000 0.000000 0.634485 diff --git a/datasets/pinganmajia/train/labels/订单1813975_4_7176229.txt b/datasets/pinganmajia/train/labels/订单1813975_4_7176229.txt new file mode 100644 index 0000000..1de63d0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813975_4_7176229.txt @@ -0,0 +1 @@ +4 1.000000 0.500029 0.948893 0.484238 0.955898 0.440937 0.968138 0.401562 0.985638 0.372695 0.987383 0.339883 0.948893 0.338574 0.957643 0.249336 0.898151 0.190283 0.772161 0.152227 0.639180 0.185029 0.614687 0.272959 0.597187 0.366133 0.586693 0.439619 0.619935 0.523613 0.516693 0.578730 0.436211 0.674531 0.380221 0.767705 0.353971 0.887129 0.345221 0.975059 0.352214 0.997363 0.613503 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813976_4_7176138.txt b/datasets/pinganmajia/train/labels/订单1813976_4_7176138.txt new file mode 100644 index 0000000..d13031f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813976_4_7176138.txt @@ -0,0 +1 @@ +4 0.996562 0.360904 0.974909 0.347782 0.963096 0.334654 0.957192 0.293974 0.970971 0.195551 0.953255 0.090564 0.902077 0.031506 0.804635 0.044628 0.743611 0.098436 0.708178 0.183737 0.714082 0.276910 0.709163 0.314968 0.697351 0.333346 0.715067 0.391083 0.699317 0.409462 0.636327 0.519692 0.621562 0.565628 0.566447 0.632558 0.525106 0.716545 0.546760 0.762481 0.633375 0.799224 0.645183 0.860904 0.624519 1.000000 1.000000 1.000000 1.000000 0.808167 diff --git a/datasets/pinganmajia/train/labels/订单1813979_4_7176180.txt b/datasets/pinganmajia/train/labels/订单1813979_4_7176180.txt new file mode 100644 index 0000000..ef16554 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813979_4_7176180.txt @@ -0,0 +1 @@ +4 0.007394 0.395046 0.068633 0.381921 0.073883 0.320242 0.045889 0.292683 0.047639 0.257250 0.056389 0.217879 0.082633 0.212633 0.112378 0.120767 0.164872 0.077463 0.334600 0.059088 0.422089 0.107646 0.485083 0.190321 0.485083 0.311058 0.460589 0.392421 0.402844 0.465913 0.535828 0.536779 0.640811 0.654887 0.689806 0.753313 0.719556 0.855675 0.629406 1.000000 0.308394 1.000000 0.003894 0.998721 diff --git a/datasets/pinganmajia/train/labels/订单1813982_4_7176164.txt b/datasets/pinganmajia/train/labels/订单1813982_4_7176164.txt new file mode 100644 index 0000000..acbebb8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813982_4_7176164.txt @@ -0,0 +1 @@ +4 0.992614 0.132525 0.882386 0.074779 0.677647 0.091838 0.579673 0.156140 0.535915 0.234877 0.535915 0.347745 0.556912 0.463223 0.439690 0.555086 0.364444 0.619400 0.395948 0.664020 0.313693 0.843799 0.345196 0.918603 0.390686 0.999975 1.000000 0.997353 1.000000 0.862525 diff --git a/datasets/pinganmajia/train/labels/订单1813984_4_7176338.txt b/datasets/pinganmajia/train/labels/订单1813984_4_7176338.txt new file mode 100644 index 0000000..dc4e040 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813984_4_7176338.txt @@ -0,0 +1 @@ +4 0.000490 0.414669 0.014493 0.394988 0.000000 0.378199 0.000000 0.071875 0.199967 0.027537 0.285703 0.040650 0.359199 0.148272 0.346944 0.251936 0.353938 0.313627 0.318954 0.414669 0.273448 0.464534 0.409935 0.482917 0.465931 0.639081 0.527173 0.770319 0.541176 0.999975 0.538971 1.000000 0.003954 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813986_4_7176358.txt b/datasets/pinganmajia/train/labels/订单1813986_4_7176358.txt new file mode 100644 index 0000000..e3b43ab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813986_4_7176358.txt @@ -0,0 +1 @@ +4 0.252451 0.022279 0.276961 0.070833 0.268203 0.123333 0.261209 0.216507 0.262958 0.263750 0.238464 0.364804 0.213954 0.402855 0.292696 0.447475 0.245458 0.473725 0.317206 0.560343 0.404690 0.728321 0.441438 0.834620 0.470948 1.000000 0.010964 1.000000 0.003987 0.015723 diff --git a/datasets/pinganmajia/train/labels/订单1813987_4_7176272.txt b/datasets/pinganmajia/train/labels/订单1813987_4_7176272.txt new file mode 100644 index 0000000..3dd655b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813987_4_7176272.txt @@ -0,0 +1 @@ +4 0.999608 0.143015 0.801895 0.169265 0.773889 0.133836 0.751144 0.124645 0.609412 0.026225 0.455425 0.056409 0.401193 0.129890 0.404690 0.223076 0.439690 0.278186 0.518431 0.347745 0.558676 0.379240 0.520180 0.430417 0.542925 0.568211 0.544673 0.657451 0.574412 0.678456 0.576160 0.706005 0.611160 0.733566 0.637402 0.782120 0.763399 0.817561 0.789641 0.885797 0.887631 0.866115 0.973366 0.918603 0.945376 0.950110 0.933121 0.985539 0.962042 1.000000 0.975474 1.000000 0.997859 0.997353 1.000000 0.652439 1.000000 0.143738 diff --git a/datasets/pinganmajia/train/labels/订单1813989_4_7176234.txt b/datasets/pinganmajia/train/labels/订单1813989_4_7176234.txt new file mode 100644 index 0000000..18647dd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813989_4_7176234.txt @@ -0,0 +1 @@ +4 1.000000 0.604313 0.913889 0.569545 0.938395 0.528858 0.948889 0.486867 0.934887 0.476366 0.933138 0.379252 0.843899 0.332006 0.709167 0.347755 0.635679 0.400247 0.621677 0.478989 0.598930 0.517045 0.616430 0.581350 0.558693 0.604977 0.513189 0.633843 0.516698 0.698148 0.506193 0.766389 0.441451 0.866127 0.441451 0.931744 0.469444 0.964552 0.509691 0.997361 0.755844 1.000000 0.999671 1.000000 1.000000 0.974923 diff --git a/datasets/pinganmajia/train/labels/订单1813990_4_7176252.txt b/datasets/pinganmajia/train/labels/订单1813990_4_7176252.txt new file mode 100644 index 0000000..9b77998 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813990_4_7176252.txt @@ -0,0 +1 @@ +4 0.997561 0.397663 0.920790 0.385850 0.926691 0.347794 0.946379 0.333358 0.958186 0.254616 0.984761 0.126013 0.993621 0.021021 0.699332 0.017083 0.679645 0.141757 0.688505 0.259869 0.737714 0.442279 0.660944 0.539395 0.631415 0.723121 0.600907 0.997402 0.864651 1.000000 1.000000 1.000000 1.000000 0.896724 diff --git a/datasets/pinganmajia/train/labels/订单1813991_4_7176216.txt b/datasets/pinganmajia/train/labels/订单1813991_4_7176216.txt new file mode 100644 index 0000000..4c3da8a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813991_4_7176216.txt @@ -0,0 +1 @@ +4 0.002153 0.539410 0.056389 0.518411 0.000394 0.396363 0.000394 0.132578 0.154375 0.101085 0.359109 0.131267 0.467593 0.212630 0.588322 0.324184 0.577824 0.465911 0.549826 0.565651 0.663565 0.662769 0.724803 0.776936 0.728310 0.855677 0.688067 0.888490 0.744051 0.940981 0.752801 0.961979 0.713194 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1813992_4_7176203.txt b/datasets/pinganmajia/train/labels/订单1813992_4_7176203.txt new file mode 100644 index 0000000..65958e4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813992_4_7176203.txt @@ -0,0 +1 @@ +4 0.873466 0.381886 0.908374 0.314957 0.838558 0.279524 0.752469 0.288711 0.729202 0.324144 0.733865 0.375320 0.629156 0.405510 0.554693 0.496055 0.550046 0.616791 0.559356 0.627292 0.564003 0.650917 0.591933 0.658789 0.605890 0.654853 0.622178 0.667976 0.617515 0.728339 0.622178 0.838581 0.596580 0.895009 0.622178 0.910761 0.654755 0.905510 0.661733 0.883201 0.691979 0.862197 0.680337 0.839888 0.719893 0.729654 0.726887 0.807085 0.708267 0.853010 0.708267 0.875320 0.764110 0.931756 0.801334 0.923884 0.799003 0.898945 0.785046 0.859576 0.796687 0.805770 0.857178 0.656168 0.899064 0.615484 0.894402 0.650917 0.899064 0.671912 0.940936 0.656168 0.971196 0.635164 0.987485 0.528867 0.971196 0.444879 0.929310 0.405510 diff --git a/datasets/pinganmajia/train/labels/订单1813994_4_7176209.txt b/datasets/pinganmajia/train/labels/订单1813994_4_7176209.txt new file mode 100644 index 0000000..ce4c02b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813994_4_7176209.txt @@ -0,0 +1 @@ +4 0.231484 0.316260 0.199987 0.330703 0.138750 0.354326 0.117747 0.419941 0.103750 0.475059 0.119492 0.557734 0.142240 0.561670 0.185990 0.598418 0.201732 0.686338 0.220990 0.783457 0.224479 0.830703 0.248984 0.834639 0.259479 0.801826 0.266484 0.664033 0.280482 0.803145 0.308477 0.838574 0.338216 0.849072 0.355716 0.837266 0.331224 0.796582 0.339974 0.619414 0.353971 0.590537 0.385469 0.564297 0.418711 0.511807 0.413464 0.413379 0.369714 0.353008 0.311979 0.321514 0.310221 0.272959 0.296224 0.238838 0.245482 0.240146 0.220990 0.262461 0.229740 0.307080 diff --git a/datasets/pinganmajia/train/labels/订单1813996_4_7176242.txt b/datasets/pinganmajia/train/labels/订单1813996_4_7176242.txt new file mode 100644 index 0000000..b8a3073 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813996_4_7176242.txt @@ -0,0 +1 @@ +4 1.000000 0.738483 0.811550 0.593217 0.798754 0.552539 0.799737 0.506606 0.805642 0.452800 0.787925 0.452800 0.772179 0.336000 0.711154 0.295317 0.651117 0.296633 0.594029 0.360933 0.589108 0.464611 0.579267 0.485606 0.598950 0.589283 0.530054 0.632589 0.508400 0.770383 0.491667 0.993483 1.000000 0.996106 diff --git a/datasets/pinganmajia/train/labels/订单1813998_4_7176225.txt b/datasets/pinganmajia/train/labels/订单1813998_4_7176225.txt new file mode 100644 index 0000000..92bb3f6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813998_4_7176225.txt @@ -0,0 +1 @@ +4 1.000000 0.684725 0.950469 0.654882 0.955703 0.619451 0.967904 0.586647 0.973125 0.549902 0.964414 0.526275 0.948724 0.401608 0.877266 0.354363 0.750026 0.351735 0.671602 0.388480 0.629766 0.451471 0.626276 0.521029 0.635000 0.636510 0.528672 0.627324 0.509505 0.660137 0.420612 0.740186 0.378789 0.833363 0.333464 0.993471 1.000000 0.994775 diff --git a/datasets/pinganmajia/train/labels/订单1813999_4_7176305.txt b/datasets/pinganmajia/train/labels/订单1813999_4_7176305.txt new file mode 100644 index 0000000..22c150a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1813999_4_7176305.txt @@ -0,0 +1 @@ +4 0.007484 0.111520 0.126471 0.043284 0.219216 0.040650 0.325948 0.093150 0.383693 0.182390 0.397696 0.254571 0.388938 0.363493 0.437941 0.451422 0.486928 0.490784 0.572663 0.577402 0.586667 0.671887 0.619918 0.927794 0.623415 0.990784 0.000000 0.997341 -0.000000 0.869706 diff --git a/datasets/pinganmajia/train/labels/订单1814001_4_7176261.txt b/datasets/pinganmajia/train/labels/订单1814001_4_7176261.txt new file mode 100644 index 0000000..baf3380 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814001_4_7176261.txt @@ -0,0 +1 @@ +4 1.000000 0.069350 0.833382 0.047218 0.695147 0.080025 0.658399 0.157451 0.639167 0.266373 0.626912 0.388419 0.670654 0.492096 0.544673 0.534093 0.325948 0.695515 0.280458 0.744069 0.199967 0.998664 1.000000 0.998664 1.000000 0.717794 0.996111 0.493407 0.975114 0.461912 1.000000 0.410600 diff --git a/datasets/pinganmajia/train/labels/订单1814002_4_7176383.txt b/datasets/pinganmajia/train/labels/订单1814002_4_7176383.txt new file mode 100644 index 0000000..a7fd22a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814002_4_7176383.txt @@ -0,0 +1 @@ +4 0.296224 0.242773 0.282227 0.275586 0.187734 0.316260 0.156237 0.461934 0.166745 0.520986 0.273477 0.632539 0.283971 0.665342 0.308477 0.673223 0.327721 0.687656 0.346966 0.845137 0.369714 0.862197 0.383711 0.919941 0.432708 0.919941 0.444961 0.900254 0.423958 0.856943 0.427461 0.677158 0.462461 0.719150 0.453711 0.800518 0.495703 0.838574 0.528945 0.863506 0.574440 0.847764 0.534193 0.804453 0.535951 0.698154 0.511445 0.631221 0.520195 0.570859 0.546445 0.586602 0.565690 0.556426 0.546445 0.531484 0.513203 0.385820 0.502695 0.338574 0.423958 0.279521 0.411706 0.258525 0.423958 0.196846 0.420456 0.157471 0.364466 0.125977 0.301471 0.144346 0.275234 0.182402 0.280482 0.208652 0.289232 0.232275 diff --git a/datasets/pinganmajia/train/labels/订单1814003_4_7179571.txt b/datasets/pinganmajia/train/labels/订单1814003_4_7179571.txt new file mode 100644 index 0000000..192cc5b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814003_4_7179571.txt @@ -0,0 +1 @@ +4 1.000000 0.345000 0.867635 0.300547 0.878462 0.261185 0.893229 0.212623 0.883388 0.189003 0.870588 0.194248 0.840080 0.085327 0.783977 0.035458 0.693425 0.056454 0.646183 0.124698 0.646183 0.236250 0.630435 0.234935 0.638309 0.304485 0.648150 0.339918 0.601887 0.360915 0.549724 0.536773 0.546771 0.717876 0.570392 0.996087 0.827917 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814006_4_7176423.txt b/datasets/pinganmajia/train/labels/订单1814006_4_7176423.txt new file mode 100644 index 0000000..dc17216 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814006_4_7176423.txt @@ -0,0 +1 @@ +4 0.007426 0.108983 0.138660 0.072237 0.315388 0.103735 0.385380 0.231029 0.378382 0.317644 0.390629 0.399010 0.357386 0.473811 0.387128 0.464626 0.348636 0.576173 0.469371 0.745466 0.563856 0.988248 0.551548 1.000000 0.085584 1.000000 0.000000 0.998765 -0.000000 0.864369 diff --git a/datasets/pinganmajia/train/labels/订单1814007_4_7176394.txt b/datasets/pinganmajia/train/labels/订单1814007_4_7176394.txt new file mode 100644 index 0000000..c632f71 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814007_4_7176394.txt @@ -0,0 +1 @@ +4 0.004463 0.324189 0.043833 0.316317 0.077296 0.297944 0.097967 0.228389 0.110762 0.219206 0.092058 0.182456 0.090092 0.123406 0.094029 0.106344 0.096983 0.019728 0.327296 0.018417 0.352887 0.074844 0.338125 0.223139 0.303675 0.333378 0.359775 0.392433 0.321392 0.431800 0.355842 0.526289 0.392258 0.797944 0.415879 0.960672 0.408004 0.993483 0.116779 1.000000 -0.000000 1.000000 0.000000 0.763561 diff --git a/datasets/pinganmajia/train/labels/订单1814012_4_7176375.txt b/datasets/pinganmajia/train/labels/订单1814012_4_7176375.txt new file mode 100644 index 0000000..a0beeb2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814012_4_7176375.txt @@ -0,0 +1 @@ +4 0.997744 0.430462 0.908513 0.465894 0.901513 0.406837 0.929500 0.376654 0.936500 0.341221 0.917256 0.311038 0.885756 0.317596 0.831513 0.204740 0.707282 0.160125 0.628538 0.191615 0.562051 0.290038 0.548051 0.383221 0.567295 0.454087 0.649538 0.540702 0.570795 0.666683 0.513051 0.832038 0.399321 0.997394 1.000000 0.998683 1.000000 0.552500 diff --git a/datasets/pinganmajia/train/labels/订单1814014_4_7176447.txt b/datasets/pinganmajia/train/labels/订单1814014_4_7176447.txt new file mode 100644 index 0000000..f43769a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814014_4_7176447.txt @@ -0,0 +1 @@ +4 0.622561 0.015776 0.626495 0.073513 0.633388 0.123382 0.683585 0.190319 0.745588 0.246748 0.824332 0.269052 0.807598 0.321552 0.840080 0.385850 0.843033 0.563015 0.858781 0.730997 0.962126 0.998717 0.998781 1.000000 0.999528 1.000000 0.998542 0.019714 diff --git a/datasets/pinganmajia/train/labels/订单1814015_4_7176396.txt b/datasets/pinganmajia/train/labels/订单1814015_4_7176396.txt new file mode 100644 index 0000000..f33326f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814015_4_7176396.txt @@ -0,0 +1 @@ +4 0.005648 0.587960 0.063391 0.539410 0.073889 0.505286 0.084387 0.472474 0.045891 0.419983 0.040648 0.362240 0.056389 0.353056 0.058137 0.267752 0.117639 0.186389 0.247118 0.158828 0.381852 0.200825 0.411597 0.249384 0.436088 0.360929 0.439595 0.425234 0.415093 0.511849 0.409850 0.553845 0.511331 0.565651 0.562083 0.647014 0.593576 0.696884 0.576076 0.752005 0.591829 0.811059 0.621574 0.864861 0.682211 1.000000 0.330451 1.000000 0.000000 0.998733 0.000000 0.853090 diff --git a/datasets/pinganmajia/train/labels/订单1814019_4_7176431.txt b/datasets/pinganmajia/train/labels/订单1814019_4_7176431.txt new file mode 100644 index 0000000..a9ec138 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814019_4_7176431.txt @@ -0,0 +1 @@ +4 0.998542 0.650947 0.945394 0.566955 0.903071 0.469846 0.865671 0.412099 0.873542 0.388477 0.890278 0.372726 0.906026 0.334671 0.907994 0.300556 0.940471 0.171944 0.910949 0.099763 0.859761 0.078765 0.732793 0.137819 0.724923 0.206060 0.709174 0.253313 0.698349 0.297932 0.691458 0.337294 0.706219 0.401605 0.686535 0.431790 0.639290 0.425226 0.601890 0.480340 0.571381 0.513148 0.561535 0.611574 0.526103 0.779558 0.530039 0.805802 0.541852 0.811049 0.545787 0.824177 0.544807 0.881914 0.538897 0.946224 0.567978 1.000000 0.996574 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814020_4_7176393.txt b/datasets/pinganmajia/train/labels/订单1814020_4_7176393.txt new file mode 100644 index 0000000..312c5fb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814020_4_7176393.txt @@ -0,0 +1 @@ +4 0.999500 0.187683 0.843769 0.136500 0.737026 0.153558 0.663538 0.261173 0.628538 0.354346 0.661782 0.421279 0.709026 0.461962 0.744026 0.494769 0.765026 0.530202 0.621538 0.699490 0.555051 0.850413 0.542808 1.000000 0.548115 1.000000 0.999500 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1814021_4_7176465.txt b/datasets/pinganmajia/train/labels/订单1814021_4_7176465.txt new file mode 100644 index 0000000..a95a6b1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814021_4_7176465.txt @@ -0,0 +1 @@ +4 0.003873 0.082692 0.115862 0.103693 0.248845 0.156186 0.306581 0.241484 0.268087 0.324162 0.254091 0.387159 0.222595 0.486896 0.192850 0.518388 0.359081 0.549886 0.415066 0.615504 0.485066 0.716555 0.527055 0.796605 0.551553 0.887159 0.625047 0.994766 0.000369 0.996080 diff --git a/datasets/pinganmajia/train/labels/订单1814026_4_7176559.txt b/datasets/pinganmajia/train/labels/订单1814026_4_7176559.txt new file mode 100644 index 0000000..a815896 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814026_4_7176559.txt @@ -0,0 +1 @@ +4 0.612794 0.023636 0.591799 0.111563 0.612794 0.154872 0.632045 0.325476 0.651288 0.383217 0.752775 0.507891 0.625047 0.565632 0.621544 0.683743 0.628542 0.912088 0.677102 1.000000 1.000000 1.000000 1.000000 0.019716 diff --git a/datasets/pinganmajia/train/labels/订单1814027_4_7176491.txt b/datasets/pinganmajia/train/labels/订单1814027_4_7176491.txt new file mode 100644 index 0000000..b2e10d2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814027_4_7176491.txt @@ -0,0 +1 @@ +4 0.003987 0.801814 0.131716 0.719130 0.236716 0.625956 0.222712 0.599706 0.227958 0.572157 0.196471 0.488162 0.259461 0.412047 0.381944 0.375306 0.534167 0.439608 0.558676 0.526225 0.560425 0.637770 0.663660 0.674510 0.660163 0.775564 0.695147 0.880551 0.806471 1.000000 0.409706 1.000000 0.002239 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1814028_4_7176723.txt b/datasets/pinganmajia/train/labels/订单1814028_4_7176723.txt new file mode 100644 index 0000000..711b9dd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814028_4_7176723.txt @@ -0,0 +1 @@ +4 0.011008 0.422562 0.070504 0.400247 0.061749 0.346443 0.049506 0.308387 0.056502 0.282137 0.035504 0.192901 0.095000 0.116782 0.203488 0.080039 0.357459 0.106289 0.453704 0.194213 0.467695 0.274267 0.432706 0.379252 0.416955 0.425185 0.387212 0.494738 0.458951 0.523611 0.549938 0.590540 0.455453 0.673218 0.471204 0.762454 0.457202 0.897623 0.498673 1.000000 0.017438 1.000000 0.012757 0.999985 diff --git a/datasets/pinganmajia/train/labels/订单1814029_4_7176653.txt b/datasets/pinganmajia/train/labels/订单1814029_4_7176653.txt new file mode 100644 index 0000000..ee1733f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814029_4_7176653.txt @@ -0,0 +1 @@ +4 1.000000 0.614547 0.899869 0.547218 0.863137 0.494718 0.884134 0.457978 0.917369 0.440919 0.933121 0.396299 0.950621 0.314939 0.898121 0.255882 0.824641 0.224387 0.712647 0.244069 0.632157 0.297868 0.625163 0.383174 0.640915 0.488162 0.670654 0.524902 0.593660 0.566900 0.520180 0.677132 0.502680 0.791311 0.488676 0.908113 0.467974 1.000000 0.599216 1.000000 1.000000 0.996078 diff --git a/datasets/pinganmajia/train/labels/订单1814031_4_7176568.txt b/datasets/pinganmajia/train/labels/订单1814031_4_7176568.txt new file mode 100644 index 0000000..f83ed26 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814031_4_7176568.txt @@ -0,0 +1 @@ +4 0.000000 0.279975 0.028480 0.261127 0.003987 0.250625 0.000000 0.222855 0.000000 0.161201 0.028480 0.146961 0.082729 0.020968 0.465931 0.024902 0.530670 0.136458 0.479935 0.199449 0.448431 0.290000 0.432680 0.329375 0.464183 0.333309 0.481683 0.371360 0.399444 0.503909 0.471176 0.629890 0.539428 0.858235 0.544673 0.997353 0.002239 0.998664 0.000000 0.539412 diff --git a/datasets/pinganmajia/train/labels/订单1814032_4_7176919.txt b/datasets/pinganmajia/train/labels/订单1814032_4_7176919.txt new file mode 100644 index 0000000..c8ec258 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814032_4_7176919.txt @@ -0,0 +1 @@ +4 0.003730 0.750643 0.160027 0.652218 0.110824 0.616783 0.061622 0.611538 0.047149 0.594473 0.009527 0.545919 0.006622 0.526232 0.000000 0.447102 0.000000 0.421544 0.125297 0.359565 0.342351 0.351691 0.452338 0.385815 0.498649 0.472426 0.533378 0.522298 0.530486 0.628597 0.620203 0.597102 0.999351 0.708646 1.000000 0.725184 1.000000 1.000000 0.674041 1.000000 -0.000000 0.994773 0.000000 0.855588 diff --git a/datasets/pinganmajia/train/labels/订单1814036_4_7176727.txt b/datasets/pinganmajia/train/labels/订单1814036_4_7176727.txt new file mode 100644 index 0000000..6c972a7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814036_4_7176727.txt @@ -0,0 +1 @@ +4 0.997402 0.488206 0.949098 0.460649 0.904732 0.458028 0.847555 0.385844 0.826848 0.356972 0.801220 0.295292 0.763756 0.286112 0.726293 0.245430 0.718402 0.094505 0.680945 0.015771 0.544896 0.021015 0.510390 0.148312 0.514335 0.267735 0.529122 0.345162 0.457152 0.439651 0.469970 0.489521 0.415750 0.665373 0.405890 0.811047 0.431524 0.927841 0.454195 0.998709 0.844591 0.997394 0.835720 0.780860 0.841634 0.725739 0.874171 0.780860 0.997402 0.843856 diff --git a/datasets/pinganmajia/train/labels/订单1814038_4_7176787.txt b/datasets/pinganmajia/train/labels/订单1814038_4_7176787.txt new file mode 100644 index 0000000..d3bd543 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814038_4_7176787.txt @@ -0,0 +1 @@ +4 0.014872 0.505233 0.157855 0.472426 0.440795 0.484240 0.455994 0.555104 0.452955 0.597102 0.459048 0.648278 0.386023 0.724393 0.513807 0.767702 0.489460 0.826759 0.015099 1.000000 -0.000000 1.000000 0.000000 0.841697 0.005753 0.692898 0.039219 0.686336 0.060511 0.645656 0.014872 0.627286 diff --git a/datasets/pinganmajia/train/labels/订单1814039_4_7176624.txt b/datasets/pinganmajia/train/labels/订单1814039_4_7176624.txt new file mode 100644 index 0000000..be12718 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814039_4_7176624.txt @@ -0,0 +1 @@ +4 1.000000 0.525442 0.990744 0.502644 0.996000 0.354346 0.836769 0.232298 0.712526 0.234923 0.607538 0.337288 0.591795 0.489519 0.663538 0.559067 0.679282 0.601067 0.553295 0.770356 0.488667 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814040_4_7177338.txt b/datasets/pinganmajia/train/labels/订单1814040_4_7177338.txt new file mode 100644 index 0000000..94ff9dd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814040_4_7177338.txt @@ -0,0 +1 @@ +4 0.998559 0.383252 0.971988 0.345197 0.897179 0.299259 0.896198 0.241516 0.897179 0.191644 0.878481 0.189028 0.856832 0.021042 0.583203 0.015799 0.561554 0.158843 0.569427 0.271701 0.589115 0.404248 0.517257 0.535486 0.518247 0.586667 0.461155 0.720521 0.403090 0.898993 0.417847 0.998738 0.605295 1.000000 1.000000 1.000000 1.000000 0.685486 diff --git a/datasets/pinganmajia/train/labels/订单1814041_4_7176739.txt b/datasets/pinganmajia/train/labels/订单1814041_4_7176739.txt new file mode 100644 index 0000000..dbed72b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814041_4_7176739.txt @@ -0,0 +1 @@ +4 0.570822 0.028904 0.558572 0.148325 0.556822 0.257250 0.584822 0.383233 0.656561 0.507908 0.558572 0.682446 0.562072 0.822867 0.516200 1.000000 0.841156 1.000000 1.000000 0.997429 1.000000 0.644858 0.997767 0.024967 diff --git a/datasets/pinganmajia/train/labels/订单1814042_4_7176740.txt b/datasets/pinganmajia/train/labels/订单1814042_4_7176740.txt new file mode 100644 index 0000000..46d58d6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814042_4_7176740.txt @@ -0,0 +1 @@ +4 0.004675 0.085268 0.128701 0.040646 0.212565 0.064268 0.305146 0.124634 0.334838 0.216500 0.320877 0.253244 0.319123 0.310988 0.306899 0.375293 0.348815 0.459280 0.411705 0.569524 0.458880 0.688939 0.457127 0.765061 0.425682 0.843805 0.387256 0.934354 0.382484 1.000000 -0.000000 1.000000 0.000000 0.494890 diff --git a/datasets/pinganmajia/train/labels/订单1814043_4_7177018.txt b/datasets/pinganmajia/train/labels/订单1814043_4_7177018.txt new file mode 100644 index 0000000..833fe91 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814043_4_7177018.txt @@ -0,0 +1 @@ +4 0.000491 0.531494 0.054624 0.493434 0.093010 0.419945 0.159939 0.425195 0.211121 0.304460 0.239663 0.263776 0.238679 0.177161 0.246553 0.083988 0.305608 0.026243 0.385332 0.049867 0.448325 0.114170 0.444387 0.223092 0.432576 0.358265 0.495569 0.458001 0.516238 0.468499 0.479819 0.551178 0.545767 0.675850 0.560530 0.788711 0.560530 0.881888 0.569387 0.996061 0.000000 0.999974 0.000000 0.589769 diff --git a/datasets/pinganmajia/train/labels/订单1814044_4_7176686.txt b/datasets/pinganmajia/train/labels/订单1814044_4_7176686.txt new file mode 100644 index 0000000..5aaa004 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814044_4_7176686.txt @@ -0,0 +1 @@ +4 0.000000 0.105502 0.063480 0.061654 0.177222 0.031471 0.278709 0.053775 0.334690 0.102341 0.371438 0.169265 0.373186 0.223076 0.352190 0.292623 0.343448 0.333309 0.289199 0.383174 0.248954 0.440919 0.219216 0.480294 0.231454 0.496042 0.222712 0.524902 0.269951 0.582647 0.252451 0.636458 0.257712 0.749314 0.231454 0.863493 0.250703 0.929105 0.247337 1.000000 0.124248 1.000000 0.000000 0.997377 diff --git a/datasets/pinganmajia/train/labels/订单1814045_4_7176704.txt b/datasets/pinganmajia/train/labels/订单1814045_4_7176704.txt new file mode 100644 index 0000000..26b8d87 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814045_4_7176704.txt @@ -0,0 +1 @@ +4 1.000000 0.245527 0.917369 0.230944 0.805392 0.221752 0.682908 0.310993 0.672402 0.410735 0.675899 0.494718 0.616405 0.578713 0.500931 0.615453 0.397696 0.736189 0.338203 0.894988 0.372386 1.000000 0.999216 1.000000 1.000000 0.999988 diff --git a/datasets/pinganmajia/train/labels/订单1814046_4_7176703.txt b/datasets/pinganmajia/train/labels/订单1814046_4_7176703.txt new file mode 100644 index 0000000..e94273b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814046_4_7176703.txt @@ -0,0 +1 @@ +4 0.003481 0.486921 0.033012 0.464618 0.021198 0.422616 0.045807 0.267766 0.098950 0.131285 0.128481 0.107662 0.265295 0.169340 0.289896 0.228391 0.298759 0.311076 0.300729 0.349132 0.290885 0.433113 0.350920 0.484306 0.343047 0.560417 0.391276 0.699525 0.425729 0.918681 0.447378 0.998738 0.004462 0.996111 diff --git a/datasets/pinganmajia/train/labels/订单1814048_4_7176732.txt b/datasets/pinganmajia/train/labels/订单1814048_4_7176732.txt new file mode 100644 index 0000000..727c94b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814048_4_7176732.txt @@ -0,0 +1 @@ +4 0.007484 0.536716 0.026732 0.501287 0.073987 0.452733 0.058235 0.427794 0.037239 0.385797 0.035490 0.362181 0.040735 0.280809 0.084477 0.206005 0.173725 0.164020 0.254199 0.170576 0.369690 0.233566 0.404690 0.318873 0.413431 0.372672 0.394183 0.475037 0.395948 0.497353 0.486928 0.548529 0.528922 0.601017 0.555163 0.691569 0.570915 0.745380 0.546422 0.772941 0.534167 0.856924 0.549918 0.943542 0.543072 1.000000 0.007484 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814049_4_7176808.txt b/datasets/pinganmajia/train/labels/订单1814049_4_7176808.txt new file mode 100644 index 0000000..5e38412 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814049_4_7176808.txt @@ -0,0 +1 @@ +4 -0.000000 0.421078 0.068725 0.341176 0.031977 0.317561 0.035490 0.269007 0.066977 0.240135 0.129967 0.162708 0.198219 0.133836 0.313693 0.140392 0.448431 0.221752 0.458938 0.266373 0.450180 0.324118 0.422190 0.370049 0.411683 0.408113 0.320703 0.484228 0.283954 0.514412 0.226209 0.523591 0.238464 0.539338 0.338203 0.623333 0.402941 0.730944 0.427435 0.766373 0.609412 0.854301 0.637402 0.904167 0.693399 0.925172 0.702157 0.964534 0.709150 0.997353 0.003987 0.998664 0.000000 0.560895 diff --git a/datasets/pinganmajia/train/labels/订单1814052_4_7176772.txt b/datasets/pinganmajia/train/labels/订单1814052_4_7176772.txt new file mode 100644 index 0000000..558c296 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814052_4_7176772.txt @@ -0,0 +1 @@ +4 0.007510 0.377940 0.014506 0.345131 0.000000 0.333164 0.000000 0.232647 0.018004 0.227022 0.032006 0.111535 0.075751 0.020988 0.371461 0.017045 0.476451 0.177153 0.444949 0.183711 0.432706 0.261142 0.423951 0.311011 0.408210 0.393688 0.348714 0.465864 0.532438 0.904190 0.481698 0.889753 0.474702 0.999985 0.004012 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1814053_4_7176830.txt b/datasets/pinganmajia/train/labels/订单1814053_4_7176830.txt new file mode 100644 index 0000000..0d8aefa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814053_4_7176830.txt @@ -0,0 +1 @@ +4 0.299635 0.388509 0.243640 0.402939 0.210395 0.433125 0.164898 0.569605 0.168392 0.648344 0.191140 0.682467 0.224386 0.689024 0.226140 0.891129 0.238392 0.914748 0.205146 0.986930 0.229635 0.993487 0.261140 0.975121 0.276886 0.944934 0.297880 0.923936 0.289137 0.892445 0.303129 0.770395 0.327632 0.715274 0.352120 0.796645 0.348626 0.897686 0.362632 0.925252 0.381871 0.960680 0.420365 0.956743 0.425614 0.930493 0.408114 0.889814 0.413363 0.825515 0.420365 0.773015 0.422120 0.679846 0.451857 0.656217 0.481608 0.631283 0.485102 0.488246 0.462368 0.420000 0.418611 0.395066 0.399371 0.387193 0.397617 0.364879 0.406374 0.345197 0.360877 0.295329 0.299635 0.304518 0.290877 0.332072 0.292632 0.350450 diff --git a/datasets/pinganmajia/train/labels/订单1814055_4_7176991.txt b/datasets/pinganmajia/train/labels/订单1814055_4_7176991.txt new file mode 100644 index 0000000..01b5732 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814055_4_7176991.txt @@ -0,0 +1 @@ +4 0.007484 0.463223 0.103725 0.431728 0.159722 0.400233 0.145719 0.354301 0.131716 0.321495 0.103725 0.272941 0.119477 0.249314 0.112467 0.181078 0.103725 0.149583 0.247206 0.038027 0.359199 0.044596 0.434428 0.060343 0.506176 0.123333 0.527173 0.202071 0.514918 0.276875 0.502680 0.347745 0.458938 0.446164 0.514918 0.518346 0.541176 0.601017 0.555163 0.696826 0.576160 0.750625 0.648529 1.000000 0.004935 1.000000 0.000490 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814056_4_7176850.txt b/datasets/pinganmajia/train/labels/订单1814056_4_7176850.txt new file mode 100644 index 0000000..34b94f9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814056_4_7176850.txt @@ -0,0 +1 @@ +4 1.000000 0.576814 0.946979 0.564333 0.936523 0.532843 0.969648 0.500029 0.978359 0.464598 0.999271 0.440980 0.980104 0.433098 0.981849 0.337304 0.931302 0.283500 0.842409 0.248059 0.730859 0.263814 0.664622 0.313676 0.622799 0.375363 0.619310 0.442284 0.622799 0.531529 0.551341 0.585333 0.493815 0.695569 0.394466 0.926539 0.396211 0.937039 0.401445 0.980343 0.434557 0.997402 0.997526 0.998716 1.000000 0.799676 diff --git a/datasets/pinganmajia/train/labels/订单1814057_4_7176866.txt b/datasets/pinganmajia/train/labels/订单1814057_4_7176866.txt new file mode 100644 index 0000000..14a907b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814057_4_7176866.txt @@ -0,0 +1 @@ +4 0.999502 0.481621 0.968989 0.469811 0.945371 0.448815 0.932573 0.426504 0.774111 0.431751 0.797729 0.366133 0.809541 0.280833 0.801670 0.199466 0.791826 0.069551 0.649111 0.018366 0.593008 0.139102 0.579229 0.267708 0.570371 0.293958 0.569385 0.355638 0.587100 0.381882 0.615645 0.434375 0.620566 0.469811 0.492612 0.561673 0.465054 0.639102 0.448320 0.711283 0.396157 0.988184 0.998521 0.997370 diff --git a/datasets/pinganmajia/train/labels/订单1814060_4_7176985.txt b/datasets/pinganmajia/train/labels/订单1814060_4_7176985.txt new file mode 100644 index 0000000..e1628f5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814060_4_7176985.txt @@ -0,0 +1 @@ +4 0.840080 0.023652 0.805631 0.118137 0.805631 0.185065 0.803664 0.269052 0.809565 0.349109 0.822365 0.392418 0.757402 0.475090 0.686538 0.574828 0.658977 0.643072 0.615668 0.755931 0.622561 0.783489 0.599920 0.868791 0.588113 0.937034 0.608352 1.000000 0.742635 1.000000 1.000000 0.997426 1.000000 0.586225 0.996575 0.018399 diff --git a/datasets/pinganmajia/train/labels/订单1814061_4_7176937.txt b/datasets/pinganmajia/train/labels/订单1814061_4_7176937.txt new file mode 100644 index 0000000..1ec1132 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814061_4_7176937.txt @@ -0,0 +1 @@ +4 0.000000 0.405808 0.084359 0.342538 0.086115 0.297913 0.101859 0.272981 0.107103 0.187683 0.175346 0.124683 0.331077 0.116817 0.469308 0.154875 0.467564 0.213923 0.472808 0.314971 0.465808 0.371404 0.451808 0.443587 0.591795 0.565635 0.637295 0.636500 0.577795 0.649625 0.595295 0.753298 0.623295 0.787413 0.656538 1.000000 0.005590 1.000000 0.000000 0.684519 diff --git a/datasets/pinganmajia/train/labels/订单1814062_4_7176915.txt b/datasets/pinganmajia/train/labels/订单1814062_4_7176915.txt new file mode 100644 index 0000000..97afc8d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814062_4_7176915.txt @@ -0,0 +1 @@ +4 0.012729 0.724387 0.159722 0.628578 0.255964 0.569522 0.234967 0.526225 0.217467 0.468480 0.261209 0.401544 0.404690 0.341176 0.542925 0.379240 0.581422 0.426483 0.572663 0.484228 0.574412 0.547218 0.563922 0.589216 0.558676 0.604963 0.605915 0.649583 0.611160 0.826740 0.630408 0.842488 0.633905 0.999975 0.620899 1.000000 0.000539 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814063_4_7176884.txt b/datasets/pinganmajia/train/labels/订单1814063_4_7176884.txt new file mode 100644 index 0000000..1b0f769 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814063_4_7176884.txt @@ -0,0 +1 @@ +4 0.693803 0.371399 0.655897 0.388457 0.603397 0.425207 0.571325 0.471135 0.536325 0.514442 0.574241 0.583995 0.617981 0.593183 0.635481 0.601058 0.650064 0.614183 0.676303 0.742788 0.685053 0.795284 0.615064 0.828091 0.623814 0.843841 0.720053 0.834654 0.784209 0.830716 0.778376 0.791346 0.787126 0.699481 0.798793 0.742788 0.807543 0.796596 0.830876 0.809721 0.822126 0.847779 0.851282 0.874024 0.906699 0.862212 0.892115 0.828091 0.900865 0.788721 0.906699 0.748038 0.915449 0.683736 0.921282 0.632553 0.956271 0.614183 0.997105 0.581370 1.000000 0.512226 1.000000 0.439462 0.956271 0.397644 0.924188 0.388457 0.880449 0.366149 0.825043 0.353024 0.807543 0.324154 0.787126 0.300534 0.734637 0.296596 0.690887 0.316279 0.679220 0.337279 0.685053 0.356962 diff --git a/datasets/pinganmajia/train/labels/订单1814065_4_7176873.txt b/datasets/pinganmajia/train/labels/订单1814065_4_7176873.txt new file mode 100644 index 0000000..61f2bcb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814065_4_7176873.txt @@ -0,0 +1 @@ +4 0.003987 0.472414 0.033742 0.460600 0.075735 0.404167 0.059984 0.360870 0.052990 0.329375 0.024984 0.279498 0.044232 0.265061 0.030229 0.213885 0.044232 0.146961 0.094984 0.104963 0.164967 0.086593 0.282206 0.093150 0.357451 0.136458 0.401193 0.207316 0.409935 0.254571 0.408186 0.293934 0.402941 0.347745 0.387190 0.410735 0.497435 0.467169 0.549918 0.544596 0.581422 0.628578 0.567418 0.671887 0.584918 0.766373 0.623415 0.901544 0.626912 0.996042 0.007484 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814068_4_7177015.txt b/datasets/pinganmajia/train/labels/订单1814068_4_7177015.txt new file mode 100644 index 0000000..06333f5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814068_4_7177015.txt @@ -0,0 +1 @@ +4 0.995994 0.230987 0.861269 0.224425 0.824517 0.251989 0.714280 0.263800 0.665294 0.329411 0.681042 0.404219 0.695038 0.452770 0.688040 0.500014 0.695038 0.535447 0.702036 0.547259 0.616297 0.578757 0.555057 0.611563 0.485066 0.729673 0.395824 0.830724 0.343333 0.996080 0.995994 0.997393 diff --git a/datasets/pinganmajia/train/labels/订单1814070_4_7177037.txt b/datasets/pinganmajia/train/labels/订单1814070_4_7177037.txt new file mode 100644 index 0000000..ae84d33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814070_4_7177037.txt @@ -0,0 +1 @@ +4 0.998521 0.430443 0.916826 0.421257 0.906982 0.374010 0.867612 0.303145 0.824307 0.251960 0.814463 0.208652 0.802651 0.206029 0.796748 0.149603 0.770171 0.087923 0.715054 0.060358 0.663872 0.060358 0.584150 0.144349 0.573320 0.230964 0.592021 0.321517 0.617612 0.397630 0.604819 0.517057 0.556592 0.570859 0.546748 0.708652 0.514268 0.859577 0.514268 0.908132 0.523579 1.000000 0.907124 1.000000 1.000000 0.998730 1.000000 0.601452 diff --git a/datasets/pinganmajia/train/labels/订单1814071_4_7176901.txt b/datasets/pinganmajia/train/labels/订单1814071_4_7176901.txt new file mode 100644 index 0000000..0a7174a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814071_4_7176901.txt @@ -0,0 +1 @@ +4 0.343477 0.376631 0.271732 0.392383 0.240234 0.434375 0.226237 0.490801 0.215742 0.555107 0.241979 0.602354 0.259479 0.624658 0.273477 0.636475 0.285729 0.711279 0.297982 0.795264 0.306719 0.821514 0.315469 0.835947 0.322474 0.883193 0.338216 0.887129 0.355716 0.884502 0.350469 0.830703 0.355716 0.804453 0.359219 0.712588 0.373216 0.795264 0.374961 0.814951 0.369714 0.837266 0.401211 0.846445 0.458958 0.858262 0.458958 0.842510 0.430964 0.820205 0.420456 0.793955 0.423958 0.713906 0.444961 0.614160 0.460703 0.604980 0.476458 0.531484 0.457201 0.442246 0.415208 0.391064 0.420456 0.349072 0.406458 0.321514 0.362721 0.325449 0.346966 0.347764 0.341719 0.358262 diff --git a/datasets/pinganmajia/train/labels/订单1814073_4_7176932.txt b/datasets/pinganmajia/train/labels/订单1814073_4_7176932.txt new file mode 100644 index 0000000..b6c86de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814073_4_7176932.txt @@ -0,0 +1 @@ +4 0.995520 0.511803 0.915480 0.484245 0.875956 0.458001 0.849279 0.431751 0.863113 0.337266 0.874971 0.266400 0.891765 0.181094 0.883863 0.132539 0.836431 0.039362 0.734657 0.036738 0.642760 0.098418 0.598299 0.204720 0.593358 0.297897 0.613118 0.397630 0.567667 0.492122 0.527152 0.526243 0.458975 0.625977 0.462926 0.706029 0.454034 0.799206 0.451069 0.833327 0.429328 0.996055 0.999471 0.997370 diff --git a/datasets/pinganmajia/train/labels/订单1814074_4_7176959.txt b/datasets/pinganmajia/train/labels/订单1814074_4_7176959.txt new file mode 100644 index 0000000..d308a24 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814074_4_7176959.txt @@ -0,0 +1 @@ +4 0.000000 0.388836 0.039180 0.368750 0.004071 0.333321 0.006995 0.128597 0.162063 0.069540 0.320055 0.060355 0.498538 0.106287 0.574604 0.153529 0.574604 0.240147 0.539495 0.275576 0.513169 0.356942 0.492691 0.393689 0.489754 0.418621 0.589235 0.461930 0.615574 0.552482 0.615574 0.612849 0.568757 0.696838 0.577541 0.771642 0.603866 0.891060 0.542432 0.998676 0.266052 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814076_4_7177058.txt b/datasets/pinganmajia/train/labels/订单1814076_4_7177058.txt new file mode 100644 index 0000000..955d498 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814076_4_7177058.txt @@ -0,0 +1 @@ +4 0.605920 0.349050 0.546427 0.393670 0.520173 0.440920 0.535920 0.490790 0.562173 0.522280 0.579667 0.639080 0.602413 0.716510 0.553427 0.741440 0.595413 0.750630 0.616413 0.744070 0.644413 0.732260 0.646160 0.687640 0.651413 0.740130 0.668907 0.770310 0.663653 0.799190 0.689907 0.804440 0.698653 0.770310 0.702147 0.698140 0.691653 0.528840 0.710907 0.496040 0.749400 0.461920 0.724893 0.375300 0.709147 0.354300 0.670653 0.331990 0.640907 0.272940 0.604160 0.284750 0.600667 0.322810 diff --git a/datasets/pinganmajia/train/labels/订单1814077_4_7177358.txt b/datasets/pinganmajia/train/labels/订单1814077_4_7177358.txt new file mode 100644 index 0000000..3dbc097 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814077_4_7177358.txt @@ -0,0 +1 @@ +4 0.002156 0.091906 0.112396 0.044664 0.264625 0.044664 0.404615 0.093219 0.451854 0.170648 0.462354 0.262516 0.450104 0.315008 0.439604 0.363563 0.448354 0.397680 0.430854 0.452805 0.500844 0.496109 0.429104 0.568289 0.467604 0.698211 0.499094 0.741516 0.502594 0.773008 0.590083 0.885875 0.619833 0.943617 0.605833 0.982984 0.546344 0.997422 0.011625 1.000000 0.002156 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814080_4_7177067.txt b/datasets/pinganmajia/train/labels/订单1814080_4_7177067.txt new file mode 100644 index 0000000..b3aae61 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814080_4_7177067.txt @@ -0,0 +1 @@ +4 0.004449 0.103701 0.035944 0.015776 0.382402 0.019714 0.408977 0.132574 0.392243 0.245433 0.379449 0.293987 0.352874 0.402917 0.309565 0.490842 0.310551 0.517083 0.388309 0.597141 0.412911 0.649632 0.445392 0.791364 0.441599 1.000000 0.000515 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814084_4_7177144.txt b/datasets/pinganmajia/train/labels/订单1814084_4_7177144.txt new file mode 100644 index 0000000..e69b042 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814084_4_7177144.txt @@ -0,0 +1 @@ +4 0.990875 0.329381 0.922642 0.217831 0.803650 0.181088 0.653175 0.199456 0.591933 0.263763 0.532433 0.350375 0.581433 0.459300 0.583183 0.510481 0.618175 0.565600 0.607675 0.601031 0.642675 0.644344 0.530683 0.700769 0.528933 0.782138 0.588433 0.797881 0.553433 0.921244 0.535383 1.000000 0.996442 1.000000 0.997875 0.999981 diff --git a/datasets/pinganmajia/train/labels/订单1814085_4_7177113.txt b/datasets/pinganmajia/train/labels/订单1814085_4_7177113.txt new file mode 100644 index 0000000..87999d2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814085_4_7177113.txt @@ -0,0 +1 @@ +4 0.557510 0.020955 0.557510 0.070825 0.565373 0.149568 0.576186 0.195497 0.526054 0.209935 0.556525 0.241433 0.508358 0.326734 0.494598 0.410720 0.495583 0.555079 0.490667 0.728305 0.495583 0.789987 0.492632 0.838541 0.520157 0.896289 0.534902 0.889725 0.571926 1.000000 0.942049 1.000000 0.945779 0.999961 0.940863 0.847729 0.942828 0.700746 0.942828 0.597075 1.000000 0.659856 1.000000 0.180740 0.933985 0.154817 0.821926 0.124634 0.781623 0.087886 0.768848 0.091826 0.762946 0.019647 diff --git a/datasets/pinganmajia/train/labels/订单1814088_4_7177200.txt b/datasets/pinganmajia/train/labels/订单1814088_4_7177200.txt new file mode 100644 index 0000000..e5152b8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814088_4_7177200.txt @@ -0,0 +1 @@ +4 0.006995 0.190276 0.150355 0.139093 0.296653 0.136471 0.451721 0.182402 0.504385 0.254577 0.472199 0.324136 0.463429 0.393689 0.401981 0.467175 0.501462 0.536734 0.516093 0.627286 0.492691 0.712586 0.463429 0.751955 0.495615 0.896311 0.489754 0.996048 0.006995 0.996048 diff --git a/datasets/pinganmajia/train/labels/订单1814089_4_7177093.txt b/datasets/pinganmajia/train/labels/订单1814089_4_7177093.txt new file mode 100644 index 0000000..5e8f3a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814089_4_7177093.txt @@ -0,0 +1 @@ +4 1.000000 0.505110 0.961111 0.464534 0.929624 0.447475 0.926127 0.350368 0.891127 0.271630 0.752892 0.249314 0.574412 0.290000 0.555163 0.442230 0.562173 0.517034 0.574412 0.569522 0.539428 0.646961 0.537680 0.681078 0.444935 0.780809 0.385441 0.884485 0.318693 1.000000 0.992614 1.000000 0.999608 0.999975 1.000000 0.891176 diff --git a/datasets/pinganmajia/train/labels/订单1814090_4_7177222.txt b/datasets/pinganmajia/train/labels/订单1814090_4_7177222.txt new file mode 100644 index 0000000..c1c0d6c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814090_4_7177222.txt @@ -0,0 +1 @@ +4 0.000000 0.492873 0.046055 0.454091 0.117037 0.455398 0.131823 0.421282 0.168299 0.392411 0.167311 0.324164 0.157457 0.263799 0.158439 0.169310 0.166329 0.143068 0.246183 0.098442 0.316177 0.107630 0.358567 0.131250 0.386171 0.204740 0.393073 0.261177 0.380256 0.371412 0.357585 0.477711 0.394061 0.536761 0.433494 0.607630 0.436451 0.699497 0.429549 0.755925 0.446311 0.864846 0.459000 1.000000 0.382079 1.000000 0.003665 0.993458 0.000000 0.684683 diff --git a/datasets/pinganmajia/train/labels/订单1814091_4_7177207.txt b/datasets/pinganmajia/train/labels/订单1814091_4_7177207.txt new file mode 100644 index 0000000..11f7a6a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814091_4_7177207.txt @@ -0,0 +1 @@ +4 0.007484 0.604963 0.121225 0.539338 0.072222 0.509154 0.112467 0.446164 0.131716 0.409424 0.168464 0.401544 0.149216 0.339865 0.161471 0.324118 0.184216 0.215196 0.299706 0.145637 0.427435 0.156140 0.499183 0.206005 0.532418 0.274252 0.523676 0.358235 0.502680 0.468480 0.542925 0.527537 0.632157 0.576091 0.612908 0.622022 0.665408 0.682390 0.660163 0.774252 0.653154 0.880551 0.689118 1.000000 0.238480 1.000000 0.005735 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814092_4_7177141.txt b/datasets/pinganmajia/train/labels/订单1814092_4_7177141.txt new file mode 100644 index 0000000..2ec324f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814092_4_7177141.txt @@ -0,0 +1 @@ +4 0.000490 0.397610 0.068725 0.282120 0.131716 0.308370 0.224461 0.208640 0.388938 0.228321 0.506176 0.328051 0.513170 0.370049 0.458938 0.473725 0.479935 0.492096 0.322451 0.610208 0.422190 0.682390 0.437941 0.761127 0.436176 0.863493 0.436176 1.000000 0.092206 1.000000 0.003987 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814093_4_7177103.txt b/datasets/pinganmajia/train/labels/订单1814093_4_7177103.txt new file mode 100644 index 0000000..3e0850f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814093_4_7177103.txt @@ -0,0 +1 @@ +4 0.000707 0.521015 0.059854 0.490836 0.081543 0.469838 0.118018 0.454091 0.162384 0.406843 0.155482 0.286112 0.142665 0.257240 0.151543 0.240179 0.148585 0.148312 0.188018 0.052516 0.248152 0.021015 0.333921 0.048580 0.370402 0.114196 0.388146 0.188994 0.385189 0.278239 0.405890 0.283482 0.391104 0.325479 0.382232 0.379286 0.358567 0.450154 0.439409 0.522330 0.458140 0.597135 0.465043 0.751989 0.467012 0.814984 0.464055 1.000000 0.457085 1.000000 -0.000000 0.998709 0.000000 0.691810 diff --git a/datasets/pinganmajia/train/labels/订单1814094_4_7177156.txt b/datasets/pinganmajia/train/labels/订单1814094_4_7177156.txt new file mode 100644 index 0000000..47d906c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814094_4_7177156.txt @@ -0,0 +1 @@ +4 0.533203 0.255941 0.480706 0.287431 0.459712 0.355676 0.456209 0.448853 0.452706 0.489529 0.480706 0.476412 0.503451 0.544647 0.510458 0.658824 0.492954 0.692941 0.510458 0.698196 0.545451 0.671951 0.555948 0.643078 0.569948 0.673255 0.638183 0.694255 0.622444 0.660137 0.618941 0.582706 0.646941 0.489529 0.676680 0.484284 0.701176 0.406853 0.699425 0.335990 0.681935 0.284804 0.615438 0.250686 0.613686 0.228382 0.613686 0.179824 0.571699 0.168010 0.547203 0.194255 0.538444 0.229686 diff --git a/datasets/pinganmajia/train/labels/订单1814095_4_7177256.txt b/datasets/pinganmajia/train/labels/订单1814095_4_7177256.txt new file mode 100644 index 0000000..c98ce1a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814095_4_7177256.txt @@ -0,0 +1 @@ +4 0.987254 0.208679 0.952254 0.150938 0.892765 0.108942 0.723030 0.106314 0.637292 0.170618 0.555057 0.276918 0.570805 0.345163 0.572547 0.431776 0.598797 0.507891 0.493807 0.587940 0.366080 0.667997 0.278589 0.729673 0.236591 0.792670 0.189347 0.872720 0.191098 0.998707 0.457064 1.000000 0.999479 1.000000 0.995994 0.523636 0.966250 0.484268 0.969754 0.454084 1.000000 0.446520 1.000000 0.365163 diff --git a/datasets/pinganmajia/train/labels/订单1814097_4_7177232.txt b/datasets/pinganmajia/train/labels/订单1814097_4_7177232.txt new file mode 100644 index 0000000..7a8ebea --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814097_4_7177232.txt @@ -0,0 +1 @@ +4 0.002957 0.018333 0.342918 0.019644 0.412772 0.098388 0.422091 0.183690 0.426741 0.254556 0.417432 0.346420 0.389484 0.385789 0.429076 0.396288 0.384835 0.448777 0.431401 0.608887 0.524543 0.724370 0.578093 0.889726 0.543570 1.000000 0.370010 1.000000 0.007617 0.997336 diff --git a/datasets/pinganmajia/train/labels/订单1814104_4_7177646.txt b/datasets/pinganmajia/train/labels/订单1814104_4_7177646.txt new file mode 100644 index 0000000..6444beb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814104_4_7177646.txt @@ -0,0 +1 @@ +4 0.746589 0.530231 0.708203 0.447558 0.702300 0.396377 0.688524 0.358310 0.688524 0.325509 0.686554 0.237581 0.706233 0.135220 0.757422 0.094537 0.853872 0.074850 0.932613 0.111597 0.952300 0.166713 0.950330 0.263831 0.938524 0.320255 0.957222 0.324190 0.950330 0.368819 0.939505 0.410810 0.907023 0.429178 1.000000 0.490509 1.000000 0.887928 0.999549 1.000000 0.572535 1.000000 0.568438 0.967234 0.592066 0.825509 0.614705 0.633900 diff --git a/datasets/pinganmajia/train/labels/订单1814105_4_7177323.txt b/datasets/pinganmajia/train/labels/订单1814105_4_7177323.txt new file mode 100644 index 0000000..7682239 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814105_4_7177323.txt @@ -0,0 +1 @@ +4 0.742408 0.299194 0.751158 0.262450 0.794900 0.244081 0.828150 0.257200 0.833400 0.283450 0.828150 0.305756 0.808900 0.330694 0.835150 0.334631 0.840400 0.349062 0.885892 0.377938 0.887642 0.443556 0.870142 0.513106 0.857900 0.559038 0.831650 0.593162 0.826400 0.583975 0.782658 0.637781 0.751158 0.728331 0.730158 0.765075 0.751158 0.795256 0.740658 0.803131 0.717917 0.799194 0.696917 0.771637 0.668917 0.799194 0.642675 0.793950 0.654925 0.711269 0.656675 0.658775 0.661917 0.619406 0.658425 0.556412 0.639175 0.573475 0.626925 0.559038 0.618175 0.520981 0.633925 0.444869 0.649675 0.388437 0.684667 0.354312 0.707417 0.335944 0.705667 0.329381 0.749408 0.329381 diff --git a/datasets/pinganmajia/train/labels/订单1814109_4_7177731.txt b/datasets/pinganmajia/train/labels/订单1814109_4_7177731.txt new file mode 100644 index 0000000..dcc54d6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814109_4_7177731.txt @@ -0,0 +1 @@ +4 0.017180 0.136471 0.154332 0.102347 0.329401 0.097102 0.463624 0.128597 0.533651 0.219148 0.492807 0.267702 0.437357 0.338566 0.384837 0.402874 0.335232 0.434369 0.317725 0.463241 0.349823 0.514424 0.373174 0.555104 0.428610 0.629908 0.457793 0.708646 0.551158 0.779516 0.650368 0.813634 0.708719 0.863505 0.723311 0.898934 0.685381 0.912059 0.662044 0.913370 0.635777 0.914687 0.699973 0.999988 0.020109 0.998676 diff --git a/datasets/pinganmajia/train/labels/订单1814110_4_7177369.txt b/datasets/pinganmajia/train/labels/订单1814110_4_7177369.txt new file mode 100644 index 0000000..cc6d77a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814110_4_7177369.txt @@ -0,0 +1 @@ +4 0.287383 0.305822 0.262880 0.279583 0.252383 0.248081 0.278640 0.200844 0.376623 0.185088 0.404620 0.225779 0.413363 0.266458 0.413363 0.303202 0.432617 0.326820 0.499108 0.338640 0.520102 0.387193 0.544605 0.459375 0.553348 0.587982 0.537602 0.627346 0.535848 0.652281 0.511360 0.686404 0.500863 0.677215 0.495614 0.639156 0.481608 0.602412 0.471111 0.660154 0.476360 0.690340 0.460614 0.734956 0.446608 0.794013 0.450117 0.860943 0.420365 0.934441 0.432617 0.979057 0.437865 0.997423 0.388874 0.992182 0.352120 0.952807 0.366126 0.849134 0.373129 0.804518 0.346871 0.725779 0.327632 0.803202 0.338129 0.899002 0.332880 0.940998 0.285629 0.976425 0.240146 0.996118 0.203392 0.996118 0.205146 0.976425 0.247135 0.951491 0.236637 0.871447 0.236637 0.805822 0.224386 0.703465 0.222646 0.590603 0.205146 0.640471 0.217398 0.679846 0.198143 0.704781 0.157895 0.662785 0.145658 0.559112 0.152646 0.461996 0.191140 0.384561 0.206901 0.358322 0.227895 0.330757 diff --git a/datasets/pinganmajia/train/labels/订单1814111_4_7177382.txt b/datasets/pinganmajia/train/labels/订单1814111_4_7177382.txt new file mode 100644 index 0000000..ccfee8a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814111_4_7177382.txt @@ -0,0 +1 @@ +4 0.317217 0.429119 0.299717 0.476362 0.243725 0.505231 0.194725 0.619406 0.231475 0.763763 0.250725 0.793950 0.264717 0.830694 0.276967 0.817569 0.294467 0.807069 0.294467 0.769013 0.310217 0.795256 0.317217 0.822819 0.331208 0.870062 0.336458 0.944869 0.348708 0.998669 0.406450 0.999981 0.413450 0.930431 0.430950 0.830694 0.446700 0.927806 0.462442 0.990800 0.521942 0.996044 0.537683 0.948800 0.530683 0.901556 0.537683 0.837256 0.548183 0.750637 0.555183 0.706019 0.570933 0.770325 0.598925 0.754575 0.604175 0.706019 0.590183 0.614156 0.560433 0.539356 0.479942 0.468488 0.446700 0.459300 0.430950 0.421244 0.418700 0.367437 0.374958 0.354312 0.336458 0.367437 0.320717 0.402869 diff --git a/datasets/pinganmajia/train/labels/订单1814112_4_7177455.txt b/datasets/pinganmajia/train/labels/订单1814112_4_7177455.txt new file mode 100644 index 0000000..d7b5050 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814112_4_7177455.txt @@ -0,0 +1 @@ +4 1.000000 0.429257 0.938104 0.405569 0.918792 0.389819 0.939861 0.341264 0.913522 0.299271 0.873123 0.216590 0.787063 0.191660 0.655344 0.203465 0.620223 0.245465 0.578067 0.301896 0.586849 0.350451 0.576310 0.397694 0.592119 0.451500 0.650074 0.484306 0.625483 0.500056 0.602658 0.595854 0.521868 0.700840 0.483225 0.773021 0.477955 0.897694 0.460400 0.998743 0.971812 1.000000 0.994312 1.000000 1.000000 0.795882 diff --git a/datasets/pinganmajia/train/labels/订单1814117_4_7177412.txt b/datasets/pinganmajia/train/labels/订单1814117_4_7177412.txt new file mode 100644 index 0000000..42b9f72 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814117_4_7177412.txt @@ -0,0 +1 @@ +4 0.000000 0.040542 0.035972 0.023684 0.236761 0.017123 0.267272 0.105053 0.270228 0.194292 0.271210 0.236283 0.284003 0.248095 0.273180 0.267784 0.263338 0.338651 0.262351 0.364894 0.339122 0.450198 0.366682 0.544683 0.378492 0.605053 0.354871 0.664107 0.364712 0.717910 0.383413 0.804524 0.409990 0.875390 0.410972 0.925132 0.403100 0.944815 0.419831 0.998750 0.286979 1.000000 0.000536 1.000000 0.000000 0.474034 diff --git a/datasets/pinganmajia/train/labels/订单1814119_4_7177441.txt b/datasets/pinganmajia/train/labels/订单1814119_4_7177441.txt new file mode 100644 index 0000000..cb50aaa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814119_4_7177441.txt @@ -0,0 +1 @@ +4 1.000000 0.390603 0.953255 0.375340 0.955226 0.334654 0.956207 0.282160 0.974909 0.157494 0.939476 0.091872 0.878452 0.065628 0.777077 0.091872 0.719990 0.139115 0.691447 0.236231 0.701288 0.293974 0.714082 0.351718 0.744596 0.444891 0.698337 0.498699 0.671760 0.594500 0.682587 0.674551 0.688490 0.738853 0.679635 0.867462 0.688490 0.922583 0.698962 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814120_4_7177556.txt b/datasets/pinganmajia/train/labels/订单1814120_4_7177556.txt new file mode 100644 index 0000000..4dd383a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814120_4_7177556.txt @@ -0,0 +1 @@ +4 0.794909 0.267705 0.780911 0.313643 0.791419 0.349072 0.742422 0.371387 0.717917 0.408125 0.710924 0.443564 0.712669 0.485557 0.710924 0.543301 0.717917 0.637783 0.721419 0.719150 0.665430 0.744082 0.702174 0.758525 0.754674 0.753271 0.766914 0.717842 0.787917 0.683721 0.775664 0.728340 0.775664 0.758525 0.752917 0.795264 0.779167 0.807080 0.814167 0.797891 0.824661 0.744082 0.845651 0.706025 0.836914 0.643037 0.866654 0.593164 0.884154 0.534111 0.915651 0.510488 0.955898 0.476367 0.941901 0.387129 0.912148 0.362197 0.866654 0.334639 0.866654 0.307080 0.866654 0.270332 0.831654 0.249336 0.805417 0.255898 diff --git a/datasets/pinganmajia/train/labels/订单1814122_4_7177544.txt b/datasets/pinganmajia/train/labels/订单1814122_4_7177544.txt new file mode 100644 index 0000000..296c5ea --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814122_4_7177544.txt @@ -0,0 +1 @@ +4 0.000000 0.480870 0.030229 0.463223 0.007484 0.436985 0.000000 0.416924 0.000000 0.356336 0.021487 0.359559 0.021487 0.299191 0.063480 0.253260 0.140474 0.241446 0.217467 0.245380 0.296209 0.286066 0.325948 0.360870 0.338203 0.397610 0.343448 0.459289 0.308448 0.519657 0.371438 0.535404 0.350441 0.581336 0.392435 0.678456 0.422190 0.754571 0.471176 0.996042 0.000000 0.999951 diff --git a/datasets/pinganmajia/train/labels/订单1814123_4_7177496.txt b/datasets/pinganmajia/train/labels/订单1814123_4_7177496.txt new file mode 100644 index 0000000..2103df2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814123_4_7177496.txt @@ -0,0 +1 @@ +4 0.011656 0.719122 0.076299 0.686317 0.086786 0.636451 0.107744 0.572146 0.133945 0.557707 0.132208 0.513085 0.147922 0.464537 0.177614 0.398915 0.247500 0.363488 0.345325 0.352988 0.448393 0.394976 0.441412 0.444854 0.439659 0.566902 0.509545 0.620707 0.518279 0.662695 0.574172 0.740122 0.568929 0.922537 0.596883 0.988159 0.000000 0.998646 0.000000 0.985695 diff --git a/datasets/pinganmajia/train/labels/订单1814124_4_7177518.txt b/datasets/pinganmajia/train/labels/订单1814124_4_7177518.txt new file mode 100644 index 0000000..5290c4d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814124_4_7177518.txt @@ -0,0 +1 @@ +4 1.000000 0.810846 0.896373 0.746691 0.877124 0.691569 0.912124 0.643015 0.929624 0.578713 0.866634 0.439608 0.719657 0.397610 0.597157 0.440919 0.525425 0.540650 0.537680 0.704694 0.432680 0.723076 0.297958 0.787377 0.212206 0.883174 0.100229 0.968480 0.094984 0.997353 1.000000 0.998652 diff --git a/datasets/pinganmajia/train/labels/订单1814125_4_7177508.txt b/datasets/pinganmajia/train/labels/订单1814125_4_7177508.txt new file mode 100644 index 0000000..590b605 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814125_4_7177508.txt @@ -0,0 +1 @@ +4 0.198242 0.385820 0.191237 0.402881 0.150990 0.418623 0.116003 0.489492 0.105495 0.534111 0.119492 0.611543 0.130000 0.615479 0.149245 0.683721 0.180742 0.703398 0.213984 0.809697 0.329466 0.847764 0.339974 0.765078 0.346966 0.713906 0.353971 0.664033 0.369714 0.624658 0.406458 0.552480 0.376719 0.463242 0.355716 0.427812 0.299727 0.396318 0.296224 0.379258 0.283971 0.318887 0.217487 0.309697 0.198242 0.335947 0.206992 0.370068 diff --git a/datasets/pinganmajia/train/labels/订单1814126_4_7177512.txt b/datasets/pinganmajia/train/labels/订单1814126_4_7177512.txt new file mode 100644 index 0000000..de59ae1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814126_4_7177512.txt @@ -0,0 +1 @@ +4 1.000000 0.515234 0.930605 0.510495 0.930605 0.426504 0.866631 0.334642 0.787891 0.322826 0.780015 0.280833 0.774111 0.280833 0.762300 0.200781 0.721943 0.132539 0.641235 0.131230 0.592021 0.166660 0.551670 0.232279 0.543794 0.325456 0.562495 0.387135 0.577261 0.443561 0.567417 0.564297 0.582183 0.573483 0.525093 0.661413 0.502456 0.775586 0.488677 0.846452 0.464072 0.954063 0.469951 1.000000 0.999092 1.000000 0.999502 0.999993 1.000000 0.969447 diff --git a/datasets/pinganmajia/train/labels/订单1814127_4_7177543.txt b/datasets/pinganmajia/train/labels/订单1814127_4_7177543.txt new file mode 100644 index 0000000..26dd8dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814127_4_7177543.txt @@ -0,0 +1 @@ +4 1.000000 0.230539 0.849134 0.199449 0.675899 0.234877 0.607663 0.297868 0.623415 0.341176 0.605915 0.446164 0.612908 0.510466 0.635654 0.553775 0.618170 0.608897 0.544673 0.690257 0.527173 0.724387 0.453676 0.855613 0.413431 0.905490 0.364444 0.992096 0.996111 0.996042 1.000000 0.753750 diff --git a/datasets/pinganmajia/train/labels/订单1814128_4_7177600.txt b/datasets/pinganmajia/train/labels/订单1814128_4_7177600.txt new file mode 100644 index 0000000..c7d3e24 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814128_4_7177600.txt @@ -0,0 +1 @@ +4 0.997548 0.332032 0.947351 0.335968 0.898139 0.320218 0.887312 0.276910 0.850894 0.248045 0.814476 0.240167 0.781010 0.106308 0.748534 0.018385 0.479832 0.021006 0.478846 0.140429 0.498534 0.266417 0.545774 0.339904 0.539870 0.370090 0.512312 0.422583 0.512312 0.467205 0.428649 0.560378 0.413885 0.667987 0.409947 0.737545 0.389279 0.838596 0.408341 1.000000 0.996562 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814129_4_7177548.txt b/datasets/pinganmajia/train/labels/订单1814129_4_7177548.txt new file mode 100644 index 0000000..e25fbe5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814129_4_7177548.txt @@ -0,0 +1 @@ +4 0.003462 0.246748 0.043817 0.225752 0.033977 0.196879 0.023150 0.153570 0.018229 0.105016 0.039884 0.103701 0.051691 0.103701 0.050711 0.015776 0.309565 0.017083 0.318425 0.114199 0.319412 0.158815 0.319412 0.215253 0.289884 0.353047 0.329252 0.330735 0.336140 0.356985 0.335159 0.398979 0.407010 0.556454 0.403070 0.591887 0.409963 0.670629 0.434565 0.875351 0.427678 0.917353 0.448346 0.998717 0.228419 1.000000 0.000000 1.000000 0.000000 0.910784 diff --git a/datasets/pinganmajia/train/labels/订单1814130_4_7177527.txt b/datasets/pinganmajia/train/labels/订单1814130_4_7177527.txt new file mode 100644 index 0000000..807f66c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814130_4_7177527.txt @@ -0,0 +1 @@ +4 0.994244 0.574817 0.859513 0.515760 0.870013 0.480327 0.898013 0.446212 0.915500 0.381904 0.898013 0.362221 0.905013 0.223115 0.831513 0.124683 0.740526 0.103692 0.611038 0.110250 0.509551 0.150933 0.450064 0.255923 0.462308 0.355654 0.458808 0.434394 0.472808 0.463269 0.478064 0.513135 0.367821 0.524952 0.310077 0.559067 0.240090 0.610250 0.096603 0.863529 0.093103 0.898962 0.087859 0.925212 0.122756 1.000000 0.787269 1.000000 1.000000 0.998731 1.000000 0.807135 diff --git a/datasets/pinganmajia/train/labels/订单1814133_4_7177558.txt b/datasets/pinganmajia/train/labels/订单1814133_4_7177558.txt new file mode 100644 index 0000000..aeae3ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814133_4_7177558.txt @@ -0,0 +1 @@ +4 1.000000 0.599167 0.898168 0.557789 0.821398 0.517106 0.745608 0.439676 0.616667 0.387187 0.618637 0.343877 0.629462 0.274329 0.636354 0.173275 0.598950 0.099780 0.529071 0.060417 0.460174 0.085347 0.411944 0.162778 0.405052 0.273009 0.411944 0.359630 0.436554 0.420000 0.379462 0.467234 0.346988 0.602407 0.344028 0.719213 0.377500 0.998738 0.779071 0.998738 0.782023 0.824190 0.821398 0.825509 0.858793 0.885880 0.936554 0.969861 0.996224 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814134_4_7177660.txt b/datasets/pinganmajia/train/labels/订单1814134_4_7177660.txt new file mode 100644 index 0000000..f77fefd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814134_4_7177660.txt @@ -0,0 +1 @@ +4 0.000000 0.185500 0.131646 0.097156 0.290875 0.095844 0.406365 0.136531 0.455354 0.210016 0.464104 0.287445 0.444854 0.389813 0.451854 0.426555 0.437854 0.484297 0.513094 0.534164 0.451854 0.606344 0.521844 0.738891 0.600583 0.863562 0.672667 1.000000 0.218344 1.000000 0.002156 0.998734 0.000000 0.497172 diff --git a/datasets/pinganmajia/train/labels/订单1814136_4_7177622.txt b/datasets/pinganmajia/train/labels/订单1814136_4_7177622.txt new file mode 100644 index 0000000..a9792b0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814136_4_7177622.txt @@ -0,0 +1 @@ +4 0.012650 0.593212 0.143877 0.543342 0.205127 0.465911 0.203368 0.423924 0.208623 0.383238 0.222616 0.381927 0.262870 0.258568 0.364352 0.200825 0.513079 0.213950 0.598819 0.265130 0.618067 0.320243 0.583079 0.416050 0.574329 0.484288 0.525336 0.566962 0.644317 0.606337 0.728310 0.728385 0.777303 0.820243 0.852546 0.918672 0.901829 1.000000 0.000475 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814137_4_7177652.txt b/datasets/pinganmajia/train/labels/订单1814137_4_7177652.txt new file mode 100644 index 0000000..5f14bc5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814137_4_7177652.txt @@ -0,0 +1 @@ +4 0.003000 0.195527 0.028609 0.191587 0.063533 0.110221 0.131043 0.060355 0.289348 0.034105 0.415054 0.056415 0.566370 0.181091 0.566370 0.234896 0.505848 0.299197 0.484891 0.391060 0.380130 0.448805 0.508174 0.590539 0.573359 0.724393 0.645522 0.879252 0.666478 0.999988 0.000000 0.999988 0.000000 0.714326 diff --git a/datasets/pinganmajia/train/labels/订单1814138_4_7178141.txt b/datasets/pinganmajia/train/labels/订单1814138_4_7178141.txt new file mode 100644 index 0000000..bf85c70 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814138_4_7178141.txt @@ -0,0 +1 @@ +4 1.000000 0.492337 0.950528 0.473787 0.978522 0.413417 1.000000 0.389875 1.000000 0.171408 0.812294 0.098458 0.688056 0.129954 0.625067 0.190321 0.600567 0.271687 0.586572 0.377987 0.626817 0.469850 0.534078 0.472475 0.441339 0.570900 0.429089 0.664075 0.408094 0.821554 0.392344 0.958037 0.366117 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814141_4_7177667.txt b/datasets/pinganmajia/train/labels/订单1814141_4_7177667.txt new file mode 100644 index 0000000..f30a324 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814141_4_7177667.txt @@ -0,0 +1 @@ +4 0.999514 0.396333 0.955226 0.391083 0.785933 0.388462 0.787904 0.295288 0.785933 0.240167 0.774120 0.160115 0.728846 0.094500 0.682587 0.060378 0.624514 0.072186 0.594990 0.124679 0.565462 0.187673 0.557587 0.293974 0.574317 0.326782 0.574317 0.353026 0.591053 0.391083 0.622548 0.455391 0.609750 0.493449 0.550697 0.534128 0.532981 0.633872 0.551683 0.728359 0.542822 0.885840 0.567952 1.000000 0.879226 1.000000 1.000000 0.997436 1.000000 0.494955 diff --git a/datasets/pinganmajia/train/labels/订单1814143_4_7177631.txt b/datasets/pinganmajia/train/labels/订单1814143_4_7177631.txt new file mode 100644 index 0000000..30792f8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814143_4_7177631.txt @@ -0,0 +1 @@ +4 0.999630 0.157469 0.961142 0.156157 0.835154 0.225710 0.779156 0.149591 0.794907 0.115471 0.758158 0.051165 0.721420 0.044606 0.686420 0.017045 0.345216 0.017045 0.325967 0.108912 0.348714 0.173218 0.527191 0.364815 0.469444 0.446181 0.516698 0.477677 0.460700 0.511798 0.448457 0.614159 0.422202 0.770332 0.306718 0.891065 0.246204 1.000000 0.996142 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814145_4_7177691.txt b/datasets/pinganmajia/train/labels/订单1814145_4_7177691.txt new file mode 100644 index 0000000..d6acf4b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814145_4_7177691.txt @@ -0,0 +1 @@ +4 0.997859 0.551152 0.950621 0.515723 0.964624 0.493407 0.978611 0.447475 0.962876 0.405490 0.966373 0.307059 0.906879 0.246691 0.800147 0.224387 0.663660 0.251936 0.616405 0.333309 0.602418 0.423860 0.609412 0.510466 0.525425 0.586593 0.444935 0.612831 0.359199 0.677132 0.266454 0.734877 0.206961 0.796556 0.107222 0.868738 0.000000 0.912843 0.000000 0.978603 0.000408 1.000000 1.000000 1.000000 1.000000 0.643505 diff --git a/datasets/pinganmajia/train/labels/订单1814147_4_7177709.txt b/datasets/pinganmajia/train/labels/订单1814147_4_7177709.txt new file mode 100644 index 0000000..d3b6ed3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814147_4_7177709.txt @@ -0,0 +1 @@ +4 0.007484 0.018346 0.224461 0.019657 0.338203 0.093150 0.331193 0.139081 0.310196 0.220441 0.299706 0.308370 0.252451 0.426483 0.294444 0.473725 0.285703 0.486850 0.388938 0.633836 0.413431 0.694203 0.458938 0.846434 0.519346 1.000000 0.089183 1.000000 0.000490 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814148_4_7177700.txt b/datasets/pinganmajia/train/labels/订单1814148_4_7177700.txt new file mode 100644 index 0000000..5e9194c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814148_4_7177700.txt @@ -0,0 +1 @@ +4 0.003900 0.304497 0.145625 0.279566 0.262870 0.309748 0.320613 0.351745 0.350359 0.402925 0.322361 0.444922 0.325856 0.510538 0.322361 0.555156 0.378345 0.582717 0.422095 0.610269 0.483333 0.695573 0.497338 0.758568 0.506088 0.804497 0.502581 0.880616 0.506007 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814149_4_7177680.txt b/datasets/pinganmajia/train/labels/订单1814149_4_7177680.txt new file mode 100644 index 0000000..70370e1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814149_4_7177680.txt @@ -0,0 +1 @@ +4 0.000000 0.394289 0.052990 0.364804 0.182467 0.324118 0.156225 0.312304 0.156225 0.283444 0.161471 0.228321 0.157974 0.137770 0.233203 0.101017 0.392435 0.074779 0.471176 0.122022 0.502680 0.188946 0.493922 0.276875 0.462435 0.398922 0.478186 0.409424 0.467680 0.475037 0.548170 0.599706 0.590163 0.707316 0.686405 0.927794 0.717402 1.000000 0.002222 1.000000 0.000000 0.613873 diff --git a/datasets/pinganmajia/train/labels/订单1814150_4_7177840.txt b/datasets/pinganmajia/train/labels/订单1814150_4_7177840.txt new file mode 100644 index 0000000..e176f44 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814150_4_7177840.txt @@ -0,0 +1 @@ +4 0.005410 0.536742 0.130410 0.473750 0.167813 0.409447 0.222930 0.335954 0.215056 0.287399 0.227852 0.280837 0.228835 0.190286 0.270176 0.118109 0.333167 0.108919 0.418796 0.169287 0.441436 0.216533 0.423718 0.305771 0.406001 0.443568 0.469978 0.566927 0.455215 0.640417 0.466040 0.692910 0.479646 1.000000 0.001848 1.000000 0.001475 0.999997 diff --git a/datasets/pinganmajia/train/labels/订单1814151_4_7177790.txt b/datasets/pinganmajia/train/labels/订单1814151_4_7177790.txt new file mode 100644 index 0000000..8c662b7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814151_4_7177790.txt @@ -0,0 +1 @@ +4 0.999630 0.074792 0.814156 0.070856 0.684671 0.152222 0.630432 0.257207 0.660175 0.409437 0.556934 0.460617 0.593683 0.559043 0.574434 0.674529 0.521944 0.830694 0.534187 0.891065 0.520195 0.930432 0.532438 0.936998 0.558693 0.946181 0.577932 0.957994 0.549136 1.000000 0.996142 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814152_4_7177857.txt b/datasets/pinganmajia/train/labels/订单1814152_4_7177857.txt new file mode 100644 index 0000000..34b38e9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814152_4_7177857.txt @@ -0,0 +1 @@ +4 0.994580 0.639102 0.916826 0.551172 0.897139 0.473750 0.752456 0.429128 0.778047 0.355638 0.788872 0.345137 0.793794 0.271647 0.804619 0.174538 0.812495 0.119414 0.756392 0.052487 0.703242 0.045924 0.653047 0.057734 0.605801 0.132539 0.598911 0.255898 0.588086 0.269023 0.578242 0.314954 0.580210 0.354323 0.592021 0.355638 0.613677 0.413379 0.584150 0.444876 0.463086 0.463249 0.424702 0.557734 0.422729 0.622044 0.361709 0.711283 0.363677 0.834642 0.402061 0.967187 0.421748 0.997370 0.577622 1.000000 0.817705 1.000000 0.865645 0.973750 0.857769 0.838574 0.871553 0.824141 0.924702 0.939629 0.963086 0.993431 0.995103 1.000000 1.000000 1.000000 1.000000 0.923932 diff --git a/datasets/pinganmajia/train/labels/订单1814153_4_7177777.txt b/datasets/pinganmajia/train/labels/订单1814153_4_7177777.txt new file mode 100644 index 0000000..b314386 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814153_4_7177777.txt @@ -0,0 +1 @@ +4 0.000372 0.345163 0.047615 0.329413 0.044115 0.299231 0.052859 0.263798 0.075615 0.187683 0.126359 0.124683 0.304833 0.105000 0.387077 0.136500 0.409821 0.202115 0.411564 0.313663 0.413321 0.376654 0.404564 0.439644 0.541051 0.540702 0.565551 0.590567 0.535808 0.620750 0.558551 0.804481 0.560295 0.986894 0.547590 1.000000 0.359256 1.000000 0.000000 0.997452 0.000000 0.372788 diff --git a/datasets/pinganmajia/train/labels/订单1814154_4_7177800.txt b/datasets/pinganmajia/train/labels/订单1814154_4_7177800.txt new file mode 100644 index 0000000..708f02c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814154_4_7177800.txt @@ -0,0 +1 @@ +4 0.170233 0.300506 0.156233 0.280825 0.129983 0.230956 0.149233 0.196831 0.201725 0.196831 0.261217 0.215206 0.275217 0.242769 0.261217 0.282137 0.261217 0.299194 0.301467 0.324131 0.369708 0.343819 0.415200 0.447488 0.427450 0.507856 0.411700 0.622031 0.392458 0.641719 0.373208 0.649587 0.357458 0.770325 0.362708 0.841194 0.352208 0.874000 0.371458 0.946175 0.334708 0.947488 0.313717 0.915994 0.285717 0.875313 0.285717 0.795256 0.262967 0.742769 0.248975 0.687650 0.245475 0.771637 0.234975 0.843819 0.234975 0.867438 0.224475 0.891062 0.201725 0.919931 0.185983 0.943556 0.133483 0.972425 0.135233 0.942244 0.163233 0.893688 0.154483 0.790013 0.143983 0.740144 0.129983 0.660088 0.096742 0.645650 0.107242 0.620719 0.082742 0.597094 0.080992 0.510481 0.072242 0.430431 0.080992 0.372687 0.096742 0.346437 0.150983 0.333319 0.168483 0.312319 diff --git a/datasets/pinganmajia/train/labels/订单1814155_4_7177806.txt b/datasets/pinganmajia/train/labels/订单1814155_4_7177806.txt new file mode 100644 index 0000000..906f39e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814155_4_7177806.txt @@ -0,0 +1 @@ +4 0.000000 0.502467 0.026117 0.490856 0.026117 0.435739 0.028083 0.410806 0.122571 0.372744 0.109775 0.270383 0.089108 0.160150 0.075329 0.070911 0.079267 0.019728 0.331233 0.021039 0.354854 0.242828 0.376508 0.248072 0.376508 0.280883 0.356825 0.345189 0.350917 0.366183 0.334187 0.412117 0.374542 0.447550 0.402100 0.501356 0.461154 0.557789 0.469029 0.594533 0.475917 0.782194 0.441471 0.996106 0.296108 1.000000 0.000417 1.000000 0.000000 0.969639 diff --git a/datasets/pinganmajia/train/labels/订单1814156_4_7177861.txt b/datasets/pinganmajia/train/labels/订单1814156_4_7177861.txt new file mode 100644 index 0000000..4a086a3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814156_4_7177861.txt @@ -0,0 +1 @@ +4 0.611067 0.459350 0.570822 0.475100 0.539328 0.517092 0.539328 0.540717 0.570822 0.545967 0.565572 0.589271 0.572572 0.612896 0.581322 0.770375 0.560322 0.796621 0.563822 0.808433 0.591822 0.805808 0.621567 0.790058 0.618067 0.766437 0.637317 0.716567 0.647811 0.786121 0.660061 0.800558 0.695056 0.813679 0.684556 0.770375 0.688056 0.710008 0.710806 0.615517 0.735300 0.607646 0.777294 0.548588 0.721306 0.476413 0.703806 0.464600 0.681061 0.451475 0.675811 0.433104 0.649561 0.409483 0.618067 0.419979 0.616317 0.443604 diff --git a/datasets/pinganmajia/train/labels/订单1814158_4_7177811.txt b/datasets/pinganmajia/train/labels/订单1814158_4_7177811.txt new file mode 100644 index 0000000..1e24011 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814158_4_7177811.txt @@ -0,0 +1 @@ +4 0.009144 0.181137 0.138634 0.126024 0.283866 0.152266 0.360856 0.232318 0.392350 0.333368 0.362604 0.416050 0.318854 0.557778 0.392350 0.643082 0.457095 0.754627 0.462338 0.906858 0.441644 1.000000 0.000417 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814159_4_7177927.txt b/datasets/pinganmajia/train/labels/订单1814159_4_7177927.txt new file mode 100644 index 0000000..65a7d2d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814159_4_7177927.txt @@ -0,0 +1 @@ +4 0.003462 0.036773 0.202286 0.182443 0.242635 0.097141 0.281023 0.021021 0.417837 0.017083 0.469013 0.112884 0.447365 0.225752 0.422757 0.287426 0.356814 0.423913 0.377482 0.555147 0.350907 0.601078 0.324332 0.778243 0.305631 0.914722 0.273162 1.000000 -0.000000 1.000000 0.000000 0.413513 diff --git a/datasets/pinganmajia/train/labels/订单1814160_4_7177828.txt b/datasets/pinganmajia/train/labels/订单1814160_4_7177828.txt new file mode 100644 index 0000000..648af60 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814160_4_7177828.txt @@ -0,0 +1 @@ +4 0.658424 0.241465 0.621680 0.263770 0.586693 0.272959 0.553438 0.351699 0.548190 0.416006 0.558698 0.431748 0.560443 0.478994 0.563945 0.511807 0.576185 0.570859 0.593685 0.729648 0.588438 0.776895 0.605938 0.795264 0.628685 0.791328 0.642682 0.745400 0.647930 0.708652 0.651432 0.632539 0.675924 0.565605 0.689922 0.625977 0.675924 0.688965 0.686432 0.728340 0.677682 0.751963 0.745924 0.800518 0.752917 0.772959 0.737174 0.732275 0.744167 0.660098 0.751172 0.619414 0.777422 0.531484 0.786159 0.461934 0.861406 0.383193 0.835156 0.311016 0.800156 0.271641 0.737174 0.223086 0.756419 0.158779 0.700430 0.139102 0.665430 0.156162 0.656680 0.203398 0.658424 0.227021 diff --git a/datasets/pinganmajia/train/labels/订单1814161_4_7179729.txt b/datasets/pinganmajia/train/labels/订单1814161_4_7179729.txt new file mode 100644 index 0000000..c236fe1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814161_4_7179729.txt @@ -0,0 +1 @@ +4 0.998786 0.374642 0.951874 0.349708 0.899223 0.259168 0.886773 0.256540 0.888690 0.223723 0.904963 0.171241 0.904963 0.114803 0.882939 0.021635 0.661800 0.021635 0.643610 0.118745 0.648392 0.177796 0.678072 0.322161 0.694345 0.362832 0.690522 0.404832 0.707753 0.446832 0.655091 0.534759 0.622545 0.680423 0.588083 0.872029 0.571810 0.999314 0.794878 1.000000 1.000000 1.000000 1.000000 0.639839 diff --git a/datasets/pinganmajia/train/labels/订单1814166_4_7177929.txt b/datasets/pinganmajia/train/labels/订单1814166_4_7177929.txt new file mode 100644 index 0000000..3f7b71c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814166_4_7177929.txt @@ -0,0 +1 @@ +4 0.005735 0.366115 0.049477 0.381863 0.073987 0.339865 0.047729 0.317561 0.051225 0.274252 0.079232 0.242757 0.128219 0.148272 0.192958 0.102341 0.310196 0.082647 0.422190 0.127267 0.486928 0.177132 0.483431 0.232255 0.457190 0.310993 0.413431 0.402855 0.350441 0.473725 0.290948 0.507843 0.392435 0.564277 0.371438 0.712574 0.474673 0.821495 0.511422 0.893676 0.495670 0.935674 0.470931 1.000000 0.237435 1.000000 0.002239 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1814167_4_7177889.txt b/datasets/pinganmajia/train/labels/订单1814167_4_7177889.txt new file mode 100644 index 0000000..e3ca0a6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814167_4_7177889.txt @@ -0,0 +1 @@ +4 0.000000 0.371558 0.024120 0.379276 0.139279 0.334654 0.161918 0.346468 0.158966 0.258538 0.161918 0.178487 0.164870 0.105000 0.195380 0.021006 0.362707 0.022321 0.410933 0.091872 0.419793 0.225731 0.420774 0.253288 0.412904 0.325468 0.406010 0.362218 0.413885 0.385840 0.460144 0.433083 0.486721 0.433083 0.558572 0.522321 0.567428 0.702109 0.567428 0.887147 0.561524 0.988199 0.532558 1.000000 0.316207 1.000000 0.003452 0.996071 0.000000 0.448276 diff --git a/datasets/pinganmajia/train/labels/订单1814168_4_7177939.txt b/datasets/pinganmajia/train/labels/订单1814168_4_7177939.txt new file mode 100644 index 0000000..763fbbc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814168_4_7177939.txt @@ -0,0 +1 @@ +4 0.997859 0.501287 0.913873 0.475037 0.891127 0.360870 0.793137 0.270319 0.691650 0.258505 0.535915 0.320184 0.493922 0.415980 0.423938 0.480294 0.521928 0.448787 0.528922 0.552463 0.514918 0.598395 0.478186 0.658762 0.397696 0.694203 0.450180 0.730944 0.436176 0.854301 0.457190 0.872672 0.455425 0.931728 0.430931 0.999975 1.000000 0.996042 1.000000 0.803174 diff --git a/datasets/pinganmajia/train/labels/订单1814171_4_7178007.txt b/datasets/pinganmajia/train/labels/订单1814171_4_7178007.txt new file mode 100644 index 0000000..d30e9db --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814171_4_7178007.txt @@ -0,0 +1 @@ +4 0.004462 0.518426 0.016276 0.469861 0.024149 0.357002 0.107813 0.154907 0.160964 0.150972 0.281042 0.221829 0.316476 0.296632 0.329271 0.427870 0.322378 0.485613 0.363715 0.514479 0.353872 0.597164 0.386354 0.704769 0.459193 0.885880 0.451319 0.938368 0.449349 0.998738 0.234557 1.000000 0.003481 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814172_4_7177985.txt b/datasets/pinganmajia/train/labels/订单1814172_4_7177985.txt new file mode 100644 index 0000000..bbe0d40 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814172_4_7177985.txt @@ -0,0 +1 @@ +4 0.358222 0.322863 0.293477 0.349108 0.272484 0.408167 0.253229 0.463284 0.268980 0.530216 0.279477 0.543343 0.295229 0.564333 0.307477 0.645696 0.314484 0.733627 0.307477 0.761186 0.323229 0.774314 0.351229 0.767745 0.352967 0.725755 0.366967 0.666696 0.379216 0.614206 0.386222 0.666696 0.387974 0.710010 0.426458 0.731000 0.456209 0.742814 0.440458 0.708696 0.442209 0.640451 0.459712 0.505284 0.461464 0.482971 0.494706 0.427853 0.470209 0.346490 0.426458 0.332049 0.436967 0.288745 0.414209 0.261186 0.379216 0.263814 0.356471 0.280873 0.349477 0.308431 diff --git a/datasets/pinganmajia/train/labels/订单1814174_4_7178249.txt b/datasets/pinganmajia/train/labels/订单1814174_4_7178249.txt new file mode 100644 index 0000000..25aca72 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814174_4_7178249.txt @@ -0,0 +1 @@ +4 0.654033 0.422565 0.558560 0.499993 0.531982 0.805768 0.517222 0.996055 0.982769 0.999993 0.974897 0.923880 1.000000 0.939329 1.000000 0.837572 0.998521 0.527552 0.944385 0.468496 0.920762 0.450124 0.907969 0.418626 0.864663 0.419941 0.787891 0.374010 0.793794 0.337266 0.807573 0.299206 0.806592 0.261146 0.809541 0.209967 0.815449 0.119414 0.786904 0.080046 0.744580 0.087923 0.699307 0.045924 0.646157 0.094479 0.625488 0.198158 0.624502 0.284772 0.615645 0.299206 0.631392 0.337266 0.651079 0.404193 diff --git a/datasets/pinganmajia/train/labels/订单1814176_4_7177991.txt b/datasets/pinganmajia/train/labels/订单1814176_4_7177991.txt new file mode 100644 index 0000000..f14cff7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814176_4_7177991.txt @@ -0,0 +1 @@ +4 0.000000 0.544324 0.068542 0.475098 0.024961 0.423912 0.000000 0.396216 0.000000 0.361392 0.000560 0.359608 0.037161 0.367480 0.002305 0.297931 -0.000000 0.259363 0.000000 0.149882 0.113854 0.107647 0.268984 0.101078 0.384010 0.140451 0.465924 0.211314 0.476393 0.279559 0.467669 0.350422 0.476393 0.439667 0.464193 0.477725 0.523451 0.538088 0.577474 0.598461 0.626276 0.670637 0.607109 0.745441 0.586198 0.807118 0.502539 0.958039 0.476302 1.000000 0.003984 1.000000 0.000000 0.738676 diff --git a/datasets/pinganmajia/train/labels/订单1814177_4_7178116.txt b/datasets/pinganmajia/train/labels/订单1814177_4_7178116.txt new file mode 100644 index 0000000..18e9ab3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814177_4_7178116.txt @@ -0,0 +1 @@ +4 0.994388 0.679785 0.915651 0.623350 0.959388 0.559043 0.990885 0.547236 1.000000 0.518926 1.000000 0.498584 0.992643 0.473740 0.982135 0.472432 1.000000 0.438945 1.000000 0.396289 0.994388 0.383193 0.943646 0.334639 0.814167 0.322822 0.705677 0.366133 0.674180 0.426504 0.656680 0.501299 0.660182 0.576104 0.682930 0.618105 0.593685 0.619414 0.476458 0.703398 0.381966 0.783457 0.322474 0.846445 0.306719 0.954063 0.313724 0.994746 0.770638 1.000000 0.997865 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814178_4_7177996.txt b/datasets/pinganmajia/train/labels/订单1814178_4_7177996.txt new file mode 100644 index 0000000..54dc4c3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814178_4_7177996.txt @@ -0,0 +1 @@ +4 0.752917 0.371377 0.745924 0.391064 0.674180 0.435684 0.654935 0.498682 0.670677 0.577422 0.684674 0.610225 0.709180 0.618105 0.703919 0.686338 0.696927 0.733584 0.710924 0.783457 0.719674 0.807080 0.702174 0.849072 0.724922 0.866133 0.745924 0.863506 0.752917 0.838574 0.761667 0.817578 0.758164 0.783457 0.763411 0.713906 0.782669 0.664033 0.786159 0.708652 0.775664 0.803145 0.773919 0.826758 0.814167 0.846445 0.859661 0.858262 0.866654 0.847764 0.828164 0.820205 0.843906 0.745400 0.864909 0.622041 0.880651 0.597100 0.870156 0.559043 0.884154 0.538047 0.903398 0.566924 0.915651 0.601045 0.924401 0.618105 0.933151 0.599727 0.934896 0.576104 0.941901 0.532803 0.924401 0.471123 0.913893 0.421250 0.875404 0.401562 0.868398 0.392383 0.882409 0.366133 0.852656 0.351699 0.840404 0.312324 0.789661 0.307080 0.763411 0.322822 0.758164 0.355635 diff --git a/datasets/pinganmajia/train/labels/订单1814183_4_7178046.txt b/datasets/pinganmajia/train/labels/订单1814183_4_7178046.txt new file mode 100644 index 0000000..aaad4f2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814183_4_7178046.txt @@ -0,0 +1 @@ +4 0.999500 0.248048 0.875256 0.217865 0.822769 0.240173 0.710782 0.309731 0.689782 0.425212 0.686282 0.475077 0.703782 0.553817 0.744026 0.612875 0.640795 0.669308 0.642538 0.692933 0.579551 0.780856 0.537551 0.946212 0.520051 0.994769 0.903885 1.000000 1.000000 1.000000 1.000000 0.465260 diff --git a/datasets/pinganmajia/train/labels/订单1814187_4_7178190.txt b/datasets/pinganmajia/train/labels/订单1814187_4_7178190.txt new file mode 100644 index 0000000..97ece33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814187_4_7178190.txt @@ -0,0 +1 @@ +4 0.994618 0.468553 0.937535 0.431806 0.933602 0.362257 0.948359 0.332072 0.959193 0.297951 0.976910 0.234954 0.995608 0.224456 0.996589 0.035486 0.978872 0.019734 0.745608 0.018426 0.675729 0.137847 0.698359 0.234954 0.707222 0.303194 0.715095 0.333380 0.720017 0.372755 0.668837 0.460683 0.645217 0.479051 0.584193 0.538102 0.535964 0.649653 0.497578 0.733646 0.480842 0.812384 0.460174 0.884560 0.503481 0.998738 1.000000 0.998738 1.000000 0.790417 diff --git a/datasets/pinganmajia/train/labels/订单1814190_4_7178100.txt b/datasets/pinganmajia/train/labels/订单1814190_4_7178100.txt new file mode 100644 index 0000000..1da58b1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814190_4_7178100.txt @@ -0,0 +1 @@ +4 0.000000 0.161934 0.095000 0.131221 0.180742 0.148281 0.241979 0.200781 0.266484 0.274268 0.280482 0.305762 0.252487 0.418623 0.273477 0.427812 0.266484 0.459307 0.497448 0.692900 0.518451 0.754580 0.553438 0.826758 0.623437 0.994746 0.000000 0.999980 diff --git a/datasets/pinganmajia/train/labels/订单1814192_4_7178129.txt b/datasets/pinganmajia/train/labels/订单1814192_4_7178129.txt new file mode 100644 index 0000000..77bf0b2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814192_4_7178129.txt @@ -0,0 +1 @@ +4 1.000000 0.560257 0.952369 0.559032 0.929624 0.515723 0.931373 0.484228 0.961111 0.455355 0.969869 0.423860 0.973366 0.388419 0.948873 0.383174 0.896373 0.282120 0.765147 0.262439 0.647908 0.307059 0.614657 0.405490 0.621667 0.451422 0.663660 0.540650 0.663660 0.587904 0.534167 0.640392 0.458938 0.816250 0.369690 0.994718 0.871993 1.000000 0.994395 1.000000 1.000000 0.717255 diff --git a/datasets/pinganmajia/train/labels/订单1814195_4_7178168.txt b/datasets/pinganmajia/train/labels/订单1814195_4_7178168.txt new file mode 100644 index 0000000..f024f56 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814195_4_7178168.txt @@ -0,0 +1 @@ +4 0.011349 0.279516 0.078460 0.186336 0.177670 0.137782 0.338147 0.102347 0.542411 0.125968 0.667875 0.213897 0.653283 0.292635 0.618270 0.387126 0.574510 0.455368 0.457793 0.535417 0.627030 0.560355 0.659128 0.635159 0.726240 0.724393 0.711649 0.849069 0.775831 0.931746 0.842398 1.000000 0.000000 1.000000 0.000000 0.983952 diff --git a/datasets/pinganmajia/train/labels/订单1814196_4_7178264.txt b/datasets/pinganmajia/train/labels/订单1814196_4_7178264.txt new file mode 100644 index 0000000..aae82cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814196_4_7178264.txt @@ -0,0 +1 @@ +4 0.998542 0.055147 0.899136 0.036773 0.823346 0.068268 0.763309 0.187688 0.769210 0.257247 0.781023 0.356985 0.793817 0.434412 0.730827 0.517083 0.727874 0.542018 0.676691 0.682443 0.666850 0.839918 0.636342 1.000000 0.995594 1.000000 0.997561 0.397663 0.987714 0.374044 1.000000 0.369951 1.000000 0.147974 diff --git a/datasets/pinganmajia/train/labels/订单1814197_4_7178267.txt b/datasets/pinganmajia/train/labels/订单1814197_4_7178267.txt new file mode 100644 index 0000000..d18000e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814197_4_7178267.txt @@ -0,0 +1 @@ +4 0.988355 0.224418 0.830876 0.192923 0.801709 0.171923 0.763793 0.166673 0.790043 0.122053 0.749220 0.059062 0.615064 0.047250 0.556741 0.090558 0.550908 0.119428 0.565491 0.161423 0.571325 0.181111 0.515908 0.213918 0.416752 0.253288 0.320524 0.385837 0.367179 0.422582 0.457585 0.435702 0.501325 0.442264 0.478002 0.482947 0.524658 0.597120 0.635481 0.793971 0.580075 0.854337 0.626731 0.874024 0.711303 0.841216 0.769626 0.820216 0.790043 0.888457 0.877532 0.906832 0.874615 0.833341 0.897949 0.750663 0.895032 0.657486 0.944605 0.582683 1.000000 0.576452 1.000000 0.505370 diff --git a/datasets/pinganmajia/train/labels/订单1814198_4_7178275.txt b/datasets/pinganmajia/train/labels/订单1814198_4_7178275.txt new file mode 100644 index 0000000..7490c20 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814198_4_7178275.txt @@ -0,0 +1 @@ +4 0.327696 0.022279 0.324199 0.169265 0.283954 0.261127 0.206961 0.329375 0.306699 0.415980 0.345196 0.557721 0.397696 0.628578 0.436176 0.750625 0.432680 0.852990 0.427435 0.998664 0.002239 0.999975 0.005735 0.019657 diff --git a/datasets/pinganmajia/train/labels/订单1814201_4_7178232.txt b/datasets/pinganmajia/train/labels/订单1814201_4_7178232.txt new file mode 100644 index 0000000..fb6234d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814201_4_7178232.txt @@ -0,0 +1 @@ +4 0.283889 0.347818 0.192895 0.381941 0.149152 0.500055 0.213889 0.618158 0.245395 0.682467 0.276886 0.905559 0.292632 0.939682 0.266389 0.996118 0.304883 0.998739 0.329386 0.981678 0.350380 0.942314 0.343377 0.809759 0.366126 0.754649 0.376623 0.813706 0.406374 0.912127 0.402865 0.937061 0.448363 0.950186 0.506111 0.988246 0.541096 0.968553 0.485102 0.908191 0.476360 0.859627 0.467617 0.809759 0.471111 0.704781 0.458860 0.665406 0.474605 0.608980 0.481608 0.526294 0.506111 0.475121 0.488611 0.370132 0.413363 0.358322 0.388874 0.339945 0.388874 0.320263 0.406374 0.292708 0.397617 0.263827 0.360877 0.217895 0.290877 0.212654 0.264635 0.254649 0.266389 0.283520 0.257632 0.303202 0.276886 0.333388 diff --git a/datasets/pinganmajia/train/labels/订单1814202_4_7178205.txt b/datasets/pinganmajia/train/labels/订单1814202_4_7178205.txt new file mode 100644 index 0000000..cadb7d1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814202_4_7178205.txt @@ -0,0 +1 @@ +4 1.000000 0.182125 0.828039 0.217879 0.752800 0.293996 0.740550 0.400296 0.737050 0.528904 0.656561 0.576150 0.598817 0.615517 0.635567 0.713942 0.614567 0.990846 1.000000 0.993429 diff --git a/datasets/pinganmajia/train/labels/订单1814203_4_7178224.txt b/datasets/pinganmajia/train/labels/订单1814203_4_7178224.txt new file mode 100644 index 0000000..8432f45 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814203_4_7178224.txt @@ -0,0 +1 @@ +4 1.000000 0.246398 0.943530 0.254627 0.943530 0.213950 0.913785 0.213950 0.913785 0.086649 0.845544 0.031528 0.696806 0.031528 0.584826 0.076155 0.528831 0.149644 0.542836 0.233628 0.549826 0.346493 0.584826 0.423924 0.555081 0.492161 0.514838 0.598464 0.408102 0.737569 0.437847 0.820243 0.497338 0.916050 0.509387 1.000000 0.756771 1.000000 0.990775 0.998724 1.000000 0.557405 diff --git a/datasets/pinganmajia/train/labels/订单1814204_4_7178305.txt b/datasets/pinganmajia/train/labels/订单1814204_4_7178305.txt new file mode 100644 index 0000000..9ddf001 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814204_4_7178305.txt @@ -0,0 +1 @@ +4 0.000000 0.541520 0.026732 0.476348 0.002239 0.464534 0.000490 0.389743 0.023235 0.321495 0.098480 0.265061 0.206961 0.262439 0.282206 0.305748 0.320703 0.367426 0.304951 0.465858 0.280458 0.541973 0.282206 0.603652 0.283954 0.637770 0.352190 0.732255 0.348693 0.799191 0.418693 0.884485 0.427435 0.943542 0.451928 0.999975 0.003987 0.998664 0.000000 0.653640 diff --git a/datasets/pinganmajia/train/labels/订单1814206_4_7178310.txt b/datasets/pinganmajia/train/labels/订单1814206_4_7178310.txt new file mode 100644 index 0000000..4534fe5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814206_4_7178310.txt @@ -0,0 +1 @@ +4 1.000000 0.527441 0.943503 0.496098 0.960924 0.458039 0.985326 0.422608 0.964414 0.414725 0.997526 0.358294 0.980104 0.280873 0.901667 0.237569 0.774427 0.238873 0.668112 0.299245 0.631510 0.392422 0.633255 0.464598 0.516471 0.631265 0.485104 0.817618 0.500794 0.918667 0.526940 0.996098 0.762956 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814208_4_7178348.txt b/datasets/pinganmajia/train/labels/订单1814208_4_7178348.txt new file mode 100644 index 0000000..b3495a2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814208_4_7178348.txt @@ -0,0 +1 @@ +4 0.994244 0.211298 0.875256 0.161433 0.717782 0.191615 0.654795 0.284788 0.635538 0.429154 0.658282 0.523635 0.691538 0.570885 0.691538 0.631250 0.614538 0.786106 0.598795 0.986894 0.630256 1.000000 1.000000 1.000000 1.000000 0.535510 diff --git a/datasets/pinganmajia/train/labels/订单1814209_4_7178383.txt b/datasets/pinganmajia/train/labels/订单1814209_4_7178383.txt new file mode 100644 index 0000000..92f0e36 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814209_4_7178383.txt @@ -0,0 +1 @@ +4 0.768550 0.311058 0.756300 0.333367 0.712556 0.346492 0.672311 0.384546 0.646061 0.463288 0.630317 0.527592 0.647811 0.553837 0.674061 0.563025 0.684556 0.626017 0.674061 0.738879 0.675811 0.779563 0.663561 0.807121 0.693306 0.818929 0.716056 0.773000 0.719556 0.731004 0.737050 0.645704 0.761550 0.597146 0.752800 0.665388 0.728306 0.750688 0.754550 0.778250 0.815794 0.804496 0.801794 0.770375 0.782544 0.742817 0.801794 0.673262 0.838539 0.564338 0.864783 0.532842 0.870033 0.569588 0.891033 0.574838 0.898033 0.551212 0.920778 0.476413 0.915528 0.400296 0.901533 0.351737 0.845539 0.341242 0.828039 0.307121 0.842039 0.270375 0.801794 0.242817 0.766800 0.257250 0.751050 0.283496 0.747550 0.301871 diff --git a/datasets/pinganmajia/train/labels/订单1814210_4_7178514.txt b/datasets/pinganmajia/train/labels/订单1814210_4_7178514.txt new file mode 100644 index 0000000..add96ae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814210_4_7178514.txt @@ -0,0 +1 @@ +4 0.996111 0.723076 0.882386 0.664020 0.891127 0.606275 0.887631 0.561654 0.892876 0.460600 0.828137 0.408113 0.691650 0.397610 0.614657 0.442230 0.607663 0.517034 0.605915 0.627267 0.635654 0.679767 0.539428 0.692892 0.464183 0.776875 0.351095 1.000000 1.000000 1.000000 1.000000 0.826520 diff --git a/datasets/pinganmajia/train/labels/订单1814211_4_7178364.txt b/datasets/pinganmajia/train/labels/订单1814211_4_7178364.txt new file mode 100644 index 0000000..e336842 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814211_4_7178364.txt @@ -0,0 +1 @@ +4 0.009384 0.443623 0.051710 0.431806 0.088125 0.375370 0.073359 0.358310 0.058602 0.337315 0.061554 0.318947 0.044818 0.267766 0.047769 0.233646 0.058602 0.233646 0.024149 0.119468 0.036944 0.073542 0.068437 0.019734 0.234783 0.024977 0.287925 0.108970 0.300729 0.211331 0.320408 0.355694 0.375530 0.426563 0.431632 0.482986 0.487734 0.568287 0.523168 0.679838 0.522179 0.725775 0.490686 0.864873 0.518247 0.997419 0.180052 1.000000 0.001528 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814215_4_7178588.txt b/datasets/pinganmajia/train/labels/订单1814215_4_7178588.txt new file mode 100644 index 0000000..9040d13 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814215_4_7178588.txt @@ -0,0 +1 @@ +4 1.000000 0.333633 0.961146 0.334639 0.936641 0.308389 0.961146 0.251963 0.952396 0.187656 0.947148 0.097100 0.894648 0.024922 0.560443 0.023613 0.415208 0.181094 0.493945 0.320205 0.562187 0.427812 0.621680 0.476367 0.511445 0.720459 0.469453 0.816260 0.411706 0.990801 1.000000 0.995996 diff --git a/datasets/pinganmajia/train/labels/订单1814217_4_7178538.txt b/datasets/pinganmajia/train/labels/订单1814217_4_7178538.txt new file mode 100644 index 0000000..483608e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814217_4_7178538.txt @@ -0,0 +1 @@ +4 0.002153 0.315000 0.066887 0.321562 0.049387 0.271693 0.040648 0.228385 0.037141 0.191641 0.042396 0.144392 0.082639 0.157517 0.094884 0.035469 0.105382 0.021033 0.504340 0.019722 0.537581 0.094523 0.542836 0.168012 0.497338 0.224444 0.474583 0.286128 0.446597 0.335998 0.392350 0.419983 0.317106 0.465911 0.402847 0.522344 0.495590 0.620773 0.506088 0.702135 0.516586 1.000000 0.502431 1.000000 0.000394 0.998724 diff --git a/datasets/pinganmajia/train/labels/订单1814218_4_7178413.txt b/datasets/pinganmajia/train/labels/订单1814218_4_7178413.txt new file mode 100644 index 0000000..2cd3e90 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814218_4_7178413.txt @@ -0,0 +1 @@ +4 0.996562 0.317596 0.868611 0.311032 0.779043 0.296596 0.776091 0.279538 0.786918 0.230981 0.780029 0.192923 0.763293 0.191609 0.725894 0.077436 0.686524 0.024942 0.596957 0.023635 0.566447 0.106308 0.558572 0.202109 0.577269 0.279538 0.578255 0.312346 0.604832 0.367462 0.610736 0.393712 0.570380 0.461955 0.580226 0.481635 0.542822 0.564314 0.539870 0.712609 0.533966 0.990827 1.000000 0.992128 1.000000 0.654083 diff --git a/datasets/pinganmajia/train/labels/订单1814219_4_7178442.txt b/datasets/pinganmajia/train/labels/订单1814219_4_7178442.txt new file mode 100644 index 0000000..5526317 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814219_4_7178442.txt @@ -0,0 +1 @@ +4 0.014528 0.456693 0.040774 0.452756 0.044265 0.423888 0.023268 0.397638 0.021352 0.353022 0.040774 0.316270 0.058097 0.263780 0.109016 0.216535 0.222743 0.199478 0.359226 0.251969 0.373058 0.355640 0.371483 0.410758 0.359226 0.464567 0.318990 0.523622 0.315315 0.536742 0.392480 0.678474 0.429226 0.755906 0.408228 0.850394 0.425551 0.996063 0.109409 1.000000 0.004055 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814221_4_7178461.txt b/datasets/pinganmajia/train/labels/订单1814221_4_7178461.txt new file mode 100644 index 0000000..42e3eaf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814221_4_7178461.txt @@ -0,0 +1 @@ +4 0.012757 0.339884 0.053004 0.312323 0.033755 0.275579 0.026759 0.246705 0.032006 0.227022 0.063498 0.236211 0.028508 0.162716 0.047757 0.124660 0.033755 0.076103 0.163241 0.059043 0.271728 0.044606 0.387212 0.115471 0.381965 0.232269 0.383714 0.259830 0.362716 0.343819 0.355710 0.368750 0.430957 0.442245 0.502695 0.526235 0.492202 0.711273 0.520195 0.896312 0.511440 0.994738 0.219784 1.000000 0.002325 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814222_4_7178432.txt b/datasets/pinganmajia/train/labels/订单1814222_4_7178432.txt new file mode 100644 index 0000000..0ee0a1a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814222_4_7178432.txt @@ -0,0 +1 @@ +4 0.209112 0.253231 0.154978 0.271601 0.155965 0.305724 0.122500 0.426455 0.119545 0.536689 0.123481 0.576060 0.121513 0.603618 0.141201 0.621996 0.150060 0.610183 0.150060 0.573436 0.150060 0.541944 0.159901 0.489444 0.172697 0.527507 0.168761 0.580000 0.161870 0.642990 0.194348 0.741418 0.206162 0.830658 0.171711 0.880526 0.174666 0.906769 0.216990 0.883151 0.245532 0.854276 0.241595 0.821469 0.240609 0.758480 0.234704 0.696798 0.243564 0.658743 0.254391 0.725665 0.257341 0.772909 0.260296 0.854276 0.269150 0.904145 0.291793 0.902836 0.302615 0.888399 0.299666 0.838531 0.296711 0.788662 0.300647 0.631177 0.325258 0.610183 0.327226 0.578684 0.335099 0.548501 0.341003 0.526192 0.344940 0.459262 0.339035 0.370022 0.318366 0.297844 0.266201 0.262412 0.277029 0.208611 0.256360 0.170548 0.211080 0.169240 0.199271 0.205987 0.198284 0.232230 diff --git a/datasets/pinganmajia/train/labels/订单1814223_4_7178407.txt b/datasets/pinganmajia/train/labels/订单1814223_4_7178407.txt new file mode 100644 index 0000000..e9c6543 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814223_4_7178407.txt @@ -0,0 +1 @@ +4 0.176855 0.339904 0.127863 0.375337 0.088205 0.480322 0.083538 0.503942 0.104530 0.513130 0.111530 0.484260 0.139530 0.450139 0.148863 0.492135 0.158197 0.574812 0.181521 0.640428 0.188521 0.661423 0.155863 0.694236 0.218855 0.681111 0.221188 0.696856 0.253846 0.694236 0.284179 0.650928 0.302846 0.552500 0.300513 0.505255 0.330838 0.494760 0.330838 0.521005 0.368171 0.530192 0.365838 0.490822 0.361171 0.395019 0.335504 0.362212 0.295846 0.345154 0.265513 0.330716 0.251513 0.290034 0.193188 0.286096 0.167530 0.303159 0.176855 0.324154 diff --git a/datasets/pinganmajia/train/labels/订单1814226_4_7178531.txt b/datasets/pinganmajia/train/labels/订单1814226_4_7178531.txt new file mode 100644 index 0000000..1598bef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814226_4_7178531.txt @@ -0,0 +1 @@ +4 0.684561 0.270375 0.654811 0.304496 0.593572 0.339929 0.555072 0.400296 0.548078 0.460662 0.563822 0.518404 0.567322 0.538092 0.584822 0.552525 0.590072 0.649638 0.590072 0.731004 0.590072 0.761188 0.562072 0.786121 0.590072 0.797933 0.621567 0.779563 0.642561 0.758563 0.642561 0.698196 0.646061 0.666700 0.679311 0.591896 0.682811 0.668013 0.647811 0.744129 0.660061 0.780871 0.674061 0.807121 0.709056 0.803183 0.703806 0.775625 0.714306 0.748062 0.731800 0.711321 0.738800 0.664075 0.773794 0.577462 0.803544 0.572213 0.819289 0.551212 0.866533 0.451475 0.852539 0.364862 0.815794 0.321554 0.803544 0.290058 0.786044 0.278250 0.794794 0.208696 0.745800 0.199508 0.702056 0.223129 0.695056 0.249375 0.684556 0.265125 diff --git a/datasets/pinganmajia/train/labels/订单1814227_4_7178501.txt b/datasets/pinganmajia/train/labels/订单1814227_4_7178501.txt new file mode 100644 index 0000000..81095ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814227_4_7178501.txt @@ -0,0 +1 @@ +4 0.005644 0.507908 0.075633 0.518404 0.075633 0.490846 0.040639 0.486908 0.031889 0.463288 0.005644 0.426542 0.026639 0.405546 0.021389 0.346492 0.002144 0.282183 0.030139 0.208696 0.100133 0.182446 0.213867 0.178512 0.346850 0.217879 0.366100 0.290058 0.376594 0.381921 0.401094 0.391108 0.402844 0.423917 0.387094 0.471162 0.371350 0.513158 0.455339 0.560400 0.514828 0.586646 0.574322 0.601083 0.572572 0.698196 0.583072 0.850425 0.630317 0.998721 0.017900 1.000000 0.002144 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814230_4_7178437.txt b/datasets/pinganmajia/train/labels/订单1814230_4_7178437.txt new file mode 100644 index 0000000..cffe1b3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814230_4_7178437.txt @@ -0,0 +1 @@ +4 1.000000 0.551337 0.978530 0.534158 0.983773 0.501345 0.997778 0.461979 1.000000 0.432752 1.000000 0.416050 0.983773 0.416050 0.989028 0.308437 0.913785 0.245443 0.829792 0.227066 0.668819 0.275625 0.614572 0.353056 0.590069 0.446233 0.612824 0.552526 0.513079 0.603707 0.549826 0.661450 0.537581 0.824184 0.549826 0.994783 1.000000 0.998698 diff --git a/datasets/pinganmajia/train/labels/订单1814231_4_7178521.txt b/datasets/pinganmajia/train/labels/订单1814231_4_7178521.txt new file mode 100644 index 0000000..931c5d0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814231_4_7178521.txt @@ -0,0 +1 @@ +4 0.013409 0.564268 0.072808 0.540646 0.083279 0.510463 0.074545 0.496037 0.079789 0.472415 0.069318 0.434354 0.076299 0.408110 0.121721 0.308366 0.217808 0.278183 0.352321 0.313622 0.394237 0.377915 0.387256 0.447476 0.362792 0.562963 0.465860 0.636451 0.511282 0.719122 0.540990 0.837244 0.633117 1.000000 0.004692 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814235_4_7178552.txt b/datasets/pinganmajia/train/labels/订单1814235_4_7178552.txt new file mode 100644 index 0000000..6ea3c9c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814235_4_7178552.txt @@ -0,0 +1 @@ +4 1.000000 0.274106 0.891042 0.219193 0.756308 0.221823 0.654815 0.311059 0.640822 0.408168 0.646065 0.518411 0.710810 0.582717 0.595324 0.682448 0.537581 0.773003 0.558576 0.804497 0.466470 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814236_4_7178510.txt b/datasets/pinganmajia/train/labels/订单1814236_4_7178510.txt new file mode 100644 index 0000000..5e093e7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814236_4_7178510.txt @@ -0,0 +1 @@ +4 0.005735 0.111520 0.154477 0.099706 0.224461 0.150895 0.268203 0.209951 0.280458 0.295245 0.254199 0.375306 0.210458 0.439608 0.192958 0.519657 0.247206 0.665331 0.259461 0.834620 0.266454 0.921238 0.271618 1.000000 0.000000 1.000000 0.000000 0.527745 diff --git a/datasets/pinganmajia/train/labels/订单1814239_4_7178615.txt b/datasets/pinganmajia/train/labels/订单1814239_4_7178615.txt new file mode 100644 index 0000000..7234454 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814239_4_7178615.txt @@ -0,0 +1 @@ +4 0.005648 0.133898 0.087882 0.090590 0.220868 0.094523 0.297859 0.135208 0.350359 0.200825 0.357350 0.291372 0.345104 0.364861 0.311863 0.427856 0.327604 0.448854 0.380104 0.526285 0.381852 0.628646 0.385347 0.770373 0.381852 0.826806 0.352338 1.000000 0.000000 1.000000 0.000000 0.387925 0.037141 0.363550 0.017894 0.347804 -0.000000 0.329505 0.000000 0.290599 diff --git a/datasets/pinganmajia/train/labels/订单1814240_4_7178668.txt b/datasets/pinganmajia/train/labels/订单1814240_4_7178668.txt new file mode 100644 index 0000000..2df078e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814240_4_7178668.txt @@ -0,0 +1 @@ +4 0.005423 0.405519 0.056601 0.364840 0.053649 0.300538 0.049712 0.211295 0.052663 0.123372 0.080226 0.019692 0.367625 0.026256 0.380423 0.160115 0.382389 0.215231 0.385341 0.255917 0.397154 0.363526 0.465067 0.447519 0.493611 0.553814 0.520183 0.640429 0.535933 0.791346 0.526274 1.000000 0.528596 1.000000 0.536918 0.986885 0.001486 0.998699 diff --git a/datasets/pinganmajia/train/labels/订单1814241_4_7178761.txt b/datasets/pinganmajia/train/labels/订单1814241_4_7178761.txt new file mode 100644 index 0000000..029218c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814241_4_7178761.txt @@ -0,0 +1 @@ +4 1.000000 0.428032 0.953281 0.392442 0.935564 0.363565 0.921788 0.299259 0.940486 0.258576 0.946398 0.236273 0.970998 0.144410 0.960174 0.023669 0.667847 0.024977 0.658993 0.110289 0.691476 0.245451 0.692457 0.312384 0.640295 0.392442 0.563524 0.438368 0.492656 0.641782 0.439505 0.779572 0.506432 0.925243 0.497734 1.000000 0.997674 1.000000 1.000000 0.901921 diff --git a/datasets/pinganmajia/train/labels/订单1814243_4_7178687.txt b/datasets/pinganmajia/train/labels/订单1814243_4_7178687.txt new file mode 100644 index 0000000..15ca6a7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814243_4_7178687.txt @@ -0,0 +1 @@ +4 0.849931 0.371434 0.868633 0.308439 0.890286 0.207387 0.868633 0.116836 0.818438 0.084032 0.723946 0.102401 0.688517 0.168023 0.664894 0.249386 0.651112 0.334689 0.537924 0.397677 0.509380 0.431801 0.471981 0.542034 0.398162 0.685078 0.338120 0.809753 0.291859 0.955424 0.267278 1.000000 0.274762 1.000000 1.000000 0.996123 1.000000 0.962641 0.994619 0.910798 0.941467 0.866179 0.916859 0.770381 0.915874 0.649647 0.935561 0.599781 0.934576 0.543347 0.930641 0.505290 0.917844 0.472479 0.876504 0.422613 0.852887 0.376681 diff --git a/datasets/pinganmajia/train/labels/订单1814244_4_7178617.txt b/datasets/pinganmajia/train/labels/订单1814244_4_7178617.txt new file mode 100644 index 0000000..3fa2eb0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814244_4_7178617.txt @@ -0,0 +1 @@ +4 0.006995 0.442243 0.103552 0.423873 0.068429 0.392377 0.071366 0.334632 0.062582 0.286078 0.085984 0.203401 0.197172 0.152218 0.334686 0.149596 0.480984 0.175839 0.562910 0.224393 0.586311 0.293952 0.551202 0.347757 0.516093 0.455368 0.559986 0.457990 0.551202 0.472426 0.600943 0.510484 0.621421 0.639093 0.568757 0.728333 0.583388 0.839884 0.592158 0.895000 0.560369 1.000000 0.000000 1.000000 0.000000 0.777813 diff --git a/datasets/pinganmajia/train/labels/订单1814246_4_7178600.txt b/datasets/pinganmajia/train/labels/订单1814246_4_7178600.txt new file mode 100644 index 0000000..af34e67 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814246_4_7178600.txt @@ -0,0 +1 @@ +4 1.000000 0.462006 0.942438 0.465905 0.871574 0.423909 0.905039 0.337294 0.962130 0.136512 0.928665 0.048580 0.909961 0.024959 0.737716 0.022335 0.645201 0.166698 0.611736 0.405535 0.514290 0.467222 0.409961 0.678508 0.403071 0.824177 0.397253 1.000000 0.896281 1.000000 0.934568 0.859609 0.950316 0.893724 0.996574 0.934414 1.000000 0.523457 diff --git a/datasets/pinganmajia/train/labels/订单1814248_4_7178663.txt b/datasets/pinganmajia/train/labels/订单1814248_4_7178663.txt new file mode 100644 index 0000000..dffa37a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814248_4_7178663.txt @@ -0,0 +1 @@ +4 0.999635 0.632539 0.868398 0.540674 0.899896 0.467178 0.835156 0.437002 0.737174 0.402881 0.730169 0.368760 0.637435 0.362197 0.609440 0.211279 0.537695 0.108916 0.406458 0.101045 0.308477 0.128604 0.273477 0.221777 0.280482 0.292646 0.278724 0.366133 0.159740 0.410752 0.000508 0.492119 0.000000 0.566895 0.000000 1.000000 0.668893 1.000000 1.000000 0.998711 1.000000 0.647705 diff --git a/datasets/pinganmajia/train/labels/订单1814251_4_7178727.txt b/datasets/pinganmajia/train/labels/订单1814251_4_7178727.txt new file mode 100644 index 0000000..4f378c3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814251_4_7178727.txt @@ -0,0 +1 @@ +4 0.987369 0.276875 0.815882 0.270319 0.698644 0.364804 0.668905 0.482917 0.658399 0.564277 0.567418 0.615453 0.500931 0.786066 0.433905 1.000000 0.774690 1.000000 1.000000 0.997426 1.000000 0.749804 diff --git a/datasets/pinganmajia/train/labels/订单1814252_4_7178708.txt b/datasets/pinganmajia/train/labels/订单1814252_4_7178708.txt new file mode 100644 index 0000000..a9f1e6c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814252_4_7178708.txt @@ -0,0 +1 @@ +4 0.994271 0.204757 0.903287 0.126024 0.770301 0.031528 0.598819 0.040720 0.495590 0.081398 0.437847 0.191641 0.434340 0.299245 0.450093 0.370113 0.460590 0.422604 0.401100 0.481667 0.336354 0.598464 0.259363 0.725755 0.199873 0.755938 0.180625 0.788750 0.175370 0.826806 0.159630 0.859618 0.317106 0.898984 0.355602 0.994783 1.000000 1.000000 1.000000 0.638516 diff --git a/datasets/pinganmajia/train/labels/订单1814253_4_7178753.txt b/datasets/pinganmajia/train/labels/订单1814253_4_7178753.txt new file mode 100644 index 0000000..c1d3099 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814253_4_7178753.txt @@ -0,0 +1 @@ +4 0.012729 0.402855 0.089722 0.373983 0.061732 0.337243 0.047729 0.291311 0.065229 0.279498 0.100229 0.192892 0.189461 0.156140 0.308448 0.154828 0.367941 0.209951 0.383693 0.312304 0.383693 0.370049 0.360948 0.410735 0.318954 0.451422 0.334690 0.492096 0.415180 0.566900 0.492173 0.742757 0.581422 0.872672 0.611160 0.956667 0.628660 0.985539 0.639167 0.998664 0.005735 0.994718 diff --git a/datasets/pinganmajia/train/labels/订单1814254_4_7178866.txt b/datasets/pinganmajia/train/labels/订单1814254_4_7178866.txt new file mode 100644 index 0000000..30296c6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814254_4_7178866.txt @@ -0,0 +1 @@ +4 0.525443 0.404189 0.488698 0.434375 0.446706 0.527549 0.495703 0.577422 0.514948 0.673223 0.534193 0.758525 0.535951 0.824141 0.537695 0.863506 0.576185 0.866133 0.584935 0.780830 0.590195 0.725713 0.593685 0.679785 0.616432 0.732275 0.649687 0.820205 0.646185 0.883193 0.684674 0.872695 0.675924 0.744082 0.668932 0.682402 0.667174 0.589229 0.696927 0.547236 0.665430 0.439619 0.614687 0.423877 0.598932 0.405498 0.581445 0.335947 0.532448 0.338574 0.525443 0.356943 0.521953 0.383193 diff --git a/datasets/pinganmajia/train/labels/订单1814255_4_7178728.txt b/datasets/pinganmajia/train/labels/订单1814255_4_7178728.txt new file mode 100644 index 0000000..591b52a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814255_4_7178728.txt @@ -0,0 +1 @@ +4 0.712556 0.346492 0.691556 0.370113 0.619817 0.438354 0.584822 0.545967 0.607567 0.577462 0.637317 0.606333 0.637317 0.752000 0.633817 0.813679 0.611067 0.856988 0.630317 0.871425 0.668811 0.845179 0.696806 0.832054 0.709056 0.770375 0.714306 0.724442 0.738800 0.668013 0.756300 0.727067 0.747550 0.786121 0.742300 0.813679 0.754550 0.849112 0.731800 0.898983 0.754550 0.909483 0.787794 0.908171 0.801794 0.858300 0.824539 0.788746 0.838539 0.658825 0.856039 0.615517 0.920778 0.536779 0.922528 0.465913 0.875283 0.368800 0.847289 0.360925 0.838539 0.337304 0.798294 0.337304 0.803544 0.282183 0.751050 0.259875 0.717806 0.278250 0.710806 0.329429 diff --git a/datasets/pinganmajia/train/labels/订单1814256_4_7178751.txt b/datasets/pinganmajia/train/labels/订单1814256_4_7178751.txt new file mode 100644 index 0000000..6ee1089 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814256_4_7178751.txt @@ -0,0 +1 @@ +4 1.000000 0.509203 0.875376 0.510466 0.854379 0.439608 0.877124 0.409424 0.896373 0.350368 0.873627 0.330686 0.789641 0.224387 0.658399 0.230944 0.551667 0.308370 0.548170 0.389743 0.579673 0.459289 0.618170 0.530159 0.548170 0.574779 0.474673 0.682390 0.390686 0.849056 0.327696 0.996042 1.000000 0.998640 diff --git a/datasets/pinganmajia/train/labels/订单1814259_4_7178777.txt b/datasets/pinganmajia/train/labels/订单1814259_4_7178777.txt new file mode 100644 index 0000000..f201bf5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814259_4_7178777.txt @@ -0,0 +1 @@ +4 0.618067 0.191633 0.597067 0.221817 0.548078 0.246750 0.506083 0.368800 0.507828 0.444917 0.528828 0.461975 0.546328 0.429167 0.555072 0.443604 0.556822 0.532842 0.556822 0.640454 0.520078 0.671950 0.551572 0.677200 0.597067 0.664075 0.600567 0.633892 0.604067 0.585333 0.621567 0.514467 0.618067 0.573525 0.607567 0.643079 0.611067 0.687696 0.646061 0.694258 0.653061 0.639142 0.672311 0.553837 0.707306 0.468537 0.752800 0.421292 0.803544 0.329429 0.775544 0.236254 0.731800 0.204758 0.717806 0.160137 0.684556 0.114204 0.637317 0.127329 0.618067 0.175888 diff --git a/datasets/pinganmajia/train/labels/订单1814260_4_7178804.txt b/datasets/pinganmajia/train/labels/订单1814260_4_7178804.txt new file mode 100644 index 0000000..c33927d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814260_4_7178804.txt @@ -0,0 +1 @@ +4 0.712556 0.385858 0.672311 0.417354 0.633817 0.469850 0.609317 0.497408 0.640811 0.518404 0.637317 0.591896 0.640811 0.647012 0.660061 0.767750 0.672311 0.837304 0.644311 0.863550 0.668811 0.880608 0.702056 0.870112 0.693306 0.904233 0.740550 0.905546 0.765050 0.859613 0.773794 0.799246 0.805294 0.622079 0.840289 0.607646 0.854289 0.577462 0.899783 0.538092 0.857789 0.435729 0.826289 0.396358 0.796544 0.370113 0.800044 0.334679 0.798294 0.299246 0.751050 0.305808 0.716056 0.335992 0.716056 0.371425 diff --git a/datasets/pinganmajia/train/labels/订单1814261_4_7178925.txt b/datasets/pinganmajia/train/labels/订单1814261_4_7178925.txt new file mode 100644 index 0000000..d26be47 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814261_4_7178925.txt @@ -0,0 +1 @@ +4 0.004029 0.364833 0.023268 0.342520 0.052848 0.242785 0.115840 0.212598 0.206995 0.202096 0.306732 0.254596 0.332979 0.330709 0.338228 0.413386 0.331063 0.501309 0.399304 0.549872 0.467546 0.620738 0.495709 0.750659 0.569199 0.842520 0.665446 0.997372 0.223333 1.000000 0.002257 1.000000 0.000000 0.838612 0.000000 0.483031 0.033766 0.447510 0.010853 0.429134 diff --git a/datasets/pinganmajia/train/labels/订单1814262_4_7178815.txt b/datasets/pinganmajia/train/labels/订单1814262_4_7178815.txt new file mode 100644 index 0000000..22f777c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814262_4_7178815.txt @@ -0,0 +1 @@ +4 -0.000000 0.423785 0.063524 0.417373 0.087144 0.417373 0.167847 0.359630 0.150130 0.284826 0.138325 0.186400 0.146198 0.177211 0.158993 0.068287 0.184583 0.021042 0.354861 0.017106 0.382422 0.076169 0.396198 0.215266 0.388325 0.288762 0.374540 0.345197 0.341076 0.410810 0.342066 0.477743 0.422769 0.545984 0.454271 0.641782 0.471988 0.795324 0.500530 0.895058 0.504462 0.998738 0.263602 1.000000 0.004453 1.000000 0.000000 0.564757 diff --git a/datasets/pinganmajia/train/labels/订单1814263_4_7178814.txt b/datasets/pinganmajia/train/labels/订单1814263_4_7178814.txt new file mode 100644 index 0000000..2c97501 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814263_4_7178814.txt @@ -0,0 +1 @@ +4 0.995577 0.471141 0.908966 0.442269 0.835144 0.409462 0.840067 0.353026 0.842034 0.267724 0.818413 0.177173 0.742625 0.105000 0.666837 0.131244 0.628452 0.245417 0.638293 0.314968 0.624514 0.347782 0.640264 0.400276 0.672745 0.458013 0.619596 0.494763 0.560538 0.542006 0.561524 0.586622 0.511327 0.811032 0.521168 0.992135 1.000000 0.998692 1.000000 0.945109 diff --git a/datasets/pinganmajia/train/labels/订单1814264_4_7178844.txt b/datasets/pinganmajia/train/labels/订单1814264_4_7178844.txt new file mode 100644 index 0000000..76bea00 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814264_4_7178844.txt @@ -0,0 +1 @@ +4 0.974221 0.396293 0.810016 0.362171 0.719172 0.413354 0.712192 0.506524 0.720925 0.599707 0.637062 0.664012 0.612614 0.716500 0.525260 0.943537 0.511282 0.999963 0.517240 1.000000 0.996899 1.000000 0.991688 0.602329 0.960244 0.597085 0.995195 0.581329 1.000000 0.545793 1.000000 0.445110 0.996932 0.413354 0.986461 0.401537 diff --git a/datasets/pinganmajia/train/labels/订单1814265_4_7178824.txt b/datasets/pinganmajia/train/labels/订单1814265_4_7178824.txt new file mode 100644 index 0000000..5823101 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814265_4_7178824.txt @@ -0,0 +1 @@ +4 0.997859 0.255882 0.905131 0.169265 0.800147 0.131201 0.642663 0.175821 0.583170 0.246691 0.600670 0.358235 0.621667 0.457978 0.665408 0.522279 0.549918 0.653517 0.530670 0.713885 0.432680 0.851679 0.474673 0.912047 0.516667 0.967169 0.556912 0.981605 0.548268 1.000000 1.000000 1.000000 1.000000 0.522083 0.999608 0.499975 0.978611 0.485539 0.990866 0.417292 0.997859 0.404167 diff --git a/datasets/pinganmajia/train/labels/订单1814266_4_7178934.txt b/datasets/pinganmajia/train/labels/订单1814266_4_7178934.txt new file mode 100644 index 0000000..712172f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814266_4_7178934.txt @@ -0,0 +1 @@ +4 0.013887 0.425225 0.043665 0.423912 0.040170 0.398980 0.036662 0.363549 0.022644 0.329431 0.043665 0.321549 0.066440 0.211314 0.138285 0.183755 0.224136 0.174569 0.334516 0.215255 0.352029 0.320245 0.346780 0.364863 0.338010 0.463284 0.273194 0.532843 0.360798 0.650951 0.397592 0.766431 0.453652 0.856990 0.496662 1.000000 0.000000 1.000000 0.000000 0.842118 diff --git a/datasets/pinganmajia/train/labels/订单1814267_4_7178911.txt b/datasets/pinganmajia/train/labels/订单1814267_4_7178911.txt new file mode 100644 index 0000000..e4452a6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814267_4_7178911.txt @@ -0,0 +1 @@ +4 0.003900 0.257257 0.119387 0.232318 0.248866 0.253316 0.304861 0.301875 0.329352 0.398984 0.327604 0.448854 0.317106 0.492161 0.299606 0.568281 0.324109 0.637830 0.318854 0.673264 0.411597 0.767752 0.499074 1.000000 0.492176 1.000000 0.000000 0.997439 0.000000 0.586970 diff --git a/datasets/pinganmajia/train/labels/订单1814268_4_7178905.txt b/datasets/pinganmajia/train/labels/订单1814268_4_7178905.txt new file mode 100644 index 0000000..dd2354b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814268_4_7178905.txt @@ -0,0 +1 @@ +4 0.011455 0.561696 0.055767 0.540696 0.044103 0.509201 0.034774 0.482956 0.067422 0.468520 0.076751 0.404216 0.158371 0.358284 0.305287 0.354348 0.400906 0.391093 0.452204 0.454083 0.445209 0.528887 0.435880 0.586627 0.428885 0.615500 0.482526 0.677181 0.498850 0.813662 0.552483 0.874029 0.564146 1.000000 0.561934 1.000000 0.006794 0.996078 diff --git a/datasets/pinganmajia/train/labels/订单1814270_4_7178926.txt b/datasets/pinganmajia/train/labels/订单1814270_4_7178926.txt new file mode 100644 index 0000000..b99378f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814270_4_7178926.txt @@ -0,0 +1 @@ +4 0.990744 0.133875 0.852513 0.098442 0.745782 0.122067 0.660038 0.186365 0.646038 0.295288 0.677538 0.384529 0.716026 0.427837 0.679282 0.514452 0.576051 0.643058 0.530551 0.761173 0.497846 1.000000 1.000000 1.000000 1.000000 0.416442 0.962756 0.389779 0.997744 0.360904 diff --git a/datasets/pinganmajia/train/labels/订单1814271_4_7178950.txt b/datasets/pinganmajia/train/labels/订单1814271_4_7178950.txt new file mode 100644 index 0000000..a9408aa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814271_4_7178950.txt @@ -0,0 +1 @@ +4 0.000000 0.518769 0.052859 0.482952 0.073859 0.429154 0.068615 0.392404 0.077359 0.362221 0.103603 0.305788 0.177103 0.232298 0.269833 0.230990 0.362577 0.263798 0.415064 0.321538 0.420321 0.397654 0.404564 0.472452 0.404564 0.488202 0.453564 0.540702 0.535808 0.577442 0.504308 0.620750 0.486808 0.786106 0.492064 0.942269 0.500808 0.993452 0.145436 1.000000 0.002103 1.000000 0.000000 0.710087 diff --git a/datasets/pinganmajia/train/labels/订单1814274_4_7178944.txt b/datasets/pinganmajia/train/labels/订单1814274_4_7178944.txt new file mode 100644 index 0000000..cbf37a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814274_4_7178944.txt @@ -0,0 +1 @@ +4 0.002266 0.524922 0.035508 0.526240 0.014505 0.455371 0.028516 0.404189 0.077500 0.370068 0.166745 0.353008 0.290977 0.383193 0.320716 0.442246 0.308477 0.502617 0.299727 0.557734 0.324219 0.562979 0.301471 0.641719 0.387214 0.800518 0.451953 0.898945 0.481536 1.000000 0.004687 1.000000 0.004010 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1814275_4_7178959.txt b/datasets/pinganmajia/train/labels/订单1814275_4_7178959.txt new file mode 100644 index 0000000..a4caeec --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814275_4_7178959.txt @@ -0,0 +1 @@ +4 0.010980 0.341176 0.044232 0.326740 0.121225 0.307059 0.133480 0.263750 0.126471 0.212574 0.138725 0.190257 0.187712 0.103652 0.252451 0.044596 0.290948 0.019657 0.478186 0.020968 0.579673 0.132525 0.605915 0.174510 0.705654 0.278186 0.591912 0.304436 0.548170 0.364804 0.474673 0.451422 0.504428 0.540650 0.551667 0.707316 0.548170 0.841176 0.607663 0.940919 0.549444 1.000000 0.277386 1.000000 0.000000 0.998689 0.000000 0.799914 diff --git a/datasets/pinganmajia/train/labels/订单1814278_4_7179018.txt b/datasets/pinganmajia/train/labels/订单1814278_4_7179018.txt new file mode 100644 index 0000000..60d3f99 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814278_4_7179018.txt @@ -0,0 +1 @@ +4 0.012757 0.463241 0.044249 0.429120 0.033755 0.376628 0.009259 0.328071 0.012757 0.203403 0.033755 0.152222 0.192984 0.115471 0.311965 0.127284 0.392459 0.181088 0.430957 0.233580 0.404712 0.269020 0.399455 0.346443 0.348714 0.446181 0.453704 0.484236 0.462449 0.505239 0.567438 0.562978 0.572685 0.700772 0.583189 0.841196 0.591934 0.981613 0.622572 1.000000 0.219455 1.000000 0.012757 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1814279_4_7178980.txt b/datasets/pinganmajia/train/labels/订单1814279_4_7178980.txt new file mode 100644 index 0000000..0e299de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814279_4_7178980.txt @@ -0,0 +1 @@ +4 0.996000 0.199490 0.982000 0.154875 0.899756 0.053817 0.723026 0.052510 0.602295 0.122067 0.574295 0.293981 0.630295 0.418654 0.574295 0.473769 0.621538 0.506577 0.551551 0.580067 0.520051 0.687683 0.488564 0.754606 0.451808 0.838596 0.416821 0.896337 0.387449 1.000000 0.996000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814280_4_7178969.txt b/datasets/pinganmajia/train/labels/订单1814280_4_7178969.txt new file mode 100644 index 0000000..d04c11f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814280_4_7178969.txt @@ -0,0 +1 @@ +4 0.997571 0.615528 0.904067 0.556472 0.817454 0.492167 0.789896 0.459361 0.794817 0.426550 0.800721 0.387183 0.782021 0.375372 0.776117 0.265133 0.742650 0.220517 0.660958 0.206078 0.595996 0.273011 0.589108 0.419989 0.600917 0.503978 0.544817 0.555161 0.511350 0.717889 0.507412 0.860933 0.508400 1.000000 1.000000 1.000000 1.000000 0.852683 diff --git a/datasets/pinganmajia/train/labels/订单1814282_4_7179091.txt b/datasets/pinganmajia/train/labels/订单1814282_4_7179091.txt new file mode 100644 index 0000000..99016a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814282_4_7179091.txt @@ -0,0 +1 @@ +4 0.012750 0.192900 0.110742 0.164025 0.171983 0.145650 0.311967 0.181088 0.348708 0.240144 0.376708 0.362187 0.409950 0.443556 0.479942 0.544606 0.604175 0.625969 0.660167 0.704706 0.896392 0.910744 0.976883 0.971112 0.983883 0.998669 0.002250 0.999981 diff --git a/datasets/pinganmajia/train/labels/订单1814283_4_7179147.txt b/datasets/pinganmajia/train/labels/订单1814283_4_7179147.txt new file mode 100644 index 0000000..7aff568 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814283_4_7179147.txt @@ -0,0 +1 @@ +4 0.999528 0.413415 0.982794 0.402917 0.971967 0.349109 0.986734 0.334673 0.989688 0.297925 1.000000 0.263015 1.000000 0.250760 0.990668 0.236250 0.981814 0.098448 0.955239 0.047271 0.913897 0.022337 0.775116 0.026275 0.731814 0.123382 0.736734 0.223121 0.740668 0.346487 0.765276 0.401601 0.725907 0.477712 0.676691 0.502647 0.623542 0.595825 0.590080 0.749371 0.573346 0.888480 0.579252 0.992149 0.998131 1.000000 0.999528 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814285_4_7179036.txt b/datasets/pinganmajia/train/labels/订单1814285_4_7179036.txt new file mode 100644 index 0000000..4a58718 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814285_4_7179036.txt @@ -0,0 +1 @@ +4 -0.000000 0.424778 0.047771 0.409494 0.094029 0.380622 0.090092 0.336000 0.087137 0.280883 0.078279 0.227078 0.092058 0.178522 0.119621 0.136528 0.152100 0.049911 0.187533 0.021039 0.366667 0.019728 0.394225 0.084033 0.404067 0.200833 0.337137 0.437050 0.344029 0.459361 0.423754 0.492167 0.442454 0.556472 0.467058 0.696894 0.504463 0.849122 0.518242 0.930489 0.512338 0.981672 0.473671 1.000000 0.150538 1.000000 0.000000 0.998733 diff --git a/datasets/pinganmajia/train/labels/订单1814286_4_7179123.txt b/datasets/pinganmajia/train/labels/订单1814286_4_7179123.txt new file mode 100644 index 0000000..68c4af9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814286_4_7179123.txt @@ -0,0 +1 @@ +4 0.012729 0.209951 0.072222 0.164020 0.168464 0.170576 0.275212 0.242757 0.320703 0.318873 0.327696 0.397610 0.376699 0.447475 0.434428 0.493407 0.644412 0.620711 0.709150 0.723076 0.721405 0.792623 0.672402 0.817561 0.752892 0.998664 0.000490 0.999975 0.000000 0.951434 0.000000 0.477659 0.061732 0.460600 0.049477 0.413358 0.009232 0.397610 0.000490 0.375306 diff --git a/datasets/pinganmajia/train/labels/订单1814287_4_7179067.txt b/datasets/pinganmajia/train/labels/订单1814287_4_7179067.txt new file mode 100644 index 0000000..be41d6d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814287_4_7179067.txt @@ -0,0 +1 @@ +4 0.999528 0.328113 0.975907 0.309739 0.974920 0.288742 0.985748 0.261185 0.996575 0.207377 1.000000 0.042966 1.000000 0.018399 0.738701 0.019714 0.705239 0.135196 0.712126 0.251993 0.739688 0.360915 0.707206 0.434412 0.645196 0.488219 0.619608 0.586642 0.583186 0.719183 0.562518 0.829420 0.555631 0.985588 0.570392 0.998717 0.781636 1.000000 1.000000 1.000000 1.000000 0.489763 diff --git a/datasets/pinganmajia/train/labels/订单1814289_4_7179197.txt b/datasets/pinganmajia/train/labels/订单1814289_4_7179197.txt new file mode 100644 index 0000000..4207498 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814289_4_7179197.txt @@ -0,0 +1 @@ +4 0.000490 0.415980 0.052990 0.392365 0.045980 0.338554 0.009232 0.321495 0.007484 0.284755 0.009232 0.251936 0.031977 0.228321 0.061732 0.143015 0.131716 0.101017 0.268203 0.087904 0.357451 0.154828 0.383693 0.219130 0.366193 0.288689 0.341699 0.405490 0.339951 0.418603 0.402941 0.454044 0.446683 0.595772 0.493922 0.862181 0.530670 0.998664 0.005735 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814290_4_7179146.txt b/datasets/pinganmajia/train/labels/订单1814290_4_7179146.txt new file mode 100644 index 0000000..7bc1ba1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814290_4_7179146.txt @@ -0,0 +1 @@ +4 0.007389 0.565628 0.082192 0.511821 0.141250 0.461955 0.181601 0.401583 0.170774 0.368776 0.156995 0.329404 0.161918 0.304474 0.175697 0.312346 0.169793 0.233609 0.203255 0.139115 0.267231 0.114186 0.337115 0.156179 0.374514 0.225731 0.382389 0.301846 0.381404 0.366154 0.379437 0.434391 0.408966 0.482949 0.441447 0.555128 0.478846 0.687673 0.515264 0.935705 0.520721 1.000000 0.000000 1.000000 0.000000 0.973288 diff --git a/datasets/pinganmajia/train/labels/订单1814293_4_7179156.txt b/datasets/pinganmajia/train/labels/订单1814293_4_7179156.txt new file mode 100644 index 0000000..56723c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814293_4_7179156.txt @@ -0,0 +1 @@ +4 1.000000 0.481471 0.952108 0.436993 0.893058 0.380566 0.910772 0.278203 0.927010 0.188965 0.930705 0.019673 0.672335 0.024924 0.665692 0.217843 0.662739 0.293954 0.681936 0.388442 0.608854 0.405501 0.559393 0.509172 0.518058 0.681089 0.481146 0.821514 0.452359 0.994739 0.999357 0.998682 1.000000 0.848388 diff --git a/datasets/pinganmajia/train/labels/订单1814296_4_7179212.txt b/datasets/pinganmajia/train/labels/订单1814296_4_7179212.txt new file mode 100644 index 0000000..5add90a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814296_4_7179212.txt @@ -0,0 +1 @@ +4 0.983773 0.047283 0.779051 0.060399 0.665313 0.140460 0.637315 0.326806 0.649572 0.414731 0.497338 0.493472 0.556829 0.556467 0.500833 0.689010 0.443090 0.958038 0.436088 0.996102 1.000000 0.999991 1.000000 0.726858 diff --git a/datasets/pinganmajia/train/labels/订单1814297_4_7179331.txt b/datasets/pinganmajia/train/labels/订单1814297_4_7179331.txt new file mode 100644 index 0000000..a0bd997 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814297_4_7179331.txt @@ -0,0 +1 @@ +4 0.684565 0.321547 0.626495 0.267740 0.630435 0.228373 0.616655 0.174567 0.592045 0.158820 0.557600 0.194253 0.557600 0.250680 0.573345 0.301860 0.542835 0.334673 0.510355 0.409473 0.487715 0.553833 0.491655 0.606327 0.500510 0.681127 0.505435 0.641760 0.509370 0.653567 0.526100 0.603700 0.528070 0.702127 0.521180 0.817613 0.524135 0.930473 0.528070 0.965907 0.553660 0.968527 0.570395 0.918660 0.592045 0.940973 0.606810 0.968527 0.634370 0.950160 0.658975 0.712627 0.672755 0.677193 0.714095 0.597140 0.717045 0.506587 0.717045 0.402913 0.703265 0.351733 0.687520 0.325487 diff --git a/datasets/pinganmajia/train/labels/订单1814298_4_7179205.txt b/datasets/pinganmajia/train/labels/订单1814298_4_7179205.txt new file mode 100644 index 0000000..f911c6d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814298_4_7179205.txt @@ -0,0 +1 @@ +4 1.000000 0.598382 0.908633 0.552529 0.840664 0.522343 0.837174 0.494784 0.826719 0.447539 0.798828 0.383235 0.723893 0.334676 0.591419 0.349108 0.553073 0.430480 0.544362 0.518402 0.580964 0.591892 0.622799 0.637824 0.549596 0.706069 0.500794 0.763814 0.438047 0.765127 0.422357 0.800559 0.432812 0.837304 0.493815 0.856990 0.490365 1.000000 0.995859 1.000000 1.000000 0.759676 diff --git a/datasets/pinganmajia/train/labels/订单1814299_4_7179295.txt b/datasets/pinganmajia/train/labels/订单1814299_4_7179295.txt new file mode 100644 index 0000000..b07e68e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814299_4_7179295.txt @@ -0,0 +1 @@ +4 0.996589 0.273009 0.897179 0.267766 0.901120 0.195590 0.908012 0.139155 0.889306 0.074850 0.858793 0.021042 0.619627 0.026296 0.611745 0.097164 0.633403 0.154907 0.657023 0.252014 0.687535 0.342569 0.632422 0.417373 0.668837 0.464618 0.604861 0.534167 0.584193 0.619468 0.565486 0.733646 0.539896 0.885880 0.588125 0.958056 0.604262 1.000000 0.997569 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814300_4_7179235.txt b/datasets/pinganmajia/train/labels/订单1814300_4_7179235.txt new file mode 100644 index 0000000..d27aa8b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814300_4_7179235.txt @@ -0,0 +1 @@ +4 0.989028 0.401615 0.891042 0.392422 0.871794 0.326806 0.892789 0.294002 0.899780 0.249384 0.887535 0.227066 0.875289 0.116832 0.786053 0.068281 0.632072 0.072214 0.497338 0.156207 0.502581 0.231007 0.539329 0.313681 0.546331 0.377986 0.590069 0.430486 0.625069 0.475104 0.565579 0.549905 0.509583 0.624705 0.392350 0.769062 0.392350 0.876675 0.453588 0.938359 0.451979 1.000000 0.825336 1.000000 1.000000 0.997526 1.000000 0.741363 diff --git a/datasets/pinganmajia/train/labels/订单1814301_4_7179264.txt b/datasets/pinganmajia/train/labels/订单1814301_4_7179264.txt new file mode 100644 index 0000000..96fc0c3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814301_4_7179264.txt @@ -0,0 +1 @@ +4 1.000000 0.412414 0.877124 0.375306 0.847386 0.343799 0.787892 0.331998 0.808889 0.312304 0.808889 0.286066 0.800147 0.246691 0.772141 0.245380 0.744150 0.165331 0.698644 0.133836 0.546422 0.123333 0.471176 0.191569 0.460686 0.283444 0.493922 0.358235 0.546422 0.423860 0.553415 0.444853 0.518431 0.482917 0.548170 0.510466 0.553415 0.612831 0.569167 0.706005 0.556912 0.801814 0.590163 0.867426 0.612908 0.935674 0.626634 1.000000 0.996144 1.000000 1.000000 0.675466 diff --git a/datasets/pinganmajia/train/labels/订单1814302_4_7179240.txt b/datasets/pinganmajia/train/labels/订单1814302_4_7179240.txt new file mode 100644 index 0000000..a9bec8c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814302_4_7179240.txt @@ -0,0 +1 @@ +4 0.693424 0.220459 0.604193 0.251963 0.569193 0.368760 0.569193 0.455371 0.576185 0.498682 0.605938 0.507861 0.619935 0.640410 0.626940 0.692900 0.604193 0.762461 0.632188 0.771641 0.653177 0.754580 0.682930 0.732275 0.696927 0.717842 0.705677 0.765078 0.709180 0.787393 0.744167 0.786084 0.749414 0.770332 0.744167 0.712588 0.770417 0.641719 0.789661 0.607598 0.807161 0.532803 0.840404 0.526240 0.845651 0.498682 0.882409 0.444873 0.901654 0.312324 0.894648 0.251963 0.779167 0.215215 0.793164 0.188965 0.794909 0.157471 0.777422 0.116787 0.726667 0.125977 0.688177 0.152227 0.675924 0.177158 0.672435 0.204717 diff --git a/datasets/pinganmajia/train/labels/订单1814303_4_7179277.txt b/datasets/pinganmajia/train/labels/订单1814303_4_7179277.txt new file mode 100644 index 0000000..25c0189 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814303_4_7179277.txt @@ -0,0 +1 @@ +4 0.178984 0.255898 0.112500 0.265078 0.079258 0.342510 0.061758 0.446182 0.068750 0.489492 0.095000 0.494746 0.122995 0.637783 0.117747 0.709961 0.072253 0.727021 0.070508 0.751963 0.096745 0.750645 0.152747 0.723086 0.194740 0.653535 0.208737 0.686338 0.201732 0.723086 0.192995 0.759834 0.184245 0.784766 0.236732 0.769023 0.250729 0.734902 0.266484 0.698154 0.271732 0.599727 0.294479 0.486865 0.345221 0.461934 0.352214 0.406816 0.334727 0.314951 0.299727 0.284766 0.262982 0.257207 0.278724 0.212588 0.273477 0.169277 0.219232 0.154844 0.175495 0.185029 0.177240 0.230957 diff --git a/datasets/pinganmajia/train/labels/订单1814304_4_7179376.txt b/datasets/pinganmajia/train/labels/订单1814304_4_7179376.txt new file mode 100644 index 0000000..1ec56c4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814304_4_7179376.txt @@ -0,0 +1 @@ +4 1.000000 0.447279 0.953725 0.421244 0.986383 0.385815 1.000000 0.354222 1.000000 0.340502 0.965392 0.326759 0.942059 0.241458 0.867397 0.192898 0.715752 0.175839 0.550109 0.225711 0.480120 0.293952 0.503442 0.380564 0.510447 0.455368 0.351797 0.577414 0.246808 0.667966 0.209488 0.758517 0.249150 0.862194 0.326133 0.914687 0.333137 0.996048 1.000000 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1814305_4_7179272.txt b/datasets/pinganmajia/train/labels/订单1814305_4_7179272.txt new file mode 100644 index 0000000..10e9bff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814305_4_7179272.txt @@ -0,0 +1 @@ +4 0.983913 0.186293 0.839885 0.182356 0.755567 0.226976 0.639644 0.304404 0.623837 0.338520 0.639644 0.385769 0.639644 0.493376 0.655452 0.577371 0.490337 0.654792 0.397240 0.770280 0.311173 0.926451 0.311173 1.000000 0.636221 1.000000 0.992702 0.998628 diff --git a/datasets/pinganmajia/train/labels/订单1814306_4_7179449.txt b/datasets/pinganmajia/train/labels/订单1814306_4_7179449.txt new file mode 100644 index 0000000..0c58bc9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814306_4_7179449.txt @@ -0,0 +1 @@ +4 0.998534 0.379276 0.882389 0.332032 0.880423 0.320218 0.889279 0.284788 0.887312 0.225731 0.874514 0.215231 0.859750 0.108936 0.811524 0.074814 0.722942 0.084000 0.665856 0.154865 0.651091 0.233609 0.665856 0.293974 0.647154 0.299224 0.643216 0.342532 0.656995 0.380590 0.668808 0.383212 0.686524 0.431769 0.654043 0.455391 0.635341 0.490827 0.599909 0.557750 0.588096 0.755917 0.591053 0.862218 0.616639 0.902897 0.675697 0.992135 0.995577 0.998699 diff --git a/datasets/pinganmajia/train/labels/订单1814307_4_7179307.txt b/datasets/pinganmajia/train/labels/订单1814307_4_7179307.txt new file mode 100644 index 0000000..e6fcf5f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814307_4_7179307.txt @@ -0,0 +1 @@ +4 0.004890 0.527552 0.060888 0.509187 0.143126 0.429126 0.143126 0.388452 0.132630 0.343832 0.125629 0.317578 0.150127 0.322829 0.164129 0.229654 0.213114 0.173227 0.311107 0.132543 0.451084 0.133858 0.568328 0.202093 0.608570 0.259836 0.638316 0.334645 0.640069 0.400260 0.594567 0.507872 0.668062 0.622042 0.682065 0.679784 0.666309 0.811021 0.645456 1.000000 0.325144 1.000000 0.003149 0.998685 diff --git a/datasets/pinganmajia/train/labels/订单1814309_4_7179335.txt b/datasets/pinganmajia/train/labels/订单1814309_4_7179335.txt new file mode 100644 index 0000000..aca46cc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814309_4_7179335.txt @@ -0,0 +1 @@ +4 1.000000 0.140809 0.754524 0.161403 0.681780 0.228333 0.641033 0.325447 0.629389 0.376630 0.670136 0.450116 0.646861 0.476366 0.681780 0.513113 0.690503 0.553793 0.536277 0.685025 0.478071 0.862194 0.374293 1.000000 0.580679 1.000000 1.000000 0.997371 diff --git a/datasets/pinganmajia/train/labels/订单1814310_4_7179429.txt b/datasets/pinganmajia/train/labels/订单1814310_4_7179429.txt new file mode 100644 index 0000000..a606fb4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814310_4_7179429.txt @@ -0,0 +1 @@ +4 0.016101 0.191603 0.149085 0.137798 0.334564 0.137798 0.465794 0.211289 0.457047 0.317587 0.458795 0.392393 0.443048 0.502630 0.420302 0.555123 0.513040 0.589242 0.497293 0.625988 0.611028 0.765094 0.607530 0.824152 0.576032 0.913391 0.576032 0.979006 0.549689 1.000000 0.366149 1.000000 0.003856 0.997380 diff --git a/datasets/pinganmajia/train/labels/订单1814311_4_7179413.txt b/datasets/pinganmajia/train/labels/订单1814311_4_7179413.txt new file mode 100644 index 0000000..9097355 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814311_4_7179413.txt @@ -0,0 +1 @@ +4 1.000000 0.662361 0.951299 0.624698 0.897163 0.591887 0.878462 0.564330 0.879449 0.521021 0.900116 0.497402 0.912911 0.458031 0.920790 0.423913 0.907010 0.418660 0.894210 0.253309 0.834173 0.198186 0.760355 0.204747 0.692439 0.283489 0.676691 0.380605 0.672757 0.443595 0.673738 0.519714 0.643229 0.560392 0.640276 0.591887 0.579252 0.644379 0.546771 0.725752 0.532990 0.845172 0.513309 1.000000 0.518162 1.000000 0.999528 0.997402 1.000000 0.836838 diff --git a/datasets/pinganmajia/train/labels/订单1814312_4_7179384.txt b/datasets/pinganmajia/train/labels/订单1814312_4_7179384.txt new file mode 100644 index 0000000..01dc79f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814312_4_7179384.txt @@ -0,0 +1 @@ +4 1.000000 0.088828 0.861285 0.068281 0.731806 0.090590 0.640822 0.174575 0.609317 0.275625 0.602326 0.356988 0.619815 0.456727 0.511331 0.553845 0.514838 0.603707 0.499086 0.740191 0.471088 0.997413 0.997778 0.996102 1.000000 0.611406 diff --git a/datasets/pinganmajia/train/labels/订单1814313_4_7179383.txt b/datasets/pinganmajia/train/labels/订单1814313_4_7179383.txt new file mode 100644 index 0000000..a346b95 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814313_4_7179383.txt @@ -0,0 +1 @@ +4 0.009119 0.018388 0.170104 0.021016 0.306581 0.087940 0.374830 0.224425 0.327585 0.283480 0.311837 0.341222 0.294337 0.391094 0.299583 0.437024 0.280341 0.492145 0.350331 0.577443 0.343333 0.692933 0.429072 0.835973 0.490312 0.937024 0.453570 0.990831 0.437822 0.997393 0.429072 0.984268 0.411089 1.000000 0.000000 1.000000 0.000000 0.659759 diff --git a/datasets/pinganmajia/train/labels/订单1814315_4_7179454.txt b/datasets/pinganmajia/train/labels/订单1814315_4_7179454.txt new file mode 100644 index 0000000..9b7b3d4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814315_4_7179454.txt @@ -0,0 +1 @@ +4 1.000000 0.552293 0.897354 0.520963 0.911331 0.476341 0.935795 0.493402 0.913084 0.444854 0.920065 0.418598 0.934042 0.388415 0.916575 0.359549 0.927062 0.314927 0.937532 0.262439 0.899107 0.196817 0.804773 0.145634 0.670260 0.137768 0.537484 0.190256 0.453636 0.261122 0.455390 0.331988 0.483328 0.519659 0.395990 0.559024 0.312143 0.658756 0.296412 0.749317 0.277289 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814316_4_7179441.txt b/datasets/pinganmajia/train/labels/订单1814316_4_7179441.txt new file mode 100644 index 0000000..9038eb0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814316_4_7179441.txt @@ -0,0 +1 @@ +4 0.015268 0.405539 0.055503 0.398980 0.146497 0.345176 0.179739 0.318931 0.230484 0.307118 0.237490 0.287431 0.233987 0.262500 0.232235 0.236255 0.263739 0.215255 0.310980 0.227069 0.324980 0.261186 0.312732 0.304490 0.379216 0.320245 0.412471 0.400294 0.442209 0.494784 0.435216 0.555147 0.401961 0.595833 0.447464 0.754627 0.477203 0.803176 0.442209 0.807118 0.408967 0.786118 0.379216 0.720500 0.323229 0.607647 0.319725 0.719196 0.317974 0.765127 0.330222 0.801873 0.286484 0.824176 0.261987 0.814990 0.270732 0.779559 0.256732 0.708696 0.247987 0.611578 0.200745 0.610265 0.186745 0.515775 0.158745 0.404235 0.101007 0.440980 0.000000 0.455098 -0.000000 0.449049 diff --git a/datasets/pinganmajia/train/labels/订单1814318_4_7179475.txt b/datasets/pinganmajia/train/labels/订单1814318_4_7179475.txt new file mode 100644 index 0000000..09a5417 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814318_4_7179475.txt @@ -0,0 +1 @@ +4 0.005615 0.112875 0.108859 0.081385 0.231346 0.101067 0.306577 0.148308 0.345077 0.202115 0.332833 0.322846 0.317077 0.397654 0.476308 0.497394 0.422064 0.563010 0.434321 0.656183 0.427321 0.727048 0.493808 0.884529 0.520051 0.969827 0.488564 0.975077 0.437821 0.972452 0.434321 0.948837 0.409821 0.914712 0.404564 0.985577 0.000000 0.999904 0.000000 0.682731 diff --git a/datasets/pinganmajia/train/labels/订单1814320_4_7179645.txt b/datasets/pinganmajia/train/labels/订单1814320_4_7179645.txt new file mode 100644 index 0000000..6b150bd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814320_4_7179645.txt @@ -0,0 +1 @@ +4 0.997867 0.448790 0.940120 0.446170 0.896373 0.394990 0.922627 0.347740 0.934867 0.291310 0.927867 0.255880 0.864880 0.131210 0.740653 0.120710 0.597160 0.162700 0.523680 0.229630 0.542920 0.274250 0.581413 0.448790 0.607667 0.484230 0.427440 0.569530 0.441440 0.661390 0.334693 0.793940 0.322453 0.944860 0.334693 0.999970 0.338120 1.000000 1.000000 1.000000 1.000000 0.618560 diff --git a/datasets/pinganmajia/train/labels/订单1814324_4_7179483.txt b/datasets/pinganmajia/train/labels/订单1814324_4_7179483.txt new file mode 100644 index 0000000..e5def71 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814324_4_7179483.txt @@ -0,0 +1 @@ +4 0.009258 0.274268 0.117747 0.242773 0.297982 0.242773 0.366211 0.290020 0.392461 0.350381 0.425703 0.468496 0.404714 0.536738 0.544701 0.702090 0.623437 0.909443 0.648945 1.000000 0.002344 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814327_4_7179530.txt b/datasets/pinganmajia/train/labels/订单1814327_4_7179530.txt new file mode 100644 index 0000000..43846c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814327_4_7179530.txt @@ -0,0 +1 @@ +4 0.996589 0.578785 0.878481 0.526296 0.754462 0.459363 0.772179 0.387187 0.775130 0.290069 0.781042 0.179838 0.736745 0.086667 0.683602 0.036794 0.613715 0.045984 0.503481 0.143090 0.492656 0.292697 0.477891 0.284826 0.480842 0.328137 0.482813 0.392442 0.472969 0.488241 0.402101 0.521042 0.316476 0.591910 0.232812 0.749387 0.210174 0.875370 0.220668 1.000000 0.613021 1.000000 0.995608 0.996111 diff --git a/datasets/pinganmajia/train/labels/订单1814330_4_7179567.txt b/datasets/pinganmajia/train/labels/订单1814330_4_7179567.txt new file mode 100644 index 0000000..eaddd01 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814330_4_7179567.txt @@ -0,0 +1 @@ +4 0.999500 0.220490 0.859513 0.160125 0.703782 0.149625 0.604038 0.238856 0.605795 0.350413 0.623295 0.458019 0.660038 0.521010 0.555051 0.664058 0.514808 0.751981 0.521808 0.914712 0.590051 0.925212 0.649538 0.986894 1.000000 0.995952 1.000000 0.295038 diff --git a/datasets/pinganmajia/train/labels/订单1814333_4_7179603.txt b/datasets/pinganmajia/train/labels/订单1814333_4_7179603.txt new file mode 100644 index 0000000..9e7b813 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814333_4_7179603.txt @@ -0,0 +1 @@ +4 0.012760 0.349072 0.033763 0.335947 0.053008 0.287393 0.021510 0.263770 0.004010 0.228340 0.005768 0.185029 0.030260 0.175840 0.063503 0.200781 0.100247 0.093164 0.164987 0.070859 0.231484 0.039365 0.338216 0.048545 0.406458 0.090537 0.422214 0.158779 0.399466 0.209961 0.383711 0.261143 0.378464 0.300518 0.327721 0.380566 0.369714 0.402881 0.359219 0.437002 0.381966 0.519678 0.439714 0.632539 0.465951 0.732275 0.481706 0.766396 0.451953 0.866133 0.427461 0.922559 0.415417 1.000000 0.312695 1.000000 0.002266 0.996055 0.000000 0.734746 0.000000 0.382041 diff --git a/datasets/pinganmajia/train/labels/订单1814338_4_7179651.txt b/datasets/pinganmajia/train/labels/订单1814338_4_7179651.txt new file mode 100644 index 0000000..93399f4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814338_4_7179651.txt @@ -0,0 +1 @@ +4 0.990799 0.426563 0.939861 0.417375 0.932835 0.395069 0.952156 0.360944 0.946887 0.325514 0.931078 0.305826 0.918792 0.297958 0.899470 0.227090 0.838002 0.194278 0.708030 0.192965 0.627240 0.245465 0.595632 0.301896 0.597388 0.354389 0.592119 0.396382 0.621970 0.464625 0.637779 0.490868 0.595632 0.618167 0.528894 0.788771 0.467435 1.000000 0.489916 1.000000 1.000000 0.998743 1.000000 0.926382 diff --git a/datasets/pinganmajia/train/labels/订单1814341_4_7179656.txt b/datasets/pinganmajia/train/labels/订单1814341_4_7179656.txt new file mode 100644 index 0000000..4100edd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814341_4_7179656.txt @@ -0,0 +1 @@ +4 0.007406 0.409492 0.047656 0.409492 0.066906 0.387188 0.045906 0.363563 0.047656 0.315008 0.054656 0.287445 0.047656 0.210016 0.044156 0.157523 0.126396 0.090594 0.285625 0.087969 0.420354 0.135219 0.474604 0.192961 0.472854 0.279570 0.450104 0.347812 0.443104 0.391125 0.418604 0.460672 0.432604 0.515797 0.511344 0.574852 0.579583 0.732328 0.607583 0.821570 0.590083 0.984297 0.541771 1.000000 0.003917 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814342_4_7179698.txt b/datasets/pinganmajia/train/labels/订单1814342_4_7179698.txt new file mode 100644 index 0000000..b7bd1c1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814342_4_7179698.txt @@ -0,0 +1 @@ +4 0.000000 0.430228 0.099933 0.372744 0.130446 0.321567 0.120604 0.296633 0.112729 0.265133 0.105842 0.225767 0.110762 0.202144 0.131429 0.210017 0.132413 0.145711 0.151117 0.066972 0.183596 0.023667 0.263321 0.042039 0.315483 0.073533 0.345996 0.171961 0.349933 0.266450 0.347967 0.346500 0.340092 0.423928 0.378479 0.447550 0.405054 0.544661 0.431625 0.628650 0.468046 0.754639 0.491667 0.866183 0.497571 0.918678 0.491667 0.934428 0.488713 0.996106 0.127342 1.000000 0.001504 1.000000 0.000000 0.563722 diff --git a/datasets/pinganmajia/train/labels/订单1814346_4_7179757.txt b/datasets/pinganmajia/train/labels/订单1814346_4_7179757.txt new file mode 100644 index 0000000..2c9ef39 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814346_4_7179757.txt @@ -0,0 +1 @@ +4 1.000000 0.401462 0.921771 0.355670 0.895196 0.326797 0.903070 0.278243 0.925711 0.271683 0.927678 0.242810 0.939485 0.203440 0.952286 0.150948 0.964093 0.089265 0.970987 0.022337 0.743621 0.022337 0.722953 0.122075 0.712126 0.216560 0.720000 0.318922 0.744608 0.371413 0.741654 0.417353 0.675711 0.439657 0.644210 0.496087 0.620588 0.629951 0.569412 0.967214 0.577286 0.985588 0.575313 0.998717 0.679975 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814347_4_7179734.txt b/datasets/pinganmajia/train/labels/订单1814347_4_7179734.txt new file mode 100644 index 0000000..bbe6de3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814347_4_7179734.txt @@ -0,0 +1 @@ +4 0.976719 0.127320 0.819236 0.091887 0.612179 0.085324 0.422622 0.164066 0.387630 0.221809 0.408038 0.313672 0.431372 0.360914 0.480946 0.409473 0.548021 0.461965 0.653012 0.501336 0.375964 0.656191 0.405122 0.717871 0.469280 0.822859 0.565521 0.979027 0.565521 1.000000 1.000000 1.000000 1.000000 0.591750 diff --git a/datasets/pinganmajia/train/labels/订单1814349_4_7179738.txt b/datasets/pinganmajia/train/labels/订单1814349_4_7179738.txt new file mode 100644 index 0000000..c6ac1ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814349_4_7179738.txt @@ -0,0 +1 @@ +4 0.990102 0.531440 0.870680 0.423830 0.886433 0.405461 0.878553 0.380526 0.899554 0.299159 0.875928 0.297844 0.887741 0.160051 0.840497 0.069503 0.774883 0.019635 0.639708 0.026192 0.530789 0.136433 0.507164 0.275534 0.500599 0.398896 0.505855 0.443516 0.452047 0.499949 0.382493 0.565563 0.353618 0.662675 0.336564 0.807032 0.365431 0.866089 0.396930 0.933019 0.412675 0.996009 0.996667 0.993385 diff --git a/datasets/pinganmajia/train/labels/订单1814351_4_7179804.txt b/datasets/pinganmajia/train/labels/订单1814351_4_7179804.txt new file mode 100644 index 0000000..d15514b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814351_4_7179804.txt @@ -0,0 +1 @@ +4 0.021353 0.224413 0.150837 0.244099 0.222577 0.295279 0.245324 0.337274 0.219077 0.377957 0.191080 0.435700 0.171833 0.492130 0.114090 0.538062 0.121090 0.566933 0.257574 0.716538 0.357311 0.944885 0.374808 0.994755 0.083856 1.000000 0.010872 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814352_4_7179799.txt b/datasets/pinganmajia/train/labels/订单1814352_4_7179799.txt new file mode 100644 index 0000000..bd20b6d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814352_4_7179799.txt @@ -0,0 +1 @@ +4 0.007513 0.049863 0.173737 0.044609 0.233229 0.064297 0.278724 0.110225 0.262982 0.185029 0.254232 0.251963 0.252487 0.300518 0.224479 0.370068 0.203490 0.392383 0.283971 0.478994 0.327721 0.556426 0.357474 0.652227 0.415208 0.754580 0.430964 0.788701 0.457201 0.832012 0.434453 0.867441 0.395964 0.863506 0.402969 0.976367 0.395964 0.993428 0.007513 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1814354_4_7182078.txt b/datasets/pinganmajia/train/labels/订单1814354_4_7182078.txt new file mode 100644 index 0000000..bc40260 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814354_4_7182078.txt @@ -0,0 +1 @@ +4 1.000000 0.494118 0.882386 0.475037 0.934869 0.388419 0.952369 0.354301 0.968121 0.309681 0.971618 0.286066 0.943627 0.290000 0.969869 0.177132 0.976863 0.108897 0.927876 0.052463 0.856127 0.028848 0.661912 0.023591 0.584918 0.090527 0.560425 0.204694 0.558676 0.296556 0.567418 0.384485 0.607663 0.482917 0.527173 0.538027 0.380196 0.664020 0.311944 0.805748 0.196471 0.996042 0.684820 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814357_4_7179850.txt b/datasets/pinganmajia/train/labels/订单1814357_4_7179850.txt new file mode 100644 index 0000000..3a1249c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814357_4_7179850.txt @@ -0,0 +1 @@ +4 1.000000 0.293806 0.876705 0.267732 0.773581 0.308411 0.673959 0.414708 0.654737 0.510515 0.642506 0.624682 0.689691 0.685052 0.488696 0.872715 0.439760 0.998703 0.991636 1.000000 0.997300 1.000000 1.000000 0.454863 diff --git a/datasets/pinganmajia/train/labels/订单1814358_4_7179837.txt b/datasets/pinganmajia/train/labels/订单1814358_4_7179837.txt new file mode 100644 index 0000000..864c7e4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814358_4_7179837.txt @@ -0,0 +1 @@ +4 0.997859 0.339865 0.903382 0.279498 0.784395 0.276875 0.724902 0.330686 0.686405 0.397610 0.691650 0.477659 0.700408 0.545907 0.600670 0.587904 0.633905 0.618088 0.520180 0.746691 0.472925 0.847745 0.399575 1.000000 1.000000 1.000000 1.000000 0.608909 diff --git a/datasets/pinganmajia/train/labels/订单1814359_4_7179864.txt b/datasets/pinganmajia/train/labels/订单1814359_4_7179864.txt new file mode 100644 index 0000000..82af7de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814359_4_7179864.txt @@ -0,0 +1 @@ +4 1.000000 0.114184 0.898032 0.154896 0.796551 0.216571 0.770301 0.191641 0.728310 0.171953 0.656562 0.123394 0.527083 0.119462 0.374850 0.206076 0.364352 0.242821 0.392350 0.266441 0.423843 0.324184 0.471088 0.353056 0.562083 0.431797 0.623322 0.458038 0.605822 0.469852 0.658310 0.531528 0.712558 0.614210 0.754549 0.660139 0.751053 0.821563 0.814051 0.853056 0.826296 0.883238 0.740556 0.998724 0.994271 0.994783 1.000000 0.581866 diff --git a/datasets/pinganmajia/train/labels/订单1814360_4_7179845.txt b/datasets/pinganmajia/train/labels/订单1814360_4_7179845.txt new file mode 100644 index 0000000..fd646e6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814360_4_7179845.txt @@ -0,0 +1 @@ +4 0.642682 0.338574 0.576185 0.362197 0.542943 0.418623 0.530690 0.484238 0.555195 0.517051 0.572695 0.553799 0.595443 0.551172 0.584935 0.641719 0.588438 0.745400 0.581445 0.778203 0.604193 0.788701 0.623437 0.754580 0.630430 0.709961 0.661927 0.603662 0.660182 0.653535 0.660182 0.715215 0.667174 0.762461 0.705677 0.787393 0.712669 0.771641 0.702174 0.734902 0.716172 0.639102 0.726667 0.576104 0.763411 0.547236 0.798411 0.468496 0.791419 0.405498 0.768672 0.358262 0.698672 0.339883 0.716172 0.313643 0.709180 0.276895 0.661927 0.258525 0.639180 0.283457 0.635677 0.317578 diff --git a/datasets/pinganmajia/train/labels/订单1814365_4_7180178.txt b/datasets/pinganmajia/train/labels/订单1814365_4_7180178.txt new file mode 100644 index 0000000..855e061 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814365_4_7180178.txt @@ -0,0 +1 @@ +4 0.000000 0.182463 0.058235 0.135147 0.168464 0.111520 0.259461 0.149583 0.304951 0.216507 0.325948 0.284755 0.348693 0.334620 0.308448 0.440919 0.395948 0.517034 0.464183 0.573468 0.513170 0.744069 0.591912 0.964534 0.629412 1.000000 0.382092 1.000000 0.000490 0.996042 0.003987 0.486850 0.003987 0.409424 0.014493 0.391054 0.010980 0.368738 0.000000 0.365993 diff --git a/datasets/pinganmajia/train/labels/订单1814367_4_7179899.txt b/datasets/pinganmajia/train/labels/订单1814367_4_7179899.txt new file mode 100644 index 0000000..198f917 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814367_4_7179899.txt @@ -0,0 +1 @@ +4 0.002602 0.204712 0.078460 0.136471 0.215599 0.115472 0.405259 0.101036 0.536567 0.145656 0.592016 0.209963 0.562834 0.255895 0.527820 0.320196 0.507398 0.364816 0.463624 0.421244 0.349823 0.467175 0.431526 0.493425 0.449033 0.559044 0.533651 0.612849 0.562834 0.631219 0.600763 0.737518 0.737902 0.854320 0.790422 0.956679 0.813774 0.996048 0.203311 1.000000 0.002602 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814368_4_7179870.txt b/datasets/pinganmajia/train/labels/订单1814368_4_7179870.txt new file mode 100644 index 0000000..e24d2db --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814368_4_7179870.txt @@ -0,0 +1 @@ +4 0.016926 0.034079 0.149650 0.030143 0.228823 0.039331 0.356887 0.120696 0.382500 0.186310 0.394144 0.263739 0.389484 0.358229 0.338259 0.427780 0.363872 0.452714 0.335934 0.472401 0.384835 0.544578 0.433726 0.682374 0.517558 0.796546 0.571109 0.900225 0.566459 0.999962 0.562228 1.000000 0.003035 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814369_4_7180123.txt b/datasets/pinganmajia/train/labels/订单1814369_4_7180123.txt new file mode 100644 index 0000000..b6717b0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814369_4_7180123.txt @@ -0,0 +1 @@ +4 0.499516 0.996076 0.509360 0.959329 0.502470 0.917335 0.492628 0.883215 0.469989 0.854343 0.467036 0.779540 0.443414 0.748044 0.416840 0.664054 0.358770 0.614184 0.381406 0.603686 0.342036 0.590564 0.315462 0.569566 0.324321 0.484265 0.322352 0.427833 0.320382 0.368779 0.319399 0.250668 0.257391 0.185052 0.219006 0.164054 0.139282 0.141745 0.087116 0.170616 0.036918 0.223111 0.010343 0.290038 0.019201 0.379277 0.023138 0.431771 0.006406 0.471140 0.000000 0.487159 0.000000 0.641479 0.003455 0.996076 diff --git a/datasets/pinganmajia/train/labels/订单1814370_4_7179919.txt b/datasets/pinganmajia/train/labels/订单1814370_4_7179919.txt new file mode 100644 index 0000000..07e8672 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814370_4_7179919.txt @@ -0,0 +1 @@ +4 0.992656 0.400313 0.955252 0.360938 0.920807 0.325509 0.928681 0.215266 0.930642 0.097164 0.922769 0.057789 0.894227 0.019734 0.609783 0.119468 0.583203 0.259896 0.588125 0.338634 0.542847 0.429178 0.511354 0.535486 0.477891 0.654907 0.481832 0.773009 0.540885 0.965926 0.572205 1.000000 0.931076 1.000000 0.998559 0.998738 diff --git a/datasets/pinganmajia/train/labels/订单1814371_4_7179907.txt b/datasets/pinganmajia/train/labels/订单1814371_4_7179907.txt new file mode 100644 index 0000000..3dde91b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814371_4_7179907.txt @@ -0,0 +1 @@ +4 0.009258 0.019678 0.206992 0.019678 0.271732 0.066924 0.299727 0.112852 0.269974 0.208652 0.261224 0.251963 0.271732 0.288701 0.243737 0.379258 0.206992 0.412061 0.296224 0.528857 0.327721 0.591855 0.325977 0.631221 0.369714 0.703398 0.413464 0.750645 0.423958 0.778203 0.444961 0.807080 0.446706 0.842510 0.448451 0.864824 0.409961 0.835947 0.418711 0.892383 0.430964 0.948809 0.420456 0.999990 0.002266 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1814372_4_7179942.txt b/datasets/pinganmajia/train/labels/订单1814372_4_7179942.txt new file mode 100644 index 0000000..efa6e94 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814372_4_7179942.txt @@ -0,0 +1 @@ +4 0.997543 0.334641 0.943536 0.368761 0.884350 0.313652 0.881397 0.270337 0.891011 0.224413 0.892494 0.153543 0.885833 0.082674 0.865116 0.103674 0.846624 0.026250 0.598793 0.023620 0.590656 0.099739 0.609148 0.190293 0.623205 0.242783 0.602488 0.242783 0.610631 0.297902 0.628382 0.349076 0.638002 0.383207 0.649099 0.379261 0.664632 0.417326 0.643180 0.434380 0.585478 0.514435 0.548487 0.551185 0.532212 0.610239 0.529252 0.720467 0.517414 0.870076 0.479681 1.000000 0.479767 1.000000 1.000000 1.000000 1.000000 0.652315 diff --git a/datasets/pinganmajia/train/labels/订单1814374_4_7179973.txt b/datasets/pinganmajia/train/labels/订单1814374_4_7179973.txt new file mode 100644 index 0000000..64bed31 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814374_4_7179973.txt @@ -0,0 +1 @@ +4 0.000000 0.539623 0.032439 0.522324 0.060427 0.497392 0.060427 0.469833 0.046437 0.447525 0.062761 0.431775 0.086080 0.388466 0.128057 0.338598 0.191019 0.318912 0.321611 0.316289 0.403232 0.351721 0.426559 0.377971 0.454538 0.435711 0.447544 0.492142 0.410235 0.555132 0.393911 0.572196 0.473197 0.653559 0.508179 0.671931 0.489521 0.692931 0.510505 0.780858 0.533824 0.835975 0.543153 0.889779 0.545305 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814376_4_7179987.txt b/datasets/pinganmajia/train/labels/订单1814376_4_7179987.txt new file mode 100644 index 0000000..7aad2c2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814376_4_7179987.txt @@ -0,0 +1 @@ +4 0.009232 0.485539 0.063480 0.471103 0.133480 0.459289 0.124722 0.417292 0.103725 0.387108 0.094984 0.338554 0.103725 0.307059 0.119477 0.297868 0.087974 0.250625 0.110719 0.186324 0.159722 0.104963 0.255964 0.078713 0.436176 0.106275 0.497435 0.145637 0.541176 0.219130 0.544673 0.287377 0.525425 0.363493 0.511422 0.415980 0.493922 0.463223 0.464183 0.515723 0.469428 0.553775 0.495670 0.561654 0.567418 0.615453 0.614657 0.691569 0.639167 0.799191 0.668905 0.884485 0.574412 0.981605 0.541699 1.000000 0.004003 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814377_4_7179954.txt b/datasets/pinganmajia/train/labels/订单1814377_4_7179954.txt new file mode 100644 index 0000000..9a5ea31 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814377_4_7179954.txt @@ -0,0 +1 @@ +4 0.000000 0.524413 0.054615 0.492144 0.051115 0.460644 0.075615 0.431769 0.117603 0.418654 0.126359 0.393712 0.129859 0.332038 0.149103 0.326788 0.180603 0.248048 0.252333 0.199490 0.352077 0.186365 0.464064 0.212615 0.507808 0.250673 0.511308 0.292663 0.502551 0.367471 0.506051 0.423904 0.486808 0.479019 0.448321 0.526260 0.471064 0.540702 0.481564 0.560385 0.460564 0.643058 0.479808 0.683740 0.535808 0.754606 0.590051 0.845163 0.607538 0.931769 0.647795 0.997394 0.330308 1.000000 0.009051 1.000000 0.000000 0.647952 diff --git a/datasets/pinganmajia/train/labels/订单1814379_4_7180079.txt b/datasets/pinganmajia/train/labels/订单1814379_4_7180079.txt new file mode 100644 index 0000000..120ea83 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814379_4_7180079.txt @@ -0,0 +1 @@ +4 0.009115 0.341221 0.101859 0.301856 0.210346 0.307106 0.310077 0.356971 0.346833 0.400279 0.343333 0.455394 0.339833 0.494769 0.329333 0.605000 0.413321 0.741481 0.490308 0.849096 0.521808 0.933087 0.486808 0.997394 0.293372 1.000000 0.000423 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814380_4_7180021.txt b/datasets/pinganmajia/train/labels/订单1814380_4_7180021.txt new file mode 100644 index 0000000..5d33484 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814380_4_7180021.txt @@ -0,0 +1 @@ +4 0.524696 0.017082 0.556771 0.124695 0.562604 0.178500 0.568438 0.251992 0.609262 0.305797 0.705503 0.381914 0.653012 0.408160 0.489696 0.429156 0.451788 0.471152 0.480946 0.501336 0.521780 0.632570 0.562604 0.769051 0.667595 0.793984 0.641345 0.984273 0.581441 1.000000 1.000000 1.000000 1.000000 0.021020 diff --git a/datasets/pinganmajia/train/labels/订单1814381_4_7180057.txt b/datasets/pinganmajia/train/labels/订单1814381_4_7180057.txt new file mode 100644 index 0000000..0554860 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814381_4_7180057.txt @@ -0,0 +1 @@ +4 0.992634 0.561667 0.905144 0.528858 0.917397 0.507863 0.948889 0.475054 0.957634 0.438310 0.947140 0.421250 0.948889 0.368750 0.913889 0.311011 0.821152 0.278202 0.723169 0.296574 0.661924 0.334630 0.623426 0.396312 0.619928 0.450116 0.642675 0.545918 0.499198 0.622037 0.497449 0.692901 0.492202 0.748017 0.443200 0.842508 0.416955 0.922562 0.436204 0.959306 0.478200 0.999985 0.999630 0.997361 diff --git a/datasets/pinganmajia/train/labels/订单1814382_4_7180147.txt b/datasets/pinganmajia/train/labels/订单1814382_4_7180147.txt new file mode 100644 index 0000000..112ac57 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814382_4_7180147.txt @@ -0,0 +1 @@ +4 1.000000 0.447521 0.923742 0.406852 0.955239 0.313673 0.970988 0.283488 1.000000 0.214856 1.000000 0.018405 0.745594 0.021029 0.693426 0.131265 0.682600 0.240185 0.687523 0.316296 0.697361 0.377984 0.620594 0.427850 0.554645 0.464599 0.498542 0.547274 0.460162 0.627325 0.437523 0.720504 0.425710 0.799239 0.424722 0.874043 0.403634 1.000000 0.997593 1.000000 1.000000 0.728683 diff --git a/datasets/pinganmajia/train/labels/订单1814383_4_7179984.txt b/datasets/pinganmajia/train/labels/订单1814383_4_7179984.txt new file mode 100644 index 0000000..d1110d7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814383_4_7179984.txt @@ -0,0 +1 @@ +4 1.000000 0.269462 0.904638 0.301846 0.803120 0.360899 0.803120 0.443577 0.822862 0.578750 0.735444 0.603683 0.800300 0.635178 0.569070 0.679798 0.456271 0.769038 0.385775 0.847779 0.278626 0.960639 0.188585 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814385_4_7179994.txt b/datasets/pinganmajia/train/labels/订单1814385_4_7179994.txt new file mode 100644 index 0000000..6a0cda2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814385_4_7179994.txt @@ -0,0 +1 @@ +4 0.999608 0.643015 0.947124 0.608897 0.994363 0.576091 1.000000 0.558480 1.000000 0.297243 0.922631 0.261127 0.856127 0.271630 0.784395 0.258505 0.635654 0.267684 0.597157 0.328051 0.583170 0.431728 0.574412 0.513100 0.556912 0.582647 0.581422 0.641703 0.523676 0.721752 0.483431 0.788689 0.394183 0.863493 0.321716 1.000000 0.999608 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814388_4_7180001.txt b/datasets/pinganmajia/train/labels/订单1814388_4_7180001.txt new file mode 100644 index 0000000..0192c84 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814388_4_7180001.txt @@ -0,0 +1 @@ +4 0.216484 0.266431 0.186745 0.305804 0.164000 0.328118 0.146497 0.409480 0.136000 0.494784 0.162248 0.566961 0.184993 0.594520 0.191987 0.594520 0.214745 0.566961 0.228732 0.597147 0.223490 0.666696 0.296980 0.689010 0.316222 0.746755 0.321477 0.778245 0.275987 0.829431 0.319725 0.833363 0.347725 0.805804 0.380967 0.797931 0.382719 0.750686 0.363477 0.690324 0.379216 0.685069 0.400222 0.734941 0.400222 0.795304 0.398471 0.839922 0.400222 0.870108 0.445712 0.853049 0.452706 0.799245 0.452706 0.736255 0.440458 0.662765 0.463203 0.641765 0.456209 0.595833 0.487699 0.590578 0.503451 0.570902 0.526196 0.477725 0.466706 0.341235 0.408967 0.301873 0.382719 0.290059 0.326732 0.248059 0.324980 0.203441 0.305725 0.173255 0.260235 0.171951 0.221739 0.190324 0.209490 0.228382 0.219987 0.252000 diff --git a/datasets/pinganmajia/train/labels/订单1814389_4_7180283.txt b/datasets/pinganmajia/train/labels/订单1814389_4_7180283.txt new file mode 100644 index 0000000..24a95dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814389_4_7180283.txt @@ -0,0 +1 @@ +4 0.002466 0.653535 0.094358 0.614167 0.127956 0.598418 0.193172 0.570859 0.186255 0.547240 0.199098 0.517057 0.203054 0.471120 0.236647 0.465872 0.238623 0.440937 0.229730 0.412070 0.235662 0.398945 0.252456 0.325456 0.289020 0.278210 0.353245 0.263776 0.397711 0.299206 0.413520 0.355638 0.415495 0.409440 0.417471 0.421257 0.413520 0.459310 0.409569 0.484245 0.401662 0.526243 0.442176 0.568236 0.483676 0.604980 0.491583 0.627292 0.463912 0.665345 0.481701 0.716530 0.492569 0.782148 0.498500 0.898945 0.505417 0.999993 0.000000 0.998691 0.000000 0.776576 diff --git a/datasets/pinganmajia/train/labels/订单1814390_4_7180118.txt b/datasets/pinganmajia/train/labels/订单1814390_4_7180118.txt new file mode 100644 index 0000000..77d698b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814390_4_7180118.txt @@ -0,0 +1 @@ +4 0.999371 0.354355 0.937688 0.321552 0.939003 0.257247 0.956062 0.234935 0.953440 0.198186 0.931127 0.114199 0.916691 0.023652 0.561046 0.023652 0.558423 0.183750 0.583358 0.261185 0.593856 0.326797 0.631920 0.395041 0.676536 0.430474 0.630605 0.458031 0.587296 0.524959 0.570237 0.591887 0.582051 0.665384 0.599109 0.728374 0.600417 0.884542 0.596487 1.000000 0.998064 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814391_4_7180030.txt b/datasets/pinganmajia/train/labels/订单1814391_4_7180030.txt new file mode 100644 index 0000000..cb0a6b9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814391_4_7180030.txt @@ -0,0 +1 @@ +4 1.000000 0.107328 0.877124 0.175821 0.814134 0.272941 0.845637 0.326740 0.850882 0.412047 0.882386 0.475037 0.915621 0.520968 0.745899 0.639081 0.716144 0.734877 0.668905 0.825429 0.616405 0.889743 0.537680 0.996042 0.774624 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814395_4_7180145.txt b/datasets/pinganmajia/train/labels/订单1814395_4_7180145.txt new file mode 100644 index 0000000..0a0c9d5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814395_4_7180145.txt @@ -0,0 +1 @@ +4 0.011017 0.018369 0.322472 0.018369 0.366215 0.094481 0.383715 0.175847 0.359223 0.269025 0.334732 0.343824 0.299732 0.417320 0.362726 0.459311 0.350480 0.501303 0.380226 0.562987 0.399463 0.644354 0.413460 0.734905 0.437966 0.874015 0.437966 0.996059 0.005763 0.999989 diff --git a/datasets/pinganmajia/train/labels/订单1814397_4_7180096.txt b/datasets/pinganmajia/train/labels/订单1814397_4_7180096.txt new file mode 100644 index 0000000..c058785 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814397_4_7180096.txt @@ -0,0 +1 @@ +4 0.007402 0.178505 0.054645 0.203440 0.073346 0.145694 0.065472 0.123382 0.070392 0.078766 0.075313 0.036773 0.091060 0.027582 0.323346 0.019714 0.336140 0.084020 0.315472 0.165384 0.298738 0.224436 0.271183 0.303178 0.239687 0.342549 0.257402 0.371413 0.276103 0.392418 0.338113 0.553832 0.354841 0.614199 0.344013 0.656193 0.339093 0.786119 0.370588 0.854355 0.395196 0.923913 0.394210 0.993464 0.000515 0.998717 diff --git a/datasets/pinganmajia/train/labels/订单1814398_4_7180149.txt b/datasets/pinganmajia/train/labels/订单1814398_4_7180149.txt new file mode 100644 index 0000000..666d4e9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814398_4_7180149.txt @@ -0,0 +1 @@ +4 0.005855 0.070811 0.110841 0.123304 0.186952 0.215168 0.234196 0.329342 0.252573 0.396272 0.256506 0.544569 0.345746 0.557690 0.419240 0.587873 0.478289 0.671864 0.537346 0.758480 0.560972 0.830658 0.538662 0.996009 0.127646 1.000000 0.000000 1.000000 0.000000 0.762346 diff --git a/datasets/pinganmajia/train/labels/订单1814400_4_7180174.txt b/datasets/pinganmajia/train/labels/订单1814400_4_7180174.txt new file mode 100644 index 0000000..dc7eada --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814400_4_7180174.txt @@ -0,0 +1 @@ +4 1.000000 0.587439 0.962876 0.540650 0.975114 0.505221 0.996111 0.450110 0.994363 0.307059 0.875376 0.229632 0.777386 0.225699 0.731895 0.254571 0.630408 0.314939 0.633905 0.418603 0.646160 0.485539 0.675899 0.531471 0.681160 0.559032 0.539428 0.594461 0.569167 0.646961 0.492173 0.746691 0.388938 0.839865 0.327696 0.940919 0.320703 0.990784 0.999608 0.998664 1.000000 0.976446 diff --git a/datasets/pinganmajia/train/labels/订单1814403_4_7180702.txt b/datasets/pinganmajia/train/labels/订单1814403_4_7180702.txt new file mode 100644 index 0000000..bd5b6cf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814403_4_7180702.txt @@ -0,0 +1 @@ +4 0.000000 0.604449 0.086225 0.562966 0.159722 0.496042 0.154477 0.442230 0.124722 0.422549 0.121225 0.383174 0.126471 0.322806 0.156225 0.329375 0.170212 0.246691 0.240212 0.182390 0.364444 0.152206 0.479935 0.188946 0.521928 0.242757 0.546422 0.310993 0.551667 0.362181 0.539428 0.402855 0.534167 0.464534 0.471176 0.553775 0.521928 0.587904 0.583170 0.687635 0.625163 0.742757 0.703905 0.828051 0.703905 1.000000 0.474150 1.000000 0.007484 0.994718 0.000000 0.787635 diff --git a/datasets/pinganmajia/train/labels/订单1814404_4_7180196.txt b/datasets/pinganmajia/train/labels/订单1814404_4_7180196.txt new file mode 100644 index 0000000..83b75f4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814404_4_7180196.txt @@ -0,0 +1 @@ +4 0.004438 0.393712 0.072351 0.393712 0.078255 0.237545 0.141250 0.162737 0.134361 0.055128 0.158966 0.015756 0.348923 0.013135 0.404043 0.128622 0.401091 0.234917 0.395183 0.297910 0.381404 0.370090 0.383375 0.423897 0.421760 0.454077 0.462115 0.557750 0.479832 0.683737 0.481798 0.725731 0.486721 0.821532 0.485736 0.988199 0.483769 0.996071 0.000798 1.000000 0.000000 1.000000 0.000000 0.940340 diff --git a/datasets/pinganmajia/train/labels/订单1814405_4_7180207.txt b/datasets/pinganmajia/train/labels/订单1814405_4_7180207.txt new file mode 100644 index 0000000..50b6842 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814405_4_7180207.txt @@ -0,0 +1 @@ +4 0.011016 0.055147 0.110365 0.031529 0.281185 0.068275 0.350898 0.120765 0.403190 0.203441 0.384010 0.290059 0.350898 0.350422 0.340443 0.387167 0.272461 0.471157 0.241094 0.496098 0.350898 0.565647 0.354388 0.631265 0.345664 0.776931 0.314297 0.880608 0.324753 0.973784 0.317786 1.000000 0.000000 1.000000 0.000000 0.719059 diff --git a/datasets/pinganmajia/train/labels/订单1814407_4_7180200.txt b/datasets/pinganmajia/train/labels/订单1814407_4_7180200.txt new file mode 100644 index 0000000..5d6ae9e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814407_4_7180200.txt @@ -0,0 +1 @@ +4 0.989000 0.523635 0.908513 0.485577 0.924256 0.397654 0.927756 0.291356 0.885756 0.204740 0.779026 0.141750 0.618038 0.147000 0.490308 0.215240 0.439564 0.334663 0.448321 0.387154 0.486808 0.500019 0.586551 0.494769 0.586551 0.521010 0.532308 0.597125 0.492064 0.678490 0.490308 0.748048 0.465808 0.996077 0.788962 1.000000 1.000000 1.000000 1.000000 0.824856 diff --git a/datasets/pinganmajia/train/labels/订单1814408_4_7180242.txt b/datasets/pinganmajia/train/labels/订单1814408_4_7180242.txt new file mode 100644 index 0000000..25907f2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814408_4_7180242.txt @@ -0,0 +1 @@ +4 0.992633 0.484271 0.921766 0.459333 0.851883 0.467208 0.863695 0.392406 0.894203 0.356969 0.895187 0.312354 0.883375 0.282167 0.870586 0.286104 0.869602 0.241490 0.873539 0.086635 0.797750 0.069573 0.702273 0.072198 0.635344 0.181115 0.648141 0.272979 0.665859 0.360906 0.675703 0.469833 0.569398 0.586635 0.548734 0.639125 0.476883 0.993458 0.999523 0.998708 diff --git a/datasets/pinganmajia/train/labels/订单1814409_4_7180229.txt b/datasets/pinganmajia/train/labels/订单1814409_4_7180229.txt new file mode 100644 index 0000000..6b6d430 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814409_4_7180229.txt @@ -0,0 +1 @@ +4 0.007510 0.276890 0.124743 0.240147 0.234979 0.263765 0.294475 0.300509 0.310216 0.374005 0.325967 0.440934 0.324218 0.501296 0.278724 0.583974 0.416955 0.741458 0.464198 0.842508 0.517130 1.000000 0.003992 1.000000 0.000000 0.746559 0.000000 0.555748 0.014506 0.552485 0.014506 0.498673 0.000000 0.497469 0.000000 0.466073 diff --git a/datasets/pinganmajia/train/labels/订单1814410_4_7180222.txt b/datasets/pinganmajia/train/labels/订单1814410_4_7180222.txt new file mode 100644 index 0000000..c06fbaa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814410_4_7180222.txt @@ -0,0 +1 @@ +4 0.339850 0.220504 0.332850 0.244129 0.297856 0.303183 0.292606 0.375362 0.324106 0.425229 0.348600 0.431792 0.366100 0.488221 0.385344 0.580083 0.392344 0.612896 0.413344 0.614204 0.415094 0.577462 0.416844 0.503971 0.427339 0.456725 0.436089 0.500033 0.458839 0.572213 0.483333 0.587958 0.511328 0.591896 0.492083 0.563025 0.486833 0.511846 0.493833 0.414729 0.520078 0.362237 0.507828 0.312371 0.472833 0.250688 0.444839 0.229692 0.420339 0.208696 0.409844 0.168013 0.373100 0.164075 0.355600 0.182446 0.357350 0.203446 diff --git a/datasets/pinganmajia/train/labels/订单1814411_4_7180218.txt b/datasets/pinganmajia/train/labels/订单1814411_4_7180218.txt new file mode 100644 index 0000000..58f618c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814411_4_7180218.txt @@ -0,0 +1 @@ +4 0.003987 0.371360 0.023235 0.352990 0.051225 0.350368 0.059984 0.326740 0.021487 0.318873 0.000000 0.293542 0.000000 0.226863 0.021487 0.224387 0.010980 0.160074 0.044232 0.093150 0.115980 0.053775 0.226209 0.032782 0.313693 0.052463 0.369690 0.094461 0.406438 0.145637 0.411683 0.225699 0.397696 0.276875 0.408186 0.316250 0.376699 0.409424 0.381944 0.447475 0.425686 0.515723 0.451928 0.616777 0.493922 0.749314 0.542925 0.996042 -0.000000 0.999951 0.000000 0.729608 diff --git a/datasets/pinganmajia/train/labels/订单1814417_4_7180373.txt b/datasets/pinganmajia/train/labels/订单1814417_4_7180373.txt new file mode 100644 index 0000000..5b81af7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814417_4_7180373.txt @@ -0,0 +1 @@ +4 0.002115 0.573510 0.033615 0.553817 0.026615 0.517077 0.023115 0.490827 0.016115 0.468519 0.030115 0.463269 0.017872 0.412087 0.024872 0.337288 0.075615 0.287413 0.178846 0.269048 0.292590 0.280856 0.369577 0.313663 0.366077 0.370096 0.366077 0.440962 0.366077 0.565635 0.341577 0.605000 0.436064 0.686365 0.520051 0.759856 0.541051 0.792663 0.665282 0.841221 0.674038 0.884529 0.686282 0.918654 0.628538 0.979019 0.577795 0.981644 0.549808 0.973769 0.537641 1.000000 0.000000 1.000000 0.000000 0.676846 diff --git a/datasets/pinganmajia/train/labels/订单1814419_4_7180287.txt b/datasets/pinganmajia/train/labels/订单1814419_4_7180287.txt new file mode 100644 index 0000000..3504d26 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814419_4_7180287.txt @@ -0,0 +1 @@ +4 0.998542 0.147010 0.954252 0.150948 0.885355 0.102386 0.852874 0.120760 0.843033 0.111577 0.840080 0.063015 0.817439 0.028897 0.793817 0.032835 0.775116 0.013154 0.627482 0.017083 0.578266 0.115515 0.585159 0.202124 0.613701 0.254616 0.673738 0.316299 0.743621 0.349109 0.784963 0.360915 0.756415 0.401601 0.779056 0.435719 0.812518 0.594518 0.857794 0.748056 0.884369 0.841234 0.865668 0.993464 1.000000 0.997279 1.000000 0.356748 diff --git a/datasets/pinganmajia/train/labels/订单1814420_4_7180329.txt b/datasets/pinganmajia/train/labels/订单1814420_4_7180329.txt new file mode 100644 index 0000000..a6b2382 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814420_4_7180329.txt @@ -0,0 +1 @@ +4 0.987286 0.568299 0.885418 0.500056 0.859071 0.465938 0.873123 0.431812 0.885418 0.387194 0.873123 0.366194 0.843271 0.255958 0.729108 0.216590 0.602658 0.237590 0.553476 0.295333 0.523625 0.378007 0.516599 0.465938 0.614954 0.563049 0.509572 0.703465 0.472695 0.843889 0.444833 1.000000 1.000000 1.000000 1.000000 0.918847 diff --git a/datasets/pinganmajia/train/labels/订单1814423_4_7180356.txt b/datasets/pinganmajia/train/labels/订单1814423_4_7180356.txt new file mode 100644 index 0000000..aae580b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814423_4_7180356.txt @@ -0,0 +1 @@ +4 0.995195 0.612829 0.858929 0.544585 0.848442 0.513085 0.858929 0.481598 0.883393 0.459280 0.886883 0.412037 0.869416 0.396293 0.864172 0.308366 0.823994 0.266378 0.715682 0.238817 0.616104 0.278183 0.568929 0.350366 0.560195 0.423854 0.577679 0.517024 0.558458 0.576085 0.408214 0.657451 0.354058 0.741439 0.350568 0.999963 0.996932 0.997341 diff --git a/datasets/pinganmajia/train/labels/订单1814424_4_7180433.txt b/datasets/pinganmajia/train/labels/订单1814424_4_7180433.txt new file mode 100644 index 0000000..37f1ea6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814424_4_7180433.txt @@ -0,0 +1 @@ +4 0.628505 0.000000 0.637267 0.136390 0.616501 0.266247 0.549013 0.352820 0.495153 0.413420 0.411440 0.463917 0.378995 0.429292 0.333569 0.725075 0.303716 0.994891 0.100922 1.000000 0.017540 1.000000 0.016896 0.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814427_4_7180336.txt b/datasets/pinganmajia/train/labels/订单1814427_4_7180336.txt new file mode 100644 index 0000000..10febff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814427_4_7180336.txt @@ -0,0 +1 @@ +4 0.000490 0.497353 0.122974 0.447475 0.143971 0.425172 0.187712 0.373983 0.145719 0.335931 0.129967 0.297868 0.131716 0.266373 0.145719 0.212574 0.159722 0.145637 0.241961 0.090527 0.346944 0.083958 0.436176 0.116777 0.462435 0.187635 0.462435 0.236189 0.467680 0.307059 0.478186 0.360870 0.418693 0.473725 0.513170 0.576091 0.546422 0.700760 0.549918 0.877929 0.536209 1.000000 0.000000 1.000000 0.000000 0.638395 diff --git a/datasets/pinganmajia/train/labels/订单1814428_4_7180645.txt b/datasets/pinganmajia/train/labels/订单1814428_4_7180645.txt new file mode 100644 index 0000000..669159d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814428_4_7180645.txt @@ -0,0 +1 @@ +4 0.999351 0.741458 0.874892 0.690276 0.675189 0.632531 0.620203 0.619412 0.620203 0.561667 0.582581 0.522298 0.568108 0.436991 0.351041 0.395000 0.197649 0.415999 0.102135 0.477678 0.122392 0.572163 0.122392 0.595784 0.148446 0.622034 0.186068 0.652218 0.249743 0.679779 0.186068 0.698150 0.070297 0.800509 0.000838 0.858254 0.000000 0.900839 -0.000000 1.000000 0.659986 1.000000 0.993554 0.997359 diff --git a/datasets/pinganmajia/train/labels/订单1814433_4_7180456.txt b/datasets/pinganmajia/train/labels/订单1814433_4_7180456.txt new file mode 100644 index 0000000..6a69058 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814433_4_7180456.txt @@ -0,0 +1 @@ +4 0.005761 0.489491 0.037253 0.456682 0.025000 0.423873 0.023251 0.379252 0.037253 0.362191 0.044249 0.303140 0.068745 0.233580 0.145741 0.192901 0.303220 0.196836 0.409959 0.236211 0.416955 0.309699 0.408210 0.351690 0.425710 0.455370 0.399455 0.522299 0.399455 0.560355 0.548189 0.652215 0.640926 0.776890 0.769660 1.000000 0.007490 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814434_4_7180375.txt b/datasets/pinganmajia/train/labels/订单1814434_4_7180375.txt new file mode 100644 index 0000000..8412a23 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814434_4_7180375.txt @@ -0,0 +1 @@ +4 0.005735 0.183701 0.101977 0.131201 0.217467 0.124645 0.353938 0.170576 0.395948 0.233566 0.418693 0.350368 0.441438 0.351679 0.427435 0.405490 0.395948 0.507843 0.520180 0.534093 0.588415 0.679767 0.611160 0.779498 0.652908 1.000000 0.013889 1.000000 0.000490 0.999975 0.000000 0.963578 0.000000 0.477892 0.024984 0.473725 0.016242 0.448787 0.003987 0.423860 diff --git a/datasets/pinganmajia/train/labels/订单1814435_4_7180457.txt b/datasets/pinganmajia/train/labels/订单1814435_4_7180457.txt new file mode 100644 index 0000000..cd8560e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814435_4_7180457.txt @@ -0,0 +1 @@ +4 0.136992 0.195527 0.053008 0.209961 0.014505 0.253271 -0.000000 0.277373 0.000000 0.410039 0.000508 0.416006 0.037253 0.481621 0.060000 0.490801 0.072253 0.522305 0.103750 0.530176 0.108997 0.524922 0.147500 0.625977 0.182487 0.725713 0.157995 0.783457 0.166745 0.807080 0.196484 0.787393 0.215742 0.755898 0.219232 0.703398 0.234987 0.569541 0.240234 0.629912 0.275234 0.754580 0.290977 0.797891 0.318971 0.800518 0.329466 0.780830 0.304974 0.736211 0.338216 0.536738 0.359219 0.496055 0.411706 0.460625 0.429206 0.371387 0.371471 0.263770 0.339974 0.217842 0.245482 0.192900 0.254232 0.118105 0.236732 0.072168 0.171992 0.045918 0.124753 0.064297 0.102005 0.122041 0.130000 0.175840 diff --git a/datasets/pinganmajia/train/labels/订单1814438_4_7180517.txt b/datasets/pinganmajia/train/labels/订单1814438_4_7180517.txt new file mode 100644 index 0000000..ebc30e7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814438_4_7180517.txt @@ -0,0 +1 @@ +4 0.014872 0.350380 0.163949 0.324136 0.398196 0.346446 0.480341 0.391060 0.443835 0.460619 0.428622 0.511795 0.389077 0.574792 0.340398 0.604975 0.446875 0.661403 0.480341 0.730956 0.507713 0.892377 0.568565 0.998676 0.011832 0.997359 diff --git a/datasets/pinganmajia/train/labels/订单1814439_4_7180441.txt b/datasets/pinganmajia/train/labels/订单1814439_4_7180441.txt new file mode 100644 index 0000000..687a990 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814439_4_7180441.txt @@ -0,0 +1 @@ +4 0.814044 0.282183 0.815794 0.216567 0.791294 0.177200 0.733550 0.168013 0.684556 0.207383 0.682811 0.276938 0.688056 0.299246 0.674061 0.325492 0.583072 0.367488 0.539328 0.486908 0.572572 0.530217 0.597067 0.561712 0.635567 0.695571 0.646061 0.887171 0.653061 0.919979 0.651311 0.963287 0.642872 1.000000 0.694350 1.000000 0.724806 0.964600 0.738800 0.939667 0.728306 0.876675 0.731800 0.814992 0.763300 0.762500 0.766800 0.826804 0.763300 0.914729 0.761550 0.955412 0.800017 1.000000 0.870872 1.000000 0.849039 0.956725 0.877033 0.885858 0.884033 0.754625 0.905033 0.670637 0.913778 0.631267 0.920778 0.547275 0.969772 0.502658 0.978522 0.447537 0.952272 0.371425 0.922528 0.349112 0.894533 0.329429 0.829789 0.316304 diff --git a/datasets/pinganmajia/train/labels/订单1814440_4_7180510.txt b/datasets/pinganmajia/train/labels/订单1814440_4_7180510.txt new file mode 100644 index 0000000..f5490cd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814440_4_7180510.txt @@ -0,0 +1 @@ +4 0.000490 0.351679 0.040735 0.347745 0.051225 0.314939 0.021487 0.275564 0.009232 0.240135 0.014493 0.198137 0.026732 0.198137 0.072222 0.110208 0.135229 0.055086 0.287451 0.053775 0.392435 0.089216 0.495670 0.158762 0.502680 0.227010 0.409935 0.254571 0.392435 0.314939 0.376699 0.371360 0.315458 0.426483 0.397696 0.488162 0.383693 0.545907 0.425686 0.631201 0.448431 0.763750 0.492173 0.940919 0.490425 0.997353 0.156912 1.000000 0.000000 1.000000 0.000000 0.412108 diff --git a/datasets/pinganmajia/train/labels/订单1814443_4_7180892.txt b/datasets/pinganmajia/train/labels/订单1814443_4_7180892.txt new file mode 100644 index 0000000..10fae96 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814443_4_7180892.txt @@ -0,0 +1 @@ +4 0.996054 0.652289 0.896315 0.576173 0.908566 0.544678 0.919065 0.510558 0.922561 0.462001 0.929563 0.351765 0.845572 0.288771 0.716091 0.255965 0.604101 0.296648 0.509616 0.404259 0.506115 0.552552 0.429126 0.551241 0.317141 0.677224 0.236650 0.742840 0.147410 0.965938 0.177157 0.997436 1.000000 0.997436 1.000000 0.846881 diff --git a/datasets/pinganmajia/train/labels/订单1814444_4_7180583.txt b/datasets/pinganmajia/train/labels/订单1814444_4_7180583.txt new file mode 100644 index 0000000..c5bfa2a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814444_4_7180583.txt @@ -0,0 +1 @@ +4 1.000000 0.234523 0.870035 0.223134 0.765058 0.271693 0.702060 0.354366 0.679317 0.425234 0.661817 0.467231 0.721308 0.560399 0.660069 0.599774 0.717813 0.645703 0.703808 0.725755 0.667060 0.795313 0.646065 0.895052 0.640822 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814445_4_7180502.txt b/datasets/pinganmajia/train/labels/订单1814445_4_7180502.txt new file mode 100644 index 0000000..166d5c4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814445_4_7180502.txt @@ -0,0 +1 @@ +4 0.999020 0.290022 0.950196 0.249348 0.963511 0.128609 0.961293 0.015750 0.630600 0.018370 0.665374 0.198163 0.654277 0.229663 0.671293 0.286087 0.691268 0.364826 0.706801 0.366141 0.712721 0.388446 0.607672 0.446196 0.575116 0.614174 0.518891 0.933065 0.520374 1.000000 1.000000 0.996087 1.000000 0.445565 diff --git a/datasets/pinganmajia/train/labels/订单1814446_4_7180555.txt b/datasets/pinganmajia/train/labels/订单1814446_4_7180555.txt new file mode 100644 index 0000000..684f3af --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814446_4_7180555.txt @@ -0,0 +1 @@ +4 0.003987 0.556409 0.170212 0.489473 0.159722 0.465858 0.115980 0.442230 0.086225 0.397610 0.093235 0.366115 0.077484 0.295245 0.129967 0.215196 0.199967 0.164020 0.320703 0.161385 0.399444 0.209951 0.437941 0.309681 0.464183 0.408113 0.455425 0.482917 0.420441 0.535404 0.518431 0.595772 0.584918 0.723076 0.700408 0.821495 0.740654 0.877929 0.772141 0.908113 0.733644 0.999975 0.726144 1.000000 0.002255 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814448_4_7180538.txt b/datasets/pinganmajia/train/labels/订单1814448_4_7180538.txt new file mode 100644 index 0000000..4bd4e09 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814448_4_7180538.txt @@ -0,0 +1 @@ +4 0.999540 0.678530 0.950330 0.636528 0.862734 0.543356 0.802691 0.505301 0.667847 0.450174 0.679661 0.416053 0.679661 0.381933 0.688524 0.312384 0.689505 0.215266 0.620608 0.099780 0.546788 0.115532 0.472969 0.181146 0.454271 0.275637 0.463125 0.328137 0.458203 0.380625 0.464115 0.412118 0.499540 0.472488 0.431632 0.509236 0.403090 0.649653 0.405052 0.715266 0.388325 0.826817 0.392257 0.864873 0.399149 0.997419 0.529731 1.000000 0.866085 1.000000 0.878481 0.940995 0.910964 0.968553 0.928655 1.000000 1.000000 1.000000 1.000000 0.703553 diff --git a/datasets/pinganmajia/train/labels/订单1814451_4_7180640.txt b/datasets/pinganmajia/train/labels/订单1814451_4_7180640.txt new file mode 100644 index 0000000..cb1c121 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814451_4_7180640.txt @@ -0,0 +1 @@ +4 0.724806 0.271687 0.716056 0.300558 0.670561 0.321554 0.623317 0.427854 0.632067 0.532842 0.656561 0.549900 0.670561 0.568275 0.688056 0.577462 0.698556 0.652263 0.705556 0.776938 0.686306 0.826804 0.714306 0.839929 0.740550 0.809746 0.751050 0.780871 0.747550 0.679825 0.763300 0.591896 0.773794 0.685071 0.770300 0.774312 0.796544 0.800558 0.824539 0.832054 0.840289 0.826804 0.814044 0.769062 0.826289 0.683758 0.847289 0.572213 0.887533 0.557775 0.896283 0.547275 0.920778 0.464600 0.915528 0.391108 0.901533 0.312371 0.821039 0.293996 0.807044 0.265125 0.826289 0.236254 0.800044 0.194258 0.742300 0.190321 0.714306 0.220504 0.714306 0.248063 0.710806 0.262500 diff --git a/datasets/pinganmajia/train/labels/订单1814452_4_7180602.txt b/datasets/pinganmajia/train/labels/订单1814452_4_7180602.txt new file mode 100644 index 0000000..9fd4261 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814452_4_7180602.txt @@ -0,0 +1 @@ +4 0.289200 0.202070 0.220960 0.219130 0.147467 0.325430 0.198213 0.356930 0.217467 0.383180 0.234960 0.439610 0.248960 0.464540 0.268200 0.543280 0.282200 0.583960 0.308453 0.679760 0.292707 0.737510 0.313707 0.755880 0.343440 0.741440 0.352200 0.692890 0.348693 0.648270 0.343440 0.590520 0.359200 0.511780 0.388947 0.586590 0.422187 0.635140 0.422187 0.673200 0.434440 0.727010 0.465933 0.740130 0.483427 0.713880 0.469427 0.650890 0.464187 0.610210 0.441440 0.570840 0.444933 0.501290 0.460680 0.492100 0.465933 0.452730 0.479933 0.385800 0.495680 0.347740 0.462427 0.242760 0.404693 0.207320 0.434440 0.173200 0.451933 0.119400 0.408187 0.076090 0.338200 0.061650 0.283960 0.094460 0.280453 0.135140 0.289200 0.182390 diff --git a/datasets/pinganmajia/train/labels/订单1814453_4_7180594.txt b/datasets/pinganmajia/train/labels/订单1814453_4_7180594.txt new file mode 100644 index 0000000..08cc804 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814453_4_7180594.txt @@ -0,0 +1 @@ +4 0.994244 0.309731 0.936500 0.248048 0.831513 0.232298 0.702038 0.274298 0.649538 0.330721 0.639038 0.418654 0.665282 0.544635 0.586551 0.570885 0.604038 0.598442 0.525308 0.728365 0.506051 0.800538 0.492064 0.876654 0.425295 1.000000 0.997692 1.000000 0.992500 0.517077 0.973244 0.502644 1.000000 0.487038 1.000000 0.405385 diff --git a/datasets/pinganmajia/train/labels/订单1814456_4_7180612.txt b/datasets/pinganmajia/train/labels/订单1814456_4_7180612.txt new file mode 100644 index 0000000..1c4f2a3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814456_4_7180612.txt @@ -0,0 +1 @@ +4 0.000490 0.185012 0.143971 0.148272 0.289199 0.182390 0.360948 0.270319 0.390686 0.375306 0.402941 0.418603 0.395948 0.475037 0.444935 0.490784 0.448431 0.536716 0.479935 0.582647 0.500931 0.650895 0.539428 0.774252 0.605915 0.866115 0.579673 0.863493 0.555163 0.947475 0.570915 0.971103 0.542435 1.000000 0.366356 1.000000 0.005735 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1814457_4_7180582.txt b/datasets/pinganmajia/train/labels/订单1814457_4_7180582.txt new file mode 100644 index 0000000..9932645 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814457_4_7180582.txt @@ -0,0 +1 @@ +4 0.001185 0.658756 0.053588 0.618073 0.109497 0.604951 0.107744 0.582646 0.085032 0.553768 0.095519 0.528841 0.085032 0.477659 0.088523 0.414671 0.133945 0.330671 0.214302 0.295244 0.329610 0.304427 0.404724 0.350366 0.422192 0.429098 0.422192 0.473720 0.423945 0.515720 0.427435 0.557707 0.523523 0.628573 0.560195 0.691573 0.563701 0.757183 0.645373 1.000000 0.016981 1.000000 0.001185 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1814458_4_7180656.txt b/datasets/pinganmajia/train/labels/订单1814458_4_7180656.txt new file mode 100644 index 0000000..ef392e6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814458_4_7180656.txt @@ -0,0 +1 @@ +4 0.000000 0.236900 0.042484 0.216507 0.082729 0.228321 0.103725 0.153517 0.219216 0.085270 0.369690 0.108897 0.450180 0.183701 0.479935 0.255882 0.446683 0.355613 0.479935 0.385797 0.439690 0.463223 0.385441 0.502598 0.387190 0.519657 0.481683 0.540650 0.506176 0.597083 0.528922 0.665331 0.563922 0.728321 0.682908 0.999975 0.000490 0.999975 0.000000 0.786863 diff --git a/datasets/pinganmajia/train/labels/订单1814459_4_7180679.txt b/datasets/pinganmajia/train/labels/订单1814459_4_7180679.txt new file mode 100644 index 0000000..59b0ed3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814459_4_7180679.txt @@ -0,0 +1 @@ +4 0.987272 0.175888 0.908528 0.144392 0.789544 0.140454 0.684556 0.191633 0.623317 0.276938 0.646061 0.329429 0.668811 0.509221 0.682811 0.548588 0.640811 0.564338 0.651311 0.608958 0.600567 0.706071 0.584822 0.812371 0.583072 0.943604 0.563822 0.963287 0.549139 1.000000 1.000000 1.000000 1.000000 0.576875 diff --git a/datasets/pinganmajia/train/labels/订单1814460_4_7180650.txt b/datasets/pinganmajia/train/labels/订单1814460_4_7180650.txt new file mode 100644 index 0000000..6e74b79 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814460_4_7180650.txt @@ -0,0 +1 @@ +4 0.009115 0.450144 0.070359 0.375346 0.091359 0.334663 0.103603 0.307106 0.075615 0.290038 0.059859 0.253298 0.068615 0.215240 0.084359 0.217865 0.096603 0.114192 0.161346 0.065635 0.266333 0.048567 0.378321 0.086625 0.420321 0.166683 0.420321 0.233615 0.404564 0.295288 0.352077 0.402904 0.371321 0.435712 0.381821 0.463269 0.371321 0.498702 0.455308 0.671933 0.478064 0.745423 0.546308 0.938337 0.515474 1.000000 0.386026 1.000000 0.005615 0.996077 diff --git a/datasets/pinganmajia/train/labels/订单1814461_4_7180696.txt b/datasets/pinganmajia/train/labels/订单1814461_4_7180696.txt new file mode 100644 index 0000000..a34f807 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814461_4_7180696.txt @@ -0,0 +1 @@ +4 0.000000 0.543427 0.072808 0.481598 0.097256 0.450098 0.044854 0.408110 0.023896 0.372671 0.048344 0.358232 0.032630 0.304427 0.078052 0.225695 0.168880 0.181073 0.254481 0.175817 0.355812 0.211256 0.415211 0.296561 0.408214 0.347732 0.413458 0.417293 0.380260 0.498659 0.430925 0.544585 0.397744 0.589207 0.415211 0.702073 0.436169 0.725695 0.430925 0.778183 0.437922 0.812305 0.627468 1.000000 0.219399 1.000000 0.006429 0.998659 0.000000 0.792439 diff --git a/datasets/pinganmajia/train/labels/订单1814462_4_7180753.txt b/datasets/pinganmajia/train/labels/订单1814462_4_7180753.txt new file mode 100644 index 0000000..456b01c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814462_4_7180753.txt @@ -0,0 +1 @@ +4 0.994252 0.374034 0.964498 0.345163 0.976752 0.313665 0.983750 0.271669 0.950502 0.262486 0.962756 0.146996 0.880511 0.059070 0.770275 0.023636 0.644290 0.061697 0.569053 0.141747 0.563807 0.255923 0.570805 0.342536 0.574299 0.393714 0.432566 0.455398 0.446562 0.557763 0.303087 0.791357 0.290833 0.968523 0.285587 0.992145 0.366402 1.000000 0.381468 1.000000 0.425568 0.958026 0.430814 0.996080 1.000000 0.998672 1.000000 0.667379 diff --git a/datasets/pinganmajia/train/labels/订单1814463_4_7180692.txt b/datasets/pinganmajia/train/labels/订单1814463_4_7180692.txt new file mode 100644 index 0000000..f948cf5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814463_4_7180692.txt @@ -0,0 +1 @@ +4 0.009232 0.583958 0.131716 0.527537 0.178971 0.451422 0.184216 0.417292 0.173725 0.372672 0.205212 0.371360 0.220964 0.278186 0.282206 0.241446 0.395948 0.229632 0.467680 0.276875 0.499183 0.329375 0.516667 0.368738 0.490425 0.457978 0.472925 0.519657 0.548170 0.548529 0.542925 0.632525 0.530670 0.702071 0.544673 0.748002 0.539428 0.782120 0.609412 0.897610 0.619918 0.961912 0.553905 1.000000 0.418415 1.000000 0.007484 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1814464_4_7180772.txt b/datasets/pinganmajia/train/labels/订单1814464_4_7180772.txt new file mode 100644 index 0000000..510b96b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814464_4_7180772.txt @@ -0,0 +1 @@ +4 0.593828 0.347760 0.546582 0.368763 0.525586 0.414694 0.512461 0.523613 0.547897 0.582669 0.545267 0.687656 0.563639 0.702096 0.583327 0.774271 0.591204 0.838574 0.593828 0.905508 0.593828 0.927812 0.558392 0.960625 0.562331 0.980306 0.592513 0.984245 0.612201 0.967187 0.637135 0.950124 0.647630 0.906816 0.656816 0.927812 0.676504 0.959310 0.702747 0.964564 0.710625 0.946185 0.681751 0.893691 0.692253 0.800521 0.713249 0.696842 0.727682 0.685033 0.727682 0.625977 0.764427 0.577422 0.757871 0.431751 0.717187 0.374010 0.667318 0.342513 0.673880 0.308392 0.675189 0.275586 0.635820 0.248027 0.601699 0.274271 0.588574 0.333327 diff --git a/datasets/pinganmajia/train/labels/订单1814465_4_7180794.txt b/datasets/pinganmajia/train/labels/订单1814465_4_7180794.txt new file mode 100644 index 0000000..299d550 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814465_4_7180794.txt @@ -0,0 +1 @@ +4 1.000000 0.252801 0.942457 0.244144 0.936554 0.185093 0.883403 0.014479 0.710174 0.021042 0.659974 0.119468 0.643247 0.196898 0.669818 0.341250 0.602891 0.505301 0.549740 0.811076 0.579271 0.946238 0.588125 0.961991 0.602891 0.997419 1.000000 0.997419 diff --git a/datasets/pinganmajia/train/labels/订单1814466_4_7181143.txt b/datasets/pinganmajia/train/labels/订单1814466_4_7181143.txt new file mode 100644 index 0000000..b05b57e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814466_4_7181143.txt @@ -0,0 +1 @@ +4 0.000000 0.362604 0.086155 0.402940 0.212144 0.420000 0.209193 0.396377 0.219028 0.360938 0.229861 0.317639 0.250530 0.329444 0.283012 0.274329 0.308602 0.244144 0.419818 0.237581 0.473950 0.296632 0.466076 0.410810 0.422769 0.513171 0.380451 0.573542 0.374540 0.637847 0.340095 0.780891 0.347969 0.860938 0.333203 0.934433 0.311554 0.997419 0.002500 0.998738 -0.000000 0.818623 diff --git a/datasets/pinganmajia/train/labels/订单1814469_4_7180811.txt b/datasets/pinganmajia/train/labels/订单1814469_4_7180811.txt new file mode 100644 index 0000000..98c4eb9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814469_4_7180811.txt @@ -0,0 +1 @@ +4 1.000000 0.583880 0.951274 0.524928 0.902061 0.471120 0.825293 0.463249 0.748521 0.416003 0.781001 0.342513 0.786904 0.269023 0.783950 0.204720 0.795762 0.123353 0.617612 0.020990 0.569385 0.085293 0.559541 0.225716 0.552651 0.267708 0.543794 0.333327 0.558560 0.354323 0.590054 0.430443 0.589072 0.455378 0.446353 0.518366 0.419780 0.658789 0.377456 0.868763 0.376470 0.961934 0.399111 0.996055 1.000000 0.996055 diff --git a/datasets/pinganmajia/train/labels/订单1814472_4_7181197.txt b/datasets/pinganmajia/train/labels/订单1814472_4_7181197.txt new file mode 100644 index 0000000..bf386c5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814472_4_7181197.txt @@ -0,0 +1 @@ +4 0.984416 0.124657 0.678859 0.158781 0.591562 0.241458 0.646861 0.257206 0.655584 0.338566 0.667228 0.412059 0.696318 0.459301 0.635217 0.492114 0.693410 0.507862 0.745788 0.557727 0.617758 0.686336 0.591562 0.779516 0.568288 0.905496 0.521726 0.999988 0.526630 1.000000 0.998940 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814475_4_7180993.txt b/datasets/pinganmajia/train/labels/订单1814475_4_7180993.txt new file mode 100644 index 0000000..73b4612 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814475_4_7180993.txt @@ -0,0 +1 @@ +4 1.000000 0.544420 0.932598 0.514461 0.888309 0.473783 0.867635 0.434412 0.881415 0.372729 0.900116 0.367484 0.907990 0.334673 0.919804 0.290049 0.904056 0.274306 0.912911 0.191626 0.876495 0.098448 0.802678 0.074828 0.719013 0.106324 0.681612 0.158815 0.679645 0.275613 0.678664 0.349109 0.687518 0.423913 0.724920 0.472467 0.724920 0.492149 0.704252 0.502647 0.632402 0.530212 0.588113 0.666691 0.561538 0.786119 0.544804 0.853047 0.501673 1.000000 0.973358 1.000000 1.000000 0.951569 diff --git a/datasets/pinganmajia/train/labels/订单1814476_4_7180822.txt b/datasets/pinganmajia/train/labels/订单1814476_4_7180822.txt new file mode 100644 index 0000000..1801da7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814476_4_7180822.txt @@ -0,0 +1 @@ +4 0.243611 0.309746 0.154372 0.338617 0.115878 0.444917 0.133378 0.561712 0.147378 0.598458 0.171872 0.608958 0.194622 0.668013 0.187622 0.706071 0.194622 0.774312 0.185872 0.824179 0.170122 0.853050 0.199867 0.858300 0.231367 0.821554 0.254111 0.800558 0.245361 0.769062 0.257611 0.704758 0.273361 0.641767 0.287356 0.607646 0.297856 0.685071 0.297856 0.753313 0.308356 0.771687 0.329350 0.797933 0.336350 0.833367 0.376594 0.812371 0.373100 0.763813 0.374844 0.671950 0.381844 0.560400 0.380094 0.459350 0.401094 0.496096 0.404594 0.538092 0.418589 0.568275 0.432589 0.549900 0.444839 0.492158 0.439589 0.405546 0.402844 0.342554 0.331100 0.325492 0.345100 0.290058 0.350350 0.250688 0.303106 0.210008 0.262861 0.217879 0.231367 0.241504 0.233117 0.275625 0.236617 0.292683 diff --git a/datasets/pinganmajia/train/labels/订单1814477_4_7181022.txt b/datasets/pinganmajia/train/labels/订单1814477_4_7181022.txt new file mode 100644 index 0000000..739ca14 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814477_4_7181022.txt @@ -0,0 +1 @@ +4 1.000000 0.366270 0.947148 0.356943 0.947148 0.339883 0.959388 0.297891 0.959388 0.248018 0.927891 0.238838 0.899896 0.125977 0.808906 0.102354 0.639180 0.108916 0.618190 0.167969 0.590195 0.265078 0.597187 0.320205 0.653177 0.434375 0.674180 0.456680 0.632188 0.562979 0.549948 0.720459 0.537695 0.812324 0.576185 0.854326 0.607682 0.860879 0.640938 0.885820 0.628828 1.000000 0.997031 1.000000 0.999635 0.999990 1.000000 0.967246 diff --git a/datasets/pinganmajia/train/labels/订单1814478_4_7180827.txt b/datasets/pinganmajia/train/labels/订单1814478_4_7180827.txt new file mode 100644 index 0000000..270f64f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814478_4_7180827.txt @@ -0,0 +1 @@ +4 0.999514 0.469827 0.898139 0.454077 0.836130 0.408147 0.846957 0.334654 0.838096 0.279538 0.843019 0.132558 0.781995 0.081378 0.682587 0.098436 0.633375 0.161429 0.597942 0.230981 0.611721 0.307096 0.612707 0.370090 0.632389 0.408147 0.655029 0.460641 0.586130 0.526256 0.543808 0.620744 0.547745 0.707359 0.504822 1.000000 0.998543 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814480_4_7180934.txt b/datasets/pinganmajia/train/labels/订单1814480_4_7180934.txt new file mode 100644 index 0000000..a121cf7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814480_4_7180934.txt @@ -0,0 +1 @@ +4 0.006415 0.463284 0.043817 0.485588 0.114687 0.467214 0.121575 0.408162 0.165864 0.362230 0.166850 0.307116 0.161930 0.246748 0.164884 0.245433 0.164884 0.119453 0.162911 0.019714 0.395196 0.015776 0.430631 0.066953 0.448346 0.108946 0.451299 0.228374 0.438505 0.286119 0.443425 0.324175 0.432598 0.371413 0.425711 0.404224 0.404056 0.454093 0.504449 0.549894 0.542837 0.593203 0.533977 0.632574 0.575313 0.734935 0.581219 0.808423 0.566458 0.872729 0.587120 1.000000 0.000000 1.000000 0.000000 0.965662 diff --git a/datasets/pinganmajia/train/labels/订单1814481_4_7180883.txt b/datasets/pinganmajia/train/labels/订单1814481_4_7180883.txt new file mode 100644 index 0000000..f7125b8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814481_4_7180883.txt @@ -0,0 +1 @@ +4 0.000000 0.706287 0.087974 0.633836 0.170212 0.594461 0.156225 0.572157 0.177222 0.556409 0.161471 0.518346 0.164967 0.463223 0.212206 0.418603 0.310196 0.379240 0.439690 0.406801 0.481683 0.460600 0.488676 0.524902 0.499183 0.586593 0.481683 0.640392 0.532418 0.691569 0.541176 0.758505 0.556912 0.855613 0.558676 0.912047 0.626912 0.990784 0.002239 0.996042 0.000000 0.811324 diff --git a/datasets/pinganmajia/train/labels/订单1814482_4_7181050.txt b/datasets/pinganmajia/train/labels/订单1814482_4_7181050.txt new file mode 100644 index 0000000..ad1e8b4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814482_4_7181050.txt @@ -0,0 +1 @@ +4 0.002153 0.346493 0.073889 0.345182 0.073889 0.318932 0.040648 0.294002 0.016146 0.249384 0.023148 0.217882 0.033646 0.156207 0.035394 0.066962 0.101887 0.039410 0.192870 0.024974 0.303113 0.047283 0.390602 0.106337 0.395845 0.145703 0.397593 0.219193 0.404595 0.278255 0.381852 0.356988 0.353854 0.402925 0.443090 0.429167 0.465845 0.440981 0.451840 0.506597 0.465845 0.544653 0.467593 0.708698 0.485093 0.803186 0.514838 0.868802 0.504340 0.888490 0.507836 0.981667 0.458843 0.979036 0.439630 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814484_4_7180882.txt b/datasets/pinganmajia/train/labels/订单1814484_4_7180882.txt new file mode 100644 index 0000000..af80d7f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814484_4_7180882.txt @@ -0,0 +1 @@ +4 0.994363 0.536716 0.947124 0.527537 0.919118 0.539338 0.892876 0.440919 0.931373 0.443542 0.934869 0.402855 0.938366 0.355613 0.910376 0.337243 0.892876 0.349056 0.878873 0.249314 0.784395 0.188946 0.682908 0.186324 0.565670 0.236189 0.514918 0.322806 0.527173 0.363493 0.548170 0.503909 0.654902 0.603652 0.623415 0.629890 0.462435 0.769007 0.430931 0.860870 0.416944 0.923860 0.341699 0.998664 0.564902 1.000000 0.997843 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814485_4_7180944.txt b/datasets/pinganmajia/train/labels/订单1814485_4_7180944.txt new file mode 100644 index 0000000..3bd84de --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814485_4_7180944.txt @@ -0,0 +1 @@ +4 0.983889 0.267701 0.894650 0.207338 0.794907 0.215208 0.639177 0.309699 0.637428 0.364815 0.686420 0.442245 0.766914 0.556420 0.761667 0.587917 0.607685 0.687654 0.521944 0.779514 0.443200 0.854321 0.346965 0.914684 0.290936 1.000000 0.759393 1.000000 0.997881 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1814486_4_7180912.txt b/datasets/pinganmajia/train/labels/订单1814486_4_7180912.txt new file mode 100644 index 0000000..cdec734 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814486_4_7180912.txt @@ -0,0 +1 @@ +4 0.994608 0.492149 0.870588 0.448848 0.851887 0.448848 0.863701 0.388480 0.864688 0.342549 0.880435 0.301863 0.880435 0.257247 0.867635 0.136511 0.820392 0.048587 0.721967 0.042018 0.679645 0.099763 0.643229 0.165384 0.625515 0.266430 0.629449 0.337296 0.639289 0.431781 0.666850 0.484281 0.587126 0.524959 0.487714 0.736250 0.448346 0.828113 0.434773 1.000000 0.718873 1.000000 0.997561 0.997402 diff --git a/datasets/pinganmajia/train/labels/订单1814488_4_7180907.txt b/datasets/pinganmajia/train/labels/订单1814488_4_7180907.txt new file mode 100644 index 0000000..01d2e78 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814488_4_7180907.txt @@ -0,0 +1 @@ +4 0.000000 0.197729 0.039884 0.185065 0.098940 0.119453 0.099920 0.056454 0.087126 0.017083 0.361734 0.014461 0.353860 0.110261 0.308585 0.241495 0.312518 0.276928 0.318425 0.293987 0.367635 0.364853 0.407990 0.402917 0.449332 0.605016 0.493621 0.770368 0.473940 0.872729 0.435551 0.913415 0.420784 0.997402 0.213235 1.000000 0.001489 1.000000 0.000000 0.595033 diff --git a/datasets/pinganmajia/train/labels/订单1814490_4_7180953.txt b/datasets/pinganmajia/train/labels/订单1814490_4_7180953.txt new file mode 100644 index 0000000..e91313b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814490_4_7180953.txt @@ -0,0 +1 @@ +4 0.000490 0.068211 0.117729 0.034093 0.294444 0.062966 0.348693 0.086593 0.324199 0.114142 0.325948 0.178456 0.320703 0.244069 0.303203 0.330686 0.278709 0.400233 0.231454 0.430417 0.252451 0.478971 0.327696 0.590527 0.352190 0.627267 0.390686 0.712574 0.455425 0.951422 0.464183 0.999975 0.002239 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814491_4_7181010.txt b/datasets/pinganmajia/train/labels/订单1814491_4_7181010.txt new file mode 100644 index 0000000..0200419 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814491_4_7181010.txt @@ -0,0 +1 @@ +4 0.402865 0.192961 0.369620 0.225779 0.280380 0.248081 0.254137 0.304518 0.220892 0.429189 0.240146 0.587982 0.248889 0.597160 0.247135 0.632599 0.278640 0.658849 0.306637 0.652281 0.334635 0.738893 0.325877 0.813706 0.338129 0.860943 0.343377 0.948871 0.369620 0.969868 0.394123 0.960680 0.397617 0.921316 0.395877 0.849134 0.446608 0.905559 0.507851 0.910811 0.513099 0.891129 0.465863 0.843882 0.472865 0.778268 0.499108 0.724463 0.535848 0.559112 0.562105 0.497423 0.548099 0.399002 0.549854 0.345197 0.560351 0.308454 0.514854 0.250713 0.502602 0.232336 0.546345 0.173279 0.539357 0.095855 0.469357 0.076173 0.429123 0.090603 0.411623 0.140471 0.394123 0.161469 diff --git a/datasets/pinganmajia/train/labels/订单1814493_4_7181123.txt b/datasets/pinganmajia/train/labels/订单1814493_4_7181123.txt new file mode 100644 index 0000000..dc0ea49 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814493_4_7181123.txt @@ -0,0 +1 @@ +4 0.001463 0.599716 0.058544 0.574782 0.125476 0.509167 0.101854 0.456676 0.085121 0.448797 0.088075 0.410739 0.061499 0.364811 0.066420 0.351686 0.052642 0.257197 0.065433 0.175833 0.071342 0.123343 0.140241 0.076098 0.238665 0.086591 0.293786 0.139091 0.337088 0.233570 0.347919 0.301818 0.362678 0.410739 0.351854 0.494725 0.424688 0.469792 0.490632 0.517036 0.595952 0.688958 0.656974 0.812311 0.643196 0.938295 0.650085 0.993419 0.002443 0.998665 diff --git a/datasets/pinganmajia/train/labels/订单1814498_4_7180981.txt b/datasets/pinganmajia/train/labels/订单1814498_4_7180981.txt new file mode 100644 index 0000000..a260329 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814498_4_7180981.txt @@ -0,0 +1 @@ +4 0.997891 0.156162 0.927891 0.087920 0.850911 0.076104 0.703919 0.136475 0.632188 0.181094 0.625182 0.288701 0.633932 0.405498 0.651432 0.481621 0.663685 0.561670 0.612930 0.631221 0.588438 0.782139 0.541471 1.000000 0.994401 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814499_4_7181124.txt b/datasets/pinganmajia/train/labels/订单1814499_4_7181124.txt new file mode 100644 index 0000000..c346dab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814499_4_7181124.txt @@ -0,0 +1 @@ +4 0.004438 0.175865 0.156010 0.258538 0.209163 0.241481 0.213096 0.169301 0.222942 0.120744 0.239673 0.017071 0.420774 0.018385 0.435538 0.098436 0.431601 0.174551 0.416837 0.249353 0.406010 0.291346 0.371563 0.339904 0.366639 0.366154 0.438490 0.461955 0.448337 0.535442 0.442428 0.595814 0.440462 0.704737 0.462115 0.872712 0.487707 0.993449 0.456207 0.997385 0.438490 0.997385 0.145043 1.000000 0.000000 1.000000 0.000000 0.640994 diff --git a/datasets/pinganmajia/train/labels/订单1814500_4_7181041.txt b/datasets/pinganmajia/train/labels/订单1814500_4_7181041.txt new file mode 100644 index 0000000..40643ca --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814500_4_7181041.txt @@ -0,0 +1 @@ +4 0.003900 0.410799 0.077384 0.354366 0.068634 0.333368 0.079144 0.274314 0.065139 0.237569 0.070394 0.153576 0.112384 0.073524 0.199873 0.035469 0.345104 0.034158 0.450093 0.072214 0.509583 0.132578 0.495590 0.217882 0.478090 0.270373 0.478090 0.350425 0.443090 0.423924 0.567326 0.477726 0.576076 0.527595 0.602326 0.614210 0.644317 0.624705 0.609317 0.682448 0.658310 0.792691 0.737060 0.927856 0.742303 0.985599 0.745255 1.000000 0.000000 1.000000 0.000000 0.852179 diff --git a/datasets/pinganmajia/train/labels/订单1814502_4_7181253.txt b/datasets/pinganmajia/train/labels/订单1814502_4_7181253.txt new file mode 100644 index 0000000..ab82f56 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814502_4_7181253.txt @@ -0,0 +1 @@ +4 0.871914 0.387136 0.794922 0.345142 0.814170 0.316270 0.808919 0.258528 0.766927 0.241467 0.719681 0.270339 0.721432 0.308396 0.730179 0.347766 0.642692 0.388450 0.611195 0.517058 0.616445 0.586611 0.640941 0.624670 0.642692 0.717847 0.647939 0.776899 0.654941 0.801836 0.619945 0.841206 0.616445 0.863516 0.649691 0.863516 0.670687 0.830706 0.688187 0.787400 0.696934 0.733594 0.730179 0.635168 0.738929 0.698162 0.742428 0.780837 0.754678 0.816270 0.752926 0.851704 0.770426 0.870076 0.812422 0.909446 0.826419 0.885825 0.798421 0.828081 0.812422 0.757214 0.812422 0.702097 0.835166 0.664041 0.833418 0.627295 0.850915 0.551179 0.906908 0.523621 0.908659 0.489500 diff --git a/datasets/pinganmajia/train/labels/订单1814503_4_7181077.txt b/datasets/pinganmajia/train/labels/订单1814503_4_7181077.txt new file mode 100644 index 0000000..8e7e236 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814503_4_7181077.txt @@ -0,0 +1 @@ +4 0.994272 0.366175 0.920778 0.333367 0.917278 0.300558 0.964522 0.242817 0.947028 0.178512 0.943528 0.015779 0.465833 0.030217 0.458839 0.106333 0.474583 0.178512 0.474583 0.308433 0.509578 0.379300 0.590072 0.439667 0.481583 0.511846 0.425589 0.653575 0.373100 0.889796 0.366417 1.000000 1.000000 1.000000 1.000000 0.713575 diff --git a/datasets/pinganmajia/train/labels/订单1814507_4_7181059.txt b/datasets/pinganmajia/train/labels/订单1814507_4_7181059.txt new file mode 100644 index 0000000..a9f7fef --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814507_4_7181059.txt @@ -0,0 +1 @@ +4 0.008397 0.354325 0.064383 0.332016 0.067889 0.287396 0.036390 0.257215 0.055640 0.233590 0.050392 0.140415 0.092388 0.066929 0.157128 0.015744 0.428339 0.018365 0.545582 0.091860 0.563080 0.166661 0.561326 0.275588 0.528074 0.427820 0.652318 0.528867 0.669815 0.620735 0.650565 0.661410 0.570069 0.847768 0.578824 0.980311 0.634821 1.000000 0.000000 1.000000 0.000000 0.973806 diff --git a/datasets/pinganmajia/train/labels/订单1814508_4_7181030.txt b/datasets/pinganmajia/train/labels/订单1814508_4_7181030.txt new file mode 100644 index 0000000..aa9e169 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814508_4_7181030.txt @@ -0,0 +1 @@ +4 1.000000 0.538863 0.959282 0.535469 0.922535 0.447543 0.938275 0.431797 0.971528 0.387179 0.966273 0.313681 1.000000 0.253993 1.000000 0.197734 0.996019 0.182448 0.887535 0.072214 0.773796 0.051215 0.649572 0.091901 0.549826 0.179826 0.541076 0.311059 0.535833 0.396363 0.560324 0.481667 0.532326 0.539410 0.434340 0.586649 0.388854 0.720512 0.381852 0.843872 0.346875 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814510_4_7181556.txt b/datasets/pinganmajia/train/labels/订单1814510_4_7181556.txt new file mode 100644 index 0000000..bdee9dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814510_4_7181556.txt @@ -0,0 +1 @@ +4 0.018008 0.405498 0.030260 0.356943 0.021510 0.312324 0.037253 0.266396 0.073997 0.161406 0.168490 0.107598 0.290977 0.112852 0.345221 0.156162 0.366211 0.227021 0.367969 0.293955 0.373216 0.366133 0.324219 0.454062 0.388958 0.513115 0.346966 0.552480 0.399466 0.632539 0.441458 0.736211 0.499206 0.887129 0.521693 1.000000 0.005846 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814512_4_7181287.txt b/datasets/pinganmajia/train/labels/订单1814512_4_7181287.txt new file mode 100644 index 0000000..d0501d2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814512_4_7181287.txt @@ -0,0 +1 @@ +4 0.000000 0.592083 0.049477 0.553775 0.091471 0.524902 0.084477 0.459289 0.056487 0.444853 0.058235 0.408113 0.061732 0.354301 0.105474 0.354301 0.131716 0.238824 0.206961 0.196826 0.380196 0.196826 0.462435 0.272941 0.465931 0.385797 0.464183 0.438297 0.439690 0.539338 0.387190 0.610208 0.509673 0.667953 0.581422 0.858235 0.605915 0.923860 0.611160 0.985539 0.570016 1.000000 0.116487 1.000000 0.003987 0.998664 0.000000 0.814975 diff --git a/datasets/pinganmajia/train/labels/订单1814513_4_7181120.txt b/datasets/pinganmajia/train/labels/订单1814513_4_7181120.txt new file mode 100644 index 0000000..b5db368 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814513_4_7181120.txt @@ -0,0 +1 @@ +4 1.000000 0.485025 0.973272 0.456725 0.997767 0.425229 1.000000 0.401388 1.000000 0.349433 0.973272 0.343867 0.973272 0.191633 0.903283 0.124704 0.770300 0.101083 0.614567 0.141767 0.539328 0.220504 0.541078 0.330742 0.539328 0.438354 0.551572 0.513158 0.485083 0.561712 0.415094 0.605021 0.422089 0.636517 0.399344 0.910796 0.395844 1.000000 0.403506 1.000000 1.000000 0.997437 diff --git a/datasets/pinganmajia/train/labels/订单1814516_4_7181362.txt b/datasets/pinganmajia/train/labels/订单1814516_4_7181362.txt new file mode 100644 index 0000000..18aa473 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814516_4_7181362.txt @@ -0,0 +1 @@ +4 0.335477 0.181137 0.265477 0.236255 0.246235 0.328118 0.265477 0.418667 0.286484 0.451471 0.302235 0.463284 0.316222 0.442284 0.345974 0.518402 0.356471 0.590578 0.372222 0.622078 0.349477 0.657510 0.373974 0.656196 0.419464 0.615520 0.442209 0.640451 0.480706 0.657510 0.494706 0.640451 0.478954 0.599765 0.475451 0.524961 0.489451 0.480343 0.494706 0.405539 0.506954 0.440980 0.527948 0.427853 0.534954 0.314990 0.515699 0.267745 0.494706 0.213941 0.456209 0.191627 0.428209 0.170637 0.424719 0.112892 0.382719 0.084020 0.344222 0.101078 0.337229 0.137824 0.335477 0.158824 diff --git a/datasets/pinganmajia/train/labels/订单1814519_4_7181106.txt b/datasets/pinganmajia/train/labels/订单1814519_4_7181106.txt new file mode 100644 index 0000000..dc61148 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814519_4_7181106.txt @@ -0,0 +1 @@ +4 1.000000 0.311897 0.940462 0.293974 0.838096 0.338596 0.816447 0.313660 0.770183 0.265103 0.762312 0.190301 0.731798 0.119436 0.704240 0.019692 0.473923 0.022321 0.450303 0.141744 0.481798 0.265103 0.513293 0.362218 0.500500 0.404212 0.480813 0.442269 0.474909 0.500013 0.410933 0.577436 0.403058 0.681115 0.373534 0.830718 0.379437 0.908147 0.382269 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814521_4_7181237.txt b/datasets/pinganmajia/train/labels/订单1814521_4_7181237.txt new file mode 100644 index 0000000..d1c521c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814521_4_7181237.txt @@ -0,0 +1 @@ +4 0.999630 0.304452 0.861399 0.293951 0.747665 0.349066 0.703920 0.465864 0.712665 0.557731 0.623426 0.656157 0.598930 0.746705 0.565689 0.864815 0.553436 0.999985 1.000000 0.997369 1.000000 0.550131 0.990885 0.543295 1.000000 0.533526 1.000000 0.328102 diff --git a/datasets/pinganmajia/train/labels/订单1814522_4_7181306.txt b/datasets/pinganmajia/train/labels/订单1814522_4_7181306.txt new file mode 100644 index 0000000..fc5108c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814522_4_7181306.txt @@ -0,0 +1 @@ +4 1.000000 0.518725 0.838627 0.461912 0.794886 0.459289 0.798382 0.410735 0.805392 0.377929 0.787892 0.337243 0.749395 0.261127 0.667157 0.216507 0.569167 0.230944 0.490425 0.299191 0.507925 0.355613 0.506176 0.421238 0.555163 0.497353 0.574412 0.515723 0.534167 0.643015 0.516667 0.796556 0.516667 0.875306 0.534967 1.000000 0.928007 1.000000 1.000000 0.998799 diff --git a/datasets/pinganmajia/train/labels/订单1814523_4_7181224.txt b/datasets/pinganmajia/train/labels/订单1814523_4_7181224.txt new file mode 100644 index 0000000..a1bb0ed --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814523_4_7181224.txt @@ -0,0 +1 @@ +4 0.999517 0.513154 0.920778 0.479038 0.866533 0.418667 0.889283 0.355675 0.885783 0.305808 0.845539 0.301871 0.849039 0.200821 0.845539 0.093208 0.814044 0.061713 0.647811 0.051213 0.500833 0.077463 0.378344 0.144392 0.409844 0.254625 0.430839 0.338617 0.469333 0.486908 0.369600 0.632579 0.345100 0.744129 0.355600 0.791371 0.366100 0.850425 0.322356 0.993471 1.000000 0.993471 1.000000 0.557142 diff --git a/datasets/pinganmajia/train/labels/订单1814524_4_7181292.txt b/datasets/pinganmajia/train/labels/订单1814524_4_7181292.txt new file mode 100644 index 0000000..adb4f15 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814524_4_7181292.txt @@ -0,0 +1 @@ +4 0.708130 0.339839 0.661870 0.364773 0.631360 0.486820 0.615609 0.580000 0.611672 0.611499 0.617577 0.628553 0.630373 0.606243 0.654978 0.556374 0.652029 0.621996 0.655965 0.677113 0.660883 0.723041 0.663838 0.842463 0.630373 0.873962 0.639232 0.888399 0.664825 0.884459 0.693366 0.879211 0.697303 0.839839 0.706162 0.767661 0.710099 0.673173 0.720927 0.774225 0.719940 0.847712 0.725844 0.918582 0.743564 0.944832 0.758328 0.926455 0.756360 0.847712 0.772105 0.774225 0.778010 0.636433 0.792774 0.607558 0.794742 0.641681 0.808525 0.666615 0.820334 0.629868 0.837067 0.517010 0.815411 0.373962 0.768169 0.338531 0.773092 0.253231 0.744545 0.223041 0.710099 0.258480 0.707144 0.313596 diff --git a/datasets/pinganmajia/train/labels/订单1814525_4_7181524.txt b/datasets/pinganmajia/train/labels/订单1814525_4_7181524.txt new file mode 100644 index 0000000..91e7731 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814525_4_7181524.txt @@ -0,0 +1 @@ +4 0.247227 0.275586 0.150990 0.316260 0.108997 0.425186 0.110755 0.510488 0.154492 0.578730 0.177240 0.597100 0.206992 0.667969 0.219232 0.778203 0.227982 0.847764 0.196484 0.876631 0.215742 0.892383 0.245482 0.877939 0.278724 0.847764 0.301471 0.782139 0.294479 0.730957 0.310221 0.639102 0.331224 0.734902 0.318971 0.797891 0.331224 0.850381 0.355716 0.864824 0.418711 0.895000 0.432708 0.872695 0.408216 0.825449 0.390716 0.751963 0.402969 0.703398 0.436211 0.646973 0.441458 0.568232 0.467708 0.478994 0.444961 0.381885 0.408216 0.316260 0.360964 0.296582 0.327721 0.266396 0.336471 0.224404 0.332969 0.188965 0.280482 0.160098 0.238477 0.182402 0.220990 0.230957 0.229740 0.251963 diff --git a/datasets/pinganmajia/train/labels/订单1814527_4_7181276.txt b/datasets/pinganmajia/train/labels/订单1814527_4_7181276.txt new file mode 100644 index 0000000..9628c93 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814527_4_7181276.txt @@ -0,0 +1 @@ +4 0.594444 0.283500 0.533203 0.330735 0.498209 0.353049 0.456209 0.465912 0.436967 0.561716 0.452706 0.594520 0.447464 0.637824 0.464954 0.640451 0.477203 0.649637 0.494706 0.568275 0.496458 0.636510 0.496458 0.745441 0.506954 0.854363 0.513948 0.900294 0.471961 0.946225 0.480706 0.969843 0.508706 0.967225 0.573451 0.912108 0.582196 0.859608 0.608444 0.758559 0.617190 0.847804 0.606693 0.926539 0.615438 0.982971 0.655686 0.998716 0.673176 0.959353 0.674928 0.909480 0.701176 0.799245 0.753673 0.675882 0.762418 0.703441 0.804418 0.681137 0.827163 0.645696 0.848157 0.503971 0.832418 0.410794 0.825412 0.359608 0.779922 0.329431 0.716928 0.282186 0.725673 0.231000 0.727425 0.183755 0.664431 0.168010 0.604941 0.198196 0.596196 0.246755 diff --git a/datasets/pinganmajia/train/labels/订单1814528_4_7181348.txt b/datasets/pinganmajia/train/labels/订单1814528_4_7181348.txt new file mode 100644 index 0000000..d18b66c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814528_4_7181348.txt @@ -0,0 +1 @@ +4 0.009232 0.266373 0.077484 0.217819 0.238464 0.223076 0.341699 0.286066 0.404690 0.414669 0.413431 0.493407 0.394183 0.549841 0.453676 0.570833 0.448431 0.625956 0.509673 0.682390 0.509673 0.755882 0.544673 0.801814 0.546422 0.885797 0.638448 1.000000 0.000000 1.000000 0.000000 0.918799 diff --git a/datasets/pinganmajia/train/labels/订单1814529_4_7181352.txt b/datasets/pinganmajia/train/labels/订单1814529_4_7181352.txt new file mode 100644 index 0000000..6c6ca00 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814529_4_7181352.txt @@ -0,0 +1 @@ +4 0.001714 0.114161 0.205687 0.099724 0.488340 0.152218 0.508735 0.228333 0.494177 0.318885 0.462122 0.371379 0.389265 0.450116 0.252313 0.514424 0.351388 0.635159 0.360136 0.723082 0.493918 1.000000 0.000000 1.000000 0.000000 0.290061 diff --git a/datasets/pinganmajia/train/labels/订单1814530_4_7181332.txt b/datasets/pinganmajia/train/labels/订单1814530_4_7181332.txt new file mode 100644 index 0000000..bee2d3e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814530_4_7181332.txt @@ -0,0 +1 @@ +4 0.997859 0.591838 0.903382 0.545907 0.880621 0.490784 0.891127 0.456667 0.873627 0.410735 0.831634 0.313627 0.726650 0.279498 0.563922 0.321495 0.532418 0.397610 0.541176 0.469792 0.539428 0.518346 0.583170 0.587904 0.537680 0.686324 0.488676 0.782120 0.457190 0.898922 0.394853 1.000000 0.844706 1.000000 0.999608 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814532_4_7181391.txt b/datasets/pinganmajia/train/labels/订单1814532_4_7181391.txt new file mode 100644 index 0000000..8d5780b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814532_4_7181391.txt @@ -0,0 +1 @@ +4 0.992625 0.328096 0.866639 0.290038 0.844005 0.272974 0.842034 0.224417 0.844005 0.128622 0.815462 0.027571 0.667822 0.024942 0.625500 0.116808 0.628452 0.250667 0.619596 0.284788 0.633375 0.341218 0.599909 0.375340 0.572351 0.455391 0.569399 0.552506 0.573337 0.812346 0.577269 0.875340 0.599909 0.916019 0.611721 1.000000 0.973471 1.000000 0.986721 0.901583 0.990659 0.809724 1.000000 0.754910 1.000000 0.555744 diff --git a/datasets/pinganmajia/train/labels/订单1814534_4_7181470.txt b/datasets/pinganmajia/train/labels/订单1814534_4_7181470.txt new file mode 100644 index 0000000..eb37d7b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814534_4_7181470.txt @@ -0,0 +1 @@ +4 0.007247 0.398979 0.025613 0.389788 0.004616 0.354355 0.000000 0.314322 0.000000 0.252623 0.022990 0.254616 0.024306 0.147010 0.068922 0.097141 0.148979 0.063015 0.265776 0.089265 0.309085 0.152255 0.328766 0.248056 0.324828 0.311046 0.339265 0.339918 0.281520 0.488219 0.323513 0.526275 0.390449 0.606324 0.410131 0.683750 0.456062 0.762492 0.461315 0.846487 0.488178 1.000000 0.003309 1.000000 0.001993 0.480343 0.020368 0.479028 0.029551 0.423913 0.012492 0.400286 diff --git a/datasets/pinganmajia/train/labels/订单1814535_4_7181319.txt b/datasets/pinganmajia/train/labels/订单1814535_4_7181319.txt new file mode 100644 index 0000000..9249f5c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814535_4_7181319.txt @@ -0,0 +1 @@ +4 0.006429 0.648256 0.147922 0.536707 0.168880 0.510463 0.160146 0.430415 0.165390 0.402854 0.142679 0.371354 0.156656 0.343805 0.182857 0.261122 0.273701 0.227000 0.336591 0.220439 0.380260 0.250622 0.451883 0.335927 0.460633 0.377915 0.462370 0.410732 0.441412 0.507841 0.423945 0.559024 0.429188 0.590524 0.462370 0.653512 0.502549 0.807049 0.544481 0.998659 0.358344 1.000000 0.000000 1.000000 0.000000 0.973841 diff --git a/datasets/pinganmajia/train/labels/订单1814537_4_7181412.txt b/datasets/pinganmajia/train/labels/订单1814537_4_7181412.txt new file mode 100644 index 0000000..52584a2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814537_4_7181412.txt @@ -0,0 +1 @@ +4 0.994445 0.438344 0.968811 0.409472 0.948110 0.356972 0.922476 0.328101 0.919518 0.276924 0.932335 0.188994 0.900787 0.107630 0.760799 0.080073 0.688829 0.171932 0.685872 0.271672 0.686860 0.364846 0.635591 0.464586 0.559683 0.559075 0.496591 0.745430 0.486732 0.923904 0.526744 1.000000 1.000000 1.000000 1.000000 0.969610 diff --git a/datasets/pinganmajia/train/labels/订单1814538_4_7181453.txt b/datasets/pinganmajia/train/labels/订单1814538_4_7181453.txt new file mode 100644 index 0000000..97dc23b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814538_4_7181453.txt @@ -0,0 +1 @@ +4 1.000000 0.674355 0.890249 0.607604 0.865645 0.587923 0.854819 0.482936 0.842021 0.464564 0.866631 0.402884 0.863677 0.359577 0.879424 0.227025 0.848911 0.128600 0.757378 0.090547 0.649111 0.124668 0.599897 0.215215 0.605801 0.358262 0.602852 0.398945 0.616631 0.448815 0.623521 0.486868 0.433560 0.653535 0.468008 0.727025 0.468989 0.999993 1.000000 0.997389 diff --git a/datasets/pinganmajia/train/labels/订单1814539_4_7181517.txt b/datasets/pinganmajia/train/labels/订单1814539_4_7181517.txt new file mode 100644 index 0000000..32e996b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814539_4_7181517.txt @@ -0,0 +1 @@ +4 0.985542 0.355687 0.933042 0.286133 0.772062 0.278258 0.637333 0.355687 0.633833 0.422617 0.640833 0.488234 0.651333 0.530227 0.658333 0.565664 0.640833 0.624719 0.535844 0.741516 0.462354 0.838625 0.355615 0.998734 0.512260 1.000000 1.000000 1.000000 1.000000 0.842805 diff --git a/datasets/pinganmajia/train/labels/订单1814540_4_7181465.txt b/datasets/pinganmajia/train/labels/订单1814540_4_7181465.txt new file mode 100644 index 0000000..ce1320e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814540_4_7181465.txt @@ -0,0 +1 @@ +4 0.005423 0.497385 0.124514 0.448827 0.173726 0.397647 0.160933 0.371404 0.162904 0.325468 0.148139 0.269038 0.158966 0.234917 0.161918 0.127308 0.209163 0.057750 0.282981 0.044628 0.347942 0.089250 0.382389 0.171929 0.389279 0.276910 0.403058 0.304474 0.394202 0.354340 0.389279 0.389776 0.448337 0.431769 0.493611 0.494763 0.547745 0.698173 0.563490 0.908147 0.559553 0.951455 0.559553 0.985577 0.537087 1.000000 0.060399 1.000000 0.057587 0.921269 0.046760 0.908147 0.011327 0.943577 0.005423 0.948827 diff --git a/datasets/pinganmajia/train/labels/订单1814543_4_7181421.txt b/datasets/pinganmajia/train/labels/订单1814543_4_7181421.txt new file mode 100644 index 0000000..dd3942f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814543_4_7181421.txt @@ -0,0 +1 @@ +4 0.994608 0.210000 0.944412 0.139134 0.838113 0.124698 0.774136 0.187688 0.726887 0.297925 0.737714 0.360915 0.754449 0.439657 0.772163 0.497402 0.703266 0.573513 0.633388 0.696879 0.570392 0.876667 0.556612 0.976405 0.575999 1.000000 0.834877 1.000000 1.000000 0.997443 1.000000 0.588431 0.999528 0.510523 0.979841 0.511838 0.992635 0.438350 1.000000 0.421168 1.000000 0.401773 diff --git a/datasets/pinganmajia/train/labels/订单1814544_4_7181431.txt b/datasets/pinganmajia/train/labels/订单1814544_4_7181431.txt new file mode 100644 index 0000000..2422113 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814544_4_7181431.txt @@ -0,0 +1 @@ +4 0.700430 0.304453 0.667174 0.322822 0.654935 0.350381 0.611185 0.422559 0.628685 0.472432 0.646185 0.505244 0.654935 0.527549 0.661927 0.675840 0.653177 0.694219 0.663685 0.706025 0.695182 0.686338 0.714427 0.706025 0.709180 0.719150 0.735417 0.712588 0.754674 0.669277 0.779167 0.587920 0.793164 0.535420 0.814167 0.552480 0.842161 0.501299 0.871901 0.447500 0.861406 0.383193 0.840404 0.330703 0.829909 0.314951 0.777422 0.308389 0.793164 0.242773 0.752917 0.212588 0.709180 0.227021 0.700430 0.262461 0.707422 0.288701 diff --git a/datasets/pinganmajia/train/labels/订单1814545_4_7181446.txt b/datasets/pinganmajia/train/labels/订单1814545_4_7181446.txt new file mode 100644 index 0000000..74b7c78 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814545_4_7181446.txt @@ -0,0 +1 @@ +4 0.990866 0.557721 0.983873 0.515723 0.948873 0.481605 0.975114 0.439608 0.985621 0.405490 0.989118 0.376618 0.982124 0.342488 1.000000 0.309914 1.000000 0.286679 0.952369 0.206005 0.805392 0.145637 0.616405 0.135147 0.546422 0.204694 0.488676 0.349056 0.530670 0.405490 0.558676 0.486850 0.590163 0.524902 0.570915 0.547218 0.511422 0.553775 0.374935 0.677132 0.304951 0.817561 0.329444 0.900233 0.275212 0.997353 0.643775 1.000000 1.000000 1.000000 1.000000 0.848039 diff --git a/datasets/pinganmajia/train/labels/订单1814546_4_7181450.txt b/datasets/pinganmajia/train/labels/订单1814546_4_7181450.txt new file mode 100644 index 0000000..76b2d5a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814546_4_7181450.txt @@ -0,0 +1 @@ +4 0.574433 0.305756 0.560433 0.321506 0.521942 0.353000 0.488692 0.434369 0.485192 0.513106 0.486942 0.551162 0.493942 0.532794 0.504442 0.555100 0.523692 0.503919 0.525442 0.624656 0.534183 0.728331 0.542933 0.745387 0.516692 0.772950 0.528933 0.784762 0.558683 0.772950 0.579683 0.753263 0.584933 0.679775 0.579683 0.649587 0.588433 0.565600 0.604175 0.641719 0.593675 0.702081 0.591933 0.742769 0.604175 0.765075 0.639175 0.780825 0.644425 0.761137 0.623425 0.732269 0.653175 0.645650 0.674167 0.513106 0.677667 0.461925 0.689917 0.520981 0.686417 0.544606 0.688167 0.570850 0.705667 0.564288 0.717917 0.526231 0.731908 0.436994 0.716167 0.355625 0.674167 0.333319 0.684667 0.321506 0.651425 0.297881 0.656675 0.274263 0.639175 0.238831 0.598925 0.234894 0.577933 0.258512 0.572683 0.283450 diff --git a/datasets/pinganmajia/train/labels/订单1814550_4_7181537.txt b/datasets/pinganmajia/train/labels/订单1814550_4_7181537.txt new file mode 100644 index 0000000..e9e5911 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814550_4_7181537.txt @@ -0,0 +1 @@ +4 0.677561 0.022342 0.625067 0.127329 0.602317 0.220504 0.595322 0.301871 0.598817 0.371425 0.628567 0.417354 0.506083 0.564338 0.474583 0.715254 0.469333 0.805808 0.415094 0.996096 1.000000 0.998683 1.000000 0.021038 diff --git a/datasets/pinganmajia/train/labels/订单1814553_4_7181619.txt b/datasets/pinganmajia/train/labels/订单1814553_4_7181619.txt new file mode 100644 index 0000000..1e34c36 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814553_4_7181619.txt @@ -0,0 +1 @@ +4 1.000000 0.527390 0.964624 0.523591 0.943627 0.493407 0.969869 0.446164 0.996111 0.431728 1.000000 0.392880 1.000000 0.231801 0.882386 0.188946 0.773889 0.208640 0.684657 0.290000 0.684657 0.343799 0.675899 0.451422 0.703905 0.519657 0.625163 0.548529 0.476422 0.729632 0.315458 0.948787 0.289199 0.999975 1.000000 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814554_4_7181591.txt b/datasets/pinganmajia/train/labels/订单1814554_4_7181591.txt new file mode 100644 index 0000000..6ad4c8a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814554_4_7181591.txt @@ -0,0 +1 @@ +4 0.997859 0.295245 0.873627 0.206005 0.752892 0.185012 0.593660 0.206005 0.532418 0.299191 0.516667 0.421238 0.523676 0.492096 0.521928 0.532782 0.565670 0.615453 0.423938 0.692892 0.394183 0.759816 0.311944 0.909424 0.243709 0.930417 0.185719 1.000000 0.798954 1.000000 1.000000 0.998725 1.000000 0.643444 0.999608 0.629890 0.943627 0.559032 0.941879 0.539338 0.980359 0.535404 0.997859 0.509154 diff --git a/datasets/pinganmajia/train/labels/订单1814556_4_7181570.txt b/datasets/pinganmajia/train/labels/订单1814556_4_7181570.txt new file mode 100644 index 0000000..8b65d53 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814556_4_7181570.txt @@ -0,0 +1 @@ +4 0.000000 0.082118 0.063307 0.036775 0.160911 0.028902 0.293385 0.064333 0.390990 0.150951 0.399701 0.194255 0.357865 0.270373 0.343919 0.307118 0.340443 0.345176 0.305586 0.391108 0.270716 0.435725 0.345664 0.468539 0.368320 0.560402 0.377044 0.665382 0.371810 0.750686 0.411901 0.838618 0.408411 0.875363 0.439792 0.925225 0.434557 0.998716 0.413646 0.986912 0.004049 0.998716 0.000000 0.696382 diff --git a/datasets/pinganmajia/train/labels/订单1814557_4_7181563.txt b/datasets/pinganmajia/train/labels/订单1814557_4_7181563.txt new file mode 100644 index 0000000..6a4d5d8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814557_4_7181563.txt @@ -0,0 +1 @@ +4 0.235764 0.015799 0.249540 0.095845 0.260373 0.149653 0.264306 0.199525 0.262335 0.248079 0.247578 0.290069 0.257422 0.313692 0.347969 0.383252 0.382422 0.469861 0.396198 0.547292 0.404071 0.648345 0.421788 0.731019 0.448359 0.796632 0.489705 0.904248 0.487734 0.937060 0.471988 0.946238 0.466076 0.952801 0.456233 0.937060 0.451319 0.958056 0.464115 0.998738 0.002500 0.998738 -0.000000 0.810845 0.000000 0.331759 0.020217 0.330752 0.027101 0.308449 0.005451 0.237581 0.000000 0.036562 0.000000 0.019722 diff --git a/datasets/pinganmajia/train/labels/订单1814558_4_7181663.txt b/datasets/pinganmajia/train/labels/订单1814558_4_7181663.txt new file mode 100644 index 0000000..cee17c6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814558_4_7181663.txt @@ -0,0 +1 @@ +4 1.000000 0.353310 0.859650 0.332006 0.842150 0.321512 0.831656 0.225710 0.744167 0.173218 0.628683 0.162716 0.555185 0.212585 0.546440 0.248017 0.527191 0.316258 0.532438 0.395000 0.537695 0.460617 0.453704 0.528858 0.507942 0.604977 0.460700 0.847755 0.457202 0.990802 1.000000 0.998557 diff --git a/datasets/pinganmajia/train/labels/订单1814562_4_7181906.txt b/datasets/pinganmajia/train/labels/订单1814562_4_7181906.txt new file mode 100644 index 0000000..00ee8dc --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814562_4_7181906.txt @@ -0,0 +1 @@ +4 0.993637 0.547292 0.957222 0.506609 0.936554 0.473796 0.934583 0.422616 0.916866 0.345197 0.930642 0.261204 0.959193 0.189028 0.923759 0.057789 0.888325 0.023669 0.855842 0.018426 0.751510 0.022361 0.679661 0.122095 0.658993 0.212650 0.666866 0.248079 0.677691 0.345197 0.685564 0.408183 0.643247 0.472488 0.547769 0.569606 0.535964 0.653588 0.488715 0.786134 0.487734 0.850440 0.510373 0.888495 0.524149 0.904248 0.491667 0.998738 1.000000 0.996123 1.000000 0.869606 diff --git a/datasets/pinganmajia/train/labels/订单1814563_4_7181678.txt b/datasets/pinganmajia/train/labels/订单1814563_4_7181678.txt new file mode 100644 index 0000000..a4065c6 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814563_4_7181678.txt @@ -0,0 +1 @@ +4 0.000000 0.443309 0.072222 0.419926 0.131716 0.363493 0.114232 0.343799 0.072222 0.290000 0.056487 0.253260 0.059984 0.234877 0.070474 0.146961 0.126471 0.070833 0.261209 0.020968 0.376699 0.064277 0.427435 0.125956 0.444935 0.187635 0.441438 0.304436 0.430931 0.360870 0.376699 0.450110 0.485180 0.541973 0.516667 0.624645 0.521928 0.728321 0.521928 0.826740 0.533905 1.000000 0.136650 1.000000 0.000490 0.998664 0.000000 0.947071 diff --git a/datasets/pinganmajia/train/labels/订单1814565_4_7181686.txt b/datasets/pinganmajia/train/labels/订单1814565_4_7181686.txt new file mode 100644 index 0000000..e4c0e65 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814565_4_7181686.txt @@ -0,0 +1 @@ +4 0.005435 0.105016 0.064485 0.112884 0.181612 0.217876 0.220000 0.217876 0.239687 0.181127 0.288897 0.085327 0.350907 0.036773 0.448346 0.076144 0.506415 0.223121 0.470987 0.312361 0.451299 0.392418 0.407010 0.460654 0.438505 0.560392 0.477874 0.615515 0.402089 0.761185 0.420784 0.864853 0.418817 0.904224 0.431612 0.943595 0.421771 0.967214 0.428664 0.992149 0.003897 1.000000 0.002482 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814566_4_7181722.txt b/datasets/pinganmajia/train/labels/订单1814566_4_7181722.txt new file mode 100644 index 0000000..218751c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814566_4_7181722.txt @@ -0,0 +1 @@ +4 0.613701 0.017083 0.596967 0.108946 0.633388 0.215253 0.672757 0.248056 0.735748 0.297925 0.788897 0.299240 0.773150 0.412100 0.775116 0.446217 0.810551 0.452786 0.835159 0.633881 0.862714 0.702124 0.866654 0.740180 0.904056 0.906846 0.903070 1.000000 0.904044 1.000000 1.000000 0.997418 1.000000 0.089306 0.939485 0.026275 0.895196 0.043333 0.854841 0.045956 0.860748 0.017083 diff --git a/datasets/pinganmajia/train/labels/订单1814568_4_7181694.txt b/datasets/pinganmajia/train/labels/订单1814568_4_7181694.txt new file mode 100644 index 0000000..8e436a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814568_4_7181694.txt @@ -0,0 +1 @@ +4 0.000000 0.182521 0.192850 0.185057 0.261089 0.254609 0.287339 0.339915 0.292585 0.425213 0.287339 0.477706 0.227841 0.538075 0.310085 0.570881 0.436070 0.641747 0.495559 0.717862 0.506061 0.820227 0.507812 0.910781 0.552633 1.000000 0.003873 1.000000 0.000000 0.698452 diff --git a/datasets/pinganmajia/train/labels/订单1814569_4_7181730.txt b/datasets/pinganmajia/train/labels/订单1814569_4_7181730.txt new file mode 100644 index 0000000..4b552c3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814569_4_7181730.txt @@ -0,0 +1 @@ +4 0.004012 0.164028 0.077500 0.120725 0.220977 0.119414 0.308467 0.156157 0.366214 0.187654 0.371461 0.271644 0.364465 0.337261 0.373210 0.402878 0.360967 0.472431 0.467695 0.538048 0.492202 0.650903 0.525442 0.677153 0.514949 0.716520 0.612932 0.832006 0.653179 0.850378 0.663673 0.877940 0.665422 0.913372 0.647932 0.898935 0.593683 0.880563 0.574434 0.866127 0.553436 0.845131 0.574434 0.942245 0.559033 1.000000 0.000535 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814570_4_7181742.txt b/datasets/pinganmajia/train/labels/订单1814570_4_7181742.txt new file mode 100644 index 0000000..6856184 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814570_4_7181742.txt @@ -0,0 +1 @@ +4 1.000000 0.498405 0.963086 0.463249 0.885332 0.482936 0.869580 0.467188 0.843989 0.473750 0.786904 0.447500 0.806592 0.395007 0.819385 0.287396 0.817417 0.232279 0.814463 0.171908 0.820371 0.085293 0.783950 0.038053 0.672729 0.017057 0.639268 0.041986 0.599897 0.122044 0.586118 0.228340 0.591040 0.274271 0.579229 0.291335 0.581196 0.360885 0.581196 0.384505 0.604819 0.381882 0.624502 0.446185 0.630410 0.472435 0.615645 0.493431 0.483755 0.551172 0.464072 0.674538 0.417812 0.846452 0.413872 0.884505 0.407969 0.918626 0.418794 0.947500 0.412891 0.978997 0.426890 1.000000 0.810288 1.000000 1.000000 0.998698 diff --git a/datasets/pinganmajia/train/labels/订单1814571_4_7181807.txt b/datasets/pinganmajia/train/labels/订单1814571_4_7181807.txt new file mode 100644 index 0000000..31f6646 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814571_4_7181807.txt @@ -0,0 +1 @@ +4 0.997778 0.212639 0.969780 0.186389 0.919028 0.174575 0.798299 0.154896 0.740556 0.186389 0.703808 0.236259 0.661817 0.301875 0.649572 0.333368 0.611076 0.413420 0.492083 0.482977 0.338102 0.568281 0.271609 0.612899 0.117639 0.712630 0.100139 0.758568 0.033646 0.847804 0.079144 0.948854 0.140382 0.996102 1.000000 0.998724 1.000000 0.575295 0.924282 0.561719 0.903287 0.528906 0.948785 0.496102 0.997778 0.418672 diff --git a/datasets/pinganmajia/train/labels/订单1814572_4_7182055.txt b/datasets/pinganmajia/train/labels/订单1814572_4_7182055.txt new file mode 100644 index 0000000..becee92 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814572_4_7182055.txt @@ -0,0 +1 @@ +4 0.000000 0.364126 0.070392 0.392418 0.109761 0.372729 0.169804 0.296618 0.164884 0.261185 0.172757 0.220498 0.169804 0.189003 0.188505 0.166691 0.209173 0.192941 0.239687 0.089265 0.280037 0.051209 0.315472 0.018399 0.373542 0.034150 0.459173 0.144379 0.467047 0.202124 0.458186 0.267745 0.441458 0.322859 0.423738 0.398979 0.395196 0.456716 0.427678 0.461969 0.468033 0.593203 0.488701 0.690319 0.480827 0.788742 0.510239 1.000000 0.002457 1.000000 0.000000 0.600482 diff --git a/datasets/pinganmajia/train/labels/订单1814577_4_7181850.txt b/datasets/pinganmajia/train/labels/订单1814577_4_7181850.txt new file mode 100644 index 0000000..6cee295 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814577_4_7181850.txt @@ -0,0 +1 @@ +4 0.542813 0.342513 0.533950 0.355638 0.492612 0.375319 0.478833 0.438314 0.464072 0.538053 0.467021 0.591855 0.473911 0.695534 0.490645 0.719154 0.501470 0.713906 0.512300 0.700781 0.532969 0.811016 0.536904 0.883197 0.545762 0.955378 0.552651 0.984245 0.572344 1.000000 0.578945 1.000000 0.589072 0.976374 0.583164 0.921257 0.583164 0.838574 0.582183 0.727025 0.598911 0.821517 0.611709 0.933066 0.627456 0.996055 0.662207 1.000000 0.673506 1.000000 0.665840 0.952747 0.657969 0.863509 0.660923 0.814954 0.661904 0.703405 0.670762 0.675846 0.678638 0.652227 0.677651 0.488184 0.668794 0.426504 0.650093 0.383197 0.630410 0.362201 0.608755 0.349076 0.607769 0.333327 0.608755 0.296582 0.599897 0.248027 0.571353 0.233587 0.546748 0.237526 0.535923 0.269023 0.534937 0.301829 0.532969 0.334642 diff --git a/datasets/pinganmajia/train/labels/订单1814581_4_7181930.txt b/datasets/pinganmajia/train/labels/订单1814581_4_7181930.txt new file mode 100644 index 0000000..8559a6b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814581_4_7181930.txt @@ -0,0 +1 @@ +4 0.988815 0.514471 0.929557 0.461971 0.879010 0.434412 0.838919 0.414725 0.830208 0.370108 0.830208 0.337304 0.812773 0.333363 0.772695 0.253314 0.727370 0.206069 0.635000 0.199510 0.544362 0.237569 0.512995 0.290059 0.521706 0.346490 0.523451 0.418667 0.563542 0.493471 0.481615 0.573520 0.432812 0.601078 0.378789 0.712627 0.354388 0.792686 0.336953 0.839922 0.316042 0.901608 0.316042 0.948853 0.314297 0.994784 0.767083 1.000000 0.997487 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814582_4_7181827.txt b/datasets/pinganmajia/train/labels/订单1814582_4_7181827.txt new file mode 100644 index 0000000..f18927c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814582_4_7181827.txt @@ -0,0 +1 @@ +4 0.999498 0.568260 0.968002 0.531513 0.896259 0.531513 0.831515 0.513139 0.840265 0.485582 0.868267 0.463274 0.887509 0.408153 0.871761 0.389780 0.866515 0.355661 0.884015 0.297919 0.836771 0.248047 0.747528 0.198182 0.630294 0.187678 0.567301 0.234922 0.528807 0.293977 0.513059 0.359595 0.507812 0.450149 0.511307 0.507891 0.542803 0.534141 0.518305 0.565632 0.408068 0.629936 0.369574 0.681122 0.383570 0.715241 0.350331 0.834666 0.311837 0.914716 0.289091 0.969837 0.212093 0.979020 0.189366 1.000000 1.000000 1.000000 1.000000 0.693089 diff --git a/datasets/pinganmajia/train/labels/订单1814583_4_7182334.txt b/datasets/pinganmajia/train/labels/订单1814583_4_7182334.txt new file mode 100644 index 0000000..1f593ac --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814583_4_7182334.txt @@ -0,0 +1 @@ +4 0.005735 0.248002 0.089722 0.206005 0.205212 0.217819 0.264706 0.250625 0.310196 0.326740 0.334690 0.338554 0.336454 0.372672 0.348693 0.446164 0.420441 0.488162 0.476422 0.535404 0.581422 0.623333 0.625163 0.720441 0.630408 0.750625 0.614657 0.783444 0.661912 0.818873 0.635654 0.849056 0.609412 0.876618 0.633905 0.906801 0.628660 0.930417 0.570915 0.934350 0.565670 0.975037 0.552353 1.000000 0.000000 1.000000 0.000000 0.565711 0.024984 0.534093 0.023235 0.488162 0.002239 0.454044 diff --git a/datasets/pinganmajia/train/labels/订单1814584_4_7181841.txt b/datasets/pinganmajia/train/labels/订单1814584_4_7181841.txt new file mode 100644 index 0000000..36e0cd2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814584_4_7181841.txt @@ -0,0 +1 @@ +4 0.009919 0.713878 0.069318 0.665317 0.147922 0.627268 0.170633 0.597085 0.170633 0.562963 0.163653 0.520963 0.179367 0.498659 0.207321 0.401537 0.266721 0.358232 0.387256 0.350366 0.462370 0.392354 0.495568 0.457976 0.499058 0.530146 0.537484 0.574768 0.521769 0.597085 0.561948 0.640390 0.603880 0.656134 0.575925 0.671878 0.567192 0.753244 0.603880 0.826744 0.593393 0.842488 0.633571 0.938293 0.628328 0.969780 0.641201 1.000000 0.010763 1.000000 0.002922 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1814585_4_7181915.txt b/datasets/pinganmajia/train/labels/订单1814585_4_7181915.txt new file mode 100644 index 0000000..98fa2fb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814585_4_7181915.txt @@ -0,0 +1 @@ +4 1.000000 0.231596 0.822769 0.219173 0.735282 0.276913 0.693282 0.328096 0.693282 0.423904 0.695038 0.480327 0.693282 0.523635 0.733526 0.595817 0.763269 0.629933 0.688038 0.727048 0.660038 0.830721 0.646038 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814587_4_7181876.txt b/datasets/pinganmajia/train/labels/订单1814587_4_7181876.txt new file mode 100644 index 0000000..1e1e6ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814587_4_7181876.txt @@ -0,0 +1 @@ +4 1.000000 0.401544 0.952369 0.401544 0.966373 0.364804 0.969869 0.329375 0.999608 0.312304 0.997859 0.258505 1.000000 0.213260 1.000000 0.108137 0.915621 0.072157 0.796634 0.053775 0.709150 0.080025 0.630408 0.146961 0.600670 0.225699 0.619918 0.258505 0.647908 0.381863 0.684657 0.439608 0.597157 0.469792 0.581422 0.492096 0.500931 0.540650 0.492173 0.589216 0.362696 0.799191 0.287451 0.927794 0.261209 0.993407 1.000000 0.998640 diff --git a/datasets/pinganmajia/train/labels/订单1814588_4_7181961.txt b/datasets/pinganmajia/train/labels/订单1814588_4_7181961.txt new file mode 100644 index 0000000..a153d85 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814588_4_7181961.txt @@ -0,0 +1 @@ +4 0.147500 0.442246 0.168490 0.389756 0.254232 0.351699 0.257734 0.332012 0.271732 0.295264 0.320716 0.288701 0.357474 0.317578 0.362721 0.343818 0.353971 0.366133 0.399466 0.395000 0.450208 0.473740 0.485208 0.544609 0.492201 0.577422 0.486953 0.599727 0.476458 0.587920 0.471198 0.591855 0.448451 0.562979 0.436211 0.545918 0.394219 0.480303 0.415208 0.545918 0.429206 0.590537 0.467708 0.750645 0.485208 0.775586 0.511445 0.797891 0.506198 0.805762 0.472956 0.805762 0.462461 0.790020 0.430964 0.767705 0.397708 0.698154 0.331224 0.628604 0.324219 0.707344 0.338216 0.774268 0.332969 0.800518 0.336471 0.816260 0.301471 0.783457 0.264727 0.738838 0.229740 0.585293 diff --git a/datasets/pinganmajia/train/labels/订单1814589_4_7181977.txt b/datasets/pinganmajia/train/labels/订单1814589_4_7181977.txt new file mode 100644 index 0000000..f422992 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814589_4_7181977.txt @@ -0,0 +1 @@ +4 0.003872 0.473769 0.030115 0.459337 0.009115 0.425212 0.014372 0.395029 0.019615 0.349096 0.052859 0.276913 0.152603 0.241481 0.254090 0.254606 0.341577 0.305788 0.373077 0.371404 0.380077 0.425212 0.366077 0.493452 0.350321 0.545942 0.402821 0.566942 0.471064 0.629933 0.495564 0.691615 0.523551 0.778231 0.535808 0.843846 0.565551 0.901587 0.588295 0.980327 0.560526 1.000000 0.005615 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814590_4_7181927.txt b/datasets/pinganmajia/train/labels/订单1814590_4_7181927.txt new file mode 100644 index 0000000..75d440a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814590_4_7181927.txt @@ -0,0 +1 @@ +4 1.000000 0.770590 0.955252 0.727083 0.895217 0.629965 0.830252 0.545984 0.840095 0.485613 0.854861 0.413437 0.850920 0.385880 0.867656 0.275637 0.830252 0.182465 0.780052 0.132593 0.696398 0.124722 0.633403 0.152280 0.605842 0.207396 0.562535 0.312384 0.568438 0.402940 0.561554 0.511863 0.566476 0.543356 0.494627 0.692963 0.482813 0.782199 0.476910 0.853067 0.466076 0.929178 0.451849 1.000000 0.730434 1.000000 0.999540 0.997419 1.000000 0.962766 diff --git a/datasets/pinganmajia/train/labels/订单1814591_4_7182054.txt b/datasets/pinganmajia/train/labels/订单1814591_4_7182054.txt new file mode 100644 index 0000000..29550bf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814591_4_7182054.txt @@ -0,0 +1 @@ +4 0.002115 0.506577 0.052859 0.482952 0.119359 0.439644 0.112359 0.400279 0.136859 0.398962 0.122859 0.332038 0.154346 0.286106 0.236590 0.249356 0.324077 0.242798 0.429064 0.266423 0.443064 0.301856 0.465808 0.358279 0.471064 0.406837 0.455308 0.463269 0.455308 0.509202 0.444821 0.540702 0.446564 0.578760 0.521808 0.691615 0.560295 0.748048 0.579551 0.817596 0.600551 0.872721 0.612795 0.909462 0.632641 1.000000 0.003859 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814593_4_7182027.txt b/datasets/pinganmajia/train/labels/订单1814593_4_7182027.txt new file mode 100644 index 0000000..156257b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814593_4_7182027.txt @@ -0,0 +1 @@ +4 0.009919 0.544585 0.043101 0.528841 0.100763 0.469780 0.086786 0.412037 0.081542 0.379232 0.093766 0.377915 0.100763 0.307049 0.132208 0.266378 0.200325 0.238817 0.312143 0.245378 0.361055 0.287366 0.376769 0.333305 0.378523 0.397610 0.380260 0.443537 0.369789 0.503902 0.425682 0.534085 0.378523 0.583963 0.437922 0.683695 0.415211 0.720439 0.450146 0.807049 0.458880 0.883171 0.467614 0.936976 0.451883 0.999963 0.448182 1.000000 -0.000000 1.000000 0.000000 0.917000 diff --git a/datasets/pinganmajia/train/labels/订单1814595_4_7181976.txt b/datasets/pinganmajia/train/labels/订单1814595_4_7181976.txt new file mode 100644 index 0000000..efa0f47 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814595_4_7181976.txt @@ -0,0 +1 @@ +4 0.446353 0.305768 0.430605 0.320202 0.378442 0.350391 0.353833 0.410755 0.338086 0.510495 0.347930 0.582669 0.366631 0.628600 0.368599 0.671908 0.377456 0.702096 0.385332 0.708652 0.397139 0.703405 0.406001 0.782148 0.406982 0.841204 0.399111 0.942253 0.409937 0.978997 0.414858 0.998678 0.452261 0.997370 0.460132 0.948815 0.455210 0.913379 0.461118 0.867448 0.459150 0.824141 0.479819 0.757214 0.488677 0.830703 0.492612 0.914694 0.510332 0.976374 0.530850 1.000000 0.578027 1.000000 0.578242 0.999993 0.549702 0.960625 0.552651 0.913379 0.552651 0.843828 0.543794 0.801829 0.549702 0.654850 0.560527 0.654850 0.573320 0.650911 0.573320 0.670599 0.587100 0.631230 0.600879 0.586608 0.601865 0.524928 0.598911 0.467188 0.588086 0.422565 0.583164 0.374010 0.551670 0.328079 0.520171 0.314954 0.523125 0.287396 0.521157 0.233587 0.501470 0.195534 0.469976 0.195534 0.451274 0.230964 0.449307 0.262461 0.448320 0.275586 diff --git a/datasets/pinganmajia/train/labels/订单1814597_4_7182009.txt b/datasets/pinganmajia/train/labels/订单1814597_4_7182009.txt new file mode 100644 index 0000000..902dc2a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814597_4_7182009.txt @@ -0,0 +1 @@ +4 0.004462 0.318947 0.065486 0.330752 0.152101 0.332072 0.152101 0.283507 0.138325 0.254641 0.136354 0.203461 0.143247 0.170648 0.146198 0.074850 0.167847 0.021042 0.304661 0.014479 0.334193 0.047292 0.369627 0.118160 0.374540 0.210023 0.366667 0.259896 0.358793 0.301887 0.350920 0.332072 0.320408 0.396377 0.380451 0.438368 0.397179 0.480359 0.427691 0.594537 0.465095 0.698206 0.479861 0.766447 0.469028 0.920000 0.455252 0.952801 0.407023 0.960683 0.410955 1.000000 0.000000 1.000000 0.000000 0.835903 diff --git a/datasets/pinganmajia/train/labels/订单1814599_4_7182099.txt b/datasets/pinganmajia/train/labels/订单1814599_4_7182099.txt new file mode 100644 index 0000000..568fbb3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814599_4_7182099.txt @@ -0,0 +1 @@ +4 0.000490 0.270319 0.056487 0.232255 0.170212 0.230944 0.275212 0.270319 0.325948 0.310993 0.341699 0.354301 0.348693 0.396299 0.325948 0.455355 0.310196 0.515723 0.294444 0.544596 0.345196 0.585270 0.418693 0.608897 0.467680 0.674510 0.483431 0.738824 0.543464 1.000000 0.002239 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814601_4_7181996.txt b/datasets/pinganmajia/train/labels/订单1814601_4_7181996.txt new file mode 100644 index 0000000..841a93f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814601_4_7181996.txt @@ -0,0 +1 @@ +4 0.007484 0.018346 0.231454 0.020968 0.332941 0.081336 0.376699 0.170576 0.388938 0.267684 0.392435 0.316250 0.385441 0.381863 0.434428 0.398922 0.432680 0.454044 0.488676 0.485539 0.633905 0.787377 0.612908 0.804436 0.640915 0.879240 0.633905 0.900233 0.639167 0.998664 0.003987 0.997353 diff --git a/datasets/pinganmajia/train/labels/订单1814602_4_7182023.txt b/datasets/pinganmajia/train/labels/订单1814602_4_7182023.txt new file mode 100644 index 0000000..50da4aa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814602_4_7182023.txt @@ -0,0 +1 @@ +4 0.333485 0.279518 0.268270 0.326764 0.239613 0.433066 0.243564 0.566921 0.243564 0.606296 0.254436 0.628600 0.268270 0.703405 0.273206 0.667975 0.278147 0.686348 0.287044 0.641725 0.296922 0.662721 0.297912 0.766400 0.298897 0.833327 0.290995 0.916003 0.302853 0.985560 0.299887 0.999993 0.344353 0.994746 0.360162 0.925189 0.366093 0.959310 0.358186 0.992122 0.409892 1.000000 0.418627 1.000000 0.428343 0.923880 0.439211 0.805768 0.459961 0.660098 0.468853 0.646973 0.476760 0.637786 0.478735 0.671908 0.501461 0.636478 0.507392 0.602357 0.510353 0.576107 0.510353 0.463249 0.495534 0.383197 0.473794 0.324141 0.402652 0.274271 0.403637 0.227025 0.386843 0.177161 0.346328 0.157474 0.321627 0.187656 0.318662 0.230964 0.326569 0.259837 diff --git a/datasets/pinganmajia/train/labels/订单1814604_4_7182166.txt b/datasets/pinganmajia/train/labels/订单1814604_4_7182166.txt new file mode 100644 index 0000000..6bb526b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814604_4_7182166.txt @@ -0,0 +1 @@ +4 0.009979 0.409437 0.038031 0.405502 0.034526 0.376628 0.018742 0.350378 0.001206 0.332006 0.000000 0.323673 0.000000 0.271991 0.020495 0.272955 0.015237 0.207338 0.052062 0.157469 0.134464 0.111535 0.236165 0.118094 0.309804 0.149591 0.365918 0.203403 0.381701 0.280826 0.386959 0.343819 0.379938 0.408125 0.355392 0.454059 0.316825 0.475054 0.309804 0.515733 0.341371 0.560355 0.400979 0.657469 0.437804 0.740147 0.472876 0.850378 0.490402 0.998673 0.002969 0.999985 diff --git a/datasets/pinganmajia/train/labels/订单1814605_4_7182107.txt b/datasets/pinganmajia/train/labels/订单1814605_4_7182107.txt new file mode 100644 index 0000000..c3530c1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814605_4_7182107.txt @@ -0,0 +1 @@ +4 0.999528 0.419975 0.936538 0.398979 0.951299 0.387165 0.958186 0.343856 0.965080 0.282181 0.977874 0.202124 0.950313 0.094518 0.916850 0.026275 0.811538 0.028897 0.739688 0.060392 0.707206 0.129951 0.694412 0.236250 0.714093 0.325482 0.720000 0.405539 0.743621 0.454093 0.623542 0.523652 0.600907 0.559085 0.602874 0.620760 0.580239 0.658815 0.574332 0.717876 0.556612 0.772990 0.555631 0.805801 0.557598 0.843856 0.575313 0.883227 0.576299 0.921283 0.605331 1.000000 0.740686 1.000000 1.000000 0.997426 1.000000 0.512410 diff --git a/datasets/pinganmajia/train/labels/订单1814606_4_7182045.txt b/datasets/pinganmajia/train/labels/订单1814606_4_7182045.txt new file mode 100644 index 0000000..b4d5cdf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814606_4_7182045.txt @@ -0,0 +1 @@ +4 1.000000 0.466625 0.989000 0.438337 0.929500 0.452769 0.924256 0.427837 0.926000 0.392404 0.905013 0.377971 0.882256 0.384529 0.870013 0.329413 0.822769 0.275606 0.738782 0.241481 0.642538 0.246731 0.591795 0.297913 0.551551 0.422587 0.560295 0.475077 0.579551 0.534135 0.660038 0.602375 0.590051 0.702115 0.532308 0.776913 0.542808 0.788731 0.567295 0.783481 0.572551 0.863529 0.514731 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814609_4_7182139.txt b/datasets/pinganmajia/train/labels/订单1814609_4_7182139.txt new file mode 100644 index 0000000..a86c042 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814609_4_7182139.txt @@ -0,0 +1 @@ +4 0.644427 0.263770 0.586693 0.286084 0.555195 0.359570 0.558698 0.465869 0.567448 0.505244 0.583190 0.514424 0.567448 0.606289 0.565690 0.637783 0.586693 0.685029 0.555195 0.717842 0.572695 0.734902 0.607682 0.717842 0.630430 0.708652 0.637435 0.649600 0.633932 0.610225 0.653177 0.573486 0.665430 0.603662 0.653177 0.681094 0.644427 0.706025 0.663685 0.719150 0.698672 0.740146 0.707422 0.728340 0.693424 0.690283 0.726667 0.616787 0.737174 0.573486 0.742422 0.506553 0.777422 0.480303 0.807161 0.370068 0.800156 0.305762 0.775664 0.276895 0.716172 0.258525 0.723177 0.217842 0.716172 0.183721 0.661927 0.171904 0.637435 0.192900 0.637435 0.220459 0.646185 0.241465 diff --git a/datasets/pinganmajia/train/labels/订单1814610_4_7182153.txt b/datasets/pinganmajia/train/labels/订单1814610_4_7182153.txt new file mode 100644 index 0000000..3a8965b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814610_4_7182153.txt @@ -0,0 +1 @@ +4 0.245361 0.249375 0.234867 0.273000 0.229617 0.283496 0.203367 0.293996 0.159622 0.385858 0.180622 0.498721 0.199867 0.527592 0.210367 0.500033 0.226117 0.518404 0.240111 0.593208 0.250611 0.662763 0.257611 0.699508 0.261111 0.738879 0.255861 0.761188 0.283861 0.767750 0.299606 0.741504 0.308356 0.699508 0.303106 0.654887 0.306606 0.531529 0.320606 0.631267 0.315356 0.687696 0.329350 0.707383 0.376594 0.728379 0.385344 0.716567 0.359100 0.675888 0.367850 0.599771 0.392344 0.490846 0.408094 0.426542 0.413344 0.469850 0.422089 0.507908 0.444839 0.486908 0.444839 0.419979 0.441339 0.381921 0.394094 0.297933 0.359100 0.280871 0.345100 0.249375 0.329350 0.210008 0.287356 0.186383 0.252361 0.208696 0.250611 0.231004 diff --git a/datasets/pinganmajia/train/labels/订单1814612_4_7182185.txt b/datasets/pinganmajia/train/labels/订单1814612_4_7182185.txt new file mode 100644 index 0000000..1459985 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814612_4_7182185.txt @@ -0,0 +1 @@ +4 0.007539 0.540716 0.049362 0.502657 0.098164 0.496098 0.089453 0.465912 0.059831 0.419980 0.052852 0.374049 0.063307 0.296618 0.092943 0.254627 0.180091 0.242814 0.265495 0.249373 0.345664 0.276931 0.368320 0.402922 0.350898 0.442284 0.312552 0.524961 0.396211 0.553833 0.427591 0.589275 0.424102 0.653578 0.420612 0.877980 0.427591 0.973784 0.434557 0.998716 0.225273 1.000000 0.005794 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814613_4_7182196.txt b/datasets/pinganmajia/train/labels/订单1814613_4_7182196.txt new file mode 100644 index 0000000..624771a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814613_4_7182196.txt @@ -0,0 +1 @@ +4 0.003987 0.203382 0.217467 0.181078 0.373186 0.221752 0.453676 0.304436 0.471176 0.339865 0.479935 0.493407 0.563922 0.587904 0.490425 0.641703 0.509673 0.805748 0.539428 0.906801 0.569167 0.988162 0.559690 1.000000 0.378137 1.000000 0.005735 0.997353 0.000000 0.834289 -0.000000 0.548346 0.024984 0.544596 0.000490 0.515723 diff --git a/datasets/pinganmajia/train/labels/订单1814614_4_7182212.txt b/datasets/pinganmajia/train/labels/订单1814614_4_7182212.txt new file mode 100644 index 0000000..5d51954 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814614_4_7182212.txt @@ -0,0 +1 @@ +4 1.000000 0.429615 0.955756 0.446212 0.941756 0.422587 0.968000 0.408154 0.987244 0.376654 0.961000 0.313663 0.938256 0.324163 0.919000 0.245423 0.859513 0.186365 0.784269 0.160125 0.679282 0.173240 0.628538 0.227048 0.584795 0.341221 0.586551 0.404212 0.605795 0.464587 0.689782 0.544635 0.614538 0.654875 0.558551 0.727048 0.551551 0.759856 0.577795 0.757231 0.577795 0.838596 0.498154 1.000000 0.997744 1.000000 1.000000 0.632327 diff --git a/datasets/pinganmajia/train/labels/订单1814616_4_7182279.txt b/datasets/pinganmajia/train/labels/订单1814616_4_7182279.txt new file mode 100644 index 0000000..dd5b60b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814616_4_7182279.txt @@ -0,0 +1 @@ +4 0.406321 0.313663 0.395821 0.321538 0.318833 0.339913 0.296090 0.438337 0.287333 0.506577 0.338077 0.561692 0.338077 0.598442 0.376577 0.770356 0.394077 0.835971 0.378321 0.867471 0.369577 0.905529 0.406321 0.917337 0.432564 0.888471 0.460564 0.853029 0.455308 0.795288 0.446564 0.740173 0.451808 0.682433 0.467564 0.740173 0.481564 0.800538 0.476308 0.839913 0.499064 0.863529 0.541051 0.897654 0.553295 0.875346 0.537551 0.828096 0.549808 0.766423 0.548051 0.694240 0.563795 0.618125 0.565551 0.549885 0.605795 0.501327 0.595295 0.375346 0.551551 0.335971 0.486808 0.314971 0.507808 0.291356 0.509551 0.259856 0.476308 0.203423 0.425564 0.206048 0.395821 0.225740 0.388821 0.267731 0.388821 0.286106 diff --git a/datasets/pinganmajia/train/labels/订单1814617_4_7182290.txt b/datasets/pinganmajia/train/labels/订单1814617_4_7182290.txt new file mode 100644 index 0000000..1ba39fe --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814617_4_7182290.txt @@ -0,0 +1 @@ +4 1.000000 0.255159 0.950621 0.202071 0.849134 0.175821 0.744150 0.206005 0.686405 0.262439 0.682908 0.297868 0.700408 0.379240 0.698644 0.427794 0.744150 0.503909 0.695147 0.572157 0.576160 0.715196 0.549918 0.754571 0.514918 0.887108 0.446683 0.997353 0.824984 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814620_4_7182352.txt b/datasets/pinganmajia/train/labels/订单1814620_4_7182352.txt new file mode 100644 index 0000000..bd252e8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814620_4_7182352.txt @@ -0,0 +1 @@ +4 0.000000 0.569681 0.038711 0.524928 0.043958 0.499993 0.045267 0.468496 0.015085 0.421257 0.009837 0.375319 0.000651 0.165345 0.106947 0.119414 0.211934 0.111543 0.276243 0.139102 0.336608 0.206029 0.357604 0.279518 0.362852 0.333327 0.374668 0.379258 0.381230 0.473750 0.466530 0.492122 0.473092 0.511803 0.441595 0.641725 0.505898 0.719154 0.492773 0.754590 0.495404 0.771647 0.496712 0.856947 0.498027 0.910755 0.534479 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814621_4_7182314.txt b/datasets/pinganmajia/train/labels/订单1814621_4_7182314.txt new file mode 100644 index 0000000..6405547 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814621_4_7182314.txt @@ -0,0 +1 @@ +4 0.994363 0.376618 0.901634 0.371360 0.908627 0.342488 0.940114 0.293934 0.919118 0.263750 0.913873 0.190257 0.864886 0.122022 0.796634 0.087904 0.672402 0.090527 0.548170 0.154828 0.541176 0.236189 0.555163 0.322806 0.562173 0.392365 0.595408 0.443542 0.674150 0.497353 0.595408 0.519657 0.558676 0.543284 0.588415 0.682390 0.593660 0.727010 0.581422 0.793934 0.539428 0.884485 0.537680 0.942230 0.500931 0.988162 0.499183 0.999975 1.000000 0.999975 1.000000 0.878517 diff --git a/datasets/pinganmajia/train/labels/订单1814624_4_7182310.txt b/datasets/pinganmajia/train/labels/订单1814624_4_7182310.txt new file mode 100644 index 0000000..c049175 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814624_4_7182310.txt @@ -0,0 +1 @@ +4 0.297240 0.192910 0.265742 0.212591 0.209310 0.246712 0.196185 0.320202 0.196185 0.423880 0.264427 0.513118 0.286738 0.568236 0.297240 0.625977 0.336608 0.742773 0.356296 0.884505 0.361543 0.900254 0.345794 0.959310 0.356296 0.990807 0.369414 0.992122 0.393040 0.977682 0.399603 0.939629 0.407474 0.897630 0.403535 0.849076 0.411413 0.813639 0.400911 0.754590 0.400911 0.633854 0.420599 0.741465 0.436348 0.829388 0.437656 0.871387 0.474401 0.909440 0.515085 0.933066 0.529518 0.916003 0.524271 0.885820 0.483587 0.849076 0.482279 0.737526 0.487526 0.656159 0.503275 0.585293 0.503275 0.566921 0.517708 0.556426 0.526895 0.526243 0.537396 0.471120 0.532148 0.374010 0.486217 0.240150 0.441595 0.207344 0.435033 0.194219 0.378600 0.183724 0.391725 0.140417 0.389102 0.083984 0.364167 0.052487 0.318236 0.043301 0.282799 0.066921 0.270990 0.118105 0.263118 0.141725 0.281491 0.167975 diff --git a/datasets/pinganmajia/train/labels/订单1814630_4_7182364.txt b/datasets/pinganmajia/train/labels/订单1814630_4_7182364.txt new file mode 100644 index 0000000..c2be84c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814630_4_7182364.txt @@ -0,0 +1 @@ +4 1.000000 0.123476 0.963750 0.125951 0.925308 0.056402 0.836218 0.026220 0.715682 0.045902 0.602127 0.119390 0.577679 0.200756 0.600373 0.263744 0.605617 0.301805 0.640568 0.371354 0.710438 0.417293 0.630081 0.456659 0.607370 0.538024 0.593393 0.648256 0.598636 0.749317 0.584659 0.892354 0.559951 1.000000 1.000000 1.000000 1.000000 0.241732 0.989951 0.225695 1.000000 0.218976 diff --git a/datasets/pinganmajia/train/labels/订单1814632_4_7182392.txt b/datasets/pinganmajia/train/labels/订单1814632_4_7182392.txt new file mode 100644 index 0000000..ca9b719 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814632_4_7182392.txt @@ -0,0 +1 @@ +4 0.996019 0.451476 0.952280 0.413420 0.950532 0.374054 0.938275 0.343872 0.908530 0.328116 0.908530 0.229696 0.880532 0.164080 0.817546 0.127335 0.724803 0.107648 0.593576 0.141771 0.527083 0.223134 0.521829 0.338620 0.511331 0.418672 0.548079 0.509219 0.506088 0.538090 0.399352 0.643082 0.395845 0.673264 0.350359 0.681137 0.304861 0.744132 0.280359 0.769062 0.259363 0.776936 0.245370 0.801875 0.233113 0.808438 0.217373 0.832057 0.217373 0.863550 0.275116 0.908168 0.226470 1.000000 1.000000 1.000000 1.000000 0.700799 diff --git a/datasets/pinganmajia/train/labels/订单1814633_4_7182414.txt b/datasets/pinganmajia/train/labels/订单1814633_4_7182414.txt new file mode 100644 index 0000000..423b2ff --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814633_4_7182414.txt @@ -0,0 +1 @@ +4 1.000000 0.609846 0.863876 0.556420 0.848093 0.539360 0.883165 0.448804 0.891928 0.397623 0.902454 0.366127 0.911216 0.246705 0.870887 0.153534 0.770948 0.081350 0.706072 0.076103 0.641196 0.089228 0.544763 0.150903 0.486897 0.234892 0.469361 0.324136 0.467608 0.356944 0.451835 0.372693 0.471124 0.454059 0.504433 0.543295 0.315072 0.597099 0.169536 0.688966 0.046794 0.813634 0.006474 0.842508 0.004742 1.000000 0.997598 1.000000 1.000000 0.999992 diff --git a/datasets/pinganmajia/train/labels/订单1814634_4_7182450.txt b/datasets/pinganmajia/train/labels/订单1814634_4_7182450.txt new file mode 100644 index 0000000..7ba939d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814634_4_7182450.txt @@ -0,0 +1 @@ +4 1.000000 0.302549 0.976863 0.275564 0.955866 0.229632 0.878873 0.217819 0.742402 0.237500 0.646160 0.293934 0.626912 0.370049 0.618170 0.417292 0.625163 0.459289 0.623415 0.507843 0.647908 0.576091 0.670654 0.599706 0.534167 0.720441 0.485180 0.854301 0.380196 0.998664 1.000000 0.999963 diff --git a/datasets/pinganmajia/train/labels/订单1814635_4_7182431.txt b/datasets/pinganmajia/train/labels/订单1814635_4_7182431.txt new file mode 100644 index 0000000..87a7888 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814635_4_7182431.txt @@ -0,0 +1 @@ +4 0.000000 0.529718 0.058235 0.509154 0.049477 0.448787 0.059984 0.427794 0.077484 0.436985 0.086225 0.383174 0.087974 0.342488 0.177222 0.316250 0.262958 0.316250 0.341699 0.342488 0.376699 0.384485 0.378448 0.435674 0.359199 0.480294 0.353938 0.518346 0.325948 0.570833 0.378448 0.610208 0.345196 0.635147 0.406438 0.704694 0.395948 0.799191 0.409935 0.908113 0.415180 0.998664 0.204477 1.000000 0.002222 1.000000 0.000000 0.699877 diff --git a/datasets/pinganmajia/train/labels/订单1814636_4_7182447.txt b/datasets/pinganmajia/train/labels/订单1814636_4_7182447.txt new file mode 100644 index 0000000..dc5df3e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814636_4_7182447.txt @@ -0,0 +1 @@ +4 0.135247 0.293955 0.093255 0.291328 0.081003 0.339883 0.072253 0.425186 0.077500 0.465869 0.093255 0.488184 0.102005 0.514424 0.103750 0.541982 0.121250 0.540674 0.135247 0.534111 0.121250 0.493428 0.140495 0.506553 0.168490 0.610225 0.177240 0.658779 0.205234 0.673223 0.191237 0.716523 0.229740 0.725713 0.240234 0.691592 0.262982 0.698154 0.285729 0.708652 0.299727 0.688965 0.292721 0.665342 0.287474 0.608916 0.299727 0.511807 0.320716 0.523613 0.336471 0.494746 0.341719 0.431748 0.289232 0.321514 0.276979 0.305762 0.220990 0.297891 0.234987 0.261143 0.206992 0.213906 0.159740 0.198154 0.126497 0.213906 0.124753 0.249336 0.133490 0.270332 diff --git a/datasets/pinganmajia/train/labels/订单1814637_4_7182494.txt b/datasets/pinganmajia/train/labels/订单1814637_4_7182494.txt new file mode 100644 index 0000000..1fbffe9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814637_4_7182494.txt @@ -0,0 +1 @@ +4 0.000000 0.555500 0.048344 0.536707 0.039610 0.497341 0.046607 0.478976 0.050097 0.421232 0.072808 0.359549 0.177614 0.322805 0.273701 0.318866 0.343588 0.380549 0.371526 0.423854 0.364545 0.490780 0.359302 0.531463 0.338344 0.583963 0.301656 0.622012 0.298166 0.644329 0.310390 0.671878 0.368036 0.803122 0.387256 0.855610 0.376769 0.880549 0.416948 0.998659 0.000000 0.996037 diff --git a/datasets/pinganmajia/train/labels/订单1814638_4_7182443.txt b/datasets/pinganmajia/train/labels/订单1814638_4_7182443.txt new file mode 100644 index 0000000..c926c80 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814638_4_7182443.txt @@ -0,0 +1 @@ +4 0.364844 0.477725 0.312552 0.510529 0.289896 0.584020 0.296862 0.648324 0.312552 0.668010 0.328242 0.653578 0.343919 0.736255 0.342188 0.807118 0.335208 0.826804 0.323008 0.838618 0.345664 0.842549 0.366589 0.816304 0.387500 0.753314 0.397956 0.818931 0.404922 0.842549 0.422357 0.868794 0.436302 0.868794 0.439792 0.826804 0.453724 0.696882 0.467669 0.658824 0.495560 0.636510 0.507760 0.565647 0.471159 0.492157 0.420612 0.473784 0.413646 0.435725 0.378789 0.429167 0.363099 0.450167 0.363099 0.461971 diff --git a/datasets/pinganmajia/train/labels/订单1814639_4_7182543.txt b/datasets/pinganmajia/train/labels/订单1814639_4_7182543.txt new file mode 100644 index 0000000..6c75a27 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814639_4_7182543.txt @@ -0,0 +1 @@ +4 0.007513 0.305762 0.096745 0.291328 0.206992 0.325449 0.290977 0.320205 0.371471 0.354326 0.381966 0.392383 0.355716 0.409443 0.271732 0.431748 0.285729 0.488184 0.271732 0.524922 0.271732 0.547236 0.308477 0.586602 0.352214 0.610225 0.343464 0.624658 0.413464 0.698154 0.427461 0.736211 0.562187 0.977686 0.552279 1.000000 0.004388 1.000000 0.000508 0.999990 diff --git a/datasets/pinganmajia/train/labels/订单1814641_4_7182851.txt b/datasets/pinganmajia/train/labels/订单1814641_4_7182851.txt new file mode 100644 index 0000000..0f679ad --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814641_4_7182851.txt @@ -0,0 +1 @@ +4 0.000394 0.145704 0.133378 0.158825 0.250611 0.249375 0.269861 0.311058 0.271611 0.405546 0.285606 0.451475 0.290856 0.542029 0.324106 0.572213 0.439589 0.629954 0.434339 0.650950 0.502583 0.749375 0.555072 0.877988 0.562072 0.985596 0.556822 0.998721 0.287294 1.000000 0.003889 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814642_4_7182471.txt b/datasets/pinganmajia/train/labels/订单1814642_4_7182471.txt new file mode 100644 index 0000000..016bf1d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814642_4_7182471.txt @@ -0,0 +1 @@ +4 0.005735 0.242757 0.240212 0.181078 0.345196 0.211262 0.367941 0.272941 0.374935 0.381863 0.373186 0.415980 0.371438 0.510466 0.427435 0.530159 0.404690 0.580025 0.476422 0.658762 0.478186 0.741446 0.518431 0.875306 0.558676 0.988162 0.556422 1.000000 0.002255 1.000000 0.003987 0.510466 0.033742 0.492096 0.009232 0.478971 diff --git a/datasets/pinganmajia/train/labels/订单1814643_4_7182472.txt b/datasets/pinganmajia/train/labels/订单1814643_4_7182472.txt new file mode 100644 index 0000000..e8e3183 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814643_4_7182472.txt @@ -0,0 +1 @@ +4 0.993388 0.183713 0.923399 0.177151 0.907059 0.119412 0.874401 0.078725 0.841743 0.019669 0.424118 0.023609 0.449782 0.123346 0.512778 0.195527 0.566438 0.257206 0.617767 0.284761 0.582767 0.358254 0.508115 0.395000 0.489444 0.540668 0.508115 0.648278 0.627102 0.800509 0.687756 0.842506 0.732081 0.901562 0.746078 0.998676 0.875719 1.000000 1.000000 1.000000 1.000000 0.763229 diff --git a/datasets/pinganmajia/train/labels/订单1814648_4_7182973.txt b/datasets/pinganmajia/train/labels/订单1814648_4_7182973.txt new file mode 100644 index 0000000..b65a3ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814648_4_7182973.txt @@ -0,0 +1 @@ +4 0.996000 0.086625 0.821013 0.082692 0.721282 0.103692 0.693282 0.169308 0.668782 0.266423 0.667038 0.324163 0.672282 0.368779 0.506051 0.459337 0.429064 0.654875 0.485064 0.862221 0.527051 0.880596 0.637282 1.000000 1.000000 1.000000 1.000000 0.349019 diff --git a/datasets/pinganmajia/train/labels/订单1814649_4_7182503.txt b/datasets/pinganmajia/train/labels/订单1814649_4_7182503.txt new file mode 100644 index 0000000..f20d0b0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814649_4_7182503.txt @@ -0,0 +1 @@ +4 0.000000 0.321840 0.009384 0.297951 0.013325 0.275637 0.033012 0.279572 0.028090 0.206088 0.033993 0.135220 0.063524 0.098472 0.116667 0.078785 0.191476 0.089282 0.248559 0.143090 0.270217 0.192963 0.276120 0.290069 0.272179 0.338634 0.250530 0.438368 0.281042 0.481678 0.285964 0.513171 0.272179 0.542037 0.320408 0.614225 0.369627 0.673275 0.407023 0.740208 0.410964 0.771701 0.429661 0.833380 0.436554 0.884560 0.427700 1.000000 0.412153 1.000000 0.002500 0.998738 0.000000 0.571806 diff --git a/datasets/pinganmajia/train/labels/订单1814652_4_7182561.txt b/datasets/pinganmajia/train/labels/订单1814652_4_7182561.txt new file mode 100644 index 0000000..860acce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814652_4_7182561.txt @@ -0,0 +1 @@ +4 0.996553 0.511803 0.982769 0.489492 0.899111 0.490807 0.826274 0.463249 0.818403 0.443561 0.857769 0.354323 0.866631 0.337266 0.865645 0.248027 0.861709 0.181094 0.864663 0.057734 0.818403 0.019681 0.746553 0.014427 0.689463 0.056426 0.643203 0.148288 0.629424 0.271647 0.620566 0.300521 0.624502 0.371387 0.636313 0.374010 0.662891 0.433066 0.664858 0.460625 0.651079 0.475059 0.523125 0.526243 0.455210 0.667975 0.406982 0.795267 0.388281 0.822826 0.391235 0.867448 0.397139 0.900254 0.406001 0.931751 0.426670 0.980306 0.440615 1.000000 0.863511 1.000000 1.000000 0.998724 1.000000 0.731257 diff --git a/datasets/pinganmajia/train/labels/订单1814653_4_7182563.txt b/datasets/pinganmajia/train/labels/订单1814653_4_7182563.txt new file mode 100644 index 0000000..762243b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814653_4_7182563.txt @@ -0,0 +1 @@ +4 0.992614 0.077402 0.924379 0.041973 0.807141 0.048529 0.705654 0.101017 0.642663 0.165331 0.646160 0.265061 0.649657 0.371360 0.656650 0.415980 0.719657 0.515723 0.646160 0.538027 0.583170 0.552463 0.460686 0.640392 0.352190 0.751936 0.318954 0.830686 0.248954 0.997353 0.999608 0.998664 diff --git a/datasets/pinganmajia/train/labels/订单1814654_4_7182949.txt b/datasets/pinganmajia/train/labels/订单1814654_4_7182949.txt new file mode 100644 index 0000000..5bc9dc7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814654_4_7182949.txt @@ -0,0 +1 @@ +4 0.014257 0.151522 0.183126 0.122654 0.393636 0.158088 0.416763 0.202704 0.453792 0.298503 0.453792 0.374616 0.412151 0.483547 0.488492 0.497975 0.659667 0.508478 0.756829 0.591157 0.999734 0.728956 0.995122 1.000000 0.821752 1.000000 0.722129 0.911371 0.742949 0.997975 0.365477 1.000000 0.007317 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814657_4_7182633.txt b/datasets/pinganmajia/train/labels/订单1814657_4_7182633.txt new file mode 100644 index 0000000..99c2148 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814657_4_7182633.txt @@ -0,0 +1 @@ +4 0.999514 0.552506 0.901091 0.517071 0.820380 0.485577 0.821365 0.397647 0.831207 0.337282 0.808572 0.190301 0.729832 0.137808 0.656995 0.154865 0.590067 0.221795 0.567428 0.316282 0.576288 0.389776 0.578255 0.455391 0.581207 0.488199 0.509361 0.511821 0.492625 0.564314 0.425697 0.692923 0.407981 0.754603 0.394202 0.902897 0.404043 0.996071 1.000000 0.997385 1.000000 0.688692 0.982784 0.678487 1.000000 0.618551 1.000000 0.584154 diff --git a/datasets/pinganmajia/train/labels/订单1814658_4_7182606.txt b/datasets/pinganmajia/train/labels/订单1814658_4_7182606.txt new file mode 100644 index 0000000..b24d9ae --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814658_4_7182606.txt @@ -0,0 +1 @@ +4 0.000000 0.483139 0.017869 0.451463 0.054612 0.446214 0.045871 0.416030 0.054612 0.400277 0.063362 0.353033 0.073864 0.303168 0.091364 0.230987 0.187595 0.219176 0.301335 0.242798 0.364328 0.291357 0.378324 0.339915 0.383570 0.372720 0.388826 0.404219 0.378324 0.485582 0.448314 0.586634 0.535805 0.661435 0.626790 0.776918 0.717784 0.912088 0.728286 0.998707 0.000000 0.998707 0.000000 0.558991 0.035369 0.548572 0.003873 0.514453 0.000000 0.493153 diff --git a/datasets/pinganmajia/train/labels/订单1814659_4_7182586.txt b/datasets/pinganmajia/train/labels/订单1814659_4_7182586.txt new file mode 100644 index 0000000..5bb2a7e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814659_4_7182586.txt @@ -0,0 +1 @@ +4 0.996111 0.203382 0.810637 0.208640 0.695147 0.254571 0.661912 0.304436 0.649657 0.377929 0.651405 0.490784 0.686405 0.565588 0.712647 0.593150 0.583170 0.741446 0.527173 0.795245 0.411683 0.944853 0.433415 1.000000 1.000000 1.000000 1.000000 0.499167 diff --git a/datasets/pinganmajia/train/labels/订单1814660_4_7182598.txt b/datasets/pinganmajia/train/labels/订单1814660_4_7182598.txt new file mode 100644 index 0000000..7d0eb6a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814660_4_7182598.txt @@ -0,0 +1 @@ +4 1.000000 0.153113 0.984783 0.139155 0.957222 0.089282 0.913915 0.018426 0.722969 0.018426 0.669818 0.166713 0.677691 0.217894 0.698359 0.232326 0.714115 0.276956 0.738715 0.295324 0.757422 0.329444 0.801710 0.376690 0.788915 0.433113 0.761354 0.485613 0.798759 0.671968 0.790885 0.712650 0.803681 0.742836 0.803681 0.803194 0.822378 0.863565 0.836155 0.893750 0.883403 0.961991 0.913872 1.000000 0.915512 1.000000 1.000000 0.997465 diff --git a/datasets/pinganmajia/train/labels/订单1814661_4_7182670.txt b/datasets/pinganmajia/train/labels/订单1814661_4_7182670.txt new file mode 100644 index 0000000..e1625c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814661_4_7182670.txt @@ -0,0 +1 @@ +4 0.002239 0.405490 0.058235 0.379240 0.087974 0.379240 0.084477 0.347745 0.061732 0.312304 0.054739 0.257194 0.063480 0.228321 0.091471 0.232255 0.105474 0.160074 0.199967 0.074779 0.369690 0.098395 0.411683 0.132525 0.514918 0.145637 0.577925 0.188946 0.591912 0.261127 0.562173 0.297868 0.483431 0.308370 0.439690 0.305748 0.439690 0.354301 0.408186 0.397610 0.348693 0.455355 0.437941 0.562966 0.492173 0.652206 0.488676 0.675821 0.518431 0.808370 0.548170 0.964534 0.556912 0.989473 0.552239 1.000000 0.002239 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814665_4_7182946.txt b/datasets/pinganmajia/train/labels/订单1814665_4_7182946.txt new file mode 100644 index 0000000..8e4eba5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814665_4_7182946.txt @@ -0,0 +1 @@ +4 0.709079 0.447555 0.675833 0.461996 0.632091 0.500055 0.535848 0.619474 0.500863 0.654912 0.518348 0.658849 0.542851 0.635219 0.630336 0.560417 0.625088 0.658849 0.611096 0.786140 0.604094 0.866195 0.541096 0.906875 0.556857 0.917379 0.593596 0.910811 0.633845 0.908191 0.640833 0.871447 0.663582 0.836009 0.675833 0.797950 0.688085 0.754649 0.716082 0.820263 0.724825 0.838640 0.723085 0.895066 0.728333 0.920000 0.719576 0.971184 0.731827 0.997423 0.761579 0.989550 0.770322 0.951491 0.786067 0.910811 0.791316 0.842577 0.773830 0.746776 0.791316 0.728399 0.819313 0.744145 0.847310 0.720526 0.875307 0.616853 0.861316 0.490866 0.824561 0.476425 0.784327 0.444934 0.801813 0.412127 0.796564 0.372752 0.765073 0.360943 0.730073 0.381941 0.717836 0.406875 0.717836 0.430493 diff --git a/datasets/pinganmajia/train/labels/订单1814666_4_7182675.txt b/datasets/pinganmajia/train/labels/订单1814666_4_7182675.txt new file mode 100644 index 0000000..8a6186f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814666_4_7182675.txt @@ -0,0 +1 @@ +4 0.999608 0.748002 0.899869 0.690257 0.878873 0.639081 0.891127 0.606275 0.912124 0.560343 0.933121 0.429105 0.787892 0.360870 0.604167 0.392365 0.591912 0.503909 0.616405 0.661385 0.465931 0.733566 0.479935 0.761127 0.381944 0.879240 0.371438 0.915980 0.345196 0.938297 0.297484 1.000000 0.991307 1.000000 0.996111 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814670_4_7182664.txt b/datasets/pinganmajia/train/labels/订单1814670_4_7182664.txt new file mode 100644 index 0000000..2edf917 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814670_4_7182664.txt @@ -0,0 +1 @@ +4 0.066866 0.986896 0.114110 0.975085 0.103608 0.939652 0.187595 0.863537 0.401070 0.769048 0.441316 0.744112 0.422074 0.641747 0.443068 0.636499 0.464062 0.506577 0.548059 0.416030 0.663542 0.408153 0.798277 0.435710 0.817519 0.507891 0.836771 0.589254 0.852519 0.727053 0.995994 0.825476 0.997708 1.000000 0.296563 1.000000 0.066866 0.998707 diff --git a/datasets/pinganmajia/train/labels/订单1814671_4_7182682.txt b/datasets/pinganmajia/train/labels/订单1814671_4_7182682.txt new file mode 100644 index 0000000..6d5668b --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814671_4_7182682.txt @@ -0,0 +1 @@ +4 0.996132 0.457994 0.966389 0.435687 0.968138 0.371381 0.973385 0.275579 0.917397 0.213897 0.738920 0.160093 0.607685 0.233580 0.588436 0.342508 0.572685 0.415995 0.591934 0.492114 0.486944 0.523611 0.525442 0.622037 0.434455 0.847755 0.422202 0.999985 0.424979 1.000000 0.997870 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814673_4_7182716.txt b/datasets/pinganmajia/train/labels/订单1814673_4_7182716.txt new file mode 100644 index 0000000..bfcea03 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814673_4_7182716.txt @@ -0,0 +1 @@ +4 0.016242 0.509154 0.084477 0.414669 0.187712 0.385797 0.353938 0.435674 0.420441 0.502598 0.387190 0.568211 0.378448 0.628578 0.416944 0.678456 0.516667 0.792623 0.557141 1.000000 0.134935 1.000000 0.000000 0.997500 0.000000 0.832745 diff --git a/datasets/pinganmajia/train/labels/订单1814675_4_7182790.txt b/datasets/pinganmajia/train/labels/订单1814675_4_7182790.txt new file mode 100644 index 0000000..6e75ce4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814675_4_7182790.txt @@ -0,0 +1 @@ +4 0.639935 0.178510 0.632941 0.107647 0.578693 0.059088 0.517451 0.074833 0.470209 0.126020 0.478954 0.174569 0.438706 0.270373 0.393216 0.314990 0.394967 0.565647 0.417712 0.618137 0.449216 0.636510 0.482458 0.721814 0.501699 0.825490 0.503451 0.904235 0.485961 0.938353 0.559451 0.904235 0.604941 0.870108 0.662680 0.931794 0.706431 0.961971 0.725673 0.938353 0.722170 0.837304 0.725673 0.731000 0.741425 0.641765 0.779922 0.657510 0.800915 0.605020 0.830667 0.492157 0.814915 0.404235 0.758928 0.267745 0.674928 0.246755 0.639935 0.211314 diff --git a/datasets/pinganmajia/train/labels/订单1814676_4_7182777.txt b/datasets/pinganmajia/train/labels/订单1814676_4_7182777.txt new file mode 100644 index 0000000..68fb8a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814676_4_7182777.txt @@ -0,0 +1 @@ +4 0.004462 0.296632 0.074349 0.241516 0.166866 0.219213 0.297769 0.324190 0.338125 0.439676 0.330252 0.612905 0.333203 0.632593 0.449349 0.694271 0.522179 0.759896 0.624540 0.807130 0.717066 0.871435 1.000000 0.861030 1.000000 1.000000 0.004462 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814677_4_7182835.txt b/datasets/pinganmajia/train/labels/订单1814677_4_7182835.txt new file mode 100644 index 0000000..9fcc3a3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814677_4_7182835.txt @@ -0,0 +1 @@ +4 0.987269 0.538090 0.945278 0.476415 0.964525 0.438359 0.973275 0.402925 0.987280 0.347804 0.975023 0.311059 0.959282 0.309748 0.978530 0.225755 0.934780 0.144392 0.908530 0.077465 0.786053 0.043342 0.668819 0.061719 0.546331 0.114210 0.486840 0.183759 0.497338 0.254627 0.516586 0.484288 0.500833 0.565651 0.493831 0.626024 0.257616 0.997413 0.996019 0.994783 diff --git a/datasets/pinganmajia/train/labels/订单1814678_4_7182763.txt b/datasets/pinganmajia/train/labels/订单1814678_4_7182763.txt new file mode 100644 index 0000000..2dc40d4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814678_4_7182763.txt @@ -0,0 +1 @@ +4 0.992986 1.000000 0.906782 0.909488 0.849039 0.842552 0.868287 0.749384 0.859537 0.695573 0.880532 0.632578 0.861285 0.511849 0.775556 0.475104 0.675810 0.498724 0.598819 0.577465 0.551574 0.665391 0.500833 0.695573 0.345104 0.708698 0.182373 0.833368 0.054664 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814679_4_7182735.txt b/datasets/pinganmajia/train/labels/订单1814679_4_7182735.txt new file mode 100644 index 0000000..db03262 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814679_4_7182735.txt @@ -0,0 +1 @@ +4 0.004449 0.543333 0.064485 0.505278 0.103860 0.506585 0.155037 0.480343 0.208186 0.442279 0.211140 0.380605 0.194412 0.380605 0.199332 0.355670 0.199332 0.303178 0.203266 0.286119 0.223940 0.164069 0.302678 0.118137 0.363701 0.150948 0.401103 0.220498 0.408977 0.311046 0.407990 0.380605 0.393229 0.484281 0.464093 0.565645 0.498542 0.657508 0.515276 0.830735 0.529926 1.000000 0.005435 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814680_4_7182712.txt b/datasets/pinganmajia/train/labels/订单1814680_4_7182712.txt new file mode 100644 index 0000000..9c7497c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814680_4_7182712.txt @@ -0,0 +1 @@ +4 0.000488 0.284772 0.061509 0.283457 0.166826 0.301829 0.239663 0.280833 0.279033 0.313639 0.289858 0.266400 0.299702 0.206029 0.330210 0.133854 0.396157 0.089232 0.461118 0.124668 0.497534 0.202096 0.493599 0.295267 0.459150 0.329388 0.420762 0.405508 0.427651 0.423880 0.388281 0.471120 0.415840 0.641725 0.429619 0.809707 0.454229 0.996055 0.002456 0.999993 diff --git a/datasets/pinganmajia/train/labels/订单1814683_4_7182764.txt b/datasets/pinganmajia/train/labels/订单1814683_4_7182764.txt new file mode 100644 index 0000000..231235c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814683_4_7182764.txt @@ -0,0 +1 @@ +4 0.422437 0.223243 0.381558 0.200184 0.378311 0.154056 0.366631 0.103612 0.341973 0.030098 0.318608 0.057484 0.304980 0.118026 0.308877 0.162711 0.320557 0.195857 0.320557 0.218926 0.294600 0.280900 0.280322 0.315499 0.271885 0.567755 0.272534 0.613872 0.277080 0.713341 0.286162 0.740727 0.288110 0.818557 0.304336 0.818557 0.305620 1.000000 0.349517 1.000000 0.356895 0.958384 0.364033 0.861800 0.384800 0.788286 0.388047 0.884870 0.383501 0.980000 0.386152 1.000000 0.431563 1.000000 0.440610 0.959826 0.441260 0.883427 0.447100 0.783970 0.457480 0.775315 0.455532 0.703243 0.471108 0.585043 0.473706 0.492798 0.440610 0.286670 diff --git a/datasets/pinganmajia/train/labels/订单1814684_4_7182745.txt b/datasets/pinganmajia/train/labels/订单1814684_4_7182745.txt new file mode 100644 index 0000000..af9b968 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814684_4_7182745.txt @@ -0,0 +1 @@ +4 0.010980 0.312304 0.016242 0.257194 0.000000 0.227218 0.000000 0.129755 0.000490 0.123333 0.000000 0.093627 0.000000 0.017034 0.369690 0.018346 0.371438 0.164020 0.371438 0.220441 0.334690 0.301814 0.304951 0.368738 0.331193 0.426483 0.439690 0.570833 0.450180 0.643015 0.551667 0.915980 0.551667 1.000000 0.005752 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814685_4_7182867.txt b/datasets/pinganmajia/train/labels/订单1814685_4_7182867.txt new file mode 100644 index 0000000..114c06f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814685_4_7182867.txt @@ -0,0 +1 @@ +4 1.000000 0.503358 0.980359 0.492096 0.994363 0.451422 1.000000 0.386814 1.000000 0.294951 0.976863 0.238824 0.852631 0.178456 0.717892 0.187635 0.626912 0.251936 0.586667 0.322806 0.583170 0.412047 0.611160 0.514412 0.493922 0.549841 0.392435 0.660074 0.219216 0.858235 0.210458 0.891054 0.154722 1.000000 0.999673 1.000000 1.000000 0.984461 diff --git a/datasets/pinganmajia/train/labels/订单1814687_4_7182771.txt b/datasets/pinganmajia/train/labels/订单1814687_4_7182771.txt new file mode 100644 index 0000000..2318b5e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814687_4_7182771.txt @@ -0,0 +1 @@ +4 0.009144 0.215254 0.044139 0.206071 0.110628 0.101083 0.234867 0.074838 0.355600 0.103708 0.430839 0.191633 0.460589 0.261188 0.430839 0.368800 0.367850 0.492158 0.450089 0.574838 0.525328 0.723129 0.619817 0.904233 0.677561 0.944917 0.709039 1.000000 0.002144 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814689_4_7182877.txt b/datasets/pinganmajia/train/labels/订单1814689_4_7182877.txt new file mode 100644 index 0000000..d637ad8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814689_4_7182877.txt @@ -0,0 +1 @@ +4 0.998558 0.354372 0.918833 0.307128 0.920800 0.254639 0.929658 0.182456 0.915879 0.099783 0.856825 0.021039 0.735762 0.023667 0.682612 0.114217 0.677692 0.227078 0.691471 0.350439 0.634383 0.423928 0.570408 0.557789 0.527100 0.909494 0.527100 0.998733 0.754550 1.000000 0.997575 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814691_4_7182947.txt b/datasets/pinganmajia/train/labels/订单1814691_4_7182947.txt new file mode 100644 index 0000000..ef1adda --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814691_4_7182947.txt @@ -0,0 +1 @@ +4 0.992500 0.284788 0.873513 0.217865 0.747526 0.229673 0.612795 0.329413 0.618038 0.446212 0.656538 0.496077 0.688038 0.557760 0.553295 0.688990 0.492064 0.866154 0.532308 0.937019 0.593551 0.972452 0.638744 1.000000 0.944769 1.000000 1.000000 0.998769 1.000000 0.480240 0.975000 0.468519 0.976744 0.451462 1.000000 0.426548 1.000000 0.405221 diff --git a/datasets/pinganmajia/train/labels/订单1814692_4_7182899.txt b/datasets/pinganmajia/train/labels/订单1814692_4_7182899.txt new file mode 100644 index 0000000..f0d72f8 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814692_4_7182899.txt @@ -0,0 +1 @@ +4 0.011278 0.282195 0.235250 0.270391 0.354236 0.311070 0.407903 0.375375 0.428889 0.454117 0.449889 0.553852 0.417222 0.608969 0.529208 0.682461 0.627208 0.841250 0.673861 0.908180 0.645861 0.979047 0.593722 1.000000 0.002000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814693_4_7182923.txt b/datasets/pinganmajia/train/labels/订单1814693_4_7182923.txt new file mode 100644 index 0000000..80fe69a --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814693_4_7182923.txt @@ -0,0 +1 @@ +4 0.017869 0.547259 0.075616 0.518388 0.051117 0.482955 0.058116 0.426527 0.096610 0.425213 0.082614 0.387159 0.082614 0.363537 0.110606 0.367472 0.108864 0.297919 0.121108 0.240178 0.166600 0.191619 0.297831 0.202116 0.378324 0.238864 0.390578 0.287422 0.418570 0.330724 0.423816 0.364844 0.434318 0.398970 0.420322 0.465895 0.507812 0.476392 0.486809 0.566946 0.576051 0.615504 0.633797 0.733615 0.675786 0.769048 0.777273 0.825476 0.814025 0.879283 0.817519 0.908153 0.858343 1.000000 0.285388 1.000000 0.003873 0.998707 diff --git a/datasets/pinganmajia/train/labels/订单1814694_4_7182984.txt b/datasets/pinganmajia/train/labels/订单1814694_4_7182984.txt new file mode 100644 index 0000000..157e3fb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814694_4_7182984.txt @@ -0,0 +1 @@ +4 0.012757 0.274267 0.114249 0.207338 0.243724 0.179776 0.355710 0.188966 0.432706 0.251952 0.420453 0.290015 0.383714 0.304452 0.364465 0.413372 0.329465 0.468488 0.355710 0.506551 0.437953 0.535417 0.558693 0.660093 0.542942 0.742770 0.562191 0.854321 0.602428 0.931744 0.646307 1.000000 0.005772 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814696_4_7182914.txt b/datasets/pinganmajia/train/labels/订单1814696_4_7182914.txt new file mode 100644 index 0000000..27a8df4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814696_4_7182914.txt @@ -0,0 +1 @@ +4 0.005435 0.314984 0.058585 0.195564 0.115668 0.091887 0.155037 0.022337 0.388309 0.024959 0.428664 0.160131 0.415864 0.303178 0.402089 0.332051 0.340080 0.514461 0.324332 0.555147 0.480827 0.763807 0.424724 0.998717 0.000515 0.998717 diff --git a/datasets/pinganmajia/train/labels/订单1814697_4_7183025.txt b/datasets/pinganmajia/train/labels/订单1814697_4_7183025.txt new file mode 100644 index 0000000..884501d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814697_4_7183025.txt @@ -0,0 +1 @@ +4 0.161497 0.413379 0.116003 0.444873 0.072253 0.497363 0.053008 0.561670 0.075755 0.641719 0.119492 0.665342 0.152747 0.775586 0.152747 0.867441 0.128242 0.926504 0.159740 0.938311 0.192995 0.908125 0.210482 0.868760 0.215742 0.799199 0.229740 0.706025 0.250729 0.791328 0.266484 0.841201 0.268229 0.862197 0.331224 0.881885 0.367969 0.877939 0.373216 0.860879 0.325977 0.833320 0.304974 0.776895 0.329466 0.633848 0.360964 0.625977 0.367969 0.545918 0.336471 0.463242 0.278724 0.419941 0.247227 0.400254 0.245482 0.342510 0.203490 0.317578 0.149245 0.332012 0.163242 0.372695 0.161497 0.396318 diff --git a/datasets/pinganmajia/train/labels/订单1814700_4_7182928.txt b/datasets/pinganmajia/train/labels/订单1814700_4_7182928.txt new file mode 100644 index 0000000..66826e1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814700_4_7182928.txt @@ -0,0 +1 @@ +4 0.617500 0.018426 0.597812 0.084039 0.592569 0.114225 0.586007 0.153588 0.604375 0.198206 0.513831 0.304514 0.500706 0.543356 0.516447 0.643090 0.530891 0.717894 0.565012 0.749387 0.575509 0.800567 0.612257 0.836007 0.617500 0.812384 0.622755 0.786134 0.612257 0.706088 0.617500 0.666713 0.614873 0.607662 0.638495 0.687708 0.647685 0.763831 0.675243 0.860938 0.687060 0.935741 0.685741 0.993484 0.827477 0.998738 0.841910 0.948866 0.840602 0.993484 0.960451 1.000000 0.961343 1.000000 0.971829 0.908183 0.979711 0.822882 0.979711 0.724456 0.998079 0.715266 1.000000 0.629942 1.000000 0.298079 0.916713 0.194271 0.883900 0.173275 0.793356 0.162778 0.774977 0.133900 0.761863 0.097164 0.744803 0.017106 diff --git a/datasets/pinganmajia/train/labels/订单1814703_4_7183108.txt b/datasets/pinganmajia/train/labels/订单1814703_4_7183108.txt new file mode 100644 index 0000000..c7d26e5 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814703_4_7183108.txt @@ -0,0 +1 @@ +4 0.993442 0.696817 0.900860 0.644329 0.816997 0.608890 0.783815 0.548524 0.789042 0.492098 0.785552 0.459280 0.738393 0.356927 0.624838 0.356927 0.563701 0.406793 0.554968 0.467159 0.539237 0.528841 0.553214 0.574768 0.511282 0.625951 0.527013 0.646951 0.483328 0.828049 0.476347 0.912037 0.430925 0.978976 0.433360 1.000000 0.998442 1.000000 1.000000 0.999976 1.000000 0.981305 diff --git a/datasets/pinganmajia/train/labels/订单1814705_4_7183229.txt b/datasets/pinganmajia/train/labels/订单1814705_4_7183229.txt new file mode 100644 index 0000000..d494e37 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814705_4_7183229.txt @@ -0,0 +1 @@ +4 0.070392 0.015776 0.142243 0.098448 0.201299 0.131258 0.219013 0.102386 0.256415 0.047271 0.282010 0.019714 0.375515 0.022337 0.431612 0.077451 0.456219 0.162753 0.454252 0.220498 0.416850 0.312361 0.393229 0.381920 0.399136 0.426536 0.449332 0.535458 0.390276 0.601078 0.374528 0.708685 0.364687 0.833358 0.322365 0.884542 0.284963 0.919975 0.337126 0.996087 0.085613 1.000000 0.000000 1.000000 0.000000 0.844681 0.002482 0.022337 diff --git a/datasets/pinganmajia/train/labels/订单1814708_4_7183099.txt b/datasets/pinganmajia/train/labels/订单1814708_4_7183099.txt new file mode 100644 index 0000000..16015a9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814708_4_7183099.txt @@ -0,0 +1 @@ +4 0.993637 0.475116 0.906042 0.430498 0.837144 0.404248 0.842066 0.355694 0.831233 0.305822 0.824349 0.203461 0.764306 0.145718 0.683602 0.160150 0.630451 0.210023 0.618637 0.300567 0.624540 0.420000 0.632422 0.471181 0.590095 0.535486 0.563524 0.611597 0.573359 0.687708 0.516276 0.786134 0.421788 0.857002 0.407023 0.883252 0.361745 0.954120 0.349939 0.997419 0.384722 1.000000 0.422804 1.000000 0.452300 0.960683 0.462144 0.990856 0.996736 1.000000 0.999540 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814709_4_7183088.txt b/datasets/pinganmajia/train/labels/订单1814709_4_7183088.txt new file mode 100644 index 0000000..f63413d --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814709_4_7183088.txt @@ -0,0 +1 @@ +4 0.014506 0.062978 0.040751 0.024923 0.490442 0.131219 0.465947 0.158781 0.437953 0.144344 0.420453 0.270332 0.388961 0.341196 0.334712 0.429120 0.476451 0.667963 0.507942 0.818881 0.499198 0.858256 0.474702 0.854321 0.453704 0.985548 0.444815 1.000000 0.265586 1.000000 -0.000000 0.996096 0.000000 0.836535 diff --git a/datasets/pinganmajia/train/labels/订单1814711_4_7183202.txt b/datasets/pinganmajia/train/labels/订单1814711_4_7183202.txt new file mode 100644 index 0000000..309a061 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814711_4_7183202.txt @@ -0,0 +1 @@ +4 1.000000 0.528186 0.908627 0.515723 0.903382 0.430417 0.933121 0.427794 0.950621 0.396299 0.964624 0.320184 0.936618 0.312304 0.910376 0.186324 0.794886 0.119400 0.649657 0.133836 0.537680 0.216507 0.528922 0.276875 0.525425 0.359559 0.535915 0.452733 0.574412 0.509154 0.625163 0.552463 0.429183 0.678456 0.348693 0.816250 0.297958 0.881863 0.243709 0.999975 0.259265 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814712_4_7183140.txt b/datasets/pinganmajia/train/labels/订单1814712_4_7183140.txt new file mode 100644 index 0000000..c43e416 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814712_4_7183140.txt @@ -0,0 +1 @@ +4 1.000000 0.387026 0.916850 0.364853 0.854841 0.321552 0.857794 0.278243 0.867635 0.236250 0.850907 0.219183 0.792837 0.084020 0.709173 0.073513 0.642243 0.114199 0.602874 0.224436 0.604841 0.278243 0.591060 0.291364 0.604841 0.343856 0.625515 0.372729 0.628462 0.392418 0.580239 0.417353 0.528070 0.536773 0.477874 0.682443 0.446379 0.835980 0.458186 0.895041 0.486734 0.997402 0.689020 1.000000 0.997580 1.000000 1.000000 0.494150 diff --git a/datasets/pinganmajia/train/labels/订单1814713_4_7183134.txt b/datasets/pinganmajia/train/labels/订单1814713_4_7183134.txt new file mode 100644 index 0000000..58b73ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814713_4_7183134.txt @@ -0,0 +1 @@ +4 0.000490 0.154828 0.040735 0.143015 0.143971 0.022279 0.451928 0.020968 0.548170 0.129890 0.537680 0.266373 0.485180 0.349056 0.360948 0.490784 0.409935 0.565588 0.399444 0.654828 0.413431 0.713885 0.465931 0.782120 0.481683 0.872672 0.464526 1.000000 0.308317 1.000000 0.000000 0.994865 0.000000 0.201703 diff --git a/datasets/pinganmajia/train/labels/订单1814715_4_7183150.txt b/datasets/pinganmajia/train/labels/订单1814715_4_7183150.txt new file mode 100644 index 0000000..c7e2888 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814715_4_7183150.txt @@ -0,0 +1 @@ +4 1.000000 0.305324 0.885895 0.241458 0.852654 0.177153 0.773909 0.129907 0.751163 0.140409 0.626934 0.098410 0.472953 0.125972 0.371461 0.206026 0.406461 0.374005 0.444949 0.418619 0.632181 0.527546 0.586687 0.623349 0.572685 0.724398 0.572685 0.783449 0.577932 0.847755 0.595432 0.883187 0.604187 0.988179 1.000000 0.997330 diff --git a/datasets/pinganmajia/train/labels/订单1814716_4_7183168.txt b/datasets/pinganmajia/train/labels/订单1814716_4_7183168.txt new file mode 100644 index 0000000..f8efada --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814716_4_7183168.txt @@ -0,0 +1 @@ +4 0.012757 0.156157 0.189486 0.112847 0.306718 0.157469 0.436204 0.230957 0.451955 0.269020 0.429208 0.291327 0.402953 0.401559 0.357459 0.450116 0.353961 0.485548 0.467695 0.553796 0.525442 0.614159 0.570936 0.755895 0.565689 0.801821 0.672428 0.997361 0.000000 0.999977 0.000000 0.584931 0.000504 0.514421 0.026759 0.501296 0.019753 0.461929 0.014506 0.334630 0.009259 0.322824 diff --git a/datasets/pinganmajia/train/labels/订单1814718_4_7183191.txt b/datasets/pinganmajia/train/labels/订单1814718_4_7183191.txt new file mode 100644 index 0000000..b7c91a0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814718_4_7183191.txt @@ -0,0 +1 @@ +4 1.000000 0.317613 0.968032 0.317613 0.962130 0.230998 0.934568 0.149630 0.881420 0.023652 0.687523 0.026276 0.653071 0.147006 0.649136 0.284805 0.645201 0.334671 0.663897 0.437037 0.592045 0.510525 0.584174 0.762490 0.602878 0.832047 0.582207 0.997407 0.853627 1.000000 0.993642 1.000000 1.000000 0.509084 diff --git a/datasets/pinganmajia/train/labels/订单1814721_4_7183261.txt b/datasets/pinganmajia/train/labels/订单1814721_4_7183261.txt new file mode 100644 index 0000000..c79c8c9 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814721_4_7183261.txt @@ -0,0 +1 @@ +4 0.632160 0.283440 0.619907 0.301810 0.570920 0.321500 0.523680 0.409420 0.569173 0.448790 0.577920 0.498660 0.597160 0.576090 0.616413 0.631210 0.614667 0.703390 0.570920 0.741440 0.593667 0.755880 0.639160 0.744070 0.668907 0.734880 0.665400 0.690260 0.682907 0.629890 0.705653 0.704700 0.709147 0.737510 0.724893 0.793940 0.742400 0.817560 0.770387 0.808370 0.761640 0.758500 0.761640 0.712570 0.759893 0.654830 0.773893 0.509160 0.828133 0.421230 0.780893 0.307060 0.726653 0.293940 0.719653 0.274250 0.728400 0.237510 0.696907 0.199450 0.642653 0.204700 0.628667 0.234880 0.632160 0.265070 diff --git a/datasets/pinganmajia/train/labels/订单1814727_4_7183220.txt b/datasets/pinganmajia/train/labels/订单1814727_4_7183220.txt new file mode 100644 index 0000000..0ba05a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814727_4_7183220.txt @@ -0,0 +1 @@ +4 0.003906 0.018422 0.222635 0.017109 0.296125 0.069602 0.318875 0.162773 0.311875 0.234953 0.271625 0.305820 0.292625 0.317633 0.297875 0.429180 0.297875 0.500047 0.343365 0.545977 0.334615 0.574852 0.373115 0.782195 0.385365 0.853063 0.445510 1.000000 0.000000 1.000000 0.000000 0.458914 diff --git a/datasets/pinganmajia/train/labels/订单1814728_4_7183298.txt b/datasets/pinganmajia/train/labels/订单1814728_4_7183298.txt new file mode 100644 index 0000000..8828c80 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814728_4_7183298.txt @@ -0,0 +1 @@ +4 0.992500 0.314981 0.850769 0.311038 0.765026 0.347788 0.724782 0.425212 0.709026 0.501327 0.698538 0.597125 0.590051 0.616817 0.525308 0.790038 0.507808 0.998702 0.992038 1.000000 0.997744 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814729_4_7183308.txt b/datasets/pinganmajia/train/labels/订单1814729_4_7183308.txt new file mode 100644 index 0000000..fb6a4cf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814729_4_7183308.txt @@ -0,0 +1 @@ +4 0.757413 0.059109 0.755451 0.144410 0.757422 0.291389 0.772179 0.328137 0.742656 0.363565 0.668837 0.439676 0.574349 0.660150 0.570408 0.753333 0.567457 0.989549 0.578142 1.000000 0.900521 1.000000 1.000000 0.998750 1.000000 0.021042 0.767257 0.017106 diff --git a/datasets/pinganmajia/train/labels/订单1814730_4_7183279.txt b/datasets/pinganmajia/train/labels/订单1814730_4_7183279.txt new file mode 100644 index 0000000..cb128bb --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814730_4_7183279.txt @@ -0,0 +1 @@ +4 0.000490 0.152206 0.098480 0.082647 0.215719 0.062966 0.313693 0.102341 0.355703 0.174510 0.371438 0.199449 0.345196 0.299191 0.318954 0.368738 0.264706 0.454044 0.297958 0.450110 0.324199 0.471103 0.380196 0.553775 0.436176 0.688946 0.455425 0.812304 0.502680 0.999975 0.000000 0.998664 0.000000 0.391691 0.014493 0.372672 0.000000 0.352034 0.000000 0.179498 diff --git a/datasets/pinganmajia/train/labels/订单1814732_4_7183330.txt b/datasets/pinganmajia/train/labels/订单1814732_4_7183330.txt new file mode 100644 index 0000000..91416a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814732_4_7183330.txt @@ -0,0 +1 @@ +4 0.002500 0.561725 0.056632 0.536794 0.141276 0.464618 0.138325 0.410810 0.152101 0.311076 0.237734 0.120787 0.275130 0.119468 0.359783 0.156215 0.399149 0.215266 0.422769 0.299259 0.421788 0.363565 0.410964 0.443623 0.450330 0.484306 0.444427 0.570914 0.476910 0.702153 0.533012 0.993484 0.001510 0.997419 diff --git a/datasets/pinganmajia/train/labels/订单1814733_4_7183373.txt b/datasets/pinganmajia/train/labels/订单1814733_4_7183373.txt new file mode 100644 index 0000000..3db4413 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814733_4_7183373.txt @@ -0,0 +1 @@ +4 0.011358 0.452747 0.045941 0.431751 0.113132 0.371387 0.133882 0.332012 0.121039 0.287396 0.108191 0.208652 0.155623 0.017057 0.288029 0.020990 0.351270 0.161413 0.352255 0.276895 0.340402 0.333327 0.418461 0.384505 0.580510 0.326764 0.668451 0.271647 0.686240 0.232279 0.731691 0.170599 0.765289 0.209967 0.755407 0.232279 0.745525 0.221777 0.736632 0.288711 0.723789 0.338574 0.707975 0.356947 0.619049 0.439629 0.511343 0.526243 0.466877 0.523613 0.481701 0.658789 0.519250 0.762461 0.530118 0.813639 0.518260 0.859577 0.525176 0.938314 0.531681 1.000000 0.000593 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814734_4_7183270.txt b/datasets/pinganmajia/train/labels/订单1814734_4_7183270.txt new file mode 100644 index 0000000..f6b54a1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814734_4_7183270.txt @@ -0,0 +1 @@ +4 0.000000 0.114332 0.093116 0.066946 0.243589 0.068260 0.325833 0.091882 0.394072 0.141747 0.437822 0.221804 0.441316 0.258544 0.397576 0.308416 0.381828 0.358281 0.373078 0.395028 0.380076 0.423899 0.343333 0.513139 0.390578 0.585320 0.409820 0.669311 0.409820 0.774297 0.523561 0.923899 0.534053 0.976392 0.502557 0.994766 0.486809 0.984268 0.470331 1.000000 0.157604 1.000000 0.005625 0.998707 0.000000 0.526442 diff --git a/datasets/pinganmajia/train/labels/订单1814736_4_7183354.txt b/datasets/pinganmajia/train/labels/订单1814736_4_7183354.txt new file mode 100644 index 0000000..3cf1339 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814736_4_7183354.txt @@ -0,0 +1 @@ +4 1.000000 0.389028 0.978374 0.376667 0.962623 0.354355 0.949502 0.346487 0.942941 0.296618 0.956062 0.274306 0.954747 0.228374 0.936381 0.165384 0.925882 0.158815 0.900948 0.018399 0.570237 0.018399 0.537426 0.073513 0.550547 0.158815 0.567614 0.269052 0.582051 0.345172 0.624044 0.435719 0.669975 0.467214 0.596487 0.551209 0.589918 0.691626 0.574175 0.791364 0.547925 0.939657 0.533807 1.000000 0.693227 1.000000 1.000000 0.997426 diff --git a/datasets/pinganmajia/train/labels/订单1814737_4_7183333.txt b/datasets/pinganmajia/train/labels/订单1814737_4_7183333.txt new file mode 100644 index 0000000..bdd1b33 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814737_4_7183333.txt @@ -0,0 +1 @@ +4 0.386344 0.414697 0.372353 0.423884 0.298858 0.448815 0.253368 0.561678 0.253368 0.622042 0.312860 0.681099 0.312860 0.766401 0.312860 0.860891 0.323356 0.910761 0.328604 0.997370 0.454591 0.998685 0.529827 0.996055 0.514083 0.964567 0.515836 0.850389 0.524579 0.791332 0.542076 0.761151 0.550830 0.683720 0.624314 0.590545 0.585825 0.497370 0.570069 0.450130 0.510577 0.419948 0.515836 0.366142 0.466840 0.320208 0.412595 0.332016 0.384602 0.363512 0.381096 0.398945 diff --git a/datasets/pinganmajia/train/labels/订单1814738_4_7183342.txt b/datasets/pinganmajia/train/labels/订单1814738_4_7183342.txt new file mode 100644 index 0000000..8bd312c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814738_4_7183342.txt @@ -0,0 +1 @@ +4 0.689894 0.324117 0.654894 0.351677 0.602407 0.379236 0.590159 0.460595 0.570913 0.604950 0.591905 0.625952 0.609405 0.653512 0.626905 0.673194 0.637394 0.787371 0.642646 0.863482 0.609405 0.909415 0.607659 0.934345 0.642646 0.943532 0.688148 0.888413 0.705648 0.849048 0.717884 0.681071 0.742381 0.793929 0.735384 0.846419 0.738889 0.888413 0.773889 0.957976 0.817632 0.971091 0.835119 0.942222 0.824630 0.829365 0.815873 0.755873 0.829881 0.653512 0.877116 0.657450 0.894616 0.615456 0.926111 0.580020 0.919114 0.480278 0.912116 0.398919 0.896362 0.363482 0.801878 0.316240 0.796627 0.268998 0.770384 0.233562 0.724894 0.230933 0.689894 0.257183 0.688148 0.295238 diff --git a/datasets/pinganmajia/train/labels/订单1814739_4_7183472.txt b/datasets/pinganmajia/train/labels/订单1814739_4_7183472.txt new file mode 100644 index 0000000..98df7ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814739_4_7183472.txt @@ -0,0 +1 @@ +4 0.009232 0.015723 0.276961 0.024902 0.346944 0.074779 0.329444 0.141703 0.315458 0.263750 0.283954 0.366115 0.296209 0.417292 0.324199 0.435674 0.299706 0.471103 0.380196 0.583958 0.416944 0.737500 0.444935 0.910735 0.451373 1.000000 0.004003 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814742_4_7183441.txt b/datasets/pinganmajia/train/labels/订单1814742_4_7183441.txt new file mode 100644 index 0000000..1534886 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814742_4_7183441.txt @@ -0,0 +1 @@ +4 0.000000 0.249865 0.084477 0.191569 0.192958 0.171887 0.262958 0.198137 0.364444 0.248002 0.404690 0.314939 0.392435 0.404167 0.387190 0.490784 0.429183 0.513100 0.408186 0.551152 0.485180 0.607586 0.486928 0.666642 0.485180 0.742757 0.451928 0.786066 0.453676 0.837243 0.469428 0.900233 0.507925 0.914669 0.492173 0.934350 0.486928 0.954044 0.455425 0.967169 0.434428 0.996042 0.000000 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1814743_4_7183461.txt b/datasets/pinganmajia/train/labels/订单1814743_4_7183461.txt new file mode 100644 index 0000000..b5a1add --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814743_4_7183461.txt @@ -0,0 +1 @@ +4 0.997534 0.160098 0.923716 0.139102 0.828242 0.152227 0.765249 0.216530 0.737690 0.297897 0.719976 0.430443 0.716040 0.471120 0.604819 0.539362 0.562495 0.688971 0.552651 0.867448 0.558560 0.904193 0.580957 1.000000 0.819248 1.000000 0.997534 0.996055 diff --git a/datasets/pinganmajia/train/labels/订单1814744_4_7183503.txt b/datasets/pinganmajia/train/labels/订单1814744_4_7183503.txt new file mode 100644 index 0000000..cf4e904 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814744_4_7183503.txt @@ -0,0 +1 @@ +4 1.000000 0.356808 0.954240 0.328096 0.898139 0.297910 0.892231 0.200795 0.884361 0.099750 0.841053 0.039378 0.829240 0.023635 0.728846 0.023635 0.699317 0.034128 0.662904 0.087936 0.635341 0.173237 0.639279 0.270353 0.639279 0.309724 0.649120 0.363526 0.594990 0.473763 0.605812 0.494763 0.597942 0.560378 0.610736 0.643058 0.615659 0.712609 0.598923 0.832032 0.610736 0.862218 0.608769 0.929147 0.624514 0.967205 0.632423 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814745_4_7183557.txt b/datasets/pinganmajia/train/labels/订单1814745_4_7183557.txt new file mode 100644 index 0000000..274c3aa --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814745_4_7183557.txt @@ -0,0 +1 @@ +4 1.000000 0.615727 0.948028 0.599732 0.892030 0.570865 0.911280 0.531497 0.918281 0.481626 0.911280 0.458002 0.871038 0.335952 0.778293 0.301834 0.636563 0.313642 0.573576 0.384507 0.566574 0.459317 0.587566 0.514429 0.598074 0.559048 0.661061 0.653538 0.571822 0.711280 0.519331 0.809706 0.479089 0.944879 0.494833 0.969810 0.482584 0.997370 0.744544 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814746_4_7183495.txt b/datasets/pinganmajia/train/labels/订单1814746_4_7183495.txt new file mode 100644 index 0000000..ac8adbd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814746_4_7183495.txt @@ -0,0 +1 @@ +4 0.013409 0.459280 0.109497 0.434354 0.105990 0.388415 0.092013 0.290000 0.102500 0.221756 0.188101 0.162695 0.319123 0.153512 0.401234 0.194195 0.441412 0.265061 0.446656 0.316244 0.443149 0.376610 0.434416 0.454037 0.420438 0.475037 0.499058 0.520963 0.481591 0.553768 0.574172 0.643012 0.647549 0.716500 0.680747 0.812305 0.663263 0.855610 0.651039 0.887110 0.621347 0.923854 0.598636 0.964537 0.560195 0.996037 0.472857 0.999963 0.009919 0.996037 diff --git a/datasets/pinganmajia/train/labels/订单1814748_4_7183551.txt b/datasets/pinganmajia/train/labels/订单1814748_4_7183551.txt new file mode 100644 index 0000000..a152428 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814748_4_7183551.txt @@ -0,0 +1 @@ +4 1.000000 0.214926 0.950313 0.211315 0.916850 0.059085 0.903070 0.023652 0.677678 0.019714 0.668817 0.116822 0.677678 0.187688 0.698346 0.246748 0.772163 0.318922 0.815472 0.318922 0.810551 0.371413 0.781023 0.443595 0.759369 0.587949 0.767243 0.812361 0.766262 0.923913 0.795790 0.973783 0.805282 1.000000 0.858983 1.000000 0.867635 0.973783 0.882402 0.973783 0.872561 0.943595 0.886336 0.912100 0.905037 0.990842 0.977555 1.000000 0.998566 1.000000 1.000000 0.808407 diff --git a/datasets/pinganmajia/train/labels/订单1814750_4_7183528.txt b/datasets/pinganmajia/train/labels/订单1814750_4_7183528.txt new file mode 100644 index 0000000..b4d60f1 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814750_4_7183528.txt @@ -0,0 +1 @@ +4 0.016242 0.492096 0.112467 0.476348 0.142222 0.457978 0.147467 0.406801 0.173725 0.401544 0.131716 0.363493 0.126471 0.314939 0.136977 0.283444 0.138725 0.212574 0.238464 0.152206 0.338203 0.135147 0.457190 0.200760 0.455425 0.316250 0.464183 0.356924 0.451928 0.431728 0.532418 0.455355 0.544673 0.460600 0.551667 0.556409 0.595408 0.643015 0.614657 0.686324 0.604167 0.717819 0.604167 0.849056 0.611160 0.929105 0.568203 1.000000 0.012124 1.000000 0.000490 0.999975 diff --git a/datasets/pinganmajia/train/labels/订单1814751_4_7183542.txt b/datasets/pinganmajia/train/labels/订单1814751_4_7183542.txt new file mode 100644 index 0000000..e843a83 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814751_4_7183542.txt @@ -0,0 +1 @@ +4 0.868304 0.395066 0.868304 0.363575 0.833319 0.333388 0.791316 0.336009 0.777325 0.360943 0.742325 0.416064 0.723085 0.463311 0.698582 0.505307 0.696827 0.569605 0.710833 0.615537 0.730073 0.607664 0.756330 0.611601 0.747573 0.704781 0.737076 0.837325 0.723085 0.879320 0.752822 0.889814 0.789576 0.866195 0.796564 0.790077 0.819313 0.708717 0.833319 0.678531 0.847310 0.737588 0.864810 0.841261 0.871813 0.884561 0.905058 0.906875 0.931301 0.902939 0.922558 0.846513 0.927807 0.779583 0.934810 0.683783 0.962792 0.640471 0.990789 0.555175 0.985541 0.484309 0.929547 0.418684 0.905058 0.400318 diff --git a/datasets/pinganmajia/train/labels/订单1814752_4_7183538.txt b/datasets/pinganmajia/train/labels/订单1814752_4_7183538.txt new file mode 100644 index 0000000..55982fd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814752_4_7183538.txt @@ -0,0 +1 @@ +4 1.000000 0.451837 0.983744 0.439644 0.982000 0.265106 0.894513 0.175865 0.786026 0.165365 0.696782 0.188990 0.590051 0.296606 0.618038 0.402904 0.639038 0.480327 0.639038 0.564317 0.558551 0.641750 0.483308 0.842538 0.459603 1.000000 0.997846 1.000000 1.000000 0.864885 diff --git a/datasets/pinganmajia/train/labels/订单1814753_4_7183564.txt b/datasets/pinganmajia/train/labels/订单1814753_4_7183564.txt new file mode 100644 index 0000000..0b0c428 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814753_4_7183564.txt @@ -0,0 +1 @@ +4 0.002239 0.513100 0.058235 0.477659 0.079232 0.398922 0.073987 0.363493 0.042484 0.301814 0.054739 0.287377 0.066977 0.202071 0.082729 0.122022 0.112467 0.072157 0.196471 0.057721 0.385441 0.076091 0.455425 0.127267 0.465931 0.191569 0.455425 0.262439 0.457190 0.331998 0.455425 0.396299 0.427435 0.448787 0.551667 0.530159 0.583170 0.534093 0.579673 0.562966 0.600670 0.602341 0.604167 0.674510 0.623415 0.783444 0.688154 0.996042 0.000000 0.997341 -0.000000 0.719620 diff --git a/datasets/pinganmajia/train/labels/订单1814756_4_7183608.txt b/datasets/pinganmajia/train/labels/订单1814756_4_7183608.txt new file mode 100644 index 0000000..ef7add0 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814756_4_7183608.txt @@ -0,0 +1 @@ +4 0.989118 0.297868 0.943627 0.167953 0.824641 0.107586 0.649657 0.116777 0.521928 0.179767 0.457190 0.271630 0.469428 0.371360 0.511422 0.436985 0.525425 0.498664 0.562173 0.548529 0.462435 0.590527 0.416944 0.685012 0.355703 0.780809 0.320703 0.897610 0.332941 0.988162 1.000000 0.998554 1.000000 0.733799 diff --git a/datasets/pinganmajia/train/labels/订单1814757_4_7183598.txt b/datasets/pinganmajia/train/labels/订单1814757_4_7183598.txt new file mode 100644 index 0000000..cd4a6a4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814757_4_7183598.txt @@ -0,0 +1 @@ +4 0.003987 0.091838 0.101977 0.076091 0.222712 0.122022 0.271699 0.185012 0.264706 0.228321 0.257712 0.299191 0.250703 0.314939 0.248954 0.375306 0.231454 0.418603 0.206961 0.464534 0.257712 0.489473 0.231454 0.519657 0.264706 0.565588 0.345196 0.681078 0.388938 0.821495 0.455425 0.999975 0.003987 0.996042 diff --git a/datasets/pinganmajia/train/labels/订单1814760_4_7183659.txt b/datasets/pinganmajia/train/labels/订单1814760_4_7183659.txt new file mode 100644 index 0000000..5681a73 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814760_4_7183659.txt @@ -0,0 +1 @@ +4 0.000372 0.459337 0.061615 0.389779 0.103603 0.358279 0.101859 0.312356 0.108859 0.266423 0.131603 0.253298 0.177103 0.164058 0.236590 0.126000 0.369577 0.108942 0.518308 0.157500 0.544551 0.209990 0.535808 0.255923 0.518308 0.332038 0.507808 0.367471 0.497308 0.419962 0.446564 0.481644 0.492064 0.509202 0.488564 0.584000 0.530551 0.658808 0.597051 0.763798 0.630295 0.884529 0.656500 1.000000 0.165205 1.000000 0.002115 0.997394 diff --git a/datasets/pinganmajia/train/labels/订单1814761_4_7183671.txt b/datasets/pinganmajia/train/labels/订单1814761_4_7183671.txt new file mode 100644 index 0000000..123dd53 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814761_4_7183671.txt @@ -0,0 +1 @@ +4 0.998534 0.631244 0.935538 0.608936 0.894202 0.553814 0.824317 0.528885 0.842034 0.468513 0.854832 0.400276 0.888293 0.299224 0.853846 0.223109 0.796760 0.169301 0.736721 0.186359 0.671760 0.229667 0.635341 0.304474 0.634361 0.358276 0.629437 0.459327 0.609750 0.535442 0.556601 0.599750 0.528058 0.729667 0.501486 0.998699 1.000000 0.998699 1.000000 0.814000 diff --git a/datasets/pinganmajia/train/labels/订单1814762_4_7183694.txt b/datasets/pinganmajia/train/labels/订单1814762_4_7183694.txt new file mode 100644 index 0000000..891ba04 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814762_4_7183694.txt @@ -0,0 +1 @@ +4 1.000000 0.373954 0.922757 0.360915 0.932598 0.210000 0.921771 0.078766 0.901103 0.023652 0.685551 0.026275 0.643229 0.144379 0.641262 0.262492 0.656023 0.328113 0.672757 0.381920 0.514289 0.458031 0.522163 0.534150 0.486734 0.597141 0.407010 0.720498 0.352874 0.850417 0.335159 0.989526 0.927727 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814764_4_7183718.txt b/datasets/pinganmajia/train/labels/订单1814764_4_7183718.txt new file mode 100644 index 0000000..91bbc2e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814764_4_7183718.txt @@ -0,0 +1 @@ +4 0.009232 0.461912 0.087974 0.426483 0.077484 0.394988 0.038987 0.375306 0.014493 0.328051 0.000000 0.125233 0.000000 0.106875 0.091471 0.055086 0.206961 0.026225 0.346944 0.057721 0.450180 0.107586 0.460686 0.208640 0.444935 0.263750 0.437941 0.305748 0.432680 0.356924 0.388938 0.473725 0.388938 0.485539 0.495670 0.507843 0.555163 0.570833 0.553415 0.669265 0.593660 0.820184 0.567598 1.000000 0.000000 1.000000 0.000000 0.818725 diff --git a/datasets/pinganmajia/train/labels/订单1814766_4_7183698.txt b/datasets/pinganmajia/train/labels/订单1814766_4_7183698.txt new file mode 100644 index 0000000..7a53590 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814766_4_7183698.txt @@ -0,0 +1 @@ +4 0.009918 0.156152 0.173770 0.125968 0.372719 0.118094 0.492691 0.169277 0.519016 0.250643 0.507309 0.358254 0.478060 0.425184 0.592158 0.488174 0.636052 0.572163 0.638975 0.637782 0.595096 0.725711 0.627281 0.809700 0.682869 0.984240 0.626639 1.000000 0.000000 1.000000 0.000000 0.391642 0.006995 0.374001 diff --git a/datasets/pinganmajia/train/labels/订单1814767_4_7183732.txt b/datasets/pinganmajia/train/labels/订单1814767_4_7183732.txt new file mode 100644 index 0000000..bdc6edd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814767_4_7183732.txt @@ -0,0 +1 @@ +4 0.997561 0.535458 0.970987 0.513154 0.936538 0.477712 0.948346 0.396348 0.954252 0.217876 0.884369 0.094518 0.807598 0.097141 0.732794 0.129951 0.672757 0.220498 0.692439 0.421283 0.720000 0.484281 0.736734 0.524959 0.656023 0.572206 0.604841 0.637819 0.562518 0.754616 0.538897 0.847794 0.529387 1.000000 0.999528 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814769_4_7183743.txt b/datasets/pinganmajia/train/labels/订单1814769_4_7183743.txt new file mode 100644 index 0000000..4f4affd --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814769_4_7183743.txt @@ -0,0 +1 @@ +4 0.010980 0.027537 0.045980 0.017034 0.303203 0.017034 0.322451 0.062966 0.373186 0.148272 0.360948 0.257194 0.353938 0.363493 0.283954 0.414669 0.416944 0.497353 0.474673 0.593150 0.513170 0.745380 0.541176 0.891054 0.565670 0.998664 0.000000 0.997353 0.000000 0.326017 0.037239 0.333309 0.005735 0.279498 diff --git a/datasets/pinganmajia/train/labels/订单1814770_4_7183764.txt b/datasets/pinganmajia/train/labels/订单1814770_4_7183764.txt new file mode 100644 index 0000000..18bdd68 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814770_4_7183764.txt @@ -0,0 +1 @@ +4 0.007402 0.511838 0.040864 0.497402 0.072365 0.496087 0.130435 0.450155 0.166850 0.423913 0.180631 0.346487 0.169804 0.317614 0.167837 0.271683 0.181612 0.266430 0.195392 0.160131 0.245588 0.102386 0.316458 0.118137 0.355827 0.162753 0.379449 0.228374 0.382402 0.286119 0.380435 0.345172 0.362714 0.460654 0.426691 0.515776 0.438505 0.584020 0.473940 0.695564 0.505435 0.909477 0.520735 1.000000 0.311232 1.000000 0.001495 0.996087 diff --git a/datasets/pinganmajia/train/labels/订单1814772_4_7183761.txt b/datasets/pinganmajia/train/labels/订单1814772_4_7183761.txt new file mode 100644 index 0000000..61b1619 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814772_4_7183761.txt @@ -0,0 +1 @@ +4 1.000000 0.590122 0.892127 0.543280 0.878149 0.497341 0.899107 0.475037 0.900860 0.419915 0.893864 0.392354 0.867662 0.307049 0.806526 0.253244 0.670260 0.248000 0.612614 0.282122 0.554968 0.391049 0.560195 0.464537 0.600373 0.527524 0.581169 0.580024 0.472857 0.620707 0.406477 0.687634 0.347078 0.800488 0.348815 0.873988 0.368036 0.982902 0.383961 1.000000 0.919529 1.000000 0.996932 0.998659 1.000000 0.820280 diff --git a/datasets/pinganmajia/train/labels/订单1814775_4_7183797.txt b/datasets/pinganmajia/train/labels/订单1814775_4_7183797.txt new file mode 100644 index 0000000..1f07c9e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814775_4_7183797.txt @@ -0,0 +1 @@ +4 1.000000 0.485339 0.979819 0.461934 0.985723 0.418626 0.996553 0.326764 0.988677 0.157474 0.913872 0.129915 0.835132 0.133854 0.760332 0.187656 0.728833 0.263776 0.719976 0.389759 0.718989 0.469811 0.620566 0.498678 0.593008 0.597109 0.561509 0.713906 0.570371 0.868763 0.582183 0.998678 0.793799 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/train/labels/订单1814777_4_7183837.txt b/datasets/pinganmajia/train/labels/订单1814777_4_7183837.txt new file mode 100644 index 0000000..8fc2d3e --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814777_4_7183837.txt @@ -0,0 +1 @@ +4 0.993486 0.345187 0.904833 0.296633 0.685528 0.305820 0.545542 0.358312 0.519889 0.438367 0.533875 0.509234 0.505889 0.556477 0.578208 0.641781 0.449889 0.704773 0.505889 0.752016 0.447556 0.965922 0.476931 1.000000 1.000000 1.000000 1.000000 0.803836 diff --git a/datasets/pinganmajia/train/labels/订单1814778_4_7183820.txt b/datasets/pinganmajia/train/labels/订单1814778_4_7183820.txt new file mode 100644 index 0000000..ac92d0c --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814778_4_7183820.txt @@ -0,0 +1 @@ +4 0.002482 0.477712 0.063505 0.422598 0.117635 0.409477 0.148150 0.395041 0.203266 0.372729 0.220000 0.343856 0.226887 0.296618 0.215080 0.286119 0.216060 0.255931 0.218033 0.210000 0.229841 0.204747 0.239687 0.101078 0.287911 0.055147 0.345000 0.052516 0.409963 0.120760 0.420784 0.204747 0.416850 0.282181 0.416850 0.325482 0.404056 0.377982 0.380435 0.419975 0.433585 0.471152 0.476887 0.560392 0.508388 0.635196 0.544804 0.740180 0.552678 0.817614 0.521183 0.849109 0.495588 0.940972 0.492984 1.000000 0.000000 1.000000 0.000000 0.919755 diff --git a/datasets/pinganmajia/train/labels/订单1814784_4_7183903.txt b/datasets/pinganmajia/train/labels/订单1814784_4_7183903.txt new file mode 100644 index 0000000..dddcaaf --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814784_4_7183903.txt @@ -0,0 +1 @@ +4 0.380208 0.335944 0.362708 0.265075 0.308467 0.265075 0.283967 0.290013 0.292717 0.337256 0.250725 0.359562 0.227975 0.422556 0.215725 0.494738 0.222725 0.545913 0.233225 0.570850 0.247225 0.574788 0.280467 0.649587 0.289217 0.730956 0.303217 0.769013 0.271717 0.790013 0.306717 0.793950 0.345208 0.775575 0.325967 0.674525 0.332958 0.590538 0.357458 0.675837 0.353958 0.748012 0.346958 0.787387 0.373208 0.804444 0.387208 0.784762 0.383708 0.755888 0.395950 0.671900 0.394200 0.625969 0.422200 0.545913 0.458950 0.478988 0.450200 0.381875 0.423950 0.354312 diff --git a/datasets/pinganmajia/train/labels/订单1814786_4_7183928.txt b/datasets/pinganmajia/train/labels/订单1814786_4_7183928.txt new file mode 100644 index 0000000..238cc59 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814786_4_7183928.txt @@ -0,0 +1 @@ +4 0.994602 0.444896 0.910937 0.391094 0.895187 0.351719 0.878461 0.291354 0.858773 0.216552 0.844008 0.089260 0.836133 0.019698 0.640266 0.023635 0.590070 0.353031 0.600898 0.401594 0.577273 0.559073 0.590070 0.573510 0.620586 0.738865 0.645188 0.895031 0.652078 1.000000 0.656531 1.000000 1.000000 0.998719 1.000000 0.824781 diff --git a/datasets/pinganmajia/train/labels/订单1814788_4_7184020.txt b/datasets/pinganmajia/train/labels/订单1814788_4_7184020.txt new file mode 100644 index 0000000..4647897 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814788_4_7184020.txt @@ -0,0 +1 @@ +4 0.997881 0.192901 0.852654 0.146968 0.749414 0.165340 0.639177 0.249329 0.598930 0.358256 0.623426 0.519676 0.506193 0.576103 0.378457 0.698148 0.334712 0.842508 0.346770 1.000000 1.000000 1.000000 1.000000 0.389128 diff --git a/datasets/pinganmajia/train/labels/订单1814790_4_7183952.txt b/datasets/pinganmajia/train/labels/订单1814790_4_7183952.txt new file mode 100644 index 0000000..0f193ce --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814790_4_7183952.txt @@ -0,0 +1 @@ +4 1.000000 0.431235 0.970641 0.425225 0.909399 0.396353 0.874405 0.388480 0.863908 0.343863 0.842915 0.329431 0.835908 0.262500 0.725673 0.200814 0.627686 0.208696 0.540196 0.249373 0.508706 0.304490 0.526196 0.387167 0.559451 0.437039 0.594444 0.509216 0.512196 0.530216 0.499948 0.557775 0.555948 0.619451 0.510458 0.745441 0.517451 0.820245 0.494706 0.906853 0.487804 1.000000 0.747451 1.000000 0.995137 0.998716 1.000000 0.802431 diff --git a/datasets/pinganmajia/train/labels/订单1814792_4_7183966.txt b/datasets/pinganmajia/train/labels/订单1814792_4_7183966.txt new file mode 100644 index 0000000..6138853 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814792_4_7183966.txt @@ -0,0 +1 @@ +4 0.994606 0.157510 0.961142 0.015772 0.684568 0.018395 0.671775 0.102387 0.683580 0.177191 0.681613 0.232315 0.687523 0.284805 0.698349 0.342551 0.729846 0.414722 0.692438 0.488220 0.641258 0.552521 0.616651 0.629949 0.616651 0.804486 0.600903 0.996091 0.999529 0.998714 diff --git a/datasets/pinganmajia/train/labels/订单1814793_4_7183963.txt b/datasets/pinganmajia/train/labels/订单1814793_4_7183963.txt new file mode 100644 index 0000000..6df05f3 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814793_4_7183963.txt @@ -0,0 +1 @@ +4 1.000000 0.609141 0.957523 0.593212 0.952280 0.569592 0.917280 0.524974 0.926030 0.476415 0.912037 0.446233 0.885787 0.355677 0.803553 0.308437 0.675810 0.308437 0.607569 0.355677 0.583079 0.417361 0.572581 0.484288 0.567326 0.539410 0.588322 0.590590 0.500833 0.640460 0.499086 0.727066 0.465845 0.867491 0.439861 1.000000 0.999560 1.000000 1.000000 0.983698 diff --git a/datasets/pinganmajia/train/labels/订单1814795_4_7184043.txt b/datasets/pinganmajia/train/labels/订单1814795_4_7184043.txt new file mode 100644 index 0000000..d9ab8c7 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814795_4_7184043.txt @@ -0,0 +1 @@ +4 0.009115 0.359596 0.080859 0.333346 0.149103 0.325471 0.133359 0.286106 0.142103 0.242798 0.149103 0.203423 0.170103 0.207365 0.182346 0.095817 0.252333 0.052510 0.336333 0.026260 0.430821 0.049885 0.490308 0.091875 0.523551 0.160125 0.542808 0.221798 0.535808 0.301856 0.514808 0.364846 0.490308 0.408154 0.511308 0.413404 0.488564 0.511827 0.544551 0.622067 0.558551 0.744106 0.586551 0.871404 0.567500 1.000000 0.280538 1.000000 0.000372 0.998702 diff --git a/datasets/pinganmajia/train/labels/订单1814797_4_7183983.txt b/datasets/pinganmajia/train/labels/订单1814797_4_7183983.txt new file mode 100644 index 0000000..4d4f2f4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814797_4_7183983.txt @@ -0,0 +1 @@ +4 0.231475 0.020981 0.269967 0.102344 0.257725 0.178463 0.259475 0.287388 0.255975 0.376625 0.248975 0.412056 0.387208 0.478988 0.429200 0.568225 0.488692 0.660088 0.528933 0.759825 0.572683 0.843819 0.598925 0.913369 0.567433 0.997356 0.004000 0.996044 0.005750 0.020981 diff --git a/datasets/pinganmajia/train/labels/订单1814800_4_7184055.txt b/datasets/pinganmajia/train/labels/订单1814800_4_7184055.txt new file mode 100644 index 0000000..9769dab --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814800_4_7184055.txt @@ -0,0 +1 @@ +4 0.009259 0.191590 0.180741 0.175841 0.297973 0.219151 0.327716 0.299198 0.332963 0.359568 0.345216 0.454059 0.341718 0.481613 0.474702 0.517045 0.432706 0.566914 0.516698 0.665340 0.513189 0.712585 0.560442 0.795262 0.632181 0.847755 0.672428 0.884498 0.700422 0.938310 0.672428 0.930432 0.602428 0.922562 0.642675 0.997361 0.000504 0.998673 diff --git a/datasets/pinganmajia/train/labels/订单1814802_4_7184010.txt b/datasets/pinganmajia/train/labels/订单1814802_4_7184010.txt new file mode 100644 index 0000000..d90c29f --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814802_4_7184010.txt @@ -0,0 +1 @@ +4 0.012760 0.031484 0.077500 0.028857 0.264727 0.064297 0.322474 0.125977 0.301471 0.191592 0.268229 0.261143 0.261224 0.333320 0.226237 0.419941 0.269974 0.484238 0.313724 0.570859 0.378464 0.702090 0.376719 0.838574 0.427565 1.000000 0.000000 1.000000 0.000000 0.914395 diff --git a/datasets/pinganmajia/train/labels/订单1814803_4_7184355.txt b/datasets/pinganmajia/train/labels/订单1814803_4_7184355.txt new file mode 100644 index 0000000..c2f4af4 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814803_4_7184355.txt @@ -0,0 +1 @@ +4 0.000394 0.531536 0.040648 0.514470 0.023148 0.475104 0.042396 0.460668 0.042396 0.380616 0.189375 0.245443 0.345104 0.237569 0.394097 0.283498 0.457095 0.333368 0.476343 0.443602 0.474583 0.500035 0.562083 0.597153 0.584826 0.629957 0.663565 0.713950 0.672315 0.807127 0.702060 0.881927 0.726562 0.947543 0.741192 1.000000 0.176817 1.000000 0.000000 0.998759 0.000000 0.566944 diff --git a/datasets/pinganmajia/train/labels/订单1814809_4_7184194.txt b/datasets/pinganmajia/train/labels/订单1814809_4_7184194.txt new file mode 100644 index 0000000..09648d2 --- /dev/null +++ b/datasets/pinganmajia/train/labels/订单1814809_4_7184194.txt @@ -0,0 +1 @@ +4 0.002444 0.330685 0.054609 0.350365 0.105787 0.362180 0.089057 0.308371 0.075273 0.251942 0.063465 0.204702 0.068387 0.194204 0.057561 0.099710 0.072321 0.019658 0.339057 0.023594 0.373504 0.104963 0.367600 0.207321 0.363661 0.234881 0.353817 0.288690 0.345943 0.331994 0.323309 0.398921 0.354805 0.400238 0.378426 0.438296 0.389252 0.469792 0.441417 0.530156 0.525078 0.694204 0.568387 0.782128 0.569369 0.841183 0.585831 1.000000 0.000000 1.000000 0.000000 0.664025 diff --git a/datasets/pinganmajia/val/.DS_Store b/datasets/pinganmajia/val/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/pinganmajia/val/.DS_Store differ diff --git a/datasets/pinganmajia/val/images/订单1814810_4_7184237.jpg b/datasets/pinganmajia/val/images/订单1814810_4_7184237.jpg new file mode 100644 index 0000000..2673efa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814810_4_7184237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c0984306bf842494ef92ed4bf30d1cbb239dd1b118033e8beaaeac44edfaa6 +size 160885 diff --git a/datasets/pinganmajia/val/images/订单1814811_4_7184123.jpg b/datasets/pinganmajia/val/images/订单1814811_4_7184123.jpg new file mode 100644 index 0000000..785c663 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814811_4_7184123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a47d61528b478b0b3e606f12fea7e7b464a816383d3604a789b15527c98ba6 +size 203231 diff --git a/datasets/pinganmajia/val/images/订单1814814_4_7184300.jpg b/datasets/pinganmajia/val/images/订单1814814_4_7184300.jpg new file mode 100644 index 0000000..514739b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814814_4_7184300.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8b3ff172a0e9ea5fd1cf1805c0d24e9801c634ce8f82c400761a1f6b963973 +size 619856 diff --git a/datasets/pinganmajia/val/images/订单1814815_4_7184070.jpg b/datasets/pinganmajia/val/images/订单1814815_4_7184070.jpg new file mode 100644 index 0000000..210ffeb --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814815_4_7184070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2b6a7cbfa0fdf42b6c86bce678f23571abe1aba0f0a51fd8b5fdde54a3c968 +size 126633 diff --git a/datasets/pinganmajia/val/images/订单1814817_4_7184379.jpg b/datasets/pinganmajia/val/images/订单1814817_4_7184379.jpg new file mode 100644 index 0000000..bf3e1ca --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814817_4_7184379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3276f2df99226715e28845c1cfe8134289c1b322e064612aceb353a0d636699 +size 150222 diff --git a/datasets/pinganmajia/val/images/订单1814818_4_7184090.jpg b/datasets/pinganmajia/val/images/订单1814818_4_7184090.jpg new file mode 100644 index 0000000..c485fc3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814818_4_7184090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3baf55f2a70671ce5032d452f4f9ac603f8192086b6e8d6a129237e52cbaaa04 +size 95645 diff --git a/datasets/pinganmajia/val/images/订单1814823_4_7184166.jpg b/datasets/pinganmajia/val/images/订单1814823_4_7184166.jpg new file mode 100644 index 0000000..7add0ef --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814823_4_7184166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60dc7e958607b1119afa483be2ebe91692798cd767cc6cb4271a8c5a8ecbaea +size 622694 diff --git a/datasets/pinganmajia/val/images/订单1814826_4_7184186.jpg b/datasets/pinganmajia/val/images/订单1814826_4_7184186.jpg new file mode 100644 index 0000000..24db0bd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814826_4_7184186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb495991317c39b7cc232055f493dbe4c15036faf6943af49b36f9a687b27b9 +size 166553 diff --git a/datasets/pinganmajia/val/images/订单1814827_4_7184280.jpg b/datasets/pinganmajia/val/images/订单1814827_4_7184280.jpg new file mode 100644 index 0000000..2e9496c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814827_4_7184280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e797b14db5175f72574359c6cdd7e3006e1585ab3161753a6f3700c19d314e +size 183252 diff --git a/datasets/pinganmajia/val/images/订单1814829_4_7184203.jpg b/datasets/pinganmajia/val/images/订单1814829_4_7184203.jpg new file mode 100644 index 0000000..744b00f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814829_4_7184203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb34a26e006af32795f73b714c2ce367c535c48041b1a2ef4b3c42abfef498ff +size 160500 diff --git a/datasets/pinganmajia/val/images/订单1814830_4_7184232.jpg b/datasets/pinganmajia/val/images/订单1814830_4_7184232.jpg new file mode 100644 index 0000000..3aa0f12 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814830_4_7184232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe276d39354b1cfff1310a8abe86e4d219e11b855f53b48f4024edfcbbb4c962 +size 74190 diff --git a/datasets/pinganmajia/val/images/订单1814831_4_7184213.jpg b/datasets/pinganmajia/val/images/订单1814831_4_7184213.jpg new file mode 100644 index 0000000..d340f6e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814831_4_7184213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f28a2288eeabc284ab6f734b1dab3535c755476e4ca78096176ee98ba21bdf3 +size 56917 diff --git a/datasets/pinganmajia/val/images/订单1814833_4_7184249.jpg b/datasets/pinganmajia/val/images/订单1814833_4_7184249.jpg new file mode 100644 index 0000000..d490e0e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814833_4_7184249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360ad53ecfd69050d51e1b4b1baa51d6e1d4b3ddbb0cc003334f0323a1e0b31b +size 92607 diff --git a/datasets/pinganmajia/val/images/订单1814834_4_7184342.jpg b/datasets/pinganmajia/val/images/订单1814834_4_7184342.jpg new file mode 100644 index 0000000..1194d22 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814834_4_7184342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e69b9cf9c72dce322fb3ac350fb34315dd1122d5fc955bf67e8f345e08b332d +size 119513 diff --git a/datasets/pinganmajia/val/images/订单1814835_4_7184497.jpg b/datasets/pinganmajia/val/images/订单1814835_4_7184497.jpg new file mode 100644 index 0000000..9d8628a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814835_4_7184497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb44aff729b0b68fffdd950ca710ea9de3f557335f13734c36e4fa974859bd4 +size 105396 diff --git a/datasets/pinganmajia/val/images/订单1814836_4_7184295.jpg b/datasets/pinganmajia/val/images/订单1814836_4_7184295.jpg new file mode 100644 index 0000000..6cf0365 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814836_4_7184295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586a450f7b3e2ea82e55af6d245cd90b54e5917342bd45087e2acd781d26e8ba +size 599049 diff --git a/datasets/pinganmajia/val/images/订单1814837_4_7184694.jpg b/datasets/pinganmajia/val/images/订单1814837_4_7184694.jpg new file mode 100644 index 0000000..b6807f2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814837_4_7184694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b0008e0a56dcd3bf92f2571e2db45480644e7de33c9a63b80018c642962cd8 +size 99604 diff --git a/datasets/pinganmajia/val/images/订单1814841_4_7184281.jpg b/datasets/pinganmajia/val/images/订单1814841_4_7184281.jpg new file mode 100644 index 0000000..c74541c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814841_4_7184281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a931c4b535ebcf4ff81496446abf4706427ea79aebe039978e0cdf9f554e14 +size 282730 diff --git a/datasets/pinganmajia/val/images/订单1814844_4_7184392.jpg b/datasets/pinganmajia/val/images/订单1814844_4_7184392.jpg new file mode 100644 index 0000000..f6a58a9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814844_4_7184392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43cfe26a56b4d3dca1dd8521fbfb5d266cc56d32c42d3ea359313df2a0e03aa +size 138570 diff --git a/datasets/pinganmajia/val/images/订单1814845_4_7184409.jpg b/datasets/pinganmajia/val/images/订单1814845_4_7184409.jpg new file mode 100644 index 0000000..d20bddc --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814845_4_7184409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44589e2fb8aa458308f50b4e9d4f1a3e513a493ffedc50c2db710d1039218cfd +size 329263 diff --git a/datasets/pinganmajia/val/images/订单1814852_4_7184426.jpg b/datasets/pinganmajia/val/images/订单1814852_4_7184426.jpg new file mode 100644 index 0000000..f91df2c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814852_4_7184426.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba96323ce075acf7cb470b5d2e079412f6569902e22fc308d046b3a0f0b1a586 +size 91516 diff --git a/datasets/pinganmajia/val/images/订单1814853_4_7184385.jpg b/datasets/pinganmajia/val/images/订单1814853_4_7184385.jpg new file mode 100644 index 0000000..8494cdb --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814853_4_7184385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40113311182ec85bd3d71e16fcb034900094ebf9eba3ef3a09f24422a28a315 +size 167405 diff --git a/datasets/pinganmajia/val/images/订单1814854_4_7184501.jpg b/datasets/pinganmajia/val/images/订单1814854_4_7184501.jpg new file mode 100644 index 0000000..cdfe934 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814854_4_7184501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727e39ba7f0472f32bbe5648d33c1edf466aaec7eebc5e82fe5c78c9a7b30611 +size 334463 diff --git a/datasets/pinganmajia/val/images/订单1814858_4_7184533.jpg b/datasets/pinganmajia/val/images/订单1814858_4_7184533.jpg new file mode 100644 index 0000000..fedc034 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814858_4_7184533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336db377a74c59485b6ed784fd205cc87c445e530dee5a0c18aeda9d7a937dab +size 718865 diff --git a/datasets/pinganmajia/val/images/订单1814861_4_7184495.jpg b/datasets/pinganmajia/val/images/订单1814861_4_7184495.jpg new file mode 100644 index 0000000..f012732 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814861_4_7184495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b3ac2850196fbe54744e50d9274f3b7eab4362e7047fccdf65563df3ed857a +size 316921 diff --git a/datasets/pinganmajia/val/images/订单1814867_4_7184659.jpg b/datasets/pinganmajia/val/images/订单1814867_4_7184659.jpg new file mode 100644 index 0000000..724b532 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814867_4_7184659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7fe89065ab44c03e40493a5afef449ca333512dcaa400363ddc73dd57b1945a +size 190389 diff --git a/datasets/pinganmajia/val/images/订单1814869_4_7184558.jpg b/datasets/pinganmajia/val/images/订单1814869_4_7184558.jpg new file mode 100644 index 0000000..4c96aee --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814869_4_7184558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933c499a464883bbaf3308f08f92650b408bc60a6dafdf73cbb58d01698c3ba3 +size 662100 diff --git a/datasets/pinganmajia/val/images/订单1814871_4_7184588.jpg b/datasets/pinganmajia/val/images/订单1814871_4_7184588.jpg new file mode 100644 index 0000000..75394a5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814871_4_7184588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef622bccb2136dac16c19f7c4ff988296fb7c4dc1f9a04f0387d9db6caec9c92 +size 190331 diff --git a/datasets/pinganmajia/val/images/订单1814872_4_7184539.jpg b/datasets/pinganmajia/val/images/订单1814872_4_7184539.jpg new file mode 100644 index 0000000..be6e3da --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814872_4_7184539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b01b2fee40e9a948bfa8867f2360becd5d9474371d16e82fada34d2ec11704 +size 361616 diff --git a/datasets/pinganmajia/val/images/订单1814873_4_7184792.jpg b/datasets/pinganmajia/val/images/订单1814873_4_7184792.jpg new file mode 100644 index 0000000..71c0f57 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814873_4_7184792.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2408539e1e661dd04328dd23ae37433a00e97b8e52898a5c401476092db49d13 +size 139189 diff --git a/datasets/pinganmajia/val/images/订单1814874_4_7184551.jpg b/datasets/pinganmajia/val/images/订单1814874_4_7184551.jpg new file mode 100644 index 0000000..502f7d9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814874_4_7184551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b0922fa60160636d5cea261cfdbea08ec3ae7bc1af050131f35119184ffc12 +size 132070 diff --git a/datasets/pinganmajia/val/images/订单1814875_4_7184599.jpg b/datasets/pinganmajia/val/images/订单1814875_4_7184599.jpg new file mode 100644 index 0000000..b3b51f6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814875_4_7184599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4965a14cb7c7a037ae34a084fc779391ab639f587351c181f1789c6b51a1ae9e +size 125567 diff --git a/datasets/pinganmajia/val/images/订单1814876_4_7184587.jpg b/datasets/pinganmajia/val/images/订单1814876_4_7184587.jpg new file mode 100644 index 0000000..d2d8415 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814876_4_7184587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d491d71ee6386e7efc41dbdd005cdf621ffda3abe29fa496390b3154f81b6fc2 +size 223028 diff --git a/datasets/pinganmajia/val/images/订单1814877_4_7184818.jpg b/datasets/pinganmajia/val/images/订单1814877_4_7184818.jpg new file mode 100644 index 0000000..39b7e55 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814877_4_7184818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84cdd20826b68be4df4035847f47914c37bb6aaf007c5a9728b60923fd0bffe +size 230914 diff --git a/datasets/pinganmajia/val/images/订单1814878_4_7184705.jpg b/datasets/pinganmajia/val/images/订单1814878_4_7184705.jpg new file mode 100644 index 0000000..3873c49 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814878_4_7184705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50bdefe12883ece5598798cc6f3564c7fa279937e43103a30c68636ec4a19d96 +size 202020 diff --git a/datasets/pinganmajia/val/images/订单1814881_4_7184712.jpg b/datasets/pinganmajia/val/images/订单1814881_4_7184712.jpg new file mode 100644 index 0000000..c915eae --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814881_4_7184712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9f62ea8ba8668829b300b88447184a618b6a17550d92c1369f58826cf57379 +size 334959 diff --git a/datasets/pinganmajia/val/images/订单1814882_4_7184657.jpg b/datasets/pinganmajia/val/images/订单1814882_4_7184657.jpg new file mode 100644 index 0000000..cb04279 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814882_4_7184657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf10eea61fe04b435a193c8a8b98f94173b8a61d4765993d77de32f9e8b9538 +size 94981 diff --git a/datasets/pinganmajia/val/images/订单1814883_4_7184702.jpg b/datasets/pinganmajia/val/images/订单1814883_4_7184702.jpg new file mode 100644 index 0000000..3d77441 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814883_4_7184702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aee8582f93830042fee22e82eb929466cb400aaf0fdfed05793c5413e369e90 +size 184775 diff --git a/datasets/pinganmajia/val/images/订单1814885_4_7184732.jpg b/datasets/pinganmajia/val/images/订单1814885_4_7184732.jpg new file mode 100644 index 0000000..009a294 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814885_4_7184732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c697db3943c328086f7746ec0033eaa8c7974e4573d247a3c94dc7825e9ffb6 +size 137237 diff --git a/datasets/pinganmajia/val/images/订单1814889_4_7185127.jpg b/datasets/pinganmajia/val/images/订单1814889_4_7185127.jpg new file mode 100644 index 0000000..87c407f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814889_4_7185127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d55eb1b219a0d6eb80e50fc2f85093ef4356972b2f9485d93bbaba75e1edb27 +size 706066 diff --git a/datasets/pinganmajia/val/images/订单1814894_4_7184901.jpg b/datasets/pinganmajia/val/images/订单1814894_4_7184901.jpg new file mode 100644 index 0000000..9141c59 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814894_4_7184901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e51c2a589ac120231e9b3f3f68a5c7649f7bdd6b20f83baa7035f6d7369375a +size 107504 diff --git a/datasets/pinganmajia/val/images/订单1814895_4_7184872.jpg b/datasets/pinganmajia/val/images/订单1814895_4_7184872.jpg new file mode 100644 index 0000000..756ce83 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814895_4_7184872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7304a007ef1ff9b6f03105bd1a33dfc5bddef82fba1c011ccf3285fcaff739 +size 479358 diff --git a/datasets/pinganmajia/val/images/订单1814896_4_7184915.jpg b/datasets/pinganmajia/val/images/订单1814896_4_7184915.jpg new file mode 100644 index 0000000..2ca0490 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814896_4_7184915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ea7b08bf7b2c2cd9aa8a3819776726e0d90589600bb28ca4e7ade8336e18c3 +size 353686 diff --git a/datasets/pinganmajia/val/images/订单1814898_4_7184917.jpg b/datasets/pinganmajia/val/images/订单1814898_4_7184917.jpg new file mode 100644 index 0000000..888df5e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814898_4_7184917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc54c48929c230cd44fc3606b69784ed8e3cab1ad096e75ff72a9828a9d6fef +size 171561 diff --git a/datasets/pinganmajia/val/images/订单1814899_4_7184987.jpg b/datasets/pinganmajia/val/images/订单1814899_4_7184987.jpg new file mode 100644 index 0000000..2159392 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814899_4_7184987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf80a989b7accfb01b6f49faf7ba2a8d9547da0543c13731357ea6fb1ba30fd5 +size 118208 diff --git a/datasets/pinganmajia/val/images/订单1814901_4_7184969.jpg b/datasets/pinganmajia/val/images/订单1814901_4_7184969.jpg new file mode 100644 index 0000000..0b67d17 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814901_4_7184969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97a1b46af1b78a048f122d2ee651e601e5275b9ab25db2ad5039a4a3d014e6f +size 157519 diff --git a/datasets/pinganmajia/val/images/订单1814902_4_7185028.jpg b/datasets/pinganmajia/val/images/订单1814902_4_7185028.jpg new file mode 100644 index 0000000..7f1f37c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814902_4_7185028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93091bd9187ace41b16b906cd4f7961dd2fbad65baf87f24981c24763df9648a +size 351304 diff --git a/datasets/pinganmajia/val/images/订单1814903_4_7184961.jpg b/datasets/pinganmajia/val/images/订单1814903_4_7184961.jpg new file mode 100644 index 0000000..67fdd8f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814903_4_7184961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf4e888ae6ca0afd27dfaec8afc3623a451b5747b5c331688c845f96839355c +size 194761 diff --git a/datasets/pinganmajia/val/images/订单1814904_4_7185036.jpg b/datasets/pinganmajia/val/images/订单1814904_4_7185036.jpg new file mode 100644 index 0000000..d7a0cfb --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814904_4_7185036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0be03bbfbfa33a071dc138f16a95822f08f371fd8e96bc6e59f72ec535814c +size 203462 diff --git a/datasets/pinganmajia/val/images/订单1814905_4_7185073.jpg b/datasets/pinganmajia/val/images/订单1814905_4_7185073.jpg new file mode 100644 index 0000000..abdc1ee --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814905_4_7185073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554d87def7bba1dc24352393cc031bd442f707d083ec3da39e7f4a772f1044ae +size 80814 diff --git a/datasets/pinganmajia/val/images/订单1814906_4_7185035.jpg b/datasets/pinganmajia/val/images/订单1814906_4_7185035.jpg new file mode 100644 index 0000000..d7bfd20 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814906_4_7185035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f98607bd6faf15957372e9351e8eb798e80c4cd2c9f01f6ba6d8abaf5c4a6b +size 163758 diff --git a/datasets/pinganmajia/val/images/订单1814907_4_7185062.jpg b/datasets/pinganmajia/val/images/订单1814907_4_7185062.jpg new file mode 100644 index 0000000..e7d9d35 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814907_4_7185062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c242bb10db4b85cacf25d0f13b86a6316ef77490bbb342a51d67978ba3c8435c +size 303732 diff --git a/datasets/pinganmajia/val/images/订单1814909_4_7185042.jpg b/datasets/pinganmajia/val/images/订单1814909_4_7185042.jpg new file mode 100644 index 0000000..0a27da7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814909_4_7185042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25886b37d2dc413d45e404c581483c6c76ad08c13809263142e16b51dd23ae7b +size 72505 diff --git a/datasets/pinganmajia/val/images/订单1814910_4_7185122.jpg b/datasets/pinganmajia/val/images/订单1814910_4_7185122.jpg new file mode 100644 index 0000000..9adf94d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814910_4_7185122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e88ccddf362b090303c3b60260a74f14879d3af3153ee9a59b9ffa157d669ee +size 151237 diff --git a/datasets/pinganmajia/val/images/订单1814913_4_7185299.jpg b/datasets/pinganmajia/val/images/订单1814913_4_7185299.jpg new file mode 100644 index 0000000..8628458 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814913_4_7185299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265b31a6716d1b4b7ce5bfbec246934bdabca7058895f14d20e79cdfcb6ae002 +size 58408 diff --git a/datasets/pinganmajia/val/images/订单1814914_4_7185059.jpg b/datasets/pinganmajia/val/images/订单1814914_4_7185059.jpg new file mode 100644 index 0000000..018a3c4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814914_4_7185059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51701f744094e319946d5b62dfcb1669c2522584d89d35e700777154455454b +size 221624 diff --git a/datasets/pinganmajia/val/images/订单1814915_4_7185110.jpg b/datasets/pinganmajia/val/images/订单1814915_4_7185110.jpg new file mode 100644 index 0000000..7df7098 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814915_4_7185110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ae3c581ffcf11eb9d3a601c76560d8f94d662ca951e68f90963fb7f82a62d7 +size 370185 diff --git a/datasets/pinganmajia/val/images/订单1814916_4_7185138.jpg b/datasets/pinganmajia/val/images/订单1814916_4_7185138.jpg new file mode 100644 index 0000000..76ca950 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814916_4_7185138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f769303dc08bfa5f5297c37d560f97e533b16c0a89cf1d2ffa1c557423453032 +size 735428 diff --git a/datasets/pinganmajia/val/images/订单1814918_4_7185082.jpg b/datasets/pinganmajia/val/images/订单1814918_4_7185082.jpg new file mode 100644 index 0000000..1bd28af --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814918_4_7185082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47148f5e5cc476b4376f9108a8b297c31a3549b1ad9ea2d720d01e43d282967 +size 94689 diff --git a/datasets/pinganmajia/val/images/订单1814919_4_7185063.jpg b/datasets/pinganmajia/val/images/订单1814919_4_7185063.jpg new file mode 100644 index 0000000..75d9ad3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814919_4_7185063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e1f480a514d8a50647ac4e6184ad6d08e762181fcfb91313f8e4493d9c5983 +size 81789 diff --git a/datasets/pinganmajia/val/images/订单1814920_4_7185161.jpg b/datasets/pinganmajia/val/images/订单1814920_4_7185161.jpg new file mode 100644 index 0000000..55062d2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814920_4_7185161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebaa4ffc86bd1a045623d074f746eb15e5a2377f088234bf5baa2c1fc3226cde +size 163121 diff --git a/datasets/pinganmajia/val/images/订单1814922_4_7185168.jpg b/datasets/pinganmajia/val/images/订单1814922_4_7185168.jpg new file mode 100644 index 0000000..956f25b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814922_4_7185168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0571b269c261c3dd850e57ba271a1fb0ba5800299fac1ffa0d2012be9b3dd8 +size 1044850 diff --git a/datasets/pinganmajia/val/images/订单1814925_4_7185394.jpg b/datasets/pinganmajia/val/images/订单1814925_4_7185394.jpg new file mode 100644 index 0000000..7f1e84a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814925_4_7185394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa697de5f641573cfc12873b2adde31a27130a3eb11f05200751d4f9d7dc921a +size 204695 diff --git a/datasets/pinganmajia/val/images/订单1814928_4_7185355.jpg b/datasets/pinganmajia/val/images/订单1814928_4_7185355.jpg new file mode 100644 index 0000000..b564739 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814928_4_7185355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11c6fd682cb4e288987f905d226b36b06e8dd460c6aedb25f340104d2c253db +size 198836 diff --git a/datasets/pinganmajia/val/images/订单1814931_4_7185253.jpg b/datasets/pinganmajia/val/images/订单1814931_4_7185253.jpg new file mode 100644 index 0000000..f1c2ed6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814931_4_7185253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942ed9015261297a9f5f81a9ae1ecbc7eec5fe52f44fc10c8d79727d600b9fdd +size 163063 diff --git a/datasets/pinganmajia/val/images/订单1814932_4_7185252.jpg b/datasets/pinganmajia/val/images/订单1814932_4_7185252.jpg new file mode 100644 index 0000000..a144b34 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814932_4_7185252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e191ae175d320838d46555876e521bfb231bf8e00519ab5947ee71d840a26a +size 67011 diff --git a/datasets/pinganmajia/val/images/订单1814933_4_7185214.jpg b/datasets/pinganmajia/val/images/订单1814933_4_7185214.jpg new file mode 100644 index 0000000..186e567 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814933_4_7185214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6992ccd056d06e071d3d043ddb8d81342cd1cddd182d74a2d0ac37340be4a065 +size 529181 diff --git a/datasets/pinganmajia/val/images/订单1814934_4_7185256.jpg b/datasets/pinganmajia/val/images/订单1814934_4_7185256.jpg new file mode 100644 index 0000000..cc3eab7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814934_4_7185256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f54296ac2c26b04667b8747fb29dd501864a800e09a5ae61e76b7d5ebd60fc4 +size 140177 diff --git a/datasets/pinganmajia/val/images/订单1814935_4_7185377.jpg b/datasets/pinganmajia/val/images/订单1814935_4_7185377.jpg new file mode 100644 index 0000000..020a826 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814935_4_7185377.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d099ce0a98ffadecfbc7aa483493a3646532d0b843dce59eb6ba82958319d773 +size 162738 diff --git a/datasets/pinganmajia/val/images/订单1814936_4_7185449.jpg b/datasets/pinganmajia/val/images/订单1814936_4_7185449.jpg new file mode 100644 index 0000000..9aeb160 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814936_4_7185449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919672b8ca8685a4ddeef14b612679ba2920ef487301873bf45b2b43ad1a3d80 +size 97731 diff --git a/datasets/pinganmajia/val/images/订单1814937_4_7185345.jpg b/datasets/pinganmajia/val/images/订单1814937_4_7185345.jpg new file mode 100644 index 0000000..b30610b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814937_4_7185345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e4cfa0d7c4d394847dcd5321fd73d287def39b84079d7692d850943545089c +size 437788 diff --git a/datasets/pinganmajia/val/images/订单1814942_4_7185456.jpg b/datasets/pinganmajia/val/images/订单1814942_4_7185456.jpg new file mode 100644 index 0000000..3403093 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814942_4_7185456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf824ccd22baf404990c1c43c7c098c27a15be5128a227d4414d6c8dbf9a57cb +size 602475 diff --git a/datasets/pinganmajia/val/images/订单1814943_4_7185351.jpg b/datasets/pinganmajia/val/images/订单1814943_4_7185351.jpg new file mode 100644 index 0000000..9b93f71 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814943_4_7185351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5ae2627f1bbffae18b399a37eaf0d91684e57bf502611652ea807ebd5b79dc +size 297207 diff --git a/datasets/pinganmajia/val/images/订单1814944_4_7185263.jpg b/datasets/pinganmajia/val/images/订单1814944_4_7185263.jpg new file mode 100644 index 0000000..2536282 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814944_4_7185263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a900396ae1f6b27919d8fcb5729fcd2e657b0ce203e6fbd7b78af83677ab7804 +size 304505 diff --git a/datasets/pinganmajia/val/images/订单1814945_4_7185429.jpg b/datasets/pinganmajia/val/images/订单1814945_4_7185429.jpg new file mode 100644 index 0000000..0d43579 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814945_4_7185429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efc353790fe81ef16d0b181433afbfb1826f71c5acd703884a44e350988f924 +size 95300 diff --git a/datasets/pinganmajia/val/images/订单1814946_4_7185402.jpg b/datasets/pinganmajia/val/images/订单1814946_4_7185402.jpg new file mode 100644 index 0000000..4799e5d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814946_4_7185402.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b82e2a6fc67ba2d1e50c8e8163471ae8b189a7a1555bde5b4f55b2fd66e8de +size 161317 diff --git a/datasets/pinganmajia/val/images/订单1814947_4_7185415.jpg b/datasets/pinganmajia/val/images/订单1814947_4_7185415.jpg new file mode 100644 index 0000000..f828494 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814947_4_7185415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf97a062fe47c7cf185a3dfdccbd9023356778a71e6afd8d3abdfb448d8b9f4 +size 522382 diff --git a/datasets/pinganmajia/val/images/订单1814948_4_7185467.jpg b/datasets/pinganmajia/val/images/订单1814948_4_7185467.jpg new file mode 100644 index 0000000..91cec9d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814948_4_7185467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18718baed75b9489ddd43ed0e7ed445163a40de5104c2879de01b6a7facbf49 +size 371508 diff --git a/datasets/pinganmajia/val/images/订单1814950_4_7185476.jpg b/datasets/pinganmajia/val/images/订单1814950_4_7185476.jpg new file mode 100644 index 0000000..c4a8c8a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814950_4_7185476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb1d92c8d02899e5f1ff77bebc176a4c031cf620f111f7617b9a5ad0bebb4c84 +size 222269 diff --git a/datasets/pinganmajia/val/images/订单1814951_4_7185492.jpg b/datasets/pinganmajia/val/images/订单1814951_4_7185492.jpg new file mode 100644 index 0000000..3cdd73e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814951_4_7185492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926ec6c24a89a7b1e3a6e1433428fdfb584f0ee7261a61588c28289e5a722f1 +size 82397 diff --git a/datasets/pinganmajia/val/images/订单1814953_4_7185559.jpg b/datasets/pinganmajia/val/images/订单1814953_4_7185559.jpg new file mode 100644 index 0000000..fecac08 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814953_4_7185559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e703ae011ae159aa88aa3112511ef4c49817a84d1d72e924ec7c195d70e1b49 +size 182927 diff --git a/datasets/pinganmajia/val/images/订单1814954_4_7185505.jpg b/datasets/pinganmajia/val/images/订单1814954_4_7185505.jpg new file mode 100644 index 0000000..351985e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814954_4_7185505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac72b06b7c8dc5968cf255cf089bca4300899384bcfd10e56e9881c16ff376f +size 283306 diff --git a/datasets/pinganmajia/val/images/订单1814955_4_7185569.jpg b/datasets/pinganmajia/val/images/订单1814955_4_7185569.jpg new file mode 100644 index 0000000..fb5ca1d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814955_4_7185569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb93e9b581416912ce00b7db847d7da30c30c37d6f88013bcf538d535e287a43 +size 197776 diff --git a/datasets/pinganmajia/val/images/订单1814960_4_7185542.jpg b/datasets/pinganmajia/val/images/订单1814960_4_7185542.jpg new file mode 100644 index 0000000..46ef3f0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814960_4_7185542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df3e3f889c1708c206d3d8cdbaeaaf4ac495adfd13deb02c6af9d2c32204ff7 +size 180558 diff --git a/datasets/pinganmajia/val/images/订单1814963_4_7185584.jpg b/datasets/pinganmajia/val/images/订单1814963_4_7185584.jpg new file mode 100644 index 0000000..d9957a3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814963_4_7185584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff5ecc7ed875455107d7edf8059e0df9d87bd722a99f6e3087429a9031e671a +size 611982 diff --git a/datasets/pinganmajia/val/images/订单1814966_4_7185617.jpg b/datasets/pinganmajia/val/images/订单1814966_4_7185617.jpg new file mode 100644 index 0000000..04b79ba --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814966_4_7185617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0a3902d82c35758fa80370e5e5ab5f7503912fcb62c45fd1c780da91bea9bc +size 168496 diff --git a/datasets/pinganmajia/val/images/订单1814968_4_7185623.jpg b/datasets/pinganmajia/val/images/订单1814968_4_7185623.jpg new file mode 100644 index 0000000..9fd9450 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814968_4_7185623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1518f0a24620d6b68532e4e4ef81446a7100678ac26bb13b214965e3f42ceaaf +size 121254 diff --git a/datasets/pinganmajia/val/images/订单1814970_4_7185635.jpg b/datasets/pinganmajia/val/images/订单1814970_4_7185635.jpg new file mode 100644 index 0000000..6125842 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814970_4_7185635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62adbcb261745787cb4c618dc6314e5a0b8ab7bcda5206d601751e475d1ec546 +size 109339 diff --git a/datasets/pinganmajia/val/images/订单1814973_4_7185659.jpg b/datasets/pinganmajia/val/images/订单1814973_4_7185659.jpg new file mode 100644 index 0000000..165220a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814973_4_7185659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178964badb34aaef2bf5de8defb5361c7c825c20aa3a6b36f043a35e2c7c0438 +size 98788 diff --git a/datasets/pinganmajia/val/images/订单1814974_4_7185666.jpg b/datasets/pinganmajia/val/images/订单1814974_4_7185666.jpg new file mode 100644 index 0000000..64bfba7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814974_4_7185666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63be529790e61220abbd05ef3ffaf2e262164fd6ed8435dffde4be5b798f091 +size 98085 diff --git a/datasets/pinganmajia/val/images/订单1814977_4_7185707.jpg b/datasets/pinganmajia/val/images/订单1814977_4_7185707.jpg new file mode 100644 index 0000000..3d53735 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814977_4_7185707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b21ba34d03f8ff0a210c88ae5d2488c6837fa56969a417e05a7bd69bc8efa2a +size 229597 diff --git a/datasets/pinganmajia/val/images/订单1814978_4_7185756.jpg b/datasets/pinganmajia/val/images/订单1814978_4_7185756.jpg new file mode 100644 index 0000000..4f29d86 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814978_4_7185756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ffdfb2a76050bede5d5c5fb8c74cd80615ebbade2bea14884b81d2383591c9 +size 419505 diff --git a/datasets/pinganmajia/val/images/订单1814979_4_7185772.jpg b/datasets/pinganmajia/val/images/订单1814979_4_7185772.jpg new file mode 100644 index 0000000..3328140 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814979_4_7185772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513ca6df9c7b824e1e5696d6c9918e31ce816ef84092a42e347a2047cb89cfa0 +size 78299 diff --git a/datasets/pinganmajia/val/images/订单1814981_4_7185717.jpg b/datasets/pinganmajia/val/images/订单1814981_4_7185717.jpg new file mode 100644 index 0000000..dc24220 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814981_4_7185717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48db2e371a731e3c700e851fc597071c8a29daff02ea41289eec0f3001be8494 +size 214242 diff --git a/datasets/pinganmajia/val/images/订单1814982_4_7185750.jpg b/datasets/pinganmajia/val/images/订单1814982_4_7185750.jpg new file mode 100644 index 0000000..25ee6e2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814982_4_7185750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faec287e7bd9e5651a89591f2a24c62af244bbf18d50c8330939adea81518533 +size 193365 diff --git a/datasets/pinganmajia/val/images/订单1814984_4_7185730.jpg b/datasets/pinganmajia/val/images/订单1814984_4_7185730.jpg new file mode 100644 index 0000000..2195258 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814984_4_7185730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc97e1d27304a7cab2f1d9dc6fabaa3ae1c6b790403be400eb319cb0c98bfcc +size 144087 diff --git a/datasets/pinganmajia/val/images/订单1814985_4_7185840.jpg b/datasets/pinganmajia/val/images/订单1814985_4_7185840.jpg new file mode 100644 index 0000000..5152588 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814985_4_7185840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a199dc73930a1c071afdfa9688653ce5c87e75a95a6ac7997e508a921e2cd30c +size 245998 diff --git a/datasets/pinganmajia/val/images/订单1814987_4_7185780.jpg b/datasets/pinganmajia/val/images/订单1814987_4_7185780.jpg new file mode 100644 index 0000000..4372a21 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814987_4_7185780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724eec04e4f716a3dde82c207d1059bb20a7119ff778da326f7c32c3d3916041 +size 508980 diff --git a/datasets/pinganmajia/val/images/订单1814990_4_7186032.jpg b/datasets/pinganmajia/val/images/订单1814990_4_7186032.jpg new file mode 100644 index 0000000..3bb6a43 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814990_4_7186032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fcd42ed92fb0e21865fc9352774e3e52ed0dd03ebd74a8d3ae51e021152817 +size 100854 diff --git a/datasets/pinganmajia/val/images/订单1814991_4_7185828.jpg b/datasets/pinganmajia/val/images/订单1814991_4_7185828.jpg new file mode 100644 index 0000000..7ff54d0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814991_4_7185828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59589d9c93c0af3193334a0026a63163c54dbc27b7e2e34ce03174e5347f469f +size 177845 diff --git a/datasets/pinganmajia/val/images/订单1814992_4_7186249.jpg b/datasets/pinganmajia/val/images/订单1814992_4_7186249.jpg new file mode 100644 index 0000000..bb9d2d3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814992_4_7186249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514d9dc9dcec793175f33051a59f237e8509521bd50b7930994f4efbc40bc238 +size 127099 diff --git a/datasets/pinganmajia/val/images/订单1814993_4_7185924.jpg b/datasets/pinganmajia/val/images/订单1814993_4_7185924.jpg new file mode 100644 index 0000000..39c083d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814993_4_7185924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb285945fbd7eb89b847672d1697671e7852da35d006742e3063c96b3bdd885 +size 228910 diff --git a/datasets/pinganmajia/val/images/订单1814995_4_7185865.jpg b/datasets/pinganmajia/val/images/订单1814995_4_7185865.jpg new file mode 100644 index 0000000..1ddc65a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814995_4_7185865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010370215b5740b78e0a33f25cb7b1623753018b3c3b307ffd13e011cf2fcc4a +size 541258 diff --git a/datasets/pinganmajia/val/images/订单1814996_4_7185850.jpg b/datasets/pinganmajia/val/images/订单1814996_4_7185850.jpg new file mode 100644 index 0000000..a5560e5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814996_4_7185850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af39df57fddce4f364c2af80b30ed4c20617c147a09f4de29b604ab461e09757 +size 70823 diff --git a/datasets/pinganmajia/val/images/订单1814997_4_7185872.jpg b/datasets/pinganmajia/val/images/订单1814997_4_7185872.jpg new file mode 100644 index 0000000..456a0aa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1814997_4_7185872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc52c40bfa73a1b47f3457aa19e9456ec5813b27dc4d6295195c37f056d11f88 +size 108714 diff --git a/datasets/pinganmajia/val/images/订单1815000_4_7185899.jpg b/datasets/pinganmajia/val/images/订单1815000_4_7185899.jpg new file mode 100644 index 0000000..7a6d3a8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815000_4_7185899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a0248808284f91b787ab913cdf60a892a261a5ccecd111d2c8ee2ad901d525 +size 241405 diff --git a/datasets/pinganmajia/val/images/订单1815001_4_7185918.jpg b/datasets/pinganmajia/val/images/订单1815001_4_7185918.jpg new file mode 100644 index 0000000..47dd630 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815001_4_7185918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33d36c954c5b0849c8b64cd9480000aa3359d6483fe827e06de82bc7353dc87 +size 78578 diff --git a/datasets/pinganmajia/val/images/订单1815004_4_7185934.jpg b/datasets/pinganmajia/val/images/订单1815004_4_7185934.jpg new file mode 100644 index 0000000..313c0b6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815004_4_7185934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490800968f16de96a4ee7d39e822bf33d87836fe7aafab04bf3d467dea0f6710 +size 74793 diff --git a/datasets/pinganmajia/val/images/订单1815005_4_7185943.jpg b/datasets/pinganmajia/val/images/订单1815005_4_7185943.jpg new file mode 100644 index 0000000..beebbf7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815005_4_7185943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea035e25f6309c13af8fb86e24855285678c833afa34ea9b7062705fbc5df736 +size 124792 diff --git a/datasets/pinganmajia/val/images/订单1815006_4_7185948.jpg b/datasets/pinganmajia/val/images/订单1815006_4_7185948.jpg new file mode 100644 index 0000000..5f4683e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815006_4_7185948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a79d643b93ec05a5942e56330dfdc5654ffddea38ff8c2ee673ec93fb3b487 +size 127541 diff --git a/datasets/pinganmajia/val/images/订单1815007_4_7185951.jpg b/datasets/pinganmajia/val/images/订单1815007_4_7185951.jpg new file mode 100644 index 0000000..7d29352 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815007_4_7185951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223c71f9ff93fb6dd25c3455beb5225e13f2c61b9a0821c7f4a9ff74fb77912d +size 105196 diff --git a/datasets/pinganmajia/val/images/订单1815009_4_7186021.jpg b/datasets/pinganmajia/val/images/订单1815009_4_7186021.jpg new file mode 100644 index 0000000..348e392 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815009_4_7186021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab44f63cf6a2f59fe05f0eb06296a37cd2845aee542c060b9430ef2a1addc760 +size 407950 diff --git a/datasets/pinganmajia/val/images/订单1815010_4_7185962.jpg b/datasets/pinganmajia/val/images/订单1815010_4_7185962.jpg new file mode 100644 index 0000000..3e61712 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815010_4_7185962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5905b6dfa01dc29f156ccb3b716ec5f53d1d5bef2722002955fda6505f0a313 +size 79187 diff --git a/datasets/pinganmajia/val/images/订单1815012_4_7186050.jpg b/datasets/pinganmajia/val/images/订单1815012_4_7186050.jpg new file mode 100644 index 0000000..81afd7f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815012_4_7186050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56103d0e71e11dbc39540016b0b7cca7a7db0fe51a35f5e6239c27c0436b8d04 +size 172099 diff --git a/datasets/pinganmajia/val/images/订单1815013_4_7186091.jpg b/datasets/pinganmajia/val/images/订单1815013_4_7186091.jpg new file mode 100644 index 0000000..7737a24 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815013_4_7186091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1529b259baf862ade817a290ee6de2d69dac78d46465a0622df1405813981bd8 +size 243989 diff --git a/datasets/pinganmajia/val/images/订单1815015_4_7186076.jpg b/datasets/pinganmajia/val/images/订单1815015_4_7186076.jpg new file mode 100644 index 0000000..9942274 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815015_4_7186076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1d8bb46cf80352dfb5a38e4cba022f3fa9e3b9961d4130ffd4a413cbb0d504 +size 83380 diff --git a/datasets/pinganmajia/val/images/订单1815016_4_7186060.jpg b/datasets/pinganmajia/val/images/订单1815016_4_7186060.jpg new file mode 100644 index 0000000..d17a643 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815016_4_7186060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66d5757debb55dfd43fd12fad7408503cfbc3d12b21da76f538cb166438a5040 +size 256630 diff --git a/datasets/pinganmajia/val/images/订单1815018_4_7186070.jpg b/datasets/pinganmajia/val/images/订单1815018_4_7186070.jpg new file mode 100644 index 0000000..a93a758 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815018_4_7186070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244e371ec9d181292f0ce874e0389317a49257ba987ed8b5d78e866962caaad0 +size 277794 diff --git a/datasets/pinganmajia/val/images/订单1815019_4_7186085.jpg b/datasets/pinganmajia/val/images/订单1815019_4_7186085.jpg new file mode 100644 index 0000000..f8efbb4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815019_4_7186085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86865ff896e5af69c59cd4df1d81d9eae835f420fe129d596e181862b9aaf18 +size 484437 diff --git a/datasets/pinganmajia/val/images/订单1815021_4_7186086.jpg b/datasets/pinganmajia/val/images/订单1815021_4_7186086.jpg new file mode 100644 index 0000000..0517a24 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815021_4_7186086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7b2f90c9646985e3848a58048b70d49d23ac36ebf6aea034c448b8129b9914 +size 373924 diff --git a/datasets/pinganmajia/val/images/订单1815027_4_7186266.jpg b/datasets/pinganmajia/val/images/订单1815027_4_7186266.jpg new file mode 100644 index 0000000..e6c49e6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815027_4_7186266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906b423e84b9a2520228303739cfb2a82c9c4c282f33ef44bca9cb3e04a6062d +size 173985 diff --git a/datasets/pinganmajia/val/images/订单1815028_4_7186167.jpg b/datasets/pinganmajia/val/images/订单1815028_4_7186167.jpg new file mode 100644 index 0000000..a32532f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815028_4_7186167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3840828dcfb93e8717bc2fcf2d5d5bc16b221c57c073e6266c175ac17baadfa0 +size 499473 diff --git a/datasets/pinganmajia/val/images/订单1815029_4_7186193.jpg b/datasets/pinganmajia/val/images/订单1815029_4_7186193.jpg new file mode 100644 index 0000000..4492cf2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815029_4_7186193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf23380f52ae5da249c071aced4bb40c9a31e44b68c2dce1a919b039ca48122 +size 79150 diff --git a/datasets/pinganmajia/val/images/订单1815034_4_7186248.jpg b/datasets/pinganmajia/val/images/订单1815034_4_7186248.jpg new file mode 100644 index 0000000..69eeb0e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815034_4_7186248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039a9371e3aeee84b8a0b67e1be6b7c1839e599a3966c2f80232a63ec8e7fcf8 +size 327690 diff --git a/datasets/pinganmajia/val/images/订单1815035_4_7186326.jpg b/datasets/pinganmajia/val/images/订单1815035_4_7186326.jpg new file mode 100644 index 0000000..66ddb5c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815035_4_7186326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b640b981fe97a1aaa8d08179a169aa9a310eab1c5db53551947e0274613d55 +size 307222 diff --git a/datasets/pinganmajia/val/images/订单1815036_4_7186175.jpg b/datasets/pinganmajia/val/images/订单1815036_4_7186175.jpg new file mode 100644 index 0000000..6d6da2c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815036_4_7186175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb548f6ea82cb674ae7666a3f27e616abb86fb9bb9084f01b22cb9a34102c2c +size 210391 diff --git a/datasets/pinganmajia/val/images/订单1815037_4_7186207.jpg b/datasets/pinganmajia/val/images/订单1815037_4_7186207.jpg new file mode 100644 index 0000000..79a240b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815037_4_7186207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b59f3bd5d9200a2b4904a912f1d40cccaf7f852df25a29fc7ae84d4c767d42 +size 570574 diff --git a/datasets/pinganmajia/val/images/订单1815038_4_7186400.jpg b/datasets/pinganmajia/val/images/订单1815038_4_7186400.jpg new file mode 100644 index 0000000..c878b82 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815038_4_7186400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82eb3958a9a07331a78568d9550d724f1cc0545073a958d1119ff9f4e21283f7 +size 154183 diff --git a/datasets/pinganmajia/val/images/订单1815040_4_7186227.jpg b/datasets/pinganmajia/val/images/订单1815040_4_7186227.jpg new file mode 100644 index 0000000..d6ad79b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815040_4_7186227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c438272566ec0feadd7990eaf506fd5ee12f9e53c0dc6cc852e40de1861bfb +size 138399 diff --git a/datasets/pinganmajia/val/images/订单1815041_4_7186453.jpg b/datasets/pinganmajia/val/images/订单1815041_4_7186453.jpg new file mode 100644 index 0000000..31b412c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815041_4_7186453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ce646fb05abb217788dc0f1e3cf76484965aea9aed1b0a6217adddd69439e9 +size 879943 diff --git a/datasets/pinganmajia/val/images/订单1815042_4_7186253.jpg b/datasets/pinganmajia/val/images/订单1815042_4_7186253.jpg new file mode 100644 index 0000000..be7a8aa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815042_4_7186253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e0d129eddeca65e445f8fb97fa8d6f1820bccc7d17a75f3ed8e7c5fd6e58b7 +size 101061 diff --git a/datasets/pinganmajia/val/images/订单1815043_4_7186190.jpg b/datasets/pinganmajia/val/images/订单1815043_4_7186190.jpg new file mode 100644 index 0000000..f34e4d1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815043_4_7186190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcf76c6c5a3d7bca305ed68a4545494e47dc925952f63f4212b794464d77d22 +size 175070 diff --git a/datasets/pinganmajia/val/images/订单1815045_4_7186285.jpg b/datasets/pinganmajia/val/images/订单1815045_4_7186285.jpg new file mode 100644 index 0000000..2f123a1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815045_4_7186285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bf17b3be0607642b6fe008d05f8d7177123d794daf94a77f29125b6d7c861c +size 237138 diff --git a/datasets/pinganmajia/val/images/订单1815047_4_7186371.jpg b/datasets/pinganmajia/val/images/订单1815047_4_7186371.jpg new file mode 100644 index 0000000..58cbd94 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815047_4_7186371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e156219b549aeb33be2eff40df70ef118e49f8ca0d000fad8541692358af566 +size 333169 diff --git a/datasets/pinganmajia/val/images/订单1815049_4_7186334.jpg b/datasets/pinganmajia/val/images/订单1815049_4_7186334.jpg new file mode 100644 index 0000000..e1bfd02 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815049_4_7186334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5565cb91780933ca3763bdfd7612a4fdb783377fe9865182a068b35e339c5a +size 268943 diff --git a/datasets/pinganmajia/val/images/订单1815050_4_7186342.jpg b/datasets/pinganmajia/val/images/订单1815050_4_7186342.jpg new file mode 100644 index 0000000..52f55aa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815050_4_7186342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9843da654be5316b472035c6c0381dd2e14001d79a3130e97b1fa05b0c788420 +size 127714 diff --git a/datasets/pinganmajia/val/images/订单1815053_4_7186410.jpg b/datasets/pinganmajia/val/images/订单1815053_4_7186410.jpg new file mode 100644 index 0000000..90b445c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815053_4_7186410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad24a93476c5528af7a25e2f5b1cbf54914c38cd99b35f649fe8559c3a83ba88 +size 87809 diff --git a/datasets/pinganmajia/val/images/订单1815054_4_7186384.jpg b/datasets/pinganmajia/val/images/订单1815054_4_7186384.jpg new file mode 100644 index 0000000..5d5161e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815054_4_7186384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd4f7b80b0e7158de15d4e26e79b56299f9c466aae555af003c11525cfd1b5a7 +size 304141 diff --git a/datasets/pinganmajia/val/images/订单1815057_4_7186413.jpg b/datasets/pinganmajia/val/images/订单1815057_4_7186413.jpg new file mode 100644 index 0000000..09d8236 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815057_4_7186413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d763059471cef4a14fc6e1f5454d7a8ac455f2bfb25bd6358105c36fd6b85b35 +size 89676 diff --git a/datasets/pinganmajia/val/images/订单1815058_4_7186450.jpg b/datasets/pinganmajia/val/images/订单1815058_4_7186450.jpg new file mode 100644 index 0000000..62b8a39 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815058_4_7186450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c60a9263a2bb0647bc52d7ffe25a298072899cf193fc7573dc3a31b16f9eee1 +size 489488 diff --git a/datasets/pinganmajia/val/images/订单1815066_4_7186547.jpg b/datasets/pinganmajia/val/images/订单1815066_4_7186547.jpg new file mode 100644 index 0000000..e542fba --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815066_4_7186547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0d6a33666036ff797d09b1992656797479fee4cd829ab719d318a88044caa1 +size 336041 diff --git a/datasets/pinganmajia/val/images/订单1815067_4_7186530.jpg b/datasets/pinganmajia/val/images/订单1815067_4_7186530.jpg new file mode 100644 index 0000000..c34a220 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815067_4_7186530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cabc5ad9642efef37b9905f619ce852e8f36920735090bcb49e77dbb3fa9902 +size 465957 diff --git a/datasets/pinganmajia/val/images/订单1815068_4_7186553.jpg b/datasets/pinganmajia/val/images/订单1815068_4_7186553.jpg new file mode 100644 index 0000000..c421839 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815068_4_7186553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c76c2a2e08a27ffcd21fd78b0b18b3a15d9d32fe876c12b9f969aa31e99e77ec +size 227548 diff --git a/datasets/pinganmajia/val/images/订单1815069_4_7188706.jpg b/datasets/pinganmajia/val/images/订单1815069_4_7188706.jpg new file mode 100644 index 0000000..cd43231 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815069_4_7188706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766883dfb0a665aeaf76a8c32e002b6d34133ae7ae27f4729a1c24fdc6e7af2d +size 159143 diff --git a/datasets/pinganmajia/val/images/订单1815070_4_7186683.jpg b/datasets/pinganmajia/val/images/订单1815070_4_7186683.jpg new file mode 100644 index 0000000..a69ab73 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815070_4_7186683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ad09c79f7b87c1c5cc3cf8582acd838d0bee1fc005b6eb8e3596482589dd92 +size 101538 diff --git a/datasets/pinganmajia/val/images/订单1815072_4_7186549.jpg b/datasets/pinganmajia/val/images/订单1815072_4_7186549.jpg new file mode 100644 index 0000000..1a5fc81 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815072_4_7186549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f929e2b0373393eb269654c6426e783373e43e0e77dfd6f813ea3b6f0439eaa +size 106857 diff --git a/datasets/pinganmajia/val/images/订单1815073_4_7186573.jpg b/datasets/pinganmajia/val/images/订单1815073_4_7186573.jpg new file mode 100644 index 0000000..3f4a1a7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815073_4_7186573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36c32d57785043924a981e1e1d680d2a2a546ac8b7da3e9ad7007351e6e908b +size 241595 diff --git a/datasets/pinganmajia/val/images/订单1815074_4_7186599.jpg b/datasets/pinganmajia/val/images/订单1815074_4_7186599.jpg new file mode 100644 index 0000000..6ea537f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815074_4_7186599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c5be2604c557a1508d24bb134bdd278ba27428ad01e542cec95d2dcd462117 +size 148683 diff --git a/datasets/pinganmajia/val/images/订单1815076_4_7186596.jpg b/datasets/pinganmajia/val/images/订单1815076_4_7186596.jpg new file mode 100644 index 0000000..45b9fc4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815076_4_7186596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c6bcf8121f9c4e1aa281e180a24828856fa710620860e811578beefbb48ebd +size 66287 diff --git a/datasets/pinganmajia/val/images/订单1815077_4_7186627.jpg b/datasets/pinganmajia/val/images/订单1815077_4_7186627.jpg new file mode 100644 index 0000000..2b96ee8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815077_4_7186627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c90fcb3ebc91885c2b43ddf1b057028f83245f44ada55dd014a4ccadc5b876b +size 120090 diff --git a/datasets/pinganmajia/val/images/订单1815078_4_7187051.jpg b/datasets/pinganmajia/val/images/订单1815078_4_7187051.jpg new file mode 100644 index 0000000..3a17e77 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815078_4_7187051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf29df29d753343f49257f018f6a4d5b123e39b75110e9a6c9e1c8e9314f258 +size 779711 diff --git a/datasets/pinganmajia/val/images/订单1815079_4_7186658.jpg b/datasets/pinganmajia/val/images/订单1815079_4_7186658.jpg new file mode 100644 index 0000000..7201e2f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815079_4_7186658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1631af9c820c1242ee86686a494f25f9683818ab447b88ae98ba9e0c17f49a +size 73306 diff --git a/datasets/pinganmajia/val/images/订单1815081_4_7186672.jpg b/datasets/pinganmajia/val/images/订单1815081_4_7186672.jpg new file mode 100644 index 0000000..93c9bfa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815081_4_7186672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9eef309d4bc6ede017a81ccd5e2ae729aba27e3aea6237fe9d199db50241087 +size 90282 diff --git a/datasets/pinganmajia/val/images/订单1815083_4_7186632.jpg b/datasets/pinganmajia/val/images/订单1815083_4_7186632.jpg new file mode 100644 index 0000000..17f5454 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815083_4_7186632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7bde65b1f9861944dd70bf27efe73ba1363fd0fb03b775ede81f972a3ee7cf +size 784296 diff --git a/datasets/pinganmajia/val/images/订单1815085_4_7186710.jpg b/datasets/pinganmajia/val/images/订单1815085_4_7186710.jpg new file mode 100644 index 0000000..e14e420 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815085_4_7186710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1410dc953126493bbfa91b9c2e3960d25b868b34c9cb89cd221d6b73e11f9b +size 325795 diff --git a/datasets/pinganmajia/val/images/订单1815086_4_7186820.jpg b/datasets/pinganmajia/val/images/订单1815086_4_7186820.jpg new file mode 100644 index 0000000..eb455c5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815086_4_7186820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1caa5cd532a4a7ad5de002bfa705750a5c3dadc9acf154be0275dc880f7acf4 +size 129052 diff --git a/datasets/pinganmajia/val/images/订单1815087_4_7186804.jpg b/datasets/pinganmajia/val/images/订单1815087_4_7186804.jpg new file mode 100644 index 0000000..7532e36 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815087_4_7186804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d66114e0877c1d46ff02eab87d60db44378202e2796daddfc527de18f957f9 +size 492668 diff --git a/datasets/pinganmajia/val/images/订单1815089_4_7186763.jpg b/datasets/pinganmajia/val/images/订单1815089_4_7186763.jpg new file mode 100644 index 0000000..c957459 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815089_4_7186763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37354e4ddddeb1b48e1a985d97776fdaab252271d1b83a1abeb0927836aae931 +size 175060 diff --git a/datasets/pinganmajia/val/images/订单1815091_4_7186765.jpg b/datasets/pinganmajia/val/images/订单1815091_4_7186765.jpg new file mode 100644 index 0000000..6d54bed --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815091_4_7186765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e4e9885ef1127321c182642e8f6d4e42f8eb324c802be89675b06d77dcd3e1 +size 195213 diff --git a/datasets/pinganmajia/val/images/订单1815093_4_7186818.jpg b/datasets/pinganmajia/val/images/订单1815093_4_7186818.jpg new file mode 100644 index 0000000..7e99495 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815093_4_7186818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04aade6d517ff704a521edf1043a9920a8337a3f6740300249ab68c7412ecb1 +size 78441 diff --git a/datasets/pinganmajia/val/images/订单1815095_4_7186752.jpg b/datasets/pinganmajia/val/images/订单1815095_4_7186752.jpg new file mode 100644 index 0000000..ca7380f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815095_4_7186752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0cf5d45078b4e512f740b5d3ba6768e651672a0d078400b0bcacdf35ecbc549 +size 335645 diff --git a/datasets/pinganmajia/val/images/订单1815096_4_7186748.jpg b/datasets/pinganmajia/val/images/订单1815096_4_7186748.jpg new file mode 100644 index 0000000..9bc2f89 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815096_4_7186748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b78c8b4fac79809c81ea63bf66479a048a8c3e14fa5c423e6b9aa8a917c7187 +size 322941 diff --git a/datasets/pinganmajia/val/images/订单1815097_4_7186980.jpg b/datasets/pinganmajia/val/images/订单1815097_4_7186980.jpg new file mode 100644 index 0000000..fcdf30a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815097_4_7186980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a63ccce9a0dacb420ce947a77646e323b9730adf5563096b4e82cfadc765f1 +size 148510 diff --git a/datasets/pinganmajia/val/images/订单1815099_4_7186827.jpg b/datasets/pinganmajia/val/images/订单1815099_4_7186827.jpg new file mode 100644 index 0000000..7a6d2a0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815099_4_7186827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848a7c64e65742423855aeefb5e6e1b7b2ad3bdf7c1bf0f401d29f71b66b4728 +size 264686 diff --git a/datasets/pinganmajia/val/images/订单1815100_4_7186891.jpg b/datasets/pinganmajia/val/images/订单1815100_4_7186891.jpg new file mode 100644 index 0000000..126a941 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815100_4_7186891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa6e50f7c77982f7e2447e19b00a824fa6790ff96a051b018ab405038ac7f8f +size 109009 diff --git a/datasets/pinganmajia/val/images/订单1815101_4_7186904.jpg b/datasets/pinganmajia/val/images/订单1815101_4_7186904.jpg new file mode 100644 index 0000000..2e7c77b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815101_4_7186904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb20116e6919db0cf466a70775ce3962ec2fff925bb232c91c86b2929bf2d3e7 +size 229872 diff --git a/datasets/pinganmajia/val/images/订单1815102_4_7186894.jpg b/datasets/pinganmajia/val/images/订单1815102_4_7186894.jpg new file mode 100644 index 0000000..723e783 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815102_4_7186894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e30aa3e7a6d729331b87ba65ac6e2c926ffd2e4e1175cb26634735a473d049 +size 69965 diff --git a/datasets/pinganmajia/val/images/订单1815103_4_7186889.jpg b/datasets/pinganmajia/val/images/订单1815103_4_7186889.jpg new file mode 100644 index 0000000..54c989d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815103_4_7186889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46253809b08748821cff8e77113e7d72b848823d5972b8306d26b602285610e2 +size 80809 diff --git a/datasets/pinganmajia/val/images/订单1815106_4_7186875.jpg b/datasets/pinganmajia/val/images/订单1815106_4_7186875.jpg new file mode 100644 index 0000000..98c9915 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815106_4_7186875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2840e2bb03320fb6eb8e35d40445a71c6f80b44000d3692958ffd922721a25e7 +size 126370 diff --git a/datasets/pinganmajia/val/images/订单1815107_4_7186869.jpg b/datasets/pinganmajia/val/images/订单1815107_4_7186869.jpg new file mode 100644 index 0000000..3c84b94 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815107_4_7186869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12fab2acd13e17a4d25cc13036f2434e154d5db449c504b69e4294d72c183969 +size 96184 diff --git a/datasets/pinganmajia/val/images/订单1815108_4_7186882.jpg b/datasets/pinganmajia/val/images/订单1815108_4_7186882.jpg new file mode 100644 index 0000000..454883e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815108_4_7186882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0097f5ba4798dc4dd3665e47bd465330f8f7f3486e8622648a2ea2ae76cb42fc +size 108752 diff --git a/datasets/pinganmajia/val/images/订单1815110_4_7186953.jpg b/datasets/pinganmajia/val/images/订单1815110_4_7186953.jpg new file mode 100644 index 0000000..3acfe63 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815110_4_7186953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e80c4e7db8d4ac71fbd8df2605319a3910fbb77cf44661f75fc2d9f83a3b0d +size 111082 diff --git a/datasets/pinganmajia/val/images/订单1815111_4_7186957.jpg b/datasets/pinganmajia/val/images/订单1815111_4_7186957.jpg new file mode 100644 index 0000000..f7b0e6b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815111_4_7186957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f0a027d08dedd8dd16fe948e13f7afa55b62cc779a8c4589dc251aab3412bb +size 69188 diff --git a/datasets/pinganmajia/val/images/订单1815113_4_7186981.jpg b/datasets/pinganmajia/val/images/订单1815113_4_7186981.jpg new file mode 100644 index 0000000..c6ed947 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815113_4_7186981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d34ae790402729a2cb7493ef99c54d4a969a346e54927dea3ec68a37a815565 +size 113197 diff --git a/datasets/pinganmajia/val/images/订单1815115_4_7186979.jpg b/datasets/pinganmajia/val/images/订单1815115_4_7186979.jpg new file mode 100644 index 0000000..d8181bf --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815115_4_7186979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e332a5bb659833882d603d0a52bd8837a269afa7ee27abc076c678bd55840b15 +size 373918 diff --git a/datasets/pinganmajia/val/images/订单1815118_4_7187023.jpg b/datasets/pinganmajia/val/images/订单1815118_4_7187023.jpg new file mode 100644 index 0000000..f3928cd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815118_4_7187023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a6565e47b581b5ed59f2d04ea86a5007360b4f8304e2aa888b6b4887770be8 +size 183080 diff --git a/datasets/pinganmajia/val/images/订单1815119_4_7187027.jpg b/datasets/pinganmajia/val/images/订单1815119_4_7187027.jpg new file mode 100644 index 0000000..af315b9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815119_4_7187027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f4d436a5647f2acf42361de3b5060594d0dd4f8e7becb6cb70bff54ca3ead0 +size 259034 diff --git a/datasets/pinganmajia/val/images/订单1815121_4_7187085.jpg b/datasets/pinganmajia/val/images/订单1815121_4_7187085.jpg new file mode 100644 index 0000000..9683fd9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815121_4_7187085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b592ba87e89c625a5812d24feb201b2e61b0a48e64f5e8ffd309e6765e0fb26 +size 97414 diff --git a/datasets/pinganmajia/val/images/订单1815123_4_7187071.jpg b/datasets/pinganmajia/val/images/订单1815123_4_7187071.jpg new file mode 100644 index 0000000..532a80e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815123_4_7187071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eb2f1ed4a18afc5ee5a01d29dbc22f666ec2ca284dfb275b77f040761a8a17 +size 69184 diff --git a/datasets/pinganmajia/val/images/订单1815125_4_7187056.jpg b/datasets/pinganmajia/val/images/订单1815125_4_7187056.jpg new file mode 100644 index 0000000..4750415 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815125_4_7187056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29db8a9625f63e7527d45c1120abfdd3eebbbfd3228f5e67e531ba9f9f9f741b +size 212521 diff --git a/datasets/pinganmajia/val/images/订单1815126_4_7187195.jpg b/datasets/pinganmajia/val/images/订单1815126_4_7187195.jpg new file mode 100644 index 0000000..b071fa5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815126_4_7187195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3672c0f4017f69754deb195d73a8e00390a200c98fea514bda5ac6f46062527f +size 369689 diff --git a/datasets/pinganmajia/val/images/订单1815127_4_7187130.jpg b/datasets/pinganmajia/val/images/订单1815127_4_7187130.jpg new file mode 100644 index 0000000..de9a4d4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815127_4_7187130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63c523012ebfe679573fdcc11c0669b6a703279c09e1277deec22d3fa128fc8 +size 178741 diff --git a/datasets/pinganmajia/val/images/订单1815128_4_7187121.jpg b/datasets/pinganmajia/val/images/订单1815128_4_7187121.jpg new file mode 100644 index 0000000..78677eb --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815128_4_7187121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93aba98acd7473837b52c6c911fcc62679452fb14c218d77fead3577d123c654 +size 203301 diff --git a/datasets/pinganmajia/val/images/订单1815129_4_7187094.jpg b/datasets/pinganmajia/val/images/订单1815129_4_7187094.jpg new file mode 100644 index 0000000..f8fca05 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815129_4_7187094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2189529593ea52e51781d60c8052ade2d37c17ed8f6f7ca3428cf2c9f898779b +size 73307 diff --git a/datasets/pinganmajia/val/images/订单1815132_4_7187063.jpg b/datasets/pinganmajia/val/images/订单1815132_4_7187063.jpg new file mode 100644 index 0000000..13375f6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815132_4_7187063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb50a17c49d637ac9e2bbe207b51092874c23436422be85e31e736f9eb25809 +size 243242 diff --git a/datasets/pinganmajia/val/images/订单1815133_4_7187235.jpg b/datasets/pinganmajia/val/images/订单1815133_4_7187235.jpg new file mode 100644 index 0000000..0da7258 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815133_4_7187235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1322f3b45259ef1b0081f493189984bcb574ababc523a87e4f0461f3d93d2256 +size 309959 diff --git a/datasets/pinganmajia/val/images/订单1815134_4_7187393.jpg b/datasets/pinganmajia/val/images/订单1815134_4_7187393.jpg new file mode 100644 index 0000000..43a4894 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815134_4_7187393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27f3d707e77ffc5ef0a06f0010e52744cecb52757a3dd6ab4cdf2c6c843a679 +size 117527 diff --git a/datasets/pinganmajia/val/images/订单1815136_4_7187098.jpg b/datasets/pinganmajia/val/images/订单1815136_4_7187098.jpg new file mode 100644 index 0000000..3bf94f5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815136_4_7187098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf2f9fdd5ab4dfdf6593080415827c14fbc6ab5f062bc723a13cc8aba193f03 +size 457024 diff --git a/datasets/pinganmajia/val/images/订单1815137_4_7187185.jpg b/datasets/pinganmajia/val/images/订单1815137_4_7187185.jpg new file mode 100644 index 0000000..9c64f70 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815137_4_7187185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e869a4e4ea9e5784f93571aa6bcc81ec77a0aba4781395e53e9bc87817f7dc +size 105484 diff --git a/datasets/pinganmajia/val/images/订单1815138_4_7187208.jpg b/datasets/pinganmajia/val/images/订单1815138_4_7187208.jpg new file mode 100644 index 0000000..161f875 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815138_4_7187208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb14cc94680ee38e83b8e414510812e5f6bc009c19ef45558eb71ffcf11f259 +size 105746 diff --git a/datasets/pinganmajia/val/images/订单1815141_4_7187234.jpg b/datasets/pinganmajia/val/images/订单1815141_4_7187234.jpg new file mode 100644 index 0000000..64218b4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815141_4_7187234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d73abd65a985e61c9a717fb9a8088be119c180f192e8eb6da86b5319151e046 +size 93057 diff --git a/datasets/pinganmajia/val/images/订单1815142_4_7187204.jpg b/datasets/pinganmajia/val/images/订单1815142_4_7187204.jpg new file mode 100644 index 0000000..1d54883 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815142_4_7187204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca1aa8d60dd7a592da152fc8052282e183c0567e0e91408e2423b27b8340f45 +size 117161 diff --git a/datasets/pinganmajia/val/images/订单1815145_4_7187284.jpg b/datasets/pinganmajia/val/images/订单1815145_4_7187284.jpg new file mode 100644 index 0000000..4c516c1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815145_4_7187284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553e63fdb7f1f6beea13868cbe843262336b3b26d47a24c6b1367a1f95937d34 +size 102891 diff --git a/datasets/pinganmajia/val/images/订单1815146_4_7187202.jpg b/datasets/pinganmajia/val/images/订单1815146_4_7187202.jpg new file mode 100644 index 0000000..101e87d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815146_4_7187202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec78bfca8f8f67df332d2267fac2c4819612b4ee22f40ab3b16a2bc8e358b3f +size 152914 diff --git a/datasets/pinganmajia/val/images/订单1815147_4_7187258.jpg b/datasets/pinganmajia/val/images/订单1815147_4_7187258.jpg new file mode 100644 index 0000000..b5f8ad8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815147_4_7187258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7588e183a1a7d218efc7ad459d852fc357d146c83a6d79f712694b7e2c84bd5 +size 374307 diff --git a/datasets/pinganmajia/val/images/订单1815148_4_7187339.jpg b/datasets/pinganmajia/val/images/订单1815148_4_7187339.jpg new file mode 100644 index 0000000..1ddc9fa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815148_4_7187339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4015ae4121818577c7adf28b4ae2177cab99f03fcfdb1d0d6a2a75885ad6d028 +size 176544 diff --git a/datasets/pinganmajia/val/images/订单1815151_4_7187317.jpg b/datasets/pinganmajia/val/images/订单1815151_4_7187317.jpg new file mode 100644 index 0000000..99ddae3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815151_4_7187317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:185b122e0b6158a17a2f6b68798e918797df033439888c8d9d3ff8f23190fbb6 +size 661633 diff --git a/datasets/pinganmajia/val/images/订单1815152_4_7187356.jpg b/datasets/pinganmajia/val/images/订单1815152_4_7187356.jpg new file mode 100644 index 0000000..65bf0af --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815152_4_7187356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1220d74b37f5bc8f6803d21deeb10775df719b8912835772e8c4097581ee9d0b +size 81090 diff --git a/datasets/pinganmajia/val/images/订单1815153_4_7187364.jpg b/datasets/pinganmajia/val/images/订单1815153_4_7187364.jpg new file mode 100644 index 0000000..fd48f43 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815153_4_7187364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b922f88efbc5d431d3388edd460f3b653a57c69a6f4b6d525af7671c9ddaa20c +size 230902 diff --git a/datasets/pinganmajia/val/images/订单1815155_4_7187365.jpg b/datasets/pinganmajia/val/images/订单1815155_4_7187365.jpg new file mode 100644 index 0000000..0e20f5f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815155_4_7187365.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546a021bd4b91fa0d2bad349d0d09fda67d98c273f78ba0d908c55184d336944 +size 329572 diff --git a/datasets/pinganmajia/val/images/订单1815156_4_7187420.jpg b/datasets/pinganmajia/val/images/订单1815156_4_7187420.jpg new file mode 100644 index 0000000..5252a66 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815156_4_7187420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a254f6990486c7d906f6a3a2d0d2a58eb81fe5c09308162fdf2c5a4aed2ff0f4 +size 125931 diff --git a/datasets/pinganmajia/val/images/订单1815157_4_7187288.jpg b/datasets/pinganmajia/val/images/订单1815157_4_7187288.jpg new file mode 100644 index 0000000..f2f64d3 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815157_4_7187288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb65c0bf4a929f3afe0b7ea93761b3876485b7615193793e74c317db89f7d5a3 +size 157724 diff --git a/datasets/pinganmajia/val/images/订单1815160_4_7187384.jpg b/datasets/pinganmajia/val/images/订单1815160_4_7187384.jpg new file mode 100644 index 0000000..ac538b2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815160_4_7187384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cef0626e21a86ae354d2e2121e0c54c8e103b59001b31d4fac51d4185ebb688 +size 93034 diff --git a/datasets/pinganmajia/val/images/订单1815161_4_7187429.jpg b/datasets/pinganmajia/val/images/订单1815161_4_7187429.jpg new file mode 100644 index 0000000..2f59b57 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815161_4_7187429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18709842683754b944ff780f493fe6bc5fccc24f179023b32fc55fd265f4e9d0 +size 268956 diff --git a/datasets/pinganmajia/val/images/订单1815164_4_7187460.jpg b/datasets/pinganmajia/val/images/订单1815164_4_7187460.jpg new file mode 100644 index 0000000..de259c2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815164_4_7187460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba575dcef350079a329d084557dcfb2c0a4a2e5e2487698896db63efdac1e71e +size 118604 diff --git a/datasets/pinganmajia/val/images/订单1815167_4_7187469.jpg b/datasets/pinganmajia/val/images/订单1815167_4_7187469.jpg new file mode 100644 index 0000000..e84bab9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815167_4_7187469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276cd289bff9713aab77aa9be7a071885a9590a4af1f53ab6880eb78e1fbc697 +size 91221 diff --git a/datasets/pinganmajia/val/images/订单1815168_4_7187492.jpg b/datasets/pinganmajia/val/images/订单1815168_4_7187492.jpg new file mode 100644 index 0000000..632408c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815168_4_7187492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b20b9dc118dcdc5f6be9661664e683d5559b0293f113b097fb36db7c1b74cb +size 48267 diff --git a/datasets/pinganmajia/val/images/订单1815169_4_7187454.jpg b/datasets/pinganmajia/val/images/订单1815169_4_7187454.jpg new file mode 100644 index 0000000..1ca83f0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815169_4_7187454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358f9fcb2f89dc3a60df00b90c4e6960e1a146e0b5cd3f1fc863f7bb98b12a20 +size 123447 diff --git a/datasets/pinganmajia/val/images/订单1815171_4_7187588.jpg b/datasets/pinganmajia/val/images/订单1815171_4_7187588.jpg new file mode 100644 index 0000000..6a09049 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815171_4_7187588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c87563406ff945fc7fabbfd4852ba81225d261ef71b4e7608996aca522ed638 +size 194211 diff --git a/datasets/pinganmajia/val/images/订单1815172_4_7187546.jpg b/datasets/pinganmajia/val/images/订单1815172_4_7187546.jpg new file mode 100644 index 0000000..7fce8a0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815172_4_7187546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014c63d7cb22ff68e83197a6797df46a47d0737ac0ee9b1f38a0f45878e45546 +size 97531 diff --git a/datasets/pinganmajia/val/images/订单1815175_4_7188169.jpg b/datasets/pinganmajia/val/images/订单1815175_4_7188169.jpg new file mode 100644 index 0000000..1c6742b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815175_4_7188169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96720fc7cdcdaab9ebef2f6deee2abe2f260598efeb9a2fdb13c5857b3bb79e3 +size 170740 diff --git a/datasets/pinganmajia/val/images/订单1815176_4_7187541.jpg b/datasets/pinganmajia/val/images/订单1815176_4_7187541.jpg new file mode 100644 index 0000000..501123c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815176_4_7187541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b47c0b2d9d12422567eba73b4b3f0a25c5293b7b263c2bc53c4713671589631 +size 116031 diff --git a/datasets/pinganmajia/val/images/订单1815179_4_7187597.jpg b/datasets/pinganmajia/val/images/订单1815179_4_7187597.jpg new file mode 100644 index 0000000..cd0c9a5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815179_4_7187597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ddfd0f4a04c9fe324066058c49d9aa575b8da27f6f09bf146d624bc3b860cb +size 54409 diff --git a/datasets/pinganmajia/val/images/订单1815181_4_7187641.jpg b/datasets/pinganmajia/val/images/订单1815181_4_7187641.jpg new file mode 100644 index 0000000..c8130e4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815181_4_7187641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d02dd11e9a9d7073279e6f22f2afcc61a6c2d5c312c288030c7d38432d24c6 +size 63777 diff --git a/datasets/pinganmajia/val/images/订单1815182_4_7187613.jpg b/datasets/pinganmajia/val/images/订单1815182_4_7187613.jpg new file mode 100644 index 0000000..fde009d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815182_4_7187613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212ebc6c1540bdd935cf03b90ed70d835b856e1ff5412f5434de2d2a983f7998 +size 71292 diff --git a/datasets/pinganmajia/val/images/订单1815183_4_7187674.jpg b/datasets/pinganmajia/val/images/订单1815183_4_7187674.jpg new file mode 100644 index 0000000..de3d933 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815183_4_7187674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e087019cdc392e5ac361edf43bfe31d2ed035d9acfda07f8219e1d71bb4702 +size 86766 diff --git a/datasets/pinganmajia/val/images/订单1815184_4_7187654.jpg b/datasets/pinganmajia/val/images/订单1815184_4_7187654.jpg new file mode 100644 index 0000000..2a379fd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815184_4_7187654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f9e5508c906bdb454d4ca61aa2b88034d60a9dcffe438bc23508d8f7623d881 +size 94106 diff --git a/datasets/pinganmajia/val/images/订单1815185_4_7187651.jpg b/datasets/pinganmajia/val/images/订单1815185_4_7187651.jpg new file mode 100644 index 0000000..4949701 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815185_4_7187651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55edb0fab3fd269db9c0569c3217155a56599903707dd32b7a8532af3e176ffe +size 327434 diff --git a/datasets/pinganmajia/val/images/订单1815187_4_7187722.jpg b/datasets/pinganmajia/val/images/订单1815187_4_7187722.jpg new file mode 100644 index 0000000..2407f58 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815187_4_7187722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf5464d68f230efabe671f79c8ca55a82290895426455f54d6e0df0617715d8 +size 93046 diff --git a/datasets/pinganmajia/val/images/订单1815190_4_7187739.jpg b/datasets/pinganmajia/val/images/订单1815190_4_7187739.jpg new file mode 100644 index 0000000..fe27d6e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815190_4_7187739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d615c8d327ed165d3058774c2c64409b342d67f83888ce21b81c8edad3b3d33 +size 161235 diff --git a/datasets/pinganmajia/val/images/订单1815191_4_7187731.jpg b/datasets/pinganmajia/val/images/订单1815191_4_7187731.jpg new file mode 100644 index 0000000..919c86c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815191_4_7187731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d47816af00aefc7a21462fcc1edd60d757f6ce21697e5043dd35b6880ea67a +size 261360 diff --git a/datasets/pinganmajia/val/images/订单1815193_4_7187752.jpg b/datasets/pinganmajia/val/images/订单1815193_4_7187752.jpg new file mode 100644 index 0000000..cfcad80 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815193_4_7187752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb7d6ee7bd90a561b2e88a87589376a3a0a7c78070f5c504e6e0ed3589b6935 +size 127708 diff --git a/datasets/pinganmajia/val/images/订单1815194_4_7187770.jpg b/datasets/pinganmajia/val/images/订单1815194_4_7187770.jpg new file mode 100644 index 0000000..fb28886 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815194_4_7187770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dacef2e68d86e7e6dbdcf9be3762a44b90316015a60855cb6fb6b7a83c90297 +size 321138 diff --git a/datasets/pinganmajia/val/images/订单1815195_4_7187776.jpg b/datasets/pinganmajia/val/images/订单1815195_4_7187776.jpg new file mode 100644 index 0000000..ac51526 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815195_4_7187776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f249d3e7b0bbcc7933d8bb499daa9a91fa17768bfe4184d7a83bda069476b63 +size 162563 diff --git a/datasets/pinganmajia/val/images/订单1815196_4_7187938.jpg b/datasets/pinganmajia/val/images/订单1815196_4_7187938.jpg new file mode 100644 index 0000000..a814fc9 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815196_4_7187938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d65d4de2ac0846c658b6f9baae36c61efbd934c9412f8c63c441e557f3bc1e +size 101597 diff --git a/datasets/pinganmajia/val/images/订单1815198_4_7187792.jpg b/datasets/pinganmajia/val/images/订单1815198_4_7187792.jpg new file mode 100644 index 0000000..5a47f12 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815198_4_7187792.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c08389fc93594c4cd51a9157355e47a79e1685e7b73e64e786fd09ccd3c0048 +size 113385 diff --git a/datasets/pinganmajia/val/images/订单1815199_4_7187791.jpg b/datasets/pinganmajia/val/images/订单1815199_4_7187791.jpg new file mode 100644 index 0000000..520824d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815199_4_7187791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8bf5a06d0ef80b4b161ff9fb15727f660dfed7979e783be908d9e3795f10134 +size 362325 diff --git a/datasets/pinganmajia/val/images/订单1815202_4_7187821.jpg b/datasets/pinganmajia/val/images/订单1815202_4_7187821.jpg new file mode 100644 index 0000000..d5e14f5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815202_4_7187821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe13f49fc46a0ec5f2b87ca4d915b3af291d9907cdf1fb06e520f068b2004803 +size 84995 diff --git a/datasets/pinganmajia/val/images/订单1815204_4_7187943.jpg b/datasets/pinganmajia/val/images/订单1815204_4_7187943.jpg new file mode 100644 index 0000000..6e43e5e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815204_4_7187943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d3dd2cc5d13a118d804f4f69f1232ccfd9ed7de95e6bb98757cd1bbfe92c6f +size 117958 diff --git a/datasets/pinganmajia/val/images/订单1815206_4_7187847.jpg b/datasets/pinganmajia/val/images/订单1815206_4_7187847.jpg new file mode 100644 index 0000000..587359a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815206_4_7187847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa449f7c757e78e26376d52f9cb603e9fa7923e2acd2289a63b4de9552f20e3 +size 102748 diff --git a/datasets/pinganmajia/val/images/订单1815207_4_7187822.jpg b/datasets/pinganmajia/val/images/订单1815207_4_7187822.jpg new file mode 100644 index 0000000..cbdec68 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815207_4_7187822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e6a65779a2d3340942c05accb24e51cc07013e2f5968b1b5fdd2f3cabd29b7 +size 248657 diff --git a/datasets/pinganmajia/val/images/订单1815208_4_7187862.jpg b/datasets/pinganmajia/val/images/订单1815208_4_7187862.jpg new file mode 100644 index 0000000..c4b3270 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815208_4_7187862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb39d44af966ab630cfc465688f5b6326a012befc2407d41545a400d87105ff2 +size 117836 diff --git a/datasets/pinganmajia/val/images/订单1815210_4_7187880.jpg b/datasets/pinganmajia/val/images/订单1815210_4_7187880.jpg new file mode 100644 index 0000000..a4bcebc --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815210_4_7187880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8cc805bdd648d15c0a40b2e7269aef1bfd7a720ee38cb548a6b075fd8955ce +size 83812 diff --git a/datasets/pinganmajia/val/images/订单1815211_4_7187877.jpg b/datasets/pinganmajia/val/images/订单1815211_4_7187877.jpg new file mode 100644 index 0000000..0366f7d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815211_4_7187877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28aa70052715fb4f29d31c385b91961b2980fa00cfbbbbc7740e90e32f04b25d +size 97534 diff --git a/datasets/pinganmajia/val/images/订单1815213_4_7187923.jpg b/datasets/pinganmajia/val/images/订单1815213_4_7187923.jpg new file mode 100644 index 0000000..58d288a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815213_4_7187923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d532f4285d3c630fc973800f684e72ca032f4a23a71c43cf5ad4b410e60c8c +size 106163 diff --git a/datasets/pinganmajia/val/images/订单1815214_4_7187974.jpg b/datasets/pinganmajia/val/images/订单1815214_4_7187974.jpg new file mode 100644 index 0000000..952bda0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815214_4_7187974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7874726e1d428ef442895b21f1f6cda372aee1da8a9ba5e3c8f6aa449737a0c +size 216494 diff --git a/datasets/pinganmajia/val/images/订单1815215_4_7187954.jpg b/datasets/pinganmajia/val/images/订单1815215_4_7187954.jpg new file mode 100644 index 0000000..bdc1595 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815215_4_7187954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90f3ebc80a1c9bb9d862da612f42015780229b46fdb025d0320a0f6d2933583 +size 97701 diff --git a/datasets/pinganmajia/val/images/订单1815216_4_7187953.jpg b/datasets/pinganmajia/val/images/订单1815216_4_7187953.jpg new file mode 100644 index 0000000..a659e4d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815216_4_7187953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec4f3f4837de320e818f412f3d6c634ff0d2e467753a5290ad31b3460ec2a9a +size 125717 diff --git a/datasets/pinganmajia/val/images/订单1815219_4_7187996.jpg b/datasets/pinganmajia/val/images/订单1815219_4_7187996.jpg new file mode 100644 index 0000000..08d43e1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815219_4_7187996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed89f5f4ec1acb3805bfc9ce038c730868bcf8cd62021aa9e2d0119aad5a7cf0 +size 76753 diff --git a/datasets/pinganmajia/val/images/订单1815220_4_7188011.jpg b/datasets/pinganmajia/val/images/订单1815220_4_7188011.jpg new file mode 100644 index 0000000..9ef28b4 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815220_4_7188011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54acec84ec8c857fedccc031e19d7497924595ea4be30ee2614302e8a9bfc6c5 +size 511471 diff --git a/datasets/pinganmajia/val/images/订单1815222_4_7188020.jpg b/datasets/pinganmajia/val/images/订单1815222_4_7188020.jpg new file mode 100644 index 0000000..c3b0c45 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815222_4_7188020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c68061c4d9c7af62ebfed456a5a2fc81fea3a8dcb36773c1037a79782ce1fa +size 59489 diff --git a/datasets/pinganmajia/val/images/订单1815225_4_7188028.jpg b/datasets/pinganmajia/val/images/订单1815225_4_7188028.jpg new file mode 100644 index 0000000..31c3e5d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815225_4_7188028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5882c082c208906e88cf7c1d7fee8cfa0f52358ea52ae414ea53de47b7800e +size 128122 diff --git a/datasets/pinganmajia/val/images/订单1815231_4_7188097.jpg b/datasets/pinganmajia/val/images/订单1815231_4_7188097.jpg new file mode 100644 index 0000000..36a6149 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815231_4_7188097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ea911051b5da0e2621015c55059e64c98df78da3baa20060df4714a32277ee +size 215258 diff --git a/datasets/pinganmajia/val/images/订单1815233_4_7188119.jpg b/datasets/pinganmajia/val/images/订单1815233_4_7188119.jpg new file mode 100644 index 0000000..7c5d9dc --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815233_4_7188119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44137414ab602864805e59611d07c807cc777b4b9dee14dc3a0b426f1457c123 +size 338045 diff --git a/datasets/pinganmajia/val/images/订单1815234_4_7188135.jpg b/datasets/pinganmajia/val/images/订单1815234_4_7188135.jpg new file mode 100644 index 0000000..01bc642 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815234_4_7188135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f1544417c98ae2bdb0778db2eaddcac15632d9a74a8d5f2beaf6b75c6e988a +size 93575 diff --git a/datasets/pinganmajia/val/images/订单1815235_4_7188129.jpg b/datasets/pinganmajia/val/images/订单1815235_4_7188129.jpg new file mode 100644 index 0000000..470f64b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815235_4_7188129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef3ab5fc6dec4df9a1ac68f287cf8a32e6a8550b1cd2245cdba592b87a51828 +size 453098 diff --git a/datasets/pinganmajia/val/images/订单1815236_4_7188137.jpg b/datasets/pinganmajia/val/images/订单1815236_4_7188137.jpg new file mode 100644 index 0000000..384a7a6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815236_4_7188137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b813e9d4416d50d4a7a1039819f2eff8a5ebb17c75806ac9fb9ac8d7df27c5 +size 174833 diff --git a/datasets/pinganmajia/val/images/订单1815240_4_7188186.jpg b/datasets/pinganmajia/val/images/订单1815240_4_7188186.jpg new file mode 100644 index 0000000..f0451a2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815240_4_7188186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2991fd796640bca5dd087264ec684589e39949beb0c16aa5bcc7131eb4d2ad +size 156722 diff --git a/datasets/pinganmajia/val/images/订单1815241_4_7188350.jpg b/datasets/pinganmajia/val/images/订单1815241_4_7188350.jpg new file mode 100644 index 0000000..c38bcc0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815241_4_7188350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1643a7ceb192555227c455e56d017d515d3c0ca7bb9a44571dfa3d0f6afb90b +size 480788 diff --git a/datasets/pinganmajia/val/images/订单1815242_4_7188267.jpg b/datasets/pinganmajia/val/images/订单1815242_4_7188267.jpg new file mode 100644 index 0000000..20cd15a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815242_4_7188267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d407106668c2b9d56a20312fddf60dfdd9c8fc18e2ac577a09a3626c80d037e +size 159278 diff --git a/datasets/pinganmajia/val/images/订单1815243_4_7188197.jpg b/datasets/pinganmajia/val/images/订单1815243_4_7188197.jpg new file mode 100644 index 0000000..1eda7ad --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815243_4_7188197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983f1cec9930b006ef64da8f02dfa5a6f7d213f6da83f3bfeee8bde21572b9df +size 321843 diff --git a/datasets/pinganmajia/val/images/订单1815244_4_7188181.jpg b/datasets/pinganmajia/val/images/订单1815244_4_7188181.jpg new file mode 100644 index 0000000..f8767a8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815244_4_7188181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b21327d4e9d00ccf4f07c284fd21abd85268f8836f043d042cd256f91aa04b +size 130472 diff --git a/datasets/pinganmajia/val/images/订单1815245_4_7188163.jpg b/datasets/pinganmajia/val/images/订单1815245_4_7188163.jpg new file mode 100644 index 0000000..663bfe8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815245_4_7188163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2daf1fbfc975d822d414c02ac664783c5e3d886e5622a8935498a97d85b9bf69 +size 183657 diff --git a/datasets/pinganmajia/val/images/订单1815247_4_7188241.jpg b/datasets/pinganmajia/val/images/订单1815247_4_7188241.jpg new file mode 100644 index 0000000..2404ee1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815247_4_7188241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694d34dc4b616b29737958deb1759c278f35be9e76d0bbabd6ce1970b16814d1 +size 90645 diff --git a/datasets/pinganmajia/val/images/订单1815248_4_7188201.jpg b/datasets/pinganmajia/val/images/订单1815248_4_7188201.jpg new file mode 100644 index 0000000..304de03 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815248_4_7188201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8192297b98a4a1c339fa9a42e2038b4f470b7da467ab1a07d4617956b797272e +size 193843 diff --git a/datasets/pinganmajia/val/images/订单1815250_4_7188520.jpg b/datasets/pinganmajia/val/images/订单1815250_4_7188520.jpg new file mode 100644 index 0000000..9eb7397 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815250_4_7188520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee83a96937e3faf011f6264bf8e59a9d4610ab85ee9820be0859992f4ba28f8 +size 62532 diff --git a/datasets/pinganmajia/val/images/订单1815254_4_7188237.jpg b/datasets/pinganmajia/val/images/订单1815254_4_7188237.jpg new file mode 100644 index 0000000..6ba889f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815254_4_7188237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08180273b36f63cc4de7e681d337185600a0a356d7e99233b42898bc393de19f +size 137287 diff --git a/datasets/pinganmajia/val/images/订单1815257_4_7188264.jpg b/datasets/pinganmajia/val/images/订单1815257_4_7188264.jpg new file mode 100644 index 0000000..ddc30db --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815257_4_7188264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51593e9aaf155ce601330492bdf9f9216c4307a204e55b506bb09e45c15b4713 +size 64330 diff --git a/datasets/pinganmajia/val/images/订单1815260_4_7188328.jpg b/datasets/pinganmajia/val/images/订单1815260_4_7188328.jpg new file mode 100644 index 0000000..57fcee5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815260_4_7188328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe9c9a4c35b83f778b50a1b34576849319bfddfa8900f2349ea106dddb32436 +size 80232 diff --git a/datasets/pinganmajia/val/images/订单1815262_4_7188284.jpg b/datasets/pinganmajia/val/images/订单1815262_4_7188284.jpg new file mode 100644 index 0000000..9a83140 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815262_4_7188284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07847b4243af84440957345b38525023aac6eab50d57bc749f29631f8c0d8bbe +size 194799 diff --git a/datasets/pinganmajia/val/images/订单1815264_4_7188291.jpg b/datasets/pinganmajia/val/images/订单1815264_4_7188291.jpg new file mode 100644 index 0000000..7ffff52 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815264_4_7188291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2131d5cc9eee60399ac3a5d1a7ef61f6e20305efaf7cf62465902d484ff31852 +size 136221 diff --git a/datasets/pinganmajia/val/images/订单1815269_4_7188439.jpg b/datasets/pinganmajia/val/images/订单1815269_4_7188439.jpg new file mode 100644 index 0000000..23cb37f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815269_4_7188439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccfac95cf9aa3dad00f6f2361f6e77e1fbd9fde28170e8a31c0cf315dd6a395 +size 244081 diff --git a/datasets/pinganmajia/val/images/订单1815270_4_7188344.jpg b/datasets/pinganmajia/val/images/订单1815270_4_7188344.jpg new file mode 100644 index 0000000..4c46075 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815270_4_7188344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1bd00335fa5e9ba990b30ecd4734b2525f9137036a38e660f6319fe7e3d8da +size 582745 diff --git a/datasets/pinganmajia/val/images/订单1815272_4_7188456.jpg b/datasets/pinganmajia/val/images/订单1815272_4_7188456.jpg new file mode 100644 index 0000000..408c469 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815272_4_7188456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48669bc8b55b51b6f127e8358acb8c04ecfbfd94bd1ab2ea7aa6b05d5136988e +size 243337 diff --git a/datasets/pinganmajia/val/images/订单1815273_4_7188353.jpg b/datasets/pinganmajia/val/images/订单1815273_4_7188353.jpg new file mode 100644 index 0000000..8dc84f5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815273_4_7188353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311e803e44090caee026de449f733fb3079b213412675dd2f34a021a9d253f0c +size 89574 diff --git a/datasets/pinganmajia/val/images/订单1815276_4_7188447.jpg b/datasets/pinganmajia/val/images/订单1815276_4_7188447.jpg new file mode 100644 index 0000000..b8949bf --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815276_4_7188447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1cb1c829ada8d0fc223eca0f482e0220455427cddc818857efadecfb3266b20 +size 522975 diff --git a/datasets/pinganmajia/val/images/订单1815278_4_7188413.jpg b/datasets/pinganmajia/val/images/订单1815278_4_7188413.jpg new file mode 100644 index 0000000..84e3ac0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815278_4_7188413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d36833c6c2f614df827062be1d62e5d04310605fcee4106395d5670083008f2 +size 80803 diff --git a/datasets/pinganmajia/val/images/订单1815279_4_7188438.jpg b/datasets/pinganmajia/val/images/订单1815279_4_7188438.jpg new file mode 100644 index 0000000..6f25473 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815279_4_7188438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a600f1d0e902d5142903a9c1a447ef80e8bcab8ca8dfa50c36d51410fea2b3c3 +size 55058 diff --git a/datasets/pinganmajia/val/images/订单1815280_4_7188574.jpg b/datasets/pinganmajia/val/images/订单1815280_4_7188574.jpg new file mode 100644 index 0000000..8b5356c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815280_4_7188574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f910250c08efa8a65d2a36902c22b77aa7ea4bca9e32b1863524c4412ae82c29 +size 77809 diff --git a/datasets/pinganmajia/val/images/订单1815284_4_7188613.jpg b/datasets/pinganmajia/val/images/订单1815284_4_7188613.jpg new file mode 100644 index 0000000..40520f1 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815284_4_7188613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037e05fd7a349f9c3ab07d12a6151fc4190b509adc02696c52dc3f861dfa7d0b +size 276218 diff --git a/datasets/pinganmajia/val/images/订单1815290_4_7188544.jpg b/datasets/pinganmajia/val/images/订单1815290_4_7188544.jpg new file mode 100644 index 0000000..4641717 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815290_4_7188544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f283791ea7bade6be031aa9c4f1b09e65142e1c65166bb71f8938be68ed5fb0e +size 538296 diff --git a/datasets/pinganmajia/val/images/订单1815294_4_7188632.jpg b/datasets/pinganmajia/val/images/订单1815294_4_7188632.jpg new file mode 100644 index 0000000..bd2bd07 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815294_4_7188632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203e5d05299a6913a21e7d2c277a3a2d8716e01d5ef0836a65cdd688b9902fd4 +size 91781 diff --git a/datasets/pinganmajia/val/images/订单1815295_4_7188685.jpg b/datasets/pinganmajia/val/images/订单1815295_4_7188685.jpg new file mode 100644 index 0000000..8acc81b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815295_4_7188685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06635056157a37d51bdb15d786f97f12d8a01fa1ac802f359bdda8b633e5df11 +size 278794 diff --git a/datasets/pinganmajia/val/images/订单1815296_4_7188671.jpg b/datasets/pinganmajia/val/images/订单1815296_4_7188671.jpg new file mode 100644 index 0000000..ab139b6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815296_4_7188671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f740c16100316b76c13f8f27a1e94dd041bc728639a7bf584f79c2f76c15117 +size 509774 diff --git a/datasets/pinganmajia/val/images/订单1815297_4_7188661.jpg b/datasets/pinganmajia/val/images/订单1815297_4_7188661.jpg new file mode 100644 index 0000000..39f88b6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815297_4_7188661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f0c9c8112beb87f12aa1894335f95b54aa83ccdb979811ea77b26ec80c7664 +size 155389 diff --git a/datasets/pinganmajia/val/images/订单1815298_4_7188781.jpg b/datasets/pinganmajia/val/images/订单1815298_4_7188781.jpg new file mode 100644 index 0000000..326bb2a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815298_4_7188781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8336f92b3ed4cf7a5f3862f55fd7edb3b630e67c3ae7966d006ff3be790e483 +size 591414 diff --git a/datasets/pinganmajia/val/images/订单1815300_4_7188714.jpg b/datasets/pinganmajia/val/images/订单1815300_4_7188714.jpg new file mode 100644 index 0000000..667f619 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815300_4_7188714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2209e4e2612c1a3754abb94e0f5c6bb9ede26e80dee9ea7558146f02d1a9245f +size 425644 diff --git a/datasets/pinganmajia/val/images/订单1815301_4_7188737.jpg b/datasets/pinganmajia/val/images/订单1815301_4_7188737.jpg new file mode 100644 index 0000000..447b779 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815301_4_7188737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3155bf66794665d7603b1a9c72e3d50d60d35232cb6a836f2610dde75d50f9df +size 105674 diff --git a/datasets/pinganmajia/val/images/订单1815303_4_7188726.jpg b/datasets/pinganmajia/val/images/订单1815303_4_7188726.jpg new file mode 100644 index 0000000..f2d9754 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815303_4_7188726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0222caa7bef6f44693bb09d827b3925aaa74241e1478638dc7e6ebde3a9384 +size 147651 diff --git a/datasets/pinganmajia/val/images/订单1815304_4_7188718.jpg b/datasets/pinganmajia/val/images/订单1815304_4_7188718.jpg new file mode 100644 index 0000000..8f5f3c6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815304_4_7188718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45f8ab45acea88705b1ccda4a60c3f8ab04e1b1e9d6e5bc595f35c944166368 +size 159114 diff --git a/datasets/pinganmajia/val/images/订单1815305_4_7188759.jpg b/datasets/pinganmajia/val/images/订单1815305_4_7188759.jpg new file mode 100644 index 0000000..2545803 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815305_4_7188759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e5a90fc71423e33da6a3c745fbec7cc49887756714096c2799c43c221f722f +size 161681 diff --git a/datasets/pinganmajia/val/images/订单1815306_4_7188854.jpg b/datasets/pinganmajia/val/images/订单1815306_4_7188854.jpg new file mode 100644 index 0000000..da0fb9e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815306_4_7188854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13befa04291ede06557430a33d67118ad7735f0416561714b0e08440b822aa08 +size 291185 diff --git a/datasets/pinganmajia/val/images/订单1815309_4_7188803.jpg b/datasets/pinganmajia/val/images/订单1815309_4_7188803.jpg new file mode 100644 index 0000000..ca2cafd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815309_4_7188803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7674bee63d48b3cf1ee7f247105887c70d72ca6baf63300db0b2067eceaa53fe +size 220825 diff --git a/datasets/pinganmajia/val/images/订单1815310_4_7188819.jpg b/datasets/pinganmajia/val/images/订单1815310_4_7188819.jpg new file mode 100644 index 0000000..38086f6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815310_4_7188819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b1b6134f4325e480841114f1e824e09b4761b4c1b324604ccc1b4b4bda922c +size 137166 diff --git a/datasets/pinganmajia/val/images/订单1815312_4_7188810.jpg b/datasets/pinganmajia/val/images/订单1815312_4_7188810.jpg new file mode 100644 index 0000000..4845a73 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815312_4_7188810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd70c843878e1a67eaa8685ee5778c4fba142fad0987148a4c853b716d5608c0 +size 197594 diff --git a/datasets/pinganmajia/val/images/订单1815316_4_7188914.jpg b/datasets/pinganmajia/val/images/订单1815316_4_7188914.jpg new file mode 100644 index 0000000..65fc2af --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815316_4_7188914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f4852071d1c4dbb9ce819db078489d7738993a1a098f9e4d0a3a4493829ab8 +size 538795 diff --git a/datasets/pinganmajia/val/images/订单1815317_4_7188911.jpg b/datasets/pinganmajia/val/images/订单1815317_4_7188911.jpg new file mode 100644 index 0000000..fcf89bf --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815317_4_7188911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4a26aed20ac2a3caf222c9644367dbfbfe3aed5a365fb3f6957b023adda3d5 +size 91197 diff --git a/datasets/pinganmajia/val/images/订单1815318_4_7188877.jpg b/datasets/pinganmajia/val/images/订单1815318_4_7188877.jpg new file mode 100644 index 0000000..921abc7 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815318_4_7188877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e845c439198707405d9b7613825d5bda40678a01be6b87b8679748730a2ee482 +size 152322 diff --git a/datasets/pinganmajia/val/images/订单1815319_4_7188915.jpg b/datasets/pinganmajia/val/images/订单1815319_4_7188915.jpg new file mode 100644 index 0000000..411bd2b --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815319_4_7188915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb30dcf20625d3605ff4a9087901cd2458af5f733b63d27055f21aba765dc26f +size 141991 diff --git a/datasets/pinganmajia/val/images/订单1815321_4_7188936.jpg b/datasets/pinganmajia/val/images/订单1815321_4_7188936.jpg new file mode 100644 index 0000000..3b53603 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815321_4_7188936.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1daf3c4eedbbd3754ae180f6b589022b9b187e048786a9a3702073d4347c67f1 +size 198678 diff --git a/datasets/pinganmajia/val/images/订单1815322_4_7188935.jpg b/datasets/pinganmajia/val/images/订单1815322_4_7188935.jpg new file mode 100644 index 0000000..5e83558 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815322_4_7188935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511893fb754163e1fd00bd307216b3463533bd5c24483431537eb0bfaaa0f8e6 +size 130740 diff --git a/datasets/pinganmajia/val/images/订单1815324_4_7188988.jpg b/datasets/pinganmajia/val/images/订单1815324_4_7188988.jpg new file mode 100644 index 0000000..3b06c22 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815324_4_7188988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b526f477f35d0f161a2a108228725863dc1c23fb8854b7da21868ec3e9ebd67 +size 122260 diff --git a/datasets/pinganmajia/val/images/订单1815325_4_7189026.jpg b/datasets/pinganmajia/val/images/订单1815325_4_7189026.jpg new file mode 100644 index 0000000..3b235b8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815325_4_7189026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cc47cfc12305a562bbdaafddd442c4b42644d9c85dd69b5eb2528d1ed0a9bf +size 80255 diff --git a/datasets/pinganmajia/val/images/订单1815326_4_7188964.jpg b/datasets/pinganmajia/val/images/订单1815326_4_7188964.jpg new file mode 100644 index 0000000..8224f4e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815326_4_7188964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ea300be39466be823bc5e048d8d951f4e76cb45a9e4c177cd641ab4c816a83 +size 191634 diff --git a/datasets/pinganmajia/val/images/订单1815330_4_7188971.jpg b/datasets/pinganmajia/val/images/订单1815330_4_7188971.jpg new file mode 100644 index 0000000..e63be1c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815330_4_7188971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81eff4d90bbf48ed97e6036c7af3079589cd91ab7bbe1d8364e4d53d5c534789 +size 349189 diff --git a/datasets/pinganmajia/val/images/订单1815331_4_7189059.jpg b/datasets/pinganmajia/val/images/订单1815331_4_7189059.jpg new file mode 100644 index 0000000..e6d90e5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815331_4_7189059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2f0e1f142e4030847d397e906183426e9be7b07abdc7662462e2ab1156cfaa +size 321734 diff --git a/datasets/pinganmajia/val/images/订单1815333_4_7189028.jpg b/datasets/pinganmajia/val/images/订单1815333_4_7189028.jpg new file mode 100644 index 0000000..4578bf6 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815333_4_7189028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5b904ea774b49e3fcd333bbb8b832a0950f9d09ce2d9cf9359be518a0f8873 +size 173392 diff --git a/datasets/pinganmajia/val/images/订单1815335_4_7189073.jpg b/datasets/pinganmajia/val/images/订单1815335_4_7189073.jpg new file mode 100644 index 0000000..4dbe17d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815335_4_7189073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d256600628c9118c7f78ded8b233405f3577a0ed55afad08bf91426ef2effa7 +size 191950 diff --git a/datasets/pinganmajia/val/images/订单1815337_4_7189083.jpg b/datasets/pinganmajia/val/images/订单1815337_4_7189083.jpg new file mode 100644 index 0000000..57b2125 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815337_4_7189083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541fe931282a7e5b1e1c52b88779b5edab2b5d0a5f58d7efbb103918f1d85dea +size 470162 diff --git a/datasets/pinganmajia/val/images/订单1815341_4_7189106.jpg b/datasets/pinganmajia/val/images/订单1815341_4_7189106.jpg new file mode 100644 index 0000000..e705552 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815341_4_7189106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f01f72d76082fa508f918a8fed476a91d1d9a4c8f90fa0a5e880c0d3ec1cf3 +size 83362 diff --git a/datasets/pinganmajia/val/images/订单1815344_4_7189154.jpg b/datasets/pinganmajia/val/images/订单1815344_4_7189154.jpg new file mode 100644 index 0000000..e5b327e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815344_4_7189154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4d5ed94ec100443e00d56fc71bf51110ec02b448d8c7e4bdd1edcf9fb41606 +size 199804 diff --git a/datasets/pinganmajia/val/images/订单1815345_4_7189165.jpg b/datasets/pinganmajia/val/images/订单1815345_4_7189165.jpg new file mode 100644 index 0000000..1508d19 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815345_4_7189165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5dc8a7bed489ec0e139c80ceb7bd4dbcd7a868a87afdc87a0a13b2a23532717 +size 135378 diff --git a/datasets/pinganmajia/val/images/订单1815347_4_7189187.jpg b/datasets/pinganmajia/val/images/订单1815347_4_7189187.jpg new file mode 100644 index 0000000..a645561 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815347_4_7189187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f2ff4f5fcdcf31cbd5a35d71dc4a169eae86b6314d3b87dede8632c86ea015 +size 205140 diff --git a/datasets/pinganmajia/val/images/订单1815349_4_7189138.jpg b/datasets/pinganmajia/val/images/订单1815349_4_7189138.jpg new file mode 100644 index 0000000..831a7e2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815349_4_7189138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89b846ed5a9c3f23a7c6b3d06687da2d375b72745a85d57c61894acb4e5ae0d +size 209167 diff --git a/datasets/pinganmajia/val/images/订单1815350_4_7189215.jpg b/datasets/pinganmajia/val/images/订单1815350_4_7189215.jpg new file mode 100644 index 0000000..757a197 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815350_4_7189215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c096e486c4b0b085524cb3e4c893faadfafb17decc7ec7ec03325fdafab5d06 +size 107500 diff --git a/datasets/pinganmajia/val/images/订单1815352_4_7189372.jpg b/datasets/pinganmajia/val/images/订单1815352_4_7189372.jpg new file mode 100644 index 0000000..9ddc73f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815352_4_7189372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff89821f76eb6e8350291e9dd8194130acb9d7bde0d90dcb4be403cef9c78768 +size 78835 diff --git a/datasets/pinganmajia/val/images/订单1815353_4_7189360.jpg b/datasets/pinganmajia/val/images/订单1815353_4_7189360.jpg new file mode 100644 index 0000000..6c2e805 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815353_4_7189360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2303bff1077b12ebe5164af70bd80017bb036177f860ffbd4834b1c7489f46d5 +size 166954 diff --git a/datasets/pinganmajia/val/images/订单1815357_4_7189224.jpg b/datasets/pinganmajia/val/images/订单1815357_4_7189224.jpg new file mode 100644 index 0000000..6c2d9fd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815357_4_7189224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796041a0a1f3e3582fbb95a1fdf3cb96d29f9f264005e5c0991fb9d04aad1c87 +size 151237 diff --git a/datasets/pinganmajia/val/images/订单1815359_4_7189281.jpg b/datasets/pinganmajia/val/images/订单1815359_4_7189281.jpg new file mode 100644 index 0000000..7323150 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815359_4_7189281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41497b9c061c75f9ee5f46bca26533ef527bc8cf0e765c374a6019a3ad5891d1 +size 186226 diff --git a/datasets/pinganmajia/val/images/订单1815361_4_7189251.jpg b/datasets/pinganmajia/val/images/订单1815361_4_7189251.jpg new file mode 100644 index 0000000..a501c76 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815361_4_7189251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbc22978e8cccc52b7e2bf5e55879fbf967157880bc21cd1a1fce3814122523 +size 141816 diff --git a/datasets/pinganmajia/val/images/订单1815362_4_7189325.jpg b/datasets/pinganmajia/val/images/订单1815362_4_7189325.jpg new file mode 100644 index 0000000..7688691 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815362_4_7189325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29c642c9104fcb0f54ecf06b44a2370237faef816fabce2d269c53bb85b8926 +size 217961 diff --git a/datasets/pinganmajia/val/images/订单1815363_4_7189257.jpg b/datasets/pinganmajia/val/images/订单1815363_4_7189257.jpg new file mode 100644 index 0000000..a16884d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815363_4_7189257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f29a9c7fd2047ab9b14a117de3de7e0b2d5e8622c73c2c65e90133800e88b9 +size 403745 diff --git a/datasets/pinganmajia/val/images/订单1815365_4_7189284.jpg b/datasets/pinganmajia/val/images/订单1815365_4_7189284.jpg new file mode 100644 index 0000000..14a2831 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815365_4_7189284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7471b117b35f7dd7a4428fab1aa2d10cbd5979b6c56c35ecebcd6d9a3e297b +size 96158 diff --git a/datasets/pinganmajia/val/images/订单1815371_4_7189338.jpg b/datasets/pinganmajia/val/images/订单1815371_4_7189338.jpg new file mode 100644 index 0000000..469a001 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815371_4_7189338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0450356f769a074fea79292dd2ebd39940ac6aa4450a03931d27a9f2fb36bd07 +size 166763 diff --git a/datasets/pinganmajia/val/images/订单1815372_4_7189389.jpg b/datasets/pinganmajia/val/images/订单1815372_4_7189389.jpg new file mode 100644 index 0000000..fcb21ec --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815372_4_7189389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340aff4d2ffd68d34e41830b542b9abc840e4d45fb5cfab2aa0ffc70474df57e +size 246847 diff --git a/datasets/pinganmajia/val/images/订单1815374_4_7189333.jpg b/datasets/pinganmajia/val/images/订单1815374_4_7189333.jpg new file mode 100644 index 0000000..48f328d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815374_4_7189333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b42fb4dcbb8a122400e2dc332c4cfe3cb8da2da1dd56cf5655fd83c2aa0b28 +size 383226 diff --git a/datasets/pinganmajia/val/images/订单1815376_4_7189467.jpg b/datasets/pinganmajia/val/images/订单1815376_4_7189467.jpg new file mode 100644 index 0000000..309a610 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815376_4_7189467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3f67e28e73fce37a4181a0f322d9b664864bf06f1c9cc937fa1607ee9ae7d1 +size 81888 diff --git a/datasets/pinganmajia/val/images/订单1815379_4_7189431.jpg b/datasets/pinganmajia/val/images/订单1815379_4_7189431.jpg new file mode 100644 index 0000000..dad74f5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815379_4_7189431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca30258139c1548b3a15997314b4617919522425a3a1ed581732c3ce45e92d69 +size 85502 diff --git a/datasets/pinganmajia/val/images/订单1815380_4_7189437.jpg b/datasets/pinganmajia/val/images/订单1815380_4_7189437.jpg new file mode 100644 index 0000000..309b756 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815380_4_7189437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54437ca799f445f0dca1866808bd7f42ad6c800cb2b2fc228fa774cd057806b +size 94935 diff --git a/datasets/pinganmajia/val/images/订单1815381_4_7189439.jpg b/datasets/pinganmajia/val/images/订单1815381_4_7189439.jpg new file mode 100644 index 0000000..a66ef54 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815381_4_7189439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23258851616ae84c11fbced7511c1a24b20a7cf93c8d754b1086a7294edce540 +size 380883 diff --git a/datasets/pinganmajia/val/images/订单1815383_4_7189587.jpg b/datasets/pinganmajia/val/images/订单1815383_4_7189587.jpg new file mode 100644 index 0000000..e6d42a8 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815383_4_7189587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcee0fb35019d41e9fec5bc4514196f05c9e43ff9b7147290d4a909b507675f +size 93342 diff --git a/datasets/pinganmajia/val/images/订单1815384_4_7189517.jpg b/datasets/pinganmajia/val/images/订单1815384_4_7189517.jpg new file mode 100644 index 0000000..614c053 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815384_4_7189517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0311dda258643e5b933f13bcb6db8d86c2895137904e13a8b99c32f19f3a87 +size 245341 diff --git a/datasets/pinganmajia/val/images/订单1815385_4_7189531.jpg b/datasets/pinganmajia/val/images/订单1815385_4_7189531.jpg new file mode 100644 index 0000000..49f0d4d --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815385_4_7189531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0f6bdde551a1169a7d797b913386f07b8134b76e62eda0938aa894af977cda +size 180137 diff --git a/datasets/pinganmajia/val/images/订单1815386_4_7189495.jpg b/datasets/pinganmajia/val/images/订单1815386_4_7189495.jpg new file mode 100644 index 0000000..aaafaf2 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815386_4_7189495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70e917e8aa49191a777594f45afdea8740f4548852a7d0f76b0a6b9096afb1f +size 181925 diff --git a/datasets/pinganmajia/val/images/订单1815387_4_7189547.jpg b/datasets/pinganmajia/val/images/订单1815387_4_7189547.jpg new file mode 100644 index 0000000..bb5542c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815387_4_7189547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33cd28f27fd194d4368562039cc49ebe6a5b4e16b7cb8b41756013a652a0cbf +size 249393 diff --git a/datasets/pinganmajia/val/images/订单1815389_4_7189596.jpg b/datasets/pinganmajia/val/images/订单1815389_4_7189596.jpg new file mode 100644 index 0000000..d84fdbd --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815389_4_7189596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f157fbe448fbc4c1a922ea7523e4a066a311ccbe91b058c0c27058b68d56c8e1 +size 229187 diff --git a/datasets/pinganmajia/val/images/订单1815390_4_7189671.jpg b/datasets/pinganmajia/val/images/订单1815390_4_7189671.jpg new file mode 100644 index 0000000..4aa89fa --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815390_4_7189671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e53a6a8ac62c443f7193e39123c27b7446d9f998cdc381b3c70476dc351a71f +size 115936 diff --git a/datasets/pinganmajia/val/images/订单1815391_4_7189583.jpg b/datasets/pinganmajia/val/images/订单1815391_4_7189583.jpg new file mode 100644 index 0000000..126a8e0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815391_4_7189583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c680e06ae579a8bafcc1b0558d460711e5b8344492f646cb9a860ff498cf83 +size 179433 diff --git a/datasets/pinganmajia/val/images/订单1815392_4_7189560.jpg b/datasets/pinganmajia/val/images/订单1815392_4_7189560.jpg new file mode 100644 index 0000000..9d7086e --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815392_4_7189560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef0620fa4a859034b8de699eb2377fb6274fa67db172733302253585cf726fd +size 140926 diff --git a/datasets/pinganmajia/val/images/订单1815396_4_7189620.jpg b/datasets/pinganmajia/val/images/订单1815396_4_7189620.jpg new file mode 100644 index 0000000..49a1b25 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815396_4_7189620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95711ab73194e97e53bbffdbb75e84ee8ad7e9ff7cbeaadfcf6e008b302fb0ae +size 312100 diff --git a/datasets/pinganmajia/val/images/订单1815398_4_7189598.jpg b/datasets/pinganmajia/val/images/订单1815398_4_7189598.jpg new file mode 100644 index 0000000..c0f76ad --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815398_4_7189598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e9554fea532c3d5002c42fcd0a2c4967a438ee00ee49f0b46210e0bf7b4024 +size 843164 diff --git a/datasets/pinganmajia/val/images/订单1815400_4_7189689.jpg b/datasets/pinganmajia/val/images/订单1815400_4_7189689.jpg new file mode 100644 index 0000000..45e76eb --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815400_4_7189689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ca925534e6334852eaeb3d33fde25113cac4d2c02e8773138f5477e8604bf9 +size 529139 diff --git a/datasets/pinganmajia/val/images/订单1815403_4_7189669.jpg b/datasets/pinganmajia/val/images/订单1815403_4_7189669.jpg new file mode 100644 index 0000000..10fe066 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815403_4_7189669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c274863aeb7772391b9abd8b5c54410f0eec5b46e9c84bda5f97fdf27fc56b5d +size 170755 diff --git a/datasets/pinganmajia/val/images/订单1815405_4_7189820.jpg b/datasets/pinganmajia/val/images/订单1815405_4_7189820.jpg new file mode 100644 index 0000000..d7839e5 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815405_4_7189820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d071ff0d7036e95d0af6f3a4f3597eb00c7c88f9ff31ef03a427c3de735646ec +size 174630 diff --git a/datasets/pinganmajia/val/images/订单1815406_4_7189746.jpg b/datasets/pinganmajia/val/images/订单1815406_4_7189746.jpg new file mode 100644 index 0000000..4c48607 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815406_4_7189746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc09b297045faff9ff44fb3d7340b522c1bb8eeffe3c7bc1a37d007bf2ed5492 +size 220263 diff --git a/datasets/pinganmajia/val/images/订单1815408_4_7189742.jpg b/datasets/pinganmajia/val/images/订单1815408_4_7189742.jpg new file mode 100644 index 0000000..ed9b8d0 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815408_4_7189742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2eb9b5e5162b882da4d15c4f3a6bf0804052bdc775ca5315e015c945a9d32d3 +size 190221 diff --git a/datasets/pinganmajia/val/images/订单1815409_4_7189829.jpg b/datasets/pinganmajia/val/images/订单1815409_4_7189829.jpg new file mode 100644 index 0000000..d3e8231 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815409_4_7189829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab686bf99dcdc8a9c0b686e8918d116bd6e2df8e5f289a7cfc7dc1894769ffde +size 88033 diff --git a/datasets/pinganmajia/val/images/订单1815410_4_7189771.jpg b/datasets/pinganmajia/val/images/订单1815410_4_7189771.jpg new file mode 100644 index 0000000..6e26c98 --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815410_4_7189771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136c7421fee56859a8a61b2b54153a69f6f7b79c217dd48dfdd5c8e516c0d9fc +size 504310 diff --git a/datasets/pinganmajia/val/images/订单1815411_4_7189755.jpg b/datasets/pinganmajia/val/images/订单1815411_4_7189755.jpg new file mode 100644 index 0000000..407da6a --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815411_4_7189755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230f67d76d2036c87c5bff146cdefd4da8fda6aa747e2992ca6a639e116ac9ea +size 82491 diff --git a/datasets/pinganmajia/val/images/订单1815413_4_7189754.jpg b/datasets/pinganmajia/val/images/订单1815413_4_7189754.jpg new file mode 100644 index 0000000..04f4c4f --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815413_4_7189754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690e407dae815461bdeabfb883c91d27fc44bb0d619f40bd24abd297f54f11a2 +size 313869 diff --git a/datasets/pinganmajia/val/images/订单1815415_4_7189805.jpg b/datasets/pinganmajia/val/images/订单1815415_4_7189805.jpg new file mode 100644 index 0000000..8f4a5ec --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815415_4_7189805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254828c208102e72935b31f497d182d6d2b52cc3f130cb78c17793ca3bf431d6 +size 234812 diff --git a/datasets/pinganmajia/val/images/订单1815421_4_7189845.jpg b/datasets/pinganmajia/val/images/订单1815421_4_7189845.jpg new file mode 100644 index 0000000..102b50c --- /dev/null +++ b/datasets/pinganmajia/val/images/订单1815421_4_7189845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec88c5f5fec7eed7682bca94779981aeaf0cb0740ab92ec660403ca50dbbbc06 +size 356444 diff --git a/datasets/pinganmajia/val/labels/订单1814810_4_7184237.txt b/datasets/pinganmajia/val/labels/订单1814810_4_7184237.txt new file mode 100644 index 0000000..26e4341 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814810_4_7184237.txt @@ -0,0 +1 @@ +4 0.996019 0.736259 0.857789 0.673264 0.854294 0.635208 0.847292 0.598464 0.810544 0.574835 0.812292 0.489540 0.780799 0.398984 0.703808 0.345182 0.577824 0.356988 0.507836 0.400295 0.478090 0.471163 0.469340 0.548594 0.483333 0.635208 0.380104 0.677205 0.374850 0.725755 0.367847 0.813681 0.315359 0.998724 0.535463 1.000000 0.994294 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814811_4_7184123.txt b/datasets/pinganmajia/val/labels/订单1814811_4_7184123.txt new file mode 100644 index 0000000..bc1a7ee --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814811_4_7184123.txt @@ -0,0 +1 @@ +4 1.000000 0.534644 0.975023 0.518411 0.943530 0.468542 0.938275 0.423924 0.938275 0.371424 0.901539 0.287439 0.843796 0.237569 0.728310 0.221823 0.623322 0.253316 0.570822 0.333368 0.567326 0.429167 0.607569 0.548594 0.504340 0.612899 0.492083 0.717882 0.469340 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814814_4_7184300.txt b/datasets/pinganmajia/val/labels/订单1814814_4_7184300.txt new file mode 100644 index 0000000..cb06030 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814814_4_7184300.txt @@ -0,0 +1 @@ +4 1.000000 0.490576 0.917778 0.456641 0.930571 0.400211 0.924664 0.339841 0.906948 0.291286 0.814429 0.205983 0.770139 0.022258 0.563445 0.019635 0.534904 0.120684 0.520139 0.274228 0.523090 0.321471 0.465019 0.447454 0.391200 0.510448 0.360691 0.591811 0.342975 0.704671 0.306555 0.860838 0.328210 0.917269 0.353029 1.000000 0.538391 1.000000 0.918762 0.994697 0.928603 0.864779 0.951242 0.856903 0.981752 0.918585 1.000000 0.939074 diff --git a/datasets/pinganmajia/val/labels/订单1814815_4_7184070.txt b/datasets/pinganmajia/val/labels/订单1814815_4_7184070.txt new file mode 100644 index 0000000..8a257f0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814815_4_7184070.txt @@ -0,0 +1 @@ +4 0.005118 0.626020 0.047173 0.585333 0.073455 0.548588 0.054175 0.500029 0.064699 0.489529 0.071702 0.413422 0.127762 0.353049 0.217120 0.335990 0.331008 0.370108 0.369555 0.444912 0.383573 0.521029 0.406348 0.548588 0.415105 0.647010 0.451898 0.698196 0.469424 0.787431 0.481688 0.904235 0.474777 1.000000 0.000000 1.000000 0.000000 0.782794 diff --git a/datasets/pinganmajia/val/labels/订单1814817_4_7184379.txt b/datasets/pinganmajia/val/labels/订单1814817_4_7184379.txt new file mode 100644 index 0000000..7bf3810 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814817_4_7184379.txt @@ -0,0 +1 @@ +4 0.000000 0.568819 0.026644 0.517092 0.084387 0.501345 0.063391 0.461979 0.056389 0.423924 0.087882 0.417361 0.084387 0.316311 0.114132 0.278255 0.241863 0.249384 0.348600 0.278255 0.394097 0.324184 0.390602 0.366181 0.395845 0.434418 0.397593 0.482977 0.352106 0.555156 0.467593 0.564340 0.423843 0.648333 0.437847 0.715260 0.462338 0.822873 0.485093 0.883238 0.520764 1.000000 0.003854 1.000000 0.000000 0.764427 diff --git a/datasets/pinganmajia/val/labels/订单1814818_4_7184090.txt b/datasets/pinganmajia/val/labels/订单1814818_4_7184090.txt new file mode 100644 index 0000000..f695d35 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814818_4_7184090.txt @@ -0,0 +1 @@ +4 0.950556 0.315011 0.889313 0.309759 0.887558 0.294013 0.884064 0.255954 0.854313 0.233651 0.805322 0.240208 0.798319 0.267774 0.803567 0.303202 0.796564 0.316327 0.749327 0.329452 0.709079 0.418684 0.719576 0.502675 0.745833 0.530241 0.763319 0.623410 0.780819 0.703465 0.752822 0.731020 0.775570 0.746776 0.817573 0.732336 0.831564 0.683783 0.826316 0.641787 0.838567 0.593224 0.859561 0.631283 0.873567 0.690340 0.864810 0.723147 0.871813 0.754649 0.915556 0.770395 0.912061 0.724463 0.926053 0.608980 0.948801 0.530241 0.996053 0.469868 1.000000 0.444956 1.000000 0.405932 diff --git a/datasets/pinganmajia/val/labels/订单1814823_4_7184166.txt b/datasets/pinganmajia/val/labels/订单1814823_4_7184166.txt new file mode 100644 index 0000000..1542685 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814823_4_7184166.txt @@ -0,0 +1 @@ +4 0.695056 0.021029 0.600567 0.144392 0.612817 0.185071 0.604067 0.287433 0.630317 0.377987 0.702056 0.438354 0.600567 0.503971 0.553322 0.560400 0.436089 0.775625 0.399344 0.998721 0.472483 1.000000 0.999567 1.000000 1.000000 0.918421 1.000000 0.018446 diff --git a/datasets/pinganmajia/val/labels/订单1814826_4_7184186.txt b/datasets/pinganmajia/val/labels/订单1814826_4_7184186.txt new file mode 100644 index 0000000..f0c265f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814826_4_7184186.txt @@ -0,0 +1 @@ +4 1.000000 0.681840 0.891042 0.637830 0.826296 0.566962 0.833299 0.515781 0.850787 0.486910 0.871794 0.461979 0.857789 0.438359 0.768553 0.271693 0.695058 0.257257 0.583079 0.284809 0.509583 0.356988 0.506088 0.430486 0.507836 0.501345 0.553333 0.576155 0.590069 0.622083 0.441343 0.649644 0.315359 0.799245 0.275116 0.854366 0.213866 0.919983 0.198125 0.994783 0.827894 1.000000 0.990833 1.000000 1.000000 0.792031 diff --git a/datasets/pinganmajia/val/labels/订单1814827_4_7184280.txt b/datasets/pinganmajia/val/labels/订单1814827_4_7184280.txt new file mode 100644 index 0000000..3d9c313 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814827_4_7184280.txt @@ -0,0 +1 @@ +4 0.716172 0.237520 0.628685 0.304453 0.611185 0.354326 0.600690 0.421250 0.612930 0.460625 0.633932 0.468496 0.644427 0.531484 0.639180 0.614160 0.619935 0.636475 0.630430 0.652227 0.658424 0.646973 0.682930 0.631221 0.696927 0.603662 0.709180 0.631221 0.714427 0.653535 0.752917 0.666660 0.751172 0.618105 0.759922 0.564297 0.789661 0.461934 0.801914 0.410752 0.817656 0.356943 0.850911 0.303145 0.863151 0.270332 0.838659 0.246709 0.819414 0.215215 0.801914 0.191592 0.786159 0.153535 0.745924 0.152227 0.717917 0.178467 0.712669 0.216523 diff --git a/datasets/pinganmajia/val/labels/订单1814829_4_7184203.txt b/datasets/pinganmajia/val/labels/订单1814829_4_7184203.txt new file mode 100644 index 0000000..b379644 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814829_4_7184203.txt @@ -0,0 +1 @@ +4 0.000000 0.400087 0.056359 0.338596 0.166603 0.174558 0.292590 0.162740 0.444821 0.217865 0.425564 0.362221 0.422064 0.410779 0.402821 0.454087 0.516551 0.542010 0.560295 0.602375 0.520051 0.640433 0.565551 0.783481 0.609295 0.887154 0.649744 1.000000 0.000372 1.000000 0.000000 0.873385 diff --git a/datasets/pinganmajia/val/labels/订单1814830_4_7184232.txt b/datasets/pinganmajia/val/labels/订单1814830_4_7184232.txt new file mode 100644 index 0000000..c46b129 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814830_4_7184232.txt @@ -0,0 +1 @@ +4 0.000000 0.470622 0.025633 0.464537 0.006429 0.434354 0.000000 0.330159 0.000000 0.290829 0.064075 0.241439 0.271948 0.213878 0.329610 0.261122 0.355812 0.349049 0.355812 0.409415 0.352321 0.461915 0.336591 0.523585 0.408214 0.578707 0.415211 0.608890 0.458880 0.622012 0.455390 0.658756 0.551461 0.804427 0.574172 0.877915 0.549724 0.913354 0.540990 0.931732 0.630081 0.988159 0.652792 0.999963 0.002922 0.998659 0.000000 0.851695 diff --git a/datasets/pinganmajia/val/labels/订单1814831_4_7184213.txt b/datasets/pinganmajia/val/labels/订单1814831_4_7184213.txt new file mode 100644 index 0000000..d6a940b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814831_4_7184213.txt @@ -0,0 +1 @@ +4 0.017990 0.455355 0.026732 0.433039 0.003987 0.418603 0.000490 0.211262 0.077484 0.160074 0.248954 0.158762 0.334690 0.195515 0.374935 0.279498 0.360948 0.341176 0.359199 0.376618 0.355703 0.434350 0.320703 0.480294 0.385441 0.524902 0.402941 0.578713 0.401193 0.648272 0.413431 0.737500 0.399444 0.769007 0.469428 0.902855 0.486928 0.955355 0.506176 0.988162 0.495670 0.998664 0.000000 0.994743 0.000000 0.917390 diff --git a/datasets/pinganmajia/val/labels/订单1814833_4_7184249.txt b/datasets/pinganmajia/val/labels/订单1814833_4_7184249.txt new file mode 100644 index 0000000..e0ddb72 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814833_4_7184249.txt @@ -0,0 +1 @@ +4 1.000000 0.689576 0.972526 0.682413 0.995271 0.644351 1.000000 0.624490 1.000000 0.530649 0.944521 0.440943 0.857036 0.416003 0.696055 0.423884 0.661061 0.455381 0.598074 0.481626 0.540323 0.522310 0.552572 0.555112 0.617313 0.555112 0.643564 0.607604 0.652318 0.657474 0.676805 0.711280 0.570069 0.748028 0.494833 0.811021 0.473841 0.871384 0.406874 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814834_4_7184342.txt b/datasets/pinganmajia/val/labels/订单1814834_4_7184342.txt new file mode 100644 index 0000000..f6960a9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814834_4_7184342.txt @@ -0,0 +1 @@ +4 0.997744 0.131250 0.887513 0.073510 0.710782 0.086625 0.602295 0.158808 0.542808 0.236240 0.525308 0.313663 0.548051 0.393712 0.586551 0.456712 0.649538 0.501327 0.679282 0.540702 0.637295 0.628625 0.593551 0.733615 0.614538 0.784788 0.570795 0.994769 1.000000 0.994769 1.000000 0.290212 diff --git a/datasets/pinganmajia/val/labels/订单1814835_4_7184497.txt b/datasets/pinganmajia/val/labels/订单1814835_4_7184497.txt new file mode 100644 index 0000000..0109c57 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814835_4_7184497.txt @@ -0,0 +1 @@ +4 0.000394 0.376675 0.065139 0.343872 0.100139 0.317622 0.082639 0.266441 0.068634 0.232318 0.086134 0.220512 0.082639 0.154896 0.100139 0.082717 0.136887 0.052526 0.198125 0.028906 0.310104 0.024974 0.401100 0.068281 0.427350 0.101085 0.427350 0.158828 0.429097 0.213950 0.443090 0.261189 0.437847 0.299245 0.388854 0.405547 0.462338 0.479036 0.493831 0.526285 0.527083 0.700825 0.553333 0.811059 0.584826 0.841241 0.542836 0.858307 0.562083 0.952795 0.550174 1.000000 0.000394 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814836_4_7184295.txt b/datasets/pinganmajia/val/labels/订单1814836_4_7184295.txt new file mode 100644 index 0000000..bf9f21c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814836_4_7184295.txt @@ -0,0 +1 @@ +4 0.009144 0.616829 0.115878 0.591896 0.121128 0.545967 0.107128 0.515779 0.096633 0.464600 0.115878 0.430479 0.131628 0.435729 0.161372 0.374050 0.276861 0.290058 0.434339 0.287433 0.523578 0.351737 0.551572 0.442292 0.553322 0.544654 0.516578 0.623392 0.647811 0.717879 0.695056 0.786121 0.714306 0.829429 0.738800 0.866175 0.773794 0.934417 0.789539 1.000000 0.779583 1.000000 0.000000 0.997425 0.000000 0.865400 diff --git a/datasets/pinganmajia/val/labels/订单1814837_4_7184694.txt b/datasets/pinganmajia/val/labels/订单1814837_4_7184694.txt new file mode 100644 index 0000000..589d053 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814837_4_7184694.txt @@ -0,0 +1 @@ +4 0.577795 0.359596 0.569051 0.375346 0.532308 0.402904 0.497308 0.461962 0.507808 0.510510 0.534051 0.523635 0.544551 0.572192 0.544551 0.681115 0.527051 0.711298 0.523551 0.728365 0.563795 0.713923 0.574295 0.681115 0.598795 0.616817 0.614538 0.536760 0.621538 0.607625 0.623295 0.675865 0.619795 0.709990 0.644295 0.732298 0.665282 0.734923 0.654795 0.686365 0.660038 0.618125 0.674038 0.526260 0.717782 0.490827 0.719526 0.427837 0.689782 0.384529 0.649538 0.366154 0.642538 0.343846 0.642538 0.317596 0.605795 0.312356 0.591795 0.332038 diff --git a/datasets/pinganmajia/val/labels/订单1814841_4_7184281.txt b/datasets/pinganmajia/val/labels/订单1814841_4_7184281.txt new file mode 100644 index 0000000..f9d1fad --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814841_4_7184281.txt @@ -0,0 +1 @@ +4 0.009119 0.450149 0.217348 0.430462 0.231345 0.400277 0.247093 0.366158 0.264593 0.375348 0.311837 0.270355 0.383570 0.230987 0.504309 0.234922 0.593551 0.300540 0.597045 0.387159 0.574299 0.473771 0.541051 0.536761 0.499062 0.584006 0.497311 0.639126 0.602301 0.698182 0.661790 0.871406 0.712538 0.992145 0.184811 1.000000 0.007377 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814844_4_7184392.txt b/datasets/pinganmajia/val/labels/订单1814844_4_7184392.txt new file mode 100644 index 0000000..3cf6bc2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814844_4_7184392.txt @@ -0,0 +1 @@ +4 0.996019 0.526285 0.938275 0.501345 0.936528 0.479036 0.948785 0.426545 0.919028 0.409488 0.933032 0.329436 0.880532 0.262500 0.863044 0.208698 0.737060 0.187700 0.591829 0.225755 0.507836 0.288750 0.509583 0.342552 0.528831 0.381927 0.546331 0.544653 0.439595 0.572214 0.469340 0.611589 0.460590 0.694262 0.390602 0.782188 0.406343 0.867491 0.371366 1.000000 0.388715 1.000000 1.000000 0.998733 1.000000 0.741007 diff --git a/datasets/pinganmajia/val/labels/订单1814845_4_7184409.txt b/datasets/pinganmajia/val/labels/订单1814845_4_7184409.txt new file mode 100644 index 0000000..299b26d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814845_4_7184409.txt @@ -0,0 +1 @@ +4 0.971522 0.297933 0.880533 0.279562 0.866533 0.262500 0.880533 0.228379 0.875283 0.195571 0.807044 0.165387 0.742300 0.195571 0.738800 0.271687 0.707306 0.308433 0.681061 0.328117 0.633817 0.451475 0.632067 0.585333 0.668811 0.632579 0.693306 0.753313 0.709056 0.841242 0.660061 0.881921 0.663561 0.910796 0.710806 0.921292 0.747550 0.893733 0.749300 0.843867 0.763300 0.741504 0.794794 0.661450 0.814044 0.748062 0.805294 0.853050 0.803544 0.898983 0.843789 0.946229 0.870033 0.937042 0.857789 0.876675 0.892783 0.763813 0.936528 0.620767 0.966272 0.591896 0.978522 0.635204 1.000000 0.645117 1.000000 0.584487 0.996017 0.392421 diff --git a/datasets/pinganmajia/val/labels/订单1814852_4_7184426.txt b/datasets/pinganmajia/val/labels/订单1814852_4_7184426.txt new file mode 100644 index 0000000..45cf6ce --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814852_4_7184426.txt @@ -0,0 +1 @@ +4 0.982124 0.023591 0.833382 0.028848 0.728399 0.095772 0.682908 0.179767 0.675899 0.270319 0.665408 0.387108 0.710899 0.501287 0.539428 0.548529 0.317206 0.683701 0.238464 0.812304 0.159722 0.992096 0.996111 0.999975 diff --git a/datasets/pinganmajia/val/labels/订单1814853_4_7184385.txt b/datasets/pinganmajia/val/labels/订单1814853_4_7184385.txt new file mode 100644 index 0000000..0f40073 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814853_4_7184385.txt @@ -0,0 +1 @@ +4 0.994618 0.645718 0.899149 0.563044 0.809583 0.496111 0.743637 0.438368 0.646198 0.367500 0.658012 0.288762 0.662925 0.225775 0.639306 0.106343 0.571398 0.049919 0.504462 0.069606 0.450330 0.154907 0.444427 0.248079 0.446398 0.320255 0.464115 0.355694 0.478872 0.405556 0.464115 0.458056 0.432613 0.534167 0.432613 0.685093 0.442457 0.788762 0.424740 0.956736 0.417856 1.000000 0.422769 1.000000 0.821398 0.996111 0.811554 0.888495 0.890295 0.956736 0.995964 1.000000 1.000000 1.000000 1.000000 0.889502 diff --git a/datasets/pinganmajia/val/labels/订单1814854_4_7184501.txt b/datasets/pinganmajia/val/labels/订单1814854_4_7184501.txt new file mode 100644 index 0000000..fd1665b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814854_4_7184501.txt @@ -0,0 +1 @@ +4 0.006622 0.518393 0.095348 0.475089 0.160415 0.454091 0.191957 0.398969 0.194921 0.270357 0.193933 0.194245 0.208720 0.101071 0.247171 0.073506 0.293500 0.081388 0.327024 0.073506 0.405890 0.136502 0.415750 0.209992 0.395049 0.408157 0.378287 0.464586 0.435463 0.531518 0.462085 0.639123 0.463067 0.682435 0.451238 0.759862 0.457152 0.849099 0.483768 1.000000 0.002695 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814858_4_7184533.txt b/datasets/pinganmajia/val/labels/订单1814858_4_7184533.txt new file mode 100644 index 0000000..0bf4838 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814858_4_7184533.txt @@ -0,0 +1 @@ +4 0.575329 0.346500 0.557612 0.372744 0.535958 0.438361 0.538913 0.473794 0.561550 0.477733 0.573358 0.544661 0.582217 0.641778 0.593046 0.738889 0.589108 0.779572 0.611746 0.794006 0.615683 0.769072 0.616667 0.723139 0.623554 0.658833 0.640288 0.727078 0.649146 0.761200 0.671783 0.792694 0.694421 0.801883 0.678675 0.770383 0.669817 0.716578 0.671783 0.643089 0.669817 0.547289 0.694421 0.485606 0.691471 0.413428 0.663913 0.367500 0.646196 0.347811 0.620604 0.337311 0.614700 0.288756 0.589108 0.279572 0.581233 0.297944 0.581233 0.321567 diff --git a/datasets/pinganmajia/val/labels/订单1814861_4_7184495.txt b/datasets/pinganmajia/val/labels/订单1814861_4_7184495.txt new file mode 100644 index 0000000..e96113c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814861_4_7184495.txt @@ -0,0 +1 @@ +4 0.996553 0.497370 0.923716 0.493431 0.864663 0.442253 0.889268 0.393691 0.903047 0.370072 0.902061 0.283457 0.910923 0.175846 0.882378 0.091855 0.810527 0.068236 0.698320 0.137786 0.682573 0.265085 0.676670 0.301829 0.665840 0.337266 0.665840 0.385820 0.685527 0.389759 0.688481 0.423880 0.698320 0.465872 0.575293 0.506556 0.532969 0.565612 0.482769 0.711283 0.443403 0.822826 0.425684 0.942253 0.439463 0.996055 0.860889 1.000000 1.000000 1.000000 1.000000 0.938906 diff --git a/datasets/pinganmajia/val/labels/订单1814867_4_7184659.txt b/datasets/pinganmajia/val/labels/订单1814867_4_7184659.txt new file mode 100644 index 0000000..932760d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814867_4_7184659.txt @@ -0,0 +1 @@ +4 0.001463 0.553788 0.042798 0.531477 0.114652 0.457983 0.102841 0.391051 0.084141 0.373996 0.075277 0.331998 0.054609 0.286070 0.044766 0.150900 0.051655 0.069536 0.070355 0.020975 0.266222 0.019659 0.317408 0.103655 0.345952 0.187642 0.355788 0.274261 0.354808 0.413362 0.464055 0.422547 0.534922 0.505227 0.584141 0.608902 0.619574 0.677140 0.677642 0.783447 0.692408 0.881866 0.703835 1.000000 0.178551 1.000000 0.000000 0.998674 0.000000 0.883797 diff --git a/datasets/pinganmajia/val/labels/订单1814869_4_7184558.txt b/datasets/pinganmajia/val/labels/订单1814869_4_7184558.txt new file mode 100644 index 0000000..fe2f408 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814869_4_7184558.txt @@ -0,0 +1 @@ +4 0.988687 0.649615 0.912904 0.570878 0.850894 0.510506 0.855812 0.442269 0.866639 0.366154 0.858769 0.282160 0.838096 0.164051 0.760341 0.110244 0.601880 0.145679 0.555620 0.228359 0.550697 0.318910 0.555620 0.434391 0.505423 0.448827 0.437510 0.582686 0.390264 0.692923 0.341053 0.803160 0.346957 0.859590 0.354832 0.879276 0.404043 0.841218 0.405029 0.867462 0.393216 0.916019 0.367625 0.929147 0.323337 0.955391 0.306601 0.988199 0.312505 1.000000 0.364702 1.000000 0.395183 0.989513 0.410933 0.993449 1.000000 0.998673 1.000000 0.936167 diff --git a/datasets/pinganmajia/val/labels/订单1814871_4_7184588.txt b/datasets/pinganmajia/val/labels/订单1814871_4_7184588.txt new file mode 100644 index 0000000..276494b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814871_4_7184588.txt @@ -0,0 +1 @@ +4 0.000530 0.465926 0.021198 0.450174 0.017257 0.398993 0.047769 0.284826 0.106832 0.164086 0.153090 0.148345 0.217066 0.186400 0.284974 0.258576 0.299740 0.329444 0.293837 0.406875 0.287925 0.467234 0.325330 0.500046 0.322378 0.570914 0.333203 0.685093 0.363715 0.855694 0.379314 1.000000 0.001502 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814872_4_7184539.txt b/datasets/pinganmajia/val/labels/订单1814872_4_7184539.txt new file mode 100644 index 0000000..f0c9ac0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814872_4_7184539.txt @@ -0,0 +1 @@ +4 0.271538 0.119479 0.242750 0.141786 0.211005 0.271709 0.196981 0.374068 0.195505 0.465940 0.201409 0.510556 0.213957 0.539427 0.215438 0.523675 0.219125 0.477744 0.238317 0.418692 0.235365 0.468564 0.238317 0.517120 0.243486 0.614231 0.254558 0.662786 0.255298 0.825513 0.259726 0.858325 0.247178 0.896385 0.231678 0.918692 0.240534 0.931812 0.281135 0.899009 0.291471 0.846513 0.292207 0.757274 0.297375 0.645726 0.302543 0.721838 0.301803 0.771709 0.298111 0.837325 0.296635 0.878009 0.295899 0.921316 0.291471 0.959376 0.313615 0.954128 0.322471 0.901632 0.331332 0.836017 0.337236 0.817641 0.350524 0.545991 0.374144 0.552547 0.377101 0.505308 0.399245 0.358325 0.390385 0.282205 0.380053 0.190342 0.347572 0.144410 0.326904 0.115538 0.325428 0.017120 0.272274 0.018427 0.266370 0.051239 0.267846 0.086675 diff --git a/datasets/pinganmajia/val/labels/订单1814873_4_7184792.txt b/datasets/pinganmajia/val/labels/订单1814873_4_7184792.txt new file mode 100644 index 0000000..3ca62c2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814873_4_7184792.txt @@ -0,0 +1 @@ +4 0.000000 0.478526 0.072253 0.451427 0.079249 0.427809 0.054753 0.405502 0.058251 0.356944 0.077500 0.337261 0.108992 0.250640 0.147490 0.208650 0.289218 0.181088 0.346965 0.208650 0.399455 0.263765 0.418704 0.304452 0.397706 0.379252 0.381965 0.436998 0.350463 0.493426 0.296224 0.540671 0.476451 0.608912 0.530689 0.729645 0.539444 0.807076 0.528940 0.881875 0.569187 0.996049 0.005761 0.999985 0.000000 0.571427 diff --git a/datasets/pinganmajia/val/labels/订单1814874_4_7184551.txt b/datasets/pinganmajia/val/labels/订单1814874_4_7184551.txt new file mode 100644 index 0000000..e91ac65 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814874_4_7184551.txt @@ -0,0 +1 @@ +4 1.000000 0.276875 0.910256 0.196865 0.784269 0.182433 0.710782 0.192933 0.604038 0.326788 0.583051 0.408154 0.637295 0.482952 0.707282 0.540702 0.679282 0.578760 0.514808 0.746731 0.528808 0.843846 0.500808 0.996077 0.750923 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814875_4_7184599.txt b/datasets/pinganmajia/val/labels/订单1814875_4_7184599.txt new file mode 100644 index 0000000..68cfd12 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814875_4_7184599.txt @@ -0,0 +1 @@ +4 0.008403 0.173275 0.035964 0.165405 0.089115 0.196898 0.147179 0.238889 0.222969 0.238889 0.235764 0.252014 0.254462 0.241516 0.272179 0.192963 0.282023 0.136528 0.292847 0.136528 0.336155 0.063044 0.383403 0.028924 0.479861 0.032859 0.520217 0.089282 0.534974 0.178530 0.530052 0.259896 0.484783 0.339942 0.452300 0.381933 0.420807 0.434433 0.428681 0.498738 0.403090 0.624722 0.408993 0.665405 0.425729 0.692963 0.404071 0.732326 0.378481 0.877998 0.358793 0.997419 0.000530 0.998738 diff --git a/datasets/pinganmajia/val/labels/订单1814876_4_7184587.txt b/datasets/pinganmajia/val/labels/订单1814876_4_7184587.txt new file mode 100644 index 0000000..f5e6eec --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814876_4_7184587.txt @@ -0,0 +1 @@ +4 0.000406 0.410805 0.033656 0.371437 0.077406 0.349125 0.077406 0.320258 0.056406 0.295320 0.051156 0.245453 0.066906 0.210016 0.051156 0.115531 0.091396 0.055164 0.213885 0.040727 0.394115 0.065664 0.467604 0.126031 0.490354 0.187711 0.476354 0.242828 0.453604 0.322883 0.457104 0.368812 0.390615 0.451492 0.404615 0.497422 0.474604 0.573539 0.518344 0.675898 0.523594 0.763828 0.520094 0.859625 0.497344 0.914742 0.456167 1.000000 0.000000 1.000000 0.000000 0.433875 diff --git a/datasets/pinganmajia/val/labels/订单1814877_4_7184818.txt b/datasets/pinganmajia/val/labels/订单1814877_4_7184818.txt new file mode 100644 index 0000000..23b7304 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814877_4_7184818.txt @@ -0,0 +1 @@ +4 0.993786 0.191554 0.932611 0.150872 0.798622 0.081315 0.603449 0.103628 0.393719 0.165308 0.320896 0.245360 0.297592 0.334596 0.315077 0.429084 0.437418 0.594440 0.175250 0.674492 0.073304 0.750608 0.058738 0.795230 0.003391 0.894965 0.003391 1.000000 1.000000 1.000000 1.000000 0.480343 diff --git a/datasets/pinganmajia/val/labels/订单1814878_4_7184705.txt b/datasets/pinganmajia/val/labels/订单1814878_4_7184705.txt new file mode 100644 index 0000000..f726489 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814878_4_7184705.txt @@ -0,0 +1 @@ +4 0.000000 0.627320 0.055801 0.627320 0.037426 0.601078 0.050547 0.543333 0.091234 0.481650 0.067614 0.423913 0.074175 0.381920 0.095172 0.384542 0.121413 0.290049 0.171283 0.234935 0.247402 0.208685 0.404886 0.248056 0.423252 0.329420 0.445564 0.437034 0.441626 0.492149 0.410131 0.581389 0.473121 0.628636 0.424567 0.761185 0.458685 0.834673 0.498766 1.000000 0.070686 1.000000 0.000686 0.998717 0.000000 0.950433 diff --git a/datasets/pinganmajia/val/labels/订单1814881_4_7184712.txt b/datasets/pinganmajia/val/labels/订单1814881_4_7184712.txt new file mode 100644 index 0000000..78d900e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814881_4_7184712.txt @@ -0,0 +1 @@ +4 0.994580 0.480306 0.944385 0.473750 0.942417 0.433066 0.924702 0.402884 0.893203 0.389759 0.873521 0.346452 0.848911 0.283457 0.849897 0.215215 0.831196 0.194219 0.804619 0.059049 0.723911 0.020990 0.661904 0.039362 0.590054 0.141725 0.599897 0.301829 0.605801 0.339889 0.568403 0.467188 0.581196 0.502617 0.509346 0.573483 0.470962 0.727025 0.426670 0.841204 0.421748 0.947500 0.433560 0.998678 1.000000 0.999987 1.000000 0.798158 diff --git a/datasets/pinganmajia/val/labels/订单1814882_4_7184657.txt b/datasets/pinganmajia/val/labels/订单1814882_4_7184657.txt new file mode 100644 index 0000000..d11a9fe --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814882_4_7184657.txt @@ -0,0 +1 @@ +4 1.000000 0.727511 0.903304 0.661469 0.763319 0.593224 0.791316 0.538114 0.829810 0.498739 0.845570 0.435746 0.861316 0.343882 0.808816 0.249397 0.663582 0.169342 0.562105 0.185088 0.457120 0.283520 0.409868 0.384561 0.397617 0.479057 0.415117 0.574857 0.229635 0.623410 0.114152 0.752018 0.049415 0.910811 0.023567 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814883_4_7184702.txt b/datasets/pinganmajia/val/labels/订单1814883_4_7184702.txt new file mode 100644 index 0000000..22055e2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814883_4_7184702.txt @@ -0,0 +1 @@ +4 0.000000 0.446033 0.040648 0.396363 0.021400 0.366181 0.016146 0.320243 0.030139 0.313681 0.023148 0.227066 0.038889 0.165391 0.147384 0.115521 0.290856 0.147014 0.353854 0.216571 0.359109 0.284809 0.357350 0.353056 0.364352 0.388490 0.338102 0.446233 0.406343 0.540720 0.446597 0.611589 0.476343 0.702135 0.495590 0.788750 0.478090 0.839931 0.451840 0.887179 0.462338 0.919983 0.422095 0.971163 0.423843 0.990851 0.057824 1.000000 0.003877 1.000000 0.000000 0.798186 diff --git a/datasets/pinganmajia/val/labels/订单1814885_4_7184732.txt b/datasets/pinganmajia/val/labels/订单1814885_4_7184732.txt new file mode 100644 index 0000000..61aefc3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814885_4_7184732.txt @@ -0,0 +1 @@ +4 0.380117 0.312390 0.338129 0.290077 0.348626 0.271711 0.343377 0.234956 0.311886 0.219211 0.285629 0.248081 0.289137 0.284825 0.233143 0.303202 0.199898 0.360943 0.159649 0.471184 0.175395 0.505307 0.199898 0.511864 0.205146 0.469868 0.227895 0.409507 0.243640 0.460680 0.255892 0.563048 0.266389 0.640471 0.266389 0.674594 0.245395 0.695592 0.266389 0.699529 0.322383 0.661469 0.320629 0.685088 0.352120 0.699529 0.345132 0.648344 0.359123 0.574857 0.380117 0.464616 0.404620 0.447555 0.402865 0.363575 0.397617 0.325515 diff --git a/datasets/pinganmajia/val/labels/订单1814889_4_7185127.txt b/datasets/pinganmajia/val/labels/订单1814889_4_7185127.txt new file mode 100644 index 0000000..ca30fc1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814889_4_7185127.txt @@ -0,0 +1 @@ +4 0.684561 0.305808 0.635567 0.341242 0.621567 0.367488 0.639067 0.377987 0.644311 0.430479 0.667061 0.480346 0.644311 0.547275 0.632067 0.582708 0.674061 0.565650 0.679311 0.528904 0.691556 0.492158 0.703806 0.464600 0.710806 0.509221 0.723056 0.556462 0.726556 0.580083 0.745800 0.587958 0.747550 0.549900 0.747550 0.498721 0.763300 0.446229 0.777294 0.419979 0.814044 0.356988 0.775544 0.317617 0.744050 0.304496 0.733550 0.271687 0.712556 0.255937 0.696806 0.278250 0.693306 0.297933 diff --git a/datasets/pinganmajia/val/labels/订单1814894_4_7184901.txt b/datasets/pinganmajia/val/labels/订单1814894_4_7184901.txt new file mode 100644 index 0000000..186b0b9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814894_4_7184901.txt @@ -0,0 +1 @@ +4 0.987244 0.202115 0.814013 0.217865 0.689782 0.400279 0.684538 0.497394 0.733526 0.557760 0.758026 0.615500 0.658282 0.792663 0.632038 0.910779 0.575962 1.000000 1.000000 1.000000 1.000000 0.687529 diff --git a/datasets/pinganmajia/val/labels/订单1814895_4_7184872.txt b/datasets/pinganmajia/val/labels/订单1814895_4_7184872.txt new file mode 100644 index 0000000..268961f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814895_4_7184872.txt @@ -0,0 +1 @@ +4 0.007412 0.454111 0.034975 0.402933 0.069421 0.316317 0.055642 0.270383 0.061550 0.234950 0.046783 0.149650 0.035958 0.015789 0.259383 0.021039 0.288913 0.119467 0.301704 0.225767 0.319421 0.231017 0.315483 0.279572 0.305642 0.338628 0.283988 0.414739 0.325329 0.476422 0.371587 0.513167 0.391271 0.552539 0.406037 0.633900 0.429658 0.881933 0.438517 0.954111 0.438517 0.984294 0.001508 0.994794 diff --git a/datasets/pinganmajia/val/labels/订单1814896_4_7184915.txt b/datasets/pinganmajia/val/labels/订单1814896_4_7184915.txt new file mode 100644 index 0000000..5104f95 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814896_4_7184915.txt @@ -0,0 +1 @@ +4 0.992618 0.517060 0.930610 0.505249 0.892224 0.456693 0.834154 0.459318 0.812500 0.446194 0.818406 0.363517 0.812500 0.284777 0.786909 0.200787 0.735728 0.137795 0.651083 0.166667 0.617618 0.255906 0.614665 0.347769 0.628445 0.423885 0.658957 0.493438 0.626476 0.460630 0.635335 0.490814 0.605807 0.527559 0.551673 0.590551 0.509350 0.688976 0.466043 0.809711 0.464075 0.900262 0.477854 0.997375 0.737697 1.000000 0.997515 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814898_4_7184917.txt b/datasets/pinganmajia/val/labels/订单1814898_4_7184917.txt new file mode 100644 index 0000000..7e99308 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814898_4_7184917.txt @@ -0,0 +1 @@ +4 0.289232 0.334639 0.210482 0.353008 0.168490 0.463242 0.171992 0.585293 0.192995 0.603662 0.226237 0.635166 0.222734 0.607598 0.227982 0.548545 0.245482 0.599727 0.266484 0.650908 0.289232 0.729648 0.310221 0.824141 0.310221 0.876631 0.332969 0.880566 0.350469 0.834639 0.345221 0.778203 0.359219 0.682402 0.383711 0.745400 0.395964 0.808389 0.408216 0.843818 0.460703 0.881885 0.469453 0.863506 0.450208 0.814951 0.430964 0.733584 0.436211 0.610225 0.478203 0.569541 0.486953 0.484238 0.451953 0.388437 0.415208 0.349072 0.378464 0.329385 0.390716 0.296582 0.360964 0.250645 0.311979 0.251963 0.297982 0.291328 0.297982 0.311016 diff --git a/datasets/pinganmajia/val/labels/订单1814899_4_7184987.txt b/datasets/pinganmajia/val/labels/订单1814899_4_7184987.txt new file mode 100644 index 0000000..338164a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814899_4_7184987.txt @@ -0,0 +1 @@ +4 0.009115 0.540702 0.117603 0.484269 0.072115 0.422587 0.056359 0.371404 0.056359 0.309731 0.072115 0.196865 0.168346 0.128625 0.301333 0.124683 0.432564 0.194240 0.460564 0.274298 0.469308 0.379279 0.467564 0.454087 0.453564 0.509202 0.506051 0.544635 0.598795 0.626000 0.614538 0.675865 0.654795 0.741481 0.674038 0.803163 0.695038 0.866154 0.667038 0.913404 0.618038 0.959337 0.574295 0.997394 0.002115 0.997394 diff --git a/datasets/pinganmajia/val/labels/订单1814901_4_7184969.txt b/datasets/pinganmajia/val/labels/订单1814901_4_7184969.txt new file mode 100644 index 0000000..43a2ccf --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814901_4_7184969.txt @@ -0,0 +1 @@ +4 0.001510 0.489549 0.038915 0.459363 0.058602 0.421308 0.046788 0.354375 0.022179 0.333380 0.014306 0.299259 0.000000 0.243299 0.000000 0.238322 0.003481 0.213958 0.021198 0.203461 0.001510 0.148345 0.000530 0.019734 0.238715 0.023669 0.294818 0.099780 0.296788 0.202153 0.304661 0.303194 0.296788 0.405556 0.372578 0.448866 0.408993 0.551227 0.457222 0.724456 0.485764 0.870127 0.492656 0.946238 0.498559 0.994803 0.000000 0.994803 0.000000 0.877708 diff --git a/datasets/pinganmajia/val/labels/订单1814902_4_7185028.txt b/datasets/pinganmajia/val/labels/订单1814902_4_7185028.txt new file mode 100644 index 0000000..9612be0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814902_4_7185028.txt @@ -0,0 +1 @@ +4 0.998534 0.566942 0.944399 0.528885 0.898139 0.513135 0.901091 0.442269 0.905029 0.362218 0.914870 0.261167 0.886327 0.119436 0.830226 0.072186 0.723923 0.073500 0.635341 0.154865 0.601880 0.283474 0.606798 0.392397 0.624514 0.473763 0.643216 0.538071 0.543808 0.608936 0.478846 0.706045 0.422745 0.834654 0.408966 0.870090 0.355909 1.000000 0.613726 1.000000 0.999514 0.996071 diff --git a/datasets/pinganmajia/val/labels/订单1814903_4_7184961.txt b/datasets/pinganmajia/val/labels/订单1814903_4_7184961.txt new file mode 100644 index 0000000..08475e2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814903_4_7184961.txt @@ -0,0 +1 @@ +4 0.008055 0.166684 0.095446 0.085318 0.237014 0.035447 0.357609 0.089253 0.448501 0.153557 0.462483 0.295292 0.453741 0.410773 0.432769 0.463265 0.499188 0.545945 0.560355 0.603686 0.618032 0.713926 0.642506 0.828101 0.581327 0.853033 0.563856 0.913402 0.570847 1.000000 0.000000 1.000000 0.000000 0.936246 diff --git a/datasets/pinganmajia/val/labels/订单1814904_4_7185036.txt b/datasets/pinganmajia/val/labels/订单1814904_4_7185036.txt new file mode 100644 index 0000000..b6a011e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814904_4_7185036.txt @@ -0,0 +1 @@ +4 0.632188 0.240146 0.616432 0.261143 0.553438 0.292646 0.532448 0.405498 0.534193 0.481621 0.548190 0.523613 0.574440 0.532803 0.598932 0.627285 0.605938 0.695527 0.604193 0.744082 0.625182 0.765078 0.642682 0.724404 0.646185 0.686338 0.644427 0.628604 0.663685 0.589229 0.660182 0.650908 0.661927 0.700781 0.677682 0.734902 0.709180 0.754580 0.712669 0.725713 0.705677 0.667969 0.721419 0.628604 0.747669 0.496055 0.756419 0.464561 0.763411 0.430439 0.779167 0.481621 0.775664 0.522305 0.798411 0.520986 0.817656 0.478994 0.817656 0.398945 0.800156 0.288701 0.756419 0.263770 0.710924 0.242773 0.723177 0.204717 0.714427 0.160098 0.660182 0.154844 0.635677 0.183721 0.633932 0.221777 diff --git a/datasets/pinganmajia/val/labels/订单1814905_4_7185073.txt b/datasets/pinganmajia/val/labels/订单1814905_4_7185073.txt new file mode 100644 index 0000000..7e177f7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814905_4_7185073.txt @@ -0,0 +1 @@ +4 0.002239 0.229632 0.045980 0.237500 0.093235 0.202071 0.108971 0.204694 0.166716 0.153517 0.315458 0.119400 0.453676 0.173199 0.486928 0.255882 0.469428 0.304436 0.429183 0.351679 0.378448 0.419926 0.341699 0.456667 0.408186 0.513100 0.285703 0.616777 0.261209 0.665331 0.348693 0.837243 0.395948 0.897610 0.388938 0.996042 0.154281 1.000000 0.000490 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814906_4_7185035.txt b/datasets/pinganmajia/val/labels/订单1814906_4_7185035.txt new file mode 100644 index 0000000..dc873d3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814906_4_7185035.txt @@ -0,0 +1 @@ +4 0.000000 0.410428 0.041866 0.375370 0.044818 0.307130 0.071398 0.189028 0.117656 0.094537 0.161944 0.042037 0.222969 0.059109 0.308602 0.135220 0.329271 0.182465 0.336155 0.300567 0.327300 0.392442 0.353872 0.418681 0.346988 0.517106 0.374540 0.576169 0.393247 0.734954 0.426710 0.931806 0.442457 0.969861 0.443437 0.990856 0.000000 0.996111 diff --git a/datasets/pinganmajia/val/labels/订单1814907_4_7185062.txt b/datasets/pinganmajia/val/labels/订单1814907_4_7185062.txt new file mode 100644 index 0000000..362e438 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814907_4_7185062.txt @@ -0,0 +1 @@ +4 0.741654 0.022337 0.707206 0.199502 0.697365 0.249371 0.701299 0.316299 0.699332 0.351732 0.647163 0.465907 0.649136 0.496087 0.596967 0.507900 0.532990 0.593203 0.464093 0.744118 0.442439 0.809739 0.429645 0.860915 0.409963 0.895041 0.419804 0.942279 0.425711 0.998717 0.707371 1.000000 1.000000 1.000000 1.000000 0.019730 diff --git a/datasets/pinganmajia/val/labels/订单1814909_4_7185042.txt b/datasets/pinganmajia/val/labels/订单1814909_4_7185042.txt new file mode 100644 index 0000000..93b1548 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814909_4_7185042.txt @@ -0,0 +1 @@ +4 0.007484 0.499975 0.065229 0.463223 0.052990 0.401544 0.028480 0.339865 0.017990 0.251936 0.079232 0.171887 0.199967 0.144326 0.352190 0.209951 0.374935 0.296556 0.369690 0.370049 0.341699 0.429105 0.299706 0.488162 0.352190 0.494718 0.427435 0.578713 0.455425 0.658762 0.479935 0.787377 0.509673 0.913358 0.513170 0.996042 0.000000 0.998652 -0.000000 0.926801 diff --git a/datasets/pinganmajia/val/labels/订单1814910_4_7185122.txt b/datasets/pinganmajia/val/labels/订单1814910_4_7185122.txt new file mode 100644 index 0000000..bd19039 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814910_4_7185122.txt @@ -0,0 +1 @@ +4 0.019766 0.442246 0.042513 0.408125 0.077500 0.406816 0.073997 0.372695 0.039010 0.351699 0.025013 0.308389 0.032005 0.261143 0.042513 0.195527 0.108997 0.152227 0.226237 0.154844 0.332969 0.227021 0.343464 0.305762 0.345221 0.346445 0.322474 0.438311 0.390716 0.454062 0.497448 0.527549 0.546445 0.610225 0.642682 0.732275 0.735417 0.828076 0.765169 0.851699 0.801914 0.901563 0.805417 0.944873 0.779167 0.940937 0.766914 0.947500 0.745924 0.950117 0.773919 0.992119 0.105495 0.999990 0.049505 0.914687 0.011016 0.992119 diff --git a/datasets/pinganmajia/val/labels/订单1814913_4_7185299.txt b/datasets/pinganmajia/val/labels/订单1814913_4_7185299.txt new file mode 100644 index 0000000..a5ac6cb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814913_4_7185299.txt @@ -0,0 +1 @@ +4 0.004675 0.560329 0.057078 0.560329 0.048344 0.531463 0.050097 0.489463 0.057078 0.447476 0.071055 0.379232 0.123458 0.333305 0.263214 0.329366 0.352321 0.381854 0.385503 0.475037 0.373279 0.539341 0.350568 0.589207 0.395990 0.599707 0.443149 0.694195 0.451883 0.792622 0.518279 0.996037 0.296364 1.000000 0.004675 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814914_4_7185059.txt b/datasets/pinganmajia/val/labels/订单1814914_4_7185059.txt new file mode 100644 index 0000000..b380b39 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814914_4_7185059.txt @@ -0,0 +1 @@ +4 0.012842 0.044608 0.065505 0.022298 0.483907 0.022298 0.568757 0.104975 0.539495 0.182402 0.507309 0.275576 0.466352 0.362194 0.524863 0.363505 0.504385 0.391060 0.589235 0.463241 0.592158 0.536734 0.603866 0.590539 0.589235 0.656152 0.618497 0.733585 0.650683 0.801826 0.674085 0.858254 0.624344 0.905496 0.688716 0.984240 0.621421 0.996048 0.403743 1.000000 0.106557 1.000000 0.004071 0.938309 diff --git a/datasets/pinganmajia/val/labels/订单1814915_4_7185110.txt b/datasets/pinganmajia/val/labels/订单1814915_4_7185110.txt new file mode 100644 index 0000000..3eeb9e8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814915_4_7185110.txt @@ -0,0 +1 @@ +4 0.990877 0.278168 0.923873 0.228299 0.868526 0.178429 0.714143 0.152183 0.451985 0.175807 0.326724 0.280794 0.306339 0.396276 0.306339 0.484206 0.376243 0.607565 0.093690 0.713863 0.000000 0.963281 0.000000 0.975477 0.010472 1.000000 0.982148 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814916_4_7185138.txt b/datasets/pinganmajia/val/labels/订单1814916_4_7185138.txt new file mode 100644 index 0000000..5d769a0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814916_4_7185138.txt @@ -0,0 +1 @@ +4 0.623317 0.286121 0.567322 0.317617 0.562072 0.355675 0.527078 0.422604 0.553322 0.458037 0.577822 0.510533 0.602317 0.548588 0.612817 0.616829 0.619817 0.710008 0.602317 0.757250 0.600567 0.771687 0.640811 0.758563 0.654811 0.734942 0.656561 0.706071 0.667061 0.662763 0.679311 0.589271 0.688056 0.648325 0.686306 0.706071 0.689806 0.733629 0.668811 0.784808 0.698556 0.791371 0.717806 0.755938 0.733550 0.721817 0.751050 0.660137 0.766800 0.549900 0.780794 0.574838 0.808794 0.557775 0.821039 0.511846 0.815794 0.412108 0.780794 0.339929 0.726556 0.307121 0.695056 0.224442 0.658311 0.225754 0.628567 0.254625 diff --git a/datasets/pinganmajia/val/labels/订单1814918_4_7185082.txt b/datasets/pinganmajia/val/labels/订单1814918_4_7185082.txt new file mode 100644 index 0000000..e67eabb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814918_4_7185082.txt @@ -0,0 +1 @@ +4 0.000000 0.533578 0.052990 0.511789 0.091471 0.457978 0.072222 0.401544 0.051225 0.339865 0.063480 0.310993 0.045980 0.191569 0.108971 0.122022 0.254199 0.115453 0.353938 0.167953 0.388938 0.271630 0.406438 0.349056 0.406438 0.391054 0.369690 0.480294 0.458938 0.530159 0.528922 0.583958 0.586667 0.698137 0.658399 0.698137 0.707402 0.736189 0.679412 0.793934 0.702157 0.847745 0.786144 0.918603 0.814134 0.984228 0.798709 1.000000 0.401275 1.000000 0.002239 0.996042 0.000000 0.700502 diff --git a/datasets/pinganmajia/val/labels/订单1814919_4_7185063.txt b/datasets/pinganmajia/val/labels/订单1814919_4_7185063.txt new file mode 100644 index 0000000..f10da75 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814919_4_7185063.txt @@ -0,0 +1 @@ +4 0.007484 0.225699 0.138725 0.237500 0.206961 0.299191 0.250703 0.364804 0.278709 0.450110 0.292696 0.532782 0.310196 0.557721 0.478186 0.649583 0.520180 0.703382 0.623415 0.797868 0.730147 0.913358 0.766895 0.960600 0.803644 0.998664 0.005735 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1814920_4_7185161.txt b/datasets/pinganmajia/val/labels/订单1814920_4_7185161.txt new file mode 100644 index 0000000..d15d993 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814920_4_7185161.txt @@ -0,0 +1 @@ +4 0.000504 0.557731 0.065247 0.520988 0.058251 0.461929 0.053004 0.356944 0.037253 0.311011 0.086245 0.224398 0.187737 0.175841 0.294475 0.177153 0.402953 0.224398 0.458951 0.300509 0.444949 0.388441 0.423951 0.471119 0.402953 0.539360 0.509691 0.591852 0.579681 0.653534 0.632181 0.746705 0.661924 0.843819 0.687953 1.000000 0.461163 1.000000 0.000504 0.997361 diff --git a/datasets/pinganmajia/val/labels/订单1814922_4_7185168.txt b/datasets/pinganmajia/val/labels/订单1814922_4_7185168.txt new file mode 100644 index 0000000..50369b9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814922_4_7185168.txt @@ -0,0 +1 @@ +4 0.292606 0.354363 0.271611 0.380608 0.233117 0.427854 0.222617 0.490846 0.231367 0.542029 0.248861 0.569588 0.269861 0.574838 0.269861 0.648325 0.268111 0.694258 0.280361 0.715254 0.241861 0.748062 0.261111 0.758563 0.297856 0.734942 0.318856 0.694258 0.339850 0.587958 0.359100 0.629954 0.360850 0.682446 0.373100 0.696883 0.374844 0.720504 0.408094 0.748062 0.422089 0.731004 0.404594 0.687696 0.404594 0.636517 0.404594 0.563025 0.425589 0.555150 0.448339 0.522342 0.450089 0.440979 0.436089 0.402921 0.392344 0.376675 0.360850 0.347800 0.345100 0.307121 0.304856 0.311058 0.292606 0.334679 diff --git a/datasets/pinganmajia/val/labels/订单1814925_4_7185394.txt b/datasets/pinganmajia/val/labels/订单1814925_4_7185394.txt new file mode 100644 index 0000000..a1fa709 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814925_4_7185394.txt @@ -0,0 +1 @@ +4 1.000000 0.419496 0.960162 0.392418 0.923742 0.345175 0.907994 0.267747 0.902091 0.207377 0.896181 0.178508 0.913897 0.021029 0.670787 0.021029 0.653071 0.094516 0.647168 0.177191 0.636343 0.238868 0.638310 0.283488 0.590077 0.342551 0.598935 0.412099 0.523148 0.515772 0.483781 0.729681 0.455239 0.950154 0.446381 0.997407 1.000000 0.998704 diff --git a/datasets/pinganmajia/val/labels/订单1814928_4_7185355.txt b/datasets/pinganmajia/val/labels/订单1814928_4_7185355.txt new file mode 100644 index 0000000..ca56962 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814928_4_7185355.txt @@ -0,0 +1 @@ +4 0.987269 0.217882 0.852546 0.185078 0.759803 0.207387 0.684560 0.334679 0.681065 0.414731 0.698565 0.502665 0.721308 0.557778 0.595324 0.599774 0.420347 0.820243 0.455336 1.000000 1.000000 1.000000 1.000000 0.928924 diff --git a/datasets/pinganmajia/val/labels/订单1814931_4_7185253.txt b/datasets/pinganmajia/val/labels/订单1814931_4_7185253.txt new file mode 100644 index 0000000..6712f2d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814931_4_7185253.txt @@ -0,0 +1 @@ +4 0.276979 0.356943 0.220990 0.384502 0.194740 0.461934 0.185990 0.543301 0.212240 0.604980 0.234987 0.619414 0.250729 0.699463 0.245482 0.765078 0.257734 0.805762 0.245482 0.843818 0.276979 0.853008 0.301471 0.808389 0.306719 0.763770 0.308477 0.725713 0.331224 0.625977 0.348724 0.727021 0.350469 0.776895 0.367969 0.809697 0.409961 0.832012 0.399466 0.793955 0.408216 0.733584 0.415208 0.657471 0.423958 0.585293 0.467708 0.543301 0.472956 0.459307 0.436211 0.384502 0.373216 0.353008 0.364466 0.299199 0.318971 0.287393 0.287474 0.307080 0.287474 0.332012 diff --git a/datasets/pinganmajia/val/labels/订单1814932_4_7185252.txt b/datasets/pinganmajia/val/labels/订单1814932_4_7185252.txt new file mode 100644 index 0000000..5613faf --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814932_4_7185252.txt @@ -0,0 +1 @@ +4 0.002239 0.628578 0.100229 0.586593 0.140474 0.524902 0.140474 0.497353 0.108971 0.476348 0.107222 0.402855 0.087974 0.345123 0.108971 0.262439 0.243709 0.216507 0.374935 0.233566 0.441438 0.290000 0.444935 0.364804 0.446683 0.421238 0.448431 0.486850 0.434428 0.544596 0.488676 0.578713 0.612908 0.635147 0.677647 0.737500 0.758137 0.797868 0.782647 0.850368 0.787892 0.897610 0.772141 0.948787 0.751144 0.992096 0.002239 0.997353 diff --git a/datasets/pinganmajia/val/labels/订单1814933_4_7185214.txt b/datasets/pinganmajia/val/labels/订单1814933_4_7185214.txt new file mode 100644 index 0000000..3e56db0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814933_4_7185214.txt @@ -0,0 +1 @@ +4 0.011327 0.095808 0.125500 0.110244 0.167822 0.148301 0.219990 0.166679 0.258375 0.157494 0.277077 0.122058 0.297745 0.080064 0.308572 0.103686 0.349909 0.023635 0.480813 0.021006 0.510341 0.094500 0.514279 0.167987 0.482784 0.258538 0.444399 0.318910 0.427663 0.362218 0.405029 0.419955 0.429635 0.497385 0.387313 0.593186 0.350894 0.724417 0.254899 1.000000 0.183769 1.000000 0.192428 0.942269 0.158966 0.992135 0.000500 0.997385 diff --git a/datasets/pinganmajia/val/labels/订单1814934_4_7185256.txt b/datasets/pinganmajia/val/labels/订单1814934_4_7185256.txt new file mode 100644 index 0000000..f4352f1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814934_4_7185256.txt @@ -0,0 +1 @@ +4 -0.000000 0.448022 0.061772 0.473750 0.075761 0.431762 0.065262 0.408140 0.081010 0.351703 0.091509 0.275591 0.123005 0.203415 0.177257 0.187667 0.301483 0.207352 0.388806 0.258533 0.402979 0.312333 0.402979 0.381890 0.387231 0.437008 0.362559 0.500000 0.355735 0.536742 0.418727 0.611545 0.467546 0.698159 0.469462 0.809715 0.511457 0.870079 0.507966 0.908140 0.532113 1.000000 0.267362 1.000000 0.002270 0.998691 0.000000 0.640453 diff --git a/datasets/pinganmajia/val/labels/订单1814935_4_7185377.txt b/datasets/pinganmajia/val/labels/订单1814935_4_7185377.txt new file mode 100644 index 0000000..861de28 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814935_4_7185377.txt @@ -0,0 +1 @@ +4 0.002500 0.093218 0.022179 0.110289 0.030052 0.018426 0.317457 0.021042 0.334193 0.086667 0.313524 0.177211 0.303681 0.244144 0.261354 0.333380 0.296788 0.371435 0.269227 0.447558 0.315486 0.598472 0.335174 0.706088 0.356832 0.775637 0.392257 0.859630 0.404071 0.929178 0.382422 0.994803 0.001510 0.997419 0.001510 0.284826 0.020217 0.257269 0.003481 0.211331 diff --git a/datasets/pinganmajia/val/labels/订单1814936_4_7185449.txt b/datasets/pinganmajia/val/labels/订单1814936_4_7185449.txt new file mode 100644 index 0000000..dc1af76 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814936_4_7185449.txt @@ -0,0 +1 @@ +4 0.002239 0.352990 0.115980 0.280809 0.073987 0.224387 0.047729 0.158762 0.072222 0.141703 0.098480 0.035404 0.103725 0.023591 0.493922 0.026225 0.513170 0.081336 0.492173 0.181078 0.467680 0.228321 0.446683 0.275564 0.381944 0.367426 0.437941 0.465858 0.455425 0.511789 0.444935 0.610208 0.430931 0.745380 0.444935 0.835931 0.450180 0.906801 0.465931 0.999975 0.003987 0.994718 diff --git a/datasets/pinganmajia/val/labels/订单1814937_4_7185345.txt b/datasets/pinganmajia/val/labels/订单1814937_4_7185345.txt new file mode 100644 index 0000000..27ae7df --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814937_4_7185345.txt @@ -0,0 +1 @@ +4 -0.000000 0.638428 0.036942 0.610278 0.058596 0.578783 0.000525 0.459361 0.000000 0.429278 0.000000 0.116406 0.057613 0.069600 0.158004 0.099783 0.262338 0.185083 0.274146 0.296633 0.288913 0.401617 0.278083 0.505294 0.352887 0.568283 0.445408 0.610278 0.497571 0.710017 0.538913 0.851750 0.563517 0.927867 0.589146 1.000000 0.290429 1.000000 0.000525 0.997417 0.000000 0.959500 diff --git a/datasets/pinganmajia/val/labels/订单1814942_4_7185456.txt b/datasets/pinganmajia/val/labels/订单1814942_4_7185456.txt new file mode 100644 index 0000000..6530edc --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814942_4_7185456.txt @@ -0,0 +1 @@ +4 0.994272 0.095833 0.833289 0.098458 0.667061 0.153575 0.675811 0.274313 0.653061 0.351737 0.651311 0.427854 0.681061 0.482971 0.572572 0.595833 0.476333 0.754625 0.443089 0.821554 0.205117 0.998721 1.000000 0.997408 1.000000 0.833975 diff --git a/datasets/pinganmajia/val/labels/订单1814943_4_7185351.txt b/datasets/pinganmajia/val/labels/订单1814943_4_7185351.txt new file mode 100644 index 0000000..7ed99dd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814943_4_7185351.txt @@ -0,0 +1 @@ +4 0.003462 0.244118 0.122561 0.259869 0.207206 0.269052 0.231814 0.175882 0.241654 0.124698 0.288897 0.021021 0.422757 0.018399 0.476887 0.098448 0.475907 0.223121 0.459173 0.283489 0.435551 0.388480 0.418817 0.444910 0.461140 0.493464 0.470987 0.602386 0.481814 0.661446 0.532010 0.826797 0.532010 0.964592 0.418817 0.967214 0.278070 0.952786 0.227874 0.993464 0.004449 0.994779 diff --git a/datasets/pinganmajia/val/labels/订单1814944_4_7185263.txt b/datasets/pinganmajia/val/labels/订单1814944_4_7185263.txt new file mode 100644 index 0000000..d0adaed --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814944_4_7185263.txt @@ -0,0 +1 @@ +4 0.006622 0.406843 0.209707 0.392411 0.205762 0.345162 0.201817 0.276924 0.185061 0.223117 0.196890 0.211307 0.205762 0.131250 0.248152 0.045950 0.259982 0.019708 0.391104 0.021015 0.419695 0.087946 0.431524 0.175877 0.419695 0.258547 0.438421 0.259862 0.444341 0.297922 0.425610 0.337289 0.408848 0.359602 0.399976 0.418653 0.448280 0.454091 0.489689 0.473774 0.489689 0.527581 0.500530 0.611567 0.508421 0.707370 0.496591 0.782175 0.486732 0.858287 0.484756 0.956713 0.499104 1.000000 0.330110 1.000000 0.000000 0.997403 0.000000 0.902532 diff --git a/datasets/pinganmajia/val/labels/订单1814945_4_7185429.txt b/datasets/pinganmajia/val/labels/订单1814945_4_7185429.txt new file mode 100644 index 0000000..296d1f9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814945_4_7185429.txt @@ -0,0 +1 @@ +4 0.990866 0.125956 0.814134 0.127267 0.740654 0.204694 0.735392 0.276875 0.721405 0.362181 0.731895 0.418603 0.588415 0.523591 0.516667 0.612831 0.453676 0.758505 0.499183 0.799191 0.451928 0.950110 0.528922 0.946164 0.563922 0.961912 0.567418 0.990784 0.907288 1.000000 1.000000 1.000000 1.000000 0.779755 diff --git a/datasets/pinganmajia/val/labels/订单1814946_4_7185402.txt b/datasets/pinganmajia/val/labels/订单1814946_4_7185402.txt new file mode 100644 index 0000000..8f7c211 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814946_4_7185402.txt @@ -0,0 +1 @@ +4 1.000000 0.400916 0.934754 0.362223 0.927756 0.328104 0.919006 0.253295 0.861269 0.179808 0.728286 0.149624 0.607547 0.215241 0.569053 0.307102 0.553305 0.396342 0.577803 0.485582 0.612794 0.517074 0.597045 0.549886 0.572547 0.593196 0.542803 0.534141 0.488561 0.461960 0.497311 0.547259 0.444820 0.610256 0.409820 0.698182 0.397576 0.786108 0.399318 0.992145 1.000000 0.997351 diff --git a/datasets/pinganmajia/val/labels/订单1814947_4_7185415.txt b/datasets/pinganmajia/val/labels/订单1814947_4_7185415.txt new file mode 100644 index 0000000..e62eb3a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814947_4_7185415.txt @@ -0,0 +1 @@ +4 0.998558 0.393744 0.981825 0.367500 0.981825 0.316317 0.975917 0.231017 0.957217 0.157522 0.896196 0.101094 0.777100 0.115528 0.732808 0.212644 0.729854 0.326817 0.729854 0.402933 0.743633 0.493483 0.679658 0.582722 0.655054 0.675894 0.585171 0.990856 1.000000 0.996100 1.000000 0.504622 0.986746 0.498733 diff --git a/datasets/pinganmajia/val/labels/订单1814948_4_7185467.txt b/datasets/pinganmajia/val/labels/订单1814948_4_7185467.txt new file mode 100644 index 0000000..3346000 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814948_4_7185467.txt @@ -0,0 +1 @@ +4 0.688505 0.022337 0.684565 0.122075 0.700313 0.207377 0.686538 0.245433 0.697365 0.311046 0.715080 0.335980 0.729841 0.381920 0.645196 0.556454 0.563505 0.657508 0.507402 0.867484 0.480711 1.000000 1.000000 1.000000 1.000000 0.448578 0.976887 0.385850 1.000000 0.319297 1.000000 0.167377 0.998542 0.023652 diff --git a/datasets/pinganmajia/val/labels/订单1814950_4_7185476.txt b/datasets/pinganmajia/val/labels/订单1814950_4_7185476.txt new file mode 100644 index 0000000..192b0e6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814950_4_7185476.txt @@ -0,0 +1 @@ +4 0.992500 0.262486 0.780777 0.272983 0.660038 0.343849 0.654792 0.448835 0.665294 0.551200 0.693286 0.605007 0.618049 0.658807 0.430814 0.795291 0.320587 0.922592 0.224025 1.000000 1.000000 1.000000 1.000000 0.895980 diff --git a/datasets/pinganmajia/val/labels/订单1814951_4_7185492.txt b/datasets/pinganmajia/val/labels/订单1814951_4_7185492.txt new file mode 100644 index 0000000..ad9f2af --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814951_4_7185492.txt @@ -0,0 +1 @@ +4 0.752917 0.326758 0.751172 0.279521 0.726667 0.261143 0.693424 0.275586 0.682930 0.313643 0.688177 0.341201 0.654935 0.383193 0.653177 0.419941 0.660182 0.478994 0.682930 0.540674 0.724922 0.589229 0.726667 0.643037 0.684674 0.664033 0.698672 0.671904 0.758164 0.656162 0.758164 0.674531 0.737174 0.699463 0.752917 0.711279 0.787917 0.694219 0.803659 0.657471 0.805417 0.608916 0.780911 0.569541 0.798411 0.476367 0.831654 0.425186 0.819414 0.363506 0.782669 0.335947 diff --git a/datasets/pinganmajia/val/labels/订单1814953_4_7185559.txt b/datasets/pinganmajia/val/labels/订单1814953_4_7185559.txt new file mode 100644 index 0000000..7adda19 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814953_4_7185559.txt @@ -0,0 +1 @@ +4 0.005451 0.338634 0.028090 0.337315 0.028090 0.270394 0.021198 0.212650 0.012335 0.164086 0.028090 0.156215 0.029071 0.089282 0.071398 0.015799 0.222969 0.018426 0.283993 0.095845 0.294818 0.211331 0.274149 0.299259 0.251510 0.401620 0.266276 0.422616 0.333203 0.438368 0.368637 0.503981 0.393247 0.606343 0.394227 0.715266 0.407023 0.843877 0.415885 0.992176 0.002500 0.993484 diff --git a/datasets/pinganmajia/val/labels/订单1814954_4_7185505.txt b/datasets/pinganmajia/val/labels/订单1814954_4_7185505.txt new file mode 100644 index 0000000..7c550b8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814954_4_7185505.txt @@ -0,0 +1 @@ +4 0.276967 0.329381 0.243725 0.358250 0.250725 0.376625 0.173733 0.414681 0.122992 0.587912 0.147483 0.713894 0.171983 0.759825 0.192983 0.763763 0.201725 0.732269 0.217475 0.673213 0.233225 0.612844 0.264717 0.688962 0.280467 0.774262 0.292717 0.884500 0.294467 0.960612 0.280467 0.999981 0.329458 0.996044 0.364458 0.978988 0.371458 0.919931 0.366208 0.846437 0.381958 0.748012 0.413450 0.854313 0.415200 0.946175 0.427450 0.984237 0.478192 0.997356 0.488692 0.954050 0.493942 0.876625 0.488692 0.833319 0.492192 0.688962 0.495692 0.629906 0.511442 0.643031 0.513192 0.692900 0.525442 0.675837 0.534183 0.713894 0.558683 0.686338 0.558683 0.643031 0.569183 0.559038 0.546433 0.486863 0.507942 0.435681 0.471192 0.387125 0.437950 0.366125 0.411700 0.337256 0.404700 0.271637 0.362708 0.237519 0.299717 0.240144 0.275217 0.272950 0.275217 0.308381 diff --git a/datasets/pinganmajia/val/labels/订单1814955_4_7185569.txt b/datasets/pinganmajia/val/labels/订单1814955_4_7185569.txt new file mode 100644 index 0000000..6cb9c37 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814955_4_7185569.txt @@ -0,0 +1 @@ +4 0.005931 0.615515 0.079420 0.581389 0.125351 0.543333 0.121413 0.500025 0.156846 0.458031 0.147663 0.396348 0.151601 0.371413 0.179158 0.380605 0.184412 0.296618 0.229028 0.237557 0.285458 0.211315 0.365515 0.212623 0.435065 0.255931 0.471814 0.317614 0.480997 0.388480 0.482312 0.456716 0.453440 0.557770 0.460000 0.581389 0.505931 0.615515 0.463938 0.729681 0.524306 0.834673 0.553783 1.000000 0.216029 1.000000 0.000000 0.997467 0.000000 0.807304 diff --git a/datasets/pinganmajia/val/labels/订单1814960_4_7185542.txt b/datasets/pinganmajia/val/labels/订单1814960_4_7185542.txt new file mode 100644 index 0000000..abf3735 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814960_4_7185542.txt @@ -0,0 +1 @@ +4 0.005435 0.342549 0.035944 0.314984 0.038897 0.257247 0.016262 0.216560 0.031023 0.153570 0.044804 0.084020 0.072365 0.021021 0.249528 0.023652 0.276103 0.090580 0.276103 0.185065 0.271183 0.250686 0.251495 0.342549 0.231814 0.389788 0.252482 0.429158 0.252482 0.456716 0.324332 0.527582 0.373542 0.620760 0.401103 0.746748 0.445392 0.998717 0.005435 0.992149 diff --git a/datasets/pinganmajia/val/labels/订单1814963_4_7185584.txt b/datasets/pinganmajia/val/labels/订单1814963_4_7185584.txt new file mode 100644 index 0000000..5226e31 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814963_4_7185584.txt @@ -0,0 +1 @@ +4 0.000000 0.500437 0.047639 0.446229 0.059889 0.404233 0.033639 0.393733 0.012644 0.341242 0.028389 0.305808 0.056389 0.309746 0.075633 0.217879 0.122878 0.145704 0.233117 0.103708 0.401094 0.129954 0.474583 0.216567 0.485083 0.278250 0.467583 0.376675 0.451839 0.417354 0.420339 0.503971 0.422089 0.536779 0.483333 0.549900 0.595322 0.648325 0.649561 0.738879 0.707306 0.854362 0.743078 1.000000 0.180322 1.000000 -0.000000 0.998729 diff --git a/datasets/pinganmajia/val/labels/订单1814966_4_7185617.txt b/datasets/pinganmajia/val/labels/订单1814966_4_7185617.txt new file mode 100644 index 0000000..a0adc6c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814966_4_7185617.txt @@ -0,0 +1 @@ +4 0.987269 0.223134 0.978530 0.141771 0.922535 0.056467 0.836794 0.028906 0.717813 0.040720 0.586574 0.097153 0.544583 0.232318 0.542836 0.351745 0.572581 0.443602 0.560324 0.480347 0.481586 0.522344 0.387095 0.614210 0.308356 0.686389 0.247118 0.696884 0.208623 0.725755 0.177130 0.776936 0.308356 0.855677 0.327604 0.906858 0.266389 1.000000 1.000000 1.000000 1.000000 0.850929 diff --git a/datasets/pinganmajia/val/labels/订单1814968_4_7185623.txt b/datasets/pinganmajia/val/labels/订单1814968_4_7185623.txt new file mode 100644 index 0000000..ccf6452 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814968_4_7185623.txt @@ -0,0 +1 @@ +4 0.829909 0.272959 0.840404 0.223086 0.796667 0.196846 0.724922 0.216523 0.705677 0.250645 0.717917 0.300518 0.728424 0.320205 0.689922 0.358262 0.651432 0.429121 0.640938 0.540674 0.663685 0.610225 0.667174 0.594482 0.693424 0.591855 0.674180 0.566924 0.688177 0.548545 0.712669 0.611543 0.730169 0.702090 0.751172 0.754580 0.749414 0.803145 0.714427 0.832012 0.723177 0.859570 0.784414 0.845137 0.815911 0.828076 0.817656 0.800518 0.828164 0.767705 0.843906 0.807080 0.856159 0.846445 0.856159 0.888437 0.884154 0.904189 0.915651 0.884502 0.926146 0.825449 0.919154 0.759834 0.905143 0.720459 0.910404 0.631221 0.945391 0.602354 0.990885 0.480303 0.973385 0.374004 0.947148 0.326758 0.901654 0.297891 0.864909 0.282139 diff --git a/datasets/pinganmajia/val/labels/订单1814970_4_7185635.txt b/datasets/pinganmajia/val/labels/订单1814970_4_7185635.txt new file mode 100644 index 0000000..705bb43 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814970_4_7185635.txt @@ -0,0 +1 @@ +4 0.992614 0.772941 0.829886 0.703382 0.829886 0.641703 0.835131 0.580025 0.835131 0.494718 0.730147 0.446164 0.597157 0.461912 0.549918 0.514412 0.551667 0.583958 0.548170 0.662708 0.586667 0.738824 0.485180 0.753260 0.392435 0.852990 0.315458 0.990784 1.000000 0.996017 1.000000 0.929865 diff --git a/datasets/pinganmajia/val/labels/订单1814973_4_7185659.txt b/datasets/pinganmajia/val/labels/订单1814973_4_7185659.txt new file mode 100644 index 0000000..285814c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814973_4_7185659.txt @@ -0,0 +1 @@ +4 0.009919 0.036707 0.123458 0.045902 0.256234 0.116768 0.273701 0.199439 0.245747 0.279500 0.219545 0.322805 0.161899 0.391049 0.270211 0.409415 0.224789 0.457976 0.217808 0.494720 0.312143 0.559024 0.319123 0.653512 0.345325 0.728317 0.413458 0.803122 0.486834 0.893671 0.586412 0.982902 0.565438 0.998659 0.279075 1.000000 0.006429 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814974_4_7185666.txt b/datasets/pinganmajia/val/labels/订单1814974_4_7185666.txt new file mode 100644 index 0000000..d8bc5c3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814974_4_7185666.txt @@ -0,0 +1 @@ +4 0.670654 0.040650 0.534167 0.135147 0.542925 0.259816 0.588415 0.379240 0.609412 0.439608 0.693399 0.515723 0.584918 0.549841 0.479935 0.763750 0.434428 0.851679 0.422190 0.999975 0.426144 1.000000 1.000000 1.000000 1.000000 0.024975 diff --git a/datasets/pinganmajia/val/labels/订单1814977_4_7185707.txt b/datasets/pinganmajia/val/labels/订单1814977_4_7185707.txt new file mode 100644 index 0000000..a6a4d15 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814977_4_7185707.txt @@ -0,0 +1 @@ +4 0.001993 0.139134 0.080735 0.070891 0.206716 0.052516 0.289395 0.124698 0.318268 0.198186 0.319583 0.301863 0.330082 0.350417 0.269714 0.492149 0.334020 0.605016 0.381258 0.736250 0.395694 0.834673 0.416691 0.989526 0.001993 0.998717 diff --git a/datasets/pinganmajia/val/labels/订单1814978_4_7185756.txt b/datasets/pinganmajia/val/labels/订单1814978_4_7185756.txt new file mode 100644 index 0000000..34a8281 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814978_4_7185756.txt @@ -0,0 +1 @@ +4 0.702783 0.255916 0.671291 0.307098 0.642749 0.418647 0.647670 0.475079 0.652592 0.513135 0.662431 0.538070 0.667353 0.527572 0.678179 0.590563 0.673258 0.662740 0.679163 0.712609 0.678179 0.753293 0.692940 0.763791 0.702783 0.734921 0.706718 0.700800 0.709672 0.631247 0.711639 0.595814 0.723450 0.563005 0.729355 0.622060 0.727384 0.678488 0.733289 0.717860 0.733289 0.742795 0.765766 0.774288 0.761831 0.708674 0.763798 0.627307 0.761831 0.585316 0.772654 0.493451 0.801196 0.467205 0.816941 0.392400 0.803164 0.329409 0.769704 0.287414 0.754942 0.253293 0.749037 0.198177 0.729355 0.191614 0.711639 0.221795 0.709672 0.233609 diff --git a/datasets/pinganmajia/val/labels/订单1814979_4_7185772.txt b/datasets/pinganmajia/val/labels/订单1814979_4_7185772.txt new file mode 100644 index 0000000..b4a5f0c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814979_4_7185772.txt @@ -0,0 +1 @@ +4 0.992614 0.110208 0.861389 0.148272 0.803644 0.195515 0.793137 0.261127 0.784395 0.352990 0.791389 0.412047 0.805392 0.459289 0.740654 0.473725 0.682908 0.590527 0.619918 0.662708 0.506176 0.787377 0.504428 0.863493 0.548170 0.906801 0.595408 0.951422 0.682908 0.975037 0.693399 0.992096 0.961275 1.000000 1.000000 1.000000 1.000000 0.647463 diff --git a/datasets/pinganmajia/val/labels/订单1814981_4_7185717.txt b/datasets/pinganmajia/val/labels/订单1814981_4_7185717.txt new file mode 100644 index 0000000..b126344 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814981_4_7185717.txt @@ -0,0 +1 @@ +4 0.000000 0.310567 0.041866 0.301887 0.043837 0.254641 0.038915 0.211331 0.058602 0.182465 0.052691 0.107662 0.054661 0.081412 0.067457 0.023669 0.311554 0.017106 0.312535 0.157523 0.321398 0.190336 0.262335 0.326817 0.316476 0.380625 0.302691 0.423935 0.332222 0.443623 0.359783 0.500046 0.375530 0.565660 0.359783 0.650972 0.365686 0.717894 0.384384 0.788762 0.394227 0.876690 0.402101 0.996111 0.003481 0.998738 0.000000 0.593391 diff --git a/datasets/pinganmajia/val/labels/订单1814982_4_7185750.txt b/datasets/pinganmajia/val/labels/订单1814982_4_7185750.txt new file mode 100644 index 0000000..7084248 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814982_4_7185750.txt @@ -0,0 +1 @@ +4 0.002500 0.329444 0.032023 0.316319 0.069427 0.295324 0.086155 0.274329 0.078281 0.244144 0.068437 0.183773 0.079271 0.166713 0.069427 0.112905 0.068437 0.021042 0.283993 0.022361 0.314505 0.116840 0.309583 0.210023 0.304661 0.274329 0.275130 0.357002 0.301710 0.366192 0.356832 0.465926 0.389306 0.544664 0.401120 0.597164 0.413915 0.666713 0.429661 0.723148 0.442457 0.788762 0.439505 0.841250 0.407023 0.870127 0.373559 0.920000 0.397170 1.000000 0.004462 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814984_4_7185730.txt b/datasets/pinganmajia/val/labels/订单1814984_4_7185730.txt new file mode 100644 index 0000000..9bf7079 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814984_4_7185730.txt @@ -0,0 +1 @@ +4 0.388958 0.354326 0.327721 0.366133 0.283971 0.429121 0.269974 0.539365 0.290977 0.556426 0.301471 0.587920 0.317227 0.601045 0.315469 0.681094 0.320716 0.754580 0.322474 0.801826 0.311979 0.837266 0.346966 0.824141 0.369714 0.784766 0.376719 0.733584 0.374961 0.691592 0.397708 0.632539 0.399466 0.696846 0.404714 0.753271 0.408216 0.782139 0.437956 0.814951 0.465951 0.817578 0.446706 0.765078 0.457201 0.728340 0.469453 0.681094 0.469453 0.614160 0.488698 0.556426 0.493945 0.496055 0.504453 0.545918 0.511445 0.578730 0.535951 0.576104 0.520195 0.595791 0.548190 0.545918 0.544701 0.467178 0.525443 0.410752 0.507943 0.377939 0.474701 0.355635 0.467708 0.321514 0.457201 0.279521 0.430964 0.282139 0.415208 0.305762 0.404714 0.333320 diff --git a/datasets/pinganmajia/val/labels/订单1814985_4_7185840.txt b/datasets/pinganmajia/val/labels/订单1814985_4_7185840.txt new file mode 100644 index 0000000..ec6bf87 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814985_4_7185840.txt @@ -0,0 +1 @@ +4 0.999528 0.738873 0.980827 0.719183 0.974920 0.682443 0.931612 0.639134 0.855827 0.570891 0.815472 0.524959 0.801691 0.481650 0.837126 0.380605 0.864688 0.326797 0.886336 0.237557 0.875515 0.120760 0.828266 0.057770 0.746575 0.052516 0.685551 0.070891 0.631415 0.114199 0.585159 0.228374 0.585159 0.292680 0.572365 0.313676 0.585159 0.376667 0.601887 0.416038 0.600907 0.451471 0.575313 0.496087 0.495588 0.517083 0.429645 0.641757 0.399136 0.757247 0.364687 0.879289 0.373352 1.000000 0.999528 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814987_4_7185780.txt b/datasets/pinganmajia/val/labels/订单1814987_4_7185780.txt new file mode 100644 index 0000000..5fc22db --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814987_4_7185780.txt @@ -0,0 +1 @@ +4 1.000000 0.338983 0.931278 0.320242 0.929528 0.241504 0.971522 0.207383 0.983772 0.162763 0.973272 0.120767 0.982022 0.019717 0.535828 0.022342 0.511328 0.169325 0.513078 0.257250 0.591822 0.356988 0.437839 0.500033 0.373100 0.645704 0.322356 0.851738 0.329350 1.000000 0.346250 1.000000 1.000000 0.998725 diff --git a/datasets/pinganmajia/val/labels/订单1814990_4_7186032.txt b/datasets/pinganmajia/val/labels/订单1814990_4_7186032.txt new file mode 100644 index 0000000..019c3b4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814990_4_7186032.txt @@ -0,0 +1 @@ +4 0.005735 0.211262 0.089722 0.181078 0.213954 0.190257 0.315458 0.341176 0.311944 0.393676 0.313693 0.463223 0.285703 0.541973 0.413431 0.587904 0.500931 0.652206 0.588415 0.720441 0.644412 0.797868 0.639167 0.851679 0.602418 0.893676 0.558676 0.934350 0.569167 0.997353 0.281029 1.000000 0.000000 1.000000 0.000000 0.860049 diff --git a/datasets/pinganmajia/val/labels/订单1814991_4_7185828.txt b/datasets/pinganmajia/val/labels/订单1814991_4_7185828.txt new file mode 100644 index 0000000..c96e4f7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814991_4_7185828.txt @@ -0,0 +1 @@ +4 0.997578 0.692963 0.962144 0.657523 0.905052 0.591910 0.891276 0.564352 0.911944 0.530231 0.917847 0.482986 0.903090 0.412118 0.938524 0.364873 0.936554 0.325509 0.981832 0.208704 0.993637 0.144410 0.966076 0.077477 0.936554 0.026296 0.748559 0.023669 0.681632 0.133900 0.671788 0.206088 0.645217 0.330752 0.592066 0.393750 0.487734 0.421308 0.428681 0.497419 0.390295 0.563044 0.336155 0.639155 0.329271 0.849132 0.356832 0.955428 0.371589 0.998738 0.675043 1.000000 1.000000 1.000000 1.000000 0.882882 diff --git a/datasets/pinganmajia/val/labels/订单1814992_4_7186249.txt b/datasets/pinganmajia/val/labels/订单1814992_4_7186249.txt new file mode 100644 index 0000000..ce8bb8e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814992_4_7186249.txt @@ -0,0 +1 @@ +4 0.996589 0.502674 0.947378 0.452801 0.923759 0.426563 0.922769 0.296632 0.948359 0.185093 0.948359 0.024977 0.689505 0.019734 0.657023 0.169340 0.673759 0.284826 0.677691 0.312384 0.629462 0.422616 0.543837 0.503981 0.486745 0.615532 0.447378 0.716586 0.452300 0.830752 0.470998 0.912118 0.498559 0.959363 0.492656 0.994803 0.780217 1.000000 1.000000 1.000000 1.000000 0.936748 diff --git a/datasets/pinganmajia/val/labels/订单1814993_4_7185924.txt b/datasets/pinganmajia/val/labels/订单1814993_4_7185924.txt new file mode 100644 index 0000000..e8e93f1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814993_4_7185924.txt @@ -0,0 +1 @@ +4 0.004616 0.677190 0.071552 0.643072 0.078113 0.595825 0.110915 0.542018 0.106985 0.488219 0.121413 0.463284 0.141103 0.475090 0.143725 0.409477 0.187034 0.326797 0.268399 0.295302 0.361577 0.308423 0.411446 0.370106 0.440319 0.421283 0.450817 0.505278 0.448186 0.564330 0.404886 0.652255 0.465253 0.696879 0.437688 0.812361 0.473121 0.929158 0.469183 0.997402 0.000000 0.996095 0.000000 0.957819 diff --git a/datasets/pinganmajia/val/labels/订单1814995_4_7185865.txt b/datasets/pinganmajia/val/labels/订单1814995_4_7185865.txt new file mode 100644 index 0000000..99db2d7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814995_4_7185865.txt @@ -0,0 +1 @@ +4 1.000000 0.063275 0.856039 0.085333 0.763300 0.164075 0.744050 0.259875 0.726556 0.384546 0.770300 0.473787 0.752800 0.494783 0.602317 0.645704 0.555072 0.728379 0.544578 0.780871 0.441556 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1814996_4_7185850.txt b/datasets/pinganmajia/val/labels/订单1814996_4_7185850.txt new file mode 100644 index 0000000..f58d7d5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814996_4_7185850.txt @@ -0,0 +1 @@ +4 0.997859 0.593150 0.882386 0.573468 0.838627 0.559032 0.829886 0.526225 0.854379 0.497353 0.857876 0.440919 0.838627 0.427794 0.791389 0.356924 0.700408 0.314939 0.507925 0.394988 0.521928 0.480294 0.539428 0.544596 0.586667 0.612831 0.429183 0.645637 0.474673 0.723076 0.423938 0.828051 0.390686 0.956667 0.350441 0.998664 0.999608 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1814997_4_7185872.txt b/datasets/pinganmajia/val/labels/订单1814997_4_7185872.txt new file mode 100644 index 0000000..2f0ac85 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1814997_4_7185872.txt @@ -0,0 +1 @@ +4 0.000490 0.469792 0.063480 0.457978 0.052990 0.393676 0.037239 0.333309 0.045980 0.283444 0.024984 0.167953 0.052990 0.122022 0.159722 0.085270 0.387190 0.107586 0.453676 0.177132 0.504428 0.262439 0.513170 0.305748 0.467680 0.359559 0.436176 0.430417 0.397696 0.486850 0.500931 0.576091 0.595408 0.656140 0.647908 0.797868 0.667157 0.849056 0.612908 0.933039 0.588415 0.977659 0.542925 0.999975 -0.000000 0.996054 0.000000 0.543235 diff --git a/datasets/pinganmajia/val/labels/订单1815000_4_7185899.txt b/datasets/pinganmajia/val/labels/订单1815000_4_7185899.txt new file mode 100644 index 0000000..4c9680a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815000_4_7185899.txt @@ -0,0 +1 @@ +4 0.028500 0.068225 0.122992 0.076100 0.243725 0.133844 0.292717 0.194213 0.287467 0.287388 0.280467 0.345125 0.276967 0.419931 0.259475 0.488175 0.219225 0.536731 0.357458 0.624656 0.415200 0.703394 0.437950 0.838569 0.495692 0.999981 0.005750 0.997356 0.000000 0.561600 0.000000 0.069294 diff --git a/datasets/pinganmajia/val/labels/订单1815001_4_7185918.txt b/datasets/pinganmajia/val/labels/订单1815001_4_7185918.txt new file mode 100644 index 0000000..25ae46d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815001_4_7185918.txt @@ -0,0 +1 @@ +4 0.003987 0.443542 0.052990 0.406801 0.054739 0.316250 0.033742 0.287377 0.017990 0.251936 0.023235 0.227010 0.023235 0.165331 0.065229 0.099706 0.170212 0.061654 0.311944 0.095772 0.343448 0.160074 0.357451 0.240135 0.367941 0.283444 0.331193 0.397610 0.306699 0.430417 0.415180 0.511789 0.460686 0.599706 0.502680 0.660074 0.528922 0.780809 0.579673 0.939608 0.573219 1.000000 0.118660 1.000000 0.002239 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1815004_4_7185934.txt b/datasets/pinganmajia/val/labels/订单1815004_4_7185934.txt new file mode 100644 index 0000000..c9b2909 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815004_4_7185934.txt @@ -0,0 +1 @@ +4 0.007484 0.658762 0.077484 0.614142 0.161471 0.593150 0.142222 0.556409 0.131716 0.530159 0.143971 0.522279 0.114232 0.442230 0.198219 0.379240 0.343448 0.345123 0.469428 0.480294 0.479935 0.531471 0.460686 0.594461 0.502680 0.640392 0.577925 0.791311 0.607663 0.985539 0.584248 1.000000 0.329902 1.000000 0.000000 0.994804 0.000000 0.864154 diff --git a/datasets/pinganmajia/val/labels/订单1815005_4_7185943.txt b/datasets/pinganmajia/val/labels/订单1815005_4_7185943.txt new file mode 100644 index 0000000..04deaf2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815005_4_7185943.txt @@ -0,0 +1 @@ +4 0.990789 0.147029 0.926053 0.095855 0.915556 0.021053 0.719576 0.023673 0.707325 0.098476 0.744079 0.128662 0.684591 0.216590 0.584854 0.363575 0.570848 0.518421 0.626842 0.559112 0.632091 0.654912 0.646082 0.721842 0.616345 0.776952 0.539357 0.780888 0.556857 0.808454 0.611096 0.809759 0.677588 0.813706 0.709079 0.816327 0.698582 0.787456 0.724825 0.755954 0.740570 0.805822 0.742325 0.875384 0.707325 0.905559 0.656594 0.947555 0.689839 0.968553 0.731827 0.963311 0.766827 0.939682 0.822822 0.916064 0.828070 0.874068 0.833319 0.713958 0.838567 0.593224 0.873567 0.556480 0.887558 0.513180 0.927807 0.451491 0.959298 0.426557 1.000000 0.337248 1.000000 0.249814 diff --git a/datasets/pinganmajia/val/labels/订单1815006_4_7185948.txt b/datasets/pinganmajia/val/labels/订单1815006_4_7185948.txt new file mode 100644 index 0000000..c593466 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815006_4_7185948.txt @@ -0,0 +1 @@ +4 0.000000 0.507279 0.128103 0.480327 0.128103 0.426529 0.080859 0.392404 0.089615 0.337288 0.110603 0.326788 0.143846 0.254606 0.210346 0.196865 0.350321 0.178490 0.455308 0.229673 0.483308 0.286106 0.462308 0.360904 0.444821 0.414712 0.402821 0.507885 0.394077 0.515760 0.385321 0.524952 0.472808 0.572192 0.441321 0.603692 0.493808 0.677183 0.527051 0.734923 0.497308 0.767731 0.518308 0.918654 0.564321 1.000000 0.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815007_4_7185951.txt b/datasets/pinganmajia/val/labels/订单1815007_4_7185951.txt new file mode 100644 index 0000000..93cc7b0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815007_4_7185951.txt @@ -0,0 +1 @@ +4 0.000000 0.562894 0.115859 0.492144 0.140359 0.458019 0.126359 0.437019 0.124603 0.398962 0.140359 0.363529 0.166603 0.309731 0.229590 0.248048 0.348577 0.227048 0.451808 0.271673 0.478064 0.347788 0.479808 0.447519 0.443064 0.531510 0.492064 0.598442 0.541051 0.750673 0.565551 0.871404 0.570692 1.000000 0.190641 1.000000 0.003872 0.998702 0.000000 0.839558 diff --git a/datasets/pinganmajia/val/labels/订单1815009_4_7186021.txt b/datasets/pinganmajia/val/labels/订单1815009_4_7186021.txt new file mode 100644 index 0000000..db79f4d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815009_4_7186021.txt @@ -0,0 +1 @@ +4 0.005423 0.419955 0.111721 0.372712 0.134361 0.366154 0.103846 0.269038 0.086130 0.240167 0.095971 0.206045 0.092034 0.152244 0.082192 0.036756 0.086130 0.017071 0.355813 0.021006 0.372548 0.129929 0.380423 0.208673 0.379437 0.270353 0.357784 0.356968 0.330226 0.387147 0.403058 0.450141 0.462115 0.527571 0.472942 0.618122 0.509361 0.728359 0.534947 0.968513 0.530029 0.996071 0.010736 1.000000 0.009356 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815010_4_7185962.txt b/datasets/pinganmajia/val/labels/订单1815010_4_7185962.txt new file mode 100644 index 0000000..60bb660 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815010_4_7185962.txt @@ -0,0 +1 @@ +4 0.989118 0.532782 0.947124 0.498664 0.922631 0.450110 0.913873 0.414669 0.906879 0.370049 0.892876 0.262439 0.840392 0.216507 0.700408 0.199449 0.567418 0.290000 0.546422 0.385797 0.583170 0.464534 0.625163 0.531471 0.558676 0.607586 0.597157 0.628578 0.556912 0.711262 0.584918 0.769007 0.537680 0.879240 0.546422 0.936985 0.537680 0.999975 0.547271 1.000000 1.000000 1.000000 1.000000 0.856593 diff --git a/datasets/pinganmajia/val/labels/订单1815012_4_7186050.txt b/datasets/pinganmajia/val/labels/订单1815012_4_7186050.txt new file mode 100644 index 0000000..22bf78b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815012_4_7186050.txt @@ -0,0 +1 @@ +4 1.000000 0.110602 0.896399 0.104977 0.787912 0.102353 0.688169 0.164028 0.661924 0.204715 0.654928 0.291327 0.646173 0.383187 0.658426 0.446181 0.691667 0.501296 0.621677 0.545918 0.495700 0.649591 0.460700 0.729645 0.371461 0.859568 0.362716 0.931744 0.345545 1.000000 1.000000 1.000000 1.000000 0.647006 0.997881 0.493426 0.975134 0.489491 0.987387 0.447492 1.000000 0.438032 diff --git a/datasets/pinganmajia/val/labels/订单1815013_4_7186091.txt b/datasets/pinganmajia/val/labels/订单1815013_4_7186091.txt new file mode 100644 index 0000000..5bf4898 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815013_4_7186091.txt @@ -0,0 +1 @@ +4 0.009369 0.599763 0.085159 0.581389 0.100907 0.576144 0.130435 0.444910 0.147163 0.360915 0.197365 0.266430 0.289884 0.258554 0.391262 0.321552 0.404056 0.413415 0.375515 0.540711 0.359761 0.654886 0.398150 0.668007 0.422757 0.772990 0.441458 0.888480 0.459173 0.994779 0.002482 0.996087 diff --git a/datasets/pinganmajia/val/labels/订单1815015_4_7186076.txt b/datasets/pinganmajia/val/labels/订单1815015_4_7186076.txt new file mode 100644 index 0000000..4e51e80 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815015_4_7186076.txt @@ -0,0 +1 @@ +4 0.005735 0.507843 0.072222 0.480294 0.159722 0.460600 0.182467 0.406801 0.156225 0.385797 0.135229 0.343799 0.161471 0.321495 0.149216 0.259816 0.168464 0.196826 0.261209 0.149583 0.408186 0.170576 0.467680 0.220441 0.504428 0.297868 0.488676 0.359559 0.471176 0.405490 0.446683 0.497353 0.500931 0.532782 0.471176 0.580025 0.530670 0.671887 0.563922 0.896299 0.577925 0.999975 0.000490 0.996042 diff --git a/datasets/pinganmajia/val/labels/订单1815016_4_7186060.txt b/datasets/pinganmajia/val/labels/订单1815016_4_7186060.txt new file mode 100644 index 0000000..f1198cd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815016_4_7186060.txt @@ -0,0 +1 @@ +4 1.000000 0.511691 0.948346 0.497402 0.917837 0.460654 0.904056 0.413415 0.921771 0.250686 0.928664 0.153570 0.897163 0.082704 0.817439 0.035458 0.734761 0.047271 0.675711 0.173252 0.661930 0.278243 0.679645 0.347794 0.683585 0.400286 0.639289 0.450155 0.636336 0.484281 0.580239 0.522337 0.540864 0.587949 0.493621 0.774306 0.459173 0.997402 1.000000 0.997402 diff --git a/datasets/pinganmajia/val/labels/订单1815018_4_7186070.txt b/datasets/pinganmajia/val/labels/订单1815018_4_7186070.txt new file mode 100644 index 0000000..504fa04 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815018_4_7186070.txt @@ -0,0 +1 @@ +4 0.000000 0.017116 0.388309 0.022337 0.398150 0.115515 0.361734 0.270368 0.302678 0.447533 0.406023 0.573513 0.436538 0.669314 0.416850 0.715253 0.400423 1.000000 0.078836 1.000000 0.000515 0.998717 0.000000 0.828570 diff --git a/datasets/pinganmajia/val/labels/订单1815019_4_7186085.txt b/datasets/pinganmajia/val/labels/订单1815019_4_7186085.txt new file mode 100644 index 0000000..6647779 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815019_4_7186085.txt @@ -0,0 +1 @@ +4 0.002492 0.514478 0.096983 0.425239 0.092058 0.359622 0.070408 0.330750 0.044817 0.250700 0.054658 0.232328 0.038913 0.185083 0.045800 0.107656 0.052692 0.040728 0.072375 0.022356 0.274146 0.021039 0.316471 0.115528 0.327296 0.187706 0.318437 0.266450 0.307613 0.353061 0.306625 0.419989 0.331233 0.471172 0.457217 0.517106 0.524146 0.664083 0.568438 0.766450 0.571392 0.816317 0.573358 0.879311 0.585617 1.000000 0.000000 1.000000 0.000000 0.719472 diff --git a/datasets/pinganmajia/val/labels/订单1815021_4_7186086.txt b/datasets/pinganmajia/val/labels/订单1815021_4_7186086.txt new file mode 100644 index 0000000..cb26fd4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815021_4_7186086.txt @@ -0,0 +1 @@ +4 0.987958 0.207300 0.836484 0.152183 0.676281 0.119375 0.469461 0.174492 0.355857 0.284731 0.370414 0.402839 0.402457 0.485516 0.510241 0.589193 0.335462 0.663993 0.283035 0.791289 0.262640 0.912027 0.151946 0.999952 0.987958 0.998641 diff --git a/datasets/pinganmajia/val/labels/订单1815027_4_7186266.txt b/datasets/pinganmajia/val/labels/订单1815027_4_7186266.txt new file mode 100644 index 0000000..6ff565d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815027_4_7186266.txt @@ -0,0 +1 @@ +4 0.000000 0.546817 0.059859 0.527577 0.077359 0.480327 0.080859 0.426529 0.030115 0.397654 0.002115 0.358279 0.007372 0.320221 0.023115 0.297913 0.010872 0.246731 0.007372 0.196865 0.079115 0.131250 0.166603 0.120750 0.362577 0.157500 0.425564 0.207365 0.409821 0.283481 0.409821 0.350413 0.406321 0.426529 0.385321 0.480327 0.341577 0.526260 0.464064 0.599750 0.511308 0.685058 0.567295 0.792663 0.660038 0.904212 0.693282 0.947519 0.702038 0.992144 0.674038 0.993452 0.628538 0.976394 0.600551 0.950144 0.576231 1.000000 0.007321 1.000000 0.000000 0.619067 diff --git a/datasets/pinganmajia/val/labels/订单1815028_4_7186167.txt b/datasets/pinganmajia/val/labels/订单1815028_4_7186167.txt new file mode 100644 index 0000000..e87f217 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815028_4_7186167.txt @@ -0,0 +1 @@ +4 0.262338 0.238841 0.263328 0.208652 0.251471 0.174538 0.227755 0.148288 0.191196 0.167975 0.188230 0.207344 0.200088 0.259837 0.165505 0.288711 0.154637 0.337266 0.136848 0.511803 0.137838 0.597109 0.156613 0.654850 0.159574 0.624668 0.164515 0.612852 0.173407 0.578737 0.175387 0.557734 0.189221 0.670599 0.207995 0.779518 0.215897 0.860885 0.234672 0.892383 0.208980 0.916003 0.201078 0.944876 0.222814 0.946185 0.243564 0.918626 0.263328 0.990807 0.284721 1.000000 0.297265 1.000000 0.298897 0.975059 0.295936 0.935690 0.295936 0.883197 0.299887 0.749336 0.313721 0.686348 0.321627 0.629915 0.340402 0.611543 0.347319 0.570859 0.362137 0.459310 0.347319 0.351699 0.329529 0.303145 0.307794 0.275586 0.267279 0.259837 diff --git a/datasets/pinganmajia/val/labels/订单1815029_4_7186193.txt b/datasets/pinganmajia/val/labels/订单1815029_4_7186193.txt new file mode 100644 index 0000000..ca04b33 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815029_4_7186193.txt @@ -0,0 +1 @@ +4 0.793137 0.030159 0.691650 0.125956 0.696895 0.215196 0.684657 0.318873 0.709150 0.415980 0.702157 0.476348 0.581422 0.497353 0.334690 0.675821 0.289199 0.754571 0.254199 0.838554 0.208807 1.000000 1.000000 1.000000 1.000000 0.460564 0.996111 0.027537 diff --git a/datasets/pinganmajia/val/labels/订单1815034_4_7186248.txt b/datasets/pinganmajia/val/labels/订单1815034_4_7186248.txt new file mode 100644 index 0000000..ab6ee0f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815034_4_7186248.txt @@ -0,0 +1 @@ +4 1.000000 0.526773 0.959173 0.518399 0.927678 0.480343 0.905037 0.439657 0.904056 0.402917 0.913897 0.355670 0.907990 0.325482 0.922757 0.232312 0.919804 0.139134 0.871575 0.090580 0.761336 0.082704 0.711140 0.135196 0.692439 0.244118 0.681612 0.321552 0.671771 0.360915 0.680631 0.450155 0.655037 0.489526 0.598940 0.534150 0.531023 0.618137 0.432598 0.834673 0.458186 0.942279 0.529105 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815035_4_7186326.txt b/datasets/pinganmajia/val/labels/订单1815035_4_7186326.txt new file mode 100644 index 0000000..7b5b365 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815035_4_7186326.txt @@ -0,0 +1 @@ +4 0.002482 0.492149 0.104841 0.416038 0.177678 0.355670 0.180631 0.316299 0.158977 0.257247 0.156023 0.195564 0.179645 0.081389 0.235748 0.018399 0.347953 0.023652 0.408977 0.103701 0.443425 0.181127 0.424724 0.339918 0.401103 0.443595 0.453266 0.568268 0.487714 0.682443 0.490668 0.821552 0.500515 0.950155 0.494608 0.997402 0.000515 0.998717 diff --git a/datasets/pinganmajia/val/labels/订单1815036_4_7186175.txt b/datasets/pinganmajia/val/labels/订单1815036_4_7186175.txt new file mode 100644 index 0000000..708278d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815036_4_7186175.txt @@ -0,0 +1 @@ +4 0.263750 0.353024 0.196629 0.370087 0.174252 0.480322 0.185441 0.500010 0.232992 0.494760 0.227398 0.534130 0.241383 0.604995 0.213412 0.640428 0.266547 0.633865 0.266547 0.607620 0.297316 0.544625 0.294518 0.590558 0.294518 0.623365 0.333668 0.640428 0.330871 0.610245 0.336465 0.569562 0.356045 0.519692 0.364436 0.477697 0.384016 0.448827 0.425963 0.423894 0.395205 0.388457 0.353248 0.367462 0.325287 0.332029 0.308504 0.312341 0.266547 0.312341 0.252561 0.335966 diff --git a/datasets/pinganmajia/val/labels/订单1815037_4_7186207.txt b/datasets/pinganmajia/val/labels/订单1815037_4_7186207.txt new file mode 100644 index 0000000..0035932 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815037_4_7186207.txt @@ -0,0 +1 @@ +4 0.644311 0.380608 0.640811 0.398983 0.576072 0.413417 0.544578 0.513158 0.544578 0.597146 0.549828 0.633892 0.558572 0.685071 0.567322 0.671950 0.579572 0.681133 0.591822 0.746750 0.598817 0.820242 0.621567 0.909483 0.572572 0.943604 0.584822 0.969850 0.628567 0.969850 0.670561 0.930479 0.661811 0.896358 0.668811 0.800558 0.696806 0.740192 0.714306 0.808433 0.714306 0.908171 0.714306 0.961975 0.794794 0.984283 0.777294 0.925229 0.789544 0.842554 0.798294 0.706071 0.840289 0.678513 0.868283 0.624704 0.873533 0.498721 0.821039 0.397671 0.759800 0.385858 0.742300 0.366175 0.751050 0.318929 0.712556 0.282183 0.651311 0.296621 0.637317 0.335992 0.639067 0.354363 diff --git a/datasets/pinganmajia/val/labels/订单1815038_4_7186400.txt b/datasets/pinganmajia/val/labels/订单1815038_4_7186400.txt new file mode 100644 index 0000000..23c0351 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815038_4_7186400.txt @@ -0,0 +1 @@ +4 0.000000 0.396927 0.072141 0.356988 0.063391 0.317622 0.070394 0.280877 0.061644 0.219193 0.061644 0.137830 0.101887 0.052526 0.178877 0.026285 0.380104 0.026285 0.485093 0.073524 0.497338 0.111589 0.500833 0.147014 0.486840 0.207387 0.479838 0.286128 0.460590 0.374054 0.423843 0.433108 0.521829 0.560399 0.562083 0.661450 0.647813 0.866181 0.672315 0.954106 0.625069 0.981667 0.597072 0.981667 0.578738 1.000000 0.287836 1.000000 0.007396 0.997413 0.000000 0.490339 diff --git a/datasets/pinganmajia/val/labels/订单1815040_4_7186227.txt b/datasets/pinganmajia/val/labels/订单1815040_4_7186227.txt new file mode 100644 index 0000000..9c24755 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815040_4_7186227.txt @@ -0,0 +1 @@ +4 1.000000 0.604249 0.937523 0.510525 0.858781 0.383230 0.878465 0.329424 0.898148 0.262490 0.916852 0.148323 0.884367 0.072202 0.803665 0.063014 0.741651 0.115514 0.699329 0.203436 0.686535 0.229681 0.676698 0.284805 0.688503 0.330741 0.652091 0.339918 0.602878 0.379290 0.554645 0.502654 0.537917 0.790051 0.547755 0.876667 0.540131 1.000000 0.871404 1.000000 0.978858 0.998714 0.988981 1.000000 0.999529 1.000000 1.000000 0.811389 diff --git a/datasets/pinganmajia/val/labels/订单1815041_4_7186453.txt b/datasets/pinganmajia/val/labels/订单1815041_4_7186453.txt new file mode 100644 index 0000000..6ac50c2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815041_4_7186453.txt @@ -0,0 +1 @@ +4 1.000000 0.415167 0.963120 0.400302 0.977884 0.343871 0.989695 0.274318 0.981821 0.238885 0.962135 0.111587 0.914891 0.047283 0.804655 0.042034 0.732805 0.105027 0.682609 0.192953 0.682609 0.343871 0.691466 0.455421 0.647175 0.507913 0.557609 0.770380 0.564498 0.979042 0.591023 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815042_4_7186253.txt b/datasets/pinganmajia/val/labels/订单1815042_4_7186253.txt new file mode 100644 index 0000000..fd95f51 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815042_4_7186253.txt @@ -0,0 +1 @@ +4 0.002239 0.237500 0.075735 0.187635 0.212206 0.190257 0.369690 0.343799 0.378448 0.447475 0.385441 0.478971 0.441438 0.549841 0.483431 0.610208 0.542925 0.662708 0.549918 0.732255 0.618170 0.818873 0.584918 0.835931 0.618170 0.900233 0.591912 0.944853 0.576160 0.997353 0.000490 0.996042 diff --git a/datasets/pinganmajia/val/labels/订单1815043_4_7186190.txt b/datasets/pinganmajia/val/labels/订单1815043_4_7186190.txt new file mode 100644 index 0000000..96e299c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815043_4_7186190.txt @@ -0,0 +1 @@ +4 0.317227 0.421250 0.250729 0.447500 0.233229 0.492119 0.196484 0.572168 0.217487 0.628604 0.248984 0.666660 0.264727 0.673223 0.278724 0.729648 0.269974 0.803145 0.276979 0.847764 0.268229 0.889756 0.301471 0.906816 0.308477 0.859570 0.318971 0.800518 0.320716 0.769023 0.355716 0.690283 0.364466 0.770332 0.380221 0.824141 0.381966 0.843818 0.406458 0.859570 0.439714 0.877939 0.448451 0.864824 0.418711 0.822822 0.418711 0.761143 0.418711 0.725713 0.430964 0.632539 0.457201 0.636475 0.460703 0.610225 0.458958 0.561670 0.446706 0.490801 0.434453 0.456680 0.380221 0.421250 0.383711 0.380566 0.357474 0.360879 0.318971 0.371387 0.304974 0.398945 0.310221 0.412061 diff --git a/datasets/pinganmajia/val/labels/订单1815045_4_7186285.txt b/datasets/pinganmajia/val/labels/订单1815045_4_7186285.txt new file mode 100644 index 0000000..9591982 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815045_4_7186285.txt @@ -0,0 +1 @@ +4 1.000000 0.488775 0.933585 0.455408 0.877482 0.438350 0.870588 0.413415 0.898150 0.312361 0.934565 0.175882 0.914884 0.086642 0.882402 0.021021 0.660944 0.023652 0.594013 0.177190 0.593033 0.291364 0.623542 0.349109 0.631415 0.406846 0.606814 0.455408 0.561538 0.480343 0.516262 0.489526 0.491654 0.507900 0.429645 0.678505 0.412911 0.799240 0.424724 0.992149 1.000000 0.997304 diff --git a/datasets/pinganmajia/val/labels/订单1815047_4_7186371.txt b/datasets/pinganmajia/val/labels/订单1815047_4_7186371.txt new file mode 100644 index 0000000..1131f37 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815047_4_7186371.txt @@ -0,0 +1 @@ +4 1.000000 0.560286 0.926691 0.518399 0.893229 0.497402 0.875515 0.471152 0.876495 0.398979 0.893229 0.387165 0.905037 0.341234 0.895196 0.284804 0.894210 0.168007 0.782990 0.123382 0.711140 0.157508 0.671771 0.237557 0.668817 0.368791 0.712126 0.502647 0.707206 0.536773 0.638309 0.566953 0.564485 0.841234 0.527402 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815049_4_7186334.txt b/datasets/pinganmajia/val/labels/订单1815049_4_7186334.txt new file mode 100644 index 0000000..f0f64b0 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815049_4_7186334.txt @@ -0,0 +1 @@ +4 0.008388 0.316299 0.040864 0.313676 0.054645 0.242810 0.087126 0.164069 0.137322 0.017083 0.444412 0.023652 0.469013 0.177190 0.443425 0.307116 0.405037 0.416038 0.370588 0.480343 0.475907 0.580082 0.493621 0.691626 0.468033 0.993464 0.002482 0.997402 diff --git a/datasets/pinganmajia/val/labels/订单1815050_4_7186342.txt b/datasets/pinganmajia/val/labels/订单1815050_4_7186342.txt new file mode 100644 index 0000000..56ce541 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815050_4_7186342.txt @@ -0,0 +1 @@ +4 0.994049 0.074833 0.845898 0.137824 0.763971 0.267745 0.763971 0.433098 0.680312 0.481657 0.689023 0.509216 0.493815 0.867480 0.481615 0.939667 0.495560 0.993471 0.910430 1.000000 0.995781 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815053_4_7186410.txt b/datasets/pinganmajia/val/labels/订单1815053_4_7186410.txt new file mode 100644 index 0000000..e7c31c3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815053_4_7186410.txt @@ -0,0 +1 @@ +4 0.016242 0.619400 0.080980 0.587904 0.175474 0.565588 0.159722 0.515723 0.131716 0.427794 0.131716 0.360870 0.161471 0.362181 0.178971 0.257194 0.224461 0.212574 0.345196 0.160074 0.485180 0.171887 0.546422 0.242757 0.539428 0.321495 0.527173 0.431728 0.516667 0.490784 0.493922 0.556409 0.444935 0.614142 0.595408 0.699449 0.623415 0.790000 0.649657 0.864804 0.699918 1.000000 0.000000 1.000000 0.000000 0.976201 diff --git a/datasets/pinganmajia/val/labels/订单1815054_4_7186384.txt b/datasets/pinganmajia/val/labels/订单1815054_4_7186384.txt new file mode 100644 index 0000000..b271255 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815054_4_7186384.txt @@ -0,0 +1 @@ +4 0.979220 0.077378 0.851050 0.031450 0.594711 0.023576 0.399547 0.107565 0.338382 0.244045 0.364595 0.370030 0.414114 0.472391 0.516069 0.553759 0.262640 0.776853 0.271378 0.964518 0.271378 1.000000 0.628892 1.000000 0.999615 0.997326 diff --git a/datasets/pinganmajia/val/labels/订单1815057_4_7186413.txt b/datasets/pinganmajia/val/labels/订单1815057_4_7186413.txt new file mode 100644 index 0000000..e84d7b3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815057_4_7186413.txt @@ -0,0 +1 @@ +4 0.000490 0.418603 0.012745 0.396299 0.010980 0.158762 0.121225 0.098395 0.208709 0.052463 0.313693 0.099706 0.408186 0.186324 0.455425 0.320184 0.430931 0.427794 0.469428 0.447475 0.446683 0.494718 0.507925 0.615453 0.549918 0.755882 0.633905 0.843799 0.600670 0.876618 0.578154 1.000000 0.386536 1.000000 0.000000 0.997402 0.000000 0.450907 diff --git a/datasets/pinganmajia/val/labels/订单1815058_4_7186450.txt b/datasets/pinganmajia/val/labels/订单1815058_4_7186450.txt new file mode 100644 index 0000000..82f70c5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815058_4_7186450.txt @@ -0,0 +1 @@ +4 1.000000 0.459897 0.886327 0.402897 0.887312 0.379276 0.906995 0.304474 0.917822 0.283474 0.908966 0.203423 0.898139 0.087936 0.852861 0.024942 0.772154 0.026256 0.705226 0.102372 0.678649 0.230981 0.670774 0.274288 0.679635 0.339904 0.727861 0.431769 0.624514 0.489513 0.553649 0.582686 0.527077 0.776910 0.561524 0.984263 0.585971 1.000000 0.998567 1.000000 1.000000 0.735083 diff --git a/datasets/pinganmajia/val/labels/订单1815066_4_7186547.txt b/datasets/pinganmajia/val/labels/订单1815066_4_7186547.txt new file mode 100644 index 0000000..fbc454d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815066_4_7186547.txt @@ -0,0 +1 @@ +4 0.999372 0.451461 0.956982 0.429156 0.952055 0.404221 0.895860 0.343856 0.891915 0.254610 0.898817 0.167995 0.848537 0.084010 0.785445 0.066948 0.694744 0.143068 0.670098 0.245430 0.672073 0.374034 0.576445 0.518393 0.487713 0.720495 0.472927 0.906843 0.523195 1.000000 0.526774 1.000000 0.999372 0.997394 diff --git a/datasets/pinganmajia/val/labels/订单1815067_4_7186530.txt b/datasets/pinganmajia/val/labels/订单1815067_4_7186530.txt new file mode 100644 index 0000000..4c66780 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815067_4_7186530.txt @@ -0,0 +1 @@ +4 0.996553 0.484245 0.916826 0.429128 0.847930 0.392383 0.861709 0.353014 0.866631 0.308392 0.843989 0.307083 0.839072 0.241465 0.777061 0.174538 0.727852 0.185033 0.648125 0.292643 0.650093 0.398945 0.667813 0.472435 0.603833 0.543301 0.623521 0.586608 0.595962 0.888444 0.586343 1.000000 1.000000 1.000000 1.000000 0.744434 diff --git a/datasets/pinganmajia/val/labels/订单1815068_4_7186553.txt b/datasets/pinganmajia/val/labels/订单1815068_4_7186553.txt new file mode 100644 index 0000000..d74d5a6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815068_4_7186553.txt @@ -0,0 +1 @@ +4 0.011185 0.627320 0.138480 0.563015 0.151601 0.493464 0.180474 0.482966 0.183096 0.421283 0.213284 0.401601 0.221152 0.339918 0.289395 0.261185 0.411446 0.241495 0.479681 0.299240 0.505931 0.379289 0.512492 0.503962 0.454747 0.599763 0.488873 0.637819 0.466560 0.749371 0.492810 0.871413 0.482312 0.906846 0.497835 1.000000 0.000000 1.000000 0.000000 0.987598 diff --git a/datasets/pinganmajia/val/labels/订单1815069_4_7188706.txt b/datasets/pinganmajia/val/labels/订单1815069_4_7188706.txt new file mode 100644 index 0000000..7f9a0ba --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815069_4_7188706.txt @@ -0,0 +1 @@ +4 0.999540 0.429178 0.915885 0.418681 0.906042 0.391123 0.910964 0.346505 0.937535 0.325509 0.954271 0.259896 0.937535 0.219213 0.925729 0.224456 0.920807 0.101100 0.861745 0.045984 0.770217 0.032859 0.664896 0.131285 0.654071 0.283507 0.679661 0.406875 0.694427 0.442303 0.594028 0.574850 0.525130 0.749387 0.466076 0.896377 0.492656 0.968553 0.494618 1.000000 1.000000 1.000000 1.000000 0.561748 diff --git a/datasets/pinganmajia/val/labels/订单1815070_4_7186683.txt b/datasets/pinganmajia/val/labels/订单1815070_4_7186683.txt new file mode 100644 index 0000000..d83bd9a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815070_4_7186683.txt @@ -0,0 +1 @@ +4 0.990885 0.476367 0.978646 0.454062 0.992643 0.367441 0.994388 0.275586 0.997891 0.185029 0.887656 0.055107 0.733672 0.057734 0.567448 0.153535 0.553438 0.290020 0.556940 0.409443 0.607682 0.507861 0.458958 0.671904 0.371471 0.883193 0.355898 1.000000 0.996849 1.000000 1.000000 0.999990 1.000000 0.930781 diff --git a/datasets/pinganmajia/val/labels/订单1815072_4_7186549.txt b/datasets/pinganmajia/val/labels/订单1815072_4_7186549.txt new file mode 100644 index 0000000..b3c7065 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815072_4_7186549.txt @@ -0,0 +1 @@ +4 0.931393 0.166660 0.866654 0.129912 0.835156 0.114160 0.843906 0.043301 0.784414 0.034111 0.740664 0.070859 0.747669 0.137783 0.696927 0.175840 0.632188 0.279521 0.604193 0.396318 0.607682 0.446182 0.626940 0.454062 0.619935 0.618105 0.630430 0.720459 0.562187 0.766396 0.591940 0.784766 0.658424 0.776895 0.668932 0.721777 0.695182 0.637783 0.726667 0.541982 0.707422 0.700781 0.688177 0.778203 0.674180 0.814951 0.728424 0.828076 0.738919 0.778203 0.786159 0.687656 0.801914 0.633848 0.866654 0.488184 0.889401 0.426504 0.955898 0.333320 0.964648 0.212588 0.957643 0.160098 diff --git a/datasets/pinganmajia/val/labels/订单1815073_4_7186573.txt b/datasets/pinganmajia/val/labels/订单1815073_4_7186573.txt new file mode 100644 index 0000000..d4e479b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815073_4_7186573.txt @@ -0,0 +1 @@ +4 0.007389 0.460641 0.089082 0.391083 0.117625 0.354340 0.156995 0.338596 0.147154 0.291346 0.117625 0.225731 0.132389 0.200795 0.112707 0.128622 0.121563 0.081378 0.169793 0.022321 0.287904 0.022321 0.303649 0.066942 0.346957 0.165365 0.354832 0.283474 0.310538 0.406833 0.359750 0.477699 0.385341 0.597122 0.402077 0.779538 0.416837 0.997385 0.141034 1.000000 0.001500 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815074_4_7186599.txt b/datasets/pinganmajia/val/labels/订单1815074_4_7186599.txt new file mode 100644 index 0000000..de524e8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815074_4_7186599.txt @@ -0,0 +1 @@ +4 1.000000 0.067266 0.801813 0.076164 0.675823 0.196898 0.696823 0.330758 0.731823 0.440992 0.808813 0.538102 0.686323 0.569602 0.553344 0.704773 0.446604 0.794008 0.381865 0.984297 0.996031 0.996109 1.000000 0.645320 diff --git a/datasets/pinganmajia/val/labels/订单1815076_4_7186596.txt b/datasets/pinganmajia/val/labels/订单1815076_4_7186596.txt new file mode 100644 index 0000000..f975382 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815076_4_7186596.txt @@ -0,0 +1 @@ +4 0.527173 0.026225 0.462435 0.158762 0.474673 0.291311 0.518431 0.402855 0.542925 0.475037 0.514918 0.544596 0.444935 0.573468 0.329444 0.766373 0.269951 0.914669 0.264706 0.990784 0.989118 0.996042 0.997859 0.077402 0.976863 0.031471 diff --git a/datasets/pinganmajia/val/labels/订单1815077_4_7186627.txt b/datasets/pinganmajia/val/labels/订单1815077_4_7186627.txt new file mode 100644 index 0000000..3aabc83 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815077_4_7186627.txt @@ -0,0 +1 @@ +4 0.000000 0.471317 0.037115 0.448837 0.056359 0.422587 0.009115 0.346471 0.005615 0.069567 0.068615 0.022327 0.289090 0.019702 0.406321 0.119442 0.448321 0.292663 0.429064 0.405529 0.569051 0.524952 0.625038 0.601067 0.660038 0.691615 0.693282 0.779538 0.663538 0.839913 0.607538 0.975077 0.581244 1.000000 0.167154 1.000000 0.005615 0.997394 0.000000 0.788231 diff --git a/datasets/pinganmajia/val/labels/订单1815078_4_7187051.txt b/datasets/pinganmajia/val/labels/订单1815078_4_7187051.txt new file mode 100644 index 0000000..29445e1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815078_4_7187051.txt @@ -0,0 +1 @@ +4 0.987283 0.536788 0.975035 0.500041 0.975035 0.393743 0.941788 0.315002 0.901542 0.259885 0.772060 0.269071 0.663573 0.328125 0.605830 0.376682 0.609329 0.442298 0.628576 0.498730 0.619829 0.542036 0.546337 0.616840 0.623328 0.641775 0.548087 0.691643 0.514841 0.733637 0.409855 0.759885 0.404606 0.818939 0.434352 0.855686 0.464097 0.872745 0.337708 1.000000 0.994280 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815079_4_7186658.txt b/datasets/pinganmajia/val/labels/订单1815079_4_7186658.txt new file mode 100644 index 0000000..fa8d443 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815079_4_7186658.txt @@ -0,0 +1 @@ +4 0.000000 0.546780 0.065812 0.541963 0.057078 0.526220 0.025633 0.513085 0.013409 0.478976 0.023896 0.456659 0.009919 0.404171 0.058831 0.314927 0.154919 0.288683 0.223036 0.278183 0.291169 0.331988 0.345325 0.410732 0.341834 0.451415 0.336591 0.493402 0.291169 0.578707 0.271948 0.612829 0.362792 0.707317 0.408214 0.814927 0.451591 1.000000 0.002906 1.000000 0.000000 0.849110 diff --git a/datasets/pinganmajia/val/labels/订单1815081_4_7186672.txt b/datasets/pinganmajia/val/labels/订单1815081_4_7186672.txt new file mode 100644 index 0000000..694d677 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815081_4_7186672.txt @@ -0,0 +1 @@ +4 1.000000 0.232414 0.843889 0.195515 0.703905 0.212574 0.616405 0.287377 0.584918 0.354301 0.572663 0.440919 0.560425 0.515723 0.563922 0.565588 0.402941 0.681078 0.432680 0.698137 0.406438 0.734877 0.339951 0.755882 0.301454 0.790000 0.229706 0.833309 0.210458 0.849056 0.226209 0.893676 0.266454 0.904167 0.297958 0.881863 0.317206 0.855613 0.346944 0.855613 0.353938 0.877929 0.346944 0.940919 0.369918 1.000000 1.000000 1.000000 1.000000 0.727500 0.997859 0.639081 0.987369 0.608897 1.000000 0.574436 diff --git a/datasets/pinganmajia/val/labels/订单1815083_4_7186632.txt b/datasets/pinganmajia/val/labels/订单1815083_4_7186632.txt new file mode 100644 index 0000000..b321f53 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815083_4_7186632.txt @@ -0,0 +1 @@ +4 0.397594 0.178512 0.378344 0.161450 0.387094 0.140454 0.360850 0.127329 0.339850 0.110271 0.322356 0.068275 0.290856 0.052525 0.261111 0.070900 0.264611 0.110271 0.255861 0.136517 0.192872 0.190321 0.159622 0.273000 0.184122 0.300558 0.208617 0.309746 0.213867 0.367488 0.238367 0.400296 0.243611 0.471162 0.255861 0.545967 0.266361 0.586646 0.250611 0.622079 0.245361 0.639142 0.271611 0.640454 0.292606 0.611583 0.296106 0.582708 0.299606 0.539404 0.301356 0.494783 0.322356 0.444917 0.345100 0.502658 0.364350 0.573525 0.359100 0.605021 0.355600 0.632579 0.376594 0.636517 0.394094 0.612896 0.394094 0.573525 0.395844 0.503971 0.408094 0.452788 0.413344 0.404233 0.420339 0.426542 0.446589 0.417354 0.453589 0.392421 0.462333 0.350425 0.453589 0.287433 0.430839 0.219192 diff --git a/datasets/pinganmajia/val/labels/订单1815085_4_7186710.txt b/datasets/pinganmajia/val/labels/订单1815085_4_7186710.txt new file mode 100644 index 0000000..03bc8e1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815085_4_7186710.txt @@ -0,0 +1 @@ +4 1.000000 0.508438 0.922736 0.472441 0.914862 0.431759 0.896161 0.393701 0.882382 0.367454 0.884350 0.351706 0.895177 0.332021 0.906004 0.283465 0.902067 0.246719 0.889272 0.240157 0.893209 0.162730 0.879429 0.076115 0.826280 0.031496 0.743602 0.036745 0.689469 0.107612 0.680610 0.177165 0.680610 0.266404 0.670768 0.283465 0.672736 0.318898 0.681594 0.360892 0.707185 0.414698 0.604823 0.484252 0.621555 0.517060 0.580217 0.725722 0.561516 0.985564 0.588091 0.997375 0.998524 1.000000 0.998524 1.000000 0.998524 1.000000 1.000000 0.877625 diff --git a/datasets/pinganmajia/val/labels/订单1815086_4_7186820.txt b/datasets/pinganmajia/val/labels/订单1815086_4_7186820.txt new file mode 100644 index 0000000..716a0d9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815086_4_7186820.txt @@ -0,0 +1 @@ +4 1.000000 0.587928 0.850920 0.479051 0.817457 0.444931 0.677691 0.367500 0.680642 0.317639 0.690486 0.288762 0.699349 0.245451 0.704271 0.200833 0.719028 0.135220 0.702300 0.060417 0.676710 0.018426 0.515295 0.017106 0.460174 0.108970 0.459193 0.194271 0.468047 0.248079 0.475920 0.301887 0.508403 0.374063 0.448359 0.426563 0.418837 0.556481 0.427691 0.660150 0.416866 0.825509 0.411944 0.977743 0.422491 1.000000 0.583715 1.000000 0.816476 0.996111 0.814505 0.864873 0.860764 0.850440 0.976910 0.975116 0.983793 0.996111 0.998559 0.997419 1.000000 0.912639 diff --git a/datasets/pinganmajia/val/labels/订单1815087_4_7186804.txt b/datasets/pinganmajia/val/labels/订单1815087_4_7186804.txt new file mode 100644 index 0000000..7b2adab --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815087_4_7186804.txt @@ -0,0 +1 @@ +4 0.220996 0.430489 0.204267 0.461983 0.173754 0.471172 0.169817 0.506606 0.135367 0.639150 0.154067 0.698206 0.147179 0.803194 0.151117 0.866183 0.157021 0.892433 0.156037 0.913428 0.167846 0.917367 0.182612 0.914739 0.185563 0.881933 0.186550 0.851750 0.198358 0.820256 0.205250 0.786133 0.220996 0.775633 0.240683 0.797944 0.259383 0.826817 0.283988 0.828128 0.287925 0.800567 0.351904 0.803194 0.361746 0.776944 0.357808 0.750700 0.358792 0.691644 0.345996 0.603717 0.333200 0.540728 0.321392 0.507917 0.300721 0.482983 0.296783 0.456739 0.304658 0.413428 0.279067 0.379311 0.249542 0.379311 0.229854 0.389806 0.219029 0.413428 diff --git a/datasets/pinganmajia/val/labels/订单1815089_4_7186763.txt b/datasets/pinganmajia/val/labels/订单1815089_4_7186763.txt new file mode 100644 index 0000000..3ec64ee --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815089_4_7186763.txt @@ -0,0 +1 @@ +4 0.999371 0.443595 0.946879 0.426536 0.912753 0.419975 0.920629 0.345172 0.916691 0.295302 0.904886 0.230997 0.906193 0.120760 0.900948 0.052516 0.562361 0.015776 0.486250 0.135196 0.496748 0.242810 0.529551 0.322859 0.551863 0.444910 0.579420 0.493464 0.499371 0.555147 0.440319 0.641757 0.418007 0.755931 0.379951 0.822859 0.349763 0.900286 0.327753 1.000000 1.000000 1.000000 1.000000 0.577516 diff --git a/datasets/pinganmajia/val/labels/订单1815091_4_7186765.txt b/datasets/pinganmajia/val/labels/订单1815091_4_7186765.txt new file mode 100644 index 0000000..1075627 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815091_4_7186765.txt @@ -0,0 +1 @@ +4 0.009979 0.497361 0.069588 0.475054 0.132711 0.475054 0.132711 0.455370 0.125701 0.398935 0.102907 0.384498 0.102907 0.356944 0.113423 0.313634 0.120443 0.257207 0.122196 0.195525 0.236165 0.150903 0.337866 0.123349 0.406247 0.157469 0.471124 0.232269 0.485144 0.297886 0.472876 0.341196 0.465856 0.418619 0.425526 0.485548 0.360660 0.527546 0.369423 0.541983 0.469361 0.636474 0.500928 0.761142 0.509691 0.885818 0.550381 1.000000 0.001227 1.000000 0.000000 0.999992 0.000000 0.974051 diff --git a/datasets/pinganmajia/val/labels/订单1815093_4_7186818.txt b/datasets/pinganmajia/val/labels/订单1815093_4_7186818.txt new file mode 100644 index 0000000..9d27387 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815093_4_7186818.txt @@ -0,0 +1 @@ +4 0.990866 0.078713 0.843889 0.045907 0.654902 0.055086 0.511422 0.124645 0.458938 0.245380 0.516667 0.356924 0.560425 0.473725 0.651405 0.548529 0.457190 0.637770 0.401193 0.804436 0.297958 0.935674 0.268203 0.994718 1.000000 0.999939 1.000000 0.679914 diff --git a/datasets/pinganmajia/val/labels/订单1815095_4_7186752.txt b/datasets/pinganmajia/val/labels/订单1815095_4_7186752.txt new file mode 100644 index 0000000..2686803 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815095_4_7186752.txt @@ -0,0 +1 @@ +4 0.998480 0.485560 0.966863 0.465872 0.848289 0.418626 0.827539 0.383197 0.836431 0.338574 0.851255 0.326764 0.866074 0.296582 0.877931 0.261146 0.863113 0.244089 0.869039 0.171908 0.856196 0.102357 0.809755 0.049863 0.706990 0.081361 0.669441 0.154850 0.658574 0.233587 0.658574 0.311016 0.661534 0.372695 0.682284 0.413379 0.576559 0.433066 0.506402 0.562988 0.440201 0.674538 0.455020 0.787396 0.496520 0.897630 0.484814 1.000000 0.696603 1.000000 0.910539 0.998678 0.927338 0.841204 0.947103 0.851699 0.949078 0.825456 0.943147 0.804453 0.996505 0.851699 1.000000 0.854349 1.000000 0.599635 diff --git a/datasets/pinganmajia/val/labels/订单1815096_4_7186748.txt b/datasets/pinganmajia/val/labels/订单1815096_4_7186748.txt new file mode 100644 index 0000000..3f1037e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815096_4_7186748.txt @@ -0,0 +1 @@ +4 0.007604 0.396347 0.087457 0.385844 0.173232 0.341226 0.168299 0.314984 0.163372 0.263799 0.165341 0.227054 0.177171 0.230990 0.181116 0.166688 0.217591 0.094505 0.263927 0.043328 0.353640 0.070885 0.395049 0.141753 0.397018 0.220495 0.386171 0.304481 0.403921 0.309732 0.392085 0.346477 0.374341 0.385844 0.359555 0.422589 0.417720 0.488206 0.464055 0.586631 0.461098 0.667995 0.488701 0.769050 0.510390 0.855666 0.497573 0.898969 0.466024 0.942281 0.439409 0.956713 0.424622 0.952776 0.421744 1.000000 0.000720 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815097_4_7186980.txt b/datasets/pinganmajia/val/labels/订单1815097_4_7186980.txt new file mode 100644 index 0000000..21cb79a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815097_4_7186980.txt @@ -0,0 +1 @@ +4 0.995433 0.429156 0.937262 0.402906 0.926421 0.347792 0.913604 0.249367 0.891915 0.147005 0.815018 0.115503 0.715445 0.161437 0.686860 0.204740 0.641506 0.047265 0.620805 0.015771 0.555738 0.023644 0.546866 0.111567 0.623762 0.337289 0.682915 0.460649 0.670098 0.566948 0.646439 0.817606 0.622780 0.977711 0.621793 0.998709 0.808244 1.000000 1.000000 1.000000 1.000000 0.959635 diff --git a/datasets/pinganmajia/val/labels/订单1815099_4_7186827.txt b/datasets/pinganmajia/val/labels/订单1815099_4_7186827.txt new file mode 100644 index 0000000..a277a7f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815099_4_7186827.txt @@ -0,0 +1 @@ +4 0.530965 0.355592 0.497500 0.376586 0.481749 0.413333 0.466003 0.484196 0.463048 0.535380 0.470927 0.608867 0.484704 0.648238 0.507341 0.663991 0.504391 0.734854 0.514232 0.786038 0.521124 0.894956 0.524073 0.926455 0.485691 0.972390 0.505373 0.996009 0.533914 0.976323 0.568366 0.955329 0.557538 0.918582 0.558525 0.867398 0.563443 0.812281 0.567379 0.742727 0.588048 0.826718 0.597895 0.856901 0.598876 0.938268 0.604781 0.998633 0.618783 1.000000 0.644677 1.000000 0.639232 0.969766 0.641201 0.847712 0.635296 0.810972 0.632341 0.700731 0.645137 0.692858 0.653010 0.669240 0.672697 0.627244 0.683525 0.578684 0.681557 0.526192 0.664825 0.415958 0.655965 0.387083 0.612659 0.354276 0.587067 0.343779 0.596908 0.305724 0.597895 0.270285 0.570334 0.246667 0.528010 0.259788 0.519150 0.296535 0.523092 0.328034 0.528010 0.345088 diff --git a/datasets/pinganmajia/val/labels/订单1815100_4_7186891.txt b/datasets/pinganmajia/val/labels/订单1815100_4_7186891.txt new file mode 100644 index 0000000..248d75a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815100_4_7186891.txt @@ -0,0 +1 @@ +4 0.005648 0.299245 0.171875 0.332057 0.240116 0.421293 0.262870 0.497413 0.276863 0.552526 0.275116 0.632578 0.404595 0.666701 0.457095 0.731007 0.709549 1.000000 0.345868 1.000000 0.000394 0.998724 diff --git a/datasets/pinganmajia/val/labels/订单1815101_4_7186904.txt b/datasets/pinganmajia/val/labels/订单1815101_4_7186904.txt new file mode 100644 index 0000000..689d5c9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815101_4_7186904.txt @@ -0,0 +1 @@ +4 0.995586 0.360906 0.970977 0.320229 0.908969 0.110250 0.876492 0.082698 0.741648 0.094500 0.684562 0.191615 0.691453 0.312354 0.708180 0.384531 0.726883 0.431771 0.774125 0.502646 0.728852 0.612875 0.741648 0.649625 0.746570 0.807104 0.736727 0.858281 0.754922 1.000000 1.000000 1.000000 1.000000 0.770583 diff --git a/datasets/pinganmajia/val/labels/订单1815102_4_7186894.txt b/datasets/pinganmajia/val/labels/订单1815102_4_7186894.txt new file mode 100644 index 0000000..50c6e11 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815102_4_7186894.txt @@ -0,0 +1 @@ +4 0.002239 0.469792 0.073987 0.439608 0.128219 0.423860 0.131716 0.400233 0.108971 0.380551 0.091471 0.331998 0.096732 0.299191 0.105474 0.236189 0.152712 0.162708 0.220964 0.122022 0.373186 0.156140 0.416944 0.227010 0.439690 0.310993 0.432680 0.385797 0.401193 0.440919 0.357451 0.492096 0.451928 0.538027 0.404690 0.581336 0.432680 0.690257 0.441438 0.763750 0.532418 0.810993 0.569167 0.887108 0.570915 0.921238 0.553415 0.951422 0.556912 0.985539 0.555441 1.000000 0.005719 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815103_4_7186889.txt b/datasets/pinganmajia/val/labels/订单1815103_4_7186889.txt new file mode 100644 index 0000000..9e3615d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815103_4_7186889.txt @@ -0,0 +1 @@ +4 0.008626 0.616833 0.133024 0.526275 0.133024 0.482971 0.131270 0.439667 0.154045 0.388480 0.220628 0.322863 0.355537 0.314990 0.430877 0.363549 0.458914 0.446225 0.451898 0.515775 0.436139 0.574833 0.455406 0.598461 0.450144 0.639137 0.453652 0.666696 0.504463 0.715255 0.479935 0.791373 0.467670 0.867480 0.450654 1.000000 -0.000000 1.000000 -0.000000 0.886373 diff --git a/datasets/pinganmajia/val/labels/订单1815106_4_7186875.txt b/datasets/pinganmajia/val/labels/订单1815106_4_7186875.txt new file mode 100644 index 0000000..b4dc948 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815106_4_7186875.txt @@ -0,0 +1 @@ +4 0.999525 0.507908 0.936528 0.484288 0.910289 0.455417 0.861285 0.410799 0.856042 0.371424 0.868287 0.341241 0.864792 0.320243 0.850787 0.321562 0.850787 0.229696 0.801794 0.161450 0.709063 0.123394 0.598819 0.131267 0.506088 0.190321 0.471088 0.276936 0.502581 0.341241 0.509583 0.381927 0.514838 0.442292 0.535833 0.488229 0.509583 0.527595 0.397593 0.607648 0.362604 0.740191 0.338102 0.929167 0.374850 0.981667 0.371354 0.998724 0.994213 1.000000 1.000000 1.000000 1.000000 0.527075 diff --git a/datasets/pinganmajia/val/labels/订单1815107_4_7186869.txt b/datasets/pinganmajia/val/labels/订单1815107_4_7186869.txt new file mode 100644 index 0000000..89ab3f2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815107_4_7186869.txt @@ -0,0 +1 @@ +4 0.997891 0.358262 0.915651 0.321514 0.712669 0.359570 0.714427 0.431748 0.721419 0.498682 0.758164 0.560361 0.786159 0.590537 0.716172 0.640410 0.705677 0.694219 0.663685 0.782139 0.696927 0.808389 0.705677 0.879258 0.659427 1.000000 1.000000 1.000000 1.000000 0.552695 diff --git a/datasets/pinganmajia/val/labels/订单1815108_4_7186882.txt b/datasets/pinganmajia/val/labels/订单1815108_4_7186882.txt new file mode 100644 index 0000000..2f3456a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815108_4_7186882.txt @@ -0,0 +1 @@ +4 0.555173 0.402860 0.499173 0.425170 0.474680 0.502600 0.465933 0.570840 0.474680 0.636460 0.486933 0.674510 0.509680 0.679760 0.507920 0.631210 0.518427 0.670580 0.525427 0.740130 0.534173 0.852990 0.514920 0.898920 0.542920 0.915980 0.562173 0.892360 0.579667 0.829370 0.579667 0.782130 0.600667 0.692890 0.607667 0.772940 0.609413 0.828060 0.600667 0.867430 0.633907 0.889740 0.670653 0.921230 0.691653 0.910730 0.665400 0.880550 0.654907 0.851680 0.665400 0.803120 0.656653 0.759820 0.677653 0.661390 0.696907 0.669260 0.717893 0.650890 0.730147 0.623330 0.730147 0.534090 0.716147 0.472410 0.700400 0.430420 0.630413 0.400240 0.632160 0.350370 0.619907 0.313620 0.588413 0.304440 0.555173 0.322810 0.549920 0.351680 0.551667 0.379240 diff --git a/datasets/pinganmajia/val/labels/订单1815110_4_7186953.txt b/datasets/pinganmajia/val/labels/订单1815110_4_7186953.txt new file mode 100644 index 0000000..f6efa4f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815110_4_7186953.txt @@ -0,0 +1 @@ +4 0.017894 0.539410 0.075637 0.506597 0.135127 0.451476 0.135127 0.414731 0.101887 0.383238 0.087882 0.332057 0.089641 0.261189 0.133380 0.179826 0.257616 0.152266 0.353854 0.170642 0.420347 0.236259 0.436088 0.297934 0.415093 0.355677 0.411597 0.413420 0.390602 0.475104 0.353854 0.513160 0.371354 0.536780 0.478090 0.620773 0.481586 0.712630 0.493831 0.822873 0.499086 0.933108 0.525336 0.963290 0.548056 1.000000 0.004016 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815111_4_7186957.txt b/datasets/pinganmajia/val/labels/订单1815111_4_7186957.txt new file mode 100644 index 0000000..b555adc --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815111_4_7186957.txt @@ -0,0 +1 @@ +4 0.994363 0.608897 0.917369 0.585270 0.866634 0.551152 0.877124 0.505221 0.912124 0.477659 0.934869 0.442230 0.920866 0.402855 0.912124 0.278186 0.814134 0.224387 0.681160 0.198137 0.530670 0.299191 0.534167 0.402855 0.549918 0.472414 0.562173 0.536716 0.570915 0.573468 0.437941 0.632525 0.343448 0.732255 0.301454 0.807059 0.331193 0.851679 0.313693 0.906801 0.331193 0.946164 0.325948 0.986850 1.000000 0.995968 1.000000 0.816703 diff --git a/datasets/pinganmajia/val/labels/订单1815113_4_7186981.txt b/datasets/pinganmajia/val/labels/订单1815113_4_7186981.txt new file mode 100644 index 0000000..42fdd84 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815113_4_7186981.txt @@ -0,0 +1 @@ +4 0.698538 0.374029 0.670538 0.398962 0.602295 0.498702 0.588295 0.586625 0.616295 0.645683 0.614538 0.715240 0.607538 0.813663 0.602295 0.856971 0.567295 0.889779 0.616295 0.891096 0.640795 0.867471 0.653038 0.813663 0.667038 0.754606 0.709026 0.706048 0.716026 0.776913 0.703782 0.849096 0.733526 0.885846 0.784269 0.918654 0.780769 0.884529 0.763269 0.835971 0.773769 0.770356 0.801769 0.671933 0.842013 0.662740 0.857769 0.631250 0.882256 0.545942 0.873513 0.484269 0.840269 0.430462 0.784269 0.397654 0.801769 0.358279 0.786026 0.316288 0.742282 0.318913 0.716026 0.342538 0.709026 0.358279 diff --git a/datasets/pinganmajia/val/labels/订单1815115_4_7186979.txt b/datasets/pinganmajia/val/labels/订单1815115_4_7186979.txt new file mode 100644 index 0000000..a1e6c0a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815115_4_7186979.txt @@ -0,0 +1 @@ +4 0.996017 0.094521 0.870033 0.043342 0.625067 0.073525 0.511328 0.169325 0.486833 0.316304 0.502583 0.479038 0.535828 0.549900 0.429089 0.666700 0.378344 0.753313 0.378344 0.825492 0.223794 1.000000 1.000000 1.000000 1.000000 0.438375 diff --git a/datasets/pinganmajia/val/labels/订单1815118_4_7187023.txt b/datasets/pinganmajia/val/labels/订单1815118_4_7187023.txt new file mode 100644 index 0000000..4bcc482 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815118_4_7187023.txt @@ -0,0 +1 @@ +4 0.021502 0.162716 0.128241 0.158781 0.231481 0.136474 0.303220 0.173218 0.299722 0.248017 0.287469 0.288704 0.331214 0.374005 0.325967 0.464552 0.322469 0.490802 0.422202 0.527546 0.478200 0.564290 0.532438 0.653534 0.612932 0.724398 0.661924 0.795262 0.640926 0.855633 0.630432 0.881875 0.681173 0.935687 0.728097 1.000000 0.148200 1.000000 0.000504 0.998673 diff --git a/datasets/pinganmajia/val/labels/订单1815119_4_7187027.txt b/datasets/pinganmajia/val/labels/订单1815119_4_7187027.txt new file mode 100644 index 0000000..6f79b14 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815119_4_7187027.txt @@ -0,0 +1 @@ +4 1.000000 0.431781 0.917837 0.383227 0.899136 0.345172 0.932598 0.267745 0.966060 0.183750 0.976887 0.042018 0.973940 0.018399 0.668817 0.019714 0.618621 0.234935 0.649136 0.334673 0.646183 0.379289 0.517243 0.443595 0.477874 0.544649 0.465080 0.627320 0.430631 0.754616 0.376495 0.860915 0.344013 0.997402 0.557089 1.000000 0.989822 1.000000 1.000000 0.606422 diff --git a/datasets/pinganmajia/val/labels/订单1815121_4_7187085.txt b/datasets/pinganmajia/val/labels/订单1815121_4_7187085.txt new file mode 100644 index 0000000..cef1d83 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815121_4_7187085.txt @@ -0,0 +1 @@ +4 0.002115 0.527577 0.149103 0.435712 0.173603 0.410779 0.161346 0.381904 0.168346 0.343846 0.173603 0.312356 0.178846 0.312356 0.203346 0.240173 0.269833 0.171933 0.371321 0.148308 0.528808 0.220490 0.556795 0.291356 0.542808 0.359596 0.523551 0.418654 0.500808 0.464587 0.539308 0.530202 0.544551 0.649625 0.563795 0.783481 0.593551 0.917337 0.572551 1.000000 0.565885 1.000000 0.000372 0.998702 diff --git a/datasets/pinganmajia/val/labels/订单1815123_4_7187071.txt b/datasets/pinganmajia/val/labels/订单1815123_4_7187071.txt new file mode 100644 index 0000000..86379ca --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815123_4_7187071.txt @@ -0,0 +1 @@ +4 0.999608 0.494718 0.899869 0.443542 0.912124 0.385797 0.913873 0.330686 0.901634 0.300502 0.875376 0.191569 0.819379 0.129890 0.714395 0.102341 0.593660 0.123333 0.514918 0.183701 0.469428 0.313627 0.497435 0.400233 0.514918 0.506532 0.402941 0.566900 0.430931 0.583958 0.352190 0.766373 0.381944 0.888419 0.383693 0.999975 0.999608 0.996042 diff --git a/datasets/pinganmajia/val/labels/订单1815125_4_7187056.txt b/datasets/pinganmajia/val/labels/订单1815125_4_7187056.txt new file mode 100644 index 0000000..434e3fb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815125_4_7187056.txt @@ -0,0 +1 @@ +4 0.999625 0.358250 0.982133 0.341194 0.938383 0.274263 0.849150 0.241456 0.731908 0.258512 0.675917 0.322819 0.668917 0.400244 0.667167 0.467175 0.689917 0.527544 0.696917 0.557725 0.654925 0.585288 0.675917 0.610219 0.604175 0.707331 0.586683 0.792637 0.542933 0.902869 0.569183 0.893688 0.528933 0.960612 0.523692 0.997356 1.000000 0.998669 1.000000 0.494113 diff --git a/datasets/pinganmajia/val/labels/订单1815126_4_7187195.txt b/datasets/pinganmajia/val/labels/订单1815126_4_7187195.txt new file mode 100644 index 0000000..a2462d8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815126_4_7187195.txt @@ -0,0 +1 @@ +4 0.260367 0.330750 0.221983 0.383244 0.204267 0.468550 0.233792 0.507917 0.248554 0.603717 0.278083 0.670644 0.299737 0.846500 0.308596 0.891122 0.297771 0.927867 0.314500 0.937050 0.329267 0.910806 0.340092 0.866183 0.345012 0.717889 0.368633 0.811067 0.377492 0.866183 0.396196 0.887183 0.427692 0.901617 0.434579 0.883244 0.412925 0.834689 0.394225 0.746761 0.400129 0.620778 0.417846 0.552539 0.414896 0.472483 0.395208 0.412117 0.362729 0.347811 0.324342 0.309756 0.326313 0.267761 0.296783 0.245450 0.269225 0.267761 0.270208 0.322878 diff --git a/datasets/pinganmajia/val/labels/订单1815127_4_7187130.txt b/datasets/pinganmajia/val/labels/订单1815127_4_7187130.txt new file mode 100644 index 0000000..ef1092e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815127_4_7187130.txt @@ -0,0 +1 @@ +4 0.006415 0.666691 0.076299 0.666691 0.107794 0.679820 0.143229 0.652255 0.181612 0.599763 0.215080 0.591887 0.243621 0.573513 0.298738 0.465907 0.278070 0.423913 0.272163 0.368791 0.278070 0.286119 0.318425 0.192941 0.406023 0.156193 0.479841 0.221814 0.495588 0.295302 0.493621 0.370106 0.498542 0.404224 0.492635 0.455408 0.479841 0.480343 0.507402 0.553832 0.516262 0.574828 0.556612 0.601078 0.581219 0.728374 0.603860 0.877982 0.604822 1.000000 0.200582 1.000000 0.004449 0.998717 diff --git a/datasets/pinganmajia/val/labels/订单1815128_4_7187121.txt b/datasets/pinganmajia/val/labels/订单1815128_4_7187121.txt new file mode 100644 index 0000000..ac3a92a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815128_4_7187121.txt @@ -0,0 +1 @@ +4 0.563997 0.296557 0.526246 0.314931 0.498123 0.404172 0.473694 0.612830 0.464814 0.738811 0.480355 0.766373 0.489978 0.863489 0.498862 0.845115 0.502561 0.791311 0.503300 0.758497 0.515147 0.740130 0.515887 0.679762 0.529948 0.799179 0.538093 0.892354 0.532911 0.998658 0.587682 0.998658 0.607669 0.919916 0.610627 0.986848 0.670584 0.999969 0.672063 0.929103 0.691306 0.822807 0.703888 0.719126 0.718694 0.789992 0.720913 0.868735 0.726834 0.910729 0.740160 0.902853 0.744598 0.926480 0.757184 0.871357 0.754221 0.829363 0.754961 0.715192 0.745342 0.536718 0.737197 0.425169 0.723875 0.358236 0.698707 0.309678 0.655039 0.270307 0.655039 0.215192 0.638015 0.140391 0.583240 0.135138 0.555856 0.178443 0.560294 0.237500 0.564736 0.282124 diff --git a/datasets/pinganmajia/val/labels/订单1815129_4_7187094.txt b/datasets/pinganmajia/val/labels/订单1815129_4_7187094.txt new file mode 100644 index 0000000..00b2c5b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815129_4_7187094.txt @@ -0,0 +1 @@ +4 0.017382 0.589275 0.083966 0.552529 0.136531 0.501343 0.124267 0.444912 0.136531 0.419980 0.178573 0.339922 0.227631 0.283500 0.324005 0.265127 0.453652 0.333363 0.460668 0.398980 0.458914 0.468539 0.437880 0.538088 0.499202 0.574833 0.467670 0.620765 0.479935 0.677196 0.520236 0.700814 0.523730 0.724441 0.497461 0.807118 0.507971 0.912108 0.493953 0.997402 0.005118 0.996098 diff --git a/datasets/pinganmajia/val/labels/订单1815132_4_7187063.txt b/datasets/pinganmajia/val/labels/订单1815132_4_7187063.txt new file mode 100644 index 0000000..10f642c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815132_4_7187063.txt @@ -0,0 +1 @@ +4 0.002482 0.355670 0.045784 0.371413 0.085159 0.364853 0.114687 0.307116 0.152089 0.241495 0.137322 0.158815 0.137322 0.131258 0.136336 0.023652 0.441458 0.018399 0.426691 0.119453 0.427678 0.171944 0.422757 0.238873 0.413897 0.271683 0.398150 0.333358 0.517243 0.434412 0.527089 0.459346 0.548738 0.469845 0.529056 0.510523 0.558585 0.586642 0.554645 0.674567 0.546771 0.727059 0.572365 0.837296 0.582206 0.895041 0.600907 0.918660 0.590251 1.000000 0.002482 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815133_4_7187235.txt b/datasets/pinganmajia/val/labels/订单1815133_4_7187235.txt new file mode 100644 index 0000000..2694b99 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815133_4_7187235.txt @@ -0,0 +1 @@ +4 0.017257 0.022332 0.200981 0.024957 0.405122 0.076137 0.463455 0.132570 0.501363 0.208684 0.478030 0.312359 0.498446 0.368789 0.463455 0.427844 0.408038 0.489523 0.542188 0.597137 0.583021 0.644379 0.632595 0.763801 0.682170 0.825480 0.685087 0.988211 0.624835 1.000000 0.011424 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815134_4_7187393.txt b/datasets/pinganmajia/val/labels/订单1815134_4_7187393.txt new file mode 100644 index 0000000..c4ccbe9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815134_4_7187393.txt @@ -0,0 +1 @@ +4 1.000000 0.059444 0.882397 0.043295 0.723169 0.077415 0.653179 0.161404 0.654928 0.300509 0.658426 0.364815 0.716173 0.431744 0.595432 0.523611 0.525442 0.669282 0.458951 0.808387 0.374959 0.955370 0.367963 0.994738 1.000000 0.996049 diff --git a/datasets/pinganmajia/val/labels/订单1815136_4_7187098.txt b/datasets/pinganmajia/val/labels/订单1815136_4_7187098.txt new file mode 100644 index 0000000..289fb23 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815136_4_7187098.txt @@ -0,0 +1 @@ +4 0.614567 0.023654 0.618067 0.141767 0.612817 0.215254 0.663561 0.284808 0.686306 0.312371 0.660061 0.330742 0.670561 0.372737 0.569072 0.530217 0.581322 0.585333 0.560322 0.673262 0.542828 0.712633 0.537578 0.821554 0.518328 0.896358 0.548078 0.931792 0.491450 1.000000 1.000000 1.000000 1.000000 0.915317 0.990772 0.270375 0.997767 0.186383 0.999517 0.017092 diff --git a/datasets/pinganmajia/val/labels/订单1815137_4_7187185.txt b/datasets/pinganmajia/val/labels/订单1815137_4_7187185.txt new file mode 100644 index 0000000..b2f0591 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815137_4_7187185.txt @@ -0,0 +1 @@ +4 0.011016 0.263770 0.067005 0.215215 0.145742 0.191592 0.271732 0.225713 0.318971 0.287393 0.320716 0.335947 0.310221 0.370068 0.285729 0.417314 0.276979 0.446182 0.318971 0.452744 0.362721 0.612852 0.420456 0.791328 0.497747 1.000000 0.000495 1.000000 0.000000 0.942861 0.000000 0.403496 0.035508 0.408125 0.016263 0.384502 0.004010 0.347764 diff --git a/datasets/pinganmajia/val/labels/订单1815138_4_7187208.txt b/datasets/pinganmajia/val/labels/订单1815138_4_7187208.txt new file mode 100644 index 0000000..8b8b7d8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815138_4_7187208.txt @@ -0,0 +1 @@ +4 0.227148 0.343863 0.195768 0.351735 0.148711 0.426539 0.141745 0.517088 0.152201 0.549902 0.171367 0.577461 0.192292 0.577461 0.199258 0.549902 0.218437 0.605020 0.232370 0.678510 0.248060 0.736255 0.249805 0.757245 0.225404 0.787431 0.251549 0.797931 0.282917 0.779559 0.291641 0.803176 0.291641 0.830735 0.329987 0.834676 0.342188 0.820245 0.335208 0.779559 0.345664 0.740186 0.347409 0.666696 0.371810 0.586647 0.394466 0.561716 0.424102 0.468539 0.406667 0.409480 0.364844 0.351735 0.312552 0.333363 0.303841 0.296618 0.270716 0.275618 0.230638 0.286118 0.223659 0.312363 diff --git a/datasets/pinganmajia/val/labels/订单1815141_4_7187234.txt b/datasets/pinganmajia/val/labels/订单1815141_4_7187234.txt new file mode 100644 index 0000000..bb607a4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815141_4_7187234.txt @@ -0,0 +1 @@ +4 0.256732 0.430480 0.179739 0.479029 0.139503 0.522343 0.097503 0.580088 0.080013 0.631265 0.116758 0.656196 0.181490 0.652265 0.179739 0.712627 0.169242 0.838618 0.176248 0.968539 0.214745 0.984284 0.221739 0.998716 0.442209 0.998716 0.443961 0.923912 0.459712 0.807118 0.470209 0.758559 0.512196 0.666696 0.510458 0.566961 0.466706 0.493471 0.403712 0.429167 0.379216 0.419980 0.365216 0.345176 0.310980 0.325490 0.265477 0.349108 0.258484 0.389794 0.253229 0.409480 diff --git a/datasets/pinganmajia/val/labels/订单1815142_4_7187204.txt b/datasets/pinganmajia/val/labels/订单1815142_4_7187204.txt new file mode 100644 index 0000000..e134bea --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815142_4_7187204.txt @@ -0,0 +1 @@ +4 0.159740 0.480303 0.138750 0.496055 0.081003 0.523613 0.037253 0.610225 0.054753 0.632539 0.112500 0.635166 0.112500 0.687656 0.126497 0.725713 0.157995 0.816260 0.175495 0.864824 0.177240 0.897627 0.157995 0.935684 0.130000 0.959307 0.154492 0.976367 0.196484 0.956680 0.220990 0.937002 0.233229 0.929121 0.233229 0.959307 0.234987 0.988184 0.249167 1.000000 0.253815 1.000000 0.278724 0.989492 0.271732 0.926504 0.292721 0.898945 0.292721 0.846445 0.282227 0.761143 0.299727 0.724404 0.355716 0.691592 0.360964 0.632539 0.353971 0.561670 0.313724 0.524922 0.276979 0.497363 0.243737 0.484238 0.233229 0.435684 0.194740 0.416006 0.157995 0.437002 0.156237 0.457998 diff --git a/datasets/pinganmajia/val/labels/订单1815145_4_7187284.txt b/datasets/pinganmajia/val/labels/订单1815145_4_7187284.txt new file mode 100644 index 0000000..57d3431 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815145_4_7187284.txt @@ -0,0 +1 @@ +4 0.007396 0.627335 0.122882 0.538090 0.184120 0.521033 0.203368 0.496102 0.203368 0.444922 0.187627 0.391111 0.210370 0.363550 0.227870 0.279566 0.282118 0.250694 0.374850 0.238880 0.472836 0.254627 0.521829 0.311059 0.516586 0.430486 0.495590 0.489540 0.467593 0.535469 0.444838 0.549905 0.502581 0.589271 0.535833 0.670642 0.576076 0.708698 0.577824 0.769062 0.605822 0.846493 0.654387 1.000000 0.000000 1.000000 0.000000 0.890842 diff --git a/datasets/pinganmajia/val/labels/订单1815146_4_7187202.txt b/datasets/pinganmajia/val/labels/订单1815146_4_7187202.txt new file mode 100644 index 0000000..1d9d05b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815146_4_7187202.txt @@ -0,0 +1 @@ +4 0.664049 0.377950 0.591933 0.404196 0.547715 0.477690 0.522117 0.519680 0.526779 0.573486 0.573313 0.612855 0.601227 0.636479 0.615199 0.688971 0.610537 0.758529 0.631488 0.813642 0.629156 0.846453 0.652423 0.883201 0.696626 0.887137 0.696626 0.860891 0.691979 0.828080 0.743160 0.838581 0.771089 0.856955 0.824601 0.863512 0.840890 0.853010 0.780399 0.808391 0.771089 0.757215 0.787377 0.698157 0.817623 0.618106 0.831580 0.599732 0.850199 0.573486 0.875798 0.604983 0.875798 0.632543 0.908374 0.631228 0.915353 0.598426 0.920000 0.559048 0.910690 0.461938 0.892086 0.414697 0.857178 0.388452 0.799003 0.370078 0.829264 0.335952 0.808313 0.292647 0.715245 0.282145 0.666380 0.314957 0.668712 0.339888 diff --git a/datasets/pinganmajia/val/labels/订单1815147_4_7187258.txt b/datasets/pinganmajia/val/labels/订单1815147_4_7187258.txt new file mode 100644 index 0000000..8946256 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815147_4_7187258.txt @@ -0,0 +1 @@ +4 0.007412 0.501356 0.087137 0.489544 0.091075 0.472483 0.099933 0.410806 0.115683 0.388494 0.156037 0.322878 0.137338 0.257261 0.137338 0.215267 0.127492 0.120778 0.150129 0.066972 0.203279 0.040728 0.300721 0.048600 0.341075 0.102406 0.359775 0.192956 0.378479 0.236267 0.368633 0.297944 0.349933 0.388494 0.400129 0.455422 0.443437 0.472483 0.493633 0.543350 0.507412 0.633900 0.535958 0.761200 0.533987 0.862250 0.529067 0.994794 0.078279 0.997417 0.077296 0.952800 0.058596 0.898994 0.043833 0.908178 0.007412 0.967233 diff --git a/datasets/pinganmajia/val/labels/订单1815148_4_7187339.txt b/datasets/pinganmajia/val/labels/订单1815148_4_7187339.txt new file mode 100644 index 0000000..ed188b1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815148_4_7187339.txt @@ -0,0 +1 @@ +4 0.997816 0.430500 0.955669 0.412132 0.922296 0.367507 0.932835 0.312389 0.910009 0.275646 0.832732 0.178535 0.681691 0.174597 0.602658 0.213965 0.569284 0.304514 0.571041 0.341264 0.565771 0.401632 0.606171 0.456750 0.662370 0.496118 0.704517 0.518431 0.614954 0.615542 0.583336 0.699528 0.548206 0.800583 0.495520 0.930500 0.488504 1.000000 1.000000 1.000000 1.000000 0.509056 diff --git a/datasets/pinganmajia/val/labels/订单1815151_4_7187317.txt b/datasets/pinganmajia/val/labels/订单1815151_4_7187317.txt new file mode 100644 index 0000000..53ff5cd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815151_4_7187317.txt @@ -0,0 +1 @@ +4 1.000000 0.476135 0.921755 0.437013 0.907976 0.349087 0.924709 0.280846 0.906993 0.137801 0.845969 0.038064 0.824315 0.019689 0.639276 0.024939 0.559550 0.143051 0.532976 0.332026 0.545772 0.384519 0.563488 0.458010 0.555613 0.531500 0.555613 0.577433 0.488685 0.662734 0.469000 0.734913 0.412897 0.858272 0.381976 1.000000 0.691072 1.000000 0.999512 0.997381 1.000000 0.968885 diff --git a/datasets/pinganmajia/val/labels/订单1815152_4_7187356.txt b/datasets/pinganmajia/val/labels/订单1815152_4_7187356.txt new file mode 100644 index 0000000..9c7749a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815152_4_7187356.txt @@ -0,0 +1 @@ +4 0.007484 0.536716 0.023235 0.492096 0.007484 0.414669 0.000490 0.381863 0.002239 0.118088 0.149216 0.077402 0.387190 0.062966 0.527173 0.103652 0.549918 0.206005 0.530670 0.280809 0.446683 0.279498 0.411683 0.342488 0.387190 0.396299 0.348693 0.465858 0.320703 0.517034 0.366193 0.531471 0.443186 0.648272 0.460686 0.732255 0.462435 0.805748 0.511422 0.996042 0.000000 0.990858 0.000000 0.779620 diff --git a/datasets/pinganmajia/val/labels/订单1815153_4_7187364.txt b/datasets/pinganmajia/val/labels/订单1815153_4_7187364.txt new file mode 100644 index 0000000..b7a2a23 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815153_4_7187364.txt @@ -0,0 +1 @@ +4 1.000000 0.755482 0.937495 0.702096 0.885332 0.633854 0.854819 0.587923 0.778047 0.526243 0.772139 0.463249 0.751470 0.442253 0.726865 0.342513 0.653047 0.288711 0.573320 0.333327 0.555605 0.443561 0.558560 0.538053 0.567417 0.557734 0.519189 0.622044 0.490645 0.687656 0.443403 0.822826 0.449307 0.897630 0.480015 1.000000 0.827100 1.000000 1.000000 0.998691 diff --git a/datasets/pinganmajia/val/labels/订单1815155_4_7187365.txt b/datasets/pinganmajia/val/labels/订单1815155_4_7187365.txt new file mode 100644 index 0000000..c8392df --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815155_4_7187365.txt @@ -0,0 +1 @@ +4 1.000000 0.302795 0.949317 0.295288 0.946365 0.230981 0.943413 0.132558 0.910933 0.068250 0.834163 0.059064 0.737707 0.085314 0.695380 0.162737 0.690462 0.233609 0.675697 0.280853 0.689476 0.346468 0.663885 0.400276 0.612707 0.468513 0.600894 0.673237 0.576288 0.846468 0.583178 0.872712 0.577269 0.960641 0.592034 0.996071 0.605812 0.984263 0.611721 0.958013 0.614673 0.988199 0.621562 0.946205 0.621562 0.910769 0.623534 0.881897 0.642231 0.839904 0.648139 0.918647 0.651091 1.000000 0.652019 1.000000 1.000000 0.996090 diff --git a/datasets/pinganmajia/val/labels/订单1815156_4_7187420.txt b/datasets/pinganmajia/val/labels/订单1815156_4_7187420.txt new file mode 100644 index 0000000..3bbd8ee --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815156_4_7187420.txt @@ -0,0 +1 @@ +4 0.009232 0.599706 0.131716 0.573468 0.100229 0.555086 0.154477 0.509154 0.192958 0.507843 0.191209 0.478971 0.175474 0.442230 0.187712 0.387108 0.213954 0.349056 0.324199 0.279498 0.404690 0.276875 0.493922 0.316250 0.630408 0.351679 0.661912 0.405490 0.660163 0.446164 0.626912 0.472414 0.511422 0.475037 0.485180 0.526225 0.458938 0.564277 0.408186 0.594461 0.516667 0.675821 0.471176 0.716507 0.577925 0.867426 0.551667 0.901544 0.577925 0.994718 0.005735 0.999975 diff --git a/datasets/pinganmajia/val/labels/订单1815157_4_7187288.txt b/datasets/pinganmajia/val/labels/订单1815157_4_7187288.txt new file mode 100644 index 0000000..0f391d2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815157_4_7187288.txt @@ -0,0 +1 @@ +4 0.992523 0.591901 0.926030 0.555156 0.899780 0.503976 0.922535 0.477726 0.948785 0.418672 0.940035 0.392422 0.959282 0.294002 0.898032 0.242821 0.812292 0.221823 0.696806 0.246753 0.616319 0.308437 0.591829 0.353056 0.595324 0.423924 0.595324 0.485599 0.607569 0.530217 0.506088 0.623394 0.472836 0.706076 0.474583 0.786128 0.478090 0.872743 0.469340 0.958038 0.394097 0.975104 0.383600 0.997413 1.000000 0.996111 1.000000 0.838602 diff --git a/datasets/pinganmajia/val/labels/订单1815160_4_7187384.txt b/datasets/pinganmajia/val/labels/订单1815160_4_7187384.txt new file mode 100644 index 0000000..1ad85a6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815160_4_7187384.txt @@ -0,0 +1 @@ +4 0.726526 0.019702 0.672282 0.132558 0.651295 0.237548 0.661782 0.312356 0.709026 0.400279 0.534051 0.477702 0.583051 0.620750 0.527051 0.759856 0.485064 0.984269 0.537551 0.956712 0.528808 0.996077 1.000000 0.998683 1.000000 0.579779 0.996000 0.019702 diff --git a/datasets/pinganmajia/val/labels/订单1815161_4_7187429.txt b/datasets/pinganmajia/val/labels/订单1815161_4_7187429.txt new file mode 100644 index 0000000..431ac0a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815161_4_7187429.txt @@ -0,0 +1 @@ +4 1.000000 0.493269 0.967034 0.485577 0.964082 0.448827 0.948337 0.410769 0.952269 0.351718 0.978846 0.317596 0.987707 0.248045 0.984750 0.211295 0.954240 0.119436 0.893216 0.068250 0.836130 0.074814 0.769202 0.122058 0.736721 0.192923 0.721957 0.278224 0.728846 0.349090 0.746562 0.368776 0.753452 0.418647 0.666837 0.489513 0.663885 0.501321 0.604832 0.559064 0.556601 0.696859 0.524120 0.807096 0.540856 0.998699 0.631861 1.000000 0.999587 1.000000 1.000000 0.969378 diff --git a/datasets/pinganmajia/val/labels/订单1815164_4_7187460.txt b/datasets/pinganmajia/val/labels/订单1815164_4_7187460.txt new file mode 100644 index 0000000..f9356cd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815164_4_7187460.txt @@ -0,0 +1 @@ +4 0.007396 0.065651 0.143877 0.085339 0.212118 0.137830 0.189375 0.153576 0.219120 0.213950 0.233113 0.312370 0.229618 0.374054 0.168380 0.444922 0.276863 0.486910 0.269861 0.522344 0.331111 0.666701 0.346852 0.791372 0.385347 0.933108 0.394097 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815167_4_7187469.txt b/datasets/pinganmajia/val/labels/订单1815167_4_7187469.txt new file mode 100644 index 0000000..803f55d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815167_4_7187469.txt @@ -0,0 +1 @@ +4 1.000000 0.681038 0.984775 0.660104 0.934025 0.628607 0.925283 0.583988 0.955029 0.548555 0.967278 0.503936 0.949781 0.496055 0.918281 0.412067 0.867532 0.363512 0.757301 0.342517 0.661061 0.347768 0.552572 0.405510 0.547324 0.465874 0.599815 0.511808 0.619066 0.580052 0.620819 0.622042 0.648812 0.650917 0.512330 0.694221 0.477336 0.793962 0.463333 0.842517 0.428916 1.000000 0.810415 1.000000 1.000000 0.998702 diff --git a/datasets/pinganmajia/val/labels/订单1815168_4_7187492.txt b/datasets/pinganmajia/val/labels/订单1815168_4_7187492.txt new file mode 100644 index 0000000..85a61c9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815168_4_7187492.txt @@ -0,0 +1 @@ +4 1.000000 0.472537 0.924379 0.454044 0.948873 0.439608 0.973366 0.380551 0.990866 0.318873 0.999608 0.191569 0.901634 0.107586 0.714395 0.085270 0.635654 0.161385 0.604167 0.245380 0.586667 0.367426 0.574412 0.415980 0.588415 0.471103 0.527173 0.477659 0.469428 0.472414 0.334690 0.578713 0.283954 0.673199 0.173725 0.793934 0.112467 0.992096 0.999608 0.997353 1.000000 0.958860 diff --git a/datasets/pinganmajia/val/labels/订单1815169_4_7187454.txt b/datasets/pinganmajia/val/labels/订单1815169_4_7187454.txt new file mode 100644 index 0000000..f6f8a4c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815169_4_7187454.txt @@ -0,0 +1 @@ +4 0.415208 0.402881 0.394219 0.421250 0.383711 0.431748 0.331224 0.448809 0.283971 0.569541 0.327721 0.670596 0.353971 0.704717 0.369714 0.708652 0.395964 0.790020 0.409961 0.859570 0.425703 0.880566 0.411706 0.926504 0.436211 0.944873 0.448451 0.927813 0.455456 0.860879 0.455456 0.816260 0.474701 0.733584 0.479948 0.813643 0.490456 0.862197 0.523698 0.891064 0.551693 0.925186 0.567448 0.918623 0.549948 0.867441 0.541198 0.813643 0.534193 0.719150 0.546445 0.641719 0.558698 0.610225 0.574440 0.566924 0.563945 0.506553 0.541198 0.446182 0.499206 0.414687 0.514948 0.370068 0.504453 0.335947 0.439714 0.326758 0.415208 0.349072 0.409961 0.380566 diff --git a/datasets/pinganmajia/val/labels/订单1815171_4_7187588.txt b/datasets/pinganmajia/val/labels/订单1815171_4_7187588.txt new file mode 100644 index 0000000..c578e64 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815171_4_7187588.txt @@ -0,0 +1 @@ +4 0.009259 0.082662 0.198230 0.069545 0.345216 0.110224 0.357459 0.166651 0.348714 0.263765 0.364465 0.296574 0.359218 0.375316 0.346965 0.426497 0.448457 0.481613 0.478200 0.530170 0.532438 0.646968 0.537695 0.761142 0.577932 0.856944 0.663673 0.915995 0.679424 0.956682 0.663673 0.997361 0.000000 0.999977 0.000000 0.775957 diff --git a/datasets/pinganmajia/val/labels/订单1815172_4_7187546.txt b/datasets/pinganmajia/val/labels/订单1815172_4_7187546.txt new file mode 100644 index 0000000..838cb1e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815172_4_7187546.txt @@ -0,0 +1 @@ +4 0.985500 0.122067 0.808769 0.107625 0.698538 0.166683 0.640795 0.271673 0.675782 0.332038 0.677538 0.371404 0.695038 0.426529 0.728282 0.458019 0.600551 0.557760 0.488564 0.692933 0.464064 0.860904 0.532308 0.921279 0.576051 0.954087 0.547141 1.000000 0.995974 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815175_4_7188169.txt b/datasets/pinganmajia/val/labels/订单1815175_4_7188169.txt new file mode 100644 index 0000000..59bb8c6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815175_4_7188169.txt @@ -0,0 +1 @@ +4 0.998559 0.328137 0.994627 0.255949 0.958203 0.175903 0.898168 0.120787 0.779071 0.140463 0.653090 0.252014 0.635373 0.404248 0.645217 0.564352 0.623559 0.616840 0.565486 0.661470 0.594028 0.669340 0.532023 0.841250 0.488715 0.997419 1.000000 0.996123 1.000000 0.572593 diff --git a/datasets/pinganmajia/val/labels/订单1815176_4_7187541.txt b/datasets/pinganmajia/val/labels/订单1815176_4_7187541.txt new file mode 100644 index 0000000..69c01b6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815176_4_7187541.txt @@ -0,0 +1 @@ +4 1.000000 0.484421 0.943437 0.439676 0.898168 0.349132 0.896198 0.274329 0.894227 0.199525 0.856832 0.074850 0.809583 0.030231 0.716076 0.040729 0.642257 0.250706 0.647179 0.345197 0.656042 0.397685 0.688524 0.459363 0.593047 0.498738 0.613715 0.561725 0.551710 0.776956 0.545807 0.947558 0.545807 1.000000 0.894740 1.000000 1.000000 0.998796 diff --git a/datasets/pinganmajia/val/labels/订单1815179_4_7187597.txt b/datasets/pinganmajia/val/labels/订单1815179_4_7187597.txt new file mode 100644 index 0000000..c2ee9b7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815179_4_7187597.txt @@ -0,0 +1 @@ +4 1.000000 0.541939 0.934042 0.518341 0.960244 0.391049 0.974221 0.267683 0.862419 0.158756 0.699951 0.145634 0.521769 0.228317 0.492078 0.352988 0.493815 0.429098 0.532256 0.545902 0.392500 0.568207 0.280698 0.780805 0.282435 0.922537 0.308636 0.998659 1.000000 0.998659 diff --git a/datasets/pinganmajia/val/labels/订单1815181_4_7187641.txt b/datasets/pinganmajia/val/labels/订单1815181_4_7187641.txt new file mode 100644 index 0000000..fd0dd55 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815181_4_7187641.txt @@ -0,0 +1 @@ +4 0.014493 0.681078 0.096732 0.624645 0.068725 0.591838 0.072222 0.568211 0.028480 0.447475 0.124722 0.360870 0.336454 0.362181 0.444935 0.419926 0.460686 0.520968 0.465931 0.566900 0.591912 0.666642 0.579673 0.763750 0.609412 0.978971 0.581422 0.998664 0.000000 0.997365 0.000000 0.899289 diff --git a/datasets/pinganmajia/val/labels/订单1815182_4_7187613.txt b/datasets/pinganmajia/val/labels/订单1815182_4_7187613.txt new file mode 100644 index 0000000..dff3490 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815182_4_7187613.txt @@ -0,0 +1 @@ +4 0.987369 0.682390 0.922631 0.636458 0.856127 0.582647 0.997859 0.510466 1.000000 0.317463 1.000000 0.194252 0.794886 0.202071 0.653154 0.313627 0.560425 0.452733 0.549918 0.515723 0.455425 0.501287 0.399444 0.573468 0.280458 0.681078 0.135229 0.830686 0.033742 0.994718 0.996111 0.998664 1.000000 0.971458 1.000000 0.876949 0.957614 0.835931 1.000000 0.787034 1.000000 0.763456 diff --git a/datasets/pinganmajia/val/labels/订单1815183_4_7187674.txt b/datasets/pinganmajia/val/labels/订单1815183_4_7187674.txt new file mode 100644 index 0000000..771882e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815183_4_7187674.txt @@ -0,0 +1 @@ +4 -0.000000 0.493962 0.119359 0.442269 0.145603 0.422587 0.115859 0.414712 0.117603 0.375346 0.114103 0.333346 0.133359 0.324163 0.152603 0.271673 0.219090 0.206048 0.318833 0.186365 0.434321 0.230990 0.460564 0.297913 0.472808 0.349096 0.462308 0.469827 0.416821 0.522327 0.504308 0.556442 0.495564 0.667990 0.516551 0.783481 0.554359 1.000000 0.218846 1.000000 -0.000000 0.997423 diff --git a/datasets/pinganmajia/val/labels/订单1815184_4_7187654.txt b/datasets/pinganmajia/val/labels/订单1815184_4_7187654.txt new file mode 100644 index 0000000..c646e22 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815184_4_7187654.txt @@ -0,0 +1 @@ +4 0.998559 0.270394 0.968047 0.292697 0.964115 0.255949 0.942457 0.157523 0.885373 0.073542 0.801710 0.061725 0.647179 0.160150 0.631432 0.273009 0.654071 0.320255 0.709193 0.341250 0.744627 0.392442 0.786944 0.447558 0.811554 0.464618 0.800729 0.493484 0.782023 0.549919 0.761354 0.603727 0.790885 0.731019 0.816476 0.902940 0.821198 1.000000 0.997578 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815185_4_7187651.txt b/datasets/pinganmajia/val/labels/订单1815185_4_7187651.txt new file mode 100644 index 0000000..be30661 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815185_4_7187651.txt @@ -0,0 +1 @@ +4 0.999514 0.271667 0.892231 0.244103 0.891250 0.167987 0.902077 0.080064 0.888293 0.019692 0.634361 0.026256 0.623534 0.156179 0.633375 0.258538 0.618611 0.274288 0.636327 0.341218 0.597942 0.360904 0.574317 0.450141 0.551683 0.650929 0.558572 0.854340 0.563490 0.874026 0.574317 0.940955 0.596957 0.980327 0.610736 0.975077 0.619639 1.000000 1.000000 1.000000 1.000000 0.451564 diff --git a/datasets/pinganmajia/val/labels/订单1815187_4_7187722.txt b/datasets/pinganmajia/val/labels/订单1815187_4_7187722.txt new file mode 100644 index 0000000..1618259 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815187_4_7187722.txt @@ -0,0 +1 @@ +4 0.997744 0.051192 0.822769 0.049885 0.693282 0.106317 0.653038 0.200798 0.649538 0.280856 0.642538 0.330721 0.703782 0.419962 0.653038 0.469827 0.560295 0.538077 0.556795 0.576135 0.532308 0.598442 0.453564 0.723115 0.513051 0.797913 0.542808 0.805788 0.546308 0.841221 0.527372 1.000000 0.999500 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815190_4_7187739.txt b/datasets/pinganmajia/val/labels/订单1815190_4_7187739.txt new file mode 100644 index 0000000..ecf5eca --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815190_4_7187739.txt @@ -0,0 +1 @@ +4 0.623437 0.202090 0.537695 0.242773 0.499206 0.339883 0.499206 0.392383 0.544701 0.450117 0.556940 0.481621 0.544701 0.522305 0.574440 0.622041 0.583190 0.704717 0.579688 0.750645 0.546445 0.797891 0.595443 0.816260 0.633932 0.783457 0.635677 0.737520 0.640938 0.637783 0.663685 0.590537 0.675924 0.648281 0.688177 0.750645 0.679427 0.786084 0.702174 0.824141 0.744167 0.817578 0.745924 0.755898 0.749414 0.654844 0.761667 0.577422 0.798411 0.457998 0.845651 0.370068 0.850911 0.272959 0.798411 0.219150 0.724922 0.192900 0.735417 0.116787 0.723177 0.081357 0.653177 0.080039 0.609440 0.104980 0.612930 0.141719 0.623437 0.177158 diff --git a/datasets/pinganmajia/val/labels/订单1815191_4_7187731.txt b/datasets/pinganmajia/val/labels/订单1815191_4_7187731.txt new file mode 100644 index 0000000..af930ae --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815191_4_7187731.txt @@ -0,0 +1 @@ +4 0.752482 0.458031 0.669804 0.484281 0.575313 0.552516 0.521183 0.657508 0.479841 0.780866 0.419804 0.889788 0.418854 1.000000 1.000000 1.000000 1.000000 0.488897 0.950313 0.467214 0.981814 0.370106 0.997561 0.342549 1.000000 0.316103 1.000000 0.253897 0.992635 0.249371 1.000000 0.214567 1.000000 0.168448 0.987714 0.063015 0.959173 0.021021 0.778070 0.019714 0.737714 0.119453 0.722953 0.238873 0.713113 0.296618 0.726887 0.363546 diff --git a/datasets/pinganmajia/val/labels/订单1815193_4_7187752.txt b/datasets/pinganmajia/val/labels/订单1815193_4_7187752.txt new file mode 100644 index 0000000..4508cd2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815193_4_7187752.txt @@ -0,0 +1 @@ +4 0.000394 0.446233 0.047639 0.387179 0.033646 0.339931 0.033646 0.322873 0.035394 0.259878 0.087882 0.191641 0.170127 0.169332 0.283866 0.179826 0.373102 0.229696 0.388854 0.307127 0.397593 0.377986 0.385347 0.447543 0.467593 0.485599 0.436088 0.535469 0.506088 0.603707 0.523588 0.624705 0.499086 0.635208 0.535833 0.745443 0.572581 0.872743 0.593576 0.946233 0.574329 0.947543 0.567326 0.996102 0.002153 0.998724 diff --git a/datasets/pinganmajia/val/labels/订单1815194_4_7187770.txt b/datasets/pinganmajia/val/labels/订单1815194_4_7187770.txt new file mode 100644 index 0000000..d86f2fe --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815194_4_7187770.txt @@ -0,0 +1 @@ +4 1.000000 0.456449 0.920774 0.452769 0.869596 0.433083 0.802663 0.405519 0.809553 0.370090 0.809553 0.316282 0.819399 0.246731 0.821365 0.156179 0.772154 0.095814 0.705226 0.078750 0.651091 0.102372 0.594990 0.185051 0.577269 0.262481 0.587115 0.308410 0.595971 0.388462 0.613688 0.459327 0.526091 0.564314 0.502466 0.665365 0.473923 0.847782 0.475894 0.950141 0.478846 1.000000 0.479115 1.000000 0.546760 0.997385 0.561524 0.910769 0.594005 0.993449 1.000000 0.997359 diff --git a/datasets/pinganmajia/val/labels/订单1815195_4_7187776.txt b/datasets/pinganmajia/val/labels/订单1815195_4_7187776.txt new file mode 100644 index 0000000..266f23a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815195_4_7187776.txt @@ -0,0 +1 @@ +4 0.005648 0.169332 0.115880 0.148333 0.227870 0.178516 0.313611 0.280877 0.339861 0.355677 0.331111 0.435729 0.320613 0.500035 0.315359 0.561719 0.364352 0.599774 0.444838 0.687700 0.507836 0.808438 0.541076 0.876675 0.590069 0.990851 0.571100 1.000000 0.002153 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815196_4_7187938.txt b/datasets/pinganmajia/val/labels/订单1815196_4_7187938.txt new file mode 100644 index 0000000..0ea4c76 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815196_4_7187938.txt @@ -0,0 +1 @@ +4 0.011016 0.377939 0.084505 0.332012 0.203490 0.326758 0.313724 0.392383 0.290977 0.446182 0.282227 0.476367 0.257734 0.538047 0.287474 0.547236 0.282227 0.612852 0.367969 0.795264 0.390716 0.842510 0.422214 0.946182 0.437956 0.992119 0.065573 1.000000 0.004023 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815198_4_7187792.txt b/datasets/pinganmajia/val/labels/订单1815198_4_7187792.txt new file mode 100644 index 0000000..4842597 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815198_4_7187792.txt @@ -0,0 +1 @@ +4 1.000000 0.568866 0.936133 0.518385 0.936133 0.401589 0.897677 0.282165 0.834760 0.213926 0.773581 0.187680 0.644245 0.227045 0.506178 0.284794 0.422277 0.447517 0.450240 0.535447 0.500927 0.606314 0.436259 0.675868 0.390824 0.742792 0.354119 0.858282 0.306076 1.000000 0.993810 1.000000 1.000000 0.695808 diff --git a/datasets/pinganmajia/val/labels/订单1815199_4_7187791.txt b/datasets/pinganmajia/val/labels/订单1815199_4_7187791.txt new file mode 100644 index 0000000..0782a71 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815199_4_7187791.txt @@ -0,0 +1 @@ +4 0.660061 0.461975 0.639067 0.476413 0.567322 0.564338 0.556822 0.611583 0.565572 0.640454 0.581322 0.623392 0.597067 0.597146 0.616317 0.636517 0.604067 0.660137 0.644311 0.664075 0.665311 0.649638 0.674061 0.628642 0.698556 0.649638 0.721306 0.685071 0.740550 0.681133 0.733550 0.644392 0.779044 0.582708 0.779044 0.524967 0.752800 0.482971 0.738800 0.451475 0.710806 0.414729 0.674061 0.435729 0.670561 0.448850 diff --git a/datasets/pinganmajia/val/labels/订单1815202_4_7187821.txt b/datasets/pinganmajia/val/labels/订单1815202_4_7187821.txt new file mode 100644 index 0000000..8701c7c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815202_4_7187821.txt @@ -0,0 +1 @@ +4 0.004010 0.387129 0.042513 0.335947 0.047760 0.240146 0.105495 0.173223 0.220990 0.157471 0.441458 0.196846 0.467708 0.267705 0.464206 0.321514 0.378464 0.335947 0.318971 0.396318 0.280482 0.443564 0.212240 0.472432 0.301471 0.556426 0.339974 0.632539 0.397708 0.694219 0.401211 0.786084 0.360964 0.833320 0.322474 0.845137 0.310221 0.929121 0.322474 0.992119 0.002266 0.999990 diff --git a/datasets/pinganmajia/val/labels/订单1815204_4_7187943.txt b/datasets/pinganmajia/val/labels/订单1815204_4_7187943.txt new file mode 100644 index 0000000..7685eea --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815204_4_7187943.txt @@ -0,0 +1 @@ +4 0.010373 0.325509 0.039896 0.317639 0.024149 0.278264 0.006432 0.196898 0.019227 0.162778 0.041866 0.064352 0.092066 0.015799 0.196398 0.017106 0.268247 0.070914 0.287925 0.166713 0.301710 0.259896 0.298759 0.363565 0.372578 0.418681 0.404071 0.566979 0.513325 0.993484 0.000000 0.997407 0.000000 0.870104 diff --git a/datasets/pinganmajia/val/labels/订单1815206_4_7187847.txt b/datasets/pinganmajia/val/labels/订单1815206_4_7187847.txt new file mode 100644 index 0000000..c7b7640 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815206_4_7187847.txt @@ -0,0 +1 @@ +4 0.012650 0.412109 0.061644 0.377986 0.035394 0.342552 0.009144 0.262500 0.030139 0.242821 0.051146 0.253316 0.030139 0.173264 0.070394 0.089271 0.157882 0.038090 0.296111 0.031528 0.390602 0.072214 0.465845 0.145703 0.474583 0.199514 0.436088 0.270373 0.420347 0.359618 0.397593 0.421293 0.350359 0.484288 0.409850 0.534158 0.488588 0.619462 0.506088 0.786128 0.509583 0.889800 0.492697 1.000000 0.127894 1.000000 0.010891 0.998724 diff --git a/datasets/pinganmajia/val/labels/订单1815207_4_7187822.txt b/datasets/pinganmajia/val/labels/订单1815207_4_7187822.txt new file mode 100644 index 0000000..ffc04b3 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815207_4_7187822.txt @@ -0,0 +1 @@ +4 0.994608 0.405539 0.934565 0.359608 0.867635 0.316299 0.885355 0.295302 0.891262 0.225752 0.900116 0.148317 0.887322 0.015776 0.672757 0.018399 0.646183 0.132574 0.638309 0.229681 0.654056 0.332051 0.657010 0.380605 0.523150 0.458031 0.464093 0.647010 0.493621 0.736250 0.485748 0.954093 0.474583 1.000000 0.996569 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815208_4_7187862.txt b/datasets/pinganmajia/val/labels/订单1815208_4_7187862.txt new file mode 100644 index 0000000..b71e790 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815208_4_7187862.txt @@ -0,0 +1 @@ +4 0.229740 0.404189 0.215742 0.425186 0.168490 0.442246 0.131745 0.552480 0.121250 0.629912 0.145742 0.694219 0.152747 0.721777 0.112500 0.771641 0.150990 0.808389 0.182487 0.808389 0.217487 0.834639 0.243737 0.828076 0.273477 0.770332 0.294479 0.733584 0.327721 0.713906 0.376719 0.749336 0.399466 0.784766 0.450208 0.817578 0.493945 0.812324 0.523698 0.774268 0.506198 0.730957 0.523698 0.662725 0.527201 0.599727 0.509701 0.526240 0.497448 0.460625 0.451953 0.422559 0.395964 0.412061 0.369714 0.349072 0.332969 0.308389 0.268229 0.318887 0.240234 0.341201 0.240234 0.372695 0.234987 0.391064 diff --git a/datasets/pinganmajia/val/labels/订单1815210_4_7187880.txt b/datasets/pinganmajia/val/labels/订单1815210_4_7187880.txt new file mode 100644 index 0000000..dc7a252 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815210_4_7187880.txt @@ -0,0 +1 @@ +4 0.597187 0.283457 0.528945 0.314951 0.490456 0.447500 0.530690 0.503926 0.549948 0.547236 0.569193 0.593164 0.584935 0.688965 0.604193 0.745400 0.584935 0.782139 0.595443 0.799199 0.621680 0.797891 0.640938 0.757207 0.649687 0.730957 0.642682 0.658779 0.663685 0.570859 0.670677 0.645664 0.682930 0.699463 0.675924 0.741465 0.707422 0.765078 0.719674 0.793955 0.751172 0.801826 0.759922 0.791328 0.745924 0.750645 0.759922 0.660098 0.759922 0.614160 0.756419 0.526240 0.773919 0.465869 0.782669 0.392383 0.765169 0.334639 0.747669 0.308389 0.667174 0.278203 0.677682 0.225713 0.646185 0.188965 0.591940 0.199463 0.584935 0.228340 0.588438 0.255898 diff --git a/datasets/pinganmajia/val/labels/订单1815211_4_7187877.txt b/datasets/pinganmajia/val/labels/订单1815211_4_7187877.txt new file mode 100644 index 0000000..3772de8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815211_4_7187877.txt @@ -0,0 +1 @@ +4 0.014505 0.379258 0.075755 0.349072 0.065260 0.303145 0.093255 0.292646 0.077500 0.262461 0.089753 0.254580 0.089753 0.213906 0.124753 0.183721 0.182487 0.186338 0.231484 0.227021 0.236732 0.249336 0.240234 0.274268 0.276979 0.283457 0.294479 0.308389 0.290977 0.332012 0.353971 0.346445 0.357474 0.370068 0.437956 0.481621 0.460703 0.514424 0.457201 0.547236 0.446706 0.670596 0.436211 0.703398 0.411706 0.733584 0.406458 0.730957 0.397708 0.703398 0.383711 0.671904 0.367969 0.725713 0.366211 0.808389 0.360964 0.841201 0.367969 0.967178 0.352214 0.988184 0.357070 1.000000 0.330273 1.000000 0.308477 0.996055 0.289232 0.985557 0.282227 0.887129 0.264727 0.837266 0.247227 0.755898 0.227982 0.837266 0.241979 0.883193 0.250729 0.947500 0.259479 0.990801 0.175495 0.993428 0.154492 0.934375 0.138750 0.868760 0.110755 0.817578 0.086250 0.754580 0.072253 0.683721 0.054753 0.586602 0.053008 0.678467 0.039010 0.711279 0.051250 0.751963 0.033763 0.772959 0.042513 0.793955 0.012760 0.774268 0.000508 0.753271 diff --git a/datasets/pinganmajia/val/labels/订单1815213_4_7187923.txt b/datasets/pinganmajia/val/labels/订单1815213_4_7187923.txt new file mode 100644 index 0000000..8b6372f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815213_4_7187923.txt @@ -0,0 +1 @@ +4 0.205234 0.299199 0.187734 0.313643 0.130000 0.346445 0.089753 0.472432 0.105495 0.509180 0.131745 0.551172 0.117747 0.583984 0.136992 0.604980 0.154492 0.674531 0.159740 0.725713 0.102005 0.758525 0.121250 0.772959 0.201732 0.751963 0.213984 0.761143 0.217487 0.800518 0.250729 0.797891 0.261224 0.751963 0.276979 0.644346 0.301471 0.622041 0.304974 0.580039 0.310221 0.535420 0.373216 0.448809 0.359219 0.355635 0.341719 0.334639 0.296224 0.307080 0.290977 0.272959 0.283971 0.227021 0.236732 0.219150 0.206992 0.250645 0.203490 0.279521 diff --git a/datasets/pinganmajia/val/labels/订单1815214_4_7187974.txt b/datasets/pinganmajia/val/labels/订单1815214_4_7187974.txt new file mode 100644 index 0000000..91d9e54 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815214_4_7187974.txt @@ -0,0 +1 @@ +4 0.390708 0.018356 0.371458 0.103656 0.359208 0.173212 0.385458 0.262450 0.352208 0.372687 0.392458 0.417306 0.453700 0.443556 0.542933 0.530169 0.497442 0.556412 0.583183 0.830694 0.597175 0.887125 0.572683 0.997356 -0.000000 0.998662 -0.000000 0.663831 0.005750 0.020981 diff --git a/datasets/pinganmajia/val/labels/订单1815215_4_7187954.txt b/datasets/pinganmajia/val/labels/订单1815215_4_7187954.txt new file mode 100644 index 0000000..b016316 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815215_4_7187954.txt @@ -0,0 +1 @@ +4 0.003872 0.480327 0.066859 0.452769 0.107103 0.460644 0.094859 0.400279 0.080859 0.359596 0.091359 0.305788 0.136859 0.236240 0.231346 0.178490 0.388821 0.208673 0.457064 0.282163 0.429064 0.368779 0.411564 0.447519 0.404564 0.482952 0.446564 0.500019 0.406321 0.576135 0.451808 0.645683 0.488564 0.679808 0.481564 0.737548 0.509551 0.850413 0.521487 1.000000 0.000000 1.000000 0.000000 0.711365 diff --git a/datasets/pinganmajia/val/labels/订单1815216_4_7187953.txt b/datasets/pinganmajia/val/labels/订单1815216_4_7187953.txt new file mode 100644 index 0000000..f8680bd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815216_4_7187953.txt @@ -0,0 +1 @@ +4 1.000000 0.661111 0.944427 0.623403 0.879462 0.582720 0.818438 0.528924 0.809583 0.459363 0.817457 0.397685 0.825330 0.275637 0.777101 0.097164 0.676710 0.063044 0.584193 0.132593 0.547769 0.282199 0.545807 0.440995 0.556632 0.484306 0.532023 0.536794 0.496589 0.570914 0.418837 0.694271 0.350920 0.912118 0.318437 0.997419 0.999540 0.997419 1.000000 0.841597 diff --git a/datasets/pinganmajia/val/labels/订单1815219_4_7187996.txt b/datasets/pinganmajia/val/labels/订单1815219_4_7187996.txt new file mode 100644 index 0000000..60041b9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815219_4_7187996.txt @@ -0,0 +1 @@ +4 0.976863 0.081336 0.826389 0.048529 0.654902 0.074779 0.525425 0.169265 0.516667 0.293934 0.535915 0.425172 0.593660 0.518346 0.514918 0.694203 0.548170 0.766373 0.493922 0.980294 0.509150 1.000000 1.000000 1.000000 1.000000 0.892145 diff --git a/datasets/pinganmajia/val/labels/订单1815220_4_7188011.txt b/datasets/pinganmajia/val/labels/订单1815220_4_7188011.txt new file mode 100644 index 0000000..96d1599 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815220_4_7188011.txt @@ -0,0 +1 @@ +4 0.000000 0.550928 0.103871 0.484294 0.136350 0.459361 0.132413 0.410806 0.114700 0.380622 0.110762 0.325506 0.122571 0.297944 0.132413 0.270383 0.152100 0.183772 0.184579 0.152272 0.212138 0.133900 0.292846 0.161461 0.335171 0.229700 0.348950 0.312378 0.347967 0.372744 0.312533 0.496106 0.432613 0.584033 0.495604 0.769072 0.534525 1.000000 0.177446 1.000000 0.007412 0.998733 0.000000 0.577333 diff --git a/datasets/pinganmajia/val/labels/订单1815222_4_7188020.txt b/datasets/pinganmajia/val/labels/订单1815222_4_7188020.txt new file mode 100644 index 0000000..da1f39b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815222_4_7188020.txt @@ -0,0 +1 @@ +4 0.000490 0.540650 0.051225 0.526225 0.098480 0.468480 0.143971 0.482917 0.152712 0.421238 0.128219 0.400233 0.114232 0.339865 0.152712 0.310993 0.191209 0.244069 0.259461 0.179767 0.388938 0.150895 0.490425 0.153517 0.560425 0.249314 0.534167 0.354301 0.506176 0.412047 0.502680 0.469792 0.511422 0.590527 0.583170 0.700760 0.632157 0.809681 0.665408 0.952733 0.693399 0.999975 0.000000 0.999975 0.000000 0.668885 diff --git a/datasets/pinganmajia/val/labels/订单1815225_4_7188028.txt b/datasets/pinganmajia/val/labels/订单1815225_4_7188028.txt new file mode 100644 index 0000000..39aab73 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815225_4_7188028.txt @@ -0,0 +1 @@ +4 0.759803 0.492161 0.625069 0.523655 0.525336 0.629957 0.453588 0.763819 0.432593 0.870113 0.415104 1.000000 0.997778 1.000000 1.000000 0.777587 1.000000 0.056311 0.999525 0.051215 0.875289 0.076155 0.780799 0.154896 0.749306 0.270373 0.738808 0.368802 0.744051 0.439670 diff --git a/datasets/pinganmajia/val/labels/订单1815231_4_7188097.txt b/datasets/pinganmajia/val/labels/订单1815231_4_7188097.txt new file mode 100644 index 0000000..4e75d5a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815231_4_7188097.txt @@ -0,0 +1 @@ +4 0.297875 0.019727 0.343365 0.097156 0.329365 0.177211 0.317125 0.238891 0.259375 0.339938 0.367865 0.360938 0.325875 0.418680 0.278625 0.458055 0.334615 0.556477 0.360865 0.615531 0.395865 0.796633 0.429104 0.914742 0.469354 0.971172 0.462948 1.000000 0.000000 1.000000 0.000000 0.248688 0.000406 0.015797 diff --git a/datasets/pinganmajia/val/labels/订单1815233_4_7188119.txt b/datasets/pinganmajia/val/labels/订单1815233_4_7188119.txt new file mode 100644 index 0000000..8ca4b10 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815233_4_7188119.txt @@ -0,0 +1 @@ +4 0.000000 0.359410 0.045774 0.342532 0.116639 0.313660 0.169793 0.316282 0.164870 0.206045 0.158966 0.153551 0.187510 0.024942 0.393216 0.021006 0.423726 0.144365 0.428649 0.249353 0.423726 0.314968 0.415856 0.371404 0.496562 0.426519 0.549712 0.532821 0.572351 0.736231 0.584163 0.843840 0.544793 1.000000 0.006389 1.000000 0.000000 0.404718 diff --git a/datasets/pinganmajia/val/labels/订单1815234_4_7188135.txt b/datasets/pinganmajia/val/labels/订单1815234_4_7188135.txt new file mode 100644 index 0000000..ec496c9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815234_4_7188135.txt @@ -0,0 +1 @@ +4 0.997859 0.503909 0.952369 0.488162 0.906879 0.485539 0.894624 0.440919 0.924379 0.429105 0.920866 0.381863 0.889379 0.356924 0.866634 0.274252 0.786144 0.237500 0.644412 0.255882 0.583170 0.350368 0.598922 0.433039 0.625163 0.505221 0.607663 0.704694 0.618170 0.805748 0.600670 0.943542 0.583170 0.999975 0.997859 0.999975 diff --git a/datasets/pinganmajia/val/labels/订单1815235_4_7188129.txt b/datasets/pinganmajia/val/labels/订单1815235_4_7188129.txt new file mode 100644 index 0000000..0370c29 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815235_4_7188129.txt @@ -0,0 +1 @@ +4 0.010894 0.094521 0.182372 0.132579 0.269861 0.213942 0.289106 0.312371 0.285606 0.426542 0.289106 0.578775 0.315356 0.639142 0.331100 0.721817 0.339850 0.821554 0.364350 0.916042 0.418572 1.000000 0.000000 1.000000 0.000000 0.607704 diff --git a/datasets/pinganmajia/val/labels/订单1815236_4_7188137.txt b/datasets/pinganmajia/val/labels/订单1815236_4_7188137.txt new file mode 100644 index 0000000..f9777b1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815236_4_7188137.txt @@ -0,0 +1 @@ +4 0.990748 0.274297 0.882263 0.217862 0.719536 0.238864 0.646042 0.339915 0.656544 0.419964 0.656544 0.481648 0.688040 0.549886 0.541051 0.586634 0.485066 0.635185 0.420322 0.770355 0.348580 0.904219 0.348580 0.988203 1.000000 0.998544 1.000000 0.622479 diff --git a/datasets/pinganmajia/val/labels/订单1815240_4_7188186.txt b/datasets/pinganmajia/val/labels/订单1815240_4_7188186.txt new file mode 100644 index 0000000..9db839b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815240_4_7188186.txt @@ -0,0 +1 @@ +4 0.999540 0.254641 0.958203 0.255949 0.971988 0.145718 0.962144 0.023669 0.725920 0.021042 0.689505 0.187708 0.697378 0.278264 0.715095 0.329444 0.680642 0.384560 0.651120 0.408183 0.630451 0.434433 0.540885 0.521042 0.494627 0.687708 0.431632 0.876690 0.387352 1.000000 1.000000 1.000000 1.000000 0.601285 diff --git a/datasets/pinganmajia/val/labels/订单1815241_4_7188350.txt b/datasets/pinganmajia/val/labels/订单1815241_4_7188350.txt new file mode 100644 index 0000000..9a00b33 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815241_4_7188350.txt @@ -0,0 +1 @@ +4 0.014601 0.090510 0.142665 0.039331 0.328949 0.059013 0.419757 0.131195 0.443045 0.217807 0.445370 0.299172 0.429076 0.379227 0.356887 0.473712 0.415097 0.576075 0.463998 0.694189 0.491946 0.767675 0.531527 0.855603 0.536187 0.993399 0.000632 0.996025 diff --git a/datasets/pinganmajia/val/labels/订单1815242_4_7188267.txt b/datasets/pinganmajia/val/labels/订单1815242_4_7188267.txt new file mode 100644 index 0000000..7606ed6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815242_4_7188267.txt @@ -0,0 +1 @@ +4 0.595443 0.359570 0.555195 0.400254 0.548190 0.456680 0.556940 0.489492 0.572695 0.503926 0.572695 0.578730 0.586693 0.623350 0.576185 0.643037 0.604193 0.644346 0.621680 0.620723 0.623437 0.586602 0.635677 0.555107 0.639180 0.597100 0.651432 0.620723 0.649687 0.646973 0.663685 0.648281 0.679427 0.623350 0.695182 0.594482 0.686432 0.497363 0.707422 0.489492 0.717917 0.447500 0.723177 0.397627 0.696927 0.360879 0.656680 0.345137 0.644427 0.301826 0.611185 0.304453 0.605938 0.328076 0.607682 0.346445 diff --git a/datasets/pinganmajia/val/labels/订单1815243_4_7188197.txt b/datasets/pinganmajia/val/labels/订单1815243_4_7188197.txt new file mode 100644 index 0000000..20d8754 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815243_4_7188197.txt @@ -0,0 +1 @@ +4 1.000000 0.190016 0.968033 0.150948 0.953266 0.081389 0.925711 0.051209 0.880435 0.019714 0.776103 0.034150 0.721967 0.089265 0.727874 0.269052 0.759369 0.320237 0.815472 0.385850 0.791850 0.629951 0.803664 0.754616 0.820392 0.849109 0.849920 0.992149 1.000000 0.998562 diff --git a/datasets/pinganmajia/val/labels/订单1815244_4_7188181.txt b/datasets/pinganmajia/val/labels/订单1815244_4_7188181.txt new file mode 100644 index 0000000..fb65e9a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815244_4_7188181.txt @@ -0,0 +1 @@ +4 0.000000 0.447598 0.049362 0.427853 0.031940 0.395049 0.004049 0.362235 0.000000 0.321578 -0.000000 0.169059 0.143490 0.136510 0.270716 0.154882 0.335208 0.224441 0.342188 0.297931 0.331719 0.358294 0.323008 0.398980 0.298607 0.438353 0.270716 0.473784 0.373555 0.551216 0.406667 0.594520 0.411901 0.752000 0.420612 0.862235 0.436302 0.910794 0.472904 0.959353 0.476393 0.997402 0.002305 0.998716 0.000000 0.853490 diff --git a/datasets/pinganmajia/val/labels/订单1815245_4_7188163.txt b/datasets/pinganmajia/val/labels/订单1815245_4_7188163.txt new file mode 100644 index 0000000..c6b288b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815245_4_7188163.txt @@ -0,0 +1 @@ +4 0.558698 0.229648 0.485208 0.267705 0.411706 0.366133 0.406458 0.448809 0.427461 0.526240 0.465951 0.544609 0.506198 0.611543 0.504453 0.696846 0.504453 0.766396 0.521953 0.853008 0.525443 0.881885 0.497448 0.913379 0.516693 0.929121 0.548190 0.922559 0.570937 0.881885 0.597187 0.863506 0.590195 0.800518 0.591940 0.746709 0.628685 0.730957 0.639180 0.812324 0.639180 0.868760 0.663685 0.904189 0.688177 0.944873 0.730169 0.957998 0.737174 0.933066 0.721419 0.876631 0.730169 0.825449 0.733672 0.750645 0.745924 0.671904 0.738919 0.632539 0.773919 0.611543 0.798411 0.561670 0.838659 0.510488 0.836914 0.427812 0.826406 0.370068 0.756419 0.288701 0.744167 0.259834 0.667174 0.225713 0.681172 0.125977 0.595443 0.112852 0.569193 0.148281 0.544701 0.177158 0.558698 0.204717 diff --git a/datasets/pinganmajia/val/labels/订单1815247_4_7188241.txt b/datasets/pinganmajia/val/labels/订单1815247_4_7188241.txt new file mode 100644 index 0000000..4c8a87d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815247_4_7188241.txt @@ -0,0 +1 @@ +4 0.994363 0.448787 0.814134 0.396299 0.812386 0.351679 0.829886 0.304436 0.775637 0.178456 0.674150 0.150895 0.521928 0.175821 0.490425 0.275564 0.507925 0.354301 0.556912 0.419926 0.584918 0.461912 0.523676 0.586593 0.546422 0.685012 0.546422 0.822806 0.532418 0.948787 0.537680 0.982917 0.564477 1.000000 0.861634 1.000000 1.000000 0.997500 1.000000 0.669645 diff --git a/datasets/pinganmajia/val/labels/订单1815248_4_7188201.txt b/datasets/pinganmajia/val/labels/订单1815248_4_7188201.txt new file mode 100644 index 0000000..be17412 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815248_4_7188201.txt @@ -0,0 +1 @@ +4 1.000000 0.400326 0.875488 0.402884 0.856787 0.329388 0.838086 0.143040 0.801670 0.082669 0.739663 0.061673 0.671748 0.112852 0.630410 0.212591 0.623521 0.278210 0.635332 0.351699 0.659937 0.413379 0.657969 0.454063 0.595962 0.562988 0.585132 0.694219 0.587100 0.825456 0.578242 0.986868 0.603311 1.000000 0.998638 1.000000 1.000000 0.999993 diff --git a/datasets/pinganmajia/val/labels/订单1815250_4_7188520.txt b/datasets/pinganmajia/val/labels/订单1815250_4_7188520.txt new file mode 100644 index 0000000..b62c316 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815250_4_7188520.txt @@ -0,0 +1 @@ +4 1.000000 0.663566 0.938366 0.583958 0.966373 0.545907 1.000000 0.530772 1.000000 0.297096 0.908627 0.274252 0.742402 0.317561 0.689902 0.385797 0.682908 0.448787 0.670654 0.522279 0.513170 0.657451 0.474673 0.765061 0.418693 0.816250 0.360948 0.852990 0.371438 0.894988 0.381944 0.948787 0.378448 0.994718 0.997859 0.996042 1.000000 0.794240 diff --git a/datasets/pinganmajia/val/labels/订单1815254_4_7188237.txt b/datasets/pinganmajia/val/labels/订单1815254_4_7188237.txt new file mode 100644 index 0000000..e51129d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815254_4_7188237.txt @@ -0,0 +1 @@ +4 0.005615 0.564317 0.096603 0.534135 0.182346 0.485577 0.138603 0.439644 0.114103 0.372721 0.128103 0.342538 0.114103 0.266423 0.187603 0.178490 0.339833 0.135183 0.502551 0.186365 0.541051 0.274298 0.537551 0.358279 0.553295 0.409462 0.541051 0.459337 0.658282 0.510510 0.808769 0.586625 0.885756 0.653558 0.957500 0.690308 1.000000 0.721000 1.000000 0.997375 0.000000 0.994779 0.000000 0.840817 diff --git a/datasets/pinganmajia/val/labels/订单1815257_4_7188264.txt b/datasets/pinganmajia/val/labels/订单1815257_4_7188264.txt new file mode 100644 index 0000000..2ae76b6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815257_4_7188264.txt @@ -0,0 +1 @@ +4 0.450180 0.997353 0.479935 0.855613 0.485180 0.758505 0.467680 0.720441 0.520180 0.645637 0.628660 0.544596 0.640915 0.472414 0.521928 0.329375 0.458938 0.255882 0.462435 0.115453 0.518431 0.022279 1.000000 0.026189 1.000000 0.996054 diff --git a/datasets/pinganmajia/val/labels/订单1815260_4_7188328.txt b/datasets/pinganmajia/val/labels/订单1815260_4_7188328.txt new file mode 100644 index 0000000..077091c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815260_4_7188328.txt @@ -0,0 +1 @@ +4 0.005735 0.356924 0.093235 0.321495 0.073987 0.215196 0.121225 0.072157 0.164967 0.032782 0.345196 0.043284 0.392435 0.098395 0.432680 0.164020 0.432680 0.242757 0.436176 0.325429 0.387190 0.385797 0.520180 0.490784 0.506176 0.553775 0.609412 0.694203 0.653154 0.775564 0.667157 0.876618 0.660163 0.996042 0.663660 0.996042 0.158905 1.000000 -0.000000 1.000000 0.000000 0.709118 diff --git a/datasets/pinganmajia/val/labels/订单1815262_4_7188284.txt b/datasets/pinganmajia/val/labels/订单1815262_4_7188284.txt new file mode 100644 index 0000000..fdfc565 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815262_4_7188284.txt @@ -0,0 +1 @@ +4 0.033125 0.363505 0.197415 0.337255 0.422528 0.358254 0.465128 0.415999 0.468168 0.498676 0.425582 0.564289 0.361690 0.612849 0.507713 0.660092 0.455994 0.704712 0.495554 0.759828 0.477301 0.933058 0.450937 1.000000 0.002827 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815264_4_7188291.txt b/datasets/pinganmajia/val/labels/订单1815264_4_7188291.txt new file mode 100644 index 0000000..3c5ce01 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815264_4_7188291.txt @@ -0,0 +1 @@ +4 1.000000 0.463525 0.906901 0.447500 0.887656 0.416006 0.922643 0.364824 0.908646 0.325449 0.882409 0.300518 0.843906 0.187656 0.749414 0.146973 0.637435 0.164033 0.539440 0.228340 0.532448 0.328076 0.542943 0.400254 0.602435 0.503926 0.558698 0.524922 0.591940 0.580039 0.528945 0.732275 0.525443 0.839883 0.506354 1.000000 0.630000 1.000000 1.000000 0.996104 diff --git a/datasets/pinganmajia/val/labels/订单1815269_4_7188439.txt b/datasets/pinganmajia/val/labels/订单1815269_4_7188439.txt new file mode 100644 index 0000000..4dd2a93 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815269_4_7188439.txt @@ -0,0 +1 @@ +4 0.768229 0.026275 0.709173 0.105016 0.701299 0.251993 0.712126 0.328113 0.680631 0.398979 0.593033 0.425221 0.617635 0.532835 0.587126 0.696879 0.549724 0.996087 1.000000 0.997394 1.000000 0.810891 0.995588 0.261185 0.974920 0.229681 0.989688 0.153570 0.998542 0.074828 0.980827 0.024959 diff --git a/datasets/pinganmajia/val/labels/订单1815270_4_7188344.txt b/datasets/pinganmajia/val/labels/订单1815270_4_7188344.txt new file mode 100644 index 0000000..6e56518 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815270_4_7188344.txt @@ -0,0 +1 @@ +4 0.305627 0.240176 0.273147 0.292673 0.243618 0.341229 0.222946 0.480333 0.236730 0.591882 0.253461 0.675876 0.278069 0.665373 0.288892 0.678497 0.299721 0.650941 0.310549 0.734928 0.340074 0.765111 0.364681 0.950150 0.335152 0.996085 0.360608 1.000000 0.387873 1.000000 0.400113 0.968523 0.413892 0.929157 0.405034 0.762490 0.420784 0.805797 0.424721 0.930464 0.433578 0.990837 0.463039 1.000000 0.463108 1.000000 0.465074 0.959340 0.473931 0.876660 0.472946 0.736242 0.484760 0.690307 0.473931 0.631255 0.495588 0.623379 0.506412 0.521020 0.514289 0.472464 0.468029 0.329418 0.443422 0.295294 0.410941 0.267739 0.379446 0.233614 0.373539 0.175876 0.358775 0.145693 0.322358 0.132569 0.300706 0.166686 0.300706 0.215242 diff --git a/datasets/pinganmajia/val/labels/订单1815272_4_7188456.txt b/datasets/pinganmajia/val/labels/订单1815272_4_7188456.txt new file mode 100644 index 0000000..0f2ad32 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815272_4_7188456.txt @@ -0,0 +1 @@ +4 0.023025 0.233585 0.110559 0.153529 0.279796 0.097102 0.510313 0.078725 0.729155 0.150907 0.673706 0.250643 0.621185 0.351691 0.562834 0.417310 0.454864 0.493425 0.425695 0.524920 0.551158 0.562978 0.562834 0.614161 0.600763 0.762451 0.673706 0.915999 0.797275 1.000000 0.402084 1.000000 0.000000 0.998683 0.000000 0.904289 diff --git a/datasets/pinganmajia/val/labels/订单1815273_4_7188353.txt b/datasets/pinganmajia/val/labels/订单1815273_4_7188353.txt new file mode 100644 index 0000000..c24e336 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815273_4_7188353.txt @@ -0,0 +1 @@ +4 0.000372 0.627308 0.056359 0.612875 0.156103 0.530202 0.115859 0.479019 0.098359 0.425212 0.100103 0.383221 0.135103 0.271673 0.210346 0.212615 0.345077 0.200798 0.493808 0.278231 0.500808 0.380596 0.513051 0.454087 0.502551 0.507885 0.619795 0.539385 0.647795 0.578760 0.793026 0.641750 0.871756 0.712615 0.954000 0.754606 1.000000 0.766106 1.000000 1.000000 0.197500 1.000000 0.000000 0.998712 0.000000 0.705962 diff --git a/datasets/pinganmajia/val/labels/订单1815276_4_7188447.txt b/datasets/pinganmajia/val/labels/订单1815276_4_7188447.txt new file mode 100644 index 0000000..28ef4a5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815276_4_7188447.txt @@ -0,0 +1 @@ +4 1.000000 0.502450 0.896283 0.450163 0.899783 0.413417 0.924278 0.339929 0.940028 0.221817 0.877033 0.148325 0.777294 0.093208 0.630317 0.106333 0.569072 0.171950 0.535828 0.309746 0.541078 0.401608 0.569072 0.488221 0.373100 0.577462 0.402844 0.618142 0.322356 0.787433 0.299606 0.948850 0.271611 0.990846 1.000000 0.993467 diff --git a/datasets/pinganmajia/val/labels/订单1815278_4_7188413.txt b/datasets/pinganmajia/val/labels/订单1815278_4_7188413.txt new file mode 100644 index 0000000..28fcb75 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815278_4_7188413.txt @@ -0,0 +1 @@ +4 0.000000 0.600809 0.070474 0.539338 0.072222 0.494718 0.093235 0.472414 0.119477 0.398922 0.205212 0.358235 0.339951 0.388419 0.399444 0.451422 0.388938 0.515723 0.374935 0.574779 0.322451 0.652206 0.353938 0.763750 0.350441 0.826740 0.406438 0.930417 0.430490 1.000000 0.219281 1.000000 0.000000 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1815279_4_7188438.txt b/datasets/pinganmajia/val/labels/订单1815279_4_7188438.txt new file mode 100644 index 0000000..c87d65d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815279_4_7188438.txt @@ -0,0 +1 @@ +4 0.016899 0.269000 0.135698 0.232256 0.233523 0.297866 0.266721 0.385793 0.270211 0.436976 0.252744 0.532780 0.219545 0.581329 0.275455 0.629890 0.333101 0.688939 0.347078 0.766378 0.378523 0.818866 0.401234 0.951415 0.409968 0.993402 0.000000 0.990817 0.000000 0.806195 diff --git a/datasets/pinganmajia/val/labels/订单1815280_4_7188574.txt b/datasets/pinganmajia/val/labels/订单1815280_4_7188574.txt new file mode 100644 index 0000000..7cfc685 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815280_4_7188574.txt @@ -0,0 +1 @@ +4 0.000000 0.563480 0.065229 0.515723 0.126471 0.494718 0.115980 0.464534 0.073987 0.429105 0.058235 0.388419 0.077484 0.383174 0.065229 0.300502 0.115980 0.244069 0.213954 0.227010 0.310196 0.278186 0.357451 0.343799 0.374935 0.406801 0.367941 0.472414 0.355703 0.505221 0.481683 0.595772 0.530670 0.639081 0.621667 0.709951 0.709150 0.784755 0.747647 0.829375 0.700408 0.856924 0.698644 0.908113 0.667157 0.933039 0.699771 1.000000 0.360196 1.000000 0.005735 0.998664 0.000000 0.822733 diff --git a/datasets/pinganmajia/val/labels/订单1815284_4_7188613.txt b/datasets/pinganmajia/val/labels/订单1815284_4_7188613.txt new file mode 100644 index 0000000..141650a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815284_4_7188613.txt @@ -0,0 +1 @@ +4 1.000000 0.355948 0.989688 0.330735 1.000000 0.215711 1.000000 0.021029 0.671771 0.024959 0.681612 0.181127 0.678664 0.245433 0.684565 0.292680 0.685551 0.334673 0.611734 0.408162 0.508388 0.485588 0.416850 0.576144 0.384369 0.658815 0.319412 0.782181 0.318425 0.888480 0.317439 0.955408 0.328266 0.996087 1.000000 0.996087 diff --git a/datasets/pinganmajia/val/labels/订单1815290_4_7188544.txt b/datasets/pinganmajia/val/labels/订单1815290_4_7188544.txt new file mode 100644 index 0000000..95e2675 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815290_4_7188544.txt @@ -0,0 +1 @@ +4 0.332850 0.313679 0.303106 0.335992 0.238367 0.364862 0.213867 0.488221 0.203367 0.578775 0.231367 0.647012 0.282111 0.682446 0.304856 0.661450 0.290856 0.590583 0.297856 0.519717 0.308356 0.616829 0.317106 0.671950 0.348600 0.759875 0.416844 0.883233 0.408094 0.955412 0.441339 0.985596 0.460589 0.965913 0.472833 0.906858 0.467583 0.879300 0.439589 0.775625 0.451839 0.713942 0.490333 0.782183 0.509578 0.875362 0.546328 0.926542 0.600567 0.955412 0.605817 0.923917 0.562072 0.858300 0.562072 0.776938 0.555072 0.708696 0.563822 0.691633 0.551572 0.624704 0.567322 0.624704 0.605817 0.614204 0.597067 0.557775 0.583072 0.438354 0.548078 0.377987 0.532328 0.342554 0.437839 0.329429 0.439589 0.283496 0.432589 0.227067 0.390594 0.192946 0.336350 0.216567 0.325856 0.255937 0.318856 0.275625 0.334600 0.299246 diff --git a/datasets/pinganmajia/val/labels/订单1815294_4_7188632.txt b/datasets/pinganmajia/val/labels/订单1815294_4_7188632.txt new file mode 100644 index 0000000..1b733ff --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815294_4_7188632.txt @@ -0,0 +1 @@ +4 0.177761 0.413382 0.091672 0.452751 0.080031 0.623356 0.110276 0.662725 0.142853 0.619420 0.166120 0.703408 0.177761 0.783460 0.182408 0.829394 0.149831 0.859576 0.201028 0.859576 0.254540 0.808391 0.256871 0.737526 0.259202 0.657474 0.289448 0.749343 0.289448 0.816272 0.310383 0.849074 0.354601 0.854325 0.361580 0.828080 0.347607 0.776903 0.342960 0.725718 0.340629 0.681099 0.349939 0.624671 0.370890 0.645666 0.401135 0.619420 0.410445 0.515744 0.387163 0.442258 0.373206 0.419948 0.289448 0.412067 0.261518 0.339888 0.189387 0.341202 0.168451 0.368763 0.182408 0.398945 diff --git a/datasets/pinganmajia/val/labels/订单1815295_4_7188685.txt b/datasets/pinganmajia/val/labels/订单1815295_4_7188685.txt new file mode 100644 index 0000000..fe643bc --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815295_4_7188685.txt @@ -0,0 +1 @@ +4 1.000000 0.631062 0.936538 0.599763 0.839093 0.448848 0.868621 0.380605 0.898150 0.322859 0.900116 0.272990 0.882402 0.128636 0.859761 0.056454 0.836140 0.023652 0.715080 0.021021 0.703266 0.048587 0.635355 0.128636 0.610748 0.257247 0.592047 0.286119 0.603860 0.358292 0.626495 0.397663 0.605827 0.459346 0.498542 0.488219 0.446379 0.671944 0.372561 0.791364 0.373542 0.833358 0.350907 0.901601 0.338150 1.000000 0.911869 1.000000 1.000000 0.998791 diff --git a/datasets/pinganmajia/val/labels/订单1815296_4_7188671.txt b/datasets/pinganmajia/val/labels/订单1815296_4_7188671.txt new file mode 100644 index 0000000..d0b9c21 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815296_4_7188671.txt @@ -0,0 +1 @@ +4 1.000000 0.247192 0.905029 0.265103 0.872548 0.287410 0.817428 0.234917 0.792822 0.141744 0.770183 0.080064 0.720971 0.036756 0.631404 0.057750 0.568413 0.157494 0.584163 0.248045 0.619596 0.325468 0.664870 0.400276 0.700303 0.429147 0.665856 0.515756 0.668808 0.611558 0.658966 0.765103 0.661918 0.851718 0.663885 0.935705 0.657981 0.996071 0.914192 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815297_4_7188661.txt b/datasets/pinganmajia/val/labels/订单1815297_4_7188661.txt new file mode 100644 index 0000000..68ce2b5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815297_4_7188661.txt @@ -0,0 +1 @@ +4 1.000000 0.608079 0.939505 0.582720 0.933602 0.489549 0.907023 0.427870 0.896198 0.328137 0.859783 0.287454 0.845998 0.187708 0.844028 0.077477 0.821398 0.019734 0.634384 0.023669 0.594028 0.136528 0.576319 0.279572 0.572378 0.333380 0.568438 0.396377 0.532023 0.556481 0.432613 0.629965 0.346988 0.846505 0.322378 0.994803 1.000000 0.993495 diff --git a/datasets/pinganmajia/val/labels/订单1815298_4_7188781.txt b/datasets/pinganmajia/val/labels/订单1815298_4_7188781.txt new file mode 100644 index 0000000..0e410fd --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815298_4_7188781.txt @@ -0,0 +1 @@ +4 0.002144 0.384546 0.084383 0.379300 0.080883 0.346492 0.045889 0.314992 0.068633 0.265125 0.098383 0.234942 0.138628 0.148325 0.217367 0.098458 0.392344 0.120767 0.469333 0.206071 0.499083 0.270375 0.465833 0.366175 0.429089 0.454100 0.404594 0.509221 0.509578 0.597146 0.504333 0.704758 0.549828 0.855675 0.584822 0.997408 0.009450 1.000000 0.002144 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815300_4_7188714.txt b/datasets/pinganmajia/val/labels/订单1815300_4_7188714.txt new file mode 100644 index 0000000..f181fdc --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815300_4_7188714.txt @@ -0,0 +1 @@ +4 1.000000 0.479492 0.936528 0.471162 0.938278 0.433104 0.962772 0.418667 0.976772 0.376675 0.971522 0.341242 0.989022 0.238879 0.885783 0.140454 0.681061 0.122079 0.614567 0.228379 0.588322 0.342554 0.591822 0.406858 0.609317 0.489533 0.651311 0.548588 0.471083 0.624704 0.499083 0.658825 0.406344 0.746750 0.411594 0.818929 0.373383 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815301_4_7188737.txt b/datasets/pinganmajia/val/labels/订单1815301_4_7188737.txt new file mode 100644 index 0000000..690afe5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815301_4_7188737.txt @@ -0,0 +1 @@ +4 0.990885 0.581357 0.971641 0.552480 0.920898 0.509180 0.931393 0.489492 0.968138 0.468496 0.959388 0.423877 0.980391 0.318887 0.927891 0.258525 0.793164 0.227021 0.726667 0.254580 0.635677 0.288701 0.639180 0.363506 0.619935 0.477686 0.639180 0.530176 0.672435 0.569541 0.619935 0.603662 0.555195 0.745400 0.558698 0.818887 0.551693 0.997363 1.000000 0.996094 1.000000 0.735586 diff --git a/datasets/pinganmajia/val/labels/订单1815303_4_7188726.txt b/datasets/pinganmajia/val/labels/订单1815303_4_7188726.txt new file mode 100644 index 0000000..c84b6d6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815303_4_7188726.txt @@ -0,0 +1 @@ +4 0.991667 0.334688 0.986745 0.292697 0.973950 0.202153 0.864705 0.190336 0.866667 0.103727 0.864705 0.024977 0.589115 0.021042 0.590095 0.141782 0.607813 0.203461 0.616667 0.315012 0.572378 0.380625 0.476910 0.480359 0.457222 0.570914 0.358793 0.766447 0.254462 0.996111 0.363116 1.000000 0.999497 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815304_4_7188718.txt b/datasets/pinganmajia/val/labels/订单1815304_4_7188718.txt new file mode 100644 index 0000000..6abbc9d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815304_4_7188718.txt @@ -0,0 +1 @@ +4 0.308477 0.269023 0.248984 0.313643 0.234987 0.393691 0.240234 0.465869 0.264727 0.502617 0.290977 0.503926 0.303229 0.590537 0.297982 0.669277 0.283971 0.707344 0.294479 0.725713 0.329466 0.709961 0.348724 0.649600 0.348724 0.599727 0.371471 0.532803 0.390716 0.616787 0.387214 0.667969 0.399466 0.695527 0.413464 0.724404 0.441458 0.720459 0.434453 0.673223 0.439714 0.607598 0.436211 0.568232 0.434453 0.497363 0.471198 0.459307 0.481706 0.385820 0.465951 0.317578 0.436211 0.290020 0.383711 0.262461 0.385469 0.221777 0.369714 0.199463 0.318971 0.198154 0.311979 0.232275 0.317227 0.251963 diff --git a/datasets/pinganmajia/val/labels/订单1815305_4_7188759.txt b/datasets/pinganmajia/val/labels/订单1815305_4_7188759.txt new file mode 100644 index 0000000..cef6d88 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815305_4_7188759.txt @@ -0,0 +1 @@ +4 0.570937 0.274268 0.518451 0.312324 0.488698 0.383193 0.457201 0.510488 0.465951 0.582666 0.495703 0.599727 0.511445 0.580039 0.523698 0.527549 0.523698 0.599727 0.513203 0.675840 0.549948 0.713906 0.567448 0.793955 0.565690 0.843818 0.514948 0.872695 0.551693 0.889756 0.607682 0.859570 0.633932 0.853008 0.630430 0.811016 0.639180 0.761143 0.630430 0.706025 0.670677 0.704717 0.675924 0.761143 0.684674 0.812324 0.682930 0.855635 0.719674 0.919941 0.763411 0.930439 0.745924 0.868760 0.745924 0.824141 0.747669 0.767705 0.740664 0.721777 0.763411 0.690283 0.784414 0.661406 0.775664 0.549863 0.773919 0.498682 0.779167 0.452744 0.796667 0.530176 0.791419 0.586602 0.831654 0.586602 0.857904 0.513115 0.854401 0.455371 0.801914 0.346445 0.763411 0.290020 0.738919 0.274268 0.686432 0.242773 0.649687 0.177158 0.590195 0.173223 0.570937 0.212588 0.570937 0.251963 diff --git a/datasets/pinganmajia/val/labels/订单1815306_4_7188854.txt b/datasets/pinganmajia/val/labels/订单1815306_4_7188854.txt new file mode 100644 index 0000000..dcdd82e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815306_4_7188854.txt @@ -0,0 +1 @@ +4 0.604841 0.026275 0.557598 0.128636 0.575313 0.215253 0.619608 0.276928 0.676691 0.326797 0.728860 0.354355 0.773150 0.347794 0.761336 0.391103 0.794804 0.418660 0.778070 0.531520 0.805631 0.660131 0.819412 0.757247 0.846967 0.859608 0.894210 0.998717 1.000000 0.998717 1.000000 0.663096 0.997561 0.115515 0.965080 0.082704 0.912911 0.066953 0.862714 0.103701 0.841060 0.085327 0.832206 0.030212 0.831219 0.021021 diff --git a/datasets/pinganmajia/val/labels/订单1815309_4_7188803.txt b/datasets/pinganmajia/val/labels/订单1815309_4_7188803.txt new file mode 100644 index 0000000..c0cf1ac --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815309_4_7188803.txt @@ -0,0 +1 @@ +4 0.994445 0.481648 0.953037 0.465901 0.915573 0.467208 0.888957 0.416031 0.881073 0.342541 0.861354 0.326794 0.867268 0.245430 0.874171 0.139123 0.818963 0.055138 0.714463 0.068263 0.656299 0.162752 0.637567 0.287419 0.637567 0.363539 0.602073 0.468523 0.537006 0.524951 0.454195 0.738864 0.438421 0.944903 0.475000 1.000000 0.998390 1.000000 0.998390 0.958028 0.985573 0.879286 1.000000 0.832468 1.000000 0.760576 diff --git a/datasets/pinganmajia/val/labels/订单1815310_4_7188819.txt b/datasets/pinganmajia/val/labels/订单1815310_4_7188819.txt new file mode 100644 index 0000000..7245065 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815310_4_7188819.txt @@ -0,0 +1 @@ +4 0.003900 0.665391 0.147384 0.633898 0.108889 0.551215 0.084387 0.494783 0.089641 0.460668 0.094884 0.349115 0.143877 0.286128 0.219120 0.248064 0.317106 0.238880 0.381852 0.299245 0.457095 0.343872 0.469340 0.422604 0.479838 0.472474 0.469340 0.542031 0.455336 0.612899 0.465845 0.635208 0.567326 0.650955 0.623322 0.724444 0.618067 0.842552 0.630324 0.986910 0.588322 0.994783 0.007396 0.996102 diff --git a/datasets/pinganmajia/val/labels/订单1815312_4_7188810.txt b/datasets/pinganmajia/val/labels/订单1815312_4_7188810.txt new file mode 100644 index 0000000..ce08f78 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815312_4_7188810.txt @@ -0,0 +1 @@ +4 0.238490 0.266396 0.138750 0.301826 0.095000 0.362197 0.063503 0.503926 0.128242 0.661406 0.128242 0.640410 0.145742 0.649600 0.143997 0.594482 0.150990 0.556426 0.166745 0.497363 0.177240 0.556426 0.173737 0.640410 0.187734 0.706025 0.143997 0.856943 0.157995 0.893691 0.161497 0.961934 0.192995 0.984238 0.220990 0.975059 0.224479 0.942246 0.208737 0.881885 0.241979 0.814951 0.262982 0.750645 0.318971 0.674531 0.329466 0.750645 0.332969 0.818887 0.346966 0.858262 0.374961 0.884502 0.409961 0.914687 0.436211 0.912061 0.448451 0.891064 0.402969 0.839883 0.394219 0.767705 0.413464 0.665342 0.425703 0.602354 0.455456 0.599727 0.462461 0.556426 0.481706 0.496055 0.469453 0.421250 0.451953 0.374004 0.427461 0.339883 0.394219 0.301826 0.345221 0.276895 0.364466 0.225713 0.343464 0.185029 0.275234 0.166660 0.229740 0.198154 0.222734 0.234902 diff --git a/datasets/pinganmajia/val/labels/订单1815316_4_7188914.txt b/datasets/pinganmajia/val/labels/订单1815316_4_7188914.txt new file mode 100644 index 0000000..5e7486f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815316_4_7188914.txt @@ -0,0 +1 @@ +4 0.005423 0.374026 0.079240 0.385840 0.135341 0.367462 0.189476 0.345154 0.242625 0.317596 0.248534 0.219173 0.253452 0.165365 0.273139 0.069564 0.303649 0.024942 0.425697 0.021006 0.497548 0.135179 0.505423 0.248045 0.495577 0.288724 0.474909 0.379276 0.536918 0.440955 0.596957 0.528885 0.613688 0.620744 0.619596 0.711295 0.640264 0.825468 0.644202 0.906833 0.630423 0.998699 0.055298 1.000000 0.050702 1.000000 0.078255 0.925205 0.072351 0.867462 0.088096 0.762481 0.091053 0.681115 0.000000 0.706942 0.000000 0.636308 diff --git a/datasets/pinganmajia/val/labels/订单1815317_4_7188911.txt b/datasets/pinganmajia/val/labels/订单1815317_4_7188911.txt new file mode 100644 index 0000000..89cd4f2 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815317_4_7188911.txt @@ -0,0 +1 @@ +4 0.002239 0.089216 0.245458 0.060343 0.369690 0.141703 0.404690 0.228321 0.353938 0.322806 0.343448 0.389743 0.315458 0.450110 0.299706 0.476348 0.423938 0.585270 0.408186 0.699449 0.432680 0.730944 0.401193 0.788689 0.423938 0.867426 0.500931 0.947475 0.493922 0.976348 0.514951 1.000000 0.000556 1.000000 0.000000 1.000000 -0.000000 0.477635 diff --git a/datasets/pinganmajia/val/labels/订单1815318_4_7188877.txt b/datasets/pinganmajia/val/labels/订单1815318_4_7188877.txt new file mode 100644 index 0000000..4edd471 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815318_4_7188877.txt @@ -0,0 +1 @@ +4 1.000000 0.126829 0.920807 0.183773 0.874540 0.190336 0.843047 0.124722 0.804661 0.060417 0.754462 0.019734 0.666866 0.024977 0.590095 0.095845 0.534974 0.200833 0.546788 0.300567 0.590095 0.309757 0.620608 0.301887 0.647179 0.342569 0.718047 0.412118 0.715095 0.473796 0.706233 0.530231 0.735764 0.629965 0.772179 0.784826 0.782023 0.867500 0.779071 0.984306 1.000000 0.998704 diff --git a/datasets/pinganmajia/val/labels/订单1815319_4_7188915.txt b/datasets/pinganmajia/val/labels/订单1815319_4_7188915.txt new file mode 100644 index 0000000..4458307 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815319_4_7188915.txt @@ -0,0 +1 @@ +4 1.000000 0.373099 0.975023 0.354366 0.985521 0.301875 0.976771 0.282187 0.980278 0.171953 0.924282 0.103707 0.789549 0.080087 0.639062 0.133898 0.574329 0.215260 0.595324 0.313681 0.614572 0.381927 0.632072 0.463290 0.530579 0.531528 0.458843 0.731007 0.413345 0.870113 0.385347 0.993472 0.730486 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815321_4_7188936.txt b/datasets/pinganmajia/val/labels/订单1815321_4_7188936.txt new file mode 100644 index 0000000..d6da0e7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815321_4_7188936.txt @@ -0,0 +1 @@ +4 0.004172 0.608909 0.055501 0.582665 0.102168 0.539357 0.097495 0.492114 0.111492 0.406814 0.216481 0.349069 0.417124 0.343817 0.482451 0.414687 0.498780 0.486863 0.498780 0.568229 0.480120 0.602347 0.587440 0.695527 0.641100 0.766391 0.690087 0.871379 0.759379 1.000000 0.508388 1.000000 0.000000 0.997377 0.000000 0.840650 diff --git a/datasets/pinganmajia/val/labels/订单1815322_4_7188935.txt b/datasets/pinganmajia/val/labels/订单1815322_4_7188935.txt new file mode 100644 index 0000000..35cc1e7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815322_4_7188935.txt @@ -0,0 +1 @@ +4 1.000000 0.140255 0.945408 0.157523 0.938524 0.106343 0.923759 0.021042 0.676710 0.019734 0.635373 0.143090 0.657023 0.221829 0.680642 0.278264 0.678681 0.338634 0.621589 0.423935 0.573359 0.538102 0.578281 0.619468 0.508403 0.866192 0.466076 0.998738 0.725911 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815324_4_7188988.txt b/datasets/pinganmajia/val/labels/订单1815324_4_7188988.txt new file mode 100644 index 0000000..8220c29 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815324_4_7188988.txt @@ -0,0 +1 @@ +4 0.812325 0.425252 0.772076 0.416064 0.775570 0.378004 0.744079 0.359627 0.710833 0.379320 0.717836 0.413443 0.668830 0.434441 0.644342 0.498739 0.684591 0.551228 0.675833 0.620789 0.668830 0.696908 0.653085 0.736272 0.670585 0.757270 0.709079 0.731020 0.707325 0.694276 0.751082 0.608980 0.763319 0.666721 0.758070 0.712654 0.761579 0.745461 0.794825 0.753333 0.784327 0.720526 0.803567 0.677215 0.803567 0.618158 0.801813 0.576173 0.812325 0.534178 0.845570 0.489550 0.829810 0.454123 diff --git a/datasets/pinganmajia/val/labels/订单1815325_4_7189026.txt b/datasets/pinganmajia/val/labels/订单1815325_4_7189026.txt new file mode 100644 index 0000000..5b968b4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815325_4_7189026.txt @@ -0,0 +1 @@ +4 0.000490 0.465858 0.107222 0.446164 0.094984 0.406801 0.068725 0.371360 0.079232 0.322806 0.105474 0.326740 0.222712 0.228321 0.320703 0.245380 0.380196 0.286066 0.383693 0.359559 0.380196 0.398922 0.327696 0.494718 0.402941 0.513100 0.469428 0.614142 0.478186 0.692892 0.588415 0.992096 0.003987 0.994718 diff --git a/datasets/pinganmajia/val/labels/订单1815326_4_7188964.txt b/datasets/pinganmajia/val/labels/订单1815326_4_7188964.txt new file mode 100644 index 0000000..0a7b77f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815326_4_7188964.txt @@ -0,0 +1 @@ +4 0.000000 0.496344 0.049406 0.488234 0.093146 0.451492 0.087896 0.406867 0.075656 0.374063 0.075656 0.325508 0.107146 0.303195 0.089646 0.206086 0.145646 0.141781 0.266375 0.112906 0.429104 0.148336 0.497344 0.221828 0.490354 0.304508 0.462354 0.402930 0.399365 0.518422 0.546344 0.611594 0.588333 0.707398 0.632083 0.812383 0.639083 0.989547 0.584833 0.997422 0.003906 0.996109 0.000000 0.810375 diff --git a/datasets/pinganmajia/val/labels/订单1815330_4_7188971.txt b/datasets/pinganmajia/val/labels/订单1815330_4_7188971.txt new file mode 100644 index 0000000..4ab4eb8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815330_4_7188971.txt @@ -0,0 +1 @@ +4 0.000509 0.223121 0.052678 0.211315 0.059565 0.168007 0.051691 0.122075 0.063505 0.087949 0.078266 0.065645 0.088113 0.019714 0.319412 0.024959 0.324332 0.131258 0.308585 0.200817 0.278070 0.291364 0.241654 0.363546 0.267243 0.422598 0.326299 0.490842 0.360748 0.633881 0.365668 0.749371 0.399136 0.813676 0.413897 0.879289 0.413897 0.948848 0.403070 0.996087 0.000000 0.999984 0.000000 0.303889 diff --git a/datasets/pinganmajia/val/labels/订单1815331_4_7189059.txt b/datasets/pinganmajia/val/labels/订单1815331_4_7189059.txt new file mode 100644 index 0000000..83399a6 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815331_4_7189059.txt @@ -0,0 +1 @@ +4 0.998521 0.503932 0.930605 0.488184 0.875488 0.473750 0.838086 0.460625 0.802651 0.434375 0.828242 0.374010 0.844976 0.305768 0.845962 0.241465 0.858755 0.137786 0.843008 0.069551 0.785923 0.030176 0.697339 0.044616 0.632378 0.196842 0.607769 0.266400 0.614663 0.356947 0.638281 0.431751 0.636313 0.451439 0.492612 0.511803 0.442417 0.603665 0.389268 0.717839 0.343989 0.839889 0.337100 0.930443 0.360723 0.996055 0.950293 0.996055 0.960132 0.944876 0.949307 0.856947 0.995566 0.898945 diff --git a/datasets/pinganmajia/val/labels/订单1815333_4_7189028.txt b/datasets/pinganmajia/val/labels/订单1815333_4_7189028.txt new file mode 100644 index 0000000..ed4d9e8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815333_4_7189028.txt @@ -0,0 +1 @@ +4 0.000000 0.441804 0.024867 0.385845 0.023116 0.309730 0.009119 0.206051 0.031866 0.123374 0.129858 0.068260 0.257595 0.048572 0.402822 0.085320 0.478059 0.179808 0.486809 0.232301 0.460568 0.300540 0.423816 0.381903 0.387074 0.443587 0.388826 0.506577 0.430814 0.591882 0.453570 0.763800 0.516563 0.843849 0.551553 0.926527 0.537557 0.997393 0.186392 1.000000 0.007348 1.000000 0.000000 0.613381 diff --git a/datasets/pinganmajia/val/labels/订单1815335_4_7189073.txt b/datasets/pinganmajia/val/labels/订单1815335_4_7189073.txt new file mode 100644 index 0000000..1646689 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815335_4_7189073.txt @@ -0,0 +1 @@ +4 0.999635 0.686338 0.922643 0.623350 0.950638 0.578730 0.976888 0.556426 0.994388 0.481621 0.983893 0.433066 0.955898 0.342510 0.840404 0.335947 0.730169 0.363506 0.674180 0.414687 0.600690 0.439619 0.679427 0.440937 0.670677 0.528857 0.684674 0.604980 0.579688 0.645664 0.471198 0.755898 0.378464 0.862197 0.364466 0.938311 0.375534 1.000000 1.000000 1.000000 1.000000 0.697305 diff --git a/datasets/pinganmajia/val/labels/订单1815337_4_7189083.txt b/datasets/pinganmajia/val/labels/订单1815337_4_7189083.txt new file mode 100644 index 0000000..3126087 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815337_4_7189083.txt @@ -0,0 +1 @@ +4 0.999517 0.934417 0.901533 0.809746 0.835039 0.757250 0.710806 0.657512 0.623317 0.599771 0.546328 0.530217 0.394094 0.501346 0.357350 0.456725 0.366100 0.363550 0.345100 0.297933 0.338100 0.220504 0.280361 0.094521 0.212117 0.053838 0.115878 0.038092 0.012644 0.043342 0.000000 0.811358 0.000000 1.000000 1.000000 1.000000 1.000000 0.938096 diff --git a/datasets/pinganmajia/val/labels/订单1815341_4_7189106.txt b/datasets/pinganmajia/val/labels/订单1815341_4_7189106.txt new file mode 100644 index 0000000..374fd4b --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815341_4_7189106.txt @@ -0,0 +1 @@ +4 0.004675 0.020963 0.226542 0.017024 0.273701 0.078707 0.282435 0.170573 0.275455 0.276866 0.231769 0.385793 0.254481 0.463220 0.247500 0.506524 0.306899 0.557707 0.296412 0.604951 0.333101 0.746683 0.341834 0.852988 0.328214 1.000000 0.077062 1.000000 -0.000000 0.998805 0.000000 0.347927 diff --git a/datasets/pinganmajia/val/labels/订单1815344_4_7189154.txt b/datasets/pinganmajia/val/labels/订单1815344_4_7189154.txt new file mode 100644 index 0000000..d65c84e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815344_4_7189154.txt @@ -0,0 +1 @@ +4 1.000000 0.625640 0.889416 0.561667 0.856301 0.517045 0.891158 0.472431 0.896383 0.410748 0.865010 0.389753 0.849334 0.269020 0.751742 0.220463 0.547859 0.246705 0.485123 0.345131 0.506035 0.436998 0.528689 0.524923 0.554826 0.568225 0.453760 0.733580 0.439816 0.867438 0.448535 0.994738 0.894314 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815345_4_7189165.txt b/datasets/pinganmajia/val/labels/订单1815345_4_7189165.txt new file mode 100644 index 0000000..e43d4bb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815345_4_7189165.txt @@ -0,0 +1 @@ +4 0.010872 0.528885 0.114103 0.447519 0.098359 0.417337 0.093103 0.368779 0.131603 0.347788 0.135103 0.266423 0.210346 0.209990 0.350321 0.206048 0.437821 0.274298 0.451808 0.354346 0.451808 0.442269 0.427321 0.517077 0.509551 0.729673 0.555051 0.826788 0.577462 1.000000 0.290038 1.000000 0.005615 0.997394 diff --git a/datasets/pinganmajia/val/labels/订单1815347_4_7189187.txt b/datasets/pinganmajia/val/labels/订单1815347_4_7189187.txt new file mode 100644 index 0000000..b24e997 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815347_4_7189187.txt @@ -0,0 +1 @@ +4 0.698957 0.274273 0.580291 0.299213 0.505828 0.387137 0.480245 0.518365 0.487224 0.561678 0.533758 0.560363 0.543067 0.643045 0.519801 0.725718 0.475583 0.783460 0.515138 0.795268 0.566334 0.770337 0.596580 0.724403 0.622178 0.652223 0.659402 0.595796 0.650092 0.666661 0.619847 0.736220 0.638466 0.772958 0.691979 0.809706 0.726887 0.805770 0.705936 0.748028 0.738512 0.662725 0.794356 0.556427 0.840890 0.536739 0.836242 0.581358 0.868819 0.586609 0.899064 0.551176 0.931641 0.455381 0.929310 0.346453 0.910690 0.312336 0.819954 0.279524 0.845552 0.206029 0.799003 0.177163 0.729202 0.194221 0.696626 0.230969 0.703604 0.249343 diff --git a/datasets/pinganmajia/val/labels/订单1815349_4_7189138.txt b/datasets/pinganmajia/val/labels/订单1815349_4_7189138.txt new file mode 100644 index 0000000..1deb251 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815349_4_7189138.txt @@ -0,0 +1 @@ +4 1.000000 0.569812 0.888309 0.521021 0.846967 0.465907 0.847953 0.404224 0.853860 0.342549 0.849920 0.293987 0.833186 0.166691 0.792837 0.107639 0.706219 0.080082 0.625515 0.143072 0.588113 0.250686 0.595987 0.329420 0.589093 0.368791 0.595987 0.430474 0.622561 0.497402 0.605827 0.535458 0.545784 0.557770 0.489687 0.620760 0.453266 0.799240 0.414884 0.849109 0.409963 0.902917 0.392243 0.997402 0.999528 0.996087 1.000000 0.928072 diff --git a/datasets/pinganmajia/val/labels/订单1815350_4_7189215.txt b/datasets/pinganmajia/val/labels/订单1815350_4_7189215.txt new file mode 100644 index 0000000..d32645f --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815350_4_7189215.txt @@ -0,0 +1 @@ +4 0.005615 0.442269 0.072115 0.335971 0.241846 0.307106 0.350321 0.363529 0.376577 0.433087 0.360821 0.568260 0.516551 0.696865 0.476308 0.755923 0.521808 0.931769 0.533385 1.000000 0.210487 1.000000 0.000000 0.997433 0.000000 0.798856 diff --git a/datasets/pinganmajia/val/labels/订单1815352_4_7189372.txt b/datasets/pinganmajia/val/labels/订单1815352_4_7189372.txt new file mode 100644 index 0000000..a6708b1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815352_4_7189372.txt @@ -0,0 +1 @@ +4 0.005735 0.213885 0.184216 0.204694 0.303203 0.355613 0.320703 0.436985 0.315458 0.514412 0.416944 0.566900 0.579673 0.662708 0.726650 0.804436 0.765147 0.933039 0.828660 1.000000 0.424559 1.000000 0.002239 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1815353_4_7189360.txt b/datasets/pinganmajia/val/labels/订单1815353_4_7189360.txt new file mode 100644 index 0000000..28a69d9 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815353_4_7189360.txt @@ -0,0 +1 @@ +4 1.000000 0.351900 0.810858 0.329381 0.685381 0.362194 0.583256 0.438309 0.609523 0.548542 0.513229 0.570852 0.250613 0.666654 0.119305 0.724393 0.055123 0.805760 0.025940 0.870067 0.049278 0.926495 0.078460 0.996048 0.541063 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815357_4_7189224.txt b/datasets/pinganmajia/val/labels/订单1815357_4_7189224.txt new file mode 100644 index 0000000..5088adf --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815357_4_7189224.txt @@ -0,0 +1 @@ +4 0.950627 0.359550 0.861387 0.342490 0.824640 0.313620 0.826387 0.283440 0.850880 0.241440 0.840387 0.200760 0.821133 0.150890 0.773893 0.122020 0.703907 0.137770 0.661907 0.211260 0.668907 0.266380 0.689907 0.321500 0.611160 0.354300 0.558667 0.430420 0.509680 0.576090 0.481680 0.677140 0.493933 0.704700 0.514920 0.782130 0.523680 0.759820 0.530667 0.767690 0.553427 0.709950 0.581413 0.679760 0.588413 0.754570 0.577920 0.846430 0.570920 0.929110 0.572520 1.000000 0.626040 1.000000 0.658413 0.996040 0.719653 0.849050 0.740653 0.910730 0.749400 0.998660 0.843880 0.999970 0.835133 0.963230 0.871880 0.897610 0.882373 0.793940 0.913880 0.759820 0.910373 0.830680 0.901627 0.867430 0.913880 0.880550 0.962867 0.867430 0.980373 0.826740 0.997867 0.797870 1.000000 0.564040 1.000000 0.413190 diff --git a/datasets/pinganmajia/val/labels/订单1815359_4_7189281.txt b/datasets/pinganmajia/val/labels/订单1815359_4_7189281.txt new file mode 100644 index 0000000..1b67c72 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815359_4_7189281.txt @@ -0,0 +1 @@ +4 0.630430 0.254580 0.560443 0.313643 0.516693 0.439619 0.506198 0.539365 0.532448 0.551172 0.551693 0.553799 0.546445 0.635166 0.577943 0.658779 0.586693 0.767705 0.532448 0.808389 0.569193 0.822822 0.625182 0.786084 0.633932 0.762461 0.637435 0.706025 0.651432 0.664033 0.677682 0.696846 0.670677 0.761143 0.668932 0.800518 0.695182 0.847764 0.728424 0.864824 0.742422 0.842510 0.721419 0.796582 0.740664 0.736211 0.733672 0.671904 0.786159 0.661406 0.782669 0.574795 0.814167 0.577422 0.821159 0.545918 0.863151 0.452744 0.842161 0.353008 0.808906 0.293955 0.766914 0.279521 0.738919 0.248018 0.742422 0.183721 0.696927 0.162725 0.651432 0.185029 0.640938 0.234902 diff --git a/datasets/pinganmajia/val/labels/订单1815361_4_7189251.txt b/datasets/pinganmajia/val/labels/订单1815361_4_7189251.txt new file mode 100644 index 0000000..c385f84 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815361_4_7189251.txt @@ -0,0 +1 @@ +4 0.712653 0.459290 0.654907 0.505220 0.632160 0.543280 0.658413 0.557720 0.665400 0.632520 0.681160 0.700760 0.665400 0.772940 0.626907 0.812310 0.677653 0.808370 0.700400 0.801810 0.707400 0.765070 0.726653 0.730940 0.740653 0.677140 0.752893 0.736190 0.756400 0.782130 0.775640 0.813620 0.794893 0.846430 0.817640 0.847740 0.819387 0.805750 0.808893 0.745380 0.808893 0.707320 0.805387 0.627270 0.852627 0.557720 0.845640 0.502600 0.822880 0.471100 0.779147 0.452730 0.756400 0.405490 0.721400 0.413360 0.719653 0.443540 diff --git a/datasets/pinganmajia/val/labels/订单1815362_4_7189325.txt b/datasets/pinganmajia/val/labels/订单1815362_4_7189325.txt new file mode 100644 index 0000000..57f58bb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815362_4_7189325.txt @@ -0,0 +1 @@ +4 0.003462 0.493464 0.061538 0.454093 0.174724 0.381920 0.175711 0.324175 0.158977 0.279551 0.160944 0.229681 0.171771 0.234935 0.165864 0.162753 0.193425 0.099763 0.256415 0.066953 0.337126 0.106324 0.365668 0.179820 0.370588 0.272990 0.368621 0.351732 0.346967 0.419975 0.381415 0.464592 0.446379 0.565645 0.480827 0.653570 0.507402 0.727059 0.520196 0.800547 0.504449 0.875351 0.482794 0.922598 0.509369 0.960654 0.512322 0.993464 0.003462 0.996087 diff --git a/datasets/pinganmajia/val/labels/订单1815363_4_7189257.txt b/datasets/pinganmajia/val/labels/订单1815363_4_7189257.txt new file mode 100644 index 0000000..5114488 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815363_4_7189257.txt @@ -0,0 +1 @@ +4 0.999514 0.414712 0.903058 0.396333 0.895183 0.349090 0.881404 0.321532 0.840067 0.309724 0.847942 0.160115 0.844005 0.063000 0.817428 0.021006 0.656995 0.026256 0.626486 0.125994 0.626486 0.229667 0.637312 0.317596 0.655029 0.366154 0.589082 0.425205 0.569399 0.463263 0.524120 0.654865 0.501486 0.838596 0.499514 0.958013 0.493788 1.000000 1.000000 1.000000 1.000000 0.437019 diff --git a/datasets/pinganmajia/val/labels/订单1815365_4_7189284.txt b/datasets/pinganmajia/val/labels/订单1815365_4_7189284.txt new file mode 100644 index 0000000..335158a --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815365_4_7189284.txt @@ -0,0 +1 @@ +4 1.000000 0.648578 0.927876 0.628578 0.933121 0.585270 0.936618 0.531471 0.945376 0.476348 0.910376 0.381863 0.854379 0.349056 0.723154 0.339865 0.626912 0.388419 0.591912 0.484228 0.588415 0.564277 0.598922 0.611520 0.441438 0.677132 0.385441 0.729632 0.264706 0.821495 0.136977 0.936985 0.061732 0.999975 1.000000 0.999975 diff --git a/datasets/pinganmajia/val/labels/订单1815371_4_7189338.txt b/datasets/pinganmajia/val/labels/订单1815371_4_7189338.txt new file mode 100644 index 0000000..db45aa8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815371_4_7189338.txt @@ -0,0 +1 @@ +4 1.000000 0.491292 0.884359 0.296604 0.903063 0.223115 0.892234 0.179802 0.878461 0.108937 0.837117 0.044635 0.637312 0.034135 0.605820 0.144375 0.608773 0.237552 0.630430 0.355656 0.646172 0.402906 0.580227 0.629938 0.581211 0.733615 0.570383 0.901594 0.572352 0.984271 1.000000 0.992062 diff --git a/datasets/pinganmajia/val/labels/订单1815372_4_7189389.txt b/datasets/pinganmajia/val/labels/订单1815372_4_7189389.txt new file mode 100644 index 0000000..0638a7c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815372_4_7189389.txt @@ -0,0 +1 @@ +4 0.947025 0.986910 0.882292 0.906858 0.786053 0.804497 0.768553 0.763819 0.828044 0.724444 0.821042 0.661450 0.840289 0.618142 0.892789 0.551215 0.870035 0.476415 0.805301 0.439670 0.681065 0.451476 0.600567 0.507908 0.548079 0.572214 0.488588 0.607648 0.345104 0.598464 0.252361 0.640460 0.126377 0.695573 0.044144 0.755938 0.000000 0.799236 0.000000 0.891684 0.033646 0.912109 0.038889 0.960668 0.004479 1.000000 0.954306 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815374_4_7189333.txt b/datasets/pinganmajia/val/labels/订单1815374_4_7189333.txt new file mode 100644 index 0000000..16df3b4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815374_4_7189333.txt @@ -0,0 +1 @@ +4 0.997539 0.556430 0.944390 0.527559 0.864665 0.530184 0.843996 0.475066 0.810531 0.479003 0.751476 0.455381 0.758366 0.379265 0.758366 0.316273 0.739665 0.265092 0.713091 0.179790 0.640256 0.156168 0.574311 0.192913 0.545768 0.265092 0.555610 0.337270 0.565453 0.427822 0.589075 0.488189 0.570374 0.511811 0.513287 0.557743 0.435531 0.744094 0.413878 0.837270 0.425689 0.994751 0.919783 1.000000 0.919783 1.000000 0.919783 1.000000 0.926673 0.900262 1.000000 0.970656 1.000000 0.902014 diff --git a/datasets/pinganmajia/val/labels/订单1815376_4_7189467.txt b/datasets/pinganmajia/val/labels/订单1815376_4_7189467.txt new file mode 100644 index 0000000..57a5944 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815376_4_7189467.txt @@ -0,0 +1 @@ +4 1.000000 0.739828 0.899869 0.703382 0.948873 0.649583 0.947124 0.583958 0.957614 0.522279 0.966373 0.448787 0.878873 0.387108 0.754641 0.384485 0.635654 0.431728 0.632157 0.517034 0.621667 0.636458 0.647908 0.688946 0.516667 0.712574 0.443186 0.790000 0.322451 0.943542 0.306078 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815379_4_7189431.txt b/datasets/pinganmajia/val/labels/订单1815379_4_7189431.txt new file mode 100644 index 0000000..fd6a81e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815379_4_7189431.txt @@ -0,0 +1 @@ +4 0.000490 0.664020 0.091471 0.577402 0.164967 0.548529 0.170212 0.518346 0.131716 0.485539 0.108971 0.442230 0.133480 0.438297 0.122974 0.373983 0.173725 0.313627 0.264706 0.295245 0.348693 0.339865 0.404690 0.410735 0.409935 0.457978 0.411683 0.513100 0.418693 0.566900 0.485180 0.599706 0.548170 0.683701 0.639167 0.761127 0.752892 0.833309 0.786144 0.879240 0.770392 0.936985 0.730147 0.996042 0.000490 0.998664 diff --git a/datasets/pinganmajia/val/labels/订单1815380_4_7189437.txt b/datasets/pinganmajia/val/labels/订单1815380_4_7189437.txt new file mode 100644 index 0000000..d5e083e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815380_4_7189437.txt @@ -0,0 +1 @@ +4 1.000000 0.593848 0.955866 0.576091 0.922631 0.559032 0.910376 0.488162 0.891127 0.406801 0.763399 0.347745 0.647908 0.364804 0.591912 0.451422 0.576160 0.536716 0.591912 0.582647 0.535915 0.627267 0.527173 0.658762 0.430931 0.866115 0.355703 0.999975 1.000000 0.997365 diff --git a/datasets/pinganmajia/val/labels/订单1815381_4_7189439.txt b/datasets/pinganmajia/val/labels/订单1815381_4_7189439.txt new file mode 100644 index 0000000..aef8384 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815381_4_7189439.txt @@ -0,0 +1 @@ +4 0.483774 0.998709 0.439409 0.816291 0.493628 0.687687 0.476872 0.627313 0.452226 0.580073 0.414762 0.501331 0.355610 0.346477 0.296463 0.318920 0.331951 0.240179 0.340823 0.128628 0.346738 0.072200 0.341811 0.018393 0.070701 0.017078 0.072671 0.060390 0.065768 0.098442 0.077604 0.171932 0.091402 0.202119 0.092390 0.232305 0.058872 0.261177 0.001689 0.283482 0.000707 0.997394 diff --git a/datasets/pinganmajia/val/labels/订单1815383_4_7189587.txt b/datasets/pinganmajia/val/labels/订单1815383_4_7189587.txt new file mode 100644 index 0000000..dec5432 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815383_4_7189587.txt @@ -0,0 +1 @@ +4 0.990866 0.354301 0.997859 0.253260 0.948873 0.216507 0.880621 0.160074 0.763399 0.132525 0.688154 0.186324 0.618170 0.272941 0.612908 0.375306 0.618170 0.486850 0.502680 0.652206 0.437941 0.849056 0.383693 0.996042 1.000000 0.997341 1.000000 0.480809 0.985621 0.472414 1.000000 0.459828 1.000000 0.412157 diff --git a/datasets/pinganmajia/val/labels/订单1815384_4_7189517.txt b/datasets/pinganmajia/val/labels/订单1815384_4_7189517.txt new file mode 100644 index 0000000..49dc43c --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815384_4_7189517.txt @@ -0,0 +1 @@ +4 0.994383 0.161404 0.808909 0.152222 0.770412 0.192901 0.654928 0.305764 0.689918 0.408125 0.728416 0.515733 0.626934 0.561667 0.562191 0.687654 0.583189 0.828071 0.586687 0.993426 0.763457 1.000000 1.000000 1.000000 1.000000 0.463742 diff --git a/datasets/pinganmajia/val/labels/订单1815385_4_7189531.txt b/datasets/pinganmajia/val/labels/订单1815385_4_7189531.txt new file mode 100644 index 0000000..aba75b8 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815385_4_7189531.txt @@ -0,0 +1 @@ +4 1.000000 0.455477 0.936528 0.429167 0.945278 0.389800 0.966273 0.372743 0.987280 0.318932 0.968032 0.220512 0.922535 0.154896 0.864792 0.065651 0.721308 0.056467 0.604074 0.101085 0.528831 0.182448 0.535833 0.249384 0.549826 0.393733 0.576076 0.464601 0.341609 0.917361 0.311863 0.993472 0.997488 1.000000 1.000000 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815386_4_7189495.txt b/datasets/pinganmajia/val/labels/订单1815386_4_7189495.txt new file mode 100644 index 0000000..b8d10d7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815386_4_7189495.txt @@ -0,0 +1 @@ +4 0.525427 0.381860 0.481680 0.398920 0.462427 0.429110 0.446680 0.486850 0.464187 0.534090 0.476427 0.555090 0.485173 0.611520 0.493933 0.667950 0.493933 0.709950 0.507920 0.703390 0.518427 0.670580 0.534173 0.591840 0.532427 0.671890 0.537667 0.698140 0.556920 0.708630 0.555173 0.660080 0.577920 0.591840 0.591920 0.545910 0.616413 0.518350 0.618160 0.434360 0.612907 0.406800 0.570920 0.377930 0.579667 0.345120 0.548173 0.326740 0.521920 0.345120 0.528920 0.360870 diff --git a/datasets/pinganmajia/val/labels/订单1815387_4_7189547.txt b/datasets/pinganmajia/val/labels/订单1815387_4_7189547.txt new file mode 100644 index 0000000..0168b66 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815387_4_7189547.txt @@ -0,0 +1 @@ +4 0.000000 0.465106 0.100242 0.404181 0.086242 0.370063 0.044250 0.337256 0.012750 0.270325 0.042500 0.240144 0.021500 0.106281 0.039000 0.078725 0.119492 0.017044 0.390708 0.020981 0.458950 0.098406 0.460692 0.185025 0.474692 0.278200 0.490442 0.339881 0.453700 0.438306 0.488692 0.467175 0.535933 0.593162 0.590183 0.755888 0.584933 0.858250 0.586683 0.996044 0.002250 0.996044 0.000000 0.654731 diff --git a/datasets/pinganmajia/val/labels/订单1815389_4_7189596.txt b/datasets/pinganmajia/val/labels/订单1815389_4_7189596.txt new file mode 100644 index 0000000..0d325cb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815389_4_7189596.txt @@ -0,0 +1 @@ +4 1.000000 0.277168 0.952387 0.241458 0.987387 0.204715 0.997881 0.131219 1.000000 0.063758 1.000000 0.019676 0.471204 0.022299 0.492202 0.144344 0.495700 0.232269 0.551687 0.318881 0.485195 0.434367 0.402953 0.603665 0.457202 0.790015 0.458951 0.997361 1.000000 0.999961 diff --git a/datasets/pinganmajia/val/labels/订单1815390_4_7189671.txt b/datasets/pinganmajia/val/labels/订单1815390_4_7189671.txt new file mode 100644 index 0000000..50379a1 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815390_4_7189671.txt @@ -0,0 +1 @@ +4 0.782526 0.330721 0.744026 0.356971 0.677538 0.402904 0.653038 0.531510 0.674038 0.572192 0.700282 0.615500 0.719526 0.775606 0.744026 0.800538 0.768526 0.771673 0.775526 0.674558 0.793026 0.635183 0.805269 0.703423 0.798269 0.772981 0.861256 0.766423 0.866513 0.695558 0.882256 0.623375 0.884013 0.577442 0.898013 0.534135 0.926000 0.578760 0.917256 0.626000 0.945256 0.603692 0.957500 0.569567 0.962756 0.480327 0.933000 0.409462 0.906756 0.367471 0.877013 0.338596 0.861256 0.332038 0.850769 0.261173 0.789526 0.282163 0.773769 0.312356 diff --git a/datasets/pinganmajia/val/labels/订单1815391_4_7189583.txt b/datasets/pinganmajia/val/labels/订单1815391_4_7189583.txt new file mode 100644 index 0000000..2d9a9ca --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815391_4_7189583.txt @@ -0,0 +1 @@ +4 0.724922 0.347764 0.791419 0.387129 0.810664 0.448809 0.810664 0.507861 0.794909 0.536738 0.772161 0.561670 0.749414 0.564297 0.744167 0.679785 0.754674 0.725713 0.779167 0.753271 0.758164 0.758525 0.712669 0.732275 0.691680 0.690283 0.688177 0.612852 0.670677 0.658779 0.679427 0.703398 0.672435 0.727021 0.668932 0.771641 0.644427 0.771641 0.630430 0.733584 0.626940 0.670596 0.611185 0.602354 0.597187 0.493428 0.598932 0.450117 0.579688 0.471123 0.560443 0.510488 0.558698 0.548545 0.539440 0.556426 0.534193 0.502617 0.549948 0.446182 0.574440 0.383193 0.647930 0.346445 0.653177 0.303145 0.689922 0.282139 0.730169 0.297891 0.731927 0.322822 diff --git a/datasets/pinganmajia/val/labels/订单1815392_4_7189560.txt b/datasets/pinganmajia/val/labels/订单1815392_4_7189560.txt new file mode 100644 index 0000000..5d68cc5 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815392_4_7189560.txt @@ -0,0 +1 @@ +4 1.000000 0.195865 0.833269 0.136500 0.688038 0.164058 0.588295 0.272981 0.572551 0.356971 0.560295 0.461962 0.600551 0.528885 0.469308 0.565635 0.395821 0.673240 0.325833 0.816288 0.306577 0.994769 1.000000 0.997375 1.000000 0.526298 0.954000 0.511827 0.973244 0.443587 0.987244 0.408154 1.000000 0.383808 diff --git a/datasets/pinganmajia/val/labels/订单1815396_4_7189620.txt b/datasets/pinganmajia/val/labels/订单1815396_4_7189620.txt new file mode 100644 index 0000000..647f21e --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815396_4_7189620.txt @@ -0,0 +1 @@ +4 0.000000 0.424910 0.040856 0.404212 0.108769 0.370090 0.094005 0.330718 0.094005 0.288724 0.084163 0.224417 0.093019 0.128622 0.128452 0.035442 0.151091 0.017071 0.261327 0.018385 0.303649 0.089250 0.328255 0.187673 0.337115 0.248045 0.330226 0.333346 0.315462 0.388462 0.412904 0.458013 0.457192 0.618122 0.480813 0.749353 0.511327 0.887147 0.511327 0.935705 0.520784 1.000000 0.493500 1.000000 0.466053 0.997385 0.465067 0.963263 0.439476 0.937019 0.448337 0.994763 0.150370 1.000000 0.000462 1.000000 0.000000 0.970269 diff --git a/datasets/pinganmajia/val/labels/订单1815398_4_7189598.txt b/datasets/pinganmajia/val/labels/订单1815398_4_7189598.txt new file mode 100644 index 0000000..5da6308 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815398_4_7189598.txt @@ -0,0 +1 @@ +4 0.184122 0.324179 0.168372 0.354363 0.107128 0.385858 0.075633 0.458037 0.072133 0.553837 0.098383 0.624704 0.110628 0.661450 0.131628 0.670637 0.149128 0.675888 0.180622 0.818929 0.203367 0.851738 0.168372 0.901608 0.154372 0.938354 0.201617 0.942292 0.238367 0.898983 0.264611 0.876675 0.262861 0.822867 0.264611 0.776938 0.276861 0.696883 0.306606 0.748062 0.311856 0.821554 0.324106 0.838617 0.324106 0.871425 0.345100 0.888483 0.383594 0.925229 0.411594 0.913417 0.422089 0.896358 0.397594 0.863550 0.371350 0.835992 0.383594 0.803183 0.360850 0.727067 0.380094 0.647012 0.369600 0.552525 0.394094 0.580083 0.390594 0.624704 0.408094 0.645704 0.427339 0.620767 0.437839 0.586646 0.430839 0.484283 0.401094 0.413417 0.376594 0.375362 0.313606 0.343867 0.287356 0.316304 0.294356 0.258562 0.257611 0.221817 0.191122 0.228379 0.171872 0.265125 0.182372 0.291371 0.196367 0.307121 diff --git a/datasets/pinganmajia/val/labels/订单1815400_4_7189689.txt b/datasets/pinganmajia/val/labels/订单1815400_4_7189689.txt new file mode 100644 index 0000000..275d157 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815400_4_7189689.txt @@ -0,0 +1 @@ +4 0.009144 0.021029 0.409844 0.023654 0.460589 0.144392 0.488583 0.270375 0.500833 0.360925 0.471083 0.485596 0.588322 0.539404 0.707306 0.626017 0.866533 0.758563 0.877033 0.803183 1.000000 0.897867 1.000000 0.997437 0.752917 1.000000 0.000000 1.000000 0.000000 0.489804 diff --git a/datasets/pinganmajia/val/labels/订单1815403_4_7189669.txt b/datasets/pinganmajia/val/labels/订单1815403_4_7189669.txt new file mode 100644 index 0000000..1023c98 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815403_4_7189669.txt @@ -0,0 +1 @@ +4 0.000000 0.160078 0.058137 0.128646 0.206875 0.115521 0.299606 0.161450 0.336354 0.244132 0.350359 0.303186 0.346852 0.379297 0.336354 0.417361 0.423843 0.447543 0.383600 0.500035 0.471088 0.524974 0.488588 0.559089 0.476343 0.589271 0.577824 0.727066 0.570822 0.769062 0.521829 0.800564 0.549826 0.871424 0.516586 0.998724 0.000000 0.997431 diff --git a/datasets/pinganmajia/val/labels/订单1815405_4_7189820.txt b/datasets/pinganmajia/val/labels/订单1815405_4_7189820.txt new file mode 100644 index 0000000..0d222eb --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815405_4_7189820.txt @@ -0,0 +1 @@ +4 0.002969 0.566914 0.078361 0.534105 0.083619 0.488179 0.074856 0.439622 0.102907 0.429120 0.104660 0.347755 0.187072 0.279514 0.318577 0.272955 0.385206 0.303140 0.420268 0.362191 0.422021 0.421250 0.416763 0.481613 0.393969 0.566914 0.458845 0.587917 0.474629 0.675841 0.518464 0.749329 0.664990 1.000000 0.335804 1.000000 0.000000 0.998681 0.000000 0.931836 diff --git a/datasets/pinganmajia/val/labels/订单1815406_4_7189746.txt b/datasets/pinganmajia/val/labels/订单1815406_4_7189746.txt new file mode 100644 index 0000000..d8b9074 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815406_4_7189746.txt @@ -0,0 +1 @@ +4 0.999372 0.463271 0.930366 0.434399 0.883043 0.372719 0.747982 0.334667 0.737134 0.305795 0.716433 0.265114 0.714463 0.111567 0.691787 0.018393 0.523207 0.022330 0.489689 0.165373 0.501518 0.261177 0.546866 0.376664 0.501518 0.451461 0.462085 0.657500 0.460110 0.780860 0.469970 0.839911 0.485744 0.926526 0.504470 1.000000 0.958341 1.000000 0.925433 0.918653 0.937262 0.820227 0.958951 0.761177 1.000000 0.786891 1.000000 0.484205 diff --git a/datasets/pinganmajia/val/labels/订单1815408_4_7189742.txt b/datasets/pinganmajia/val/labels/订单1815408_4_7189742.txt new file mode 100644 index 0000000..ea56384 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815408_4_7189742.txt @@ -0,0 +1 @@ +4 0.285729 0.354326 0.269974 0.375322 0.191237 0.398945 0.138750 0.543301 0.142240 0.614160 0.166745 0.652227 0.189492 0.698154 0.210482 0.715215 0.219232 0.860879 0.222734 0.923877 0.234987 0.956680 0.247227 0.999990 0.247656 1.000000 0.306445 1.000000 0.294479 0.944873 0.296224 0.864824 0.324219 0.776895 0.325977 0.837266 0.331224 0.893691 0.329466 0.923877 0.360964 0.930439 0.430964 0.959307 0.437956 0.935684 0.397708 0.889756 0.392461 0.805762 0.422214 0.686338 0.429206 0.625977 0.436211 0.670596 0.464206 0.639102 0.464206 0.565605 0.458958 0.477686 0.443203 0.431748 0.381966 0.384502 0.402969 0.329385 0.392461 0.293955 0.331224 0.279521 0.301471 0.309697 0.283971 0.329385 diff --git a/datasets/pinganmajia/val/labels/订单1815409_4_7189829.txt b/datasets/pinganmajia/val/labels/订单1815409_4_7189829.txt new file mode 100644 index 0000000..52013b4 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815409_4_7189829.txt @@ -0,0 +1 @@ +4 0.003872 0.480327 0.065115 0.452769 0.042359 0.422587 0.038872 0.368779 0.061615 0.353029 0.079115 0.286106 0.136859 0.224423 0.226090 0.211298 0.362577 0.257231 0.397577 0.333346 0.399321 0.397654 0.394077 0.463269 0.353821 0.530202 0.401064 0.654875 0.455308 0.788731 0.464064 0.864846 0.467564 0.998702 0.000000 0.996106 0.000000 0.708462 diff --git a/datasets/pinganmajia/val/labels/订单1815410_4_7189771.txt b/datasets/pinganmajia/val/labels/订单1815410_4_7189771.txt new file mode 100644 index 0000000..1c20e5d --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815410_4_7189771.txt @@ -0,0 +1 @@ +4 0.010894 0.139142 0.135128 0.106333 0.346850 0.169325 0.432589 0.257250 0.448339 0.320242 0.425589 0.351737 0.430839 0.481658 0.429089 0.548588 0.521828 0.601083 0.593572 0.660137 0.672311 0.778250 0.772594 1.000000 0.000411 1.000000 diff --git a/datasets/pinganmajia/val/labels/订单1815411_4_7189755.txt b/datasets/pinganmajia/val/labels/订单1815411_4_7189755.txt new file mode 100644 index 0000000..63b4e80 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815411_4_7189755.txt @@ -0,0 +1 @@ +4 1.000000 0.524146 0.839708 0.493402 0.862419 0.465841 0.897354 0.436976 0.897354 0.373988 0.851948 0.258500 0.670260 0.220439 0.574172 0.282122 0.568929 0.341171 0.572435 0.456659 0.610860 0.532780 0.579416 0.607585 0.472857 0.751939 0.502549 0.854293 0.485081 0.992098 0.925601 1.000000 0.996948 1.000000 1.000000 0.792402 diff --git a/datasets/pinganmajia/val/labels/订单1815413_4_7189754.txt b/datasets/pinganmajia/val/labels/订单1815413_4_7189754.txt new file mode 100644 index 0000000..4394e43 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815413_4_7189754.txt @@ -0,0 +1 @@ +4 0.002466 0.538071 0.041837 0.531506 0.102861 0.506571 0.173726 0.463263 0.167822 0.353026 0.168808 0.282160 0.176683 0.178487 0.223923 0.099750 0.295774 0.076128 0.387313 0.128622 0.403058 0.215231 0.414870 0.329404 0.426683 0.359590 0.406010 0.446205 0.396168 0.496071 0.497548 0.563000 0.535933 0.671929 0.550697 0.772974 0.563490 0.925205 0.574317 0.985577 0.546779 1.000000 0.544582 1.000000 0.000000 0.997397 0.000000 0.768462 diff --git a/datasets/pinganmajia/val/labels/订单1815415_4_7189805.txt b/datasets/pinganmajia/val/labels/订单1815415_4_7189805.txt new file mode 100644 index 0000000..90c53f7 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815415_4_7189805.txt @@ -0,0 +1 @@ +4 0.469308 0.401587 0.416821 0.444894 0.388821 0.565635 0.402821 0.641750 0.418564 0.691615 0.446564 0.700798 0.472808 0.771673 0.483308 0.881904 0.499064 0.935712 0.455308 0.981644 0.495564 0.998702 0.525308 0.964587 0.562051 0.947519 0.546308 0.864846 0.551551 0.742798 0.576051 0.804481 0.563795 0.887154 0.581295 0.943587 0.625038 0.985577 0.625038 0.933087 0.628538 0.845163 0.637295 0.692933 0.679282 0.678490 0.684538 0.627308 0.688038 0.488202 0.628538 0.419962 0.560295 0.395029 0.537551 0.350413 0.490308 0.332038 0.462308 0.360904 0.467564 0.383221 diff --git a/datasets/pinganmajia/val/labels/订单1815421_4_7189845.txt b/datasets/pinganmajia/val/labels/订单1815421_4_7189845.txt new file mode 100644 index 0000000..9090b05 --- /dev/null +++ b/datasets/pinganmajia/val/labels/订单1815421_4_7189845.txt @@ -0,0 +1 @@ +4 1.000000 0.510176 0.971804 0.490807 0.852240 0.447500 0.810740 0.410755 0.814691 0.383197 0.835446 0.351699 0.845324 0.296582 0.835446 0.276895 0.821613 0.188971 0.788015 0.128600 0.737623 0.119414 0.651657 0.158789 0.620034 0.216530 0.615093 0.292643 0.623990 0.372695 0.629917 0.456686 0.577549 0.490807 0.517270 0.629915 0.474784 0.727025 0.464902 0.804453 0.495534 0.867448 0.501461 0.936999 0.470828 0.999993 0.472975 1.000000 0.928549 1.000000 0.949078 0.880573 1.000000 0.884473 diff --git a/datasets/xianshiping/classes.txt b/datasets/xianshiping/classes.txt new file mode 100644 index 0000000..7b26e3e --- /dev/null +++ b/datasets/xianshiping/classes.txt @@ -0,0 +1 @@ +xian_shi_ping \ No newline at end of file diff --git a/datasets/xianshiping/data.yaml b/datasets/xianshiping/data.yaml new file mode 100644 index 0000000..042c398 --- /dev/null +++ b/datasets/xianshiping/data.yaml @@ -0,0 +1,5 @@ +path: /home/ubuntu/python_projects/jjdetection/datasets/pinganmajia +train: /home/ubuntu/python_projects/jjdetection/datasets/pinganmajia/train/images +val: /home/ubuntu/python_projects/jjdetection/datasets/pinganmajia/val/images +nc: 7 +names: ['da_dian_xian','tuo_che_shang_you_che','yi_biao_pan','lun_tai','ping_an_ma_jia','jian_ce_yi','xian_shi_ping'] \ No newline at end of file diff --git a/datasets/xianshiping/train/images/订单1805509_51_7097852.jpg b/datasets/xianshiping/train/images/订单1805509_51_7097852.jpg new file mode 100644 index 0000000..16dd228 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805509_51_7097852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc72296bc30d075a74c33a5391d98dddcfd6563df8dcb6686913827e9e934ac +size 149018 diff --git a/datasets/xianshiping/train/images/订单1805510_51_7098040.jpg b/datasets/xianshiping/train/images/订单1805510_51_7098040.jpg new file mode 100644 index 0000000..5eed5cb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805510_51_7098040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111039cd4b581f9baaf6d895df96446063b47abcf2651ccba44efbabd37bfc87 +size 445095 diff --git a/datasets/xianshiping/train/images/订单1805511_51_7097845.jpg b/datasets/xianshiping/train/images/订单1805511_51_7097845.jpg new file mode 100644 index 0000000..6a7dc7b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805511_51_7097845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30592e53a43e3d22030e67d96454e2f3f8643b3031b59cb6b5aed7835bc3f7d4 +size 120683 diff --git a/datasets/xianshiping/train/images/订单1805512_51_7097838.jpg b/datasets/xianshiping/train/images/订单1805512_51_7097838.jpg new file mode 100644 index 0000000..0e1a20b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805512_51_7097838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2f2884de7fb377999c512ac8ae730e8d8a4e47849e3d751589d99833524b8d +size 129728 diff --git a/datasets/xianshiping/train/images/订单1805513_51_7097862.jpg b/datasets/xianshiping/train/images/订单1805513_51_7097862.jpg new file mode 100644 index 0000000..e95ee7e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805513_51_7097862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbdcadfcfaf05008bdc9d005a149eae5741fdfde379ad052171ebf85ecbe0df +size 141971 diff --git a/datasets/xianshiping/train/images/订单1805520_51_7097937.jpg b/datasets/xianshiping/train/images/订单1805520_51_7097937.jpg new file mode 100644 index 0000000..9f1de11 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805520_51_7097937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f6dd35236d741fdd0b6cfb5e4524568e5e5496312a67e76f2ab82b6ad1f94d +size 126404 diff --git a/datasets/xianshiping/train/images/订单1805524_51_7097938.jpg b/datasets/xianshiping/train/images/订单1805524_51_7097938.jpg new file mode 100644 index 0000000..a746052 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805524_51_7097938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0553695f922f37823aedb0caa1d45d5b6da29c3f30e361ee3e37c028bddea908 +size 163989 diff --git a/datasets/xianshiping/train/images/订单1805525_51_7097930.jpg b/datasets/xianshiping/train/images/订单1805525_51_7097930.jpg new file mode 100644 index 0000000..855c4c3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805525_51_7097930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1d04c56e0d0849ecbe889d65275bc47c0e6d53520934ee08adc6bbb3c66162 +size 181540 diff --git a/datasets/xianshiping/train/images/订单1805526_51_7097979.jpg b/datasets/xianshiping/train/images/订单1805526_51_7097979.jpg new file mode 100644 index 0000000..0af0a06 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805526_51_7097979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3699d4ce2a1f80f3dbaf2c597e147ffa81cd658f9b119ccc7ba290ccf8b84091 +size 112877 diff --git a/datasets/xianshiping/train/images/订单1805528_51_7097986.jpg b/datasets/xianshiping/train/images/订单1805528_51_7097986.jpg new file mode 100644 index 0000000..285a06b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805528_51_7097986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b90ddb2154fb0c7149e20d442fcbff87c415972d3ab4f40abe09e72442293 +size 490459 diff --git a/datasets/xianshiping/train/images/订单1805530_51_7098034.jpg b/datasets/xianshiping/train/images/订单1805530_51_7098034.jpg new file mode 100644 index 0000000..8a6bdaa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805530_51_7098034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8fbb4252a09f3af4c1087bbab8a817ab5949a570e82d35bc6a9095dc21f6b6 +size 120756 diff --git a/datasets/xianshiping/train/images/订单1805537_51_7097998.jpg b/datasets/xianshiping/train/images/订单1805537_51_7097998.jpg new file mode 100644 index 0000000..381890b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805537_51_7097998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8941b751e038c3f6c1bbd30adfe14fc3e48ba0a2d20b25f3d5e0a010e83e44 +size 147677 diff --git a/datasets/xianshiping/train/images/订单1805539_51_7098124.jpg b/datasets/xianshiping/train/images/订单1805539_51_7098124.jpg new file mode 100644 index 0000000..24f240f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805539_51_7098124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c2bccd1e1aee172372df552e6a494ab473b319bbb21b634146d7bbc8ecfd38 +size 530691 diff --git a/datasets/xianshiping/train/images/订单1805540_51_7098097.jpg b/datasets/xianshiping/train/images/订单1805540_51_7098097.jpg new file mode 100644 index 0000000..61f4e48 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805540_51_7098097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995a60f0b8c88bd76174b10b2b25fdf16c60200f303695d20ae29df1bf314461 +size 432512 diff --git a/datasets/xianshiping/train/images/订单1805542_51_7098142.jpg b/datasets/xianshiping/train/images/订单1805542_51_7098142.jpg new file mode 100644 index 0000000..352ca4a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805542_51_7098142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58afc5f3bb0af1b5c126b7103bda245bf7a9092cdecb6b942c44350c83c746 +size 512162 diff --git a/datasets/xianshiping/train/images/订单1805543_51_7098125.jpg b/datasets/xianshiping/train/images/订单1805543_51_7098125.jpg new file mode 100644 index 0000000..3cd799a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805543_51_7098125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcf0ff3842ac7b8c829c1fac490448239746fa8335c88b94613f84abf8e986a +size 92102 diff --git a/datasets/xianshiping/train/images/订单1805545_51_7098061.jpg b/datasets/xianshiping/train/images/订单1805545_51_7098061.jpg new file mode 100644 index 0000000..88ae571 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805545_51_7098061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494291cc817fe7b60d85e412e941cc5f76e155c12fbda6b71bd0d73ddb1e7285 +size 107174 diff --git a/datasets/xianshiping/train/images/订单1805548_51_7098174.jpg b/datasets/xianshiping/train/images/订单1805548_51_7098174.jpg new file mode 100644 index 0000000..897900f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805548_51_7098174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6fdabfe979b78e78076cb03bc97566fd8c122092d039bb13cc5c4e0a19a6f2 +size 171362 diff --git a/datasets/xianshiping/train/images/订单1805552_51_7098206.jpg b/datasets/xianshiping/train/images/订单1805552_51_7098206.jpg new file mode 100644 index 0000000..c30a660 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805552_51_7098206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97894a174bb21f7b7e7b835cfa8a65615749ab741ff1cb6f1e663d3a1623cd38 +size 378655 diff --git a/datasets/xianshiping/train/images/订单1805556_51_7098248.jpg b/datasets/xianshiping/train/images/订单1805556_51_7098248.jpg new file mode 100644 index 0000000..d78b8e0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805556_51_7098248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233f9132c9509f38b5dba09fdc57d7c96f4bc23ff54e346373919595585e4859 +size 115214 diff --git a/datasets/xianshiping/train/images/订单1805557_51_7098288.jpg b/datasets/xianshiping/train/images/订单1805557_51_7098288.jpg new file mode 100644 index 0000000..6bb9047 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805557_51_7098288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec82907f63e0597f67968c68c6ab758ef6267fd5249ef3720e902b9c0cf00c2 +size 146336 diff --git a/datasets/xianshiping/train/images/订单1805558_51_7098208.jpg b/datasets/xianshiping/train/images/订单1805558_51_7098208.jpg new file mode 100644 index 0000000..2317c0b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805558_51_7098208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107e1b575fd7533ce86eb65ac11119314b5d8ac19b3ea6024a54251558b33918 +size 463272 diff --git a/datasets/xianshiping/train/images/订单1805559_51_7098303.jpg b/datasets/xianshiping/train/images/订单1805559_51_7098303.jpg new file mode 100644 index 0000000..8d9d9f7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805559_51_7098303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5a4e5cb25d0f5dc47edd3a789fd495dcffda5c7d7d9c9c4f8f0b347faa1ecc +size 735669 diff --git a/datasets/xianshiping/train/images/订单1805560_51_7098355.jpg b/datasets/xianshiping/train/images/订单1805560_51_7098355.jpg new file mode 100644 index 0000000..b61c30a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805560_51_7098355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e276ca0adf5718031b453c8344d621705d5313ffde503bcefb348cd9be3fc +size 475724 diff --git a/datasets/xianshiping/train/images/订单1805561_51_7098457.jpg b/datasets/xianshiping/train/images/订单1805561_51_7098457.jpg new file mode 100644 index 0000000..ea0d8ae --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805561_51_7098457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a485641e7cc2419b336ab16a4df9a627d37468f4468e1f7d9a369cd7b8b3f8 +size 475817 diff --git a/datasets/xianshiping/train/images/订单1805565_51_7098285.jpg b/datasets/xianshiping/train/images/订单1805565_51_7098285.jpg new file mode 100644 index 0000000..3a02c1f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805565_51_7098285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12827fb66c68d0bd3cb87ade4c40f17d2b493d6633e9bb2da2595561a9488c4 +size 123226 diff --git a/datasets/xianshiping/train/images/订单1805567_51_7098253.jpg b/datasets/xianshiping/train/images/订单1805567_51_7098253.jpg new file mode 100644 index 0000000..2dd5bdb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805567_51_7098253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fb3dbeefb4697c5725d6dc5464bbb972dac0e8a108eefcf93563412514ec2b +size 128855 diff --git a/datasets/xianshiping/train/images/订单1805569_51_7098391.jpg b/datasets/xianshiping/train/images/订单1805569_51_7098391.jpg new file mode 100644 index 0000000..980e0ed --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805569_51_7098391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b483119a816864c92c66e176f2a0a3e2ff3db0a51e338a19e2a6f12d8213f52 +size 138920 diff --git a/datasets/xianshiping/train/images/订单1805570_51_7098370.jpg b/datasets/xianshiping/train/images/订单1805570_51_7098370.jpg new file mode 100644 index 0000000..3fd213f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805570_51_7098370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bf38b5e96d8277732d0663ebb6274a908fd5be29366ea1ab3e73c0f337c92c +size 108490 diff --git a/datasets/xianshiping/train/images/订单1805571_51_7099256.jpg b/datasets/xianshiping/train/images/订单1805571_51_7099256.jpg new file mode 100644 index 0000000..34a6c6c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805571_51_7099256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04b8b1b8ce36b190ed151213489ec72472928a2247c8e572bb95b1ff48092f2 +size 224798 diff --git a/datasets/xianshiping/train/images/订单1805573_51_7098331.jpg b/datasets/xianshiping/train/images/订单1805573_51_7098331.jpg new file mode 100644 index 0000000..d92a956 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805573_51_7098331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2720651be3c60124e5b2bf88566ddde9cdd5447f7c24eda57e1ab33f5c850e9 +size 131558 diff --git a/datasets/xianshiping/train/images/订单1805575_51_7098413.jpg b/datasets/xianshiping/train/images/订单1805575_51_7098413.jpg new file mode 100644 index 0000000..2ce8253 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805575_51_7098413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e92375248c448c65037a57f5d3cd8b22a86cc2187012f76e3f3d464dc25815 +size 156530 diff --git a/datasets/xianshiping/train/images/订单1805576_51_7098503.jpg b/datasets/xianshiping/train/images/订单1805576_51_7098503.jpg new file mode 100644 index 0000000..8df3112 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805576_51_7098503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cfe249d9ed08b8b3db394164e42681918b1d60fe345a03677f9cbce44b8cc8 +size 546052 diff --git a/datasets/xianshiping/train/images/订单1805578_51_7098451.jpg b/datasets/xianshiping/train/images/订单1805578_51_7098451.jpg new file mode 100644 index 0000000..fa2cea7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805578_51_7098451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c80cf4468440b0a3303ea5c8eb9067fdc67d4e91bd819eb368293740e342ee0 +size 188134 diff --git a/datasets/xianshiping/train/images/订单1805579_51_7098438.jpg b/datasets/xianshiping/train/images/订单1805579_51_7098438.jpg new file mode 100644 index 0000000..9571c68 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805579_51_7098438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a3c49a461002f46df1000e2f70078bf60348ea1ddc13cde94d5aa6a5e3126 +size 573231 diff --git a/datasets/xianshiping/train/images/订单1805580_51_7098406.jpg b/datasets/xianshiping/train/images/订单1805580_51_7098406.jpg new file mode 100644 index 0000000..191de05 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805580_51_7098406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786de63bd162599ac5a89f6319fc99e6d30bccc06d0627d83e7b84a0648e299d +size 460617 diff --git a/datasets/xianshiping/train/images/订单1805583_51_7098571.jpg b/datasets/xianshiping/train/images/订单1805583_51_7098571.jpg new file mode 100644 index 0000000..f18b7a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805583_51_7098571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8cdcde121581f098175f3132fc9e08630caa107df766b64ba248e9f4130f7a4 +size 141382 diff --git a/datasets/xianshiping/train/images/订单1805587_51_7098669.jpg b/datasets/xianshiping/train/images/订单1805587_51_7098669.jpg new file mode 100644 index 0000000..5d62126 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805587_51_7098669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9cc7f8498a305b4369228e5ef8c6ef133817765e1656ce9b58b5d5bb4b0486 +size 495865 diff --git a/datasets/xianshiping/train/images/订单1805592_51_7098703.jpg b/datasets/xianshiping/train/images/订单1805592_51_7098703.jpg new file mode 100644 index 0000000..c97946f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805592_51_7098703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a667cf70fcd422732eb458857e1a2f4778ff206f8abdef185e792e6a5e0377 +size 388063 diff --git a/datasets/xianshiping/train/images/订单1805593_51_7098545.jpg b/datasets/xianshiping/train/images/订单1805593_51_7098545.jpg new file mode 100644 index 0000000..954b7be --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805593_51_7098545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4961ceae89a3112e9ea1498ce9f0b7d1913a0801f5c30198bafd4b3793a9cbb4 +size 156386 diff --git a/datasets/xianshiping/train/images/订单1805596_51_7098501.jpg b/datasets/xianshiping/train/images/订单1805596_51_7098501.jpg new file mode 100644 index 0000000..d61227e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805596_51_7098501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37375f3a0bfdb83e49d49360a706fb12e2f5501773ae8737299d80f559730f7 +size 131837 diff --git a/datasets/xianshiping/train/images/订单1805597_51_7098528.jpg b/datasets/xianshiping/train/images/订单1805597_51_7098528.jpg new file mode 100644 index 0000000..30c3f01 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805597_51_7098528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe4aa1bff8ef0f3790d6d906d5314ff8391c6e90cb672c6c597ca293ab4184a +size 148251 diff --git a/datasets/xianshiping/train/images/订单1805605_51_7098836.jpg b/datasets/xianshiping/train/images/订单1805605_51_7098836.jpg new file mode 100644 index 0000000..4562bec --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805605_51_7098836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2e379acdff2ab2f71e7f0f48c71455f4410b7b06bae43586e55379ed276827 +size 335324 diff --git a/datasets/xianshiping/train/images/订单1805608_51_7098659.jpg b/datasets/xianshiping/train/images/订单1805608_51_7098659.jpg new file mode 100644 index 0000000..87243e7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805608_51_7098659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0f6f9107ca9151355da7fe25d178dafd2c1de220575c721a46a0ac4a4f7e6a +size 104330 diff --git a/datasets/xianshiping/train/images/订单1805609_51_7098743.jpg b/datasets/xianshiping/train/images/订单1805609_51_7098743.jpg new file mode 100644 index 0000000..586bd6b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805609_51_7098743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48a759d832b4d1cf9b45981e7e9cd3eb71f3b4b59b5a74fbdca17a37e8eb4c5 +size 138900 diff --git a/datasets/xianshiping/train/images/订单1805615_51_7098757.jpg b/datasets/xianshiping/train/images/订单1805615_51_7098757.jpg new file mode 100644 index 0000000..14b345b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805615_51_7098757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38fdcde322d2e59a947074d9323d084d859d1fed592088c29e70dcaea6476af6 +size 109481 diff --git a/datasets/xianshiping/train/images/订单1805620_51_7098837.jpg b/datasets/xianshiping/train/images/订单1805620_51_7098837.jpg new file mode 100644 index 0000000..8d9952f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805620_51_7098837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9630ae62f6eb7a46f78feea7f81647db331028c30b5eb5781c503c470ed91580 +size 122382 diff --git a/datasets/xianshiping/train/images/订单1805621_51_7098899.jpg b/datasets/xianshiping/train/images/订单1805621_51_7098899.jpg new file mode 100644 index 0000000..b1a5567 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805621_51_7098899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a2cbae92f60f95a664b3a2c86e60a1b82092ca3eb1e79759e4c36e7ff2bb22 +size 98531 diff --git a/datasets/xianshiping/train/images/订单1805624_51_7098851.jpg b/datasets/xianshiping/train/images/订单1805624_51_7098851.jpg new file mode 100644 index 0000000..605d418 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805624_51_7098851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d441034dd8974f44fa491ef2051bf7f7f56e62a23e55a328b1f0b532690751 +size 149195 diff --git a/datasets/xianshiping/train/images/订单1805627_51_7099446.jpg b/datasets/xianshiping/train/images/订单1805627_51_7099446.jpg new file mode 100644 index 0000000..920d95d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805627_51_7099446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab819d73d104fa00db6b2bbc09d8111524ec4f168998c2785342afa2601a43 +size 157669 diff --git a/datasets/xianshiping/train/images/订单1805629_51_7098926.jpg b/datasets/xianshiping/train/images/订单1805629_51_7098926.jpg new file mode 100644 index 0000000..5b051d3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805629_51_7098926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666f6b699ff390efce84da969803132f129b22cb06e693be76c263531a54c582 +size 470911 diff --git a/datasets/xianshiping/train/images/订单1805632_51_7098946.jpg b/datasets/xianshiping/train/images/订单1805632_51_7098946.jpg new file mode 100644 index 0000000..a2d552c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805632_51_7098946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a18996ceed2a0d4b4c751dc7cd80b3f7bd582d5251e9eac42b294044e36f9f8 +size 246273 diff --git a/datasets/xianshiping/train/images/订单1805638_51_7098944.jpg b/datasets/xianshiping/train/images/订单1805638_51_7098944.jpg new file mode 100644 index 0000000..42b7612 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805638_51_7098944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b5e19116a11be35357bcafdeedac3292b748b67dd94dfcba7083832850084d +size 174642 diff --git a/datasets/xianshiping/train/images/订单1805639_51_7098976.jpg b/datasets/xianshiping/train/images/订单1805639_51_7098976.jpg new file mode 100644 index 0000000..86b349f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805639_51_7098976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c69e52a6e3f79a6e51d5d4eaf4c4cc283d4e0998eee199528b0d90ca2b1081 +size 59231 diff --git a/datasets/xianshiping/train/images/订单1805640_51_7098963.jpg b/datasets/xianshiping/train/images/订单1805640_51_7098963.jpg new file mode 100644 index 0000000..1244712 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805640_51_7098963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3232d912b8b4898a7c86066d577cc64ff10ff31eaa8625d8203f0529698ef154 +size 107657 diff --git a/datasets/xianshiping/train/images/订单1805641_51_7099018.jpg b/datasets/xianshiping/train/images/订单1805641_51_7099018.jpg new file mode 100644 index 0000000..b798c80 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805641_51_7099018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50d575e04c4abe02cc60ea766fc4dc9777c695e93b017c0f62b830daefa681a +size 349462 diff --git a/datasets/xianshiping/train/images/订单1805650_51_7099158.jpg b/datasets/xianshiping/train/images/订单1805650_51_7099158.jpg new file mode 100644 index 0000000..f9586a3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805650_51_7099158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ef6282629f1af11899efee2faf53ea61d3c16e4a540619c0ab164fc6a4b9b9 +size 138409 diff --git a/datasets/xianshiping/train/images/订单1805651_51_7099073.jpg b/datasets/xianshiping/train/images/订单1805651_51_7099073.jpg new file mode 100644 index 0000000..faa3a5b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805651_51_7099073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076bc906cda2ce16236feb0f7ce72a518b23ea4a0c3683ae44722cc2b93569a0 +size 496898 diff --git a/datasets/xianshiping/train/images/订单1805657_51_7099117.jpg b/datasets/xianshiping/train/images/订单1805657_51_7099117.jpg new file mode 100644 index 0000000..594e610 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805657_51_7099117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ec2677b92aea0696a8640a2bf262df34e9301b96fb47c217eebd5efb20f539 +size 219746 diff --git a/datasets/xianshiping/train/images/订单1805658_51_7099576.jpg b/datasets/xianshiping/train/images/订单1805658_51_7099576.jpg new file mode 100644 index 0000000..a39a1cf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805658_51_7099576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e0bac6058e6211bedf082789c9b10276c5df66ffa3de8630aa2642e119ced8 +size 876953 diff --git a/datasets/xianshiping/train/images/订单1805659_51_7099146.jpg b/datasets/xianshiping/train/images/订单1805659_51_7099146.jpg new file mode 100644 index 0000000..54e8e77 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805659_51_7099146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7aea0d98d390dba1df1f624d6d5467352ed82e5eb7928de57a21de4e595cea +size 145564 diff --git a/datasets/xianshiping/train/images/订单1805660_51_7099156.jpg b/datasets/xianshiping/train/images/订单1805660_51_7099156.jpg new file mode 100644 index 0000000..c8326a4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805660_51_7099156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7786db625f65677627cce9ef700c32c10a7929dde4820783a2317689e768e2 +size 78532 diff --git a/datasets/xianshiping/train/images/订单1805661_51_7099341.jpg b/datasets/xianshiping/train/images/订单1805661_51_7099341.jpg new file mode 100644 index 0000000..943fd7a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805661_51_7099341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b51ad415b89506eb8abadd1186ca720a80aae897541421e442154ff147856d +size 224543 diff --git a/datasets/xianshiping/train/images/订单1805662_51_7099241.jpg b/datasets/xianshiping/train/images/订单1805662_51_7099241.jpg new file mode 100644 index 0000000..59eaab8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805662_51_7099241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e834d3d71f6641cc19f4573ffee7e624d299fe08cdd5e0ab01b8cb0631aa763a +size 149756 diff --git a/datasets/xianshiping/train/images/订单1805667_51_7099345.jpg b/datasets/xianshiping/train/images/订单1805667_51_7099345.jpg new file mode 100644 index 0000000..7b9162b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805667_51_7099345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef5def3b873eaea3d82187cb6f3aae741a70c00e7625aa5e79295f5302df66c +size 325645 diff --git a/datasets/xianshiping/train/images/订单1805672_51_7099269.jpg b/datasets/xianshiping/train/images/订单1805672_51_7099269.jpg new file mode 100644 index 0000000..ae07056 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805672_51_7099269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3488fbdefcce2af2d72636fa8689a04b7ce7531dff59052ad164bd46702e4c +size 125152 diff --git a/datasets/xianshiping/train/images/订单1805677_51_7099314.jpg b/datasets/xianshiping/train/images/订单1805677_51_7099314.jpg new file mode 100644 index 0000000..67238e0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805677_51_7099314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c5dfbeb9d1cedaef7eb2ef03cf041132fc1705269275327c968334a2056aa7 +size 130474 diff --git a/datasets/xianshiping/train/images/订单1805680_51_7099400.jpg b/datasets/xianshiping/train/images/订单1805680_51_7099400.jpg new file mode 100644 index 0000000..f6eb997 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805680_51_7099400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67f52c08f5a32d48319a786bbb012c85fbeac05edba2d136611eddb0a57f486 +size 238478 diff --git a/datasets/xianshiping/train/images/订单1805681_51_7099392.jpg b/datasets/xianshiping/train/images/订单1805681_51_7099392.jpg new file mode 100644 index 0000000..b9fa607 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805681_51_7099392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdaaeda7ee5ee7458db9d1632a3eaa38e35636659b02b6643d0aad2865ee0f7 +size 329492 diff --git a/datasets/xianshiping/train/images/订单1805683_51_7099308.jpg b/datasets/xianshiping/train/images/订单1805683_51_7099308.jpg new file mode 100644 index 0000000..331cb51 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805683_51_7099308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a02ba8e70a79f6151471e621de9ccc0d3c5995f37efd0325995a2a985cf19c +size 122320 diff --git a/datasets/xianshiping/train/images/订单1805684_51_7099421.jpg b/datasets/xianshiping/train/images/订单1805684_51_7099421.jpg new file mode 100644 index 0000000..6c1a12b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805684_51_7099421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c96b9dbe05fc585a11b6db15f69a15c161e16132348409252dd764aaa9289cf +size 97413 diff --git a/datasets/xianshiping/train/images/订单1805691_51_7099534.jpg b/datasets/xianshiping/train/images/订单1805691_51_7099534.jpg new file mode 100644 index 0000000..91328d2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805691_51_7099534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf26712e0f2cd581c9c9d8e6a5b9e60052a5c4a5f5ec4329a8bf773cd0049dae +size 430435 diff --git a/datasets/xianshiping/train/images/订单1805692_51_7099444.jpg b/datasets/xianshiping/train/images/订单1805692_51_7099444.jpg new file mode 100644 index 0000000..7ac968d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805692_51_7099444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3339fcaf3aea4c4cc8f8632f54cce1c8e4803051afaaab6a84220f3d0641ad +size 290946 diff --git a/datasets/xianshiping/train/images/订单1805694_51_7099545.jpg b/datasets/xianshiping/train/images/订单1805694_51_7099545.jpg new file mode 100644 index 0000000..3a12819 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805694_51_7099545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946206787f9de1292e8a2f948d4cb2f37b21c9f3ce6897497b505957ef41f176 +size 98029 diff --git a/datasets/xianshiping/train/images/订单1805696_51_7099528.jpg b/datasets/xianshiping/train/images/订单1805696_51_7099528.jpg new file mode 100644 index 0000000..1bd4d49 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805696_51_7099528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899cc04a5208679a7540e8403a97e6812d6f951c96cae5bb3472085eec56922c +size 148465 diff --git a/datasets/xianshiping/train/images/订单1805698_51_7099633.jpg b/datasets/xianshiping/train/images/订单1805698_51_7099633.jpg new file mode 100644 index 0000000..202a9e3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805698_51_7099633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7915c7c8933a08868ecaab92ca44a259f70c4669170704942a1dba9a04b793 +size 149939 diff --git a/datasets/xianshiping/train/images/订单1805699_51_7099594.jpg b/datasets/xianshiping/train/images/订单1805699_51_7099594.jpg new file mode 100644 index 0000000..e470ad2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805699_51_7099594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c302e421c3e2c052352fc9d228e63536b4194a30534f010a30dbe57427b6ed89 +size 132967 diff --git a/datasets/xianshiping/train/images/订单1805703_51_7099678.jpg b/datasets/xianshiping/train/images/订单1805703_51_7099678.jpg new file mode 100644 index 0000000..8bb40e9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805703_51_7099678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314273abfff660a3d33d59449e83d24ad93073747d66d438cea0cc04971eead9 +size 155462 diff --git a/datasets/xianshiping/train/images/订单1805704_51_7099624.jpg b/datasets/xianshiping/train/images/订单1805704_51_7099624.jpg new file mode 100644 index 0000000..eaeb550 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805704_51_7099624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34e36840039a9fe0200cad3730d389147ec9618b87564cd2b425e62aab07681 +size 315617 diff --git a/datasets/xianshiping/train/images/订单1805706_51_7099653.jpg b/datasets/xianshiping/train/images/订单1805706_51_7099653.jpg new file mode 100644 index 0000000..43410cc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805706_51_7099653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9955c4b84e4e5c8978a00f12ea97920f8fa212cef7a64973af4737098927fe0f +size 139604 diff --git a/datasets/xianshiping/train/images/订单1805711_51_7099701.jpg b/datasets/xianshiping/train/images/订单1805711_51_7099701.jpg new file mode 100644 index 0000000..1d411f4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805711_51_7099701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164d74382f7242437b634ae04b1bf4abff60d326f4d3a664a89c60dd7349b8f1 +size 131544 diff --git a/datasets/xianshiping/train/images/订单1805715_51_7099691.jpg b/datasets/xianshiping/train/images/订单1805715_51_7099691.jpg new file mode 100644 index 0000000..9097c47 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805715_51_7099691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efdc834a29a3f92e5ae7ea897a23ae1b0c916eaca6a580fa9f10943c2ef265a +size 163077 diff --git a/datasets/xianshiping/train/images/订单1805718_51_7099739.jpg b/datasets/xianshiping/train/images/订单1805718_51_7099739.jpg new file mode 100644 index 0000000..59cc6ac --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805718_51_7099739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248d38a84e1b32d3b3fdc73bbdd33e0396ab931d33e0fa4bf334fe6f9764fa9e +size 581774 diff --git a/datasets/xianshiping/train/images/订单1805720_51_7099771.jpg b/datasets/xianshiping/train/images/订单1805720_51_7099771.jpg new file mode 100644 index 0000000..3e28b19 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805720_51_7099771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af5cfab5a04b95b183e209684ef301386482705ae5997e8b9c577770258e912 +size 141615 diff --git a/datasets/xianshiping/train/images/订单1805723_51_7099785.jpg b/datasets/xianshiping/train/images/订单1805723_51_7099785.jpg new file mode 100644 index 0000000..6e7b110 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805723_51_7099785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d489eb37958a8b4faeebf252a26351b7ef83a91f37013e0cd0182ad64d941b +size 128241 diff --git a/datasets/xianshiping/train/images/订单1805726_51_7099833.jpg b/datasets/xianshiping/train/images/订单1805726_51_7099833.jpg new file mode 100644 index 0000000..1ea0ae9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805726_51_7099833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3831277a73e7fa5fc4398604ab5f9fff6a59adb16c8f2d6659f5a4867bc25a +size 128219 diff --git a/datasets/xianshiping/train/images/订单1805727_51_7099850.jpg b/datasets/xianshiping/train/images/订单1805727_51_7099850.jpg new file mode 100644 index 0000000..a34045b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805727_51_7099850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94341a145bddda59661159ea2ded8c1ea702be2240ad9527426225f6d4658f71 +size 102085 diff --git a/datasets/xianshiping/train/images/订单1805731_51_7100007.jpg b/datasets/xianshiping/train/images/订单1805731_51_7100007.jpg new file mode 100644 index 0000000..0b96e81 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805731_51_7100007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c39910351bb55fbc30d62d4e4899900253da860f2b7e035bfea2bcf69d793e +size 151745 diff --git a/datasets/xianshiping/train/images/订单1805735_51_7099895.jpg b/datasets/xianshiping/train/images/订单1805735_51_7099895.jpg new file mode 100644 index 0000000..22b5026 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805735_51_7099895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca6a424383cdfdd4a8f1bab66e7895f148f5c319797470ecc907748964787e0 +size 478669 diff --git a/datasets/xianshiping/train/images/订单1805736_51_7099971.jpg b/datasets/xianshiping/train/images/订单1805736_51_7099971.jpg new file mode 100644 index 0000000..4bc0295 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805736_51_7099971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e0bcc391f7c20f236adea0579a4e2cdde63eb332afafc9c4541bb738c126d0 +size 74648 diff --git a/datasets/xianshiping/train/images/订单1805737_51_7101315.jpg b/datasets/xianshiping/train/images/订单1805737_51_7101315.jpg new file mode 100644 index 0000000..3f80181 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805737_51_7101315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a51816a3b1335b3e6e3b1d700eecd33b8d1ab291b9f5a9b105cf2a1764177e2 +size 302775 diff --git a/datasets/xianshiping/train/images/订单1805739_51_7099950.jpg b/datasets/xianshiping/train/images/订单1805739_51_7099950.jpg new file mode 100644 index 0000000..85351b5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805739_51_7099950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80d35cd36362b33127b349cc4cb3d6dfeeca234229a6e77a15efe918380182d +size 137765 diff --git a/datasets/xianshiping/train/images/订单1805740_51_7099926.jpg b/datasets/xianshiping/train/images/订单1805740_51_7099926.jpg new file mode 100644 index 0000000..82cd491 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805740_51_7099926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad83865e125003a4e426012907c835298b92bbcea51b7f0a4d8de63f4e2000c5 +size 136278 diff --git a/datasets/xianshiping/train/images/订单1805742_51_7099979.jpg b/datasets/xianshiping/train/images/订单1805742_51_7099979.jpg new file mode 100644 index 0000000..a5c0dd2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805742_51_7099979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74fdd4bcd3776da5b07d72212578c97aa2f879c417f00586a31ccabc7630cf6 +size 160266 diff --git a/datasets/xianshiping/train/images/订单1805746_51_7100012.jpg b/datasets/xianshiping/train/images/订单1805746_51_7100012.jpg new file mode 100644 index 0000000..a2f2191 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805746_51_7100012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094f13bce39e1cf7d51a53ad7287eb437ef971de3ba306c6c4c02b3e70290dbc +size 128912 diff --git a/datasets/xianshiping/train/images/订单1805747_51_7100048.jpg b/datasets/xianshiping/train/images/订单1805747_51_7100048.jpg new file mode 100644 index 0000000..0fae44a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805747_51_7100048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fafb1b74e41480093eff24440c4c81dbbead4752da4c10b1696bcf02fae75f9 +size 527596 diff --git a/datasets/xianshiping/train/images/订单1805748_51_7100087.jpg b/datasets/xianshiping/train/images/订单1805748_51_7100087.jpg new file mode 100644 index 0000000..47c81d2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805748_51_7100087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b47eee087cdfe519539dc3e91e8d52491e1cd6d14866a0508da2e218c11a6 +size 151585 diff --git a/datasets/xianshiping/train/images/订单1805751_51_7100254.jpg b/datasets/xianshiping/train/images/订单1805751_51_7100254.jpg new file mode 100644 index 0000000..81932cb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805751_51_7100254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12462152800f3d6400207ac417df7a07d6d0bb2547923bd371d9018de3dbc3b +size 97164 diff --git a/datasets/xianshiping/train/images/订单1805752_51_7100195.jpg b/datasets/xianshiping/train/images/订单1805752_51_7100195.jpg new file mode 100644 index 0000000..15d57a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805752_51_7100195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13900aece85ff675ff4115cfb66a1e03ad29055506e6fa0e1757057fda6260e +size 118197 diff --git a/datasets/xianshiping/train/images/订单1805753_51_7100046.jpg b/datasets/xianshiping/train/images/订单1805753_51_7100046.jpg new file mode 100644 index 0000000..8e05946 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805753_51_7100046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0835ca949503e8f28a4e02755bb57743da696581c1706b61eb7dbac442fa9c9 +size 101158 diff --git a/datasets/xianshiping/train/images/订单1805763_51_7100277.jpg b/datasets/xianshiping/train/images/订单1805763_51_7100277.jpg new file mode 100644 index 0000000..28d00f0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805763_51_7100277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bfc5f719a33a6b17437848cd5fd5a40934ce465f54e605793522403770b4ca +size 508025 diff --git a/datasets/xianshiping/train/images/订单1805765_51_7100237.jpg b/datasets/xianshiping/train/images/订单1805765_51_7100237.jpg new file mode 100644 index 0000000..25d7c07 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805765_51_7100237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f7d98f3f0da30377aa8adb33cbfd554990702802081ecacc381f144b8c3b02 +size 136809 diff --git a/datasets/xianshiping/train/images/订单1805766_51_7100199.jpg b/datasets/xianshiping/train/images/订单1805766_51_7100199.jpg new file mode 100644 index 0000000..02daca5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805766_51_7100199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49c71e94da99c396e4864260c88f2e1aeacab05dc38abed14599e56500009d4 +size 146964 diff --git a/datasets/xianshiping/train/images/订单1805767_51_7100306.jpg b/datasets/xianshiping/train/images/订单1805767_51_7100306.jpg new file mode 100644 index 0000000..446cf85 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805767_51_7100306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a906025ac6688b6643ee4d447ac84e16de93fe3a0270f5d868c1c7257ffb1e +size 139491 diff --git a/datasets/xianshiping/train/images/订单1805769_51_7100206.jpg b/datasets/xianshiping/train/images/订单1805769_51_7100206.jpg new file mode 100644 index 0000000..368e821 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805769_51_7100206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26980d33465d017f567b3f8915d9e17dd3ed4f27c272fafb985b98381564107 +size 289943 diff --git a/datasets/xianshiping/train/images/订单1805770_51_7100239.jpg b/datasets/xianshiping/train/images/订单1805770_51_7100239.jpg new file mode 100644 index 0000000..f3d5bf5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805770_51_7100239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1f474a6bc6f02d8538cf338075fe85117d86f328ba36af04d6161c08fa4394 +size 139556 diff --git a/datasets/xianshiping/train/images/订单1805771_51_7100316.jpg b/datasets/xianshiping/train/images/订单1805771_51_7100316.jpg new file mode 100644 index 0000000..207b459 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805771_51_7100316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f839e15a164f08f6e15571ef55f1aeb6ed267cae2c9538e1b49696752cfb2d3 +size 136182 diff --git a/datasets/xianshiping/train/images/订单1805773_51_7100246.jpg b/datasets/xianshiping/train/images/订单1805773_51_7100246.jpg new file mode 100644 index 0000000..a47e1a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805773_51_7100246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a93fc06cf9b0e6da8489f964ef5d247af9b125684cdb062e5529a64791d16fd +size 105831 diff --git a/datasets/xianshiping/train/images/订单1805775_51_7100312.jpg b/datasets/xianshiping/train/images/订单1805775_51_7100312.jpg new file mode 100644 index 0000000..d152bb0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805775_51_7100312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44fb3cb5dd0c51f5cff90d1b829bdbb93e82177ad2eabf2a68570396681efe2d +size 130764 diff --git a/datasets/xianshiping/train/images/订单1805779_51_7100335.jpg b/datasets/xianshiping/train/images/订单1805779_51_7100335.jpg new file mode 100644 index 0000000..fab970b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805779_51_7100335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad55bf7247fdb9f5b2284672e07df169dd7f1000376d7556223d581124dfbce7 +size 166111 diff --git a/datasets/xianshiping/train/images/订单1805782_51_7100361.jpg b/datasets/xianshiping/train/images/订单1805782_51_7100361.jpg new file mode 100644 index 0000000..1506dec --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805782_51_7100361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf71c57f37b5cacd005d7f2a4e3e1cab37cd704c23d048b588982dc3428623b +size 154622 diff --git a/datasets/xianshiping/train/images/订单1805783_51_7100455.jpg b/datasets/xianshiping/train/images/订单1805783_51_7100455.jpg new file mode 100644 index 0000000..f4edb0e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805783_51_7100455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51214bacaa7788eaf141386d1499128b414dedaf977fbb4a8dce7878ac8446a +size 211715 diff --git a/datasets/xianshiping/train/images/订单1805788_51_7100527.jpg b/datasets/xianshiping/train/images/订单1805788_51_7100527.jpg new file mode 100644 index 0000000..6777963 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805788_51_7100527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d5bb7ace498b8c6ec51cd2c881d81445059168558163ca71a97a8ced777315 +size 106216 diff --git a/datasets/xianshiping/train/images/订单1805791_51_7100431.jpg b/datasets/xianshiping/train/images/订单1805791_51_7100431.jpg new file mode 100644 index 0000000..b0dcf38 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805791_51_7100431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd143d57bfdae568113ebcd532f3f4c7ad42fae228a9254652d3934e00d1e993 +size 124771 diff --git a/datasets/xianshiping/train/images/订单1805793_51_7100437.jpg b/datasets/xianshiping/train/images/订单1805793_51_7100437.jpg new file mode 100644 index 0000000..958fa07 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805793_51_7100437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4429b897129aed7b24b803d156bb7d8da698fbcfc075121ce1bbbf487798d1 +size 121320 diff --git a/datasets/xianshiping/train/images/订单1805794_51_7100487.jpg b/datasets/xianshiping/train/images/订单1805794_51_7100487.jpg new file mode 100644 index 0000000..f212ab5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805794_51_7100487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabd5b933dbf807e1c758e73833890ec356a6045faabec47d498cca1d16b3c6f +size 211051 diff --git a/datasets/xianshiping/train/images/订单1805797_51_7100514.jpg b/datasets/xianshiping/train/images/订单1805797_51_7100514.jpg new file mode 100644 index 0000000..4870279 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805797_51_7100514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d5cd073257c41e606c5da88d2b7cbab98e2f77ab6da8ebe20ba2824b62f9df +size 381484 diff --git a/datasets/xianshiping/train/images/订单1805802_51_7100539.jpg b/datasets/xianshiping/train/images/订单1805802_51_7100539.jpg new file mode 100644 index 0000000..6b70290 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805802_51_7100539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31087c937585da5dfdb3a0340894f40e4dd533cacd7da8cbacb5753eadc57bd +size 120024 diff --git a/datasets/xianshiping/train/images/订单1805804_51_7100605.jpg b/datasets/xianshiping/train/images/订单1805804_51_7100605.jpg new file mode 100644 index 0000000..67c3c09 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805804_51_7100605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0c60dff97b8cdbc0b77c7f782453d09d8db53c847b216a30d7e5fc8751a36e +size 76542 diff --git a/datasets/xianshiping/train/images/订单1805806_51_7100666.jpg b/datasets/xianshiping/train/images/订单1805806_51_7100666.jpg new file mode 100644 index 0000000..797a667 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805806_51_7100666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7f7e47318e006bbbd2f39116575d477bfe8567c7cdf068a8dfe8c896e6f548 +size 135950 diff --git a/datasets/xianshiping/train/images/订单1805807_51_7100667.jpg b/datasets/xianshiping/train/images/订单1805807_51_7100667.jpg new file mode 100644 index 0000000..36fdf6e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805807_51_7100667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6702ac88a9f866b99d059cc3cbf744603067e58ded91375be999141d320ea93a +size 582718 diff --git a/datasets/xianshiping/train/images/订单1805810_51_7100624.jpg b/datasets/xianshiping/train/images/订单1805810_51_7100624.jpg new file mode 100644 index 0000000..c502268 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805810_51_7100624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d371f2cdef83ec555089bfab5d2c70038a94b15da2ae71ee3b950688184663c +size 47597 diff --git a/datasets/xianshiping/train/images/订单1805812_51_7100601.jpg b/datasets/xianshiping/train/images/订单1805812_51_7100601.jpg new file mode 100644 index 0000000..2e40f59 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805812_51_7100601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abaee480e20d46cd4e74f410317073f422c9bd1ea38cf79bcbbc61e02f5728d +size 129339 diff --git a/datasets/xianshiping/train/images/订单1805813_51_7100697.jpg b/datasets/xianshiping/train/images/订单1805813_51_7100697.jpg new file mode 100644 index 0000000..3996355 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805813_51_7100697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dde929f6107ba42bc89ee0b7ef871babd3a15ceb68b1426fec3836ee080385 +size 129158 diff --git a/datasets/xianshiping/train/images/订单1805814_51_7100643.jpg b/datasets/xianshiping/train/images/订单1805814_51_7100643.jpg new file mode 100644 index 0000000..56768b2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805814_51_7100643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dd6aeb2b520e8cf236d2633d2534f8cff5bfde8ea5ae11bf585e255887ec1e +size 136281 diff --git a/datasets/xianshiping/train/images/订单1805815_51_7100717.jpg b/datasets/xianshiping/train/images/订单1805815_51_7100717.jpg new file mode 100644 index 0000000..a1a704b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805815_51_7100717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25ddf1c155a42f6d6f3a4cae12e3c34c5be2fa37227f157e6129977ebe60d3a +size 95180 diff --git a/datasets/xianshiping/train/images/订单1805817_51_7100718.jpg b/datasets/xianshiping/train/images/订单1805817_51_7100718.jpg new file mode 100644 index 0000000..ed38b84 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805817_51_7100718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f539bb5e0dd79a0815e745c70faad6633d905a1ba1bdc667d2b25eabad72b7ec +size 89293 diff --git a/datasets/xianshiping/train/images/订单1805819_51_7100678.jpg b/datasets/xianshiping/train/images/订单1805819_51_7100678.jpg new file mode 100644 index 0000000..410d4e3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805819_51_7100678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483df4ea7849793e0ff8a417261770ca8326b822253e0bcd7aa6ccaf4f3ff151 +size 280058 diff --git a/datasets/xianshiping/train/images/订单1805821_51_7100715.jpg b/datasets/xianshiping/train/images/订单1805821_51_7100715.jpg new file mode 100644 index 0000000..6f4eecd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805821_51_7100715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731b9178e2e648e873bb8e949017ba816395b1487e684ad1503f222c428f7445 +size 736744 diff --git a/datasets/xianshiping/train/images/订单1805823_51_7100659.jpg b/datasets/xianshiping/train/images/订单1805823_51_7100659.jpg new file mode 100644 index 0000000..340143a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805823_51_7100659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2ab8c49edc2f9adc7d2adf003b65f4a455a6943c45f3d8c6ca9cd70af54d72 +size 112156 diff --git a/datasets/xianshiping/train/images/订单1805830_51_7100767.jpg b/datasets/xianshiping/train/images/订单1805830_51_7100767.jpg new file mode 100644 index 0000000..290b49b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805830_51_7100767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb702a9d9500412cfc91b28d26732e8029e6327cdf1e3f33eff2f8dc1a0646d +size 120716 diff --git a/datasets/xianshiping/train/images/订单1805831_51_7100849.jpg b/datasets/xianshiping/train/images/订单1805831_51_7100849.jpg new file mode 100644 index 0000000..24bab80 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805831_51_7100849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5b9311e8e7e2f4f8cd670d70a64dbba7bc046881109d1b7f4e4a8cd6a42636 +size 232989 diff --git a/datasets/xianshiping/train/images/订单1805833_51_7100813.jpg b/datasets/xianshiping/train/images/订单1805833_51_7100813.jpg new file mode 100644 index 0000000..5d87c6c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805833_51_7100813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4315944fc9683ac30bc5c573f767d354ca56d97e1c96a032e11e12d31b8f45b1 +size 376076 diff --git a/datasets/xianshiping/train/images/订单1805834_51_7100798.jpg b/datasets/xianshiping/train/images/订单1805834_51_7100798.jpg new file mode 100644 index 0000000..df6957e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805834_51_7100798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5e3c5456810546df4cf073835c21e305162b41355b587242fcee438cc297f1 +size 133613 diff --git a/datasets/xianshiping/train/images/订单1805837_51_7100853.jpg b/datasets/xianshiping/train/images/订单1805837_51_7100853.jpg new file mode 100644 index 0000000..47f2fbf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805837_51_7100853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2f415ba1b3106985022a895d74f0b687020598ac6719abce50fcafd7ddd2cb +size 426388 diff --git a/datasets/xianshiping/train/images/订单1805839_51_7100902.jpg b/datasets/xianshiping/train/images/订单1805839_51_7100902.jpg new file mode 100644 index 0000000..256b0d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805839_51_7100902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8257e5de7c7bdab41ca92c38ae174a6bf4f98df592ab5e281ee1b6f509afa1ba +size 97094 diff --git a/datasets/xianshiping/train/images/订单1805841_51_7100892.jpg b/datasets/xianshiping/train/images/订单1805841_51_7100892.jpg new file mode 100644 index 0000000..77f0b01 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805841_51_7100892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965c7d2aae6303d2e199d18b379c2db820dcfdf5100aa8b4738f52ed31f97090 +size 240141 diff --git a/datasets/xianshiping/train/images/订单1805842_51_7100929.jpg b/datasets/xianshiping/train/images/订单1805842_51_7100929.jpg new file mode 100644 index 0000000..44bc56f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805842_51_7100929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc31fa4a612fa25f68440b77574a507c1d9ea384aa99b6048f4c67934bdfc282 +size 361642 diff --git a/datasets/xianshiping/train/images/订单1805843_51_7100959.jpg b/datasets/xianshiping/train/images/订单1805843_51_7100959.jpg new file mode 100644 index 0000000..7a4ee55 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805843_51_7100959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ceb07d1ef119ac00c273ee85e7f79c27b426339a1c3f35521c0c3ab64b0e81f +size 380960 diff --git a/datasets/xianshiping/train/images/订单1805844_51_7100930.jpg b/datasets/xianshiping/train/images/订单1805844_51_7100930.jpg new file mode 100644 index 0000000..020f9f1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805844_51_7100930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b45180aca2b83ce495ad9dfe32d5cda0c8f88e70819a18dea483e078b8ea79 +size 116576 diff --git a/datasets/xianshiping/train/images/订单1805847_51_7100915.jpg b/datasets/xianshiping/train/images/订单1805847_51_7100915.jpg new file mode 100644 index 0000000..2bb655f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805847_51_7100915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851a51b14d5a9896abc4fb2f6ef491170ea97a6e0bb5a74df72988d252eb9a14 +size 152342 diff --git a/datasets/xianshiping/train/images/订单1805848_51_7101037.jpg b/datasets/xianshiping/train/images/订单1805848_51_7101037.jpg new file mode 100644 index 0000000..7bade1e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805848_51_7101037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca718c33506c1673b015557e205fac0f986619fd9710a701eefb8d6335d6b60d +size 81769 diff --git a/datasets/xianshiping/train/images/订单1805851_51_7100961.jpg b/datasets/xianshiping/train/images/订单1805851_51_7100961.jpg new file mode 100644 index 0000000..26ce33b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805851_51_7100961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a94386e6ba259d12cfe51cc1cdf2af2b8e5fed280b37a03e6e6986b8e28c84 +size 112031 diff --git a/datasets/xianshiping/train/images/订单1805852_51_7101016.jpg b/datasets/xianshiping/train/images/订单1805852_51_7101016.jpg new file mode 100644 index 0000000..b6ee283 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805852_51_7101016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3d297d0101abcba4092185a3a03434c10adfd5d5c6f6dfb101e7982f9f6e2f +size 107181 diff --git a/datasets/xianshiping/train/images/订单1805854_51_7101019.jpg b/datasets/xianshiping/train/images/订单1805854_51_7101019.jpg new file mode 100644 index 0000000..7273695 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805854_51_7101019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b496738ce5db1f547490c3dea033288f64cb92f89565315843e3d1eae10c735 +size 119587 diff --git a/datasets/xianshiping/train/images/订单1805857_51_7100976.jpg b/datasets/xianshiping/train/images/订单1805857_51_7100976.jpg new file mode 100644 index 0000000..33c553a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805857_51_7100976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1de8dfac8d47dc67eea38c1a962b7096ca158cc51fd9910f8e36bd4cfdadbe +size 119550 diff --git a/datasets/xianshiping/train/images/订单1805860_51_7101109.jpg b/datasets/xianshiping/train/images/订单1805860_51_7101109.jpg new file mode 100644 index 0000000..f8b5007 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805860_51_7101109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a059c9965c979a9ce891033100874e3e001ac23c7d457796014dce9fa74f05e +size 122809 diff --git a/datasets/xianshiping/train/images/订单1805861_51_7101063.jpg b/datasets/xianshiping/train/images/订单1805861_51_7101063.jpg new file mode 100644 index 0000000..fa295d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805861_51_7101063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d4e40351bfee9eff0e06d3572a4e295f5701016e49d0afcfa94ea81c4c88a8 +size 112757 diff --git a/datasets/xianshiping/train/images/订单1805862_51_7101209.jpg b/datasets/xianshiping/train/images/订单1805862_51_7101209.jpg new file mode 100644 index 0000000..085d8cc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805862_51_7101209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e8608437a85dbe99b07de074dca9c5ff3eb2fbbe09e1dbb2f76410a6685cc1 +size 144326 diff --git a/datasets/xianshiping/train/images/订单1805864_51_7101126.jpg b/datasets/xianshiping/train/images/订单1805864_51_7101126.jpg new file mode 100644 index 0000000..b323c14 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805864_51_7101126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580ffc317003d3164ddbc9f906da4435262f7dfe51fc71a3aafb00ee06dac5f0 +size 380826 diff --git a/datasets/xianshiping/train/images/订单1805865_51_7101100.jpg b/datasets/xianshiping/train/images/订单1805865_51_7101100.jpg new file mode 100644 index 0000000..77330b3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805865_51_7101100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4cd3fb2f9ef55bb3e8a5702f0a03872c882cff50fa10f13969e91c327d0036 +size 81234 diff --git a/datasets/xianshiping/train/images/订单1805866_51_7101143.jpg b/datasets/xianshiping/train/images/订单1805866_51_7101143.jpg new file mode 100644 index 0000000..5b6f8da --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805866_51_7101143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb36c1fe0c884569e98233634637a01da7d37cf194bb72e5b0f894054a2214b +size 297328 diff --git a/datasets/xianshiping/train/images/订单1805867_51_7101219.jpg b/datasets/xianshiping/train/images/订单1805867_51_7101219.jpg new file mode 100644 index 0000000..03c3a94 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805867_51_7101219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e77e256a540480c575889283de807660f400d39832b7f7437d541d58ff3a321 +size 1184294 diff --git a/datasets/xianshiping/train/images/订单1805869_51_7101160.jpg b/datasets/xianshiping/train/images/订单1805869_51_7101160.jpg new file mode 100644 index 0000000..0c2950c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805869_51_7101160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259ba6937ad638584abbc03aa7993596fa5b752b381669af010f82af00d6106b +size 72884 diff --git a/datasets/xianshiping/train/images/订单1805870_51_7101223.jpg b/datasets/xianshiping/train/images/订单1805870_51_7101223.jpg new file mode 100644 index 0000000..1b7a923 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805870_51_7101223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe1fa994a2a7f06a6c42404cb7b983338826855d08b8e020c752e0124e18832 +size 155885 diff --git a/datasets/xianshiping/train/images/订单1805871_51_7101186.jpg b/datasets/xianshiping/train/images/订单1805871_51_7101186.jpg new file mode 100644 index 0000000..fd7c57a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805871_51_7101186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493848eeba1fce9b32d933670a6babe4c4f30eb656f14d1fb309bc5c5ae87865 +size 105051 diff --git a/datasets/xianshiping/train/images/订单1805872_51_7101190.jpg b/datasets/xianshiping/train/images/订单1805872_51_7101190.jpg new file mode 100644 index 0000000..1b9eb4d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805872_51_7101190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62802136133d0583c54f73cb38d38143dd7cdea75e89c2bf504b290c58b9a53e +size 340712 diff --git a/datasets/xianshiping/train/images/订单1805873_51_7101260.jpg b/datasets/xianshiping/train/images/订单1805873_51_7101260.jpg new file mode 100644 index 0000000..baa9b7d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805873_51_7101260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b063e185c80ed192acf7b6c9191aa045d09335d958e67159f0700e9e0a2aba86 +size 86169 diff --git a/datasets/xianshiping/train/images/订单1805879_51_7101280.jpg b/datasets/xianshiping/train/images/订单1805879_51_7101280.jpg new file mode 100644 index 0000000..519cadd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805879_51_7101280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0afe5aaa4212ba1b5ac1384a7adb2bc9e1e9df5e3d12424bc805dec6850f2d8 +size 101993 diff --git a/datasets/xianshiping/train/images/订单1805883_51_7101311.jpg b/datasets/xianshiping/train/images/订单1805883_51_7101311.jpg new file mode 100644 index 0000000..c19087c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805883_51_7101311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309f7d62f8db1bebb0e9e6e024025af06384d0e243df71cf18609edb17e5440e +size 115245 diff --git a/datasets/xianshiping/train/images/订单1805886_51_7101418.jpg b/datasets/xianshiping/train/images/订单1805886_51_7101418.jpg new file mode 100644 index 0000000..e2eb4d2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805886_51_7101418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8889ded03e6c2bb79ef0317627b8f3634da4cdcf1338f9b1dee99b07ccf8344 +size 124535 diff --git a/datasets/xianshiping/train/images/订单1805887_51_7101386.jpg b/datasets/xianshiping/train/images/订单1805887_51_7101386.jpg new file mode 100644 index 0000000..cf05be2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805887_51_7101386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ced4b613a163b4c93f30d011723997ae59e3165bf45fa3db32843a67bab6e57 +size 103676 diff --git a/datasets/xianshiping/train/images/订单1805891_51_7101877.jpg b/datasets/xianshiping/train/images/订单1805891_51_7101877.jpg new file mode 100644 index 0000000..2fbafe6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805891_51_7101877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba4dd4d541564f2bebaaa35c4530fd8d73565f0d9a46e48e0d1b8fd19689a3f +size 301664 diff --git a/datasets/xianshiping/train/images/订单1805893_51_7101437.jpg b/datasets/xianshiping/train/images/订单1805893_51_7101437.jpg new file mode 100644 index 0000000..76979a1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805893_51_7101437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef744bd5f750721be447c16d429bb462a048ba0936dd97fe40d25d64a33e31f +size 101374 diff --git a/datasets/xianshiping/train/images/订单1805894_51_7101473.jpg b/datasets/xianshiping/train/images/订单1805894_51_7101473.jpg new file mode 100644 index 0000000..2d4e9f0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805894_51_7101473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44f363573808cf1b14fecff8a8735e202046afdd220ac2ca2c3fedaf95a377c +size 120360 diff --git a/datasets/xianshiping/train/images/订单1805895_51_7101462.jpg b/datasets/xianshiping/train/images/订单1805895_51_7101462.jpg new file mode 100644 index 0000000..a707c67 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805895_51_7101462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f820f81b6d12a51edc0825f1de309be42ef9ce61754b6028afacfaaa7737804a +size 142117 diff --git a/datasets/xianshiping/train/images/订单1805896_51_7101467.jpg b/datasets/xianshiping/train/images/订单1805896_51_7101467.jpg new file mode 100644 index 0000000..ca2c3a4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805896_51_7101467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dffd4a2c0c571cdadc85333ed0a23c68912b840e8ed511881c7a94345bdc534 +size 151813 diff --git a/datasets/xianshiping/train/images/订单1805898_51_7101436.jpg b/datasets/xianshiping/train/images/订单1805898_51_7101436.jpg new file mode 100644 index 0000000..3d47c4c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805898_51_7101436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e19df82804591a301054a0f2daa741d3ca38e5132e0fcaec69f0bd78f1b76fb +size 174438 diff --git a/datasets/xianshiping/train/images/订单1805902_51_7101479.jpg b/datasets/xianshiping/train/images/订单1805902_51_7101479.jpg new file mode 100644 index 0000000..672463e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805902_51_7101479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3def7bad0fd68e4d9b6394101e7f484c8527b789ff431711997416b795b794e1 +size 99026 diff --git a/datasets/xianshiping/train/images/订单1805903_51_7101581.jpg b/datasets/xianshiping/train/images/订单1805903_51_7101581.jpg new file mode 100644 index 0000000..d4d0a01 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805903_51_7101581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e9c154a0d87511ef4e595c95c1d740595619d07eb14c7ef97bbb4869a5975 +size 70271 diff --git a/datasets/xianshiping/train/images/订单1805904_51_7101531.jpg b/datasets/xianshiping/train/images/订单1805904_51_7101531.jpg new file mode 100644 index 0000000..a5768de --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805904_51_7101531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5d5f9a82d6534fb1ea771e55d5ff90cf586d9eabdfb75dbed3e79948f8bc03 +size 170159 diff --git a/datasets/xianshiping/train/images/订单1805909_51_7101514.jpg b/datasets/xianshiping/train/images/订单1805909_51_7101514.jpg new file mode 100644 index 0000000..d1679fe --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805909_51_7101514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3799ad4cc9a53185d70562680c86454764289058e9fa492d244404f7608b931 +size 321908 diff --git a/datasets/xianshiping/train/images/订单1805910_51_7101614.jpg b/datasets/xianshiping/train/images/订单1805910_51_7101614.jpg new file mode 100644 index 0000000..9ecf5c2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805910_51_7101614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f23be70b18feddee1947648e1abbff53b56c1e2a8397087180909b818f867b +size 123802 diff --git a/datasets/xianshiping/train/images/订单1805912_51_7101596.jpg b/datasets/xianshiping/train/images/订单1805912_51_7101596.jpg new file mode 100644 index 0000000..5a89db6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805912_51_7101596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92470dfcb105a00b55e1e2eda6c4e5aa05ad4ca1437d21b19240ec1e0324ff8 +size 458496 diff --git a/datasets/xianshiping/train/images/订单1805915_51_7101634.jpg b/datasets/xianshiping/train/images/订单1805915_51_7101634.jpg new file mode 100644 index 0000000..f446fc6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805915_51_7101634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63acf3476378da63b8829520b78689ca36eb52d9ea61ed3c4f699c863c8183b1 +size 90909 diff --git a/datasets/xianshiping/train/images/订单1805917_51_7101680.jpg b/datasets/xianshiping/train/images/订单1805917_51_7101680.jpg new file mode 100644 index 0000000..1754108 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805917_51_7101680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b081847508aed587e91b802787030e6053e93936f8913dab112f4299037d823 +size 104704 diff --git a/datasets/xianshiping/train/images/订单1805918_51_7101608.jpg b/datasets/xianshiping/train/images/订单1805918_51_7101608.jpg new file mode 100644 index 0000000..a5ffd29 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805918_51_7101608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f484435bbbcd375ef3a926b366e8aa3a6df603300fdc58435d7d5fe5e109320b +size 209661 diff --git a/datasets/xianshiping/train/images/订单1805920_51_7101670.jpg b/datasets/xianshiping/train/images/订单1805920_51_7101670.jpg new file mode 100644 index 0000000..55f37d6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805920_51_7101670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06a169d0a84534960e03f1f95d15c11b96e79dd55de70b6f7f9b6d7d2d466f5 +size 132977 diff --git a/datasets/xianshiping/train/images/订单1805923_51_7101772.jpg b/datasets/xianshiping/train/images/订单1805923_51_7101772.jpg new file mode 100644 index 0000000..344736f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805923_51_7101772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f21646c369d5198e0ced729607d6b8e8776b347adb20f8d3d9e63bd9a83a261 +size 194364 diff --git a/datasets/xianshiping/train/images/订单1805924_51_7101695.jpg b/datasets/xianshiping/train/images/订单1805924_51_7101695.jpg new file mode 100644 index 0000000..18dbcb3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805924_51_7101695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ff24a60338ff3383fb8ddfe7b237cdbc11acf093a97dbcd6b8d8f8ce0fe403 +size 112115 diff --git a/datasets/xianshiping/train/images/订单1805927_51_7101742.jpg b/datasets/xianshiping/train/images/订单1805927_51_7101742.jpg new file mode 100644 index 0000000..1537c28 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805927_51_7101742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5dcb0d5fb256fcd6182962501dacbb1ca0c72e13f82fda5ed4af276ff489cf +size 272711 diff --git a/datasets/xianshiping/train/images/订单1805928_51_7101736.jpg b/datasets/xianshiping/train/images/订单1805928_51_7101736.jpg new file mode 100644 index 0000000..140f41f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805928_51_7101736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec84a7772775abff3801f39e5347afb0ecb2cf8b94bf918dd8e83a37c3e79e63 +size 124516 diff --git a/datasets/xianshiping/train/images/订单1805929_51_7101755.jpg b/datasets/xianshiping/train/images/订单1805929_51_7101755.jpg new file mode 100644 index 0000000..25b4485 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805929_51_7101755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622d888048f044fe063fa51b0f293eca76bd549d2206df6a36e935d89d54c84d +size 70498 diff --git a/datasets/xianshiping/train/images/订单1805931_51_7101785.jpg b/datasets/xianshiping/train/images/订单1805931_51_7101785.jpg new file mode 100644 index 0000000..c82df51 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805931_51_7101785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22058f13c49755c9f7b55a3e45a5d39cfde2f0f4fdd4366ad9ac233f5471a5b9 +size 340333 diff --git a/datasets/xianshiping/train/images/订单1805932_51_7101790.jpg b/datasets/xianshiping/train/images/订单1805932_51_7101790.jpg new file mode 100644 index 0000000..15b39b9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805932_51_7101790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ffb64f7f0581d355c02174e35d907a14e0d14bee2ba28c50939c0206f494e3 +size 381925 diff --git a/datasets/xianshiping/train/images/订单1805933_51_7101818.jpg b/datasets/xianshiping/train/images/订单1805933_51_7101818.jpg new file mode 100644 index 0000000..c281f6a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805933_51_7101818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aeeb341ce6cfc6bd17047560655b3a669134ee5bd6cdab171d8bcb0fc5d613e +size 301628 diff --git a/datasets/xianshiping/train/images/订单1805934_51_7101828.jpg b/datasets/xianshiping/train/images/订单1805934_51_7101828.jpg new file mode 100644 index 0000000..7a5e173 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805934_51_7101828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5036f7a3feb5763e136b0d9cc5fc415c7b93a12440bb47981880065144a6b3f2 +size 77794 diff --git a/datasets/xianshiping/train/images/订单1805936_51_7101821.jpg b/datasets/xianshiping/train/images/订单1805936_51_7101821.jpg new file mode 100644 index 0000000..6f9cd01 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805936_51_7101821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d955b6fd9d01f4d6d17c82b5b7c9221d1920a3a641921482ef34d35749caed9 +size 110394 diff --git a/datasets/xianshiping/train/images/订单1805937_51_7101863.jpg b/datasets/xianshiping/train/images/订单1805937_51_7101863.jpg new file mode 100644 index 0000000..2e2c241 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805937_51_7101863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8901dc884363e38fc3bf2e92139954dfb168068c6c6d7b723b55d5b6e0fdaa0 +size 105824 diff --git a/datasets/xianshiping/train/images/订单1805939_51_7101971.jpg b/datasets/xianshiping/train/images/订单1805939_51_7101971.jpg new file mode 100644 index 0000000..ddfa149 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805939_51_7101971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3528c6adafe6dd623cd91304c646fd73e2b0d54fd0e4b344fb68ab5c7b73598e +size 570613 diff --git a/datasets/xianshiping/train/images/订单1805940_51_7101888.jpg b/datasets/xianshiping/train/images/订单1805940_51_7101888.jpg new file mode 100644 index 0000000..d1bf04e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805940_51_7101888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f35aeefc650a6b475152a90c22cdcef405b046847711c5b47393f46ed8037dd +size 123723 diff --git a/datasets/xianshiping/train/images/订单1805941_51_7101899.jpg b/datasets/xianshiping/train/images/订单1805941_51_7101899.jpg new file mode 100644 index 0000000..9aadcad --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805941_51_7101899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c554c206648fb8cdc1a3923aa4810406d58b548ea8309aca9233b071a9e5998 +size 465523 diff --git a/datasets/xianshiping/train/images/订单1805942_51_7101907.jpg b/datasets/xianshiping/train/images/订单1805942_51_7101907.jpg new file mode 100644 index 0000000..41030e8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805942_51_7101907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24164af87e76a6d56e1d7b8f9f07855f77b6d25c54bd30e9ec685162b5c1534 +size 120148 diff --git a/datasets/xianshiping/train/images/订单1805943_51_7101918.jpg b/datasets/xianshiping/train/images/订单1805943_51_7101918.jpg new file mode 100644 index 0000000..5cab81b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805943_51_7101918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4165ae0e303d09de416256dbc92d5627e9ee21e851c7e673b76ba74d9e15af5 +size 354867 diff --git a/datasets/xianshiping/train/images/订单1805944_51_7101928.jpg b/datasets/xianshiping/train/images/订单1805944_51_7101928.jpg new file mode 100644 index 0000000..6d33de0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805944_51_7101928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca6c65da09ede26f37d3267492b071bcfedb68994e7afef11f8b6fe11a46e49 +size 154372 diff --git a/datasets/xianshiping/train/images/订单1805947_51_7101939.jpg b/datasets/xianshiping/train/images/订单1805947_51_7101939.jpg new file mode 100644 index 0000000..4448e81 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805947_51_7101939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d5e373b04f62b9e6722d765cec199c8d3c96464f306c726329c705a9012bcb +size 139881 diff --git a/datasets/xianshiping/train/images/订单1805948_51_7101958.jpg b/datasets/xianshiping/train/images/订单1805948_51_7101958.jpg new file mode 100644 index 0000000..9ccca9e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805948_51_7101958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f2fedac449506ee5a8ae2180df2187e6ae26e170f30496c7931f94aec0ba49 +size 444792 diff --git a/datasets/xianshiping/train/images/订单1805960_51_7102030.jpg b/datasets/xianshiping/train/images/订单1805960_51_7102030.jpg new file mode 100644 index 0000000..cd0be23 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805960_51_7102030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4063a98b36241fca2bd4c001229b50631a4749be0c62780724dd9201b09bcb78 +size 112071 diff --git a/datasets/xianshiping/train/images/订单1805963_51_7102062.jpg b/datasets/xianshiping/train/images/订单1805963_51_7102062.jpg new file mode 100644 index 0000000..76fe2bd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805963_51_7102062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9247266ef84123e15850ea8e5696f3a9b1509ec846cdcfe28e3ad27b45142bdb +size 178007 diff --git a/datasets/xianshiping/train/images/订单1805964_51_7102072.jpg b/datasets/xianshiping/train/images/订单1805964_51_7102072.jpg new file mode 100644 index 0000000..09c7fa9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805964_51_7102072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15babb403904a3e97e2317aba43c43f4ecbdd4f6a749d1470080bbef92ec6527 +size 129358 diff --git a/datasets/xianshiping/train/images/订单1805965_51_7102082.jpg b/datasets/xianshiping/train/images/订单1805965_51_7102082.jpg new file mode 100644 index 0000000..e5dc06b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805965_51_7102082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c879069f564b4bc886ed326ae0f2711839abeee09a63b59d45f5bca07ac302 +size 133545 diff --git a/datasets/xianshiping/train/images/订单1805967_51_7102112.jpg b/datasets/xianshiping/train/images/订单1805967_51_7102112.jpg new file mode 100644 index 0000000..074e71c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805967_51_7102112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcaf10e65d534f28f8532fe9929bbd45c289d4fd1ad9153473cc2cf50f7475e +size 150817 diff --git a/datasets/xianshiping/train/images/订单1805968_51_7102108.jpg b/datasets/xianshiping/train/images/订单1805968_51_7102108.jpg new file mode 100644 index 0000000..7b8f8d2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805968_51_7102108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1853233b1df9bc9fc97e61c46fa3d97c2901841d3ffc8b48cb350577b49bd75 +size 130892 diff --git a/datasets/xianshiping/train/images/订单1805969_51_7102119.jpg b/datasets/xianshiping/train/images/订单1805969_51_7102119.jpg new file mode 100644 index 0000000..e475f98 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805969_51_7102119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7717bbf8d63be7f0e78cb0daa56d15f8bc023d0015daf13a9cd7350851afd877 +size 370935 diff --git a/datasets/xianshiping/train/images/订单1805970_51_7102143.jpg b/datasets/xianshiping/train/images/订单1805970_51_7102143.jpg new file mode 100644 index 0000000..6bde84d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805970_51_7102143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775605732223c98d1ee7c7aeeb3b733e68fe1f8842aa485684a300c2a3d26105 +size 157638 diff --git a/datasets/xianshiping/train/images/订单1805971_51_7102162.jpg b/datasets/xianshiping/train/images/订单1805971_51_7102162.jpg new file mode 100644 index 0000000..0d08bb4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805971_51_7102162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111bd184ba77d8543c4769d805a7880f866b3981aaec5c9611ffe647b7ce1b62 +size 138488 diff --git a/datasets/xianshiping/train/images/订单1805972_51_7102129.jpg b/datasets/xianshiping/train/images/订单1805972_51_7102129.jpg new file mode 100644 index 0000000..4282cdf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805972_51_7102129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b530d93c69d7f6752fd91ba1ce6c310e1b87227008d72eee56bc7b157aac4eaa +size 105084 diff --git a/datasets/xianshiping/train/images/订单1805975_51_7102175.jpg b/datasets/xianshiping/train/images/订单1805975_51_7102175.jpg new file mode 100644 index 0000000..3300842 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805975_51_7102175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231b133a7af42cf1e5802dd5969d0e7e4062fe989ebdad214b6dafcf2dc45fc6 +size 130766 diff --git a/datasets/xianshiping/train/images/订单1805976_51_7102161.jpg b/datasets/xianshiping/train/images/订单1805976_51_7102161.jpg new file mode 100644 index 0000000..da2cfa0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805976_51_7102161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199cd48ae870137ead10b23059d7fc36a745d43b0a163ee4e8bebd2c97062d52 +size 237540 diff --git a/datasets/xianshiping/train/images/订单1805979_51_7102191.jpg b/datasets/xianshiping/train/images/订单1805979_51_7102191.jpg new file mode 100644 index 0000000..06a8cb6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805979_51_7102191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64fc9a2d3e0f9fb6517d3f97d0fc4c1100a8c315ac58fe5cde30b6c4513c946f +size 140565 diff --git a/datasets/xianshiping/train/images/订单1805981_51_7102216.jpg b/datasets/xianshiping/train/images/订单1805981_51_7102216.jpg new file mode 100644 index 0000000..9697dd0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805981_51_7102216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0708002ae3d401e25db89317736324791ff000edc4dbdedf790ebe123834f5a9 +size 642835 diff --git a/datasets/xianshiping/train/images/订单1805984_51_7102238.jpg b/datasets/xianshiping/train/images/订单1805984_51_7102238.jpg new file mode 100644 index 0000000..54333ae --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805984_51_7102238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9433ffa66eaf888f8e291bb17f6ed5182915becc179fdf2e450255cfc5ac843d +size 172882 diff --git a/datasets/xianshiping/train/images/订单1805985_51_7102220.jpg b/datasets/xianshiping/train/images/订单1805985_51_7102220.jpg new file mode 100644 index 0000000..50c46a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805985_51_7102220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e325aff94e23569d6fa732a447d25e20ca0480598b150b8260ac8ed4772b3645 +size 144015 diff --git a/datasets/xianshiping/train/images/订单1805988_51_7102280.jpg b/datasets/xianshiping/train/images/订单1805988_51_7102280.jpg new file mode 100644 index 0000000..a844e51 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805988_51_7102280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba188c56592523c05c2ddf82d715843d5e2e962f00661f70a31e1fed5c4b30e +size 162260 diff --git a/datasets/xianshiping/train/images/订单1805989_51_7102267.jpg b/datasets/xianshiping/train/images/订单1805989_51_7102267.jpg new file mode 100644 index 0000000..9b483aa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805989_51_7102267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98af65f4e8bf51567c936618685edf0f7af908fdc1cd0bf886519c2ef52b5c4 +size 152037 diff --git a/datasets/xianshiping/train/images/订单1805990_51_7102467.jpg b/datasets/xianshiping/train/images/订单1805990_51_7102467.jpg new file mode 100644 index 0000000..b4e810c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805990_51_7102467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1a3ba2388fcdad29698b2a6373d44adcf000dc9151adbe4cf579589c04b777 +size 340177 diff --git a/datasets/xianshiping/train/images/订单1805993_51_7102311.jpg b/datasets/xianshiping/train/images/订单1805993_51_7102311.jpg new file mode 100644 index 0000000..aa506dd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805993_51_7102311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fa01cfea24a5d01770e2634af79ddf1026a450c5c33dd0128a3a3a3a29bf90 +size 300414 diff --git a/datasets/xianshiping/train/images/订单1805996_51_7102352.jpg b/datasets/xianshiping/train/images/订单1805996_51_7102352.jpg new file mode 100644 index 0000000..0755689 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805996_51_7102352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70efaca4bb4c27ba7740dc872859c6b02a6e63df3d69557d5822d18aa19fd7de +size 142392 diff --git a/datasets/xianshiping/train/images/订单1805997_51_7102410.jpg b/datasets/xianshiping/train/images/订单1805997_51_7102410.jpg new file mode 100644 index 0000000..e4dc8e4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805997_51_7102410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d67c14835fdbd09c90f7b147652fca685400e5255e98ab7f67004d00e3a275 +size 119553 diff --git a/datasets/xianshiping/train/images/订单1805998_51_7102420.jpg b/datasets/xianshiping/train/images/订单1805998_51_7102420.jpg new file mode 100644 index 0000000..364e43c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1805998_51_7102420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5fa9c67882fc1c3f828d30236d862bfd9a341adb3813d0212ed3a0c75fb81f +size 129437 diff --git a/datasets/xianshiping/train/images/订单1806000_51_7102336.jpg b/datasets/xianshiping/train/images/订单1806000_51_7102336.jpg new file mode 100644 index 0000000..3b73ce8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806000_51_7102336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be369640c77a751f1b213eed461513db315ddb054155ab99445af2f1b9adca83 +size 130028 diff --git a/datasets/xianshiping/train/images/订单1806006_51_7102373.jpg b/datasets/xianshiping/train/images/订单1806006_51_7102373.jpg new file mode 100644 index 0000000..089713f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806006_51_7102373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460a8797028c962be0dfcd4f018babf9fcf9e8a51591bdebf6c703de0d0ced68 +size 683133 diff --git a/datasets/xianshiping/train/images/订单1806008_51_7102438.jpg b/datasets/xianshiping/train/images/订单1806008_51_7102438.jpg new file mode 100644 index 0000000..466195b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806008_51_7102438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c266a56273e8114306de688e1258148dcbcbb5f2904e93706e4132c2a685da31 +size 337425 diff --git a/datasets/xianshiping/train/images/订单1806010_51_7102491.jpg b/datasets/xianshiping/train/images/订单1806010_51_7102491.jpg new file mode 100644 index 0000000..863b0f6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806010_51_7102491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4a1e28200c22d0a0012302d073f00b74fc33e75e139039a0774d52dbd33c0a +size 163412 diff --git a/datasets/xianshiping/train/images/订单1806011_51_7102502.jpg b/datasets/xianshiping/train/images/订单1806011_51_7102502.jpg new file mode 100644 index 0000000..df60722 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806011_51_7102502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4c206fda9b25b92846428300535d9d7829efd6221e91ece8ee094fa6349071 +size 695414 diff --git a/datasets/xianshiping/train/images/订单1806014_51_7102538.jpg b/datasets/xianshiping/train/images/订单1806014_51_7102538.jpg new file mode 100644 index 0000000..06f6e92 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806014_51_7102538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f556c59cd5c1b8d06326d5fd104a26696b03dae49369ffa7f4c4e7df1cb0e0c +size 157591 diff --git a/datasets/xianshiping/train/images/订单1806018_51_7102536.jpg b/datasets/xianshiping/train/images/订单1806018_51_7102536.jpg new file mode 100644 index 0000000..55d45b0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806018_51_7102536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a84046b833b8b75f971bbd14fa77836b020a6a9ab171b8cd52b2c4d688f6a3b +size 139426 diff --git a/datasets/xianshiping/train/images/订单1806019_51_7102564.jpg b/datasets/xianshiping/train/images/订单1806019_51_7102564.jpg new file mode 100644 index 0000000..7a683ea --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806019_51_7102564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b1688d480e0f3ff04e7f180eb4715b47d9e1bdff05c180962ae21cad237c3c +size 141420 diff --git a/datasets/xianshiping/train/images/订单1806020_51_7102512.jpg b/datasets/xianshiping/train/images/订单1806020_51_7102512.jpg new file mode 100644 index 0000000..7cb00d8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806020_51_7102512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809dacc00bd8b62fba4810ba4d970b409d11b0d0691705e31c1c81d8ac4499e2 +size 145913 diff --git a/datasets/xianshiping/train/images/订单1806022_51_7102599.jpg b/datasets/xianshiping/train/images/订单1806022_51_7102599.jpg new file mode 100644 index 0000000..cb2f208 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806022_51_7102599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9caad96fc050bd8e9e3e5387424260672334049d2c69d6e20cb2a002830cc376 +size 126786 diff --git a/datasets/xianshiping/train/images/订单1806029_51_7102584.jpg b/datasets/xianshiping/train/images/订单1806029_51_7102584.jpg new file mode 100644 index 0000000..fdcfa0e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806029_51_7102584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4283cf19f37b50cd4c2de1a0bb934cd71a3e7474810d47fdd45bab1c0b8ff71 +size 524351 diff --git a/datasets/xianshiping/train/images/订单1806031_51_7102704.jpg b/datasets/xianshiping/train/images/订单1806031_51_7102704.jpg new file mode 100644 index 0000000..987d1e0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806031_51_7102704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b76a356c46fc6d3b94bc22cf802a0adc1704c4b211c04f80a7b4b97ec52d7a +size 565952 diff --git a/datasets/xianshiping/train/images/订单1806033_51_7102627.jpg b/datasets/xianshiping/train/images/订单1806033_51_7102627.jpg new file mode 100644 index 0000000..34e5287 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806033_51_7102627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeccfa7aa3d0cd49c51787cd25e4bcd53e59e014ba194ee8de6e1955834468fc +size 119137 diff --git a/datasets/xianshiping/train/images/订单1806036_51_7102652.jpg b/datasets/xianshiping/train/images/订单1806036_51_7102652.jpg new file mode 100644 index 0000000..c41e7a2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806036_51_7102652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19956582af6e4ffc705ea99c695564471f8b19a2530f45c8c4cb4adcaffd0c9f +size 153733 diff --git a/datasets/xianshiping/train/images/订单1806040_51_7102691.jpg b/datasets/xianshiping/train/images/订单1806040_51_7102691.jpg new file mode 100644 index 0000000..c008772 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806040_51_7102691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dee1cb89e0aa83067e33272ba8a194cc1b4333329e77a29ca053bfda0e6fd7 +size 146396 diff --git a/datasets/xianshiping/train/images/订单1806042_51_7102728.jpg b/datasets/xianshiping/train/images/订单1806042_51_7102728.jpg new file mode 100644 index 0000000..3786a38 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806042_51_7102728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51409adfd1293bb8b7af64695e5a3489a02e3a480247bbe5acadd6eacdd41dbd +size 304860 diff --git a/datasets/xianshiping/train/images/订单1806043_51_7102888.jpg b/datasets/xianshiping/train/images/订单1806043_51_7102888.jpg new file mode 100644 index 0000000..df5d526 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806043_51_7102888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e371419c94c1d085c986290c022358697d65d8dd1c23ded0c466d1f87440c0 +size 705882 diff --git a/datasets/xianshiping/train/images/订单1806044_51_7102661.jpg b/datasets/xianshiping/train/images/订单1806044_51_7102661.jpg new file mode 100644 index 0000000..a9335de --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806044_51_7102661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe24239bac24e3557fb48a01a402adf4ca51acce6978cabfa489d553c25ffa9 +size 114875 diff --git a/datasets/xianshiping/train/images/订单1806050_51_7102748.jpg b/datasets/xianshiping/train/images/订单1806050_51_7102748.jpg new file mode 100644 index 0000000..fdd649c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806050_51_7102748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d76a9324624acc0190b068fbc3e43294cec96cd31653bb57bc3ba1802db0ee +size 108135 diff --git a/datasets/xianshiping/train/images/订单1806053_51_7102727.jpg b/datasets/xianshiping/train/images/订单1806053_51_7102727.jpg new file mode 100644 index 0000000..f57bb6f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806053_51_7102727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5c4a65cbe6a13c6a43f921ef76d9eb858b9bf2f095b8fd2a6d00b2d45a963c +size 79420 diff --git a/datasets/xianshiping/train/images/订单1806056_51_7102894.jpg b/datasets/xianshiping/train/images/订单1806056_51_7102894.jpg new file mode 100644 index 0000000..6692414 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806056_51_7102894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4a17897b55291bde3521fde286e7b9d4745d3de73046cfee89abede6c3919f +size 243976 diff --git a/datasets/xianshiping/train/images/订单1806058_51_7102805.jpg b/datasets/xianshiping/train/images/订单1806058_51_7102805.jpg new file mode 100644 index 0000000..efd51db --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806058_51_7102805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e8a8be3844c9d063e319f466be7c63c64d87dbdc5f8fc9a7cfdfacd1b7058e +size 143974 diff --git a/datasets/xianshiping/train/images/订单1806059_51_7102841.jpg b/datasets/xianshiping/train/images/订单1806059_51_7102841.jpg new file mode 100644 index 0000000..20a5c86 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806059_51_7102841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fba2bdaa7f064e46b58b032d34727d70b8441638ad0b6cda7209689d0a7a7b7 +size 151640 diff --git a/datasets/xianshiping/train/images/订单1806060_51_7102808.jpg b/datasets/xianshiping/train/images/订单1806060_51_7102808.jpg new file mode 100644 index 0000000..08a62d6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806060_51_7102808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7c5de34828ec6e0195d6bce130e164a1d79a1ddab576688b2c6191b05c6d14 +size 131549 diff --git a/datasets/xianshiping/train/images/订单1806062_51_7103083.jpg b/datasets/xianshiping/train/images/订单1806062_51_7103083.jpg new file mode 100644 index 0000000..9b5de49 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806062_51_7103083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdacc9137365f41d9812967ddfdabe0d4e7b7718c30b0fbd285d116d14aac39d +size 579049 diff --git a/datasets/xianshiping/train/images/订单1806064_51_7102915.jpg b/datasets/xianshiping/train/images/订单1806064_51_7102915.jpg new file mode 100644 index 0000000..6e43d49 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806064_51_7102915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022e716b75467d256552015c9acca519c60ed6af2335473c58194f018f6876db +size 129224 diff --git a/datasets/xianshiping/train/images/订单1806067_51_7103041.jpg b/datasets/xianshiping/train/images/订单1806067_51_7103041.jpg new file mode 100644 index 0000000..5d49a10 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806067_51_7103041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0af7b11ecd446adf1c40c4c8c60dbd2865a063d78bb056fa1e6019f6bb355f1 +size 127133 diff --git a/datasets/xianshiping/train/images/订单1806068_51_7102992.jpg b/datasets/xianshiping/train/images/订单1806068_51_7102992.jpg new file mode 100644 index 0000000..7188df0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806068_51_7102992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83182f7c6ee298f7b26bd27b6a64ea2c95ef6774ecc48fc2104fa4b633cf882 +size 160731 diff --git a/datasets/xianshiping/train/images/订单1806070_51_7102892.jpg b/datasets/xianshiping/train/images/订单1806070_51_7102892.jpg new file mode 100644 index 0000000..1c3405e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806070_51_7102892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c5c81fa22226e289d032234aa21a780552389893db56ae850159efd866db41 +size 586608 diff --git a/datasets/xianshiping/train/images/订单1806071_51_7102940.jpg b/datasets/xianshiping/train/images/订单1806071_51_7102940.jpg new file mode 100644 index 0000000..adb6e05 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806071_51_7102940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ab14527f82666ceea71c877ffeb585da376d1421b573c459fc9339cf6c3fb7 +size 135949 diff --git a/datasets/xianshiping/train/images/订单1806072_51_7102966.jpg b/datasets/xianshiping/train/images/订单1806072_51_7102966.jpg new file mode 100644 index 0000000..1fd0d29 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806072_51_7102966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7030f1efeb4e1ae3b079948db6f1908bfae6388ba3e8a784e65743a6019b085b +size 329848 diff --git a/datasets/xianshiping/train/images/订单1806073_51_7103007.jpg b/datasets/xianshiping/train/images/订单1806073_51_7103007.jpg new file mode 100644 index 0000000..0cc3d20 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806073_51_7103007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00a67bb43556395d456f2fdc79276b63a9a9c99b996eeb876f3ac71b007ddf5 +size 131612 diff --git a/datasets/xianshiping/train/images/订单1806074_51_7102995.jpg b/datasets/xianshiping/train/images/订单1806074_51_7102995.jpg new file mode 100644 index 0000000..b9abc2b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806074_51_7102995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8e7be680ede509ca36efbdf570cd9394060d77fd8032e0fbd4a28cd1b28c54 +size 136516 diff --git a/datasets/xianshiping/train/images/订单1806078_51_7103036.jpg b/datasets/xianshiping/train/images/订单1806078_51_7103036.jpg new file mode 100644 index 0000000..68e38a1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806078_51_7103036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24bc134a7fb378bf6e146b86fab6b12cff9ece83de1bee605a158fed2d77966 +size 565162 diff --git a/datasets/xianshiping/train/images/订单1806079_51_7103004.jpg b/datasets/xianshiping/train/images/订单1806079_51_7103004.jpg new file mode 100644 index 0000000..b9579f6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806079_51_7103004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccbd4834b65be941a45736d0497aeeb3790afdc68cd62488424f767a1c8d217 +size 152214 diff --git a/datasets/xianshiping/train/images/订单1806081_51_7102935.jpg b/datasets/xianshiping/train/images/订单1806081_51_7102935.jpg new file mode 100644 index 0000000..4896c32 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806081_51_7102935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab3d14bdb7db06ffaccd5a4a52c741025bf4847ea28a49681748c134c24696a +size 141918 diff --git a/datasets/xianshiping/train/images/订单1806083_51_7102978.jpg b/datasets/xianshiping/train/images/订单1806083_51_7102978.jpg new file mode 100644 index 0000000..d19f749 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806083_51_7102978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98443f96e69f6bf6c7743f644f46c209b062082f8598573cef410175cdaac20b +size 554416 diff --git a/datasets/xianshiping/train/images/订单1806085_51_7103039.jpg b/datasets/xianshiping/train/images/订单1806085_51_7103039.jpg new file mode 100644 index 0000000..ee2dd17 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806085_51_7103039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7802c6b374973af0324ca1822366137565deaf20a5e017ce9ec433b2741be8a9 +size 160428 diff --git a/datasets/xianshiping/train/images/订单1806088_51_7103121.jpg b/datasets/xianshiping/train/images/订单1806088_51_7103121.jpg new file mode 100644 index 0000000..05cf7a9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806088_51_7103121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe6a2ab39f898223eeb17a5d331e16feaea640a1a14d5d5fc05d8a647d78a0b +size 140649 diff --git a/datasets/xianshiping/train/images/订单1806091_51_7103122.jpg b/datasets/xianshiping/train/images/订单1806091_51_7103122.jpg new file mode 100644 index 0000000..bac2907 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806091_51_7103122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb1ef33dfbf4ec6d424ede30655fb5e89b9edad541a528b2215a488c6f543f3 +size 149512 diff --git a/datasets/xianshiping/train/images/订单1806093_51_7103269.jpg b/datasets/xianshiping/train/images/订单1806093_51_7103269.jpg new file mode 100644 index 0000000..2f5b083 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806093_51_7103269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3401ea3e33e3a6cbe42662fda1963d6c14d2f62195d6e71e849e6cc92e4a42 +size 283040 diff --git a/datasets/xianshiping/train/images/订单1806100_51_7103196.jpg b/datasets/xianshiping/train/images/订单1806100_51_7103196.jpg new file mode 100644 index 0000000..ce2296b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806100_51_7103196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1f7a205971cbed6362f5877e254b952074c311ad452754861561613d89973f +size 166526 diff --git a/datasets/xianshiping/train/images/订单1806101_51_7103288.jpg b/datasets/xianshiping/train/images/订单1806101_51_7103288.jpg new file mode 100644 index 0000000..efbe223 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806101_51_7103288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa31ecddf1427d471fcae1852dd8dd6881b7464e2eb596bd76dde8308d5ad85 +size 74931 diff --git a/datasets/xianshiping/train/images/订单1806105_51_7103283.jpg b/datasets/xianshiping/train/images/订单1806105_51_7103283.jpg new file mode 100644 index 0000000..6607202 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806105_51_7103283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f782681b532751d1309749e4185c52b0e4934bd76c30b2e84841fcbdb2e70662 +size 552193 diff --git a/datasets/xianshiping/train/images/订单1806106_51_7103306.jpg b/datasets/xianshiping/train/images/订单1806106_51_7103306.jpg new file mode 100644 index 0000000..8b58447 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806106_51_7103306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e7158302a750e3b1e6d6a4d5e61b1fa44683765167e3485a5d7554d3b551f +size 212115 diff --git a/datasets/xianshiping/train/images/订单1806107_51_7103354.jpg b/datasets/xianshiping/train/images/订单1806107_51_7103354.jpg new file mode 100644 index 0000000..e9f487e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806107_51_7103354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c758cfc1eae2218575c491621d7f0ac2d1631339948ea77c51897288e6a1ef +size 207124 diff --git a/datasets/xianshiping/train/images/订单1806110_51_7103334.jpg b/datasets/xianshiping/train/images/订单1806110_51_7103334.jpg new file mode 100644 index 0000000..8d4598c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806110_51_7103334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc06e935a38c5beb616813ccf7f866a10ffefe999ead6a1f7b350e5aa84d4f8c +size 112615 diff --git a/datasets/xianshiping/train/images/订单1806113_51_7103433.jpg b/datasets/xianshiping/train/images/订单1806113_51_7103433.jpg new file mode 100644 index 0000000..59ce2ed --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806113_51_7103433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5b6f5a0fcbdef6202e0d529409ef141fee7cf8318e260115726d9b304223ea +size 137164 diff --git a/datasets/xianshiping/train/images/订单1806114_51_7103385.jpg b/datasets/xianshiping/train/images/订单1806114_51_7103385.jpg new file mode 100644 index 0000000..d30278e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806114_51_7103385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550ccc3795af9e91b980e3dcb43b474a5cee00f3ba911ae683560b6abb0247c6 +size 127734 diff --git a/datasets/xianshiping/train/images/订单1806115_51_7103376.jpg b/datasets/xianshiping/train/images/订单1806115_51_7103376.jpg new file mode 100644 index 0000000..84c59de --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806115_51_7103376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8703a2400d438ff86dbd04bab5d6a07c963db108e28190e1217cfdda63e06d30 +size 160132 diff --git a/datasets/xianshiping/train/images/订单1806116_51_7103437.jpg b/datasets/xianshiping/train/images/订单1806116_51_7103437.jpg new file mode 100644 index 0000000..88d4403 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806116_51_7103437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a55556dbe8b5855a97dcbe539396d5d17533fe3b4e4b5bb48adfb5ed742c4a +size 158801 diff --git a/datasets/xianshiping/train/images/订单1806117_51_7103452.jpg b/datasets/xianshiping/train/images/订单1806117_51_7103452.jpg new file mode 100644 index 0000000..53b3e2a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806117_51_7103452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a52b3ddc7f1796b1ede90bd8878507de31edbd7fe218669c71795f0142a8c26 +size 89005 diff --git a/datasets/xianshiping/train/images/订单1806118_51_7103420.jpg b/datasets/xianshiping/train/images/订单1806118_51_7103420.jpg new file mode 100644 index 0000000..46d6f6e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806118_51_7103420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe978099ec6724ab269702607cf591c2440d372d9da5edc52a52d2a0d5f9feb0 +size 127382 diff --git a/datasets/xianshiping/train/images/订单1806120_51_7103423.jpg b/datasets/xianshiping/train/images/订单1806120_51_7103423.jpg new file mode 100644 index 0000000..58b5406 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806120_51_7103423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120432befbd8a2454e9d422b682eba41f850bd5c358c796cf3664b3f2af1334d +size 118657 diff --git a/datasets/xianshiping/train/images/订单1806123_51_7103545.jpg b/datasets/xianshiping/train/images/订单1806123_51_7103545.jpg new file mode 100644 index 0000000..8cabe93 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806123_51_7103545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc5e941884ebc3f6165ec4e995bf9bfead29a5430648ad4b93ecaf69e2663b7 +size 231071 diff --git a/datasets/xianshiping/train/images/订单1806125_51_7103474.jpg b/datasets/xianshiping/train/images/订单1806125_51_7103474.jpg new file mode 100644 index 0000000..5bf6541 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806125_51_7103474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d602db28312d51c222e4a997f62923c0ee564119178a6d4f2e9f884c71b002 +size 532351 diff --git a/datasets/xianshiping/train/images/订单1806126_51_7103481.jpg b/datasets/xianshiping/train/images/订单1806126_51_7103481.jpg new file mode 100644 index 0000000..1cd5553 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806126_51_7103481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e63ee621427340c435d4ef67e15fd88ce5513443f4410d6e48445a159d4de7c +size 137532 diff --git a/datasets/xianshiping/train/images/订单1806128_51_7103584.jpg b/datasets/xianshiping/train/images/订单1806128_51_7103584.jpg new file mode 100644 index 0000000..295b773 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806128_51_7103584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f86b0058b4825e8c5180377f1b809f5061669528f5ebc05a355cde1216bddd8 +size 566223 diff --git a/datasets/xianshiping/train/images/订单1806130_51_7103513.jpg b/datasets/xianshiping/train/images/订单1806130_51_7103513.jpg new file mode 100644 index 0000000..7f66676 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806130_51_7103513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36d5c3dbfae995bf6cb975168cd7f6e71dd06302cbd7ed12226dbdfdc94c716 +size 575382 diff --git a/datasets/xianshiping/train/images/订单1806131_51_7103563.jpg b/datasets/xianshiping/train/images/订单1806131_51_7103563.jpg new file mode 100644 index 0000000..540c565 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806131_51_7103563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02ed1bed74fd404d7632426c5a90e6781b843b38f40d16b387e663168569c35 +size 266089 diff --git a/datasets/xianshiping/train/images/订单1806133_51_7103528.jpg b/datasets/xianshiping/train/images/订单1806133_51_7103528.jpg new file mode 100644 index 0000000..4f99d5e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806133_51_7103528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e9e4547e881e05b316927d6508a8ded34939f2fe79772f9549e477e8fbfa3d +size 130178 diff --git a/datasets/xianshiping/train/images/订单1806136_51_7103552.jpg b/datasets/xianshiping/train/images/订单1806136_51_7103552.jpg new file mode 100644 index 0000000..0d8bf82 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806136_51_7103552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bb8903597ac149de780383988cae4bc48544069d10125beeae0c20617bfbdb +size 161391 diff --git a/datasets/xianshiping/train/images/订单1806141_51_7103695.jpg b/datasets/xianshiping/train/images/订单1806141_51_7103695.jpg new file mode 100644 index 0000000..0397e62 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806141_51_7103695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778e45238d4484997f1ffd87a5b1630e98b3c20b8176b5d02062dccad4f6c71a +size 125050 diff --git a/datasets/xianshiping/train/images/订单1806142_51_7105268.jpg b/datasets/xianshiping/train/images/订单1806142_51_7105268.jpg new file mode 100644 index 0000000..fe54357 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806142_51_7105268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1298d6e7ea461c89aed2d499decd22064dabbb275028864e26ac65e488a1f2f +size 97306 diff --git a/datasets/xianshiping/train/images/订单1806144_51_7103599.jpg b/datasets/xianshiping/train/images/订单1806144_51_7103599.jpg new file mode 100644 index 0000000..696e5f5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806144_51_7103599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82920f02a52a16f6d6d7a8e973ef2f563c9166be46df8f6959e3b6fad203aeb6 +size 110473 diff --git a/datasets/xianshiping/train/images/订单1806146_51_7103703.jpg b/datasets/xianshiping/train/images/订单1806146_51_7103703.jpg new file mode 100644 index 0000000..46d09bb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806146_51_7103703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd73127881b9712cdaded4e207419a63742ecc8150c55dc6bde1da2bcd92e30 +size 101631 diff --git a/datasets/xianshiping/train/images/订单1806148_51_7103678.jpg b/datasets/xianshiping/train/images/订单1806148_51_7103678.jpg new file mode 100644 index 0000000..b7ac073 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806148_51_7103678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd23c47b24b0ff2cfa8748e6c160d9faa4f115b6c7775912f1a36a53f2210211 +size 126267 diff --git a/datasets/xianshiping/train/images/订单1806152_51_7103811.jpg b/datasets/xianshiping/train/images/订单1806152_51_7103811.jpg new file mode 100644 index 0000000..2c43dad --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806152_51_7103811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd60077ea683d9c4efb7d684910d540d9e2f4417ba36daa9ba81d4a72bd4e70 +size 156336 diff --git a/datasets/xianshiping/train/images/订单1806158_51_7103859.jpg b/datasets/xianshiping/train/images/订单1806158_51_7103859.jpg new file mode 100644 index 0000000..32169c0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806158_51_7103859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2906c8d417b93daa42714a565c2932844487ad416278e1afbe8d7c36d628aa37 +size 199393 diff --git a/datasets/xianshiping/train/images/订单1806159_51_7103731.jpg b/datasets/xianshiping/train/images/订单1806159_51_7103731.jpg new file mode 100644 index 0000000..b1b6a27 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806159_51_7103731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27d1a5cbe1efb0b17b2e18375d734dd5fbe5d9acfe555d61110f58691b41468 +size 135760 diff --git a/datasets/xianshiping/train/images/订单1806160_51_7103768.jpg b/datasets/xianshiping/train/images/订单1806160_51_7103768.jpg new file mode 100644 index 0000000..631a705 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806160_51_7103768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3a2bc4143065ee7f3f3ff923dfbf9480c1b8860900a058359476fdce83470b +size 357192 diff --git a/datasets/xianshiping/train/images/订单1806166_51_7103910.jpg b/datasets/xianshiping/train/images/订单1806166_51_7103910.jpg new file mode 100644 index 0000000..c756ebf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806166_51_7103910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844ac121e8b4fc014e93cd7919ba74761c05fb4b919fca4f0ca747704376ead1 +size 131688 diff --git a/datasets/xianshiping/train/images/订单1806169_51_7103877.jpg b/datasets/xianshiping/train/images/订单1806169_51_7103877.jpg new file mode 100644 index 0000000..2e6ef05 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806169_51_7103877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aea56c7ec136fe4ce7a22040adc9dda922fd706d627777550251f103278a37 +size 116116 diff --git a/datasets/xianshiping/train/images/订单1806173_51_7104016.jpg b/datasets/xianshiping/train/images/订单1806173_51_7104016.jpg new file mode 100644 index 0000000..3717207 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806173_51_7104016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592b48df07fef2bed92bee1389b9bbe111f5a136f01f5ec4dd4694f23829653 +size 85833 diff --git a/datasets/xianshiping/train/images/订单1806174_51_7103900.jpg b/datasets/xianshiping/train/images/订单1806174_51_7103900.jpg new file mode 100644 index 0000000..5c56e6e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806174_51_7103900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f6a209ec7a560079b7d0414384d6dfd813fc6508b6905280ee0729053f1873 +size 241457 diff --git a/datasets/xianshiping/train/images/订单1806178_51_7103983.jpg b/datasets/xianshiping/train/images/订单1806178_51_7103983.jpg new file mode 100644 index 0000000..47ed410 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806178_51_7103983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939f200c3a4bf1385bc4267344ef1dffb8fe839e1fb87b30d1885c60cfb877ef +size 437055 diff --git a/datasets/xianshiping/train/images/订单1806180_51_7103956.jpg b/datasets/xianshiping/train/images/订单1806180_51_7103956.jpg new file mode 100644 index 0000000..4513209 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806180_51_7103956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e746a8a154b36f93542eed763f4d1304f1e72280e0771ecfd1ea19ccbaff70c +size 144187 diff --git a/datasets/xianshiping/train/images/订单1806188_51_7104051.jpg b/datasets/xianshiping/train/images/订单1806188_51_7104051.jpg new file mode 100644 index 0000000..8e74fcd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806188_51_7104051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b7631905d0dba243996b25fdbfc1f311dc459469e81d6d2608884c0fcefaec +size 173525 diff --git a/datasets/xianshiping/train/images/订单1806189_51_7103908.jpg b/datasets/xianshiping/train/images/订单1806189_51_7103908.jpg new file mode 100644 index 0000000..298b436 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806189_51_7103908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd693448f77a57e56e17d95b31bba9f50c8b11464be389ff9a6a606a1603ee3b +size 140412 diff --git a/datasets/xianshiping/train/images/订单1806191_51_7103989.jpg b/datasets/xianshiping/train/images/订单1806191_51_7103989.jpg new file mode 100644 index 0000000..bef9c02 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806191_51_7103989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9731b1f8142174a54b081207708ffb053c4279d5c0918d5fe680db72ade27c64 +size 57197 diff --git a/datasets/xianshiping/train/images/订单1806192_51_7103954.jpg b/datasets/xianshiping/train/images/订单1806192_51_7103954.jpg new file mode 100644 index 0000000..ff99ae4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806192_51_7103954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe18dc11e4476f6ab7c1cb730c6e3bdbf1a1928fac13e5b1431209a7d5f37dd +size 176301 diff --git a/datasets/xianshiping/train/images/订单1806194_51_7103950.jpg b/datasets/xianshiping/train/images/订单1806194_51_7103950.jpg new file mode 100644 index 0000000..b521b0a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806194_51_7103950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9501856018aa4a6da113033d8836ca1e51dbaa54184e5a6a4f5b3ec604274e9 +size 212171 diff --git a/datasets/xianshiping/train/images/订单1806195_51_7104360.jpg b/datasets/xianshiping/train/images/订单1806195_51_7104360.jpg new file mode 100644 index 0000000..c7af207 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806195_51_7104360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfdc4570fd593039df89d360609bf36a8c6f55e8a35920350af45cd8dbbde6b +size 347810 diff --git a/datasets/xianshiping/train/images/订单1806196_51_7104047.jpg b/datasets/xianshiping/train/images/订单1806196_51_7104047.jpg new file mode 100644 index 0000000..93f6223 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806196_51_7104047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956a8599a40612a51351df89adf56b72eaa1f17fb4e65777f6430740ce634ed9 +size 739470 diff --git a/datasets/xianshiping/train/images/订单1806197_51_7104132.jpg b/datasets/xianshiping/train/images/订单1806197_51_7104132.jpg new file mode 100644 index 0000000..3529899 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806197_51_7104132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1802e2233af2d76e146a1ab9e8ea7f281060529ca32d67b546ac62324c5a5bae +size 145418 diff --git a/datasets/xianshiping/train/images/订单1806198_51_7104058.jpg b/datasets/xianshiping/train/images/订单1806198_51_7104058.jpg new file mode 100644 index 0000000..ae01d11 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806198_51_7104058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ef8579c34a2e0d4bd09f7e44c91f362db56f39f281e35343928e740d1e966e +size 107080 diff --git a/datasets/xianshiping/train/images/订单1806203_51_7104209.jpg b/datasets/xianshiping/train/images/订单1806203_51_7104209.jpg new file mode 100644 index 0000000..659ea0b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806203_51_7104209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caae7af3b5b876450c2753db7ae82904c6479c2f76634c01712d37fd6672749b +size 119418 diff --git a/datasets/xianshiping/train/images/订单1806206_51_7104307.jpg b/datasets/xianshiping/train/images/订单1806206_51_7104307.jpg new file mode 100644 index 0000000..bcaf752 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806206_51_7104307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2497ddba78cce62aa16a37cbfc5eae97a4fa9fb783004d70cbf6afef118f8803 +size 357952 diff --git a/datasets/xianshiping/train/images/订单1806207_51_7104196.jpg b/datasets/xianshiping/train/images/订单1806207_51_7104196.jpg new file mode 100644 index 0000000..faae0fb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806207_51_7104196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb8443d8463f6b229ebbb5cecd536e1de79b3235c2e2429d6c618d992860763 +size 146092 diff --git a/datasets/xianshiping/train/images/订单1806211_51_7104444.jpg b/datasets/xianshiping/train/images/订单1806211_51_7104444.jpg new file mode 100644 index 0000000..3c5a46e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806211_51_7104444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f8bbd6905028218def7c192bc6e3951167018c64328adfdc380f11fc975840 +size 132400 diff --git a/datasets/xianshiping/train/images/订单1806212_51_7104331.jpg b/datasets/xianshiping/train/images/订单1806212_51_7104331.jpg new file mode 100644 index 0000000..f2e9832 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806212_51_7104331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6a8a46a8ba91d445dafce39a55b621598e50b8150e491551085385e8cd4e8f +size 102417 diff --git a/datasets/xianshiping/train/images/订单1806215_51_7104325.jpg b/datasets/xianshiping/train/images/订单1806215_51_7104325.jpg new file mode 100644 index 0000000..a55a9f5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806215_51_7104325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b5e473454e03b6e9f5d8d305a762a7ec4374f53eab7599ff9c6b57681f960e +size 355618 diff --git a/datasets/xianshiping/train/images/订单1806217_51_7104303.jpg b/datasets/xianshiping/train/images/订单1806217_51_7104303.jpg new file mode 100644 index 0000000..a7dfe79 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806217_51_7104303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3875c9367473e8507e80469c7d64bf6749ff6c46e2df808a5ca3c18ba7f84df9 +size 679817 diff --git a/datasets/xianshiping/train/images/订单1806218_51_7104322.jpg b/datasets/xianshiping/train/images/订单1806218_51_7104322.jpg new file mode 100644 index 0000000..98c251a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806218_51_7104322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610d769d6a6e265a1dbffb23c46946bf6e78a5855d04ccac0a34c7f8b36706ee +size 241771 diff --git a/datasets/xianshiping/train/images/订单1806219_51_7104378.jpg b/datasets/xianshiping/train/images/订单1806219_51_7104378.jpg new file mode 100644 index 0000000..35dac7d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806219_51_7104378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0d52dc875adbb2305edac19381c7e6cf92820917fa31c4e667e8b8758f21f9 +size 217278 diff --git a/datasets/xianshiping/train/images/订单1806225_51_7104423.jpg b/datasets/xianshiping/train/images/订单1806225_51_7104423.jpg new file mode 100644 index 0000000..2e3893d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806225_51_7104423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d5ad63da5e86a56fcd68058b98b84f512e7858d0d40289dfb07e2b8354cd06 +size 146486 diff --git a/datasets/xianshiping/train/images/订单1806226_51_7104403.jpg b/datasets/xianshiping/train/images/订单1806226_51_7104403.jpg new file mode 100644 index 0000000..3032b3a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806226_51_7104403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427dbadcda1d3fa7de7460d25665953b34dd13f35e0da8a680b0791419a9221e +size 141745 diff --git a/datasets/xianshiping/train/images/订单1806228_51_7104429.jpg b/datasets/xianshiping/train/images/订单1806228_51_7104429.jpg new file mode 100644 index 0000000..535a36c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806228_51_7104429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee3b3a874204325e7108c1c2d143968456be4eb4afef9282dbd8e3a0f00ea28 +size 108354 diff --git a/datasets/xianshiping/train/images/订单1806231_51_7104704.jpg b/datasets/xianshiping/train/images/订单1806231_51_7104704.jpg new file mode 100644 index 0000000..6eeea61 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806231_51_7104704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab347aaf7001b57ec1017e2541389460febe48d1bc5f0bbd90883cc368dd7b3f +size 166214 diff --git a/datasets/xianshiping/train/images/订单1806234_51_7104480.jpg b/datasets/xianshiping/train/images/订单1806234_51_7104480.jpg new file mode 100644 index 0000000..4bdc0b8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806234_51_7104480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c381d920d0f22d590dd7a31517ee7858c05ebb5ff8721d9e4074490dc570fb +size 142021 diff --git a/datasets/xianshiping/train/images/订单1806239_51_7104590.jpg b/datasets/xianshiping/train/images/订单1806239_51_7104590.jpg new file mode 100644 index 0000000..45521a6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806239_51_7104590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c84f135840465d265ddcdb5f4d8e24c10a2095f847dc4b4f564b6de886086c +size 138684 diff --git a/datasets/xianshiping/train/images/订单1806242_51_7104631.jpg b/datasets/xianshiping/train/images/订单1806242_51_7104631.jpg new file mode 100644 index 0000000..4f207d6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806242_51_7104631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfc62ab81998f29385ff35fdfa4a8bac7eda760f5d6f6e51913b031a78092bf +size 256060 diff --git a/datasets/xianshiping/train/images/订单1806244_51_7104569.jpg b/datasets/xianshiping/train/images/订单1806244_51_7104569.jpg new file mode 100644 index 0000000..b6e9fd6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806244_51_7104569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d229a50ede224c47245e941e7de1349a52d616800b7f731af9706cd84daef700 +size 474927 diff --git a/datasets/xianshiping/train/images/订单1806246_51_7104763.jpg b/datasets/xianshiping/train/images/订单1806246_51_7104763.jpg new file mode 100644 index 0000000..80b1957 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806246_51_7104763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d6939992dc7d2db1bcb21506ee63d45b03eca5d7951f926ca63ad6f7d6cd57 +size 128765 diff --git a/datasets/xianshiping/train/images/订单1806247_51_7104645.jpg b/datasets/xianshiping/train/images/订单1806247_51_7104645.jpg new file mode 100644 index 0000000..9f3a5a1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806247_51_7104645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2ffb43a9bf9d07b02723cbd20c49aa9309da115159669f674dc4a9f04ea27a +size 83408 diff --git a/datasets/xianshiping/train/images/订单1806248_51_7104713.jpg b/datasets/xianshiping/train/images/订单1806248_51_7104713.jpg new file mode 100644 index 0000000..82fde40 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806248_51_7104713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0c8ee4248cc53a044b327ec7be3a2ebe27bf5dc379877fb41894e1468bf173 +size 126500 diff --git a/datasets/xianshiping/train/images/订单1806251_51_7104781.jpg b/datasets/xianshiping/train/images/订单1806251_51_7104781.jpg new file mode 100644 index 0000000..e440cc9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806251_51_7104781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4e5e7ddbda5626e791ae0cf96b038ae47609107a547a5ba06338d96aab2cba +size 149176 diff --git a/datasets/xianshiping/train/images/订单1806252_51_7104609.jpg b/datasets/xianshiping/train/images/订单1806252_51_7104609.jpg new file mode 100644 index 0000000..12e8e57 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806252_51_7104609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340b1b207901e6c2bf103cb953f768757af5193b17f6ab9f65b56247e4f684ee +size 413713 diff --git a/datasets/xianshiping/train/images/订单1806253_51_7104764.jpg b/datasets/xianshiping/train/images/订单1806253_51_7104764.jpg new file mode 100644 index 0000000..b8cd21e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806253_51_7104764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d646a04aad8faa8b90a2650f81eadababa9d82836caa72373369aba3adafb5c +size 155399 diff --git a/datasets/xianshiping/train/images/订单1806254_51_7104737.jpg b/datasets/xianshiping/train/images/订单1806254_51_7104737.jpg new file mode 100644 index 0000000..148f52a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806254_51_7104737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a44c5d3376e143fe06d1dfae8b2c22c8b4c7428b6abd1ae725ec708c245cc0 +size 168113 diff --git a/datasets/xianshiping/train/images/订单1806256_51_7104758.jpg b/datasets/xianshiping/train/images/订单1806256_51_7104758.jpg new file mode 100644 index 0000000..d6b6316 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806256_51_7104758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275eed1a34043a981b8bd76e4c1beee1a388c7de6d2eefc684a529f127333810 +size 146362 diff --git a/datasets/xianshiping/train/images/订单1806259_51_7104978.jpg b/datasets/xianshiping/train/images/订单1806259_51_7104978.jpg new file mode 100644 index 0000000..9c6672c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806259_51_7104978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d2563149588fe0ece4dd166ecc8ede098383f210310a0af284037952022220 +size 197156 diff --git a/datasets/xianshiping/train/images/订单1806260_51_7104740.jpg b/datasets/xianshiping/train/images/订单1806260_51_7104740.jpg new file mode 100644 index 0000000..4a9484e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806260_51_7104740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca69d077874ff2c808c014d9774768ec67a8b5a123914971653a90110623e8ce +size 149132 diff --git a/datasets/xianshiping/train/images/订单1806265_51_7104815.jpg b/datasets/xianshiping/train/images/订单1806265_51_7104815.jpg new file mode 100644 index 0000000..5384a67 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806265_51_7104815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb2d3bf86bfb0e3e6df120eca1ca1f957dc7d156d54783e43b9a6038bae1ec8 +size 124464 diff --git a/datasets/xianshiping/train/images/订单1806269_51_7104849.jpg b/datasets/xianshiping/train/images/订单1806269_51_7104849.jpg new file mode 100644 index 0000000..fde26e6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806269_51_7104849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e0230ded1792a599cd51b71c1a14889e9f836e80083e3f885d5389f340888a +size 489269 diff --git a/datasets/xianshiping/train/images/订单1806270_51_7104958.jpg b/datasets/xianshiping/train/images/订单1806270_51_7104958.jpg new file mode 100644 index 0000000..585f8b7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806270_51_7104958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75093eea7405c4202f5c607bf1fb66e29a6f46c35f64cc611fe713c2c021479 +size 123684 diff --git a/datasets/xianshiping/train/images/订单1806273_51_7104884.jpg b/datasets/xianshiping/train/images/订单1806273_51_7104884.jpg new file mode 100644 index 0000000..a095bcc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806273_51_7104884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164313a9213b02cf2fe17fdcef686fa7c402605cac49838ff5f2a78744e9560e +size 170097 diff --git a/datasets/xianshiping/train/images/订单1806274_51_7104931.jpg b/datasets/xianshiping/train/images/订单1806274_51_7104931.jpg new file mode 100644 index 0000000..3a96052 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806274_51_7104931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b62c05fee88e86a68a4dc5db8d074fc58713de8981e92095e451c8c2c38b5a +size 674284 diff --git a/datasets/xianshiping/train/images/订单1806280_51_7105035.jpg b/datasets/xianshiping/train/images/订单1806280_51_7105035.jpg new file mode 100644 index 0000000..cd62870 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806280_51_7105035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec02d4f59b801061df06ca539d075d7b37f4191e05fdb798e65283795f4d825 +size 400482 diff --git a/datasets/xianshiping/train/images/订单1806282_51_7105048.jpg b/datasets/xianshiping/train/images/订单1806282_51_7105048.jpg new file mode 100644 index 0000000..030f86e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806282_51_7105048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153bd5954928b69fc729b41bcab0ecb29b5c803535e0408ae400d82fc995317a +size 101444 diff --git a/datasets/xianshiping/train/images/订单1806284_51_7105002.jpg b/datasets/xianshiping/train/images/订单1806284_51_7105002.jpg new file mode 100644 index 0000000..2996d55 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806284_51_7105002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41da6c30ef95a341f9c62819e818f409a2d41c26f8a3be40143213328bcff406 +size 108988 diff --git a/datasets/xianshiping/train/images/订单1806286_51_7105055.jpg b/datasets/xianshiping/train/images/订单1806286_51_7105055.jpg new file mode 100644 index 0000000..c8b1995 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806286_51_7105055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e49b854d5b4fe00d554f75f7ce01790d0ae6fcac9fb09da6f4344add60cc81a +size 88585 diff --git a/datasets/xianshiping/train/images/订单1806291_51_7105064.jpg b/datasets/xianshiping/train/images/订单1806291_51_7105064.jpg new file mode 100644 index 0000000..72a8496 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806291_51_7105064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200044c6e469bfe5b54bc563eb96417b3f52a73a5eebf0ae888cadbab627e839 +size 354102 diff --git a/datasets/xianshiping/train/images/订单1806292_51_7105155.jpg b/datasets/xianshiping/train/images/订单1806292_51_7105155.jpg new file mode 100644 index 0000000..f555947 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806292_51_7105155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4df9d1f4c0bbf8fa13caf598df397f38e5499f1126d217d96cd75bf681bb391 +size 495552 diff --git a/datasets/xianshiping/train/images/订单1806293_51_7105244.jpg b/datasets/xianshiping/train/images/订单1806293_51_7105244.jpg new file mode 100644 index 0000000..5ed3c66 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806293_51_7105244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97c9a50d21fd359976959cce48098dff3a76310c47115b5b7b30b8a680cd3f0 +size 147702 diff --git a/datasets/xianshiping/train/images/订单1806296_51_7105118.jpg b/datasets/xianshiping/train/images/订单1806296_51_7105118.jpg new file mode 100644 index 0000000..56afe1c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806296_51_7105118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b6b78d16cdaba6a69b1fb73888960bce98dc712f309c215cb842a562716d1b +size 188399 diff --git a/datasets/xianshiping/train/images/订单1806298_51_7105110.jpg b/datasets/xianshiping/train/images/订单1806298_51_7105110.jpg new file mode 100644 index 0000000..329fe02 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806298_51_7105110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f6e6b18ac86bb61014fa7b5db9e065d764a82ee831552f7e7cafb0ae36f5f0 +size 130817 diff --git a/datasets/xianshiping/train/images/订单1806301_51_7105200.jpg b/datasets/xianshiping/train/images/订单1806301_51_7105200.jpg new file mode 100644 index 0000000..47347d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806301_51_7105200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6af9f4afa8275b621725be11e238c2fe51bd3bb658b7069039dd6aeca0cf22f +size 144886 diff --git a/datasets/xianshiping/train/images/订单1806302_51_7105091.jpg b/datasets/xianshiping/train/images/订单1806302_51_7105091.jpg new file mode 100644 index 0000000..b512748 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806302_51_7105091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8364896724ac188f83adc135b4a89e677c1d5777ff2833d695b3bcbe446899a2 +size 142388 diff --git a/datasets/xianshiping/train/images/订单1806303_51_7105175.jpg b/datasets/xianshiping/train/images/订单1806303_51_7105175.jpg new file mode 100644 index 0000000..1988349 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806303_51_7105175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b581a8b3439e1c5caf19ad88072fe1b4aff618a8f809eebb049d7da9a63c6c44 +size 166156 diff --git a/datasets/xianshiping/train/images/订单1806306_51_7105187.jpg b/datasets/xianshiping/train/images/订单1806306_51_7105187.jpg new file mode 100644 index 0000000..c27f0e6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806306_51_7105187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e332a9c98d34a54fc09dc0c0cda30c1bee6dc744f1a51e5dfd904af514d9d8 +size 121606 diff --git a/datasets/xianshiping/train/images/订单1806307_51_7105144.jpg b/datasets/xianshiping/train/images/订单1806307_51_7105144.jpg new file mode 100644 index 0000000..eb2bbfc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806307_51_7105144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbba1118fe7e08e82ed573eef6e793db73ead2302f78e9842d07afd8bf818a45 +size 157823 diff --git a/datasets/xianshiping/train/images/订单1806308_51_7105217.jpg b/datasets/xianshiping/train/images/订单1806308_51_7105217.jpg new file mode 100644 index 0000000..f807672 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806308_51_7105217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a9d414e1206dafb28faac12f6cfe1a6d46a76cb7da3c009a04f71bd4a291f3 +size 143103 diff --git a/datasets/xianshiping/train/images/订单1806309_51_7105279.jpg b/datasets/xianshiping/train/images/订单1806309_51_7105279.jpg new file mode 100644 index 0000000..5e006f9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806309_51_7105279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21697adc83b28538e1b13933b959f770414fcb7732c3c3e14a13ac2636330de +size 126686 diff --git a/datasets/xianshiping/train/images/订单1806310_51_7105820.jpg b/datasets/xianshiping/train/images/订单1806310_51_7105820.jpg new file mode 100644 index 0000000..e7f3598 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806310_51_7105820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948ad2b0a712f2c6f02864d515eac7e5efc5cb358fa6af4bbaefe0bd24366552 +size 215339 diff --git a/datasets/xianshiping/train/images/订单1806311_51_7105525.jpg b/datasets/xianshiping/train/images/订单1806311_51_7105525.jpg new file mode 100644 index 0000000..cf71429 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806311_51_7105525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba67fb6c5d3cf72c35bee2eba9debdc6df29f9f3f5eb2dfb866f448c9470a76 +size 108651 diff --git a/datasets/xianshiping/train/images/订单1806314_51_7105323.jpg b/datasets/xianshiping/train/images/订单1806314_51_7105323.jpg new file mode 100644 index 0000000..2e3e1a5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806314_51_7105323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2853868ddb97bf0e4b7f24c9b08d94f589abfd0d2da2cbd8536ca464ad8061d +size 120404 diff --git a/datasets/xianshiping/train/images/订单1806315_51_7105307.jpg b/datasets/xianshiping/train/images/订单1806315_51_7105307.jpg new file mode 100644 index 0000000..688b7e2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806315_51_7105307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0dcafb5858a4181206331c63b7188729cc418a135dd493eda4bd830d8145f0f +size 134711 diff --git a/datasets/xianshiping/train/images/订单1806318_51_7105355.jpg b/datasets/xianshiping/train/images/订单1806318_51_7105355.jpg new file mode 100644 index 0000000..b4045a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806318_51_7105355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6712d64a987910c37cb5f10d052443caa8a406ab5d1714532bc0abe1e6dcff0 +size 125325 diff --git a/datasets/xianshiping/train/images/订单1806319_51_7105277.jpg b/datasets/xianshiping/train/images/订单1806319_51_7105277.jpg new file mode 100644 index 0000000..371068b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806319_51_7105277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2312af67b02f8458c4240052a90f729704178788ad837d7c59be52c421557eae +size 412692 diff --git a/datasets/xianshiping/train/images/订单1806323_51_7105337.jpg b/datasets/xianshiping/train/images/订单1806323_51_7105337.jpg new file mode 100644 index 0000000..8250655 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806323_51_7105337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83fc9ba952d1d53e0f82847cec18d6ea68be0eb697335dac7c6769ff7c85a52e +size 127048 diff --git a/datasets/xianshiping/train/images/订单1806324_51_7105310.jpg b/datasets/xianshiping/train/images/订单1806324_51_7105310.jpg new file mode 100644 index 0000000..9597f23 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806324_51_7105310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d9b102a87306c3fdb5312e7b7fc78d3e3759c4e68af4feff830066eae6b562 +size 99973 diff --git a/datasets/xianshiping/train/images/订单1806325_51_7105633.jpg b/datasets/xianshiping/train/images/订单1806325_51_7105633.jpg new file mode 100644 index 0000000..8548aae --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806325_51_7105633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54994bfc1ebcc2487e511cf05ba433ebad849ca9e6a6f421c9b593b314cc226 +size 138307 diff --git a/datasets/xianshiping/train/images/订单1806327_51_7105361.jpg b/datasets/xianshiping/train/images/订单1806327_51_7105361.jpg new file mode 100644 index 0000000..9ba602a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806327_51_7105361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d98da6fa0fb1424ade055ff6487e6365e3e40d5a156fbb4c12d3a31903ead20 +size 148490 diff --git a/datasets/xianshiping/train/images/订单1806328_51_7105439.jpg b/datasets/xianshiping/train/images/订单1806328_51_7105439.jpg new file mode 100644 index 0000000..49cf553 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806328_51_7105439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c694bd3a98ca3430bf5d0bfbcfbbce22dad9c0b72bf20fbfa270ba3be4fd4996 +size 109823 diff --git a/datasets/xianshiping/train/images/订单1806330_51_7105483.jpg b/datasets/xianshiping/train/images/订单1806330_51_7105483.jpg new file mode 100644 index 0000000..6304e50 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806330_51_7105483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb9d40b4a5fa2d6ddcd9753bddac31794e9b4a4bdbe6f741da112674086e75f +size 135462 diff --git a/datasets/xianshiping/train/images/订单1806331_51_7105381.jpg b/datasets/xianshiping/train/images/订单1806331_51_7105381.jpg new file mode 100644 index 0000000..01671af --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806331_51_7105381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd7f32f6df3c9b709535e7b27d17f65c3cb866b8a38ac0be85ec059b783990e +size 132201 diff --git a/datasets/xianshiping/train/images/订单1806333_51_7105436.jpg b/datasets/xianshiping/train/images/订单1806333_51_7105436.jpg new file mode 100644 index 0000000..c694df9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806333_51_7105436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f6f607f4968a708517ea775d5e38b0f382bb358e334aceac368ab74dcc6fce +size 91148 diff --git a/datasets/xianshiping/train/images/订单1806334_51_7105428.jpg b/datasets/xianshiping/train/images/订单1806334_51_7105428.jpg new file mode 100644 index 0000000..390ff72 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806334_51_7105428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8f28c1b4f21ee7694b73374ab839bc3029a9b576750e585818854516746e77 +size 126844 diff --git a/datasets/xianshiping/train/images/订单1806336_51_7105410.jpg b/datasets/xianshiping/train/images/订单1806336_51_7105410.jpg new file mode 100644 index 0000000..d3bf528 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806336_51_7105410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9591c958e95c903831188ec33de87551fd583c71650d5804e218b76d4622f1c7 +size 435386 diff --git a/datasets/xianshiping/train/images/订单1806337_51_7105549.jpg b/datasets/xianshiping/train/images/订单1806337_51_7105549.jpg new file mode 100644 index 0000000..ba11840 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806337_51_7105549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbefd45aa15d3da68783c4589262c580f2921ba742b0af999bc74c830f5c684 +size 82598 diff --git a/datasets/xianshiping/train/images/订单1806340_51_7105570.jpg b/datasets/xianshiping/train/images/订单1806340_51_7105570.jpg new file mode 100644 index 0000000..43eaeeb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806340_51_7105570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c5be6a741abfc8fd9fe584ff64b55329c095049661b33ab05037ac711e14d0 +size 284272 diff --git a/datasets/xianshiping/train/images/订单1806342_51_7105897.jpg b/datasets/xianshiping/train/images/订单1806342_51_7105897.jpg new file mode 100644 index 0000000..c2f3365 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806342_51_7105897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ab6029629684184a7b447df40c0f0c5200a530503b290e2ad49ed52499798b +size 85829 diff --git a/datasets/xianshiping/train/images/订单1806343_51_7105589.jpg b/datasets/xianshiping/train/images/订单1806343_51_7105589.jpg new file mode 100644 index 0000000..7a08ced --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806343_51_7105589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1553ab5c4dcc16fa37efbdaf6d3d8cf8746cd830567c672f25989897fbe561 +size 370542 diff --git a/datasets/xianshiping/train/images/订单1806345_51_7105509.jpg b/datasets/xianshiping/train/images/订单1806345_51_7105509.jpg new file mode 100644 index 0000000..e2c1781 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806345_51_7105509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930bddd3cfa5a0e8a695031d49a8752ea8d53c49245f10ab08b051644a1d72f1 +size 95274 diff --git a/datasets/xianshiping/train/images/订单1806349_51_7105942.jpg b/datasets/xianshiping/train/images/订单1806349_51_7105942.jpg new file mode 100644 index 0000000..52bba71 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806349_51_7105942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0cb054e4decfd0c41df0aa678ba990e42b879af0beae30acaeeb0413851511 +size 420831 diff --git a/datasets/xianshiping/train/images/订单1806351_51_7105526.jpg b/datasets/xianshiping/train/images/订单1806351_51_7105526.jpg new file mode 100644 index 0000000..8aa71ce --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806351_51_7105526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9465787115d6d57808cdf82ce5ed2cc571f5d1e16676c84fa35b398ca77bd301 +size 115761 diff --git a/datasets/xianshiping/train/images/订单1806353_51_7105640.jpg b/datasets/xianshiping/train/images/订单1806353_51_7105640.jpg new file mode 100644 index 0000000..874f9c2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806353_51_7105640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80252d013617a0e51e51a2f07f191e718a3a290ac988d25a38d6877dfa975fe0 +size 158715 diff --git a/datasets/xianshiping/train/images/订单1806354_51_7105654.jpg b/datasets/xianshiping/train/images/订单1806354_51_7105654.jpg new file mode 100644 index 0000000..120ed70 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806354_51_7105654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2fb08715eec3092c1605bfb0e7e92cacda178c18cd1e291e4418d5c6619cb +size 79513 diff --git a/datasets/xianshiping/train/images/订单1806355_51_7105607.jpg b/datasets/xianshiping/train/images/订单1806355_51_7105607.jpg new file mode 100644 index 0000000..20cbdf9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806355_51_7105607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5388498c393216e278b78e335cde69a675bd0f4a73603113b35fa7b1dc1e5ebc +size 160113 diff --git a/datasets/xianshiping/train/images/订单1806357_51_7105670.jpg b/datasets/xianshiping/train/images/订单1806357_51_7105670.jpg new file mode 100644 index 0000000..0fa64c3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806357_51_7105670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a70cf0aaa271b7f368444312fd9a07f226f09811a5f3716a1eeb1399bd126c +size 85499 diff --git a/datasets/xianshiping/train/images/订单1806358_51_7105747.jpg b/datasets/xianshiping/train/images/订单1806358_51_7105747.jpg new file mode 100644 index 0000000..7630d65 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806358_51_7105747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bed8ecceab72fe2fb3f19061603f0d156ff9b44d148394a4635f6173c80b84 +size 95481 diff --git a/datasets/xianshiping/train/images/订单1806359_51_7105675.jpg b/datasets/xianshiping/train/images/订单1806359_51_7105675.jpg new file mode 100644 index 0000000..57083e6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806359_51_7105675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7966392b966f1614e86789deb906bc5be62f8947455e915a1c05ae5b1f410f +size 120641 diff --git a/datasets/xianshiping/train/images/订单1806360_51_7105662.jpg b/datasets/xianshiping/train/images/订单1806360_51_7105662.jpg new file mode 100644 index 0000000..596a967 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806360_51_7105662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a4ecbd76882f5326b03a3ebfe53e167ebf746f68c19b75100f5e9a379a4eb6 +size 91353 diff --git a/datasets/xianshiping/train/images/订单1806361_51_7105712.jpg b/datasets/xianshiping/train/images/订单1806361_51_7105712.jpg new file mode 100644 index 0000000..d39f6d2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806361_51_7105712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae7f371bfa2b76fa8fb555a9d768ea8902e54b73585df33d0ee8f85d782a1af +size 173791 diff --git a/datasets/xianshiping/train/images/订单1806362_51_7105959.jpg b/datasets/xianshiping/train/images/订单1806362_51_7105959.jpg new file mode 100644 index 0000000..c382fe2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806362_51_7105959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6401f2ea78fedf8bb77e4dbb9b55889777266b513adf5eb97f990ff9b62930ee +size 465568 diff --git a/datasets/xianshiping/train/images/订单1806363_51_7105693.jpg b/datasets/xianshiping/train/images/订单1806363_51_7105693.jpg new file mode 100644 index 0000000..fce320b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806363_51_7105693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0186ece41d8babcebd3aee894176b4b93417dd01bb60d7ea88cc3575fc65d7d +size 118502 diff --git a/datasets/xianshiping/train/images/订单1806366_51_7105783.jpg b/datasets/xianshiping/train/images/订单1806366_51_7105783.jpg new file mode 100644 index 0000000..15d09c9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806366_51_7105783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e87053bb0ac5392229d5119bc38fd0cf8a98f20eed9d10f38d3e1ce8792afdf +size 123724 diff --git a/datasets/xianshiping/train/images/订单1806367_51_7105793.jpg b/datasets/xianshiping/train/images/订单1806367_51_7105793.jpg new file mode 100644 index 0000000..f9909e8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806367_51_7105793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e48de2ef0d549ec96546bddba6b80e9aaa9ec60d8a3178bdcbc2b2afddc3107 +size 333464 diff --git a/datasets/xianshiping/train/images/订单1806368_51_7105718.jpg b/datasets/xianshiping/train/images/订单1806368_51_7105718.jpg new file mode 100644 index 0000000..0e652db --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806368_51_7105718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d2023c6adc9b600179f7d74a244b17e7e64f0c6302d835dbfbaf2d4731df29 +size 552310 diff --git a/datasets/xianshiping/train/images/订单1806369_51_7105743.jpg b/datasets/xianshiping/train/images/订单1806369_51_7105743.jpg new file mode 100644 index 0000000..d3e7a21 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806369_51_7105743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6de492b06a74c3a2518360ebe1abda7d2eaef1a172a6fa411d582e793be2f1 +size 118699 diff --git a/datasets/xianshiping/train/images/订单1806370_51_7105764.jpg b/datasets/xianshiping/train/images/订单1806370_51_7105764.jpg new file mode 100644 index 0000000..9a8ae86 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806370_51_7105764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed018a104954639be10de6ec8fa821c0ec24f3bcb69653e0d3251b356362b011 +size 416077 diff --git a/datasets/xianshiping/train/images/订单1806371_51_7105828.jpg b/datasets/xianshiping/train/images/订单1806371_51_7105828.jpg new file mode 100644 index 0000000..8a7fd2c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806371_51_7105828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3456994a6d2a2233912c56167269e2b9d5cbec16dbd07f99d0bf63a38acf4d +size 633475 diff --git a/datasets/xianshiping/train/images/订单1806374_51_7105810.jpg b/datasets/xianshiping/train/images/订单1806374_51_7105810.jpg new file mode 100644 index 0000000..363b16b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806374_51_7105810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0eb277955b9955e8bf85f8685116c488816cab1a59ca0bfcc58c5a2d76e3f91 +size 118348 diff --git a/datasets/xianshiping/train/images/订单1806382_51_7105948.jpg b/datasets/xianshiping/train/images/订单1806382_51_7105948.jpg new file mode 100644 index 0000000..031eb79 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806382_51_7105948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ac85d0647a8a3ef81df91d7636d1ae23475df90cd3a1baf5531d7219f105e6 +size 85912 diff --git a/datasets/xianshiping/train/images/订单1806385_51_7105937.jpg b/datasets/xianshiping/train/images/订单1806385_51_7105937.jpg new file mode 100644 index 0000000..09900cc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806385_51_7105937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd0d0dc45ee518a3bf30ee090bf77c8e5639991f208b5cf4675bbdbcddc5d76 +size 124577 diff --git a/datasets/xianshiping/train/images/订单1806386_51_7105908.jpg b/datasets/xianshiping/train/images/订单1806386_51_7105908.jpg new file mode 100644 index 0000000..e5c9b19 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806386_51_7105908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a2fd68dd92b52dd6ad78e446a9bbcc3cf601c5a15bebc3cdf5c4c2e922edc1 +size 126790 diff --git a/datasets/xianshiping/train/images/订单1806388_51_7106058.jpg b/datasets/xianshiping/train/images/订单1806388_51_7106058.jpg new file mode 100644 index 0000000..5a5c90b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806388_51_7106058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64cf773c156d3ff1a767f85b41dc74fd6d92dce61c7bedbb5eb1b1423615149 +size 128036 diff --git a/datasets/xianshiping/train/images/订单1806391_51_7106033.jpg b/datasets/xianshiping/train/images/订单1806391_51_7106033.jpg new file mode 100644 index 0000000..ac5d94c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806391_51_7106033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188e7da81df7cc62206fe4d5027711280efbd85dbb37eacffd3fcb41a5c789d1 +size 108519 diff --git a/datasets/xianshiping/train/images/订单1806395_51_7106004.jpg b/datasets/xianshiping/train/images/订单1806395_51_7106004.jpg new file mode 100644 index 0000000..77f1af6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806395_51_7106004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f793bf1e7d1f0c7a89d3f9263a2aaeb250382190284279c5b795cb470fe879e +size 121940 diff --git a/datasets/xianshiping/train/images/订单1806396_51_7105993.jpg b/datasets/xianshiping/train/images/订单1806396_51_7105993.jpg new file mode 100644 index 0000000..7dd1e45 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806396_51_7105993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d64d192939bb4377be216bffa103a3f855f80dcca8c8843938146a3d157034 +size 203316 diff --git a/datasets/xianshiping/train/images/订单1806398_51_7106151.jpg b/datasets/xianshiping/train/images/订单1806398_51_7106151.jpg new file mode 100644 index 0000000..d242d20 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806398_51_7106151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0d711469dce5d2c702a8fd13c57bb5ac2076ee13c38dc1920b6ece7b8ac87b +size 131272 diff --git a/datasets/xianshiping/train/images/订单1806400_51_7106043.jpg b/datasets/xianshiping/train/images/订单1806400_51_7106043.jpg new file mode 100644 index 0000000..064845d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806400_51_7106043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999c059abcc94b938c46480929de55bacb400f0845bc15cb7231ac912e8feeaa +size 490901 diff --git a/datasets/xianshiping/train/images/订单1806402_51_7106069.jpg b/datasets/xianshiping/train/images/订单1806402_51_7106069.jpg new file mode 100644 index 0000000..2cf8987 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806402_51_7106069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5201681044408853981064cbcc6ff188292d675e6b197c0343e8ca793a85fb9f +size 95722 diff --git a/datasets/xianshiping/train/images/订单1806403_51_7106091.jpg b/datasets/xianshiping/train/images/订单1806403_51_7106091.jpg new file mode 100644 index 0000000..c906206 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806403_51_7106091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc197dbd87cbd50f106f1d4239dfb2d889388aaacd13dbf0551d6533a6750fa3 +size 80724 diff --git a/datasets/xianshiping/train/images/订单1806410_51_7106166.jpg b/datasets/xianshiping/train/images/订单1806410_51_7106166.jpg new file mode 100644 index 0000000..8542225 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806410_51_7106166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c079e66c9b8f908b1c0fef7e8f0ba09c4ed6c759d66e5ef1a69fb963df604256 +size 143068 diff --git a/datasets/xianshiping/train/images/订单1806413_51_7106233.jpg b/datasets/xianshiping/train/images/订单1806413_51_7106233.jpg new file mode 100644 index 0000000..c00c71c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806413_51_7106233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b31679badad47a65ba5567eb3eca399189c2eea5e85e2e10ad42dd2d9f1f9d4 +size 106550 diff --git a/datasets/xianshiping/train/images/订单1806415_51_7106264.jpg b/datasets/xianshiping/train/images/订单1806415_51_7106264.jpg new file mode 100644 index 0000000..3aa38c2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806415_51_7106264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e0b89ba52db62d35610176e76f5686567bdcc6155e73884656833dbdafa58b +size 339440 diff --git a/datasets/xianshiping/train/images/订单1806417_51_7106289.jpg b/datasets/xianshiping/train/images/订单1806417_51_7106289.jpg new file mode 100644 index 0000000..d0c12e5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806417_51_7106289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec38bd605909280318396f4ffa8e51a6e35c62e4784fd011936c47dd8a5f598e +size 96150 diff --git a/datasets/xianshiping/train/images/订单1806418_51_7106207.jpg b/datasets/xianshiping/train/images/订单1806418_51_7106207.jpg new file mode 100644 index 0000000..8a10336 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806418_51_7106207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e797e263487271607a2a0fdef9dc34d6bb51dcf10cddcf90f4ec65eee571c93 +size 130195 diff --git a/datasets/xianshiping/train/images/订单1806420_51_7106202.jpg b/datasets/xianshiping/train/images/订单1806420_51_7106202.jpg new file mode 100644 index 0000000..b05e3eb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806420_51_7106202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d06d2e2a1c32172ba8110f8d6300ba4466a022cf74d13a46873a354b152d13 +size 101417 diff --git a/datasets/xianshiping/train/images/订单1806421_51_7106234.jpg b/datasets/xianshiping/train/images/订单1806421_51_7106234.jpg new file mode 100644 index 0000000..1d9ea56 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806421_51_7106234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255972de442439fed21e721b5da9b111afeb6fd4272ec868e0cabb276f202f93 +size 520706 diff --git a/datasets/xianshiping/train/images/订单1806423_51_7106297.jpg b/datasets/xianshiping/train/images/订单1806423_51_7106297.jpg new file mode 100644 index 0000000..450120d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806423_51_7106297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d647e3f9c9732d152ce6edbb770409bdbb43f23b80d5b2dbaaf6ff3dbd98ee +size 101817 diff --git a/datasets/xianshiping/train/images/订单1806424_51_7106323.jpg b/datasets/xianshiping/train/images/订单1806424_51_7106323.jpg new file mode 100644 index 0000000..a8d10c0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806424_51_7106323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc14387090df2476c6520903c5fec3536ef15221d9ad82dc6f35f98f407d2445 +size 113409 diff --git a/datasets/xianshiping/train/images/订单1806435_51_7106340.jpg b/datasets/xianshiping/train/images/订单1806435_51_7106340.jpg new file mode 100644 index 0000000..1757d68 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806435_51_7106340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b208de04b6a378980382f3bd8a63bab3a6210298ee7425e65e47730750f5b6e +size 329243 diff --git a/datasets/xianshiping/train/images/订单1806438_51_7106366.jpg b/datasets/xianshiping/train/images/订单1806438_51_7106366.jpg new file mode 100644 index 0000000..5edddef --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806438_51_7106366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b06f3caf3758743079b1fd03b5ec980ac942e83160ef38d551ef0e7c15a80f +size 340246 diff --git a/datasets/xianshiping/train/images/订单1806439_51_7106397.jpg b/datasets/xianshiping/train/images/订单1806439_51_7106397.jpg new file mode 100644 index 0000000..b427611 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806439_51_7106397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b09529a89e06eba4769e7f09a9aa6b901a6ded530032b56fd89b8028afcf589 +size 275372 diff --git a/datasets/xianshiping/train/images/订单1806445_51_7106489.jpg b/datasets/xianshiping/train/images/订单1806445_51_7106489.jpg new file mode 100644 index 0000000..04f45a6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806445_51_7106489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383f79ced4ddfd4e5bfbc9f44c1268a525eaa6c8f4eff8ab9e1e7b7c8740e80e +size 163828 diff --git a/datasets/xianshiping/train/images/订单1806446_51_7106424.jpg b/datasets/xianshiping/train/images/订单1806446_51_7106424.jpg new file mode 100644 index 0000000..3afeff9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806446_51_7106424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea2e2e3975468efa93e0f64a28ae16f4fa0b3020a778832ed6a4972810d0544 +size 110325 diff --git a/datasets/xianshiping/train/images/订单1806448_51_7106612.jpg b/datasets/xianshiping/train/images/订单1806448_51_7106612.jpg new file mode 100644 index 0000000..723e223 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806448_51_7106612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0ff4299d4a61ec6e707171d11ba766f805d20c224108094f579b9e8980bb99 +size 446432 diff --git a/datasets/xianshiping/train/images/订单1806449_51_7106451.jpg b/datasets/xianshiping/train/images/订单1806449_51_7106451.jpg new file mode 100644 index 0000000..b982557 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806449_51_7106451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8aa79139b87e886528bf6e26aad238b2d3caf3f5ca30dc3a5bbf06ea4bafac +size 319895 diff --git a/datasets/xianshiping/train/images/订单1806450_51_7106443.jpg b/datasets/xianshiping/train/images/订单1806450_51_7106443.jpg new file mode 100644 index 0000000..02c2901 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806450_51_7106443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6c2fd2a24bf99d07f50f134c3e528454a01f31f1ad169f31524cc0ae43f35e +size 142777 diff --git a/datasets/xianshiping/train/images/订单1806453_51_7106521.jpg b/datasets/xianshiping/train/images/订单1806453_51_7106521.jpg new file mode 100644 index 0000000..8c63c57 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806453_51_7106521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6525c36a0921fc66f97ee240eca6726d0d044eb2ec69e64d43dfd9369eaceda +size 374535 diff --git a/datasets/xianshiping/train/images/订单1806454_51_7106564.jpg b/datasets/xianshiping/train/images/订单1806454_51_7106564.jpg new file mode 100644 index 0000000..906b0e6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806454_51_7106564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229ff673357e860a091c1d07c3f4a579cb08e2657d58b74603ac5d6e82204c60 +size 109283 diff --git a/datasets/xianshiping/train/images/订单1806464_51_7106658.jpg b/datasets/xianshiping/train/images/订单1806464_51_7106658.jpg new file mode 100644 index 0000000..0e7588b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806464_51_7106658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820b164dee694a3319f8f3ebdd4e36f9cab1995fcb005eef12d9d90625d7a1e1 +size 309094 diff --git a/datasets/xianshiping/train/images/订单1806465_51_7106625.jpg b/datasets/xianshiping/train/images/订单1806465_51_7106625.jpg new file mode 100644 index 0000000..9ddfdef --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806465_51_7106625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739e974053d5212d17a328a6c7bc3d571f96152d6b931489e02e1dc877f49165 +size 135149 diff --git a/datasets/xianshiping/train/images/订单1806467_51_7106642.jpg b/datasets/xianshiping/train/images/订单1806467_51_7106642.jpg new file mode 100644 index 0000000..f0c6b09 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806467_51_7106642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c67fa4c37f458c32073f84333ff12b81a7676f487738bb5ec377979b6b2db +size 111911 diff --git a/datasets/xianshiping/train/images/订单1806468_51_7106712.jpg b/datasets/xianshiping/train/images/订单1806468_51_7106712.jpg new file mode 100644 index 0000000..9485bb4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806468_51_7106712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be1c45241819a990f6c271fef5c843b851efe694bd7aa57aebc372bb2e11a95 +size 155619 diff --git a/datasets/xianshiping/train/images/订单1806470_51_7106702.jpg b/datasets/xianshiping/train/images/订单1806470_51_7106702.jpg new file mode 100644 index 0000000..a882885 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806470_51_7106702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56bed53790a4e4b78db54a33935f51a91d9a5ad05ab31946004fe75bf3b198a2 +size 109260 diff --git a/datasets/xianshiping/train/images/订单1806471_51_7106669.jpg b/datasets/xianshiping/train/images/订单1806471_51_7106669.jpg new file mode 100644 index 0000000..2edafde --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806471_51_7106669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a94512a2da7c6770a99f8f923922f00962d78aab8911b59890a50b1acd024d7 +size 113487 diff --git a/datasets/xianshiping/train/images/订单1806476_51_7106691.jpg b/datasets/xianshiping/train/images/订单1806476_51_7106691.jpg new file mode 100644 index 0000000..e29a039 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806476_51_7106691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416c610c05ac6f181604d0a0cfe671d6e1cab2f7b2d4c31897b2fa8052c205a8 +size 426411 diff --git a/datasets/xianshiping/train/images/订单1806477_51_7106810.jpg b/datasets/xianshiping/train/images/订单1806477_51_7106810.jpg new file mode 100644 index 0000000..7f7abbc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806477_51_7106810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d78c27d7cd0820a95d133b6df2290c8262ecf6f4ab7034dc70d83ce290e1c91 +size 290534 diff --git a/datasets/xianshiping/train/images/订单1806479_51_7106769.jpg b/datasets/xianshiping/train/images/订单1806479_51_7106769.jpg new file mode 100644 index 0000000..2585539 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806479_51_7106769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb0298d4d6ea627735de55199e38673f4a17c8f948bb23fce471374dbc65b81 +size 111339 diff --git a/datasets/xianshiping/train/images/订单1806481_51_7106776.jpg b/datasets/xianshiping/train/images/订单1806481_51_7106776.jpg new file mode 100644 index 0000000..737bb23 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806481_51_7106776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b753260688809fcb4920e76c83b25ac6160bb252dc6309ecb766b8f0375d4a +size 81620 diff --git a/datasets/xianshiping/train/images/订单1806482_51_7106783.jpg b/datasets/xianshiping/train/images/订单1806482_51_7106783.jpg new file mode 100644 index 0000000..491eb8f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806482_51_7106783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d87926a23ffba8c590e71c06b7e731a574bae8d15e0b3cc4e8e407dad7a5c0 +size 115629 diff --git a/datasets/xianshiping/train/images/订单1806483_51_7106799.jpg b/datasets/xianshiping/train/images/订单1806483_51_7106799.jpg new file mode 100644 index 0000000..c761f4b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806483_51_7106799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f18a2d3686f1ed4344e6ebf6eae6f89620e877dc99ff0064f552fdb86d25a35 +size 89487 diff --git a/datasets/xianshiping/train/images/订单1806487_51_7106855.jpg b/datasets/xianshiping/train/images/订单1806487_51_7106855.jpg new file mode 100644 index 0000000..70a1d5e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806487_51_7106855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8839c6c589dd49916212cd83b655fb99631254f259e34a4a7583204a117c38 +size 113652 diff --git a/datasets/xianshiping/train/images/订单1806488_51_7106871.jpg b/datasets/xianshiping/train/images/订单1806488_51_7106871.jpg new file mode 100644 index 0000000..599642b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806488_51_7106871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea2219355b223dd2a51246acaac1f6f6f41ecc2fa4ddec3e4c28e3f754bc69f +size 154292 diff --git a/datasets/xianshiping/train/images/订单1806490_51_7106897.jpg b/datasets/xianshiping/train/images/订单1806490_51_7106897.jpg new file mode 100644 index 0000000..aa8209d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806490_51_7106897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e4a6181851271d444d0e54792475b956ed4fe2cc2b8e34921bb1d7e91c7f24 +size 320636 diff --git a/datasets/xianshiping/train/images/订单1806491_51_7106887.jpg b/datasets/xianshiping/train/images/订单1806491_51_7106887.jpg new file mode 100644 index 0000000..55ee5ad --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806491_51_7106887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139656292a2cc0b94545fb10318614c7d53ac655009bc7e9fe14280ec4fa93e4 +size 120769 diff --git a/datasets/xianshiping/train/images/订单1806493_51_7106927.jpg b/datasets/xianshiping/train/images/订单1806493_51_7106927.jpg new file mode 100644 index 0000000..f463f19 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806493_51_7106927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ae44f1fceca0ea46069ed3381142c65275a5e270644e02985bdf99efe1c38f +size 97304 diff --git a/datasets/xianshiping/train/images/订单1806494_51_7106920.jpg b/datasets/xianshiping/train/images/订单1806494_51_7106920.jpg new file mode 100644 index 0000000..6c6e51d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806494_51_7106920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da759adc4f248da7132b015c444d9398ce0e942770c1bcc4edf2856454f5f23 +size 180795 diff --git a/datasets/xianshiping/train/images/订单1806495_51_7106942.jpg b/datasets/xianshiping/train/images/订单1806495_51_7106942.jpg new file mode 100644 index 0000000..c3065d5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806495_51_7106942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d068524304569e24cf53e05b0e751e4bd3718d6589988dd2f454aa1cd010f76 +size 103838 diff --git a/datasets/xianshiping/train/images/订单1806498_51_7106986.jpg b/datasets/xianshiping/train/images/订单1806498_51_7106986.jpg new file mode 100644 index 0000000..32f8ba0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806498_51_7106986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b7e86ed21f3291585cf927784fafe58cc191da891096240fb087a24a89c91b +size 645835 diff --git a/datasets/xianshiping/train/images/订单1806499_51_7106958.jpg b/datasets/xianshiping/train/images/订单1806499_51_7106958.jpg new file mode 100644 index 0000000..c51b36a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806499_51_7106958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42d10487e13d78fc980e72a008e95ba17d0479a28d0970bbe4a2af196adc745 +size 147931 diff --git a/datasets/xianshiping/train/images/订单1806501_51_7106971.jpg b/datasets/xianshiping/train/images/订单1806501_51_7106971.jpg new file mode 100644 index 0000000..f835bfe --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806501_51_7106971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a9255e687b34da6e2b1634a8b2d86359703f44d8f288ee005d5da050446b86 +size 123772 diff --git a/datasets/xianshiping/train/images/订单1806502_51_7107001.jpg b/datasets/xianshiping/train/images/订单1806502_51_7107001.jpg new file mode 100644 index 0000000..b1ee69d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806502_51_7107001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6e7ee812ca4dd9f815632927011b177112c625289edf44f461cbdf2c2154c4 +size 198919 diff --git a/datasets/xianshiping/train/images/订单1806504_51_7107026.jpg b/datasets/xianshiping/train/images/订单1806504_51_7107026.jpg new file mode 100644 index 0000000..30047da --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806504_51_7107026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480cdbce8662e56fe338ea89799321962b0b7023708187bc53a935accbaa8074 +size 460819 diff --git a/datasets/xianshiping/train/images/订单1806507_51_7107059.jpg b/datasets/xianshiping/train/images/订单1806507_51_7107059.jpg new file mode 100644 index 0000000..812fc77 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806507_51_7107059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01cd1c4841f0a39d8bfecc6830f650b3c2a43a5aa7ad859c47e492581356a43 +size 137194 diff --git a/datasets/xianshiping/train/images/订单1806511_51_7107090.jpg b/datasets/xianshiping/train/images/订单1806511_51_7107090.jpg new file mode 100644 index 0000000..e4b0864 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806511_51_7107090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15aaf6f4ac6a9ae96626bdaa59347fec072df7ac47c50dba611e752ba75799 +size 127182 diff --git a/datasets/xianshiping/train/images/订单1806513_51_7107909.jpg b/datasets/xianshiping/train/images/订单1806513_51_7107909.jpg new file mode 100644 index 0000000..3c5c2b2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806513_51_7107909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf4a635e4c9192a09d2f0e30aefcd11ec6c9d44cbc04b275361b5cafe16c782 +size 143507 diff --git a/datasets/xianshiping/train/images/订单1806514_51_7107083.jpg b/datasets/xianshiping/train/images/订单1806514_51_7107083.jpg new file mode 100644 index 0000000..617c4b5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806514_51_7107083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3230377df4ae7128e0edb9b8c5acb24b46bc373155cc6d01630318b45021051 +size 543640 diff --git a/datasets/xianshiping/train/images/订单1806515_51_7107133.jpg b/datasets/xianshiping/train/images/订单1806515_51_7107133.jpg new file mode 100644 index 0000000..637410b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806515_51_7107133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ceb66e895834b2e4327299b055f999dc96fa7a284a671cb3afa588fa4b51a8 +size 126857 diff --git a/datasets/xianshiping/train/images/订单1806516_51_7107103.jpg b/datasets/xianshiping/train/images/订单1806516_51_7107103.jpg new file mode 100644 index 0000000..0c7b9b0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806516_51_7107103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c742592ac1b33fd4aa4adeb3ca7e5d66b72b172d99569c9dd672553381cb1e +size 138313 diff --git a/datasets/xianshiping/train/images/订单1806519_51_7107227.jpg b/datasets/xianshiping/train/images/订单1806519_51_7107227.jpg new file mode 100644 index 0000000..f69d159 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806519_51_7107227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a308a2ab5e81e7fda5865a43d56dd1cf6fee591244c54cfb46dd7ed1ff9168 +size 154619 diff --git a/datasets/xianshiping/train/images/订单1806522_51_7107184.jpg b/datasets/xianshiping/train/images/订单1806522_51_7107184.jpg new file mode 100644 index 0000000..9438ba5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806522_51_7107184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d080ff12c8ed0c09d09e66673b7820e221fd99fd2d85568639ed023bb81cb4ed +size 243562 diff --git a/datasets/xianshiping/train/images/订单1806523_51_7107175.jpg b/datasets/xianshiping/train/images/订单1806523_51_7107175.jpg new file mode 100644 index 0000000..9872102 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806523_51_7107175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d8716b02491ec82430072acc9914053e2524ad64743a689912cd4cf5bf5116 +size 586763 diff --git a/datasets/xianshiping/train/images/订单1806524_51_7107203.jpg b/datasets/xianshiping/train/images/订单1806524_51_7107203.jpg new file mode 100644 index 0000000..4015879 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806524_51_7107203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75fd36f51061f30579c73e74aaef747a9d49c67fc6643e428ddf42b2a1ca5bb +size 124796 diff --git a/datasets/xianshiping/train/images/订单1806526_51_7107134.jpg b/datasets/xianshiping/train/images/订单1806526_51_7107134.jpg new file mode 100644 index 0000000..11e4f41 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806526_51_7107134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611620f280a11ce5b203120d3a2b2fe62576cd0b09f9f728812bcfadfdcb9154 +size 127986 diff --git a/datasets/xianshiping/train/images/订单1806528_51_7107115.jpg b/datasets/xianshiping/train/images/订单1806528_51_7107115.jpg new file mode 100644 index 0000000..93c3503 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806528_51_7107115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9308801a1e6cdcf5937bfd10af59fa28d581efcbe2dcf29074b74ddfcba69a82 +size 117291 diff --git a/datasets/xianshiping/train/images/订单1806536_51_7107277.jpg b/datasets/xianshiping/train/images/订单1806536_51_7107277.jpg new file mode 100644 index 0000000..0f7fa58 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806536_51_7107277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9a8afe921ce349006d9556da24aeea9113311f6b74be86e90b8e1b84b9f70c +size 176812 diff --git a/datasets/xianshiping/train/images/订单1806541_51_7107482.jpg b/datasets/xianshiping/train/images/订单1806541_51_7107482.jpg new file mode 100644 index 0000000..30eb3fa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806541_51_7107482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba86317ac2710444e10d64512849811f65c1bf7e9f6297b08964e1f420b6475 +size 144287 diff --git a/datasets/xianshiping/train/images/订单1806543_51_7107285.jpg b/datasets/xianshiping/train/images/订单1806543_51_7107285.jpg new file mode 100644 index 0000000..bc09c99 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806543_51_7107285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a4e6da827930f29f4c8824f95c9979966b4d0b03408edfa743f70f765c2131 +size 118932 diff --git a/datasets/xianshiping/train/images/订单1806544_51_7107363.jpg b/datasets/xianshiping/train/images/订单1806544_51_7107363.jpg new file mode 100644 index 0000000..b6aab21 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806544_51_7107363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad3ebdd56da1f2065a878fc4cf1c9e379db948d1aa3985f4b74b1d2f5729169 +size 125251 diff --git a/datasets/xianshiping/train/images/订单1806545_51_7107289.jpg b/datasets/xianshiping/train/images/订单1806545_51_7107289.jpg new file mode 100644 index 0000000..577e433 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806545_51_7107289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ea3aca9e423732fc07b58c4f61d4744db473b594c20dac1909206cfe2f7445 +size 92028 diff --git a/datasets/xianshiping/train/images/订单1806548_51_7107271.jpg b/datasets/xianshiping/train/images/订单1806548_51_7107271.jpg new file mode 100644 index 0000000..4cec398 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806548_51_7107271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79992bbc833e278967d9077992229771e93ecb47ad724ccc6fae26404a396260 +size 150610 diff --git a/datasets/xianshiping/train/images/订单1806552_51_7107273.jpg b/datasets/xianshiping/train/images/订单1806552_51_7107273.jpg new file mode 100644 index 0000000..2d784fd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806552_51_7107273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005e4e09d12e67ecef0bab78afd0671d807772283164cfb8ce6c3cb638d81d8d +size 411001 diff --git a/datasets/xianshiping/train/images/订单1806555_51_7107321.jpg b/datasets/xianshiping/train/images/订单1806555_51_7107321.jpg new file mode 100644 index 0000000..8de43c2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806555_51_7107321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c8e97fbfa34ef0b9406f3ddd1f093f1964329c3b6c3ca9a883d1c0263b9c00 +size 106654 diff --git a/datasets/xianshiping/train/images/订单1806560_51_7107355.jpg b/datasets/xianshiping/train/images/订单1806560_51_7107355.jpg new file mode 100644 index 0000000..2ce9263 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806560_51_7107355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b79820f91f61761302fa46527e52bfb20ea8dc5b27cffb1dbb5ce0d9af2e7c4 +size 116631 diff --git a/datasets/xianshiping/train/images/订单1806561_51_7107346.jpg b/datasets/xianshiping/train/images/订单1806561_51_7107346.jpg new file mode 100644 index 0000000..408da2e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806561_51_7107346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9488ce2a31ca445d018fd1efcff26fe076fa44ce01977b2f998bf851f23bbd +size 134051 diff --git a/datasets/xianshiping/train/images/订单1806563_51_7107441.jpg b/datasets/xianshiping/train/images/订单1806563_51_7107441.jpg new file mode 100644 index 0000000..390db5a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806563_51_7107441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5008fa9827e7defbd8d5083f53ae5db0f28d9bb1b59266ce81b07ab0d9cecfe6 +size 171979 diff --git a/datasets/xianshiping/train/images/订单1806566_51_7107507.jpg b/datasets/xianshiping/train/images/订单1806566_51_7107507.jpg new file mode 100644 index 0000000..0866589 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806566_51_7107507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0e0d8b9d40b3752757733f45cdd90d18abbc57cccb870bbfad658928ea3fe1 +size 565003 diff --git a/datasets/xianshiping/train/images/订单1806567_51_7107454.jpg b/datasets/xianshiping/train/images/订单1806567_51_7107454.jpg new file mode 100644 index 0000000..6d5c144 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806567_51_7107454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60920c8190018ed05ce3a340ed8fd929aec154d1c35db796f76858a420ae0e +size 110665 diff --git a/datasets/xianshiping/train/images/订单1806568_51_7107451.jpg b/datasets/xianshiping/train/images/订单1806568_51_7107451.jpg new file mode 100644 index 0000000..00c892e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806568_51_7107451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5774e5a32349979377f5ffe07d4ac562973939fd770ecd6af94c6d687d8d9c84 +size 440477 diff --git a/datasets/xianshiping/train/images/订单1806570_51_7107513.jpg b/datasets/xianshiping/train/images/订单1806570_51_7107513.jpg new file mode 100644 index 0000000..51e7a81 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806570_51_7107513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc74e7893d46d5639c9d0b8d80624ce4bf3e6ebcb80b820dc1279b76207c743b +size 105463 diff --git a/datasets/xianshiping/train/images/订单1806578_51_7107558.jpg b/datasets/xianshiping/train/images/订单1806578_51_7107558.jpg new file mode 100644 index 0000000..e6660d9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806578_51_7107558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128f4d1b0723b380badcee8231f2bcbc834f78bcff0c235393bde1f713e69e23 +size 423949 diff --git a/datasets/xianshiping/train/images/订单1806583_51_7108508.jpg b/datasets/xianshiping/train/images/订单1806583_51_7108508.jpg new file mode 100644 index 0000000..8542daf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806583_51_7108508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162223a73a74f2786466b18f826289365db84dedf949a5203375fa92dd3a899e +size 515021 diff --git a/datasets/xianshiping/train/images/订单1806589_51_7107638.jpg b/datasets/xianshiping/train/images/订单1806589_51_7107638.jpg new file mode 100644 index 0000000..13c4005 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806589_51_7107638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34764e02719e27d26eda0e8759e7eed5be7f026f94867ed6a63dd57c39d35c57 +size 754554 diff --git a/datasets/xianshiping/train/images/订单1806596_51_7107765.jpg b/datasets/xianshiping/train/images/订单1806596_51_7107765.jpg new file mode 100644 index 0000000..1425cc8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806596_51_7107765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0657461a7f7e859dee4d2e45c5f4760f8fa013b931330f429be1ec53e32d32 +size 154593 diff --git a/datasets/xianshiping/train/images/订单1806598_51_7107754.jpg b/datasets/xianshiping/train/images/订单1806598_51_7107754.jpg new file mode 100644 index 0000000..00b82c1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806598_51_7107754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f9511c4e125791b3ebebcc3c49470a9cb8ad2b573a8830db9d24555bac0451 +size 400331 diff --git a/datasets/xianshiping/train/images/订单1806600_51_7107938.jpg b/datasets/xianshiping/train/images/订单1806600_51_7107938.jpg new file mode 100644 index 0000000..aacb6c3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806600_51_7107938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2417427037d5de15f79e5de3f1ecd0cb48ff7990ab68f11d10e4acaa43aefe84 +size 89838 diff --git a/datasets/xianshiping/train/images/订单1806601_51_7107745.jpg b/datasets/xianshiping/train/images/订单1806601_51_7107745.jpg new file mode 100644 index 0000000..963b2e8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806601_51_7107745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475a08489af918069d31672cb744a359ab66c01ceb7407c48b06312a4971785c +size 110274 diff --git a/datasets/xianshiping/train/images/订单1806603_51_7107795.jpg b/datasets/xianshiping/train/images/订单1806603_51_7107795.jpg new file mode 100644 index 0000000..50fdafc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806603_51_7107795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5ac42923433d287e526564547038b04795128624e66acccdd8a0eef2f85cda +size 140069 diff --git a/datasets/xianshiping/train/images/订单1806604_51_7107828.jpg b/datasets/xianshiping/train/images/订单1806604_51_7107828.jpg new file mode 100644 index 0000000..921c042 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806604_51_7107828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff484f171259fe552f187d0bf5c481e4e5c2a2813245ab36bc884de25f441b4b +size 113756 diff --git a/datasets/xianshiping/train/images/订单1806607_51_7107900.jpg b/datasets/xianshiping/train/images/订单1806607_51_7107900.jpg new file mode 100644 index 0000000..6c58322 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806607_51_7107900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3a691f3777404553785c1eaf502ec99195860d3d400d2d141097746288b41a +size 132209 diff --git a/datasets/xianshiping/train/images/订单1806610_51_7107834.jpg b/datasets/xianshiping/train/images/订单1806610_51_7107834.jpg new file mode 100644 index 0000000..f867b16 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806610_51_7107834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b159207dc143241dcba50a6a57ed7c4cd84c41b8af3f84f153082526d8eb8cd0 +size 95732 diff --git a/datasets/xianshiping/train/images/订单1806615_51_7107821.jpg b/datasets/xianshiping/train/images/订单1806615_51_7107821.jpg new file mode 100644 index 0000000..6fbd4c6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806615_51_7107821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ffcc5ac3eabdf4287ce01e3036003a9d4a3a3d6ffd19d74bb7094a594ebf62 +size 145844 diff --git a/datasets/xianshiping/train/images/订单1806618_51_7107891.jpg b/datasets/xianshiping/train/images/订单1806618_51_7107891.jpg new file mode 100644 index 0000000..4d1c524 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806618_51_7107891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a52b964776e72bb2991c2ae0cc0faf165f7ec36d6180a1989294b7790ad38cf +size 172819 diff --git a/datasets/xianshiping/train/images/订单1806625_51_7107994.jpg b/datasets/xianshiping/train/images/订单1806625_51_7107994.jpg new file mode 100644 index 0000000..35206ce --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806625_51_7107994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad02d5098b4dacef9a96f9745b3b59772b7cf46cb9ce4589fa8f376d559a533 +size 66618 diff --git a/datasets/xianshiping/train/images/订单1806626_51_7108129.jpg b/datasets/xianshiping/train/images/订单1806626_51_7108129.jpg new file mode 100644 index 0000000..8faae63 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806626_51_7108129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fda4d4853b409c776185511505680d4c69b16496c31a4509d2dd7bc061e94f5 +size 124416 diff --git a/datasets/xianshiping/train/images/订单1806627_51_7108082.jpg b/datasets/xianshiping/train/images/订单1806627_51_7108082.jpg new file mode 100644 index 0000000..10d7df8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806627_51_7108082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9505319f72faa0f12d1eec23d6206ed0ede06fe64e0b6e2db944d2cb9f6741a7 +size 187277 diff --git a/datasets/xianshiping/train/images/订单1806629_51_7108069.jpg b/datasets/xianshiping/train/images/订单1806629_51_7108069.jpg new file mode 100644 index 0000000..7f23d7b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806629_51_7108069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29096fab1cd9dab5097e6e76cb8d1d7c9edbe47421e35d47c37294559a26d20 +size 165510 diff --git a/datasets/xianshiping/train/images/订单1806633_51_7108088.jpg b/datasets/xianshiping/train/images/订单1806633_51_7108088.jpg new file mode 100644 index 0000000..61c4c5b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806633_51_7108088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221d7e8b34a2bc95974048d39ca7e019d1573d9c72436092769e998fb3b7096c +size 631423 diff --git a/datasets/xianshiping/train/images/订单1806638_51_7108131.jpg b/datasets/xianshiping/train/images/订单1806638_51_7108131.jpg new file mode 100644 index 0000000..e4e87c5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806638_51_7108131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8303a09edec9feaedb5ded4f65e416223c438fb0b76a7c65d4b9be5d7f746e +size 133993 diff --git a/datasets/xianshiping/train/images/订单1806640_51_7108162.jpg b/datasets/xianshiping/train/images/订单1806640_51_7108162.jpg new file mode 100644 index 0000000..7fca224 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806640_51_7108162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b88bc2d9d2056314da0703e729a00cad4ed4c743ee67ff5bd0d42e790ef86dd +size 714067 diff --git a/datasets/xianshiping/train/images/订单1806641_51_7108198.jpg b/datasets/xianshiping/train/images/订单1806641_51_7108198.jpg new file mode 100644 index 0000000..a1d0bce --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806641_51_7108198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd64dbafb109fef24f5d03acbab82b05a43883698b2c9bcddce6db3f52899681 +size 121604 diff --git a/datasets/xianshiping/train/images/订单1806643_51_7108281.jpg b/datasets/xianshiping/train/images/订单1806643_51_7108281.jpg new file mode 100644 index 0000000..4d345ec --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806643_51_7108281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debf3cd856975137102003020fcc1f182c0acafbf1bd0b02dfdc287ebdee474b +size 303950 diff --git a/datasets/xianshiping/train/images/订单1806644_51_7108286.jpg b/datasets/xianshiping/train/images/订单1806644_51_7108286.jpg new file mode 100644 index 0000000..28003da --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806644_51_7108286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763c5256ce01e4e6656a71f9e05350bd0ddcc2169267d45130fb8f5688e9e9eb +size 159595 diff --git a/datasets/xianshiping/train/images/订单1806646_51_7108239.jpg b/datasets/xianshiping/train/images/订单1806646_51_7108239.jpg new file mode 100644 index 0000000..19f7e72 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806646_51_7108239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e704a7d20652bf47082961023ceb0023122d0c526d8483519b76556709478a8a +size 128142 diff --git a/datasets/xianshiping/train/images/订单1806647_51_7108252.jpg b/datasets/xianshiping/train/images/订单1806647_51_7108252.jpg new file mode 100644 index 0000000..5210ce7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806647_51_7108252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab58ca6369c3b6af71b1a9cc50f5b4287c1efd04a03a20651df634625e01a608 +size 140159 diff --git a/datasets/xianshiping/train/images/订单1806650_51_7108312.jpg b/datasets/xianshiping/train/images/订单1806650_51_7108312.jpg new file mode 100644 index 0000000..1e3edb2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806650_51_7108312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd45b27d6e28880f41a4b8ba6839c2b3463bb37048eafbaf89748fd24268f56f +size 148586 diff --git a/datasets/xianshiping/train/images/订单1806652_51_7108355.jpg b/datasets/xianshiping/train/images/订单1806652_51_7108355.jpg new file mode 100644 index 0000000..92c85d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806652_51_7108355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83d3fbaf04736d618f66a755c0cfb14c2202868511c5aed4b292f6352155b45 +size 299928 diff --git a/datasets/xianshiping/train/images/订单1806653_51_7108388.jpg b/datasets/xianshiping/train/images/订单1806653_51_7108388.jpg new file mode 100644 index 0000000..ee89484 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806653_51_7108388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69ce9687726ed29576c590154a2495a3f4990ee9ec0d7604b2da665aa95dcc3 +size 102262 diff --git a/datasets/xianshiping/train/images/订单1806654_51_7108342.jpg b/datasets/xianshiping/train/images/订单1806654_51_7108342.jpg new file mode 100644 index 0000000..d9759d5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806654_51_7108342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2224d65382bb493190d185cb5ff7a6d802a98c0a7105d84e801f8c3b7d832bfa +size 407989 diff --git a/datasets/xianshiping/train/images/订单1806655_51_7108343.jpg b/datasets/xianshiping/train/images/订单1806655_51_7108343.jpg new file mode 100644 index 0000000..2fa289a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806655_51_7108343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1f6d90f6b450e8307b91eb8c9e27b728b57698bfa39b576ebcd362fe3dd154 +size 145366 diff --git a/datasets/xianshiping/train/images/订单1806657_51_7108437.jpg b/datasets/xianshiping/train/images/订单1806657_51_7108437.jpg new file mode 100644 index 0000000..97db097 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806657_51_7108437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d831f37f23cf833a4801b565e13af98dff3242e99fb5f2094b18a206ef367518 +size 92376 diff --git a/datasets/xianshiping/train/images/订单1806663_51_7108428.jpg b/datasets/xianshiping/train/images/订单1806663_51_7108428.jpg new file mode 100644 index 0000000..2c27dc8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806663_51_7108428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d05f6e722da1183c08a3c2d289bc209bbf1c36c43f6bc30d99df490f88ec3b +size 99538 diff --git a/datasets/xianshiping/train/images/订单1806664_51_7108447.jpg b/datasets/xianshiping/train/images/订单1806664_51_7108447.jpg new file mode 100644 index 0000000..c89dce1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806664_51_7108447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec236685742f195048e46dc1df24f2b66a850ce2dff19bd48f434fa24fa3402 +size 160207 diff --git a/datasets/xianshiping/train/images/订单1806667_51_7108421.jpg b/datasets/xianshiping/train/images/订单1806667_51_7108421.jpg new file mode 100644 index 0000000..bcc1238 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806667_51_7108421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9947dce7d466e17347bf3859cec07afd07d319e6e6822efee3d9d3c0bba8cec6 +size 117472 diff --git a/datasets/xianshiping/train/images/订单1806672_51_7108598.jpg b/datasets/xianshiping/train/images/订单1806672_51_7108598.jpg new file mode 100644 index 0000000..affa56f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806672_51_7108598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1852a4f9ef55c1b94bf8cb7273b99b0e99286331d0365cf6b0edeb12140ae40 +size 215371 diff --git a/datasets/xianshiping/train/images/订单1806673_51_7108593.jpg b/datasets/xianshiping/train/images/订单1806673_51_7108593.jpg new file mode 100644 index 0000000..9d2dffd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806673_51_7108593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6ece4b08ef1656ebe7c2bac5ddef535590c21893b38b8f2061ebfac1e7e47b +size 220080 diff --git a/datasets/xianshiping/train/images/订单1806676_51_7108594.jpg b/datasets/xianshiping/train/images/订单1806676_51_7108594.jpg new file mode 100644 index 0000000..572bd74 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806676_51_7108594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d811b7c35acea8c7f9a434a4a38f8c49b419ac719d13362cce9d56ca9d40ce6 +size 697254 diff --git a/datasets/xianshiping/train/images/订单1806685_51_7108626.jpg b/datasets/xianshiping/train/images/订单1806685_51_7108626.jpg new file mode 100644 index 0000000..a2b028a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806685_51_7108626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4964ec596e1d184f3f43edea7fe2a484afc592ec33f5367cb4f1982fc2fa7a55 +size 142547 diff --git a/datasets/xianshiping/train/images/订单1806687_51_7108742.jpg b/datasets/xianshiping/train/images/订单1806687_51_7108742.jpg new file mode 100644 index 0000000..9af098b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806687_51_7108742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2340a6c03398618a67ad224a0db00acaa3d4f9c14bc80b174a239b549dae8a +size 172553 diff --git a/datasets/xianshiping/train/images/订单1806688_51_7108719.jpg b/datasets/xianshiping/train/images/订单1806688_51_7108719.jpg new file mode 100644 index 0000000..1a964d3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806688_51_7108719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a25e4a9895c6a5dffa081963331d6d3142777436ef6e8b160960858d3740c4d +size 163105 diff --git a/datasets/xianshiping/train/images/订单1806689_51_7109608.jpg b/datasets/xianshiping/train/images/订单1806689_51_7109608.jpg new file mode 100644 index 0000000..f0e7441 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806689_51_7109608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4565991264f3e2f72eba5e877f3bfd05ca6775712ca951a85cb5e0923895873a +size 192191 diff --git a/datasets/xianshiping/train/images/订单1806693_51_7108727.jpg b/datasets/xianshiping/train/images/订单1806693_51_7108727.jpg new file mode 100644 index 0000000..501cf77 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806693_51_7108727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e36f07a90f855a5f5ce949dfdbde8e161293cbb6374c012642e3e747c0724ad +size 363801 diff --git a/datasets/xianshiping/train/images/订单1806696_51_7108692.jpg b/datasets/xianshiping/train/images/订单1806696_51_7108692.jpg new file mode 100644 index 0000000..0247936 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806696_51_7108692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4b1d191d82ca1a8d5f2d340b9ba284b81b046cc131bf1dea69f76f4ce30a01 +size 129542 diff --git a/datasets/xianshiping/train/images/订单1806701_51_7108770.jpg b/datasets/xianshiping/train/images/订单1806701_51_7108770.jpg new file mode 100644 index 0000000..83458ab --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806701_51_7108770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25344917a0b82fe3627e7fe956f148b5e78b9c6196621f0d8903e924f2e84c48 +size 157720 diff --git a/datasets/xianshiping/train/images/订单1806702_51_7108883.jpg b/datasets/xianshiping/train/images/订单1806702_51_7108883.jpg new file mode 100644 index 0000000..dc84acb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806702_51_7108883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42670c1898e351b70ed16cbe12367c006d5c1e7a2e55a4a7e2b8affc4488dc2a +size 120736 diff --git a/datasets/xianshiping/train/images/订单1806704_51_7108800.jpg b/datasets/xianshiping/train/images/订单1806704_51_7108800.jpg new file mode 100644 index 0000000..2b8b12c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806704_51_7108800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e5b2830aa4fc157c90992614e5a7350271c59b6027900aa251f2882d55c6bf +size 155026 diff --git a/datasets/xianshiping/train/images/订单1806705_51_7109131.jpg b/datasets/xianshiping/train/images/订单1806705_51_7109131.jpg new file mode 100644 index 0000000..d2e1087 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806705_51_7109131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58599303da546dfb2d361d42ef62f3095fa642f93dea08c2d8ee80c993f0d5 +size 144727 diff --git a/datasets/xianshiping/train/images/订单1806707_51_7108960.jpg b/datasets/xianshiping/train/images/订单1806707_51_7108960.jpg new file mode 100644 index 0000000..dfeb323 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806707_51_7108960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607c82b54944be44262a9a652bf82d34aa2eb004923bd31eaff885c817cdd32f +size 575633 diff --git a/datasets/xianshiping/train/images/订单1806710_51_7108866.jpg b/datasets/xianshiping/train/images/订单1806710_51_7108866.jpg new file mode 100644 index 0000000..75596d7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806710_51_7108866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef00b3c007ccacb2111de1c72cf40445dbd320f13c03cdec8eace96257301b64 +size 177510 diff --git a/datasets/xianshiping/train/images/订单1806714_51_7108942.jpg b/datasets/xianshiping/train/images/订单1806714_51_7108942.jpg new file mode 100644 index 0000000..e0956d0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806714_51_7108942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5a8b2339e576f9a63bb6386c21b4f916ab273fb2445a48b63d6a233729df6e +size 299236 diff --git a/datasets/xianshiping/train/images/订单1806715_51_7108921.jpg b/datasets/xianshiping/train/images/订单1806715_51_7108921.jpg new file mode 100644 index 0000000..4ae6b97 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806715_51_7108921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217e269a32998f69c3df4805eceef0e97457e9b287e98211a4939390cf8eac5d +size 239638 diff --git a/datasets/xianshiping/train/images/订单1806724_51_7108964.jpg b/datasets/xianshiping/train/images/订单1806724_51_7108964.jpg new file mode 100644 index 0000000..234c713 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806724_51_7108964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b0b29d72103da328e2bc416b71c0770f592af0f9769096bb358de1fb850040 +size 224935 diff --git a/datasets/xianshiping/train/images/订单1806725_51_7109074.jpg b/datasets/xianshiping/train/images/订单1806725_51_7109074.jpg new file mode 100644 index 0000000..151f649 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806725_51_7109074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b150190982855d7a4668dbb5f8c42f4aad771887a236475a35a50c6596a4ff0a +size 114204 diff --git a/datasets/xianshiping/train/images/订单1806726_51_7109000.jpg b/datasets/xianshiping/train/images/订单1806726_51_7109000.jpg new file mode 100644 index 0000000..73c0cdf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806726_51_7109000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16990ef425c3c5860def782b6dcb6cdafc05306221ac84c2f7622c8641b46ab1 +size 130315 diff --git a/datasets/xianshiping/train/images/订单1806731_51_7109028.jpg b/datasets/xianshiping/train/images/订单1806731_51_7109028.jpg new file mode 100644 index 0000000..3e8a1b8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806731_51_7109028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b3182df15120ff7a32e13154510372596a9503e8e92a51cf254c1b8229333d +size 138284 diff --git a/datasets/xianshiping/train/images/订单1806732_51_7109071.jpg b/datasets/xianshiping/train/images/订单1806732_51_7109071.jpg new file mode 100644 index 0000000..43e3d02 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806732_51_7109071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b8aab9250a819bdad20a49d1e27d3d3bb8cfc738fcd06d210e183e5d3614df +size 527515 diff --git a/datasets/xianshiping/train/images/订单1806735_51_7109159.jpg b/datasets/xianshiping/train/images/订单1806735_51_7109159.jpg new file mode 100644 index 0000000..c39dd86 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806735_51_7109159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33681533b09f3b508341ea74b47fc599695d3c2b8d0ca6f9bf533b56cf834b45 +size 172353 diff --git a/datasets/xianshiping/train/images/订单1806736_51_7109098.jpg b/datasets/xianshiping/train/images/订单1806736_51_7109098.jpg new file mode 100644 index 0000000..53592b2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806736_51_7109098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df432cd292e3d496098ddce7546e148d2a38ff2a2e6771592a2fecb52ead8845 +size 124911 diff --git a/datasets/xianshiping/train/images/订单1806739_51_7109124.jpg b/datasets/xianshiping/train/images/订单1806739_51_7109124.jpg new file mode 100644 index 0000000..53c923e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806739_51_7109124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca92e9b856620c41079cdff58ed24bfaecf9d74e0f62952a01ac92a05fc5ba3 +size 636462 diff --git a/datasets/xianshiping/train/images/订单1806740_51_7109289.jpg b/datasets/xianshiping/train/images/订单1806740_51_7109289.jpg new file mode 100644 index 0000000..df5eb47 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806740_51_7109289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a059540c4fb5913d740e25d8ad237f6dcc5cf84f3d38cec25b5c2ecb028aebd +size 223785 diff --git a/datasets/xianshiping/train/images/订单1806744_51_7109168.jpg b/datasets/xianshiping/train/images/订单1806744_51_7109168.jpg new file mode 100644 index 0000000..a28aac3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806744_51_7109168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2356f368cea4fe5e5b08cd75ccde8f3820eeb33cff10f23fb52b05bcef62eb4b +size 149739 diff --git a/datasets/xianshiping/train/images/订单1806746_51_7109192.jpg b/datasets/xianshiping/train/images/订单1806746_51_7109192.jpg new file mode 100644 index 0000000..76d26d0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806746_51_7109192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa634ead83d52145e140e3faabeb48ca283d795c7fe87674fcbb73d310a6073 +size 165539 diff --git a/datasets/xianshiping/train/images/订单1806748_51_7109280.jpg b/datasets/xianshiping/train/images/订单1806748_51_7109280.jpg new file mode 100644 index 0000000..69e0f86 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806748_51_7109280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee4cd65c002a238c2d45bf4c2a39ac97f310412e13a6189b9f07eb77c476c39 +size 152617 diff --git a/datasets/xianshiping/train/images/订单1806749_51_7109191.jpg b/datasets/xianshiping/train/images/订单1806749_51_7109191.jpg new file mode 100644 index 0000000..ae28d30 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806749_51_7109191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34e827fc452b17f309769ae1735acb2e5627ce46b84e181f78c028d3ac50772 +size 125001 diff --git a/datasets/xianshiping/train/images/订单1806750_51_7109251.jpg b/datasets/xianshiping/train/images/订单1806750_51_7109251.jpg new file mode 100644 index 0000000..33d8347 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806750_51_7109251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88813f189d8c94a08ca80509ce15d5e7987d960e361d91272f82e6a418ddac45 +size 138550 diff --git a/datasets/xianshiping/train/images/订单1806753_51_7109290.jpg b/datasets/xianshiping/train/images/订单1806753_51_7109290.jpg new file mode 100644 index 0000000..e793c66 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806753_51_7109290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad009951fb32e0fdda974b4e03baa58d98116c89de1cb65b76471ff6d788a64d +size 603954 diff --git a/datasets/xianshiping/train/images/订单1806754_51_7109252.jpg b/datasets/xianshiping/train/images/订单1806754_51_7109252.jpg new file mode 100644 index 0000000..19d5895 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806754_51_7109252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096468dc6c1c3704126ec5089c8c6c69950fb8a5e28552bc3f6d8d2f696d5149 +size 155891 diff --git a/datasets/xianshiping/train/images/订单1806757_51_7109352.jpg b/datasets/xianshiping/train/images/订单1806757_51_7109352.jpg new file mode 100644 index 0000000..4313980 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806757_51_7109352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433abde4e3677bc99f048a99cfc9305db3d85309316353a49ef119e8f85ca714 +size 141427 diff --git a/datasets/xianshiping/train/images/订单1806762_51_7109448.jpg b/datasets/xianshiping/train/images/订单1806762_51_7109448.jpg new file mode 100644 index 0000000..28d533a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806762_51_7109448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c8c0536d0947b147afaea5dd24d4b95ddb1e529f42dfcc7583ceaadcab36ad +size 161767 diff --git a/datasets/xianshiping/train/images/订单1806764_51_7109325.jpg b/datasets/xianshiping/train/images/订单1806764_51_7109325.jpg new file mode 100644 index 0000000..60312a3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806764_51_7109325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edb479b28c9affc41237724780ecb9328732cc8daa9926e8ae4e0e23b51437f +size 161570 diff --git a/datasets/xianshiping/train/images/订单1806767_51_7109350.jpg b/datasets/xianshiping/train/images/订单1806767_51_7109350.jpg new file mode 100644 index 0000000..563e8c4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806767_51_7109350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb08ff7a0c94b70c808c679906247f47562f208e4319d774a99ccce089b0844 +size 108083 diff --git a/datasets/xianshiping/train/images/订单1806769_51_7109510.jpg b/datasets/xianshiping/train/images/订单1806769_51_7109510.jpg new file mode 100644 index 0000000..9a9aa90 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806769_51_7109510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b89795f8d373fec43ca6f9c543b44f4ebd45316be8e21fb9538d34c966ce8a6 +size 394321 diff --git a/datasets/xianshiping/train/images/订单1806771_51_7109478.jpg b/datasets/xianshiping/train/images/订单1806771_51_7109478.jpg new file mode 100644 index 0000000..ead6c7b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806771_51_7109478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31587d4117f7839b04a9fe7cd411e4a8ff0afa60d91f1985ef258a616cbbf19a +size 101547 diff --git a/datasets/xianshiping/train/images/订单1806772_51_7109424.jpg b/datasets/xianshiping/train/images/订单1806772_51_7109424.jpg new file mode 100644 index 0000000..634e03c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806772_51_7109424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20d5c07002c2daca2c22c157b6c5db676690557cc18574d317a0bdafb064ad5 +size 85200 diff --git a/datasets/xianshiping/train/images/订单1806773_51_7109531.jpg b/datasets/xianshiping/train/images/订单1806773_51_7109531.jpg new file mode 100644 index 0000000..297508f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806773_51_7109531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0134220521017d2cee648c1a06b8053ec1b1a36971409df330e03124766423ca +size 116987 diff --git a/datasets/xianshiping/train/images/订单1806775_51_7109532.jpg b/datasets/xianshiping/train/images/订单1806775_51_7109532.jpg new file mode 100644 index 0000000..86bccf1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806775_51_7109532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4883d30b1852591e198a94cff2b00095c2527d3a2b5ca359fce33ed222fe2 +size 577346 diff --git a/datasets/xianshiping/train/images/订单1806776_51_7109527.jpg b/datasets/xianshiping/train/images/订单1806776_51_7109527.jpg new file mode 100644 index 0000000..6b5f30d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806776_51_7109527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b905f7d0d55095613b9ba727615aa263700d4c1c21d4f7811047c28eb9a710 +size 116042 diff --git a/datasets/xianshiping/train/images/订单1806779_51_7109619.jpg b/datasets/xianshiping/train/images/订单1806779_51_7109619.jpg new file mode 100644 index 0000000..45896bc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806779_51_7109619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fade0a29dda2474f877d21211e656b0f70b9a5da146e69d5efaf4e069148ad +size 126451 diff --git a/datasets/xianshiping/train/images/订单1806786_51_7109635.jpg b/datasets/xianshiping/train/images/订单1806786_51_7109635.jpg new file mode 100644 index 0000000..f1426de --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806786_51_7109635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8aa8c8c707a64932f2e6acf6045cc654bd92081e095d5c8b50f9056220936a3 +size 197271 diff --git a/datasets/xianshiping/train/images/订单1806790_51_7109654.jpg b/datasets/xianshiping/train/images/订单1806790_51_7109654.jpg new file mode 100644 index 0000000..f3cea3e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806790_51_7109654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122c57ac6ce67f86b0eaea4fc417c3a5d1aad60115db4e0f2c384583d90ee719 +size 444432 diff --git a/datasets/xianshiping/train/images/订单1806799_51_7109764.jpg b/datasets/xianshiping/train/images/订单1806799_51_7109764.jpg new file mode 100644 index 0000000..7f49c47 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806799_51_7109764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afc5ae32631cb90c105b24e6455ffa06401c67520e8edb16c5ffce6a8d40831 +size 312425 diff --git a/datasets/xianshiping/train/images/订单1806804_51_7109816.jpg b/datasets/xianshiping/train/images/订单1806804_51_7109816.jpg new file mode 100644 index 0000000..9853e0e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806804_51_7109816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ede7c5c47b61c3516a4eae1b77ff2670d6d3b64e456800ce8fef8248a7da342 +size 506988 diff --git a/datasets/xianshiping/train/images/订单1806805_51_7109765.jpg b/datasets/xianshiping/train/images/订单1806805_51_7109765.jpg new file mode 100644 index 0000000..7fcd130 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806805_51_7109765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f7213ff157e1d5a033ab3ebf9e1b884d78aecac167f358eb235a087baeb9cf +size 546459 diff --git a/datasets/xianshiping/train/images/订单1806807_51_7110016.jpg b/datasets/xianshiping/train/images/订单1806807_51_7110016.jpg new file mode 100644 index 0000000..f8681c4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806807_51_7110016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dafd77da4544b4c75c68b88da806f3f7c4fa4e343cc10c69f8c21b0d8f721c19 +size 1292168 diff --git a/datasets/xianshiping/train/images/订单1806810_51_7110036.jpg b/datasets/xianshiping/train/images/订单1806810_51_7110036.jpg new file mode 100644 index 0000000..8895b7e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806810_51_7110036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86720952448f4764ccbce0564512718935143894c0437cbfae79e5765fea405e +size 88937 diff --git a/datasets/xianshiping/train/images/订单1806812_51_7109968.jpg b/datasets/xianshiping/train/images/订单1806812_51_7109968.jpg new file mode 100644 index 0000000..e084eb6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806812_51_7109968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab3c5e76086a4dc871daac73757ba81e016c10621f828bdeca787c73b1487b4 +size 106362 diff --git a/datasets/xianshiping/train/images/订单1806813_51_7109962.jpg b/datasets/xianshiping/train/images/订单1806813_51_7109962.jpg new file mode 100644 index 0000000..2e41f2e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806813_51_7109962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c805e3040fd38f23de4ca2b07c63fd96902e932c9049fe6b92b9fa1bb409a +size 327450 diff --git a/datasets/xianshiping/train/images/订单1806819_51_7109971.jpg b/datasets/xianshiping/train/images/订单1806819_51_7109971.jpg new file mode 100644 index 0000000..5833cf5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806819_51_7109971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6ba81d09dcbc97bc1f6edee1455faff48d2fc92917fd7594805e24b4b4e656 +size 374953 diff --git a/datasets/xianshiping/train/images/订单1806820_51_7110176.jpg b/datasets/xianshiping/train/images/订单1806820_51_7110176.jpg new file mode 100644 index 0000000..6ef4506 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806820_51_7110176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab3d5064915e917c86210eabc274f2ffc079deafd432dff56f4d360ec8ed96e +size 376305 diff --git a/datasets/xianshiping/train/images/订单1806821_51_7109957.jpg b/datasets/xianshiping/train/images/订单1806821_51_7109957.jpg new file mode 100644 index 0000000..9c8788c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806821_51_7109957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e10cf060ca0717b46b6e0fe11650397848ec77ce10dca2486b58edde6040cb3 +size 131525 diff --git a/datasets/xianshiping/train/images/订单1806822_51_7109905.jpg b/datasets/xianshiping/train/images/订单1806822_51_7109905.jpg new file mode 100644 index 0000000..86344d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806822_51_7109905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db53dc49add65564e998532378cdccff229d353702d33bd0103a9f6aec434d56 +size 123356 diff --git a/datasets/xianshiping/train/images/订单1806823_51_7109926.jpg b/datasets/xianshiping/train/images/订单1806823_51_7109926.jpg new file mode 100644 index 0000000..b834869 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806823_51_7109926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78332d3f2a72aad7b52616f42d648a633e7a8fd2a7b9acf2e134ea3d9c85907 +size 349680 diff --git a/datasets/xianshiping/train/images/订单1806827_51_7110069.jpg b/datasets/xianshiping/train/images/订单1806827_51_7110069.jpg new file mode 100644 index 0000000..2035172 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806827_51_7110069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dda9ab09d368b72a346850b6c09a7a4fbb3095249de281612a109416490161 +size 375469 diff --git a/datasets/xianshiping/train/images/订单1806828_51_7110021.jpg b/datasets/xianshiping/train/images/订单1806828_51_7110021.jpg new file mode 100644 index 0000000..5115212 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806828_51_7110021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc769447560ea5d72e62d8f6089d63d662b40004a48a9734dbc54c75e9a9f762 +size 113244 diff --git a/datasets/xianshiping/train/images/订单1806829_51_7110060.jpg b/datasets/xianshiping/train/images/订单1806829_51_7110060.jpg new file mode 100644 index 0000000..4bc4c8f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806829_51_7110060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a8acc2d482d0ddce6151397e2a17f22aa8e25d3519b2b5c9340dd41cfbfb23 +size 132789 diff --git a/datasets/xianshiping/train/images/订单1806830_51_7110171.jpg b/datasets/xianshiping/train/images/订单1806830_51_7110171.jpg new file mode 100644 index 0000000..14f6f42 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806830_51_7110171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740a482db4eccbb8adf1d51c0c80813027ce3f733d865aaf21a67527759444f6 +size 400561 diff --git a/datasets/xianshiping/train/images/订单1806832_51_7110070.jpg b/datasets/xianshiping/train/images/订单1806832_51_7110070.jpg new file mode 100644 index 0000000..ea4d6aa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806832_51_7110070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b31525ceced13c9c02e502e9d3233977c5015530b14fc0de27ddc1dcf32885 +size 95456 diff --git a/datasets/xianshiping/train/images/订单1806834_51_7110088.jpg b/datasets/xianshiping/train/images/订单1806834_51_7110088.jpg new file mode 100644 index 0000000..5358d2d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806834_51_7110088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310165f88351c013e046825389dc4539cffc2bc1e9e5f830de66df3c9a168f3d +size 276238 diff --git a/datasets/xianshiping/train/images/订单1806836_51_7110123.jpg b/datasets/xianshiping/train/images/订单1806836_51_7110123.jpg new file mode 100644 index 0000000..6b64fbe --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806836_51_7110123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8cf24f869281f737b41583b012c45d3ca95b72eeb0f2f4e808a20845fadbc0 +size 94494 diff --git a/datasets/xianshiping/train/images/订单1806838_51_7110100.jpg b/datasets/xianshiping/train/images/订单1806838_51_7110100.jpg new file mode 100644 index 0000000..8aa7961 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806838_51_7110100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2faf4fea2ee9eb1ad669b3a3be3be2a1665278c3a2722716a298123edbfd23a3 +size 99435 diff --git a/datasets/xianshiping/train/images/订单1806841_51_7110192.jpg b/datasets/xianshiping/train/images/订单1806841_51_7110192.jpg new file mode 100644 index 0000000..223f19d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806841_51_7110192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f690e7809415885f86376d8ade8b0c6560a34f3ab1a1f1ae4c4f4a9a01ac785 +size 165445 diff --git a/datasets/xianshiping/train/images/订单1806845_51_7110197.jpg b/datasets/xianshiping/train/images/订单1806845_51_7110197.jpg new file mode 100644 index 0000000..d974add --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806845_51_7110197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:342b55a32e40f0fe9a8bf76fe6c15b62cc6b5577e57bc163e9862a11d009c779 +size 484780 diff --git a/datasets/xianshiping/train/images/订单1806849_51_7110264.jpg b/datasets/xianshiping/train/images/订单1806849_51_7110264.jpg new file mode 100644 index 0000000..8504efc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806849_51_7110264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc711c026bfa4ac369d4b2fedda02455782be2252838dc4c4616cda2aea62205 +size 95374 diff --git a/datasets/xianshiping/train/images/订单1806852_51_7110283.jpg b/datasets/xianshiping/train/images/订单1806852_51_7110283.jpg new file mode 100644 index 0000000..31c3945 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806852_51_7110283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12842968131a88312d3860824e501523768122b885b4a1ea3038354045b7057c +size 157815 diff --git a/datasets/xianshiping/train/images/订单1806855_51_7110336.jpg b/datasets/xianshiping/train/images/订单1806855_51_7110336.jpg new file mode 100644 index 0000000..521766f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806855_51_7110336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e477cca7564143a812460fcdcffa3295e1c03a4d9737704e57de6986a94a3b +size 209980 diff --git a/datasets/xianshiping/train/images/订单1806857_51_7110262.jpg b/datasets/xianshiping/train/images/订单1806857_51_7110262.jpg new file mode 100644 index 0000000..233d66b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806857_51_7110262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcc7e4c6d496315d468e10eb9c8a889dd0f710dfa11d967a5d6328625b6592f +size 129119 diff --git a/datasets/xianshiping/train/images/订单1806860_51_7110395.jpg b/datasets/xianshiping/train/images/订单1806860_51_7110395.jpg new file mode 100644 index 0000000..6c62c06 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806860_51_7110395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43065f51453c68edc6a16dc667913a1a9a488e3b77cdf0992e44815d786f8f3 +size 130797 diff --git a/datasets/xianshiping/train/images/订单1806862_51_7110450.jpg b/datasets/xianshiping/train/images/订单1806862_51_7110450.jpg new file mode 100644 index 0000000..fd31628 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806862_51_7110450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049dc6256999b9108a805210c80d7b2caf84629c5c47b15021340c6324894345 +size 145050 diff --git a/datasets/xianshiping/train/images/订单1806863_51_7110471.jpg b/datasets/xianshiping/train/images/订单1806863_51_7110471.jpg new file mode 100644 index 0000000..9b6b8ff --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806863_51_7110471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea741f2f608a70acab9911ade6f8cff7a0738b4882e67b338539453c8a74a19e +size 62339 diff --git a/datasets/xianshiping/train/images/订单1806867_51_7110438.jpg b/datasets/xianshiping/train/images/订单1806867_51_7110438.jpg new file mode 100644 index 0000000..f872ba3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806867_51_7110438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6a802358cfa9a95836d7465e49e662e4ea32dff2bd5df1bdbe10ea2383fbf5 +size 114496 diff --git a/datasets/xianshiping/train/images/订单1806868_51_7110355.jpg b/datasets/xianshiping/train/images/订单1806868_51_7110355.jpg new file mode 100644 index 0000000..3a803a9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806868_51_7110355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfef8738fcae4253490fae800e55472a1958565cb104bb5d95564851b5c65e7 +size 402923 diff --git a/datasets/xianshiping/train/images/订单1806869_51_7110358.jpg b/datasets/xianshiping/train/images/订单1806869_51_7110358.jpg new file mode 100644 index 0000000..129ada1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806869_51_7110358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7057a7feb832bfdd46b0026753b3cb9192543ed8e037c74a0a554d49a1d95107 +size 70552 diff --git a/datasets/xianshiping/train/images/订单1806871_51_7110436.jpg b/datasets/xianshiping/train/images/订单1806871_51_7110436.jpg new file mode 100644 index 0000000..3315aaa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806871_51_7110436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c51b961debcca0bf46bbe5353d18cbf178c96dec76dc66c39ee7b261b9eb363 +size 66021 diff --git a/datasets/xianshiping/train/images/订单1806872_51_7110488.jpg b/datasets/xianshiping/train/images/订单1806872_51_7110488.jpg new file mode 100644 index 0000000..7424f2b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806872_51_7110488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9749f9496dbbbc6bc946451ff23f68c9b1f7d1b134f1f4aa2c49b097469d30 +size 572060 diff --git a/datasets/xianshiping/train/images/订单1806873_51_7110448.jpg b/datasets/xianshiping/train/images/订单1806873_51_7110448.jpg new file mode 100644 index 0000000..de247c5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806873_51_7110448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98efbd563a5e153677f2beda0261948e3e9ab91ca018a2fe263e0603e9c7ab37 +size 133028 diff --git a/datasets/xianshiping/train/images/订单1806876_51_7110528.jpg b/datasets/xianshiping/train/images/订单1806876_51_7110528.jpg new file mode 100644 index 0000000..08e2743 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806876_51_7110528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e4e003db8a812cab443afb85e73cb427c172d3d6c633b3b119f1d44bbe7415 +size 86000 diff --git a/datasets/xianshiping/train/images/订单1806878_51_7110495.jpg b/datasets/xianshiping/train/images/订单1806878_51_7110495.jpg new file mode 100644 index 0000000..844e295 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806878_51_7110495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b35491abdb9a6305d87284ebf86409026c716003e33278603450cfa4e31712 +size 123605 diff --git a/datasets/xianshiping/train/images/订单1806880_51_7110408.jpg b/datasets/xianshiping/train/images/订单1806880_51_7110408.jpg new file mode 100644 index 0000000..44637fd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806880_51_7110408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435445edee6cbfcbe688c6bd56217e016239ecbc42fb705b90eb8097fb1a50cb +size 115748 diff --git a/datasets/xianshiping/train/images/订单1806884_51_7110489.jpg b/datasets/xianshiping/train/images/订单1806884_51_7110489.jpg new file mode 100644 index 0000000..2dfb2a3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806884_51_7110489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8b5ece1fe1676eb42cf552b6926513a4ce98236f50cbc8b82cc6a04dbcd3e9 +size 94754 diff --git a/datasets/xianshiping/train/images/订单1806886_51_7110543.jpg b/datasets/xianshiping/train/images/订单1806886_51_7110543.jpg new file mode 100644 index 0000000..36cc749 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806886_51_7110543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2585248d46e4abce029d74c39e193067ddee07d219892eb528e33beeaaddb87 +size 437808 diff --git a/datasets/xianshiping/train/images/订单1806889_51_7110587.jpg b/datasets/xianshiping/train/images/订单1806889_51_7110587.jpg new file mode 100644 index 0000000..4ec6ef0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806889_51_7110587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f45124a0b6c8be7af7a84ccaaebba59c648bb562e79a0b8ba3317946e2cead +size 123277 diff --git a/datasets/xianshiping/train/images/订单1806890_51_7110633.jpg b/datasets/xianshiping/train/images/订单1806890_51_7110633.jpg new file mode 100644 index 0000000..1e5d218 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806890_51_7110633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43c45f29b5a406eef312f20ce4cd0ce10967821c3a9f5fc1dc0eb1af613d7fc +size 109451 diff --git a/datasets/xianshiping/train/images/订单1806891_51_7110644.jpg b/datasets/xianshiping/train/images/订单1806891_51_7110644.jpg new file mode 100644 index 0000000..51833c8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806891_51_7110644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff16f7b5a163eefdfca999bab2e6da74af75a09d77530c90b2be74707b50215b +size 125719 diff --git a/datasets/xianshiping/train/images/订单1806903_51_7110702.jpg b/datasets/xianshiping/train/images/订单1806903_51_7110702.jpg new file mode 100644 index 0000000..bcc3ecd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806903_51_7110702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3c0e2d5e775dec67347637deed3321c8009739f6e9c6c6142742abdaccdd92 +size 136036 diff --git a/datasets/xianshiping/train/images/订单1806904_51_7110673.jpg b/datasets/xianshiping/train/images/订单1806904_51_7110673.jpg new file mode 100644 index 0000000..ca0d255 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806904_51_7110673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622996f49c3dafaaa45d28ac6b7c9d2359017a05ae1542398164fe312f6ed7a0 +size 92672 diff --git a/datasets/xianshiping/train/images/订单1806905_51_7110728.jpg b/datasets/xianshiping/train/images/订单1806905_51_7110728.jpg new file mode 100644 index 0000000..ba26803 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806905_51_7110728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c462010e5f9310615d2615b03f94739fa574232794f467037ab7310ace01130 +size 313141 diff --git a/datasets/xianshiping/train/images/订单1806907_51_7110712.jpg b/datasets/xianshiping/train/images/订单1806907_51_7110712.jpg new file mode 100644 index 0000000..6d32343 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806907_51_7110712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cc2c4d0626b60606dd0ff61d742c8825a03a0317274a4313bbcdac24f0ac82 +size 87964 diff --git a/datasets/xianshiping/train/images/订单1806909_51_7110711.jpg b/datasets/xianshiping/train/images/订单1806909_51_7110711.jpg new file mode 100644 index 0000000..8443a2b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806909_51_7110711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecd693544f74eb5ebe9ff5f4f6dbf93c9f82687cc6dec88432b1f62f3898bbc +size 214419 diff --git a/datasets/xianshiping/train/images/订单1806912_51_7110756.jpg b/datasets/xianshiping/train/images/订单1806912_51_7110756.jpg new file mode 100644 index 0000000..8bcf557 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806912_51_7110756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a61d0b89b3aa7cf67809a18a899fbe5eba9a949fe33fbaef56aaebf729ec5c +size 126973 diff --git a/datasets/xianshiping/train/images/订单1806913_51_7110893.jpg b/datasets/xianshiping/train/images/订单1806913_51_7110893.jpg new file mode 100644 index 0000000..52bf71d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806913_51_7110893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5e1bbf914cd4e20c1dce6111adde8791c7fbc5277dfbcf0d37b5d62451c55a +size 437040 diff --git a/datasets/xianshiping/train/images/订单1806917_51_7110789.jpg b/datasets/xianshiping/train/images/订单1806917_51_7110789.jpg new file mode 100644 index 0000000..50447c8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806917_51_7110789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871b563bf518c6b62736faf09a79f077c63690305b9b41dc23817ede178c96ea +size 104391 diff --git a/datasets/xianshiping/train/images/订单1806918_51_7110858.jpg b/datasets/xianshiping/train/images/订单1806918_51_7110858.jpg new file mode 100644 index 0000000..419e92e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806918_51_7110858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b5afae11adb5b0c631e13248d8cc1334eb0a7298f696ccf08e160b2cda9de5 +size 126908 diff --git a/datasets/xianshiping/train/images/订单1806921_51_7110938.jpg b/datasets/xianshiping/train/images/订单1806921_51_7110938.jpg new file mode 100644 index 0000000..bc1ad84 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806921_51_7110938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a01cc426b610438917f451a5a2370e785c57ab5a95cb3e23f86f676785b4b1 +size 489590 diff --git a/datasets/xianshiping/train/images/订单1806922_51_7110814.jpg b/datasets/xianshiping/train/images/订单1806922_51_7110814.jpg new file mode 100644 index 0000000..e4afc23 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806922_51_7110814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5bade10fdc50a8fc4d4623ebf50e0f9500384bf7a86d1de73f69387a7e8c5e +size 126093 diff --git a/datasets/xianshiping/train/images/订单1806925_51_7110926.jpg b/datasets/xianshiping/train/images/订单1806925_51_7110926.jpg new file mode 100644 index 0000000..f889892 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806925_51_7110926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3ad27c079da60cd4b5379110ef87302d781786d6a94e7bee00b670ed454a69 +size 459857 diff --git a/datasets/xianshiping/train/images/订单1806926_51_7110876.jpg b/datasets/xianshiping/train/images/订单1806926_51_7110876.jpg new file mode 100644 index 0000000..6a74d7c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806926_51_7110876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f384027b6e5d7d383d657c505ef61556fec57f3c7b8c7fd5bc80b973c2daca12 +size 158123 diff --git a/datasets/xianshiping/train/images/订单1806928_51_7110863.jpg b/datasets/xianshiping/train/images/订单1806928_51_7110863.jpg new file mode 100644 index 0000000..fff2d0e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806928_51_7110863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c5064f0e46e0c31f057c7e44e6e8fb69bcd365f6248e1a39d045a47ec6a249 +size 144119 diff --git a/datasets/xianshiping/train/images/订单1806929_51_7110854.jpg b/datasets/xianshiping/train/images/订单1806929_51_7110854.jpg new file mode 100644 index 0000000..859f7b1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806929_51_7110854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c169dcc34c49a0c8c5ef108740bcaa560e9ed266855b9f8d3c56ce3d60703639 +size 135851 diff --git a/datasets/xianshiping/train/images/订单1806935_51_7111073.jpg b/datasets/xianshiping/train/images/订单1806935_51_7111073.jpg new file mode 100644 index 0000000..670f3b2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806935_51_7111073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837a5e83198f13aa083a79121c531f8aba2027b094ef394513e24cdd75db341a +size 115056 diff --git a/datasets/xianshiping/train/images/订单1806936_51_7110996.jpg b/datasets/xianshiping/train/images/订单1806936_51_7110996.jpg new file mode 100644 index 0000000..130dbf8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806936_51_7110996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024c8f3e547353428ba9367543f5384dda85b89271bc3258b67fb4eb07f0bc9d +size 109173 diff --git a/datasets/xianshiping/train/images/订单1806937_51_7111019.jpg b/datasets/xianshiping/train/images/订单1806937_51_7111019.jpg new file mode 100644 index 0000000..d51b730 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806937_51_7111019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56380fdb4bc48688880ad2de4cbb1e67abb3950488b1b9e83afbc0d2f59cb0a5 +size 115071 diff --git a/datasets/xianshiping/train/images/订单1806938_51_7111055.jpg b/datasets/xianshiping/train/images/订单1806938_51_7111055.jpg new file mode 100644 index 0000000..3f08f53 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806938_51_7111055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d9b28d67d942aad690a1223758f4deaa3b53ffe8565d380972c2766900bc33 +size 234903 diff --git a/datasets/xianshiping/train/images/订单1806942_51_7111056.jpg b/datasets/xianshiping/train/images/订单1806942_51_7111056.jpg new file mode 100644 index 0000000..9357a2c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806942_51_7111056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a743779a8fd6451a7e1c412a0543cdfbaa185136382aff21d86aca76e2f2e114 +size 151081 diff --git a/datasets/xianshiping/train/images/订单1806943_51_7111143.jpg b/datasets/xianshiping/train/images/订单1806943_51_7111143.jpg new file mode 100644 index 0000000..e4558d5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806943_51_7111143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9666c910d71470cc6935c0e2384a97651d2112be92bba744e746b9a867cdb8c +size 125627 diff --git a/datasets/xianshiping/train/images/订单1806944_51_7111099.jpg b/datasets/xianshiping/train/images/订单1806944_51_7111099.jpg new file mode 100644 index 0000000..ddbfca7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806944_51_7111099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c25499b14f7a6c920de5b6c3b74ae9d96297fa631e41be0da1e343a7615806 +size 122642 diff --git a/datasets/xianshiping/train/images/订单1806947_51_7111167.jpg b/datasets/xianshiping/train/images/订单1806947_51_7111167.jpg new file mode 100644 index 0000000..f3cefb7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806947_51_7111167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a8a0064a80226a1cc5d90596189e9f1ce657659f0ed19b4f718acf15ad01f4 +size 127911 diff --git a/datasets/xianshiping/train/images/订单1806951_51_7111144.jpg b/datasets/xianshiping/train/images/订单1806951_51_7111144.jpg new file mode 100644 index 0000000..2b571c8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806951_51_7111144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcea937d5572c9788a806af78f7a0113af04403d9ab25f7eb7fdcd410f3e9179 +size 151696 diff --git a/datasets/xianshiping/train/images/订单1806953_51_7111322.jpg b/datasets/xianshiping/train/images/订单1806953_51_7111322.jpg new file mode 100644 index 0000000..22e10ed --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806953_51_7111322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104961d68a86c8a2cdbf1de6113e8dc7e0320c839b9aedf6178941d0f89c590f +size 123437 diff --git a/datasets/xianshiping/train/images/订单1806954_51_7111215.jpg b/datasets/xianshiping/train/images/订单1806954_51_7111215.jpg new file mode 100644 index 0000000..a0921b3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806954_51_7111215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c9a9b1505307513f0fb2ba30ec6a6e08f5aff8cc0b1a3109fa9d957832a90f +size 96183 diff --git a/datasets/xianshiping/train/images/订单1806959_51_7111293.jpg b/datasets/xianshiping/train/images/订单1806959_51_7111293.jpg new file mode 100644 index 0000000..0434cc2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806959_51_7111293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c0f68bc65ea0240e8dfb684a542c07d835e50447def61655d4d47530227b0b +size 80300 diff --git a/datasets/xianshiping/train/images/订单1806961_51_7111241.jpg b/datasets/xianshiping/train/images/订单1806961_51_7111241.jpg new file mode 100644 index 0000000..9bf049f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806961_51_7111241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a30d1d12d485f9594be3af086f2483010575f333c9920899283b0fbd6542e8 +size 166163 diff --git a/datasets/xianshiping/train/images/订单1806967_51_7111257.jpg b/datasets/xianshiping/train/images/订单1806967_51_7111257.jpg new file mode 100644 index 0000000..8441bb5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806967_51_7111257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704b64c90fca0d83873d57847dbef7441db4ae73fac9ccbda1b2519587ab2863 +size 118699 diff --git a/datasets/xianshiping/train/images/订单1806969_51_7111294.jpg b/datasets/xianshiping/train/images/订单1806969_51_7111294.jpg new file mode 100644 index 0000000..1f635d4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806969_51_7111294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d300eaa3546de85b3eb46c79d1d74e25e2698fe933df7017b1b1100e8eaec7 +size 266423 diff --git a/datasets/xianshiping/train/images/订单1806972_51_7111358.jpg b/datasets/xianshiping/train/images/订单1806972_51_7111358.jpg new file mode 100644 index 0000000..742c57b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806972_51_7111358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631bb7307b86dd68ecda7305646b0fd5cfce5846ed47524d1345891be1dff14d +size 627627 diff --git a/datasets/xianshiping/train/images/订单1806973_51_7111443.jpg b/datasets/xianshiping/train/images/订单1806973_51_7111443.jpg new file mode 100644 index 0000000..5e7617a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806973_51_7111443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d3352703ba76fb240964f5f2d72419d396cfbcc8c9febf6100375739567ff8 +size 307049 diff --git a/datasets/xianshiping/train/images/订单1806981_51_7111413.jpg b/datasets/xianshiping/train/images/订单1806981_51_7111413.jpg new file mode 100644 index 0000000..a3fea9b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806981_51_7111413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e5dadaa8c6d3909a431c53229bcd4dae6092bd8ebae553746e2bd396f58df8 +size 116346 diff --git a/datasets/xianshiping/train/images/订单1806982_51_7111416.jpg b/datasets/xianshiping/train/images/订单1806982_51_7111416.jpg new file mode 100644 index 0000000..724cea5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806982_51_7111416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea221639576a1d791dde26a31e38072e12d04ac48d7d046c75ebecde05ae03f +size 109825 diff --git a/datasets/xianshiping/train/images/订单1806984_51_7111472.jpg b/datasets/xianshiping/train/images/订单1806984_51_7111472.jpg new file mode 100644 index 0000000..f9ebbac --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806984_51_7111472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef469b0f39196a7e6432b4b9c957ed749656d122bc85cb5f669edabb2026093 +size 190559 diff --git a/datasets/xianshiping/train/images/订单1806987_51_7111464.jpg b/datasets/xianshiping/train/images/订单1806987_51_7111464.jpg new file mode 100644 index 0000000..9f0ee76 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806987_51_7111464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3dbee4bec714c02545345e05866b160afe1fc8f5d1e10fb66b4372a8d03a3d +size 103508 diff --git a/datasets/xianshiping/train/images/订单1806988_51_7111491.jpg b/datasets/xianshiping/train/images/订单1806988_51_7111491.jpg new file mode 100644 index 0000000..b846be5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806988_51_7111491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c08c5240cc527af5064bf5410eb87b794943ff112ca1ec6e473490e179fc035 +size 121550 diff --git a/datasets/xianshiping/train/images/订单1806990_51_7111507.jpg b/datasets/xianshiping/train/images/订单1806990_51_7111507.jpg new file mode 100644 index 0000000..43cb5ba --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806990_51_7111507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0825ac5e023145f439b01d512a6d5cc4766965df467725cbe90902361d3deac +size 120669 diff --git a/datasets/xianshiping/train/images/订单1806991_51_7111532.jpg b/datasets/xianshiping/train/images/订单1806991_51_7111532.jpg new file mode 100644 index 0000000..3c955ba --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806991_51_7111532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8c72578f14c81e03965ff49e1a5ee28231cda8a41ab58659d0292fc217effb +size 108137 diff --git a/datasets/xianshiping/train/images/订单1806992_51_7111542.jpg b/datasets/xianshiping/train/images/订单1806992_51_7111542.jpg new file mode 100644 index 0000000..18487f6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806992_51_7111542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540b41946746d30a28b8a2aa9c6e533ce7199c35d8ddc3e8bdf1a582c634664d +size 116903 diff --git a/datasets/xianshiping/train/images/订单1806994_51_7111560.jpg b/datasets/xianshiping/train/images/订单1806994_51_7111560.jpg new file mode 100644 index 0000000..3393365 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806994_51_7111560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b5f514aca1c6fe041f27ddaa3c531fa9171f665bdbf065cdc593b9b50ee5a2 +size 128522 diff --git a/datasets/xianshiping/train/images/订单1806996_51_7111579.jpg b/datasets/xianshiping/train/images/订单1806996_51_7111579.jpg new file mode 100644 index 0000000..fac72db --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806996_51_7111579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dbc159b2b02bfe99d3dfca6e42fd7cd524ba2ddc500fe67323d815c164a6d7 +size 113245 diff --git a/datasets/xianshiping/train/images/订单1806997_51_7111589.jpg b/datasets/xianshiping/train/images/订单1806997_51_7111589.jpg new file mode 100644 index 0000000..8cc6241 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1806997_51_7111589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7c06791e0b2665acab8a794ca6c0015daa3ba1f0f2082d250c9076fb0f871f +size 171780 diff --git a/datasets/xianshiping/train/images/订单1807000_51_7111608.jpg b/datasets/xianshiping/train/images/订单1807000_51_7111608.jpg new file mode 100644 index 0000000..d620beb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807000_51_7111608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60666fbb2759dd343c8a1cd168a609382d5abefac9905740dda4c20960eb3f4 +size 111513 diff --git a/datasets/xianshiping/train/images/订单1807001_51_7111603.jpg b/datasets/xianshiping/train/images/订单1807001_51_7111603.jpg new file mode 100644 index 0000000..b5dbfcd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807001_51_7111603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24671f3d1b77141486e7ba729e3e7eb65fe264459afa5251e91bbec7b9851945 +size 119175 diff --git a/datasets/xianshiping/train/images/订单1807006_51_7111644.jpg b/datasets/xianshiping/train/images/订单1807006_51_7111644.jpg new file mode 100644 index 0000000..3f1e589 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807006_51_7111644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a225681b791c5839dcbf90f0f97e295fd88cec79788d59cf04df4cac67c0ae48 +size 149996 diff --git a/datasets/xianshiping/train/images/订单1807008_51_7113981.jpg b/datasets/xianshiping/train/images/订单1807008_51_7113981.jpg new file mode 100644 index 0000000..c8abaca --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807008_51_7113981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9730eb83d8442af00840a94062f8434e85d5c4288fdcdc2122b6609ac365a972 +size 88848 diff --git a/datasets/xianshiping/train/images/订单1807010_51_7111695.jpg b/datasets/xianshiping/train/images/订单1807010_51_7111695.jpg new file mode 100644 index 0000000..3c59d8d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807010_51_7111695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4932a5d8e04aec9cfdcdbe604e97cf0e4f7e0e7ca6f9f275829a0bd006855f70 +size 252445 diff --git a/datasets/xianshiping/train/images/订单1807011_51_7111704.jpg b/datasets/xianshiping/train/images/订单1807011_51_7111704.jpg new file mode 100644 index 0000000..b65cc0c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807011_51_7111704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e9ee80f163a58f4df240c0d5b7c38537d23f4a70ff76608522b760c249a2f9 +size 160549 diff --git a/datasets/xianshiping/train/images/订单1807012_51_7111662.jpg b/datasets/xianshiping/train/images/订单1807012_51_7111662.jpg new file mode 100644 index 0000000..d584460 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807012_51_7111662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a301b93452eb39721efebe153dd25592d320636e7d7e3dbbb00128966d60829 +size 126394 diff --git a/datasets/xianshiping/train/images/订单1807014_51_7111680.jpg b/datasets/xianshiping/train/images/订单1807014_51_7111680.jpg new file mode 100644 index 0000000..3f45386 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807014_51_7111680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3648ac313e8e0bd1c99b96c405fd011272f0fd64b920814349dbd9b17c36bc82 +size 135444 diff --git a/datasets/xianshiping/train/images/订单1807017_51_7111731.jpg b/datasets/xianshiping/train/images/订单1807017_51_7111731.jpg new file mode 100644 index 0000000..1dfaf82 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807017_51_7111731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cd708d521c8351c7ae708a45d01a5c9d3aa8f26dc02c78ba3502541e2e066b +size 126303 diff --git a/datasets/xianshiping/train/images/订单1807020_51_7111739.jpg b/datasets/xianshiping/train/images/订单1807020_51_7111739.jpg new file mode 100644 index 0000000..ab35448 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807020_51_7111739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b2d7edc4c386b5e6d58cff4a344cb430fab95cf1251c0231682bc039d897cd +size 104705 diff --git a/datasets/xianshiping/train/images/订单1807021_51_7111752.jpg b/datasets/xianshiping/train/images/订单1807021_51_7111752.jpg new file mode 100644 index 0000000..e892e26 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807021_51_7111752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cee2b6517ac602d4bf344d4c67df66a0ed9cfa8ea01df34fac710a804dfde6 +size 44097 diff --git a/datasets/xianshiping/train/images/订单1807024_51_7111799.jpg b/datasets/xianshiping/train/images/订单1807024_51_7111799.jpg new file mode 100644 index 0000000..84b621b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807024_51_7111799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166d63d825165c8b8bf5b5965c8fc37f971a730b6ca387a527ec0bbd1eb32332 +size 101195 diff --git a/datasets/xianshiping/train/images/订单1807025_51_7111816.jpg b/datasets/xianshiping/train/images/订单1807025_51_7111816.jpg new file mode 100644 index 0000000..8318abd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807025_51_7111816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbe396430c161560feac154d9aa35ea32ea201154d9e142b5c26f4598ca90cc +size 121411 diff --git a/datasets/xianshiping/train/images/订单1807028_51_7111855.jpg b/datasets/xianshiping/train/images/订单1807028_51_7111855.jpg new file mode 100644 index 0000000..818311c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807028_51_7111855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d82a9cfb7c11fa58cd840219f2d36a865ff8a9196698c2b42eee124be142052 +size 156294 diff --git a/datasets/xianshiping/train/images/订单1807033_51_7111848.jpg b/datasets/xianshiping/train/images/订单1807033_51_7111848.jpg new file mode 100644 index 0000000..223a065 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807033_51_7111848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d07bcda40f9318701a9638ab5f829f7a04e813cac2da8a085e7a855c18bbf0 +size 536698 diff --git a/datasets/xianshiping/train/images/订单1807034_51_7111852.jpg b/datasets/xianshiping/train/images/订单1807034_51_7111852.jpg new file mode 100644 index 0000000..a101d89 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807034_51_7111852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac0819fde86b2f77fe9de294ebe6f0a3452007c97b82be55055d739b611bba5 +size 362750 diff --git a/datasets/xianshiping/train/images/订单1807036_51_7111866.jpg b/datasets/xianshiping/train/images/订单1807036_51_7111866.jpg new file mode 100644 index 0000000..2c92bed --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807036_51_7111866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196c1d8b24c7d5e99565b3b2ea8c9ebdb48b9804986478033a007b575ccd26f2 +size 154643 diff --git a/datasets/xianshiping/train/images/订单1807039_51_7111877.jpg b/datasets/xianshiping/train/images/订单1807039_51_7111877.jpg new file mode 100644 index 0000000..c87ec2b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807039_51_7111877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaa52dd230e4c7175d7779af4eca3e8ecc042df8f7b7ebaaafdd6208d6970bc +size 128454 diff --git a/datasets/xianshiping/train/images/订单1807040_51_7111929.jpg b/datasets/xianshiping/train/images/订单1807040_51_7111929.jpg new file mode 100644 index 0000000..e16ce5e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807040_51_7111929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff833f758e97db44808e3ade653166c37fd4cfe568e4867aa833d2ca77ad2e7 +size 113919 diff --git a/datasets/xianshiping/train/images/订单1807041_51_7111977.jpg b/datasets/xianshiping/train/images/订单1807041_51_7111977.jpg new file mode 100644 index 0000000..2cca537 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807041_51_7111977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b235afdeff1315f68c73f916a9073c9a3ab527894c218205fac922e9028a2 +size 129615 diff --git a/datasets/xianshiping/train/images/订单1807042_51_7111966.jpg b/datasets/xianshiping/train/images/订单1807042_51_7111966.jpg new file mode 100644 index 0000000..11a9e6d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807042_51_7111966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a002c11d6612f0ffce7cbcd206c5155b968bc66dbae3883ccbbde5b6c732ef06 +size 523652 diff --git a/datasets/xianshiping/train/images/订单1807047_51_7112008.jpg b/datasets/xianshiping/train/images/订单1807047_51_7112008.jpg new file mode 100644 index 0000000..470c2dc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807047_51_7112008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6722461529acf17fac6bf91d36bfbb6a72f4fe3b4163feed45f2032693e81e +size 113953 diff --git a/datasets/xianshiping/train/images/订单1807051_51_7111954.jpg b/datasets/xianshiping/train/images/订单1807051_51_7111954.jpg new file mode 100644 index 0000000..1e31823 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807051_51_7111954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9733bf3f66899a8c5496bec33230774252c01a2250825cc772d1b156ba7fe3 +size 82898 diff --git a/datasets/xianshiping/train/images/订单1807054_51_7112064.jpg b/datasets/xianshiping/train/images/订单1807054_51_7112064.jpg new file mode 100644 index 0000000..bc40e71 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807054_51_7112064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb642e237379e3e2e117146892e027ea81428f9e21d1977c3b91d26906727ea +size 534696 diff --git a/datasets/xianshiping/train/images/订单1807056_51_7112029.jpg b/datasets/xianshiping/train/images/订单1807056_51_7112029.jpg new file mode 100644 index 0000000..fa65953 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807056_51_7112029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08e65f5a0516cc4b279537d7888ec37cfef80ae6ad1db8ba3f414dc512ddd95 +size 130734 diff --git a/datasets/xianshiping/train/images/订单1807061_51_7112116.jpg b/datasets/xianshiping/train/images/订单1807061_51_7112116.jpg new file mode 100644 index 0000000..4f84ba1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807061_51_7112116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2397c9c59849f4bfe5d5c7f61b0ce20168ad580ca5bb84c30efd1ce6e4b48b +size 585015 diff --git a/datasets/xianshiping/train/images/订单1807065_51_7112141.jpg b/datasets/xianshiping/train/images/订单1807065_51_7112141.jpg new file mode 100644 index 0000000..ce0e537 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807065_51_7112141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314842b7cafefb111fa9d688562cad4f6567566ee5a6b087eb17948b261c82ba +size 133155 diff --git a/datasets/xianshiping/train/images/订单1807066_51_7112143.jpg b/datasets/xianshiping/train/images/订单1807066_51_7112143.jpg new file mode 100644 index 0000000..c714b44 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807066_51_7112143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006141489aa58f5f65de1977d20f579466524c0cdad05385932bd386da4f725e +size 143663 diff --git a/datasets/xianshiping/train/images/订单1807069_51_7112243.jpg b/datasets/xianshiping/train/images/订单1807069_51_7112243.jpg new file mode 100644 index 0000000..7922f6b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807069_51_7112243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c222880eb6947c5c699cd9b5b6dab5d7c9f9231065e1d4aa8ae56485339fa6 +size 448898 diff --git a/datasets/xianshiping/train/images/订单1807070_51_7112196.jpg b/datasets/xianshiping/train/images/订单1807070_51_7112196.jpg new file mode 100644 index 0000000..96d589a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807070_51_7112196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b372c6cdd26e395de4495adcb6aff6c4636ee71a90685bc06c87ce805a61cb +size 111302 diff --git a/datasets/xianshiping/train/images/订单1807073_51_7112179.jpg b/datasets/xianshiping/train/images/订单1807073_51_7112179.jpg new file mode 100644 index 0000000..15206c4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807073_51_7112179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8929f393d11d21a6b0c155f9e5d824813c23daa78ed8a19890439d9b2785ffbd +size 120097 diff --git a/datasets/xianshiping/train/images/订单1807074_51_7113123.jpg b/datasets/xianshiping/train/images/订单1807074_51_7113123.jpg new file mode 100644 index 0000000..9ea2f3d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807074_51_7113123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d6be8dcbbc793ad40a472df229bd017a419f9219d243088e690392af50f7e5 +size 145111 diff --git a/datasets/xianshiping/train/images/订单1807076_51_7112165.jpg b/datasets/xianshiping/train/images/订单1807076_51_7112165.jpg new file mode 100644 index 0000000..9182010 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807076_51_7112165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c342388b90fb721fd34fa361e979f0f1849e678a70c9e58421c2d7eadb40e4 +size 158618 diff --git a/datasets/xianshiping/train/images/订单1807077_51_7112279.jpg b/datasets/xianshiping/train/images/订单1807077_51_7112279.jpg new file mode 100644 index 0000000..e0984aa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807077_51_7112279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269dcdf679e2dddeb73d8ccf8ad08d1b7180802cdc3a0a9cb724a1bdf7aa8c49 +size 431839 diff --git a/datasets/xianshiping/train/images/订单1807079_51_7112332.jpg b/datasets/xianshiping/train/images/订单1807079_51_7112332.jpg new file mode 100644 index 0000000..a1d453b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807079_51_7112332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49533a0e5d716c2471d952a9fbfa47d720044d6cedfdcc76d163ac2a6b084ed9 +size 368198 diff --git a/datasets/xianshiping/train/images/订单1807081_51_7112220.jpg b/datasets/xianshiping/train/images/订单1807081_51_7112220.jpg new file mode 100644 index 0000000..bcc41b7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807081_51_7112220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66837e815916019ce677facfe1cb374c4e2a3fab08290f834382ae77dd3228f1 +size 163201 diff --git a/datasets/xianshiping/train/images/订单1807082_51_7112235.jpg b/datasets/xianshiping/train/images/订单1807082_51_7112235.jpg new file mode 100644 index 0000000..2fff0af --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807082_51_7112235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db45febf012bd434cc9955001c65f19da116fd1faa2b730bb3b9900f05994ebc +size 120036 diff --git a/datasets/xianshiping/train/images/订单1807088_51_7112349.jpg b/datasets/xianshiping/train/images/订单1807088_51_7112349.jpg new file mode 100644 index 0000000..8e1b63f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807088_51_7112349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6ec14b12ef37b1a7b29085891d646c9fa8260b9e87f51431886a4f4ef606a6 +size 100953 diff --git a/datasets/xianshiping/train/images/订单1807094_51_7112419.jpg b/datasets/xianshiping/train/images/订单1807094_51_7112419.jpg new file mode 100644 index 0000000..3371181 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807094_51_7112419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451db065edd5afbd0c208f25f2c56344a0b83e819b638016e23e086fd34cf0c7 +size 382171 diff --git a/datasets/xianshiping/train/images/订单1807095_51_7112473.jpg b/datasets/xianshiping/train/images/订单1807095_51_7112473.jpg new file mode 100644 index 0000000..119bcb7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807095_51_7112473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b23ce9baf39c7f996a07b889fb438338f5689b78f501ffba1067e53674b1f8 +size 126941 diff --git a/datasets/xianshiping/train/images/订单1807097_51_7112451.jpg b/datasets/xianshiping/train/images/订单1807097_51_7112451.jpg new file mode 100644 index 0000000..15fc93b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807097_51_7112451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f82d86430b861824a8c8f0c6f31f262e882f75f396135ab557dea048788f240 +size 188040 diff --git a/datasets/xianshiping/train/images/订单1807098_51_7112456.jpg b/datasets/xianshiping/train/images/订单1807098_51_7112456.jpg new file mode 100644 index 0000000..f82a93d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807098_51_7112456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48fb49695517191bb7fbec9bd84490a67d2c099f5eeab3a4019729f671f70a6 +size 139385 diff --git a/datasets/xianshiping/train/images/订单1807107_51_7112611.jpg b/datasets/xianshiping/train/images/订单1807107_51_7112611.jpg new file mode 100644 index 0000000..638387a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807107_51_7112611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5896e9608335ee77ccc666dd21acb31d992c74faf84fc4679dc883117361fb8 +size 125874 diff --git a/datasets/xianshiping/train/images/订单1807111_51_7112561.jpg b/datasets/xianshiping/train/images/订单1807111_51_7112561.jpg new file mode 100644 index 0000000..0dc7f63 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807111_51_7112561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3912b77dc051105e4386a32fcb0e0df3628d1677887c13c7e7772e63770d6d1 +size 383083 diff --git a/datasets/xianshiping/train/images/订单1807117_51_7112521.jpg b/datasets/xianshiping/train/images/订单1807117_51_7112521.jpg new file mode 100644 index 0000000..1d8f323 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807117_51_7112521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c1891178494b38ecd5354be87436718d8e6744b3faf45539a3feec9702aa34 +size 144803 diff --git a/datasets/xianshiping/train/images/订单1807118_51_7112530.jpg b/datasets/xianshiping/train/images/订单1807118_51_7112530.jpg new file mode 100644 index 0000000..37d4581 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807118_51_7112530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62435df796289ac62a2ea13eb41906e524d19b3150d8c50924ce40ae09dd61 +size 156242 diff --git a/datasets/xianshiping/train/images/订单1807121_51_7112649.jpg b/datasets/xianshiping/train/images/订单1807121_51_7112649.jpg new file mode 100644 index 0000000..41aec75 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807121_51_7112649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0572fdc0b8e233c76676ba3511818ed4db449f7b21e65f496916540c233fdb33 +size 123392 diff --git a/datasets/xianshiping/train/images/订单1807123_51_7112602.jpg b/datasets/xianshiping/train/images/订单1807123_51_7112602.jpg new file mode 100644 index 0000000..49ff4b3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807123_51_7112602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69cffaa1eb6097d4ae39a9660c154ce08f11c903a5b8482151fbddcae99cefb7 +size 126671 diff --git a/datasets/xianshiping/train/images/订单1807124_51_7112644.jpg b/datasets/xianshiping/train/images/订单1807124_51_7112644.jpg new file mode 100644 index 0000000..4fdbbad --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807124_51_7112644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29c3ef95da900cc94e64b65223af694ebdc95773f1e300359588c42a7d29305 +size 163582 diff --git a/datasets/xianshiping/train/images/订单1807126_51_7112788.jpg b/datasets/xianshiping/train/images/订单1807126_51_7112788.jpg new file mode 100644 index 0000000..ef2d7b8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807126_51_7112788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a71b807520f7bb34fa0761281d33f4cc3618898f6034a212c989396c8c5817 +size 98494 diff --git a/datasets/xianshiping/train/images/订单1807127_51_7112692.jpg b/datasets/xianshiping/train/images/订单1807127_51_7112692.jpg new file mode 100644 index 0000000..390165f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807127_51_7112692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b04806536225f97d53e6ab746ae0bd80e4a40b46b2fabee1a746f3076a42d5b +size 133726 diff --git a/datasets/xianshiping/train/images/订单1807130_51_7112696.jpg b/datasets/xianshiping/train/images/订单1807130_51_7112696.jpg new file mode 100644 index 0000000..575464b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807130_51_7112696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17627be4691a65ee6e0bb7a5e475465d817571c170c38b279384bf1e0ce585e8 +size 85297 diff --git a/datasets/xianshiping/train/images/订单1807131_51_7112684.jpg b/datasets/xianshiping/train/images/订单1807131_51_7112684.jpg new file mode 100644 index 0000000..5f8451c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807131_51_7112684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f545af2ce1c25afc5b45abd96103f1a2b38d692c054afb950e5d17534d87a7 +size 685177 diff --git a/datasets/xianshiping/train/images/订单1807134_51_7112717.jpg b/datasets/xianshiping/train/images/订单1807134_51_7112717.jpg new file mode 100644 index 0000000..4708060 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807134_51_7112717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975500856b93b75f3303971192b41631735f3bb5fe078b34bc646c87db724f3b +size 147737 diff --git a/datasets/xianshiping/train/images/订单1807139_51_7112752.jpg b/datasets/xianshiping/train/images/订单1807139_51_7112752.jpg new file mode 100644 index 0000000..a287555 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807139_51_7112752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827b3c01e34891dd5ec9dbdaf2bca2970ac3b1325627d79d10da2ed7802f182a +size 163974 diff --git a/datasets/xianshiping/train/images/订单1807140_51_7112755.jpg b/datasets/xianshiping/train/images/订单1807140_51_7112755.jpg new file mode 100644 index 0000000..728005e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807140_51_7112755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d446f8fdf3d8dd537653cb751ffcbd6c1ef4eb0dde4567cb8bb18767964dd2b9 +size 159404 diff --git a/datasets/xianshiping/train/images/订单1807141_51_7112783.jpg b/datasets/xianshiping/train/images/订单1807141_51_7112783.jpg new file mode 100644 index 0000000..84d0205 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807141_51_7112783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc238d1cbe8943c77f3e1ceb38d84be98a32abb5af2568af04c7209e28c4d7 +size 161357 diff --git a/datasets/xianshiping/train/images/订单1807142_51_7112827.jpg b/datasets/xianshiping/train/images/订单1807142_51_7112827.jpg new file mode 100644 index 0000000..b7f67c9 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807142_51_7112827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a0e27d0b152f3f7b46d76621da0658f8b0d08de6f40993f029b872ed7b7c71 +size 106942 diff --git a/datasets/xianshiping/train/images/订单1807149_51_7112991.jpg b/datasets/xianshiping/train/images/订单1807149_51_7112991.jpg new file mode 100644 index 0000000..5ad75bc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807149_51_7112991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2facdd9276bfacfdf4c04f97fcef408ed4024eeb8c8c91c40c72d36b112af +size 362841 diff --git a/datasets/xianshiping/train/images/订单1807152_51_7112839.jpg b/datasets/xianshiping/train/images/订单1807152_51_7112839.jpg new file mode 100644 index 0000000..7986837 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807152_51_7112839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb7328ca0437314155661b34177dad3b3888cb2b91b4260ebe43cca9a90b3b7 +size 165177 diff --git a/datasets/xianshiping/train/images/订单1807154_51_7112857.jpg b/datasets/xianshiping/train/images/订单1807154_51_7112857.jpg new file mode 100644 index 0000000..4933f73 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807154_51_7112857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4962d6c3def8d73d6e44c8ec2423f770be1ccb214ae6b8c850009823cfd090f +size 487452 diff --git a/datasets/xianshiping/train/images/订单1807155_51_7112959.jpg b/datasets/xianshiping/train/images/订单1807155_51_7112959.jpg new file mode 100644 index 0000000..bc658b7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807155_51_7112959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348bb03849da08ded1313753cdb89b229aff384e4c475b651060b1376468dc2b +size 175213 diff --git a/datasets/xianshiping/train/images/订单1807156_51_7112931.jpg b/datasets/xianshiping/train/images/订单1807156_51_7112931.jpg new file mode 100644 index 0000000..44879fc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807156_51_7112931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515b6089465ad32dc73612498886909a8c3ead96a2dcaa22bdaace0da09f8562 +size 115947 diff --git a/datasets/xianshiping/train/images/订单1807157_51_7112890.jpg b/datasets/xianshiping/train/images/订单1807157_51_7112890.jpg new file mode 100644 index 0000000..c951e5d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807157_51_7112890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83eabd142e85ed26d995d662c640ab7d3a8919a8d75ecbdcad598ea3506fa3 +size 569155 diff --git a/datasets/xianshiping/train/images/订单1807159_51_7113023.jpg b/datasets/xianshiping/train/images/订单1807159_51_7113023.jpg new file mode 100644 index 0000000..2e2effa --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807159_51_7113023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be6a23c90ce2f6e97c1c802d3815e2b03fea1241f2ef7339f367f255db398e4 +size 120666 diff --git a/datasets/xianshiping/train/images/订单1807161_51_7113056.jpg b/datasets/xianshiping/train/images/订单1807161_51_7113056.jpg new file mode 100644 index 0000000..9997376 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807161_51_7113056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93075d35e3c46035c85968a48d55c9cd6605f96ef4c3623d5ece68eaccceaed5 +size 126893 diff --git a/datasets/xianshiping/train/images/订单1807164_51_7113127.jpg b/datasets/xianshiping/train/images/订单1807164_51_7113127.jpg new file mode 100644 index 0000000..121a4bc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807164_51_7113127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca30e81adf268593a14344ff7cadb9b3888fec7df22129350731addff4debec +size 115446 diff --git a/datasets/xianshiping/train/images/订单1807165_51_7113005.jpg b/datasets/xianshiping/train/images/订单1807165_51_7113005.jpg new file mode 100644 index 0000000..bf5996c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807165_51_7113005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d452cc97f91404e7db49ac89b709c3bf902e5cfb30bfdba743a87d70edb884 +size 117323 diff --git a/datasets/xianshiping/train/images/订单1807166_51_7112975.jpg b/datasets/xianshiping/train/images/订单1807166_51_7112975.jpg new file mode 100644 index 0000000..93cb918 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807166_51_7112975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d90566c7e9d798de4328d369c9de80b8a9d561cf7950986585026c573527bea +size 150485 diff --git a/datasets/xianshiping/train/images/订单1807169_51_7113045.jpg b/datasets/xianshiping/train/images/订单1807169_51_7113045.jpg new file mode 100644 index 0000000..6037074 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807169_51_7113045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ae7abf28fd34dd8878ec79366ad604219dfb1df86ef21c8d31660949f4a613 +size 124878 diff --git a/datasets/xianshiping/train/images/订单1807181_51_7113193.jpg b/datasets/xianshiping/train/images/订单1807181_51_7113193.jpg new file mode 100644 index 0000000..81ad425 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807181_51_7113193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c6d644d9af2a8d924c107e4d1dbc1c40303aad0951cb60117d60b733f42ac9 +size 485514 diff --git a/datasets/xianshiping/train/images/订单1807182_51_7113177.jpg b/datasets/xianshiping/train/images/订单1807182_51_7113177.jpg new file mode 100644 index 0000000..c9d2820 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807182_51_7113177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35e0d6cef56d04714ac0aabbc58545f75d818077be9ea84386959b5a15ed755 +size 267530 diff --git a/datasets/xianshiping/train/images/订单1807183_51_7113142.jpg b/datasets/xianshiping/train/images/订单1807183_51_7113142.jpg new file mode 100644 index 0000000..27da92f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807183_51_7113142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5778ee71d9188658db058a42c8e1230af05c32bc2c26a49fa74b626e89da1f65 +size 107334 diff --git a/datasets/xianshiping/train/images/订单1807184_51_7113191.jpg b/datasets/xianshiping/train/images/订单1807184_51_7113191.jpg new file mode 100644 index 0000000..7aad9f3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807184_51_7113191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12121725cbc68dc50204f13999ca733f8b0aebc2c77064691b934d58a636bdf4 +size 140567 diff --git a/datasets/xianshiping/train/images/订单1807185_51_7113220.jpg b/datasets/xianshiping/train/images/订单1807185_51_7113220.jpg new file mode 100644 index 0000000..40c1b5c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807185_51_7113220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d715223ce16e7b13ddd842ca5a8c27459257e838c1c6e1610144b613a869329b +size 111093 diff --git a/datasets/xianshiping/train/images/订单1807189_51_7113407.jpg b/datasets/xianshiping/train/images/订单1807189_51_7113407.jpg new file mode 100644 index 0000000..ed9a81f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807189_51_7113407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df1a7f11744b1c7e9cf65bcd15eb4f05f0a59de461e4554d4d6136a8eae052 +size 122666 diff --git a/datasets/xianshiping/train/images/订单1807191_51_7113329.jpg b/datasets/xianshiping/train/images/订单1807191_51_7113329.jpg new file mode 100644 index 0000000..e925680 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807191_51_7113329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4668cf26d22748b38ffc9d15c5ed975ab5039933cb5fdc96abaad686efca4bf8 +size 299248 diff --git a/datasets/xianshiping/train/images/订单1807192_51_7113450.jpg b/datasets/xianshiping/train/images/订单1807192_51_7113450.jpg new file mode 100644 index 0000000..72b7ebc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807192_51_7113450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc66e875c80f3c2620d84b66ab2de0c29996abc74c6e99ee32c27a29ff3dfdd +size 117340 diff --git a/datasets/xianshiping/train/images/订单1807197_51_7113341.jpg b/datasets/xianshiping/train/images/订单1807197_51_7113341.jpg new file mode 100644 index 0000000..3c94e8f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807197_51_7113341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fe7a70f186e5fc5fad145990d555334bd5758178dae03c38a4becf318ae4fb +size 125346 diff --git a/datasets/xianshiping/train/images/订单1807199_51_7113385.jpg b/datasets/xianshiping/train/images/订单1807199_51_7113385.jpg new file mode 100644 index 0000000..b62b60e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807199_51_7113385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d348c96721fdf8b34f9c67ca172efe37619a95571ad3f671c327b243ef42e0b +size 121269 diff --git a/datasets/xianshiping/train/images/订单1807201_51_7113453.jpg b/datasets/xianshiping/train/images/订单1807201_51_7113453.jpg new file mode 100644 index 0000000..450b8b8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807201_51_7113453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa14cee552ed1fa01d167dbf03821cfbd984f38b0ec56a7471fe94dd33e4aebc +size 135460 diff --git a/datasets/xianshiping/train/images/订单1807202_51_7113452.jpg b/datasets/xianshiping/train/images/订单1807202_51_7113452.jpg new file mode 100644 index 0000000..9090a02 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807202_51_7113452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfb6250d4775c2eaada362814e37ff74810945631a76ef048326da8b2f769b3 +size 581041 diff --git a/datasets/xianshiping/train/images/订单1807203_51_7113404.jpg b/datasets/xianshiping/train/images/订单1807203_51_7113404.jpg new file mode 100644 index 0000000..3324eca --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807203_51_7113404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa13f21e9161c935bce304b6afc4360caa765b214819cc100cf5a38b44df28c3 +size 173138 diff --git a/datasets/xianshiping/train/images/订单1807205_51_7113904.jpg b/datasets/xianshiping/train/images/订单1807205_51_7113904.jpg new file mode 100644 index 0000000..1714a97 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807205_51_7113904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50f03f1e9741405d8f4bc411e6c7da61a3b86a5bbe37d9093cc0c2edfa8c3dc +size 563653 diff --git a/datasets/xianshiping/train/images/订单1807208_51_7113555.jpg b/datasets/xianshiping/train/images/订单1807208_51_7113555.jpg new file mode 100644 index 0000000..2dbd86b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807208_51_7113555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f9f9ff0b011f994a49e639583e36dae87b44c8bb2815a6d3172098d0ac2bbf +size 162198 diff --git a/datasets/xianshiping/train/images/订单1807211_51_7113519.jpg b/datasets/xianshiping/train/images/订单1807211_51_7113519.jpg new file mode 100644 index 0000000..f351d01 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807211_51_7113519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50dafb520bf241628d716aebf5817bcab092e5b7aa46a1b7b743e438325dc2d0 +size 149983 diff --git a/datasets/xianshiping/train/images/订单1807217_51_7113518.jpg b/datasets/xianshiping/train/images/订单1807217_51_7113518.jpg new file mode 100644 index 0000000..274992f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807217_51_7113518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aea2f4a1d87463fc546f8624b572c605f9dcf84f34481eb294668d690d0ab67 +size 121991 diff --git a/datasets/xianshiping/train/images/订单1807219_51_7113577.jpg b/datasets/xianshiping/train/images/订单1807219_51_7113577.jpg new file mode 100644 index 0000000..f730efd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807219_51_7113577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e46befb3e31a9022563a15b4661269c500c331c59a680df3adbedd2c6fee27 +size 589225 diff --git a/datasets/xianshiping/train/images/订单1807221_51_7113552.jpg b/datasets/xianshiping/train/images/订单1807221_51_7113552.jpg new file mode 100644 index 0000000..3e42ba0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807221_51_7113552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760cb031ffca985f3ef4abd65b3327d510bdb887b1d109f752339bd5b441e31d +size 147141 diff --git a/datasets/xianshiping/train/images/订单1807224_51_7113585.jpg b/datasets/xianshiping/train/images/订单1807224_51_7113585.jpg new file mode 100644 index 0000000..8682dd2 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807224_51_7113585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3cb08131438ee888f3b430581249724705cfc09c968172c6033b351f413e52 +size 127922 diff --git a/datasets/xianshiping/train/images/订单1807226_51_7113749.jpg b/datasets/xianshiping/train/images/订单1807226_51_7113749.jpg new file mode 100644 index 0000000..0b20e80 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807226_51_7113749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15952185af2091ad457451a78b10f5f562d2a7e1b6edb8c3767d589198de951d +size 135038 diff --git a/datasets/xianshiping/train/images/订单1807230_51_7113599.jpg b/datasets/xianshiping/train/images/订单1807230_51_7113599.jpg new file mode 100644 index 0000000..12a9b2f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807230_51_7113599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb4fa9b73cdbc86f78505335c3ea3037c488ca84dc10cac84fc02560955c56b +size 743634 diff --git a/datasets/xianshiping/train/images/订单1807231_51_7113614.jpg b/datasets/xianshiping/train/images/订单1807231_51_7113614.jpg new file mode 100644 index 0000000..1d65383 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807231_51_7113614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ed8769e870f93a23a90ec313a0fa1b34054540650b271175493f16734c225c +size 354555 diff --git a/datasets/xianshiping/train/images/订单1807232_51_7113683.jpg b/datasets/xianshiping/train/images/订单1807232_51_7113683.jpg new file mode 100644 index 0000000..d46f0e6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807232_51_7113683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47050d00c585bac6c8684de1026bcf1d60b9d18c8c6c022ba424948a9dc8a18f +size 129450 diff --git a/datasets/xianshiping/train/images/订单1807233_51_7113715.jpg b/datasets/xianshiping/train/images/订单1807233_51_7113715.jpg new file mode 100644 index 0000000..9940dfd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807233_51_7113715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb81a59e283ca4c1313c03298e525203f828b0baff953e0a1ed6ea80a148925 +size 248366 diff --git a/datasets/xianshiping/train/images/订单1807236_51_7113782.jpg b/datasets/xianshiping/train/images/订单1807236_51_7113782.jpg new file mode 100644 index 0000000..d6f4925 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807236_51_7113782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85417527d18ca26bbb6c097d614ffd90111dc06a9ce94404a905dfedb755728e +size 124809 diff --git a/datasets/xianshiping/train/images/订单1807237_51_7113661.jpg b/datasets/xianshiping/train/images/订单1807237_51_7113661.jpg new file mode 100644 index 0000000..dcf7a6e --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807237_51_7113661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4503ecf99f84652af2353c7402f25314c6414fd69b13ba9f83b6b8f7de317795 +size 144840 diff --git a/datasets/xianshiping/train/images/订单1807238_51_7113657.jpg b/datasets/xianshiping/train/images/订单1807238_51_7113657.jpg new file mode 100644 index 0000000..0998900 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807238_51_7113657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c10e32783c735a6283ad7f306b81711e5fb396b4edc7cae033c5c3ebff84ae +size 177896 diff --git a/datasets/xianshiping/train/images/订单1807240_51_7113721.jpg b/datasets/xianshiping/train/images/订单1807240_51_7113721.jpg new file mode 100644 index 0000000..01d7edd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807240_51_7113721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e7e4de235759cc66d869335349e7589cadf011e00f3a73247e04ad86be3cc8 +size 184585 diff --git a/datasets/xianshiping/train/images/订单1807242_51_7113761.jpg b/datasets/xianshiping/train/images/订单1807242_51_7113761.jpg new file mode 100644 index 0000000..4b180bc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807242_51_7113761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36312bf3059353121b8d4e7b9a220b37d7a3288dd71183cc79cd4bf8477a6a01 +size 287671 diff --git a/datasets/xianshiping/train/images/订单1807245_51_7113816.jpg b/datasets/xianshiping/train/images/订单1807245_51_7113816.jpg new file mode 100644 index 0000000..4480e58 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807245_51_7113816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36bc6d749203fa304f1c827e3d3776f87c92b90e51b0bc8150047efce2999cf +size 104980 diff --git a/datasets/xianshiping/train/images/订单1807246_51_7113791.jpg b/datasets/xianshiping/train/images/订单1807246_51_7113791.jpg new file mode 100644 index 0000000..a2ba8b5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807246_51_7113791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602c80a4b37ba2414187b7171d08d32cfacddddf0c4be1e026e4669c2a738b2 +size 179073 diff --git a/datasets/xianshiping/train/images/订单1807248_51_7113945.jpg b/datasets/xianshiping/train/images/订单1807248_51_7113945.jpg new file mode 100644 index 0000000..8301582 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807248_51_7113945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bd3d36ba6045d2c66e829c654f13d525d4f828d01490dd6c3eca76262d0dab +size 129982 diff --git a/datasets/xianshiping/train/images/订单1807251_51_7113927.jpg b/datasets/xianshiping/train/images/订单1807251_51_7113927.jpg new file mode 100644 index 0000000..dedf9d8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807251_51_7113927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd3e9bdc0674b6992fd80f8f529d657aa310338ec8ecfee7078d129a3a0772d +size 143812 diff --git a/datasets/xianshiping/train/images/订单1807252_51_7113872.jpg b/datasets/xianshiping/train/images/订单1807252_51_7113872.jpg new file mode 100644 index 0000000..ac86ea5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807252_51_7113872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4471b5e65ed3d2d0bf8ee85d68a9b20a24ddc5f8be6e8c3c08127db14c446b +size 102385 diff --git a/datasets/xianshiping/train/images/订单1807253_51_7113859.jpg b/datasets/xianshiping/train/images/订单1807253_51_7113859.jpg new file mode 100644 index 0000000..6f76c6b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807253_51_7113859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9d4af2264eb8363137b6ea12deddd5448b9bd07defcc9c3b4cd5bc9aa73aad +size 116338 diff --git a/datasets/xianshiping/train/images/订单1807255_51_7113891.jpg b/datasets/xianshiping/train/images/订单1807255_51_7113891.jpg new file mode 100644 index 0000000..971ab99 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807255_51_7113891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed867e9108153b5c5f60392341618bad014548c42fce2dc6f0745479b02c2454 +size 134775 diff --git a/datasets/xianshiping/train/images/订单1807259_51_7113928.jpg b/datasets/xianshiping/train/images/订单1807259_51_7113928.jpg new file mode 100644 index 0000000..72f75ee --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807259_51_7113928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737ea4ee11298298ed30fa58026b23b940bf01420aa384848d6872d2ec87c0dd +size 115923 diff --git a/datasets/xianshiping/train/images/订单1807260_51_7114022.jpg b/datasets/xianshiping/train/images/订单1807260_51_7114022.jpg new file mode 100644 index 0000000..b5c9a91 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807260_51_7114022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929b495dbad8a8b64f0649a0df24dd99842a8d1c81fc7d00b2fb7f35a1d6581f +size 603980 diff --git a/datasets/xianshiping/train/images/订单1807262_51_7113998.jpg b/datasets/xianshiping/train/images/订单1807262_51_7113998.jpg new file mode 100644 index 0000000..b2fb692 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807262_51_7113998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d10167dbea1a22fb7d442dd8207268eb00eabfb1885fd758023ba2571e925f7 +size 123665 diff --git a/datasets/xianshiping/train/images/订单1807265_51_7114041.jpg b/datasets/xianshiping/train/images/订单1807265_51_7114041.jpg new file mode 100644 index 0000000..77c51a8 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807265_51_7114041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce6fbf35c5a8eaf8408fc6158ff6143c17b6463c387df87a2463fba161245bc +size 288727 diff --git a/datasets/xianshiping/train/images/订单1807271_51_7114136.jpg b/datasets/xianshiping/train/images/订单1807271_51_7114136.jpg new file mode 100644 index 0000000..592b086 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807271_51_7114136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4838b83b1ff139d3911ad09fef96188338b3c8a8a4079908de26593c31ad7ffb +size 131654 diff --git a/datasets/xianshiping/train/images/订单1807281_51_7114155.jpg b/datasets/xianshiping/train/images/订单1807281_51_7114155.jpg new file mode 100644 index 0000000..ca3c39d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807281_51_7114155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc3b973266ec036bdb6e2f2eb1bbf6caf7f942180cda05ed889fa057d7d015c +size 272060 diff --git a/datasets/xianshiping/train/images/订单1807284_51_7114318.jpg b/datasets/xianshiping/train/images/订单1807284_51_7114318.jpg new file mode 100644 index 0000000..3607b2f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807284_51_7114318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd1321339da35c13e18dedd509108094d644d245f1c69731f46d4d1c44a9c7d +size 475556 diff --git a/datasets/xianshiping/train/images/订单1807286_51_7114197.jpg b/datasets/xianshiping/train/images/订单1807286_51_7114197.jpg new file mode 100644 index 0000000..e106b49 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807286_51_7114197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549a997bd8b83116b671ac7c5df0e0023348812452d70e7d9002223dfd584a25 +size 116947 diff --git a/datasets/xianshiping/train/images/订单1807288_51_7114663.jpg b/datasets/xianshiping/train/images/订单1807288_51_7114663.jpg new file mode 100644 index 0000000..0e90bbd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807288_51_7114663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6336bd74f251ae118bb68143956f4fcdd984f6cd1a73a46abec1907d314a4264 +size 130055 diff --git a/datasets/xianshiping/train/images/订单1807292_51_7114224.jpg b/datasets/xianshiping/train/images/订单1807292_51_7114224.jpg new file mode 100644 index 0000000..caf3be1 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807292_51_7114224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcc17e26bb60433f11ca4f023d0a03f2f254f870e006e916ac93d8c5ebf7a57 +size 128365 diff --git a/datasets/xianshiping/train/images/订单1807296_51_7114313.jpg b/datasets/xianshiping/train/images/订单1807296_51_7114313.jpg new file mode 100644 index 0000000..559bdba --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807296_51_7114313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08958a05e45f82d93b8c02e264e64f07532fa2c6f538ffd651c01452727ee409 +size 96639 diff --git a/datasets/xianshiping/train/images/订单1807299_51_7114302.jpg b/datasets/xianshiping/train/images/订单1807299_51_7114302.jpg new file mode 100644 index 0000000..f91b811 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807299_51_7114302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd91913d8184823bcb5d4bd0ea039030e01021bd95adb7cb9dfeafb1f17a81ad +size 314524 diff --git a/datasets/xianshiping/train/images/订单1807304_51_7114340.jpg b/datasets/xianshiping/train/images/订单1807304_51_7114340.jpg new file mode 100644 index 0000000..ba13812 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807304_51_7114340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cb2d221fa9bf82206c0157edfe9f255f63eba83a0f1a218714328b589b287a +size 118262 diff --git a/datasets/xianshiping/train/images/订单1807305_51_7114437.jpg b/datasets/xianshiping/train/images/订单1807305_51_7114437.jpg new file mode 100644 index 0000000..3ea86cc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807305_51_7114437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dae2c7df05e516a8be37d2e222e3f47a79e8b7b70d6fe8184c3c85e4861ecca +size 198372 diff --git a/datasets/xianshiping/train/images/订单1807307_51_7114368.jpg b/datasets/xianshiping/train/images/订单1807307_51_7114368.jpg new file mode 100644 index 0000000..cda4613 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807307_51_7114368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dac13e0e8b8b0a268961b1469262d1e69deac374b2619fd0a4aa734934f06a +size 278573 diff --git a/datasets/xianshiping/train/images/订单1807311_51_7114483.jpg b/datasets/xianshiping/train/images/订单1807311_51_7114483.jpg new file mode 100644 index 0000000..25dd505 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807311_51_7114483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9935ba78d12b89edcb3c45e38144509368e15e5460d7ec8fe12a4672ed8a084 +size 578965 diff --git a/datasets/xianshiping/train/images/订单1807312_51_7114460.jpg b/datasets/xianshiping/train/images/订单1807312_51_7114460.jpg new file mode 100644 index 0000000..773c063 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807312_51_7114460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bedb0f060e4b50b6bb2b27f4411a7096b5c1eed0a9abd8875985258e4fc2b1c +size 147442 diff --git a/datasets/xianshiping/train/images/订单1807317_51_7114433.jpg b/datasets/xianshiping/train/images/订单1807317_51_7114433.jpg new file mode 100644 index 0000000..9c27b8d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807317_51_7114433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a67ec4541ea18c5b8e88045fa3981c7e4b750eaf2a96a8ede03d8a2e2a81ad +size 124372 diff --git a/datasets/xianshiping/train/images/订单1807318_51_7114408.jpg b/datasets/xianshiping/train/images/订单1807318_51_7114408.jpg new file mode 100644 index 0000000..fcfe7df --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807318_51_7114408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d28a9a62453aa49f4ffd83a4426eeb79f2c9d998d2923f7530d6ae4c6f46897 +size 76672 diff --git a/datasets/xianshiping/train/images/订单1807319_51_7114509.jpg b/datasets/xianshiping/train/images/订单1807319_51_7114509.jpg new file mode 100644 index 0000000..4c39eae --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807319_51_7114509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5923884ae56879fda53e6bce28306a68d8b1bf82ebc9208c508e82bded87f6aa +size 163086 diff --git a/datasets/xianshiping/train/images/订单1807320_51_7114495.jpg b/datasets/xianshiping/train/images/订单1807320_51_7114495.jpg new file mode 100644 index 0000000..c76a22a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807320_51_7114495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8629e22ee745a909896657bf59f6e9871e7a1911787224cb4d4eb8b9ee87d7d7 +size 301233 diff --git a/datasets/xianshiping/train/images/订单1807322_51_7114586.jpg b/datasets/xianshiping/train/images/订单1807322_51_7114586.jpg new file mode 100644 index 0000000..9df42c6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807322_51_7114586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7739531212f1a3d7c1553a03537f9ba51ee8ccb3c2175d1b0615634ff18417ac +size 128063 diff --git a/datasets/xianshiping/train/images/订单1807323_51_7114599.jpg b/datasets/xianshiping/train/images/订单1807323_51_7114599.jpg new file mode 100644 index 0000000..362b9f3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807323_51_7114599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6056cbc544dd7a6d2f999d4e5f5422efa9ae47e096b25e0e02e5af4b2faeaac +size 128220 diff --git a/datasets/xianshiping/train/images/订单1807326_51_7114625.jpg b/datasets/xianshiping/train/images/订单1807326_51_7114625.jpg new file mode 100644 index 0000000..f6f2060 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807326_51_7114625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4863af0a770cce6c49e2b58cbc725db9bc6dcd377b1af07c9c0d47416e151882 +size 70240 diff --git a/datasets/xianshiping/train/images/订单1807329_51_7114657.jpg b/datasets/xianshiping/train/images/订单1807329_51_7114657.jpg new file mode 100644 index 0000000..cbee764 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807329_51_7114657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b76b87ba01662e004b67a79e68e596e75d7924f1044218bb4b74f03106966cb +size 154200 diff --git a/datasets/xianshiping/train/images/订单1807331_51_7114848.jpg b/datasets/xianshiping/train/images/订单1807331_51_7114848.jpg new file mode 100644 index 0000000..7cf38bd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807331_51_7114848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed77bf142cb82c6a32917eab7b1d2d471f6be5ae1833313f08fa344df025ed0 +size 162127 diff --git a/datasets/xianshiping/train/images/订单1807337_51_7114881.jpg b/datasets/xianshiping/train/images/订单1807337_51_7114881.jpg new file mode 100644 index 0000000..71ce57f --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807337_51_7114881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8021a79cce68d6b07edda5e0a879a59934deaf0e3fd284bf503c9fc2ca255c +size 134894 diff --git a/datasets/xianshiping/train/images/订单1807342_51_7114751.jpg b/datasets/xianshiping/train/images/订单1807342_51_7114751.jpg new file mode 100644 index 0000000..79e305d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807342_51_7114751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb82fec98df06604e0bc31076b1175c3ed5a7604dd07a29f37527a425b36d6e2 +size 87946 diff --git a/datasets/xianshiping/train/images/订单1807343_51_7114747.jpg b/datasets/xianshiping/train/images/订单1807343_51_7114747.jpg new file mode 100644 index 0000000..7f23420 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807343_51_7114747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd11a9a83f637cfa6abfee1ad9abdd6bc79a24d4a09b861e31c458deaeb63eb +size 97844 diff --git a/datasets/xianshiping/train/images/订单1807349_51_7114675.jpg b/datasets/xianshiping/train/images/订单1807349_51_7114675.jpg new file mode 100644 index 0000000..1203f1d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807349_51_7114675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be927b044ce99ceddb104670cb920dc3904a35c3b6ec65b4f8a49c3d850abdc +size 157485 diff --git a/datasets/xianshiping/train/images/订单1807350_51_7114761.jpg b/datasets/xianshiping/train/images/订单1807350_51_7114761.jpg new file mode 100644 index 0000000..7d6e0ae --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807350_51_7114761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679849d47e256678e5ca30a605b50c334cde10f8902220b4bf6640f1bce892c1 +size 138665 diff --git a/datasets/xianshiping/train/images/订单1807354_51_7114805.jpg b/datasets/xianshiping/train/images/订单1807354_51_7114805.jpg new file mode 100644 index 0000000..fec2fcd --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807354_51_7114805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c00328bdda50bb7f9ebd1c8bb4fb1342f6f9d266272190fb53d6a26f6121a0e +size 125391 diff --git a/datasets/xianshiping/train/images/订单1807356_51_7114884.jpg b/datasets/xianshiping/train/images/订单1807356_51_7114884.jpg new file mode 100644 index 0000000..dbffdd7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807356_51_7114884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9723d2d83171130b4a68b221a0b46ba97b7480921b4b8e9cab00a0a543686a2c +size 111916 diff --git a/datasets/xianshiping/train/images/订单1807358_51_7114911.jpg b/datasets/xianshiping/train/images/订单1807358_51_7114911.jpg new file mode 100644 index 0000000..08a712a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807358_51_7114911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c054273bc5958aa240792186c1e05b09cc39e881f64f35ab2913a2c9762a14c +size 150127 diff --git a/datasets/xianshiping/train/images/订单1807365_51_7114899.jpg b/datasets/xianshiping/train/images/订单1807365_51_7114899.jpg new file mode 100644 index 0000000..47b1780 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807365_51_7114899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530f6aac6a9d1416ec43a7d7feb6634261722655695df0d8bf3986098ac3c766 +size 106982 diff --git a/datasets/xianshiping/train/images/订单1807366_51_7114944.jpg b/datasets/xianshiping/train/images/订单1807366_51_7114944.jpg new file mode 100644 index 0000000..3ce32c5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807366_51_7114944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92735bfce701afe799a12b24e3e5b984e68c7c16acf8e6bf0a21fd6834e49b2d +size 107342 diff --git a/datasets/xianshiping/train/images/订单1807368_51_7115023.jpg b/datasets/xianshiping/train/images/订单1807368_51_7115023.jpg new file mode 100644 index 0000000..f16670c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807368_51_7115023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8791bfe50afc5726f0d75bc3439a33d2c2a9b833a7692be6b3af359fbeeda230 +size 53746 diff --git a/datasets/xianshiping/train/images/订单1807371_51_7115058.jpg b/datasets/xianshiping/train/images/订单1807371_51_7115058.jpg new file mode 100644 index 0000000..662f1b7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807371_51_7115058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99d59fd4bd95e3954a4ca38cc329733dd79ac7a89464813f9b1d93afdff57f5 +size 136789 diff --git a/datasets/xianshiping/train/images/订单1807374_51_7114939.jpg b/datasets/xianshiping/train/images/订单1807374_51_7114939.jpg new file mode 100644 index 0000000..0c03685 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807374_51_7114939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab1a51618ea9fd265952991a0b6cb53fe294b75990051acb5a2d090ed9201dd +size 139513 diff --git a/datasets/xianshiping/train/images/订单1807377_51_7115068.jpg b/datasets/xianshiping/train/images/订单1807377_51_7115068.jpg new file mode 100644 index 0000000..2d316ca --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807377_51_7115068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9a9eafa4293a386cd606755a597f379bb386ced6d02caa3ea39e3c5b32eb78 +size 509087 diff --git a/datasets/xianshiping/train/images/订单1807378_51_7115179.jpg b/datasets/xianshiping/train/images/订单1807378_51_7115179.jpg new file mode 100644 index 0000000..bc3e089 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807378_51_7115179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6a9dc754cf62cf11c68060f607238a34489bab23177553bbf8fb3e88fb939f +size 138145 diff --git a/datasets/xianshiping/train/images/订单1807381_51_7115096.jpg b/datasets/xianshiping/train/images/订单1807381_51_7115096.jpg new file mode 100644 index 0000000..3ee6feb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807381_51_7115096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b403d90c81f0a4e4c05c4e0266f1ac2dfe389c286b2b240d51d39bab949b50 +size 203626 diff --git a/datasets/xianshiping/train/images/订单1807385_51_7115103.jpg b/datasets/xianshiping/train/images/订单1807385_51_7115103.jpg new file mode 100644 index 0000000..c6b546a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807385_51_7115103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb05c97c2ab5dc5d050f02e40054689a05189bae015082090ef307431ae3b63 +size 280735 diff --git a/datasets/xianshiping/train/images/订单1807386_51_7115174.jpg b/datasets/xianshiping/train/images/订单1807386_51_7115174.jpg new file mode 100644 index 0000000..5046ba7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807386_51_7115174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a054d13720e7bd446bef6ec24e8261319a14b0bcc39a60f7c236c6d68dc0ae +size 91229 diff --git a/datasets/xianshiping/train/images/订单1807387_51_7115119.jpg b/datasets/xianshiping/train/images/订单1807387_51_7115119.jpg new file mode 100644 index 0000000..f3cf86a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807387_51_7115119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55df4d375ea9fc04b4a2cf9f215d0c54c81404a767877b7f5cc0a1827081e9f +size 360488 diff --git a/datasets/xianshiping/train/images/订单1807388_51_7115158.jpg b/datasets/xianshiping/train/images/订单1807388_51_7115158.jpg new file mode 100644 index 0000000..fbe24a3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807388_51_7115158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88bd2b2ed909c20790283b8fdb7fc338bf0275f1602c6cfaa6167e14ee1de6 +size 78420 diff --git a/datasets/xianshiping/train/images/订单1807390_51_7115204.jpg b/datasets/xianshiping/train/images/订单1807390_51_7115204.jpg new file mode 100644 index 0000000..467e706 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807390_51_7115204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d50bb82f9c4f309b83112f22a364af766c0d98e7538b0bf4b32698018fdd7c +size 122365 diff --git a/datasets/xianshiping/train/images/订单1807393_51_7115228.jpg b/datasets/xianshiping/train/images/订单1807393_51_7115228.jpg new file mode 100644 index 0000000..aa8a94d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807393_51_7115228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b831e10e83762a9c93b66475cc8942b2f6dd82ceafd2afcec91ea6bc64890e1 +size 132609 diff --git a/datasets/xianshiping/train/images/订单1807395_51_7115255.jpg b/datasets/xianshiping/train/images/订单1807395_51_7115255.jpg new file mode 100644 index 0000000..793addf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807395_51_7115255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc025e6e6efd1be2d5736da904e183fd7e307d19ef741bb42d9836aa7a9a176 +size 101529 diff --git a/datasets/xianshiping/train/images/订单1807396_51_7115232.jpg b/datasets/xianshiping/train/images/订单1807396_51_7115232.jpg new file mode 100644 index 0000000..3d62c42 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807396_51_7115232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b234d216970f8865fcdef9119cd596b889ffda5cb4cb9e7760f865aac0623a54 +size 140967 diff --git a/datasets/xianshiping/train/images/订单1807399_51_7115284.jpg b/datasets/xianshiping/train/images/订单1807399_51_7115284.jpg new file mode 100644 index 0000000..2935dd6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807399_51_7115284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49eb44f6023da287cad4238d94ba7d8b6d467ae44682a9ddad830cdd3faeabc8 +size 145076 diff --git a/datasets/xianshiping/train/images/订单1807401_51_7115294.jpg b/datasets/xianshiping/train/images/订单1807401_51_7115294.jpg new file mode 100644 index 0000000..b5ba345 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807401_51_7115294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8db309e472e0c4fa332c3577baf2b3b02d98ca213368cf9f90fd95cbf97d4c6 +size 362285 diff --git a/datasets/xianshiping/train/images/订单1807404_51_7115386.jpg b/datasets/xianshiping/train/images/订单1807404_51_7115386.jpg new file mode 100644 index 0000000..82ac3d3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807404_51_7115386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f90f75b737fbab2e6fbcbab25c3b5203676bb2b1bfa95354330848793401d8c +size 112342 diff --git a/datasets/xianshiping/train/images/订单1807405_51_7115359.jpg b/datasets/xianshiping/train/images/订单1807405_51_7115359.jpg new file mode 100644 index 0000000..8b585c3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807405_51_7115359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f84b8532901ef877f0873fb641c62a5e7efac756cd9c2ded8e05d0b247056fb +size 101092 diff --git a/datasets/xianshiping/train/images/订单1807408_51_7115322.jpg b/datasets/xianshiping/train/images/订单1807408_51_7115322.jpg new file mode 100644 index 0000000..0962267 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807408_51_7115322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8f4cd0d73f2229a399feba091d0655013b6018ae49b2ac7e96c4a3eaeb4c2a +size 345421 diff --git a/datasets/xianshiping/train/images/订单1807410_51_7115405.jpg b/datasets/xianshiping/train/images/订单1807410_51_7115405.jpg new file mode 100644 index 0000000..0d687dc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807410_51_7115405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0499957c1c880eb22d9d7c3841108c752e5d57aa5686dc168b7c2867f5de7b9 +size 516419 diff --git a/datasets/xianshiping/train/images/订单1807411_51_7115351.jpg b/datasets/xianshiping/train/images/订单1807411_51_7115351.jpg new file mode 100644 index 0000000..80400da --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807411_51_7115351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a31dd9bcfd23da97fb32e532661af0295c29b3660b61d7ddf28020d36d0a4ee +size 329493 diff --git a/datasets/xianshiping/train/images/订单1807412_51_7115406.jpg b/datasets/xianshiping/train/images/订单1807412_51_7115406.jpg new file mode 100644 index 0000000..5794a19 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807412_51_7115406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ae3b081c04b9cc6253a6f603ba3450d656c8ecadb9b92b052e187a3e93efb8 +size 99494 diff --git a/datasets/xianshiping/train/images/订单1807414_51_7115431.jpg b/datasets/xianshiping/train/images/订单1807414_51_7115431.jpg new file mode 100644 index 0000000..ebca6b3 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807414_51_7115431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adeaf83bb8f8036e999f6ed380f69478a6ba6581537b5b73ce89d5db5b41234 +size 160954 diff --git a/datasets/xianshiping/train/images/订单1807416_51_7115422.jpg b/datasets/xianshiping/train/images/订单1807416_51_7115422.jpg new file mode 100644 index 0000000..327bebb --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807416_51_7115422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d533b42a23226a0f04438097af3aad498061775db45fb2dcb1d06e102f492f2d +size 158894 diff --git a/datasets/xianshiping/train/images/订单1807419_51_7115476.jpg b/datasets/xianshiping/train/images/订单1807419_51_7115476.jpg new file mode 100644 index 0000000..51496ef --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807419_51_7115476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169f4269ed9d359b67ff4b69557a790024ff088acfb854e8fb23e819e108db5d +size 150819 diff --git a/datasets/xianshiping/train/images/订单1807420_51_7115500.jpg b/datasets/xianshiping/train/images/订单1807420_51_7115500.jpg new file mode 100644 index 0000000..fe87151 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807420_51_7115500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b721386b79dd6a23cb4af40cdfd893af8d9519f0ae06f776fa8719dfd2737f1f +size 123383 diff --git a/datasets/xianshiping/train/images/订单1807421_51_7115464.jpg b/datasets/xianshiping/train/images/订单1807421_51_7115464.jpg new file mode 100644 index 0000000..fe66fe0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807421_51_7115464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf3c279cd345c4ef95daa26fb2d9eb41ec63b4e290a4a755c7264c58636d012 +size 149795 diff --git a/datasets/xianshiping/train/images/订单1807423_51_7115489.jpg b/datasets/xianshiping/train/images/订单1807423_51_7115489.jpg new file mode 100644 index 0000000..50299ec --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807423_51_7115489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a96d2bcee0636a1455c56ebfdd4f419d4b3d8791a4230adf3744eb5f00dedc6 +size 618016 diff --git a/datasets/xianshiping/train/images/订单1807425_51_7115538.jpg b/datasets/xianshiping/train/images/订单1807425_51_7115538.jpg new file mode 100644 index 0000000..f84bf23 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807425_51_7115538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6504c975a682ef201e36d502b20e99762329d49480a90a9fa114ef986a0dbd +size 130828 diff --git a/datasets/xianshiping/train/images/订单1807430_51_7115559.jpg b/datasets/xianshiping/train/images/订单1807430_51_7115559.jpg new file mode 100644 index 0000000..2e08c4a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807430_51_7115559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f84723f0678a4b83e0acb6484969dbb1a9d6fdc1d9318ec8c904c52d99b8dd3 +size 106896 diff --git a/datasets/xianshiping/train/images/订单1807431_51_7115577.jpg b/datasets/xianshiping/train/images/订单1807431_51_7115577.jpg new file mode 100644 index 0000000..5b15ce5 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807431_51_7115577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fbe7452ff77848c5860d806001885b99fc2439cd033ec3068aa10ac5a8c519 +size 125849 diff --git a/datasets/xianshiping/train/images/订单1807433_51_7115601.jpg b/datasets/xianshiping/train/images/订单1807433_51_7115601.jpg new file mode 100644 index 0000000..387d6ba --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807433_51_7115601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc4a98341c0522e2dab115b64c13b349a96025b9fdbbc0126493a315d64a6b1 +size 118454 diff --git a/datasets/xianshiping/train/images/订单1807435_51_7115592.jpg b/datasets/xianshiping/train/images/订单1807435_51_7115592.jpg new file mode 100644 index 0000000..3474936 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807435_51_7115592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd71af76e219bdc759678583a5a396ad8c25641404adc79e087da68afdade4b +size 343237 diff --git a/datasets/xianshiping/train/images/订单1807440_51_7115685.jpg b/datasets/xianshiping/train/images/订单1807440_51_7115685.jpg new file mode 100644 index 0000000..59d123d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807440_51_7115685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ae3f74dba64cd5865f25a653cbd8c807b9972b5ace220a79f4099bac5eb404 +size 965678 diff --git a/datasets/xianshiping/train/images/订单1807446_51_7115659.jpg b/datasets/xianshiping/train/images/订单1807446_51_7115659.jpg new file mode 100644 index 0000000..befc2b6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807446_51_7115659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c7e87475f166be75365b1d16b8121b00ce4b9ae7a3613aceb8b6376b70c498 +size 348168 diff --git a/datasets/xianshiping/train/images/订单1807447_51_7115697.jpg b/datasets/xianshiping/train/images/订单1807447_51_7115697.jpg new file mode 100644 index 0000000..4453728 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807447_51_7115697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211a2679dc603498f6dc04675168ee2753857be30b1762aff1d7e5cacfb21c1e +size 136978 diff --git a/datasets/xianshiping/train/images/订单1807448_51_7115789.jpg b/datasets/xianshiping/train/images/订单1807448_51_7115789.jpg new file mode 100644 index 0000000..f18b739 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807448_51_7115789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcef499ffb7f41e704fc8136f6284f8c1ddf36c577783ebb9268a48bbec1abd +size 132077 diff --git a/datasets/xianshiping/train/images/订单1807449_51_7115668.jpg b/datasets/xianshiping/train/images/订单1807449_51_7115668.jpg new file mode 100644 index 0000000..3e5bfb4 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807449_51_7115668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370c1e851c26a8935d757c00c08061cdac0179edecfb575647738f02e3a806aa +size 106959 diff --git a/datasets/xianshiping/train/images/订单1807451_51_7115671.jpg b/datasets/xianshiping/train/images/订单1807451_51_7115671.jpg new file mode 100644 index 0000000..17aec8c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807451_51_7115671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c89a9439c6bd42716f26d1abdb53c7b7916fd4f482e0c57929b171f4a2eb83 +size 375295 diff --git a/datasets/xianshiping/train/images/订单1807455_51_7115711.jpg b/datasets/xianshiping/train/images/订单1807455_51_7115711.jpg new file mode 100644 index 0000000..d2eedd0 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807455_51_7115711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80fd8bef35b8a1639544c039d08f8554a2c7b16e81ea8adab37f14c625f47f2 +size 88740 diff --git a/datasets/xianshiping/train/images/订单1807459_51_7115757.jpg b/datasets/xianshiping/train/images/订单1807459_51_7115757.jpg new file mode 100644 index 0000000..07d6d41 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807459_51_7115757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e82ea6132c2d753a2fa762ef02d66188bd97404a60093b4fbc562da7c2593c +size 164403 diff --git a/datasets/xianshiping/train/images/订单1807462_51_7115731.jpg b/datasets/xianshiping/train/images/订单1807462_51_7115731.jpg new file mode 100644 index 0000000..074c42c --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807462_51_7115731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d69084f7c63272f0cbb534280a00bd303d9daf48e9d9d071e4ceb0c4548db8 +size 156761 diff --git a/datasets/xianshiping/train/images/订单1807463_51_7115739.jpg b/datasets/xianshiping/train/images/订单1807463_51_7115739.jpg new file mode 100644 index 0000000..d4ca982 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807463_51_7115739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf2f4c6ee10b3100cbd32ef7fcfcc259c92bb597282061d670c1de7ce396136 +size 143384 diff --git a/datasets/xianshiping/train/images/订单1807466_51_7115795.jpg b/datasets/xianshiping/train/images/订单1807466_51_7115795.jpg new file mode 100644 index 0000000..9073c31 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807466_51_7115795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0c0d70d01c54447a96896335cdfa0e77202ab3f849df9d59f72a3a24edb922 +size 191494 diff --git a/datasets/xianshiping/train/images/订单1807471_51_7116054.jpg b/datasets/xianshiping/train/images/订单1807471_51_7116054.jpg new file mode 100644 index 0000000..61a1e67 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807471_51_7116054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a93f451c3ede3f05dd33750f4692eb6be80be5c3def7feb12d5af2b8b89d194 +size 96829 diff --git a/datasets/xianshiping/train/images/订单1807472_51_7115781.jpg b/datasets/xianshiping/train/images/订单1807472_51_7115781.jpg new file mode 100644 index 0000000..17204c6 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807472_51_7115781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282f83b30cb02ba374ebe755cda9d68fd7e2972729bfdf6e99619a89c6139586 +size 139890 diff --git a/datasets/xianshiping/train/images/订单1807473_51_7115861.jpg b/datasets/xianshiping/train/images/订单1807473_51_7115861.jpg new file mode 100644 index 0000000..5e4789b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807473_51_7115861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573309a246a85f43b13c29e52d4a0f59dd10b04c4e806f95a3d14951516bb12f +size 355565 diff --git a/datasets/xianshiping/train/images/订单1807474_51_7115810.jpg b/datasets/xianshiping/train/images/订单1807474_51_7115810.jpg new file mode 100644 index 0000000..e02085b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807474_51_7115810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf4523a8dd27a465aabd81a3c62905102652359247567d1d62f2081b18449fe +size 88364 diff --git a/datasets/xianshiping/train/images/订单1807475_51_7115914.jpg b/datasets/xianshiping/train/images/订单1807475_51_7115914.jpg new file mode 100644 index 0000000..3978f0a --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807475_51_7115914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202b6caaaaa90122651d0983a06bc091947413e731ad86150cd430c61859ffad +size 125066 diff --git a/datasets/xianshiping/train/images/订单1807476_51_7115863.jpg b/datasets/xianshiping/train/images/订单1807476_51_7115863.jpg new file mode 100644 index 0000000..6075952 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807476_51_7115863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5209bef95f85660db33cbf4e9342dbaf834de223e25c9df113efeb549daaeda +size 475842 diff --git a/datasets/xianshiping/train/images/订单1807478_51_7115862.jpg b/datasets/xianshiping/train/images/订单1807478_51_7115862.jpg new file mode 100644 index 0000000..0dc9a0d --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807478_51_7115862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5ecc691706fe6d68a4677df07188423df2cf47b893e68700c0b1dea32b3aa7 +size 151502 diff --git a/datasets/xianshiping/train/images/订单1807479_51_7115927.jpg b/datasets/xianshiping/train/images/订单1807479_51_7115927.jpg new file mode 100644 index 0000000..d103dbf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807479_51_7115927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26dc78fa4d093f2e490b3bad81a3cbf026b3e55822834531d0a9c9d41e7c3e7 +size 573034 diff --git a/datasets/xianshiping/train/images/订单1807481_51_7115895.jpg b/datasets/xianshiping/train/images/订单1807481_51_7115895.jpg new file mode 100644 index 0000000..77016bf --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807481_51_7115895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d81cb3d46f63e460b70bc0ff15654839a6521e0710ac43566192153c272101c +size 172075 diff --git a/datasets/xianshiping/train/images/订单1807483_51_7116022.jpg b/datasets/xianshiping/train/images/订单1807483_51_7116022.jpg new file mode 100644 index 0000000..1fe0ef7 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807483_51_7116022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c223d99d8826f2ae296b7de01dd696888b9ec68011ebcf7f0f9526f3c38bed9 +size 66470 diff --git a/datasets/xianshiping/train/images/订单1807487_51_7115978.jpg b/datasets/xianshiping/train/images/订单1807487_51_7115978.jpg new file mode 100644 index 0000000..e639a61 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807487_51_7115978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99493fd87ed9af86a10221605c498af6ee761796f803557d44577bb0e2490104 +size 44215 diff --git a/datasets/xianshiping/train/images/订单1807489_51_7115997.jpg b/datasets/xianshiping/train/images/订单1807489_51_7115997.jpg new file mode 100644 index 0000000..37fa6fc --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807489_51_7115997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987dcaf98450daa7cf01ce03b092cae2b5df14ec7061cc36a3e1ba69f399451c +size 500456 diff --git a/datasets/xianshiping/train/images/订单1807495_51_7116081.jpg b/datasets/xianshiping/train/images/订单1807495_51_7116081.jpg new file mode 100644 index 0000000..f4cec77 --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807495_51_7116081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc539ba0b1d5ec758eb46ff930df83537f79108ae0e6df3082c975a887df4bf +size 139175 diff --git a/datasets/xianshiping/train/images/订单1807496_51_7116067.jpg b/datasets/xianshiping/train/images/订单1807496_51_7116067.jpg new file mode 100644 index 0000000..3a6819b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807496_51_7116067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b232f7c1a37938e2409f756108017d2d6827ea7a54d2f9406cb42d73ecd795 +size 197873 diff --git a/datasets/xianshiping/train/images/订单1807497_51_7116086.jpg b/datasets/xianshiping/train/images/订单1807497_51_7116086.jpg new file mode 100644 index 0000000..d78db8b --- /dev/null +++ b/datasets/xianshiping/train/images/订单1807497_51_7116086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da28492447b3b660a4ca30390d898628b4ce8bdf8b9481192efca6a30077998 +size 119268 diff --git a/datasets/xianshiping/train/labels/订单1805509_51_7097852.txt b/datasets/xianshiping/train/labels/订单1805509_51_7097852.txt new file mode 100644 index 0000000..6194bf6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805509_51_7097852.txt @@ -0,0 +1 @@ +6 0.060000 0.292646 0.060000 0.417314 0.327721 0.421250 0.325977 0.295264 0.063503 0.284766 diff --git a/datasets/xianshiping/train/labels/订单1805510_51_7098040.txt b/datasets/xianshiping/train/labels/订单1805510_51_7098040.txt new file mode 100644 index 0000000..ed1d924 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805510_51_7098040.txt @@ -0,0 +1 @@ +6 0.458164 0.419941 0.460132 0.538053 0.610723 0.534115 0.606787 0.417318 0.457183 0.419941 diff --git a/datasets/xianshiping/train/labels/订单1805511_51_7097845.txt b/datasets/xianshiping/train/labels/订单1805511_51_7097845.txt new file mode 100644 index 0000000..6bffa55 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805511_51_7097845.txt @@ -0,0 +1 @@ +6 0.471159 0.486912 0.483359 0.593206 0.748294 0.568275 0.718659 0.456725 0.476393 0.484284 diff --git a/datasets/xianshiping/train/labels/订单1805512_51_7097838.txt b/datasets/xianshiping/train/labels/订单1805512_51_7097838.txt new file mode 100644 index 0000000..e791b30 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805512_51_7097838.txt @@ -0,0 +1 @@ +6 0.448464 0.568232 0.444961 0.662725 0.658424 0.665342 0.661927 0.570859 0.443203 0.568232 diff --git a/datasets/xianshiping/train/labels/订单1805513_51_7097862.txt b/datasets/xianshiping/train/labels/订单1805513_51_7097862.txt new file mode 100644 index 0000000..4098fec --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805513_51_7097862.txt @@ -0,0 +1 @@ +6 0.386222 0.464598 0.375725 0.542029 0.589190 0.553833 0.583948 0.475098 0.380967 0.464598 diff --git a/datasets/xianshiping/train/labels/订单1805520_51_7097937.txt b/datasets/xianshiping/train/labels/订单1805520_51_7097937.txt new file mode 100644 index 0000000..a9a906a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805520_51_7097937.txt @@ -0,0 +1 @@ +6 0.383711 0.473740 0.373216 0.565605 0.595443 0.564297 0.593685 0.471123 0.385469 0.469805 diff --git a/datasets/xianshiping/train/labels/订单1805524_51_7097938.txt b/datasets/xianshiping/train/labels/订单1805524_51_7097938.txt new file mode 100644 index 0000000..99b7f2d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805524_51_7097938.txt @@ -0,0 +1 @@ +6 0.214985 0.515744 0.231273 0.581358 0.426718 0.565614 0.412761 0.500000 0.221963 0.513123 diff --git a/datasets/xianshiping/train/labels/订单1805525_51_7097930.txt b/datasets/xianshiping/train/labels/订单1805525_51_7097930.txt new file mode 100644 index 0000000..28ebaed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805525_51_7097930.txt @@ -0,0 +1 @@ +6 0.297969 0.309697 0.304974 0.435684 0.628685 0.422559 0.607682 0.295264 0.299727 0.305762 diff --git a/datasets/xianshiping/train/labels/订单1805526_51_7097979.txt b/datasets/xianshiping/train/labels/订单1805526_51_7097979.txt new file mode 100644 index 0000000..9d4d366 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805526_51_7097979.txt @@ -0,0 +1 @@ +6 0.292721 0.376631 0.294479 0.471123 0.509701 0.451436 0.500951 0.354326 0.290977 0.374004 diff --git a/datasets/xianshiping/train/labels/订单1805528_51_7097986.txt b/datasets/xianshiping/train/labels/订单1805528_51_7097986.txt new file mode 100644 index 0000000..c97a69d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805528_51_7097986.txt @@ -0,0 +1 @@ +6 0.164872 0.421292 0.171872 0.544654 0.467583 0.527592 0.448339 0.412108 0.166622 0.418667 diff --git a/datasets/xianshiping/train/labels/订单1805530_51_7098034.txt b/datasets/xianshiping/train/labels/订单1805530_51_7098034.txt new file mode 100644 index 0000000..28edcd3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805530_51_7098034.txt @@ -0,0 +1 @@ +6 0.419464 0.452784 0.428209 0.555147 0.667935 0.545961 0.664431 0.444912 0.429961 0.452784 diff --git a/datasets/xianshiping/train/labels/订单1805537_51_7097998.txt b/datasets/xianshiping/train/labels/订单1805537_51_7097998.txt new file mode 100644 index 0000000..7416c6c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805537_51_7097998.txt @@ -0,0 +1 @@ +6 0.568666 0.410761 0.564003 0.461938 0.766442 0.472439 0.768758 0.414697 0.573313 0.409446 diff --git a/datasets/xianshiping/train/labels/订单1805539_51_7098124.txt b/datasets/xianshiping/train/labels/订单1805539_51_7098124.txt new file mode 100644 index 0000000..343139f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805539_51_7098124.txt @@ -0,0 +1 @@ +6 0.301356 0.544654 0.310106 0.649638 0.532328 0.635204 0.516578 0.531529 0.308356 0.542029 diff --git a/datasets/xianshiping/train/labels/订单1805540_51_7098097.txt b/datasets/xianshiping/train/labels/订单1805540_51_7098097.txt new file mode 100644 index 0000000..e1b1377 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805540_51_7098097.txt @@ -0,0 +1 @@ +6 0.346970 0.450160 0.368620 0.640447 0.459175 0.624700 0.438505 0.434407 0.352875 0.450160 diff --git a/datasets/xianshiping/train/labels/订单1805542_51_7098142.txt b/datasets/xianshiping/train/labels/订单1805542_51_7098142.txt new file mode 100644 index 0000000..ad20592 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805542_51_7098142.txt @@ -0,0 +1 @@ +6 0.346850 0.506596 0.343350 0.603708 0.560322 0.606333 0.565572 0.509221 0.355600 0.503971 diff --git a/datasets/xianshiping/train/labels/订单1805543_51_7098125.txt b/datasets/xianshiping/train/labels/订单1805543_51_7098125.txt new file mode 100644 index 0000000..200c1cf --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805543_51_7098125.txt @@ -0,0 +1 @@ +6 0.406458 0.527549 0.406458 0.586602 0.576185 0.586602 0.569193 0.518359 0.409961 0.524922 diff --git a/datasets/xianshiping/train/labels/订单1805545_51_7098061.txt b/datasets/xianshiping/train/labels/订单1805545_51_7098061.txt new file mode 100644 index 0000000..bd18436 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805545_51_7098061.txt @@ -0,0 +1 @@ +6 0.177213 0.555090 0.231467 0.627270 0.394187 0.553780 0.331200 0.477660 0.171973 0.553780 diff --git a/datasets/xianshiping/train/labels/订单1805548_51_7098174.txt b/datasets/xianshiping/train/labels/订单1805548_51_7098174.txt new file mode 100644 index 0000000..5f9c81a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805548_51_7098174.txt @@ -0,0 +1 @@ +6 0.617515 0.430441 0.615199 0.484247 0.780399 0.489498 0.782715 0.431756 0.615199 0.431756 diff --git a/datasets/xianshiping/train/labels/订单1805552_51_7098206.txt b/datasets/xianshiping/train/labels/订单1805552_51_7098206.txt new file mode 100644 index 0000000..2be2b20 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805552_51_7098206.txt @@ -0,0 +1 @@ +6 0.525328 0.393733 0.530578 0.492158 0.735300 0.493471 0.742300 0.393733 0.525328 0.392421 diff --git a/datasets/xianshiping/train/labels/订单1805556_51_7098248.txt b/datasets/xianshiping/train/labels/订单1805556_51_7098248.txt new file mode 100644 index 0000000..700d7fa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805556_51_7098248.txt @@ -0,0 +1 @@ +6 0.325977 0.459307 0.322474 0.589229 0.576185 0.599727 0.583190 0.464561 0.329466 0.457998 diff --git a/datasets/xianshiping/train/labels/订单1805557_51_7098288.txt b/datasets/xianshiping/train/labels/订单1805557_51_7098288.txt new file mode 100644 index 0000000..d577276 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805557_51_7098288.txt @@ -0,0 +1 @@ +6 0.317227 0.485557 0.329466 0.581357 0.584935 0.556426 0.567448 0.451436 0.315469 0.481621 diff --git a/datasets/xianshiping/train/labels/订单1805558_51_7098208.txt b/datasets/xianshiping/train/labels/订单1805558_51_7098208.txt new file mode 100644 index 0000000..37a56b8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805558_51_7098208.txt @@ -0,0 +1 @@ +6 0.418794 0.540677 0.415840 0.636478 0.543794 0.636478 0.542813 0.540677 0.416826 0.539362 diff --git a/datasets/xianshiping/train/labels/订单1805559_51_7098303.txt b/datasets/xianshiping/train/labels/订单1805559_51_7098303.txt new file mode 100644 index 0000000..d73f103 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805559_51_7098303.txt @@ -0,0 +1 @@ +6 0.346850 0.422604 0.343350 0.515779 0.583072 0.521029 0.579572 0.418667 0.348600 0.419979 diff --git a/datasets/xianshiping/train/labels/订单1805560_51_7098355.txt b/datasets/xianshiping/train/labels/订单1805560_51_7098355.txt new file mode 100644 index 0000000..c76035a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805560_51_7098355.txt @@ -0,0 +1 @@ +6 0.457192 0.662744 0.469990 0.897647 0.584163 0.885840 0.569399 0.653551 0.457192 0.660115 diff --git a/datasets/xianshiping/train/labels/订单1805561_51_7098457.txt b/datasets/xianshiping/train/labels/订单1805561_51_7098457.txt new file mode 100644 index 0000000..78f0d19 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805561_51_7098457.txt @@ -0,0 +1 @@ +6 0.231621 0.524928 0.244746 0.654850 0.429785 0.639102 0.423223 0.510495 0.236868 0.522305 diff --git a/datasets/xianshiping/train/labels/订单1805565_51_7098285.txt b/datasets/xianshiping/train/labels/订单1805565_51_7098285.txt new file mode 100644 index 0000000..d6babdf --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805565_51_7098285.txt @@ -0,0 +1 @@ +6 0.325977 0.349072 0.329466 0.447500 0.528945 0.444873 0.520195 0.346445 0.325977 0.349072 diff --git a/datasets/xianshiping/train/labels/订单1805567_51_7098253.txt b/datasets/xianshiping/train/labels/订单1805567_51_7098253.txt new file mode 100644 index 0000000..e3956af --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805567_51_7098253.txt @@ -0,0 +1 @@ +6 0.324219 0.514424 0.327721 0.611543 0.539440 0.604980 0.537695 0.506553 0.327721 0.511807 diff --git a/datasets/xianshiping/train/labels/订单1805569_51_7098391.txt b/datasets/xianshiping/train/labels/订单1805569_51_7098391.txt new file mode 100644 index 0000000..212a1b7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805569_51_7098391.txt @@ -0,0 +1 @@ +6 0.513203 0.427812 0.469453 0.498682 0.640938 0.553799 0.674180 0.473740 0.520195 0.427812 diff --git a/datasets/xianshiping/train/labels/订单1805570_51_7098370.txt b/datasets/xianshiping/train/labels/订单1805570_51_7098370.txt new file mode 100644 index 0000000..158b533 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805570_51_7098370.txt @@ -0,0 +1 @@ +6 0.292721 0.422559 0.325977 0.560361 0.597187 0.538047 0.563945 0.405498 0.294479 0.418623 diff --git a/datasets/xianshiping/train/labels/订单1805571_51_7099256.txt b/datasets/xianshiping/train/labels/订单1805571_51_7099256.txt new file mode 100644 index 0000000..5d6deb4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805571_51_7099256.txt @@ -0,0 +1 @@ +6 0.274774 0.217865 0.292518 0.278239 0.382232 0.261177 0.362512 0.194245 0.274774 0.212622 diff --git a/datasets/xianshiping/train/labels/订单1805573_51_7098331.txt b/datasets/xianshiping/train/labels/订单1805573_51_7098331.txt new file mode 100644 index 0000000..e13f65b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805573_51_7098331.txt @@ -0,0 +1 @@ +6 0.247987 0.616833 0.440458 0.552529 0.492954 0.647010 0.288235 0.706069 0.246235 0.616833 diff --git a/datasets/xianshiping/train/labels/订单1805575_51_7098413.txt b/datasets/xianshiping/train/labels/订单1805575_51_7098413.txt new file mode 100644 index 0000000..83b6bbe --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805575_51_7098413.txt @@ -0,0 +1 @@ +6 0.393345 0.437007 0.379343 0.534118 0.633068 0.544619 0.638316 0.439628 0.395098 0.435692 diff --git a/datasets/xianshiping/train/labels/订单1805576_51_7098503.txt b/datasets/xianshiping/train/labels/订单1805576_51_7098503.txt new file mode 100644 index 0000000..155a408 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805576_51_7098503.txt @@ -0,0 +1 @@ +6 0.399344 0.377987 0.395844 0.506596 0.693306 0.510533 0.688056 0.377987 0.406344 0.380608 diff --git a/datasets/xianshiping/train/labels/订单1805578_51_7098451.txt b/datasets/xianshiping/train/labels/订单1805578_51_7098451.txt new file mode 100644 index 0000000..87213a0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805578_51_7098451.txt @@ -0,0 +1 @@ +6 0.332222 0.444931 0.334193 0.553854 0.471988 0.553854 0.466076 0.444931 0.332222 0.440995 diff --git a/datasets/xianshiping/train/labels/订单1805579_51_7098438.txt b/datasets/xianshiping/train/labels/订单1805579_51_7098438.txt new file mode 100644 index 0000000..a91d8ab --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805579_51_7098438.txt @@ -0,0 +1 @@ +6 0.481583 0.452788 0.483333 0.543342 0.691556 0.545967 0.688056 0.451475 0.479833 0.452788 diff --git a/datasets/xianshiping/train/labels/订单1805580_51_7098406.txt b/datasets/xianshiping/train/labels/订单1805580_51_7098406.txt new file mode 100644 index 0000000..6443eda --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805580_51_7098406.txt @@ -0,0 +1 @@ +6 0.706196 0.362201 0.690449 0.478997 0.856787 0.517057 0.869580 0.389759 0.706196 0.358262 diff --git a/datasets/xianshiping/train/labels/订单1805583_51_7098571.txt b/datasets/xianshiping/train/labels/订单1805583_51_7098571.txt new file mode 100644 index 0000000..ebc61f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805583_51_7098571.txt @@ -0,0 +1 @@ +6 0.305725 0.224441 0.296980 0.341235 0.543699 0.343863 0.552444 0.217882 0.305725 0.220500 diff --git a/datasets/xianshiping/train/labels/订单1805587_51_7098669.txt b/datasets/xianshiping/train/labels/订单1805587_51_7098669.txt new file mode 100644 index 0000000..2f153d4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805587_51_7098669.txt @@ -0,0 +1 @@ +6 0.509935 0.166651 0.487049 0.262454 0.613281 0.305764 0.628043 0.198148 0.510673 0.161404 diff --git a/datasets/xianshiping/train/labels/订单1805592_51_7098703.txt b/datasets/xianshiping/train/labels/订单1805592_51_7098703.txt new file mode 100644 index 0000000..37eefa2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805592_51_7098703.txt @@ -0,0 +1 @@ +6 0.406982 0.443561 0.408950 0.561673 0.548716 0.555111 0.544780 0.443561 0.407969 0.440937 diff --git a/datasets/xianshiping/train/labels/订单1805593_51_7098545.txt b/datasets/xianshiping/train/labels/订单1805593_51_7098545.txt new file mode 100644 index 0000000..f7b41f5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805593_51_7098545.txt @@ -0,0 +1 @@ +6 0.455347 0.437040 0.453588 0.515781 0.630324 0.515781 0.625069 0.434418 0.455336 0.434418 diff --git a/datasets/xianshiping/train/labels/订单1805596_51_7098501.txt b/datasets/xianshiping/train/labels/订单1805596_51_7098501.txt new file mode 100644 index 0000000..a262516 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805596_51_7098501.txt @@ -0,0 +1 @@ +6 0.423933 0.566900 0.355693 0.682390 0.602413 0.766380 0.670653 0.649580 0.427440 0.566900 diff --git a/datasets/xianshiping/train/labels/订单1805597_51_7098528.txt b/datasets/xianshiping/train/labels/订单1805597_51_7098528.txt new file mode 100644 index 0000000..ed1a1d3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805597_51_7098528.txt @@ -0,0 +1 @@ +6 0.394097 0.278247 0.385347 0.383238 0.644317 0.392422 0.647813 0.283498 0.394097 0.278255 diff --git a/datasets/xianshiping/train/labels/订单1805605_51_7098836.txt b/datasets/xianshiping/train/labels/订单1805605_51_7098836.txt new file mode 100644 index 0000000..07110a0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805605_51_7098836.txt @@ -0,0 +1 @@ +6 0.257865 0.408132 0.276243 0.505241 0.441595 0.476374 0.421908 0.380573 0.256556 0.408132 diff --git a/datasets/xianshiping/train/labels/订单1805608_51_7098659.txt b/datasets/xianshiping/train/labels/订单1805608_51_7098659.txt new file mode 100644 index 0000000..0b78a82 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805608_51_7098659.txt @@ -0,0 +1 @@ +6 0.227960 0.465850 0.156213 0.628580 0.486933 0.703390 0.562173 0.547220 0.229707 0.464540 diff --git a/datasets/xianshiping/train/labels/订单1805609_51_7098743.txt b/datasets/xianshiping/train/labels/订单1805609_51_7098743.txt new file mode 100644 index 0000000..0137fb1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805609_51_7098743.txt @@ -0,0 +1 @@ +6 0.427461 0.326758 0.427461 0.421250 0.637435 0.422559 0.628685 0.325449 0.432708 0.324141 diff --git a/datasets/xianshiping/train/labels/订单1805615_51_7098757.txt b/datasets/xianshiping/train/labels/订单1805615_51_7098757.txt new file mode 100644 index 0000000..e24f38c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805615_51_7098757.txt @@ -0,0 +1 @@ +6 0.217487 0.255898 0.212240 0.380566 0.462461 0.383193 0.462461 0.257207 0.215742 0.254580 diff --git a/datasets/xianshiping/train/labels/订单1805620_51_7098837.txt b/datasets/xianshiping/train/labels/订单1805620_51_7098837.txt new file mode 100644 index 0000000..27a1b3f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805620_51_7098837.txt @@ -0,0 +1 @@ +6 0.644413 0.366120 0.633907 0.496040 0.929627 0.493410 0.933120 0.352990 0.649653 0.364800 diff --git a/datasets/xianshiping/train/labels/订单1805621_51_7098899.txt b/datasets/xianshiping/train/labels/订单1805621_51_7098899.txt new file mode 100644 index 0000000..18e3354 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805621_51_7098899.txt @@ -0,0 +1 @@ +6 0.334727 0.513115 0.324219 0.616787 0.537695 0.628604 0.551693 0.524922 0.336471 0.511807 diff --git a/datasets/xianshiping/train/labels/订单1805624_51_7098851.txt b/datasets/xianshiping/train/labels/订单1805624_51_7098851.txt new file mode 100644 index 0000000..a08f16c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805624_51_7098851.txt @@ -0,0 +1 @@ +6 0.320729 0.627285 0.317227 0.716523 0.509701 0.712588 0.507943 0.620723 0.320716 0.625977 diff --git a/datasets/xianshiping/train/labels/订单1805627_51_7099446.txt b/datasets/xianshiping/train/labels/订单1805627_51_7099446.txt new file mode 100644 index 0000000..64fd3a2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805627_51_7099446.txt @@ -0,0 +1 @@ +6 0.441458 0.446182 0.437956 0.534111 0.646185 0.544609 0.651432 0.448809 0.443203 0.442246 diff --git a/datasets/xianshiping/train/labels/订单1805629_51_7098926.txt b/datasets/xianshiping/train/labels/订单1805629_51_7098926.txt new file mode 100644 index 0000000..b77265b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805629_51_7098926.txt @@ -0,0 +1 @@ +6 0.165840 0.296582 0.160923 0.459310 0.353833 0.476374 0.358755 0.317578 0.167813 0.295267 diff --git a/datasets/xianshiping/train/labels/订单1805632_51_7098946.txt b/datasets/xianshiping/train/labels/订单1805632_51_7098946.txt new file mode 100644 index 0000000..f15744c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805632_51_7098946.txt @@ -0,0 +1 @@ +6 0.432589 0.522342 0.418589 0.611583 0.612817 0.616829 0.614567 0.526279 0.432589 0.522342 diff --git a/datasets/xianshiping/train/labels/订单1805638_51_7098944.txt b/datasets/xianshiping/train/labels/订单1805638_51_7098944.txt new file mode 100644 index 0000000..2d108a5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805638_51_7098944.txt @@ -0,0 +1 @@ +6 0.234987 0.379258 0.266484 0.497363 0.565690 0.447500 0.520195 0.328076 0.234987 0.379258 diff --git a/datasets/xianshiping/train/labels/订单1805639_51_7098976.txt b/datasets/xianshiping/train/labels/订单1805639_51_7098976.txt new file mode 100644 index 0000000..36ab5ad --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805639_51_7098976.txt @@ -0,0 +1 @@ +6 0.355703 0.352990 0.341699 0.506532 0.663660 0.517034 0.668905 0.362181 0.359199 0.349056 diff --git a/datasets/xianshiping/train/labels/订单1805640_51_7098963.txt b/datasets/xianshiping/train/labels/订单1805640_51_7098963.txt new file mode 100644 index 0000000..f8531de --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805640_51_7098963.txt @@ -0,0 +1 @@ +6 0.544701 0.412061 0.549948 0.530176 0.821159 0.538047 0.826406 0.409443 0.541198 0.409443 diff --git a/datasets/xianshiping/train/labels/订单1805641_51_7099018.txt b/datasets/xianshiping/train/labels/订单1805641_51_7099018.txt new file mode 100644 index 0000000..b2ff8ee --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805641_51_7099018.txt @@ -0,0 +1 @@ +6 0.349479 0.346450 0.337813 0.430439 0.578116 0.444878 0.601450 0.363511 0.347144 0.346450 diff --git a/datasets/xianshiping/train/labels/订单1805650_51_7099158.txt b/datasets/xianshiping/train/labels/订单1805650_51_7099158.txt new file mode 100644 index 0000000..7ccac08 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805650_51_7099158.txt @@ -0,0 +1 @@ +6 0.373974 0.481657 0.366967 0.564333 0.541948 0.566961 0.545451 0.488216 0.366967 0.480343 diff --git a/datasets/xianshiping/train/labels/订单1805651_51_7099073.txt b/datasets/xianshiping/train/labels/订单1805651_51_7099073.txt new file mode 100644 index 0000000..1b0c755 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805651_51_7099073.txt @@ -0,0 +1 @@ +6 0.332850 0.427854 0.331100 0.569588 0.614567 0.569588 0.614567 0.427854 0.332850 0.425229 diff --git a/datasets/xianshiping/train/labels/订单1805657_51_7099117.txt b/datasets/xianshiping/train/labels/订单1805657_51_7099117.txt new file mode 100644 index 0000000..196ac79 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805657_51_7099117.txt @@ -0,0 +1 @@ +6 0.459839 0.514429 0.459839 0.606298 0.654060 0.607604 0.647059 0.518365 0.458085 0.514429 diff --git a/datasets/xianshiping/train/labels/订单1805658_51_7099576.txt b/datasets/xianshiping/train/labels/订单1805658_51_7099576.txt new file mode 100644 index 0000000..4dacbac --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805658_51_7099576.txt @@ -0,0 +1 @@ +6 0.420460 0.498678 0.408214 0.591855 0.611187 0.597103 0.609438 0.505241 0.427460 0.497366 diff --git a/datasets/xianshiping/train/labels/订单1805659_51_7099146.txt b/datasets/xianshiping/train/labels/订单1805659_51_7099146.txt new file mode 100644 index 0000000..25cd3fa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805659_51_7099146.txt @@ -0,0 +1 @@ +6 0.357474 0.417314 0.364466 0.545918 0.614687 0.538047 0.611185 0.408125 0.352214 0.419941 diff --git a/datasets/xianshiping/train/labels/订单1805660_51_7099156.txt b/datasets/xianshiping/train/labels/订单1805660_51_7099156.txt new file mode 100644 index 0000000..dd723d0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805660_51_7099156.txt @@ -0,0 +1 @@ +6 0.196467 0.255880 0.189467 0.538030 0.835133 0.547220 0.835133 0.258500 0.203467 0.253250 diff --git a/datasets/xianshiping/train/labels/订单1805661_51_7099341.txt b/datasets/xianshiping/train/labels/订单1805661_51_7099341.txt new file mode 100644 index 0000000..3042259 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805661_51_7099341.txt @@ -0,0 +1 @@ +6 0.689815 0.442292 0.653067 0.540720 0.847292 0.580087 0.871794 0.485599 0.693310 0.440981 diff --git a/datasets/xianshiping/train/labels/订单1805662_51_7099241.txt b/datasets/xianshiping/train/labels/订单1805662_51_7099241.txt new file mode 100644 index 0000000..d52f2db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805662_51_7099241.txt @@ -0,0 +1 @@ +6 0.500951 0.493428 0.486953 0.574795 0.679427 0.586602 0.682930 0.502617 0.500951 0.492119 diff --git a/datasets/xianshiping/train/labels/订单1805667_51_7099345.txt b/datasets/xianshiping/train/labels/订单1805667_51_7099345.txt new file mode 100644 index 0000000..90de8ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805667_51_7099345.txt @@ -0,0 +1 @@ +6 0.360989 0.539365 0.336557 0.602358 0.587000 0.619419 0.602273 0.553799 0.370159 0.538052 diff --git a/datasets/xianshiping/train/labels/订单1805672_51_7099269.txt b/datasets/xianshiping/train/labels/订单1805672_51_7099269.txt new file mode 100644 index 0000000..acec0d3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805672_51_7099269.txt @@ -0,0 +1 @@ +6 0.390716 0.397627 0.353971 0.522305 0.614687 0.578730 0.656680 0.451436 0.394219 0.397627 diff --git a/datasets/xianshiping/train/labels/订单1805677_51_7099314.txt b/datasets/xianshiping/train/labels/订单1805677_51_7099314.txt new file mode 100644 index 0000000..e745afe --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805677_51_7099314.txt @@ -0,0 +1 @@ +6 0.345077 0.486894 0.353821 0.586625 0.570795 0.590567 0.551551 0.479019 0.345077 0.485577 diff --git a/datasets/xianshiping/train/labels/订单1805680_51_7099400.txt b/datasets/xianshiping/train/labels/订单1805680_51_7099400.txt new file mode 100644 index 0000000..e3636fd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805680_51_7099400.txt @@ -0,0 +1 @@ +6 0.547755 0.455407 0.574330 0.696873 0.701300 0.674567 0.676695 0.429160 0.545785 0.454093 diff --git a/datasets/xianshiping/train/labels/订单1805681_51_7099392.txt b/datasets/xianshiping/train/labels/订单1805681_51_7099392.txt new file mode 100644 index 0000000..ad4f63e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805681_51_7099392.txt @@ -0,0 +1 @@ +6 0.407804 0.536743 0.414809 0.625981 0.662109 0.620732 0.650443 0.535430 0.412474 0.534116 diff --git a/datasets/xianshiping/train/labels/订单1805683_51_7099308.txt b/datasets/xianshiping/train/labels/订单1805683_51_7099308.txt new file mode 100644 index 0000000..208ffea --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805683_51_7099308.txt @@ -0,0 +1 @@ +6 0.275116 0.526285 0.294363 0.626024 0.507836 0.591901 0.478090 0.488229 0.276863 0.523655 diff --git a/datasets/xianshiping/train/labels/订单1805684_51_7099421.txt b/datasets/xianshiping/train/labels/订单1805684_51_7099421.txt new file mode 100644 index 0000000..287bc97 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805684_51_7099421.txt @@ -0,0 +1 @@ +6 0.248960 0.362180 0.241960 0.489470 0.542920 0.488160 0.537667 0.359550 0.247213 0.360870 diff --git a/datasets/xianshiping/train/labels/订单1805691_51_7099534.txt b/datasets/xianshiping/train/labels/订单1805691_51_7099534.txt new file mode 100644 index 0000000..090a1d3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805691_51_7099534.txt @@ -0,0 +1 @@ +6 0.401094 0.150950 0.345100 0.241504 0.569072 0.328117 0.621567 0.231004 0.401094 0.147012 diff --git a/datasets/xianshiping/train/labels/订单1805692_51_7099444.txt b/datasets/xianshiping/train/labels/订单1805692_51_7099444.txt new file mode 100644 index 0000000..7727314 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805692_51_7099444.txt @@ -0,0 +1 @@ +6 0.425684 0.325456 0.426670 0.471120 0.596943 0.460625 0.588086 0.308392 0.425684 0.321517 diff --git a/datasets/xianshiping/train/labels/订单1805694_51_7099545.txt b/datasets/xianshiping/train/labels/订单1805694_51_7099545.txt new file mode 100644 index 0000000..34617f9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805694_51_7099545.txt @@ -0,0 +1 @@ +6 0.413431 0.530159 0.408186 0.637770 0.651405 0.632525 0.644412 0.524902 0.415180 0.528848 diff --git a/datasets/xianshiping/train/labels/订单1805696_51_7099528.txt b/datasets/xianshiping/train/labels/订单1805696_51_7099528.txt new file mode 100644 index 0000000..0c0d90b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805696_51_7099528.txt @@ -0,0 +1 @@ +6 0.338102 0.490851 0.325856 0.580087 0.528831 0.586649 0.527083 0.494783 0.336354 0.490851 diff --git a/datasets/xianshiping/train/labels/订单1805698_51_7099633.txt b/datasets/xianshiping/train/labels/订单1805698_51_7099633.txt new file mode 100644 index 0000000..d245ae0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805698_51_7099633.txt @@ -0,0 +1 @@ +6 0.576185 0.337266 0.558698 0.431748 0.756419 0.446182 0.768672 0.349072 0.577943 0.335947 diff --git a/datasets/xianshiping/train/labels/订单1805699_51_7099594.txt b/datasets/xianshiping/train/labels/订单1805699_51_7099594.txt new file mode 100644 index 0000000..f32d1a5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805699_51_7099594.txt @@ -0,0 +1 @@ +6 0.318971 0.448809 0.271732 0.547236 0.483451 0.590537 0.523698 0.490801 0.318971 0.447500 diff --git a/datasets/xianshiping/train/labels/订单1805703_51_7099678.txt b/datasets/xianshiping/train/labels/订单1805703_51_7099678.txt new file mode 100644 index 0000000..3775afa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805703_51_7099678.txt @@ -0,0 +1 @@ +6 0.255039 0.619451 0.286406 0.723127 0.483359 0.682441 0.445013 0.576147 0.256784 0.615520 diff --git a/datasets/xianshiping/train/labels/订单1805704_51_7099624.txt b/datasets/xianshiping/train/labels/订单1805704_51_7099624.txt new file mode 100644 index 0000000..926775a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805704_51_7099624.txt @@ -0,0 +1 @@ +6 0.096211 0.662715 0.212856 0.704710 0.364511 0.616785 0.233278 0.576100 0.099122 0.661405 diff --git a/datasets/xianshiping/train/labels/订单1805706_51_7099653.txt b/datasets/xianshiping/train/labels/订单1805706_51_7099653.txt new file mode 100644 index 0000000..dc8350a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805706_51_7099653.txt @@ -0,0 +1 @@ +6 0.663685 0.337266 0.660182 0.431748 0.866654 0.438311 0.868398 0.339883 0.660182 0.334639 diff --git a/datasets/xianshiping/train/labels/订单1805711_51_7099701.txt b/datasets/xianshiping/train/labels/订单1805711_51_7099701.txt new file mode 100644 index 0000000..9db1ed5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805711_51_7099701.txt @@ -0,0 +1 @@ +6 0.401211 0.371377 0.374961 0.514424 0.667174 0.541982 0.686432 0.402881 0.397708 0.368760 diff --git a/datasets/xianshiping/train/labels/订单1805715_51_7099691.txt b/datasets/xianshiping/train/labels/订单1805715_51_7099691.txt new file mode 100644 index 0000000..83e0627 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805715_51_7099691.txt @@ -0,0 +1 @@ +6 0.392461 0.375322 0.408216 0.599727 0.604193 0.597100 0.588438 0.366133 0.394219 0.372695 diff --git a/datasets/xianshiping/train/labels/订单1805718_51_7099739.txt b/datasets/xianshiping/train/labels/订单1805718_51_7099739.txt new file mode 100644 index 0000000..5e09ddb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805718_51_7099739.txt @@ -0,0 +1 @@ +6 0.275093 0.335951 0.282969 0.485560 0.466040 0.481621 0.455210 0.326764 0.275093 0.334642 diff --git a/datasets/xianshiping/train/labels/订单1805720_51_7099771.txt b/datasets/xianshiping/train/labels/订单1805720_51_7099771.txt new file mode 100644 index 0000000..ef58cca --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805720_51_7099771.txt @@ -0,0 +1 @@ +6 0.399466 0.541982 0.381966 0.641719 0.598932 0.660098 0.607682 0.559043 0.394219 0.541982 diff --git a/datasets/xianshiping/train/labels/订单1805723_51_7099785.txt b/datasets/xianshiping/train/labels/订单1805723_51_7099785.txt new file mode 100644 index 0000000..0f2418a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805723_51_7099785.txt @@ -0,0 +1 @@ +6 0.632160 0.429110 0.586667 0.531470 0.845640 0.593150 0.877133 0.485540 0.628667 0.430420 diff --git a/datasets/xianshiping/train/labels/订单1805726_51_7099833.txt b/datasets/xianshiping/train/labels/订单1805726_51_7099833.txt new file mode 100644 index 0000000..fc29d2c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805726_51_7099833.txt @@ -0,0 +1 @@ +6 0.369604 0.477736 0.364358 0.599775 0.628579 0.602408 0.626831 0.476424 0.366107 0.477736 diff --git a/datasets/xianshiping/train/labels/订单1805727_51_7099850.txt b/datasets/xianshiping/train/labels/订单1805727_51_7099850.txt new file mode 100644 index 0000000..beebf40 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805727_51_7099850.txt @@ -0,0 +1 @@ +6 0.248960 0.329370 0.255960 0.455350 0.511427 0.455350 0.506173 0.329370 0.252453 0.328060 diff --git a/datasets/xianshiping/train/labels/订单1805731_51_7100007.txt b/datasets/xianshiping/train/labels/订单1805731_51_7100007.txt new file mode 100644 index 0000000..4f5216d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805731_51_7100007.txt @@ -0,0 +1 @@ +6 0.397708 0.509180 0.402969 0.635166 0.658424 0.623350 0.642682 0.498682 0.394219 0.506553 diff --git a/datasets/xianshiping/train/labels/订单1805735_51_7099895.txt b/datasets/xianshiping/train/labels/订单1805735_51_7099895.txt new file mode 100644 index 0000000..b9113dc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805735_51_7099895.txt @@ -0,0 +1 @@ +6 0.620604 0.269072 0.499542 0.274322 0.509383 0.526289 0.633400 0.514478 0.620604 0.265133 diff --git a/datasets/xianshiping/train/labels/订单1805736_51_7099971.txt b/datasets/xianshiping/train/labels/订单1805736_51_7099971.txt new file mode 100644 index 0000000..9c31a7e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805736_51_7099971.txt @@ -0,0 +1 @@ +6 0.336471 0.489492 0.336471 0.598418 0.586693 0.597100 0.577943 0.481621 0.327721 0.489492 diff --git a/datasets/xianshiping/train/labels/订单1805737_51_7101315.txt b/datasets/xianshiping/train/labels/订单1805737_51_7101315.txt new file mode 100644 index 0000000..ca84d8c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805737_51_7101315.txt @@ -0,0 +1 @@ +6 0.369580 0.307083 0.380410 0.597109 0.507378 0.585293 0.498521 0.304453 0.368599 0.307083 diff --git a/datasets/xianshiping/train/labels/订单1805739_51_7099950.txt b/datasets/xianshiping/train/labels/订单1805739_51_7099950.txt new file mode 100644 index 0000000..07c0522 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805739_51_7099950.txt @@ -0,0 +1 @@ +6 0.152720 0.392360 0.171973 0.478980 0.381947 0.454040 0.346947 0.368740 0.150973 0.391050 diff --git a/datasets/xianshiping/train/labels/订单1805740_51_7099926.txt b/datasets/xianshiping/train/labels/订单1805740_51_7099926.txt new file mode 100644 index 0000000..9c9d77e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805740_51_7099926.txt @@ -0,0 +1 @@ +6 0.409961 0.585293 0.401211 0.665342 0.565690 0.674531 0.567448 0.594482 0.411706 0.581357 diff --git a/datasets/xianshiping/train/labels/订单1805742_51_7099979.txt b/datasets/xianshiping/train/labels/订单1805742_51_7099979.txt new file mode 100644 index 0000000..2cdb23b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805742_51_7099979.txt @@ -0,0 +1 @@ +6 0.334727 0.559043 0.343464 0.632539 0.502695 0.627285 0.495703 0.551172 0.331224 0.559043 diff --git a/datasets/xianshiping/train/labels/订单1805746_51_7100012.txt b/datasets/xianshiping/train/labels/订单1805746_51_7100012.txt new file mode 100644 index 0000000..6c4039d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805746_51_7100012.txt @@ -0,0 +1 @@ +6 0.376719 0.468496 0.397708 0.559043 0.590195 0.538047 0.572695 0.444873 0.381966 0.464561 diff --git a/datasets/xianshiping/train/labels/订单1805747_51_7100048.txt b/datasets/xianshiping/train/labels/订单1805747_51_7100048.txt new file mode 100644 index 0000000..9a07173 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805747_51_7100048.txt @@ -0,0 +1 @@ +6 0.308356 0.413421 0.303106 0.523654 0.532328 0.526279 0.527078 0.416042 0.297856 0.413417 diff --git a/datasets/xianshiping/train/labels/订单1805748_51_7100087.txt b/datasets/xianshiping/train/labels/订单1805748_51_7100087.txt new file mode 100644 index 0000000..46061a6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805748_51_7100087.txt @@ -0,0 +1 @@ +6 0.347725 0.337304 0.365216 0.473784 0.636431 0.460657 0.624183 0.316304 0.345974 0.334676 diff --git a/datasets/xianshiping/train/labels/订单1805751_51_7100254.txt b/datasets/xianshiping/train/labels/订单1805751_51_7100254.txt new file mode 100644 index 0000000..778e650 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805751_51_7100254.txt @@ -0,0 +1 @@ +6 0.451933 0.566900 0.464187 0.669260 0.681160 0.644330 0.653160 0.543280 0.444933 0.566900 diff --git a/datasets/xianshiping/train/labels/订单1805752_51_7100195.txt b/datasets/xianshiping/train/labels/订单1805752_51_7100195.txt new file mode 100644 index 0000000..868a7eb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805752_51_7100195.txt @@ -0,0 +1 @@ +6 0.441458 0.451436 0.439714 0.534111 0.623437 0.528857 0.625182 0.439619 0.437956 0.447500 diff --git a/datasets/xianshiping/train/labels/订单1805753_51_7100046.txt b/datasets/xianshiping/train/labels/订单1805753_51_7100046.txt new file mode 100644 index 0000000..d453502 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805753_51_7100046.txt @@ -0,0 +1 @@ +6 0.464206 0.272959 0.472956 0.395000 0.719674 0.387129 0.703919 0.270332 0.469453 0.272959 diff --git a/datasets/xianshiping/train/labels/订单1805763_51_7100277.txt b/datasets/xianshiping/train/labels/订单1805763_51_7100277.txt new file mode 100644 index 0000000..ce89e24 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805763_51_7100277.txt @@ -0,0 +1 @@ +6 0.296106 0.463288 0.261111 0.593208 0.509578 0.628642 0.544578 0.510533 0.297856 0.463288 diff --git a/datasets/xianshiping/train/labels/订单1805765_51_7100237.txt b/datasets/xianshiping/train/labels/订单1805765_51_7100237.txt new file mode 100644 index 0000000..600561e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805765_51_7100237.txt @@ -0,0 +1 @@ +6 0.432708 0.475059 0.423958 0.552480 0.586693 0.555107 0.593685 0.475059 0.434453 0.475059 diff --git a/datasets/xianshiping/train/labels/订单1805766_51_7100199.txt b/datasets/xianshiping/train/labels/订单1805766_51_7100199.txt new file mode 100644 index 0000000..72cb03a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805766_51_7100199.txt @@ -0,0 +1 @@ +6 0.423843 0.459349 0.429097 0.535469 0.598819 0.524974 0.586574 0.451476 0.427350 0.455417 diff --git a/datasets/xianshiping/train/labels/订单1805767_51_7100306.txt b/datasets/xianshiping/train/labels/订单1805767_51_7100306.txt new file mode 100644 index 0000000..0949605 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805767_51_7100306.txt @@ -0,0 +1 @@ +6 0.507956 0.450117 0.514948 0.568232 0.761667 0.559043 0.749414 0.440937 0.507943 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1805769_51_7100206.txt b/datasets/xianshiping/train/labels/订单1805769_51_7100206.txt new file mode 100644 index 0000000..cb81df1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805769_51_7100206.txt @@ -0,0 +1 @@ +6 0.636901 0.602358 0.543729 0.692910 0.854286 0.758525 0.944622 0.665352 0.648193 0.598423 diff --git a/datasets/xianshiping/train/labels/订单1805770_51_7100239.txt b/datasets/xianshiping/train/labels/订单1805770_51_7100239.txt new file mode 100644 index 0000000..b11c439 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805770_51_7100239.txt @@ -0,0 +1 @@ +6 0.303229 0.519678 0.303229 0.619414 0.520195 0.604980 0.506198 0.503926 0.304974 0.517051 diff --git a/datasets/xianshiping/train/labels/订单1805771_51_7100316.txt b/datasets/xianshiping/train/labels/订单1805771_51_7100316.txt new file mode 100644 index 0000000..8a9da23 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805771_51_7100316.txt @@ -0,0 +1 @@ +6 0.315369 0.595840 0.395861 0.653586 0.513087 0.555164 0.429098 0.497418 0.315369 0.591906 diff --git a/datasets/xianshiping/train/labels/订单1805773_51_7100246.txt b/datasets/xianshiping/train/labels/订单1805773_51_7100246.txt new file mode 100644 index 0000000..cfa74ac --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805773_51_7100246.txt @@ -0,0 +1 @@ +6 0.366211 0.212588 0.367969 0.325449 0.609440 0.324141 0.598932 0.208652 0.362721 0.211279 diff --git a/datasets/xianshiping/train/labels/订单1805775_51_7100312.txt b/datasets/xianshiping/train/labels/订单1805775_51_7100312.txt new file mode 100644 index 0000000..14f83e7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805775_51_7100312.txt @@ -0,0 +1 @@ +6 0.490427 0.471100 0.474680 0.535410 0.642653 0.534090 0.639160 0.465850 0.486933 0.472410 diff --git a/datasets/xianshiping/train/labels/订单1805779_51_7100335.txt b/datasets/xianshiping/train/labels/订单1805779_51_7100335.txt new file mode 100644 index 0000000..9b536ae --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805779_51_7100335.txt @@ -0,0 +1 @@ +6 0.451953 0.254580 0.444961 0.337266 0.623437 0.343818 0.621680 0.257207 0.450208 0.253271 diff --git a/datasets/xianshiping/train/labels/订单1805782_51_7100361.txt b/datasets/xianshiping/train/labels/订单1805782_51_7100361.txt new file mode 100644 index 0000000..bb1ba19 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805782_51_7100361.txt @@ -0,0 +1 @@ +6 0.387214 0.398945 0.380221 0.494746 0.593685 0.510488 0.600690 0.410752 0.383711 0.400254 diff --git a/datasets/xianshiping/train/labels/订单1805783_51_7100455.txt b/datasets/xianshiping/train/labels/订单1805783_51_7100455.txt new file mode 100644 index 0000000..6356209 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805783_51_7100455.txt @@ -0,0 +1 @@ +6 0.336350 0.455412 0.343350 0.608958 0.485083 0.606333 0.474583 0.447537 0.339850 0.454100 diff --git a/datasets/xianshiping/train/labels/订单1805788_51_7100527.txt b/datasets/xianshiping/train/labels/订单1805788_51_7100527.txt new file mode 100644 index 0000000..a1abf67 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805788_51_7100527.txt @@ -0,0 +1 @@ +6 0.331224 0.318887 0.325977 0.446182 0.611185 0.440937 0.598932 0.311016 0.334727 0.320205 diff --git a/datasets/xianshiping/train/labels/订单1805791_51_7100431.txt b/datasets/xianshiping/train/labels/订单1805791_51_7100431.txt new file mode 100644 index 0000000..8015d91 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805791_51_7100431.txt @@ -0,0 +1 @@ +6 0.429206 0.530176 0.474701 0.623350 0.656680 0.569541 0.605938 0.473740 0.423958 0.532803 diff --git a/datasets/xianshiping/train/labels/订单1805793_51_7100437.txt b/datasets/xianshiping/train/labels/订单1805793_51_7100437.txt new file mode 100644 index 0000000..a79f091 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805793_51_7100437.txt @@ -0,0 +1 @@ +6 0.269974 0.343818 0.308477 0.450117 0.514948 0.412061 0.476458 0.308389 0.269974 0.343818 diff --git a/datasets/xianshiping/train/labels/订单1805794_51_7100487.txt b/datasets/xianshiping/train/labels/订单1805794_51_7100487.txt new file mode 100644 index 0000000..ee3d3db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805794_51_7100487.txt @@ -0,0 +1 @@ +6 0.458164 0.370072 0.470962 0.675846 0.611709 0.667975 0.604819 0.362201 0.456196 0.370072 diff --git a/datasets/xianshiping/train/labels/订单1805797_51_7100514.txt b/datasets/xianshiping/train/labels/订单1805797_51_7100514.txt new file mode 100644 index 0000000..b7a563c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805797_51_7100514.txt @@ -0,0 +1 @@ +6 0.332850 0.149638 0.280361 0.265125 0.523578 0.325492 0.579572 0.221817 0.327606 0.149638 diff --git a/datasets/xianshiping/train/labels/订单1805802_51_7100539.txt b/datasets/xianshiping/train/labels/订单1805802_51_7100539.txt new file mode 100644 index 0000000..e4a3400 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805802_51_7100539.txt @@ -0,0 +1 @@ +6 0.425716 0.434375 0.383711 0.515742 0.579688 0.565605 0.612930 0.476367 0.429206 0.433066 diff --git a/datasets/xianshiping/train/labels/订单1805804_51_7100605.txt b/datasets/xianshiping/train/labels/订单1805804_51_7100605.txt new file mode 100644 index 0000000..e3d6484 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805804_51_7100605.txt @@ -0,0 +1 @@ +6 0.392461 0.610225 0.394219 0.707344 0.618190 0.699463 0.604193 0.601045 0.390716 0.610225 diff --git a/datasets/xianshiping/train/labels/订单1805806_51_7100666.txt b/datasets/xianshiping/train/labels/订单1805806_51_7100666.txt new file mode 100644 index 0000000..d6ce546 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805806_51_7100666.txt @@ -0,0 +1 @@ +6 0.455427 0.309680 0.450187 0.405490 0.675907 0.400240 0.668907 0.296560 0.457187 0.309680 diff --git a/datasets/xianshiping/train/labels/订单1805807_51_7100667.txt b/datasets/xianshiping/train/labels/订单1805807_51_7100667.txt new file mode 100644 index 0000000..ad57f4e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805807_51_7100667.txt @@ -0,0 +1 @@ +6 0.551572 0.574838 0.500833 0.717879 0.614567 0.734942 0.665311 0.598458 0.551572 0.572213 diff --git a/datasets/xianshiping/train/labels/订单1805810_51_7100624.txt b/datasets/xianshiping/train/labels/订单1805810_51_7100624.txt new file mode 100644 index 0000000..f43791a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805810_51_7100624.txt @@ -0,0 +1 @@ +6 0.345221 0.572168 0.338216 0.686338 0.614687 0.682402 0.597187 0.566924 0.343464 0.568232 diff --git a/datasets/xianshiping/train/labels/订单1805812_51_7100601.txt b/datasets/xianshiping/train/labels/订单1805812_51_7100601.txt new file mode 100644 index 0000000..59456a6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805812_51_7100601.txt @@ -0,0 +1 @@ +6 0.409961 0.473740 0.408216 0.545918 0.556940 0.555107 0.556940 0.481621 0.409961 0.471123 diff --git a/datasets/xianshiping/train/labels/订单1805813_51_7100697.txt b/datasets/xianshiping/train/labels/订单1805813_51_7100697.txt new file mode 100644 index 0000000..84473f6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805813_51_7100697.txt @@ -0,0 +1 @@ +6 0.257707 0.526220 0.273453 0.612830 0.453680 0.583960 0.427440 0.499970 0.248960 0.527530 diff --git a/datasets/xianshiping/train/labels/订单1805814_51_7100643.txt b/datasets/xianshiping/train/labels/订单1805814_51_7100643.txt new file mode 100644 index 0000000..ee82601 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805814_51_7100643.txt @@ -0,0 +1 @@ +6 0.388852 0.404242 0.385355 0.527602 0.644331 0.528914 0.637322 0.402930 0.392363 0.401619 diff --git a/datasets/xianshiping/train/labels/订单1805815_51_7100717.txt b/datasets/xianshiping/train/labels/订单1805815_51_7100717.txt new file mode 100644 index 0000000..382420d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805815_51_7100717.txt @@ -0,0 +1 @@ +6 0.105359 0.391096 0.100103 0.500019 0.345077 0.501327 0.336333 0.385846 0.100103 0.392404 diff --git a/datasets/xianshiping/train/labels/订单1805817_51_7100718.txt b/datasets/xianshiping/train/labels/订单1805817_51_7100718.txt new file mode 100644 index 0000000..456c71a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805817_51_7100718.txt @@ -0,0 +1 @@ +6 0.217487 0.457998 0.215742 0.682402 0.686432 0.688965 0.682930 0.469805 0.220990 0.457998 diff --git a/datasets/xianshiping/train/labels/订单1805819_51_7100678.txt b/datasets/xianshiping/train/labels/订单1805819_51_7100678.txt new file mode 100644 index 0000000..1fc9a42 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805819_51_7100678.txt @@ -0,0 +1 @@ +6 0.173622 0.640454 0.184122 0.809746 0.532328 0.766437 0.500833 0.603708 0.170122 0.636517 diff --git a/datasets/xianshiping/train/labels/订单1805821_51_7100715.txt b/datasets/xianshiping/train/labels/订单1805821_51_7100715.txt new file mode 100644 index 0000000..520f016 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805821_51_7100715.txt @@ -0,0 +1 @@ +6 0.430630 0.322860 0.417835 0.416033 0.534960 0.425220 0.541850 0.325487 0.432600 0.324173 diff --git a/datasets/xianshiping/train/labels/订单1805823_51_7100659.txt b/datasets/xianshiping/train/labels/订单1805823_51_7100659.txt new file mode 100644 index 0000000..7671850 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805823_51_7100659.txt @@ -0,0 +1 @@ +6 0.460703 0.405498 0.453711 0.553799 0.745924 0.573486 0.756419 0.431748 0.455456 0.405498 diff --git a/datasets/xianshiping/train/labels/订单1805830_51_7100767.txt b/datasets/xianshiping/train/labels/订单1805830_51_7100767.txt new file mode 100644 index 0000000..9faddfe --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805830_51_7100767.txt @@ -0,0 +1 @@ +6 0.441352 0.429180 0.430847 0.521035 0.642582 0.527602 0.637322 0.431803 0.437855 0.429180 diff --git a/datasets/xianshiping/train/labels/订单1805831_51_7100849.txt b/datasets/xianshiping/train/labels/订单1805831_51_7100849.txt new file mode 100644 index 0000000..793b9b8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805831_51_7100849.txt @@ -0,0 +1 @@ +6 0.386507 0.389787 0.397007 0.640447 0.563673 0.636507 0.566300 0.385853 0.383887 0.388480 diff --git a/datasets/xianshiping/train/labels/订单1805833_51_7100813.txt b/datasets/xianshiping/train/labels/订单1805833_51_7100813.txt new file mode 100644 index 0000000..2bbde52 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805833_51_7100813.txt @@ -0,0 +1 @@ +6 0.453405 0.468496 0.442910 0.574798 0.608262 0.586608 0.610885 0.494746 0.457344 0.471120 diff --git a/datasets/xianshiping/train/labels/订单1805834_51_7100798.txt b/datasets/xianshiping/train/labels/订单1805834_51_7100798.txt new file mode 100644 index 0000000..e2e1221 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805834_51_7100798.txt @@ -0,0 +1 @@ +6 0.464206 0.499990 0.446706 0.576104 0.642682 0.594482 0.646185 0.513115 0.460703 0.501299 diff --git a/datasets/xianshiping/train/labels/订单1805837_51_7100853.txt b/datasets/xianshiping/train/labels/订单1805837_51_7100853.txt new file mode 100644 index 0000000..1833ce5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805837_51_7100853.txt @@ -0,0 +1 @@ +6 0.002144 0.227067 0.002144 0.606333 0.752800 0.626017 0.770300 0.215254 0.009144 0.224442 diff --git a/datasets/xianshiping/train/labels/订单1805839_51_7100902.txt b/datasets/xianshiping/train/labels/订单1805839_51_7100902.txt new file mode 100644 index 0000000..e64c34a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805839_51_7100902.txt @@ -0,0 +1 @@ +6 0.271732 0.497363 0.276979 0.636475 0.583190 0.612852 0.556940 0.480303 0.269974 0.498682 diff --git a/datasets/xianshiping/train/labels/订单1805841_51_7100892.txt b/datasets/xianshiping/train/labels/订单1805841_51_7100892.txt new file mode 100644 index 0000000..9c2cf50 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805841_51_7100892.txt @@ -0,0 +1 @@ +6 0.310217 0.485550 0.292717 0.610219 0.570933 0.619406 0.567433 0.488175 0.306717 0.484237 diff --git a/datasets/xianshiping/train/labels/订单1805842_51_7100929.txt b/datasets/xianshiping/train/labels/订单1805842_51_7100929.txt new file mode 100644 index 0000000..d9d8379 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805842_51_7100929.txt @@ -0,0 +1 @@ +6 0.548716 0.341198 0.544780 0.473750 0.733755 0.475059 0.728833 0.345137 0.549702 0.339889 diff --git a/datasets/xianshiping/train/labels/订单1805843_51_7100959.txt b/datasets/xianshiping/train/labels/订单1805843_51_7100959.txt new file mode 100644 index 0000000..0c4e8f0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805843_51_7100959.txt @@ -0,0 +1 @@ +6 0.404607 0.594482 0.404607 0.666660 0.645207 0.666660 0.645207 0.587920 0.410469 0.593169 diff --git a/datasets/xianshiping/train/labels/订单1805844_51_7100930.txt b/datasets/xianshiping/train/labels/订单1805844_51_7100930.txt new file mode 100644 index 0000000..726f984 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805844_51_7100930.txt @@ -0,0 +1 @@ +6 0.327577 0.444894 0.308333 0.572192 0.572551 0.586625 0.590051 0.454087 0.329333 0.443587 diff --git a/datasets/xianshiping/train/labels/订单1805847_51_7100915.txt b/datasets/xianshiping/train/labels/订单1805847_51_7100915.txt new file mode 100644 index 0000000..c545ad3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805847_51_7100915.txt @@ -0,0 +1 @@ +6 0.233125 0.444913 0.250613 0.532847 0.423843 0.515781 0.415093 0.438359 0.238368 0.444922 diff --git a/datasets/xianshiping/train/labels/订单1805848_51_7101037.txt b/datasets/xianshiping/train/labels/订单1805848_51_7101037.txt new file mode 100644 index 0000000..7bb8031 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805848_51_7101037.txt @@ -0,0 +1 @@ +6 0.609440 0.463242 0.527201 0.664033 0.707422 0.700781 0.786159 0.494746 0.609440 0.457998 diff --git a/datasets/xianshiping/train/labels/订单1805851_51_7100961.txt b/datasets/xianshiping/train/labels/订单1805851_51_7100961.txt new file mode 100644 index 0000000..0221557 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805851_51_7100961.txt @@ -0,0 +1 @@ +6 0.376693 0.469790 0.380187 0.573460 0.593667 0.562970 0.584920 0.465850 0.381947 0.465850 diff --git a/datasets/xianshiping/train/labels/订单1805852_51_7101016.txt b/datasets/xianshiping/train/labels/订单1805852_51_7101016.txt new file mode 100644 index 0000000..f40ab45 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805852_51_7101016.txt @@ -0,0 +1 @@ +6 0.306719 0.451436 0.313724 0.540674 0.513203 0.528857 0.502695 0.440937 0.311979 0.450117 diff --git a/datasets/xianshiping/train/labels/订单1805854_51_7101019.txt b/datasets/xianshiping/train/labels/订单1805854_51_7101019.txt new file mode 100644 index 0000000..7c44f23 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805854_51_7101019.txt @@ -0,0 +1 @@ +6 0.313611 0.454106 0.322361 0.580087 0.595324 0.566962 0.586574 0.443602 0.315359 0.452795 diff --git a/datasets/xianshiping/train/labels/订单1805857_51_7100976.txt b/datasets/xianshiping/train/labels/订单1805857_51_7100976.txt new file mode 100644 index 0000000..0da1be8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805857_51_7100976.txt @@ -0,0 +1 @@ +6 0.547203 0.380608 0.587438 0.557775 0.946144 0.515775 0.909399 0.338618 0.547203 0.377980 diff --git a/datasets/xianshiping/train/labels/订单1805860_51_7101109.txt b/datasets/xianshiping/train/labels/订单1805860_51_7101109.txt new file mode 100644 index 0000000..9cfb3f5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805860_51_7101109.txt @@ -0,0 +1 @@ +6 0.562187 0.519678 0.511445 0.619414 0.740664 0.681094 0.793164 0.574795 0.556940 0.514424 diff --git a/datasets/xianshiping/train/labels/订单1805861_51_7101063.txt b/datasets/xianshiping/train/labels/订单1805861_51_7101063.txt new file mode 100644 index 0000000..fe2a817 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805861_51_7101063.txt @@ -0,0 +1 @@ +6 0.226237 0.439619 0.203490 0.556426 0.500951 0.560361 0.495703 0.444873 0.231484 0.440937 diff --git a/datasets/xianshiping/train/labels/订单1805862_51_7101209.txt b/datasets/xianshiping/train/labels/订单1805862_51_7101209.txt new file mode 100644 index 0000000..8c80a4e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805862_51_7101209.txt @@ -0,0 +1 @@ +6 0.724893 0.452730 0.665400 0.524910 0.842133 0.593150 0.885880 0.517030 0.723147 0.452730 diff --git a/datasets/xianshiping/train/labels/订单1805864_51_7101126.txt b/datasets/xianshiping/train/labels/订单1805864_51_7101126.txt new file mode 100644 index 0000000..3ae26c6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805864_51_7101126.txt @@ -0,0 +1 @@ +6 0.355600 0.481658 0.359100 0.549900 0.528828 0.544654 0.518328 0.475100 0.360850 0.480346 diff --git a/datasets/xianshiping/train/labels/订单1805865_51_7101100.txt b/datasets/xianshiping/train/labels/订单1805865_51_7101100.txt new file mode 100644 index 0000000..b425399 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805865_51_7101100.txt @@ -0,0 +1 @@ +6 0.441458 0.372695 0.439714 0.509180 0.730169 0.510488 0.723177 0.371387 0.444961 0.372695 diff --git a/datasets/xianshiping/train/labels/订单1805866_51_7101143.txt b/datasets/xianshiping/train/labels/订单1805866_51_7101143.txt new file mode 100644 index 0000000..81fe2c0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805866_51_7101143.txt @@ -0,0 +1 @@ +6 0.408789 0.471120 0.396973 0.607604 0.606947 0.625977 0.614824 0.488184 0.410098 0.469811 diff --git a/datasets/xianshiping/train/labels/订单1805867_51_7101219.txt b/datasets/xianshiping/train/labels/订单1805867_51_7101219.txt new file mode 100644 index 0000000..726bcc8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805867_51_7101219.txt @@ -0,0 +1 @@ +6 0.472962 0.461941 0.464215 0.589236 0.717933 0.606296 0.733682 0.473750 0.476462 0.460627 diff --git a/datasets/xianshiping/train/labels/订单1805869_51_7101160.txt b/datasets/xianshiping/train/labels/订单1805869_51_7101160.txt new file mode 100644 index 0000000..91b8b3a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805869_51_7101160.txt @@ -0,0 +1 @@ +6 0.416821 0.368779 0.420321 0.472452 0.646038 0.468519 0.635538 0.356971 0.413321 0.367471 diff --git a/datasets/xianshiping/train/labels/订单1805870_51_7101223.txt b/datasets/xianshiping/train/labels/订单1805870_51_7101223.txt new file mode 100644 index 0000000..e1ce84f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805870_51_7101223.txt @@ -0,0 +1 @@ +6 0.388821 0.040702 0.369577 0.221798 0.702038 0.254606 0.758026 0.093192 0.392321 0.040702 diff --git a/datasets/xianshiping/train/labels/订单1805871_51_7101186.txt b/datasets/xianshiping/train/labels/订单1805871_51_7101186.txt new file mode 100644 index 0000000..8cfbcff --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805871_51_7101186.txt @@ -0,0 +1 @@ +6 0.555086 0.527597 0.534080 0.623394 0.747557 0.654892 0.759813 0.556466 0.549828 0.524978 diff --git a/datasets/xianshiping/train/labels/订单1805872_51_7101190.txt b/datasets/xianshiping/train/labels/订单1805872_51_7101190.txt new file mode 100644 index 0000000..56d2491 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805872_51_7101190.txt @@ -0,0 +1 @@ +6 0.391260 0.347793 0.405040 0.675880 0.585155 0.653567 0.552675 0.326800 0.393230 0.343860 diff --git a/datasets/xianshiping/train/labels/订单1805873_51_7101260.txt b/datasets/xianshiping/train/labels/订单1805873_51_7101260.txt new file mode 100644 index 0000000..78474ab --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805873_51_7101260.txt @@ -0,0 +1 @@ +6 0.436967 0.353049 0.471961 0.477725 0.727425 0.429167 0.699425 0.309745 0.438706 0.351735 diff --git a/datasets/xianshiping/train/labels/订单1805879_51_7101280.txt b/datasets/xianshiping/train/labels/订单1805879_51_7101280.txt new file mode 100644 index 0000000..55475f1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805879_51_7101280.txt @@ -0,0 +1 @@ +6 0.299727 0.223086 0.304974 0.363506 0.612930 0.351699 0.597187 0.209961 0.301471 0.224404 diff --git a/datasets/xianshiping/train/labels/订单1805883_51_7101311.txt b/datasets/xianshiping/train/labels/订单1805883_51_7101311.txt new file mode 100644 index 0000000..336525d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805883_51_7101311.txt @@ -0,0 +1 @@ +6 0.322453 0.362180 0.315453 0.444860 0.492173 0.450100 0.486933 0.366110 0.327693 0.364800 diff --git a/datasets/xianshiping/train/labels/订单1805886_51_7101418.txt b/datasets/xianshiping/train/labels/订单1805886_51_7101418.txt new file mode 100644 index 0000000..9414583 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805886_51_7101418.txt @@ -0,0 +1 @@ +6 0.371471 0.493428 0.322474 0.611543 0.579688 0.666660 0.611185 0.541982 0.373216 0.489492 diff --git a/datasets/xianshiping/train/labels/订单1805887_51_7101386.txt b/datasets/xianshiping/train/labels/订单1805887_51_7101386.txt new file mode 100644 index 0000000..342c53f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805887_51_7101386.txt @@ -0,0 +1 @@ +6 0.450208 0.509180 0.423958 0.622041 0.674180 0.656162 0.696927 0.541982 0.448451 0.507861 diff --git a/datasets/xianshiping/train/labels/订单1805891_51_7101877.txt b/datasets/xianshiping/train/labels/订单1805891_51_7101877.txt new file mode 100644 index 0000000..16c9ec7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805891_51_7101877.txt @@ -0,0 +1 @@ +6 0.288689 0.593160 0.139956 0.696835 0.320767 0.737520 0.466578 0.627285 0.277022 0.590540 diff --git a/datasets/xianshiping/train/labels/订单1805893_51_7101437.txt b/datasets/xianshiping/train/labels/订单1805893_51_7101437.txt new file mode 100644 index 0000000..e36345c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805893_51_7101437.txt @@ -0,0 +1 @@ +6 0.546445 0.416006 0.535951 0.509180 0.737174 0.531484 0.747669 0.431748 0.551693 0.416006 diff --git a/datasets/xianshiping/train/labels/订单1805894_51_7101473.txt b/datasets/xianshiping/train/labels/订单1805894_51_7101473.txt new file mode 100644 index 0000000..c342df6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805894_51_7101473.txt @@ -0,0 +1 @@ +6 0.324200 0.392360 0.313707 0.528840 0.640907 0.527530 0.630413 0.394990 0.318947 0.393670 diff --git a/datasets/xianshiping/train/labels/订单1805895_51_7101462.txt b/datasets/xianshiping/train/labels/订单1805895_51_7101462.txt new file mode 100644 index 0000000..248c756 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805895_51_7101462.txt @@ -0,0 +1 @@ +6 0.339974 0.443564 0.339974 0.540674 0.546445 0.540674 0.548190 0.437002 0.338216 0.442246 diff --git a/datasets/xianshiping/train/labels/订单1805896_51_7101467.txt b/datasets/xianshiping/train/labels/订单1805896_51_7101467.txt new file mode 100644 index 0000000..c27c5b5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805896_51_7101467.txt @@ -0,0 +1 @@ +6 0.492173 0.510470 0.457187 0.570840 0.593667 0.602340 0.628667 0.541970 0.490427 0.513100 diff --git a/datasets/xianshiping/train/labels/订单1805898_51_7101436.txt b/datasets/xianshiping/train/labels/订单1805898_51_7101436.txt new file mode 100644 index 0000000..2f6f858 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805898_51_7101436.txt @@ -0,0 +1 @@ +6 0.667167 0.465863 0.507942 0.481612 0.525442 0.645650 0.689917 0.636469 0.667167 0.469800 diff --git a/datasets/xianshiping/train/labels/订单1805902_51_7101479.txt b/datasets/xianshiping/train/labels/订单1805902_51_7101479.txt new file mode 100644 index 0000000..eb5edf3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805902_51_7101479.txt @@ -0,0 +1 @@ +6 0.490459 0.500000 0.467546 0.614173 0.719514 0.645669 0.737178 0.526250 0.488543 0.501309 diff --git a/datasets/xianshiping/train/labels/订单1805903_51_7101581.txt b/datasets/xianshiping/train/labels/订单1805903_51_7101581.txt new file mode 100644 index 0000000..abaf843 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805903_51_7101581.txt @@ -0,0 +1 @@ +6 0.362696 0.524902 0.355703 0.618088 0.555163 0.616777 0.549918 0.528848 0.369690 0.527537 diff --git a/datasets/xianshiping/train/labels/订单1805904_51_7101531.txt b/datasets/xianshiping/train/labels/订单1805904_51_7101531.txt new file mode 100644 index 0000000..90819f4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805904_51_7101531.txt @@ -0,0 +1 @@ +6 0.346966 0.375322 0.339974 0.517051 0.633932 0.519678 0.628685 0.372695 0.345221 0.374004 diff --git a/datasets/xianshiping/train/labels/订单1805909_51_7101514.txt b/datasets/xianshiping/train/labels/订单1805909_51_7101514.txt new file mode 100644 index 0000000..c87e85f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805909_51_7101514.txt @@ -0,0 +1 @@ +6 0.450315 0.330733 0.472950 0.593200 0.588110 0.574827 0.566455 0.322860 0.449330 0.329420 diff --git a/datasets/xianshiping/train/labels/订单1805910_51_7101614.txt b/datasets/xianshiping/train/labels/订单1805910_51_7101614.txt new file mode 100644 index 0000000..7e3285e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805910_51_7101614.txt @@ -0,0 +1 @@ +6 0.306719 0.377939 0.283971 0.513115 0.556940 0.536738 0.581445 0.409443 0.301471 0.375322 diff --git a/datasets/xianshiping/train/labels/订单1805912_51_7101596.txt b/datasets/xianshiping/train/labels/订单1805912_51_7101596.txt new file mode 100644 index 0000000..49053f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805912_51_7101596.txt @@ -0,0 +1 @@ +6 0.269861 0.643079 0.292606 0.729692 0.471083 0.694258 0.443089 0.611583 0.269861 0.643079 diff --git a/datasets/xianshiping/train/labels/订单1805915_51_7101634.txt b/datasets/xianshiping/train/labels/订单1805915_51_7101634.txt new file mode 100644 index 0000000..9e1f052 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805915_51_7101634.txt @@ -0,0 +1 @@ +6 0.332969 0.444873 0.325977 0.559043 0.572695 0.557734 0.565690 0.443564 0.332969 0.443564 diff --git a/datasets/xianshiping/train/labels/订单1805917_51_7101680.txt b/datasets/xianshiping/train/labels/订单1805917_51_7101680.txt new file mode 100644 index 0000000..732a352 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805917_51_7101680.txt @@ -0,0 +1 @@ +6 0.304947 0.627270 0.311947 0.750630 0.581413 0.737510 0.570920 0.612830 0.304947 0.628580 diff --git a/datasets/xianshiping/train/labels/订单1805918_51_7101608.txt b/datasets/xianshiping/train/labels/订单1805918_51_7101608.txt new file mode 100644 index 0000000..6192e3c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805918_51_7101608.txt @@ -0,0 +1 @@ +6 0.269861 0.404233 0.259361 0.532842 0.539328 0.542029 0.544578 0.418667 0.271611 0.401608 diff --git a/datasets/xianshiping/train/labels/订单1805920_51_7101670.txt b/datasets/xianshiping/train/labels/订单1805920_51_7101670.txt new file mode 100644 index 0000000..2eda3ab --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805920_51_7101670.txt @@ -0,0 +1 @@ +6 0.714427 0.548545 0.665430 0.641719 0.884154 0.720459 0.938398 0.622041 0.719674 0.547236 diff --git a/datasets/xianshiping/train/labels/订单1805923_51_7101772.txt b/datasets/xianshiping/train/labels/订单1805923_51_7101772.txt new file mode 100644 index 0000000..dfc29ca --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805923_51_7101772.txt @@ -0,0 +1 @@ +6 0.268242 0.232328 0.182612 0.301883 0.274146 0.472483 0.356825 0.408178 0.271196 0.229700 diff --git a/datasets/xianshiping/train/labels/订单1805924_51_7101695.txt b/datasets/xianshiping/train/labels/订单1805924_51_7101695.txt new file mode 100644 index 0000000..0d67c87 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805924_51_7101695.txt @@ -0,0 +1 @@ +6 0.282200 0.356930 0.283960 0.507850 0.590160 0.509160 0.584920 0.358240 0.289200 0.355620 diff --git a/datasets/xianshiping/train/labels/订单1805927_51_7101742.txt b/datasets/xianshiping/train/labels/订单1805927_51_7101742.txt new file mode 100644 index 0000000..679dba0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805927_51_7101742.txt @@ -0,0 +1 @@ +6 0.385458 0.426494 0.392458 0.541981 0.633925 0.532794 0.618175 0.418619 0.388958 0.422556 diff --git a/datasets/xianshiping/train/labels/订单1805928_51_7101736.txt b/datasets/xianshiping/train/labels/订单1805928_51_7101736.txt new file mode 100644 index 0000000..1c9554b5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805928_51_7101736.txt @@ -0,0 +1 @@ +6 0.082747 0.468496 0.096745 0.589229 0.367969 0.576104 0.357474 0.455371 0.082747 0.467178 diff --git a/datasets/xianshiping/train/labels/订单1805929_51_7101755.txt b/datasets/xianshiping/train/labels/订单1805929_51_7101755.txt new file mode 100644 index 0000000..8f6d753 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805929_51_7101755.txt @@ -0,0 +1 @@ +6 0.364466 0.246709 0.366211 0.309697 0.520195 0.305762 0.507943 0.237520 0.364466 0.248018 diff --git a/datasets/xianshiping/train/labels/订单1805931_51_7101785.txt b/datasets/xianshiping/train/labels/订单1805931_51_7101785.txt new file mode 100644 index 0000000..15f3934 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805931_51_7101785.txt @@ -0,0 +1 @@ +6 0.374958 0.335944 0.313717 0.393687 0.446700 0.472425 0.506192 0.417306 0.376708 0.337256 diff --git a/datasets/xianshiping/train/labels/订单1805932_51_7101790.txt b/datasets/xianshiping/train/labels/订单1805932_51_7101790.txt new file mode 100644 index 0000000..5c8b1bf --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805932_51_7101790.txt @@ -0,0 +1 @@ +6 0.321353 0.391068 0.308560 0.590547 0.394189 0.593171 0.407969 0.402884 0.320371 0.393691 diff --git a/datasets/xianshiping/train/labels/订单1805933_51_7101818.txt b/datasets/xianshiping/train/labels/订单1805933_51_7101818.txt new file mode 100644 index 0000000..8d0e1be --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805933_51_7101818.txt @@ -0,0 +1 @@ +6 0.448320 0.442253 0.427651 0.665345 0.534937 0.683724 0.557573 0.458001 0.450293 0.442253 diff --git a/datasets/xianshiping/train/labels/订单1805934_51_7101828.txt b/datasets/xianshiping/train/labels/订单1805934_51_7101828.txt new file mode 100644 index 0000000..0eed6f6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805934_51_7101828.txt @@ -0,0 +1 @@ +6 0.391464 0.395049 0.391464 0.519716 0.659190 0.519716 0.650431 0.383235 0.391464 0.395049 diff --git a/datasets/xianshiping/train/labels/订单1805936_51_7101821.txt b/datasets/xianshiping/train/labels/订单1805936_51_7101821.txt new file mode 100644 index 0000000..ebc8f16 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805936_51_7101821.txt @@ -0,0 +1 @@ +6 0.411706 0.342510 0.411706 0.427812 0.590195 0.429121 0.591940 0.339883 0.416966 0.341201 diff --git a/datasets/xianshiping/train/labels/订单1805937_51_7101863.txt b/datasets/xianshiping/train/labels/订单1805937_51_7101863.txt new file mode 100644 index 0000000..15cc73d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805937_51_7101863.txt @@ -0,0 +1 @@ +6 0.467680 0.387110 0.483427 0.490790 0.709147 0.472410 0.696907 0.366110 0.467680 0.385800 diff --git a/datasets/xianshiping/train/labels/订单1805939_51_7101971.txt b/datasets/xianshiping/train/labels/订单1805939_51_7101971.txt new file mode 100644 index 0000000..63246ea --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805939_51_7101971.txt @@ -0,0 +1 @@ +6 0.172002 0.734905 0.303232 0.874014 0.579701 0.704722 0.446715 0.577424 0.170251 0.734905 diff --git a/datasets/xianshiping/train/labels/订单1805940_51_7101888.txt b/datasets/xianshiping/train/labels/订单1805940_51_7101888.txt new file mode 100644 index 0000000..5407844 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805940_51_7101888.txt @@ -0,0 +1 @@ +6 0.294333 0.459337 0.296090 0.594500 0.570795 0.599750 0.579551 0.464587 0.297833 0.454087 diff --git a/datasets/xianshiping/train/labels/订单1805941_51_7101899.txt b/datasets/xianshiping/train/labels/订单1805941_51_7101899.txt new file mode 100644 index 0000000..6f5b420 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805941_51_7101899.txt @@ -0,0 +1 @@ +6 0.175372 0.406858 0.166622 0.468537 0.327606 0.482971 0.325856 0.417354 0.177122 0.405546 diff --git a/datasets/xianshiping/train/labels/订单1805942_51_7101907.txt b/datasets/xianshiping/train/labels/订单1805942_51_7101907.txt new file mode 100644 index 0000000..10f324f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805942_51_7101907.txt @@ -0,0 +1 @@ +6 0.392440 0.442230 0.394187 0.577400 0.688147 0.590520 0.686400 0.446170 0.394187 0.442230 diff --git a/datasets/xianshiping/train/labels/订单1805943_51_7101918.txt b/datasets/xianshiping/train/labels/订单1805943_51_7101918.txt new file mode 100644 index 0000000..b4f9b62 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805943_51_7101918.txt @@ -0,0 +1 @@ +6 0.409960 0.263807 0.429645 0.510527 0.549725 0.493467 0.532010 0.250680 0.409960 0.263807 diff --git a/datasets/xianshiping/train/labels/订单1805944_51_7101928.txt b/datasets/xianshiping/train/labels/订单1805944_51_7101928.txt new file mode 100644 index 0000000..d0578ef --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805944_51_7101928.txt @@ -0,0 +1 @@ +6 0.556940 0.485557 0.530690 0.664033 0.688177 0.667969 0.714427 0.498682 0.555195 0.485557 diff --git a/datasets/xianshiping/train/labels/订单1805947_51_7101939.txt b/datasets/xianshiping/train/labels/订单1805947_51_7101939.txt new file mode 100644 index 0000000..c25e1ad --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805947_51_7101939.txt @@ -0,0 +1 @@ +6 0.289232 0.457998 0.278724 0.545918 0.448451 0.555107 0.462461 0.464561 0.294479 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1805948_51_7101958.txt b/datasets/xianshiping/train/labels/订单1805948_51_7101958.txt new file mode 100644 index 0000000..965f738 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805948_51_7101958.txt @@ -0,0 +1 @@ +6 0.520078 0.526279 0.451839 0.610271 0.630317 0.691633 0.691556 0.602396 0.521828 0.528904 diff --git a/datasets/xianshiping/train/labels/订单1805960_51_7102030.txt b/datasets/xianshiping/train/labels/订单1805960_51_7102030.txt new file mode 100644 index 0000000..2b0a08d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805960_51_7102030.txt @@ -0,0 +1 @@ +6 0.434321 0.276923 0.423821 0.397654 0.705538 0.405529 0.696782 0.275606 0.437821 0.274298 diff --git a/datasets/xianshiping/train/labels/订单1805963_51_7102062.txt b/datasets/xianshiping/train/labels/订单1805963_51_7102062.txt new file mode 100644 index 0000000..fccff40 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805963_51_7102062.txt @@ -0,0 +1 @@ +6 0.362721 0.492119 0.357474 0.580039 0.546445 0.587920 0.548190 0.496055 0.362721 0.490801 diff --git a/datasets/xianshiping/train/labels/订单1805964_51_7102072.txt b/datasets/xianshiping/train/labels/订单1805964_51_7102072.txt new file mode 100644 index 0000000..521e82a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805964_51_7102072.txt @@ -0,0 +1 @@ +6 0.282227 0.452744 0.296224 0.573486 0.544701 0.556426 0.528945 0.437002 0.278724 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1805965_51_7102082.txt b/datasets/xianshiping/train/labels/订单1805965_51_7102082.txt new file mode 100644 index 0000000..1c727d8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805965_51_7102082.txt @@ -0,0 +1 @@ +6 0.640938 0.539365 0.553438 0.608916 0.707422 0.711279 0.784414 0.637783 0.640938 0.536738 diff --git a/datasets/xianshiping/train/labels/订单1805967_51_7102112.txt b/datasets/xianshiping/train/labels/订单1805967_51_7102112.txt new file mode 100644 index 0000000..4ca7e34 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805967_51_7102112.txt @@ -0,0 +1 @@ +6 0.136992 0.451436 0.142240 0.551172 0.355716 0.539365 0.341719 0.434375 0.143997 0.450117 diff --git a/datasets/xianshiping/train/labels/订单1805968_51_7102108.txt b/datasets/xianshiping/train/labels/订单1805968_51_7102108.txt new file mode 100644 index 0000000..8cc2741 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805968_51_7102108.txt @@ -0,0 +1 @@ +6 0.290977 0.527549 0.317227 0.635166 0.539440 0.606289 0.520195 0.496055 0.290977 0.528857 diff --git a/datasets/xianshiping/train/labels/订单1805969_51_7102119.txt b/datasets/xianshiping/train/labels/订单1805969_51_7102119.txt new file mode 100644 index 0000000..e3f8385 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805969_51_7102119.txt @@ -0,0 +1 @@ +6 0.417828 0.367477 0.439485 0.555137 0.667828 0.527582 0.653069 0.333353 0.417828 0.368784 diff --git a/datasets/xianshiping/train/labels/订单1805970_51_7102143.txt b/datasets/xianshiping/train/labels/订单1805970_51_7102143.txt new file mode 100644 index 0000000..80d26e8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805970_51_7102143.txt @@ -0,0 +1 @@ +6 0.444961 0.531484 0.430964 0.615479 0.602435 0.633848 0.607682 0.543301 0.450208 0.532803 diff --git a/datasets/xianshiping/train/labels/订单1805971_51_7102162.txt b/datasets/xianshiping/train/labels/订单1805971_51_7102162.txt new file mode 100644 index 0000000..91e39bd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805971_51_7102162.txt @@ -0,0 +1 @@ +6 0.338535 0.524233 0.356909 0.643656 0.564256 0.622653 0.545882 0.492734 0.334602 0.521603 diff --git a/datasets/xianshiping/train/labels/订单1805972_51_7102129.txt b/datasets/xianshiping/train/labels/订单1805972_51_7102129.txt new file mode 100644 index 0000000..ce8d934 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805972_51_7102129.txt @@ -0,0 +1 @@ +6 0.388947 0.360870 0.401187 0.557720 0.803640 0.551150 0.791387 0.349050 0.390693 0.362180 diff --git a/datasets/xianshiping/train/labels/订单1805975_51_7102175.txt b/datasets/xianshiping/train/labels/订单1805975_51_7102175.txt new file mode 100644 index 0000000..ecb0133 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805975_51_7102175.txt @@ -0,0 +1 @@ +6 0.453711 0.438311 0.446706 0.564297 0.712669 0.568232 0.716172 0.437002 0.457201 0.437002 diff --git a/datasets/xianshiping/train/labels/订单1805976_51_7102161.txt b/datasets/xianshiping/train/labels/订单1805976_51_7102161.txt new file mode 100644 index 0000000..df3671f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805976_51_7102161.txt @@ -0,0 +1 @@ +6 0.215778 0.493425 0.189533 0.569540 0.469500 0.583975 0.492822 0.507860 0.212856 0.492115 diff --git a/datasets/xianshiping/train/labels/订单1805979_51_7102191.txt b/datasets/xianshiping/train/labels/订单1805979_51_7102191.txt new file mode 100644 index 0000000..e030ef2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805979_51_7102191.txt @@ -0,0 +1 @@ +6 0.584920 0.494720 0.472933 0.566900 0.640907 0.707320 0.751147 0.629890 0.583160 0.492100 diff --git a/datasets/xianshiping/train/labels/订单1805981_51_7102216.txt b/datasets/xianshiping/train/labels/订单1805981_51_7102216.txt new file mode 100644 index 0000000..bfde781 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805981_51_7102216.txt @@ -0,0 +1 @@ +6 0.138628 0.612896 0.131628 0.700821 0.343350 0.691633 0.332850 0.601083 0.138628 0.610271 diff --git a/datasets/xianshiping/train/labels/订单1805984_51_7102238.txt b/datasets/xianshiping/train/labels/订单1805984_51_7102238.txt new file mode 100644 index 0000000..9607ee5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805984_51_7102238.txt @@ -0,0 +1 @@ +6 0.143859 0.383221 0.156103 0.498702 0.395821 0.490827 0.388821 0.379279 0.142103 0.383221 diff --git a/datasets/xianshiping/train/labels/订单1805985_51_7102220.txt b/datasets/xianshiping/train/labels/订单1805985_51_7102220.txt new file mode 100644 index 0000000..ad7c26d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805985_51_7102220.txt @@ -0,0 +1 @@ +6 0.486953 0.610225 0.476458 0.709961 0.695182 0.725713 0.700430 0.622041 0.485208 0.608916 diff --git a/datasets/xianshiping/train/labels/订单1805988_51_7102280.txt b/datasets/xianshiping/train/labels/订单1805988_51_7102280.txt new file mode 100644 index 0000000..d33b58a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805988_51_7102280.txt @@ -0,0 +1 @@ +6 0.140467 0.318870 0.143973 0.429110 0.380187 0.421230 0.371440 0.311000 0.140467 0.318870 diff --git a/datasets/xianshiping/train/labels/订单1805989_51_7102267.txt b/datasets/xianshiping/train/labels/订单1805989_51_7102267.txt new file mode 100644 index 0000000..186a4be --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805989_51_7102267.txt @@ -0,0 +1 @@ +6 0.252453 0.422550 0.264707 0.506530 0.453680 0.488160 0.436187 0.404170 0.254213 0.423860 diff --git a/datasets/xianshiping/train/labels/订单1805990_51_7102467.txt b/datasets/xianshiping/train/labels/订单1805990_51_7102467.txt new file mode 100644 index 0000000..843b697 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805990_51_7102467.txt @@ -0,0 +1 @@ +6 0.415094 0.564338 0.411594 0.640454 0.584822 0.644392 0.570822 0.566963 0.415094 0.563025 diff --git a/datasets/xianshiping/train/labels/订单1805993_51_7102311.txt b/datasets/xianshiping/train/labels/订单1805993_51_7102311.txt new file mode 100644 index 0000000..fba9cb9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805993_51_7102311.txt @@ -0,0 +1 @@ +6 0.475747 0.643073 0.475747 0.711313 0.601733 0.706060 0.595173 0.628633 0.471813 0.637820 diff --git a/datasets/xianshiping/train/labels/订单1805996_51_7102352.txt b/datasets/xianshiping/train/labels/订单1805996_51_7102352.txt new file mode 100644 index 0000000..a6065a9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805996_51_7102352.txt @@ -0,0 +1 @@ +6 0.416966 0.321514 0.415208 0.421250 0.618190 0.427812 0.619935 0.325449 0.413464 0.320205 diff --git a/datasets/xianshiping/train/labels/订单1805997_51_7102410.txt b/datasets/xianshiping/train/labels/订单1805997_51_7102410.txt new file mode 100644 index 0000000..4803f22 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805997_51_7102410.txt @@ -0,0 +1 @@ +6 0.374947 0.484230 0.374947 0.587900 0.593667 0.587900 0.584920 0.482910 0.373187 0.482910 diff --git a/datasets/xianshiping/train/labels/订单1805998_51_7102420.txt b/datasets/xianshiping/train/labels/订单1805998_51_7102420.txt new file mode 100644 index 0000000..6b90651 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1805998_51_7102420.txt @@ -0,0 +1 @@ +6 0.416966 0.438311 0.415208 0.548545 0.642682 0.545918 0.633932 0.435684 0.416966 0.437002 diff --git a/datasets/xianshiping/train/labels/订单1806000_51_7102336.txt b/datasets/xianshiping/train/labels/订单1806000_51_7102336.txt new file mode 100644 index 0000000..d4e754b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806000_51_7102336.txt @@ -0,0 +1 @@ +6 0.339974 0.586602 0.387214 0.654844 0.539440 0.599727 0.485208 0.530176 0.336471 0.583984 diff --git a/datasets/xianshiping/train/labels/订单1806006_51_7102373.txt b/datasets/xianshiping/train/labels/订单1806006_51_7102373.txt new file mode 100644 index 0000000..6608bf1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806006_51_7102373.txt @@ -0,0 +1 @@ +6 0.542828 0.359613 0.518328 0.437042 0.688056 0.459350 0.709056 0.379300 0.546328 0.358300 diff --git a/datasets/xianshiping/train/labels/订单1806008_51_7102438.txt b/datasets/xianshiping/train/labels/订单1806008_51_7102438.txt new file mode 100644 index 0000000..c93366f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806008_51_7102438.txt @@ -0,0 +1 @@ +6 0.352208 0.501294 0.387208 0.608906 0.612925 0.566912 0.577933 0.456675 0.352208 0.501294 diff --git a/datasets/xianshiping/train/labels/订单1806010_51_7102491.txt b/datasets/xianshiping/train/labels/订单1806010_51_7102491.txt new file mode 100644 index 0000000..6e1e62d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806010_51_7102491.txt @@ -0,0 +1 @@ +6 0.431591 0.538054 0.439467 0.632541 0.547736 0.616795 0.538872 0.524930 0.433558 0.535431 diff --git a/datasets/xianshiping/train/labels/订单1806011_51_7102502.txt b/datasets/xianshiping/train/labels/订单1806011_51_7102502.txt new file mode 100644 index 0000000..db2b47c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806011_51_7102502.txt @@ -0,0 +1 @@ +6 0.367850 0.486908 0.395844 0.544654 0.528828 0.514467 0.504333 0.456725 0.364350 0.484283 diff --git a/datasets/xianshiping/train/labels/订单1806014_51_7102538.txt b/datasets/xianshiping/train/labels/订单1806014_51_7102538.txt new file mode 100644 index 0000000..380a2aa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806014_51_7102538.txt @@ -0,0 +1 @@ +6 0.486849 0.391108 0.504271 0.540716 0.769206 0.522343 0.744805 0.380608 0.488594 0.391108 diff --git a/datasets/xianshiping/train/labels/订单1806018_51_7102536.txt b/datasets/xianshiping/train/labels/订单1806018_51_7102536.txt new file mode 100644 index 0000000..ec05b57 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806018_51_7102536.txt @@ -0,0 +1 @@ +6 0.332762 0.488216 0.338010 0.615520 0.588560 0.611578 0.585052 0.490843 0.338010 0.489529 diff --git a/datasets/xianshiping/train/labels/订单1806019_51_7102564.txt b/datasets/xianshiping/train/labels/订单1806019_51_7102564.txt new file mode 100644 index 0000000..e804f56 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806019_51_7102564.txt @@ -0,0 +1 @@ +6 0.511445 0.438311 0.514948 0.519678 0.684674 0.515742 0.670677 0.433066 0.507943 0.437002 diff --git a/datasets/xianshiping/train/labels/订单1806020_51_7102512.txt b/datasets/xianshiping/train/labels/订单1806020_51_7102512.txt new file mode 100644 index 0000000..d84e3c3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806020_51_7102512.txt @@ -0,0 +1 @@ +6 0.290977 0.451436 0.283971 0.556426 0.518451 0.559043 0.518451 0.452744 0.290977 0.451436 diff --git a/datasets/xianshiping/train/labels/订单1806022_51_7102599.txt b/datasets/xianshiping/train/labels/订单1806022_51_7102599.txt new file mode 100644 index 0000000..5bd8f6a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806022_51_7102599.txt @@ -0,0 +1 @@ +6 0.391543 0.528906 0.389213 0.628646 0.666852 0.629957 0.662176 0.523655 0.391543 0.527595 diff --git a/datasets/xianshiping/train/labels/订单1806029_51_7102584.txt b/datasets/xianshiping/train/labels/订单1806029_51_7102584.txt new file mode 100644 index 0000000..f76f6f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806029_51_7102584.txt @@ -0,0 +1 @@ +6 0.369600 0.282183 0.366100 0.393733 0.600567 0.388483 0.593572 0.274313 0.369600 0.283496 diff --git a/datasets/xianshiping/train/labels/订单1806031_51_7102704.txt b/datasets/xianshiping/train/labels/订单1806031_51_7102704.txt new file mode 100644 index 0000000..c55724d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806031_51_7102704.txt @@ -0,0 +1 @@ +6 0.192872 0.147012 0.154372 0.232317 0.339850 0.288746 0.378344 0.200821 0.196367 0.144392 diff --git a/datasets/xianshiping/train/labels/订单1806033_51_7102627.txt b/datasets/xianshiping/train/labels/订单1806033_51_7102627.txt new file mode 100644 index 0000000..0e55024 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806033_51_7102627.txt @@ -0,0 +1 @@ +6 0.427461 0.451436 0.446706 0.547236 0.635677 0.532803 0.626940 0.438311 0.423958 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1806036_51_7102652.txt b/datasets/xianshiping/train/labels/订单1806036_51_7102652.txt new file mode 100644 index 0000000..433651c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806036_51_7102652.txt @@ -0,0 +1 @@ +6 0.429049 0.427820 0.431380 0.484247 0.615199 0.477690 0.605890 0.418633 0.433712 0.426505 diff --git a/datasets/xianshiping/train/labels/订单1806040_51_7102691.txt b/datasets/xianshiping/train/labels/订单1806040_51_7102691.txt new file mode 100644 index 0000000..f49d927 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806040_51_7102691.txt @@ -0,0 +1 @@ +6 0.235231 0.384549 0.246898 0.464601 0.515201 0.444922 0.491867 0.363550 0.239907 0.384549 diff --git a/datasets/xianshiping/train/labels/订单1806042_51_7102728.txt b/datasets/xianshiping/train/labels/订单1806042_51_7102728.txt new file mode 100644 index 0000000..da68f96 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806042_51_7102728.txt @@ -0,0 +1 @@ +6 0.304856 0.515783 0.296106 0.627329 0.537578 0.628642 0.537578 0.514467 0.308356 0.514467 diff --git a/datasets/xianshiping/train/labels/订单1806043_51_7102888.txt b/datasets/xianshiping/train/labels/订单1806043_51_7102888.txt new file mode 100644 index 0000000..e3c66b6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806043_51_7102888.txt @@ -0,0 +1 @@ +6 0.437839 0.456725 0.453589 0.542029 0.623317 0.524967 0.607567 0.435729 0.441339 0.458037 diff --git a/datasets/xianshiping/train/labels/订单1806044_51_7102661.txt b/datasets/xianshiping/train/labels/订单1806044_51_7102661.txt new file mode 100644 index 0000000..2908a97 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806044_51_7102661.txt @@ -0,0 +1 @@ +6 0.282227 0.536738 0.287474 0.646973 0.521953 0.644346 0.516693 0.527549 0.285729 0.534111 diff --git a/datasets/xianshiping/train/labels/订单1806050_51_7102748.txt b/datasets/xianshiping/train/labels/订单1806050_51_7102748.txt new file mode 100644 index 0000000..cf49433 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806050_51_7102748.txt @@ -0,0 +1 @@ +6 0.280482 0.480303 0.276979 0.619414 0.555195 0.629912 0.562187 0.482930 0.287474 0.478994 diff --git a/datasets/xianshiping/train/labels/订单1806053_51_7102727.txt b/datasets/xianshiping/train/labels/订单1806053_51_7102727.txt new file mode 100644 index 0000000..fe63888 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806053_51_7102727.txt @@ -0,0 +1 @@ +6 0.315380 0.442314 0.299635 0.637851 0.695088 0.654912 0.698582 0.454123 0.318874 0.440998 diff --git a/datasets/xianshiping/train/labels/订单1806056_51_7102894.txt b/datasets/xianshiping/train/labels/订单1806056_51_7102894.txt new file mode 100644 index 0000000..964e93c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806056_51_7102894.txt @@ -0,0 +1 @@ +6 0.645228 0.266468 0.632431 0.564372 0.777118 0.573558 0.784990 0.271720 0.645228 0.267784 diff --git a/datasets/xianshiping/train/labels/订单1806058_51_7102805.txt b/datasets/xianshiping/train/labels/订单1806058_51_7102805.txt new file mode 100644 index 0000000..357c0ea --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806058_51_7102805.txt @@ -0,0 +1 @@ +6 0.359112 0.557787 0.359112 0.669334 0.597077 0.670645 0.595328 0.559098 0.359112 0.555164 diff --git a/datasets/xianshiping/train/labels/订单1806059_51_7102841.txt b/datasets/xianshiping/train/labels/订单1806059_51_7102841.txt new file mode 100644 index 0000000..9a3739c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806059_51_7102841.txt @@ -0,0 +1 @@ +6 0.453588 0.576155 0.472836 0.728385 0.598819 0.720512 0.581331 0.565651 0.453588 0.574835 diff --git a/datasets/xianshiping/train/labels/订单1806060_51_7102808.txt b/datasets/xianshiping/train/labels/订单1806060_51_7102808.txt new file mode 100644 index 0000000..45a95cb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806060_51_7102808.txt @@ -0,0 +1 @@ +6 0.390716 0.473740 0.397708 0.597100 0.637435 0.597100 0.633932 0.475059 0.392461 0.472432 diff --git a/datasets/xianshiping/train/labels/订单1806062_51_7103083.txt b/datasets/xianshiping/train/labels/订单1806062_51_7103083.txt new file mode 100644 index 0000000..b1ec483 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806062_51_7103083.txt @@ -0,0 +1 @@ +6 0.395195 0.426533 0.393230 0.548580 0.532010 0.560393 0.527085 0.440973 0.399135 0.425220 diff --git a/datasets/xianshiping/train/labels/订单1806064_51_7102915.txt b/datasets/xianshiping/train/labels/订单1806064_51_7102915.txt new file mode 100644 index 0000000..4d8cec6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806064_51_7102915.txt @@ -0,0 +1 @@ +6 0.432708 0.510488 0.483451 0.597100 0.667174 0.534111 0.614687 0.447500 0.430964 0.507861 diff --git a/datasets/xianshiping/train/labels/订单1806067_51_7103041.txt b/datasets/xianshiping/train/labels/订单1806067_51_7103041.txt new file mode 100644 index 0000000..9e88c38 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806067_51_7103041.txt @@ -0,0 +1 @@ +6 0.381947 0.511780 0.376693 0.591840 0.539427 0.590520 0.539427 0.511780 0.378440 0.507850 diff --git a/datasets/xianshiping/train/labels/订单1806068_51_7102992.txt b/datasets/xianshiping/train/labels/订单1806068_51_7102992.txt new file mode 100644 index 0000000..05f70a3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806068_51_7102992.txt @@ -0,0 +1 @@ +6 0.362721 0.478994 0.359219 0.603662 0.611185 0.608916 0.618190 0.481621 0.364466 0.477686 diff --git a/datasets/xianshiping/train/labels/订单1806070_51_7102892.txt b/datasets/xianshiping/train/labels/订单1806070_51_7102892.txt new file mode 100644 index 0000000..92e2382 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806070_51_7102892.txt @@ -0,0 +1 @@ +6 0.404594 0.309746 0.406344 0.384546 0.546328 0.381921 0.544578 0.303183 0.402844 0.312371 diff --git a/datasets/xianshiping/train/labels/订单1806071_51_7102940.txt b/datasets/xianshiping/train/labels/订单1806071_51_7102940.txt new file mode 100644 index 0000000..e89f238 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806071_51_7102940.txt @@ -0,0 +1 @@ +6 0.341719 0.329385 0.318971 0.409443 0.499206 0.431748 0.511445 0.349072 0.348724 0.325449 diff --git a/datasets/xianshiping/train/labels/订单1806072_51_7102966.txt b/datasets/xianshiping/train/labels/订单1806072_51_7102966.txt new file mode 100644 index 0000000..b5b879c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806072_51_7102966.txt @@ -0,0 +1 @@ +6 0.403997 0.280789 0.382341 0.574751 0.511277 0.589189 0.531946 0.299159 0.405965 0.279474 diff --git a/datasets/xianshiping/train/labels/订单1806073_51_7103007.txt b/datasets/xianshiping/train/labels/订单1806073_51_7103007.txt new file mode 100644 index 0000000..5801ed9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806073_51_7103007.txt @@ -0,0 +1 @@ +6 0.273453 0.486850 0.275200 0.561650 0.443187 0.541970 0.429187 0.467160 0.276960 0.484230 diff --git a/datasets/xianshiping/train/labels/订单1806074_51_7102995.txt b/datasets/xianshiping/train/labels/订单1806074_51_7102995.txt new file mode 100644 index 0000000..b158cd6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806074_51_7102995.txt @@ -0,0 +1 @@ +6 0.369714 0.356943 0.374961 0.478994 0.618190 0.477686 0.619935 0.353008 0.371471 0.355635 diff --git a/datasets/xianshiping/train/labels/订单1806078_51_7103036.txt b/datasets/xianshiping/train/labels/订单1806078_51_7103036.txt new file mode 100644 index 0000000..e429fc2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806078_51_7103036.txt @@ -0,0 +1 @@ +6 0.318856 0.511846 0.322356 0.608958 0.523578 0.615517 0.527078 0.518404 0.315356 0.510533 diff --git a/datasets/xianshiping/train/labels/订单1806079_51_7103004.txt b/datasets/xianshiping/train/labels/订单1806079_51_7103004.txt new file mode 100644 index 0000000..90dfd95 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806079_51_7103004.txt @@ -0,0 +1 @@ +6 0.376719 0.346445 0.317227 0.442246 0.511445 0.503926 0.565690 0.405498 0.381966 0.343818 diff --git a/datasets/xianshiping/train/labels/订单1806081_51_7102935.txt b/datasets/xianshiping/train/labels/订单1806081_51_7102935.txt new file mode 100644 index 0000000..29dfe10 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806081_51_7102935.txt @@ -0,0 +1 @@ +6 0.411706 0.608916 0.416966 0.702090 0.609440 0.700781 0.598932 0.604980 0.422214 0.607598 diff --git a/datasets/xianshiping/train/labels/订单1806083_51_7102978.txt b/datasets/xianshiping/train/labels/订单1806083_51_7102978.txt new file mode 100644 index 0000000..28d84f3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806083_51_7102978.txt @@ -0,0 +1 @@ +6 0.262861 0.480346 0.282111 0.584021 0.499083 0.553837 0.471083 0.451475 0.262861 0.477725 diff --git a/datasets/xianshiping/train/labels/订单1806085_51_7103039.txt b/datasets/xianshiping/train/labels/订单1806085_51_7103039.txt new file mode 100644 index 0000000..d98613b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806085_51_7103039.txt @@ -0,0 +1 @@ +6 0.424402 0.467189 0.422071 0.523616 0.570982 0.519680 0.561672 0.461938 0.429049 0.465874 diff --git a/datasets/xianshiping/train/labels/订单1806088_51_7103121.txt b/datasets/xianshiping/train/labels/订单1806088_51_7103121.txt new file mode 100644 index 0000000..266ba58 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806088_51_7103121.txt @@ -0,0 +1 @@ +6 0.374821 0.408154 0.362577 0.530202 0.616295 0.539385 0.619795 0.416029 0.367821 0.406837 diff --git a/datasets/xianshiping/train/labels/订单1806091_51_7103122.txt b/datasets/xianshiping/train/labels/订单1806091_51_7103122.txt new file mode 100644 index 0000000..2a14031 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806091_51_7103122.txt @@ -0,0 +1 @@ +6 0.406458 0.370068 0.392461 0.475059 0.616432 0.492119 0.626940 0.380566 0.411706 0.370068 diff --git a/datasets/xianshiping/train/labels/订单1806093_51_7103269.txt b/datasets/xianshiping/train/labels/订单1806093_51_7103269.txt new file mode 100644 index 0000000..73dbd48 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806093_51_7103269.txt @@ -0,0 +1 @@ +6 0.423086 0.412072 0.413354 0.647028 0.476299 0.672972 0.487334 0.427928 0.423086 0.410629 diff --git a/datasets/xianshiping/train/labels/订单1806100_51_7103196.txt b/datasets/xianshiping/train/labels/订单1806100_51_7103196.txt new file mode 100644 index 0000000..aa61a0a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806100_51_7103196.txt @@ -0,0 +1 @@ +6 0.370929 0.543324 0.370929 0.632564 0.635851 0.633873 0.633533 0.542010 0.375573 0.543324 diff --git a/datasets/xianshiping/train/labels/订单1806101_51_7103288.txt b/datasets/xianshiping/train/labels/订单1806101_51_7103288.txt new file mode 100644 index 0000000..f185ded --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806101_51_7103288.txt @@ -0,0 +1 @@ +6 0.269974 0.408125 0.278724 0.582666 0.661927 0.582666 0.663685 0.408125 0.276979 0.404189 diff --git a/datasets/xianshiping/train/labels/订单1806105_51_7103283.txt b/datasets/xianshiping/train/labels/订单1806105_51_7103283.txt new file mode 100644 index 0000000..1c803ce --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806105_51_7103283.txt @@ -0,0 +1 @@ +6 0.262861 0.450163 0.259361 0.566963 0.539328 0.566963 0.528828 0.446229 0.264611 0.447537 diff --git a/datasets/xianshiping/train/labels/订单1806106_51_7103306.txt b/datasets/xianshiping/train/labels/订单1806106_51_7103306.txt new file mode 100644 index 0000000..7b028a7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806106_51_7103306.txt @@ -0,0 +1 @@ +6 0.488588 0.523655 0.476343 0.608958 0.686308 0.624705 0.693310 0.535469 0.488588 0.522344 diff --git a/datasets/xianshiping/train/labels/订单1806107_51_7103354.txt b/datasets/xianshiping/train/labels/订单1806107_51_7103354.txt new file mode 100644 index 0000000..65a2389 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806107_51_7103354.txt @@ -0,0 +1 @@ +6 0.134122 0.763765 0.218689 0.817570 0.422833 0.769015 0.338267 0.711275 0.125367 0.762455 diff --git a/datasets/xianshiping/train/labels/订单1806110_51_7103334.txt b/datasets/xianshiping/train/labels/订单1806110_51_7103334.txt new file mode 100644 index 0000000..5590164 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806110_51_7103334.txt @@ -0,0 +1 @@ +6 0.770392 0.425172 0.621667 0.426483 0.612908 0.598395 0.766895 0.598395 0.773889 0.425172 diff --git a/datasets/xianshiping/train/labels/订单1806113_51_7103433.txt b/datasets/xianshiping/train/labels/订单1806113_51_7103433.txt new file mode 100644 index 0000000..7847fdd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806113_51_7103433.txt @@ -0,0 +1 @@ +6 0.588438 0.332012 0.581445 0.427812 0.796667 0.439619 0.801914 0.338574 0.590195 0.332012 diff --git a/datasets/xianshiping/train/labels/订单1806114_51_7103385.txt b/datasets/xianshiping/train/labels/订单1806114_51_7103385.txt new file mode 100644 index 0000000..fe978f3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806114_51_7103385.txt @@ -0,0 +1 @@ +6 0.219232 0.418623 0.213984 0.536738 0.479948 0.536738 0.474701 0.417314 0.219232 0.418623 diff --git a/datasets/xianshiping/train/labels/订单1806115_51_7103376.txt b/datasets/xianshiping/train/labels/订单1806115_51_7103376.txt new file mode 100644 index 0000000..5c91396 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806115_51_7103376.txt @@ -0,0 +1 @@ +6 0.441523 0.419980 0.451992 0.527588 0.682057 0.514471 0.671602 0.408167 0.441523 0.419980 diff --git a/datasets/xianshiping/train/labels/订单1806116_51_7103437.txt b/datasets/xianshiping/train/labels/订单1806116_51_7103437.txt new file mode 100644 index 0000000..8eeb9b7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806116_51_7103437.txt @@ -0,0 +1 @@ +6 0.507956 0.490801 0.506198 0.580039 0.702174 0.580039 0.696927 0.493428 0.506198 0.488184 diff --git a/datasets/xianshiping/train/labels/订单1806117_51_7103452.txt b/datasets/xianshiping/train/labels/订单1806117_51_7103452.txt new file mode 100644 index 0000000..7e48def --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806117_51_7103452.txt @@ -0,0 +1 @@ +6 0.429961 0.384549 0.436967 0.480343 0.681935 0.472471 0.676680 0.366176 0.435216 0.384549 diff --git a/datasets/xianshiping/train/labels/订单1806118_51_7103420.txt b/datasets/xianshiping/train/labels/订单1806118_51_7103420.txt new file mode 100644 index 0000000..daea004 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806118_51_7103420.txt @@ -0,0 +1 @@ +6 0.598932 0.501299 0.500951 0.604980 0.707422 0.691592 0.803659 0.601045 0.597187 0.494746 diff --git a/datasets/xianshiping/train/labels/订单1806120_51_7103423.txt b/datasets/xianshiping/train/labels/订单1806120_51_7103423.txt new file mode 100644 index 0000000..c587b7e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806120_51_7103423.txt @@ -0,0 +1 @@ +6 0.352214 0.431748 0.357474 0.506553 0.546445 0.505244 0.525443 0.422559 0.352214 0.429121 diff --git a/datasets/xianshiping/train/labels/订单1806123_51_7103545.txt b/datasets/xianshiping/train/labels/订单1806123_51_7103545.txt new file mode 100644 index 0000000..760ba07 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806123_51_7103545.txt @@ -0,0 +1 @@ +6 0.453405 0.324141 0.462591 0.485560 0.715872 0.486868 0.713249 0.320202 0.450781 0.322826 diff --git a/datasets/xianshiping/train/labels/订单1806125_51_7103474.txt b/datasets/xianshiping/train/labels/订单1806125_51_7103474.txt new file mode 100644 index 0000000..f18cb27 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806125_51_7103474.txt @@ -0,0 +1 @@ +6 0.526105 0.354360 0.559565 0.484280 0.706220 0.434407 0.674725 0.305800 0.529055 0.355667 diff --git a/datasets/xianshiping/train/labels/订单1806126_51_7103481.txt b/datasets/xianshiping/train/labels/订单1806126_51_7103481.txt new file mode 100644 index 0000000..cdc424a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806126_51_7103481.txt @@ -0,0 +1 @@ +6 0.626907 0.370050 0.616413 0.422550 0.756400 0.443540 0.765147 0.387110 0.628667 0.368740 diff --git a/datasets/xianshiping/train/labels/订单1806128_51_7103584.txt b/datasets/xianshiping/train/labels/订单1806128_51_7103584.txt new file mode 100644 index 0000000..1432840 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806128_51_7103584.txt @@ -0,0 +1 @@ +6 0.368620 0.388480 0.358780 0.523647 0.536930 0.543333 0.546770 0.402913 0.371575 0.389787 diff --git a/datasets/xianshiping/train/labels/订单1806130_51_7103513.txt b/datasets/xianshiping/train/labels/订单1806130_51_7103513.txt new file mode 100644 index 0000000..56bd213 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806130_51_7103513.txt @@ -0,0 +1 @@ +6 0.383594 0.532842 0.380094 0.631267 0.579572 0.636517 0.590072 0.532842 0.381844 0.531529 diff --git a/datasets/xianshiping/train/labels/订单1806131_51_7103563.txt b/datasets/xianshiping/train/labels/订单1806131_51_7103563.txt new file mode 100644 index 0000000..937a0f9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806131_51_7103563.txt @@ -0,0 +1 @@ +6 0.568425 0.316299 0.567439 0.544649 0.671771 0.543333 0.670784 0.318922 0.570392 0.316299 diff --git a/datasets/xianshiping/train/labels/订单1806133_51_7103528.txt b/datasets/xianshiping/train/labels/订单1806133_51_7103528.txt new file mode 100644 index 0000000..e124e37 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806133_51_7103528.txt @@ -0,0 +1 @@ +6 0.485195 0.320205 0.497448 0.429121 0.761667 0.413379 0.744167 0.301826 0.483451 0.317578 diff --git a/datasets/xianshiping/train/labels/订单1806136_51_7103552.txt b/datasets/xianshiping/train/labels/订单1806136_51_7103552.txt new file mode 100644 index 0000000..8686f30 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806136_51_7103552.txt @@ -0,0 +1 @@ +6 0.322474 0.468496 0.355716 0.553799 0.544701 0.514424 0.511445 0.427812 0.325977 0.469805 diff --git a/datasets/xianshiping/train/labels/订单1806141_51_7103695.txt b/datasets/xianshiping/train/labels/订单1806141_51_7103695.txt new file mode 100644 index 0000000..a356f56 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806141_51_7103695.txt @@ -0,0 +1 @@ +6 0.363477 0.293990 0.354719 0.433098 0.681935 0.433098 0.681935 0.293990 0.368719 0.288745 diff --git a/datasets/xianshiping/train/labels/订单1806142_51_7105268.txt b/datasets/xianshiping/train/labels/订单1806142_51_7105268.txt new file mode 100644 index 0000000..c180066 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806142_51_7105268.txt @@ -0,0 +1 @@ +6 0.362693 0.580030 0.357440 0.691570 0.607667 0.692890 0.602413 0.585280 0.362693 0.577400 diff --git a/datasets/xianshiping/train/labels/订单1806144_51_7103599.txt b/datasets/xianshiping/train/labels/订单1806144_51_7103599.txt new file mode 100644 index 0000000..0890133 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806144_51_7103599.txt @@ -0,0 +1 @@ +6 0.308477 0.526240 0.343464 0.614160 0.539440 0.578730 0.507943 0.485557 0.301471 0.530176 diff --git a/datasets/xianshiping/train/labels/订单1806146_51_7103703.txt b/datasets/xianshiping/train/labels/订单1806146_51_7103703.txt new file mode 100644 index 0000000..2ca9ea7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806146_51_7103703.txt @@ -0,0 +1 @@ +6 0.330222 0.494784 0.309229 0.614206 0.569948 0.623392 0.576941 0.505284 0.331974 0.494784 diff --git a/datasets/xianshiping/train/labels/订单1806148_51_7103678.txt b/datasets/xianshiping/train/labels/订单1806148_51_7103678.txt new file mode 100644 index 0000000..58a2151 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806148_51_7103678.txt @@ -0,0 +1 @@ +6 0.247213 0.328060 0.234960 0.410730 0.413440 0.414670 0.420440 0.329370 0.250707 0.329370 diff --git a/datasets/xianshiping/train/labels/订单1806152_51_7103811.txt b/datasets/xianshiping/train/labels/订单1806152_51_7103811.txt new file mode 100644 index 0000000..2958db5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806152_51_7103811.txt @@ -0,0 +1 @@ +6 0.287474 0.580039 0.201732 0.505244 0.000000 0.605684 0.000000 0.668799 0.049505 0.715215 0.289232 0.585293 diff --git a/datasets/xianshiping/train/labels/订单1806158_51_7103859.txt b/datasets/xianshiping/train/labels/订单1806158_51_7103859.txt new file mode 100644 index 0000000..df5892c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806158_51_7103859.txt @@ -0,0 +1 @@ +6 0.129878 0.439667 0.117628 0.510533 0.346850 0.511846 0.345100 0.439667 0.131628 0.435729 diff --git a/datasets/xianshiping/train/labels/订单1806159_51_7103731.txt b/datasets/xianshiping/train/labels/订单1806159_51_7103731.txt new file mode 100644 index 0000000..1981199 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806159_51_7103731.txt @@ -0,0 +1 @@ +6 0.324753 0.683755 0.338698 0.797931 0.573997 0.780873 0.561797 0.662765 0.328242 0.682441 diff --git a/datasets/xianshiping/train/labels/订单1806160_51_7103768.txt b/datasets/xianshiping/train/labels/订单1806160_51_7103768.txt new file mode 100644 index 0000000..614b43b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806160_51_7103768.txt @@ -0,0 +1 @@ +6 0.527061 0.364824 0.525093 0.469811 0.643203 0.477682 0.646157 0.367448 0.530015 0.363509 diff --git a/datasets/xianshiping/train/labels/订单1806166_51_7103910.txt b/datasets/xianshiping/train/labels/订单1806166_51_7103910.txt new file mode 100644 index 0000000..e510546 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806166_51_7103910.txt @@ -0,0 +1 @@ +6 0.271732 0.499990 0.269974 0.601045 0.502695 0.602354 0.492201 0.498682 0.280482 0.499990 diff --git a/datasets/xianshiping/train/labels/订单1806169_51_7103877.txt b/datasets/xianshiping/train/labels/订单1806169_51_7103877.txt new file mode 100644 index 0000000..1b4e6b3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806169_51_7103877.txt @@ -0,0 +1 @@ +6 0.350469 0.418623 0.352214 0.514424 0.583190 0.513115 0.579688 0.410752 0.350469 0.418623 diff --git a/datasets/xianshiping/train/labels/订单1806173_51_7104016.txt b/datasets/xianshiping/train/labels/订单1806173_51_7104016.txt new file mode 100644 index 0000000..3c948e9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806173_51_7104016.txt @@ -0,0 +1 @@ +6 0.227895 0.427873 0.238392 0.557796 0.537602 0.535482 0.516608 0.414748 0.227895 0.425252 diff --git a/datasets/xianshiping/train/labels/订单1806174_51_7103900.txt b/datasets/xianshiping/train/labels/订单1806174_51_7103900.txt new file mode 100644 index 0000000..8f8ce70 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806174_51_7103900.txt @@ -0,0 +1 @@ +6 0.243231 0.573486 0.278439 0.644351 0.530775 0.622041 0.501430 0.556426 0.243231 0.570859 diff --git a/datasets/xianshiping/train/labels/订单1806178_51_7103983.txt b/datasets/xianshiping/train/labels/订单1806178_51_7103983.txt new file mode 100644 index 0000000..1b515e2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806178_51_7103983.txt @@ -0,0 +1 @@ +6 0.530015 0.463249 0.547729 0.549863 0.660923 0.520990 0.639268 0.433066 0.531001 0.463249 diff --git a/datasets/xianshiping/train/labels/订单1806180_51_7103956.txt b/datasets/xianshiping/train/labels/订单1806180_51_7103956.txt new file mode 100644 index 0000000..e6abfa8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806180_51_7103956.txt @@ -0,0 +1 @@ +6 0.304974 0.514424 0.306719 0.625977 0.537695 0.633848 0.537695 0.520986 0.306719 0.511807 diff --git a/datasets/xianshiping/train/labels/订单1806188_51_7104051.txt b/datasets/xianshiping/train/labels/订单1806188_51_7104051.txt new file mode 100644 index 0000000..595e087 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806188_51_7104051.txt @@ -0,0 +1 @@ +6 0.399149 0.359630 0.389306 0.465926 0.551710 0.486921 0.551710 0.374063 0.396198 0.357002 diff --git a/datasets/xianshiping/train/labels/订单1806189_51_7103908.txt b/datasets/xianshiping/train/labels/订单1806189_51_7103908.txt new file mode 100644 index 0000000..038ce4c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806189_51_7103908.txt @@ -0,0 +1 @@ +6 0.537695 0.276895 0.546445 0.395000 0.856159 0.395000 0.831654 0.271641 0.542943 0.276895 diff --git a/datasets/xianshiping/train/labels/订单1806191_51_7103989.txt b/datasets/xianshiping/train/labels/订单1806191_51_7103989.txt new file mode 100644 index 0000000..7baf0de --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806191_51_7103989.txt @@ -0,0 +1 @@ +6 0.360964 0.569541 0.362721 0.685029 0.623437 0.679785 0.607682 0.564297 0.364466 0.566924 diff --git a/datasets/xianshiping/train/labels/订单1806192_51_7103954.txt b/datasets/xianshiping/train/labels/订单1806192_51_7103954.txt new file mode 100644 index 0000000..66e898f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806192_51_7103954.txt @@ -0,0 +1 @@ +6 0.288362 0.250649 0.309354 0.387137 0.578824 0.377950 0.568328 0.237526 0.290104 0.250649 diff --git a/datasets/xianshiping/train/labels/订单1806194_51_7103950.txt b/datasets/xianshiping/train/labels/订单1806194_51_7103950.txt new file mode 100644 index 0000000..96373c5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806194_51_7103950.txt @@ -0,0 +1 @@ +6 0.171119 0.524931 0.188616 0.644351 0.438835 0.623356 0.423091 0.502621 0.174625 0.522310 diff --git a/datasets/xianshiping/train/labels/订单1806195_51_7104360.txt b/datasets/xianshiping/train/labels/订单1806195_51_7104360.txt new file mode 100644 index 0000000..c874ffb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806195_51_7104360.txt @@ -0,0 +1 @@ +6 0.671783 0.204767 0.747571 0.547289 0.936550 0.482983 0.846983 0.116839 0.670800 0.204767 diff --git a/datasets/xianshiping/train/labels/订单1806196_51_7104047.txt b/datasets/xianshiping/train/labels/订单1806196_51_7104047.txt new file mode 100644 index 0000000..386bf31 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806196_51_7104047.txt @@ -0,0 +1 @@ +6 0.630317 0.406858 0.590072 0.476413 0.775544 0.524967 0.798294 0.444917 0.635567 0.404233 diff --git a/datasets/xianshiping/train/labels/订单1806197_51_7104132.txt b/datasets/xianshiping/train/labels/订单1806197_51_7104132.txt new file mode 100644 index 0000000..218eb11 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806197_51_7104132.txt @@ -0,0 +1 @@ +6 0.619935 0.392383 0.616432 0.456680 0.768672 0.464561 0.772161 0.397627 0.623437 0.393691 diff --git a/datasets/xianshiping/train/labels/订单1806198_51_7104058.txt b/datasets/xianshiping/train/labels/订单1806198_51_7104058.txt new file mode 100644 index 0000000..aa5ac92 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806198_51_7104058.txt @@ -0,0 +1 @@ +6 0.635731 0.574148 0.612979 0.654197 0.798524 0.684387 0.809016 0.596461 0.633989 0.572841 diff --git a/datasets/xianshiping/train/labels/订单1806203_51_7104209.txt b/datasets/xianshiping/train/labels/订单1806203_51_7104209.txt new file mode 100644 index 0000000..2531581 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806203_51_7104209.txt @@ -0,0 +1 @@ +6 0.595330 0.451487 0.588333 0.536789 0.786049 0.552532 0.787802 0.467231 0.604080 0.448858 diff --git a/datasets/xianshiping/train/labels/订单1806206_51_7104307.txt b/datasets/xianshiping/train/labels/订单1806206_51_7104307.txt new file mode 100644 index 0000000..f82a98b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806206_51_7104307.txt @@ -0,0 +1 @@ +6 0.333984 0.467188 0.302487 0.574798 0.491465 0.618105 0.515085 0.499993 0.335293 0.464564 diff --git a/datasets/xianshiping/train/labels/订单1806207_51_7104196.txt b/datasets/xianshiping/train/labels/订单1806207_51_7104196.txt new file mode 100644 index 0000000..b37e70e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806207_51_7104196.txt @@ -0,0 +1 @@ +6 0.347855 0.564299 0.344348 0.661410 0.549077 0.669291 0.559573 0.572171 0.347855 0.562984 diff --git a/datasets/xianshiping/train/labels/订单1806211_51_7104444.txt b/datasets/xianshiping/train/labels/订单1806211_51_7104444.txt new file mode 100644 index 0000000..fa1d652 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806211_51_7104444.txt @@ -0,0 +1 @@ +6 0.313707 0.392360 0.304947 0.505220 0.562173 0.505220 0.560413 0.391050 0.315453 0.388420 diff --git a/datasets/xianshiping/train/labels/订单1806212_51_7104331.txt b/datasets/xianshiping/train/labels/订单1806212_51_7104331.txt new file mode 100644 index 0000000..d8d50c1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806212_51_7104331.txt @@ -0,0 +1 @@ +6 0.450096 0.556475 0.451844 0.637838 0.623333 0.643084 0.625082 0.553852 0.448347 0.553852 diff --git a/datasets/xianshiping/train/labels/订单1806215_51_7104325.txt b/datasets/xianshiping/train/labels/订单1806215_51_7104325.txt new file mode 100644 index 0000000..b1ef7db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806215_51_7104325.txt @@ -0,0 +1 @@ +6 0.531001 0.496055 0.530015 0.622044 0.684541 0.628600 0.685527 0.494746 0.528047 0.492122 diff --git a/datasets/xianshiping/train/labels/订单1806217_51_7104303.txt b/datasets/xianshiping/train/labels/订单1806217_51_7104303.txt new file mode 100644 index 0000000..a331402 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806217_51_7104303.txt @@ -0,0 +1 @@ +6 0.317106 0.434417 0.318856 0.570900 0.427339 0.569588 0.429089 0.429167 0.320606 0.434417 diff --git a/datasets/xianshiping/train/labels/订单1806218_51_7104322.txt b/datasets/xianshiping/train/labels/订单1806218_51_7104322.txt new file mode 100644 index 0000000..4517b5e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806218_51_7104322.txt @@ -0,0 +1 @@ +6 0.514083 0.555112 0.480830 0.622042 0.652318 0.674533 0.680311 0.598426 0.521084 0.552491 diff --git a/datasets/xianshiping/train/labels/订单1806219_51_7104378.txt b/datasets/xianshiping/train/labels/订单1806219_51_7104378.txt new file mode 100644 index 0000000..0ff9f5e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806219_51_7104378.txt @@ -0,0 +1 @@ +6 0.492807 0.353047 0.491493 0.488213 0.721153 0.485593 0.711967 0.347793 0.494120 0.350420 diff --git a/datasets/xianshiping/train/labels/订单1806225_51_7104423.txt b/datasets/xianshiping/train/labels/订单1806225_51_7104423.txt new file mode 100644 index 0000000..9f909c4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806225_51_7104423.txt @@ -0,0 +1 @@ +6 0.472933 0.442230 0.458933 0.543280 0.670653 0.560340 0.681160 0.456670 0.472933 0.442230 diff --git a/datasets/xianshiping/train/labels/订单1806226_51_7104403.txt b/datasets/xianshiping/train/labels/订单1806226_51_7104403.txt new file mode 100644 index 0000000..026ee6f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806226_51_7104403.txt @@ -0,0 +1 @@ +6 0.280482 0.454062 0.268229 0.551172 0.472956 0.562979 0.479948 0.467178 0.280482 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1806228_51_7104429.txt b/datasets/xianshiping/train/labels/订单1806228_51_7104429.txt new file mode 100644 index 0000000..498cc34 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806228_51_7104429.txt @@ -0,0 +1 @@ +6 0.367969 0.498682 0.366211 0.604980 0.597187 0.601045 0.597187 0.486865 0.367969 0.494746 diff --git a/datasets/xianshiping/train/labels/订单1806231_51_7104704.txt b/datasets/xianshiping/train/labels/订单1806231_51_7104704.txt new file mode 100644 index 0000000..13787ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806231_51_7104704.txt @@ -0,0 +1 @@ +6 0.285729 0.384502 0.276979 0.464561 0.471198 0.475059 0.478203 0.395000 0.283971 0.384502 diff --git a/datasets/xianshiping/train/labels/订单1806234_51_7104480.txt b/datasets/xianshiping/train/labels/订单1806234_51_7104480.txt new file mode 100644 index 0000000..60d785f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806234_51_7104480.txt @@ -0,0 +1 @@ +6 0.296224 0.476367 0.322474 0.595791 0.590195 0.559043 0.555195 0.431748 0.296224 0.473740 diff --git a/datasets/xianshiping/train/labels/订单1806239_51_7104590.txt b/datasets/xianshiping/train/labels/订单1806239_51_7104590.txt new file mode 100644 index 0000000..ce44efa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806239_51_7104590.txt @@ -0,0 +1 @@ +6 0.426458 0.545961 0.422967 0.645696 0.643438 0.650951 0.643438 0.548588 0.428209 0.540716 diff --git a/datasets/xianshiping/train/labels/订单1806242_51_7104631.txt b/datasets/xianshiping/train/labels/订单1806242_51_7104631.txt new file mode 100644 index 0000000..aa8dd28 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806242_51_7104631.txt @@ -0,0 +1 @@ +6 0.376178 0.376625 0.379089 0.455365 0.653222 0.434370 0.647389 0.347755 0.376178 0.372690 diff --git a/datasets/xianshiping/train/labels/订单1806244_51_7104569.txt b/datasets/xianshiping/train/labels/订单1806244_51_7104569.txt new file mode 100644 index 0000000..7dc9116 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806244_51_7104569.txt @@ -0,0 +1 @@ +6 0.501486 0.444891 0.494596 0.513135 0.640264 0.531506 0.636327 0.455391 0.503452 0.440955 diff --git a/datasets/xianshiping/train/labels/订单1806246_51_7104763.txt b/datasets/xianshiping/train/labels/订单1806246_51_7104763.txt new file mode 100644 index 0000000..0e0f9a2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806246_51_7104763.txt @@ -0,0 +1 @@ +6 0.336471 0.478994 0.348724 0.601045 0.618190 0.576104 0.593685 0.456680 0.336471 0.477686 diff --git a/datasets/xianshiping/train/labels/订单1806247_51_7104645.txt b/datasets/xianshiping/train/labels/订单1806247_51_7104645.txt new file mode 100644 index 0000000..d25913c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806247_51_7104645.txt @@ -0,0 +1 @@ +6 0.474673 0.463223 0.455425 0.549841 0.649657 0.570833 0.661912 0.482917 0.479935 0.461912 diff --git a/datasets/xianshiping/train/labels/订单1806248_51_7104713.txt b/datasets/xianshiping/train/labels/订单1806248_51_7104713.txt new file mode 100644 index 0000000..9023b1e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806248_51_7104713.txt @@ -0,0 +1 @@ +6 0.297969 0.421250 0.297982 0.557734 0.625182 0.556426 0.618190 0.417314 0.294479 0.419941 diff --git a/datasets/xianshiping/train/labels/订单1806251_51_7104781.txt b/datasets/xianshiping/train/labels/订单1806251_51_7104781.txt new file mode 100644 index 0000000..f47f217 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806251_51_7104781.txt @@ -0,0 +1 @@ +6 0.384010 0.446225 0.361354 0.534147 0.558307 0.557775 0.577474 0.463284 0.382266 0.447539 diff --git a/datasets/xianshiping/train/labels/订单1806252_51_7104609.txt b/datasets/xianshiping/train/labels/订单1806252_51_7104609.txt new file mode 100644 index 0000000..96272ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806252_51_7104609.txt @@ -0,0 +1 @@ +6 0.445371 0.346452 0.446353 0.517057 0.656982 0.523613 0.654033 0.349076 0.443403 0.343828 diff --git a/datasets/xianshiping/train/labels/订单1806253_51_7104764.txt b/datasets/xianshiping/train/labels/订单1806253_51_7104764.txt new file mode 100644 index 0000000..e1bc4d1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806253_51_7104764.txt @@ -0,0 +1 @@ +6 0.497427 0.397610 0.493933 0.484230 0.723147 0.476350 0.714400 0.388420 0.500933 0.393670 diff --git a/datasets/xianshiping/train/labels/订单1806254_51_7104737.txt b/datasets/xianshiping/train/labels/订单1806254_51_7104737.txt new file mode 100644 index 0000000..b1d2301 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806254_51_7104737.txt @@ -0,0 +1 @@ +6 0.370556 0.263819 0.403210 0.316311 0.599182 0.284809 0.561867 0.231007 0.372886 0.261189 diff --git a/datasets/xianshiping/train/labels/订单1806256_51_7104758.txt b/datasets/xianshiping/train/labels/订单1806256_51_7104758.txt new file mode 100644 index 0000000..fda9154 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806256_51_7104758.txt @@ -0,0 +1 @@ +6 0.424719 0.422608 0.424719 0.518402 0.667935 0.515775 0.652183 0.413422 0.426458 0.419980 diff --git a/datasets/xianshiping/train/labels/订单1806259_51_7104978.txt b/datasets/xianshiping/train/labels/订单1806259_51_7104978.txt new file mode 100644 index 0000000..539c918 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806259_51_7104978.txt @@ -0,0 +1 @@ +6 0.236725 0.367437 0.227975 0.528856 0.583183 0.534106 0.595425 0.379250 0.243725 0.367437 diff --git a/datasets/xianshiping/train/labels/订单1806260_51_7104740.txt b/datasets/xianshiping/train/labels/订单1806260_51_7104740.txt new file mode 100644 index 0000000..e0570cf --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806260_51_7104740.txt @@ -0,0 +1 @@ +6 0.264707 0.580030 0.261213 0.685010 0.493933 0.695510 0.502680 0.590520 0.268200 0.578710 diff --git a/datasets/xianshiping/train/labels/订单1806265_51_7104815.txt b/datasets/xianshiping/train/labels/订单1806265_51_7104815.txt new file mode 100644 index 0000000..62778f3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806265_51_7104815.txt @@ -0,0 +1 @@ +6 0.287474 0.370068 0.273477 0.489492 0.574440 0.490801 0.572695 0.367441 0.287474 0.368760 diff --git a/datasets/xianshiping/train/labels/订单1806269_51_7104849.txt b/datasets/xianshiping/train/labels/订单1806269_51_7104849.txt new file mode 100644 index 0000000..f57004e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806269_51_7104849.txt @@ -0,0 +1 @@ +6 0.272162 0.119444 0.275113 0.253301 0.427672 0.267739 0.430627 0.129941 0.272162 0.118131 diff --git a/datasets/xianshiping/train/labels/订单1806270_51_7104958.txt b/datasets/xianshiping/train/labels/订单1806270_51_7104958.txt new file mode 100644 index 0000000..3633048 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806270_51_7104958.txt @@ -0,0 +1 @@ +6 0.404693 0.503910 0.388947 0.597090 0.602413 0.610210 0.607667 0.511780 0.406440 0.501290 diff --git a/datasets/xianshiping/train/labels/订单1806273_51_7104884.txt b/datasets/xianshiping/train/labels/订单1806273_51_7104884.txt new file mode 100644 index 0000000..ffc1040 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806273_51_7104884.txt @@ -0,0 +1 @@ +6 0.212213 0.524910 0.236707 0.623330 0.460680 0.583960 0.436187 0.480290 0.208707 0.523600 diff --git a/datasets/xianshiping/train/labels/订单1806274_51_7104931.txt b/datasets/xianshiping/train/labels/订单1806274_51_7104931.txt new file mode 100644 index 0000000..9ca3b7d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806274_51_7104931.txt @@ -0,0 +1 @@ +6 0.262861 0.598458 0.259361 0.678513 0.444839 0.675888 0.439589 0.590583 0.255861 0.595833 diff --git a/datasets/xianshiping/train/labels/订单1806280_51_7105035.txt b/datasets/xianshiping/train/labels/订单1806280_51_7105035.txt new file mode 100644 index 0000000..e540336 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806280_51_7105035.txt @@ -0,0 +1 @@ +6 0.500680 0.339920 0.494120 0.471153 0.748713 0.469840 0.736900 0.325487 0.500680 0.338607 diff --git a/datasets/xianshiping/train/labels/订单1806282_51_7105048.txt b/datasets/xianshiping/train/labels/订单1806282_51_7105048.txt new file mode 100644 index 0000000..07ee211 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806282_51_7105048.txt @@ -0,0 +1 @@ +6 0.317227 0.290020 0.303229 0.443564 0.667174 0.454062 0.670677 0.291328 0.317227 0.287393 diff --git a/datasets/xianshiping/train/labels/订单1806284_51_7105002.txt b/datasets/xianshiping/train/labels/订单1806284_51_7105002.txt new file mode 100644 index 0000000..dfc1e08 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806284_51_7105002.txt @@ -0,0 +1 @@ +6 0.173725 0.484228 0.178971 0.597083 0.441438 0.599706 0.439690 0.482917 0.175474 0.481605 diff --git a/datasets/xianshiping/train/labels/订单1806286_51_7105055.txt b/datasets/xianshiping/train/labels/订单1806286_51_7105055.txt new file mode 100644 index 0000000..94a635a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806286_51_7105055.txt @@ -0,0 +1 @@ +6 0.157995 0.342510 0.156237 0.450117 0.411706 0.438311 0.401211 0.333320 0.156237 0.345137 diff --git a/datasets/xianshiping/train/labels/订单1806291_51_7105064.txt b/datasets/xianshiping/train/labels/订单1806291_51_7105064.txt new file mode 100644 index 0000000..a1c68ca --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806291_51_7105064.txt @@ -0,0 +1 @@ +6 0.455210 0.307083 0.454229 0.427812 0.615645 0.438314 0.602852 0.322826 0.454229 0.305768 diff --git a/datasets/xianshiping/train/labels/订单1806292_51_7105155.txt b/datasets/xianshiping/train/labels/订单1806292_51_7105155.txt new file mode 100644 index 0000000..161e8d2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806292_51_7105155.txt @@ -0,0 +1 @@ +6 0.296106 0.524967 0.317106 0.610271 0.513078 0.578775 0.479833 0.493471 0.292606 0.522342 diff --git a/datasets/xianshiping/train/labels/订单1806293_51_7105244.txt b/datasets/xianshiping/train/labels/订单1806293_51_7105244.txt new file mode 100644 index 0000000..5db158a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806293_51_7105244.txt @@ -0,0 +1 @@ +6 0.481615 0.438353 0.364844 0.465912 0.438047 0.595833 0.554818 0.570902 0.485104 0.439667 diff --git a/datasets/xianshiping/train/labels/订单1806296_51_7105118.txt b/datasets/xianshiping/train/labels/订单1806296_51_7105118.txt new file mode 100644 index 0000000..319b9b8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806296_51_7105118.txt @@ -0,0 +1 @@ +6 0.257734 0.644346 0.177240 0.770332 0.278724 0.807080 0.367969 0.677158 0.250729 0.640410 diff --git a/datasets/xianshiping/train/labels/订单1806298_51_7105110.txt b/datasets/xianshiping/train/labels/订单1806298_51_7105110.txt new file mode 100644 index 0000000..005bc6a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806298_51_7105110.txt @@ -0,0 +1 @@ +6 0.382719 0.414725 0.382719 0.493471 0.561203 0.490843 0.562941 0.414725 0.382719 0.413422 diff --git a/datasets/xianshiping/train/labels/订单1806301_51_7105200.txt b/datasets/xianshiping/train/labels/订单1806301_51_7105200.txt new file mode 100644 index 0000000..b520eec --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806301_51_7105200.txt @@ -0,0 +1 @@ +6 0.441440 0.527530 0.404693 0.618080 0.607667 0.661390 0.628667 0.570840 0.439680 0.523600 diff --git a/datasets/xianshiping/train/labels/订单1806302_51_7105091.txt b/datasets/xianshiping/train/labels/订单1806302_51_7105091.txt new file mode 100644 index 0000000..0e3b30b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806302_51_7105091.txt @@ -0,0 +1 @@ +6 0.413440 0.408110 0.418693 0.503910 0.632160 0.492100 0.618160 0.392360 0.409933 0.408110 diff --git a/datasets/xianshiping/train/labels/订单1806303_51_7105175.txt b/datasets/xianshiping/train/labels/订单1806303_51_7105175.txt new file mode 100644 index 0000000..ebee271 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806303_51_7105175.txt @@ -0,0 +1 @@ +6 0.492083 0.419983 0.488588 0.485599 0.654815 0.493472 0.651319 0.421293 0.495590 0.419983 diff --git a/datasets/xianshiping/train/labels/订单1806306_51_7105187.txt b/datasets/xianshiping/train/labels/订单1806306_51_7105187.txt new file mode 100644 index 0000000..03e01a8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806306_51_7105187.txt @@ -0,0 +1 @@ +6 0.374961 0.486865 0.378464 0.593164 0.607682 0.578730 0.588438 0.469805 0.378464 0.484238 diff --git a/datasets/xianshiping/train/labels/订单1806307_51_7105144.txt b/datasets/xianshiping/train/labels/订单1806307_51_7105144.txt new file mode 100644 index 0000000..96d1e07 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806307_51_7105144.txt @@ -0,0 +1 @@ +6 0.448464 0.397627 0.457201 0.498682 0.714427 0.484238 0.695182 0.377939 0.453711 0.393691 diff --git a/datasets/xianshiping/train/labels/订单1806308_51_7105217.txt b/datasets/xianshiping/train/labels/订单1806308_51_7105217.txt new file mode 100644 index 0000000..3f55b40 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806308_51_7105217.txt @@ -0,0 +1 @@ +6 0.390716 0.455371 0.380221 0.551172 0.609440 0.557734 0.611185 0.459307 0.395964 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1806309_51_7105279.txt b/datasets/xianshiping/train/labels/订单1806309_51_7105279.txt new file mode 100644 index 0000000..5bdb189 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806309_51_7105279.txt @@ -0,0 +1 @@ +6 0.255977 0.528857 0.264727 0.625977 0.478203 0.614160 0.465951 0.518359 0.254232 0.527549 diff --git a/datasets/xianshiping/train/labels/订单1806310_51_7105820.txt b/datasets/xianshiping/train/labels/订单1806310_51_7105820.txt new file mode 100644 index 0000000..a59ec00 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806310_51_7105820.txt @@ -0,0 +1 @@ +6 0.384922 0.510485 0.376178 0.583975 0.635722 0.591850 0.650311 0.518360 0.387833 0.506550 diff --git a/datasets/xianshiping/train/labels/订单1806311_51_7105525.txt b/datasets/xianshiping/train/labels/订单1806311_51_7105525.txt new file mode 100644 index 0000000..e969b21 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806311_51_7105525.txt @@ -0,0 +1 @@ +6 0.462461 0.485557 0.425703 0.561670 0.598932 0.616787 0.639180 0.530176 0.460703 0.486865 diff --git a/datasets/xianshiping/train/labels/订单1806314_51_7105323.txt b/datasets/xianshiping/train/labels/订单1806314_51_7105323.txt new file mode 100644 index 0000000..7abd2d6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806314_51_7105323.txt @@ -0,0 +1 @@ +6 0.360964 0.562979 0.390716 0.654844 0.591940 0.616787 0.555195 0.527549 0.353971 0.565605 diff --git a/datasets/xianshiping/train/labels/订单1806315_51_7105307.txt b/datasets/xianshiping/train/labels/订单1806315_51_7105307.txt new file mode 100644 index 0000000..d5888be --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806315_51_7105307.txt @@ -0,0 +1 @@ +6 0.304947 0.527530 0.304947 0.601020 0.474680 0.599710 0.472933 0.520970 0.301453 0.527530 diff --git a/datasets/xianshiping/train/labels/订单1806318_51_7105355.txt b/datasets/xianshiping/train/labels/订单1806318_51_7105355.txt new file mode 100644 index 0000000..c67aefd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806318_51_7105355.txt @@ -0,0 +1 @@ +6 0.367969 0.505244 0.346966 0.581357 0.534193 0.614160 0.553438 0.528857 0.366211 0.505244 diff --git a/datasets/xianshiping/train/labels/订单1806319_51_7105277.txt b/datasets/xianshiping/train/labels/订单1806319_51_7105277.txt new file mode 100644 index 0000000..9c22ab0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806319_51_7105277.txt @@ -0,0 +1 @@ +6 0.513078 0.511846 0.506083 0.597146 0.703806 0.614204 0.712556 0.521029 0.523578 0.510533 diff --git a/datasets/xianshiping/train/labels/订单1806323_51_7105337.txt b/datasets/xianshiping/train/labels/订单1806323_51_7105337.txt new file mode 100644 index 0000000..134a4c9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806323_51_7105337.txt @@ -0,0 +1 @@ +6 0.551693 0.434375 0.551693 0.518359 0.759922 0.522305 0.761667 0.433066 0.549948 0.433066 diff --git a/datasets/xianshiping/train/labels/订单1806324_51_7105310.txt b/datasets/xianshiping/train/labels/订单1806324_51_7105310.txt new file mode 100644 index 0000000..402a1a3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806324_51_7105310.txt @@ -0,0 +1 @@ +6 0.590182 0.400254 0.590195 0.498682 0.843906 0.497363 0.831654 0.395000 0.591940 0.398945 diff --git a/datasets/xianshiping/train/labels/订单1806325_51_7105633.txt b/datasets/xianshiping/train/labels/订单1806325_51_7105633.txt new file mode 100644 index 0000000..905a5db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806325_51_7105633.txt @@ -0,0 +1 @@ +6 0.322474 0.335947 0.320716 0.433066 0.542943 0.439619 0.542943 0.342510 0.331224 0.332012 diff --git a/datasets/xianshiping/train/labels/订单1806327_51_7105361.txt b/datasets/xianshiping/train/labels/订单1806327_51_7105361.txt new file mode 100644 index 0000000..b7c5a9c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806327_51_7105361.txt @@ -0,0 +1 @@ +6 0.404714 0.553799 0.348724 0.624658 0.521953 0.702090 0.579688 0.623350 0.411706 0.552480 diff --git a/datasets/xianshiping/train/labels/订单1806328_51_7105439.txt b/datasets/xianshiping/train/labels/订单1806328_51_7105439.txt new file mode 100644 index 0000000..bb59dcb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806328_51_7105439.txt @@ -0,0 +1 @@ +6 0.340719 0.434412 0.342471 0.498716 0.494706 0.497402 0.489451 0.427853 0.344222 0.434412 diff --git a/datasets/xianshiping/train/labels/订单1806330_51_7105483.txt b/datasets/xianshiping/train/labels/订单1806330_51_7105483.txt new file mode 100644 index 0000000..4337326 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806330_51_7105483.txt @@ -0,0 +1 @@ +6 0.416791 0.379873 0.403997 0.681707 0.542777 0.689585 0.556557 0.394314 0.416791 0.377243 diff --git a/datasets/xianshiping/train/labels/订单1806331_51_7105381.txt b/datasets/xianshiping/train/labels/订单1806331_51_7105381.txt new file mode 100644 index 0000000..6c677cd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806331_51_7105381.txt @@ -0,0 +1 @@ +6 0.542617 0.402922 0.549596 0.489529 0.762227 0.490843 0.765716 0.393735 0.540872 0.398980 diff --git a/datasets/xianshiping/train/labels/订单1806333_51_7105436.txt b/datasets/xianshiping/train/labels/订单1806333_51_7105436.txt new file mode 100644 index 0000000..1ce910e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806333_51_7105436.txt @@ -0,0 +1 @@ +6 0.290977 0.349072 0.280482 0.463242 0.553438 0.480303 0.558698 0.359570 0.292721 0.345137 diff --git a/datasets/xianshiping/train/labels/订单1806334_51_7105428.txt b/datasets/xianshiping/train/labels/订单1806334_51_7105428.txt new file mode 100644 index 0000000..11842ff --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806334_51_7105428.txt @@ -0,0 +1 @@ +6 0.116003 0.346445 0.219232 0.460625 0.471198 0.353008 0.385469 0.230957 0.116003 0.346445 diff --git a/datasets/xianshiping/train/labels/订单1806336_51_7105410.txt b/datasets/xianshiping/train/labels/订单1806336_51_7105410.txt new file mode 100644 index 0000000..71e40a3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806336_51_7105410.txt @@ -0,0 +1 @@ +6 0.365670 0.416033 0.447360 0.644380 0.549725 0.582700 0.469015 0.346480 0.369605 0.414727 diff --git a/datasets/xianshiping/train/labels/订单1806337_51_7105549.txt b/datasets/xianshiping/train/labels/订单1806337_51_7105549.txt new file mode 100644 index 0000000..17b0603 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806337_51_7105549.txt @@ -0,0 +1 @@ +6 0.258484 0.498716 0.265477 0.610265 0.519203 0.590578 0.496458 0.484284 0.261987 0.496098 diff --git a/datasets/xianshiping/train/labels/订单1806340_51_7105570.txt b/datasets/xianshiping/train/labels/订单1806340_51_7105570.txt new file mode 100644 index 0000000..9bf0156 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806340_51_7105570.txt @@ -0,0 +1 @@ +6 0.423839 0.518404 0.413344 0.616829 0.637317 0.631267 0.640811 0.526279 0.423839 0.517092 diff --git a/datasets/xianshiping/train/labels/订单1806342_51_7105897.txt b/datasets/xianshiping/train/labels/订单1806342_51_7105897.txt new file mode 100644 index 0000000..94e03dc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806342_51_7105897.txt @@ -0,0 +1 @@ +6 0.369690 0.510466 0.367941 0.632525 0.626912 0.628578 0.621667 0.502598 0.367941 0.506532 diff --git a/datasets/xianshiping/train/labels/订单1806343_51_7105589.txt b/datasets/xianshiping/train/labels/订单1806343_51_7105589.txt new file mode 100644 index 0000000..184916d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806343_51_7105589.txt @@ -0,0 +1 @@ +6 0.492646 0.498709 0.492646 0.590568 0.616860 0.590568 0.613902 0.496080 0.489689 0.496080 diff --git a/datasets/xianshiping/train/labels/订单1806345_51_7105509.txt b/datasets/xianshiping/train/labels/订单1806345_51_7105509.txt new file mode 100644 index 0000000..10f9623 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806345_51_7105509.txt @@ -0,0 +1 @@ +6 0.117747 0.346445 0.116003 0.440937 0.343464 0.442246 0.339974 0.342510 0.112500 0.342510 diff --git a/datasets/xianshiping/train/labels/订单1806349_51_7105942.txt b/datasets/xianshiping/train/labels/订单1806349_51_7105942.txt new file mode 100644 index 0000000..148c8a9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806349_51_7105942.txt @@ -0,0 +1 @@ +6 0.411594 0.356988 0.413344 0.448850 0.614567 0.443604 0.611067 0.351737 0.402844 0.355675 diff --git a/datasets/xianshiping/train/labels/订单1806351_51_7105526.txt b/datasets/xianshiping/train/labels/订单1806351_51_7105526.txt new file mode 100644 index 0000000..cbae36b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806351_51_7105526.txt @@ -0,0 +1 @@ +6 0.353971 0.452744 0.345221 0.565605 0.619935 0.573486 0.616432 0.455371 0.348724 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1806353_51_7105640.txt b/datasets/xianshiping/train/labels/订单1806353_51_7105640.txt new file mode 100644 index 0000000..4cda23e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806353_51_7105640.txt @@ -0,0 +1 @@ +6 0.297859 0.304497 0.296111 0.397674 0.535833 0.397674 0.527083 0.299245 0.296111 0.303186 diff --git a/datasets/xianshiping/train/labels/订单1806354_51_7105654.txt b/datasets/xianshiping/train/labels/订单1806354_51_7105654.txt new file mode 100644 index 0000000..283dcac --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806354_51_7105654.txt @@ -0,0 +1 @@ +6 0.378464 0.367441 0.360964 0.485557 0.632188 0.502617 0.649687 0.381885 0.380221 0.364824 diff --git a/datasets/xianshiping/train/labels/订单1806355_51_7105607.txt b/datasets/xianshiping/train/labels/订单1806355_51_7105607.txt new file mode 100644 index 0000000..0588b4c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806355_51_7105607.txt @@ -0,0 +1 @@ +6 0.327721 0.520986 0.376719 0.622041 0.604193 0.578730 0.562187 0.467178 0.324219 0.517051 diff --git a/datasets/xianshiping/train/labels/订单1806357_51_7105670.txt b/datasets/xianshiping/train/labels/订单1806357_51_7105670.txt new file mode 100644 index 0000000..360447a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806357_51_7105670.txt @@ -0,0 +1 @@ +6 0.231484 0.353008 0.227982 0.416006 0.376719 0.418623 0.374961 0.350381 0.236732 0.350381 diff --git a/datasets/xianshiping/train/labels/订单1806358_51_7105747.txt b/datasets/xianshiping/train/labels/订单1806358_51_7105747.txt new file mode 100644 index 0000000..56c4a45 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806358_51_7105747.txt @@ -0,0 +1 @@ +6 0.273453 0.394990 0.278707 0.464540 0.481680 0.448790 0.465933 0.375300 0.275200 0.392360 diff --git a/datasets/xianshiping/train/labels/订单1806359_51_7105675.txt b/datasets/xianshiping/train/labels/订单1806359_51_7105675.txt new file mode 100644 index 0000000..8a7996d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806359_51_7105675.txt @@ -0,0 +1 @@ +6 0.156250 0.573486 0.231484 0.715215 0.544701 0.612852 0.464206 0.471123 0.152747 0.574795 diff --git a/datasets/xianshiping/train/labels/订单1806360_51_7105662.txt b/datasets/xianshiping/train/labels/订单1806360_51_7105662.txt new file mode 100644 index 0000000..501209e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806360_51_7105662.txt @@ -0,0 +1 @@ +6 0.514948 0.379258 0.507943 0.505244 0.789661 0.524922 0.793164 0.401562 0.523698 0.379258 diff --git a/datasets/xianshiping/train/labels/订单1806361_51_7105712.txt b/datasets/xianshiping/train/labels/订单1806361_51_7105712.txt new file mode 100644 index 0000000..5aad176 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806361_51_7105712.txt @@ -0,0 +1 @@ +6 0.356597 0.494749 0.360104 0.604983 0.594567 0.602362 0.587566 0.492119 0.360104 0.493434 diff --git a/datasets/xianshiping/train/labels/订单1806362_51_7105959.txt b/datasets/xianshiping/train/labels/订单1806362_51_7105959.txt new file mode 100644 index 0000000..aa9553e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806362_51_7105959.txt @@ -0,0 +1 @@ +6 0.444385 0.582669 0.332183 0.660098 0.442417 0.900254 0.568403 0.800521 0.444385 0.581361 diff --git a/datasets/xianshiping/train/labels/订单1806363_51_7105693.txt b/datasets/xianshiping/train/labels/订单1806363_51_7105693.txt new file mode 100644 index 0000000..3b4a7d7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806363_51_7105693.txt @@ -0,0 +1 @@ +6 0.406458 0.391064 0.427461 0.484238 0.668932 0.463242 0.644427 0.366133 0.409961 0.389756 diff --git a/datasets/xianshiping/train/labels/订单1806366_51_7105783.txt b/datasets/xianshiping/train/labels/订单1806366_51_7105783.txt new file mode 100644 index 0000000..6de9d4e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806366_51_7105783.txt @@ -0,0 +1 @@ +6 0.458958 0.535420 0.441458 0.628604 0.670677 0.652227 0.674180 0.553799 0.455456 0.535420 diff --git a/datasets/xianshiping/train/labels/订单1806367_51_7105793.txt b/datasets/xianshiping/train/labels/订单1806367_51_7105793.txt new file mode 100644 index 0000000..c2beda1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806367_51_7105793.txt @@ -0,0 +1 @@ +6 0.433560 0.439629 0.435527 0.574798 0.593989 0.572174 0.592021 0.438314 0.435527 0.436999 diff --git a/datasets/xianshiping/train/labels/订单1806368_51_7105718.txt b/datasets/xianshiping/train/labels/订单1806368_51_7105718.txt new file mode 100644 index 0000000..e5a36cd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806368_51_7105718.txt @@ -0,0 +1 @@ +6 0.528083 0.288756 0.576313 0.371433 0.704267 0.291383 0.655054 0.210017 0.526117 0.286133 diff --git a/datasets/xianshiping/train/labels/订单1806369_51_7105743.txt b/datasets/xianshiping/train/labels/订单1806369_51_7105743.txt new file mode 100644 index 0000000..b258159 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806369_51_7105743.txt @@ -0,0 +1 @@ +6 0.345221 0.455371 0.346966 0.557734 0.576185 0.553799 0.579688 0.450117 0.346966 0.454062 diff --git a/datasets/xianshiping/train/labels/订单1806370_51_7105764.txt b/datasets/xianshiping/train/labels/订单1806370_51_7105764.txt new file mode 100644 index 0000000..3ed65be --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806370_51_7105764.txt @@ -0,0 +1 @@ +6 0.572359 0.329420 0.577286 0.439657 0.735748 0.440972 0.725907 0.325482 0.569412 0.329420 diff --git a/datasets/xianshiping/train/labels/订单1806371_51_7105828.txt b/datasets/xianshiping/train/labels/订单1806371_51_7105828.txt new file mode 100644 index 0000000..7ce6135 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806371_51_7105828.txt @@ -0,0 +1 @@ +6 0.250611 0.443604 0.250611 0.532842 0.506083 0.509221 0.497333 0.418667 0.250611 0.443604 diff --git a/datasets/xianshiping/train/labels/订单1806374_51_7105810.txt b/datasets/xianshiping/train/labels/订单1806374_51_7105810.txt new file mode 100644 index 0000000..ad93759 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806374_51_7105810.txt @@ -0,0 +1 @@ +6 0.576185 0.606289 0.572695 0.671904 0.730169 0.677158 0.726667 0.607598 0.579688 0.602354 diff --git a/datasets/xianshiping/train/labels/订单1806382_51_7105948.txt b/datasets/xianshiping/train/labels/订单1806382_51_7105948.txt new file mode 100644 index 0000000..18d88e0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806382_51_7105948.txt @@ -0,0 +1 @@ +6 0.420440 0.511780 0.415187 0.622020 0.653160 0.627270 0.656653 0.514410 0.423933 0.511780 diff --git a/datasets/xianshiping/train/labels/订单1806385_51_7105937.txt b/datasets/xianshiping/train/labels/订单1806385_51_7105937.txt new file mode 100644 index 0000000..6f14266 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806385_51_7105937.txt @@ -0,0 +1 @@ +6 0.255960 0.422550 0.282200 0.569530 0.658413 0.513100 0.604160 0.370050 0.259453 0.422550 diff --git a/datasets/xianshiping/train/labels/订单1806386_51_7105908.txt b/datasets/xianshiping/train/labels/订单1806386_51_7105908.txt new file mode 100644 index 0000000..2d710eb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806386_51_7105908.txt @@ -0,0 +1 @@ +6 0.257734 0.522305 0.247227 0.631221 0.495703 0.643037 0.497448 0.530176 0.259479 0.523613 diff --git a/datasets/xianshiping/train/labels/订单1806388_51_7106058.txt b/datasets/xianshiping/train/labels/订单1806388_51_7106058.txt new file mode 100644 index 0000000..648de3f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806388_51_7106058.txt @@ -0,0 +1 @@ +6 0.276833 0.484269 0.315333 0.561692 0.523551 0.513135 0.476308 0.439644 0.280333 0.481644 diff --git a/datasets/xianshiping/train/labels/订单1806391_51_7106033.txt b/datasets/xianshiping/train/labels/订单1806391_51_7106033.txt new file mode 100644 index 0000000..5727966 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806391_51_7106033.txt @@ -0,0 +1 @@ +6 0.546445 0.300518 0.537695 0.409443 0.786159 0.412061 0.779167 0.300518 0.544701 0.301826 diff --git a/datasets/xianshiping/train/labels/订单1806395_51_7106004.txt b/datasets/xianshiping/train/labels/订单1806395_51_7106004.txt new file mode 100644 index 0000000..e272403 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806395_51_7106004.txt @@ -0,0 +1 @@ +6 0.467708 0.383193 0.457201 0.496055 0.738919 0.509180 0.735417 0.389756 0.465951 0.377939 diff --git a/datasets/xianshiping/train/labels/订单1806396_51_7105993.txt b/datasets/xianshiping/train/labels/订单1806396_51_7105993.txt new file mode 100644 index 0000000..16be21e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806396_51_7105993.txt @@ -0,0 +1,2 @@ +6 0.456196 0.559049 0.499502 0.686348 0.653047 0.593171 0.608755 0.468496 0.454229 0.557734 +6 0.455210 0.559049 0.498521 0.690280 0.654033 0.590547 0.611709 0.461934 0.453242 0.561673 diff --git a/datasets/xianshiping/train/labels/订单1806398_51_7106151.txt b/datasets/xianshiping/train/labels/订单1806398_51_7106151.txt new file mode 100644 index 0000000..6d88c82 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806398_51_7106151.txt @@ -0,0 +1 @@ +6 0.569193 0.448809 0.581445 0.612852 0.717917 0.595791 0.698672 0.434375 0.569193 0.450117 diff --git a/datasets/xianshiping/train/labels/订单1806400_51_7106043.txt b/datasets/xianshiping/train/labels/订单1806400_51_7106043.txt new file mode 100644 index 0000000..de4f9c3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806400_51_7106043.txt @@ -0,0 +1,2 @@ +6 0.555072 0.627329 0.577822 0.763813 0.686306 0.749375 0.656561 0.612896 0.562072 0.624704 +6 0.553322 0.624704 0.579572 0.765125 0.691556 0.749375 0.658311 0.611583 0.556822 0.622079 diff --git a/datasets/xianshiping/train/labels/订单1806402_51_7106069.txt b/datasets/xianshiping/train/labels/订单1806402_51_7106069.txt new file mode 100644 index 0000000..f2e15e6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806402_51_7106069.txt @@ -0,0 +1 @@ +6 0.230484 0.469843 0.233987 0.605020 0.533203 0.601078 0.529699 0.465912 0.233987 0.467225 diff --git a/datasets/xianshiping/train/labels/订单1806403_51_7106091.txt b/datasets/xianshiping/train/labels/订单1806403_51_7106091.txt new file mode 100644 index 0000000..c616d77 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806403_51_7106091.txt @@ -0,0 +1 @@ +6 0.453676 0.375306 0.444935 0.486850 0.719657 0.511789 0.716144 0.387108 0.450180 0.376618 diff --git a/datasets/xianshiping/train/labels/订单1806410_51_7106166.txt b/datasets/xianshiping/train/labels/订单1806410_51_7106166.txt new file mode 100644 index 0000000..9d1ffe4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806410_51_7106166.txt @@ -0,0 +1 @@ +6 0.639180 0.433066 0.623437 0.527549 0.861406 0.551172 0.864909 0.446182 0.644427 0.431748 diff --git a/datasets/xianshiping/train/labels/订单1806413_51_7106233.txt b/datasets/xianshiping/train/labels/订单1806413_51_7106233.txt new file mode 100644 index 0000000..e2375ef --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806413_51_7106233.txt @@ -0,0 +1 @@ +6 0.280458 0.560343 0.282206 0.671887 0.525425 0.657451 0.513170 0.551152 0.276961 0.562966 diff --git a/datasets/xianshiping/train/labels/订单1806415_51_7106264.txt b/datasets/xianshiping/train/labels/订单1806415_51_7106264.txt new file mode 100644 index 0000000..04ca28b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806415_51_7106264.txt @@ -0,0 +1 @@ +6 0.566458 0.311021 0.566458 0.377949 0.783429 0.372700 0.767092 0.299209 0.564123 0.309707 diff --git a/datasets/xianshiping/train/labels/订单1806417_51_7106289.txt b/datasets/xianshiping/train/labels/订单1806417_51_7106289.txt new file mode 100644 index 0000000..e7c24df --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806417_51_7106289.txt @@ -0,0 +1 @@ +6 0.502695 0.422559 0.493945 0.535420 0.754674 0.552480 0.758164 0.435684 0.504453 0.421250 diff --git a/datasets/xianshiping/train/labels/订单1806418_51_7106207.txt b/datasets/xianshiping/train/labels/订单1806418_51_7106207.txt new file mode 100644 index 0000000..39d7fd6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806418_51_7106207.txt @@ -0,0 +1 @@ +6 0.404714 0.681094 0.415208 0.751963 0.583190 0.729648 0.560443 0.656162 0.401211 0.675840 diff --git a/datasets/xianshiping/train/labels/订单1806420_51_7106202.txt b/datasets/xianshiping/train/labels/订单1806420_51_7106202.txt new file mode 100644 index 0000000..d3c4ff5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806420_51_7106202.txt @@ -0,0 +1 @@ +6 0.296224 0.431748 0.301471 0.549863 0.567448 0.547236 0.558698 0.427812 0.296224 0.430439 diff --git a/datasets/xianshiping/train/labels/订单1806421_51_7106234.txt b/datasets/xianshiping/train/labels/订单1806421_51_7106234.txt new file mode 100644 index 0000000..36b6577 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806421_51_7106234.txt @@ -0,0 +1 @@ +6 0.396180 0.347793 0.400120 0.488213 0.470000 0.484280 0.469015 0.338607 0.394210 0.347793 diff --git a/datasets/xianshiping/train/labels/订单1806423_51_7106297.txt b/datasets/xianshiping/train/labels/订单1806423_51_7106297.txt new file mode 100644 index 0000000..239a3b8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806423_51_7106297.txt @@ -0,0 +1 @@ +6 0.357440 0.338560 0.341693 0.436980 0.621667 0.451420 0.625160 0.343810 0.362693 0.335930 diff --git a/datasets/xianshiping/train/labels/订单1806424_51_7106323.txt b/datasets/xianshiping/train/labels/订单1806424_51_7106323.txt new file mode 100644 index 0000000..bb1f616 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806424_51_7106323.txt @@ -0,0 +1 @@ +6 0.355716 0.513115 0.357474 0.606289 0.546445 0.601045 0.532448 0.510488 0.359219 0.510488 diff --git a/datasets/xianshiping/train/labels/订单1806435_51_7106340.txt b/datasets/xianshiping/train/labels/订单1806435_51_7106340.txt new file mode 100644 index 0000000..fd074e5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806435_51_7106340.txt @@ -0,0 +1 @@ +6 0.278070 0.389787 0.280040 0.707373 0.405040 0.712627 0.399135 0.364853 0.279055 0.387167 diff --git a/datasets/xianshiping/train/labels/订单1806438_51_7106366.txt b/datasets/xianshiping/train/labels/订单1806438_51_7106366.txt new file mode 100644 index 0000000..bee9b30 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806438_51_7106366.txt @@ -0,0 +1 @@ +6 0.345100 0.443604 0.343350 0.532842 0.569072 0.534154 0.562072 0.438354 0.345100 0.439667 diff --git a/datasets/xianshiping/train/labels/订单1806439_51_7106397.txt b/datasets/xianshiping/train/labels/订单1806439_51_7106397.txt new file mode 100644 index 0000000..ee372fc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806439_51_7106397.txt @@ -0,0 +1 @@ +6 0.387417 0.181275 0.378980 0.352887 0.535373 0.394706 0.537966 0.214444 0.386765 0.178399 diff --git a/datasets/xianshiping/train/labels/订单1806445_51_7106489.txt b/datasets/xianshiping/train/labels/订单1806445_51_7106489.txt new file mode 100644 index 0000000..999bf0f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806445_51_7106489.txt @@ -0,0 +1 @@ +6 0.306719 0.707344 0.257734 0.879258 0.402969 0.897627 0.441458 0.716523 0.308477 0.704717 diff --git a/datasets/xianshiping/train/labels/订单1806446_51_7106424.txt b/datasets/xianshiping/train/labels/订单1806446_51_7106424.txt new file mode 100644 index 0000000..6b2817c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806446_51_7106424.txt @@ -0,0 +1 @@ +6 0.161467 0.406800 0.173720 0.480290 0.371440 0.464540 0.357440 0.389740 0.164973 0.404170 diff --git a/datasets/xianshiping/train/labels/订单1806448_51_7106612.txt b/datasets/xianshiping/train/labels/订单1806448_51_7106612.txt new file mode 100644 index 0000000..93a401f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806448_51_7106612.txt @@ -0,0 +1 @@ +6 0.413908 0.126028 0.390288 0.362250 0.494621 0.377994 0.521196 0.140461 0.414896 0.122089 diff --git a/datasets/xianshiping/train/labels/订单1806449_51_7106451.txt b/datasets/xianshiping/train/labels/订单1806449_51_7106451.txt new file mode 100644 index 0000000..0c8c766 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806449_51_7106451.txt @@ -0,0 +1 @@ +6 0.435550 0.482967 0.411930 0.755933 0.539880 0.775613 0.556615 0.493467 0.436535 0.484280 diff --git a/datasets/xianshiping/train/labels/订单1806450_51_7106443.txt b/datasets/xianshiping/train/labels/订单1806450_51_7106443.txt new file mode 100644 index 0000000..315fce0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806450_51_7106443.txt @@ -0,0 +1 @@ +6 0.367969 0.414687 0.360964 0.488184 0.548190 0.480303 0.549948 0.400254 0.367969 0.409443 diff --git a/datasets/xianshiping/train/labels/订单1806453_51_7106521.txt b/datasets/xianshiping/train/labels/订单1806453_51_7106521.txt new file mode 100644 index 0000000..864c03c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806453_51_7106521.txt @@ -0,0 +1 @@ +6 0.480817 0.343840 0.459163 0.570878 0.580226 0.582686 0.598923 0.355654 0.482784 0.339904 diff --git a/datasets/xianshiping/train/labels/订单1806454_51_7106564.txt b/datasets/xianshiping/train/labels/订单1806454_51_7106564.txt new file mode 100644 index 0000000..e143c18 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806454_51_7106564.txt @@ -0,0 +1 @@ +6 0.458860 0.231020 0.437865 0.297950 0.605848 0.328136 0.628596 0.245461 0.462368 0.224463 diff --git a/datasets/xianshiping/train/labels/订单1806464_51_7106658.txt b/datasets/xianshiping/train/labels/订单1806464_51_7106658.txt new file mode 100644 index 0000000..a7a5f29 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806464_51_7106658.txt @@ -0,0 +1 @@ +6 0.408181 0.112059 0.411426 0.339902 0.563275 0.377397 0.561328 0.152440 0.410127 0.107734 diff --git a/datasets/xianshiping/train/labels/订单1806465_51_7106625.txt b/datasets/xianshiping/train/labels/订单1806465_51_7106625.txt new file mode 100644 index 0000000..96dfc21 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806465_51_7106625.txt @@ -0,0 +1 @@ +6 0.513203 0.636475 0.527201 0.721777 0.702174 0.707344 0.695182 0.622041 0.516693 0.635166 diff --git a/datasets/xianshiping/train/labels/订单1806467_51_7106642.txt b/datasets/xianshiping/train/labels/订单1806467_51_7106642.txt new file mode 100644 index 0000000..67e1bdc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806467_51_7106642.txt @@ -0,0 +1 @@ +6 0.255960 0.566900 0.311947 0.650890 0.478173 0.585280 0.423933 0.499970 0.252453 0.565590 diff --git a/datasets/xianshiping/train/labels/订单1806468_51_7106712.txt b/datasets/xianshiping/train/labels/订单1806468_51_7106712.txt new file mode 100644 index 0000000..387058f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806468_51_7106712.txt @@ -0,0 +1 @@ +6 0.588438 0.494746 0.576185 0.590537 0.779167 0.597100 0.786159 0.502617 0.586693 0.493428 diff --git a/datasets/xianshiping/train/labels/订单1806470_51_7106702.txt b/datasets/xianshiping/train/labels/订单1806470_51_7106702.txt new file mode 100644 index 0000000..905c5ab --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806470_51_7106702.txt @@ -0,0 +1 @@ +6 0.441440 0.522280 0.430933 0.625960 0.667160 0.641710 0.674160 0.528840 0.439680 0.522280 diff --git a/datasets/xianshiping/train/labels/订单1806471_51_7106669.txt b/datasets/xianshiping/train/labels/订单1806471_51_7106669.txt new file mode 100644 index 0000000..29dc9c5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806471_51_7106669.txt @@ -0,0 +1 @@ +6 0.498209 0.405539 0.484209 0.530216 0.769425 0.542029 0.764170 0.408167 0.494706 0.401608 diff --git a/datasets/xianshiping/train/labels/订单1806476_51_7106691.txt b/datasets/xianshiping/train/labels/订单1806476_51_7106691.txt new file mode 100644 index 0000000..de46c7e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806476_51_7106691.txt @@ -0,0 +1,2 @@ +6 0.523125 0.195534 0.472930 0.404193 0.560527 0.443561 0.621553 0.232279 0.520171 0.194219 +6 0.521157 0.194219 0.473911 0.401569 0.561509 0.443561 0.616631 0.230964 0.523125 0.194219 diff --git a/datasets/xianshiping/train/labels/订单1806477_51_7106810.txt b/datasets/xianshiping/train/labels/订单1806477_51_7106810.txt new file mode 100644 index 0000000..96bb08c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806477_51_7106810.txt @@ -0,0 +1 @@ +6 0.325856 0.574838 0.345100 0.654887 0.527078 0.620767 0.504333 0.542029 0.325856 0.574838 diff --git a/datasets/xianshiping/train/labels/订单1806479_51_7106769.txt b/datasets/xianshiping/train/labels/订单1806479_51_7106769.txt new file mode 100644 index 0000000..c88663a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806479_51_7106769.txt @@ -0,0 +1 @@ +6 0.525427 0.446170 0.532427 0.604960 0.644413 0.597090 0.630413 0.443540 0.520173 0.443540 diff --git a/datasets/xianshiping/train/labels/订单1806481_51_7106776.txt b/datasets/xianshiping/train/labels/订单1806481_51_7106776.txt new file mode 100644 index 0000000..41a40bb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806481_51_7106776.txt @@ -0,0 +1 @@ +6 0.380196 0.429105 0.371438 0.531471 0.635654 0.534093 0.632157 0.425172 0.385441 0.426483 diff --git a/datasets/xianshiping/train/labels/订单1806482_51_7106783.txt b/datasets/xianshiping/train/labels/订单1806482_51_7106783.txt new file mode 100644 index 0000000..25e56c1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806482_51_7106783.txt @@ -0,0 +1 @@ +6 0.213960 0.535410 0.236707 0.637770 0.465933 0.616770 0.457187 0.519660 0.217467 0.534090 diff --git a/datasets/xianshiping/train/labels/订单1806483_51_7106799.txt b/datasets/xianshiping/train/labels/订单1806483_51_7106799.txt new file mode 100644 index 0000000..4d59f9d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806483_51_7106799.txt @@ -0,0 +1 @@ +6 0.294479 0.389756 0.299727 0.522305 0.604193 0.527549 0.605938 0.396318 0.297982 0.388437 diff --git a/datasets/xianshiping/train/labels/订单1806487_51_7106855.txt b/datasets/xianshiping/train/labels/订单1806487_51_7106855.txt new file mode 100644 index 0000000..0f85d3c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806487_51_7106855.txt @@ -0,0 +1 @@ +6 0.264635 0.510548 0.257632 0.605044 0.483363 0.602412 0.478114 0.510548 0.261140 0.511864 diff --git a/datasets/xianshiping/train/labels/订单1806488_51_7106871.txt b/datasets/xianshiping/train/labels/订单1806488_51_7106871.txt new file mode 100644 index 0000000..5fc34e9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806488_51_7106871.txt @@ -0,0 +1 @@ +6 0.185990 0.573486 0.243737 0.673223 0.472956 0.604980 0.416966 0.510488 0.189492 0.574795 diff --git a/datasets/xianshiping/train/labels/订单1806490_51_7106897.txt b/datasets/xianshiping/train/labels/订单1806490_51_7106897.txt new file mode 100644 index 0000000..a131f29 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806490_51_7106897.txt @@ -0,0 +1 @@ +6 0.075566 0.421275 0.069739 0.518387 0.466351 0.514451 0.454684 0.418652 0.078486 0.419961 diff --git a/datasets/xianshiping/train/labels/订单1806491_51_7106887.txt b/datasets/xianshiping/train/labels/订单1806491_51_7106887.txt new file mode 100644 index 0000000..277f56a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806491_51_7106887.txt @@ -0,0 +1 @@ +6 0.460703 0.431748 0.448451 0.526240 0.686432 0.539365 0.691680 0.435684 0.464206 0.430439 diff --git a/datasets/xianshiping/train/labels/订单1806493_51_7106927.txt b/datasets/xianshiping/train/labels/订单1806493_51_7106927.txt new file mode 100644 index 0000000..d60f491 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806493_51_7106927.txt @@ -0,0 +1 @@ +6 0.318990 0.395010 0.322480 0.526250 0.616444 0.518376 0.611194 0.385827 0.317231 0.393701 diff --git a/datasets/xianshiping/train/labels/订单1806494_51_7106920.txt b/datasets/xianshiping/train/labels/订单1806494_51_7106920.txt new file mode 100644 index 0000000..45090e6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806494_51_7106920.txt @@ -0,0 +1 @@ +6 0.339974 0.572168 0.355716 0.664033 0.542943 0.641719 0.525443 0.555107 0.339974 0.569541 diff --git a/datasets/xianshiping/train/labels/订单1806495_51_7106942.txt b/datasets/xianshiping/train/labels/订单1806495_51_7106942.txt new file mode 100644 index 0000000..481ffdd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806495_51_7106942.txt @@ -0,0 +1 @@ +6 0.359077 0.506577 0.352077 0.611567 0.593551 0.622067 0.593551 0.505269 0.359077 0.506577 diff --git a/datasets/xianshiping/train/labels/订单1806498_51_7106986.txt b/datasets/xianshiping/train/labels/订单1806498_51_7106986.txt new file mode 100644 index 0000000..0860967 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806498_51_7106986.txt @@ -0,0 +1 @@ +6 0.247240 0.628606 0.233242 0.780837 0.563952 0.784775 0.553454 0.635168 0.245492 0.627295 diff --git a/datasets/xianshiping/train/labels/订单1806499_51_7106958.txt b/datasets/xianshiping/train/labels/订单1806499_51_7106958.txt new file mode 100644 index 0000000..df78ce4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806499_51_7106958.txt @@ -0,0 +1 @@ +6 0.345221 0.573486 0.338216 0.658779 0.514948 0.660098 0.509701 0.577422 0.352214 0.576104 diff --git a/datasets/xianshiping/train/labels/订单1806501_51_7106971.txt b/datasets/xianshiping/train/labels/订单1806501_51_7106971.txt new file mode 100644 index 0000000..3706daa --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806501_51_7106971.txt @@ -0,0 +1 @@ +6 0.534193 0.454062 0.527201 0.543301 0.759922 0.551172 0.744167 0.459307 0.537695 0.450117 diff --git a/datasets/xianshiping/train/labels/订单1806502_51_7107001.txt b/datasets/xianshiping/train/labels/订单1806502_51_7107001.txt new file mode 100644 index 0000000..7e9737a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806502_51_7107001.txt @@ -0,0 +1 @@ +6 0.410150 0.695590 0.344537 0.829444 0.435093 0.870127 0.495451 0.717894 0.411470 0.692963 diff --git a/datasets/xianshiping/train/labels/订单1806504_51_7107026.txt b/datasets/xianshiping/train/labels/订单1806504_51_7107026.txt new file mode 100644 index 0000000..1ea9f37 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806504_51_7107026.txt @@ -0,0 +1 @@ +6 0.322356 0.494783 0.336350 0.594521 0.565572 0.582708 0.551572 0.481658 0.322356 0.492158 diff --git a/datasets/xianshiping/train/labels/订单1806507_51_7107059.txt b/datasets/xianshiping/train/labels/订单1806507_51_7107059.txt new file mode 100644 index 0000000..7f5c289 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806507_51_7107059.txt @@ -0,0 +1 @@ +6 0.446706 0.353008 0.436211 0.476367 0.710924 0.478994 0.712669 0.351699 0.450208 0.351699 diff --git a/datasets/xianshiping/train/labels/订单1806511_51_7107090.txt b/datasets/xianshiping/train/labels/订单1806511_51_7107090.txt new file mode 100644 index 0000000..8ce98a4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806511_51_7107090.txt @@ -0,0 +1 @@ +6 0.322453 0.321500 0.329453 0.507850 0.712653 0.502600 0.705653 0.307060 0.318947 0.317560 diff --git a/datasets/xianshiping/train/labels/订单1806513_51_7107909.txt b/datasets/xianshiping/train/labels/订单1806513_51_7107909.txt new file mode 100644 index 0000000..3d8fd42 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806513_51_7107909.txt @@ -0,0 +1 @@ +6 0.269974 0.300518 0.275234 0.435684 0.551693 0.431748 0.555195 0.292646 0.266484 0.299199 diff --git a/datasets/xianshiping/train/labels/订单1806514_51_7107083.txt b/datasets/xianshiping/train/labels/订单1806514_51_7107083.txt new file mode 100644 index 0000000..4a9f097 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806514_51_7107083.txt @@ -0,0 +1 @@ +6 0.292606 0.358300 0.273361 0.465913 0.513078 0.479038 0.520078 0.372737 0.292606 0.358300 diff --git a/datasets/xianshiping/train/labels/订单1806515_51_7107133.txt b/datasets/xianshiping/train/labels/订单1806515_51_7107133.txt new file mode 100644 index 0000000..485b58b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806515_51_7107133.txt @@ -0,0 +1 @@ +6 0.040733 0.368740 0.028480 0.494720 0.324200 0.509160 0.329453 0.387110 0.044240 0.368740 diff --git a/datasets/xianshiping/train/labels/订单1806516_51_7107103.txt b/datasets/xianshiping/train/labels/订单1806516_51_7107103.txt new file mode 100644 index 0000000..87a3d2a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806516_51_7107103.txt @@ -0,0 +1 @@ +6 0.486953 0.468496 0.464206 0.578730 0.731927 0.608916 0.745924 0.485557 0.488698 0.467178 diff --git a/datasets/xianshiping/train/labels/订单1806519_51_7107227.txt b/datasets/xianshiping/train/labels/订单1806519_51_7107227.txt new file mode 100644 index 0000000..17ed6f2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806519_51_7107227.txt @@ -0,0 +1 @@ +6 0.548112 0.420009 0.542867 0.560428 0.663601 0.560428 0.663601 0.417386 0.553357 0.417386 diff --git a/datasets/xianshiping/train/labels/订单1806522_51_7107184.txt b/datasets/xianshiping/train/labels/订单1806522_51_7107184.txt new file mode 100644 index 0000000..5f98134 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806522_51_7107184.txt @@ -0,0 +1 @@ +6 0.425589 0.440979 0.427339 0.559087 0.691556 0.561712 0.691556 0.439667 0.434339 0.439667 diff --git a/datasets/xianshiping/train/labels/订单1806523_51_7107175.txt b/datasets/xianshiping/train/labels/订单1806523_51_7107175.txt new file mode 100644 index 0000000..da6a49e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806523_51_7107175.txt @@ -0,0 +1 @@ +6 0.360850 0.447542 0.397594 0.509221 0.549828 0.460662 0.504333 0.396358 0.359100 0.446229 diff --git a/datasets/xianshiping/train/labels/订单1806524_51_7107203.txt b/datasets/xianshiping/train/labels/订单1806524_51_7107203.txt new file mode 100644 index 0000000..18670ff --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806524_51_7107203.txt @@ -0,0 +1 @@ +6 0.397693 0.476350 0.404693 0.589210 0.656653 0.576090 0.647907 0.464540 0.395933 0.473730 diff --git a/datasets/xianshiping/train/labels/订单1806526_51_7107134.txt b/datasets/xianshiping/train/labels/订单1806526_51_7107134.txt new file mode 100644 index 0000000..a82ca00 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806526_51_7107134.txt @@ -0,0 +1 @@ +6 0.320729 0.562979 0.331224 0.681094 0.605938 0.662725 0.584935 0.545918 0.318971 0.560361 diff --git a/datasets/xianshiping/train/labels/订单1806528_51_7107115.txt b/datasets/xianshiping/train/labels/订单1806528_51_7107115.txt new file mode 100644 index 0000000..eb0a1fd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806528_51_7107115.txt @@ -0,0 +1 @@ +6 0.339974 0.457998 0.346966 0.559043 0.562187 0.557734 0.569193 0.456680 0.338216 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1806536_51_7107277.txt b/datasets/xianshiping/train/labels/订单1806536_51_7107277.txt new file mode 100644 index 0000000..a4e9dd3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806536_51_7107277.txt @@ -0,0 +1 @@ +6 0.303229 0.536738 0.294479 0.644346 0.534193 0.644346 0.534193 0.535420 0.303229 0.536738 diff --git a/datasets/xianshiping/train/labels/订单1806541_51_7107482.txt b/datasets/xianshiping/train/labels/订单1806541_51_7107482.txt new file mode 100644 index 0000000..0f801e8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806541_51_7107482.txt @@ -0,0 +1 @@ +6 0.399466 0.444873 0.390716 0.531484 0.604193 0.538047 0.604193 0.448809 0.404714 0.442246 diff --git a/datasets/xianshiping/train/labels/订单1806543_51_7107285.txt b/datasets/xianshiping/train/labels/订单1806543_51_7107285.txt new file mode 100644 index 0000000..466eeb9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806543_51_7107285.txt @@ -0,0 +1 @@ +6 0.357474 0.514424 0.357474 0.611543 0.583190 0.619414 0.588438 0.519678 0.364466 0.509180 diff --git a/datasets/xianshiping/train/labels/订单1806544_51_7107363.txt b/datasets/xianshiping/train/labels/订单1806544_51_7107363.txt new file mode 100644 index 0000000..ad76773 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806544_51_7107363.txt @@ -0,0 +1 @@ +6 0.359200 0.556400 0.376693 0.636460 0.555173 0.614150 0.535920 0.534090 0.355693 0.555090 diff --git a/datasets/xianshiping/train/labels/订单1806545_51_7107289.txt b/datasets/xianshiping/train/labels/订单1806545_51_7107289.txt new file mode 100644 index 0000000..b2da8a8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806545_51_7107289.txt @@ -0,0 +1 @@ +6 0.154492 0.375322 0.208737 0.477686 0.436211 0.422559 0.383711 0.309697 0.145742 0.375322 diff --git a/datasets/xianshiping/train/labels/订单1806548_51_7107271.txt b/datasets/xianshiping/train/labels/订单1806548_51_7107271.txt new file mode 100644 index 0000000..9eee02d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806548_51_7107271.txt @@ -0,0 +1 @@ +6 0.257734 0.461934 0.255977 0.538047 0.443203 0.545918 0.446706 0.464561 0.261224 0.460625 diff --git a/datasets/xianshiping/train/labels/订单1806552_51_7107273.txt b/datasets/xianshiping/train/labels/订单1806552_51_7107273.txt new file mode 100644 index 0000000..2d1f48b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806552_51_7107273.txt @@ -0,0 +1 @@ +6 0.211855 0.427827 0.204855 0.518380 0.496487 0.517067 0.494154 0.427827 0.209521 0.426514 diff --git a/datasets/xianshiping/train/labels/订单1806555_51_7107321.txt b/datasets/xianshiping/train/labels/订单1806555_51_7107321.txt new file mode 100644 index 0000000..3f3b414 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806555_51_7107321.txt @@ -0,0 +1 @@ +6 0.168490 0.472432 0.147500 0.569541 0.381966 0.578730 0.392461 0.476367 0.161497 0.469805 diff --git a/datasets/xianshiping/train/labels/订单1806560_51_7107355.txt b/datasets/xianshiping/train/labels/订单1806560_51_7107355.txt new file mode 100644 index 0000000..7d0b302 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806560_51_7107355.txt @@ -0,0 +1 @@ +6 0.336374 0.652281 0.285629 0.776952 0.383626 0.797950 0.441360 0.673279 0.338129 0.650976 diff --git a/datasets/xianshiping/train/labels/订单1806561_51_7107346.txt b/datasets/xianshiping/train/labels/订单1806561_51_7107346.txt new file mode 100644 index 0000000..4772ed6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806561_51_7107346.txt @@ -0,0 +1 @@ +6 0.282135 0.587982 0.322383 0.644408 0.453611 0.593224 0.415117 0.535482 0.280380 0.582730 diff --git a/datasets/xianshiping/train/labels/订单1806563_51_7107441.txt b/datasets/xianshiping/train/labels/订单1806563_51_7107441.txt new file mode 100644 index 0000000..bc1b122 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806563_51_7107441.txt @@ -0,0 +1 @@ +6 0.450208 0.267705 0.355716 0.337266 0.511445 0.473740 0.609440 0.398945 0.457201 0.265078 diff --git a/datasets/xianshiping/train/labels/订单1806566_51_7107507.txt b/datasets/xianshiping/train/labels/订单1806566_51_7107507.txt new file mode 100644 index 0000000..a72bd41 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806566_51_7107507.txt @@ -0,0 +1 @@ +6 0.492083 0.438354 0.488583 0.524967 0.712556 0.528904 0.707306 0.440979 0.497333 0.437042 diff --git a/datasets/xianshiping/train/labels/订单1806567_51_7107454.txt b/datasets/xianshiping/train/labels/订单1806567_51_7107454.txt new file mode 100644 index 0000000..1cdec50 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806567_51_7107454.txt @@ -0,0 +1 @@ +6 0.373216 0.468496 0.373216 0.555107 0.574440 0.553799 0.565690 0.465869 0.371471 0.464561 diff --git a/datasets/xianshiping/train/labels/订单1806568_51_7107451.txt b/datasets/xianshiping/train/labels/订单1806568_51_7107451.txt new file mode 100644 index 0000000..83dc4d0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806568_51_7107451.txt @@ -0,0 +1 @@ +6 0.557573 0.353014 0.557573 0.593171 0.665840 0.598418 0.663872 0.353014 0.557573 0.354323 diff --git a/datasets/xianshiping/train/labels/订单1806570_51_7107513.txt b/datasets/xianshiping/train/labels/订单1806570_51_7107513.txt new file mode 100644 index 0000000..b949c15 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806570_51_7107513.txt @@ -0,0 +1 @@ +6 0.292721 0.469805 0.315469 0.606289 0.621680 0.590537 0.605938 0.446182 0.285729 0.469805 diff --git a/datasets/xianshiping/train/labels/订单1806578_51_7107558.txt b/datasets/xianshiping/train/labels/订单1806578_51_7107558.txt new file mode 100644 index 0000000..eb152ce --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806578_51_7107558.txt @@ -0,0 +1 @@ +6 0.506392 0.643040 0.518203 0.829388 0.586118 0.822826 0.576274 0.639102 0.505410 0.640417 diff --git a/datasets/xianshiping/train/labels/订单1806583_51_7108508.txt b/datasets/xianshiping/train/labels/订单1806583_51_7108508.txt new file mode 100644 index 0000000..7e1fc4f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806583_51_7108508.txt @@ -0,0 +1 @@ +6 0.431608 0.304484 0.445387 0.459340 0.631412 0.435719 0.622554 0.279549 0.435549 0.301856 diff --git a/datasets/xianshiping/train/labels/订单1806589_51_7107638.txt b/datasets/xianshiping/train/labels/订单1806589_51_7107638.txt new file mode 100644 index 0000000..d83f8ef --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806589_51_7107638.txt @@ -0,0 +1 @@ +6 0.406344 0.401608 0.413344 0.481658 0.583072 0.473787 0.577822 0.395046 0.408094 0.398983 diff --git a/datasets/xianshiping/train/labels/订单1806596_51_7107765.txt b/datasets/xianshiping/train/labels/订单1806596_51_7107765.txt new file mode 100644 index 0000000..66446ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806596_51_7107765.txt @@ -0,0 +1 @@ +6 0.419464 0.362235 0.400222 0.463284 0.648680 0.477725 0.660928 0.367480 0.421216 0.358294 diff --git a/datasets/xianshiping/train/labels/订单1806598_51_7107754.txt b/datasets/xianshiping/train/labels/订单1806598_51_7107754.txt new file mode 100644 index 0000000..b914eec --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806598_51_7107754.txt @@ -0,0 +1 @@ +6 0.493833 0.644392 0.483333 0.708696 0.637317 0.717879 0.635567 0.644392 0.495583 0.641767 diff --git a/datasets/xianshiping/train/labels/订单1806600_51_7107938.txt b/datasets/xianshiping/train/labels/订单1806600_51_7107938.txt new file mode 100644 index 0000000..f3cea44 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806600_51_7107938.txt @@ -0,0 +1 @@ +6 0.325948 0.461912 0.325948 0.560343 0.563922 0.564277 0.556912 0.460600 0.324199 0.460600 diff --git a/datasets/xianshiping/train/labels/订单1806601_51_7107745.txt b/datasets/xianshiping/train/labels/订单1806601_51_7107745.txt new file mode 100644 index 0000000..c803562 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806601_51_7107745.txt @@ -0,0 +1 @@ +6 0.325977 0.535420 0.290977 0.612852 0.472956 0.669277 0.525443 0.573486 0.327721 0.531484 diff --git a/datasets/xianshiping/train/labels/订单1806603_51_7107795.txt b/datasets/xianshiping/train/labels/订单1806603_51_7107795.txt new file mode 100644 index 0000000..37d1705 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806603_51_7107795.txt @@ -0,0 +1 @@ +6 0.116003 0.477686 0.171992 0.620723 0.507943 0.535420 0.437956 0.396318 0.114245 0.477686 diff --git a/datasets/xianshiping/train/labels/订单1806604_51_7107828.txt b/datasets/xianshiping/train/labels/订单1806604_51_7107828.txt new file mode 100644 index 0000000..b68ea7e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806604_51_7107828.txt @@ -0,0 +1 @@ +6 0.395964 0.413379 0.402969 0.517051 0.647930 0.527549 0.654935 0.421250 0.397708 0.410752 diff --git a/datasets/xianshiping/train/labels/订单1806607_51_7107900.txt b/datasets/xianshiping/train/labels/订单1806607_51_7107900.txt new file mode 100644 index 0000000..525a1c6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806607_51_7107900.txt @@ -0,0 +1 @@ +6 0.373077 0.492144 0.383577 0.593192 0.586551 0.574817 0.572551 0.476394 0.371321 0.486894 diff --git a/datasets/xianshiping/train/labels/订单1806610_51_7107834.txt b/datasets/xianshiping/train/labels/订单1806610_51_7107834.txt new file mode 100644 index 0000000..9d62953 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806610_51_7107834.txt @@ -0,0 +1 @@ +6 0.226237 0.404189 0.227982 0.549863 0.563945 0.538047 0.546445 0.397627 0.231484 0.402881 diff --git a/datasets/xianshiping/train/labels/订单1806615_51_7107821.txt b/datasets/xianshiping/train/labels/订单1806615_51_7107821.txt new file mode 100644 index 0000000..69abf88 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806615_51_7107821.txt @@ -0,0 +1 @@ +6 0.486953 0.414687 0.481706 0.505244 0.709180 0.507861 0.709180 0.414687 0.479948 0.413379 diff --git a/datasets/xianshiping/train/labels/订单1806618_51_7107891.txt b/datasets/xianshiping/train/labels/订单1806618_51_7107891.txt new file mode 100644 index 0000000..6195a41 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806618_51_7107891.txt @@ -0,0 +1 @@ +6 0.408216 0.482930 0.397708 0.555107 0.572695 0.570859 0.576185 0.494746 0.408216 0.482930 diff --git a/datasets/xianshiping/train/labels/订单1806625_51_7107994.txt b/datasets/xianshiping/train/labels/订单1806625_51_7107994.txt new file mode 100644 index 0000000..4c981b7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806625_51_7107994.txt @@ -0,0 +1 @@ +6 0.362539 0.351735 0.359045 0.473784 0.627107 0.484284 0.637618 0.353049 0.362539 0.349108 diff --git a/datasets/xianshiping/train/labels/订单1806626_51_7108129.txt b/datasets/xianshiping/train/labels/订单1806626_51_7108129.txt new file mode 100644 index 0000000..b656099 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806626_51_7108129.txt @@ -0,0 +1 @@ +6 0.525443 0.530176 0.528945 0.699463 0.672435 0.698154 0.670677 0.528857 0.523698 0.527549 diff --git a/datasets/xianshiping/train/labels/订单1806627_51_7108082.txt b/datasets/xianshiping/train/labels/订单1806627_51_7108082.txt new file mode 100644 index 0000000..53f0b8e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806627_51_7108082.txt @@ -0,0 +1 @@ +6 0.241960 0.229630 0.252453 0.372680 0.360947 0.371360 0.357440 0.225700 0.243707 0.227010 diff --git a/datasets/xianshiping/train/labels/订单1806629_51_7108069.txt b/datasets/xianshiping/train/labels/订单1806629_51_7108069.txt new file mode 100644 index 0000000..08b8131 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806629_51_7108069.txt @@ -0,0 +1 @@ +6 0.284856 0.646981 0.263864 0.761151 0.507082 0.792647 0.522826 0.669291 0.288362 0.648287 diff --git a/datasets/xianshiping/train/labels/订单1806633_51_7108088.txt b/datasets/xianshiping/train/labels/订单1806633_51_7108088.txt new file mode 100644 index 0000000..6376569 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806633_51_7108088.txt @@ -0,0 +1 @@ +6 0.416844 0.414733 0.406344 0.515779 0.611067 0.526279 0.616317 0.431792 0.422089 0.412108 diff --git a/datasets/xianshiping/train/labels/订单1806638_51_7108131.txt b/datasets/xianshiping/train/labels/订单1806638_51_7108131.txt new file mode 100644 index 0000000..1e30be2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806638_51_7108131.txt @@ -0,0 +1 @@ +6 0.336471 0.397627 0.322474 0.511807 0.588438 0.532803 0.593685 0.416006 0.338216 0.395000 diff --git a/datasets/xianshiping/train/labels/订单1806640_51_7108162.txt b/datasets/xianshiping/train/labels/订单1806640_51_7108162.txt new file mode 100644 index 0000000..ddcfed2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806640_51_7108162.txt @@ -0,0 +1 @@ +6 0.616317 0.517092 0.586572 0.598458 0.756300 0.639142 0.786044 0.549900 0.623317 0.515779 diff --git a/datasets/xianshiping/train/labels/订单1806641_51_7108198.txt b/datasets/xianshiping/train/labels/订单1806641_51_7108198.txt new file mode 100644 index 0000000..ef2850b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806641_51_7108198.txt @@ -0,0 +1 @@ +6 0.569173 0.434360 0.562173 0.513100 0.712653 0.526220 0.726653 0.448790 0.567413 0.434360 diff --git a/datasets/xianshiping/train/labels/订单1806643_51_7108281.txt b/datasets/xianshiping/train/labels/订单1806643_51_7108281.txt new file mode 100644 index 0000000..7e2036f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806643_51_7108281.txt @@ -0,0 +1 @@ +6 0.266307 0.612856 0.312125 0.670601 0.538136 0.632539 0.498432 0.578735 0.266307 0.610229 diff --git a/datasets/xianshiping/train/labels/订单1806644_51_7108286.txt b/datasets/xianshiping/train/labels/订单1806644_51_7108286.txt new file mode 100644 index 0000000..25c0a7a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806644_51_7108286.txt @@ -0,0 +1 @@ +6 0.604193 0.539365 0.509701 0.572168 0.588438 0.699463 0.689922 0.661406 0.609440 0.540674 diff --git a/datasets/xianshiping/train/labels/订单1806646_51_7108239.txt b/datasets/xianshiping/train/labels/订单1806646_51_7108239.txt new file mode 100644 index 0000000..04d5894 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806646_51_7108239.txt @@ -0,0 +1 @@ +6 0.212240 0.519678 0.236732 0.587920 0.430964 0.545918 0.402969 0.477686 0.208737 0.518359 diff --git a/datasets/xianshiping/train/labels/订单1806647_51_7108252.txt b/datasets/xianshiping/train/labels/订单1806647_51_7108252.txt new file mode 100644 index 0000000..42960a4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806647_51_7108252.txt @@ -0,0 +1 @@ +6 0.450187 0.350370 0.416933 0.499970 0.749400 0.531470 0.770387 0.385800 0.451933 0.351680 diff --git a/datasets/xianshiping/train/labels/订单1806650_51_7108312.txt b/datasets/xianshiping/train/labels/订单1806650_51_7108312.txt new file mode 100644 index 0000000..c844f1b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806650_51_7108312.txt @@ -0,0 +1 @@ +6 0.441458 0.400254 0.444961 0.484238 0.703919 0.478994 0.672435 0.393691 0.443203 0.401562 diff --git a/datasets/xianshiping/train/labels/订单1806652_51_7108355.txt b/datasets/xianshiping/train/labels/订单1806652_51_7108355.txt new file mode 100644 index 0000000..637be69 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806652_51_7108355.txt @@ -0,0 +1 @@ +6 0.402457 0.465833 0.399547 0.541949 0.711233 0.540634 0.702495 0.459271 0.399547 0.464518 diff --git a/datasets/xianshiping/train/labels/订单1806653_51_7108388.txt b/datasets/xianshiping/train/labels/订单1806653_51_7108388.txt new file mode 100644 index 0000000..8ffbcdd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806653_51_7108388.txt @@ -0,0 +1 @@ +6 0.108000 0.539402 0.142993 0.650951 0.417712 0.593206 0.377464 0.484284 0.104510 0.540716 diff --git a/datasets/xianshiping/train/labels/订单1806654_51_7108342.txt b/datasets/xianshiping/train/labels/订单1806654_51_7108342.txt new file mode 100644 index 0000000..12a87f3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806654_51_7108342.txt @@ -0,0 +1 @@ +6 0.477852 0.389759 0.481787 0.480306 0.651079 0.494746 0.631392 0.400254 0.475879 0.387135 diff --git a/datasets/xianshiping/train/labels/订单1806655_51_7108343.txt b/datasets/xianshiping/train/labels/订单1806655_51_7108343.txt new file mode 100644 index 0000000..04b9b6a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806655_51_7108343.txt @@ -0,0 +1 @@ +6 0.259453 0.493410 0.294453 0.627270 0.588413 0.583960 0.555173 0.450100 0.252453 0.492100 diff --git a/datasets/xianshiping/train/labels/订单1806657_51_7108437.txt b/datasets/xianshiping/train/labels/订单1806657_51_7108437.txt new file mode 100644 index 0000000..ad0f5b1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806657_51_7108437.txt @@ -0,0 +1 @@ +6 0.534108 0.391129 0.520102 0.452807 0.684591 0.465932 0.686330 0.395066 0.532354 0.388509 diff --git a/datasets/xianshiping/train/labels/订单1806663_51_7108428.txt b/datasets/xianshiping/train/labels/订单1806663_51_7108428.txt new file mode 100644 index 0000000..4766e30 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806663_51_7108428.txt @@ -0,0 +1 @@ +6 0.287383 0.439682 0.303129 0.564353 0.588348 0.544671 0.565599 0.426557 0.283889 0.437061 diff --git a/datasets/xianshiping/train/labels/订单1806664_51_7108447.txt b/datasets/xianshiping/train/labels/订单1806664_51_7108447.txt new file mode 100644 index 0000000..dcc0f5b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806664_51_7108447.txt @@ -0,0 +1 @@ +6 0.598920 0.511780 0.541173 0.594460 0.742400 0.677140 0.800133 0.585280 0.604160 0.509160 diff --git a/datasets/xianshiping/train/labels/订单1806667_51_7108421.txt b/datasets/xianshiping/train/labels/订单1806667_51_7108421.txt new file mode 100644 index 0000000..14e2445 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806667_51_7108421.txt @@ -0,0 +1 @@ +6 0.471961 0.425225 0.449216 0.472471 0.578693 0.511843 0.606693 0.454098 0.470209 0.421294 diff --git a/datasets/xianshiping/train/labels/订单1806672_51_7108598.txt b/datasets/xianshiping/train/labels/订单1806672_51_7108598.txt new file mode 100644 index 0000000..7d46e79 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806672_51_7108598.txt @@ -0,0 +1 @@ +6 0.134122 0.690275 0.282856 0.751955 0.504489 0.648280 0.355756 0.582665 0.131200 0.685025 diff --git a/datasets/xianshiping/train/labels/订单1806673_51_7108593.txt b/datasets/xianshiping/train/labels/订单1806673_51_7108593.txt new file mode 100644 index 0000000..99de692 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806673_51_7108593.txt @@ -0,0 +1 @@ +6 0.356597 0.391073 0.346101 0.465874 0.549077 0.480311 0.547324 0.396324 0.356597 0.391073 diff --git a/datasets/xianshiping/train/labels/订单1806676_51_7108594.txt b/datasets/xianshiping/train/labels/订单1806676_51_7108594.txt new file mode 100644 index 0000000..34e4a53 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806676_51_7108594.txt @@ -0,0 +1 @@ +6 0.177122 0.553837 0.348600 0.614204 0.462333 0.452788 0.299606 0.385858 0.173622 0.549900 diff --git a/datasets/xianshiping/train/labels/订单1806685_51_7108626.txt b/datasets/xianshiping/train/labels/订单1806685_51_7108626.txt new file mode 100644 index 0000000..1eccb89 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806685_51_7108626.txt @@ -0,0 +1 @@ +6 0.322474 0.292646 0.306719 0.426504 0.675924 0.433066 0.663685 0.286084 0.322474 0.291328 diff --git a/datasets/xianshiping/train/labels/订单1806687_51_7108742.txt b/datasets/xianshiping/train/labels/订单1806687_51_7108742.txt new file mode 100644 index 0000000..0da2654 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806687_51_7108742.txt @@ -0,0 +1 @@ +6 0.416933 0.557720 0.418693 0.628580 0.588413 0.622020 0.570920 0.549840 0.411693 0.555090 diff --git a/datasets/xianshiping/train/labels/订单1806688_51_7108719.txt b/datasets/xianshiping/train/labels/订单1806688_51_7108719.txt new file mode 100644 index 0000000..d97974e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806688_51_7108719.txt @@ -0,0 +1 @@ +6 0.317974 0.377980 0.314484 0.479029 0.564693 0.472471 0.555948 0.370108 0.317974 0.374049 diff --git a/datasets/xianshiping/train/labels/订单1806689_51_7109608.txt b/datasets/xianshiping/train/labels/订单1806689_51_7109608.txt new file mode 100644 index 0000000..0116723 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806689_51_7109608.txt @@ -0,0 +1 @@ +6 0.441343 0.414731 0.425590 0.493472 0.607569 0.507908 0.625069 0.429167 0.441343 0.413420 diff --git a/datasets/xianshiping/train/labels/订单1806693_51_7108727.txt b/datasets/xianshiping/train/labels/订单1806693_51_7108727.txt new file mode 100644 index 0000000..85d21ac --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806693_51_7108727.txt @@ -0,0 +1 @@ +6 0.302675 0.513147 0.302675 0.812360 0.446380 0.803173 0.434565 0.498713 0.300710 0.509213 diff --git a/datasets/xianshiping/train/labels/订单1806696_51_7108692.txt b/datasets/xianshiping/train/labels/订单1806696_51_7108692.txt new file mode 100644 index 0000000..503c8c6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806696_51_7108692.txt @@ -0,0 +1 @@ +6 0.535951 0.523613 0.493945 0.644346 0.758164 0.685029 0.786159 0.562979 0.530690 0.524922 diff --git a/datasets/xianshiping/train/labels/订单1806701_51_7108770.txt b/datasets/xianshiping/train/labels/订单1806701_51_7108770.txt new file mode 100644 index 0000000..eb8374e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806701_51_7108770.txt @@ -0,0 +1 @@ +6 0.360964 0.472432 0.362721 0.552480 0.579688 0.545918 0.560443 0.461934 0.357474 0.467178 diff --git a/datasets/xianshiping/train/labels/订单1806702_51_7108883.txt b/datasets/xianshiping/train/labels/订单1806702_51_7108883.txt new file mode 100644 index 0000000..ceb69db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806702_51_7108883.txt @@ -0,0 +1 @@ +6 0.485102 0.473805 0.483363 0.547292 0.654839 0.544671 0.651345 0.468553 0.483363 0.471184 diff --git a/datasets/xianshiping/train/labels/订单1806704_51_7108800.txt b/datasets/xianshiping/train/labels/订单1806704_51_7108800.txt new file mode 100644 index 0000000..addd4ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806704_51_7108800.txt @@ -0,0 +1 @@ +6 0.458958 0.480303 0.436211 0.566924 0.640938 0.585293 0.651432 0.497363 0.453711 0.480303 diff --git a/datasets/xianshiping/train/labels/订单1806705_51_7109131.txt b/datasets/xianshiping/train/labels/订单1806705_51_7109131.txt new file mode 100644 index 0000000..786fa2f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806705_51_7109131.txt @@ -0,0 +1 @@ +6 0.170247 0.475059 0.231484 0.547236 0.388958 0.473740 0.327721 0.401562 0.166745 0.475059 diff --git a/datasets/xianshiping/train/labels/订单1806707_51_7108960.txt b/datasets/xianshiping/train/labels/订单1806707_51_7108960.txt new file mode 100644 index 0000000..1a00263 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806707_51_7108960.txt @@ -0,0 +1 @@ +6 0.668811 0.139142 0.679311 0.328117 0.824539 0.326804 0.810544 0.144392 0.668811 0.139142 diff --git a/datasets/xianshiping/train/labels/订单1806710_51_7108866.txt b/datasets/xianshiping/train/labels/订单1806710_51_7108866.txt new file mode 100644 index 0000000..942ba0b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806710_51_7108866.txt @@ -0,0 +1 @@ +6 0.405464 0.547275 0.389712 0.616833 0.580444 0.626020 0.575190 0.548588 0.407216 0.544647 diff --git a/datasets/xianshiping/train/labels/订单1806714_51_7108942.txt b/datasets/xianshiping/train/labels/订单1806714_51_7108942.txt new file mode 100644 index 0000000..8f9f25a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806714_51_7108942.txt @@ -0,0 +1 @@ +6 0.454883 0.384685 0.450342 0.505770 0.550928 0.524512 0.552871 0.397657 0.454883 0.386128 diff --git a/datasets/xianshiping/train/labels/订单1806715_51_7108921.txt b/datasets/xianshiping/train/labels/订单1806715_51_7108921.txt new file mode 100644 index 0000000..ad4c23c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806715_51_7108921.txt @@ -0,0 +1 @@ +6 0.406458 0.412061 0.409961 0.452744 0.502695 0.451436 0.497448 0.406816 0.408216 0.413379 diff --git a/datasets/xianshiping/train/labels/订单1806724_51_7108964.txt b/datasets/xianshiping/train/labels/订单1806724_51_7108964.txt new file mode 100644 index 0000000..e98f8f9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806724_51_7108964.txt @@ -0,0 +1 @@ +6 0.562072 0.381921 0.551572 0.485596 0.829789 0.477725 0.822789 0.371425 0.558572 0.380608 diff --git a/datasets/xianshiping/train/labels/订单1806725_51_7109074.txt b/datasets/xianshiping/train/labels/订单1806725_51_7109074.txt new file mode 100644 index 0000000..3b0fe32 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806725_51_7109074.txt @@ -0,0 +1 @@ +6 0.357440 0.507850 0.352200 0.593150 0.586667 0.597090 0.572667 0.502600 0.355693 0.505220 diff --git a/datasets/xianshiping/train/labels/订单1806726_51_7109000.txt b/datasets/xianshiping/train/labels/订单1806726_51_7109000.txt new file mode 100644 index 0000000..eef266e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806726_51_7109000.txt @@ -0,0 +1 @@ +6 0.346966 0.330703 0.345221 0.422559 0.572695 0.419941 0.563945 0.318887 0.348724 0.332012 diff --git a/datasets/xianshiping/train/labels/订单1806731_51_7109028.txt b/datasets/xianshiping/train/labels/订单1806731_51_7109028.txt new file mode 100644 index 0000000..7501a3a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806731_51_7109028.txt @@ -0,0 +1 @@ +6 0.269960 0.383180 0.264707 0.538030 0.560413 0.548530 0.567413 0.397610 0.269960 0.381860 diff --git a/datasets/xianshiping/train/labels/订单1806732_51_7109071.txt b/datasets/xianshiping/train/labels/订单1806732_51_7109071.txt new file mode 100644 index 0000000..5b3be62 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806732_51_7109071.txt @@ -0,0 +1 @@ +6 0.204063 0.519681 0.213249 0.627292 0.398288 0.611543 0.385163 0.497370 0.201439 0.517057 diff --git a/datasets/xianshiping/train/labels/订单1806735_51_7109159.txt b/datasets/xianshiping/train/labels/订单1806735_51_7109159.txt new file mode 100644 index 0000000..0b8bec7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806735_51_7109159.txt @@ -0,0 +1 @@ +6 0.363599 0.371384 0.384602 0.505242 0.659308 0.480311 0.631315 0.345138 0.365352 0.371384 diff --git a/datasets/xianshiping/train/labels/订单1806736_51_7109098.txt b/datasets/xianshiping/train/labels/订单1806736_51_7109098.txt new file mode 100644 index 0000000..7093ced --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806736_51_7109098.txt @@ -0,0 +1 @@ +6 0.164898 0.471184 0.177149 0.560417 0.394123 0.534178 0.369620 0.446250 0.159649 0.471184 diff --git a/datasets/xianshiping/train/labels/订单1806739_51_7109124.txt b/datasets/xianshiping/train/labels/订单1806739_51_7109124.txt new file mode 100644 index 0000000..7023438 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806739_51_7109124.txt @@ -0,0 +1 @@ +6 0.360850 0.511846 0.373100 0.590583 0.551572 0.581396 0.541078 0.500033 0.360850 0.511846 diff --git a/datasets/xianshiping/train/labels/订单1806740_51_7109289.txt b/datasets/xianshiping/train/labels/订单1806740_51_7109289.txt new file mode 100644 index 0000000..3816c2f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806740_51_7109289.txt @@ -0,0 +1 @@ +6 0.802958 0.477650 0.730043 0.503894 0.785225 0.688929 0.856168 0.658744 0.803945 0.477650 diff --git a/datasets/xianshiping/train/labels/订单1806744_51_7109168.txt b/datasets/xianshiping/train/labels/订单1806744_51_7109168.txt new file mode 100644 index 0000000..04ae3db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806744_51_7109168.txt @@ -0,0 +1 @@ +6 0.514948 0.468496 0.500951 0.562979 0.712669 0.574795 0.717917 0.475059 0.521953 0.464561 diff --git a/datasets/xianshiping/train/labels/订单1806746_51_7109192.txt b/datasets/xianshiping/train/labels/订单1806746_51_7109192.txt new file mode 100644 index 0000000..4d49634 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806746_51_7109192.txt @@ -0,0 +1 @@ +6 0.415208 0.497363 0.413464 0.574795 0.583190 0.580039 0.586693 0.498682 0.411706 0.498682 diff --git a/datasets/xianshiping/train/labels/订单1806748_51_7109280.txt b/datasets/xianshiping/train/labels/订单1806748_51_7109280.txt new file mode 100644 index 0000000..610559b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806748_51_7109280.txt @@ -0,0 +1 @@ +6 0.448440 0.397610 0.409933 0.478980 0.600667 0.528840 0.639160 0.434360 0.451933 0.396300 diff --git a/datasets/xianshiping/train/labels/订单1806749_51_7109191.txt b/datasets/xianshiping/train/labels/订单1806749_51_7109191.txt new file mode 100644 index 0000000..155c510 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806749_51_7109191.txt @@ -0,0 +1 @@ +6 0.453711 0.485557 0.439714 0.561670 0.630430 0.573486 0.632188 0.496055 0.451953 0.484238 diff --git a/datasets/xianshiping/train/labels/订单1806750_51_7109251.txt b/datasets/xianshiping/train/labels/订单1806750_51_7109251.txt new file mode 100644 index 0000000..ebefc1d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806750_51_7109251.txt @@ -0,0 +1 @@ +6 0.450208 0.614160 0.409961 0.758525 0.527201 0.774268 0.562187 0.619414 0.450208 0.614160 diff --git a/datasets/xianshiping/train/labels/订单1806753_51_7109290.txt b/datasets/xianshiping/train/labels/订单1806753_51_7109290.txt new file mode 100644 index 0000000..df77da0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806753_51_7109290.txt @@ -0,0 +1 @@ +6 0.459150 0.272962 0.449307 0.482936 0.540840 0.489492 0.553638 0.270332 0.462100 0.272962 diff --git a/datasets/xianshiping/train/labels/订单1806754_51_7109252.txt b/datasets/xianshiping/train/labels/订单1806754_51_7109252.txt new file mode 100644 index 0000000..cd3cccb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806754_51_7109252.txt @@ -0,0 +1 @@ +6 0.278707 0.520970 0.290947 0.615460 0.504427 0.606270 0.493933 0.511780 0.282200 0.520970 diff --git a/datasets/xianshiping/train/labels/订单1806757_51_7109352.txt b/datasets/xianshiping/train/labels/订单1806757_51_7109352.txt new file mode 100644 index 0000000..6d43656 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806757_51_7109352.txt @@ -0,0 +1 @@ +6 0.322474 0.511797 0.310221 0.608916 0.509701 0.625977 0.521953 0.527549 0.327721 0.510488 diff --git a/datasets/xianshiping/train/labels/订单1806762_51_7109448.txt b/datasets/xianshiping/train/labels/订单1806762_51_7109448.txt new file mode 100644 index 0000000..cdd490a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806762_51_7109448.txt @@ -0,0 +1 @@ +6 0.368719 0.367480 0.377464 0.481657 0.657438 0.488216 0.645190 0.366176 0.365216 0.366176 diff --git a/datasets/xianshiping/train/labels/订单1806764_51_7109325.txt b/datasets/xianshiping/train/labels/订单1806764_51_7109325.txt new file mode 100644 index 0000000..ce315d0 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806764_51_7109325.txt @@ -0,0 +1 @@ +6 0.423843 0.326806 0.434340 0.418672 0.665313 0.400295 0.654815 0.305807 0.425590 0.325495 diff --git a/datasets/xianshiping/train/labels/订单1806767_51_7109350.txt b/datasets/xianshiping/train/labels/订单1806767_51_7109350.txt new file mode 100644 index 0000000..5fafe75 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806767_51_7109350.txt @@ -0,0 +1 @@ +6 0.406458 0.531484 0.399466 0.639102 0.649687 0.641719 0.639180 0.532803 0.404714 0.528857 diff --git a/datasets/xianshiping/train/labels/订单1806769_51_7109510.txt b/datasets/xianshiping/train/labels/订单1806769_51_7109510.txt new file mode 100644 index 0000000..2351d56 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806769_51_7109510.txt @@ -0,0 +1 @@ +6 0.581426 0.553624 0.593755 0.730633 0.645020 0.713221 0.633989 0.527511 0.581426 0.547817 diff --git a/datasets/xianshiping/train/labels/订单1806771_51_7109478.txt b/datasets/xianshiping/train/labels/订单1806771_51_7109478.txt new file mode 100644 index 0000000..66041b9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806771_51_7109478.txt @@ -0,0 +1 @@ +6 0.373216 0.392383 0.383711 0.464561 0.537695 0.457998 0.534193 0.384502 0.373216 0.391064 diff --git a/datasets/xianshiping/train/labels/订单1806772_51_7109424.txt b/datasets/xianshiping/train/labels/订单1806772_51_7109424.txt new file mode 100644 index 0000000..48276be --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806772_51_7109424.txt @@ -0,0 +1 @@ +6 0.385441 0.367426 0.380196 0.460600 0.591912 0.457978 0.590163 0.364804 0.390686 0.366115 diff --git a/datasets/xianshiping/train/labels/订单1806773_51_7109531.txt b/datasets/xianshiping/train/labels/订单1806773_51_7109531.txt new file mode 100644 index 0000000..b3ac948 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806773_51_7109531.txt @@ -0,0 +1 @@ +6 0.553427 0.368740 0.542920 0.456670 0.740653 0.472410 0.742400 0.381860 0.558667 0.367430 diff --git a/datasets/xianshiping/train/labels/订单1806775_51_7109532.txt b/datasets/xianshiping/train/labels/订单1806775_51_7109532.txt new file mode 100644 index 0000000..dcb5bf5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806775_51_7109532.txt @@ -0,0 +1 @@ +6 0.252361 0.548592 0.255861 0.598458 0.387094 0.580083 0.380094 0.528904 0.254111 0.545967 diff --git a/datasets/xianshiping/train/labels/订单1806776_51_7109527.txt b/datasets/xianshiping/train/labels/订单1806776_51_7109527.txt new file mode 100644 index 0000000..b9b81da --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806776_51_7109527.txt @@ -0,0 +1 @@ +6 0.360964 0.257207 0.343464 0.379258 0.600690 0.397627 0.614687 0.275586 0.366211 0.255898 diff --git a/datasets/xianshiping/train/labels/订单1806779_51_7109619.txt b/datasets/xianshiping/train/labels/订单1806779_51_7109619.txt new file mode 100644 index 0000000..f0ac5a1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806779_51_7109619.txt @@ -0,0 +1 @@ +6 0.572695 0.304453 0.574440 0.404189 0.796667 0.392383 0.789661 0.288701 0.569193 0.303145 diff --git a/datasets/xianshiping/train/labels/订单1806786_51_7109635.txt b/datasets/xianshiping/train/labels/订单1806786_51_7109635.txt new file mode 100644 index 0000000..43ca14d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806786_51_7109635.txt @@ -0,0 +1 @@ +6 0.298168 0.477690 0.298168 0.574801 0.523629 0.572171 0.518387 0.469810 0.296417 0.478997 diff --git a/datasets/xianshiping/train/labels/订单1806790_51_7109654.txt b/datasets/xianshiping/train/labels/订单1806790_51_7109654.txt new file mode 100644 index 0000000..a0c8f96 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806790_51_7109654.txt @@ -0,0 +1 @@ +6 0.381230 0.688971 0.382539 0.771647 0.526895 0.774271 0.525586 0.690280 0.379915 0.685033 diff --git a/datasets/xianshiping/train/labels/订单1806799_51_7109764.txt b/datasets/xianshiping/train/labels/订单1806799_51_7109764.txt new file mode 100644 index 0000000..de9d17e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806799_51_7109764.txt @@ -0,0 +1 @@ +6 0.574433 0.675837 0.577933 0.809694 0.695167 0.805756 0.681167 0.671900 0.574433 0.673213 diff --git a/datasets/xianshiping/train/labels/订单1806804_51_7109816.txt b/datasets/xianshiping/train/labels/订单1806804_51_7109816.txt new file mode 100644 index 0000000..d6aa0cc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806804_51_7109816.txt @@ -0,0 +1 @@ +6 0.450089 0.514467 0.448339 0.623392 0.660061 0.620767 0.646061 0.514467 0.444839 0.514467 diff --git a/datasets/xianshiping/train/labels/订单1806805_51_7109765.txt b/datasets/xianshiping/train/labels/订单1806805_51_7109765.txt new file mode 100644 index 0000000..a48e105 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806805_51_7109765.txt @@ -0,0 +1 @@ +6 0.353850 0.493471 0.359100 0.582708 0.565572 0.574838 0.553322 0.482971 0.355600 0.492158 diff --git a/datasets/xianshiping/train/labels/订单1806807_51_7110016.txt b/datasets/xianshiping/train/labels/订单1806807_51_7110016.txt new file mode 100644 index 0000000..4edbf7b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806807_51_7110016.txt @@ -0,0 +1 @@ +6 0.154033 0.040680 0.186514 0.173226 0.347930 0.133854 0.323799 0.000000 0.312732 0.000000 0.154033 0.039368 diff --git a/datasets/xianshiping/train/labels/订单1806810_51_7110036.txt b/datasets/xianshiping/train/labels/订单1806810_51_7110036.txt new file mode 100644 index 0000000..e108928 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806810_51_7110036.txt @@ -0,0 +1 @@ +6 0.245363 0.053103 0.244048 0.316886 0.635121 0.322134 0.633806 0.057036 0.241419 0.050473 diff --git a/datasets/xianshiping/train/labels/订单1806812_51_7109968.txt b/datasets/xianshiping/train/labels/订单1806812_51_7109968.txt new file mode 100644 index 0000000..226c347 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806812_51_7109968.txt @@ -0,0 +1 @@ +6 0.364371 0.434441 0.364371 0.503991 0.516608 0.510548 0.525351 0.434441 0.371374 0.434441 diff --git a/datasets/xianshiping/train/labels/订单1806813_51_7109962.txt b/datasets/xianshiping/train/labels/订单1806813_51_7109962.txt new file mode 100644 index 0000000..ad5dd03 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806813_51_7109962.txt @@ -0,0 +1 @@ +6 0.366655 0.383227 0.379450 0.511840 0.540865 0.485593 0.530040 0.355667 0.366655 0.381913 diff --git a/datasets/xianshiping/train/labels/订单1806819_51_7109971.txt b/datasets/xianshiping/train/labels/订单1806819_51_7109971.txt new file mode 100644 index 0000000..0d9ebad --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806819_51_7109971.txt @@ -0,0 +1 @@ +6 0.383594 0.535467 0.397594 0.641767 0.619817 0.626017 0.605817 0.523654 0.383594 0.536779 diff --git a/datasets/xianshiping/train/labels/订单1806820_51_7110176.txt b/datasets/xianshiping/train/labels/订单1806820_51_7110176.txt new file mode 100644 index 0000000..0c930b7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806820_51_7110176.txt @@ -0,0 +1 @@ +6 0.543820 0.232307 0.485750 0.481653 0.636340 0.542020 0.681615 0.283493 0.545785 0.231000 diff --git a/datasets/xianshiping/train/labels/订单1806821_51_7109957.txt b/datasets/xianshiping/train/labels/订单1806821_51_7109957.txt new file mode 100644 index 0000000..102754c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806821_51_7109957.txt @@ -0,0 +1 @@ +6 0.324219 0.530176 0.343464 0.618105 0.530690 0.590537 0.507943 0.505244 0.322474 0.527549 diff --git a/datasets/xianshiping/train/labels/订单1806822_51_7109905.txt b/datasets/xianshiping/train/labels/订单1806822_51_7109905.txt new file mode 100644 index 0000000..982a697 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806822_51_7109905.txt @@ -0,0 +1 @@ +6 0.446706 0.534111 0.432708 0.640410 0.679427 0.658779 0.677682 0.544609 0.448451 0.534111 diff --git a/datasets/xianshiping/train/labels/订单1806823_51_7109926.txt b/datasets/xianshiping/train/labels/订单1806823_51_7109926.txt new file mode 100644 index 0000000..6b630c3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806823_51_7109926.txt @@ -0,0 +1 @@ +6 0.318967 0.574788 0.360958 0.667963 0.553433 0.614156 0.509692 0.519669 0.318967 0.573475 diff --git a/datasets/xianshiping/train/labels/订单1806827_51_7110069.txt b/datasets/xianshiping/train/labels/订单1806827_51_7110069.txt new file mode 100644 index 0000000..f154f4c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806827_51_7110069.txt @@ -0,0 +1 @@ +6 0.229617 0.398983 0.224367 0.518404 0.474583 0.522342 0.472833 0.405546 0.229617 0.398983 diff --git a/datasets/xianshiping/train/labels/订单1806828_51_7110021.txt b/datasets/xianshiping/train/labels/订单1806828_51_7110021.txt new file mode 100644 index 0000000..dddead1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806828_51_7110021.txt @@ -0,0 +1 @@ +6 0.332969 0.489492 0.332969 0.583984 0.546445 0.583984 0.546445 0.488184 0.334727 0.488184 diff --git a/datasets/xianshiping/train/labels/订单1806829_51_7110060.txt b/datasets/xianshiping/train/labels/订单1806829_51_7110060.txt new file mode 100644 index 0000000..09aba3a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806829_51_7110060.txt @@ -0,0 +1 @@ +6 0.184213 0.476350 0.213960 0.611520 0.521920 0.578710 0.497427 0.439610 0.180720 0.472410 diff --git a/datasets/xianshiping/train/labels/订单1806830_51_7110171.txt b/datasets/xianshiping/train/labels/订单1806830_51_7110171.txt new file mode 100644 index 0000000..c9b35e5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806830_51_7110171.txt @@ -0,0 +1 @@ +6 0.222435 0.669284 0.257871 0.740150 0.377292 0.682409 0.340547 0.606296 0.219811 0.665345 diff --git a/datasets/xianshiping/train/labels/订单1806832_51_7110070.txt b/datasets/xianshiping/train/labels/订单1806832_51_7110070.txt new file mode 100644 index 0000000..4e51e8e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806832_51_7110070.txt @@ -0,0 +1 @@ +6 0.233229 0.469805 0.222734 0.660098 0.649687 0.667969 0.647930 0.482930 0.236732 0.469805 diff --git a/datasets/xianshiping/train/labels/订单1806834_51_7110088.txt b/datasets/xianshiping/train/labels/订单1806834_51_7110088.txt new file mode 100644 index 0000000..679cd29 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806834_51_7110088.txt @@ -0,0 +1 @@ +6 0.292717 0.606281 0.310217 0.687650 0.499192 0.665338 0.481692 0.583975 0.294467 0.601031 diff --git a/datasets/xianshiping/train/labels/订单1806836_51_7110123.txt b/datasets/xianshiping/train/labels/订单1806836_51_7110123.txt new file mode 100644 index 0000000..d01ae50 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806836_51_7110123.txt @@ -0,0 +1 @@ +6 0.457187 0.552470 0.439680 0.645640 0.674160 0.685010 0.698653 0.586590 0.464187 0.551150 diff --git a/datasets/xianshiping/train/labels/订单1806838_51_7110100.txt b/datasets/xianshiping/train/labels/订单1806838_51_7110100.txt new file mode 100644 index 0000000..90159ff --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806838_51_7110100.txt @@ -0,0 +1 @@ +6 0.496458 0.467225 0.499948 0.586647 0.778170 0.585333 0.769425 0.467225 0.501699 0.465912 diff --git a/datasets/xianshiping/train/labels/订单1806841_51_7110192.txt b/datasets/xianshiping/train/labels/订单1806841_51_7110192.txt new file mode 100644 index 0000000..2366fd7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806841_51_7110192.txt @@ -0,0 +1 @@ +6 0.413464 0.391064 0.413464 0.480303 0.616432 0.480303 0.621680 0.387129 0.411706 0.391064 diff --git a/datasets/xianshiping/train/labels/订单1806845_51_7110197.txt b/datasets/xianshiping/train/labels/订单1806845_51_7110197.txt new file mode 100644 index 0000000..8ed1998 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806845_51_7110197.txt @@ -0,0 +1 @@ +6 0.485083 0.532842 0.464083 0.620767 0.661811 0.639142 0.670561 0.547275 0.492083 0.530217 diff --git a/datasets/xianshiping/train/labels/订单1806849_51_7110264.txt b/datasets/xianshiping/train/labels/订单1806849_51_7110264.txt new file mode 100644 index 0000000..261a31b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806849_51_7110264.txt @@ -0,0 +1 @@ +6 0.196484 0.562979 0.215742 0.675840 0.439714 0.644346 0.430964 0.543301 0.196484 0.562979 diff --git a/datasets/xianshiping/train/labels/订单1806852_51_7110283.txt b/datasets/xianshiping/train/labels/订单1806852_51_7110283.txt new file mode 100644 index 0000000..f0ee40f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806852_51_7110283.txt @@ -0,0 +1 @@ +6 0.363599 0.535433 0.377601 0.652223 0.633068 0.639100 0.620819 0.522310 0.363599 0.535433 diff --git a/datasets/xianshiping/train/labels/订单1806855_51_7110336.txt b/datasets/xianshiping/train/labels/订单1806855_51_7110336.txt new file mode 100644 index 0000000..760553f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806855_51_7110336.txt @@ -0,0 +1 @@ +6 0.548716 0.250651 0.546748 0.381882 0.701274 0.383197 0.703242 0.255898 0.547729 0.250651 diff --git a/datasets/xianshiping/train/labels/订单1806857_51_7110262.txt b/datasets/xianshiping/train/labels/订单1806857_51_7110262.txt new file mode 100644 index 0000000..1b35c4a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806857_51_7110262.txt @@ -0,0 +1 @@ +6 0.259479 0.440937 0.257734 0.527549 0.448451 0.530176 0.450208 0.443564 0.257734 0.438311 diff --git a/datasets/xianshiping/train/labels/订单1806860_51_7110395.txt b/datasets/xianshiping/train/labels/订单1806860_51_7110395.txt new file mode 100644 index 0000000..ba66840 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806860_51_7110395.txt @@ -0,0 +1 @@ +6 0.509701 0.303145 0.485208 0.372695 0.654935 0.410752 0.674180 0.337266 0.509701 0.307080 diff --git a/datasets/xianshiping/train/labels/订单1806862_51_7110450.txt b/datasets/xianshiping/train/labels/订单1806862_51_7110450.txt new file mode 100644 index 0000000..1696790 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806862_51_7110450.txt @@ -0,0 +1 @@ +6 0.252487 0.490801 0.247227 0.580039 0.458958 0.570859 0.458958 0.480303 0.255977 0.486865 diff --git a/datasets/xianshiping/train/labels/订单1806863_51_7110471.txt b/datasets/xianshiping/train/labels/订单1806863_51_7110471.txt new file mode 100644 index 0000000..83c1173 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806863_51_7110471.txt @@ -0,0 +1 @@ +6 0.483451 0.368760 0.458958 0.484238 0.726667 0.503926 0.738919 0.385820 0.486953 0.366133 diff --git a/datasets/xianshiping/train/labels/订单1806867_51_7110438.txt b/datasets/xianshiping/train/labels/订单1806867_51_7110438.txt new file mode 100644 index 0000000..b6a4205 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806867_51_7110438.txt @@ -0,0 +1 @@ +6 0.366211 0.347764 0.383711 0.450117 0.605938 0.440937 0.591940 0.337266 0.369714 0.346445 diff --git a/datasets/xianshiping/train/labels/订单1806868_51_7110355.txt b/datasets/xianshiping/train/labels/订单1806868_51_7110355.txt new file mode 100644 index 0000000..d0a7f4b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806868_51_7110355.txt @@ -0,0 +1 @@ +6 0.390275 0.434407 0.387325 0.503960 0.482795 0.501340 0.478860 0.429160 0.387325 0.430473 diff --git a/datasets/xianshiping/train/labels/订单1806869_51_7110358.txt b/datasets/xianshiping/train/labels/订单1806869_51_7110358.txt new file mode 100644 index 0000000..b4d9432 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806869_51_7110358.txt @@ -0,0 +1 @@ +6 0.324980 0.363549 0.314484 0.500029 0.603190 0.515775 0.604941 0.384549 0.324980 0.359608 diff --git a/datasets/xianshiping/train/labels/订单1806871_51_7110436.txt b/datasets/xianshiping/train/labels/订单1806871_51_7110436.txt new file mode 100644 index 0000000..305b56b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806871_51_7110436.txt @@ -0,0 +1 @@ +6 0.380223 0.404203 0.332979 0.559055 0.693268 0.608927 0.719514 0.448819 0.376732 0.402884 diff --git a/datasets/xianshiping/train/labels/订单1806872_51_7110488.txt b/datasets/xianshiping/train/labels/订单1806872_51_7110488.txt new file mode 100644 index 0000000..c50778b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806872_51_7110488.txt @@ -0,0 +1 @@ +6 0.586572 0.527592 0.569072 0.586646 0.728306 0.615517 0.740550 0.545967 0.588322 0.524967 diff --git a/datasets/xianshiping/train/labels/订单1806873_51_7110448.txt b/datasets/xianshiping/train/labels/订单1806873_51_7110448.txt new file mode 100644 index 0000000..5b94a88 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806873_51_7110448.txt @@ -0,0 +1 @@ +6 0.285729 0.439619 0.290977 0.536738 0.518451 0.534111 0.504453 0.435684 0.287474 0.434375 diff --git a/datasets/xianshiping/train/labels/订单1806876_51_7110528.txt b/datasets/xianshiping/train/labels/订单1806876_51_7110528.txt new file mode 100644 index 0000000..38ca759 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806876_51_7110528.txt @@ -0,0 +1 @@ +6 0.084480 0.517030 0.086227 0.590520 0.264707 0.574780 0.248960 0.502600 0.079227 0.515720 diff --git a/datasets/xianshiping/train/labels/订单1806878_51_7110495.txt b/datasets/xianshiping/train/labels/订单1806878_51_7110495.txt new file mode 100644 index 0000000..b0a5933 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806878_51_7110495.txt @@ -0,0 +1 @@ +6 0.399466 0.388437 0.376719 0.502617 0.632188 0.530176 0.653177 0.414687 0.406458 0.385820 diff --git a/datasets/xianshiping/train/labels/订单1806880_51_7110408.txt b/datasets/xianshiping/train/labels/订单1806880_51_7110408.txt new file mode 100644 index 0000000..59be0e2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806880_51_7110408.txt @@ -0,0 +1 @@ +6 0.679427 0.461934 0.625182 0.526240 0.794909 0.604980 0.850911 0.532803 0.686432 0.460625 diff --git a/datasets/xianshiping/train/labels/订单1806884_51_7110489.txt b/datasets/xianshiping/train/labels/订单1806884_51_7110489.txt new file mode 100644 index 0000000..a8253cc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806884_51_7110489.txt @@ -0,0 +1 @@ +6 0.390716 0.557734 0.381966 0.643037 0.569193 0.657471 0.569193 0.572168 0.394219 0.557734 diff --git a/datasets/xianshiping/train/labels/订单1806886_51_7110543.txt b/datasets/xianshiping/train/labels/订单1806886_51_7110543.txt new file mode 100644 index 0000000..da2ba6c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806886_51_7110543.txt @@ -0,0 +1 @@ +6 0.505898 0.607604 0.494089 0.682409 0.634505 0.696842 0.633197 0.612852 0.507214 0.604980 diff --git a/datasets/xianshiping/train/labels/订单1806889_51_7110587.txt b/datasets/xianshiping/train/labels/订单1806889_51_7110587.txt new file mode 100644 index 0000000..55a9798 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806889_51_7110587.txt @@ -0,0 +1 @@ +6 0.565690 0.350381 0.532448 0.438311 0.747669 0.473740 0.770417 0.377939 0.565690 0.350381 diff --git a/datasets/xianshiping/train/labels/订单1806890_51_7110633.txt b/datasets/xianshiping/train/labels/订单1806890_51_7110633.txt new file mode 100644 index 0000000..17d2479 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806890_51_7110633.txt @@ -0,0 +1 @@ +6 0.367947 0.409420 0.331200 0.514410 0.572667 0.561650 0.611160 0.448790 0.369693 0.406800 diff --git a/datasets/xianshiping/train/labels/订单1806891_51_7110644.txt b/datasets/xianshiping/train/labels/订单1806891_51_7110644.txt new file mode 100644 index 0000000..88e8c56 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806891_51_7110644.txt @@ -0,0 +1 @@ +6 0.380208 0.497363 0.397708 0.611543 0.656680 0.589229 0.630430 0.476367 0.376719 0.494746 diff --git a/datasets/xianshiping/train/labels/订单1806903_51_7110702.txt b/datasets/xianshiping/train/labels/订单1806903_51_7110702.txt new file mode 100644 index 0000000..590cb48 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806903_51_7110702.txt @@ -0,0 +1 @@ +6 0.124603 0.657500 0.173603 0.868779 0.626795 0.799231 0.572551 0.598442 0.117603 0.653558 diff --git a/datasets/xianshiping/train/labels/订单1806904_51_7110673.txt b/datasets/xianshiping/train/labels/订单1806904_51_7110673.txt new file mode 100644 index 0000000..c9ce20e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806904_51_7110673.txt @@ -0,0 +1 @@ +6 0.325977 0.448809 0.320716 0.548545 0.584935 0.549863 0.572695 0.437002 0.325977 0.443564 diff --git a/datasets/xianshiping/train/labels/订单1806905_51_7110728.txt b/datasets/xianshiping/train/labels/订单1806905_51_7110728.txt new file mode 100644 index 0000000..f77d93c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806905_51_7110728.txt @@ -0,0 +1 @@ +6 0.562510 0.271667 0.567428 0.473763 0.667822 0.472449 0.662904 0.266417 0.561524 0.269038 diff --git a/datasets/xianshiping/train/labels/订单1806907_51_7110712.txt b/datasets/xianshiping/train/labels/订单1806907_51_7110712.txt new file mode 100644 index 0000000..af868e5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806907_51_7110712.txt @@ -0,0 +1 @@ +6 0.362721 0.430439 0.390716 0.511807 0.562187 0.475059 0.530690 0.393691 0.357474 0.429121 diff --git a/datasets/xianshiping/train/labels/订单1806909_51_7110711.txt b/datasets/xianshiping/train/labels/订单1806909_51_7110711.txt new file mode 100644 index 0000000..3959d4e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806909_51_7110711.txt @@ -0,0 +1 @@ +6 0.248861 0.481658 0.233117 0.624704 0.530578 0.635204 0.539328 0.493471 0.250611 0.480346 diff --git a/datasets/xianshiping/train/labels/订单1806912_51_7110756.txt b/datasets/xianshiping/train/labels/订单1806912_51_7110756.txt new file mode 100644 index 0000000..88f363a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806912_51_7110756.txt @@ -0,0 +1 @@ +6 0.425716 0.454062 0.408216 0.570859 0.684674 0.585293 0.693424 0.461934 0.423958 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1806913_51_7110893.txt b/datasets/xianshiping/train/labels/订单1806913_51_7110893.txt new file mode 100644 index 0000000..8b649a3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806913_51_7110893.txt @@ -0,0 +1 @@ +6 0.383382 0.442275 0.449328 0.640438 0.543814 0.585320 0.472946 0.381908 0.382397 0.440967 diff --git a/datasets/xianshiping/train/labels/订单1806917_51_7110789.txt b/datasets/xianshiping/train/labels/订单1806917_51_7110789.txt new file mode 100644 index 0000000..78a266a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806917_51_7110789.txt @@ -0,0 +1 @@ +6 0.413464 0.376631 0.418711 0.461934 0.611185 0.463242 0.602435 0.375322 0.408216 0.372695 diff --git a/datasets/xianshiping/train/labels/订单1806918_51_7110858.txt b/datasets/xianshiping/train/labels/订单1806918_51_7110858.txt new file mode 100644 index 0000000..24bc680 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806918_51_7110858.txt @@ -0,0 +1 @@ +6 0.479948 0.400254 0.474701 0.489492 0.696927 0.492119 0.689922 0.396318 0.474701 0.396318 diff --git a/datasets/xianshiping/train/labels/订单1806921_51_7110938.txt b/datasets/xianshiping/train/labels/订单1806921_51_7110938.txt new file mode 100644 index 0000000..b697927 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806921_51_7110938.txt @@ -0,0 +1 @@ +6 0.317106 0.454100 0.283861 0.548588 0.541078 0.564338 0.551572 0.463288 0.315356 0.452788 diff --git a/datasets/xianshiping/train/labels/订单1806922_51_7110814.txt b/datasets/xianshiping/train/labels/订单1806922_51_7110814.txt new file mode 100644 index 0000000..dbfb36e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806922_51_7110814.txt @@ -0,0 +1 @@ +6 0.364466 0.409443 0.350469 0.499990 0.562187 0.518359 0.569193 0.422559 0.371471 0.406816 diff --git a/datasets/xianshiping/train/labels/订单1806925_51_7110926.txt b/datasets/xianshiping/train/labels/订单1806925_51_7110926.txt new file mode 100644 index 0000000..908b600 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806925_51_7110926.txt @@ -0,0 +1 @@ +6 0.234741 0.421257 0.239663 0.543301 0.390249 0.532799 0.384346 0.414694 0.237690 0.418626 diff --git a/datasets/xianshiping/train/labels/订单1806926_51_7110876.txt b/datasets/xianshiping/train/labels/订单1806926_51_7110876.txt new file mode 100644 index 0000000..a235dea --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806926_51_7110876.txt @@ -0,0 +1 @@ +6 0.405029 0.380590 0.392231 0.486885 0.569399 0.507885 0.567428 0.396333 0.404043 0.380590 diff --git a/datasets/xianshiping/train/labels/订单1806928_51_7110863.txt b/datasets/xianshiping/train/labels/订单1806928_51_7110863.txt new file mode 100644 index 0000000..f53e213 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806928_51_7110863.txt @@ -0,0 +1 @@ +6 0.572695 0.244082 0.570937 0.387129 0.889401 0.384502 0.885898 0.236211 0.570937 0.241465 diff --git a/datasets/xianshiping/train/labels/订单1806929_51_7110854.txt b/datasets/xianshiping/train/labels/订单1806929_51_7110854.txt new file mode 100644 index 0000000..ae4e7e9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806929_51_7110854.txt @@ -0,0 +1 @@ +6 0.220990 0.456680 0.243737 0.538047 0.436211 0.507861 0.409961 0.430439 0.222734 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1806935_51_7111073.txt b/datasets/xianshiping/train/labels/订单1806935_51_7111073.txt new file mode 100644 index 0000000..c393f3d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806935_51_7111073.txt @@ -0,0 +1 @@ +6 0.130877 0.398945 0.118627 0.492119 0.363599 0.481626 0.354856 0.387137 0.129123 0.396324 diff --git a/datasets/xianshiping/train/labels/订单1806936_51_7110996.txt b/datasets/xianshiping/train/labels/订单1806936_51_7110996.txt new file mode 100644 index 0000000..9eaaf69 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806936_51_7110996.txt @@ -0,0 +1 @@ +6 0.343478 0.469813 0.346811 0.589242 0.630276 0.583986 0.607703 0.460630 0.338228 0.472441 diff --git a/datasets/xianshiping/train/labels/订单1806937_51_7111019.txt b/datasets/xianshiping/train/labels/订单1806937_51_7111019.txt new file mode 100644 index 0000000..7b9f117 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806937_51_7111019.txt @@ -0,0 +1 @@ +6 0.355716 0.601045 0.404714 0.686338 0.591940 0.628604 0.542943 0.547236 0.355716 0.597100 diff --git a/datasets/xianshiping/train/labels/订单1806938_51_7111055.txt b/datasets/xianshiping/train/labels/订单1806938_51_7111055.txt new file mode 100644 index 0000000..ba6cd4d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806938_51_7111055.txt @@ -0,0 +1 @@ +6 0.203367 0.392421 0.192872 0.501346 0.443089 0.502658 0.434339 0.395046 0.203367 0.392421 diff --git a/datasets/xianshiping/train/labels/订单1806942_51_7111056.txt b/datasets/xianshiping/train/labels/订单1806942_51_7111056.txt new file mode 100644 index 0000000..c3b24e4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806942_51_7111056.txt @@ -0,0 +1 @@ +6 0.392461 0.418623 0.364466 0.505244 0.562187 0.535420 0.576185 0.440937 0.392461 0.414687 diff --git a/datasets/xianshiping/train/labels/订单1806943_51_7111143.txt b/datasets/xianshiping/train/labels/订单1806943_51_7111143.txt new file mode 100644 index 0000000..fd0abe7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806943_51_7111143.txt @@ -0,0 +1 @@ +6 0.423958 0.485557 0.416966 0.581357 0.632188 0.587920 0.630430 0.489492 0.423958 0.485557 diff --git a/datasets/xianshiping/train/labels/订单1806944_51_7111099.txt b/datasets/xianshiping/train/labels/订单1806944_51_7111099.txt new file mode 100644 index 0000000..cee3abb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806944_51_7111099.txt @@ -0,0 +1 @@ +6 0.392461 0.417314 0.392461 0.497363 0.576185 0.497363 0.570937 0.416006 0.387214 0.417314 diff --git a/datasets/xianshiping/train/labels/订单1806947_51_7111167.txt b/datasets/xianshiping/train/labels/订单1806947_51_7111167.txt new file mode 100644 index 0000000..032690f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806947_51_7111167.txt @@ -0,0 +1 @@ +6 0.422187 0.506540 0.423933 0.577400 0.602413 0.574780 0.598920 0.498660 0.423933 0.507850 diff --git a/datasets/xianshiping/train/labels/订单1806951_51_7111144.txt b/datasets/xianshiping/train/labels/订单1806951_51_7111144.txt new file mode 100644 index 0000000..3f032ee --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806951_51_7111144.txt @@ -0,0 +1 @@ +6 0.360964 0.662725 0.392461 0.737520 0.560443 0.700781 0.527201 0.623350 0.364466 0.657471 diff --git a/datasets/xianshiping/train/labels/订单1806953_51_7111322.txt b/datasets/xianshiping/train/labels/订单1806953_51_7111322.txt new file mode 100644 index 0000000..eb3c292 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806953_51_7111322.txt @@ -0,0 +1 @@ +6 0.388821 0.647000 0.345077 0.771673 0.660038 0.812356 0.674038 0.667990 0.397577 0.641750 diff --git a/datasets/xianshiping/train/labels/订单1806954_51_7111215.txt b/datasets/xianshiping/train/labels/订单1806954_51_7111215.txt new file mode 100644 index 0000000..f21ede3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806954_51_7111215.txt @@ -0,0 +1 @@ +6 0.213984 0.400254 0.217487 0.493428 0.434453 0.484238 0.427461 0.387129 0.213984 0.398945 diff --git a/datasets/xianshiping/train/labels/订单1806959_51_7111293.txt b/datasets/xianshiping/train/labels/订单1806959_51_7111293.txt new file mode 100644 index 0000000..6331229 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806959_51_7111293.txt @@ -0,0 +1 @@ +6 0.325948 0.566900 0.327696 0.667953 0.556912 0.660074 0.546422 0.560343 0.325948 0.566900 diff --git a/datasets/xianshiping/train/labels/订单1806961_51_7111241.txt b/datasets/xianshiping/train/labels/订单1806961_51_7111241.txt new file mode 100644 index 0000000..d667a67 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806961_51_7111241.txt @@ -0,0 +1 @@ +6 0.369714 0.564297 0.297982 0.699463 0.430964 0.736211 0.497448 0.594482 0.373216 0.561670 diff --git a/datasets/xianshiping/train/labels/订单1806967_51_7111257.txt b/datasets/xianshiping/train/labels/订单1806967_51_7111257.txt new file mode 100644 index 0000000..6791bf2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806967_51_7111257.txt @@ -0,0 +1 @@ +6 0.201732 0.520986 0.166745 0.633848 0.418711 0.665342 0.458958 0.552480 0.198242 0.515742 diff --git a/datasets/xianshiping/train/labels/订单1806969_51_7111294.txt b/datasets/xianshiping/train/labels/订单1806969_51_7111294.txt new file mode 100644 index 0000000..f1c0773 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806969_51_7111294.txt @@ -0,0 +1 @@ +6 0.423839 0.435729 0.413344 0.531529 0.682811 0.549900 0.679311 0.438354 0.416844 0.427854 diff --git a/datasets/xianshiping/train/labels/订单1806972_51_7111358.txt b/datasets/xianshiping/train/labels/订单1806972_51_7111358.txt new file mode 100644 index 0000000..4a56c88 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806972_51_7111358.txt @@ -0,0 +1 @@ +6 0.495583 0.513154 0.486833 0.598458 0.670561 0.603708 0.670561 0.518404 0.495583 0.514467 diff --git a/datasets/xianshiping/train/labels/订单1806973_51_7111443.txt b/datasets/xianshiping/train/labels/订单1806973_51_7111443.txt new file mode 100644 index 0000000..051578e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806973_51_7111443.txt @@ -0,0 +1 @@ +6 0.292606 0.524967 0.299606 0.622079 0.513078 0.605021 0.502583 0.510533 0.294356 0.522342 diff --git a/datasets/xianshiping/train/labels/订单1806981_51_7111413.txt b/datasets/xianshiping/train/labels/订单1806981_51_7111413.txt new file mode 100644 index 0000000..fd24526 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806981_51_7111413.txt @@ -0,0 +1 @@ +6 0.402956 0.488184 0.397708 0.578730 0.618190 0.586602 0.618190 0.490801 0.402969 0.486865 diff --git a/datasets/xianshiping/train/labels/订单1806982_51_7111416.txt b/datasets/xianshiping/train/labels/订单1806982_51_7111416.txt new file mode 100644 index 0000000..2f195a9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806982_51_7111416.txt @@ -0,0 +1 @@ +6 0.352214 0.446182 0.359219 0.548545 0.579688 0.538047 0.563945 0.438311 0.350469 0.443564 diff --git a/datasets/xianshiping/train/labels/订单1806984_51_7111472.txt b/datasets/xianshiping/train/labels/订单1806984_51_7111472.txt new file mode 100644 index 0000000..6789c79 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806984_51_7111472.txt @@ -0,0 +1 @@ +6 0.340115 0.473746 0.334862 0.552491 0.541106 0.549862 0.532362 0.465874 0.340115 0.473746 diff --git a/datasets/xianshiping/train/labels/订单1806987_51_7111464.txt b/datasets/xianshiping/train/labels/订单1806987_51_7111464.txt new file mode 100644 index 0000000..9a5f77d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806987_51_7111464.txt @@ -0,0 +1 @@ +6 0.275200 0.423860 0.271707 0.548530 0.556920 0.552470 0.553427 0.418610 0.276960 0.427790 diff --git a/datasets/xianshiping/train/labels/订单1806988_51_7111491.txt b/datasets/xianshiping/train/labels/订单1806988_51_7111491.txt new file mode 100644 index 0000000..6c4f0f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806988_51_7111491.txt @@ -0,0 +1 @@ +6 0.376719 0.333320 0.385469 0.478994 0.670677 0.475059 0.658424 0.326758 0.383711 0.329385 diff --git a/datasets/xianshiping/train/labels/订单1806990_51_7111507.txt b/datasets/xianshiping/train/labels/订单1806990_51_7111507.txt new file mode 100644 index 0000000..5181fc5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806990_51_7111507.txt @@ -0,0 +1 @@ +6 0.478173 0.396300 0.464187 0.499970 0.679400 0.513100 0.689907 0.408110 0.472933 0.398920 diff --git a/datasets/xianshiping/train/labels/订单1806991_51_7111532.txt b/datasets/xianshiping/train/labels/订单1806991_51_7111532.txt new file mode 100644 index 0000000..d8cb838 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806991_51_7111532.txt @@ -0,0 +1 @@ +6 0.275234 0.408125 0.273477 0.526240 0.530690 0.540674 0.530690 0.414687 0.276979 0.406816 diff --git a/datasets/xianshiping/train/labels/订单1806992_51_7111542.txt b/datasets/xianshiping/train/labels/订单1806992_51_7111542.txt new file mode 100644 index 0000000..03679c6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806992_51_7111542.txt @@ -0,0 +1 @@ +6 0.499173 0.360870 0.483427 0.463230 0.710907 0.486850 0.724893 0.377930 0.497427 0.358240 diff --git a/datasets/xianshiping/train/labels/订单1806994_51_7111560.txt b/datasets/xianshiping/train/labels/订单1806994_51_7111560.txt new file mode 100644 index 0000000..b8b6783 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806994_51_7111560.txt @@ -0,0 +1 @@ +6 0.374961 0.371377 0.378464 0.480303 0.635677 0.477686 0.626940 0.362197 0.369714 0.370068 diff --git a/datasets/xianshiping/train/labels/订单1806996_51_7111579.txt b/datasets/xianshiping/train/labels/订单1806996_51_7111579.txt new file mode 100644 index 0000000..7ee43bc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806996_51_7111579.txt @@ -0,0 +1 @@ +6 0.555195 0.279521 0.544701 0.422559 0.856159 0.443564 0.870156 0.283457 0.555195 0.278203 diff --git a/datasets/xianshiping/train/labels/订单1806997_51_7111589.txt b/datasets/xianshiping/train/labels/订单1806997_51_7111589.txt new file mode 100644 index 0000000..6fd6232 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1806997_51_7111589.txt @@ -0,0 +1 @@ +6 0.478090 0.475104 0.486840 0.626024 0.616319 0.619462 0.611076 0.467231 0.471088 0.475104 diff --git a/datasets/xianshiping/train/labels/订单1807000_51_7111608.txt b/datasets/xianshiping/train/labels/订单1807000_51_7111608.txt new file mode 100644 index 0000000..6962482 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807000_51_7111608.txt @@ -0,0 +1 @@ +6 0.369714 0.419941 0.366211 0.513115 0.595443 0.506553 0.588438 0.413379 0.373216 0.418623 diff --git a/datasets/xianshiping/train/labels/订单1807001_51_7111603.txt b/datasets/xianshiping/train/labels/订单1807001_51_7111603.txt new file mode 100644 index 0000000..d0922db --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807001_51_7111603.txt @@ -0,0 +1 @@ +6 0.124720 0.338560 0.117720 0.435670 0.371440 0.436980 0.371440 0.334620 0.121227 0.333310 diff --git a/datasets/xianshiping/train/labels/订单1807006_51_7111644.txt b/datasets/xianshiping/train/labels/订单1807006_51_7111644.txt new file mode 100644 index 0000000..9a4b1ee --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807006_51_7111644.txt @@ -0,0 +1 @@ +6 0.276979 0.556426 0.275234 0.654844 0.486953 0.641719 0.476458 0.544609 0.273477 0.551172 diff --git a/datasets/xianshiping/train/labels/订单1807008_51_7113981.txt b/datasets/xianshiping/train/labels/订单1807008_51_7113981.txt new file mode 100644 index 0000000..3d0e41b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807008_51_7113981.txt @@ -0,0 +1 @@ +6 0.448464 0.366133 0.444961 0.454062 0.633932 0.456680 0.633932 0.368760 0.439714 0.366133 diff --git a/datasets/xianshiping/train/labels/订单1807010_51_7111695.txt b/datasets/xianshiping/train/labels/订单1807010_51_7111695.txt new file mode 100644 index 0000000..8d5fa4e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807010_51_7111695.txt @@ -0,0 +1 @@ +6 0.414089 0.478990 0.408256 0.538045 0.641556 0.541980 0.647389 0.480300 0.419922 0.477675 diff --git a/datasets/xianshiping/train/labels/订单1807011_51_7111704.txt b/datasets/xianshiping/train/labels/订单1807011_51_7111704.txt new file mode 100644 index 0000000..db032d2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807011_51_7111704.txt @@ -0,0 +1 @@ +6 0.217346 0.341221 0.224346 0.434394 0.451808 0.438337 0.443064 0.342538 0.215590 0.342538 diff --git a/datasets/xianshiping/train/labels/订单1807012_51_7111662.txt b/datasets/xianshiping/train/labels/订单1807012_51_7111662.txt new file mode 100644 index 0000000..f81846f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807012_51_7111662.txt @@ -0,0 +1 @@ +6 0.368719 0.521029 0.363477 0.594520 0.538444 0.591892 0.536706 0.519716 0.370471 0.518402 diff --git a/datasets/xianshiping/train/labels/订单1807014_51_7111680.txt b/datasets/xianshiping/train/labels/订单1807014_51_7111680.txt new file mode 100644 index 0000000..1909eb5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807014_51_7111680.txt @@ -0,0 +1 @@ +6 0.451319 0.360938 0.470998 0.484306 0.642257 0.443623 0.618637 0.322882 0.450330 0.360938 diff --git a/datasets/xianshiping/train/labels/订单1807017_51_7111731.txt b/datasets/xianshiping/train/labels/订单1807017_51_7111731.txt new file mode 100644 index 0000000..2623d60 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807017_51_7111731.txt @@ -0,0 +1 @@ +6 0.413464 0.534111 0.394219 0.622041 0.625182 0.640410 0.625182 0.544609 0.420456 0.530176 diff --git a/datasets/xianshiping/train/labels/订单1807020_51_7111739.txt b/datasets/xianshiping/train/labels/订单1807020_51_7111739.txt new file mode 100644 index 0000000..50c2f01 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807020_51_7111739.txt @@ -0,0 +1 @@ +6 0.372222 0.400294 0.380967 0.502657 0.613686 0.494784 0.606693 0.391108 0.375725 0.396353 diff --git a/datasets/xianshiping/train/labels/订单1807021_51_7111752.txt b/datasets/xianshiping/train/labels/订单1807021_51_7111752.txt new file mode 100644 index 0000000..785b089 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807021_51_7111752.txt @@ -0,0 +1 @@ +6 0.457187 0.493410 0.436187 0.591840 0.668907 0.616770 0.688147 0.509160 0.458933 0.490790 diff --git a/datasets/xianshiping/train/labels/订单1807024_51_7111799.txt b/datasets/xianshiping/train/labels/订单1807024_51_7111799.txt new file mode 100644 index 0000000..cdf6a7b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807024_51_7111799.txt @@ -0,0 +1 @@ +6 0.226213 0.444860 0.215707 0.604960 0.560413 0.620710 0.574413 0.461920 0.229707 0.440920 diff --git a/datasets/xianshiping/train/labels/订单1807025_51_7111816.txt b/datasets/xianshiping/train/labels/订单1807025_51_7111816.txt new file mode 100644 index 0000000..7e0c6da --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807025_51_7111816.txt @@ -0,0 +1 @@ +6 0.408967 0.452784 0.391464 0.552529 0.634693 0.561716 0.641686 0.458039 0.417712 0.452784 diff --git a/datasets/xianshiping/train/labels/订单1807028_51_7111855.txt b/datasets/xianshiping/train/labels/订单1807028_51_7111855.txt new file mode 100644 index 0000000..eff4753 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807028_51_7111855.txt @@ -0,0 +1 @@ +6 0.238490 0.476367 0.201732 0.541982 0.376719 0.586602 0.408216 0.510488 0.241979 0.475059 diff --git a/datasets/xianshiping/train/labels/订单1807033_51_7111848.txt b/datasets/xianshiping/train/labels/订单1807033_51_7111848.txt new file mode 100644 index 0000000..4cd0a58 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807033_51_7111848.txt @@ -0,0 +1 @@ +6 0.607567 0.427854 0.504333 0.549900 0.598817 0.598458 0.709056 0.475100 0.607567 0.427854 diff --git a/datasets/xianshiping/train/labels/订单1807034_51_7111852.txt b/datasets/xianshiping/train/labels/订单1807034_51_7111852.txt new file mode 100644 index 0000000..9a99b0e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807034_51_7111852.txt @@ -0,0 +1 @@ +6 0.642413 0.528900 0.624040 0.605013 0.797267 0.641760 0.806453 0.545960 0.642413 0.528900 diff --git a/datasets/xianshiping/train/labels/订单1807036_51_7111866.txt b/datasets/xianshiping/train/labels/订单1807036_51_7111866.txt new file mode 100644 index 0000000..d4f64c7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807036_51_7111866.txt @@ -0,0 +1 @@ +6 0.476128 0.446198 0.467282 0.536749 0.688526 0.543308 0.679679 0.443574 0.479667 0.440951 diff --git a/datasets/xianshiping/train/labels/订单1807039_51_7111877.txt b/datasets/xianshiping/train/labels/订单1807039_51_7111877.txt new file mode 100644 index 0000000..e7f4ffe --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807039_51_7111877.txt @@ -0,0 +1 @@ +6 0.401187 0.553780 0.446680 0.610210 0.591920 0.564280 0.549920 0.505220 0.404693 0.551150 diff --git a/datasets/xianshiping/train/labels/订单1807040_51_7111929.txt b/datasets/xianshiping/train/labels/订单1807040_51_7111929.txt new file mode 100644 index 0000000..20218ca --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807040_51_7111929.txt @@ -0,0 +1 @@ +6 0.308477 0.442246 0.292721 0.594482 0.628685 0.608916 0.640938 0.446182 0.313724 0.439619 diff --git a/datasets/xianshiping/train/labels/订单1807041_51_7111977.txt b/datasets/xianshiping/train/labels/订单1807041_51_7111977.txt new file mode 100644 index 0000000..8e73b38 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807041_51_7111977.txt @@ -0,0 +1 @@ +6 0.262982 0.498682 0.257734 0.595791 0.485208 0.598418 0.483451 0.493428 0.262982 0.490801 diff --git a/datasets/xianshiping/train/labels/订单1807042_51_7111966.txt b/datasets/xianshiping/train/labels/订单1807042_51_7111966.txt new file mode 100644 index 0000000..525418d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807042_51_7111966.txt @@ -0,0 +1 @@ +6 0.409937 0.450124 0.406001 0.619414 0.486709 0.622044 0.488677 0.447500 0.412891 0.448815 diff --git a/datasets/xianshiping/train/labels/订单1807047_51_7112008.txt b/datasets/xianshiping/train/labels/订单1807047_51_7112008.txt new file mode 100644 index 0000000..c07ba31 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807047_51_7112008.txt @@ -0,0 +1 @@ +6 0.163242 0.511797 0.173737 0.633848 0.464206 0.629912 0.458958 0.509180 0.157995 0.511807 diff --git a/datasets/xianshiping/train/labels/订单1807051_51_7111954.txt b/datasets/xianshiping/train/labels/订单1807051_51_7111954.txt new file mode 100644 index 0000000..e9c5687 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807051_51_7111954.txt @@ -0,0 +1 @@ +6 0.171992 0.314951 0.171992 0.472432 0.513203 0.481621 0.521953 0.322822 0.173737 0.312324 diff --git a/datasets/xianshiping/train/labels/订单1807054_51_7112064.txt b/datasets/xianshiping/train/labels/订单1807054_51_7112064.txt new file mode 100644 index 0000000..c748bd6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807054_51_7112064.txt @@ -0,0 +1 @@ +6 0.362600 0.421292 0.359100 0.510533 0.570822 0.513158 0.570822 0.418667 0.360850 0.418667 diff --git a/datasets/xianshiping/train/labels/订单1807056_51_7112029.txt b/datasets/xianshiping/train/labels/订单1807056_51_7112029.txt new file mode 100644 index 0000000..da30eb3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807056_51_7112029.txt @@ -0,0 +1 @@ +6 0.495703 0.398945 0.602435 0.552480 0.724922 0.507861 0.618190 0.349072 0.495703 0.395000 diff --git a/datasets/xianshiping/train/labels/订单1807061_51_7112116.txt b/datasets/xianshiping/train/labels/订单1807061_51_7112116.txt new file mode 100644 index 0000000..7d44072 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807061_51_7112116.txt @@ -0,0 +1 @@ +6 0.255861 0.434417 0.255861 0.535467 0.490333 0.536779 0.504333 0.429167 0.250611 0.429167 diff --git a/datasets/xianshiping/train/labels/订单1807065_51_7112141.txt b/datasets/xianshiping/train/labels/订单1807065_51_7112141.txt new file mode 100644 index 0000000..397bd4f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807065_51_7112141.txt @@ -0,0 +1 @@ +6 0.369714 0.547236 0.367969 0.635166 0.579688 0.635166 0.576185 0.541982 0.362721 0.547236 diff --git a/datasets/xianshiping/train/labels/订单1807066_51_7112143.txt b/datasets/xianshiping/train/labels/订单1807066_51_7112143.txt new file mode 100644 index 0000000..3e19976 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807066_51_7112143.txt @@ -0,0 +1 @@ +6 0.080859 0.404212 0.107103 0.503952 0.338077 0.479019 0.311833 0.376654 0.087859 0.401587 diff --git a/datasets/xianshiping/train/labels/订单1807069_51_7112243.txt b/datasets/xianshiping/train/labels/订单1807069_51_7112243.txt new file mode 100644 index 0000000..243ea7e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807069_51_7112243.txt @@ -0,0 +1 @@ +6 0.457201 0.460647 0.410941 0.694248 0.525113 0.725745 0.562515 0.475085 0.459167 0.460654 diff --git a/datasets/xianshiping/train/labels/订单1807070_51_7112196.txt b/datasets/xianshiping/train/labels/订单1807070_51_7112196.txt new file mode 100644 index 0000000..9b710eb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807070_51_7112196.txt @@ -0,0 +1 @@ +6 0.374868 0.408191 0.371374 0.509243 0.618099 0.507928 0.607588 0.401623 0.378377 0.404254 diff --git a/datasets/xianshiping/train/labels/订单1807073_51_7112179.txt b/datasets/xianshiping/train/labels/订单1807073_51_7112179.txt new file mode 100644 index 0000000..ab86ce1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807073_51_7112179.txt @@ -0,0 +1 @@ +6 0.224479 0.471123 0.194740 0.549863 0.409961 0.568232 0.418711 0.481621 0.226237 0.473740 diff --git a/datasets/xianshiping/train/labels/订单1807074_51_7113123.txt b/datasets/xianshiping/train/labels/订单1807074_51_7113123.txt new file mode 100644 index 0000000..65781b2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807074_51_7113123.txt @@ -0,0 +1 @@ +6 0.380208 0.503926 0.422214 0.594482 0.626940 0.555107 0.600690 0.455371 0.381966 0.501299 diff --git a/datasets/xianshiping/train/labels/订单1807076_51_7112165.txt b/datasets/xianshiping/train/labels/订单1807076_51_7112165.txt new file mode 100644 index 0000000..7ebb59f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807076_51_7112165.txt @@ -0,0 +1 @@ +6 0.346966 0.482930 0.343464 0.552480 0.523698 0.543301 0.516693 0.465869 0.343464 0.482930 diff --git a/datasets/xianshiping/train/labels/订单1807077_51_7112279.txt b/datasets/xianshiping/train/labels/订单1807077_51_7112279.txt new file mode 100644 index 0000000..1a4c55f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807077_51_7112279.txt @@ -0,0 +1 @@ +6 0.127863 0.465885 0.125530 0.569562 0.456821 0.563000 0.438162 0.456702 0.130197 0.465885 diff --git a/datasets/xianshiping/train/labels/订单1807079_51_7112332.txt b/datasets/xianshiping/train/labels/订单1807079_51_7112332.txt new file mode 100644 index 0000000..31be1e5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807079_51_7112332.txt @@ -0,0 +1 @@ +6 0.291826 0.334642 0.291826 0.703405 0.459150 0.703405 0.458164 0.333327 0.292812 0.334642 diff --git a/datasets/xianshiping/train/labels/订单1807081_51_7112220.txt b/datasets/xianshiping/train/labels/订单1807081_51_7112220.txt new file mode 100644 index 0000000..acd4e85 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807081_51_7112220.txt @@ -0,0 +1 @@ +6 0.454591 0.517059 0.452837 0.610234 0.697809 0.607604 0.687313 0.509187 0.458085 0.515744 diff --git a/datasets/xianshiping/train/labels/订单1807082_51_7112235.txt b/datasets/xianshiping/train/labels/订单1807082_51_7112235.txt new file mode 100644 index 0000000..bc59f2c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807082_51_7112235.txt @@ -0,0 +1 @@ +6 0.367969 0.455371 0.345221 0.561670 0.616432 0.586602 0.623437 0.475059 0.367969 0.455371 diff --git a/datasets/xianshiping/train/labels/订单1807088_51_7112349.txt b/datasets/xianshiping/train/labels/订单1807088_51_7112349.txt new file mode 100644 index 0000000..a14a6f1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807088_51_7112349.txt @@ -0,0 +1 @@ +6 0.289974 0.498716 0.286484 0.607647 0.545451 0.605020 0.540196 0.493471 0.295229 0.497402 diff --git a/datasets/xianshiping/train/labels/订单1807094_51_7112419.txt b/datasets/xianshiping/train/labels/订单1807094_51_7112419.txt new file mode 100644 index 0000000..e6e8d35 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807094_51_7112419.txt @@ -0,0 +1 @@ +6 0.433560 0.377949 0.425684 0.557734 0.516235 0.562988 0.516235 0.377949 0.431592 0.377949 diff --git a/datasets/xianshiping/train/labels/订单1807095_51_7112473.txt b/datasets/xianshiping/train/labels/订单1807095_51_7112473.txt new file mode 100644 index 0000000..6031ca2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807095_51_7112473.txt @@ -0,0 +1 @@ +6 0.339947 0.465850 0.366200 0.577400 0.604160 0.548530 0.583160 0.442230 0.343440 0.463230 diff --git a/datasets/xianshiping/train/labels/订单1807097_51_7112451.txt b/datasets/xianshiping/train/labels/订单1807097_51_7112451.txt new file mode 100644 index 0000000..6900a84 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807097_51_7112451.txt @@ -0,0 +1 @@ +6 0.605920 0.371360 0.602413 0.422550 0.731893 0.419920 0.731893 0.364800 0.605920 0.371360 diff --git a/datasets/xianshiping/train/labels/订单1807098_51_7112456.txt b/datasets/xianshiping/train/labels/订单1807098_51_7112456.txt new file mode 100644 index 0000000..234788a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807098_51_7112456.txt @@ -0,0 +1 @@ +6 0.294479 0.793955 0.306719 0.906816 0.576185 0.884502 0.558698 0.769023 0.301471 0.792646 diff --git a/datasets/xianshiping/train/labels/订单1807107_51_7112611.txt b/datasets/xianshiping/train/labels/订单1807107_51_7112611.txt new file mode 100644 index 0000000..1245e2a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807107_51_7112611.txt @@ -0,0 +1 @@ +6 0.387214 0.519678 0.399466 0.624658 0.640938 0.603662 0.612930 0.501299 0.385469 0.518359 diff --git a/datasets/xianshiping/train/labels/订单1807111_51_7112561.txt b/datasets/xianshiping/train/labels/订单1807111_51_7112561.txt new file mode 100644 index 0000000..94e5aa6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807111_51_7112561.txt @@ -0,0 +1 @@ +6 0.114127 0.636479 0.210950 0.688970 0.419279 0.619419 0.331255 0.566924 0.120000 0.636479 diff --git a/datasets/xianshiping/train/labels/订单1807117_51_7112521.txt b/datasets/xianshiping/train/labels/订单1807117_51_7112521.txt new file mode 100644 index 0000000..2e03e21 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807117_51_7112521.txt @@ -0,0 +1 @@ +6 0.330895 0.406858 0.333225 0.482977 0.585185 0.461979 0.566528 0.383238 0.330895 0.402925 diff --git a/datasets/xianshiping/train/labels/订单1807118_51_7112530.txt b/datasets/xianshiping/train/labels/订单1807118_51_7112530.txt new file mode 100644 index 0000000..eb04a6a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807118_51_7112530.txt @@ -0,0 +1 @@ +6 0.408216 0.464561 0.401211 0.539365 0.581445 0.552480 0.583190 0.472432 0.402969 0.460625 diff --git a/datasets/xianshiping/train/labels/订单1807121_51_7112649.txt b/datasets/xianshiping/train/labels/订单1807121_51_7112649.txt new file mode 100644 index 0000000..e3d299e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807121_51_7112649.txt @@ -0,0 +1 @@ +6 0.572667 0.321500 0.558667 0.393670 0.724893 0.401550 0.730147 0.324120 0.579667 0.320180 diff --git a/datasets/xianshiping/train/labels/订单1807123_51_7112602.txt b/datasets/xianshiping/train/labels/订单1807123_51_7112602.txt new file mode 100644 index 0000000..ffe7140 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807123_51_7112602.txt @@ -0,0 +1 @@ +6 0.287474 0.513115 0.296224 0.622041 0.541198 0.615479 0.528945 0.503926 0.296224 0.509180 diff --git a/datasets/xianshiping/train/labels/订单1807124_51_7112644.txt b/datasets/xianshiping/train/labels/订单1807124_51_7112644.txt new file mode 100644 index 0000000..ce8ee11 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807124_51_7112644.txt @@ -0,0 +1 @@ +6 0.381966 0.560361 0.388958 0.648281 0.593685 0.640410 0.581445 0.549863 0.387214 0.562979 diff --git a/datasets/xianshiping/train/labels/订单1807126_51_7112788.txt b/datasets/xianshiping/train/labels/订单1807126_51_7112788.txt new file mode 100644 index 0000000..e1de30e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807126_51_7112788.txt @@ -0,0 +1 @@ +6 0.374961 0.656162 0.469453 0.793955 0.733672 0.673223 0.630430 0.555107 0.373216 0.656162 diff --git a/datasets/xianshiping/train/labels/订单1807127_51_7112692.txt b/datasets/xianshiping/train/labels/订单1807127_51_7112692.txt new file mode 100644 index 0000000..a26b630 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807127_51_7112692.txt @@ -0,0 +1 @@ +6 0.404922 0.477725 0.394466 0.580088 0.647201 0.586647 0.648945 0.476412 0.408411 0.475098 diff --git a/datasets/xianshiping/train/labels/订单1807130_51_7112696.txt b/datasets/xianshiping/train/labels/订单1807130_51_7112696.txt new file mode 100644 index 0000000..b544b8d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807130_51_7112696.txt @@ -0,0 +1 @@ +6 0.474701 0.421250 0.465951 0.485557 0.642682 0.492119 0.649687 0.419941 0.478203 0.417314 diff --git a/datasets/xianshiping/train/labels/订单1807131_51_7112684.txt b/datasets/xianshiping/train/labels/订单1807131_51_7112684.txt new file mode 100644 index 0000000..d4ffe9d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807131_51_7112684.txt @@ -0,0 +1 @@ +6 0.446589 0.463288 0.430839 0.549900 0.618067 0.573525 0.632067 0.482971 0.446589 0.463288 diff --git a/datasets/xianshiping/train/labels/订单1807134_51_7112717.txt b/datasets/xianshiping/train/labels/订单1807134_51_7112717.txt new file mode 100644 index 0000000..0b7783d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807134_51_7112717.txt @@ -0,0 +1 @@ +6 0.271732 0.560361 0.273477 0.653535 0.476458 0.648281 0.467708 0.552480 0.273477 0.559043 diff --git a/datasets/xianshiping/train/labels/订单1807139_51_7112752.txt b/datasets/xianshiping/train/labels/订单1807139_51_7112752.txt new file mode 100644 index 0000000..d348eb5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807139_51_7112752.txt @@ -0,0 +1 @@ +6 0.297833 0.404212 0.290833 0.532827 0.593551 0.534135 0.595295 0.400279 0.310077 0.402904 diff --git a/datasets/xianshiping/train/labels/订单1807140_51_7112755.txt b/datasets/xianshiping/train/labels/订单1807140_51_7112755.txt new file mode 100644 index 0000000..5857d3e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807140_51_7112755.txt @@ -0,0 +1 @@ +6 0.524149 0.397685 0.520217 0.518426 0.696398 0.534167 0.694427 0.402940 0.526120 0.398993 diff --git a/datasets/xianshiping/train/labels/订单1807141_51_7112783.txt b/datasets/xianshiping/train/labels/订单1807141_51_7112783.txt new file mode 100644 index 0000000..119b6f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807141_51_7112783.txt @@ -0,0 +1 @@ +6 0.433022 0.543910 0.438270 0.650219 0.628558 0.643656 0.621995 0.529481 0.435652 0.539977 diff --git a/datasets/xianshiping/train/labels/订单1807142_51_7112827.txt b/datasets/xianshiping/train/labels/订单1807142_51_7112827.txt new file mode 100644 index 0000000..2417ddc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807142_51_7112827.txt @@ -0,0 +1 @@ +6 0.233229 0.557734 0.238477 0.661406 0.474701 0.650908 0.465951 0.545918 0.233229 0.555107 diff --git a/datasets/xianshiping/train/labels/订单1807149_51_7112991.txt b/datasets/xianshiping/train/labels/订单1807149_51_7112991.txt new file mode 100644 index 0000000..b1fa6e1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807149_51_7112991.txt @@ -0,0 +1 @@ +6 0.419780 0.499993 0.426670 0.624668 0.581196 0.612852 0.575293 0.490807 0.422729 0.498678 diff --git a/datasets/xianshiping/train/labels/订单1807152_51_7112839.txt b/datasets/xianshiping/train/labels/订单1807152_51_7112839.txt new file mode 100644 index 0000000..8296401 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807152_51_7112839.txt @@ -0,0 +1 @@ +6 0.495703 0.561670 0.483451 0.644346 0.681172 0.661406 0.695182 0.566924 0.497448 0.557734 diff --git a/datasets/xianshiping/train/labels/订单1807154_51_7112857.txt b/datasets/xianshiping/train/labels/订单1807154_51_7112857.txt new file mode 100644 index 0000000..c344b3b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807154_51_7112857.txt @@ -0,0 +1 @@ +6 0.490667 0.498706 0.489681 0.723118 0.592044 0.724431 0.594010 0.496085 0.490667 0.501333 diff --git a/datasets/xianshiping/train/labels/订单1807155_51_7112959.txt b/datasets/xianshiping/train/labels/订单1807155_51_7112959.txt new file mode 100644 index 0000000..c3735a1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807155_51_7112959.txt @@ -0,0 +1 @@ +6 0.355716 0.287393 0.350469 0.375322 0.548190 0.381885 0.544701 0.292646 0.355716 0.286084 diff --git a/datasets/xianshiping/train/labels/订单1807156_51_7112931.txt b/datasets/xianshiping/train/labels/订单1807156_51_7112931.txt new file mode 100644 index 0000000..afa03fb --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807156_51_7112931.txt @@ -0,0 +1 @@ +6 0.094984 0.688946 0.142222 0.797868 0.406438 0.715196 0.350441 0.608897 0.096732 0.686324 diff --git a/datasets/xianshiping/train/labels/订单1807157_51_7112890.txt b/datasets/xianshiping/train/labels/订单1807157_51_7112890.txt new file mode 100644 index 0000000..2a815f8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807157_51_7112890.txt @@ -0,0 +1 @@ +6 0.338100 0.330742 0.329350 0.434417 0.577822 0.452788 0.577822 0.350425 0.343350 0.330742 diff --git a/datasets/xianshiping/train/labels/订单1807159_51_7113023.txt b/datasets/xianshiping/train/labels/订单1807159_51_7113023.txt new file mode 100644 index 0000000..358d40d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807159_51_7113023.txt @@ -0,0 +1 @@ +6 0.336471 0.561670 0.336471 0.664033 0.574440 0.656162 0.567448 0.552480 0.336471 0.562979 diff --git a/datasets/xianshiping/train/labels/订单1807161_51_7113056.txt b/datasets/xianshiping/train/labels/订单1807161_51_7113056.txt new file mode 100644 index 0000000..fc6c545 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807161_51_7113056.txt @@ -0,0 +1 @@ +6 0.255977 0.473740 0.254232 0.582666 0.520195 0.570859 0.504453 0.460625 0.257734 0.475059 diff --git a/datasets/xianshiping/train/labels/订单1807164_51_7113127.txt b/datasets/xianshiping/train/labels/订单1807164_51_7113127.txt new file mode 100644 index 0000000..be3032e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807164_51_7113127.txt @@ -0,0 +1 @@ +6 0.290947 0.473730 0.317200 0.587900 0.577920 0.565590 0.562173 0.447480 0.290947 0.472410 diff --git a/datasets/xianshiping/train/labels/订单1807165_51_7113005.txt b/datasets/xianshiping/train/labels/订单1807165_51_7113005.txt new file mode 100644 index 0000000..fc772bd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807165_51_7113005.txt @@ -0,0 +1 @@ +6 0.322383 0.519737 0.329386 0.582730 0.471111 0.570921 0.469357 0.503991 0.318874 0.515800 diff --git a/datasets/xianshiping/train/labels/订单1807166_51_7112975.txt b/datasets/xianshiping/train/labels/订单1807166_51_7112975.txt new file mode 100644 index 0000000..7153e5b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807166_51_7112975.txt @@ -0,0 +1 @@ +6 0.385440 0.573460 0.367947 0.636460 0.523680 0.666640 0.546427 0.597090 0.387187 0.572150 diff --git a/datasets/xianshiping/train/labels/订单1807169_51_7113045.txt b/datasets/xianshiping/train/labels/订单1807169_51_7113045.txt new file mode 100644 index 0000000..6dea729 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807169_51_7113045.txt @@ -0,0 +1 @@ +6 0.286406 0.413422 0.293385 0.510529 0.542617 0.505284 0.530417 0.402922 0.289896 0.410794 diff --git a/datasets/xianshiping/train/labels/订单1807181_51_7113193.txt b/datasets/xianshiping/train/labels/订单1807181_51_7113193.txt new file mode 100644 index 0000000..822a1c4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807181_51_7113193.txt @@ -0,0 +1 @@ +6 0.357350 0.539404 0.353850 0.629954 0.532328 0.632579 0.537578 0.540717 0.359100 0.536779 diff --git a/datasets/xianshiping/train/labels/订单1807182_51_7113177.txt b/datasets/xianshiping/train/labels/订单1807182_51_7113177.txt new file mode 100644 index 0000000..a258451 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807182_51_7113177.txt @@ -0,0 +1 @@ +6 0.442554 0.185770 0.439961 0.305412 0.543789 0.309729 0.545737 0.184328 0.438662 0.185770 diff --git a/datasets/xianshiping/train/labels/订单1807183_51_7113142.txt b/datasets/xianshiping/train/labels/订单1807183_51_7113142.txt new file mode 100644 index 0000000..2b191e6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807183_51_7113142.txt @@ -0,0 +1 @@ +6 0.357451 0.586593 0.353938 0.670576 0.553415 0.675821 0.555163 0.582647 0.357451 0.583958 diff --git a/datasets/xianshiping/train/labels/订单1807184_51_7113191.txt b/datasets/xianshiping/train/labels/订单1807184_51_7113191.txt new file mode 100644 index 0000000..bc5b361 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807184_51_7113191.txt @@ -0,0 +1 @@ +6 0.320729 0.618105 0.243737 0.786084 0.380221 0.816260 0.455456 0.645664 0.325977 0.619414 diff --git a/datasets/xianshiping/train/labels/订单1807185_51_7113220.txt b/datasets/xianshiping/train/labels/订单1807185_51_7113220.txt new file mode 100644 index 0000000..d2be407 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807185_51_7113220.txt @@ -0,0 +1 @@ +6 0.394123 0.461996 0.392368 0.530241 0.572602 0.528925 0.565599 0.451491 0.399371 0.460680 diff --git a/datasets/xianshiping/train/labels/订单1807189_51_7113407.txt b/datasets/xianshiping/train/labels/订单1807189_51_7113407.txt new file mode 100644 index 0000000..e99f345 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807189_51_7113407.txt @@ -0,0 +1 @@ +6 0.373187 0.562970 0.373187 0.667950 0.618160 0.658770 0.609413 0.548530 0.385440 0.559030 diff --git a/datasets/xianshiping/train/labels/订单1807191_51_7113329.txt b/datasets/xianshiping/train/labels/订单1807191_51_7113329.txt new file mode 100644 index 0000000..59bb840 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807191_51_7113329.txt @@ -0,0 +1 @@ +6 0.603406 0.343828 0.603406 0.402881 0.833688 0.401572 0.833688 0.337266 0.609230 0.342515 diff --git a/datasets/xianshiping/train/labels/订单1807192_51_7113450.txt b/datasets/xianshiping/train/labels/订单1807192_51_7113450.txt new file mode 100644 index 0000000..586b1ba --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807192_51_7113450.txt @@ -0,0 +1 @@ +6 0.439714 0.463242 0.402969 0.553799 0.639180 0.590537 0.663685 0.488184 0.439714 0.461934 diff --git a/datasets/xianshiping/train/labels/订单1807197_51_7113341.txt b/datasets/xianshiping/train/labels/订单1807197_51_7113341.txt new file mode 100644 index 0000000..033c462 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807197_51_7113341.txt @@ -0,0 +1 @@ +6 0.609342 0.439682 0.595351 0.610285 0.749327 0.610285 0.745833 0.440998 0.609342 0.437061 diff --git a/datasets/xianshiping/train/labels/订单1807199_51_7113385.txt b/datasets/xianshiping/train/labels/订单1807199_51_7113385.txt new file mode 100644 index 0000000..2ca803e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807199_51_7113385.txt @@ -0,0 +1 @@ +6 0.262982 0.595791 0.271732 0.691592 0.485208 0.670596 0.462461 0.573486 0.261224 0.597100 diff --git a/datasets/xianshiping/train/labels/订单1807201_51_7113453.txt b/datasets/xianshiping/train/labels/订单1807201_51_7113453.txt new file mode 100644 index 0000000..2417281 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807201_51_7113453.txt @@ -0,0 +1 @@ +6 0.292721 0.643037 0.297982 0.733584 0.469453 0.725713 0.467708 0.636475 0.289232 0.643037 diff --git a/datasets/xianshiping/train/labels/订单1807202_51_7113452.txt b/datasets/xianshiping/train/labels/订单1807202_51_7113452.txt new file mode 100644 index 0000000..8cfa6c1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807202_51_7113452.txt @@ -0,0 +1 @@ +6 0.285606 0.559087 0.352100 0.589271 0.434339 0.497408 0.355600 0.467225 0.282111 0.553837 diff --git a/datasets/xianshiping/train/labels/订单1807203_51_7113404.txt b/datasets/xianshiping/train/labels/订单1807203_51_7113404.txt new file mode 100644 index 0000000..a25692a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807203_51_7113404.txt @@ -0,0 +1 @@ +6 0.369714 0.375322 0.380221 0.447500 0.565690 0.434375 0.546445 0.359570 0.367969 0.372695 diff --git a/datasets/xianshiping/train/labels/订单1807205_51_7113904.txt b/datasets/xianshiping/train/labels/订单1807205_51_7113904.txt new file mode 100644 index 0000000..d78b9e2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807205_51_7113904.txt @@ -0,0 +1 @@ +6 0.381973 0.290024 0.364476 0.611545 0.525456 0.604985 0.541204 0.326770 0.383724 0.288711 diff --git a/datasets/xianshiping/train/labels/订单1807208_51_7113555.txt b/datasets/xianshiping/train/labels/订单1807208_51_7113555.txt new file mode 100644 index 0000000..caf1217 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807208_51_7113555.txt @@ -0,0 +1 @@ +6 0.617515 0.405510 0.624494 0.469810 0.840890 0.469810 0.838558 0.401574 0.619847 0.405510 diff --git a/datasets/xianshiping/train/labels/订单1807211_51_7113519.txt b/datasets/xianshiping/train/labels/订单1807211_51_7113519.txt new file mode 100644 index 0000000..2533335 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807211_51_7113519.txt @@ -0,0 +1 @@ +6 0.411706 0.532803 0.404714 0.597100 0.583190 0.599727 0.581445 0.523613 0.408216 0.528857 diff --git a/datasets/xianshiping/train/labels/订单1807217_51_7113518.txt b/datasets/xianshiping/train/labels/订单1807217_51_7113518.txt new file mode 100644 index 0000000..b5f7ea6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807217_51_7113518.txt @@ -0,0 +1 @@ +6 0.367969 0.417314 0.373216 0.515742 0.612930 0.514424 0.600690 0.413379 0.366211 0.417314 diff --git a/datasets/xianshiping/train/labels/订单1807219_51_7113577.txt b/datasets/xianshiping/train/labels/订单1807219_51_7113577.txt new file mode 100644 index 0000000..429f276 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807219_51_7113577.txt @@ -0,0 +1 @@ +6 0.432589 0.553837 0.434339 0.622079 0.598817 0.624704 0.600567 0.548588 0.434339 0.553837 diff --git a/datasets/xianshiping/train/labels/订单1807221_51_7113552.txt b/datasets/xianshiping/train/labels/订单1807221_51_7113552.txt new file mode 100644 index 0000000..dce3137 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807221_51_7113552.txt @@ -0,0 +1 @@ +6 0.369606 0.517101 0.355602 0.616832 0.600567 0.626024 0.605822 0.521033 0.371354 0.518411 diff --git a/datasets/xianshiping/train/labels/订单1807224_51_7113585.txt b/datasets/xianshiping/train/labels/订单1807224_51_7113585.txt new file mode 100644 index 0000000..9b2fa92 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807224_51_7113585.txt @@ -0,0 +1 @@ +6 0.373187 0.455350 0.367947 0.551150 0.597160 0.548530 0.593667 0.448790 0.378440 0.454040 diff --git a/datasets/xianshiping/train/labels/订单1807226_51_7113749.txt b/datasets/xianshiping/train/labels/订单1807226_51_7113749.txt new file mode 100644 index 0000000..bc1e528 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807226_51_7113749.txt @@ -0,0 +1 @@ +6 0.201732 0.519678 0.243737 0.586602 0.413464 0.528857 0.369714 0.460625 0.201732 0.517051 diff --git a/datasets/xianshiping/train/labels/订单1807230_51_7113599.txt b/datasets/xianshiping/train/labels/订单1807230_51_7113599.txt new file mode 100644 index 0000000..8d5faf2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807230_51_7113599.txt @@ -0,0 +1 @@ +6 0.194622 0.431792 0.205117 0.509221 0.385344 0.505283 0.378344 0.418667 0.196367 0.427854 diff --git a/datasets/xianshiping/train/labels/订单1807231_51_7113614.txt b/datasets/xianshiping/train/labels/订单1807231_51_7113614.txt new file mode 100644 index 0000000..a60df00 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807231_51_7113614.txt @@ -0,0 +1 @@ +6 0.359765 0.591887 0.380435 0.875353 0.508385 0.854353 0.480825 0.565640 0.359765 0.589267 diff --git a/datasets/xianshiping/train/labels/订单1807232_51_7113683.txt b/datasets/xianshiping/train/labels/订单1807232_51_7113683.txt new file mode 100644 index 0000000..e1b7896 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807232_51_7113683.txt @@ -0,0 +1 @@ +6 0.327693 0.503910 0.325947 0.625960 0.597160 0.624650 0.595413 0.501290 0.331200 0.501290 diff --git a/datasets/xianshiping/train/labels/订单1807233_51_7113715.txt b/datasets/xianshiping/train/labels/订单1807233_51_7113715.txt new file mode 100644 index 0000000..73e837a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807233_51_7113715.txt @@ -0,0 +1 @@ +6 0.098492 0.598406 0.096742 0.782138 0.472942 0.770325 0.469442 0.606281 0.100242 0.599719 diff --git a/datasets/xianshiping/train/labels/订单1807236_51_7113782.txt b/datasets/xianshiping/train/labels/订单1807236_51_7113782.txt new file mode 100644 index 0000000..85b236e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807236_51_7113782.txt @@ -0,0 +1 @@ +6 0.567435 0.419941 0.563945 0.543301 0.842161 0.551172 0.843906 0.419941 0.574440 0.419941 diff --git a/datasets/xianshiping/train/labels/订单1807237_51_7113661.txt b/datasets/xianshiping/train/labels/订单1807237_51_7113661.txt new file mode 100644 index 0000000..de94b23 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807237_51_7113661.txt @@ -0,0 +1 @@ +6 0.196484 0.440937 0.177240 0.549863 0.448451 0.557734 0.458958 0.447500 0.198242 0.437002 diff --git a/datasets/xianshiping/train/labels/订单1807238_51_7113657.txt b/datasets/xianshiping/train/labels/订单1807238_51_7113657.txt new file mode 100644 index 0000000..3d53f65 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807238_51_7113657.txt @@ -0,0 +1 @@ +6 0.523698 0.620723 0.621680 0.658779 0.712669 0.543301 0.598932 0.494746 0.520195 0.616787 diff --git a/datasets/xianshiping/train/labels/订单1807240_51_7113721.txt b/datasets/xianshiping/train/labels/订单1807240_51_7113721.txt new file mode 100644 index 0000000..4fb5d3e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807240_51_7113721.txt @@ -0,0 +1 @@ +6 0.584935 0.464561 0.574440 0.545918 0.759922 0.553799 0.763411 0.473740 0.581445 0.460625 diff --git a/datasets/xianshiping/train/labels/订单1807242_51_7113761.txt b/datasets/xianshiping/train/labels/订单1807242_51_7113761.txt new file mode 100644 index 0000000..934e06f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807242_51_7113761.txt @@ -0,0 +1 @@ +6 0.398734 0.517056 0.375262 0.581362 0.645207 0.603672 0.662806 0.531489 0.404607 0.520991 diff --git a/datasets/xianshiping/train/labels/订单1807245_51_7113816.txt b/datasets/xianshiping/train/labels/订单1807245_51_7113816.txt new file mode 100644 index 0000000..ecc622a --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807245_51_7113816.txt @@ -0,0 +1 @@ +6 0.438359 0.416003 0.408113 0.469810 0.570982 0.492119 0.608221 0.434377 0.447669 0.414697 diff --git a/datasets/xianshiping/train/labels/订单1807246_51_7113791.txt b/datasets/xianshiping/train/labels/订单1807246_51_7113791.txt new file mode 100644 index 0000000..3a240c1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807246_51_7113791.txt @@ -0,0 +1 @@ +6 0.299727 0.468496 0.290977 0.564297 0.509701 0.565605 0.506198 0.471123 0.299727 0.464561 diff --git a/datasets/xianshiping/train/labels/订单1807248_51_7113945.txt b/datasets/xianshiping/train/labels/订单1807248_51_7113945.txt new file mode 100644 index 0000000..d34fae7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807248_51_7113945.txt @@ -0,0 +1 @@ +6 0.285729 0.489492 0.294479 0.586602 0.535951 0.573486 0.525443 0.475059 0.282227 0.486865 diff --git a/datasets/xianshiping/train/labels/订单1807251_51_7113927.txt b/datasets/xianshiping/train/labels/订单1807251_51_7113927.txt new file mode 100644 index 0000000..7b0f1f9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807251_51_7113927.txt @@ -0,0 +1 @@ +6 0.380208 0.455371 0.367969 0.583984 0.633932 0.604980 0.640938 0.481621 0.380221 0.452744 diff --git a/datasets/xianshiping/train/labels/订单1807252_51_7113872.txt b/datasets/xianshiping/train/labels/订单1807252_51_7113872.txt new file mode 100644 index 0000000..5128339 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807252_51_7113872.txt @@ -0,0 +1 @@ +6 0.609440 0.447500 0.618190 0.551172 0.873659 0.549863 0.864909 0.438311 0.616432 0.443564 diff --git a/datasets/xianshiping/train/labels/订单1807253_51_7113859.txt b/datasets/xianshiping/train/labels/订单1807253_51_7113859.txt new file mode 100644 index 0000000..9896712 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807253_51_7113859.txt @@ -0,0 +1 @@ +6 0.425716 0.419941 0.418711 0.482930 0.576185 0.482930 0.572695 0.418623 0.425703 0.422559 diff --git a/datasets/xianshiping/train/labels/订单1807255_51_7113891.txt b/datasets/xianshiping/train/labels/订单1807255_51_7113891.txt new file mode 100644 index 0000000..6dbf440 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807255_51_7113891.txt @@ -0,0 +1 @@ +6 0.409961 0.510488 0.397708 0.618105 0.625182 0.627285 0.628685 0.523613 0.411706 0.510488 diff --git a/datasets/xianshiping/train/labels/订单1807259_51_7113928.txt b/datasets/xianshiping/train/labels/订单1807259_51_7113928.txt new file mode 100644 index 0000000..d7eebfe --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807259_51_7113928.txt @@ -0,0 +1 @@ +6 0.476427 0.438290 0.444933 0.541970 0.695147 0.576090 0.716147 0.463230 0.486933 0.436980 diff --git a/datasets/xianshiping/train/labels/订单1807260_51_7114022.txt b/datasets/xianshiping/train/labels/订单1807260_51_7114022.txt new file mode 100644 index 0000000..d3c78ee --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807260_51_7114022.txt @@ -0,0 +1 @@ +6 0.451839 0.561712 0.455339 0.648325 0.660061 0.650950 0.653061 0.559087 0.450089 0.561712 diff --git a/datasets/xianshiping/train/labels/订单1807262_51_7113998.txt b/datasets/xianshiping/train/labels/订单1807262_51_7113998.txt new file mode 100644 index 0000000..125987f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807262_51_7113998.txt @@ -0,0 +1 @@ +6 0.492173 0.360870 0.497427 0.444860 0.714400 0.436980 0.695147 0.343810 0.486933 0.362180 diff --git a/datasets/xianshiping/train/labels/订单1807265_51_7114041.txt b/datasets/xianshiping/train/labels/订单1807265_51_7114041.txt new file mode 100644 index 0000000..e85d244 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807265_51_7114041.txt @@ -0,0 +1 @@ +6 0.364200 0.612887 0.369447 0.678507 0.490187 0.658820 0.486247 0.594513 0.365513 0.605013 diff --git a/datasets/xianshiping/train/labels/订单1807271_51_7114136.txt b/datasets/xianshiping/train/labels/订单1807271_51_7114136.txt new file mode 100644 index 0000000..fa3a1e5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807271_51_7114136.txt @@ -0,0 +1 @@ +6 0.274360 0.360891 0.255110 0.497370 0.638316 0.498685 0.629562 0.351704 0.270865 0.358261 diff --git a/datasets/xianshiping/train/labels/订单1807281_51_7114155.txt b/datasets/xianshiping/train/labels/订单1807281_51_7114155.txt new file mode 100644 index 0000000..8771d0d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807281_51_7114155.txt @@ -0,0 +1 @@ +6 0.496712 0.565612 0.470469 0.654850 0.621387 0.696842 0.648945 0.607604 0.500651 0.562988 diff --git a/datasets/xianshiping/train/labels/订单1807284_51_7114318.txt b/datasets/xianshiping/train/labels/订单1807284_51_7114318.txt new file mode 100644 index 0000000..2cef754 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807284_51_7114318.txt @@ -0,0 +1 @@ +6 0.566471 0.290067 0.556625 0.535478 0.664896 0.542039 0.681625 0.295317 0.568438 0.290072 diff --git a/datasets/xianshiping/train/labels/订单1807286_51_7114197.txt b/datasets/xianshiping/train/labels/订单1807286_51_7114197.txt new file mode 100644 index 0000000..d8d3ad5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807286_51_7114197.txt @@ -0,0 +1 @@ +6 0.316222 0.640451 0.358222 0.733627 0.576941 0.674569 0.527948 0.570902 0.310980 0.631265 diff --git a/datasets/xianshiping/train/labels/订单1807288_51_7114663.txt b/datasets/xianshiping/train/labels/订单1807288_51_7114663.txt new file mode 100644 index 0000000..f4179ad --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807288_51_7114663.txt @@ -0,0 +1 @@ +6 0.243590 0.577442 0.276833 0.683740 0.506051 0.631250 0.465808 0.528885 0.240090 0.573510 diff --git a/datasets/xianshiping/train/labels/订单1807292_51_7114224.txt b/datasets/xianshiping/train/labels/订单1807292_51_7114224.txt new file mode 100644 index 0000000..15829c1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807292_51_7114224.txt @@ -0,0 +1 @@ +6 0.435216 0.454098 0.450954 0.535461 0.666183 0.505284 0.638183 0.416039 0.440458 0.456725 diff --git a/datasets/xianshiping/train/labels/订单1807296_51_7114313.txt b/datasets/xianshiping/train/labels/订单1807296_51_7114313.txt new file mode 100644 index 0000000..0f24de1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807296_51_7114313.txt @@ -0,0 +1 @@ +6 0.371374 0.459375 0.353874 0.552544 0.584854 0.566985 0.590102 0.467248 0.371374 0.463311 diff --git a/datasets/xianshiping/train/labels/订单1807299_51_7114302.txt b/datasets/xianshiping/train/labels/订单1807299_51_7114302.txt new file mode 100644 index 0000000..7a45801 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807299_51_7114302.txt @@ -0,0 +1 @@ +6 0.439485 0.367477 0.433578 0.698183 0.596966 0.698183 0.599917 0.376660 0.443422 0.368784 diff --git a/datasets/xianshiping/train/labels/订单1807304_51_7114340.txt b/datasets/xianshiping/train/labels/订单1807304_51_7114340.txt new file mode 100644 index 0000000..28f94a9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807304_51_7114340.txt @@ -0,0 +1 @@ +6 0.427440 0.573460 0.392440 0.624650 0.527173 0.662700 0.555173 0.602340 0.429187 0.568210 diff --git a/datasets/xianshiping/train/labels/订单1807305_51_7114437.txt b/datasets/xianshiping/train/labels/订单1807305_51_7114437.txt new file mode 100644 index 0000000..d49272f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807305_51_7114437.txt @@ -0,0 +1 @@ +6 0.369714 0.582666 0.364466 0.666660 0.555195 0.669277 0.563945 0.576104 0.366211 0.581357 diff --git a/datasets/xianshiping/train/labels/订单1807307_51_7114368.txt b/datasets/xianshiping/train/labels/订单1807307_51_7114368.txt new file mode 100644 index 0000000..e82412c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807307_51_7114368.txt @@ -0,0 +1 @@ +6 0.438481 0.171908 0.454229 0.402884 0.554619 0.396322 0.543794 0.169284 0.439463 0.174538 diff --git a/datasets/xianshiping/train/labels/订单1807311_51_7114483.txt b/datasets/xianshiping/train/labels/订单1807311_51_7114483.txt new file mode 100644 index 0000000..227ceda --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807311_51_7114483.txt @@ -0,0 +1 @@ +6 0.479833 0.248063 0.479833 0.338617 0.721306 0.360925 0.710806 0.259875 0.488583 0.246750 diff --git a/datasets/xianshiping/train/labels/订单1807312_51_7114460.txt b/datasets/xianshiping/train/labels/订单1807312_51_7114460.txt new file mode 100644 index 0000000..601fd61 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807312_51_7114460.txt @@ -0,0 +1 @@ +6 0.546445 0.560361 0.528945 0.643037 0.728424 0.652227 0.731927 0.566924 0.546445 0.561670 diff --git a/datasets/xianshiping/train/labels/订单1807317_51_7114433.txt b/datasets/xianshiping/train/labels/订单1807317_51_7114433.txt new file mode 100644 index 0000000..40f5d16 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807317_51_7114433.txt @@ -0,0 +1 @@ +6 0.542943 0.402881 0.544701 0.489492 0.752917 0.492119 0.751172 0.400254 0.544701 0.402881 diff --git a/datasets/xianshiping/train/labels/订单1807318_51_7114408.txt b/datasets/xianshiping/train/labels/订单1807318_51_7114408.txt new file mode 100644 index 0000000..b74c302 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807318_51_7114408.txt @@ -0,0 +1 @@ +6 0.360964 0.486865 0.348724 0.598418 0.637435 0.590537 0.619935 0.478994 0.360964 0.484238 diff --git a/datasets/xianshiping/train/labels/订单1807319_51_7114509.txt b/datasets/xianshiping/train/labels/订单1807319_51_7114509.txt new file mode 100644 index 0000000..eacb933 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807319_51_7114509.txt @@ -0,0 +1 @@ +6 0.369714 0.564297 0.385469 0.639102 0.558698 0.640410 0.558698 0.551172 0.367969 0.568232 diff --git a/datasets/xianshiping/train/labels/订单1807320_51_7114495.txt b/datasets/xianshiping/train/labels/订单1807320_51_7114495.txt new file mode 100644 index 0000000..d18ea1c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807320_51_7114495.txt @@ -0,0 +1 @@ +6 0.392458 0.423869 0.388958 0.522294 0.607675 0.522294 0.602425 0.419931 0.395950 0.419931 diff --git a/datasets/xianshiping/train/labels/订单1807322_51_7114586.txt b/datasets/xianshiping/train/labels/订单1807322_51_7114586.txt new file mode 100644 index 0000000..ff06ecc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807322_51_7114586.txt @@ -0,0 +1 @@ +6 0.441458 0.448809 0.443203 0.527549 0.625182 0.528857 0.614687 0.452744 0.439714 0.448809 diff --git a/datasets/xianshiping/train/labels/订单1807323_51_7114599.txt b/datasets/xianshiping/train/labels/订单1807323_51_7114599.txt new file mode 100644 index 0000000..7d9d7a3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807323_51_7114599.txt @@ -0,0 +1 @@ +6 0.317227 0.316260 0.313724 0.444873 0.630430 0.443564 0.612930 0.324141 0.322474 0.316260 diff --git a/datasets/xianshiping/train/labels/订单1807326_51_7114625.txt b/datasets/xianshiping/train/labels/订单1807326_51_7114625.txt new file mode 100644 index 0000000..dbce800 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807326_51_7114625.txt @@ -0,0 +1 @@ +6 0.322474 0.545918 0.304974 0.648281 0.549948 0.664033 0.551693 0.555107 0.327721 0.545918 diff --git a/datasets/xianshiping/train/labels/订单1807329_51_7114657.txt b/datasets/xianshiping/train/labels/订单1807329_51_7114657.txt new file mode 100644 index 0000000..430bd66 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807329_51_7114657.txt @@ -0,0 +1 @@ +6 0.569173 0.633830 0.546427 0.688950 0.714400 0.728320 0.731893 0.661390 0.581413 0.632520 diff --git a/datasets/xianshiping/train/labels/订单1807331_51_7114848.txt b/datasets/xianshiping/train/labels/订单1807331_51_7114848.txt new file mode 100644 index 0000000..035b84c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807331_51_7114848.txt @@ -0,0 +1 @@ +6 0.443187 0.526220 0.444933 0.601020 0.605920 0.595770 0.597160 0.522280 0.444933 0.524910 diff --git a/datasets/xianshiping/train/labels/订单1807337_51_7114881.txt b/datasets/xianshiping/train/labels/订单1807337_51_7114881.txt new file mode 100644 index 0000000..9ac54e6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807337_51_7114881.txt @@ -0,0 +1 @@ +6 0.570937 0.429121 0.563945 0.536738 0.856159 0.535420 0.849154 0.416006 0.572695 0.427812 diff --git a/datasets/xianshiping/train/labels/订单1807342_51_7114751.txt b/datasets/xianshiping/train/labels/订单1807342_51_7114751.txt new file mode 100644 index 0000000..8f288c6 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807342_51_7114751.txt @@ -0,0 +1 @@ +6 0.332880 0.427873 0.345132 0.527610 0.584854 0.513180 0.569094 0.404254 0.334635 0.425252 diff --git a/datasets/xianshiping/train/labels/订单1807343_51_7114747.txt b/datasets/xianshiping/train/labels/订单1807343_51_7114747.txt new file mode 100644 index 0000000..af0b8b7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807343_51_7114747.txt @@ -0,0 +1 @@ +6 0.268165 0.400917 0.303165 0.509840 0.591981 0.446849 0.548218 0.347119 0.266410 0.398295 diff --git a/datasets/xianshiping/train/labels/订单1807349_51_7114675.txt b/datasets/xianshiping/train/labels/订单1807349_51_7114675.txt new file mode 100644 index 0000000..79b4893 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807349_51_7114675.txt @@ -0,0 +1 @@ +6 0.436211 0.565605 0.441458 0.658779 0.660182 0.653535 0.660182 0.552480 0.436211 0.562979 diff --git a/datasets/xianshiping/train/labels/订单1807350_51_7114761.txt b/datasets/xianshiping/train/labels/订单1807350_51_7114761.txt new file mode 100644 index 0000000..f8efee2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807350_51_7114761.txt @@ -0,0 +1 @@ +6 0.499206 0.481621 0.486953 0.568232 0.693424 0.583984 0.691680 0.493428 0.500951 0.475059 diff --git a/datasets/xianshiping/train/labels/订单1807354_51_7114805.txt b/datasets/xianshiping/train/labels/订单1807354_51_7114805.txt new file mode 100644 index 0000000..41ae921 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807354_51_7114805.txt @@ -0,0 +1 @@ +6 0.465951 0.538047 0.446706 0.628604 0.670677 0.654844 0.679427 0.557734 0.465951 0.536738 diff --git a/datasets/xianshiping/train/labels/订单1807356_51_7114884.txt b/datasets/xianshiping/train/labels/订单1807356_51_7114884.txt new file mode 100644 index 0000000..0efdf9d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807356_51_7114884.txt @@ -0,0 +1 @@ +6 0.464206 0.534111 0.425703 0.611543 0.616432 0.650908 0.639180 0.570859 0.462461 0.535420 diff --git a/datasets/xianshiping/train/labels/订单1807358_51_7114911.txt b/datasets/xianshiping/train/labels/订单1807358_51_7114911.txt new file mode 100644 index 0000000..28d0697 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807358_51_7114911.txt @@ -0,0 +1 @@ +6 0.588413 0.331990 0.527173 0.473730 0.651413 0.497350 0.707400 0.360870 0.597160 0.334620 diff --git a/datasets/xianshiping/train/labels/订单1807365_51_7114899.txt b/datasets/xianshiping/train/labels/订单1807365_51_7114899.txt new file mode 100644 index 0000000..01aceed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807365_51_7114899.txt @@ -0,0 +1 @@ +6 0.370471 0.548588 0.384471 0.648324 0.618941 0.632578 0.604941 0.531529 0.361725 0.548588 diff --git a/datasets/xianshiping/train/labels/订单1807366_51_7114944.txt b/datasets/xianshiping/train/labels/订单1807366_51_7114944.txt new file mode 100644 index 0000000..3fdad25 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807366_51_7114944.txt @@ -0,0 +1 @@ +6 0.406440 0.427790 0.439680 0.566900 0.695147 0.532780 0.663653 0.414670 0.411693 0.425170 diff --git a/datasets/xianshiping/train/labels/订单1807368_51_7115023.txt b/datasets/xianshiping/train/labels/订单1807368_51_7115023.txt new file mode 100644 index 0000000..f68aa4c --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807368_51_7115023.txt @@ -0,0 +1 @@ +6 0.618160 0.706010 0.618160 0.833310 0.716147 0.828060 0.717893 0.695510 0.616413 0.702070 diff --git a/datasets/xianshiping/train/labels/订单1807371_51_7115058.txt b/datasets/xianshiping/train/labels/订单1807371_51_7115058.txt new file mode 100644 index 0000000..a553e55 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807371_51_7115058.txt @@ -0,0 +1 @@ +6 0.294479 0.573486 0.282227 0.661406 0.499206 0.669277 0.500951 0.573486 0.299727 0.569541 diff --git a/datasets/xianshiping/train/labels/订单1807374_51_7114939.txt b/datasets/xianshiping/train/labels/订单1807374_51_7114939.txt new file mode 100644 index 0000000..e94013b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807374_51_7114939.txt @@ -0,0 +1 @@ +6 0.387214 0.375322 0.371471 0.457998 0.583190 0.476367 0.590195 0.381885 0.381966 0.374004 diff --git a/datasets/xianshiping/train/labels/订单1807377_51_7115068.txt b/datasets/xianshiping/train/labels/订单1807377_51_7115068.txt new file mode 100644 index 0000000..a7ccf22 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807377_51_7115068.txt @@ -0,0 +1 @@ +6 0.325856 0.383233 0.264611 0.501346 0.646061 0.557775 0.670561 0.427854 0.331100 0.379300 diff --git a/datasets/xianshiping/train/labels/订单1807378_51_7115179.txt b/datasets/xianshiping/train/labels/订单1807378_51_7115179.txt new file mode 100644 index 0000000..9195fe1 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807378_51_7115179.txt @@ -0,0 +1 @@ +6 0.509701 0.397627 0.516693 0.514424 0.829909 0.517051 0.810664 0.388437 0.507943 0.400254 diff --git a/datasets/xianshiping/train/labels/订单1807381_51_7115096.txt b/datasets/xianshiping/train/labels/订单1807381_51_7115096.txt new file mode 100644 index 0000000..5a2d6b3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807381_51_7115096.txt @@ -0,0 +1 @@ +6 0.437847 0.389800 0.434340 0.461979 0.600567 0.464601 0.602326 0.388490 0.439595 0.392422 diff --git a/datasets/xianshiping/train/labels/订单1807385_51_7115103.txt b/datasets/xianshiping/train/labels/订单1807385_51_7115103.txt new file mode 100644 index 0000000..12154a2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807385_51_7115103.txt @@ -0,0 +1 @@ +6 0.349922 0.534105 0.352844 0.603660 0.641556 0.616785 0.647389 0.536730 0.355756 0.535420 diff --git a/datasets/xianshiping/train/labels/订单1807386_51_7115174.txt b/datasets/xianshiping/train/labels/订单1807386_51_7115174.txt new file mode 100644 index 0000000..fabe927 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807386_51_7115174.txt @@ -0,0 +1 @@ +6 0.324193 0.565585 0.310185 0.662698 0.535913 0.670565 0.539418 0.568204 0.327685 0.564266 diff --git a/datasets/xianshiping/train/labels/订单1807387_51_7115119.txt b/datasets/xianshiping/train/labels/订单1807387_51_7115119.txt new file mode 100644 index 0000000..d3c2554 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807387_51_7115119.txt @@ -0,0 +1 @@ +6 0.471777 0.421257 0.470469 0.545924 0.545267 0.548548 0.551829 0.425189 0.478340 0.422565 diff --git a/datasets/xianshiping/train/labels/订单1807388_51_7115158.txt b/datasets/xianshiping/train/labels/订单1807388_51_7115158.txt new file mode 100644 index 0000000..a5ed455 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807388_51_7115158.txt @@ -0,0 +1 @@ +6 0.380967 0.245441 0.354719 0.350422 0.601438 0.380608 0.624183 0.263814 0.387974 0.241500 diff --git a/datasets/xianshiping/train/labels/订单1807390_51_7115204.txt b/datasets/xianshiping/train/labels/订单1807390_51_7115204.txt new file mode 100644 index 0000000..16ffede --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807390_51_7115204.txt @@ -0,0 +1 @@ +6 0.566574 0.253279 0.521084 0.381886 0.886782 0.468503 0.909527 0.320208 0.568328 0.251964 diff --git a/datasets/xianshiping/train/labels/订单1807393_51_7115228.txt b/datasets/xianshiping/train/labels/订单1807393_51_7115228.txt new file mode 100644 index 0000000..39ee452 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807393_51_7115228.txt @@ -0,0 +1 @@ +6 0.427440 0.519660 0.437933 0.611520 0.632160 0.597090 0.611160 0.509160 0.427440 0.519660 diff --git a/datasets/xianshiping/train/labels/订单1807395_51_7115255.txt b/datasets/xianshiping/train/labels/订单1807395_51_7115255.txt new file mode 100644 index 0000000..696c81f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807395_51_7115255.txt @@ -0,0 +1 @@ +6 0.247154 0.526909 0.318923 0.631894 0.555213 0.546590 0.479947 0.446849 0.250652 0.524277 diff --git a/datasets/xianshiping/train/labels/订单1807396_51_7115232.txt b/datasets/xianshiping/train/labels/订单1807396_51_7115232.txt new file mode 100644 index 0000000..435871b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807396_51_7115232.txt @@ -0,0 +1 @@ +6 0.367969 0.523613 0.348724 0.610225 0.539440 0.635166 0.563945 0.540674 0.373216 0.520986 diff --git a/datasets/xianshiping/train/labels/订单1807399_51_7115284.txt b/datasets/xianshiping/train/labels/订单1807399_51_7115284.txt new file mode 100644 index 0000000..05c49d3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807399_51_7115284.txt @@ -0,0 +1 @@ +6 0.373216 0.499990 0.367969 0.590537 0.577943 0.595791 0.570937 0.501299 0.376719 0.499990 diff --git a/datasets/xianshiping/train/labels/订单1807401_51_7115294.txt b/datasets/xianshiping/train/labels/订单1807401_51_7115294.txt new file mode 100644 index 0000000..41c50ce --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807401_51_7115294.txt @@ -0,0 +1 @@ +6 0.365941 0.527545 0.354281 0.603660 0.575728 0.611535 0.589716 0.528860 0.363606 0.527545 diff --git a/datasets/xianshiping/train/labels/订单1807404_51_7115386.txt b/datasets/xianshiping/train/labels/订单1807404_51_7115386.txt new file mode 100644 index 0000000..881a701 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807404_51_7115386.txt @@ -0,0 +1 @@ +6 0.152747 0.325449 0.150990 0.385820 0.296224 0.385820 0.292721 0.321514 0.156237 0.322822 diff --git a/datasets/xianshiping/train/labels/订单1807405_51_7115359.txt b/datasets/xianshiping/train/labels/订单1807405_51_7115359.txt new file mode 100644 index 0000000..3281385 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807405_51_7115359.txt @@ -0,0 +1 @@ +6 0.355693 0.492100 0.338200 0.601020 0.605920 0.614150 0.614667 0.501290 0.350440 0.488160 diff --git a/datasets/xianshiping/train/labels/订单1807408_51_7115322.txt b/datasets/xianshiping/train/labels/订单1807408_51_7115322.txt new file mode 100644 index 0000000..ce40367 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807408_51_7115322.txt @@ -0,0 +1 @@ +6 0.528998 0.548610 0.527029 0.809761 0.663794 0.815013 0.656909 0.556483 0.532931 0.544674 diff --git a/datasets/xianshiping/train/labels/订单1807410_51_7115405.txt b/datasets/xianshiping/train/labels/订单1807410_51_7115405.txt new file mode 100644 index 0000000..7191ef9 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807410_51_7115405.txt @@ -0,0 +1 @@ +6 0.527078 0.332054 0.535828 0.447537 0.787794 0.443604 0.787794 0.324179 0.525328 0.333367 diff --git a/datasets/xianshiping/train/labels/订单1807411_51_7115351.txt b/datasets/xianshiping/train/labels/订单1807411_51_7115351.txt new file mode 100644 index 0000000..0a52157 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807411_51_7115351.txt @@ -0,0 +1 @@ +6 0.439463 0.364824 0.419780 0.594479 0.522139 0.599733 0.534937 0.376634 0.442417 0.368763 diff --git a/datasets/xianshiping/train/labels/订单1807412_51_7115406.txt b/datasets/xianshiping/train/labels/订单1807412_51_7115406.txt new file mode 100644 index 0000000..cdd4c07 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807412_51_7115406.txt @@ -0,0 +1 @@ +6 0.388851 0.368804 0.371351 0.430485 0.562083 0.451487 0.567328 0.379300 0.388851 0.368804 diff --git a/datasets/xianshiping/train/labels/订单1807414_51_7115431.txt b/datasets/xianshiping/train/labels/订单1807414_51_7115431.txt new file mode 100644 index 0000000..b164318 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807414_51_7115431.txt @@ -0,0 +1 @@ +6 0.079258 0.443564 0.103750 0.518359 0.290977 0.484238 0.257734 0.400254 0.077500 0.437002 diff --git a/datasets/xianshiping/train/labels/订单1807416_51_7115422.txt b/datasets/xianshiping/train/labels/订单1807416_51_7115422.txt new file mode 100644 index 0000000..cd05409 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807416_51_7115422.txt @@ -0,0 +1 @@ +6 0.430933 0.409420 0.436187 0.488160 0.649653 0.475040 0.633907 0.389740 0.430933 0.409420 diff --git a/datasets/xianshiping/train/labels/订单1807419_51_7115476.txt b/datasets/xianshiping/train/labels/订单1807419_51_7115476.txt new file mode 100644 index 0000000..a5091b3 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807419_51_7115476.txt @@ -0,0 +1 @@ +6 0.304106 0.430441 0.263864 0.553806 0.582318 0.597111 0.596321 0.461938 0.307601 0.430441 diff --git a/datasets/xianshiping/train/labels/订单1807420_51_7115500.txt b/datasets/xianshiping/train/labels/订单1807420_51_7115500.txt new file mode 100644 index 0000000..4bdfc78 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807420_51_7115500.txt @@ -0,0 +1 @@ +6 0.595351 0.397686 0.595351 0.467248 0.744079 0.464616 0.745833 0.391129 0.591842 0.397686 diff --git a/datasets/xianshiping/train/labels/订单1807421_51_7115464.txt b/datasets/xianshiping/train/labels/订单1807421_51_7115464.txt new file mode 100644 index 0000000..6baf19b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807421_51_7115464.txt @@ -0,0 +1 @@ +6 0.177240 0.509180 0.171992 0.589229 0.359219 0.598418 0.357474 0.517051 0.180742 0.509180 diff --git a/datasets/xianshiping/train/labels/订单1807423_51_7115489.txt b/datasets/xianshiping/train/labels/订单1807423_51_7115489.txt new file mode 100644 index 0000000..25ef182 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807423_51_7115489.txt @@ -0,0 +1 @@ +6 0.152622 0.460662 0.187622 0.540717 0.364350 0.507908 0.338100 0.427854 0.159622 0.459350 diff --git a/datasets/xianshiping/train/labels/订单1807425_51_7115538.txt b/datasets/xianshiping/train/labels/订单1807425_51_7115538.txt new file mode 100644 index 0000000..5bf248e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807425_51_7115538.txt @@ -0,0 +1 @@ +6 0.409933 0.402860 0.395933 0.520970 0.674160 0.532780 0.672400 0.410730 0.418693 0.402860 diff --git a/datasets/xianshiping/train/labels/订单1807430_51_7115559.txt b/datasets/xianshiping/train/labels/订单1807430_51_7115559.txt new file mode 100644 index 0000000..771f2a8 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807430_51_7115559.txt @@ -0,0 +1 @@ +6 0.486953 0.410752 0.488698 0.544609 0.791419 0.547236 0.794909 0.416006 0.492201 0.410752 diff --git a/datasets/xianshiping/train/labels/订单1807431_51_7115577.txt b/datasets/xianshiping/train/labels/订单1807431_51_7115577.txt new file mode 100644 index 0000000..1a2dc8f --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807431_51_7115577.txt @@ -0,0 +1 @@ +6 0.299727 0.513115 0.290977 0.611543 0.513203 0.615479 0.514948 0.519678 0.303229 0.513115 diff --git a/datasets/xianshiping/train/labels/订单1807433_51_7115601.txt b/datasets/xianshiping/train/labels/订单1807433_51_7115601.txt new file mode 100644 index 0000000..bd8950e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807433_51_7115601.txt @@ -0,0 +1 @@ +6 0.437956 0.405498 0.331224 0.460625 0.492201 0.591855 0.588438 0.526240 0.444961 0.405498 diff --git a/datasets/xianshiping/train/labels/订单1807435_51_7115592.txt b/datasets/xianshiping/train/labels/订单1807435_51_7115592.txt new file mode 100644 index 0000000..4af16ed --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807435_51_7115592.txt @@ -0,0 +1 @@ +6 0.589095 0.471153 0.609765 0.675880 0.706220 0.658820 0.687520 0.454093 0.590080 0.471153 diff --git a/datasets/xianshiping/train/labels/订单1807440_51_7115685.txt b/datasets/xianshiping/train/labels/订单1807440_51_7115685.txt new file mode 100644 index 0000000..b676348 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807440_51_7115685.txt @@ -0,0 +1 @@ +6 0.432718 0.481626 0.465964 0.572175 0.688187 0.518372 0.639193 0.429131 0.441468 0.481626 diff --git a/datasets/xianshiping/train/labels/订单1807446_51_7115659.txt b/datasets/xianshiping/train/labels/订单1807446_51_7115659.txt new file mode 100644 index 0000000..75220e7 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807446_51_7115659.txt @@ -0,0 +1 @@ +6 0.641068 0.435690 0.643691 0.590547 0.744746 0.587923 0.744746 0.430443 0.641068 0.434375 diff --git a/datasets/xianshiping/train/labels/订单1807447_51_7115697.txt b/datasets/xianshiping/train/labels/订单1807447_51_7115697.txt new file mode 100644 index 0000000..9d15538 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807447_51_7115697.txt @@ -0,0 +1 @@ +6 0.437956 0.489492 0.460703 0.643037 0.569193 0.633848 0.551693 0.481621 0.446706 0.489492 diff --git a/datasets/xianshiping/train/labels/订单1807448_51_7115789.txt b/datasets/xianshiping/train/labels/订单1807448_51_7115789.txt new file mode 100644 index 0000000..d2543dc --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807448_51_7115789.txt @@ -0,0 +1 @@ +6 0.409961 0.544609 0.413464 0.623350 0.598932 0.620723 0.595443 0.536738 0.415208 0.541982 diff --git a/datasets/xianshiping/train/labels/订单1807449_51_7115668.txt b/datasets/xianshiping/train/labels/订单1807449_51_7115668.txt new file mode 100644 index 0000000..f32ef3b --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807449_51_7115668.txt @@ -0,0 +1 @@ +6 0.415180 0.602341 0.434428 0.687635 0.633905 0.669265 0.621667 0.581336 0.420441 0.599706 diff --git a/datasets/xianshiping/train/labels/订单1807451_51_7115671.txt b/datasets/xianshiping/train/labels/订单1807451_51_7115671.txt new file mode 100644 index 0000000..f6dd622 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807451_51_7115671.txt @@ -0,0 +1 @@ +6 0.584054 0.380443 0.579510 0.508642 0.698264 0.521599 0.696966 0.384769 0.584054 0.373247 diff --git a/datasets/xianshiping/train/labels/订单1807455_51_7115711.txt b/datasets/xianshiping/train/labels/订单1807455_51_7115711.txt new file mode 100644 index 0000000..1ac7b2e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807455_51_7115711.txt @@ -0,0 +1 @@ +6 0.509680 0.513100 0.467680 0.614150 0.719653 0.660080 0.742400 0.549840 0.509680 0.509160 diff --git a/datasets/xianshiping/train/labels/订单1807459_51_7115757.txt b/datasets/xianshiping/train/labels/订单1807459_51_7115757.txt new file mode 100644 index 0000000..500d9ab --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807459_51_7115757.txt @@ -0,0 +1 @@ +6 0.350469 0.540674 0.336471 0.633848 0.537695 0.646973 0.544701 0.551172 0.348724 0.541982 diff --git a/datasets/xianshiping/train/labels/订单1807462_51_7115731.txt b/datasets/xianshiping/train/labels/订单1807462_51_7115731.txt new file mode 100644 index 0000000..a07b94d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807462_51_7115731.txt @@ -0,0 +1 @@ +6 0.327693 0.456670 0.334693 0.511780 0.483427 0.497350 0.472933 0.438290 0.325947 0.455350 diff --git a/datasets/xianshiping/train/labels/订单1807463_51_7115739.txt b/datasets/xianshiping/train/labels/订单1807463_51_7115739.txt new file mode 100644 index 0000000..bdc8191 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807463_51_7115739.txt @@ -0,0 +1 @@ +6 0.443268 0.431794 0.448503 0.518402 0.685547 0.510529 0.664622 0.418667 0.446758 0.431794 diff --git a/datasets/xianshiping/train/labels/订单1807466_51_7115795.txt b/datasets/xianshiping/train/labels/订单1807466_51_7115795.txt new file mode 100644 index 0000000..18ad4e4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807466_51_7115795.txt @@ -0,0 +1 @@ +6 0.346850 0.586646 0.327606 0.745442 0.696806 0.763813 0.698556 0.601083 0.345100 0.586646 diff --git a/datasets/xianshiping/train/labels/订单1807471_51_7116054.txt b/datasets/xianshiping/train/labels/订单1807471_51_7116054.txt new file mode 100644 index 0000000..9340161 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807471_51_7116054.txt @@ -0,0 +1 @@ +6 0.478173 0.450100 0.474680 0.551150 0.695147 0.573460 0.710907 0.467160 0.483427 0.450100 diff --git a/datasets/xianshiping/train/labels/订单1807472_51_7115781.txt b/datasets/xianshiping/train/labels/订单1807472_51_7115781.txt new file mode 100644 index 0000000..1d44e28 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807472_51_7115781.txt @@ -0,0 +1 @@ +6 0.255868 0.477726 0.245370 0.545964 0.422095 0.551215 0.423843 0.473793 0.255868 0.476415 diff --git a/datasets/xianshiping/train/labels/订单1807473_51_7115861.txt b/datasets/xianshiping/train/labels/订单1807473_51_7115861.txt new file mode 100644 index 0000000..ccf54dd --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807473_51_7115861.txt @@ -0,0 +1 @@ +6 0.420599 0.447500 0.404850 0.574798 0.606947 0.589232 0.614824 0.463249 0.421908 0.447500 diff --git a/datasets/xianshiping/train/labels/订单1807474_51_7115810.txt b/datasets/xianshiping/train/labels/订单1807474_51_7115810.txt new file mode 100644 index 0000000..e6fba63 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807474_51_7115810.txt @@ -0,0 +1 @@ +6 0.408216 0.419941 0.394219 0.503926 0.586693 0.514424 0.584935 0.431748 0.415208 0.417314 diff --git a/datasets/xianshiping/train/labels/订单1807475_51_7115914.txt b/datasets/xianshiping/train/labels/订单1807475_51_7115914.txt new file mode 100644 index 0000000..94f56c4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807475_51_7115914.txt @@ -0,0 +1 @@ +6 0.462461 0.486865 0.462461 0.591855 0.707422 0.591855 0.707422 0.485557 0.453711 0.484238 diff --git a/datasets/xianshiping/train/labels/订单1807476_51_7115863.txt b/datasets/xianshiping/train/labels/订单1807476_51_7115863.txt new file mode 100644 index 0000000..8d216b4 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807476_51_7115863.txt @@ -0,0 +1 @@ +6 0.492065 0.467827 0.460567 0.549191 0.651316 0.588559 0.681065 0.503258 0.504316 0.471761 diff --git a/datasets/xianshiping/train/labels/订单1807478_51_7115862.txt b/datasets/xianshiping/train/labels/订单1807478_51_7115862.txt new file mode 100644 index 0000000..f0b038d --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807478_51_7115862.txt @@ -0,0 +1 @@ +6 0.240234 0.576104 0.324219 0.644346 0.492201 0.544609 0.409961 0.469805 0.247227 0.580039 diff --git a/datasets/xianshiping/train/labels/订单1807479_51_7115927.txt b/datasets/xianshiping/train/labels/订单1807479_51_7115927.txt new file mode 100644 index 0000000..c351e27 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807479_51_7115927.txt @@ -0,0 +1 @@ +6 0.359100 0.476413 0.367850 0.557775 0.560322 0.544654 0.542828 0.460662 0.362600 0.476413 diff --git a/datasets/xianshiping/train/labels/订单1807481_51_7115895.txt b/datasets/xianshiping/train/labels/订单1807481_51_7115895.txt new file mode 100644 index 0000000..57d9dad --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807481_51_7115895.txt @@ -0,0 +1 @@ +6 0.392461 0.408125 0.373216 0.475059 0.514948 0.501299 0.542943 0.435684 0.390716 0.406816 diff --git a/datasets/xianshiping/train/labels/订单1807483_51_7116022.txt b/datasets/xianshiping/train/labels/订单1807483_51_7116022.txt new file mode 100644 index 0000000..73ed32e --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807483_51_7116022.txt @@ -0,0 +1 @@ +6 0.412471 0.496098 0.407216 0.591892 0.639935 0.587961 0.629438 0.492157 0.403712 0.494784 diff --git a/datasets/xianshiping/train/labels/订单1807487_51_7115978.txt b/datasets/xianshiping/train/labels/订单1807487_51_7115978.txt new file mode 100644 index 0000000..ce2f4b5 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807487_51_7115978.txt @@ -0,0 +1 @@ +6 0.243737 0.338574 0.238477 0.423877 0.453711 0.440937 0.453711 0.349072 0.245482 0.339883 diff --git a/datasets/xianshiping/train/labels/订单1807489_51_7115997.txt b/datasets/xianshiping/train/labels/订单1807489_51_7115997.txt new file mode 100644 index 0000000..e45bded --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807489_51_7115997.txt @@ -0,0 +1 @@ +6 0.284179 0.275596 0.288846 0.366149 0.547812 0.367462 0.557145 0.276909 0.288846 0.275596 diff --git a/datasets/xianshiping/train/labels/订单1807495_51_7116081.txt b/datasets/xianshiping/train/labels/订单1807495_51_7116081.txt new file mode 100644 index 0000000..ad3d034 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807495_51_7116081.txt @@ -0,0 +1 @@ +6 0.329466 0.477686 0.324219 0.549863 0.525443 0.548545 0.521953 0.467178 0.327721 0.477686 diff --git a/datasets/xianshiping/train/labels/订单1807496_51_7116067.txt b/datasets/xianshiping/train/labels/订单1807496_51_7116067.txt new file mode 100644 index 0000000..cd035d2 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807496_51_7116067.txt @@ -0,0 +1 @@ +6 0.602326 0.404236 0.579572 0.463290 0.738808 0.493472 0.766806 0.422604 0.607569 0.401615 diff --git a/datasets/xianshiping/train/labels/订单1807497_51_7116086.txt b/datasets/xianshiping/train/labels/订单1807497_51_7116086.txt new file mode 100644 index 0000000..8f0d735 --- /dev/null +++ b/datasets/xianshiping/train/labels/订单1807497_51_7116086.txt @@ -0,0 +1 @@ +6 0.364466 0.561670 0.367969 0.664033 0.593685 0.646973 0.584935 0.549863 0.367969 0.561670 diff --git a/datasets/xianshiping/val/images/订单1804264_51_7086683.jpg b/datasets/xianshiping/val/images/订单1804264_51_7086683.jpg new file mode 100644 index 0000000..a46dd46 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804264_51_7086683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5b993f0ba0c257198174339a21d95af9d785f35538d5c64ae6e7001e3de55a +size 94842 diff --git a/datasets/xianshiping/val/images/订单1804266_51_7086351.jpg b/datasets/xianshiping/val/images/订单1804266_51_7086351.jpg new file mode 100644 index 0000000..11babde --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804266_51_7086351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a26ea58dd356c85ece347c093731fcab2df74eee98926197ca715ad0179cc4 +size 115537 diff --git a/datasets/xianshiping/val/images/订单1804271_51_7086393.jpg b/datasets/xianshiping/val/images/订单1804271_51_7086393.jpg new file mode 100644 index 0000000..1063ec0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804271_51_7086393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91bf916b5340c48f59fa51121df0f2f1aa1010faea7d5ac7421374eabfe675a +size 254128 diff --git a/datasets/xianshiping/val/images/订单1804279_51_7086490.jpg b/datasets/xianshiping/val/images/订单1804279_51_7086490.jpg new file mode 100644 index 0000000..3aeefdf --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804279_51_7086490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687db145ecbaa564557e19a6201fe70e026185cb5fcbad3e6f97ba84b30dd350 +size 123992 diff --git a/datasets/xianshiping/val/images/订单1804280_51_7086504.jpg b/datasets/xianshiping/val/images/订单1804280_51_7086504.jpg new file mode 100644 index 0000000..83f93a2 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804280_51_7086504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f85421bb7b60495b564ce3796ae0d0dff85f6b1ee72c829ec360aa3f2c365e +size 125877 diff --git a/datasets/xianshiping/val/images/订单1804281_51_7086514.jpg b/datasets/xianshiping/val/images/订单1804281_51_7086514.jpg new file mode 100644 index 0000000..5d5475f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804281_51_7086514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347c2237e467389a6b57ee9baacee8fdfb97824458c6b866e5a8a0b9b1d67618 +size 153380 diff --git a/datasets/xianshiping/val/images/订单1804283_51_7086538.jpg b/datasets/xianshiping/val/images/订单1804283_51_7086538.jpg new file mode 100644 index 0000000..2931fd6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804283_51_7086538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2322a972519533e5671765f213fe73c3b000837f8c0d04820b355e36b4ef095 +size 141137 diff --git a/datasets/xianshiping/val/images/订单1804284_51_7086566.jpg b/datasets/xianshiping/val/images/订单1804284_51_7086566.jpg new file mode 100644 index 0000000..97470c1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804284_51_7086566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e671944731ef1d512fb6a68b348f282c1905b19db308219d399320fe50cdc6 +size 326718 diff --git a/datasets/xianshiping/val/images/订单1804288_51_7086560.jpg b/datasets/xianshiping/val/images/订单1804288_51_7086560.jpg new file mode 100644 index 0000000..f4ad56f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804288_51_7086560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408229cd521b3384e3c7860b8a253650e92bddc320ff24138983e158cc7d7513 +size 137667 diff --git a/datasets/xianshiping/val/images/订单1804296_51_7086646.jpg b/datasets/xianshiping/val/images/订单1804296_51_7086646.jpg new file mode 100644 index 0000000..010ee84 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804296_51_7086646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cc98d8ab6b1f5bf237efebe585cba3e06f274aae10fe3423d228fdb7e9f970 +size 150319 diff --git a/datasets/xianshiping/val/images/订单1804297_51_7086665.jpg b/datasets/xianshiping/val/images/订单1804297_51_7086665.jpg new file mode 100644 index 0000000..452bb61 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804297_51_7086665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4650c089c7ce615d8fd9cdc74c7f142eb5ba7cb088d4e5412dd6261d34e282e +size 102324 diff --git a/datasets/xianshiping/val/images/订单1804300_51_7086694.jpg b/datasets/xianshiping/val/images/订单1804300_51_7086694.jpg new file mode 100644 index 0000000..12eac1e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804300_51_7086694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f603a7d270b5aca0691a816cf9c7f9f38d4f416553dc6161c65f8d8b09aefe +size 87028 diff --git a/datasets/xianshiping/val/images/订单1804301_51_7086834.jpg b/datasets/xianshiping/val/images/订单1804301_51_7086834.jpg new file mode 100644 index 0000000..29bd81b --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804301_51_7086834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c79ac5617e99391c881f2b676bb467e4e4b4d7ff1a94ba2a8b86c5463e9c4ec +size 234305 diff --git a/datasets/xianshiping/val/images/订单1804303_51_7086722.jpg b/datasets/xianshiping/val/images/订单1804303_51_7086722.jpg new file mode 100644 index 0000000..e26b91c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804303_51_7086722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a0210bec396964974c5a0c801e3a98f12b759c0dee41cc80c4cc17b3e2b74a +size 504663 diff --git a/datasets/xianshiping/val/images/订单1804305_51_7086730.jpg b/datasets/xianshiping/val/images/订单1804305_51_7086730.jpg new file mode 100644 index 0000000..a8511ea --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804305_51_7086730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d594090144f131c997d26b173ffdec476d832c56f9c2b5ecaf742851030d2a4f +size 141688 diff --git a/datasets/xianshiping/val/images/订单1804307_51_7086734.jpg b/datasets/xianshiping/val/images/订单1804307_51_7086734.jpg new file mode 100644 index 0000000..42bb397 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804307_51_7086734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdae738c2b755f1b74eae3bdd60b31f11d707d8056a6da70669940aaabc176b +size 142521 diff --git a/datasets/xianshiping/val/images/订单1804310_51_7086877.jpg b/datasets/xianshiping/val/images/订单1804310_51_7086877.jpg new file mode 100644 index 0000000..87aba4a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804310_51_7086877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0392d538322512bec53f36e524a374f2f88b429132817044da27db1db9d044 +size 129429 diff --git a/datasets/xianshiping/val/images/订单1804312_51_7086770.jpg b/datasets/xianshiping/val/images/订单1804312_51_7086770.jpg new file mode 100644 index 0000000..cbb4836 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804312_51_7086770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16519746421823d3c848c7cb452ef15010ba9d0ab74f89671167e1111def441e +size 601340 diff --git a/datasets/xianshiping/val/images/订单1804316_51_7086793.jpg b/datasets/xianshiping/val/images/订单1804316_51_7086793.jpg new file mode 100644 index 0000000..1c5e809 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804316_51_7086793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ba87128a043b1bed9115c40e2debea8716563e748e644916b7ace009b8792b +size 128127 diff --git a/datasets/xianshiping/val/images/订单1804319_51_7086838.jpg b/datasets/xianshiping/val/images/订单1804319_51_7086838.jpg new file mode 100644 index 0000000..c006151 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804319_51_7086838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7a9dead3be29d4e27fd0834c15d3efd55c3855ea0a965b5c20fa2cb13984fe +size 169016 diff --git a/datasets/xianshiping/val/images/订单1804320_51_7086858.jpg b/datasets/xianshiping/val/images/订单1804320_51_7086858.jpg new file mode 100644 index 0000000..2a8daf0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804320_51_7086858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b679a27123de5c62f43247111df9ff20778f55fb857651f4e851e8c9e6f71323 +size 535313 diff --git a/datasets/xianshiping/val/images/订单1804322_51_7086804.jpg b/datasets/xianshiping/val/images/订单1804322_51_7086804.jpg new file mode 100644 index 0000000..fee5da0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804322_51_7086804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0566c9c6b8d106baecd089b872f038b1180475cac72ab28cf7fa47b1e816472d +size 139482 diff --git a/datasets/xianshiping/val/images/订单1804329_51_7086883.jpg b/datasets/xianshiping/val/images/订单1804329_51_7086883.jpg new file mode 100644 index 0000000..db00f6e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804329_51_7086883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3735ea89f4a9f7f9c62dabfde8ab4708247092129774044849e484b1d2c2acd2 +size 108058 diff --git a/datasets/xianshiping/val/images/订单1804330_51_7086948.jpg b/datasets/xianshiping/val/images/订单1804330_51_7086948.jpg new file mode 100644 index 0000000..f26e181 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804330_51_7086948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b2d23a48c8d3c2ef9378226039552237eca9be44e2b2ede478b727f3c2406d +size 146446 diff --git a/datasets/xianshiping/val/images/订单1804345_51_7087222.jpg b/datasets/xianshiping/val/images/订单1804345_51_7087222.jpg new file mode 100644 index 0000000..8a9b2c1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804345_51_7087222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed26562266a8f3f339744af33485b500bcf0347f57d19103b21222b0e1d0c15b +size 534835 diff --git a/datasets/xianshiping/val/images/订单1804348_51_7086990.jpg b/datasets/xianshiping/val/images/订单1804348_51_7086990.jpg new file mode 100644 index 0000000..40ed1e9 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804348_51_7086990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38704e90f414c8eb17a8717d97e0a1dbb85ce87cced84bb32a36e9d00d1b8b5 +size 543590 diff --git a/datasets/xianshiping/val/images/订单1804351_51_7087028.jpg b/datasets/xianshiping/val/images/订单1804351_51_7087028.jpg new file mode 100644 index 0000000..a582646 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804351_51_7087028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8c891c3b6481cd46eaf160e40632d284f278911dad9d364c864e8fe59b4e0a +size 135262 diff --git a/datasets/xianshiping/val/images/订单1804354_51_7087141.jpg b/datasets/xianshiping/val/images/订单1804354_51_7087141.jpg new file mode 100644 index 0000000..2696856 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804354_51_7087141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b686b17f332c41b7c707c6ba3c9c783e91e889701252e813ccb0d56dc5e36a +size 122551 diff --git a/datasets/xianshiping/val/images/订单1804355_51_7087137.jpg b/datasets/xianshiping/val/images/订单1804355_51_7087137.jpg new file mode 100644 index 0000000..f117f69 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804355_51_7087137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67d4ddf800c1be9a099d7877aa6b3171c2f400b51f678782b30fdcc56d17ec7 +size 462765 diff --git a/datasets/xianshiping/val/images/订单1804356_51_7087113.jpg b/datasets/xianshiping/val/images/订单1804356_51_7087113.jpg new file mode 100644 index 0000000..2ed0cd8 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804356_51_7087113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048ef7ceedb35d292fd66246c5d19a918bb1195123af631dd72ca92b240d588b +size 138287 diff --git a/datasets/xianshiping/val/images/订单1804357_51_7087171.jpg b/datasets/xianshiping/val/images/订单1804357_51_7087171.jpg new file mode 100644 index 0000000..f9d69eb --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804357_51_7087171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd0f26e5a101e0d5753e5939a8e96912c697746f22352537abe846d4950902d +size 118915 diff --git a/datasets/xianshiping/val/images/订单1804358_51_7087420.jpg b/datasets/xianshiping/val/images/订单1804358_51_7087420.jpg new file mode 100644 index 0000000..136f93c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804358_51_7087420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfc02d694217b93f2affa9d0adbfc3f57bcfc59b6df6dd7415e5394c876bbc1 +size 618160 diff --git a/datasets/xianshiping/val/images/订单1804361_51_7087277.jpg b/datasets/xianshiping/val/images/订单1804361_51_7087277.jpg new file mode 100644 index 0000000..9f38078 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804361_51_7087277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c881d98938227bceb91e752a046b9b2b4da2911f5b2c73ae16dc7021d32d856 +size 151911 diff --git a/datasets/xianshiping/val/images/订单1804364_51_7087186.jpg b/datasets/xianshiping/val/images/订单1804364_51_7087186.jpg new file mode 100644 index 0000000..6a37f80 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804364_51_7087186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfd748719a2167ab58876a1882d17070b7173fec3f509d60b64ab13954ad816 +size 146932 diff --git a/datasets/xianshiping/val/images/订单1804365_51_7087279.jpg b/datasets/xianshiping/val/images/订单1804365_51_7087279.jpg new file mode 100644 index 0000000..fe81653 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804365_51_7087279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c7a596a83e2c987c93302434611fb9903bde9c8e245ee0ab428268be5de118 +size 147798 diff --git a/datasets/xianshiping/val/images/订单1804368_51_7087281.jpg b/datasets/xianshiping/val/images/订单1804368_51_7087281.jpg new file mode 100644 index 0000000..5881c65 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804368_51_7087281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67333fd97e4c33be64b337bdb964fd6323b5fdd7e184fc2fe63f44950b3ce2fc +size 96237 diff --git a/datasets/xianshiping/val/images/订单1804374_51_7087324.jpg b/datasets/xianshiping/val/images/订单1804374_51_7087324.jpg new file mode 100644 index 0000000..f8a201f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804374_51_7087324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a817c54e6dd39b0452a04a50d8105aaab049ef803be700334bb13ab121310933 +size 144809 diff --git a/datasets/xianshiping/val/images/订单1804380_51_7087338.jpg b/datasets/xianshiping/val/images/订单1804380_51_7087338.jpg new file mode 100644 index 0000000..242b768 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804380_51_7087338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e288f36c42dbb792da764e568f4426d499ebbd2e105441c1512e3fdf168e1d2 +size 173137 diff --git a/datasets/xianshiping/val/images/订单1804383_51_7087409.jpg b/datasets/xianshiping/val/images/订单1804383_51_7087409.jpg new file mode 100644 index 0000000..b539203 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804383_51_7087409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b8045cc731d71b0c6b7a908e3bfd67f3482601b6831f3e38d1fad065f7e7a7 +size 589730 diff --git a/datasets/xianshiping/val/images/订单1804384_51_7087390.jpg b/datasets/xianshiping/val/images/订单1804384_51_7087390.jpg new file mode 100644 index 0000000..9a7d3a6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804384_51_7087390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3674357934a8f2ff3826ea35300a47a26f63084dbc52b248f4daccd5378b2ef4 +size 168762 diff --git a/datasets/xianshiping/val/images/订单1804385_51_7087531.jpg b/datasets/xianshiping/val/images/订单1804385_51_7087531.jpg new file mode 100644 index 0000000..9b07dc1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804385_51_7087531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95534f772121c7ebe5e56b0d3a2ae53f3aa1d2b4b7a43ba996d3f3299b00de63 +size 141817 diff --git a/datasets/xianshiping/val/images/订单1804387_51_7087408.jpg b/datasets/xianshiping/val/images/订单1804387_51_7087408.jpg new file mode 100644 index 0000000..4551cec --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804387_51_7087408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6de09a559e7cd7e6d811c6519af6f31aefa07aa248a8b2f2cbf7b7cb388d78 +size 688014 diff --git a/datasets/xianshiping/val/images/订单1804388_51_7087485.jpg b/datasets/xianshiping/val/images/订单1804388_51_7087485.jpg new file mode 100644 index 0000000..3466340 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804388_51_7087485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5427299fea367de545b7c1bbf36fe2c648d167ecd2fd7a45eaa2481403a4e78f +size 200063 diff --git a/datasets/xianshiping/val/images/订单1804391_51_7087435.jpg b/datasets/xianshiping/val/images/订单1804391_51_7087435.jpg new file mode 100644 index 0000000..6f90d7b --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804391_51_7087435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a92623dbaa5dc67c918565198ffd6f5cc3ad64c7d2a6c48dc15f0060af10ec +size 299514 diff --git a/datasets/xianshiping/val/images/订单1804392_51_7087455.jpg b/datasets/xianshiping/val/images/订单1804392_51_7087455.jpg new file mode 100644 index 0000000..9951185 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804392_51_7087455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5f9b072d57f7eb84d33989ffe59d147b5a175079363a29dc70bb26d16a0558 +size 119304 diff --git a/datasets/xianshiping/val/images/订单1804397_51_7087486.jpg b/datasets/xianshiping/val/images/订单1804397_51_7087486.jpg new file mode 100644 index 0000000..d2f0a16 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804397_51_7087486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79c83f8ee4577fd95cd437dd4ca62716e96055bc56f6727f151db86df74fa60 +size 120987 diff --git a/datasets/xianshiping/val/images/订单1804398_51_7087556.jpg b/datasets/xianshiping/val/images/订单1804398_51_7087556.jpg new file mode 100644 index 0000000..568c85a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804398_51_7087556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b4db7106a00627f89a116211b49dddd92feb1d83fd0ba8853852b6662fd2a2 +size 139661 diff --git a/datasets/xianshiping/val/images/订单1804400_51_7087530.jpg b/datasets/xianshiping/val/images/订单1804400_51_7087530.jpg new file mode 100644 index 0000000..b4aea7f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804400_51_7087530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9852d6c2b4e484dbe2e7165496071dc3e35934048719879c84ecd824e30d7f +size 409804 diff --git a/datasets/xianshiping/val/images/订单1804402_51_7087549.jpg b/datasets/xianshiping/val/images/订单1804402_51_7087549.jpg new file mode 100644 index 0000000..b43f121 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804402_51_7087549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1e74b916ec84e91975715c281b98b347d5540456a687fe8de2a3dce2a906af +size 158484 diff --git a/datasets/xianshiping/val/images/订单1804404_51_7088648.jpg b/datasets/xianshiping/val/images/订单1804404_51_7088648.jpg new file mode 100644 index 0000000..6ddc321 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804404_51_7088648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d947ec2f5ba91614a938c976213eb6d3689998d095d70ab88508b7e09b970f8 +size 302983 diff --git a/datasets/xianshiping/val/images/订单1804405_51_7087580.jpg b/datasets/xianshiping/val/images/订单1804405_51_7087580.jpg new file mode 100644 index 0000000..c6cb18e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804405_51_7087580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c2472854f99ca47e46679f3247c226418723317f53987c15b5c6a7ae45dc45 +size 1190937 diff --git a/datasets/xianshiping/val/images/订单1804409_51_7087612.jpg b/datasets/xianshiping/val/images/订单1804409_51_7087612.jpg new file mode 100644 index 0000000..a65b9bc --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804409_51_7087612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ffacf15c6c8755e29258c64914c778eac8dbfdbd787b59359076a4745f444d +size 131438 diff --git a/datasets/xianshiping/val/images/订单1804410_51_7087567.jpg b/datasets/xianshiping/val/images/订单1804410_51_7087567.jpg new file mode 100644 index 0000000..3eb6db8 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804410_51_7087567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5588a37231982a20b0e2f47a56f45a5dd20438d575c8e1e682067e68446729 +size 142340 diff --git a/datasets/xianshiping/val/images/订单1804415_51_7087728.jpg b/datasets/xianshiping/val/images/订单1804415_51_7087728.jpg new file mode 100644 index 0000000..38935f1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804415_51_7087728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc72e7fb13bb4a48ec828d0baf0d608744979801ab84ed2d8972e0eba7e8c37 +size 105791 diff --git a/datasets/xianshiping/val/images/订单1804416_51_7087651.jpg b/datasets/xianshiping/val/images/订单1804416_51_7087651.jpg new file mode 100644 index 0000000..d851572 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804416_51_7087651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee727a181d0732a4e068641e3fa215c8a61a28b92aad72b45692ff5e1aa093e7 +size 261979 diff --git a/datasets/xianshiping/val/images/订单1804417_51_7087688.jpg b/datasets/xianshiping/val/images/订单1804417_51_7087688.jpg new file mode 100644 index 0000000..e86d74e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1804417_51_7087688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cb702f903781b444921f19fda41d0e30c57974b62206a2be813af7966df2d0 +size 161896 diff --git a/datasets/xianshiping/val/images/订单1805100_51_7094084.jpg b/datasets/xianshiping/val/images/订单1805100_51_7094084.jpg new file mode 100644 index 0000000..b16d4ff --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805100_51_7094084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f644848c4ae16f5f9649feb895bf5aa3dcec55ff1da24132400f116e3889f5 +size 155151 diff --git a/datasets/xianshiping/val/images/订单1805101_51_7094057.jpg b/datasets/xianshiping/val/images/订单1805101_51_7094057.jpg new file mode 100644 index 0000000..937547c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805101_51_7094057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f7117ab71b9ec19535a816a54883eab2dcbf01ebb6c74b929cc165f6f26927 +size 120380 diff --git a/datasets/xianshiping/val/images/订单1805102_51_7094011.jpg b/datasets/xianshiping/val/images/订单1805102_51_7094011.jpg new file mode 100644 index 0000000..35fc056 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805102_51_7094011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71895927d2b0c5328f340470de4bca02bf3f36ceb9eebfc6696f00bc2b63d296 +size 158690 diff --git a/datasets/xianshiping/val/images/订单1805103_51_7093987.jpg b/datasets/xianshiping/val/images/订单1805103_51_7093987.jpg new file mode 100644 index 0000000..ac56e93 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805103_51_7093987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfec399d1795f560641c5c33e346d671b03de45ea372e66838723435737c742 +size 108935 diff --git a/datasets/xianshiping/val/images/订单1805108_51_7094036.jpg b/datasets/xianshiping/val/images/订单1805108_51_7094036.jpg new file mode 100644 index 0000000..03ee29b --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805108_51_7094036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fce497cd3f7210de9019c1134834310bec4609fb5bb1f1276f3b0c05d66439 +size 112115 diff --git a/datasets/xianshiping/val/images/订单1805109_51_7094037.jpg b/datasets/xianshiping/val/images/订单1805109_51_7094037.jpg new file mode 100644 index 0000000..95a8aa4 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805109_51_7094037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76bf9dd4d1f213e08b681ab657362185cd02f26a4b0bc4e441f9d4e3ca0755d +size 144917 diff --git a/datasets/xianshiping/val/images/订单1805115_51_7094131.jpg b/datasets/xianshiping/val/images/订单1805115_51_7094131.jpg new file mode 100644 index 0000000..6038d88 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805115_51_7094131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a246aab9cac9c92235a2cb0a96f518be3ac99e19e7e624e0e48f714925789ad4 +size 69502 diff --git a/datasets/xianshiping/val/images/订单1805119_51_7094223.jpg b/datasets/xianshiping/val/images/订单1805119_51_7094223.jpg new file mode 100644 index 0000000..14fb49c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805119_51_7094223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526e48752650889d28adf9f006a75f59d03974cc6d6ca5bacb25afc9685bf293 +size 884566 diff --git a/datasets/xianshiping/val/images/订单1805120_51_7094214.jpg b/datasets/xianshiping/val/images/订单1805120_51_7094214.jpg new file mode 100644 index 0000000..8405a9e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805120_51_7094214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a093b97f5b0fb9b629cc61d52b812c67b96a5bd94f20c54e61797addd3f58a51 +size 148651 diff --git a/datasets/xianshiping/val/images/订单1805123_51_7094124.jpg b/datasets/xianshiping/val/images/订单1805123_51_7094124.jpg new file mode 100644 index 0000000..a77b578 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805123_51_7094124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d48ca4bf78630a33599c1e05989358c1c22b55e98f20cd24bce09a7a7da01ed +size 536872 diff --git a/datasets/xianshiping/val/images/订单1805124_51_7094151.jpg b/datasets/xianshiping/val/images/订单1805124_51_7094151.jpg new file mode 100644 index 0000000..96b703a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805124_51_7094151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed80d07e44f30f3ad0f523b2300acfc4b10af93cee8602cc595565cbcf72370 +size 144153 diff --git a/datasets/xianshiping/val/images/订单1805128_51_7094217.jpg b/datasets/xianshiping/val/images/订单1805128_51_7094217.jpg new file mode 100644 index 0000000..ffd2067 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805128_51_7094217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832803e676702fc75c815afa53539e74930418c38fa356c532e1643a6708ca6a +size 356274 diff --git a/datasets/xianshiping/val/images/订单1805129_51_7094233.jpg b/datasets/xianshiping/val/images/订单1805129_51_7094233.jpg new file mode 100644 index 0000000..3c62f69 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805129_51_7094233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23715bf9cd13c0b53bfb0bab22114401000f9291b64fc591b50210afdbf2ec8 +size 109958 diff --git a/datasets/xianshiping/val/images/订单1805131_51_7094253.jpg b/datasets/xianshiping/val/images/订单1805131_51_7094253.jpg new file mode 100644 index 0000000..dc0f6cc --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805131_51_7094253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e477c5c20e611fd73ff8b9e1f3e6f8402212214636335b395150adfa46cf1815 +size 138314 diff --git a/datasets/xianshiping/val/images/订单1805134_51_7094282.jpg b/datasets/xianshiping/val/images/订单1805134_51_7094282.jpg new file mode 100644 index 0000000..70c6932 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805134_51_7094282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e17c5cd70806d194493b1927b5b7abad205e2a034919e96d3b2ce9cacb7e658 +size 95600 diff --git a/datasets/xianshiping/val/images/订单1805137_51_7094244.jpg b/datasets/xianshiping/val/images/订单1805137_51_7094244.jpg new file mode 100644 index 0000000..34a341c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805137_51_7094244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab18c90f0d31cf080551964706d5327082096b094d6ea00b319356ec4f170965 +size 392835 diff --git a/datasets/xianshiping/val/images/订单1805141_51_7094347.jpg b/datasets/xianshiping/val/images/订单1805141_51_7094347.jpg new file mode 100644 index 0000000..0fff9d7 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805141_51_7094347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc4ea57bd80c3130c7f0c3e895cf938be2b1dbd014c959d1428d072e1b145ac +size 129754 diff --git a/datasets/xianshiping/val/images/订单1805142_51_7094266.jpg b/datasets/xianshiping/val/images/订单1805142_51_7094266.jpg new file mode 100644 index 0000000..fa0f773 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805142_51_7094266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908f2df8772e09a8ca7e904411f15efddcc91b636f572ba5ab72c9f035287a40 +size 437996 diff --git a/datasets/xianshiping/val/images/订单1805143_51_7094313.jpg b/datasets/xianshiping/val/images/订单1805143_51_7094313.jpg new file mode 100644 index 0000000..67eb50c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805143_51_7094313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc76d70a7a077612bb30e8a405afdd5a4ed47c578ad3374f1d0ac6ceca1a101 +size 413152 diff --git a/datasets/xianshiping/val/images/订单1805149_51_7094351.jpg b/datasets/xianshiping/val/images/订单1805149_51_7094351.jpg new file mode 100644 index 0000000..868cdae --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805149_51_7094351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715eed6c548f687385db8958ef852e195659bb4c8955a66d69fdcbd2b0994d40 +size 238140 diff --git a/datasets/xianshiping/val/images/订单1805151_51_7094416.jpg b/datasets/xianshiping/val/images/订单1805151_51_7094416.jpg new file mode 100644 index 0000000..d6bb5ee --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805151_51_7094416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188b7f54ee49cd149ba3e97c4f07ce1de44771d3f27417884b982ee651fe2609 +size 555045 diff --git a/datasets/xianshiping/val/images/订单1805155_51_7094474.jpg b/datasets/xianshiping/val/images/订单1805155_51_7094474.jpg new file mode 100644 index 0000000..4e3121f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805155_51_7094474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7aa42d72a08e53ee4de8ce9f44da2700365063b6b7ebf0ef487c76c94083f2 +size 362447 diff --git a/datasets/xianshiping/val/images/订单1805158_51_7094455.jpg b/datasets/xianshiping/val/images/订单1805158_51_7094455.jpg new file mode 100644 index 0000000..4120c94 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805158_51_7094455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dccda07d7f3b55d6538adc9b16c6150368e5e7d5d48f1aebc416efa66e8ba9 +size 137522 diff --git a/datasets/xianshiping/val/images/订单1805164_51_7094561.jpg b/datasets/xianshiping/val/images/订单1805164_51_7094561.jpg new file mode 100644 index 0000000..e677591 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805164_51_7094561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fe26a7daa40047b603d2b9cb50ad4e212fd2ac9ac206f1b6ec679e91c5e4da +size 147953 diff --git a/datasets/xianshiping/val/images/订单1805167_51_7094525.jpg b/datasets/xianshiping/val/images/订单1805167_51_7094525.jpg new file mode 100644 index 0000000..4397410 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805167_51_7094525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b883057c780463e4fb3dcc89ba2c1cfde8adccadb0c59ce8ca763968a6676ae4 +size 625668 diff --git a/datasets/xianshiping/val/images/订单1805168_51_7094620.jpg b/datasets/xianshiping/val/images/订单1805168_51_7094620.jpg new file mode 100644 index 0000000..b51cd42 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805168_51_7094620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2137571ed89b8777891a97607efbcba6f1d1d08d7a685a614ceb9afdcd3434f8 +size 155269 diff --git a/datasets/xianshiping/val/images/订单1805170_51_7094495.jpg b/datasets/xianshiping/val/images/订单1805170_51_7094495.jpg new file mode 100644 index 0000000..3166a9f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805170_51_7094495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58013eb1251e2cb3616d10108f11c7ac00902548519fff8f5e7012f7f451a22 +size 135902 diff --git a/datasets/xianshiping/val/images/订单1805172_51_7094657.jpg b/datasets/xianshiping/val/images/订单1805172_51_7094657.jpg new file mode 100644 index 0000000..19e0bee --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805172_51_7094657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bd1f09e25ebca5326054bbb94f447adaca9572bf5d387ebbf7dc461f8149c2 +size 553900 diff --git a/datasets/xianshiping/val/images/订单1805175_51_7094553.jpg b/datasets/xianshiping/val/images/订单1805175_51_7094553.jpg new file mode 100644 index 0000000..730f513 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805175_51_7094553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ad372782cee5f8e1953198e3bae050dbec832e49de3b52b625b6ebfa984c76 +size 107403 diff --git a/datasets/xianshiping/val/images/订单1805177_51_7095468.jpg b/datasets/xianshiping/val/images/订单1805177_51_7095468.jpg new file mode 100644 index 0000000..16f6ab6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805177_51_7095468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9325e733e056caf766753d9b156074568b963064acc382a47f4d2fe450b2307a +size 144257 diff --git a/datasets/xianshiping/val/images/订单1805181_51_7094604.jpg b/datasets/xianshiping/val/images/订单1805181_51_7094604.jpg new file mode 100644 index 0000000..250adeb --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805181_51_7094604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92adf987e192829899861a14334dd2fbb83f13dfd924533ad3410a9c65fc9e5d +size 367265 diff --git a/datasets/xianshiping/val/images/订单1805182_51_7094646.jpg b/datasets/xianshiping/val/images/订单1805182_51_7094646.jpg new file mode 100644 index 0000000..fc5610f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805182_51_7094646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1829c056dc50e2daa487c2b528410dafbe3d2a5b65e992c7514ef4839cf35bbe +size 100677 diff --git a/datasets/xianshiping/val/images/订单1805187_51_7094690.jpg b/datasets/xianshiping/val/images/订单1805187_51_7094690.jpg new file mode 100644 index 0000000..75e7aca --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805187_51_7094690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9dd088a7770d6fb424fe92902312a95d5e11d506c6830a586b508a9269b36c +size 85646 diff --git a/datasets/xianshiping/val/images/订单1805191_51_7094738.jpg b/datasets/xianshiping/val/images/订单1805191_51_7094738.jpg new file mode 100644 index 0000000..bfb8871 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805191_51_7094738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68d2f68d5e30608d4738cf454d614bc80e17fa6b89c01f1088f734551cc36cb +size 140844 diff --git a/datasets/xianshiping/val/images/订单1805193_51_7094789.jpg b/datasets/xianshiping/val/images/订单1805193_51_7094789.jpg new file mode 100644 index 0000000..1c33148 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805193_51_7094789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b8c5a564350004f6a81070e8aa86850eefa7f2c64e619d9b89740c106040ad +size 165303 diff --git a/datasets/xianshiping/val/images/订单1805202_51_7094824.jpg b/datasets/xianshiping/val/images/订单1805202_51_7094824.jpg new file mode 100644 index 0000000..dbcbe36 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805202_51_7094824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67b26511efedda6351be9aa6f792a056001f528d3ce5eb77db26612a52354a6 +size 130324 diff --git a/datasets/xianshiping/val/images/订单1805204_51_7094885.jpg b/datasets/xianshiping/val/images/订单1805204_51_7094885.jpg new file mode 100644 index 0000000..db0a96d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805204_51_7094885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d239ca654731889a53b22f122c88eca2e301ed72eac833e0b1154c29884f5ba4 +size 158665 diff --git a/datasets/xianshiping/val/images/订单1805205_51_7094952.jpg b/datasets/xianshiping/val/images/订单1805205_51_7094952.jpg new file mode 100644 index 0000000..c34866e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805205_51_7094952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200775450e3342b04d5428e42ffa8a2d0587edce4b05ae5acb4f679de91f205f +size 98620 diff --git a/datasets/xianshiping/val/images/订单1805207_51_7094908.jpg b/datasets/xianshiping/val/images/订单1805207_51_7094908.jpg new file mode 100644 index 0000000..56f8af6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805207_51_7094908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263f69faaa6fcfd66fb5148b9fd5e4217a980e5e0868f8ef2be374ecfeef4de7 +size 141708 diff --git a/datasets/xianshiping/val/images/订单1805208_51_7094957.jpg b/datasets/xianshiping/val/images/订单1805208_51_7094957.jpg new file mode 100644 index 0000000..f69f9f4 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805208_51_7094957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0621fd3842c1c8157c7fb815189b48b47c54d461c2b979b8d0759fe6d21e6cec +size 150637 diff --git a/datasets/xianshiping/val/images/订单1805212_51_7094977.jpg b/datasets/xianshiping/val/images/订单1805212_51_7094977.jpg new file mode 100644 index 0000000..5c89bb2 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805212_51_7094977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788e3601101cde1ead2acb7b57c6539965489ebd4fe3e7f7ec2aefc520801d5c +size 564237 diff --git a/datasets/xianshiping/val/images/订单1805213_51_7094911.jpg b/datasets/xianshiping/val/images/订单1805213_51_7094911.jpg new file mode 100644 index 0000000..5b35872 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805213_51_7094911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501b25e4edce36142b1767e1f2109550f8e79589175e55557a84fd7cc6a59e67 +size 101039 diff --git a/datasets/xianshiping/val/images/订单1805217_51_7095036.jpg b/datasets/xianshiping/val/images/订单1805217_51_7095036.jpg new file mode 100644 index 0000000..0351660 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805217_51_7095036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2f68333ba996c2eb1024e53322ef8227387f98dfdab15617fe67419c3df67a +size 464997 diff --git a/datasets/xianshiping/val/images/订单1805223_51_7095092.jpg b/datasets/xianshiping/val/images/订单1805223_51_7095092.jpg new file mode 100644 index 0000000..9a49a9f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805223_51_7095092.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5fed476418de0d5cb8a8bfa683c1442a2ac842adb5af0ebbb1ea8200e3e1d0 +size 160988 diff --git a/datasets/xianshiping/val/images/订单1805233_51_7095227.jpg b/datasets/xianshiping/val/images/订单1805233_51_7095227.jpg new file mode 100644 index 0000000..b4539d1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805233_51_7095227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5ff840d3ee3dbcd5e669d2bf376e83c38dae33422cee4e29dcfadc841a9d40 +size 176116 diff --git a/datasets/xianshiping/val/images/订单1805234_51_7095307.jpg b/datasets/xianshiping/val/images/订单1805234_51_7095307.jpg new file mode 100644 index 0000000..9b401d7 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805234_51_7095307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a76d2a4138132d27b8f870fad34c24a5994f7c24a2aec0b11b6e431b04155d +size 147663 diff --git a/datasets/xianshiping/val/images/订单1805236_51_7095224.jpg b/datasets/xianshiping/val/images/订单1805236_51_7095224.jpg new file mode 100644 index 0000000..8ca3589 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805236_51_7095224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fc76a757628ca2b22b859fd166497089cefe0e1eea7810a5146606b84861cc +size 146022 diff --git a/datasets/xianshiping/val/images/订单1805239_51_7095196.jpg b/datasets/xianshiping/val/images/订单1805239_51_7095196.jpg new file mode 100644 index 0000000..b61046d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805239_51_7095196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd502dac1f0c5852ab7956755883a854f347cf026c96bd8d52df49948c9e13ef +size 145995 diff --git a/datasets/xianshiping/val/images/订单1805247_51_7095293.jpg b/datasets/xianshiping/val/images/订单1805247_51_7095293.jpg new file mode 100644 index 0000000..03fd6f6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805247_51_7095293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3f2c087ac0e42ec243c0007b7cd5cb1d9a48600b2d9fca4959d00407acabf7 +size 94910 diff --git a/datasets/xianshiping/val/images/订单1805252_51_7095412.jpg b/datasets/xianshiping/val/images/订单1805252_51_7095412.jpg new file mode 100644 index 0000000..60e5916 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805252_51_7095412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e9bfba713a8612c531d5a86cf0f1c8b04a38d04e3efb34fa8947549cb8521 +size 102296 diff --git a/datasets/xianshiping/val/images/订单1805256_51_7095403.jpg b/datasets/xianshiping/val/images/订单1805256_51_7095403.jpg new file mode 100644 index 0000000..3f8c04c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805256_51_7095403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0a4b20e89be1f08339672cb1e9b1cfa6afeae44d3a6d2b02dd043c9c1dbcaf +size 629893 diff --git a/datasets/xianshiping/val/images/订单1805261_51_7095495.jpg b/datasets/xianshiping/val/images/订单1805261_51_7095495.jpg new file mode 100644 index 0000000..ce38a9a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805261_51_7095495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2701076f22acf3ec7cbcdc3814e469905eeb2c44fcf17a87f6c98d8c9875b3e5 +size 202338 diff --git a/datasets/xianshiping/val/images/订单1805262_51_7095487.jpg b/datasets/xianshiping/val/images/订单1805262_51_7095487.jpg new file mode 100644 index 0000000..a1bf90d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805262_51_7095487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f163e0201ba1376ea0f52daa78bc192eabc20cdcee8c64b38f60aba91b83c36d +size 114528 diff --git a/datasets/xianshiping/val/images/订单1805265_51_7095449.jpg b/datasets/xianshiping/val/images/订单1805265_51_7095449.jpg new file mode 100644 index 0000000..97bc8e5 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805265_51_7095449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d58e169f417fab2c95bbf94483ff74dbbf2d3a7e8f54e72819d4d33b49fc5a5 +size 230113 diff --git a/datasets/xianshiping/val/images/订单1805271_51_7095498.jpg b/datasets/xianshiping/val/images/订单1805271_51_7095498.jpg new file mode 100644 index 0000000..64780d8 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805271_51_7095498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a10fd41b1dff985dae574ede075cea107dacefb2d407c019ba1ff5a9211e0e1 +size 163541 diff --git a/datasets/xianshiping/val/images/订单1805274_51_7095554.jpg b/datasets/xianshiping/val/images/订单1805274_51_7095554.jpg new file mode 100644 index 0000000..de0478d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805274_51_7095554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57617cdc257b1fc4040adf3a642e6760fb38695828af2afb8b0a88c3825dec07 +size 98903 diff --git a/datasets/xianshiping/val/images/订单1805275_51_7095581.jpg b/datasets/xianshiping/val/images/订单1805275_51_7095581.jpg new file mode 100644 index 0000000..d1f7823 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805275_51_7095581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf5d0c49c0e9e0dfcf9bb22cbefa5132f481aaebc26bc02ae1261b3b9263411 +size 435196 diff --git a/datasets/xianshiping/val/images/订单1805276_51_7095550.jpg b/datasets/xianshiping/val/images/订单1805276_51_7095550.jpg new file mode 100644 index 0000000..0a2b869 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805276_51_7095550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173da3f7f90365deb941c33cbc27a339e214f2829774ec65c4ee70007502c1ae +size 156285 diff --git a/datasets/xianshiping/val/images/订单1805278_51_7095545.jpg b/datasets/xianshiping/val/images/订单1805278_51_7095545.jpg new file mode 100644 index 0000000..dca5dc0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805278_51_7095545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8113c0ae0dd21f8551af8075060029974427d51a1e9f6a20ce8db85b53caf3 +size 148489 diff --git a/datasets/xianshiping/val/images/订单1805279_51_7095633.jpg b/datasets/xianshiping/val/images/订单1805279_51_7095633.jpg new file mode 100644 index 0000000..14fe4cc --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805279_51_7095633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca81104289277d8d8399cac4a385aeb5235d4e460123fe7ec58ff2a649c508e +size 113609 diff --git a/datasets/xianshiping/val/images/订单1805280_51_7095784.jpg b/datasets/xianshiping/val/images/订单1805280_51_7095784.jpg new file mode 100644 index 0000000..5e765ba --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805280_51_7095784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4621d5365850bb66990796ff499524087d75172e2b964d4c8ef14633cd9096 +size 148288 diff --git a/datasets/xianshiping/val/images/订单1805281_51_7095710.jpg b/datasets/xianshiping/val/images/订单1805281_51_7095710.jpg new file mode 100644 index 0000000..0792f2d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805281_51_7095710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061a3893f029b5047c84f25087d00c193a30550edadf5b382284f23973309b3b +size 492913 diff --git a/datasets/xianshiping/val/images/订单1805282_51_7095637.jpg b/datasets/xianshiping/val/images/订单1805282_51_7095637.jpg new file mode 100644 index 0000000..6fae890 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805282_51_7095637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd7e48246e4aeed83bf0cb176864eef8253798d667a37ddffcdce7808d52eb9 +size 115676 diff --git a/datasets/xianshiping/val/images/订单1805286_51_7095666.jpg b/datasets/xianshiping/val/images/订单1805286_51_7095666.jpg new file mode 100644 index 0000000..17197a0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805286_51_7095666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecaaa988758c13ed07049d9987e6d2cd0f756fa94357b21a9c19db601041381a +size 498389 diff --git a/datasets/xianshiping/val/images/订单1805288_51_7095735.jpg b/datasets/xianshiping/val/images/订单1805288_51_7095735.jpg new file mode 100644 index 0000000..400ccd1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805288_51_7095735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ae5bd49ec4d2817bdc654dff058dd4faad9c70e4ae0c322a8d3710a5d7e356 +size 119790 diff --git a/datasets/xianshiping/val/images/订单1805291_51_7095845.jpg b/datasets/xianshiping/val/images/订单1805291_51_7095845.jpg new file mode 100644 index 0000000..c04b2a5 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805291_51_7095845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6f63802271374f684d1e927252a0613b1f17b9164ce47efb913090697f9ebe +size 121149 diff --git a/datasets/xianshiping/val/images/订单1805294_51_7095817.jpg b/datasets/xianshiping/val/images/订单1805294_51_7095817.jpg new file mode 100644 index 0000000..7dab018 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805294_51_7095817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95401948f9a9ce547f9788b3cd0190f509a3214472b8fb385d5bf2d39dcb93a1 +size 616558 diff --git a/datasets/xianshiping/val/images/订单1805296_51_7095785.jpg b/datasets/xianshiping/val/images/订单1805296_51_7095785.jpg new file mode 100644 index 0000000..ccc168a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805296_51_7095785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e75b4c7dd7d6465c50387e72d4cab636c754ecb4f5021aaf764f96693c0b8f +size 157296 diff --git a/datasets/xianshiping/val/images/订单1805302_51_7095822.jpg b/datasets/xianshiping/val/images/订单1805302_51_7095822.jpg new file mode 100644 index 0000000..d1fe583 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805302_51_7095822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab48551d0c5e62439810b3bf3b6f8501f3684c89641b48237c0b4c4cc9eaaa5 +size 196429 diff --git a/datasets/xianshiping/val/images/订单1805310_51_7095913.jpg b/datasets/xianshiping/val/images/订单1805310_51_7095913.jpg new file mode 100644 index 0000000..c47592f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805310_51_7095913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1159700ab11bc3c5f0abbd368511ffd5d238217b6914a050c476de0777f25f4d +size 128507 diff --git a/datasets/xianshiping/val/images/订单1805311_51_7095915.jpg b/datasets/xianshiping/val/images/订单1805311_51_7095915.jpg new file mode 100644 index 0000000..e197af9 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805311_51_7095915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d872f340e6adae26d28ddf342c9caa1b3d3b4fabd16754945b8b85626326fc5 +size 139365 diff --git a/datasets/xianshiping/val/images/订单1805314_51_7096010.jpg b/datasets/xianshiping/val/images/订单1805314_51_7096010.jpg new file mode 100644 index 0000000..f78671c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805314_51_7096010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b8f0578410b4674bcd2569ab9b6a1919ca06e0f31f3fb4acbe22d156fbb025 +size 125876 diff --git a/datasets/xianshiping/val/images/订单1805315_51_7095969.jpg b/datasets/xianshiping/val/images/订单1805315_51_7095969.jpg new file mode 100644 index 0000000..de424e2 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805315_51_7095969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f23bdf32f77e3d906bcb24b4bc0bfc4e5a1cfde411043a33e39d707797ae4 +size 159337 diff --git a/datasets/xianshiping/val/images/订单1805316_51_7096200.jpg b/datasets/xianshiping/val/images/订单1805316_51_7096200.jpg new file mode 100644 index 0000000..e01c7ad --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805316_51_7096200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d6ab7666b0ccf72af3cf4271b072131c035f6e4951706b39eba6b525b13cea +size 75373 diff --git a/datasets/xianshiping/val/images/订单1805323_51_7096066.jpg b/datasets/xianshiping/val/images/订单1805323_51_7096066.jpg new file mode 100644 index 0000000..5ae33fa --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805323_51_7096066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17da0f184e6ceedbf6aa33c4f3fd0be0dbf3a0ec141106db5d45a903e639bc93 +size 71737 diff --git a/datasets/xianshiping/val/images/订单1805326_51_7096106.jpg b/datasets/xianshiping/val/images/订单1805326_51_7096106.jpg new file mode 100644 index 0000000..cb35bb6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805326_51_7096106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af96412377e93418ee2d1d5070a6027d38c8e6925bd4c0f76aeea6caa0a4217 +size 84650 diff --git a/datasets/xianshiping/val/images/订单1805334_51_7096252.jpg b/datasets/xianshiping/val/images/订单1805334_51_7096252.jpg new file mode 100644 index 0000000..01073f9 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805334_51_7096252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9b5dce488004053f074500871bbf57b123e97422082a10acce26841d0809e3 +size 84602 diff --git a/datasets/xianshiping/val/images/订单1805335_51_7096152.jpg b/datasets/xianshiping/val/images/订单1805335_51_7096152.jpg new file mode 100644 index 0000000..95a35c5 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805335_51_7096152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7be22c5065b9d4b7de2a7534a27a3ee5160df59efcf601883b6bc7cb22f65a3 +size 110497 diff --git a/datasets/xianshiping/val/images/订单1805337_51_7097483.jpg b/datasets/xianshiping/val/images/订单1805337_51_7097483.jpg new file mode 100644 index 0000000..e4e741d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805337_51_7097483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1a2c4ea3b4545c69e8fdc3447079484f661ae86d8cf63de7c186cda2db4473 +size 376268 diff --git a/datasets/xianshiping/val/images/订单1805340_51_7096134.jpg b/datasets/xianshiping/val/images/订单1805340_51_7096134.jpg new file mode 100644 index 0000000..0305a46 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805340_51_7096134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c1cb6ce5c2ef02066c4364d3f4a93bd31eb576631a2ddbfe4ec750275ef8c4 +size 123936 diff --git a/datasets/xianshiping/val/images/订单1805341_51_7096228.jpg b/datasets/xianshiping/val/images/订单1805341_51_7096228.jpg new file mode 100644 index 0000000..4972b87 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805341_51_7096228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153e9ae6d881e720eeb9ecdcbe1abe2d8b77ffd6141ab95457b1e91afa12e467 +size 177153 diff --git a/datasets/xianshiping/val/images/订单1805343_51_7096175.jpg b/datasets/xianshiping/val/images/订单1805343_51_7096175.jpg new file mode 100644 index 0000000..c6cff9a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805343_51_7096175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dec85685c09f1ae299381f312d0010d76db3d66d5501d4c458b20036f350202 +size 239034 diff --git a/datasets/xianshiping/val/images/订单1805344_51_7096452.jpg b/datasets/xianshiping/val/images/订单1805344_51_7096452.jpg new file mode 100644 index 0000000..6c30e10 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805344_51_7096452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86bbd87aa759c8b7d3db1f785803f780ed6e17025c5828233452f06f4997cb4 +size 490661 diff --git a/datasets/xianshiping/val/images/订单1805345_51_7096249.jpg b/datasets/xianshiping/val/images/订单1805345_51_7096249.jpg new file mode 100644 index 0000000..8f27094 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805345_51_7096249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2466cb32ca12acc928308ed507229048366b8f29c977b59e51701669e698fb +size 87706 diff --git a/datasets/xianshiping/val/images/订单1805348_51_7096292.jpg b/datasets/xianshiping/val/images/订单1805348_51_7096292.jpg new file mode 100644 index 0000000..3985b51 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805348_51_7096292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cebf7d14eb6310753c50ec546ea0a0a45ee22fc78ed6404db5e07c62bf605f +size 98360 diff --git a/datasets/xianshiping/val/images/订单1805350_51_7096333.jpg b/datasets/xianshiping/val/images/订单1805350_51_7096333.jpg new file mode 100644 index 0000000..32e5a5c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805350_51_7096333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4021f7f19acdc05553e0f0c37e1ffb90b5ef95c381088f1bf55cc1d7d846798b +size 121237 diff --git a/datasets/xianshiping/val/images/订单1805351_51_7096392.jpg b/datasets/xianshiping/val/images/订单1805351_51_7096392.jpg new file mode 100644 index 0000000..3e92c28 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805351_51_7096392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f684b6768f06e1bf4f0463218f308a3629e2fe36069f5110e48b5ed4a9e0e62 +size 366828 diff --git a/datasets/xianshiping/val/images/订单1805355_51_7096586.jpg b/datasets/xianshiping/val/images/订单1805355_51_7096586.jpg new file mode 100644 index 0000000..b744baa --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805355_51_7096586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6eefeee08abba298f1482872cbb8bcbd99ae1d4f16653e0e8a6e70e0ece0058 +size 158242 diff --git a/datasets/xianshiping/val/images/订单1805358_51_7096443.jpg b/datasets/xianshiping/val/images/订单1805358_51_7096443.jpg new file mode 100644 index 0000000..2044b7e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805358_51_7096443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22db1b3767533a0df6f8a7ea463e46758b76519550a060562a082cad92e15a5a +size 156026 diff --git a/datasets/xianshiping/val/images/订单1805362_51_7096361.jpg b/datasets/xianshiping/val/images/订单1805362_51_7096361.jpg new file mode 100644 index 0000000..a3aab46 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805362_51_7096361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d7e37967bcaf24edeecb0f896dfde7710ce4375f1c765f564e74b95938c2102 +size 389926 diff --git a/datasets/xianshiping/val/images/订单1805363_51_7096360.jpg b/datasets/xianshiping/val/images/订单1805363_51_7096360.jpg new file mode 100644 index 0000000..ad94a70 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805363_51_7096360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2475d095fe0f8315e248e0a24ff6f43dfdeb54eb5f8f51eaa14869755978f84 +size 57765 diff --git a/datasets/xianshiping/val/images/订单1805367_51_7096539.jpg b/datasets/xianshiping/val/images/订单1805367_51_7096539.jpg new file mode 100644 index 0000000..b325c1a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805367_51_7096539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d92e0b790a44b3377d073b2bb1e8939a27fc54c3c19b655cbc63fb53d0b3d17 +size 112129 diff --git a/datasets/xianshiping/val/images/订单1805370_51_7096533.jpg b/datasets/xianshiping/val/images/订单1805370_51_7096533.jpg new file mode 100644 index 0000000..91717c7 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805370_51_7096533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de58771df36ac3cce3b6dbc1166d11ba50257443f93f74c7f3ca95ecd774699 +size 139984 diff --git a/datasets/xianshiping/val/images/订单1805373_51_7096473.jpg b/datasets/xianshiping/val/images/订单1805373_51_7096473.jpg new file mode 100644 index 0000000..21f5b94 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805373_51_7096473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05bb2faf3b603dbd7a1a4c228cfeb014edf9ee01bfe8915b33d031054c1a79d4 +size 119179 diff --git a/datasets/xianshiping/val/images/订单1805375_51_7096482.jpg b/datasets/xianshiping/val/images/订单1805375_51_7096482.jpg new file mode 100644 index 0000000..5e9d170 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805375_51_7096482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfda4aaf6786a67dfb68dc7d987b393b7cd59a33ad35ecb267c30a2acf4fe87d +size 102971 diff --git a/datasets/xianshiping/val/images/订单1805376_51_7096538.jpg b/datasets/xianshiping/val/images/订单1805376_51_7096538.jpg new file mode 100644 index 0000000..edfc1d1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805376_51_7096538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230cc4c270f346816b5fdda3d7b57ad8d35a3c9a009289f666626f17728f9001 +size 146076 diff --git a/datasets/xianshiping/val/images/订单1805377_51_7096582.jpg b/datasets/xianshiping/val/images/订单1805377_51_7096582.jpg new file mode 100644 index 0000000..f08a341 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805377_51_7096582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8406f1f537e96c8c985845d196bec4cdb239643d72d227e062dd5ab4ccebbc0 +size 148238 diff --git a/datasets/xianshiping/val/images/订单1805381_51_7096578.jpg b/datasets/xianshiping/val/images/订单1805381_51_7096578.jpg new file mode 100644 index 0000000..8a0d73a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805381_51_7096578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad8c5d93fa50cdb125d7a1689da68b19085572a6e8ef1d1cc80e2bf9076991f +size 108278 diff --git a/datasets/xianshiping/val/images/订单1805382_51_7096625.jpg b/datasets/xianshiping/val/images/订单1805382_51_7096625.jpg new file mode 100644 index 0000000..6940b1d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805382_51_7096625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9337c6f33ad8c852ca0c498008708d4879f9d2fbf271e6ee16cfa226ee667b1c +size 156571 diff --git a/datasets/xianshiping/val/images/订单1805383_51_7096566.jpg b/datasets/xianshiping/val/images/订单1805383_51_7096566.jpg new file mode 100644 index 0000000..94adc9d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805383_51_7096566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532b75de96855043be6a3e0226f873f206e971485f531af0d85cffe5dfa0283c +size 99713 diff --git a/datasets/xianshiping/val/images/订单1805385_51_7096707.jpg b/datasets/xianshiping/val/images/订单1805385_51_7096707.jpg new file mode 100644 index 0000000..5156b2d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805385_51_7096707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14ec36b7bcdc6d55c8eab6147192d051a7a759eea13fa4546cf4808df9185b9 +size 215967 diff --git a/datasets/xianshiping/val/images/订单1805387_51_7096626.jpg b/datasets/xianshiping/val/images/订单1805387_51_7096626.jpg new file mode 100644 index 0000000..93797cb --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805387_51_7096626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdc364295178a72504d4a50f548f9072ea910200aff7e7d77b32ea5989a5c5 +size 446127 diff --git a/datasets/xianshiping/val/images/订单1805395_51_7096699.jpg b/datasets/xianshiping/val/images/订单1805395_51_7096699.jpg new file mode 100644 index 0000000..1388278 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805395_51_7096699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd72a36474a3b0a7bd7291b59c5751cc36bbd8afebb8787a324120c30693ffe +size 441273 diff --git a/datasets/xianshiping/val/images/订单1805397_51_7096898.jpg b/datasets/xianshiping/val/images/订单1805397_51_7096898.jpg new file mode 100644 index 0000000..d664cfd --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805397_51_7096898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75b46fe21eb7e5ea76c682598207dfcca0d5f9448e729a90afb4d639e2923e8 +size 151756 diff --git a/datasets/xianshiping/val/images/订单1805398_51_7096786.jpg b/datasets/xianshiping/val/images/订单1805398_51_7096786.jpg new file mode 100644 index 0000000..493e3c0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805398_51_7096786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af66c2d7de2fe2574044cfc3f7e81514fdc444d28ebb6d62e034cb6177dcce2a +size 375967 diff --git a/datasets/xianshiping/val/images/订单1805400_51_7096752.jpg b/datasets/xianshiping/val/images/订单1805400_51_7096752.jpg new file mode 100644 index 0000000..881707c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805400_51_7096752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cab292748112b32fd31e60a64265e116a22f0c3e7d23ba11e31b81421514ce +size 95260 diff --git a/datasets/xianshiping/val/images/订单1805404_51_7096839.jpg b/datasets/xianshiping/val/images/订单1805404_51_7096839.jpg new file mode 100644 index 0000000..5e68257 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805404_51_7096839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fd429589c16104bbad11bc1cb76850df02e865aaf95c19d2ac5703e36f6e1e +size 165306 diff --git a/datasets/xianshiping/val/images/订单1805408_51_7096821.jpg b/datasets/xianshiping/val/images/订单1805408_51_7096821.jpg new file mode 100644 index 0000000..18029a9 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805408_51_7096821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ecc93cdd283637d2d542496d073809e985c8248dbfec003ec2ebcb8d36ceb2 +size 136726 diff --git a/datasets/xianshiping/val/images/订单1805409_51_7096823.jpg b/datasets/xianshiping/val/images/订单1805409_51_7096823.jpg new file mode 100644 index 0000000..6caf0b6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805409_51_7096823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c542390eb2f33b94d77d8ffd7a34615c22cd5e650e872b810348d4e0dbae5c6b +size 114412 diff --git a/datasets/xianshiping/val/images/订单1805410_51_7096872.jpg b/datasets/xianshiping/val/images/订单1805410_51_7096872.jpg new file mode 100644 index 0000000..aad0b1f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805410_51_7096872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2768b2e9abb55bd573bcf7602496aa4eda41df27f847c47d6b117f83cad907d7 +size 466219 diff --git a/datasets/xianshiping/val/images/订单1805413_51_7096930.jpg b/datasets/xianshiping/val/images/订单1805413_51_7096930.jpg new file mode 100644 index 0000000..258fbc6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805413_51_7096930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ae576eab22578353f021503acfd9cf401908b48a2d81b6dda998de60c5460b +size 87048 diff --git a/datasets/xianshiping/val/images/订单1805415_51_7096961.jpg b/datasets/xianshiping/val/images/订单1805415_51_7096961.jpg new file mode 100644 index 0000000..7923ae5 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805415_51_7096961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97bb930443cad6d8f503d0117abba502937c984bd9f0504c69c55a738f9cd6c7 +size 136137 diff --git a/datasets/xianshiping/val/images/订单1805416_51_7096938.jpg b/datasets/xianshiping/val/images/订单1805416_51_7096938.jpg new file mode 100644 index 0000000..9ded9ce --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805416_51_7096938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2442ff8cd033162dc4ead4485172dfdce8a9e1f4240b280489f8fcca5d619d49 +size 147427 diff --git a/datasets/xianshiping/val/images/订单1805417_51_7096975.jpg b/datasets/xianshiping/val/images/订单1805417_51_7096975.jpg new file mode 100644 index 0000000..64815c9 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805417_51_7096975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee5e95a7cce9a056d18cabe19d849c67c49dcbf8aa65fdff34d51e1a58e09fd +size 128683 diff --git a/datasets/xianshiping/val/images/订单1805419_51_7097018.jpg b/datasets/xianshiping/val/images/订单1805419_51_7097018.jpg new file mode 100644 index 0000000..67912b0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805419_51_7097018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092c46230c93f7e8109563ffbd45f028004efd5b9b0eb464626a5db8b041cecb +size 135746 diff --git a/datasets/xianshiping/val/images/订单1805422_51_7097140.jpg b/datasets/xianshiping/val/images/订单1805422_51_7097140.jpg new file mode 100644 index 0000000..a789c11 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805422_51_7097140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cac67ea45930958c98570eab99383690f9aaf7ce08e008150257c82d724b82 +size 397599 diff --git a/datasets/xianshiping/val/images/订单1805425_51_7097081.jpg b/datasets/xianshiping/val/images/订单1805425_51_7097081.jpg new file mode 100644 index 0000000..2543a97 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805425_51_7097081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5e5d3119f5ea860d6fb4ec3454b2242f6185a8800ad7f0752879239baa89a3 +size 308280 diff --git a/datasets/xianshiping/val/images/订单1805428_51_7097030.jpg b/datasets/xianshiping/val/images/订单1805428_51_7097030.jpg new file mode 100644 index 0000000..708dfde --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805428_51_7097030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ccbbb25d37fda96f5397cb3a812e64fa75ebd0b0e2b447d9560e11b30c9b99 +size 149244 diff --git a/datasets/xianshiping/val/images/订单1805429_51_7097065.jpg b/datasets/xianshiping/val/images/订单1805429_51_7097065.jpg new file mode 100644 index 0000000..059e358 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805429_51_7097065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a45c713fa7bd9085aef0a8407c8d0aec28bf4dd523b5e0004bf0b77f52cac8 +size 88021 diff --git a/datasets/xianshiping/val/images/订单1805430_51_7097192.jpg b/datasets/xianshiping/val/images/订单1805430_51_7097192.jpg new file mode 100644 index 0000000..4ed4472 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805430_51_7097192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91e29b76a40989c0b7ca95b50d219ec9d1c1a236bb0e1e9df7b6329d23c24a1 +size 492598 diff --git a/datasets/xianshiping/val/images/订单1805431_51_7097106.jpg b/datasets/xianshiping/val/images/订单1805431_51_7097106.jpg new file mode 100644 index 0000000..74b3ba4 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805431_51_7097106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd50a3e168e176fb1eafa4ea6ee1b2cae27982cdf50b53c7b90d0576375899d +size 130926 diff --git a/datasets/xianshiping/val/images/订单1805433_51_7097054.jpg b/datasets/xianshiping/val/images/订单1805433_51_7097054.jpg new file mode 100644 index 0000000..8a4f8a3 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805433_51_7097054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89926874563d1d03bd279a7e50043b3c41405f24a3b87f1fce4fba8e78c58028 +size 443521 diff --git a/datasets/xianshiping/val/images/订单1805437_51_7097133.jpg b/datasets/xianshiping/val/images/订单1805437_51_7097133.jpg new file mode 100644 index 0000000..11561a0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805437_51_7097133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de88d942a290d2a3bddb8f484fa3bfd1be0ea95198532207cf2a750a3fa295d +size 116999 diff --git a/datasets/xianshiping/val/images/订单1805439_51_7097139.jpg b/datasets/xianshiping/val/images/订单1805439_51_7097139.jpg new file mode 100644 index 0000000..b93902c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805439_51_7097139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e277a1eef3e70f48f8dd32be116c980ee6595dc3f5d2c0ed4063029544b9949f +size 443084 diff --git a/datasets/xianshiping/val/images/订单1805444_51_7097190.jpg b/datasets/xianshiping/val/images/订单1805444_51_7097190.jpg new file mode 100644 index 0000000..f954b8a --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805444_51_7097190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1af338aa809de0993d85fb7bb2cbe3622df5178850c7d489f0854aa802a2a7 +size 338283 diff --git a/datasets/xianshiping/val/images/订单1805445_51_7097229.jpg b/datasets/xianshiping/val/images/订单1805445_51_7097229.jpg new file mode 100644 index 0000000..f63b2cf --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805445_51_7097229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fba1aa400cd48bf859a1cb94961d38c537ac84f45ce1f331f53584c29a49aeb +size 98937 diff --git a/datasets/xianshiping/val/images/订单1805446_51_7097173.jpg b/datasets/xianshiping/val/images/订单1805446_51_7097173.jpg new file mode 100644 index 0000000..188628f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805446_51_7097173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1955a5d83aba4e540f5d52df37ae22fa424ab03e436257bd488ab48f16aff5 +size 398329 diff --git a/datasets/xianshiping/val/images/订单1805449_51_7097273.jpg b/datasets/xianshiping/val/images/订单1805449_51_7097273.jpg new file mode 100644 index 0000000..6203a4d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805449_51_7097273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b66ab39edc3327e341c4c07c249cc757c9a7dad7f82dc53ba11479931f9905 +size 370859 diff --git a/datasets/xianshiping/val/images/订单1805451_51_7097408.jpg b/datasets/xianshiping/val/images/订单1805451_51_7097408.jpg new file mode 100644 index 0000000..d38f706 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805451_51_7097408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c762b82c87244c1e9e349012f9058c3694e717d1793c14d3eff1617d64189f8f +size 117191 diff --git a/datasets/xianshiping/val/images/订单1805452_51_7097304.jpg b/datasets/xianshiping/val/images/订单1805452_51_7097304.jpg new file mode 100644 index 0000000..5b90fc6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805452_51_7097304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfddf6cd636a0a581debef1174bd1da72572d16ef452523cbd034aff3a15e52 +size 156467 diff --git a/datasets/xianshiping/val/images/订单1805453_51_7097272.jpg b/datasets/xianshiping/val/images/订单1805453_51_7097272.jpg new file mode 100644 index 0000000..ceaa182 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805453_51_7097272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca939eb7fc39bad6bfe72d657785ab6e2e0c35ed747b48c17b51699e4bb00b8 +size 304661 diff --git a/datasets/xianshiping/val/images/订单1805454_51_7097240.jpg b/datasets/xianshiping/val/images/订单1805454_51_7097240.jpg new file mode 100644 index 0000000..a0025ad --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805454_51_7097240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6136e9450a80cc37d038c65093f02fd2a739ce5f2c08afe9dbff060e10230772 +size 121274 diff --git a/datasets/xianshiping/val/images/订单1805458_51_7097359.jpg b/datasets/xianshiping/val/images/订单1805458_51_7097359.jpg new file mode 100644 index 0000000..e1efcc6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805458_51_7097359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150b1f29a0b1d6ead219b3cfd3c56639c3d6fded1d562787ebc2fdc932f85958 +size 112567 diff --git a/datasets/xianshiping/val/images/订单1805459_51_7097355.jpg b/datasets/xianshiping/val/images/订单1805459_51_7097355.jpg new file mode 100644 index 0000000..22b89d1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805459_51_7097355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5e7cb840adeed9b4d410a71e76c292849ab62ef027edb27c30e269a1e57d2f +size 124770 diff --git a/datasets/xianshiping/val/images/订单1805460_51_7097375.jpg b/datasets/xianshiping/val/images/订单1805460_51_7097375.jpg new file mode 100644 index 0000000..453a5d2 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805460_51_7097375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949affdb2beebb788ea02594ec7153e194bab44537b17cb961a42cea197b20a5 +size 309963 diff --git a/datasets/xianshiping/val/images/订单1805461_51_7097444.jpg b/datasets/xianshiping/val/images/订单1805461_51_7097444.jpg new file mode 100644 index 0000000..5b55e65 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805461_51_7097444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a864c5bae6e0732c961f22e715e1b01a4d7edadd144826a4a59a0cbc01b5ab +size 109468 diff --git a/datasets/xianshiping/val/images/订单1805463_51_7097391.jpg b/datasets/xianshiping/val/images/订单1805463_51_7097391.jpg new file mode 100644 index 0000000..e7732d6 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805463_51_7097391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70335dd9e34296893c880ba1aa223fd0332ec44394209cc62f837393e618bb9 +size 116990 diff --git a/datasets/xianshiping/val/images/订单1805466_51_7097460.jpg b/datasets/xianshiping/val/images/订单1805466_51_7097460.jpg new file mode 100644 index 0000000..31bb31c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805466_51_7097460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53efffcd5b158e9aa645227c48cdfabd130dd6e86265758534891dce418d375 +size 140598 diff --git a/datasets/xianshiping/val/images/订单1805468_51_7097492.jpg b/datasets/xianshiping/val/images/订单1805468_51_7097492.jpg new file mode 100644 index 0000000..02dcb75 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805468_51_7097492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26a6fc54876c6ffff1902cf05c33cf59f849245f99093c3651884fb4f2bc278 +size 72605 diff --git a/datasets/xianshiping/val/images/订单1805469_51_7097445.jpg b/datasets/xianshiping/val/images/订单1805469_51_7097445.jpg new file mode 100644 index 0000000..328d71b --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805469_51_7097445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcbcac55e5b02f57e75f5a997c574357d6393a79de1c61c6513f6cefc4605a0 +size 114554 diff --git a/datasets/xianshiping/val/images/订单1805471_51_7097467.jpg b/datasets/xianshiping/val/images/订单1805471_51_7097467.jpg new file mode 100644 index 0000000..21cb2e0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805471_51_7097467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0866b7ec5ae120ffcb7dd7cbc71f2431570a9a4043bc1968e348065486919b57 +size 114029 diff --git a/datasets/xianshiping/val/images/订单1805472_51_7097529.jpg b/datasets/xianshiping/val/images/订单1805472_51_7097529.jpg new file mode 100644 index 0000000..83a7e96 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805472_51_7097529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6352a84ef2993e9e5c02cf993967e0dd5033e63e3cceb28db941a060a6cd46d +size 97621 diff --git a/datasets/xianshiping/val/images/订单1805473_51_7097537.jpg b/datasets/xianshiping/val/images/订单1805473_51_7097537.jpg new file mode 100644 index 0000000..c9dd05e --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805473_51_7097537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de53da8d2774df59548c173bcc62b7584f62c2ab869e39593ed7df1f4f3275f5 +size 117297 diff --git a/datasets/xianshiping/val/images/订单1805479_51_7097597.jpg b/datasets/xianshiping/val/images/订单1805479_51_7097597.jpg new file mode 100644 index 0000000..b6883b1 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805479_51_7097597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3b367a8cddb3f2a2d2a46388687460420946b44b3236518b0071a76137e9ad +size 96927 diff --git a/datasets/xianshiping/val/images/订单1805483_51_7097639.jpg b/datasets/xianshiping/val/images/订单1805483_51_7097639.jpg new file mode 100644 index 0000000..265361f --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805483_51_7097639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c295fba952fbe8dafc3377c347d9f5a1540c2394805a44c4288079d63a491c8 +size 630767 diff --git a/datasets/xianshiping/val/images/订单1805485_51_7097619.jpg b/datasets/xianshiping/val/images/订单1805485_51_7097619.jpg new file mode 100644 index 0000000..5046aad --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805485_51_7097619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad84ed8eeae863567dd08b0a1491cee6eb714d027044f525dae2fd5cd611eab2 +size 728883 diff --git a/datasets/xianshiping/val/images/订单1805489_51_7097678.jpg b/datasets/xianshiping/val/images/订单1805489_51_7097678.jpg new file mode 100644 index 0000000..46602d2 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805489_51_7097678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bb79f2381c36cc662e83100176560231ffd85b22df220ade1cc0a925bda730 +size 400290 diff --git a/datasets/xianshiping/val/images/订单1805490_51_7097677.jpg b/datasets/xianshiping/val/images/订单1805490_51_7097677.jpg new file mode 100644 index 0000000..1da46a0 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805490_51_7097677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccf74037a38c81b7d6c0e1c630f9cb5318dcb8f2e5190e8a415870f2a156ab2 +size 70263 diff --git a/datasets/xianshiping/val/images/订单1805494_51_7097669.jpg b/datasets/xianshiping/val/images/订单1805494_51_7097669.jpg new file mode 100644 index 0000000..603588d --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805494_51_7097669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4403806aa518c2be4c82973140b6d0739a52b297a4504f563483804b324427d6 +size 137315 diff --git a/datasets/xianshiping/val/images/订单1805495_51_7097888.jpg b/datasets/xianshiping/val/images/订单1805495_51_7097888.jpg new file mode 100644 index 0000000..89adaeb --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805495_51_7097888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b933109b88d68a7a0618165810b3822727a85838f624b42d14fa2464c666e48c +size 125656 diff --git a/datasets/xianshiping/val/images/订单1805497_51_7097714.jpg b/datasets/xianshiping/val/images/订单1805497_51_7097714.jpg new file mode 100644 index 0000000..859a616 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805497_51_7097714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e66a757028c439ca78fa82f18e36224a8b961d622b7079f3825468ffae92010 +size 76771 diff --git a/datasets/xianshiping/val/images/订单1805498_51_7097737.jpg b/datasets/xianshiping/val/images/订单1805498_51_7097737.jpg new file mode 100644 index 0000000..36a83fa --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805498_51_7097737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283f94112c55884b878a8e778cacce2ac3f7ac9d1b6fe0047d445e3a9480b34c +size 109781 diff --git a/datasets/xianshiping/val/images/订单1805499_51_7097753.jpg b/datasets/xianshiping/val/images/订单1805499_51_7097753.jpg new file mode 100644 index 0000000..50c1ceb --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805499_51_7097753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175e1f8d23c215613a4577632d6d7c941a8d6e7f51591f48d62f22e432075250 +size 110251 diff --git a/datasets/xianshiping/val/images/订单1805500_51_7097767.jpg b/datasets/xianshiping/val/images/订单1805500_51_7097767.jpg new file mode 100644 index 0000000..d18ed1c --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805500_51_7097767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eb86f2f7541544214c497001198d6608d0640bfddccbe5fcef3654712ead2 +size 118271 diff --git a/datasets/xianshiping/val/images/订单1805506_51_7097821.jpg b/datasets/xianshiping/val/images/订单1805506_51_7097821.jpg new file mode 100644 index 0000000..b221870 --- /dev/null +++ b/datasets/xianshiping/val/images/订单1805506_51_7097821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae702c1e13fa7d12ec23613e015a37b7b53b7c118648d0ba761cd546b441d2cd +size 1026104 diff --git a/datasets/xianshiping/val/labels/订单1804264_51_7086683.txt b/datasets/xianshiping/val/labels/订单1804264_51_7086683.txt new file mode 100644 index 0000000..bad852c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804264_51_7086683.txt @@ -0,0 +1 @@ +6 0.128060 0.300804 0.124727 0.510078 0.554115 0.523863 0.584076 0.324618 diff --git a/datasets/xianshiping/val/labels/订单1804266_51_7086351.txt b/datasets/xianshiping/val/labels/订单1804266_51_7086351.txt new file mode 100644 index 0000000..a40ea8b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804266_51_7086351.txt @@ -0,0 +1 @@ +6 0.402227 0.461201 0.387188 0.582754 0.659544 0.585254 0.657865 0.466211 diff --git a/datasets/xianshiping/val/labels/订单1804271_51_7086393.txt b/datasets/xianshiping/val/labels/订单1804271_51_7086393.txt new file mode 100644 index 0000000..92a9a59 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804271_51_7086393.txt @@ -0,0 +1 @@ +6 0.279564 0.288340 0.278314 0.401120 0.467539 0.403626 0.465033 0.287083 diff --git a/datasets/xianshiping/val/labels/订单1804279_51_7086490.txt b/datasets/xianshiping/val/labels/订单1804279_51_7086490.txt new file mode 100644 index 0000000..2a9ee24 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804279_51_7086490.txt @@ -0,0 +1 @@ +6 0.389714 0.377246 0.374674 0.490029 0.631979 0.520098 0.640339 0.401055 diff --git a/datasets/xianshiping/val/labels/订单1804280_51_7086504.txt b/datasets/xianshiping/val/labels/订单1804280_51_7086504.txt new file mode 100644 index 0000000..8c3b441 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804280_51_7086504.txt @@ -0,0 +1 @@ +6 0.391380 0.500049 0.374674 0.590273 0.578516 0.612832 0.593555 0.517598 diff --git a/datasets/xianshiping/val/labels/订单1804281_51_7086514.txt b/datasets/xianshiping/val/labels/订单1804281_51_7086514.txt new file mode 100644 index 0000000..f428f28 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804281_51_7086514.txt @@ -0,0 +1 @@ +6 0.356289 0.526367 0.366315 0.616592 0.566823 0.601553 0.551784 0.506318 diff --git a/datasets/xianshiping/val/labels/订单1804283_51_7086538.txt b/datasets/xianshiping/val/labels/订单1804283_51_7086538.txt new file mode 100644 index 0000000..5ee138f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804283_51_7086538.txt @@ -0,0 +1 @@ +6 0.384701 0.403564 0.386367 0.516338 0.652031 0.513838 0.638659 0.393535 diff --git a/datasets/xianshiping/val/labels/订单1804284_51_7086566.txt b/datasets/xianshiping/val/labels/订单1804284_51_7086566.txt new file mode 100644 index 0000000..d1dbbb3 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804284_51_7086566.txt @@ -0,0 +1 @@ +6 0.384951 0.111525 0.390735 0.331460 0.561686 0.321460 0.553333 0.111525 diff --git a/datasets/xianshiping/val/labels/订单1804288_51_7086560.txt b/datasets/xianshiping/val/labels/订单1804288_51_7086560.txt new file mode 100644 index 0000000..4f4984b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804288_51_7086560.txt @@ -0,0 +1 @@ +6 0.518359 0.396045 0.526719 0.471230 0.718867 0.457441 0.705495 0.378496 diff --git a/datasets/xianshiping/val/labels/订单1804296_51_7086646.txt b/datasets/xianshiping/val/labels/订单1804296_51_7086646.txt new file mode 100644 index 0000000..e3878ee --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804296_51_7086646.txt @@ -0,0 +1 @@ +6 0.404740 0.347168 0.434818 0.456191 0.703828 0.407314 0.663724 0.292031 diff --git a/datasets/xianshiping/val/labels/订单1804297_51_7086665.txt b/datasets/xianshiping/val/labels/订单1804297_51_7086665.txt new file mode 100644 index 0000000..0505770 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804297_51_7086665.txt @@ -0,0 +1 @@ +6 0.264401 0.419854 0.256042 0.548926 0.528385 0.555186 0.533398 0.434893 diff --git a/datasets/xianshiping/val/labels/订单1804300_51_7086694.txt b/datasets/xianshiping/val/labels/订单1804300_51_7086694.txt new file mode 100644 index 0000000..c599739 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804300_51_7086694.txt @@ -0,0 +1 @@ +6 0.346263 0.221855 0.366315 0.313330 0.580182 0.279502 0.543424 0.190527 diff --git a/datasets/xianshiping/val/labels/订单1804301_51_7086834.txt b/datasets/xianshiping/val/labels/订单1804301_51_7086834.txt new file mode 100644 index 0000000..3b6d1a2 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804301_51_7086834.txt @@ -0,0 +1 @@ +6 0.447365 0.408576 0.460735 0.573986 0.851861 0.571483 0.808405 0.398546 diff --git a/datasets/xianshiping/val/labels/订单1804303_51_7086722.txt b/datasets/xianshiping/val/labels/订单1804303_51_7086722.txt new file mode 100644 index 0000000..6a45fe4 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804303_51_7086722.txt @@ -0,0 +1 @@ +6 0.363072 0.478696 0.354722 0.568921 0.560233 0.571429 0.558561 0.482454 diff --git a/datasets/xianshiping/val/labels/订单1804305_51_7086730.txt b/datasets/xianshiping/val/labels/订单1804305_51_7086730.txt new file mode 100644 index 0000000..7d5ee20 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804305_51_7086730.txt @@ -0,0 +1 @@ +6 0.386328 0.560156 0.393047 0.667969 0.628633 0.662959 0.618620 0.552686 diff --git a/datasets/xianshiping/val/labels/订单1804307_51_7086734.txt b/datasets/xianshiping/val/labels/订单1804307_51_7086734.txt new file mode 100644 index 0000000..84fffe6 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804307_51_7086734.txt @@ -0,0 +1 @@ +6 0.451680 0.456127 0.410065 0.552618 0.616445 0.609010 0.656393 0.503745 diff --git a/datasets/xianshiping/val/labels/订单1804310_51_7086877.txt b/datasets/xianshiping/val/labels/订单1804310_51_7086877.txt new file mode 100644 index 0000000..c5d4f1f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804310_51_7086877.txt @@ -0,0 +1 @@ +6 0.306172 0.275742 0.312852 0.437393 0.700482 0.418594 0.672083 0.261953 diff --git a/datasets/xianshiping/val/labels/订单1804312_51_7086770.txt b/datasets/xianshiping/val/labels/订单1804312_51_7086770.txt new file mode 100644 index 0000000..ba98489 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804312_51_7086770.txt @@ -0,0 +1 @@ +6 0.383122 0.542608 0.381456 0.631579 0.580283 0.634083 0.578611 0.538846 diff --git a/datasets/xianshiping/val/labels/订单1804316_51_7086793.txt b/datasets/xianshiping/val/labels/订单1804316_51_7086793.txt new file mode 100644 index 0000000..cc0fa5c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804316_51_7086793.txt @@ -0,0 +1 @@ +6 0.526719 0.443662 0.543424 0.615342 0.690495 0.605273 0.673750 0.434893 diff --git a/datasets/xianshiping/val/labels/订单1804319_51_7086838.txt b/datasets/xianshiping/val/labels/订单1804319_51_7086838.txt new file mode 100644 index 0000000..a276638 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804319_51_7086838.txt @@ -0,0 +1 @@ +6 0.351276 0.332129 0.372995 0.451182 0.611927 0.431133 0.591875 0.312080 diff --git a/datasets/xianshiping/val/labels/订单1804320_51_7086858.txt b/datasets/xianshiping/val/labels/订单1804320_51_7086858.txt new file mode 100644 index 0000000..63393c8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804320_51_7086858.txt @@ -0,0 +1 @@ +6 0.403172 0.365917 0.414889 0.469917 0.655472 0.453633 0.625394 0.349625 diff --git a/datasets/xianshiping/val/labels/订单1804322_51_7086804.txt b/datasets/xianshiping/val/labels/订单1804322_51_7086804.txt new file mode 100644 index 0000000..f923b38 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804322_51_7086804.txt @@ -0,0 +1 @@ +6 0.198471 0.483696 0.195137 0.555127 0.365556 0.556373 0.367190 0.482451 diff --git a/datasets/xianshiping/val/labels/订单1804329_51_7086883.txt b/datasets/xianshiping/val/labels/订单1804329_51_7086883.txt new file mode 100644 index 0000000..06041b7 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804329_51_7086883.txt @@ -0,0 +1 @@ +6 0.292799 0.375986 0.302826 0.528877 0.623633 0.520098 0.630312 0.370977 diff --git a/datasets/xianshiping/val/labels/订单1804330_51_7086948.txt b/datasets/xianshiping/val/labels/订单1804330_51_7086948.txt new file mode 100644 index 0000000..82a51b5 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804330_51_7086948.txt @@ -0,0 +1 @@ +6 0.478268 0.374736 0.486615 0.469980 0.707174 0.456191 0.692135 0.360957 diff --git a/datasets/xianshiping/val/labels/订单1804345_51_7087222.txt b/datasets/xianshiping/val/labels/订单1804345_51_7087222.txt new file mode 100644 index 0000000..4920dd3 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804345_51_7087222.txt @@ -0,0 +1 @@ +6 0.391478 0.392229 0.389806 0.492479 0.591978 0.496242 0.598661 0.394738 diff --git a/datasets/xianshiping/val/labels/订单1804348_51_7086990.txt b/datasets/xianshiping/val/labels/订单1804348_51_7086990.txt new file mode 100644 index 0000000..1f185df --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804348_51_7086990.txt @@ -0,0 +1 @@ +6 0.456639 0.525062 0.424894 0.604008 0.600333 0.651629 0.623728 0.566417 diff --git a/datasets/xianshiping/val/labels/订单1804351_51_7087028.txt b/datasets/xianshiping/val/labels/订单1804351_51_7087028.txt new file mode 100644 index 0000000..6fb4c6c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804351_51_7087028.txt @@ -0,0 +1 @@ +6 0.531732 0.319600 0.541758 0.531377 0.713854 0.526367 0.698815 0.318350 diff --git a/datasets/xianshiping/val/labels/订单1804354_51_7087141.txt b/datasets/xianshiping/val/labels/订单1804354_51_7087141.txt new file mode 100644 index 0000000..419c325 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804354_51_7087141.txt @@ -0,0 +1 @@ +6 0.357203 0.526304 0.363895 0.637833 0.597804 0.635324 0.592797 0.523794 diff --git a/datasets/xianshiping/val/labels/订单1804355_51_7087137.txt b/datasets/xianshiping/val/labels/订单1804355_51_7087137.txt new file mode 100644 index 0000000..765f429 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804355_51_7087137.txt @@ -0,0 +1 @@ +6 0.655472 0.471179 0.658811 0.612783 0.787467 0.606517 0.775772 0.467417 diff --git a/datasets/xianshiping/val/labels/订单1804356_51_7087113.txt b/datasets/xianshiping/val/labels/订单1804356_51_7087113.txt new file mode 100644 index 0000000..01e942a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804356_51_7087113.txt @@ -0,0 +1 @@ +6 0.324509 0.420995 0.304509 0.477388 0.504479 0.494931 0.522239 0.429766 diff --git a/datasets/xianshiping/val/labels/订单1804357_51_7087171.txt b/datasets/xianshiping/val/labels/订单1804357_51_7087171.txt new file mode 100644 index 0000000..06c0d61 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804357_51_7087171.txt @@ -0,0 +1 @@ +6 0.520039 0.365967 0.494974 0.477490 0.753958 0.503809 0.767318 0.388525 diff --git a/datasets/xianshiping/val/labels/订单1804358_51_7087420.txt b/datasets/xianshiping/val/labels/订单1804358_51_7087420.txt new file mode 100644 index 0000000..6c42483 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804358_51_7087420.txt @@ -0,0 +1 @@ +6 0.276189 0.540100 0.274517 0.609021 0.441606 0.605263 0.438261 0.537596 diff --git a/datasets/xianshiping/val/labels/订单1804361_51_7087277.txt b/datasets/xianshiping/val/labels/订单1804361_51_7087277.txt new file mode 100644 index 0000000..dd6ade2 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804361_51_7087277.txt @@ -0,0 +1 @@ +6 0.250299 0.473667 0.248633 0.565147 0.455000 0.561392 0.451680 0.469912 diff --git a/datasets/xianshiping/val/labels/订单1804364_51_7087186.txt b/datasets/xianshiping/val/labels/订单1804364_51_7087186.txt new file mode 100644 index 0000000..62ec684 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804364_51_7087186.txt @@ -0,0 +1 @@ +6 0.328942 0.384654 0.306733 0.451073 0.517807 0.463599 0.531135 0.392171 diff --git a/datasets/xianshiping/val/labels/订单1804365_51_7087279.txt b/datasets/xianshiping/val/labels/订单1804365_51_7087279.txt new file mode 100644 index 0000000..2d89623 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804365_51_7087279.txt @@ -0,0 +1 @@ +6 0.409792 0.546311 0.419815 0.624010 0.573530 0.618993 0.570185 0.542552 diff --git a/datasets/xianshiping/val/labels/订单1804368_51_7087281.txt b/datasets/xianshiping/val/labels/订单1804368_51_7087281.txt new file mode 100644 index 0000000..e2b27e9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804368_51_7087281.txt @@ -0,0 +1 @@ +6 0.428138 0.334639 0.438164 0.483760 0.737240 0.474990 0.717201 0.328369 diff --git a/datasets/xianshiping/val/labels/订单1804374_51_7087324.txt b/datasets/xianshiping/val/labels/订单1804374_51_7087324.txt new file mode 100644 index 0000000..5279d38 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804374_51_7087324.txt @@ -0,0 +1 @@ +6 0.202578 0.497549 0.210924 0.595293 0.449857 0.576494 0.424792 0.476240 diff --git a/datasets/xianshiping/val/labels/订单1804380_51_7087338.txt b/datasets/xianshiping/val/labels/订单1804380_51_7087338.txt new file mode 100644 index 0000000..21a3733 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804380_51_7087338.txt @@ -0,0 +1 @@ +6 0.491655 0.393429 0.414803 0.545061 0.727245 0.641554 0.822488 0.498698 diff --git a/datasets/xianshiping/val/labels/订单1804383_51_7087409.txt b/datasets/xianshiping/val/labels/订单1804383_51_7087409.txt new file mode 100644 index 0000000..c3bc10b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804383_51_7087409.txt @@ -0,0 +1 @@ +6 0.543228 0.677936 0.642852 0.685456 0.651309 0.473678 0.553564 0.468665 diff --git a/datasets/xianshiping/val/labels/订单1804384_51_7087390.txt b/datasets/xianshiping/val/labels/订单1804384_51_7087390.txt new file mode 100644 index 0000000..fedf85b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804384_51_7087390.txt @@ -0,0 +1 @@ +6 0.342893 0.526340 0.337880 0.632860 0.556760 0.632860 0.553413 0.518820 diff --git a/datasets/xianshiping/val/labels/订单1804385_51_7087531.txt b/datasets/xianshiping/val/labels/订单1804385_51_7087531.txt new file mode 100644 index 0000000..cec4ebd --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804385_51_7087531.txt @@ -0,0 +1 @@ +6 0.470824 0.309510 0.480850 0.421039 0.689699 0.409765 0.678013 0.301990 diff --git a/datasets/xianshiping/val/labels/订单1804387_51_7087408.txt b/datasets/xianshiping/val/labels/订单1804387_51_7087408.txt new file mode 100644 index 0000000..f2abb26 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804387_51_7087408.txt @@ -0,0 +1 @@ +6 0.170928 0.488721 0.179283 0.590225 0.371428 0.576442 0.369756 0.479950 diff --git a/datasets/xianshiping/val/labels/订单1804388_51_7087485.txt b/datasets/xianshiping/val/labels/订单1804388_51_7087485.txt new file mode 100644 index 0000000..1188f61 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804388_51_7087485.txt @@ -0,0 +1 @@ +6 0.485802 0.414732 0.490819 0.545052 0.764833 0.548815 0.758155 0.410969 diff --git a/datasets/xianshiping/val/labels/订单1804391_51_7087435.txt b/datasets/xianshiping/val/labels/订单1804391_51_7087435.txt new file mode 100644 index 0000000..c31f9fe --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804391_51_7087435.txt @@ -0,0 +1 @@ +6 0.390953 0.596467 0.387193 0.682933 0.530053 0.677920 0.523787 0.592707 diff --git a/datasets/xianshiping/val/labels/订单1804392_51_7087455.txt b/datasets/xianshiping/val/labels/订单1804392_51_7087455.txt new file mode 100644 index 0000000..ecfa149 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804392_51_7087455.txt @@ -0,0 +1 @@ +6 0.638659 0.639150 0.525052 0.674238 0.610260 0.822109 0.727214 0.780752 diff --git a/datasets/xianshiping/val/labels/订单1804397_51_7087486.txt b/datasets/xianshiping/val/labels/订单1804397_51_7087486.txt new file mode 100644 index 0000000..0912358 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804397_51_7087486.txt @@ -0,0 +1 @@ +6 0.175846 0.490029 0.272747 0.540146 0.393047 0.416094 0.292799 0.370977 diff --git a/datasets/xianshiping/val/labels/订单1804398_51_7087556.txt b/datasets/xianshiping/val/labels/订单1804398_51_7087556.txt new file mode 100644 index 0000000..81d045c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804398_51_7087556.txt @@ -0,0 +1 @@ +6 0.489988 0.436042 0.454907 0.547569 0.753935 0.576389 0.755648 0.456085 diff --git a/datasets/xianshiping/val/labels/订单1804400_51_7087530.txt b/datasets/xianshiping/val/labels/订单1804400_51_7087530.txt new file mode 100644 index 0000000..a48892a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804400_51_7087530.txt @@ -0,0 +1 @@ +6 0.419170 0.244355 0.424805 0.367161 0.578003 0.359642 0.564844 0.239342 diff --git a/datasets/xianshiping/val/labels/订单1804402_51_7087549.txt b/datasets/xianshiping/val/labels/订单1804402_51_7087549.txt new file mode 100644 index 0000000..cd1bf4f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804402_51_7087549.txt @@ -0,0 +1 @@ +6 0.354622 0.565215 0.426471 0.664209 0.613607 0.585264 0.540078 0.493789 diff --git a/datasets/xianshiping/val/labels/订单1804404_51_7088648.txt b/datasets/xianshiping/val/labels/订单1804404_51_7088648.txt new file mode 100644 index 0000000..d07d49c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804404_51_7088648.txt @@ -0,0 +1 @@ +6 0.462074 0.177211 0.447936 0.350022 0.584181 0.412865 0.593824 0.237200 diff --git a/datasets/xianshiping/val/labels/订单1804405_51_7087580.txt b/datasets/xianshiping/val/labels/订单1804405_51_7087580.txt new file mode 100644 index 0000000..3859200 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804405_51_7087580.txt @@ -0,0 +1 @@ +6 0.500067 0.526300 0.508403 0.600225 0.678830 0.590200 0.670477 0.515013 diff --git a/datasets/xianshiping/val/labels/订单1804409_51_7087612.txt b/datasets/xianshiping/val/labels/订单1804409_51_7087612.txt new file mode 100644 index 0000000..c461288 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804409_51_7087612.txt @@ -0,0 +1 @@ +6 0.346263 0.464961 0.334570 0.596543 0.610260 0.609072 0.630312 0.476240 diff --git a/datasets/xianshiping/val/labels/订单1804410_51_7087567.txt b/datasets/xianshiping/val/labels/订单1804410_51_7087567.txt new file mode 100644 index 0000000..c8f252c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804410_51_7087567.txt @@ -0,0 +1 @@ +6 0.319531 0.429883 0.322917 0.533887 0.561810 0.525117 0.551784 0.419854 diff --git a/datasets/xianshiping/val/labels/订单1804415_51_7087728.txt b/datasets/xianshiping/val/labels/订单1804415_51_7087728.txt new file mode 100644 index 0000000..0fce1e8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804415_51_7087728.txt @@ -0,0 +1 @@ +6 0.276094 0.649170 0.389714 0.720605 0.538411 0.599053 0.438164 0.523857 diff --git a/datasets/xianshiping/val/labels/订单1804416_51_7087651.txt b/datasets/xianshiping/val/labels/订单1804416_51_7087651.txt new file mode 100644 index 0000000..7b1055b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804416_51_7087651.txt @@ -0,0 +1 @@ +6 0.390764 0.606479 0.415983 0.665376 0.612107 0.647832 0.592489 0.590190 diff --git a/datasets/xianshiping/val/labels/订单1804417_51_7087688.txt b/datasets/xianshiping/val/labels/订单1804417_51_7087688.txt new file mode 100644 index 0000000..e438b2c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1804417_51_7087688.txt @@ -0,0 +1 @@ +6 0.429805 0.406064 0.421458 0.495039 0.611927 0.515088 0.635326 0.422354 diff --git a/datasets/xianshiping/val/labels/订单1805100_51_7094084.txt b/datasets/xianshiping/val/labels/订单1805100_51_7094084.txt new file mode 100644 index 0000000..8a005cf --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805100_51_7094084.txt @@ -0,0 +1 @@ +6 0.383711 0.425186 0.369714 0.502617 0.563945 0.526240 0.567448 0.446182 0.383711 0.423877 diff --git a/datasets/xianshiping/val/labels/订单1805101_51_7094057.txt b/datasets/xianshiping/val/labels/订单1805101_51_7094057.txt new file mode 100644 index 0000000..b1af5b8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805101_51_7094057.txt @@ -0,0 +1 @@ +6 0.366211 0.314951 0.367969 0.401562 0.551693 0.397627 0.548190 0.312324 0.369714 0.316260 diff --git a/datasets/xianshiping/val/labels/订单1805102_51_7094011.txt b/datasets/xianshiping/val/labels/订单1805102_51_7094011.txt new file mode 100644 index 0000000..50d07b7 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805102_51_7094011.txt @@ -0,0 +1 @@ +6 0.485195 0.430439 0.464206 0.531484 0.674180 0.565605 0.700430 0.469805 0.493945 0.433066 diff --git a/datasets/xianshiping/val/labels/订单1805103_51_7093987.txt b/datasets/xianshiping/val/labels/订单1805103_51_7093987.txt new file mode 100644 index 0000000..e50d783 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805103_51_7093987.txt @@ -0,0 +1 @@ +6 0.285615 0.442295 0.292623 0.595840 0.642582 0.584027 0.625082 0.427859 0.282117 0.442295 diff --git a/datasets/xianshiping/val/labels/订单1805108_51_7094036.txt b/datasets/xianshiping/val/labels/订单1805108_51_7094036.txt new file mode 100644 index 0000000..c4bba9c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805108_51_7094036.txt @@ -0,0 +1 @@ +6 0.500951 0.448809 0.499206 0.534111 0.681172 0.544609 0.684674 0.463242 0.514948 0.448809 diff --git a/datasets/xianshiping/val/labels/订单1805109_51_7094037.txt b/datasets/xianshiping/val/labels/订单1805109_51_7094037.txt new file mode 100644 index 0000000..9cc1fc8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805109_51_7094037.txt @@ -0,0 +1 @@ +6 0.626940 0.278203 0.569193 0.389756 0.803659 0.461934 0.866654 0.341201 diff --git a/datasets/xianshiping/val/labels/订单1805115_51_7094131.txt b/datasets/xianshiping/val/labels/订单1805115_51_7094131.txt new file mode 100644 index 0000000..5af7290 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805115_51_7094131.txt @@ -0,0 +1 @@ +6 0.346871 0.338629 0.338129 0.448871 0.572602 0.455428 0.576096 0.354386 diff --git a/datasets/xianshiping/val/labels/订单1805119_51_7094223.txt b/datasets/xianshiping/val/labels/订单1805119_51_7094223.txt new file mode 100644 index 0000000..83fe658 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805119_51_7094223.txt @@ -0,0 +1 @@ +6 0.332973 0.489495 0.315477 0.604980 0.570943 0.624665 0.588443 0.510493 0.329473 0.493432 diff --git a/datasets/xianshiping/val/labels/订单1805120_51_7094214.txt b/datasets/xianshiping/val/labels/订单1805120_51_7094214.txt new file mode 100644 index 0000000..c893b9a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805120_51_7094214.txt @@ -0,0 +1 @@ +6 0.471198 0.534111 0.437956 0.618105 0.640938 0.666660 0.675924 0.574795 diff --git a/datasets/xianshiping/val/labels/订单1805123_51_7094124.txt b/datasets/xianshiping/val/labels/订单1805123_51_7094124.txt new file mode 100644 index 0000000..afb8c2e --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805123_51_7094124.txt @@ -0,0 +1 @@ +6 0.534078 0.351737 0.535828 0.442292 0.752800 0.435729 0.747550 0.346492 diff --git a/datasets/xianshiping/val/labels/订单1805124_51_7094151.txt b/datasets/xianshiping/val/labels/订单1805124_51_7094151.txt new file mode 100644 index 0000000..812a1e6 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805124_51_7094151.txt @@ -0,0 +1 @@ +6 0.418693 0.527530 0.425680 0.591840 0.576173 0.589210 0.579667 0.518350 diff --git a/datasets/xianshiping/val/labels/订单1805128_51_7094217.txt b/datasets/xianshiping/val/labels/订单1805128_51_7094217.txt new file mode 100644 index 0000000..27091de --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805128_51_7094217.txt @@ -0,0 +1 @@ +6 0.332850 0.396358 0.353850 0.629954 0.544578 0.620767 0.541078 0.393733 diff --git a/datasets/xianshiping/val/labels/订单1805129_51_7094233.txt b/datasets/xianshiping/val/labels/订单1805129_51_7094233.txt new file mode 100644 index 0000000..46ecd95 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805129_51_7094233.txt @@ -0,0 +1 @@ +6 0.345221 0.552480 0.350469 0.661406 0.576185 0.648281 0.576185 0.543301 diff --git a/datasets/xianshiping/val/labels/订单1805131_51_7094253.txt b/datasets/xianshiping/val/labels/订单1805131_51_7094253.txt new file mode 100644 index 0000000..fa6e620 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805131_51_7094253.txt @@ -0,0 +1 @@ +6 0.425716 0.586602 0.443203 0.678467 0.632188 0.654844 0.612930 0.566924 diff --git a/datasets/xianshiping/val/labels/订单1805134_51_7094282.txt b/datasets/xianshiping/val/labels/订单1805134_51_7094282.txt new file mode 100644 index 0000000..7189045 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805134_51_7094282.txt @@ -0,0 +1 @@ +6 0.296224 0.412061 0.320716 0.523613 0.569193 0.496055 0.544701 0.387129 diff --git a/datasets/xianshiping/val/labels/订单1805137_51_7094244.txt b/datasets/xianshiping/val/labels/订单1805137_51_7094244.txt new file mode 100644 index 0000000..9fcf834 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805137_51_7094244.txt @@ -0,0 +1 @@ +6 0.629424 0.301829 0.614663 0.501309 0.705210 0.517057 0.717021 0.316270 diff --git a/datasets/xianshiping/val/labels/订单1805141_51_7094347.txt b/datasets/xianshiping/val/labels/订单1805141_51_7094347.txt new file mode 100644 index 0000000..c09bab8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805141_51_7094347.txt @@ -0,0 +1 @@ +6 0.168490 0.467178 0.175495 0.556426 0.395964 0.539365 0.388958 0.451436 diff --git a/datasets/xianshiping/val/labels/订单1805142_51_7094266.txt b/datasets/xianshiping/val/labels/订单1805142_51_7094266.txt new file mode 100644 index 0000000..36edcb5 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805142_51_7094266.txt @@ -0,0 +1 @@ +6 0.324106 0.305808 0.352100 0.465913 0.698556 0.452788 0.686306 0.290058 0.325856 0.305808 diff --git a/datasets/xianshiping/val/labels/订单1805143_51_7094313.txt b/datasets/xianshiping/val/labels/订单1805143_51_7094313.txt new file mode 100644 index 0000000..1fa511d --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805143_51_7094313.txt @@ -0,0 +1 @@ +6 0.422729 0.188971 0.420762 0.291335 0.586118 0.299206 0.583164 0.188971 diff --git a/datasets/xianshiping/val/labels/订单1805149_51_7094351.txt b/datasets/xianshiping/val/labels/订单1805149_51_7094351.txt new file mode 100644 index 0000000..b9b66c5 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805149_51_7094351.txt @@ -0,0 +1 @@ +6 0.491338 0.416003 0.470334 0.492119 0.652318 0.523616 0.669815 0.450130 diff --git a/datasets/xianshiping/val/labels/订单1805151_51_7094416.txt b/datasets/xianshiping/val/labels/订单1805151_51_7094416.txt new file mode 100644 index 0000000..07d70db --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805151_51_7094416.txt @@ -0,0 +1 @@ +6 0.338100 0.574838 0.341600 0.692946 0.597067 0.686383 0.595322 0.572213 0.336350 0.576150 diff --git a/datasets/xianshiping/val/labels/订单1805155_51_7094474.txt b/datasets/xianshiping/val/labels/订单1805155_51_7094474.txt new file mode 100644 index 0000000..86fa128 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805155_51_7094474.txt @@ -0,0 +1 @@ +6 0.241941 0.416006 0.262343 0.484248 0.542191 0.468501 0.515954 0.393696 0.239024 0.413379 diff --git a/datasets/xianshiping/val/labels/订单1805158_51_7094455.txt b/datasets/xianshiping/val/labels/订单1805158_51_7094455.txt new file mode 100644 index 0000000..abb1443 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805158_51_7094455.txt @@ -0,0 +1 @@ +6 0.283971 0.397627 0.278724 0.473740 0.467708 0.475059 0.476458 0.395000 diff --git a/datasets/xianshiping/val/labels/订单1805164_51_7094561.txt b/datasets/xianshiping/val/labels/订单1805164_51_7094561.txt new file mode 100644 index 0000000..7e81935 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805164_51_7094561.txt @@ -0,0 +1 @@ +6 0.549948 0.519678 0.560443 0.656162 0.845651 0.644346 0.833411 0.506553 0.546445 0.523613 diff --git a/datasets/xianshiping/val/labels/订单1805167_51_7094525.txt b/datasets/xianshiping/val/labels/订单1805167_51_7094525.txt new file mode 100644 index 0000000..5cb6e67 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805167_51_7094525.txt @@ -0,0 +1 @@ +6 0.135128 0.519717 0.163122 0.589271 0.332850 0.551212 0.306606 0.489533 0.136878 0.518404 diff --git a/datasets/xianshiping/val/labels/订单1805168_51_7094620.txt b/datasets/xianshiping/val/labels/订单1805168_51_7094620.txt new file mode 100644 index 0000000..fda779f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805168_51_7094620.txt @@ -0,0 +1 @@ +6 0.465933 0.591840 0.451933 0.686320 0.667160 0.703390 0.672400 0.598400 0.465933 0.589210 diff --git a/datasets/xianshiping/val/labels/订单1805170_51_7094495.txt b/datasets/xianshiping/val/labels/订单1805170_51_7094495.txt new file mode 100644 index 0000000..7e24bd9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805170_51_7094495.txt @@ -0,0 +1 @@ +6 0.535920 0.384490 0.528920 0.510470 0.639160 0.513100 0.649653 0.389740 0.539427 0.383180 diff --git a/datasets/xianshiping/val/labels/订单1805172_51_7094657.txt b/datasets/xianshiping/val/labels/订单1805172_51_7094657.txt new file mode 100644 index 0000000..f028e5a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805172_51_7094657.txt @@ -0,0 +1 @@ +6 0.418589 0.290058 0.436089 0.564338 0.640811 0.551212 0.618067 0.293996 0.416844 0.290058 diff --git a/datasets/xianshiping/val/labels/订单1805175_51_7094553.txt b/datasets/xianshiping/val/labels/订单1805175_51_7094553.txt new file mode 100644 index 0000000..4d6650c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805175_51_7094553.txt @@ -0,0 +1 @@ +6 0.336333 0.421279 0.327577 0.535452 0.612795 0.549885 0.625038 0.429154 0.332833 0.422587 diff --git a/datasets/xianshiping/val/labels/订单1805177_51_7095468.txt b/datasets/xianshiping/val/labels/订单1805177_51_7095468.txt new file mode 100644 index 0000000..2e7b6d6 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805177_51_7095468.txt @@ -0,0 +1 @@ +6 0.464193 0.471157 0.460703 0.563020 0.678568 0.564333 0.680312 0.464598 0.460703 0.469843 diff --git a/datasets/xianshiping/val/labels/订单1805181_51_7094604.txt b/datasets/xianshiping/val/labels/订单1805181_51_7094604.txt new file mode 100644 index 0000000..fe184aa --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805181_51_7094604.txt @@ -0,0 +1 @@ +6 0.375266 0.430435 0.370604 0.492115 0.596705 0.494735 0.585053 0.422560 0.368268 0.430435 diff --git a/datasets/xianshiping/val/labels/订单1805182_51_7094646.txt b/datasets/xianshiping/val/labels/订单1805182_51_7094646.txt new file mode 100644 index 0000000..5c9c3ad --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805182_51_7094646.txt @@ -0,0 +1 @@ +6 0.418693 0.307060 0.420440 0.393670 0.618160 0.391050 0.616413 0.309680 0.416933 0.305750 diff --git a/datasets/xianshiping/val/labels/订单1805187_51_7094690.txt b/datasets/xianshiping/val/labels/订单1805187_51_7094690.txt new file mode 100644 index 0000000..5618f31 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805187_51_7094690.txt @@ -0,0 +1 @@ +6 0.397708 0.442246 0.397708 0.543301 0.618190 0.543301 0.626940 0.444873 diff --git a/datasets/xianshiping/val/labels/订单1805191_51_7094738.txt b/datasets/xianshiping/val/labels/订单1805191_51_7094738.txt new file mode 100644 index 0000000..c40feca --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805191_51_7094738.txt @@ -0,0 +1 @@ +6 0.334727 0.457998 0.341719 0.607598 0.640938 0.601045 0.637435 0.446182 0.332969 0.457998 diff --git a/datasets/xianshiping/val/labels/订单1805193_51_7094789.txt b/datasets/xianshiping/val/labels/订单1805193_51_7094789.txt new file mode 100644 index 0000000..21537b8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805193_51_7094789.txt @@ -0,0 +1 @@ +6 0.416933 0.560340 0.395933 0.646950 0.623413 0.669260 0.633907 0.578710 0.418693 0.559030 diff --git a/datasets/xianshiping/val/labels/订单1805202_51_7094824.txt b/datasets/xianshiping/val/labels/订单1805202_51_7094824.txt new file mode 100644 index 0000000..ee5c7c1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805202_51_7094824.txt @@ -0,0 +1 @@ +6 0.427321 0.433087 0.404564 0.538077 0.658282 0.553817 0.674038 0.446212 0.430821 0.431769 diff --git a/datasets/xianshiping/val/labels/订单1805204_51_7094885.txt b/datasets/xianshiping/val/labels/订单1805204_51_7094885.txt new file mode 100644 index 0000000..3be4674 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805204_51_7094885.txt @@ -0,0 +1 @@ +6 0.271707 0.514410 0.289200 0.591840 0.448427 0.568210 0.425680 0.494720 0.262960 0.517030 diff --git a/datasets/xianshiping/val/labels/订单1805205_51_7094952.txt b/datasets/xianshiping/val/labels/订单1805205_51_7094952.txt new file mode 100644 index 0000000..c627d09 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805205_51_7094952.txt @@ -0,0 +1 @@ +6 0.240980 0.421294 0.228732 0.549902 0.545451 0.576147 0.552444 0.444912 0.240980 0.419980 diff --git a/datasets/xianshiping/val/labels/订单1805207_51_7094908.txt b/datasets/xianshiping/val/labels/订单1805207_51_7094908.txt new file mode 100644 index 0000000..2954ce8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805207_51_7094908.txt @@ -0,0 +1 @@ +6 0.502539 0.452784 0.511250 0.536775 0.722148 0.523657 0.709948 0.437039 0.504271 0.451471 diff --git a/datasets/xianshiping/val/labels/订单1805208_51_7094957.txt b/datasets/xianshiping/val/labels/订单1805208_51_7094957.txt new file mode 100644 index 0000000..67ba210 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805208_51_7094957.txt @@ -0,0 +1 @@ +6 0.401961 0.468539 0.398471 0.552529 0.601438 0.557775 0.594444 0.472471 0.400222 0.465912 diff --git a/datasets/xianshiping/val/labels/订单1805212_51_7094977.txt b/datasets/xianshiping/val/labels/订单1805212_51_7094977.txt new file mode 100644 index 0000000..e1d608b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805212_51_7094977.txt @@ -0,0 +1 @@ +6 0.399344 0.435729 0.392344 0.523654 0.621567 0.524967 0.616317 0.429167 0.394094 0.437042 diff --git a/datasets/xianshiping/val/labels/订单1805213_51_7094911.txt b/datasets/xianshiping/val/labels/订单1805213_51_7094911.txt new file mode 100644 index 0000000..e6e6a84 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805213_51_7094911.txt @@ -0,0 +1 @@ +6 0.254090 0.358279 0.164846 0.475077 0.441321 0.584000 0.506051 0.469827 0.257590 0.359596 diff --git a/datasets/xianshiping/val/labels/订单1805217_51_7095036.txt b/datasets/xianshiping/val/labels/订单1805217_51_7095036.txt new file mode 100644 index 0000000..fb63aca --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805217_51_7095036.txt @@ -0,0 +1 @@ +6 0.553322 0.329429 0.551572 0.485596 0.667061 0.485596 0.674061 0.333367 0.544578 0.329429 diff --git a/datasets/xianshiping/val/labels/订单1805223_51_7095092.txt b/datasets/xianshiping/val/labels/订单1805223_51_7095092.txt new file mode 100644 index 0000000..9cf234e --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805223_51_7095092.txt @@ -0,0 +1 @@ +6 0.514838 0.532847 0.502581 0.649644 0.756308 0.661450 0.772049 0.547283 0.509583 0.532847 diff --git a/datasets/xianshiping/val/labels/订单1805233_51_7095227.txt b/datasets/xianshiping/val/labels/订单1805233_51_7095227.txt new file mode 100644 index 0000000..717bd85 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805233_51_7095227.txt @@ -0,0 +1 @@ +6 0.297105 0.488183 0.309354 0.606298 0.571822 0.599732 0.563080 0.480311 0.295363 0.484247 diff --git a/datasets/xianshiping/val/labels/订单1805234_51_7095307.txt b/datasets/xianshiping/val/labels/订单1805234_51_7095307.txt new file mode 100644 index 0000000..51a34fb --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805234_51_7095307.txt @@ -0,0 +1 @@ +6 0.376719 0.616787 0.348724 0.716523 0.590195 0.734902 0.593685 0.635166 0.373216 0.612852 diff --git a/datasets/xianshiping/val/labels/订单1805236_51_7095224.txt b/datasets/xianshiping/val/labels/订单1805236_51_7095224.txt new file mode 100644 index 0000000..c4e7ec1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805236_51_7095224.txt @@ -0,0 +1 @@ +6 0.318971 0.532803 0.304974 0.631221 0.539440 0.636475 0.541198 0.536738 0.317227 0.530176 diff --git a/datasets/xianshiping/val/labels/订单1805239_51_7095196.txt b/datasets/xianshiping/val/labels/订单1805239_51_7095196.txt new file mode 100644 index 0000000..bf206f3 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805239_51_7095196.txt @@ -0,0 +1 @@ +6 0.511427 0.456670 0.399440 0.493410 0.481680 0.628580 0.590160 0.586590 0.513173 0.457980 diff --git a/datasets/xianshiping/val/labels/订单1805247_51_7095293.txt b/datasets/xianshiping/val/labels/订单1805247_51_7095293.txt new file mode 100644 index 0000000..b9a373d --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805247_51_7095293.txt @@ -0,0 +1 @@ +6 0.437933 0.426480 0.436187 0.535410 0.679400 0.544590 0.684653 0.431730 0.437933 0.425170 diff --git a/datasets/xianshiping/val/labels/订单1805252_51_7095412.txt b/datasets/xianshiping/val/labels/订单1805252_51_7095412.txt new file mode 100644 index 0000000..88cab6b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805252_51_7095412.txt @@ -0,0 +1 @@ +6 0.350380 0.345197 0.339883 0.444934 0.586594 0.451491 0.584854 0.354386 0.346871 0.347818 diff --git a/datasets/xianshiping/val/labels/订单1805256_51_7095403.txt b/datasets/xianshiping/val/labels/订单1805256_51_7095403.txt new file mode 100644 index 0000000..9f76100 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805256_51_7095403.txt @@ -0,0 +1 @@ +6 0.450089 0.398983 0.446589 0.544654 0.562072 0.547275 0.565572 0.397671 0.450089 0.400296 diff --git a/datasets/xianshiping/val/labels/订单1805261_51_7095495.txt b/datasets/xianshiping/val/labels/订单1805261_51_7095495.txt new file mode 100644 index 0000000..7aedfa4 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805261_51_7095495.txt @@ -0,0 +1 @@ +6 0.594567 0.397638 0.554325 0.473746 0.727555 0.528867 0.771303 0.450130 0.594567 0.398945 diff --git a/datasets/xianshiping/val/labels/订单1805262_51_7095487.txt b/datasets/xianshiping/val/labels/订单1805262_51_7095487.txt new file mode 100644 index 0000000..086bedd --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805262_51_7095487.txt @@ -0,0 +1 @@ +6 0.374961 0.333320 0.341719 0.452744 0.646185 0.490801 0.665430 0.358262 0.380221 0.330703 diff --git a/datasets/xianshiping/val/labels/订单1805265_51_7095449.txt b/datasets/xianshiping/val/labels/订单1805265_51_7095449.txt new file mode 100644 index 0000000..bdb9fdf --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805265_51_7095449.txt @@ -0,0 +1 @@ +6 0.277821 0.543295 0.283628 0.628595 0.582677 0.623345 0.573971 0.539355 0.269115 0.541980 diff --git a/datasets/xianshiping/val/labels/订单1805271_51_7095498.txt b/datasets/xianshiping/val/labels/订单1805271_51_7095498.txt new file mode 100644 index 0000000..163efbd --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805271_51_7095498.txt @@ -0,0 +1 @@ +6 0.192846 0.459337 0.187603 0.573510 0.478064 0.569567 0.469308 0.451462 0.192846 0.455394 diff --git a/datasets/xianshiping/val/labels/订单1805274_51_7095554.txt b/datasets/xianshiping/val/labels/订单1805274_51_7095554.txt new file mode 100644 index 0000000..5ec0119 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805274_51_7095554.txt @@ -0,0 +1 @@ +6 0.241960 0.185010 0.226213 0.438290 0.749400 0.459290 0.770387 0.199450 0.243707 0.186320 diff --git a/datasets/xianshiping/val/labels/订单1805275_51_7095581.txt b/datasets/xianshiping/val/labels/订单1805275_51_7095581.txt new file mode 100644 index 0000000..05d5f60 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805275_51_7095581.txt @@ -0,0 +1 @@ +6 0.189372 0.566963 0.215617 0.689008 0.500833 0.657512 0.483333 0.530217 0.184122 0.569588 diff --git a/datasets/xianshiping/val/labels/订单1805276_51_7095550.txt b/datasets/xianshiping/val/labels/订单1805276_51_7095550.txt new file mode 100644 index 0000000..52346ef --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805276_51_7095550.txt @@ -0,0 +1 @@ +6 0.282227 0.656162 0.292721 0.749336 0.479948 0.733584 0.462461 0.637783 0.282227 0.656162 diff --git a/datasets/xianshiping/val/labels/订单1805278_51_7095545.txt b/datasets/xianshiping/val/labels/订单1805278_51_7095545.txt new file mode 100644 index 0000000..077096c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805278_51_7095545.txt @@ -0,0 +1 @@ +6 0.404693 0.471100 0.420440 0.557720 0.619907 0.538030 0.602413 0.447480 0.399440 0.471100 diff --git a/datasets/xianshiping/val/labels/订单1805279_51_7095633.txt b/datasets/xianshiping/val/labels/订单1805279_51_7095633.txt new file mode 100644 index 0000000..f56a2aa --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805279_51_7095633.txt @@ -0,0 +1 @@ +6 0.320564 0.460630 0.332979 0.561683 0.555210 0.543307 0.544711 0.446191 0.315315 0.461939 diff --git a/datasets/xianshiping/val/labels/订单1805280_51_7095784.txt b/datasets/xianshiping/val/labels/订单1805280_51_7095784.txt new file mode 100644 index 0000000..c99fab2 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805280_51_7095784.txt @@ -0,0 +1 @@ +6 0.331224 0.342510 0.327721 0.437002 0.520195 0.443564 0.535951 0.349072 0.329466 0.341201 diff --git a/datasets/xianshiping/val/labels/订单1805281_51_7095710.txt b/datasets/xianshiping/val/labels/订单1805281_51_7095710.txt new file mode 100644 index 0000000..02e53e2 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805281_51_7095710.txt @@ -0,0 +1 @@ +6 0.563822 0.443604 0.572572 0.627329 0.724806 0.622079 0.721306 0.438354 0.562072 0.443604 diff --git a/datasets/xianshiping/val/labels/订单1805282_51_7095637.txt b/datasets/xianshiping/val/labels/订单1805282_51_7095637.txt new file mode 100644 index 0000000..892109c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805282_51_7095637.txt @@ -0,0 +1 @@ +6 0.471198 0.513115 0.472956 0.598418 0.668932 0.598418 0.670677 0.511807 0.467708 0.510488 diff --git a/datasets/xianshiping/val/labels/订单1805286_51_7095666.txt b/datasets/xianshiping/val/labels/订单1805286_51_7095666.txt new file mode 100644 index 0000000..306f828 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805286_51_7095666.txt @@ -0,0 +1 @@ +6 0.329350 0.540717 0.357350 0.622079 0.549828 0.580083 0.520078 0.497408 0.327606 0.540717 diff --git a/datasets/xianshiping/val/labels/订单1805288_51_7095735.txt b/datasets/xianshiping/val/labels/订单1805288_51_7095735.txt new file mode 100644 index 0000000..e3909a9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805288_51_7095735.txt @@ -0,0 +1 @@ +6 0.278724 0.430439 0.285729 0.534111 0.537695 0.518359 0.521953 0.412061 0.278724 0.429121 diff --git a/datasets/xianshiping/val/labels/订单1805291_51_7095845.txt b/datasets/xianshiping/val/labels/订单1805291_51_7095845.txt new file mode 100644 index 0000000..71700b9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805291_51_7095845.txt @@ -0,0 +1 @@ +6 0.416933 0.523600 0.418693 0.685010 0.796640 0.678450 0.768640 0.515720 0.416933 0.523600 diff --git a/datasets/xianshiping/val/labels/订单1805294_51_7095817.txt b/datasets/xianshiping/val/labels/订单1805294_51_7095817.txt new file mode 100644 index 0000000..6c2c7ec --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805294_51_7095817.txt @@ -0,0 +1 @@ +6 0.397594 0.308433 0.374844 0.395046 0.577822 0.430479 0.602317 0.335992 0.406344 0.305808 diff --git a/datasets/xianshiping/val/labels/订单1805296_51_7095785.txt b/datasets/xianshiping/val/labels/订单1805296_51_7095785.txt new file mode 100644 index 0000000..5e38045 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805296_51_7095785.txt @@ -0,0 +1 @@ +6 0.453711 0.447500 0.444961 0.532803 0.644427 0.545918 0.646185 0.454062 0.457201 0.448809 diff --git a/datasets/xianshiping/val/labels/订单1805302_51_7095822.txt b/datasets/xianshiping/val/labels/订单1805302_51_7095822.txt new file mode 100644 index 0000000..ce83f94 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805302_51_7095822.txt @@ -0,0 +1 @@ +6 0.482584 0.536739 0.505329 0.633858 0.727555 0.606298 0.710058 0.505242 0.482584 0.536739 diff --git a/datasets/xianshiping/val/labels/订单1805310_51_7095913.txt b/datasets/xianshiping/val/labels/订单1805310_51_7095913.txt new file mode 100644 index 0000000..823807d --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805310_51_7095913.txt @@ -0,0 +1 @@ +6 0.407216 0.505284 0.403712 0.582706 0.585699 0.581392 0.583948 0.500029 0.401961 0.505284 diff --git a/datasets/xianshiping/val/labels/订单1805311_51_7095915.txt b/datasets/xianshiping/val/labels/订单1805311_51_7095915.txt new file mode 100644 index 0000000..945e3a2 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805311_51_7095915.txt @@ -0,0 +1 @@ +6 0.345221 0.518359 0.359219 0.619414 0.593685 0.611543 0.588438 0.503926 0.348724 0.513115 diff --git a/datasets/xianshiping/val/labels/订单1805314_51_7096010.txt b/datasets/xianshiping/val/labels/订单1805314_51_7096010.txt new file mode 100644 index 0000000..a7be89a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805314_51_7096010.txt @@ -0,0 +1 @@ +6 0.229740 0.187656 0.185990 0.343818 0.306719 0.364824 0.357474 0.200781 0.227982 0.186338 diff --git a/datasets/xianshiping/val/labels/订单1805315_51_7095969.txt b/datasets/xianshiping/val/labels/订单1805315_51_7095969.txt new file mode 100644 index 0000000..3e2236f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805315_51_7095969.txt @@ -0,0 +1 @@ +6 0.439714 0.465869 0.420456 0.565605 0.677682 0.590537 0.675924 0.478994 0.443203 0.464561 diff --git a/datasets/xianshiping/val/labels/订单1805316_51_7096200.txt b/datasets/xianshiping/val/labels/订单1805316_51_7096200.txt new file mode 100644 index 0000000..67b75e6 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805316_51_7096200.txt @@ -0,0 +1 @@ +6 0.220960 0.421230 0.226213 0.541970 0.506173 0.534090 0.488680 0.419920 0.224467 0.418610 diff --git a/datasets/xianshiping/val/labels/订单1805323_51_7096066.txt b/datasets/xianshiping/val/labels/订单1805323_51_7096066.txt new file mode 100644 index 0000000..16691a0 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805323_51_7096066.txt @@ -0,0 +1 @@ +6 0.086250 0.127285 0.088008 0.380566 0.682930 0.377939 0.668932 0.118105 0.084505 0.128604 diff --git a/datasets/xianshiping/val/labels/订单1805326_51_7096106.txt b/datasets/xianshiping/val/labels/订单1805326_51_7096106.txt new file mode 100644 index 0000000..a3aff05 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805326_51_7096106.txt @@ -0,0 +1 @@ +6 0.483451 0.506553 0.488698 0.620723 0.744167 0.610225 0.733672 0.497363 0.483451 0.505244 diff --git a/datasets/xianshiping/val/labels/订单1805334_51_7096252.txt b/datasets/xianshiping/val/labels/订单1805334_51_7096252.txt new file mode 100644 index 0000000..20fa4bb --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805334_51_7096252.txt @@ -0,0 +1 @@ +6 0.378448 0.444853 0.364444 0.547218 0.633905 0.557721 0.635654 0.454044 0.373186 0.443542 diff --git a/datasets/xianshiping/val/labels/订单1805335_51_7096152.txt b/datasets/xianshiping/val/labels/订单1805335_51_7096152.txt new file mode 100644 index 0000000..73b0cc4 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805335_51_7096152.txt @@ -0,0 +1 @@ +6 0.340719 0.564333 0.335477 0.666696 0.566444 0.669324 0.564693 0.566961 0.344222 0.561716 diff --git a/datasets/xianshiping/val/labels/订单1805337_51_7097483.txt b/datasets/xianshiping/val/labels/订单1805337_51_7097483.txt new file mode 100644 index 0000000..70414d0 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805337_51_7097483.txt @@ -0,0 +1 @@ +6 0.324106 0.321554 0.311856 0.440979 0.598817 0.452788 0.602317 0.330742 0.320606 0.320242 diff --git a/datasets/xianshiping/val/labels/订单1805340_51_7096134.txt b/datasets/xianshiping/val/labels/订单1805340_51_7096134.txt new file mode 100644 index 0000000..b22e858 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805340_51_7096134.txt @@ -0,0 +1 @@ +6 0.420456 0.414687 0.390716 0.489492 0.569193 0.520986 0.588438 0.442246 diff --git a/datasets/xianshiping/val/labels/订单1805341_51_7096228.txt b/datasets/xianshiping/val/labels/订单1805341_51_7096228.txt new file mode 100644 index 0000000..d5f8a3b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805341_51_7096228.txt @@ -0,0 +1 @@ +6 0.476333 0.458037 0.411594 0.556462 0.646061 0.641767 0.709056 0.534154 0.478083 0.455412 diff --git a/datasets/xianshiping/val/labels/订单1805343_51_7096175.txt b/datasets/xianshiping/val/labels/订单1805343_51_7096175.txt new file mode 100644 index 0000000..4a3f4b8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805343_51_7096175.txt @@ -0,0 +1 @@ +6 0.289014 0.486865 0.307664 0.607600 0.671297 0.597100 0.664298 0.475050 0.286687 0.486865 diff --git a/datasets/xianshiping/val/labels/订单1805344_51_7096452.txt b/datasets/xianshiping/val/labels/订单1805344_51_7096452.txt new file mode 100644 index 0000000..6a496c6 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805344_51_7096452.txt @@ -0,0 +1 @@ +6 0.096946 0.418633 0.127458 0.608919 0.381396 0.560365 0.357773 0.377949 0.098916 0.417321 diff --git a/datasets/xianshiping/val/labels/订单1805345_51_7096249.txt b/datasets/xianshiping/val/labels/订单1805345_51_7096249.txt new file mode 100644 index 0000000..7be66fd --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805345_51_7096249.txt @@ -0,0 +1 @@ +6 0.354719 0.435725 0.323229 0.521029 0.522706 0.553833 0.547203 0.468539 0.352967 0.435725 diff --git a/datasets/xianshiping/val/labels/订单1805348_51_7096292.txt b/datasets/xianshiping/val/labels/订单1805348_51_7096292.txt new file mode 100644 index 0000000..0a50861 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805348_51_7096292.txt @@ -0,0 +1 @@ +6 0.444961 0.485557 0.437956 0.581357 0.663685 0.585293 0.667174 0.486865 0.443203 0.489492 diff --git a/datasets/xianshiping/val/labels/订单1805350_51_7096333.txt b/datasets/xianshiping/val/labels/订单1805350_51_7096333.txt new file mode 100644 index 0000000..35d0176 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805350_51_7096333.txt @@ -0,0 +1 @@ +6 0.404714 0.492119 0.409961 0.619414 0.688177 0.602354 0.679427 0.476367 0.411706 0.488184 diff --git a/datasets/xianshiping/val/labels/订单1805351_51_7096392.txt b/datasets/xianshiping/val/labels/订单1805351_51_7096392.txt new file mode 100644 index 0000000..7ecdd38 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805351_51_7096392.txt @@ -0,0 +1 @@ +6 0.349794 0.383198 0.355629 0.455376 0.626725 0.450127 0.615065 0.372700 0.352711 0.383198 diff --git a/datasets/xianshiping/val/labels/订单1805355_51_7096586.txt b/datasets/xianshiping/val/labels/订单1805355_51_7096586.txt new file mode 100644 index 0000000..31612e8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805355_51_7096586.txt @@ -0,0 +1 @@ +6 0.359200 0.590520 0.380187 0.671890 0.558667 0.643020 0.541173 0.557720 0.359200 0.590520 diff --git a/datasets/xianshiping/val/labels/订单1805358_51_7096443.txt b/datasets/xianshiping/val/labels/订单1805358_51_7096443.txt new file mode 100644 index 0000000..23cdd68 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805358_51_7096443.txt @@ -0,0 +1 @@ +6 0.544362 0.484284 0.509505 0.565647 0.690768 0.612892 0.730859 0.523657 0.544362 0.485598 diff --git a/datasets/xianshiping/val/labels/订单1805362_51_7096361.txt b/datasets/xianshiping/val/labels/订单1805362_51_7096361.txt new file mode 100644 index 0000000..b528f53 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805362_51_7096361.txt @@ -0,0 +1 @@ +6 0.295762 0.230964 0.323320 0.464564 0.430605 0.447500 0.407969 0.213906 0.296748 0.232279 diff --git a/datasets/xianshiping/val/labels/订单1805363_51_7096360.txt b/datasets/xianshiping/val/labels/订单1805363_51_7096360.txt new file mode 100644 index 0000000..970399a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805363_51_7096360.txt @@ -0,0 +1 @@ +6 0.493945 0.471123 0.497448 0.572168 0.723177 0.566924 0.719674 0.464561 0.495703 0.472432 diff --git a/datasets/xianshiping/val/labels/订单1805367_51_7096539.txt b/datasets/xianshiping/val/labels/订单1805367_51_7096539.txt new file mode 100644 index 0000000..c1c6747 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805367_51_7096539.txt @@ -0,0 +1 @@ +6 0.408225 0.565610 0.399748 0.637793 0.653834 0.640415 0.656660 0.565610 0.408225 0.562988 diff --git a/datasets/xianshiping/val/labels/订单1805370_51_7096533.txt b/datasets/xianshiping/val/labels/订单1805370_51_7096533.txt new file mode 100644 index 0000000..a3dced1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805370_51_7096533.txt @@ -0,0 +1 @@ +6 0.271732 0.244082 0.182487 0.330703 0.383711 0.434375 0.467708 0.339883 0.276979 0.244082 diff --git a/datasets/xianshiping/val/labels/订单1805373_51_7096473.txt b/datasets/xianshiping/val/labels/订单1805373_51_7096473.txt new file mode 100644 index 0000000..1b22af8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805373_51_7096473.txt @@ -0,0 +1 @@ +6 0.213984 0.416006 0.212240 0.524922 0.458958 0.518359 0.457201 0.406816 0.213984 0.417314 diff --git a/datasets/xianshiping/val/labels/订单1805375_51_7096482.txt b/datasets/xianshiping/val/labels/订单1805375_51_7096482.txt new file mode 100644 index 0000000..3c104d5 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805375_51_7096482.txt @@ -0,0 +1 @@ +6 0.345221 0.422559 0.346966 0.493428 0.495703 0.486865 0.490456 0.416006 0.341719 0.418623 diff --git a/datasets/xianshiping/val/labels/订单1805376_51_7096538.txt b/datasets/xianshiping/val/labels/订单1805376_51_7096538.txt new file mode 100644 index 0000000..9afc605 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805376_51_7096538.txt @@ -0,0 +1 @@ +6 0.693424 0.355635 0.689922 0.493428 0.801914 0.490801 0.810664 0.358262 0.695182 0.356943 diff --git a/datasets/xianshiping/val/labels/订单1805377_51_7096582.txt b/datasets/xianshiping/val/labels/订单1805377_51_7096582.txt new file mode 100644 index 0000000..17fa9ba --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805377_51_7096582.txt @@ -0,0 +1 @@ +6 0.666866 0.320255 0.578281 0.500046 0.662925 0.574850 0.755451 0.396377 0.667847 0.320255 diff --git a/datasets/xianshiping/val/labels/订单1805381_51_7096578.txt b/datasets/xianshiping/val/labels/订单1805381_51_7096578.txt new file mode 100644 index 0000000..4695db8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805381_51_7096578.txt @@ -0,0 +1 @@ +6 0.415208 0.515742 0.427461 0.629912 0.674180 0.612852 0.649687 0.494746 0.416966 0.513115 diff --git a/datasets/xianshiping/val/labels/订单1805382_51_7096625.txt b/datasets/xianshiping/val/labels/订单1805382_51_7096625.txt new file mode 100644 index 0000000..98eceab --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805382_51_7096625.txt @@ -0,0 +1 @@ +6 0.383600 0.346493 0.387095 0.427856 0.572581 0.421293 0.569074 0.332057 0.383600 0.341241 diff --git a/datasets/xianshiping/val/labels/订单1805383_51_7096566.txt b/datasets/xianshiping/val/labels/订单1805383_51_7096566.txt new file mode 100644 index 0000000..b339edc --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805383_51_7096566.txt @@ -0,0 +1 @@ +6 0.402847 0.242821 0.369606 0.359618 0.644317 0.380616 0.672315 0.252005 0.402847 0.242821 diff --git a/datasets/xianshiping/val/labels/订单1805385_51_7096707.txt b/datasets/xianshiping/val/labels/订单1805385_51_7096707.txt new file mode 100644 index 0000000..7dee4af --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805385_51_7096707.txt @@ -0,0 +1 @@ +6 0.528210 0.296582 0.480964 0.426504 0.711934 0.506556 0.753932 0.370072 0.530833 0.295267 diff --git a/datasets/xianshiping/val/labels/订单1805387_51_7096626.txt b/datasets/xianshiping/val/labels/订单1805387_51_7096626.txt new file mode 100644 index 0000000..25fe8da --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805387_51_7096626.txt @@ -0,0 +1 @@ +6 0.558560 0.494746 0.558560 0.599733 0.696353 0.602357 0.689463 0.490807 0.558560 0.496055 diff --git a/datasets/xianshiping/val/labels/订单1805395_51_7096699.txt b/datasets/xianshiping/val/labels/订单1805395_51_7096699.txt new file mode 100644 index 0000000..bbe5315 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805395_51_7096699.txt @@ -0,0 +1 @@ +6 0.404594 0.442292 0.411594 0.507908 0.570822 0.497408 0.556822 0.429167 0.404594 0.440979 diff --git a/datasets/xianshiping/val/labels/订单1805397_51_7096898.txt b/datasets/xianshiping/val/labels/订单1805397_51_7096898.txt new file mode 100644 index 0000000..e82880a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805397_51_7096898.txt @@ -0,0 +1 @@ +6 0.313724 0.384502 0.362721 0.509180 0.633932 0.448809 0.581445 0.317578 0.311979 0.383193 diff --git a/datasets/xianshiping/val/labels/订单1805398_51_7096786.txt b/datasets/xianshiping/val/labels/订单1805398_51_7096786.txt new file mode 100644 index 0000000..588db35 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805398_51_7096786.txt @@ -0,0 +1 @@ +6 0.394094 0.451475 0.306606 0.581396 0.427339 0.626017 0.511328 0.501346 0.397594 0.452788 diff --git a/datasets/xianshiping/val/labels/订单1805400_51_7096752.txt b/datasets/xianshiping/val/labels/订单1805400_51_7096752.txt new file mode 100644 index 0000000..6cfc851 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805400_51_7096752.txt @@ -0,0 +1 @@ +6 0.247987 0.423912 0.253229 0.518402 0.480706 0.510529 0.464954 0.409480 0.244484 0.421294 diff --git a/datasets/xianshiping/val/labels/订单1805404_51_7096839.txt b/datasets/xianshiping/val/labels/订单1805404_51_7096839.txt new file mode 100644 index 0000000..23c3c43 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805404_51_7096839.txt @@ -0,0 +1 @@ +6 0.241861 0.317617 0.245361 0.515779 0.707306 0.517092 0.702056 0.311058 0.243611 0.316304 diff --git a/datasets/xianshiping/val/labels/订单1805408_51_7096821.txt b/datasets/xianshiping/val/labels/订单1805408_51_7096821.txt new file mode 100644 index 0000000..fc0317c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805408_51_7096821.txt @@ -0,0 +1 @@ +6 0.285665 0.180449 0.234907 0.272313 0.437939 0.341864 0.493949 0.247378 0.283910 0.179133 diff --git a/datasets/xianshiping/val/labels/订单1805409_51_7096823.txt b/datasets/xianshiping/val/labels/订单1805409_51_7096823.txt new file mode 100644 index 0000000..13f0277 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805409_51_7096823.txt @@ -0,0 +1 @@ +6 0.266484 0.410752 0.255977 0.552480 0.583190 0.556426 0.577943 0.409443 0.268229 0.409443 diff --git a/datasets/xianshiping/val/labels/订单1805410_51_7096872.txt b/datasets/xianshiping/val/labels/订单1805410_51_7096872.txt new file mode 100644 index 0000000..d7c4967 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805410_51_7096872.txt @@ -0,0 +1 @@ +6 0.424712 0.299224 0.425697 0.416019 0.611721 0.401583 0.602861 0.282160 0.425697 0.297910 diff --git a/datasets/xianshiping/val/labels/订单1805413_51_7096930.txt b/datasets/xianshiping/val/labels/订单1805413_51_7096930.txt new file mode 100644 index 0000000..f05b1a8 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805413_51_7096930.txt @@ -0,0 +1 @@ +6 0.266453 0.454040 0.269960 0.568210 0.569173 0.557720 0.544667 0.435670 0.262960 0.452730 diff --git a/datasets/xianshiping/val/labels/订单1805415_51_7096961.txt b/datasets/xianshiping/val/labels/订单1805415_51_7096961.txt new file mode 100644 index 0000000..2d068d4 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805415_51_7096961.txt @@ -0,0 +1 @@ +6 0.476458 0.497363 0.460703 0.597100 0.740664 0.604980 0.730169 0.493428 0.479948 0.498682 diff --git a/datasets/xianshiping/val/labels/订单1805416_51_7096938.txt b/datasets/xianshiping/val/labels/订单1805416_51_7096938.txt new file mode 100644 index 0000000..a6ec23f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805416_51_7096938.txt @@ -0,0 +1 @@ +6 0.374961 0.498682 0.380221 0.573486 0.567448 0.562979 0.560443 0.485557 0.380221 0.498682 diff --git a/datasets/xianshiping/val/labels/订单1805417_51_7096975.txt b/datasets/xianshiping/val/labels/订单1805417_51_7096975.txt new file mode 100644 index 0000000..ef142ab --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805417_51_7096975.txt @@ -0,0 +1 @@ +6 0.425680 0.398920 0.397693 0.493410 0.619907 0.535410 0.651413 0.431730 0.425680 0.397610 diff --git a/datasets/xianshiping/val/labels/订单1805419_51_7097018.txt b/datasets/xianshiping/val/labels/订单1805419_51_7097018.txt new file mode 100644 index 0000000..48569a9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805419_51_7097018.txt @@ -0,0 +1 @@ +6 0.143859 0.444894 0.142103 0.555135 0.416821 0.547260 0.397577 0.438337 0.145603 0.444894 diff --git a/datasets/xianshiping/val/labels/订单1805422_51_7097140.txt b/datasets/xianshiping/val/labels/订单1805422_51_7097140.txt new file mode 100644 index 0000000..dbb9331 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805422_51_7097140.txt @@ -0,0 +1 @@ +6 0.477852 0.492122 0.530015 0.568236 0.636313 0.450124 0.583164 0.363509 0.476865 0.492122 diff --git a/datasets/xianshiping/val/labels/订单1805425_51_7097081.txt b/datasets/xianshiping/val/labels/订单1805425_51_7097081.txt new file mode 100644 index 0000000..767ad56 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805425_51_7097081.txt @@ -0,0 +1 @@ +6 0.250778 0.683715 0.212856 0.812325 0.387833 0.824135 0.431578 0.694210 0.253689 0.683715 diff --git a/datasets/xianshiping/val/labels/订单1805428_51_7097030.txt b/datasets/xianshiping/val/labels/订单1805428_51_7097030.txt new file mode 100644 index 0000000..e26d546 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805428_51_7097030.txt @@ -0,0 +1 @@ +6 0.616432 0.347764 0.549948 0.400254 0.665430 0.482930 0.728424 0.433066 0.614687 0.345137 diff --git a/datasets/xianshiping/val/labels/订单1805429_51_7097065.txt b/datasets/xianshiping/val/labels/订单1805429_51_7097065.txt new file mode 100644 index 0000000..fb9e8ff --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805429_51_7097065.txt @@ -0,0 +1 @@ +6 0.457120 0.396382 0.448363 0.469868 0.649591 0.475121 0.649591 0.393750 0.457120 0.392445 diff --git a/datasets/xianshiping/val/labels/订单1805430_51_7097192.txt b/datasets/xianshiping/val/labels/订单1805430_51_7097192.txt new file mode 100644 index 0000000..7e8a149 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805430_51_7097192.txt @@ -0,0 +1 @@ +6 0.595962 0.101042 0.579229 0.355638 0.686509 0.367448 0.705210 0.125977 0.593989 0.099733 diff --git a/datasets/xianshiping/val/labels/订单1805431_51_7097106.txt b/datasets/xianshiping/val/labels/订单1805431_51_7097106.txt new file mode 100644 index 0000000..cbf6aab --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805431_51_7097106.txt @@ -0,0 +1 @@ +6 0.325977 0.572168 0.324219 0.698154 0.423958 0.696846 0.430964 0.569541 0.324219 0.569541 diff --git a/datasets/xianshiping/val/labels/订单1805433_51_7097054.txt b/datasets/xianshiping/val/labels/订单1805433_51_7097054.txt new file mode 100644 index 0000000..3afb95a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805433_51_7097054.txt @@ -0,0 +1 @@ +6 0.462339 0.371425 0.478083 0.536779 0.595322 0.531529 0.591822 0.368800 0.460589 0.371425 diff --git a/datasets/xianshiping/val/labels/订单1805437_51_7097133.txt b/datasets/xianshiping/val/labels/订单1805437_51_7097133.txt new file mode 100644 index 0000000..f32763b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805437_51_7097133.txt @@ -0,0 +1 @@ +6 0.437956 0.464561 0.422214 0.590537 0.688177 0.599727 0.702174 0.477686 0.439714 0.463242 diff --git a/datasets/xianshiping/val/labels/订单1805439_51_7097139.txt b/datasets/xianshiping/val/labels/订单1805439_51_7097139.txt new file mode 100644 index 0000000..b3dc37f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805439_51_7097139.txt @@ -0,0 +1 @@ +6 0.492083 0.552525 0.483333 0.633892 0.672311 0.649638 0.675811 0.560400 0.490333 0.549900 diff --git a/datasets/xianshiping/val/labels/订单1805444_51_7097190.txt b/datasets/xianshiping/val/labels/订单1805444_51_7097190.txt new file mode 100644 index 0000000..f1a3257 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805444_51_7097190.txt @@ -0,0 +1 @@ +6 0.399344 0.535467 0.402844 0.631267 0.605817 0.619454 0.593572 0.522342 0.404594 0.532842 diff --git a/datasets/xianshiping/val/labels/订单1805445_51_7097229.txt b/datasets/xianshiping/val/labels/订单1805445_51_7097229.txt new file mode 100644 index 0000000..174b1b1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805445_51_7097229.txt @@ -0,0 +1 @@ +6 0.404693 0.480290 0.364440 0.589210 0.639160 0.632520 0.660160 0.515720 0.406440 0.473730 diff --git a/datasets/xianshiping/val/labels/订单1805446_51_7097173.txt b/datasets/xianshiping/val/labels/订单1805446_51_7097173.txt new file mode 100644 index 0000000..d5f14ed --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805446_51_7097173.txt @@ -0,0 +1 @@ +6 0.480711 0.350391 0.480711 0.581361 0.585451 0.587923 0.593358 0.353014 0.483676 0.350391 diff --git a/datasets/xianshiping/val/labels/订单1805449_51_7097273.txt b/datasets/xianshiping/val/labels/订单1805449_51_7097273.txt new file mode 100644 index 0000000..14688e4 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805449_51_7097273.txt @@ -0,0 +1 @@ +6 0.253442 0.181094 0.230801 0.463249 0.352852 0.486868 0.384346 0.195534 0.256392 0.178470 diff --git a/datasets/xianshiping/val/labels/订单1805451_51_7097408.txt b/datasets/xianshiping/val/labels/订单1805451_51_7097408.txt new file mode 100644 index 0000000..f54e64c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805451_51_7097408.txt @@ -0,0 +1 @@ +6 0.430964 0.540674 0.415208 0.654844 0.682930 0.673223 0.691680 0.551172 0.430964 0.539365 diff --git a/datasets/xianshiping/val/labels/订单1805452_51_7097304.txt b/datasets/xianshiping/val/labels/订单1805452_51_7097304.txt new file mode 100644 index 0000000..15b7972 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805452_51_7097304.txt @@ -0,0 +1 @@ +6 0.320729 0.459307 0.294479 0.535420 0.474701 0.561670 0.497448 0.476367 0.322474 0.460625 diff --git a/datasets/xianshiping/val/labels/订单1805453_51_7097272.txt b/datasets/xianshiping/val/labels/订单1805453_51_7097272.txt new file mode 100644 index 0000000..0a69b4c --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805453_51_7097272.txt @@ -0,0 +1 @@ +6 0.574185 0.444913 0.575659 0.618142 0.639146 0.624705 0.641357 0.443602 0.573447 0.443602 diff --git a/datasets/xianshiping/val/labels/订单1805454_51_7097240.txt b/datasets/xianshiping/val/labels/订单1805454_51_7097240.txt new file mode 100644 index 0000000..ff37e45 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805454_51_7097240.txt @@ -0,0 +1 @@ +6 0.308477 0.345137 0.306719 0.422559 0.479948 0.422559 0.483451 0.345137 0.310221 0.342510 diff --git a/datasets/xianshiping/val/labels/订单1805458_51_7097359.txt b/datasets/xianshiping/val/labels/订单1805458_51_7097359.txt new file mode 100644 index 0000000..7262487 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805458_51_7097359.txt @@ -0,0 +1 @@ +6 0.243737 0.610225 0.280482 0.703398 0.495703 0.652227 0.457201 0.557734 0.245482 0.610225 diff --git a/datasets/xianshiping/val/labels/订单1805459_51_7097355.txt b/datasets/xianshiping/val/labels/订单1805459_51_7097355.txt new file mode 100644 index 0000000..6d0efbc --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805459_51_7097355.txt @@ -0,0 +1 @@ +6 0.588438 0.551172 0.576185 0.648281 0.812409 0.662725 0.810664 0.557734 0.593685 0.551172 diff --git a/datasets/xianshiping/val/labels/订单1805460_51_7097375.txt b/datasets/xianshiping/val/labels/订单1805460_51_7097375.txt new file mode 100644 index 0000000..fe9644b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805460_51_7097375.txt @@ -0,0 +1 @@ +6 0.320395 0.254620 0.270195 0.360920 0.413895 0.458033 0.460155 0.351733 0.322360 0.255933 diff --git a/datasets/xianshiping/val/labels/订单1805461_51_7097444.txt b/datasets/xianshiping/val/labels/订单1805461_51_7097444.txt new file mode 100644 index 0000000..a0f1f75 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805461_51_7097444.txt @@ -0,0 +1 @@ +6 0.362693 0.562970 0.371440 0.669260 0.604160 0.658770 0.598920 0.552470 0.369693 0.559030 diff --git a/datasets/xianshiping/val/labels/订单1805463_51_7097391.txt b/datasets/xianshiping/val/labels/订单1805463_51_7097391.txt new file mode 100644 index 0000000..08da538 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805463_51_7097391.txt @@ -0,0 +1 @@ +6 0.408216 0.536738 0.413464 0.639102 0.633932 0.631221 0.621680 0.530176 0.408216 0.536738 diff --git a/datasets/xianshiping/val/labels/订单1805466_51_7097460.txt b/datasets/xianshiping/val/labels/订单1805466_51_7097460.txt new file mode 100644 index 0000000..9437f65 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805466_51_7097460.txt @@ -0,0 +1 @@ +6 0.318947 0.650890 0.325947 0.713880 0.474680 0.692890 0.464187 0.627270 0.318947 0.649580 diff --git a/datasets/xianshiping/val/labels/订单1805468_51_7097492.txt b/datasets/xianshiping/val/labels/订单1805468_51_7097492.txt new file mode 100644 index 0000000..4a47f09 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805468_51_7097492.txt @@ -0,0 +1 @@ +6 0.444935 0.447475 0.423938 0.562966 0.686405 0.601017 0.705654 0.481605 0.443186 0.446164 diff --git a/datasets/xianshiping/val/labels/订单1805469_51_7097445.txt b/datasets/xianshiping/val/labels/订单1805469_51_7097445.txt new file mode 100644 index 0000000..9621a69 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805469_51_7097445.txt @@ -0,0 +1 @@ +6 0.217346 0.381904 0.252333 0.486894 0.485064 0.467212 0.453564 0.363529 0.215590 0.379279 diff --git a/datasets/xianshiping/val/labels/订单1805471_51_7097467.txt b/datasets/xianshiping/val/labels/订单1805471_51_7097467.txt new file mode 100644 index 0000000..2989706 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805471_51_7097467.txt @@ -0,0 +1 @@ +6 0.416966 0.452744 0.404714 0.564297 0.672435 0.587920 0.691680 0.464561 0.422214 0.450117 diff --git a/datasets/xianshiping/val/labels/订单1805472_51_7097529.txt b/datasets/xianshiping/val/labels/订单1805472_51_7097529.txt new file mode 100644 index 0000000..f986f95 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805472_51_7097529.txt @@ -0,0 +1 @@ +6 0.277807 0.358261 0.294095 0.398945 0.440690 0.383201 0.433712 0.334645 0.277807 0.353010 diff --git a/datasets/xianshiping/val/labels/订单1805473_51_7097537.txt b/datasets/xianshiping/val/labels/订单1805473_51_7097537.txt new file mode 100644 index 0000000..61e7a4a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805473_51_7097537.txt @@ -0,0 +1 @@ +6 0.279477 0.353049 0.268980 0.521029 0.624183 0.528902 0.638183 0.372735 0.272484 0.350422 diff --git a/datasets/xianshiping/val/labels/订单1805479_51_7097597.txt b/datasets/xianshiping/val/labels/订单1805479_51_7097597.txt new file mode 100644 index 0000000..fd041e9 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805479_51_7097597.txt @@ -0,0 +1 @@ +6 0.297969 0.322822 0.327721 0.438311 0.607682 0.400254 0.567448 0.278203 0.299727 0.318887 diff --git a/datasets/xianshiping/val/labels/订单1805483_51_7097639.txt b/datasets/xianshiping/val/labels/订单1805483_51_7097639.txt new file mode 100644 index 0000000..bfb07a1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805483_51_7097639.txt @@ -0,0 +1 @@ +6 0.215080 0.569580 0.144210 0.766433 0.235750 0.803173 0.301695 0.598453 0.219015 0.565640 diff --git a/datasets/xianshiping/val/labels/订单1805485_51_7097619.txt b/datasets/xianshiping/val/labels/订单1805485_51_7097619.txt new file mode 100644 index 0000000..9d83460 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805485_51_7097619.txt @@ -0,0 +1 @@ +6 0.289106 0.559087 0.222617 0.647012 0.422089 0.710008 0.488583 0.627329 0.294356 0.557775 diff --git a/datasets/xianshiping/val/labels/订单1805489_51_7097678.txt b/datasets/xianshiping/val/labels/订单1805489_51_7097678.txt new file mode 100644 index 0000000..cc5b78a --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805489_51_7097678.txt @@ -0,0 +1 @@ +6 0.418794 0.325456 0.425684 0.581361 0.549702 0.576107 0.538872 0.312331 0.420762 0.322826 diff --git a/datasets/xianshiping/val/labels/订单1805490_51_7097677.txt b/datasets/xianshiping/val/labels/订单1805490_51_7097677.txt new file mode 100644 index 0000000..00385d5 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805490_51_7097677.txt @@ -0,0 +1 @@ +6 0.436554 0.654907 0.540885 0.644410 0.538915 0.413437 0.431632 0.416053 0.434583 0.657523 diff --git a/datasets/xianshiping/val/labels/订单1805494_51_7097669.txt b/datasets/xianshiping/val/labels/订单1805494_51_7097669.txt new file mode 100644 index 0000000..d31a305 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805494_51_7097669.txt @@ -0,0 +1 @@ +6 0.399466 0.418623 0.390716 0.531484 0.661927 0.534111 0.660182 0.412061 0.402969 0.414687 diff --git a/datasets/xianshiping/val/labels/订单1805495_51_7097888.txt b/datasets/xianshiping/val/labels/订单1805495_51_7097888.txt new file mode 100644 index 0000000..758df72 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805495_51_7097888.txt @@ -0,0 +1 @@ +6 0.289232 0.509180 0.289232 0.629912 0.542943 0.620723 0.532448 0.502617 0.289232 0.506553 diff --git a/datasets/xianshiping/val/labels/订单1805497_51_7097714.txt b/datasets/xianshiping/val/labels/订单1805497_51_7097714.txt new file mode 100644 index 0000000..12c958b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805497_51_7097714.txt @@ -0,0 +1 @@ +6 0.373186 0.486850 0.374935 0.614142 0.646160 0.601017 0.640915 0.476348 0.378448 0.485539 diff --git a/datasets/xianshiping/val/labels/订单1805498_51_7097737.txt b/datasets/xianshiping/val/labels/订单1805498_51_7097737.txt new file mode 100644 index 0000000..6f94877 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805498_51_7097737.txt @@ -0,0 +1 @@ +6 0.406429 0.342490 0.378426 0.476339 0.656653 0.499970 0.674140 0.370050 0.409934 0.342490 diff --git a/datasets/xianshiping/val/labels/订单1805499_51_7097753.txt b/datasets/xianshiping/val/labels/订单1805499_51_7097753.txt new file mode 100644 index 0000000..ba2bdd1 --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805499_51_7097753.txt @@ -0,0 +1 @@ +6 0.266484 0.376631 0.199987 0.580039 0.388958 0.610225 0.453711 0.406816 0.269974 0.377939 diff --git a/datasets/xianshiping/val/labels/订单1805500_51_7097767.txt b/datasets/xianshiping/val/labels/订单1805500_51_7097767.txt new file mode 100644 index 0000000..711b33b --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805500_51_7097767.txt @@ -0,0 +1 @@ +6 0.354719 0.447539 0.347725 0.574833 0.627686 0.581392 0.638183 0.447539 0.358222 0.440980 diff --git a/datasets/xianshiping/val/labels/订单1805506_51_7097821.txt b/datasets/xianshiping/val/labels/订单1805506_51_7097821.txt new file mode 100644 index 0000000..d08195f --- /dev/null +++ b/datasets/xianshiping/val/labels/订单1805506_51_7097821.txt @@ -0,0 +1 @@ +6 0.310390 0.427815 0.268506 0.509180 0.501188 0.538050 0.540745 0.447500 0.301082 0.427815 diff --git a/datasets/人/data.yaml b/datasets/人/data.yaml new file mode 100644 index 0000000..5087fae --- /dev/null +++ b/datasets/人/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\人\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\人\val +nc: 2 +names: ['Riped', 'UnRiped'] \ No newline at end of file diff --git a/datasets/人/train/classes.txt b/datasets/人/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/人/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/人/train/labels.cache b/datasets/人/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/人/train/labels.cache differ diff --git a/datasets/人/val/labels.cache b/datasets/人/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/人/val/labels.cache differ diff --git a/datasets/仪表盘/.DS_Store b/datasets/仪表盘/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/仪表盘/.DS_Store differ diff --git a/datasets/仪表盘/data.yaml b/datasets/仪表盘/data.yaml new file mode 100644 index 0000000..db5aab3 --- /dev/null +++ b/datasets/仪表盘/data.yaml @@ -0,0 +1,4 @@ +train: train/images +val: val/images +nc: 2 +names: ['Dashboard', 'NoDashboard'] \ No newline at end of file diff --git a/datasets/仪表盘/train/.DS_Store b/datasets/仪表盘/train/.DS_Store new file mode 100644 index 0000000..363bcfe Binary files /dev/null and b/datasets/仪表盘/train/.DS_Store differ diff --git a/datasets/仪表盘/train/classes.txt b/datasets/仪表盘/train/classes.txt new file mode 100644 index 0000000..fd3f560 --- /dev/null +++ b/datasets/仪表盘/train/classes.txt @@ -0,0 +1,2 @@ +Dashboard +NoDashboard \ No newline at end of file diff --git a/datasets/仪表盘/train/images/仪表盘1805071_53_7093763.jpg b/datasets/仪表盘/train/images/仪表盘1805071_53_7093763.jpg new file mode 100644 index 0000000..55a66e3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805071_53_7093763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d22825b8639f17018f8eb3cc2504f86c4c7ba6cf73a41914b9189594b14ca3 +size 387418 diff --git a/datasets/仪表盘/train/images/仪表盘1805078_53_7093811.jpg b/datasets/仪表盘/train/images/仪表盘1805078_53_7093811.jpg new file mode 100644 index 0000000..d7ea1e1 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805078_53_7093811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6989513caf5ff84e5a1dd36845ff17a4c675a8487fbcd192a435d062c279e9ab +size 117434 diff --git a/datasets/仪表盘/train/images/仪表盘1805080_53_7093834.jpg b/datasets/仪表盘/train/images/仪表盘1805080_53_7093834.jpg new file mode 100644 index 0000000..1d5822a --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805080_53_7093834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3299cbe15f3be96700f22f0cbfc765b9ed7f6c799dda2616cd096e0e420bd3a1 +size 180712 diff --git a/datasets/仪表盘/train/images/仪表盘1805087_53_7093928.jpg b/datasets/仪表盘/train/images/仪表盘1805087_53_7093928.jpg new file mode 100644 index 0000000..a673d74 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805087_53_7093928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b770cfd5cabe63022bc78a01ebe1d913091225b1a181cb5404b8b734364fa9 +size 264850 diff --git a/datasets/仪表盘/train/images/仪表盘1805090_53_7094299.jpg b/datasets/仪表盘/train/images/仪表盘1805090_53_7094299.jpg new file mode 100644 index 0000000..7659949 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805090_53_7094299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f10799ad228c1ac7d25564be0a083c33af8327a798d5331697bd382bffb348 +size 241762 diff --git a/datasets/仪表盘/train/images/仪表盘1805099_53_7093976.jpg b/datasets/仪表盘/train/images/仪表盘1805099_53_7093976.jpg new file mode 100644 index 0000000..6eee4ad --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805099_53_7093976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d3e5468d81f841048dc4c3249b148923a8f9198111b18e769ab8a87d5dc5ea +size 388651 diff --git a/datasets/仪表盘/train/images/仪表盘1805111_53_7094022.jpg b/datasets/仪表盘/train/images/仪表盘1805111_53_7094022.jpg new file mode 100644 index 0000000..433de68 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805111_53_7094022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d17d890b94976e41f6ce03f897f5f56a2188266e0b72bd9407799ebb01d488 +size 294080 diff --git a/datasets/仪表盘/train/images/仪表盘1805126_53_7094312.jpg b/datasets/仪表盘/train/images/仪表盘1805126_53_7094312.jpg new file mode 100644 index 0000000..9fbd5a9 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805126_53_7094312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffbc9c037113672d5035ee35200393b1b80be3ecce77c2b575c14a5eb73caa2 +size 66371 diff --git a/datasets/仪表盘/train/images/仪表盘1805130_53_7094431.jpg b/datasets/仪表盘/train/images/仪表盘1805130_53_7094431.jpg new file mode 100644 index 0000000..b023227 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805130_53_7094431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379b247e3799aa95a54ce9e8913d21b0eff4fa0261e6aba08ea7c436d5ea5f16 +size 209052 diff --git a/datasets/仪表盘/train/images/仪表盘1805138_53_7094752.jpg b/datasets/仪表盘/train/images/仪表盘1805138_53_7094752.jpg new file mode 100644 index 0000000..a95a176 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805138_53_7094752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43f73d6869b8c387d70282d8c6919f81ddf8ea3f894c1a012ee8ae5fc39e63c +size 394505 diff --git a/datasets/仪表盘/train/images/仪表盘1805140_53_7094510.jpg b/datasets/仪表盘/train/images/仪表盘1805140_53_7094510.jpg new file mode 100644 index 0000000..29d6b6a --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805140_53_7094510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46d896bcd1c5147a5047b71d58048edc691c43249aa8bdb3e8cf7ac0f21ac9d +size 188116 diff --git a/datasets/仪表盘/train/images/仪表盘1805144_53_7094338.jpg b/datasets/仪表盘/train/images/仪表盘1805144_53_7094338.jpg new file mode 100644 index 0000000..172f91f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805144_53_7094338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfbadacacc4fd152c8733928cecd4ff7acc51c2ebe6a2ceb2a55667f8dae271 +size 270803 diff --git a/datasets/仪表盘/train/images/仪表盘1805156_53_7094438.jpg b/datasets/仪表盘/train/images/仪表盘1805156_53_7094438.jpg new file mode 100644 index 0000000..52e6b2c --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805156_53_7094438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5ff5f565250765a16a85663acfe34f8df9cc96291aaf80e6c3b8ba264c98b7 +size 109466 diff --git a/datasets/仪表盘/train/images/仪表盘1805166_53_7094726.jpg b/datasets/仪表盘/train/images/仪表盘1805166_53_7094726.jpg new file mode 100644 index 0000000..0b2c4b4 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805166_53_7094726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233d83d08c6891d56b4afdd40344728ce648b71c4d3e862375e97180a95f72c9 +size 535142 diff --git a/datasets/仪表盘/train/images/仪表盘1805169_53_7094633.jpg b/datasets/仪表盘/train/images/仪表盘1805169_53_7094633.jpg new file mode 100644 index 0000000..1e763cd --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805169_53_7094633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc80cbf08a67880ff4bd8545874466a3ac6700ba7c02ba0fad4a924472f1f17a +size 195084 diff --git a/datasets/仪表盘/train/images/仪表盘1805171_53_7094531.jpg b/datasets/仪表盘/train/images/仪表盘1805171_53_7094531.jpg new file mode 100644 index 0000000..c3a5d68 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805171_53_7094531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44e0d1ed2572aaf221c3b4bfa3f94ba33c2cea5ad515b71a3ebe9de34737fa8 +size 230777 diff --git a/datasets/仪表盘/train/images/仪表盘1805180_53_7094781.jpg b/datasets/仪表盘/train/images/仪表盘1805180_53_7094781.jpg new file mode 100644 index 0000000..afbd667 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805180_53_7094781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a03a63f1711950eaa8729480a0a89d67b4cb6484ec607c321be78556a356f35 +size 94591 diff --git a/datasets/仪表盘/train/images/仪表盘1805183_53_7094626.jpg b/datasets/仪表盘/train/images/仪表盘1805183_53_7094626.jpg new file mode 100644 index 0000000..eaf91b0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805183_53_7094626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748bd4efc49d6ded4f45908462e34580695131bed2a1c45ccf9a4c3782e7e14e +size 145942 diff --git a/datasets/仪表盘/train/images/仪表盘1805184_53_7094833.jpg b/datasets/仪表盘/train/images/仪表盘1805184_53_7094833.jpg new file mode 100644 index 0000000..945120d --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805184_53_7094833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e5b1e7093eea46e05bfc6c3fc9f8cbd7f8c705a1ac4aff5f4c2175a97f415c +size 284857 diff --git a/datasets/仪表盘/train/images/仪表盘1805185_53_7094680.jpg b/datasets/仪表盘/train/images/仪表盘1805185_53_7094680.jpg new file mode 100644 index 0000000..07dadd4 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805185_53_7094680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87452af3e2428f2fe95421b8e326564f0e04830173bd7058c42af6fb0a40533d +size 127079 diff --git a/datasets/仪表盘/train/images/仪表盘1805190_53_7098361.jpg b/datasets/仪表盘/train/images/仪表盘1805190_53_7098361.jpg new file mode 100644 index 0000000..014acae --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805190_53_7098361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292f86f28015fab13d4ec370ff5ca046b6aebffbdfd4b45884a14cb33bf2f98e +size 500556 diff --git a/datasets/仪表盘/train/images/仪表盘1805192_53_7094782.jpg b/datasets/仪表盘/train/images/仪表盘1805192_53_7094782.jpg new file mode 100644 index 0000000..5fc4e75 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805192_53_7094782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cec2ce48d524c9dc6ff00ddfe3e45d6b389dcb6260dceb201c3cbd61878d1e2 +size 331599 diff --git a/datasets/仪表盘/train/images/仪表盘1805197_53_7094965.jpg b/datasets/仪表盘/train/images/仪表盘1805197_53_7094965.jpg new file mode 100644 index 0000000..0ea6803 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805197_53_7094965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f6d12f9252b50dca53b85df93e178afa20a2739ef2f3c46fbcdc095117f4c2 +size 569554 diff --git a/datasets/仪表盘/train/images/仪表盘1805210_53_7095055.jpg b/datasets/仪表盘/train/images/仪表盘1805210_53_7095055.jpg new file mode 100644 index 0000000..f09bb69 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805210_53_7095055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fdc992b6a9b1c7718801731664e9bdf8d7ca7ae3adc3936019a7df95655d2cd +size 458422 diff --git a/datasets/仪表盘/train/images/仪表盘1805216_53_7095038.jpg b/datasets/仪表盘/train/images/仪表盘1805216_53_7095038.jpg new file mode 100644 index 0000000..1aa4a8a --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805216_53_7095038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f6cdfae14cc552d245c3102c865f2889360a9ffd0f05770e4205860dd92138 +size 95060 diff --git a/datasets/仪表盘/train/images/仪表盘1805219_53_7095118.jpg b/datasets/仪表盘/train/images/仪表盘1805219_53_7095118.jpg new file mode 100644 index 0000000..61d99d7 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805219_53_7095118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17cbcf8b60baaee9c1d42839b8182b565510b406d89a1aece1d9c5bea8a6971 +size 312047 diff --git a/datasets/仪表盘/train/images/仪表盘1805224_53_7095050.jpg b/datasets/仪表盘/train/images/仪表盘1805224_53_7095050.jpg new file mode 100644 index 0000000..282b1e1 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805224_53_7095050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6537a25a7a86be4a4153d25bb21353b9ac0874537ebcf4f1f2345348ea6435d2 +size 112878 diff --git a/datasets/仪表盘/train/images/仪表盘1805228_53_7095278.jpg b/datasets/仪表盘/train/images/仪表盘1805228_53_7095278.jpg new file mode 100644 index 0000000..6235731 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805228_53_7095278.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e2dc60d372153b2a0813d9460839129bb4e637f9e98cc50ad17202c6be0e9f +size 87423 diff --git a/datasets/仪表盘/train/images/仪表盘1805240_53_7095256.jpg b/datasets/仪表盘/train/images/仪表盘1805240_53_7095256.jpg new file mode 100644 index 0000000..15b5a82 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805240_53_7095256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c112d621e79413c156864e901203b37614bfac7d4330c5fcb1b5cdcd915a7f +size 289655 diff --git a/datasets/仪表盘/train/images/仪表盘1805243_53_7095673.jpg b/datasets/仪表盘/train/images/仪表盘1805243_53_7095673.jpg new file mode 100644 index 0000000..9b454a0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805243_53_7095673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f799bc869c507580b19257efede0a2abe1ffa63388fde6449b9cafeb64f4e42 +size 1665283 diff --git a/datasets/仪表盘/train/images/仪表盘1805244_53_7095316.jpg b/datasets/仪表盘/train/images/仪表盘1805244_53_7095316.jpg new file mode 100644 index 0000000..cea5a92 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805244_53_7095316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21fe941a1f08af2bf9a6e85397f7c2e618c36ec8c8e9c82fbd12f5081a6958b +size 71782 diff --git a/datasets/仪表盘/train/images/仪表盘1805248_53_7095371.jpg b/datasets/仪表盘/train/images/仪表盘1805248_53_7095371.jpg new file mode 100644 index 0000000..afa2c6d --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805248_53_7095371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621302cdc628021bcf1cd8c394359f3ff16ceaec4fdab74db9506fcf656349ad +size 420936 diff --git a/datasets/仪表盘/train/images/仪表盘1805249_53_7095355.jpg b/datasets/仪表盘/train/images/仪表盘1805249_53_7095355.jpg new file mode 100644 index 0000000..2648169 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805249_53_7095355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a72372f8b9cd2d07d02110de6ad72881631f3299d149b2058d1362ab68c4cd +size 485792 diff --git a/datasets/仪表盘/train/images/仪表盘1805260_53_7095573.jpg b/datasets/仪表盘/train/images/仪表盘1805260_53_7095573.jpg new file mode 100644 index 0000000..174426d --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805260_53_7095573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb85d483f8f8717b6af2c6726170d9e3c1d61ca4ef1dcb02d137b7e13a85722 +size 275551 diff --git a/datasets/仪表盘/train/images/仪表盘1805268_53_7095491.jpg b/datasets/仪表盘/train/images/仪表盘1805268_53_7095491.jpg new file mode 100644 index 0000000..a3ef149 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805268_53_7095491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80526c26c2113cbef3dabf7ddbbc731410fe0f8db51e4e266e4943c355fb580 +size 81461 diff --git a/datasets/仪表盘/train/images/仪表盘1805269_53_7095984.jpg b/datasets/仪表盘/train/images/仪表盘1805269_53_7095984.jpg new file mode 100644 index 0000000..028f194 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805269_53_7095984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0375da6ad98921e186839fd7aca632bbcb96c20fea32e8d32b39c73cb846213c +size 278599 diff --git a/datasets/仪表盘/train/images/仪表盘1805287_53_7095770.jpg b/datasets/仪表盘/train/images/仪表盘1805287_53_7095770.jpg new file mode 100644 index 0000000..12e4886 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805287_53_7095770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4466292c773aa0344ef355a812a6d7bb1b233357f15a89aace78d89c4a3605e +size 221826 diff --git a/datasets/仪表盘/train/images/仪表盘1805293_53_7095809.jpg b/datasets/仪表盘/train/images/仪表盘1805293_53_7095809.jpg new file mode 100644 index 0000000..f13887f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805293_53_7095809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4777e2bfb463222accfef202d61d4146f8aaebc795a39b466c7ea6ca1445faa +size 217659 diff --git a/datasets/仪表盘/train/images/仪表盘1805298_53_7095870.jpg b/datasets/仪表盘/train/images/仪表盘1805298_53_7095870.jpg new file mode 100644 index 0000000..4adcceb --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805298_53_7095870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d219c7bd0fe208c2a10ebade5a8c9492b6e2691dcbd41eed0ef9571d49bd440d +size 389188 diff --git a/datasets/仪表盘/train/images/仪表盘1805299_53_7095938.jpg b/datasets/仪表盘/train/images/仪表盘1805299_53_7095938.jpg new file mode 100644 index 0000000..02917a3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805299_53_7095938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3cfb6aba568d1356edfa655a67190b657a510198ab33e018738ed6aa6ccda4 +size 265312 diff --git a/datasets/仪表盘/train/images/仪表盘1805301_53_7095844.jpg b/datasets/仪表盘/train/images/仪表盘1805301_53_7095844.jpg new file mode 100644 index 0000000..dd3a5f2 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805301_53_7095844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5275ee4505aa2866eab745e28ca532e375261dc9a513a9b62f7973652ccc2f5f +size 235718 diff --git a/datasets/仪表盘/train/images/仪表盘1805304_53_7095868.jpg b/datasets/仪表盘/train/images/仪表盘1805304_53_7095868.jpg new file mode 100644 index 0000000..a113512 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805304_53_7095868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5f755c1ea8a6388309d2a7587aeca47636099cdd0e506f741d2fbcb4a339b5 +size 119052 diff --git a/datasets/仪表盘/train/images/仪表盘1805305_53_7095838.jpg b/datasets/仪表盘/train/images/仪表盘1805305_53_7095838.jpg new file mode 100644 index 0000000..9dcc2f2 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805305_53_7095838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb74176ffc822726251996082ed3e934bf31c1b1f50f918390072f5ceb90c0c +size 509423 diff --git a/datasets/仪表盘/train/images/仪表盘1805307_53_7095894.jpg b/datasets/仪表盘/train/images/仪表盘1805307_53_7095894.jpg new file mode 100644 index 0000000..098ceb3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805307_53_7095894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6a8f181fcbd449b8537cd67f9af51da940cf6992910ee560139dc6eb1a300c +size 225565 diff --git a/datasets/仪表盘/train/images/仪表盘1805308_53_7095992.jpg b/datasets/仪表盘/train/images/仪表盘1805308_53_7095992.jpg new file mode 100644 index 0000000..92d1949 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805308_53_7095992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cca34e5018988db5fe96a45f8f9541e208ad11e33d0cf8a8e5a0d153c48a57c +size 1323599 diff --git a/datasets/仪表盘/train/images/仪表盘1805309_53_7097248.jpg b/datasets/仪表盘/train/images/仪表盘1805309_53_7097248.jpg new file mode 100644 index 0000000..4c23404 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805309_53_7097248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24aeb5a7221f835c76a3a9537878578f197e1d78c3911833fc4c05c0458a1a4a +size 109854 diff --git a/datasets/仪表盘/train/images/仪表盘1805318_53_7096055.jpg b/datasets/仪表盘/train/images/仪表盘1805318_53_7096055.jpg new file mode 100644 index 0000000..e45a0a1 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805318_53_7096055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ecfd819ee70387719118336bf428d37c49a49379a8dad424651d04fe1f362f +size 57812 diff --git a/datasets/仪表盘/train/images/仪表盘1805322_53_7096266.jpg b/datasets/仪表盘/train/images/仪表盘1805322_53_7096266.jpg new file mode 100644 index 0000000..7440c5e --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805322_53_7096266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f6dfad4df3017a0a29181685fb3ca863d5d1fd9d54768bd2c01fd922db09ab +size 272879 diff --git a/datasets/仪表盘/train/images/仪表盘1805328_53_7096136.jpg b/datasets/仪表盘/train/images/仪表盘1805328_53_7096136.jpg new file mode 100644 index 0000000..c4c5225 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805328_53_7096136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1880a81157450db6c1bbe31960423c76c97f6f3f6b808ac4a7571d7f58ae286a +size 288113 diff --git a/datasets/仪表盘/train/images/仪表盘1805329_53_7096219.jpg b/datasets/仪表盘/train/images/仪表盘1805329_53_7096219.jpg new file mode 100644 index 0000000..8fcb6a8 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805329_53_7096219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a067ada12858b8330cf43a689eba3b8174174c54e08759e10b92543057614b7a +size 340423 diff --git a/datasets/仪表盘/train/images/仪表盘1805331_53_7096204.jpg b/datasets/仪表盘/train/images/仪表盘1805331_53_7096204.jpg new file mode 100644 index 0000000..3249d18 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805331_53_7096204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69447fa825e98f59a92e6a14b73853557c8382515f926e73c586be4160cf8b7c +size 222230 diff --git a/datasets/仪表盘/train/images/仪表盘1805339_53_7096547.jpg b/datasets/仪表盘/train/images/仪表盘1805339_53_7096547.jpg new file mode 100644 index 0000000..c27f361 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805339_53_7096547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd087276b7cd8b7091661131dff28cee4f9d2ebbddecbc4d7833e8b69f45e3a +size 70455 diff --git a/datasets/仪表盘/train/images/仪表盘1805349_53_7096335.jpg b/datasets/仪表盘/train/images/仪表盘1805349_53_7096335.jpg new file mode 100644 index 0000000..4508ccd --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805349_53_7096335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b3f47dd97cc44a8cce9377804d88fc64377299c136e4111e01209d394d5894 +size 79263 diff --git a/datasets/仪表盘/train/images/仪表盘1805352_53_7096325.jpg b/datasets/仪表盘/train/images/仪表盘1805352_53_7096325.jpg new file mode 100644 index 0000000..d3cbe45 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805352_53_7096325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd25034fee49e421ed72127222dd745b9d35f9d5de018d8249a1034e856e1148 +size 82732 diff --git a/datasets/仪表盘/train/images/仪表盘1805356_53_7096714.jpg b/datasets/仪表盘/train/images/仪表盘1805356_53_7096714.jpg new file mode 100644 index 0000000..a312272 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805356_53_7096714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35118c5914915dd3f2be23665304e460a9cbdc063369ef44062e64a68bb38b62 +size 585015 diff --git a/datasets/仪表盘/train/images/仪表盘1805360_53_7096478.jpg b/datasets/仪表盘/train/images/仪表盘1805360_53_7096478.jpg new file mode 100644 index 0000000..946e26f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805360_53_7096478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf0311af55a1ef8b8b6935717612f0907586e108e26e9f7356ce2abb9caeb28 +size 188506 diff --git a/datasets/仪表盘/train/images/仪表盘1805364_53_7096462.jpg b/datasets/仪表盘/train/images/仪表盘1805364_53_7096462.jpg new file mode 100644 index 0000000..4b335ff --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805364_53_7096462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abf4cb3378effb7e03b15a166a5d3b07faa75775862c68352f6b9d6c60da421 +size 145228 diff --git a/datasets/仪表盘/train/images/仪表盘1805365_53_7096484.jpg b/datasets/仪表盘/train/images/仪表盘1805365_53_7096484.jpg new file mode 100644 index 0000000..c0c5b8b --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805365_53_7096484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd4836c497d50e9bcf03dca418e29690e8022fc11db560350c181dfea505ea6 +size 184719 diff --git a/datasets/仪表盘/train/images/仪表盘1805372_53_7097024.jpg b/datasets/仪表盘/train/images/仪表盘1805372_53_7097024.jpg new file mode 100644 index 0000000..ba9fbe9 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805372_53_7097024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cebdbca68db311d420510885b4bdff5ecbe748ff8073ad15a75da8b260d19fe +size 92840 diff --git a/datasets/仪表盘/train/images/仪表盘1805379_53_7096683.jpg b/datasets/仪表盘/train/images/仪表盘1805379_53_7096683.jpg new file mode 100644 index 0000000..31544db --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805379_53_7096683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c2abcc23aaac1307c3f848edede15f709e2b89eefc1cbc136d754651b1df06 +size 443870 diff --git a/datasets/仪表盘/train/images/仪表盘1805384_53_7096650.jpg b/datasets/仪表盘/train/images/仪表盘1805384_53_7096650.jpg new file mode 100644 index 0000000..71932dd --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805384_53_7096650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd828fde8a689203391b738da3b65acef009a425c52a7d5a48fb3696add7cb3 +size 149066 diff --git a/datasets/仪表盘/train/images/仪表盘1805386_53_7096738.jpg b/datasets/仪表盘/train/images/仪表盘1805386_53_7096738.jpg new file mode 100644 index 0000000..9118ac8 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805386_53_7096738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5666304e74bd74a34dfb504267d92ccd07787f5073d90a17a67d33789e61b4c +size 70602 diff --git a/datasets/仪表盘/train/images/仪表盘1805388_53_7096856.jpg b/datasets/仪表盘/train/images/仪表盘1805388_53_7096856.jpg new file mode 100644 index 0000000..925d1da --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805388_53_7096856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596142d803630528fbdcdb974b41f84d186fdbe606c3045ba75bacfc52e61bc2 +size 267583 diff --git a/datasets/仪表盘/train/images/仪表盘1805389_53_7096881.jpg b/datasets/仪表盘/train/images/仪表盘1805389_53_7096881.jpg new file mode 100644 index 0000000..24d6b62 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805389_53_7096881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88044c80eb41e72af9c76aa20c14c550a523a4495fa82d1b03813a20e4cba5b +size 80644 diff --git a/datasets/仪表盘/train/images/仪表盘1805390_53_7096723.jpg b/datasets/仪表盘/train/images/仪表盘1805390_53_7096723.jpg new file mode 100644 index 0000000..a87540f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805390_53_7096723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9f4b45f6a069669e2c9146d613d8273b24c1af314585703524b8ccf91e56f2 +size 349651 diff --git a/datasets/仪表盘/train/images/仪表盘1805396_53_7096868.jpg b/datasets/仪表盘/train/images/仪表盘1805396_53_7096868.jpg new file mode 100644 index 0000000..8e9599a --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805396_53_7096868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6612a96f8e22cd2983f4e72fd3059dff114dbdecd174b5e35f164d8dc93394ee +size 388042 diff --git a/datasets/仪表盘/train/images/仪表盘1805401_53_7096983.jpg b/datasets/仪表盘/train/images/仪表盘1805401_53_7096983.jpg new file mode 100644 index 0000000..9f41ae0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805401_53_7096983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889ddf8f7c63e1b66184d82def2189c1a91a988285f4f6599b4e8b13e4494f36 +size 399862 diff --git a/datasets/仪表盘/train/images/仪表盘1805434_53_7097105.jpg b/datasets/仪表盘/train/images/仪表盘1805434_53_7097105.jpg new file mode 100644 index 0000000..8c03105 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805434_53_7097105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6a2ad29699fea6919ec3763b9a3a81d3e10abd05ccd29edc842106dec50988 +size 242488 diff --git a/datasets/仪表盘/train/images/仪表盘1805450_53_7097432.jpg b/datasets/仪表盘/train/images/仪表盘1805450_53_7097432.jpg new file mode 100644 index 0000000..fce6b77 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805450_53_7097432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f939c6b6c79ef01c7986677717b8c22e77d2aa0cd18f92f32abab5b8839e624 +size 354396 diff --git a/datasets/仪表盘/train/images/仪表盘1805457_53_7097536.jpg b/datasets/仪表盘/train/images/仪表盘1805457_53_7097536.jpg new file mode 100644 index 0000000..52ca571 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805457_53_7097536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f507f1d45649695cf6cd32e04e3d631ac569ee05a00ce4805b623a6dc02ed3e +size 181590 diff --git a/datasets/仪表盘/train/images/仪表盘1805465_53_7097436.jpg b/datasets/仪表盘/train/images/仪表盘1805465_53_7097436.jpg new file mode 100644 index 0000000..723f8a0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805465_53_7097436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945b73fef144dd03ece0f45f92b252f164fa96d3a210cb94ecb05aefec08acf0 +size 248792 diff --git a/datasets/仪表盘/train/images/仪表盘1805491_53_7097702.jpg b/datasets/仪表盘/train/images/仪表盘1805491_53_7097702.jpg new file mode 100644 index 0000000..2b25c93 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805491_53_7097702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f22ed5c8e0836f37ac384211a8f8d5799ead4c670ee9f31c393094b9729b72 +size 50659 diff --git a/datasets/仪表盘/train/images/仪表盘1805493_53_7097746.jpg b/datasets/仪表盘/train/images/仪表盘1805493_53_7097746.jpg new file mode 100644 index 0000000..624fce4 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805493_53_7097746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e999f87b6d8f63628822299e8ef6d817d836980fe4023a854cea257e7a2173a8 +size 776872 diff --git a/datasets/仪表盘/train/images/仪表盘1805501_53_7097785.jpg b/datasets/仪表盘/train/images/仪表盘1805501_53_7097785.jpg new file mode 100644 index 0000000..62d31a0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805501_53_7097785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062f9dfb8595f11e00bfa37b72dda6ffb45a0a6f4d0d9e8ea3cd91077febc88b +size 663355 diff --git a/datasets/仪表盘/train/images/仪表盘1805502_53_7097776.jpg b/datasets/仪表盘/train/images/仪表盘1805502_53_7097776.jpg new file mode 100644 index 0000000..0f88a01 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805502_53_7097776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7e19d057c5ed7583aef217e7b59f4d94f78b2c71a831defd393c4b2c7a3c69 +size 215789 diff --git a/datasets/仪表盘/train/images/仪表盘1805504_53_7097800.jpg b/datasets/仪表盘/train/images/仪表盘1805504_53_7097800.jpg new file mode 100644 index 0000000..4857ff0 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805504_53_7097800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6211845205bf87dc14c9c9ac11817d9cd7807d23d22c10ede1584948acdecef6 +size 525316 diff --git a/datasets/仪表盘/train/images/仪表盘1805514_53_7097869.jpg b/datasets/仪表盘/train/images/仪表盘1805514_53_7097869.jpg new file mode 100644 index 0000000..3ba12c3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805514_53_7097869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8371856d7109a07e41912bee5dc660bd040a35f2eb7cc8e7523dcc278aba8e0 +size 258770 diff --git a/datasets/仪表盘/train/images/仪表盘1805515_53_7097961.jpg b/datasets/仪表盘/train/images/仪表盘1805515_53_7097961.jpg new file mode 100644 index 0000000..c4300ad --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805515_53_7097961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431b8bd49fe5b2ace494346178df814c7e82873f7d218129b8c28c871a33142c +size 231981 diff --git a/datasets/仪表盘/train/images/仪表盘1805518_53_7097905.jpg b/datasets/仪表盘/train/images/仪表盘1805518_53_7097905.jpg new file mode 100644 index 0000000..7347ac3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805518_53_7097905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28ea547e5d99b3a421922a71bcb489ef175accb7dc3f087f8ae474e68964387 +size 519364 diff --git a/datasets/仪表盘/train/images/仪表盘1805521_53_7097894.jpg b/datasets/仪表盘/train/images/仪表盘1805521_53_7097894.jpg new file mode 100644 index 0000000..4780f7b --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805521_53_7097894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df1276dbd21e1608c3cf0317829fed8973b75d7b0abfae096b341768aff5933 +size 295129 diff --git a/datasets/仪表盘/train/images/仪表盘1805534_53_7098083.jpg b/datasets/仪表盘/train/images/仪表盘1805534_53_7098083.jpg new file mode 100644 index 0000000..8cc6658 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805534_53_7098083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ee5065fe91942f33d8c62ba277278a905a0dae8a65683569211be7bd7ad839 +size 257864 diff --git a/datasets/仪表盘/train/images/仪表盘1805535_53_7098015.jpg b/datasets/仪表盘/train/images/仪表盘1805535_53_7098015.jpg new file mode 100644 index 0000000..8510ffa --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805535_53_7098015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f013b27bf90f9443c2a692c6a722e61fad1e1eaeb25d46e744da4bb9cc93ae1 +size 524536 diff --git a/datasets/仪表盘/train/images/仪表盘1805551_53_7098231.jpg b/datasets/仪表盘/train/images/仪表盘1805551_53_7098231.jpg new file mode 100644 index 0000000..28424ab --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805551_53_7098231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eba9491d990978eded0a436db3a9ac6716dc5390973fbb7b0f0fa9d4333f435 +size 287949 diff --git a/datasets/仪表盘/train/images/仪表盘1805555_53_7098385.jpg b/datasets/仪表盘/train/images/仪表盘1805555_53_7098385.jpg new file mode 100644 index 0000000..d65425f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805555_53_7098385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41d17867c091df3ac2bf6cab0c2cdfc655f72406b649797bbdfa62f8e9ff22a +size 295452 diff --git a/datasets/仪表盘/train/images/仪表盘1805586_53_7098658.jpg b/datasets/仪表盘/train/images/仪表盘1805586_53_7098658.jpg new file mode 100644 index 0000000..2cb866c --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805586_53_7098658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bc3808c6cc961c4598daf4591f8570f292bcc265862348c7cda0351c0a689d +size 83946 diff --git a/datasets/仪表盘/train/images/仪表盘1805588_53_7098649.jpg b/datasets/仪表盘/train/images/仪表盘1805588_53_7098649.jpg new file mode 100644 index 0000000..b8b0258 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805588_53_7098649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34917f5c93caf0d4d1b2b868165a985c564a9d030f009265c92aaba2f202e42b +size 370313 diff --git a/datasets/仪表盘/train/images/仪表盘1805590_53_7098527.jpg b/datasets/仪表盘/train/images/仪表盘1805590_53_7098527.jpg new file mode 100644 index 0000000..8e4f600 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805590_53_7098527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d32b9783e104b2fc6e9e2bf3907ac9690d333d3c84c887c1ec66775237b2a9f +size 389346 diff --git a/datasets/仪表盘/train/images/仪表盘1805595_53_7098588.jpg b/datasets/仪表盘/train/images/仪表盘1805595_53_7098588.jpg new file mode 100644 index 0000000..40f654e --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805595_53_7098588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbbb37da2b3d505dbdec48ce9dae4442ebed3ee51288a576abbaa965c6ef51f +size 318505 diff --git a/datasets/仪表盘/train/images/仪表盘1805598_53_7099008.jpg b/datasets/仪表盘/train/images/仪表盘1805598_53_7099008.jpg new file mode 100644 index 0000000..872dcb3 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805598_53_7099008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dcf16c488b6ad69485b479f7515533411040406bfdb02032cc4a9ded987503 +size 82568 diff --git a/datasets/仪表盘/train/images/仪表盘1805601_53_7098679.jpg b/datasets/仪表盘/train/images/仪表盘1805601_53_7098679.jpg new file mode 100644 index 0000000..be35ff2 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805601_53_7098679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d0e4ae5b7271d0c171891c7d9034e440c8d658c4e338f5587355393303f147 +size 278839 diff --git a/datasets/仪表盘/train/images/仪表盘1805603_53_7098614.jpg b/datasets/仪表盘/train/images/仪表盘1805603_53_7098614.jpg new file mode 100644 index 0000000..fdcca1b --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805603_53_7098614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c417c712ee95c9101f98ad519d77f37be627913aff978041131f53b38f97ebd +size 341724 diff --git a/datasets/仪表盘/train/images/仪表盘1805604_53_7098683.jpg b/datasets/仪表盘/train/images/仪表盘1805604_53_7098683.jpg new file mode 100644 index 0000000..4363f54 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805604_53_7098683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710b00efe0ebf4dd617e8ca81453902ce3ffb49edcf4f0ee25eaa3760885a86d +size 373530 diff --git a/datasets/仪表盘/train/images/仪表盘1805606_53_7098590.jpg b/datasets/仪表盘/train/images/仪表盘1805606_53_7098590.jpg new file mode 100644 index 0000000..0ca7be2 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805606_53_7098590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319fb93f8830d347d591b1e4d878b7f513dd051ca3041b8701577c5fc109a67c +size 115340 diff --git a/datasets/仪表盘/train/images/仪表盘1805611_53_7098731.jpg b/datasets/仪表盘/train/images/仪表盘1805611_53_7098731.jpg new file mode 100644 index 0000000..5050dcd --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805611_53_7098731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b41df85439991c9dec6a1f6ae18f05af9eb336db88dcf486d48a8796c31e584 +size 92094 diff --git a/datasets/仪表盘/train/images/仪表盘1805613_53_7098990.jpg b/datasets/仪表盘/train/images/仪表盘1805613_53_7098990.jpg new file mode 100644 index 0000000..7c62a09 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805613_53_7098990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a6c7fa614ece01af05ce78356e72afae5db08544e68b64d8222fd648514021 +size 830982 diff --git a/datasets/仪表盘/train/images/仪表盘1805625_53_7098895.jpg b/datasets/仪表盘/train/images/仪表盘1805625_53_7098895.jpg new file mode 100644 index 0000000..30282cb --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805625_53_7098895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f810fc6916e53855dc46e6f8409733898307d80ea9574810ddcc69856dc33c +size 78465 diff --git a/datasets/仪表盘/train/images/仪表盘1805642_53_7099041.jpg b/datasets/仪表盘/train/images/仪表盘1805642_53_7099041.jpg new file mode 100644 index 0000000..6dd868f --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805642_53_7099041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62388fe81b3c4590d2449b8080d06fc283c27fbab3bbd043a35be5f7e41c7980 +size 103648 diff --git a/datasets/仪表盘/train/images/仪表盘1805648_53_7099268.jpg b/datasets/仪表盘/train/images/仪表盘1805648_53_7099268.jpg new file mode 100644 index 0000000..f2e48c7 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805648_53_7099268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5277ee0f051cba97719dd229c0f395c27d6a294dd6c319f4bce20c7b2d271a46 +size 244622 diff --git a/datasets/仪表盘/train/images/仪表盘1805653_53_7099135.jpg b/datasets/仪表盘/train/images/仪表盘1805653_53_7099135.jpg new file mode 100644 index 0000000..a0c7097 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805653_53_7099135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a384228ff39c6bd9e1938edae4cd85bf5d90dbbe6aa5ef0ba95c598c83f89904 +size 271530 diff --git a/datasets/仪表盘/train/images/仪表盘1805654_53_7099175.jpg b/datasets/仪表盘/train/images/仪表盘1805654_53_7099175.jpg new file mode 100644 index 0000000..bfc4f5c --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805654_53_7099175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a121e0b0904857677173aec423005f6b353c18ca23a097cf0d9d25c48f9d56f +size 299870 diff --git a/datasets/仪表盘/train/images/仪表盘1805656_53_7099388.jpg b/datasets/仪表盘/train/images/仪表盘1805656_53_7099388.jpg new file mode 100644 index 0000000..31d9141 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805656_53_7099388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbc5490341d38ac119a9fd9bf656facd75cdb3426d7b3936283eb68439347bb +size 759295 diff --git a/datasets/仪表盘/train/images/仪表盘1805663_53_7099180.jpg b/datasets/仪表盘/train/images/仪表盘1805663_53_7099180.jpg new file mode 100644 index 0000000..8f864d1 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805663_53_7099180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84bf88cf2482925f52917d6f4895d07bd9946467e7e3071744a8fa81957692f +size 381957 diff --git a/datasets/仪表盘/train/images/仪表盘1805666_53_7099283.jpg b/datasets/仪表盘/train/images/仪表盘1805666_53_7099283.jpg new file mode 100644 index 0000000..184f207 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805666_53_7099283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f44be7118a9ad836aadb28b95b82cf8b9a051490c2bb3da683df275a55e1a0 +size 120925 diff --git a/datasets/仪表盘/train/images/仪表盘1805668_53_7099201.jpg b/datasets/仪表盘/train/images/仪表盘1805668_53_7099201.jpg new file mode 100644 index 0000000..9bb6d85 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805668_53_7099201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d95faac666c5b482e3688672755b70696cf35b3ad47814299d0fba3eb0f23a +size 68366 diff --git a/datasets/仪表盘/train/images/仪表盘1805674_53_7099289.jpg b/datasets/仪表盘/train/images/仪表盘1805674_53_7099289.jpg new file mode 100644 index 0000000..43c7257 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805674_53_7099289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f3b18cf6d5f23f528e16eabe93ca576e13b04b2c1874aa91e2cc316da848f +size 348383 diff --git a/datasets/仪表盘/train/images/仪表盘1805686_53_7099505.jpg b/datasets/仪表盘/train/images/仪表盘1805686_53_7099505.jpg new file mode 100644 index 0000000..b21f2d6 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805686_53_7099505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52795c0da93d770351f82cb09c4119162062a4a93aeb6f46e1dd00e520c173ec +size 304922 diff --git a/datasets/仪表盘/train/images/仪表盘1805687_53_7099435.jpg b/datasets/仪表盘/train/images/仪表盘1805687_53_7099435.jpg new file mode 100644 index 0000000..94a8f74 --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805687_53_7099435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9237ff61bcd591af90505509cc261a93a2392d6a2781784642f0b7ef7939bfd7 +size 282913 diff --git a/datasets/仪表盘/train/images/仪表盘1805705_53_7099719.jpg b/datasets/仪表盘/train/images/仪表盘1805705_53_7099719.jpg new file mode 100644 index 0000000..20d0c4b --- /dev/null +++ b/datasets/仪表盘/train/images/仪表盘1805705_53_7099719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2251540cb73ff8e81525c67b93ffb425580a802c818954bf3c2a962f72dfc21d +size 179215 diff --git a/datasets/仪表盘/train/images/订单1804656_53_7089962.jpg b/datasets/仪表盘/train/images/订单1804656_53_7089962.jpg new file mode 100644 index 0000000..2128e78 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804656_53_7089962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8078b059498c1345a54186cb52b908ef49ef02bc0979bc6ce1803f4c4517e520 +size 223406 diff --git a/datasets/仪表盘/train/images/订单1804658_53_7089993.jpg b/datasets/仪表盘/train/images/订单1804658_53_7089993.jpg new file mode 100644 index 0000000..8b0421d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804658_53_7089993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0a5599d1770515a5fc1c161b64e58e9055bfee19d2028659f59de25da0a878 +size 251828 diff --git a/datasets/仪表盘/train/images/订单1804659_53_7090001.jpg b/datasets/仪表盘/train/images/订单1804659_53_7090001.jpg new file mode 100644 index 0000000..78fb1f8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804659_53_7090001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7446047cacb165ade63914120f11f357ebd75b3c9f1b1a6d9609d05debe432c +size 299204 diff --git a/datasets/仪表盘/train/images/订单1804662_53_7090006.jpg b/datasets/仪表盘/train/images/订单1804662_53_7090006.jpg new file mode 100644 index 0000000..3c644fd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804662_53_7090006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f90c88fc00a05d38600b5c863ac606602bbe5c22e645663f41878c02589ac6 +size 191591 diff --git a/datasets/仪表盘/train/images/订单1804663_53_7090035.jpg b/datasets/仪表盘/train/images/订单1804663_53_7090035.jpg new file mode 100644 index 0000000..700e3b3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804663_53_7090035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060f2b6c1901c07ed1288374251c3921b9a89ec0895b5619dcbf02934206b897 +size 232616 diff --git a/datasets/仪表盘/train/images/订单1804667_53_7090068.jpg b/datasets/仪表盘/train/images/订单1804667_53_7090068.jpg new file mode 100644 index 0000000..5e79ca1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804667_53_7090068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5007de19a418127fcce401a699adcffcc38e53085fe5d2dcef76e921acda7b63 +size 93394 diff --git a/datasets/仪表盘/train/images/订单1804668_53_7090069.jpg b/datasets/仪表盘/train/images/订单1804668_53_7090069.jpg new file mode 100644 index 0000000..4e1fdd2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804668_53_7090069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01078cbf1766d4da2567a4dcf2ed97e23e9a5858a450e9cebe11c65a02805652 +size 154751 diff --git a/datasets/仪表盘/train/images/订单1804670_53_7090087.jpg b/datasets/仪表盘/train/images/订单1804670_53_7090087.jpg new file mode 100644 index 0000000..7d682b0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804670_53_7090087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50fb805eddb6ef5ce299826e2239f662dd2d684b1a9de972141b5c9638576ae7 +size 107530 diff --git a/datasets/仪表盘/train/images/订单1804671_53_7090107.jpg b/datasets/仪表盘/train/images/订单1804671_53_7090107.jpg new file mode 100644 index 0000000..3eb559e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804671_53_7090107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c8799c785b4f2fe174deb8f6848f7debd2dc811836ef02762052e0e123e857 +size 60065 diff --git a/datasets/仪表盘/train/images/订单1804674_53_7090108.jpg b/datasets/仪表盘/train/images/订单1804674_53_7090108.jpg new file mode 100644 index 0000000..af80a1a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804674_53_7090108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8e24d2cfd502533b441e428a94082fd20bb2b16c5d4c2f059ff9624f962c77 +size 81857 diff --git a/datasets/仪表盘/train/images/订单1804679_53_7090172.jpg b/datasets/仪表盘/train/images/订单1804679_53_7090172.jpg new file mode 100644 index 0000000..e5adaf1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804679_53_7090172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7525aad53de5fecc8f3e132fed17cfdfbe4e1ef354abda363400a890cce54b55 +size 395123 diff --git a/datasets/仪表盘/train/images/订单1804681_53_7090179.jpg b/datasets/仪表盘/train/images/订单1804681_53_7090179.jpg new file mode 100644 index 0000000..c39e9a5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804681_53_7090179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703e8d83789277f6e5ad9d35d12df754d5a09614451e8ea27b852f2e199d4e5f +size 572487 diff --git a/datasets/仪表盘/train/images/订单1804682_53_7090248.jpg b/datasets/仪表盘/train/images/订单1804682_53_7090248.jpg new file mode 100644 index 0000000..8c3ca05 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804682_53_7090248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6b3b4567b90014737743350e28c95e5ead680bf65482a889f732b4c2094382 +size 275894 diff --git a/datasets/仪表盘/train/images/订单1804685_53_7090168.jpg b/datasets/仪表盘/train/images/订单1804685_53_7090168.jpg new file mode 100644 index 0000000..f602550 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804685_53_7090168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b16661f0aed795d7c96da2f50ae139893170058dde11cac4effe7e9cc931a8 +size 109284 diff --git a/datasets/仪表盘/train/images/订单1804688_53_7090253.jpg b/datasets/仪表盘/train/images/订单1804688_53_7090253.jpg new file mode 100644 index 0000000..2164ee5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804688_53_7090253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b39ef904206038bb29481648a7e14622473acf27e2add51879d62ff0a4d928 +size 78742 diff --git a/datasets/仪表盘/train/images/订单1804689_53_7090276.jpg b/datasets/仪表盘/train/images/订单1804689_53_7090276.jpg new file mode 100644 index 0000000..c84eed2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804689_53_7090276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c17a8f318e1695ee9e4eb6ea658e3bfb43c0a6e0fe7fda0b7dce5e7e0e341f +size 151090 diff --git a/datasets/仪表盘/train/images/订单1804691_53_7090319.jpg b/datasets/仪表盘/train/images/订单1804691_53_7090319.jpg new file mode 100644 index 0000000..82ae586 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804691_53_7090319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe298c3b27e53526fe45471576e34bbec305696c4b9b272b0522be7e57f2783 +size 403767 diff --git a/datasets/仪表盘/train/images/订单1804693_53_7090340.jpg b/datasets/仪表盘/train/images/订单1804693_53_7090340.jpg new file mode 100644 index 0000000..9f8566a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804693_53_7090340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9acd396e1428c86a54a0437ffe12834a2cbe839b8477ad6551ae9a02765cc13 +size 322056 diff --git a/datasets/仪表盘/train/images/订单1804698_53_7090381.jpg b/datasets/仪表盘/train/images/订单1804698_53_7090381.jpg new file mode 100644 index 0000000..7a508f9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804698_53_7090381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803eb3ebdd209dcb8fcc86922c1b359e05998af53f6572ac485494104fbc336e +size 276975 diff --git a/datasets/仪表盘/train/images/订单1804699_53_7090376.jpg b/datasets/仪表盘/train/images/订单1804699_53_7090376.jpg new file mode 100644 index 0000000..63cf7a1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804699_53_7090376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623d89fb202bfe53923028684f2eab2d7725a2376c419d2eb65ee5e360778517 +size 66781 diff --git a/datasets/仪表盘/train/images/订单1804707_53_7090500.jpg b/datasets/仪表盘/train/images/订单1804707_53_7090500.jpg new file mode 100644 index 0000000..04210d1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804707_53_7090500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90626811c301e135c937f9d1260c7478b82da85ce5e43b6a7b95580cd8d10e6b +size 547182 diff --git a/datasets/仪表盘/train/images/订单1804710_53_7090532.jpg b/datasets/仪表盘/train/images/订单1804710_53_7090532.jpg new file mode 100644 index 0000000..5c76c93 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804710_53_7090532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f61512fb7e934cd3a94db3cc41471807b23da7c5725e1770c2ecf50bb380a67 +size 236697 diff --git a/datasets/仪表盘/train/images/订单1804713_53_7090550.jpg b/datasets/仪表盘/train/images/订单1804713_53_7090550.jpg new file mode 100644 index 0000000..c0335bd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804713_53_7090550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72efaca0852cf26dce2a4757408f410e578be01a88b3eee41788f37cc7bb3386 +size 68122 diff --git a/datasets/仪表盘/train/images/订单1804714_53_7090593.jpg b/datasets/仪表盘/train/images/订单1804714_53_7090593.jpg new file mode 100644 index 0000000..04a3de9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804714_53_7090593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350b62fa41c80491c7093c1737243827aacb6a0e7ea293a0e3bcec9193a622ce +size 369144 diff --git a/datasets/仪表盘/train/images/订单1804715_53_7090558.jpg b/datasets/仪表盘/train/images/订单1804715_53_7090558.jpg new file mode 100644 index 0000000..7028cb8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804715_53_7090558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc82978270676e98436475c06489a11ce32113d0ebe3c0f6575794fa5c2192d +size 91455 diff --git a/datasets/仪表盘/train/images/订单1804718_53_7090585.jpg b/datasets/仪表盘/train/images/订单1804718_53_7090585.jpg new file mode 100644 index 0000000..f62e268 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804718_53_7090585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554e297d335c554ff45a989f85082e398cb4278cdbc9d7de7637b7a552ea8c5a +size 121737 diff --git a/datasets/仪表盘/train/images/订单1804719_53_7090566.jpg b/datasets/仪表盘/train/images/订单1804719_53_7090566.jpg new file mode 100644 index 0000000..070ce4e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804719_53_7090566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb4a463675bcd40abbc47f2aab627f92b2993ae07ebe69bf2fd004b51cf85bb +size 121484 diff --git a/datasets/仪表盘/train/images/订单1804722_53_7090586.jpg b/datasets/仪表盘/train/images/订单1804722_53_7090586.jpg new file mode 100644 index 0000000..04eef11 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804722_53_7090586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f426227678e2d6f5d71d76d543313840e4b300976a502b959c8e07fb9e0a715b +size 265460 diff --git a/datasets/仪表盘/train/images/订单1804724_53_7090631.jpg b/datasets/仪表盘/train/images/订单1804724_53_7090631.jpg new file mode 100644 index 0000000..814e49b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804724_53_7090631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e084f318d4fcccb6ae7757776b543d426a654c8ea9031929a6686f9e7b51c46b +size 55697 diff --git a/datasets/仪表盘/train/images/订单1804725_53_7090615.jpg b/datasets/仪表盘/train/images/订单1804725_53_7090615.jpg new file mode 100644 index 0000000..e8b16a3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804725_53_7090615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1936088241f0ce283fe3b1119b211c670bfc52c0e866918a37c70a76967f410f +size 153771 diff --git a/datasets/仪表盘/train/images/订单1804726_53_7090646.jpg b/datasets/仪表盘/train/images/订单1804726_53_7090646.jpg new file mode 100644 index 0000000..d99a6fa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804726_53_7090646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a29d3d0492742ebf14278b86a46f1abf4f67db564bd1980370c646630fcede9 +size 395038 diff --git a/datasets/仪表盘/train/images/订单1804727_53_7090677.jpg b/datasets/仪表盘/train/images/订单1804727_53_7090677.jpg new file mode 100644 index 0000000..bb1de7a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804727_53_7090677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a5aabaca8b12235553959dae2d6df7d99bc4340502417aed6f0ef202481d5a +size 218352 diff --git a/datasets/仪表盘/train/images/订单1804728_53_7090692.jpg b/datasets/仪表盘/train/images/订单1804728_53_7090692.jpg new file mode 100644 index 0000000..1cf916a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804728_53_7090692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e30c91c6f1f8e33057693ad59c1567fa9ce450163efc684a26d69d73f33782 +size 82799 diff --git a/datasets/仪表盘/train/images/订单1804732_53_7090657.jpg b/datasets/仪表盘/train/images/订单1804732_53_7090657.jpg new file mode 100644 index 0000000..f5c1e45 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804732_53_7090657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33631836acccded26247685c8c4a53980743d3cdcaa95ed9c7328265eb2995e +size 296729 diff --git a/datasets/仪表盘/train/images/订单1804733_53_7090665.jpg b/datasets/仪表盘/train/images/订单1804733_53_7090665.jpg new file mode 100644 index 0000000..9139b5a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804733_53_7090665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cfa2d59ff23445c813809a78fa69b181e135097ea22b6349566393ca3b6aba +size 120295 diff --git a/datasets/仪表盘/train/images/订单1804734_53_7090691.jpg b/datasets/仪表盘/train/images/订单1804734_53_7090691.jpg new file mode 100644 index 0000000..6973ae6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804734_53_7090691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ff07565606740f601a66c54fdb1189c1f240096125cfff2842a79b9389e73f +size 367705 diff --git a/datasets/仪表盘/train/images/订单1804738_53_7090696.jpg b/datasets/仪表盘/train/images/订单1804738_53_7090696.jpg new file mode 100644 index 0000000..b58da99 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804738_53_7090696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5cd1fef6b88d49e9c66ea712d5e268a1fc63bce6b26017177783c6666b6e45 +size 217922 diff --git a/datasets/仪表盘/train/images/订单1804742_53_7090732.jpg b/datasets/仪表盘/train/images/订单1804742_53_7090732.jpg new file mode 100644 index 0000000..5998143 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804742_53_7090732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b61fff801b5a199578871f07f17d65a5b6f6c9b925e231b0e155552f1b09ea8 +size 99117 diff --git a/datasets/仪表盘/train/images/订单1804744_53_7090708.jpg b/datasets/仪表盘/train/images/订单1804744_53_7090708.jpg new file mode 100644 index 0000000..4d9a65e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804744_53_7090708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40b4425cefe43c6093afbc0dcc47a0623a4591d81e27794b9ca74c85169863a +size 176750 diff --git a/datasets/仪表盘/train/images/订单1804750_53_7090758.jpg b/datasets/仪表盘/train/images/订单1804750_53_7090758.jpg new file mode 100644 index 0000000..a7897a2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804750_53_7090758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe7af667d79bbd7a2ec9a3a5ad860792db74ed8e212e67c6a4c3eac180da8b0 +size 270051 diff --git a/datasets/仪表盘/train/images/订单1804753_53_7090806.jpg b/datasets/仪表盘/train/images/订单1804753_53_7090806.jpg new file mode 100644 index 0000000..1c0e0a9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804753_53_7090806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1684c7cd18c8352e0fa819acf77deedc88fb80015d30f1a747a2be625fba6327 +size 294016 diff --git a/datasets/仪表盘/train/images/订单1804754_53_7090997.jpg b/datasets/仪表盘/train/images/订单1804754_53_7090997.jpg new file mode 100644 index 0000000..4f16d1d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804754_53_7090997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecb283a0357fc2d6dcb19600bd4d9204ab4cce866ae57262cc149a38e7fb970 +size 242983 diff --git a/datasets/仪表盘/train/images/订单1804755_53_7090764.jpg b/datasets/仪表盘/train/images/订单1804755_53_7090764.jpg new file mode 100644 index 0000000..9c6eab4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804755_53_7090764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3fa1c7803a9c5c1699af24ba024278094c75e45bfdd69af2e187741eaf1cde +size 314867 diff --git a/datasets/仪表盘/train/images/订单1804761_53_7090862.jpg b/datasets/仪表盘/train/images/订单1804761_53_7090862.jpg new file mode 100644 index 0000000..06df116 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804761_53_7090862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9759c43d38183d085e69e8d77b440a2e778b68558674b73cad9aa0794e38893b +size 318066 diff --git a/datasets/仪表盘/train/images/订单1804762_53_7090868.jpg b/datasets/仪表盘/train/images/订单1804762_53_7090868.jpg new file mode 100644 index 0000000..b1da826 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804762_53_7090868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aad3288cb3bf3c1a29432cbb1c8ef18a2a47a8999468cefa8953bb7c9d6e541 +size 122752 diff --git a/datasets/仪表盘/train/images/订单1804772_53_7090916.jpg b/datasets/仪表盘/train/images/订单1804772_53_7090916.jpg new file mode 100644 index 0000000..1d3995f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804772_53_7090916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcef7dd7600e4dc0640d40087a19f29dda68d70e13d9d12be93c62c8ef2df7d7 +size 380980 diff --git a/datasets/仪表盘/train/images/订单1804773_53_7090980.jpg b/datasets/仪表盘/train/images/订单1804773_53_7090980.jpg new file mode 100644 index 0000000..079420e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804773_53_7090980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a337adaf18e543190994a68a563153a1e4eb22591fe38a8d501b6efaaf796e67 +size 180626 diff --git a/datasets/仪表盘/train/images/订单1804774_53_7090984.jpg b/datasets/仪表盘/train/images/订单1804774_53_7090984.jpg new file mode 100644 index 0000000..366123a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804774_53_7090984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac1ee581bea3867c162caa0966f631a8f5ee719a46af11a7c97a4822a539681 +size 105967 diff --git a/datasets/仪表盘/train/images/订单1804776_53_7090977.jpg b/datasets/仪表盘/train/images/订单1804776_53_7090977.jpg new file mode 100644 index 0000000..e4f963e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804776_53_7090977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2682461954f38111b15361ae7189363e4080d12e7ba33dacb17670f903a253a +size 319611 diff --git a/datasets/仪表盘/train/images/订单1804781_53_7091056.jpg b/datasets/仪表盘/train/images/订单1804781_53_7091056.jpg new file mode 100644 index 0000000..7ce324f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804781_53_7091056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce488715fd0569b4253653fbbe55aee461baae80beee2a556213f4c2d70ecbf +size 71070 diff --git a/datasets/仪表盘/train/images/订单1804783_53_7091060.jpg b/datasets/仪表盘/train/images/订单1804783_53_7091060.jpg new file mode 100644 index 0000000..3c43099 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804783_53_7091060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0975b63e7299d55b4a7f842898c5a2f6a6d45ae590d790bf6017b1a4875cce64 +size 276743 diff --git a/datasets/仪表盘/train/images/订单1804784_53_7091037.jpg b/datasets/仪表盘/train/images/订单1804784_53_7091037.jpg new file mode 100644 index 0000000..cf6a0b3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804784_53_7091037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df37c30e38d8b5ee74b553e3b824130dda07921d2b53ae3b9aca2be9b100570 +size 56638 diff --git a/datasets/仪表盘/train/images/订单1804790_53_7091136.jpg b/datasets/仪表盘/train/images/订单1804790_53_7091136.jpg new file mode 100644 index 0000000..28205d7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804790_53_7091136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17719a084dcc79e10116dbb761736ca37068065695af936bb9eedb6565b777cf +size 467371 diff --git a/datasets/仪表盘/train/images/订单1804794_53_7091254.jpg b/datasets/仪表盘/train/images/订单1804794_53_7091254.jpg new file mode 100644 index 0000000..6dcfa00 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804794_53_7091254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1990ac74cc078da816bee623dff7d03fd3deb3a41b5ab78878e53cc57afdea9 +size 223391 diff --git a/datasets/仪表盘/train/images/订单1804796_53_7091239.jpg b/datasets/仪表盘/train/images/订单1804796_53_7091239.jpg new file mode 100644 index 0000000..dc761d5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804796_53_7091239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5464a995c29e2ae0316579988c81b4abc0721d3b7232bf18f88645bd75c26e04 +size 314033 diff --git a/datasets/仪表盘/train/images/订单1804797_53_7091209.jpg b/datasets/仪表盘/train/images/订单1804797_53_7091209.jpg new file mode 100644 index 0000000..c457af1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804797_53_7091209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a31bf5908eecb5994ae8a3eeeda0f8664089f569b550312a5c423da5279e8fc +size 42696 diff --git a/datasets/仪表盘/train/images/订单1804798_53_7091191.jpg b/datasets/仪表盘/train/images/订单1804798_53_7091191.jpg new file mode 100644 index 0000000..0af39fe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804798_53_7091191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2540d3cc10390d6d134ab7412a5c542da2d85829b07af7d57402b7e3d176aede +size 62232 diff --git a/datasets/仪表盘/train/images/订单1804800_53_7091210.jpg b/datasets/仪表盘/train/images/订单1804800_53_7091210.jpg new file mode 100644 index 0000000..b9eb975 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804800_53_7091210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3809de4aaa07a47d02548cdc3f34bd209856196d99248a70c5febacf47d38c9e +size 131420 diff --git a/datasets/仪表盘/train/images/订单1804806_53_7091302.jpg b/datasets/仪表盘/train/images/订单1804806_53_7091302.jpg new file mode 100644 index 0000000..080a0ce --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804806_53_7091302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:357327e76ba52c8fbd0c39202c6dac757451e174d6b348eb04661a4b229bea5c +size 304379 diff --git a/datasets/仪表盘/train/images/订单1804809_53_7091336.jpg b/datasets/仪表盘/train/images/订单1804809_53_7091336.jpg new file mode 100644 index 0000000..e7f5378 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804809_53_7091336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f2a71049e2ced3c670d27554cda46e7247d84c1728e6f212de4d4c407d4042 +size 224444 diff --git a/datasets/仪表盘/train/images/订单1804810_53_7091413.jpg b/datasets/仪表盘/train/images/订单1804810_53_7091413.jpg new file mode 100644 index 0000000..b6b84d7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804810_53_7091413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d4101dda8c02077b05f70f14245acc78cfe8d6b9123af1a8e7fe889500f77c +size 411965 diff --git a/datasets/仪表盘/train/images/订单1804812_53_7091354.jpg b/datasets/仪表盘/train/images/订单1804812_53_7091354.jpg new file mode 100644 index 0000000..e445a10 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804812_53_7091354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ddc8c2afbb3d6b0e63f92ed5f02a7fc164843f9cf2ba8716d8518d3279360a +size 579072 diff --git a/datasets/仪表盘/train/images/订单1804813_53_7091315.jpg b/datasets/仪表盘/train/images/订单1804813_53_7091315.jpg new file mode 100644 index 0000000..a378a17 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804813_53_7091315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7150bdba78fa5a7d30290cad215b3e06a89a2ad9a0cde227a5f0bfa2922e1c +size 267857 diff --git a/datasets/仪表盘/train/images/订单1804816_53_7091479.jpg b/datasets/仪表盘/train/images/订单1804816_53_7091479.jpg new file mode 100644 index 0000000..6ad649a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804816_53_7091479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a65223f152b61c8d073a7b5c56fef571df9374ea8565b1ea3d7d5f4ad1a344c +size 268858 diff --git a/datasets/仪表盘/train/images/订单1804819_53_7091376.jpg b/datasets/仪表盘/train/images/订单1804819_53_7091376.jpg new file mode 100644 index 0000000..4c3192e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804819_53_7091376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5a73da43f6e4b8675a5b969353350d461d67a6d2fd040340a4fc81879ac3f6 +size 554793 diff --git a/datasets/仪表盘/train/images/订单1804833_53_7091532.jpg b/datasets/仪表盘/train/images/订单1804833_53_7091532.jpg new file mode 100644 index 0000000..407f72b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804833_53_7091532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9347ea150677e6d3023001817708eae7ce95e13493475a924994fd6314b9e09e +size 274258 diff --git a/datasets/仪表盘/train/images/订单1804834_53_7091563.jpg b/datasets/仪表盘/train/images/订单1804834_53_7091563.jpg new file mode 100644 index 0000000..305a8c9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804834_53_7091563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2aa3403498d6a8e68786f0ece4dbec8d4a8aebc51887fc3505fbf5344672d1f +size 87534 diff --git a/datasets/仪表盘/train/images/订单1804839_53_7091591.jpg b/datasets/仪表盘/train/images/订单1804839_53_7091591.jpg new file mode 100644 index 0000000..d193ee7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804839_53_7091591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4031fa87bf01908f613364361d1af7635e49eda84b0932197c21b2e30706b066 +size 231465 diff --git a/datasets/仪表盘/train/images/订单1804842_53_7091685.jpg b/datasets/仪表盘/train/images/订单1804842_53_7091685.jpg new file mode 100644 index 0000000..00c5b74 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804842_53_7091685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a35046542950374608cb779abb447978f4e26d01482eacf1fc0f65e12676fdff +size 409729 diff --git a/datasets/仪表盘/train/images/订单1804844_53_7091623.jpg b/datasets/仪表盘/train/images/订单1804844_53_7091623.jpg new file mode 100644 index 0000000..4f66eae --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804844_53_7091623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65ec20f97e1df0d4e9a3ab47f658cf1ef4ad35eb98e0971a689e33b6be0c574 +size 84294 diff --git a/datasets/仪表盘/train/images/订单1804845_53_7091656.jpg b/datasets/仪表盘/train/images/订单1804845_53_7091656.jpg new file mode 100644 index 0000000..1f28c01 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804845_53_7091656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c871ff152f42bd096af60a655390348198d7ef324170311a1f8292e99c9cad +size 297606 diff --git a/datasets/仪表盘/train/images/订单1804848_53_7091661.jpg b/datasets/仪表盘/train/images/订单1804848_53_7091661.jpg new file mode 100644 index 0000000..e73718d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804848_53_7091661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7192d4632284ee4da27197afedd16121c2ddbedc258e27c090abaebc15727ce +size 69684 diff --git a/datasets/仪表盘/train/images/订单1804850_53_7091746.jpg b/datasets/仪表盘/train/images/订单1804850_53_7091746.jpg new file mode 100644 index 0000000..42e1096 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804850_53_7091746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405bef90c36ed354c484e428a458e141045ec023fbc42639520de1a795cae097 +size 69581 diff --git a/datasets/仪表盘/train/images/订单1804851_53_7091677.jpg b/datasets/仪表盘/train/images/订单1804851_53_7091677.jpg new file mode 100644 index 0000000..8dee4a1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804851_53_7091677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530c7cf56390ac00bd6622a09448733ea1f25c96580515248e1e2b66ab19d5d4 +size 86061 diff --git a/datasets/仪表盘/train/images/订单1804854_53_7091802.jpg b/datasets/仪表盘/train/images/订单1804854_53_7091802.jpg new file mode 100644 index 0000000..21a9323 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804854_53_7091802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3a28265afb7025fd76232070ae75f5c1aecad86d7a307bbf9b52dc78ea7f59 +size 260667 diff --git a/datasets/仪表盘/train/images/订单1804857_53_7091761.jpg b/datasets/仪表盘/train/images/订单1804857_53_7091761.jpg new file mode 100644 index 0000000..c4876e0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804857_53_7091761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66b52ee681f782db1b087dc9a57b4b3f3c687ec1c7e1059d025437c2afc3f98 +size 310107 diff --git a/datasets/仪表盘/train/images/订单1804859_53_7091783.jpg b/datasets/仪表盘/train/images/订单1804859_53_7091783.jpg new file mode 100644 index 0000000..2aee9b5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804859_53_7091783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7926870410d300b759cb50c334c735cdd3472a2b413bc335e1e2264449720ca4 +size 119234 diff --git a/datasets/仪表盘/train/images/订单1804861_53_7091849.jpg b/datasets/仪表盘/train/images/订单1804861_53_7091849.jpg new file mode 100644 index 0000000..9a28ed5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804861_53_7091849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913dd69aaec97a49fee0ded71bebb7fae5b83b18b3efc2e8eb43c5c958b201d9 +size 215807 diff --git a/datasets/仪表盘/train/images/订单1804863_53_7091815.jpg b/datasets/仪表盘/train/images/订单1804863_53_7091815.jpg new file mode 100644 index 0000000..84217d3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804863_53_7091815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625adae4a3f6759891ebc2c14425f111b87039d4391e57415c750d9879fe80ac +size 500926 diff --git a/datasets/仪表盘/train/images/订单1804865_53_7091799.jpg b/datasets/仪表盘/train/images/订单1804865_53_7091799.jpg new file mode 100644 index 0000000..8b8d651 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804865_53_7091799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65291dc1c25f240166f3ca647010fafab8b92b1e354f441ac51556991c4411af +size 260593 diff --git a/datasets/仪表盘/train/images/订单1804866_53_7091866.jpg b/datasets/仪表盘/train/images/订单1804866_53_7091866.jpg new file mode 100644 index 0000000..a24475d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804866_53_7091866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0a9376bcca87da9e1af937108bd20685403e635cb7944f7ccf5e5843be2a72 +size 180022 diff --git a/datasets/仪表盘/train/images/订单1804870_53_7091995.jpg b/datasets/仪表盘/train/images/订单1804870_53_7091995.jpg new file mode 100644 index 0000000..f6de2a6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804870_53_7091995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26417bd2814db7d114b81232170564da8ff15ca5665665a1084c7d11821039e0 +size 380360 diff --git a/datasets/仪表盘/train/images/订单1804871_53_7091891.jpg b/datasets/仪表盘/train/images/订单1804871_53_7091891.jpg new file mode 100644 index 0000000..dc2edc3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804871_53_7091891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3166b205d31c55cf026c966521a2e8b54a2c55f2bc71b16e85f287d5983712 +size 237718 diff --git a/datasets/仪表盘/train/images/订单1804872_53_7091856.jpg b/datasets/仪表盘/train/images/订单1804872_53_7091856.jpg new file mode 100644 index 0000000..2e928ec --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804872_53_7091856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7587615b32a5fd956126f13b9a225fac28d6bc07943da52cc770cdc7d6f2f998 +size 280924 diff --git a/datasets/仪表盘/train/images/订单1804875_53_7091965.jpg b/datasets/仪表盘/train/images/订单1804875_53_7091965.jpg new file mode 100644 index 0000000..b9a88ec --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804875_53_7091965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3ace16a9e3331df2db118b48da28794f1c0dd5ae241155900a877055bfaadd +size 99601 diff --git a/datasets/仪表盘/train/images/订单1804878_53_7091987.jpg b/datasets/仪表盘/train/images/订单1804878_53_7091987.jpg new file mode 100644 index 0000000..b5fbf9a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804878_53_7091987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1fd5d2b84e669553eade3023ffc04df977ccbadb06c61dbe2bc4180d955cff +size 290863 diff --git a/datasets/仪表盘/train/images/订单1804881_53_7092063.jpg b/datasets/仪表盘/train/images/订单1804881_53_7092063.jpg new file mode 100644 index 0000000..0e38333 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804881_53_7092063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c041feefe3c45b3f0ca4df8fc8d04319378f49f35169b3bef8a5d6806a6346b7 +size 299106 diff --git a/datasets/仪表盘/train/images/订单1804886_53_7092026.jpg b/datasets/仪表盘/train/images/订单1804886_53_7092026.jpg new file mode 100644 index 0000000..ff16236 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804886_53_7092026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474e74bf9c067096066a1e7ee1bab6bb0e9beb7fbbf9ce6bac8ce04ec0ae4adb +size 244550 diff --git a/datasets/仪表盘/train/images/订单1804887_53_7092022.jpg b/datasets/仪表盘/train/images/订单1804887_53_7092022.jpg new file mode 100644 index 0000000..969b036 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804887_53_7092022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c130d7a06679a3a113ec2ecd9f2c4787fc2cdf59d25ffa76baeb99af65fc9b2 +size 83371 diff --git a/datasets/仪表盘/train/images/订单1804888_53_7092053.jpg b/datasets/仪表盘/train/images/订单1804888_53_7092053.jpg new file mode 100644 index 0000000..939d4cb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804888_53_7092053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9506e06345a289571996e031438105123001fc430d5a5ed6f776c7d5882d7f3 +size 452742 diff --git a/datasets/仪表盘/train/images/订单1804890_53_7092098.jpg b/datasets/仪表盘/train/images/订单1804890_53_7092098.jpg new file mode 100644 index 0000000..2fc782b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804890_53_7092098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5b8766872df1dcd4de9498ef7604d35bd8a5e18cdcf44dc66f14c6b21f5b85 +size 389196 diff --git a/datasets/仪表盘/train/images/订单1804891_53_7092085.jpg b/datasets/仪表盘/train/images/订单1804891_53_7092085.jpg new file mode 100644 index 0000000..9b9b660 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804891_53_7092085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea962c332392e5382a0eccdd7c4238839089dcd0c9ddce98138cbfdf3401dc3 +size 154561 diff --git a/datasets/仪表盘/train/images/订单1804893_53_7092099.jpg b/datasets/仪表盘/train/images/订单1804893_53_7092099.jpg new file mode 100644 index 0000000..057af13 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804893_53_7092099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0ccd7b4925569dc05b38444674ddf8d3695a39eb76c1289bd451d301789678 +size 266551 diff --git a/datasets/仪表盘/train/images/订单1804897_53_7092154.jpg b/datasets/仪表盘/train/images/订单1804897_53_7092154.jpg new file mode 100644 index 0000000..6626889 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804897_53_7092154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395af3abf24c07f64a475a4312090c8b86c45f2ae57883776317523e9c6e896b +size 292950 diff --git a/datasets/仪表盘/train/images/订单1804907_53_7092208.jpg b/datasets/仪表盘/train/images/订单1804907_53_7092208.jpg new file mode 100644 index 0000000..c0b33f4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804907_53_7092208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624665cadfb7ba2012adfdbe2ad01ea8731443b45cdadc0a1368aa681af7d3fe +size 304572 diff --git a/datasets/仪表盘/train/images/订单1804911_53_7092248.jpg b/datasets/仪表盘/train/images/订单1804911_53_7092248.jpg new file mode 100644 index 0000000..43778d2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804911_53_7092248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089d22ea831aba0b0e4c73ab30ed4b45c61e60e8c80769c3621e0b91c283ac90 +size 56292 diff --git a/datasets/仪表盘/train/images/订单1804914_53_7092283.jpg b/datasets/仪表盘/train/images/订单1804914_53_7092283.jpg new file mode 100644 index 0000000..006971d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804914_53_7092283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dca9174a5a187bf5f48eed606bb31fcfccf7b04206d56354231c0eeb88b8af5 +size 205653 diff --git a/datasets/仪表盘/train/images/订单1804915_53_7092274.jpg b/datasets/仪表盘/train/images/订单1804915_53_7092274.jpg new file mode 100644 index 0000000..2f6199e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804915_53_7092274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f3cce00148e35d0264e9c95030ed26939f86f72f2a3e0a7e1331c957a62d63 +size 510068 diff --git a/datasets/仪表盘/train/images/订单1804919_53_7092340.jpg b/datasets/仪表盘/train/images/订单1804919_53_7092340.jpg new file mode 100644 index 0000000..39c001b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804919_53_7092340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0f0d7e3a52731c6b062e2d0ddb92cda96f8db99e13641fe7fc3ff60e4eb461 +size 379211 diff --git a/datasets/仪表盘/train/images/订单1804921_53_7092329.jpg b/datasets/仪表盘/train/images/订单1804921_53_7092329.jpg new file mode 100644 index 0000000..6f9e6dd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804921_53_7092329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6978ff08acda7a17358c59b7d0cfb7287b2a0e5d43941c5534cf089018d70a4 +size 257816 diff --git a/datasets/仪表盘/train/images/订单1804922_53_7092364.jpg b/datasets/仪表盘/train/images/订单1804922_53_7092364.jpg new file mode 100644 index 0000000..697b9a7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804922_53_7092364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f05739db2294b123b1ff73b54ead12bee8eb653075756a9e13b7d1303f6c63 +size 379313 diff --git a/datasets/仪表盘/train/images/订单1804923_53_7092353.jpg b/datasets/仪表盘/train/images/订单1804923_53_7092353.jpg new file mode 100644 index 0000000..ad3e2dd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804923_53_7092353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9571a7219a2c35eb029d3c8b64c6fb1844e2b68178c8a25bf668e673b16affba +size 465197 diff --git a/datasets/仪表盘/train/images/订单1804924_53_7092369.jpg b/datasets/仪表盘/train/images/订单1804924_53_7092369.jpg new file mode 100644 index 0000000..1143160 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804924_53_7092369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289967053dc7832e54113f26c8335e8e225acf68089bea52035f7c429cf88e4f +size 269810 diff --git a/datasets/仪表盘/train/images/订单1804931_53_7092440.jpg b/datasets/仪表盘/train/images/订单1804931_53_7092440.jpg new file mode 100644 index 0000000..5f21c27 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804931_53_7092440.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b7fe672395adcd11ce24daa46ee803f0831550c2f81d18367789efac297669 +size 31597 diff --git a/datasets/仪表盘/train/images/订单1804932_53_7092412.jpg b/datasets/仪表盘/train/images/订单1804932_53_7092412.jpg new file mode 100644 index 0000000..850c680 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804932_53_7092412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2408c70267e42748c03f4b12e524c537bc2d8c3bb34b66465203f136d888da5 +size 178026 diff --git a/datasets/仪表盘/train/images/订单1804933_53_7092519.jpg b/datasets/仪表盘/train/images/订单1804933_53_7092519.jpg new file mode 100644 index 0000000..9e649a0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804933_53_7092519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b243aeb4b344c43cea48e5acda5534d2b1a4a820b437f3f3f9cb91c3c601cd4 +size 203256 diff --git a/datasets/仪表盘/train/images/订单1804934_53_7092395.jpg b/datasets/仪表盘/train/images/订单1804934_53_7092395.jpg new file mode 100644 index 0000000..b2583dd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804934_53_7092395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d15a16ca0b4f8d16a8ffdd06a9574bbbfdecf00d7ad7af1786b09b92568cc94 +size 270483 diff --git a/datasets/仪表盘/train/images/订单1804935_53_7092402.jpg b/datasets/仪表盘/train/images/订单1804935_53_7092402.jpg new file mode 100644 index 0000000..abed71e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804935_53_7092402.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642b070d1b746f5e69e37ecea8028a8d65204153ebfea5aa2d87c719b0ba4b8e +size 257761 diff --git a/datasets/仪表盘/train/images/订单1804937_53_7092475.jpg b/datasets/仪表盘/train/images/订单1804937_53_7092475.jpg new file mode 100644 index 0000000..4512aa7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804937_53_7092475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7f42d97b78897d01ff1b068d47ba5e6ea22013444fb9d11c5b10591efb5c03 +size 415443 diff --git a/datasets/仪表盘/train/images/订单1804938_53_7092615.jpg b/datasets/仪表盘/train/images/订单1804938_53_7092615.jpg new file mode 100644 index 0000000..07fff81 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804938_53_7092615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13845893cb1aa6311cd4dd6136fd15610bbb4bc0e03c1f767a6a97dca726adbd +size 333888 diff --git a/datasets/仪表盘/train/images/订单1804939_53_7092501.jpg b/datasets/仪表盘/train/images/订单1804939_53_7092501.jpg new file mode 100644 index 0000000..b48b6e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804939_53_7092501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80782b5b973fa4111deb0de21b192c25238951c1e577fa2bf7090a7f6d8940b7 +size 304829 diff --git a/datasets/仪表盘/train/images/订单1804940_53_7092525.jpg b/datasets/仪表盘/train/images/订单1804940_53_7092525.jpg new file mode 100644 index 0000000..e48d2ad --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804940_53_7092525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508f14a4a7d5887d4010f3e27df69f81bc0eba070691d093c3232b1738c9809f +size 100925 diff --git a/datasets/仪表盘/train/images/订单1804941_53_7092523.jpg b/datasets/仪表盘/train/images/订单1804941_53_7092523.jpg new file mode 100644 index 0000000..1913e15 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804941_53_7092523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bc7246c9ba4ee2b0693dd524df0d9230cc4bf811809e25a32c4a443797daf34 +size 222859 diff --git a/datasets/仪表盘/train/images/订单1804942_53_7092551.jpg b/datasets/仪表盘/train/images/订单1804942_53_7092551.jpg new file mode 100644 index 0000000..e6d769b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804942_53_7092551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb0affe222b33d7815718deb6ece73b7fe468772e4f91b9f5924ba4ac325f08 +size 324773 diff --git a/datasets/仪表盘/train/images/订单1804948_53_7092571.jpg b/datasets/仪表盘/train/images/订单1804948_53_7092571.jpg new file mode 100644 index 0000000..e576b8e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804948_53_7092571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:971bc74ac15a75270e5b3a17aa09c7030435d9663c7a92be8ecb6c2ab3b61dfe +size 67962 diff --git a/datasets/仪表盘/train/images/订单1804952_53_7092575.jpg b/datasets/仪表盘/train/images/订单1804952_53_7092575.jpg new file mode 100644 index 0000000..8244171 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804952_53_7092575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab542557abcfb7ffa6d75cd7bf40c802413527489180854e366feb978ad055c +size 274918 diff --git a/datasets/仪表盘/train/images/订单1804956_53_7092629.jpg b/datasets/仪表盘/train/images/订单1804956_53_7092629.jpg new file mode 100644 index 0000000..c84439c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804956_53_7092629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce2f5894656b43bc7fb332f4e8a1e53e4144d815cb38449c2a930864a2271e7 +size 509060 diff --git a/datasets/仪表盘/train/images/订单1804957_53_7092643.jpg b/datasets/仪表盘/train/images/订单1804957_53_7092643.jpg new file mode 100644 index 0000000..bb811ef --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804957_53_7092643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ecf751fc8e3e1245d7d119fa49efc4ee94e4fe957807667653990ee0cb48c3 +size 290992 diff --git a/datasets/仪表盘/train/images/订单1804959_53_7092654.jpg b/datasets/仪表盘/train/images/订单1804959_53_7092654.jpg new file mode 100644 index 0000000..2f339b2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804959_53_7092654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c8fd29acedc9e5882f8df6563119377f469565d9307c802e17ee810d7c0eb0 +size 102982 diff --git a/datasets/仪表盘/train/images/订单1804960_53_7092873.jpg b/datasets/仪表盘/train/images/订单1804960_53_7092873.jpg new file mode 100644 index 0000000..18c0b2e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804960_53_7092873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feff15e35a9384b66632165938d8c9303a32272c52d9edb137b4ea3b247b6fda +size 324826 diff --git a/datasets/仪表盘/train/images/订单1804964_53_7092710.jpg b/datasets/仪表盘/train/images/订单1804964_53_7092710.jpg new file mode 100644 index 0000000..fe70301 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804964_53_7092710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37ebf2477a8a38f70e49bbe3b5900762bf8fcf1ad845d34e3fdb86e30e270ee +size 54462 diff --git a/datasets/仪表盘/train/images/订单1804967_53_7092791.jpg b/datasets/仪表盘/train/images/订单1804967_53_7092791.jpg new file mode 100644 index 0000000..47a4055 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804967_53_7092791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de66e2a6193188cf364f7f0d2908c83c595ccc44cdc4e16c3b0ad67c0718abd +size 222231 diff --git a/datasets/仪表盘/train/images/订单1804968_53_7092698.jpg b/datasets/仪表盘/train/images/订单1804968_53_7092698.jpg new file mode 100644 index 0000000..a46c818 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804968_53_7092698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cde7ca1c0161d03ce057d2d9af657db6bd16f4e8f375129f232d5196fe8b5f +size 105984 diff --git a/datasets/仪表盘/train/images/订单1804969_53_7092859.jpg b/datasets/仪表盘/train/images/订单1804969_53_7092859.jpg new file mode 100644 index 0000000..00450d1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804969_53_7092859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc20ab2c051321ca2986c53fc5d903441a1f68949fed7761e404a4490511a103 +size 133304 diff --git a/datasets/仪表盘/train/images/订单1804970_53_7092720.jpg b/datasets/仪表盘/train/images/订单1804970_53_7092720.jpg new file mode 100644 index 0000000..bdca9c6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804970_53_7092720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830fb760e276aaa54951253e5ff081c45e41e3bf7d24222a7ac25c4c6642ead7 +size 267147 diff --git a/datasets/仪表盘/train/images/订单1804971_53_7092743.jpg b/datasets/仪表盘/train/images/订单1804971_53_7092743.jpg new file mode 100644 index 0000000..3adc004 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804971_53_7092743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57cb0078fea5114c0472d22734f32c2f881b62036f769586e5ea3ef9d043c0ff +size 389798 diff --git a/datasets/仪表盘/train/images/订单1804974_53_7092736.jpg b/datasets/仪表盘/train/images/订单1804974_53_7092736.jpg new file mode 100644 index 0000000..65a9d2f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804974_53_7092736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f35b5fc7cf59d671887b8696b993aaaf1b08fdef8e6b0b9ac4c77255e992cb9 +size 332718 diff --git a/datasets/仪表盘/train/images/订单1804977_53_7092897.jpg b/datasets/仪表盘/train/images/订单1804977_53_7092897.jpg new file mode 100644 index 0000000..df56370 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804977_53_7092897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df625f0fa9082749925669c085d0dab81917c7ace1153bfb3885fb486dd30b4c +size 313430 diff --git a/datasets/仪表盘/train/images/订单1804981_53_7092798.jpg b/datasets/仪表盘/train/images/订单1804981_53_7092798.jpg new file mode 100644 index 0000000..12b6355 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804981_53_7092798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e2e67ea155e7443b00c14d0352fee4f3f340e9f41bf970cc86c7b517ee1605 +size 79015 diff --git a/datasets/仪表盘/train/images/订单1804982_53_7092793.jpg b/datasets/仪表盘/train/images/订单1804982_53_7092793.jpg new file mode 100644 index 0000000..0c78382 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804982_53_7092793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbec10d2c3a7f93e030dba225bc958fceef9cae00b28b0389704d8fc9b34d032 +size 213640 diff --git a/datasets/仪表盘/train/images/订单1804983_53_7092771.jpg b/datasets/仪表盘/train/images/订单1804983_53_7092771.jpg new file mode 100644 index 0000000..2d7a5ae --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804983_53_7092771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e44b668ddaabed984dfcd6d270beaadf2691d37b1a89343264076a6c78a5112 +size 271548 diff --git a/datasets/仪表盘/train/images/订单1804984_53_7092834.jpg b/datasets/仪表盘/train/images/订单1804984_53_7092834.jpg new file mode 100644 index 0000000..3da6f73 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804984_53_7092834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54aa993259c9e58b8537ee37d3095e0e1806b5ba25940d665521c84f9a94f28b +size 292627 diff --git a/datasets/仪表盘/train/images/订单1804987_53_7092956.jpg b/datasets/仪表盘/train/images/订单1804987_53_7092956.jpg new file mode 100644 index 0000000..4c5438e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804987_53_7092956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461ac31ddfd42fd2a4bf2f05f90e7277326894477da7a638e7a1e73610572b14 +size 182675 diff --git a/datasets/仪表盘/train/images/订单1804988_53_7093254.jpg b/datasets/仪表盘/train/images/订单1804988_53_7093254.jpg new file mode 100644 index 0000000..1abbb5d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804988_53_7093254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4d822bcb45da785820eecf40781b77e09578bd30740b33164a823c45058636 +size 267224 diff --git a/datasets/仪表盘/train/images/订单1804992_53_7092995.jpg b/datasets/仪表盘/train/images/订单1804992_53_7092995.jpg new file mode 100644 index 0000000..f2196aa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804992_53_7092995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3300f3b1153b1df1b5aa0bd685de4a029ee5f2641f739835cebed7cdc30102a +size 113927 diff --git a/datasets/仪表盘/train/images/订单1804995_53_7092917.jpg b/datasets/仪表盘/train/images/订单1804995_53_7092917.jpg new file mode 100644 index 0000000..270b771 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804995_53_7092917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc8bf8db9b7777179c9900ff2b686f38c5cbad33c1b49d3d4ba559233618b24 +size 351777 diff --git a/datasets/仪表盘/train/images/订单1804998_53_7092991.jpg b/datasets/仪表盘/train/images/订单1804998_53_7092991.jpg new file mode 100644 index 0000000..dababe0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1804998_53_7092991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984526501d43373f124a19976eb30b007e167b9d2af09d3f5c6442f0a4cf5432 +size 348474 diff --git a/datasets/仪表盘/train/images/订单1805001_53_7093031.jpg b/datasets/仪表盘/train/images/订单1805001_53_7093031.jpg new file mode 100644 index 0000000..99bc440 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805001_53_7093031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5172184acc4f90920ccfb724655fc69bf3bba70731aa065ba5a0806747cb6e21 +size 425759 diff --git a/datasets/仪表盘/train/images/订单1805002_53_7093124.jpg b/datasets/仪表盘/train/images/订单1805002_53_7093124.jpg new file mode 100644 index 0000000..fba3e5d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805002_53_7093124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72df124e9f877711852d3968d27032e4ce27823cd18fe339ff5c1b088e5a9c9 +size 254019 diff --git a/datasets/仪表盘/train/images/订单1805005_53_7093105.jpg b/datasets/仪表盘/train/images/订单1805005_53_7093105.jpg new file mode 100644 index 0000000..3e9900a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805005_53_7093105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6074307dd8f847f337fcfd1968f1776cd4f9460b92cb309f1a19e7b92983cf10 +size 345844 diff --git a/datasets/仪表盘/train/images/订单1805007_53_7093068.jpg b/datasets/仪表盘/train/images/订单1805007_53_7093068.jpg new file mode 100644 index 0000000..36f3844 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805007_53_7093068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6242c19f3381eb78365ac42771ddab4e14c6136687ebd5b8cc7fe610367da39 +size 221246 diff --git a/datasets/仪表盘/train/images/订单1805010_53_7093095.jpg b/datasets/仪表盘/train/images/订单1805010_53_7093095.jpg new file mode 100644 index 0000000..79cb507 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805010_53_7093095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4753e3a755d00937555141bd9f03e188d242988729b8905c5f6fcbe70f5b8e9b +size 317345 diff --git a/datasets/仪表盘/train/images/订单1805011_53_7093174.jpg b/datasets/仪表盘/train/images/订单1805011_53_7093174.jpg new file mode 100644 index 0000000..4ebb154 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805011_53_7093174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51d58e9bc2f0a72561a0181f68bb290147556023212f606a6e708d2f1a1c99d +size 107220 diff --git a/datasets/仪表盘/train/images/订单1805012_53_7093161.jpg b/datasets/仪表盘/train/images/订单1805012_53_7093161.jpg new file mode 100644 index 0000000..8130181 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805012_53_7093161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920c6ed5323b6c5c6eb15bf56e4a4f929dc0d0c643ad1d7bbec7a77240b586d6 +size 260933 diff --git a/datasets/仪表盘/train/images/订单1805013_53_7093160.jpg b/datasets/仪表盘/train/images/订单1805013_53_7093160.jpg new file mode 100644 index 0000000..87c119c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805013_53_7093160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb00acb5892b654d3151ade671f2395f8a7ae54eabbbdb1db1adbe5d5e51093 +size 164629 diff --git a/datasets/仪表盘/train/images/订单1805014_53_7093180.jpg b/datasets/仪表盘/train/images/订单1805014_53_7093180.jpg new file mode 100644 index 0000000..7d47657 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805014_53_7093180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d3da1cf94282dc1533e7fbecd4b3aa40b9a758879c39393dfbe84d2217d7a7 +size 257834 diff --git a/datasets/仪表盘/train/images/订单1805016_53_7093162.jpg b/datasets/仪表盘/train/images/订单1805016_53_7093162.jpg new file mode 100644 index 0000000..5d3ae8b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805016_53_7093162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f06fd2cb3996daa812a5b7b031c7ad1751f203d7566f7aa15d6211cbf4b3e1 +size 564936 diff --git a/datasets/仪表盘/train/images/订单1805022_53_7093352.jpg b/datasets/仪表盘/train/images/订单1805022_53_7093352.jpg new file mode 100644 index 0000000..4833a65 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805022_53_7093352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae85cfee86746cf8de40bac4aa946e03668030ce299731c5cb8bc0ff666c496 +size 497841 diff --git a/datasets/仪表盘/train/images/订单1805024_53_7093297.jpg b/datasets/仪表盘/train/images/订单1805024_53_7093297.jpg new file mode 100644 index 0000000..440d464 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805024_53_7093297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1983ff58f60f79d62ddf2be0066b3e9b06c9b32dcacdb7889eafde89543c523a +size 97216 diff --git a/datasets/仪表盘/train/images/订单1805027_53_7093311.jpg b/datasets/仪表盘/train/images/订单1805027_53_7093311.jpg new file mode 100644 index 0000000..4665321 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805027_53_7093311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b773d5ead95ce67b2395afa9b4415a1bd91100e60f1b15aeaebd9483d7deb6c +size 325168 diff --git a/datasets/仪表盘/train/images/订单1805029_53_7093367.jpg b/datasets/仪表盘/train/images/订单1805029_53_7093367.jpg new file mode 100644 index 0000000..1fbc043 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805029_53_7093367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2664c109e7ea559b35782d9f0c78df5150561ce779ad52e57f7dadf9dc30ba75 +size 253224 diff --git a/datasets/仪表盘/train/images/订单1805030_53_7093404.jpg b/datasets/仪表盘/train/images/订单1805030_53_7093404.jpg new file mode 100644 index 0000000..e091d0f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805030_53_7093404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f24bf837b0b0da76cda95cf40f7b21d79d4506fc1b54e657edbf13735d8b5d +size 460154 diff --git a/datasets/仪表盘/train/images/订单1805031_53_7093366.jpg b/datasets/仪表盘/train/images/订单1805031_53_7093366.jpg new file mode 100644 index 0000000..85bd80d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805031_53_7093366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce8e160a0b5f090c84281681637976eea9920caf69e7b1cf02b1c49c56315d7 +size 417409 diff --git a/datasets/仪表盘/train/images/订单1805032_53_7093383.jpg b/datasets/仪表盘/train/images/订单1805032_53_7093383.jpg new file mode 100644 index 0000000..8ead132 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805032_53_7093383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69c444f0140d2be144d09b7033d1ce1be1644fa7de4ba3ad74f918e7d7f846e +size 266156 diff --git a/datasets/仪表盘/train/images/订单1805036_53_7093444.jpg b/datasets/仪表盘/train/images/订单1805036_53_7093444.jpg new file mode 100644 index 0000000..69f0dd7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805036_53_7093444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79da9fd62e08e403db2ec1c9db0ff5672b91e545a2fefab02a55b7cff75b1623 +size 159340 diff --git a/datasets/仪表盘/train/images/订单1805037_53_7093428.jpg b/datasets/仪表盘/train/images/订单1805037_53_7093428.jpg new file mode 100644 index 0000000..5884ac8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805037_53_7093428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccffee7ddac85b63e5c63fcea5f98c7b27077cd73d58b1f8bea1a2ca4ee8e1b +size 493699 diff --git a/datasets/仪表盘/train/images/订单1805041_53_7093490.jpg b/datasets/仪表盘/train/images/订单1805041_53_7093490.jpg new file mode 100644 index 0000000..8bc298e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805041_53_7093490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081e3f7e4da6d3b9b567ff5a6e0bca36a6026e5d3ac6402a7f2e11f122ed06d1 +size 260367 diff --git a/datasets/仪表盘/train/images/订单1805042_53_7093473.jpg b/datasets/仪表盘/train/images/订单1805042_53_7093473.jpg new file mode 100644 index 0000000..07fe639 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805042_53_7093473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcd5c279cc09574587f55c848c4545613837de3e268006e63bd082a82911f10 +size 404354 diff --git a/datasets/仪表盘/train/images/订单1805043_53_7093496.jpg b/datasets/仪表盘/train/images/订单1805043_53_7093496.jpg new file mode 100644 index 0000000..7c4eb87 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805043_53_7093496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfbe5b5019d6e10addc58f7d7d12540031212c48a4e6c5396e98795d33f86ea +size 246151 diff --git a/datasets/仪表盘/train/images/订单1805049_53_7093569.jpg b/datasets/仪表盘/train/images/订单1805049_53_7093569.jpg new file mode 100644 index 0000000..d6fbb37 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805049_53_7093569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7962a094454ce32fe54f9463fdc9608387b85a7d852220cf987156dae3140b5 +size 270066 diff --git a/datasets/仪表盘/train/images/订单1805050_53_7093631.jpg b/datasets/仪表盘/train/images/订单1805050_53_7093631.jpg new file mode 100644 index 0000000..115c03c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805050_53_7093631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:515b628cf4699565ea76985f29ca9d6222d7e3641763eccf73504d0377c7536f +size 297508 diff --git a/datasets/仪表盘/train/images/订单1805051_53_7093549.jpg b/datasets/仪表盘/train/images/订单1805051_53_7093549.jpg new file mode 100644 index 0000000..ec04740 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805051_53_7093549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb16a8b6c5248e5159c346e1b8f91c1f437bfc3d3821152373a8f55a40a0ca6 +size 165799 diff --git a/datasets/仪表盘/train/images/订单1805056_53_7093566.jpg b/datasets/仪表盘/train/images/订单1805056_53_7093566.jpg new file mode 100644 index 0000000..7b43045 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805056_53_7093566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9238ed59ab3a0abafb7e1f11eecb58cd352aeeb6653f7975599f7f81c46f5e2f +size 252665 diff --git a/datasets/仪表盘/train/images/订单1805057_53_7093592.jpg b/datasets/仪表盘/train/images/订单1805057_53_7093592.jpg new file mode 100644 index 0000000..195a2e1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805057_53_7093592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8d7e0a07a53ea0e9e989f058fb397c82c66d27cdc926be5d53142b1d0048e3 +size 272761 diff --git a/datasets/仪表盘/train/images/订单1805058_53_7093602.jpg b/datasets/仪表盘/train/images/订单1805058_53_7093602.jpg new file mode 100644 index 0000000..ac3a58b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805058_53_7093602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2484fcc19786bbb245750aa9eba917fe534b45215064c58ab19eb4826c685fc6 +size 521934 diff --git a/datasets/仪表盘/train/images/订单1805059_53_7093601.jpg b/datasets/仪表盘/train/images/订单1805059_53_7093601.jpg new file mode 100644 index 0000000..e3b03da --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805059_53_7093601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b615c5e73dce7fed309953ac1cd14707586782737d882945c61c1470e1b4c245 +size 90980 diff --git a/datasets/仪表盘/train/images/订单1805062_53_7093673.jpg b/datasets/仪表盘/train/images/订单1805062_53_7093673.jpg new file mode 100644 index 0000000..edb9a66 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805062_53_7093673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890ab81109decc3c66448b6a32429f96e948b8f0bc847bae99f7151373b63e96 +size 253127 diff --git a/datasets/仪表盘/train/images/订单1805069_53_7093735.jpg b/datasets/仪表盘/train/images/订单1805069_53_7093735.jpg new file mode 100644 index 0000000..521d4dc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805069_53_7093735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7e2606dc04a27e788aaf8db01b6ca0b12d218b40d18e44b608c9cdcf898fca +size 228915 diff --git a/datasets/仪表盘/train/images/订单1805072_53_7093751.jpg b/datasets/仪表盘/train/images/订单1805072_53_7093751.jpg new file mode 100644 index 0000000..e2b1e82 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805072_53_7093751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014175322af59b796d00d7bcf534b27b19ab43e97e88239de986fff6d2ecbd1e +size 319238 diff --git a/datasets/仪表盘/train/images/订单1805074_53_7093776.jpg b/datasets/仪表盘/train/images/订单1805074_53_7093776.jpg new file mode 100644 index 0000000..eea5810 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805074_53_7093776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeccedd18acad186494f91a4d791e9102865a4551684a75aa641f095944eb4ef +size 450486 diff --git a/datasets/仪表盘/train/images/订单1805075_53_7093786.jpg b/datasets/仪表盘/train/images/订单1805075_53_7093786.jpg new file mode 100644 index 0000000..1508813 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805075_53_7093786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6203a22dc24b0384d89463dad55948cac8c1b029c0014a41f7adfcfcfed83c8 +size 322814 diff --git a/datasets/仪表盘/train/images/订单1805077_53_7093796.jpg b/datasets/仪表盘/train/images/订单1805077_53_7093796.jpg new file mode 100644 index 0000000..68ea122 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805077_53_7093796.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a002a7957d0cc508081598079ce8995875f0b81e97ef92bf5e932e5c7003e15 +size 318376 diff --git a/datasets/仪表盘/train/images/订单1805079_53_7093827.jpg b/datasets/仪表盘/train/images/订单1805079_53_7093827.jpg new file mode 100644 index 0000000..fe9af0e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805079_53_7093827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9791bfbbb8d617d4416b60ce54f527674024f52145607f76b4f6c1e8766e60 +size 249753 diff --git a/datasets/仪表盘/train/images/订单1805081_53_7093844.jpg b/datasets/仪表盘/train/images/订单1805081_53_7093844.jpg new file mode 100644 index 0000000..88dc56a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805081_53_7093844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d06032951692d241e50fbb860c6242c72e664dde58a6979b162c2bc77261642 +size 385475 diff --git a/datasets/仪表盘/train/images/订单1805082_53_7093855.jpg b/datasets/仪表盘/train/images/订单1805082_53_7093855.jpg new file mode 100644 index 0000000..698c9cc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805082_53_7093855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9fe3e6dc6ed90f2583e886dd770004e3b26c9235aeb655636c51f99aad2d37 +size 315353 diff --git a/datasets/仪表盘/train/images/订单1805083_53_7093867.jpg b/datasets/仪表盘/train/images/订单1805083_53_7093867.jpg new file mode 100644 index 0000000..0c53140 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805083_53_7093867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401a8347e05efc3cd5b08a9e7b864c3ff7e57da8797c2e35457ae8d6adb02ac9 +size 52182 diff --git a/datasets/仪表盘/train/images/订单1805085_53_7093878.jpg b/datasets/仪表盘/train/images/订单1805085_53_7093878.jpg new file mode 100644 index 0000000..84b5b94 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805085_53_7093878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba36e867ee374d3699fd3433c9d7d17d892a63a60df7a3342905b79d8fab8b25 +size 207566 diff --git a/datasets/仪表盘/train/images/订单1805086_53_7093889.jpg b/datasets/仪表盘/train/images/订单1805086_53_7093889.jpg new file mode 100644 index 0000000..e118e75 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805086_53_7093889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908deac3fb032f1a86f4869ba58c22a0e0ed5b6012733caf1109dd6cfaed64a2 +size 165917 diff --git a/datasets/仪表盘/train/images/订单1805089_53_7093905.jpg b/datasets/仪表盘/train/images/订单1805089_53_7093905.jpg new file mode 100644 index 0000000..e5467ff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805089_53_7093905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900b80a2afed1b658ef0f620f7b72af0aacdebfed741b9c345a412fac408c20 +size 187227 diff --git a/datasets/仪表盘/train/images/订单1805091_53_7093953.jpg b/datasets/仪表盘/train/images/订单1805091_53_7093953.jpg new file mode 100644 index 0000000..02ae237 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805091_53_7093953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef2ae9340f9b10635ec02671d09e2269b3be43990c46590af75fbe784f4d9eb +size 288858 diff --git a/datasets/仪表盘/train/images/订单1805092_53_7093901.jpg b/datasets/仪表盘/train/images/订单1805092_53_7093901.jpg new file mode 100644 index 0000000..4c46038 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805092_53_7093901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4469c7a872e2d579cb8da997b6ee74cc4d91ef00e1c1e5d7a4970fe34a53f9b +size 291878 diff --git a/datasets/仪表盘/train/images/订单1805095_53_7093941.jpg b/datasets/仪表盘/train/images/订单1805095_53_7093941.jpg new file mode 100644 index 0000000..4c3cd6d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805095_53_7093941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcefb4437ea57b3c87b829880e861d68419e6c454d5165bad5f90d58b5fc22b +size 65483 diff --git a/datasets/仪表盘/train/images/订单1805096_53_7094001.jpg b/datasets/仪表盘/train/images/订单1805096_53_7094001.jpg new file mode 100644 index 0000000..a89e76e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805096_53_7094001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce90369048d599ac72aca1a40d229e527afbc8a3aa45e53716e5e2377c3d1f74 +size 101989 diff --git a/datasets/仪表盘/train/images/订单1805100_53_7094078.jpg b/datasets/仪表盘/train/images/订单1805100_53_7094078.jpg new file mode 100644 index 0000000..359d9f4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805100_53_7094078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ef4672dac1bdb0b59d5e7b5e9330da2c17d0545f346f5474f9a326bb883f32 +size 422235 diff --git a/datasets/仪表盘/train/images/订单1805101_53_7094053.jpg b/datasets/仪表盘/train/images/订单1805101_53_7094053.jpg new file mode 100644 index 0000000..6a9f5d1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805101_53_7094053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6e87393b08a9e47fd000fe3e46bf9057c36fe9f3e4222002584006bc452379 +size 176026 diff --git a/datasets/仪表盘/train/images/订单1805102_53_7094008.jpg b/datasets/仪表盘/train/images/订单1805102_53_7094008.jpg new file mode 100644 index 0000000..583e3d0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805102_53_7094008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deec8df2d3d32397cbf360b508ab43bb4d433775f26d5a4a8bb1b87ef23cd7c1 +size 247083 diff --git a/datasets/仪表盘/train/images/订单1805103_53_7093984.jpg b/datasets/仪表盘/train/images/订单1805103_53_7093984.jpg new file mode 100644 index 0000000..aab4dc5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805103_53_7093984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58234602a7e47b828f6e5747b054ab4f711b5fa413738a632d56b41e4e34f9b2 +size 265064 diff --git a/datasets/仪表盘/train/images/订单1805106_53_7094169.jpg b/datasets/仪表盘/train/images/订单1805106_53_7094169.jpg new file mode 100644 index 0000000..4da0279 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805106_53_7094169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e523c3c038e000535820f1080c4d00f173b31c2fb6a992be0c204bf09512980a +size 288850 diff --git a/datasets/仪表盘/train/images/订单1805108_53_7094030.jpg b/datasets/仪表盘/train/images/订单1805108_53_7094030.jpg new file mode 100644 index 0000000..844777e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805108_53_7094030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc8000d6f84a9678ec27a7a662df431c8cd149a3ee1c1c79d33095ac73c1fe4 +size 422059 diff --git a/datasets/仪表盘/train/images/订单1805109_53_7094035.jpg b/datasets/仪表盘/train/images/订单1805109_53_7094035.jpg new file mode 100644 index 0000000..151c794 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805109_53_7094035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6af99f0d1f5e86ae42c2b88c5f4de3815685579d376bb219173b3d6da95632 +size 240608 diff --git a/datasets/仪表盘/train/images/订单1805113_53_7094839.jpg b/datasets/仪表盘/train/images/订单1805113_53_7094839.jpg new file mode 100644 index 0000000..6d97d73 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805113_53_7094839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcd28cab4cbed965a737706295720a079003a640f5ea9e667c162c595587dde5 +size 160796 diff --git a/datasets/仪表盘/train/images/订单1805115_53_7094134.jpg b/datasets/仪表盘/train/images/订单1805115_53_7094134.jpg new file mode 100644 index 0000000..f300559 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805115_53_7094134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6cd1d05f26e531f76f9d1c57174a7ea4e16400660a19704a929280cd709acbd +size 44705 diff --git a/datasets/仪表盘/train/images/订单1805119_53_7094222.jpg b/datasets/仪表盘/train/images/订单1805119_53_7094222.jpg new file mode 100644 index 0000000..902716f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805119_53_7094222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086de2599e255ff16cdaa5dafd7d43d66ce6139fa0ab8b2f35e2cb46369ebd68 +size 756783 diff --git a/datasets/仪表盘/train/images/订单1805120_53_7094209.jpg b/datasets/仪表盘/train/images/订单1805120_53_7094209.jpg new file mode 100644 index 0000000..d038690 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805120_53_7094209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4de0b284b93d4ad87241fe78f5eaee0c0773e3a04f7a932b0a84836fd98767 +size 320013 diff --git a/datasets/仪表盘/train/images/订单1805123_53_7094120.jpg b/datasets/仪表盘/train/images/订单1805123_53_7094120.jpg new file mode 100644 index 0000000..3901dca --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805123_53_7094120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4a12cfec806770c243d9e6e38be43e5d5af1533564593513bcd6cb513018a1 +size 703349 diff --git a/datasets/仪表盘/train/images/订单1805124_53_7094149.jpg b/datasets/仪表盘/train/images/订单1805124_53_7094149.jpg new file mode 100644 index 0000000..adaca71 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805124_53_7094149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5932ee7e467840f76ef57c452703aeacf17c5f1bdd5ca0db4c13c9d055f5903e +size 337186 diff --git a/datasets/仪表盘/train/images/订单1805128_53_7094208.jpg b/datasets/仪表盘/train/images/订单1805128_53_7094208.jpg new file mode 100644 index 0000000..fc69ecd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805128_53_7094208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935d8e045d03fe4d0d86b99e9f4fd6e1cd9c80372beb983fd80c3130a68989b1 +size 206783 diff --git a/datasets/仪表盘/train/images/订单1805129_53_7094211.jpg b/datasets/仪表盘/train/images/订单1805129_53_7094211.jpg new file mode 100644 index 0000000..3d68a40 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805129_53_7094211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13415666e6aa60797c8695818acb18627a2474a61cd3fbb37148c85947918d99 +size 326831 diff --git a/datasets/仪表盘/train/images/订单1805131_53_7094241.jpg b/datasets/仪表盘/train/images/订单1805131_53_7094241.jpg new file mode 100644 index 0000000..5989081 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805131_53_7094241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e3a65565c71a63f39c77eddd7634074598213cb2f2c09840a68af5f5c85c03 +size 368825 diff --git a/datasets/仪表盘/train/images/订单1805134_53_7094279.jpg b/datasets/仪表盘/train/images/订单1805134_53_7094279.jpg new file mode 100644 index 0000000..f282bcc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805134_53_7094279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5c3b23c7961d8b75b105b8781828741c01b6abf06109f8d138ee514236c6c5 +size 184694 diff --git a/datasets/仪表盘/train/images/订单1805135_53_7094298.jpg b/datasets/仪表盘/train/images/订单1805135_53_7094298.jpg new file mode 100644 index 0000000..4d5bc72 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805135_53_7094298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:833a1567a5d6b873a87fc21508ec885fc456b426930dafcca7c2c1d5ff4650fd +size 77548 diff --git a/datasets/仪表盘/train/images/订单1805137_53_7094238.jpg b/datasets/仪表盘/train/images/订单1805137_53_7094238.jpg new file mode 100644 index 0000000..0703768 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805137_53_7094238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d00469f492eaa5733f06671f2fd348f4228c2c9417a2bcfb9d6ca968492fc97 +size 261184 diff --git a/datasets/仪表盘/train/images/订单1805141_53_7094342.jpg b/datasets/仪表盘/train/images/订单1805141_53_7094342.jpg new file mode 100644 index 0000000..095a911 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805141_53_7094342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33af5b7614281ca921047f06cf0a440007b2b1694ce4501055f7d57d8b0a53eb +size 179275 diff --git a/datasets/仪表盘/train/images/订单1805142_53_7094264.jpg b/datasets/仪表盘/train/images/订单1805142_53_7094264.jpg new file mode 100644 index 0000000..0a0c243 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805142_53_7094264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035b71f6d166cae9ca3f43dcb9699833f9b20b8667df1b08cfbc7b71112b3b99 +size 278581 diff --git a/datasets/仪表盘/train/images/订单1805143_53_7094310.jpg b/datasets/仪表盘/train/images/订单1805143_53_7094310.jpg new file mode 100644 index 0000000..aee5049 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805143_53_7094310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b7e6f394cdab7f127fb6effc8400bbd4fc847939ecac07545ce4bfc866dd32 +size 223992 diff --git a/datasets/仪表盘/train/images/订单1805146_53_7094315.jpg b/datasets/仪表盘/train/images/订单1805146_53_7094315.jpg new file mode 100644 index 0000000..b122cbd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805146_53_7094315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36bb5bef6125b726e1224da954572ac60612deae567c1fa5f8122f5e9b0f720 +size 416416 diff --git a/datasets/仪表盘/train/images/订单1805149_53_7094345.jpg b/datasets/仪表盘/train/images/订单1805149_53_7094345.jpg new file mode 100644 index 0000000..16c6b1b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805149_53_7094345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d46975dacb9329adee9517838530e95eb2ff526d1cadc1878508c653cbd7c0 +size 150733 diff --git a/datasets/仪表盘/train/images/订单1805151_53_7094414.jpg b/datasets/仪表盘/train/images/订单1805151_53_7094414.jpg new file mode 100644 index 0000000..30f2768 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805151_53_7094414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed366f77ac39a88e086f45c3d93c0de6f863a81bdce028873b625a78dc7e308b +size 333960 diff --git a/datasets/仪表盘/train/images/订单1805155_53_7094460.jpg b/datasets/仪表盘/train/images/订单1805155_53_7094460.jpg new file mode 100644 index 0000000..119a44e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805155_53_7094460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de34365007eb008e0a588868ca2d85c7959496122fa081c1d7e06f1c201e24c +size 235944 diff --git a/datasets/仪表盘/train/images/订单1805158_53_7094448.jpg b/datasets/仪表盘/train/images/订单1805158_53_7094448.jpg new file mode 100644 index 0000000..801796c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805158_53_7094448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd14d9cb6d947f4111e124a8dba6aec89964fe978bd09350c76457e04933e97 +size 260299 diff --git a/datasets/仪表盘/train/images/订单1805160_53_7094538.jpg b/datasets/仪表盘/train/images/订单1805160_53_7094538.jpg new file mode 100644 index 0000000..791b7a2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805160_53_7094538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7b2da02bcef33a57b4911dc69582cd21d4da97d61e60490aaea97fab36a7b6 +size 153942 diff --git a/datasets/仪表盘/train/images/订单1805161_53_7094445.jpg b/datasets/仪表盘/train/images/订单1805161_53_7094445.jpg new file mode 100644 index 0000000..67b9008 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805161_53_7094445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96e8fc7704bbd55d6dbd9f1d6716d92cd97e5396ca19761ffe6dd4e4ae10f1b +size 298744 diff --git a/datasets/仪表盘/train/images/订单1805164_53_7094554.jpg b/datasets/仪表盘/train/images/订单1805164_53_7094554.jpg new file mode 100644 index 0000000..834ce4e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805164_53_7094554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c866e8bc1b14d6609118ca81bf2831a013e74278b01daa53e107086ccd0e35d +size 276036 diff --git a/datasets/仪表盘/train/images/订单1805167_53_7094518.jpg b/datasets/仪表盘/train/images/订单1805167_53_7094518.jpg new file mode 100644 index 0000000..b45d1f6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805167_53_7094518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e1a5ae479959f962781b7d72317a1110a4228920b43536544ea9e5e722a2cb +size 359483 diff --git a/datasets/仪表盘/train/images/订单1805168_53_7094523.jpg b/datasets/仪表盘/train/images/订单1805168_53_7094523.jpg new file mode 100644 index 0000000..b277345 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805168_53_7094523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d63e0235c2a867f7ab2a136571800ffbb5493af91f5b6d6226ac29bb59df10b +size 274970 diff --git a/datasets/仪表盘/train/images/订单1805170_53_7094492.jpg b/datasets/仪表盘/train/images/订单1805170_53_7094492.jpg new file mode 100644 index 0000000..b961ddb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805170_53_7094492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c033489c5cf5292f1b44ba4fb09f27030feca84415ce693bf8cdcf88c1f76aa +size 271296 diff --git a/datasets/仪表盘/train/images/订单1805172_53_7094618.jpg b/datasets/仪表盘/train/images/订单1805172_53_7094618.jpg new file mode 100644 index 0000000..34272d4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805172_53_7094618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146717ca2e92a91086736f46bc2d4f358780de482872370268d3c08ac201de28 +size 491228 diff --git a/datasets/仪表盘/train/images/订单1805175_53_7094543.jpg b/datasets/仪表盘/train/images/订单1805175_53_7094543.jpg new file mode 100644 index 0000000..ccc3340 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805175_53_7094543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d63fc51ce50e4939d5dc36387155cfb2c7fb6877392bde9e51743571e5efad +size 243095 diff --git a/datasets/仪表盘/train/images/订单1805177_53_7095461.jpg b/datasets/仪表盘/train/images/订单1805177_53_7095461.jpg new file mode 100644 index 0000000..56eb095 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805177_53_7095461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56040de5edf3584e4388453bb1092d2259b50188d0e22da470ca1fabc749148c +size 357905 diff --git a/datasets/仪表盘/train/images/订单1805181_53_7094597.jpg b/datasets/仪表盘/train/images/订单1805181_53_7094597.jpg new file mode 100644 index 0000000..8a08bfd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805181_53_7094597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cf536cf435b573c6d4e7d5f4ba174125e085cfcb564619dfc8bb8274dee1e3 +size 239921 diff --git a/datasets/仪表盘/train/images/订单1805182_53_7094624.jpg b/datasets/仪表盘/train/images/订单1805182_53_7094624.jpg new file mode 100644 index 0000000..e785de8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805182_53_7094624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd92ea1b0b2c94e4855e0708e2acc1bd1a28a10eb21a97582d892d734ed2dfec +size 248893 diff --git a/datasets/仪表盘/train/images/订单1805187_53_7094670.jpg b/datasets/仪表盘/train/images/订单1805187_53_7094670.jpg new file mode 100644 index 0000000..7e459c8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805187_53_7094670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce670e46a59cd27a7cbb0b7271698013bd2de49db279e7828c9e47c97feb7fe +size 131878 diff --git a/datasets/仪表盘/train/images/订单1805191_53_7094734.jpg b/datasets/仪表盘/train/images/订单1805191_53_7094734.jpg new file mode 100644 index 0000000..4e62def --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805191_53_7094734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bf5631074d5b96c59f0df993adb1242c044091a7f59571695f059f604e1823 +size 440643 diff --git a/datasets/仪表盘/train/images/订单1805193_53_7094808.jpg b/datasets/仪表盘/train/images/订单1805193_53_7094808.jpg new file mode 100644 index 0000000..a063eab --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805193_53_7094808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:671319fae8f700e2cf49f1a7f4790e4abb6ac41bc18385679cd2c66ffc1b4d56 +size 100093 diff --git a/datasets/仪表盘/train/images/订单1805195_53_7094777.jpg b/datasets/仪表盘/train/images/订单1805195_53_7094777.jpg new file mode 100644 index 0000000..7678f07 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805195_53_7094777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9644ed433d4c541120c1ab2ea1844703825a2c08b0030d8307dd99433f7e7213 +size 98897 diff --git a/datasets/仪表盘/train/images/订单1805196_53_7094735.jpg b/datasets/仪表盘/train/images/订单1805196_53_7094735.jpg new file mode 100644 index 0000000..16ad8b8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805196_53_7094735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c18783df486388c30065e756c4ff4d6b4b9913ceee7a04d754d009a610f5037 +size 50637 diff --git a/datasets/仪表盘/train/images/订单1805202_53_7094821.jpg b/datasets/仪表盘/train/images/订单1805202_53_7094821.jpg new file mode 100644 index 0000000..2947f58 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805202_53_7094821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba2334f482e2d09e7ab209cc1ce8c5342daef1176aaa819957f9985a37e7502 +size 280142 diff --git a/datasets/仪表盘/train/images/订单1805204_53_7094875.jpg b/datasets/仪表盘/train/images/订单1805204_53_7094875.jpg new file mode 100644 index 0000000..8c13672 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805204_53_7094875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a6b1d92f76cdbce2ebec89f9f6bf438d75b7862174c642129a37158146f826 +size 305198 diff --git a/datasets/仪表盘/train/images/订单1805205_53_7094930.jpg b/datasets/仪表盘/train/images/订单1805205_53_7094930.jpg new file mode 100644 index 0000000..7892dbf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805205_53_7094930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c824f5fe20929f61939a4715c16c5e91f37105914145e4e7890eae4a97aa6b2 +size 96071 diff --git a/datasets/仪表盘/train/images/订单1805207_53_7094901.jpg b/datasets/仪表盘/train/images/订单1805207_53_7094901.jpg new file mode 100644 index 0000000..aac3c1c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805207_53_7094901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe2cd6ac41a0f4276a68806a73b7992ea82cb1d25f9be75bc7b270d3c38761b +size 257690 diff --git a/datasets/仪表盘/train/images/订单1805208_53_7094943.jpg b/datasets/仪表盘/train/images/订单1805208_53_7094943.jpg new file mode 100644 index 0000000..8cd075d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805208_53_7094943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e62706d5cb9a764d82c1881633e4a63b383311d5c97f201694508afdc01e70 +size 87489 diff --git a/datasets/仪表盘/train/images/订单1805212_53_7094958.jpg b/datasets/仪表盘/train/images/订单1805212_53_7094958.jpg new file mode 100644 index 0000000..f8614bf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805212_53_7094958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acbc8ff26d682d216e5c0cb53498f6b5ae347e1543573b62bf5aada48ffc96f +size 244914 diff --git a/datasets/仪表盘/train/images/订单1805213_53_7094884.jpg b/datasets/仪表盘/train/images/订单1805213_53_7094884.jpg new file mode 100644 index 0000000..d9b94df --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805213_53_7094884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed825dc1a7610698a7ff999257ab15473f00f7bf3bea3cb5707db706c7030c8 +size 365685 diff --git a/datasets/仪表盘/train/images/订单1805217_53_7095032.jpg b/datasets/仪表盘/train/images/订单1805217_53_7095032.jpg new file mode 100644 index 0000000..ea6fd80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805217_53_7095032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bd8074f5224c6302986aaea0951757317dc2a136258ad21771e7e252c3c663 +size 612896 diff --git a/datasets/仪表盘/train/images/订单1805223_53_7095088.jpg b/datasets/仪表盘/train/images/订单1805223_53_7095088.jpg new file mode 100644 index 0000000..7aa45f1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805223_53_7095088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0b9c882c1713b03345a429878b91c60867ac8a5106340019583e480e66b1f0 +size 96782 diff --git a/datasets/仪表盘/train/images/订单1805233_53_7095205.jpg b/datasets/仪表盘/train/images/订单1805233_53_7095205.jpg new file mode 100644 index 0000000..98c8ef4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805233_53_7095205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d0d56e949b253c98fa8b7180fd0e43097d30b93497b333b7312ea5ef443d36 +size 114252 diff --git a/datasets/仪表盘/train/images/订单1805234_53_7095301.jpg b/datasets/仪表盘/train/images/订单1805234_53_7095301.jpg new file mode 100644 index 0000000..41b9eeb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805234_53_7095301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e852687ff8e9e161d7b937408ed97763809a2bdf34e2849dbffdcf4fead8e4 +size 288157 diff --git a/datasets/仪表盘/train/images/订单1805236_53_7095212.jpg b/datasets/仪表盘/train/images/订单1805236_53_7095212.jpg new file mode 100644 index 0000000..0451e44 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805236_53_7095212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e0bb01d4424beb8c065bcf0245aa125a2a0d80d864e565d8da8651d288f195 +size 89236 diff --git a/datasets/仪表盘/train/images/订单1805239_53_7095188.jpg b/datasets/仪表盘/train/images/订单1805239_53_7095188.jpg new file mode 100644 index 0000000..3031690 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805239_53_7095188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced0d2ee3f85aad052f83dbfafbddb68082eb1ca8225432c61764e2062e55dc9 +size 192340 diff --git a/datasets/仪表盘/train/images/订单1805247_53_7095290.jpg b/datasets/仪表盘/train/images/订单1805247_53_7095290.jpg new file mode 100644 index 0000000..9b613e5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805247_53_7095290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481cea1306f33ccdf657cf8023b6e17cf9dc5c5912e72dcef09fb97e962a9923 +size 66830 diff --git a/datasets/仪表盘/train/images/订单1805252_53_7095360.jpg b/datasets/仪表盘/train/images/订单1805252_53_7095360.jpg new file mode 100644 index 0000000..0854395 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805252_53_7095360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd6de18d005822a1629471b95dc01ce2579ad938003cfceaf466d9687a9b425 +size 75044 diff --git a/datasets/仪表盘/train/images/订单1805256_53_7095390.jpg b/datasets/仪表盘/train/images/订单1805256_53_7095390.jpg new file mode 100644 index 0000000..4a1bb04 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805256_53_7095390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97394b16b936fabf0654cc0e2ea824a3e1354b001d38aa2b093e03a66c0a56f +size 346798 diff --git a/datasets/仪表盘/train/images/订单1805257_53_7095391.jpg b/datasets/仪表盘/train/images/订单1805257_53_7095391.jpg new file mode 100644 index 0000000..72b5770 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805257_53_7095391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4a0aafc69aba274ee7f476d49ff5f717a18aa388f7de4a416ff4a191c052d3 +size 366999 diff --git a/datasets/仪表盘/train/images/订单1805261_53_7095481.jpg b/datasets/仪表盘/train/images/订单1805261_53_7095481.jpg new file mode 100644 index 0000000..6a114d9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805261_53_7095481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b026ce32008fb747b385eb8112be1db2669e5725ca3af6750a0a55a2edb3d44 +size 136687 diff --git a/datasets/仪表盘/train/images/订单1805262_53_7095466.jpg b/datasets/仪表盘/train/images/订单1805262_53_7095466.jpg new file mode 100644 index 0000000..94f6d64 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805262_53_7095466.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768c6ea4c773c55f066173d79b0de3a96a587ad8df4de28c9eb7749adeaaaeeb +size 269167 diff --git a/datasets/仪表盘/train/images/订单1805265_53_7095446.jpg b/datasets/仪表盘/train/images/订单1805265_53_7095446.jpg new file mode 100644 index 0000000..e338ebe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805265_53_7095446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095b069d5320968368ad8a186588de0d5adbcf9be72b4829bd648450a5708394 +size 217853 diff --git a/datasets/仪表盘/train/images/订单1805271_53_7095486.jpg b/datasets/仪表盘/train/images/订单1805271_53_7095486.jpg new file mode 100644 index 0000000..48cfa27 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805271_53_7095486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0300b4132736e97a9f22e3ad77926d40a1695d4e4f48596d2c416b2d3722d0b4 +size 612975 diff --git a/datasets/仪表盘/train/images/订单1805274_53_7095522.jpg b/datasets/仪表盘/train/images/订单1805274_53_7095522.jpg new file mode 100644 index 0000000..20f6a55 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805274_53_7095522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf0ba524f6c679ce976d64707b824d536d7f32c8beb9a2db3c54487f4929220 +size 301686 diff --git a/datasets/仪表盘/train/images/订单1805275_53_7095572.jpg b/datasets/仪表盘/train/images/订单1805275_53_7095572.jpg new file mode 100644 index 0000000..d4733b0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805275_53_7095572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5789e59be32852aa6c6fc81f04870c4ff58d6dd1bdf3995cc1bf38783566261 +size 485943 diff --git a/datasets/仪表盘/train/images/订单1805276_53_7095542.jpg b/datasets/仪表盘/train/images/订单1805276_53_7095542.jpg new file mode 100644 index 0000000..66e2e6c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805276_53_7095542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61114a704efaf78e6c24b087922b1420b8507682ed6690627029534d0d6670c7 +size 385488 diff --git a/datasets/仪表盘/train/images/订单1805278_53_7095535.jpg b/datasets/仪表盘/train/images/订单1805278_53_7095535.jpg new file mode 100644 index 0000000..e480a7f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805278_53_7095535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1355a66f21cfc877f333f387cc778be0b888b03f4881970e6419bd1855d83f6 +size 267851 diff --git a/datasets/仪表盘/train/images/订单1805279_53_7095618.jpg b/datasets/仪表盘/train/images/订单1805279_53_7095618.jpg new file mode 100644 index 0000000..a41c9a4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805279_53_7095618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0786344656c2a2272506c55630f621a51372520ee1f0032257d241bd8456c87 +size 237200 diff --git a/datasets/仪表盘/train/images/订单1805280_53_7095644.jpg b/datasets/仪表盘/train/images/订单1805280_53_7095644.jpg new file mode 100644 index 0000000..176befa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805280_53_7095644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c16b2fc443b6d4b86bd85b459b1c43a9fee49a9e380e1bbebee31b303bc15ff +size 103930 diff --git a/datasets/仪表盘/train/images/订单1805281_53_7095704.jpg b/datasets/仪表盘/train/images/订单1805281_53_7095704.jpg new file mode 100644 index 0000000..44869b2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805281_53_7095704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4c0420d0aba6c022db92e4a4089caa4677eb4875add6f011d7680a7e740c14 +size 376069 diff --git a/datasets/仪表盘/train/images/订单1805282_53_7095626.jpg b/datasets/仪表盘/train/images/订单1805282_53_7095626.jpg new file mode 100644 index 0000000..071cf3d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805282_53_7095626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11788c3df696c96a19f87b304f6b3504cf2c9c86bb75e140a4266b2a612c22d5 +size 48907 diff --git a/datasets/仪表盘/train/images/订单1805286_53_7095642.jpg b/datasets/仪表盘/train/images/订单1805286_53_7095642.jpg new file mode 100644 index 0000000..0c50c7c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805286_53_7095642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8217d0f72acabba4010988bc29f4c015a93c8915e7dca5c55e24b68e4e8b8667 +size 466039 diff --git a/datasets/仪表盘/train/images/订单1805288_53_7095733.jpg b/datasets/仪表盘/train/images/订单1805288_53_7095733.jpg new file mode 100644 index 0000000..f2bf6aa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805288_53_7095733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bdd950236e743e2680ff9afcbff525747106a31e04957bf0777cef5aeef0687 +size 325343 diff --git a/datasets/仪表盘/train/images/订单1805291_53_7095843.jpg b/datasets/仪表盘/train/images/订单1805291_53_7095843.jpg new file mode 100644 index 0000000..16d38e6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805291_53_7095843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ada1d5c9a9b0c142012d80ce7c0fe673f157e490619be8489378cfdaad4487 +size 350870 diff --git a/datasets/仪表盘/train/images/订单1805294_53_7095801.jpg b/datasets/仪表盘/train/images/订单1805294_53_7095801.jpg new file mode 100644 index 0000000..157eddd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805294_53_7095801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9da1ba995d1d601a17e937d49a770b1bae2d42111c6c32fb48b47141e57ac3 +size 455737 diff --git a/datasets/仪表盘/train/images/订单1805296_53_7095781.jpg b/datasets/仪表盘/train/images/订单1805296_53_7095781.jpg new file mode 100644 index 0000000..5e83eab --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805296_53_7095781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed77c6d7a1bd486b5b8ff370eabd2866370a837afe662d6db49ae8c81f342eca +size 114803 diff --git a/datasets/仪表盘/train/images/订单1805302_53_7095818.jpg b/datasets/仪表盘/train/images/订单1805302_53_7095818.jpg new file mode 100644 index 0000000..b2d6601 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805302_53_7095818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23adc5ee5fcc5a636e86f36b882fa44a3b8286d869e62c0cc8fa4bc8c89af06 +size 145035 diff --git a/datasets/仪表盘/train/images/订单1805310_53_7095909.jpg b/datasets/仪表盘/train/images/订单1805310_53_7095909.jpg new file mode 100644 index 0000000..0c0ec18 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805310_53_7095909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e8f88647fc4616940742df15d522b6711fef943895bb3b7dd96d8d7cf650f8 +size 82612 diff --git a/datasets/仪表盘/train/images/订单1805311_53_7095897.jpg b/datasets/仪表盘/train/images/订单1805311_53_7095897.jpg new file mode 100644 index 0000000..fedae59 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805311_53_7095897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a42e8523eb29d77e949b2a1fb5dddbc382b5129e6aa01ff78f3c4810e36ab4 +size 265283 diff --git a/datasets/仪表盘/train/images/订单1805314_53_7095978.jpg b/datasets/仪表盘/train/images/订单1805314_53_7095978.jpg new file mode 100644 index 0000000..af25b60 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805314_53_7095978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f01d383fc2d2d050b5335cad306423c4d82be3192d14f59ce1051712332e68a +size 248963 diff --git a/datasets/仪表盘/train/images/订单1805315_53_7095966.jpg b/datasets/仪表盘/train/images/订单1805315_53_7095966.jpg new file mode 100644 index 0000000..bbef522 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805315_53_7095966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaef0545626de2544a2fdfd7eac850bf670ac7099e180842bf7006db053df1b2 +size 486142 diff --git a/datasets/仪表盘/train/images/订单1805316_53_7096177.jpg b/datasets/仪表盘/train/images/订单1805316_53_7096177.jpg new file mode 100644 index 0000000..d318f01 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805316_53_7096177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d1fb5175d92df58596fc63217c88b45f479f16ef029ed9166d644a13167651 +size 198800 diff --git a/datasets/仪表盘/train/images/订单1805323_53_7096056.jpg b/datasets/仪表盘/train/images/订单1805323_53_7096056.jpg new file mode 100644 index 0000000..a25377c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805323_53_7096056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b30361094ff1164b2cea64bdbd5a5c4f9149b8b4bc9a404eb432d27198328a +size 104568 diff --git a/datasets/仪表盘/train/images/订单1805326_53_7096080.jpg b/datasets/仪表盘/train/images/订单1805326_53_7096080.jpg new file mode 100644 index 0000000..5a042e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805326_53_7096080.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe4ccaec9c41297ca5c82d869feb7abeb07511b07969dc459de2490934a3b35 +size 164707 diff --git a/datasets/仪表盘/train/images/订单1805334_53_7096241.jpg b/datasets/仪表盘/train/images/订单1805334_53_7096241.jpg new file mode 100644 index 0000000..7ae1f55 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805334_53_7096241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18b5f54f4831959b6c081fb0219b821a4897b158be446d803bd58d4b1bf9d78 +size 44394 diff --git a/datasets/仪表盘/train/images/订单1805335_53_7096149.jpg b/datasets/仪表盘/train/images/订单1805335_53_7096149.jpg new file mode 100644 index 0000000..6fcf8bd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805335_53_7096149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bba822a6cbaa785a3602241151dd670b2ab7ab4d2a35597465ee3ae4685573 +size 101890 diff --git a/datasets/仪表盘/train/images/订单1805337_53_7097481.jpg b/datasets/仪表盘/train/images/订单1805337_53_7097481.jpg new file mode 100644 index 0000000..e67d054 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805337_53_7097481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a01e22c0f7678986b687be01bde3fed7e3f8cde22214a65b57a22b065ff3c3 +size 356257 diff --git a/datasets/仪表盘/train/images/订单1805340_53_7096119.jpg b/datasets/仪表盘/train/images/订单1805340_53_7096119.jpg new file mode 100644 index 0000000..cd1670a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805340_53_7096119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a87d44a7e415a801749db2871274426c820fc0181d5ea409b7314b0c6a456c +size 339226 diff --git a/datasets/仪表盘/train/images/订单1805341_53_7096206.jpg b/datasets/仪表盘/train/images/订单1805341_53_7096206.jpg new file mode 100644 index 0000000..a20b800 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805341_53_7096206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b39ad9793391a7612b79d6034685a87dd9485075a6c4fbb67383376d9ce1ff +size 256486 diff --git a/datasets/仪表盘/train/images/订单1805343_53_7096171.jpg b/datasets/仪表盘/train/images/订单1805343_53_7096171.jpg new file mode 100644 index 0000000..eaeaab3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805343_53_7096171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d90593478d4400aa444c53621f96e3ab1b48d33b16f588c6c726d99cb287123 +size 217081 diff --git a/datasets/仪表盘/train/images/订单1805344_53_7096451.jpg b/datasets/仪表盘/train/images/订单1805344_53_7096451.jpg new file mode 100644 index 0000000..16282da --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805344_53_7096451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049dd75b9ab86197c3ef740df9a6a3e5ff74d0307954f8f871be37b3e503e6f6 +size 1139522 diff --git a/datasets/仪表盘/train/images/订单1805345_53_7096242.jpg b/datasets/仪表盘/train/images/订单1805345_53_7096242.jpg new file mode 100644 index 0000000..7faa53a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805345_53_7096242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44789b9c0be7041ba5daa7099f496c68ebf70e51d6d69e3aa221db7dfa518885 +size 66807 diff --git a/datasets/仪表盘/train/images/订单1805348_53_7096280.jpg b/datasets/仪表盘/train/images/订单1805348_53_7096280.jpg new file mode 100644 index 0000000..24a0674 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805348_53_7096280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7286145b499011480057fb15d8a25125b54736b5a6999c6085db9a25d43f197 +size 261059 diff --git a/datasets/仪表盘/train/images/订单1805350_53_7096316.jpg b/datasets/仪表盘/train/images/订单1805350_53_7096316.jpg new file mode 100644 index 0000000..17b584f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805350_53_7096316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0051f7026353a78a3cd40c0a15a9cac3886841ce7cb699699515c59102f4d4b2 +size 343161 diff --git a/datasets/仪表盘/train/images/订单1805351_53_7096352.jpg b/datasets/仪表盘/train/images/订单1805351_53_7096352.jpg new file mode 100644 index 0000000..34e36ea --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805351_53_7096352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd23d4dfc6bdc64a743316aff2e8c833b4fd5c118f24863b61d463c15153f53 +size 88606 diff --git a/datasets/仪表盘/train/images/订单1805355_53_7096522.jpg b/datasets/仪表盘/train/images/订单1805355_53_7096522.jpg new file mode 100644 index 0000000..deca606 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805355_53_7096522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8ce2448b7bfd55075ef3b3c968774d427c8da483dc9410add64ec3cbce8b0d +size 217010 diff --git a/datasets/仪表盘/train/images/订单1805357_53_7096367.jpg b/datasets/仪表盘/train/images/订单1805357_53_7096367.jpg new file mode 100644 index 0000000..861902d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805357_53_7096367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fbf5addedf60466a3b68fe9b9e837f8ff3305020d43f418a7062fbc97a7aae5 +size 270787 diff --git a/datasets/仪表盘/train/images/订单1805358_53_7096435.jpg b/datasets/仪表盘/train/images/订单1805358_53_7096435.jpg new file mode 100644 index 0000000..c3d88ca --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805358_53_7096435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999164ae2c63a0db49f3ce9bbeb0ba10ad55fb01e3d5aff0a1499aad6dd2e55f +size 391265 diff --git a/datasets/仪表盘/train/images/订单1805362_53_7096357.jpg b/datasets/仪表盘/train/images/订单1805362_53_7096357.jpg new file mode 100644 index 0000000..de9df86 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805362_53_7096357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7087093f18c8f25b04f8930099fb0db52138afab520b58c8289afc5f8da7acb5 +size 333018 diff --git a/datasets/仪表盘/train/images/订单1805363_53_7096356.jpg b/datasets/仪表盘/train/images/订单1805363_53_7096356.jpg new file mode 100644 index 0000000..89a6099 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805363_53_7096356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d9ced5b384e9ad51fba2e61b5dcc2dcafd61e0d44b1f630e4f080452c94db6 +size 220607 diff --git a/datasets/仪表盘/train/images/订单1805366_53_7096415.jpg b/datasets/仪表盘/train/images/订单1805366_53_7096415.jpg new file mode 100644 index 0000000..c2c3dd5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805366_53_7096415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f7a13cef57d346c06b246a7c088bdda775804d275c9e90c4eaef622bcbd23f +size 233130 diff --git a/datasets/仪表盘/train/images/订单1805367_53_7096523.jpg b/datasets/仪表盘/train/images/订单1805367_53_7096523.jpg new file mode 100644 index 0000000..a7582fe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805367_53_7096523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0372d6573d6f2a451bbc25ca752bbd8f523f4d755c9b409df10ff76057b3422 +size 147246 diff --git a/datasets/仪表盘/train/images/订单1805370_53_7096524.jpg b/datasets/仪表盘/train/images/订单1805370_53_7096524.jpg new file mode 100644 index 0000000..cea23de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805370_53_7096524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb79d4691df3f959ebc5f9ff8218426205e56b1fb53f62552dc891f28f4cf95 +size 53333 diff --git a/datasets/仪表盘/train/images/订单1805371_53_7096491.jpg b/datasets/仪表盘/train/images/订单1805371_53_7096491.jpg new file mode 100644 index 0000000..7ed869e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805371_53_7096491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad244dddc9ae0b55201cced3977254c527ace1e19e374cdaae1519ddf91093cf +size 229236 diff --git a/datasets/仪表盘/train/images/订单1805373_53_7096468.jpg b/datasets/仪表盘/train/images/订单1805373_53_7096468.jpg new file mode 100644 index 0000000..661996f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805373_53_7096468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775d2394490e671bd817ae16175cc3fe142d284fbd4d17ae0be7393815a15cdf +size 328930 diff --git a/datasets/仪表盘/train/images/订单1805375_53_7096470.jpg b/datasets/仪表盘/train/images/订单1805375_53_7096470.jpg new file mode 100644 index 0000000..72b5b2a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805375_53_7096470.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cce0ef905cc6a6ecc59743a5e6db84d70528c9808c7fa36951438a599351d70 +size 65752 diff --git a/datasets/仪表盘/train/images/订单1805376_53_7096528.jpg b/datasets/仪表盘/train/images/订单1805376_53_7096528.jpg new file mode 100644 index 0000000..bf1b5db --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805376_53_7096528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4ff8f4df1bd8a3f8f51bf59e73ff7cbf2bbe2dfea685eae23ed142989ead9b +size 229506 diff --git a/datasets/仪表盘/train/images/订单1805377_53_7096564.jpg b/datasets/仪表盘/train/images/订单1805377_53_7096564.jpg new file mode 100644 index 0000000..460bca7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805377_53_7096564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4201ea0a7016d93949b33ef5d61bb2fe373ace1affa448502a73b76d93f9843d +size 107238 diff --git a/datasets/仪表盘/train/images/订单1805380_53_7096579.jpg b/datasets/仪表盘/train/images/订单1805380_53_7096579.jpg new file mode 100644 index 0000000..9763d36 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805380_53_7096579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1848925ddedbec5fa52e8cf486ac3385185cc6d0875f337da548ad7d570fbe4 +size 80537 diff --git a/datasets/仪表盘/train/images/订单1805381_53_7096570.jpg b/datasets/仪表盘/train/images/订单1805381_53_7096570.jpg new file mode 100644 index 0000000..7f08810 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805381_53_7096570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95549c2e26f7326ebb9e4f3f8178ba05e223fb64c3580a0a6c94c1c07454787 +size 247448 diff --git a/datasets/仪表盘/train/images/订单1805382_53_7096613.jpg b/datasets/仪表盘/train/images/订单1805382_53_7096613.jpg new file mode 100644 index 0000000..1e48fbe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805382_53_7096613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23aff4eae2190bf36ca86567514d57266030e4ffe2671303b9fdc30333aac402 +size 98579 diff --git a/datasets/仪表盘/train/images/订单1805383_53_7096556.jpg b/datasets/仪表盘/train/images/订单1805383_53_7096556.jpg new file mode 100644 index 0000000..2ea865d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805383_53_7096556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2106e030c79850132d8591058779575bfd666128313b0f4d22f0797fbfbfef4 +size 72286 diff --git a/datasets/仪表盘/train/images/订单1805385_53_7096696.jpg b/datasets/仪表盘/train/images/订单1805385_53_7096696.jpg new file mode 100644 index 0000000..44917e8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805385_53_7096696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f63898ca0020839189dabe93d3ade63efa45d163a84a9bd53cfe6c0ca81283e +size 98524 diff --git a/datasets/仪表盘/train/images/订单1805387_53_7096621.jpg b/datasets/仪表盘/train/images/订单1805387_53_7096621.jpg new file mode 100644 index 0000000..f5fe023 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805387_53_7096621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33103a70fff4b82d35d89a894acc8efbd94cdc2898345d663ccbd00e5d57f1e2 +size 247817 diff --git a/datasets/仪表盘/train/images/订单1805394_53_7096641.jpg b/datasets/仪表盘/train/images/订单1805394_53_7096641.jpg new file mode 100644 index 0000000..7c1d88e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805394_53_7096641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134aca2026c0c259840515450a9fd25f427841d5ebfd4c7cdf786d6b1c72495a +size 116043 diff --git a/datasets/仪表盘/train/images/订单1805395_53_7096687.jpg b/datasets/仪表盘/train/images/订单1805395_53_7096687.jpg new file mode 100644 index 0000000..cd98241 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805395_53_7096687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53197f7d1f653d361ff854e5c572e87d637097bb8d7745d1c582cfcd1c6d3ae7 +size 247384 diff --git a/datasets/仪表盘/train/images/订单1805397_53_7096895.jpg b/datasets/仪表盘/train/images/订单1805397_53_7096895.jpg new file mode 100644 index 0000000..6f21f9d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805397_53_7096895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c127bac083ee88b9aa355361731e10477f36f280a2a564279c20a097fcbbdb58 +size 304904 diff --git a/datasets/仪表盘/train/images/订单1805398_53_7096778.jpg b/datasets/仪表盘/train/images/订单1805398_53_7096778.jpg new file mode 100644 index 0000000..965bfb9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805398_53_7096778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0def6e2bd1c9edd815f3afa09582e4f2596bb212204a0557b31d94272de78d58 +size 343451 diff --git a/datasets/仪表盘/train/images/订单1805400_53_7096740.jpg b/datasets/仪表盘/train/images/订单1805400_53_7096740.jpg new file mode 100644 index 0000000..698a5e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805400_53_7096740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe46dfcaef0e69f92cddd321cda921298bda278548dd53c468abe04d8f9c17e9 +size 62090 diff --git a/datasets/仪表盘/train/images/订单1805404_53_7096820.jpg b/datasets/仪表盘/train/images/订单1805404_53_7096820.jpg new file mode 100644 index 0000000..ea83d29 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805404_53_7096820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a226c4d9e0e8d790e702df0a53836b58c2660f1264421e32c4ec2ff1619748fa +size 185600 diff --git a/datasets/仪表盘/train/images/订单1805407_53_7096798.jpg b/datasets/仪表盘/train/images/订单1805407_53_7096798.jpg new file mode 100644 index 0000000..8295a5c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805407_53_7096798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f195027be8a32e93260d90aa846ff4b3c7aad14e5b316315c062857323162512 +size 347937 diff --git a/datasets/仪表盘/train/images/订单1805408_53_7096805.jpg b/datasets/仪表盘/train/images/订单1805408_53_7096805.jpg new file mode 100644 index 0000000..cd28124 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805408_53_7096805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12019b56e452ece2abc78a7e740af74951cb5fc2e2b1d745115a4fe47887b11b +size 67783 diff --git a/datasets/仪表盘/train/images/订单1805409_53_7096814.jpg b/datasets/仪表盘/train/images/订单1805409_53_7096814.jpg new file mode 100644 index 0000000..bdae04c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805409_53_7096814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ba2582323dba58b3e1d93c28ca27cd1b77bed8160bfc5bb5d04b932dae8ff93 +size 65268 diff --git a/datasets/仪表盘/train/images/订单1805410_53_7096859.jpg b/datasets/仪表盘/train/images/订单1805410_53_7096859.jpg new file mode 100644 index 0000000..9d15352 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805410_53_7096859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a2d5c37e517b46bac3e7c8494e5a2ba69eb22b183534e0bb4775c761f78c6e +size 434450 diff --git a/datasets/仪表盘/train/images/订单1805413_53_7096923.jpg b/datasets/仪表盘/train/images/订单1805413_53_7096923.jpg new file mode 100644 index 0000000..01774e1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805413_53_7096923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e32623b234cf387fdacd540872dc03d23b1ce3f5958ed6d9a5ce30284452a1a +size 79583 diff --git a/datasets/仪表盘/train/images/订单1805415_53_7096960.jpg b/datasets/仪表盘/train/images/订单1805415_53_7096960.jpg new file mode 100644 index 0000000..c7c8529 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805415_53_7096960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af76799a51f8d378e42f418e16a326c64bdfd5e63ddf7c3fa697dc06432bb18 +size 361865 diff --git a/datasets/仪表盘/train/images/订单1805416_53_7096931.jpg b/datasets/仪表盘/train/images/订单1805416_53_7096931.jpg new file mode 100644 index 0000000..b34870e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805416_53_7096931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17437df1007d395870cb1d9483b21411c105e099bbe8efa3fee9cc63be84bec +size 86287 diff --git a/datasets/仪表盘/train/images/订单1805417_53_7096974.jpg b/datasets/仪表盘/train/images/订单1805417_53_7096974.jpg new file mode 100644 index 0000000..a2d191f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805417_53_7096974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6988c5b1a0c03599045143a02bf21d7769e308b863ba644a8873f5753faa62 +size 357076 diff --git a/datasets/仪表盘/train/images/订单1805419_53_7097017.jpg b/datasets/仪表盘/train/images/订单1805419_53_7097017.jpg new file mode 100644 index 0000000..2edfd0f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805419_53_7097017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace3f7035fcb98ca578b63982a488a98372315ce82c76b6917035f867dcd362a +size 84254 diff --git a/datasets/仪表盘/train/images/订单1805422_53_7097131.jpg b/datasets/仪表盘/train/images/订单1805422_53_7097131.jpg new file mode 100644 index 0000000..968a440 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805422_53_7097131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02478ef9f93b601a2c3b0ed3bf88b42497e51a767af8929433f694d6b889c3a +size 167148 diff --git a/datasets/仪表盘/train/images/订单1805425_53_7097078.jpg b/datasets/仪表盘/train/images/订单1805425_53_7097078.jpg new file mode 100644 index 0000000..1b4fe7e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805425_53_7097078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca857103616cc745eb2e994e200996c704f6e122ed2cd0975ef125739781f015 +size 318538 diff --git a/datasets/仪表盘/train/images/订单1805428_53_7097028.jpg b/datasets/仪表盘/train/images/订单1805428_53_7097028.jpg new file mode 100644 index 0000000..f9b1d53 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805428_53_7097028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a6cc8c6c2bcf70e9a6b571385f6ccc770a36c92bf4e298775fd49099a7fcfc +size 168887 diff --git a/datasets/仪表盘/train/images/订单1805429_53_7097057.jpg b/datasets/仪表盘/train/images/订单1805429_53_7097057.jpg new file mode 100644 index 0000000..fdc8b22 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805429_53_7097057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94fcfe1d43b8d378ed32625ac35082842392940c4d4f63c6d2164d122542a74f +size 172509 diff --git a/datasets/仪表盘/train/images/订单1805430_53_7097181.jpg b/datasets/仪表盘/train/images/订单1805430_53_7097181.jpg new file mode 100644 index 0000000..775ec05 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805430_53_7097181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b7fbe42d28e184df3b8fd04d91bcdac5593faabd3c9153b10b341799f8be87 +size 316630 diff --git a/datasets/仪表盘/train/images/订单1805431_53_7097097.jpg b/datasets/仪表盘/train/images/订单1805431_53_7097097.jpg new file mode 100644 index 0000000..b16b4c6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805431_53_7097097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e1ab94a42c7a10f452aa5154eafedf6975212683e96be4891ee27ed2e3d6de +size 201165 diff --git a/datasets/仪表盘/train/images/订单1805433_53_7097045.jpg b/datasets/仪表盘/train/images/订单1805433_53_7097045.jpg new file mode 100644 index 0000000..cfc0b96 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805433_53_7097045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e5aaa4c0afca120c5b2dcbd24891ceafa46dbfb40d5772b33825fde944a3a7 +size 193855 diff --git a/datasets/仪表盘/train/images/订单1805437_53_7097124.jpg b/datasets/仪表盘/train/images/订单1805437_53_7097124.jpg new file mode 100644 index 0000000..44a4236 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805437_53_7097124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a408ea814ea415e1fa1afa45c543de0abbe7f1a52c03af9431b4ac204da654 +size 217062 diff --git a/datasets/仪表盘/train/images/订单1805439_53_7097138.jpg b/datasets/仪表盘/train/images/订单1805439_53_7097138.jpg new file mode 100644 index 0000000..de75fd5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805439_53_7097138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9c53b2b5b58d252229627dc6ef6fab629e4b3ed1b28a2b00113586409a21ba +size 490166 diff --git a/datasets/仪表盘/train/images/订单1805444_53_7097185.jpg b/datasets/仪表盘/train/images/订单1805444_53_7097185.jpg new file mode 100644 index 0000000..de1c280 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805444_53_7097185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188b29fa0d0d51b9dc30e8f77d4b4cd54e7441ce962102816209705a5d3b6d99 +size 229491 diff --git a/datasets/仪表盘/train/images/订单1805445_53_7097225.jpg b/datasets/仪表盘/train/images/订单1805445_53_7097225.jpg new file mode 100644 index 0000000..6ae8d80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805445_53_7097225.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967633b20b436aac78668053d5071856c693dade3ae325638d1f205373fa6d99 +size 80906 diff --git a/datasets/仪表盘/train/images/订单1805446_53_7097163.jpg b/datasets/仪表盘/train/images/订单1805446_53_7097163.jpg new file mode 100644 index 0000000..9defdba --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805446_53_7097163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6354a392df1a75861ff6be9cfd915b1efa27bff0c10d7b40203a33706191de +size 216188 diff --git a/datasets/仪表盘/train/images/订单1805449_53_7097263.jpg b/datasets/仪表盘/train/images/订单1805449_53_7097263.jpg new file mode 100644 index 0000000..3ff5a5c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805449_53_7097263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a208f38454a37549a8f8f69fcd88160071d68e6292ec8d5b82a8c2c078a0a2 +size 242234 diff --git a/datasets/仪表盘/train/images/订单1805451_53_7097405.jpg b/datasets/仪表盘/train/images/订单1805451_53_7097405.jpg new file mode 100644 index 0000000..b395947 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805451_53_7097405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed54557714aeed98d03f0433e929b6fb358473138a331cfbc2b16d4ab9b3c18 +size 138144 diff --git a/datasets/仪表盘/train/images/订单1805452_53_7097299.jpg b/datasets/仪表盘/train/images/订单1805452_53_7097299.jpg new file mode 100644 index 0000000..f295b7e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805452_53_7097299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7960178986d0d953cf0d92db4894a4d4fcc8391e3a13fc0c6371e6e9a32b0958 +size 297326 diff --git a/datasets/仪表盘/train/images/订单1805453_53_7097262.jpg b/datasets/仪表盘/train/images/订单1805453_53_7097262.jpg new file mode 100644 index 0000000..051c4d5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805453_53_7097262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cb74ce5294fd15f35370aae516ae906ecaca895bdba4692fa287b010fee15f +size 263020 diff --git a/datasets/仪表盘/train/images/订单1805454_53_7097236.jpg b/datasets/仪表盘/train/images/订单1805454_53_7097236.jpg new file mode 100644 index 0000000..bf949b6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805454_53_7097236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85128ff41dbed1baec01811c6e74d8fdc195f86c7cb6267d4ff5c8c05b2d3be +size 82121 diff --git a/datasets/仪表盘/train/images/订单1805458_53_7097347.jpg b/datasets/仪表盘/train/images/订单1805458_53_7097347.jpg new file mode 100644 index 0000000..40479e0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805458_53_7097347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71eb5604408747ecdd8f1374194a4d2dc8adc4c2acdcf7acad714e23e24dd46e +size 311682 diff --git a/datasets/仪表盘/train/images/订单1805459_53_7097350.jpg b/datasets/仪表盘/train/images/订单1805459_53_7097350.jpg new file mode 100644 index 0000000..8c6c0e6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805459_53_7097350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9b9593f422df891767ddd88158ef5cb121baf677e4fb6872cc292410d22e04 +size 159173 diff --git a/datasets/仪表盘/train/images/订单1805460_53_7097368.jpg b/datasets/仪表盘/train/images/订单1805460_53_7097368.jpg new file mode 100644 index 0000000..3f7a20b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805460_53_7097368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5a92b9b54020a900924f7b9f9cba2295a54bb72382f8c047dfde90a11324b6 +size 148777 diff --git a/datasets/仪表盘/train/images/订单1805461_53_7097425.jpg b/datasets/仪表盘/train/images/订单1805461_53_7097425.jpg new file mode 100644 index 0000000..212a058 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805461_53_7097425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872862944835f3e4d6bb9ac5346fb3dd3479d391b8d367316b066430435577e0 +size 68764 diff --git a/datasets/仪表盘/train/images/订单1805463_53_7097387.jpg b/datasets/仪表盘/train/images/订单1805463_53_7097387.jpg new file mode 100644 index 0000000..0f1f611 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805463_53_7097387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef547b433679e63645cd01e894e56dcb0c50e5c57086c8868cad6f451c684c8a +size 86140 diff --git a/datasets/仪表盘/train/images/订单1805466_53_7097424.jpg b/datasets/仪表盘/train/images/订单1805466_53_7097424.jpg new file mode 100644 index 0000000..fe3b93d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805466_53_7097424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7fd65b5eabc032e830aa2098c316f28c0334108cf27fa330c884909d323244 +size 346186 diff --git a/datasets/仪表盘/train/images/订单1805467_53_7097513.jpg b/datasets/仪表盘/train/images/订单1805467_53_7097513.jpg new file mode 100644 index 0000000..48f8b69 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805467_53_7097513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b572d6eb5122ea994e1f360ced7677e8e430af10f39b4985b09a66fc2fad46f +size 760026 diff --git a/datasets/仪表盘/train/images/订单1805468_53_7097438.jpg b/datasets/仪表盘/train/images/订单1805468_53_7097438.jpg new file mode 100644 index 0000000..1181953 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805468_53_7097438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ab8172fee2172be0add66c579de6930cabb8111042682f3d1e11131ed867eb +size 167032 diff --git a/datasets/仪表盘/train/images/订单1805469_53_7097443.jpg b/datasets/仪表盘/train/images/订单1805469_53_7097443.jpg new file mode 100644 index 0000000..4e4efda --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805469_53_7097443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6128d5a7dd37c880831377b83a368114d2963a7632a01644cee687e8e65de8e4 +size 320630 diff --git a/datasets/仪表盘/train/images/订单1805471_53_7097461.jpg b/datasets/仪表盘/train/images/订单1805471_53_7097461.jpg new file mode 100644 index 0000000..a7f750f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805471_53_7097461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef48dbf56be7c9f74deeb451c1e604334097b4d3cee91bf18e2ef6cabd1ec146 +size 290615 diff --git a/datasets/仪表盘/train/images/订单1805472_53_7097522.jpg b/datasets/仪表盘/train/images/订单1805472_53_7097522.jpg new file mode 100644 index 0000000..7086827 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805472_53_7097522.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ee6cbdedb3c647a37edaf21e085da79dc1a8f5956fe6ef8a3c997d0b299f91 +size 308942 diff --git a/datasets/仪表盘/train/images/订单1805473_53_7097527.jpg b/datasets/仪表盘/train/images/订单1805473_53_7097527.jpg new file mode 100644 index 0000000..1e2089b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805473_53_7097527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb509488c06773c3f35aba6b9a39ccb49e638c2a140c27fbcf1c199549b669a +size 110936 diff --git a/datasets/仪表盘/train/images/订单1805477_53_7097581.jpg b/datasets/仪表盘/train/images/订单1805477_53_7097581.jpg new file mode 100644 index 0000000..364fa45 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805477_53_7097581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbdc27cc1d9922d16e481ea901a35829201805463d5807b09978d9dcd9ec3cb4 +size 359375 diff --git a/datasets/仪表盘/train/images/订单1805479_53_7097595.jpg b/datasets/仪表盘/train/images/订单1805479_53_7097595.jpg new file mode 100644 index 0000000..b7e3a0e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805479_53_7097595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d53fedbec30f42236bc49be6ca0abb1f1ef2dba7587f1d54d122946865f28f +size 287002 diff --git a/datasets/仪表盘/train/images/订单1805483_53_7097633.jpg b/datasets/仪表盘/train/images/订单1805483_53_7097633.jpg new file mode 100644 index 0000000..5ee61df --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805483_53_7097633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe02f2e0ac396b7ce29136f9556248fe412ed915a42e0948825616ac925a8e35 +size 221368 diff --git a/datasets/仪表盘/train/images/订单1805485_53_7097614.jpg b/datasets/仪表盘/train/images/订单1805485_53_7097614.jpg new file mode 100644 index 0000000..293c4c0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805485_53_7097614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744ebdedc7ba2963d407496dceb69123d2271729967c15a1a8eed11e14829991 +size 260017 diff --git a/datasets/仪表盘/train/images/订单1805489_53_7097651.jpg b/datasets/仪表盘/train/images/订单1805489_53_7097651.jpg new file mode 100644 index 0000000..352eb4e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805489_53_7097651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b561b4a4048e69c5543d2f4d98e59706ad92ca9a8450b0cc147140e5b226f71 +size 225502 diff --git a/datasets/仪表盘/train/images/订单1805490_53_7097640.jpg b/datasets/仪表盘/train/images/订单1805490_53_7097640.jpg new file mode 100644 index 0000000..6e420b2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805490_53_7097640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038cb3a68cba80a04fb0abaaa155ea06899b08b62ef4ae5bfc4a65646825995f +size 118123 diff --git a/datasets/仪表盘/train/images/订单1805494_53_7097665.jpg b/datasets/仪表盘/train/images/订单1805494_53_7097665.jpg new file mode 100644 index 0000000..014ed28 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805494_53_7097665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ea31a0691c5c3a665ccfcb87a2ca36d13a4354b09ea5a48097257305d0b988 +size 312155 diff --git a/datasets/仪表盘/train/images/订单1805495_53_7097886.jpg b/datasets/仪表盘/train/images/订单1805495_53_7097886.jpg new file mode 100644 index 0000000..c70c847 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805495_53_7097886.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e1efa1c81d9f59795a911f936b463b8cd0e50dca6b64289a748a007ac3476a +size 159563 diff --git a/datasets/仪表盘/train/images/订单1805497_53_7097710.jpg b/datasets/仪表盘/train/images/订单1805497_53_7097710.jpg new file mode 100644 index 0000000..46b7b81 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805497_53_7097710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e6877f8d8f9cad664c8acca3b493bc8cc0c8b011cf757f63af51d4da44ca94 +size 242192 diff --git a/datasets/仪表盘/train/images/订单1805498_53_7097735.jpg b/datasets/仪表盘/train/images/订单1805498_53_7097735.jpg new file mode 100644 index 0000000..f2f92fa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805498_53_7097735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42875ce4644bdef66f52d22faf7de91eabc1670aa0aa94ac8e92e85a59b49d8 +size 100391 diff --git a/datasets/仪表盘/train/images/订单1805499_53_7097752.jpg b/datasets/仪表盘/train/images/订单1805499_53_7097752.jpg new file mode 100644 index 0000000..897c1cd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805499_53_7097752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e68630593aad51cbdf8bf61319c75934cf5ba664533052548360e577102f4cf +size 229819 diff --git a/datasets/仪表盘/train/images/订单1805500_53_7097765.jpg b/datasets/仪表盘/train/images/订单1805500_53_7097765.jpg new file mode 100644 index 0000000..bff919b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805500_53_7097765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9f2910247d34662b223d94499d89069d8978d9a0a4a992a11e740030b885de +size 113175 diff --git a/datasets/仪表盘/train/images/订单1805506_53_7097820.jpg b/datasets/仪表盘/train/images/订单1805506_53_7097820.jpg new file mode 100644 index 0000000..7ac4fff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805506_53_7097820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:633010168ebde15b1d7bf9cef7f7af625c07caa21c26458e2c2ed778b183a681 +size 585758 diff --git a/datasets/仪表盘/train/images/订单1805509_53_7097846.jpg b/datasets/仪表盘/train/images/订单1805509_53_7097846.jpg new file mode 100644 index 0000000..f751db8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805509_53_7097846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c3c4370157eedb05b005152d759e12c229d5e6c5c5fada3185a0be15676852 +size 278897 diff --git a/datasets/仪表盘/train/images/订单1805510_53_7098033.jpg b/datasets/仪表盘/train/images/订单1805510_53_7098033.jpg new file mode 100644 index 0000000..e14ecbb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805510_53_7098033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48e635790ae0e16765a6d24c2f1e836e753022470efddd56c8704ee0b04aae4 +size 375546 diff --git a/datasets/仪表盘/train/images/订单1805511_53_7097830.jpg b/datasets/仪表盘/train/images/订单1805511_53_7097830.jpg new file mode 100644 index 0000000..292a674 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805511_53_7097830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fc55c757b82f273cfd932ab139f9d576dabf48fbd6a0f6760083464e4da440 +size 309425 diff --git a/datasets/仪表盘/train/images/订单1805512_53_7097835.jpg b/datasets/仪表盘/train/images/订单1805512_53_7097835.jpg new file mode 100644 index 0000000..ff7ae31 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805512_53_7097835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76536fce841e6a8a40058dc622189cfb5bba778aba8358ca8e50dcc1c483cf25 +size 381197 diff --git a/datasets/仪表盘/train/images/订单1805513_53_7097860.jpg b/datasets/仪表盘/train/images/订单1805513_53_7097860.jpg new file mode 100644 index 0000000..e1e9fff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805513_53_7097860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfe47f37829b9a243da19f239491206ac5032e95afb683a33878bb01bce78ca +size 115676 diff --git a/datasets/仪表盘/train/images/订单1805516_53_7097877.jpg b/datasets/仪表盘/train/images/订单1805516_53_7097877.jpg new file mode 100644 index 0000000..42b8a33 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805516_53_7097877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1265e0c16fcead7406e1f374726c411f40cc65a5df3d1fa32181e7317dc0be83 +size 116860 diff --git a/datasets/仪表盘/train/images/订单1805520_53_7097923.jpg b/datasets/仪表盘/train/images/订单1805520_53_7097923.jpg new file mode 100644 index 0000000..4171f49 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805520_53_7097923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2519191d26bd10169287eabac4ab11c878c24dc12319f4c245794fa6dc02e5cd +size 243107 diff --git a/datasets/仪表盘/train/images/订单1805524_53_7097933.jpg b/datasets/仪表盘/train/images/订单1805524_53_7097933.jpg new file mode 100644 index 0000000..1b827d2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805524_53_7097933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916e3626f0d11c41154e9097da94debf77e2643cc57ce23ec8aa82dce652a475 +size 275890 diff --git a/datasets/仪表盘/train/images/订单1805525_53_7097924.jpg b/datasets/仪表盘/train/images/订单1805525_53_7097924.jpg new file mode 100644 index 0000000..30301fd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805525_53_7097924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e567e3c5fa4b3116379f87f5ece3144df6582df9f5f86412185fdb1c7265b7 +size 262002 diff --git a/datasets/仪表盘/train/images/订单1805526_53_7097972.jpg b/datasets/仪表盘/train/images/订单1805526_53_7097972.jpg new file mode 100644 index 0000000..ccc52f1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805526_53_7097972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c0f1ccea9b1bb1e8a5fc9ff397222a6c832761eff44f595b2b5a43f97387f6 +size 164736 diff --git a/datasets/仪表盘/train/images/订单1805528_53_7097978.jpg b/datasets/仪表盘/train/images/订单1805528_53_7097978.jpg new file mode 100644 index 0000000..fa7934e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805528_53_7097978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e93c3e1dddffc68d47b097a5cab03df327775248ad0d6d75f32b375d9ca7bc +size 594351 diff --git a/datasets/仪表盘/train/images/订单1805530_53_7098028.jpg b/datasets/仪表盘/train/images/订单1805530_53_7098028.jpg new file mode 100644 index 0000000..c5064fe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805530_53_7098028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c65b7058752efa6300cd65462604faf0e849b398f8e342bcc5cab18c1895d9c +size 379671 diff --git a/datasets/仪表盘/train/images/订单1805537_53_7097994.jpg b/datasets/仪表盘/train/images/订单1805537_53_7097994.jpg new file mode 100644 index 0000000..f19c931 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805537_53_7097994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014d4837f9a70f91132a9f053ece2c2ba7dd28dbe95a82888c99947ba7bf5c74 +size 342429 diff --git a/datasets/仪表盘/train/images/订单1805539_53_7098117.jpg b/datasets/仪表盘/train/images/订单1805539_53_7098117.jpg new file mode 100644 index 0000000..3ccad1b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805539_53_7098117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2a7bdb9e5b1669954bdb1e22e906feac31e93f38aecf7729e2b407358bc596 +size 329322 diff --git a/datasets/仪表盘/train/images/订单1805540_53_7098092.jpg b/datasets/仪表盘/train/images/订单1805540_53_7098092.jpg new file mode 100644 index 0000000..2276f1a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805540_53_7098092.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd77e9eeef31073096eafda59c4ba42430a3cb772035d61c6898c8df7b3add33 +size 409277 diff --git a/datasets/仪表盘/train/images/订单1805542_53_7098138.jpg b/datasets/仪表盘/train/images/订单1805542_53_7098138.jpg new file mode 100644 index 0000000..737fbfb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805542_53_7098138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c4f5fa846f80b8face23633be212350a0c7e8d0f278c498999d9541c295726 +size 464548 diff --git a/datasets/仪表盘/train/images/订单1805543_53_7098119.jpg b/datasets/仪表盘/train/images/订单1805543_53_7098119.jpg new file mode 100644 index 0000000..e6985a3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805543_53_7098119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2be975b03af9a54000e614070b72244a73868c675962755a51a91557011192 +size 272573 diff --git a/datasets/仪表盘/train/images/订单1805545_53_7098071.jpg b/datasets/仪表盘/train/images/订单1805545_53_7098071.jpg new file mode 100644 index 0000000..1dc5eee --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805545_53_7098071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53e73675958acab1bc8205f2bd5d5bf2f07bdafecd244be75dda26abc0b6b79 +size 259520 diff --git a/datasets/仪表盘/train/images/订单1805548_53_7098171.jpg b/datasets/仪表盘/train/images/订单1805548_53_7098171.jpg new file mode 100644 index 0000000..3cec9d2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805548_53_7098171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0841d1101c8ce88e3d126a2edde5c84bd4bb9f6e663a6058cccef0f5ad5396c5 +size 298622 diff --git a/datasets/仪表盘/train/images/订单1805552_53_7098190.jpg b/datasets/仪表盘/train/images/订单1805552_53_7098190.jpg new file mode 100644 index 0000000..b19bdfb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805552_53_7098190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe14b2a792bed1470926196281762effa9ace9ac549d22a4ff6fba0c28e105f +size 366966 diff --git a/datasets/仪表盘/train/images/订单1805556_53_7098215.jpg b/datasets/仪表盘/train/images/订单1805556_53_7098215.jpg new file mode 100644 index 0000000..5556dd6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805556_53_7098215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555f4477a5028c5347b4d09cba5c4a5b2fc5df687d97c52667989718cff99245 +size 304263 diff --git a/datasets/仪表盘/train/images/订单1805557_53_7098286.jpg b/datasets/仪表盘/train/images/订单1805557_53_7098286.jpg new file mode 100644 index 0000000..4db8d8b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805557_53_7098286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4550697dc631b5f7f8c867f66849e6663965b64b630e596b6fc67a7542938c0b +size 467195 diff --git a/datasets/仪表盘/train/images/订单1805558_53_7098199.jpg b/datasets/仪表盘/train/images/订单1805558_53_7098199.jpg new file mode 100644 index 0000000..240450f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805558_53_7098199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7ec844d5a4ce998f347b5c89d48ed92cb436bc86930546443bab43db8866be +size 336030 diff --git a/datasets/仪表盘/train/images/订单1805559_53_7098291.jpg b/datasets/仪表盘/train/images/订单1805559_53_7098291.jpg new file mode 100644 index 0000000..a140d38 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805559_53_7098291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2ea4f1616dc93b415844b05c9b593f1ac4517a1c16e6aee43cfb7403e17aa4 +size 351842 diff --git a/datasets/仪表盘/train/images/订单1805560_53_7098336.jpg b/datasets/仪表盘/train/images/订单1805560_53_7098336.jpg new file mode 100644 index 0000000..dc286fd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805560_53_7098336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9706997648817d5cc45c00d959fa746e7428ce3e2093fe0b778df46966f94292 +size 256643 diff --git a/datasets/仪表盘/train/images/订单1805561_53_7098446.jpg b/datasets/仪表盘/train/images/订单1805561_53_7098446.jpg new file mode 100644 index 0000000..b0f0594 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805561_53_7098446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f574630c0d11c3daa7f6c0ea70721430ff8882bee4db9507ed240e34ea754d9 +size 276372 diff --git a/datasets/仪表盘/train/images/订单1805565_53_7098281.jpg b/datasets/仪表盘/train/images/订单1805565_53_7098281.jpg new file mode 100644 index 0000000..09224aa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805565_53_7098281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51c8d5e7c62367482b4c75024dd276e4a9655e8901573f8b61c093cf10035cc +size 62204 diff --git a/datasets/仪表盘/train/images/订单1805567_53_7098250.jpg b/datasets/仪表盘/train/images/订单1805567_53_7098250.jpg new file mode 100644 index 0000000..d4d805e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805567_53_7098250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6b53dcd641ec90fdb3e223d448515d86be1def40308cbef5c75ae24b9cbe70 +size 140184 diff --git a/datasets/仪表盘/train/images/订单1805569_53_7098379.jpg b/datasets/仪表盘/train/images/订单1805569_53_7098379.jpg new file mode 100644 index 0000000..2e855d3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805569_53_7098379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb61595cbf48ee8aebce4be506d488d2f9d5c4425c8f63ab1aaeb90fa19ff67 +size 132766 diff --git a/datasets/仪表盘/train/images/订单1805570_53_7098325.jpg b/datasets/仪表盘/train/images/订单1805570_53_7098325.jpg new file mode 100644 index 0000000..ed3a31a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805570_53_7098325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96fd9371dc4f1d56461325d55ac8bc8b1ab786de1df6c608273e0924f23f680 +size 256331 diff --git a/datasets/仪表盘/train/images/订单1805571_53_7099236.jpg b/datasets/仪表盘/train/images/订单1805571_53_7099236.jpg new file mode 100644 index 0000000..904fa80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805571_53_7099236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ee626a5a6a533d9e784fd5027b9d61be987ae56e0c89140921328bc71cf3ca +size 73667 diff --git a/datasets/仪表盘/train/images/订单1805573_53_7098317.jpg b/datasets/仪表盘/train/images/订单1805573_53_7098317.jpg new file mode 100644 index 0000000..092a143 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805573_53_7098317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5306dd0a313f5e7f6758fd3f6dc42711aa64471bb370eaa5964dbbec3322b398 +size 80393 diff --git a/datasets/仪表盘/train/images/订单1805575_53_7098401.jpg b/datasets/仪表盘/train/images/订单1805575_53_7098401.jpg new file mode 100644 index 0000000..7f1b8f3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805575_53_7098401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e85cac91285c367014422f74faadfe99f6eeaa16d8302d2b0b94cae5bcad5d +size 116443 diff --git a/datasets/仪表盘/train/images/订单1805576_53_7098497.jpg b/datasets/仪表盘/train/images/订单1805576_53_7098497.jpg new file mode 100644 index 0000000..751fd1b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805576_53_7098497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94314c074b69b8e99f98005395c3590b57ae46d7cfe2d3f4e4b2188bf286690 +size 443285 diff --git a/datasets/仪表盘/train/images/订单1805578_53_7098414.jpg b/datasets/仪表盘/train/images/订单1805578_53_7098414.jpg new file mode 100644 index 0000000..53cae17 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805578_53_7098414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2baff4d74d7869cdee071ce6bd0cc56347d0fcae3c32460d3dc644180b82b4 +size 143961 diff --git a/datasets/仪表盘/train/images/订单1805579_53_7098431.jpg b/datasets/仪表盘/train/images/订单1805579_53_7098431.jpg new file mode 100644 index 0000000..7065a0f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805579_53_7098431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56b5efc8cdaf0cabe02b9f574bed5c9bf628a60382491b1923fe71a5fd1c782 +size 409636 diff --git a/datasets/仪表盘/train/images/订单1805580_53_7098393.jpg b/datasets/仪表盘/train/images/订单1805580_53_7098393.jpg new file mode 100644 index 0000000..1ce6acb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805580_53_7098393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df20ddd67eea519ea05fa5b4f67ee76483a4323e23a8cc18b69c1abbd266deaf +size 289609 diff --git a/datasets/仪表盘/train/images/订单1805581_53_7098435.jpg b/datasets/仪表盘/train/images/订单1805581_53_7098435.jpg new file mode 100644 index 0000000..ce30191 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805581_53_7098435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead33dbf0353461dfeb02772af304adf95d1628846f771785ebd5f20aebbaecb +size 105432 diff --git a/datasets/仪表盘/train/images/订单1805583_53_7098569.jpg b/datasets/仪表盘/train/images/订单1805583_53_7098569.jpg new file mode 100644 index 0000000..1fb1e3e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805583_53_7098569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4630e0bb84e0f54e79d09e9193c0b5e507f7399694bd2b2691d5820ecb9750f +size 469018 diff --git a/datasets/仪表盘/train/images/订单1805587_53_7098666.jpg b/datasets/仪表盘/train/images/订单1805587_53_7098666.jpg new file mode 100644 index 0000000..4c6a324 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805587_53_7098666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ef8830058e5a828e993ae2c448ee38f3f75308a53fdab25fe380826b0d5f3b +size 123111 diff --git a/datasets/仪表盘/train/images/订单1805592_53_7098698.jpg b/datasets/仪表盘/train/images/订单1805592_53_7098698.jpg new file mode 100644 index 0000000..98a1308 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805592_53_7098698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396a8c7fca74c12a4f4ca8c77d10c6c9996ee5a605d48de03bc48d1346f29ed2 +size 250699 diff --git a/datasets/仪表盘/train/images/订单1805593_53_7098487.jpg b/datasets/仪表盘/train/images/订单1805593_53_7098487.jpg new file mode 100644 index 0000000..cee3b05 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805593_53_7098487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfda89d2ea2ee0dd117c657ed639be5f3ff1bffe1f7705e0e4452dc984ef1d3f +size 106566 diff --git a/datasets/仪表盘/train/images/订单1805596_53_7098496.jpg b/datasets/仪表盘/train/images/订单1805596_53_7098496.jpg new file mode 100644 index 0000000..1b8275f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805596_53_7098496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2404694beb23384d65056e56db11cb2a8084bafc25ca0907cb0e6918b8c8f3 +size 251089 diff --git a/datasets/仪表盘/train/images/订单1805597_53_7098511.jpg b/datasets/仪表盘/train/images/订单1805597_53_7098511.jpg new file mode 100644 index 0000000..4727f9f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805597_53_7098511.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aceb0f6340a9ec65ce0c6025cdaa0b8ae2e022bf422d0474d80f6be01a1a2ef +size 126366 diff --git a/datasets/仪表盘/train/images/订单1805600_53_7098595.jpg b/datasets/仪表盘/train/images/订单1805600_53_7098595.jpg new file mode 100644 index 0000000..6056012 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805600_53_7098595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b864f726c34312ea1542fac32ffb2d2025b8c112aad847e853988f262cb4e82a +size 611363 diff --git a/datasets/仪表盘/train/images/订单1805605_53_7098815.jpg b/datasets/仪表盘/train/images/订单1805605_53_7098815.jpg new file mode 100644 index 0000000..1702c5e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805605_53_7098815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11c2fbf0c7842b94028b6ea458c1ce7b48d7c374e0051c083c238e13c41b7f2 +size 202048 diff --git a/datasets/仪表盘/train/images/订单1805608_53_7098640.jpg b/datasets/仪表盘/train/images/订单1805608_53_7098640.jpg new file mode 100644 index 0000000..b2aba00 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805608_53_7098640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392788794570a379fbf09822ab03dd57f9165d15b981a53573d47d21d1c7275c +size 275526 diff --git a/datasets/仪表盘/train/images/订单1805609_53_7098734.jpg b/datasets/仪表盘/train/images/订单1805609_53_7098734.jpg new file mode 100644 index 0000000..cd23dc7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805609_53_7098734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b9b31ebc25c6b5eb9cd97e4ba510271f1a2ad6e63a617047b5b0f59ca612fe +size 269805 diff --git a/datasets/仪表盘/train/images/订单1805615_53_7098754.jpg b/datasets/仪表盘/train/images/订单1805615_53_7098754.jpg new file mode 100644 index 0000000..df29015 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805615_53_7098754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0fb14d5bc52bb3a3fe8bf6afeb11bed6a5215a09795921eb1ef27d5bcd8424 +size 218001 diff --git a/datasets/仪表盘/train/images/订单1805617_53_7098795.jpg b/datasets/仪表盘/train/images/订单1805617_53_7098795.jpg new file mode 100644 index 0000000..5a4fa2f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805617_53_7098795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab4a4877824724144cc7cec43eff2d6d342032470530b4471d31403533369b4 +size 215059 diff --git a/datasets/仪表盘/train/images/订单1805620_53_7098829.jpg b/datasets/仪表盘/train/images/订单1805620_53_7098829.jpg new file mode 100644 index 0000000..d3b880b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805620_53_7098829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e9300f8befc03747ca584caf602de2aa887dd5155a666ee26afb97c58f230a +size 95003 diff --git a/datasets/仪表盘/train/images/订单1805621_53_7098872.jpg b/datasets/仪表盘/train/images/订单1805621_53_7098872.jpg new file mode 100644 index 0000000..b0a4fd9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805621_53_7098872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe6a361d36063b51de5127a39fa9821bef4b623c8def9a2148f8ed821d5f182 +size 79354 diff --git a/datasets/仪表盘/train/images/订单1805624_53_7098843.jpg b/datasets/仪表盘/train/images/订单1805624_53_7098843.jpg new file mode 100644 index 0000000..6d8cfc1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805624_53_7098843.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf88ee27097d0ad1af903bdac01d596bc4deb47eaa3e6585f23886a8e66366f +size 328242 diff --git a/datasets/仪表盘/train/images/订单1805627_53_7099441.jpg b/datasets/仪表盘/train/images/订单1805627_53_7099441.jpg new file mode 100644 index 0000000..d6c99f3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805627_53_7099441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057959c1bb257e304c43f6c5a91f265f7aeaf6d09c475dfe8091b0cb0dec8257 +size 95943 diff --git a/datasets/仪表盘/train/images/订单1805629_53_7098910.jpg b/datasets/仪表盘/train/images/订单1805629_53_7098910.jpg new file mode 100644 index 0000000..cbe7cf5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805629_53_7098910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd28f53a4a731151ccfc30562651b83336611af42d1933932cf24dd15cd064f +size 219456 diff --git a/datasets/仪表盘/train/images/订单1805632_53_7098939.jpg b/datasets/仪表盘/train/images/订单1805632_53_7098939.jpg new file mode 100644 index 0000000..136f103 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805632_53_7098939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b97ddf73c22a1fd2b29558b800873dee665072e54409ccd4405c604f767043db +size 392216 diff --git a/datasets/仪表盘/train/images/订单1805638_53_7098941.jpg b/datasets/仪表盘/train/images/订单1805638_53_7098941.jpg new file mode 100644 index 0000000..a8d61c3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805638_53_7098941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb804b5efe35fe385608013fd2f3118741080ca512a65b8aeceb944e6c9a522 +size 266425 diff --git a/datasets/仪表盘/train/images/订单1805639_53_7098973.jpg b/datasets/仪表盘/train/images/订单1805639_53_7098973.jpg new file mode 100644 index 0000000..c694736 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805639_53_7098973.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415773746cde255e42a9588969098d2148bfccc91f5b66b0378ba4baf72a439f +size 69464 diff --git a/datasets/仪表盘/train/images/订单1805640_53_7098960.jpg b/datasets/仪表盘/train/images/订单1805640_53_7098960.jpg new file mode 100644 index 0000000..3809054 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805640_53_7098960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63c11e9be1794bcfa743b8b42dfc4dfca83903c66d716cbb2c6a3da694878865 +size 262598 diff --git a/datasets/仪表盘/train/images/订单1805641_53_7098993.jpg b/datasets/仪表盘/train/images/订单1805641_53_7098993.jpg new file mode 100644 index 0000000..cf58bbf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805641_53_7098993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd7f421e4ca390b7cff08a0854142d3129ada88a1d27e7269d4f1c5874ce6b3 +size 263303 diff --git a/datasets/仪表盘/train/images/订单1805650_53_7099151.jpg b/datasets/仪表盘/train/images/订单1805650_53_7099151.jpg new file mode 100644 index 0000000..f8a1d58 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805650_53_7099151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ab520a45c7b12d9a65b8482a23662c38c6656af19fe62f29b0a08eb878ec54 +size 74214 diff --git a/datasets/仪表盘/train/images/订单1805651_53_7099069.jpg b/datasets/仪表盘/train/images/订单1805651_53_7099069.jpg new file mode 100644 index 0000000..859e7a4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805651_53_7099069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92dbcac91ab56e96df067a47ba6536c1d279b5e8c9a7e9cf6926eed820b6a38b +size 585185 diff --git a/datasets/仪表盘/train/images/订单1805655_53_7099185.jpg b/datasets/仪表盘/train/images/订单1805655_53_7099185.jpg new file mode 100644 index 0000000..786eca3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805655_53_7099185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b3512a9809fff4d3d1d9df0bec84b966137c81d4d6c4b22a6b40b139140246 +size 244689 diff --git a/datasets/仪表盘/train/images/订单1805657_53_7099112.jpg b/datasets/仪表盘/train/images/订单1805657_53_7099112.jpg new file mode 100644 index 0000000..b28017a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805657_53_7099112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6ababadde67a30f9905ec3d15022e601de040391eafabc06c14038158f6b3e +size 112635 diff --git a/datasets/仪表盘/train/images/订单1805658_53_7099575.jpg b/datasets/仪表盘/train/images/订单1805658_53_7099575.jpg new file mode 100644 index 0000000..639117d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805658_53_7099575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1637546346a614cab34cda238ca56c0f854d6e058273237d4769f151c66c04a +size 1438744 diff --git a/datasets/仪表盘/train/images/订单1805659_53_7099111.jpg b/datasets/仪表盘/train/images/订单1805659_53_7099111.jpg new file mode 100644 index 0000000..2263e1b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805659_53_7099111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2644bfd33729db799e503dcbb29c147d6ad48ccf57485a72bdcf53eca2f2b7ff +size 250835 diff --git a/datasets/仪表盘/train/images/订单1805660_53_7099141.jpg b/datasets/仪表盘/train/images/订单1805660_53_7099141.jpg new file mode 100644 index 0000000..1cbead2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805660_53_7099141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d690c783c81f95fab632ce87d9725e92bab6279896d3a2854dbba64dc44a495 +size 328774 diff --git a/datasets/仪表盘/train/images/订单1805661_53_7099307.jpg b/datasets/仪表盘/train/images/订单1805661_53_7099307.jpg new file mode 100644 index 0000000..c01389d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805661_53_7099307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4abb4089b2e142107c570c6f6bf3e2fffdae68badcafbca5e057714b044844 +size 107107 diff --git a/datasets/仪表盘/train/images/订单1805662_53_7099237.jpg b/datasets/仪表盘/train/images/订单1805662_53_7099237.jpg new file mode 100644 index 0000000..718fb97 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805662_53_7099237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de305f942b30025fb13133b2ee09790ea046076d5963b500b0d31d4288782c9 +size 77074 diff --git a/datasets/仪表盘/train/images/订单1805664_53_7099199.jpg b/datasets/仪表盘/train/images/订单1805664_53_7099199.jpg new file mode 100644 index 0000000..e551085 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805664_53_7099199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecff333ca07b8417cce631176f66601b654438c468353c9a5169bcc145d0b5af +size 174664 diff --git a/datasets/仪表盘/train/images/订单1805667_53_7099319.jpg b/datasets/仪表盘/train/images/订单1805667_53_7099319.jpg new file mode 100644 index 0000000..59eff98 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805667_53_7099319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0feeea8749348a3dc46ebe4161138f307a9011d75bcd825865c61a6a1f2f289a +size 163137 diff --git a/datasets/仪表盘/train/images/订单1805672_53_7099261.jpg b/datasets/仪表盘/train/images/订单1805672_53_7099261.jpg new file mode 100644 index 0000000..642102c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805672_53_7099261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8aadd8eef83e8fcc67620c40d7155f8f8705b0062dd001dd627209f90237ec7 +size 388594 diff --git a/datasets/仪表盘/train/images/订单1805677_53_7099302.jpg b/datasets/仪表盘/train/images/订单1805677_53_7099302.jpg new file mode 100644 index 0000000..f12fd94 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805677_53_7099302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd31b46d9c3772e567ed8cf6b82fcf8cdf2f63dc4998fb380f510c0cc70a8cf +size 101682 diff --git a/datasets/仪表盘/train/images/订单1805680_53_7099369.jpg b/datasets/仪表盘/train/images/订单1805680_53_7099369.jpg new file mode 100644 index 0000000..02d825e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805680_53_7099369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08b21c1e7a41c985af8f3df4542738dd281542c4b93de93777aab6f0b560536 +size 300654 diff --git a/datasets/仪表盘/train/images/订单1805681_53_7099378.jpg b/datasets/仪表盘/train/images/订单1805681_53_7099378.jpg new file mode 100644 index 0000000..37fa8aa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805681_53_7099378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4753646e91a1f988a8b717777bfa1214083a78d95f3115e1fb4b5f1675de6160 +size 277514 diff --git a/datasets/仪表盘/train/images/订单1805683_53_7099305.jpg b/datasets/仪表盘/train/images/订单1805683_53_7099305.jpg new file mode 100644 index 0000000..2eab7f6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805683_53_7099305.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dacfaf94954ca8494a1452139e66e65f35e33a7808135b8511ca2f106ec1ec17 +size 79505 diff --git a/datasets/仪表盘/train/images/订单1805684_53_7099415.jpg b/datasets/仪表盘/train/images/订单1805684_53_7099415.jpg new file mode 100644 index 0000000..692e631 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805684_53_7099415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de0acabb74169e073784e519a2123199d4f1a7ef55bc9bfeda0b4793bc1bafb +size 317837 diff --git a/datasets/仪表盘/train/images/订单1805690_53_7099549.jpg b/datasets/仪表盘/train/images/订单1805690_53_7099549.jpg new file mode 100644 index 0000000..c5ba05e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805690_53_7099549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d330dc7efd37b85ebbc6d39e3d71bf7ecf378190a332f82d90c298ef1f96dadf +size 328138 diff --git a/datasets/仪表盘/train/images/订单1805691_53_7099512.jpg b/datasets/仪表盘/train/images/订单1805691_53_7099512.jpg new file mode 100644 index 0000000..4d56f57 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805691_53_7099512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a583be9647dfbddcb773eb4ff82e5a10fd8a8056b7c08c8a7e6bae43798fc9a +size 317893 diff --git a/datasets/仪表盘/train/images/订单1805692_53_7099425.jpg b/datasets/仪表盘/train/images/订单1805692_53_7099425.jpg new file mode 100644 index 0000000..0aaa9db --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805692_53_7099425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0c5282ac26f8bd31dfd046bde82169ae686bd32617cc9c6a11984c9a756745 +size 175156 diff --git a/datasets/仪表盘/train/images/订单1805694_53_7099540.jpg b/datasets/仪表盘/train/images/订单1805694_53_7099540.jpg new file mode 100644 index 0000000..d5b532c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805694_53_7099540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d829774a08ef6a1492e35dae1ebe18cc15c4095fdf5f0da4e1f841b7e4ac7e +size 57955 diff --git a/datasets/仪表盘/train/images/订单1805696_53_7099523.jpg b/datasets/仪表盘/train/images/订单1805696_53_7099523.jpg new file mode 100644 index 0000000..0d4449b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805696_53_7099523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d09f03637274865a817eea0bf8f827b320a51dc764e9e2bf7ef35619156844 +size 108215 diff --git a/datasets/仪表盘/train/images/订单1805698_53_7099623.jpg b/datasets/仪表盘/train/images/订单1805698_53_7099623.jpg new file mode 100644 index 0000000..10ffb15 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805698_53_7099623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb411dae3fbf98325a385de4a1126d06c28fa3a313fafb093a92627ffefabc0 +size 342786 diff --git a/datasets/仪表盘/train/images/订单1805699_53_7099587.jpg b/datasets/仪表盘/train/images/订单1805699_53_7099587.jpg new file mode 100644 index 0000000..4972567 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805699_53_7099587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fe89c92ec083e276a91c8f01a294bb1d592a342273290fe17151d2b6c42f603 +size 218422 diff --git a/datasets/仪表盘/train/images/订单1805703_53_7099693.jpg b/datasets/仪表盘/train/images/订单1805703_53_7099693.jpg new file mode 100644 index 0000000..cf0e01f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805703_53_7099693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d74b91af13d74f85724510175593a79246b37ae2d0db622d253b40e9b06057 +size 343251 diff --git a/datasets/仪表盘/train/images/订单1805704_53_7099611.jpg b/datasets/仪表盘/train/images/订单1805704_53_7099611.jpg new file mode 100644 index 0000000..3774ca4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805704_53_7099611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46af092b37bd7895e143d8c72a9e2471eb70b6bf21352e39fef6722f6802dbac +size 198463 diff --git a/datasets/仪表盘/train/images/订单1805706_53_7099646.jpg b/datasets/仪表盘/train/images/订单1805706_53_7099646.jpg new file mode 100644 index 0000000..59240cc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805706_53_7099646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933efd465787dcb762de935a77f785372ecc5e4b578d37f2a93fc2070d8b6985 +size 349311 diff --git a/datasets/仪表盘/train/images/订单1805708_53_7099770.jpg b/datasets/仪表盘/train/images/订单1805708_53_7099770.jpg new file mode 100644 index 0000000..f16e911 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805708_53_7099770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219a318e7225d03db7ac0320b8998312bc829b48a1e32e3dd1a735073ff94f92 +size 238519 diff --git a/datasets/仪表盘/train/images/订单1805709_53_7099766.jpg b/datasets/仪表盘/train/images/订单1805709_53_7099766.jpg new file mode 100644 index 0000000..c3ea38c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805709_53_7099766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9427403207ddbb49d7cab4868c898f481646261f0d314ea0d4c73601d3f8b9e4 +size 92424 diff --git a/datasets/仪表盘/train/images/订单1805710_53_7099672.jpg b/datasets/仪表盘/train/images/订单1805710_53_7099672.jpg new file mode 100644 index 0000000..136f02f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805710_53_7099672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5e54a31bf2f43eb1fbc78cfac8456357fceb4d408d54559fd4a299f5073967 +size 119103 diff --git a/datasets/仪表盘/train/images/订单1805711_53_7099700.jpg b/datasets/仪表盘/train/images/订单1805711_53_7099700.jpg new file mode 100644 index 0000000..880cd5f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805711_53_7099700.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8209e88998a8aa99b52e9d79599c7919d86f95549a408cac3eaf9b47beeca14f +size 262875 diff --git a/datasets/仪表盘/train/images/订单1805715_53_7099681.jpg b/datasets/仪表盘/train/images/订单1805715_53_7099681.jpg new file mode 100644 index 0000000..866f3c0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805715_53_7099681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ff7eda9c641863e941c2dfff09aa8821957e99a5aeed3ac970a19de2fa9cbd +size 631767 diff --git a/datasets/仪表盘/train/images/订单1805718_53_7099731.jpg b/datasets/仪表盘/train/images/订单1805718_53_7099731.jpg new file mode 100644 index 0000000..785aa09 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805718_53_7099731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493de78bb4a59f87de05dd76fc3f404adc6323a05fc54d487d0679583f4509b4 +size 446171 diff --git a/datasets/仪表盘/train/images/订单1805720_53_7099756.jpg b/datasets/仪表盘/train/images/订单1805720_53_7099756.jpg new file mode 100644 index 0000000..003f59e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805720_53_7099756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356a6549e3b12e2cdc905ca709695bd27d0d364ba656f88dd315e3a8eedacdd6 +size 280172 diff --git a/datasets/仪表盘/train/images/订单1805723_53_7099764.jpg b/datasets/仪表盘/train/images/订单1805723_53_7099764.jpg new file mode 100644 index 0000000..f69b78d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805723_53_7099764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68aceb8d140413e3ed4cfdafdbe4e7daf153c4d37514a2df1f2a2dfde6cc3fb6 +size 240526 diff --git a/datasets/仪表盘/train/images/订单1805724_53_7099819.jpg b/datasets/仪表盘/train/images/订单1805724_53_7099819.jpg new file mode 100644 index 0000000..5b62538 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805724_53_7099819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5345a54e8227e0adcf1cd2d1dd7f08f4664fd274616d6ed0198789c9e0f49f7 +size 266025 diff --git a/datasets/仪表盘/train/images/订单1805726_53_7099830.jpg b/datasets/仪表盘/train/images/订单1805726_53_7099830.jpg new file mode 100644 index 0000000..cfe0c15 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805726_53_7099830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18632b7fd5df4fe068a8566bb596b85e44460f697c3faf29903ffed3b8bd3e5 +size 354537 diff --git a/datasets/仪表盘/train/images/订单1805727_53_7099847.jpg b/datasets/仪表盘/train/images/订单1805727_53_7099847.jpg new file mode 100644 index 0000000..8f84d55 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805727_53_7099847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938eb2a6e6fbb13391368a66b21c4e449d557221a018400214860fd52c5820fc +size 258383 diff --git a/datasets/仪表盘/train/images/订单1805729_53_7099846.jpg b/datasets/仪表盘/train/images/订单1805729_53_7099846.jpg new file mode 100644 index 0000000..0cf8853 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805729_53_7099846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e300a1ee247e25d103ef1383209c2b22dcdd9bef3e8de2d064663f181e80ed6b +size 94762 diff --git a/datasets/仪表盘/train/images/订单1805731_53_7100004.jpg b/datasets/仪表盘/train/images/订单1805731_53_7100004.jpg new file mode 100644 index 0000000..db7c773 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805731_53_7100004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04706ff305e660452e69477389584be333d4ccfbac0f1dc12a7b900827ab991f +size 386279 diff --git a/datasets/仪表盘/train/images/订单1805735_53_7099888.jpg b/datasets/仪表盘/train/images/订单1805735_53_7099888.jpg new file mode 100644 index 0000000..ddecf0d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805735_53_7099888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:000385f05c31ec4748047580fbb7e3f45e182afcfa0a50c2db4731a02081a128 +size 283087 diff --git a/datasets/仪表盘/train/images/订单1805736_53_7099959.jpg b/datasets/仪表盘/train/images/订单1805736_53_7099959.jpg new file mode 100644 index 0000000..d0d4c9f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805736_53_7099959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639cb95735665f2031e48c2d6fa25fce087141ba92c1c67b34eef4a274a9c6bb +size 71422 diff --git a/datasets/仪表盘/train/images/订单1805737_53_7101307.jpg b/datasets/仪表盘/train/images/订单1805737_53_7101307.jpg new file mode 100644 index 0000000..a27c3ab --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805737_53_7101307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02632420442c24424aed45e99e86256ebd3e9ab04b395cae110aa99adc45f490 +size 281891 diff --git a/datasets/仪表盘/train/images/订单1805739_53_7099968.jpg b/datasets/仪表盘/train/images/订单1805739_53_7099968.jpg new file mode 100644 index 0000000..4380ef4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805739_53_7099968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bb86d0e1e8b568a62e7f5f7cb1b8bee7016eb0cf744518627a66c241ba13ba +size 253517 diff --git a/datasets/仪表盘/train/images/订单1805740_53_7099921.jpg b/datasets/仪表盘/train/images/订单1805740_53_7099921.jpg new file mode 100644 index 0000000..fd3ab01 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805740_53_7099921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb259989d65fcd1dad551de2ab54cc9d2549898ee6a36fdef28c2d8ccdaeb920 +size 265954 diff --git a/datasets/仪表盘/train/images/订单1805742_53_7099969.jpg b/datasets/仪表盘/train/images/订单1805742_53_7099969.jpg new file mode 100644 index 0000000..9ade51b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805742_53_7099969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e63f6202ca6a6ca4b89dfdc1f9b37d3f747dfec7ac5c8d476a0f2377b2e767b +size 384118 diff --git a/datasets/仪表盘/train/images/订单1805746_53_7100003.jpg b/datasets/仪表盘/train/images/订单1805746_53_7100003.jpg new file mode 100644 index 0000000..a218295 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805746_53_7100003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de583158214423630be8af59ee5a8123c5414ef5abf6521466994872e55b7813 +size 86253 diff --git a/datasets/仪表盘/train/images/订单1805747_53_7100041.jpg b/datasets/仪表盘/train/images/订单1805747_53_7100041.jpg new file mode 100644 index 0000000..d41ea87 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805747_53_7100041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6095a105856a3a784efdfe80650a5bf4eb5f56947d73052a5576adc89fd6fc +size 425094 diff --git a/datasets/仪表盘/train/images/订单1805748_53_7100089.jpg b/datasets/仪表盘/train/images/订单1805748_53_7100089.jpg new file mode 100644 index 0000000..0ce97c1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805748_53_7100089.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21942103721dcf962b756b0fcf2b9ab853c4bf3b8fb9ddb46651570b293052fe +size 105429 diff --git a/datasets/仪表盘/train/images/订单1805751_53_7100238.jpg b/datasets/仪表盘/train/images/订单1805751_53_7100238.jpg new file mode 100644 index 0000000..d498053 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805751_53_7100238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bf99a07037adb04be90f3c7ad3d035de3ed73eb25c30929a262d23f00d9866 +size 89831 diff --git a/datasets/仪表盘/train/images/订单1805752_53_7100153.jpg b/datasets/仪表盘/train/images/订单1805752_53_7100153.jpg new file mode 100644 index 0000000..152d593 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805752_53_7100153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464ec2a56e8fbb365fb3291961baf10ea95a145919fb937512077844d46db27b +size 438032 diff --git a/datasets/仪表盘/train/images/订单1805753_53_7100039.jpg b/datasets/仪表盘/train/images/订单1805753_53_7100039.jpg new file mode 100644 index 0000000..4f95b42 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805753_53_7100039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f7e70333cf5400d1cece93f60eda742c3f23c45b33d3f1cf95c6491c675db0 +size 330720 diff --git a/datasets/仪表盘/train/images/订单1805763_53_7100249.jpg b/datasets/仪表盘/train/images/订单1805763_53_7100249.jpg new file mode 100644 index 0000000..46f93d1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805763_53_7100249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afa4ff6908e1c187eb2821213f9471025343df5fd16d446dad3aeee879844af +size 415279 diff --git a/datasets/仪表盘/train/images/订单1805765_53_7100224.jpg b/datasets/仪表盘/train/images/订单1805765_53_7100224.jpg new file mode 100644 index 0000000..0d8c06e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805765_53_7100224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1872e0a531df1aa48dd9baa6b131062ff22a8498d040feff9cf47a020bc5c557 +size 223729 diff --git a/datasets/仪表盘/train/images/订单1805766_53_7100183.jpg b/datasets/仪表盘/train/images/订单1805766_53_7100183.jpg new file mode 100644 index 0000000..10dae80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805766_53_7100183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519df76b3c898500b8793d7e4a9dc20957950bfea2a4a6eb7d0df1759f7ddc2a +size 76620 diff --git a/datasets/仪表盘/train/images/订单1805767_53_7100262.jpg b/datasets/仪表盘/train/images/订单1805767_53_7100262.jpg new file mode 100644 index 0000000..a0c0771 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805767_53_7100262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46603a6a825e256fa46b5ef39bd73253242a890e4bb0db1e596de9c67c6f3b4 +size 294485 diff --git a/datasets/仪表盘/train/images/订单1805769_53_7100201.jpg b/datasets/仪表盘/train/images/订单1805769_53_7100201.jpg new file mode 100644 index 0000000..449d133 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805769_53_7100201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe434864e0469958d594ff395e9e096100c5c694ada775fad99f0dea8eb3b2ec +size 149822 diff --git a/datasets/仪表盘/train/images/订单1805770_53_7100230.jpg b/datasets/仪表盘/train/images/订单1805770_53_7100230.jpg new file mode 100644 index 0000000..ea14e13 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805770_53_7100230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a8225d53ba6fbd4b260c5492c086ccc9701ac3d2364b77534a9869451e32a7 +size 282624 diff --git a/datasets/仪表盘/train/images/订单1805771_53_7100309.jpg b/datasets/仪表盘/train/images/订单1805771_53_7100309.jpg new file mode 100644 index 0000000..354f47f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805771_53_7100309.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ebaeda3272048f1f9226c75cf7fe627f77668b4d9612d74d842e27074506414 +size 245726 diff --git a/datasets/仪表盘/train/images/订单1805773_53_7100222.jpg b/datasets/仪表盘/train/images/订单1805773_53_7100222.jpg new file mode 100644 index 0000000..ed944a0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805773_53_7100222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf94a84ac0af69b192d21ff901826232caccf6d123baabeda009667015517e1 +size 329290 diff --git a/datasets/仪表盘/train/images/订单1805775_53_7100310.jpg b/datasets/仪表盘/train/images/订单1805775_53_7100310.jpg new file mode 100644 index 0000000..fc4f54a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805775_53_7100310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccf37d21d982e3fd4e11eab4600d42ef21acb7d0f02a0b20a52bb0e1e263c16 +size 341838 diff --git a/datasets/仪表盘/train/images/订单1805779_53_7100334.jpg b/datasets/仪表盘/train/images/订单1805779_53_7100334.jpg new file mode 100644 index 0000000..323444b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805779_53_7100334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56006c173d0e5da8d308f1d2b57a8bb36548c781194cd48dea524fe74ae04ea7 +size 264621 diff --git a/datasets/仪表盘/train/images/订单1805780_53_7100368.jpg b/datasets/仪表盘/train/images/订单1805780_53_7100368.jpg new file mode 100644 index 0000000..0db5ee8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805780_53_7100368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026844bc333eaac66f55c03f84620fa5113ad6bc9985f027ed0da93372e28f28 +size 102361 diff --git a/datasets/仪表盘/train/images/订单1805782_53_7100358.jpg b/datasets/仪表盘/train/images/订单1805782_53_7100358.jpg new file mode 100644 index 0000000..98462e6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805782_53_7100358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8d9a56a1ac252123074c1288bbf0393a89f33d5a897534488f06b1ba8f8ccc +size 256198 diff --git a/datasets/仪表盘/train/images/订单1805783_53_7100450.jpg b/datasets/仪表盘/train/images/订单1805783_53_7100450.jpg new file mode 100644 index 0000000..42161ea --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805783_53_7100450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb0798443f74b4d88852b813cf87d43867d77da883dae1ff3f2a12d9ec51db4 +size 344057 diff --git a/datasets/仪表盘/train/images/订单1805788_53_7100495.jpg b/datasets/仪表盘/train/images/订单1805788_53_7100495.jpg new file mode 100644 index 0000000..14e39bf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805788_53_7100495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efadf259615722704be51924bd8bcc768698908e74d236181439ea5ff51179b4 +size 58256 diff --git a/datasets/仪表盘/train/images/订单1805791_53_7100408.jpg b/datasets/仪表盘/train/images/订单1805791_53_7100408.jpg new file mode 100644 index 0000000..52b1719 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805791_53_7100408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b333003a57a02cbe00086305d99486dff55c94978aa401a4cc72c17663a726b8 +size 45073 diff --git a/datasets/仪表盘/train/images/订单1805793_53_7100433.jpg b/datasets/仪表盘/train/images/订单1805793_53_7100433.jpg new file mode 100644 index 0000000..87cd60a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805793_53_7100433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14a66100284f3d4863efd7252baef44ff43fed8cbfdaa9327bc5ef207afe2cf +size 50939 diff --git a/datasets/仪表盘/train/images/订单1805794_53_7100480.jpg b/datasets/仪表盘/train/images/订单1805794_53_7100480.jpg new file mode 100644 index 0000000..63618a4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805794_53_7100480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cae644f03a40d70baa7e92cfba218cc445b52078be63787418863ee5003df77 +size 213653 diff --git a/datasets/仪表盘/train/images/订单1805797_53_7100506.jpg b/datasets/仪表盘/train/images/订单1805797_53_7100506.jpg new file mode 100644 index 0000000..216e4a0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805797_53_7100506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7624a31aeb006c07098b7316c0a5670d9c31629078039eea159253b75e5f0701 +size 267195 diff --git a/datasets/仪表盘/train/images/订单1805802_53_7100532.jpg b/datasets/仪表盘/train/images/订单1805802_53_7100532.jpg new file mode 100644 index 0000000..aa05657 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805802_53_7100532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481b48e971c9a76123efdd5a7b5d37ef542920fd102f6d1b33e4b813ee9f79ac +size 94115 diff --git a/datasets/仪表盘/train/images/订单1805804_53_7100594.jpg b/datasets/仪表盘/train/images/订单1805804_53_7100594.jpg new file mode 100644 index 0000000..4a69a71 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805804_53_7100594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc6774419b9abf22efd14fad88b230fee00644290bcd940950534387100fc01 +size 256151 diff --git a/datasets/仪表盘/train/images/订单1805806_53_7100660.jpg b/datasets/仪表盘/train/images/订单1805806_53_7100660.jpg new file mode 100644 index 0000000..b7cb900 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805806_53_7100660.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139f71ff68fd2e229beab546c078c403cfa26f394bc06a0966deaea88f34d15b +size 71790 diff --git a/datasets/仪表盘/train/images/订单1805807_53_7100658.jpg b/datasets/仪表盘/train/images/订单1805807_53_7100658.jpg new file mode 100644 index 0000000..df254a3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805807_53_7100658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6068b3b506fa81b02ea0a7896cccf2174738c7c46ede0a83355aded5f58162fb +size 379761 diff --git a/datasets/仪表盘/train/images/订单1805810_53_7100598.jpg b/datasets/仪表盘/train/images/订单1805810_53_7100598.jpg new file mode 100644 index 0000000..6c55235 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805810_53_7100598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d146a3519288ca021d7b433eaee3703649621d45365adc414466104d2c5acd34 +size 43787 diff --git a/datasets/仪表盘/train/images/订单1805812_53_7100587.jpg b/datasets/仪表盘/train/images/订单1805812_53_7100587.jpg new file mode 100644 index 0000000..f6a8ece --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805812_53_7100587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6438fb7d0893cd5fdb5a98666e0fc83ad3ba125c98a7d9b29069f910138615d7 +size 259477 diff --git a/datasets/仪表盘/train/images/订单1805813_53_7100691.jpg b/datasets/仪表盘/train/images/订单1805813_53_7100691.jpg new file mode 100644 index 0000000..26729de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805813_53_7100691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531062464fb4e25ab27e64264ad3f00eb47f980d0a141c6f9a7acc1c14b0e075 +size 99345 diff --git a/datasets/仪表盘/train/images/订单1805814_53_7100631.jpg b/datasets/仪表盘/train/images/订单1805814_53_7100631.jpg new file mode 100644 index 0000000..8b4c71a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805814_53_7100631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7866b4939cf40fd17c80295e2ac26fc06d705e0513d5fdf00dec65d17edcd493 +size 203553 diff --git a/datasets/仪表盘/train/images/订单1805815_53_7100689.jpg b/datasets/仪表盘/train/images/订单1805815_53_7100689.jpg new file mode 100644 index 0000000..efa4f6d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805815_53_7100689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bb056e48e447e62f0c680f5f459473578f46bad71ef8abf85939bf9929fd21 +size 94433 diff --git a/datasets/仪表盘/train/images/订单1805817_53_7100708.jpg b/datasets/仪表盘/train/images/订单1805817_53_7100708.jpg new file mode 100644 index 0000000..58f3b26 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805817_53_7100708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2b1c8496b131ed856e07f4223dce5adba156e2abb5b39b1a0ff99857fa6bc8 +size 99032 diff --git a/datasets/仪表盘/train/images/订单1805819_53_7100665.jpg b/datasets/仪表盘/train/images/订单1805819_53_7100665.jpg new file mode 100644 index 0000000..fe95d88 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805819_53_7100665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de5eaa70c895eae1f7da72a85c6b722cba58047c590b00e581dd460f38a991c +size 485527 diff --git a/datasets/仪表盘/train/images/订单1805820_53_7100730.jpg b/datasets/仪表盘/train/images/订单1805820_53_7100730.jpg new file mode 100644 index 0000000..885a19e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805820_53_7100730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f70c4ed5ff65038f24a8ce36986892769f4425f6e62cc111e743403384b473 +size 75595 diff --git a/datasets/仪表盘/train/images/订单1805821_53_7100712.jpg b/datasets/仪表盘/train/images/订单1805821_53_7100712.jpg new file mode 100644 index 0000000..f38f3de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805821_53_7100712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae9771170f034981e67954aa68ffeaa1bff7a71461897b1cbf1f43e224a8162 +size 553833 diff --git a/datasets/仪表盘/train/images/订单1805823_53_7100644.jpg b/datasets/仪表盘/train/images/订单1805823_53_7100644.jpg new file mode 100644 index 0000000..e5115bb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805823_53_7100644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3258fd5438fb6741fcac2bbd9738ece6a00795b606d11b51e3023e65b3bbb5 +size 92779 diff --git a/datasets/仪表盘/train/images/订单1805829_53_7101114.jpg b/datasets/仪表盘/train/images/订单1805829_53_7101114.jpg new file mode 100644 index 0000000..f774ab1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805829_53_7101114.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591ffa6930ec383fa1980462f8159dee950b1579c9d153960b14d3989ef4285c +size 100322 diff --git a/datasets/仪表盘/train/images/订单1805830_53_7100753.jpg b/datasets/仪表盘/train/images/订单1805830_53_7100753.jpg new file mode 100644 index 0000000..4e0f50d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805830_53_7100753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ff6b50705e6cb70fd79531e7e9a20da0d6c47f5c8aeb81c7830fbca15e22ad +size 163871 diff --git a/datasets/仪表盘/train/images/订单1805831_53_7100842.jpg b/datasets/仪表盘/train/images/订单1805831_53_7100842.jpg new file mode 100644 index 0000000..9511494 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805831_53_7100842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533b7aee89b2de0aa5999b060ae7b3b36696ecdf1d43b67fee6f954d1140055d +size 263811 diff --git a/datasets/仪表盘/train/images/订单1805833_53_7100811.jpg b/datasets/仪表盘/train/images/订单1805833_53_7100811.jpg new file mode 100644 index 0000000..e2e1930 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805833_53_7100811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079841820238a6d37df34f5ce69fba1c487b4850b775faa4caeeca9545f8a86e +size 294431 diff --git a/datasets/仪表盘/train/images/订单1805834_53_7100792.jpg b/datasets/仪表盘/train/images/订单1805834_53_7100792.jpg new file mode 100644 index 0000000..3e99f08 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805834_53_7100792.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc41980110ad1bda8961cdf74ab62fbe7d2ed840ad550afbd22d3146e7e6abfb +size 64195 diff --git a/datasets/仪表盘/train/images/订单1805837_53_7100836.jpg b/datasets/仪表盘/train/images/订单1805837_53_7100836.jpg new file mode 100644 index 0000000..ecda4fe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805837_53_7100836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f16ccb771e769ff3c876607c725a5574a37471120eb5bf53ad989213f6f3d6 +size 214798 diff --git a/datasets/仪表盘/train/images/订单1805839_53_7100900.jpg b/datasets/仪表盘/train/images/订单1805839_53_7100900.jpg new file mode 100644 index 0000000..44c784b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805839_53_7100900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e030a2f080116f9fd2e78025f9e3d35e254bd168a3d5d648f2de3f42007e39 +size 355692 diff --git a/datasets/仪表盘/train/images/订单1805841_53_7100891.jpg b/datasets/仪表盘/train/images/订单1805841_53_7100891.jpg new file mode 100644 index 0000000..add818f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805841_53_7100891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a167d0fe4a53a77b50bcc307b9f13a4ec2bb0cb56f731565780d5dd47b677cf0 +size 216457 diff --git a/datasets/仪表盘/train/images/订单1805842_53_7100923.jpg b/datasets/仪表盘/train/images/订单1805842_53_7100923.jpg new file mode 100644 index 0000000..435add5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805842_53_7100923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb0ff1e1aeb6c38da62ee98f17542b783d24ef56fd227c6fa2402e0a8a8e005 +size 351682 diff --git a/datasets/仪表盘/train/images/订单1805843_53_7100948.jpg b/datasets/仪表盘/train/images/订单1805843_53_7100948.jpg new file mode 100644 index 0000000..8005df8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805843_53_7100948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26464b9e48a464a7ecc25a7d9accce0f5ff2d8c64238bcbde70e616149e1cf5 +size 291282 diff --git a/datasets/仪表盘/train/images/订单1805844_53_7100927.jpg b/datasets/仪表盘/train/images/订单1805844_53_7100927.jpg new file mode 100644 index 0000000..88e0e36 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805844_53_7100927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196eb05a9999705aa2d863e065b641a44f8271ee91e2fd791a5eaf8ddcc0ffe4 +size 333059 diff --git a/datasets/仪表盘/train/images/订单1805847_53_7100912.jpg b/datasets/仪表盘/train/images/订单1805847_53_7100912.jpg new file mode 100644 index 0000000..1a9b846 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805847_53_7100912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60bf1cdba8cb901ed7abd3196fc3fddb0e29752ead04a1eea837594c0f7314 +size 67527 diff --git a/datasets/仪表盘/train/images/订单1805848_53_7100995.jpg b/datasets/仪表盘/train/images/订单1805848_53_7100995.jpg new file mode 100644 index 0000000..7b13548 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805848_53_7100995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c6e8ab110bc0d08b471c4264bf44d43dd777aaf38c471c188124cd3fde3bd1 +size 124219 diff --git a/datasets/仪表盘/train/images/订单1805851_53_7100952.jpg b/datasets/仪表盘/train/images/订单1805851_53_7100952.jpg new file mode 100644 index 0000000..8f112af --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805851_53_7100952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a0503f61ddf2ebd827fce577ba9b60949b4adaa94da370a05b7883ca28e269 +size 259630 diff --git a/datasets/仪表盘/train/images/订单1805852_53_7101035.jpg b/datasets/仪表盘/train/images/订单1805852_53_7101035.jpg new file mode 100644 index 0000000..85f17ab --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805852_53_7101035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747a261615ef9e11b2c186ade23c9ac774d5b6d7a9a0b23236094cad92f4f349 +size 283014 diff --git a/datasets/仪表盘/train/images/订单1805853_53_7101057.jpg b/datasets/仪表盘/train/images/订单1805853_53_7101057.jpg new file mode 100644 index 0000000..992cdf9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805853_53_7101057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11762e1ea3eb2bac24c1d70f3488d5341aafda84da22840d46512f1bcae6d989 +size 61607 diff --git a/datasets/仪表盘/train/images/订单1805854_53_7101014.jpg b/datasets/仪表盘/train/images/订单1805854_53_7101014.jpg new file mode 100644 index 0000000..0a1a9de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805854_53_7101014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb6b132d047d3dbc98a23eca8c82e8e15f1b2ca2b608393a79d81c5cab74c4d +size 106686 diff --git a/datasets/仪表盘/train/images/订单1805857_53_7100960.jpg b/datasets/仪表盘/train/images/订单1805857_53_7100960.jpg new file mode 100644 index 0000000..88924ce --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805857_53_7100960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a20c31dc1da40b66873d137799bd709421c2bd14043f78480e46606d6dc198 +size 197711 diff --git a/datasets/仪表盘/train/images/订单1805860_53_7101097.jpg b/datasets/仪表盘/train/images/订单1805860_53_7101097.jpg new file mode 100644 index 0000000..c75da62 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805860_53_7101097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1f8f67e54017da35b7d85dfebc18be815219bfcec68c5bab72c4452eb23dbf +size 318817 diff --git a/datasets/仪表盘/train/images/订单1805861_53_7101060.jpg b/datasets/仪表盘/train/images/订单1805861_53_7101060.jpg new file mode 100644 index 0000000..a399d0d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805861_53_7101060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfd15007cbbe1aa381c89171379b82e97c2c406f6c2d7b4062b400b3145f407 +size 88058 diff --git a/datasets/仪表盘/train/images/订单1805862_53_7101207.jpg b/datasets/仪表盘/train/images/订单1805862_53_7101207.jpg new file mode 100644 index 0000000..8f8ce0b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805862_53_7101207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebe9a219e4f1ffbe1e1421e1f841ab58f63919693237a9324730a699fd2b49b +size 331671 diff --git a/datasets/仪表盘/train/images/订单1805864_53_7101104.jpg b/datasets/仪表盘/train/images/订单1805864_53_7101104.jpg new file mode 100644 index 0000000..b7f1d1d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805864_53_7101104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316352bfeb367cd3cfa10cdfdb86341edb7c31ff312536d48121e9f73dd57383 +size 297710 diff --git a/datasets/仪表盘/train/images/订单1805865_53_7101088.jpg b/datasets/仪表盘/train/images/订单1805865_53_7101088.jpg new file mode 100644 index 0000000..fb64053 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805865_53_7101088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc34b8215a68e51ebbf2711d72477c3613ffc01f671dad92110580bed0f9c716 +size 406555 diff --git a/datasets/仪表盘/train/images/订单1805866_53_7101141.jpg b/datasets/仪表盘/train/images/订单1805866_53_7101141.jpg new file mode 100644 index 0000000..f1fb113 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805866_53_7101141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27774e2582f7c0314ad0b896ca4971ec6a726015741b62fc7d5e65e0bec34948 +size 279049 diff --git a/datasets/仪表盘/train/images/订单1805867_53_7101218.jpg b/datasets/仪表盘/train/images/订单1805867_53_7101218.jpg new file mode 100644 index 0000000..3697e55 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805867_53_7101218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5efaf0a449e9ceea9c6b9b09a2e381a64f7ac2e649b2d5b077ee002936b11d +size 880975 diff --git a/datasets/仪表盘/train/images/订单1805869_53_7101154.jpg b/datasets/仪表盘/train/images/订单1805869_53_7101154.jpg new file mode 100644 index 0000000..9a4386c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805869_53_7101154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f13e67dc62d4bca9158495fbd01227de363f7b44ac228f37cd90c0559c3225 +size 118498 diff --git a/datasets/仪表盘/train/images/订单1805870_53_7101201.jpg b/datasets/仪表盘/train/images/订单1805870_53_7101201.jpg new file mode 100644 index 0000000..db61386 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805870_53_7101201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2973aa5291e574fa0029eacbd0b19c0a2cf8adc7755cf5a09aa9b6bd274d3e +size 536076 diff --git a/datasets/仪表盘/train/images/订单1805871_53_7101181.jpg b/datasets/仪表盘/train/images/订单1805871_53_7101181.jpg new file mode 100644 index 0000000..6aea613 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805871_53_7101181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6c074e3063389daf756b602b37af3cee7f35d76436cc4f8b11769d173c8789 +size 258207 diff --git a/datasets/仪表盘/train/images/订单1805872_53_7101185.jpg b/datasets/仪表盘/train/images/订单1805872_53_7101185.jpg new file mode 100644 index 0000000..906c44e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805872_53_7101185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abd751f6601e51ca8904b0d3518857f784d290e072fcc813190576f870965ab +size 253842 diff --git a/datasets/仪表盘/train/images/订单1805873_53_7101255.jpg b/datasets/仪表盘/train/images/订单1805873_53_7101255.jpg new file mode 100644 index 0000000..d1ca2f4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805873_53_7101255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676661fe115a1cd7ef71ff7f02794f1afaee8f064768b00d05e034c9b6eb3288 +size 83112 diff --git a/datasets/仪表盘/train/images/订单1805879_53_7101279.jpg b/datasets/仪表盘/train/images/订单1805879_53_7101279.jpg new file mode 100644 index 0000000..4f3300c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805879_53_7101279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3455c0bbe410f537847a2c5a5a4a3aa14cba5ada7c44812341010ced72e761 +size 67987 diff --git a/datasets/仪表盘/train/images/订单1805883_53_7101314.jpg b/datasets/仪表盘/train/images/订单1805883_53_7101314.jpg new file mode 100644 index 0000000..6d0331b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805883_53_7101314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8903f6d25c8e06bdaef40f131eb644de9850a016dabaef3381bcc1b1e90a2ca +size 221657 diff --git a/datasets/仪表盘/train/images/订单1805886_53_7101415.jpg b/datasets/仪表盘/train/images/订单1805886_53_7101415.jpg new file mode 100644 index 0000000..0cf153b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805886_53_7101415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dffe561fc2b4642d561b224e52f146d19e5b6a00d60d6c34baccf14df088c01 +size 410706 diff --git a/datasets/仪表盘/train/images/订单1805887_53_7101383.jpg b/datasets/仪表盘/train/images/订单1805887_53_7101383.jpg new file mode 100644 index 0000000..3005f69 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805887_53_7101383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8451e19a441aac65e08e25b82b71d9911b0eb503faaeeb531d3a4d5ff8c49151 +size 213332 diff --git a/datasets/仪表盘/train/images/订单1805891_53_7101875.jpg b/datasets/仪表盘/train/images/订单1805891_53_7101875.jpg new file mode 100644 index 0000000..5866534 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805891_53_7101875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb766fb94e985a1d5c81a4f18c2f44c1a3957c904ffca7aaa5f73bbfef500db3 +size 268187 diff --git a/datasets/仪表盘/train/images/订单1805893_53_7101435.jpg b/datasets/仪表盘/train/images/订单1805893_53_7101435.jpg new file mode 100644 index 0000000..a74ac97 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805893_53_7101435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f29cec1263165f4c6585f28785d52153317cf0696ea524e668b880c0120bd3 +size 191044 diff --git a/datasets/仪表盘/train/images/订单1805894_53_7101460.jpg b/datasets/仪表盘/train/images/订单1805894_53_7101460.jpg new file mode 100644 index 0000000..3763900 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805894_53_7101460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1eaf3baad548da351d828984fda160514eea6f7fe442926fc88584f58d2143 +size 419397 diff --git a/datasets/仪表盘/train/images/订单1805895_53_7101458.jpg b/datasets/仪表盘/train/images/订单1805895_53_7101458.jpg new file mode 100644 index 0000000..9e13316 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805895_53_7101458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f24263df9baf258172366d918bc521b4b14885956efed60df47127ab96f601 +size 89555 diff --git a/datasets/仪表盘/train/images/订单1805896_53_7101454.jpg b/datasets/仪表盘/train/images/订单1805896_53_7101454.jpg new file mode 100644 index 0000000..e822441 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805896_53_7101454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d9e0de2bf1a5ca3e5f37ba157309c9042c83363e9671f2932b6f06a543c6c8 +size 181973 diff --git a/datasets/仪表盘/train/images/订单1805897_53_7101623.jpg b/datasets/仪表盘/train/images/订单1805897_53_7101623.jpg new file mode 100644 index 0000000..b2b33ce --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805897_53_7101623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2c9530b69a68926732e372cd61eb17b0311ec97511445f6e8923d86c0e74af +size 1213126 diff --git a/datasets/仪表盘/train/images/订单1805898_53_7101431.jpg b/datasets/仪表盘/train/images/订单1805898_53_7101431.jpg new file mode 100644 index 0000000..59dd3e5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805898_53_7101431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f019633b2223e0166187964cf08d5052ab96a21b9b2c006849acb5b52a08683 +size 239836 diff --git a/datasets/仪表盘/train/images/订单1805902_53_7101474.jpg b/datasets/仪表盘/train/images/订单1805902_53_7101474.jpg new file mode 100644 index 0000000..de0f2ae --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805902_53_7101474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a19bb73309d1070a6cbb90b179aba45f21b8af0906e71eddd422841d768bd6 +size 66394 diff --git a/datasets/仪表盘/train/images/订单1805903_53_7101572.jpg b/datasets/仪表盘/train/images/订单1805903_53_7101572.jpg new file mode 100644 index 0000000..47ec8fb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805903_53_7101572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13d4e05803ed21d0a887db8ad121f06ccc6eefaabbbd391094dc398df769809 +size 158627 diff --git a/datasets/仪表盘/train/images/订单1805904_53_7101526.jpg b/datasets/仪表盘/train/images/订单1805904_53_7101526.jpg new file mode 100644 index 0000000..77a998b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805904_53_7101526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1679bb26fda0103646b44f77df7f8587cd20502cb299044049e76af7f6d093 +size 431450 diff --git a/datasets/仪表盘/train/images/订单1805909_53_7101508.jpg b/datasets/仪表盘/train/images/订单1805909_53_7101508.jpg new file mode 100644 index 0000000..4540087 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805909_53_7101508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5efbfbbae40d2990974c0d5b7837f035e3c3634994fe62b44697455bcd98fd4b +size 243834 diff --git a/datasets/仪表盘/train/images/订单1805910_53_7101609.jpg b/datasets/仪表盘/train/images/订单1805910_53_7101609.jpg new file mode 100644 index 0000000..19d11ee --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805910_53_7101609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94b22dc202e11b06d2910e0505e645897cda11db14d4a72e4abba8a6fbd4ee3 +size 528932 diff --git a/datasets/仪表盘/train/images/订单1805912_53_7101586.jpg b/datasets/仪表盘/train/images/订单1805912_53_7101586.jpg new file mode 100644 index 0000000..53e9d93 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805912_53_7101586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f21d66db1f604d913d9293598eed78f2d9853579287f09923dbeb45ff2ec032 +size 506849 diff --git a/datasets/仪表盘/train/images/订单1805913_53_7101650.jpg b/datasets/仪表盘/train/images/订单1805913_53_7101650.jpg new file mode 100644 index 0000000..56223bd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805913_53_7101650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb09568249ac57ead6e2f18157af648ac8b491e0b8c0e9e84043adb8958462a5 +size 231367 diff --git a/datasets/仪表盘/train/images/订单1805915_53_7101632.jpg b/datasets/仪表盘/train/images/订单1805915_53_7101632.jpg new file mode 100644 index 0000000..c054477 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805915_53_7101632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ff1b0889edd5f817dcbfeb6c22fb801a8d61894c58256602f6bdc1fd19c3e0 +size 248247 diff --git a/datasets/仪表盘/train/images/订单1805917_53_7101707.jpg b/datasets/仪表盘/train/images/订单1805917_53_7101707.jpg new file mode 100644 index 0000000..4299754 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805917_53_7101707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6938a5d04593c782792445520cbd75c50b625b9352423fa572dbef959d792a83 +size 230102 diff --git a/datasets/仪表盘/train/images/订单1805918_53_7101603.jpg b/datasets/仪表盘/train/images/订单1805918_53_7101603.jpg new file mode 100644 index 0000000..66831da --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805918_53_7101603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d93732bbafccd86d3cc791569e3c863119c7da59d12188ff65beb8388a351b +size 158340 diff --git a/datasets/仪表盘/train/images/订单1805920_53_7101667.jpg b/datasets/仪表盘/train/images/订单1805920_53_7101667.jpg new file mode 100644 index 0000000..f3221d7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805920_53_7101667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d0cee1d4baa879b969e06e4c217d57150f22d01a1653b56a3e89b66b9b7122 +size 354369 diff --git a/datasets/仪表盘/train/images/订单1805923_53_7101766.jpg b/datasets/仪表盘/train/images/订单1805923_53_7101766.jpg new file mode 100644 index 0000000..45410a6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805923_53_7101766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07ab8ec54b3487327990cef5902a47924b1a61f03ec5271b1b8eba545977678 +size 281550 diff --git a/datasets/仪表盘/train/images/订单1805924_53_7101691.jpg b/datasets/仪表盘/train/images/订单1805924_53_7101691.jpg new file mode 100644 index 0000000..2a056bd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805924_53_7101691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca67c50c619b038a6486e562e011531f5af95dd1bb1189846fc8d1fb9b00363 +size 526981 diff --git a/datasets/仪表盘/train/images/订单1805926_53_7102364.jpg b/datasets/仪表盘/train/images/订单1805926_53_7102364.jpg new file mode 100644 index 0000000..f71a360 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805926_53_7102364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cbd91f7ed00860e95212c3be715d56fce708c3ae16872530ac6289f458c7b5 +size 326800 diff --git a/datasets/仪表盘/train/images/订单1805927_53_7101737.jpg b/datasets/仪表盘/train/images/订单1805927_53_7101737.jpg new file mode 100644 index 0000000..8c3167c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805927_53_7101737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95124d61a7f24d31b08cfdea02e352f17a398814266ccc3990347625e5f0693 +size 213534 diff --git a/datasets/仪表盘/train/images/订单1805928_53_7101727.jpg b/datasets/仪表盘/train/images/订单1805928_53_7101727.jpg new file mode 100644 index 0000000..dd6216d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805928_53_7101727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07adc6a0bc6ce4fcd485b1ef61473e96fcd1ae3c0723a7645241ff61235b446 +size 190401 diff --git a/datasets/仪表盘/train/images/订单1805929_53_7101751.jpg b/datasets/仪表盘/train/images/订单1805929_53_7101751.jpg new file mode 100644 index 0000000..cfa9901 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805929_53_7101751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:384b5b3b8f9938f1da86388b21a9b3d6b369dedb0d3dadc6373d197ef455c956 +size 105309 diff --git a/datasets/仪表盘/train/images/订单1805930_53_7101758.jpg b/datasets/仪表盘/train/images/订单1805930_53_7101758.jpg new file mode 100644 index 0000000..7c97791 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805930_53_7101758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d7acf163f836d0b31b41de477279a422e1e4d7a507bafc1a9df19818c60036 +size 298831 diff --git a/datasets/仪表盘/train/images/订单1805931_53_7101778.jpg b/datasets/仪表盘/train/images/订单1805931_53_7101778.jpg new file mode 100644 index 0000000..c159e80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805931_53_7101778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4637c09f457fac8912902f5bfb88aae11332224b39618824f5d8fac2448c3b1 +size 198149 diff --git a/datasets/仪表盘/train/images/订单1805932_53_7101786.jpg b/datasets/仪表盘/train/images/订单1805932_53_7101786.jpg new file mode 100644 index 0000000..d37e440 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805932_53_7101786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0923f20f9a9a7843d06ea39fdf3aebbe36d2f02c7039b2d75fa2fcb23decdc0 +size 247500 diff --git a/datasets/仪表盘/train/images/订单1805933_53_7101803.jpg b/datasets/仪表盘/train/images/订单1805933_53_7101803.jpg new file mode 100644 index 0000000..5c90cc0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805933_53_7101803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3171e33f3c6a621f0c0f265bea41326600a2be5ae7bf2d40b0dd01caf80420c +size 263730 diff --git a/datasets/仪表盘/train/images/订单1805934_53_7101822.jpg b/datasets/仪表盘/train/images/订单1805934_53_7101822.jpg new file mode 100644 index 0000000..e479caa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805934_53_7101822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec5f429b8329551fb36bf1b3f9bdd51fffaeff5bfe14d0c85978f9062e5b17c +size 87075 diff --git a/datasets/仪表盘/train/images/订单1805936_53_7101817.jpg b/datasets/仪表盘/train/images/订单1805936_53_7101817.jpg new file mode 100644 index 0000000..1a8b488 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805936_53_7101817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ee8be5eec651f91c4ea00b9eb9b3ee814481b5ac7c91b26886bbbc92ee419a +size 78461 diff --git a/datasets/仪表盘/train/images/订单1805937_53_7101858.jpg b/datasets/仪表盘/train/images/订单1805937_53_7101858.jpg new file mode 100644 index 0000000..470dcd7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805937_53_7101858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405585837e1f691651954025bb9af80d47b7aa8a04905c8ec490a51ac6c5a7cd +size 263671 diff --git a/datasets/仪表盘/train/images/订单1805939_53_7101970.jpg b/datasets/仪表盘/train/images/订单1805939_53_7101970.jpg new file mode 100644 index 0000000..61e93f0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805939_53_7101970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea164acc4f028dc7dd9ecab632d6b4098bcd193d58ac59369445528113f3c509 +size 566975 diff --git a/datasets/仪表盘/train/images/订单1805940_53_7101887.jpg b/datasets/仪表盘/train/images/订单1805940_53_7101887.jpg new file mode 100644 index 0000000..6082463 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805940_53_7101887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d8f09aafda60ae77ce2a20a032f06082c6463db89dae65480527022765f070 +size 86336 diff --git a/datasets/仪表盘/train/images/订单1805941_53_7101898.jpg b/datasets/仪表盘/train/images/订单1805941_53_7101898.jpg new file mode 100644 index 0000000..739f138 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805941_53_7101898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50f76379a9c225d5ef5d005fdc253516cb5322405e1de2ee4e864f7285dd70d +size 238741 diff --git a/datasets/仪表盘/train/images/订单1805942_53_7101906.jpg b/datasets/仪表盘/train/images/订单1805942_53_7101906.jpg new file mode 100644 index 0000000..d7652e6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805942_53_7101906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0fc33cae88f22d688c4910567b90648902b31e8d23e5400bade3fca8bd3ab5 +size 443339 diff --git a/datasets/仪表盘/train/images/订单1805943_53_7101916.jpg b/datasets/仪表盘/train/images/订单1805943_53_7101916.jpg new file mode 100644 index 0000000..03e17c3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805943_53_7101916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6b0c0f7dcc28248a3fee8a3eb5e70b6f3a6458cec4d1e432ab2cb24cf79023 +size 273588 diff --git a/datasets/仪表盘/train/images/订单1805944_53_7101927.jpg b/datasets/仪表盘/train/images/订单1805944_53_7101927.jpg new file mode 100644 index 0000000..1d87d25 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805944_53_7101927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b99f7fb97ce7b31eedc23014cfcad235a0849968dbc10c76ee18a2aad09be7 +size 470379 diff --git a/datasets/仪表盘/train/images/订单1805947_53_7101938.jpg b/datasets/仪表盘/train/images/订单1805947_53_7101938.jpg new file mode 100644 index 0000000..da40e05 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805947_53_7101938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9dd5646d5e5eddc581b23211eab215b9487860a1e5f0a14acf9ba1b3ae8ce4 +size 409236 diff --git a/datasets/仪表盘/train/images/订单1805948_53_7101957.jpg b/datasets/仪表盘/train/images/订单1805948_53_7101957.jpg new file mode 100644 index 0000000..635e2e4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805948_53_7101957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da20befa865cf57ae48cdc0680f4439adca212016846987f7da3bcde4bedc56e +size 349172 diff --git a/datasets/仪表盘/train/images/订单1805957_53_7102003.jpg b/datasets/仪表盘/train/images/订单1805957_53_7102003.jpg new file mode 100644 index 0000000..4cadf87 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805957_53_7102003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c870c9ddf448fd81663cb558cecdc492fbb84062e4f0fc87926afc0bcfc6edd1 +size 159397 diff --git a/datasets/仪表盘/train/images/订单1805960_53_7102031.jpg b/datasets/仪表盘/train/images/订单1805960_53_7102031.jpg new file mode 100644 index 0000000..efae0a1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805960_53_7102031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d3bdb8e55a0da7cf7dcde7c513438f51d88b490673164506941ca35ab71020 +size 274719 diff --git a/datasets/仪表盘/train/images/订单1805963_53_7102061.jpg b/datasets/仪表盘/train/images/订单1805963_53_7102061.jpg new file mode 100644 index 0000000..b7d2dbe --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805963_53_7102061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775eba201efe0de5bfbbb32a096732c24b3304a8e83ee3550041ced9576e8853 +size 138483 diff --git a/datasets/仪表盘/train/images/订单1805964_53_7102071.jpg b/datasets/仪表盘/train/images/订单1805964_53_7102071.jpg new file mode 100644 index 0000000..42ecab4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805964_53_7102071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018f0023a25a6242f55c108c68f4468fe11fc6f8d0a84206e9a19d22868a7eae +size 342685 diff --git a/datasets/仪表盘/train/images/订单1805965_53_7102081.jpg b/datasets/仪表盘/train/images/订单1805965_53_7102081.jpg new file mode 100644 index 0000000..1d5e88f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805965_53_7102081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13fab1dbe2b69a2b37ecd45314985981e70fbb59cfa8f5eebb26227ee117e70 +size 106165 diff --git a/datasets/仪表盘/train/images/订单1805967_53_7102106.jpg b/datasets/仪表盘/train/images/订单1805967_53_7102106.jpg new file mode 100644 index 0000000..61b790d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805967_53_7102106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5c63c35ef602133ba8d1160155a67e13fc2c98130f00f0f7e685591010bd6b +size 386874 diff --git a/datasets/仪表盘/train/images/订单1805968_53_7102101.jpg b/datasets/仪表盘/train/images/订单1805968_53_7102101.jpg new file mode 100644 index 0000000..716af0c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805968_53_7102101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26bafd6aaa524e42eace784fe7136110015bde2a75e7ffdbbf5e4bc71548b550 +size 81050 diff --git a/datasets/仪表盘/train/images/订单1805969_53_7102107.jpg b/datasets/仪表盘/train/images/订单1805969_53_7102107.jpg new file mode 100644 index 0000000..368cb0d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805969_53_7102107.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f5f870c4056d37599fadba9942c753db5087165ff877a422f592afac4030f7 +size 334099 diff --git a/datasets/仪表盘/train/images/订单1805970_53_7102151.jpg b/datasets/仪表盘/train/images/订单1805970_53_7102151.jpg new file mode 100644 index 0000000..ea3ca1e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805970_53_7102151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe986d452d18303d810f65c6af59809f6e4ec0666f140884d1d1615e7b4599ae +size 236692 diff --git a/datasets/仪表盘/train/images/订单1805971_53_7102158.jpg b/datasets/仪表盘/train/images/订单1805971_53_7102158.jpg new file mode 100644 index 0000000..51c4c23 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805971_53_7102158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f917188a7c085881e43d191c9be7edff0715da9f6ea11693452f19dc89ca6571 +size 66835 diff --git a/datasets/仪表盘/train/images/订单1805972_53_7102128.jpg b/datasets/仪表盘/train/images/订单1805972_53_7102128.jpg new file mode 100644 index 0000000..d29432f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805972_53_7102128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f5b43dd2f97c1389adfd7117f508574ff0d8571c3983e60b8cffa41e578059 +size 77714 diff --git a/datasets/仪表盘/train/images/订单1805973_53_7102201.jpg b/datasets/仪表盘/train/images/订单1805973_53_7102201.jpg new file mode 100644 index 0000000..3edc1c7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805973_53_7102201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23f2ab971ccf721fd7f495d792e3648cdd018ce73b3fe425a6c395cdb50a4ba +size 288358 diff --git a/datasets/仪表盘/train/images/订单1805974_53_7102279.jpg b/datasets/仪表盘/train/images/订单1805974_53_7102279.jpg new file mode 100644 index 0000000..5a8882b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805974_53_7102279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d21eac67914c1fd0a89a0ea0d578fc343e74ecf5b82ac07aa6ad82848b453a8 +size 370737 diff --git a/datasets/仪表盘/train/images/订单1805975_53_7102174.jpg b/datasets/仪表盘/train/images/订单1805975_53_7102174.jpg new file mode 100644 index 0000000..f140c1a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805975_53_7102174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fdf76faa101d7838ff5bd519a56710e63dedc3bbbbc768c230fec5c4a0959d +size 344250 diff --git a/datasets/仪表盘/train/images/订单1805976_53_7102156.jpg b/datasets/仪表盘/train/images/订单1805976_53_7102156.jpg new file mode 100644 index 0000000..f316e9e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805976_53_7102156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8b9d86cd1bb1e397c85729eba097c901fd304460188108f23daf782e95355d +size 152119 diff --git a/datasets/仪表盘/train/images/订单1805979_53_7102189.jpg b/datasets/仪表盘/train/images/订单1805979_53_7102189.jpg new file mode 100644 index 0000000..c05b631 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805979_53_7102189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8398461cb4cc888633b94d49abde1ae587132c5912a89574916513c6c6ce03 +size 246217 diff --git a/datasets/仪表盘/train/images/订单1805981_53_7102210.jpg b/datasets/仪表盘/train/images/订单1805981_53_7102210.jpg new file mode 100644 index 0000000..4f4d58f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805981_53_7102210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dabc66ebd307f92967dc4e09b0883038dd35f403019f14ddf74abf9b07dd87 +size 414429 diff --git a/datasets/仪表盘/train/images/订单1805982_53_7102250.jpg b/datasets/仪表盘/train/images/订单1805982_53_7102250.jpg new file mode 100644 index 0000000..6e8c1ce --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805982_53_7102250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534f712da846f49022367d1cfd44c997691155f182388852fb381a40a99bdad2 +size 564992 diff --git a/datasets/仪表盘/train/images/订单1805984_53_7102233.jpg b/datasets/仪表盘/train/images/订单1805984_53_7102233.jpg new file mode 100644 index 0000000..6f03d15 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805984_53_7102233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb68e8c1d997e27997fa7cea8cca3dfee7ce7652a3b469830d868608e43c652 +size 264590 diff --git a/datasets/仪表盘/train/images/订单1805985_53_7102215.jpg b/datasets/仪表盘/train/images/订单1805985_53_7102215.jpg new file mode 100644 index 0000000..40f5275 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805985_53_7102215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccd12b3cf2942b37a4e4e57a3edb0e21664a6deee97c7c45dc8edc0002ea135 +size 423983 diff --git a/datasets/仪表盘/train/images/订单1805988_53_7102277.jpg b/datasets/仪表盘/train/images/订单1805988_53_7102277.jpg new file mode 100644 index 0000000..19ab55d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805988_53_7102277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebb67cf5c50a59722c6d1724c98cf0eccbea4751221ee68381589327f0a50a4 +size 76853 diff --git a/datasets/仪表盘/train/images/订单1805989_53_7102263.jpg b/datasets/仪表盘/train/images/订单1805989_53_7102263.jpg new file mode 100644 index 0000000..d4b3365 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805989_53_7102263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8943bbf71ec7c064fca8a9c996e1c27c6b56b946befe14f003b754488797c753 +size 562827 diff --git a/datasets/仪表盘/train/images/订单1805990_53_7102371.jpg b/datasets/仪表盘/train/images/订单1805990_53_7102371.jpg new file mode 100644 index 0000000..d0d8124 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805990_53_7102371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a663d0bc605a337610143fdff4cde77f9cd3e7b0ac4ae67c3c609a9ed5e1ac +size 385401 diff --git a/datasets/仪表盘/train/images/订单1805993_53_7102303.jpg b/datasets/仪表盘/train/images/订单1805993_53_7102303.jpg new file mode 100644 index 0000000..045a7e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805993_53_7102303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a361761d86d74f5bdfc8880a13b13b34d4c05b6cbc0e60675fa29621ef98121 +size 173542 diff --git a/datasets/仪表盘/train/images/订单1805996_53_7102350.jpg b/datasets/仪表盘/train/images/订单1805996_53_7102350.jpg new file mode 100644 index 0000000..6d1509f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805996_53_7102350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee38623f661b0874a53c4713b9673edd0e92a37f11e17013afd9013905b06036 +size 65652 diff --git a/datasets/仪表盘/train/images/订单1805997_53_7102401.jpg b/datasets/仪表盘/train/images/订单1805997_53_7102401.jpg new file mode 100644 index 0000000..002bf75 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805997_53_7102401.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdf3386253e028a82463e83f06069cfc856d81a54be4def66997e61ba849ab8 +size 285255 diff --git a/datasets/仪表盘/train/images/订单1805998_53_7102392.jpg b/datasets/仪表盘/train/images/订单1805998_53_7102392.jpg new file mode 100644 index 0000000..f01a9e9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1805998_53_7102392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9672990ab80dcf953c8d884cfb9f38af8af0149f6e80c6027d52f44e7bb567a0 +size 305192 diff --git a/datasets/仪表盘/train/images/订单1806000_53_7102334.jpg b/datasets/仪表盘/train/images/订单1806000_53_7102334.jpg new file mode 100644 index 0000000..9f36fc6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806000_53_7102334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb6a3a20f1dcb46d1546f6bceab059fc32305250248ad31cc3765ce67a13e81 +size 190340 diff --git a/datasets/仪表盘/train/images/订单1806003_53_7102409.jpg b/datasets/仪表盘/train/images/订单1806003_53_7102409.jpg new file mode 100644 index 0000000..e595596 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806003_53_7102409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ebcc50224b3e2850eb1cacb3291f088c2ed3cdfa4ab951183af077ba07f78c +size 307017 diff --git a/datasets/仪表盘/train/images/订单1806006_53_7102344.jpg b/datasets/仪表盘/train/images/订单1806006_53_7102344.jpg new file mode 100644 index 0000000..a1615f1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806006_53_7102344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a50a70148488fcb6f94b69607d09682ecd5afa77fd3e6a0503ebf6c00e1eb34 +size 567414 diff --git a/datasets/仪表盘/train/images/订单1806008_53_7102433.jpg b/datasets/仪表盘/train/images/订单1806008_53_7102433.jpg new file mode 100644 index 0000000..b3b2418 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806008_53_7102433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b4fa4ce7ade42704a5681f5364b189b3abdab78df36610a2a43f615761791e +size 250175 diff --git a/datasets/仪表盘/train/images/订单1806009_53_7102488.jpg b/datasets/仪表盘/train/images/订单1806009_53_7102488.jpg new file mode 100644 index 0000000..8aecc0a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806009_53_7102488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdebfbd9e037272eb3169318ee3f8bcd3d5f94d7e0a2ff5d6e2c8b86192042db +size 201437 diff --git a/datasets/仪表盘/train/images/订单1806010_53_7102480.jpg b/datasets/仪表盘/train/images/订单1806010_53_7102480.jpg new file mode 100644 index 0000000..ea483ef --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806010_53_7102480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057870060ea469a92dd911b45b5fc6155f56011af2dd7d92be52ed7de8bd8f49 +size 107450 diff --git a/datasets/仪表盘/train/images/订单1806011_53_7102483.jpg b/datasets/仪表盘/train/images/订单1806011_53_7102483.jpg new file mode 100644 index 0000000..35e75b5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806011_53_7102483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0098b8915f8e2053dee6eb1edadd31cad786f033c85a3a5e04265c0863077276 +size 258420 diff --git a/datasets/仪表盘/train/images/订单1806014_53_7102526.jpg b/datasets/仪表盘/train/images/订单1806014_53_7102526.jpg new file mode 100644 index 0000000..e6372b4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806014_53_7102526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc406aca68de1106ffc076a9b8fbf02b0099f4becd9fa5e218b8f0c1ecbda2cd +size 388894 diff --git a/datasets/仪表盘/train/images/订单1806018_53_7102523.jpg b/datasets/仪表盘/train/images/订单1806018_53_7102523.jpg new file mode 100644 index 0000000..4f7cdef --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806018_53_7102523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bf5ed9194ade900e007a2e119f900d567be9952010bf00d9abd47b55fd5b32 +size 351645 diff --git a/datasets/仪表盘/train/images/订单1806019_53_7102553.jpg b/datasets/仪表盘/train/images/订单1806019_53_7102553.jpg new file mode 100644 index 0000000..4821cce --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806019_53_7102553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1e7638f7a8b810b1ffb449ae8614370b500ee3d82e2b548052b3dffec12694 +size 154863 diff --git a/datasets/仪表盘/train/images/订单1806020_53_7102504.jpg b/datasets/仪表盘/train/images/订单1806020_53_7102504.jpg new file mode 100644 index 0000000..18ca5bc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806020_53_7102504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b19e7fe713c91f95849795ceda06e4b4abf69ba2b6d8cd43264d73cd196c27f +size 317674 diff --git a/datasets/仪表盘/train/images/订单1806022_53_7102594.jpg b/datasets/仪表盘/train/images/订单1806022_53_7102594.jpg new file mode 100644 index 0000000..3780015 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806022_53_7102594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd7603af20c6ffb8c6b085171945b57471cc15aacddf01e66cceff743a9f106 +size 92397 diff --git a/datasets/仪表盘/train/images/订单1806029_53_7102568.jpg b/datasets/仪表盘/train/images/订单1806029_53_7102568.jpg new file mode 100644 index 0000000..1c061c2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806029_53_7102568.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052f9f1c6c6fed497c5ae8201aac095c773e8c0d9fbbf84b1513dde366a65cad +size 237423 diff --git a/datasets/仪表盘/train/images/订单1806031_53_7102695.jpg b/datasets/仪表盘/train/images/订单1806031_53_7102695.jpg new file mode 100644 index 0000000..945e176 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806031_53_7102695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522c0ac30fbff5a760b56aeeb91759c64ffc7fa386944a350bd42b3ebe10b9a1 +size 360777 diff --git a/datasets/仪表盘/train/images/订单1806033_53_7102624.jpg b/datasets/仪表盘/train/images/订单1806033_53_7102624.jpg new file mode 100644 index 0000000..1c10049 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806033_53_7102624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643cc463cf85a24bd247cdeb85a2aa6262d2233ba47c063ff50e0d366600f93d +size 74061 diff --git a/datasets/仪表盘/train/images/订单1806036_53_7102644.jpg b/datasets/仪表盘/train/images/订单1806036_53_7102644.jpg new file mode 100644 index 0000000..a3eec91 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806036_53_7102644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897190751c989078420af714722de6ab635324ca2832ec4f39c353e7ff08212a +size 242532 diff --git a/datasets/仪表盘/train/images/订单1806040_53_7102683.jpg b/datasets/仪表盘/train/images/订单1806040_53_7102683.jpg new file mode 100644 index 0000000..acab3de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806040_53_7102683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b602a4e6f700d8bea8090cac33abf7666ab74b6970c37e550563a1c9fa5d44e +size 115691 diff --git a/datasets/仪表盘/train/images/订单1806042_53_7102723.jpg b/datasets/仪表盘/train/images/订单1806042_53_7102723.jpg new file mode 100644 index 0000000..bbc8c81 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806042_53_7102723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d4dda3cbb7ffc2995f9a1f9279bd4336197120f596021c4d80eee9fccf32e3 +size 224899 diff --git a/datasets/仪表盘/train/images/订单1806043_53_7102864.jpg b/datasets/仪表盘/train/images/订单1806043_53_7102864.jpg new file mode 100644 index 0000000..bb89943 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806043_53_7102864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d8267fb3237dbb32231db74b975b842da9c9a5a951a5ee6f3e097fb27652fc +size 368079 diff --git a/datasets/仪表盘/train/images/订单1806044_53_7102657.jpg b/datasets/仪表盘/train/images/订单1806044_53_7102657.jpg new file mode 100644 index 0000000..04cda41 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806044_53_7102657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0388315aa11f449c88e6839ac3d1211aad62a483e3920b6b2867d37e2c2db729 +size 245075 diff --git a/datasets/仪表盘/train/images/订单1806050_53_7102696.jpg b/datasets/仪表盘/train/images/订单1806050_53_7102696.jpg new file mode 100644 index 0000000..e56ac7c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806050_53_7102696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbfaa44ac7ea1ef954a86ca52fd06fc85fa710e4378dd8968ded3433b0884c5 +size 123501 diff --git a/datasets/仪表盘/train/images/订单1806053_53_7102721.jpg b/datasets/仪表盘/train/images/订单1806053_53_7102721.jpg new file mode 100644 index 0000000..45fe575 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806053_53_7102721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f414d3f3c951f05c127ae36f38f8a523a47d9f3c5b192b30469f0ef32b840ff7 +size 180002 diff --git a/datasets/仪表盘/train/images/订单1806056_53_7102886.jpg b/datasets/仪表盘/train/images/订单1806056_53_7102886.jpg new file mode 100644 index 0000000..d0bbf1a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806056_53_7102886.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d182141addaae39c25276768a1febf1f6c73c43589869b07fb09fc61a5c1271 +size 335357 diff --git a/datasets/仪表盘/train/images/订单1806058_53_7102798.jpg b/datasets/仪表盘/train/images/订单1806058_53_7102798.jpg new file mode 100644 index 0000000..8576a33 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806058_53_7102798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b95f479cc70df3776c4dd5c50ef5b903e8ff583d3a0ca688d14c06327bb6bf6 +size 216057 diff --git a/datasets/仪表盘/train/images/订单1806059_53_7102831.jpg b/datasets/仪表盘/train/images/订单1806059_53_7102831.jpg new file mode 100644 index 0000000..499ecf7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806059_53_7102831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160a1cd1945c2e6cbbd20959ef28975fbdb33c8b2a3485e2f250eda43099472c +size 79429 diff --git a/datasets/仪表盘/train/images/订单1806060_53_7102803.jpg b/datasets/仪表盘/train/images/订单1806060_53_7102803.jpg new file mode 100644 index 0000000..030f696 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806060_53_7102803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b50613d6d4a79aedceb01ff5bd38428cf7de22d16ea4bc49f82ea99c48e38f +size 223068 diff --git a/datasets/仪表盘/train/images/订单1806062_53_7103015.jpg b/datasets/仪表盘/train/images/订单1806062_53_7103015.jpg new file mode 100644 index 0000000..06e49a7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806062_53_7103015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc7964f7c464c5f78580926dd0d875dc7c765771cd3d7257ee90f2deac78ba6 +size 256092 diff --git a/datasets/仪表盘/train/images/订单1806064_53_7102906.jpg b/datasets/仪表盘/train/images/订单1806064_53_7102906.jpg new file mode 100644 index 0000000..5a5f2ff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806064_53_7102906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7fdc3bfa5106da1e148baa89207d3f89110e678a9362c3fc51c95ea88b2ff21 +size 236392 diff --git a/datasets/仪表盘/train/images/订单1806067_53_7103046.jpg b/datasets/仪表盘/train/images/订单1806067_53_7103046.jpg new file mode 100644 index 0000000..bfd30c2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806067_53_7103046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e153ef131d680e503bc758b0ed6c07ddd926b0d40719f8d1f46103b502cee646 +size 363148 diff --git a/datasets/仪表盘/train/images/订单1806068_53_7102972.jpg b/datasets/仪表盘/train/images/订单1806068_53_7102972.jpg new file mode 100644 index 0000000..896540c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806068_53_7102972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d6aca37d851576646b5717988ba91e6ac06c6e95a575d50d032d793ed28c71 +size 92360 diff --git a/datasets/仪表盘/train/images/订单1806070_53_7102872.jpg b/datasets/仪表盘/train/images/订单1806070_53_7102872.jpg new file mode 100644 index 0000000..78a9298 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806070_53_7102872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573d8b8bd5304e9b02c903603d82af79435f0d1fb54f80b786983764513a3983 +size 272612 diff --git a/datasets/仪表盘/train/images/订单1806071_53_7102918.jpg b/datasets/仪表盘/train/images/订单1806071_53_7102918.jpg new file mode 100644 index 0000000..17532ef --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806071_53_7102918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9d7628c1beb5f7be6233f95323fc6cf6414e94b1c04289d80270ccf55f77af +size 351829 diff --git a/datasets/仪表盘/train/images/订单1806072_53_7102950.jpg b/datasets/仪表盘/train/images/订单1806072_53_7102950.jpg new file mode 100644 index 0000000..c2d3fbd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806072_53_7102950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56527a509da45eacf675112b8148b2aa14a94fb048474bcb491f74b44142c72 +size 257494 diff --git a/datasets/仪表盘/train/images/订单1806073_53_7102984.jpg b/datasets/仪表盘/train/images/订单1806073_53_7102984.jpg new file mode 100644 index 0000000..08f931e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806073_53_7102984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4cb6f6458592db507517fa5e5285ac6aa27f3bc314d949d7e4091f48a63537 +size 280940 diff --git a/datasets/仪表盘/train/images/订单1806074_53_7102985.jpg b/datasets/仪表盘/train/images/订单1806074_53_7102985.jpg new file mode 100644 index 0000000..6197f3e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806074_53_7102985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a13268e7e1544c45e010d0910096b2a32f7312bbf65834b1ef761a464ad03b +size 340701 diff --git a/datasets/仪表盘/train/images/订单1806078_53_7103026.jpg b/datasets/仪表盘/train/images/订单1806078_53_7103026.jpg new file mode 100644 index 0000000..661f82f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806078_53_7103026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06350b3a1fa1e54f7fd92e0bd516900981d78ae6846ab98c84240e259d8e33f3 +size 553873 diff --git a/datasets/仪表盘/train/images/订单1806079_53_7102998.jpg b/datasets/仪表盘/train/images/订单1806079_53_7102998.jpg new file mode 100644 index 0000000..627c6dd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806079_53_7102998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e75576c856661d4f0b6a73e964807ad189a6a6daf89f1e76cee4dba2f576fa1 +size 324716 diff --git a/datasets/仪表盘/train/images/订单1806081_53_7102929.jpg b/datasets/仪表盘/train/images/订单1806081_53_7102929.jpg new file mode 100644 index 0000000..0598606 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806081_53_7102929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5830d04df573c1ffc8b1048758a7ab72d344aaaf872b0f6b7afd11d725272af8 +size 184194 diff --git a/datasets/仪表盘/train/images/订单1806083_53_7102945.jpg b/datasets/仪表盘/train/images/订单1806083_53_7102945.jpg new file mode 100644 index 0000000..846930f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806083_53_7102945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2b814a4fd04f40c42c6e2036a34494ef26b51c6b30c62886d171f05e80b5bc +size 337853 diff --git a/datasets/仪表盘/train/images/订单1806085_53_7103035.jpg b/datasets/仪表盘/train/images/订单1806085_53_7103035.jpg new file mode 100644 index 0000000..a28197f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806085_53_7103035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37032b8b1dd158e0cb590f3174c7e3148012ad8d43bdc99267c7ba95d952847 +size 244189 diff --git a/datasets/仪表盘/train/images/订单1806088_53_7103100.jpg b/datasets/仪表盘/train/images/订单1806088_53_7103100.jpg new file mode 100644 index 0000000..e74bf87 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806088_53_7103100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a8c6e505f3a573c27842050ef9be190aee66bc7e559b728754cb7ed0d12429 +size 93592 diff --git a/datasets/仪表盘/train/images/订单1806091_53_7103117.jpg b/datasets/仪表盘/train/images/订单1806091_53_7103117.jpg new file mode 100644 index 0000000..248257c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806091_53_7103117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f40e16a64fd6c4c8a8c8c1adaeabfb265a4345876165e3944f813e0bd9fa6f3 +size 84746 diff --git a/datasets/仪表盘/train/images/订单1806093_53_7103249.jpg b/datasets/仪表盘/train/images/订单1806093_53_7103249.jpg new file mode 100644 index 0000000..7e070d8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806093_53_7103249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea4e452aa8c91877a7a221bc23d7c6b81365a9f0774f2e3f9c6eea46a210cca +size 182389 diff --git a/datasets/仪表盘/train/images/订单1806096_53_7103163.jpg b/datasets/仪表盘/train/images/订单1806096_53_7103163.jpg new file mode 100644 index 0000000..99a0c9e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806096_53_7103163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d755ff66ea37c136f0211a5987898e39ec327c3b58b38d71d56f28c065f31ae +size 341185 diff --git a/datasets/仪表盘/train/images/订单1806099_53_7103237.jpg b/datasets/仪表盘/train/images/订单1806099_53_7103237.jpg new file mode 100644 index 0000000..119335f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806099_53_7103237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e044cf64fb3ab71f9345541f580efef83e217edac41ad6eefd4e5b5371767ab3 +size 228672 diff --git a/datasets/仪表盘/train/images/订单1806100_53_7103189.jpg b/datasets/仪表盘/train/images/订单1806100_53_7103189.jpg new file mode 100644 index 0000000..3aad126 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806100_53_7103189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2920fb17533a018c2c53733725e392c66c414570c0913d643d8a33883b6aa800 +size 185605 diff --git a/datasets/仪表盘/train/images/订单1806101_53_7103274.jpg b/datasets/仪表盘/train/images/订单1806101_53_7103274.jpg new file mode 100644 index 0000000..82c8104 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806101_53_7103274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb9893fff11079fe252d4ea0fa2c3e8d8e8a46e94c0d564640383cdd2e5baa1 +size 328870 diff --git a/datasets/仪表盘/train/images/订单1806105_53_7103230.jpg b/datasets/仪表盘/train/images/订单1806105_53_7103230.jpg new file mode 100644 index 0000000..3a82182 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806105_53_7103230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0a739cdca37d8e8693c590889073321e5fbb7384068af298a83a4ffd64bad2 +size 511236 diff --git a/datasets/仪表盘/train/images/订单1806106_53_7103304.jpg b/datasets/仪表盘/train/images/订单1806106_53_7103304.jpg new file mode 100644 index 0000000..e2dc6b9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806106_53_7103304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253102ac6ee42665f6c03a2b2134e3842212bcfd69d25065c5c5b1785b8873bb +size 117582 diff --git a/datasets/仪表盘/train/images/订单1806107_53_7103324.jpg b/datasets/仪表盘/train/images/订单1806107_53_7103324.jpg new file mode 100644 index 0000000..a161093 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806107_53_7103324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab8b1824706ab5033cd93d14abc8a0979472794b858200b862bad00d0bd03fb +size 247791 diff --git a/datasets/仪表盘/train/images/订单1806110_53_7103320.jpg b/datasets/仪表盘/train/images/订单1806110_53_7103320.jpg new file mode 100644 index 0000000..211d367 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806110_53_7103320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f078fb7d707bf517cd67990e64475cfbca8f68aa22fd08f70638235a18ca1f4 +size 234717 diff --git a/datasets/仪表盘/train/images/订单1806112_53_7103396.jpg b/datasets/仪表盘/train/images/订单1806112_53_7103396.jpg new file mode 100644 index 0000000..10066ed --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806112_53_7103396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0663825afa3cb54bcd0e4bbb8f88b93d0666cd21e6c9ab414a2ca3f5c6869b +size 365473 diff --git a/datasets/仪表盘/train/images/订单1806113_53_7103419.jpg b/datasets/仪表盘/train/images/订单1806113_53_7103419.jpg new file mode 100644 index 0000000..fd10649 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806113_53_7103419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2286d4124646418f7f2f87fdd0172eb48b9e7faff7a397f16bc5a4e8f2d2adbd +size 119372 diff --git a/datasets/仪表盘/train/images/订单1806114_53_7103371.jpg b/datasets/仪表盘/train/images/订单1806114_53_7103371.jpg new file mode 100644 index 0000000..2b98700 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806114_53_7103371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b4d87bc79aa161a25aed5f34d39fb063ea8b8eeb01eac484507d8a46056f67 +size 280843 diff --git a/datasets/仪表盘/train/images/订单1806115_53_7103368.jpg b/datasets/仪表盘/train/images/订单1806115_53_7103368.jpg new file mode 100644 index 0000000..829d00f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806115_53_7103368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d682a4f2adc707c51a6973d332d0e069eb57ce3558df1f5ad2074986cdb5ea35 +size 333263 diff --git a/datasets/仪表盘/train/images/订单1806116_53_7103436.jpg b/datasets/仪表盘/train/images/订单1806116_53_7103436.jpg new file mode 100644 index 0000000..e4223e0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806116_53_7103436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335c9450ae664dec7dbd3ffb310d97e65ae7ffb95000d4a8dc4d97abbe287a1f +size 100104 diff --git a/datasets/仪表盘/train/images/订单1806117_53_7103449.jpg b/datasets/仪表盘/train/images/订单1806117_53_7103449.jpg new file mode 100644 index 0000000..68e565d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806117_53_7103449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a458de2bb59af6d91ca95a1bc4e3eb7150a7e023891ad590fab6cd39b7ade69c +size 74881 diff --git a/datasets/仪表盘/train/images/订单1806118_53_7103406.jpg b/datasets/仪表盘/train/images/订单1806118_53_7103406.jpg new file mode 100644 index 0000000..4276000 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806118_53_7103406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416dd2f468d3caf1e09613d0a5896d7ea10318b0a3ace9c7727064ef8f831632 +size 249517 diff --git a/datasets/仪表盘/train/images/订单1806120_53_7103450.jpg b/datasets/仪表盘/train/images/订单1806120_53_7103450.jpg new file mode 100644 index 0000000..9b7c127 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806120_53_7103450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b31986f049cc4c980d2ffebb936e7258474908fb03bbe6ae4e6cd06318c1e75 +size 306068 diff --git a/datasets/仪表盘/train/images/订单1806123_53_7103541.jpg b/datasets/仪表盘/train/images/订单1806123_53_7103541.jpg new file mode 100644 index 0000000..8c5dd11 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806123_53_7103541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b01ef34b05ff7cba293bbfd1e909b26d805977c9f37c2d45f4998f526bb6dc +size 228545 diff --git a/datasets/仪表盘/train/images/订单1806125_53_7103462.jpg b/datasets/仪表盘/train/images/订单1806125_53_7103462.jpg new file mode 100644 index 0000000..60c8f88 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806125_53_7103462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de19b85d6ae6ea1d253ce655fe7de5d5a049a39af9b2f492cee99d5752db1b83 +size 323155 diff --git a/datasets/仪表盘/train/images/订单1806126_53_7103477.jpg b/datasets/仪表盘/train/images/订单1806126_53_7103477.jpg new file mode 100644 index 0000000..a0e9ee5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806126_53_7103477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2ee639756afcfc27bb954ca2376c1f1505fb2fe8aba9b86d83903fd9e78e83 +size 269277 diff --git a/datasets/仪表盘/train/images/订单1806128_53_7103578.jpg b/datasets/仪表盘/train/images/订单1806128_53_7103578.jpg new file mode 100644 index 0000000..087e0db --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806128_53_7103578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6085aee10acd0bab506668f085475045527d570df3286f856a12582ee4d36518 +size 549081 diff --git a/datasets/仪表盘/train/images/订单1806130_53_7103510.jpg b/datasets/仪表盘/train/images/订单1806130_53_7103510.jpg new file mode 100644 index 0000000..0fef100 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806130_53_7103510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153be663deebb036531706ccda6fd31862d3388f7cb95bd143eea9ac709a79b0 +size 519994 diff --git a/datasets/仪表盘/train/images/订单1806131_53_7103554.jpg b/datasets/仪表盘/train/images/订单1806131_53_7103554.jpg new file mode 100644 index 0000000..4e3bad1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806131_53_7103554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445a4fb666c5a7bb18ad12649ab0dbfa7f0746356ebac319719790256a6620c5 +size 196205 diff --git a/datasets/仪表盘/train/images/订单1806133_53_7103526.jpg b/datasets/仪表盘/train/images/订单1806133_53_7103526.jpg new file mode 100644 index 0000000..6274f2c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806133_53_7103526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d160bc96f6f6a9cdbab0933d2582169265c02a5f20fc88f3922ddb4d5ed646a3 +size 203956 diff --git a/datasets/仪表盘/train/images/订单1806136_53_7103544.jpg b/datasets/仪表盘/train/images/订单1806136_53_7103544.jpg new file mode 100644 index 0000000..2775d4e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806136_53_7103544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cd9093e4c84289a6e1fbd3135aacacc3677ad7e8a8b36465f869e1a819e1cd +size 95993 diff --git a/datasets/仪表盘/train/images/订单1806141_53_7103677.jpg b/datasets/仪表盘/train/images/订单1806141_53_7103677.jpg new file mode 100644 index 0000000..5913168 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806141_53_7103677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e711bcd90d61e3f31e21e37afd25eb21c6c7435bfe2d3564e535ee4a05f5b3 +size 77897 diff --git a/datasets/仪表盘/train/images/订单1806142_53_7105260.jpg b/datasets/仪表盘/train/images/订单1806142_53_7105260.jpg new file mode 100644 index 0000000..c19a3b9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806142_53_7105260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e326541c02ca63ef90167185bed96b6cd674d1de59ca3d5596a5462c2cf81097 +size 219315 diff --git a/datasets/仪表盘/train/images/订单1806144_53_7103593.jpg b/datasets/仪表盘/train/images/订单1806144_53_7103593.jpg new file mode 100644 index 0000000..801f03a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806144_53_7103593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a980e8347add7efc6d4f12d5b3ab2a1a407ad34b0ac66b67a739b5d5887fec +size 200022 diff --git a/datasets/仪表盘/train/images/订单1806145_53_7103729.jpg b/datasets/仪表盘/train/images/订单1806145_53_7103729.jpg new file mode 100644 index 0000000..5e1757d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806145_53_7103729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698d3b1c6f369feabc6b834200c623b5dfe425a10192708d1ff737a221b56be3 +size 282503 diff --git a/datasets/仪表盘/train/images/订单1806146_53_7103691.jpg b/datasets/仪表盘/train/images/订单1806146_53_7103691.jpg new file mode 100644 index 0000000..c26b64c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806146_53_7103691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2071248809383e34aff4870adc758047eadccfe4e9d892c52a773a5a439099c +size 250724 diff --git a/datasets/仪表盘/train/images/订单1806148_53_7103649.jpg b/datasets/仪表盘/train/images/订单1806148_53_7103649.jpg new file mode 100644 index 0000000..5b7e3cd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806148_53_7103649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27be753d48b908bbc3ca7eff9363b2cc24798994c4b3c9e6fbb78e0da893ecfa +size 386968 diff --git a/datasets/仪表盘/train/images/订单1806152_53_7103776.jpg b/datasets/仪表盘/train/images/订单1806152_53_7103776.jpg new file mode 100644 index 0000000..c8aca31 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806152_53_7103776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec71a7e1b2ccea77957542b88a4a9cac37bea794efe9df28e68d1d6c10a6ff3 +size 386294 diff --git a/datasets/仪表盘/train/images/订单1806158_53_7103840.jpg b/datasets/仪表盘/train/images/订单1806158_53_7103840.jpg new file mode 100644 index 0000000..597684e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806158_53_7103840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00d3b934a5b08ba636959adb272aa0a2c1f19c87bc9b74c2d78206f04d59ced +size 405863 diff --git a/datasets/仪表盘/train/images/订单1806159_53_7103721.jpg b/datasets/仪表盘/train/images/订单1806159_53_7103721.jpg new file mode 100644 index 0000000..f87f7cd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806159_53_7103721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75b4754704b5ed98c35c73e2e91f2bc098fbb39c9c3750f7fff8cd4b246320e +size 356120 diff --git a/datasets/仪表盘/train/images/订单1806160_53_7103759.jpg b/datasets/仪表盘/train/images/订单1806160_53_7103759.jpg new file mode 100644 index 0000000..19950a5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806160_53_7103759.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9e3a9a298b52ce159d7fa2105594a319a900581fa8af0dd8e6b9c4ee04e721 +size 290681 diff --git a/datasets/仪表盘/train/images/订单1806162_53_7103823.jpg b/datasets/仪表盘/train/images/订单1806162_53_7103823.jpg new file mode 100644 index 0000000..bbf2e4b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806162_53_7103823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4e1c2c9dfdead668e087ceeb2d6dcf8ad9341286636ec1f2bd7868b9c3f110 +size 128740 diff --git a/datasets/仪表盘/train/images/订单1806163_53_7103860.jpg b/datasets/仪表盘/train/images/订单1806163_53_7103860.jpg new file mode 100644 index 0000000..f6de236 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806163_53_7103860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808391f99683f0a204e8140706b6f1c204b4c1fec2f9db737bb59336181301a1 +size 264369 diff --git a/datasets/仪表盘/train/images/订单1806164_53_7103879.jpg b/datasets/仪表盘/train/images/订单1806164_53_7103879.jpg new file mode 100644 index 0000000..e94781a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806164_53_7103879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573a8c897a4558998112b5e6ea9d7151411aa0118036acd7ba9a06cc627f913e +size 159386 diff --git a/datasets/仪表盘/train/images/订单1806166_53_7103904.jpg b/datasets/仪表盘/train/images/订单1806166_53_7103904.jpg new file mode 100644 index 0000000..b41bdff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806166_53_7103904.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e95be5e55d8f4d4d23782ed74237b47ca6d34f7f98f3c4fe7a684c12d0a7dab +size 275041 diff --git a/datasets/仪表盘/train/images/订单1806169_53_7103873.jpg b/datasets/仪表盘/train/images/订单1806169_53_7103873.jpg new file mode 100644 index 0000000..28ee079 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806169_53_7103873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a114cafba0897ef8ac835f77c32d6529dbb5e3ee17350cb6e392de31adfc266 +size 76012 diff --git a/datasets/仪表盘/train/images/订单1806173_53_7104043.jpg b/datasets/仪表盘/train/images/订单1806173_53_7104043.jpg new file mode 100644 index 0000000..dfbaf7f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806173_53_7104043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83fece26c413cc5064c63839bbb6524355739a46f2599784b5e553933926505 +size 157740 diff --git a/datasets/仪表盘/train/images/订单1806174_53_7103888.jpg b/datasets/仪表盘/train/images/订单1806174_53_7103888.jpg new file mode 100644 index 0000000..22477f0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806174_53_7103888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2699af124816ae9bc22d119565a583db2cde53fa5185b58e2d685e030d136c +size 243473 diff --git a/datasets/仪表盘/train/images/订单1806178_53_7103991.jpg b/datasets/仪表盘/train/images/订单1806178_53_7103991.jpg new file mode 100644 index 0000000..bf9cdec --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806178_53_7103991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21204f693dffab01e7eab59071443b78e8285b3d4dbd2a0a10866e3c60db587 +size 333235 diff --git a/datasets/仪表盘/train/images/订单1806180_53_7103951.jpg b/datasets/仪表盘/train/images/订单1806180_53_7103951.jpg new file mode 100644 index 0000000..b9efb27 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806180_53_7103951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1b1d1fd7cb71a33185711f0ac6a4be7bdc05317fa82315b1a82aed5ac696df +size 94857 diff --git a/datasets/仪表盘/train/images/订单1806292_53_7105123.jpg b/datasets/仪表盘/train/images/订单1806292_53_7105123.jpg new file mode 100644 index 0000000..65b1bdf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806292_53_7105123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417b55241ccd06a3d15639662a5b9002ba62797e90423e77d923bdf0bd7a6f0b +size 321548 diff --git a/datasets/仪表盘/train/images/订单1806293_53_7105241.jpg b/datasets/仪表盘/train/images/订单1806293_53_7105241.jpg new file mode 100644 index 0000000..71496a0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806293_53_7105241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5af8b66ca4b29fecc7a06338ba50de29500323ed37ab28110fd96748a70201 +size 81796 diff --git a/datasets/仪表盘/train/images/订单1806296_53_7105109.jpg b/datasets/仪表盘/train/images/订单1806296_53_7105109.jpg new file mode 100644 index 0000000..67f7c1d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806296_53_7105109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6561875daf47668ab3554be0d4b18b785103f51755924c230cb92c29f41faf4 +size 95016 diff --git a/datasets/仪表盘/train/images/订单1806298_53_7105104.jpg b/datasets/仪表盘/train/images/订单1806298_53_7105104.jpg new file mode 100644 index 0000000..d97eeac --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806298_53_7105104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b55f8bc2547dd231ef0cbc4d1d3b8bedf1a505a3f0ddb4dfc2b9c89bcd815b3f +size 172391 diff --git a/datasets/仪表盘/train/images/订单1806301_53_7105188.jpg b/datasets/仪表盘/train/images/订单1806301_53_7105188.jpg new file mode 100644 index 0000000..21dfa20 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806301_53_7105188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b01a8a497952c23961219381d7c0d7c2a65f63aa4a2196dcade6510ab0af89 +size 77010 diff --git a/datasets/仪表盘/train/images/订单1806302_53_7105083.jpg b/datasets/仪表盘/train/images/订单1806302_53_7105083.jpg new file mode 100644 index 0000000..1bfb779 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806302_53_7105083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8050651d4fdc5ccd7320039675daacdb78a8010971716f919fe95a6c5d1a73b +size 531489 diff --git a/datasets/仪表盘/train/images/订单1806303_53_7105168.jpg b/datasets/仪表盘/train/images/订单1806303_53_7105168.jpg new file mode 100644 index 0000000..2f8356b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806303_53_7105168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0f7feb46332d8cc88d64c4de8b106817e3b9f4817ae12afe8e39b9221e6088 +size 78360 diff --git a/datasets/仪表盘/train/images/订单1806306_53_7105179.jpg b/datasets/仪表盘/train/images/订单1806306_53_7105179.jpg new file mode 100644 index 0000000..db316d4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806306_53_7105179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050c65c7cb43e2b404f56714afded4e9ce380a8d4de97706270635109622f351 +size 305856 diff --git a/datasets/仪表盘/train/images/订单1806307_53_7105137.jpg b/datasets/仪表盘/train/images/订单1806307_53_7105137.jpg new file mode 100644 index 0000000..88f95c5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806307_53_7105137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf1609f1cd37ddcde167be9e3f2fa5b7293610a7253d0eeba80ffd6d63616a7 +size 381780 diff --git a/datasets/仪表盘/train/images/订单1806308_53_7105210.jpg b/datasets/仪表盘/train/images/订单1806308_53_7105210.jpg new file mode 100644 index 0000000..5f5184f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806308_53_7105210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e5b27e68b576a4d949de7f9b704f134f99bf8a1cc3437c658c90b2999827f5 +size 238735 diff --git a/datasets/仪表盘/train/images/订单1806309_53_7105230.jpg b/datasets/仪表盘/train/images/订单1806309_53_7105230.jpg new file mode 100644 index 0000000..0c45f8c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806309_53_7105230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a53816cf57024d2c88186b03aa5b6e8f8f1b83074c08aba4f57aa791cfd13cc +size 199683 diff --git a/datasets/仪表盘/train/images/订单1806310_53_7105805.jpg b/datasets/仪表盘/train/images/订单1806310_53_7105805.jpg new file mode 100644 index 0000000..cdfe989 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806310_53_7105805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb735363b53c5a6558149a41e3625aa5669be0a2f6f7e1d75c7b0819d332b382 +size 200877 diff --git a/datasets/仪表盘/train/images/订单1806311_53_7105521.jpg b/datasets/仪表盘/train/images/订单1806311_53_7105521.jpg new file mode 100644 index 0000000..8a3dfa2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806311_53_7105521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58ee29bb4c63a53c6c1e0df506c7bf5f4e5ff3836da2b1496130f75defb80ff +size 300438 diff --git a/datasets/仪表盘/train/images/订单1806314_53_7105340.jpg b/datasets/仪表盘/train/images/订单1806314_53_7105340.jpg new file mode 100644 index 0000000..c6fb392 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806314_53_7105340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9aee86e1deb5c6825c776e45bebd7ef7a1c5d19bb97da4d742f33efed960ad +size 178384 diff --git a/datasets/仪表盘/train/images/订单1806315_53_7105266.jpg b/datasets/仪表盘/train/images/订单1806315_53_7105266.jpg new file mode 100644 index 0000000..407e4ae --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806315_53_7105266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0693f477236b260c414e6ac835883081f46137d4e06d44b49c0f366313e2843a +size 235320 diff --git a/datasets/仪表盘/train/images/订单1806318_53_7105304.jpg b/datasets/仪表盘/train/images/订单1806318_53_7105304.jpg new file mode 100644 index 0000000..d0db807 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806318_53_7105304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8502032b16754883bb90a40e37beacc0e3d60540ba2bd0529ca81db37f0319cc +size 79677 diff --git a/datasets/仪表盘/train/images/订单1806319_53_7105265.jpg b/datasets/仪表盘/train/images/订单1806319_53_7105265.jpg new file mode 100644 index 0000000..69763f7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806319_53_7105265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac09a3bebb5858d010f53caa5ec27ad0ecb677ffcf40f2baf3b5bffbcb5fd38 +size 262536 diff --git a/datasets/仪表盘/train/images/订单1806320_53_7105472.jpg b/datasets/仪表盘/train/images/订单1806320_53_7105472.jpg new file mode 100644 index 0000000..c415520 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806320_53_7105472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8632761f7140e0470ce52ba67f1daa3e78102aa44c631823d05418f5977a84 +size 1247952 diff --git a/datasets/仪表盘/train/images/订单1806323_53_7105329.jpg b/datasets/仪表盘/train/images/订单1806323_53_7105329.jpg new file mode 100644 index 0000000..8d90bc5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806323_53_7105329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28acd8d3b11d26a261950c41a00ade2eaed88191353fdd5b9e392f44ba5ee58a +size 286929 diff --git a/datasets/仪表盘/train/images/订单1806324_53_7105301.jpg b/datasets/仪表盘/train/images/订单1806324_53_7105301.jpg new file mode 100644 index 0000000..1fc5490 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806324_53_7105301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12c94ed3d4571069da09ea175695931c3f55509bff2380284626175d318967a +size 193340 diff --git a/datasets/仪表盘/train/images/订单1806325_53_7105621.jpg b/datasets/仪表盘/train/images/订单1806325_53_7105621.jpg new file mode 100644 index 0000000..f0d7940 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806325_53_7105621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e681d1bf8a8d216df380fe494af6ad4db9d462c750d00079606f4249d9191adb +size 424958 diff --git a/datasets/仪表盘/train/images/订单1806327_53_7105368.jpg b/datasets/仪表盘/train/images/订单1806327_53_7105368.jpg new file mode 100644 index 0000000..5dc7877 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806327_53_7105368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0509a6647766aa7dfe99a894e8c87e3219aae495c7f4fa2da519e3c0953ba25 +size 242843 diff --git a/datasets/仪表盘/train/images/订单1806328_53_7105433.jpg b/datasets/仪表盘/train/images/订单1806328_53_7105433.jpg new file mode 100644 index 0000000..4e727f0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806328_53_7105433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34fb8705a992e855ec12a0790487f542e16f25e56aeab80f63972d5219a253e +size 108819 diff --git a/datasets/仪表盘/train/images/订单1806330_53_7105460.jpg b/datasets/仪表盘/train/images/订单1806330_53_7105460.jpg new file mode 100644 index 0000000..a36c081 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806330_53_7105460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c436d2a1a14fdac2c83ff8ed8596a8e0c3896ea4c281ea5882f83a6b88a795e +size 89356 diff --git a/datasets/仪表盘/train/images/订单1806331_53_7105372.jpg b/datasets/仪表盘/train/images/订单1806331_53_7105372.jpg new file mode 100644 index 0000000..a76ee41 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806331_53_7105372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3a16851cdb4759c7025c69253046ffc0ae5358b669fe33eeb6360300ee22fe +size 304590 diff --git a/datasets/仪表盘/train/images/订单1806333_53_7105425.jpg b/datasets/仪表盘/train/images/订单1806333_53_7105425.jpg new file mode 100644 index 0000000..66344a7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806333_53_7105425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6feefe97aa315475f66750342e8544760d1dc86301d58708384d91642e1182 +size 198856 diff --git a/datasets/仪表盘/train/images/订单1806334_53_7105419.jpg b/datasets/仪表盘/train/images/订单1806334_53_7105419.jpg new file mode 100644 index 0000000..0f83d9d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806334_53_7105419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7eadf6ed45cea48727bb06328f08829a43d474a830a22bd161856545c146cab +size 218177 diff --git a/datasets/仪表盘/train/images/订单1806336_53_7105405.jpg b/datasets/仪表盘/train/images/订单1806336_53_7105405.jpg new file mode 100644 index 0000000..9e972ac --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806336_53_7105405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce8982c384f3a3c2e28c64c1422454b654196ddd00e1850144c27f30ca3201d +size 196487 diff --git a/datasets/仪表盘/train/images/订单1806337_53_7105598.jpg b/datasets/仪表盘/train/images/订单1806337_53_7105598.jpg new file mode 100644 index 0000000..7fb26e9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806337_53_7105598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4498f24e3cf1f90f03cfe29d1e3b425ffa52b5c7d121a1134359d83198240efd +size 48747 diff --git a/datasets/仪表盘/train/images/订单1806340_53_7105557.jpg b/datasets/仪表盘/train/images/订单1806340_53_7105557.jpg new file mode 100644 index 0000000..56ea04a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806340_53_7105557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dc46a2b084ae4bcfe130b4a0c706939acf64f666c7122f990467a3b494118f +size 247667 diff --git a/datasets/仪表盘/train/images/订单1806342_53_7105881.jpg b/datasets/仪表盘/train/images/订单1806342_53_7105881.jpg new file mode 100644 index 0000000..bf66db7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806342_53_7105881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d25bea2bbbffab6529f5171d6d9eff720af8c601c02344134c6627adbd502ad +size 40528 diff --git a/datasets/仪表盘/train/images/订单1806343_53_7105581.jpg b/datasets/仪表盘/train/images/订单1806343_53_7105581.jpg new file mode 100644 index 0000000..b01c5ef --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806343_53_7105581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc630cd8051f2bbadbe5a6fa76dca034f0e657c11207aaf26e51cd384173d4f +size 278123 diff --git a/datasets/仪表盘/train/images/订单1806345_53_7105503.jpg b/datasets/仪表盘/train/images/订单1806345_53_7105503.jpg new file mode 100644 index 0000000..2c3c305 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806345_53_7105503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c953535066336fdee1c32399f6b4226f97fb302429120139899d111f932d4d7 +size 247083 diff --git a/datasets/仪表盘/train/images/订单1806349_53_7105913.jpg b/datasets/仪表盘/train/images/订单1806349_53_7105913.jpg new file mode 100644 index 0000000..64ea874 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806349_53_7105913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fcdbfd60f7e9f22afda7780e4a68941b7a4c13a9ccd117b55e68cdc95b9f1b3 +size 297454 diff --git a/datasets/仪表盘/train/images/订单1806351_53_7105497.jpg b/datasets/仪表盘/train/images/订单1806351_53_7105497.jpg new file mode 100644 index 0000000..bae150d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806351_53_7105497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:648be8f54436fde3b8891fc4194de3416cde7e280e536a2d40dc8d0eea64d1ea +size 346449 diff --git a/datasets/仪表盘/train/images/订单1806353_53_7105625.jpg b/datasets/仪表盘/train/images/订单1806353_53_7105625.jpg new file mode 100644 index 0000000..b04584f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806353_53_7105625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7ed133c5bc045c21d7bb89b0c793978631344f8db0635d1e1508792b8db1a0 +size 185141 diff --git a/datasets/仪表盘/train/images/订单1806354_53_7105626.jpg b/datasets/仪表盘/train/images/订单1806354_53_7105626.jpg new file mode 100644 index 0000000..6699fa8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806354_53_7105626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10da19e07b395833be0d939cf816a102fdf1436e2ba47a33014bcd42a7056de3 +size 206183 diff --git a/datasets/仪表盘/train/images/订单1806355_53_7105591.jpg b/datasets/仪表盘/train/images/订单1806355_53_7105591.jpg new file mode 100644 index 0000000..f918337 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806355_53_7105591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f96d89f12e41970e315d8fbee0a3be7f6a7aaaf7a14bb47d2712f975668c95e +size 288835 diff --git a/datasets/仪表盘/train/images/订单1806357_53_7105664.jpg b/datasets/仪表盘/train/images/订单1806357_53_7105664.jpg new file mode 100644 index 0000000..517e8d0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806357_53_7105664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd406f6d484332cabce9fd4e04baa201ed78296b0694666fe03c3e6ed4fb0c1 +size 94531 diff --git a/datasets/仪表盘/train/images/订单1806358_53_7105738.jpg b/datasets/仪表盘/train/images/订单1806358_53_7105738.jpg new file mode 100644 index 0000000..d381c13 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806358_53_7105738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbb7d98bf2f4462f4eec2bf5ab928eea608512d10f9478b5d521b0d367d60aa +size 173438 diff --git a/datasets/仪表盘/train/images/订单1806359_53_7105651.jpg b/datasets/仪表盘/train/images/订单1806359_53_7105651.jpg new file mode 100644 index 0000000..49e9e65 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806359_53_7105651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6740f4cbdd04c6b3fc4ceb0963c5ad84a107c9e957029ade9244b473fa1b12 +size 76501 diff --git a/datasets/仪表盘/train/images/订单1806360_53_7105653.jpg b/datasets/仪表盘/train/images/订单1806360_53_7105653.jpg new file mode 100644 index 0000000..c7d2391 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806360_53_7105653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c356672a33c2531810c9ec50a4db7d03b93b0803fa83aef7c5afa6a2db56f47 +size 72595 diff --git a/datasets/仪表盘/train/images/订单1806361_53_7105697.jpg b/datasets/仪表盘/train/images/订单1806361_53_7105697.jpg new file mode 100644 index 0000000..987e485 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806361_53_7105697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4e0dd2c97e3849f3fc3f7f7f45022c5c40636a9068a7700d0594c16a392599 +size 110825 diff --git a/datasets/仪表盘/train/images/订单1806362_53_7105844.jpg b/datasets/仪表盘/train/images/订单1806362_53_7105844.jpg new file mode 100644 index 0000000..dcf1256 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806362_53_7105844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96fc1456714f9a4d352f56a223db3db61851b81c1d3ab7fd9dfe4977e0d0a975 +size 223735 diff --git a/datasets/仪表盘/train/images/订单1806363_53_7105685.jpg b/datasets/仪表盘/train/images/订单1806363_53_7105685.jpg new file mode 100644 index 0000000..55c93e1 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806363_53_7105685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8081ed96cebcab7dbd9e0003a046114d8aae16a6d41254e46b3f6843be844e +size 89654 diff --git a/datasets/仪表盘/train/images/订单1806364_53_7105893.jpg b/datasets/仪表盘/train/images/订单1806364_53_7105893.jpg new file mode 100644 index 0000000..b3a9843 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806364_53_7105893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82eb8593f424933d351ce795724d439ea8a61595db8d3492f42421bdaaf5555b +size 424207 diff --git a/datasets/仪表盘/train/images/订单1806365_53_7105862.jpg b/datasets/仪表盘/train/images/订单1806365_53_7105862.jpg new file mode 100644 index 0000000..133bd51 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806365_53_7105862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bc4e0735335b4ff562718fd60cefb2b22a57f36ecad348b9dffb253a73a49c +size 491501 diff --git a/datasets/仪表盘/train/images/订单1806366_53_7105773.jpg b/datasets/仪表盘/train/images/订单1806366_53_7105773.jpg new file mode 100644 index 0000000..52505fb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806366_53_7105773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4684c1b24e3c4d73b05e8c579c8a78af59cf0ea1b7dacf0be4c7e6825ce548d4 +size 237311 diff --git a/datasets/仪表盘/train/images/订单1806367_53_7105770.jpg b/datasets/仪表盘/train/images/订单1806367_53_7105770.jpg new file mode 100644 index 0000000..daeacc8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806367_53_7105770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa71ad2c2bab08c56f043b45fc81d1b2db64df1255682d59c5b46d5f3d8f1ad +size 333463 diff --git a/datasets/仪表盘/train/images/订单1806368_53_7105715.jpg b/datasets/仪表盘/train/images/订单1806368_53_7105715.jpg new file mode 100644 index 0000000..f78b5d4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806368_53_7105715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47aca0e5ac682897b9b043083c16852ae428c8f2c74f71adc9c365b596084d1 +size 287394 diff --git a/datasets/仪表盘/train/images/订单1806369_53_7105733.jpg b/datasets/仪表盘/train/images/订单1806369_53_7105733.jpg new file mode 100644 index 0000000..e8c9960 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806369_53_7105733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923243bb2d1b0a2ad95bab52914abf75ca3c8686d14ec9ea973ae1fe537257a1 +size 88189 diff --git a/datasets/仪表盘/train/images/订单1806370_53_7105749.jpg b/datasets/仪表盘/train/images/订单1806370_53_7105749.jpg new file mode 100644 index 0000000..107f8f7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806370_53_7105749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60b70eeee2d036fdf67d271b69dc737ce2930a37035262a4cb64178d9d6b44b +size 204326 diff --git a/datasets/仪表盘/train/images/订单1806371_53_7105817.jpg b/datasets/仪表盘/train/images/订单1806371_53_7105817.jpg new file mode 100644 index 0000000..44bfa33 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806371_53_7105817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce3a5f673a9eafd9d42863d5a655c318e80b6b46d10e011dc09cd28b5b394e6 +size 275585 diff --git a/datasets/仪表盘/train/images/订单1806374_53_7105800.jpg b/datasets/仪表盘/train/images/订单1806374_53_7105800.jpg new file mode 100644 index 0000000..9f4466d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806374_53_7105800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c2f00a347cae71711bac9c03f8722a54ed5b3d68d7ad3d7afc37fc4f642c07 +size 249385 diff --git a/datasets/仪表盘/train/images/订单1806382_53_7105943.jpg b/datasets/仪表盘/train/images/订单1806382_53_7105943.jpg new file mode 100644 index 0000000..2e2a45c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806382_53_7105943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77993d09e21723bf990ee1d3da81cdd42e3e441fb751b279eec5dbd4ab1876f2 +size 111868 diff --git a/datasets/仪表盘/train/images/订单1806385_53_7105921.jpg b/datasets/仪表盘/train/images/订单1806385_53_7105921.jpg new file mode 100644 index 0000000..3b9af84 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806385_53_7105921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321f86e2683c2a9b2dca065fa10527d9074415d969973fff7830361da5e08e14 +size 224910 diff --git a/datasets/仪表盘/train/images/订单1806386_53_7105895.jpg b/datasets/仪表盘/train/images/订单1806386_53_7105895.jpg new file mode 100644 index 0000000..ba2c4a9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806386_53_7105895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee350302846d2827d162cb6e878d3062f332e25512f12f4063edb8b1f8edae2 +size 255400 diff --git a/datasets/仪表盘/train/images/订单1806388_53_7105994.jpg b/datasets/仪表盘/train/images/订单1806388_53_7105994.jpg new file mode 100644 index 0000000..fa8f012 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806388_53_7105994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1504b8c789aec89df82ccb6d14101ee068a23c5023da1c5ad71d65a4c59805 +size 243121 diff --git a/datasets/仪表盘/train/images/订单1806390_53_7105922.jpg b/datasets/仪表盘/train/images/订单1806390_53_7105922.jpg new file mode 100644 index 0000000..bf0724d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806390_53_7105922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7525bb5b0cad66739c19298a97c17a6505c86438309feab7f3d6350fca068f58 +size 315843 diff --git a/datasets/仪表盘/train/images/订单1806391_53_7106025.jpg b/datasets/仪表盘/train/images/订单1806391_53_7106025.jpg new file mode 100644 index 0000000..8f3a85a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806391_53_7106025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd9867448647f26af3133d3513fb30c9c36edba42e65dd32e8b30d4e3f50a29 +size 243372 diff --git a/datasets/仪表盘/train/images/订单1806395_53_7105999.jpg b/datasets/仪表盘/train/images/订单1806395_53_7105999.jpg new file mode 100644 index 0000000..e6b92ff --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806395_53_7105999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e21be23e0a90691926a841bac9147da1d171ef6f9d8f5c33159d4f150b21f7 +size 295989 diff --git a/datasets/仪表盘/train/images/订单1806396_53_7105986.jpg b/datasets/仪表盘/train/images/订单1806396_53_7105986.jpg new file mode 100644 index 0000000..f4d5c05 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806396_53_7105986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5593b5c69bb2d1e8ec10f718f4152088ef87323599e5cd2eb6d9de4173adc16 +size 269372 diff --git a/datasets/仪表盘/train/images/订单1806398_53_7106147.jpg b/datasets/仪表盘/train/images/订单1806398_53_7106147.jpg new file mode 100644 index 0000000..6f65fa8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806398_53_7106147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702bdfcf1d53bd4c1f7c03204bee0395cfc874ea7a44ada38d831ad8e595fcb5 +size 295146 diff --git a/datasets/仪表盘/train/images/订单1806400_53_7106039.jpg b/datasets/仪表盘/train/images/订单1806400_53_7106039.jpg new file mode 100644 index 0000000..b917724 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806400_53_7106039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f477156825141759c362dc299a93874b099aa1e2de256e59e2e12fe4ab7cc6ec +size 339141 diff --git a/datasets/仪表盘/train/images/订单1806402_53_7106082.jpg b/datasets/仪表盘/train/images/订单1806402_53_7106082.jpg new file mode 100644 index 0000000..53a66b8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806402_53_7106082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6a1681670b0cf84609be832239899111dc04116988b95d072b48b74ac58ffa +size 74787 diff --git a/datasets/仪表盘/train/images/订单1806403_53_7106076.jpg b/datasets/仪表盘/train/images/订单1806403_53_7106076.jpg new file mode 100644 index 0000000..c93f22b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806403_53_7106076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e9f410f3a8dda14ca22971e0e23f34a9ad907a5135503dd5dc6a1484c98d2e +size 179357 diff --git a/datasets/仪表盘/train/images/订单1806410_53_7106143.jpg b/datasets/仪表盘/train/images/订单1806410_53_7106143.jpg new file mode 100644 index 0000000..78da0ca --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806410_53_7106143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9c1b2e2177eb65245de96f6c3936b4efce9b0045eb4ffb12890a84cae39c2a +size 41189 diff --git a/datasets/仪表盘/train/images/订单1806413_53_7106215.jpg b/datasets/仪表盘/train/images/订单1806413_53_7106215.jpg new file mode 100644 index 0000000..7532ad4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806413_53_7106215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcbb80dfe0c7cb22bf4710ddf5419bae7358825035fc4b4ea83f2479604bd35 +size 120914 diff --git a/datasets/仪表盘/train/images/订单1806415_53_7106253.jpg b/datasets/仪表盘/train/images/订单1806415_53_7106253.jpg new file mode 100644 index 0000000..45a1be5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806415_53_7106253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb1f229ccfdc68a48f15592d9471db0e7ed404d47a0f07a05372cfd8a1d8d46 +size 253739 diff --git a/datasets/仪表盘/train/images/订单1806417_53_7106283.jpg b/datasets/仪表盘/train/images/订单1806417_53_7106283.jpg new file mode 100644 index 0000000..8396719 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806417_53_7106283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6149c891a0335999552639ca3884729ae5d859df9c26e1231b21b0a7fb3af6 +size 68960 diff --git a/datasets/仪表盘/train/images/订单1806418_53_7106195.jpg b/datasets/仪表盘/train/images/订单1806418_53_7106195.jpg new file mode 100644 index 0000000..12b0704 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806418_53_7106195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ebbd73e20258f0a38bbaa945813cf936308667b80638d0f4095bbbace563de +size 390466 diff --git a/datasets/仪表盘/train/images/订单1806420_53_7106193.jpg b/datasets/仪表盘/train/images/订单1806420_53_7106193.jpg new file mode 100644 index 0000000..3839a20 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806420_53_7106193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c0b9282ae054492a06264156f219f125cb30945eda031acb08c60f1414fca5 +size 65868 diff --git a/datasets/仪表盘/train/images/订单1806421_53_7106230.jpg b/datasets/仪表盘/train/images/订单1806421_53_7106230.jpg new file mode 100644 index 0000000..ac2a722 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806421_53_7106230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7530dd82fb3a180e26d39cf9c9dd4f87cd36162e491d351c79be7e478b24d0c +size 303332 diff --git a/datasets/仪表盘/train/images/订单1806423_53_7106286.jpg b/datasets/仪表盘/train/images/订单1806423_53_7106286.jpg new file mode 100644 index 0000000..32830e9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806423_53_7106286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcec70acc2816b14593ee6b6b5846aa2647422e3c3356f5385297118a06ae73 +size 320436 diff --git a/datasets/仪表盘/train/images/订单1806424_53_7106314.jpg b/datasets/仪表盘/train/images/订单1806424_53_7106314.jpg new file mode 100644 index 0000000..a0dd131 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806424_53_7106314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da12605f71dffe684f2384943a6665487aba63f88016b245bec79af0f8c50347 +size 429979 diff --git a/datasets/仪表盘/train/images/订单1806435_53_7106319.jpg b/datasets/仪表盘/train/images/订单1806435_53_7106319.jpg new file mode 100644 index 0000000..d5c7506 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806435_53_7106319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135f3bea3137c994cfde740c2c5023282a5388498295eb32ce3ddd89c72e4726 +size 252363 diff --git a/datasets/仪表盘/train/images/订单1806438_53_7106359.jpg b/datasets/仪表盘/train/images/订单1806438_53_7106359.jpg new file mode 100644 index 0000000..72fb373 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806438_53_7106359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba29df1a90b45f26f0da40b2cd84196892e1dca79684dfcbca4afc06d7728323 +size 246201 diff --git a/datasets/仪表盘/train/images/订单1806439_53_7106392.jpg b/datasets/仪表盘/train/images/订单1806439_53_7106392.jpg new file mode 100644 index 0000000..dbf1fc7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806439_53_7106392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab93703b64737db55a690b4cb27b47383168dc13f89daa57d9a8bbdfceb0a55 +size 282681 diff --git a/datasets/仪表盘/train/images/订单1806445_53_7106480.jpg b/datasets/仪表盘/train/images/订单1806445_53_7106480.jpg new file mode 100644 index 0000000..bc12b0a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806445_53_7106480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70259cfd16b737b92e02dd7604bdfc4adfafd2408b95fcb62a00a1bf60ee9679 +size 809711 diff --git a/datasets/仪表盘/train/images/订单1806446_53_7106423.jpg b/datasets/仪表盘/train/images/订单1806446_53_7106423.jpg new file mode 100644 index 0000000..9f8ae9d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806446_53_7106423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2ab62cb354911077dc61b59c2d49d908694f0855ba31013241382c5b51ceb9 +size 57325 diff --git a/datasets/仪表盘/train/images/订单1806448_53_7106608.jpg b/datasets/仪表盘/train/images/订单1806448_53_7106608.jpg new file mode 100644 index 0000000..7020b77 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806448_53_7106608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d58b794894520252f6014b0b571b8eb3740ff20cf7f53412c722700f59e727 +size 317928 diff --git a/datasets/仪表盘/train/images/订单1806449_53_7106441.jpg b/datasets/仪表盘/train/images/订单1806449_53_7106441.jpg new file mode 100644 index 0000000..98dcd28 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806449_53_7106441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7625c262a332e205364dd73f54c67620ffc99fc24dce4f395bd1e4c39dd8e1f4 +size 85294 diff --git a/datasets/仪表盘/train/images/订单1806450_53_7106434.jpg b/datasets/仪表盘/train/images/订单1806450_53_7106434.jpg new file mode 100644 index 0000000..268081a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806450_53_7106434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794d4478210c2972da624ce1f0aaa36fd4265c147c7f7eb71c618f67dabfdfc9 +size 99673 diff --git a/datasets/仪表盘/train/images/订单1806453_53_7106519.jpg b/datasets/仪表盘/train/images/订单1806453_53_7106519.jpg new file mode 100644 index 0000000..c45cf9c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806453_53_7106519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842180c483c2a99efc73bebbcfe53e001d03af24919e49b0c44aa39c244d88e1 +size 89624 diff --git a/datasets/仪表盘/train/images/订单1806454_53_7106549.jpg b/datasets/仪表盘/train/images/订单1806454_53_7106549.jpg new file mode 100644 index 0000000..e8b8af4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806454_53_7106549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8089409397bce96db1ce9d7431359e36bf2ad460b98c11018a81e6cb2fd0fdb3 +size 255035 diff --git a/datasets/仪表盘/train/images/订单1806455_53_7106553.jpg b/datasets/仪表盘/train/images/订单1806455_53_7106553.jpg new file mode 100644 index 0000000..a6cc9b9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806455_53_7106553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7beea61ace34792ca0e074b633bce4295c5b52a6b034bf52ba23fa5cc0fac497 +size 226559 diff --git a/datasets/仪表盘/train/images/订单1806464_53_7106656.jpg b/datasets/仪表盘/train/images/订单1806464_53_7106656.jpg new file mode 100644 index 0000000..f14e8e3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806464_53_7106656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7128218ba36e13d930498b64664b7db3b534e186b0a3ac181fc9afc3d84ca4 +size 283653 diff --git a/datasets/仪表盘/train/images/订单1806465_53_7106621.jpg b/datasets/仪表盘/train/images/订单1806465_53_7106621.jpg new file mode 100644 index 0000000..e8ba4b4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806465_53_7106621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c3b403ee48e56587fd6d11bfa90ec6d22e616791a37534bbb637ea778caa3d +size 257327 diff --git a/datasets/仪表盘/train/images/订单1806467_53_7106641.jpg b/datasets/仪表盘/train/images/订单1806467_53_7106641.jpg new file mode 100644 index 0000000..901235d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806467_53_7106641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be1713d8f8037678f33a0a8c4ec89a6bf53e59acac3747b1e6803c27bb62060 +size 255208 diff --git a/datasets/仪表盘/train/images/订单1806468_53_7106705.jpg b/datasets/仪表盘/train/images/订单1806468_53_7106705.jpg new file mode 100644 index 0000000..71e3a0d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806468_53_7106705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66095176198e56ab09b06a32293bd409b8efddee2ea0c9fd5a9359755944e16 +size 344721 diff --git a/datasets/仪表盘/train/images/订单1806470_53_7106685.jpg b/datasets/仪表盘/train/images/订单1806470_53_7106685.jpg new file mode 100644 index 0000000..67d037c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806470_53_7106685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4b9dc47a8281b02380efb447ac4a0d6c4ce3bc16446795a5e7c3f8bee08682 +size 296709 diff --git a/datasets/仪表盘/train/images/订单1806471_53_7106662.jpg b/datasets/仪表盘/train/images/订单1806471_53_7106662.jpg new file mode 100644 index 0000000..c16deb5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806471_53_7106662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62289ed6b29af2443a3fd7867acf505863f1e89b03fdd2e5946332c288004358 +size 75037 diff --git a/datasets/仪表盘/train/images/订单1806476_53_7106689.jpg b/datasets/仪表盘/train/images/订单1806476_53_7106689.jpg new file mode 100644 index 0000000..452067f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806476_53_7106689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55aeb1a3b814956df4314e8aae75d3dbaeba2871e21502bd05349d2cd38e34c7 +size 305748 diff --git a/datasets/仪表盘/train/images/订单1806477_53_7106751.jpg b/datasets/仪表盘/train/images/订单1806477_53_7106751.jpg new file mode 100644 index 0000000..45eca84 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806477_53_7106751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d184d5541ba988b52e07b149bca318a941babee6625e5c0997a470c4b39ec931 +size 254599 diff --git a/datasets/仪表盘/train/images/订单1806479_53_7106760.jpg b/datasets/仪表盘/train/images/订单1806479_53_7106760.jpg new file mode 100644 index 0000000..bae013f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806479_53_7106760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3152a3dbd1760b04f1e8aab579ee50d72468ad0bcff9ee9e391eb5333ea9a2c +size 255525 diff --git a/datasets/仪表盘/train/images/订单1806481_53_7106773.jpg b/datasets/仪表盘/train/images/订单1806481_53_7106773.jpg new file mode 100644 index 0000000..9c70cca --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806481_53_7106773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e61a2442c61885c670289cc9d70e8a766a3d992a48f9db39893057db5b3d06 +size 59832 diff --git a/datasets/仪表盘/train/images/订单1806482_53_7106772.jpg b/datasets/仪表盘/train/images/订单1806482_53_7106772.jpg new file mode 100644 index 0000000..73938c8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806482_53_7106772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3651fa607016fea6cc50652479a8291c1ffa5bdccca74340d0432d6a7ae6c77f +size 229953 diff --git a/datasets/仪表盘/train/images/订单1806483_53_7106795.jpg b/datasets/仪表盘/train/images/订单1806483_53_7106795.jpg new file mode 100644 index 0000000..c44d584 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806483_53_7106795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab9bb2c2c809149367a68fd09cdde675d31ebdcfa9cc721351adbbd92d0c16d +size 253911 diff --git a/datasets/仪表盘/train/images/订单1806484_53_7106819.jpg b/datasets/仪表盘/train/images/订单1806484_53_7106819.jpg new file mode 100644 index 0000000..aa0e434 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806484_53_7106819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c342d4de5078e10b606c684e2bb3719a48379a471e2c47136c059d70f2e90df +size 63093 diff --git a/datasets/仪表盘/train/images/订单1806487_53_7106852.jpg b/datasets/仪表盘/train/images/订单1806487_53_7106852.jpg new file mode 100644 index 0000000..23ba8b5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806487_53_7106852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d504f526a476b90893ed538d8229bd3c784b13eb8fde8e0b4ef5ef363b2c69 +size 43604 diff --git a/datasets/仪表盘/train/images/订单1806488_53_7106866.jpg b/datasets/仪表盘/train/images/订单1806488_53_7106866.jpg new file mode 100644 index 0000000..6db539b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806488_53_7106866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936335eb89c0ff671e0f839a2986b6fa097ff17b33ff5f32bd6daa4c49a0ae08 +size 327811 diff --git a/datasets/仪表盘/train/images/订单1806490_53_7106896.jpg b/datasets/仪表盘/train/images/订单1806490_53_7106896.jpg new file mode 100644 index 0000000..dca8b1d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806490_53_7106896.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a03dd45489154bfa382559a60008f66bdf6756935f72d3fc8fd853d93b312b +size 201399 diff --git a/datasets/仪表盘/train/images/订单1806491_53_7106885.jpg b/datasets/仪表盘/train/images/订单1806491_53_7106885.jpg new file mode 100644 index 0000000..f8f46e4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806491_53_7106885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1896563f33b6353f0bb72354b535824398c8f9cb0ef79bd92a91e90d62e1e28c +size 57339 diff --git a/datasets/仪表盘/train/images/订单1806493_53_7106919.jpg b/datasets/仪表盘/train/images/订单1806493_53_7106919.jpg new file mode 100644 index 0000000..0188b4d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806493_53_7106919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0987eb734d1322f7da8f72408eb864f6c3507569b77487f95049ae20040c3c3e +size 71039 diff --git a/datasets/仪表盘/train/images/订单1806494_53_7106915.jpg b/datasets/仪表盘/train/images/订单1806494_53_7106915.jpg new file mode 100644 index 0000000..12a88de --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806494_53_7106915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bdaa19c90fbe31b43d57f82c45f93d86ff2c2ebb66784a171bef56adaf4641 +size 241077 diff --git a/datasets/仪表盘/train/images/订单1806495_53_7106941.jpg b/datasets/仪表盘/train/images/订单1806495_53_7106941.jpg new file mode 100644 index 0000000..7074a02 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806495_53_7106941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9455cd4adb09ab79ce1e0909ca14abce9c5d6fba4e01b3223b5554d36b42121 +size 205504 diff --git a/datasets/仪表盘/train/images/订单1806498_53_7106984.jpg b/datasets/仪表盘/train/images/订单1806498_53_7106984.jpg new file mode 100644 index 0000000..15932d5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806498_53_7106984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579b171bb84324a21d69b69ecfa796848ef419936884395a707e34da1dcd3b6d +size 562170 diff --git a/datasets/仪表盘/train/images/订单1806499_53_7106957.jpg b/datasets/仪表盘/train/images/订单1806499_53_7106957.jpg new file mode 100644 index 0000000..f8564a9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806499_53_7106957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457e9c0e37bd69c640115056b548e10516a9366848da4f42d1ac93db7b6e8b9c +size 260395 diff --git a/datasets/仪表盘/train/images/订单1806501_53_7106970.jpg b/datasets/仪表盘/train/images/订单1806501_53_7106970.jpg new file mode 100644 index 0000000..9f1e9fd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806501_53_7106970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac20a223612cecc273cf86233f4b5dc4f98479a255a19a1abf506b8c889becc +size 364923 diff --git a/datasets/仪表盘/train/images/订单1806502_53_7107000.jpg b/datasets/仪表盘/train/images/订单1806502_53_7107000.jpg new file mode 100644 index 0000000..4344a1d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806502_53_7107000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56cc2b4c329448df589fc166993c79542980f3f173252894fed95274240f1b8 +size 77942 diff --git a/datasets/仪表盘/train/images/订单1806504_53_7107025.jpg b/datasets/仪表盘/train/images/订单1806504_53_7107025.jpg new file mode 100644 index 0000000..ae5bc7d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806504_53_7107025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42275801ef7e87b83bbad76f7196c8ef38f5e149ce4a20ff936b430ab85879bc +size 280028 diff --git a/datasets/仪表盘/train/images/订单1806505_53_7107048.jpg b/datasets/仪表盘/train/images/订单1806505_53_7107048.jpg new file mode 100644 index 0000000..03a2577 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806505_53_7107048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f474703264c8f5ec61c86e9bb4cfa3646b2d456f710864d01940b1ce86121141 +size 350201 diff --git a/datasets/仪表盘/train/images/订单1806507_53_7107057.jpg b/datasets/仪表盘/train/images/订单1806507_53_7107057.jpg new file mode 100644 index 0000000..0039945 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806507_53_7107057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d49822987632c44dcf43149d0a42145a147a75a08b8295ce2a1d46cc46a617c +size 59734 diff --git a/datasets/仪表盘/train/images/订单1806511_53_7107088.jpg b/datasets/仪表盘/train/images/订单1806511_53_7107088.jpg new file mode 100644 index 0000000..6720274 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806511_53_7107088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1d615d6e0aac891eacbb1e159e282af51485ca5469a1883d656be27c3e555a +size 453308 diff --git a/datasets/仪表盘/train/images/订单1806513_53_7107880.jpg b/datasets/仪表盘/train/images/订单1806513_53_7107880.jpg new file mode 100644 index 0000000..b25b501 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806513_53_7107880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6662bc1402b2e7c6ec8f5d5316ffd82ac3437a7738a64203ba2faca9c93b4fb8 +size 318744 diff --git a/datasets/仪表盘/train/images/订单1806514_53_7107081.jpg b/datasets/仪表盘/train/images/订单1806514_53_7107081.jpg new file mode 100644 index 0000000..7999ae5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806514_53_7107081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b816075f7578d653cefa4c55f38b90d28bf8cc23a1005bb50aa84d7149ba3d68 +size 576346 diff --git a/datasets/仪表盘/train/images/订单1806515_53_7107116.jpg b/datasets/仪表盘/train/images/订单1806515_53_7107116.jpg new file mode 100644 index 0000000..9461a80 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806515_53_7107116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9976822f9063b2206aabcf1bf0f8b48f45c59f9b61fdcbab25f53132fd9c7b1 +size 356786 diff --git a/datasets/仪表盘/train/images/订单1806516_53_7107102.jpg b/datasets/仪表盘/train/images/订单1806516_53_7107102.jpg new file mode 100644 index 0000000..736e6d7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806516_53_7107102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87245f159ce2608396442daa569ba911dd062a3fb95725c0783fcdef0678d99 +size 338190 diff --git a/datasets/仪表盘/train/images/订单1806519_53_7107219.jpg b/datasets/仪表盘/train/images/订单1806519_53_7107219.jpg new file mode 100644 index 0000000..de0ffe5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806519_53_7107219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420b23ede07ce5e35a587a5e54d55c8d931df3a2cb7b7c579bc1d9f0d478f97b +size 103126 diff --git a/datasets/仪表盘/train/images/订单1806521_53_7107161.jpg b/datasets/仪表盘/train/images/订单1806521_53_7107161.jpg new file mode 100644 index 0000000..700054e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806521_53_7107161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d95094ecfac5b0aa0ccf2477a0550567ead1bc331cbe0e6206499d1c1684f9e +size 432220 diff --git a/datasets/仪表盘/train/images/订单1806522_53_7107180.jpg b/datasets/仪表盘/train/images/订单1806522_53_7107180.jpg new file mode 100644 index 0000000..b2fbbcb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806522_53_7107180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023c6182fc59bdbe8b763365262bd0ef8a264e8fa60ed9cf8638140f784acf7d +size 533645 diff --git a/datasets/仪表盘/train/images/订单1806523_53_7107173.jpg b/datasets/仪表盘/train/images/订单1806523_53_7107173.jpg new file mode 100644 index 0000000..6351584 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806523_53_7107173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac95eb3421fe9ac08811e495e7aa02642ec6ed52b366949161cc947f3a159433 +size 534152 diff --git a/datasets/仪表盘/train/images/订单1806524_53_7107196.jpg b/datasets/仪表盘/train/images/订单1806524_53_7107196.jpg new file mode 100644 index 0000000..aea7633 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806524_53_7107196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e879ef8c2432d223264cf4ef6873248d030f16500eeebba30a7f5c5f888b311f +size 270859 diff --git a/datasets/仪表盘/train/images/订单1806526_53_7107126.jpg b/datasets/仪表盘/train/images/订单1806526_53_7107126.jpg new file mode 100644 index 0000000..29e6d77 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806526_53_7107126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf2180aad4918691d5eb17f89e7fb579d808b476e71fa67c05fc29166180aec +size 266956 diff --git a/datasets/仪表盘/train/images/订单1806528_53_7107110.jpg b/datasets/仪表盘/train/images/订单1806528_53_7107110.jpg new file mode 100644 index 0000000..2e201cf --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806528_53_7107110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cce27520830834cce1de07653152819b85c1a4e63e01b73aae5db5450e9df4 +size 361140 diff --git a/datasets/仪表盘/train/images/订单1806532_53_7107308.jpg b/datasets/仪表盘/train/images/订单1806532_53_7107308.jpg new file mode 100644 index 0000000..e894911 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806532_53_7107308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd2955295eef1f235131460c6f8fa9c0b13ce4cdfaa64f5728b5b729b91b3c9f +size 272631 diff --git a/datasets/仪表盘/train/images/订单1806533_53_7107332.jpg b/datasets/仪表盘/train/images/订单1806533_53_7107332.jpg new file mode 100644 index 0000000..c7659bc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806533_53_7107332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1edcd0a59537b32dc9a6cbe811ed6e648a345d103e541ba8d1ac5af07b77451 +size 428314 diff --git a/datasets/仪表盘/train/images/订单1806536_53_7107266.jpg b/datasets/仪表盘/train/images/订单1806536_53_7107266.jpg new file mode 100644 index 0000000..8107f37 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806536_53_7107266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d9623e7102bbd6dff74f853cc55e095ab4754daad7cf93eb57ad49cef090b9 +size 280948 diff --git a/datasets/仪表盘/train/images/订单1806541_53_7107460.jpg b/datasets/仪表盘/train/images/订单1806541_53_7107460.jpg new file mode 100644 index 0000000..538fb4d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806541_53_7107460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375c0e86b676499371bf7e5d485ecf90d251e875e9d66b930f2553343e8c4933 +size 295335 diff --git a/datasets/仪表盘/train/images/订单1806543_53_7107274.jpg b/datasets/仪表盘/train/images/订单1806543_53_7107274.jpg new file mode 100644 index 0000000..c088aba --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806543_53_7107274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868896911ddd4250023eb2295526b7b1bdd83fd1c26273901e35121459cd19f5 +size 78836 diff --git a/datasets/仪表盘/train/images/订单1806544_53_7107237.jpg b/datasets/仪表盘/train/images/订单1806544_53_7107237.jpg new file mode 100644 index 0000000..7769d75 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806544_53_7107237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b495dc8a620f54a660cdbd18fa79c6a043dbda16763271de21374e5b4b0c57b +size 263501 diff --git a/datasets/仪表盘/train/images/订单1806545_53_7107269.jpg b/datasets/仪表盘/train/images/订单1806545_53_7107269.jpg new file mode 100644 index 0000000..57894dc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806545_53_7107269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dec66e9c19cc1868fc0ef1265412522f8a8ff1b9e24cec3220c6d0cc604a545 +size 67179 diff --git a/datasets/仪表盘/train/images/订单1806546_53_7107590.jpg b/datasets/仪表盘/train/images/订单1806546_53_7107590.jpg new file mode 100644 index 0000000..ee0112a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806546_53_7107590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ae6f34ac19b85f46d864112dfe3f536092d1b424d7f9f0421556781d432601 +size 405912 diff --git a/datasets/仪表盘/train/images/订单1806548_53_7107255.jpg b/datasets/仪表盘/train/images/订单1806548_53_7107255.jpg new file mode 100644 index 0000000..936586b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806548_53_7107255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53102d6d306feed1b7a02c71fcb2ec8c55661474ce427eb0a3202f62f341820b +size 309925 diff --git a/datasets/仪表盘/train/images/订单1806552_53_7107258.jpg b/datasets/仪表盘/train/images/订单1806552_53_7107258.jpg new file mode 100644 index 0000000..647fdc3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806552_53_7107258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1420502b0bf1e6c586012b1ecbcdfcaf6fdff4b68191f21c073f58c70137198 +size 226699 diff --git a/datasets/仪表盘/train/images/订单1806555_53_7107312.jpg b/datasets/仪表盘/train/images/订单1806555_53_7107312.jpg new file mode 100644 index 0000000..058f861 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806555_53_7107312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50fd8d573013d469c76ef3f2c38d7ccd9b6194496e348bc28c729c83fe7c92c2 +size 148242 diff --git a/datasets/仪表盘/train/images/订单1806560_53_7107350.jpg b/datasets/仪表盘/train/images/订单1806560_53_7107350.jpg new file mode 100644 index 0000000..6220ef7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806560_53_7107350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0035e769b06def4c543de3ead582b8dae88b9c1cc88f1cabf30f20ba875b917 +size 285718 diff --git a/datasets/仪表盘/train/images/订单1806561_53_7107331.jpg b/datasets/仪表盘/train/images/订单1806561_53_7107331.jpg new file mode 100644 index 0000000..704b18a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806561_53_7107331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fa6e17fe384f9d4784b714b33e3b441359c1c2e1bacb391fd0a82f52a2e3de +size 89179 diff --git a/datasets/仪表盘/train/images/订单1806563_53_7107420.jpg b/datasets/仪表盘/train/images/订单1806563_53_7107420.jpg new file mode 100644 index 0000000..a93282e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806563_53_7107420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6ee3478efffdbd481bfca0ba62a75ae311ff3bf98871a8b3b115a7406b3660 +size 401180 diff --git a/datasets/仪表盘/train/images/订单1806566_53_7107503.jpg b/datasets/仪表盘/train/images/订单1806566_53_7107503.jpg new file mode 100644 index 0000000..e7f5026 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806566_53_7107503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1d96f8da85b7566d3f3d0e0df7b0a74c53fa15e34870a73667adcd0eaec5c0 +size 274447 diff --git a/datasets/仪表盘/train/images/订单1806567_53_7107443.jpg b/datasets/仪表盘/train/images/订单1806567_53_7107443.jpg new file mode 100644 index 0000000..b527457 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806567_53_7107443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3c232bedd16ca3a2c037ed59a1d5bd56d6ea6dceeba8c95e62fb9be145ba0f +size 254620 diff --git a/datasets/仪表盘/train/images/订单1806568_53_7107444.jpg b/datasets/仪表盘/train/images/订单1806568_53_7107444.jpg new file mode 100644 index 0000000..c0408c2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806568_53_7107444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f92bf09b104d7dfc3ed63f573f7f4ae5ed8d813b83ead4ebfa581670d34b84f +size 242056 diff --git a/datasets/仪表盘/train/images/订单1806570_53_7107497.jpg b/datasets/仪表盘/train/images/订单1806570_53_7107497.jpg new file mode 100644 index 0000000..3c992e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806570_53_7107497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fea75a36f20e4fe33e069d4a00c4df339b775274f7e0570bfb0c428490af8a +size 158645 diff --git a/datasets/仪表盘/train/images/订单1806572_53_7107524.jpg b/datasets/仪表盘/train/images/订单1806572_53_7107524.jpg new file mode 100644 index 0000000..101e080 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806572_53_7107524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2bf118dd45336da7668356339d6695332f4363bc7f66fd93ced8fcad903b71 +size 298625 diff --git a/datasets/仪表盘/train/images/订单1806578_53_7107555.jpg b/datasets/仪表盘/train/images/订单1806578_53_7107555.jpg new file mode 100644 index 0000000..a0b1b19 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806578_53_7107555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc14c49298737117719beaa534a47caddbf4643fec2baa09ff33d6f0a8d23d95 +size 162659 diff --git a/datasets/仪表盘/train/images/订单1806583_53_7108497.jpg b/datasets/仪表盘/train/images/订单1806583_53_7108497.jpg new file mode 100644 index 0000000..71565ea --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806583_53_7108497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5e555032fb49a08ccd5f827dd81bc91e016d2698098b1cb45c3460165ecc54 +size 372882 diff --git a/datasets/仪表盘/train/images/订单1806588_53_7107702.jpg b/datasets/仪表盘/train/images/订单1806588_53_7107702.jpg new file mode 100644 index 0000000..8a12020 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806588_53_7107702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd99cc077416bae11850dc6b42f1fc46722b1637b676738af2d87c32b5d260ab +size 115153 diff --git a/datasets/仪表盘/train/images/订单1806589_53_7107615.jpg b/datasets/仪表盘/train/images/订单1806589_53_7107615.jpg new file mode 100644 index 0000000..d2d312b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806589_53_7107615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37656c41df7fe9efd607ce39b50dc044e29e336cbc0f15551d56e03d334e8cae +size 401628 diff --git a/datasets/仪表盘/train/images/订单1806596_53_7107758.jpg b/datasets/仪表盘/train/images/订单1806596_53_7107758.jpg new file mode 100644 index 0000000..69dc89b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806596_53_7107758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00556a961f5c6091e66a6171799b359c5ee8e27bc62a239da03224133c398d79 +size 139300 diff --git a/datasets/仪表盘/train/images/订单1806598_53_7107742.jpg b/datasets/仪表盘/train/images/订单1806598_53_7107742.jpg new file mode 100644 index 0000000..3c96659 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806598_53_7107742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc94105ef26c8556ca86ccb75e8b2575722d9078ad52db341d92fcf592317caf +size 317294 diff --git a/datasets/仪表盘/train/images/订单1806600_53_7107883.jpg b/datasets/仪表盘/train/images/订单1806600_53_7107883.jpg new file mode 100644 index 0000000..7f2afe9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806600_53_7107883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7147adbd209aefc92b98236369a1d0d33eb596a416fe3b83db77da83bece87 +size 153975 diff --git a/datasets/仪表盘/train/images/订单1806601_53_7107740.jpg b/datasets/仪表盘/train/images/订单1806601_53_7107740.jpg new file mode 100644 index 0000000..1e9e0d7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806601_53_7107740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7530fdb961fddfe9bc7db0d29a7b35a70ed84ade92538acda82c821ec94ef776 +size 81262 diff --git a/datasets/仪表盘/train/images/订单1806603_53_7107767.jpg b/datasets/仪表盘/train/images/订单1806603_53_7107767.jpg new file mode 100644 index 0000000..f583f50 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806603_53_7107767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0b17b32cedfa91e4a577034ddc674f93037b33a4fa72444c4975e6e50a90b7 +size 83460 diff --git a/datasets/仪表盘/train/images/订单1806604_53_7107817.jpg b/datasets/仪表盘/train/images/订单1806604_53_7107817.jpg new file mode 100644 index 0000000..97cc50d --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806604_53_7107817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdef339d3ff093290062941cdc21b9f0ba820124d5c7964849aff9ca74895da +size 230792 diff --git a/datasets/仪表盘/train/images/订单1806607_53_7107882.jpg b/datasets/仪表盘/train/images/订单1806607_53_7107882.jpg new file mode 100644 index 0000000..2ff61a5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806607_53_7107882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be5c13b24810abf31709e0585476415a4080dbd5c1737c863b8f9fb2d85867a +size 108413 diff --git a/datasets/仪表盘/train/images/订单1806610_53_7107829.jpg b/datasets/仪表盘/train/images/订单1806610_53_7107829.jpg new file mode 100644 index 0000000..767c9f8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806610_53_7107829.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcce057b3c7464df6e677369b2108d4e12d29d8c9c9435114a4a2fae5be7785b +size 319500 diff --git a/datasets/仪表盘/train/images/订单1806615_53_7107813.jpg b/datasets/仪表盘/train/images/订单1806615_53_7107813.jpg new file mode 100644 index 0000000..572a5f3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806615_53_7107813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5465a6083e21aa85262c3b5598586aad931d20d22d670e1fae4df04f36725310 +size 252482 diff --git a/datasets/仪表盘/train/images/订单1806618_53_7107888.jpg b/datasets/仪表盘/train/images/订单1806618_53_7107888.jpg new file mode 100644 index 0000000..9fe91d0 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806618_53_7107888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df3ae0d535ea66556586fc4fc40897e8d673f21fb6e03b22f39f839162d1c90 +size 370485 diff --git a/datasets/仪表盘/train/images/订单1806625_53_7107980.jpg b/datasets/仪表盘/train/images/订单1806625_53_7107980.jpg new file mode 100644 index 0000000..66f73c4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806625_53_7107980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8dae8a25a30fa141ad79532648c73dc30996c6d9ffe3566b947e1130fad0ba +size 62367 diff --git a/datasets/仪表盘/train/images/订单1806626_53_7108117.jpg b/datasets/仪表盘/train/images/订单1806626_53_7108117.jpg new file mode 100644 index 0000000..095676a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806626_53_7108117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7664c27ab775e44657fe03ebd5624103ca889dd57dcdce0524cb3643d52c215b +size 303997 diff --git a/datasets/仪表盘/train/images/订单1806627_53_7108051.jpg b/datasets/仪表盘/train/images/订单1806627_53_7108051.jpg new file mode 100644 index 0000000..2e05c08 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806627_53_7108051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307c71433ecac68a1e8432e2510f4cc8146c79d6df78e84d2d2d6d094b7c8250 +size 254984 diff --git a/datasets/仪表盘/train/images/订单1806629_53_7108061.jpg b/datasets/仪表盘/train/images/订单1806629_53_7108061.jpg new file mode 100644 index 0000000..b0a4c47 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806629_53_7108061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e459db9189c36a0d73b13ce1aea60e9028929b0b9b42eb3dcb555220029b3682 +size 106332 diff --git a/datasets/仪表盘/train/images/订单1806631_53_7108056.jpg b/datasets/仪表盘/train/images/订单1806631_53_7108056.jpg new file mode 100644 index 0000000..add0a9b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806631_53_7108056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9e694974037295e39be7e7a9d86be01a679993ef187edd1e39f1e3cb7afda0 +size 67569 diff --git a/datasets/仪表盘/train/images/订单1806633_53_7108076.jpg b/datasets/仪表盘/train/images/订单1806633_53_7108076.jpg new file mode 100644 index 0000000..607a041 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806633_53_7108076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd652f4ce123b79864a1a194ebe00e77800dd1ec01f84f556dc4a5dd7436a99 +size 408367 diff --git a/datasets/仪表盘/train/images/订单1806638_53_7108123.jpg b/datasets/仪表盘/train/images/订单1806638_53_7108123.jpg new file mode 100644 index 0000000..5ba3164 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806638_53_7108123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7107a6eaf9b42eba4ba20846c262ae4884a3608a1b69394cf4d7854b2e1d76f +size 430162 diff --git a/datasets/仪表盘/train/images/订单1806640_53_7108150.jpg b/datasets/仪表盘/train/images/订单1806640_53_7108150.jpg new file mode 100644 index 0000000..8a04338 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806640_53_7108150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133a39f51fd6dffe62e91fc19dd6296fb189b465957919bbb7e167cbf19ae360 +size 442324 diff --git a/datasets/仪表盘/train/images/订单1806641_53_7108180.jpg b/datasets/仪表盘/train/images/订单1806641_53_7108180.jpg new file mode 100644 index 0000000..6eba1bc --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806641_53_7108180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d258f4b470302139e385fb56346595205939873c6e1076607f2189691bd42c +size 310970 diff --git a/datasets/仪表盘/train/images/订单1806642_53_7108096.jpg b/datasets/仪表盘/train/images/订单1806642_53_7108096.jpg new file mode 100644 index 0000000..0323298 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806642_53_7108096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abc0e1e35fa7ed0e49f2bb95a16d357decf37bd26dcc3ac36ce1d6b5b8b06e2 +size 66350 diff --git a/datasets/仪表盘/train/images/订单1806643_53_7108196.jpg b/datasets/仪表盘/train/images/订单1806643_53_7108196.jpg new file mode 100644 index 0000000..1f2331e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806643_53_7108196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0470655384c5aecf1c0d8c4bc11e45f911062b1ab295c6efb388418735fe65 +size 226995 diff --git a/datasets/仪表盘/train/images/订单1806644_53_7108200.jpg b/datasets/仪表盘/train/images/订单1806644_53_7108200.jpg new file mode 100644 index 0000000..5f967da --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806644_53_7108200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adca4f36dde8124232e617e5d621a91df82848494382da89c23821ef0a874f33 +size 347655 diff --git a/datasets/仪表盘/train/images/订单1806646_53_7108226.jpg b/datasets/仪表盘/train/images/订单1806646_53_7108226.jpg new file mode 100644 index 0000000..e7417fa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806646_53_7108226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75170bdab6d68fb19e4203bcacddaa099c091b94c71fad84bd26c277c3950099 +size 284845 diff --git a/datasets/仪表盘/train/images/订单1806647_53_7108233.jpg b/datasets/仪表盘/train/images/订单1806647_53_7108233.jpg new file mode 100644 index 0000000..cda853e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806647_53_7108233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b229a897d88dbd7fe10623b96eaafb5870a7d2c84320cfbb38b38bb24ce4fad3 +size 254836 diff --git a/datasets/仪表盘/train/images/订单1806648_53_7108362.jpg b/datasets/仪表盘/train/images/订单1806648_53_7108362.jpg new file mode 100644 index 0000000..b652057 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806648_53_7108362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7058260cd85ed436b15469e86a40ac64b8d30a0ad3c3d524cd506d6d7c746840 +size 140552 diff --git a/datasets/仪表盘/train/images/订单1806650_53_7108269.jpg b/datasets/仪表盘/train/images/订单1806650_53_7108269.jpg new file mode 100644 index 0000000..036ec49 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806650_53_7108269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c8a61559619f0e923f0f0eedfebaf3064feb4f9c4b10dcc23bfb07bdde36ee +size 98712 diff --git a/datasets/仪表盘/train/images/订单1806652_53_7108352.jpg b/datasets/仪表盘/train/images/订单1806652_53_7108352.jpg new file mode 100644 index 0000000..298a241 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806652_53_7108352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d08db2fd7f74b565c8a02e0c56948ecf9f6524623919de36576668b177cae0b +size 223125 diff --git a/datasets/仪表盘/train/images/订单1806653_53_7108378.jpg b/datasets/仪表盘/train/images/订单1806653_53_7108378.jpg new file mode 100644 index 0000000..2528d1a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806653_53_7108378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce55e04bee7816ce5cf40cbd8604d393615407a15ae88c24a319f9736f4ecb5 +size 113057 diff --git a/datasets/仪表盘/train/images/订单1806654_53_7108327.jpg b/datasets/仪表盘/train/images/订单1806654_53_7108327.jpg new file mode 100644 index 0000000..512efc7 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806654_53_7108327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208ef13dfcdb7ce8c5be5816007422c320c61168159678638213bcf93d61ba6e +size 423514 diff --git a/datasets/仪表盘/train/images/订单1806655_53_7108328.jpg b/datasets/仪表盘/train/images/订单1806655_53_7108328.jpg new file mode 100644 index 0000000..cbbcbf4 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806655_53_7108328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be524577b3cead994d43e9f6cfa3d2292a8aea39303a7ca0f14c42bcad8f50e9 +size 222610 diff --git a/datasets/仪表盘/train/images/订单1806657_53_7108423.jpg b/datasets/仪表盘/train/images/订单1806657_53_7108423.jpg new file mode 100644 index 0000000..db089d3 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806657_53_7108423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835c1ea4462616174a049d709851dfd72c9a001f3a458da13f24aff14ef36e42 +size 220515 diff --git a/datasets/仪表盘/train/images/订单1806663_53_7108456.jpg b/datasets/仪表盘/train/images/订单1806663_53_7108456.jpg new file mode 100644 index 0000000..0b57a58 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806663_53_7108456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97084db5588753d3a076c57fc1256309e181138f543b82fc91765a5dfae36262 +size 178928 diff --git a/datasets/仪表盘/train/images/订单1806664_53_7108422.jpg b/datasets/仪表盘/train/images/订单1806664_53_7108422.jpg new file mode 100644 index 0000000..eaf8c3e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806664_53_7108422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf0b3f00a946f98e00881e80b335c9da00c39682fca2d1eacc61790e6af8afd +size 215876 diff --git a/datasets/仪表盘/train/images/订单1806667_53_7108410.jpg b/datasets/仪表盘/train/images/订单1806667_53_7108410.jpg new file mode 100644 index 0000000..b49ea94 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806667_53_7108410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5e2774a4d14075f637d8f8420a9e6ac0237768e5c06bf2e95e23f8eab4547a +size 117626 diff --git a/datasets/仪表盘/train/images/订单1806672_53_7108551.jpg b/datasets/仪表盘/train/images/订单1806672_53_7108551.jpg new file mode 100644 index 0000000..9fdcd39 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806672_53_7108551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ffcbec0c1c2b0fb480cdf7e0e4de28326e494bd2f5479d12fb02c8010f30d85 +size 183572 diff --git a/datasets/仪表盘/train/images/订单1806673_53_7108581.jpg b/datasets/仪表盘/train/images/订单1806673_53_7108581.jpg new file mode 100644 index 0000000..96d6f7a --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806673_53_7108581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbef4604c827f85bf3eb9b16464a899eea15bdb1c8a9054ed47809da28e8e70 +size 86983 diff --git a/datasets/仪表盘/train/images/订单1806676_53_7108569.jpg b/datasets/仪表盘/train/images/订单1806676_53_7108569.jpg new file mode 100644 index 0000000..d8e2bdb --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806676_53_7108569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4feec90a1bb84391f1f4191195f154a4e78ad1fec1e76d99a1044419b5c8a9e4 +size 472388 diff --git a/datasets/仪表盘/train/images/订单1806678_53_7108537.jpg b/datasets/仪表盘/train/images/订单1806678_53_7108537.jpg new file mode 100644 index 0000000..e39556c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806678_53_7108537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30645d71af2b57fcc3de87ec3fc74ec0c7a0005e2a4520aced04e41bdb3196e1 +size 300399 diff --git a/datasets/仪表盘/train/images/订单1806685_53_7108620.jpg b/datasets/仪表盘/train/images/订单1806685_53_7108620.jpg new file mode 100644 index 0000000..2dc711f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806685_53_7108620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a9f303002f29908522e8cd8a14a074a1275b04fc11cf841080e17d839293f3 +size 125510 diff --git a/datasets/仪表盘/train/images/订单1806687_53_7108712.jpg b/datasets/仪表盘/train/images/订单1806687_53_7108712.jpg new file mode 100644 index 0000000..45114bd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806687_53_7108712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacd563fca43090e1e9162ef9957cd189b32bdc419573804793d9b1c50b02c6f +size 262377 diff --git a/datasets/仪表盘/train/images/订单1806688_53_7108670.jpg b/datasets/仪表盘/train/images/订单1806688_53_7108670.jpg new file mode 100644 index 0000000..19bf220 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806688_53_7108670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b541e8e36eb77d45f19bcf924d135166b68b6fe0e54ff4006c8664fe9b23474 +size 141652 diff --git a/datasets/仪表盘/train/images/订单1806689_53_7109603.jpg b/datasets/仪表盘/train/images/订单1806689_53_7109603.jpg new file mode 100644 index 0000000..d5ef927 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806689_53_7109603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaec56a2c6079ea87160efe3fa523e4305df6ab702edd4369adc8732ed3b780d +size 160663 diff --git a/datasets/仪表盘/train/images/订单1806693_53_7108718.jpg b/datasets/仪表盘/train/images/订单1806693_53_7108718.jpg new file mode 100644 index 0000000..a84c9b2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806693_53_7108718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74bbd68fb9e23a2b1f020bf01a2429dcfa238039b31983b15b6a9ce6bf8e9ff +size 186007 diff --git a/datasets/仪表盘/train/images/订单1806696_53_7108689.jpg b/datasets/仪表盘/train/images/订单1806696_53_7108689.jpg new file mode 100644 index 0000000..b557c76 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806696_53_7108689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0310eeeb0b8d025428193be30fedd449b64139f22573343e021e843b8663f7dc +size 312921 diff --git a/datasets/仪表盘/train/images/订单1806697_53_7108772.jpg b/datasets/仪表盘/train/images/订单1806697_53_7108772.jpg new file mode 100644 index 0000000..0c35a8f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806697_53_7108772.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da53d88a9a3d95513b28caa5049766117bd847a2c2ee681949c970989c3e662 +size 366079 diff --git a/datasets/仪表盘/train/images/订单1806701_53_7108767.jpg b/datasets/仪表盘/train/images/订单1806701_53_7108767.jpg new file mode 100644 index 0000000..02d9d3c --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806701_53_7108767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb90d5f3e77d924ef8e8a97a0b97cfc69c1b34accdc2f1ddb7884d73f21acca +size 538534 diff --git a/datasets/仪表盘/train/images/订单1806702_53_7108882.jpg b/datasets/仪表盘/train/images/订单1806702_53_7108882.jpg new file mode 100644 index 0000000..e9301e2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806702_53_7108882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4813018341e15f00f3370053594c83e49004fb2081d853f0d864b2490ad29898 +size 282497 diff --git a/datasets/仪表盘/train/images/订单1806704_53_7108795.jpg b/datasets/仪表盘/train/images/订单1806704_53_7108795.jpg new file mode 100644 index 0000000..66406aa --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806704_53_7108795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d424064a0fa3d2b76fe8c09d77015c63b85985916c2603ca4bb8736f4dfc82ad +size 295493 diff --git a/datasets/仪表盘/train/images/订单1806705_53_7109118.jpg b/datasets/仪表盘/train/images/订单1806705_53_7109118.jpg new file mode 100644 index 0000000..3127144 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806705_53_7109118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7475eb70cea9bd0b01f5b88ad811b544eb5361186fb8f339e90666c9cd7728bd +size 345964 diff --git a/datasets/仪表盘/train/images/订单1806707_53_7108899.jpg b/datasets/仪表盘/train/images/订单1806707_53_7108899.jpg new file mode 100644 index 0000000..c179fd6 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806707_53_7108899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed8bf212326b0f7141a3b5c65013ff7bd331d18d5d00a136a4658bdce3202d3 +size 415870 diff --git a/datasets/仪表盘/train/images/订单1806710_53_7108861.jpg b/datasets/仪表盘/train/images/订单1806710_53_7108861.jpg new file mode 100644 index 0000000..bf46b88 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806710_53_7108861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a056d2102762296cb6c58b3ee74ef7bd1ce01d30748f43166de7db4d13a19c +size 118360 diff --git a/datasets/仪表盘/train/images/订单1806714_53_7108937.jpg b/datasets/仪表盘/train/images/订单1806714_53_7108937.jpg new file mode 100644 index 0000000..ef8223e --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806714_53_7108937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64410cddf73865e7f557a2f3c304dfb9b8308f61edb8c6bbff61422a796567a9 +size 162787 diff --git a/datasets/仪表盘/train/images/订单1806715_53_7108908.jpg b/datasets/仪表盘/train/images/订单1806715_53_7108908.jpg new file mode 100644 index 0000000..40ac897 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806715_53_7108908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab0427fef3609be681fcd3adb8c78c40ad47caea71570896fc00b8dc98aa1b2 +size 457477 diff --git a/datasets/仪表盘/train/images/订单1806724_53_7108958.jpg b/datasets/仪表盘/train/images/订单1806724_53_7108958.jpg new file mode 100644 index 0000000..fc3efa9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806724_53_7108958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37834c0b89465826f8c67de06e8d091bf19c9466d99dd9fd0e4e2c7bc0679d7 +size 495591 diff --git a/datasets/仪表盘/train/images/订单1806725_53_7109064.jpg b/datasets/仪表盘/train/images/订单1806725_53_7109064.jpg new file mode 100644 index 0000000..e8d24f8 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806725_53_7109064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5ebf5376867072102f204d0ae4f1fd46c79052bc9011415dc69901d8ea301f +size 307513 diff --git a/datasets/仪表盘/train/images/订单1806726_53_7108997.jpg b/datasets/仪表盘/train/images/订单1806726_53_7108997.jpg new file mode 100644 index 0000000..29262da --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806726_53_7108997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e81ecf60465f7369c465daa989c5e13f8e3e02e84f0d92177856a71bd5566f0 +size 217179 diff --git a/datasets/仪表盘/train/images/订单1806731_53_7109025.jpg b/datasets/仪表盘/train/images/订单1806731_53_7109025.jpg new file mode 100644 index 0000000..1e708d9 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806731_53_7109025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c97ad6fdb26ab95e28547cb18a62bad012fc2f3561eff77027cd5758edfc46 +size 337722 diff --git a/datasets/仪表盘/train/images/订单1806732_53_7109067.jpg b/datasets/仪表盘/train/images/订单1806732_53_7109067.jpg new file mode 100644 index 0000000..05366b5 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806732_53_7109067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd8de44f01fcddd5f1fbc4b1b8897596dc7fb1208759e4690561ea6b21bcb09 +size 368383 diff --git a/datasets/仪表盘/train/images/订单1806735_53_7109103.jpg b/datasets/仪表盘/train/images/订单1806735_53_7109103.jpg new file mode 100644 index 0000000..83b43ba --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806735_53_7109103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca3442f8d2294871715c04d379a114f7ac62eeedb3ad5ae00a74d047fbab501 +size 81052 diff --git a/datasets/仪表盘/train/images/订单1806736_53_7109096.jpg b/datasets/仪表盘/train/images/订单1806736_53_7109096.jpg new file mode 100644 index 0000000..d1650ca --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806736_53_7109096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6977b5aace92f6735f4d213bef2423e82e4e1792483e48d5d1b78146b078edee +size 81435 diff --git a/datasets/仪表盘/train/images/订单1806738_53_7109154.jpg b/datasets/仪表盘/train/images/订单1806738_53_7109154.jpg new file mode 100644 index 0000000..4715610 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806738_53_7109154.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0592b605e7fd0a013d9675aa2c230968652e31b5e3aa0f8e4290b2beedea11b +size 290038 diff --git a/datasets/仪表盘/train/images/订单1806739_53_7109114.jpg b/datasets/仪表盘/train/images/订单1806739_53_7109114.jpg new file mode 100644 index 0000000..c396fec --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806739_53_7109114.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18aba0d75f40160acb092ed21a6511952805de2af4b76eff25d9aaae07f0f4e +size 351997 diff --git a/datasets/仪表盘/train/images/订单1806740_53_7109279.jpg b/datasets/仪表盘/train/images/订单1806740_53_7109279.jpg new file mode 100644 index 0000000..3b502f2 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806740_53_7109279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d653f6a9ee1a7f9db158c958fac8b4873c37b8e050f58472c765af783b0d7083 +size 155922 diff --git a/datasets/仪表盘/train/images/订单1806744_53_7109157.jpg b/datasets/仪表盘/train/images/订单1806744_53_7109157.jpg new file mode 100644 index 0000000..306a420 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806744_53_7109157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ff5bb6bdf27be109457a417d6e7cc5ac3104d202a6b83856034a69611ae596 +size 95911 diff --git a/datasets/仪表盘/train/images/订单1806746_53_7109174.jpg b/datasets/仪表盘/train/images/订单1806746_53_7109174.jpg new file mode 100644 index 0000000..8211a3b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806746_53_7109174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406fad7532626935e8c97b432b9b859697aa81fd867cc8f1c6a96a942514c9c7 +size 408986 diff --git a/datasets/仪表盘/train/images/订单1806748_53_7109273.jpg b/datasets/仪表盘/train/images/订单1806748_53_7109273.jpg new file mode 100644 index 0000000..c1d7d88 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806748_53_7109273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8d3c9b6ab7051558faa87334cfb4b13baf3b562758d15bb7fa2e7afbb23f89 +size 341350 diff --git a/datasets/仪表盘/train/images/订单1806749_53_7109179.jpg b/datasets/仪表盘/train/images/订单1806749_53_7109179.jpg new file mode 100644 index 0000000..c683b2f --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806749_53_7109179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6010cec085da908b78faee253fc55a681283cdd3da59fa538ee11661fab968ba +size 183487 diff --git a/datasets/仪表盘/train/images/订单1806750_53_7109247.jpg b/datasets/仪表盘/train/images/订单1806750_53_7109247.jpg new file mode 100644 index 0000000..cdf6f64 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806750_53_7109247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e216bdc3e52c5d4eca2662bc8900b27000a8c2a4e174bb76482cf2866a3b777 +size 392742 diff --git a/datasets/仪表盘/train/images/订单1806753_53_7109278.jpg b/datasets/仪表盘/train/images/订单1806753_53_7109278.jpg new file mode 100644 index 0000000..1408eec --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806753_53_7109278.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c0e148eb0c2403f420531e309c412d9e57d5550e299f478f2e08f0b16635c0 +size 283815 diff --git a/datasets/仪表盘/train/images/订单1806754_53_7109249.jpg b/datasets/仪表盘/train/images/订单1806754_53_7109249.jpg new file mode 100644 index 0000000..1deea79 --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806754_53_7109249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2630738fdf4683a8b7e834cea3c2cc1c85f8c5f809496e684dc15a6e164f57fa +size 79322 diff --git a/datasets/仪表盘/train/images/订单1806755_53_7109392.jpg b/datasets/仪表盘/train/images/订单1806755_53_7109392.jpg new file mode 100644 index 0000000..2cc7cad --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806755_53_7109392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74b81e85d08c0c928eabc019ee025612f60dabf4dde9f7d6839da6494ab9316 +size 209778 diff --git a/datasets/仪表盘/train/images/订单1806757_53_7109346.jpg b/datasets/仪表盘/train/images/订单1806757_53_7109346.jpg new file mode 100644 index 0000000..ee4bb5b --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806757_53_7109346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624b1a929577c35f37c11a33ab4d1111f313cfd636ea1a2aa022d2c0820ee8ea +size 338729 diff --git a/datasets/仪表盘/train/images/订单1806762_53_7109433.jpg b/datasets/仪表盘/train/images/订单1806762_53_7109433.jpg new file mode 100644 index 0000000..c0ed7cd --- /dev/null +++ b/datasets/仪表盘/train/images/订单1806762_53_7109433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f156ed5aa8e9b22b841bd3514161980f2cff60c2c7f1453578d743182056c90a +size 134206 diff --git a/datasets/仪表盘/train/labels.cache b/datasets/仪表盘/train/labels.cache new file mode 100644 index 0000000..97b4aad Binary files /dev/null and b/datasets/仪表盘/train/labels.cache differ diff --git a/datasets/仪表盘/train/labels/classes.txt b/datasets/仪表盘/train/labels/classes.txt new file mode 100644 index 0000000..c557bf6 --- /dev/null +++ b/datasets/仪表盘/train/labels/classes.txt @@ -0,0 +1,2 @@ +dashboard +nodashboard diff --git a/datasets/仪表盘/train/labels/仪表盘1805078_53_7093811.txt b/datasets/仪表盘/train/labels/仪表盘1805078_53_7093811.txt new file mode 100644 index 0000000..5e8fa4a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805078_53_7093811.txt @@ -0,0 +1 @@ +0 0.508545 0.486654 0.467285 0.341797 diff --git a/datasets/仪表盘/train/labels/仪表盘1805080_53_7093834.txt b/datasets/仪表盘/train/labels/仪表盘1805080_53_7093834.txt new file mode 100644 index 0000000..c7a5640 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805080_53_7093834.txt @@ -0,0 +1 @@ +0 0.438721 0.332357 0.729004 0.548828 diff --git a/datasets/仪表盘/train/labels/仪表盘1805087_53_7093928.txt b/datasets/仪表盘/train/labels/仪表盘1805087_53_7093928.txt new file mode 100644 index 0000000..4e56a83 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805087_53_7093928.txt @@ -0,0 +1 @@ +0 0.494629 0.512370 0.878906 0.518229 diff --git a/datasets/仪表盘/train/labels/仪表盘1805090_53_7094299.txt b/datasets/仪表盘/train/labels/仪表盘1805090_53_7094299.txt new file mode 100644 index 0000000..6859b7b --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805090_53_7094299.txt @@ -0,0 +1 @@ +0 0.522204 0.489035 0.765899 0.407895 diff --git a/datasets/仪表盘/train/labels/仪表盘1805099_53_7093976.txt b/datasets/仪表盘/train/labels/仪表盘1805099_53_7093976.txt new file mode 100644 index 0000000..2067eb2 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805099_53_7093976.txt @@ -0,0 +1 @@ +0 0.501000 0.439667 0.812000 0.436667 diff --git a/datasets/仪表盘/train/labels/仪表盘1805111_53_7094022.txt b/datasets/仪表盘/train/labels/仪表盘1805111_53_7094022.txt new file mode 100644 index 0000000..626e31a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805111_53_7094022.txt @@ -0,0 +1 @@ +0 0.607230 0.508987 0.772059 0.495098 diff --git a/datasets/仪表盘/train/labels/仪表盘1805126_53_7094312.txt b/datasets/仪表盘/train/labels/仪表盘1805126_53_7094312.txt new file mode 100644 index 0000000..4e73cec --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805126_53_7094312.txt @@ -0,0 +1 @@ +0 0.497076 0.400219 0.856725 0.350877 diff --git a/datasets/仪表盘/train/labels/仪表盘1805130_53_7094431.txt b/datasets/仪表盘/train/labels/仪表盘1805130_53_7094431.txt new file mode 100644 index 0000000..ee0e80c --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805130_53_7094431.txt @@ -0,0 +1 @@ +0 0.539062 0.477539 0.921875 0.462891 diff --git a/datasets/仪表盘/train/labels/仪表盘1805138_53_7094752.txt b/datasets/仪表盘/train/labels/仪表盘1805138_53_7094752.txt new file mode 100644 index 0000000..48b9533 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805138_53_7094752.txt @@ -0,0 +1 @@ +0 0.579250 0.451333 0.831500 0.488000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805140_53_7094510.txt b/datasets/仪表盘/train/labels/仪表盘1805140_53_7094510.txt new file mode 100644 index 0000000..b57e158 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805140_53_7094510.txt @@ -0,0 +1 @@ +0 0.487305 0.505534 0.973633 0.844401 diff --git a/datasets/仪表盘/train/labels/仪表盘1805144_53_7094338.txt b/datasets/仪表盘/train/labels/仪表盘1805144_53_7094338.txt new file mode 100644 index 0000000..cd760bb --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805144_53_7094338.txt @@ -0,0 +1 @@ +0 0.467529 0.403556 0.849121 0.723060 diff --git a/datasets/仪表盘/train/labels/仪表盘1805156_53_7094438.txt b/datasets/仪表盘/train/labels/仪表盘1805156_53_7094438.txt new file mode 100644 index 0000000..74cb919 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805156_53_7094438.txt @@ -0,0 +1 @@ +0 0.562000 0.482301 0.876000 0.752212 diff --git a/datasets/仪表盘/train/labels/仪表盘1805166_53_7094726.txt b/datasets/仪表盘/train/labels/仪表盘1805166_53_7094726.txt new file mode 100644 index 0000000..1c8a7c6 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805166_53_7094726.txt @@ -0,0 +1 @@ +0 0.507500 0.542708 0.920556 0.232083 diff --git a/datasets/仪表盘/train/labels/仪表盘1805169_53_7094633.txt b/datasets/仪表盘/train/labels/仪表盘1805169_53_7094633.txt new file mode 100644 index 0000000..3952bc7 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805169_53_7094633.txt @@ -0,0 +1 @@ +0 0.476974 0.414474 0.753289 0.472222 diff --git a/datasets/仪表盘/train/labels/仪表盘1805171_53_7094531.txt b/datasets/仪表盘/train/labels/仪表盘1805171_53_7094531.txt new file mode 100644 index 0000000..56ec777 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805171_53_7094531.txt @@ -0,0 +1 @@ +0 0.507568 0.399740 0.984863 0.697917 diff --git a/datasets/仪表盘/train/labels/仪表盘1805180_53_7094781.txt b/datasets/仪表盘/train/labels/仪表盘1805180_53_7094781.txt new file mode 100644 index 0000000..7a82bf9 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805180_53_7094781.txt @@ -0,0 +1 @@ +0 0.430667 0.426000 0.858667 0.400000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805183_53_7094626.txt b/datasets/仪表盘/train/labels/仪表盘1805183_53_7094626.txt new file mode 100644 index 0000000..446fd4f --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805183_53_7094626.txt @@ -0,0 +1 @@ +0 0.534602 0.493656 0.778547 0.362168 diff --git a/datasets/仪表盘/train/labels/仪表盘1805184_53_7094833.txt b/datasets/仪表盘/train/labels/仪表盘1805184_53_7094833.txt new file mode 100644 index 0000000..fb85792 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805184_53_7094833.txt @@ -0,0 +1 @@ +0 0.562981 0.470833 0.614423 0.308333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805185_53_7094680.txt b/datasets/仪表盘/train/labels/仪表盘1805185_53_7094680.txt new file mode 100644 index 0000000..97a933a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805185_53_7094680.txt @@ -0,0 +1 @@ +0 0.482422 0.535807 0.767578 0.467448 diff --git a/datasets/仪表盘/train/labels/仪表盘1805190_53_7098361.txt b/datasets/仪表盘/train/labels/仪表盘1805190_53_7098361.txt new file mode 100644 index 0000000..9e6f434 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805190_53_7098361.txt @@ -0,0 +1 @@ +0 0.529612 0.419803 0.750756 0.672043 diff --git a/datasets/仪表盘/train/labels/仪表盘1805192_53_7094782.txt b/datasets/仪表盘/train/labels/仪表盘1805192_53_7094782.txt new file mode 100644 index 0000000..4d343c9 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805192_53_7094782.txt @@ -0,0 +1 @@ +0 0.430176 0.520508 0.655273 0.395182 diff --git a/datasets/仪表盘/train/labels/仪表盘1805197_53_7094965.txt b/datasets/仪表盘/train/labels/仪表盘1805197_53_7094965.txt new file mode 100644 index 0000000..a794fa2 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805197_53_7094965.txt @@ -0,0 +1 @@ +0 0.472765 0.545718 0.820964 0.448495 diff --git a/datasets/仪表盘/train/labels/仪表盘1805210_53_7095055.txt b/datasets/仪表盘/train/labels/仪表盘1805210_53_7095055.txt new file mode 100644 index 0000000..dbb800c --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805210_53_7095055.txt @@ -0,0 +1 @@ +0 0.461548 0.590332 0.795166 0.376628 diff --git a/datasets/仪表盘/train/labels/仪表盘1805216_53_7095038.txt b/datasets/仪表盘/train/labels/仪表盘1805216_53_7095038.txt new file mode 100644 index 0000000..0a1f867 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805216_53_7095038.txt @@ -0,0 +1 @@ +0 0.501736 0.471354 0.996528 0.505208 diff --git a/datasets/仪表盘/train/labels/仪表盘1805219_53_7095118.txt b/datasets/仪表盘/train/labels/仪表盘1805219_53_7095118.txt new file mode 100644 index 0000000..04b3d94 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805219_53_7095118.txt @@ -0,0 +1 @@ +0 0.543457 0.519531 0.798828 0.500000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805224_53_7095050.txt b/datasets/仪表盘/train/labels/仪表盘1805224_53_7095050.txt new file mode 100644 index 0000000..cb4b8c8 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805224_53_7095050.txt @@ -0,0 +1 @@ +0 0.503333 0.425000 0.993333 0.670000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805228_53_7095278.txt b/datasets/仪表盘/train/labels/仪表盘1805228_53_7095278.txt new file mode 100644 index 0000000..6c12607 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805228_53_7095278.txt @@ -0,0 +1 @@ +0 0.505208 0.415527 0.989583 0.430664 diff --git a/datasets/仪表盘/train/labels/仪表盘1805240_53_7095256.txt b/datasets/仪表盘/train/labels/仪表盘1805240_53_7095256.txt new file mode 100644 index 0000000..29252c4 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805240_53_7095256.txt @@ -0,0 +1 @@ +0 0.505859 0.514974 0.838867 0.453125 diff --git a/datasets/仪表盘/train/labels/仪表盘1805243_53_7095673.txt b/datasets/仪表盘/train/labels/仪表盘1805243_53_7095673.txt new file mode 100644 index 0000000..30379f0 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805243_53_7095673.txt @@ -0,0 +1 @@ +0 0.518382 0.551471 0.963235 0.579296 diff --git a/datasets/仪表盘/train/labels/仪表盘1805244_53_7095316.txt b/datasets/仪表盘/train/labels/仪表盘1805244_53_7095316.txt new file mode 100644 index 0000000..5f76091 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805244_53_7095316.txt @@ -0,0 +1 @@ +0 0.470486 0.344907 0.802083 0.518519 diff --git a/datasets/仪表盘/train/labels/仪表盘1805248_53_7095371.txt b/datasets/仪表盘/train/labels/仪表盘1805248_53_7095371.txt new file mode 100644 index 0000000..f383d27 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805248_53_7095371.txt @@ -0,0 +1 @@ +0 0.499760 0.540705 0.939904 0.439103 diff --git a/datasets/仪表盘/train/labels/仪表盘1805249_53_7095355.txt b/datasets/仪表盘/train/labels/仪表盘1805249_53_7095355.txt new file mode 100644 index 0000000..cd01b19 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805249_53_7095355.txt @@ -0,0 +1 @@ +0 0.538306 0.307124 0.618952 0.473118 diff --git a/datasets/仪表盘/train/labels/仪表盘1805260_53_7095573.txt b/datasets/仪表盘/train/labels/仪表盘1805260_53_7095573.txt new file mode 100644 index 0000000..0ed5152 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805260_53_7095573.txt @@ -0,0 +1 @@ +0 0.534539 0.490132 0.804825 0.717105 diff --git a/datasets/仪表盘/train/labels/仪表盘1805268_53_7095491.txt b/datasets/仪表盘/train/labels/仪表盘1805268_53_7095491.txt new file mode 100644 index 0000000..8086606 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805268_53_7095491.txt @@ -0,0 +1 @@ +0 0.492188 0.424769 0.814236 0.608796 diff --git a/datasets/仪表盘/train/labels/仪表盘1805269_53_7095984.txt b/datasets/仪表盘/train/labels/仪表盘1805269_53_7095984.txt new file mode 100644 index 0000000..ed16ecf --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805269_53_7095984.txt @@ -0,0 +1 @@ +0 0.510254 0.572917 0.979492 0.550781 diff --git a/datasets/仪表盘/train/labels/仪表盘1805287_53_7095770.txt b/datasets/仪表盘/train/labels/仪表盘1805287_53_7095770.txt new file mode 100644 index 0000000..2c77245 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805287_53_7095770.txt @@ -0,0 +1 @@ +0 0.484131 0.423177 0.913574 0.609375 diff --git a/datasets/仪表盘/train/labels/仪表盘1805293_53_7095809.txt b/datasets/仪表盘/train/labels/仪表盘1805293_53_7095809.txt new file mode 100644 index 0000000..8e54b62 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805293_53_7095809.txt @@ -0,0 +1 @@ +0 0.589461 0.525327 0.821078 0.849673 diff --git a/datasets/仪表盘/train/labels/仪表盘1805298_53_7095870.txt b/datasets/仪表盘/train/labels/仪表盘1805298_53_7095870.txt new file mode 100644 index 0000000..6327f31 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805298_53_7095870.txt @@ -0,0 +1 @@ +0 0.483750 0.475667 0.922500 0.522000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805299_53_7095938.txt b/datasets/仪表盘/train/labels/仪表盘1805299_53_7095938.txt new file mode 100644 index 0000000..258ab44 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805299_53_7095938.txt @@ -0,0 +1 @@ +0 0.507080 0.424154 0.760254 0.439453 diff --git a/datasets/仪表盘/train/labels/仪表盘1805301_53_7095844.txt b/datasets/仪表盘/train/labels/仪表盘1805301_53_7095844.txt new file mode 100644 index 0000000..66a3dbb --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805301_53_7095844.txt @@ -0,0 +1 @@ +0 0.469846 0.567982 0.813596 0.457602 diff --git a/datasets/仪表盘/train/labels/仪表盘1805304_53_7095868.txt b/datasets/仪表盘/train/labels/仪表盘1805304_53_7095868.txt new file mode 100644 index 0000000..42e1eee --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805304_53_7095868.txt @@ -0,0 +1 @@ +0 0.416378 0.414792 0.784314 0.277682 diff --git a/datasets/仪表盘/train/labels/仪表盘1805305_53_7095838.txt b/datasets/仪表盘/train/labels/仪表盘1805305_53_7095838.txt new file mode 100644 index 0000000..2fac8e5 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805305_53_7095838.txt @@ -0,0 +1 @@ +0 0.546143 0.447266 0.821777 0.393229 diff --git a/datasets/仪表盘/train/labels/仪表盘1805307_53_7095894.txt b/datasets/仪表盘/train/labels/仪表盘1805307_53_7095894.txt new file mode 100644 index 0000000..9a1072a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805307_53_7095894.txt @@ -0,0 +1 @@ +0 0.459961 0.444987 0.788086 0.495443 diff --git a/datasets/仪表盘/train/labels/仪表盘1805308_53_7095992.txt b/datasets/仪表盘/train/labels/仪表盘1805308_53_7095992.txt new file mode 100644 index 0000000..328b6af --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805308_53_7095992.txt @@ -0,0 +1 @@ +0 0.515319 0.617647 0.969363 0.679085 diff --git a/datasets/仪表盘/train/labels/仪表盘1805309_53_7097248.txt b/datasets/仪表盘/train/labels/仪表盘1805309_53_7097248.txt new file mode 100644 index 0000000..b85a0b2 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805309_53_7097248.txt @@ -0,0 +1 @@ +0 0.484646 0.267000 0.899866 0.282000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805318_53_7096055.txt b/datasets/仪表盘/train/labels/仪表盘1805318_53_7096055.txt new file mode 100644 index 0000000..2de06fe --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805318_53_7096055.txt @@ -0,0 +1 @@ +0 0.532667 0.484000 0.934667 0.396000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805322_53_7096266.txt b/datasets/仪表盘/train/labels/仪表盘1805322_53_7096266.txt new file mode 100644 index 0000000..7f5d99e --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805322_53_7096266.txt @@ -0,0 +1 @@ +0 0.539062 0.393519 0.706597 0.737654 diff --git a/datasets/仪表盘/train/labels/仪表盘1805328_53_7096136.txt b/datasets/仪表盘/train/labels/仪表盘1805328_53_7096136.txt new file mode 100644 index 0000000..6d9704c --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805328_53_7096136.txt @@ -0,0 +1 @@ +0 0.401042 0.347778 0.673750 0.358889 diff --git a/datasets/仪表盘/train/labels/仪表盘1805329_53_7096219.txt b/datasets/仪表盘/train/labels/仪表盘1805329_53_7096219.txt new file mode 100644 index 0000000..ed78787 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805329_53_7096219.txt @@ -0,0 +1 @@ +0 0.516357 0.458984 0.873535 0.444010 diff --git a/datasets/仪表盘/train/labels/仪表盘1805331_53_7096204.txt b/datasets/仪表盘/train/labels/仪表盘1805331_53_7096204.txt new file mode 100644 index 0000000..6bd9ce5 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805331_53_7096204.txt @@ -0,0 +1 @@ +0 0.512695 0.498698 0.974609 0.532552 diff --git a/datasets/仪表盘/train/labels/仪表盘1805349_53_7096335.txt b/datasets/仪表盘/train/labels/仪表盘1805349_53_7096335.txt new file mode 100644 index 0000000..94e5aac --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805349_53_7096335.txt @@ -0,0 +1 @@ +0 0.572088 0.416955 0.788927 0.273356 diff --git a/datasets/仪表盘/train/labels/仪表盘1805352_53_7096325.txt b/datasets/仪表盘/train/labels/仪表盘1805352_53_7096325.txt new file mode 100644 index 0000000..a9e74a6 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805352_53_7096325.txt @@ -0,0 +1 @@ +0 0.566013 0.474510 0.522876 0.786275 diff --git a/datasets/仪表盘/train/labels/仪表盘1805356_53_7096714.txt b/datasets/仪表盘/train/labels/仪表盘1805356_53_7096714.txt new file mode 100644 index 0000000..9b66a61 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805356_53_7096714.txt @@ -0,0 +1 @@ +0 0.526563 0.382532 0.918990 0.534936 diff --git a/datasets/仪表盘/train/labels/仪表盘1805360_53_7096478.txt b/datasets/仪表盘/train/labels/仪表盘1805360_53_7096478.txt new file mode 100644 index 0000000..57f8822 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805360_53_7096478.txt @@ -0,0 +1 @@ +0 0.490234 0.477539 0.950195 0.746745 diff --git a/datasets/仪表盘/train/labels/仪表盘1805364_53_7096462.txt b/datasets/仪表盘/train/labels/仪表盘1805364_53_7096462.txt new file mode 100644 index 0000000..776a639 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805364_53_7096462.txt @@ -0,0 +1 @@ +0 0.467882 0.553241 0.918403 0.564815 diff --git a/datasets/仪表盘/train/labels/仪表盘1805365_53_7096484.txt b/datasets/仪表盘/train/labels/仪表盘1805365_53_7096484.txt new file mode 100644 index 0000000..68b1b31 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805365_53_7096484.txt @@ -0,0 +1 @@ +0 0.413818 0.475260 0.817871 0.444010 diff --git a/datasets/仪表盘/train/labels/仪表盘1805372_53_7097024.txt b/datasets/仪表盘/train/labels/仪表盘1805372_53_7097024.txt new file mode 100644 index 0000000..20d2ad8 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805372_53_7097024.txt @@ -0,0 +1 @@ +0 0.503472 0.539352 0.934028 0.592593 diff --git a/datasets/仪表盘/train/labels/仪表盘1805379_53_7096683.txt b/datasets/仪表盘/train/labels/仪表盘1805379_53_7096683.txt new file mode 100644 index 0000000..adac2e0 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805379_53_7096683.txt @@ -0,0 +1 @@ +0 0.465222 0.256384 0.493952 0.286962 diff --git a/datasets/仪表盘/train/labels/仪表盘1805384_53_7096650.txt b/datasets/仪表盘/train/labels/仪表盘1805384_53_7096650.txt new file mode 100644 index 0000000..5b8e2c7 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805384_53_7096650.txt @@ -0,0 +1 @@ +0 0.520750 0.335333 0.727500 0.485333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805386_53_7096738.txt b/datasets/仪表盘/train/labels/仪表盘1805386_53_7096738.txt new file mode 100644 index 0000000..53d6b04 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805386_53_7096738.txt @@ -0,0 +1 @@ +0 0.505208 0.328125 0.971354 0.382812 diff --git a/datasets/仪表盘/train/labels/仪表盘1805388_53_7096856.txt b/datasets/仪表盘/train/labels/仪表盘1805388_53_7096856.txt new file mode 100644 index 0000000..0eb8693 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805388_53_7096856.txt @@ -0,0 +1 @@ +0 0.509521 0.440430 0.904785 0.522786 diff --git a/datasets/仪表盘/train/labels/仪表盘1805389_53_7096881.txt b/datasets/仪表盘/train/labels/仪表盘1805389_53_7096881.txt new file mode 100644 index 0000000..9383616 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805389_53_7096881.txt @@ -0,0 +1 @@ +0 0.517878 0.483564 0.964245 0.370242 diff --git a/datasets/仪表盘/train/labels/仪表盘1805390_53_7096723.txt b/datasets/仪表盘/train/labels/仪表盘1805390_53_7096723.txt new file mode 100644 index 0000000..4a44a5a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805390_53_7096723.txt @@ -0,0 +1 @@ +0 0.540686 0.421569 0.918627 0.422222 diff --git a/datasets/仪表盘/train/labels/仪表盘1805396_53_7096868.txt b/datasets/仪表盘/train/labels/仪表盘1805396_53_7096868.txt new file mode 100644 index 0000000..0b2d33f --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805396_53_7096868.txt @@ -0,0 +1 @@ +0 0.503500 0.381333 0.948000 0.609333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805401_53_7096983.txt b/datasets/仪表盘/train/labels/仪表盘1805401_53_7096983.txt new file mode 100644 index 0000000..de6adb7 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805401_53_7096983.txt @@ -0,0 +1 @@ +0 0.566895 0.434462 0.866211 0.743924 diff --git a/datasets/仪表盘/train/labels/仪表盘1805434_53_7097105.txt b/datasets/仪表盘/train/labels/仪表盘1805434_53_7097105.txt new file mode 100644 index 0000000..099b113 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805434_53_7097105.txt @@ -0,0 +1 @@ +0 0.549561 0.435872 0.853027 0.430339 diff --git a/datasets/仪表盘/train/labels/仪表盘1805450_53_7097432.txt b/datasets/仪表盘/train/labels/仪表盘1805450_53_7097432.txt new file mode 100644 index 0000000..a2c204e --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805450_53_7097432.txt @@ -0,0 +1 @@ +0 0.492000 0.467333 0.812000 0.413333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805465_53_7097436.txt b/datasets/仪表盘/train/labels/仪表盘1805465_53_7097436.txt new file mode 100644 index 0000000..70e5e8d --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805465_53_7097436.txt @@ -0,0 +1 @@ +0 0.543457 0.475260 0.690430 0.364583 diff --git a/datasets/仪表盘/train/labels/仪表盘1805491_53_7097702.txt b/datasets/仪表盘/train/labels/仪表盘1805491_53_7097702.txt new file mode 100644 index 0000000..c38f62b --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805491_53_7097702.txt @@ -0,0 +1 @@ +0 0.481771 0.481445 0.770833 0.271484 diff --git a/datasets/仪表盘/train/labels/仪表盘1805493_53_7097746.txt b/datasets/仪表盘/train/labels/仪表盘1805493_53_7097746.txt new file mode 100644 index 0000000..4852f6e --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805493_53_7097746.txt @@ -0,0 +1 @@ +0 0.533936 0.521810 0.876953 0.518229 diff --git a/datasets/仪表盘/train/labels/仪表盘1805501_53_7097785.txt b/datasets/仪表盘/train/labels/仪表盘1805501_53_7097785.txt new file mode 100644 index 0000000..4a2c1bf --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805501_53_7097785.txt @@ -0,0 +1 @@ +0 0.421115 0.462384 0.732422 0.402778 diff --git a/datasets/仪表盘/train/labels/仪表盘1805502_53_7097776.txt b/datasets/仪表盘/train/labels/仪表盘1805502_53_7097776.txt new file mode 100644 index 0000000..eaa0d1a --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805502_53_7097776.txt @@ -0,0 +1 @@ +0 0.452500 0.383667 0.826000 0.462000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805504_53_7097800.txt b/datasets/仪表盘/train/labels/仪表盘1805504_53_7097800.txt new file mode 100644 index 0000000..9a026b1 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805504_53_7097800.txt @@ -0,0 +1 @@ +0 0.499783 0.505932 0.770399 0.412326 diff --git a/datasets/仪表盘/train/labels/仪表盘1805514_53_7097869.txt b/datasets/仪表盘/train/labels/仪表盘1805514_53_7097869.txt new file mode 100644 index 0000000..3187d14 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805514_53_7097869.txt @@ -0,0 +1 @@ +0 0.476000 0.501333 0.662000 0.744889 diff --git a/datasets/仪表盘/train/labels/仪表盘1805515_53_7097961.txt b/datasets/仪表盘/train/labels/仪表盘1805515_53_7097961.txt new file mode 100644 index 0000000..63186b8 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805515_53_7097961.txt @@ -0,0 +1 @@ +0 0.497314 0.482096 0.870605 0.332682 diff --git a/datasets/仪表盘/train/labels/仪表盘1805518_53_7097905.txt b/datasets/仪表盘/train/labels/仪表盘1805518_53_7097905.txt new file mode 100644 index 0000000..6a2ef67 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805518_53_7097905.txt @@ -0,0 +1 @@ +0 0.500481 0.524359 0.999038 0.582051 diff --git a/datasets/仪表盘/train/labels/仪表盘1805521_53_7097894.txt b/datasets/仪表盘/train/labels/仪表盘1805521_53_7097894.txt new file mode 100644 index 0000000..fd9fd3e --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805521_53_7097894.txt @@ -0,0 +1 @@ +0 0.459717 0.493815 0.648926 0.504557 diff --git a/datasets/仪表盘/train/labels/仪表盘1805534_53_7098083.txt b/datasets/仪表盘/train/labels/仪表盘1805534_53_7098083.txt new file mode 100644 index 0000000..ba4e465 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805534_53_7098083.txt @@ -0,0 +1 @@ +0 0.588000 0.454667 0.738000 0.485333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805535_53_7098015.txt b/datasets/仪表盘/train/labels/仪表盘1805535_53_7098015.txt new file mode 100644 index 0000000..bea01a9 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805535_53_7098015.txt @@ -0,0 +1 @@ +0 0.633301 0.384766 0.503906 0.485677 diff --git a/datasets/仪表盘/train/labels/仪表盘1805551_53_7098231.txt b/datasets/仪表盘/train/labels/仪表盘1805551_53_7098231.txt new file mode 100644 index 0000000..3baf06e --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805551_53_7098231.txt @@ -0,0 +1 @@ +0 0.531006 0.457682 0.937988 0.553385 diff --git a/datasets/仪表盘/train/labels/仪表盘1805555_53_7098385.txt b/datasets/仪表盘/train/labels/仪表盘1805555_53_7098385.txt new file mode 100644 index 0000000..597b990 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805555_53_7098385.txt @@ -0,0 +1 @@ +0 0.510337 0.534936 0.979327 0.655769 diff --git a/datasets/仪表盘/train/labels/仪表盘1805586_53_7098658.txt b/datasets/仪表盘/train/labels/仪表盘1805586_53_7098658.txt new file mode 100644 index 0000000..10bc754 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805586_53_7098658.txt @@ -0,0 +1 @@ +0 0.482843 0.409314 0.766340 0.308824 diff --git a/datasets/仪表盘/train/labels/仪表盘1805588_53_7098649.txt b/datasets/仪表盘/train/labels/仪表盘1805588_53_7098649.txt new file mode 100644 index 0000000..7afa380 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805588_53_7098649.txt @@ -0,0 +1 @@ +0 0.504150 0.422852 0.991699 0.669922 diff --git a/datasets/仪表盘/train/labels/仪表盘1805590_53_7098527.txt b/datasets/仪表盘/train/labels/仪表盘1805590_53_7098527.txt new file mode 100644 index 0000000..b76199d --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805590_53_7098527.txt @@ -0,0 +1 @@ +0 0.432861 0.375326 0.744629 0.430339 diff --git a/datasets/仪表盘/train/labels/仪表盘1805595_53_7098588.txt b/datasets/仪表盘/train/labels/仪表盘1805595_53_7098588.txt new file mode 100644 index 0000000..87ac858 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805595_53_7098588.txt @@ -0,0 +1 @@ +0 0.498291 0.388021 0.875488 0.651042 diff --git a/datasets/仪表盘/train/labels/仪表盘1805598_53_7099008.txt b/datasets/仪表盘/train/labels/仪表盘1805598_53_7099008.txt new file mode 100644 index 0000000..e25319d --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805598_53_7099008.txt @@ -0,0 +1 @@ +0 0.442667 0.267000 0.792000 0.358000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805601_53_7098679.txt b/datasets/仪表盘/train/labels/仪表盘1805601_53_7098679.txt new file mode 100644 index 0000000..a4dd48c --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805601_53_7098679.txt @@ -0,0 +1 @@ +0 0.439697 0.547526 0.855957 0.588542 diff --git a/datasets/仪表盘/train/labels/仪表盘1805603_53_7098614.txt b/datasets/仪表盘/train/labels/仪表盘1805603_53_7098614.txt new file mode 100644 index 0000000..b9748ff --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805603_53_7098614.txt @@ -0,0 +1 @@ +0 0.502500 0.495000 0.995000 0.690000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805604_53_7098683.txt b/datasets/仪表盘/train/labels/仪表盘1805604_53_7098683.txt new file mode 100644 index 0000000..d666bc3 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805604_53_7098683.txt @@ -0,0 +1 @@ +0 0.535645 0.435872 0.790039 0.472005 diff --git a/datasets/仪表盘/train/labels/仪表盘1805606_53_7098590.txt b/datasets/仪表盘/train/labels/仪表盘1805606_53_7098590.txt new file mode 100644 index 0000000..63de10d --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805606_53_7098590.txt @@ -0,0 +1 @@ +0 0.554902 0.506373 0.709804 0.987255 diff --git a/datasets/仪表盘/train/labels/仪表盘1805611_53_7098731.txt b/datasets/仪表盘/train/labels/仪表盘1805611_53_7098731.txt new file mode 100644 index 0000000..f78c3bc --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805611_53_7098731.txt @@ -0,0 +1 @@ +0 0.467448 0.442383 0.914062 0.388672 diff --git a/datasets/仪表盘/train/labels/仪表盘1805613_53_7098990.txt b/datasets/仪表盘/train/labels/仪表盘1805613_53_7098990.txt new file mode 100644 index 0000000..44646d4 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805613_53_7098990.txt @@ -0,0 +1 @@ +0 0.509766 0.383789 0.980469 0.500488 diff --git a/datasets/仪表盘/train/labels/仪表盘1805625_53_7098895.txt b/datasets/仪表盘/train/labels/仪表盘1805625_53_7098895.txt new file mode 100644 index 0000000..692738d --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805625_53_7098895.txt @@ -0,0 +1 @@ +0 0.500000 0.517000 0.906667 0.326000 diff --git a/datasets/仪表盘/train/labels/仪表盘1805642_53_7099041.txt b/datasets/仪表盘/train/labels/仪表盘1805642_53_7099041.txt new file mode 100644 index 0000000..bcc531f --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805642_53_7099041.txt @@ -0,0 +1 @@ +0 0.348118 0.290323 0.653226 0.443548 diff --git a/datasets/仪表盘/train/labels/仪表盘1805648_53_7099268.txt b/datasets/仪表盘/train/labels/仪表盘1805648_53_7099268.txt new file mode 100644 index 0000000..b5db580 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805648_53_7099268.txt @@ -0,0 +1 @@ +0 0.460938 0.578704 0.842014 0.552469 diff --git a/datasets/仪表盘/train/labels/仪表盘1805653_53_7099135.txt b/datasets/仪表盘/train/labels/仪表盘1805653_53_7099135.txt new file mode 100644 index 0000000..b3f7d27 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805653_53_7099135.txt @@ -0,0 +1 @@ +0 0.548520 0.286184 0.762610 0.497807 diff --git a/datasets/仪表盘/train/labels/仪表盘1805654_53_7099175.txt b/datasets/仪表盘/train/labels/仪表盘1805654_53_7099175.txt new file mode 100644 index 0000000..b5830cc --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805654_53_7099175.txt @@ -0,0 +1 @@ +0 0.587019 0.442308 0.779808 0.470513 diff --git a/datasets/仪表盘/train/labels/仪表盘1805656_53_7099388.txt b/datasets/仪表盘/train/labels/仪表盘1805656_53_7099388.txt new file mode 100644 index 0000000..c86f7d1 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805656_53_7099388.txt @@ -0,0 +1 @@ +0 0.511963 0.492839 0.976074 0.553385 diff --git a/datasets/仪表盘/train/labels/仪表盘1805663_53_7099180.txt b/datasets/仪表盘/train/labels/仪表盘1805663_53_7099180.txt new file mode 100644 index 0000000..6dd7e08 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805663_53_7099180.txt @@ -0,0 +1 @@ +0 0.467250 0.498667 0.724500 0.701333 diff --git a/datasets/仪表盘/train/labels/仪表盘1805666_53_7099283.txt b/datasets/仪表盘/train/labels/仪表盘1805666_53_7099283.txt new file mode 100644 index 0000000..37a6ab8 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805666_53_7099283.txt @@ -0,0 +1 @@ +0 0.394531 0.533691 0.666667 0.928711 diff --git a/datasets/仪表盘/train/labels/仪表盘1805668_53_7099201.txt b/datasets/仪表盘/train/labels/仪表盘1805668_53_7099201.txt new file mode 100644 index 0000000..d053d00 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805668_53_7099201.txt @@ -0,0 +1 @@ +0 0.477431 0.476852 0.854167 0.518519 diff --git a/datasets/仪表盘/train/labels/仪表盘1805674_53_7099289.txt b/datasets/仪表盘/train/labels/仪表盘1805674_53_7099289.txt new file mode 100644 index 0000000..2f0d7e1 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805674_53_7099289.txt @@ -0,0 +1 @@ +0 0.491943 0.502279 0.884277 0.548828 diff --git a/datasets/仪表盘/train/labels/仪表盘1805686_53_7099505.txt b/datasets/仪表盘/train/labels/仪表盘1805686_53_7099505.txt new file mode 100644 index 0000000..03a0db9 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805686_53_7099505.txt @@ -0,0 +1 @@ +0 0.509277 0.528646 0.981445 0.541667 diff --git a/datasets/仪表盘/train/labels/仪表盘1805687_53_7099435.txt b/datasets/仪表盘/train/labels/仪表盘1805687_53_7099435.txt new file mode 100644 index 0000000..d6f0a7b --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805687_53_7099435.txt @@ -0,0 +1 @@ +0 0.550000 0.543137 0.726471 0.371242 diff --git a/datasets/仪表盘/train/labels/仪表盘1805705_53_7099719.txt b/datasets/仪表盘/train/labels/仪表盘1805705_53_7099719.txt new file mode 100644 index 0000000..c57e1e1 --- /dev/null +++ b/datasets/仪表盘/train/labels/仪表盘1805705_53_7099719.txt @@ -0,0 +1 @@ +0 0.456689 0.359284 0.638158 0.379386 diff --git a/datasets/仪表盘/val/.DS_Store b/datasets/仪表盘/val/.DS_Store new file mode 100644 index 0000000..00fd48f Binary files /dev/null and b/datasets/仪表盘/val/.DS_Store differ diff --git a/datasets/仪表盘/val/images/仪表盘1805071_53_7093763.jpg b/datasets/仪表盘/val/images/仪表盘1805071_53_7093763.jpg new file mode 100644 index 0000000..55a66e3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805071_53_7093763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d22825b8639f17018f8eb3cc2504f86c4c7ba6cf73a41914b9189594b14ca3 +size 387418 diff --git a/datasets/仪表盘/val/images/仪表盘1805078_53_7093811.jpg b/datasets/仪表盘/val/images/仪表盘1805078_53_7093811.jpg new file mode 100644 index 0000000..d7ea1e1 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805078_53_7093811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6989513caf5ff84e5a1dd36845ff17a4c675a8487fbcd192a435d062c279e9ab +size 117434 diff --git a/datasets/仪表盘/val/images/仪表盘1805080_53_7093834.jpg b/datasets/仪表盘/val/images/仪表盘1805080_53_7093834.jpg new file mode 100644 index 0000000..1d5822a --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805080_53_7093834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3299cbe15f3be96700f22f0cbfc765b9ed7f6c799dda2616cd096e0e420bd3a1 +size 180712 diff --git a/datasets/仪表盘/val/images/仪表盘1805087_53_7093928.jpg b/datasets/仪表盘/val/images/仪表盘1805087_53_7093928.jpg new file mode 100644 index 0000000..a673d74 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805087_53_7093928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b770cfd5cabe63022bc78a01ebe1d913091225b1a181cb5404b8b734364fa9 +size 264850 diff --git a/datasets/仪表盘/val/images/仪表盘1805090_53_7094299.jpg b/datasets/仪表盘/val/images/仪表盘1805090_53_7094299.jpg new file mode 100644 index 0000000..7659949 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805090_53_7094299.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f10799ad228c1ac7d25564be0a083c33af8327a798d5331697bd382bffb348 +size 241762 diff --git a/datasets/仪表盘/val/images/仪表盘1805099_53_7093976.jpg b/datasets/仪表盘/val/images/仪表盘1805099_53_7093976.jpg new file mode 100644 index 0000000..6eee4ad --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805099_53_7093976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d3e5468d81f841048dc4c3249b148923a8f9198111b18e769ab8a87d5dc5ea +size 388651 diff --git a/datasets/仪表盘/val/images/仪表盘1805111_53_7094022.jpg b/datasets/仪表盘/val/images/仪表盘1805111_53_7094022.jpg new file mode 100644 index 0000000..433de68 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805111_53_7094022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60d17d890b94976e41f6ce03f897f5f56a2188266e0b72bd9407799ebb01d488 +size 294080 diff --git a/datasets/仪表盘/val/images/仪表盘1805126_53_7094312.jpg b/datasets/仪表盘/val/images/仪表盘1805126_53_7094312.jpg new file mode 100644 index 0000000..9fbd5a9 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805126_53_7094312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffbc9c037113672d5035ee35200393b1b80be3ecce77c2b575c14a5eb73caa2 +size 66371 diff --git a/datasets/仪表盘/val/images/仪表盘1805130_53_7094431.jpg b/datasets/仪表盘/val/images/仪表盘1805130_53_7094431.jpg new file mode 100644 index 0000000..b023227 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805130_53_7094431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379b247e3799aa95a54ce9e8913d21b0eff4fa0261e6aba08ea7c436d5ea5f16 +size 209052 diff --git a/datasets/仪表盘/val/images/仪表盘1805138_53_7094752.jpg b/datasets/仪表盘/val/images/仪表盘1805138_53_7094752.jpg new file mode 100644 index 0000000..a95a176 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805138_53_7094752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43f73d6869b8c387d70282d8c6919f81ddf8ea3f894c1a012ee8ae5fc39e63c +size 394505 diff --git a/datasets/仪表盘/val/images/仪表盘1805140_53_7094510.jpg b/datasets/仪表盘/val/images/仪表盘1805140_53_7094510.jpg new file mode 100644 index 0000000..29d6b6a --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805140_53_7094510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46d896bcd1c5147a5047b71d58048edc691c43249aa8bdb3e8cf7ac0f21ac9d +size 188116 diff --git a/datasets/仪表盘/val/images/仪表盘1805144_53_7094338.jpg b/datasets/仪表盘/val/images/仪表盘1805144_53_7094338.jpg new file mode 100644 index 0000000..172f91f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805144_53_7094338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfbadacacc4fd152c8733928cecd4ff7acc51c2ebe6a2ceb2a55667f8dae271 +size 270803 diff --git a/datasets/仪表盘/val/images/仪表盘1805156_53_7094438.jpg b/datasets/仪表盘/val/images/仪表盘1805156_53_7094438.jpg new file mode 100644 index 0000000..52e6b2c --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805156_53_7094438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5ff5f565250765a16a85663acfe34f8df9cc96291aaf80e6c3b8ba264c98b7 +size 109466 diff --git a/datasets/仪表盘/val/images/仪表盘1805166_53_7094726.jpg b/datasets/仪表盘/val/images/仪表盘1805166_53_7094726.jpg new file mode 100644 index 0000000..0b2c4b4 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805166_53_7094726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233d83d08c6891d56b4afdd40344728ce648b71c4d3e862375e97180a95f72c9 +size 535142 diff --git a/datasets/仪表盘/val/images/仪表盘1805169_53_7094633.jpg b/datasets/仪表盘/val/images/仪表盘1805169_53_7094633.jpg new file mode 100644 index 0000000..1e763cd --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805169_53_7094633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc80cbf08a67880ff4bd8545874466a3ac6700ba7c02ba0fad4a924472f1f17a +size 195084 diff --git a/datasets/仪表盘/val/images/仪表盘1805171_53_7094531.jpg b/datasets/仪表盘/val/images/仪表盘1805171_53_7094531.jpg new file mode 100644 index 0000000..c3a5d68 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805171_53_7094531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44e0d1ed2572aaf221c3b4bfa3f94ba33c2cea5ad515b71a3ebe9de34737fa8 +size 230777 diff --git a/datasets/仪表盘/val/images/仪表盘1805180_53_7094781.jpg b/datasets/仪表盘/val/images/仪表盘1805180_53_7094781.jpg new file mode 100644 index 0000000..afbd667 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805180_53_7094781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a03a63f1711950eaa8729480a0a89d67b4cb6484ec607c321be78556a356f35 +size 94591 diff --git a/datasets/仪表盘/val/images/仪表盘1805183_53_7094626.jpg b/datasets/仪表盘/val/images/仪表盘1805183_53_7094626.jpg new file mode 100644 index 0000000..eaf91b0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805183_53_7094626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748bd4efc49d6ded4f45908462e34580695131bed2a1c45ccf9a4c3782e7e14e +size 145942 diff --git a/datasets/仪表盘/val/images/仪表盘1805184_53_7094833.jpg b/datasets/仪表盘/val/images/仪表盘1805184_53_7094833.jpg new file mode 100644 index 0000000..945120d --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805184_53_7094833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e5b1e7093eea46e05bfc6c3fc9f8cbd7f8c705a1ac4aff5f4c2175a97f415c +size 284857 diff --git a/datasets/仪表盘/val/images/仪表盘1805185_53_7094680.jpg b/datasets/仪表盘/val/images/仪表盘1805185_53_7094680.jpg new file mode 100644 index 0000000..07dadd4 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805185_53_7094680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87452af3e2428f2fe95421b8e326564f0e04830173bd7058c42af6fb0a40533d +size 127079 diff --git a/datasets/仪表盘/val/images/仪表盘1805190_53_7098361.jpg b/datasets/仪表盘/val/images/仪表盘1805190_53_7098361.jpg new file mode 100644 index 0000000..014acae --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805190_53_7098361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292f86f28015fab13d4ec370ff5ca046b6aebffbdfd4b45884a14cb33bf2f98e +size 500556 diff --git a/datasets/仪表盘/val/images/仪表盘1805192_53_7094782.jpg b/datasets/仪表盘/val/images/仪表盘1805192_53_7094782.jpg new file mode 100644 index 0000000..5fc4e75 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805192_53_7094782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cec2ce48d524c9dc6ff00ddfe3e45d6b389dcb6260dceb201c3cbd61878d1e2 +size 331599 diff --git a/datasets/仪表盘/val/images/仪表盘1805197_53_7094965.jpg b/datasets/仪表盘/val/images/仪表盘1805197_53_7094965.jpg new file mode 100644 index 0000000..0ea6803 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805197_53_7094965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91f6d12f9252b50dca53b85df93e178afa20a2739ef2f3c46fbcdc095117f4c2 +size 569554 diff --git a/datasets/仪表盘/val/images/仪表盘1805210_53_7095055.jpg b/datasets/仪表盘/val/images/仪表盘1805210_53_7095055.jpg new file mode 100644 index 0000000..f09bb69 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805210_53_7095055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fdc992b6a9b1c7718801731664e9bdf8d7ca7ae3adc3936019a7df95655d2cd +size 458422 diff --git a/datasets/仪表盘/val/images/仪表盘1805216_53_7095038.jpg b/datasets/仪表盘/val/images/仪表盘1805216_53_7095038.jpg new file mode 100644 index 0000000..1aa4a8a --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805216_53_7095038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f6cdfae14cc552d245c3102c865f2889360a9ffd0f05770e4205860dd92138 +size 95060 diff --git a/datasets/仪表盘/val/images/仪表盘1805219_53_7095118.jpg b/datasets/仪表盘/val/images/仪表盘1805219_53_7095118.jpg new file mode 100644 index 0000000..61d99d7 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805219_53_7095118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17cbcf8b60baaee9c1d42839b8182b565510b406d89a1aece1d9c5bea8a6971 +size 312047 diff --git a/datasets/仪表盘/val/images/仪表盘1805224_53_7095050.jpg b/datasets/仪表盘/val/images/仪表盘1805224_53_7095050.jpg new file mode 100644 index 0000000..282b1e1 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805224_53_7095050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6537a25a7a86be4a4153d25bb21353b9ac0874537ebcf4f1f2345348ea6435d2 +size 112878 diff --git a/datasets/仪表盘/val/images/仪表盘1805228_53_7095278.jpg b/datasets/仪表盘/val/images/仪表盘1805228_53_7095278.jpg new file mode 100644 index 0000000..6235731 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805228_53_7095278.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e2dc60d372153b2a0813d9460839129bb4e637f9e98cc50ad17202c6be0e9f +size 87423 diff --git a/datasets/仪表盘/val/images/仪表盘1805240_53_7095256.jpg b/datasets/仪表盘/val/images/仪表盘1805240_53_7095256.jpg new file mode 100644 index 0000000..15b5a82 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805240_53_7095256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c112d621e79413c156864e901203b37614bfac7d4330c5fcb1b5cdcd915a7f +size 289655 diff --git a/datasets/仪表盘/val/images/仪表盘1805243_53_7095673.jpg b/datasets/仪表盘/val/images/仪表盘1805243_53_7095673.jpg new file mode 100644 index 0000000..9b454a0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805243_53_7095673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f799bc869c507580b19257efede0a2abe1ffa63388fde6449b9cafeb64f4e42 +size 1665283 diff --git a/datasets/仪表盘/val/images/仪表盘1805244_53_7095316.jpg b/datasets/仪表盘/val/images/仪表盘1805244_53_7095316.jpg new file mode 100644 index 0000000..cea5a92 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805244_53_7095316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21fe941a1f08af2bf9a6e85397f7c2e618c36ec8c8e9c82fbd12f5081a6958b +size 71782 diff --git a/datasets/仪表盘/val/images/仪表盘1805248_53_7095371.jpg b/datasets/仪表盘/val/images/仪表盘1805248_53_7095371.jpg new file mode 100644 index 0000000..afa2c6d --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805248_53_7095371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621302cdc628021bcf1cd8c394359f3ff16ceaec4fdab74db9506fcf656349ad +size 420936 diff --git a/datasets/仪表盘/val/images/仪表盘1805249_53_7095355.jpg b/datasets/仪表盘/val/images/仪表盘1805249_53_7095355.jpg new file mode 100644 index 0000000..2648169 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805249_53_7095355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a72372f8b9cd2d07d02110de6ad72881631f3299d149b2058d1362ab68c4cd +size 485792 diff --git a/datasets/仪表盘/val/images/仪表盘1805260_53_7095573.jpg b/datasets/仪表盘/val/images/仪表盘1805260_53_7095573.jpg new file mode 100644 index 0000000..174426d --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805260_53_7095573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb85d483f8f8717b6af2c6726170d9e3c1d61ca4ef1dcb02d137b7e13a85722 +size 275551 diff --git a/datasets/仪表盘/val/images/仪表盘1805268_53_7095491.jpg b/datasets/仪表盘/val/images/仪表盘1805268_53_7095491.jpg new file mode 100644 index 0000000..a3ef149 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805268_53_7095491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80526c26c2113cbef3dabf7ddbbc731410fe0f8db51e4e266e4943c355fb580 +size 81461 diff --git a/datasets/仪表盘/val/images/仪表盘1805269_53_7095984.jpg b/datasets/仪表盘/val/images/仪表盘1805269_53_7095984.jpg new file mode 100644 index 0000000..028f194 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805269_53_7095984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0375da6ad98921e186839fd7aca632bbcb96c20fea32e8d32b39c73cb846213c +size 278599 diff --git a/datasets/仪表盘/val/images/仪表盘1805287_53_7095770.jpg b/datasets/仪表盘/val/images/仪表盘1805287_53_7095770.jpg new file mode 100644 index 0000000..12e4886 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805287_53_7095770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4466292c773aa0344ef355a812a6d7bb1b233357f15a89aace78d89c4a3605e +size 221826 diff --git a/datasets/仪表盘/val/images/仪表盘1805293_53_7095809.jpg b/datasets/仪表盘/val/images/仪表盘1805293_53_7095809.jpg new file mode 100644 index 0000000..f13887f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805293_53_7095809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4777e2bfb463222accfef202d61d4146f8aaebc795a39b466c7ea6ca1445faa +size 217659 diff --git a/datasets/仪表盘/val/images/仪表盘1805298_53_7095870.jpg b/datasets/仪表盘/val/images/仪表盘1805298_53_7095870.jpg new file mode 100644 index 0000000..4adcceb --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805298_53_7095870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d219c7bd0fe208c2a10ebade5a8c9492b6e2691dcbd41eed0ef9571d49bd440d +size 389188 diff --git a/datasets/仪表盘/val/images/仪表盘1805299_53_7095938.jpg b/datasets/仪表盘/val/images/仪表盘1805299_53_7095938.jpg new file mode 100644 index 0000000..02917a3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805299_53_7095938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3cfb6aba568d1356edfa655a67190b657a510198ab33e018738ed6aa6ccda4 +size 265312 diff --git a/datasets/仪表盘/val/images/仪表盘1805301_53_7095844.jpg b/datasets/仪表盘/val/images/仪表盘1805301_53_7095844.jpg new file mode 100644 index 0000000..dd3a5f2 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805301_53_7095844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5275ee4505aa2866eab745e28ca532e375261dc9a513a9b62f7973652ccc2f5f +size 235718 diff --git a/datasets/仪表盘/val/images/仪表盘1805304_53_7095868.jpg b/datasets/仪表盘/val/images/仪表盘1805304_53_7095868.jpg new file mode 100644 index 0000000..a113512 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805304_53_7095868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5f755c1ea8a6388309d2a7587aeca47636099cdd0e506f741d2fbcb4a339b5 +size 119052 diff --git a/datasets/仪表盘/val/images/仪表盘1805305_53_7095838.jpg b/datasets/仪表盘/val/images/仪表盘1805305_53_7095838.jpg new file mode 100644 index 0000000..9dcc2f2 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805305_53_7095838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb74176ffc822726251996082ed3e934bf31c1b1f50f918390072f5ceb90c0c +size 509423 diff --git a/datasets/仪表盘/val/images/仪表盘1805307_53_7095894.jpg b/datasets/仪表盘/val/images/仪表盘1805307_53_7095894.jpg new file mode 100644 index 0000000..098ceb3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805307_53_7095894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6a8f181fcbd449b8537cd67f9af51da940cf6992910ee560139dc6eb1a300c +size 225565 diff --git a/datasets/仪表盘/val/images/仪表盘1805308_53_7095992.jpg b/datasets/仪表盘/val/images/仪表盘1805308_53_7095992.jpg new file mode 100644 index 0000000..92d1949 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805308_53_7095992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cca34e5018988db5fe96a45f8f9541e208ad11e33d0cf8a8e5a0d153c48a57c +size 1323599 diff --git a/datasets/仪表盘/val/images/仪表盘1805309_53_7097248.jpg b/datasets/仪表盘/val/images/仪表盘1805309_53_7097248.jpg new file mode 100644 index 0000000..4c23404 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805309_53_7097248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24aeb5a7221f835c76a3a9537878578f197e1d78c3911833fc4c05c0458a1a4a +size 109854 diff --git a/datasets/仪表盘/val/images/仪表盘1805318_53_7096055.jpg b/datasets/仪表盘/val/images/仪表盘1805318_53_7096055.jpg new file mode 100644 index 0000000..e45a0a1 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805318_53_7096055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ecfd819ee70387719118336bf428d37c49a49379a8dad424651d04fe1f362f +size 57812 diff --git a/datasets/仪表盘/val/images/仪表盘1805322_53_7096266.jpg b/datasets/仪表盘/val/images/仪表盘1805322_53_7096266.jpg new file mode 100644 index 0000000..7440c5e --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805322_53_7096266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f6dfad4df3017a0a29181685fb3ca863d5d1fd9d54768bd2c01fd922db09ab +size 272879 diff --git a/datasets/仪表盘/val/images/仪表盘1805328_53_7096136.jpg b/datasets/仪表盘/val/images/仪表盘1805328_53_7096136.jpg new file mode 100644 index 0000000..c4c5225 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805328_53_7096136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1880a81157450db6c1bbe31960423c76c97f6f3f6b808ac4a7571d7f58ae286a +size 288113 diff --git a/datasets/仪表盘/val/images/仪表盘1805329_53_7096219.jpg b/datasets/仪表盘/val/images/仪表盘1805329_53_7096219.jpg new file mode 100644 index 0000000..8fcb6a8 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805329_53_7096219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a067ada12858b8330cf43a689eba3b8174174c54e08759e10b92543057614b7a +size 340423 diff --git a/datasets/仪表盘/val/images/仪表盘1805331_53_7096204.jpg b/datasets/仪表盘/val/images/仪表盘1805331_53_7096204.jpg new file mode 100644 index 0000000..3249d18 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805331_53_7096204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69447fa825e98f59a92e6a14b73853557c8382515f926e73c586be4160cf8b7c +size 222230 diff --git a/datasets/仪表盘/val/images/仪表盘1805339_53_7096547.jpg b/datasets/仪表盘/val/images/仪表盘1805339_53_7096547.jpg new file mode 100644 index 0000000..c27f361 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805339_53_7096547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd087276b7cd8b7091661131dff28cee4f9d2ebbddecbc4d7833e8b69f45e3a +size 70455 diff --git a/datasets/仪表盘/val/images/仪表盘1805349_53_7096335.jpg b/datasets/仪表盘/val/images/仪表盘1805349_53_7096335.jpg new file mode 100644 index 0000000..4508ccd --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805349_53_7096335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b3f47dd97cc44a8cce9377804d88fc64377299c136e4111e01209d394d5894 +size 79263 diff --git a/datasets/仪表盘/val/images/仪表盘1805352_53_7096325.jpg b/datasets/仪表盘/val/images/仪表盘1805352_53_7096325.jpg new file mode 100644 index 0000000..d3cbe45 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805352_53_7096325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd25034fee49e421ed72127222dd745b9d35f9d5de018d8249a1034e856e1148 +size 82732 diff --git a/datasets/仪表盘/val/images/仪表盘1805356_53_7096714.jpg b/datasets/仪表盘/val/images/仪表盘1805356_53_7096714.jpg new file mode 100644 index 0000000..a312272 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805356_53_7096714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35118c5914915dd3f2be23665304e460a9cbdc063369ef44062e64a68bb38b62 +size 585015 diff --git a/datasets/仪表盘/val/images/仪表盘1805360_53_7096478.jpg b/datasets/仪表盘/val/images/仪表盘1805360_53_7096478.jpg new file mode 100644 index 0000000..946e26f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805360_53_7096478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf0311af55a1ef8b8b6935717612f0907586e108e26e9f7356ce2abb9caeb28 +size 188506 diff --git a/datasets/仪表盘/val/images/仪表盘1805364_53_7096462.jpg b/datasets/仪表盘/val/images/仪表盘1805364_53_7096462.jpg new file mode 100644 index 0000000..4b335ff --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805364_53_7096462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abf4cb3378effb7e03b15a166a5d3b07faa75775862c68352f6b9d6c60da421 +size 145228 diff --git a/datasets/仪表盘/val/images/仪表盘1805365_53_7096484.jpg b/datasets/仪表盘/val/images/仪表盘1805365_53_7096484.jpg new file mode 100644 index 0000000..c0c5b8b --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805365_53_7096484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd4836c497d50e9bcf03dca418e29690e8022fc11db560350c181dfea505ea6 +size 184719 diff --git a/datasets/仪表盘/val/images/仪表盘1805372_53_7097024.jpg b/datasets/仪表盘/val/images/仪表盘1805372_53_7097024.jpg new file mode 100644 index 0000000..ba9fbe9 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805372_53_7097024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cebdbca68db311d420510885b4bdff5ecbe748ff8073ad15a75da8b260d19fe +size 92840 diff --git a/datasets/仪表盘/val/images/仪表盘1805379_53_7096683.jpg b/datasets/仪表盘/val/images/仪表盘1805379_53_7096683.jpg new file mode 100644 index 0000000..31544db --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805379_53_7096683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c2abcc23aaac1307c3f848edede15f709e2b89eefc1cbc136d754651b1df06 +size 443870 diff --git a/datasets/仪表盘/val/images/仪表盘1805384_53_7096650.jpg b/datasets/仪表盘/val/images/仪表盘1805384_53_7096650.jpg new file mode 100644 index 0000000..71932dd --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805384_53_7096650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd828fde8a689203391b738da3b65acef009a425c52a7d5a48fb3696add7cb3 +size 149066 diff --git a/datasets/仪表盘/val/images/仪表盘1805386_53_7096738.jpg b/datasets/仪表盘/val/images/仪表盘1805386_53_7096738.jpg new file mode 100644 index 0000000..9118ac8 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805386_53_7096738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5666304e74bd74a34dfb504267d92ccd07787f5073d90a17a67d33789e61b4c +size 70602 diff --git a/datasets/仪表盘/val/images/仪表盘1805388_53_7096856.jpg b/datasets/仪表盘/val/images/仪表盘1805388_53_7096856.jpg new file mode 100644 index 0000000..925d1da --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805388_53_7096856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:596142d803630528fbdcdb974b41f84d186fdbe606c3045ba75bacfc52e61bc2 +size 267583 diff --git a/datasets/仪表盘/val/images/仪表盘1805389_53_7096881.jpg b/datasets/仪表盘/val/images/仪表盘1805389_53_7096881.jpg new file mode 100644 index 0000000..24d6b62 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805389_53_7096881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88044c80eb41e72af9c76aa20c14c550a523a4495fa82d1b03813a20e4cba5b +size 80644 diff --git a/datasets/仪表盘/val/images/仪表盘1805390_53_7096723.jpg b/datasets/仪表盘/val/images/仪表盘1805390_53_7096723.jpg new file mode 100644 index 0000000..a87540f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805390_53_7096723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9f4b45f6a069669e2c9146d613d8273b24c1af314585703524b8ccf91e56f2 +size 349651 diff --git a/datasets/仪表盘/val/images/仪表盘1805396_53_7096868.jpg b/datasets/仪表盘/val/images/仪表盘1805396_53_7096868.jpg new file mode 100644 index 0000000..8e9599a --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805396_53_7096868.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6612a96f8e22cd2983f4e72fd3059dff114dbdecd174b5e35f164d8dc93394ee +size 388042 diff --git a/datasets/仪表盘/val/images/仪表盘1805401_53_7096983.jpg b/datasets/仪表盘/val/images/仪表盘1805401_53_7096983.jpg new file mode 100644 index 0000000..9f41ae0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805401_53_7096983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889ddf8f7c63e1b66184d82def2189c1a91a988285f4f6599b4e8b13e4494f36 +size 399862 diff --git a/datasets/仪表盘/val/images/仪表盘1805434_53_7097105.jpg b/datasets/仪表盘/val/images/仪表盘1805434_53_7097105.jpg new file mode 100644 index 0000000..8c03105 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805434_53_7097105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6a2ad29699fea6919ec3763b9a3a81d3e10abd05ccd29edc842106dec50988 +size 242488 diff --git a/datasets/仪表盘/val/images/仪表盘1805450_53_7097432.jpg b/datasets/仪表盘/val/images/仪表盘1805450_53_7097432.jpg new file mode 100644 index 0000000..fce6b77 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805450_53_7097432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f939c6b6c79ef01c7986677717b8c22e77d2aa0cd18f92f32abab5b8839e624 +size 354396 diff --git a/datasets/仪表盘/val/images/仪表盘1805457_53_7097536.jpg b/datasets/仪表盘/val/images/仪表盘1805457_53_7097536.jpg new file mode 100644 index 0000000..52ca571 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805457_53_7097536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f507f1d45649695cf6cd32e04e3d631ac569ee05a00ce4805b623a6dc02ed3e +size 181590 diff --git a/datasets/仪表盘/val/images/仪表盘1805465_53_7097436.jpg b/datasets/仪表盘/val/images/仪表盘1805465_53_7097436.jpg new file mode 100644 index 0000000..723f8a0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805465_53_7097436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945b73fef144dd03ece0f45f92b252f164fa96d3a210cb94ecb05aefec08acf0 +size 248792 diff --git a/datasets/仪表盘/val/images/仪表盘1805491_53_7097702.jpg b/datasets/仪表盘/val/images/仪表盘1805491_53_7097702.jpg new file mode 100644 index 0000000..2b25c93 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805491_53_7097702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f22ed5c8e0836f37ac384211a8f8d5799ead4c670ee9f31c393094b9729b72 +size 50659 diff --git a/datasets/仪表盘/val/images/仪表盘1805493_53_7097746.jpg b/datasets/仪表盘/val/images/仪表盘1805493_53_7097746.jpg new file mode 100644 index 0000000..624fce4 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805493_53_7097746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e999f87b6d8f63628822299e8ef6d817d836980fe4023a854cea257e7a2173a8 +size 776872 diff --git a/datasets/仪表盘/val/images/仪表盘1805501_53_7097785.jpg b/datasets/仪表盘/val/images/仪表盘1805501_53_7097785.jpg new file mode 100644 index 0000000..62d31a0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805501_53_7097785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062f9dfb8595f11e00bfa37b72dda6ffb45a0a6f4d0d9e8ea3cd91077febc88b +size 663355 diff --git a/datasets/仪表盘/val/images/仪表盘1805502_53_7097776.jpg b/datasets/仪表盘/val/images/仪表盘1805502_53_7097776.jpg new file mode 100644 index 0000000..0f88a01 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805502_53_7097776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7e19d057c5ed7583aef217e7b59f4d94f78b2c71a831defd393c4b2c7a3c69 +size 215789 diff --git a/datasets/仪表盘/val/images/仪表盘1805504_53_7097800.jpg b/datasets/仪表盘/val/images/仪表盘1805504_53_7097800.jpg new file mode 100644 index 0000000..4857ff0 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805504_53_7097800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6211845205bf87dc14c9c9ac11817d9cd7807d23d22c10ede1584948acdecef6 +size 525316 diff --git a/datasets/仪表盘/val/images/仪表盘1805514_53_7097869.jpg b/datasets/仪表盘/val/images/仪表盘1805514_53_7097869.jpg new file mode 100644 index 0000000..3ba12c3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805514_53_7097869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8371856d7109a07e41912bee5dc660bd040a35f2eb7cc8e7523dcc278aba8e0 +size 258770 diff --git a/datasets/仪表盘/val/images/仪表盘1805515_53_7097961.jpg b/datasets/仪表盘/val/images/仪表盘1805515_53_7097961.jpg new file mode 100644 index 0000000..c4300ad --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805515_53_7097961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431b8bd49fe5b2ace494346178df814c7e82873f7d218129b8c28c871a33142c +size 231981 diff --git a/datasets/仪表盘/val/images/仪表盘1805518_53_7097905.jpg b/datasets/仪表盘/val/images/仪表盘1805518_53_7097905.jpg new file mode 100644 index 0000000..7347ac3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805518_53_7097905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28ea547e5d99b3a421922a71bcb489ef175accb7dc3f087f8ae474e68964387 +size 519364 diff --git a/datasets/仪表盘/val/images/仪表盘1805521_53_7097894.jpg b/datasets/仪表盘/val/images/仪表盘1805521_53_7097894.jpg new file mode 100644 index 0000000..4780f7b --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805521_53_7097894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df1276dbd21e1608c3cf0317829fed8973b75d7b0abfae096b341768aff5933 +size 295129 diff --git a/datasets/仪表盘/val/images/仪表盘1805534_53_7098083.jpg b/datasets/仪表盘/val/images/仪表盘1805534_53_7098083.jpg new file mode 100644 index 0000000..8cc6658 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805534_53_7098083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ee5065fe91942f33d8c62ba277278a905a0dae8a65683569211be7bd7ad839 +size 257864 diff --git a/datasets/仪表盘/val/images/仪表盘1805535_53_7098015.jpg b/datasets/仪表盘/val/images/仪表盘1805535_53_7098015.jpg new file mode 100644 index 0000000..8510ffa --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805535_53_7098015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f013b27bf90f9443c2a692c6a722e61fad1e1eaeb25d46e744da4bb9cc93ae1 +size 524536 diff --git a/datasets/仪表盘/val/images/仪表盘1805551_53_7098231.jpg b/datasets/仪表盘/val/images/仪表盘1805551_53_7098231.jpg new file mode 100644 index 0000000..28424ab --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805551_53_7098231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eba9491d990978eded0a436db3a9ac6716dc5390973fbb7b0f0fa9d4333f435 +size 287949 diff --git a/datasets/仪表盘/val/images/仪表盘1805555_53_7098385.jpg b/datasets/仪表盘/val/images/仪表盘1805555_53_7098385.jpg new file mode 100644 index 0000000..d65425f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805555_53_7098385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41d17867c091df3ac2bf6cab0c2cdfc655f72406b649797bbdfa62f8e9ff22a +size 295452 diff --git a/datasets/仪表盘/val/images/仪表盘1805586_53_7098658.jpg b/datasets/仪表盘/val/images/仪表盘1805586_53_7098658.jpg new file mode 100644 index 0000000..2cb866c --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805586_53_7098658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bc3808c6cc961c4598daf4591f8570f292bcc265862348c7cda0351c0a689d +size 83946 diff --git a/datasets/仪表盘/val/images/仪表盘1805588_53_7098649.jpg b/datasets/仪表盘/val/images/仪表盘1805588_53_7098649.jpg new file mode 100644 index 0000000..b8b0258 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805588_53_7098649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34917f5c93caf0d4d1b2b868165a985c564a9d030f009265c92aaba2f202e42b +size 370313 diff --git a/datasets/仪表盘/val/images/仪表盘1805590_53_7098527.jpg b/datasets/仪表盘/val/images/仪表盘1805590_53_7098527.jpg new file mode 100644 index 0000000..8e4f600 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805590_53_7098527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d32b9783e104b2fc6e9e2bf3907ac9690d333d3c84c887c1ec66775237b2a9f +size 389346 diff --git a/datasets/仪表盘/val/images/仪表盘1805595_53_7098588.jpg b/datasets/仪表盘/val/images/仪表盘1805595_53_7098588.jpg new file mode 100644 index 0000000..40f654e --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805595_53_7098588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbbb37da2b3d505dbdec48ce9dae4442ebed3ee51288a576abbaa965c6ef51f +size 318505 diff --git a/datasets/仪表盘/val/images/仪表盘1805598_53_7099008.jpg b/datasets/仪表盘/val/images/仪表盘1805598_53_7099008.jpg new file mode 100644 index 0000000..872dcb3 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805598_53_7099008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75dcf16c488b6ad69485b479f7515533411040406bfdb02032cc4a9ded987503 +size 82568 diff --git a/datasets/仪表盘/val/images/仪表盘1805601_53_7098679.jpg b/datasets/仪表盘/val/images/仪表盘1805601_53_7098679.jpg new file mode 100644 index 0000000..be35ff2 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805601_53_7098679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d0e4ae5b7271d0c171891c7d9034e440c8d658c4e338f5587355393303f147 +size 278839 diff --git a/datasets/仪表盘/val/images/仪表盘1805603_53_7098614.jpg b/datasets/仪表盘/val/images/仪表盘1805603_53_7098614.jpg new file mode 100644 index 0000000..fdcca1b --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805603_53_7098614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c417c712ee95c9101f98ad519d77f37be627913aff978041131f53b38f97ebd +size 341724 diff --git a/datasets/仪表盘/val/images/仪表盘1805604_53_7098683.jpg b/datasets/仪表盘/val/images/仪表盘1805604_53_7098683.jpg new file mode 100644 index 0000000..4363f54 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805604_53_7098683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710b00efe0ebf4dd617e8ca81453902ce3ffb49edcf4f0ee25eaa3760885a86d +size 373530 diff --git a/datasets/仪表盘/val/images/仪表盘1805606_53_7098590.jpg b/datasets/仪表盘/val/images/仪表盘1805606_53_7098590.jpg new file mode 100644 index 0000000..0ca7be2 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805606_53_7098590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319fb93f8830d347d591b1e4d878b7f513dd051ca3041b8701577c5fc109a67c +size 115340 diff --git a/datasets/仪表盘/val/images/仪表盘1805611_53_7098731.jpg b/datasets/仪表盘/val/images/仪表盘1805611_53_7098731.jpg new file mode 100644 index 0000000..5050dcd --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805611_53_7098731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b41df85439991c9dec6a1f6ae18f05af9eb336db88dcf486d48a8796c31e584 +size 92094 diff --git a/datasets/仪表盘/val/images/仪表盘1805613_53_7098990.jpg b/datasets/仪表盘/val/images/仪表盘1805613_53_7098990.jpg new file mode 100644 index 0000000..7c62a09 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805613_53_7098990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a6c7fa614ece01af05ce78356e72afae5db08544e68b64d8222fd648514021 +size 830982 diff --git a/datasets/仪表盘/val/images/仪表盘1805625_53_7098895.jpg b/datasets/仪表盘/val/images/仪表盘1805625_53_7098895.jpg new file mode 100644 index 0000000..30282cb --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805625_53_7098895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f810fc6916e53855dc46e6f8409733898307d80ea9574810ddcc69856dc33c +size 78465 diff --git a/datasets/仪表盘/val/images/仪表盘1805642_53_7099041.jpg b/datasets/仪表盘/val/images/仪表盘1805642_53_7099041.jpg new file mode 100644 index 0000000..6dd868f --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805642_53_7099041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62388fe81b3c4590d2449b8080d06fc283c27fbab3bbd043a35be5f7e41c7980 +size 103648 diff --git a/datasets/仪表盘/val/images/仪表盘1805648_53_7099268.jpg b/datasets/仪表盘/val/images/仪表盘1805648_53_7099268.jpg new file mode 100644 index 0000000..f2e48c7 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805648_53_7099268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5277ee0f051cba97719dd229c0f395c27d6a294dd6c319f4bce20c7b2d271a46 +size 244622 diff --git a/datasets/仪表盘/val/images/仪表盘1805653_53_7099135.jpg b/datasets/仪表盘/val/images/仪表盘1805653_53_7099135.jpg new file mode 100644 index 0000000..a0c7097 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805653_53_7099135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a384228ff39c6bd9e1938edae4cd85bf5d90dbbe6aa5ef0ba95c598c83f89904 +size 271530 diff --git a/datasets/仪表盘/val/images/仪表盘1805654_53_7099175.jpg b/datasets/仪表盘/val/images/仪表盘1805654_53_7099175.jpg new file mode 100644 index 0000000..bfc4f5c --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805654_53_7099175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a121e0b0904857677173aec423005f6b353c18ca23a097cf0d9d25c48f9d56f +size 299870 diff --git a/datasets/仪表盘/val/images/仪表盘1805656_53_7099388.jpg b/datasets/仪表盘/val/images/仪表盘1805656_53_7099388.jpg new file mode 100644 index 0000000..31d9141 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805656_53_7099388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbc5490341d38ac119a9fd9bf656facd75cdb3426d7b3936283eb68439347bb +size 759295 diff --git a/datasets/仪表盘/val/images/仪表盘1805663_53_7099180.jpg b/datasets/仪表盘/val/images/仪表盘1805663_53_7099180.jpg new file mode 100644 index 0000000..8f864d1 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805663_53_7099180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84bf88cf2482925f52917d6f4895d07bd9946467e7e3071744a8fa81957692f +size 381957 diff --git a/datasets/仪表盘/val/images/仪表盘1805666_53_7099283.jpg b/datasets/仪表盘/val/images/仪表盘1805666_53_7099283.jpg new file mode 100644 index 0000000..184f207 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805666_53_7099283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f44be7118a9ad836aadb28b95b82cf8b9a051490c2bb3da683df275a55e1a0 +size 120925 diff --git a/datasets/仪表盘/val/images/仪表盘1805668_53_7099201.jpg b/datasets/仪表盘/val/images/仪表盘1805668_53_7099201.jpg new file mode 100644 index 0000000..9bb6d85 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805668_53_7099201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d95faac666c5b482e3688672755b70696cf35b3ad47814299d0fba3eb0f23a +size 68366 diff --git a/datasets/仪表盘/val/images/仪表盘1805674_53_7099289.jpg b/datasets/仪表盘/val/images/仪表盘1805674_53_7099289.jpg new file mode 100644 index 0000000..43c7257 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805674_53_7099289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f3b18cf6d5f23f528e16eabe93ca576e13b04b2c1874aa91e2cc316da848f +size 348383 diff --git a/datasets/仪表盘/val/images/仪表盘1805686_53_7099505.jpg b/datasets/仪表盘/val/images/仪表盘1805686_53_7099505.jpg new file mode 100644 index 0000000..b21f2d6 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805686_53_7099505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52795c0da93d770351f82cb09c4119162062a4a93aeb6f46e1dd00e520c173ec +size 304922 diff --git a/datasets/仪表盘/val/images/仪表盘1805687_53_7099435.jpg b/datasets/仪表盘/val/images/仪表盘1805687_53_7099435.jpg new file mode 100644 index 0000000..94a8f74 --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805687_53_7099435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9237ff61bcd591af90505509cc261a93a2392d6a2781784642f0b7ef7939bfd7 +size 282913 diff --git a/datasets/仪表盘/val/images/仪表盘1805705_53_7099719.jpg b/datasets/仪表盘/val/images/仪表盘1805705_53_7099719.jpg new file mode 100644 index 0000000..20d0c4b --- /dev/null +++ b/datasets/仪表盘/val/images/仪表盘1805705_53_7099719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2251540cb73ff8e81525c67b93ffb425580a802c818954bf3c2a962f72dfc21d +size 179215 diff --git a/datasets/仪表盘/val/images/订单1806763_53_7109418.jpg b/datasets/仪表盘/val/images/订单1806763_53_7109418.jpg new file mode 100644 index 0000000..165dc47 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806763_53_7109418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8961b63361f0e071a2173f9eba77fa37b911e144cb2fb1c3c2e9ad1ce115adf4 +size 433333 diff --git a/datasets/仪表盘/val/images/订单1806764_53_7109315.jpg b/datasets/仪表盘/val/images/订单1806764_53_7109315.jpg new file mode 100644 index 0000000..ea1e64d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806764_53_7109315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fdfb05f767731bc5a7a27e08be9488609add42d72ad2ae526ccbb594bc4a2a1 +size 120077 diff --git a/datasets/仪表盘/val/images/订单1806767_53_7109337.jpg b/datasets/仪表盘/val/images/订单1806767_53_7109337.jpg new file mode 100644 index 0000000..36878c6 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806767_53_7109337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f5633f25d0c2bd72c0a3d15ab505a5bfed1728203cc338204707c04a0d863a +size 97108 diff --git a/datasets/仪表盘/val/images/订单1806769_53_7109501.jpg b/datasets/仪表盘/val/images/订单1806769_53_7109501.jpg new file mode 100644 index 0000000..826ffe9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806769_53_7109501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4704e0ad0ffb30b2b17a86cf58c8735aeb204071a9ee5960551fca29340ed2 +size 270909 diff --git a/datasets/仪表盘/val/images/订单1806771_53_7109463.jpg b/datasets/仪表盘/val/images/订单1806771_53_7109463.jpg new file mode 100644 index 0000000..2e80ab2 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806771_53_7109463.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4a503677552451eb2930cfc7185a75049eb325e187a88039e14252205e1565 +size 66049 diff --git a/datasets/仪表盘/val/images/订单1806772_53_7109406.jpg b/datasets/仪表盘/val/images/订单1806772_53_7109406.jpg new file mode 100644 index 0000000..c6b529f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806772_53_7109406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41feff1e0b3ea6271d5fc584be12c3dedced207cc16715e338aefd23c55cad8c +size 77859 diff --git a/datasets/仪表盘/val/images/订单1806773_53_7109447.jpg b/datasets/仪表盘/val/images/订单1806773_53_7109447.jpg new file mode 100644 index 0000000..c480349 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806773_53_7109447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e02ad5e7187dd374c6cfcffc7127585b234a07112ce35db88e5e330ec50025 +size 259451 diff --git a/datasets/仪表盘/val/images/订单1806775_53_7109526.jpg b/datasets/仪表盘/val/images/订单1806775_53_7109526.jpg new file mode 100644 index 0000000..d8f10f2 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806775_53_7109526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72e3900f6453b31948e654e9703859bcaa958ae5fba795453dbadc263c5a0bc +size 433141 diff --git a/datasets/仪表盘/val/images/订单1806776_53_7109512.jpg b/datasets/仪表盘/val/images/订单1806776_53_7109512.jpg new file mode 100644 index 0000000..4330f7b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806776_53_7109512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87f56a23f1cd4a667c3c4a2a14a455e217e8a9d74bb8c02c104fefef3806e57 +size 241451 diff --git a/datasets/仪表盘/val/images/订单1806779_53_7109605.jpg b/datasets/仪表盘/val/images/订单1806779_53_7109605.jpg new file mode 100644 index 0000000..bbdb3b6 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806779_53_7109605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1cdb12ef6fc2998226ae359e745420d4ee2668f612d4ecc254a889e53ad599b +size 98376 diff --git a/datasets/仪表盘/val/images/订单1806786_53_7109632.jpg b/datasets/仪表盘/val/images/订单1806786_53_7109632.jpg new file mode 100644 index 0000000..5ae74fd --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806786_53_7109632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595a8b86981a9c90ae463253127805fa2e6e015542bd4e3be2869c4147c964ae +size 147304 diff --git a/datasets/仪表盘/val/images/订单1806788_53_7109730.jpg b/datasets/仪表盘/val/images/订单1806788_53_7109730.jpg new file mode 100644 index 0000000..00be7be --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806788_53_7109730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c93c89666004e696ec878495001be5ee64e4f9309a2a242138eb0a81e35f44 +size 241675 diff --git a/datasets/仪表盘/val/images/订单1806790_53_7109649.jpg b/datasets/仪表盘/val/images/订单1806790_53_7109649.jpg new file mode 100644 index 0000000..c64a2be --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806790_53_7109649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd41a119be37516edbe64b5410723e7544800fcd90424e6d653618dba9906fa6 +size 155918 diff --git a/datasets/仪表盘/val/images/订单1806797_53_7109791.jpg b/datasets/仪表盘/val/images/订单1806797_53_7109791.jpg new file mode 100644 index 0000000..9a5d330 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806797_53_7109791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4341e2fd4dd9d27b22eccaa0a860c1ca9240d2956f38fbf5f2b0cb953d5c1cd2 +size 129552 diff --git a/datasets/仪表盘/val/images/订单1806798_53_7109822.jpg b/datasets/仪表盘/val/images/订单1806798_53_7109822.jpg new file mode 100644 index 0000000..9c21bc9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806798_53_7109822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3039179021f4d3db207d32077e0d0826f3cfe60745cee61612017ddf6159f37 +size 428349 diff --git a/datasets/仪表盘/val/images/订单1806799_53_7109754.jpg b/datasets/仪表盘/val/images/订单1806799_53_7109754.jpg new file mode 100644 index 0000000..c253017 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806799_53_7109754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7fd7e79c242eb6ca4d4c67e3b75caa1b3f80160c93a75d653569cfc94c8f28 +size 193351 diff --git a/datasets/仪表盘/val/images/订单1806804_53_7109812.jpg b/datasets/仪表盘/val/images/订单1806804_53_7109812.jpg new file mode 100644 index 0000000..e05b2ad --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806804_53_7109812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50210dd4b42e48582d1ab1ea27a65df6c7c5f91911ad8afe4bdc1f22d3f9740e +size 387757 diff --git a/datasets/仪表盘/val/images/订单1806805_53_7109758.jpg b/datasets/仪表盘/val/images/订单1806805_53_7109758.jpg new file mode 100644 index 0000000..d354704 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806805_53_7109758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1121214e219faac320dc09540add285fcbee998d995e744b7e83a625251dea52 +size 337323 diff --git a/datasets/仪表盘/val/images/订单1806807_53_7110015.jpg b/datasets/仪表盘/val/images/订单1806807_53_7110015.jpg new file mode 100644 index 0000000..800b953 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806807_53_7110015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae2bf62d972b3a35b19dcd8edc5c27d8ccbe591329b5903030d928758d54775 +size 659130 diff --git a/datasets/仪表盘/val/images/订单1806810_53_7110020.jpg b/datasets/仪表盘/val/images/订单1806810_53_7110020.jpg new file mode 100644 index 0000000..19f2e38 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806810_53_7110020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba0a4d18b04fe660639979ab8ded8ce315b8dcca059af562585d50b66afd256 +size 100496 diff --git a/datasets/仪表盘/val/images/订单1806812_53_7109948.jpg b/datasets/仪表盘/val/images/订单1806812_53_7109948.jpg new file mode 100644 index 0000000..84a2024 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806812_53_7109948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc6d8b8aac744ef38db9a665fc58dda47b244c782bb07e14b4ab51a824298f0 +size 308252 diff --git a/datasets/仪表盘/val/images/订单1806813_53_7109935.jpg b/datasets/仪表盘/val/images/订单1806813_53_7109935.jpg new file mode 100644 index 0000000..b2938dc --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806813_53_7109935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1964a2502b48bacde76d018fd28deed80e9a99ba5b35db0ce0b591f29bb47d06 +size 248146 diff --git a/datasets/仪表盘/val/images/订单1806816_53_7109976.jpg b/datasets/仪表盘/val/images/订单1806816_53_7109976.jpg new file mode 100644 index 0000000..a1652e9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806816_53_7109976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d603bc8c9cc661ff0db673ec8401b23033ffa415556960a886e7e190c5001527 +size 244721 diff --git a/datasets/仪表盘/val/images/订单1806819_53_7109959.jpg b/datasets/仪表盘/val/images/订单1806819_53_7109959.jpg new file mode 100644 index 0000000..00c6050 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806819_53_7109959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02380ea9d53caee12077ea428245ea8e7e75125ce55a22ba8c93acf1f82d5c21 +size 165934 diff --git a/datasets/仪表盘/val/images/订单1806820_53_7110147.jpg b/datasets/仪表盘/val/images/订单1806820_53_7110147.jpg new file mode 100644 index 0000000..fecfd43 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806820_53_7110147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da7213c2166ca9df79c714d628ce3189993aa7049f493acd6ea92ce0f4f32e1 +size 357176 diff --git a/datasets/仪表盘/val/images/订单1806821_53_7109949.jpg b/datasets/仪表盘/val/images/订单1806821_53_7109949.jpg new file mode 100644 index 0000000..d2f7842 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806821_53_7109949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68dc27475f6a8d7bf61b3309910f78d8f860928dbcf5eec62b7453134d3dbbd5 +size 87351 diff --git a/datasets/仪表盘/val/images/订单1806822_53_7109879.jpg b/datasets/仪表盘/val/images/订单1806822_53_7109879.jpg new file mode 100644 index 0000000..c95daad --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806822_53_7109879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25490edfe8fc4323c8ca72fa2726d852a0ff7a63e0a392c110549a49a1365c24 +size 301157 diff --git a/datasets/仪表盘/val/images/订单1806823_53_7109919.jpg b/datasets/仪表盘/val/images/订单1806823_53_7109919.jpg new file mode 100644 index 0000000..4fb1a99 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806823_53_7109919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257c49f143b2bf8a184bd229d124d804385b15062210201d1ea511aae8d7e1a2 +size 169917 diff --git a/datasets/仪表盘/val/images/订单1806827_53_7110056.jpg b/datasets/仪表盘/val/images/订单1806827_53_7110056.jpg new file mode 100644 index 0000000..400a7cd --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806827_53_7110056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3619a0d89f4bafddf1521e4aae1f319844e678ebbdf9be7814709bd7d7cc7f +size 491124 diff --git a/datasets/仪表盘/val/images/订单1806828_53_7110008.jpg b/datasets/仪表盘/val/images/订单1806828_53_7110008.jpg new file mode 100644 index 0000000..90850f3 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806828_53_7110008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcd78f4ffbd153a59d4071a6d9132e97e71399953c0678a35f9285e32d0d986 +size 189534 diff --git a/datasets/仪表盘/val/images/订单1806829_53_7110051.jpg b/datasets/仪表盘/val/images/订单1806829_53_7110051.jpg new file mode 100644 index 0000000..583b3db --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806829_53_7110051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56714bc402d5aa0a8bb47d44c417aa21cc49155700c477814d9f365700d6b9e +size 113519 diff --git a/datasets/仪表盘/val/images/订单1806830_53_7110167.jpg b/datasets/仪表盘/val/images/订单1806830_53_7110167.jpg new file mode 100644 index 0000000..6d9bb40 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806830_53_7110167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d89bfa40e4c2027af613e4206412d9ddd371c860a310eed15007fd879ba7200 +size 198842 diff --git a/datasets/仪表盘/val/images/订单1806832_53_7110084.jpg b/datasets/仪表盘/val/images/订单1806832_53_7110084.jpg new file mode 100644 index 0000000..8e57f4e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806832_53_7110084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4deb96250df3520bcb8243299f3cf7a38a3a92294f0fdbf2223b90fecb92b744 +size 263392 diff --git a/datasets/仪表盘/val/images/订单1806834_53_7110081.jpg b/datasets/仪表盘/val/images/订单1806834_53_7110081.jpg new file mode 100644 index 0000000..ca7c539 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806834_53_7110081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9396f1cdb1b7ef96e1f42c613adda0ffceedc60ab5533190f1e05a67e69b1620 +size 183283 diff --git a/datasets/仪表盘/val/images/订单1806836_53_7110121.jpg b/datasets/仪表盘/val/images/订单1806836_53_7110121.jpg new file mode 100644 index 0000000..b30349f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806836_53_7110121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3b5fd5a0b5f6353464aafd9a83a69ab1e41049f2cbfd7a79772ad0d02feb72 +size 293690 diff --git a/datasets/仪表盘/val/images/订单1806838_53_7110086.jpg b/datasets/仪表盘/val/images/订单1806838_53_7110086.jpg new file mode 100644 index 0000000..52613e4 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806838_53_7110086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0f632cbf18df016559c5e4345edb48f07a7578c7a86d49320857c8dd75d68b +size 345424 diff --git a/datasets/仪表盘/val/images/订单1806841_53_7110149.jpg b/datasets/仪表盘/val/images/订单1806841_53_7110149.jpg new file mode 100644 index 0000000..46cd1d7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806841_53_7110149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6013b1e2c96a79584d8348bc4929d04be8d7edd635aac4d39414783389ec3fc +size 300424 diff --git a/datasets/仪表盘/val/images/订单1806845_53_7110180.jpg b/datasets/仪表盘/val/images/订单1806845_53_7110180.jpg new file mode 100644 index 0000000..7dcd359 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806845_53_7110180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7623b7021b11ca77e53858bc5dcd9d0409abd304d23b1b022d4ec7ac4f56f3 +size 496638 diff --git a/datasets/仪表盘/val/images/订单1806849_53_7110251.jpg b/datasets/仪表盘/val/images/订单1806849_53_7110251.jpg new file mode 100644 index 0000000..c112640 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806849_53_7110251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d639940e312819943e5772515384d15db80aa6cc5f51c6eb0b7f03f5bb28bf1 +size 222285 diff --git a/datasets/仪表盘/val/images/订单1806852_53_7110263.jpg b/datasets/仪表盘/val/images/订单1806852_53_7110263.jpg new file mode 100644 index 0000000..6c972d8 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806852_53_7110263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77e400d691d322cbc0989a3c83eca4f83075c37efd2c4b22b2157c8d5fed1b2 +size 101196 diff --git a/datasets/仪表盘/val/images/订单1806855_53_7110323.jpg b/datasets/仪表盘/val/images/订单1806855_53_7110323.jpg new file mode 100644 index 0000000..f5bedc0 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806855_53_7110323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434f97835c5844e5dbb959a38cc4d89893f912ab8741698c4f937827ffac3073 +size 336808 diff --git a/datasets/仪表盘/val/images/订单1806857_53_7110254.jpg b/datasets/仪表盘/val/images/订单1806857_53_7110254.jpg new file mode 100644 index 0000000..76e4cd7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806857_53_7110254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c73dec8105eb9172888bb2f05ff45364c9c12b8ece82f03c97d3c60f7d4f946 +size 336850 diff --git a/datasets/仪表盘/val/images/订单1806860_53_7110392.jpg b/datasets/仪表盘/val/images/订单1806860_53_7110392.jpg new file mode 100644 index 0000000..e835624 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806860_53_7110392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3e97fff511ed9988bd61a2391a4cf0815fc00b71cc16a3e7d25fc33e53afb7 +size 53850 diff --git a/datasets/仪表盘/val/images/订单1806862_53_7110442.jpg b/datasets/仪表盘/val/images/订单1806862_53_7110442.jpg new file mode 100644 index 0000000..30e2ae8 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806862_53_7110442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96bea7341314c1d4bcdadf335411d079de66cba8f2ea4e773b4ce8a4af033c2 +size 272562 diff --git a/datasets/仪表盘/val/images/订单1806863_53_7110424.jpg b/datasets/仪表盘/val/images/订单1806863_53_7110424.jpg new file mode 100644 index 0000000..8bdcc7b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806863_53_7110424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd464a9c6490e8964e3b14891491a465e7fc928fa5db6ad441457ab25ae8e934 +size 62393 diff --git a/datasets/仪表盘/val/images/订单1806864_53_7110381.jpg b/datasets/仪表盘/val/images/订单1806864_53_7110381.jpg new file mode 100644 index 0000000..e0c782d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806864_53_7110381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0f86ebb267fe0ebfc5afee69d5b956e123d3233f85e8d48e8b8e445b9450e7 +size 62828 diff --git a/datasets/仪表盘/val/images/订单1806867_53_7110430.jpg b/datasets/仪表盘/val/images/订单1806867_53_7110430.jpg new file mode 100644 index 0000000..03b307f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806867_53_7110430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce57c46dff3a2a5a43a71e562ac4f64ad3a04f824809fe7accf7f409e2301f6b +size 62698 diff --git a/datasets/仪表盘/val/images/订单1806868_53_7110340.jpg b/datasets/仪表盘/val/images/订单1806868_53_7110340.jpg new file mode 100644 index 0000000..aac335d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806868_53_7110340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ae17448897ce2207542c45aa9ebe49fbd46250e29366b5a5eb259be5b49b85 +size 242108 diff --git a/datasets/仪表盘/val/images/订单1806869_53_7110345.jpg b/datasets/仪表盘/val/images/订单1806869_53_7110345.jpg new file mode 100644 index 0000000..dd53dc1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806869_53_7110345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba34e02dae2ee7a347d682f040dd2669e1e0f64409e6bb809c700cacd125ba7b +size 64683 diff --git a/datasets/仪表盘/val/images/订单1806871_53_7110420.jpg b/datasets/仪表盘/val/images/订单1806871_53_7110420.jpg new file mode 100644 index 0000000..890230e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806871_53_7110420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be7b49955475395e2aeb2cbdfbddf3d23b219d1049db409efdf9b5edeb96ae0 +size 202089 diff --git a/datasets/仪表盘/val/images/订单1806872_53_7110473.jpg b/datasets/仪表盘/val/images/订单1806872_53_7110473.jpg new file mode 100644 index 0000000..2ff5b6c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806872_53_7110473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd02c476f5c581b3218b84b6360fbe1cdcdafaa1a330039d86d73a73267d47b7 +size 243061 diff --git a/datasets/仪表盘/val/images/订单1806873_53_7110435.jpg b/datasets/仪表盘/val/images/订单1806873_53_7110435.jpg new file mode 100644 index 0000000..df828cb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806873_53_7110435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e173db114c9307cf992d6d913abc53feb180e88e405698dc08ad52582939288 +size 112235 diff --git a/datasets/仪表盘/val/images/订单1806876_53_7110523.jpg b/datasets/仪表盘/val/images/订单1806876_53_7110523.jpg new file mode 100644 index 0000000..02366a6 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806876_53_7110523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1796a16369efc790dcb629ba6db2036de490b4ffe9ae08ba8b7ea8bf1889c05 +size 205369 diff --git a/datasets/仪表盘/val/images/订单1806878_53_7110486.jpg b/datasets/仪表盘/val/images/订单1806878_53_7110486.jpg new file mode 100644 index 0000000..990aecb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806878_53_7110486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e74f7d7c64e11de60391d3da27dc2a3ef83219bfaf1aa8f5df33b543db0529 +size 335854 diff --git a/datasets/仪表盘/val/images/订单1806880_53_7110405.jpg b/datasets/仪表盘/val/images/订单1806880_53_7110405.jpg new file mode 100644 index 0000000..3f1deb1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806880_53_7110405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce8ffe1086a6fc6e24349a4db6ac534b4e2562bdc68095a950de9fd719a37552 +size 94999 diff --git a/datasets/仪表盘/val/images/订单1806884_53_7110464.jpg b/datasets/仪表盘/val/images/订单1806884_53_7110464.jpg new file mode 100644 index 0000000..d64a19d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806884_53_7110464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7446ba2cb1c9d6aff9672dddadd03a37f28177af56f0e1da514a76d89ee3e28 +size 287479 diff --git a/datasets/仪表盘/val/images/订单1806886_53_7110539.jpg b/datasets/仪表盘/val/images/订单1806886_53_7110539.jpg new file mode 100644 index 0000000..c4e6a5a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806886_53_7110539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b467e29d31cf393bb8aeab6f206811b59181726fd87780bf6d6906513aa44a63 +size 252613 diff --git a/datasets/仪表盘/val/images/订单1806889_53_7110542.jpg b/datasets/仪表盘/val/images/订单1806889_53_7110542.jpg new file mode 100644 index 0000000..46a5f56 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806889_53_7110542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b526a0c9029ddffbb645b6081a3a2d502a05a16bb394bc8d74396f6348368d2 +size 244620 diff --git a/datasets/仪表盘/val/images/订单1806890_53_7110632.jpg b/datasets/仪表盘/val/images/订单1806890_53_7110632.jpg new file mode 100644 index 0000000..f2083d9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806890_53_7110632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a6ba7a4a04ce8670f1e6d6c37638c953e35dc4b51f1f2730cf1f32eaef886a +size 63679 diff --git a/datasets/仪表盘/val/images/订单1806891_53_7110642.jpg b/datasets/仪表盘/val/images/订单1806891_53_7110642.jpg new file mode 100644 index 0000000..ac704ee --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806891_53_7110642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0439a3699a57b0c4f1d97a20f65a9e4508261406b1fc69348534e8381dcb41e4 +size 271095 diff --git a/datasets/仪表盘/val/images/订单1806899_53_7110608.jpg b/datasets/仪表盘/val/images/订单1806899_53_7110608.jpg new file mode 100644 index 0000000..7fa74bf --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806899_53_7110608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e197f5cc9c712a2334bed4f834a4c96c744e704dd900babacf5fb96bab74bb +size 223835 diff --git a/datasets/仪表盘/val/images/订单1806903_53_7110691.jpg b/datasets/仪表盘/val/images/订单1806903_53_7110691.jpg new file mode 100644 index 0000000..f260505 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806903_53_7110691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df7c80e910dbe50e9e4cf34b9c0a41146542dde8ea90b160404545cb466e6b5 +size 258389 diff --git a/datasets/仪表盘/val/images/订单1806904_53_7110671.jpg b/datasets/仪表盘/val/images/订单1806904_53_7110671.jpg new file mode 100644 index 0000000..090cbf9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806904_53_7110671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef79537c8ab3c37961e548b79b2671e35431fea5a68c0bb4e6655f01f83e3dc5 +size 360419 diff --git a/datasets/仪表盘/val/images/订单1806905_53_7110690.jpg b/datasets/仪表盘/val/images/订单1806905_53_7110690.jpg new file mode 100644 index 0000000..1448d5d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806905_53_7110690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2026f23090577f36af0fdb4f47d1eeb28d39b2da8a643e3eb34fdde5ede0397 +size 331486 diff --git a/datasets/仪表盘/val/images/订单1806907_53_7110701.jpg b/datasets/仪表盘/val/images/订单1806907_53_7110701.jpg new file mode 100644 index 0000000..0da003f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806907_53_7110701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c777ab1eda793ea4d577a18089d59b3882b272590308fbecc26ba24cadf7c41e +size 194078 diff --git a/datasets/仪表盘/val/images/订单1806909_53_7110708.jpg b/datasets/仪表盘/val/images/订单1806909_53_7110708.jpg new file mode 100644 index 0000000..fc096cb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806909_53_7110708.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588301dcac9e4140c9ab054c42b592228fa0c258c93fd96004a9b373d2fb4a69 +size 257686 diff --git a/datasets/仪表盘/val/images/订单1806912_53_7110761.jpg b/datasets/仪表盘/val/images/订单1806912_53_7110761.jpg new file mode 100644 index 0000000..881b498 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806912_53_7110761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bdcff46e852ac3be31739ca360c4601b645d8efc60c12c30b0eb93b7f93d9b2 +size 253310 diff --git a/datasets/仪表盘/val/images/订单1806913_53_7110816.jpg b/datasets/仪表盘/val/images/订单1806913_53_7110816.jpg new file mode 100644 index 0000000..5e4d6fe --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806913_53_7110816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b263b3e36c81c2833a9993cc48db1e771da552aada4414e0348344426206418 +size 356562 diff --git a/datasets/仪表盘/val/images/订单1806917_53_7110787.jpg b/datasets/仪表盘/val/images/订单1806917_53_7110787.jpg new file mode 100644 index 0000000..188b679 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806917_53_7110787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae71db9fb7e46dde838d42e319a04b0263679d91405ebd1ddc0c8d02af6423c +size 219573 diff --git a/datasets/仪表盘/val/images/订单1806918_53_7110853.jpg b/datasets/仪表盘/val/images/订单1806918_53_7110853.jpg new file mode 100644 index 0000000..596e6ab --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806918_53_7110853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a109387ff09bc797ef699982a7c1db07c32b32a69b009964bd219b9ae9c6bf69 +size 93198 diff --git a/datasets/仪表盘/val/images/订单1806921_53_7110822.jpg b/datasets/仪表盘/val/images/订单1806921_53_7110822.jpg new file mode 100644 index 0000000..0350f75 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806921_53_7110822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9085c728d01305a6aca668cf6c39c7e9ae7e6f69072b2fbc009eb6a291f5302 +size 341402 diff --git a/datasets/仪表盘/val/images/订单1806922_53_7110805.jpg b/datasets/仪表盘/val/images/订单1806922_53_7110805.jpg new file mode 100644 index 0000000..85ddc84 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806922_53_7110805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2237805354ce6fa9de04755e59a06a405681251ec3a4c6e804e009cdf287db31 +size 96806 diff --git a/datasets/仪表盘/val/images/订单1806925_53_7110917.jpg b/datasets/仪表盘/val/images/订单1806925_53_7110917.jpg new file mode 100644 index 0000000..40fcdc9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806925_53_7110917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662ea10060e008cb79c3e8b70a513efe48210d1d00dc00097817760e97fe5f1a +size 297491 diff --git a/datasets/仪表盘/val/images/订单1806926_53_7110859.jpg b/datasets/仪表盘/val/images/订单1806926_53_7110859.jpg new file mode 100644 index 0000000..6c24f9a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806926_53_7110859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e8e05862c9696309ecd9bb9fa38da77ae120c71806505a137054c02f5397ad +size 244816 diff --git a/datasets/仪表盘/val/images/订单1806928_53_7110842.jpg b/datasets/仪表盘/val/images/订单1806928_53_7110842.jpg new file mode 100644 index 0000000..cba663f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806928_53_7110842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99ebec60888ad015fef3e44604d584cfcbb7f0f45bac47f5209cef5c4377f05 +size 203296 diff --git a/datasets/仪表盘/val/images/订单1806929_53_7110850.jpg b/datasets/仪表盘/val/images/订单1806929_53_7110850.jpg new file mode 100644 index 0000000..59b263c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806929_53_7110850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1461677ccccab8f14d91467931162696783377c0a73c7ab1d35407443d501949 +size 368172 diff --git a/datasets/仪表盘/val/images/订单1806930_53_7110906.jpg b/datasets/仪表盘/val/images/订单1806930_53_7110906.jpg new file mode 100644 index 0000000..ca026b3 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806930_53_7110906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6dd0ee6b1891287f2a1414a54d86319ea7496dd504317ab7b4d4f056ecec3e +size 317037 diff --git a/datasets/仪表盘/val/images/订单1806935_53_7111021.jpg b/datasets/仪表盘/val/images/订单1806935_53_7111021.jpg new file mode 100644 index 0000000..179c4e2 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806935_53_7111021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eabf9eff9cc06e8b4b8af0e17dd405cd75a313c4b7cba6a61c56dce5ca3e9a6 +size 75031 diff --git a/datasets/仪表盘/val/images/订单1806936_53_7110986.jpg b/datasets/仪表盘/val/images/订单1806936_53_7110986.jpg new file mode 100644 index 0000000..8a25bcb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806936_53_7110986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aaf36333b896fdcdbc1991a6a763455179303bb7821b09b4cff98faf1394fc6 +size 222365 diff --git a/datasets/仪表盘/val/images/订单1806937_53_7111009.jpg b/datasets/仪表盘/val/images/订单1806937_53_7111009.jpg new file mode 100644 index 0000000..2044ff0 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806937_53_7111009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5574c52b43c45b17865623547f4b06f3c12744ba8f588e6720c821b4b3e453 +size 408424 diff --git a/datasets/仪表盘/val/images/订单1806938_53_7111049.jpg b/datasets/仪表盘/val/images/订单1806938_53_7111049.jpg new file mode 100644 index 0000000..36b005e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806938_53_7111049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287dc60f382da4439ddc33a08394da7d2266e8e1fef9da1a0aefcd489cda7947 +size 241022 diff --git a/datasets/仪表盘/val/images/订单1806942_53_7111050.jpg b/datasets/仪表盘/val/images/订单1806942_53_7111050.jpg new file mode 100644 index 0000000..27477ea --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806942_53_7111050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4f0bc5592bad69c3a73094c201877b53d5e8bd3cbc53ed42588974533cbbd7 +size 121569 diff --git a/datasets/仪表盘/val/images/订单1806943_53_7111125.jpg b/datasets/仪表盘/val/images/订单1806943_53_7111125.jpg new file mode 100644 index 0000000..58202fe --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806943_53_7111125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c921d0442be67c9aa3ac6d296206a7f1e6e19acc49e82feff20a25731c54966 +size 279398 diff --git a/datasets/仪表盘/val/images/订单1806944_53_7111097.jpg b/datasets/仪表盘/val/images/订单1806944_53_7111097.jpg new file mode 100644 index 0000000..0388306 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806944_53_7111097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d75d2952d60cb6098c843e883d45423a1a5a9d5cdbec239eab0f79b0a98804e +size 221302 diff --git a/datasets/仪表盘/val/images/订单1806947_53_7111160.jpg b/datasets/仪表盘/val/images/订单1806947_53_7111160.jpg new file mode 100644 index 0000000..d213e4a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806947_53_7111160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab8333d01bb291f97c2086be2e07be5715127f311e95a2ac91d5022adfc3d4c +size 383607 diff --git a/datasets/仪表盘/val/images/订单1806951_53_7111138.jpg b/datasets/仪表盘/val/images/订单1806951_53_7111138.jpg new file mode 100644 index 0000000..6a1c172 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806951_53_7111138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2e6b59134496f7e8bdd1280628ee61b37d96b91b58ba69e0b22a703bcce3c6 +size 402393 diff --git a/datasets/仪表盘/val/images/订单1806953_53_7111318.jpg b/datasets/仪表盘/val/images/订单1806953_53_7111318.jpg new file mode 100644 index 0000000..510f48d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806953_53_7111318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67208991865fa32534aa822eaf861a79e1e5dab4bc4c997ddb9bc45d943a877 +size 97602 diff --git a/datasets/仪表盘/val/images/订单1806954_53_7111210.jpg b/datasets/仪表盘/val/images/订单1806954_53_7111210.jpg new file mode 100644 index 0000000..088f3b7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806954_53_7111210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e090041df401f9915e68526d06607f3f263d5d7f1fa461bed5ead9869161ddb +size 246605 diff --git a/datasets/仪表盘/val/images/订单1806959_53_7111289.jpg b/datasets/仪表盘/val/images/订单1806959_53_7111289.jpg new file mode 100644 index 0000000..9f3d141 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806959_53_7111289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa753958c014cfde4de866ee3cbadc952e49c9bfb8d0e966a85bc4c462c2eb58 +size 182915 diff --git a/datasets/仪表盘/val/images/订单1806961_53_7111235.jpg b/datasets/仪表盘/val/images/订单1806961_53_7111235.jpg new file mode 100644 index 0000000..fbf1a79 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806961_53_7111235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6805b7eda15079acb64805cc5eb2ed317f63a6d8d099336f6067df421ed9d881 +size 254237 diff --git a/datasets/仪表盘/val/images/订单1806964_53_7111276.jpg b/datasets/仪表盘/val/images/订单1806964_53_7111276.jpg new file mode 100644 index 0000000..564e66d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806964_53_7111276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42222b3204f45614112fe6e5039ec7bb4a83eeac2f0969e0f284b1c5caed4afd +size 290594 diff --git a/datasets/仪表盘/val/images/订单1806966_53_7111335.jpg b/datasets/仪表盘/val/images/订单1806966_53_7111335.jpg new file mode 100644 index 0000000..8625ace --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806966_53_7111335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450507e4c978922ed8b9f96aa0574bef9b40586efbb9df9e4e5dd8f6517b4c70 +size 259295 diff --git a/datasets/仪表盘/val/images/订单1806967_53_7111256.jpg b/datasets/仪表盘/val/images/订单1806967_53_7111256.jpg new file mode 100644 index 0000000..b55f213 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806967_53_7111256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367211a680113519978b205cf3bf7e066877d6b1374d3f792442a586145d0c1b +size 280394 diff --git a/datasets/仪表盘/val/images/订单1806969_53_7111301.jpg b/datasets/仪表盘/val/images/订单1806969_53_7111301.jpg new file mode 100644 index 0000000..5ded44b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806969_53_7111301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0f035656348484e2b043c25ebd5da0f8fc283d0bf00207a95bb720f292b4c5 +size 439992 diff --git a/datasets/仪表盘/val/images/订单1806972_53_7111355.jpg b/datasets/仪表盘/val/images/订单1806972_53_7111355.jpg new file mode 100644 index 0000000..4f16f43 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806972_53_7111355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:febf1c262175538cc8e4706888e8acad482b43135f5be7848322e0f6fc20833a +size 367882 diff --git a/datasets/仪表盘/val/images/订单1806973_53_7111437.jpg b/datasets/仪表盘/val/images/订单1806973_53_7111437.jpg new file mode 100644 index 0000000..2b65844 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806973_53_7111437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78c1800c385d04571be42c65bbe1e08383e3acc9adf8e7267b161564bc421f2 +size 174068 diff --git a/datasets/仪表盘/val/images/订单1806981_53_7111405.jpg b/datasets/仪表盘/val/images/订单1806981_53_7111405.jpg new file mode 100644 index 0000000..e083cf1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806981_53_7111405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1aec2d267d4ef80ac5c281cc7e460fb74b57beb591219cd735fbf87d365eaf +size 247043 diff --git a/datasets/仪表盘/val/images/订单1806982_53_7111411.jpg b/datasets/仪表盘/val/images/订单1806982_53_7111411.jpg new file mode 100644 index 0000000..8f61ccb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806982_53_7111411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b44a28833ce3231b437504dcdd722358b8885d959c307f0f7eb1dc810de99256 +size 240450 diff --git a/datasets/仪表盘/val/images/订单1806984_53_7111466.jpg b/datasets/仪表盘/val/images/订单1806984_53_7111466.jpg new file mode 100644 index 0000000..dd226a4 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806984_53_7111466.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9a4d4e72c6e1d1e26b68075790e822503d4e51c0a8490258d3d7cb48e4cc6e +size 144982 diff --git a/datasets/仪表盘/val/images/订单1806987_53_7111461.jpg b/datasets/仪表盘/val/images/订单1806987_53_7111461.jpg new file mode 100644 index 0000000..d3915e9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806987_53_7111461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6695528f03b2150b724139306afb9fdebbacd8cadede604d1dc86cfccfd5ce +size 205124 diff --git a/datasets/仪表盘/val/images/订单1806988_53_7111484.jpg b/datasets/仪表盘/val/images/订单1806988_53_7111484.jpg new file mode 100644 index 0000000..ab470bc --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806988_53_7111484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63dfa960bd5e06073c28a82178fe53d7a2362176d2a843c0ec4a6ee24dcc71df +size 286509 diff --git a/datasets/仪表盘/val/images/订单1806990_53_7111506.jpg b/datasets/仪表盘/val/images/订单1806990_53_7111506.jpg new file mode 100644 index 0000000..6c01afe --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806990_53_7111506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d5b7190d1301aaa03bde1b4701b280b8474612be35123f5a18e8fcfe81ccca +size 228300 diff --git a/datasets/仪表盘/val/images/订单1806991_53_7111531.jpg b/datasets/仪表盘/val/images/订单1806991_53_7111531.jpg new file mode 100644 index 0000000..8e14b5d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806991_53_7111531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36629a965c29e26b44a5a3525728be11d71d407e99e2cb8a1ecd036d410abd3 +size 404241 diff --git a/datasets/仪表盘/val/images/订单1806992_53_7111541.jpg b/datasets/仪表盘/val/images/订单1806992_53_7111541.jpg new file mode 100644 index 0000000..da29df1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806992_53_7111541.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d10d8a44804593adf0e28038ef2721e4551acc9c698374b5b532b324f5fb66 +size 261544 diff --git a/datasets/仪表盘/val/images/订单1806994_53_7111559.jpg b/datasets/仪表盘/val/images/订单1806994_53_7111559.jpg new file mode 100644 index 0000000..e84e6b2 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806994_53_7111559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3630eb0ee1de6b3f8f6037a0b52d1094250cf0729e6dd3313f0c197e20047529 +size 77022 diff --git a/datasets/仪表盘/val/images/订单1806996_53_7111578.jpg b/datasets/仪表盘/val/images/订单1806996_53_7111578.jpg new file mode 100644 index 0000000..5ea635d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806996_53_7111578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776b5cd69c4399d2434019b827772d741841508680ccaebb193262ec00da20df +size 377285 diff --git a/datasets/仪表盘/val/images/订单1806997_53_7111588.jpg b/datasets/仪表盘/val/images/订单1806997_53_7111588.jpg new file mode 100644 index 0000000..4eae710 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806997_53_7111588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfe9a302a94603fa383cd02bb7437fe3fa5b52ffc7b0720fa51a46df0b2bc2a +size 138563 diff --git a/datasets/仪表盘/val/images/订单1806998_53_7111617.jpg b/datasets/仪表盘/val/images/订单1806998_53_7111617.jpg new file mode 100644 index 0000000..583fb00 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1806998_53_7111617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cf631ea1d0e135d273be511c9e73a4ff6b4897a4c21e3954eee21f141a4dc2 +size 295808 diff --git a/datasets/仪表盘/val/images/订单1807000_53_7111602.jpg b/datasets/仪表盘/val/images/订单1807000_53_7111602.jpg new file mode 100644 index 0000000..5656464 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807000_53_7111602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636d7e6f4a63a336a7913280834e60d09bd31d1e35440589942de1b86251e4d1 +size 58277 diff --git a/datasets/仪表盘/val/images/订单1807001_53_7111598.jpg b/datasets/仪表盘/val/images/订单1807001_53_7111598.jpg new file mode 100644 index 0000000..5388423 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807001_53_7111598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a50c90f5db32e9d899200715090aa70083481a35397ced45c3b9f0937bfb428 +size 275742 diff --git a/datasets/仪表盘/val/images/订单1807006_53_7111641.jpg b/datasets/仪表盘/val/images/订单1807006_53_7111641.jpg new file mode 100644 index 0000000..d18bff9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807006_53_7111641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748d5b318b37c5103507ad3baf58ea8529f9b65ebfa73475173aa835f5579446 +size 247634 diff --git a/datasets/仪表盘/val/images/订单1807008_53_7113976.jpg b/datasets/仪表盘/val/images/订单1807008_53_7113976.jpg new file mode 100644 index 0000000..4ea493d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807008_53_7113976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ab4869eda1421dfef428be1eae5c20d0c8fc4cd185a98a906cc1d9b4214424 +size 269206 diff --git a/datasets/仪表盘/val/images/订单1807010_53_7111679.jpg b/datasets/仪表盘/val/images/订单1807010_53_7111679.jpg new file mode 100644 index 0000000..871cc38 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807010_53_7111679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f9c1470214a46fb33f1bb61f26f2344aa177a7ca9c971f92472344037ba1159 +size 219579 diff --git a/datasets/仪表盘/val/images/订单1807011_53_7111701.jpg b/datasets/仪表盘/val/images/订单1807011_53_7111701.jpg new file mode 100644 index 0000000..0890b76 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807011_53_7111701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da49698e6950f6aae25363bc3aafb6557b3fec7ee8e317d0a29b03c69ffa5b03 +size 526155 diff --git a/datasets/仪表盘/val/images/订单1807012_53_7111659.jpg b/datasets/仪表盘/val/images/订单1807012_53_7111659.jpg new file mode 100644 index 0000000..ca8c957 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807012_53_7111659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681f5b2532df75c4b4ba64ce63f7eabf120cd1f0eb0165effe7453d2afe53363 +size 142744 diff --git a/datasets/仪表盘/val/images/订单1807014_53_7111674.jpg b/datasets/仪表盘/val/images/订单1807014_53_7111674.jpg new file mode 100644 index 0000000..5ad3899 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807014_53_7111674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba43f74f3dfef86f0f8c9e07323832f82f2183e5fccdf3ee1f3f8fdfd79b332 +size 131493 diff --git a/datasets/仪表盘/val/images/订单1807017_53_7111725.jpg b/datasets/仪表盘/val/images/订单1807017_53_7111725.jpg new file mode 100644 index 0000000..aecc5d4 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807017_53_7111725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2572bcfcc895f9f8cf195bc0766820d29dc20f419ce193f5500ee1a330443a +size 241777 diff --git a/datasets/仪表盘/val/images/订单1807020_53_7111737.jpg b/datasets/仪表盘/val/images/订单1807020_53_7111737.jpg new file mode 100644 index 0000000..d1b514e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807020_53_7111737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36dea0ecbbca0dbce77d76e4e96061fd43d9d630f6ae92fe9da4b1131ecec1ec +size 225136 diff --git a/datasets/仪表盘/val/images/订单1807021_53_7111733.jpg b/datasets/仪表盘/val/images/订单1807021_53_7111733.jpg new file mode 100644 index 0000000..6282300 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807021_53_7111733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f55f9a62ac87c22e665df90aaf1b998e9cdda7adb6d3a7d54a80d51f82af1a +size 168153 diff --git a/datasets/仪表盘/val/images/订单1807024_53_7111780.jpg b/datasets/仪表盘/val/images/订单1807024_53_7111780.jpg new file mode 100644 index 0000000..a7778c1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807024_53_7111780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7f244da255f8db2719f4b7a947817f25709c8c7a8ffb56a90fd3b80fb84967b +size 326149 diff --git a/datasets/仪表盘/val/images/订单1807025_53_7111797.jpg b/datasets/仪表盘/val/images/订单1807025_53_7111797.jpg new file mode 100644 index 0000000..4abef8d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807025_53_7111797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5562a257b23506491fdec74c47bc0b2a996bd5e8f3792c2d106478c1233af3 +size 299956 diff --git a/datasets/仪表盘/val/images/订单1807028_53_7111845.jpg b/datasets/仪表盘/val/images/订单1807028_53_7111845.jpg new file mode 100644 index 0000000..f01798f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807028_53_7111845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e622e3f92d07fbd036e096eaf2a30a8f35c4138ca0778eb641371984109b27aa +size 287828 diff --git a/datasets/仪表盘/val/images/订单1807031_53_7111907.jpg b/datasets/仪表盘/val/images/订单1807031_53_7111907.jpg new file mode 100644 index 0000000..c84296c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807031_53_7111907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfed102186074bfe6e68e2cbdd2b080a4be9f49526c4cdde7dee8f13d7d9a6e6 +size 470454 diff --git a/datasets/仪表盘/val/images/订单1807033_53_7111839.jpg b/datasets/仪表盘/val/images/订单1807033_53_7111839.jpg new file mode 100644 index 0000000..9a10073 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807033_53_7111839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64797d0fc1eef53553eaad7def16c29cb603610aa5fea6f4add59ab393668614 +size 467914 diff --git a/datasets/仪表盘/val/images/订单1807034_53_7111847.jpg b/datasets/仪表盘/val/images/订单1807034_53_7111847.jpg new file mode 100644 index 0000000..a139b38 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807034_53_7111847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea49ee0ea485ae0c2d83e9dd189d1141c7f3cb4b4b9aef96f1bfb8b8637f57a +size 175340 diff --git a/datasets/仪表盘/val/images/订单1807036_53_7111834.jpg b/datasets/仪表盘/val/images/订单1807036_53_7111834.jpg new file mode 100644 index 0000000..920e5aa --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807036_53_7111834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbd051b5107064b61c5edf5c6593decac71962b7c8ee791e38d44030d983f26 +size 281541 diff --git a/datasets/仪表盘/val/images/订单1807039_53_7111876.jpg b/datasets/仪表盘/val/images/订单1807039_53_7111876.jpg new file mode 100644 index 0000000..9b5cc6c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807039_53_7111876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa724791562d912473e42baa92e28f2a33245179b325d7e244bf49bcf46bcdea +size 287171 diff --git a/datasets/仪表盘/val/images/订单1807040_53_7111920.jpg b/datasets/仪表盘/val/images/订单1807040_53_7111920.jpg new file mode 100644 index 0000000..143f1ff --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807040_53_7111920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8085638783dec3c5e8ba98f2f4d6e4c53dbf96823bc6b58299ea3057be1b52c3 +size 91851 diff --git a/datasets/仪表盘/val/images/订单1807041_53_7111970.jpg b/datasets/仪表盘/val/images/订单1807041_53_7111970.jpg new file mode 100644 index 0000000..1f403f7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807041_53_7111970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72eb4805d6b44989c1baba38f8e1beaa959918f5c460baa03118f439aad8f52 +size 307054 diff --git a/datasets/仪表盘/val/images/订单1807042_53_7111956.jpg b/datasets/仪表盘/val/images/订单1807042_53_7111956.jpg new file mode 100644 index 0000000..3ef2d02 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807042_53_7111956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf90f6a7b55ef766530a9be32e44971946a4d56f327931bc58c13497e8c7dbe9 +size 399706 diff --git a/datasets/仪表盘/val/images/订单1807045_53_7111928.jpg b/datasets/仪表盘/val/images/订单1807045_53_7111928.jpg new file mode 100644 index 0000000..f17a2f7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807045_53_7111928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345af7b69bad484801426cbd887021431a5921cbf0fe396375ac9b0d401e668e +size 209367 diff --git a/datasets/仪表盘/val/images/订单1807047_53_7112003.jpg b/datasets/仪表盘/val/images/订单1807047_53_7112003.jpg new file mode 100644 index 0000000..34ff82b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807047_53_7112003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07eb363a3c6993178d631e32aca00073339455f431a5ccf64bef5fcba9b0f498 +size 267372 diff --git a/datasets/仪表盘/val/images/订单1807049_53_7111979.jpg b/datasets/仪表盘/val/images/订单1807049_53_7111979.jpg new file mode 100644 index 0000000..ebd0323 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807049_53_7111979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f22afdb18b3f2c3abe1c24f30ab3d5781e82975893687deb06dacdfbfb65f8 +size 233890 diff --git a/datasets/仪表盘/val/images/订单1807051_53_7111938.jpg b/datasets/仪表盘/val/images/订单1807051_53_7111938.jpg new file mode 100644 index 0000000..aa329d8 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807051_53_7111938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6ce8bfe84d67420ce7ea1ee718b7b9027b13dbfabe14e729372d6a755eb1cd +size 257244 diff --git a/datasets/仪表盘/val/images/订单1807054_53_7112058.jpg b/datasets/仪表盘/val/images/订单1807054_53_7112058.jpg new file mode 100644 index 0000000..ce8c76d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807054_53_7112058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e075790b6d44cb21f41634a2063789aba6e35661452ab4e0592f4801756812e +size 384365 diff --git a/datasets/仪表盘/val/images/订单1807056_53_7112013.jpg b/datasets/仪表盘/val/images/订单1807056_53_7112013.jpg new file mode 100644 index 0000000..b737a8b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807056_53_7112013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd31e2393c8e47c233489e899cb2b84bb5704ee9019e845bacba4c4d86153cc1 +size 282054 diff --git a/datasets/仪表盘/val/images/订单1807061_53_7112100.jpg b/datasets/仪表盘/val/images/订单1807061_53_7112100.jpg new file mode 100644 index 0000000..09e34fd --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807061_53_7112100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c78c4ca0b4d44b8861f60311cc4c712b87886dab779550ce0af452651d33cf1 +size 426774 diff --git a/datasets/仪表盘/val/images/订单1807065_53_7112131.jpg b/datasets/仪表盘/val/images/订单1807065_53_7112131.jpg new file mode 100644 index 0000000..ae23330 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807065_53_7112131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761b9ec410d011df0a14f21b8d2d7567f2e79b9a2d94dec4eb8ec9956dee331d +size 297506 diff --git a/datasets/仪表盘/val/images/订单1807066_53_7112137.jpg b/datasets/仪表盘/val/images/订单1807066_53_7112137.jpg new file mode 100644 index 0000000..7acb813 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807066_53_7112137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d548b6f24edaf44d889a7d1b3aa4893abc19a3d47f6450062e1ab34ffc2403e +size 465629 diff --git a/datasets/仪表盘/val/images/订单1807069_53_7112241.jpg b/datasets/仪表盘/val/images/订单1807069_53_7112241.jpg new file mode 100644 index 0000000..b542c3e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807069_53_7112241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca07c8bf7d14d546a7d894db9a79bc8e38d3fc439361d9b7c86bc22227567f4d +size 494886 diff --git a/datasets/仪表盘/val/images/订单1807070_53_7112190.jpg b/datasets/仪表盘/val/images/订单1807070_53_7112190.jpg new file mode 100644 index 0000000..05b5be1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807070_53_7112190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ead1b1a8ff7a369c1f73db4e19eaf64bbfd0287ce7622742af5b05d02e1e44f +size 61936 diff --git a/datasets/仪表盘/val/images/订单1807073_53_7112174.jpg b/datasets/仪表盘/val/images/订单1807073_53_7112174.jpg new file mode 100644 index 0000000..67bfffb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807073_53_7112174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b93120bca6eb7b159baa7b5c291d97549ad289a382f9f39e7bce90e8cb83df6 +size 326882 diff --git a/datasets/仪表盘/val/images/订单1807074_53_7113112.jpg b/datasets/仪表盘/val/images/订单1807074_53_7113112.jpg new file mode 100644 index 0000000..a5e9bca --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807074_53_7113112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747d7b5a602df6434ba1e12190b4b4a86d93c0c9e6ac28358ec7c3cef4d32769 +size 325308 diff --git a/datasets/仪表盘/val/images/订单1807076_53_7112163.jpg b/datasets/仪表盘/val/images/订单1807076_53_7112163.jpg new file mode 100644 index 0000000..6fe5bac --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807076_53_7112163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e0703afdc71a6cb81e9268cb393bbc290b8e07c8798262f0064ca1e2340754f +size 405187 diff --git a/datasets/仪表盘/val/images/订单1807077_53_7112269.jpg b/datasets/仪表盘/val/images/订单1807077_53_7112269.jpg new file mode 100644 index 0000000..a3c525e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807077_53_7112269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199716fdb8e034eeda5242b77cefac044c7e6016e93990909d53214271023f7a +size 345846 diff --git a/datasets/仪表盘/val/images/订单1807079_53_7112324.jpg b/datasets/仪表盘/val/images/订单1807079_53_7112324.jpg new file mode 100644 index 0000000..687653d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807079_53_7112324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e252e193d94794d90fb1811fe77a5a130b0be76b27e2bd7708304d74986081e8 +size 406045 diff --git a/datasets/仪表盘/val/images/订单1807081_53_7112216.jpg b/datasets/仪表盘/val/images/订单1807081_53_7112216.jpg new file mode 100644 index 0000000..a51ccd8 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807081_53_7112216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6784d72664fd4ecee2bb29669a69f658a91966cdb6f82c79fb38833a9d7276f1 +size 108889 diff --git a/datasets/仪表盘/val/images/订单1807082_53_7112238.jpg b/datasets/仪表盘/val/images/订单1807082_53_7112238.jpg new file mode 100644 index 0000000..e6a725f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807082_53_7112238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3133393f506781f2091839161f5a8c361fdfaf6c9b5cc53ad6e35c7e773d9144 +size 256430 diff --git a/datasets/仪表盘/val/images/订单1807088_53_7112347.jpg b/datasets/仪表盘/val/images/订单1807088_53_7112347.jpg new file mode 100644 index 0000000..f324f4c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807088_53_7112347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59da15d7c7c762bdd379ba522531dc02c7729013ee466242792919232f03027c +size 433271 diff --git a/datasets/仪表盘/val/images/订单1807094_53_7112416.jpg b/datasets/仪表盘/val/images/订单1807094_53_7112416.jpg new file mode 100644 index 0000000..b155495 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807094_53_7112416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fab25f104091df159d3183a7b004071e9db1e26066d9806add7cf82de9e67e +size 360038 diff --git a/datasets/仪表盘/val/images/订单1807095_53_7112460.jpg b/datasets/仪表盘/val/images/订单1807095_53_7112460.jpg new file mode 100644 index 0000000..0f6e520 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807095_53_7112460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24fcf00d365055f7b5a6babddfdde216fd37c5729c759fc9acf4a392db9cb34f +size 416323 diff --git a/datasets/仪表盘/val/images/订单1807097_53_7112443.jpg b/datasets/仪表盘/val/images/订单1807097_53_7112443.jpg new file mode 100644 index 0000000..5f45bf7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807097_53_7112443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0db81bbc6c88c1e22e48ddb52af98fd4b38cd8fa80eb0347fc5775e239d8356 +size 381119 diff --git a/datasets/仪表盘/val/images/订单1807098_53_7112453.jpg b/datasets/仪表盘/val/images/订单1807098_53_7112453.jpg new file mode 100644 index 0000000..dc5a26a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807098_53_7112453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d959132c4cdc7a4a5d4a62d3513d35ba9540dc3328abadfe52597a174b88a142 +size 112556 diff --git a/datasets/仪表盘/val/images/订单1807107_53_7112594.jpg b/datasets/仪表盘/val/images/订单1807107_53_7112594.jpg new file mode 100644 index 0000000..ddb756b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807107_53_7112594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1de15b4dc5c504b489f4bc7a73574b33df6722c959c4feac3aeb21ebcd54c8d +size 142300 diff --git a/datasets/仪表盘/val/images/订单1807111_53_7112559.jpg b/datasets/仪表盘/val/images/订单1807111_53_7112559.jpg new file mode 100644 index 0000000..878b472 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807111_53_7112559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e224cbda78a5ce9a43ebfa51ce7843833c708942144b894fd8c75d5fbc1d6598 +size 337377 diff --git a/datasets/仪表盘/val/images/订单1807117_53_7112515.jpg b/datasets/仪表盘/val/images/订单1807117_53_7112515.jpg new file mode 100644 index 0000000..79292dd --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807117_53_7112515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d37b32eba1c26a79273d6c959873694d94cc8eb81e9352ecdd43da58da81c8 +size 117430 diff --git a/datasets/仪表盘/val/images/订单1807118_53_7112544.jpg b/datasets/仪表盘/val/images/订单1807118_53_7112544.jpg new file mode 100644 index 0000000..91e91ee --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807118_53_7112544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77bb02136e71b6a292e1c9d042e9156370146c9b60f122c2870ee783baf833d +size 328860 diff --git a/datasets/仪表盘/val/images/订单1807121_53_7112641.jpg b/datasets/仪表盘/val/images/订单1807121_53_7112641.jpg new file mode 100644 index 0000000..58bc21b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807121_53_7112641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7781478c1f14a1ccbe236b65779f8da6691ca96af2fac36503efb83b0bdf4f +size 327334 diff --git a/datasets/仪表盘/val/images/订单1807123_53_7112597.jpg b/datasets/仪表盘/val/images/订单1807123_53_7112597.jpg new file mode 100644 index 0000000..b4f9307 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807123_53_7112597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f5730f5a63e182a2f3a358cc6dfc9963e1987ddfcb60eba9abda6c06a9df92 +size 211311 diff --git a/datasets/仪表盘/val/images/订单1807124_53_7112642.jpg b/datasets/仪表盘/val/images/订单1807124_53_7112642.jpg new file mode 100644 index 0000000..0e4569d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807124_53_7112642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a6e9e1d2c8396c46c32e1b47b946f51dfa0d5c37f058c685eea8282c3546df +size 448512 diff --git a/datasets/仪表盘/val/images/订单1807126_53_7112766.jpg b/datasets/仪表盘/val/images/订单1807126_53_7112766.jpg new file mode 100644 index 0000000..0f4d56b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807126_53_7112766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb338e5177f8272335858f6564b68d11e5533249d449a2b14280501476c22f9b +size 210535 diff --git a/datasets/仪表盘/val/images/订单1807127_53_7112686.jpg b/datasets/仪表盘/val/images/订单1807127_53_7112686.jpg new file mode 100644 index 0000000..c764e00 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807127_53_7112686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94df0e8f53f6a88a5cbd0397a13dc8ef9a6e3654b10a198438de8dc40f138aed +size 374736 diff --git a/datasets/仪表盘/val/images/订单1807130_53_7112674.jpg b/datasets/仪表盘/val/images/订单1807130_53_7112674.jpg new file mode 100644 index 0000000..4e3cc79 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807130_53_7112674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341c4467e814fb5eda1edd8c4dc20aaa10ec8498a273e80dafb5591e5463049c +size 53015 diff --git a/datasets/仪表盘/val/images/订单1807131_53_7112678.jpg b/datasets/仪表盘/val/images/订单1807131_53_7112678.jpg new file mode 100644 index 0000000..6445753 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807131_53_7112678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960302515b2765c356661a22a8b4977f09233431e1e7fa693b1f76970986fce8 +size 472445 diff --git a/datasets/仪表盘/val/images/订单1807134_53_7112713.jpg b/datasets/仪表盘/val/images/订单1807134_53_7112713.jpg new file mode 100644 index 0000000..af3f0b5 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807134_53_7112713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1461fff3faeda616b5b73546e38a3c3b4ef0d0e54f8c69b0677aedf9bc80eee0 +size 90818 diff --git a/datasets/仪表盘/val/images/订单1807139_53_7112744.jpg b/datasets/仪表盘/val/images/订单1807139_53_7112744.jpg new file mode 100644 index 0000000..bff9199 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807139_53_7112744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f201032b58df637a194f3d5a9eb876265af7a78db255e02aa08e4810890a66a3 +size 119859 diff --git a/datasets/仪表盘/val/images/订单1807140_53_7112750.jpg b/datasets/仪表盘/val/images/订单1807140_53_7112750.jpg new file mode 100644 index 0000000..dc4dc30 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807140_53_7112750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c7c4cdf59c1ad5cfc631f2386f7beb68f1cc8d9d0b2053ba5dceefb9cb5b74 +size 149495 diff --git a/datasets/仪表盘/val/images/订单1807141_53_7112778.jpg b/datasets/仪表盘/val/images/订单1807141_53_7112778.jpg new file mode 100644 index 0000000..8649dd3 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807141_53_7112778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd62bdcbc71a74614f1d351f5bc3b754e745ecaaf43c4eff65614f53d8e4c81 +size 84525 diff --git a/datasets/仪表盘/val/images/订单1807142_53_7112824.jpg b/datasets/仪表盘/val/images/订单1807142_53_7112824.jpg new file mode 100644 index 0000000..7e1c5f7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807142_53_7112824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3e9c8807cfbdf9e11357fc491349ad70a962335986203b2ad7c04c9947350b +size 228877 diff --git a/datasets/仪表盘/val/images/订单1807147_53_7112892.jpg b/datasets/仪表盘/val/images/订单1807147_53_7112892.jpg new file mode 100644 index 0000000..20212d5 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807147_53_7112892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e632f4b21e7f939e937b3ca2372e5100042407121af9426f15ffd80e269fe030 +size 341629 diff --git a/datasets/仪表盘/val/images/订单1807149_53_7112939.jpg b/datasets/仪表盘/val/images/订单1807149_53_7112939.jpg new file mode 100644 index 0000000..eb551a1 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807149_53_7112939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c892a227713d3e01e2cd3414254483fe4befea1dd336114d5aeb4b37b43b2c +size 289427 diff --git a/datasets/仪表盘/val/images/订单1807152_53_7112834.jpg b/datasets/仪表盘/val/images/订单1807152_53_7112834.jpg new file mode 100644 index 0000000..4298e24 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807152_53_7112834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c295ef597ef82e3eca6ab3c61d9fab6c2fd509f6a7dcdea628ff1646186f5607 +size 197226 diff --git a/datasets/仪表盘/val/images/订单1807154_53_7112854.jpg b/datasets/仪表盘/val/images/订单1807154_53_7112854.jpg new file mode 100644 index 0000000..98fccc2 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807154_53_7112854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0367253240788ceac51b8aadb0893abe5af6b9687fb3250718751a39cc79cf +size 235908 diff --git a/datasets/仪表盘/val/images/订单1807155_53_7112930.jpg b/datasets/仪表盘/val/images/订单1807155_53_7112930.jpg new file mode 100644 index 0000000..4e4d3dc --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807155_53_7112930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a4cbc42f9006f864636680a588deb70004d69dac2736d02d23d1bf4b3e8d22 +size 347926 diff --git a/datasets/仪表盘/val/images/订单1807156_53_7112929.jpg b/datasets/仪表盘/val/images/订单1807156_53_7112929.jpg new file mode 100644 index 0000000..1c3b9bf --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807156_53_7112929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6132e9fcaa853e7f037609a64fd3c143be8052c7f242e7a032388aab3ccc08d1 +size 249735 diff --git a/datasets/仪表盘/val/images/订单1807157_53_7112876.jpg b/datasets/仪表盘/val/images/订单1807157_53_7112876.jpg new file mode 100644 index 0000000..0856b6f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807157_53_7112876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c92bdd359642055e7ceb0ebc7ab907ecb163f5bd5af02794a6f594e1537133 +size 421422 diff --git a/datasets/仪表盘/val/images/订单1807159_53_7113019.jpg b/datasets/仪表盘/val/images/订单1807159_53_7113019.jpg new file mode 100644 index 0000000..d3902a4 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807159_53_7113019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01de0479db793d74ba57d9fe36692c19dfe7ddecdd2d15a438120e9eb6285a8c +size 302579 diff --git a/datasets/仪表盘/val/images/订单1807161_53_7113061.jpg b/datasets/仪表盘/val/images/订单1807161_53_7113061.jpg new file mode 100644 index 0000000..6f6db15 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807161_53_7113061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01833d80db9e55be36fd970ae6421265b270395c397e1cf48770588300232239 +size 51361 diff --git a/datasets/仪表盘/val/images/订单1807164_53_7113121.jpg b/datasets/仪表盘/val/images/订单1807164_53_7113121.jpg new file mode 100644 index 0000000..e027c9d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807164_53_7113121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27f5816d0fe51203a8b1ded0d55b294d09302678fa87d28d114ae53bc99add8 +size 270213 diff --git a/datasets/仪表盘/val/images/订单1807165_53_7112995.jpg b/datasets/仪表盘/val/images/订单1807165_53_7112995.jpg new file mode 100644 index 0000000..c09f43d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807165_53_7112995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a2c218b2e64c371e655b28b485d04af39d19743b9d5644d7486e4832f6d62f +size 65559 diff --git a/datasets/仪表盘/val/images/订单1807166_53_7112962.jpg b/datasets/仪表盘/val/images/订单1807166_53_7112962.jpg new file mode 100644 index 0000000..87481c0 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807166_53_7112962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4d870b81a880a5894b3b2c08ac8ee22438019bf0316868a06f49394be8859b +size 234532 diff --git a/datasets/仪表盘/val/images/订单1807169_53_7113036.jpg b/datasets/仪表盘/val/images/订单1807169_53_7113036.jpg new file mode 100644 index 0000000..0611049 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807169_53_7113036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f0aed8e4c24ceddf00cc862fe9c8b60100459edb12a9dfc728ad70fb63c69c +size 322201 diff --git a/datasets/仪表盘/val/images/订单1807181_53_7113185.jpg b/datasets/仪表盘/val/images/订单1807181_53_7113185.jpg new file mode 100644 index 0000000..3afd779 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807181_53_7113185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b989c28c30624adcfea517509a0c4044f14853e0dd8d931f562f1718809608 +size 370967 diff --git a/datasets/仪表盘/val/images/订单1807182_53_7113120.jpg b/datasets/仪表盘/val/images/订单1807182_53_7113120.jpg new file mode 100644 index 0000000..7f4cd0a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807182_53_7113120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc6ad1bbdf148bd9508e61e68eaeaa71067f5299c47c1a997686c118bb3ce94 +size 227022 diff --git a/datasets/仪表盘/val/images/订单1807183_53_7113128.jpg b/datasets/仪表盘/val/images/订单1807183_53_7113128.jpg new file mode 100644 index 0000000..d1c478a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807183_53_7113128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a122e7342dfa1561eeba44a5a10238a7ab01d93f9f7b35fd94aebcb8028d5a +size 214353 diff --git a/datasets/仪表盘/val/images/订单1807184_53_7113170.jpg b/datasets/仪表盘/val/images/订单1807184_53_7113170.jpg new file mode 100644 index 0000000..1e1e5db --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807184_53_7113170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392ba79e403a43a6a9153563a5163642dba222ffee682799c0896f8fcc291040 +size 454274 diff --git a/datasets/仪表盘/val/images/订单1807185_53_7113206.jpg b/datasets/仪表盘/val/images/订单1807185_53_7113206.jpg new file mode 100644 index 0000000..14e5e38 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807185_53_7113206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7c4fb576faffc48636b69f6cdb9a888124eab11b9ac74e66547140ebef6c71 +size 330445 diff --git a/datasets/仪表盘/val/images/订单1807186_53_7113260.jpg b/datasets/仪表盘/val/images/订单1807186_53_7113260.jpg new file mode 100644 index 0000000..20b4d6e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807186_53_7113260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4976cbd79030b644d116180ae4e3fec9f4991687bdf1eb24c8547cdebd763e7d +size 531502 diff --git a/datasets/仪表盘/val/images/订单1807189_53_7113395.jpg b/datasets/仪表盘/val/images/订单1807189_53_7113395.jpg new file mode 100644 index 0000000..dce5150 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807189_53_7113395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284d3f870035d099fe44aef61547a1065215e1682420cd9e1f5971bcb2b68702 +size 419781 diff --git a/datasets/仪表盘/val/images/订单1807191_53_7113317.jpg b/datasets/仪表盘/val/images/订单1807191_53_7113317.jpg new file mode 100644 index 0000000..0588e2c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807191_53_7113317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83168ac98f83565a7eafdb7bf9717cd0733680f0b02cbe4e2d7a3aceeafaed0 +size 186542 diff --git a/datasets/仪表盘/val/images/订单1807192_53_7113441.jpg b/datasets/仪表盘/val/images/订单1807192_53_7113441.jpg new file mode 100644 index 0000000..7b43453 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807192_53_7113441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eeaa33cc2e949a588ab99a317e44388f0e2419eef48c8b2bdfd0b8e82a30ef +size 243850 diff --git a/datasets/仪表盘/val/images/订单1807195_53_7113360.jpg b/datasets/仪表盘/val/images/订单1807195_53_7113360.jpg new file mode 100644 index 0000000..5d392fb --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807195_53_7113360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d60f14cbfbc81bab1816d54d47218b808400e0d8251cd731e97087ec092086 +size 342721 diff --git a/datasets/仪表盘/val/images/订单1807197_53_7113315.jpg b/datasets/仪表盘/val/images/订单1807197_53_7113315.jpg new file mode 100644 index 0000000..0e6134a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807197_53_7113315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473a5365eea5a8e0a4ce0d354515e93e42f271285a64246852bfecbcafa45a19 +size 127040 diff --git a/datasets/仪表盘/val/images/订单1807199_53_7113381.jpg b/datasets/仪表盘/val/images/订单1807199_53_7113381.jpg new file mode 100644 index 0000000..9d01c04 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807199_53_7113381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2bf7b4cfaba1a543d25d4ab0898af21df995ff7411fdd08e92117a85754ed1c +size 297222 diff --git a/datasets/仪表盘/val/images/订单1807201_53_7113444.jpg b/datasets/仪表盘/val/images/订单1807201_53_7113444.jpg new file mode 100644 index 0000000..aee98b3 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807201_53_7113444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c009f9befbf03eb5694f1412d279cdfd789e7c1ea8aefdb20b4b038e76fca7 +size 261072 diff --git a/datasets/仪表盘/val/images/订单1807202_53_7113445.jpg b/datasets/仪表盘/val/images/订单1807202_53_7113445.jpg new file mode 100644 index 0000000..e4bbaf8 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807202_53_7113445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a807bcd14d6496840702eb7c31a1e57c610a0ced44c5c60a5d4f05c2237b19 +size 295903 diff --git a/datasets/仪表盘/val/images/订单1807203_53_7113400.jpg b/datasets/仪表盘/val/images/订单1807203_53_7113400.jpg new file mode 100644 index 0000000..8d3ab62 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807203_53_7113400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae36d84ef236536a2296521a2659a22d6655f2cd12d5b29723dd990abfdf17e4 +size 313732 diff --git a/datasets/仪表盘/val/images/订单1807205_53_7113903.jpg b/datasets/仪表盘/val/images/订单1807205_53_7113903.jpg new file mode 100644 index 0000000..1313620 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807205_53_7113903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37304f9ea6866944b935a8d14849af3c0bf850966d8b5d445dd8e8ed4985efc +size 784507 diff --git a/datasets/仪表盘/val/images/订单1807208_53_7113550.jpg b/datasets/仪表盘/val/images/订单1807208_53_7113550.jpg new file mode 100644 index 0000000..2645e1c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807208_53_7113550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85672f6ea9afc3905d7f6e2c5d1cac636164fd161d96b8c34a79ebda7f5f31e0 +size 304238 diff --git a/datasets/仪表盘/val/images/订单1807211_53_7113508.jpg b/datasets/仪表盘/val/images/订单1807211_53_7113508.jpg new file mode 100644 index 0000000..8ae2276 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807211_53_7113508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b0545fc8af4ed7187fdb064d2b97593a3269d344b52c2dee0e1e6a0813b921 +size 353009 diff --git a/datasets/仪表盘/val/images/订单1807217_53_7113517.jpg b/datasets/仪表盘/val/images/订单1807217_53_7113517.jpg new file mode 100644 index 0000000..87dd545 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807217_53_7113517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc6fb68aaac78acc5bc9e6375ae01167744e85d2760c400e2f5fd9136af2af6 +size 210604 diff --git a/datasets/仪表盘/val/images/订单1807219_53_7113564.jpg b/datasets/仪表盘/val/images/订单1807219_53_7113564.jpg new file mode 100644 index 0000000..f5a3378 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807219_53_7113564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cccca1873a9f36291b7b7e77ff49b2f7250465853616bd3bb4b9a22ed6e4dc1 +size 424362 diff --git a/datasets/仪表盘/val/images/订单1807221_53_7113546.jpg b/datasets/仪表盘/val/images/订单1807221_53_7113546.jpg new file mode 100644 index 0000000..1d878a5 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807221_53_7113546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477e9d69d27a8c3bb5cddf025161b0c02073ffa8f3a708363679a6cf6590c125 +size 112902 diff --git a/datasets/仪表盘/val/images/订单1807224_53_7113560.jpg b/datasets/仪表盘/val/images/订单1807224_53_7113560.jpg new file mode 100644 index 0000000..409169a --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807224_53_7113560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7e8aeb84bd93141208da48540636799dc348ad8b3f27039ca78cb5b05ba8f8 +size 121443 diff --git a/datasets/仪表盘/val/images/订单1807226_53_7113740.jpg b/datasets/仪表盘/val/images/订单1807226_53_7113740.jpg new file mode 100644 index 0000000..6f36905 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807226_53_7113740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5a108a734e9d82278331ed682ff697b637358809d2ddeb638b1124ac4664eb +size 282466 diff --git a/datasets/仪表盘/val/images/订单1807230_53_7113589.jpg b/datasets/仪表盘/val/images/订单1807230_53_7113589.jpg new file mode 100644 index 0000000..722be58 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807230_53_7113589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91049910d191e20fc5948c7e19c31074f15f9347c0122f563e2604497b0959f +size 469439 diff --git a/datasets/仪表盘/val/images/订单1807231_53_7113611.jpg b/datasets/仪表盘/val/images/订单1807231_53_7113611.jpg new file mode 100644 index 0000000..7f9228d --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807231_53_7113611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9028a893fa3b6b27228800da96df06d0937ca58a0fd4aa632af203427e15d61 +size 139136 diff --git a/datasets/仪表盘/val/images/订单1807232_53_7113669.jpg b/datasets/仪表盘/val/images/订单1807232_53_7113669.jpg new file mode 100644 index 0000000..17364e7 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807232_53_7113669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c507ad11372a232cc1f7d3954f0ef429341380eea29a27a1af69180bb12f6575 +size 318162 diff --git a/datasets/仪表盘/val/images/订单1807233_53_7113673.jpg b/datasets/仪表盘/val/images/订单1807233_53_7113673.jpg new file mode 100644 index 0000000..b26702f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807233_53_7113673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18be5119d4572e9afa2f84746df8428688e2142a12864bb53bc24b55f0b32531 +size 207280 diff --git a/datasets/仪表盘/val/images/订单1807236_53_7113738.jpg b/datasets/仪表盘/val/images/订单1807236_53_7113738.jpg new file mode 100644 index 0000000..89c6878 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807236_53_7113738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3dc7d517f7d98500464495d543ee592fc69dbf1bff412cf819cc6110ee65ab0 +size 214670 diff --git a/datasets/仪表盘/val/images/订单1807237_53_7113645.jpg b/datasets/仪表盘/val/images/订单1807237_53_7113645.jpg new file mode 100644 index 0000000..c7bad51 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807237_53_7113645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547fd95f8e908edbfd8b0b573e1dcc3a76f1e3f9fa3dd182e650c3f5dd5eec5a +size 333784 diff --git a/datasets/仪表盘/val/images/订单1807238_53_7113639.jpg b/datasets/仪表盘/val/images/订单1807238_53_7113639.jpg new file mode 100644 index 0000000..c4cdb8c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807238_53_7113639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f56f1bd9a2ec0b32bfe8fa86d25ced1c44a535eeb6ab58bd9d0509f7830d0151 +size 364689 diff --git a/datasets/仪表盘/val/images/订单1807240_53_7113713.jpg b/datasets/仪表盘/val/images/订单1807240_53_7113713.jpg new file mode 100644 index 0000000..297d853 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807240_53_7113713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69263844d1719c5f2afaecb090bd93d5306a74deff436a3c639778f4c5e8eea9 +size 212781 diff --git a/datasets/仪表盘/val/images/订单1807242_53_7113752.jpg b/datasets/仪表盘/val/images/订单1807242_53_7113752.jpg new file mode 100644 index 0000000..3147fd6 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807242_53_7113752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a65f2e12c272a3901ddd3e87560efde5ac245a4e3216d2002a4d7dfff9331b +size 310836 diff --git a/datasets/仪表盘/val/images/订单1807245_53_7113814.jpg b/datasets/仪表盘/val/images/订单1807245_53_7113814.jpg new file mode 100644 index 0000000..e98923e --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807245_53_7113814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a910b6b54c010b9feba61343f8b777bc2f409d61b83c23fd6801ee59f24c99a1 +size 221989 diff --git a/datasets/仪表盘/val/images/订单1807246_53_7113776.jpg b/datasets/仪表盘/val/images/订单1807246_53_7113776.jpg new file mode 100644 index 0000000..9d1e237 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807246_53_7113776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59432333732d81ea55cadd606ae71e1171727ef5760ac246146c26a46a7e2d95 +size 359922 diff --git a/datasets/仪表盘/val/images/订单1807248_53_7113943.jpg b/datasets/仪表盘/val/images/订单1807248_53_7113943.jpg new file mode 100644 index 0000000..e2b4822 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807248_53_7113943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e518f3db364a97e71b006f72af8f27699b34f96828aaf5f9e49be4fcc5d3ab3 +size 129415 diff --git a/datasets/仪表盘/val/images/订单1807251_53_7113922.jpg b/datasets/仪表盘/val/images/订单1807251_53_7113922.jpg new file mode 100644 index 0000000..03a694b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807251_53_7113922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2703e55418c78788df5636f378ce180bba8856c5d65d3b76a97079bd84c24ce0 +size 290244 diff --git a/datasets/仪表盘/val/images/订单1807252_53_7113870.jpg b/datasets/仪表盘/val/images/订单1807252_53_7113870.jpg new file mode 100644 index 0000000..e856bf5 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807252_53_7113870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7bda4004e547745f4132fc8185911282da7f733fd618040420c3cf96845b0a +size 78870 diff --git a/datasets/仪表盘/val/images/订单1807253_53_7113850.jpg b/datasets/仪表盘/val/images/订单1807253_53_7113850.jpg new file mode 100644 index 0000000..a60039c --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807253_53_7113850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2717506d39c3c27bd35df81ddb6de97fa9fdc1ef0186026b787bb343e3d17d +size 261869 diff --git a/datasets/仪表盘/val/images/订单1807255_53_7113889.jpg b/datasets/仪表盘/val/images/订单1807255_53_7113889.jpg new file mode 100644 index 0000000..343ecbe --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807255_53_7113889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0aa3e677749c8bae9694392feed72210f10ef529b3886b334243859d539a6d +size 88072 diff --git a/datasets/仪表盘/val/images/订单1807259_53_7113921.jpg b/datasets/仪表盘/val/images/订单1807259_53_7113921.jpg new file mode 100644 index 0000000..218bd68 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807259_53_7113921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ce5234440827324525e56155fb898a83be3a0b424705bb012bac83815df1b5 +size 351905 diff --git a/datasets/仪表盘/val/images/订单1807260_53_7114012.jpg b/datasets/仪表盘/val/images/订单1807260_53_7114012.jpg new file mode 100644 index 0000000..cc7ac59 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807260_53_7114012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b313a4e2da57084cf5efd649c780fed7d1b93728f575681800989f21f5a31ccb +size 376245 diff --git a/datasets/仪表盘/val/images/订单1807262_53_7113986.jpg b/datasets/仪表盘/val/images/订单1807262_53_7113986.jpg new file mode 100644 index 0000000..13e2967 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807262_53_7113986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2790c5d1a2e760a2b399467964e8841f45034889247f06ff427ffae63fcdf4 +size 227065 diff --git a/datasets/仪表盘/val/images/订单1807263_53_7114078.jpg b/datasets/仪表盘/val/images/订单1807263_53_7114078.jpg new file mode 100644 index 0000000..095a2d9 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807263_53_7114078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3837ebe097883bb348ca5232b32a83de935f44a1239a6b89e7cb758dcf14245b +size 350063 diff --git a/datasets/仪表盘/val/images/订单1807265_53_7114038.jpg b/datasets/仪表盘/val/images/订单1807265_53_7114038.jpg new file mode 100644 index 0000000..5f9335b --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807265_53_7114038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2fba532ee6939f87c1c680adf213a4cec0aef78d083c3691173de158b32e0c +size 226795 diff --git a/datasets/仪表盘/val/images/订单1807269_53_7114090.jpg b/datasets/仪表盘/val/images/订单1807269_53_7114090.jpg new file mode 100644 index 0000000..8fff7d5 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807269_53_7114090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9809c185fceb02767042b78a162c4f76d85bbf3f131bb6e4fa8ac7b0023feea4 +size 199354 diff --git a/datasets/仪表盘/val/images/订单1807271_53_7114133.jpg b/datasets/仪表盘/val/images/订单1807271_53_7114133.jpg new file mode 100644 index 0000000..2e215b4 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807271_53_7114133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac37575edd0b2a2d49b3ac6590910d5e11549a93dbd7b7f354995124b1f16a37 +size 88248 diff --git a/datasets/仪表盘/val/images/订单1807285_53_7114198.jpg b/datasets/仪表盘/val/images/订单1807285_53_7114198.jpg new file mode 100644 index 0000000..d897b02 --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807285_53_7114198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dcd3d5715dbe902b84aa49e000a2a501a44ededa37b74a9b5246bc8a8d1da8 +size 235306 diff --git a/datasets/仪表盘/val/images/订单1807286_53_7114182.jpg b/datasets/仪表盘/val/images/订单1807286_53_7114182.jpg new file mode 100644 index 0000000..a9cdb4f --- /dev/null +++ b/datasets/仪表盘/val/images/订单1807286_53_7114182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50e670a73d37b8f184566210f97101a62dd0ec4f274f737fb6f2141c485dc3c +size 93644 diff --git a/datasets/仪表盘/val/labels.cache b/datasets/仪表盘/val/labels.cache new file mode 100644 index 0000000..9c77296 Binary files /dev/null and b/datasets/仪表盘/val/labels.cache differ diff --git a/datasets/仪表盘/val/labels/classes.txt b/datasets/仪表盘/val/labels/classes.txt new file mode 100644 index 0000000..c557bf6 --- /dev/null +++ b/datasets/仪表盘/val/labels/classes.txt @@ -0,0 +1,2 @@ +dashboard +nodashboard diff --git a/datasets/仪表盘/val/labels/仪表盘1805534_53_7098083.txt b/datasets/仪表盘/val/labels/仪表盘1805534_53_7098083.txt new file mode 100644 index 0000000..1c29820 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805534_53_7098083.txt @@ -0,0 +1 @@ +0 0.583750 0.449000 0.691500 0.506000 diff --git a/datasets/仪表盘/val/labels/仪表盘1805535_53_7098015.txt b/datasets/仪表盘/val/labels/仪表盘1805535_53_7098015.txt new file mode 100644 index 0000000..488bf59 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805535_53_7098015.txt @@ -0,0 +1 @@ +0 0.656006 0.398763 0.489746 0.448568 diff --git a/datasets/仪表盘/val/labels/仪表盘1805551_53_7098231.txt b/datasets/仪表盘/val/labels/仪表盘1805551_53_7098231.txt new file mode 100644 index 0000000..6d3841e --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805551_53_7098231.txt @@ -0,0 +1 @@ +0 0.523193 0.465820 0.953613 0.560547 diff --git a/datasets/仪表盘/val/labels/仪表盘1805555_53_7098385.txt b/datasets/仪表盘/val/labels/仪表盘1805555_53_7098385.txt new file mode 100644 index 0000000..7205b71 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805555_53_7098385.txt @@ -0,0 +1 @@ +0 0.505048 0.539744 0.989904 0.574359 diff --git a/datasets/仪表盘/val/labels/仪表盘1805586_53_7098658.txt b/datasets/仪表盘/val/labels/仪表盘1805586_53_7098658.txt new file mode 100644 index 0000000..38412bf --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805586_53_7098658.txt @@ -0,0 +1 @@ +0 0.491830 0.439338 0.879085 0.337010 diff --git a/datasets/仪表盘/val/labels/仪表盘1805588_53_7098649.txt b/datasets/仪表盘/val/labels/仪表盘1805588_53_7098649.txt new file mode 100644 index 0000000..f9da983 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805588_53_7098649.txt @@ -0,0 +1 @@ +0 0.500488 0.376628 0.999023 0.590495 diff --git a/datasets/仪表盘/val/labels/仪表盘1805590_53_7098527.txt b/datasets/仪表盘/val/labels/仪表盘1805590_53_7098527.txt new file mode 100644 index 0000000..54a9c18 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805590_53_7098527.txt @@ -0,0 +1 @@ +0 0.402344 0.414714 0.746094 0.458333 diff --git a/datasets/仪表盘/val/labels/仪表盘1805595_53_7098588.txt b/datasets/仪表盘/val/labels/仪表盘1805595_53_7098588.txt new file mode 100644 index 0000000..90fc21f --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805595_53_7098588.txt @@ -0,0 +1 @@ +0 0.506836 0.450846 0.910156 0.590495 diff --git a/datasets/仪表盘/val/labels/仪表盘1805598_53_7099008.txt b/datasets/仪表盘/val/labels/仪表盘1805598_53_7099008.txt new file mode 100644 index 0000000..5dc199a --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805598_53_7099008.txt @@ -0,0 +1 @@ +0 0.394667 0.255000 0.680000 0.302000 diff --git a/datasets/仪表盘/val/labels/仪表盘1805601_53_7098679.txt b/datasets/仪表盘/val/labels/仪表盘1805601_53_7098679.txt new file mode 100644 index 0000000..ae85f2f --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805601_53_7098679.txt @@ -0,0 +1 @@ +0 0.385010 0.471680 0.735840 0.492839 diff --git a/datasets/仪表盘/val/labels/仪表盘1805603_53_7098614.txt b/datasets/仪表盘/val/labels/仪表盘1805603_53_7098614.txt new file mode 100644 index 0000000..be83309 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805603_53_7098614.txt @@ -0,0 +1 @@ +0 0.490500 0.476667 0.978000 0.520000 diff --git a/datasets/仪表盘/val/labels/仪表盘1805604_53_7098683.txt b/datasets/仪表盘/val/labels/仪表盘1805604_53_7098683.txt new file mode 100644 index 0000000..535c651 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805604_53_7098683.txt @@ -0,0 +1 @@ +0 0.480713 0.482422 0.729004 0.615885 diff --git a/datasets/仪表盘/val/labels/仪表盘1805606_53_7098590.txt b/datasets/仪表盘/val/labels/仪表盘1805606_53_7098590.txt new file mode 100644 index 0000000..05cca2c --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805606_53_7098590.txt @@ -0,0 +1 @@ +0 0.602614 0.506373 0.794771 0.987255 diff --git a/datasets/仪表盘/val/labels/仪表盘1805611_53_7098731.txt b/datasets/仪表盘/val/labels/仪表盘1805611_53_7098731.txt new file mode 100644 index 0000000..fe8e254 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805611_53_7098731.txt @@ -0,0 +1 @@ +0 0.430990 0.433594 0.859375 0.455078 diff --git a/datasets/仪表盘/val/labels/仪表盘1805613_53_7098990.txt b/datasets/仪表盘/val/labels/仪表盘1805613_53_7098990.txt new file mode 100644 index 0000000..27b4cee --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805613_53_7098990.txt @@ -0,0 +1 @@ +0 0.511230 0.386841 0.977539 0.543213 diff --git a/datasets/仪表盘/val/labels/仪表盘1805625_53_7098895.txt b/datasets/仪表盘/val/labels/仪表盘1805625_53_7098895.txt new file mode 100644 index 0000000..aa0c774 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805625_53_7098895.txt @@ -0,0 +1 @@ +0 0.514000 0.553000 0.972000 0.446000 diff --git a/datasets/仪表盘/val/labels/仪表盘1805642_53_7099041.txt b/datasets/仪表盘/val/labels/仪表盘1805642_53_7099041.txt new file mode 100644 index 0000000..4f5cc91 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805642_53_7099041.txt @@ -0,0 +1 @@ +0 0.298387 0.296371 0.559140 0.504032 diff --git a/datasets/仪表盘/val/labels/仪表盘1805648_53_7099268.txt b/datasets/仪表盘/val/labels/仪表盘1805648_53_7099268.txt new file mode 100644 index 0000000..ad0c3c8 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805648_53_7099268.txt @@ -0,0 +1 @@ +0 0.466146 0.532407 0.852431 0.682099 diff --git a/datasets/仪表盘/val/labels/仪表盘1805653_53_7099135.txt b/datasets/仪表盘/val/labels/仪表盘1805653_53_7099135.txt new file mode 100644 index 0000000..201fe32 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805653_53_7099135.txt @@ -0,0 +1 @@ +0 0.558388 0.273026 0.777961 0.462719 diff --git a/datasets/仪表盘/val/labels/仪表盘1805654_53_7099175.txt b/datasets/仪表盘/val/labels/仪表盘1805654_53_7099175.txt new file mode 100644 index 0000000..bb2edd1 --- /dev/null +++ b/datasets/仪表盘/val/labels/仪表盘1805654_53_7099175.txt @@ -0,0 +1 @@ +0 0.538942 0.453205 0.865385 0.482051 diff --git a/datasets/拖车/data.yaml b/datasets/拖车/data.yaml new file mode 100644 index 0000000..3d98f1f --- /dev/null +++ b/datasets/拖车/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\TomatoData\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\TomatoData\val +nc: 2 +names: ['Riped', 'UnRiped'] \ No newline at end of file diff --git a/datasets/拖车/train/classes.txt b/datasets/拖车/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/拖车/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/拖车/train/labels.cache b/datasets/拖车/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/拖车/train/labels.cache differ diff --git a/datasets/拖车/val/labels.cache b/datasets/拖车/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/拖车/val/labels.cache differ diff --git a/datasets/拖车上有车/data.yaml b/datasets/拖车上有车/data.yaml new file mode 100644 index 0000000..170b49b --- /dev/null +++ b/datasets/拖车上有车/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\拖车上有车\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\拖车上有车\val +nc: 2 +names: ['拖车上有车', '拖车上无车'] \ No newline at end of file diff --git a/datasets/拖车上有车/train/classes.txt b/datasets/拖车上有车/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/拖车上有车/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/拖车上有车/train/labels.cache b/datasets/拖车上有车/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/拖车上有车/train/labels.cache differ diff --git a/datasets/拖车上有车/val/labels.cache b/datasets/拖车上有车/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/拖车上有车/val/labels.cache differ diff --git a/datasets/搭电测试/.DS_Store b/datasets/搭电测试/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/搭电测试/.DS_Store differ diff --git a/datasets/搭电测试/data.yaml b/datasets/搭电测试/data.yaml new file mode 100644 index 0000000..e8b523f --- /dev/null +++ b/datasets/搭电测试/data.yaml @@ -0,0 +1,4 @@ +train: train/images +val: val/images +nc: 4 +names: ['\u642D\u7535\u8BBE\u5907', '\u5176\u5B83\u9A6C\u7532','\u7535\u538B\u8BBE\u5907','\u4EEA\u8868\u76D8'] diff --git a/datasets/搭电测试/train/.DS_Store b/datasets/搭电测试/train/.DS_Store new file mode 100644 index 0000000..1512c30 Binary files /dev/null and b/datasets/搭电测试/train/.DS_Store differ diff --git a/datasets/搭电测试/train/classes.txt b/datasets/搭电测试/train/classes.txt new file mode 100644 index 0000000..182aa26 --- /dev/null +++ b/datasets/搭电测试/train/classes.txt @@ -0,0 +1,4 @@ +\u642D\u7535\u8BBE\u5907 +\u5176\u5B83\u9A6C\u7532 +\u7535\u538B\u8BBE\u5907 +\u4EEA\u8868\u76D8 \ No newline at end of file diff --git a/datasets/搭电测试/train/images/璁㈠崟1765226_54_6721313.jpg b/datasets/搭电测试/train/images/璁㈠崟1765226_54_6721313.jpg new file mode 100644 index 0000000..7bab3ff --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765226_54_6721313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9183314266b10e5161660f21b68a4b00eb5a4c1d5f8a87b83f5309b652c6ed +size 353239 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765229_54_6721246.jpg b/datasets/搭电测试/train/images/璁㈠崟1765229_54_6721246.jpg new file mode 100644 index 0000000..b49dd11 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765229_54_6721246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d95ca1f6081d99af32282a25b282e230e4f36c9fd47ac22e07997eee24a627 +size 488753 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765234_54_6721447.jpg b/datasets/搭电测试/train/images/璁㈠崟1765234_54_6721447.jpg new file mode 100644 index 0000000..572e0a3 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765234_54_6721447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a666f66ee1b072cfa807155889b126df08e5ae53c4bfad758be7586e024bc696 +size 498769 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765235_54_6721550.jpg b/datasets/搭电测试/train/images/璁㈠崟1765235_54_6721550.jpg new file mode 100644 index 0000000..330616e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765235_54_6721550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d576d4b25c69a7d9e7b4ef78738139fc57921e271ea8112490f31112f909de8 +size 147901 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765236_54_6721487.jpg b/datasets/搭电测试/train/images/璁㈠崟1765236_54_6721487.jpg new file mode 100644 index 0000000..c70b26f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765236_54_6721487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef5e1ad43b470eb29ea66e889c6d843981dc577e788fa90ed1010438133b31b +size 113227 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765240_54_6721507.jpg b/datasets/搭电测试/train/images/璁㈠崟1765240_54_6721507.jpg new file mode 100644 index 0000000..399fb0b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765240_54_6721507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4272f86858f8a081386557478b1a55489987798312a5cb2546e9d590fbc9e2f4 +size 172965 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765242_54_6721703.jpg b/datasets/搭电测试/train/images/璁㈠崟1765242_54_6721703.jpg new file mode 100644 index 0000000..e8d8fc5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765242_54_6721703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb4b98a42c1f23400c31fc998f991c9b13fa19671f022c85eee63c6db5475fb +size 824597 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765244_54_6721493.jpg b/datasets/搭电测试/train/images/璁㈠崟1765244_54_6721493.jpg new file mode 100644 index 0000000..fedcd75 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765244_54_6721493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1e1dc6da9220b7af5f936f5434c7236b7d978c21d0f58646ca2c19873b64b2 +size 142634 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765246_54_6721446.jpg b/datasets/搭电测试/train/images/璁㈠崟1765246_54_6721446.jpg new file mode 100644 index 0000000..44e5ca9 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765246_54_6721446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a283452d73be6576246dd96bb2c6dfd48c855d7421d1a5849263613454ca0be +size 1909999 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765251_54_6721546.jpg b/datasets/搭电测试/train/images/璁㈠崟1765251_54_6721546.jpg new file mode 100644 index 0000000..841bdfc --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765251_54_6721546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56785bf1e6179d547b1d36bfcd16658d015d7f2d97f4a1b437b6ee63c4b75835 +size 124298 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765252_54_6721576.jpg b/datasets/搭电测试/train/images/璁㈠崟1765252_54_6721576.jpg new file mode 100644 index 0000000..2e9534d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765252_54_6721576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688d793f4dc9d7c836cb6579b86ebb48e303ceea2863b042b915f8d3eac15477 +size 104513 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765253_54_6721624.jpg b/datasets/搭电测试/train/images/璁㈠崟1765253_54_6721624.jpg new file mode 100644 index 0000000..6166577 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765253_54_6721624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc64bc3103c51506cb6b4581e24c1a576981cd9f0a67e30ddc14366c0c02bd6 +size 114902 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765255_54_6721652.jpg b/datasets/搭电测试/train/images/璁㈠崟1765255_54_6721652.jpg new file mode 100644 index 0000000..9880df2 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765255_54_6721652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be392e9c5ba2e8c1690530a0e6691d5d4f61ae266ec0022c22bf8a192583b06e +size 585950 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765258_54_6721679.jpg b/datasets/搭电测试/train/images/璁㈠崟1765258_54_6721679.jpg new file mode 100644 index 0000000..1530366 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765258_54_6721679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8344f90ed0e4d70ec67a94658a50d7b5708e7e90d1f28527d07fdac6c680224 +size 136195 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765260_54_6721672.jpg b/datasets/搭电测试/train/images/璁㈠崟1765260_54_6721672.jpg new file mode 100644 index 0000000..aad86f9 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765260_54_6721672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd4a72b693aed0282a581feb36e14d9c811af0f927d25809b90efba372bb4364 +size 179057 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765262_54_6721834.jpg b/datasets/搭电测试/train/images/璁㈠崟1765262_54_6721834.jpg new file mode 100644 index 0000000..d4001ff --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765262_54_6721834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d5d04351e294e19a77bc4fe1ed8e4e4d7dfeb13e362da764ad2048e6f318f1 +size 360635 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765272_54_6721791.jpg b/datasets/搭电测试/train/images/璁㈠崟1765272_54_6721791.jpg new file mode 100644 index 0000000..240b8ac --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765272_54_6721791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b8da646d97ffad2d7f03fe460b4987696ed9a575267bc89d84ccfd8d435520 +size 168267 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765273_54_6721840.jpg b/datasets/搭电测试/train/images/璁㈠崟1765273_54_6721840.jpg new file mode 100644 index 0000000..2e28748 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765273_54_6721840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17078705bbfdefbb72e528f85af2594b7a09a60ec0767a02d60ebff82c8bf34d +size 90799 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765274_54_6722185.jpg b/datasets/搭电测试/train/images/璁㈠崟1765274_54_6722185.jpg new file mode 100644 index 0000000..c083521 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765274_54_6722185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96adf1475adbfbf693f8188ec2c14e195b4ac0ec21f98076b74d7482e1fcef36 +size 169233 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765277_54_6721819.jpg b/datasets/搭电测试/train/images/璁㈠崟1765277_54_6721819.jpg new file mode 100644 index 0000000..7f7aef7 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765277_54_6721819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202aced8a8076bd6163b8a861f45ba12bc1b79a1a91e1b9f93db6623fd523f72 +size 185970 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765284_54_6721907.jpg b/datasets/搭电测试/train/images/璁㈠崟1765284_54_6721907.jpg new file mode 100644 index 0000000..622f1d5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765284_54_6721907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df797c7df0a926c12e1c6680a79fb314437d4f78abb7a2327af7d2a12b42cbf8 +size 151363 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765286_54_6721953.jpg b/datasets/搭电测试/train/images/璁㈠崟1765286_54_6721953.jpg new file mode 100644 index 0000000..ef5b8bb --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765286_54_6721953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65b2e0020e06a45ef87940164cdc697ced955b929aee440e74244635ef9878e +size 166657 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765287_54_6722042.jpg b/datasets/搭电测试/train/images/璁㈠崟1765287_54_6722042.jpg new file mode 100644 index 0000000..30ca08b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765287_54_6722042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702fa9d8667157782bdf43b28686e830d0760ca8ecb49f0b6a092c6f57cc6988 +size 211761 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765288_54_6722013.jpg b/datasets/搭电测试/train/images/璁㈠崟1765288_54_6722013.jpg new file mode 100644 index 0000000..b9f1d3b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765288_54_6722013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:874fb93f129faba7d77c1c62866dc9cb42b4d44debd2166627376e6807234f39 +size 117036 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765291_54_6721901.jpg b/datasets/搭电测试/train/images/璁㈠崟1765291_54_6721901.jpg new file mode 100644 index 0000000..264ef0f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765291_54_6721901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a0cbb28bd5957085ff310d3bd6bd6f3362825008aaccd3e49b5ae2f537b249 +size 129923 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765293_54_6721957.jpg b/datasets/搭电测试/train/images/璁㈠崟1765293_54_6721957.jpg new file mode 100644 index 0000000..5c78689 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765293_54_6721957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be85edbb611fb88c045366fef7b8cf16287e093e9dd6cbafa92b932df74514f +size 153115 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765296_54_6721978.jpg b/datasets/搭电测试/train/images/璁㈠崟1765296_54_6721978.jpg new file mode 100644 index 0000000..f38b833 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765296_54_6721978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92caae6b20978e52272191735215cdf1fced9628b3d011e5825dfd3264cfd3d5 +size 412561 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765298_54_6722004.jpg b/datasets/搭电测试/train/images/璁㈠崟1765298_54_6722004.jpg new file mode 100644 index 0000000..efa059d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765298_54_6722004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0652ae50ad49dc59957af6621368e13e92958e52ae3bfc5dcee5399ac62d8733 +size 1769800 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765301_54_6722029.jpg b/datasets/搭电测试/train/images/璁㈠崟1765301_54_6722029.jpg new file mode 100644 index 0000000..de186c5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765301_54_6722029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f8d4e34e31731e9e9d7c37f98f3a623a2273461fd7b568ece32446292a29c1 +size 144528 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765303_54_6722048.jpg b/datasets/搭电测试/train/images/璁㈠崟1765303_54_6722048.jpg new file mode 100644 index 0000000..07006e6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765303_54_6722048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd20cd035eddd9cc955f93259b8e662095e0192d2b8625e708a834d0c3d36b70 +size 313908 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765307_54_6722153.jpg b/datasets/搭电测试/train/images/璁㈠崟1765307_54_6722153.jpg new file mode 100644 index 0000000..b9095a3 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765307_54_6722153.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a39128141ad8b9267c9aa7f349f810dc229329e15eb6fb737ef8ee59d0f076d +size 100786 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765308_54_6722156.jpg b/datasets/搭电测试/train/images/璁㈠崟1765308_54_6722156.jpg new file mode 100644 index 0000000..9cbd92e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765308_54_6722156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef7ef8bae4a6d454c937e592fee9e8a72e4118d6da9207f1ff989cba7eda7a +size 177476 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765318_54_6722277.jpg b/datasets/搭电测试/train/images/璁㈠崟1765318_54_6722277.jpg new file mode 100644 index 0000000..001a528 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765318_54_6722277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaebc1372e3b94631562fd24c4b0a8feb13eef2d7b8089a6023e39569e1e2436 +size 256300 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765320_54_6722264.jpg b/datasets/搭电测试/train/images/璁㈠崟1765320_54_6722264.jpg new file mode 100644 index 0000000..ec1a910 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765320_54_6722264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63931b8084ce8cc7c63545f777f69b4bec2de0b0a9bca08e5da83cecaef91857 +size 142294 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765321_54_6722259.jpg b/datasets/搭电测试/train/images/璁㈠崟1765321_54_6722259.jpg new file mode 100644 index 0000000..76dcb1c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765321_54_6722259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75292cfe04042f5cf6ec31caf3a56743ca80021d62bde7af2c5072ef7c94790c +size 142442 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765322_54_6722340.jpg b/datasets/搭电测试/train/images/璁㈠崟1765322_54_6722340.jpg new file mode 100644 index 0000000..7a94d8e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765322_54_6722340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102671517d8ec720f96c8902126eebeb2e05149168ce10a488bf1bc2d86c9427 +size 123385 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765326_54_6723184.jpg b/datasets/搭电测试/train/images/璁㈠崟1765326_54_6723184.jpg new file mode 100644 index 0000000..1af2176 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765326_54_6723184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02acec0a3f652345ec2756db71b96122a1c545139109e871f6761c792c99c305 +size 116001 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765330_54_6722418.jpg b/datasets/搭电测试/train/images/璁㈠崟1765330_54_6722418.jpg new file mode 100644 index 0000000..9c17904 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765330_54_6722418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0511c09d3e177eab5239e0341d86ce4db1414505edc9f5dc2a68f89aa4285624 +size 114447 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765331_54_6722390.jpg b/datasets/搭电测试/train/images/璁㈠崟1765331_54_6722390.jpg new file mode 100644 index 0000000..c8a74e8 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765331_54_6722390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd894cf20a9e11c9836aab606cdce4e29364341b4775476b4a9a3fb4cd529546 +size 133057 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765332_54_6722408.jpg b/datasets/搭电测试/train/images/璁㈠崟1765332_54_6722408.jpg new file mode 100644 index 0000000..bc6e501 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765332_54_6722408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f04f96b392e415bab39f7d6712d3f1f12380b5d5837db4b9500ee17c2ff69c +size 307108 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765334_54_6722383.jpg b/datasets/搭电测试/train/images/璁㈠崟1765334_54_6722383.jpg new file mode 100644 index 0000000..7cb5a7f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765334_54_6722383.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8504de37ca0be8f560673f1235c28f7b4acf879807aa41ae3c0eb46858de2295 +size 144016 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765336_54_6722447.jpg b/datasets/搭电测试/train/images/璁㈠崟1765336_54_6722447.jpg new file mode 100644 index 0000000..88f16ad --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765336_54_6722447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb29764b76fc09296e8ed0882119b1e65ee693deb80d7dc5408d187e98b3fd18 +size 166837 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765341_54_6722467.jpg b/datasets/搭电测试/train/images/璁㈠崟1765341_54_6722467.jpg new file mode 100644 index 0000000..338632e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765341_54_6722467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bbedd4a0a70ff572aabf626e3cc3757acd542d454328df3bccbf07d35cc880a +size 1998490 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765342_54_6722493.jpg b/datasets/搭电测试/train/images/璁㈠崟1765342_54_6722493.jpg new file mode 100644 index 0000000..65c2094 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765342_54_6722493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001e578b1ae31f8f9a622be36c9e23fa790a3d1e28f9b194ada0f4803ef21170 +size 1791642 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765343_54_6722580.jpg b/datasets/搭电测试/train/images/璁㈠崟1765343_54_6722580.jpg new file mode 100644 index 0000000..b838683 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765343_54_6722580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee436227d58e0a983bdebf4a7d2cf5b2ec145008a5953344f4912dc113aa5f32 +size 240680 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765344_54_6722561.jpg b/datasets/搭电测试/train/images/璁㈠崟1765344_54_6722561.jpg new file mode 100644 index 0000000..aeae558 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765344_54_6722561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111a87893e85007ca20f15d41e1023006930d0fef0564a436f020158ad8c5cf5 +size 125717 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765345_54_6722566.jpg b/datasets/搭电测试/train/images/璁㈠崟1765345_54_6722566.jpg new file mode 100644 index 0000000..cb4e9ac --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765345_54_6722566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ec00b597c7913ff2285a5343a8d46798ba02d59554153f53302d5e13cbfc90 +size 145885 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765354_54_6722675.jpg b/datasets/搭电测试/train/images/璁㈠崟1765354_54_6722675.jpg new file mode 100644 index 0000000..ffaf833 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765354_54_6722675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0c14f50ad1d360c1a8ffa244ed4a48556a64222dd1466c1223304a9012b4da +size 163838 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765355_54_6722642.jpg b/datasets/搭电测试/train/images/璁㈠崟1765355_54_6722642.jpg new file mode 100644 index 0000000..eeb64bc --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765355_54_6722642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2036ea356ca87d4d25d2e9397c16b120689ff6e99de7c7e764188b0eea30f91 +size 121527 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765357_54_6722634.jpg b/datasets/搭电测试/train/images/璁㈠崟1765357_54_6722634.jpg new file mode 100644 index 0000000..635b3f9 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765357_54_6722634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2621050502c4422d921179dc2b09141ebf3b05e19edd220ac2681d1377d4b43c +size 148184 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765360_54_6722593.jpg b/datasets/搭电测试/train/images/璁㈠崟1765360_54_6722593.jpg new file mode 100644 index 0000000..dedbc73 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765360_54_6722593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f95743ac64a64ca58bab455a2a754361102408623ee1ed243b6dee7ea92a25 +size 257550 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765362_54_6722651.jpg b/datasets/搭电测试/train/images/璁㈠崟1765362_54_6722651.jpg new file mode 100644 index 0000000..60561f5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765362_54_6722651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800985f3f874785b99f6599c553bdb2b8d9c5e34aad610d57607010feb3193b2 +size 106716 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765367_54_6722725.jpg b/datasets/搭电测试/train/images/璁㈠崟1765367_54_6722725.jpg new file mode 100644 index 0000000..b2f9de4 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765367_54_6722725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452608b6209a74b8caa029585a6462f7a27a4c3b201baa397907554feccf0ddd +size 143875 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765368_54_6722735.jpg b/datasets/搭电测试/train/images/璁㈠崟1765368_54_6722735.jpg new file mode 100644 index 0000000..1dc398b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765368_54_6722735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b966491bca5fd90fe514d1858a6f974007952cf4391f9e2384fbb032bd7de9d +size 147740 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765373_54_6722826.jpg b/datasets/搭电测试/train/images/璁㈠崟1765373_54_6722826.jpg new file mode 100644 index 0000000..132ba3a --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765373_54_6722826.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a03ae3eb1f1dbf05f29670eaefab8c2efaf1c782b2c82345834d1408033de81 +size 126669 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765377_54_6722764.jpg b/datasets/搭电测试/train/images/璁㈠崟1765377_54_6722764.jpg new file mode 100644 index 0000000..9cd40dd --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765377_54_6722764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7daef803446dc6c540e22c1a9cd2d9d5af92787b2c01726730959c0ad1e4493 +size 140136 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765378_54_6722780.jpg b/datasets/搭电测试/train/images/璁㈠崟1765378_54_6722780.jpg new file mode 100644 index 0000000..93dc733 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765378_54_6722780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38798bb3c5a3df8c0c9af7031ea9f0bf0f5282b485d371f023690b701fc538b +size 2261337 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765382_54_6722992.jpg b/datasets/搭电测试/train/images/璁㈠崟1765382_54_6722992.jpg new file mode 100644 index 0000000..de378f6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765382_54_6722992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d135554b85f0a99261bd2a6508b11f2c457f4b45d7b07c4da17e53e83702402 +size 491303 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765385_54_6722927.jpg b/datasets/搭电测试/train/images/璁㈠崟1765385_54_6722927.jpg new file mode 100644 index 0000000..4689b0a --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765385_54_6722927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d79c6d7999ee7dc23a6ac3aac867857cabf34cd949759de1c48bd24c7457343 +size 943983 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765389_54_6722912.jpg b/datasets/搭电测试/train/images/璁㈠崟1765389_54_6722912.jpg new file mode 100644 index 0000000..c939b15 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765389_54_6722912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9dace2cff6f271452f9676360462d2814fe01c78881576c353e21c56d2702af +size 1941479 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765390_54_6722883.jpg b/datasets/搭电测试/train/images/璁㈠崟1765390_54_6722883.jpg new file mode 100644 index 0000000..656e261 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765390_54_6722883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cabe92578efc0283cdf3000940b0e23819677347e02b81135059b186f7c57b8 +size 131579 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765396_54_6722932.jpg b/datasets/搭电测试/train/images/璁㈠崟1765396_54_6722932.jpg new file mode 100644 index 0000000..418bd2d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765396_54_6722932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58be2caa5e23f3f27267b7e9c151e6d7f7a6760c73747d31b6b266f42aa8670 +size 136637 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765400_54_6722982.jpg b/datasets/搭电测试/train/images/璁㈠崟1765400_54_6722982.jpg new file mode 100644 index 0000000..a75a0a0 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765400_54_6722982.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c1badc183a1fd6759e1f7e64b03210a32ccad1f51fd9d5b8878957cdce2bff +size 122211 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765401_54_6723041.jpg b/datasets/搭电测试/train/images/璁㈠崟1765401_54_6723041.jpg new file mode 100644 index 0000000..b33fb4c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765401_54_6723041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0f31126e4735b52f687c9a633580a25b970f44eb91ffce3b0b297f52a6bcee +size 152073 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765402_54_6722967.jpg b/datasets/搭电测试/train/images/璁㈠崟1765402_54_6722967.jpg new file mode 100644 index 0000000..f3f1ddb --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765402_54_6722967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92f66b7eb02cfe18691f00de53da87756a0c2ec03ca99728c95373111d4bd13 +size 134168 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765403_54_6723005.jpg b/datasets/搭电测试/train/images/璁㈠崟1765403_54_6723005.jpg new file mode 100644 index 0000000..b59c14c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765403_54_6723005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d3fe2292c9e265668b6ccfedb7b0182241e84e69f9a758681a17bfc757c145 +size 108868 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765407_54_6723159.jpg b/datasets/搭电测试/train/images/璁㈠崟1765407_54_6723159.jpg new file mode 100644 index 0000000..98924af --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765407_54_6723159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff863ebc8177450775519af1cacacc2cf4e3e34353c8e5cf76a816deb2feb534 +size 186225 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765408_54_6723073.jpg b/datasets/搭电测试/train/images/璁㈠崟1765408_54_6723073.jpg new file mode 100644 index 0000000..8c4cae5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765408_54_6723073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b028fdb52c67090d337e45e5ba3ccdaafd0004cf1dbac85257692654f4857267 +size 320351 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765411_54_6723130.jpg b/datasets/搭电测试/train/images/璁㈠崟1765411_54_6723130.jpg new file mode 100644 index 0000000..6abf2ce --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765411_54_6723130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58012756eee12061ee0f194d63f0ee05c710ab191885d20984d732cfdfb0ac7e +size 89028 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765419_54_6723198.jpg b/datasets/搭电测试/train/images/璁㈠崟1765419_54_6723198.jpg new file mode 100644 index 0000000..ca9317c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765419_54_6723198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c200af056bc0399b3cf54b56f28f2b3c2601cba2dd9b6c0e339e62ce3892449 +size 134767 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765423_54_6723156.jpg b/datasets/搭电测试/train/images/璁㈠崟1765423_54_6723156.jpg new file mode 100644 index 0000000..2587ced --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765423_54_6723156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b3c84923af00a3db87841d14dc3d7504730716800ba5294b0226052fd98f99 +size 119036 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765424_54_6723208.jpg b/datasets/搭电测试/train/images/璁㈠崟1765424_54_6723208.jpg new file mode 100644 index 0000000..356a7bb --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765424_54_6723208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19580bf9a83b28ab777ec526cd43c367cee57f7691005685cdca1440618fc9a1 +size 496250 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765425_54_6723252.jpg b/datasets/搭电测试/train/images/璁㈠崟1765425_54_6723252.jpg new file mode 100644 index 0000000..557fa50 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765425_54_6723252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479dd28dbc0533d148084bea8375c38c697eed18fa0408d38ef1ff16e1ac7398 +size 503186 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765427_54_6723236.jpg b/datasets/搭电测试/train/images/璁㈠崟1765427_54_6723236.jpg new file mode 100644 index 0000000..a13997f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765427_54_6723236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c388d717098819f984f0cf6de3be0f874c8e9e2a3e7d56ad409854d7a990db3f +size 134102 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765430_54_6723319.jpg b/datasets/搭电测试/train/images/璁㈠崟1765430_54_6723319.jpg new file mode 100644 index 0000000..b710e22 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765430_54_6723319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88b0a086d48f900bcaf0cc1af3fc835b56c15c6273a60444dac8388f838d179 +size 518727 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765436_54_6723320.jpg b/datasets/搭电测试/train/images/璁㈠崟1765436_54_6723320.jpg new file mode 100644 index 0000000..28a7c13 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765436_54_6723320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f022e66acc4f694c0790dab2c5abdbe7d27ae7b3a6bd8aef6b593f6e9acda155 +size 113363 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765438_54_6723400.jpg b/datasets/搭电测试/train/images/璁㈠崟1765438_54_6723400.jpg new file mode 100644 index 0000000..f74cdbe --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765438_54_6723400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a67d86982891f679916e03ec62b04c5351665b7124f977a49616d60ee80ebe +size 161866 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765440_54_6723390.jpg b/datasets/搭电测试/train/images/璁㈠崟1765440_54_6723390.jpg new file mode 100644 index 0000000..d6722c2 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765440_54_6723390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d3dc1f29862fbeb2b8d032b1ab63158496dc8dbedba790f97e771a186771386 +size 119649 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765441_54_6723415.jpg b/datasets/搭电测试/train/images/璁㈠崟1765441_54_6723415.jpg new file mode 100644 index 0000000..1c4f48e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765441_54_6723415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0bcedcb28f5eb65dd01bb5e48286e36923f2f48fd458631cdc945ed0f75054d +size 97324 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765442_54_6723416.jpg b/datasets/搭电测试/train/images/璁㈠崟1765442_54_6723416.jpg new file mode 100644 index 0000000..2c3d7f8 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765442_54_6723416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9319813b618e5d72127832dc336d98e21ced28bb200ddbd438c2425d1c210b7 +size 153268 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765447_54_6723486.jpg b/datasets/搭电测试/train/images/璁㈠崟1765447_54_6723486.jpg new file mode 100644 index 0000000..ac03808 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765447_54_6723486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f910f6b64bcbb3036447dbef7b18bcc3ea624dd8638e4b622681d26283b87a55 +size 137931 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765450_54_6723461.jpg b/datasets/搭电测试/train/images/璁㈠崟1765450_54_6723461.jpg new file mode 100644 index 0000000..624949d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765450_54_6723461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16262338283c46471605d4e80e089e187c7ad3d2c89862e424e7c0fbc53b1e68 +size 336847 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765451_54_6723455.jpg b/datasets/搭电测试/train/images/璁㈠崟1765451_54_6723455.jpg new file mode 100644 index 0000000..ebe03c5 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765451_54_6723455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9c4323fc90e8caf8d5d28b1f2e8d44a2f09f93f0f43385eded9c919dda9877 +size 2488043 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765452_54_6723505.jpg b/datasets/搭电测试/train/images/璁㈠崟1765452_54_6723505.jpg new file mode 100644 index 0000000..8b87427 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765452_54_6723505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ad104e231502886091195e9dc27f27d9b67768a47c85b962366ca5a27ada8d +size 163758 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765453_54_6723527.jpg b/datasets/搭电测试/train/images/璁㈠崟1765453_54_6723527.jpg new file mode 100644 index 0000000..6602ecf --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765453_54_6723527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0c35eb840a9ea3fe0d171b5834605db326351e83e214987351981a2a66d683 +size 143155 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765457_54_6723668.jpg b/datasets/搭电测试/train/images/璁㈠崟1765457_54_6723668.jpg new file mode 100644 index 0000000..bb89ecc --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765457_54_6723668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f92a1c308a6cc01c924e10945d85197d81368230af6381eac1f386fd4f87575 +size 117360 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765458_54_6723588.jpg b/datasets/搭电测试/train/images/璁㈠崟1765458_54_6723588.jpg new file mode 100644 index 0000000..227cb5c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765458_54_6723588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5108489b4486654c49c635ecfea6f515b3c6656e98055377cbbdd46e75251946 +size 158462 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765459_54_6723594.jpg b/datasets/搭电测试/train/images/璁㈠崟1765459_54_6723594.jpg new file mode 100644 index 0000000..8efe621 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765459_54_6723594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4caf0dca9dad8e1df165cdc8c6806f60494f5a5e28056fa3ade1dd9c3547dab2 +size 168341 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765460_54_6723587.jpg b/datasets/搭电测试/train/images/璁㈠崟1765460_54_6723587.jpg new file mode 100644 index 0000000..1d4bda6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765460_54_6723587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7068e7909815da9858d80236e6d2c7ceb7555c3e51389e8694c03035d862678f +size 129961 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765461_54_6723620.jpg b/datasets/搭电测试/train/images/璁㈠崟1765461_54_6723620.jpg new file mode 100644 index 0000000..8cb29c3 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765461_54_6723620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac4ad99edee8e228f75c276985a3da92184307f0f731e4ea5865ec93d959feb +size 953501 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765465_54_6723842.jpg b/datasets/搭电测试/train/images/璁㈠崟1765465_54_6723842.jpg new file mode 100644 index 0000000..e7b6475 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765465_54_6723842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51d009cd07b3adaff767690b3aa4c34e489c8b02236d8fd3e5b11214bbf6556 +size 127802 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765466_54_6723632.jpg b/datasets/搭电测试/train/images/璁㈠崟1765466_54_6723632.jpg new file mode 100644 index 0000000..7abfb14 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765466_54_6723632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fb6c56371e556ffef5a40eef30c01ccb95e462288a78ef50e47dfd33422a28 +size 109072 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765467_54_6723703.jpg b/datasets/搭电测试/train/images/璁㈠崟1765467_54_6723703.jpg new file mode 100644 index 0000000..1858644 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765467_54_6723703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b564cdda3b4a603f6aed4f8070073cb7011e512f461450454b03d42caeabea +size 93897 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765469_54_6723699.jpg b/datasets/搭电测试/train/images/璁㈠崟1765469_54_6723699.jpg new file mode 100644 index 0000000..52d619b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765469_54_6723699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:648d91105f45871efb94b20da5bb29f4552d4aa868b349850728d1b5deed5c2e +size 104542 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765470_54_6723834.jpg b/datasets/搭电测试/train/images/璁㈠崟1765470_54_6723834.jpg new file mode 100644 index 0000000..7933116 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765470_54_6723834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb61e1e2589bdcb039f8c1d10113b7c37b795f385a1afd6651fd07371f0fea9 +size 114027 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765471_54_6723653.jpg b/datasets/搭电测试/train/images/璁㈠崟1765471_54_6723653.jpg new file mode 100644 index 0000000..edeeb0f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765471_54_6723653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4868f52ad16361af20ee78053308bbc193e4c37ffcafa62fe11c7551a46292 +size 123504 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765473_54_6723776.jpg b/datasets/搭电测试/train/images/璁㈠崟1765473_54_6723776.jpg new file mode 100644 index 0000000..31e3f4d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765473_54_6723776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e228f34cb2700318e10c527e5afba07c3045e8cee16a522c9675193e3a58556 +size 275385 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765474_54_6723701.jpg b/datasets/搭电测试/train/images/璁㈠崟1765474_54_6723701.jpg new file mode 100644 index 0000000..325d385 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765474_54_6723701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7388d62ab7847563b45b82f3be58a0598f228828c078e3328e5119c31c58f5 +size 97270 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765476_54_6723781.jpg b/datasets/搭电测试/train/images/璁㈠崟1765476_54_6723781.jpg new file mode 100644 index 0000000..30d34c1 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765476_54_6723781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac1bd646884f6157bc82cd8515b3a2b69e713155358ed92df2bb9931e3e2c56 +size 1097366 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765477_54_6723724.jpg b/datasets/搭电测试/train/images/璁㈠崟1765477_54_6723724.jpg new file mode 100644 index 0000000..48bc9b1 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765477_54_6723724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9326074894820bd58e121f64f0e8d0f5297b6b3524c6c22037d368843afbb024 +size 88808 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765478_54_6723736.jpg b/datasets/搭电测试/train/images/璁㈠崟1765478_54_6723736.jpg new file mode 100644 index 0000000..8cca27d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765478_54_6723736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cc8147b8731437848709108007cbe7dff31451d9db88836ee4c82415f39bd2 +size 111129 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765479_54_6723748.jpg b/datasets/搭电测试/train/images/璁㈠崟1765479_54_6723748.jpg new file mode 100644 index 0000000..33b0ae0 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765479_54_6723748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97153c161bbb7bdb1b512fa2a6202bd1196fc067bffce0a67b8ae3167c0cd8db +size 104730 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765483_54_6723827.jpg b/datasets/搭电测试/train/images/璁㈠崟1765483_54_6723827.jpg new file mode 100644 index 0000000..2a2c8e2 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765483_54_6723827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215302b40928ecb440d3b84e2465cd2d36f9d4d579c57ebf631505f3d66f454b +size 95007 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765484_54_6723805.jpg b/datasets/搭电测试/train/images/璁㈠崟1765484_54_6723805.jpg new file mode 100644 index 0000000..39edd29 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765484_54_6723805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8927662c4f28c1410ea8754526b032489221e6329d54f5a0b303dabc8da05ec4 +size 101851 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765487_54_6723873.jpg b/datasets/搭电测试/train/images/璁㈠崟1765487_54_6723873.jpg new file mode 100644 index 0000000..f544545 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765487_54_6723873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be30de8b4d0f04b85302e76522b24c1736795ae6478f416fd73036723b15ce70 +size 153867 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765490_54_6723884.jpg b/datasets/搭电测试/train/images/璁㈠崟1765490_54_6723884.jpg new file mode 100644 index 0000000..325dd85 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765490_54_6723884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200cce6ecea56bb135b83f2b170e8ffe63866d1ca0741bfcfe9e09655778151c +size 404356 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765491_54_6723885.jpg b/datasets/搭电测试/train/images/璁㈠崟1765491_54_6723885.jpg new file mode 100644 index 0000000..f8acce6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765491_54_6723885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea84e8855b60507ac62de2716e9cc1fe8a19b66f19b2e0fdd313580bf1c44369 +size 129819 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765496_54_6724053.jpg b/datasets/搭电测试/train/images/璁㈠崟1765496_54_6724053.jpg new file mode 100644 index 0000000..573bccf --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765496_54_6724053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6891e5218ce7e4da41e85fd15e2d8606164dab6dd14736a7e710c9f1fdefece4 +size 171654 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765499_54_6723922.jpg b/datasets/搭电测试/train/images/璁㈠崟1765499_54_6723922.jpg new file mode 100644 index 0000000..3a0ec17 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765499_54_6723922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea91ae0782b481c89891eace4f8a1af7d4f1aafb18faa9060da96ee85a40290c +size 104268 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765506_54_6723992.jpg b/datasets/搭电测试/train/images/璁㈠崟1765506_54_6723992.jpg new file mode 100644 index 0000000..2169934 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765506_54_6723992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4022c7cd17565d95f07b27a6b77f61229d4c508fd46119dac8a20f984865d6b8 +size 193828 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765509_54_6724017.jpg b/datasets/搭电测试/train/images/璁㈠崟1765509_54_6724017.jpg new file mode 100644 index 0000000..86b2d02 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765509_54_6724017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581c120ebb8903be7c0ad353bf5eea38c3e9d71553e6d8606c1abc9e699c7f3d +size 89612 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765515_54_6724037.jpg b/datasets/搭电测试/train/images/璁㈠崟1765515_54_6724037.jpg new file mode 100644 index 0000000..f561d1b --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765515_54_6724037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092a4ea1569d8b17626a07423ed9975aa9f1a97518490746c609e67a6c05346e +size 93062 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765517_54_6724076.jpg b/datasets/搭电测试/train/images/璁㈠崟1765517_54_6724076.jpg new file mode 100644 index 0000000..0132f38 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765517_54_6724076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba59ab48ae507cc409a9630a4abcff9b9002123195f530ad8116447f8264114 +size 1058739 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765518_54_6724048.jpg b/datasets/搭电测试/train/images/璁㈠崟1765518_54_6724048.jpg new file mode 100644 index 0000000..786ea32 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765518_54_6724048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5134fbc8bcdb82b26d0b9c030acb10aafff25623ef197c0a711d42b912c5026 +size 119523 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765520_54_6724218.jpg b/datasets/搭电测试/train/images/璁㈠崟1765520_54_6724218.jpg new file mode 100644 index 0000000..f27827f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765520_54_6724218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f4d5ce01aec87c8611de45964d16de8661d708152bcf366755a672656d1936 +size 936169 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765521_54_6724119.jpg b/datasets/搭电测试/train/images/璁㈠崟1765521_54_6724119.jpg new file mode 100644 index 0000000..e65cf16 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765521_54_6724119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387f2e68a1c9fcffa44dbe172baebefbf33433e9d5314700453d4d5d09992518 +size 112783 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765523_54_6724131.jpg b/datasets/搭电测试/train/images/璁㈠崟1765523_54_6724131.jpg new file mode 100644 index 0000000..278328c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765523_54_6724131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b680a8e8bebedfcc1bb5e2a7fbeabaccb2124dd056d56e70acbd0b4aff9eda +size 196300 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765524_54_6724176.jpg b/datasets/搭电测试/train/images/璁㈠崟1765524_54_6724176.jpg new file mode 100644 index 0000000..947e2c6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765524_54_6724176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf0004cffa4a39d8930bf9a470a252bb8e26db53fa0d1c916ef99fe6442af27 +size 136077 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765527_54_6724353.jpg b/datasets/搭电测试/train/images/璁㈠崟1765527_54_6724353.jpg new file mode 100644 index 0000000..263d972 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765527_54_6724353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a998e955838c2fc356fd99b6d7c413a18b58b1166565fed2dc788da7e63d0e8 +size 403189 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765529_54_6724150.jpg b/datasets/搭电测试/train/images/璁㈠崟1765529_54_6724150.jpg new file mode 100644 index 0000000..cdd99e1 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765529_54_6724150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d0a69cbebe65621a0aab41fdd9c684646ab3fe18379d86613b46f81c822f85 +size 268637 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765533_54_6724202.jpg b/datasets/搭电测试/train/images/璁㈠崟1765533_54_6724202.jpg new file mode 100644 index 0000000..54ee542 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765533_54_6724202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5392c71835de684e6bf489dfdd63177071fad48536b8ab51ffa98e3a492b307 +size 119551 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765534_54_6724226.jpg b/datasets/搭电测试/train/images/璁㈠崟1765534_54_6724226.jpg new file mode 100644 index 0000000..d0dcfda --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765534_54_6724226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168cabd1de7af602960a1cb76e871acf9fe62da8b9af47c5b0333a1f00ea01eb +size 231625 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765536_54_6724254.jpg b/datasets/搭电测试/train/images/璁㈠崟1765536_54_6724254.jpg new file mode 100644 index 0000000..3e14a6d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765536_54_6724254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575e1327b62c185274b0daed91e54487b2ba6234085f361e2c5bc635986340bd +size 92813 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765537_54_6724349.jpg b/datasets/搭电测试/train/images/璁㈠崟1765537_54_6724349.jpg new file mode 100644 index 0000000..08899df --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765537_54_6724349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ef230b96d8527096b6e7fb33a8e1510187f097f513d645ee61061c2a706c50 +size 93338 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765538_54_6724276.jpg b/datasets/搭电测试/train/images/璁㈠崟1765538_54_6724276.jpg new file mode 100644 index 0000000..d67d72d --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765538_54_6724276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8701025d9b16056cdfd5b12d71cffe3785fc4d45887bd41ad2129e5653a3126 +size 147407 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765542_54_6724343.jpg b/datasets/搭电测试/train/images/璁㈠崟1765542_54_6724343.jpg new file mode 100644 index 0000000..eefb517 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765542_54_6724343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd9e1cf280d04ce123485fca8c35b012219e4f36e158388f4c802eea90529d3 +size 127857 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765544_54_6724390.jpg b/datasets/搭电测试/train/images/璁㈠崟1765544_54_6724390.jpg new file mode 100644 index 0000000..e27292c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765544_54_6724390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c434498fb12fcfc7c6042f1fbcc7b370e18fa67f687e7969d8789de2c8924258 +size 1125196 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765547_54_6724385.jpg b/datasets/搭电测试/train/images/璁㈠崟1765547_54_6724385.jpg new file mode 100644 index 0000000..ac56514 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765547_54_6724385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cde70f3a6c1b4a9d563c0326fd8cece0cf7e372450306bea70c73016d7404d +size 156866 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765548_54_6724556.jpg b/datasets/搭电测试/train/images/璁㈠崟1765548_54_6724556.jpg new file mode 100644 index 0000000..e72f4c0 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765548_54_6724556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056f4e78a5d5f6bf00b388c3f064d765e281b06b211a215ef45a8535808fcde4 +size 101620 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765550_54_6724472.jpg b/datasets/搭电测试/train/images/璁㈠崟1765550_54_6724472.jpg new file mode 100644 index 0000000..3f56dbe --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765550_54_6724472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3651e5cc9b4137ad28b18e52adb0c6daa01cf172e2cc24377c0219e03387a287 +size 126215 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765552_54_6724517.jpg b/datasets/搭电测试/train/images/璁㈠崟1765552_54_6724517.jpg new file mode 100644 index 0000000..02250b3 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765552_54_6724517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf6073302fd781f67861a6b2c8e0e22379acbe25526c35dad19b5a62c9c06e7 +size 124682 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765554_54_6724455.jpg b/datasets/搭电测试/train/images/璁㈠崟1765554_54_6724455.jpg new file mode 100644 index 0000000..a39fe64 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765554_54_6724455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f0a3fa498cad51bef56cb5564eacf85f22006736900290ebb364f7f1d7f544 +size 1302474 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765557_54_6724502.jpg b/datasets/搭电测试/train/images/璁㈠崟1765557_54_6724502.jpg new file mode 100644 index 0000000..79a60e6 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765557_54_6724502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcc87e14a15a26471d72f6edbbfa8e35b57d3ee9e6c53296a0c087fc1995f36 +size 409744 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765558_54_6724648.jpg b/datasets/搭电测试/train/images/璁㈠崟1765558_54_6724648.jpg new file mode 100644 index 0000000..b052bab --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765558_54_6724648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5442da9908e9582de1f9be4c47c8360c860fabaca703c5d1968a8f6290479059 +size 625567 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765559_54_6724552.jpg b/datasets/搭电测试/train/images/璁㈠崟1765559_54_6724552.jpg new file mode 100644 index 0000000..5fd5e02 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765559_54_6724552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcfd38eaba0a1ba590f6d070ed6be8c4935af7cb9ee673d729741ee11ca3bc6 +size 154449 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765560_54_6724553.jpg b/datasets/搭电测试/train/images/璁㈠崟1765560_54_6724553.jpg new file mode 100644 index 0000000..fb28374 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765560_54_6724553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467fff22e209485fea38015c76b9abab06772c058512f6bce7e93af6c1ba97e4 +size 82319 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765562_54_6724548.jpg b/datasets/搭电测试/train/images/璁㈠崟1765562_54_6724548.jpg new file mode 100644 index 0000000..ea8f2ac --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765562_54_6724548.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1ec55b28198cc3f9a82171cf720e91a210d2186b5109ec5bf49eaab892bf53 +size 495147 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765563_54_6724578.jpg b/datasets/搭电测试/train/images/璁㈠崟1765563_54_6724578.jpg new file mode 100644 index 0000000..19fdf48 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765563_54_6724578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570aee273fb57833545384a0a13205fa8eaa1bd9f556e5263b4b0a9a2e162a00 +size 917856 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765564_54_6724603.jpg b/datasets/搭电测试/train/images/璁㈠崟1765564_54_6724603.jpg new file mode 100644 index 0000000..8083c79 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765564_54_6724603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e681ffd4ee5261b11b4f081a925628f4bfbe66fbd79a77b6ea5731cc938a45f +size 156896 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765565_54_6724611.jpg b/datasets/搭电测试/train/images/璁㈠崟1765565_54_6724611.jpg new file mode 100644 index 0000000..6fc6b8e --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765565_54_6724611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967d1af83a384831662eef57a8095fb86e9317921b052dbc438b92e23519684f +size 1473199 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765566_54_6724619.jpg b/datasets/搭电测试/train/images/璁㈠崟1765566_54_6724619.jpg new file mode 100644 index 0000000..6dfae0f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765566_54_6724619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f301bdeb67118d79b2fc6bf29ee6035945e27d9762601033da4519a7a73505cf +size 1364859 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765570_54_6724641.jpg b/datasets/搭电测试/train/images/璁㈠崟1765570_54_6724641.jpg new file mode 100644 index 0000000..2f16ab1 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765570_54_6724641.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f112c1ecd67fda5661d2aa1e7d248d8cdfd05b7e4b8fb2c6af5ea961c33772 +size 157674 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765572_54_6724696.jpg b/datasets/搭电测试/train/images/璁㈠崟1765572_54_6724696.jpg new file mode 100644 index 0000000..399a4b1 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765572_54_6724696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04295c2f3770458640ebac396d33e53d9236e7a1005d164236fe7bd4c6a6d76 +size 264956 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765574_54_6724784.jpg b/datasets/搭电测试/train/images/璁㈠崟1765574_54_6724784.jpg new file mode 100644 index 0000000..8a7fe36 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765574_54_6724784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819f4b2923fd6545b59937b7b64b2488477191b5b1132b6d33360797650c1f75 +size 486652 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765576_54_6724664.jpg b/datasets/搭电测试/train/images/璁㈠崟1765576_54_6724664.jpg new file mode 100644 index 0000000..c722504 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765576_54_6724664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6978270572c42810c26ba96298212c5a09593bf2bf9d762f693fdb9c3eca249f +size 373396 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765577_54_6724746.jpg b/datasets/搭电测试/train/images/璁㈠崟1765577_54_6724746.jpg new file mode 100644 index 0000000..540d0e8 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765577_54_6724746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6706d74cfba2325e8f4cee979f75d55b9b3ca5e94d3ea11bf2bcfebb0e448d +size 97793 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765579_54_6724725.jpg b/datasets/搭电测试/train/images/璁㈠崟1765579_54_6724725.jpg new file mode 100644 index 0000000..48de97f --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765579_54_6724725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f46ebc322b6015b9f9479fd52fe599dba209df2036f68c82158885c20101ce3 +size 124191 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765586_54_6724821.jpg b/datasets/搭电测试/train/images/璁㈠崟1765586_54_6724821.jpg new file mode 100644 index 0000000..a54e165 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765586_54_6724821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda9896b4aa6cf9ab2892659946d246417b981d486c1f40a1ed37b09902b4154 +size 286696 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765588_54_6724842.jpg b/datasets/搭电测试/train/images/璁㈠崟1765588_54_6724842.jpg new file mode 100644 index 0000000..7a724e8 --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765588_54_6724842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06a1873cde73840b05fe10c6dd900eec2037070b0df3a1917cee1dbea4b230e +size 370760 diff --git a/datasets/搭电测试/train/images/璁㈠崟1765590_54_6724841.jpg b/datasets/搭电测试/train/images/璁㈠崟1765590_54_6724841.jpg new file mode 100644 index 0000000..5a2679c --- /dev/null +++ b/datasets/搭电测试/train/images/璁㈠崟1765590_54_6724841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15ee65c897dc72b1662051f1af09d1096866dccad9112c3ffa0be8fe544f0d1 +size 107560 diff --git a/datasets/搭电测试/train/labels.cache b/datasets/搭电测试/train/labels.cache new file mode 100644 index 0000000..2f39304 Binary files /dev/null and b/datasets/搭电测试/train/labels.cache differ diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765226_54_6721313.txt b/datasets/搭电测试/train/labels/璁㈠崟1765226_54_6721313.txt new file mode 100644 index 0000000..a95cf70 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765226_54_6721313.txt @@ -0,0 +1 @@ +0 0.740538 0.487344 0.777934 0.399971 0.749167 0.394307 0.726155 0.395923 0.693073 0.415342 0.697387 0.393496 0.664314 0.387026 0.657118 0.399971 0.665747 0.427476 0.559314 0.476826 0.536302 0.479253 0.450009 0.469546 0.352205 0.484106 0.363715 0.505142 0.432752 0.501904 0.490278 0.491387 0.530556 0.490581 0.553568 0.572290 0.603906 0.608696 0.631233 0.600605 0.622604 0.506758 0.583767 0.506758 0.575139 0.482490 0.662873 0.442036 0.664314 0.477637 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765229_54_6721246.txt b/datasets/搭电测试/train/labels/璁㈠崟1765229_54_6721246.txt new file mode 100644 index 0000000..43e7da1 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765229_54_6721246.txt @@ -0,0 +1 @@ +0 0.554560 0.586600 0.568370 0.621253 0.595990 0.632087 0.657725 0.470707 0.657725 0.460960 0.678030 0.413307 0.702400 0.413307 0.717835 0.438220 0.761695 0.551940 0.800690 0.623420 0.854300 0.663493 0.888415 0.651580 0.874605 0.632087 0.856735 0.638587 0.817745 0.601760 0.769820 0.522693 0.738140 0.428473 0.708085 0.389480 0.670720 0.394893 0.636605 0.443633 0.620360 0.437133 0.552940 0.586600 0.541565 0.447967 0.587055 0.341827 0.578930 0.333160 0.595990 0.285507 0.626045 0.240020 0.659350 0.214027 0.691840 0.208607 0.712150 0.235687 0.747890 0.309333 0.759260 0.305000 0.716210 0.209693 0.684530 0.191280 0.646350 0.201027 0.589490 0.263847 0.569995 0.300667 0.562685 0.300667 0.512325 0.401393 0.517195 0.440387 0.542380 0.446880 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765234_54_6721447.txt b/datasets/搭电测试/train/labels/璁㈠崟1765234_54_6721447.txt new file mode 100644 index 0000000..542b4fd --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765234_54_6721447.txt @@ -0,0 +1 @@ +0 0.340181 0.647220 0.325557 0.756608 0.337739 0.769609 0.418159 0.759863 0.461211 0.815098 0.528633 0.846504 0.558687 0.837839 0.648853 0.772858 0.640728 0.752279 0.668345 0.727370 0.674844 0.655885 0.652910 0.655885 0.652100 0.701374 0.627729 0.727370 0.520508 0.801016 0.525381 0.817259 0.464458 0.777188 0.405977 0.681882 0.436841 0.647220 0.438467 0.612565 0.398662 0.608229 0.340181 0.647220 0.350737 0.418698 0.375107 0.433861 0.414097 0.284395 0.453901 0.248659 0.507510 0.234577 0.564370 0.242155 0.614731 0.258405 0.666719 0.291979 0.690278 0.294147 0.640728 0.247572 0.575742 0.224831 0.510762 0.216165 0.469331 0.221582 0.423843 0.250820 0.431968 0.207500 0.398662 0.194505 0.350737 0.418698 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765235_54_6721550.txt b/datasets/搭电测试/train/labels/璁㈠崟1765235_54_6721550.txt new file mode 100644 index 0000000..d2c8d98 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765235_54_6721550.txt @@ -0,0 +1 @@ +0 0.288194 0.580451 0.373414 0.587734 0.478044 0.493889 0.474815 0.484983 0.506088 0.446962 0.511481 0.489028 0.542766 0.526250 0.602095 0.548898 0.671134 0.542431 0.708889 0.503594 0.706736 0.455859 0.640926 0.419453 0.574051 0.407318 0.528750 0.417031 0.556794 0.374149 0.593472 0.349878 0.632303 0.361207 0.660347 0.339358 0.615046 0.329653 0.576204 0.336936 0.522269 0.349878 0.494225 0.382240 0.485602 0.405703 0.446759 0.357969 0.379884 0.338550 0.323796 0.369297 0.358310 0.336128 0.332419 0.319132 0.224549 0.414601 0.247211 0.442109 0.282801 0.444531 0.377731 0.367674 0.377731 0.357969 0.418715 0.368490 0.451076 0.391944 0.465104 0.417839 0.471574 0.444531 0.388519 0.521389 0.418715 0.480937 0.392824 0.456667 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765236_54_6721487.txt b/datasets/搭电测试/train/labels/璁㈠崟1765236_54_6721487.txt new file mode 100644 index 0000000..c08741a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765236_54_6721487.txt @@ -0,0 +1 @@ +0 0.666693 0.597539 0.600534 0.649248 0.427135 0.689463 0.287852 0.680586 0.252331 0.633057 0.292031 0.578213 0.309440 0.583955 0.289245 0.609033 0.280885 0.639844 0.300391 0.660215 0.337995 0.669619 0.415990 0.672754 0.495378 0.659170 0.553880 0.641416 0.601927 0.624697 0.645104 0.588662 0.666693 0.597539 0.669479 0.558887 0.697344 0.554189 0.746094 0.535908 0.762799 0.502480 0.741914 0.484717 0.695951 0.474795 0.665299 0.479492 0.645807 0.493604 0.657643 0.506660 0.680625 0.490986 0.714753 0.489424 0.737734 0.501436 0.733555 0.517100 0.720326 0.531201 0.687591 0.541133 0.654167 0.546348 0.632578 0.547920 0.455690 0.579775 0.404154 0.585000 0.383255 0.564629 0.370026 0.579775 0.404844 0.602764 0.468919 0.595967 0.669479 0.558887 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765240_54_6721507.txt b/datasets/搭电测试/train/labels/璁㈠崟1765240_54_6721507.txt new file mode 100644 index 0000000..8706df4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765240_54_6721507.txt @@ -0,0 +1 @@ +0 0.524321 0.318077 0.609192 0.245058 0.644141 0.258163 0.615423 0.289990 0.644141 0.305904 0.635397 0.361135 0.614179 0.392962 0.592962 0.395769 0.551782 0.376106 0.499359 0.367683 0.441949 0.382663 0.404500 0.413548 0.372051 0.454740 0.392026 0.466904 0.395769 0.591404 0.379538 0.604510 0.355821 0.602635 0.287179 0.561452 0.277192 0.455673 0.305897 0.436952 0.329615 0.443510 0.339603 0.513712 0.354577 0.473462 0.349590 0.439760 0.380782 0.394827 0.435705 0.365808 0.514333 0.347087 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765242_54_6721703.txt b/datasets/搭电测试/train/labels/璁㈠崟1765242_54_6721703.txt new file mode 100644 index 0000000..48a2f2c --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765242_54_6721703.txt @@ -0,0 +1 @@ +0 0.478643 0.664008 0.493683 0.660248 0.503080 0.706614 0.482403 0.788065 0.384660 0.805612 0.384660 0.760499 0.432592 0.662755 0.444809 0.655235 0.437292 0.598843 0.388418 0.512378 0.370561 0.439696 0.363983 0.369521 0.329209 0.336938 0.280335 0.331928 0.234283 0.355737 0.244621 0.373280 0.287855 0.392077 0.337666 0.399597 0.338606 0.422153 0.294435 0.419646 0.230523 0.392077 0.206089 0.358244 0.223946 0.324408 0.271877 0.304358 0.323569 0.299345 0.363983 0.326915 0.384660 0.372027 0.390298 0.414633 0.399697 0.477292 0.435412 0.543707 0.465486 0.622652 0.455149 0.717890 0.478643 0.662755 0.662855 0.383304 0.700449 0.316888 0.741803 0.252979 0.783155 0.241700 0.823569 0.270522 0.838606 0.336938 0.847066 0.402103 0.873380 0.504858 0.851763 0.578793 0.818869 0.616389 0.702329 0.548720 0.700449 0.484808 0.817929 0.427166 0.830149 0.444709 0.830149 0.468519 0.773757 0.506111 0.775637 0.532427 0.822629 0.567517 0.848946 0.514884 0.839546 0.467265 0.820749 0.404610 0.816049 0.326915 0.794435 0.274282 0.759660 0.274282 0.713606 0.346964 0.669435 0.405863 0.662855 0.382054 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765244_54_6721493.txt b/datasets/搭电测试/train/labels/璁㈠崟1765244_54_6721493.txt new file mode 100644 index 0000000..5ddf0ad --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765244_54_6721493.txt @@ -0,0 +1 @@ +0 0.496029 0.455615 0.560924 0.369492 0.579648 0.378857 0.563424 0.405996 0.594622 0.393828 0.679492 0.409746 0.748138 0.444375 0.774349 0.500547 0.740651 0.554834 0.650794 0.603506 0.545951 0.623164 0.535964 0.603506 0.642057 0.574492 0.721927 0.534238 0.745651 0.495859 0.705703 0.446250 0.648294 0.421914 0.590885 0.417236 0.555937 0.457480 0.499766 0.480889 0.494779 0.455615 0.346263 0.457480 0.312565 0.432207 0.261393 0.427529 0.182760 0.465908 0.129089 0.515518 0.122852 0.564199 0.149063 0.613809 0.233932 0.661543 0.306315 0.661543 0.398672 0.651250 0.391185 0.631592 0.317552 0.639082 0.247656 0.629717 0.176510 0.593213 0.154049 0.541729 0.190247 0.493057 0.272617 0.455615 0.305065 0.474336 0.347500 0.457480 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765246_54_6721446.txt b/datasets/搭电测试/train/labels/璁㈠崟1765246_54_6721446.txt new file mode 100644 index 0000000..ee62127 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765246_54_6721446.txt @@ -0,0 +1 @@ +0 0.202894 0.551671 0.159750 0.655225 0.198583 0.770917 0.251439 0.773342 0.332339 0.685967 0.416478 0.602637 0.459628 0.502321 0.456389 0.431933 0.474728 0.426271 0.651639 0.507175 0.631139 0.526587 0.675367 0.602637 0.888950 0.602637 0.885717 0.565421 0.750878 0.529017 0.854433 0.472383 0.855511 0.440833 0.817756 0.429508 0.684000 0.499083 0.585833 0.450542 0.467178 0.401192 0.392750 0.398762 0.388433 0.418179 0.443444 0.421417 0.431583 0.439217 0.420794 0.522546 0.364700 0.605875 0.279483 0.668979 0.254672 0.660888 0.290272 0.582412 0.278406 0.541963 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765251_54_6721546.txt b/datasets/搭电测试/train/labels/璁㈠崟1765251_54_6721546.txt new file mode 100644 index 0000000..be5f4f7 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765251_54_6721546.txt @@ -0,0 +1 @@ +0 0.455200 0.408590 0.423493 0.265950 0.399253 0.271540 0.407653 0.358250 0.397387 0.355450 0.373147 0.269450 0.342387 0.242880 0.300427 0.247770 0.236107 0.303710 0.218387 0.361740 0.250093 0.424670 0.337720 0.470820 0.432813 0.486900 0.483160 0.467330 0.492493 0.435160 0.473840 0.430270 0.450533 0.458940 0.394600 0.458940 0.313480 0.435860 0.259413 0.394610 0.248227 0.339370 0.283653 0.286930 0.324667 0.260360 0.347987 0.271540 0.361960 0.416980 0.455200 0.408590 0.647253 0.444250 0.652840 0.486900 0.680813 0.509280 0.723693 0.514870 0.781493 0.493900 0.836507 0.451940 0.882187 0.401600 0.889653 0.347060 0.852360 0.289020 0.791760 0.263150 0.731160 0.258960 0.678947 0.383420 0.692933 0.421180 0.718107 0.426770 0.785227 0.282730 0.812267 0.286930 0.843960 0.314900 0.861680 0.348460 0.861680 0.389710 0.832773 0.426070 0.788960 0.458940 0.741413 0.488300 0.699453 0.495300 0.675213 0.480610 0.673347 0.435160 0.647253 0.444250 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765252_54_6721576.txt b/datasets/搭电测试/train/labels/璁㈠崟1765252_54_6721576.txt new file mode 100644 index 0000000..8614343 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765252_54_6721576.txt @@ -0,0 +1 @@ +0 0.247904 0.359482 0.252904 0.394111 0.295339 0.464316 0.392682 0.455889 0.390195 0.425000 0.347760 0.385684 0.496276 0.424063 0.664766 0.464316 0.611107 0.485850 0.584896 0.525166 0.598620 0.544814 0.612344 0.543887 0.614844 0.506436 0.684740 0.474609 0.732161 0.502695 0.747148 0.534521 0.742148 0.583193 0.702214 0.648721 0.732161 0.671191 0.747148 0.629062 0.772109 0.561670 0.762122 0.501758 0.709701 0.462441 0.795820 0.400664 0.788333 0.433428 0.773359 0.460576 0.810794 0.443721 0.819531 0.393174 0.777096 0.354795 0.704714 0.353857 0.669766 0.379131 0.659779 0.356670 0.624831 0.355732 0.609857 0.426875 0.322799 0.356670 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765253_54_6721624.txt b/datasets/搭电测试/train/labels/璁㈠崟1765253_54_6721624.txt new file mode 100644 index 0000000..6f3b13c --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765253_54_6721624.txt @@ -0,0 +1 @@ +0 0.315299 0.643105 0.317799 0.727354 0.472565 0.721738 0.475065 0.712373 0.546198 0.681484 0.567422 0.629062 0.638555 0.654336 0.679753 0.659023 0.737161 0.603789 0.707201 0.591621 0.661029 0.628125 0.539961 0.594434 0.523737 0.630000 0.519987 0.661826 0.480052 0.684297 0.481302 0.635615 0.315299 0.642168 0.362734 0.436230 0.457591 0.384756 0.482552 0.351992 0.522487 0.303311 0.566172 0.279912 0.599870 0.279912 0.642305 0.326719 0.667266 0.326719 0.626081 0.265869 0.561172 0.252764 0.496276 0.285527 0.460078 0.336074 0.457591 0.318291 0.432630 0.310801 0.317799 0.358545 0.319049 0.435303 0.362734 0.435303 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765255_54_6721652.txt b/datasets/搭电测试/train/labels/璁㈠崟1765255_54_6721652.txt new file mode 100644 index 0000000..775358b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765255_54_6721652.txt @@ -0,0 +1 @@ +0 0.637642 0.283678 0.641147 0.444681 0.681870 0.455911 0.724692 0.280872 0.748564 0.301465 0.773135 0.352949 0.779453 0.425957 0.737329 0.530801 0.673442 0.678698 0.610259 0.780729 0.539351 0.538288 0.474766 0.319251 0.453701 0.324863 0.451597 0.341712 0.427026 0.303333 0.405259 0.322995 0.449492 0.431576 0.485996 0.424089 0.554097 0.688060 0.607451 0.834089 0.634131 0.827533 0.636235 0.785410 0.708545 0.673079 0.762603 0.536419 0.801919 0.404434 0.780859 0.298652 0.730308 0.248105 0.689590 0.289297 0.672041 0.376348 0.660806 0.367923 0.653086 0.285547 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765258_54_6721679.txt b/datasets/搭电测试/train/labels/璁㈠崟1765258_54_6721679.txt new file mode 100644 index 0000000..7488b0d --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765258_54_6721679.txt @@ -0,0 +1 @@ +0 0.587874 0.430246 0.597900 0.355059 0.562808 0.314961 0.524383 0.324990 0.522703 0.361329 0.477598 0.299921 0.434147 0.308701 0.521037 0.439026 0.419121 0.530502 0.278766 0.600679 0.130066 0.712205 0.036496 0.835010 0.056535 0.936516 0.143425 0.999173 0.180184 0.999173 0.099987 0.923986 0.083281 0.851299 0.160131 0.736014 0.297139 0.628248 0.434147 0.555561 0.589541 0.428996 0.572835 0.594409 0.696470 0.588150 0.711509 0.613209 0.698150 0.628248 0.746601 0.997923 0.704829 0.997923 0.656378 0.634508 0.574501 0.642028 0.572835 0.593159 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765260_54_6721672.txt b/datasets/搭电测试/train/labels/璁㈠崟1765260_54_6721672.txt new file mode 100644 index 0000000..552ba46 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765260_54_6721672.txt @@ -0,0 +1 @@ +0 0.245365 0.693428 0.313867 0.753574 0.353971 0.759844 0.377357 0.645801 0.352305 0.574375 0.333919 0.510469 0.440859 0.530518 0.516042 0.517988 0.527734 0.475381 0.708190 0.487910 0.643021 0.524248 0.663073 0.596934 0.836849 0.574375 0.835169 0.516729 0.793398 0.482900 0.823477 0.451572 0.791732 0.418984 0.734922 0.437783 0.719883 0.461592 0.532747 0.447813 0.531081 0.416484 0.594570 0.398936 0.587891 0.376377 0.519388 0.390166 0.497669 0.372617 0.484297 0.390166 0.494323 0.406455 0.465911 0.424004 0.497669 0.462842 0.487643 0.495430 0.459232 0.506709 0.374023 0.490420 0.313867 0.481641 0.298828 0.510469 0.305521 0.578135 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765262_54_6721834.txt b/datasets/搭电测试/train/labels/璁㈠崟1765262_54_6721834.txt new file mode 100644 index 0000000..05fbacd --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765262_54_6721834.txt @@ -0,0 +1 @@ +0 0.752383 0.667207 0.783398 0.670970 0.820049 0.711068 0.839785 0.846406 0.827568 0.863952 0.805015 0.853926 0.793735 0.766211 0.638662 0.670970 0.571929 0.693529 0.565352 0.644655 0.597305 0.627109 0.587910 0.569466 0.534336 0.575729 0.558774 0.528112 0.602007 0.540645 0.617041 0.620846 0.707271 0.569466 0.764600 0.550671 0.807832 0.525605 0.806895 0.485508 0.772119 0.431621 0.726064 0.420345 0.656519 0.462949 0.585088 0.469212 0.539976 0.457936 0.532456 0.420345 0.591665 0.439141 0.667793 0.422852 0.735464 0.390267 0.797495 0.412826 0.829448 0.460443 0.842607 0.504303 0.823809 0.553177 0.735464 0.597038 0.738286 0.618340 0.677192 0.650918 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765272_54_6721791.txt b/datasets/搭电测试/train/labels/璁㈠崟1765272_54_6721791.txt new file mode 100644 index 0000000..7f584d4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765272_54_6721791.txt @@ -0,0 +1 @@ +0 0.220299 0.496680 0.333919 0.611973 0.320560 0.649561 0.263750 0.662090 0.086641 0.563096 0.086641 0.510469 0.170182 0.440293 0.300508 0.432773 0.429154 0.475381 0.542773 0.553076 0.566172 0.608213 0.614622 0.560596 0.574518 0.482900 0.617969 0.424004 0.719883 0.412725 0.770013 0.459092 0.788385 0.535527 0.768346 0.586904 0.686471 0.624502 0.693151 0.669609 0.669766 0.670869 0.656393 0.640791 0.611276 0.655830 0.552799 0.637031 0.542773 0.663350 0.514375 0.660840 0.537760 0.610713 0.516042 0.555576 0.435846 0.509209 0.347292 0.470361 0.258737 0.451572 0.189557 0.464229 0.139271 0.499063 0.133424 0.528008 0.232005 0.594678 0.179870 0.530889 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765273_54_6721840.txt b/datasets/搭电测试/train/labels/璁㈠崟1765273_54_6721840.txt new file mode 100644 index 0000000..277b67b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765273_54_6721840.txt @@ -0,0 +1 @@ +0 0.351901 0.649746 0.317109 0.722246 0.384766 0.738193 0.440833 0.696143 0.460169 0.620752 0.471758 0.394561 0.500768 0.361221 0.568424 0.339473 0.483359 0.301768 0.452435 0.277119 0.433099 0.295967 0.386706 0.272773 0.324844 0.233623 0.305508 0.240879 0.330638 0.298867 0.402161 0.378613 0.448568 0.375713 0.442760 0.480107 0.436966 0.577256 0.396367 0.641055 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765274_54_6722185.txt b/datasets/搭电测试/train/labels/璁㈠崟1765274_54_6722185.txt new file mode 100644 index 0000000..9f24949 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765274_54_6722185.txt @@ -0,0 +1 @@ +0 0.803255 0.455576 0.754805 0.521992 0.682956 0.524502 0.657904 0.465605 0.674609 0.455576 0.672435 0.442168 0.614128 0.438916 0.630326 0.418740 0.684297 0.428389 0.709023 0.455078 0.709023 0.473750 0.746784 0.426006 0.784544 0.416230 0.783711 0.416104 0.427995 0.535029 0.389388 0.561094 0.199922 0.437910 0.170846 0.420488 0.000755 0.405957 0.002760 0.382773 0.163164 0.391416 0.209609 0.414600 0.234674 0.398682 0.427995 0.533525 0.785716 0.414600 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765277_54_6721819.txt b/datasets/搭电测试/train/labels/璁㈠崟1765277_54_6721819.txt new file mode 100644 index 0000000..1d1af0a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765277_54_6721819.txt @@ -0,0 +1 @@ +0 0.487769 0.310808 0.701500 0.358462 0.691385 0.421279 0.460333 0.396375 0.408346 0.381212 0.362141 0.399625 0.321705 0.504683 0.287051 0.692048 0.261051 0.823096 0.197513 0.929240 0.129641 0.968231 0.076218 0.977971 0.035782 0.909740 0.000000 0.868000 0.000000 0.539702 0.074769 0.463519 0.204731 0.411538 0.295718 0.487346 0.276936 0.548000 0.248051 0.552337 0.120974 0.486269 0.077654 0.519846 0.001115 0.621654 0.001115 0.787356 0.118090 0.940067 0.180179 0.902163 0.235064 0.777606 0.259615 0.645481 0.285603 0.545837 0.327487 0.392038 0.366474 0.363885 0.454564 0.357385 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765284_54_6721907.txt b/datasets/搭电测试/train/labels/璁㈠崟1765284_54_6721907.txt new file mode 100644 index 0000000..97ad4b9 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765284_54_6721907.txt @@ -0,0 +1 @@ +0 0.629280 0.729950 0.356347 0.606480 0.302920 0.553410 0.233600 0.597810 0.292813 0.638970 0.287040 0.663880 0.246600 0.669290 0.206173 0.634640 0.168627 0.631390 0.180173 0.563150 0.213387 0.567490 0.259600 0.547990 0.288480 0.466760 0.349133 0.390950 0.422773 0.350880 0.466107 0.340040 0.525307 0.350880 0.584520 0.382280 0.619173 0.418020 0.650947 0.464600 0.697160 0.485170 0.694267 0.502500 0.645160 0.480840 0.611947 0.463510 0.567187 0.400700 0.509427 0.373620 0.461773 0.366040 0.399667 0.398530 0.347680 0.437520 0.321693 0.485170 0.304360 0.517670 0.422773 0.496010 0.494987 0.510080 0.487760 0.537160 0.380907 0.552320 0.353467 0.555570 0.653827 0.714780 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765286_54_6721953.txt b/datasets/搭电测试/train/labels/璁㈠崟1765286_54_6721953.txt new file mode 100644 index 0000000..d1af798 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765286_54_6721953.txt @@ -0,0 +1 @@ +0 0.601862 0.609736 0.495000 0.621650 0.493555 0.705049 0.685625 0.687725 0.687057 0.615156 0.571536 0.572920 0.441576 0.569668 0.357813 0.615156 0.275495 0.681221 0.266836 0.686641 0.191745 0.676895 0.135430 0.660645 0.005456 0.667139 0.000000 0.510898 0.000000 0.418730 0.094987 0.407207 0.255286 0.414785 0.353477 0.432119 0.448789 0.449443 0.393919 0.426699 0.382357 0.399629 0.489219 0.383379 0.567201 0.387715 0.574427 0.432119 0.555651 0.478691 0.507995 0.484102 0.415573 0.472187 0.324596 0.457031 0.211966 0.440781 0.135430 0.441865 0.008346 0.450527 0.002565 0.714795 0.112318 0.697471 0.240846 0.716963 0.298607 0.706133 0.379479 0.632480 0.464674 0.594580 0.546992 0.595664 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765287_54_6722042.txt b/datasets/搭电测试/train/labels/璁㈠崟1765287_54_6722042.txt new file mode 100644 index 0000000..4367371 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765287_54_6722042.txt @@ -0,0 +1 @@ +0 0.844895 0.181294 0.784747 0.281538 0.747150 0.265256 0.780988 0.142448 0.812002 0.137436 0.890953 0.192564 0.953916 0.331667 0.984930 0.499592 0.969895 0.604848 0.923846 0.657483 0.827981 0.705105 0.665385 0.780291 0.581740 0.761492 0.553540 0.750210 0.515953 0.860490 0.477413 0.837937 0.457675 0.789056 0.426661 0.765256 0.387194 0.752716 0.241512 0.797832 0.116512 0.809114 0.030044 0.757727 0.015009 0.687552 0.028164 0.627401 0.022526 0.603601 0.205795 0.434429 0.235874 0.469510 0.236818 0.493322 0.097719 0.677529 0.066705 0.637436 0.044143 0.672517 0.049781 0.732669 0.093016 0.767762 0.166329 0.772774 0.264073 0.758986 0.360874 0.726399 0.417264 0.727657 0.473654 0.767762 0.502788 0.820385 0.541329 0.730163 0.582675 0.649965 0.627788 0.582296 0.696399 0.564744 0.744336 0.549709 0.769712 0.517133 0.762194 0.475781 0.659747 0.434429 0.662570 0.404347 0.763129 0.362995 0.780988 0.373019 0.775350 0.394324 0.720839 0.414371 0.718960 0.426900 0.779108 0.456981 0.790385 0.514627 0.771591 0.559732 0.686058 0.599837 0.642832 0.608613 0.577981 0.707611 0.630612 0.745198 0.805420 0.687552 0.908802 0.634930 0.960498 0.569767 0.962378 0.439441 0.933243 0.330408 0.890953 0.227657 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765288_54_6722013.txt b/datasets/搭电测试/train/labels/璁㈠崟1765288_54_6722013.txt new file mode 100644 index 0000000..b70abb3 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765288_54_6722013.txt @@ -0,0 +1 @@ +0 0.680682 0.994921 0.756076 0.458455 0.703871 0.377264 0.653609 0.391762 0.700013 0.457008 0.645879 0.678839 0.622677 0.994921 0.000000 0.997805 0.000000 0.583563 0.100709 0.475856 0.398425 0.423661 0.460289 0.459902 0.460289 0.496152 0.199304 0.586053 0.131640 0.544006 0.009856 0.632451 0.004055 0.989124 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765291_54_6721901.txt b/datasets/搭电测试/train/labels/璁㈠崟1765291_54_6721901.txt new file mode 100644 index 0000000..669f35b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765291_54_6721901.txt @@ -0,0 +1 @@ +0 0.494201 0.496701 0.465382 0.529282 0.408981 0.523021 0.338808 0.545579 0.403970 0.610741 0.416505 0.678414 0.376400 0.690937 0.289942 0.663368 0.286181 0.634549 0.281169 0.593194 0.311238 0.541817 0.370139 0.504225 0.434051 0.499213 0.460370 0.504225 0.485428 0.484178 0.464120 0.422766 0.366435 0.366435 0.290394 0.354398 0.290509 0.387963 0.370139 0.396458 0.414005 0.412743 0.459109 0.439063 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765293_54_6721957.txt b/datasets/搭电测试/train/labels/璁㈠崟1765293_54_6721957.txt new file mode 100644 index 0000000..592c575 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765293_54_6721957.txt @@ -0,0 +1 @@ +0 0.363490 0.526758 0.425312 0.531768 0.415286 0.439033 0.375195 0.403945 0.318385 0.398936 0.333424 0.347559 0.351797 0.348809 0.401927 0.418984 0.496224 0.462305 0.558464 0.553320 0.599349 0.543066 0.556120 0.456934 0.439844 0.416699 0.378529 0.355078 0.445365 0.372617 0.493815 0.363848 0.488802 0.348809 0.445365 0.360088 0.386888 0.336279 0.405260 0.321240 0.425312 0.336279 0.455391 0.328760 0.406940 0.304951 0.378529 0.319990 0.363490 0.338789 0.316706 0.331270 0.293320 0.406455 0.315039 0.421494 0.336758 0.410215 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765296_54_6721978.txt b/datasets/搭电测试/train/labels/璁㈠崟1765296_54_6721978.txt new file mode 100644 index 0000000..7b868fb --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765296_54_6721978.txt @@ -0,0 +1 @@ +0 0.431738 0.581915 0.471212 0.599459 0.497527 0.534291 0.504106 0.439057 0.540757 0.467880 0.548279 0.540563 0.555795 0.541813 0.542637 0.434042 0.560493 0.365124 0.560493 0.352588 0.610307 0.391440 0.621584 0.381411 0.553914 0.335044 0.523843 0.405219 0.503163 0.391440 0.476848 0.401462 0.463690 0.411484 0.461809 0.466623 0.459929 0.505475 0.448651 0.514247 0.447714 0.533041 0.431738 0.535548 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765298_54_6722004.txt b/datasets/搭电测试/train/labels/璁㈠崟1765298_54_6722004.txt new file mode 100644 index 0000000..4bdb506 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765298_54_6722004.txt @@ -0,0 +1 @@ +0 0.331744 0.534271 0.438678 0.571867 0.462072 0.563096 0.415289 0.543046 0.423644 0.528008 0.535589 0.599438 0.498828 0.630763 0.498828 0.668358 0.548956 0.699688 0.620800 0.709712 0.615789 0.687154 0.569006 0.690913 0.508856 0.654575 0.538928 0.611967 0.597411 0.569362 0.624144 0.529258 0.612450 0.486654 0.592400 0.459083 0.565661 0.465350 0.528906 0.491667 0.552294 0.506704 0.582372 0.486654 0.595739 0.494171 0.602422 0.530513 0.585711 0.564350 0.552294 0.591917 0.448706 0.524246 0.468756 0.521742 0.345111 0.502946 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765301_54_6722029.txt b/datasets/搭电测试/train/labels/璁㈠崟1765301_54_6722029.txt new file mode 100644 index 0000000..4fd1da8 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765301_54_6722029.txt @@ -0,0 +1 @@ +0 0.490577 0.689606 0.650974 0.532962 0.607526 0.514173 0.515628 0.505394 0.452141 0.479077 0.371936 0.412663 0.365256 0.366298 0.296756 0.371308 0.211538 0.417673 0.211538 0.446500 0.300090 0.436471 0.341872 0.411413 0.385308 0.459029 0.448795 0.506654 0.522321 0.527952 0.590821 0.536721 0.615885 0.540481 0.465513 0.675827 0.669346 0.636971 0.726154 0.531712 0.697756 0.461538 0.647628 0.413923 0.597500 0.393865 0.572449 0.378827 0.502269 0.382587 0.442115 0.406404 0.445462 0.427702 0.497256 0.426452 0.569103 0.403894 0.604192 0.416423 0.650974 0.446500 0.684385 0.477827 0.699423 0.517933 0.686064 0.578077 0.657654 0.633221 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765303_54_6722048.txt b/datasets/搭电测试/train/labels/璁㈠崟1765303_54_6722048.txt new file mode 100644 index 0000000..8a0e903 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765303_54_6722048.txt @@ -0,0 +1 @@ +0 0.385674 0.087624 0.394482 0.309063 0.371836 0.339258 0.308926 0.322487 0.303892 0.067493 0.331572 0.067493 0.346670 0.208411 0.351636 0.000000 0.372305 0.000000 0.385674 0.084264 0.593276 0.000384 0.676318 0.258737 0.651152 0.325840 0.600825 0.228542 0.532886 0.198340 0.508979 0.233574 0.571890 0.413073 0.639829 0.508698 0.739229 0.560703 0.826045 0.533861 0.882661 0.439915 0.880146 0.272155 0.842402 0.159759 0.797104 0.168145 0.734194 0.262090 0.748037 0.203372 0.715322 0.194987 0.693936 0.245313 0.615435 0.000000 0.597124 0.000000 0.384419 0.082591 0.756841 0.332552 0.782007 0.278867 0.812202 0.201699 0.846177 0.282220 0.856240 0.401335 0.824785 0.480176 0.768169 0.520443 0.643604 0.476823 0.652412 0.411400 0.701484 0.426497 0.717837 0.392943 0.769424 0.374492 0.756841 0.330872 0.384419 0.080911 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765307_54_6722153.txt b/datasets/搭电测试/train/labels/璁㈠崟1765307_54_6722153.txt new file mode 100644 index 0000000..e59629b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765307_54_6722153.txt @@ -0,0 +1 @@ +0 0.264881 0.561825 0.250013 0.677113 0.321693 0.682123 0.371812 0.586885 0.427381 0.593452 0.445238 0.580456 0.495463 0.652044 0.514008 0.640764 0.463717 0.576855 0.520529 0.595655 0.575661 0.639514 0.589193 0.694653 0.580847 0.751042 0.545754 0.803671 0.503981 0.843780 0.522354 0.858810 0.589193 0.792401 0.614087 0.724732 0.605899 0.653304 0.579008 0.598165 0.518849 0.570595 0.468889 0.555556 0.433810 0.516706 0.388532 0.492897 0.355278 0.507937 0.333386 0.584375 0.308320 0.633254 0.295132 0.630744 0.298307 0.561825 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765308_54_6722156.txt b/datasets/搭电测试/train/labels/璁㈠崟1765308_54_6722156.txt new file mode 100644 index 0000000..9a76d53 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765308_54_6722156.txt @@ -0,0 +1 @@ +0 0.147956 0.531768 0.203099 0.650820 0.278281 0.659590 0.298333 0.634521 0.246536 0.521748 0.226484 0.522998 0.189727 0.484150 0.281628 0.514229 0.338438 0.514229 0.366836 0.494180 0.386888 0.451572 0.438685 0.434023 0.438685 0.411465 0.370182 0.434023 0.340104 0.496680 0.308359 0.501689 0.198086 0.460342 0.152969 0.441543 0.139596 0.454072 0.183047 0.514229 0.147956 0.526758 0.517214 0.623252 0.520560 0.674629 0.545612 0.689668 0.741107 0.639541 0.731081 0.613223 0.732747 0.596934 0.782878 0.596934 0.846367 0.614473 0.913203 0.632021 0.995078 0.635781 1.000000 0.576660 1.000000 0.490029 0.980039 0.474121 0.929909 0.461592 0.919883 0.479141 0.966667 0.489160 0.993398 0.504199 0.993398 0.616982 0.916549 0.614473 0.868086 0.598184 0.827995 0.585654 0.774518 0.581895 0.732747 0.583145 0.714375 0.579385 0.515547 0.621992 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765318_54_6722277.txt b/datasets/搭电测试/train/labels/璁㈠崟1765318_54_6722277.txt new file mode 100644 index 0000000..b7d9761 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765318_54_6722277.txt @@ -0,0 +1 @@ +0 0.448345 0.485544 0.406240 0.523978 0.385190 0.569089 0.354360 0.655978 0.328045 0.672678 0.277670 0.660989 0.277670 0.594156 0.260375 0.549033 0.252855 0.442100 0.255865 0.385300 0.266390 0.341856 0.293460 0.335167 0.310750 0.510611 0.329550 0.592478 0.332555 0.619211 0.360375 0.579111 0.411505 0.483878 0.446840 0.465500 0.378420 0.288389 0.379925 0.164744 0.372405 0.126311 0.352105 0.144689 0.340825 0.218211 0.328795 0.388633 0.363385 0.376944 0.376915 0.285044 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765320_54_6722264.txt b/datasets/搭电测试/train/labels/璁㈠崟1765320_54_6722264.txt new file mode 100644 index 0000000..15d7bcb --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765320_54_6722264.txt @@ -0,0 +1 @@ +0 0.248295 0.406404 0.275038 0.504144 0.308449 0.506654 0.370269 0.496625 0.467179 0.466548 0.555731 0.431462 0.622564 0.405144 0.615885 0.387606 0.595833 0.387606 0.589154 0.400135 0.512295 0.422692 0.485564 0.388856 0.562423 0.362538 0.590821 0.326202 0.570769 0.328702 0.549051 0.352519 0.508949 0.372567 0.472192 0.376327 0.393667 0.338731 0.360244 0.338731 0.343538 0.361288 0.432090 0.392615 0.455487 0.392615 0.495590 0.428952 0.341872 0.489106 0.333513 0.410163 0.305103 0.373817 0.268346 0.376327 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765321_54_6722259.txt b/datasets/搭电测试/train/labels/璁㈠崟1765321_54_6722259.txt new file mode 100644 index 0000000..5cc1cc5 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765321_54_6722259.txt @@ -0,0 +1 @@ +0 0.406003 0.585449 0.443060 0.584238 0.448698 0.463379 0.484154 0.478486 0.525247 0.480293 0.555065 0.471836 0.592943 0.499639 0.608242 0.489365 0.567148 0.466396 0.593737 0.459746 0.616302 0.458545 0.623555 0.449473 0.584883 0.449473 0.566341 0.456123 0.555872 0.384814 0.522839 0.361846 0.489792 0.359434 0.462396 0.372119 0.455951 0.407773 0.437422 0.407178 0.437422 0.430742 0.451120 0.453711 0.483346 0.466396 0.466432 0.399316 0.478516 0.373936 0.501888 0.370312 0.530091 0.378164 0.547813 0.401133 0.550234 0.435576 0.555065 0.459150 0.531693 0.465186 0.497044 0.469424 0.410026 0.458545 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765322_54_6722340.txt b/datasets/搭电测试/train/labels/璁㈠崟1765322_54_6722340.txt new file mode 100644 index 0000000..ed7afc2 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765322_54_6722340.txt @@ -0,0 +1 @@ +0 0.670280 0.591490 0.722653 0.557640 0.823373 0.527430 0.916040 0.508090 0.940213 0.475460 0.906373 0.452490 0.758920 0.434360 0.670280 0.424690 0.635640 0.473640 0.647720 0.486940 0.738773 0.489960 0.764560 0.451890 0.835467 0.456120 0.890253 0.468810 0.907173 0.484520 0.883813 0.500840 0.771000 0.526220 0.701707 0.546160 0.644493 0.589070 0.223880 0.518360 0.091733 0.514740 0.050640 0.481500 0.049840 0.411400 0.061920 0.406560 0.107853 0.365470 0.139280 0.361840 0.210187 0.378760 0.227107 0.412610 0.252093 0.402330 0.253693 0.375740 0.282707 0.384810 0.348773 0.421070 0.347173 0.446450 0.260147 0.444640 0.198107 0.424690 0.144920 0.381790 0.118333 0.399310 0.139280 0.417440 0.123160 0.482100 0.100600 0.485130 0.100600 0.501440 0.156200 0.506880 0.196493 0.505070 0.229520 0.504460 0.256920 0.510510 0.251280 0.522590 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765326_54_6723184.txt b/datasets/搭电测试/train/labels/璁㈠崟1765326_54_6723184.txt new file mode 100644 index 0000000..92fdb64 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765326_54_6723184.txt @@ -0,0 +1 @@ +0 0.596309 0.457085 0.619412 0.463581 0.651188 0.413763 0.674291 0.343365 0.648293 0.317370 0.649735 0.334697 0.649735 0.383443 0.645409 0.393183 0.626632 0.369360 0.636747 0.349862 0.576090 0.280545 0.550092 0.290294 0.498108 0.250225 0.449008 0.248054 0.410023 0.226393 0.415802 0.209066 0.444683 0.160329 0.421580 0.158166 0.334925 0.218815 0.343599 0.248054 0.451903 0.276220 0.466344 0.270804 0.505329 0.295709 0.524106 0.288131 0.535652 0.306540 0.521211 0.317370 0.583310 0.387768 0.604971 0.374775 0.620854 0.402933 0.622307 0.421349 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765330_54_6722418.txt b/datasets/搭电测试/train/labels/璁㈠崟1765330_54_6722418.txt new file mode 100644 index 0000000..0751bc9 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765330_54_6722418.txt @@ -0,0 +1 @@ +0 0.407604 0.500117 0.418086 0.524297 0.428555 0.541211 0.476901 0.559346 0.523958 0.567773 0.513932 0.613672 0.585026 0.634277 0.630000 0.567803 0.616302 0.525498 0.602604 0.520059 0.563932 0.542422 0.522031 0.553906 0.454349 0.529131 0.432591 0.526709 0.430169 0.494072 0.452734 0.471113 0.496250 0.495283 0.544596 0.512207 0.573594 0.511602 0.588099 0.502539 0.603411 0.506768 0.642891 0.469902 0.675130 0.463857 0.718633 0.449355 0.725078 0.417930 0.699297 0.397383 0.661432 0.390127 0.642891 0.416719 0.593737 0.459629 0.581654 0.486826 0.567148 0.497705 0.547813 0.503740 0.501888 0.480781 0.460794 0.459629 0.411641 0.479570 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765331_54_6722390.txt b/datasets/搭电测试/train/labels/璁㈠崟1765331_54_6722390.txt new file mode 100644 index 0000000..73470e9 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765331_54_6722390.txt @@ -0,0 +1 @@ +0 0.652383 0.465977 0.826146 0.481016 0.941445 0.462217 0.991563 0.408340 0.999922 0.349434 0.948125 0.299316 0.851211 0.285527 0.869596 0.270488 0.839518 0.252949 0.687474 0.256709 0.682461 0.278008 0.766003 0.333145 0.897995 0.348184 0.926406 0.334404 0.951458 0.365732 0.941445 0.422119 0.887969 0.447178 0.655729 0.423369 0.630664 0.448437 0.625651 0.457207 0.430156 0.403320 0.451888 0.340664 0.396745 0.249189 0.318216 0.175254 0.201250 0.130137 0.112695 0.133896 0.030833 0.184023 0.015794 0.250439 0.055898 0.320615 0.107682 0.340664 0.157812 0.360713 0.321563 0.393301 0.421745 0.333105 0.197917 0.278008 0.171185 0.321865 0.079284 0.293047 0.064245 0.226631 0.104349 0.175254 0.184544 0.170244 0.278112 0.194053 0.368346 0.269238 0.401758 0.325625 0.398411 0.393301 0.431836 0.400820 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765332_54_6722408.txt b/datasets/搭电测试/train/labels/璁㈠崟1765332_54_6722408.txt new file mode 100644 index 0000000..27b2552 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765332_54_6722408.txt @@ -0,0 +1 @@ +0 0.494313 0.369902 0.411974 0.355459 0.329646 0.356357 0.259217 0.366743 0.221524 0.383442 0.212597 0.397891 0.261202 0.444839 0.285998 0.444839 0.305837 0.426328 0.262189 0.375771 0.299882 0.366289 0.343530 0.361777 0.394120 0.360874 0.436781 0.365386 0.492328 0.376221 0.434796 0.567627 0.396105 0.563110 0.331631 0.547310 0.258230 0.529253 0.228466 0.489077 0.206642 0.480049 0.191760 0.484565 0.198702 0.510293 0.190773 0.510293 0.158036 0.496299 0.135225 0.502622 0.188788 0.542344 0.203670 0.531963 0.231438 0.532412 0.353455 0.565820 0.434796 0.576201 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765334_54_6722383.txt b/datasets/搭电测试/train/labels/璁㈠崟1765334_54_6722383.txt new file mode 100644 index 0000000..e5cf6c0 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765334_54_6722383.txt @@ -0,0 +1 @@ +0 0.625569 0.477696 0.652301 0.514039 0.760915 0.478951 0.856144 0.421314 0.876196 0.373686 0.826078 0.331088 0.754222 0.316049 0.645621 0.336098 0.565425 0.396245 0.518641 0.462667 0.490235 0.564167 0.508614 0.633088 0.558745 0.684471 0.603856 0.699510 0.500261 0.737098 0.358235 0.804765 0.226235 0.852392 0.149386 0.853637 0.110954 0.828578 0.127660 0.770931 0.172771 0.732088 0.174444 0.704520 0.211203 0.691990 0.241281 0.608029 0.284719 0.525324 0.237935 0.501510 0.151059 0.561657 0.000000 0.628157 0.000000 0.683931 0.179451 0.586725 0.196170 0.554137 0.239608 0.526569 0.247961 0.541608 0.226235 0.580461 0.201176 0.596745 0.164418 0.688225 0.117634 0.720804 0.120980 0.738353 0.080876 0.790980 0.080876 0.854892 0.124314 0.883716 0.192824 0.894990 0.323150 0.863667 0.430078 0.816049 0.555399 0.753392 0.647294 0.729578 0.785974 0.725824 0.854484 0.732088 0.832758 0.704520 0.729163 0.689480 0.677373 0.686971 0.602183 0.664422 0.543699 0.614294 0.535346 0.530333 0.573778 0.446373 0.637268 0.383716 0.725817 0.353637 0.790980 0.356147 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765336_54_6722447.txt b/datasets/搭电测试/train/labels/璁㈠崟1765336_54_6722447.txt new file mode 100644 index 0000000..09af93c --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765336_54_6722447.txt @@ -0,0 +1 @@ +0 0.486797 0.654326 0.441693 0.671865 0.354805 0.651816 0.304674 0.621748 0.353138 0.591670 0.364831 0.591670 0.354805 0.493926 0.324727 0.483896 0.311367 0.496426 0.311367 0.505205 0.287969 0.508965 0.267917 0.531514 0.254557 0.561592 0.257904 0.602949 0.284635 0.629258 0.329740 0.658086 0.379870 0.681895 0.435013 0.688164 0.476784 0.679385 0.709023 0.280889 0.660573 0.240791 0.612122 0.244551 0.561992 0.265850 0.538594 0.288408 0.516875 0.287158 0.463411 0.382393 0.465078 0.416230 0.486797 0.419990 0.526901 0.376133 0.511862 0.358584 0.558646 0.294678 0.602096 0.262090 0.643867 0.253320 0.677279 0.272119 0.698997 0.297178 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765341_54_6722467.txt b/datasets/搭电测试/train/labels/璁㈠崟1765341_54_6722467.txt new file mode 100644 index 0000000..ae0669b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765341_54_6722467.txt @@ -0,0 +1 @@ +0 0.381322 0.573992 0.433550 0.569812 0.491356 0.567725 0.566567 0.563546 0.628550 0.548921 0.673817 0.516537 0.682867 0.478933 0.663367 0.441846 0.634117 0.421479 0.605567 0.414167 0.606261 0.349400 0.588850 0.351488 0.576317 0.325375 0.549856 0.330596 0.568656 0.406854 0.533139 0.407375 0.502494 0.408942 0.479517 0.406329 0.462106 0.384396 0.461411 0.346267 0.477428 0.309183 0.497622 0.281500 0.531744 0.255904 0.553333 0.247550 0.586067 0.247550 0.611833 0.253817 0.620189 0.262696 0.620889 0.267921 0.619494 0.274187 0.607656 0.264783 0.590244 0.266354 0.629244 0.338429 0.648744 0.338429 0.634817 0.236058 0.611833 0.236579 0.617406 0.249637 0.585372 0.237104 0.557511 0.237625 0.531050 0.246504 0.516428 0.253296 0.494839 0.268962 0.484389 0.281500 0.467678 0.301346 0.454444 0.327983 0.449572 0.352533 0.450961 0.373425 0.456533 0.394317 0.468372 0.415733 0.487178 0.419387 0.510856 0.418346 0.549156 0.417821 0.572139 0.417300 0.581889 0.440279 0.586761 0.452817 0.603478 0.467442 0.566289 0.478096 0.533694 0.496533 0.521372 0.507188 0.529728 0.510742 0.544489 0.500554 0.567822 0.485721 0.608978 0.479871 0.625344 0.474338 0.612111 0.463838 0.594978 0.436467 0.590317 0.423046 0.609744 0.428267 0.641433 0.443258 0.660933 0.470417 0.663022 0.500713 0.636556 0.529963 0.582233 0.546675 0.537667 0.553987 0.486133 0.551900 0.392811 0.543021 0.409528 0.496533 0.445739 0.498621 0.473594 0.499667 0.516772 0.508546 0.543239 0.514292 0.569700 0.525263 0.583628 0.541454 0.570394 0.547721 0.565522 0.536229 0.558556 0.526829 0.534878 0.525783 0.516772 0.520037 0.471506 0.520037 0.425544 0.520037 0.401867 0.517425 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765342_54_6722493.txt b/datasets/搭电测试/train/labels/璁㈠崟1765342_54_6722493.txt new file mode 100644 index 0000000..aeaaae4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765342_54_6722493.txt @@ -0,0 +1 @@ +0 0.626261 0.694325 0.715783 0.714571 0.751156 0.699883 0.758650 0.667733 0.714817 0.559379 0.769850 0.515987 0.781050 0.475437 0.753978 0.434887 0.668244 0.411137 0.616028 0.316017 0.626778 0.269125 0.554889 0.245958 0.507667 0.266792 0.643022 0.406908 0.519983 0.368471 0.481789 0.379650 0.465611 0.393417 0.475222 0.507833 0.542278 0.535750 0.585056 0.439208 0.596500 0.409292 0.723194 0.447458 0.755828 0.475437 0.750272 0.504142 0.715783 0.541187 0.685000 0.436042 0.648500 0.424250 0.690561 0.553758 0.601122 0.644650 0.624411 0.651658 0.696200 0.574063 0.734394 0.680304 0.723194 0.695717 0.637461 0.678250 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765343_54_6722580.txt b/datasets/搭电测试/train/labels/璁㈠崟1765343_54_6722580.txt new file mode 100644 index 0000000..359299e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765343_54_6722580.txt @@ -0,0 +1 @@ +0 0.706850 0.277611 0.727645 0.292044 0.715950 0.420567 0.688005 0.411911 0.674360 0.345478 0.675010 0.283389 0.591180 0.349811 0.620425 0.380133 0.606125 0.598189 0.578185 0.618411 0.543745 0.541878 0.560640 0.456678 0.562590 0.338256 0.537895 0.361367 0.476160 0.449456 0.444970 0.492778 0.417025 0.502889 0.410525 0.488444 0.456015 0.456678 0.506700 0.381578 0.466410 0.346922 0.446915 0.326711 0.427420 0.326711 0.391030 0.372922 0.392980 0.352700 0.422875 0.306489 0.463165 0.318044 0.511900 0.370033 0.557390 0.313711 0.587280 0.303600 0.676310 0.270389 0.674360 0.196744 0.698405 0.192411 0.706200 0.274722 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765344_54_6722561.txt b/datasets/搭电测试/train/labels/璁㈠崟1765344_54_6722561.txt new file mode 100644 index 0000000..c6f3930 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765344_54_6722561.txt @@ -0,0 +1 @@ +0 0.696267 0.646790 0.645560 0.668630 0.565747 0.683190 0.491307 0.671060 0.480520 0.651640 0.460133 0.663100 0.319467 0.612500 0.328667 0.579400 0.408000 0.550400 0.427200 0.566600 0.398000 0.590600 0.458667 0.616800 0.471067 0.547900 0.518800 0.543800 0.543200 0.571500 0.489147 0.631420 0.499947 0.649210 0.523667 0.662160 0.571133 0.667820 0.627227 0.653260 0.687640 0.635460 0.827867 0.359580 0.873173 0.287580 0.873173 0.230950 0.818160 0.201820 0.740493 0.210720 0.604267 0.276400 0.548533 0.392400 0.594667 0.401600 0.653600 0.283200 0.769613 0.220430 0.823547 0.222860 0.853760 0.241470 0.862387 0.274640 0.683320 0.649210 0.483760 0.616850 0.508573 0.591770 0.516120 0.565880 0.508573 0.560220 0.491307 0.568310 0.481600 0.584490 0.482680 0.614430 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765345_54_6722566.txt b/datasets/搭电测试/train/labels/璁㈠崟1765345_54_6722566.txt new file mode 100644 index 0000000..4df1e7d --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765345_54_6722566.txt @@ -0,0 +1 @@ +0 0.715365 0.712109 0.464453 0.764648 0.229688 0.660547 0.207292 0.588867 0.255469 0.526563 0.164714 0.573730 0.138932 0.541602 0.218620 0.486523 0.304375 0.546064 0.254753 0.594609 0.264466 0.631826 0.330260 0.669844 0.416563 0.704629 0.524427 0.720010 0.602096 0.704629 0.670052 0.658301 0.715234 0.710449 0.814063 0.317754 0.854076 0.233457 0.854076 0.166064 0.796589 0.096816 0.734232 0.059355 0.641901 0.050937 0.557005 0.055635 0.493359 0.091230 0.467148 0.131436 0.472109 0.200693 0.467148 0.286855 0.495846 0.291543 0.504583 0.217598 0.508359 0.158623 0.512018 0.115498 0.574479 0.083711 0.675560 0.079980 0.754193 0.106201 0.807799 0.169863 0.809102 0.272773 0.831536 0.270029 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765354_54_6722675.txt b/datasets/搭电测试/train/labels/璁㈠崟1765354_54_6722675.txt new file mode 100644 index 0000000..b6c694e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765354_54_6722675.txt @@ -0,0 +1 @@ +0 0.672454 0.499566 0.654086 0.540564 0.582894 0.585061 0.499838 0.590729 0.432963 0.564835 0.356366 0.505781 0.292731 0.425686 0.291644 0.411120 0.306748 0.410313 0.345579 0.441866 0.383333 0.487170 0.423252 0.526007 0.454537 0.547040 0.507384 0.566458 0.559167 0.565642 0.602315 0.548655 0.621528 0.502344 0.673148 0.500087 0.304595 0.307569 0.367153 0.299479 0.428646 0.273585 0.505231 0.234757 0.551609 0.227474 0.601238 0.237995 0.648692 0.268733 0.654282 0.286632 0.586111 0.361111 0.619329 0.385069 0.693056 0.291667 0.637847 0.225868 0.550532 0.208863 0.497685 0.221814 0.436192 0.244462 0.397361 0.262266 0.349896 0.281675 0.291644 0.293003 0.287338 0.299479 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765355_54_6722642.txt b/datasets/搭电测试/train/labels/璁㈠崟1765355_54_6722642.txt new file mode 100644 index 0000000..ac58f09 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765355_54_6722642.txt @@ -0,0 +1 @@ +0 0.382357 0.623896 0.466497 0.483936 0.472969 0.373906 0.429831 0.267109 0.347839 0.224238 0.252917 0.223428 0.196823 0.259834 0.201146 0.348828 0.104063 0.285723 0.067383 0.258213 0.037174 0.260645 0.028555 0.282480 0.078164 0.318887 0.109453 0.349629 0.154688 0.437012 0.128255 0.477246 0.196224 0.575488 0.251172 0.592090 0.251823 0.481543 0.198828 0.401367 0.383724 0.507129 0.376966 0.579395 0.355391 0.619043 0.382357 0.624697 0.419036 0.501729 0.397461 0.471797 0.335977 0.438623 0.246445 0.385234 0.252917 0.259023 0.304701 0.249316 0.366185 0.265498 0.410404 0.309180 0.436302 0.375518 0.443854 0.442676 0.425508 0.498496 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765357_54_6722634.txt b/datasets/搭电测试/train/labels/璁㈠崟1765357_54_6722634.txt new file mode 100644 index 0000000..e8c278a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765357_54_6722634.txt @@ -0,0 +1 @@ +0 0.524479 0.810566 0.576901 0.817119 0.654284 0.784355 0.704206 0.727256 0.701719 0.599951 0.669258 0.620547 0.601862 0.636455 0.548203 0.635527 0.543203 0.611182 0.610599 0.611182 0.687982 0.586846 0.670508 0.524131 0.646797 0.377168 0.593880 0.344785 0.530221 0.328496 0.467318 0.335703 0.434375 0.335137 0.442357 0.307334 0.519740 0.304902 0.597122 0.312207 0.663151 0.349092 0.720313 0.390176 0.751758 0.421543 0.772734 0.457861 0.755000 0.524883 0.714688 0.587783 0.741771 0.673711 0.741771 0.704512 0.724427 0.766289 0.674883 0.812441 0.612227 0.841553 0.502266 0.847168 0.705078 0.552686 0.692096 0.499326 0.684492 0.454023 0.677005 0.416768 0.675872 0.392520 0.707201 0.418359 0.724427 0.441855 0.735286 0.474990 0.730924 0.508223 0.705078 0.552686 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765360_54_6722593.txt b/datasets/搭电测试/train/labels/璁㈠崟1765360_54_6722593.txt new file mode 100644 index 0000000..0faef6e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765360_54_6722593.txt @@ -0,0 +1 @@ +0 0.498503 0.672852 0.575586 0.558659 0.605729 0.611849 0.505234 0.917227 0.452598 0.925241 0.415339 0.886471 0.415339 0.816940 0.432344 0.769935 0.447721 0.771556 0.440469 0.808815 0.431582 0.849212 0.435592 0.887227 0.458229 0.903477 0.494616 0.894590 0.500358 0.857337 0.481732 0.793438 0.496940 0.674414 0.324036 0.223203 0.263932 0.145508 0.296484 0.102930 0.332813 0.119206 0.379167 0.071615 0.475651 0.107943 0.479362 0.230859 0.433008 0.228255 0.414258 0.128060 0.369206 0.125456 0.350358 0.213242 0.326530 0.231979 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765362_54_6722651.txt b/datasets/搭电测试/train/labels/璁㈠崟1765362_54_6722651.txt new file mode 100644 index 0000000..74a65af --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765362_54_6722651.txt @@ -0,0 +1 @@ +0 0.770977 0.508125 0.803437 0.463193 0.859596 0.463193 0.862096 0.486592 0.803437 0.566162 0.743529 0.590498 0.693607 0.553057 0.727305 0.422939 0.758503 0.425752 0.754753 0.360225 0.708581 0.287217 0.646172 0.265684 0.595052 0.273145 0.598750 0.423877 0.560052 0.425752 0.536341 0.401416 0.540091 0.323721 0.461458 0.439795 0.411536 0.425752 0.496406 0.342441 0.535091 0.286279 0.467695 0.307803 0.436497 0.324658 0.371589 0.408906 0.329154 0.393926 0.411536 0.309678 0.491406 0.277852 0.547578 0.261006 0.546328 0.184248 0.562552 0.143057 0.588763 0.144932 0.591263 0.201094 0.576276 0.256318 0.637435 0.245088 0.693607 0.251641 0.743529 0.290957 0.773477 0.333076 0.793451 0.398604 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765367_54_6722725.txt b/datasets/搭电测试/train/labels/璁㈠崟1765367_54_6722725.txt new file mode 100644 index 0000000..3a2df63 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765367_54_6722725.txt @@ -0,0 +1 @@ +0 0.708973 0.640940 0.729467 0.650400 0.662800 0.739200 0.577067 0.694200 0.620680 0.604030 0.608653 0.594660 0.591493 0.584520 0.568653 0.565010 0.557653 0.547810 0.466667 0.534940 0.419307 0.540820 0.388627 0.536130 0.331467 0.550400 0.284800 0.699500 0.246667 0.695600 0.247333 0.598300 0.296520 0.553680 0.323093 0.536130 0.356933 0.523260 0.377160 0.522850 0.419307 0.529910 0.458360 0.532980 0.567533 0.544310 0.577973 0.560670 0.598773 0.578640 0.609680 0.582910 0.611827 0.571650 0.637827 0.574730 0.632613 0.583330 0.619560 0.588010 0.626360 0.594660 0.647160 0.594660 0.672707 0.599690 0.686680 0.614510 0.700760 0.631710 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765368_54_6722735.txt b/datasets/搭电测试/train/labels/璁㈠崟1765368_54_6722735.txt new file mode 100644 index 0000000..f0d6839 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765368_54_6722735.txt @@ -0,0 +1 @@ +0 0.249907 0.517960 0.317920 0.509840 0.375107 0.503070 0.385933 0.496290 0.408213 0.522020 0.446733 0.543240 0.506267 0.550500 0.511733 0.688300 0.574133 0.707800 0.614267 0.531300 0.747080 0.494040 0.872000 0.464900 0.861867 0.422400 0.729467 0.436300 0.720667 0.482100 0.614053 0.512550 0.616467 0.493590 0.594800 0.485910 0.573120 0.423620 0.511733 0.341910 0.479227 0.322500 0.455160 0.330170 0.434693 0.401950 0.416027 0.451150 0.393760 0.473720 0.384133 0.477790 0.348013 0.445730 0.308893 0.429480 0.272173 0.432190 0.272787 0.444380 0.307093 0.442570 0.338387 0.453410 0.369680 0.475080 0.376307 0.481400 0.347413 0.494940 0.275787 0.498100 0.473213 0.340100 0.497293 0.358610 0.525573 0.396980 0.549053 0.433090 0.574333 0.482300 0.576733 0.499450 0.575533 0.517060 0.555067 0.528340 0.516547 0.532410 0.488867 0.534660 0.443120 0.522480 0.400987 0.491780 0.430480 0.465600 0.452747 0.409620 0.461173 0.367190 0.473813 0.339650 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765373_54_6722826.txt b/datasets/搭电测试/train/labels/璁㈠崟1765373_54_6722826.txt new file mode 100644 index 0000000..ff1b6a8 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765373_54_6722826.txt @@ -0,0 +1 @@ +0 0.294219 0.426689 0.055820 0.513740 0.125716 0.559609 0.351628 0.524043 0.399049 0.548379 0.419023 0.583008 0.382826 0.693467 0.401549 0.801113 0.429010 0.788945 0.404049 0.717803 0.447721 0.602666 0.431497 0.536211 0.352878 0.492217 0.179388 0.512803 0.302943 0.459453 0.294206 0.424814 0.518867 0.280664 0.528854 0.392988 0.596250 0.383633 0.618711 0.328398 0.729792 0.392988 0.828398 0.459453 0.850859 0.439795 0.686107 0.334951 0.636185 0.306875 0.652409 0.281602 0.633698 0.255391 0.598750 0.263809 0.592500 0.288145 0.545078 0.267559 0.517617 0.280664 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765377_54_6722764.txt b/datasets/搭电测试/train/labels/璁㈠崟1765377_54_6722764.txt new file mode 100644 index 0000000..518f9a4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765377_54_6722764.txt @@ -0,0 +1 @@ +0 0.606237 0.309678 0.739779 0.244150 0.759753 0.271299 0.860846 0.258193 0.870833 0.274111 0.773477 0.312490 0.580026 0.407969 0.536341 0.336826 0.480182 0.335889 0.420273 0.349932 0.391563 0.345254 0.420273 0.324658 0.545078 0.312490 0.604987 0.308740 0.715690 0.581230 0.728672 0.626729 0.701211 0.626729 0.733034 0.740459 0.670885 0.857461 0.558307 0.921309 0.360482 0.940869 0.263763 0.918125 0.229062 0.835752 0.263763 0.841182 0.301198 0.895381 0.392187 0.910537 0.538086 0.895381 0.627578 0.858496 0.670885 0.753467 0.680990 0.702549 0.656536 0.611563 0.712760 0.569336 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765378_54_6722780.txt b/datasets/搭电测试/train/labels/璁㈠崟1765378_54_6722780.txt new file mode 100644 index 0000000..e6bd71e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765378_54_6722780.txt @@ -0,0 +1 @@ +0 0.226172 0.498987 0.250722 0.375517 0.174183 0.357104 0.129417 0.481658 0.168406 0.522813 0.229061 0.640867 0.281044 0.650617 0.309928 0.628954 0.312817 0.609458 0.257939 0.628954 0.216061 0.557471 0.200178 0.508733 0.226172 0.496821 0.312817 0.472992 0.361917 0.447000 0.473111 0.431838 0.575639 0.436171 0.621850 0.431838 0.533761 0.356021 0.552533 0.328946 0.605961 0.330029 0.696939 0.421004 0.676722 0.442667 0.662283 0.437254 0.579972 0.449167 0.477439 0.447000 0.372022 0.461079 0.309928 0.472992 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765382_54_6722992.txt b/datasets/搭电测试/train/labels/璁㈠崟1765382_54_6722992.txt new file mode 100644 index 0000000..9317eab --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765382_54_6722992.txt @@ -0,0 +1 @@ +0 0.205107 0.708438 0.327285 0.663327 0.326348 0.647038 0.362061 0.633249 0.418452 0.725983 0.414692 0.746035 0.371460 0.700918 0.362061 0.712201 0.409053 0.866335 0.427852 0.907689 0.433491 0.850046 0.420332 0.738516 0.414692 0.693398 0.395898 0.550547 0.418452 0.510443 0.542515 0.494154 0.656235 0.504180 0.762437 0.502923 0.887437 0.510443 0.999282 0.507936 1.000000 0.525215 1.000000 0.552949 0.824468 0.538014 0.615820 0.531745 0.457925 0.531745 0.428789 0.550547 0.448530 0.728490 0.466387 0.863828 0.458867 0.934004 0.416572 0.954049 0.369580 0.841270 0.371460 0.999167 0.345146 0.996660 0.334805 0.772350 0.316011 0.699668 0.306611 0.749792 0.192891 0.763574 0.206045 0.707187 0.816948 0.741022 0.913755 0.791146 0.927852 0.836257 0.893076 0.920215 0.841387 0.995404 0.891196 0.996660 0.946650 0.921471 0.971084 0.823724 0.942891 0.737259 0.820708 0.673353 0.816948 0.741022 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765385_54_6722927.txt b/datasets/搭电测试/train/labels/璁㈠崟1765385_54_6722927.txt new file mode 100644 index 0000000..5d165e6 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765385_54_6722927.txt @@ -0,0 +1 @@ +0 0.237911 0.508756 0.269809 0.623299 0.314757 0.626198 0.327807 0.518903 0.307509 0.484106 0.326357 0.487005 0.387251 0.510205 0.529343 0.531953 0.622138 0.534852 0.648238 0.501505 0.656936 0.440611 0.685935 0.427561 0.704783 0.388411 0.706233 0.371013 0.770029 0.527604 0.735231 0.517454 0.552543 0.559502 0.500492 0.612645 0.550434 0.611198 0.576331 0.580440 0.677237 0.545003 0.738131 0.539204 0.772928 0.553704 0.783079 0.640697 0.791780 0.718993 0.777280 0.737841 0.741030 0.729144 0.685935 0.689994 0.627937 0.645046 0.578640 0.618950 0.519196 0.611698 0.470313 0.669531 0.499277 0.691175 0.549644 0.636348 0.587341 0.645046 0.636638 0.679844 0.684485 0.720443 0.751181 0.755240 0.784528 0.759589 0.807729 0.729144 0.809178 0.649398 0.796128 0.574002 0.852674 0.605900 0.935321 0.610249 0.983168 0.565301 0.993316 0.516004 0.984618 0.430460 0.959968 0.388411 0.900521 0.344916 0.865723 0.318817 0.793229 0.272419 0.749731 0.217323 0.732332 0.197023 0.707682 0.185425 0.725081 0.156427 0.677237 0.124528 0.651137 0.127428 0.651137 0.163675 0.662737 0.194123 0.677237 0.260819 0.685935 0.349265 0.671435 0.414511 0.659835 0.420310 0.642436 0.311568 0.613440 0.231823 0.625038 0.202824 0.651137 0.185425 0.642436 0.170926 0.596039 0.202824 0.598941 0.259369 0.619239 0.315917 0.635188 0.388411 0.638087 0.430460 0.555443 0.429010 0.471348 0.405810 0.369852 0.391314 0.327807 0.405810 0.297358 0.434809 0.294459 0.463808 0.310408 0.465258 0.329256 0.430460 0.348105 0.417410 0.387251 0.414511 0.424951 0.414511 0.475697 0.429010 0.526444 0.443510 0.562691 0.452208 0.604740 0.453657 0.636638 0.446409 0.630839 0.482656 0.613440 0.513105 0.571392 0.517454 0.468449 0.502954 0.410451 0.497156 0.364054 0.481207 0.335055 0.468157 0.265460 0.472509 0.235012 0.507306 0.269809 0.505856 0.282859 0.591400 0.291560 0.591400 0.301707 0.518903 0.294459 0.498605 0.291560 0.484106 0.256759 0.501505 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765389_54_6722912.txt b/datasets/搭电测试/train/labels/璁㈠崟1765389_54_6722912.txt new file mode 100644 index 0000000..39b6211 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765389_54_6722912.txt @@ -0,0 +1 @@ +0 0.340117 0.469529 0.365250 0.460829 0.415511 0.486929 0.556639 0.618871 0.701628 0.710217 0.795278 0.693500 0.813756 0.591321 0.802156 0.478229 0.755761 0.407183 0.664500 0.379125 0.601167 0.405583 0.624833 0.445542 0.719333 0.431292 0.743967 0.424292 0.782822 0.488233 0.795778 0.563338 0.791328 0.620900 0.782822 0.660483 0.748217 0.686438 0.702983 0.690350 0.523772 0.562612 0.437550 0.475183 0.401978 0.450100 0.469833 0.436325 0.481822 0.419363 0.453789 0.410517 0.430011 0.417042 0.488200 0.371663 0.500189 0.328017 0.535761 0.284229 0.511978 0.282638 0.488200 0.313375 0.476411 0.347446 0.465583 0.371663 0.355583 0.425017 0.327550 0.450971 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765390_54_6722883.txt b/datasets/搭电测试/train/labels/璁㈠崟1765390_54_6722883.txt new file mode 100644 index 0000000..e0d5356 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765390_54_6722883.txt @@ -0,0 +1 @@ +0 0.483503 0.292843 0.431294 0.377451 0.476039 0.396324 0.577660 0.344588 0.581386 0.330598 0.632667 0.320814 0.683007 0.318716 0.705386 0.340392 0.711908 0.378147 0.725895 0.373951 0.721242 0.329902 0.690471 0.306824 0.617752 0.303333 0.552484 0.321510 0.502144 0.348784 0.487229 0.343186 0.507739 0.290049 0.483503 0.292843 0.350183 0.566941 0.378144 0.615186 0.366026 0.642451 0.403320 0.663431 0.459255 0.669029 0.528248 0.643853 0.602837 0.570431 0.634536 0.559245 0.648523 0.566941 0.610288 0.586520 0.566471 0.640353 0.498418 0.678814 0.436889 0.692804 0.356706 0.657833 0.336196 0.701186 0.291451 0.694196 0.297046 0.600500 0.321281 0.561343 0.351111 0.566941 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765396_54_6722932.txt b/datasets/搭电测试/train/labels/璁㈠崟1765396_54_6722932.txt new file mode 100644 index 0000000..1a4c322 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765396_54_6722932.txt @@ -0,0 +1 @@ +0 0.188203 0.471230 0.157995 0.488223 0.137500 0.526240 0.220560 0.586113 0.278802 0.540811 0.233503 0.510059 0.341367 0.524629 0.434141 0.554561 0.540937 0.631416 0.577604 0.709082 0.562500 0.768955 0.533385 0.752773 0.517201 0.769756 0.572214 0.788369 0.603503 0.756006 0.594870 0.658115 0.517201 0.568311 0.429831 0.523818 0.220560 0.483369 0.188203 0.471230 0.483763 0.374951 0.581927 0.341787 0.612122 0.343408 0.694102 0.338545 0.748047 0.358779 0.783633 0.401650 0.805208 0.483369 0.771771 0.582070 0.757747 0.631416 0.713529 0.637891 0.702734 0.616045 0.735104 0.613623 0.741576 0.576406 0.762070 0.517344 0.770690 0.436445 0.731862 0.377383 0.647721 0.356348 0.643411 0.374150 0.550638 0.395986 0.486992 0.400039 0.484844 0.374951 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765400_54_6722982.txt b/datasets/搭电测试/train/labels/璁㈠崟1765400_54_6722982.txt new file mode 100644 index 0000000..ce0368a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765400_54_6722982.txt @@ -0,0 +1 @@ +0 0.324115 0.475273 0.350000 0.582070 0.425508 0.588535 0.430898 0.452627 0.482682 0.404082 0.523672 0.370098 0.557109 0.395986 0.575456 0.408125 0.530143 0.433203 0.550638 0.447764 0.585156 0.425928 0.590547 0.381426 0.580846 0.363633 0.599180 0.340977 0.558190 0.334502 0.525833 0.324795 0.508568 0.328838 0.466497 0.308613 0.408255 0.307002 0.346771 0.323984 0.332747 0.341787 0.373737 0.408936 0.440612 0.409746 0.397461 0.332891 0.379128 0.338545 0.398542 0.376572 0.384518 0.376572 0.357552 0.336123 0.401784 0.320752 0.444922 0.320752 0.490234 0.329648 0.509648 0.360391 0.457878 0.397607 0.400703 0.451006 0.397461 0.527051 0.379128 0.525430 0.358633 0.470420 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765401_54_6723041.txt b/datasets/搭电测试/train/labels/璁㈠崟1765401_54_6723041.txt new file mode 100644 index 0000000..b060e3e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765401_54_6723041.txt @@ -0,0 +1 @@ +0 0.587315 0.480937 0.515046 0.561840 0.516123 0.595017 0.595949 0.588542 0.743727 0.541615 0.738333 0.512491 0.718924 0.512491 0.616447 0.541615 0.598102 0.537569 0.643414 0.475278 0.699502 0.455052 0.767465 0.463950 0.779329 0.523012 0.817083 0.528672 0.841898 0.504401 0.795509 0.444531 0.709213 0.429974 0.628310 0.454245 0.586238 0.480937 0.497789 0.331267 0.578692 0.219627 0.554954 0.213151 0.530150 0.240660 0.548484 0.177552 0.589479 0.152474 0.626157 0.161380 0.647731 0.206684 0.657431 0.279497 0.677928 0.274635 0.663912 0.178368 0.627234 0.135486 0.561435 0.141962 0.518287 0.184028 0.498866 0.196163 0.460035 0.318325 0.498866 0.331267 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765402_54_6722967.txt b/datasets/搭电测试/train/labels/璁㈠崟1765402_54_6722967.txt new file mode 100644 index 0000000..3fe3528 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765402_54_6722967.txt @@ -0,0 +1 @@ +0 0.408255 0.302949 0.435221 0.352305 0.422279 0.365244 0.332747 0.350684 0.351081 0.270596 0.373737 0.274639 0.375885 0.285967 0.496706 0.294863 0.539857 0.315088 0.605651 0.476084 0.636940 0.443721 0.710286 0.444531 0.736172 0.457480 0.727552 0.407314 0.655273 0.402461 0.658516 0.368486 0.720000 0.370908 0.772852 0.381426 0.762070 0.404082 0.746966 0.408936 0.759909 0.469609 0.785794 0.512490 0.785794 0.540000 0.768542 0.548086 0.737253 0.472041 0.643411 0.459092 0.627227 0.470420 0.631536 0.546465 0.611042 0.548896 0.574375 0.472852 0.556029 0.415410 0.532305 0.344209 0.505339 0.313467 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765403_54_6723005.txt b/datasets/搭电测试/train/labels/璁㈠崟1765403_54_6723005.txt new file mode 100644 index 0000000..45a67d5 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765403_54_6723005.txt @@ -0,0 +1,2 @@ +2 0.394000 0.403600 0.533840 0.492480 0.590000 0.447550 0.457707 0.362370 +0 0.425507 0.574780 0.282040 0.653260 0.312240 0.689670 0.455707 0.645980 0.581920 0.588540 0.663907 0.590960 0.841893 0.650020 0.958387 0.649210 1.000000 0.630010 1.000000 0.555390 0.909840 0.516530 0.795507 0.514110 0.676853 0.558600 0.682240 0.575590 0.772853 0.545660 0.846200 0.535950 0.946520 0.554560 0.997227 0.590960 0.985360 0.615240 0.927107 0.631420 0.830027 0.620900 0.699493 0.578020 0.604573 0.563460 0.492387 0.592580 0.387760 0.634650 0.454640 0.582870 0.424427 0.574780 0.577600 0.369290 0.557107 0.360390 0.564667 0.316710 0.577600 0.290010 0.621827 0.293240 0.650960 0.343400 0.699493 0.391940 0.760987 0.423500 0.860227 0.438060 0.951920 0.453430 0.998293 0.476890 0.999373 0.500350 0.941133 0.472850 0.780400 0.447770 0.700573 0.430780 0.645560 0.375760 0.619680 0.316710 0.599187 0.307000 0.577600 0.369290 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765407_54_6723159.txt b/datasets/搭电测试/train/labels/璁㈠崟1765407_54_6723159.txt new file mode 100644 index 0000000..8d1da80 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765407_54_6723159.txt @@ -0,0 +1 @@ +0 0.204375 0.343403 0.117002 0.445347 0.193600 0.485799 0.298229 0.382240 0.293912 0.372535 0.329514 0.362821 0.369421 0.374149 0.273414 0.509253 0.280972 0.530295 0.332743 0.527865 0.463264 0.461528 0.484838 0.501163 0.446007 0.556181 0.453565 0.590972 0.490231 0.600677 0.532303 0.552135 0.515046 0.497118 0.587315 0.421884 0.676852 0.380625 0.707060 0.390330 0.739421 0.372535 0.683322 0.362014 0.642338 0.355538 0.551725 0.368490 0.482685 0.423498 0.423356 0.364444 0.396389 0.356354 0.379132 0.302951 0.388843 0.286771 0.368345 0.264931 0.251840 0.322370 0.229190 0.350686 0.256157 0.364444 0.243218 0.392760 0.204387 0.424306 0.189282 0.417839 0.230266 0.356354 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765408_54_6723073.txt b/datasets/搭电测试/train/labels/璁㈠崟1765408_54_6723073.txt new file mode 100644 index 0000000..dfa38df --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765408_54_6723073.txt @@ -0,0 +1,2 @@ +2 0.526732 0.546750 0.594911 0.823845 0.819369 0.818225 0.752860 0.530855 +0 0.237007 0.378975 0.267185 0.471205 0.316039 0.495475 0.428126 0.406480 0.534467 0.365220 0.652300 0.518935 0.727016 0.505180 0.751448 0.393535 0.781625 0.434795 0.790249 0.501945 0.804618 0.504375 0.808925 0.435605 0.764378 0.378975 0.735639 0.370885 0.716963 0.396770 0.699716 0.400815 0.683908 0.456640 0.660915 0.455020 0.612060 0.402435 0.593384 0.405670 0.556021 0.356320 0.646545 0.293215 0.635053 0.332860 0.662353 0.332050 0.685346 0.252765 0.668099 0.247105 0.560329 0.337715 0.547398 0.245485 0.468366 0.214740 0.418064 0.222025 0.384991 0.323150 0.409414 0.319100 0.428126 0.248720 0.476980 0.233350 0.527282 0.266520 0.531590 0.346615 0.428126 0.383020 0.328970 0.336905 0.252815 0.353895 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765411_54_6723130.txt b/datasets/搭电测试/train/labels/璁㈠崟1765411_54_6723130.txt new file mode 100644 index 0000000..26dc02d --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765411_54_6723130.txt @@ -0,0 +1 @@ +0 0.803053 0.342590 0.807373 0.467990 0.745880 0.476890 0.679000 0.354730 0.679000 0.315900 0.627227 0.293240 0.560347 0.293240 0.521520 0.321560 0.467573 0.387090 0.414720 0.437250 0.410413 0.526240 0.372653 0.524620 0.388840 0.450190 0.351080 0.467990 0.327347 0.497120 0.323027 0.520580 0.284200 0.521390 0.293907 0.480940 0.338133 0.440490 0.392067 0.403270 0.367253 0.334500 0.318720 0.294050 0.272333 0.285150 0.232427 0.318320 0.280960 0.375760 0.296067 0.374150 0.298227 0.325600 0.333827 0.330460 0.320880 0.404080 0.276653 0.411360 0.210853 0.345830 0.204373 0.319130 0.223787 0.277060 0.292827 0.265740 0.347840 0.283540 0.392067 0.332080 0.410413 0.387090 0.461107 0.353920 0.512880 0.286770 0.553880 0.270590 0.639093 0.273830 0.718920 0.303760 0.707053 0.345020 0.753440 0.408930 0.763147 0.400030 0.762067 0.345020 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765419_54_6723198.txt b/datasets/搭电测试/train/labels/璁㈠崟1765419_54_6723198.txt new file mode 100644 index 0000000..0bba81c --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765419_54_6723198.txt @@ -0,0 +1 @@ +0 0.312253 0.296484 0.264779 0.387090 0.264779 0.430781 0.299297 0.430781 0.327344 0.370908 0.345690 0.464756 0.338138 0.490645 0.371576 0.490645 0.344609 0.296484 0.312253 0.295674 0.530143 0.332080 0.529062 0.429160 0.599180 0.432393 0.612122 0.391943 0.653112 0.430781 0.709206 0.480127 0.780404 0.499541 0.851602 0.512490 0.837578 0.545664 0.795508 0.565889 0.709206 0.599053 0.713529 0.613623 0.808451 0.578018 0.856992 0.550518 0.875326 0.517344 0.860221 0.492266 0.780404 0.480938 0.717839 0.461523 0.621836 0.375762 0.633698 0.341787 0.613203 0.332080 0.597018 0.359580 0.564661 0.340977 0.562500 0.317520 0.532305 0.315088 0.530143 0.332080 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765423_54_6723156.txt b/datasets/搭电测试/train/labels/璁㈠崟1765423_54_6723156.txt new file mode 100644 index 0000000..fee14f7 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765423_54_6723156.txt @@ -0,0 +1 @@ +0 0.427667 0.394370 0.366187 0.464760 0.398547 0.493880 0.487000 0.421070 0.482680 0.382240 0.506413 0.341780 0.538773 0.328030 0.592707 0.324800 0.591627 0.312660 0.520440 0.319130 0.477293 0.349880 0.463267 0.382240 0.467573 0.407320 0.431987 0.434010 0.449240 0.403270 0.427667 0.393560 0.512880 0.508440 0.448160 0.595820 0.469733 0.623330 0.516120 0.603910 0.584080 0.526240 0.626147 0.538380 0.662827 0.568310 0.696267 0.618470 0.732933 0.657300 0.768533 0.662160 0.793347 0.633030 0.804133 0.589350 0.795507 0.544040 0.765307 0.527860 0.754507 0.534330 0.778240 0.550510 0.786880 0.576400 0.783640 0.612000 0.765307 0.640320 0.752360 0.649210 0.727547 0.634650 0.691947 0.576400 0.650960 0.537570 0.577600 0.506020 0.551720 0.511680 0.512880 0.508440 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765424_54_6723208.txt b/datasets/搭电测试/train/labels/璁㈠崟1765424_54_6723208.txt new file mode 100644 index 0000000..fa4d975 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765424_54_6723208.txt @@ -0,0 +1 @@ +0 0.309429 0.262428 0.355063 0.366335 0.371914 0.405645 0.381743 0.503932 0.388765 0.643411 0.404209 0.707064 0.430884 0.735143 0.432993 0.708932 0.416846 0.693958 0.402803 0.609707 0.398589 0.493639 0.381743 0.356973 0.371211 0.299870 0.423867 0.323275 0.440713 0.312038 0.437905 0.285833 0.345234 0.218431 0.308730 0.261491 0.572700 0.346673 0.628862 0.327956 0.629565 0.265234 0.686431 0.261491 0.731362 0.268984 0.769272 0.302682 0.785420 0.345742 0.790337 0.400033 0.779805 0.454323 0.748916 0.519850 0.706089 0.582565 0.712407 0.607839 0.758042 0.557292 0.800864 0.460872 0.807183 0.353229 0.785420 0.283958 0.727148 0.239030 0.656245 0.218431 0.607100 0.224049 0.571997 0.268984 0.572700 0.345742 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765425_54_6723252.txt b/datasets/搭电测试/train/labels/璁㈠崟1765425_54_6723252.txt new file mode 100644 index 0000000..563e39e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765425_54_6723252.txt @@ -0,0 +1 @@ +0 0.450542 0.442155 0.444224 0.489896 0.503896 0.495508 0.533384 0.557292 0.560063 0.590052 0.621841 0.622812 0.665371 0.611582 0.728555 0.587246 0.751021 0.536699 0.751021 0.492702 0.771382 0.584434 0.797354 0.583503 0.775591 0.453385 0.748213 0.465553 0.720132 0.412201 0.673794 0.398158 0.647119 0.405645 0.630269 0.411263 0.602886 0.532956 0.626758 0.546055 0.656943 0.418750 0.687134 0.415007 0.715918 0.435599 0.736978 0.488958 0.716621 0.529206 0.692749 0.566654 0.671689 0.589115 0.621841 0.574141 0.558657 0.557292 0.522153 0.453385 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765427_54_6723236.txt b/datasets/搭电测试/train/labels/璁㈠崟1765427_54_6723236.txt new file mode 100644 index 0000000..b9962dc --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765427_54_6723236.txt @@ -0,0 +1 @@ +0 0.600480 0.308270 0.730280 0.324180 0.739027 0.385020 0.590493 0.388770 0.566787 0.381280 0.473173 0.421530 0.334640 0.394380 0.233547 0.371920 0.226053 0.339160 0.307187 0.313880 0.314667 0.328860 0.259760 0.350390 0.288453 0.367240 0.372080 0.379410 0.459453 0.398130 0.506880 0.380340 0.531840 0.353200 0.560547 0.367240 0.589253 0.343840 0.599240 0.307330 0.694093 0.579730 0.818893 0.622790 0.803920 0.654610 0.694093 0.635890 0.621693 0.647120 0.534333 0.611550 0.474427 0.589090 0.259760 0.568490 0.257253 0.539480 0.349613 0.473010 0.389560 0.485180 0.382067 0.501100 0.289707 0.549770 0.390800 0.560070 0.498133 0.564750 0.579267 0.602190 0.640427 0.620910 0.671627 0.614360 0.692840 0.578790 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765430_54_6723319.txt b/datasets/搭电测试/train/labels/璁㈠崟1765430_54_6723319.txt new file mode 100644 index 0000000..44b16ac --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765430_54_6723319.txt @@ -0,0 +1 @@ +0 0.322769 0.476790 0.353662 0.622812 0.380337 0.615326 0.382446 0.564779 0.356470 0.468366 0.437905 0.562904 0.523555 0.681790 0.565679 0.742630 0.599380 0.744505 0.593760 0.723913 0.553745 0.697702 0.477925 0.580690 0.343130 0.435599 0.322769 0.447773 0.322769 0.475853 0.614121 0.425306 0.596567 0.553548 0.635181 0.574141 0.692046 0.470234 0.690645 0.451517 0.683623 0.450579 0.641499 0.500189 0.624653 0.491764 0.625352 0.456198 0.654136 0.450579 0.696260 0.444961 0.760850 0.454323 0.822632 0.459004 0.870371 0.466491 0.917407 0.494577 0.941978 0.521719 0.944082 0.499251 0.887217 0.456198 0.821226 0.437474 0.751021 0.434668 0.667476 0.434668 0.626055 0.441217 0.614824 0.425306 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765436_54_6723320.txt b/datasets/搭电测试/train/labels/璁㈠崟1765436_54_6723320.txt new file mode 100644 index 0000000..b1656da --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765436_54_6723320.txt @@ -0,0 +1 @@ +0 0.777734 0.419629 0.798945 0.521699 0.765234 0.536680 0.726549 0.527314 0.652917 0.431836 0.659154 0.420605 0.586758 0.371924 0.463203 0.351338 0.561797 0.410303 0.602995 0.459922 0.573034 0.464600 0.513125 0.406562 0.418268 0.353203 0.380833 0.370059 0.359609 0.399072 0.369596 0.460850 0.352122 0.504854 0.317174 0.508594 0.337148 0.443066 0.329661 0.391582 0.359609 0.356953 0.389570 0.342910 0.317174 0.274580 0.283477 0.233389 0.241042 0.230586 0.232305 0.250234 0.332148 0.371924 0.299701 0.385967 0.227318 0.333545 0.199857 0.272705 0.207344 0.228711 0.238542 0.207178 0.285977 0.209990 0.335898 0.242754 0.372096 0.294238 0.424518 0.336357 0.478177 0.332617 0.581771 0.351338 0.686615 0.409365 0.736536 0.469277 0.749010 0.421543 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765438_54_6723400.txt b/datasets/搭电测试/train/labels/璁㈠崟1765438_54_6723400.txt new file mode 100644 index 0000000..f0b4990 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765438_54_6723400.txt @@ -0,0 +1 @@ +0 0.866943 0.675199 0.714671 0.692050 0.702191 0.660225 0.795802 0.638694 0.809527 0.622777 0.770842 0.604057 0.574890 0.600311 0.378939 0.632137 0.380185 0.602189 0.492514 0.582526 0.609839 0.582526 0.777082 0.581592 0.845721 0.613417 0.824510 0.641505 0.865698 0.635882 0.865698 0.674265 0.675986 0.434628 0.687220 0.346644 0.675986 0.307327 0.619815 0.240865 0.528708 0.218400 0.426367 0.227760 0.360219 0.273625 0.336505 0.336341 0.382687 0.401869 0.473795 0.411228 0.465052 0.393443 0.381430 0.360683 0.372699 0.300770 0.420127 0.252093 0.503749 0.237119 0.574890 0.250225 0.613576 0.265199 0.648524 0.306393 0.634798 0.311073 0.619815 0.382215 0.651027 0.437439 0.674740 0.433694 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765440_54_6723390.txt b/datasets/搭电测试/train/labels/璁㈠崟1765440_54_6723390.txt new file mode 100644 index 0000000..74788fc --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765440_54_6723390.txt @@ -0,0 +1 @@ +0 0.402040 0.389700 0.440733 0.480500 0.420760 0.490800 0.360853 0.469270 0.300947 0.371920 0.262253 0.364430 0.163653 0.381280 0.113733 0.387830 0.058813 0.422470 0.055067 0.486120 0.071293 0.547900 0.119973 0.608740 0.171133 0.641510 0.202347 0.651800 0.194853 0.660230 0.144933 0.653680 0.076280 0.593770 0.028853 0.504840 0.036347 0.424340 0.083773 0.373790 0.152413 0.363490 0.207333 0.360690 0.279720 0.349450 0.343373 0.361620 0.370840 0.407490 0.400787 0.389700 0.825133 0.379410 0.671627 0.467400 0.672867 0.504840 0.702827 0.519820 0.847600 0.444000 0.903773 0.424340 0.962427 0.439320 0.997373 0.464590 0.994880 0.551640 0.954933 0.590020 0.847600 0.663970 0.761480 0.692990 0.660387 0.699540 0.600480 0.688310 0.597987 0.707030 0.692840 0.720140 0.772720 0.714520 0.856347 0.683630 0.942453 0.632150 1.000000 0.576140 1.000000 0.435640 0.939960 0.405620 0.817653 0.424340 0.852600 0.396260 0.825133 0.379410 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765441_54_6723415.txt b/datasets/搭电测试/train/labels/璁㈠崟1765441_54_6723415.txt new file mode 100644 index 0000000..564a181 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765441_54_6723415.txt @@ -0,0 +1 @@ +0 0.246367 0.525000 0.065911 0.624004 0.092656 0.664102 0.149453 0.659092 0.176198 0.681641 0.368346 0.662842 0.344948 0.621494 0.212956 0.627764 0.263073 0.583896 0.378359 0.617734 0.527070 0.739287 0.664076 0.837031 0.831159 0.910967 0.996576 0.951064 0.999922 0.923496 0.819466 0.880889 0.603932 0.756836 0.416797 0.608965 0.273099 0.555078 0.246367 0.523750 0.468594 0.526260 0.411784 0.476133 0.400091 0.405957 0.458568 0.335781 0.530417 0.314473 0.615625 0.293174 0.650716 0.324502 0.490312 0.412217 0.465247 0.383398 0.436849 0.399687 0.430156 0.448564 0.478620 0.516230 0.468594 0.523750 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765442_54_6723416.txt b/datasets/搭电测试/train/labels/璁㈠崟1765442_54_6723416.txt new file mode 100644 index 0000000..90a45f1 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765442_54_6723416.txt @@ -0,0 +1 @@ +0 0.697500 0.313223 0.700833 0.392168 0.764336 0.398438 0.791068 0.300693 0.729245 0.293174 0.632331 0.304453 0.578867 0.349561 0.590560 0.433525 0.597240 0.468613 0.448542 0.566357 0.446875 0.437285 0.431836 0.285654 0.476940 0.313223 0.533750 0.314473 0.543776 0.293174 0.455221 0.248057 0.398411 0.245557 0.398411 0.275625 0.413451 0.285654 0.420130 0.577637 0.430156 0.591416 0.491979 0.561348 0.592240 0.508711 0.622305 0.473623 0.602253 0.383398 0.607266 0.343301 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765447_54_6723486.txt b/datasets/搭电测试/train/labels/璁㈠崟1765447_54_6723486.txt new file mode 100644 index 0000000..a676360 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765447_54_6723486.txt @@ -0,0 +1 @@ +0 0.144453 0.502441 0.283125 0.545049 0.356641 0.532520 0.278112 0.466104 0.326576 0.408457 0.410117 0.458584 0.533750 0.482393 0.592240 0.577637 0.694154 0.547559 0.657396 0.454824 0.612279 0.454824 0.443529 0.429766 0.366667 0.383398 0.543776 0.294424 0.740937 0.219238 0.921393 0.134023 0.918047 0.085156 0.747617 0.171621 0.463581 0.279385 0.344948 0.348311 0.346615 0.271865 0.423477 0.179141 0.547122 0.137783 0.749297 0.125254 0.752630 0.086406 0.562161 0.083896 0.403424 0.127764 0.294818 0.236777 0.283125 0.321992 0.303177 0.373369 0.219635 0.454824 0.154466 0.467354 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765450_54_6723461.txt b/datasets/搭电测试/train/labels/璁㈠崟1765450_54_6723461.txt new file mode 100644 index 0000000..61b361e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765450_54_6723461.txt @@ -0,0 +1 @@ +0 0.290923 0.494935 0.304712 0.605209 0.381152 0.635288 0.392428 0.605209 0.377389 0.506211 0.357343 0.514987 0.346060 0.547565 0.334784 0.498691 0.376139 0.468619 0.460098 0.446060 0.487664 0.439797 0.502703 0.540046 0.547814 0.645308 0.557840 0.650321 0.511473 0.513730 0.505209 0.424758 0.442552 0.427264 0.324758 0.476139 0.290923 0.494935 0.284660 0.315740 0.310975 0.419745 0.343554 0.422251 0.346060 0.343305 0.331027 0.256839 0.373632 0.223004 0.430020 0.205458 0.487664 0.229267 0.512729 0.274385 0.512729 0.343305 0.524005 0.335785 0.526512 0.260596 0.492677 0.204208 0.430020 0.186662 0.354836 0.211728 0.304712 0.254332 0.284660 0.314483 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765451_54_6723455.txt b/datasets/搭电测试/train/labels/璁㈠崟1765451_54_6723455.txt new file mode 100644 index 0000000..19096ef --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765451_54_6723455.txt @@ -0,0 +1 @@ +0 0.344944 0.324500 0.321556 0.353321 0.341606 0.370863 0.440183 0.338283 0.391728 0.419737 0.396739 0.454825 0.416789 0.447304 0.468589 0.318233 0.343272 0.323246 0.570511 0.377129 0.674100 0.370863 0.702506 0.399687 0.568839 0.419737 0.538761 0.444800 0.515372 0.442292 0.568839 0.375875 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765452_54_6723505.txt b/datasets/搭电测试/train/labels/璁㈠崟1765452_54_6723505.txt new file mode 100644 index 0000000..6ee82df --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765452_54_6723505.txt @@ -0,0 +1 @@ +0 0.453555 0.390918 0.286471 0.412217 0.296497 0.453574 0.271432 0.516230 0.286471 0.593926 0.319883 0.660342 0.393398 0.697930 0.486966 0.692920 0.490312 0.677881 0.411784 0.679141 0.343281 0.647813 0.304844 0.587656 0.293151 0.504951 0.311536 0.467354 0.483633 0.439785 0.453555 0.389668 0.408438 0.278135 0.480286 0.309463 0.517044 0.299434 0.567174 0.303193 0.649036 0.321992 0.727565 0.368359 0.737591 0.357080 0.665755 0.311973 0.518711 0.279385 0.463581 0.246807 0.406771 0.278135 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765453_54_6723527.txt b/datasets/搭电测试/train/labels/璁㈠崟1765453_54_6723527.txt new file mode 100644 index 0000000..b03d649 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765453_54_6723527.txt @@ -0,0 +1 @@ +0 0.289805 0.528760 0.436849 0.492422 0.503685 0.509961 0.530417 0.527510 0.527070 0.504951 0.575521 0.394678 0.583880 0.423496 0.659062 0.408457 0.655729 0.296934 0.632331 0.300693 0.620638 0.352070 0.603932 0.357080 0.590560 0.309463 0.570508 0.319492 0.563828 0.369609 0.537096 0.424756 0.510365 0.497432 0.445195 0.469863 0.433503 0.451064 0.319883 0.458584 0.273099 0.502441 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765457_54_6723668.txt b/datasets/搭电测试/train/labels/璁㈠崟1765457_54_6723668.txt new file mode 100644 index 0000000..1298156 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765457_54_6723668.txt @@ -0,0 +1 @@ +0 0.159110 0.447245 0.231060 0.595118 0.346492 0.576324 0.289607 0.413412 0.383298 0.354520 0.383298 0.338225 0.326414 0.343235 0.217670 0.444745 0.185877 0.432216 0.159110 0.446000 0.528848 0.375824 0.553953 0.509902 0.645969 0.503637 0.696152 0.364539 0.667709 0.349510 0.684450 0.249255 0.778141 0.133971 0.756387 0.118931 0.640942 0.190353 0.650982 0.205392 0.706191 0.175324 0.649306 0.259284 0.629241 0.359529 0.637605 0.394618 0.610838 0.434716 0.592435 0.434716 0.567330 0.367049 0.527186 0.374569 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765458_54_6723588.txt b/datasets/搭电测试/train/labels/璁㈠崟1765458_54_6723588.txt new file mode 100644 index 0000000..0cd6565 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765458_54_6723588.txt @@ -0,0 +1 @@ +0 0.219635 0.511221 0.166172 0.565098 0.229661 0.596426 0.289805 0.519990 0.356641 0.487412 0.406771 0.593926 0.460234 0.627764 0.532083 0.651572 0.542109 0.630264 0.475273 0.612725 0.420130 0.558838 0.385052 0.474873 0.339935 0.467354 0.249714 0.517480 0.219635 0.511221 0.349961 0.338281 0.376693 0.347061 0.433503 0.278135 0.466914 0.261846 0.520391 0.280645 0.567174 0.325752 0.568841 0.471113 0.587227 0.464854 0.597240 0.324502 0.532083 0.261846 0.441862 0.246807 0.386719 0.266855 0.349961 0.338281 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765459_54_6723594.txt b/datasets/搭电测试/train/labels/璁㈠崟1765459_54_6723594.txt new file mode 100644 index 0000000..193cfa3 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765459_54_6723594.txt @@ -0,0 +1,2 @@ +0 0.158933 0.486700 0.227160 0.373490 0.282160 0.356010 0.352080 0.358810 0.419213 0.383280 0.463027 0.429430 0.477947 0.450410 0.536680 0.504940 0.592613 0.539210 0.685840 0.555290 0.769747 0.531520 0.818227 0.483970 0.747373 0.441320 0.697040 0.391670 0.656533 0.401300 0.521200 0.473600 0.490800 0.446000 0.594480 0.357410 0.642960 0.355310 0.680253 0.362300 0.711947 0.381880 0.754840 0.385380 0.800520 0.401460 0.825693 0.430830 0.834080 0.462990 0.831280 0.475580 0.871373 0.477680 0.917053 0.472080 0.955280 0.451800 0.968333 0.424530 0.958080 0.396560 0.926373 0.374890 0.887227 0.355310 0.872307 0.313360 0.851800 0.283290 0.806107 0.261610 0.754840 0.253220 0.701693 0.258120 0.649480 0.288190 0.632707 0.279790 0.699827 0.243430 0.782800 0.240640 0.838747 0.253920 0.879760 0.283290 0.899347 0.342720 0.947827 0.369300 0.982320 0.401460 0.984187 0.433620 0.970200 0.457400 0.931040 0.483970 0.865773 0.492360 0.829427 0.487460 0.814507 0.521730 0.762293 0.557390 0.697040 0.567880 0.622453 0.565080 0.575840 0.546900 0.534813 0.521030 0.460227 0.456700 0.423867 0.413350 0.389373 0.390270 0.343693 0.376290 0.311867 0.369800 0.298133 0.388900 0.214133 0.503500 +2 0.523627 0.368600 0.544133 0.327340 0.711947 0.342720 0.699827 0.387480 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765460_54_6723587.txt b/datasets/搭电测试/train/labels/璁㈠崟1765460_54_6723587.txt new file mode 100644 index 0000000..a9b5af4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765460_54_6723587.txt @@ -0,0 +1 @@ +0 0.427760 0.244619 0.389063 0.244619 0.372839 0.260537 0.377839 0.287686 0.389063 0.323252 0.389844 0.446191 0.358984 0.445020 0.255859 0.543750 0.280859 0.590430 0.318750 0.604102 0.417708 0.496582 0.429427 0.387793 0.392813 0.286748 0.395313 0.261475 0.430247 0.254922 0.427760 0.242754 0.751016 0.374736 0.769740 0.403750 0.787214 0.424346 0.785964 0.448682 0.772227 0.477705 0.768490 0.500166 0.754753 0.527314 0.769792 0.600781 0.656250 0.627051 0.624089 0.583496 0.675521 0.535449 0.722135 0.561914 0.772227 0.442129 0.759753 0.409365 0.743529 0.384092 0.749766 0.373799 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765461_54_6723620.txt b/datasets/搭电测试/train/labels/璁㈠崟1765461_54_6723620.txt new file mode 100644 index 0000000..af96f5e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765461_54_6723620.txt @@ -0,0 +1 @@ +0 0.764667 0.311438 0.642500 0.247063 0.415583 0.366938 0.388083 0.326187 0.529667 0.218938 0.567750 0.215250 0.703250 0.234563 0.793167 0.288875 0.763500 0.311438 0.571325 0.658394 0.571325 0.658394 0.557600 0.692094 0.545117 0.725794 0.513917 0.720175 0.468983 0.705200 0.387750 0.699625 0.379500 0.710875 0.327083 0.707125 0.322917 0.648000 0.381167 0.642375 0.387750 0.674313 0.465242 0.684606 0.508925 0.694900 0.531392 0.702387 0.538875 0.673369 0.545117 0.647162 0.570083 0.658394 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765465_54_6723842.txt b/datasets/搭电测试/train/labels/璁㈠崟1765465_54_6723842.txt new file mode 100644 index 0000000..ebd78da --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765465_54_6723842.txt @@ -0,0 +1 @@ +0 0.149870 0.285547 0.134414 0.191680 0.143073 0.175430 0.205169 0.185186 0.274492 0.222002 0.345247 0.266406 0.408789 0.298906 0.469440 0.333564 0.514206 0.349805 0.538750 0.350889 0.639844 0.405039 0.730820 0.474355 0.803021 0.539346 0.863672 0.595664 0.940208 0.674727 0.954648 0.725625 0.931549 0.732129 0.912773 0.680137 0.855013 0.617324 0.784245 0.545840 0.714062 0.520215 0.579297 0.409473 0.514206 0.368223 0.467995 0.370381 0.451432 0.632227 0.323958 0.643457 0.339062 0.395410 0.471224 0.352148 0.355365 0.288076 0.280260 0.239336 0.169661 0.201074 0.365755 0.326855 0.337109 0.358398 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765466_54_6723632.txt b/datasets/搭电测试/train/labels/璁㈠崟1765466_54_6723632.txt new file mode 100644 index 0000000..8d6f62f --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765466_54_6723632.txt @@ -0,0 +1 @@ +0 0.589778 0.457510 0.613085 0.421147 0.632667 0.385490 0.653176 0.365912 0.672549 0.441961 0.744314 0.444314 0.771373 0.359804 0.652549 0.346569 0.615882 0.384794 0.595373 0.413461 0.579529 0.445627 0.576732 0.420451 0.567412 0.388990 0.520797 0.334451 0.483503 0.312775 0.419085 0.304706 0.322745 0.340196 0.389542 0.440686 0.447190 0.427745 0.434092 0.323255 0.456458 0.322559 0.490026 0.330255 0.501216 0.351931 0.526392 0.384794 0.553425 0.419049 0.564614 0.419049 0.564614 0.448422 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765467_54_6723703.txt b/datasets/搭电测试/train/labels/璁㈠崟1765467_54_6723703.txt new file mode 100644 index 0000000..32764ef --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765467_54_6723703.txt @@ -0,0 +1 @@ +0 0.617227 0.584795 0.689023 0.535156 0.736562 0.484814 0.810221 0.442861 0.876406 0.392510 0.916497 0.328184 0.911836 0.270850 0.879206 0.247773 0.826068 0.241484 0.755208 0.251270 0.685807 0.262207 0.610156 0.336719 0.623047 0.386523 0.744401 0.362793 0.698698 0.318750 0.778776 0.263379 0.870312 0.271191 0.885729 0.319795 0.865221 0.358945 0.826068 0.398105 0.770130 0.438662 0.729115 0.464531 0.678763 0.512080 0.609779 0.565918 0.617227 0.585498 0.354323 0.585498 0.288125 0.550537 0.262956 0.518369 0.184648 0.482715 0.113789 0.437266 0.065312 0.381328 0.070898 0.332383 0.095143 0.296016 0.136172 0.261055 0.179049 0.248477 0.273568 0.252930 0.342188 0.260937 0.415495 0.323730 0.405990 0.384570 0.361979 0.385937 0.290625 0.341602 0.301172 0.296387 0.239844 0.271094 0.152943 0.279941 0.127773 0.300918 0.111927 0.324688 0.095143 0.364541 0.115651 0.407891 0.152943 0.435869 0.197695 0.463838 0.253633 0.491807 0.300247 0.510684 0.322630 0.540752 0.358984 0.566621 0.354323 0.584795 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765469_54_6723699.txt b/datasets/搭电测试/train/labels/璁㈠崟1765469_54_6723699.txt new file mode 100644 index 0000000..4cd87a7 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765469_54_6723699.txt @@ -0,0 +1 @@ +0 0.450430 0.325439 0.336081 0.414434 0.420221 0.447607 0.538880 0.373984 0.571237 0.380459 0.571237 0.416865 0.600365 0.426572 0.617630 0.407158 0.590664 0.377217 0.626263 0.367510 0.658620 0.373984 0.694219 0.407158 0.698529 0.448418 0.604687 0.504238 0.611159 0.529316 0.666172 0.516377 0.720104 0.468643 0.767565 0.411201 0.836602 0.351328 0.863568 0.320586 0.829049 0.259102 0.672643 0.294697 0.683424 0.332725 0.825820 0.336768 0.716862 0.442754 0.700690 0.378838 0.644596 0.352949 0.580951 0.367510 0.536719 0.359424 0.445039 0.382881 0.467682 0.328682 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765470_54_6723834.txt b/datasets/搭电测试/train/labels/璁㈠崟1765470_54_6723834.txt new file mode 100644 index 0000000..034ce67 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765470_54_6723834.txt @@ -0,0 +1 @@ +0 0.281068 0.558447 0.209883 0.620742 0.218503 0.653096 0.250872 0.649863 0.299414 0.619121 0.327461 0.620742 0.353346 0.644199 0.393255 0.717822 0.419141 0.806816 0.452591 0.892568 0.500052 0.933018 0.556146 0.949199 0.597135 0.911182 0.614388 0.869922 0.580951 0.858594 0.556146 0.914414 0.532409 0.923311 0.491419 0.898232 0.470924 0.870723 0.442878 0.763125 0.383555 0.654717 0.404049 0.653096 0.398646 0.617500 0.346875 0.559248 0.282148 0.557637 0.315586 0.364277 0.354427 0.368320 0.355508 0.359424 0.400807 0.361846 0.488177 0.390166 0.535651 0.416865 0.672643 0.476729 0.747070 0.487246 0.813945 0.486436 0.831211 0.475117 0.789141 0.464600 0.706081 0.464600 0.522695 0.378027 0.405117 0.347285 0.347956 0.344053 0.314518 0.365088 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765471_54_6723653.txt b/datasets/搭电测试/train/labels/璁㈠崟1765471_54_6723653.txt new file mode 100644 index 0000000..ddd99b3 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765471_54_6723653.txt @@ -0,0 +1 @@ +0 0.301563 0.293896 0.310195 0.366699 0.337161 0.370752 0.360898 0.333535 0.350104 0.302793 0.384622 0.294697 0.414831 0.275283 0.416992 0.325439 0.435326 0.348096 0.487109 0.362656 0.501133 0.357803 0.447188 0.339199 0.427773 0.314922 0.423464 0.199238 0.408359 0.147461 0.384622 0.138555 0.360898 0.165254 0.376003 0.254248 0.412669 0.255869 0.400807 0.270430 0.345794 0.291465 0.332852 0.246162 0.309115 0.246162 0.287539 0.263955 0.285391 0.283379 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765473_54_6723776.txt b/datasets/搭电测试/train/labels/璁㈠崟1765473_54_6723776.txt new file mode 100644 index 0000000..b5ccc65 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765473_54_6723776.txt @@ -0,0 +1 @@ +0 0.523105 0.473496 0.376888 0.567728 0.392051 0.616465 0.566426 0.537402 0.582669 0.502741 0.589173 0.555814 0.556680 0.657617 0.530684 0.752930 0.566426 0.817910 0.625996 0.837409 0.713724 0.804915 0.728887 0.761595 0.711556 0.750762 0.681230 0.791921 0.611914 0.808164 0.561009 0.776758 0.572923 0.690111 0.617331 0.539564 0.598919 0.478913 0.536100 0.505990 0.522018 0.472415 0.448372 0.360859 0.565345 0.293711 0.568594 0.265553 0.616243 0.224395 0.633574 0.190820 0.674733 0.250391 0.718053 0.280716 0.783040 0.277467 0.827441 0.278548 0.868600 0.306706 0.884844 0.346784 0.904342 0.345697 0.882682 0.287214 0.832858 0.257969 0.754876 0.257969 0.724551 0.256888 0.651986 0.175658 0.624909 0.166992 0.549095 0.255807 0.487363 0.291543 0.522018 0.239557 0.490612 0.224395 0.414798 0.327285 0.447292 0.360859 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765474_54_6723701.txt b/datasets/搭电测试/train/labels/璁㈠崟1765474_54_6723701.txt new file mode 100644 index 0000000..315453c --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765474_54_6723701.txt @@ -0,0 +1 @@ +0 0.705533 0.287190 0.704080 0.347840 0.666533 0.369500 0.604440 0.340260 0.579893 0.267700 0.572680 0.230870 0.499027 0.217880 0.415267 0.226540 0.507693 0.276360 0.559680 0.334850 0.608773 0.434490 0.656427 0.542790 0.673760 0.609940 0.647760 0.605610 0.601560 0.474560 0.530800 0.337010 0.477360 0.280690 0.373387 0.236290 0.288187 0.240620 0.366173 0.345680 0.340173 0.398750 0.246307 0.400910 0.220320 0.524380 0.195773 0.518970 0.227533 0.311020 0.189987 0.273110 0.208760 0.237370 0.236200 0.243870 0.275200 0.189720 0.447040 0.168050 0.565453 0.182130 0.639107 0.238450 0.652093 0.293690 0.669427 0.296940 0.679533 0.279610 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765476_54_6723781.txt b/datasets/搭电测试/train/labels/璁㈠崟1765476_54_6723781.txt new file mode 100644 index 0000000..b843e88 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765476_54_6723781.txt @@ -0,0 +1 @@ +0 0.392094 0.505917 0.413756 0.589313 0.384878 0.601229 0.252022 0.592562 0.239022 0.514583 0.262128 0.469096 0.475850 0.396529 0.614483 0.290387 0.776222 0.238404 0.857089 0.236238 0.923517 0.244900 0.939400 0.224321 0.917739 0.188583 0.819544 0.181000 0.675133 0.203746 0.562494 0.206996 0.524950 0.189667 0.519172 0.228654 0.471522 0.217825 0.491739 0.178833 0.429639 0.165837 0.441194 0.129013 0.507622 0.127929 0.546611 0.152842 0.545167 0.170171 0.598600 0.183167 0.705461 0.173421 0.836872 0.155008 0.927850 0.163671 0.972617 0.196163 0.961061 0.250317 0.997167 0.270896 1.000000 0.370138 1.000000 0.422696 0.963950 0.426854 0.958172 0.404112 0.991389 0.396529 0.991389 0.293637 0.911967 0.266562 0.810878 0.258979 0.640478 0.304471 0.536506 0.387867 0.484517 0.425771 0.306894 0.486425 0.334333 0.542742 0.357439 0.499421 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765477_54_6723724.txt b/datasets/搭电测试/train/labels/璁㈠崟1765477_54_6723724.txt new file mode 100644 index 0000000..6846755 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765477_54_6723724.txt @@ -0,0 +1 @@ +0 0.396784 0.228206 0.415091 0.377324 0.471680 0.423686 0.564883 0.278324 0.591510 0.220686 0.664740 0.180578 0.751276 0.185598 0.904401 0.225696 0.777917 0.228206 0.756276 0.211912 0.581523 0.254520 0.571536 0.294618 0.751276 0.245745 0.994271 0.250755 0.999271 0.229451 0.764596 0.163039 0.659740 0.154265 0.578190 0.188098 0.546576 0.258275 0.519948 0.255775 0.475000 0.337225 0.458359 0.333461 0.445052 0.235725 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765478_54_6723736.txt b/datasets/搭电测试/train/labels/璁㈠崟1765478_54_6723736.txt new file mode 100644 index 0000000..534e1de --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765478_54_6723736.txt @@ -0,0 +1 @@ +0 0.259466 0.468076 0.242148 0.552559 0.253698 0.565547 0.282578 0.559053 0.302799 0.486484 0.305677 0.463740 0.328789 0.457246 0.341784 0.462656 0.338893 0.500566 0.377891 0.509229 0.441419 0.512480 0.467422 0.536309 0.499193 0.526563 0.528073 0.541729 0.539622 0.560137 0.545404 0.590459 0.529518 0.619707 0.539622 0.630537 0.565612 0.600205 0.561289 0.547139 0.545404 0.530898 0.588724 0.537393 0.629154 0.540645 0.669596 0.550391 0.685469 0.539561 0.619049 0.518984 0.565612 0.516816 0.513633 0.509229 0.455872 0.496240 0.457305 0.478906 0.536732 0.504902 0.548281 0.487568 0.428424 0.443164 0.421211 0.461582 0.444310 0.472412 0.429870 0.492988 0.369219 0.491904 0.356224 0.448584 0.312904 0.439912 0.286914 0.463740 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765479_54_6723748.txt b/datasets/搭电测试/train/labels/璁㈠崟1765479_54_6723748.txt new file mode 100644 index 0000000..e3d5072 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765479_54_6723748.txt @@ -0,0 +1 @@ +0 0.447201 0.587217 0.438542 0.630537 0.383659 0.689023 0.337448 0.680352 0.341784 0.643535 0.375000 0.594795 0.422656 0.492988 0.455872 0.477822 0.507852 0.495156 0.587279 0.525479 0.629154 0.512480 0.652266 0.520059 0.624818 0.543887 0.577174 0.549307 0.490521 0.508145 0.452982 0.499482 0.412539 0.613203 0.447201 0.587217 0.478971 0.409590 0.513633 0.413926 0.533841 0.286123 0.515078 0.234131 0.568503 0.218975 0.659479 0.264463 0.704245 0.228721 0.754792 0.225469 0.775013 0.210313 0.717240 0.202725 0.658034 0.229805 0.585833 0.195146 0.506406 0.205977 0.484753 0.238467 0.499193 0.278545 0.477526 0.409590 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765483_54_6723827.txt b/datasets/搭电测试/train/labels/璁㈠崟1765483_54_6723827.txt new file mode 100644 index 0000000..120dd1f --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765483_54_6723827.txt @@ -0,0 +1 @@ +0 0.619027 0.654350 0.714333 0.788650 0.712893 0.814640 0.678240 0.823310 0.665240 0.894790 0.642133 0.951110 0.577147 0.947860 0.366320 0.804890 0.360533 0.769150 0.390867 0.762650 0.448627 0.825470 0.607480 0.922950 0.630587 0.920780 0.642133 0.782150 0.565600 0.722580 0.617587 0.652180 0.568480 0.325100 0.473173 0.424740 0.438520 0.416080 0.419747 0.367340 0.496280 0.242790 0.451520 0.208130 0.402413 0.201630 0.310000 0.294770 0.291227 0.286110 0.353320 0.195130 0.403867 0.175640 0.487613 0.191880 0.542493 0.246040 0.506387 0.325100 0.530933 0.301270 0.565600 0.302350 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765484_54_6723805.txt b/datasets/搭电测试/train/labels/璁㈠崟1765484_54_6723805.txt new file mode 100644 index 0000000..7ef1642 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765484_54_6723805.txt @@ -0,0 +1 @@ +0 0.545404 0.292617 0.551172 0.406338 0.637826 0.412842 0.710026 0.318613 0.793776 0.369521 0.909310 0.442080 0.943971 0.481074 0.941081 0.534141 0.874648 0.569883 0.777891 0.578545 0.669596 0.574219 0.724466 0.507070 0.708581 0.476738 0.552617 0.448584 0.366276 0.424805 0.376432 0.381445 0.286849 0.374902 0.207422 0.466992 0.353385 0.485449 0.438542 0.461582 0.538177 0.474570 0.678255 0.500566 0.623385 0.572051 0.324453 0.559053 0.155495 0.587217 0.155495 0.619707 0.334557 0.591543 0.438542 0.601289 0.314349 0.661943 0.323008 0.706348 0.389440 0.720430 0.473190 0.710684 0.574284 0.660859 0.636380 0.607793 0.798112 0.611035 0.900638 0.604541 0.961289 0.572051 1.000000 0.529043 1.000000 0.527236 0.984401 0.445332 0.890534 0.369521 0.773568 0.299121 0.681146 0.275293 0.548281 0.266631 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765487_54_6723873.txt b/datasets/搭电测试/train/labels/璁㈠崟1765487_54_6723873.txt new file mode 100644 index 0000000..31f238e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765487_54_6723873.txt @@ -0,0 +1 @@ +0 0.299909 0.445332 0.356224 0.473496 0.415430 0.546055 0.457305 0.568799 0.481862 0.562305 0.517956 0.565547 0.533841 0.582881 0.522292 0.592627 0.454427 0.582881 0.448646 0.595879 0.561289 0.644619 0.610378 0.603457 0.517956 0.525479 0.500638 0.548223 0.457305 0.529814 0.457305 0.551475 0.359115 0.451826 0.320117 0.425840 0.298464 0.444248 0.484753 0.368437 0.541068 0.373848 0.558398 0.392266 0.571393 0.447500 0.598828 0.457246 0.659479 0.443164 0.718685 0.418252 0.738906 0.517900 0.785117 0.520059 0.803893 0.415010 0.775013 0.408506 0.769232 0.421504 0.734570 0.406338 0.695586 0.409590 0.647930 0.430166 0.598828 0.442080 0.581497 0.434502 0.574284 0.378184 0.543958 0.356523 0.493411 0.345693 0.484753 0.367354 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765490_54_6723884.txt b/datasets/搭电测试/train/labels/璁㈠崟1765490_54_6723884.txt new file mode 100644 index 0000000..4c503ce --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765490_54_6723884.txt @@ -0,0 +1 @@ +0 0.378696 0.588516 0.335464 0.685007 0.354263 0.746406 0.390913 0.715078 0.416289 0.648665 0.409712 0.638639 0.410654 0.626107 0.452007 0.622350 0.501816 0.623600 0.602383 0.658691 0.673809 0.678737 0.707646 0.711322 0.743359 0.721348 0.743359 0.693776 0.704824 0.681243 0.683208 0.656185 0.514038 0.598542 0.410654 0.601048 0.399375 0.588516 0.378696 0.588516 0.636216 0.562201 0.673809 0.547161 0.683208 0.460697 0.630576 0.420592 0.571367 0.403047 0.546929 0.380495 0.549751 0.312826 0.535654 0.291523 0.518735 0.312826 0.520615 0.357936 0.538472 0.408060 0.545991 0.428112 0.529072 0.428112 0.501816 0.365456 0.483022 0.390521 0.524375 0.515833 0.571367 0.513327 0.564785 0.424355 0.591104 0.436882 0.638096 0.453177 0.664409 0.480742 0.658774 0.520846 0.633398 0.528366 0.636216 0.560944 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765491_54_6723885.txt b/datasets/搭电测试/train/labels/璁㈠崟1765491_54_6723885.txt new file mode 100644 index 0000000..10fbeae --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765491_54_6723885.txt @@ -0,0 +1 @@ +0 0.404596 0.235029 0.290977 0.350313 0.321055 0.382900 0.371185 0.384150 0.453047 0.277637 0.468086 0.303945 0.454727 0.340293 0.409609 0.380391 0.327734 0.411719 0.207435 0.438037 0.107187 0.518232 0.097161 0.580889 0.120560 0.579639 0.125573 0.537031 0.187383 0.478135 0.272604 0.443047 0.401250 0.414229 0.466419 0.370361 0.498164 0.303945 0.544948 0.240039 0.586719 0.221240 0.601758 0.270117 0.641862 0.290166 0.678620 0.272617 0.678620 0.236279 0.615130 0.189912 0.544948 0.212471 0.494818 0.280137 0.444701 0.240039 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765496_54_6724053.txt b/datasets/搭电测试/train/labels/璁㈠崟1765496_54_6724053.txt new file mode 100644 index 0000000..88aa708 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765496_54_6724053.txt @@ -0,0 +1 @@ +0 0.778039 0.481903 0.674452 0.619749 0.649389 0.621003 0.514048 0.714983 0.363668 0.751324 0.188235 0.731272 0.109700 0.696185 0.044544 0.776384 0.007785 0.786410 0.001096 0.746315 0.062918 0.678642 0.001096 0.641047 0.004441 0.595934 0.074614 0.638547 0.174867 0.552076 0.358662 0.483157 0.488985 0.433028 0.545790 0.370372 0.569181 0.295182 0.505698 0.197439 0.415467 0.137292 0.378708 0.112232 0.266759 0.117240 0.265087 0.194931 0.301845 0.236289 0.341949 0.262604 0.375363 0.400450 0.291822 0.488166 0.246713 0.470623 0.253391 0.429273 0.169850 0.313979 0.258408 0.260095 0.213299 0.172379 0.211626 0.114732 0.468939 0.109723 0.549135 0.164862 0.594245 0.228772 0.622653 0.296436 0.605940 0.375389 0.544118 0.443054 0.412122 0.510727 0.281799 0.553330 0.208281 0.588417 0.129758 0.663607 0.228339 0.687413 0.341949 0.711228 0.435513 0.703702 0.535767 0.654836 0.594245 0.617240 0.559158 0.595934 0.605940 0.524507 0.709539 0.443054 0.761338 0.455588 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765499_54_6723922.txt b/datasets/搭电测试/train/labels/璁㈠崟1765499_54_6723922.txt new file mode 100644 index 0000000..dc9ffd6 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765499_54_6723922.txt @@ -0,0 +1 @@ +0 0.104771 0.174941 0.119804 0.307775 0.215046 0.336598 0.225072 0.207529 0.300261 0.258902 0.360405 0.334088 0.502431 0.380461 0.659490 0.386725 0.672863 0.371686 0.502431 0.357902 0.403856 0.330333 0.347046 0.280206 0.460667 0.325324 0.575948 0.322814 0.666170 0.322814 0.739686 0.341608 0.739686 0.322814 0.494078 0.301510 0.448967 0.189980 0.392157 0.189980 0.315294 0.178706 0.296915 0.220059 0.184967 0.129833 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765506_54_6723992.txt b/datasets/搭电测试/train/labels/璁㈠崟1765506_54_6723992.txt new file mode 100644 index 0000000..aea2f4a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765506_54_6723992.txt @@ -0,0 +1 @@ +0 0.353030 0.187836 0.271476 0.443021 0.264948 0.495208 0.246467 0.537257 0.148594 0.718495 0.049635 0.996887 0.067405 1.000000 0.092535 1.000000 0.198620 0.721400 0.285608 0.556111 0.373689 0.419815 0.420451 0.289329 0.401970 0.168981 0.351944 0.186377 0.660773 0.303819 0.578134 0.524213 0.578134 0.588009 0.606406 0.614109 0.734722 0.399514 0.717326 0.469120 0.649905 0.586562 0.491137 0.834491 0.393264 0.996887 0.430243 0.996887 0.570521 0.786644 0.699922 0.567708 0.749948 0.466215 0.767344 0.361817 0.756467 0.337176 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765509_54_6724017.txt b/datasets/搭电测试/train/labels/璁㈠崟1765509_54_6724017.txt new file mode 100644 index 0000000..4d547c9 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765509_54_6724017.txt @@ -0,0 +1 @@ +0 0.447447 0.263998 0.410705 0.388684 0.491928 0.388684 0.588617 0.313290 0.565412 0.295892 0.495798 0.333589 0.478391 0.330688 0.538338 0.243699 0.575080 0.233549 0.650505 0.265444 0.708524 0.304596 0.729787 0.337936 0.751064 0.345184 0.741396 0.294447 0.650505 0.233549 0.577021 0.208893 0.505465 0.229192 0.484189 0.269791 0.445519 0.262542 0.571210 0.656919 0.364295 0.611974 0.348816 0.638076 0.420372 0.662722 0.522872 0.685922 0.542207 0.767119 0.613763 0.817856 0.681449 0.796112 0.723989 0.730867 0.727859 0.654018 0.685319 0.646770 0.681449 0.719262 0.646636 0.785962 0.611822 0.791765 0.598138 0.742373 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765515_54_6724037.txt b/datasets/搭电测试/train/labels/璁㈠崟1765515_54_6724037.txt new file mode 100644 index 0000000..121f7a4 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765515_54_6724037.txt @@ -0,0 +1 @@ +0 0.738160 0.356290 0.658747 0.457020 0.574987 0.449430 0.603867 0.341130 0.619747 0.338960 0.590867 0.268560 0.569213 0.266400 0.446467 0.377950 0.421907 0.370370 0.531667 0.253400 0.586533 0.241490 0.635640 0.291310 0.641413 0.358460 0.632747 0.397450 0.655853 0.393110 0.704947 0.338960 0.730947 0.341130 0.739613 0.356290 0.520107 0.655210 0.416133 0.792760 0.421907 0.815510 0.346813 0.866410 0.300613 0.876160 0.258733 0.853410 0.260173 0.804680 0.333827 0.666050 0.313600 0.658460 0.254400 0.761350 0.222627 0.826340 0.245733 0.880490 0.309280 0.903240 0.381480 0.882660 0.445013 0.823090 0.458013 0.841500 0.482560 0.841500 0.553320 0.703950 0.520107 0.655210 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765517_54_6724076.txt b/datasets/搭电测试/train/labels/璁㈠崟1765517_54_6724076.txt new file mode 100644 index 0000000..4f5dada --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765517_54_6724076.txt @@ -0,0 +1 @@ +0 0.604750 0.432971 0.537356 0.417992 0.547339 0.401146 0.652178 0.407696 0.652178 0.433908 0.638450 0.433908 0.640944 0.537808 0.697111 0.505983 0.737050 0.519087 0.695861 0.570571 0.607250 0.612696 0.582289 0.616442 0.529867 0.643587 0.509894 0.643587 0.420033 0.566829 0.422533 0.552787 0.365117 0.500367 0.391328 0.486325 0.437506 0.540617 0.512394 0.598654 0.574800 0.603333 0.602256 0.556533 0.619728 0.500367 0.620978 0.460117 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765518_54_6724048.txt b/datasets/搭电测试/train/labels/璁㈠崟1765518_54_6724048.txt new file mode 100644 index 0000000..cec92f0 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765518_54_6724048.txt @@ -0,0 +1,2 @@ +2 0.258529 0.621094 0.379701 0.593936 0.453529 0.803379 0.333047 0.835244 +0 0.557839 0.505508 0.555977 0.531377 0.513099 0.531377 0.483255 0.510469 0.481393 0.499287 0.423594 0.454463 0.386302 0.443271 0.351810 0.444746 0.390964 0.455234 0.352734 0.541865 0.288411 0.518789 0.283750 0.448242 0.289349 0.437754 0.313581 0.441875 0.359271 0.429365 0.346211 0.392998 0.418932 0.362861 0.447839 0.371328 0.440378 0.385313 0.398424 0.400693 0.398424 0.413906 0.442240 0.412510 0.478594 0.412510 0.492578 0.441875 0.500039 0.475439 0.496315 0.495088 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765520_54_6724218.txt b/datasets/搭电测试/train/labels/璁㈠崟1765520_54_6724218.txt new file mode 100644 index 0000000..d3ef5ef --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765520_54_6724218.txt @@ -0,0 +1 @@ +0 0.519750 0.309233 0.674267 0.156525 0.716144 0.161937 0.758028 0.218258 0.659828 0.314650 0.655494 0.386133 0.667050 0.447867 0.641056 0.445700 0.629500 0.344975 0.609283 0.368804 0.573183 0.365554 0.518306 0.308150 0.453322 0.269163 0.306028 0.353642 0.261261 0.335229 0.295922 0.259412 0.421556 0.166271 0.392672 0.138112 0.316139 0.131612 0.242489 0.139196 0.161622 0.179267 0.090861 0.235587 0.073533 0.272413 0.095194 0.338479 0.132739 0.419708 0.193389 0.491187 0.174617 0.498771 0.121189 0.458696 0.072089 0.355804 0.044650 0.263746 0.103856 0.183600 0.203500 0.138112 0.294478 0.109950 0.404228 0.116450 0.457656 0.155442 0.479317 0.194429 0.453322 0.269163 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765521_54_6724119.txt b/datasets/搭电测试/train/labels/璁㈠崟1765521_54_6724119.txt new file mode 100644 index 0000000..a2eda1a --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765521_54_6724119.txt @@ -0,0 +1 @@ +0 0.333448 0.335216 0.219368 0.274558 0.173147 0.309224 0.246796 0.365539 0.267011 0.415356 0.271351 0.460851 0.248247 0.532328 0.251135 0.582155 0.303118 0.635216 0.369555 0.669881 0.421537 0.665550 0.409986 0.653631 0.381106 0.653631 0.295905 0.609224 0.269914 0.577823 0.277126 0.515000 0.298793 0.456519 0.272802 0.385032 0.331997 0.334127 0.418649 0.147845 0.446078 0.233405 0.480747 0.244235 0.498075 0.233405 0.682917 0.408858 0.695905 0.404526 0.505287 0.223653 0.522615 0.210657 0.473520 0.114267 0.418649 0.147845 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765523_54_6724131.txt b/datasets/搭电测试/train/labels/璁㈠崟1765523_54_6724131.txt new file mode 100644 index 0000000..49e1cf1 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765523_54_6724131.txt @@ -0,0 +1 @@ +0 0.313678 0.276595 0.312122 0.335330 0.341644 0.357705 0.237544 0.370990 0.122556 0.277995 0.141200 0.258415 0.184711 0.264010 0.246867 0.323445 0.262400 0.322745 0.262400 0.269605 0.377389 0.297570 0.428667 0.370290 0.489267 0.400360 0.543644 0.406650 0.566956 0.409450 0.498589 0.374485 0.501689 0.326240 0.542089 0.301770 0.594922 0.298270 0.635322 0.301770 0.653967 0.368895 0.613567 0.395465 0.563844 0.392665 0.546756 0.336030 0.580944 0.307360 0.543644 0.315750 0.508067 0.347915 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765524_54_6724176.txt b/datasets/搭电测试/train/labels/璁㈠崟1765524_54_6724176.txt new file mode 100644 index 0000000..670aa29 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765524_54_6724176.txt @@ -0,0 +1 @@ +0 0.362292 0.235654 0.386836 0.376445 0.421497 0.419775 0.463372 0.403525 0.453268 0.242148 0.492253 0.221465 0.537018 0.224717 0.590456 0.250703 0.694427 0.390527 0.602005 0.376445 0.506693 0.402334 0.480703 0.441328 0.531250 0.477070 0.515365 0.445762 0.541354 0.415332 0.617891 0.397998 0.705977 0.412080 0.711758 0.436016 0.674206 0.476094 0.664102 0.524824 0.694427 0.554072 0.685768 0.510645 0.703099 0.479336 0.742083 0.447822 0.733424 0.420742 0.795508 0.436992 0.874935 0.430498 0.911042 0.385010 0.921146 0.310273 0.851836 0.239980 0.882161 0.216152 0.863385 0.174893 0.796953 0.211719 0.736302 0.200996 0.691536 0.289697 0.739193 0.346016 0.866276 0.304971 0.883607 0.341787 0.863385 0.399082 0.828724 0.416523 0.727643 0.397031 0.658320 0.277783 0.571680 0.208467 0.476367 0.199912 0.433047 0.231211 0.415716 0.216152 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765527_54_6724353.txt b/datasets/搭电测试/train/labels/璁㈠崟1765527_54_6724353.txt new file mode 100644 index 0000000..3bef477 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765527_54_6724353.txt @@ -0,0 +1,2 @@ +2 0.568050 0.200067 0.681770 0.247707 0.699640 0.175140 0.589165 0.120987 +0 0.425085 0.393920 0.358475 0.436160 0.376345 0.497893 0.511185 0.446993 0.590790 0.480567 0.689890 0.516307 0.756500 0.502227 0.775995 0.471900 0.772745 0.442660 0.691515 0.435080 0.717510 0.491393 0.657400 0.487067 0.519310 0.435080 0.507935 0.403667 0.433205 0.429660 0.482755 0.385253 0.478695 0.356013 0.439705 0.378760 0.373910 0.311607 0.277245 0.273700 0.216325 0.263953 0.103415 0.356013 0.114785 0.400420 0.278055 0.335433 0.324360 0.334353 0.395030 0.359260 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765529_54_6724150.txt b/datasets/搭电测试/train/labels/璁㈠崟1765529_54_6724150.txt new file mode 100644 index 0000000..8704aff --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765529_54_6724150.txt @@ -0,0 +1 @@ +0 0.049073 0.471687 0.149800 0.551833 0.107560 0.625480 0.083733 0.625480 0.000000 0.531280 0.000000 0.510000 0.009000 0.454353 0.050160 0.399120 0.133553 0.385040 0.196373 0.403453 0.248360 0.440273 0.312260 0.445693 0.380493 0.479267 0.441140 0.531253 0.472553 0.626560 0.524540 0.651473 0.547280 0.692627 0.554867 0.725120 0.583020 0.735953 0.600353 0.748947 0.551613 0.761947 0.489880 0.712127 0.469300 0.699127 0.454140 0.649307 0.370740 0.654720 0.303593 0.610313 0.272187 0.558327 0.218033 0.545333 0.196373 0.499847 0.196373 0.465187 0.232113 0.445693 0.177960 0.411033 0.123807 0.404533 0.055573 0.421867 0.025247 0.465187 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765533_54_6724202.txt b/datasets/搭电测试/train/labels/璁㈠崟1765533_54_6724202.txt new file mode 100644 index 0000000..085ae23 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765533_54_6724202.txt @@ -0,0 +1 @@ +0 0.590275 0.309706 0.601059 0.290284 0.594588 0.208578 0.571935 0.209382 0.568706 0.250647 0.553595 0.234461 0.532026 0.252265 0.509373 0.252265 0.466222 0.309706 0.482405 0.321029 0.458680 0.365529 0.475935 0.365529 0.494275 0.328314 0.515843 0.328314 0.554680 0.271676 0.566549 0.315363 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765534_54_6724226.txt b/datasets/搭电测试/train/labels/璁㈠崟1765534_54_6724226.txt new file mode 100644 index 0000000..2b27dcf --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765534_54_6724226.txt @@ -0,0 +1 @@ +0 0.452944 0.361445 0.376816 0.273724 0.349561 0.285007 0.331704 0.315078 0.332646 0.338887 0.410654 0.396536 0.434150 0.409063 0.436968 0.474225 0.446367 0.526862 0.467983 0.548164 0.502759 0.544401 0.556328 0.524355 0.587344 0.523099 0.619297 0.545658 0.648433 0.592025 0.655952 0.679740 0.644673 0.699792 0.619297 0.709818 0.600503 0.757435 0.617417 0.813828 0.640913 0.749915 0.656895 0.719844 0.717041 0.737383 0.723623 0.709818 0.685088 0.693529 0.666289 0.600794 0.702007 0.496784 0.722681 0.464206 0.750879 0.286257 0.744297 0.204805 0.722681 0.173477 0.694487 0.173477 0.648433 0.276230 0.632456 0.201048 0.615537 0.201048 0.608022 0.377734 0.661592 0.380241 0.694487 0.222350 0.707646 0.199792 0.726440 0.216081 0.729263 0.288763 0.720801 0.376484 0.696367 0.471719 0.658774 0.575729 0.619297 0.520592 0.583584 0.499290 0.529072 0.509316 0.482080 0.531875 0.460464 0.515579 0.446367 0.384004 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765536_54_6724254.txt b/datasets/搭电测试/train/labels/璁㈠崟1765536_54_6724254.txt new file mode 100644 index 0000000..9028c46 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765536_54_6724254.txt @@ -0,0 +1 @@ +0 0.485417 0.255010 0.561719 0.270020 0.641797 0.345703 0.584115 0.381836 0.538542 0.350000 0.539089 0.290586 0.519115 0.273730 0.479180 0.266250 0.252031 0.493711 0.239544 0.526475 0.264505 0.551748 0.304440 0.588252 0.350625 0.610723 0.435495 0.632246 0.476680 0.639736 0.474193 0.593867 0.331901 0.552686 0.329414 0.580762 0.278242 0.538643 0.263255 0.505879 0.249531 0.492773 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765537_54_6724349.txt b/datasets/搭电测试/train/labels/璁㈠崟1765537_54_6724349.txt new file mode 100644 index 0000000..85c9fbd --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765537_54_6724349.txt @@ -0,0 +1 @@ +0 0.389654 0.348885 0.341192 0.373942 0.344538 0.427827 0.354564 0.459154 0.276038 0.593240 0.284385 0.635846 0.326154 0.655894 0.341192 0.702260 0.535013 0.655894 0.521654 0.622067 0.374615 0.640865 0.317808 0.624567 0.304436 0.603269 0.341192 0.551885 0.376282 0.504269 0.387987 0.444115 0.361244 0.395250 0.404692 0.365173 0.387987 0.347625 0.513295 0.303769 0.530000 0.271183 0.563423 0.286221 0.601846 0.322567 0.640282 0.355144 0.705436 0.362663 0.795667 0.378952 0.827410 0.426577 0.849128 0.480462 0.815718 0.556904 0.862500 0.540606 0.879205 0.574442 0.792321 0.608279 0.747218 0.612038 0.732179 0.591990 0.772269 0.549385 0.788987 0.536846 0.819064 0.485471 0.785641 0.409029 0.755564 0.391490 0.643615 0.380212 0.585141 0.336346 0.545038 0.303769 0.511628 0.302519 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765538_54_6724276.txt b/datasets/搭电测试/train/labels/璁㈠崟1765538_54_6724276.txt new file mode 100644 index 0000000..876f957 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765538_54_6724276.txt @@ -0,0 +1 @@ +0 0.351406 0.745000 0.399948 0.781406 0.416120 0.768467 0.426914 0.722354 0.431224 0.685137 0.489479 0.651963 0.569297 0.634170 0.573620 0.649541 0.624310 0.672998 0.726797 0.661670 0.723555 0.607471 0.700898 0.610703 0.634023 0.620410 0.593034 0.611514 0.516445 0.621221 0.456042 0.640645 0.422604 0.660869 0.396706 0.712646 0.394557 0.757139 0.377292 0.732061 0.351406 0.744199 0.377292 0.382559 0.351406 0.334023 0.327669 0.290332 0.338464 0.246641 0.387005 0.225605 0.436628 0.225605 0.474375 0.230469 0.493789 0.251494 0.514284 0.262822 0.511055 0.295186 0.506732 0.365566 0.499180 0.384180 0.457122 0.389033 0.388086 0.343730 0.316888 0.305703 0.314727 0.278193 0.334141 0.270918 0.376211 0.299229 0.431224 0.324307 0.465742 0.312178 0.473294 0.272529 0.447409 0.249072 0.398867 0.248262 0.357878 0.267676 0.394557 0.380947 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765542_54_6724343.txt b/datasets/搭电测试/train/labels/璁㈠崟1765542_54_6724343.txt new file mode 100644 index 0000000..0f24f9b --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765542_54_6724343.txt @@ -0,0 +1 @@ +0 0.334141 0.391465 0.338464 0.442432 0.275898 0.466699 0.251081 0.461035 0.234909 0.405215 0.256484 0.396318 0.299622 0.348584 0.350326 0.305703 0.429076 0.290332 0.493789 0.290332 0.562826 0.300850 0.580091 0.295996 0.611367 0.300039 0.611367 0.318652 0.657760 0.295186 0.705221 0.303271 0.736497 0.325928 0.778568 0.387412 0.813086 0.455371 0.834661 0.531426 0.832500 0.595332 0.794753 0.669766 0.744049 0.766035 0.716003 0.767656 0.714922 0.743389 0.752682 0.701318 0.782891 0.629316 0.813086 0.540322 0.787201 0.455371 0.731107 0.359912 0.698750 0.316221 0.650208 0.313789 0.621081 0.334824 0.657760 0.382559 0.666380 0.436768 0.659909 0.487734 0.678255 0.550840 0.690117 0.576729 0.668542 0.572686 0.637266 0.523330 0.635104 0.463467 0.638333 0.408447 0.610286 0.354248 0.609219 0.397119 0.559596 0.379326 0.568229 0.325928 0.506732 0.309746 0.432305 0.308135 0.361107 0.322695 0.305026 0.377705 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765544_54_6724390.txt b/datasets/搭电测试/train/labels/璁㈠崟1765544_54_6724390.txt new file mode 100644 index 0000000..d975c1e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765544_54_6724390.txt @@ -0,0 +1 @@ +0 0.695250 0.337438 0.614525 0.605869 0.588633 0.668169 0.544408 0.662500 0.536858 0.592925 0.559508 0.572700 0.489392 0.584838 0.379367 0.610725 0.300625 0.610725 0.255317 0.589688 0.263950 0.558137 0.310333 0.544388 0.325433 0.567037 0.287675 0.576744 0.302783 0.589688 0.368583 0.592119 0.549800 0.549237 0.564908 0.528206 0.635667 0.534625 0.704417 0.313625 0.654433 0.288731 0.560592 0.243425 0.526083 0.215375 0.479667 0.222188 0.476167 0.322500 0.491667 0.372000 0.540417 0.364312 0.555667 0.269750 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765547_54_6724385.txt b/datasets/搭电测试/train/labels/璁㈠崟1765547_54_6724385.txt new file mode 100644 index 0000000..dc3fcab --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765547_54_6724385.txt @@ -0,0 +1 @@ +0 0.743242 0.588301 0.617604 0.383594 0.685469 0.316445 0.669596 0.301289 0.580052 0.356523 0.480417 0.253633 0.538177 0.227637 0.416875 0.143154 0.347565 0.172402 0.434206 0.246045 0.562734 0.370605 0.376445 0.535225 0.405326 0.548223 0.585833 0.387930 0.720130 0.599131 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765548_54_6724556.txt b/datasets/搭电测试/train/labels/璁㈠崟1765548_54_6724556.txt new file mode 100644 index 0000000..c70a4cf --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765548_54_6724556.txt @@ -0,0 +1 @@ +0 0.391393 0.353828 0.433164 0.432773 0.418125 0.454072 0.339596 0.454072 0.302839 0.366357 0.231003 0.353828 0.184219 0.366357 0.155807 0.407705 0.157474 0.470361 0.190898 0.509209 0.246029 0.529258 0.229323 0.539287 0.147461 0.501689 0.117383 0.422744 0.145781 0.353828 0.227656 0.338789 0.334583 0.346309 0.362995 0.400186 0.368008 0.346309 0.389727 0.351318 0.752305 0.346309 0.640352 0.416484 0.640352 0.464102 0.698828 0.461592 0.763997 0.424004 0.760651 0.392676 0.827487 0.412725 0.889310 0.449062 0.929414 0.489160 0.926068 0.539287 0.892656 0.571865 0.830833 0.585654 0.723893 0.569365 0.725573 0.591924 0.837513 0.604453 0.911029 0.589414 0.952799 0.543047 0.939440 0.467861 0.879284 0.411465 0.805768 0.385156 0.753971 0.371367 0.752305 0.345049 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765550_54_6724472.txt b/datasets/搭电测试/train/labels/璁㈠崟1765550_54_6724472.txt new file mode 100644 index 0000000..6e49c50 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765550_54_6724472.txt @@ -0,0 +1 @@ +0 0.180755 0.210176 0.273125 0.272891 0.345508 0.395518 0.425391 0.381475 0.762370 0.367383 0.844661 0.467969 0.799609 0.477539 0.718490 0.404492 0.452344 0.410059 0.532721 0.480703 0.561432 0.491934 0.586393 0.435771 0.628828 0.448867 0.578906 0.595830 0.523984 0.619238 0.491536 0.600518 0.492786 0.566816 0.501523 0.561201 0.486536 0.501289 0.496523 0.485381 0.456589 0.461973 0.376706 0.446064 0.390443 0.519072 0.355495 0.593027 0.279362 0.641699 0.189492 0.649189 0.122096 0.627656 0.112109 0.608936 0.128346 0.583662 0.143320 0.612686 0.198229 0.630469 0.269375 0.622979 0.316797 0.593027 0.352995 0.557451 0.364232 0.518145 0.360482 0.447939 0.326784 0.455420 0.268125 0.488184 0.140885 0.568652 0.118359 0.541504 0.329284 0.402070 0.290586 0.330928 0.266875 0.292549 0.172018 0.227959 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765552_54_6724517.txt b/datasets/搭电测试/train/labels/璁㈠崟1765552_54_6724517.txt new file mode 100644 index 0000000..1f87b72 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765552_54_6724517.txt @@ -0,0 +1 @@ +0 0.573516 0.340039 0.575195 0.256084 0.740599 0.273623 0.730573 0.316230 0.693815 0.317480 0.705521 0.375127 0.658737 0.422744 0.561823 0.461592 0.404766 0.441543 0.374688 0.427764 0.356315 0.459092 0.329570 0.459092 0.331250 0.418984 0.364661 0.405205 0.414792 0.412725 0.484961 0.434023 0.555143 0.431514 0.660404 0.388916 0.662070 0.358838 0.575195 0.338789 0.545117 0.549316 0.590234 0.606953 0.545117 0.707207 0.498333 0.744805 0.444870 0.754824 0.403099 0.722246 0.341276 0.528008 0.337930 0.492920 0.362995 0.487910 0.401419 0.613223 0.434844 0.718486 0.458229 0.727256 0.498333 0.710967 0.469922 0.697178 0.498333 0.549316 0.545117 0.548057 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765554_54_6724455.txt b/datasets/搭电测试/train/labels/璁㈠崟1765554_54_6724455.txt new file mode 100644 index 0000000..7553011 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765554_54_6724455.txt @@ -0,0 +1 @@ +0 0.209272 0.491667 0.043861 0.499183 0.032161 0.456579 0.070594 0.434021 0.230994 0.429008 0.241017 0.451567 0.418128 0.416479 0.565161 0.421492 0.670428 0.452821 0.710528 0.505450 0.647033 0.536779 0.635339 0.512971 0.662072 0.509208 0.655389 0.481642 0.558478 0.442796 0.433167 0.439033 0.220967 0.476629 0.210944 0.491667 0.635339 0.368858 0.687133 0.258583 0.715539 0.251067 0.802422 0.297429 0.713867 0.469108 0.635339 0.367604 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765557_54_6724502.txt b/datasets/搭电测试/train/labels/璁㈠崟1765557_54_6724502.txt new file mode 100644 index 0000000..0a87944 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765557_54_6724502.txt @@ -0,0 +1 @@ +0 0.753696 0.629238 0.697314 0.557812 0.597705 0.581641 0.575146 0.635482 0.611768 0.666862 0.605225 0.788411 0.658789 0.896159 0.748047 0.861068 0.762158 0.793398 0.779072 0.714453 0.766855 0.668086 0.745239 0.670592 0.756519 0.719466 0.733960 0.775859 0.709526 0.843529 0.655015 0.846035 0.626816 0.768340 0.634336 0.690645 0.662534 0.660566 0.707646 0.664329 0.756519 0.663073 0.745239 0.387383 0.723623 0.470091 0.692607 0.501419 0.611782 0.512702 0.533774 0.516458 0.441665 0.542773 0.423809 0.542773 0.365537 0.576608 0.311968 0.577865 0.315728 0.547786 0.362720 0.542773 0.408774 0.518965 0.688848 0.475104 0.725503 0.382376 0.744297 0.386133 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765558_54_6724648.txt b/datasets/搭电测试/train/labels/璁㈠崟1765558_54_6724648.txt new file mode 100644 index 0000000..5726157 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765558_54_6724648.txt @@ -0,0 +1 @@ +0 0.409733 0.565694 0.286092 0.506800 0.254342 0.534369 0.297783 0.560681 0.269383 0.598275 0.301125 0.663438 0.376317 0.722337 0.458183 0.782488 0.538383 0.774969 0.530033 0.744894 0.483250 0.752412 0.404717 0.716069 0.322850 0.645894 0.302800 0.590756 0.309483 0.569456 0.367958 0.602038 0.408058 0.565694 0.528358 0.407800 0.657017 0.277475 0.715500 0.296269 0.792358 0.346400 0.797367 0.402788 0.777317 0.402788 0.740558 0.331356 0.708817 0.315069 0.623600 0.449156 0.528358 0.406550 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765559_54_6724552.txt b/datasets/搭电测试/train/labels/璁㈠崟1765559_54_6724552.txt new file mode 100644 index 0000000..870e061 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765559_54_6724552.txt @@ -0,0 +1 @@ +0 0.452096 0.502695 0.463333 0.558857 0.494531 0.607539 0.494531 0.661826 0.460833 0.734844 0.414648 0.778838 0.337266 0.799434 0.262383 0.786328 0.212461 0.739521 0.212461 0.662764 0.253646 0.626260 0.308568 0.580391 0.327292 0.601924 0.385951 0.527969 0.355990 0.503633 0.203724 0.600049 0.212461 0.614092 0.178763 0.666504 0.170026 0.721738 0.190000 0.770410 0.249909 0.819082 0.332279 0.836875 0.430872 0.810664 0.492031 0.756367 0.521992 0.694590 0.521992 0.589746 0.492031 0.496143 0.624336 0.483037 0.646797 0.559795 0.687982 0.649658 0.745391 0.702080 0.830260 0.732031 0.882682 0.727354 0.915130 0.711436 0.911393 0.688037 0.857721 0.659023 0.810299 0.619707 0.786589 0.571025 0.754128 0.467129 0.759128 0.460576 0.711693 0.372578 0.674258 0.377266 0.707956 0.472744 0.756628 0.576641 0.792826 0.634678 0.878945 0.705820 0.810299 0.707695 0.756628 0.681484 0.692982 0.601924 0.659284 0.475547 0.623086 0.481162 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765560_54_6724553.txt b/datasets/搭电测试/train/labels/璁㈠崟1765560_54_6724553.txt new file mode 100644 index 0000000..2e1c0ea --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765560_54_6724553.txt @@ -0,0 +1 @@ +0 0.281040 0.470430 0.229240 0.386470 0.189133 0.353880 0.147373 0.372680 0.222560 0.494240 0.214200 0.559400 0.190813 0.654640 0.164080 0.751130 0.190813 0.764910 0.276027 0.721050 0.356227 0.711030 0.459813 0.673430 0.449787 0.638350 0.416373 0.639600 0.311107 0.685960 0.220880 0.706010 0.255973 0.487970 0.281040 0.469170 0.519467 0.395610 0.643613 0.378320 0.684040 0.391350 0.695573 0.435710 0.678360 0.491980 0.604680 0.560280 0.614707 0.617670 0.619053 0.735710 0.581453 0.740100 0.565587 0.575440 0.629240 0.506140 0.663827 0.432460 0.645107 0.400000 0.603173 0.441100 0.516627 0.447620 0.517960 0.394610 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765562_54_6724548.txt b/datasets/搭电测试/train/labels/璁㈠崟1765562_54_6724548.txt new file mode 100644 index 0000000..db88726 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765562_54_6724548.txt @@ -0,0 +1 @@ +0 0.831270 0.506260 0.709982 0.459125 0.642353 0.434345 0.567211 0.433135 0.534689 0.389745 0.482522 0.370165 0.491110 0.325145 0.463845 0.311125 0.414147 0.307980 0.380444 0.321520 0.370888 0.355360 0.379689 0.366180 0.350062 0.376570 0.321190 0.397785 0.285879 0.471815 0.278686 0.488070 0.326021 0.538170 0.351679 0.544030 0.389352 0.503905 0.343623 0.443835 0.321945 0.440210 0.344378 0.399175 0.384520 0.379290 0.404591 0.399175 0.465453 0.427575 0.532007 0.442505 0.550471 0.444740 0.565710 0.485350 0.629041 0.550375 0.673162 0.541370 0.589005 0.477255 0.570542 0.445225 0.622602 0.446555 0.779751 0.517865 0.831163 0.506140 0.444636 0.365270 0.450213 0.335960 0.456652 0.328285 0.452682 0.322425 0.418979 0.317470 0.397291 0.327380 0.390107 0.343155 0.390959 0.358080 0.390959 0.364365 0.446243 0.364365 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765563_54_6724578.txt b/datasets/搭电测试/train/labels/璁㈠崟1765563_54_6724578.txt new file mode 100644 index 0000000..e13e2d0 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765563_54_6724578.txt @@ -0,0 +1 @@ +0 0.515867 0.391392 0.499156 0.415421 0.490100 0.446758 0.505422 0.477575 0.536761 0.504212 0.575761 0.512567 0.614761 0.500033 0.650972 0.464517 0.676739 0.418029 0.685794 0.416463 0.705294 0.361621 0.695544 0.360054 0.684400 0.353263 0.670472 0.358488 0.665594 0.387738 0.650972 0.385125 0.646794 0.351175 0.632867 0.350129 0.621722 0.373633 0.627989 0.416463 0.655150 0.423254 0.642617 0.448325 0.619633 0.479663 0.585511 0.495854 0.549994 0.492721 0.516567 0.471304 0.509600 0.444146 0.531189 0.399750 0.515867 0.391392 0.403050 0.387212 0.389817 0.403929 0.350122 0.414375 0.291622 0.419596 0.250533 0.408629 0.223378 0.391392 0.215017 0.371021 0.224767 0.344908 0.252622 0.326625 0.284661 0.312000 0.320872 0.304692 0.343856 0.305733 0.357783 0.315658 0.379372 0.312525 0.407922 0.345429 0.392606 0.353788 0.377283 0.377812 0.361961 0.379904 0.339678 0.338117 0.335500 0.321925 0.327139 0.314092 0.285356 0.324537 0.251233 0.343342 0.231733 0.367367 0.242872 0.389304 0.299978 0.403929 0.370317 0.398183 0.390517 0.380946 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765564_54_6724603.txt b/datasets/搭电测试/train/labels/璁㈠崟1765564_54_6724603.txt new file mode 100644 index 0000000..c09d2e8 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765564_54_6724603.txt @@ -0,0 +1 @@ +0 0.486000 0.344096 0.477269 0.295423 0.492244 0.231769 0.523449 0.223346 0.563385 0.224279 0.563385 0.249548 0.537179 0.299163 0.575859 0.337538 0.594590 0.394644 0.585846 0.458298 0.532179 0.512587 0.429833 0.548154 0.412359 0.557519 0.458538 0.596837 0.579603 0.660490 0.699423 0.711038 0.854192 0.733500 0.996474 0.704481 1.000000 0.726317 1.000000 0.735885 0.915346 0.765327 0.739359 0.756904 0.604577 0.714779 0.479756 0.647385 0.389897 0.592154 0.369936 0.568750 0.207679 0.572500 0.114077 0.538798 0.124051 0.472337 0.210179 0.435827 0.325000 0.427404 0.392397 0.448933 0.444821 0.490125 0.504718 0.467654 0.537179 0.426471 0.535923 0.374048 0.534679 0.374048 0.407372 0.501356 0.371179 0.475144 0.297538 0.464846 0.232641 0.476077 0.183962 0.499481 0.243872 0.524760 0.325000 0.518202 0.406128 0.502288 0.537179 0.371240 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765565_54_6724611.txt b/datasets/搭电测试/train/labels/璁㈠崟1765565_54_6724611.txt new file mode 100644 index 0000000..d861b51 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765565_54_6724611.txt @@ -0,0 +1 @@ +0 0.650872 0.454150 0.567117 0.479058 0.471811 0.472558 0.494917 0.560288 0.444372 0.620938 0.393828 0.603608 0.376500 0.486638 0.399606 0.474725 0.414044 0.417325 0.447261 0.418408 0.471811 0.446567 0.558456 0.448733 0.645100 0.418408 0.619106 0.248367 0.526683 0.237538 0.479028 0.231038 0.431372 0.167137 0.414044 0.198546 0.415489 0.254867 0.416933 0.319850 0.448706 0.235371 0.486250 0.254867 0.460256 0.370754 0.385167 0.372917 0.370722 0.258113 0.389494 0.248367 0.380833 0.181217 0.416933 0.141146 0.458811 0.140062 0.506467 0.209375 0.558456 0.223454 0.616217 0.227788 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765566_54_6724619.txt b/datasets/搭电测试/train/labels/璁㈠崟1765566_54_6724619.txt new file mode 100644 index 0000000..2bd0b17 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765566_54_6724619.txt @@ -0,0 +1 @@ +0 0.786617 0.402596 0.669650 0.431404 0.652894 0.502779 0.682933 0.517833 0.803222 0.485233 0.856656 0.527904 0.863444 0.588013 0.806544 0.660687 0.769867 0.674550 0.756439 0.646933 0.646256 0.698271 0.576072 0.708342 0.499100 0.723396 0.454044 0.668267 0.388917 0.565488 0.358883 0.564187 0.412311 0.663179 0.474117 0.740942 0.539244 0.772242 0.629500 0.774733 0.686256 0.738450 0.709650 0.725888 0.691311 0.814808 0.728133 0.812317 0.781561 0.695779 0.858389 0.654404 0.893478 0.600579 0.890156 0.524112 0.796583 0.450142 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765570_54_6724641.txt b/datasets/搭电测试/train/labels/璁㈠崟1765570_54_6724641.txt new file mode 100644 index 0000000..95263b7 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765570_54_6724641.txt @@ -0,0 +1 @@ +0 0.457396 0.400068 0.400586 0.304824 0.370508 0.314854 0.305352 0.291045 0.261901 0.291045 0.225143 0.326133 0.230156 0.391289 0.265247 0.427637 0.221810 0.438916 0.211784 0.463975 0.228490 0.494053 0.246875 0.512842 0.236849 0.584277 0.246875 0.608086 0.256901 0.660713 0.412279 0.720869 0.452383 0.707080 0.428997 0.623125 0.281953 0.580518 0.285299 0.512842 0.241862 0.457705 0.275273 0.455205 0.332083 0.461465 0.378867 0.490293 0.435677 0.544180 0.462409 0.536660 0.395573 0.470244 0.465755 0.480264 0.472435 0.455205 0.445703 0.452695 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765572_54_6724696.txt b/datasets/搭电测试/train/labels/璁㈠崟1765572_54_6724696.txt new file mode 100644 index 0000000..04c8e13 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765572_54_6724696.txt @@ -0,0 +1 @@ +0 0.476813 0.227193 0.478067 0.125687 0.500627 0.121927 0.529447 0.154513 0.546993 0.230953 0.557020 0.296113 0.538220 0.367547 0.515667 0.505387 0.520673 0.524187 0.590853 0.539220 0.652253 0.588093 0.659773 0.621927 0.644733 0.624433 0.610900 0.596867 0.529447 0.559273 0.489347 0.599373 0.557020 0.667040 0.543233 0.677067 0.394107 0.556767 0.416667 0.519173 0.519420 0.547993 0.504387 0.532960 0.501880 0.452753 0.518173 0.366293 0.536967 0.301127 0.519420 0.200880 0.514413 0.256013 0.490600 0.253507 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765574_54_6724784.txt b/datasets/搭电测试/train/labels/璁㈠崟1765574_54_6724784.txt new file mode 100644 index 0000000..9e117f1 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765574_54_6724784.txt @@ -0,0 +1 @@ +0 0.445020 0.667040 0.387690 0.568047 0.355735 0.589347 0.405545 0.694613 0.444080 0.737220 0.482615 0.733460 0.514565 0.679573 0.516445 0.596867 0.478855 0.534213 0.427160 0.470300 0.395205 0.392607 0.376410 0.391353 0.388630 0.447747 0.424340 0.506640 0.463815 0.544233 0.492950 0.584333 0.503290 0.634460 0.489190 0.695867 0.461935 0.712153 0.427160 0.692107 0.445020 0.665787 0.576595 0.689600 0.606675 0.762280 0.689380 0.789847 0.708175 0.776067 0.698780 0.718420 0.649905 0.704633 0.648965 0.670800 0.667765 0.659527 0.802160 0.752253 0.882050 0.777320 0.894265 0.749747 0.676220 0.620673 0.649905 0.398873 0.540885 0.220927 0.539945 0.252253 0.597275 0.341227 0.634870 0.428947 0.653665 0.590600 0.576595 0.688347 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765576_54_6724664.txt b/datasets/搭电测试/train/labels/璁㈠崟1765576_54_6724664.txt new file mode 100644 index 0000000..e0bc900 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765576_54_6724664.txt @@ -0,0 +1 @@ +0 0.337026 0.123359 0.448516 0.154473 0.453701 0.171758 0.496919 0.232839 0.518525 0.350378 0.526304 0.440260 0.609272 0.511712 0.704346 0.562415 0.782129 0.560111 0.865103 0.501341 0.895352 0.442565 0.891030 0.391862 0.840034 0.380339 0.691382 0.533607 0.642114 0.454089 0.764844 0.275475 0.796821 0.297370 0.719038 0.424128 0.825342 0.348073 0.832256 0.365358 0.887573 0.357292 0.919551 0.398776 0.909180 0.472533 0.877202 0.523236 0.811514 0.576243 0.707803 0.588919 0.608408 0.545130 0.528032 0.471380 0.537539 0.531302 0.547046 0.602747 0.570381 0.705306 0.607544 0.779063 0.691748 0.841862 0.782959 0.750130 0.665625 0.806576 0.653369 0.739453 0.855127 0.583984 0.895264 0.653060 0.815186 0.723958 0.808057 0.789434 0.759658 0.847051 0.698296 0.875859 0.635200 0.859727 0.557417 0.737578 0.514204 0.527845 0.507290 0.449479 0.373325 0.394167 0.372461 0.356139 0.393203 0.354987 0.506426 0.418366 0.492598 0.288151 0.447651 0.201719 0.338755 0.179824 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765577_54_6724746.txt b/datasets/搭电测试/train/labels/璁㈠崟1765577_54_6724746.txt new file mode 100644 index 0000000..2b2efc5 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765577_54_6724746.txt @@ -0,0 +1 @@ +0 0.621227 0.324940 0.779947 0.413910 0.754893 0.447740 0.731493 0.436470 0.524307 0.540480 0.627907 0.620680 0.671347 0.672060 0.668000 0.689600 0.584467 0.690850 0.484213 0.639470 0.495907 0.619420 0.602840 0.646990 0.549373 0.594360 0.447453 0.516670 0.477533 0.494110 0.499253 0.519170 0.581120 0.487840 0.647947 0.454010 0.714787 0.421430 0.596160 0.357520 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765579_54_6724725.txt b/datasets/搭电测试/train/labels/璁㈠崟1765579_54_6724725.txt new file mode 100644 index 0000000..3c4f520 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765579_54_6724725.txt @@ -0,0 +1 @@ +0 0.402721 0.365566 0.356810 0.381924 0.313190 0.438730 0.282201 0.505020 0.267292 0.595400 0.291393 0.649629 0.314349 0.665127 0.385508 0.604004 0.378620 0.585068 0.408464 0.551504 0.391237 0.546338 0.377474 0.542031 0.289089 0.610039 0.292539 0.538584 0.317786 0.457676 0.371732 0.390527 0.405013 0.379336 0.402721 0.364707 0.666471 0.476270 0.726146 0.487451 0.772057 0.509834 0.820260 0.530498 0.854701 0.558906 0.873060 0.587305 0.870768 0.605391 0.844362 0.611416 0.785833 0.597637 0.735339 0.568369 0.751406 0.601943 0.733034 0.613135 0.620560 0.531357 0.689427 0.518447 0.805339 0.573535 0.813385 0.591611 0.847812 0.601084 0.855846 0.589033 0.829453 0.558037 0.777799 0.523613 0.707786 0.498643 0.654987 0.482295 0.666471 0.476270 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765586_54_6724821.txt b/datasets/搭电测试/train/labels/璁㈠崟1765586_54_6724821.txt new file mode 100644 index 0000000..0553c75 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765586_54_6724821.txt @@ -0,0 +1 @@ +0 0.597814 0.079839 0.560152 0.148604 0.511742 0.142134 0.509946 0.107344 0.549394 0.007832 0.587056 0.004600 0.642641 0.113818 0.660574 0.224653 0.610368 0.362998 0.347305 0.673257 0.375996 0.745825 0.402532 0.770747 0.563377 0.766455 0.570552 0.785952 0.426558 0.785952 0.539351 0.853105 0.642457 0.892100 0.767446 0.896387 0.822489 0.797847 0.863377 0.758853 0.841861 0.729648 0.688182 0.738301 0.673658 0.713384 0.793799 0.671152 0.820162 0.687334 0.736245 0.722041 0.865714 0.716621 0.885076 0.750195 0.800974 0.899624 0.752922 0.914834 0.556028 0.895337 0.395357 0.789189 0.251190 0.790244 0.112045 0.816294 0.012165 0.804482 0.012165 0.785630 0.105411 0.798657 0.230747 0.775518 0.375281 0.771147 0.298171 0.697202 0.343182 0.620347 0.435887 0.541304 0.543831 0.409272 0.618615 0.243667 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765588_54_6724842.txt b/datasets/搭电测试/train/labels/璁㈠崟1765588_54_6724842.txt new file mode 100644 index 0000000..c2fe26e --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765588_54_6724842.txt @@ -0,0 +1,2 @@ +0 0.131289 0.455723 0.150288 0.550384 0.178291 0.642389 0.292290 0.725052 0.353291 0.821055 0.409292 0.934388 0.387290 0.997051 0.359292 0.993053 0.369292 0.943717 0.359292 0.869056 0.297290 0.754388 0.203291 0.687721 0.133291 0.649056 0.107290 0.639720 0.061289 0.651719 0.097290 0.703717 0.079292 0.727721 0.000000 0.632572 0.000000 0.630462 0.008291 0.615723 0.055288 0.626387 0.107290 0.618385 0.144292 0.634388 0.165288 0.643717 0.125288 0.541055 0.091289 0.602389 0.070288 0.589056 0.119292 0.454388 +2 0.045288 0.506387 0.080288 0.805052 0.196289 0.773053 0.165288 0.474388 diff --git a/datasets/搭电测试/train/labels/璁㈠崟1765590_54_6724841.txt b/datasets/搭电测试/train/labels/璁㈠崟1765590_54_6724841.txt new file mode 100644 index 0000000..d9f6e55 --- /dev/null +++ b/datasets/搭电测试/train/labels/璁㈠崟1765590_54_6724841.txt @@ -0,0 +1 @@ +0 0.842427 0.443772 0.870307 0.443772 0.886243 0.485603 0.931389 0.469671 0.979196 0.300351 0.906170 0.268487 0.851711 0.304342 0.829137 0.383026 0.718918 0.531425 0.641901 0.605121 0.527690 0.668871 0.437398 0.682807 0.382939 0.654923 0.357719 0.659901 0.406842 0.700735 0.494488 0.705713 0.575497 0.689781 0.705643 0.601140 0.795936 0.481623 0.842427 0.441787 0.637909 0.336206 0.591433 0.205735 0.536988 0.184825 0.469269 0.182829 0.392237 0.206732 0.293977 0.251557 0.208977 0.311316 0.143904 0.376053 0.085482 0.463695 0.114693 0.515482 0.145234 0.501546 0.113363 0.484616 0.163830 0.382029 0.293977 0.272467 0.429430 0.214704 0.518392 0.198761 0.554254 0.334221 0.582135 0.321272 0.599401 0.350154 0.637909 0.334221 diff --git a/datasets/搭电测试/val/.DS_Store b/datasets/搭电测试/val/.DS_Store new file mode 100644 index 0000000..90c4aaf Binary files /dev/null and b/datasets/搭电测试/val/.DS_Store differ diff --git a/datasets/搭电测试/val/images/璁㈠崟1765592_54_6724907.jpg b/datasets/搭电测试/val/images/璁㈠崟1765592_54_6724907.jpg new file mode 100644 index 0000000..b3dfbf8 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765592_54_6724907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482846d7e52f9c33023d5ec1669cc1db9a0b9a10f19bcb6a1a3fad666f26b2c4 +size 341382 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765594_54_6724884.jpg b/datasets/搭电测试/val/images/璁㈠崟1765594_54_6724884.jpg new file mode 100644 index 0000000..b8c492e --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765594_54_6724884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595730a56737c15feae13b9c851a88adbb14816666c9346f95d7a0f1e0038cd9 +size 111128 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765595_54_6724889.jpg b/datasets/搭电测试/val/images/璁㈠崟1765595_54_6724889.jpg new file mode 100644 index 0000000..1fa90a9 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765595_54_6724889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71a2443fb76da89340f27f430da822d3257228cd0d95c79bac632be52bee350 +size 259561 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765597_54_6724951.jpg b/datasets/搭电测试/val/images/璁㈠崟1765597_54_6724951.jpg new file mode 100644 index 0000000..64a3545 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765597_54_6724951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16de427f6993316e75eaa6dc95fa3e7b9bb90e8c9b40357be507bd4b30dffaa3 +size 1104680 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765600_54_6724932.jpg b/datasets/搭电测试/val/images/璁㈠崟1765600_54_6724932.jpg new file mode 100644 index 0000000..cdeea11 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765600_54_6724932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615e4e55e55fd6763fa37f264f21b925d5a7123e590c5443c5c7192f7eb1a3e9 +size 91241 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765607_54_6724987.jpg b/datasets/搭电测试/val/images/璁㈠崟1765607_54_6724987.jpg new file mode 100644 index 0000000..16a1524 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765607_54_6724987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1a5ac1a4ac869bd071e1dff622f47b7bc1245007daf130957d81c90a34a285 +size 121850 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765608_54_6725008.jpg b/datasets/搭电测试/val/images/璁㈠崟1765608_54_6725008.jpg new file mode 100644 index 0000000..841f118 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765608_54_6725008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d430390d2de01f988f5808e09da887b7643fb5bd2b2ad3da50785221191813e1 +size 120483 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765609_54_6725001.jpg b/datasets/搭电测试/val/images/璁㈠崟1765609_54_6725001.jpg new file mode 100644 index 0000000..4df4165 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765609_54_6725001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc398ff6bca7effc7d88457ce1c2c608522299d7eed7a99f2feae2b5f2a5714 +size 110322 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765612_54_6725031.jpg b/datasets/搭电测试/val/images/璁㈠崟1765612_54_6725031.jpg new file mode 100644 index 0000000..89f8851 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765612_54_6725031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47ae94b41d554dbc5d0943933e8aa0e6cb4471ac48146327d40d856e7c8c9a7a +size 129633 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765614_54_6725046.jpg b/datasets/搭电测试/val/images/璁㈠崟1765614_54_6725046.jpg new file mode 100644 index 0000000..600bd36 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765614_54_6725046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f094806fcbed91ddf45557f02f676bf1ee7db5248286c6d637a3aeaa480517 +size 137428 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765618_54_6725076.jpg b/datasets/搭电测试/val/images/璁㈠崟1765618_54_6725076.jpg new file mode 100644 index 0000000..757c2a8 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765618_54_6725076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fdcdbbd75b388a4dfc715a43e70a3f58dcc09a8db174c0eba9e90c0017377ce +size 117802 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765619_54_6725089.jpg b/datasets/搭电测试/val/images/璁㈠崟1765619_54_6725089.jpg new file mode 100644 index 0000000..5f964a2 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765619_54_6725089.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b2436705d96f645c3ac1816dee7fe8048685a8dea96eba5c27bbe143f4172c +size 153633 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765620_54_6725100.jpg b/datasets/搭电测试/val/images/璁㈠崟1765620_54_6725100.jpg new file mode 100644 index 0000000..77fbc4b --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765620_54_6725100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54faa818de25a8c9e8d4651dd631ca31263bca6568599f5a8d015f2ae8e501d9 +size 125610 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765625_54_6725138.jpg b/datasets/搭电测试/val/images/璁㈠崟1765625_54_6725138.jpg new file mode 100644 index 0000000..9e8eab1 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765625_54_6725138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9ce3bf03817f157804c080fb2ac73791e2b9d6b00f5bc92f2744dafe4527ea +size 168187 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765627_54_6725198.jpg b/datasets/搭电测试/val/images/璁㈠崟1765627_54_6725198.jpg new file mode 100644 index 0000000..754da06 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765627_54_6725198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc645b4340e347f1e7317591fbd53246a3ee21f2413e6fc9ecde3aa453f51d7 +size 154320 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765630_54_6725162.jpg b/datasets/搭电测试/val/images/璁㈠崟1765630_54_6725162.jpg new file mode 100644 index 0000000..e6877c5 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765630_54_6725162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b688ffd7d0e32597de098b1cbb82bb61aa5dffa899be33b86976bfdf28b30 +size 158882 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765632_54_6725326.jpg b/datasets/搭电测试/val/images/璁㈠崟1765632_54_6725326.jpg new file mode 100644 index 0000000..d490d66 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765632_54_6725326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513154b9467105da035be3b4082dfd3073c2dd1d308209828a90f97cae223eab +size 1779498 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765636_54_6725331.jpg b/datasets/搭电测试/val/images/璁㈠崟1765636_54_6725331.jpg new file mode 100644 index 0000000..7a915ea --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765636_54_6725331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee40c3d0b1349d6547c92f38476e916363da7c14f1e3136c4844ef61d7cf93ef +size 330474 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765638_54_6725280.jpg b/datasets/搭电测试/val/images/璁㈠崟1765638_54_6725280.jpg new file mode 100644 index 0000000..89ac635 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765638_54_6725280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4a7257e53a092a2c82e34095cd3286014daf2f1ef3c4ba325ce1ffa1b8575b +size 149947 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765640_54_6725287.jpg b/datasets/搭电测试/val/images/璁㈠崟1765640_54_6725287.jpg new file mode 100644 index 0000000..dc3dda5 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765640_54_6725287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bbafaa46df3be46fbc6510660dd3eecb6f988fa90821cccf7bad8b0df8ac12 +size 411514 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765641_54_6725413.jpg b/datasets/搭电测试/val/images/璁㈠崟1765641_54_6725413.jpg new file mode 100644 index 0000000..617bbb6 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765641_54_6725413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89be9c3650ba579a1b3a2501b1bf7c8bffee8cfa20f9527e25654029c7a29734 +size 117145 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765644_54_6725216.jpg b/datasets/搭电测试/val/images/璁㈠崟1765644_54_6725216.jpg new file mode 100644 index 0000000..8708809 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765644_54_6725216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0bb30ad52c9226512a3eee076cc522f40f0ed3dc4edc858fde7a7b3b84521c +size 116430 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765648_54_6725240.jpg b/datasets/搭电测试/val/images/璁㈠崟1765648_54_6725240.jpg new file mode 100644 index 0000000..810a735 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765648_54_6725240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cedaadc641e2fa658870100dc9ec309a9154068f3d42cecb6d50bb06a2778dc +size 122330 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765653_54_6725441.jpg b/datasets/搭电测试/val/images/璁㈠崟1765653_54_6725441.jpg new file mode 100644 index 0000000..d176253 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765653_54_6725441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9dc11fa0e6d6dac420737d40dcd26366aff18afead0148146997cad2e37604d +size 85936 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765654_54_6725562.jpg b/datasets/搭电测试/val/images/璁㈠崟1765654_54_6725562.jpg new file mode 100644 index 0000000..47d4c87 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765654_54_6725562.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a4f5cd5809107e1e787674728a94fc774109b29b31be19c7dca6f11eb99b09 +size 783206 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765655_54_6725475.jpg b/datasets/搭电测试/val/images/璁㈠崟1765655_54_6725475.jpg new file mode 100644 index 0000000..ccac0f5 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765655_54_6725475.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5639721501889abf2040dd98889524685d888d5e6d550275feef548b11438ec +size 147566 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765656_54_6725516.jpg b/datasets/搭电测试/val/images/璁㈠崟1765656_54_6725516.jpg new file mode 100644 index 0000000..af27e91 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765656_54_6725516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddfbf9611b5593449d376ac4af265307bc61ade3251020d529763b4fbde0daee +size 176168 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765658_54_6725314.jpg b/datasets/搭电测试/val/images/璁㈠崟1765658_54_6725314.jpg new file mode 100644 index 0000000..1b8593f --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765658_54_6725314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59ea4ebc57838dc2bb211a26cece6ee974e7429a88ef7d94d906cc313f4c46b +size 141361 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765659_54_6725362.jpg b/datasets/搭电测试/val/images/璁㈠崟1765659_54_6725362.jpg new file mode 100644 index 0000000..cbc75bc --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765659_54_6725362.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c565d948c87a7cf48830726f11da14b02516310a3ae1562baf8691b36022015 +size 1314820 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765661_54_6725385.jpg b/datasets/搭电测试/val/images/璁㈠崟1765661_54_6725385.jpg new file mode 100644 index 0000000..042106a --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765661_54_6725385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76107b22e34e132d6aad00b4bf240e89740437a5d9b44925deb9d315a16da97 +size 109598 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765662_54_6725380.jpg b/datasets/搭电测试/val/images/璁㈠崟1765662_54_6725380.jpg new file mode 100644 index 0000000..1402b10 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765662_54_6725380.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1083ae9652df30e9459f523ac994ef5bec1edd4545a03a4337a285967050f9b2 +size 146144 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765663_54_6725532.jpg b/datasets/搭电测试/val/images/璁㈠崟1765663_54_6725532.jpg new file mode 100644 index 0000000..3b689c0 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765663_54_6725532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a1ded7c45795467aa500dcdcb121ee492f6fe3ba98218bd0c1b73a33672401 +size 307573 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765664_54_6725333.jpg b/datasets/搭电测试/val/images/璁㈠崟1765664_54_6725333.jpg new file mode 100644 index 0000000..efa7c03 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765664_54_6725333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9869727db6aa33acc53e8a04410d38eb3d00576644bff2b239f332de243ce717 +size 163635 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765665_54_6725425.jpg b/datasets/搭电测试/val/images/璁㈠崟1765665_54_6725425.jpg new file mode 100644 index 0000000..70bdc8a --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765665_54_6725425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf3e62a0e1fe3a1e22c93d2c857d7bf06eb1fdd6f469092aa901253f2628233 +size 307387 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765670_54_6725673.jpg b/datasets/搭电测试/val/images/璁㈠崟1765670_54_6725673.jpg new file mode 100644 index 0000000..e957589 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765670_54_6725673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0083764c98e5e691fc477839277aa128deff4bc614de2333fdddbcc58b19969f +size 143051 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765678_54_6725608.jpg b/datasets/搭电测试/val/images/璁㈠崟1765678_54_6725608.jpg new file mode 100644 index 0000000..ff40f67 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765678_54_6725608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9424368188d80d2015e83f2b4efd4b626e651823219703282df3d3b65a1caa +size 197656 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765681_54_6725526.jpg b/datasets/搭电测试/val/images/璁㈠崟1765681_54_6725526.jpg new file mode 100644 index 0000000..3d28669 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765681_54_6725526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023da4e9123b54e31b7fe98c394c1e49bdff68d96f49abb1b2321ecd5c52be41 +size 454309 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765684_54_6725518.jpg b/datasets/搭电测试/val/images/璁㈠崟1765684_54_6725518.jpg new file mode 100644 index 0000000..b2c1bc6 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765684_54_6725518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacc342cd79b268b9da3ed9f5e541f3a47630a85bc30af434994ab281204a7a3 +size 1909691 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765685_54_6725613.jpg b/datasets/搭电测试/val/images/璁㈠崟1765685_54_6725613.jpg new file mode 100644 index 0000000..176cb6d --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765685_54_6725613.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5a5d6ec1866e6129efd1c434dffddf2d6cc1eef6eff859cdb358d81286d026 +size 117261 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765689_54_6725811.jpg b/datasets/搭电测试/val/images/璁㈠崟1765689_54_6725811.jpg new file mode 100644 index 0000000..0e06b7d --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765689_54_6725811.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c942309ca05e4926c7dbac44fd4c2e1659b832374d4fe9273cff8568f961ef +size 173292 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765691_54_6725966.jpg b/datasets/搭电测试/val/images/璁㈠崟1765691_54_6725966.jpg new file mode 100644 index 0000000..c6ca286 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765691_54_6725966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca2665283d3e36b9bfcbc1454bb03fea100e076c1149f2ac9242f92232730f6 +size 145901 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765693_54_6725729.jpg b/datasets/搭电测试/val/images/璁㈠崟1765693_54_6725729.jpg new file mode 100644 index 0000000..b639a10 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765693_54_6725729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457940b05acf79c9a9a679986c24553e9cee0701840165633420a7abaecdaea2 +size 116650 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765694_54_6725745.jpg b/datasets/搭电测试/val/images/璁㈠崟1765694_54_6725745.jpg new file mode 100644 index 0000000..47d4dac --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765694_54_6725745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459725be0e94a7bba4a9a84ca529facc95a45077b1127df1a4d2c56c154f9b02 +size 198083 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765695_54_6725788.jpg b/datasets/搭电测试/val/images/璁㈠崟1765695_54_6725788.jpg new file mode 100644 index 0000000..e46b18a --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765695_54_6725788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08a6bed9df5beca142948c0c5713227e1cf0088a6fb78c68adefa3d87029539 +size 136694 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765697_54_6725707.jpg b/datasets/搭电测试/val/images/璁㈠崟1765697_54_6725707.jpg new file mode 100644 index 0000000..32fcdbd --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765697_54_6725707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e926c61e3476e3c3c82067be400990666764369e8907382f4b42163ffdca338c +size 1923419 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765702_54_6725808.jpg b/datasets/搭电测试/val/images/璁㈠崟1765702_54_6725808.jpg new file mode 100644 index 0000000..199b981 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765702_54_6725808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3717e1c8b451080bbbea4eaf3559f3df3a500912fc98286d74b71619af94d66 +size 163430 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765703_54_6725834.jpg b/datasets/搭电测试/val/images/璁㈠崟1765703_54_6725834.jpg new file mode 100644 index 0000000..f3232e7 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765703_54_6725834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5755c5285ee1ed47252d1d5d27c213af60148dedf8c38cefb81ad80a46ef6c78 +size 381739 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765705_54_6725781.jpg b/datasets/搭电测试/val/images/璁㈠崟1765705_54_6725781.jpg new file mode 100644 index 0000000..30684a6 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765705_54_6725781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d348370afd4b6257e69d88576cd589eec7ac25f396a39f75fca828616b58ac53 +size 110523 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765706_54_6725800.jpg b/datasets/搭电测试/val/images/璁㈠崟1765706_54_6725800.jpg new file mode 100644 index 0000000..8a022e8 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765706_54_6725800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97406264e697051969905b0c8f653272e3f4edb0fea004532e27eb40e5f82661 +size 2116206 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765711_54_6725950.jpg b/datasets/搭电测试/val/images/璁㈠崟1765711_54_6725950.jpg new file mode 100644 index 0000000..118df1e --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765711_54_6725950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172ef70a0d8cf39ff2d7451673e1e60f9c31f9df702402b1ab4b8e2a57ea346e +size 123075 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765712_54_6725977.jpg b/datasets/搭电测试/val/images/璁㈠崟1765712_54_6725977.jpg new file mode 100644 index 0000000..7fd8e9c --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765712_54_6725977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ae3c431411bf3ada0ae66ec6f7c268c99ee01d14a3f995656894b80bfcbf74 +size 88428 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765713_54_6725894.jpg b/datasets/搭电测试/val/images/璁㈠崟1765713_54_6725894.jpg new file mode 100644 index 0000000..1fdddeb --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765713_54_6725894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58afa2e60d48bf3049572ea8aee2373bdd0603c02f801326db894f2bf25d8fa5 +size 143583 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765714_54_6725935.jpg b/datasets/搭电测试/val/images/璁㈠崟1765714_54_6725935.jpg new file mode 100644 index 0000000..345a320 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765714_54_6725935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed80d1019d3e7d8baa3ee4e97b98eff2faeb8baae1471cfe02cb66f3b68cb23 +size 135002 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765715_54_6725901.jpg b/datasets/搭电测试/val/images/璁㈠崟1765715_54_6725901.jpg new file mode 100644 index 0000000..539b4b8 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765715_54_6725901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87707c04a1e085868ce8cb34118bc7a03a1a223aff1ae3e15ebd1277d1e96e70 +size 336380 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765716_54_6726098.jpg b/datasets/搭电测试/val/images/璁㈠崟1765716_54_6726098.jpg new file mode 100644 index 0000000..e24e1d0 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765716_54_6726098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bb442bacb55c38f236c72b1019328182ef4a22b29b24098173b69d582f6141 +size 110539 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765717_54_6726011.jpg b/datasets/搭电测试/val/images/璁㈠崟1765717_54_6726011.jpg new file mode 100644 index 0000000..8244d60 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765717_54_6726011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e22f6f6e97119ebb44a929d40bbac20dfbeb389046295a7a8f4b97c3f058675 +size 165010 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765720_54_6725918.jpg b/datasets/搭电测试/val/images/璁㈠崟1765720_54_6725918.jpg new file mode 100644 index 0000000..a4cc04f --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765720_54_6725918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f40582a6b9ccabe68b72b6c291efdaf73366185857fb6ffc34c92a7d00d4e27 +size 164662 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765722_54_6726007.jpg b/datasets/搭电测试/val/images/璁㈠崟1765722_54_6726007.jpg new file mode 100644 index 0000000..4ade647 --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765722_54_6726007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d24f1f4a92ef5fcc8163cc34c5c2665cdaeac750cf8eb5b31f94d530239b36 +size 152858 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765723_54_6726055.jpg b/datasets/搭电测试/val/images/璁㈠崟1765723_54_6726055.jpg new file mode 100644 index 0000000..dc0ddaf --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765723_54_6726055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c0f063bf7d1df436c78dce8e77f619a5e787422ff10e462f74113a855066c8 +size 154841 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765735_54_6726094.jpg b/datasets/搭电测试/val/images/璁㈠崟1765735_54_6726094.jpg new file mode 100644 index 0000000..c86bd1d --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765735_54_6726094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2f3d623c4314652f6088f1e9295f9d235ae87e775d90afc3e18e43f75431f5 +size 115505 diff --git a/datasets/搭电测试/val/images/璁㈠崟1765737_54_6726068.jpg b/datasets/搭电测试/val/images/璁㈠崟1765737_54_6726068.jpg new file mode 100644 index 0000000..6f2d44a --- /dev/null +++ b/datasets/搭电测试/val/images/璁㈠崟1765737_54_6726068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ad2152586e8548d85949c1c919536419899ee493d36654f651c5a5ec5c06883 +size 111112 diff --git a/datasets/搭电测试/val/labels.cache b/datasets/搭电测试/val/labels.cache new file mode 100644 index 0000000..5d3f9c0 Binary files /dev/null and b/datasets/搭电测试/val/labels.cache differ diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765592_54_6724907.txt b/datasets/搭电测试/val/labels/璁㈠崟1765592_54_6724907.txt new file mode 100644 index 0000000..4803898 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765592_54_6724907.txt @@ -0,0 +1 @@ +0 0.532012 0.446719 0.667588 0.402813 0.665005 0.360638 0.641118 0.348587 0.497793 0.358913 0.495854 0.416589 0.528135 0.480286 0.579785 0.503529 0.646284 0.522467 0.706323 0.529355 0.763135 0.543125 0.820596 0.587891 0.825762 0.605104 0.831567 0.603385 0.826406 0.566367 0.765718 0.525911 0.685664 0.506973 0.615293 0.498366 0.552671 0.471680 0.532012 0.445853 0.475195 0.682578 0.449375 0.639538 0.436460 0.532799 0.432588 0.383014 0.448081 0.259063 0.454536 0.199668 0.426777 0.175566 0.415801 0.195365 0.436460 0.216022 0.414512 0.352891 0.415801 0.457044 0.423550 0.568092 0.436460 0.652448 0.466807 0.701517 0.475195 0.680853 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765594_54_6724884.txt b/datasets/搭电测试/val/labels/璁㈠崟1765594_54_6724884.txt new file mode 100644 index 0000000..604a7e3 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765594_54_6724884.txt @@ -0,0 +1 @@ +0 0.198164 0.565674 0.367188 0.645186 0.514687 0.722393 0.702135 0.748896 0.911107 0.752354 0.940299 0.723545 0.889596 0.718936 0.868086 0.728154 0.643750 0.721240 0.511615 0.691279 0.350273 0.611768 0.252474 0.542578 0.287630 0.379883 0.296497 0.347871 0.348737 0.337500 0.417891 0.338652 0.508542 0.346719 0.562318 0.345566 0.566927 0.327129 0.437865 0.324824 0.357969 0.323672 0.299570 0.329434 0.227083 0.328125 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765595_54_6724889.txt b/datasets/搭电测试/val/labels/璁㈠崟1765595_54_6724889.txt new file mode 100644 index 0000000..3822d32 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765595_54_6724889.txt @@ -0,0 +1 @@ +0 0.282095 0.546353 0.146710 0.459007 0.038980 0.490067 0.038980 0.534707 0.121960 0.526947 0.209305 0.600707 0.252980 0.686107 0.094300 0.705520 0.049170 0.748220 0.049170 0.814213 0.121960 0.876327 0.194750 0.868567 0.268995 0.810333 0.282095 0.719107 0.350515 0.719107 0.458245 0.600707 0.440775 0.579353 0.353430 0.686107 0.286460 0.693873 0.248610 0.598760 0.289375 0.608467 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765597_54_6724951.txt b/datasets/搭电测试/val/labels/璁㈠崟1765597_54_6724951.txt new file mode 100644 index 0000000..348a3e9 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765597_54_6724951.txt @@ -0,0 +1 @@ +0 0.518722 0.582167 0.374883 0.601517 0.392739 0.640946 0.547483 0.649875 0.593117 0.634250 0.647672 0.649133 0.684378 0.646154 0.710167 0.616396 0.751828 0.583662 0.807378 0.568783 0.821267 0.562829 0.813333 0.552412 0.794483 0.555392 0.720083 0.582175 0.683383 0.619371 0.664533 0.635742 0.587161 0.616396 0.543517 0.621604 0.526650 0.634996 0.455233 0.618629 0.512767 0.602263 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765600_54_6724932.txt b/datasets/搭电测试/val/labels/璁㈠崟1765600_54_6724932.txt new file mode 100644 index 0000000..873ce47 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765600_54_6724932.txt @@ -0,0 +1 @@ +0 0.207135 0.555742 0.160664 0.615498 0.128789 0.687207 0.139414 0.738994 0.192539 0.794775 0.270885 0.820664 0.353216 0.820664 0.435547 0.798760 0.493984 0.754932 0.508594 0.703145 0.474062 0.695176 0.462109 0.729033 0.423594 0.764893 0.378451 0.779834 0.310729 0.789795 0.242995 0.774854 0.188555 0.746963 0.167305 0.703145 0.188555 0.640400 0.216432 0.585615 0.227057 0.601553 0.189883 0.672266 0.192539 0.685215 0.235026 0.685215 0.285495 0.592588 0.285495 0.531836 0.208464 0.554746 0.240339 0.215117 0.261589 0.275869 0.290807 0.309736 0.341263 0.308740 0.387747 0.244990 0.391732 0.231055 0.479375 0.203164 0.540456 0.193203 0.606862 0.219102 0.665286 0.274873 0.703802 0.286826 0.638737 0.207148 0.580299 0.181250 0.513906 0.173281 0.428906 0.198184 0.367826 0.217109 0.323997 0.271885 0.266901 0.186230 0.241667 0.192207 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765607_54_6724987.txt b/datasets/搭电测试/val/labels/璁㈠崟1765607_54_6724987.txt new file mode 100644 index 0000000..e30dbd4 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765607_54_6724987.txt @@ -0,0 +1 @@ +0 0.673698 0.656260 0.705833 0.632158 0.742565 0.637324 0.758633 0.667451 0.752891 0.713076 0.687474 0.768164 0.623203 0.787100 0.563516 0.780215 0.508424 0.723398 0.517604 0.650234 0.561224 0.588252 0.589909 0.566738 0.618607 0.567598 0.587617 0.596865 0.553190 0.644209 0.535977 0.694131 0.556628 0.745781 0.607135 0.764717 0.669115 0.750947 0.717318 0.718232 0.737969 0.673477 0.720755 0.649375 0.688620 0.661426 0.463659 0.553828 0.465964 0.590840 0.447591 0.649375 0.418906 0.683809 0.358073 0.713076 0.263958 0.692412 0.237565 0.625273 0.268542 0.565010 0.319049 0.535742 0.384466 0.518535 0.418906 0.537471 0.430378 0.616660 0.422344 0.640762 0.392500 0.634736 0.384466 0.570176 0.377578 0.540908 0.347747 0.544355 0.375286 0.587393 0.383320 0.630439 0.364961 0.639043 0.313307 0.567598 0.281172 0.594277 0.273138 0.637324 0.296094 0.676914 0.332826 0.686387 0.391354 0.674336 0.418906 0.651953 0.444154 0.600303 0.446445 0.546934 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765608_54_6725008.txt b/datasets/搭电测试/val/labels/璁㈠崟1765608_54_6725008.txt new file mode 100644 index 0000000..a0228fa --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765608_54_6725008.txt @@ -0,0 +1 @@ +0 0.414293 0.537460 0.345427 0.481510 0.333960 0.439330 0.367240 0.417810 0.484307 0.443630 0.519893 0.477200 0.533667 0.515080 0.565800 0.556400 0.614000 0.569310 0.618600 0.559840 0.653027 0.569310 0.571533 0.694990 0.531360 0.679490 0.592200 0.587390 0.534813 0.565000 0.493493 0.492700 0.476280 0.466870 0.372973 0.438470 0.358053 0.449660 0.372973 0.482370 0.428067 0.530570 0.638107 0.482370 0.612853 0.402310 0.618600 0.389400 0.616293 0.354970 0.636960 0.303320 0.525627 0.298160 0.509560 0.319680 0.487747 0.328280 0.480867 0.351530 0.549733 0.398870 0.537107 0.407480 0.463653 0.372180 0.457907 0.323980 0.501520 0.292990 0.529067 0.278360 0.631213 0.280080 0.663360 0.299880 0.636960 0.362720 0.673680 0.363580 0.686307 0.399730 0.641547 0.447930 0.688600 0.487530 0.636960 0.482370 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765609_54_6725001.txt b/datasets/搭电测试/val/labels/璁㈠崟1765609_54_6725001.txt new file mode 100644 index 0000000..fab8f53 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765609_54_6725001.txt @@ -0,0 +1 @@ +0 0.601393 0.602031 0.570404 0.597725 0.558919 0.636465 0.588763 0.706182 0.650742 0.723398 0.726497 0.660566 0.732240 0.631299 0.781589 0.564150 0.795365 0.494424 0.760924 0.460000 0.803398 0.422979 0.818320 0.378223 0.786172 0.373916 0.767812 0.373916 0.772409 0.391133 0.793060 0.385967 0.793060 0.413516 0.742565 0.455693 0.695508 0.453105 0.623203 0.475488 0.552044 0.518535 0.441862 0.490986 0.432669 0.509922 0.535977 0.532305 0.476289 0.559854 0.340859 0.566738 0.338555 0.587393 0.421198 0.589121 0.498099 0.577070 0.564661 0.537471 0.588763 0.530586 0.666810 0.519395 0.710430 0.497871 0.744857 0.477217 0.768958 0.497012 0.766667 0.532305 0.750599 0.567598 0.718464 0.618389 0.659922 0.657119 0.646159 0.664863 0.620898 0.661426 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765612_54_6725031.txt b/datasets/搭电测试/val/labels/璁㈠崟1765612_54_6725031.txt new file mode 100644 index 0000000..4b10c2d --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765612_54_6725031.txt @@ -0,0 +1 @@ +0 0.837203 0.418725 0.871634 0.326618 0.797033 0.310265 0.707503 0.386010 0.691438 0.404951 0.706353 0.460039 0.678810 0.468647 0.639791 0.452294 0.632902 0.468647 0.653569 0.496196 0.645529 0.568500 0.637490 0.598637 0.564039 0.688157 0.600771 0.713118 0.671922 0.628765 0.685699 0.513412 0.679961 0.482422 0.716693 0.475539 0.736196 0.451431 0.727020 0.410980 0.800471 0.367941 0.800471 0.422167 0.838353 0.417863 0.482549 0.389461 0.492876 0.312843 0.453856 0.305098 0.438941 0.324039 0.446967 0.398069 0.435490 0.407539 0.382693 0.339529 0.341373 0.355882 0.357451 0.381706 0.387281 0.408392 0.368928 0.447990 0.327608 0.464343 0.259882 0.482422 0.263333 0.503941 0.298915 0.513412 0.347111 0.550431 0.390732 0.589167 0.398758 0.639951 0.352850 0.718284 0.403359 0.748412 0.449268 0.652863 0.435490 0.618431 0.414837 0.547843 0.327608 0.495333 0.404510 0.447990 0.433203 0.460039 0.475660 0.484147 0.513542 0.475539 0.481399 0.387735 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765614_54_6725046.txt b/datasets/搭电测试/val/labels/璁㈠崟1765614_54_6725046.txt new file mode 100644 index 0000000..066a065 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765614_54_6725046.txt @@ -0,0 +1 @@ +0 0.239349 0.593926 0.271094 0.591416 0.284466 0.566357 0.324570 0.550068 0.331250 0.566357 0.357982 0.556328 0.362995 0.451064 0.388060 0.415977 0.361328 0.379639 0.408112 0.353320 0.461576 0.352070 0.556810 0.293174 0.546784 0.260596 0.357982 0.344551 0.294492 0.408457 0.294492 0.433525 0.292812 0.497432 0.277786 0.501191 0.227656 0.452324 0.197578 0.468613 0.237682 0.591416 0.588555 0.415977 0.595234 0.360840 0.638685 0.333271 0.717214 0.333271 0.769010 0.363350 0.772344 0.408457 0.755638 0.446055 0.780703 0.447305 0.770677 0.496182 0.829154 0.463594 0.860898 0.463594 0.852552 0.496182 0.825820 0.523750 0.762331 0.561348 0.707187 0.542549 0.682122 0.555078 0.655391 0.546309 0.685469 0.503701 0.705521 0.448564 0.738932 0.407207 0.732253 0.367109 0.668763 0.353320 0.621979 0.374629 0.615286 0.410967 0.591901 0.415977 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765618_54_6725076.txt b/datasets/搭电测试/val/labels/璁㈠崟1765618_54_6725076.txt new file mode 100644 index 0000000..eff3582 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765618_54_6725076.txt @@ -0,0 +1 @@ +0 0.280990 0.745579 0.268767 0.779410 0.305425 0.796956 0.356181 0.745579 0.380616 0.665382 0.343021 0.641562 0.291328 0.536308 0.272526 0.414757 0.303542 0.494954 0.391892 0.504977 0.455799 0.513750 0.505616 0.530035 0.512188 0.497454 0.399410 0.466134 0.353359 0.471146 0.317639 0.456100 0.285686 0.364630 0.308247 0.315752 0.375911 0.299468 0.472717 0.322014 0.550729 0.288183 0.553542 0.259363 0.482118 0.288183 0.410686 0.273148 0.332682 0.275648 0.286623 0.299468 0.314826 0.250590 0.380642 0.211690 0.508420 0.268171 0.454861 0.182870 0.326102 0.184178 0.274410 0.255602 0.254670 0.334549 0.260313 0.360868 0.252795 0.402222 0.252795 0.479919 0.280990 0.558866 0.324219 0.651597 0.343021 0.684178 0.327040 0.706736 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765619_54_6725089.txt b/datasets/搭电测试/val/labels/璁㈠崟1765619_54_6725089.txt new file mode 100644 index 0000000..2c5cbfa --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765619_54_6725089.txt @@ -0,0 +1 @@ +0 0.202591 0.570117 0.334583 0.637783 0.438177 0.672871 0.493320 0.665352 0.536758 0.635273 0.555143 0.592676 0.540104 0.525000 0.616966 0.625254 0.642018 0.627764 0.682122 0.586406 0.647031 0.502441 0.697161 0.489912 0.730573 0.466104 0.745612 0.417236 0.707187 0.374629 0.650378 0.344551 0.637018 0.364600 0.685469 0.394678 0.720560 0.424756 0.693815 0.471113 0.638685 0.479893 0.632005 0.449814 0.543451 0.434775 0.458229 0.404697 0.443190 0.422246 0.593568 0.466104 0.530078 0.474873 0.515039 0.506201 0.513372 0.558838 0.520052 0.597686 0.496667 0.640293 0.463242 0.652822 0.383047 0.635273 0.321224 0.596426 0.241016 0.542549 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765620_54_6725100.txt b/datasets/搭电测试/val/labels/璁㈠崟1765620_54_6725100.txt new file mode 100644 index 0000000..d03606a --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765620_54_6725100.txt @@ -0,0 +1 @@ +0 0.448177 0.273643 0.463646 0.351934 0.374714 0.351934 0.361185 0.282344 0.382448 0.263496 0.452044 0.209844 0.540977 0.217100 0.610573 0.298291 0.587370 0.376582 0.684036 0.407031 0.691758 0.311338 0.732357 0.312793 0.819362 0.282344 0.858021 0.312793 0.856094 0.379482 0.796159 0.421533 0.684036 0.421533 0.579635 0.395439 0.544844 0.507080 0.513906 0.507080 0.523568 0.398340 0.552578 0.375137 0.571901 0.322939 0.556432 0.259141 0.502305 0.228691 0.417253 0.263496 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765625_54_6725138.txt b/datasets/搭电测试/val/labels/璁㈠崟1765625_54_6725138.txt new file mode 100644 index 0000000..42ec350 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765625_54_6725138.txt @@ -0,0 +1 @@ +0 0.545365 0.534178 0.556649 0.594329 0.581085 0.653218 0.665668 0.680787 0.739913 0.673275 0.771875 0.614375 0.769054 0.527905 0.673186 0.390069 0.626198 0.346204 0.662847 0.343704 0.659089 0.297338 0.620556 0.271019 0.552891 0.286053 0.552891 0.334931 0.597057 0.367512 0.611155 0.363750 0.665668 0.420139 0.718299 0.485301 0.749314 0.549213 0.750252 0.616887 0.732396 0.653218 0.711719 0.640694 0.601762 0.628160 0.571684 0.595579 0.566988 0.537940 0.348941 0.495324 0.310408 0.526655 0.248377 0.526655 0.211719 0.481539 0.187283 0.385046 0.174123 0.292315 0.186345 0.242199 0.216424 0.224653 0.293056 0.253009 0.307031 0.306019 0.288455 0.341898 0.236545 0.317477 0.209549 0.257060 0.200000 0.329051 0.220182 0.443947 0.244618 0.494074 0.290668 0.506609 0.335781 0.477789 0.350816 0.495324 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765627_54_6725198.txt b/datasets/搭电测试/val/labels/璁㈠崟1765627_54_6725198.txt new file mode 100644 index 0000000..484d014 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765627_54_6725198.txt @@ -0,0 +1 @@ +0 0.906276 0.808477 0.955378 0.696924 0.951042 0.612559 0.880286 0.533389 0.776302 0.468506 0.691107 0.451074 0.686771 0.423018 0.745977 0.379697 0.774870 0.323271 0.758984 0.290781 0.735872 0.276699 0.693997 0.313525 0.725768 0.269229 0.701211 0.255146 0.657891 0.291973 0.624674 0.301719 0.647786 0.315693 0.669440 0.309189 0.679557 0.323271 0.669440 0.356953 0.709883 0.355762 0.721432 0.326523 0.747422 0.316777 0.738763 0.355762 0.708438 0.386084 0.678112 0.410020 0.631901 0.361289 0.582799 0.333018 0.536589 0.263701 0.494714 0.220488 0.405182 0.217236 0.406628 0.239980 0.470169 0.269229 0.527930 0.275723 0.561146 0.323271 0.603021 0.361289 0.669440 0.413271 0.536589 0.418584 0.517813 0.366699 0.490378 0.351543 0.454284 0.351543 0.412396 0.368760 0.383516 0.401250 0.363307 0.429521 0.347422 0.477070 0.279544 0.468506 0.230443 0.479336 0.223229 0.493311 0.267995 0.517139 0.328646 0.549629 0.363307 0.551797 0.366185 0.529053 0.328646 0.523633 0.257878 0.489092 0.348854 0.489092 0.358971 0.520391 0.377747 0.520391 0.363307 0.493311 0.384961 0.494502 0.387852 0.507393 0.408073 0.505332 0.409505 0.494502 0.460052 0.493311 0.507708 0.475010 0.533698 0.440244 0.568359 0.433740 0.634792 0.433740 0.673776 0.427246 0.675221 0.449014 0.681003 0.466348 0.724323 0.472842 0.776302 0.488008 0.828294 0.521582 0.860065 0.547568 0.888945 0.569121 0.912057 0.602812 0.926497 0.652627 0.929375 0.686094 0.912057 0.742412 0.877396 0.784658 0.444167 0.372012 0.475937 0.362266 0.509154 0.394756 0.507708 0.423018 0.418177 0.438076 0.392187 0.481504 0.360417 0.475010 0.383516 0.429521 0.418177 0.389336 0.444167 0.371035 0.470169 0.442520 0.499049 0.433740 0.510599 0.449014 0.487487 0.470566 0.426836 0.485840 0.423958 0.472842 0.499049 0.431572 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765630_54_6725162.txt b/datasets/搭电测试/val/labels/璁㈠崟1765630_54_6725162.txt new file mode 100644 index 0000000..b2d2d76 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765630_54_6725162.txt @@ -0,0 +1 @@ +0 0.534863 0.460029 0.557242 0.474010 0.579621 0.449539 0.600131 0.442549 0.629033 0.436255 0.638353 0.441843 0.682170 0.425765 0.673778 0.409686 0.579621 0.439049 0.572157 0.417373 0.475203 0.360735 0.432314 0.362137 0.399686 0.360039 0.396889 0.385912 0.411804 0.434853 0.437908 0.430657 0.445373 0.397098 0.430458 0.371922 0.465882 0.374020 0.489190 0.386608 0.555386 0.423667 0.568431 0.439049 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765632_54_6725326.txt b/datasets/搭电测试/val/labels/璁㈠崟1765632_54_6725326.txt new file mode 100644 index 0000000..3579771 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765632_54_6725326.txt @@ -0,0 +1 @@ +0 0.439300 0.477858 0.383322 0.482371 0.385728 0.501329 0.423050 0.533833 0.447122 0.534737 0.459161 0.551438 0.485644 0.565433 0.507311 0.555500 0.522361 0.517129 0.539211 0.496817 0.557272 0.492300 0.590372 0.494108 0.589172 0.478308 0.569311 0.469279 0.561483 0.471537 0.570511 0.483725 0.541022 0.483725 0.513333 0.499525 0.504906 0.523000 0.489256 0.552342 0.455550 0.522096 0.423050 0.501329 0.451939 0.485983 0.438700 0.477858 0.602411 0.441292 0.615050 0.452575 0.650567 0.457542 0.654178 0.451675 0.666211 0.450321 0.674639 0.460704 0.668622 0.481467 0.669222 0.495012 0.680661 0.497721 0.696311 0.486433 0.702928 0.463863 0.693900 0.439937 0.666211 0.429554 0.638528 0.433617 0.627089 0.435875 0.607828 0.431812 0.602411 0.440842 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765636_54_6725331.txt b/datasets/搭电测试/val/labels/璁㈠崟1765636_54_6725331.txt new file mode 100644 index 0000000..fa81be0 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765636_54_6725331.txt @@ -0,0 +1 @@ +0 0.858268 0.391294 0.995251 0.373770 1.000000 0.341157 1.000000 0.336966 0.852898 0.350804 0.831405 0.312735 0.712288 0.230181 0.606198 0.201054 0.516351 0.197853 0.399510 0.218034 0.327538 0.269828 0.325784 0.333765 0.370643 0.438917 0.286166 0.468833 0.192702 0.493912 0.122603 0.490706 0.079488 0.462363 0.081231 0.408157 0.104684 0.396863 0.153050 0.400098 0.296950 0.400882 0.309586 0.356422 0.212440 0.348328 0.117211 0.343431 0.029129 0.397642 0.021874 0.442966 0.041623 0.495544 0.115349 0.514941 0.214325 0.513373 0.316786 0.485029 0.368900 0.461578 0.381514 0.492338 0.426373 0.489078 0.413889 0.449431 0.476732 0.436500 0.561209 0.435652 0.636819 0.447015 0.683551 0.472882 0.719401 0.468044 0.687037 0.434083 0.582832 0.416255 0.491100 0.416255 0.406634 0.429186 0.359902 0.328083 0.386895 0.262574 0.426373 0.235020 0.507353 0.214833 0.611569 0.221299 0.690664 0.252059 0.760773 0.295691 0.802135 0.333765 0.732026 0.357211 0.733911 0.387127 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765638_54_6725280.txt b/datasets/搭电测试/val/labels/璁㈠崟1765638_54_6725280.txt new file mode 100644 index 0000000..5f852e5 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765638_54_6725280.txt @@ -0,0 +1 @@ +0 0.341024 0.644911 0.307808 0.662234 0.387231 0.733720 0.450774 0.687146 0.421890 0.617835 0.410341 0.598337 0.446444 0.544183 0.491207 0.520354 0.573517 0.500866 0.525866 0.551772 0.512874 0.613504 0.520092 0.679567 0.538858 0.699065 0.548963 0.686063 0.540302 0.609173 0.561969 0.548514 0.599514 0.504114 0.635617 0.508445 0.674606 0.524695 0.677493 0.543100 0.702047 0.550679 0.697703 0.509528 0.609619 0.488947 0.629843 0.443465 0.606732 0.409882 0.599081 0.383169 0.561155 0.375098 0.514829 0.423720 0.564173 0.481890 0.592257 0.462303 0.598071 0.467283 0.583622 0.482451 0.501312 0.492195 0.460879 0.513858 0.398780 0.556102 0.387231 0.598337 0.372795 0.617835 0.393005 0.670906 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765640_54_6725287.txt b/datasets/搭电测试/val/labels/璁㈠崟1765640_54_6725287.txt new file mode 100644 index 0000000..f88f301 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765640_54_6725287.txt @@ -0,0 +1 @@ +0 0.402432 0.311441 0.383589 0.274470 0.343296 0.124288 0.316655 0.097717 0.267266 0.079227 0.236724 0.101181 0.203584 0.153168 0.187988 0.239809 0.195786 0.344939 0.226978 0.461623 0.258818 0.537873 0.303008 0.622205 0.341997 0.681120 0.358892 0.661484 0.305605 0.577153 0.245171 0.437361 0.215928 0.309132 0.213979 0.235191 0.229575 0.168186 0.252319 0.126597 0.284160 0.118507 0.321201 0.153168 0.355645 0.288333 0.349146 0.289488 0.298457 0.177431 0.277666 0.204002 0.364092 0.393464 0.408931 0.348411 0.402432 0.311441 0.675361 0.632604 0.685112 0.612960 0.677964 0.563290 0.634424 0.495130 0.567490 0.425807 0.524600 0.359957 0.514204 0.298733 0.540845 0.234036 0.579189 0.215556 0.624678 0.225946 0.639624 0.279089 0.644819 0.322995 0.642871 0.366892 0.611030 0.363429 0.616226 0.264071 0.605181 0.244436 0.573340 0.247899 0.547993 0.267543 0.538896 0.303351 0.542798 0.341476 0.572690 0.393464 0.601934 0.428125 0.633774 0.466241 0.666265 0.511302 0.689658 0.555200 0.701357 0.619896 0.692910 0.649931 0.675361 0.631450 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765641_54_6725413.txt b/datasets/搭电测试/val/labels/璁㈠崟1765641_54_6725413.txt new file mode 100644 index 0000000..5fe03a8 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765641_54_6725413.txt @@ -0,0 +1 @@ +0 0.676067 0.384990 0.739613 0.356830 0.749720 0.326510 0.696293 0.291850 0.668853 0.290770 0.658747 0.315680 0.644307 0.349250 0.622640 0.408820 0.600973 0.466220 0.574987 0.525790 0.556213 0.571280 0.546107 0.590770 0.418307 0.592290 0.407040 0.604850 0.432160 0.628680 0.497440 0.631500 0.403280 0.656620 0.386533 0.646880 0.375413 0.604850 0.386533 0.541930 0.407040 0.481170 0.436933 0.412610 0.471880 0.338640 0.485600 0.291850 0.484293 0.241270 0.451800 0.217010 0.439387 0.224480 0.460613 0.246900 0.464373 0.288060 0.441840 0.359210 0.413253 0.419110 0.371947 0.510840 0.349560 0.604530 0.368187 0.668100 0.399387 0.696260 0.611667 0.645680 0.614120 0.605390 0.595347 0.591420 0.569213 0.588610 0.604160 0.507160 0.655280 0.378930 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765644_54_6725216.txt b/datasets/搭电测试/val/labels/璁㈠崟1765644_54_6725216.txt new file mode 100644 index 0000000..9880e77 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765644_54_6725216.txt @@ -0,0 +1 @@ +0 0.462513 0.450098 0.463958 0.480420 0.660352 0.488008 0.680560 0.433848 0.479844 0.393779 0.463958 0.406777 0.391745 0.433848 0.331094 0.457676 0.305104 0.488008 0.245898 0.528076 0.195352 0.536738 0.131810 0.532412 0.069714 0.511836 0.048060 0.490166 0.022070 0.477178 0.024948 0.498838 0.050951 0.525908 0.123151 0.550820 0.201133 0.555156 0.267552 0.539990 0.306549 0.510752 0.359974 0.475010 0.403307 0.449014 0.461068 0.431689 0.427852 0.259482 0.582370 0.280059 0.605469 0.255146 0.575143 0.223740 0.406185 0.186914 0.355651 0.202080 0.284883 0.260566 0.302214 0.278975 0.345534 0.232402 0.400417 0.210742 0.426406 0.258398 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765648_54_6725240.txt b/datasets/搭电测试/val/labels/璁㈠崟1765648_54_6725240.txt new file mode 100644 index 0000000..178f073 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765648_54_6725240.txt @@ -0,0 +1 @@ +0 0.370677 0.273496 0.380703 0.202070 0.400755 0.195801 0.417461 0.224629 0.422474 0.322373 0.333919 0.328633 0.308854 0.220869 0.267083 0.240918 0.205260 0.303574 0.145117 0.367480 0.093320 0.431396 0.094987 0.465225 0.211953 0.458965 0.280456 0.461465 0.290482 0.479014 0.181875 0.479014 0.110026 0.486533 0.066589 0.480264 0.066589 0.436406 0.120052 0.358711 0.190234 0.286025 0.232005 0.234648 0.308854 0.198311 0.345612 0.203320 0.369010 0.276006 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765653_54_6725441.txt b/datasets/搭电测试/val/labels/璁㈠崟1765653_54_6725441.txt new file mode 100644 index 0000000..e5fad9a --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765653_54_6725441.txt @@ -0,0 +1 @@ +0 0.213382 0.395135 0.212304 0.416176 0.269477 0.456618 0.338513 0.460674 0.337435 0.432353 0.598480 0.586066 0.655654 0.633799 0.676144 0.688002 0.626520 0.738162 0.643775 0.752721 0.643775 0.752721 0.699869 0.726838 0.713889 0.668591 0.814216 0.658076 0.887565 0.626520 0.909134 0.582022 0.891879 0.498689 0.829314 0.426691 0.771062 0.406458 0.712810 0.438824 0.730082 0.400797 0.693399 0.396752 0.611422 0.459853 0.617892 0.474424 0.681536 0.490600 0.781846 0.442059 0.816373 0.450956 0.850899 0.492218 0.878938 0.535098 0.881095 0.575551 0.859526 0.621667 0.790490 0.641078 0.700948 0.652402 0.669673 0.599816 0.522974 0.518113 0.328807 0.398370 0.212304 0.394326 0.661046 0.662120 0.440980 0.700944 0.447451 0.717132 0.673987 0.671826 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765654_54_6725562.txt b/datasets/搭电测试/val/labels/璁㈠崟1765654_54_6725562.txt new file mode 100644 index 0000000..b3be7be --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765654_54_6725562.txt @@ -0,0 +1 @@ +0 0.619394 0.600269 0.554106 0.604949 0.519000 0.583417 0.464240 0.532872 0.416500 0.501045 0.377187 0.508532 0.311192 0.574994 0.303471 0.675154 0.286625 0.757526 0.256433 0.757526 0.255029 0.639583 0.270476 0.633968 0.281005 0.570314 0.349106 0.505724 0.403865 0.472962 0.451606 0.491686 0.500750 0.532872 0.542870 0.571250 0.617288 0.562827 0.617288 0.562827 0.619394 0.600269 0.534447 0.426160 0.464240 0.439263 0.422822 0.423353 0.396846 0.383103 0.370168 0.348468 0.363144 0.363442 0.381399 0.389654 0.383505 0.413987 0.365957 0.403692 0.347000 0.364378 0.352615 0.333487 0.372976 0.323192 0.399654 0.354083 0.419312 0.386846 0.435457 0.406500 0.462135 0.416801 0.530236 0.399949 0.534447 0.424288 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765655_54_6725475.txt b/datasets/搭电测试/val/labels/璁㈠崟1765655_54_6725475.txt new file mode 100644 index 0000000..eded68c --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765655_54_6725475.txt @@ -0,0 +1 @@ +0 0.334023 0.648906 0.423893 0.529092 0.443854 0.505693 0.543711 0.456084 0.627331 0.445781 0.638555 0.491650 0.656029 0.498203 0.656029 0.457949 0.679753 0.491650 0.695977 0.492588 0.678503 0.454209 0.653542 0.433613 0.506263 0.276357 0.501276 0.250146 0.483802 0.249209 0.452591 0.295078 0.425130 0.289463 0.411406 0.240781 0.391432 0.242656 0.383945 0.354980 0.471315 0.358730 0.496276 0.295078 0.628581 0.429873 0.533724 0.442041 0.348958 0.538477 0.294089 0.638613 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765656_54_6725516.txt b/datasets/搭电测试/val/labels/璁㈠崟1765656_54_6725516.txt new file mode 100644 index 0000000..c9f25ab --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765656_54_6725516.txt @@ -0,0 +1 @@ +0 0.829000 0.675680 0.842000 0.717920 0.843440 0.774240 0.813107 0.817570 0.732240 0.861970 0.590720 0.869550 0.600840 0.902040 0.550293 0.919370 0.407333 0.858720 0.387107 0.772080 0.440547 0.755830 0.571947 0.781820 0.576280 0.806730 0.483867 0.821900 0.531520 0.843560 0.570507 0.843560 0.697587 0.833810 0.772680 0.804570 0.805893 0.773160 0.807333 0.728750 0.800120 0.680020 0.827560 0.674600 0.404440 0.464490 0.247040 0.332350 0.252813 0.302030 0.454987 0.362680 0.441987 0.377840 0.345227 0.360510 0.431880 0.443910 0.403000 0.464490 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765658_54_6725314.txt b/datasets/搭电测试/val/labels/璁㈠崟1765658_54_6725314.txt new file mode 100644 index 0000000..8703b59 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765658_54_6725314.txt @@ -0,0 +1 @@ +0 0.574240 0.694770 0.599213 0.681470 0.619360 0.670590 0.637893 0.645210 0.645147 0.608350 0.637080 0.575710 0.662867 0.554560 0.687853 0.526760 0.698320 0.490500 0.688653 0.463910 0.706373 0.461500 0.725720 0.471170 0.738613 0.490500 0.724107 0.518300 0.727333 0.529180 0.749893 0.506220 0.757147 0.477210 0.742640 0.454240 0.701547 0.449410 0.653200 0.451830 0.640307 0.472370 0.642720 0.531600 0.667707 0.531600 0.626613 0.558790 0.617747 0.578740 0.617747 0.578740 0.624187 0.610160 0.610493 0.652460 0.559733 0.677850 0.572627 0.695370 0.202773 0.685100 0.135893 0.657300 0.104467 0.609560 0.116560 0.558190 0.166520 0.510450 0.210827 0.501380 0.164093 0.456660 0.158453 0.409520 0.170547 0.363600 0.201973 0.337000 0.232587 0.323710 0.367960 0.323710 0.387293 0.338210 0.424360 0.350900 0.432413 0.379310 0.456587 0.467540 0.425973 0.488090 0.409053 0.513470 0.340560 0.495340 0.328480 0.431280 0.353453 0.399850 0.342173 0.337610 0.298667 0.326130 0.247093 0.335800 0.200360 0.359970 0.185853 0.399850 0.193107 0.446990 0.226147 0.492920 0.303493 0.492920 0.309947 0.512260 0.292213 0.514680 0.284960 0.505010 0.222920 0.512260 0.174573 0.527970 0.139920 0.561210 0.129453 0.608950 0.161680 0.649440 0.210027 0.670590 0.203573 0.685100 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765659_54_6725362.txt b/datasets/搭电测试/val/labels/璁㈠崟1765659_54_6725362.txt new file mode 100644 index 0000000..67dd865 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765659_54_6725362.txt @@ -0,0 +1 @@ +0 0.473572 0.366296 0.496878 0.350913 0.491289 0.318050 0.444672 0.301271 0.433483 0.324346 0.395261 0.359304 0.355172 0.408250 0.307622 0.479571 0.326267 0.506842 0.353306 0.513833 0.368222 0.506142 0.330000 0.485167 0.348644 0.439717 0.386867 0.389371 0.427889 0.346721 0.473294 0.365879 0.644461 0.424404 0.673083 0.455588 0.697139 0.488242 0.721472 0.534183 0.721472 0.561379 0.704783 0.581729 0.679050 0.591658 0.627494 0.593754 0.573889 0.593267 0.486161 0.573896 0.495200 0.554038 0.543217 0.564529 0.591978 0.574946 0.640733 0.582287 0.683156 0.577046 0.704783 0.557187 0.699189 0.518517 0.672711 0.474679 0.637189 0.432375 0.644928 0.423983 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765661_54_6725385.txt b/datasets/搭电测试/val/labels/璁㈠崟1765661_54_6725385.txt new file mode 100644 index 0000000..5a93800 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765661_54_6725385.txt @@ -0,0 +1 @@ +0 0.489077 0.389337 0.409654 0.522548 0.428423 0.543125 0.460192 0.514971 0.499179 0.521462 0.502077 0.545298 0.522282 0.544212 0.597385 0.421827 0.597385 0.404500 0.581500 0.402327 0.577167 0.318933 0.593051 0.248538 0.568500 0.247452 0.555500 0.269115 0.568500 0.278865 0.554051 0.386087 0.554051 0.414240 0.500628 0.475981 0.520846 0.386087 0.487628 0.389337 0.535282 0.270192 0.499179 0.236625 0.481859 0.333010 0.400987 0.333010 0.409654 0.190048 0.435641 0.190048 0.441423 0.268029 0.458744 0.268029 0.477526 0.198712 0.509295 0.203048 0.510731 0.230125 0.539615 0.253952 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765662_54_6725380.txt b/datasets/搭电测试/val/labels/璁㈠崟1765662_54_6725380.txt new file mode 100644 index 0000000..b9199f9 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765662_54_6725380.txt @@ -0,0 +1 @@ +0 0.474915 0.202490 0.427490 0.307324 0.438719 0.315755 0.481163 0.316686 0.584745 0.240863 0.617203 0.273627 0.624693 0.327922 0.617203 0.365363 0.572275 0.396255 0.448706 0.423402 0.305176 0.444931 0.194105 0.462716 0.139190 0.479559 0.124209 0.507647 0.035595 0.561941 0.031843 0.619971 0.051817 0.634951 0.071791 0.671461 0.135438 0.691118 0.146667 0.663971 0.089255 0.649931 0.149163 0.639627 0.144170 0.610608 0.089255 0.619039 0.164144 0.500157 0.352601 0.461775 0.541072 0.432765 0.597229 0.404676 0.529830 0.462716 0.548562 0.466461 0.608471 0.430892 0.638418 0.383147 0.692092 0.342902 0.745752 0.299843 0.755739 0.234314 0.745752 0.191255 0.645882 0.233431 0.666667 0.324020 0.716078 0.293431 0.718301 0.297029 0.648405 0.351324 0.648405 0.276441 0.609712 0.223078 0.573516 0.219333 0.481163 0.276441 0.496131 0.211843 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765663_54_6725532.txt b/datasets/搭电测试/val/labels/璁㈠崟1765663_54_6725532.txt new file mode 100644 index 0000000..bad493d --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765663_54_6725532.txt @@ -0,0 +1 @@ +0 0.559978 0.519868 0.491245 0.562744 0.525611 0.578115 0.585306 0.562744 0.661277 0.518247 0.621485 0.499639 0.384531 0.512583 0.395382 0.527148 0.561790 0.519868 0.400808 0.578926 0.536463 0.599961 0.728199 0.620996 0.834924 0.570835 0.885568 0.589443 0.845775 0.604814 0.909083 0.654976 0.872904 0.655781 0.384531 0.590249 0.398996 0.578926 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765664_54_6725333.txt b/datasets/搭电测试/val/labels/璁㈠崟1765664_54_6725333.txt new file mode 100644 index 0000000..d54ae08 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765664_54_6725333.txt @@ -0,0 +1 @@ +0 0.613645 0.220190 0.616344 0.148166 0.604314 0.143971 0.570657 0.152362 0.552953 0.256548 0.579988 0.292206 0.616344 0.288010 0.636851 0.243261 0.630334 0.334862 0.648973 0.335562 0.652710 0.233469 0.648973 0.221583 0.613645 0.220190 0.623806 0.325770 0.603299 0.318780 0.558547 0.329265 0.545490 0.331367 0.533368 0.322976 0.442007 0.388002 0.455063 0.400588 0.412261 0.436946 0.371153 0.454429 0.318939 0.447439 0.288178 0.359334 0.245294 0.362829 0.290969 0.510363 0.334787 0.507569 0.322676 0.468408 0.375813 0.468408 0.455986 0.425061 0.464383 0.399187 0.483956 0.383806 0.538962 0.383806 0.576251 0.372621 0.568800 0.350943 0.594994 0.331367 0.622964 0.340458 0.623806 0.324369 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765665_54_6725425.txt b/datasets/搭电测试/val/labels/璁㈠崟1765665_54_6725425.txt new file mode 100644 index 0000000..3109c10 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765665_54_6725425.txt @@ -0,0 +1 @@ +0 0.287201 0.313314 0.266000 0.358802 0.266000 0.395625 0.282309 0.395625 0.252951 0.433535 0.244794 0.475775 0.258662 0.522344 0.286387 0.586243 0.320637 0.670723 0.349176 0.729212 0.386691 0.729212 0.386691 0.705384 0.366304 0.707546 0.306775 0.582995 0.269260 0.475775 0.274152 0.440033 0.327975 0.385879 0.335314 0.399961 0.355701 0.399961 0.355701 0.363138 0.373642 0.347975 0.371196 0.301400 0.285569 0.312233 0.712882 0.658809 0.729191 0.633900 0.743868 0.558086 0.748765 0.475775 0.761809 0.417292 0.760181 0.367467 0.725113 0.321979 0.662324 0.308984 0.617471 0.312233 0.618284 0.272161 0.667216 0.265658 0.756917 0.274323 0.752838 0.317650 0.775672 0.354473 0.786275 0.397793 0.780569 0.432454 0.774858 0.475775 0.766706 0.533177 0.763441 0.576497 0.756103 0.625234 0.737348 0.668561 0.716142 0.688053 0.712882 0.657728 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765670_54_6725673.txt b/datasets/搭电测试/val/labels/璁㈠崟1765670_54_6725673.txt new file mode 100644 index 0000000..4d718b1 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765670_54_6725673.txt @@ -0,0 +1 @@ +0 0.542947 0.428830 0.627813 0.306210 0.612840 0.295910 0.595360 0.299650 0.536707 0.373600 0.539200 0.298720 0.545440 0.236000 0.522973 0.227580 0.475547 0.251920 0.448093 0.268760 0.380693 0.259400 0.370707 0.267830 0.419387 0.299650 0.436853 0.309020 0.438107 0.286550 0.473053 0.277190 0.509253 0.259400 0.532960 0.245360 0.517987 0.287490 0.491773 0.407300 0.510493 0.429770 0.542947 0.425090 0.597867 0.372670 0.576640 0.427900 0.560413 0.459720 0.527973 0.509330 0.519227 0.527120 0.480547 0.490610 0.450587 0.487800 0.428120 0.520570 0.400667 0.520570 0.420627 0.540220 0.449333 0.533670 0.460573 0.508400 0.500507 0.552390 0.526720 0.557070 0.541693 0.516820 0.580387 0.470020 0.596613 0.439130 0.607840 0.411050 0.639053 0.473760 0.670253 0.455040 0.641547 0.370800 0.599107 0.372670 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765678_54_6725608.txt b/datasets/搭电测试/val/labels/璁㈠崟1765678_54_6725608.txt new file mode 100644 index 0000000..f4587d9 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765678_54_6725608.txt @@ -0,0 +1 @@ +0 0.660889 0.365176 0.713307 0.387637 0.715804 0.402618 0.699582 0.407294 0.744510 0.455971 0.712052 0.468147 0.678353 0.427892 0.642170 0.505588 0.614706 0.525245 0.573516 0.531794 0.534824 0.517755 0.506118 0.484059 0.521098 0.435382 0.547307 0.430696 0.554797 0.440059 0.538575 0.448490 0.528588 0.470951 0.541072 0.499029 0.561033 0.510265 0.595987 0.514010 0.619699 0.506520 0.640915 0.473755 0.653399 0.433510 0.673359 0.407294 0.657137 0.404490 0.640915 0.371725 0.662131 0.364235 0.479908 0.229441 0.498627 0.296843 0.486157 0.309951 0.478667 0.360500 0.461190 0.355814 0.468680 0.299647 0.442471 0.291225 0.413765 0.216343 0.436222 0.208853 0.461190 0.251912 0.462444 0.227578 0.477412 0.229441 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765681_54_6725526.txt b/datasets/搭电测试/val/labels/璁㈠崟1765681_54_6725526.txt new file mode 100644 index 0000000..f2b9f80 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765681_54_6725526.txt @@ -0,0 +1 @@ +0 0.342880 0.540673 0.248650 0.410707 0.211285 0.423707 0.244590 0.622987 0.267335 0.630567 0.365625 0.721547 0.446850 0.764867 0.547170 0.796280 0.669990 0.787613 0.725470 0.741147 0.774370 0.631000 0.818965 0.497567 0.820100 0.400420 0.777700 0.356987 0.740660 0.340960 0.723275 0.474393 0.713530 0.443960 0.725470 0.332293 0.716780 0.245327 0.686315 0.216300 0.660240 0.216300 0.602570 0.361320 0.615645 0.401933 0.633760 0.382767 0.656750 0.279227 0.649845 0.271860 0.658615 0.239047 0.677300 0.230487 0.697200 0.252367 0.713285 0.296013 0.710685 0.347567 0.695335 0.411900 0.698905 0.458473 0.714420 0.492153 0.741065 0.548040 0.735055 0.593313 0.699800 0.630567 0.638555 0.648333 0.554240 0.609560 0.485030 0.501147 0.454080 0.344100 0.420695 0.335220 0.390965 0.486520 0.391615 0.505907 0.406155 0.511647 0.428575 0.410493 0.441330 0.416987 0.455870 0.507533 0.489905 0.575547 0.550580 0.634573 0.612480 0.662953 0.656750 0.666093 0.719865 0.643460 0.745370 0.609560 0.758040 0.554540 0.740495 0.489660 0.753575 0.458253 0.759830 0.390453 0.780300 0.389700 0.804425 0.426087 0.800280 0.492480 0.782980 0.552587 0.746670 0.638473 0.711415 0.722627 0.661055 0.763893 0.587055 0.774400 0.505745 0.759780 0.421995 0.725013 0.343770 0.669993 0.278220 0.611727 0.258805 0.505800 0.270910 0.498547 0.320055 0.572087 0.340115 0.568940 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765684_54_6725518.txt b/datasets/搭电测试/val/labels/璁㈠崟1765684_54_6725518.txt new file mode 100644 index 0000000..b13b58e --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765684_54_6725518.txt @@ -0,0 +1 @@ +0 0.560594 0.757729 0.610217 0.747212 0.654439 0.714850 0.702983 0.625858 0.690039 0.557900 0.639339 0.510975 0.587561 0.502883 0.582167 0.453533 0.548728 0.418746 0.522839 0.421983 0.467828 0.512592 0.494794 0.523112 0.550883 0.441400 0.565989 0.454342 0.573539 0.498029 0.529311 0.504504 0.469983 0.535246 0.412811 0.643654 0.437622 0.649317 0.484006 0.625050 0.531467 0.536863 0.526078 0.525537 0.548728 0.515021 0.571383 0.513404 0.561672 0.553046 0.574617 0.594304 0.575694 0.619383 0.530389 0.637183 0.528233 0.654983 0.578933 0.642846 0.598350 0.618575 0.595111 0.575696 0.578933 0.553046 0.585406 0.517446 0.623161 0.528775 0.653361 0.551425 0.677094 0.591879 0.667383 0.635567 0.652283 0.677633 0.612372 0.720513 0.556278 0.737504 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765685_54_6725613.txt b/datasets/搭电测试/val/labels/璁㈠崟1765685_54_6725613.txt new file mode 100644 index 0000000..970ee2e --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765685_54_6725613.txt @@ -0,0 +1 @@ +0 0.694648 0.601973 0.796042 0.690156 0.793893 0.714424 0.767995 0.720898 0.773385 0.754062 0.744271 0.796943 0.695729 0.808271 0.614818 0.800176 0.535000 0.754873 0.483216 0.682061 0.494010 0.610059 0.568438 0.572031 0.588932 0.573652 0.588932 0.588213 0.545781 0.600352 0.509115 0.627861 0.513424 0.681250 0.547943 0.743545 0.600794 0.774287 0.647188 0.790469 0.706510 0.790469 0.748581 0.764580 0.747396 0.719111 0.728737 0.721787 0.630677 0.636914 0.693893 0.600674 0.672214 0.413867 0.683424 0.355137 0.647070 0.318086 0.620000 0.318086 0.592057 0.276816 0.527773 0.252393 0.459701 0.247451 0.413112 0.264277 0.375781 0.302705 0.359063 0.341865 0.364570 0.390811 0.390664 0.424385 0.431771 0.451006 0.481172 0.452383 0.523997 0.420176 0.506302 0.406914 0.476536 0.434180 0.444818 0.437012 0.410299 0.418809 0.388841 0.386602 0.387005 0.346074 0.396276 0.312500 0.423359 0.283135 0.467148 0.265654 0.514714 0.267764 0.572539 0.286611 0.597669 0.316709 0.616328 0.351660 0.607917 0.352383 0.607057 0.366377 0.650846 0.420908 0.672214 0.413223 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765689_54_6725811.txt b/datasets/搭电测试/val/labels/璁㈠崟1765689_54_6725811.txt new file mode 100644 index 0000000..dc77763 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765689_54_6725811.txt @@ -0,0 +1 @@ +0 0.575391 0.453828 0.579440 0.495645 0.607760 0.495986 0.610456 0.453496 0.620794 0.461250 0.632943 0.474404 0.637435 0.491260 0.631589 0.507451 0.615404 0.515205 0.582578 0.520938 0.585286 0.526328 0.610456 0.522617 0.630690 0.516885 0.642826 0.505762 0.645534 0.484180 0.638333 0.466982 0.617656 0.449453 0.606419 0.446416 0.595169 0.452822 0.595169 0.475078 0.589779 0.474404 0.586185 0.452822 0.575391 0.453496 0.551107 0.508125 0.544362 0.494629 0.524141 0.481816 0.502552 0.471699 0.473776 0.465635 0.462539 0.467324 0.459388 0.487549 0.456693 0.487549 0.449049 0.471699 0.438711 0.471025 0.438255 0.479121 0.447708 0.503398 0.477383 0.500703 0.471536 0.485527 0.474674 0.474062 0.491758 0.476426 0.509753 0.484521 0.525039 0.490586 0.537617 0.498008 0.543021 0.508799 0.551107 0.507783 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765691_54_6725966.txt b/datasets/搭电测试/val/labels/璁㈠崟1765691_54_6725966.txt new file mode 100644 index 0000000..5ca4241 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765691_54_6725966.txt @@ -0,0 +1 @@ +0 0.549440 0.494180 0.530729 0.464219 0.516992 0.360322 0.469570 0.355645 0.458333 0.378105 0.465820 0.413672 0.427135 0.411807 0.403424 0.426777 0.351003 0.492305 0.289844 0.565322 0.269870 0.610254 0.298581 0.677646 0.326042 0.663604 0.299831 0.608379 0.351003 0.532559 0.418398 0.456738 0.444609 0.507285 0.445977 0.534238 0.479310 0.557266 0.510000 0.537705 0.506263 0.512803 0.511510 0.503818 0.540091 0.509619 0.550065 0.494082 0.645169 0.615869 0.652409 0.591621 0.689479 0.585635 0.766120 0.635146 0.820534 0.680176 0.861719 0.763486 0.909141 0.817773 0.889180 0.839307 0.781836 0.845859 0.709453 0.836494 0.718190 0.815908 0.851732 0.814971 0.810547 0.743828 0.766862 0.669873 0.733164 0.686729 0.635820 0.647412 0.644544 0.615586 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765693_54_6725729.txt b/datasets/搭电测试/val/labels/璁㈠崟1765693_54_6725729.txt new file mode 100644 index 0000000..7e364c8 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765693_54_6725729.txt @@ -0,0 +1 @@ +0 0.770247 0.639629 0.786133 0.796680 0.754362 0.831338 0.692266 0.888740 0.615729 0.913643 0.517526 0.902813 0.403451 0.816172 0.361563 0.679707 0.360130 0.561650 0.393333 0.567070 0.397669 0.658047 0.415000 0.764180 0.459766 0.823750 0.540638 0.872490 0.618620 0.887656 0.687930 0.846494 0.724036 0.792344 0.713919 0.636387 0.771693 0.638545 0.705260 0.365615 0.709596 0.235654 0.695156 0.217236 0.647500 0.127344 0.586849 0.110020 0.531966 0.110020 0.459766 0.185830 0.427995 0.263809 0.448216 0.264893 0.494427 0.183662 0.534857 0.144678 0.568073 0.132764 0.604180 0.140342 0.670599 0.234570 0.656159 0.324463 0.615729 0.248652 0.581068 0.251895 0.614284 0.337461 0.598398 0.365615 0.621497 0.379697 0.706706 0.365615 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765694_54_6725745.txt b/datasets/搭电测试/val/labels/璁㈠崟1765694_54_6725745.txt new file mode 100644 index 0000000..841c233 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765694_54_6725745.txt @@ -0,0 +1 @@ +0 0.321788 0.298417 0.316009 0.366652 0.347785 0.429472 0.399769 0.550770 0.427785 0.626912 0.418108 0.709983 0.362364 0.765865 0.336517 0.768469 0.367855 0.701644 0.345617 0.642076 0.294787 0.645216 0.246701 0.684965 0.254348 0.699585 0.298247 0.689074 0.301719 0.712042 0.273841 0.770631 0.276009 0.790450 0.322653 0.787855 0.383160 0.779948 0.433414 0.732941 0.454210 0.664602 0.443668 0.589654 0.400784 0.503010 0.365398 0.412033 0.349516 0.297336 0.322514 0.297336 0.504325 0.303728 0.500565 0.349109 0.518189 0.393832 0.548939 0.438676 0.614210 0.450484 0.674002 0.455458 0.720496 0.449827 0.742884 0.508529 0.711257 0.563114 0.694510 0.560303 0.699988 0.484810 0.671107 0.480588 0.640358 0.609256 0.662734 0.621817 0.727140 0.626696 0.785767 0.502249 0.760646 0.500190 0.738258 0.436505 0.666494 0.442137 0.588224 0.429576 0.544325 0.397413 0.531326 0.360260 0.530311 0.304377 0.504325 0.303728 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765695_54_6725788.txt b/datasets/搭电测试/val/labels/璁㈠崟1765695_54_6725788.txt new file mode 100644 index 0000000..171413c --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765695_54_6725788.txt @@ -0,0 +1 @@ +0 0.826410 0.567048 0.869859 0.376577 0.849808 0.374067 0.846462 0.332712 0.781295 0.278827 0.724487 0.260029 0.617551 0.263788 0.480551 0.290106 0.330167 0.343990 0.315128 0.326452 0.266679 0.331462 0.256654 0.501885 0.301769 0.516923 0.331846 0.506904 0.380295 0.371558 0.420397 0.371558 0.487231 0.376577 0.575782 0.399135 0.647628 0.432962 0.684385 0.486846 0.684385 0.555769 0.634269 0.593365 0.590821 0.613413 0.517308 0.617173 0.422064 0.589606 0.326833 0.541990 0.260000 0.516923 0.191487 0.511913 0.000000 0.536894 0.000000 0.541163 0.006026 0.579587 0.159744 0.547000 0.223231 0.539481 0.293410 0.559529 0.366923 0.594615 0.453808 0.632212 0.515628 0.648500 0.610872 0.639731 0.677705 0.603394 0.727833 0.552010 0.727833 0.504394 0.696090 0.431712 0.590821 0.375317 0.495590 0.346500 0.390321 0.341490 0.525654 0.306404 0.574115 0.295125 0.634269 0.283846 0.717808 0.283846 0.766256 0.308904 0.811372 0.343990 0.799679 0.429202 0.779628 0.445500 0.774615 0.565798 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765697_54_6725707.txt b/datasets/搭电测试/val/labels/璁㈠崟1765697_54_6725707.txt new file mode 100644 index 0000000..19097f5 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765697_54_6725707.txt @@ -0,0 +1 @@ +0 0.784711 0.322746 0.816456 0.163596 0.774689 0.159837 0.736256 0.206204 0.712867 0.110967 0.657728 0.133521 0.684461 0.327758 0.737928 0.349058 0.784711 0.436779 0.838178 0.485650 0.854889 0.508208 0.876606 0.503196 0.859900 0.469363 0.809772 0.429258 0.754639 0.344046 0.784711 0.321492 0.457228 0.372871 0.524061 0.282646 0.482289 0.291417 0.542439 0.183646 0.500667 0.168608 0.432161 0.136029 0.361989 0.141042 0.285128 0.153571 0.228322 0.183646 0.183206 0.236279 0.169839 0.281392 0.186550 0.337783 0.196572 0.407958 0.199917 0.488158 0.208272 0.504450 0.216622 0.494425 0.213283 0.391667 0.196572 0.301442 0.196572 0.262592 0.233333 0.212467 0.278444 0.181142 0.323561 0.167354 0.390394 0.158583 0.437178 0.163596 0.467250 0.174875 0.402089 0.359083 0.453883 0.371617 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765702_54_6725808.txt b/datasets/搭电测试/val/labels/璁㈠崟1765702_54_6725808.txt new file mode 100644 index 0000000..bfc5e1c --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765702_54_6725808.txt @@ -0,0 +1 @@ +0 0.443867 0.344053 0.450547 0.246309 0.430495 0.223750 0.403763 0.233770 0.403763 0.263848 0.383711 0.246309 0.356979 0.253828 0.343607 0.288916 0.305182 0.334023 0.260065 0.370361 0.219974 0.412969 0.196576 0.466855 0.191562 0.547061 0.224987 0.612217 0.245026 0.605957 0.218294 0.557080 0.218294 0.474375 0.258398 0.404199 0.310195 0.354072 0.343607 0.320244 0.356471 0.370996 0.383880 0.381895 0.443529 0.344424 0.513372 0.316729 0.498333 0.356328 0.499336 0.386279 0.526406 0.425127 0.576029 0.468857 0.630000 0.510840 0.681628 0.544805 0.709687 0.564229 0.723724 0.561094 0.674102 0.524629 0.599753 0.467988 0.536094 0.407334 0.518880 0.368486 0.518880 0.341797 0.550130 0.318359 0.573854 0.317480 0.540443 0.363594 0.599753 0.455830 0.620299 0.461465 0.666589 0.407334 0.613789 0.306953 0.571680 0.301318 0.532917 0.306953 0.512370 0.315850 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765703_54_6725834.txt b/datasets/搭电测试/val/labels/璁㈠崟1765703_54_6725834.txt new file mode 100644 index 0000000..a530e06 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765703_54_6725834.txt @@ -0,0 +1 @@ +0 0.670310 0.730520 0.553300 0.641607 0.555815 0.572827 0.703025 0.530887 0.715605 0.537593 0.787325 0.520820 0.851490 0.524173 0.886720 0.557727 0.899305 0.618120 0.881690 0.695287 0.797390 0.787560 0.714350 0.839560 0.631305 0.886533 0.598595 0.883180 0.603625 0.832853 0.643890 0.834527 0.740770 0.777493 0.811230 0.723807 0.841425 0.676833 0.852750 0.604700 0.827585 0.572827 0.755870 0.569467 0.647665 0.604700 0.645145 0.638253 0.704285 0.712067 0.670310 0.730520 0.263915 0.618120 0.198490 0.624827 0.119220 0.671800 0.075185 0.728840 0.056310 0.792587 0.053795 0.856340 0.090285 0.871433 0.164515 0.863047 0.228685 0.832853 0.234975 0.789233 0.179615 0.812720 0.110415 0.842920 0.082735 0.839560 0.078960 0.814400 0.112930 0.745620 0.175840 0.688580 0.121740 0.779167 0.135580 0.816073 0.228685 0.678513 0.263915 0.616440 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765705_54_6725781.txt b/datasets/搭电测试/val/labels/璁㈠崟1765705_54_6725781.txt new file mode 100644 index 0000000..18bd1f4 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765705_54_6725781.txt @@ -0,0 +1 @@ +0 0.437057 0.511113 0.424115 0.564512 0.434896 0.592021 0.457552 0.592021 0.464023 0.537002 0.483437 0.527295 0.515794 0.526484 0.540612 0.528916 0.546003 0.538623 0.590234 0.537813 0.602096 0.525674 0.619349 0.533770 0.636615 0.520820 0.629062 0.491699 0.658190 0.488467 0.640924 0.447197 0.619349 0.453672 0.615039 0.477949 0.621510 0.511924 0.610729 0.517588 0.556784 0.514355 0.520117 0.514355 0.484518 0.514355 0.462943 0.520010 0.458633 0.507881 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765706_54_6725800.txt b/datasets/搭电测试/val/labels/璁㈠崟1765706_54_6725800.txt new file mode 100644 index 0000000..0ad7bb7 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765706_54_6725800.txt @@ -0,0 +1 @@ +0 0.684106 0.675371 0.642033 0.656763 0.579472 0.608221 0.507200 0.556442 0.440317 0.522463 0.384228 0.514375 0.331372 0.525700 0.331372 0.548354 0.311956 0.642200 0.291456 0.666471 0.254783 0.661617 0.272039 0.558871 0.283906 0.562917 0.319506 0.512754 0.362650 0.500621 0.406878 0.499812 0.444633 0.507092 0.487783 0.519229 0.533089 0.545117 0.561133 0.573433 0.604283 0.598513 0.656061 0.638154 0.685183 0.653525 0.685183 0.674558 0.506122 0.406771 0.447872 0.417292 0.404722 0.418908 0.346472 0.410008 0.314111 0.396254 0.275278 0.391400 0.265567 0.519229 0.233211 0.520846 0.224578 0.506283 0.239678 0.392212 0.246150 0.389783 0.269883 0.378458 0.302244 0.381692 0.336761 0.391400 0.360494 0.397875 0.396094 0.406771 0.433844 0.405963 0.498567 0.397875 0.507200 0.405963 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765711_54_6725950.txt b/datasets/搭电测试/val/labels/璁㈠崟1765711_54_6725950.txt new file mode 100644 index 0000000..4b915b4 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765711_54_6725950.txt @@ -0,0 +1 @@ +0 0.509320 0.581500 0.542760 0.600920 0.579440 0.634090 0.606413 0.679390 0.658187 0.695570 0.699173 0.685860 0.731533 0.654310 0.734773 0.613050 0.703493 0.557230 0.665733 0.511920 0.660347 0.490080 0.547080 0.437490 0.533053 0.456100 0.639853 0.512730 0.662507 0.540240 0.684080 0.572600 0.713200 0.617100 0.712120 0.648650 0.695933 0.670490 0.657107 0.677770 0.625827 0.671300 0.585907 0.606580 0.533053 0.562890 0.509320 0.580690 0.323787 0.443960 0.282800 0.355780 0.241813 0.333130 0.197587 0.324230 0.158747 0.328270 0.127467 0.333130 0.099413 0.352550 0.095107 0.373580 0.112360 0.393000 0.153360 0.420500 0.201893 0.445580 0.241813 0.452860 0.225627 0.436680 0.196507 0.428590 0.145800 0.401090 0.130707 0.375200 0.125307 0.354160 0.158747 0.350930 0.211600 0.348500 0.242880 0.352550 0.254747 0.377620 0.268773 0.416460 0.255827 0.426980 0.220227 0.420500 0.213760 0.437490 0.307613 0.468240 0.323787 0.442350 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765712_54_6725977.txt b/datasets/搭电测试/val/labels/璁㈠崟1765712_54_6725977.txt new file mode 100644 index 0000000..ae2a9c7 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765712_54_6725977.txt @@ -0,0 +1 @@ +0 0.227031 0.292197 0.284206 0.259023 0.354323 0.223428 0.410404 0.217764 0.457878 0.227471 0.498867 0.246885 0.516120 0.278438 0.552799 0.278438 0.599180 0.281680 0.643411 0.286533 0.708125 0.282402 0.713529 0.337500 0.726797 0.346562 0.694857 0.436357 0.667786 0.436357 0.645456 0.372695 0.662930 0.303682 0.548594 0.287422 0.520872 0.291465 0.507604 0.338877 0.493255 0.320830 0.496810 0.283779 0.470391 0.248584 0.411380 0.236367 0.355938 0.245430 0.292721 0.273428 0.345143 0.360068 0.327135 0.428271 0.227786 0.428672 0.204271 0.397529 0.210964 0.302305 0.212682 0.278359 0.233828 0.277949 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765713_54_6725894.txt b/datasets/搭电测试/val/labels/璁㈠崟1765713_54_6725894.txt new file mode 100644 index 0000000..384c3e5 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765713_54_6725894.txt @@ -0,0 +1 @@ +0 0.548500 0.300760 0.628679 0.246913 0.645462 0.250413 0.645462 0.269990 0.660372 0.264394 0.700462 0.256702 0.701397 0.289567 0.627744 0.328721 0.616551 0.320337 0.525192 0.355298 0.470179 0.379067 0.414244 0.404942 0.389077 0.444096 0.376026 0.446192 0.359244 0.423817 0.335192 0.403192 0.294731 0.384942 0.260513 0.373471 0.231795 0.371096 0.230397 0.377529 0.207923 0.379558 0.185462 0.344462 0.185923 0.327606 0.257808 0.317183 0.320359 0.343125 0.325308 0.366760 0.308154 0.368788 0.252397 0.356971 0.242987 0.360327 0.291090 0.372144 0.327077 0.384317 0.350474 0.398433 0.381897 0.425077 0.397179 0.402490 0.439513 0.378231 0.485385 0.359346 0.531628 0.341798 0.549154 0.332712 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765714_54_6725935.txt b/datasets/搭电测试/val/labels/璁㈠崟1765714_54_6725935.txt new file mode 100644 index 0000000..25036b0 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765714_54_6725935.txt @@ -0,0 +1 @@ +0 0.591899 0.621506 0.566011 0.636875 0.505601 0.640922 0.440874 0.615031 0.394495 0.572152 0.372923 0.519570 0.376161 0.459703 0.413907 0.420061 0.461380 0.402254 0.494809 0.410348 0.521790 0.425717 0.459221 0.522807 0.441954 0.515523 0.481872 0.443514 0.493743 0.437049 0.485109 0.423289 0.457063 0.419252 0.433333 0.432193 0.409604 0.451609 0.393415 0.487203 0.392336 0.513904 0.405287 0.548689 0.423620 0.574580 0.453825 0.599662 0.484030 0.616650 0.544440 0.621506 0.582186 0.610174 0.592978 0.620697 0.720260 0.396598 0.759098 0.364232 0.780669 0.335922 0.778511 0.296281 0.748306 0.270389 0.708402 0.260676 0.653388 0.262295 0.603770 0.273627 0.588661 0.281711 0.572486 0.314078 0.550902 0.306793 0.540123 0.318934 0.545519 0.355338 0.569249 0.363422 0.601612 0.333494 0.610232 0.284949 0.629658 0.278473 0.672801 0.274436 0.720260 0.276865 0.746148 0.289805 0.767732 0.313268 0.758019 0.338350 0.739686 0.362613 0.709481 0.390932 0.720260 0.394980 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765715_54_6725901.txt b/datasets/搭电测试/val/labels/璁㈠崟1765715_54_6725901.txt new file mode 100644 index 0000000..02c8a74 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765715_54_6725901.txt @@ -0,0 +1 @@ +0 0.531670 0.598841 0.608877 0.571296 0.633887 0.709036 0.677383 0.767031 0.743721 0.767031 0.791567 0.720638 0.811138 0.666992 0.775254 0.606094 0.781890 0.539974 0.760684 0.504889 0.714468 0.483574 0.667490 0.611022 0.711313 0.642773 0.766230 0.570716 0.759922 0.598991 0.761880 0.622474 0.783408 0.638717 0.788848 0.663652 0.782646 0.701354 0.759487 0.726439 0.734038 0.739922 0.688262 0.739486 0.654551 0.707585 0.643130 0.652201 0.636934 0.584779 0.632256 0.549837 0.620078 0.544616 0.531885 0.558678 0.532319 0.491406 0.553418 0.488216 0.572231 0.468353 0.578101 0.453275 0.599307 0.482995 0.624316 0.502858 0.649438 0.514896 0.680757 0.520111 0.702725 0.504453 0.715991 0.470527 0.727407 0.426016 0.732520 0.401510 0.705874 0.377005 0.688262 0.375990 0.660854 0.407747 0.672925 0.422969 0.681953 0.406732 0.696089 0.398900 0.709790 0.401510 0.714033 0.416732 0.710552 0.436452 0.694893 0.485026 0.679233 0.499232 0.649438 0.495033 0.621274 0.475749 0.593872 0.450664 0.581689 0.407311 0.573428 0.410938 0.570273 0.438047 0.558530 0.456315 0.532754 0.454720 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765716_54_6726098.txt b/datasets/搭电测试/val/labels/璁㈠崟1765716_54_6726098.txt new file mode 100644 index 0000000..3dc5f4c --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765716_54_6726098.txt @@ -0,0 +1 @@ +0 0.677057 0.741990 0.642096 0.753265 0.480664 0.693118 0.387461 0.624196 0.352513 0.602892 0.302578 0.700637 0.182747 0.685598 0.181081 0.555275 0.226029 0.551510 0.241003 0.582843 0.314232 0.577824 0.374154 0.585343 0.434063 0.625441 0.505625 0.673069 0.637109 0.735725 0.670391 0.724441 0.583854 0.441235 0.572201 0.419931 0.548906 0.318431 0.510625 0.277078 0.415755 0.268304 0.347513 0.289608 0.370820 0.249510 0.317565 0.234471 0.187747 0.361029 0.214375 0.409902 0.241003 0.406147 0.354180 0.322186 0.360833 0.300882 0.427409 0.288353 0.475677 0.292108 0.508958 0.308402 0.533919 0.351010 0.533919 0.386098 0.552227 0.424941 0.567214 0.444990 0.583854 0.441235 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765717_54_6726011.txt b/datasets/搭电测试/val/labels/璁㈠崟1765717_54_6726011.txt new file mode 100644 index 0000000..5af2d62 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765717_54_6726011.txt @@ -0,0 +1 @@ +0 0.971255 0.805431 0.855255 0.531392 0.772131 0.548794 0.776000 0.764833 0.801124 0.783676 0.824327 0.906922 0.833987 0.998265 0.884261 0.993922 0.851386 0.776431 0.853320 0.716980 0.901660 0.815578 0.284954 0.892422 0.410614 0.728578 0.462810 0.592294 0.449281 0.489343 0.486013 0.438598 0.420288 0.400902 0.377752 0.444402 0.246288 0.428451 0.254026 0.502392 0.333294 0.529941 0.362288 0.490794 0.389346 0.534294 0.368092 0.645941 0.259830 0.808324 0.114837 0.943167 0.025908 0.995363 0.165098 0.999716 0.281098 0.890971 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765720_54_6725918.txt b/datasets/搭电测试/val/labels/璁㈠崟1765720_54_6725918.txt new file mode 100644 index 0000000..a604d4a --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765720_54_6725918.txt @@ -0,0 +1 @@ +0 0.403594 0.382646 0.326732 0.318740 0.300000 0.325000 0.259909 0.345049 0.242188 0.387285 0.250208 0.429639 0.342109 0.519111 0.400924 0.562598 0.403255 0.546309 0.308190 0.467109 0.263906 0.416357 0.259063 0.377637 0.277617 0.352324 0.313867 0.334150 0.343607 0.366855 0.309857 0.355957 0.292148 0.367988 0.383216 0.410342 0.399245 0.404824 0.404102 0.382520 0.778867 0.236279 0.784375 0.290039 0.784375 0.300938 0.796576 0.301572 0.778867 0.327510 0.744948 0.374629 0.730417 0.422373 0.733750 0.478633 0.759479 0.520244 0.802930 0.570869 0.826315 0.613477 0.815130 0.655449 0.772187 0.675000 0.716211 0.677881 0.685469 0.675000 0.682786 0.687656 0.738594 0.689033 0.779701 0.684150 0.806771 0.672246 0.829154 0.656836 0.841185 0.635156 0.838346 0.598184 0.799245 0.547813 0.768503 0.508584 0.749453 0.474502 0.745781 0.422617 0.780534 0.348438 0.811276 0.303193 0.803424 0.286777 0.808112 0.272373 0.828490 0.269238 0.861745 0.291172 0.871602 0.285273 0.829492 0.226377 0.779036 0.235781 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765722_54_6726007.txt b/datasets/搭电测试/val/labels/璁㈠崟1765722_54_6726007.txt new file mode 100644 index 0000000..f08d44d --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765722_54_6726007.txt @@ -0,0 +1 @@ +0 0.731927 0.608838 0.583672 0.594941 0.583672 0.581641 0.495039 0.551426 0.391901 0.516982 0.331458 0.509121 0.246055 0.520000 0.155000 0.559883 0.111484 0.605820 0.128411 0.643281 0.178372 0.689209 0.192878 0.703115 0.174336 0.720635 0.108268 0.696465 0.088932 0.637236 0.064753 0.597959 0.083281 0.536924 0.137279 0.452979 0.202708 0.414307 0.290456 0.374600 0.376823 0.343779 0.398424 0.281113 0.442253 0.287393 0.426953 0.326016 0.464583 0.308789 0.482708 0.312959 0.418646 0.348496 0.392135 0.415332 0.351771 0.409111 0.364258 0.369404 0.291901 0.393398 0.229857 0.422158 0.149766 0.476973 0.114310 0.529727 0.091263 0.572578 0.089245 0.598145 0.119870 0.562666 0.189492 0.521875 0.268216 0.499453 0.321797 0.494736 0.379648 0.499941 0.442982 0.517705 0.512604 0.539639 0.605911 0.571006 0.617109 0.576748 0.651198 0.571006 0.651198 0.555840 0.592695 0.520850 0.595521 0.505195 0.626862 0.503076 0.722266 0.534443 0.715247 0.582490 0.738945 0.594512 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765723_54_6726055.txt b/datasets/搭电测试/val/labels/璁㈠崟1765723_54_6726055.txt new file mode 100644 index 0000000..4331445 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765723_54_6726055.txt @@ -0,0 +1 @@ +0 0.255817 0.423441 0.285725 0.401010 0.420562 0.363539 0.421725 0.331716 0.444288 0.294245 0.482889 0.249382 0.521647 0.224069 0.570261 0.202510 0.617556 0.196873 0.663333 0.205020 0.697582 0.220304 0.722980 0.249255 0.728327 0.283971 0.707948 0.320059 0.663503 0.348382 0.728157 0.353265 0.782131 0.371814 0.831752 0.401765 0.855477 0.444618 0.840275 0.508529 0.805856 0.492363 0.816549 0.460029 0.801516 0.421186 0.779961 0.396873 0.762745 0.384716 0.723817 0.380706 0.690405 0.385598 0.659150 0.397755 0.666680 0.450255 0.756235 0.502137 0.742196 0.511029 0.678536 0.476951 0.656980 0.459157 0.643948 0.472941 0.714131 0.500510 0.737856 0.515049 0.721647 0.521559 0.673190 0.497245 0.631085 0.483461 0.603020 0.495618 0.669856 0.539353 0.646118 0.552265 0.514627 0.515794 0.467176 0.527951 0.393830 0.531206 0.376444 0.514167 0.458484 0.495618 0.530837 0.496373 0.564248 0.493235 0.484392 0.454392 0.428248 0.393618 0.269686 0.446245 0.254641 0.423569 0.574941 0.222186 0.527490 0.244873 0.475699 0.282088 0.450967 0.327324 0.445621 0.359657 0.502771 0.354020 0.576118 0.346745 0.617046 0.351637 0.664510 0.324069 0.694745 0.296627 0.703438 0.258529 0.680706 0.230206 0.637608 0.221314 0.572771 0.222186 0.253477 0.423569 0.588980 0.372686 0.558745 0.371814 0.518967 0.371814 0.460667 0.383971 0.462837 0.403392 0.497255 0.429333 0.542693 0.405775 0.588980 0.414667 0.647294 0.440608 0.641948 0.417922 0.621399 0.387225 0.590157 0.371059 0.253477 0.422814 0.514627 0.448627 0.536183 0.427696 0.565255 0.425196 0.640771 0.451882 0.630078 0.464922 0.598667 0.452765 0.529660 0.453520 0.545869 0.468049 0.584641 0.484343 0.613882 0.477824 0.598667 0.466422 0.544876 0.467304 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765735_54_6726094.txt b/datasets/搭电测试/val/labels/璁㈠崟1765735_54_6726094.txt new file mode 100644 index 0000000..0dd63b3 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765735_54_6726094.txt @@ -0,0 +1,2 @@ +0 0.370169 0.755117 0.372331 0.804463 0.335651 0.841680 0.284961 0.852197 0.232096 0.848154 0.186797 0.822266 0.169531 0.775342 0.193268 0.748643 0.100495 0.589268 0.122070 0.527783 0.215807 0.478271 0.224544 0.490000 0.174609 0.514189 0.137604 0.534736 0.126276 0.566777 0.127904 0.609092 0.210091 0.736592 0.329401 0.630850 0.396276 0.585469 0.457435 0.549863 0.501771 0.499707 0.523568 0.416455 0.499831 0.383691 0.441146 0.315332 0.340078 0.277871 0.236523 0.282568 0.144076 0.319131 0.112904 0.380859 0.121641 0.441699 0.072995 0.433291 0.075469 0.375283 0.097904 0.377139 0.121641 0.316299 0.180326 0.278848 0.234036 0.267598 0.322604 0.261045 0.424974 0.271318 0.474909 0.288232 0.519792 0.327549 0.539740 0.371475 0.542227 0.414600 0.531003 0.464189 0.516016 0.501650 0.499831 0.539111 0.451185 0.574619 0.394987 0.603672 0.307604 0.668223 0.235234 0.730039 0.213971 0.756250 0.235234 0.792734 0.278919 0.824531 0.330052 0.822666 0.341367 0.756250 +2 0.240169 0.463291 0.267630 0.757217 0.443607 0.745039 0.409909 0.446436 diff --git a/datasets/搭电测试/val/labels/璁㈠崟1765737_54_6726068.txt b/datasets/搭电测试/val/labels/璁㈠崟1765737_54_6726068.txt new file mode 100644 index 0000000..d6a9f88 --- /dev/null +++ b/datasets/搭电测试/val/labels/璁㈠崟1765737_54_6726068.txt @@ -0,0 +1 @@ +0 0.540013 0.296870 0.645280 0.296870 0.667000 0.251750 0.568427 0.247990 0.541693 0.214160 0.504933 0.217920 0.496573 0.240480 0.379613 0.329450 0.304093 0.409270 0.278200 0.505510 0.293227 0.506390 0.325653 0.422180 0.392480 0.348620 0.478867 0.280700 0.522973 0.253130 0.540347 0.295990 0.325653 0.495860 0.360067 0.474810 0.428067 0.474810 0.450800 0.490980 0.487387 0.534710 0.508933 0.584840 0.521973 0.636590 0.504760 0.684340 0.481040 0.701380 0.472347 0.772560 0.422720 0.775810 0.414040 0.578320 0.465827 0.571930 0.478867 0.685960 0.501427 0.636590 0.484213 0.558150 0.435587 0.509650 0.392480 0.491850 0.347200 0.496620 0.325653 0.494990 diff --git a/datasets/搭电设备/.DS_Store b/datasets/搭电设备/.DS_Store new file mode 100644 index 0000000..efb0b82 Binary files /dev/null and b/datasets/搭电设备/.DS_Store differ diff --git a/datasets/搭电设备/data.yaml b/datasets/搭电设备/data.yaml new file mode 100644 index 0000000..f9c8e48 --- /dev/null +++ b/datasets/搭电设备/data.yaml @@ -0,0 +1,4 @@ +train: train/images +val: val/images +nc: 2 +names: ['JumperCable', 'NoJumperCable'] \ No newline at end of file diff --git a/datasets/搭电设备/train/.DS_Store b/datasets/搭电设备/train/.DS_Store new file mode 100644 index 0000000..a77f4c1 Binary files /dev/null and b/datasets/搭电设备/train/.DS_Store differ diff --git a/datasets/搭电设备/train/classes.txt b/datasets/搭电设备/train/classes.txt new file mode 100644 index 0000000..b51e6fd --- /dev/null +++ b/datasets/搭电设备/train/classes.txt @@ -0,0 +1,2 @@ +JumperCable +NoJumperCable \ No newline at end of file diff --git a/datasets/搭电设备/train/images/订单1804634_54_7089744.jpg b/datasets/搭电设备/train/images/订单1804634_54_7089744.jpg new file mode 100644 index 0000000..bca0a5a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804634_54_7089744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5970edbd15fda0d0891b66bdb30fc074e943abcaf354861cde2a7fcab8ed2c0 +size 138883 diff --git a/datasets/搭电设备/train/images/订单1804637_54_7089808.jpg b/datasets/搭电设备/train/images/订单1804637_54_7089808.jpg new file mode 100644 index 0000000..c450f6e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804637_54_7089808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b98a5d1b2887555b8d32ec4108b8d35455d3bc01690c4188c69bc8087d5b37 +size 118683 diff --git a/datasets/搭电设备/train/images/订单1804639_54_7089809.jpg b/datasets/搭电设备/train/images/订单1804639_54_7089809.jpg new file mode 100644 index 0000000..b384b7e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804639_54_7089809.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d1ef921950734c74d12a5b199a1bf4be86587f488d0b0cbcb84f49a8aff7fd +size 186814 diff --git a/datasets/搭电设备/train/images/订单1804641_54_7089780.jpg b/datasets/搭电设备/train/images/订单1804641_54_7089780.jpg new file mode 100644 index 0000000..ee5aa80 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804641_54_7089780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26dfc44c81b775a78e66a820646af5dd4a36d95a346836441e87ae2a74e89a59 +size 127594 diff --git a/datasets/搭电设备/train/images/订单1804642_54_7089842.jpg b/datasets/搭电设备/train/images/订单1804642_54_7089842.jpg new file mode 100644 index 0000000..b47ca88 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804642_54_7089842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c690a08b281e62a2b532c61157edab0588f0ec6ed18151bd213a376d6243511 +size 170956 diff --git a/datasets/搭电设备/train/images/订单1804643_54_7089880.jpg b/datasets/搭电设备/train/images/订单1804643_54_7089880.jpg new file mode 100644 index 0000000..9781c59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804643_54_7089880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c654b0d2bb8c56112ef9b99aeffefd689274257650400e15018dfb1d8e82560 +size 73508 diff --git a/datasets/搭电设备/train/images/订单1804644_54_7089871.jpg b/datasets/搭电设备/train/images/订单1804644_54_7089871.jpg new file mode 100644 index 0000000..5af9b3a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804644_54_7089871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f29776ac04e06a65075813aae2f7c8b10cb422bf6fc076979e40d91fbf525c +size 264413 diff --git a/datasets/搭电设备/train/images/订单1804645_54_7089814.jpg b/datasets/搭电设备/train/images/订单1804645_54_7089814.jpg new file mode 100644 index 0000000..78c9822 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804645_54_7089814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f2c33dc31f1459bb274809a10853efc9925eb794005bc3c55a355748d0d0e4 +size 151258 diff --git a/datasets/搭电设备/train/images/订单1804646_54_7089894.jpg b/datasets/搭电设备/train/images/订单1804646_54_7089894.jpg new file mode 100644 index 0000000..1a51144 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804646_54_7089894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9065b6a1eea3bb7e2c97e435cb1c4229523f9aeee83f84b14b18e4474dc88450 +size 133768 diff --git a/datasets/搭电设备/train/images/订单1804647_54_7089890.jpg b/datasets/搭电设备/train/images/订单1804647_54_7089890.jpg new file mode 100644 index 0000000..d359d03 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804647_54_7089890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5054037338d274556d9b3f7473982b06bf967160c55bbec99df4bea3fc1966a +size 131085 diff --git a/datasets/搭电设备/train/images/订单1804649_54_7089914.jpg b/datasets/搭电设备/train/images/订单1804649_54_7089914.jpg new file mode 100644 index 0000000..69f285d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804649_54_7089914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1f68a7f937aad9f57393c162068660457def2da2ae1867cdd460b75b21200c +size 109910 diff --git a/datasets/搭电设备/train/images/订单1804652_54_7089935.jpg b/datasets/搭电设备/train/images/订单1804652_54_7089935.jpg new file mode 100644 index 0000000..f3fbeed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804652_54_7089935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0dce7c3f5d3fcf6711f69a1ef5e5f13117cee9380036f9920409b684a4eed98 +size 192823 diff --git a/datasets/搭电设备/train/images/订单1804654_54_7089951.jpg b/datasets/搭电设备/train/images/订单1804654_54_7089951.jpg new file mode 100644 index 0000000..f4c23ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804654_54_7089951.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035f846ac3868b19db28f8c27732ede4fb98fd63184c60a78d91412d8eb58038 +size 116592 diff --git a/datasets/搭电设备/train/images/订单1804656_54_7089970.jpg b/datasets/搭电设备/train/images/订单1804656_54_7089970.jpg new file mode 100644 index 0000000..8ff1944 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804656_54_7089970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc3d039a9e319c1717ab3ddec9b023367ad985dc7d74b2c379d6ebae6713905 +size 241315 diff --git a/datasets/搭电设备/train/images/订单1804658_54_7090003.jpg b/datasets/搭电设备/train/images/订单1804658_54_7090003.jpg new file mode 100644 index 0000000..654bbf7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804658_54_7090003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d74d1318c4cfc8ff91eda773d611098fcfdc4d0175107c43a4df79886493f0 +size 376436 diff --git a/datasets/搭电设备/train/images/订单1804659_54_7090018.jpg b/datasets/搭电设备/train/images/订单1804659_54_7090018.jpg new file mode 100644 index 0000000..2e007fd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804659_54_7090018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d1ebb7f7f83aea95da7ad4474edfd14398e66ecc9822a6c90665f103d98c02 +size 112499 diff --git a/datasets/搭电设备/train/images/订单1804662_54_7090011.jpg b/datasets/搭电设备/train/images/订单1804662_54_7090011.jpg new file mode 100644 index 0000000..b7ef537 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804662_54_7090011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af05ab207220bf2f84363e431a825ed12d199600a6dea41f54e1a62d71740d7 +size 310221 diff --git a/datasets/搭电设备/train/images/订单1804663_54_7090042.jpg b/datasets/搭电设备/train/images/订单1804663_54_7090042.jpg new file mode 100644 index 0000000..a1129d1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804663_54_7090042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90edc370a1d6867f1a457edbaedcbb88550c9af01c9e55a9972f757a1c40e1de +size 100626 diff --git a/datasets/搭电设备/train/images/订单1804667_54_7090072.jpg b/datasets/搭电设备/train/images/订单1804667_54_7090072.jpg new file mode 100644 index 0000000..c54114e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804667_54_7090072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9166a9d17a9dffb7e7ce890cc7f089749bd132b81d76598fdb608f9a3ee987a8 +size 163191 diff --git a/datasets/搭电设备/train/images/订单1804668_54_7090071.jpg b/datasets/搭电设备/train/images/订单1804668_54_7090071.jpg new file mode 100644 index 0000000..2e41f44 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804668_54_7090071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33472717c4065d50ebbfd38fda294904d43c3bd85c17a3ccd16a8db6439908f8 +size 157565 diff --git a/datasets/搭电设备/train/images/订单1804670_54_7090091.jpg b/datasets/搭电设备/train/images/订单1804670_54_7090091.jpg new file mode 100644 index 0000000..05bf7a9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804670_54_7090091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0db493a912fd4805652325d2016a5492490baa782edec7cd40789a959e11d6 +size 136966 diff --git a/datasets/搭电设备/train/images/订单1804671_54_7090113.jpg b/datasets/搭电设备/train/images/订单1804671_54_7090113.jpg new file mode 100644 index 0000000..8993967 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804671_54_7090113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d84e4ee89baa5e4e2666491edb4db9c2f6dfdab8fa74a23f8f911715fedf0f +size 133701 diff --git a/datasets/搭电设备/train/images/订单1804674_54_7090121.jpg b/datasets/搭电设备/train/images/订单1804674_54_7090121.jpg new file mode 100644 index 0000000..078cb82 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804674_54_7090121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1317c35de3bb8aea0cd3475a9e0c027d5abdbfd283596f320ccef191862f71a9 +size 170117 diff --git a/datasets/搭电设备/train/images/订单1804679_54_7090216.jpg b/datasets/搭电设备/train/images/订单1804679_54_7090216.jpg new file mode 100644 index 0000000..db12d9e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804679_54_7090216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7c3467a6ae19ff73846abd11a2418a66c7db60c53efd5edf7700e47d374f66 +size 108487 diff --git a/datasets/搭电设备/train/images/订单1804681_54_7090189.jpg b/datasets/搭电设备/train/images/订单1804681_54_7090189.jpg new file mode 100644 index 0000000..e457c8b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804681_54_7090189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5ab37725a2452ecec5b3d859895bfb169c4b8ab2c5389be001af97a6ca57c3 +size 133333 diff --git a/datasets/搭电设备/train/images/订单1804682_54_7090278.jpg b/datasets/搭电设备/train/images/订单1804682_54_7090278.jpg new file mode 100644 index 0000000..f4087af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804682_54_7090278.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb576e21997a11eec00cbf89bdca421ba14b21ac6c33d74acb5dae1a0bdd0fea +size 314080 diff --git a/datasets/搭电设备/train/images/订单1804685_54_7090187.jpg b/datasets/搭电设备/train/images/订单1804685_54_7090187.jpg new file mode 100644 index 0000000..ddddbc5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804685_54_7090187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0bdf7f63b53353ae6768c80ba60a56c3bfc4a59381f85e230e5b7216b5334a +size 323232 diff --git a/datasets/搭电设备/train/images/订单1804688_54_7090285.jpg b/datasets/搭电设备/train/images/订单1804688_54_7090285.jpg new file mode 100644 index 0000000..d14a43d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804688_54_7090285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73af925c3c7f38214023dd824d03793dc4f8ddeb2c04c5d7c5fcfbf82870c9ea +size 78982 diff --git a/datasets/搭电设备/train/images/订单1804689_54_7090282.jpg b/datasets/搭电设备/train/images/订单1804689_54_7090282.jpg new file mode 100644 index 0000000..c11012e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804689_54_7090282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a823604ad2a499fc010661b5fc768443edefe7483e90d6d78b43fe5ca424bc14 +size 130147 diff --git a/datasets/搭电设备/train/images/订单1804691_54_7090323.jpg b/datasets/搭电设备/train/images/订单1804691_54_7090323.jpg new file mode 100644 index 0000000..30056ed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804691_54_7090323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bd236d3a1d0fa0bd68bbbe5599643979ae12983f408c1e7c51da8844b9c689 +size 123468 diff --git a/datasets/搭电设备/train/images/订单1804693_54_7090343.jpg b/datasets/搭电设备/train/images/订单1804693_54_7090343.jpg new file mode 100644 index 0000000..16a1ac6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804693_54_7090343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174f0ea18e4f76f93fbdbf62d4200011f3a875d085405f53167ab13b8832f811 +size 131895 diff --git a/datasets/搭电设备/train/images/订单1804696_54_7090410.jpg b/datasets/搭电设备/train/images/订单1804696_54_7090410.jpg new file mode 100644 index 0000000..532b63e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804696_54_7090410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242805d0a2cfb503110f657196da249499907ff6d862a5bd95fad0ea1bc3c89b +size 112973 diff --git a/datasets/搭电设备/train/images/订单1804698_54_7090386.jpg b/datasets/搭电设备/train/images/订单1804698_54_7090386.jpg new file mode 100644 index 0000000..e0c9cd7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804698_54_7090386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a808918ddfdac6482f7aa2f7a22597f3f9d553d4a031980c2be42a6b9dade0fd +size 198466 diff --git a/datasets/搭电设备/train/images/订单1804699_54_7090382.jpg b/datasets/搭电设备/train/images/订单1804699_54_7090382.jpg new file mode 100644 index 0000000..046e339 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804699_54_7090382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d8ba7af9096d4f0e31a982f99c4f932d31a5e5fe4dd02080eb9a9746b2e948 +size 83017 diff --git a/datasets/搭电设备/train/images/订单1804701_54_7090418.jpg b/datasets/搭电设备/train/images/订单1804701_54_7090418.jpg new file mode 100644 index 0000000..01b91e0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804701_54_7090418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c689fc711119baed47e290825f0765e2bd71805ba31da3c463f534bbf4ff77fc +size 534533 diff --git a/datasets/搭电设备/train/images/订单1804704_54_7090459.jpg b/datasets/搭电设备/train/images/订单1804704_54_7090459.jpg new file mode 100644 index 0000000..d69be15 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804704_54_7090459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a88e5ec70adb599cf7823bd48a00a5b5f7fbdcd26c2f1cd31e6bc4c1dd6b6dd +size 116300 diff --git a/datasets/搭电设备/train/images/订单1804707_54_7090502.jpg b/datasets/搭电设备/train/images/订单1804707_54_7090502.jpg new file mode 100644 index 0000000..c2e2e97 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804707_54_7090502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa5012a6fd070dd91492b33283937f29a0da76913567303fba44d0bcfce910a +size 141698 diff --git a/datasets/搭电设备/train/images/订单1804708_54_7090510.jpg b/datasets/搭电设备/train/images/订单1804708_54_7090510.jpg new file mode 100644 index 0000000..dba920b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804708_54_7090510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77a6fa6e11d7e84148e0392356dcec2b2ba9d8ec4581596decfac9764c411b1 +size 286872 diff --git a/datasets/搭电设备/train/images/订单1804710_54_7090534.jpg b/datasets/搭电设备/train/images/订单1804710_54_7090534.jpg new file mode 100644 index 0000000..b2440f2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804710_54_7090534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371954713a961e3f6076c1636be911a82316191ed5f8ebe8ec927ef798fd713e +size 276929 diff --git a/datasets/搭电设备/train/images/订单1804713_54_7090551.jpg b/datasets/搭电设备/train/images/订单1804713_54_7090551.jpg new file mode 100644 index 0000000..6b76a1d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804713_54_7090551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2e3ed5f66c310224a167a9ce9e4c7066d180d986146e42187ce9f01715839e +size 87214 diff --git a/datasets/搭电设备/train/images/订单1804714_54_7090606.jpg b/datasets/搭电设备/train/images/订单1804714_54_7090606.jpg new file mode 100644 index 0000000..df44c70 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804714_54_7090606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa372db3e38fe6b956f3f7be7b38634ca427dbbdf218cc4bcb4e50476a61c5ad +size 114443 diff --git a/datasets/搭电设备/train/images/订单1804715_54_7090560.jpg b/datasets/搭电设备/train/images/订单1804715_54_7090560.jpg new file mode 100644 index 0000000..8370f39 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804715_54_7090560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e25cf9651657108111eb4d00c562e739254cb22eafde3fb1460aac7b6fb5b6 +size 113233 diff --git a/datasets/搭电设备/train/images/订单1804718_54_7090597.jpg b/datasets/搭电设备/train/images/订单1804718_54_7090597.jpg new file mode 100644 index 0000000..e42a908 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804718_54_7090597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d08734dbf028075894b44bcf4e193cc276fceafcc3deaf91ac7fdc340d8ab32 +size 174492 diff --git a/datasets/搭电设备/train/images/订单1804719_54_7090572.jpg b/datasets/搭电设备/train/images/订单1804719_54_7090572.jpg new file mode 100644 index 0000000..001b495 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804719_54_7090572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903c9d5ece399f3707bb8306917ab8eba3ea8088a45c147344e31bdba66d5886 +size 159529 diff --git a/datasets/搭电设备/train/images/订单1804722_54_7090594.jpg b/datasets/搭电设备/train/images/订单1804722_54_7090594.jpg new file mode 100644 index 0000000..faa8559 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804722_54_7090594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e750559b105694c90115688b24092a2195ad0f6f1ab09ef2e520118b8ec283c +size 118299 diff --git a/datasets/搭电设备/train/images/订单1804724_54_7090640.jpg b/datasets/搭电设备/train/images/订单1804724_54_7090640.jpg new file mode 100644 index 0000000..fed382b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804724_54_7090640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1520a88f77124d7960a6eb9ac2a97cfedd8b1841865d2bea2005aea32e270b2 +size 116105 diff --git a/datasets/搭电设备/train/images/订单1804725_54_7090619.jpg b/datasets/搭电设备/train/images/订单1804725_54_7090619.jpg new file mode 100644 index 0000000..04a3344 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804725_54_7090619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361fff84f351d45bc4bcb859406a8ec0da5e21f52369984d03a471745fa8cc2d +size 206635 diff --git a/datasets/搭电设备/train/images/订单1804726_54_7090651.jpg b/datasets/搭电设备/train/images/订单1804726_54_7090651.jpg new file mode 100644 index 0000000..95938c2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804726_54_7090651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57302ebbe020de24b3e06b3b9e236d39ec9a98d931e6d0acab1b8012d39d0d5c +size 765240 diff --git a/datasets/搭电设备/train/images/订单1804727_54_7090684.jpg b/datasets/搭电设备/train/images/订单1804727_54_7090684.jpg new file mode 100644 index 0000000..c526740 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804727_54_7090684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8195c0c805b46b088f41753b6869b25946c98478d1fed87aba2fd3995f8f1d47 +size 125349 diff --git a/datasets/搭电设备/train/images/订单1804728_54_7090712.jpg b/datasets/搭电设备/train/images/订单1804728_54_7090712.jpg new file mode 100644 index 0000000..1709ee0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804728_54_7090712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7460e8290494ba948d0035667cca943f686cbf8db963e84a3324db5a199ad56f +size 133111 diff --git a/datasets/搭电设备/train/images/订单1804729_54_7090698.jpg b/datasets/搭电设备/train/images/订单1804729_54_7090698.jpg new file mode 100644 index 0000000..566e3f6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804729_54_7090698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d714837807f2721cd4f52e85e06bd48f2d700fc900e46230a4ef66b3be55c6d +size 398724 diff --git a/datasets/搭电设备/train/images/订单1804732_54_7090661.jpg b/datasets/搭电设备/train/images/订单1804732_54_7090661.jpg new file mode 100644 index 0000000..6b77e5d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804732_54_7090661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a0604a71e2024c0f73da223d826a1de15898684b1eb60cf82219c3b211f497 +size 115094 diff --git a/datasets/搭电设备/train/images/订单1804733_54_7090668.jpg b/datasets/搭电设备/train/images/订单1804733_54_7090668.jpg new file mode 100644 index 0000000..d174136 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804733_54_7090668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e956cc1835815d61052fdfbb1e85efec0e6c8a5ed355f7887e608c5c5e5d5a36 +size 174968 diff --git a/datasets/搭电设备/train/images/订单1804734_54_7090710.jpg b/datasets/搭电设备/train/images/订单1804734_54_7090710.jpg new file mode 100644 index 0000000..4b422c0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804734_54_7090710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1727f57c95ffda936229a1f78730c8803ebecb1d4c38ad6c963fb30a5c3a4051 +size 164819 diff --git a/datasets/搭电设备/train/images/订单1804738_54_7090717.jpg b/datasets/搭电设备/train/images/订单1804738_54_7090717.jpg new file mode 100644 index 0000000..b373e0b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804738_54_7090717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b952bc4d33736d717c4eeab2a05e3e099730a67914b1e468bf3fc7d4a8bc2a +size 448436 diff --git a/datasets/搭电设备/train/images/订单1804742_54_7090744.jpg b/datasets/搭电设备/train/images/订单1804742_54_7090744.jpg new file mode 100644 index 0000000..79ba513 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804742_54_7090744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cdac29301ba28224d3aa13d997275ddac872a2d8cf7d065f43f4e8ba7bee3f3 +size 162329 diff --git a/datasets/搭电设备/train/images/订单1804744_54_7090718.jpg b/datasets/搭电设备/train/images/订单1804744_54_7090718.jpg new file mode 100644 index 0000000..6acc5fd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804744_54_7090718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:514db64b82fa563e4ddfc6bb7ab2e65d6d57d61463689a3b3005f84fb316fac8 +size 126422 diff --git a/datasets/搭电设备/train/images/订单1804750_54_7090760.jpg b/datasets/搭电设备/train/images/订单1804750_54_7090760.jpg new file mode 100644 index 0000000..3ccf4e6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804750_54_7090760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9843f79c2fe9669c30da200b0d96b1a201bc162c788980a638ab03f0a8638ca0 +size 124438 diff --git a/datasets/搭电设备/train/images/订单1804753_54_7090816.jpg b/datasets/搭电设备/train/images/订单1804753_54_7090816.jpg new file mode 100644 index 0000000..1a6fadf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804753_54_7090816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f156af9b7561db26ad4c9594110597e1580b19dd565702405de3587edb2a3220 +size 444963 diff --git a/datasets/搭电设备/train/images/订单1804754_54_7091020.jpg b/datasets/搭电设备/train/images/订单1804754_54_7091020.jpg new file mode 100644 index 0000000..c42c2bb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804754_54_7091020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1baa147b0055059e0a990f3d3d21f759ad2f98feb74894165e3ba0a7081233c6 +size 155257 diff --git a/datasets/搭电设备/train/images/订单1804755_54_7090769.jpg b/datasets/搭电设备/train/images/订单1804755_54_7090769.jpg new file mode 100644 index 0000000..340f38b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804755_54_7090769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c40e42f2df7fbdc8868f424c2e15e747e9552f2ba2f26b5bd1db99183ee833 +size 116509 diff --git a/datasets/搭电设备/train/images/订单1804761_54_7090871.jpg b/datasets/搭电设备/train/images/订单1804761_54_7090871.jpg new file mode 100644 index 0000000..811d42b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804761_54_7090871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d37da13832830b26aede91d8de0edf64ab56474713f1263a58390e65f7955c +size 424170 diff --git a/datasets/搭电设备/train/images/订单1804762_54_7090891.jpg b/datasets/搭电设备/train/images/订单1804762_54_7090891.jpg new file mode 100644 index 0000000..b2c6287 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804762_54_7090891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b5848fba0e9d4af7f6d3e160cd7937e0099caca955ffe73a2c8583fb2c6d8a +size 239135 diff --git a/datasets/搭电设备/train/images/订单1804764_54_7090919.jpg b/datasets/搭电设备/train/images/订单1804764_54_7090919.jpg new file mode 100644 index 0000000..59a764c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804764_54_7090919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca115a22aa6b36b747465626d9dc43d4fd19d8c25cfaf08cdfa3dc1e6018b733 +size 128271 diff --git a/datasets/搭电设备/train/images/订单1804767_54_7090852.jpg b/datasets/搭电设备/train/images/订单1804767_54_7090852.jpg new file mode 100644 index 0000000..36c660b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804767_54_7090852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2087b2ece89c698ca2c1a6994b643e1e6a6544512fe6afb562fcd2b1ea998dfa +size 165696 diff --git a/datasets/搭电设备/train/images/订单1804770_54_7091005.jpg b/datasets/搭电设备/train/images/订单1804770_54_7091005.jpg new file mode 100644 index 0000000..3104621 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804770_54_7091005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f790edd7b3156eab70111b4377e6b25789a2f12621b77b92f896d4393b4afd +size 159072 diff --git a/datasets/搭电设备/train/images/订单1804772_54_7090929.jpg b/datasets/搭电设备/train/images/订单1804772_54_7090929.jpg new file mode 100644 index 0000000..1399940 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804772_54_7090929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997898692d5e4b737a539ec35e57026ed6564c0b41a98dc24ee62396ac4f6977 +size 138757 diff --git a/datasets/搭电设备/train/images/订单1804773_54_7091000.jpg b/datasets/搭电设备/train/images/订单1804773_54_7091000.jpg new file mode 100644 index 0000000..bae2779 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804773_54_7091000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02a75da788c5b83e032744c7537e69edebc07844e486f07e57db32674738215 +size 184045 diff --git a/datasets/搭电设备/train/images/订单1804774_54_7091009.jpg b/datasets/搭电设备/train/images/订单1804774_54_7091009.jpg new file mode 100644 index 0000000..2176b21 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804774_54_7091009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0923824db90b7610d2f667a3d151b313207f023d580ccaf433da9aaea71f8590 +size 169655 diff --git a/datasets/搭电设备/train/images/订单1804776_54_7091001.jpg b/datasets/搭电设备/train/images/订单1804776_54_7091001.jpg new file mode 100644 index 0000000..2392248 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804776_54_7091001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7612bac182dde5f51e509b6aa0af6b936027c195fd745a4cb39a3505a6ae7d +size 144550 diff --git a/datasets/搭电设备/train/images/订单1804781_54_7091096.jpg b/datasets/搭电设备/train/images/订单1804781_54_7091096.jpg new file mode 100644 index 0000000..399409d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804781_54_7091096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd952b9fbf6baa4175e08d98e3b7ceefb3d7ce39fddc7d1b6f10642606f3a1e +size 125969 diff --git a/datasets/搭电设备/train/images/订单1804783_54_7091095.jpg b/datasets/搭电设备/train/images/订单1804783_54_7091095.jpg new file mode 100644 index 0000000..4bb163e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804783_54_7091095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fc11ddd7d6467628f21bdb5d0b0d1d4bda6719b3373a68e5d7116a6395e832 +size 488028 diff --git a/datasets/搭电设备/train/images/订单1804784_54_7091069.jpg b/datasets/搭电设备/train/images/订单1804784_54_7091069.jpg new file mode 100644 index 0000000..b54ff2a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804784_54_7091069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2144048334d603d1cb3ff8638c843ebd1e0f62733ed84ce186558133ddb9f10c +size 108540 diff --git a/datasets/搭电设备/train/images/订单1804789_54_7091097.jpg b/datasets/搭电设备/train/images/订单1804789_54_7091097.jpg new file mode 100644 index 0000000..1dc9d6a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804789_54_7091097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdb9e5195f3cdb6562145cbdc5efef24bb33092ce1d2edd8aa595293ce277b7 +size 207896 diff --git a/datasets/搭电设备/train/images/订单1804790_54_7091145.jpg b/datasets/搭电设备/train/images/订单1804790_54_7091145.jpg new file mode 100644 index 0000000..0057820 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804790_54_7091145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae9b8cd6b019d6e0a67db33724559d3559774b2fdb27878c947f68a27a99e4b +size 773908 diff --git a/datasets/搭电设备/train/images/订单1804794_54_7091259.jpg b/datasets/搭电设备/train/images/订单1804794_54_7091259.jpg new file mode 100644 index 0000000..0d35c4f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804794_54_7091259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8bead016b36d5f1b9a387d548c721eafe7d39b412b4665f68e25f6f9b351c2 +size 175502 diff --git a/datasets/搭电设备/train/images/订单1804796_54_7091285.jpg b/datasets/搭电设备/train/images/订单1804796_54_7091285.jpg new file mode 100644 index 0000000..41ade4c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804796_54_7091285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f19f54c1fb6eba38fd443658231dc91dfe0e67fdb23d2d86616ee8f911a34e41 +size 183668 diff --git a/datasets/搭电设备/train/images/订单1804797_54_7091216.jpg b/datasets/搭电设备/train/images/订单1804797_54_7091216.jpg new file mode 100644 index 0000000..9a20fdd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804797_54_7091216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381ff3c24c5c9df2cd3403a1d1fb8204e893e4fc8b58a36461a2fadaae776014 +size 254933 diff --git a/datasets/搭电设备/train/images/订单1804798_54_7091213.jpg b/datasets/搭电设备/train/images/订单1804798_54_7091213.jpg new file mode 100644 index 0000000..a6893ce --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804798_54_7091213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa49890f5fe6f3471ce2015c79b2282007cd1ba79745d6e5b9f90dedf7052b1 +size 132396 diff --git a/datasets/搭电设备/train/images/订单1804799_54_7091247.jpg b/datasets/搭电设备/train/images/订单1804799_54_7091247.jpg new file mode 100644 index 0000000..f178693 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804799_54_7091247.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f8157f51a7503e83b092ffaa45710e5899c163f7342ec61c5853b0dc6faa1e +size 192612 diff --git a/datasets/搭电设备/train/images/订单1804800_54_7091226.jpg b/datasets/搭电设备/train/images/订单1804800_54_7091226.jpg new file mode 100644 index 0000000..4aa8d7c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804800_54_7091226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d109c4a766f2a0c40b7eba2ff4f75992ea1d66bb8da2b6515735f1b3501a51d +size 157651 diff --git a/datasets/搭电设备/train/images/订单1804806_54_7091316.jpg b/datasets/搭电设备/train/images/订单1804806_54_7091316.jpg new file mode 100644 index 0000000..86c0943 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804806_54_7091316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf9a599f73084040b8ff79a99054c3fd9c2dcc3cd70bfb7d8bae49e85318fb0 +size 276023 diff --git a/datasets/搭电设备/train/images/订单1804809_54_7091340.jpg b/datasets/搭电设备/train/images/订单1804809_54_7091340.jpg new file mode 100644 index 0000000..f43aa35 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804809_54_7091340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5871261d1d0bfcc2f35e645b13a51e1acec92672204f7abc32f6ab2eeb6d3054 +size 460297 diff --git a/datasets/搭电设备/train/images/订单1804810_54_7091424.jpg b/datasets/搭电设备/train/images/订单1804810_54_7091424.jpg new file mode 100644 index 0000000..9a8e27a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804810_54_7091424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be334c90fd423e4de61af371850047f5eee1b5923ab0a8078b7b625a354f055 +size 163430 diff --git a/datasets/搭电设备/train/images/订单1804811_54_7091330.jpg b/datasets/搭电设备/train/images/订单1804811_54_7091330.jpg new file mode 100644 index 0000000..f04e8f6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804811_54_7091330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb90075146c227548c96e099fb0f1ab3bbaf7f1181c0e194676eb83ba9e1b288 +size 143752 diff --git a/datasets/搭电设备/train/images/订单1804813_54_7091310.jpg b/datasets/搭电设备/train/images/订单1804813_54_7091310.jpg new file mode 100644 index 0000000..99d1b7d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804813_54_7091310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe81cbb64dbe041884904499cff06bb29bd9c6686885f84061320b90c9b4c49 +size 142474 diff --git a/datasets/搭电设备/train/images/订单1804816_54_7091485.jpg b/datasets/搭电设备/train/images/订单1804816_54_7091485.jpg new file mode 100644 index 0000000..71ec823 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804816_54_7091485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e19673f43ce42ae1e571ec0cc5a496bbcc64b5ad963199e22e64b289b8ac59 +size 301343 diff --git a/datasets/搭电设备/train/images/订单1804819_54_7091398.jpg b/datasets/搭电设备/train/images/订单1804819_54_7091398.jpg new file mode 100644 index 0000000..8a9404c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804819_54_7091398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30252139c837df4a85c063ea2116dc606f8a480d8d674971ce111fd5e5dd288f +size 245646 diff --git a/datasets/搭电设备/train/images/订单1804822_54_7092174.jpg b/datasets/搭电设备/train/images/订单1804822_54_7092174.jpg new file mode 100644 index 0000000..f416427 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804822_54_7092174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23655b0a2eb0755186f63c8c222df98ed353538b45292f6b97a82eb0230bd5a8 +size 105104 diff --git a/datasets/搭电设备/train/images/订单1804833_54_7091535.jpg b/datasets/搭电设备/train/images/订单1804833_54_7091535.jpg new file mode 100644 index 0000000..647d5ee --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804833_54_7091535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c2f10618db5697377d80074fa248cb1acc52b3d4bac7cd0b8c69996b516aa4 +size 250866 diff --git a/datasets/搭电设备/train/images/订单1804834_54_7091578.jpg b/datasets/搭电设备/train/images/订单1804834_54_7091578.jpg new file mode 100644 index 0000000..a8bf18d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804834_54_7091578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5422889d5c9392667aabbc6e59c20a60a314d5b53b73828b2e5847de17189c +size 141254 diff --git a/datasets/搭电设备/train/images/订单1804839_54_7091597.jpg b/datasets/搭电设备/train/images/订单1804839_54_7091597.jpg new file mode 100644 index 0000000..19d21e5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804839_54_7091597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40cb447efdb54417d0328957dfeacec780417ed1eeb97928916f5ab2919e116 +size 110699 diff --git a/datasets/搭电设备/train/images/订单1804840_54_7091569.jpg b/datasets/搭电设备/train/images/订单1804840_54_7091569.jpg new file mode 100644 index 0000000..34029e8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804840_54_7091569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe64fc4847d13e90dadc94f2f0ff7c414007a693ed00db9881217740dcfb1f4 +size 127061 diff --git a/datasets/搭电设备/train/images/订单1804842_54_7091696.jpg b/datasets/搭电设备/train/images/订单1804842_54_7091696.jpg new file mode 100644 index 0000000..5c4a5a3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804842_54_7091696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3128fca302d27bb7e4c257962565f1f3f78ab0c896f7375cb1f5b85883b2ec6b +size 501618 diff --git a/datasets/搭电设备/train/images/订单1804844_54_7091634.jpg b/datasets/搭电设备/train/images/订单1804844_54_7091634.jpg new file mode 100644 index 0000000..8dc0a9d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804844_54_7091634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85815be9fdb627bad0524d38bc72ad89ad389e989fe0d5bc2fb471051116eba +size 168803 diff --git a/datasets/搭电设备/train/images/订单1804845_54_7091681.jpg b/datasets/搭电设备/train/images/订单1804845_54_7091681.jpg new file mode 100644 index 0000000..a458397 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804845_54_7091681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f8292219874bb6bcea704f9c53b3cd92742322c39481ce3a099fd8014702f9 +size 147098 diff --git a/datasets/搭电设备/train/images/订单1804846_54_7096434.jpg b/datasets/搭电设备/train/images/订单1804846_54_7096434.jpg new file mode 100644 index 0000000..1789368 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804846_54_7096434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be62bf028756ef7f6b67b9eca9b86e86379120eb97639bfc89bc722250c21115 +size 101347 diff --git a/datasets/搭电设备/train/images/订单1804848_54_7091662.jpg b/datasets/搭电设备/train/images/订单1804848_54_7091662.jpg new file mode 100644 index 0000000..d2c4bee --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804848_54_7091662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b2557b60e7cb2605bb0c504db270047b4a8d87e3e43f0706eb285a721f7383 +size 162637 diff --git a/datasets/搭电设备/train/images/订单1804850_54_7091755.jpg b/datasets/搭电设备/train/images/订单1804850_54_7091755.jpg new file mode 100644 index 0000000..efe91bb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804850_54_7091755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b76a6c3c18017e3fdc2a36c231832b9c0452675fca9deb1b11e3db475e964a3 +size 433650 diff --git a/datasets/搭电设备/train/images/订单1804851_54_7091687.jpg b/datasets/搭电设备/train/images/订单1804851_54_7091687.jpg new file mode 100644 index 0000000..e8b3c15 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804851_54_7091687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e42c02a19609d93616f233cb71f702aa275c6bd068b2ef7acfa492e8e0c8b03 +size 183014 diff --git a/datasets/搭电设备/train/images/订单1804854_54_7091827.jpg b/datasets/搭电设备/train/images/订单1804854_54_7091827.jpg new file mode 100644 index 0000000..2a4d88e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804854_54_7091827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12faf387b2d6eefc4cd742e47e2cc57f6b73b05c250948aeea0de459c07009b +size 134322 diff --git a/datasets/搭电设备/train/images/订单1804857_54_7091777.jpg b/datasets/搭电设备/train/images/订单1804857_54_7091777.jpg new file mode 100644 index 0000000..ced3e03 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804857_54_7091777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814d9cd5c565bcfde2afb84cd5f02805b4c31b0c115467e13b283ec09b32243f +size 108756 diff --git a/datasets/搭电设备/train/images/订单1804859_54_7091792.jpg b/datasets/搭电设备/train/images/订单1804859_54_7091792.jpg new file mode 100644 index 0000000..d024405 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804859_54_7091792.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1391d7fb739f2e18a47184e9fbd626d1ca4bd2374a4d4dc5b9c5c9051d033f95 +size 139186 diff --git a/datasets/搭电设备/train/images/订单1804861_54_7091881.jpg b/datasets/搭电设备/train/images/订单1804861_54_7091881.jpg new file mode 100644 index 0000000..235fa49 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804861_54_7091881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62506e9191cb79d7ce8445cde5c8cb885bc37cfdaa0fa725404f7629411e401 +size 112007 diff --git a/datasets/搭电设备/train/images/订单1804863_54_7091825.jpg b/datasets/搭电设备/train/images/订单1804863_54_7091825.jpg new file mode 100644 index 0000000..dc0da0a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804863_54_7091825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7aba76dfda14ef783eada8a05af9114e408894b2e31b242f78299930580456 +size 597492 diff --git a/datasets/搭电设备/train/images/订单1804865_54_7091819.jpg b/datasets/搭电设备/train/images/订单1804865_54_7091819.jpg new file mode 100644 index 0000000..7ad362c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804865_54_7091819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4eda18b807b5ccbbb13d89ae3a49f707706e6d0221b4ab5b35caba17dd3c69f +size 147368 diff --git a/datasets/搭电设备/train/images/订单1804866_54_7091879.jpg b/datasets/搭电设备/train/images/订单1804866_54_7091879.jpg new file mode 100644 index 0000000..392aa59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804866_54_7091879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67506cd6c341be68028af517f6424736e9b9ef85d565e9330f4ca11a94bfe0f9 +size 240296 diff --git a/datasets/搭电设备/train/images/订单1804867_54_7091928.jpg b/datasets/搭电设备/train/images/订单1804867_54_7091928.jpg new file mode 100644 index 0000000..160a74e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804867_54_7091928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84037419def4f2e1e0d2c777c6305379131649a0f8579cd72e6c89c85d1693c4 +size 493937 diff --git a/datasets/搭电设备/train/images/订单1804870_54_7092006.jpg b/datasets/搭电设备/train/images/订单1804870_54_7092006.jpg new file mode 100644 index 0000000..5df2b76 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804870_54_7092006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558d34bd4842a171151c3e8f08d3f9e18e8d8b3497cf7cc4c93870ff7d26a30f +size 129765 diff --git a/datasets/搭电设备/train/images/订单1804871_54_7091900.jpg b/datasets/搭电设备/train/images/订单1804871_54_7091900.jpg new file mode 100644 index 0000000..aa26e4d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804871_54_7091900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9819d6d3f9e94a02098c4fedbce41a1b4b39e39978a7837ee40803b56461418f +size 298976 diff --git a/datasets/搭电设备/train/images/订单1804872_54_7091867.jpg b/datasets/搭电设备/train/images/订单1804872_54_7091867.jpg new file mode 100644 index 0000000..44783f1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804872_54_7091867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc611cc9a2f84f0b827a531b86de2c422dbf39f6c42d4b370bdbb5b26684c77e +size 153040 diff --git a/datasets/搭电设备/train/images/订单1804875_54_7091969.jpg b/datasets/搭电设备/train/images/订单1804875_54_7091969.jpg new file mode 100644 index 0000000..a59321c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804875_54_7091969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f54593d79ff720efff017b7e266fc6451b7c02ef51f94ef57dfad03d38a6a8 +size 194495 diff --git a/datasets/搭电设备/train/images/订单1804878_54_7091993.jpg b/datasets/搭电设备/train/images/订单1804878_54_7091993.jpg new file mode 100644 index 0000000..d1e060b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804878_54_7091993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a638d3640903891240034a21947d41670fb458620862c97f503824a273420b9 +size 82244 diff --git a/datasets/搭电设备/train/images/订单1804881_54_7092075.jpg b/datasets/搭电设备/train/images/订单1804881_54_7092075.jpg new file mode 100644 index 0000000..e6bdd35 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804881_54_7092075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b376e4612106afe86fedae4b287c7ec3c0fde01822c12b2dc470adf7584df2 +size 109158 diff --git a/datasets/搭电设备/train/images/订单1804886_54_7092040.jpg b/datasets/搭电设备/train/images/订单1804886_54_7092040.jpg new file mode 100644 index 0000000..40fbd88 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804886_54_7092040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46369bcc03b5dfdceae8ac8210c4451d50a51af43060e4d241a075ca78bce779 +size 359408 diff --git a/datasets/搭电设备/train/images/订单1804887_54_7092038.jpg b/datasets/搭电设备/train/images/订单1804887_54_7092038.jpg new file mode 100644 index 0000000..37cdd09 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804887_54_7092038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2997177fd2cbaaf90102190efaf8a0499513642383d377457dd4037290379be +size 181910 diff --git a/datasets/搭电设备/train/images/订单1804888_54_7092066.jpg b/datasets/搭电设备/train/images/订单1804888_54_7092066.jpg new file mode 100644 index 0000000..d30171f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804888_54_7092066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaaa42192242e90af13932691dbd3883eb932bcb8eb189b9e2303c953d54e79 +size 479815 diff --git a/datasets/搭电设备/train/images/订单1804889_54_7092115.jpg b/datasets/搭电设备/train/images/订单1804889_54_7092115.jpg new file mode 100644 index 0000000..46b91d3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804889_54_7092115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253590087eedb658f624c253d74e9251880064a2c93dff2cbe69197954fc529b +size 120944 diff --git a/datasets/搭电设备/train/images/订单1804890_54_7092101.jpg b/datasets/搭电设备/train/images/订单1804890_54_7092101.jpg new file mode 100644 index 0000000..61bd229 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804890_54_7092101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b41b04bf4e9f6818be0f514e7294f3b0639293d9fe03774ceb1e37f0601f64 +size 419475 diff --git a/datasets/搭电设备/train/images/订单1804891_54_7092091.jpg b/datasets/搭电设备/train/images/订单1804891_54_7092091.jpg new file mode 100644 index 0000000..dfab397 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804891_54_7092091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a02904ab58b218917cc67ad7ccc1facfd1e0dd3335a53c7e16dc8b17885057 +size 179590 diff --git a/datasets/搭电设备/train/images/订单1804893_54_7092109.jpg b/datasets/搭电设备/train/images/订单1804893_54_7092109.jpg new file mode 100644 index 0000000..65c24c8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804893_54_7092109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b6e0d08761d54b180f0fd679090e3d8d5f8548a1ac36c27b334b828b64e3d3 +size 194848 diff --git a/datasets/搭电设备/train/images/订单1804895_54_7092276.jpg b/datasets/搭电设备/train/images/订单1804895_54_7092276.jpg new file mode 100644 index 0000000..b27c017 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804895_54_7092276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ab33f880e6cc269a50f173a847cf725b0b994ee96607d8b71e927397c4fe7c +size 327648 diff --git a/datasets/搭电设备/train/images/订单1804897_54_7092177.jpg b/datasets/搭电设备/train/images/订单1804897_54_7092177.jpg new file mode 100644 index 0000000..74fa853 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804897_54_7092177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff19d0aadc10690d338d93e27b795fb7933f5054c67c119707217ef797beb420 +size 518486 diff --git a/datasets/搭电设备/train/images/订单1804899_54_7092185.jpg b/datasets/搭电设备/train/images/订单1804899_54_7092185.jpg new file mode 100644 index 0000000..4b4b5f1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804899_54_7092185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641a7b70ce2ff3814a778c1ce08f675b353ed72b0c7564d1a1b4f31aa369ee83 +size 215286 diff --git a/datasets/搭电设备/train/images/订单1804907_54_7092217.jpg b/datasets/搭电设备/train/images/订单1804907_54_7092217.jpg new file mode 100644 index 0000000..a38615d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804907_54_7092217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c809e06b0c2a4ae493de8e0d227511f9796830a48bb16fa4ed137a4e9ec2e91e +size 138314 diff --git a/datasets/搭电设备/train/images/订单1804911_54_7092252.jpg b/datasets/搭电设备/train/images/订单1804911_54_7092252.jpg new file mode 100644 index 0000000..705cfcb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804911_54_7092252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c209f06da078d4e4c859b8c447eae6b2a57e1c73f9752c5dc1ee43a35a98f4 +size 174376 diff --git a/datasets/搭电设备/train/images/订单1804914_54_7092292.jpg b/datasets/搭电设备/train/images/订单1804914_54_7092292.jpg new file mode 100644 index 0000000..815e48b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804914_54_7092292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d60f96f1a1f8a0ff48d7ef8ec4d0929c5689ba2cf3bbcbdb5ee80e9b425693 +size 320676 diff --git a/datasets/搭电设备/train/images/订单1804915_54_7092298.jpg b/datasets/搭电设备/train/images/订单1804915_54_7092298.jpg new file mode 100644 index 0000000..f0e1014 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804915_54_7092298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d11fe2da633b24cf305077ac201b63813be850c92d15cd9030c2b85fbb6c8ec +size 660671 diff --git a/datasets/搭电设备/train/images/订单1804919_54_7092346.jpg b/datasets/搭电设备/train/images/订单1804919_54_7092346.jpg new file mode 100644 index 0000000..16b7d51 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804919_54_7092346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b72d37c2c37c5a86b710dfa65b9276795dacd336b24090c1abe95ceb93e36b2 +size 671118 diff --git a/datasets/搭电设备/train/images/订单1804921_54_7092332.jpg b/datasets/搭电设备/train/images/订单1804921_54_7092332.jpg new file mode 100644 index 0000000..50bfa54 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804921_54_7092332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79c5409deb02ba215d6a42a52d8afa256bdd635386963a997ebf2286d931338 +size 130200 diff --git a/datasets/搭电设备/train/images/订单1804922_54_7092379.jpg b/datasets/搭电设备/train/images/订单1804922_54_7092379.jpg new file mode 100644 index 0000000..b9040ec --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804922_54_7092379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c9f9cc81730b59a5be91eb6f77f0905c98384f1671690be969d95ad7f2a15e +size 632549 diff --git a/datasets/搭电设备/train/images/订单1804923_54_7092357.jpg b/datasets/搭电设备/train/images/订单1804923_54_7092357.jpg new file mode 100644 index 0000000..ceaccf8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804923_54_7092357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f49f75f2fb67f886380bf65f360131e27d64ad4afd24ca150703fa656e3430 +size 798715 diff --git a/datasets/搭电设备/train/images/订单1804924_54_7092372.jpg b/datasets/搭电设备/train/images/订单1804924_54_7092372.jpg new file mode 100644 index 0000000..631e3a3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804924_54_7092372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f25929bec2d256b6d4d88f4fc53de9ac80bdaab618a29b69a37132ec2212dfc +size 170070 diff --git a/datasets/搭电设备/train/images/订单1804931_54_7092450.jpg b/datasets/搭电设备/train/images/订单1804931_54_7092450.jpg new file mode 100644 index 0000000..7ffcbc7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804931_54_7092450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993c4831d051827d8a1d7935a86ededfde9bc2382bc013aced6fb9bac3912d38 +size 96700 diff --git a/datasets/搭电设备/train/images/订单1804932_54_7092417.jpg b/datasets/搭电设备/train/images/订单1804932_54_7092417.jpg new file mode 100644 index 0000000..84b41e6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804932_54_7092417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf67e95d4b624e754f8a6fb537189b902513b8bc0753a34ed54e2f4f8d32652 +size 187149 diff --git a/datasets/搭电设备/train/images/订单1804933_54_7092535.jpg b/datasets/搭电设备/train/images/订单1804933_54_7092535.jpg new file mode 100644 index 0000000..3cce463 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804933_54_7092535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0e4248851f72016fe4c3e561ca0ac9080b8666f8dbc192e685465f05429cf3 +size 154654 diff --git a/datasets/搭电设备/train/images/订单1804934_54_7092400.jpg b/datasets/搭电设备/train/images/订单1804934_54_7092400.jpg new file mode 100644 index 0000000..44414a0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804934_54_7092400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33ff16c1525fafda06103c14fa6e5f2c5bfcb62f2a227047000b110ec96bca3 +size 300494 diff --git a/datasets/搭电设备/train/images/订单1804935_54_7092415.jpg b/datasets/搭电设备/train/images/订单1804935_54_7092415.jpg new file mode 100644 index 0000000..b4fa9c3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804935_54_7092415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71219ad4481f0d19018216aa64eb21590325bc18fa3d43dc19006e11d4b57476 +size 428755 diff --git a/datasets/搭电设备/train/images/订单1804936_54_7092465.jpg b/datasets/搭电设备/train/images/订单1804936_54_7092465.jpg new file mode 100644 index 0000000..50438f8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804936_54_7092465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65488ce1e16ff271e66e6c071ee74d5fc90d834423e9b0699c3efaab61f19fb7 +size 128449 diff --git a/datasets/搭电设备/train/images/订单1804937_54_7092484.jpg b/datasets/搭电设备/train/images/订单1804937_54_7092484.jpg new file mode 100644 index 0000000..3bc1c18 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804937_54_7092484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a9a532e5361b9a801051482ef38f3ab34820379a18234e931331590a7de586 +size 418542 diff --git a/datasets/搭电设备/train/images/订单1804938_54_7092579.jpg b/datasets/搭电设备/train/images/订单1804938_54_7092579.jpg new file mode 100644 index 0000000..324c907 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804938_54_7092579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4524e9084f3e4e63a1f5388b319415fce6e4d96e4e984bc3803541eea5fa5a78 +size 136403 diff --git a/datasets/搭电设备/train/images/订单1804939_54_7092527.jpg b/datasets/搭电设备/train/images/订单1804939_54_7092527.jpg new file mode 100644 index 0000000..57e68da --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804939_54_7092527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b583545daf8a1605a42fd9ec413eb24224c9e7dab2070e3c9c3cf12c77cb3bd +size 559154 diff --git a/datasets/搭电设备/train/images/订单1804940_54_7092530.jpg b/datasets/搭电设备/train/images/订单1804940_54_7092530.jpg new file mode 100644 index 0000000..e284a4f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804940_54_7092530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813b1aa10d22497ab87887be6a5a096f51ed4e7a265b0d1d900525cec8697708 +size 298655 diff --git a/datasets/搭电设备/train/images/订单1804941_54_7092536.jpg b/datasets/搭电设备/train/images/订单1804941_54_7092536.jpg new file mode 100644 index 0000000..ce75927 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804941_54_7092536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d4eceb200f33413751e879c275d4a8f38337943246d72d652fd1d0c5406d41 +size 139943 diff --git a/datasets/搭电设备/train/images/订单1804942_54_7092588.jpg b/datasets/搭电设备/train/images/订单1804942_54_7092588.jpg new file mode 100644 index 0000000..b1e41c9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804942_54_7092588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd04679cb554888a61c13517308b0021de7c383af9aa1861b1af27d0a53c9e9 +size 159556 diff --git a/datasets/搭电设备/train/images/订单1804943_54_7092506.jpg b/datasets/搭电设备/train/images/订单1804943_54_7092506.jpg new file mode 100644 index 0000000..9b791f9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804943_54_7092506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1faa214047e809a37eb128782d5d6f6e212818927beaa96144c0e28233bd2e7 +size 395184 diff --git a/datasets/搭电设备/train/images/订单1804944_54_7092489.jpg b/datasets/搭电设备/train/images/订单1804944_54_7092489.jpg new file mode 100644 index 0000000..de93283 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804944_54_7092489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e634859238b2364f1205394c7fdb4790d7d07785c221e28a315a148277050f +size 126118 diff --git a/datasets/搭电设备/train/images/订单1804948_54_7092592.jpg b/datasets/搭电设备/train/images/订单1804948_54_7092592.jpg new file mode 100644 index 0000000..15b5576 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804948_54_7092592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9472d0fcbba9a6e7d2e9d139a9abb5da3c5119094ad4907c55110412e0e985e +size 167011 diff --git a/datasets/搭电设备/train/images/订单1804951_54_7092609.jpg b/datasets/搭电设备/train/images/订单1804951_54_7092609.jpg new file mode 100644 index 0000000..542de35 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804951_54_7092609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937dc06e3afb29fb23f1ea8975d4066d55ec2dce2c143aa20dfb3dc4230f6686 +size 118403 diff --git a/datasets/搭电设备/train/images/订单1804952_54_7092617.jpg b/datasets/搭电设备/train/images/订单1804952_54_7092617.jpg new file mode 100644 index 0000000..81c78e0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804952_54_7092617.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471c7be8d4c9d3931b648bbf6db2ea5440fa9efb91ab1f55928799bb94a6c148 +size 152112 diff --git a/datasets/搭电设备/train/images/订单1804954_54_7092687.jpg b/datasets/搭电设备/train/images/订单1804954_54_7092687.jpg new file mode 100644 index 0000000..b26c2a9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804954_54_7092687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f79aa298ea2102bebbc064ca55890b03fae63742a6f39b842b48646e97e3e8 +size 117823 diff --git a/datasets/搭电设备/train/images/订单1804956_54_7092636.jpg b/datasets/搭电设备/train/images/订单1804956_54_7092636.jpg new file mode 100644 index 0000000..fb8629e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804956_54_7092636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5afd972efc741725c7491f4fdb0afc8486e155bb5bba2dff8df114dff43da4 +size 544626 diff --git a/datasets/搭电设备/train/images/订单1804957_54_7092645.jpg b/datasets/搭电设备/train/images/订单1804957_54_7092645.jpg new file mode 100644 index 0000000..9af08c2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804957_54_7092645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72354c4cfa2136bb84410fb24fc32fc616e8f7de57bd736dbbd5ab66d3eee98 +size 418327 diff --git a/datasets/搭电设备/train/images/订单1804959_54_7092669.jpg b/datasets/搭电设备/train/images/订单1804959_54_7092669.jpg new file mode 100644 index 0000000..4c13f27 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804959_54_7092669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dcbe9a2b9a7ccf5567b5e67b738b92cfa777d55b78a5c71adc507992edc7b9 +size 174296 diff --git a/datasets/搭电设备/train/images/订单1804960_54_7092879.jpg b/datasets/搭电设备/train/images/订单1804960_54_7092879.jpg new file mode 100644 index 0000000..9be9c6a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804960_54_7092879.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ac45daf4b2accbaffaed266b33a6178d3d5c6858df9651da07377f1a6f95be +size 163361 diff --git a/datasets/搭电设备/train/images/订单1804962_54_7092665.jpg b/datasets/搭电设备/train/images/订单1804962_54_7092665.jpg new file mode 100644 index 0000000..0331459 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804962_54_7092665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b68090262c308517a6a59844e3bf828dd941e5a2b77930c051c165d78e58972 +size 93726 diff --git a/datasets/搭电设备/train/images/订单1804964_54_7092713.jpg b/datasets/搭电设备/train/images/订单1804964_54_7092713.jpg new file mode 100644 index 0000000..e1810ba --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804964_54_7092713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd74f3314d700913144eece8298b19b18e505510431f5c439b42a77421567c71 +size 86441 diff --git a/datasets/搭电设备/train/images/订单1804967_54_7092803.jpg b/datasets/搭电设备/train/images/订单1804967_54_7092803.jpg new file mode 100644 index 0000000..63c8fbd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804967_54_7092803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d3449e6ba753e3514ea73e92cb23aefead7fa45e9aa90a65a5e9ef18b41c64 +size 92289 diff --git a/datasets/搭电设备/train/images/订单1804968_54_7092703.jpg b/datasets/搭电设备/train/images/订单1804968_54_7092703.jpg new file mode 100644 index 0000000..eba0e23 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804968_54_7092703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7d8e4a4eee3a3709a242b1e1f95aa4436daf3ae4a39c481bcafdf4cc079bb6 +size 150810 diff --git a/datasets/搭电设备/train/images/订单1804969_54_7092876.jpg b/datasets/搭电设备/train/images/订单1804969_54_7092876.jpg new file mode 100644 index 0000000..184f0db --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804969_54_7092876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35163e3226e1b8e648659917adddfdd92f779cb83adec9ab106a5d403a4a7529 +size 139825 diff --git a/datasets/搭电设备/train/images/订单1804970_54_7092726.jpg b/datasets/搭电设备/train/images/订单1804970_54_7092726.jpg new file mode 100644 index 0000000..6dd02bf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804970_54_7092726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:826cc1b0b1180b88acae270e3928edc1032c21eda70c6b39fb705b7f16619fad +size 157393 diff --git a/datasets/搭电设备/train/images/订单1804971_54_7092751.jpg b/datasets/搭电设备/train/images/订单1804971_54_7092751.jpg new file mode 100644 index 0000000..8e1fff4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804971_54_7092751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6feeb5de6c160d7aa58d3f464ca4918b0599c20f9cb4c034bdb23387b670a4f +size 624319 diff --git a/datasets/搭电设备/train/images/订单1804974_54_7092717.jpg b/datasets/搭电设备/train/images/订单1804974_54_7092717.jpg new file mode 100644 index 0000000..c98ca01 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804974_54_7092717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b832ed05188aa10d3a8a013aa9355ddea410d8df51bb24879d71363812c1052e +size 557993 diff --git a/datasets/搭电设备/train/images/订单1804977_54_7092924.jpg b/datasets/搭电设备/train/images/订单1804977_54_7092924.jpg new file mode 100644 index 0000000..3321915 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804977_54_7092924.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9ff2e29d67400107e51a090c239bed07ce2f835f786f91750dd29ee3c9a67f +size 184030 diff --git a/datasets/搭电设备/train/images/订单1804981_54_7092845.jpg b/datasets/搭电设备/train/images/订单1804981_54_7092845.jpg new file mode 100644 index 0000000..952833d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804981_54_7092845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5e364b59e1d83f385cc04459c2a2f4646e7eab606bd483f12ce06b8758c854 +size 80281 diff --git a/datasets/搭电设备/train/images/订单1804982_54_7092808.jpg b/datasets/搭电设备/train/images/订单1804982_54_7092808.jpg new file mode 100644 index 0000000..f988ec9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804982_54_7092808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3985f68ff5f7e80cf98a5df5d1bca0fbd9da8a7e9e97d29f9464f6be4743e886 +size 315314 diff --git a/datasets/搭电设备/train/images/订单1804983_54_7092781.jpg b/datasets/搭电设备/train/images/订单1804983_54_7092781.jpg new file mode 100644 index 0000000..a7ce67b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804983_54_7092781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aef6a440ce60c918766f84a7b1406c225e16ae8a0793c5bcf089e58800923ce +size 155107 diff --git a/datasets/搭电设备/train/images/订单1804984_54_7092875.jpg b/datasets/搭电设备/train/images/订单1804984_54_7092875.jpg new file mode 100644 index 0000000..25e5aae --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804984_54_7092875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac24d931ac58be2809e7a3264d2d23b506089e6a12d9a8e84230f00023220fac +size 594604 diff --git a/datasets/搭电设备/train/images/订单1804986_54_7092893.jpg b/datasets/搭电设备/train/images/订单1804986_54_7092893.jpg new file mode 100644 index 0000000..6df4400 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804986_54_7092893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e85df29c3de92b8c0eb11a5d4b792d2398f2b406e66696604963530f8609882 +size 165666 diff --git a/datasets/搭电设备/train/images/订单1804987_54_7093082.jpg b/datasets/搭电设备/train/images/订单1804987_54_7093082.jpg new file mode 100644 index 0000000..8ba4119 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804987_54_7093082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f4e72b0b98e8c7849aa9c0f085dca503dd105722fd5419f71126392f0b04e9 +size 114622 diff --git a/datasets/搭电设备/train/images/订单1804988_54_7093250.jpg b/datasets/搭电设备/train/images/订单1804988_54_7093250.jpg new file mode 100644 index 0000000..8908bfd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804988_54_7093250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d75f10d169df2fd9fe032264fbbb47b962cba5170c31850e7ba65f91975c36 +size 349967 diff --git a/datasets/搭电设备/train/images/订单1804990_54_7092950.jpg b/datasets/搭电设备/train/images/订单1804990_54_7092950.jpg new file mode 100644 index 0000000..1aa637b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804990_54_7092950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f2e2d7e8d0ad8f3ad5999f143d3b006b00926cabef65737f3c138a31577f00 +size 75303 diff --git a/datasets/搭电设备/train/images/订单1804992_54_7093005.jpg b/datasets/搭电设备/train/images/订单1804992_54_7093005.jpg new file mode 100644 index 0000000..695ca5f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804992_54_7093005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a842e646e78130e301b27ccda9cd1089b7bfab6ef58b0efeba882513703a30c4 +size 155531 diff --git a/datasets/搭电设备/train/images/订单1804995_54_7092933.jpg b/datasets/搭电设备/train/images/订单1804995_54_7092933.jpg new file mode 100644 index 0000000..6a40a67 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804995_54_7092933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6182402322259c43cbfcaff3158215132c89213b086fd3c765c5df4ecc3bd887 +size 150307 diff --git a/datasets/搭电设备/train/images/订单1804998_54_7093006.jpg b/datasets/搭电设备/train/images/订单1804998_54_7093006.jpg new file mode 100644 index 0000000..1191565 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1804998_54_7093006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e3a1959eafcf77df3e20c82547aec5f482d8348998acc378e31acd5b05e6ed +size 125487 diff --git a/datasets/搭电设备/train/images/订单1805001_54_7093036.jpg b/datasets/搭电设备/train/images/订单1805001_54_7093036.jpg new file mode 100644 index 0000000..6dccdbb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805001_54_7093036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615da1f568cfca42100164c25829801d905d2fa150db113da604844947db4784 +size 578965 diff --git a/datasets/搭电设备/train/images/订单1805002_54_7093152.jpg b/datasets/搭电设备/train/images/订单1805002_54_7093152.jpg new file mode 100644 index 0000000..0c876b6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805002_54_7093152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c2a190198c361ea692179ea1661f656368a8d19d5210fffd55e0565e441729 +size 272061 diff --git a/datasets/搭电设备/train/images/订单1805005_54_7093128.jpg b/datasets/搭电设备/train/images/订单1805005_54_7093128.jpg new file mode 100644 index 0000000..7657d4a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805005_54_7093128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e671ceb3a99ac90d0d90917f3536bbda09a6ee8b50c0e52b6ec3e4e69fbebf +size 416885 diff --git a/datasets/搭电设备/train/images/订单1805007_54_7093075.jpg b/datasets/搭电设备/train/images/订单1805007_54_7093075.jpg new file mode 100644 index 0000000..de8a77d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805007_54_7093075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970fa049d03f8b004c83a3445b604ae13ae675b33ec07f3726d857c1c1160c69 +size 216579 diff --git a/datasets/搭电设备/train/images/订单1805008_54_7093241.jpg b/datasets/搭电设备/train/images/订单1805008_54_7093241.jpg new file mode 100644 index 0000000..f585a13 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805008_54_7093241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdf199953e5f788cc25e8bb697bbb4a1e31d57418686b68470d5ca4c88f53a8 +size 81104 diff --git a/datasets/搭电设备/train/images/订单1805009_54_7093132.jpg b/datasets/搭电设备/train/images/订单1805009_54_7093132.jpg new file mode 100644 index 0000000..73a4aa5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805009_54_7093132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d67aaa21de377b7efcf43d89322a75582beebcd380343e5925b1ff8b2c115f7 +size 106922 diff --git a/datasets/搭电设备/train/images/订单1805010_54_7093103.jpg b/datasets/搭电设备/train/images/订单1805010_54_7093103.jpg new file mode 100644 index 0000000..cd7d142 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805010_54_7093103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8124e5db7845acfb346f987dcb5c58519a1e1d22d0136bf099b874850d15ba6 +size 145813 diff --git a/datasets/搭电设备/train/images/订单1805011_54_7093198.jpg b/datasets/搭电设备/train/images/订单1805011_54_7093198.jpg new file mode 100644 index 0000000..e9cfde3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805011_54_7093198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7429c36e03270d27530b38f9b23d690bb4889ce6f3a403d7069ad923f6fbe27c +size 101878 diff --git a/datasets/搭电设备/train/images/订单1805012_54_7093185.jpg b/datasets/搭电设备/train/images/订单1805012_54_7093185.jpg new file mode 100644 index 0000000..7be82ec --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805012_54_7093185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edbaf19a9a466a5aec70b2e9a92a59147da70706b1c07aa004e9bf320faf6358 +size 95604 diff --git a/datasets/搭电设备/train/images/订单1805013_54_7093184.jpg b/datasets/搭电设备/train/images/订单1805013_54_7093184.jpg new file mode 100644 index 0000000..b58f8ec --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805013_54_7093184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92981043566082d607d5d0eecc9fb00e3c85b30b0341249d14dc07c76cc5ac0 +size 91781 diff --git a/datasets/搭电设备/train/images/订单1805014_54_7093188.jpg b/datasets/搭电设备/train/images/订单1805014_54_7093188.jpg new file mode 100644 index 0000000..7c3673e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805014_54_7093188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c32021121858f375b9af890d8283890e5066f14b460b820ef592881e67f47d +size 293877 diff --git a/datasets/搭电设备/train/images/订单1805016_54_7093179.jpg b/datasets/搭电设备/train/images/订单1805016_54_7093179.jpg new file mode 100644 index 0000000..c0f4302 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805016_54_7093179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c5977433990f7f3f296afbf0b491c1e0ebcf228523db230bf53f5e5e41c529 +size 311805 diff --git a/datasets/搭电设备/train/images/订单1805022_54_7093355.jpg b/datasets/搭电设备/train/images/订单1805022_54_7093355.jpg new file mode 100644 index 0000000..55a496c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805022_54_7093355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db08839725f4ed062279475aa2d6b8102ab94efda75fd6f4f9d9744fe5c227f0 +size 953883 diff --git a/datasets/搭电设备/train/images/订单1805023_54_7093298.jpg b/datasets/搭电设备/train/images/订单1805023_54_7093298.jpg new file mode 100644 index 0000000..f833361 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805023_54_7093298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4d3f06804415358f5e4ad232b21551d4e76ad3243931bf72750bea36215990 +size 118076 diff --git a/datasets/搭电设备/train/images/订单1805024_54_7093304.jpg b/datasets/搭电设备/train/images/订单1805024_54_7093304.jpg new file mode 100644 index 0000000..5f7731e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805024_54_7093304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36bd4466e865d938ff81941f263b5d557dacacefeb770d25843f89b99d0812a +size 129329 diff --git a/datasets/搭电设备/train/images/订单1805027_54_7093319.jpg b/datasets/搭电设备/train/images/订单1805027_54_7093319.jpg new file mode 100644 index 0000000..94332fa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805027_54_7093319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c4a601696b6fb287829b4c992746c40fdf7b0467dfdac9c0c81f901024da18 +size 75975 diff --git a/datasets/搭电设备/train/images/订单1805028_54_7093345.jpg b/datasets/搭电设备/train/images/订单1805028_54_7093345.jpg new file mode 100644 index 0000000..e1f411d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805028_54_7093345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b86f31facb0afd943c742eafe30f59bd9afbe044b25d674c88686ff1545acd7 +size 102387 diff --git a/datasets/搭电设备/train/images/订单1805029_54_7093372.jpg b/datasets/搭电设备/train/images/订单1805029_54_7093372.jpg new file mode 100644 index 0000000..0760c60 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805029_54_7093372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc751809c3d1471327e04901c87b09361752e5cb85e02a86efb530314c83afc5 +size 141538 diff --git a/datasets/搭电设备/train/images/订单1805030_54_7093407.jpg b/datasets/搭电设备/train/images/订单1805030_54_7093407.jpg new file mode 100644 index 0000000..a8ea565 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805030_54_7093407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98c31f1c7d92b9224a3a1f2427b8673881cbfbf4c32a5a1326f17c8dfabe6a0 +size 167077 diff --git a/datasets/搭电设备/train/images/订单1805031_54_7093375.jpg b/datasets/搭电设备/train/images/订单1805031_54_7093375.jpg new file mode 100644 index 0000000..d979752 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805031_54_7093375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783099bbf0474cc66d7b6d5c6f73af60a452199ccb209b2b7a9943adc6589b26 +size 474992 diff --git a/datasets/搭电设备/train/images/订单1805032_54_7093385.jpg b/datasets/搭电设备/train/images/订单1805032_54_7093385.jpg new file mode 100644 index 0000000..db1ebb0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805032_54_7093385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7319ec33661bf8da6a70c451df9e4111638777f53edf1208dd81b2f8eda8c333 +size 112949 diff --git a/datasets/搭电设备/train/images/订单1805033_54_7093397.jpg b/datasets/搭电设备/train/images/订单1805033_54_7093397.jpg new file mode 100644 index 0000000..36f4905 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805033_54_7093397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8de38dce13841c2a28c050e249ad596eb57ca7c83098e2ecec221a1c2498910 +size 111195 diff --git a/datasets/搭电设备/train/images/订单1805034_54_7093418.jpg b/datasets/搭电设备/train/images/订单1805034_54_7093418.jpg new file mode 100644 index 0000000..198771f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805034_54_7093418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f158124235fc08a89f988cfd0242764a8027bb3e24142fba4e0b848e4fa1f88 +size 112435 diff --git a/datasets/搭电设备/train/images/订单1805036_54_7093445.jpg b/datasets/搭电设备/train/images/订单1805036_54_7093445.jpg new file mode 100644 index 0000000..cc3c4e4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805036_54_7093445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54af951f537a29b0457b21065a2e946eecd0ab3b64e81ae4b1e749b184d5b43a +size 216319 diff --git a/datasets/搭电设备/train/images/订单1805037_54_7093432.jpg b/datasets/搭电设备/train/images/订单1805037_54_7093432.jpg new file mode 100644 index 0000000..f87dbd3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805037_54_7093432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f808da06560a45087af49d53af5eb87d548191e8f846b60a5234642a79cad7 +size 460919 diff --git a/datasets/搭电设备/train/images/订单1805038_54_7093483.jpg b/datasets/搭电设备/train/images/订单1805038_54_7093483.jpg new file mode 100644 index 0000000..e237fa5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805038_54_7093483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6f8a7c60847839fc2608ebdc589a755ac159434486c47cdfce4f31e3af2c0a +size 135183 diff --git a/datasets/搭电设备/train/images/订单1805041_54_7093498.jpg b/datasets/搭电设备/train/images/订单1805041_54_7093498.jpg new file mode 100644 index 0000000..b11b560 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805041_54_7093498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76420ffd92637f889c92f17a3fc5846e62e2b7d4a4c627c2fcfbe35e08eca338 +size 102953 diff --git a/datasets/搭电设备/train/images/订单1805042_54_7093479.jpg b/datasets/搭电设备/train/images/订单1805042_54_7093479.jpg new file mode 100644 index 0000000..9927ca6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805042_54_7093479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a8775ac54184c9f11780345c701412c3ba6098b714131f662cec122291f215a +size 137433 diff --git a/datasets/搭电设备/train/images/订单1805043_54_7093501.jpg b/datasets/搭电设备/train/images/订单1805043_54_7093501.jpg new file mode 100644 index 0000000..1bf254b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805043_54_7093501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8623b03453ed68bfb4d9897de5387dba32c5f610bdf21491186b15c2fc70437 +size 109811 diff --git a/datasets/搭电设备/train/images/订单1805044_54_7093472.jpg b/datasets/搭电设备/train/images/订单1805044_54_7093472.jpg new file mode 100644 index 0000000..56e5f64 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805044_54_7093472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb031c95e480797fc77a9001e470b4d898aaa00e95b4d2cba833b7a102a10883 +size 153550 diff --git a/datasets/搭电设备/train/images/订单1805049_54_7093576.jpg b/datasets/搭电设备/train/images/订单1805049_54_7093576.jpg new file mode 100644 index 0000000..d88a800 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805049_54_7093576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c9e3600dcecb8ec93443b0f5a4456958607e4c7b1c2514903a05a78df73a9e +size 108174 diff --git a/datasets/搭电设备/train/images/订单1805050_54_7093642.jpg b/datasets/搭电设备/train/images/订单1805050_54_7093642.jpg new file mode 100644 index 0000000..b165c6f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805050_54_7093642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc1afa082b9dc4f2d373e6db7e137686565e6df94d391f96a0e77f2471f1926 +size 125820 diff --git a/datasets/搭电设备/train/images/订单1805051_54_7093555.jpg b/datasets/搭电设备/train/images/订单1805051_54_7093555.jpg new file mode 100644 index 0000000..d20cf4c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805051_54_7093555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d948f5362bbfe3de5101db61fee2140fe93b01f9940e1f272b67ccf892638cc2 +size 316410 diff --git a/datasets/搭电设备/train/images/订单1805053_54_7093606.jpg b/datasets/搭电设备/train/images/订单1805053_54_7093606.jpg new file mode 100644 index 0000000..50a4a0e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805053_54_7093606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7de6bbd3d3b1161abf719daf330d971c748e79c2764c2180da3f4d17c9a076ad +size 789025 diff --git a/datasets/搭电设备/train/images/订单1805056_54_7093581.jpg b/datasets/搭电设备/train/images/订单1805056_54_7093581.jpg new file mode 100644 index 0000000..9a8d4cf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805056_54_7093581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30000c7a1c58423328652a862b6b1369835cc3ea1d36f3263ae6d64bd72f6d6 +size 448130 diff --git a/datasets/搭电设备/train/images/订单1805057_54_7093616.jpg b/datasets/搭电设备/train/images/订单1805057_54_7093616.jpg new file mode 100644 index 0000000..1494ad2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805057_54_7093616.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb5ce1ef05abde423d85d5693f59424a866340b5b31eabe39f110f11ab9205d +size 376626 diff --git a/datasets/搭电设备/train/images/订单1805058_54_7093666.jpg b/datasets/搭电设备/train/images/订单1805058_54_7093666.jpg new file mode 100644 index 0000000..806e3f7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805058_54_7093666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf8ad044509dbe9825d1a579bee6940f9f9d1b7bad7c210f4dbac7e975bd95e +size 421231 diff --git a/datasets/搭电设备/train/images/订单1805059_54_7093609.jpg b/datasets/搭电设备/train/images/订单1805059_54_7093609.jpg new file mode 100644 index 0000000..4c6dc3e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805059_54_7093609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b945ccab4c7ee915e6f1e041078583ec1367c080ffda17ceebdfb1212176e4 +size 111877 diff --git a/datasets/搭电设备/train/images/订单1805062_54_7093702.jpg b/datasets/搭电设备/train/images/订单1805062_54_7093702.jpg new file mode 100644 index 0000000..7446cf3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805062_54_7093702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f39acdd536f6cb104786d37348362195eb89544447fdaf6e8fac0bd9b35af3 +size 459760 diff --git a/datasets/搭电设备/train/images/订单1805065_54_7093693.jpg b/datasets/搭电设备/train/images/订单1805065_54_7093693.jpg new file mode 100644 index 0000000..f247b8a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805065_54_7093693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cd1322b62efea7f32f0ee5585868a958f63f20a203f61511ebdeabf5786f01 +size 103886 diff --git a/datasets/搭电设备/train/images/订单1805067_54_7093727.jpg b/datasets/搭电设备/train/images/订单1805067_54_7093727.jpg new file mode 100644 index 0000000..dcdd077 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805067_54_7093727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06ad272c8e17a559e12f442db6b27022d97979361c92d0fc6638b65f24a4d58 +size 128018 diff --git a/datasets/搭电设备/train/images/订单1805069_54_7093737.jpg b/datasets/搭电设备/train/images/订单1805069_54_7093737.jpg new file mode 100644 index 0000000..b3a35a3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805069_54_7093737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f6fe6e8c6ace6bb6fa73ff52c99af6fac303d697b0a182a823765beb5cc026 +size 110840 diff --git a/datasets/搭电设备/train/images/订单1805072_54_7093757.jpg b/datasets/搭电设备/train/images/订单1805072_54_7093757.jpg new file mode 100644 index 0000000..ddd46a3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805072_54_7093757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c0a1e6b49d29efdebf734d67ab275d2ea8db2ccb4cde9c0a60c8caafe3babb +size 127155 diff --git a/datasets/搭电设备/train/images/订单1805074_54_7093778.jpg b/datasets/搭电设备/train/images/订单1805074_54_7093778.jpg new file mode 100644 index 0000000..3dc2161 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805074_54_7093778.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe67606c5c995fc0ba96e22957be32f7e820406aef60dba0201fd0fd2dc6a9f +size 124463 diff --git a/datasets/搭电设备/train/images/订单1805075_54_7093788.jpg b/datasets/搭电设备/train/images/订单1805075_54_7093788.jpg new file mode 100644 index 0000000..6f652b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805075_54_7093788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6026cc15e01f7ce310619f8567f557366d32bbc42f39390bbe241c83d725bb +size 142426 diff --git a/datasets/搭电设备/train/images/订单1805077_54_7093799.jpg b/datasets/搭电设备/train/images/订单1805077_54_7093799.jpg new file mode 100644 index 0000000..381b3de --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805077_54_7093799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200d64ff2a4a4e047f9ecf52fe109fedd2bfc3003e369b666f9b203c52261af0 +size 109806 diff --git a/datasets/搭电设备/train/images/订单1805079_54_7093828.jpg b/datasets/搭电设备/train/images/订单1805079_54_7093828.jpg new file mode 100644 index 0000000..fd3f789 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805079_54_7093828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4529e23db8186273b6377a3f2ccf93bba4494e76aa90c8733a9355d27aeee88 +size 154569 diff --git a/datasets/搭电设备/train/images/订单1805081_54_7093846.jpg b/datasets/搭电设备/train/images/订单1805081_54_7093846.jpg new file mode 100644 index 0000000..7662514 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805081_54_7093846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:170f3f022a2eeacf53b0b8f3459a1e31c5a631dd6523aa43301d7870e64c7a13 +size 131237 diff --git a/datasets/搭电设备/train/images/订单1805082_54_7093858.jpg b/datasets/搭电设备/train/images/订单1805082_54_7093858.jpg new file mode 100644 index 0000000..256d826 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805082_54_7093858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f523b87a6f64ba36ed9465f86f4efc0f1c27d992bea6e7731b975739c0b8ef +size 339228 diff --git a/datasets/搭电设备/train/images/订单1805083_54_7093871.jpg b/datasets/搭电设备/train/images/订单1805083_54_7093871.jpg new file mode 100644 index 0000000..547a8f2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805083_54_7093871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038a99e1c04364ff8406b20da99327faf560fb0bdf92245dc8bf89609ee30277 +size 89521 diff --git a/datasets/搭电设备/train/images/订单1805085_54_7093882.jpg b/datasets/搭电设备/train/images/订单1805085_54_7093882.jpg new file mode 100644 index 0000000..b73a5a9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805085_54_7093882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c826ca24a2e314856ee241ee34c9c4a88e585fe2ea517933825fbf43a291d6a +size 232235 diff --git a/datasets/搭电设备/train/images/订单1805086_54_7093892.jpg b/datasets/搭电设备/train/images/订单1805086_54_7093892.jpg new file mode 100644 index 0000000..7edbc41 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805086_54_7093892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e87436f8e9559768c1d2332506b468f75e1e028b75dea287bde1055138fd8f +size 234550 diff --git a/datasets/搭电设备/train/images/订单1805089_54_7093912.jpg b/datasets/搭电设备/train/images/订单1805089_54_7093912.jpg new file mode 100644 index 0000000..c51271e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805089_54_7093912.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07526a7f3c8a33d906bab781165bfd9e0346cba51ff9a4632dd3fb7b648ce655 +size 295946 diff --git a/datasets/搭电设备/train/images/订单1805091_54_7093956.jpg b/datasets/搭电设备/train/images/订单1805091_54_7093956.jpg new file mode 100644 index 0000000..3f97ab6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805091_54_7093956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14b43cef83fba1078d89cc9503fcfe4624816c4fa28020ee2192b9bb585b787 +size 643200 diff --git a/datasets/搭电设备/train/images/订单1805092_54_7093909.jpg b/datasets/搭电设备/train/images/订单1805092_54_7093909.jpg new file mode 100644 index 0000000..7acb178 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805092_54_7093909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5c5bb0d4ab9d4d8a113b3bbd2be03568585d1e8b614c59814044d55dc9a263 +size 107946 diff --git a/datasets/搭电设备/train/images/订单1805095_54_7093944.jpg b/datasets/搭电设备/train/images/订单1805095_54_7093944.jpg new file mode 100644 index 0000000..9d44b7c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805095_54_7093944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa56dba6ce72e8c8eb9c536558c20f56a90437980bc72f39c0f624a1d8ad447e +size 138848 diff --git a/datasets/搭电设备/train/images/订单1805096_54_7094007.jpg b/datasets/搭电设备/train/images/订单1805096_54_7094007.jpg new file mode 100644 index 0000000..da222e9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805096_54_7094007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9033614927347da4f502af228b61606f8fcfb0751788f7849ed7595572112e20 +size 140159 diff --git a/datasets/搭电设备/train/images/订单1805100_54_7094102.jpg b/datasets/搭电设备/train/images/订单1805100_54_7094102.jpg new file mode 100644 index 0000000..3dff99e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805100_54_7094102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b860781eb868f3bb0f096fb75842978744c7c281bf00e5bd3a6795f01613e56 +size 154724 diff --git a/datasets/搭电设备/train/images/订单1805101_54_7094061.jpg b/datasets/搭电设备/train/images/订单1805101_54_7094061.jpg new file mode 100644 index 0000000..1ca8d62 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805101_54_7094061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f9683658aafffaf8e803b189f244c8c4b99f91794250c048f88312a5f3b7d7 +size 124303 diff --git a/datasets/搭电设备/train/images/订单1805102_54_7094014.jpg b/datasets/搭电设备/train/images/订单1805102_54_7094014.jpg new file mode 100644 index 0000000..5d555af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805102_54_7094014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e24ea1253a5560a3b6dcb8f3a117e705562b02bdb1dc8c685062fa7e993754f +size 162970 diff --git a/datasets/搭电设备/train/images/订单1805103_54_7093989.jpg b/datasets/搭电设备/train/images/订单1805103_54_7093989.jpg new file mode 100644 index 0000000..5483cb1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805103_54_7093989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ad7535b1bfec498c7a3c36446367e3c87012635daa054402a1a1b79642a277 +size 114680 diff --git a/datasets/搭电设备/train/images/订单1805105_54_7093970.jpg b/datasets/搭电设备/train/images/订单1805105_54_7093970.jpg new file mode 100644 index 0000000..87b479a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805105_54_7093970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c97c5530478893a301f5044af2784c717902df2b25dabc32c03f732c3ffe20d +size 100151 diff --git a/datasets/搭电设备/train/images/订单1805106_54_7094172.jpg b/datasets/搭电设备/train/images/订单1805106_54_7094172.jpg new file mode 100644 index 0000000..04cca9a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805106_54_7094172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a504095b2eb9a4f34adeb89c6e57f1068aa92b28a9eb4894594241d50db86481 +size 151895 diff --git a/datasets/搭电设备/train/images/订单1805108_54_7094038.jpg b/datasets/搭电设备/train/images/订单1805108_54_7094038.jpg new file mode 100644 index 0000000..346d2b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805108_54_7094038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782f77ba6c0ca47f787981e7c74db4fc480838c8313b04c2a25e12a8e5822703 +size 84162 diff --git a/datasets/搭电设备/train/images/订单1805109_54_7094039.jpg b/datasets/搭电设备/train/images/订单1805109_54_7094039.jpg new file mode 100644 index 0000000..db4721d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805109_54_7094039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423ebb3a53a8ad2b0430cc236a854afda0c9139da12dd7810e101bd28a3dc63b +size 162541 diff --git a/datasets/搭电设备/train/images/订单1805113_54_7094841.jpg b/datasets/搭电设备/train/images/订单1805113_54_7094841.jpg new file mode 100644 index 0000000..e7304e5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805113_54_7094841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78cd2eefa0f92b018a7dec722778f227f70b05aaf79b2edd4cd49c7005921ee8 +size 155198 diff --git a/datasets/搭电设备/train/images/订单1805115_54_7094129.jpg b/datasets/搭电设备/train/images/订单1805115_54_7094129.jpg new file mode 100644 index 0000000..30b36af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805115_54_7094129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3045ba90980981cff85d72e0cdbcc27354510030116a60085b9a46b86c7933 +size 92328 diff --git a/datasets/搭电设备/train/images/订单1805116_54_7094136.jpg b/datasets/搭电设备/train/images/订单1805116_54_7094136.jpg new file mode 100644 index 0000000..bd23616 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805116_54_7094136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db234c963f31ac43501437976f95389a4523d426a9c09ec4312721567668265 +size 128117 diff --git a/datasets/搭电设备/train/images/订单1805119_54_7094224.jpg b/datasets/搭电设备/train/images/订单1805119_54_7094224.jpg new file mode 100644 index 0000000..5aac5ed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805119_54_7094224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2db4cb2f34064ce457f6c82d5617d63cf0bca68d7037e35e11e5ebf81f1f13 +size 1265323 diff --git a/datasets/搭电设备/train/images/订单1805120_54_7094218.jpg b/datasets/搭电设备/train/images/订单1805120_54_7094218.jpg new file mode 100644 index 0000000..af4fbb8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805120_54_7094218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce5b02e0196bf5b9bdc29c3365a6d5d819a605bd3116565f7dc2cfb78d37050 +size 163459 diff --git a/datasets/搭电设备/train/images/订单1805123_54_7094137.jpg b/datasets/搭电设备/train/images/订单1805123_54_7094137.jpg new file mode 100644 index 0000000..35ba549 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805123_54_7094137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca24eb3a241f25e8df90662d7fc6c65f1aa54e53f3ad9ab7227bc7172e052ba4 +size 662282 diff --git a/datasets/搭电设备/train/images/订单1805124_54_7094157.jpg b/datasets/搭电设备/train/images/订单1805124_54_7094157.jpg new file mode 100644 index 0000000..14a066f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805124_54_7094157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51695ad6ebd8c0992a9234318d274046dc98a1a0b0cb5011db510e4eb7598004 +size 460741 diff --git a/datasets/搭电设备/train/images/订单1805125_54_7094186.jpg b/datasets/搭电设备/train/images/订单1805125_54_7094186.jpg new file mode 100644 index 0000000..3b11c7f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805125_54_7094186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4702aca73b81eacdec4e4d15947633d7933ddca12b2769507a26d5bc8fa3bd +size 179399 diff --git a/datasets/搭电设备/train/images/订单1805128_54_7094235.jpg b/datasets/搭电设备/train/images/订单1805128_54_7094235.jpg new file mode 100644 index 0000000..fa32f65 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805128_54_7094235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd881e0003e542eea19a3f36c22886aae7a9b3f71eec4678563b2fb81bac1f48 +size 334120 diff --git a/datasets/搭电设备/train/images/订单1805129_54_7094240.jpg b/datasets/搭电设备/train/images/订单1805129_54_7094240.jpg new file mode 100644 index 0000000..aaf467b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805129_54_7094240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7cfe2e2fa20adad44b0ecc3e2b49d466d56b51a6abc73898134dbbec496564 +size 130429 diff --git a/datasets/搭电设备/train/images/订单1805131_54_7094255.jpg b/datasets/搭电设备/train/images/订单1805131_54_7094255.jpg new file mode 100644 index 0000000..4380778 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805131_54_7094255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa959ad2a52fce3fa0401abe742df89bda1fd93abad9805d1ca759d0a424ff8f +size 142819 diff --git a/datasets/搭电设备/train/images/订单1805134_54_7094288.jpg b/datasets/搭电设备/train/images/订单1805134_54_7094288.jpg new file mode 100644 index 0000000..096708e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805134_54_7094288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b9be3b55605ee4e87e664ab1dc2bb3a8d5ae5e271b1d175f4aaed53b35846f +size 112659 diff --git a/datasets/搭电设备/train/images/订单1805135_54_7094303.jpg b/datasets/搭电设备/train/images/订单1805135_54_7094303.jpg new file mode 100644 index 0000000..a44ca9c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805135_54_7094303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57e0242130c977607c1a4cd47441491d03ad009276b49dbc52ade4bcd2f175c +size 331748 diff --git a/datasets/搭电设备/train/images/订单1805137_54_7094246.jpg b/datasets/搭电设备/train/images/订单1805137_54_7094246.jpg new file mode 100644 index 0000000..ddd16bf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805137_54_7094246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d870acfbba4e04405495ba6d15d53a6485cb011bc62a2606a32d85ed04ec0b35 +size 235075 diff --git a/datasets/搭电设备/train/images/订单1805141_54_7094352.jpg b/datasets/搭电设备/train/images/订单1805141_54_7094352.jpg new file mode 100644 index 0000000..d99fca8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805141_54_7094352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5241a8361e7a14c6e813595d2c7caa0c4c8d2530387c96baaf22e00a55d278 +size 350942 diff --git a/datasets/搭电设备/train/images/订单1805142_54_7094268.jpg b/datasets/搭电设备/train/images/订单1805142_54_7094268.jpg new file mode 100644 index 0000000..467a4c4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805142_54_7094268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc5c1aba9990e3d7193e3fbc86d3299949769e22a95f3082bc0064c87957297 +size 579506 diff --git a/datasets/搭电设备/train/images/订单1805143_54_7094317.jpg b/datasets/搭电设备/train/images/订单1805143_54_7094317.jpg new file mode 100644 index 0000000..88d1574 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805143_54_7094317.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812240311754ee634c98df06e301a304a26f77f3cf9ce231eec39772eb900f98 +size 366933 diff --git a/datasets/搭电设备/train/images/订单1805146_54_7094326.jpg b/datasets/搭电设备/train/images/订单1805146_54_7094326.jpg new file mode 100644 index 0000000..592bd71 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805146_54_7094326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d261c65fa51999ebb6d41e4ff56964aaacc960994fe8de77621b32321d3cff22 +size 637797 diff --git a/datasets/搭电设备/train/images/订单1805147_54_7094369.jpg b/datasets/搭电设备/train/images/订单1805147_54_7094369.jpg new file mode 100644 index 0000000..c7e57d0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805147_54_7094369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea29ea4d7d65da291d4271278da041dd6e31b9132e365fd4c6a1bd7ead05fe0 +size 176116 diff --git a/datasets/搭电设备/train/images/订单1805149_54_7094353.jpg b/datasets/搭电设备/train/images/订单1805149_54_7094353.jpg new file mode 100644 index 0000000..a560f99 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805149_54_7094353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ad4e3d2e131c32dbf859b278340c65f25e1b67c60293a3a3c1a71cef927a56 +size 249553 diff --git a/datasets/搭电设备/train/images/订单1805151_54_7094418.jpg b/datasets/搭电设备/train/images/订单1805151_54_7094418.jpg new file mode 100644 index 0000000..196d110 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805151_54_7094418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ccb40e26af88fcc19f905538b0dbc3d2dee774c98e6f755582406dbeea640d +size 610521 diff --git a/datasets/搭电设备/train/images/订单1805155_54_7094477.jpg b/datasets/搭电设备/train/images/订单1805155_54_7094477.jpg new file mode 100644 index 0000000..62ba30b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805155_54_7094477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783f507a8bb52260921b6c711a08797bf7422a2a5e94a5c51a85b90dd62bb32c +size 391375 diff --git a/datasets/搭电设备/train/images/订单1805158_54_7094464.jpg b/datasets/搭电设备/train/images/订单1805158_54_7094464.jpg new file mode 100644 index 0000000..02ae5c5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805158_54_7094464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6425cdfa7f8173828639253bb83cd22ea757b4e0f6e0718c8ce4e7f97bdc9e2 +size 153326 diff --git a/datasets/搭电设备/train/images/订单1805160_54_7094547.jpg b/datasets/搭电设备/train/images/订单1805160_54_7094547.jpg new file mode 100644 index 0000000..2eeb979 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805160_54_7094547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24771936a7962e9899ffebd248c002452e097bb5f2c39c1c3fcb093715c24c5d +size 675699 diff --git a/datasets/搭电设备/train/images/订单1805161_54_7094457.jpg b/datasets/搭电设备/train/images/订单1805161_54_7094457.jpg new file mode 100644 index 0000000..c76a240 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805161_54_7094457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9a6df9f8e1789b34637620fff922ff79ed9e540490727138cdeee3ff05f96d +size 146060 diff --git a/datasets/搭电设备/train/images/订单1805164_54_7094566.jpg b/datasets/搭电设备/train/images/订单1805164_54_7094566.jpg new file mode 100644 index 0000000..63601dd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805164_54_7094566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c9b92e52dc302d29cef23b4c50ec96fe2e4a284ff3c91920f1c1fb337216e20 +size 142188 diff --git a/datasets/搭电设备/train/images/订单1805167_54_7094529.jpg b/datasets/搭电设备/train/images/订单1805167_54_7094529.jpg new file mode 100644 index 0000000..2d6d48d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805167_54_7094529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ad2791288660dcc1e9c923bf3882cdd313207b93b9c4481d1c7eb1f3c9fe96 +size 480750 diff --git a/datasets/搭电设备/train/images/订单1805168_54_7094634.jpg b/datasets/搭电设备/train/images/订单1805168_54_7094634.jpg new file mode 100644 index 0000000..3abe89c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805168_54_7094634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0059ca5699c0472bf66724fa9088606ecca6f754fac13ca82ef97af4280181e7 +size 132097 diff --git a/datasets/搭电设备/train/images/订单1805170_54_7094496.jpg b/datasets/搭电设备/train/images/订单1805170_54_7094496.jpg new file mode 100644 index 0000000..10ce519 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805170_54_7094496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534c8293329072260770bb98ba7724b3daf128cb3d9d9e31633ce42f0f7a3340 +size 590960 diff --git a/datasets/搭电设备/train/images/订单1805172_54_7094725.jpg b/datasets/搭电设备/train/images/订单1805172_54_7094725.jpg new file mode 100644 index 0000000..07f34b3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805172_54_7094725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60788e73efe76c151a99e3203aaedc90fb1ffcbb675ada5fe5de0df3a519bd22 +size 677390 diff --git a/datasets/搭电设备/train/images/订单1805175_54_7094557.jpg b/datasets/搭电设备/train/images/订单1805175_54_7094557.jpg new file mode 100644 index 0000000..997816d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805175_54_7094557.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6749728e544686042d2b752846ca0f4be07eff9ab0a133b14a2598d437bb64e +size 134401 diff --git a/datasets/搭电设备/train/images/订单1805177_54_7095472.jpg b/datasets/搭电设备/train/images/订单1805177_54_7095472.jpg new file mode 100644 index 0000000..6239036 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805177_54_7095472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be21847982faff1e6ca6e5d2edbdf17df76851666d06a3631efb076cece7e19d +size 155937 diff --git a/datasets/搭电设备/train/images/订单1805178_54_7094591.jpg b/datasets/搭电设备/train/images/订单1805178_54_7094591.jpg new file mode 100644 index 0000000..e784657 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805178_54_7094591.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e50b2db2d5f06596a9cc3271eede90ed33b9793841ad36d97a0e44da3649ce1 +size 132526 diff --git a/datasets/搭电设备/train/images/订单1805181_54_7094608.jpg b/datasets/搭电设备/train/images/订单1805181_54_7094608.jpg new file mode 100644 index 0000000..f79cbd6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805181_54_7094608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b6fcb2db795e109a0cd29b7164ff84957910533632da5db95a393957e566d9 +size 461841 diff --git a/datasets/搭电设备/train/images/订单1805182_54_7094649.jpg b/datasets/搭电设备/train/images/订单1805182_54_7094649.jpg new file mode 100644 index 0000000..cb77576 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805182_54_7094649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45607587c5a0e287813bf4d8fa62a1e091b737d083e2cc2d0d291aa62721b898 +size 366353 diff --git a/datasets/搭电设备/train/images/订单1805187_54_7094692.jpg b/datasets/搭电设备/train/images/订单1805187_54_7094692.jpg new file mode 100644 index 0000000..29cd499 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805187_54_7094692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ccd4de3f15dea00a3ab86a2b055ca2bd62bc5a3fd7ac0fc20d08ddcb68c257 +size 60292 diff --git a/datasets/搭电设备/train/images/订单1805191_54_7094740.jpg b/datasets/搭电设备/train/images/订单1805191_54_7094740.jpg new file mode 100644 index 0000000..a1191a0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805191_54_7094740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa52d6c69cb4b20bb3a275df8bcf2c9543f5eaf9b2ebde0d74c1f2cc513b8257 +size 153135 diff --git a/datasets/搭电设备/train/images/订单1805193_54_7094794.jpg b/datasets/搭电设备/train/images/订单1805193_54_7094794.jpg new file mode 100644 index 0000000..8acc0c5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805193_54_7094794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2f10ebc58414dc4f5e4649dae26fbd5a405d78fd389b91f29e251c3954a472 +size 153356 diff --git a/datasets/搭电设备/train/images/订单1805195_54_7094785.jpg b/datasets/搭电设备/train/images/订单1805195_54_7094785.jpg new file mode 100644 index 0000000..6f70bfd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805195_54_7094785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a07307737f4902eead41812df1328d5e2689cab2eef13d1ac2f604e361f0f4 +size 155426 diff --git a/datasets/搭电设备/train/images/订单1805196_54_7094787.jpg b/datasets/搭电设备/train/images/订单1805196_54_7094787.jpg new file mode 100644 index 0000000..9b2e70a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805196_54_7094787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d67a04af37c454717f0c2275ae4f512b38f2a72c14d93acb4fcb9acd35ba60 +size 89234 diff --git a/datasets/搭电设备/train/images/订单1805201_54_7094860.jpg b/datasets/搭电设备/train/images/订单1805201_54_7094860.jpg new file mode 100644 index 0000000..eae4506 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805201_54_7094860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33697e269746cc805745647414eeb2a57bc9caafc26a69705cbc3383ae119ddb +size 126157 diff --git a/datasets/搭电设备/train/images/订单1805202_54_7094827.jpg b/datasets/搭电设备/train/images/订单1805202_54_7094827.jpg new file mode 100644 index 0000000..156b35c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805202_54_7094827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df62f97d904b67a20295c19f58be1f88482c905ad9c484d826b3ae7d437e8fb +size 134144 diff --git a/datasets/搭电设备/train/images/订单1805204_54_7094893.jpg b/datasets/搭电设备/train/images/订单1805204_54_7094893.jpg new file mode 100644 index 0000000..7f486b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805204_54_7094893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60de69d85e8b8c087a18024d68d9675cf2b22fddbf7a144e8342c5244a9493f3 +size 170218 diff --git a/datasets/搭电设备/train/images/订单1805205_54_7094968.jpg b/datasets/搭电设备/train/images/订单1805205_54_7094968.jpg new file mode 100644 index 0000000..23c9d89 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805205_54_7094968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec3233329c4e430f2c7f89cfb4ef90ee9b762744c2753f5040a60a9e88f13e8 +size 424754 diff --git a/datasets/搭电设备/train/images/订单1805207_54_7094915.jpg b/datasets/搭电设备/train/images/订单1805207_54_7094915.jpg new file mode 100644 index 0000000..61f8fe8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805207_54_7094915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2484120febe7fc171a00691318f51a456d368ccd814c6b4def70597df5e6659a +size 154818 diff --git a/datasets/搭电设备/train/images/订单1805208_54_7094972.jpg b/datasets/搭电设备/train/images/订单1805208_54_7094972.jpg new file mode 100644 index 0000000..00bed6d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805208_54_7094972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90631e61a933476be30e4749fe538e1a77a18afa318e0bb644912f372b01b19a +size 160419 diff --git a/datasets/搭电设备/train/images/订单1805209_54_7094970.jpg b/datasets/搭电设备/train/images/订单1805209_54_7094970.jpg new file mode 100644 index 0000000..6571611 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805209_54_7094970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d96e8f0d4ef1206465900ea8783edadddc5974f26b2ad93675f3827a9af001d +size 128729 diff --git a/datasets/搭电设备/train/images/订单1805212_54_7094983.jpg b/datasets/搭电设备/train/images/订单1805212_54_7094983.jpg new file mode 100644 index 0000000..49aef17 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805212_54_7094983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a901a2095c983ddbf99dc3a4f1118e04c071385b10cc856a8d0efe880c4a2a +size 260353 diff --git a/datasets/搭电设备/train/images/订单1805213_54_7094947.jpg b/datasets/搭电设备/train/images/订单1805213_54_7094947.jpg new file mode 100644 index 0000000..699de7d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805213_54_7094947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b474f69fb45d81158ea7581484abca8f03818a9baabcb4ee15f1e3a3c4fdbd +size 129836 diff --git a/datasets/搭电设备/train/images/订单1805217_54_7095040.jpg b/datasets/搭电设备/train/images/订单1805217_54_7095040.jpg new file mode 100644 index 0000000..e776a41 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805217_54_7095040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf686768516b6015208af1789c5aeeba32072263034e90402efbe4d37d18288f +size 673204 diff --git a/datasets/搭电设备/train/images/订单1805220_54_7095017.jpg b/datasets/搭电设备/train/images/订单1805220_54_7095017.jpg new file mode 100644 index 0000000..01b3f61 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805220_54_7095017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3b1028aa182b468c93a21728e8d48a438f237ae1fb3f38512400dad9fffff0 +size 145724 diff --git a/datasets/搭电设备/train/images/订单1805223_54_7095097.jpg b/datasets/搭电设备/train/images/订单1805223_54_7095097.jpg new file mode 100644 index 0000000..8d5c1c7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805223_54_7095097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7efff32947cb087822202131c7c81ff112eb14cf02d6449b09a1ec36b65cf8 +size 136433 diff --git a/datasets/搭电设备/train/images/订单1805232_54_7095244.jpg b/datasets/搭电设备/train/images/订单1805232_54_7095244.jpg new file mode 100644 index 0000000..2cec188 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805232_54_7095244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d262dde6b047e11810e55d5684e6e85aee683a1330941327dff7e36aafcdbe +size 90558 diff --git a/datasets/搭电设备/train/images/订单1805233_54_7095229.jpg b/datasets/搭电设备/train/images/订单1805233_54_7095229.jpg new file mode 100644 index 0000000..0b26acc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805233_54_7095229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76fe8c835c4f2d62a38f6c29cb3ab4050cfe8ee24049210e906dbca423cc4302 +size 195152 diff --git a/datasets/搭电设备/train/images/订单1805234_54_7095311.jpg b/datasets/搭电设备/train/images/订单1805234_54_7095311.jpg new file mode 100644 index 0000000..04ae23d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805234_54_7095311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933c30d6c05f6477d292970506971300f1b0b106908bee448a04549b923447e7 +size 115081 diff --git a/datasets/搭电设备/train/images/订单1805237_54_7095221.jpg b/datasets/搭电设备/train/images/订单1805237_54_7095221.jpg new file mode 100644 index 0000000..90e6f3f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805237_54_7095221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41de86794843fa3f620c80854d152ec46a1a4b80d560ea93436eff3f0edbfbe7 +size 130985 diff --git a/datasets/搭电设备/train/images/订单1805239_54_7095199.jpg b/datasets/搭电设备/train/images/订单1805239_54_7095199.jpg new file mode 100644 index 0000000..2958e2f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805239_54_7095199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e544ce79e1595e1a247d775c8ae3a9580b11396c41a6e98d5784c062c63fa87 +size 154209 diff --git a/datasets/搭电设备/train/images/订单1805242_54_7095251.jpg b/datasets/搭电设备/train/images/订单1805242_54_7095251.jpg new file mode 100644 index 0000000..19b1b36 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805242_54_7095251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2834b28ad406ec91144c718df59a0bfe1bd479b7f894d1d21e25fd9b5d755f +size 109141 diff --git a/datasets/搭电设备/train/images/订单1805245_54_7095326.jpg b/datasets/搭电设备/train/images/订单1805245_54_7095326.jpg new file mode 100644 index 0000000..f832aaa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805245_54_7095326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba46702b5a7f788c6361f65a04376701c47e98f3e97087a768f9cff5a2e7fa88 +size 92508 diff --git a/datasets/搭电设备/train/images/订单1805247_54_7095294.jpg b/datasets/搭电设备/train/images/订单1805247_54_7095294.jpg new file mode 100644 index 0000000..a4eb7b0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805247_54_7095294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d26a53c6a850e289c82d0d8fcf854f34258a25c28d1adff5aebeec8feb2e9c +size 114222 diff --git a/datasets/搭电设备/train/images/订单1805250_54_7095336.jpg b/datasets/搭电设备/train/images/订单1805250_54_7095336.jpg new file mode 100644 index 0000000..1f9a357 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805250_54_7095336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2ec25f17cbd93b73da6401f9e9aaa9c7bfdcd73caeb31824237add0f81862a +size 132507 diff --git a/datasets/搭电设备/train/images/订单1805251_54_7095571.jpg b/datasets/搭电设备/train/images/订单1805251_54_7095571.jpg new file mode 100644 index 0000000..a6049ef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805251_54_7095571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f996a299b3cf880591236720d62d7d0b167c2da4f0080ff5dac121c322ecc86 +size 138376 diff --git a/datasets/搭电设备/train/images/订单1805252_54_7095427.jpg b/datasets/搭电设备/train/images/订单1805252_54_7095427.jpg new file mode 100644 index 0000000..94e5e56 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805252_54_7095427.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec08db326edb3964954d3bf6bf14dd1c8108ea802618adedb6bf658bc8f82770 +size 102721 diff --git a/datasets/搭电设备/train/images/订单1805253_54_7095369.jpg b/datasets/搭电设备/train/images/订单1805253_54_7095369.jpg new file mode 100644 index 0000000..46d295b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805253_54_7095369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18610eeb5b60a7315bd6dde08a2bf646967f91561fd54e5b16d6799782792e33 +size 480095 diff --git a/datasets/搭电设备/train/images/订单1805256_54_7095406.jpg b/datasets/搭电设备/train/images/订单1805256_54_7095406.jpg new file mode 100644 index 0000000..45e55e6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805256_54_7095406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12205d794c2d6eded89ca4cd5e7eb034b822047741557d02b41f704182df26b6 +size 661174 diff --git a/datasets/搭电设备/train/images/订单1805257_54_7095394.jpg b/datasets/搭电设备/train/images/订单1805257_54_7095394.jpg new file mode 100644 index 0000000..eb3715f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805257_54_7095394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c41973246e75101f64c44f36f037c561aa74a5f2303fe58bb0cb2c83dd02c27 +size 132816 diff --git a/datasets/搭电设备/train/images/订单1805261_54_7095497.jpg b/datasets/搭电设备/train/images/订单1805261_54_7095497.jpg new file mode 100644 index 0000000..ec9d061 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805261_54_7095497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc14bc312e12f0ce0291995648262a1f54b86bb515eba277c459828f9d5892ab +size 263748 diff --git a/datasets/搭电设备/train/images/订单1805262_54_7095490.jpg b/datasets/搭电设备/train/images/订单1805262_54_7095490.jpg new file mode 100644 index 0000000..08cff81 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805262_54_7095490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0036279f6b3f5d613f691583bb4b3f1b7b98e4dd1c781aae6990cbbeab33828 +size 293143 diff --git a/datasets/搭电设备/train/images/订单1805265_54_7095450.jpg b/datasets/搭电设备/train/images/订单1805265_54_7095450.jpg new file mode 100644 index 0000000..8c35c5e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805265_54_7095450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998c16cff8004b16824f277e33b504a4c19399f8e0d4559ce316ac6b4efd7830 +size 202027 diff --git a/datasets/搭电设备/train/images/订单1805271_54_7095500.jpg b/datasets/搭电设备/train/images/订单1805271_54_7095500.jpg new file mode 100644 index 0000000..81ec9cd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805271_54_7095500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e235fb7560ec4100bcca949d9f23b9659861b57cd86bc667426b36bcf036113 +size 185192 diff --git a/datasets/搭电设备/train/images/订单1805273_54_7095530.jpg b/datasets/搭电设备/train/images/订单1805273_54_7095530.jpg new file mode 100644 index 0000000..e0c44c1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805273_54_7095530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f75e7f8741539725d921d879df8b17ee03c37d49b9c0076fdfe01ab4d090b1c +size 138280 diff --git a/datasets/搭电设备/train/images/订单1805274_54_7095576.jpg b/datasets/搭电设备/train/images/订单1805274_54_7095576.jpg new file mode 100644 index 0000000..f1a2825 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805274_54_7095576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:357e106d1c0d88cde128e6ed54c135868dec2b357c1a8a24ae9d16f4d8951b8c +size 133327 diff --git a/datasets/搭电设备/train/images/订单1805275_54_7095585.jpg b/datasets/搭电设备/train/images/订单1805275_54_7095585.jpg new file mode 100644 index 0000000..fe6bfeb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805275_54_7095585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e93b7ff771fd823e8f176f9f24e4302afc74d7e2e2368725913e3c04fdd5ea +size 592029 diff --git a/datasets/搭电设备/train/images/订单1805276_54_7095551.jpg b/datasets/搭电设备/train/images/订单1805276_54_7095551.jpg new file mode 100644 index 0000000..57f1d5b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805276_54_7095551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c6450b01883698eb63bf4df03d2756b70c1a960f6136ec5b84b06b383379c0 +size 576382 diff --git a/datasets/搭电设备/train/images/订单1805278_54_7095560.jpg b/datasets/搭电设备/train/images/订单1805278_54_7095560.jpg new file mode 100644 index 0000000..d7beff4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805278_54_7095560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd4279f25f9f73ff13a93a4cebdbb5c25087a6741170b1cadec8558001aa5bd +size 123161 diff --git a/datasets/搭电设备/train/images/订单1805279_54_7095645.jpg b/datasets/搭电设备/train/images/订单1805279_54_7095645.jpg new file mode 100644 index 0000000..5a4b99c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805279_54_7095645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb7e9a59fafbade541a6c10b0d5bf24d3e1bb7f00edc0f4fd50cde879777490 +size 82459 diff --git a/datasets/搭电设备/train/images/订单1805280_54_7095689.jpg b/datasets/搭电设备/train/images/订单1805280_54_7095689.jpg new file mode 100644 index 0000000..dc642b8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805280_54_7095689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4678b949ad0b3baa8aca81c036ec0ee0af1d322c4b03d8134016b65327d74f +size 135084 diff --git a/datasets/搭电设备/train/images/订单1805281_54_7095713.jpg b/datasets/搭电设备/train/images/订单1805281_54_7095713.jpg new file mode 100644 index 0000000..d064536 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805281_54_7095713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445c0b254e676fb1c58160bc302679c7c24f815cc28304bb915ffd6d984d63ac +size 532514 diff --git a/datasets/搭电设备/train/images/订单1805282_54_7095646.jpg b/datasets/搭电设备/train/images/订单1805282_54_7095646.jpg new file mode 100644 index 0000000..ce5cc86 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805282_54_7095646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f181579e8cf96a88ff2074fface9da98a9ce7b12a4c1e2e2c0063650307410 +size 137507 diff --git a/datasets/搭电设备/train/images/订单1805286_54_7095678.jpg b/datasets/搭电设备/train/images/订单1805286_54_7095678.jpg new file mode 100644 index 0000000..0d66ac8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805286_54_7095678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccd096292a47a27c3f2913a4aff28b73812979732da9e0a1ead7d7e0a22960a +size 486758 diff --git a/datasets/搭电设备/train/images/订单1805288_54_7095737.jpg b/datasets/搭电设备/train/images/订单1805288_54_7095737.jpg new file mode 100644 index 0000000..7bbb25b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805288_54_7095737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acd67a96d9b3b2904eaf14f5619d88375a5e1f466a22dfb4a4d02db28cfbfdb +size 139165 diff --git a/datasets/搭电设备/train/images/订单1805291_54_7095846.jpg b/datasets/搭电设备/train/images/订单1805291_54_7095846.jpg new file mode 100644 index 0000000..677cd16 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805291_54_7095846.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce1071a0072cc1454f02c689443f0183a621b451cd361146af44a35c8e6ddc6 +size 136068 diff --git a/datasets/搭电设备/train/images/订单1805292_54_7095753.jpg b/datasets/搭电设备/train/images/订单1805292_54_7095753.jpg new file mode 100644 index 0000000..ca75659 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805292_54_7095753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1aed69c5412194fdb0a42b41827003cc37cc6819217c588630a2562fddb7ab3 +size 94386 diff --git a/datasets/搭电设备/train/images/订单1805294_54_7095819.jpg b/datasets/搭电设备/train/images/订单1805294_54_7095819.jpg new file mode 100644 index 0000000..aa077e3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805294_54_7095819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add7a4209364d0fb810472c5b94c453fc6cbf17553e457362d912d196d16a275 +size 666702 diff --git a/datasets/搭电设备/train/images/订单1805296_54_7095786.jpg b/datasets/搭电设备/train/images/订单1805296_54_7095786.jpg new file mode 100644 index 0000000..b498339 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805296_54_7095786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961992e54cebda667fd7b57fc740821d9f6cb189a62d9e9bfe5f6e73f691423e +size 133095 diff --git a/datasets/搭电设备/train/images/订单1805300_54_7095806.jpg b/datasets/搭电设备/train/images/订单1805300_54_7095806.jpg new file mode 100644 index 0000000..00a73e0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805300_54_7095806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231920f8172943cbad643d5f00b97419fcd37c29f5e082e0c77fd432dbec77ff +size 273984 diff --git a/datasets/搭电设备/train/images/订单1805302_54_7095825.jpg b/datasets/搭电设备/train/images/订单1805302_54_7095825.jpg new file mode 100644 index 0000000..e7a85a4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805302_54_7095825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cef15c9d907aa6afc1b9d84d479f46f7a06136d981298d45e69aba87c7e8700 +size 215570 diff --git a/datasets/搭电设备/train/images/订单1805303_54_7095933.jpg b/datasets/搭电设备/train/images/订单1805303_54_7095933.jpg new file mode 100644 index 0000000..1470342 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805303_54_7095933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6af14c583bee1be5fc88b39915012c75fcec52532247979f3d0d2832fbd87e2 +size 127875 diff --git a/datasets/搭电设备/train/images/订单1805310_54_7095916.jpg b/datasets/搭电设备/train/images/订单1805310_54_7095916.jpg new file mode 100644 index 0000000..07f0f04 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805310_54_7095916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96e636f1b4f347eadac037a4dc2aa2dd173564ce1c3c9352b90d60bf1c81e37 +size 160527 diff --git a/datasets/搭电设备/train/images/订单1805311_54_7095919.jpg b/datasets/搭电设备/train/images/订单1805311_54_7095919.jpg new file mode 100644 index 0000000..535d1af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805311_54_7095919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9383a462066eaa0649da4f51f7d8a7fef0083775caedfa9f31d820062fcda6 +size 140003 diff --git a/datasets/搭电设备/train/images/订单1805314_54_7096017.jpg b/datasets/搭电设备/train/images/订单1805314_54_7096017.jpg new file mode 100644 index 0000000..3f8f532 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805314_54_7096017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54026b933766be9bed5534a2d82c21a5a955ea0dae9dd06d92b173b29329369b +size 118139 diff --git a/datasets/搭电设备/train/images/订单1805315_54_7095971.jpg b/datasets/搭电设备/train/images/订单1805315_54_7095971.jpg new file mode 100644 index 0000000..f782b9b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805315_54_7095971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7feee7bec3f4a14f91def2dcff77810c42c75f3022a37d0ceb227d94ca3d51 +size 154855 diff --git a/datasets/搭电设备/train/images/订单1805316_54_7096205.jpg b/datasets/搭电设备/train/images/订单1805316_54_7096205.jpg new file mode 100644 index 0000000..be509ff --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805316_54_7096205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6465beb28438eee14b6dd936aaf3b4cb7167eb666671345b88e79ea6d762fea +size 116031 diff --git a/datasets/搭电设备/train/images/订单1805319_54_7096031.jpg b/datasets/搭电设备/train/images/订单1805319_54_7096031.jpg new file mode 100644 index 0000000..255ff1c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805319_54_7096031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e9cb35be59ac6f4afb352d2d639ee21a68e0d7782e7b3c17b3ac25d10dc811 +size 133282 diff --git a/datasets/搭电设备/train/images/订单1805323_54_7096095.jpg b/datasets/搭电设备/train/images/订单1805323_54_7096095.jpg new file mode 100644 index 0000000..aae07ea --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805323_54_7096095.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7db7cab22d333ad781d7873ac719e9ded7c01ca2f61a54a32e431286e45d7c +size 106606 diff --git a/datasets/搭电设备/train/images/订单1805324_54_7096114.jpg b/datasets/搭电设备/train/images/订单1805324_54_7096114.jpg new file mode 100644 index 0000000..5396f35 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805324_54_7096114.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901c76fc667e8062b12bbd58c33b42a29d2876b9a9fe2ef5f92651790d2fad0b +size 310252 diff --git a/datasets/搭电设备/train/images/订单1805326_54_7096087.jpg b/datasets/搭电设备/train/images/订单1805326_54_7096087.jpg new file mode 100644 index 0000000..37a7add --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805326_54_7096087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a405ef3baeccdd227ecfafb3e90ffb79d1a6025848bc7de8a5f1b4145ce8f199 +size 93455 diff --git a/datasets/搭电设备/train/images/订单1805333_54_7096130.jpg b/datasets/搭电设备/train/images/订单1805333_54_7096130.jpg new file mode 100644 index 0000000..23415ef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805333_54_7096130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81045ec44b99d4f41a683fb48bc530b954277c33069b157575e2af3db380abd1 +size 104549 diff --git a/datasets/搭电设备/train/images/订单1805334_54_7096265.jpg b/datasets/搭电设备/train/images/订单1805334_54_7096265.jpg new file mode 100644 index 0000000..abd6fe2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805334_54_7096265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a61ace3217fd5693e67678e339a90ca0ed8b8aed8f06a5934bb12c769c5e3b +size 118325 diff --git a/datasets/搭电设备/train/images/订单1805335_54_7096160.jpg b/datasets/搭电设备/train/images/订单1805335_54_7096160.jpg new file mode 100644 index 0000000..9665001 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805335_54_7096160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f05cf6f028d564d1f4f75338e8c1172ebcbdddefc915ee1a73bef0d4773003 +size 107075 diff --git a/datasets/搭电设备/train/images/订单1805337_54_7097485.jpg b/datasets/搭电设备/train/images/订单1805337_54_7097485.jpg new file mode 100644 index 0000000..439363e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805337_54_7097485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5aaebb9579d04216243ce61b02e09f106268a01eed73a3b61dabfea62c9564 +size 448793 diff --git a/datasets/搭电设备/train/images/订单1805340_54_7096141.jpg b/datasets/搭电设备/train/images/订单1805340_54_7096141.jpg new file mode 100644 index 0000000..f8ed944 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805340_54_7096141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71c57d01755954bbb5851426dfa72a342d7ac564ed517e0814c6b2844d871d7 +size 104022 diff --git a/datasets/搭电设备/train/images/订单1805341_54_7096220.jpg b/datasets/搭电设备/train/images/订单1805341_54_7096220.jpg new file mode 100644 index 0000000..c44215c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805341_54_7096220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6df0a80aafee02a1a598fa6c20e2f281dd3c6608cd0ee5acc83c461e61e855 +size 281402 diff --git a/datasets/搭电设备/train/images/订单1805342_54_7096255.jpg b/datasets/搭电设备/train/images/订单1805342_54_7096255.jpg new file mode 100644 index 0000000..948aac3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805342_54_7096255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f461a364c9d9ba3b2f4ce9ad2292753b9c7975b2ee5b36b85faaedf82b6b23 +size 140393 diff --git a/datasets/搭电设备/train/images/订单1805343_54_7096178.jpg b/datasets/搭电设备/train/images/订单1805343_54_7096178.jpg new file mode 100644 index 0000000..39e47c3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805343_54_7096178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4974643318d18b401dad4a5c488e8698eef4d008e1cef6419df9fbb617a6f6 +size 326029 diff --git a/datasets/搭电设备/train/images/订单1805344_54_7096453.jpg b/datasets/搭电设备/train/images/订单1805344_54_7096453.jpg new file mode 100644 index 0000000..1e7662c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805344_54_7096453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f7bd25ab3154733dbd834845fba12b798cb7781370d8dcbc8793d7a81399502 +size 603971 diff --git a/datasets/搭电设备/train/images/订单1805345_54_7096257.jpg b/datasets/搭电设备/train/images/订单1805345_54_7096257.jpg new file mode 100644 index 0000000..c823fbb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805345_54_7096257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da5a5e7492201eddd5f9a0266ae77d121943faade78998264f7bdd15a577b6b +size 63491 diff --git a/datasets/搭电设备/train/images/订单1805346_54_7096329.jpg b/datasets/搭电设备/train/images/订单1805346_54_7096329.jpg new file mode 100644 index 0000000..0eba7e5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805346_54_7096329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2533fc52eb92551b54109ba0b6cba78b0947927e127e9550156d0316f2a317e5 +size 146491 diff --git a/datasets/搭电设备/train/images/订单1805347_54_7096301.jpg b/datasets/搭电设备/train/images/订单1805347_54_7096301.jpg new file mode 100644 index 0000000..a19f111 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805347_54_7096301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e5eb4278c1acc876e99540a433805b33099c5c92145450d2b6dc10636f4062 +size 619644 diff --git a/datasets/搭电设备/train/images/订单1805348_54_7096296.jpg b/datasets/搭电设备/train/images/订单1805348_54_7096296.jpg new file mode 100644 index 0000000..bb27a22 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805348_54_7096296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd5c7788b5e0bd156627b72dd1652783f9f2e25bfa0d10f207d12eafc7bfb31 +size 507028 diff --git a/datasets/搭电设备/train/images/订单1805350_54_7096339.jpg b/datasets/搭电设备/train/images/订单1805350_54_7096339.jpg new file mode 100644 index 0000000..35e3e32 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805350_54_7096339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2faa5cb41620ae852b2cb5d7cea0ff5bc26126c3afc2c772a44caf5310466c69 +size 541865 diff --git a/datasets/搭电设备/train/images/订单1805351_54_7096398.jpg b/datasets/搭电设备/train/images/订单1805351_54_7096398.jpg new file mode 100644 index 0000000..17fea0b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805351_54_7096398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b0fb7d5a3739a645b82b6bad75596dd36baf0e9581c080a25ba629ab708e7e +size 267122 diff --git a/datasets/搭电设备/train/images/订单1805353_54_7096326.jpg b/datasets/搭电设备/train/images/订单1805353_54_7096326.jpg new file mode 100644 index 0000000..e164b08 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805353_54_7096326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f073eb707ec0dda18d841c92c76b2173f1aaf0d4830133db9ae73c33f9acb4d6 +size 156337 diff --git a/datasets/搭电设备/train/images/订单1805354_54_7096389.jpg b/datasets/搭电设备/train/images/订单1805354_54_7096389.jpg new file mode 100644 index 0000000..bd5f4a1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805354_54_7096389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ade65d3e01d227eefd4aaea31d9cf1276ec1a6a5fb4f14007c2d3700530cfa8 +size 110701 diff --git a/datasets/搭电设备/train/images/订单1805355_54_7096600.jpg b/datasets/搭电设备/train/images/订单1805355_54_7096600.jpg new file mode 100644 index 0000000..3015791 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805355_54_7096600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b389670b5e442012cae53fded59ba372c87dc5677922718141bd738045adb2 +size 132262 diff --git a/datasets/搭电设备/train/images/订单1805357_54_7096371.jpg b/datasets/搭电设备/train/images/订单1805357_54_7096371.jpg new file mode 100644 index 0000000..e900eb9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805357_54_7096371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac1ddafaffe36f222ba56a37d9541a14d2b2bc70c15788485e030f23488ad11 +size 151283 diff --git a/datasets/搭电设备/train/images/订单1805358_54_7096446.jpg b/datasets/搭电设备/train/images/订单1805358_54_7096446.jpg new file mode 100644 index 0000000..895c5af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805358_54_7096446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb6ea3e6c16865cd44fc0fad9972c69b8f4bcb844f41c1c1ed303be1f251378 +size 86940 diff --git a/datasets/搭电设备/train/images/订单1805362_54_7096374.jpg b/datasets/搭电设备/train/images/订单1805362_54_7096374.jpg new file mode 100644 index 0000000..305f5b4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805362_54_7096374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f47783ede72e17c619c1a11eacf7b7af38845f3f4258d1325cbde0ce16f410 +size 159457 diff --git a/datasets/搭电设备/train/images/订单1805363_54_7096363.jpg b/datasets/搭电设备/train/images/订单1805363_54_7096363.jpg new file mode 100644 index 0000000..22fc6ed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805363_54_7096363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab228b95aa7bc430887e182ef259745a6e517681df1e691658773301b4b205f +size 93552 diff --git a/datasets/搭电设备/train/images/订单1805366_54_7096429.jpg b/datasets/搭电设备/train/images/订单1805366_54_7096429.jpg new file mode 100644 index 0000000..f488073 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805366_54_7096429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0c94d2c19640cc4f67f06d1ce1132c450ccc6a107a81bd18a827c8b389689a +size 270981 diff --git a/datasets/搭电设备/train/images/订单1805367_54_7096531.jpg b/datasets/搭电设备/train/images/订单1805367_54_7096531.jpg new file mode 100644 index 0000000..65f5e4e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805367_54_7096531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98da5840217e4cb1941d8765a4558b5d6383fb9bfde70b8456f3c0587acb11b +size 257471 diff --git a/datasets/搭电设备/train/images/订单1805369_54_7096406.jpg b/datasets/搭电设备/train/images/订单1805369_54_7096406.jpg new file mode 100644 index 0000000..1d44c8d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805369_54_7096406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014912f625adea7aab2cd5ff6a76198faab6f1c468a7a1032ba7ef5cf3c8d2d1 +size 657823 diff --git a/datasets/搭电设备/train/images/订单1805370_54_7096567.jpg b/datasets/搭电设备/train/images/订单1805370_54_7096567.jpg new file mode 100644 index 0000000..8fed3c2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805370_54_7096567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73d04b6fd4022795b6d577ea9bfd15589184aa24778a863dfa74c2d69d3263a +size 99640 diff --git a/datasets/搭电设备/train/images/订单1805371_54_7096498.jpg b/datasets/搭电设备/train/images/订单1805371_54_7096498.jpg new file mode 100644 index 0000000..25781df --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805371_54_7096498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a37763fa7f2713be746f219104b8efaf60ca194ea60cb86c2a8c41035b7c15 +size 288619 diff --git a/datasets/搭电设备/train/images/订单1805373_54_7096479.jpg b/datasets/搭电设备/train/images/订单1805373_54_7096479.jpg new file mode 100644 index 0000000..eab738f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805373_54_7096479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a8f0a3fddae8b8f7260f74299b3bee0ce3f4e8b37f347234b952b36fee7691 +size 86124 diff --git a/datasets/搭电设备/train/images/订单1805374_54_7096500.jpg b/datasets/搭电设备/train/images/订单1805374_54_7096500.jpg new file mode 100644 index 0000000..96659a5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805374_54_7096500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5a4958b073c54d8053a79b5b0b0048f2423208e59f4d7d3a63b7e477839037 +size 131800 diff --git a/datasets/搭电设备/train/images/订单1805375_54_7096490.jpg b/datasets/搭电设备/train/images/订单1805375_54_7096490.jpg new file mode 100644 index 0000000..016ac2c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805375_54_7096490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3696e6a6a3ceb489a7c142a1ae47b057375edf83083ac226670bf3e9d148038 +size 91168 diff --git a/datasets/搭电设备/train/images/订单1805376_54_7096540.jpg b/datasets/搭电设备/train/images/订单1805376_54_7096540.jpg new file mode 100644 index 0000000..719fd38 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805376_54_7096540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afeaccd6a7ce51fac1194aa0aa78b4aaf1accad1fb9939eea5a39a4e912e079 +size 128848 diff --git a/datasets/搭电设备/train/images/订单1805377_54_7096592.jpg b/datasets/搭电设备/train/images/订单1805377_54_7096592.jpg new file mode 100644 index 0000000..4d1d277 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805377_54_7096592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70567ec1f92a98e4262757667e5cc76efc7db17409ae31273999b69ae1122e2b +size 154195 diff --git a/datasets/搭电设备/train/images/订单1805380_54_7096589.jpg b/datasets/搭电设备/train/images/订单1805380_54_7096589.jpg new file mode 100644 index 0000000..bda10c4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805380_54_7096589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e38ec498dd7951b75af981516c6715cd0767ea9a7143a8f1067bba913a63a1 +size 383528 diff --git a/datasets/搭电设备/train/images/订单1805381_54_7096585.jpg b/datasets/搭电设备/train/images/订单1805381_54_7096585.jpg new file mode 100644 index 0000000..ef2aa3e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805381_54_7096585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45298e8d30ffa0fb79101192ede3f953acdd10f7a217cee5a0a7d79ed474032 +size 123503 diff --git a/datasets/搭电设备/train/images/订单1805382_54_7096627.jpg b/datasets/搭电设备/train/images/订单1805382_54_7096627.jpg new file mode 100644 index 0000000..8b64301 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805382_54_7096627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d95f7a9420412e6dab1792297f7d8d8a47e995e7c78795ab0e66eeda5fa96bb +size 140608 diff --git a/datasets/搭电设备/train/images/订单1805383_54_7096583.jpg b/datasets/搭电设备/train/images/订单1805383_54_7096583.jpg new file mode 100644 index 0000000..25f189d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805383_54_7096583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ac2cf878401aef29c347c281d2d6d39324d367506fbf641bc2a64f0410afed +size 82388 diff --git a/datasets/搭电设备/train/images/订单1805385_54_7096710.jpg b/datasets/搭电设备/train/images/订单1805385_54_7096710.jpg new file mode 100644 index 0000000..9128032 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805385_54_7096710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2491cb30d28e8bdb6a3361d35cfd0349987312031faf1cc3ff102829320b89a0 +size 194658 diff --git a/datasets/搭电设备/train/images/订单1805387_54_7096629.jpg b/datasets/搭电设备/train/images/订单1805387_54_7096629.jpg new file mode 100644 index 0000000..bfe7129 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805387_54_7096629.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0a522570fc21064b252edc12c0639fda80d4a5aef73a5ec9cd25a8996f8fa6 +size 413137 diff --git a/datasets/搭电设备/train/images/订单1805393_54_7096658.jpg b/datasets/搭电设备/train/images/订单1805393_54_7096658.jpg new file mode 100644 index 0000000..3d72775 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805393_54_7096658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bc66fb348b4c0cb9cb95a1e096d2e5c00962f71c6a56a247662c16e8680cca +size 84716 diff --git a/datasets/搭电设备/train/images/订单1805394_54_7096653.jpg b/datasets/搭电设备/train/images/订单1805394_54_7096653.jpg new file mode 100644 index 0000000..63b02ce --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805394_54_7096653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9fb7bcaeef0151a2c6db19a1c3134ac1605d24e3c663187002d8a4b398eb4b +size 165905 diff --git a/datasets/搭电设备/train/images/订单1805395_54_7096709.jpg b/datasets/搭电设备/train/images/订单1805395_54_7096709.jpg new file mode 100644 index 0000000..1f47471 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805395_54_7096709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f62ecbac5efc6b4c54dd39edb3b56981a5f08c53809cc9afd9073d3efe38623 +size 610774 diff --git a/datasets/搭电设备/train/images/订单1805397_54_7096899.jpg b/datasets/搭电设备/train/images/订单1805397_54_7096899.jpg new file mode 100644 index 0000000..df032b9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805397_54_7096899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288ca02a836c1c5723c338f9de0de43b22b77504a9ddd079a82d0898cc135ae3 +size 123427 diff --git a/datasets/搭电设备/train/images/订单1805398_54_7096788.jpg b/datasets/搭电设备/train/images/订单1805398_54_7096788.jpg new file mode 100644 index 0000000..d04c2ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805398_54_7096788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c25c0215bf6004f3d2244bba5133a6c1fd672a8bf7f976728cb7aff5ef6f51 +size 208763 diff --git a/datasets/搭电设备/train/images/订单1805400_54_7096756.jpg b/datasets/搭电设备/train/images/订单1805400_54_7096756.jpg new file mode 100644 index 0000000..af5c6f7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805400_54_7096756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d31747d9a01bfa371fd12393c659a4da1d920a21a0dd542f977a43329c7d4a +size 134017 diff --git a/datasets/搭电设备/train/images/订单1805404_54_7096852.jpg b/datasets/搭电设备/train/images/订单1805404_54_7096852.jpg new file mode 100644 index 0000000..f919771 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805404_54_7096852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c74f886c936d54e2dae93f3ebc3a4bbcf97d587fd339163244aa934c3cadf22 +size 504334 diff --git a/datasets/搭电设备/train/images/订单1805405_54_7096776.jpg b/datasets/搭电设备/train/images/订单1805405_54_7096776.jpg new file mode 100644 index 0000000..7959397 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805405_54_7096776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b62d66ca950e7fab7633b4c35509a4d821475234930c8b2ec063cae3f2feb28 +size 123240 diff --git a/datasets/搭电设备/train/images/订单1805407_54_7096806.jpg b/datasets/搭电设备/train/images/订单1805407_54_7096806.jpg new file mode 100644 index 0000000..7fa14d0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805407_54_7096806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab81d87b4849cff5140a7e96ab33623fc1af603afea35ce87fdc0320cd406ca9 +size 485426 diff --git a/datasets/搭电设备/train/images/订单1805408_54_7096826.jpg b/datasets/搭电设备/train/images/订单1805408_54_7096826.jpg new file mode 100644 index 0000000..a39b263 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805408_54_7096826.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46bd05b6a5d48404d5f1ff30c879bc2c61ddd9795d52e3b7e95354de0dd6827 +size 117395 diff --git a/datasets/搭电设备/train/images/订单1805409_54_7096832.jpg b/datasets/搭电设备/train/images/订单1805409_54_7096832.jpg new file mode 100644 index 0000000..d86745b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805409_54_7096832.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4938095cb5a52b74f0f0af82c7796d78e0a490b97564854193b97de58278c24f +size 100112 diff --git a/datasets/搭电设备/train/images/订单1805410_54_7096875.jpg b/datasets/搭电设备/train/images/订单1805410_54_7096875.jpg new file mode 100644 index 0000000..b5523cf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805410_54_7096875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eabc716b5080e61fc48f10bc3288631b4d96b2eb8c342135dbe5b2b273692ba +size 502050 diff --git a/datasets/搭电设备/train/images/订单1805413_54_7096932.jpg b/datasets/搭电设备/train/images/订单1805413_54_7096932.jpg new file mode 100644 index 0000000..8cec9fd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805413_54_7096932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b156200a21486ef49453f4de2374c23bc7000e2f48a8f6eae45ecbb4496a49 +size 106941 diff --git a/datasets/搭电设备/train/images/订单1805414_54_7096901.jpg b/datasets/搭电设备/train/images/订单1805414_54_7096901.jpg new file mode 100644 index 0000000..0447fa2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805414_54_7096901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c7827a0d986361452486fbdf861b2baf7d78821e65633ea09d8d8dfcb6a87b +size 107445 diff --git a/datasets/搭电设备/train/images/订单1805415_54_7096963.jpg b/datasets/搭电设备/train/images/订单1805415_54_7096963.jpg new file mode 100644 index 0000000..de6d102 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805415_54_7096963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b112c9d615b900d11303e5bfe7d3a486e0f951bf1565ad858addf4d6aff50a0 +size 121946 diff --git a/datasets/搭电设备/train/images/订单1805416_54_7096941.jpg b/datasets/搭电设备/train/images/订单1805416_54_7096941.jpg new file mode 100644 index 0000000..a11f70b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805416_54_7096941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5e6bd77972b8f327e0ccc0a9f923ac28b91a606aa8757622ec5e2a08a956ed +size 154747 diff --git a/datasets/搭电设备/train/images/订单1805417_54_7096977.jpg b/datasets/搭电设备/train/images/订单1805417_54_7096977.jpg new file mode 100644 index 0000000..77b0455 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805417_54_7096977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc89448c3385d71c53b5dc27a61978e1a0514c172446fdd799e5cb0856609280 +size 517486 diff --git a/datasets/搭电设备/train/images/订单1805418_54_7096993.jpg b/datasets/搭电设备/train/images/订单1805418_54_7096993.jpg new file mode 100644 index 0000000..c54e7ed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805418_54_7096993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd48e0a3ae87f06337badffb38446c63978a00bb3c827e613ca8a811b9820dff +size 365778 diff --git a/datasets/搭电设备/train/images/订单1805419_54_7097027.jpg b/datasets/搭电设备/train/images/订单1805419_54_7097027.jpg new file mode 100644 index 0000000..23fff9f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805419_54_7097027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca088dbfd2bd0c63ec51cbeda5fb66212471c60b6ea0d39fbdb8bf57c6ae111d +size 115741 diff --git a/datasets/搭电设备/train/images/订单1805422_54_7097144.jpg b/datasets/搭电设备/train/images/订单1805422_54_7097144.jpg new file mode 100644 index 0000000..e01c812 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805422_54_7097144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d2c6c7a6bd0870a67d4a7b1b70f3f151cad0ae8db7e43bd83b36739d00c0bd +size 329334 diff --git a/datasets/搭电设备/train/images/订单1805423_54_7097001.jpg b/datasets/搭电设备/train/images/订单1805423_54_7097001.jpg new file mode 100644 index 0000000..41c4420 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805423_54_7097001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782ab3abb71128e9c02c97170f8e12afc5436778b423ff801b2b381a9199f509 +size 138412 diff --git a/datasets/搭电设备/train/images/订单1805425_54_7097091.jpg b/datasets/搭电设备/train/images/订单1805425_54_7097091.jpg new file mode 100644 index 0000000..054c900 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805425_54_7097091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73a4de3a74f52c1bc875dffaa33dd0ce0b17329f96aeb589af44b61ec57c034 +size 246910 diff --git a/datasets/搭电设备/train/images/订单1805428_54_7097037.jpg b/datasets/搭电设备/train/images/订单1805428_54_7097037.jpg new file mode 100644 index 0000000..5d5354e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805428_54_7097037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1100832d2746d9202103e4c8b00af3f7fb94176e146209194f3b6da72199f2 +size 146786 diff --git a/datasets/搭电设备/train/images/订单1805429_54_7097073.jpg b/datasets/搭电设备/train/images/订单1805429_54_7097073.jpg new file mode 100644 index 0000000..08cfb9f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805429_54_7097073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b927a6cf91bb024d2d936866d32a78feee613020c00e095be6afe650918f491 +size 237196 diff --git a/datasets/搭电设备/train/images/订单1805430_54_7097201.jpg b/datasets/搭电设备/train/images/订单1805430_54_7097201.jpg new file mode 100644 index 0000000..4ede737 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805430_54_7097201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73d8917573ba98cb0fa38db903c51fcc0168d1845c93d4988100929cc91696a +size 94699 diff --git a/datasets/搭电设备/train/images/订单1805431_54_7097109.jpg b/datasets/搭电设备/train/images/订单1805431_54_7097109.jpg new file mode 100644 index 0000000..9b27785 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805431_54_7097109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ddeeb487a3fcfe0e9f207086643d8e307569a81e46efb838fbb37c17ff92776 +size 148281 diff --git a/datasets/搭电设备/train/images/订单1805433_54_7097059.jpg b/datasets/搭电设备/train/images/订单1805433_54_7097059.jpg new file mode 100644 index 0000000..d294e7a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805433_54_7097059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd228eeb875daca2e6b21939cff22914d9859b82ac524783893a7773a5d684af +size 380297 diff --git a/datasets/搭电设备/train/images/订单1805437_54_7097134.jpg b/datasets/搭电设备/train/images/订单1805437_54_7097134.jpg new file mode 100644 index 0000000..973ed5a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805437_54_7097134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac02dc6935dd4c3c11e9a26790dc55edb751ee9d5afb58e5f3862d6d8e012910 +size 359717 diff --git a/datasets/搭电设备/train/images/订单1805438_54_7097101.jpg b/datasets/搭电设备/train/images/订单1805438_54_7097101.jpg new file mode 100644 index 0000000..df776c6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805438_54_7097101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ad92f5adc5b3d70c5f13dcef36a786bb85ed5b1b55cd39d7a705d1b3dd80e0 +size 131287 diff --git a/datasets/搭电设备/train/images/订单1805439_54_7097141.jpg b/datasets/搭电设备/train/images/订单1805439_54_7097141.jpg new file mode 100644 index 0000000..39affa5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805439_54_7097141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84f23e7b20c1aef2888ae7cc37817fc725eee639ac3e36787b50e8db5fe3a1b +size 377051 diff --git a/datasets/搭电设备/train/images/订单1805442_54_7097220.jpg b/datasets/搭电设备/train/images/订单1805442_54_7097220.jpg new file mode 100644 index 0000000..9ca3800 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805442_54_7097220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2965c5bf3bf6cd80996de37874d9c18312702f17a40658db0ef5b02cb7b8c5d6 +size 143927 diff --git a/datasets/搭电设备/train/images/订单1805444_54_7097198.jpg b/datasets/搭电设备/train/images/订单1805444_54_7097198.jpg new file mode 100644 index 0000000..b8e0d9e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805444_54_7097198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86049f73ca64b6eccb70b1a1de318020b324bf5b7a855e58e09cf6b7b5c81d2d +size 515456 diff --git a/datasets/搭电设备/train/images/订单1805445_54_7097239.jpg b/datasets/搭电设备/train/images/订单1805445_54_7097239.jpg new file mode 100644 index 0000000..b1ee0fd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805445_54_7097239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae90352bf9824270965834493ee971fb5cfe99b5c2e1d885c3b0cee186434376 +size 117726 diff --git a/datasets/搭电设备/train/images/订单1805446_54_7097182.jpg b/datasets/搭电设备/train/images/订单1805446_54_7097182.jpg new file mode 100644 index 0000000..de21082 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805446_54_7097182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b535bb1641837a3984db0be75d8ca01afbeb6b2dc201db5b21be8d4aa16848c +size 140477 diff --git a/datasets/搭电设备/train/images/订单1805448_54_7097286.jpg b/datasets/搭电设备/train/images/订单1805448_54_7097286.jpg new file mode 100644 index 0000000..2714610 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805448_54_7097286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f678c00aa5f5ce89bb93887ee0d7ad14104cbe5d839cf14f02a2344e7ff5fbb +size 478925 diff --git a/datasets/搭电设备/train/images/订单1805449_54_7097277.jpg b/datasets/搭电设备/train/images/订单1805449_54_7097277.jpg new file mode 100644 index 0000000..2b42dbc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805449_54_7097277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947c6a43906d3d80799575f918b5855527b4049fe2b5ed711387bb6076fb7702 +size 401605 diff --git a/datasets/搭电设备/train/images/订单1805451_54_7097410.jpg b/datasets/搭电设备/train/images/订单1805451_54_7097410.jpg new file mode 100644 index 0000000..2dd5237 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805451_54_7097410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95aaa9a0d18cb7dfe1537d08680be914075d0af03a5766447db9367749a6f544 +size 140141 diff --git a/datasets/搭电设备/train/images/订单1805452_54_7097307.jpg b/datasets/搭电设备/train/images/订单1805452_54_7097307.jpg new file mode 100644 index 0000000..0c545ff --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805452_54_7097307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c0ef37eb80cb71e0b352f38b8c69caee3033783ae6abe3e4d353fc8cced641 +size 123191 diff --git a/datasets/搭电设备/train/images/订单1805453_54_7097275.jpg b/datasets/搭电设备/train/images/订单1805453_54_7097275.jpg new file mode 100644 index 0000000..dcd3a60 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805453_54_7097275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e21d2133012be788c43763e29d739d9d687436755bdba16fb816075d4e5cb9d +size 322932 diff --git a/datasets/搭电设备/train/images/订单1805454_54_7097252.jpg b/datasets/搭电设备/train/images/订单1805454_54_7097252.jpg new file mode 100644 index 0000000..535c16d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805454_54_7097252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1086d6f1a0949c78eefbd75c04bce3020e579fe82f294364e35e22153acbae73 +size 125256 diff --git a/datasets/搭电设备/train/images/订单1805455_54_7097323.jpg b/datasets/搭电设备/train/images/订单1805455_54_7097323.jpg new file mode 100644 index 0000000..c42a9a1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805455_54_7097323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351969db1242712baeb8d11121dd183242a415ac093f19094736358bfcf73e49 +size 133179 diff --git a/datasets/搭电设备/train/images/订单1805458_54_7097363.jpg b/datasets/搭电设备/train/images/订单1805458_54_7097363.jpg new file mode 100644 index 0000000..5ba56b0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805458_54_7097363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0834c4c4ba8fd54969930baca7ecd8f6b30579cd9241f907c7d161b0fcebbf00 +size 133682 diff --git a/datasets/搭电设备/train/images/订单1805459_54_7097356.jpg b/datasets/搭电设备/train/images/订单1805459_54_7097356.jpg new file mode 100644 index 0000000..de0d45c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805459_54_7097356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccb57debf012ca99f15d616ca89027b8a943702801f0dc529f0c82021fa4fe2 +size 129616 diff --git a/datasets/搭电设备/train/images/订单1805460_54_7097381.jpg b/datasets/搭电设备/train/images/订单1805460_54_7097381.jpg new file mode 100644 index 0000000..bc524c3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805460_54_7097381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b15c0cdc0e20e397d88a3fbeefc1a49ea10e7580e263d22b7f3eb9ea61e57a +size 333163 diff --git a/datasets/搭电设备/train/images/订单1805461_54_7097446.jpg b/datasets/搭电设备/train/images/订单1805461_54_7097446.jpg new file mode 100644 index 0000000..76c8d8a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805461_54_7097446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e900e7f7c2a868920809853db600dda60888135aea9cb56fcc607e106cebbe42 +size 120415 diff --git a/datasets/搭电设备/train/images/订单1805463_54_7097395.jpg b/datasets/搭电设备/train/images/订单1805463_54_7097395.jpg new file mode 100644 index 0000000..bf96fd8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805463_54_7097395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0bc3e1ec97a3134e73dac4a4383a6144be65672bf2a23ca2cfb1ab1cfb7700 +size 103188 diff --git a/datasets/搭电设备/train/images/订单1805466_54_7097462.jpg b/datasets/搭电设备/train/images/订单1805466_54_7097462.jpg new file mode 100644 index 0000000..1ef164c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805466_54_7097462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1accf055fb359589a09620bee9dfd9bc7d4d6261ce544c36722edb8920567232 +size 366040 diff --git a/datasets/搭电设备/train/images/订单1805467_54_7097515.jpg b/datasets/搭电设备/train/images/订单1805467_54_7097515.jpg new file mode 100644 index 0000000..6ec2f84 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805467_54_7097515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ce1c03e502f54935b6c6d64c2de1cbb86014d30bb83c782405dadf95d596d0 +size 1596434 diff --git a/datasets/搭电设备/train/images/订单1805468_54_7097493.jpg b/datasets/搭电设备/train/images/订单1805468_54_7097493.jpg new file mode 100644 index 0000000..0c27b8b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805468_54_7097493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983e29f4c0c033fb819f3247f15c3b996a6d78416f11c57c8a4ae2710e48ef06 +size 917982 diff --git a/datasets/搭电设备/train/images/订单1805469_54_7097450.jpg b/datasets/搭电设备/train/images/订单1805469_54_7097450.jpg new file mode 100644 index 0000000..d087454 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805469_54_7097450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d003e19f9a763acb2fe45e9b22286994f2e45bf7fbd6819ebe6b1bd9b97c1509 +size 108546 diff --git a/datasets/搭电设备/train/images/订单1805471_54_7097469.jpg b/datasets/搭电设备/train/images/订单1805471_54_7097469.jpg new file mode 100644 index 0000000..de50881 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805471_54_7097469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc88c7a8ec9fdc6ffb7c2dd16d232650febc201f14fdad09975c3ca8060acd9 +size 134099 diff --git a/datasets/搭电设备/train/images/订单1805472_54_7097530.jpg b/datasets/搭电设备/train/images/订单1805472_54_7097530.jpg new file mode 100644 index 0000000..f330758 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805472_54_7097530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e956fd18dd8a47af22f32ca4170eeab8d007af4afcf511c1feca719b51fa3d +size 66251 diff --git a/datasets/搭电设备/train/images/订单1805473_54_7097539.jpg b/datasets/搭电设备/train/images/订单1805473_54_7097539.jpg new file mode 100644 index 0000000..26aefa5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805473_54_7097539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392be0a0db7c2b4a1a485fbe14347abc1eaba7772315ea6c6a0c7830bed75527 +size 143496 diff --git a/datasets/搭电设备/train/images/订单1805477_54_7097583.jpg b/datasets/搭电设备/train/images/订单1805477_54_7097583.jpg new file mode 100644 index 0000000..006076c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805477_54_7097583.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6382714fc1edc2051158341fd0b67718f5e2bd321576cf46abb099399d9137 +size 155125 diff --git a/datasets/搭电设备/train/images/订单1805479_54_7097598.jpg b/datasets/搭电设备/train/images/订单1805479_54_7097598.jpg new file mode 100644 index 0000000..63b9029 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805479_54_7097598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058ccfd8253fbc0f49e3eae02b263e2c0837c8711b780b2b8b79f8bead0c8f6f +size 121397 diff --git a/datasets/搭电设备/train/images/订单1805483_54_7097642.jpg b/datasets/搭电设备/train/images/订单1805483_54_7097642.jpg new file mode 100644 index 0000000..267b72c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805483_54_7097642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bee954685050010ac1139275e6bcc12f6af1583aa781d0c702091ee44fadc27 +size 416826 diff --git a/datasets/搭电设备/train/images/订单1805485_54_7097621.jpg b/datasets/搭电设备/train/images/订单1805485_54_7097621.jpg new file mode 100644 index 0000000..d9ed150 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805485_54_7097621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729c75848134162c5782d7e41155c0083f686177ed300b2d8881a4cfb4eb84f9 +size 446123 diff --git a/datasets/搭电设备/train/images/订单1805489_54_7097659.jpg b/datasets/搭电设备/train/images/订单1805489_54_7097659.jpg new file mode 100644 index 0000000..41f7db0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805489_54_7097659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d583bfd91cfc84b0b2a6aa96c82a11b7873a96213c0d3f134eb5e71f62c15505 +size 420513 diff --git a/datasets/搭电设备/train/images/订单1805490_54_7097679.jpg b/datasets/搭电设备/train/images/订单1805490_54_7097679.jpg new file mode 100644 index 0000000..26d5903 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805490_54_7097679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b157a3db001aaf2fbd2fbdb97f1480bfadb62b63e24a4fa9a309300360f3d308 +size 111116 diff --git a/datasets/搭电设备/train/images/订单1805494_54_7097671.jpg b/datasets/搭电设备/train/images/订单1805494_54_7097671.jpg new file mode 100644 index 0000000..509939b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805494_54_7097671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab5fea7ac1edac68b569fcdc766ef25a1e2a933da136c53f2abe8a2da7be72c +size 124473 diff --git a/datasets/搭电设备/train/images/订单1805495_54_7097891.jpg b/datasets/搭电设备/train/images/订单1805495_54_7097891.jpg new file mode 100644 index 0000000..8e27ace --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805495_54_7097891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820a53aa01cef27fa3c4cf0361f47e03d1ba687044aa9b0b6cb233f074c142b2 +size 422602 diff --git a/datasets/搭电设备/train/images/订单1805497_54_7097715.jpg b/datasets/搭电设备/train/images/订单1805497_54_7097715.jpg new file mode 100644 index 0000000..46cdc8a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805497_54_7097715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba624472a47dc4e03deb090225fb8c5a9ff91a1812260a06aa894a5778ac0e6 +size 183373 diff --git a/datasets/搭电设备/train/images/订单1805498_54_7097738.jpg b/datasets/搭电设备/train/images/订单1805498_54_7097738.jpg new file mode 100644 index 0000000..7fb3968 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805498_54_7097738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea466829c719beec9b17422f23fcf16feb65595fc906534b8546df5972747e75 +size 106433 diff --git a/datasets/搭电设备/train/images/订单1805499_54_7097754.jpg b/datasets/搭电设备/train/images/订单1805499_54_7097754.jpg new file mode 100644 index 0000000..8b7b5f2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805499_54_7097754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70c1cb4731980e24a60ecc9d1fe58ac738e045bc08abab0f61463fa5760f354 +size 130571 diff --git a/datasets/搭电设备/train/images/订单1805500_54_7097768.jpg b/datasets/搭电设备/train/images/订单1805500_54_7097768.jpg new file mode 100644 index 0000000..baf62f6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805500_54_7097768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1ac1cba74bdce85bd56a7336429731e92d04c811ce74114ea018c1fe4e40ad +size 131593 diff --git a/datasets/搭电设备/train/images/订单1805506_54_7097822.jpg b/datasets/搭电设备/train/images/订单1805506_54_7097822.jpg new file mode 100644 index 0000000..21a5a3e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805506_54_7097822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1341384fbf72b0452a75cabc1179ca82ceedfb9c1cf1868a3b226754f7c5f370 +size 632828 diff --git a/datasets/搭电设备/train/images/订单1805509_54_7097853.jpg b/datasets/搭电设备/train/images/订单1805509_54_7097853.jpg new file mode 100644 index 0000000..88af571 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805509_54_7097853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ebcc7c38d4e99de22d3e6abaff8cf4282eb4ec5f7efe5a4dda7821d48b7f4a +size 483573 diff --git a/datasets/搭电设备/train/images/订单1805510_54_7098049.jpg b/datasets/搭电设备/train/images/订单1805510_54_7098049.jpg new file mode 100644 index 0000000..09d222a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805510_54_7098049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05138ccc328b7374e10306ca48876bdf5c161097d14537ea2ddf39103d556d31 +size 134313 diff --git a/datasets/搭电设备/train/images/订单1805511_54_7097847.jpg b/datasets/搭电设备/train/images/订单1805511_54_7097847.jpg new file mode 100644 index 0000000..959ed30 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805511_54_7097847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f485d335e7358b87ea1bec8cc0d4cdd19f5cdd0cc93a2b3ba8ec69ca7bd5bc7 +size 115693 diff --git a/datasets/搭电设备/train/images/订单1805512_54_7097839.jpg b/datasets/搭电设备/train/images/订单1805512_54_7097839.jpg new file mode 100644 index 0000000..09c46a5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805512_54_7097839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3ed30efc3e34fdb718b537fe5d9fa6dcea4730bad72a776f9734b72f3875af +size 163145 diff --git a/datasets/搭电设备/train/images/订单1805513_54_7097863.jpg b/datasets/搭电设备/train/images/订单1805513_54_7097863.jpg new file mode 100644 index 0000000..043140b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805513_54_7097863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff64d54a4a0cbb70961923cd9b9ef0a038b7ff139d3f6e88a2d3d2ba66823c2f +size 165697 diff --git a/datasets/搭电设备/train/images/订单1805516_54_7097878.jpg b/datasets/搭电设备/train/images/订单1805516_54_7097878.jpg new file mode 100644 index 0000000..2c4f44d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805516_54_7097878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd16500f3bb0b869be56c29747e29507b84270b664d124204fbd74aa1e82df0 +size 168077 diff --git a/datasets/搭电设备/train/images/订单1805520_54_7097942.jpg b/datasets/搭电设备/train/images/订单1805520_54_7097942.jpg new file mode 100644 index 0000000..e576a8b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805520_54_7097942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3fd36cb42b91ee8e7fdbd92134b48b9faf937591c59871193b8c93daab8794 +size 104290 diff --git a/datasets/搭电设备/train/images/订单1805524_54_7097941.jpg b/datasets/搭电设备/train/images/订单1805524_54_7097941.jpg new file mode 100644 index 0000000..3815f7c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805524_54_7097941.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b294d7451e1f93abab256735dbb3b8ca487aa1ee8917263a07f9d792701c12b9 +size 164882 diff --git a/datasets/搭电设备/train/images/订单1805525_54_7097932.jpg b/datasets/搭电设备/train/images/订单1805525_54_7097932.jpg new file mode 100644 index 0000000..00e923b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805525_54_7097932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41020bfa1e46f7e7ba6e6d8ab4a3765cb5ecaa60d51d0059fe2efc2209ee0ed3 +size 172801 diff --git a/datasets/搭电设备/train/images/订单1805526_54_7097980.jpg b/datasets/搭电设备/train/images/订单1805526_54_7097980.jpg new file mode 100644 index 0000000..328b198 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805526_54_7097980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb9ca6023c00d941b0174eff20fcfe973f2743d80f86f4b723d832401963663 +size 113533 diff --git a/datasets/搭电设备/train/images/订单1805528_54_7097988.jpg b/datasets/搭电设备/train/images/订单1805528_54_7097988.jpg new file mode 100644 index 0000000..222262a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805528_54_7097988.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131f1e2f6107e15adab2cfe71e8ea7cf99ce5075bd72b27b0ed1178b36601517 +size 528685 diff --git a/datasets/搭电设备/train/images/订单1805529_54_7098016.jpg b/datasets/搭电设备/train/images/订单1805529_54_7098016.jpg new file mode 100644 index 0000000..3c6653b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805529_54_7098016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fadde70913d1f9112841cfcf12fbc553782964f6f8e13a97ebd95a816f1a7b +size 132545 diff --git a/datasets/搭电设备/train/images/订单1805530_54_7098037.jpg b/datasets/搭电设备/train/images/订单1805530_54_7098037.jpg new file mode 100644 index 0000000..03bef59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805530_54_7098037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77aea2e40a39b4411612b61e32ce95f60efaf6fbe7409211e893dcdb526d4164 +size 110526 diff --git a/datasets/搭电设备/train/images/订单1805531_54_7098052.jpg b/datasets/搭电设备/train/images/订单1805531_54_7098052.jpg new file mode 100644 index 0000000..6a72a2b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805531_54_7098052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0676e3747280de8ba3eb3639fb98d6afb12a5262182ce416335d4bc7f0f2e9 +size 168056 diff --git a/datasets/搭电设备/train/images/订单1805537_54_7098000.jpg b/datasets/搭电设备/train/images/订单1805537_54_7098000.jpg new file mode 100644 index 0000000..a8e46af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805537_54_7098000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34da824715bdf85d9eaeb26ca0bff803cd5c6f2a1a0d994648e61e508643866e +size 151913 diff --git a/datasets/搭电设备/train/images/订单1805539_54_7098132.jpg b/datasets/搭电设备/train/images/订单1805539_54_7098132.jpg new file mode 100644 index 0000000..3091f54 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805539_54_7098132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc0f7b9a9c3466fa66716110884877a94163e8c66ff39a3732ffd0c84c92f30 +size 546014 diff --git a/datasets/搭电设备/train/images/订单1805540_54_7098100.jpg b/datasets/搭电设备/train/images/订单1805540_54_7098100.jpg new file mode 100644 index 0000000..832c779 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805540_54_7098100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5081fb75fd005a43bd5a5effb438bfbf5b2e1bf68a63f848ff59b5225ed555b +size 496190 diff --git a/datasets/搭电设备/train/images/订单1805542_54_7098146.jpg b/datasets/搭电设备/train/images/订单1805542_54_7098146.jpg new file mode 100644 index 0000000..5917a88 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805542_54_7098146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4e29b7618d6e0fe7ea9180c33526d1d4c1ba61d922586d262a6e1430da7aba +size 568883 diff --git a/datasets/搭电设备/train/images/订单1805543_54_7098128.jpg b/datasets/搭电设备/train/images/订单1805543_54_7098128.jpg new file mode 100644 index 0000000..d3dc870 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805543_54_7098128.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd9f7cb71c4c579f9b9b2b99ee4632b925c0fccdafdacfbe3d28bd1cb4fd543 +size 129495 diff --git a/datasets/搭电设备/train/images/订单1805545_54_7098065.jpg b/datasets/搭电设备/train/images/订单1805545_54_7098065.jpg new file mode 100644 index 0000000..137f42e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805545_54_7098065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1540ddce92f2595a3079aa8c46016f57db14206e8312b924ace99b85e0e334 +size 71317 diff --git a/datasets/搭电设备/train/images/订单1805548_54_7098183.jpg b/datasets/搭电设备/train/images/订单1805548_54_7098183.jpg new file mode 100644 index 0000000..168f644 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805548_54_7098183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca4d27efbce76e23b22c359f5a2705cec7abf15002f1d54801ce205c66a734e +size 190881 diff --git a/datasets/搭电设备/train/images/订单1805552_54_7098218.jpg b/datasets/搭电设备/train/images/订单1805552_54_7098218.jpg new file mode 100644 index 0000000..56ac28f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805552_54_7098218.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862eae8a1f0e6b87c12729ac19af9ed012c6ce459d857e2542f14ef817658a3d +size 361252 diff --git a/datasets/搭电设备/train/images/订单1805554_54_7098214.jpg b/datasets/搭电设备/train/images/订单1805554_54_7098214.jpg new file mode 100644 index 0000000..2456062 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805554_54_7098214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e9fa88dd237a5f7132b87080bead3ed9d12e8f331b13c36645d17bed66cf19 +size 151131 diff --git a/datasets/搭电设备/train/images/订单1805556_54_7098251.jpg b/datasets/搭电设备/train/images/订单1805556_54_7098251.jpg new file mode 100644 index 0000000..b9c1204 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805556_54_7098251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75cf90f928904bbe5163090d9391d8c9f3dcee2136832874dec2ef0d65354200 +size 127940 diff --git a/datasets/搭电设备/train/images/订单1805557_54_7098294.jpg b/datasets/搭电设备/train/images/订单1805557_54_7098294.jpg new file mode 100644 index 0000000..ca4e586 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805557_54_7098294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aac115079db541da3e5c90f0e7b491230cdb393d4304b74f5f4fcfc626b02c5 +size 525655 diff --git a/datasets/搭电设备/train/images/订单1805558_54_7098212.jpg b/datasets/搭电设备/train/images/订单1805558_54_7098212.jpg new file mode 100644 index 0000000..5efcd6c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805558_54_7098212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97cc8dda7612af4516e68aa521cbcb6385c611f34546cf1a6e0cb8e54e8c7de2 +size 345125 diff --git a/datasets/搭电设备/train/images/订单1805559_54_7098304.jpg b/datasets/搭电设备/train/images/订单1805559_54_7098304.jpg new file mode 100644 index 0000000..1b29365 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805559_54_7098304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d8953b501ee178417d9320d1197255ecdeebab641d3664c2e25e0b66045d72 +size 746871 diff --git a/datasets/搭电设备/train/images/订单1805560_54_7098366.jpg b/datasets/搭电设备/train/images/订单1805560_54_7098366.jpg new file mode 100644 index 0000000..c6c60b0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805560_54_7098366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053df88b63c877f77ac378d88429e134e6aabdbdd85d64f7da9544f0456fb847 +size 197637 diff --git a/datasets/搭电设备/train/images/订单1805561_54_7098459.jpg b/datasets/搭电设备/train/images/订单1805561_54_7098459.jpg new file mode 100644 index 0000000..b0a3cac --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805561_54_7098459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:affc5bffb9ce03649f57747f23c5ed7edae503122f3d6469ac9d5c1d11132b2f +size 452567 diff --git a/datasets/搭电设备/train/images/订单1805563_54_7098256.jpg b/datasets/搭电设备/train/images/订单1805563_54_7098256.jpg new file mode 100644 index 0000000..960b7a0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805563_54_7098256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe35171730a0d4e7ca3e1e834a7aa39ea75b06493c90e171a1d62c03c7855e92 +size 152371 diff --git a/datasets/搭电设备/train/images/订单1805564_54_7098342.jpg b/datasets/搭电设备/train/images/订单1805564_54_7098342.jpg new file mode 100644 index 0000000..815a71e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805564_54_7098342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e09bfccea7b27df974b97310d571485fdfcc562a5fa953520104212aec22476 +size 131317 diff --git a/datasets/搭电设备/train/images/订单1805565_54_7098292.jpg b/datasets/搭电设备/train/images/订单1805565_54_7098292.jpg new file mode 100644 index 0000000..44ba485 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805565_54_7098292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920706cd4891ea59a206a8bda42de6c0c51cb6606293452114671285d77d5f13 +size 86492 diff --git a/datasets/搭电设备/train/images/订单1805567_54_7098260.jpg b/datasets/搭电设备/train/images/订单1805567_54_7098260.jpg new file mode 100644 index 0000000..2033dbf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805567_54_7098260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0aa5cc34f306a974a62505c91e5743015eb6df0d28dac9df2c4b1e0e7d7d6a +size 122969 diff --git a/datasets/搭电设备/train/images/订单1805569_54_7098394.jpg b/datasets/搭电设备/train/images/订单1805569_54_7098394.jpg new file mode 100644 index 0000000..387e328 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805569_54_7098394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de3f04e046c1728d0e80014298d5c61863cfa0a4a3cdcc04a8c54787102376a +size 125245 diff --git a/datasets/搭电设备/train/images/订单1805570_54_7098374.jpg b/datasets/搭电设备/train/images/订单1805570_54_7098374.jpg new file mode 100644 index 0000000..27cb432 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805570_54_7098374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78417d5e650dd387f7e5b4ab379c34a6055165c81c9034ece6d46ee1f113a18a +size 118325 diff --git a/datasets/搭电设备/train/images/订单1805571_54_7099266.jpg b/datasets/搭电设备/train/images/订单1805571_54_7099266.jpg new file mode 100644 index 0000000..c55224e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805571_54_7099266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1dac218e8e99d95a1f36113fd87672da65c2a0044fcd0439daf1278ae1c5015 +size 193081 diff --git a/datasets/搭电设备/train/images/订单1805572_54_7098416.jpg b/datasets/搭电设备/train/images/订单1805572_54_7098416.jpg new file mode 100644 index 0000000..f9a48c8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805572_54_7098416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312915b6df3db26f76c044353c0ba9c54d5786782f2e66a18ad12302b51c32a1 +size 463284 diff --git a/datasets/搭电设备/train/images/订单1805573_54_7098337.jpg b/datasets/搭电设备/train/images/订单1805573_54_7098337.jpg new file mode 100644 index 0000000..157c1d1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805573_54_7098337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25969291fb17fd9b67c77b2ad3fa797aa14929aef152de86e1ff6a8e95bd3f10 +size 94468 diff --git a/datasets/搭电设备/train/images/订单1805575_54_7098419.jpg b/datasets/搭电设备/train/images/订单1805575_54_7098419.jpg new file mode 100644 index 0000000..9576445 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805575_54_7098419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578e496c34a29175b664179f0507cffe3f038bf779d222711e38b628e27f6978 +size 198039 diff --git a/datasets/搭电设备/train/images/订单1805576_54_7098517.jpg b/datasets/搭电设备/train/images/订单1805576_54_7098517.jpg new file mode 100644 index 0000000..994afaa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805576_54_7098517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce96d5dd2bc2556949ee37b970317f1f9e4ac8bb518d5e765500266dca5cf63 +size 762040 diff --git a/datasets/搭电设备/train/images/订单1805578_54_7098453.jpg b/datasets/搭电设备/train/images/订单1805578_54_7098453.jpg new file mode 100644 index 0000000..6512991 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805578_54_7098453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9228a82955b0dc0a8260c5cab11f7bf0b161a75c7ae4363ca486584ded8fcef2 +size 191189 diff --git a/datasets/搭电设备/train/images/订单1805579_54_7098443.jpg b/datasets/搭电设备/train/images/订单1805579_54_7098443.jpg new file mode 100644 index 0000000..e12829e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805579_54_7098443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e89952f853f529ac6735b1282f3e33684734147e37c14d3794c6e8d516137e4 +size 613866 diff --git a/datasets/搭电设备/train/images/订单1805580_54_7098409.jpg b/datasets/搭电设备/train/images/订单1805580_54_7098409.jpg new file mode 100644 index 0000000..da23a02 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805580_54_7098409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243a358f3fc3fb68b2b1a9f4cad2d45a516182423ec53c285decae67365ff488 +size 114987 diff --git a/datasets/搭电设备/train/images/订单1805581_54_7098439.jpg b/datasets/搭电设备/train/images/订单1805581_54_7098439.jpg new file mode 100644 index 0000000..c9896dc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805581_54_7098439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20695dba7ceeae68b5caeff8c26d9d5a220fb8c6f7c5d6da946fa3579994e43a +size 242676 diff --git a/datasets/搭电设备/train/images/订单1805583_54_7098572.jpg b/datasets/搭电设备/train/images/订单1805583_54_7098572.jpg new file mode 100644 index 0000000..8c3400b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805583_54_7098572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10029f5a94316726e47b296d3a7bd60d30db00f830c13aa21e2b231f252ffac +size 115449 diff --git a/datasets/搭电设备/train/images/订单1805585_54_7098636.jpg b/datasets/搭电设备/train/images/订单1805585_54_7098636.jpg new file mode 100644 index 0000000..8ff8ae0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805585_54_7098636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f659cdef61075e237fb099e2d629fd113448b3796d702869d35fb2ef60d463a1 +size 567997 diff --git a/datasets/搭电设备/train/images/订单1805587_54_7098681.jpg b/datasets/搭电设备/train/images/订单1805587_54_7098681.jpg new file mode 100644 index 0000000..5d941ec --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805587_54_7098681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ca367c374de6611862bee0c0f1f1819f63978b0d97341864f0d8a1ccc4f22d +size 141113 diff --git a/datasets/搭电设备/train/images/订单1805592_54_7098706.jpg b/datasets/搭电设备/train/images/订单1805592_54_7098706.jpg new file mode 100644 index 0000000..290a023 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805592_54_7098706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800d4b0a9da5648c06ca32dd192be4d14c49ddf3c252e99913b343bae31b217b +size 217235 diff --git a/datasets/搭电设备/train/images/订单1805593_54_7098549.jpg b/datasets/搭电设备/train/images/订单1805593_54_7098549.jpg new file mode 100644 index 0000000..9f72d4e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805593_54_7098549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99c764e16d754dd78ef074ba811984e11b98850b58d34f3c101ae97106d2c04 +size 122744 diff --git a/datasets/搭电设备/train/images/订单1805596_54_7098512.jpg b/datasets/搭电设备/train/images/订单1805596_54_7098512.jpg new file mode 100644 index 0000000..9dc0001 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805596_54_7098512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b6513abc9ff8dfe23b8eddb76099adaf652c63056f71d67d59863c65c00884 +size 132210 diff --git a/datasets/搭电设备/train/images/订单1805597_54_7098532.jpg b/datasets/搭电设备/train/images/订单1805597_54_7098532.jpg new file mode 100644 index 0000000..25d9cba --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805597_54_7098532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdaa2ef77dc7b15e3fc65d22dbbf58444ae36d9b66e413ea990b9b5a1842dae +size 172575 diff --git a/datasets/搭电设备/train/images/订单1805600_54_7098597.jpg b/datasets/搭电设备/train/images/订单1805600_54_7098597.jpg new file mode 100644 index 0000000..e795065 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805600_54_7098597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee682ca31d023b09a2f9213b66c286416a42db05b5ebf51f26fc041e26d70038 +size 727235 diff --git a/datasets/搭电设备/train/images/订单1805602_54_7098819.jpg b/datasets/搭电设备/train/images/订单1805602_54_7098819.jpg new file mode 100644 index 0000000..151a2ab --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805602_54_7098819.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce9dc5ea18f54d669a2603e6b135b40ff67f29c3dd76d088bc626be299325d1 +size 494416 diff --git a/datasets/搭电设备/train/images/订单1805605_54_7098844.jpg b/datasets/搭电设备/train/images/订单1805605_54_7098844.jpg new file mode 100644 index 0000000..9f19ef1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805605_54_7098844.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c87ba63e694a97c867bcfdc113072fafcf62d4cc0d22172febbcf85750bccb +size 256113 diff --git a/datasets/搭电设备/train/images/订单1805608_54_7098662.jpg b/datasets/搭电设备/train/images/订单1805608_54_7098662.jpg new file mode 100644 index 0000000..45eb00a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805608_54_7098662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1c45156b3fd6aeff9aec1812f47b00ebbe01f1a72c126ab11ba2ca13b27b8f +size 130179 diff --git a/datasets/搭电设备/train/images/订单1805609_54_7098761.jpg b/datasets/搭电设备/train/images/订单1805609_54_7098761.jpg new file mode 100644 index 0000000..d534b1b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805609_54_7098761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d70dc0c1afd87d8dfcdcad56f5390a692081dbca2ea05dd5fc73675454ceb30 +size 603014 diff --git a/datasets/搭电设备/train/images/订单1805615_54_7098766.jpg b/datasets/搭电设备/train/images/订单1805615_54_7098766.jpg new file mode 100644 index 0000000..74a7ec0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805615_54_7098766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e13b53f0a86336136a1057f37eed42ef92d629d1cee11745bcc59a34c0c3c58 +size 95061 diff --git a/datasets/搭电设备/train/images/订单1805617_54_7098798.jpg b/datasets/搭电设备/train/images/订单1805617_54_7098798.jpg new file mode 100644 index 0000000..4137dcf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805617_54_7098798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a167cb0d3a920f2b59141f3daa57ad945c1286378e0fe766174e794ad100a0 +size 242555 diff --git a/datasets/搭电设备/train/images/订单1805620_54_7098847.jpg b/datasets/搭电设备/train/images/订单1805620_54_7098847.jpg new file mode 100644 index 0000000..22a5e3c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805620_54_7098847.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fc4b4df7b92e6aded01c3fd70b723aa0ca6219180ac375445a12d92694d0d5 +size 486901 diff --git a/datasets/搭电设备/train/images/订单1805621_54_7098907.jpg b/datasets/搭电设备/train/images/订单1805621_54_7098907.jpg new file mode 100644 index 0000000..808b0e6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805621_54_7098907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106f135b5f96bd9997e18473a4dfb8d911fd49c24bf47fbbe79a2ab7f6943fb5 +size 390669 diff --git a/datasets/搭电设备/train/images/订单1805623_54_7098875.jpg b/datasets/搭电设备/train/images/订单1805623_54_7098875.jpg new file mode 100644 index 0000000..6917e24 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805623_54_7098875.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d0083e1a6f8403a444eb9a48ac2f31dda7ec47a450b77e8c1b3b85093929ee +size 159786 diff --git a/datasets/搭电设备/train/images/订单1805624_54_7098854.jpg b/datasets/搭电设备/train/images/订单1805624_54_7098854.jpg new file mode 100644 index 0000000..c8ae466 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805624_54_7098854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3f41d166de87213a6d1dd50f2f57eec92d592081ed5e091988e460ea2488b4 +size 530723 diff --git a/datasets/搭电设备/train/images/订单1805626_54_7098928.jpg b/datasets/搭电设备/train/images/订单1805626_54_7098928.jpg new file mode 100644 index 0000000..26da6ce --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805626_54_7098928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1064af2093bb7800e29a52dc17f643bd7776e5e07196e25415a14d5b9cf0ef0b +size 124054 diff --git a/datasets/搭电设备/train/images/订单1805627_54_7099450.jpg b/datasets/搭电设备/train/images/订单1805627_54_7099450.jpg new file mode 100644 index 0000000..e45b363 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805627_54_7099450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2b8e9f4a7c11efbfd1b09ba7b6430fd818f39274e78612376084d6a2f9de11 +size 170739 diff --git a/datasets/搭电设备/train/images/订单1805628_54_7098927.jpg b/datasets/搭电设备/train/images/订单1805628_54_7098927.jpg new file mode 100644 index 0000000..29b8b51 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805628_54_7098927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7322f73975fe02942a26b9305ab378db0812f3c339e368a35fba4c1a41b9253 +size 143524 diff --git a/datasets/搭电设备/train/images/订单1805629_54_7098929.jpg b/datasets/搭电设备/train/images/订单1805629_54_7098929.jpg new file mode 100644 index 0000000..5fbe2b7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805629_54_7098929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831841c9ac2eeb376c862f0c161ef47a9d28296b858fa8e09e21d444eefdba1f +size 445726 diff --git a/datasets/搭电设备/train/images/订单1805632_54_7098950.jpg b/datasets/搭电设备/train/images/订单1805632_54_7098950.jpg new file mode 100644 index 0000000..dee9518 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805632_54_7098950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9785b3c562f23821a1fadca68c2613dddbe675862d373b5ae0eed88cbcf41f +size 636708 diff --git a/datasets/搭电设备/train/images/订单1805637_54_7099010.jpg b/datasets/搭电设备/train/images/订单1805637_54_7099010.jpg new file mode 100644 index 0000000..14d03a7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805637_54_7099010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506e91fa47cb73e93e106c81906403b507817d20945b30d9a8dde66db9afcee7 +size 137410 diff --git a/datasets/搭电设备/train/images/订单1805638_54_7098947.jpg b/datasets/搭电设备/train/images/订单1805638_54_7098947.jpg new file mode 100644 index 0000000..449521c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805638_54_7098947.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c713a860be78ff4f770ee7dfa7a6a6861cf948e49ff77ff41a7b48a561d53061 +size 195629 diff --git a/datasets/搭电设备/train/images/订单1805639_54_7098978.jpg b/datasets/搭电设备/train/images/订单1805639_54_7098978.jpg new file mode 100644 index 0000000..53b2510 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805639_54_7098978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf983859d0e26531278a1513b00fb52b2212d4784a39676636f45655e437624 +size 82925 diff --git a/datasets/搭电设备/train/images/订单1805640_54_7098967.jpg b/datasets/搭电设备/train/images/订单1805640_54_7098967.jpg new file mode 100644 index 0000000..39a3b71 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805640_54_7098967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f21c01c3728ed12d86137f974e388ad8e705bb0f82ee8fded3cd43c011bbf6 +size 134580 diff --git a/datasets/搭电设备/train/images/订单1805641_54_7099021.jpg b/datasets/搭电设备/train/images/订单1805641_54_7099021.jpg new file mode 100644 index 0000000..a3a7a67 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805641_54_7099021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5362d0c20f7b234cc8e4120fb65aaa2602cc325a7a1197e95d29688e16fe4ee3 +size 354748 diff --git a/datasets/搭电设备/train/images/订单1805645_54_7099029.jpg b/datasets/搭电设备/train/images/订单1805645_54_7099029.jpg new file mode 100644 index 0000000..32b7a05 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805645_54_7099029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bc009c23f9b8b5f22a02f5b292bfcf92d1af8bc5daa929e78cb61af8dd4221 +size 126050 diff --git a/datasets/搭电设备/train/images/订单1805646_54_7099071.jpg b/datasets/搭电设备/train/images/订单1805646_54_7099071.jpg new file mode 100644 index 0000000..1a82177 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805646_54_7099071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03a972b7540fdb580de207a49531ee9fdc314c6eab127b76c60b649e54b6ce87 +size 160668 diff --git a/datasets/搭电设备/train/images/订单1805650_54_7099160.jpg b/datasets/搭电设备/train/images/订单1805650_54_7099160.jpg new file mode 100644 index 0000000..fd8a876 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805650_54_7099160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cf87e0b1a5c2eb82816b1d3eddb115763748b7d9007a2e5f91a1a5646b1d0a +size 79226 diff --git a/datasets/搭电设备/train/images/订单1805651_54_7099077.jpg b/datasets/搭电设备/train/images/订单1805651_54_7099077.jpg new file mode 100644 index 0000000..1044b36 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805651_54_7099077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb9eac8b749e22ba11ad6df3187c557b63e1d68f6f9ec8260b298be399a8f3b +size 677144 diff --git a/datasets/搭电设备/train/images/订单1805655_54_7099188.jpg b/datasets/搭电设备/train/images/订单1805655_54_7099188.jpg new file mode 100644 index 0000000..e82ad0d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805655_54_7099188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb69173aee910b26bcc1e1b01599d0c53dd1d98a0771f82c69d25324dc94925 +size 129493 diff --git a/datasets/搭电设备/train/images/订单1805657_54_7099120.jpg b/datasets/搭电设备/train/images/订单1805657_54_7099120.jpg new file mode 100644 index 0000000..2ea7383 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805657_54_7099120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae539aa1ea74d6e8a6513d098423bd963622bd54e13ada798ab97270010e9c1b +size 220780 diff --git a/datasets/搭电设备/train/images/订单1805658_54_7099577.jpg b/datasets/搭电设备/train/images/订单1805658_54_7099577.jpg new file mode 100644 index 0000000..fd94207 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805658_54_7099577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c1936cf8eb731f46993035e3062630f1c4ec2182bee9cf93c75bc5b35d84e2 +size 1236010 diff --git a/datasets/搭电设备/train/images/订单1805659_54_7099149.jpg b/datasets/搭电设备/train/images/订单1805659_54_7099149.jpg new file mode 100644 index 0000000..b2aa6f1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805659_54_7099149.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd07294bd87e49bfa9404d8f6b626dd91271b0955c4e6abe804ecd0d5b26c5c +size 428520 diff --git a/datasets/搭电设备/train/images/订单1805661_54_7099347.jpg b/datasets/搭电设备/train/images/订单1805661_54_7099347.jpg new file mode 100644 index 0000000..af55fb5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805661_54_7099347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b350b267cf4034adf78639586cfcde05b9a2328c2ee1912300b51775aab14bed +size 261162 diff --git a/datasets/搭电设备/train/images/订单1805662_54_7099243.jpg b/datasets/搭电设备/train/images/订单1805662_54_7099243.jpg new file mode 100644 index 0000000..46850cc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805662_54_7099243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc4abd0a220167d0a3f580268c90597e1e687188acfd2d0029bbd23c06cce5b +size 134194 diff --git a/datasets/搭电设备/train/images/订单1805664_54_7099210.jpg b/datasets/搭电设备/train/images/订单1805664_54_7099210.jpg new file mode 100644 index 0000000..7e40e8f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805664_54_7099210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a922c86414f926b5b99d3cbc080abce95d06f8dab5cc46b546a75b8d26efed2e +size 260637 diff --git a/datasets/搭电设备/train/images/订单1805665_54_7099253.jpg b/datasets/搭电设备/train/images/订单1805665_54_7099253.jpg new file mode 100644 index 0000000..42e99af --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805665_54_7099253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f9e95041af6fd6a61dc5471e61b5c53bffe26cd2d11434a0ce19133636beac +size 134267 diff --git a/datasets/搭电设备/train/images/订单1805667_54_7099356.jpg b/datasets/搭电设备/train/images/订单1805667_54_7099356.jpg new file mode 100644 index 0000000..844d8ed --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805667_54_7099356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa8a4ea591955be9645efc56b88b6768f9ef1b56ed9cbd96fe33e5e7527ea96 +size 273290 diff --git a/datasets/搭电设备/train/images/订单1805672_54_7099272.jpg b/datasets/搭电设备/train/images/订单1805672_54_7099272.jpg new file mode 100644 index 0000000..4f90b6b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805672_54_7099272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04ac14c884b5ff2cf83a63a5e5ec9df929c33f6a4000169238f7b09afc1420c +size 151274 diff --git a/datasets/搭电设备/train/images/订单1805677_54_7099324.jpg b/datasets/搭电设备/train/images/订单1805677_54_7099324.jpg new file mode 100644 index 0000000..da02cfb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805677_54_7099324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9278e0d52f929c6337e2b2f947ef4b0ff3365825e9d27647a7e42d4a19239d48 +size 138397 diff --git a/datasets/搭电设备/train/images/订单1805680_54_7099397.jpg b/datasets/搭电设备/train/images/订单1805680_54_7099397.jpg new file mode 100644 index 0000000..c2bc4e7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805680_54_7099397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c52ad9508a2d221d9b9b54d910f5675a5d5abd39dabda7738f48ecee1fb535 +size 108617 diff --git a/datasets/搭电设备/train/images/订单1805681_54_7099394.jpg b/datasets/搭电设备/train/images/订单1805681_54_7099394.jpg new file mode 100644 index 0000000..c6cac85 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805681_54_7099394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4902bb4e6f2c161d3040b3d8afd0f57245cc092e79a25e878d21de204617978e +size 405081 diff --git a/datasets/搭电设备/train/images/订单1805683_54_7099311.jpg b/datasets/搭电设备/train/images/订单1805683_54_7099311.jpg new file mode 100644 index 0000000..270a4d4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805683_54_7099311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2f4beb9ad910e24445ff26ae418b268dc6cc135d9f03f8858e3e415c75fe81 +size 135594 diff --git a/datasets/搭电设备/train/images/订单1805684_54_7099424.jpg b/datasets/搭电设备/train/images/订单1805684_54_7099424.jpg new file mode 100644 index 0000000..00069f8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805684_54_7099424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0fbc548a75f6872e20107dbfefec08bd2c781a3f89fea2c174d8b57c62dce3 +size 111606 diff --git a/datasets/搭电设备/train/images/订单1805688_54_7099436.jpg b/datasets/搭电设备/train/images/订单1805688_54_7099436.jpg new file mode 100644 index 0000000..bbf4501 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805688_54_7099436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709c01367a0d8ab1674efc53c11ebb89ba38d6d073be4669589ab1829e420999 +size 152593 diff --git a/datasets/搭电设备/train/images/订单1805689_54_7099466.jpg b/datasets/搭电设备/train/images/订单1805689_54_7099466.jpg new file mode 100644 index 0000000..6f3e6f7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805689_54_7099466.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c8568905c67be2a3bd8f4e4020f6c0b3f2b6f547bc3e3d2a828ddc8093f5b4 +size 594055 diff --git a/datasets/搭电设备/train/images/订单1805690_54_7099560.jpg b/datasets/搭电设备/train/images/订单1805690_54_7099560.jpg new file mode 100644 index 0000000..5fc86c2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805690_54_7099560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741d95be0f5df4aec7c9e862969b03c054ed860f1a06f13207e69275ee4bf3ce +size 174159 diff --git a/datasets/搭电设备/train/images/订单1805691_54_7099547.jpg b/datasets/搭电设备/train/images/订单1805691_54_7099547.jpg new file mode 100644 index 0000000..a4f485d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805691_54_7099547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea118e886fa168791eb71f1a7a6b4444cd9c83eafee2aa683a732fbb039139ee +size 505079 diff --git a/datasets/搭电设备/train/images/订单1805692_54_7099448.jpg b/datasets/搭电设备/train/images/订单1805692_54_7099448.jpg new file mode 100644 index 0000000..5bbc524 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805692_54_7099448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba99715fba950102c48a765033422e8935684fe298d2781a262204e0af70e91b +size 344534 diff --git a/datasets/搭电设备/train/images/订单1805694_54_7099552.jpg b/datasets/搭电设备/train/images/订单1805694_54_7099552.jpg new file mode 100644 index 0000000..e8ea890 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805694_54_7099552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b22f9cab245f77d661c28f6955690ce0db38ef5b49fd3dc3582c354cdb1f5ed +size 365302 diff --git a/datasets/搭电设备/train/images/订单1805696_54_7099531.jpg b/datasets/搭电设备/train/images/订单1805696_54_7099531.jpg new file mode 100644 index 0000000..12583b5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805696_54_7099531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699581500a012c48109fcadf36dcb25f14f5306f855aad45b16358e312d51063 +size 173289 diff --git a/datasets/搭电设备/train/images/订单1805697_54_7101226.jpg b/datasets/搭电设备/train/images/订单1805697_54_7101226.jpg new file mode 100644 index 0000000..ae911bc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805697_54_7101226.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d65315bb2c29481e083ddce8a1ccc4f01a8b26544fd4d3affb65c897d8c7027 +size 105802 diff --git a/datasets/搭电设备/train/images/订单1805698_54_7099635.jpg b/datasets/搭电设备/train/images/订单1805698_54_7099635.jpg new file mode 100644 index 0000000..631440e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805698_54_7099635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc195e1940e33070d1e6987b57aca250b5e8b46c1cfe266a77541534a1f0f689 +size 116879 diff --git a/datasets/搭电设备/train/images/订单1805699_54_7099596.jpg b/datasets/搭电设备/train/images/订单1805699_54_7099596.jpg new file mode 100644 index 0000000..dcecc9e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805699_54_7099596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f472af4f8e0358e7fbac77c0eec2c2aa145af2b2b25180edd6941fd515d47f81 +size 109151 diff --git a/datasets/搭电设备/train/images/订单1805703_54_7099685.jpg b/datasets/搭电设备/train/images/订单1805703_54_7099685.jpg new file mode 100644 index 0000000..1736ebb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805703_54_7099685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a010745a70e9c0a436e5da61629f37931e3fb2a786067a3a8f4080809868b4 +size 130503 diff --git a/datasets/搭电设备/train/images/订单1805704_54_7099636.jpg b/datasets/搭电设备/train/images/订单1805704_54_7099636.jpg new file mode 100644 index 0000000..41c8096 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805704_54_7099636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6441e894ce71ab6a185608f354043acf5c6f1be18ece5ba2fc40dcd9a6ff7d1a +size 193820 diff --git a/datasets/搭电设备/train/images/订单1805706_54_7099655.jpg b/datasets/搭电设备/train/images/订单1805706_54_7099655.jpg new file mode 100644 index 0000000..b5958c2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805706_54_7099655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c50a121c198cbb22b2729a03e662c2eb2ef7bcdbaada8e9fdf7f847767d0c721 +size 124467 diff --git a/datasets/搭电设备/train/images/订单1805708_54_7099781.jpg b/datasets/搭电设备/train/images/订单1805708_54_7099781.jpg new file mode 100644 index 0000000..3c1294e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805708_54_7099781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b444a4a280e28a34c1991d6d538848db05e432b7f311da862a147f9025b4679 +size 113955 diff --git a/datasets/搭电设备/train/images/订单1805709_54_7099776.jpg b/datasets/搭电设备/train/images/订单1805709_54_7099776.jpg new file mode 100644 index 0000000..1fef57a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805709_54_7099776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245c0443a0d89b3f6842bdecf3af0c34025ecc2e2eb0eb0dce441813b5e4abbf +size 143846 diff --git a/datasets/搭电设备/train/images/订单1805710_54_7099682.jpg b/datasets/搭电设备/train/images/订单1805710_54_7099682.jpg new file mode 100644 index 0000000..9f2f16b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805710_54_7099682.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b2c0ffcd47c32e775e3868ef5d02e80b8d15a0f2170f27a8de7f6b08f887c5 +size 159243 diff --git a/datasets/搭电设备/train/images/订单1805711_54_7099702.jpg b/datasets/搭电设备/train/images/订单1805711_54_7099702.jpg new file mode 100644 index 0000000..55cc6b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805711_54_7099702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8a40c0ff55eeca0b946078772b6bebd3734ada893760f88ee40e5b788ddcf4 +size 139559 diff --git a/datasets/搭电设备/train/images/订单1805715_54_7099694.jpg b/datasets/搭电设备/train/images/订单1805715_54_7099694.jpg new file mode 100644 index 0000000..78367fc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805715_54_7099694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cb00ecb9348facf394acd5b0d990af796789b95b8c488bd0a08d0f3513719c +size 133658 diff --git a/datasets/搭电设备/train/images/订单1805716_54_7099733.jpg b/datasets/搭电设备/train/images/订单1805716_54_7099733.jpg new file mode 100644 index 0000000..0bd4e0f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805716_54_7099733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2558a87dd74f727f30e4406c83d73f692e008a5627ac507f63a1e63e3da8290 +size 136360 diff --git a/datasets/搭电设备/train/images/订单1805718_54_7099746.jpg b/datasets/搭电设备/train/images/订单1805718_54_7099746.jpg new file mode 100644 index 0000000..054cf7c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805718_54_7099746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95399e76cb3529cbd1e06b889431edc9f7a4621e3dcdda169061ae0f3576d716 +size 172572 diff --git a/datasets/搭电设备/train/images/订单1805720_54_7099773.jpg b/datasets/搭电设备/train/images/订单1805720_54_7099773.jpg new file mode 100644 index 0000000..c728514 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805720_54_7099773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478c94fa119902e550f6ad502acdc5a9f346f0180a7ea0507637c69057bc3550 +size 163564 diff --git a/datasets/搭电设备/train/images/订单1805723_54_7099786.jpg b/datasets/搭电设备/train/images/订单1805723_54_7099786.jpg new file mode 100644 index 0000000..2b47f10 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805723_54_7099786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0608c747d543d81ab1485ecedac1316529b70f5536c1db8b095d3f23a56618 +size 102277 diff --git a/datasets/搭电设备/train/images/订单1805724_54_7099834.jpg b/datasets/搭电设备/train/images/订单1805724_54_7099834.jpg new file mode 100644 index 0000000..1a0dc1a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805724_54_7099834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257aabfe413c277e0b67903f36e5b5a9bd4767479b1f5c7008f707c740ef9ef7 +size 444486 diff --git a/datasets/搭电设备/train/images/订单1805726_54_7099835.jpg b/datasets/搭电设备/train/images/订单1805726_54_7099835.jpg new file mode 100644 index 0000000..85e3799 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805726_54_7099835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2d2de9aca77fa7135e74801a76cc21f6635fbd3d2f58107ebdbbf124dce8fc +size 116725 diff --git a/datasets/搭电设备/train/images/订单1805727_54_7099854.jpg b/datasets/搭电设备/train/images/订单1805727_54_7099854.jpg new file mode 100644 index 0000000..be686cc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805727_54_7099854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06829b4ced9b84f3548bf873fe3f3ff84c731b1cd2db7facbe394fd78e5a553 +size 86699 diff --git a/datasets/搭电设备/train/images/订单1805729_54_7099851.jpg b/datasets/搭电设备/train/images/订单1805729_54_7099851.jpg new file mode 100644 index 0000000..0fa9c8c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805729_54_7099851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea1a31b5dad9078b230c75ea9b9eac3805fc24af7dab5da24c380af0ca9b994 +size 242226 diff --git a/datasets/搭电设备/train/images/订单1805731_54_7100008.jpg b/datasets/搭电设备/train/images/订单1805731_54_7100008.jpg new file mode 100644 index 0000000..661f7a4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805731_54_7100008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b160ab05b02d94dda3a0cb8ad1f5b02f195452de6e1fa97b010a5cd7baadec61 +size 140530 diff --git a/datasets/搭电设备/train/images/订单1805735_54_7099899.jpg b/datasets/搭电设备/train/images/订单1805735_54_7099899.jpg new file mode 100644 index 0000000..4b297e4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805735_54_7099899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f362ffc888679ea9b793269fd329d42a36b03097c174731aca0b381f8b34325 +size 521119 diff --git a/datasets/搭电设备/train/images/订单1805736_54_7099975.jpg b/datasets/搭电设备/train/images/订单1805736_54_7099975.jpg new file mode 100644 index 0000000..bdca69b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805736_54_7099975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a25b8467b6c59a7b953c3f22774e9d5a23d7c106752787870211606a29a23d1 +size 109540 diff --git a/datasets/搭电设备/train/images/订单1805737_54_7101319.jpg b/datasets/搭电设备/train/images/订单1805737_54_7101319.jpg new file mode 100644 index 0000000..16382ef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805737_54_7101319.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0afdb8c28ad2080f85c15e76c059a8d9bfc1660a87f71995bf63ce9787a4d5f +size 89237 diff --git a/datasets/搭电设备/train/images/订单1805739_54_7099953.jpg b/datasets/搭电设备/train/images/订单1805739_54_7099953.jpg new file mode 100644 index 0000000..9b319ad --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805739_54_7099953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e93b37ee61ae762ee5ee1840c45fdaac534e2fc195bfa6e7142425a9e951d3 +size 387112 diff --git a/datasets/搭电设备/train/images/订单1805740_54_7099927.jpg b/datasets/搭电设备/train/images/订单1805740_54_7099927.jpg new file mode 100644 index 0000000..64aa215 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805740_54_7099927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c847e312829b64972fc4bcc9400f30506bf826374496241f621edb2d1ce65ea3 +size 370484 diff --git a/datasets/搭电设备/train/images/订单1805742_54_7099981.jpg b/datasets/搭电设备/train/images/订单1805742_54_7099981.jpg new file mode 100644 index 0000000..5c376f6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805742_54_7099981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cc842177d2ee8d33493c9eb731a99cc3467fa21bc84db07302bfa0ca6a159e +size 468331 diff --git a/datasets/搭电设备/train/images/订单1805746_54_7100019.jpg b/datasets/搭电设备/train/images/订单1805746_54_7100019.jpg new file mode 100644 index 0000000..9959cf9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805746_54_7100019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e852aaa9ec216565c783c855f87eac78193102842fdd910ac906eb207643cf17 +size 76333 diff --git a/datasets/搭电设备/train/images/订单1805747_54_7100052.jpg b/datasets/搭电设备/train/images/订单1805747_54_7100052.jpg new file mode 100644 index 0000000..ed35f59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805747_54_7100052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2e84e5b95796492152ed3228f3722109a9c6231660dccc48b013ce97e328b8 +size 625956 diff --git a/datasets/搭电设备/train/images/订单1805748_54_7100088.jpg b/datasets/搭电设备/train/images/订单1805748_54_7100088.jpg new file mode 100644 index 0000000..ed5aef6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805748_54_7100088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331edd2f8d52bd9504e80100d0926660800fc04619ec52f3d758584df8ec3e4d +size 142113 diff --git a/datasets/搭电设备/train/images/订单1805751_54_7100272.jpg b/datasets/搭电设备/train/images/订单1805751_54_7100272.jpg new file mode 100644 index 0000000..b525fe4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805751_54_7100272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c20a6240ca41b24839a6b2f7557fb19f68e70f65af4fdd5125099371c46769f +size 314641 diff --git a/datasets/搭电设备/train/images/订单1805752_54_7100227.jpg b/datasets/搭电设备/train/images/订单1805752_54_7100227.jpg new file mode 100644 index 0000000..cb8913e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805752_54_7100227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d813683c81fa8cff704feadaaa0370c8547f99e0ea378714875e7bbd07d105 +size 96190 diff --git a/datasets/搭电设备/train/images/订单1805753_54_7100047.jpg b/datasets/搭电设备/train/images/订单1805753_54_7100047.jpg new file mode 100644 index 0000000..0efbe84 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805753_54_7100047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:181e3c02c86e573e3af83f27a457798e85b8966287d605c3a89899ba76fd70fa +size 113401 diff --git a/datasets/搭电设备/train/images/订单1805756_54_7100137.jpg b/datasets/搭电设备/train/images/订单1805756_54_7100137.jpg new file mode 100644 index 0000000..0387e71 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805756_54_7100137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4f90d8a998fa0848bb283517811cb13e9119012ac9e24f2c95cf0e3c32028a +size 331912 diff --git a/datasets/搭电设备/train/images/订单1805763_54_7100292.jpg b/datasets/搭电设备/train/images/订单1805763_54_7100292.jpg new file mode 100644 index 0000000..27b5737 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805763_54_7100292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973b2b96e15a5ed9a69892eee2477abd234543eb1433b88ff6c18282d89bdc8c +size 466446 diff --git a/datasets/搭电设备/train/images/订单1805764_54_7100178.jpg b/datasets/搭电设备/train/images/订单1805764_54_7100178.jpg new file mode 100644 index 0000000..3a1f752 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805764_54_7100178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f04d3951471d67c202194543181c8360f9ced93bb1d8e7a29c35a0004dd25fa +size 103795 diff --git a/datasets/搭电设备/train/images/订单1805765_54_7100271.jpg b/datasets/搭电设备/train/images/订单1805765_54_7100271.jpg new file mode 100644 index 0000000..008e794 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805765_54_7100271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98d09a5e4660e91ebe49bba6b9a6caa8234e13541f2d8072cd406a52bb2509c +size 138304 diff --git a/datasets/搭电设备/train/images/订单1805766_54_7100202.jpg b/datasets/搭电设备/train/images/订单1805766_54_7100202.jpg new file mode 100644 index 0000000..719dc44 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805766_54_7100202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7cc74b45f2aacdaa0c138408e6eab0493fa1a120060730556aa0ce208a92383 +size 151202 diff --git a/datasets/搭电设备/train/images/订单1805767_54_7100307.jpg b/datasets/搭电设备/train/images/订单1805767_54_7100307.jpg new file mode 100644 index 0000000..2bbda27 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805767_54_7100307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b616435f9b9f750125a99282b879f99f7f99fb93f86db96e7c495caaaca37b84 +size 155958 diff --git a/datasets/搭电设备/train/images/订单1805769_54_7100213.jpg b/datasets/搭电设备/train/images/订单1805769_54_7100213.jpg new file mode 100644 index 0000000..1d27446 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805769_54_7100213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4d0ffca846a35aae41630a50d46ded4b90c905fef809a5e399617218f7d7e8 +size 236252 diff --git a/datasets/搭电设备/train/images/订单1805770_54_7100240.jpg b/datasets/搭电设备/train/images/订单1805770_54_7100240.jpg new file mode 100644 index 0000000..da31810 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805770_54_7100240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5083e23a26eda464a28b4f2ef52d8daec7bcacdc9c41fa94ed4d8014dd6f3c0c +size 149580 diff --git a/datasets/搭电设备/train/images/订单1805771_54_7100321.jpg b/datasets/搭电设备/train/images/订单1805771_54_7100321.jpg new file mode 100644 index 0000000..b99122c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805771_54_7100321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38c442c6ca10f5932aa14627e9fda2da31712a20a3bdfd32eca36e9705585c24 +size 133602 diff --git a/datasets/搭电设备/train/images/订单1805773_54_7100258.jpg b/datasets/搭电设备/train/images/订单1805773_54_7100258.jpg new file mode 100644 index 0000000..6dc58c0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805773_54_7100258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c527e57f28531f6df29591f5f40d5441a77c3a73c7507dc5df370e7374fad79e +size 128147 diff --git a/datasets/搭电设备/train/images/订单1805775_54_7100315.jpg b/datasets/搭电设备/train/images/订单1805775_54_7100315.jpg new file mode 100644 index 0000000..cca8d3c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805775_54_7100315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cd98d83b1d3c19f35009900c26d03ac338633310479806919b2436fdc7586f +size 121749 diff --git a/datasets/搭电设备/train/images/订单1805779_54_7100337.jpg b/datasets/搭电设备/train/images/订单1805779_54_7100337.jpg new file mode 100644 index 0000000..b088e4e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805779_54_7100337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92302fe2338efdcc2e4298aae90357c9441d21d013e92043f3c0926c199b1ea0 +size 154202 diff --git a/datasets/搭电设备/train/images/订单1805780_54_7100375.jpg b/datasets/搭电设备/train/images/订单1805780_54_7100375.jpg new file mode 100644 index 0000000..051322d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805780_54_7100375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffea04078dbea85a27855ec6b4033a44c4b3cdc2319bdc08b0413b66b6bc7b31 +size 116091 diff --git a/datasets/搭电设备/train/images/订单1805782_54_7100367.jpg b/datasets/搭电设备/train/images/订单1805782_54_7100367.jpg new file mode 100644 index 0000000..90c5810 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805782_54_7100367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4649a31246b0626f1d7a4ddd79e5089500883696adcadeced822bafaf02f29 +size 122448 diff --git a/datasets/搭电设备/train/images/订单1805783_54_7100456.jpg b/datasets/搭电设备/train/images/订单1805783_54_7100456.jpg new file mode 100644 index 0000000..13241f3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805783_54_7100456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8f8071440cb9115b0e40c7b4bb98bb6ac527f03a056ae2508ad0005f5be64f +size 691838 diff --git a/datasets/搭电设备/train/images/订单1805786_54_7100409.jpg b/datasets/搭电设备/train/images/订单1805786_54_7100409.jpg new file mode 100644 index 0000000..54bc344 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805786_54_7100409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b6d2e9a5991a8da2d887b61fd9c7b23a743cd613281af4990f74eca7fe0843 +size 115362 diff --git a/datasets/搭电设备/train/images/订单1805787_54_7100476.jpg b/datasets/搭电设备/train/images/订单1805787_54_7100476.jpg new file mode 100644 index 0000000..706c510 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805787_54_7100476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0615429d792d8d6469ab43fd6e62bda509ee227f706ff22b051629f8ae7b9a3 +size 103855 diff --git a/datasets/搭电设备/train/images/订单1805788_54_7100535.jpg b/datasets/搭电设备/train/images/订单1805788_54_7100535.jpg new file mode 100644 index 0000000..dda4fa9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805788_54_7100535.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc7815b602ac5b055961638e066927353b41c0179ac12b1f88c6654dce33ceb +size 80732 diff --git a/datasets/搭电设备/train/images/订单1805791_54_7100434.jpg b/datasets/搭电设备/train/images/订单1805791_54_7100434.jpg new file mode 100644 index 0000000..81c430d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805791_54_7100434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f736ffb6bd4991d7615ece61b8fedcd193be4e179f746865b560cbf3baa91837 +size 134058 diff --git a/datasets/搭电设备/train/images/订单1805793_54_7100446.jpg b/datasets/搭电设备/train/images/订单1805793_54_7100446.jpg new file mode 100644 index 0000000..c864710 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805793_54_7100446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be7c8f7da8f118ce8832a1f77b6326cc751867516702d706bf5324a392b0e62 +size 159397 diff --git a/datasets/搭电设备/train/images/订单1805794_54_7100491.jpg b/datasets/搭电设备/train/images/订单1805794_54_7100491.jpg new file mode 100644 index 0000000..2f1054f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805794_54_7100491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f467ef44fa1151ddf783cf1af2becc844dea3625a975bc386c6bbee27153568 +size 94569 diff --git a/datasets/搭电设备/train/images/订单1805797_54_7100521.jpg b/datasets/搭电设备/train/images/订单1805797_54_7100521.jpg new file mode 100644 index 0000000..b0de8f0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805797_54_7100521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40976eaaa75469da17f2339cf008173a31e4ba5daf3832efce849086041889c2 +size 410179 diff --git a/datasets/搭电设备/train/images/订单1805799_54_7100508.jpg b/datasets/搭电设备/train/images/订单1805799_54_7100508.jpg new file mode 100644 index 0000000..245789d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805799_54_7100508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297702c8dbe16ae93bded98000693d51b745676cbd1c830831e99d74bbdd6e49 +size 109138 diff --git a/datasets/搭电设备/train/images/订单1805801_54_7100566.jpg b/datasets/搭电设备/train/images/订单1805801_54_7100566.jpg new file mode 100644 index 0000000..7be2cb3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805801_54_7100566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72456b4abfe6bbb2693ad5c0327b2ba202649bbbc769ef4aaabfff6476949e8 +size 78814 diff --git a/datasets/搭电设备/train/images/订单1805802_54_7100543.jpg b/datasets/搭电设备/train/images/订单1805802_54_7100543.jpg new file mode 100644 index 0000000..766c457 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805802_54_7100543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d6958ab7d1fea30e5689e3abf47ebadae4cb0e06edc7bb961cf51e5988acf0 +size 93411 diff --git a/datasets/搭电设备/train/images/订单1805804_54_7100609.jpg b/datasets/搭电设备/train/images/订单1805804_54_7100609.jpg new file mode 100644 index 0000000..0d01e96 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805804_54_7100609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe018f6cac81fb59caa71ac50225b4375e274383c763aa00b1460e51e522f0ad +size 97350 diff --git a/datasets/搭电设备/train/images/订单1805806_54_7100674.jpg b/datasets/搭电设备/train/images/订单1805806_54_7100674.jpg new file mode 100644 index 0000000..336fa77 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805806_54_7100674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e695bf014fba18db921faef1d46a4fe54d81499d69cd1810af1ea305e1cb811b +size 140124 diff --git a/datasets/搭电设备/train/images/订单1805807_54_7100670.jpg b/datasets/搭电设备/train/images/订单1805807_54_7100670.jpg new file mode 100644 index 0000000..4728784 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805807_54_7100670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bad19c8410b40fa66f5f681bb649516b8a51a10a67bca4960804a060f046eb +size 472314 diff --git a/datasets/搭电设备/train/images/订单1805810_54_7100626.jpg b/datasets/搭电设备/train/images/订单1805810_54_7100626.jpg new file mode 100644 index 0000000..7edeef6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805810_54_7100626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0058e56646a36fd0bb80555e59d48db52d28a9c089382273c05a1d36c45c123e +size 67999 diff --git a/datasets/搭电设备/train/images/订单1805812_54_7100602.jpg b/datasets/搭电设备/train/images/订单1805812_54_7100602.jpg new file mode 100644 index 0000000..f754111 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805812_54_7100602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6804654f83bce5840e7cdf0a6d09405c63e6da85b6ac47f4ac8723458004a040 +size 150812 diff --git a/datasets/搭电设备/train/images/订单1805813_54_7100709.jpg b/datasets/搭电设备/train/images/订单1805813_54_7100709.jpg new file mode 100644 index 0000000..6287afe --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805813_54_7100709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85cb40933bde3c0e488514c308883f7f7ed0e15d6361d76cb8df07ea2e41109 +size 118567 diff --git a/datasets/搭电设备/train/images/订单1805814_54_7100648.jpg b/datasets/搭电设备/train/images/订单1805814_54_7100648.jpg new file mode 100644 index 0000000..5068276 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805814_54_7100648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309879a69e0ddeb23412632cdfd5ccccbbf19fbd95b928a37d4cfdcf4ac60702 +size 105902 diff --git a/datasets/搭电设备/train/images/订单1805815_54_7100725.jpg b/datasets/搭电设备/train/images/订单1805815_54_7100725.jpg new file mode 100644 index 0000000..01af981 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805815_54_7100725.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fb07954d00ee310bf7908b623dd02d5a69cae385f4105866effe1911abbc86 +size 78538 diff --git a/datasets/搭电设备/train/images/订单1805817_54_7100736.jpg b/datasets/搭电设备/train/images/订单1805817_54_7100736.jpg new file mode 100644 index 0000000..c595e52 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805817_54_7100736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d55cbab8216066344d6570bf66e4a9921152ed076d2848eb9c519c6deaa72b5 +size 121514 diff --git a/datasets/搭电设备/train/images/订单1805819_54_7100690.jpg b/datasets/搭电设备/train/images/订单1805819_54_7100690.jpg new file mode 100644 index 0000000..b268ec5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805819_54_7100690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16fb460aebfa093266d3e013fcf908c6d20252537996715a7993e6161b46db5 +size 656892 diff --git a/datasets/搭电设备/train/images/订单1805820_54_7100760.jpg b/datasets/搭电设备/train/images/订单1805820_54_7100760.jpg new file mode 100644 index 0000000..5ca12b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805820_54_7100760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf686120c1d83a7f2e158cc7dd058af2ca9644547bd31f9e829cb77c19f6661 +size 144753 diff --git a/datasets/搭电设备/train/images/订单1805821_54_7100719.jpg b/datasets/搭电设备/train/images/订单1805821_54_7100719.jpg new file mode 100644 index 0000000..802dd30 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805821_54_7100719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4a10869f3e2e2a45be1f479b5384119bacfb56afe99d3082f4ba7ad0af1bbf +size 556618 diff --git a/datasets/搭电设备/train/images/订单1805823_54_7100663.jpg b/datasets/搭电设备/train/images/订单1805823_54_7100663.jpg new file mode 100644 index 0000000..3676c00 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805823_54_7100663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cc1df3535183f28e6e969e98a0c4519baf12a0fa7dda324ee392d1035ef549 +size 115609 diff --git a/datasets/搭电设备/train/images/订单1805829_54_7101112.jpg b/datasets/搭电设备/train/images/订单1805829_54_7101112.jpg new file mode 100644 index 0000000..5daf21b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805829_54_7101112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029cc94b0fd4e4bc88da7093133c51b6fd4ffd7a71111c98ea87a4f83f4a9f4e +size 134000 diff --git a/datasets/搭电设备/train/images/订单1805830_54_7100770.jpg b/datasets/搭电设备/train/images/订单1805830_54_7100770.jpg new file mode 100644 index 0000000..c7c18c1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805830_54_7100770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19db1e57c157824b5bd3d9b4477571c87d21a995fd94a5e24360b547a6c7e61b +size 126441 diff --git a/datasets/搭电设备/train/images/订单1805831_54_7100852.jpg b/datasets/搭电设备/train/images/订单1805831_54_7100852.jpg new file mode 100644 index 0000000..1a6a4ea --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805831_54_7100852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72793da8e2e4dc8178002871c8365fc55ac7ea9724a8d51cec36affa9ba72dc +size 189082 diff --git a/datasets/搭电设备/train/images/订单1805833_54_7100820.jpg b/datasets/搭电设备/train/images/订单1805833_54_7100820.jpg new file mode 100644 index 0000000..c2b2eeb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805833_54_7100820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d060fc7ab5192a8ec47987cef6917f9e5574eba073825806f7dc8e356ab2fe2 +size 356698 diff --git a/datasets/搭电设备/train/images/订单1805834_54_7100801.jpg b/datasets/搭电设备/train/images/订单1805834_54_7100801.jpg new file mode 100644 index 0000000..476ee71 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805834_54_7100801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7fb177b468aca703c71a4f47e5f79ce5cdb3048bb7f8c58e89dcc01b1cfd41 +size 114030 diff --git a/datasets/搭电设备/train/images/订单1805837_54_7100857.jpg b/datasets/搭电设备/train/images/订单1805837_54_7100857.jpg new file mode 100644 index 0000000..08e0d83 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805837_54_7100857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4ac59001bb99130ec48ac6b74b506c84bd8c68d3fad04b0d30944e78097d06 +size 414001 diff --git a/datasets/搭电设备/train/images/订单1805839_54_7100903.jpg b/datasets/搭电设备/train/images/订单1805839_54_7100903.jpg new file mode 100644 index 0000000..0acecf0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805839_54_7100903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4b65c04e5712e061feb339a424146f606aa47174dd4da8444500da134f1746 +size 168219 diff --git a/datasets/搭电设备/train/images/订单1805841_54_7100893.jpg b/datasets/搭电设备/train/images/订单1805841_54_7100893.jpg new file mode 100644 index 0000000..a123736 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805841_54_7100893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b120bca88ab48bf7c1a78ca2ace34e6989e8efe871a5416233300b8004987032 +size 231097 diff --git a/datasets/搭电设备/train/images/订单1805842_54_7100934.jpg b/datasets/搭电设备/train/images/订单1805842_54_7100934.jpg new file mode 100644 index 0000000..4f38389 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805842_54_7100934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb17b4c50423ad43939bb2c48b40bac7b38e43ec89ef5b03eba4183d956ee851 +size 436412 diff --git a/datasets/搭电设备/train/images/订单1805843_54_7100962.jpg b/datasets/搭电设备/train/images/订单1805843_54_7100962.jpg new file mode 100644 index 0000000..008a33f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805843_54_7100962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11c8b5eab1cf0420d4d23f8002a5a8b5ae943d5e3661a1032f71bba1493130e +size 209662 diff --git a/datasets/搭电设备/train/images/订单1805844_54_7100937.jpg b/datasets/搭电设备/train/images/订单1805844_54_7100937.jpg new file mode 100644 index 0000000..542f4a4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805844_54_7100937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39a7f08748565cf9e03c190c006fa887a2e9027386d1d2ff7dc71d2ab9cf5cf +size 93344 diff --git a/datasets/搭电设备/train/images/订单1805847_54_7100919.jpg b/datasets/搭电设备/train/images/订单1805847_54_7100919.jpg new file mode 100644 index 0000000..01e782c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805847_54_7100919.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308e2fae3387cf6d8cd51a99da31e7314596a39d7ced25c97c1df4a9a88cc6e4 +size 138695 diff --git a/datasets/搭电设备/train/images/订单1805848_54_7101038.jpg b/datasets/搭电设备/train/images/订单1805848_54_7101038.jpg new file mode 100644 index 0000000..fb6cd72 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805848_54_7101038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe0d55a38653b0bb73c6254e97b0b9fb7b4f55a61934c3d27752b23ec8ff21d +size 123210 diff --git a/datasets/搭电设备/train/images/订单1805851_54_7100971.jpg b/datasets/搭电设备/train/images/订单1805851_54_7100971.jpg new file mode 100644 index 0000000..45c0879 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805851_54_7100971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ae2d9cc138ff93300e8c0489e14461e49d7ae6ee632659d26e999c67c93173 +size 119354 diff --git a/datasets/搭电设备/train/images/订单1805852_54_7101026.jpg b/datasets/搭电设备/train/images/订单1805852_54_7101026.jpg new file mode 100644 index 0000000..0ddcc12 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805852_54_7101026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92e7693ff60aab17c04c7399503238ac08749247b8b237aa1e869bf1a382dee +size 390184 diff --git a/datasets/搭电设备/train/images/订单1805853_54_7101064.jpg b/datasets/搭电设备/train/images/订单1805853_54_7101064.jpg new file mode 100644 index 0000000..eb49b90 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805853_54_7101064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3c380c81f1865b8c7bd7d938359a8908a812116e6348582bdb67b274c2cf28 +size 239517 diff --git a/datasets/搭电设备/train/images/订单1805854_54_7101024.jpg b/datasets/搭电设备/train/images/订单1805854_54_7101024.jpg new file mode 100644 index 0000000..daaf1cd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805854_54_7101024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73f728f73bae8150f8c89072cc8c3c74bfbf59363831767cc1f5a729bbcf5ec +size 127004 diff --git a/datasets/搭电设备/train/images/订单1805857_54_7100979.jpg b/datasets/搭电设备/train/images/订单1805857_54_7100979.jpg new file mode 100644 index 0000000..a6b1170 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805857_54_7100979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b31ddeb32790bd3d8a5c29dc38045852913bb2b16c5468592a4d9ba8435c9d +size 127163 diff --git a/datasets/搭电设备/train/images/订单1805860_54_7101122.jpg b/datasets/搭电设备/train/images/订单1805860_54_7101122.jpg new file mode 100644 index 0000000..5b393e7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805860_54_7101122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e035ff7665c416688c82f968b14ea21c06c40441c74afc2c332b215cd54c03 +size 133801 diff --git a/datasets/搭电设备/train/images/订单1805861_54_7101067.jpg b/datasets/搭电设备/train/images/订单1805861_54_7101067.jpg new file mode 100644 index 0000000..61f1332 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805861_54_7101067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b9f1f85f3de5228477cf5a64a8b2505d56003ad1f66132adf599a36112ec5b +size 103006 diff --git a/datasets/搭电设备/train/images/订单1805862_54_7101213.jpg b/datasets/搭电设备/train/images/订单1805862_54_7101213.jpg new file mode 100644 index 0000000..76e0062 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805862_54_7101213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9d177b3bda5a409ba3bf5e3a5fb3d0fefcea7c6f7e935a221c451cbacdeb26 +size 123620 diff --git a/datasets/搭电设备/train/images/订单1805864_54_7101129.jpg b/datasets/搭电设备/train/images/订单1805864_54_7101129.jpg new file mode 100644 index 0000000..9622a2a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805864_54_7101129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c57a42d3625f19e2f99b2e1a109c21d4d626f8e3e2cbc3f5c92dc7c3c800985 +size 322910 diff --git a/datasets/搭电设备/train/images/订单1805865_54_7101106.jpg b/datasets/搭电设备/train/images/订单1805865_54_7101106.jpg new file mode 100644 index 0000000..e3d29f3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805865_54_7101106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d085bfc569a654b9b471e51322383971637df0bfeabaaae8be9fcadce897cc +size 109696 diff --git a/datasets/搭电设备/train/images/订单1805866_54_7101144.jpg b/datasets/搭电设备/train/images/订单1805866_54_7101144.jpg new file mode 100644 index 0000000..3783149 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805866_54_7101144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa0f5fb2d710a6416d7ee17960e4e43f0530a3481cb8ba043008e6d2b940724 +size 363301 diff --git a/datasets/搭电设备/train/images/订单1805867_54_7101220.jpg b/datasets/搭电设备/train/images/订单1805867_54_7101220.jpg new file mode 100644 index 0000000..728c6e1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805867_54_7101220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105147a10b05e2cc0c907960dad0d18835c7d8eb7e8ae9ea4f430dd396ea4e4e +size 853435 diff --git a/datasets/搭电设备/train/images/订单1805869_54_7101162.jpg b/datasets/搭电设备/train/images/订单1805869_54_7101162.jpg new file mode 100644 index 0000000..ed8f641 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805869_54_7101162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315e25d991465446d5092eecb91a7ce6270c93e930cb6d3c5bb9b7f303b765e5 +size 87108 diff --git a/datasets/搭电设备/train/images/订单1805870_54_7101231.jpg b/datasets/搭电设备/train/images/订单1805870_54_7101231.jpg new file mode 100644 index 0000000..443a0db --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805870_54_7101231.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a49ee6fc2cac3ee5bcfb09ecf6c571f54166d3a6f7f73ff36bb634456b9c4a7 +size 129173 diff --git a/datasets/搭电设备/train/images/订单1805871_54_7101187.jpg b/datasets/搭电设备/train/images/订单1805871_54_7101187.jpg new file mode 100644 index 0000000..5c96694 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805871_54_7101187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0477e9065babc2c1a35a90f4c7d188b94dcc6e9fbd652af207abba7b88f7453 +size 94004 diff --git a/datasets/搭电设备/train/images/订单1805872_54_7101191.jpg b/datasets/搭电设备/train/images/订单1805872_54_7101191.jpg new file mode 100644 index 0000000..039da15 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805872_54_7101191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4154f7a3bfb8f60388c83a52e7ffac29924bae24db0f64e2d4f78bbd1c3c55d0 +size 383755 diff --git a/datasets/搭电设备/train/images/订单1805873_54_7101263.jpg b/datasets/搭电设备/train/images/订单1805873_54_7101263.jpg new file mode 100644 index 0000000..9f4c143 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805873_54_7101263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abb5ad7b2f2498974ec60e144bbe1ca87cbf40d6905893161f44936174a8bd7 +size 96968 diff --git a/datasets/搭电设备/train/images/订单1805879_54_7101281.jpg b/datasets/搭电设备/train/images/订单1805879_54_7101281.jpg new file mode 100644 index 0000000..c3aa7fc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805879_54_7101281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d44bb18114be6811584ee2c0e0cc03ae0049372421ed6a1c86d7060e3c3a1f +size 90093 diff --git a/datasets/搭电设备/train/images/订单1805883_54_7101308.jpg b/datasets/搭电设备/train/images/订单1805883_54_7101308.jpg new file mode 100644 index 0000000..1d54519 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805883_54_7101308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63522f6a46b1e44fdb44a4c380aacf05b159bfd53a4e73c43d23a90b3e7fdbef +size 131718 diff --git a/datasets/搭电设备/train/images/订单1805885_54_7101404.jpg b/datasets/搭电设备/train/images/订单1805885_54_7101404.jpg new file mode 100644 index 0000000..0fe18e1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805885_54_7101404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643025e971a0afeedab15b3866e8dc85fd6a00c6abb3774ad9d9258e559bf7c7 +size 321103 diff --git a/datasets/搭电设备/train/images/订单1805886_54_7101420.jpg b/datasets/搭电设备/train/images/订单1805886_54_7101420.jpg new file mode 100644 index 0000000..e556e18 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805886_54_7101420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae430f927a744ced9492733992326219c4091cfd946531299e8e29c50aac7010 +size 122984 diff --git a/datasets/搭电设备/train/images/订单1805887_54_7101387.jpg b/datasets/搭电设备/train/images/订单1805887_54_7101387.jpg new file mode 100644 index 0000000..d315917 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805887_54_7101387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0940d24fb885c4c59a2554586e33f819e5bf5725af51a3cf3a5022d42d49d5 +size 387737 diff --git a/datasets/搭电设备/train/images/订单1805888_54_7101395.jpg b/datasets/搭电设备/train/images/订单1805888_54_7101395.jpg new file mode 100644 index 0000000..ec2c7bf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805888_54_7101395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7274353a4026c71b7b0ba4b32d3eb74ae0d0443ce0671158164d3f89e072b6ae +size 152247 diff --git a/datasets/搭电设备/train/images/订单1805891_54_7101880.jpg b/datasets/搭电设备/train/images/订单1805891_54_7101880.jpg new file mode 100644 index 0000000..e4ce85c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805891_54_7101880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8049c6f18d2d74220d565129cb0d7b811bc8b7a968bb3f2848004f145afbca +size 250311 diff --git a/datasets/搭电设备/train/images/订单1805893_54_7101441.jpg b/datasets/搭电设备/train/images/订单1805893_54_7101441.jpg new file mode 100644 index 0000000..e7b5e26 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805893_54_7101441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f3a2d287c2713dacc68410732d11815954c056f4ccce612778ba306d70627bc +size 109397 diff --git a/datasets/搭电设备/train/images/订单1805894_54_7101480.jpg b/datasets/搭电设备/train/images/订单1805894_54_7101480.jpg new file mode 100644 index 0000000..14c3512 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805894_54_7101480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f83d285039a136cd279b81584de430b88d0d6321932df4bf61c71cc79e264f +size 117893 diff --git a/datasets/搭电设备/train/images/订单1805895_54_7101463.jpg b/datasets/搭电设备/train/images/订单1805895_54_7101463.jpg new file mode 100644 index 0000000..2faaa44 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805895_54_7101463.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624ec2187743648149b6da17d82cbc6c6013bf4aba5ac32ee92cca9328f245c5 +size 113794 diff --git a/datasets/搭电设备/train/images/订单1805896_54_7101472.jpg b/datasets/搭电设备/train/images/订单1805896_54_7101472.jpg new file mode 100644 index 0000000..d2e1dbf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805896_54_7101472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b2e2c3464e87d9e3dad1057c4bbddcc8ad3d57fd52e2b853902acb914d050d +size 155677 diff --git a/datasets/搭电设备/train/images/订单1805897_54_7101626.jpg b/datasets/搭电设备/train/images/订单1805897_54_7101626.jpg new file mode 100644 index 0000000..93e95a6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805897_54_7101626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105efaaca98f7475b77b321ad1ba50fdcaea4bdadcb38ab57bae975732ecc4d4 +size 1217772 diff --git a/datasets/搭电设备/train/images/订单1805898_54_7101438.jpg b/datasets/搭电设备/train/images/订单1805898_54_7101438.jpg new file mode 100644 index 0000000..c365041 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805898_54_7101438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c04d3ab844c120dca8d2838e5183aaf8e97e3e873ccb373daf928b068eae555 +size 235927 diff --git a/datasets/搭电设备/train/images/订单1805899_54_7101716.jpg b/datasets/搭电设备/train/images/订单1805899_54_7101716.jpg new file mode 100644 index 0000000..6465d3f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805899_54_7101716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9244a6e0cb065ef4973502d3b72e5e8e68abef219d048ead09d8e74b14019e29 +size 125176 diff --git a/datasets/搭电设备/train/images/订单1805902_54_7101491.jpg b/datasets/搭电设备/train/images/订单1805902_54_7101491.jpg new file mode 100644 index 0000000..2cb730b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805902_54_7101491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f571ce920e952f4c3eea137f0f289bb9197ec6915efccf0f90f4b94912e82b6 +size 125472 diff --git a/datasets/搭电设备/train/images/订单1805903_54_7101589.jpg b/datasets/搭电设备/train/images/订单1805903_54_7101589.jpg new file mode 100644 index 0000000..478ea73 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805903_54_7101589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7904fdc173f0454199b177f8e4edecdac83977ee4ae108aabc3881c20ce919de +size 79282 diff --git a/datasets/搭电设备/train/images/订单1805904_54_7101545.jpg b/datasets/搭电设备/train/images/订单1805904_54_7101545.jpg new file mode 100644 index 0000000..e4ddc8a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805904_54_7101545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9ae09ee6bc709de560464a489e2b4bfc51035199b28fdc31e2ee4c2f5a1008 +size 206900 diff --git a/datasets/搭电设备/train/images/订单1805905_54_7101553.jpg b/datasets/搭电设备/train/images/订单1805905_54_7101553.jpg new file mode 100644 index 0000000..055db11 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805905_54_7101553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d75d42ec58c1efe755380669ff4e0e56985a34c509e956a17ae907d687c6e86 +size 142617 diff --git a/datasets/搭电设备/train/images/订单1805909_54_7101516.jpg b/datasets/搭电设备/train/images/订单1805909_54_7101516.jpg new file mode 100644 index 0000000..e7d49cb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805909_54_7101516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e91e2c53c81ef0ee3c81dd1765a467266405614c4d6f07393d8ab79a553a84b +size 96963 diff --git a/datasets/搭电设备/train/images/订单1805910_54_7101618.jpg b/datasets/搭电设备/train/images/订单1805910_54_7101618.jpg new file mode 100644 index 0000000..2ecabef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805910_54_7101618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676f5bbc03dc8011351d1dbec1b84fd7dc0b612b62a8ff1471273103a9182cff +size 158857 diff --git a/datasets/搭电设备/train/images/订单1805912_54_7101600.jpg b/datasets/搭电设备/train/images/订单1805912_54_7101600.jpg new file mode 100644 index 0000000..b03720a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805912_54_7101600.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cefe21ebf003a706fade7753e7ba588c93289a1bbd1868fb5226d3de815102 +size 436059 diff --git a/datasets/搭电设备/train/images/订单1805913_54_7101655.jpg b/datasets/搭电设备/train/images/订单1805913_54_7101655.jpg new file mode 100644 index 0000000..ce37f10 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805913_54_7101655.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7268b3b652081d1475d04ad307a7d328915a9eaade8f4f872a8d84bf12145a +size 112803 diff --git a/datasets/搭电设备/train/images/订单1805915_54_7101635.jpg b/datasets/搭电设备/train/images/订单1805915_54_7101635.jpg new file mode 100644 index 0000000..a033c00 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805915_54_7101635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba40648da3d7a567a154c5b8755ff8c3a97fafb65da24f3d19f4b4ed2be42479 +size 112994 diff --git a/datasets/搭电设备/train/images/订单1805917_54_7101693.jpg b/datasets/搭电设备/train/images/订单1805917_54_7101693.jpg new file mode 100644 index 0000000..3a0cc19 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805917_54_7101693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4329276e2a33859e812d0a397aea2ceeb8e5974ae1b07944d1ee7bf4a32a0873 +size 111562 diff --git a/datasets/搭电设备/train/images/订单1805918_54_7101610.jpg b/datasets/搭电设备/train/images/订单1805918_54_7101610.jpg new file mode 100644 index 0000000..3a58682 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805918_54_7101610.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440da6efed53eb54cace806b9264babebfd50a71e3882157abd56fb44d8d5965 +size 578836 diff --git a/datasets/搭电设备/train/images/订单1805920_54_7101676.jpg b/datasets/搭电设备/train/images/订单1805920_54_7101676.jpg new file mode 100644 index 0000000..1040285 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805920_54_7101676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b3fd3114e40d1e02274508393649912aeccc336f557ea7aaa938f26af558c8 +size 119506 diff --git a/datasets/搭电设备/train/images/订单1805923_54_7101773.jpg b/datasets/搭电设备/train/images/订单1805923_54_7101773.jpg new file mode 100644 index 0000000..e5aebcc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805923_54_7101773.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a78610d9da6f7a2041844af3cb7c1aef45c803d4380c6e60e5716667b9a6f52 +size 332356 diff --git a/datasets/搭电设备/train/images/订单1805924_54_7101697.jpg b/datasets/搭电设备/train/images/订单1805924_54_7101697.jpg new file mode 100644 index 0000000..0daafbc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805924_54_7101697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629d657e460efbd7afece245ed220ffad373d2fca6839cc2507184ca9ffd48a3 +size 447597 diff --git a/datasets/搭电设备/train/images/订单1805926_54_7102372.jpg b/datasets/搭电设备/train/images/订单1805926_54_7102372.jpg new file mode 100644 index 0000000..3f1764e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805926_54_7102372.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6435659e144c9bd5a3f3db13a085bb2f08aab04c9f556239d8c7f2d3b16815 +size 508443 diff --git a/datasets/搭电设备/train/images/订单1805927_54_7101744.jpg b/datasets/搭电设备/train/images/订单1805927_54_7101744.jpg new file mode 100644 index 0000000..92683e3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805927_54_7101744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634adce97b1ef28a08fad9c1bbaffce9c0d92e327bd28cfbfa5137b1f3e2b309 +size 232119 diff --git a/datasets/搭电设备/train/images/订单1805928_54_7101739.jpg b/datasets/搭电设备/train/images/订单1805928_54_7101739.jpg new file mode 100644 index 0000000..9843b08 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805928_54_7101739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2699bedd15d2cdd466fe23f10f8a8c4d583d70ae699f21235b5ea7da5f245226 +size 133050 diff --git a/datasets/搭电设备/train/images/订单1805929_54_7101762.jpg b/datasets/搭电设备/train/images/订单1805929_54_7101762.jpg new file mode 100644 index 0000000..0b22bd1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805929_54_7101762.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26e5c89baafec127f82227f040a00a8f913df260e82be3b3003d04fbfdb28c9 +size 119722 diff --git a/datasets/搭电设备/train/images/订单1805930_54_7101765.jpg b/datasets/搭电设备/train/images/订单1805930_54_7101765.jpg new file mode 100644 index 0000000..702ed5f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805930_54_7101765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8769abb217f81644ee943162258d2366c673f527a3c8e1ff572853d36ba9cef0 +size 102819 diff --git a/datasets/搭电设备/train/images/订单1805931_54_7101789.jpg b/datasets/搭电设备/train/images/订单1805931_54_7101789.jpg new file mode 100644 index 0000000..b140841 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805931_54_7101789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4443111668bac945254638a761ae6f8346cb2a01d681cd2e2b3e80eab848f8e6 +size 313038 diff --git a/datasets/搭电设备/train/images/订单1805932_54_7101792.jpg b/datasets/搭电设备/train/images/订单1805932_54_7101792.jpg new file mode 100644 index 0000000..04fd905 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805932_54_7101792.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8584242514da173f169c59b860458dd462dd521217ebe2a5b307a8ae58724c23 +size 137506 diff --git a/datasets/搭电设备/train/images/订单1805933_54_7101823.jpg b/datasets/搭电设备/train/images/订单1805933_54_7101823.jpg new file mode 100644 index 0000000..794727d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805933_54_7101823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720129a14cfacc9adf3893c5e4ceb7424ad5bd2e7fac4f755a97c91eec62581f +size 297970 diff --git a/datasets/搭电设备/train/images/订单1805934_54_7101834.jpg b/datasets/搭电设备/train/images/订单1805934_54_7101834.jpg new file mode 100644 index 0000000..6b792f0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805934_54_7101834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959892b2a8174f5997619ec09d59151a6a1c4e7295c90453054fa04386e47153 +size 99525 diff --git a/datasets/搭电设备/train/images/订单1805936_54_7101825.jpg b/datasets/搭电设备/train/images/订单1805936_54_7101825.jpg new file mode 100644 index 0000000..24ec0c5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805936_54_7101825.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049a7a1a8630270acd60db9e8eabc1732e6c9f66ee9539bc451a964047ae1c8b +size 121523 diff --git a/datasets/搭电设备/train/images/订单1805937_54_7101864.jpg b/datasets/搭电设备/train/images/订单1805937_54_7101864.jpg new file mode 100644 index 0000000..87feddd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805937_54_7101864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a477172da4168451f05509223ecfa9ab531b89fe90662d989cca79675d043856 +size 161560 diff --git a/datasets/搭电设备/train/images/订单1805939_54_7101972.jpg b/datasets/搭电设备/train/images/订单1805939_54_7101972.jpg new file mode 100644 index 0000000..ad75131 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805939_54_7101972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1b376fec3c71304637489085c70ea9dc95a632c9acd0ddc3b83c985fab3ebd +size 668432 diff --git a/datasets/搭电设备/train/images/订单1805940_54_7101889.jpg b/datasets/搭电设备/train/images/订单1805940_54_7101889.jpg new file mode 100644 index 0000000..4cbdd42 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805940_54_7101889.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9dc27a43c630f92f8e5f97bf2bb96303adfb6a803c506e86932446d689578a4 +size 150155 diff --git a/datasets/搭电设备/train/images/订单1805941_54_7101900.jpg b/datasets/搭电设备/train/images/订单1805941_54_7101900.jpg new file mode 100644 index 0000000..627301c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805941_54_7101900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88ba6f02fe53804a4feedfc7fc51851d7f417cfb0d49236ca7f69d8bf579703 +size 340294 diff --git a/datasets/搭电设备/train/images/订单1805942_54_7101908.jpg b/datasets/搭电设备/train/images/订单1805942_54_7101908.jpg new file mode 100644 index 0000000..9db483d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805942_54_7101908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644f1230ca3757ba5ec313bd689685803b902c6813f3c61abdfabce813961c21 +size 126678 diff --git a/datasets/搭电设备/train/images/订单1805943_54_7101920.jpg b/datasets/搭电设备/train/images/订单1805943_54_7101920.jpg new file mode 100644 index 0000000..e53aa23 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805943_54_7101920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741bd6177cb66ba94cbd037972e1fac889eb6670648f2ec5bde88137513e5500 +size 147586 diff --git a/datasets/搭电设备/train/images/订单1805944_54_7101929.jpg b/datasets/搭电设备/train/images/订单1805944_54_7101929.jpg new file mode 100644 index 0000000..5053106 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805944_54_7101929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09da1f3f0564bcf8da5c227feb385880665cb04e4a38d341b39e1ee751c56a00 +size 457953 diff --git a/datasets/搭电设备/train/images/订单1805947_54_7101940.jpg b/datasets/搭电设备/train/images/订单1805947_54_7101940.jpg new file mode 100644 index 0000000..5d89ba8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805947_54_7101940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66965cca7ae32959d2c753b505d25142cd869cf63161e193d999a68e996e14a6 +size 99982 diff --git a/datasets/搭电设备/train/images/订单1805948_54_7101960.jpg b/datasets/搭电设备/train/images/订单1805948_54_7101960.jpg new file mode 100644 index 0000000..0a2cddf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805948_54_7101960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a0d4fb055c629177b420c28b241399ac273c548be36f256f40672b3482d6fc +size 333518 diff --git a/datasets/搭电设备/train/images/订单1805949_54_7101978.jpg b/datasets/搭电设备/train/images/订单1805949_54_7101978.jpg new file mode 100644 index 0000000..abe8267 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805949_54_7101978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f16a9301bcdb2cb9d41fcb22935f9b0b73724ae7d7819c7132bb9b9354c0fb2 +size 90920 diff --git a/datasets/搭电设备/train/images/订单1805957_54_7102005.jpg b/datasets/搭电设备/train/images/订单1805957_54_7102005.jpg new file mode 100644 index 0000000..41342d6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805957_54_7102005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c453024ecf219f6f3803f38e580ff0b7112f18933366449adecc15bfb0676c +size 85398 diff --git a/datasets/搭电设备/train/images/订单1805959_54_7102019.jpg b/datasets/搭电设备/train/images/订单1805959_54_7102019.jpg new file mode 100644 index 0000000..5aa6829 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805959_54_7102019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055a88b4bf50057697cfbe045a767f2f0dcb43e42c96a1939c631cbb57685e6a +size 130231 diff --git a/datasets/搭电设备/train/images/订单1805960_54_7102032.jpg b/datasets/搭电设备/train/images/订单1805960_54_7102032.jpg new file mode 100644 index 0000000..a788dc1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805960_54_7102032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8bbec2d245d17abe7c21071b2803f04c22798013b039277309bcbcf2cd0af6 +size 105494 diff --git a/datasets/搭电设备/train/images/订单1805963_54_7102063.jpg b/datasets/搭电设备/train/images/订单1805963_54_7102063.jpg new file mode 100644 index 0000000..c8e2c25 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805963_54_7102063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbeeed1fb010fa2b63a8282cffa39037309ecb3cac34987c0a65827b0d0a5673 +size 117043 diff --git a/datasets/搭电设备/train/images/订单1805964_54_7102073.jpg b/datasets/搭电设备/train/images/订单1805964_54_7102073.jpg new file mode 100644 index 0000000..4cd8837 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805964_54_7102073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f78bf2ab69c7cb31bac262e8c6b7693a481ab3b5f8db1ed1ed8fc7aa39222a +size 111028 diff --git a/datasets/搭电设备/train/images/订单1805965_54_7102083.jpg b/datasets/搭电设备/train/images/订单1805965_54_7102083.jpg new file mode 100644 index 0000000..12fb01e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805965_54_7102083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9368d85e2322142b8a4d804985dc65b5c8d22c3cc620d917c60855268b8eea6f +size 65788 diff --git a/datasets/搭电设备/train/images/订单1805967_54_7102113.jpg b/datasets/搭电设备/train/images/订单1805967_54_7102113.jpg new file mode 100644 index 0000000..20c67ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805967_54_7102113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae84865828111bfb80970d4aa09e472fba2f6489cc9c1140e9d919af36452b8 +size 110620 diff --git a/datasets/搭电设备/train/images/订单1805968_54_7102115.jpg b/datasets/搭电设备/train/images/订单1805968_54_7102115.jpg new file mode 100644 index 0000000..f92df44 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805968_54_7102115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8688fc976836eb147acccb0534be45efa66bdb47744ee021cf52712c161c6d +size 125857 diff --git a/datasets/搭电设备/train/images/订单1805969_54_7102124.jpg b/datasets/搭电设备/train/images/订单1805969_54_7102124.jpg new file mode 100644 index 0000000..4fdf7ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805969_54_7102124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4c9cfcac8ec4167fda843210524d8495586d9497574bd263931f7d6f52985e +size 525651 diff --git a/datasets/搭电设备/train/images/订单1805970_54_7102146.jpg b/datasets/搭电设备/train/images/订单1805970_54_7102146.jpg new file mode 100644 index 0000000..de3c418 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805970_54_7102146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1559010bb4cee8a2e9fac248bca6a97a765c2909fa365afb4f6c2c6c59b5d929 +size 457439 diff --git a/datasets/搭电设备/train/images/订单1805971_54_7102166.jpg b/datasets/搭电设备/train/images/订单1805971_54_7102166.jpg new file mode 100644 index 0000000..4be4159 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805971_54_7102166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8acec162ec594d8d2acba5558bc1d57785e3c41e2349976dbd32d1fe98e459e +size 121248 diff --git a/datasets/搭电设备/train/images/订单1805972_54_7102130.jpg b/datasets/搭电设备/train/images/订单1805972_54_7102130.jpg new file mode 100644 index 0000000..aa64e01 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805972_54_7102130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeada2739da0bd1ebf186be09685961fe02fef85c497e463783e6b5e5cead68e +size 114019 diff --git a/datasets/搭电设备/train/images/订单1805973_54_7102203.jpg b/datasets/搭电设备/train/images/订单1805973_54_7102203.jpg new file mode 100644 index 0000000..ebec188 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805973_54_7102203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a62d73a6d8960a08fbfa4b065de2c2576bece9ec98382a34033701b05d44dad +size 118329 diff --git a/datasets/搭电设备/train/images/订单1805974_54_7102286.jpg b/datasets/搭电设备/train/images/订单1805974_54_7102286.jpg new file mode 100644 index 0000000..41eb3db --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805974_54_7102286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a44fb9bf158838e6662962c471c4bfd04b43079079ae7915d90959c9759a84 +size 139557 diff --git a/datasets/搭电设备/train/images/订单1805975_54_7102176.jpg b/datasets/搭电设备/train/images/订单1805975_54_7102176.jpg new file mode 100644 index 0000000..243093c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805975_54_7102176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a615f707b25447ab01baed11c298862314e36cad4c31357607cbfe5862ca0207 +size 122443 diff --git a/datasets/搭电设备/train/images/订单1805976_54_7102163.jpg b/datasets/搭电设备/train/images/订单1805976_54_7102163.jpg new file mode 100644 index 0000000..a8a818b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805976_54_7102163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68945686888120744310246d2763389b78678f6b37cf3ab6d5f73bacc2788673 +size 201691 diff --git a/datasets/搭电设备/train/images/订单1805979_54_7102192.jpg b/datasets/搭电设备/train/images/订单1805979_54_7102192.jpg new file mode 100644 index 0000000..439bf1b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805979_54_7102192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8dc8cad2f611029c3d7be911063e6c9ee58c1c788bf4449fdc9bde2cc82ffe5 +size 138605 diff --git a/datasets/搭电设备/train/images/订单1805981_54_7102217.jpg b/datasets/搭电设备/train/images/订单1805981_54_7102217.jpg new file mode 100644 index 0000000..9e5cb6a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805981_54_7102217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b90f05fd7fd72371740f00631f7c9a154dfdf3a2f5a367790c3c26bd1bb040 +size 618846 diff --git a/datasets/搭电设备/train/images/订单1805982_54_7102251.jpg b/datasets/搭电设备/train/images/订单1805982_54_7102251.jpg new file mode 100644 index 0000000..7988b7d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805982_54_7102251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6c1ea10bf0a508b3ea98868fd9010aa3a25651a7768e64f76f893ae65af85f +size 593097 diff --git a/datasets/搭电设备/train/images/订单1805984_54_7102239.jpg b/datasets/搭电设备/train/images/订单1805984_54_7102239.jpg new file mode 100644 index 0000000..a74cd26 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805984_54_7102239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936e0cd61a45f864e25249f8eac666d55c8c138434813f41e494fe5164252136 +size 178777 diff --git a/datasets/搭电设备/train/images/订单1805985_54_7102221.jpg b/datasets/搭电设备/train/images/订单1805985_54_7102221.jpg new file mode 100644 index 0000000..8e84528 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805985_54_7102221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397230f08a8961bfafaab3fb60e9620167ea923ade9515180a160a7bc33d513d +size 132689 diff --git a/datasets/搭电设备/train/images/订单1805988_54_7102282.jpg b/datasets/搭电设备/train/images/订单1805988_54_7102282.jpg new file mode 100644 index 0000000..70af34a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805988_54_7102282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c186c5ed9c7cab429a32b9bdfb83cb27fb979bcdd6f08b49caec7960e45358c4 +size 133695 diff --git a/datasets/搭电设备/train/images/订单1805989_54_7102268.jpg b/datasets/搭电设备/train/images/订单1805989_54_7102268.jpg new file mode 100644 index 0000000..18aafaf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805989_54_7102268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e1106f10616fab70ee12a1001aa678d3a8d10cf852497c869c2ca93c38733b +size 172406 diff --git a/datasets/搭电设备/train/images/订单1805990_54_7102487.jpg b/datasets/搭电设备/train/images/订单1805990_54_7102487.jpg new file mode 100644 index 0000000..6566309 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805990_54_7102487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee7aa0a7aa23b5f55822da29f6ec316bf26d3174212f6feee6ab88fdfa0e76b +size 383270 diff --git a/datasets/搭电设备/train/images/订单1805993_54_7102316.jpg b/datasets/搭电设备/train/images/订单1805993_54_7102316.jpg new file mode 100644 index 0000000..d23a036 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805993_54_7102316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052d66a0ee69dfea84d552e28e2cd6b3a44a2c2320a3d71745380781a9ae6124 +size 268267 diff --git a/datasets/搭电设备/train/images/订单1805996_54_7102354.jpg b/datasets/搭电设备/train/images/订单1805996_54_7102354.jpg new file mode 100644 index 0000000..6e37a58 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805996_54_7102354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c1fb488ac5e8c5d871c088daedadeec0ef89040312787618340752818e18a2 +size 106753 diff --git a/datasets/搭电设备/train/images/订单1805997_54_7102423.jpg b/datasets/搭电设备/train/images/订单1805997_54_7102423.jpg new file mode 100644 index 0000000..ff6af2f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805997_54_7102423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bb2893ff595a57ac0ef40f649e23bddbe04a3f631683aeefc21884edb8f431 +size 124344 diff --git a/datasets/搭电设备/train/images/订单1805998_54_7102432.jpg b/datasets/搭电设备/train/images/订单1805998_54_7102432.jpg new file mode 100644 index 0000000..e8d50e5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1805998_54_7102432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87deffaa4a81f018e4a812fccac9d786808f09fb09fe99f043b9de8d57e664f0 +size 432711 diff --git a/datasets/搭电设备/train/images/订单1806000_54_7102351.jpg b/datasets/搭电设备/train/images/订单1806000_54_7102351.jpg new file mode 100644 index 0000000..61fd86b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806000_54_7102351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5274aff6c7a4f92de7570c543e42e1048a3897519a74125ff1684ee3394ce354 +size 147963 diff --git a/datasets/搭电设备/train/images/订单1806001_54_7102900.jpg b/datasets/搭电设备/train/images/订单1806001_54_7102900.jpg new file mode 100644 index 0000000..a8c3119 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806001_54_7102900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dadf8aaba6a1071084deada93123acb7765622019d6a44038f9e19a52fedf0d +size 140669 diff --git a/datasets/搭电设备/train/images/订单1806003_54_7102415.jpg b/datasets/搭电设备/train/images/订单1806003_54_7102415.jpg new file mode 100644 index 0000000..17affe1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806003_54_7102415.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9244f67f40bdf5119ee7f2df38089e9e48ea343178284a6515ee25718613521 +size 466889 diff --git a/datasets/搭电设备/train/images/订单1806004_54_7102378.jpg b/datasets/搭电设备/train/images/订单1806004_54_7102378.jpg new file mode 100644 index 0000000..0ee2316 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806004_54_7102378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecae1ef3cac03cd6427135639b43290fe7f003941990b973b7d9f60374259479 +size 183662 diff --git a/datasets/搭电设备/train/images/订单1806005_54_7102376.jpg b/datasets/搭电设备/train/images/订单1806005_54_7102376.jpg new file mode 100644 index 0000000..ff963c8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806005_54_7102376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a937b90c35270934b0c4bedee0ba55630bda21f6cfd9f81301c1e198b3eb1a9 +size 153266 diff --git a/datasets/搭电设备/train/images/订单1806006_54_7102379.jpg b/datasets/搭电设备/train/images/订单1806006_54_7102379.jpg new file mode 100644 index 0000000..c404692 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806006_54_7102379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b725f679a8e115f8bed22625ad56a7a67de4e410fa9f11bdafdeac778cd8c7 +size 709445 diff --git a/datasets/搭电设备/train/images/订单1806007_54_7102411.jpg b/datasets/搭电设备/train/images/订单1806007_54_7102411.jpg new file mode 100644 index 0000000..19e3270 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806007_54_7102411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6e08f2858b70874e020a07520fdcff4f28276369c7d3a26792355f879a863f +size 222314 diff --git a/datasets/搭电设备/train/images/订单1806008_54_7102446.jpg b/datasets/搭电设备/train/images/订单1806008_54_7102446.jpg new file mode 100644 index 0000000..947fbf3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806008_54_7102446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9933d26ed765eadc0c42f5f438ed3a3b93a74895cdeff63244002f1b2e4742b +size 331537 diff --git a/datasets/搭电设备/train/images/订单1806010_54_7102508.jpg b/datasets/搭电设备/train/images/订单1806010_54_7102508.jpg new file mode 100644 index 0000000..40709dc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806010_54_7102508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3824928df4b16319a9c3e594ae6960e4b616355b944ff1ae30a3ebb477b62c9d +size 199611 diff --git a/datasets/搭电设备/train/images/订单1806011_54_7102528.jpg b/datasets/搭电设备/train/images/订单1806011_54_7102528.jpg new file mode 100644 index 0000000..543d2b4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806011_54_7102528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fae2d7bd2585e3c0acc86df6a66ece704e0985d7b24d955de8e2c22b52827b0f +size 694812 diff --git a/datasets/搭电设备/train/images/订单1806014_54_7102551.jpg b/datasets/搭电设备/train/images/订单1806014_54_7102551.jpg new file mode 100644 index 0000000..da23b3f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806014_54_7102551.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aecf30362af243f419d002d362ccede87b5d3c4f1304249e0497c1bed86c9e20 +size 186027 diff --git a/datasets/搭电设备/train/images/订单1806018_54_7102540.jpg b/datasets/搭电设备/train/images/订单1806018_54_7102540.jpg new file mode 100644 index 0000000..95490ee --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806018_54_7102540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48abb787b1871fb84662e7263c8696d8b8929c63a949766f7b939abb64d5075f +size 130828 diff --git a/datasets/搭电设备/train/images/订单1806019_54_7102569.jpg b/datasets/搭电设备/train/images/订单1806019_54_7102569.jpg new file mode 100644 index 0000000..1be77da --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806019_54_7102569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d50e1272558a503554012cf6b44a9636ad370c716ec72a1e93b620a279aa3ac +size 564261 diff --git a/datasets/搭电设备/train/images/订单1806020_54_7102515.jpg b/datasets/搭电设备/train/images/订单1806020_54_7102515.jpg new file mode 100644 index 0000000..b24946f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806020_54_7102515.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c352ba826d3b2c30373691dd79464852be4ed3f546b8c13fbebfdbb2cf7a37a6 +size 163353 diff --git a/datasets/搭电设备/train/images/订单1806022_54_7102606.jpg b/datasets/搭电设备/train/images/订单1806022_54_7102606.jpg new file mode 100644 index 0000000..b58c3a7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806022_54_7102606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0cc2113a66aebf8694c73fb8fc5d8f630e078bb0d7d7191b11512f7cee3303 +size 129629 diff --git a/datasets/搭电设备/train/images/订单1806029_54_7102588.jpg b/datasets/搭电设备/train/images/订单1806029_54_7102588.jpg new file mode 100644 index 0000000..b02a18f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806029_54_7102588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f0d4d38f548c5f93d0a46e1a080831f7825f8cc9e02d387057a415cb491287e +size 549952 diff --git a/datasets/搭电设备/train/images/订单1806031_54_7102706.jpg b/datasets/搭电设备/train/images/订单1806031_54_7102706.jpg new file mode 100644 index 0000000..c2caea8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806031_54_7102706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8aedbc9065c1320906491e9386ba443111ca06190fc7102aa165360b18c60d3 +size 541436 diff --git a/datasets/搭电设备/train/images/订单1806033_54_7102628.jpg b/datasets/搭电设备/train/images/订单1806033_54_7102628.jpg new file mode 100644 index 0000000..9998bd0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806033_54_7102628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2db3e76cef42e179bfe862a0368af21436ad400d2c08db08c72238930c8fe80 +size 117985 diff --git a/datasets/搭电设备/train/images/订单1806036_54_7102656.jpg b/datasets/搭电设备/train/images/订单1806036_54_7102656.jpg new file mode 100644 index 0000000..9954849 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806036_54_7102656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd482242d04ea60906ae5b6833a3f8138766ad81df2466df9716c4490f3146aa +size 164945 diff --git a/datasets/搭电设备/train/images/订单1806040_54_7102697.jpg b/datasets/搭电设备/train/images/订单1806040_54_7102697.jpg new file mode 100644 index 0000000..c549968 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806040_54_7102697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9200ca870d0f398f6605c46d0d57a41cf746895f50c9d5b78ddf3764d052eb +size 150410 diff --git a/datasets/搭电设备/train/images/订单1806042_54_7102742.jpg b/datasets/搭电设备/train/images/订单1806042_54_7102742.jpg new file mode 100644 index 0000000..27fe734 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806042_54_7102742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6120ddb0edcc46038592751217e601a76e198a5360c2cf6b87721bd55f9cf18 +size 284857 diff --git a/datasets/搭电设备/train/images/订单1806043_54_7102896.jpg b/datasets/搭电设备/train/images/订单1806043_54_7102896.jpg new file mode 100644 index 0000000..2279f0e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806043_54_7102896.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f855387cf79b2bbc5b4e75adbadb96099a46b0b450fd633b13847759a11c7c8 +size 649160 diff --git a/datasets/搭电设备/train/images/订单1806044_54_7102664.jpg b/datasets/搭电设备/train/images/订单1806044_54_7102664.jpg new file mode 100644 index 0000000..041fdf2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806044_54_7102664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6140ef74d4c01ee63c80ba4ed66098828c0001710de4a84d194c6e21945dd03 +size 151286 diff --git a/datasets/搭电设备/train/images/订单1806050_54_7102752.jpg b/datasets/搭电设备/train/images/订单1806050_54_7102752.jpg new file mode 100644 index 0000000..c8c7b05 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806050_54_7102752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240befc8affbca5ed419bcfc2fac9765ce6767d877f64f2ebbdab72ea36b6aa7 +size 146761 diff --git a/datasets/搭电设备/train/images/订单1806051_54_7102783.jpg b/datasets/搭电设备/train/images/订单1806051_54_7102783.jpg new file mode 100644 index 0000000..dad4aaa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806051_54_7102783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0d25154b6ebe09e4c98c6ac2d2c319050880108134d16d62002eb79dd3e63f +size 215404 diff --git a/datasets/搭电设备/train/images/订单1806053_54_7102729.jpg b/datasets/搭电设备/train/images/订单1806053_54_7102729.jpg new file mode 100644 index 0000000..5dfe108 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806053_54_7102729.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f8e75268961a079abd895b6fda13c813df25215887e678325cfa67934cb9e3 +size 84663 diff --git a/datasets/搭电设备/train/images/订单1806056_54_7102902.jpg b/datasets/搭电设备/train/images/订单1806056_54_7102902.jpg new file mode 100644 index 0000000..1a50e28 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806056_54_7102902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159a7d33e4a18f4b96c663b160aceb30a48335f16f3cea1e342e622cb336520f +size 333331 diff --git a/datasets/搭电设备/train/images/订单1806058_54_7102806.jpg b/datasets/搭电设备/train/images/订单1806058_54_7102806.jpg new file mode 100644 index 0000000..3807cf4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806058_54_7102806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6712fa7008b9c4b36abff6eea4c1488ff6581e1855526bbf3f0f0072d56c67c0 +size 146095 diff --git a/datasets/搭电设备/train/images/订单1806059_54_7102853.jpg b/datasets/搭电设备/train/images/订单1806059_54_7102853.jpg new file mode 100644 index 0000000..51f157e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806059_54_7102853.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6dd92af2bcb30d76f83601f1b27ac8fa9e2ad624594fbfd66534c71fbe2061 +size 184323 diff --git a/datasets/搭电设备/train/images/订单1806060_54_7102810.jpg b/datasets/搭电设备/train/images/订单1806060_54_7102810.jpg new file mode 100644 index 0000000..6162bfd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806060_54_7102810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e591d089916f9a0950a26b68e919c4ec223a1ccbad009ff17a232b8bd1a9406 +size 142098 diff --git a/datasets/搭电设备/train/images/订单1806062_54_7103096.jpg b/datasets/搭电设备/train/images/订单1806062_54_7103096.jpg new file mode 100644 index 0000000..dda6120 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806062_54_7103096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac3cce1c9bd0306faddcadcd9e725525fac30fd9458d262d406872bdd84cea3 +size 575991 diff --git a/datasets/搭电设备/train/images/订单1806064_54_7102936.jpg b/datasets/搭电设备/train/images/订单1806064_54_7102936.jpg new file mode 100644 index 0000000..11652a9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806064_54_7102936.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e1c344464167f22352eb19730de494145193880da08392240f78fe594ebdc8 +size 138066 diff --git a/datasets/搭电设备/train/images/订单1806065_54_7103088.jpg b/datasets/搭电设备/train/images/订单1806065_54_7103088.jpg new file mode 100644 index 0000000..476c25d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806065_54_7103088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5444c3963e924ce9bc7913e5214113152aa623a32cfba5b37d877550537e2c8e +size 826393 diff --git a/datasets/搭电设备/train/images/订单1806067_54_7103043.jpg b/datasets/搭电设备/train/images/订单1806067_54_7103043.jpg new file mode 100644 index 0000000..4c797c4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806067_54_7103043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6756472763e1f94e56c405d1dedc39d5c46645ccf0d556e840b06d916d9a3c +size 112732 diff --git a/datasets/搭电设备/train/images/订单1806068_54_7103000.jpg b/datasets/搭电设备/train/images/订单1806068_54_7103000.jpg new file mode 100644 index 0000000..7d3a590 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806068_54_7103000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9137250af8935b6c8b4b45eb78cf35f665b8932d7bec87bd5f4874de5c81b9a0 +size 137112 diff --git a/datasets/搭电设备/train/images/订单1806070_54_7102948.jpg b/datasets/搭电设备/train/images/订单1806070_54_7102948.jpg new file mode 100644 index 0000000..e47aeb1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806070_54_7102948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e490732b26c647ea2da0392a89ed3e39fd198d7583c995d967ee343a280ba6 +size 450112 diff --git a/datasets/搭电设备/train/images/订单1806071_54_7102949.jpg b/datasets/搭电设备/train/images/订单1806071_54_7102949.jpg new file mode 100644 index 0000000..9024912 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806071_54_7102949.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b10c0dd99c5a9eea93c3ad41b6ee7788b99a6dedaf9907398f5624047382eff +size 135880 diff --git a/datasets/搭电设备/train/images/订单1806072_54_7102974.jpg b/datasets/搭电设备/train/images/订单1806072_54_7102974.jpg new file mode 100644 index 0000000..1334739 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806072_54_7102974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c13f67e32aa3a19a275fcd1f284d053d8ee07834d91d445c953346850e5b6f +size 106500 diff --git a/datasets/搭电设备/train/images/订单1806073_54_7103012.jpg b/datasets/搭电设备/train/images/订单1806073_54_7103012.jpg new file mode 100644 index 0000000..1ab7d49 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806073_54_7103012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc06522c90b7e559f0e75399425cc82e1488eafee49a3ceabb226d515883ec7a +size 122765 diff --git a/datasets/搭电设备/train/images/订单1806074_54_7103016.jpg b/datasets/搭电设备/train/images/订单1806074_54_7103016.jpg new file mode 100644 index 0000000..36cce24 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806074_54_7103016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b14b25df5042aba46cd999ba15e22d623aea171e9e8768fb66d0deba4e2214a +size 148210 diff --git a/datasets/搭电设备/train/images/订单1806078_54_7103054.jpg b/datasets/搭电设备/train/images/订单1806078_54_7103054.jpg new file mode 100644 index 0000000..a930ddb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806078_54_7103054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d4d354c6c240b068dcc4778e4ff97fa0f65ce3c9c89803caea9bc569dc429a +size 654044 diff --git a/datasets/搭电设备/train/images/订单1806079_54_7103008.jpg b/datasets/搭电设备/train/images/订单1806079_54_7103008.jpg new file mode 100644 index 0000000..d7c46ad --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806079_54_7103008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2acb60670e7526fe2da4fa879fffd0ddd542d7704f6f10dfa6625ca47f3c4e5 +size 136696 diff --git a/datasets/搭电设备/train/images/订单1806081_54_7102938.jpg b/datasets/搭电设备/train/images/订单1806081_54_7102938.jpg new file mode 100644 index 0000000..a10d43b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806081_54_7102938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78a03969d9ae1c542f7c77f9afb34adb477e0a1c672568176b9783895d09510 +size 115018 diff --git a/datasets/搭电设备/train/images/订单1806082_54_7103255.jpg b/datasets/搭电设备/train/images/订单1806082_54_7103255.jpg new file mode 100644 index 0000000..0e938dd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806082_54_7103255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef693b37c057f9ab888c6f0040e4138e93318ea4072e4160661b4290e984f2a0 +size 88284 diff --git a/datasets/搭电设备/train/images/订单1806083_54_7102986.jpg b/datasets/搭电设备/train/images/订单1806083_54_7102986.jpg new file mode 100644 index 0000000..3fa1489 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806083_54_7102986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80de18d865bd50f8e2ed38af6639e44cc1ff9bf089076ebfde6daea82aee076d +size 609095 diff --git a/datasets/搭电设备/train/images/订单1806084_54_7103165.jpg b/datasets/搭电设备/train/images/订单1806084_54_7103165.jpg new file mode 100644 index 0000000..6572492 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806084_54_7103165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290f48c12350e5fd30f249ca69b7102dcbcf38cf2eeaf23e43d7ed5cfa9e58bf +size 334485 diff --git a/datasets/搭电设备/train/images/订单1806085_54_7103055.jpg b/datasets/搭电设备/train/images/订单1806085_54_7103055.jpg new file mode 100644 index 0000000..fff0163 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806085_54_7103055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a0e538e14bd567ac54d2be40255188bec7572c2e49430092a87a3d6d280f38 +size 157436 diff --git a/datasets/搭电设备/train/images/订单1806088_54_7103127.jpg b/datasets/搭电设备/train/images/订单1806088_54_7103127.jpg new file mode 100644 index 0000000..95016b6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806088_54_7103127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9329915c198ece8c01ad15d1a3ff1f707265c8c7531c9189a5014014d3e5362c +size 114613 diff --git a/datasets/搭电设备/train/images/订单1806093_54_7103270.jpg b/datasets/搭电设备/train/images/订单1806093_54_7103270.jpg new file mode 100644 index 0000000..1243070 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806093_54_7103270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cd9534f0e96dc4de435d70985ba1e9525002ec9e97a0d6dcc71683bb6976d7 +size 261415 diff --git a/datasets/搭电设备/train/images/订单1806095_54_7103207.jpg b/datasets/搭电设备/train/images/订单1806095_54_7103207.jpg new file mode 100644 index 0000000..0bfe866 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806095_54_7103207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe17de612264bc855d437b65a6b784088f689f2f7b9fc2e2531a10e1274227c +size 205263 diff --git a/datasets/搭电设备/train/images/订单1806096_54_7103169.jpg b/datasets/搭电设备/train/images/订单1806096_54_7103169.jpg new file mode 100644 index 0000000..fc934fc --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806096_54_7103169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1cafc7e61dd16dfc7edcbf02ac7d220cc3bbade5c3a7f6dfdec623222ad4d61 +size 152112 diff --git a/datasets/搭电设备/train/images/订单1806099_54_7103282.jpg b/datasets/搭电设备/train/images/订单1806099_54_7103282.jpg new file mode 100644 index 0000000..8615447 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806099_54_7103282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b229943f1728cd0557ac080bd8daff7132ab3946646a7c326ada4780bb1f1ff +size 126431 diff --git a/datasets/搭电设备/train/images/订单1806100_54_7103201.jpg b/datasets/搭电设备/train/images/订单1806100_54_7103201.jpg new file mode 100644 index 0000000..22399ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806100_54_7103201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a012dea4381c5104e0771adbb349c60b956ca24a04d1996d324b928d0e2c8a2 +size 237053 diff --git a/datasets/搭电设备/train/images/订单1806101_54_7103292.jpg b/datasets/搭电设备/train/images/订单1806101_54_7103292.jpg new file mode 100644 index 0000000..ddce4b4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806101_54_7103292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78603388afa5cd8c13287bea0c4d9029c15d1a6f4eedfbf7094946279669f451 +size 490052 diff --git a/datasets/搭电设备/train/images/订单1806102_54_7103250.jpg b/datasets/搭电设备/train/images/订单1806102_54_7103250.jpg new file mode 100644 index 0000000..37584b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806102_54_7103250.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:883f801f13c72d85520e21c8d13fe49a989c5770bca96453e5e238cf84bdefd2 +size 137605 diff --git a/datasets/搭电设备/train/images/订单1806105_54_7103286.jpg b/datasets/搭电设备/train/images/订单1806105_54_7103286.jpg new file mode 100644 index 0000000..914156d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806105_54_7103286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b670b5bbf8ed8a224a68b8eecc4a17ece8c0d579bc26de40965bef2daa9586 +size 570713 diff --git a/datasets/搭电设备/train/images/订单1806106_54_7103315.jpg b/datasets/搭电设备/train/images/订单1806106_54_7103315.jpg new file mode 100644 index 0000000..1b7d4b9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806106_54_7103315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da17915ed5f60d569d797fd355f6b0afdf80af2e8e3b85a006db24f08a2869f5 +size 247768 diff --git a/datasets/搭电设备/train/images/订单1806107_54_7103358.jpg b/datasets/搭电设备/train/images/订单1806107_54_7103358.jpg new file mode 100644 index 0000000..4e7589b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806107_54_7103358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b2c86e05c44470db49331f24b06e089004f813efa22fb3e08ef3b553edbfd0 +size 227601 diff --git a/datasets/搭电设备/train/images/订单1806110_54_7103335.jpg b/datasets/搭电设备/train/images/订单1806110_54_7103335.jpg new file mode 100644 index 0000000..a52b1e0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806110_54_7103335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aee5daf8355330f4e6701f4d9226d062e3f29734bc0e42a05a9f672c6cba32f +size 90516 diff --git a/datasets/搭电设备/train/images/订单1806112_54_7103402.jpg b/datasets/搭电设备/train/images/订单1806112_54_7103402.jpg new file mode 100644 index 0000000..5e20ebf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806112_54_7103402.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896c39296e51e0b6dd8ce74083567c7faa02c4fd35f2876b4985eeec0745851b +size 128313 diff --git a/datasets/搭电设备/train/images/订单1806113_54_7103441.jpg b/datasets/搭电设备/train/images/订单1806113_54_7103441.jpg new file mode 100644 index 0000000..363686f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806113_54_7103441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2005d434e725fb27c4c89bb25ec6422847f5368d3930c519dadfb08148dbd403 +size 141924 diff --git a/datasets/搭电设备/train/images/订单1806114_54_7103389.jpg b/datasets/搭电设备/train/images/订单1806114_54_7103389.jpg new file mode 100644 index 0000000..6153a39 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806114_54_7103389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4351a443941d34dfb0ff55a30c348d6924a7a77be97aabc59207d201ac34fc21 +size 124076 diff --git a/datasets/搭电设备/train/images/订单1806115_54_7103379.jpg b/datasets/搭电设备/train/images/订单1806115_54_7103379.jpg new file mode 100644 index 0000000..b63444c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806115_54_7103379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1401b607f1d552001368d5e148fcedee4e10a257f341259c6443477bc15d7817 +size 157286 diff --git a/datasets/搭电设备/train/images/订单1806116_54_7103438.jpg b/datasets/搭电设备/train/images/订单1806116_54_7103438.jpg new file mode 100644 index 0000000..b1f974b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806116_54_7103438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686f0ff826d46d652b485ecaa925095a473a7a1cf9955fa93e3a4421be00d654 +size 156596 diff --git a/datasets/搭电设备/train/images/订单1806117_54_7103453.jpg b/datasets/搭电设备/train/images/订单1806117_54_7103453.jpg new file mode 100644 index 0000000..a5b01b0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806117_54_7103453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06c4a3ad6f6f12d0812f5cacac700413d50642ae608c807455b078d3f5960e2 +size 104622 diff --git a/datasets/搭电设备/train/images/订单1806118_54_7103424.jpg b/datasets/搭电设备/train/images/订单1806118_54_7103424.jpg new file mode 100644 index 0000000..c471ba3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806118_54_7103424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac90cffc34319eb35911644129ddd484b7a4df376c1145d9d7525cd7a40f2db +size 145174 diff --git a/datasets/搭电设备/train/images/订单1806120_54_7103446.jpg b/datasets/搭电设备/train/images/订单1806120_54_7103446.jpg new file mode 100644 index 0000000..4c5f8c8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806120_54_7103446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c121d410c181aa52a9e871808b0a3f614d3f6b0669e763df979a50b38f6136d6 +size 97391 diff --git a/datasets/搭电设备/train/images/订单1806123_54_7103549.jpg b/datasets/搭电设备/train/images/订单1806123_54_7103549.jpg new file mode 100644 index 0000000..e80ff44 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806123_54_7103549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa41b03be1edd7aa63ce6eca86aca5bd54ff0c4db7fd6a40b7bdf9b287ee1db +size 320717 diff --git a/datasets/搭电设备/train/images/订单1806125_54_7103480.jpg b/datasets/搭电设备/train/images/订单1806125_54_7103480.jpg new file mode 100644 index 0000000..0ad271b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806125_54_7103480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa328acb234ff3aa01ee6053ee412234cedbd873a727b42078a7f14f48733cfb +size 595983 diff --git a/datasets/搭电设备/train/images/订单1806126_54_7103490.jpg b/datasets/搭电设备/train/images/订单1806126_54_7103490.jpg new file mode 100644 index 0000000..04b7dc1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806126_54_7103490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7c0afb77657a1813a7df84d7b2c576d5b7b01115e3b4129e775866d03a6f39 +size 167831 diff --git a/datasets/搭电设备/train/images/订单1806128_54_7103590.jpg b/datasets/搭电设备/train/images/订单1806128_54_7103590.jpg new file mode 100644 index 0000000..4d688a5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806128_54_7103590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a040444ad4d40cd1ea4b670f1431b5b9645d949929ecbb09fccdb8d0311c2ad +size 170526 diff --git a/datasets/搭电设备/train/images/订单1806130_54_7103514.jpg b/datasets/搭电设备/train/images/订单1806130_54_7103514.jpg new file mode 100644 index 0000000..80e6d1a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806130_54_7103514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f335dd98ae890ba1b2b8200f54be84ea45d7f074193bc2d130a076e33a81a1 +size 718371 diff --git a/datasets/搭电设备/train/images/订单1806131_54_7103572.jpg b/datasets/搭电设备/train/images/订单1806131_54_7103572.jpg new file mode 100644 index 0000000..db75d33 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806131_54_7103572.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e744216dff33de937003fe0e0624195f4c78df47733ee208d15e9e92d5277be1 +size 96199 diff --git a/datasets/搭电设备/train/images/订单1806133_54_7103530.jpg b/datasets/搭电设备/train/images/订单1806133_54_7103530.jpg new file mode 100644 index 0000000..a9c560e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806133_54_7103530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cfc571e9cc16dce26f1cdf2a07ca84973f3e90e25e1ef31cbe4a677212aa38 +size 165059 diff --git a/datasets/搭电设备/train/images/订单1806136_54_7103558.jpg b/datasets/搭电设备/train/images/订单1806136_54_7103558.jpg new file mode 100644 index 0000000..303ec6e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806136_54_7103558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae412c1f7c0297fcbf53b2ffa27c1ebc04fecdd9c10dea9c1929fd3076c02d4d +size 136295 diff --git a/datasets/搭电设备/train/images/订单1806141_54_7103699.jpg b/datasets/搭电设备/train/images/订单1806141_54_7103699.jpg new file mode 100644 index 0000000..d3cd8a1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806141_54_7103699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:181c8a00797c8a40775a2c5f29df8d656f1084b9c1ab18cd281a95c6a36beb78 +size 135964 diff --git a/datasets/搭电设备/train/images/订单1806142_54_7105270.jpg b/datasets/搭电设备/train/images/订单1806142_54_7105270.jpg new file mode 100644 index 0000000..3fb3eff --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806142_54_7105270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ef591bb370b4dfcf9a656bc8ece514275810856fb67310902acef5a0f7ea86 +size 112225 diff --git a/datasets/搭电设备/train/images/订单1806143_54_7103608.jpg b/datasets/搭电设备/train/images/订单1806143_54_7103608.jpg new file mode 100644 index 0000000..c53344f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806143_54_7103608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21acf20cc0ca4c0b9879ea2a32a367fc04517002201ffcbd3756e76a5bae338 +size 138300 diff --git a/datasets/搭电设备/train/images/订单1806144_54_7103604.jpg b/datasets/搭电设备/train/images/订单1806144_54_7103604.jpg new file mode 100644 index 0000000..daa60d9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806144_54_7103604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517c97d0d22b2e5cd516785b36ddabfbf89acee4a454a302b22eb7b494b33808 +size 357981 diff --git a/datasets/搭电设备/train/images/订单1806145_54_7103742.jpg b/datasets/搭电设备/train/images/订单1806145_54_7103742.jpg new file mode 100644 index 0000000..f4e4fdf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806145_54_7103742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78be59ce8f476cccf34bd9f9d5646eea8632f0d292935edfdd27b487d736e8d4 +size 489818 diff --git a/datasets/搭电设备/train/images/订单1806146_54_7103706.jpg b/datasets/搭电设备/train/images/订单1806146_54_7103706.jpg new file mode 100644 index 0000000..7531e87 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806146_54_7103706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071b7ad62065146d124be94acda15157c5246b276030a045008117e6ae55fb3f +size 94165 diff --git a/datasets/搭电设备/train/images/订单1806148_54_7103658.jpg b/datasets/搭电设备/train/images/订单1806148_54_7103658.jpg new file mode 100644 index 0000000..2e8e07b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806148_54_7103658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80bf9ee5c8ea13967a2cb755c823939433eae6b73ea943200151c1fb1abba1fd +size 127878 diff --git a/datasets/搭电设备/train/images/订单1806151_54_7103664.jpg b/datasets/搭电设备/train/images/订单1806151_54_7103664.jpg new file mode 100644 index 0000000..0699f34 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806151_54_7103664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b44f148e98af3be9604646b054ac168ac54e5e738302966c3881949c6bb369 +size 180736 diff --git a/datasets/搭电设备/train/images/订单1806152_54_7103816.jpg b/datasets/搭电设备/train/images/订单1806152_54_7103816.jpg new file mode 100644 index 0000000..1f104dd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806152_54_7103816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7266e381e79ad34407bde61cfd8e652cd1f5e26420424781a2e50c51d0fc003 +size 140198 diff --git a/datasets/搭电设备/train/images/订单1806154_54_7103795.jpg b/datasets/搭电设备/train/images/订单1806154_54_7103795.jpg new file mode 100644 index 0000000..65f6df2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806154_54_7103795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff95a1934e0b461c0a73719d85f9206c234e28b1b1ad24e1b1c78d3fddbfc1c +size 139615 diff --git a/datasets/搭电设备/train/images/订单1806158_54_7103867.jpg b/datasets/搭电设备/train/images/订单1806158_54_7103867.jpg new file mode 100644 index 0000000..74d424c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806158_54_7103867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e8b7b2a97381ae1d3c4511ffa6a65f4c0b5009d7d55def6bc951700061d803 +size 439632 diff --git a/datasets/搭电设备/train/images/订单1806159_54_7103735.jpg b/datasets/搭电设备/train/images/订单1806159_54_7103735.jpg new file mode 100644 index 0000000..ff124ad --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806159_54_7103735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8922f5fb607d423ab10a797edf2f28bb6cfdfdedc3dcf5e810c96723c86623b0 +size 154774 diff --git a/datasets/搭电设备/train/images/订单1806160_54_7103775.jpg b/datasets/搭电设备/train/images/订单1806160_54_7103775.jpg new file mode 100644 index 0000000..7a46c08 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806160_54_7103775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d871c03a414af63be6c09b95e8d0b7aa0305a6504050920c94357c835664c988 +size 115380 diff --git a/datasets/搭电设备/train/images/订单1806162_54_7103842.jpg b/datasets/搭电设备/train/images/订单1806162_54_7103842.jpg new file mode 100644 index 0000000..b8ac87f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806162_54_7103842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d921f22119943f70d05742f438fe3e5654ab48f5ac27f55b847047e1de32f82a +size 153805 diff --git a/datasets/搭电设备/train/images/订单1806163_54_7103863.jpg b/datasets/搭电设备/train/images/订单1806163_54_7103863.jpg new file mode 100644 index 0000000..a90554f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806163_54_7103863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d22aa4313b8014d44d5e9041837d6f43b02b1818713672000d50933ee2003e +size 117408 diff --git a/datasets/搭电设备/train/images/订单1806164_54_7103890.jpg b/datasets/搭电设备/train/images/订单1806164_54_7103890.jpg new file mode 100644 index 0000000..8661e0c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806164_54_7103890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8af5e0a8fe53f6c052cdc0f24aa44d0c2e2c0cdf69bab62bb3b03ac536613f +size 152094 diff --git a/datasets/搭电设备/train/images/订单1806166_54_7103916.jpg b/datasets/搭电设备/train/images/订单1806166_54_7103916.jpg new file mode 100644 index 0000000..2310fda --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806166_54_7103916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657442d0c0f977cb1e1d8ad0524bd7d684017968bb664d366b5f6a16ebfbb85f +size 116015 diff --git a/datasets/搭电设备/train/images/订单1806168_54_7103970.jpg b/datasets/搭电设备/train/images/订单1806168_54_7103970.jpg new file mode 100644 index 0000000..35dfb11 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806168_54_7103970.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b0e30c4eee104c0e4ee1a4f432bdd9f6ad4c741e3ec6495a5723977c6e64b7 +size 106160 diff --git a/datasets/搭电设备/train/images/订单1806169_54_7103880.jpg b/datasets/搭电设备/train/images/订单1806169_54_7103880.jpg new file mode 100644 index 0000000..c1b9290 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806169_54_7103880.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d14ff512040c2ca9577507fa93fcbcf2b74b5babc92067594bc78fe469b480b +size 126389 diff --git a/datasets/搭电设备/train/images/订单1806173_54_7104034.jpg b/datasets/搭电设备/train/images/订单1806173_54_7104034.jpg new file mode 100644 index 0000000..cf0fa40 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806173_54_7104034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2081e0e3ebb6975b371eacc1c2c2f077ebb0ab8a9a5723ac587b3ac22111f13e +size 83636 diff --git a/datasets/搭电设备/train/images/订单1806174_54_7103901.jpg b/datasets/搭电设备/train/images/订单1806174_54_7103901.jpg new file mode 100644 index 0000000..ded8d82 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806174_54_7103901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b287e1e4238a0d6da8b151bc6f26decd3149ad7b882197a6e281777379bf6e +size 250778 diff --git a/datasets/搭电设备/train/images/订单1806178_54_7103994.jpg b/datasets/搭电设备/train/images/订单1806178_54_7103994.jpg new file mode 100644 index 0000000..27732f2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806178_54_7103994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d19d969d50bc00e74c12650c7cb4d67892710f865fa48c8547882c8f6999b2 +size 425137 diff --git a/datasets/搭电设备/train/images/订单1806180_54_7103977.jpg b/datasets/搭电设备/train/images/订单1806180_54_7103977.jpg new file mode 100644 index 0000000..5cdc787 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806180_54_7103977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a54c8e26d9ae4a5cd101f373eb2d5647a5046351df4282dddd09805050b2d5 +size 170440 diff --git a/datasets/搭电设备/train/images/订单1806182_54_7103990.jpg b/datasets/搭电设备/train/images/订单1806182_54_7103990.jpg new file mode 100644 index 0000000..bd92a6b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806182_54_7103990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:386fa5f831a17dd492c4e4f9c34e9625954dd60750f74cae061b57089dfd6aeb +size 92415 diff --git a/datasets/搭电设备/train/images/订单1806188_54_7104064.jpg b/datasets/搭电设备/train/images/订单1806188_54_7104064.jpg new file mode 100644 index 0000000..3f61e49 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806188_54_7104064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310ac3025393adddcecc585586b7aa0daf9e28dad37d29bc5f210f15505cb0cf +size 130515 diff --git a/datasets/搭电设备/train/images/订单1806189_54_7103914.jpg b/datasets/搭电设备/train/images/订单1806189_54_7103914.jpg new file mode 100644 index 0000000..3ff013b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806189_54_7103914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8840e8015f298e41fa1abe9d0f634768ee85c375d016fbd2cf78a67b5d641c72 +size 164459 diff --git a/datasets/搭电设备/train/images/订单1806191_54_7103999.jpg b/datasets/搭电设备/train/images/订单1806191_54_7103999.jpg new file mode 100644 index 0000000..1446d20 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806191_54_7103999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69ff3cda23c26814af14c055c58ebfba35f8bbfb6eb270d3acaaf082f40d268 +size 134948 diff --git a/datasets/搭电设备/train/images/订单1806192_54_7103973.jpg b/datasets/搭电设备/train/images/订单1806192_54_7103973.jpg new file mode 100644 index 0000000..06e532f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806192_54_7103973.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea2074870da197565157418ef32ca42f669f3c425943348b1cc6a20c609c456 +size 201953 diff --git a/datasets/搭电设备/train/images/订单1806193_54_7104030.jpg b/datasets/搭电设备/train/images/订单1806193_54_7104030.jpg new file mode 100644 index 0000000..fc13c0d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806193_54_7104030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d69d0f54e675a148d0e033284b3309692f04e06fe9d8d817803915e22cbf467 +size 140966 diff --git a/datasets/搭电设备/train/images/订单1806194_54_7103960.jpg b/datasets/搭电设备/train/images/订单1806194_54_7103960.jpg new file mode 100644 index 0000000..7c43ab7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806194_54_7103960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6edd42b12f4f954d6fa8e775c8f7e05072853d6c2e688ccd53e91777f6f44f22 +size 218963 diff --git a/datasets/搭电设备/train/images/订单1806195_54_7104368.jpg b/datasets/搭电设备/train/images/订单1806195_54_7104368.jpg new file mode 100644 index 0000000..1bac512 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806195_54_7104368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4358a1300029dcd7ba50754ad87273a0025daca7e341f3f944753459c9512181 +size 429936 diff --git a/datasets/搭电设备/train/images/订单1806196_54_7104052.jpg b/datasets/搭电设备/train/images/订单1806196_54_7104052.jpg new file mode 100644 index 0000000..b35a745 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806196_54_7104052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ed19057a9f1e8e8f2a2bfb16c5e4b44fa21c51ef49a2b712f61fa8b6d332aa +size 623127 diff --git a/datasets/搭电设备/train/images/订单1806197_54_7104138.jpg b/datasets/搭电设备/train/images/订单1806197_54_7104138.jpg new file mode 100644 index 0000000..00ac2b0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806197_54_7104138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a45c40afff67e645d5b2aee8666a70d18334f23470fc69814e3e454bf3cca2 +size 141258 diff --git a/datasets/搭电设备/train/images/订单1806198_54_7104063.jpg b/datasets/搭电设备/train/images/订单1806198_54_7104063.jpg new file mode 100644 index 0000000..afe6107 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806198_54_7104063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df303cf753966b872af112fe16bb3d61626c15bf46c71aee3d986854c315107 +size 101465 diff --git a/datasets/搭电设备/train/images/订单1806203_54_7104215.jpg b/datasets/搭电设备/train/images/订单1806203_54_7104215.jpg new file mode 100644 index 0000000..e555804 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806203_54_7104215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902977a0a0ad0b22258424082d7eeda1ddcaca673ffb1ed5f3495032dc09df8a +size 106942 diff --git a/datasets/搭电设备/train/images/订单1806206_54_7104318.jpg b/datasets/搭电设备/train/images/订单1806206_54_7104318.jpg new file mode 100644 index 0000000..b48c176 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806206_54_7104318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8509f010d7a79f6094694bc2eaa39357846ed4c9023ca193eac8b274093b92f +size 278748 diff --git a/datasets/搭电设备/train/images/订单1806207_54_7104201.jpg b/datasets/搭电设备/train/images/订单1806207_54_7104201.jpg new file mode 100644 index 0000000..6557377 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806207_54_7104201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f32299a4cb4292a470ea6a83c54593afd7e2b9c8e48b75ab2801f24e5563ebd4 +size 222001 diff --git a/datasets/搭电设备/train/images/订单1806210_54_7104181.jpg b/datasets/搭电设备/train/images/订单1806210_54_7104181.jpg new file mode 100644 index 0000000..1cb15d7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806210_54_7104181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9ab0694c64b5522a10be660c0f2c89963ad29d25b13c2e3f6c31145a4e4720 +size 75754 diff --git a/datasets/搭电设备/train/images/订单1806211_54_7104451.jpg b/datasets/搭电设备/train/images/订单1806211_54_7104451.jpg new file mode 100644 index 0000000..509f3b4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806211_54_7104451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dddf41d34e7fbab87c83ed9f8ae15ecfc1da8c4314a388e9014de866baf4369 +size 121506 diff --git a/datasets/搭电设备/train/images/订单1806212_54_7104337.jpg b/datasets/搭电设备/train/images/订单1806212_54_7104337.jpg new file mode 100644 index 0000000..f744c9f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806212_54_7104337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59791aa42ee696f47f52bfb92cb7a2d62f8bd4fdc21e5ef1c94dd8781704b87a +size 103129 diff --git a/datasets/搭电设备/train/images/订单1806215_54_7104332.jpg b/datasets/搭电设备/train/images/订单1806215_54_7104332.jpg new file mode 100644 index 0000000..2febf4d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806215_54_7104332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2396039c9dbabf12f823df8f6c963d7b8c5a7995d7e89b4fca6ca902710ca3 +size 126872 diff --git a/datasets/搭电设备/train/images/订单1806216_54_7104395.jpg b/datasets/搭电设备/train/images/订单1806216_54_7104395.jpg new file mode 100644 index 0000000..ae947f8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806216_54_7104395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96c8f50860852476fc1c7d82eecfe54addc8811a227b43902d4207547eef506 +size 1050533 diff --git a/datasets/搭电设备/train/images/订单1806217_54_7104308.jpg b/datasets/搭电设备/train/images/订单1806217_54_7104308.jpg new file mode 100644 index 0000000..7b56037 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806217_54_7104308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607b216fbedbdd81ccda70fcb2d17bfffd26e3d9cfec5668bc09bd3445a69903 +size 728757 diff --git a/datasets/搭电设备/train/images/订单1806218_54_7104326.jpg b/datasets/搭电设备/train/images/订单1806218_54_7104326.jpg new file mode 100644 index 0000000..7d9ee27 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806218_54_7104326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0788f814b5ae2c048a5b5045fdb94dc50241f69f2b872b033b41ae19a3e5e7 +size 250139 diff --git a/datasets/搭电设备/train/images/订单1806219_54_7104381.jpg b/datasets/搭电设备/train/images/订单1806219_54_7104381.jpg new file mode 100644 index 0000000..b4521d1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806219_54_7104381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa3c2f2b4bd5fe1c2946dd528386e7f68a6a2fcdfa7165af6e96ee9896ddcc69 +size 246652 diff --git a/datasets/搭电设备/train/images/订单1806225_54_7104446.jpg b/datasets/搭电设备/train/images/订单1806225_54_7104446.jpg new file mode 100644 index 0000000..6eb8bb8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806225_54_7104446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456f6120f62c8f703d125bc01779f8e99494826d2a2c46a390de7340d3d1f0ca +size 641690 diff --git a/datasets/搭电设备/train/images/订单1806226_54_7104406.jpg b/datasets/搭电设备/train/images/订单1806226_54_7104406.jpg new file mode 100644 index 0000000..4ed5d68 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806226_54_7104406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b439093bb6723941c54f8ef0814f2dbecd43e963b2e69232178b45eaaad96297 +size 129589 diff --git a/datasets/搭电设备/train/images/订单1806227_54_7104530.jpg b/datasets/搭电设备/train/images/订单1806227_54_7104530.jpg new file mode 100644 index 0000000..7388f8d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806227_54_7104530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5733e7993a7267c366174aba94b02a0486da756e33ec07ede37b51c739232b63 +size 119580 diff --git a/datasets/搭电设备/train/images/订单1806228_54_7104445.jpg b/datasets/搭电设备/train/images/订单1806228_54_7104445.jpg new file mode 100644 index 0000000..d157b9f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806228_54_7104445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4b9694ef21fd29fd295b61e5902592dc280b6e3cf3f0a3a8f15f4dc316f4f8 +size 115387 diff --git a/datasets/搭电设备/train/images/订单1806231_54_7104705.jpg b/datasets/搭电设备/train/images/订单1806231_54_7104705.jpg new file mode 100644 index 0000000..8e55a8c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806231_54_7104705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f3ca7e13249c8b147490696c5f106704256c687a7e1ea08e71745268449f56 +size 151338 diff --git a/datasets/搭电设备/train/images/订单1806232_54_7104441.jpg b/datasets/搭电设备/train/images/订单1806232_54_7104441.jpg new file mode 100644 index 0000000..db25474 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806232_54_7104441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6ff566b511a9d075f0686c78df3e91f93eb5ba0665f242c4d216e11ea0bb61 +size 171605 diff --git a/datasets/搭电设备/train/images/订单1806234_54_7104484.jpg b/datasets/搭电设备/train/images/订单1806234_54_7104484.jpg new file mode 100644 index 0000000..20deddf --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806234_54_7104484.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2d5e0a357e472200ef7793c3c8751ced625f1580ab4eb243ec3300c40f2f6c +size 137119 diff --git a/datasets/搭电设备/train/images/订单1806239_54_7104607.jpg b/datasets/搭电设备/train/images/订单1806239_54_7104607.jpg new file mode 100644 index 0000000..c75f447 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806239_54_7104607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbb386b5a810dee475ae593cb0b416b5f30ea5aec10f31562f240f90b9d3b3f +size 138074 diff --git a/datasets/搭电设备/train/images/订单1806242_54_7104636.jpg b/datasets/搭电设备/train/images/订单1806242_54_7104636.jpg new file mode 100644 index 0000000..2dde6bd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806242_54_7104636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1eba6dee12ad25e77d2ab5af8f15b5011ad5a1ff60b0eb1a34d62c3364d774e +size 243372 diff --git a/datasets/搭电设备/train/images/订单1806243_54_7104585.jpg b/datasets/搭电设备/train/images/订单1806243_54_7104585.jpg new file mode 100644 index 0000000..cd6588f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806243_54_7104585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6a61e39a368e799766cba9190c2db05188a2977de81aa6882e01bdb2b23963 +size 133049 diff --git a/datasets/搭电设备/train/images/订单1806244_54_7104575.jpg b/datasets/搭电设备/train/images/订单1806244_54_7104575.jpg new file mode 100644 index 0000000..3c775be --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806244_54_7104575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895cb247444fa18945f4855220747ac2c30dd5bb15179ff13e947364d77f0054 +size 496016 diff --git a/datasets/搭电设备/train/images/订单1806246_54_7104767.jpg b/datasets/搭电设备/train/images/订单1806246_54_7104767.jpg new file mode 100644 index 0000000..dec1a8e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806246_54_7104767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca055d92074443e41badb3bd40ddd817e4a66fd4ae0a38d64ca39f8cf638d66 +size 110313 diff --git a/datasets/搭电设备/train/images/订单1806247_54_7104654.jpg b/datasets/搭电设备/train/images/订单1806247_54_7104654.jpg new file mode 100644 index 0000000..688895f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806247_54_7104654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763de702051bc42775615eb51b079765deac238f32cf1d6a423a0183b516b26b +size 74828 diff --git a/datasets/搭电设备/train/images/订单1806248_54_7104717.jpg b/datasets/搭电设备/train/images/订单1806248_54_7104717.jpg new file mode 100644 index 0000000..15ae5f9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806248_54_7104717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20c401819971d0a6d696798168206c3461465a9401e25f0cd4d8c9379b7ae81 +size 210627 diff --git a/datasets/搭电设备/train/images/订单1806251_54_7104789.jpg b/datasets/搭电设备/train/images/订单1806251_54_7104789.jpg new file mode 100644 index 0000000..53cdd53 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806251_54_7104789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc922fa07d61ef40ad5069e5e0c663c624e94352a870a61471867ace2489356 +size 152425 diff --git a/datasets/搭电设备/train/images/订单1806252_54_7104614.jpg b/datasets/搭电设备/train/images/订单1806252_54_7104614.jpg new file mode 100644 index 0000000..4805092 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806252_54_7104614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f52b68e02aa56668d81c967004c408b7de604bcb33ad22276feca19c6aa2ac8 +size 142128 diff --git a/datasets/搭电设备/train/images/订单1806253_54_7104784.jpg b/datasets/搭电设备/train/images/订单1806253_54_7104784.jpg new file mode 100644 index 0000000..14dcba3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806253_54_7104784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a038d816ef0f0873d7906ebe749fd855f9773eb37286bb2962537e589f40e0 +size 141835 diff --git a/datasets/搭电设备/train/images/订单1806254_54_7104805.jpg b/datasets/搭电设备/train/images/订单1806254_54_7104805.jpg new file mode 100644 index 0000000..1af111b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806254_54_7104805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d93d311d1b28ebb35a092d81a4bdfca294fde9282e4f7dae4552a30cd8b0210 +size 502930 diff --git a/datasets/搭电设备/train/images/订单1806256_54_7104769.jpg b/datasets/搭电设备/train/images/订单1806256_54_7104769.jpg new file mode 100644 index 0000000..1c852ca --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806256_54_7104769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf0e595c31777d713ca33d4d0c3754607197a52a353ec7b4f44d92073ba4b7c +size 156210 diff --git a/datasets/搭电设备/train/images/订单1806257_54_7104675.jpg b/datasets/搭电设备/train/images/订单1806257_54_7104675.jpg new file mode 100644 index 0000000..c957d08 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806257_54_7104675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8dd5e4a96c1d38a1a073622aa47297b433e7e4968f7b147dab468e55ec98da6 +size 134776 diff --git a/datasets/搭电设备/train/images/订单1806259_54_7104979.jpg b/datasets/搭电设备/train/images/订单1806259_54_7104979.jpg new file mode 100644 index 0000000..fc0905d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806259_54_7104979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8752b83eae8a730444d13109e8aaf52cec9d150f4f31101add6d0e42201a7ed9 +size 232721 diff --git a/datasets/搭电设备/train/images/订单1806260_54_7104744.jpg b/datasets/搭电设备/train/images/订单1806260_54_7104744.jpg new file mode 100644 index 0000000..47b140c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806260_54_7104744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96faf84e18ea970251a61d07854ab5e492bc6da46501f75009dbf23561e95dc7 +size 178047 diff --git a/datasets/搭电设备/train/images/订单1806263_54_7104936.jpg b/datasets/搭电设备/train/images/订单1806263_54_7104936.jpg new file mode 100644 index 0000000..032aa33 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806263_54_7104936.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad6791f352d60096328c48660ef8c2e5f7d5cde5b0b0d2894b7e78b980c586a +size 124665 diff --git a/datasets/搭电设备/train/images/订单1806264_54_7104838.jpg b/datasets/搭电设备/train/images/订单1806264_54_7104838.jpg new file mode 100644 index 0000000..3a6c2a3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806264_54_7104838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9286cfb0e49edaf427fe6994733a03d08469de11a06f09821ddf34650dafcbd8 +size 139827 diff --git a/datasets/搭电设备/train/images/订单1806265_54_7104821.jpg b/datasets/搭电设备/train/images/订单1806265_54_7104821.jpg new file mode 100644 index 0000000..1f0759f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806265_54_7104821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628e97bd6015ea2bae0f4b07f4e5aa0f8a4119e312693507f860b9251303b33f +size 452865 diff --git a/datasets/搭电设备/train/images/订单1806269_54_7104850.jpg b/datasets/搭电设备/train/images/订单1806269_54_7104850.jpg new file mode 100644 index 0000000..a84c2a5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806269_54_7104850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce4e5bae41221087e76123c965f6b9812757f138b67038de06d933f79534f25 +size 421206 diff --git a/datasets/搭电设备/train/images/订单1806270_54_7104963.jpg b/datasets/搭电设备/train/images/订单1806270_54_7104963.jpg new file mode 100644 index 0000000..0b68dec --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806270_54_7104963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ab606985d02de157af785ea650af1e35594bde56c0cade130de50cf66689d3 +size 107657 diff --git a/datasets/搭电设备/train/images/订单1806273_54_7104888.jpg b/datasets/搭电设备/train/images/订单1806273_54_7104888.jpg new file mode 100644 index 0000000..7e62f59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806273_54_7104888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f6de7099dbb12607109bf33923a0cacb0a598da92100f8774006d92d7d3430 +size 155409 diff --git a/datasets/搭电设备/train/images/订单1806274_54_7104935.jpg b/datasets/搭电设备/train/images/订单1806274_54_7104935.jpg new file mode 100644 index 0000000..5d30746 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806274_54_7104935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c959b2f3cea7037418271ae81dcc2fb5943a51cde841859807030149f2ad5af +size 634769 diff --git a/datasets/搭电设备/train/images/订单1806275_54_7104929.jpg b/datasets/搭电设备/train/images/订单1806275_54_7104929.jpg new file mode 100644 index 0000000..fbcd0de --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806275_54_7104929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6cd1520f50ce4fb7b8bbfc68b6294c9b04317a4e0e7e40000e979f0c6d6049 +size 131385 diff --git a/datasets/搭电设备/train/images/订单1806277_54_7104953.jpg b/datasets/搭电设备/train/images/订单1806277_54_7104953.jpg new file mode 100644 index 0000000..642a1fe --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806277_54_7104953.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e87edf52af8ba9f5bdad9fa60259bf0cc03154ee7d7dadc02355505713d65d2 +size 150255 diff --git a/datasets/搭电设备/train/images/订单1806280_54_7105038.jpg b/datasets/搭电设备/train/images/订单1806280_54_7105038.jpg new file mode 100644 index 0000000..f8678fa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806280_54_7105038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e985d484bdb913f66a91a3c8ecd98588ba6e61ad28c8f8c17e8bfb25722f997 +size 422609 diff --git a/datasets/搭电设备/train/images/订单1806282_54_7105058.jpg b/datasets/搭电设备/train/images/订单1806282_54_7105058.jpg new file mode 100644 index 0000000..7dd91ef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806282_54_7105058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2716c5680ad3d22988a848f96878ec250bb9826333a9df8305d6eecb7b9b9f +size 105754 diff --git a/datasets/搭电设备/train/images/订单1806284_54_7105008.jpg b/datasets/搭电设备/train/images/订单1806284_54_7105008.jpg new file mode 100644 index 0000000..5159ce4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806284_54_7105008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e586870747a82981c4aac8c0f5354f4e9244224be6053da734011986b8c846b +size 133217 diff --git a/datasets/搭电设备/train/images/订单1806286_54_7105062.jpg b/datasets/搭电设备/train/images/订单1806286_54_7105062.jpg new file mode 100644 index 0000000..9391fc4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806286_54_7105062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defe6e015bee561c445ee5149daf58d5393f5f8d2ea4cac1d17eb6b042d67361 +size 118579 diff --git a/datasets/搭电设备/train/images/订单1806289_54_7105037.jpg b/datasets/搭电设备/train/images/订单1806289_54_7105037.jpg new file mode 100644 index 0000000..0fb0b63 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806289_54_7105037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a9ed9691c986a9abb1ee1855c76ba93053cabcc8665e73139ea6ce13b5cf38 +size 104430 diff --git a/datasets/搭电设备/train/images/订单1806291_54_7105072.jpg b/datasets/搭电设备/train/images/订单1806291_54_7105072.jpg new file mode 100644 index 0000000..4a11489 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806291_54_7105072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b194a20536801fd017cbabe41ccf6f37b1f952c53b8b9aaf9ebc12bf5e3d839b +size 142441 diff --git a/datasets/搭电设备/train/images/订单1806292_54_7105159.jpg b/datasets/搭电设备/train/images/订单1806292_54_7105159.jpg new file mode 100644 index 0000000..0895f4f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806292_54_7105159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a779e699b7e08fa94c98fe6a9a04ddbc4b2645ca082fff2ef28d94852a0bab2 +size 555211 diff --git a/datasets/搭电设备/train/images/订单1806293_54_7105248.jpg b/datasets/搭电设备/train/images/订单1806293_54_7105248.jpg new file mode 100644 index 0000000..7d0bcd8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806293_54_7105248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23adc146a5a3085c968de4c735b5f4b2f7df0e0442fb0e6a59ba86a834d5635a +size 403559 diff --git a/datasets/搭电设备/train/images/订单1806296_54_7105124.jpg b/datasets/搭电设备/train/images/订单1806296_54_7105124.jpg new file mode 100644 index 0000000..fea1fe8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806296_54_7105124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be6f5ce966a39eee94236704cbaeb7b382ad2d5e1e108cc9b58305c6ca3ce58 +size 178200 diff --git a/datasets/搭电设备/train/images/订单1806298_54_7105115.jpg b/datasets/搭电设备/train/images/订单1806298_54_7105115.jpg new file mode 100644 index 0000000..87067cd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806298_54_7105115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d6d13f3daae0aedf6b33165919af41e3a992d810e8cfce1fd5f5da3488ae8e +size 139171 diff --git a/datasets/搭电设备/train/images/订单1806300_54_7105148.jpg b/datasets/搭电设备/train/images/订单1806300_54_7105148.jpg new file mode 100644 index 0000000..00fbd02 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806300_54_7105148.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2962aefad40b85fad06a7c3fb64501543499c2db605f8078b1931802889b97 +size 418552 diff --git a/datasets/搭电设备/train/images/订单1806301_54_7105201.jpg b/datasets/搭电设备/train/images/订单1806301_54_7105201.jpg new file mode 100644 index 0000000..c3e24c1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806301_54_7105201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb91d92475927b4bfb3640a850dabfccfa845d0fb07b3687b6997ba8deb54f71 +size 158106 diff --git a/datasets/搭电设备/train/images/订单1806302_54_7105093.jpg b/datasets/搭电设备/train/images/订单1806302_54_7105093.jpg new file mode 100644 index 0000000..a40693c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806302_54_7105093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e5a8499c9c2e078274460b2081771aba2b1517e912cf8efc0349015353ed61 +size 151584 diff --git a/datasets/搭电设备/train/images/订单1806303_54_7105178.jpg b/datasets/搭电设备/train/images/订单1806303_54_7105178.jpg new file mode 100644 index 0000000..b04e9eb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806303_54_7105178.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23bdd0dee03a20ff569dc395369896e5c1351a67b4b30b0e9de18163b2335d3f +size 152835 diff --git a/datasets/搭电设备/train/images/订单1806306_54_7105191.jpg b/datasets/搭电设备/train/images/订单1806306_54_7105191.jpg new file mode 100644 index 0000000..cd5e181 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806306_54_7105191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b166979c2062b4ea5d5ce8758a56b7e197b724f28d858fd81c953ff5887daa55 +size 104750 diff --git a/datasets/搭电设备/train/images/订单1806307_54_7105146.jpg b/datasets/搭电设备/train/images/订单1806307_54_7105146.jpg new file mode 100644 index 0000000..1cc4421 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806307_54_7105146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5bc4f7d162ba8d92b84c59cd07525de3f1d05b5d54a2162063fac8a0fef40b +size 163628 diff --git a/datasets/搭电设备/train/images/订单1806308_54_7105227.jpg b/datasets/搭电设备/train/images/订单1806308_54_7105227.jpg new file mode 100644 index 0000000..c3a8f57 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806308_54_7105227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:665ac8146a5ab3c3dec9d2bed10f68a15c25bbad9ff5d0c71c3494f6a5967a74 +size 167479 diff --git a/datasets/搭电设备/train/images/订单1806309_54_7105289.jpg b/datasets/搭电设备/train/images/订单1806309_54_7105289.jpg new file mode 100644 index 0000000..dc18f74 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806309_54_7105289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d03af2a19c678600a73631c9055adb78ed30eff9458b69c4bd5e0e870fb5a21 +size 442320 diff --git a/datasets/搭电设备/train/images/订单1806310_54_7105823.jpg b/datasets/搭电设备/train/images/订单1806310_54_7105823.jpg new file mode 100644 index 0000000..625c101 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806310_54_7105823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0cbf83ee7cdddc6571bb6783e5ce8544975660b461bdf8a0b9c23170009d5f +size 187523 diff --git a/datasets/搭电设备/train/images/订单1806311_54_7105530.jpg b/datasets/搭电设备/train/images/订单1806311_54_7105530.jpg new file mode 100644 index 0000000..9086d89 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806311_54_7105530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1770753eba9f00da9b9df3b8a917f285746ca159e0af52a91668ed777f5ad10 +size 108216 diff --git a/datasets/搭电设备/train/images/订单1806312_54_7105275.jpg b/datasets/搭电设备/train/images/订单1806312_54_7105275.jpg new file mode 100644 index 0000000..a8961f3 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806312_54_7105275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ae983564cba1d73b026aa978abd0f9e78f5f3e77dc7808782434d5bceeae46 +size 564048 diff --git a/datasets/搭电设备/train/images/订单1806314_54_7105332.jpg b/datasets/搭电设备/train/images/订单1806314_54_7105332.jpg new file mode 100644 index 0000000..d1a7d1d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806314_54_7105332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b7fa47f07198745112fd2cd231acc1491a00e87c8a682df86bb801760282f1 +size 259084 diff --git a/datasets/搭电设备/train/images/订单1806315_54_7105311.jpg b/datasets/搭电设备/train/images/订单1806315_54_7105311.jpg new file mode 100644 index 0000000..33fa12f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806315_54_7105311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0dae3a98417fe6705125de199c5510d28e8f34de30465ff5681ec8dbad2cd7b +size 128793 diff --git a/datasets/搭电设备/train/images/订单1806318_54_7105358.jpg b/datasets/搭电设备/train/images/订单1806318_54_7105358.jpg new file mode 100644 index 0000000..85009da --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806318_54_7105358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b97db49cb4efdd7f653d5b7f918c80fe9f4df23235cb9d1ba914e332a98b76 +size 187084 diff --git a/datasets/搭电设备/train/images/订单1806319_54_7105281.jpg b/datasets/搭电设备/train/images/订单1806319_54_7105281.jpg new file mode 100644 index 0000000..5cbfd2a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806319_54_7105281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a26fcdb404bc6900178187297419b346ea77bbc3ba55d19778ecd8c1a46e01 +size 477522 diff --git a/datasets/搭电设备/train/images/订单1806320_54_7105474.jpg b/datasets/搭电设备/train/images/订单1806320_54_7105474.jpg new file mode 100644 index 0000000..4596772 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806320_54_7105474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ad5212bbbc18fd7b1dc65feca3cffe3226a322395792ef4a7aa11f5774a87d +size 1015568 diff --git a/datasets/搭电设备/train/images/订单1806323_54_7105341.jpg b/datasets/搭电设备/train/images/订单1806323_54_7105341.jpg new file mode 100644 index 0000000..02d8ffb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806323_54_7105341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb00aefb23da0c244ca718c737420f1daf3e301b12fb99b2296827822648d80d +size 124720 diff --git a/datasets/搭电设备/train/images/订单1806324_54_7105313.jpg b/datasets/搭电设备/train/images/订单1806324_54_7105313.jpg new file mode 100644 index 0000000..a875067 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806324_54_7105313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e6067dce582a196255b355468b30fb9b150cbbda131e336703d41f1068fcd7 +size 112926 diff --git a/datasets/搭电设备/train/images/订单1806325_54_7105642.jpg b/datasets/搭电设备/train/images/订单1806325_54_7105642.jpg new file mode 100644 index 0000000..4880342 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806325_54_7105642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9de753e67c771835bc6b7ddb9459aaef47b68fa5c5968b0df453c884ac7086b +size 135652 diff --git a/datasets/搭电设备/train/images/订单1806327_54_7105364.jpg b/datasets/搭电设备/train/images/订单1806327_54_7105364.jpg new file mode 100644 index 0000000..d4263d0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806327_54_7105364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38345d4a12d752ad1c350ac4cfa572d7719614afee5acd48a68fdba5eeed4915 +size 519953 diff --git a/datasets/搭电设备/train/images/订单1806328_54_7105456.jpg b/datasets/搭电设备/train/images/订单1806328_54_7105456.jpg new file mode 100644 index 0000000..b0aae59 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806328_54_7105456.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3151f51421287ecbcf558cc8cf9da060fd34d17aa5238524b27378d6e0994099 +size 92501 diff --git a/datasets/搭电设备/train/images/订单1806330_54_7105485.jpg b/datasets/搭电设备/train/images/订单1806330_54_7105485.jpg new file mode 100644 index 0000000..01d06ac --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806330_54_7105485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd362667425c19811c6da932fc9bef62633e65908a1c5da59ca2617103aef5b +size 123287 diff --git a/datasets/搭电设备/train/images/订单1806331_54_7105382.jpg b/datasets/搭电设备/train/images/订单1806331_54_7105382.jpg new file mode 100644 index 0000000..ead29f7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806331_54_7105382.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c931779b9e08a9e338b4f55659ab582d97b013af9fc4cd2a93b4d981f0d7bf1 +size 113763 diff --git a/datasets/搭电设备/train/images/订单1806333_54_7105443.jpg b/datasets/搭电设备/train/images/订单1806333_54_7105443.jpg new file mode 100644 index 0000000..245274a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806333_54_7105443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40617a26608df806574f42ca5dd02b625895fe2d32dbd7d6e014fe30aafe2136 +size 99906 diff --git a/datasets/搭电设备/train/images/订单1806334_54_7105434.jpg b/datasets/搭电设备/train/images/订单1806334_54_7105434.jpg new file mode 100644 index 0000000..822df4f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806334_54_7105434.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2585e9da7c47c8ee444efe1df996deb06194b00ad3b7a8ce8a4d0e97bbf89d +size 96224 diff --git a/datasets/搭电设备/train/images/订单1806336_54_7105414.jpg b/datasets/搭电设备/train/images/订单1806336_54_7105414.jpg new file mode 100644 index 0000000..cb8b344 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806336_54_7105414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57c9f6a628ea8cdc9cb1c9e1fd57d4d0359c6e2aa9589d31dcdfc5f716d13b9 +size 236073 diff --git a/datasets/搭电设备/train/images/订单1806337_54_7105559.jpg b/datasets/搭电设备/train/images/订单1806337_54_7105559.jpg new file mode 100644 index 0000000..dd58cf9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806337_54_7105559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144d93266d021808d1e02eca81d98675563cedb399cacc82fc844a5149dd91f3 +size 98534 diff --git a/datasets/搭电设备/train/images/订单1806340_54_7105587.jpg b/datasets/搭电设备/train/images/订单1806340_54_7105587.jpg new file mode 100644 index 0000000..cb124ab --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806340_54_7105587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ddb3fe7482e14ca5bcbb56612d551e59d81558dab22db9aacb0a99cc9613ec +size 632181 diff --git a/datasets/搭电设备/train/images/订单1806342_54_7105902.jpg b/datasets/搭电设备/train/images/订单1806342_54_7105902.jpg new file mode 100644 index 0000000..fdce738 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806342_54_7105902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada5b52616f8886eac787ed7763915a6811ed84e675abcfee5ea7cdefd915b9e +size 93809 diff --git a/datasets/搭电设备/train/images/订单1806343_54_7105599.jpg b/datasets/搭电设备/train/images/订单1806343_54_7105599.jpg new file mode 100644 index 0000000..8d3e3b2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806343_54_7105599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56976cf2b64c71aa320d3103c9e37a0806bd3b4cedfe3c7061f458a6c7975957 +size 319239 diff --git a/datasets/搭电设备/train/images/订单1806345_54_7105514.jpg b/datasets/搭电设备/train/images/订单1806345_54_7105514.jpg new file mode 100644 index 0000000..2526aef --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806345_54_7105514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eca6342c3763651e1a8b3ed6f272e59855f0bc4a463306f7a55198f49c1bbb0 +size 80261 diff --git a/datasets/搭电设备/train/images/订单1806347_54_7105689.jpg b/datasets/搭电设备/train/images/订单1806347_54_7105689.jpg new file mode 100644 index 0000000..e1a5dbd --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806347_54_7105689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4e5620a6b79ba687bb2a43db570db7375505cad4027a252fdc6b5cdf873fbe +size 353600 diff --git a/datasets/搭电设备/train/images/订单1806348_54_7105550.jpg b/datasets/搭电设备/train/images/订单1806348_54_7105550.jpg new file mode 100644 index 0000000..7b5fa1c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806348_54_7105550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3bd826eecbe2ac4cec4767acac05369d57bb4d32413de58a492e9e47fcb74a0 +size 122420 diff --git a/datasets/搭电设备/train/images/订单1806349_54_7105944.jpg b/datasets/搭电设备/train/images/订单1806349_54_7105944.jpg new file mode 100644 index 0000000..fffcaa2 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806349_54_7105944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4f6dedffd087ed9e96293fb56bf069f8480a11653ab0fad185e358e4a48937 +size 532961 diff --git a/datasets/搭电设备/train/images/订单1806350_54_7105602.jpg b/datasets/搭电设备/train/images/订单1806350_54_7105602.jpg new file mode 100644 index 0000000..5a95781 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806350_54_7105602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6407c770ba504097957a83ab363ae138704aaec4eaf0afc56d28622569567d +size 75489 diff --git a/datasets/搭电设备/train/images/订单1806351_54_7105528.jpg b/datasets/搭电设备/train/images/订单1806351_54_7105528.jpg new file mode 100644 index 0000000..8bf6683 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806351_54_7105528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b652254812bb451eb79eb07c0b897133d239c80218675abdbdcac34d34bc5c6e +size 121284 diff --git a/datasets/搭电设备/train/images/订单1806353_54_7105644.jpg b/datasets/搭电设备/train/images/订单1806353_54_7105644.jpg new file mode 100644 index 0000000..0e34a8b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806353_54_7105644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1925afc35175ded9710b64851f4dba8eafcb5de378347afa5c292c6153dba7e5 +size 164513 diff --git a/datasets/搭电设备/train/images/订单1806355_54_7105616.jpg b/datasets/搭电设备/train/images/订单1806355_54_7105616.jpg new file mode 100644 index 0000000..51ed4bb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806355_54_7105616.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3290781686859f371f587ad62c3ad6956cd701d618cdb6c6b4a49bfe31a59d +size 136490 diff --git a/datasets/搭电设备/train/images/订单1806357_54_7105676.jpg b/datasets/搭电设备/train/images/订单1806357_54_7105676.jpg new file mode 100644 index 0000000..576ca53 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806357_54_7105676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc935aa611e003420624e378ece2785c9293d942178658d8d6b77da9ee0f071 +size 128767 diff --git a/datasets/搭电设备/train/images/订单1806358_54_7105752.jpg b/datasets/搭电设备/train/images/订单1806358_54_7105752.jpg new file mode 100644 index 0000000..6d86c3c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806358_54_7105752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4f2bfe419ab72ee00a9c583b86c8f7ed158baf0fab5e6387840bf21a8c0a5d +size 104246 diff --git a/datasets/搭电设备/train/images/订单1806359_54_7105692.jpg b/datasets/搭电设备/train/images/订单1806359_54_7105692.jpg new file mode 100644 index 0000000..9f3e139 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806359_54_7105692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943f2d442c1d425e1973f94a8735b7a0c0868508d670d373c432501f68bfac68 +size 122767 diff --git a/datasets/搭电设备/train/images/订单1806360_54_7105665.jpg b/datasets/搭电设备/train/images/订单1806360_54_7105665.jpg new file mode 100644 index 0000000..9f72576 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806360_54_7105665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c34a44d8ddf9e2c4fa58fe7b31d1fd2b46d906cb72f17d618d46492f60149c +size 116808 diff --git a/datasets/搭电设备/train/images/订单1806361_54_7105716.jpg b/datasets/搭电设备/train/images/订单1806361_54_7105716.jpg new file mode 100644 index 0000000..4c4a6db --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806361_54_7105716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3c11434d045a3d4b89f78584f4f692b63f95740bc84356e06b56baaf7be53aa +size 146932 diff --git a/datasets/搭电设备/train/images/订单1806362_54_7105963.jpg b/datasets/搭电设备/train/images/订单1806362_54_7105963.jpg new file mode 100644 index 0000000..416f566 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806362_54_7105963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b085ba3d8be28e44e9184604da63c1232280e3bd960e5e9cc914ffed2683682 +size 135549 diff --git a/datasets/搭电设备/train/images/订单1806363_54_7105699.jpg b/datasets/搭电设备/train/images/订单1806363_54_7105699.jpg new file mode 100644 index 0000000..b5363c7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806363_54_7105699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bcaaf5055b7ffc279886a3c2bcf3ec2e768e2d467aa373b8bf0a60e64f026d9 +size 116656 diff --git a/datasets/搭电设备/train/images/订单1806364_54_7105923.jpg b/datasets/搭电设备/train/images/订单1806364_54_7105923.jpg new file mode 100644 index 0000000..20fa59b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806364_54_7105923.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab4e5574a600d8c5294b0c9b62c3128acaced9f9418f6a8d1d8702ac2441e44 +size 424302 diff --git a/datasets/搭电设备/train/images/订单1806365_54_7105863.jpg b/datasets/搭电设备/train/images/订单1806365_54_7105863.jpg new file mode 100644 index 0000000..d501ed9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806365_54_7105863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3079ca075a0378ac4334fa908f986202d2fcc7699e377f042d018ac282fa65 +size 141445 diff --git a/datasets/搭电设备/train/images/订单1806366_54_7105789.jpg b/datasets/搭电设备/train/images/订单1806366_54_7105789.jpg new file mode 100644 index 0000000..6feee91 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806366_54_7105789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b95aee8f9d0fe29673e78ad6ad400b9e240585981c3da199cd45aca2a06b61 +size 137909 diff --git a/datasets/搭电设备/train/images/订单1806367_54_7105801.jpg b/datasets/搭电设备/train/images/订单1806367_54_7105801.jpg new file mode 100644 index 0000000..4ca736f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806367_54_7105801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09261fe4d5c9bf68297d2333c6cf1f4fd27f6135f656aeaafd4edcbeffcd3ef6 +size 418722 diff --git a/datasets/搭电设备/train/images/订单1806368_54_7105724.jpg b/datasets/搭电设备/train/images/订单1806368_54_7105724.jpg new file mode 100644 index 0000000..8d4e34a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806368_54_7105724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c390f4755c6f78fc2f516da0e2460b1ce235a01867d40bb5a782023809b5a4af +size 511443 diff --git a/datasets/搭电设备/train/images/订单1806369_54_7105746.jpg b/datasets/搭电设备/train/images/订单1806369_54_7105746.jpg new file mode 100644 index 0000000..53e70ea --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806369_54_7105746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90a06be05664cb1b173ba1b6155b526a0ca702d263e3f3db18452d68f7a8dd92 +size 143026 diff --git a/datasets/搭电设备/train/images/订单1806370_54_7105777.jpg b/datasets/搭电设备/train/images/订单1806370_54_7105777.jpg new file mode 100644 index 0000000..e44d0aa --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806370_54_7105777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da43d72e8fd6ed1b896be09aa0593ca8cd1e2c9bfae0a90488dc991732d55720 +size 71787 diff --git a/datasets/搭电设备/train/images/订单1806371_54_7105835.jpg b/datasets/搭电设备/train/images/订单1806371_54_7105835.jpg new file mode 100644 index 0000000..c137934 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806371_54_7105835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4379d365cb54ee576b14aaf1a59f3878fcd39c420e353168ab4800b87608e412 +size 549394 diff --git a/datasets/搭电设备/train/images/订单1806374_54_7105813.jpg b/datasets/搭电设备/train/images/订单1806374_54_7105813.jpg new file mode 100644 index 0000000..99f5aba --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806374_54_7105813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9baec9b3ab44ed2f2ad62d6ec2e80b36f5953af961de6cc24caaa8111ec9637 +size 108386 diff --git a/datasets/搭电设备/train/images/订单1806382_54_7105950.jpg b/datasets/搭电设备/train/images/订单1806382_54_7105950.jpg new file mode 100644 index 0000000..ee77fb8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806382_54_7105950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf21bc4345df9746ee6239be178020651329ddd730b20b2f01f2acfc0cd7815 +size 106477 diff --git a/datasets/搭电设备/train/images/订单1806385_54_7105957.jpg b/datasets/搭电设备/train/images/订单1806385_54_7105957.jpg new file mode 100644 index 0000000..852cd33 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806385_54_7105957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4bc1f6ec56459b458ffe23260262996006e2edbe7957364e506ae216fddbcb +size 72492 diff --git a/datasets/搭电设备/train/images/订单1806386_54_7105910.jpg b/datasets/搭电设备/train/images/订单1806386_54_7105910.jpg new file mode 100644 index 0000000..f794012 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806386_54_7105910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a5899acd536ef5d6511b43aa8df2dd7cb9c5389fd472be415c06f8ab6fc475 +size 130436 diff --git a/datasets/搭电设备/train/images/订单1806388_54_7106061.jpg b/datasets/搭电设备/train/images/订单1806388_54_7106061.jpg new file mode 100644 index 0000000..b3c549b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806388_54_7106061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5033511a2272d5a06804972ad494f74ff05e0c94dacd95c9ba978dece289ecac +size 460175 diff --git a/datasets/搭电设备/train/images/订单1806390_54_7105927.jpg b/datasets/搭电设备/train/images/订单1806390_54_7105927.jpg new file mode 100644 index 0000000..b0e1487 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806390_54_7105927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee9daa88d9b24548a2b011d5d28135cf74134d9843ce81d995930b53bb81a44 +size 366248 diff --git a/datasets/搭电设备/train/images/订单1806391_54_7106037.jpg b/datasets/搭电设备/train/images/订单1806391_54_7106037.jpg new file mode 100644 index 0000000..21139fb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806391_54_7106037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787dadd4b10731ab3f9ffdf10737860ef5a8c41d6561f6ad4d932e745fcdb002 +size 292685 diff --git a/datasets/搭电设备/train/images/订单1806395_54_7106005.jpg b/datasets/搭电设备/train/images/订单1806395_54_7106005.jpg new file mode 100644 index 0000000..c6dd020 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806395_54_7106005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085ffb7b8045381660030fa175a27fa8c2b1f123f5a13af9e05f763e52f32597 +size 123450 diff --git a/datasets/搭电设备/train/images/订单1806396_54_7106001.jpg b/datasets/搭电设备/train/images/订单1806396_54_7106001.jpg new file mode 100644 index 0000000..1386f7f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806396_54_7106001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10af27cb95807df2f08790222d43bc6cc1bf46221eaacc516e2558e432c9c92 +size 258058 diff --git a/datasets/搭电设备/train/images/订单1806398_54_7106155.jpg b/datasets/搭电设备/train/images/订单1806398_54_7106155.jpg new file mode 100644 index 0000000..f8732f1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806398_54_7106155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab643eff89d72907dda666bf98246c8f0656544d39bd2ef0136692bf36b3a55 +size 415546 diff --git a/datasets/搭电设备/train/images/订单1806399_54_7106133.jpg b/datasets/搭电设备/train/images/订单1806399_54_7106133.jpg new file mode 100644 index 0000000..dbfc0ff --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806399_54_7106133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1f682ae717309af1479bc63e0089e672c372ff6452b23a8df161dab170ee4a +size 83655 diff --git a/datasets/搭电设备/train/images/订单1806400_54_7106044.jpg b/datasets/搭电设备/train/images/订单1806400_54_7106044.jpg new file mode 100644 index 0000000..45bdb4a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806400_54_7106044.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4103af5acd6d0cb7b8cd8040413e6d02e5443becc2823e1f77d155224993050c +size 563707 diff --git a/datasets/搭电设备/train/images/订单1806401_54_7106103.jpg b/datasets/搭电设备/train/images/订单1806401_54_7106103.jpg new file mode 100644 index 0000000..586b2d1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806401_54_7106103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53787f547c5f98ab9cfcca387fb2da98967f73cadefe7e28b35e32e0a562345 +size 404708 diff --git a/datasets/搭电设备/train/images/订单1806402_54_7106073.jpg b/datasets/搭电设备/train/images/订单1806402_54_7106073.jpg new file mode 100644 index 0000000..8300103 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806402_54_7106073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d88acf021462a799279a5f70d191d256af6f745d436bf91fa90e7f0d4bde14 +size 112717 diff --git a/datasets/搭电设备/train/images/订单1806403_54_7106094.jpg b/datasets/搭电设备/train/images/订单1806403_54_7106094.jpg new file mode 100644 index 0000000..3144689 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806403_54_7106094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299390af8c03fb54e2dc0730c854c1efa8a398f3927da62a1609a50fc36d0bb0 +size 50042 diff --git a/datasets/搭电设备/train/images/订单1806410_54_7106169.jpg b/datasets/搭电设备/train/images/订单1806410_54_7106169.jpg new file mode 100644 index 0000000..be11055 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806410_54_7106169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273c439c688aba9e3ffcff6e3656c02c25eedccd38b2b063c9e665a6b54c8729 +size 119776 diff --git a/datasets/搭电设备/train/images/订单1806413_54_7106237.jpg b/datasets/搭电设备/train/images/订单1806413_54_7106237.jpg new file mode 100644 index 0000000..4e388a5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806413_54_7106237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf50f04d8c2d121093feb7dd636f8a6f4fa1dbc936a0a1e7bda6033635b440f +size 377363 diff --git a/datasets/搭电设备/train/images/订单1806414_54_7106176.jpg b/datasets/搭电设备/train/images/订单1806414_54_7106176.jpg new file mode 100644 index 0000000..5c58e62 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806414_54_7106176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a0ab4ea5caee99a44ebdd1aa17cef64472db3f537047081b76ec3055910842 +size 321262 diff --git a/datasets/搭电设备/train/images/订单1806415_54_7106267.jpg b/datasets/搭电设备/train/images/订单1806415_54_7106267.jpg new file mode 100644 index 0000000..51f3306 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806415_54_7106267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91ba9ff0382d443f99e8791040e5da4e2ec97a838319e993ef71d5bd8b50eeb +size 402052 diff --git a/datasets/搭电设备/train/images/订单1806417_54_7106290.jpg b/datasets/搭电设备/train/images/订单1806417_54_7106290.jpg new file mode 100644 index 0000000..7a9a5df --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806417_54_7106290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e703a9a73ee1b9bf860821fba551f0675bc7123ffb955338df48e298d9e66dbb +size 121702 diff --git a/datasets/搭电设备/train/images/订单1806418_54_7106213.jpg b/datasets/搭电设备/train/images/订单1806418_54_7106213.jpg new file mode 100644 index 0000000..82f8594 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806418_54_7106213.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeea19ccf355b0611f1733a9d8787a09243602fbbeee1413c6594ba18d9d14c8 +size 169070 diff --git a/datasets/搭电设备/train/images/订单1806420_54_7106210.jpg b/datasets/搭电设备/train/images/订单1806420_54_7106210.jpg new file mode 100644 index 0000000..9392f0e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806420_54_7106210.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d66f2910003d386b83c3dcc8aee1e7244d605d5dba55f02289f02a96e9bb41d +size 108118 diff --git a/datasets/搭电设备/train/images/订单1806421_54_7106236.jpg b/datasets/搭电设备/train/images/订单1806421_54_7106236.jpg new file mode 100644 index 0000000..c4d7bf5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806421_54_7106236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71c921efeb6bde01fb5730a4adb48ca04299bba17e87afd7933668461e07aa2 +size 308514 diff --git a/datasets/搭电设备/train/images/订单1806423_54_7106301.jpg b/datasets/搭电设备/train/images/订单1806423_54_7106301.jpg new file mode 100644 index 0000000..9197ad0 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806423_54_7106301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698154033a20508c5947b00aedd30330012346b455d00de713a00d18968521ee +size 95916 diff --git a/datasets/搭电设备/train/images/订单1806424_54_7106328.jpg b/datasets/搭电设备/train/images/订单1806424_54_7106328.jpg new file mode 100644 index 0000000..0e740e1 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806424_54_7106328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec46c63dfca3fa6128dc9ae94ca4023228735b97ce4c5a2e533340231b75a6c4 +size 125261 diff --git a/datasets/搭电设备/train/images/订单1806429_54_7106464.jpg b/datasets/搭电设备/train/images/订单1806429_54_7106464.jpg new file mode 100644 index 0000000..9dc5af9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806429_54_7106464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f8aeb2607ec7532855093d61215e4e7b56d0bf1144eebb8bb98207f7a84493 +size 125183 diff --git a/datasets/搭电设备/train/images/订单1806433_54_7106320.jpg b/datasets/搭电设备/train/images/订单1806433_54_7106320.jpg new file mode 100644 index 0000000..f487144 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806433_54_7106320.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e85fd26007d439a4aeaaaa33e2f92a61c91bc494c05bc4c86240038fc69a7a +size 245879 diff --git a/datasets/搭电设备/train/images/订单1806435_54_7106351.jpg b/datasets/搭电设备/train/images/订单1806435_54_7106351.jpg new file mode 100644 index 0000000..a7f8da4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806435_54_7106351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d61197e3de7a6ba69fb172ff84d3f6914ca4c96e1551fb81b7b1f1c02943d47 +size 112019 diff --git a/datasets/搭电设备/train/images/订单1806436_54_7106409.jpg b/datasets/搭电设备/train/images/订单1806436_54_7106409.jpg new file mode 100644 index 0000000..21f2189 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806436_54_7106409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1282537b7bbd24b2b8f7f0ebe6d000cc11f70d17b614fb9b908062cb606269f +size 119506 diff --git a/datasets/搭电设备/train/images/订单1806438_54_7106370.jpg b/datasets/搭电设备/train/images/订单1806438_54_7106370.jpg new file mode 100644 index 0000000..77485a8 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806438_54_7106370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdd2ddb57617ae4289f0df349078da7a7696cd2bd8b8c023c4bfccf2ba2392e +size 411443 diff --git a/datasets/搭电设备/train/images/订单1806439_54_7106407.jpg b/datasets/搭电设备/train/images/订单1806439_54_7106407.jpg new file mode 100644 index 0000000..1ea6aae --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806439_54_7106407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9446d1da7349470be1f9ffeaf559d21248de10889a854abf7bb7d333d9044a36 +size 271895 diff --git a/datasets/搭电设备/train/images/订单1806445_54_7106496.jpg b/datasets/搭电设备/train/images/订单1806445_54_7106496.jpg new file mode 100644 index 0000000..db8a2f7 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806445_54_7106496.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4a9bcb479245cb4ae65c5e43618e7a4e48bce6f10c5b63204926a31c05eaa8 +size 150563 diff --git a/datasets/搭电设备/train/images/订单1806446_54_7106425.jpg b/datasets/搭电设备/train/images/订单1806446_54_7106425.jpg new file mode 100644 index 0000000..4ba0e21 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806446_54_7106425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b63634bb132745addc18e2c77e88b1807c9cc8791aa242d30fdc10dff4014c +size 76318 diff --git a/datasets/搭电设备/train/images/订单1806448_54_7106614.jpg b/datasets/搭电设备/train/images/订单1806448_54_7106614.jpg new file mode 100644 index 0000000..d3830e5 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806448_54_7106614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68a8e75bfc0e1391f304b611c8e45a2474dc11fb49d796a90a373ea51d1f6aa +size 306632 diff --git a/datasets/搭电设备/train/images/订单1806449_54_7106453.jpg b/datasets/搭电设备/train/images/订单1806449_54_7106453.jpg new file mode 100644 index 0000000..3973a8c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806449_54_7106453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c47563da91e967536810c3b8ff37a772a94703241bbed1ebf0aed404aa016c +size 134015 diff --git a/datasets/搭电设备/train/images/订单1806450_54_7106446.jpg b/datasets/搭电设备/train/images/订单1806450_54_7106446.jpg new file mode 100644 index 0000000..b146f2f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806450_54_7106446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830bde896e725eaf7d250f422a2b42e685fc6127df0d7bff85f6896644dc9ab4 +size 154339 diff --git a/datasets/搭电设备/train/images/订单1806453_54_7106524.jpg b/datasets/搭电设备/train/images/订单1806453_54_7106524.jpg new file mode 100644 index 0000000..c880138 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806453_54_7106524.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ac777bb402f33db3350d5d38a6990a1d91405b2063c3343727638d0dabd715 +size 135761 diff --git a/datasets/搭电设备/train/images/订单1806454_54_7106567.jpg b/datasets/搭电设备/train/images/订单1806454_54_7106567.jpg new file mode 100644 index 0000000..148e2f4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806454_54_7106567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28788cd6006eba68f6d6dc1b66adf47201f3055b93c1327d337a503e5401da10 +size 97095 diff --git a/datasets/搭电设备/train/images/订单1806455_54_7106556.jpg b/datasets/搭电设备/train/images/订单1806455_54_7106556.jpg new file mode 100644 index 0000000..11cac7a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806455_54_7106556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca11cb1b33f226d0d2407d5a7c451fef377da3700d9228f4add2d0fa897546e +size 96819 diff --git a/datasets/搭电设备/train/images/订单1806462_54_7106748.jpg b/datasets/搭电设备/train/images/订单1806462_54_7106748.jpg new file mode 100644 index 0000000..a7298db --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806462_54_7106748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0ac4e0f20cd2050ef9e4715a8b6b52b851655fc320913921b85927ad91eeb0 +size 743366 diff --git a/datasets/搭电设备/train/images/订单1806464_54_7106663.jpg b/datasets/搭电设备/train/images/订单1806464_54_7106663.jpg new file mode 100644 index 0000000..9581ac9 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806464_54_7106663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682c37a228b5f4a18af69247984b73d63cd859a617a1a5782cfdfbcc1c5d17b0 +size 315406 diff --git a/datasets/搭电设备/train/images/订单1806465_54_7106628.jpg b/datasets/搭电设备/train/images/订单1806465_54_7106628.jpg new file mode 100644 index 0000000..3ead038 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806465_54_7106628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b10138e64c6b2c37cbbadc92db685c0b4b2afc7388e469bd28360f9eb4a2c294 +size 83063 diff --git a/datasets/搭电设备/train/images/订单1806467_54_7106644.jpg b/datasets/搭电设备/train/images/订单1806467_54_7106644.jpg new file mode 100644 index 0000000..66c4f4d --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806467_54_7106644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c00dd62a4b6112622bbb1f2cf0e89604507eef3aab0e111f546a9b5c1f01d5f +size 134573 diff --git a/datasets/搭电设备/train/images/订单1806468_54_7106716.jpg b/datasets/搭电设备/train/images/订单1806468_54_7106716.jpg new file mode 100644 index 0000000..a59ba9b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806468_54_7106716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e1817915d2246a340f52cc693576f185f9c32df8b750fd5b6fc476642d8f40 +size 136681 diff --git a/datasets/搭电设备/train/images/订单1806470_54_7106703.jpg b/datasets/搭电设备/train/images/订单1806470_54_7106703.jpg new file mode 100644 index 0000000..3e8d84c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806470_54_7106703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c7a5780ecd757d04294887e14bfdd4cdb2ae0ee0734802228aea42a98f4ced +size 286781 diff --git a/datasets/搭电设备/train/images/订单1806471_54_7106672.jpg b/datasets/搭电设备/train/images/订单1806471_54_7106672.jpg new file mode 100644 index 0000000..a04bf7e --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806471_54_7106672.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c843aee9f3cef9e56761eb12e8d8c9c304bb6033d84690b6dc5275ba325f1da5 +size 103495 diff --git a/datasets/搭电设备/train/images/订单1806474_54_7106728.jpg b/datasets/搭电设备/train/images/订单1806474_54_7106728.jpg new file mode 100644 index 0000000..37f2f5a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806474_54_7106728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eae3434a68e59ccc9459636b3a7432ea4a4a6750d34a022bfa51d71e8ec9345 +size 315069 diff --git a/datasets/搭电设备/train/images/订单1806476_54_7106693.jpg b/datasets/搭电设备/train/images/订单1806476_54_7106693.jpg new file mode 100644 index 0000000..e2b003c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806476_54_7106693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94438e62641c4de48150f85037ffe5d3063fa1dffda2a3cdf298aa51ea809bd2 +size 133526 diff --git a/datasets/搭电设备/train/images/订单1806477_54_7106814.jpg b/datasets/搭电设备/train/images/订单1806477_54_7106814.jpg new file mode 100644 index 0000000..fa1f488 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806477_54_7106814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6753ae1351f808325e619532b426957fb916982cf2197d9916a8cdf3aa4b6503 +size 342708 diff --git a/datasets/搭电设备/train/images/订单1806479_54_7106774.jpg b/datasets/搭电设备/train/images/订单1806479_54_7106774.jpg new file mode 100644 index 0000000..a553962 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806479_54_7106774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fd43e5d4b73bf1fe84d2bcf6296d12503aa8dbd69cd538feefd1e2c6338a7f +size 278603 diff --git a/datasets/搭电设备/train/images/订单1806481_54_7106777.jpg b/datasets/搭电设备/train/images/订单1806481_54_7106777.jpg new file mode 100644 index 0000000..05dc530 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806481_54_7106777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6e5ccefb868443a5a2268b325736e042bbd308f04dbea5480790caca3c8156 +size 64358 diff --git a/datasets/搭电设备/train/images/订单1806482_54_7106787.jpg b/datasets/搭电设备/train/images/订单1806482_54_7106787.jpg new file mode 100644 index 0000000..486d31a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806482_54_7106787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28054f249c8c84b88ecbd5fb257b8ec3ded1fa22ba7aecaf16a897a74b7dcf98 +size 127627 diff --git a/datasets/搭电设备/train/images/订单1806483_54_7106802.jpg b/datasets/搭电设备/train/images/订单1806483_54_7106802.jpg new file mode 100644 index 0000000..2d8a191 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806483_54_7106802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7172ab01d1ebbf44a2137b2329ae28cbc2c485a9ba0c6757381d66342f7d5b +size 110924 diff --git a/datasets/搭电设备/train/images/订单1806484_54_7106822.jpg b/datasets/搭电设备/train/images/订单1806484_54_7106822.jpg new file mode 100644 index 0000000..771a0c4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806484_54_7106822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6daf2ddf5bf06fdb1dff6aa69d5afa8e5b0c5217e10bf9a5d1e3abe79dc90f +size 146939 diff --git a/datasets/搭电设备/train/images/订单1806487_54_7106859.jpg b/datasets/搭电设备/train/images/订单1806487_54_7106859.jpg new file mode 100644 index 0000000..9ac0d7b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806487_54_7106859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbdaebff9ec3fe130b98f3f48a84d6ec493dcc1aa590b7cb2ba9c83796cb453e +size 100667 diff --git a/datasets/搭电设备/train/images/订单1806488_54_7106872.jpg b/datasets/搭电设备/train/images/订单1806488_54_7106872.jpg new file mode 100644 index 0000000..9a66934 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806488_54_7106872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6499ab9a125bcf20998236cd029f7baf57b57c30d86b3cf3d0e518f97b607711 +size 161948 diff --git a/datasets/搭电设备/train/images/订单1806490_54_7106899.jpg b/datasets/搭电设备/train/images/订单1806490_54_7106899.jpg new file mode 100644 index 0000000..5c6f1c4 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806490_54_7106899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f223401c0dd0b93bea09bfe8373ec24d788d43395bfb4223ecca2098af0677 +size 307221 diff --git a/datasets/搭电设备/train/images/订单1806491_54_7106890.jpg b/datasets/搭电设备/train/images/订单1806491_54_7106890.jpg new file mode 100644 index 0000000..4459b49 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806491_54_7106890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e625ec7256bdf87503f0e608ab0f5f0c11c73d39fcb01beab26087cdb6eb84a +size 124184 diff --git a/datasets/搭电设备/train/images/订单1806493_54_7106928.jpg b/datasets/搭电设备/train/images/订单1806493_54_7106928.jpg new file mode 100644 index 0000000..34a8e26 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806493_54_7106928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1470c30ffe7bf6b4c4a1e442fff49418afeb0c3325c4c4e996f74cbbe2a48e10 +size 107497 diff --git a/datasets/搭电设备/train/images/订单1806494_54_7106921.jpg b/datasets/搭电设备/train/images/订单1806494_54_7106921.jpg new file mode 100644 index 0000000..e4b5fa6 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806494_54_7106921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d53f2462b4d47efd5d9ee9784e7370218f19211312949406d5702a8b4d358c7 +size 149164 diff --git a/datasets/搭电设备/train/images/订单1806495_54_7106943.jpg b/datasets/搭电设备/train/images/订单1806495_54_7106943.jpg new file mode 100644 index 0000000..9546a91 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806495_54_7106943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769d6f8c526e082d104fdc4faa84d912a2df83b07f30dc98aa998fbe0482aa33 +size 105229 diff --git a/datasets/搭电设备/train/images/订单1806498_54_7106987.jpg b/datasets/搭电设备/train/images/订单1806498_54_7106987.jpg new file mode 100644 index 0000000..e521a90 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806498_54_7106987.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb72e564bdd7b7f0aac905c05665153e3a357501fd14d5d65a2104c537a91f2f +size 704134 diff --git a/datasets/搭电设备/train/images/订单1806499_54_7106959.jpg b/datasets/搭电设备/train/images/订单1806499_54_7106959.jpg new file mode 100644 index 0000000..2844884 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806499_54_7106959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c87c2a5d33bd1d5c4350c37d9fe0ee121106bc7d3df7fa217f3424923ca3c763 +size 353467 diff --git a/datasets/搭电设备/train/images/订单1806501_54_7106972.jpg b/datasets/搭电设备/train/images/订单1806501_54_7106972.jpg new file mode 100644 index 0000000..05d5dbb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806501_54_7106972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebcdcbe61655bf23461a031d6acb4783f184db30c7aab0ef81f80f30ca28d60 +size 114363 diff --git a/datasets/搭电设备/train/images/订单1806502_54_7107002.jpg b/datasets/搭电设备/train/images/订单1806502_54_7107002.jpg new file mode 100644 index 0000000..6c252bb --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806502_54_7107002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e77c9adf9132081f832cccbffe241e8f23a2a6b08e8c008a7a8d4596d213b3 +size 197845 diff --git a/datasets/搭电设备/train/images/订单1806504_54_7107028.jpg b/datasets/搭电设备/train/images/订单1806504_54_7107028.jpg new file mode 100644 index 0000000..5d8180b --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806504_54_7107028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae3375c5508378e773c6b53aa19ed8d427b4c6b00e0bb07b570070d9c47ef1a +size 483479 diff --git a/datasets/搭电设备/train/images/订单1806505_54_7107049.jpg b/datasets/搭电设备/train/images/订单1806505_54_7107049.jpg new file mode 100644 index 0000000..d15a09c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806505_54_7107049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e2805f6a26c0a77c68e28c529139774a0a494015897743af33a9583dee2a4f +size 114273 diff --git a/datasets/搭电设备/train/images/订单1806507_54_7107060.jpg b/datasets/搭电设备/train/images/订单1806507_54_7107060.jpg new file mode 100644 index 0000000..2a1f53c --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806507_54_7107060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1366be7fdd17090d832aa7fc537f33b8c179dca7d7b74d53a4fd260401525dd +size 139628 diff --git a/datasets/搭电设备/train/images/订单1806511_54_7107091.jpg b/datasets/搭电设备/train/images/订单1806511_54_7107091.jpg new file mode 100644 index 0000000..ea87f27 --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806511_54_7107091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37db460b4942fa768361ccfbb5074552babbcf4c0a67bccba1e1791007f692d7 +size 155537 diff --git a/datasets/搭电设备/train/images/订单1806513_54_7107913.jpg b/datasets/搭电设备/train/images/订单1806513_54_7107913.jpg new file mode 100644 index 0000000..689791a --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806513_54_7107913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d54885a7c3dc06c4f66fc6fa089d7842d55271f189ced5fb3afd57cf67e587 +size 116247 diff --git a/datasets/搭电设备/train/images/订单1806514_54_7107084.jpg b/datasets/搭电设备/train/images/订单1806514_54_7107084.jpg new file mode 100644 index 0000000..47a075f --- /dev/null +++ b/datasets/搭电设备/train/images/订单1806514_54_7107084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c130327cd4557c2ae1ef461e4c09dbc7df304f6daf8368593ea82c082dbb5afd +size 658940 diff --git a/datasets/搭电设备/train/labels.cache b/datasets/搭电设备/train/labels.cache new file mode 100644 index 0000000..915527a Binary files /dev/null and b/datasets/搭电设备/train/labels.cache differ diff --git a/datasets/搭电设备/train/labels/classes.txt b/datasets/搭电设备/train/labels/classes.txt new file mode 100644 index 0000000..d213c8d --- /dev/null +++ b/datasets/搭电设备/train/labels/classes.txt @@ -0,0 +1 @@ +JumperCable diff --git a/datasets/搭电设备/train/labels/订单1804634_54_7089744.txt b/datasets/搭电设备/train/labels/订单1804634_54_7089744.txt new file mode 100644 index 0000000..aa508b6 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804634_54_7089744.txt @@ -0,0 +1 @@ +0 0.577546 0.562934 0.462963 0.401910 diff --git a/datasets/搭电设备/train/labels/订单1804637_54_7089808.txt b/datasets/搭电设备/train/labels/订单1804637_54_7089808.txt new file mode 100644 index 0000000..6c5c7c9 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804637_54_7089808.txt @@ -0,0 +1 @@ +0 0.405421 0.494810 0.806228 0.519031 diff --git a/datasets/搭电设备/train/labels/订单1804639_54_7089809.txt b/datasets/搭电设备/train/labels/订单1804639_54_7089809.txt new file mode 100644 index 0000000..f6c533b --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804639_54_7089809.txt @@ -0,0 +1 @@ +0 0.418685 0.653226 0.660900 0.555300 diff --git a/datasets/搭电设备/train/labels/订单1804641_54_7089780.txt b/datasets/搭电设备/train/labels/订单1804641_54_7089780.txt new file mode 100644 index 0000000..e0fef11 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804641_54_7089780.txt @@ -0,0 +1 @@ +0 0.461589 0.506348 0.714844 0.850586 diff --git a/datasets/搭电设备/train/labels/订单1804642_54_7089842.txt b/datasets/搭电设备/train/labels/订单1804642_54_7089842.txt new file mode 100644 index 0000000..a1a97e6 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804642_54_7089842.txt @@ -0,0 +1 @@ +0 0.599826 0.665509 0.567708 0.502315 diff --git a/datasets/搭电设备/train/labels/订单1804643_54_7089880.txt b/datasets/搭电设备/train/labels/订单1804643_54_7089880.txt new file mode 100644 index 0000000..03755eb --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804643_54_7089880.txt @@ -0,0 +1 @@ +0 0.433333 0.350000 0.584314 0.474510 diff --git a/datasets/搭电设备/train/labels/订单1804644_54_7089871.txt b/datasets/搭电设备/train/labels/订单1804644_54_7089871.txt new file mode 100644 index 0000000..09270d3 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804644_54_7089871.txt @@ -0,0 +1 @@ +0 0.518750 0.327000 0.789500 0.639333 diff --git a/datasets/搭电设备/train/labels/订单1804645_54_7089814.txt b/datasets/搭电设备/train/labels/订单1804645_54_7089814.txt new file mode 100644 index 0000000..7d78e48 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804645_54_7089814.txt @@ -0,0 +1 @@ +0 0.703125 0.624023 0.364583 0.611328 diff --git a/datasets/搭电设备/train/labels/订单1804646_54_7089894.txt b/datasets/搭电设备/train/labels/订单1804646_54_7089894.txt new file mode 100644 index 0000000..e6b5d96 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804646_54_7089894.txt @@ -0,0 +1 @@ +0 0.525391 0.560547 0.949219 0.878906 diff --git a/datasets/搭电设备/train/labels/订单1804647_54_7089890.txt b/datasets/搭电设备/train/labels/订单1804647_54_7089890.txt new file mode 100644 index 0000000..23d3157 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804647_54_7089890.txt @@ -0,0 +1 @@ +0 0.473307 0.546387 0.813802 0.360352 diff --git a/datasets/搭电设备/train/labels/订单1804649_54_7089914.txt b/datasets/搭电设备/train/labels/订单1804649_54_7089914.txt new file mode 100644 index 0000000..f40b5c3 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804649_54_7089914.txt @@ -0,0 +1 @@ +0 0.479167 0.604526 0.880747 0.564655 diff --git a/datasets/搭电设备/train/labels/订单1804652_54_7089935.txt b/datasets/搭电设备/train/labels/订单1804652_54_7089935.txt new file mode 100644 index 0000000..12d0588 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804652_54_7089935.txt @@ -0,0 +1 @@ +0 0.472900 0.484110 0.455566 0.779661 diff --git a/datasets/搭电设备/train/labels/订单1804654_54_7089951.txt b/datasets/搭电设备/train/labels/订单1804654_54_7089951.txt new file mode 100644 index 0000000..da6c5bd --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804654_54_7089951.txt @@ -0,0 +1 @@ +0 0.659615 0.502404 0.614103 0.995192 diff --git a/datasets/搭电设备/train/labels/订单1804656_54_7089970.txt b/datasets/搭电设备/train/labels/订单1804656_54_7089970.txt new file mode 100644 index 0000000..c3b2e1c --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804656_54_7089970.txt @@ -0,0 +1 @@ +0 0.485840 0.525391 0.627930 0.567708 diff --git a/datasets/搭电设备/train/labels/订单1804658_54_7090003.txt b/datasets/搭电设备/train/labels/订单1804658_54_7090003.txt new file mode 100644 index 0000000..840a319 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804658_54_7090003.txt @@ -0,0 +1 @@ +0 0.475133 0.542000 0.859680 0.380000 diff --git a/datasets/搭电设备/train/labels/订单1804659_54_7090018.txt b/datasets/搭电设备/train/labels/订单1804659_54_7090018.txt new file mode 100644 index 0000000..5080168 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804659_54_7090018.txt @@ -0,0 +1 @@ +0 0.516927 0.541992 0.544271 0.875000 diff --git a/datasets/搭电设备/train/labels/订单1804662_54_7090011.txt b/datasets/搭电设备/train/labels/订单1804662_54_7090011.txt new file mode 100644 index 0000000..4bae96d --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804662_54_7090011.txt @@ -0,0 +1 @@ +0 0.539497 0.499512 0.816840 0.614258 diff --git a/datasets/搭电设备/train/labels/订单1804663_54_7090042.txt b/datasets/搭电设备/train/labels/订单1804663_54_7090042.txt new file mode 100644 index 0000000..2f491ca --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804663_54_7090042.txt @@ -0,0 +1 @@ +0 0.621333 0.555000 0.744000 0.618000 diff --git a/datasets/搭电设备/train/labels/订单1804667_54_7090072.txt b/datasets/搭电设备/train/labels/订单1804667_54_7090072.txt new file mode 100644 index 0000000..6eb16af --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804667_54_7090072.txt @@ -0,0 +1 @@ +0 0.634115 0.484375 0.666667 0.335938 diff --git a/datasets/搭电设备/train/labels/订单1804668_54_7090071.txt b/datasets/搭电设备/train/labels/订单1804668_54_7090071.txt new file mode 100644 index 0000000..f0e3387 --- /dev/null +++ b/datasets/搭电设备/train/labels/订单1804668_54_7090071.txt @@ -0,0 +1 @@ +0 0.456380 0.401855 0.832031 0.553711 diff --git a/datasets/搭电设备/val/.DS_Store b/datasets/搭电设备/val/.DS_Store new file mode 100644 index 0000000..90c4aaf Binary files /dev/null and b/datasets/搭电设备/val/.DS_Store differ diff --git a/datasets/搭电设备/val/images/classes.txt b/datasets/搭电设备/val/images/classes.txt new file mode 100644 index 0000000..d213c8d --- /dev/null +++ b/datasets/搭电设备/val/images/classes.txt @@ -0,0 +1 @@ +JumperCable diff --git a/datasets/搭电设备/val/images/订单1806515_54_7107135.jpg b/datasets/搭电设备/val/images/订单1806515_54_7107135.jpg new file mode 100644 index 0000000..e4be9cb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806515_54_7107135.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf5c7d1f3d3863201dea4e9627b797cc4fe4d811e22160f8c3671955a6c78d1 +size 101400 diff --git a/datasets/搭电设备/val/images/订单1806516_54_7107104.jpg b/datasets/搭电设备/val/images/订单1806516_54_7107104.jpg new file mode 100644 index 0000000..51aa727 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806516_54_7107104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafb4ce1c97e66a8a69044266dbcce70230db5e53d782bb0d95f0c8344f842da +size 142258 diff --git a/datasets/搭电设备/val/images/订单1806518_54_7107143.jpg b/datasets/搭电设备/val/images/订单1806518_54_7107143.jpg new file mode 100644 index 0000000..7f22b04 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806518_54_7107143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67f507042ba3a7c855ab79a4c5c4f3544a102ae8faca4aaf82705f85cd85b59 +size 167080 diff --git a/datasets/搭电设备/val/images/订单1806519_54_7107238.jpg b/datasets/搭电设备/val/images/订单1806519_54_7107238.jpg new file mode 100644 index 0000000..2a368bf --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806519_54_7107238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465a24e86cdf20609202919225928f890c9604548bcdac2826ee63f5f2ccd16d +size 174575 diff --git a/datasets/搭电设备/val/images/订单1806521_54_7107167.jpg b/datasets/搭电设备/val/images/订单1806521_54_7107167.jpg new file mode 100644 index 0000000..85eac17 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806521_54_7107167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ccb2f79f05d23a82e3cfa282e40d145b60bb861e8f39af0a1d11a868ace4cd +size 165840 diff --git a/datasets/搭电设备/val/images/订单1806522_54_7107189.jpg b/datasets/搭电设备/val/images/订单1806522_54_7107189.jpg new file mode 100644 index 0000000..0f4711e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806522_54_7107189.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56cb98176eaddb74da86a3c4baff26c4dde3da767c6480305f1f25c2992db82c +size 282486 diff --git a/datasets/搭电设备/val/images/订单1806523_54_7107177.jpg b/datasets/搭电设备/val/images/订单1806523_54_7107177.jpg new file mode 100644 index 0000000..92cc1fe --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806523_54_7107177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c361d3afc6a519f8182376f36549b3ecf73016d50d5154f68fb5678cee230af9 +size 420372 diff --git a/datasets/搭电设备/val/images/订单1806524_54_7107204.jpg b/datasets/搭电设备/val/images/订单1806524_54_7107204.jpg new file mode 100644 index 0000000..dc86e76 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806524_54_7107204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c69966ec0946412e4be6b5e8172c065d3bb0c678888d823c3c3c67516c0403b +size 154707 diff --git a/datasets/搭电设备/val/images/订单1806526_54_7107138.jpg b/datasets/搭电设备/val/images/订单1806526_54_7107138.jpg new file mode 100644 index 0000000..2b45e63 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806526_54_7107138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60189ed447f0e2d309f6a4adaecbda0205b1f402de9346e267177c972cceefc7 +size 118030 diff --git a/datasets/搭电设备/val/images/订单1806528_54_7107117.jpg b/datasets/搭电设备/val/images/订单1806528_54_7107117.jpg new file mode 100644 index 0000000..3762c79 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806528_54_7107117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813395b22d3f76faf0391f24a7b52318d3e3f66c30397a6ec1af44c736ad195f +size 148160 diff --git a/datasets/搭电设备/val/images/订单1806532_54_7107315.jpg b/datasets/搭电设备/val/images/订单1806532_54_7107315.jpg new file mode 100644 index 0000000..8c60a0e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806532_54_7107315.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e29247db3b23962a07f68b0cbffe47e390648fa41c3b3fad7aeb17ff8308f1 +size 137438 diff --git a/datasets/搭电设备/val/images/订单1806535_54_7107205.jpg b/datasets/搭电设备/val/images/订单1806535_54_7107205.jpg new file mode 100644 index 0000000..9199264 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806535_54_7107205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75dc63ee0f58db36e70d192eb5ed5ee06cf1c405df3ba8bbeea7b93732baa28 +size 323016 diff --git a/datasets/搭电设备/val/images/订单1806536_54_7107287.jpg b/datasets/搭电设备/val/images/订单1806536_54_7107287.jpg new file mode 100644 index 0000000..d278d63 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806536_54_7107287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103bc849e98e023fd82c95164c4a998dd629035920d95454f10e4e2c508b6707 +size 145829 diff --git a/datasets/搭电设备/val/images/订单1806538_54_7107389.jpg b/datasets/搭电设备/val/images/订单1806538_54_7107389.jpg new file mode 100644 index 0000000..1fdb29d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806538_54_7107389.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5702d6e4d95eeebddb60fdd6078e4310291632131dd30b1d840b7f79cabbba +size 163816 diff --git a/datasets/搭电设备/val/images/订单1806540_54_7107339.jpg b/datasets/搭电设备/val/images/订单1806540_54_7107339.jpg new file mode 100644 index 0000000..96f9454 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806540_54_7107339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f30423101cd4389eb1b1bf99290d64b6f1917741e6422db2f3af3399802d5f +size 1241322 diff --git a/datasets/搭电设备/val/images/订单1806541_54_7107483.jpg b/datasets/搭电设备/val/images/订单1806541_54_7107483.jpg new file mode 100644 index 0000000..d0a0a95 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806541_54_7107483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24459c6430dfa80b45e66be4b9d7c5b2c015f101e249d2d3b5821f7e76740193 +size 152848 diff --git a/datasets/搭电设备/val/images/订单1806543_54_7107302.jpg b/datasets/搭电设备/val/images/订单1806543_54_7107302.jpg new file mode 100644 index 0000000..1e5a8aa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806543_54_7107302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d388548e13f9baad63438dfefd63abaa120e9c1e18cf760718f2b7eae8fc495b +size 120671 diff --git a/datasets/搭电设备/val/images/订单1806544_54_7107381.jpg b/datasets/搭电设备/val/images/订单1806544_54_7107381.jpg new file mode 100644 index 0000000..3d4f19b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806544_54_7107381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c0295da46a579f5589ce2156a825d6a99622ed9464c0f137c7cde6dfbb060d +size 118859 diff --git a/datasets/搭电设备/val/images/订单1806545_54_7107293.jpg b/datasets/搭电设备/val/images/订单1806545_54_7107293.jpg new file mode 100644 index 0000000..f147d64 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806545_54_7107293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952fa1e070db25d00e0202dcee0f7409b47f6572e84a88e27d0589d5a9cf5719 +size 102971 diff --git a/datasets/搭电设备/val/images/订单1806546_54_7107547.jpg b/datasets/搭电设备/val/images/订单1806546_54_7107547.jpg new file mode 100644 index 0000000..816bb64 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806546_54_7107547.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc51ed6815954d83f2363a4a7a00cdf0e7495ee91f9dcff6764870d4f09e0852 +size 457087 diff --git a/datasets/搭电设备/val/images/订单1806547_54_7107290.jpg b/datasets/搭电设备/val/images/订单1806547_54_7107290.jpg new file mode 100644 index 0000000..2624d09 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806547_54_7107290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c55c27b79b33ece8418c24b8b1be715c28b18965c68ff4e8340b3b8db674db +size 435690 diff --git a/datasets/搭电设备/val/images/订单1806548_54_7107276.jpg b/datasets/搭电设备/val/images/订单1806548_54_7107276.jpg new file mode 100644 index 0000000..38d7e32 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806548_54_7107276.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93945a2707c31b5f65e0d8b4251229d3d018f42a6ddedc320a84a3d142df7c72 +size 138921 diff --git a/datasets/搭电设备/val/images/订单1806549_54_7107353.jpg b/datasets/搭电设备/val/images/订单1806549_54_7107353.jpg new file mode 100644 index 0000000..a01d40a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806549_54_7107353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d95f3f9db29f09d3d2dccc78d4fa086b6d5b266dad587a662f6966ca381062 +size 118841 diff --git a/datasets/搭电设备/val/images/订单1806552_54_7107281.jpg b/datasets/搭电设备/val/images/订单1806552_54_7107281.jpg new file mode 100644 index 0000000..3de1849 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806552_54_7107281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0128ca999ce164be167af2832936d0e46778ccf827d1bde7809d020fa03f022e +size 393658 diff --git a/datasets/搭电设备/val/images/订单1806553_54_7107478.jpg b/datasets/搭电设备/val/images/订单1806553_54_7107478.jpg new file mode 100644 index 0000000..b8dedd3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806553_54_7107478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99eac2670877e2973a9cba4529f259983a3b29f61b916d37ea176990589127fa +size 104610 diff --git a/datasets/搭电设备/val/images/订单1806555_54_7107327.jpg b/datasets/搭电设备/val/images/订单1806555_54_7107327.jpg new file mode 100644 index 0000000..ed2237d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806555_54_7107327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9599436bab6f886f45fedc1c0be0b87c3f339eb83c456dcf645ab38817ee25 +size 106382 diff --git a/datasets/搭电设备/val/images/订单1806558_54_7107505.jpg b/datasets/搭电设备/val/images/订单1806558_54_7107505.jpg new file mode 100644 index 0000000..16ef1eb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806558_54_7107505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5405359c27185fba1cbcb2b1fbee9753257c3d4a5a39233a09b01bfe194a3fcc +size 186917 diff --git a/datasets/搭电设备/val/images/订单1806560_54_7107361.jpg b/datasets/搭电设备/val/images/订单1806560_54_7107361.jpg new file mode 100644 index 0000000..db3337d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806560_54_7107361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f0567835ac0b004aa9db4f1777694e3054aae708565b692c07cc3a527d1058 +size 127388 diff --git a/datasets/搭电设备/val/images/订单1806561_54_7107357.jpg b/datasets/搭电设备/val/images/订单1806561_54_7107357.jpg new file mode 100644 index 0000000..1c91f3e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806561_54_7107357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c15c09af7587240d5de2d2d3df8e4c224e574c3e28e3bc6b202d8f516ff68c +size 108641 diff --git a/datasets/搭电设备/val/images/订单1806563_54_7107447.jpg b/datasets/搭电设备/val/images/订单1806563_54_7107447.jpg new file mode 100644 index 0000000..af3bf34 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806563_54_7107447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f656ffb1851374ea815f9750da10e79c56c8dc54f995086d30bc7447e1079a0d +size 147651 diff --git a/datasets/搭电设备/val/images/订单1806566_54_7107509.jpg b/datasets/搭电设备/val/images/订单1806566_54_7107509.jpg new file mode 100644 index 0000000..086a3d6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806566_54_7107509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8445f008f8a55e02a6ce5ad7702dedf36bf5f4970b40ab209edcd8d1099920cc +size 512864 diff --git a/datasets/搭电设备/val/images/订单1806567_54_7107459.jpg b/datasets/搭电设备/val/images/订单1806567_54_7107459.jpg new file mode 100644 index 0000000..02ee628 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806567_54_7107459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0002dba57d9a3f1087baea6765dcd5486d14e451ca9bf77ab18801435da271 +size 103823 diff --git a/datasets/搭电设备/val/images/订单1806568_54_7107457.jpg b/datasets/搭电设备/val/images/订单1806568_54_7107457.jpg new file mode 100644 index 0000000..a2b220e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806568_54_7107457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0a7b3d8f086dcce0b1fa4acc18a989a1e0a44b8b20d6c14876dd9ff7aa9122 +size 405219 diff --git a/datasets/搭电设备/val/images/订单1806570_54_7107517.jpg b/datasets/搭电设备/val/images/订单1806570_54_7107517.jpg new file mode 100644 index 0000000..bc6c2db --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806570_54_7107517.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83440143f3aefe34f7121cdbad18048e6d680e77db360c466b491bd5ff4199e +size 109180 diff --git a/datasets/搭电设备/val/images/订单1806572_54_7107538.jpg b/datasets/搭电设备/val/images/订单1806572_54_7107538.jpg new file mode 100644 index 0000000..2683fab --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806572_54_7107538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45290bbeeeb21118cee0d15613309547b8e94db50e971a179d9701b8de932fae +size 140764 diff --git a/datasets/搭电设备/val/images/订单1806578_54_7107565.jpg b/datasets/搭电设备/val/images/订单1806578_54_7107565.jpg new file mode 100644 index 0000000..8518318 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806578_54_7107565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f75cbd86d0baab79afbfc6f3442827ff238ce81d6e1e7bd2268e1b6e604b821 +size 377375 diff --git a/datasets/搭电设备/val/images/订单1806583_54_7108516.jpg b/datasets/搭电设备/val/images/订单1806583_54_7108516.jpg new file mode 100644 index 0000000..4a01cc9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806583_54_7108516.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3bd5d623de7fe20200562028d845972cec98f5a89ff0fcebeb9e37399fda77 +size 396715 diff --git a/datasets/搭电设备/val/images/订单1806584_54_7107649.jpg b/datasets/搭电设备/val/images/订单1806584_54_7107649.jpg new file mode 100644 index 0000000..008b96c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806584_54_7107649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57d05f0f82a97c7fc88c28b0b05af9e8f529955e74b6049e862eb45421397bf +size 529570 diff --git a/datasets/搭电设备/val/images/订单1806587_54_7107770.jpg b/datasets/搭电设备/val/images/订单1806587_54_7107770.jpg new file mode 100644 index 0000000..8510a08 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806587_54_7107770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03234b6557b1832b3c03ff20556738e6f31744be78264f6f408fccd3d4d28449 +size 154977 diff --git a/datasets/搭电设备/val/images/订单1806588_54_7107704.jpg b/datasets/搭电设备/val/images/订单1806588_54_7107704.jpg new file mode 100644 index 0000000..86bf030 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806588_54_7107704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c30d3e00b7a03069ac0bd1da8d95b124ae1e05250ada0bdb37f8d403b940c7d +size 185866 diff --git a/datasets/搭电设备/val/images/订单1806589_54_7107645.jpg b/datasets/搭电设备/val/images/订单1806589_54_7107645.jpg new file mode 100644 index 0000000..1ec40d8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806589_54_7107645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c738b66627857526457e2cb1024ac9c58f59318bb743725a309491a9fb124e24 +size 650527 diff --git a/datasets/搭电设备/val/images/订单1806596_54_7107775.jpg b/datasets/搭电设备/val/images/订单1806596_54_7107775.jpg new file mode 100644 index 0000000..eb7e503 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806596_54_7107775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058f8c285616774b52216f1fc46dee984da4cc4b5f5ae6da05373713feddeec8 +size 152347 diff --git a/datasets/搭电设备/val/images/订单1806598_54_7107763.jpg b/datasets/搭电设备/val/images/订单1806598_54_7107763.jpg new file mode 100644 index 0000000..886f698 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806598_54_7107763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd3d80db7a51735b5386fc38a1d1e4593916c7c87071dee0af6a5f274368ab +size 461538 diff --git a/datasets/搭电设备/val/images/订单1806600_54_7107943.jpg b/datasets/搭电设备/val/images/订单1806600_54_7107943.jpg new file mode 100644 index 0000000..c799272 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806600_54_7107943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2382ab759dcc315b6eb80d858d458678800fc1b4b392bd989967f4341c817cbf +size 102526 diff --git a/datasets/搭电设备/val/images/订单1806601_54_7107750.jpg b/datasets/搭电设备/val/images/订单1806601_54_7107750.jpg new file mode 100644 index 0000000..ec2266a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806601_54_7107750.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29370879a2f3192870834ea0afa58f4fa9dd9805fd69f0b16b3a2d9ba9e3da8c +size 123273 diff --git a/datasets/搭电设备/val/images/订单1806603_54_7107814.jpg b/datasets/搭电设备/val/images/订单1806603_54_7107814.jpg new file mode 100644 index 0000000..9101d39 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806603_54_7107814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd79afe28fb55af7be4fbd7f489e2eef698223e0dc56068553f85a9f60fb95d +size 117757 diff --git a/datasets/搭电设备/val/images/订单1806604_54_7107831.jpg b/datasets/搭电设备/val/images/订单1806604_54_7107831.jpg new file mode 100644 index 0000000..c8867a5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806604_54_7107831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7919eef87a1213855181e38c4cc04ed1c29bd040bb9f3634bf4a57b6d2052d +size 135594 diff --git a/datasets/搭电设备/val/images/订单1806607_54_7107926.jpg b/datasets/搭电设备/val/images/订单1806607_54_7107926.jpg new file mode 100644 index 0000000..416850a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806607_54_7107926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10df9bdcc9e6b75489cb80e3d2294a3935c202c241c0e52a488ca0fdf1037d22 +size 121783 diff --git a/datasets/搭电设备/val/images/订单1806610_54_7107839.jpg b/datasets/搭电设备/val/images/订单1806610_54_7107839.jpg new file mode 100644 index 0000000..d44373a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806610_54_7107839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc3ebd0dc9c9e00852c4ef49c169682d6b252bc7a1d1952f34fa0177e9e73b4 +size 142399 diff --git a/datasets/搭电设备/val/images/订单1806615_54_7107824.jpg b/datasets/搭电设备/val/images/订单1806615_54_7107824.jpg new file mode 100644 index 0000000..d2128c4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806615_54_7107824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5957447326ed62cf3c56acdb9aa3a068c16ea3b648aac9dec740c3baa840fa0 +size 167684 diff --git a/datasets/搭电设备/val/images/订单1806618_54_7107899.jpg b/datasets/搭电设备/val/images/订单1806618_54_7107899.jpg new file mode 100644 index 0000000..2ba72f2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806618_54_7107899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765d4516714c9c090a6a07d537f0d3609a82b2521a54bb8d5bd2a7984ecd2522 +size 563814 diff --git a/datasets/搭电设备/val/images/订单1806625_54_7107998.jpg b/datasets/搭电设备/val/images/订单1806625_54_7107998.jpg new file mode 100644 index 0000000..1040516 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806625_54_7107998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4816b4724a9e1e6f4f072f8f7d91b646bca8184d5e65e7a8167f0656d7559b3b +size 314134 diff --git a/datasets/搭电设备/val/images/订单1806626_54_7108141.jpg b/datasets/搭电设备/val/images/订单1806626_54_7108141.jpg new file mode 100644 index 0000000..e25b1bb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806626_54_7108141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfe7b525da10b5faa43dcfdd951b2af36f1af551d463f360acd86c666e0b886 +size 431886 diff --git a/datasets/搭电设备/val/images/订单1806627_54_7108090.jpg b/datasets/搭电设备/val/images/订单1806627_54_7108090.jpg new file mode 100644 index 0000000..9a892e0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806627_54_7108090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ded75888edb3309bece34798dc679fca6eb9082832730fda00432510dde831 +size 612659 diff --git a/datasets/搭电设备/val/images/订单1806629_54_7108083.jpg b/datasets/搭电设备/val/images/订单1806629_54_7108083.jpg new file mode 100644 index 0000000..2297615 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806629_54_7108083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272635d38321346ae3a9a0dc0b8c8c73fd5892ee85a250561d4c7dec2db1d0dc +size 142273 diff --git a/datasets/搭电设备/val/images/订单1806631_54_7108062.jpg b/datasets/搭电设备/val/images/订单1806631_54_7108062.jpg new file mode 100644 index 0000000..d417f97 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806631_54_7108062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb2bc9bc6e1a71b8f8d57d8d065da3a8daf2ff962512ae89773a45aef560696 +size 89850 diff --git a/datasets/搭电设备/val/images/订单1806632_54_7108146.jpg b/datasets/搭电设备/val/images/订单1806632_54_7108146.jpg new file mode 100644 index 0000000..79e1fbe --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806632_54_7108146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4759a21767053066d88ae5ccb0e9984c77ab87f27edd4291d3122075d7460352 +size 625281 diff --git a/datasets/搭电设备/val/images/订单1806633_54_7108097.jpg b/datasets/搭电设备/val/images/订单1806633_54_7108097.jpg new file mode 100644 index 0000000..dfd224f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806633_54_7108097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789039d5ba447a33b3e7df789c25806ffcc6482fe7767dc0623c2db71fa03920 +size 638845 diff --git a/datasets/搭电设备/val/images/订单1806638_54_7108136.jpg b/datasets/搭电设备/val/images/订单1806638_54_7108136.jpg new file mode 100644 index 0000000..7b77986 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806638_54_7108136.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66fecae91ced0046702c8334933098bcc2a5df01cacba80399180b48bb95585 +size 144929 diff --git a/datasets/搭电设备/val/images/订单1806640_54_7108169.jpg b/datasets/搭电设备/val/images/订单1806640_54_7108169.jpg new file mode 100644 index 0000000..7adc47a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806640_54_7108169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6817034b9b8d996b82ead5ec5b8ab7838e5b7e1c70507ec4a7af3732a9f07d6 +size 642254 diff --git a/datasets/搭电设备/val/images/订单1806641_54_7108202.jpg b/datasets/搭电设备/val/images/订单1806641_54_7108202.jpg new file mode 100644 index 0000000..1fdd6c3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806641_54_7108202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da9a92b4497db4432ad21e6208a6b11f0f0e9a505b48bf51f55cbe1bb3ae816 +size 94078 diff --git a/datasets/搭电设备/val/images/订单1806642_54_7108108.jpg b/datasets/搭电设备/val/images/订单1806642_54_7108108.jpg new file mode 100644 index 0000000..e5aacac --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806642_54_7108108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a424e9e2422759c6efe86078da0f5842c6e56e70ddaf0b9ea5f4c016170e373 +size 76815 diff --git a/datasets/搭电设备/val/images/订单1806643_54_7108287.jpg b/datasets/搭电设备/val/images/订单1806643_54_7108287.jpg new file mode 100644 index 0000000..a993ee5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806643_54_7108287.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbba1be0389739c2d0665a6ab1db017422ac232a1db739085a313ac5b8c9f233 +size 258931 diff --git a/datasets/搭电设备/val/images/订单1806644_54_7108292.jpg b/datasets/搭电设备/val/images/订单1806644_54_7108292.jpg new file mode 100644 index 0000000..6a2bb38 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806644_54_7108292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17856a5acf1ac72e3d55b39c2e502b5978ac3576df552306be579b5f68e6dc0 +size 172177 diff --git a/datasets/搭电设备/val/images/订单1806646_54_7108248.jpg b/datasets/搭电设备/val/images/订单1806646_54_7108248.jpg new file mode 100644 index 0000000..7930b88 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806646_54_7108248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff9b538a6516a754f7d283f84d5287f7e330923fd33bc390550082967d8ce26 +size 136602 diff --git a/datasets/搭电设备/val/images/订单1806647_54_7108271.jpg b/datasets/搭电设备/val/images/订单1806647_54_7108271.jpg new file mode 100644 index 0000000..2dc8af1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806647_54_7108271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfbe6d1f95e835c50ba46be612404f0b397158386fccb29448762c68cf8f9e1 +size 101790 diff --git a/datasets/搭电设备/val/images/订单1806648_54_7108363.jpg b/datasets/搭电设备/val/images/订单1806648_54_7108363.jpg new file mode 100644 index 0000000..a95296f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806648_54_7108363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0ea5093e5a0a3b9e2b124dc36916af81248901ecf12560dc5ae537155b330b +size 219770 diff --git a/datasets/搭电设备/val/images/订单1806650_54_7108324.jpg b/datasets/搭电设备/val/images/订单1806650_54_7108324.jpg new file mode 100644 index 0000000..67a1e6f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806650_54_7108324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553361502a6d80d68326a0167bcf496225f3229dab80befa61f3aeaf3628ca63 +size 170197 diff --git a/datasets/搭电设备/val/images/订单1806651_54_7108313.jpg b/datasets/搭电设备/val/images/订单1806651_54_7108313.jpg new file mode 100644 index 0000000..536ef58 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806651_54_7108313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3842004b96da93dba2365b8e5d8b0f2ffe6d2807b02449654f16b062f2d7b6cb +size 129008 diff --git a/datasets/搭电设备/val/images/订单1806652_54_7108359.jpg b/datasets/搭电设备/val/images/订单1806652_54_7108359.jpg new file mode 100644 index 0000000..fec23fc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806652_54_7108359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3e45e9be478dc18941f1645104ba70e87a3c629f4afe5f9bf0bff483722a57 +size 308248 diff --git a/datasets/搭电设备/val/images/订单1806653_54_7108394.jpg b/datasets/搭电设备/val/images/订单1806653_54_7108394.jpg new file mode 100644 index 0000000..b0a2a6d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806653_54_7108394.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50d7f8408286adcbb22595f0b9454ea51c324405da78eb8b254effbc5803508 +size 96661 diff --git a/datasets/搭电设备/val/images/订单1806654_54_7108350.jpg b/datasets/搭电设备/val/images/订单1806654_54_7108350.jpg new file mode 100644 index 0000000..008f6a0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806654_54_7108350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd791c8081aeaf0240713daa5d3da75dd8d6a622fbcfee00c596119dfe87c91 +size 461716 diff --git a/datasets/搭电设备/val/images/订单1806655_54_7108373.jpg b/datasets/搭电设备/val/images/订单1806655_54_7108373.jpg new file mode 100644 index 0000000..4f95e0b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806655_54_7108373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd23475831b8918436ee06b7a457fd5eab9dedd53f804876ed457629d09bb09 +size 133442 diff --git a/datasets/搭电设备/val/images/订单1806657_54_7108451.jpg b/datasets/搭电设备/val/images/订单1806657_54_7108451.jpg new file mode 100644 index 0000000..de954e6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806657_54_7108451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cefc894875b505f9f2aea8c60c322c7c2a85dd068f1633ecff620938b18fbb2 +size 270749 diff --git a/datasets/搭电设备/val/images/订单1806662_54_7108448.jpg b/datasets/搭电设备/val/images/订单1806662_54_7108448.jpg new file mode 100644 index 0000000..f0d1d08 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806662_54_7108448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8636b7c9333865353141ef6a9eae74bdd490195da5fd69c33dca5acf2f4171f0 +size 174313 diff --git a/datasets/搭电设备/val/images/订单1806663_54_7108439.jpg b/datasets/搭电设备/val/images/订单1806663_54_7108439.jpg new file mode 100644 index 0000000..b4043e5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806663_54_7108439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b9fc051f7ff986b5c50d97de48dd4b974cd514025679519df5e3aa5dd8ce31 +size 98233 diff --git a/datasets/搭电设备/val/images/订单1806664_54_7108455.jpg b/datasets/搭电设备/val/images/订单1806664_54_7108455.jpg new file mode 100644 index 0000000..4c750bf --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806664_54_7108455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cdef87dbf3bf1cca237feb6a0d20e03e50bfbfef27c06cbefc0f218fb25e279 +size 117506 diff --git a/datasets/搭电设备/val/images/订单1806665_54_7108658.jpg b/datasets/搭电设备/val/images/订单1806665_54_7108658.jpg new file mode 100644 index 0000000..2946ae0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806665_54_7108658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfdd2bfac5b0c46b4ce6d88424d9450c7711b56d1456e4c0b7a63027ff56be2 +size 308968 diff --git a/datasets/搭电设备/val/images/订单1806667_54_7108425.jpg b/datasets/搭电设备/val/images/订单1806667_54_7108425.jpg new file mode 100644 index 0000000..b877058 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806667_54_7108425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f7cb2c9d78860ac7f1450fee0bb75ebb306cf6eac039599a4f095e138279d4 +size 117967 diff --git a/datasets/搭电设备/val/images/订单1806668_54_7108391.jpg b/datasets/搭电设备/val/images/订单1806668_54_7108391.jpg new file mode 100644 index 0000000..3f258ef --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806668_54_7108391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129bfe432a04fba11eea8623ae93fe96c5c29e0c4b24eb79989cdd365e401498 +size 140535 diff --git a/datasets/搭电设备/val/images/订单1806672_54_7108606.jpg b/datasets/搭电设备/val/images/订单1806672_54_7108606.jpg new file mode 100644 index 0000000..0036fd3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806672_54_7108606.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b152601af4e33a576cdb15f8e05a32f083742ab06d9acb349a83c1f6639cec +size 159009 diff --git a/datasets/搭电设备/val/images/订单1806673_54_7108602.jpg b/datasets/搭电设备/val/images/订单1806673_54_7108602.jpg new file mode 100644 index 0000000..0a16489 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806673_54_7108602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cfac9212590150d902eb23c6f199e1a180e30f684b55fa471bc228673ef7ee +size 172797 diff --git a/datasets/搭电设备/val/images/订单1806674_54_7108564.jpg b/datasets/搭电设备/val/images/订单1806674_54_7108564.jpg new file mode 100644 index 0000000..8114ca8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806674_54_7108564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:960d4dcb5b237a6dc3e30a167b4f853ccabfc83a19f2ac248dd093e877205128 +size 118428 diff --git a/datasets/搭电设备/val/images/订单1806675_54_7108561.jpg b/datasets/搭电设备/val/images/订单1806675_54_7108561.jpg new file mode 100644 index 0000000..924862e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806675_54_7108561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40ce535c863af266d6dc78f38502bfd554a4ae74aa355447063a6538bd32183 +size 262253 diff --git a/datasets/搭电设备/val/images/订单1806676_54_7108599.jpg b/datasets/搭电设备/val/images/订单1806676_54_7108599.jpg new file mode 100644 index 0000000..422ccd2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806676_54_7108599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c8d1db327d0f8084259ef01d19066ae88436302d8b028b45eba4443c4d6aaf +size 689885 diff --git a/datasets/搭电设备/val/images/订单1806678_54_7108554.jpg b/datasets/搭电设备/val/images/订单1806678_54_7108554.jpg new file mode 100644 index 0000000..accd0a7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806678_54_7108554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887fc1724bb349ef6fa7722bd022d6a4e2803ac0dcb9041b0b80605f6b90b3d0 +size 426285 diff --git a/datasets/搭电设备/val/images/订单1806681_54_7108856.jpg b/datasets/搭电设备/val/images/订单1806681_54_7108856.jpg new file mode 100644 index 0000000..5866b7d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806681_54_7108856.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8066b39acfd9e6888c3bc115df5a56252c7043616e391d344616aae24ee5f130 +size 159339 diff --git a/datasets/搭电设备/val/images/订单1806683_54_7108630.jpg b/datasets/搭电设备/val/images/订单1806683_54_7108630.jpg new file mode 100644 index 0000000..08c32bb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806683_54_7108630.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bd0efaca303c01b41446be3728f9ce0a83707f188debd9070d8ba16f5aa218 +size 152874 diff --git a/datasets/搭电设备/val/images/订单1806685_54_7108634.jpg b/datasets/搭电设备/val/images/订单1806685_54_7108634.jpg new file mode 100644 index 0000000..2194e98 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806685_54_7108634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ed1413c4fd20b4834107b360d6847fd43c911179ffabfcfb7ad649277b6818 +size 169482 diff --git a/datasets/搭电设备/val/images/订单1806687_54_7108743.jpg b/datasets/搭电设备/val/images/订单1806687_54_7108743.jpg new file mode 100644 index 0000000..d2c7b68 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806687_54_7108743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69b179d0e2c9f313688a46e9f93037721f076780f132033588240edbac7c5af +size 155558 diff --git a/datasets/搭电设备/val/images/订单1806688_54_7108724.jpg b/datasets/搭电设备/val/images/订单1806688_54_7108724.jpg new file mode 100644 index 0000000..25b4668 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806688_54_7108724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ec709115848f259d5cb96bb72cd182ed82e89b7570e89be29210a7bfce4701 +size 171379 diff --git a/datasets/搭电设备/val/images/订单1806689_54_7109611.jpg b/datasets/搭电设备/val/images/订单1806689_54_7109611.jpg new file mode 100644 index 0000000..ae5e061 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806689_54_7109611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c58e577b609f529486f9fa044af3f4904a511d0acb852609f25e209fb3181d0 +size 175237 diff --git a/datasets/搭电设备/val/images/订单1806693_54_7108734.jpg b/datasets/搭电设备/val/images/订单1806693_54_7108734.jpg new file mode 100644 index 0000000..3bd05a0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806693_54_7108734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e22b79d9f1f92bccc1dd35f0ae808b3581d1ec44cc1308f5b842a635e4eeadc +size 444210 diff --git a/datasets/搭电设备/val/images/订单1806696_54_7108697.jpg b/datasets/搭电设备/val/images/订单1806696_54_7108697.jpg new file mode 100644 index 0000000..63f06ab --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806696_54_7108697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db343eb955bb7368b9789e99e6cfa535c2e41d1c1942e322b5ae1dbbc92026c +size 145385 diff --git a/datasets/搭电设备/val/images/订单1806697_54_7108780.jpg b/datasets/搭电设备/val/images/订单1806697_54_7108780.jpg new file mode 100644 index 0000000..ffc8639 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806697_54_7108780.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d94e1c5b064315d99162e28695c78bd4553b861c121a64435ebf9a979968609 +size 136517 diff --git a/datasets/搭电设备/val/images/订单1806698_54_7108720.jpg b/datasets/搭电设备/val/images/订单1806698_54_7108720.jpg new file mode 100644 index 0000000..4e03f91 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806698_54_7108720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab77a70628a26f881cb72fe82d97885d867291796262f4a60d88b8f970da015 +size 115669 diff --git a/datasets/搭电设备/val/images/订单1806701_54_7108774.jpg b/datasets/搭电设备/val/images/订单1806701_54_7108774.jpg new file mode 100644 index 0000000..8fff635 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806701_54_7108774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11fd081dfb1cbb1bacb15567a9e0ff806f8e2e80346534dcc1234679fb9a1f8b +size 167316 diff --git a/datasets/搭电设备/val/images/订单1806702_54_7108885.jpg b/datasets/搭电设备/val/images/订单1806702_54_7108885.jpg new file mode 100644 index 0000000..effd2b7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806702_54_7108885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57323211dd9b2fbdd56de75df220f42c6cfe5d993325c91b42708632e717fd56 +size 108481 diff --git a/datasets/搭电设备/val/images/订单1806704_54_7108804.jpg b/datasets/搭电设备/val/images/订单1806704_54_7108804.jpg new file mode 100644 index 0000000..5040e18 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806704_54_7108804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38516d356d188f1a56dc5caa106d66118f5fa0fab8680e5b89e319d46408ba7f +size 168745 diff --git a/datasets/搭电设备/val/images/订单1806705_54_7109134.jpg b/datasets/搭电设备/val/images/订单1806705_54_7109134.jpg new file mode 100644 index 0000000..1a0f485 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806705_54_7109134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c2f09d1ae47ec8a0fe01e8a342e31684c18862d1f648444d81c13a4ec47ad6 +size 148093 diff --git a/datasets/搭电设备/val/images/订单1806707_54_7108965.jpg b/datasets/搭电设备/val/images/订单1806707_54_7108965.jpg new file mode 100644 index 0000000..382d843 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806707_54_7108965.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d1a46f7ddb91df660a4fdfa2d8ad27158108827ae83a22bd6c70956247229a +size 565790 diff --git a/datasets/搭电设备/val/images/订单1806710_54_7108869.jpg b/datasets/搭电设备/val/images/订单1806710_54_7108869.jpg new file mode 100644 index 0000000..e6e729e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806710_54_7108869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b6268960c13169564efb68351b3ce221899ab0d302e2f856b77b934ca90e4e +size 181652 diff --git a/datasets/搭电设备/val/images/订单1806714_54_7108948.jpg b/datasets/搭电设备/val/images/订单1806714_54_7108948.jpg new file mode 100644 index 0000000..8098bd9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806714_54_7108948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f38c03d76f14ea74552e2e86a71c6f60d48ae4a36271da589223649de2c1a6 +size 334749 diff --git a/datasets/搭电设备/val/images/订单1806715_54_7108938.jpg b/datasets/搭电设备/val/images/订单1806715_54_7108938.jpg new file mode 100644 index 0000000..34fc912 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806715_54_7108938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22e4a45e8ea09fba8444d3fe0ab0b25bc9fa6715102a00d8923c75a64ac43592 +size 166210 diff --git a/datasets/搭电设备/val/images/订单1806720_54_7108980.jpg b/datasets/搭电设备/val/images/订单1806720_54_7108980.jpg new file mode 100644 index 0000000..eef04a1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806720_54_7108980.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1cec7650ee259060824be7ca9453132d84d8fc640e8508b689b6425de35192 +size 154241 diff --git a/datasets/搭电设备/val/images/订单1806722_54_7109188.jpg b/datasets/搭电设备/val/images/订单1806722_54_7109188.jpg new file mode 100644 index 0000000..be6a0b8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806722_54_7109188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f0dc6e8ab2f9672a1a93c77f7314cc5b9b5c82bdb33272750b98575e48d5cc9 +size 84151 diff --git a/datasets/搭电设备/val/images/订单1806724_54_7108969.jpg b/datasets/搭电设备/val/images/订单1806724_54_7108969.jpg new file mode 100644 index 0000000..2dc3b25 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806724_54_7108969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7939a9774c5e9a78e6badfcbf55a24465d58dfe58a9709c3759ca2c4bc15157 +size 575262 diff --git a/datasets/搭电设备/val/images/订单1806725_54_7109076.jpg b/datasets/搭电设备/val/images/订单1806725_54_7109076.jpg new file mode 100644 index 0000000..a5c8ae3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806725_54_7109076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f3301c7c2b37ea50162ef405b08b8c0ab2972ef60462ad4a2919b232f821fe +size 140011 diff --git a/datasets/搭电设备/val/images/订单1806726_54_7109012.jpg b/datasets/搭电设备/val/images/订单1806726_54_7109012.jpg new file mode 100644 index 0000000..252da39 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806726_54_7109012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1112c9b7cbbb324c23a76da698892409d4b0162711f14c0db6e8a8bb9470dcdc +size 172659 diff --git a/datasets/搭电设备/val/images/订单1806731_54_7109031.jpg b/datasets/搭电设备/val/images/订单1806731_54_7109031.jpg new file mode 100644 index 0000000..7c88c51 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806731_54_7109031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8a042abcbe21a3502bdb5c18cae8b346ffa431c6543efbad43801f9422bf17 +size 137813 diff --git a/datasets/搭电设备/val/images/订单1806732_54_7109073.jpg b/datasets/搭电设备/val/images/订单1806732_54_7109073.jpg new file mode 100644 index 0000000..0341c8b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806732_54_7109073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef898bbdeb3996efa8f7136822f2b9133c6b655681c7793732dff727e1b48692 +size 561706 diff --git a/datasets/搭电设备/val/images/订单1806735_54_7109162.jpg b/datasets/搭电设备/val/images/订单1806735_54_7109162.jpg new file mode 100644 index 0000000..68b4ce1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806735_54_7109162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c405329e830df6903785049448a12af0d69443810768749ce9b48015321a1d +size 131333 diff --git a/datasets/搭电设备/val/images/订单1806736_54_7109105.jpg b/datasets/搭电设备/val/images/订单1806736_54_7109105.jpg new file mode 100644 index 0000000..d2ac0dd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806736_54_7109105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa3d843bc58faed99f5f908e81686ad7c2780d68c746ef9a39c8f9bf0061ce4 +size 104531 diff --git a/datasets/搭电设备/val/images/订单1806738_54_7109156.jpg b/datasets/搭电设备/val/images/订单1806738_54_7109156.jpg new file mode 100644 index 0000000..467ca23 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806738_54_7109156.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841b3e752f873e00be2743565487dbc8142af70ed4eee6b61f57f0b897078655 +size 343646 diff --git a/datasets/搭电设备/val/images/订单1806739_54_7109130.jpg b/datasets/搭电设备/val/images/订单1806739_54_7109130.jpg new file mode 100644 index 0000000..0156fe3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806739_54_7109130.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3903ebea681c6fe0cbf1bcf61f169e107c78a714ba9e04c92d0419e8fbda50f +size 592919 diff --git a/datasets/搭电设备/val/images/订单1806740_54_7109295.jpg b/datasets/搭电设备/val/images/订单1806740_54_7109295.jpg new file mode 100644 index 0000000..1b12bf5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806740_54_7109295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed28e78c9082c0c3d10b60615ff9728cb94dbed115ed69daf17dae8d772b8b3 +size 233829 diff --git a/datasets/搭电设备/val/images/订单1806744_54_7109187.jpg b/datasets/搭电设备/val/images/订单1806744_54_7109187.jpg new file mode 100644 index 0000000..34e9201 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806744_54_7109187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106f4a00eacd8c55475ac7e4c8b9429115e93c71b9aeab0ad0b61c5fcfdc5ea5 +size 160230 diff --git a/datasets/搭电设备/val/images/订单1806746_54_7109196.jpg b/datasets/搭电设备/val/images/订单1806746_54_7109196.jpg new file mode 100644 index 0000000..6c52bad --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806746_54_7109196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736d8c580f4350deaa6e545fbefa5b6ac80977a1f317870d9745d3ad19a6a88c +size 167641 diff --git a/datasets/搭电设备/val/images/订单1806748_54_7109284.jpg b/datasets/搭电设备/val/images/订单1806748_54_7109284.jpg new file mode 100644 index 0000000..641923e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806748_54_7109284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10f172569cfd09ba03a133e9a331cdba3fd8acdcb77a63cdd91ccc5aeb13779 +size 137345 diff --git a/datasets/搭电设备/val/images/订单1806749_54_7109205.jpg b/datasets/搭电设备/val/images/订单1806749_54_7109205.jpg new file mode 100644 index 0000000..b51d880 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806749_54_7109205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d6eb10e9052f23dd8ddb27d112f5ecb84c664ba6b46b4cc66b1f2880709978 +size 99657 diff --git a/datasets/搭电设备/val/images/订单1806750_54_7109253.jpg b/datasets/搭电设备/val/images/订单1806750_54_7109253.jpg new file mode 100644 index 0000000..c885d33 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806750_54_7109253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de80f74e661dfe3089ee798f0bf51c605aa4cd977e1ecffe5e0548e12eb1d2a8 +size 137156 diff --git a/datasets/搭电设备/val/images/订单1806751_54_7109275.jpg b/datasets/搭电设备/val/images/订单1806751_54_7109275.jpg new file mode 100644 index 0000000..2c579bd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806751_54_7109275.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c707f2e9c1b7012de74bd3120aa69cae3b80af36b7f84d2ed6e1ffca2ef4d46e +size 81808 diff --git a/datasets/搭电设备/val/images/订单1806753_54_7109291.jpg b/datasets/搭电设备/val/images/订单1806753_54_7109291.jpg new file mode 100644 index 0000000..56796f9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806753_54_7109291.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3ae9e57692db161f97c2ab75b0a88e31728c0658b624232ffdd808455bc3f8 +size 163748 diff --git a/datasets/搭电设备/val/images/订单1806754_54_7109257.jpg b/datasets/搭电设备/val/images/订单1806754_54_7109257.jpg new file mode 100644 index 0000000..5f6483a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806754_54_7109257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ecc05682e3368d33b269c078479d660248ed439602a001f048f8d997c9daf6 +size 148853 diff --git a/datasets/搭电设备/val/images/订单1806755_54_7109402.jpg b/datasets/搭电设备/val/images/订单1806755_54_7109402.jpg new file mode 100644 index 0000000..9b9205f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806755_54_7109402.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec40caf87e876fb7a367f044bafbe04ebebf1bf666536518c599d1aa893eb199 +size 343472 diff --git a/datasets/搭电设备/val/images/订单1806756_54_7109492.jpg b/datasets/搭电设备/val/images/订单1806756_54_7109492.jpg new file mode 100644 index 0000000..1ece651 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806756_54_7109492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1baeaef98ec9a943e3d0a71baa56fafa3a63463642f984efcfa798b6c5486cdb +size 385968 diff --git a/datasets/搭电设备/val/images/订单1806757_54_7109360.jpg b/datasets/搭电设备/val/images/订单1806757_54_7109360.jpg new file mode 100644 index 0000000..ed67bfb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806757_54_7109360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba726caf1fd2ef940336da5e4472fe5014ad459a304a005d98bb712eca1b13ee +size 161012 diff --git a/datasets/搭电设备/val/images/订单1806761_54_7109398.jpg b/datasets/搭电设备/val/images/订单1806761_54_7109398.jpg new file mode 100644 index 0000000..abe3330 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806761_54_7109398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be14cf8f3675d85ee63202b87dad42ec1184e36e8ac6747d9a9d118abe09a601 +size 205011 diff --git a/datasets/搭电设备/val/images/订单1806762_54_7109508.jpg b/datasets/搭电设备/val/images/订单1806762_54_7109508.jpg new file mode 100644 index 0000000..ff61657 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806762_54_7109508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fee6e06dfab411048b2197be0cbd5fe6cc0e7c3c504547e24286b6bc448214b +size 160618 diff --git a/datasets/搭电设备/val/images/订单1806763_54_7109432.jpg b/datasets/搭电设备/val/images/订单1806763_54_7109432.jpg new file mode 100644 index 0000000..6cd030f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806763_54_7109432.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f4c563f8d784a8a70d9582c2e68521628e2e5dbd6c3cd6d73238d2804bcd25 +size 153400 diff --git a/datasets/搭电设备/val/images/订单1806764_54_7109327.jpg b/datasets/搭电设备/val/images/订单1806764_54_7109327.jpg new file mode 100644 index 0000000..5b37967 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806764_54_7109327.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9748a8a3c1652879bd31ce72f51821f9114c252673e66666ed6060a07c63949 +size 175588 diff --git a/datasets/搭电设备/val/images/订单1806765_54_7109369.jpg b/datasets/搭电设备/val/images/订单1806765_54_7109369.jpg new file mode 100644 index 0000000..231344a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806765_54_7109369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc022fc2e57a40079409ceb6fe7958b4f886e19de9d8951543cc252211f0cd0 +size 483058 diff --git a/datasets/搭电设备/val/images/订单1806766_54_7109411.jpg b/datasets/搭电设备/val/images/订单1806766_54_7109411.jpg new file mode 100644 index 0000000..87832c1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806766_54_7109411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7b9383b877520d6413d3ed4e7035b220aa3f5276c55856e571a50ddc420510 +size 132265 diff --git a/datasets/搭电设备/val/images/订单1806767_54_7109353.jpg b/datasets/搭电设备/val/images/订单1806767_54_7109353.jpg new file mode 100644 index 0000000..da98611 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806767_54_7109353.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a558989f3766447765dbc5e4cb834561b8bc70753fa9cb1e5e7c4b4d107b7bf3 +size 140912 diff --git a/datasets/搭电设备/val/images/订单1806768_54_7109469.jpg b/datasets/搭电设备/val/images/订单1806768_54_7109469.jpg new file mode 100644 index 0000000..ab0846d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806768_54_7109469.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a977e56c99840c7f1d061563f4628e3eb4e7407f9592f901d64647d2c23975b0 +size 162736 diff --git a/datasets/搭电设备/val/images/订单1806769_54_7109513.jpg b/datasets/搭电设备/val/images/订单1806769_54_7109513.jpg new file mode 100644 index 0000000..487941c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806769_54_7109513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9fcf6a9c524dc9394cb36509cb91ab05853ed11aad6b01906d980d577f1c10 +size 387009 diff --git a/datasets/搭电设备/val/images/订单1806771_54_7109480.jpg b/datasets/搭电设备/val/images/订单1806771_54_7109480.jpg new file mode 100644 index 0000000..379433c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806771_54_7109480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f60fa5ad9ae8f083db695472dd915ce25b5aa48ac456630ca7e43ab4daaf104 +size 100336 diff --git a/datasets/搭电设备/val/images/订单1806772_54_7109428.jpg b/datasets/搭电设备/val/images/订单1806772_54_7109428.jpg new file mode 100644 index 0000000..4bea8aa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806772_54_7109428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7838e725338ad2d919f2cbf1a22ca00833d1ae7d788e3b3932630b571b943a68 +size 72640 diff --git a/datasets/搭电设备/val/images/订单1806773_54_7109533.jpg b/datasets/搭电设备/val/images/订单1806773_54_7109533.jpg new file mode 100644 index 0000000..6f88c5e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806773_54_7109533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258171f47d37607308ed5f2908867c8491bc3a08ecb57eb140444afaa3e99cbc +size 103375 diff --git a/datasets/搭电设备/val/images/订单1806775_54_7109540.jpg b/datasets/搭电设备/val/images/订单1806775_54_7109540.jpg new file mode 100644 index 0000000..2712887 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806775_54_7109540.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0936511e7fbcfe3d3fa664678d44a472213edeaee868fa72b8eb540a5268a21c +size 570766 diff --git a/datasets/搭电设备/val/images/订单1806776_54_7109529.jpg b/datasets/搭电设备/val/images/订单1806776_54_7109529.jpg new file mode 100644 index 0000000..0e3acc6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806776_54_7109529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4d75176388b659a9f76dd6846be1c19e6466d116a2b2ee44a61dcc8e4c8dbd +size 113919 diff --git a/datasets/搭电设备/val/images/订单1806777_54_7109581.jpg b/datasets/搭电设备/val/images/订单1806777_54_7109581.jpg new file mode 100644 index 0000000..4453a9d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806777_54_7109581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bf8bc8ea46987c91447364346690a6d445a59a17ff0b707c21c09fad39b26b +size 115237 diff --git a/datasets/搭电设备/val/images/订单1806779_54_7109621.jpg b/datasets/搭电设备/val/images/订单1806779_54_7109621.jpg new file mode 100644 index 0000000..f6f9fc9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806779_54_7109621.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6133bfcb8e346a6a6cefc3bbb0ad9e92de27c79a1c4679b4728dc9cf1bb6c8 +size 125435 diff --git a/datasets/搭电设备/val/images/订单1806786_54_7109636.jpg b/datasets/搭电设备/val/images/订单1806786_54_7109636.jpg new file mode 100644 index 0000000..9f7b35d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806786_54_7109636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14231cb1a463baea8034df0c2613d9d2012239e103deee278f6eb62550d6617a +size 182907 diff --git a/datasets/搭电设备/val/images/订单1806788_54_7109732.jpg b/datasets/搭电设备/val/images/订单1806788_54_7109732.jpg new file mode 100644 index 0000000..b25b2d3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806788_54_7109732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6542258507952d10857361c77e7beeb42bd3c4c960fe39c627d3e2cac7f8ec9c +size 404697 diff --git a/datasets/搭电设备/val/images/订单1806790_54_7109659.jpg b/datasets/搭电设备/val/images/订单1806790_54_7109659.jpg new file mode 100644 index 0000000..41c82b3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806790_54_7109659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e777aca4cf280d5a66784266ac3a4bc5d3c9760f41f0bf77f3a42cc1f51593 +size 377713 diff --git a/datasets/搭电设备/val/images/订单1806792_54_7109784.jpg b/datasets/搭电设备/val/images/订单1806792_54_7109784.jpg new file mode 100644 index 0000000..88617a1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806792_54_7109784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d96529019f15c498400345973b160b43c3c2e2469a9467486c3c0a359ee2be +size 305822 diff --git a/datasets/搭电设备/val/images/订单1806793_54_7109692.jpg b/datasets/搭电设备/val/images/订单1806793_54_7109692.jpg new file mode 100644 index 0000000..8aed9e2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806793_54_7109692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7636429b79824e492b40a6c0b39256be6aa0d7ad36f8c3d44540440866a87d4 +size 129667 diff --git a/datasets/搭电设备/val/images/订单1806796_54_7109702.jpg b/datasets/搭电设备/val/images/订单1806796_54_7109702.jpg new file mode 100644 index 0000000..54ff1f9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806796_54_7109702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5b98d6742804cee421358d89b7e6230b22ac861c3f981bfe5d4b0835b81e68 +size 593221 diff --git a/datasets/搭电设备/val/images/订单1806797_54_7109797.jpg b/datasets/搭电设备/val/images/订单1806797_54_7109797.jpg new file mode 100644 index 0000000..730e941 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806797_54_7109797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c442a724265690c8fe7ced4a371a2ca475da2bdfdc5073c8a44913af3ea540af +size 133986 diff --git a/datasets/搭电设备/val/images/订单1806798_54_7109831.jpg b/datasets/搭电设备/val/images/订单1806798_54_7109831.jpg new file mode 100644 index 0000000..9ea4519 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806798_54_7109831.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd350e8103e69d452d0a3904e99dcfb195431a6aaf5d36d1e6cf7085caae006 +size 155633 diff --git a/datasets/搭电设备/val/images/订单1806799_54_7109766.jpg b/datasets/搭电设备/val/images/订单1806799_54_7109766.jpg new file mode 100644 index 0000000..024bb01 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806799_54_7109766.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44804c910fe6b11166be885b6de854738e329dc6de2ed2ebd9f08c53d7ad001 +size 279761 diff --git a/datasets/搭电设备/val/images/订单1806804_54_7109820.jpg b/datasets/搭电设备/val/images/订单1806804_54_7109820.jpg new file mode 100644 index 0000000..ad8e28b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806804_54_7109820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd171ba4fd6d712b79794a429f16a2cae36aa42d4e76df4d1f7b82f1d5e115b +size 473855 diff --git a/datasets/搭电设备/val/images/订单1806805_54_7109775.jpg b/datasets/搭电设备/val/images/订单1806805_54_7109775.jpg new file mode 100644 index 0000000..eb84ced --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806805_54_7109775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bc23e8f45aaad90a8621e7aa7136dd7bae79a81d22c8521299a1c0e6f62840 +size 593455 diff --git a/datasets/搭电设备/val/images/订单1806807_54_7110017.jpg b/datasets/搭电设备/val/images/订单1806807_54_7110017.jpg new file mode 100644 index 0000000..fd60f0b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806807_54_7110017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010b9a2bc1fd7f3cf7c6efba60d73e0da1b73bbe3467efe7015645642944a376 +size 748407 diff --git a/datasets/搭电设备/val/images/订单1806808_54_7109862.jpg b/datasets/搭电设备/val/images/订单1806808_54_7109862.jpg new file mode 100644 index 0000000..e825d3d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806808_54_7109862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cc4d6bdf1bc77fbade6fd651b790c2544c13b92e0df57e3ce13004f48745bc +size 121604 diff --git a/datasets/搭电设备/val/images/订单1806810_54_7110039.jpg b/datasets/搭电设备/val/images/订单1806810_54_7110039.jpg new file mode 100644 index 0000000..ce1ae92 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806810_54_7110039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d9794043e8e341270c29b59d67bf519ab57c9c745a4fa913b66a0bd25b0d2b +size 111871 diff --git a/datasets/搭电设备/val/images/订单1806812_54_7109975.jpg b/datasets/搭电设备/val/images/订单1806812_54_7109975.jpg new file mode 100644 index 0000000..f9f1a71 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806812_54_7109975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33fa294b3a773a2e02ef882db8a9f9f2eaa15ffd84e0e77ada4e6e7604050314 +size 263722 diff --git a/datasets/搭电设备/val/images/订单1806813_54_7109981.jpg b/datasets/搭电设备/val/images/订单1806813_54_7109981.jpg new file mode 100644 index 0000000..902fc81 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806813_54_7109981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7a4641a87665d24781ba8d2996684ead5cfc9d589f50131a26f677ed2214f5 +size 96697 diff --git a/datasets/搭电设备/val/images/订单1806816_54_7109990.jpg b/datasets/搭电设备/val/images/订单1806816_54_7109990.jpg new file mode 100644 index 0000000..af517f2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806816_54_7109990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d789ad3a69a83a9af95e3a66123694fa446f4ae0aaa0e0c738f24dc937eed1e8 +size 132987 diff --git a/datasets/搭电设备/val/images/订单1806819_54_7109978.jpg b/datasets/搭电设备/val/images/订单1806819_54_7109978.jpg new file mode 100644 index 0000000..c10f0d4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806819_54_7109978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308a438e361d558ff598115a2eb6759621736095fab1c11692993b2f376156cf +size 458556 diff --git a/datasets/搭电设备/val/images/订单1806820_54_7110183.jpg b/datasets/搭电设备/val/images/订单1806820_54_7110183.jpg new file mode 100644 index 0000000..c5a0285 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806820_54_7110183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67954ac2544db322b7ab23313a2048ad17b492b75dace30ba5b9b772f19e2afa +size 399460 diff --git a/datasets/搭电设备/val/images/订单1806821_54_7109963.jpg b/datasets/搭电设备/val/images/订单1806821_54_7109963.jpg new file mode 100644 index 0000000..ffb752e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806821_54_7109963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e38087f03540f66d4b8be100e38b6627cd4a1f55aa1749ceb0b8b66e9b628d +size 137351 diff --git a/datasets/搭电设备/val/images/订单1806822_54_7109909.jpg b/datasets/搭电设备/val/images/订单1806822_54_7109909.jpg new file mode 100644 index 0000000..1821e83 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806822_54_7109909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621098c78b5597f608cc0ac3450e615166eac5d187a938e32cb8f5f80257e672 +size 130955 diff --git a/datasets/搭电设备/val/images/订单1806823_54_7109930.jpg b/datasets/搭电设备/val/images/订单1806823_54_7109930.jpg new file mode 100644 index 0000000..89c916c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806823_54_7109930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9741827917232ecfd21b535c983b927fe23d40b8df388b79a5ae93d5c46c553a +size 194504 diff --git a/datasets/搭电设备/val/images/订单1806824_54_7109984.jpg b/datasets/搭电设备/val/images/订单1806824_54_7109984.jpg new file mode 100644 index 0000000..a80484b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806824_54_7109984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be993a9198f64673e2801130f683c64b5f81779ad0eba5732337ed5d1a1c457 +size 577340 diff --git a/datasets/搭电设备/val/images/订单1806826_54_7109921.jpg b/datasets/搭电设备/val/images/订单1806826_54_7109921.jpg new file mode 100644 index 0000000..0eb83c4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806826_54_7109921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec930415df816dbaf9c2ceb96edc226ae01f62d6925564e839e08967ba9b861b +size 107972 diff --git a/datasets/搭电设备/val/images/订单1806827_54_7110073.jpg b/datasets/搭电设备/val/images/订单1806827_54_7110073.jpg new file mode 100644 index 0000000..ed83f65 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806827_54_7110073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a52fd97e463ee92001fc4f2fc77273dc4546f7fa49b42607e2620f1574db08a +size 436061 diff --git a/datasets/搭电设备/val/images/订单1806828_54_7110022.jpg b/datasets/搭电设备/val/images/订单1806828_54_7110022.jpg new file mode 100644 index 0000000..c7fd5b3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806828_54_7110022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ade8f2c362fedb1aa449a6f9341f25bbd6f48937c03dc08888d2730a5e9451 +size 132474 diff --git a/datasets/搭电设备/val/images/订单1806829_54_7110062.jpg b/datasets/搭电设备/val/images/订单1806829_54_7110062.jpg new file mode 100644 index 0000000..3becff7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806829_54_7110062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68904407c2260874cd079f44a23d3fe26be3d3c30caeb79b857151794afc31c4 +size 166583 diff --git a/datasets/搭电设备/val/images/订单1806830_54_7110177.jpg b/datasets/搭电设备/val/images/订单1806830_54_7110177.jpg new file mode 100644 index 0000000..cf20f98 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806830_54_7110177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210175a10e9a711e6b88e2b05431fbf384e8abf2c1bde319516b6021c682335e +size 404391 diff --git a/datasets/搭电设备/val/images/订单1806832_54_7110077.jpg b/datasets/搭电设备/val/images/订单1806832_54_7110077.jpg new file mode 100644 index 0000000..756444a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806832_54_7110077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6683e710004535621088c3b51edf40eb2bd223c906a6fa7f454cea670c932e26 +size 102219 diff --git a/datasets/搭电设备/val/images/订单1806834_54_7110091.jpg b/datasets/搭电设备/val/images/订单1806834_54_7110091.jpg new file mode 100644 index 0000000..41f4287 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806834_54_7110091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550b5cac2de1807c430b6f9c9571d9ec32b8e9a3ad3353a6e86bc9a48e94ccdf +size 213647 diff --git a/datasets/搭电设备/val/images/订单1806836_54_7110124.jpg b/datasets/搭电设备/val/images/订单1806836_54_7110124.jpg new file mode 100644 index 0000000..604a185 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806836_54_7110124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ae70ffa5f1bcf2d7c76e85b1c40c9056da547001e32a01cafb35b31a2dbfe3 +size 96912 diff --git a/datasets/搭电设备/val/images/订单1806838_54_7110102.jpg b/datasets/搭电设备/val/images/订单1806838_54_7110102.jpg new file mode 100644 index 0000000..26ecd36 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806838_54_7110102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49782aef33a89b0201a7e68bf16fd6b96e9caff455c42cf80d38b562d99713a4 +size 112460 diff --git a/datasets/搭电设备/val/images/订单1806841_54_7110201.jpg b/datasets/搭电设备/val/images/订单1806841_54_7110201.jpg new file mode 100644 index 0000000..1a25277 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806841_54_7110201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875e6731b8613c05236079c85e5c04bf2e562cb3445382cd4517f4f1ffc6980f +size 176127 diff --git a/datasets/搭电设备/val/images/订单1806845_54_7110202.jpg b/datasets/搭电设备/val/images/订单1806845_54_7110202.jpg new file mode 100644 index 0000000..6cbab77 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806845_54_7110202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f84a5c98a2ffa0dc889585eed21d799f12953f4994015b5f7598fcdee81012b +size 525531 diff --git a/datasets/搭电设备/val/images/订单1806849_54_7110265.jpg b/datasets/搭电设备/val/images/订单1806849_54_7110265.jpg new file mode 100644 index 0000000..882c0a4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806849_54_7110265.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d9393ab4b0039d1190c0f10258082b51af6aa9264aebf899c60240ec31272a +size 287240 diff --git a/datasets/搭电设备/val/images/订单1806851_54_7110307.jpg b/datasets/搭电设备/val/images/订单1806851_54_7110307.jpg new file mode 100644 index 0000000..eab5169 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806851_54_7110307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4b871e7268873d45666759ebf7d65d11b9fa4394f38281f99316c47580f545 +size 147664 diff --git a/datasets/搭电设备/val/images/订单1806852_54_7110286.jpg b/datasets/搭电设备/val/images/订单1806852_54_7110286.jpg new file mode 100644 index 0000000..f080412 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806852_54_7110286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d96744b55bba759feafb6f83435290a1d264dc61abe6cd59780569ac8092152 +size 110265 diff --git a/datasets/搭电设备/val/images/订单1806853_54_7110242.jpg b/datasets/搭电设备/val/images/订单1806853_54_7110242.jpg new file mode 100644 index 0000000..3dd0ea0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806853_54_7110242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7325906a62b93fbd07f575efc3ca946383cea954b74646f144553b5e538acd7a +size 147628 diff --git a/datasets/搭电设备/val/images/订单1806855_54_7110343.jpg b/datasets/搭电设备/val/images/订单1806855_54_7110343.jpg new file mode 100644 index 0000000..bf20554 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806855_54_7110343.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4fcfc8b6409d4e1e2eb63357e1c6f603c7f15ea9839183429b6f4615b6b16c +size 282794 diff --git a/datasets/搭电设备/val/images/订单1806857_54_7110270.jpg b/datasets/搭电设备/val/images/订单1806857_54_7110270.jpg new file mode 100644 index 0000000..a24412a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806857_54_7110270.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec7814ba42db4602564b4a2742046d9e9c29f1269f5694f03734ca72a2e7a7c +size 144406 diff --git a/datasets/搭电设备/val/images/订单1806860_54_7110404.jpg b/datasets/搭电设备/val/images/订单1806860_54_7110404.jpg new file mode 100644 index 0000000..b44a201 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806860_54_7110404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3faf5a74a9a563fbcb6c9b6cb4eeaac81dd0384a2118b21d62cf7553d6fafe +size 104505 diff --git a/datasets/搭电设备/val/images/订单1806861_54_7110290.jpg b/datasets/搭电设备/val/images/订单1806861_54_7110290.jpg new file mode 100644 index 0000000..b6dff1e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806861_54_7110290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85fea8a4929e885738e29d1601132bdebe06d8592b4b2d8715d47ebd700af677 +size 127878 diff --git a/datasets/搭电设备/val/images/订单1806862_54_7110454.jpg b/datasets/搭电设备/val/images/订单1806862_54_7110454.jpg new file mode 100644 index 0000000..547314f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806862_54_7110454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9897899d33e420b9799480acb78c14a50567b06dbd9343565a718b2159b2b1a +size 150992 diff --git a/datasets/搭电设备/val/images/订单1806863_54_7110472.jpg b/datasets/搭电设备/val/images/订单1806863_54_7110472.jpg new file mode 100644 index 0000000..b07b824 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806863_54_7110472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54ef9db5f868a8e24613f9cd161af649ff750775b0d62a38dd426bd24fdcc53 +size 95712 diff --git a/datasets/搭电设备/val/images/订单1806864_54_7110387.jpg b/datasets/搭电设备/val/images/订单1806864_54_7110387.jpg new file mode 100644 index 0000000..bd657df --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806864_54_7110387.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96918e5d37ab39302d8d81cc54de93b0a63fcc7a12ef56e8d080ea003d99846 +size 135768 diff --git a/datasets/搭电设备/val/images/订单1806865_54_7110360.jpg b/datasets/搭电设备/val/images/订单1806865_54_7110360.jpg new file mode 100644 index 0000000..8addc4a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806865_54_7110360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17e4d5a78a38563d736056e16c95a5d6ebd4d2bf803ae1d65cee1ac328def94 +size 167969 diff --git a/datasets/搭电设备/val/images/订单1806867_54_7110443.jpg b/datasets/搭电设备/val/images/订单1806867_54_7110443.jpg new file mode 100644 index 0000000..0a48d37 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806867_54_7110443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc07c77fdeb268e5663df4debeb6cc0e9284bdf6ca750b3821c8ba9ac1617418 +size 115477 diff --git a/datasets/搭电设备/val/images/订单1806868_54_7110370.jpg b/datasets/搭电设备/val/images/订单1806868_54_7110370.jpg new file mode 100644 index 0000000..ae5dd22 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806868_54_7110370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1342425c45fb8bc8812a7ae57058e755aa7bbaff11a340cf69a699bc71b16e +size 433346 diff --git a/datasets/搭电设备/val/images/订单1806869_54_7110374.jpg b/datasets/搭电设备/val/images/订单1806869_54_7110374.jpg new file mode 100644 index 0000000..29f09e9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806869_54_7110374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9446e08bf9829a6a63ebe840343f7564373a49fe727d9b2532decfa8e8d958c2 +size 75977 diff --git a/datasets/搭电设备/val/images/订单1806871_54_7110451.jpg b/datasets/搭电设备/val/images/订单1806871_54_7110451.jpg new file mode 100644 index 0000000..36a853f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806871_54_7110451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1584c4d90ccb3fee54c9677c11f16a88e79a09c98f60bab6dc65a34253a15fc9 +size 272735 diff --git a/datasets/搭电设备/val/images/订单1806872_54_7110494.jpg b/datasets/搭电设备/val/images/订单1806872_54_7110494.jpg new file mode 100644 index 0000000..13d061f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806872_54_7110494.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77d82f6fb7976640d1d88466b59dc917da0da601bb02385e9c2c47df49fc22c +size 450304 diff --git a/datasets/搭电设备/val/images/订单1806873_54_7110458.jpg b/datasets/搭电设备/val/images/订单1806873_54_7110458.jpg new file mode 100644 index 0000000..985393d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806873_54_7110458.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab351f66d623681158d0282315b1d76d2f8c05c6385461389bf759ed1a3a2d24 +size 125399 diff --git a/datasets/搭电设备/val/images/订单1806876_54_7110532.jpg b/datasets/搭电设备/val/images/订单1806876_54_7110532.jpg new file mode 100644 index 0000000..523b6d4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806876_54_7110532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6419f5bb306124b8ebd44b3ed836347fa9df241b8d4c76994d51314014b4476 +size 92491 diff --git a/datasets/搭电设备/val/images/订单1806878_54_7110499.jpg b/datasets/搭电设备/val/images/订单1806878_54_7110499.jpg new file mode 100644 index 0000000..4a5862b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806878_54_7110499.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40da2f48c1d23bbe94ceede1aa603f8a9a5b117d9be37cda93d26dfcabf17a9d +size 104526 diff --git a/datasets/搭电设备/val/images/订单1806880_54_7110410.jpg b/datasets/搭电设备/val/images/订单1806880_54_7110410.jpg new file mode 100644 index 0000000..7947aba --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806880_54_7110410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dd9bc4901633bc2aa02b8065aded8725c179112d2ad59a01fc504804941009 +size 146706 diff --git a/datasets/搭电设备/val/images/订单1806884_54_7110503.jpg b/datasets/搭电设备/val/images/订单1806884_54_7110503.jpg new file mode 100644 index 0000000..09a9f20 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806884_54_7110503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0a0ef603801026a0ac42b72cacc8cc18eae7e29669cec5a9f318d06a2f84c6 +size 107476 diff --git a/datasets/搭电设备/val/images/订单1806886_54_7110546.jpg b/datasets/搭电设备/val/images/订单1806886_54_7110546.jpg new file mode 100644 index 0000000..8c48587 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806886_54_7110546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5cba53e1ef5067ba06ee3842ae8311661d523f24b282c556c60fc4f14cbab2b +size 362712 diff --git a/datasets/搭电设备/val/images/订单1806889_54_7110592.jpg b/datasets/搭电设备/val/images/订单1806889_54_7110592.jpg new file mode 100644 index 0000000..6f87efd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806889_54_7110592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e296b59e7d628a98947b22e7fefe94c0ce519e92a1208dba92e2d169a0ee894b +size 155816 diff --git a/datasets/搭电设备/val/images/订单1806890_54_7110634.jpg b/datasets/搭电设备/val/images/订单1806890_54_7110634.jpg new file mode 100644 index 0000000..f67106e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806890_54_7110634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c410bd3d8184f93bc5e2afb60f0c868ddbcc9cb35b60bbacd7cf8baa2ebadb71 +size 107730 diff --git a/datasets/搭电设备/val/images/订单1806891_54_7110649.jpg b/datasets/搭电设备/val/images/订单1806891_54_7110649.jpg new file mode 100644 index 0000000..6ca9909 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806891_54_7110649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb60a5d21800e734f86357437ee4e69a7cfe19a848ae53cbb85b28d4877a385f +size 389415 diff --git a/datasets/搭电设备/val/images/订单1806896_54_7110622.jpg b/datasets/搭电设备/val/images/订单1806896_54_7110622.jpg new file mode 100644 index 0000000..7f85729 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806896_54_7110622.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607b5faa8e9e3be5f0f8029ca38137a9a78542c549a133b125f3bbb1b32c1f9b +size 118604 diff --git a/datasets/搭电设备/val/images/订单1806899_54_7110611.jpg b/datasets/搭电设备/val/images/订单1806899_54_7110611.jpg new file mode 100644 index 0000000..c961323 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806899_54_7110611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c173453c8f81d047da6c0efc5ceca9ff4e92bda26de6391aaa811d52e4a8ddf +size 108495 diff --git a/datasets/搭电设备/val/images/订单1806903_54_7110705.jpg b/datasets/搭电设备/val/images/订单1806903_54_7110705.jpg new file mode 100644 index 0000000..8bfd212 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806903_54_7110705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360709de0bd879a3f36db234cdfdb123d358ef74e130fb29300487843bc6f9a6 +size 100728 diff --git a/datasets/搭电设备/val/images/订单1806904_54_7110675.jpg b/datasets/搭电设备/val/images/订单1806904_54_7110675.jpg new file mode 100644 index 0000000..9451c90 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806904_54_7110675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5555231c3c44574c3dd45515a83773d1406c35807be8774942447dd528525711 +size 120970 diff --git a/datasets/搭电设备/val/images/订单1806905_54_7110715.jpg b/datasets/搭电设备/val/images/订单1806905_54_7110715.jpg new file mode 100644 index 0000000..4b03de6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806905_54_7110715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de9feac13bc425a5483939c308e4e5a06bbdd80d77a14e55d5b84bc8bc3bec4 +size 98248 diff --git a/datasets/搭电设备/val/images/订单1806907_54_7110716.jpg b/datasets/搭电设备/val/images/订单1806907_54_7110716.jpg new file mode 100644 index 0000000..2cb2f54 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806907_54_7110716.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c94d3c96741361673fddb1c823780e92e89baf93ddcceb5502d6c7ca76a8e6 +size 104875 diff --git a/datasets/搭电设备/val/images/订单1806909_54_7110713.jpg b/datasets/搭电设备/val/images/订单1806909_54_7110713.jpg new file mode 100644 index 0000000..fdc60d8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806909_54_7110713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab23043eb3418cb2a0e0b8171157955f907dcff041e9cecf692641532a4c6a14 +size 325621 diff --git a/datasets/搭电设备/val/images/订单1806911_54_7110768.jpg b/datasets/搭电设备/val/images/订单1806911_54_7110768.jpg new file mode 100644 index 0000000..4b585a0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806911_54_7110768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6706f0a01ac84a8c22dc83ff4a31f9fe4f4d9c1539fc23075079d9f977a6580b +size 122098 diff --git a/datasets/搭电设备/val/images/订单1806912_54_7110758.jpg b/datasets/搭电设备/val/images/订单1806912_54_7110758.jpg new file mode 100644 index 0000000..b1b9e60 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806912_54_7110758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd04dee41dc5c615a2fd32b58f14291f4262bccc41b9cfdcc91e9b6c3c1714b +size 352907 diff --git a/datasets/搭电设备/val/images/订单1806913_54_7110903.jpg b/datasets/搭电设备/val/images/订单1806913_54_7110903.jpg new file mode 100644 index 0000000..6748a2a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806913_54_7110903.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c44a076656aea580074cbad3a71f6c7581ba6931ca6b24a8e41c703a8ab4f9e +size 396633 diff --git a/datasets/搭电设备/val/images/订单1806917_54_7110790.jpg b/datasets/搭电设备/val/images/订单1806917_54_7110790.jpg new file mode 100644 index 0000000..7ab8494 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806917_54_7110790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0989e2f2889ef11e8ac907df0d936bb6efdeebe960c5e5e190e3dad9dea763 +size 77699 diff --git a/datasets/搭电设备/val/images/订单1806918_54_7110866.jpg b/datasets/搭电设备/val/images/订单1806918_54_7110866.jpg new file mode 100644 index 0000000..82e3ab4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806918_54_7110866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a9f33a13dbf75cfeae9ef20be51bde3fd643bcd9f4e81568fa879b27da0485 +size 108089 diff --git a/datasets/搭电设备/val/images/订单1806921_54_7110855.jpg b/datasets/搭电设备/val/images/订单1806921_54_7110855.jpg new file mode 100644 index 0000000..c635a8f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806921_54_7110855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1adfd72a85e091c61b882d60416458d31e472f1d30b8e5650cd07aa5fe3bf837 +size 417663 diff --git a/datasets/搭电设备/val/images/订单1806922_54_7110817.jpg b/datasets/搭电设备/val/images/订单1806922_54_7110817.jpg new file mode 100644 index 0000000..6d2e48a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806922_54_7110817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03cd1e7ec744977d62607bad5f139fb7fe409d9088c101fcc89ba2072c815a5 +size 146925 diff --git a/datasets/搭电设备/val/images/订单1806923_54_7110933.jpg b/datasets/搭电设备/val/images/订单1806923_54_7110933.jpg new file mode 100644 index 0000000..6a75184 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806923_54_7110933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a26d50635315b9c068b870a4389994d43617df95da922ff5d255cfdad2e08f +size 83582 diff --git a/datasets/搭电设备/val/images/订单1806925_54_7110928.jpg b/datasets/搭电设备/val/images/订单1806925_54_7110928.jpg new file mode 100644 index 0000000..162c184 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806925_54_7110928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1af6a635f84a1707f9f3bec675bae21784c87c5efb177598c02dda438097af9 +size 430137 diff --git a/datasets/搭电设备/val/images/订单1806926_54_7110891.jpg b/datasets/搭电设备/val/images/订单1806926_54_7110891.jpg new file mode 100644 index 0000000..3ad6a62 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806926_54_7110891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8041bc631611d1b29fdb2f72d500e75992532907ca4b531bbb6f176e19741bce +size 506017 diff --git a/datasets/搭电设备/val/images/订单1806928_54_7110874.jpg b/datasets/搭电设备/val/images/订单1806928_54_7110874.jpg new file mode 100644 index 0000000..fb296dc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806928_54_7110874.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793cc787f1fe78298429408bdd9809dbb20e53233d7a7c7550dbed218e1127df +size 159642 diff --git a/datasets/搭电设备/val/images/订单1806929_54_7110860.jpg b/datasets/搭电设备/val/images/订单1806929_54_7110860.jpg new file mode 100644 index 0000000..0da64bd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806929_54_7110860.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b47b16c8385e9fe9469908c178576b5998ec139a610e319327127886aba0921 +size 88681 diff --git a/datasets/搭电设备/val/images/订单1806930_54_7110908.jpg b/datasets/搭电设备/val/images/订单1806930_54_7110908.jpg new file mode 100644 index 0000000..ce28619 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806930_54_7110908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc24b3d4efe05533f619a2132ad254b9506f3cad1fbbe8e357400e405a37a688 +size 561118 diff --git a/datasets/搭电设备/val/images/订单1806935_54_7111064.jpg b/datasets/搭电设备/val/images/订单1806935_54_7111064.jpg new file mode 100644 index 0000000..4d5b444 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806935_54_7111064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e33f28065027e108a7cbf11e6b61aa39ce91046556d9a12b9eb63381b2da92d +size 91636 diff --git a/datasets/搭电设备/val/images/订单1806936_54_7110997.jpg b/datasets/搭电设备/val/images/订单1806936_54_7110997.jpg new file mode 100644 index 0000000..faa5d38 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806936_54_7110997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766476000dfd5c0e77128edad19e7f5f4bb7ef8f4d2f6d7eafd61bb25746416a +size 103297 diff --git a/datasets/搭电设备/val/images/订单1806937_54_7111022.jpg b/datasets/搭电设备/val/images/订单1806937_54_7111022.jpg new file mode 100644 index 0000000..0d74809 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806937_54_7111022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a0f5a237f3110a41a95cc53ef8555cd2ffed41528f6a90253c0cfe7382e19f +size 74844 diff --git a/datasets/搭电设备/val/images/订单1806938_54_7111058.jpg b/datasets/搭电设备/val/images/订单1806938_54_7111058.jpg new file mode 100644 index 0000000..114115a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806938_54_7111058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527abd9019fb3bf4931541983e60f0ffcd851b478862ae1324278b37a08d14fa +size 386410 diff --git a/datasets/搭电设备/val/images/订单1806940_54_7111093.jpg b/datasets/搭电设备/val/images/订单1806940_54_7111093.jpg new file mode 100644 index 0000000..12e2a07 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806940_54_7111093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28b9b4127a1c203accbf967fb9c9383e383ae6ac9ef5b95a4eabf55452265da +size 97390 diff --git a/datasets/搭电设备/val/images/订单1806941_54_7111078.jpg b/datasets/搭电设备/val/images/订单1806941_54_7111078.jpg new file mode 100644 index 0000000..b1863b9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806941_54_7111078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c48397029bd4e95e1a5aac4bbceccd1db2ef0e5cd850fb2138016383cbe2b0c +size 140379 diff --git a/datasets/搭电设备/val/images/订单1806942_54_7111059.jpg b/datasets/搭电设备/val/images/订单1806942_54_7111059.jpg new file mode 100644 index 0000000..5c4be71 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806942_54_7111059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66d874428508c411f963877cdfb7def36d16978145706f02c7185bc79018c90 +size 131088 diff --git a/datasets/搭电设备/val/images/订单1806943_54_7111145.jpg b/datasets/搭电设备/val/images/订单1806943_54_7111145.jpg new file mode 100644 index 0000000..1cb9fc3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806943_54_7111145.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498ed9dc023735bd4650789ae7422d5efb5326e27c7fc4d652e9510d337533a4 +size 112659 diff --git a/datasets/搭电设备/val/images/订单1806944_54_7111101.jpg b/datasets/搭电设备/val/images/订单1806944_54_7111101.jpg new file mode 100644 index 0000000..efd8652 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806944_54_7111101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8fc3efecc7957e7a4ab5097a76a7c65f3b4c905c55c1633d0f3bcc7a7b685e +size 123953 diff --git a/datasets/搭电设备/val/images/订单1806947_54_7111169.jpg b/datasets/搭电设备/val/images/订单1806947_54_7111169.jpg new file mode 100644 index 0000000..32cf15a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806947_54_7111169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffe3d0e60e21baa27a897e8e081a0a6a2ae8dd9ccf7f825e88d3018280544ac +size 122984 diff --git a/datasets/搭电设备/val/images/订单1806948_54_7111179.jpg b/datasets/搭电设备/val/images/订单1806948_54_7111179.jpg new file mode 100644 index 0000000..8c9fb68 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806948_54_7111179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f832857c8087dce35c1af7b78e32850bfc1bf19d71758e35d32a8d4932b297d +size 136382 diff --git a/datasets/搭电设备/val/images/订单1806950_54_7111170.jpg b/datasets/搭电设备/val/images/订单1806950_54_7111170.jpg new file mode 100644 index 0000000..f00f2d7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806950_54_7111170.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7cc0399afec239f0b1b3602aacec923b5b434361aa70d25bd96389f50849cc5 +size 131182 diff --git a/datasets/搭电设备/val/images/订单1806951_54_7111146.jpg b/datasets/搭电设备/val/images/订单1806951_54_7111146.jpg new file mode 100644 index 0000000..f2ffd90 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806951_54_7111146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324d7e30076ac14354e0fb398050c04d42e1422ac1bf73bc6186dc6806a35c44 +size 78946 diff --git a/datasets/搭电设备/val/images/订单1806952_54_7111201.jpg b/datasets/搭电设备/val/images/订单1806952_54_7111201.jpg new file mode 100644 index 0000000..5244d4d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806952_54_7111201.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64998bce435f92e235579a3985b68dbfb01a387dd7304f8c9bbc0a68542ecb72 +size 301693 diff --git a/datasets/搭电设备/val/images/订单1806953_54_7111324.jpg b/datasets/搭电设备/val/images/订单1806953_54_7111324.jpg new file mode 100644 index 0000000..626f505 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806953_54_7111324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1937373d698aa7134906324d84b240f86f7bc5c123c056740c33da4000c496 +size 138796 diff --git a/datasets/搭电设备/val/images/订单1806954_54_7111216.jpg b/datasets/搭电设备/val/images/订单1806954_54_7111216.jpg new file mode 100644 index 0000000..f9a8f5e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806954_54_7111216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0415d9826dbc87247c533200e46d92a045502087f9539e621e2232a7e7e0f0bd +size 109658 diff --git a/datasets/搭电设备/val/images/订单1806955_54_7111197.jpg b/datasets/搭电设备/val/images/订单1806955_54_7111197.jpg new file mode 100644 index 0000000..296564e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806955_54_7111197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a470a9a35165806b3a325acd2a3aa9488305af428b306b0aecdd5d6f50e4460 +size 94748 diff --git a/datasets/搭电设备/val/images/订单1806958_54_7111195.jpg b/datasets/搭电设备/val/images/订单1806958_54_7111195.jpg new file mode 100644 index 0000000..845a0f6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806958_54_7111195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b86daf9dc4bd77004f78802fa75064a9dedb0a36e34dac71beec21a96b5f990 +size 93468 diff --git a/datasets/搭电设备/val/images/订单1806959_54_7111297.jpg b/datasets/搭电设备/val/images/订单1806959_54_7111297.jpg new file mode 100644 index 0000000..7188660 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806959_54_7111297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9d185de67718bd6569ab6293007538d881799a08796b092598887859c31e9b +size 86220 diff --git a/datasets/搭电设备/val/images/订单1806961_54_7111242.jpg b/datasets/搭电设备/val/images/订单1806961_54_7111242.jpg new file mode 100644 index 0000000..fb851f6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806961_54_7111242.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a58686fcf2cd3a93df9f0b8bc85e0aa14dff32513035fe9b4e98bdc41a5cbd +size 171791 diff --git a/datasets/搭电设备/val/images/订单1806963_54_7111248.jpg b/datasets/搭电设备/val/images/订单1806963_54_7111248.jpg new file mode 100644 index 0000000..df02fb7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806963_54_7111248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc7642632ba9738a36a1946000aa288c62f41ec886190ff0f76e332ea9f2bbf +size 165345 diff --git a/datasets/搭电设备/val/images/订单1806964_54_7111280.jpg b/datasets/搭电设备/val/images/订单1806964_54_7111280.jpg new file mode 100644 index 0000000..173a6d0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806964_54_7111280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640e70c869843eaa99542dc5e0f8b1a3d0c807f900fff52268bf54f2452d4d51 +size 281926 diff --git a/datasets/搭电设备/val/images/订单1806966_54_7111339.jpg b/datasets/搭电设备/val/images/订单1806966_54_7111339.jpg new file mode 100644 index 0000000..29f604a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806966_54_7111339.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a31176dc7f171889566004aec5aa0393060293426d006500f2189f12f83158 +size 101194 diff --git a/datasets/搭电设备/val/images/订单1806967_54_7111259.jpg b/datasets/搭电设备/val/images/订单1806967_54_7111259.jpg new file mode 100644 index 0000000..2291013 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806967_54_7111259.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38980c437d0cd7001d86f180825ff1cbef7487f3e0dce194a8539ee2e14dd555 +size 136619 diff --git a/datasets/搭电设备/val/images/订单1806969_54_7111295.jpg b/datasets/搭电设备/val/images/订单1806969_54_7111295.jpg new file mode 100644 index 0000000..995279b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806969_54_7111295.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7c1a7f72ecb722e6f28d23b0598f01750be052315671103ab77dcd42960e55 +size 356699 diff --git a/datasets/搭电设备/val/images/订单1806972_54_7111359.jpg b/datasets/搭电设备/val/images/订单1806972_54_7111359.jpg new file mode 100644 index 0000000..cfdbb2d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806972_54_7111359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64cf7c09de4557788a0f60eed7c0975f29fe2706af3b2c75ddd70120972be37 +size 592424 diff --git a/datasets/搭电设备/val/images/订单1806973_54_7111444.jpg b/datasets/搭电设备/val/images/订单1806973_54_7111444.jpg new file mode 100644 index 0000000..7a4415e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806973_54_7111444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0830eceaeede1e4933c5c014217a6ddb8825eb8981c41ce8ea69b6ab1d0b47b +size 501202 diff --git a/datasets/搭电设备/val/images/订单1806975_54_7111388.jpg b/datasets/搭电设备/val/images/订单1806975_54_7111388.jpg new file mode 100644 index 0000000..c6d57d3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806975_54_7111388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd741fe383d6276811b0e54a6e1ce8ff3bb38a0be7827c01f95836143f9c55f +size 164074 diff --git a/datasets/搭电设备/val/images/订单1806981_54_7111414.jpg b/datasets/搭电设备/val/images/订单1806981_54_7111414.jpg new file mode 100644 index 0000000..62d52bd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806981_54_7111414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc3c0404f648e8188d5382606e4bcc799dcf1009946dffccd09ef8515fa5af3 +size 140495 diff --git a/datasets/搭电设备/val/images/订单1806982_54_7111419.jpg b/datasets/搭电设备/val/images/订单1806982_54_7111419.jpg new file mode 100644 index 0000000..05aeb31 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806982_54_7111419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ce155e622d88793257612a811d4b4a2591a70ba9ca907e4a5f8f78653a6251 +size 137920 diff --git a/datasets/搭电设备/val/images/订单1806984_54_7111473.jpg b/datasets/搭电设备/val/images/订单1806984_54_7111473.jpg new file mode 100644 index 0000000..cf3bec8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806984_54_7111473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b979669542f50af56d0fc94e7a518bf6d3196c4ba6b7a6d79a99560e05647f36 +size 198274 diff --git a/datasets/搭电设备/val/images/订单1806985_54_7111523.jpg b/datasets/搭电设备/val/images/订单1806985_54_7111523.jpg new file mode 100644 index 0000000..f17a86f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806985_54_7111523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e8dfd2d288540f5709151c548978c46fe1d38e3bec872dc9668584e8b4b790 +size 205293 diff --git a/datasets/搭电设备/val/images/订单1806987_54_7111465.jpg b/datasets/搭电设备/val/images/订单1806987_54_7111465.jpg new file mode 100644 index 0000000..be48fdb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806987_54_7111465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1687ba4cbd5acda317737bcf7e13dd03dfc76fc9fd2951fd6323efb52125cf2 +size 108056 diff --git a/datasets/搭电设备/val/images/订单1806988_54_7111492.jpg b/datasets/搭电设备/val/images/订单1806988_54_7111492.jpg new file mode 100644 index 0000000..639a5f2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806988_54_7111492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba2553f4068b51aa03df2a5a893e1d158ae7a89a1c96d283da3784109652ad9 +size 95349 diff --git a/datasets/搭电设备/val/images/订单1806990_54_7111508.jpg b/datasets/搭电设备/val/images/订单1806990_54_7111508.jpg new file mode 100644 index 0000000..5a36c53 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806990_54_7111508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60c8545adfdc118d861817a03526c04e0ae1c71883bd200c8fb4de5a1f44b21 +size 136543 diff --git a/datasets/搭电设备/val/images/订单1806991_54_7111533.jpg b/datasets/搭电设备/val/images/订单1806991_54_7111533.jpg new file mode 100644 index 0000000..4ebfa69 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806991_54_7111533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0b62ae7deeaed09da39700e8a67fb024411971d305ba108958a8457475b550 +size 134107 diff --git a/datasets/搭电设备/val/images/订单1806992_54_7111543.jpg b/datasets/搭电设备/val/images/订单1806992_54_7111543.jpg new file mode 100644 index 0000000..4962e82 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806992_54_7111543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2276d56b050172e2f339476b4a152c37327c03164ec68c25c32ffcccac5868 +size 139030 diff --git a/datasets/搭电设备/val/images/订单1806994_54_7111561.jpg b/datasets/搭电设备/val/images/订单1806994_54_7111561.jpg new file mode 100644 index 0000000..81431ac --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806994_54_7111561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab67429c7e97b393f7de51e458f59a4176ad1d626490713713f1c23731e7ee6 +size 410603 diff --git a/datasets/搭电设备/val/images/订单1806995_54_7111569.jpg b/datasets/搭电设备/val/images/订单1806995_54_7111569.jpg new file mode 100644 index 0000000..bfddc87 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806995_54_7111569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c52437573bdd20cf44c375e0e6d01b3f7873833be3bee25a86df93c70f2656 +size 133713 diff --git a/datasets/搭电设备/val/images/订单1806996_54_7111580.jpg b/datasets/搭电设备/val/images/订单1806996_54_7111580.jpg new file mode 100644 index 0000000..21be694 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806996_54_7111580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a82f5e65217903cb215cf24ccac28958ffd699309fc00ec9ad1cc274c0b12b +size 116424 diff --git a/datasets/搭电设备/val/images/订单1806997_54_7111590.jpg b/datasets/搭电设备/val/images/订单1806997_54_7111590.jpg new file mode 100644 index 0000000..8b3f925 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806997_54_7111590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a67ea5f923dacfbf96c4ff7dea16099613723705e927fdcb42838e3e39ba66 +size 139585 diff --git a/datasets/搭电设备/val/images/订单1806998_54_7111619.jpg b/datasets/搭电设备/val/images/订单1806998_54_7111619.jpg new file mode 100644 index 0000000..e358327 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1806998_54_7111619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00279f8ca1e97ec62173512b2a84159c5b804aa0ba85f9239db1c2ed343af221 +size 419723 diff --git a/datasets/搭电设备/val/images/订单1807000_54_7111609.jpg b/datasets/搭电设备/val/images/订单1807000_54_7111609.jpg new file mode 100644 index 0000000..60c6a2b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807000_54_7111609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542c51d2e5618268c9d7d7d57884f71f230aa85189d0c73b6e582ce1ee07a6ff +size 99231 diff --git a/datasets/搭电设备/val/images/订单1807001_54_7111604.jpg b/datasets/搭电设备/val/images/订单1807001_54_7111604.jpg new file mode 100644 index 0000000..144b576 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807001_54_7111604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcba7f28176dd92f7a83d8cba18710fe6fd489ae0c4520f7e08c48da36067406 +size 113422 diff --git a/datasets/搭电设备/val/images/订单1807004_54_7111638.jpg b/datasets/搭电设备/val/images/订单1807004_54_7111638.jpg new file mode 100644 index 0000000..81ee88b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807004_54_7111638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e245125079f9454cfe612920084e04803c5476333a0f14c8efbf18096d12f926 +size 168160 diff --git a/datasets/搭电设备/val/images/订单1807006_54_7111646.jpg b/datasets/搭电设备/val/images/订单1807006_54_7111646.jpg new file mode 100644 index 0000000..0d43388 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807006_54_7111646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805bcb76546e1fb2757517da8b35513d874aa132741dd2ca7794cb0b9da2d527 +size 147292 diff --git a/datasets/搭电设备/val/images/订单1807008_54_7113993.jpg b/datasets/搭电设备/val/images/订单1807008_54_7113993.jpg new file mode 100644 index 0000000..423633e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807008_54_7113993.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a2d90c3321e53148a71c6faac79ac800b4d28903090994b0a570f16c77dadb +size 128479 diff --git a/datasets/搭电设备/val/images/订单1807010_54_7111697.jpg b/datasets/搭电设备/val/images/订单1807010_54_7111697.jpg new file mode 100644 index 0000000..5a5813f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807010_54_7111697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34679889ca91aae4ad72a495e1f6e118eb352e5ce011e6a555b441364b319e3c +size 210451 diff --git a/datasets/搭电设备/val/images/订单1807011_54_7111709.jpg b/datasets/搭电设备/val/images/订单1807011_54_7111709.jpg new file mode 100644 index 0000000..2615ff4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807011_54_7111709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565d665a2d0d2ed4b066262d2132c71e50b79436d866f929bf4f77afdab38ddb +size 216229 diff --git a/datasets/搭电设备/val/images/订单1807012_54_7111663.jpg b/datasets/搭电设备/val/images/订单1807012_54_7111663.jpg new file mode 100644 index 0000000..95dba94 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807012_54_7111663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a19da58ea9ba7c0ccd55935e6b2c53f7258e70eda6fa0ac2b779c2e5530c57 +size 157728 diff --git a/datasets/搭电设备/val/images/订单1807014_54_7111683.jpg b/datasets/搭电设备/val/images/订单1807014_54_7111683.jpg new file mode 100644 index 0000000..e6b6ac2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807014_54_7111683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d452f3b59a2b14b258c2d3bbd3e9355a57d994ccd3c5ef671ca0c44fbbfa0f7 +size 145475 diff --git a/datasets/搭电设备/val/images/订单1807015_54_7111686.jpg b/datasets/搭电设备/val/images/订单1807015_54_7111686.jpg new file mode 100644 index 0000000..4859346 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807015_54_7111686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d16c1f49dde209a7bd037e35f4457aab38b7c8997015c310839db439a3ed1c9 +size 379375 diff --git a/datasets/搭电设备/val/images/订单1807017_54_7111734.jpg b/datasets/搭电设备/val/images/订单1807017_54_7111734.jpg new file mode 100644 index 0000000..8f87e87 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807017_54_7111734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4bf140df640060305c2720957661d5f9e389c0724350f6b5757ca713e57012 +size 131164 diff --git a/datasets/搭电设备/val/images/订单1807020_54_7111744.jpg b/datasets/搭电设备/val/images/订单1807020_54_7111744.jpg new file mode 100644 index 0000000..ef8aea8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807020_54_7111744.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30fa78bd106d96edf6d750bf36512a93acb9ac7d6e8c541a2591bf2cf8e78f7 +size 152700 diff --git a/datasets/搭电设备/val/images/订单1807021_54_7111756.jpg b/datasets/搭电设备/val/images/订单1807021_54_7111756.jpg new file mode 100644 index 0000000..9409796 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807021_54_7111756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f80c0d9c7e99780f175449576745fa4c74f163fdede8daa37add2ff80f3e8b +size 70266 diff --git a/datasets/搭电设备/val/images/订单1807023_54_7111790.jpg b/datasets/搭电设备/val/images/订单1807023_54_7111790.jpg new file mode 100644 index 0000000..93be86b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807023_54_7111790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b78499a4d9696bdc4f3e55908880cffc4b71c15a84a937a76ee1f03796d237 +size 110897 diff --git a/datasets/搭电设备/val/images/订单1807024_54_7111801.jpg b/datasets/搭电设备/val/images/订单1807024_54_7111801.jpg new file mode 100644 index 0000000..f571a7d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807024_54_7111801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881e3f0c3dc832fdc50ba03874fbd3c727f4639eb8b4bcd2499c22dc3c956b96 +size 110839 diff --git a/datasets/搭电设备/val/images/订单1807025_54_7111817.jpg b/datasets/搭电设备/val/images/订单1807025_54_7111817.jpg new file mode 100644 index 0000000..5779d9d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807025_54_7111817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb7ad847ddf2a812b2fa799b6ef76a5c4be3df3aa489af5bcf69ebdfafd2422 +size 419071 diff --git a/datasets/搭电设备/val/images/订单1807028_54_7111858.jpg b/datasets/搭电设备/val/images/订单1807028_54_7111858.jpg new file mode 100644 index 0000000..10572b6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807028_54_7111858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac39e1ff0072e9bd39f194411283a1a7903d38e01b32849f0ba318b81d2dac7c +size 146543 diff --git a/datasets/搭电设备/val/images/订单1807031_54_7111908.jpg b/datasets/搭电设备/val/images/订单1807031_54_7111908.jpg new file mode 100644 index 0000000..6fb8b68 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807031_54_7111908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b5fb977129676b6f7d2bb1888cb9d09166545d8276f95c096dcfa1e749ee1a +size 826635 diff --git a/datasets/搭电设备/val/images/订单1807033_54_7111854.jpg b/datasets/搭电设备/val/images/订单1807033_54_7111854.jpg new file mode 100644 index 0000000..dead062 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807033_54_7111854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abdd03a68d77cb03a3d6bbaddb471079aa837a313f85ada271ce1622c4406e9 +size 640321 diff --git a/datasets/搭电设备/val/images/订单1807034_54_7111857.jpg b/datasets/搭电设备/val/images/订单1807034_54_7111857.jpg new file mode 100644 index 0000000..2ece0fd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807034_54_7111857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b89b6c350c732840d76832a630dfe2193b5bc7cd3d0ea34de72c83e02d4095d +size 356709 diff --git a/datasets/搭电设备/val/images/订单1807036_54_7111867.jpg b/datasets/搭电设备/val/images/订单1807036_54_7111867.jpg new file mode 100644 index 0000000..0af0798 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807036_54_7111867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee74518a4a9aa6a0953296a284139df3cdb4b018bd86fc91b00c3f2fcfe7d50c +size 164283 diff --git a/datasets/搭电设备/val/images/订单1807039_54_7111878.jpg b/datasets/搭电设备/val/images/订单1807039_54_7111878.jpg new file mode 100644 index 0000000..5beae22 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807039_54_7111878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8169276e23910ed56da288b585277f4f1d1be8eea8e22570c57e4c0c20854d77 +size 123527 diff --git a/datasets/搭电设备/val/images/订单1807040_54_7111942.jpg b/datasets/搭电设备/val/images/订单1807040_54_7111942.jpg new file mode 100644 index 0000000..84250c6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807040_54_7111942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8463eb6256fa02447d20e420d981cc6d8c607044949dd38190ad89405d9878dc +size 140246 diff --git a/datasets/搭电设备/val/images/订单1807041_54_7111985.jpg b/datasets/搭电设备/val/images/订单1807041_54_7111985.jpg new file mode 100644 index 0000000..e8e9870 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807041_54_7111985.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ecdbbedf377902a6c8cf3bfcdbd8ad9fb4b21699f5aa6935f38532e46f4e6d6 +size 136029 diff --git a/datasets/搭电设备/val/images/订单1807042_54_7111968.jpg b/datasets/搭电设备/val/images/订单1807042_54_7111968.jpg new file mode 100644 index 0000000..784af36 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807042_54_7111968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968fc5f0d44c2b818be5619b79f64db81b93c4a9c6671486edaa46dc6456e5a6 +size 149664 diff --git a/datasets/搭电设备/val/images/订单1807043_54_7111900.jpg b/datasets/搭电设备/val/images/订单1807043_54_7111900.jpg new file mode 100644 index 0000000..f51d570 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807043_54_7111900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c1b6dd27e1580e7df661b40fab2590bc4ffd69da88fda1c91c70f86eaab73b +size 206717 diff --git a/datasets/搭电设备/val/images/订单1807044_54_7112066.jpg b/datasets/搭电设备/val/images/订单1807044_54_7112066.jpg new file mode 100644 index 0000000..e1d1b16 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807044_54_7112066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8115cfc47fbaf4b1c2a67e96bb70dd7d0b4ef273a98722f14d46883a61b95178 +size 414905 diff --git a/datasets/搭电设备/val/images/订单1807045_54_7111945.jpg b/datasets/搭电设备/val/images/订单1807045_54_7111945.jpg new file mode 100644 index 0000000..dedb680 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807045_54_7111945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac72cf536ce4f8c9b87534814193cebc6a3b5909bd02f154808f2a485d53fd27 +size 92297 diff --git a/datasets/搭电设备/val/images/订单1807047_54_7112009.jpg b/datasets/搭电设备/val/images/订单1807047_54_7112009.jpg new file mode 100644 index 0000000..b2f07a9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807047_54_7112009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dbb5c6ee5686a7c58993f907bf17e7138f17d408a1c31c17aa21b5ff693d199 +size 387023 diff --git a/datasets/搭电设备/val/images/订单1807049_54_7111983.jpg b/datasets/搭电设备/val/images/订单1807049_54_7111983.jpg new file mode 100644 index 0000000..041aa08 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807049_54_7111983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed3a759bd030740ad9aa74242bdc06377e0e9bccea8aadbb2060b253be6a8ad +size 142327 diff --git a/datasets/搭电设备/val/images/订单1807051_54_7111959.jpg b/datasets/搭电设备/val/images/订单1807051_54_7111959.jpg new file mode 100644 index 0000000..94e3178 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807051_54_7111959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f361a0059c25a1ddb062912a09fecbeaef4b7b6e256417600e6b105d91d5007 +size 91644 diff --git a/datasets/搭电设备/val/images/订单1807053_54_7112030.jpg b/datasets/搭电设备/val/images/订单1807053_54_7112030.jpg new file mode 100644 index 0000000..0123950 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807053_54_7112030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cb8b3661d4ee449b93b7e6634b3f4cd752c72558205e25685fe39e2c96751d +size 160307 diff --git a/datasets/搭电设备/val/images/订单1807054_54_7112076.jpg b/datasets/搭电设备/val/images/订单1807054_54_7112076.jpg new file mode 100644 index 0000000..9541f53 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807054_54_7112076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e53afdbf173113fd38a1921095eaf7465a72d41790e59159557737fa8a53a3 +size 577206 diff --git a/datasets/搭电设备/val/images/订单1807056_54_7112033.jpg b/datasets/搭电设备/val/images/订单1807056_54_7112033.jpg new file mode 100644 index 0000000..556a51a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807056_54_7112033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad676c025593c741c70675bd20fb9c9ca9f4ad7178810d24326c59946bbcbc17 +size 133010 diff --git a/datasets/搭电设备/val/images/订单1807060_54_7112106.jpg b/datasets/搭电设备/val/images/订单1807060_54_7112106.jpg new file mode 100644 index 0000000..0698458 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807060_54_7112106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c4a347af428487728950c9e8f8fb04f103d5f2336194ceb82317bd65a0f9a4d +size 149159 diff --git a/datasets/搭电设备/val/images/订单1807061_54_7112119.jpg b/datasets/搭电设备/val/images/订单1807061_54_7112119.jpg new file mode 100644 index 0000000..6c70bb4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807061_54_7112119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7b60afe175439d9a65f15b02ee9ca323acb85f99c94a218c98a3cd7cf06a7c +size 563152 diff --git a/datasets/搭电设备/val/images/订单1807065_54_7112144.jpg b/datasets/搭电设备/val/images/订单1807065_54_7112144.jpg new file mode 100644 index 0000000..cebe6fe --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807065_54_7112144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5000fe55e4d3ccca00413fbda904701f453919baa18035ce1138a369bf97ea20 +size 156357 diff --git a/datasets/搭电设备/val/images/订单1807066_54_7112152.jpg b/datasets/搭电设备/val/images/订单1807066_54_7112152.jpg new file mode 100644 index 0000000..9e8f530 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807066_54_7112152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c9c3922153e5a7f9690b1a0e6734e6a17c93c0f14c423ba3349d71675e6c98 +size 110678 diff --git a/datasets/搭电设备/val/images/订单1807069_54_7112252.jpg b/datasets/搭电设备/val/images/订单1807069_54_7112252.jpg new file mode 100644 index 0000000..f5e8820 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807069_54_7112252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a47d82b45ff0d1f2c24236b2b7e365dcc1814035b8c81f4be13a11bfdb516b +size 494295 diff --git a/datasets/搭电设备/val/images/订单1807070_54_7112199.jpg b/datasets/搭电设备/val/images/订单1807070_54_7112199.jpg new file mode 100644 index 0000000..2a10b5c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807070_54_7112199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad63d73553396eb3f1113c90cd6c3a7977b8d0640b93167a783fe09556f308e8 +size 131174 diff --git a/datasets/搭电设备/val/images/订单1807073_54_7112184.jpg b/datasets/搭电设备/val/images/订单1807073_54_7112184.jpg new file mode 100644 index 0000000..f37cd5e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807073_54_7112184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f3049357ed66a9beac24ab6d3a116824b3fc71aadb8956adeaaf7084d4ae50 +size 116225 diff --git a/datasets/搭电设备/val/images/订单1807074_54_7113129.jpg b/datasets/搭电设备/val/images/订单1807074_54_7113129.jpg new file mode 100644 index 0000000..ce0fe55 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807074_54_7113129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba6f1aff56cbd52096d750ece1cdddc1ff42c46932daa588e22291cdba4f782 +size 161870 diff --git a/datasets/搭电设备/val/images/订单1807076_54_7112167.jpg b/datasets/搭电设备/val/images/订单1807076_54_7112167.jpg new file mode 100644 index 0000000..020f111 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807076_54_7112167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53db2660ba425c68cd7719658399568ca01feaa7cfb5e2b370dcfb601f28a17 +size 726033 diff --git a/datasets/搭电设备/val/images/订单1807077_54_7112283.jpg b/datasets/搭电设备/val/images/订单1807077_54_7112283.jpg new file mode 100644 index 0000000..e6e4bc3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807077_54_7112283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fdcc1fb6a6077c1f0979fbb5a2e049fa511d6f32a5c44f72ec9cd7b916d91a +size 411480 diff --git a/datasets/搭电设备/val/images/订单1807079_54_7112338.jpg b/datasets/搭电设备/val/images/订单1807079_54_7112338.jpg new file mode 100644 index 0000000..83f08ab --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807079_54_7112338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64271cd87ea3dec0e66889eb90aa35fbdf5c5245ca75f530c3730f1c3568b11a +size 212723 diff --git a/datasets/搭电设备/val/images/订单1807081_54_7112221.jpg b/datasets/搭电设备/val/images/订单1807081_54_7112221.jpg new file mode 100644 index 0000000..345dc0a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807081_54_7112221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f3613f1370ea4093ca992a0fbeeb916fed8036e4f4b25a9b246ee240db1b89 +size 167444 diff --git a/datasets/搭电设备/val/images/订单1807082_54_7112236.jpg b/datasets/搭电设备/val/images/订单1807082_54_7112236.jpg new file mode 100644 index 0000000..c86693d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807082_54_7112236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c78188363da0ddf8dd7c10160ef86d3256451bd0d2441772efb5970967f409d +size 474731 diff --git a/datasets/搭电设备/val/images/订单1807084_54_7112294.jpg b/datasets/搭电设备/val/images/订单1807084_54_7112294.jpg new file mode 100644 index 0000000..bbcaa69 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807084_54_7112294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53baa778e53b8ed426bfcb8411ee3118e7bed9e82008fa8a913963974d01c47e +size 110234 diff --git a/datasets/搭电设备/val/images/订单1807088_54_7112350.jpg b/datasets/搭电设备/val/images/订单1807088_54_7112350.jpg new file mode 100644 index 0000000..580b698 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807088_54_7112350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65939764b31c6ba2663443212eab513a0e747329dc0f38d0871a50c7d151a318 +size 83265 diff --git a/datasets/搭电设备/val/images/订单1807091_54_7112378.jpg b/datasets/搭电设备/val/images/订单1807091_54_7112378.jpg new file mode 100644 index 0000000..413cebb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807091_54_7112378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73f6a1e5cd6b455d0c227145538b99dbe27a34cdb89388db6f798aa73a27f84 +size 304542 diff --git a/datasets/搭电设备/val/images/订单1807092_54_7112474.jpg b/datasets/搭电设备/val/images/订单1807092_54_7112474.jpg new file mode 100644 index 0000000..c8683a2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807092_54_7112474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee11c3051dda9674b4c72a13753c3e874d3cd7fe59fc8e6feb68e3c32dbfc938 +size 162908 diff --git a/datasets/搭电设备/val/images/订单1807094_54_7112422.jpg b/datasets/搭电设备/val/images/订单1807094_54_7112422.jpg new file mode 100644 index 0000000..2c7dfdd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807094_54_7112422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58debe6af4878e726080485b4af0d901f23e0beb54d12eb1bf85682959f2108 +size 131652 diff --git a/datasets/搭电设备/val/images/订单1807095_54_7112505.jpg b/datasets/搭电设备/val/images/订单1807095_54_7112505.jpg new file mode 100644 index 0000000..3613c80 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807095_54_7112505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081974800c4009ce832592afc9f8587be786b64a347f8da9b9191c884043fe6c +size 97476 diff --git a/datasets/搭电设备/val/images/订单1807097_54_7112455.jpg b/datasets/搭电设备/val/images/订单1807097_54_7112455.jpg new file mode 100644 index 0000000..20fa821 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807097_54_7112455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15b3ffbf649c36f5205b4eb5b3d5a2777a1610452779b2f63a136a8d4bdec0c +size 646987 diff --git a/datasets/搭电设备/val/images/订单1807098_54_7112459.jpg b/datasets/搭电设备/val/images/订单1807098_54_7112459.jpg new file mode 100644 index 0000000..50dccb7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807098_54_7112459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375a8528188d85e5bb2b2470980362f0b281d4c442f537468b6c6948828aac7c +size 151358 diff --git a/datasets/搭电设备/val/images/订单1807107_54_7112616.jpg b/datasets/搭电设备/val/images/订单1807107_54_7112616.jpg new file mode 100644 index 0000000..55dff2e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807107_54_7112616.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8bee446b15a6d183a2b03661100722d23f29a13408d364117afebbd3da417c +size 115398 diff --git a/datasets/搭电设备/val/images/订单1807111_54_7112563.jpg b/datasets/搭电设备/val/images/订单1807111_54_7112563.jpg new file mode 100644 index 0000000..8028753 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807111_54_7112563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9134d80f652f24ab8f816a74c05d505c2d1825f206c76e81f6acab8ccc28a038 +size 371605 diff --git a/datasets/搭电设备/val/images/订单1807117_54_7112533.jpg b/datasets/搭电设备/val/images/订单1807117_54_7112533.jpg new file mode 100644 index 0000000..57d698a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807117_54_7112533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3574f8523e45839941d7277f792152615d63a6076e27eee99da0738cd83f526 +size 153943 diff --git a/datasets/搭电设备/val/images/订单1807118_54_7112537.jpg b/datasets/搭电设备/val/images/订单1807118_54_7112537.jpg new file mode 100644 index 0000000..b69dce5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807118_54_7112537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ecb98eae9456a2cb0a06ff4bcd2d757825514e0e8025e917b1226d74178acb +size 585778 diff --git a/datasets/搭电设备/val/images/订单1807121_54_7112656.jpg b/datasets/搭电设备/val/images/订单1807121_54_7112656.jpg new file mode 100644 index 0000000..1645697 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807121_54_7112656.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231570a6cf519ea30b630889c4a79a2923f85308d157388e72aa97b158cbbc51 +size 154605 diff --git a/datasets/搭电设备/val/images/订单1807123_54_7112608.jpg b/datasets/搭电设备/val/images/订单1807123_54_7112608.jpg new file mode 100644 index 0000000..2c8297b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807123_54_7112608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e9ac0cfd17f2fddff27a568747015928fd7141d11c7a253c74087196504bf7 +size 94880 diff --git a/datasets/搭电设备/val/images/订单1807124_54_7112646.jpg b/datasets/搭电设备/val/images/订单1807124_54_7112646.jpg new file mode 100644 index 0000000..336cafd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807124_54_7112646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41b3df31dacf17b0c4db2e2cd3f7ccc2dc1182b6d27235d7e9f1cc7b7bd2158 +size 179771 diff --git a/datasets/搭电设备/val/images/订单1807126_54_7112789.jpg b/datasets/搭电设备/val/images/订单1807126_54_7112789.jpg new file mode 100644 index 0000000..9d6990c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807126_54_7112789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212b96d2628f2b24c15acc1c5f8e1e4929782d53c600798468b435e9a79be6f1 +size 279335 diff --git a/datasets/搭电设备/val/images/订单1807127_54_7112697.jpg b/datasets/搭电设备/val/images/订单1807127_54_7112697.jpg new file mode 100644 index 0000000..2a3cd58 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807127_54_7112697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f449924791ea71d84375619980c3bd424b1f329d288aeb7c94e6cf5d234b224a +size 132771 diff --git a/datasets/搭电设备/val/images/订单1807129_54_7112731.jpg b/datasets/搭电设备/val/images/订单1807129_54_7112731.jpg new file mode 100644 index 0000000..81bdbe9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807129_54_7112731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4d8c68199a14da79cdb4842f1a229301451d4b3f7d8c9875878388c529a531 +size 411506 diff --git a/datasets/搭电设备/val/images/订单1807130_54_7112698.jpg b/datasets/搭电设备/val/images/订单1807130_54_7112698.jpg new file mode 100644 index 0000000..005f7e7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807130_54_7112698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f32d185b3571fa2fd3d7872896e3bad8f788c127e43dc8831aa1a9fc92fd485e +size 99730 diff --git a/datasets/搭电设备/val/images/订单1807131_54_7112687.jpg b/datasets/搭电设备/val/images/订单1807131_54_7112687.jpg new file mode 100644 index 0000000..a3e904a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807131_54_7112687.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f6e5274bc6cf127579a35308c304898c9d9e887ccd0412ef1e67e2d8649d22 +size 713581 diff --git a/datasets/搭电设备/val/images/订单1807134_54_7112720.jpg b/datasets/搭电设备/val/images/订单1807134_54_7112720.jpg new file mode 100644 index 0000000..6ece284 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807134_54_7112720.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95331849d2def84bb67328143a0a563d4fc113f701a715b55dbe8c630b7e33e +size 143147 diff --git a/datasets/搭电设备/val/images/订单1807139_54_7112756.jpg b/datasets/搭电设备/val/images/订单1807139_54_7112756.jpg new file mode 100644 index 0000000..4299d8d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807139_54_7112756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef46ebf7a1c82cb785986df00af2f90953058a48b8b9b60eb57ccc8e8e64adb1 +size 161505 diff --git a/datasets/搭电设备/val/images/订单1807140_54_7112760.jpg b/datasets/搭电设备/val/images/订单1807140_54_7112760.jpg new file mode 100644 index 0000000..69cfd4d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807140_54_7112760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ae64c909d87859f41af18842c75c8f58514c96f9d2098922c0149af5f72a8e +size 165057 diff --git a/datasets/搭电设备/val/images/订单1807141_54_7112785.jpg b/datasets/搭电设备/val/images/订单1807141_54_7112785.jpg new file mode 100644 index 0000000..ae9f2b0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807141_54_7112785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac5c7d193f86c3805e57952839f1307f8f8d2b56e8139401c18f5deb273cb5e +size 164936 diff --git a/datasets/搭电设备/val/images/订单1807142_54_7112830.jpg b/datasets/搭电设备/val/images/订单1807142_54_7112830.jpg new file mode 100644 index 0000000..7eeb5cc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807142_54_7112830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112928a6e7bbea3da7821bc605bc4aa2541307eb5d1a4eba8d5d1fec2077e7ee +size 347805 diff --git a/datasets/搭电设备/val/images/订单1807144_54_7112992.jpg b/datasets/搭电设备/val/images/订单1807144_54_7112992.jpg new file mode 100644 index 0000000..dc8ac0f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807144_54_7112992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70431c4e0133e4c956388c62c488d5b67e91d0a4ee37974b3454b70aaf339b4 +size 570072 diff --git a/datasets/搭电设备/val/images/订单1807145_54_7112871.jpg b/datasets/搭电设备/val/images/订单1807145_54_7112871.jpg new file mode 100644 index 0000000..22a6662 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807145_54_7112871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70cadbb9c9f29277eb3d64058544726156292bc0363a9f1ef71a226879a2fc15 +size 716984 diff --git a/datasets/搭电设备/val/images/订单1807147_54_7112901.jpg b/datasets/搭电设备/val/images/订单1807147_54_7112901.jpg new file mode 100644 index 0000000..15aa3d5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807147_54_7112901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c19b25938cc1c8677de421e147c6cf34be90d0ff6a0f43cf804e5ff978c22c +size 133745 diff --git a/datasets/搭电设备/val/images/订单1807149_54_7113008.jpg b/datasets/搭电设备/val/images/订单1807149_54_7113008.jpg new file mode 100644 index 0000000..f95248e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807149_54_7113008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4842ef64241a2e8647518af6f5860aafad7753cd3ebcad32642d8a9edfbf648 +size 126640 diff --git a/datasets/搭电设备/val/images/订单1807152_54_7112842.jpg b/datasets/搭电设备/val/images/订单1807152_54_7112842.jpg new file mode 100644 index 0000000..93a86a3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807152_54_7112842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d610d9f5f526aee0a5ec828d99a9150e8abe0794cef6eac2dbd6536679efc5bd +size 151106 diff --git a/datasets/搭电设备/val/images/订单1807154_54_7112862.jpg b/datasets/搭电设备/val/images/订单1807154_54_7112862.jpg new file mode 100644 index 0000000..e1f7c1b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807154_54_7112862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71c87ff84b5c6d3f77216f48da0b8834de987f5f509fdf2c14349e65f7c3798 +size 145507 diff --git a/datasets/搭电设备/val/images/订单1807155_54_7112976.jpg b/datasets/搭电设备/val/images/订单1807155_54_7112976.jpg new file mode 100644 index 0000000..09d7794 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807155_54_7112976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33af05ef49bd6d181b02fe5a1ec494bd8543bbf27126e1270890b0697826ac2d +size 169511 diff --git a/datasets/搭电设备/val/images/订单1807156_54_7112934.jpg b/datasets/搭电设备/val/images/订单1807156_54_7112934.jpg new file mode 100644 index 0000000..a8dfd60 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807156_54_7112934.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8cbfd6911a6a1fe1d9c1925199b0dc43d16f5ddea65d9c6430979dc43f7939 +size 111581 diff --git a/datasets/搭电设备/val/images/订单1807157_54_7112897.jpg b/datasets/搭电设备/val/images/订单1807157_54_7112897.jpg new file mode 100644 index 0000000..dc9ea8f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807157_54_7112897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b8ef1a3c80b8744ff6b4dbf7d1a1cdd3a43d0c202c688630b2763db91a5d66 +size 577595 diff --git a/datasets/搭电设备/val/images/订单1807159_54_7113027.jpg b/datasets/搭电设备/val/images/订单1807159_54_7113027.jpg new file mode 100644 index 0000000..29c7add --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807159_54_7113027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25627458dc1d9035f1af0490d3d15633d6ba10bbceaee30586fd8f17ac7cda7c +size 119418 diff --git a/datasets/搭电设备/val/images/订单1807161_54_7113058.jpg b/datasets/搭电设备/val/images/订单1807161_54_7113058.jpg new file mode 100644 index 0000000..11e9ab4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807161_54_7113058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a469b60b24093d271bf7e9a7fe2507f6a21f3c6fd7d76614f4b28327ff52e8e +size 460992 diff --git a/datasets/搭电设备/val/images/订单1807164_54_7113137.jpg b/datasets/搭电设备/val/images/订单1807164_54_7113137.jpg new file mode 100644 index 0000000..15a4e87 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807164_54_7113137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3610e40db18e5b46a4c319db4393a0af4c563ffdbc8cd07f3154b45ca26763ab +size 77313 diff --git a/datasets/搭电设备/val/images/订单1807165_54_7113014.jpg b/datasets/搭电设备/val/images/订单1807165_54_7113014.jpg new file mode 100644 index 0000000..1c47889 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807165_54_7113014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af71a9a00f2e2bb5040c08dec1f75ef0d013a743e5720e6ab51973b0e32de1c +size 128498 diff --git a/datasets/搭电设备/val/images/订单1807166_54_7112984.jpg b/datasets/搭电设备/val/images/订单1807166_54_7112984.jpg new file mode 100644 index 0000000..17e1b87 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807166_54_7112984.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa27851f395e00804416d4456ccbc2230c429134da4f7428d3295b3a3cb8950 +size 140271 diff --git a/datasets/搭电设备/val/images/订单1807169_54_7113052.jpg b/datasets/搭电设备/val/images/订单1807169_54_7113052.jpg new file mode 100644 index 0000000..8366820 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807169_54_7113052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e40eb1f3ba5b7afb181138f18c979c90e2e3d524eed03fe53b3ad32a30060c8 +size 128079 diff --git a/datasets/搭电设备/val/images/订单1807174_54_7113165.jpg b/datasets/搭电设备/val/images/订单1807174_54_7113165.jpg new file mode 100644 index 0000000..980ec0b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807174_54_7113165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f5b764b26f8a87caa4dbc7457aed6d9e0b50de016596fb7b31eb035bd00afd +size 152950 diff --git a/datasets/搭电设备/val/images/订单1807177_54_7113245.jpg b/datasets/搭电设备/val/images/订单1807177_54_7113245.jpg new file mode 100644 index 0000000..714c3c3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807177_54_7113245.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5e470d8330b9cdd3141b71ce08b94cf2fc8f8ec2449a945615e7cb18de083a +size 157164 diff --git a/datasets/搭电设备/val/images/订单1807181_54_7113200.jpg b/datasets/搭电设备/val/images/订单1807181_54_7113200.jpg new file mode 100644 index 0000000..cc2323f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807181_54_7113200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91886cf4bc840b9c39c5adde134634894c0e4beffec0e85a09bee21689db95e2 +size 572335 diff --git a/datasets/搭电设备/val/images/订单1807182_54_7113196.jpg b/datasets/搭电设备/val/images/订单1807182_54_7113196.jpg new file mode 100644 index 0000000..2764090 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807182_54_7113196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292319cad9cdd9d95fe2f1342be69780fb8f4bb041469f12c810087591bc9282 +size 315112 diff --git a/datasets/搭电设备/val/images/订单1807183_54_7113150.jpg b/datasets/搭电设备/val/images/订单1807183_54_7113150.jpg new file mode 100644 index 0000000..59f1931 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807183_54_7113150.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba217c4d405c12888b1a22b61ed45e75a6e6626f131f0d0e6dbb01323543081 +size 90890 diff --git a/datasets/搭电设备/val/images/订单1807184_54_7113202.jpg b/datasets/搭电设备/val/images/订单1807184_54_7113202.jpg new file mode 100644 index 0000000..ee3cce7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807184_54_7113202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd944b7bcdd17012d24a184bc5bb521f9fb1eadf953ff584b87c2d6590438004 +size 646946 diff --git a/datasets/搭电设备/val/images/订单1807185_54_7113223.jpg b/datasets/搭电设备/val/images/订单1807185_54_7113223.jpg new file mode 100644 index 0000000..90916d7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807185_54_7113223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da29783766e82ec01207a054c0bcb60ae414d6f0105dd8cdbb53a951cf09c2d +size 114124 diff --git a/datasets/搭电设备/val/images/订单1807186_54_7113268.jpg b/datasets/搭电设备/val/images/订单1807186_54_7113268.jpg new file mode 100644 index 0000000..ff86833 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807186_54_7113268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5c2c740026b4663b73fb3526fe6b71e36583c79cc2deb22976c945a38fe97b +size 666828 diff --git a/datasets/搭电设备/val/images/订单1807189_54_7113411.jpg b/datasets/搭电设备/val/images/订单1807189_54_7113411.jpg new file mode 100644 index 0000000..e5e9706 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807189_54_7113411.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67a20bef7a5e0fb6157b5baa9850bf789902289ca07fa780521351ce2c801eb +size 138197 diff --git a/datasets/搭电设备/val/images/订单1807191_54_7113335.jpg b/datasets/搭电设备/val/images/订单1807191_54_7113335.jpg new file mode 100644 index 0000000..8b94d57 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807191_54_7113335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e7c856dd0a2eb65fcced1b21b3822af2829df4fc2c2b07f6f54385e7af6a2a +size 324159 diff --git a/datasets/搭电设备/val/images/订单1807192_54_7113459.jpg b/datasets/搭电设备/val/images/订单1807192_54_7113459.jpg new file mode 100644 index 0000000..aa80398 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807192_54_7113459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42c980719a9d3905b2018c3a2a9ab7295f4ceffc2ddf23a9751a40f8cdd6d36 +size 148424 diff --git a/datasets/搭电设备/val/images/订单1807195_54_7113366.jpg b/datasets/搭电设备/val/images/订单1807195_54_7113366.jpg new file mode 100644 index 0000000..2e0aa88 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807195_54_7113366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9824b4a02c875e2c6c70aef70697a5712abf240695e8fe1dc26027bbc695f106 +size 120167 diff --git a/datasets/搭电设备/val/images/订单1807197_54_7113348.jpg b/datasets/搭电设备/val/images/订单1807197_54_7113348.jpg new file mode 100644 index 0000000..66cfcc2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807197_54_7113348.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1d052868a729a1d3a2c6cb9aa200d9ae43aeeaf2c9c2f0306c51159b508675 +size 460463 diff --git a/datasets/搭电设备/val/images/订单1807201_54_7113461.jpg b/datasets/搭电设备/val/images/订单1807201_54_7113461.jpg new file mode 100644 index 0000000..e0b0950 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807201_54_7113461.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4f0205926473c26fdd00c69205292480183f3c3429ef6037d1f543a52bb1fd +size 120912 diff --git a/datasets/搭电设备/val/images/订单1807202_54_7113455.jpg b/datasets/搭电设备/val/images/订单1807202_54_7113455.jpg new file mode 100644 index 0000000..92fecee --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807202_54_7113455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d751de128d11be3d468478eade4b97786945ec493331c3fd306a39af20f40656 +size 647762 diff --git a/datasets/搭电设备/val/images/订单1807203_54_7113410.jpg b/datasets/搭电设备/val/images/订单1807203_54_7113410.jpg new file mode 100644 index 0000000..5904aa0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807203_54_7113410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9d0223f90e94e86ab13b03cc01a7d2d70c1e5d134ae54110b06aacc9bc0989 +size 143471 diff --git a/datasets/搭电设备/val/images/订单1807204_54_7113417.jpg b/datasets/搭电设备/val/images/订单1807204_54_7113417.jpg new file mode 100644 index 0000000..664bd10 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807204_54_7113417.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b4e92451f1fb09869cd8eafce6c388314bd84f7c15459582f31a0ffd018d98 +size 155281 diff --git a/datasets/搭电设备/val/images/订单1807205_54_7113905.jpg b/datasets/搭电设备/val/images/订单1807205_54_7113905.jpg new file mode 100644 index 0000000..2d3ca4d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807205_54_7113905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062b59fb829f1ffda6e4a0ec6db37ae37f658e3e7856a632762ffec13b85d62c +size 1207940 diff --git a/datasets/搭电设备/val/images/订单1807206_54_7113436.jpg b/datasets/搭电设备/val/images/订单1807206_54_7113436.jpg new file mode 100644 index 0000000..2bed04c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807206_54_7113436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b39ebe021ff79398a18e34c26b5abf6ef17b218f5a328471590cd95d3223a70 +size 125276 diff --git a/datasets/搭电设备/val/images/订单1807208_54_7113563.jpg b/datasets/搭电设备/val/images/订单1807208_54_7113563.jpg new file mode 100644 index 0000000..5fb11e8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807208_54_7113563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510be9c9e7ec3878d23a6d3c5010f90f26b779ff9ba39024cee6abf98f6ecb22 +size 154664 diff --git a/datasets/搭电设备/val/images/订单1807211_54_7113523.jpg b/datasets/搭电设备/val/images/订单1807211_54_7113523.jpg new file mode 100644 index 0000000..1f7ada7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807211_54_7113523.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65a6291043020cb07319cc0388243187079fd713ee67ac612d5600fd1c2f13e +size 170229 diff --git a/datasets/搭电设备/val/images/订单1807212_54_7113633.jpg b/datasets/搭电设备/val/images/订单1807212_54_7113633.jpg new file mode 100644 index 0000000..61d6d26 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807212_54_7113633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ddbbfea337a7537ce54e5a3394014b4e21671d570d7c42f41333de6c56f66a +size 114943 diff --git a/datasets/搭电设备/val/images/订单1807214_54_7113488.jpg b/datasets/搭电设备/val/images/订单1807214_54_7113488.jpg new file mode 100644 index 0000000..a3f1136 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807214_54_7113488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735945cbd400d371d11867b269f461334682e4be3a186dc82d786875897b94d6 +size 376390 diff --git a/datasets/搭电设备/val/images/订单1807217_54_7113520.jpg b/datasets/搭电设备/val/images/订单1807217_54_7113520.jpg new file mode 100644 index 0000000..e1315fa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807217_54_7113520.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8088493ea24b5cb49dc74facff1e52c6e0668e4f20d133719633a700c13f3a2b +size 122135 diff --git a/datasets/搭电设备/val/images/订单1807219_54_7113580.jpg b/datasets/搭电设备/val/images/订单1807219_54_7113580.jpg new file mode 100644 index 0000000..c6f9923 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807219_54_7113580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9633a7becd28089cc18c2893bd30bcce30136b65b5fb9d954e976e253cc1c109 +size 606838 diff --git a/datasets/搭电设备/val/images/订单1807221_54_7113559.jpg b/datasets/搭电设备/val/images/订单1807221_54_7113559.jpg new file mode 100644 index 0000000..ea6b8cb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807221_54_7113559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778d321753085fc519f174a42eb3978a0766995dc580bafe806162d3a842c4ea +size 163871 diff --git a/datasets/搭电设备/val/images/订单1807224_54_7113588.jpg b/datasets/搭电设备/val/images/订单1807224_54_7113588.jpg new file mode 100644 index 0000000..75a674a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807224_54_7113588.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c3d515ff4930cc9e41e5879ffdfbf0d659b7b5bc2cc3176af91ebebd1cf79c +size 466787 diff --git a/datasets/搭电设备/val/images/订单1807226_54_7113758.jpg b/datasets/搭电设备/val/images/订单1807226_54_7113758.jpg new file mode 100644 index 0000000..30dee76 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807226_54_7113758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b108ee2b15fbc10bef4e69ca180731a685f662ddd5e918631e0e2b5ae40116 +size 144495 diff --git a/datasets/搭电设备/val/images/订单1807230_54_7113605.jpg b/datasets/搭电设备/val/images/订单1807230_54_7113605.jpg new file mode 100644 index 0000000..06faeba --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807230_54_7113605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef16968b6633ec99cf785be22b6a0bf53985cae0551920841884d0c44fe62b09 +size 780962 diff --git a/datasets/搭电设备/val/images/订单1807231_54_7113615.jpg b/datasets/搭电设备/val/images/订单1807231_54_7113615.jpg new file mode 100644 index 0000000..de6e6a1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807231_54_7113615.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4b9216e0d44b31eae8810d9e1175ad970f8c17efe240010eabf841289504bd +size 150087 diff --git a/datasets/搭电设备/val/images/订单1807232_54_7113684.jpg b/datasets/搭电设备/val/images/订单1807232_54_7113684.jpg new file mode 100644 index 0000000..e743c2d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807232_54_7113684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff6875602484a7b764878ef7f5b56ea5b1f1ae5f4e4a2bf905a1b7e2aa642ee +size 136417 diff --git a/datasets/搭电设备/val/images/订单1807233_54_7113724.jpg b/datasets/搭电设备/val/images/订单1807233_54_7113724.jpg new file mode 100644 index 0000000..a99c1b0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807233_54_7113724.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efdb14e46175d657f0ac458682799a2eea11d5ad72cdb6b728824194097eb657 +size 299385 diff --git a/datasets/搭电设备/val/images/订单1807236_54_7113786.jpg b/datasets/搭电设备/val/images/订单1807236_54_7113786.jpg new file mode 100644 index 0000000..d076e10 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807236_54_7113786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9dee3d7276497121fef1a798ecdf530a287670916c9ab7f5b5a943948d5aa8 +size 147877 diff --git a/datasets/搭电设备/val/images/订单1807237_54_7113676.jpg b/datasets/搭电设备/val/images/订单1807237_54_7113676.jpg new file mode 100644 index 0000000..d2b8549 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807237_54_7113676.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381beddf16df20a1d1b99c3927fd3f1afee5e180acfab1d3655de560e8a3ed4c +size 156103 diff --git a/datasets/搭电设备/val/images/订单1807238_54_7113659.jpg b/datasets/搭电设备/val/images/订单1807238_54_7113659.jpg new file mode 100644 index 0000000..456cad3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807238_54_7113659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ace782c2eb21fb0756417f640b10302a29e4fc353aeb5df49c70cf05ca241e +size 173712 diff --git a/datasets/搭电设备/val/images/订单1807240_54_7113726.jpg b/datasets/搭电设备/val/images/订单1807240_54_7113726.jpg new file mode 100644 index 0000000..9398097 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807240_54_7113726.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed40cffa2759710086e1e821c9a22368c73d49c5077fd2c588891a5d15196c +size 189030 diff --git a/datasets/搭电设备/val/images/订单1807242_54_7113763.jpg b/datasets/搭电设备/val/images/订单1807242_54_7113763.jpg new file mode 100644 index 0000000..cabab51 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807242_54_7113763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06cee5beac385f2974790494df91ca6e38389522dd6d31004ba5af603f1fc01 +size 266974 diff --git a/datasets/搭电设备/val/images/订单1807245_54_7113821.jpg b/datasets/搭电设备/val/images/订单1807245_54_7113821.jpg new file mode 100644 index 0000000..621c98b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807245_54_7113821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354ff7af26f59326a2e6b8202599fc0e18204b71a627f5f88af6ca0a3e3ac25e +size 88499 diff --git a/datasets/搭电设备/val/images/订单1807246_54_7113797.jpg b/datasets/搭电设备/val/images/订单1807246_54_7113797.jpg new file mode 100644 index 0000000..5972bdb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807246_54_7113797.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43b7488a1da98fd5a1c4dbe2a209eaaa982f06ca5f50888b6ffaf316b85ab007 +size 594404 diff --git a/datasets/搭电设备/val/images/订单1807248_54_7113946.jpg b/datasets/搭电设备/val/images/订单1807248_54_7113946.jpg new file mode 100644 index 0000000..705a051 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807248_54_7113946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b693cfa8585043902859e2dd79b93e85ce50d5ab9283c1d136e74921424b54aa +size 146174 diff --git a/datasets/搭电设备/val/images/订单1807251_54_7113932.jpg b/datasets/搭电设备/val/images/订单1807251_54_7113932.jpg new file mode 100644 index 0000000..7897a34 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807251_54_7113932.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106278f3aa1e88306857219ae198aa9b499860739ff556f4dd2eacfc74aeeb51 +size 145358 diff --git a/datasets/搭电设备/val/images/订单1807252_54_7113878.jpg b/datasets/搭电设备/val/images/订单1807252_54_7113878.jpg new file mode 100644 index 0000000..7b91fbc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807252_54_7113878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e4359f09f6eb502438081953cfd4e443f626497c74e9cdc592321ee7bf80e1 +size 134192 diff --git a/datasets/搭电设备/val/images/订单1807253_54_7113861.jpg b/datasets/搭电设备/val/images/订单1807253_54_7113861.jpg new file mode 100644 index 0000000..6a15d77 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807253_54_7113861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571c598299e10d272b8c567b84fa30ecf12d92f249667645e1b7ba11c2557873 +size 113111 diff --git a/datasets/搭电设备/val/images/订单1807255_54_7113894.jpg b/datasets/搭电设备/val/images/订单1807255_54_7113894.jpg new file mode 100644 index 0000000..e9ee3e8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807255_54_7113894.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2c1747ba3fe09de3e5a36621ad3abebf4503125aca1b6449eff1864e6b36db +size 133103 diff --git a/datasets/搭电设备/val/images/订单1807257_54_7113948.jpg b/datasets/搭电设备/val/images/订单1807257_54_7113948.jpg new file mode 100644 index 0000000..ba02524 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807257_54_7113948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad566a8da19323ae90a98819b75a187a87c281db238a5723d1df4bee661a7114 +size 412154 diff --git a/datasets/搭电设备/val/images/订单1807259_54_7113930.jpg b/datasets/搭电设备/val/images/订单1807259_54_7113930.jpg new file mode 100644 index 0000000..bbbc796 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807259_54_7113930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39545cf25abf4be2191acc7b9b8e93fff66be485158d0774fa1e9f75324ae129 +size 119657 diff --git a/datasets/搭电设备/val/images/订单1807260_54_7114026.jpg b/datasets/搭电设备/val/images/订单1807260_54_7114026.jpg new file mode 100644 index 0000000..34e1587 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807260_54_7114026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5d5053dc4d42528f2a01d8808efe69d93e592e51ac972e5ec3309bc8386120 +size 544430 diff --git a/datasets/搭电设备/val/images/订单1807262_54_7114005.jpg b/datasets/搭电设备/val/images/订单1807262_54_7114005.jpg new file mode 100644 index 0000000..dad18bd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807262_54_7114005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14e1021b4b5e4099d9f7a8cb474470ea3dd9244f9998ad745de07bbeff10f21 +size 125888 diff --git a/datasets/搭电设备/val/images/订单1807263_54_7114081.jpg b/datasets/搭电设备/val/images/订单1807263_54_7114081.jpg new file mode 100644 index 0000000..ab80057 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807263_54_7114081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e582bf12c6520ce3dadbf1269318c3d0f5286e806014041782391a16fefd3ad +size 148799 diff --git a/datasets/搭电设备/val/images/订单1807264_54_7114029.jpg b/datasets/搭电设备/val/images/订单1807264_54_7114029.jpg new file mode 100644 index 0000000..e9ff579 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807264_54_7114029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284151bd49e42744eb15675ae7a6ba599baba7daa6cddbdca09853e6de40ccc0 +size 200014 diff --git a/datasets/搭电设备/val/images/订单1807265_54_7114044.jpg b/datasets/搭电设备/val/images/订单1807265_54_7114044.jpg new file mode 100644 index 0000000..ccaa5fa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807265_54_7114044.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7932666a59c0107c2e6a389bbf1e0931e9533b7f3d5c6a60307148bf5d56b11 +size 310592 diff --git a/datasets/搭电设备/val/images/订单1807266_54_7115020.jpg b/datasets/搭电设备/val/images/订单1807266_54_7115020.jpg new file mode 100644 index 0000000..0cebfe2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807266_54_7115020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c327dba8d88ca7aeda84a6a11cfc69eeea1ff423fd8df7c5ef0c48129beac5f +size 144799 diff --git a/datasets/搭电设备/val/images/订单1807268_54_7114104.jpg b/datasets/搭电设备/val/images/订单1807268_54_7114104.jpg new file mode 100644 index 0000000..6c12e10 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807268_54_7114104.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbffab131f3f0949b9da1ee2dda92bed393b2bbef50e0aa7759abe8e794627a +size 112679 diff --git a/datasets/搭电设备/val/images/订单1807269_54_7114093.jpg b/datasets/搭电设备/val/images/订单1807269_54_7114093.jpg new file mode 100644 index 0000000..4d5f979 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807269_54_7114093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90a555c52a9ab1dc44c6496d69acddac31a1ac0b7db9143e3b902d638fe033b +size 327853 diff --git a/datasets/搭电设备/val/images/订单1807271_54_7114138.jpg b/datasets/搭电设备/val/images/订单1807271_54_7114138.jpg new file mode 100644 index 0000000..5c31115 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807271_54_7114138.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e965e5a001280faee23ed1312dbcfd80646dcd33c2f265135f837194d70324a +size 156974 diff --git a/datasets/搭电设备/val/images/订单1807281_54_7114157.jpg b/datasets/搭电设备/val/images/订单1807281_54_7114157.jpg new file mode 100644 index 0000000..a09a1d9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807281_54_7114157.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1094efee119a7b07ddbe92ba746f5fe66cbbddd87fc577f91010600630016630 +size 267799 diff --git a/datasets/搭电设备/val/images/订单1807284_54_7114325.jpg b/datasets/搭电设备/val/images/订单1807284_54_7114325.jpg new file mode 100644 index 0000000..190775b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807284_54_7114325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c189a05c96a80c40a8741d4660bc3195b2673e92594bc3b348a3b8913923a099 +size 198291 diff --git a/datasets/搭电设备/val/images/订单1807285_54_7114205.jpg b/datasets/搭电设备/val/images/订单1807285_54_7114205.jpg new file mode 100644 index 0000000..3626956 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807285_54_7114205.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f80a6008632704a0fc63d0f2aa2f50d195774d757786e7c3210322932d68b2 +size 139298 diff --git a/datasets/搭电设备/val/images/订单1807286_54_7114202.jpg b/datasets/搭电设备/val/images/订单1807286_54_7114202.jpg new file mode 100644 index 0000000..660a676 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807286_54_7114202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9771c07696dbbc119072c826f3bdee61da125005b9baf8e7b52359a049729ed +size 165730 diff --git a/datasets/搭电设备/val/images/订单1807288_54_7114668.jpg b/datasets/搭电设备/val/images/订单1807288_54_7114668.jpg new file mode 100644 index 0000000..e79aa48 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807288_54_7114668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9f4c67a690b6ecb7f78867dcf1f7add6bccecd8ffdbbc08e0e4090796cba55 +size 92625 diff --git a/datasets/搭电设备/val/images/订单1807292_54_7114233.jpg b/datasets/搭电设备/val/images/订单1807292_54_7114233.jpg new file mode 100644 index 0000000..24a670d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807292_54_7114233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9419deb1eb98f576d16a0428911bc2d0f23d8facc6056e8f0197f3b32a206570 +size 155194 diff --git a/datasets/搭电设备/val/images/订单1807295_54_7114330.jpg b/datasets/搭电设备/val/images/订单1807295_54_7114330.jpg new file mode 100644 index 0000000..3ea29b9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807295_54_7114330.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9599a83f3cd4f620a00bd84ffd8cb7c7281b0dc44173cae457164d6b6de423 +size 110075 diff --git a/datasets/搭电设备/val/images/订单1807296_54_7114324.jpg b/datasets/搭电设备/val/images/订单1807296_54_7114324.jpg new file mode 100644 index 0000000..83945ca --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807296_54_7114324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f63182579de9a60796e6245251dd7653635d4acad314a11772b1aa282f6db +size 84242 diff --git a/datasets/搭电设备/val/images/订单1807299_54_7114306.jpg b/datasets/搭电设备/val/images/订单1807299_54_7114306.jpg new file mode 100644 index 0000000..99da5f7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807299_54_7114306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71bea245f3bf845871e2943e4c903d9970c9eb45ab0dc9f166069fd204200e5 +size 127700 diff --git a/datasets/搭电设备/val/images/订单1807301_54_7114367.jpg b/datasets/搭电设备/val/images/订单1807301_54_7114367.jpg new file mode 100644 index 0000000..44f53bc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807301_54_7114367.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0428421398f8cae0577290fb6858cd52540ae9e2139d09fc7c376a3576b6a223 +size 196212 diff --git a/datasets/搭电设备/val/images/订单1807304_54_7114346.jpg b/datasets/搭电设备/val/images/订单1807304_54_7114346.jpg new file mode 100644 index 0000000..266dccc --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807304_54_7114346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d066d4ba22ae6ae365a21772fef9ec250d056b1fe8bafef999e8d906da5f5aca +size 117387 diff --git a/datasets/搭电设备/val/images/订单1807305_54_7114449.jpg b/datasets/搭电设备/val/images/订单1807305_54_7114449.jpg new file mode 100644 index 0000000..83536fa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807305_54_7114449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432647fba9ebb53dd8314b69ca57a04ad8c206d8fcbfbb26dacb37c79ac10fb0 +size 174969 diff --git a/datasets/搭电设备/val/images/订单1807307_54_7114371.jpg b/datasets/搭电设备/val/images/订单1807307_54_7114371.jpg new file mode 100644 index 0000000..723c29b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807307_54_7114371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8225bc3bbef11831b3cd6d3e99bccd658d2090c0f1a7520657bd8f8ce3741d4d +size 358278 diff --git a/datasets/搭电设备/val/images/订单1807309_54_7114554.jpg b/datasets/搭电设备/val/images/订单1807309_54_7114554.jpg new file mode 100644 index 0000000..0fafd6f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807309_54_7114554.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978b1ddb29234ed89990bb55817184a871e8606b76597c6651ed8c6648cd6e7e +size 113289 diff --git a/datasets/搭电设备/val/images/订单1807311_54_7114492.jpg b/datasets/搭电设备/val/images/订单1807311_54_7114492.jpg new file mode 100644 index 0000000..547eec6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807311_54_7114492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9932d29cccff43c75b7a324e41195bfc0c2066e4ef156fbb1478e578715ab8 +size 539241 diff --git a/datasets/搭电设备/val/images/订单1807312_54_7114465.jpg b/datasets/搭电设备/val/images/订单1807312_54_7114465.jpg new file mode 100644 index 0000000..e0859ec --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807312_54_7114465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87ec37ff7e70589f0133f844e7ff2d5fde67081d03d323777b06098d9c569e7 +size 146578 diff --git a/datasets/搭电设备/val/images/订单1807317_54_7114439.jpg b/datasets/搭电设备/val/images/订单1807317_54_7114439.jpg new file mode 100644 index 0000000..a9e0793 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807317_54_7114439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4c0610f413117a4a89d26250adacb4edb7c51f0bbc034c4915427f54c27bdb +size 131447 diff --git a/datasets/搭电设备/val/images/订单1807318_54_7114413.jpg b/datasets/搭电设备/val/images/订单1807318_54_7114413.jpg new file mode 100644 index 0000000..209fcef --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807318_54_7114413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810cc78d407a4366c525f80c71d0d23543414886a72687925b92b61e1eed7a68 +size 134179 diff --git a/datasets/搭电设备/val/images/订单1807319_54_7114510.jpg b/datasets/搭电设备/val/images/订单1807319_54_7114510.jpg new file mode 100644 index 0000000..158c39c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807319_54_7114510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cec43c1c444d949257ab187a502e291a1fca3dc01d727451a155af7a644167 +size 428042 diff --git a/datasets/搭电设备/val/images/订单1807320_54_7114497.jpg b/datasets/搭电设备/val/images/订单1807320_54_7114497.jpg new file mode 100644 index 0000000..55341bd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807320_54_7114497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fed22b4cbd8822a44a2f5c3e85d007fa04dd05e5b22aa83c4af81fda7555bd0 +size 285514 diff --git a/datasets/搭电设备/val/images/订单1807322_54_7114590.jpg b/datasets/搭电设备/val/images/订单1807322_54_7114590.jpg new file mode 100644 index 0000000..c6dac2c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807322_54_7114590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa84abeb748327f2fc9061a1fec042357dc2243b3113b7c87021f62eef4b796a +size 152932 diff --git a/datasets/搭电设备/val/images/订单1807323_54_7114575.jpg b/datasets/搭电设备/val/images/订单1807323_54_7114575.jpg new file mode 100644 index 0000000..1f8fbdb --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807323_54_7114575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b7a26d3411b36df94fb48298ef89002c4f4786532c97e98da753543198974c +size 62843 diff --git a/datasets/搭电设备/val/images/订单1807326_54_7114634.jpg b/datasets/搭电设备/val/images/订单1807326_54_7114634.jpg new file mode 100644 index 0000000..f3da703 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807326_54_7114634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2b9b257522704091054ed8c3bc20b39c8c32fe456472f302ec64acd3deca8c +size 125690 diff --git a/datasets/搭电设备/val/images/订单1807327_54_7114546.jpg b/datasets/搭电设备/val/images/订单1807327_54_7114546.jpg new file mode 100644 index 0000000..d29753b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807327_54_7114546.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce13654d06e90a76c42bfa9eb2b56ebd274a255bb3cfe1ae285989101df39a0 +size 148313 diff --git a/datasets/搭电设备/val/images/订单1807328_54_7114521.jpg b/datasets/搭电设备/val/images/订单1807328_54_7114521.jpg new file mode 100644 index 0000000..f921128 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807328_54_7114521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0879655b02bc2d2429c922e7e61f13280e74b65ca6033767eb142cf5a2c744 +size 104689 diff --git a/datasets/搭电设备/val/images/订单1807329_54_7114661.jpg b/datasets/搭电设备/val/images/订单1807329_54_7114661.jpg new file mode 100644 index 0000000..969526c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807329_54_7114661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df86ab57050166a763358854d96be34a47043cb78475e158ebe2cdaf732b7776 +size 134062 diff --git a/datasets/搭电设备/val/images/订单1807331_54_7114852.jpg b/datasets/搭电设备/val/images/订单1807331_54_7114852.jpg new file mode 100644 index 0000000..aa3a290 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807331_54_7114852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f37900e1470929f539417ceca308082b7aab8a2cc72f86e9533709be2874c204 +size 109511 diff --git a/datasets/搭电设备/val/images/订单1807334_54_7114623.jpg b/datasets/搭电设备/val/images/订单1807334_54_7114623.jpg new file mode 100644 index 0000000..85ce8e2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807334_54_7114623.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f89b9a2cbb6efd671efbbd750b0dab2d37fbb797c131971744c082649fa679c6 +size 137476 diff --git a/datasets/搭电设备/val/images/订单1807336_54_7114789.jpg b/datasets/搭电设备/val/images/订单1807336_54_7114789.jpg new file mode 100644 index 0000000..f42dd08 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807336_54_7114789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d5c5b22b4db1107106393eef182e2c93dba69a7a860a14ce83aa22c6b62ee3 +size 79133 diff --git a/datasets/搭电设备/val/images/订单1807337_54_7114885.jpg b/datasets/搭电设备/val/images/订单1807337_54_7114885.jpg new file mode 100644 index 0000000..0050de6 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807337_54_7114885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f1e0f5134035ec670457a7262e128e67d41e6e30677f9cf02845de7cbe8ff7 +size 119043 diff --git a/datasets/搭电设备/val/images/订单1807340_54_7114664.jpg b/datasets/搭电设备/val/images/订单1807340_54_7114664.jpg new file mode 100644 index 0000000..5ad61a9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807340_54_7114664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36eb4cb8a95cdae5debaf1fc31fee382d3dba539314c04735c9a1a6607aaebf2 +size 350017 diff --git a/datasets/搭电设备/val/images/订单1807341_54_7114719.jpg b/datasets/搭电设备/val/images/订单1807341_54_7114719.jpg new file mode 100644 index 0000000..d76d034 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807341_54_7114719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6589da5e73412765777b8937e0c5d384273908e183813d7703cf61b8b986ed +size 109471 diff --git a/datasets/搭电设备/val/images/订单1807342_54_7114757.jpg b/datasets/搭电设备/val/images/订单1807342_54_7114757.jpg new file mode 100644 index 0000000..03468e1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807342_54_7114757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a077bf3c3b8cea21ab4a5dd8d0d5f26fe515dcf8a44d52dc5445b83ae9a0c18 +size 106198 diff --git a/datasets/搭电设备/val/images/订单1807343_54_7114756.jpg b/datasets/搭电设备/val/images/订单1807343_54_7114756.jpg new file mode 100644 index 0000000..0fa9279 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807343_54_7114756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ec1c9c5248e8f6ae53ec028816cd4fe54eafa193495cae63aa1cca1966bb58 +size 91303 diff --git a/datasets/搭电设备/val/images/订单1807348_54_7114705.jpg b/datasets/搭电设备/val/images/订单1807348_54_7114705.jpg new file mode 100644 index 0000000..a8e98af --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807348_54_7114705.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbdc9d09514ef8dd5f5c58cbacd6d22bedc5b9e852745e0f1d11d21e14129e59 +size 353989 diff --git a/datasets/搭电设备/val/images/订单1807349_54_7114681.jpg b/datasets/搭电设备/val/images/订单1807349_54_7114681.jpg new file mode 100644 index 0000000..18c612e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807349_54_7114681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9dafd36f467e323cebb243d9d233b9ff0d5a3fde6bbd879fbfffc91efffe1e +size 169591 diff --git a/datasets/搭电设备/val/images/订单1807350_54_7114764.jpg b/datasets/搭电设备/val/images/订单1807350_54_7114764.jpg new file mode 100644 index 0000000..e032448 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807350_54_7114764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bdac3007521b1ce89fcbe81c4debc41298f1bb6187793b818f7776b73c5014 +size 101950 diff --git a/datasets/搭电设备/val/images/订单1807354_54_7114806.jpg b/datasets/搭电设备/val/images/订单1807354_54_7114806.jpg new file mode 100644 index 0000000..2b57ae9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807354_54_7114806.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ffd5d68696f8f3e80c2155028e30ea647b46fd51211d0077cb7c4b81268cbe +size 127106 diff --git a/datasets/搭电设备/val/images/订单1807355_54_7114834.jpg b/datasets/搭电设备/val/images/订单1807355_54_7114834.jpg new file mode 100644 index 0000000..31ec6fd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807355_54_7114834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde41c1d8a9d8cd27791f7523b837c4c71c4c8c785424637c49745876110acdd +size 141173 diff --git a/datasets/搭电设备/val/images/订单1807356_54_7114892.jpg b/datasets/搭电设备/val/images/订单1807356_54_7114892.jpg new file mode 100644 index 0000000..d003da4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807356_54_7114892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2167e7857978e9a84154b5bd54e0acdaefbb2c6b32e1e493402f706bcab2a7f5 +size 101611 diff --git a/datasets/搭电设备/val/images/订单1807358_54_7114918.jpg b/datasets/搭电设备/val/images/订单1807358_54_7114918.jpg new file mode 100644 index 0000000..bfc7b94 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807358_54_7114918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef618b1fd82c39c841cd55f97cf5cbfbe14767249abcdf5796505c1d61c6523 +size 136688 diff --git a/datasets/搭电设备/val/images/订单1807361_54_7114928.jpg b/datasets/搭电设备/val/images/订单1807361_54_7114928.jpg new file mode 100644 index 0000000..6f7fd03 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807361_54_7114928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e476b33d61d7c1d32a5d0d0e659a003f6a0f81ef5d2c257e2c71276e2ac6e6 +size 110439 diff --git a/datasets/搭电设备/val/images/订单1807362_54_7115038.jpg b/datasets/搭电设备/val/images/订单1807362_54_7115038.jpg new file mode 100644 index 0000000..2408e8f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807362_54_7115038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91d99d44883018dcb03de849167ce0753322b80f2d30149b19302efedae6e99 +size 386796 diff --git a/datasets/搭电设备/val/images/订单1807365_54_7114905.jpg b/datasets/搭电设备/val/images/订单1807365_54_7114905.jpg new file mode 100644 index 0000000..cf2eaee --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807365_54_7114905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d32ca9236a16f6250331868a383271c2f4ebe1ddb63b2c7e80a57ae0a5ea21 +size 106857 diff --git a/datasets/搭电设备/val/images/订单1807366_54_7114964.jpg b/datasets/搭电设备/val/images/订单1807366_54_7114964.jpg new file mode 100644 index 0000000..b4f370c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807366_54_7114964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80db0e94a0b5f8631dedc8af663a870379f109b0647ec70676b08343d5d5849 +size 82064 diff --git a/datasets/搭电设备/val/images/订单1807367_54_7114967.jpg b/datasets/搭电设备/val/images/订单1807367_54_7114967.jpg new file mode 100644 index 0000000..20e0024 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807367_54_7114967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e2ab644ae87c25c930d7fba6767da0d4e98a22be8018b815a0456d3d8f84d0 +size 218319 diff --git a/datasets/搭电设备/val/images/订单1807368_54_7115028.jpg b/datasets/搭电设备/val/images/订单1807368_54_7115028.jpg new file mode 100644 index 0000000..fd691b8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807368_54_7115028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b1fcf8d30b6712be761cac6e51198b3f7b5e9dc469a17b36cd37f61a7e75af +size 373114 diff --git a/datasets/搭电设备/val/images/订单1807369_54_7115017.jpg b/datasets/搭电设备/val/images/订单1807369_54_7115017.jpg new file mode 100644 index 0000000..cc86032 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807369_54_7115017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6421843d3ccc6f420bef7c3f303670a075e229953a8214ff894b58521e9fdfa +size 131504 diff --git a/datasets/搭电设备/val/images/订单1807371_54_7115059.jpg b/datasets/搭电设备/val/images/订单1807371_54_7115059.jpg new file mode 100644 index 0000000..afbdf4d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807371_54_7115059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ff43c16453ffd0385f65ab60dd5bdfc6d26f857ed8521f0d5d87caa4a7399f +size 140221 diff --git a/datasets/搭电设备/val/images/订单1807373_54_7115053.jpg b/datasets/搭电设备/val/images/订单1807373_54_7115053.jpg new file mode 100644 index 0000000..8f2e3f1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807373_54_7115053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95679995796da132bbb059faba4d611fa06a234ba13d06302f1a84759dbe18d +size 107589 diff --git a/datasets/搭电设备/val/images/订单1807374_54_7114942.jpg b/datasets/搭电设备/val/images/订单1807374_54_7114942.jpg new file mode 100644 index 0000000..10948d9 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807374_54_7114942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc21fb8b50bb75b10f578f634da023c0b73c3885b29555f8d313dbe7f7ffd6e +size 149821 diff --git a/datasets/搭电设备/val/images/订单1807375_54_7114997.jpg b/datasets/搭电设备/val/images/订单1807375_54_7114997.jpg new file mode 100644 index 0000000..6ef8938 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807375_54_7114997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0fdf2264a4d0beace5004f67ff2d2cb7f2c5beaea309cbad4bc335053f17fce +size 437906 diff --git a/datasets/搭电设备/val/images/订单1807377_54_7115070.jpg b/datasets/搭电设备/val/images/订单1807377_54_7115070.jpg new file mode 100644 index 0000000..2c4a984 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807377_54_7115070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2982b64abec9ca157c7cb72d5a48b845a140dffdf098db03d3e43f48eee4c6 +size 506753 diff --git a/datasets/搭电设备/val/images/订单1807378_54_7115180.jpg b/datasets/搭电设备/val/images/订单1807378_54_7115180.jpg new file mode 100644 index 0000000..779025a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807378_54_7115180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a244c2f7d53999f58c6a9c02b8d4ec4dd3687f6fed003609b1dc1208f82bece +size 118831 diff --git a/datasets/搭电设备/val/images/订单1807381_54_7115098.jpg b/datasets/搭电设备/val/images/订单1807381_54_7115098.jpg new file mode 100644 index 0000000..7fbac56 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807381_54_7115098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f969db11a7e1d77dddc4b3133f34ff89041aa91de19110c15f1b73f52ffafda +size 169565 diff --git a/datasets/搭电设备/val/images/订单1807385_54_7115110.jpg b/datasets/搭电设备/val/images/订单1807385_54_7115110.jpg new file mode 100644 index 0000000..d7b2f91 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807385_54_7115110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23192dff2e12e3235ec24bb5cfc249868e19b3b5b3a2279f203412034ce9ae60 +size 234190 diff --git a/datasets/搭电设备/val/images/订单1807386_54_7115175.jpg b/datasets/搭电设备/val/images/订单1807386_54_7115175.jpg new file mode 100644 index 0000000..d0eab0e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807386_54_7115175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5dcec3f09ed087137a750eebc228c19d0e89868b66f1d467e1df20596bd6d9 +size 109015 diff --git a/datasets/搭电设备/val/images/订单1807387_54_7115122.jpg b/datasets/搭电设备/val/images/订单1807387_54_7115122.jpg new file mode 100644 index 0000000..a857ecf --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807387_54_7115122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fad4790b5f1af56326bfdfd63233f0b42944eca6d4e53fd79726824a1c62718 +size 320094 diff --git a/datasets/搭电设备/val/images/订单1807388_54_7115160.jpg b/datasets/搭电设备/val/images/订单1807388_54_7115160.jpg new file mode 100644 index 0000000..5bfd98f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807388_54_7115160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a3bdd94b122af264b44dd5b56dffd88ddff465fe04f6996ff3727312d28569 +size 139753 diff --git a/datasets/搭电设备/val/images/订单1807390_54_7115212.jpg b/datasets/搭电设备/val/images/订单1807390_54_7115212.jpg new file mode 100644 index 0000000..690ec13 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807390_54_7115212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3730d88fc6d0d814822ea977502b3cf81fbcda03114a38d73698ff280d962573 +size 119113 diff --git a/datasets/搭电设备/val/images/订单1807392_54_7115234.jpg b/datasets/搭电设备/val/images/订单1807392_54_7115234.jpg new file mode 100644 index 0000000..131a352 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807392_54_7115234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a801e1bf9fe59c95d9a75e80ddc2d6f584e7f62b34d317cdfd1900096672b6 +size 103020 diff --git a/datasets/搭电设备/val/images/订单1807393_54_7115230.jpg b/datasets/搭电设备/val/images/订单1807393_54_7115230.jpg new file mode 100644 index 0000000..29e18cd --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807393_54_7115230.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2734a35acddf48eb62a21bb0d9ebf0b9f524baf404d8792802771be604549e7 +size 105933 diff --git a/datasets/搭电设备/val/images/订单1807395_54_7115256.jpg b/datasets/搭电设备/val/images/订单1807395_54_7115256.jpg new file mode 100644 index 0000000..9ce9426 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807395_54_7115256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cffbb394e87067355acdcaeb2e705215329e61d1d1ca09a5fc4414a45055b4c +size 88119 diff --git a/datasets/搭电设备/val/images/订单1807396_54_7115236.jpg b/datasets/搭电设备/val/images/订单1807396_54_7115236.jpg new file mode 100644 index 0000000..91e148c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807396_54_7115236.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c67efa514add296a7d856082eee9b87cdc5c1537424317227955c44e26a261 +size 364881 diff --git a/datasets/搭电设备/val/images/订单1807399_54_7115286.jpg b/datasets/搭电设备/val/images/订单1807399_54_7115286.jpg new file mode 100644 index 0000000..6806169 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807399_54_7115286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d620dee3015debf488752c339bd03a87897d716bd52bd9f16f66e6a6524d70ab +size 167690 diff --git a/datasets/搭电设备/val/images/订单1807401_54_7115296.jpg b/datasets/搭电设备/val/images/订单1807401_54_7115296.jpg new file mode 100644 index 0000000..1b70c26 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807401_54_7115296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4174ec02acbbc078daee3e58c8878d842826a473d6ddf3fda740ca00b284106f +size 299840 diff --git a/datasets/搭电设备/val/images/订单1807403_54_7115433.jpg b/datasets/搭电设备/val/images/订单1807403_54_7115433.jpg new file mode 100644 index 0000000..5505576 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807403_54_7115433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b87dd2af2f82db7e5a20e028c31e10a904b92b7b4f33714010f3b5c9188b363a +size 139645 diff --git a/datasets/搭电设备/val/images/订单1807404_54_7115388.jpg b/datasets/搭电设备/val/images/订单1807404_54_7115388.jpg new file mode 100644 index 0000000..337e19b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807404_54_7115388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe859cce8ea5838067b19fe34add2d317c4abb4d513dc46e571ed746ae78297 +size 100565 diff --git a/datasets/搭电设备/val/images/订单1807405_54_7115364.jpg b/datasets/搭电设备/val/images/订单1807405_54_7115364.jpg new file mode 100644 index 0000000..7d548a8 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807405_54_7115364.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ddcbf368dd530f67a4a774e468ac0c970c79ab187b8ac6aeac3ad18a5a3160 +size 114732 diff --git a/datasets/搭电设备/val/images/订单1807406_54_7115356.jpg b/datasets/搭电设备/val/images/订单1807406_54_7115356.jpg new file mode 100644 index 0000000..a1aa7ee --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807406_54_7115356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d62234ad31c9de160e619c3adb98e2b6db7f9f76e830e3841e9a7ed06e6a2a +size 106070 diff --git a/datasets/搭电设备/val/images/订单1807407_54_7115842.jpg b/datasets/搭电设备/val/images/订单1807407_54_7115842.jpg new file mode 100644 index 0000000..121ae71 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807407_54_7115842.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6542b71132e35782169b63fb5e171e8525727ee0e94b3de0b89a33cef624ec3f +size 196519 diff --git a/datasets/搭电设备/val/images/订单1807408_54_7115325.jpg b/datasets/搭电设备/val/images/订单1807408_54_7115325.jpg new file mode 100644 index 0000000..3a1d978 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807408_54_7115325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455fefbe8c01a03e1e122d1264b89c1537272ee05f3bbd62650abb8f5d93889c +size 83936 diff --git a/datasets/搭电设备/val/images/订单1807409_54_7115333.jpg b/datasets/搭电设备/val/images/订单1807409_54_7115333.jpg new file mode 100644 index 0000000..408570f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807409_54_7115333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358e8b31eaa7df168b683d9406a96cce5c72336d9ae3e56870bb40c557f3c2ae +size 108489 diff --git a/datasets/搭电设备/val/images/订单1807410_54_7115408.jpg b/datasets/搭电设备/val/images/订单1807410_54_7115408.jpg new file mode 100644 index 0000000..2c16c62 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807410_54_7115408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb885bce546925a1da76a0dee062dd5f9b0165d7de60a73a63199f353b08cc8 +size 579871 diff --git a/datasets/搭电设备/val/images/订单1807411_54_7115357.jpg b/datasets/搭电设备/val/images/订单1807411_54_7115357.jpg new file mode 100644 index 0000000..6e262db --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807411_54_7115357.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e7baf400cb31df6572fc0388e7f8f36cdecfebd5307b2fa5a17a90681fee3b +size 136167 diff --git a/datasets/搭电设备/val/images/订单1807412_54_7115413.jpg b/datasets/搭电设备/val/images/订单1807412_54_7115413.jpg new file mode 100644 index 0000000..da359a4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807412_54_7115413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56818fff8d6b2cd62bef168c6d89b6a79379a14efb7a266128541474ba99f0cd +size 308384 diff --git a/datasets/搭电设备/val/images/订单1807413_54_7115363.jpg b/datasets/搭电设备/val/images/订单1807413_54_7115363.jpg new file mode 100644 index 0000000..5264a60 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807413_54_7115363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bd81d9c851aec5982b275e8136eba69b9e2da446a5b6481282c127ca00539f +size 107783 diff --git a/datasets/搭电设备/val/images/订单1807414_54_7115435.jpg b/datasets/搭电设备/val/images/订单1807414_54_7115435.jpg new file mode 100644 index 0000000..44a9d95 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807414_54_7115435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14624d073fe85309ffeebb8ca43d6b9df84fa7087a41f489eeceecdce54271e4 +size 102729 diff --git a/datasets/搭电设备/val/images/订单1807416_54_7115427.jpg b/datasets/搭电设备/val/images/订单1807416_54_7115427.jpg new file mode 100644 index 0000000..e10f35d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807416_54_7115427.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c693b3e66497b23205f1a1f448ccfcf388942e9fb5cee9fe05d34a72bf96fb0b +size 146562 diff --git a/datasets/搭电设备/val/images/订单1807419_54_7115477.jpg b/datasets/搭电设备/val/images/订单1807419_54_7115477.jpg new file mode 100644 index 0000000..8b3a7ed --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807419_54_7115477.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95661a6b90d3ccbe7534ade02595c57a6d253ed29cdf6303e9e3b57c8f9e6bfd +size 181127 diff --git a/datasets/搭电设备/val/images/订单1807420_54_7115493.jpg b/datasets/搭电设备/val/images/订单1807420_54_7115493.jpg new file mode 100644 index 0000000..f4c374d --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807420_54_7115493.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411dbfede0d3d7b0cf0afda67dc7e09afa12c82ca21fdc80c6d78392f91a3f12 +size 93139 diff --git a/datasets/搭电设备/val/images/订单1807421_54_7115465.jpg b/datasets/搭电设备/val/images/订单1807421_54_7115465.jpg new file mode 100644 index 0000000..ac3e986 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807421_54_7115465.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc1d27dd644fca1ffe9950f3d47e3bd3596a61118064c1ee8564d0b8b49f209 +size 129712 diff --git a/datasets/搭电设备/val/images/订单1807423_54_7115490.jpg b/datasets/搭电设备/val/images/订单1807423_54_7115490.jpg new file mode 100644 index 0000000..b6fc69e --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807423_54_7115490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8379229d074c9d4da1bfd6e082a62567b1eb2848239d7252f28d465dcf521e +size 464631 diff --git a/datasets/搭电设备/val/images/订单1807425_54_7115539.jpg b/datasets/搭电设备/val/images/订单1807425_54_7115539.jpg new file mode 100644 index 0000000..e40ec7a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807425_54_7115539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafd15c12c93adf4084b7dc338b395c23a252fdb64602bc62834391f6b5d6244 +size 111709 diff --git a/datasets/搭电设备/val/images/订单1807426_54_7115521.jpg b/datasets/搭电设备/val/images/订单1807426_54_7115521.jpg new file mode 100644 index 0000000..4ab6d0a --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807426_54_7115521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef2b8ca4ac7b7905be117a600fff277d9c0b634804702a22f0ba3e53034575a +size 466248 diff --git a/datasets/搭电设备/val/images/订单1807430_54_7115561.jpg b/datasets/搭电设备/val/images/订单1807430_54_7115561.jpg new file mode 100644 index 0000000..9dd9f1c --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807430_54_7115561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8001959d5a0306c73ce4dacd1249e1476f0011c208bbe4134d44d20b35d70ba8 +size 142604 diff --git a/datasets/搭电设备/val/images/订单1807431_54_7115578.jpg b/datasets/搭电设备/val/images/订单1807431_54_7115578.jpg new file mode 100644 index 0000000..0f24620 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807431_54_7115578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd80bac73a212f8de9e72efd37a8d8dda3f3818911bf9b0b9664d8c1ece801f +size 125538 diff --git a/datasets/搭电设备/val/images/订单1807433_54_7115603.jpg b/datasets/搭电设备/val/images/订单1807433_54_7115603.jpg new file mode 100644 index 0000000..f00bdc5 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807433_54_7115603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f95a7fec8c1a9e91688fa7b75e6292e067023978f11053e1c62c8fc4e43bf53 +size 135362 diff --git a/datasets/搭电设备/val/images/订单1807435_54_7115593.jpg b/datasets/搭电设备/val/images/订单1807435_54_7115593.jpg new file mode 100644 index 0000000..269e9c7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807435_54_7115593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a912ded6914c03120d02e4a3cfb621441287eba1213f460d3045fb2eea633c01 +size 149727 diff --git a/datasets/搭电设备/val/images/订单1807440_54_7115686.jpg b/datasets/搭电设备/val/images/订单1807440_54_7115686.jpg new file mode 100644 index 0000000..1e487a2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807440_54_7115686.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8dfa6a5446036ed4cce55319427196333d89f2e36575f642e4c13f1a693021 +size 1027559 diff --git a/datasets/搭电设备/val/images/订单1807441_54_7115642.jpg b/datasets/搭电设备/val/images/订单1807441_54_7115642.jpg new file mode 100644 index 0000000..07d9bde --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807441_54_7115642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9a0bc9eb389753068537d1d0556fbb708f02b1f0cbe393095b82061b16d7c9 +size 584955 diff --git a/datasets/搭电设备/val/images/订单1807446_54_7115662.jpg b/datasets/搭电设备/val/images/订单1807446_54_7115662.jpg new file mode 100644 index 0000000..07e9b73 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807446_54_7115662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4bbb9887d857eabe6bf4fb3213df34f40e7ee4c64af99e110932f416a5e2aa7 +size 368713 diff --git a/datasets/搭电设备/val/images/订单1807447_54_7115699.jpg b/datasets/搭电设备/val/images/订单1807447_54_7115699.jpg new file mode 100644 index 0000000..b02a5e4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807447_54_7115699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9612394b0b8857ac57de5926587c889baae897b7cfa86925c6b57118fb4ee73f +size 254471 diff --git a/datasets/搭电设备/val/images/订单1807448_54_7115801.jpg b/datasets/搭电设备/val/images/订单1807448_54_7115801.jpg new file mode 100644 index 0000000..2169a11 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807448_54_7115801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ba608ed75bc2154efa9492230481c631e1e1ece62bad7c62f8fa4ead68f4de +size 122873 diff --git a/datasets/搭电设备/val/images/订单1807449_54_7115670.jpg b/datasets/搭电设备/val/images/订单1807449_54_7115670.jpg new file mode 100644 index 0000000..37b4b5b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807449_54_7115670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e529af3183146f60af62cb55bd96f32d2a9b0a6623fff4fcabf10e7dacfff8c7 +size 104273 diff --git a/datasets/搭电设备/val/images/订单1807451_54_7115674.jpg b/datasets/搭电设备/val/images/订单1807451_54_7115674.jpg new file mode 100644 index 0000000..12a6e1f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807451_54_7115674.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea1428edf3641aaa032c1327da437f87ec4bebc7a7941b41f71194033b6f1c3 +size 327976 diff --git a/datasets/搭电设备/val/images/订单1807455_54_7115714.jpg b/datasets/搭电设备/val/images/订单1807455_54_7115714.jpg new file mode 100644 index 0000000..e355eaa --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807455_54_7115714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef1c16d1bcf21633ff60c2044eb5d48efafe41d1fd42e8f517c66394e1b3e4e +size 117529 diff --git a/datasets/搭电设备/val/images/订单1807457_54_7115764.jpg b/datasets/搭电设备/val/images/订单1807457_54_7115764.jpg new file mode 100644 index 0000000..cc11bdf --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807457_54_7115764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a81387ff2d635bc5b0585efdad6e96e34bcbcfcfe8e7ac225d06c6818cba0c +size 349514 diff --git a/datasets/搭电设备/val/images/订单1807459_54_7115765.jpg b/datasets/搭电设备/val/images/订单1807459_54_7115765.jpg new file mode 100644 index 0000000..cc4d667 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807459_54_7115765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791a6eea01ec9814fbcfeac742bcfd8957ab041c19a9c1f9dbfb926ad3517ca7 +size 165876 diff --git a/datasets/搭电设备/val/images/订单1807462_54_7115736.jpg b/datasets/搭电设备/val/images/订单1807462_54_7115736.jpg new file mode 100644 index 0000000..df44e16 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807462_54_7115736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ae2f2aef51d0f22839dd3e60c051195dfd8378b850ef96820dec65c7da5420 +size 166993 diff --git a/datasets/搭电设备/val/images/订单1807463_54_7115746.jpg b/datasets/搭电设备/val/images/订单1807463_54_7115746.jpg new file mode 100644 index 0000000..f156139 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807463_54_7115746.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ae51b7aa2a241c1599ff7fe43f8ce9c64b8ac4ccd46d23fea79db985a7fade +size 141284 diff --git a/datasets/搭电设备/val/images/订单1807466_54_7115812.jpg b/datasets/搭电设备/val/images/订单1807466_54_7115812.jpg new file mode 100644 index 0000000..4fab437 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807466_54_7115812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82d2f6dc24af9930df95e8c24870cf33cebf802ce21d01ce941ab0e6eddd566 +size 286667 diff --git a/datasets/搭电设备/val/images/订单1807471_54_7116059.jpg b/datasets/搭电设备/val/images/订单1807471_54_7116059.jpg new file mode 100644 index 0000000..d729853 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807471_54_7116059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566e0560fcce69c8df517c00cc3317b21eda600afc4d4ca6ed455436ab166ff0 +size 96700 diff --git a/datasets/搭电设备/val/images/订单1807472_54_7115786.jpg b/datasets/搭电设备/val/images/订单1807472_54_7115786.jpg new file mode 100644 index 0000000..9d77d15 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807472_54_7115786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18f66c846be45a78bf1fd7a4577e92c37728127687f56e186cd74747fbc4495 +size 138979 diff --git a/datasets/搭电设备/val/images/订单1807473_54_7115865.jpg b/datasets/搭电设备/val/images/订单1807473_54_7115865.jpg new file mode 100644 index 0000000..279eee7 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807473_54_7115865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff84cb107c7e3a5202e246933405080b87ea84ad5738495690dba19f2030bdb +size 272751 diff --git a/datasets/搭电设备/val/images/订单1807474_54_7115816.jpg b/datasets/搭电设备/val/images/订单1807474_54_7115816.jpg new file mode 100644 index 0000000..cb77e4b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807474_54_7115816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d89d592304ee0a2ab40742e650d13d8f9d749294158744b72bd24b52dbd1e22d +size 94908 diff --git a/datasets/搭电设备/val/images/订单1807475_54_7115917.jpg b/datasets/搭电设备/val/images/订单1807475_54_7115917.jpg new file mode 100644 index 0000000..97b39e3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807475_54_7115917.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3801bae01f14c1a5f96c1fda77b4c8264222abde6289c924a7d47aea9eca22 +size 140055 diff --git a/datasets/搭电设备/val/images/订单1807476_54_7115867.jpg b/datasets/搭电设备/val/images/订单1807476_54_7115867.jpg new file mode 100644 index 0000000..523e2f2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807476_54_7115867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29413438f30c51d49b8a488621dacca181a533ebc57f6a7255d683f1705bfb6b +size 437439 diff --git a/datasets/搭电设备/val/images/订单1807477_54_7115896.jpg b/datasets/搭电设备/val/images/订单1807477_54_7115896.jpg new file mode 100644 index 0000000..6b7c146 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807477_54_7115896.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0c64cc2b8da96ae9c6ba8d643cacab32c19cbdaabf57d4f6073f936c96a8cd +size 328584 diff --git a/datasets/搭电设备/val/images/订单1807478_54_7115864.jpg b/datasets/搭电设备/val/images/订单1807478_54_7115864.jpg new file mode 100644 index 0000000..9e4964b --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807478_54_7115864.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485142f533b817e8ba97b88f46f2e768da8a3f2ba0fde1399fad5aed2c293241 +size 140643 diff --git a/datasets/搭电设备/val/images/订单1807479_54_7115933.jpg b/datasets/搭电设备/val/images/订单1807479_54_7115933.jpg new file mode 100644 index 0000000..d4e382f --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807479_54_7115933.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7de9c19a01aaaf932662ec5d8c02669d66596d097b08edafa1d1bb52a8c24d3 +size 581374 diff --git a/datasets/搭电设备/val/images/订单1807480_54_7115943.jpg b/datasets/搭电设备/val/images/订单1807480_54_7115943.jpg new file mode 100644 index 0000000..4a33707 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807480_54_7115943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a695a066ebcaaf946598f99e56b40012c94c3646e3b24eef6c1a7885b95540e8 +size 165622 diff --git a/datasets/搭电设备/val/images/订单1807481_54_7115900.jpg b/datasets/搭电设备/val/images/订单1807481_54_7115900.jpg new file mode 100644 index 0000000..2eec5c0 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807481_54_7115900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94c7e78575d723c9a335e6185f2a8ea678cae1d46f47e6cf61aa48d03ca395b +size 172315 diff --git a/datasets/搭电设备/val/images/订单1807482_54_7115986.jpg b/datasets/搭电设备/val/images/订单1807482_54_7115986.jpg new file mode 100644 index 0000000..be6a5d4 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807482_54_7115986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0e93ddb65c3b3a8d686bb5c707c9570dabfed2a1a422d8090f1ab9a6139b1a +size 502274 diff --git a/datasets/搭电设备/val/images/订单1807483_54_7116028.jpg b/datasets/搭电设备/val/images/订单1807483_54_7116028.jpg new file mode 100644 index 0000000..bd516e1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807483_54_7116028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f5217c7f01df2662f96e02b9e1882133d1b3b2b39684bfe733ce23179902bc +size 293672 diff --git a/datasets/搭电设备/val/images/订单1807487_54_7115998.jpg b/datasets/搭电设备/val/images/订单1807487_54_7115998.jpg new file mode 100644 index 0000000..2491e91 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807487_54_7115998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c517c8c0c1ae00922214120f1b7161c4aab9b8a745283f08d172be132b2a7a +size 121317 diff --git a/datasets/搭电设备/val/images/订单1807489_54_7116004.jpg b/datasets/搭电设备/val/images/订单1807489_54_7116004.jpg new file mode 100644 index 0000000..d902ff1 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807489_54_7116004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c44d7897a19a586c3c1d17a4b02fd4bfc32807ea2e41af51f3c58d4bb5f11c +size 370251 diff --git a/datasets/搭电设备/val/images/订单1807495_54_7116085.jpg b/datasets/搭电设备/val/images/订单1807495_54_7116085.jpg new file mode 100644 index 0000000..eabb319 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807495_54_7116085.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4403f6a2d7973cfb3ffaa6c2037ab17f3b6e8a8c6a7cfa7e66b223377b2ae35c +size 127440 diff --git a/datasets/搭电设备/val/images/订单1807496_54_7116083.jpg b/datasets/搭电设备/val/images/订单1807496_54_7116083.jpg new file mode 100644 index 0000000..cb234f3 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807496_54_7116083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b42a068335e37d03712b57db3c94fb474aacfd3fd717193ea79a6713a71c0b +size 222722 diff --git a/datasets/搭电设备/val/images/订单1807497_54_7116097.jpg b/datasets/搭电设备/val/images/订单1807497_54_7116097.jpg new file mode 100644 index 0000000..2b2e112 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807497_54_7116097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec311a76e15bc47030e05f9c726952fd76374baa0db45f3b71d7b3f26d4b6a4 +size 115105 diff --git a/datasets/搭电设备/val/images/订单1807499_54_7116082.jpg b/datasets/搭电设备/val/images/订单1807499_54_7116082.jpg new file mode 100644 index 0000000..43de5a2 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807499_54_7116082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a62ae55850c433e76bb7a820b0bd09f56dedc4c45092a29b4c84a1e1bd3a4e0d +size 304705 diff --git a/datasets/搭电设备/val/images/订单1807504_54_7116137.jpg b/datasets/搭电设备/val/images/订单1807504_54_7116137.jpg new file mode 100644 index 0000000..73c7882 --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807504_54_7116137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea1cffb1e79f05bc20316dc71d51629512cf039c390fed0fcd609bc4b06bd20 +size 828659 diff --git a/datasets/搭电设备/val/images/订单1807506_54_7116129.jpg b/datasets/搭电设备/val/images/订单1807506_54_7116129.jpg new file mode 100644 index 0000000..d0c59ef --- /dev/null +++ b/datasets/搭电设备/val/images/订单1807506_54_7116129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eaabb506b0067dc5992f872345816bd7e8a1bf09fee2624ed3b87c280de2e04 +size 136865 diff --git a/datasets/搭电设备/val/labels.cache b/datasets/搭电设备/val/labels.cache new file mode 100644 index 0000000..44a6dab Binary files /dev/null and b/datasets/搭电设备/val/labels.cache differ diff --git a/datasets/搭电设备/val/labels/classes.txt b/datasets/搭电设备/val/labels/classes.txt new file mode 100644 index 0000000..d213c8d --- /dev/null +++ b/datasets/搭电设备/val/labels/classes.txt @@ -0,0 +1 @@ +JumperCable diff --git a/datasets/搭电设备/val/labels/订单1806515_54_7107135.txt b/datasets/搭电设备/val/labels/订单1806515_54_7107135.txt new file mode 100644 index 0000000..94f8853 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806515_54_7107135.txt @@ -0,0 +1 @@ +0 0.338667 0.654000 0.648000 0.692000 diff --git a/datasets/搭电设备/val/labels/订单1806516_54_7107104.txt b/datasets/搭电设备/val/labels/订单1806516_54_7107104.txt new file mode 100644 index 0000000..24dd679 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806516_54_7107104.txt @@ -0,0 +1 @@ +0 0.574219 0.488281 0.684896 0.572266 diff --git a/datasets/搭电设备/val/labels/订单1806518_54_7107143.txt b/datasets/搭电设备/val/labels/订单1806518_54_7107143.txt new file mode 100644 index 0000000..6c09a8e --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806518_54_7107143.txt @@ -0,0 +1 @@ +0 0.677083 0.594238 0.645833 0.811523 diff --git a/datasets/搭电设备/val/labels/订单1806519_54_7107238.txt b/datasets/搭电设备/val/labels/订单1806519_54_7107238.txt new file mode 100644 index 0000000..5c3ae87 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806519_54_7107238.txt @@ -0,0 +1 @@ +0 0.455420 0.560606 0.763986 0.703963 diff --git a/datasets/搭电设备/val/labels/订单1806521_54_7107167.txt b/datasets/搭电设备/val/labels/订单1806521_54_7107167.txt new file mode 100644 index 0000000..6181e64 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806521_54_7107167.txt @@ -0,0 +1 @@ +0 0.457682 0.591797 0.436198 0.611328 diff --git a/datasets/搭电设备/val/labels/订单1806522_54_7107189.txt b/datasets/搭电设备/val/labels/订单1806522_54_7107189.txt new file mode 100644 index 0000000..a3fc8c2 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806522_54_7107189.txt @@ -0,0 +1 @@ +0 0.514167 0.511875 0.748333 0.674583 diff --git a/datasets/搭电设备/val/labels/订单1806523_54_7107177.txt b/datasets/搭电设备/val/labels/订单1806523_54_7107177.txt new file mode 100644 index 0000000..e9a935a --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806523_54_7107177.txt @@ -0,0 +1 @@ +0 0.519722 0.517708 0.579444 0.587083 diff --git a/datasets/搭电设备/val/labels/订单1806524_54_7107204.txt b/datasets/搭电设备/val/labels/订单1806524_54_7107204.txt new file mode 100644 index 0000000..1df9bbd --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806524_54_7107204.txt @@ -0,0 +1 @@ +0 0.500667 0.671000 0.998667 0.658000 diff --git a/datasets/搭电设备/val/labels/订单1806526_54_7107138.txt b/datasets/搭电设备/val/labels/订单1806526_54_7107138.txt new file mode 100644 index 0000000..f1f9950 --- /dev/null +++ b/datasets/搭电设备/val/labels/订单1806526_54_7107138.txt @@ -0,0 +1 @@ +0 0.437500 0.585938 0.575521 0.619141 diff --git a/datasets/检测仪/.DS_Store b/datasets/检测仪/.DS_Store new file mode 100644 index 0000000..ba6e27e Binary files /dev/null and b/datasets/检测仪/.DS_Store differ diff --git a/datasets/检测仪/data.yaml b/datasets/检测仪/data.yaml new file mode 100644 index 0000000..e3dbf29 --- /dev/null +++ b/datasets/检测仪/data.yaml @@ -0,0 +1,5 @@ +train: train/images +val: val/images +nc: 6 +names: ['da_dian_xian','tuo_che_shang_you_che','yi_biao_pan','lun_tai','ping_an_ma_jia','jian_ce_yi'] + diff --git a/datasets/检测仪/train/.DS_Store b/datasets/检测仪/train/.DS_Store new file mode 100644 index 0000000..60abc21 Binary files /dev/null and b/datasets/检测仪/train/.DS_Store differ diff --git a/datasets/检测仪/train/classes.txt b/datasets/检测仪/train/classes.txt new file mode 100644 index 0000000..34c1dd2 --- /dev/null +++ b/datasets/检测仪/train/classes.txt @@ -0,0 +1 @@ +jian_ce_yi \ No newline at end of file diff --git a/datasets/检测仪/train/images/.DS_Store b/datasets/检测仪/train/images/.DS_Store new file mode 100644 index 0000000..cf1936c Binary files /dev/null and b/datasets/检测仪/train/images/.DS_Store differ diff --git a/datasets/检测仪/train/images/订单1804264_51_7086683.jpg b/datasets/检测仪/train/images/订单1804264_51_7086683.jpg new file mode 100644 index 0000000..a46dd46 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804264_51_7086683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5b993f0ba0c257198174339a21d95af9d785f35538d5c64ae6e7001e3de55a +size 94842 diff --git a/datasets/检测仪/train/images/订单1804266_51_7086351.jpg b/datasets/检测仪/train/images/订单1804266_51_7086351.jpg new file mode 100644 index 0000000..11babde --- /dev/null +++ b/datasets/检测仪/train/images/订单1804266_51_7086351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a26ea58dd356c85ece347c093731fcab2df74eee98926197ca715ad0179cc4 +size 115537 diff --git a/datasets/检测仪/train/images/订单1804271_51_7086393.jpg b/datasets/检测仪/train/images/订单1804271_51_7086393.jpg new file mode 100644 index 0000000..1063ec0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804271_51_7086393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91bf916b5340c48f59fa51121df0f2f1aa1010faea7d5ac7421374eabfe675a +size 254128 diff --git a/datasets/检测仪/train/images/订单1804279_51_7086490.jpg b/datasets/检测仪/train/images/订单1804279_51_7086490.jpg new file mode 100644 index 0000000..3aeefdf --- /dev/null +++ b/datasets/检测仪/train/images/订单1804279_51_7086490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687db145ecbaa564557e19a6201fe70e026185cb5fcbad3e6f97ba84b30dd350 +size 123992 diff --git a/datasets/检测仪/train/images/订单1804280_51_7086504.jpg b/datasets/检测仪/train/images/订单1804280_51_7086504.jpg new file mode 100644 index 0000000..83f93a2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804280_51_7086504.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f85421bb7b60495b564ce3796ae0d0dff85f6b1ee72c829ec360aa3f2c365e +size 125877 diff --git a/datasets/检测仪/train/images/订单1804281_51_7086514.jpg b/datasets/检测仪/train/images/订单1804281_51_7086514.jpg new file mode 100644 index 0000000..5d5475f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804281_51_7086514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347c2237e467389a6b57ee9baacee8fdfb97824458c6b866e5a8a0b9b1d67618 +size 153380 diff --git a/datasets/检测仪/train/images/订单1804283_51_7086538.jpg b/datasets/检测仪/train/images/订单1804283_51_7086538.jpg new file mode 100644 index 0000000..2931fd6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804283_51_7086538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2322a972519533e5671765f213fe73c3b000837f8c0d04820b355e36b4ef095 +size 141137 diff --git a/datasets/检测仪/train/images/订单1804284_51_7086566.jpg b/datasets/检测仪/train/images/订单1804284_51_7086566.jpg new file mode 100644 index 0000000..97470c1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804284_51_7086566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e671944731ef1d512fb6a68b348f282c1905b19db308219d399320fe50cdc6 +size 326718 diff --git a/datasets/检测仪/train/images/订单1804288_51_7086560.jpg b/datasets/检测仪/train/images/订单1804288_51_7086560.jpg new file mode 100644 index 0000000..f4ad56f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804288_51_7086560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408229cd521b3384e3c7860b8a253650e92bddc320ff24138983e158cc7d7513 +size 137667 diff --git a/datasets/检测仪/train/images/订单1804296_51_7086646.jpg b/datasets/检测仪/train/images/订单1804296_51_7086646.jpg new file mode 100644 index 0000000..010ee84 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804296_51_7086646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5cc98d8ab6b1f5bf237efebe585cba3e06f274aae10fe3423d228fdb7e9f970 +size 150319 diff --git a/datasets/检测仪/train/images/订单1804297_51_7086665.jpg b/datasets/检测仪/train/images/订单1804297_51_7086665.jpg new file mode 100644 index 0000000..452bb61 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804297_51_7086665.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4650c089c7ce615d8fd9cdc74c7f142eb5ba7cb088d4e5412dd6261d34e282e +size 102324 diff --git a/datasets/检测仪/train/images/订单1804300_51_7086694.jpg b/datasets/检测仪/train/images/订单1804300_51_7086694.jpg new file mode 100644 index 0000000..12eac1e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804300_51_7086694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f603a7d270b5aca0691a816cf9c7f9f38d4f416553dc6161c65f8d8b09aefe +size 87028 diff --git a/datasets/检测仪/train/images/订单1804301_51_7086834.jpg b/datasets/检测仪/train/images/订单1804301_51_7086834.jpg new file mode 100644 index 0000000..29bd81b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804301_51_7086834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c79ac5617e99391c881f2b676bb467e4e4b4d7ff1a94ba2a8b86c5463e9c4ec +size 234305 diff --git a/datasets/检测仪/train/images/订单1804303_51_7086722.jpg b/datasets/检测仪/train/images/订单1804303_51_7086722.jpg new file mode 100644 index 0000000..e26b91c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804303_51_7086722.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a0210bec396964974c5a0c801e3a98f12b759c0dee41cc80c4cc17b3e2b74a +size 504663 diff --git a/datasets/检测仪/train/images/订单1804305_51_7086730.jpg b/datasets/检测仪/train/images/订单1804305_51_7086730.jpg new file mode 100644 index 0000000..a8511ea --- /dev/null +++ b/datasets/检测仪/train/images/订单1804305_51_7086730.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d594090144f131c997d26b173ffdec476d832c56f9c2b5ecaf742851030d2a4f +size 141688 diff --git a/datasets/检测仪/train/images/订单1804307_51_7086734.jpg b/datasets/检测仪/train/images/订单1804307_51_7086734.jpg new file mode 100644 index 0000000..42bb397 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804307_51_7086734.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdae738c2b755f1b74eae3bdd60b31f11d707d8056a6da70669940aaabc176b +size 142521 diff --git a/datasets/检测仪/train/images/订单1804310_51_7086877.jpg b/datasets/检测仪/train/images/订单1804310_51_7086877.jpg new file mode 100644 index 0000000..87aba4a --- /dev/null +++ b/datasets/检测仪/train/images/订单1804310_51_7086877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0392d538322512bec53f36e524a374f2f88b429132817044da27db1db9d044 +size 129429 diff --git a/datasets/检测仪/train/images/订单1804312_51_7086770.jpg b/datasets/检测仪/train/images/订单1804312_51_7086770.jpg new file mode 100644 index 0000000..cbb4836 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804312_51_7086770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16519746421823d3c848c7cb452ef15010ba9d0ab74f89671167e1111def441e +size 601340 diff --git a/datasets/检测仪/train/images/订单1804316_51_7086793.jpg b/datasets/检测仪/train/images/订单1804316_51_7086793.jpg new file mode 100644 index 0000000..1c5e809 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804316_51_7086793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ba87128a043b1bed9115c40e2debea8716563e748e644916b7ace009b8792b +size 128127 diff --git a/datasets/检测仪/train/images/订单1804319_51_7086838.jpg b/datasets/检测仪/train/images/订单1804319_51_7086838.jpg new file mode 100644 index 0000000..c006151 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804319_51_7086838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7a9dead3be29d4e27fd0834c15d3efd55c3855ea0a965b5c20fa2cb13984fe +size 169016 diff --git a/datasets/检测仪/train/images/订单1804320_51_7086858.jpg b/datasets/检测仪/train/images/订单1804320_51_7086858.jpg new file mode 100644 index 0000000..2a8daf0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804320_51_7086858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b679a27123de5c62f43247111df9ff20778f55fb857651f4e851e8c9e6f71323 +size 535313 diff --git a/datasets/检测仪/train/images/订单1804322_51_7086804.jpg b/datasets/检测仪/train/images/订单1804322_51_7086804.jpg new file mode 100644 index 0000000..fee5da0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804322_51_7086804.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0566c9c6b8d106baecd089b872f038b1180475cac72ab28cf7fa47b1e816472d +size 139482 diff --git a/datasets/检测仪/train/images/订单1804329_51_7086883.jpg b/datasets/检测仪/train/images/订单1804329_51_7086883.jpg new file mode 100644 index 0000000..db00f6e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804329_51_7086883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3735ea89f4a9f7f9c62dabfde8ab4708247092129774044849e484b1d2c2acd2 +size 108058 diff --git a/datasets/检测仪/train/images/订单1804330_51_7086948.jpg b/datasets/检测仪/train/images/订单1804330_51_7086948.jpg new file mode 100644 index 0000000..f26e181 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804330_51_7086948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b2d23a48c8d3c2ef9378226039552237eca9be44e2b2ede478b727f3c2406d +size 146446 diff --git a/datasets/检测仪/train/images/订单1804345_51_7087222.jpg b/datasets/检测仪/train/images/订单1804345_51_7087222.jpg new file mode 100644 index 0000000..8a9b2c1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804345_51_7087222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed26562266a8f3f339744af33485b500bcf0347f57d19103b21222b0e1d0c15b +size 534835 diff --git a/datasets/检测仪/train/images/订单1804348_51_7086990.jpg b/datasets/检测仪/train/images/订单1804348_51_7086990.jpg new file mode 100644 index 0000000..40ed1e9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804348_51_7086990.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38704e90f414c8eb17a8717d97e0a1dbb85ce87cced84bb32a36e9d00d1b8b5 +size 543590 diff --git a/datasets/检测仪/train/images/订单1804351_51_7087028.jpg b/datasets/检测仪/train/images/订单1804351_51_7087028.jpg new file mode 100644 index 0000000..a582646 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804351_51_7087028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8c891c3b6481cd46eaf160e40632d284f278911dad9d364c864e8fe59b4e0a +size 135262 diff --git a/datasets/检测仪/train/images/订单1804354_51_7087141.jpg b/datasets/检测仪/train/images/订单1804354_51_7087141.jpg new file mode 100644 index 0000000..2696856 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804354_51_7087141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b686b17f332c41b7c707c6ba3c9c783e91e889701252e813ccb0d56dc5e36a +size 122551 diff --git a/datasets/检测仪/train/images/订单1804355_51_7087137.jpg b/datasets/检测仪/train/images/订单1804355_51_7087137.jpg new file mode 100644 index 0000000..f117f69 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804355_51_7087137.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67d4ddf800c1be9a099d7877aa6b3171c2f400b51f678782b30fdcc56d17ec7 +size 462765 diff --git a/datasets/检测仪/train/images/订单1804356_51_7087113.jpg b/datasets/检测仪/train/images/订单1804356_51_7087113.jpg new file mode 100644 index 0000000..2ed0cd8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804356_51_7087113.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048ef7ceedb35d292fd66246c5d19a918bb1195123af631dd72ca92b240d588b +size 138287 diff --git a/datasets/检测仪/train/images/订单1804357_51_7087171.jpg b/datasets/检测仪/train/images/订单1804357_51_7087171.jpg new file mode 100644 index 0000000..f9d69eb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804357_51_7087171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd0f26e5a101e0d5753e5939a8e96912c697746f22352537abe846d4950902d +size 118915 diff --git a/datasets/检测仪/train/images/订单1804358_51_7087420.jpg b/datasets/检测仪/train/images/订单1804358_51_7087420.jpg new file mode 100644 index 0000000..136f93c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804358_51_7087420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfc02d694217b93f2affa9d0adbfc3f57bcfc59b6df6dd7415e5394c876bbc1 +size 618160 diff --git a/datasets/检测仪/train/images/订单1804361_51_7087277.jpg b/datasets/检测仪/train/images/订单1804361_51_7087277.jpg new file mode 100644 index 0000000..9f38078 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804361_51_7087277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c881d98938227bceb91e752a046b9b2b4da2911f5b2c73ae16dc7021d32d856 +size 151911 diff --git a/datasets/检测仪/train/images/订单1804364_51_7087186.jpg b/datasets/检测仪/train/images/订单1804364_51_7087186.jpg new file mode 100644 index 0000000..6a37f80 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804364_51_7087186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edfd748719a2167ab58876a1882d17070b7173fec3f509d60b64ab13954ad816 +size 146932 diff --git a/datasets/检测仪/train/images/订单1804365_51_7087279.jpg b/datasets/检测仪/train/images/订单1804365_51_7087279.jpg new file mode 100644 index 0000000..fe81653 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804365_51_7087279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c7a596a83e2c987c93302434611fb9903bde9c8e245ee0ab428268be5de118 +size 147798 diff --git a/datasets/检测仪/train/images/订单1804368_51_7087281.jpg b/datasets/检测仪/train/images/订单1804368_51_7087281.jpg new file mode 100644 index 0000000..5881c65 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804368_51_7087281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67333fd97e4c33be64b337bdb964fd6323b5fdd7e184fc2fe63f44950b3ce2fc +size 96237 diff --git a/datasets/检测仪/train/images/订单1804374_51_7087324.jpg b/datasets/检测仪/train/images/订单1804374_51_7087324.jpg new file mode 100644 index 0000000..f8a201f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804374_51_7087324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a817c54e6dd39b0452a04a50d8105aaab049ef803be700334bb13ab121310933 +size 144809 diff --git a/datasets/检测仪/train/images/订单1804380_51_7087338.jpg b/datasets/检测仪/train/images/订单1804380_51_7087338.jpg new file mode 100644 index 0000000..242b768 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804380_51_7087338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e288f36c42dbb792da764e568f4426d499ebbd2e105441c1512e3fdf168e1d2 +size 173137 diff --git a/datasets/检测仪/train/images/订单1804383_51_7087409.jpg b/datasets/检测仪/train/images/订单1804383_51_7087409.jpg new file mode 100644 index 0000000..b539203 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804383_51_7087409.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b8045cc731d71b0c6b7a908e3bfd67f3482601b6831f3e38d1fad065f7e7a7 +size 589730 diff --git a/datasets/检测仪/train/images/订单1804384_51_7087390.jpg b/datasets/检测仪/train/images/订单1804384_51_7087390.jpg new file mode 100644 index 0000000..9a7d3a6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804384_51_7087390.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3674357934a8f2ff3826ea35300a47a26f63084dbc52b248f4daccd5378b2ef4 +size 168762 diff --git a/datasets/检测仪/train/images/订单1804385_51_7087531.jpg b/datasets/检测仪/train/images/订单1804385_51_7087531.jpg new file mode 100644 index 0000000..9b07dc1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804385_51_7087531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95534f772121c7ebe5e56b0d3a2ae53f3aa1d2b4b7a43ba996d3f3299b00de63 +size 141817 diff --git a/datasets/检测仪/train/images/订单1804387_51_7087408.jpg b/datasets/检测仪/train/images/订单1804387_51_7087408.jpg new file mode 100644 index 0000000..4551cec --- /dev/null +++ b/datasets/检测仪/train/images/订单1804387_51_7087408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6de09a559e7cd7e6d811c6519af6f31aefa07aa248a8b2f2cbf7b7cb388d78 +size 688014 diff --git a/datasets/检测仪/train/images/订单1804388_51_7087485.jpg b/datasets/检测仪/train/images/订单1804388_51_7087485.jpg new file mode 100644 index 0000000..3466340 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804388_51_7087485.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5427299fea367de545b7c1bbf36fe2c648d167ecd2fd7a45eaa2481403a4e78f +size 200063 diff --git a/datasets/检测仪/train/images/订单1804391_51_7087435.jpg b/datasets/检测仪/train/images/订单1804391_51_7087435.jpg new file mode 100644 index 0000000..6f90d7b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804391_51_7087435.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a92623dbaa5dc67c918565198ffd6f5cc3ad64c7d2a6c48dc15f0060af10ec +size 299514 diff --git a/datasets/检测仪/train/images/订单1804392_51_7087455.jpg b/datasets/检测仪/train/images/订单1804392_51_7087455.jpg new file mode 100644 index 0000000..9951185 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804392_51_7087455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5f9b072d57f7eb84d33989ffe59d147b5a175079363a29dc70bb26d16a0558 +size 119304 diff --git a/datasets/检测仪/train/images/订单1804397_51_7087486.jpg b/datasets/检测仪/train/images/订单1804397_51_7087486.jpg new file mode 100644 index 0000000..d2f0a16 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804397_51_7087486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79c83f8ee4577fd95cd437dd4ca62716e96055bc56f6727f151db86df74fa60 +size 120987 diff --git a/datasets/检测仪/train/images/订单1804398_51_7087556.jpg b/datasets/检测仪/train/images/订单1804398_51_7087556.jpg new file mode 100644 index 0000000..568c85a --- /dev/null +++ b/datasets/检测仪/train/images/订单1804398_51_7087556.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b4db7106a00627f89a116211b49dddd92feb1d83fd0ba8853852b6662fd2a2 +size 139661 diff --git a/datasets/检测仪/train/images/订单1804400_51_7087530.jpg b/datasets/检测仪/train/images/订单1804400_51_7087530.jpg new file mode 100644 index 0000000..b4aea7f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804400_51_7087530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9852d6c2b4e484dbe2e7165496071dc3e35934048719879c84ecd824e30d7f +size 409804 diff --git a/datasets/检测仪/train/images/订单1804402_51_7087549.jpg b/datasets/检测仪/train/images/订单1804402_51_7087549.jpg new file mode 100644 index 0000000..b43f121 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804402_51_7087549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1e74b916ec84e91975715c281b98b347d5540456a687fe8de2a3dce2a906af +size 158484 diff --git a/datasets/检测仪/train/images/订单1804404_51_7088648.jpg b/datasets/检测仪/train/images/订单1804404_51_7088648.jpg new file mode 100644 index 0000000..6ddc321 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804404_51_7088648.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d947ec2f5ba91614a938c976213eb6d3689998d095d70ab88508b7e09b970f8 +size 302983 diff --git a/datasets/检测仪/train/images/订单1804405_51_7087580.jpg b/datasets/检测仪/train/images/订单1804405_51_7087580.jpg new file mode 100644 index 0000000..c6cb18e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804405_51_7087580.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c2472854f99ca47e46679f3247c226418723317f53987c15b5c6a7ae45dc45 +size 1190937 diff --git a/datasets/检测仪/train/images/订单1804409_51_7087612.jpg b/datasets/检测仪/train/images/订单1804409_51_7087612.jpg new file mode 100644 index 0000000..a65b9bc --- /dev/null +++ b/datasets/检测仪/train/images/订单1804409_51_7087612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ffacf15c6c8755e29258c64914c778eac8dbfdbd787b59359076a4745f444d +size 131438 diff --git a/datasets/检测仪/train/images/订单1804410_51_7087567.jpg b/datasets/检测仪/train/images/订单1804410_51_7087567.jpg new file mode 100644 index 0000000..3eb6db8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804410_51_7087567.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5588a37231982a20b0e2f47a56f45a5dd20438d575c8e1e682067e68446729 +size 142340 diff --git a/datasets/检测仪/train/images/订单1804415_51_7087728.jpg b/datasets/检测仪/train/images/订单1804415_51_7087728.jpg new file mode 100644 index 0000000..38935f1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804415_51_7087728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc72e7fb13bb4a48ec828d0baf0d608744979801ab84ed2d8972e0eba7e8c37 +size 105791 diff --git a/datasets/检测仪/train/images/订单1804416_51_7087651.jpg b/datasets/检测仪/train/images/订单1804416_51_7087651.jpg new file mode 100644 index 0000000..d851572 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804416_51_7087651.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee727a181d0732a4e068641e3fa215c8a61a28b92aad72b45692ff5e1aa093e7 +size 261979 diff --git a/datasets/检测仪/train/images/订单1804417_51_7087688.jpg b/datasets/检测仪/train/images/订单1804417_51_7087688.jpg new file mode 100644 index 0000000..e86d74e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804417_51_7087688.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cb702f903781b444921f19fda41d0e30c57974b62206a2be813af7966df2d0 +size 161896 diff --git a/datasets/检测仪/train/images/订单1804418_51_7087740.jpg b/datasets/检测仪/train/images/订单1804418_51_7087740.jpg new file mode 100644 index 0000000..3e572f6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804418_51_7087740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9347238873cb3568400467657d5193c8b54e019965d03a34dbaafc7e2f4589 +size 102931 diff --git a/datasets/检测仪/train/images/订单1804419_51_7087760.jpg b/datasets/检测仪/train/images/订单1804419_51_7087760.jpg new file mode 100644 index 0000000..579fbd3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804419_51_7087760.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76181e085991e9cc168834bab6bd745b9668c6a524ddd6afc9ef95610e45384b +size 111785 diff --git a/datasets/检测仪/train/images/订单1804420_51_7087689.jpg b/datasets/检测仪/train/images/订单1804420_51_7087689.jpg new file mode 100644 index 0000000..8f8a013 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804420_51_7087689.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4044722bfc819c5df1135a27f5dd5b37a6ba2cbf55f43755b1e57d6fb554d0ca +size 262680 diff --git a/datasets/检测仪/train/images/订单1804428_51_7087840.jpg b/datasets/检测仪/train/images/订单1804428_51_7087840.jpg new file mode 100644 index 0000000..bea59cd --- /dev/null +++ b/datasets/检测仪/train/images/订单1804428_51_7087840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea60f226653d8dfa52909b40720462ffc9061cf083126f64b2e86dabb3108fd +size 132342 diff --git a/datasets/检测仪/train/images/订单1804433_51_7087882.jpg b/datasets/检测仪/train/images/订单1804433_51_7087882.jpg new file mode 100644 index 0000000..c276756 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804433_51_7087882.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010c88398b37b9d3c48d72eb6ba317ad2d330857cb4100071569fbecbce04db0 +size 109160 diff --git a/datasets/检测仪/train/images/订单1804435_51_7087835.jpg b/datasets/检测仪/train/images/订单1804435_51_7087835.jpg new file mode 100644 index 0000000..e2311d1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804435_51_7087835.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67019bdd076e6aceeddd582773298dc6ce0764fbb46c5b4fcc992629cc9bea0 +size 104573 diff --git a/datasets/检测仪/train/images/订单1804441_51_7087928.jpg b/datasets/检测仪/train/images/订单1804441_51_7087928.jpg new file mode 100644 index 0000000..e243f13 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804441_51_7087928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7d872b6a0363424c703cb6166023f2a7686ff945c783a42a12d4c20bea8681 +size 131925 diff --git a/datasets/检测仪/train/images/订单1804442_51_7087959.jpg b/datasets/检测仪/train/images/订单1804442_51_7087959.jpg new file mode 100644 index 0000000..3d95dbb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804442_51_7087959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec758bdbb1bbb5a8c3735b713561732fe496cce96b162aa85afabcdffd1d743c +size 150854 diff --git a/datasets/检测仪/train/images/订单1804446_51_7087979.jpg b/datasets/检测仪/train/images/订单1804446_51_7087979.jpg new file mode 100644 index 0000000..f77f359 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804446_51_7087979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd247b5e2f786a4f45ee4053acdd1643510a7086ac7757948591eb813dcb6d1 +size 182315 diff --git a/datasets/检测仪/train/images/订单1804453_51_7088084.jpg b/datasets/检测仪/train/images/订单1804453_51_7088084.jpg new file mode 100644 index 0000000..05db732 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804453_51_7088084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b67a8177ab57c898b28094f016c1753b092c27d5590205729c04b48e811df0f6 +size 151104 diff --git a/datasets/检测仪/train/images/订单1804454_51_7088108.jpg b/datasets/检测仪/train/images/订单1804454_51_7088108.jpg new file mode 100644 index 0000000..d8d16b4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804454_51_7088108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08230251aeb84211f6d9211ec072fd22166bb4ed22f90baf66161ac3a617211a +size 381551 diff --git a/datasets/检测仪/train/images/订单1804457_51_7088069.jpg b/datasets/检测仪/train/images/订单1804457_51_7088069.jpg new file mode 100644 index 0000000..d11a83b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804457_51_7088069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c21da56042378772c408c92050bddb450622d6555677b36c6a14be03fb6b3b9 +size 142757 diff --git a/datasets/检测仪/train/images/订单1804459_51_7088172.jpg b/datasets/检测仪/train/images/订单1804459_51_7088172.jpg new file mode 100644 index 0000000..90d2f64 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804459_51_7088172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673d6f7705de195d4e9d2a8a824aaa5d3888270f4595d5ebd7fe8f8ed26a0376 +size 77991 diff --git a/datasets/检测仪/train/images/订单1804461_51_7088094.jpg b/datasets/检测仪/train/images/订单1804461_51_7088094.jpg new file mode 100644 index 0000000..aea1449 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804461_51_7088094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94f913d7de51ffc991e5eaf445484d0521143bd6fcaaac9ac8aeaa86263084e +size 555403 diff --git a/datasets/检测仪/train/images/订单1804464_51_7088099.jpg b/datasets/检测仪/train/images/订单1804464_51_7088099.jpg new file mode 100644 index 0000000..be6e5a9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804464_51_7088099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc73c88062b7742ba7f1f3bb2a518680f9e06f759a7a6ef6134544129f18f2d +size 531159 diff --git a/datasets/检测仪/train/images/订单1804472_51_7088173.jpg b/datasets/检测仪/train/images/订单1804472_51_7088173.jpg new file mode 100644 index 0000000..a3ae649 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804472_51_7088173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be622f6ccd8a90f51350738c6065330498f6bc8c3fbecca43b5cf5d88e0f8529 +size 167846 diff --git a/datasets/检测仪/train/images/订单1804476_51_7088212.jpg b/datasets/检测仪/train/images/订单1804476_51_7088212.jpg new file mode 100644 index 0000000..a3ac071 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804476_51_7088212.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2edd1a43c45091bb7c526e16c4e3fd56a8bca75f96512fc783ffa0c7dbbb6e +size 613496 diff --git a/datasets/检测仪/train/images/订单1804478_51_7088263.jpg b/datasets/检测仪/train/images/订单1804478_51_7088263.jpg new file mode 100644 index 0000000..56608a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804478_51_7088263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ecc79d465207568569e1a954beb57af936c2ee55cb82588c0ee5dd3b0a664e +size 249711 diff --git a/datasets/检测仪/train/images/订单1804479_51_7088257.jpg b/datasets/检测仪/train/images/订单1804479_51_7088257.jpg new file mode 100644 index 0000000..636eece --- /dev/null +++ b/datasets/检测仪/train/images/订单1804479_51_7088257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc59776703c8e568ec509b94b90171a0822ab01cb4ecf051b870e396ee30176 +size 139863 diff --git a/datasets/检测仪/train/images/订单1804482_51_7088322.jpg b/datasets/检测仪/train/images/订单1804482_51_7088322.jpg new file mode 100644 index 0000000..b8bf63f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804482_51_7088322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f8bfeb009dcedddc56bf89c4f9c498735d6681f187937ff528f35bd3b1aac6 +size 178587 diff --git a/datasets/检测仪/train/images/订单1804483_51_7088258.jpg b/datasets/检测仪/train/images/订单1804483_51_7088258.jpg new file mode 100644 index 0000000..4f801cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804483_51_7088258.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0a8cf713ecaa4f3eede2c1cea15f657be470da979921487e446f1301f32acb +size 180135 diff --git a/datasets/检测仪/train/images/订单1804488_51_7088355.jpg b/datasets/检测仪/train/images/订单1804488_51_7088355.jpg new file mode 100644 index 0000000..6e209ce --- /dev/null +++ b/datasets/检测仪/train/images/订单1804488_51_7088355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e4f5d1ba738e800c2b69d97828ce03c70507d0614fc57cf6979b0a89b3a1c5 +size 107997 diff --git a/datasets/检测仪/train/images/订单1804490_51_7088379.jpg b/datasets/检测仪/train/images/订单1804490_51_7088379.jpg new file mode 100644 index 0000000..c806a98 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804490_51_7088379.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e849c07808d2a7a115fdb7df5d4b08900f1050aad16233d109698390166f071 +size 98525 diff --git a/datasets/检测仪/train/images/订单1804493_51_7088410.jpg b/datasets/检测仪/train/images/订单1804493_51_7088410.jpg new file mode 100644 index 0000000..9bd3e3c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804493_51_7088410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6ff5077638fd975ca060e2d6802c4af86a6a624bed627b670255c19aea9651 +size 184602 diff --git a/datasets/检测仪/train/images/订单1804498_51_7088439.jpg b/datasets/检测仪/train/images/订单1804498_51_7088439.jpg new file mode 100644 index 0000000..9fc962e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804498_51_7088439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01a32293a6ab669b5568a810806a660302936882a20a4369ccfdafd289c6c0c +size 170302 diff --git a/datasets/检测仪/train/images/订单1804499_51_7088442.jpg b/datasets/检测仪/train/images/订单1804499_51_7088442.jpg new file mode 100644 index 0000000..c64f017 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804499_51_7088442.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad34431f52a9597247de30b512134335b6239d357189343521cfd02203483fa +size 149989 diff --git a/datasets/检测仪/train/images/订单1804501_51_7088459.jpg b/datasets/检测仪/train/images/订单1804501_51_7088459.jpg new file mode 100644 index 0000000..a734def --- /dev/null +++ b/datasets/检测仪/train/images/订单1804501_51_7088459.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80dd43d9df47d52b7a5b1ca441d8c050c73b5e4f18a7f9f39cee0feaacb252c8 +size 192301 diff --git a/datasets/检测仪/train/images/订单1804502_51_7088437.jpg b/datasets/检测仪/train/images/订单1804502_51_7088437.jpg new file mode 100644 index 0000000..c9666ba --- /dev/null +++ b/datasets/检测仪/train/images/订单1804502_51_7088437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca252c4d854e9906e6e4bc35d9ef9b02d7ebd56103ae0c11e64d9b0d3bcda29 +size 457786 diff --git a/datasets/检测仪/train/images/订单1804503_51_7088486.jpg b/datasets/检测仪/train/images/订单1804503_51_7088486.jpg new file mode 100644 index 0000000..b08ab54 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804503_51_7088486.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc337516e570e6795ae6cfc9f3988f7bd8e560d96e2443f5e43f9cf8493a6f4 +size 140327 diff --git a/datasets/检测仪/train/images/订单1804505_51_7088542.jpg b/datasets/检测仪/train/images/订单1804505_51_7088542.jpg new file mode 100644 index 0000000..37eff9e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804505_51_7088542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3716d4a409d44ffe7df74cec7e10ae6afdc83e12110bcd5eba752dace2beeb8 +size 529754 diff --git a/datasets/检测仪/train/images/订单1804511_51_7088582.jpg b/datasets/检测仪/train/images/订单1804511_51_7088582.jpg new file mode 100644 index 0000000..b286701 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804511_51_7088582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7abf52b262a868cdc258f945476b25e6f37dcce2543bd9a6f8c14210d5cf6a3f +size 513511 diff --git a/datasets/检测仪/train/images/订单1804514_51_7088639.jpg b/datasets/检测仪/train/images/订单1804514_51_7088639.jpg new file mode 100644 index 0000000..78c2a2c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804514_51_7088639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce35eefe04aa8921537a7be9239539ea09946cad5f3adf5dfaa2e1babf2f29f +size 150596 diff --git a/datasets/检测仪/train/images/订单1804518_51_7088626.jpg b/datasets/检测仪/train/images/订单1804518_51_7088626.jpg new file mode 100644 index 0000000..abb8ce0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804518_51_7088626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ade2c956f62729958a694995e2036b7285ee011470f6c5ec1ada7bff569d65 +size 122616 diff --git a/datasets/检测仪/train/images/订单1804524_51_7088703.jpg b/datasets/检测仪/train/images/订单1804524_51_7088703.jpg new file mode 100644 index 0000000..d2bac62 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804524_51_7088703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3033a8ad793b2d30be4f1deec15ca5d38223ff63a7f7c58c85446c2e2dcee4 +size 103894 diff --git a/datasets/检测仪/train/images/订单1804530_51_7088813.jpg b/datasets/检测仪/train/images/订单1804530_51_7088813.jpg new file mode 100644 index 0000000..e2e16f5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804530_51_7088813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defab64c0119c4ce2e736ac340fd839e96e725a8e9a620bfac18d98c1bbd099d +size 143432 diff --git a/datasets/检测仪/train/images/订单1804531_51_7088738.jpg b/datasets/检测仪/train/images/订单1804531_51_7088738.jpg new file mode 100644 index 0000000..99d453b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804531_51_7088738.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f758521ad95d50dbc3ed8e12b0caaa72133a2225d6c561bc2a4f107e3b3c63 +size 622652 diff --git a/datasets/检测仪/train/images/订单1804535_51_7088774.jpg b/datasets/检测仪/train/images/订单1804535_51_7088774.jpg new file mode 100644 index 0000000..0330d85 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804535_51_7088774.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6c27f0f6d0a42314d624d945a5c3f4baac7d17e885d8c6998a2788435968e2 +size 731547 diff --git a/datasets/检测仪/train/images/订单1804550_51_7088974.jpg b/datasets/检测仪/train/images/订单1804550_51_7088974.jpg new file mode 100644 index 0000000..c77e064 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804550_51_7088974.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a652368f86d0935c6c7477158e6206d3a328ba76ed846372dddf6a3768caff +size 143526 diff --git a/datasets/检测仪/train/images/订单1804551_51_7089002.jpg b/datasets/检测仪/train/images/订单1804551_51_7089002.jpg new file mode 100644 index 0000000..4c94ebc --- /dev/null +++ b/datasets/检测仪/train/images/订单1804551_51_7089002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f787e7c2ca7125210f3b6eb169b1b0d55e4dc6fcb7a496e37c0a8edce493e6 +size 145867 diff --git a/datasets/检测仪/train/images/订单1804555_51_7089012.jpg b/datasets/检测仪/train/images/订单1804555_51_7089012.jpg new file mode 100644 index 0000000..6f10d33 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804555_51_7089012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37053f471b9b0d7de744a44f7d0f236eb4b8db84732b53c4a29e846e685e3a6a +size 360327 diff --git a/datasets/检测仪/train/images/订单1804557_51_7089166.jpg b/datasets/检测仪/train/images/订单1804557_51_7089166.jpg new file mode 100644 index 0000000..ce7ce3d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804557_51_7089166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98f2a3f413711c7a3c227cafaf803e49f8afdad5f4e78c509d5f2ae4cf8e5bb +size 69867 diff --git a/datasets/检测仪/train/images/订单1804560_51_7089070.jpg b/datasets/检测仪/train/images/订单1804560_51_7089070.jpg new file mode 100644 index 0000000..6c800e1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804560_51_7089070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc8e428e93a588b8a7d79a77b7b30cbd1a70d017108dcfdcccd4e37311cef64 +size 266531 diff --git a/datasets/检测仪/train/images/订单1804561_51_7089220.jpg b/datasets/检测仪/train/images/订单1804561_51_7089220.jpg new file mode 100644 index 0000000..adbce8b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804561_51_7089220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8905e1d0c950ad797a34536c7c0db43f1c38990993fb0efa4c95130b6a92f442 +size 116241 diff --git a/datasets/检测仪/train/images/订单1804562_51_7089072.jpg b/datasets/检测仪/train/images/订单1804562_51_7089072.jpg new file mode 100644 index 0000000..ff9d5bc --- /dev/null +++ b/datasets/检测仪/train/images/订单1804562_51_7089072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e72bc89c8548d920d2f2b1e1f1ebf637275e39625a05f58ddf4c65aace9a74 +size 108875 diff --git a/datasets/检测仪/train/images/订单1804563_51_7089110.jpg b/datasets/检测仪/train/images/订单1804563_51_7089110.jpg new file mode 100644 index 0000000..dc7e92c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804563_51_7089110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef73e145e59781c15cec5c41d9976c9e6deb7dfabfd4525e043f63e107986efa +size 99785 diff --git a/datasets/检测仪/train/images/订单1804569_51_7089151.jpg b/datasets/检测仪/train/images/订单1804569_51_7089151.jpg new file mode 100644 index 0000000..760c36f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804569_51_7089151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59895f527071555d3bf0189808b14e4983614f6b07d22578b73d0e5291653b7 +size 390746 diff --git a/datasets/检测仪/train/images/订单1804575_51_7089147.jpg b/datasets/检测仪/train/images/订单1804575_51_7089147.jpg new file mode 100644 index 0000000..ba0a158 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804575_51_7089147.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5552d34768c1011b03461ff7c2dbb631959b2984c6a2fd60728e728e3364a542 +size 128999 diff --git a/datasets/检测仪/train/images/订单1804579_51_7089175.jpg b/datasets/检测仪/train/images/订单1804579_51_7089175.jpg new file mode 100644 index 0000000..3901f6a --- /dev/null +++ b/datasets/检测仪/train/images/订单1804579_51_7089175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106fcee51cd03128d7e5417084f4526a9fd8971495537b0e2a5abc4fc00b6f54 +size 129028 diff --git a/datasets/检测仪/train/images/订单1804580_51_7089188.jpg b/datasets/检测仪/train/images/订单1804580_51_7089188.jpg new file mode 100644 index 0000000..622b4af --- /dev/null +++ b/datasets/检测仪/train/images/订单1804580_51_7089188.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898ad354cef5b74a539cd0edb710974b1f9b52906540304187294b3d25ce09f0 +size 91967 diff --git a/datasets/检测仪/train/images/订单1804581_51_7089274.jpg b/datasets/检测仪/train/images/订单1804581_51_7089274.jpg new file mode 100644 index 0000000..a7c57b2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804581_51_7089274.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43ccb1da69dde32fa3b97dd65d24bfb2b7fcf75433124459a71137a4e4da78d +size 132964 diff --git a/datasets/检测仪/train/images/订单1804582_51_7089239.jpg b/datasets/检测仪/train/images/订单1804582_51_7089239.jpg new file mode 100644 index 0000000..f94b992 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804582_51_7089239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:590dbfc1fdc1480ac6446e9e0f765abf1ef852c83eda0646aeb4012169e22261 +size 128403 diff --git a/datasets/检测仪/train/images/订单1804587_51_7089255.jpg b/datasets/检测仪/train/images/订单1804587_51_7089255.jpg new file mode 100644 index 0000000..d6290ff --- /dev/null +++ b/datasets/检测仪/train/images/订单1804587_51_7089255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7dca9195c41b40ed6edef533e2944547edc57dcdfe6f8b5fc933d55e83daba +size 133860 diff --git a/datasets/检测仪/train/images/订单1804591_51_7089286.jpg b/datasets/检测仪/train/images/订单1804591_51_7089286.jpg new file mode 100644 index 0000000..65372db --- /dev/null +++ b/datasets/检测仪/train/images/订单1804591_51_7089286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43aa90b5988eabe2a2b83748d9319b1456860cc4fda6d949d6e456454c9d9ff +size 108822 diff --git a/datasets/检测仪/train/images/订单1804592_51_7089399.jpg b/datasets/检测仪/train/images/订单1804592_51_7089399.jpg new file mode 100644 index 0000000..e328ef6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804592_51_7089399.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d111a25257ac6e950db6364aff2b4c789db4aba96eed96756f4f47dd2e93bf +size 492001 diff --git a/datasets/检测仪/train/images/订单1804594_51_7089457.jpg b/datasets/检测仪/train/images/订单1804594_51_7089457.jpg new file mode 100644 index 0000000..4ab4e3d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804594_51_7089457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fd9e9dd9fdb7e01b9dc6976b735ec631fbb809065c01e6561dd2a497299031 +size 79622 diff --git a/datasets/检测仪/train/images/订单1804597_51_7089311.jpg b/datasets/检测仪/train/images/订单1804597_51_7089311.jpg new file mode 100644 index 0000000..1a22db8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804597_51_7089311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e77cafae9b3ce86e8525eb5749e2d4f3087e3ec8d6adf3d1accf935b266151 +size 118366 diff --git a/datasets/检测仪/train/images/订单1804599_51_7089418.jpg b/datasets/检测仪/train/images/订单1804599_51_7089418.jpg new file mode 100644 index 0000000..827bb0c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804599_51_7089418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479b429e5132a954becd76bab841375f3f593c110cb047e9b0b5bae7728390c4 +size 202955 diff --git a/datasets/检测仪/train/images/订单1804602_51_7089445.jpg b/datasets/检测仪/train/images/订单1804602_51_7089445.jpg new file mode 100644 index 0000000..ac0a216 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804602_51_7089445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1efcfa17413ff51ed461454fe6d688a5409162caac2784a57123adf2b68cf8 +size 190236 diff --git a/datasets/检测仪/train/images/订单1804603_51_7089476.jpg b/datasets/检测仪/train/images/订单1804603_51_7089476.jpg new file mode 100644 index 0000000..be03889 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804603_51_7089476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0b83a364e381d35f7dd3040533e3dd51dc41ba7b51de470610c8fdb13f1a7c +size 161615 diff --git a/datasets/检测仪/train/images/订单1804605_51_7089436.jpg b/datasets/检测仪/train/images/订单1804605_51_7089436.jpg new file mode 100644 index 0000000..9629368 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804605_51_7089436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842d88c502361b91e936a559bea7c4e6e22f87d97871d94b9a035e51d677ec28 +size 57763 diff --git a/datasets/检测仪/train/images/订单1804606_51_7089503.jpg b/datasets/检测仪/train/images/订单1804606_51_7089503.jpg new file mode 100644 index 0000000..838551d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804606_51_7089503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146cdb97cc7d966c3dc0158b3666256eb084184c7012b202b1f33002b60e90d8 +size 100239 diff --git a/datasets/检测仪/train/images/订单1804609_51_7089521.jpg b/datasets/检测仪/train/images/订单1804609_51_7089521.jpg new file mode 100644 index 0000000..d8085ab --- /dev/null +++ b/datasets/检测仪/train/images/订单1804609_51_7089521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374c49d7896d1dc67d9d7c5fbb501d4b5bbb084c816a125eca5cd3058bee4f1d +size 101943 diff --git a/datasets/检测仪/train/images/订单1804614_51_7089550.jpg b/datasets/检测仪/train/images/订单1804614_51_7089550.jpg new file mode 100644 index 0000000..0789ab6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804614_51_7089550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f28c0d721ec2aa3994a8a6a188f0ec21518e474b96d57e33f1e40905770942 +size 424132 diff --git a/datasets/检测仪/train/images/订单1804615_51_7089639.jpg b/datasets/检测仪/train/images/订单1804615_51_7089639.jpg new file mode 100644 index 0000000..b43cb1c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804615_51_7089639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713b255449ab7f2cae1282add12d195302a54d07e7f98f478e75cee50af0900c +size 151521 diff --git a/datasets/检测仪/train/images/订单1804618_51_7089565.jpg b/datasets/检测仪/train/images/订单1804618_51_7089565.jpg new file mode 100644 index 0000000..552f3c9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804618_51_7089565.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03b36933a1e54ac4e3a7e307786e29d7b93ae81f9308ae06a85521094cf25fe +size 288394 diff --git a/datasets/检测仪/train/images/订单1804619_51_7089625.jpg b/datasets/检测仪/train/images/订单1804619_51_7089625.jpg new file mode 100644 index 0000000..051a6c2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804619_51_7089625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b474c99374a0a0b57158db285ab9cd8e37cc6f25dabc30e4a0264961eb64e1 +size 123138 diff --git a/datasets/检测仪/train/images/订单1804621_51_7089599.jpg b/datasets/检测仪/train/images/订单1804621_51_7089599.jpg new file mode 100644 index 0000000..a16a609 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804621_51_7089599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439add445616b546f1aea4a111b747bb84c0b9018499b274ac56cf560a5a4bea +size 277588 diff --git a/datasets/检测仪/train/images/订单1804624_51_7089678.jpg b/datasets/检测仪/train/images/订单1804624_51_7089678.jpg new file mode 100644 index 0000000..9b99e81 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804624_51_7089678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e13b4dc0ac31ed976549ae8f970804dd70beb5bca849c1f18d8b43c16977f10e +size 418184 diff --git a/datasets/检测仪/train/images/订单1804626_51_7089677.jpg b/datasets/检测仪/train/images/订单1804626_51_7089677.jpg new file mode 100644 index 0000000..a5677cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804626_51_7089677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d341094784c3b2689aeb7e06ccfe8d7185bb7da3d7661130d958625cc8dad7 +size 142208 diff --git a/datasets/检测仪/train/images/订单1804627_51_7089664.jpg b/datasets/检测仪/train/images/订单1804627_51_7089664.jpg new file mode 100644 index 0000000..d365636 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804627_51_7089664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d00278be10e6aea4ff977e6a70618db0c3e74e4d44be17493eef397d72ca1fe +size 220052 diff --git a/datasets/检测仪/train/images/订单1804628_51_7089702.jpg b/datasets/检测仪/train/images/订单1804628_51_7089702.jpg new file mode 100644 index 0000000..dc361ad --- /dev/null +++ b/datasets/检测仪/train/images/订单1804628_51_7089702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1b2c37a3b5d82df97730b4896a876c9f0b021f5519ca8f3bfc3eef5c10e1b2 +size 311837 diff --git a/datasets/检测仪/train/images/订单1804630_51_7089728.jpg b/datasets/检测仪/train/images/订单1804630_51_7089728.jpg new file mode 100644 index 0000000..d234f5c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804630_51_7089728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7eefe2ff8854e96b03c4f51644b890cfad0cd094ed8364bb242fa9b3d123f1 +size 106184 diff --git a/datasets/检测仪/train/images/订单1804633_51_7089761.jpg b/datasets/检测仪/train/images/订单1804633_51_7089761.jpg new file mode 100644 index 0000000..469e919 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804633_51_7089761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552a10d7e9eda89270a26735dbd88ec2f3c60a2e4335c953c8c814268e17de83 +size 327914 diff --git a/datasets/检测仪/train/images/订单1804634_51_7089741.jpg b/datasets/检测仪/train/images/订单1804634_51_7089741.jpg new file mode 100644 index 0000000..63b1664 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804634_51_7089741.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4fd6d5c803ae1c75b6889d6a15b5eb4a65657acb86a9b3eb1760c23172b9e80 +size 150091 diff --git a/datasets/检测仪/train/images/订单1804637_51_7089801.jpg b/datasets/检测仪/train/images/订单1804637_51_7089801.jpg new file mode 100644 index 0000000..74086a6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804637_51_7089801.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033b7312a7e6f349851dd3ef3d8f9a3ac1b516d9251e70a43566e8ad69a39249 +size 103927 diff --git a/datasets/检测仪/train/images/订单1804639_51_7089802.jpg b/datasets/检测仪/train/images/订单1804639_51_7089802.jpg new file mode 100644 index 0000000..37ed2cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804639_51_7089802.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730967fcf03b06d324c9e0698acb100c5055062914a7fb0867ecd6d41d2af2d4 +size 172369 diff --git a/datasets/检测仪/train/images/订单1804641_51_7089779.jpg b/datasets/检测仪/train/images/订单1804641_51_7089779.jpg new file mode 100644 index 0000000..cf5bc1b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804641_51_7089779.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d6982d3f5ab1c73997c2f266a83bd51b03a51c88d508d950fe07716a0dae87 +size 141611 diff --git a/datasets/检测仪/train/images/订单1804642_51_7089840.jpg b/datasets/检测仪/train/images/订单1804642_51_7089840.jpg new file mode 100644 index 0000000..c4fc3b8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804642_51_7089840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fed21697aae833cdb8b4fc37f0262934618de60891b1d92b662b785571ba809 +size 116261 diff --git a/datasets/检测仪/train/images/订单1804643_51_7089873.jpg b/datasets/检测仪/train/images/订单1804643_51_7089873.jpg new file mode 100644 index 0000000..e9b6da8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804643_51_7089873.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87bff57e67eb69456977dce74dee051ae7d8142f84466966bf8f6a61bd7fe3f +size 319954 diff --git a/datasets/检测仪/train/images/订单1804644_51_7089870.jpg b/datasets/检测仪/train/images/订单1804644_51_7089870.jpg new file mode 100644 index 0000000..43eda5e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804644_51_7089870.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4515cf17d77053f3ad31c213fd88ec4b8e60c44f4f8d327fe6d628e50e085f8 +size 281242 diff --git a/datasets/检测仪/train/images/订单1804647_51_7089885.jpg b/datasets/检测仪/train/images/订单1804647_51_7089885.jpg new file mode 100644 index 0000000..e3e4582 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804647_51_7089885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6576a851ebaf5850ba2bbefd6b74e60c84fd72fd9ba30c4e7d34102840f7bd15 +size 98451 diff --git a/datasets/检测仪/train/images/订单1804649_51_7089905.jpg b/datasets/检测仪/train/images/订单1804649_51_7089905.jpg new file mode 100644 index 0000000..0903aef --- /dev/null +++ b/datasets/检测仪/train/images/订单1804649_51_7089905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8edc55f8766c782d3131ed88a138909a31da3b3fc2f08b882c3a301b266d5ddf +size 123956 diff --git a/datasets/检测仪/train/images/订单1804656_51_7089968.jpg b/datasets/检测仪/train/images/订单1804656_51_7089968.jpg new file mode 100644 index 0000000..96c44f3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804656_51_7089968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee653ffba436e202f9911b56859099f3ae04af54652530de7f61be07d7f81d3 +size 102984 diff --git a/datasets/检测仪/train/images/订单1804658_51_7089999.jpg b/datasets/检测仪/train/images/订单1804658_51_7089999.jpg new file mode 100644 index 0000000..4b689b9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804658_51_7089999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3eddd225d0036af7e1902a53812ad5c18e1af93b8264b27012de821b57529d9 +size 251395 diff --git a/datasets/检测仪/train/images/订单1804659_51_7090013.jpg b/datasets/检测仪/train/images/订单1804659_51_7090013.jpg new file mode 100644 index 0000000..a5b9983 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804659_51_7090013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3315d1a7122b347139e7a02f7b7b694b43eba89bfcedcd19046f4f28becbf76 +size 134942 diff --git a/datasets/检测仪/train/images/订单1804662_51_7090009.jpg b/datasets/检测仪/train/images/订单1804662_51_7090009.jpg new file mode 100644 index 0000000..157d0d8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804662_51_7090009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5c1d7ec1d2f8aaa1c0729a9c7b69388efa01c2d76174201ca61012ecdca43d +size 323739 diff --git a/datasets/检测仪/train/images/订单1804663_51_7090040.jpg b/datasets/检测仪/train/images/订单1804663_51_7090040.jpg new file mode 100644 index 0000000..51f1aff --- /dev/null +++ b/datasets/检测仪/train/images/订单1804663_51_7090040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7ccbda7958d06ac94110d2c83008e80e6df7ce1b93f69730c8f63b063522d4 +size 139235 diff --git a/datasets/检测仪/train/images/订单1804667_51_7090070.jpg b/datasets/检测仪/train/images/订单1804667_51_7090070.jpg new file mode 100644 index 0000000..9399b98 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804667_51_7090070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fe41c2e7a64116a986e3bc9cd9c45449b5dc5babd182f8262ee442668f04ee +size 154000 diff --git a/datasets/检测仪/train/images/订单1804670_51_7090089.jpg b/datasets/检测仪/train/images/订单1804670_51_7090089.jpg new file mode 100644 index 0000000..7923c49 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804670_51_7090089.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f4ff47d88c1025acb4a90962ceeaa5fb88357d6478030fa863fc07c7d6d25f +size 204672 diff --git a/datasets/检测仪/train/images/订单1804671_51_7090111.jpg b/datasets/检测仪/train/images/订单1804671_51_7090111.jpg new file mode 100644 index 0000000..eac7435 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804671_51_7090111.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ddd77c3af39251be3604cb3b9dfe6dca596a8be7db63f10bbecb05a423ce06 +size 150921 diff --git a/datasets/检测仪/train/images/订单1804674_51_7090117.jpg b/datasets/检测仪/train/images/订单1804674_51_7090117.jpg new file mode 100644 index 0000000..9709ed5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804674_51_7090117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac65a6f92b24fb66018882c7f54411cfadb490875fcf30dcb1a9a5403591761 +size 156728 diff --git a/datasets/检测仪/train/images/订单1804679_51_7090211.jpg b/datasets/检测仪/train/images/订单1804679_51_7090211.jpg new file mode 100644 index 0000000..ff8ada0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804679_51_7090211.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83e4c0b265741215b1f86eff22d81cf57a529b05278e252b23597415473c0ec +size 561154 diff --git a/datasets/检测仪/train/images/订单1804681_51_7090184.jpg b/datasets/检测仪/train/images/订单1804681_51_7090184.jpg new file mode 100644 index 0000000..4cd72c4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804681_51_7090184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c91cd586128e004e5594adceeacc540f5c29b1a8d4711925c3724c79ca8fca7 +size 144950 diff --git a/datasets/检测仪/train/images/订单1804682_51_7090261.jpg b/datasets/检测仪/train/images/订单1804682_51_7090261.jpg new file mode 100644 index 0000000..75356e6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804682_51_7090261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0555ac2b42539715a54c605428a4ca5bc865c977271e3c9e75a01520d1027384 +size 283844 diff --git a/datasets/检测仪/train/images/订单1804685_51_7090183.jpg b/datasets/检测仪/train/images/订单1804685_51_7090183.jpg new file mode 100644 index 0000000..40927c5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804685_51_7090183.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2665f047d26529d8d2b521275d4d2371e5d330b859336f5c95a1be855ec1f3bb +size 353833 diff --git a/datasets/检测仪/train/images/订单1804688_51_7090263.jpg b/datasets/检测仪/train/images/订单1804688_51_7090263.jpg new file mode 100644 index 0000000..e66c2e2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804688_51_7090263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154ad4f3657f3c31250b3e102fa8ac81496dbb57ba2b60e1f641e27c0049d362 +size 101800 diff --git a/datasets/检测仪/train/images/订单1804689_51_7090279.jpg b/datasets/检测仪/train/images/订单1804689_51_7090279.jpg new file mode 100644 index 0000000..f3ffce0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804689_51_7090279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a204091183e20c44a538f0ef5f6603f729d544c7a450049d3227c6dc7c93344 +size 119167 diff --git a/datasets/检测仪/train/images/订单1804693_51_7090342.jpg b/datasets/检测仪/train/images/订单1804693_51_7090342.jpg new file mode 100644 index 0000000..3aac97f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804693_51_7090342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf3316a12d955e587ae7324a62ef083567e9a8f24dd838b703dbaf99067c6ce +size 149017 diff --git a/datasets/检测仪/train/images/订单1804698_51_7090384.jpg b/datasets/检测仪/train/images/订单1804698_51_7090384.jpg new file mode 100644 index 0000000..5b27fd3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804698_51_7090384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149045722c9bb13be861f4fbd6c993c0ffcc2e673c4b7f63432fe8c21308d3e2 +size 162182 diff --git a/datasets/检测仪/train/images/订单1804699_51_7090378.jpg b/datasets/检测仪/train/images/订单1804699_51_7090378.jpg new file mode 100644 index 0000000..2ab3cc0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804699_51_7090378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493b6ba5b3030939a66cd07cb436f934f1a3914c29bb04f2e6f3158a71ba8f94 +size 104276 diff --git a/datasets/检测仪/train/images/订单1804707_51_7090505.jpg b/datasets/检测仪/train/images/订单1804707_51_7090505.jpg new file mode 100644 index 0000000..1ea0ba2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804707_51_7090505.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ef1b3bf4e56bddb6c7dc591ea44d96e04a62550e70ba0790e8b76cd889f469 +size 138248 diff --git a/datasets/检测仪/train/images/订单1804714_51_7090604.jpg b/datasets/检测仪/train/images/订单1804714_51_7090604.jpg new file mode 100644 index 0000000..7d1bf5d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804714_51_7090604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c20f982cfd83b28c8dd9e4dc07bf314778d0ef37c86cd8eb838f55bab7d9d45 +size 124409 diff --git a/datasets/检测仪/train/images/订单1804715_51_7090559.jpg b/datasets/检测仪/train/images/订单1804715_51_7090559.jpg new file mode 100644 index 0000000..def5e5b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804715_51_7090559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495df2e9aa4a1f7cd5ed49b3358091de878386a29d278c7e7bbfb2c8f1538437 +size 121123 diff --git a/datasets/检测仪/train/images/订单1804718_51_7090592.jpg b/datasets/检测仪/train/images/订单1804718_51_7090592.jpg new file mode 100644 index 0000000..8cc7cb2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804718_51_7090592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732d0669bd0ef3121f755fe81450e984c955826cacdd022a5efbfe72f48e3a6f +size 100926 diff --git a/datasets/检测仪/train/images/订单1804719_51_7090570.jpg b/datasets/检测仪/train/images/订单1804719_51_7090570.jpg new file mode 100644 index 0000000..d473b63 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804719_51_7090570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9bc9d4f7bde4b33cd4d5244c51bd9b1a1221f36ee1cf507323333f803e2993 +size 184818 diff --git a/datasets/检测仪/train/images/订单1804722_51_7090589.jpg b/datasets/检测仪/train/images/订单1804722_51_7090589.jpg new file mode 100644 index 0000000..f567812 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804722_51_7090589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28da7896318c40370d06bc2f82bf03250234e9abbd77f01833220f120f131cf +size 105483 diff --git a/datasets/检测仪/train/images/订单1804724_51_7090636.jpg b/datasets/检测仪/train/images/订单1804724_51_7090636.jpg new file mode 100644 index 0000000..64d713b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804724_51_7090636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca63d9af56fe54dd996bc5000bfdfaad474be70fa1c8c34d8277a5ed99fa663 +size 66283 diff --git a/datasets/检测仪/train/images/订单1804725_51_7090618.jpg b/datasets/检测仪/train/images/订单1804725_51_7090618.jpg new file mode 100644 index 0000000..c6dcbd2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804725_51_7090618.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e014df35ccd6bdd650ee2d2251d3c702a56a29dd1d2f3e8244c26482d704444a +size 195306 diff --git a/datasets/检测仪/train/images/订单1804726_51_7090650.jpg b/datasets/检测仪/train/images/订单1804726_51_7090650.jpg new file mode 100644 index 0000000..47d3c43 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804726_51_7090650.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4587fa2ede2a4d14a048a10b7adf283d00a4626de6a1a78977ae5d6c97b25fe9 +size 619788 diff --git a/datasets/检测仪/train/images/订单1804727_51_7090681.jpg b/datasets/检测仪/train/images/订单1804727_51_7090681.jpg new file mode 100644 index 0000000..27d7598 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804727_51_7090681.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da07a760cee34d272e7592b0c25578c3f88c729d9afb94f9a2798b34f0c81fa3 +size 439051 diff --git a/datasets/检测仪/train/images/订单1804728_51_7090702.jpg b/datasets/检测仪/train/images/订单1804728_51_7090702.jpg new file mode 100644 index 0000000..e5fa967 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804728_51_7090702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c5e16a8eca2313f32893218f818399587b6f64ba1384d01939d18086107db2 +size 134192 diff --git a/datasets/检测仪/train/images/订单1804732_51_7090659.jpg b/datasets/检测仪/train/images/订单1804732_51_7090659.jpg new file mode 100644 index 0000000..ffb3ccb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804732_51_7090659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6b2a332cce0b7baaea11d854801d0e46d6b2c3fac0b826125e614977899358 +size 80483 diff --git a/datasets/检测仪/train/images/订单1804733_51_7090667.jpg b/datasets/检测仪/train/images/订单1804733_51_7090667.jpg new file mode 100644 index 0000000..753a132 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804733_51_7090667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94eba666f2b36270c4fe2441cd877f9e28e0c9588d553ecf9a0d4490c28c0826 +size 186436 diff --git a/datasets/检测仪/train/images/订单1804734_51_7090704.jpg b/datasets/检测仪/train/images/订单1804734_51_7090704.jpg new file mode 100644 index 0000000..85e0b54 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804734_51_7090704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc8c6076c491bb2a73acdaa19b61a5d19f5886a34256ad0a585c1131a35b9d0 +size 162313 diff --git a/datasets/检测仪/train/images/订单1804738_51_7090706.jpg b/datasets/检测仪/train/images/订单1804738_51_7090706.jpg new file mode 100644 index 0000000..3998ba9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804738_51_7090706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c336ebde98c5562ec1bfac1a4cbe79c5c59f8fa769534a87bdd68a87b3304f +size 466236 diff --git a/datasets/检测仪/train/images/订单1804742_51_7090743.jpg b/datasets/检测仪/train/images/订单1804742_51_7090743.jpg new file mode 100644 index 0000000..725af13 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804742_51_7090743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736837d6283d9df2a0da6227127501a4791714e7cf34b42cca133cd3e7d2fe64 +size 272881 diff --git a/datasets/检测仪/train/images/订单1804744_51_7090714.jpg b/datasets/检测仪/train/images/订单1804744_51_7090714.jpg new file mode 100644 index 0000000..62951cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804744_51_7090714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6330baf35349014e194ba81d0d8022ea1b2547e7e6cbc12e61418360f04cc89 +size 163420 diff --git a/datasets/检测仪/train/images/订单1804753_51_7090812.jpg b/datasets/检测仪/train/images/订单1804753_51_7090812.jpg new file mode 100644 index 0000000..b336809 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804753_51_7090812.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095a14b53ad5cbffad9eb5d6a8692fed112cfe00d6dacbf06b929ffcf65da826 +size 135122 diff --git a/datasets/检测仪/train/images/订单1804754_51_7091015.jpg b/datasets/检测仪/train/images/订单1804754_51_7091015.jpg new file mode 100644 index 0000000..10efde5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804754_51_7091015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4af263bf6e3445c33a3a1bae3bb6bbb044cbbc798ef6a722746e03f0d9dca30 +size 144758 diff --git a/datasets/检测仪/train/images/订单1804755_51_7090767.jpg b/datasets/检测仪/train/images/订单1804755_51_7090767.jpg new file mode 100644 index 0000000..d274fd9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804755_51_7090767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41749f5636d959857fb975102920ee949a26cecedb8af8b0df14f9cb059165f5 +size 121882 diff --git a/datasets/检测仪/train/images/订单1804761_51_7090865.jpg b/datasets/检测仪/train/images/订单1804761_51_7090865.jpg new file mode 100644 index 0000000..5b306b2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804761_51_7090865.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a3059620d17dfbb1b4347b4cb3de26673ca8cee6787e59bf7e7b2661c5b527 +size 103562 diff --git a/datasets/检测仪/train/images/订单1804762_51_7090883.jpg b/datasets/检测仪/train/images/订单1804762_51_7090883.jpg new file mode 100644 index 0000000..3d2ff01 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804762_51_7090883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf3d47e5f84e5a5b18303d0a3ff0527f01a056f1e0b4ff4656b61f9a7b0726c +size 207834 diff --git a/datasets/检测仪/train/images/订单1804772_51_7090925.jpg b/datasets/检测仪/train/images/订单1804772_51_7090925.jpg new file mode 100644 index 0000000..7751b8b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804772_51_7090925.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5a2a1eb0b155dc973efb48f8528d937c89ccc7d98bac444623491d669e4d8a +size 134944 diff --git a/datasets/检测仪/train/images/订单1804773_51_7090989.jpg b/datasets/检测仪/train/images/订单1804773_51_7090989.jpg new file mode 100644 index 0000000..f692c7d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804773_51_7090989.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509faa1aca9b3cbe544a55679a54dd7f341a97853587d5ff4468c77d78faff6d +size 214546 diff --git a/datasets/检测仪/train/images/订单1804774_51_7090999.jpg b/datasets/检测仪/train/images/订单1804774_51_7090999.jpg new file mode 100644 index 0000000..389214d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804774_51_7090999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9eebec7447f3051fb0948da0229b2438bede52cc1564ca715211589825bb554 +size 182128 diff --git a/datasets/检测仪/train/images/订单1804776_51_7090992.jpg b/datasets/检测仪/train/images/订单1804776_51_7090992.jpg new file mode 100644 index 0000000..5a388c9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804776_51_7090992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872e5b38195c95845d7b5413153189cb59d8886ea63fe706b8e605e521312336 +size 120612 diff --git a/datasets/检测仪/train/images/订单1804781_51_7091093.jpg b/datasets/检测仪/train/images/订单1804781_51_7091093.jpg new file mode 100644 index 0000000..0e06993 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804781_51_7091093.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d246c07d23438221923f98c321aed9e5ecf6342a5421ac2535825a60c48754b7 +size 363489 diff --git a/datasets/检测仪/train/images/订单1804783_51_7091094.jpg b/datasets/检测仪/train/images/订单1804783_51_7091094.jpg new file mode 100644 index 0000000..4025fc9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804783_51_7091094.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d63dccfb4ec1c9a37042919e2318103a9fcbb2bae708061aab2d4376599634 +size 500411 diff --git a/datasets/检测仪/train/images/订单1804784_51_7091054.jpg b/datasets/检测仪/train/images/订单1804784_51_7091054.jpg new file mode 100644 index 0000000..ba1301c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804784_51_7091054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98eb82de1c527994efd0fac7ade26a42b0f98627e18bd9301cdb2c7c60b460bc +size 113890 diff --git a/datasets/检测仪/train/images/订单1804790_51_7091143.jpg b/datasets/检测仪/train/images/订单1804790_51_7091143.jpg new file mode 100644 index 0000000..3678103 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804790_51_7091143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225d391d95e440e1856c275fa3ca98fb09fc8c501d6bb4308934b42e1591c891 +size 583666 diff --git a/datasets/检测仪/train/images/订单1804796_51_7091284.jpg b/datasets/检测仪/train/images/订单1804796_51_7091284.jpg new file mode 100644 index 0000000..6de92cf --- /dev/null +++ b/datasets/检测仪/train/images/订单1804796_51_7091284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8df3ee44007fc7ae47e10eacb1589bf0a1e3f95d037bbf40c8e517bf86a96b +size 151571 diff --git a/datasets/检测仪/train/images/订单1804798_51_7091204.jpg b/datasets/检测仪/train/images/订单1804798_51_7091204.jpg new file mode 100644 index 0000000..305531c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804798_51_7091204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd9c98eed659819f7dba1b5abca54e036f3ddbea4cf457f1a09486ab06bd1b1 +size 114398 diff --git a/datasets/检测仪/train/images/订单1804800_51_7091223.jpg b/datasets/检测仪/train/images/订单1804800_51_7091223.jpg new file mode 100644 index 0000000..154130a --- /dev/null +++ b/datasets/检测仪/train/images/订单1804800_51_7091223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c890f5d5ebf57e816bae56772900066833b5b92722b61efbc0c45853232123d +size 282691 diff --git a/datasets/检测仪/train/images/订单1804806_51_7091308.jpg b/datasets/检测仪/train/images/订单1804806_51_7091308.jpg new file mode 100644 index 0000000..26fea80 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804806_51_7091308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ff503891fdfa715a8ab4df8818c2aa97a7c274b0ba8e49f0393c866686ff7a +size 595009 diff --git a/datasets/检测仪/train/images/订单1804809_51_7091338.jpg b/datasets/检测仪/train/images/订单1804809_51_7091338.jpg new file mode 100644 index 0000000..aea3f87 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804809_51_7091338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0155ea49d96ed8ed2b52f6a9761f4ebaf62ca21d4c80672e5b0c0853d9224a +size 462903 diff --git a/datasets/检测仪/train/images/订单1804810_51_7091421.jpg b/datasets/检测仪/train/images/订单1804810_51_7091421.jpg new file mode 100644 index 0000000..65fe4fd --- /dev/null +++ b/datasets/检测仪/train/images/订单1804810_51_7091421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6706dcd19f1f4480fdd530de88ede9f23ea9feef82f1ff5131adda14454cc781 +size 182348 diff --git a/datasets/检测仪/train/images/订单1804813_51_7091306.jpg b/datasets/检测仪/train/images/订单1804813_51_7091306.jpg new file mode 100644 index 0000000..652541f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804813_51_7091306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5b0f7de417853ddf9542768ad35f15c6f1a1d1e41b84ff06e7e4b481f326f0 +size 168374 diff --git a/datasets/检测仪/train/images/订单1804833_51_7091534.jpg b/datasets/检测仪/train/images/订单1804833_51_7091534.jpg new file mode 100644 index 0000000..f707014 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804833_51_7091534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d05805977a19f274b0460892982e27019ca5da58a9d8003198a18d5c3a03bf6 +size 92011 diff --git a/datasets/检测仪/train/images/订单1804834_51_7091574.jpg b/datasets/检测仪/train/images/订单1804834_51_7091574.jpg new file mode 100644 index 0000000..deac149 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804834_51_7091574.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c305a02802e47a4ebb2a78e764e46632e8a4d1bfc90a21273b62f6e3e539f59 +size 144443 diff --git a/datasets/检测仪/train/images/订单1804839_51_7091595.jpg b/datasets/检测仪/train/images/订单1804839_51_7091595.jpg new file mode 100644 index 0000000..dd09be2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804839_51_7091595.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f094d359aaf910713cdc86477a91018bfceb1f7c3277d9144b284111242b189e +size 119438 diff --git a/datasets/检测仪/train/images/订单1804842_51_7091694.jpg b/datasets/检测仪/train/images/订单1804842_51_7091694.jpg new file mode 100644 index 0000000..a021b3b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804842_51_7091694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172669b71d112c31772e00dd28b935be2267f9defa61ba535e3817a123157ef2 +size 531143 diff --git a/datasets/检测仪/train/images/订单1804851_51_7091684.jpg b/datasets/检测仪/train/images/订单1804851_51_7091684.jpg new file mode 100644 index 0000000..9c65547 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804851_51_7091684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44d4bb33520ddd94a7114080e10844e7a2d3d8cdddd2c0f6ce33d464a71d5d2 +size 189015 diff --git a/datasets/检测仪/train/images/订单1804854_51_7091823.jpg b/datasets/检测仪/train/images/订单1804854_51_7091823.jpg new file mode 100644 index 0000000..c61b279 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804854_51_7091823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8f0060f2a564ba62562ca4ccdd387e3329a4c799bac3988cc484533038c156 +size 119286 diff --git a/datasets/检测仪/train/images/订单1804857_51_7091770.jpg b/datasets/检测仪/train/images/订单1804857_51_7091770.jpg new file mode 100644 index 0000000..f426901 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804857_51_7091770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5427d8b7a6915aff847406baed72f2762f1e14ff9dcefda6cdd5508b59901c0 +size 95040 diff --git a/datasets/检测仪/train/images/订单1804859_51_7091788.jpg b/datasets/检测仪/train/images/订单1804859_51_7091788.jpg new file mode 100644 index 0000000..0b1ffc6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804859_51_7091788.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f9d4c1f1a2f1226b41b6ed6bea8f536c2a63e6d7e92837ec093b3bbd4d772c +size 77473 diff --git a/datasets/检测仪/train/images/订单1804861_51_7091878.jpg b/datasets/检测仪/train/images/订单1804861_51_7091878.jpg new file mode 100644 index 0000000..e3f4289 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804861_51_7091878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56fe4e2d12edd7dd41c24dea998c3841f5511038e36bfdf42bd1951df1feb307 +size 102249 diff --git a/datasets/检测仪/train/images/订单1804863_51_7091821.jpg b/datasets/检测仪/train/images/订单1804863_51_7091821.jpg new file mode 100644 index 0000000..3afd38b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804863_51_7091821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5005908dbf9d185276c07882bcd5e9089e63918368a1a16e20744442ef350a46 +size 569041 diff --git a/datasets/检测仪/train/images/订单1804865_51_7091816.jpg b/datasets/检测仪/train/images/订单1804865_51_7091816.jpg new file mode 100644 index 0000000..5ab6a7d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804865_51_7091816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf85e110aee808f21bd8d36a7f74db0251315447710ef88e0924a5cc2a3b4771 +size 121648 diff --git a/datasets/检测仪/train/images/订单1804866_51_7091876.jpg b/datasets/检测仪/train/images/订单1804866_51_7091876.jpg new file mode 100644 index 0000000..a91ba86 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804866_51_7091876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6d2fce712371f7e880bd3b08c67213536a0cdf9d137859ba242d88ce98ddc3 +size 220729 diff --git a/datasets/检测仪/train/images/订单1804871_51_7091895.jpg b/datasets/检测仪/train/images/订单1804871_51_7091895.jpg new file mode 100644 index 0000000..c7b8582 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804871_51_7091895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a4a3ee02051248bb8c89a837d2eb3083c3a906a00f4f7da17d37817a4eb0ce +size 312070 diff --git a/datasets/检测仪/train/images/订单1804872_51_7091862.jpg b/datasets/检测仪/train/images/订单1804872_51_7091862.jpg new file mode 100644 index 0000000..759892e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804872_51_7091862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098c5e26b5e78455def90e373ac9d354f54f89b4fcb7b20b4ca53a85b8198d9b +size 137934 diff --git a/datasets/检测仪/train/images/订单1804875_51_7091967.jpg b/datasets/检测仪/train/images/订单1804875_51_7091967.jpg new file mode 100644 index 0000000..67997fe --- /dev/null +++ b/datasets/检测仪/train/images/订单1804875_51_7091967.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2b035f005db624f3bdff082128e51802b287d0761db3c03ba7f81eef2ff884 +size 146496 diff --git a/datasets/检测仪/train/images/订单1804878_51_7091991.jpg b/datasets/检测仪/train/images/订单1804878_51_7091991.jpg new file mode 100644 index 0000000..6222109 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804878_51_7091991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc418db43ab5e1b14d202889a688b52743d83d3bd1851ffb952ca473054dd7ba +size 124057 diff --git a/datasets/检测仪/train/images/订单1804881_51_7092067.jpg b/datasets/检测仪/train/images/订单1804881_51_7092067.jpg new file mode 100644 index 0000000..1f85a66 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804881_51_7092067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c70830b7caf733d8ddc97c532755fbfa74a466e43c5e02aee8086ed19a0dded +size 96325 diff --git a/datasets/检测仪/train/images/订单1804886_51_7092034.jpg b/datasets/检测仪/train/images/订单1804886_51_7092034.jpg new file mode 100644 index 0000000..8741db3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804886_51_7092034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409c6f1e90d42c9010db30606bea5305274cd55f45d149edbf49cb6e82144a85 +size 97866 diff --git a/datasets/检测仪/train/images/订单1804887_51_7092036.jpg b/datasets/检测仪/train/images/订单1804887_51_7092036.jpg new file mode 100644 index 0000000..c5e01b7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804887_51_7092036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658152b53a1d1be660fea44e05720555089a1d2421f2584c68ac1c56a9f76ba2 +size 138175 diff --git a/datasets/检测仪/train/images/订单1804890_51_7092100.jpg b/datasets/检测仪/train/images/订单1804890_51_7092100.jpg new file mode 100644 index 0000000..19a3393 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804890_51_7092100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4fb70bb44ff30ecfd00c43d1bcf8c10cafb380c9ec8e01890ed325d318b5718 +size 134310 diff --git a/datasets/检测仪/train/images/订单1804891_51_7092087.jpg b/datasets/检测仪/train/images/订单1804891_51_7092087.jpg new file mode 100644 index 0000000..c8e04e7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804891_51_7092087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ecc75fb1cdc729122cd45da7697e057db60f2558d3a8eee987f24a79118d25 +size 215670 diff --git a/datasets/检测仪/train/images/订单1804893_51_7092105.jpg b/datasets/检测仪/train/images/订单1804893_51_7092105.jpg new file mode 100644 index 0000000..0052505 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804893_51_7092105.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0c3f940fa145bd048527b899683a1ae2503b4cfb5b1b5ce5c9db96bd3a21af +size 134287 diff --git a/datasets/检测仪/train/images/订单1804897_51_7092163.jpg b/datasets/检测仪/train/images/订单1804897_51_7092163.jpg new file mode 100644 index 0000000..a1c3f79 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804897_51_7092163.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5dc124b43434803d1519d8aeabac1b53d67d4594c84a7f8c3a25ea62f2e03b +size 131418 diff --git a/datasets/检测仪/train/images/订单1804907_51_7092215.jpg b/datasets/检测仪/train/images/订单1804907_51_7092215.jpg new file mode 100644 index 0000000..9000067 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804907_51_7092215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cf25f18d968b295d0297006c8084a3070e0830e1577a52cf1d9f1e18f00cbb +size 541909 diff --git a/datasets/检测仪/train/images/订单1804911_51_7092251.jpg b/datasets/检测仪/train/images/订单1804911_51_7092251.jpg new file mode 100644 index 0000000..6b1f85d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804911_51_7092251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a664394f70c9460446c88ad8136bd54b890a7bbfccfd1c15a416fcfef0141ba +size 134620 diff --git a/datasets/检测仪/train/images/订单1804914_51_7092284.jpg b/datasets/检测仪/train/images/订单1804914_51_7092284.jpg new file mode 100644 index 0000000..ac956b9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804914_51_7092284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705184940abe943457090b7964544c0e708b8bd70bef9e0394024917da4061f6 +size 152216 diff --git a/datasets/检测仪/train/images/订单1804915_51_7092290.jpg b/datasets/检测仪/train/images/订单1804915_51_7092290.jpg new file mode 100644 index 0000000..eecb8a1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804915_51_7092290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473343bf6c13428ed6139bdb0ceb7eec7e327b5ff05cf5ef9635a1bf1d93c91b +size 529971 diff --git a/datasets/检测仪/train/images/订单1804919_51_7092344.jpg b/datasets/检测仪/train/images/订单1804919_51_7092344.jpg new file mode 100644 index 0000000..e277d50 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804919_51_7092344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6e299ce31cb822396d39862063233174bdc529d84052df99827f91b4e015fa +size 617626 diff --git a/datasets/检测仪/train/images/订单1804921_51_7092331.jpg b/datasets/检测仪/train/images/订单1804921_51_7092331.jpg new file mode 100644 index 0000000..8c36e3b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804921_51_7092331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa871f4badd34a11b65e1cf5369b6704742538e2e9ef91c790b2aa68f827c5df +size 137433 diff --git a/datasets/检测仪/train/images/订单1804922_51_7092374.jpg b/datasets/检测仪/train/images/订单1804922_51_7092374.jpg new file mode 100644 index 0000000..f20ca08 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804922_51_7092374.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66521d80806d44f958124f9d2567cb9ebeed34568149b9acd88caef538cd880b +size 552756 diff --git a/datasets/检测仪/train/images/订单1804923_51_7092356.jpg b/datasets/检测仪/train/images/订单1804923_51_7092356.jpg new file mode 100644 index 0000000..2106182 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804923_51_7092356.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e720922eda5f3f4bc552033723166358611eb13ada2cff5e6d9b5197cb110ae +size 746537 diff --git a/datasets/检测仪/train/images/订单1804924_51_7092371.jpg b/datasets/检测仪/train/images/订单1804924_51_7092371.jpg new file mode 100644 index 0000000..c78e785 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804924_51_7092371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf5f2c413caca103b5246fd9a74ab3e7c51210dfe2fce3406eec62a1687d8c0 +size 147457 diff --git a/datasets/检测仪/train/images/订单1804931_51_7092444.jpg b/datasets/检测仪/train/images/订单1804931_51_7092444.jpg new file mode 100644 index 0000000..db4dacf --- /dev/null +++ b/datasets/检测仪/train/images/订单1804931_51_7092444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c2b0fee3ed1ff86b6392a117fdcd0f08329b6d1356808cc4af10403092979b +size 107439 diff --git a/datasets/检测仪/train/images/订单1804932_51_7092414.jpg b/datasets/检测仪/train/images/订单1804932_51_7092414.jpg new file mode 100644 index 0000000..c8029e3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804932_51_7092414.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb502e6a39ef51a0eb68a18e3aa02bc40149e03b2daa5577d16ed5db5c89def +size 200807 diff --git a/datasets/检测仪/train/images/订单1804937_51_7092480.jpg b/datasets/检测仪/train/images/订单1804937_51_7092480.jpg new file mode 100644 index 0000000..4e1da6f --- /dev/null +++ b/datasets/检测仪/train/images/订单1804937_51_7092480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9678811542266e6d28d8aa07b34d5824e9390459b8158e622e6ad1f81e041f +size 417288 diff --git a/datasets/检测仪/train/images/订单1804938_51_7092573.jpg b/datasets/检测仪/train/images/订单1804938_51_7092573.jpg new file mode 100644 index 0000000..9ff39b7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804938_51_7092573.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa7dc82fc0dfd49d9a8fd97cd5bce93b48e5d25887015eaafad3be198faf2d2 +size 117557 diff --git a/datasets/检测仪/train/images/订单1804939_51_7092518.jpg b/datasets/检测仪/train/images/订单1804939_51_7092518.jpg new file mode 100644 index 0000000..b5204df --- /dev/null +++ b/datasets/检测仪/train/images/订单1804939_51_7092518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6a96df976b88e57631fe5c94215cfabb41b184c67d887784cd7c58427e7dcb +size 555286 diff --git a/datasets/检测仪/train/images/订单1804941_51_7092531.jpg b/datasets/检测仪/train/images/订单1804941_51_7092531.jpg new file mode 100644 index 0000000..2d3cdd6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804941_51_7092531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bf72e924d79b6257dbbe31293eb813a457dd34de0f0be01e6e488029197282 +size 137279 diff --git a/datasets/检测仪/train/images/订单1804942_51_7092582.jpg b/datasets/检测仪/train/images/订单1804942_51_7092582.jpg new file mode 100644 index 0000000..1033ee0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804942_51_7092582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb580d235101c25a6234e0a1499d91bf50ec465097ab5b7af1050fa5683219a0 +size 131931 diff --git a/datasets/检测仪/train/images/订单1804948_51_7092586.jpg b/datasets/检测仪/train/images/订单1804948_51_7092586.jpg new file mode 100644 index 0000000..0cc853d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804948_51_7092586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a60b4894441e5933232f7989ac8ecf47e5ac7376033205cf80799b0baca6f55 +size 149926 diff --git a/datasets/检测仪/train/images/订单1804952_51_7092607.jpg b/datasets/检测仪/train/images/订单1804952_51_7092607.jpg new file mode 100644 index 0000000..5f1d78c --- /dev/null +++ b/datasets/检测仪/train/images/订单1804952_51_7092607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e7c6f2dc7db10d0e4918e19ab0091e97ce17f8eb8ea3380d6f39ba17c86044 +size 169357 diff --git a/datasets/检测仪/train/images/订单1804956_51_7092632.jpg b/datasets/检测仪/train/images/订单1804956_51_7092632.jpg new file mode 100644 index 0000000..240749b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804956_51_7092632.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bffdb5e1f891166e36051c5abb09bc6894c07ce3ad50c910e438088cce6b991 +size 471092 diff --git a/datasets/检测仪/train/images/订单1804957_51_7092644.jpg b/datasets/检测仪/train/images/订单1804957_51_7092644.jpg new file mode 100644 index 0000000..3dff368 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804957_51_7092644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe5527abb1591c042a9719bd9e38c358b6e0c0dc1a617337d312c82ef8c1863 +size 413182 diff --git a/datasets/检测仪/train/images/订单1804959_51_7092668.jpg b/datasets/检测仪/train/images/订单1804959_51_7092668.jpg new file mode 100644 index 0000000..d7c4319 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804959_51_7092668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc866190c19e6373a8dde0e1146a92bd2cd223806dadc89c067cac99b03308a5 +size 168614 diff --git a/datasets/检测仪/train/images/订单1804964_51_7092711.jpg b/datasets/检测仪/train/images/订单1804964_51_7092711.jpg new file mode 100644 index 0000000..88f508d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804964_51_7092711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6508960b57b5785162333dc08ce76993a0d3a78c5ccc546e7df307b15f41ed83 +size 101359 diff --git a/datasets/检测仪/train/images/订单1804971_51_7092747.jpg b/datasets/检测仪/train/images/订单1804971_51_7092747.jpg new file mode 100644 index 0000000..4a53d8b --- /dev/null +++ b/datasets/检测仪/train/images/订单1804971_51_7092747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d116f711380ab025bab8168b378c61c5eedde9925c4694c34c92b1dd1d8a9e +size 581985 diff --git a/datasets/检测仪/train/images/订单1804974_51_7092715.jpg b/datasets/检测仪/train/images/订单1804974_51_7092715.jpg new file mode 100644 index 0000000..1b61abb --- /dev/null +++ b/datasets/检测仪/train/images/订单1804974_51_7092715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe2b1e80f38e244f6cb2009bb5ea66c85c6843ada08bfca14b4e702b7cfeec +size 422373 diff --git a/datasets/检测仪/train/images/订单1804977_51_7092908.jpg b/datasets/检测仪/train/images/订单1804977_51_7092908.jpg new file mode 100644 index 0000000..7942460 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804977_51_7092908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23b68ab56968d7defd72c42ee154f6d53e8f635f5e83e0a06a10e77a0e71841 +size 267243 diff --git a/datasets/检测仪/train/images/订单1804981_51_7092840.jpg b/datasets/检测仪/train/images/订单1804981_51_7092840.jpg new file mode 100644 index 0000000..fa70bf5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804981_51_7092840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f58a42b9b83fa071dd23d5f4c612f40d6196678cc4fd8da489993591db4fe2 +size 83338 diff --git a/datasets/检测仪/train/images/订单1804982_51_7092805.jpg b/datasets/检测仪/train/images/订单1804982_51_7092805.jpg new file mode 100644 index 0000000..a05a7cf --- /dev/null +++ b/datasets/检测仪/train/images/订单1804982_51_7092805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b5c02e563dbe7bcd8b92ad5986adad4076aea5a11bf459594806e882c24f2e +size 212711 diff --git a/datasets/检测仪/train/images/订单1804983_51_7092775.jpg b/datasets/检测仪/train/images/订单1804983_51_7092775.jpg new file mode 100644 index 0000000..c6b964a --- /dev/null +++ b/datasets/检测仪/train/images/订单1804983_51_7092775.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e194361b718631ce974d0fbd3d2d8a7561971212ffebc5bea77ced20827871f5 +size 143224 diff --git a/datasets/检测仪/train/images/订单1804987_51_7093078.jpg b/datasets/检测仪/train/images/订单1804987_51_7093078.jpg new file mode 100644 index 0000000..7e4f457 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804987_51_7093078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9205cea73699c3dc45bbb7500c5ae6f9a44b399696c88c728d04279442b865 +size 328119 diff --git a/datasets/检测仪/train/images/订单1804992_51_7093002.jpg b/datasets/检测仪/train/images/订单1804992_51_7093002.jpg new file mode 100644 index 0000000..2e2832d --- /dev/null +++ b/datasets/检测仪/train/images/订单1804992_51_7093002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487226a48193b14d43b8b4d7f64fe12ee5fbe3432e07e2b751b71d623e82798a +size 160295 diff --git a/datasets/检测仪/train/images/订单1804995_51_7092930.jpg b/datasets/检测仪/train/images/订单1804995_51_7092930.jpg new file mode 100644 index 0000000..a2a387e --- /dev/null +++ b/datasets/检测仪/train/images/订单1804995_51_7092930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9f9684b7f09977d6c0392c4df1c6f66dd741938ca0f2e07dedadc33ae8747e +size 126762 diff --git a/datasets/检测仪/train/images/订单1804998_51_7093003.jpg b/datasets/检测仪/train/images/订单1804998_51_7093003.jpg new file mode 100644 index 0000000..eb0e222 --- /dev/null +++ b/datasets/检测仪/train/images/订单1804998_51_7093003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c490d268eae919c281d7b8c3f786817f604f12caa927e98f2cc7ca358f3cc9b7 +size 370989 diff --git a/datasets/检测仪/train/images/订单1805001_51_7093034.jpg b/datasets/检测仪/train/images/订单1805001_51_7093034.jpg new file mode 100644 index 0000000..6e40f11 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805001_51_7093034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb055b2e1dfcc2b943488a49b17389bcec62e560a58b0f3ea20d2037811b51c +size 683490 diff --git a/datasets/检测仪/train/images/订单1805002_51_7093143.jpg b/datasets/检测仪/train/images/订单1805002_51_7093143.jpg new file mode 100644 index 0000000..2046d98 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805002_51_7093143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a891d22ae7f8f95e3b8918b0a4017c19f5caf5ffb578d2e7035807de2ba891e3 +size 268723 diff --git a/datasets/检测仪/train/images/订单1805005_51_7093121.jpg b/datasets/检测仪/train/images/订单1805005_51_7093121.jpg new file mode 100644 index 0000000..d096010 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805005_51_7093121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208e5cac350c211bc156b041715e5473780e0243e0d2641e7efb61d26955a252 +size 104244 diff --git a/datasets/检测仪/train/images/订单1805007_51_7093074.jpg b/datasets/检测仪/train/images/订单1805007_51_7093074.jpg new file mode 100644 index 0000000..5c5227e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805007_51_7093074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e1ccd20a4dba14d10b441ca4eb7a6c054ab7657cd3e72eb281ef589bee28b9 +size 248700 diff --git a/datasets/检测仪/train/images/订单1805010_51_7093100.jpg b/datasets/检测仪/train/images/订单1805010_51_7093100.jpg new file mode 100644 index 0000000..3e3ec36 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805010_51_7093100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6999fe004d01080a640fef3bbcb106dcbcd10781d5a16b3e96dceae5d3fef55 +size 99981 diff --git a/datasets/检测仪/train/images/订单1805011_51_7093197.jpg b/datasets/检测仪/train/images/订单1805011_51_7093197.jpg new file mode 100644 index 0000000..f2dec19 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805011_51_7093197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3990f88b778bc6358cb37de8062d8189e174f3e8a18e9f9ce7ca25a8467b486 +size 89044 diff --git a/datasets/检测仪/train/images/订单1805012_51_7093169.jpg b/datasets/检测仪/train/images/订单1805012_51_7093169.jpg new file mode 100644 index 0000000..bc1eec8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805012_51_7093169.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98c67ce79d562e8a0a78d03d914e19da5fbd11031d47dbaf70aa3469d7afaef +size 123481 diff --git a/datasets/检测仪/train/images/订单1805013_51_7093172.jpg b/datasets/检测仪/train/images/订单1805013_51_7093172.jpg new file mode 100644 index 0000000..227f978 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805013_51_7093172.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b2bf0bab9465c73e55cc4fdd624f37e98ee02f0688bf9d057d5a769ec408a9 +size 126421 diff --git a/datasets/检测仪/train/images/订单1805016_51_7093173.jpg b/datasets/检测仪/train/images/订单1805016_51_7093173.jpg new file mode 100644 index 0000000..f160864 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805016_51_7093173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873234df441a6fc4a1e85647a3726602e834e65289e1c78dd7b70747d8e2fafe +size 292378 diff --git a/datasets/检测仪/train/images/订单1805024_51_7093303.jpg b/datasets/检测仪/train/images/订单1805024_51_7093303.jpg new file mode 100644 index 0000000..4c4537f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805024_51_7093303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99469aec53e82a576a6c7680b2b4a8e9111901107a72328ab9156e8575742a72 +size 132603 diff --git a/datasets/检测仪/train/images/订单1805027_51_7093316.jpg b/datasets/检测仪/train/images/订单1805027_51_7093316.jpg new file mode 100644 index 0000000..d15fbd4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805027_51_7093316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df4582634a81075c0cc66f080ea204259e88a34d6efa03800f7057e613beed5 +size 97555 diff --git a/datasets/检测仪/train/images/订单1805029_51_7093369.jpg b/datasets/检测仪/train/images/订单1805029_51_7093369.jpg new file mode 100644 index 0000000..22eae15 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805029_51_7093369.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66634e9d860662892fb0e48e4f6c4a0cc9471bfb50feb5643b05f014866d6a7 +size 373258 diff --git a/datasets/检测仪/train/images/订单1805031_51_7093371.jpg b/datasets/检测仪/train/images/订单1805031_51_7093371.jpg new file mode 100644 index 0000000..bf47878 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805031_51_7093371.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb01d33798b8f50cec1215b363aebce724460b25f7a33792a7352c0fa4f8892e +size 495741 diff --git a/datasets/检测仪/train/images/订单1805032_51_7093384.jpg b/datasets/检测仪/train/images/订单1805032_51_7093384.jpg new file mode 100644 index 0000000..3b36bbd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805032_51_7093384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3187ed84ebe649c29d1c2663b1561d2a32bb190b0213f3b914eb53793000dd8a +size 80614 diff --git a/datasets/检测仪/train/images/订单1805037_51_7093431.jpg b/datasets/检测仪/train/images/订单1805037_51_7093431.jpg new file mode 100644 index 0000000..766d894 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805037_51_7093431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7453dc9135df6d31b0cce85e543ae05477a8deb2ee2ce8797aa7269a453ce2 +size 136912 diff --git a/datasets/检测仪/train/images/订单1805041_51_7093497.jpg b/datasets/检测仪/train/images/订单1805041_51_7093497.jpg new file mode 100644 index 0000000..f8a8bf5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805041_51_7093497.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:186445b6800a63c97d0ab53d95025842bcfbe179b453107e5f982c5d69bb3a30 +size 109309 diff --git a/datasets/检测仪/train/images/订单1805042_51_7093478.jpg b/datasets/检测仪/train/images/订单1805042_51_7093478.jpg new file mode 100644 index 0000000..8ff1183 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805042_51_7093478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19bc98c1050b3ed080447545723d19fc6da8472a3e9f24307415d0f7b2eceb23 +size 442997 diff --git a/datasets/检测仪/train/images/订单1805043_51_7093500.jpg b/datasets/检测仪/train/images/订单1805043_51_7093500.jpg new file mode 100644 index 0000000..f29bf0a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805043_51_7093500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b0ed9c3677896bea37f5555658fd571eb0923a35711de0ea4f9e0f15e7f803 +size 151205 diff --git a/datasets/检测仪/train/images/订单1805049_51_7093575.jpg b/datasets/检测仪/train/images/订单1805049_51_7093575.jpg new file mode 100644 index 0000000..9c8d2cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805049_51_7093575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c70303e1bf6c7a60421153114bad9c6877a45667b38b2ffd1fd2a2c2245e295 +size 129171 diff --git a/datasets/检测仪/train/images/订单1805050_51_7093637.jpg b/datasets/检测仪/train/images/订单1805050_51_7093637.jpg new file mode 100644 index 0000000..76e744f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805050_51_7093637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0354b2641fcf0dcb50026a68f7b4b178eb85cf234ef540b9fd8317259c9709e3 +size 384590 diff --git a/datasets/检测仪/train/images/订单1805051_51_7093553.jpg b/datasets/检测仪/train/images/订单1805051_51_7093553.jpg new file mode 100644 index 0000000..02d8e1c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805051_51_7093553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e37fec49e784be95c4172f074d2e705590dd4cd211e81792a15c5b3c6db194 +size 247809 diff --git a/datasets/检测仪/train/images/订单1805056_51_7093579.jpg b/datasets/检测仪/train/images/订单1805056_51_7093579.jpg new file mode 100644 index 0000000..fdeca70 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805056_51_7093579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6447339d95626c9233867765498b107f80c8f87184543740437c4e59f09e11 +size 137461 diff --git a/datasets/检测仪/train/images/订单1805057_51_7093593.jpg b/datasets/检测仪/train/images/订单1805057_51_7093593.jpg new file mode 100644 index 0000000..0e29ac8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805057_51_7093593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77597d6ba63dd284a5bc72f59729a97dde5b06c274e4726bb1efafb00d3c6fb9 +size 326218 diff --git a/datasets/检测仪/train/images/订单1805058_51_7093664.jpg b/datasets/检测仪/train/images/订单1805058_51_7093664.jpg new file mode 100644 index 0000000..89fa255 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805058_51_7093664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b32ba41f8ed0c338fcf8ecc90a72fcce222f3608b45fe639d0cd6bbe3959840 +size 451168 diff --git a/datasets/检测仪/train/images/订单1805062_51_7093701.jpg b/datasets/检测仪/train/images/订单1805062_51_7093701.jpg new file mode 100644 index 0000000..952157d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805062_51_7093701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab793e0985939b55c2974fc082b8df8e2d3d2e03b5a1f87e83b38c3e8c7c4bae +size 479861 diff --git a/datasets/检测仪/train/images/订单1805069_51_7093736.jpg b/datasets/检测仪/train/images/订单1805069_51_7093736.jpg new file mode 100644 index 0000000..2fb5b55 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805069_51_7093736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0546b86d1cc69d93be70abcbc1d224891b71c8a163c900f4fb7bda67778152 +size 99760 diff --git a/datasets/检测仪/train/images/订单1805072_51_7093756.jpg b/datasets/检测仪/train/images/订单1805072_51_7093756.jpg new file mode 100644 index 0000000..7e3024f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805072_51_7093756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625cb8f25e9ba0436505a427402e594f032c39a8659d1c4336d22cb0dc815e52 +size 102751 diff --git a/datasets/检测仪/train/images/订单1805074_51_7093777.jpg b/datasets/检测仪/train/images/订单1805074_51_7093777.jpg new file mode 100644 index 0000000..0fc7929 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805074_51_7093777.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc5e7c30f0626f500769c4ab1f56d6bf1f63385139ce4af74b6980345e0833c +size 132805 diff --git a/datasets/检测仪/train/images/订单1805075_51_7093787.jpg b/datasets/检测仪/train/images/订单1805075_51_7093787.jpg new file mode 100644 index 0000000..a431f56 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805075_51_7093787.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c20bcea311a5a45049c7490de3cd2d2a961c60f8c8f0420433a1dd36e33a636 +size 97063 diff --git a/datasets/检测仪/train/images/订单1805077_51_7093798.jpg b/datasets/检测仪/train/images/订单1805077_51_7093798.jpg new file mode 100644 index 0000000..9c1fae6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805077_51_7093798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d47b1d3ff567a6fd2d68de37af02178c89793bec831946b44ffbef6a901508 +size 110052 diff --git a/datasets/检测仪/train/images/订单1805081_51_7093845.jpg b/datasets/检测仪/train/images/订单1805081_51_7093845.jpg new file mode 100644 index 0000000..2f4074c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805081_51_7093845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac079af80e59d991df279cacf9c70a6e6e15212f835c31e0deb7ea08d550a2df +size 130555 diff --git a/datasets/检测仪/train/images/订单1805082_51_7093857.jpg b/datasets/检测仪/train/images/订单1805082_51_7093857.jpg new file mode 100644 index 0000000..a54d3d0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805082_51_7093857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed7a7b5861bdae65d9988080786c70ccc566130572e3a552c34df0ac17108ba +size 133530 diff --git a/datasets/检测仪/train/images/订单1805083_51_7093869.jpg b/datasets/检测仪/train/images/订单1805083_51_7093869.jpg new file mode 100644 index 0000000..013fccb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805083_51_7093869.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3362e7333b835a119e7dfe5c3602500fe33a3692b37153d561fccdcf459098df +size 101407 diff --git a/datasets/检测仪/train/images/订单1805085_51_7093881.jpg b/datasets/检测仪/train/images/订单1805085_51_7093881.jpg new file mode 100644 index 0000000..e2b9a92 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805085_51_7093881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd3e8c7536c8706eede2c35af706800bbab6567875bd456c135d7f099528791 +size 273240 diff --git a/datasets/检测仪/train/images/订单1805086_51_7093891.jpg b/datasets/检测仪/train/images/订单1805086_51_7093891.jpg new file mode 100644 index 0000000..eb151d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805086_51_7093891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e44b28c622305b82ec6ee2f40a99043e0601c77ca4954763494f751f25c78ad +size 281199 diff --git a/datasets/检测仪/train/images/订单1805089_51_7093908.jpg b/datasets/检测仪/train/images/订单1805089_51_7093908.jpg new file mode 100644 index 0000000..1a7842e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805089_51_7093908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0fbc3ba57690d0adc9c030c080481a22453bc85bda4eeb882401a5de412a4b9 +size 286763 diff --git a/datasets/检测仪/train/images/订单1805091_51_7093955.jpg b/datasets/检测仪/train/images/订单1805091_51_7093955.jpg new file mode 100644 index 0000000..75de935 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805091_51_7093955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b425f1893624b954990f99c4e4a6c6444253829cd16d5cc77eb070a5a980e672 +size 474985 diff --git a/datasets/检测仪/train/images/订单1805092_51_7093907.jpg b/datasets/检测仪/train/images/订单1805092_51_7093907.jpg new file mode 100644 index 0000000..be34b8b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805092_51_7093907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14055be243de6e35561b7bb07110a03c708671bf576b61abcd422a444d6481e +size 401892 diff --git a/datasets/检测仪/train/images/订单1805095_51_7093943.jpg b/datasets/检测仪/train/images/订单1805095_51_7093943.jpg new file mode 100644 index 0000000..b75d51d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805095_51_7093943.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579ef007da4786c05cc76d33a1ec96cbba8d3003f61b45dbc93e2f92d193fb94 +size 121862 diff --git a/datasets/检测仪/train/images/订单1805096_51_7094003.jpg b/datasets/检测仪/train/images/订单1805096_51_7094003.jpg new file mode 100644 index 0000000..d4bf0c9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805096_51_7094003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e561310ce994f731bd36b8820fdb5a88e58739b17bd95c3249c815d5f42f4b8 +size 128792 diff --git a/datasets/检测仪/train/images/订单1805100_51_7094084.jpg b/datasets/检测仪/train/images/订单1805100_51_7094084.jpg new file mode 100644 index 0000000..b16d4ff --- /dev/null +++ b/datasets/检测仪/train/images/订单1805100_51_7094084.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f644848c4ae16f5f9649feb895bf5aa3dcec55ff1da24132400f116e3889f5 +size 155151 diff --git a/datasets/检测仪/train/images/订单1805101_51_7094057.jpg b/datasets/检测仪/train/images/订单1805101_51_7094057.jpg new file mode 100644 index 0000000..937547c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805101_51_7094057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f7117ab71b9ec19535a816a54883eab2dcbf01ebb6c74b929cc165f6f26927 +size 120380 diff --git a/datasets/检测仪/train/images/订单1805102_51_7094011.jpg b/datasets/检测仪/train/images/订单1805102_51_7094011.jpg new file mode 100644 index 0000000..35fc056 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805102_51_7094011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71895927d2b0c5328f340470de4bca02bf3f36ceb9eebfc6696f00bc2b63d296 +size 158690 diff --git a/datasets/检测仪/train/images/订单1805108_51_7094036.jpg b/datasets/检测仪/train/images/订单1805108_51_7094036.jpg new file mode 100644 index 0000000..03ee29b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805108_51_7094036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fce497cd3f7210de9019c1134834310bec4609fb5bb1f1276f3b0c05d66439 +size 112115 diff --git a/datasets/检测仪/train/images/订单1805109_51_7094037.jpg b/datasets/检测仪/train/images/订单1805109_51_7094037.jpg new file mode 100644 index 0000000..95a8aa4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805109_51_7094037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76bf9dd4d1f213e08b681ab657362185cd02f26a4b0bc4e441f9d4e3ca0755d +size 144917 diff --git a/datasets/检测仪/train/images/订单1805115_51_7094131.jpg b/datasets/检测仪/train/images/订单1805115_51_7094131.jpg new file mode 100644 index 0000000..6038d88 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805115_51_7094131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a246aab9cac9c92235a2cb0a96f518be3ac99e19e7e624e0e48f714925789ad4 +size 69502 diff --git a/datasets/检测仪/train/images/订单1805119_51_7094223.jpg b/datasets/检测仪/train/images/订单1805119_51_7094223.jpg new file mode 100644 index 0000000..14fb49c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805119_51_7094223.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526e48752650889d28adf9f006a75f59d03974cc6d6ca5bacb25afc9685bf293 +size 884566 diff --git a/datasets/检测仪/train/images/订单1805120_51_7094214.jpg b/datasets/检测仪/train/images/订单1805120_51_7094214.jpg new file mode 100644 index 0000000..8405a9e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805120_51_7094214.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a093b97f5b0fb9b629cc61d52b812c67b96a5bd94f20c54e61797addd3f58a51 +size 148651 diff --git a/datasets/检测仪/train/images/订单1805123_51_7094124.jpg b/datasets/检测仪/train/images/订单1805123_51_7094124.jpg new file mode 100644 index 0000000..a77b578 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805123_51_7094124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d48ca4bf78630a33599c1e05989358c1c22b55e98f20cd24bce09a7a7da01ed +size 536872 diff --git a/datasets/检测仪/train/images/订单1805124_51_7094151.jpg b/datasets/检测仪/train/images/订单1805124_51_7094151.jpg new file mode 100644 index 0000000..96b703a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805124_51_7094151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed80d07e44f30f3ad0f523b2300acfc4b10af93cee8602cc595565cbcf72370 +size 144153 diff --git a/datasets/检测仪/train/images/订单1805129_51_7094233.jpg b/datasets/检测仪/train/images/订单1805129_51_7094233.jpg new file mode 100644 index 0000000..3c62f69 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805129_51_7094233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23715bf9cd13c0b53bfb0bab22114401000f9291b64fc591b50210afdbf2ec8 +size 109958 diff --git a/datasets/检测仪/train/images/订单1805131_51_7094253.jpg b/datasets/检测仪/train/images/订单1805131_51_7094253.jpg new file mode 100644 index 0000000..dc0f6cc --- /dev/null +++ b/datasets/检测仪/train/images/订单1805131_51_7094253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e477c5c20e611fd73ff8b9e1f3e6f8402212214636335b395150adfa46cf1815 +size 138314 diff --git a/datasets/检测仪/train/images/订单1805134_51_7094282.jpg b/datasets/检测仪/train/images/订单1805134_51_7094282.jpg new file mode 100644 index 0000000..70c6932 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805134_51_7094282.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e17c5cd70806d194493b1927b5b7abad205e2a034919e96d3b2ce9cacb7e658 +size 95600 diff --git a/datasets/检测仪/train/images/订单1805137_51_7094244.jpg b/datasets/检测仪/train/images/订单1805137_51_7094244.jpg new file mode 100644 index 0000000..34a341c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805137_51_7094244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab18c90f0d31cf080551964706d5327082096b094d6ea00b319356ec4f170965 +size 392835 diff --git a/datasets/检测仪/train/images/订单1805141_51_7094347.jpg b/datasets/检测仪/train/images/订单1805141_51_7094347.jpg new file mode 100644 index 0000000..0fff9d7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805141_51_7094347.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc4ea57bd80c3130c7f0c3e895cf938be2b1dbd014c959d1428d072e1b145ac +size 129754 diff --git a/datasets/检测仪/train/images/订单1805142_51_7094266.jpg b/datasets/检测仪/train/images/订单1805142_51_7094266.jpg new file mode 100644 index 0000000..fa0f773 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805142_51_7094266.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908f2df8772e09a8ca7e904411f15efddcc91b636f572ba5ab72c9f035287a40 +size 437996 diff --git a/datasets/检测仪/train/images/订单1805143_51_7094313.jpg b/datasets/检测仪/train/images/订单1805143_51_7094313.jpg new file mode 100644 index 0000000..67eb50c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805143_51_7094313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc76d70a7a077612bb30e8a405afdd5a4ed47c578ad3374f1d0ac6ceca1a101 +size 413152 diff --git a/datasets/检测仪/train/images/订单1805149_51_7094351.jpg b/datasets/检测仪/train/images/订单1805149_51_7094351.jpg new file mode 100644 index 0000000..868cdae --- /dev/null +++ b/datasets/检测仪/train/images/订单1805149_51_7094351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715eed6c548f687385db8958ef852e195659bb4c8955a66d69fdcbd2b0994d40 +size 238140 diff --git a/datasets/检测仪/train/images/订单1805155_51_7094474.jpg b/datasets/检测仪/train/images/订单1805155_51_7094474.jpg new file mode 100644 index 0000000..4e3121f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805155_51_7094474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7aa42d72a08e53ee4de8ce9f44da2700365063b6b7ebf0ef487c76c94083f2 +size 362447 diff --git a/datasets/检测仪/train/images/订单1805158_51_7094455.jpg b/datasets/检测仪/train/images/订单1805158_51_7094455.jpg new file mode 100644 index 0000000..4120c94 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805158_51_7094455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dccda07d7f3b55d6538adc9b16c6150368e5e7d5d48f1aebc416efa66e8ba9 +size 137522 diff --git a/datasets/检测仪/train/images/订单1805164_51_7094561.jpg b/datasets/检测仪/train/images/订单1805164_51_7094561.jpg new file mode 100644 index 0000000..e677591 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805164_51_7094561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fe26a7daa40047b603d2b9cb50ad4e212fd2ac9ac206f1b6ec679e91c5e4da +size 147953 diff --git a/datasets/检测仪/train/images/订单1805167_51_7094525.jpg b/datasets/检测仪/train/images/订单1805167_51_7094525.jpg new file mode 100644 index 0000000..4397410 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805167_51_7094525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b883057c780463e4fb3dcc89ba2c1cfde8adccadb0c59ce8ca763968a6676ae4 +size 625668 diff --git a/datasets/检测仪/train/images/订单1805168_51_7094620.jpg b/datasets/检测仪/train/images/订单1805168_51_7094620.jpg new file mode 100644 index 0000000..b51cd42 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805168_51_7094620.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2137571ed89b8777891a97607efbcba6f1d1d08d7a685a614ceb9afdcd3434f8 +size 155269 diff --git a/datasets/检测仪/train/images/订单1805170_51_7094495.jpg b/datasets/检测仪/train/images/订单1805170_51_7094495.jpg new file mode 100644 index 0000000..3166a9f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805170_51_7094495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58013eb1251e2cb3616d10108f11c7ac00902548519fff8f5e7012f7f451a22 +size 135902 diff --git a/datasets/检测仪/train/images/订单1805175_51_7094553.jpg b/datasets/检测仪/train/images/订单1805175_51_7094553.jpg new file mode 100644 index 0000000..730f513 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805175_51_7094553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ad372782cee5f8e1953198e3bae050dbec832e49de3b52b625b6ebfa984c76 +size 107403 diff --git a/datasets/检测仪/train/images/订单1805177_51_7095468.jpg b/datasets/检测仪/train/images/订单1805177_51_7095468.jpg new file mode 100644 index 0000000..16f6ab6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805177_51_7095468.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9325e733e056caf766753d9b156074568b963064acc382a47f4d2fe450b2307a +size 144257 diff --git a/datasets/检测仪/train/images/订单1805181_51_7094604.jpg b/datasets/检测仪/train/images/订单1805181_51_7094604.jpg new file mode 100644 index 0000000..250adeb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805181_51_7094604.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92adf987e192829899861a14334dd2fbb83f13dfd924533ad3410a9c65fc9e5d +size 367265 diff --git a/datasets/检测仪/train/images/订单1805182_51_7094646.jpg b/datasets/检测仪/train/images/订单1805182_51_7094646.jpg new file mode 100644 index 0000000..fc5610f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805182_51_7094646.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1829c056dc50e2daa487c2b528410dafbe3d2a5b65e992c7514ef4839cf35bbe +size 100677 diff --git a/datasets/检测仪/train/images/订单1805187_51_7094690.jpg b/datasets/检测仪/train/images/订单1805187_51_7094690.jpg new file mode 100644 index 0000000..75e7aca --- /dev/null +++ b/datasets/检测仪/train/images/订单1805187_51_7094690.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9dd088a7770d6fb424fe92902312a95d5e11d506c6830a586b508a9269b36c +size 85646 diff --git a/datasets/检测仪/train/images/订单1805193_51_7094789.jpg b/datasets/检测仪/train/images/订单1805193_51_7094789.jpg new file mode 100644 index 0000000..1c33148 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805193_51_7094789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b8c5a564350004f6a81070e8aa86850eefa7f2c64e619d9b89740c106040ad +size 165303 diff --git a/datasets/检测仪/train/images/订单1805202_51_7094824.jpg b/datasets/检测仪/train/images/订单1805202_51_7094824.jpg new file mode 100644 index 0000000..dbcbe36 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805202_51_7094824.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67b26511efedda6351be9aa6f792a056001f528d3ce5eb77db26612a52354a6 +size 130324 diff --git a/datasets/检测仪/train/images/订单1805204_51_7094885.jpg b/datasets/检测仪/train/images/订单1805204_51_7094885.jpg new file mode 100644 index 0000000..db0a96d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805204_51_7094885.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d239ca654731889a53b22f122c88eca2e301ed72eac833e0b1154c29884f5ba4 +size 158665 diff --git a/datasets/检测仪/train/images/订单1805205_51_7094952.jpg b/datasets/检测仪/train/images/订单1805205_51_7094952.jpg new file mode 100644 index 0000000..c34866e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805205_51_7094952.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200775450e3342b04d5428e42ffa8a2d0587edce4b05ae5acb4f679de91f205f +size 98620 diff --git a/datasets/检测仪/train/images/订单1805207_51_7094908.jpg b/datasets/检测仪/train/images/订单1805207_51_7094908.jpg new file mode 100644 index 0000000..56f8af6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805207_51_7094908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263f69faaa6fcfd66fb5148b9fd5e4217a980e5e0868f8ef2be374ecfeef4de7 +size 141708 diff --git a/datasets/检测仪/train/images/订单1805208_51_7094957.jpg b/datasets/检测仪/train/images/订单1805208_51_7094957.jpg new file mode 100644 index 0000000..f69f9f4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805208_51_7094957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0621fd3842c1c8157c7fb815189b48b47c54d461c2b979b8d0759fe6d21e6cec +size 150637 diff --git a/datasets/检测仪/train/images/订单1805212_51_7094977.jpg b/datasets/检测仪/train/images/订单1805212_51_7094977.jpg new file mode 100644 index 0000000..5c89bb2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805212_51_7094977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788e3601101cde1ead2acb7b57c6539965489ebd4fe3e7f7ec2aefc520801d5c +size 564237 diff --git a/datasets/检测仪/train/images/订单1805217_51_7095036.jpg b/datasets/检测仪/train/images/订单1805217_51_7095036.jpg new file mode 100644 index 0000000..0351660 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805217_51_7095036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2f68333ba996c2eb1024e53322ef8227387f98dfdab15617fe67419c3df67a +size 464997 diff --git a/datasets/检测仪/train/images/订单1805223_51_7095092.jpg b/datasets/检测仪/train/images/订单1805223_51_7095092.jpg new file mode 100644 index 0000000..9a49a9f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805223_51_7095092.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5fed476418de0d5cb8a8bfa683c1442a2ac842adb5af0ebbb1ea8200e3e1d0 +size 160988 diff --git a/datasets/检测仪/train/images/订单1805233_51_7095227.jpg b/datasets/检测仪/train/images/订单1805233_51_7095227.jpg new file mode 100644 index 0000000..b4539d1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805233_51_7095227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5ff840d3ee3dbcd5e669d2bf376e83c38dae33422cee4e29dcfadc841a9d40 +size 176116 diff --git a/datasets/检测仪/train/images/订单1805236_51_7095224.jpg b/datasets/检测仪/train/images/订单1805236_51_7095224.jpg new file mode 100644 index 0000000..8ca3589 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805236_51_7095224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fc76a757628ca2b22b859fd166497089cefe0e1eea7810a5146606b84861cc +size 146022 diff --git a/datasets/检测仪/train/images/订单1805239_51_7095196.jpg b/datasets/检测仪/train/images/订单1805239_51_7095196.jpg new file mode 100644 index 0000000..b61046d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805239_51_7095196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd502dac1f0c5852ab7956755883a854f347cf026c96bd8d52df49948c9e13ef +size 145995 diff --git a/datasets/检测仪/train/images/订单1805247_51_7095293.jpg b/datasets/检测仪/train/images/订单1805247_51_7095293.jpg new file mode 100644 index 0000000..03fd6f6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805247_51_7095293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3f2c087ac0e42ec243c0007b7cd5cb1d9a48600b2d9fca4959d00407acabf7 +size 94910 diff --git a/datasets/检测仪/train/images/订单1805252_51_7095412.jpg b/datasets/检测仪/train/images/订单1805252_51_7095412.jpg new file mode 100644 index 0000000..60e5916 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805252_51_7095412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e9bfba713a8612c531d5a86cf0f1c8b04a38d04e3efb34fa8947549cb8521 +size 102296 diff --git a/datasets/检测仪/train/images/订单1805256_51_7095403.jpg b/datasets/检测仪/train/images/订单1805256_51_7095403.jpg new file mode 100644 index 0000000..3f8c04c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805256_51_7095403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0a4b20e89be1f08339672cb1e9b1cfa6afeae44d3a6d2b02dd043c9c1dbcaf +size 629893 diff --git a/datasets/检测仪/train/images/订单1805261_51_7095495.jpg b/datasets/检测仪/train/images/订单1805261_51_7095495.jpg new file mode 100644 index 0000000..ce38a9a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805261_51_7095495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2701076f22acf3ec7cbcdc3814e469905eeb2c44fcf17a87f6c98d8c9875b3e5 +size 202338 diff --git a/datasets/检测仪/train/images/订单1805262_51_7095487.jpg b/datasets/检测仪/train/images/订单1805262_51_7095487.jpg new file mode 100644 index 0000000..a1bf90d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805262_51_7095487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f163e0201ba1376ea0f52daa78bc192eabc20cdcee8c64b38f60aba91b83c36d +size 114528 diff --git a/datasets/检测仪/train/images/订单1805265_51_7095449.jpg b/datasets/检测仪/train/images/订单1805265_51_7095449.jpg new file mode 100644 index 0000000..97bc8e5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805265_51_7095449.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d58e169f417fab2c95bbf94483ff74dbbf2d3a7e8f54e72819d4d33b49fc5a5 +size 230113 diff --git a/datasets/检测仪/train/images/订单1805271_51_7095498.jpg b/datasets/检测仪/train/images/订单1805271_51_7095498.jpg new file mode 100644 index 0000000..64780d8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805271_51_7095498.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a10fd41b1dff985dae574ede075cea107dacefb2d407c019ba1ff5a9211e0e1 +size 163541 diff --git a/datasets/检测仪/train/images/订单1805275_51_7095581.jpg b/datasets/检测仪/train/images/订单1805275_51_7095581.jpg new file mode 100644 index 0000000..d1f7823 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805275_51_7095581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf5d0c49c0e9e0dfcf9bb22cbefa5132f481aaebc26bc02ae1261b3b9263411 +size 435196 diff --git a/datasets/检测仪/train/images/订单1805276_51_7095550.jpg b/datasets/检测仪/train/images/订单1805276_51_7095550.jpg new file mode 100644 index 0000000..0a2b869 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805276_51_7095550.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173da3f7f90365deb941c33cbc27a339e214f2829774ec65c4ee70007502c1ae +size 156285 diff --git a/datasets/检测仪/train/images/订单1805278_51_7095545.jpg b/datasets/检测仪/train/images/订单1805278_51_7095545.jpg new file mode 100644 index 0000000..dca5dc0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805278_51_7095545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8113c0ae0dd21f8551af8075060029974427d51a1e9f6a20ce8db85b53caf3 +size 148489 diff --git a/datasets/检测仪/train/images/订单1805279_51_7095633.jpg b/datasets/检测仪/train/images/订单1805279_51_7095633.jpg new file mode 100644 index 0000000..14fe4cc --- /dev/null +++ b/datasets/检测仪/train/images/订单1805279_51_7095633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca81104289277d8d8399cac4a385aeb5235d4e460123fe7ec58ff2a649c508e +size 113609 diff --git a/datasets/检测仪/train/images/订单1805280_51_7095784.jpg b/datasets/检测仪/train/images/订单1805280_51_7095784.jpg new file mode 100644 index 0000000..5e765ba --- /dev/null +++ b/datasets/检测仪/train/images/订单1805280_51_7095784.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4621d5365850bb66990796ff499524087d75172e2b964d4c8ef14633cd9096 +size 148288 diff --git a/datasets/检测仪/train/images/订单1805281_51_7095710.jpg b/datasets/检测仪/train/images/订单1805281_51_7095710.jpg new file mode 100644 index 0000000..0792f2d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805281_51_7095710.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061a3893f029b5047c84f25087d00c193a30550edadf5b382284f23973309b3b +size 492913 diff --git a/datasets/检测仪/train/images/订单1805282_51_7095637.jpg b/datasets/检测仪/train/images/订单1805282_51_7095637.jpg new file mode 100644 index 0000000..6fae890 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805282_51_7095637.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd7e48246e4aeed83bf0cb176864eef8253798d667a37ddffcdce7808d52eb9 +size 115676 diff --git a/datasets/检测仪/train/images/订单1805286_51_7095666.jpg b/datasets/检测仪/train/images/订单1805286_51_7095666.jpg new file mode 100644 index 0000000..17197a0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805286_51_7095666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecaaa988758c13ed07049d9987e6d2cd0f756fa94357b21a9c19db601041381a +size 498389 diff --git a/datasets/检测仪/train/images/订单1805288_51_7095735.jpg b/datasets/检测仪/train/images/订单1805288_51_7095735.jpg new file mode 100644 index 0000000..400ccd1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805288_51_7095735.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ae5bd49ec4d2817bdc654dff058dd4faad9c70e4ae0c322a8d3710a5d7e356 +size 119790 diff --git a/datasets/检测仪/train/images/订单1805294_51_7095817.jpg b/datasets/检测仪/train/images/订单1805294_51_7095817.jpg new file mode 100644 index 0000000..7dab018 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805294_51_7095817.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95401948f9a9ce547f9788b3cd0190f509a3214472b8fb385d5bf2d39dcb93a1 +size 616558 diff --git a/datasets/检测仪/train/images/订单1805296_51_7095785.jpg b/datasets/检测仪/train/images/订单1805296_51_7095785.jpg new file mode 100644 index 0000000..ccc168a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805296_51_7095785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e75b4c7dd7d6465c50387e72d4cab636c754ecb4f5021aaf764f96693c0b8f +size 157296 diff --git a/datasets/检测仪/train/images/订单1805302_51_7095822.jpg b/datasets/检测仪/train/images/订单1805302_51_7095822.jpg new file mode 100644 index 0000000..d1fe583 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805302_51_7095822.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab48551d0c5e62439810b3bf3b6f8501f3684c89641b48237c0b4c4cc9eaaa5 +size 196429 diff --git a/datasets/检测仪/train/images/订单1805310_51_7095913.jpg b/datasets/检测仪/train/images/订单1805310_51_7095913.jpg new file mode 100644 index 0000000..c47592f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805310_51_7095913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1159700ab11bc3c5f0abbd368511ffd5d238217b6914a050c476de0777f25f4d +size 128507 diff --git a/datasets/检测仪/train/images/订单1805311_51_7095915.jpg b/datasets/检测仪/train/images/订单1805311_51_7095915.jpg new file mode 100644 index 0000000..e197af9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805311_51_7095915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d872f340e6adae26d28ddf342c9caa1b3d3b4fabd16754945b8b85626326fc5 +size 139365 diff --git a/datasets/检测仪/train/images/订单1805314_51_7096010.jpg b/datasets/检测仪/train/images/订单1805314_51_7096010.jpg new file mode 100644 index 0000000..f78671c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805314_51_7096010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b8f0578410b4674bcd2569ab9b6a1919ca06e0f31f3fb4acbe22d156fbb025 +size 125876 diff --git a/datasets/检测仪/train/images/订单1805315_51_7095969.jpg b/datasets/检测仪/train/images/订单1805315_51_7095969.jpg new file mode 100644 index 0000000..de424e2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805315_51_7095969.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8f23bdf32f77e3d906bcb24b4bc0bfc4e5a1cfde411043a33e39d707797ae4 +size 159337 diff --git a/datasets/检测仪/train/images/订单1805316_51_7096200.jpg b/datasets/检测仪/train/images/订单1805316_51_7096200.jpg new file mode 100644 index 0000000..e01c7ad --- /dev/null +++ b/datasets/检测仪/train/images/订单1805316_51_7096200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d6ab7666b0ccf72af3cf4271b072131c035f6e4951706b39eba6b525b13cea +size 75373 diff --git a/datasets/检测仪/train/images/订单1805326_51_7096106.jpg b/datasets/检测仪/train/images/订单1805326_51_7096106.jpg new file mode 100644 index 0000000..cb35bb6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805326_51_7096106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af96412377e93418ee2d1d5070a6027d38c8e6925bd4c0f76aeea6caa0a4217 +size 84650 diff --git a/datasets/检测仪/train/images/订单1805334_51_7096252.jpg b/datasets/检测仪/train/images/订单1805334_51_7096252.jpg new file mode 100644 index 0000000..01073f9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805334_51_7096252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9b5dce488004053f074500871bbf57b123e97422082a10acce26841d0809e3 +size 84602 diff --git a/datasets/检测仪/train/images/订单1805335_51_7096152.jpg b/datasets/检测仪/train/images/订单1805335_51_7096152.jpg new file mode 100644 index 0000000..95a35c5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805335_51_7096152.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7be22c5065b9d4b7de2a7534a27a3ee5160df59efcf601883b6bc7cb22f65a3 +size 110497 diff --git a/datasets/检测仪/train/images/订单1805337_51_7097483.jpg b/datasets/检测仪/train/images/订单1805337_51_7097483.jpg new file mode 100644 index 0000000..e4e741d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805337_51_7097483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1a2c4ea3b4545c69e8fdc3447079484f661ae86d8cf63de7c186cda2db4473 +size 376268 diff --git a/datasets/检测仪/train/images/订单1805340_51_7096134.jpg b/datasets/检测仪/train/images/订单1805340_51_7096134.jpg new file mode 100644 index 0000000..0305a46 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805340_51_7096134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c1cb6ce5c2ef02066c4364d3f4a93bd31eb576631a2ddbfe4ec750275ef8c4 +size 123936 diff --git a/datasets/检测仪/train/images/订单1805341_51_7096228.jpg b/datasets/检测仪/train/images/订单1805341_51_7096228.jpg new file mode 100644 index 0000000..4972b87 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805341_51_7096228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153e9ae6d881e720eeb9ecdcbe1abe2d8b77ffd6141ab95457b1e91afa12e467 +size 177153 diff --git a/datasets/检测仪/train/images/订单1805343_51_7096175.jpg b/datasets/检测仪/train/images/订单1805343_51_7096175.jpg new file mode 100644 index 0000000..c6cff9a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805343_51_7096175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dec85685c09f1ae299381f312d0010d76db3d66d5501d4c458b20036f350202 +size 239034 diff --git a/datasets/检测仪/train/images/订单1805345_51_7096249.jpg b/datasets/检测仪/train/images/订单1805345_51_7096249.jpg new file mode 100644 index 0000000..8f27094 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805345_51_7096249.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2466cb32ca12acc928308ed507229048366b8f29c977b59e51701669e698fb +size 87706 diff --git a/datasets/检测仪/train/images/订单1805348_51_7096292.jpg b/datasets/检测仪/train/images/订单1805348_51_7096292.jpg new file mode 100644 index 0000000..3985b51 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805348_51_7096292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cebf7d14eb6310753c50ec546ea0a0a45ee22fc78ed6404db5e07c62bf605f +size 98360 diff --git a/datasets/检测仪/train/images/订单1805350_51_7096333.jpg b/datasets/检测仪/train/images/订单1805350_51_7096333.jpg new file mode 100644 index 0000000..32e5a5c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805350_51_7096333.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4021f7f19acdc05553e0f0c37e1ffb90b5ef95c381088f1bf55cc1d7d846798b +size 121237 diff --git a/datasets/检测仪/train/images/订单1805351_51_7096392.jpg b/datasets/检测仪/train/images/订单1805351_51_7096392.jpg new file mode 100644 index 0000000..3e92c28 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805351_51_7096392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f684b6768f06e1bf4f0463218f308a3629e2fe36069f5110e48b5ed4a9e0e62 +size 366828 diff --git a/datasets/检测仪/train/images/订单1805355_51_7096586.jpg b/datasets/检测仪/train/images/订单1805355_51_7096586.jpg new file mode 100644 index 0000000..b744baa --- /dev/null +++ b/datasets/检测仪/train/images/订单1805355_51_7096586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6eefeee08abba298f1482872cbb8bcbd99ae1d4f16653e0e8a6e70e0ece0058 +size 158242 diff --git a/datasets/检测仪/train/images/订单1805358_51_7096443.jpg b/datasets/检测仪/train/images/订单1805358_51_7096443.jpg new file mode 100644 index 0000000..2044b7e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805358_51_7096443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22db1b3767533a0df6f8a7ea463e46758b76519550a060562a082cad92e15a5a +size 156026 diff --git a/datasets/检测仪/train/images/订单1805362_51_7096361.jpg b/datasets/检测仪/train/images/订单1805362_51_7096361.jpg new file mode 100644 index 0000000..a3aab46 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805362_51_7096361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d7e37967bcaf24edeecb0f896dfde7710ce4375f1c765f564e74b95938c2102 +size 389926 diff --git a/datasets/检测仪/train/images/订单1805363_51_7096360.jpg b/datasets/检测仪/train/images/订单1805363_51_7096360.jpg new file mode 100644 index 0000000..ad94a70 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805363_51_7096360.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2475d095fe0f8315e248e0a24ff6f43dfdeb54eb5f8f51eaa14869755978f84 +size 57765 diff --git a/datasets/检测仪/train/images/订单1805366_51_7096424.jpg b/datasets/检测仪/train/images/订单1805366_51_7096424.jpg new file mode 100644 index 0000000..acb2c82 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805366_51_7096424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d7ec2d305f85785db227ed0e47ac591df76b5a30f08aafcc80c44efda0b0f5 +size 270149 diff --git a/datasets/检测仪/train/images/订单1805367_51_7096539.jpg b/datasets/检测仪/train/images/订单1805367_51_7096539.jpg new file mode 100644 index 0000000..b325c1a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805367_51_7096539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d92e0b790a44b3377d073b2bb1e8939a27fc54c3c19b655cbc63fb53d0b3d17 +size 112129 diff --git a/datasets/检测仪/train/images/订单1805373_51_7096473.jpg b/datasets/检测仪/train/images/订单1805373_51_7096473.jpg new file mode 100644 index 0000000..21f5b94 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805373_51_7096473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05bb2faf3b603dbd7a1a4c228cfeb014edf9ee01bfe8915b33d031054c1a79d4 +size 119179 diff --git a/datasets/检测仪/train/images/订单1805375_51_7096482.jpg b/datasets/检测仪/train/images/订单1805375_51_7096482.jpg new file mode 100644 index 0000000..5e9d170 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805375_51_7096482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfda4aaf6786a67dfb68dc7d987b393b7cd59a33ad35ecb267c30a2acf4fe87d +size 102971 diff --git a/datasets/检测仪/train/images/订单1805376_51_7096538.jpg b/datasets/检测仪/train/images/订单1805376_51_7096538.jpg new file mode 100644 index 0000000..edfc1d1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805376_51_7096538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230cc4c270f346816b5fdda3d7b57ad8d35a3c9a009289f666626f17728f9001 +size 146076 diff --git a/datasets/检测仪/train/images/订单1805377_51_7096582.jpg b/datasets/检测仪/train/images/订单1805377_51_7096582.jpg new file mode 100644 index 0000000..f08a341 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805377_51_7096582.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8406f1f537e96c8c985845d196bec4cdb239643d72d227e062dd5ab4ccebbc0 +size 148238 diff --git a/datasets/检测仪/train/images/订单1805381_51_7096578.jpg b/datasets/检测仪/train/images/订单1805381_51_7096578.jpg new file mode 100644 index 0000000..8a0d73a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805381_51_7096578.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad8c5d93fa50cdb125d7a1689da68b19085572a6e8ef1d1cc80e2bf9076991f +size 108278 diff --git a/datasets/检测仪/train/images/订单1805382_51_7096625.jpg b/datasets/检测仪/train/images/订单1805382_51_7096625.jpg new file mode 100644 index 0000000..6940b1d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805382_51_7096625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9337c6f33ad8c852ca0c498008708d4879f9d2fbf271e6ee16cfa226ee667b1c +size 156571 diff --git a/datasets/检测仪/train/images/订单1805383_51_7096566.jpg b/datasets/检测仪/train/images/订单1805383_51_7096566.jpg new file mode 100644 index 0000000..94adc9d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805383_51_7096566.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532b75de96855043be6a3e0226f873f206e971485f531af0d85cffe5dfa0283c +size 99713 diff --git a/datasets/检测仪/train/images/订单1805385_51_7096707.jpg b/datasets/检测仪/train/images/订单1805385_51_7096707.jpg new file mode 100644 index 0000000..5156b2d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805385_51_7096707.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14ec36b7bcdc6d55c8eab6147192d051a7a759eea13fa4546cf4808df9185b9 +size 215967 diff --git a/datasets/检测仪/train/images/订单1805387_51_7096626.jpg b/datasets/检测仪/train/images/订单1805387_51_7096626.jpg new file mode 100644 index 0000000..93797cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805387_51_7096626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8afdc364295178a72504d4a50f548f9072ea910200aff7e7d77b32ea5989a5c5 +size 446127 diff --git a/datasets/检测仪/train/images/订单1805395_51_7096699.jpg b/datasets/检测仪/train/images/订单1805395_51_7096699.jpg new file mode 100644 index 0000000..1388278 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805395_51_7096699.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd72a36474a3b0a7bd7291b59c5751cc36bbd8afebb8787a324120c30693ffe +size 441273 diff --git a/datasets/检测仪/train/images/订单1805397_51_7096898.jpg b/datasets/检测仪/train/images/订单1805397_51_7096898.jpg new file mode 100644 index 0000000..d664cfd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805397_51_7096898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75b46fe21eb7e5ea76c682598207dfcca0d5f9448e729a90afb4d639e2923e8 +size 151756 diff --git a/datasets/检测仪/train/images/订单1805398_51_7096786.jpg b/datasets/检测仪/train/images/订单1805398_51_7096786.jpg new file mode 100644 index 0000000..493e3c0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805398_51_7096786.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af66c2d7de2fe2574044cfc3f7e81514fdc444d28ebb6d62e034cb6177dcce2a +size 375967 diff --git a/datasets/检测仪/train/images/订单1805400_51_7096752.jpg b/datasets/检测仪/train/images/订单1805400_51_7096752.jpg new file mode 100644 index 0000000..881707c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805400_51_7096752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cab292748112b32fd31e60a64265e116a22f0c3e7d23ba11e31b81421514ce +size 95260 diff --git a/datasets/检测仪/train/images/订单1805408_51_7096821.jpg b/datasets/检测仪/train/images/订单1805408_51_7096821.jpg new file mode 100644 index 0000000..18029a9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805408_51_7096821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82ecc93cdd283637d2d542496d073809e985c8248dbfec003ec2ebcb8d36ceb2 +size 136726 diff --git a/datasets/检测仪/train/images/订单1805409_51_7096823.jpg b/datasets/检测仪/train/images/订单1805409_51_7096823.jpg new file mode 100644 index 0000000..6caf0b6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805409_51_7096823.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c542390eb2f33b94d77d8ffd7a34615c22cd5e650e872b810348d4e0dbae5c6b +size 114412 diff --git a/datasets/检测仪/train/images/订单1805410_51_7096872.jpg b/datasets/检测仪/train/images/订单1805410_51_7096872.jpg new file mode 100644 index 0000000..aad0b1f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805410_51_7096872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2768b2e9abb55bd573bcf7602496aa4eda41df27f847c47d6b117f83cad907d7 +size 466219 diff --git a/datasets/检测仪/train/images/订单1805413_51_7096930.jpg b/datasets/检测仪/train/images/订单1805413_51_7096930.jpg new file mode 100644 index 0000000..258fbc6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805413_51_7096930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ae576eab22578353f021503acfd9cf401908b48a2d81b6dda998de60c5460b +size 87048 diff --git a/datasets/检测仪/train/images/订单1805415_51_7096961.jpg b/datasets/检测仪/train/images/订单1805415_51_7096961.jpg new file mode 100644 index 0000000..7923ae5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805415_51_7096961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97bb930443cad6d8f503d0117abba502937c984bd9f0504c69c55a738f9cd6c7 +size 136137 diff --git a/datasets/检测仪/train/images/订单1805416_51_7096938.jpg b/datasets/检测仪/train/images/订单1805416_51_7096938.jpg new file mode 100644 index 0000000..9ded9ce --- /dev/null +++ b/datasets/检测仪/train/images/订单1805416_51_7096938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2442ff8cd033162dc4ead4485172dfdce8a9e1f4240b280489f8fcca5d619d49 +size 147427 diff --git a/datasets/检测仪/train/images/订单1805417_51_7096975.jpg b/datasets/检测仪/train/images/订单1805417_51_7096975.jpg new file mode 100644 index 0000000..64815c9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805417_51_7096975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee5e95a7cce9a056d18cabe19d849c67c49dcbf8aa65fdff34d51e1a58e09fd +size 128683 diff --git a/datasets/检测仪/train/images/订单1805419_51_7097018.jpg b/datasets/检测仪/train/images/订单1805419_51_7097018.jpg new file mode 100644 index 0000000..67912b0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805419_51_7097018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092c46230c93f7e8109563ffbd45f028004efd5b9b0eb464626a5db8b041cecb +size 135746 diff --git a/datasets/检测仪/train/images/订单1805422_51_7097140.jpg b/datasets/检测仪/train/images/订单1805422_51_7097140.jpg new file mode 100644 index 0000000..a789c11 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805422_51_7097140.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cac67ea45930958c98570eab99383690f9aaf7ce08e008150257c82d724b82 +size 397599 diff --git a/datasets/检测仪/train/images/订单1805425_51_7097081.jpg b/datasets/检测仪/train/images/订单1805425_51_7097081.jpg new file mode 100644 index 0000000..2543a97 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805425_51_7097081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5e5d3119f5ea860d6fb4ec3454b2242f6185a8800ad7f0752879239baa89a3 +size 308280 diff --git a/datasets/检测仪/train/images/订单1805428_51_7097030.jpg b/datasets/检测仪/train/images/订单1805428_51_7097030.jpg new file mode 100644 index 0000000..708dfde --- /dev/null +++ b/datasets/检测仪/train/images/订单1805428_51_7097030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ccbbb25d37fda96f5397cb3a812e64fa75ebd0b0e2b447d9560e11b30c9b99 +size 149244 diff --git a/datasets/检测仪/train/images/订单1805429_51_7097065.jpg b/datasets/检测仪/train/images/订单1805429_51_7097065.jpg new file mode 100644 index 0000000..059e358 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805429_51_7097065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a45c713fa7bd9085aef0a8407c8d0aec28bf4dd523b5e0004bf0b77f52cac8 +size 88021 diff --git a/datasets/检测仪/train/images/订单1805430_51_7097192.jpg b/datasets/检测仪/train/images/订单1805430_51_7097192.jpg new file mode 100644 index 0000000..4ed4472 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805430_51_7097192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91e29b76a40989c0b7ca95b50d219ec9d1c1a236bb0e1e9df7b6329d23c24a1 +size 492598 diff --git a/datasets/检测仪/train/images/订单1805431_51_7097106.jpg b/datasets/检测仪/train/images/订单1805431_51_7097106.jpg new file mode 100644 index 0000000..74b3ba4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805431_51_7097106.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd50a3e168e176fb1eafa4ea6ee1b2cae27982cdf50b53c7b90d0576375899d +size 130926 diff --git a/datasets/检测仪/train/images/订单1805433_51_7097054.jpg b/datasets/检测仪/train/images/订单1805433_51_7097054.jpg new file mode 100644 index 0000000..8a4f8a3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805433_51_7097054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89926874563d1d03bd279a7e50043b3c41405f24a3b87f1fce4fba8e78c58028 +size 443521 diff --git a/datasets/检测仪/train/images/订单1805437_51_7097133.jpg b/datasets/检测仪/train/images/订单1805437_51_7097133.jpg new file mode 100644 index 0000000..11561a0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805437_51_7097133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de88d942a290d2a3bddb8f484fa3bfd1be0ea95198532207cf2a750a3fa295d +size 116999 diff --git a/datasets/检测仪/train/images/订单1805439_51_7097139.jpg b/datasets/检测仪/train/images/订单1805439_51_7097139.jpg new file mode 100644 index 0000000..b93902c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805439_51_7097139.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e277a1eef3e70f48f8dd32be116c980ee6595dc3f5d2c0ed4063029544b9949f +size 443084 diff --git a/datasets/检测仪/train/images/订单1805444_51_7097190.jpg b/datasets/检测仪/train/images/订单1805444_51_7097190.jpg new file mode 100644 index 0000000..f954b8a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805444_51_7097190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1af338aa809de0993d85fb7bb2cbe3622df5178850c7d489f0854aa802a2a7 +size 338283 diff --git a/datasets/检测仪/train/images/订单1805445_51_7097229.jpg b/datasets/检测仪/train/images/订单1805445_51_7097229.jpg new file mode 100644 index 0000000..f63b2cf --- /dev/null +++ b/datasets/检测仪/train/images/订单1805445_51_7097229.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fba1aa400cd48bf859a1cb94961d38c537ac84f45ce1f331f53584c29a49aeb +size 98937 diff --git a/datasets/检测仪/train/images/订单1805446_51_7097173.jpg b/datasets/检测仪/train/images/订单1805446_51_7097173.jpg new file mode 100644 index 0000000..188628f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805446_51_7097173.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1955a5d83aba4e540f5d52df37ae22fa424ab03e436257bd488ab48f16aff5 +size 398329 diff --git a/datasets/检测仪/train/images/订单1805449_51_7097273.jpg b/datasets/检测仪/train/images/订单1805449_51_7097273.jpg new file mode 100644 index 0000000..6203a4d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805449_51_7097273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b66ab39edc3327e341c4c07c249cc757c9a7dad7f82dc53ba11479931f9905 +size 370859 diff --git a/datasets/检测仪/train/images/订单1805452_51_7097304.jpg b/datasets/检测仪/train/images/订单1805452_51_7097304.jpg new file mode 100644 index 0000000..5b90fc6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805452_51_7097304.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfddf6cd636a0a581debef1174bd1da72572d16ef452523cbd034aff3a15e52 +size 156467 diff --git a/datasets/检测仪/train/images/订单1805453_51_7097272.jpg b/datasets/检测仪/train/images/订单1805453_51_7097272.jpg new file mode 100644 index 0000000..ceaa182 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805453_51_7097272.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca939eb7fc39bad6bfe72d657785ab6e2e0c35ed747b48c17b51699e4bb00b8 +size 304661 diff --git a/datasets/检测仪/train/images/订单1805454_51_7097240.jpg b/datasets/检测仪/train/images/订单1805454_51_7097240.jpg new file mode 100644 index 0000000..a0025ad --- /dev/null +++ b/datasets/检测仪/train/images/订单1805454_51_7097240.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6136e9450a80cc37d038c65093f02fd2a739ce5f2c08afe9dbff060e10230772 +size 121274 diff --git a/datasets/检测仪/train/images/订单1805458_51_7097359.jpg b/datasets/检测仪/train/images/订单1805458_51_7097359.jpg new file mode 100644 index 0000000..e1efcc6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805458_51_7097359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150b1f29a0b1d6ead219b3cfd3c56639c3d6fded1d562787ebc2fdc932f85958 +size 112567 diff --git a/datasets/检测仪/train/images/订单1805459_51_7097355.jpg b/datasets/检测仪/train/images/订单1805459_51_7097355.jpg new file mode 100644 index 0000000..22b89d1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805459_51_7097355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5e7cb840adeed9b4d410a71e76c292849ab62ef027edb27c30e269a1e57d2f +size 124770 diff --git a/datasets/检测仪/train/images/订单1805460_51_7097375.jpg b/datasets/检测仪/train/images/订单1805460_51_7097375.jpg new file mode 100644 index 0000000..453a5d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805460_51_7097375.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949affdb2beebb788ea02594ec7153e194bab44537b17cb961a42cea197b20a5 +size 309963 diff --git a/datasets/检测仪/train/images/订单1805461_51_7097444.jpg b/datasets/检测仪/train/images/订单1805461_51_7097444.jpg new file mode 100644 index 0000000..5b55e65 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805461_51_7097444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a864c5bae6e0732c961f22e715e1b01a4d7edadd144826a4a59a0cbc01b5ab +size 109468 diff --git a/datasets/检测仪/train/images/订单1805463_51_7097391.jpg b/datasets/检测仪/train/images/订单1805463_51_7097391.jpg new file mode 100644 index 0000000..e7732d6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805463_51_7097391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a70335dd9e34296893c880ba1aa223fd0332ec44394209cc62f837393e618bb9 +size 116990 diff --git a/datasets/检测仪/train/images/订单1805466_51_7097460.jpg b/datasets/检测仪/train/images/订单1805466_51_7097460.jpg new file mode 100644 index 0000000..31bb31c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805466_51_7097460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53efffcd5b158e9aa645227c48cdfabd130dd6e86265758534891dce418d375 +size 140598 diff --git a/datasets/检测仪/train/images/订单1805468_51_7097492.jpg b/datasets/检测仪/train/images/订单1805468_51_7097492.jpg new file mode 100644 index 0000000..02dcb75 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805468_51_7097492.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26a6fc54876c6ffff1902cf05c33cf59f849245f99093c3651884fb4f2bc278 +size 72605 diff --git a/datasets/检测仪/train/images/订单1805469_51_7097445.jpg b/datasets/检测仪/train/images/订单1805469_51_7097445.jpg new file mode 100644 index 0000000..328d71b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805469_51_7097445.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcbcac55e5b02f57e75f5a997c574357d6393a79de1c61c6513f6cefc4605a0 +size 114554 diff --git a/datasets/检测仪/train/images/订单1805471_51_7097467.jpg b/datasets/检测仪/train/images/订单1805471_51_7097467.jpg new file mode 100644 index 0000000..21cb2e0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805471_51_7097467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0866b7ec5ae120ffcb7dd7cbc71f2431570a9a4043bc1968e348065486919b57 +size 114029 diff --git a/datasets/检测仪/train/images/订单1805472_51_7097529.jpg b/datasets/检测仪/train/images/订单1805472_51_7097529.jpg new file mode 100644 index 0000000..83a7e96 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805472_51_7097529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6352a84ef2993e9e5c02cf993967e0dd5033e63e3cceb28db941a060a6cd46d +size 97621 diff --git a/datasets/检测仪/train/images/订单1805473_51_7097537.jpg b/datasets/检测仪/train/images/订单1805473_51_7097537.jpg new file mode 100644 index 0000000..c9dd05e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805473_51_7097537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de53da8d2774df59548c173bcc62b7584f62c2ab869e39593ed7df1f4f3275f5 +size 117297 diff --git a/datasets/检测仪/train/images/订单1805479_51_7097597.jpg b/datasets/检测仪/train/images/订单1805479_51_7097597.jpg new file mode 100644 index 0000000..b6883b1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805479_51_7097597.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3b367a8cddb3f2a2d2a46388687460420946b44b3236518b0071a76137e9ad +size 96927 diff --git a/datasets/检测仪/train/images/订单1805483_51_7097639.jpg b/datasets/检测仪/train/images/订单1805483_51_7097639.jpg new file mode 100644 index 0000000..265361f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805483_51_7097639.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c295fba952fbe8dafc3377c347d9f5a1540c2394805a44c4288079d63a491c8 +size 630767 diff --git a/datasets/检测仪/train/images/订单1805485_51_7097619.jpg b/datasets/检测仪/train/images/订单1805485_51_7097619.jpg new file mode 100644 index 0000000..5046aad --- /dev/null +++ b/datasets/检测仪/train/images/订单1805485_51_7097619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad84ed8eeae863567dd08b0a1491cee6eb714d027044f525dae2fd5cd611eab2 +size 728883 diff --git a/datasets/检测仪/train/images/订单1805489_51_7097678.jpg b/datasets/检测仪/train/images/订单1805489_51_7097678.jpg new file mode 100644 index 0000000..46602d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805489_51_7097678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bb79f2381c36cc662e83100176560231ffd85b22df220ade1cc0a925bda730 +size 400290 diff --git a/datasets/检测仪/train/images/订单1805490_51_7097677.jpg b/datasets/检测仪/train/images/订单1805490_51_7097677.jpg new file mode 100644 index 0000000..1da46a0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805490_51_7097677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccf74037a38c81b7d6c0e1c630f9cb5318dcb8f2e5190e8a415870f2a156ab2 +size 70263 diff --git a/datasets/检测仪/train/images/订单1805494_51_7097669.jpg b/datasets/检测仪/train/images/订单1805494_51_7097669.jpg new file mode 100644 index 0000000..603588d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805494_51_7097669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4403806aa518c2be4c82973140b6d0739a52b297a4504f563483804b324427d6 +size 137315 diff --git a/datasets/检测仪/train/images/订单1805495_51_7097888.jpg b/datasets/检测仪/train/images/订单1805495_51_7097888.jpg new file mode 100644 index 0000000..89adaeb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805495_51_7097888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b933109b88d68a7a0618165810b3822727a85838f624b42d14fa2464c666e48c +size 125656 diff --git a/datasets/检测仪/train/images/订单1805497_51_7097714.jpg b/datasets/检测仪/train/images/订单1805497_51_7097714.jpg new file mode 100644 index 0000000..859a616 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805497_51_7097714.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e66a757028c439ca78fa82f18e36224a8b961d622b7079f3825468ffae92010 +size 76771 diff --git a/datasets/检测仪/train/images/订单1805498_51_7097737.jpg b/datasets/检测仪/train/images/订单1805498_51_7097737.jpg new file mode 100644 index 0000000..36a83fa --- /dev/null +++ b/datasets/检测仪/train/images/订单1805498_51_7097737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283f94112c55884b878a8e778cacce2ac3f7ac9d1b6fe0047d445e3a9480b34c +size 109781 diff --git a/datasets/检测仪/train/images/订单1805499_51_7097753.jpg b/datasets/检测仪/train/images/订单1805499_51_7097753.jpg new file mode 100644 index 0000000..50c1ceb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805499_51_7097753.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175e1f8d23c215613a4577632d6d7c941a8d6e7f51591f48d62f22e432075250 +size 110251 diff --git a/datasets/检测仪/train/images/订单1805500_51_7097767.jpg b/datasets/检测仪/train/images/订单1805500_51_7097767.jpg new file mode 100644 index 0000000..d18ed1c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805500_51_7097767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eb86f2f7541544214c497001198d6608d0640bfddccbe5fcef3654712ead2 +size 118271 diff --git a/datasets/检测仪/train/images/订单1805506_51_7097821.jpg b/datasets/检测仪/train/images/订单1805506_51_7097821.jpg new file mode 100644 index 0000000..b221870 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805506_51_7097821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae702c1e13fa7d12ec23613e015a37b7b53b7c118648d0ba761cd546b441d2cd +size 1026104 diff --git a/datasets/检测仪/train/images/订单1805509_51_7097852.jpg b/datasets/检测仪/train/images/订单1805509_51_7097852.jpg new file mode 100644 index 0000000..16dd228 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805509_51_7097852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc72296bc30d075a74c33a5391d98dddcfd6563df8dcb6686913827e9e934ac +size 149018 diff --git a/datasets/检测仪/train/images/订单1805510_51_7098040.jpg b/datasets/检测仪/train/images/订单1805510_51_7098040.jpg new file mode 100644 index 0000000..5eed5cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805510_51_7098040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111039cd4b581f9baaf6d895df96446063b47abcf2651ccba44efbabd37bfc87 +size 445095 diff --git a/datasets/检测仪/train/images/订单1805511_51_7097845.jpg b/datasets/检测仪/train/images/订单1805511_51_7097845.jpg new file mode 100644 index 0000000..6a7dc7b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805511_51_7097845.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30592e53a43e3d22030e67d96454e2f3f8643b3031b59cb6b5aed7835bc3f7d4 +size 120683 diff --git a/datasets/检测仪/train/images/订单1805512_51_7097838.jpg b/datasets/检测仪/train/images/订单1805512_51_7097838.jpg new file mode 100644 index 0000000..0e1a20b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805512_51_7097838.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2f2884de7fb377999c512ac8ae730e8d8a4e47849e3d751589d99833524b8d +size 129728 diff --git a/datasets/检测仪/train/images/订单1805513_51_7097862.jpg b/datasets/检测仪/train/images/订单1805513_51_7097862.jpg new file mode 100644 index 0000000..e95ee7e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805513_51_7097862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbdcadfcfaf05008bdc9d005a149eae5741fdfde379ad052171ebf85ecbe0df +size 141971 diff --git a/datasets/检测仪/train/images/订单1805520_51_7097937.jpg b/datasets/检测仪/train/images/订单1805520_51_7097937.jpg new file mode 100644 index 0000000..9f1de11 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805520_51_7097937.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f6dd35236d741fdd0b6cfb5e4524568e5e5496312a67e76f2ab82b6ad1f94d +size 126404 diff --git a/datasets/检测仪/train/images/订单1805524_51_7097938.jpg b/datasets/检测仪/train/images/订单1805524_51_7097938.jpg new file mode 100644 index 0000000..a746052 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805524_51_7097938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0553695f922f37823aedb0caa1d45d5b6da29c3f30e361ee3e37c028bddea908 +size 163989 diff --git a/datasets/检测仪/train/images/订单1805525_51_7097930.jpg b/datasets/检测仪/train/images/订单1805525_51_7097930.jpg new file mode 100644 index 0000000..855c4c3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805525_51_7097930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1d04c56e0d0849ecbe889d65275bc47c0e6d53520934ee08adc6bbb3c66162 +size 181540 diff --git a/datasets/检测仪/train/images/订单1805526_51_7097979.jpg b/datasets/检测仪/train/images/订单1805526_51_7097979.jpg new file mode 100644 index 0000000..0af0a06 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805526_51_7097979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3699d4ce2a1f80f3dbaf2c597e147ffa81cd658f9b119ccc7ba290ccf8b84091 +size 112877 diff --git a/datasets/检测仪/train/images/订单1805528_51_7097986.jpg b/datasets/检测仪/train/images/订单1805528_51_7097986.jpg new file mode 100644 index 0000000..285a06b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805528_51_7097986.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b90ddb2154fb0c7149e20d442fcbff87c415972d3ab4f40abe09e72442293 +size 490459 diff --git a/datasets/检测仪/train/images/订单1805530_51_7098034.jpg b/datasets/检测仪/train/images/订单1805530_51_7098034.jpg new file mode 100644 index 0000000..8a6bdaa --- /dev/null +++ b/datasets/检测仪/train/images/订单1805530_51_7098034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8fbb4252a09f3af4c1087bbab8a817ab5949a570e82d35bc6a9095dc21f6b6 +size 120756 diff --git a/datasets/检测仪/train/images/订单1805537_51_7097998.jpg b/datasets/检测仪/train/images/订单1805537_51_7097998.jpg new file mode 100644 index 0000000..381890b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805537_51_7097998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8941b751e038c3f6c1bbd30adfe14fc3e48ba0a2d20b25f3d5e0a010e83e44 +size 147677 diff --git a/datasets/检测仪/train/images/订单1805539_51_7098124.jpg b/datasets/检测仪/train/images/订单1805539_51_7098124.jpg new file mode 100644 index 0000000..24f240f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805539_51_7098124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c2bccd1e1aee172372df552e6a494ab473b319bbb21b634146d7bbc8ecfd38 +size 530691 diff --git a/datasets/检测仪/train/images/订单1805540_51_7098097.jpg b/datasets/检测仪/train/images/订单1805540_51_7098097.jpg new file mode 100644 index 0000000..61f4e48 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805540_51_7098097.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995a60f0b8c88bd76174b10b2b25fdf16c60200f303695d20ae29df1bf314461 +size 432512 diff --git a/datasets/检测仪/train/images/订单1805542_51_7098142.jpg b/datasets/检测仪/train/images/订单1805542_51_7098142.jpg new file mode 100644 index 0000000..352ca4a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805542_51_7098142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58afc5f3bb0af1b5c126b7103bda245bf7a9092cdecb6b942c44350c83c746 +size 512162 diff --git a/datasets/检测仪/train/images/订单1805543_51_7098125.jpg b/datasets/检测仪/train/images/订单1805543_51_7098125.jpg new file mode 100644 index 0000000..3cd799a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805543_51_7098125.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcf0ff3842ac7b8c829c1fac490448239746fa8335c88b94613f84abf8e986a +size 92102 diff --git a/datasets/检测仪/train/images/订单1805545_51_7098061.jpg b/datasets/检测仪/train/images/订单1805545_51_7098061.jpg new file mode 100644 index 0000000..88ae571 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805545_51_7098061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494291cc817fe7b60d85e412e941cc5f76e155c12fbda6b71bd0d73ddb1e7285 +size 107174 diff --git a/datasets/检测仪/train/images/订单1805548_51_7098174.jpg b/datasets/检测仪/train/images/订单1805548_51_7098174.jpg new file mode 100644 index 0000000..897900f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805548_51_7098174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6fdabfe979b78e78076cb03bc97566fd8c122092d039bb13cc5c4e0a19a6f2 +size 171362 diff --git a/datasets/检测仪/train/images/订单1805552_51_7098206.jpg b/datasets/检测仪/train/images/订单1805552_51_7098206.jpg new file mode 100644 index 0000000..c30a660 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805552_51_7098206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97894a174bb21f7b7e7b835cfa8a65615749ab741ff1cb6f1e663d3a1623cd38 +size 378655 diff --git a/datasets/检测仪/train/images/订单1805556_51_7098248.jpg b/datasets/检测仪/train/images/订单1805556_51_7098248.jpg new file mode 100644 index 0000000..d78b8e0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805556_51_7098248.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233f9132c9509f38b5dba09fdc57d7c96f4bc23ff54e346373919595585e4859 +size 115214 diff --git a/datasets/检测仪/train/images/订单1805557_51_7098288.jpg b/datasets/检测仪/train/images/订单1805557_51_7098288.jpg new file mode 100644 index 0000000..6bb9047 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805557_51_7098288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec82907f63e0597f67968c68c6ab758ef6267fd5249ef3720e902b9c0cf00c2 +size 146336 diff --git a/datasets/检测仪/train/images/订单1805558_51_7098208.jpg b/datasets/检测仪/train/images/订单1805558_51_7098208.jpg new file mode 100644 index 0000000..2317c0b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805558_51_7098208.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107e1b575fd7533ce86eb65ac11119314b5d8ac19b3ea6024a54251558b33918 +size 463272 diff --git a/datasets/检测仪/train/images/订单1805559_51_7098303.jpg b/datasets/检测仪/train/images/订单1805559_51_7098303.jpg new file mode 100644 index 0000000..8d9d9f7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805559_51_7098303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5a4e5cb25d0f5dc47edd3a789fd495dcffda5c7d7d9c9c4f8f0b347faa1ecc +size 735669 diff --git a/datasets/检测仪/train/images/订单1805560_51_7098355.jpg b/datasets/检测仪/train/images/订单1805560_51_7098355.jpg new file mode 100644 index 0000000..b61c30a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805560_51_7098355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e276ca0adf5718031b453c8344d621705d5313ffde503bcefb348cd9be3fc +size 475724 diff --git a/datasets/检测仪/train/images/订单1805561_51_7098457.jpg b/datasets/检测仪/train/images/订单1805561_51_7098457.jpg new file mode 100644 index 0000000..ea0d8ae --- /dev/null +++ b/datasets/检测仪/train/images/订单1805561_51_7098457.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a485641e7cc2419b336ab16a4df9a627d37468f4468e1f7d9a369cd7b8b3f8 +size 475817 diff --git a/datasets/检测仪/train/images/订单1805565_51_7098285.jpg b/datasets/检测仪/train/images/订单1805565_51_7098285.jpg new file mode 100644 index 0000000..3a02c1f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805565_51_7098285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12827fb66c68d0bd3cb87ade4c40f17d2b493d6633e9bb2da2595561a9488c4 +size 123226 diff --git a/datasets/检测仪/train/images/订单1805567_51_7098253.jpg b/datasets/检测仪/train/images/订单1805567_51_7098253.jpg new file mode 100644 index 0000000..2dd5bdb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805567_51_7098253.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fb3dbeefb4697c5725d6dc5464bbb972dac0e8a108eefcf93563412514ec2b +size 128855 diff --git a/datasets/检测仪/train/images/订单1805569_51_7098391.jpg b/datasets/检测仪/train/images/订单1805569_51_7098391.jpg new file mode 100644 index 0000000..980e0ed --- /dev/null +++ b/datasets/检测仪/train/images/订单1805569_51_7098391.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b483119a816864c92c66e176f2a0a3e2ff3db0a51e338a19e2a6f12d8213f52 +size 138920 diff --git a/datasets/检测仪/train/images/订单1805570_51_7098370.jpg b/datasets/检测仪/train/images/订单1805570_51_7098370.jpg new file mode 100644 index 0000000..3fd213f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805570_51_7098370.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bf38b5e96d8277732d0663ebb6274a908fd5be29366ea1ab3e73c0f337c92c +size 108490 diff --git a/datasets/检测仪/train/images/订单1805571_51_7099256.jpg b/datasets/检测仪/train/images/订单1805571_51_7099256.jpg new file mode 100644 index 0000000..34a6c6c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805571_51_7099256.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04b8b1b8ce36b190ed151213489ec72472928a2247c8e572bb95b1ff48092f2 +size 224798 diff --git a/datasets/检测仪/train/images/订单1805573_51_7098331.jpg b/datasets/检测仪/train/images/订单1805573_51_7098331.jpg new file mode 100644 index 0000000..d92a956 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805573_51_7098331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2720651be3c60124e5b2bf88566ddde9cdd5447f7c24eda57e1ab33f5c850e9 +size 131558 diff --git a/datasets/检测仪/train/images/订单1805575_51_7098413.jpg b/datasets/检测仪/train/images/订单1805575_51_7098413.jpg new file mode 100644 index 0000000..2ce8253 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805575_51_7098413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e92375248c448c65037a57f5d3cd8b22a86cc2187012f76e3f3d464dc25815 +size 156530 diff --git a/datasets/检测仪/train/images/订单1805576_51_7098503.jpg b/datasets/检测仪/train/images/订单1805576_51_7098503.jpg new file mode 100644 index 0000000..8df3112 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805576_51_7098503.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93cfe249d9ed08b8b3db394164e42681918b1d60fe345a03677f9cbce44b8cc8 +size 546052 diff --git a/datasets/检测仪/train/images/订单1805578_51_7098451.jpg b/datasets/检测仪/train/images/订单1805578_51_7098451.jpg new file mode 100644 index 0000000..fa2cea7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805578_51_7098451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c80cf4468440b0a3303ea5c8eb9067fdc67d4e91bd819eb368293740e342ee0 +size 188134 diff --git a/datasets/检测仪/train/images/订单1805579_51_7098438.jpg b/datasets/检测仪/train/images/订单1805579_51_7098438.jpg new file mode 100644 index 0000000..9571c68 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805579_51_7098438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92a3c49a461002f46df1000e2f70078bf60348ea1ddc13cde94d5aa6a5e3126 +size 573231 diff --git a/datasets/检测仪/train/images/订单1805580_51_7098406.jpg b/datasets/检测仪/train/images/订单1805580_51_7098406.jpg new file mode 100644 index 0000000..191de05 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805580_51_7098406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786de63bd162599ac5a89f6319fc99e6d30bccc06d0627d83e7b84a0648e299d +size 460617 diff --git a/datasets/检测仪/train/images/订单1805583_51_7098571.jpg b/datasets/检测仪/train/images/订单1805583_51_7098571.jpg new file mode 100644 index 0000000..f18b7a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805583_51_7098571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8cdcde121581f098175f3132fc9e08630caa107df766b64ba248e9f4130f7a4 +size 141382 diff --git a/datasets/检测仪/train/images/订单1805587_51_7098669.jpg b/datasets/检测仪/train/images/订单1805587_51_7098669.jpg new file mode 100644 index 0000000..5d62126 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805587_51_7098669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9cc7f8498a305b4369228e5ef8c6ef133817765e1656ce9b58b5d5bb4b0486 +size 495865 diff --git a/datasets/检测仪/train/images/订单1805592_51_7098703.jpg b/datasets/检测仪/train/images/订单1805592_51_7098703.jpg new file mode 100644 index 0000000..c97946f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805592_51_7098703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a667cf70fcd422732eb458857e1a2f4778ff206f8abdef185e792e6a5e0377 +size 388063 diff --git a/datasets/检测仪/train/images/订单1805593_51_7098545.jpg b/datasets/检测仪/train/images/订单1805593_51_7098545.jpg new file mode 100644 index 0000000..954b7be --- /dev/null +++ b/datasets/检测仪/train/images/订单1805593_51_7098545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4961ceae89a3112e9ea1498ce9f0b7d1913a0801f5c30198bafd4b3793a9cbb4 +size 156386 diff --git a/datasets/检测仪/train/images/订单1805597_51_7098528.jpg b/datasets/检测仪/train/images/订单1805597_51_7098528.jpg new file mode 100644 index 0000000..30c3f01 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805597_51_7098528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afe4aa1bff8ef0f3790d6d906d5314ff8391c6e90cb672c6c597ca293ab4184a +size 148251 diff --git a/datasets/检测仪/train/images/订单1805605_51_7098836.jpg b/datasets/检测仪/train/images/订单1805605_51_7098836.jpg new file mode 100644 index 0000000..4562bec --- /dev/null +++ b/datasets/检测仪/train/images/订单1805605_51_7098836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2e379acdff2ab2f71e7f0f48c71455f4410b7b06bae43586e55379ed276827 +size 335324 diff --git a/datasets/检测仪/train/images/订单1805609_51_7098743.jpg b/datasets/检测仪/train/images/订单1805609_51_7098743.jpg new file mode 100644 index 0000000..586bd6b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805609_51_7098743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48a759d832b4d1cf9b45981e7e9cd3eb71f3b4b59b5a74fbdca17a37e8eb4c5 +size 138900 diff --git a/datasets/检测仪/train/images/订单1805615_51_7098757.jpg b/datasets/检测仪/train/images/订单1805615_51_7098757.jpg new file mode 100644 index 0000000..14b345b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805615_51_7098757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38fdcde322d2e59a947074d9323d084d859d1fed592088c29e70dcaea6476af6 +size 109481 diff --git a/datasets/检测仪/train/images/订单1805620_51_7098837.jpg b/datasets/检测仪/train/images/订单1805620_51_7098837.jpg new file mode 100644 index 0000000..8d9952f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805620_51_7098837.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9630ae62f6eb7a46f78feea7f81647db331028c30b5eb5781c503c470ed91580 +size 122382 diff --git a/datasets/检测仪/train/images/订单1805621_51_7098899.jpg b/datasets/检测仪/train/images/订单1805621_51_7098899.jpg new file mode 100644 index 0000000..b1a5567 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805621_51_7098899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a2cbae92f60f95a664b3a2c86e60a1b82092ca3eb1e79759e4c36e7ff2bb22 +size 98531 diff --git a/datasets/检测仪/train/images/订单1805624_51_7098851.jpg b/datasets/检测仪/train/images/订单1805624_51_7098851.jpg new file mode 100644 index 0000000..605d418 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805624_51_7098851.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d441034dd8974f44fa491ef2051bf7f7f56e62a23e55a328b1f0b532690751 +size 149195 diff --git a/datasets/检测仪/train/images/订单1805627_51_7099446.jpg b/datasets/检测仪/train/images/订单1805627_51_7099446.jpg new file mode 100644 index 0000000..920d95d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805627_51_7099446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab819d73d104fa00db6b2bbc09d8111524ec4f168998c2785342afa2601a43 +size 157669 diff --git a/datasets/检测仪/train/images/订单1805629_51_7098926.jpg b/datasets/检测仪/train/images/订单1805629_51_7098926.jpg new file mode 100644 index 0000000..5b051d3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805629_51_7098926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666f6b699ff390efce84da969803132f129b22cb06e693be76c263531a54c582 +size 470911 diff --git a/datasets/检测仪/train/images/订单1805632_51_7098946.jpg b/datasets/检测仪/train/images/订单1805632_51_7098946.jpg new file mode 100644 index 0000000..a2d552c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805632_51_7098946.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a18996ceed2a0d4b4c751dc7cd80b3f7bd582d5251e9eac42b294044e36f9f8 +size 246273 diff --git a/datasets/检测仪/train/images/订单1805638_51_7098944.jpg b/datasets/检测仪/train/images/订单1805638_51_7098944.jpg new file mode 100644 index 0000000..42b7612 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805638_51_7098944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b5e19116a11be35357bcafdeedac3292b748b67dd94dfcba7083832850084d +size 174642 diff --git a/datasets/检测仪/train/images/订单1805639_51_7098976.jpg b/datasets/检测仪/train/images/订单1805639_51_7098976.jpg new file mode 100644 index 0000000..86b349f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805639_51_7098976.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c69e52a6e3f79a6e51d5d4eaf4c4cc283d4e0998eee199528b0d90ca2b1081 +size 59231 diff --git a/datasets/检测仪/train/images/订单1805640_51_7098963.jpg b/datasets/检测仪/train/images/订单1805640_51_7098963.jpg new file mode 100644 index 0000000..1244712 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805640_51_7098963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3232d912b8b4898a7c86066d577cc64ff10ff31eaa8625d8203f0529698ef154 +size 107657 diff --git a/datasets/检测仪/train/images/订单1805641_51_7099018.jpg b/datasets/检测仪/train/images/订单1805641_51_7099018.jpg new file mode 100644 index 0000000..b798c80 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805641_51_7099018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50d575e04c4abe02cc60ea766fc4dc9777c695e93b017c0f62b830daefa681a +size 349462 diff --git a/datasets/检测仪/train/images/订单1805650_51_7099158.jpg b/datasets/检测仪/train/images/订单1805650_51_7099158.jpg new file mode 100644 index 0000000..f9586a3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805650_51_7099158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ef6282629f1af11899efee2faf53ea61d3c16e4a540619c0ab164fc6a4b9b9 +size 138409 diff --git a/datasets/检测仪/train/images/订单1805651_51_7099073.jpg b/datasets/检测仪/train/images/订单1805651_51_7099073.jpg new file mode 100644 index 0000000..faa3a5b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805651_51_7099073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076bc906cda2ce16236feb0f7ce72a518b23ea4a0c3683ae44722cc2b93569a0 +size 496898 diff --git a/datasets/检测仪/train/images/订单1805657_51_7099117.jpg b/datasets/检测仪/train/images/订单1805657_51_7099117.jpg new file mode 100644 index 0000000..594e610 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805657_51_7099117.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ec2677b92aea0696a8640a2bf262df34e9301b96fb47c217eebd5efb20f539 +size 219746 diff --git a/datasets/检测仪/train/images/订单1805658_51_7099576.jpg b/datasets/检测仪/train/images/订单1805658_51_7099576.jpg new file mode 100644 index 0000000..a39a1cf --- /dev/null +++ b/datasets/检测仪/train/images/订单1805658_51_7099576.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e0bac6058e6211bedf082789c9b10276c5df66ffa3de8630aa2642e119ced8 +size 876953 diff --git a/datasets/检测仪/train/images/订单1805659_51_7099146.jpg b/datasets/检测仪/train/images/订单1805659_51_7099146.jpg new file mode 100644 index 0000000..54e8e77 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805659_51_7099146.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7aea0d98d390dba1df1f624d6d5467352ed82e5eb7928de57a21de4e595cea +size 145564 diff --git a/datasets/检测仪/train/images/订单1805661_51_7099341.jpg b/datasets/检测仪/train/images/订单1805661_51_7099341.jpg new file mode 100644 index 0000000..943fd7a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805661_51_7099341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b51ad415b89506eb8abadd1186ca720a80aae897541421e442154ff147856d +size 224543 diff --git a/datasets/检测仪/train/images/订单1805662_51_7099241.jpg b/datasets/检测仪/train/images/订单1805662_51_7099241.jpg new file mode 100644 index 0000000..59eaab8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805662_51_7099241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e834d3d71f6641cc19f4573ffee7e624d299fe08cdd5e0ab01b8cb0631aa763a +size 149756 diff --git a/datasets/检测仪/train/images/订单1805667_51_7099345.jpg b/datasets/检测仪/train/images/订单1805667_51_7099345.jpg new file mode 100644 index 0000000..7b9162b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805667_51_7099345.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef5def3b873eaea3d82187cb6f3aae741a70c00e7625aa5e79295f5302df66c +size 325645 diff --git a/datasets/检测仪/train/images/订单1805672_51_7099269.jpg b/datasets/检测仪/train/images/订单1805672_51_7099269.jpg new file mode 100644 index 0000000..ae07056 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805672_51_7099269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3488fbdefcce2af2d72636fa8689a04b7ce7531dff59052ad164bd46702e4c +size 125152 diff --git a/datasets/检测仪/train/images/订单1805677_51_7099314.jpg b/datasets/检测仪/train/images/订单1805677_51_7099314.jpg new file mode 100644 index 0000000..67238e0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805677_51_7099314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c5dfbeb9d1cedaef7eb2ef03cf041132fc1705269275327c968334a2056aa7 +size 130474 diff --git a/datasets/检测仪/train/images/订单1805680_51_7099400.jpg b/datasets/检测仪/train/images/订单1805680_51_7099400.jpg new file mode 100644 index 0000000..f6eb997 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805680_51_7099400.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67f52c08f5a32d48319a786bbb012c85fbeac05edba2d136611eddb0a57f486 +size 238478 diff --git a/datasets/检测仪/train/images/订单1805681_51_7099392.jpg b/datasets/检测仪/train/images/订单1805681_51_7099392.jpg new file mode 100644 index 0000000..b9fa607 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805681_51_7099392.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdaaeda7ee5ee7458db9d1632a3eaa38e35636659b02b6643d0aad2865ee0f7 +size 329492 diff --git a/datasets/检测仪/train/images/订单1805683_51_7099308.jpg b/datasets/检测仪/train/images/订单1805683_51_7099308.jpg new file mode 100644 index 0000000..331cb51 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805683_51_7099308.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a02ba8e70a79f6151471e621de9ccc0d3c5995f37efd0325995a2a985cf19c +size 122320 diff --git a/datasets/检测仪/train/images/订单1805684_51_7099421.jpg b/datasets/检测仪/train/images/订单1805684_51_7099421.jpg new file mode 100644 index 0000000..6c1a12b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805684_51_7099421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c96b9dbe05fc585a11b6db15f69a15c161e16132348409252dd764aaa9289cf +size 97413 diff --git a/datasets/检测仪/train/images/订单1805691_51_7099534.jpg b/datasets/检测仪/train/images/订单1805691_51_7099534.jpg new file mode 100644 index 0000000..91328d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805691_51_7099534.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf26712e0f2cd581c9c9d8e6a5b9e60052a5c4a5f5ec4329a8bf773cd0049dae +size 430435 diff --git a/datasets/检测仪/train/images/订单1805692_51_7099444.jpg b/datasets/检测仪/train/images/订单1805692_51_7099444.jpg new file mode 100644 index 0000000..7ac968d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805692_51_7099444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3339fcaf3aea4c4cc8f8632f54cce1c8e4803051afaaab6a84220f3d0641ad +size 290946 diff --git a/datasets/检测仪/train/images/订单1805694_51_7099545.jpg b/datasets/检测仪/train/images/订单1805694_51_7099545.jpg new file mode 100644 index 0000000..3a12819 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805694_51_7099545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946206787f9de1292e8a2f948d4cb2f37b21c9f3ce6897497b505957ef41f176 +size 98029 diff --git a/datasets/检测仪/train/images/订单1805696_51_7099528.jpg b/datasets/检测仪/train/images/订单1805696_51_7099528.jpg new file mode 100644 index 0000000..1bd4d49 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805696_51_7099528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899cc04a5208679a7540e8403a97e6812d6f951c96cae5bb3472085eec56922c +size 148465 diff --git a/datasets/检测仪/train/images/订单1805698_51_7099633.jpg b/datasets/检测仪/train/images/订单1805698_51_7099633.jpg new file mode 100644 index 0000000..202a9e3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805698_51_7099633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7915c7c8933a08868ecaab92ca44a259f70c4669170704942a1dba9a04b793 +size 149939 diff --git a/datasets/检测仪/train/images/订单1805699_51_7099594.jpg b/datasets/检测仪/train/images/订单1805699_51_7099594.jpg new file mode 100644 index 0000000..e470ad2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805699_51_7099594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c302e421c3e2c052352fc9d228e63536b4194a30534f010a30dbe57427b6ed89 +size 132967 diff --git a/datasets/检测仪/train/images/订单1805703_51_7099678.jpg b/datasets/检测仪/train/images/订单1805703_51_7099678.jpg new file mode 100644 index 0000000..8bb40e9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805703_51_7099678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314273abfff660a3d33d59449e83d24ad93073747d66d438cea0cc04971eead9 +size 155462 diff --git a/datasets/检测仪/train/images/订单1805704_51_7099624.jpg b/datasets/检测仪/train/images/订单1805704_51_7099624.jpg new file mode 100644 index 0000000..eaeb550 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805704_51_7099624.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34e36840039a9fe0200cad3730d389147ec9618b87564cd2b425e62aab07681 +size 315617 diff --git a/datasets/检测仪/train/images/订单1805706_51_7099653.jpg b/datasets/检测仪/train/images/订单1805706_51_7099653.jpg new file mode 100644 index 0000000..43410cc --- /dev/null +++ b/datasets/检测仪/train/images/订单1805706_51_7099653.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9955c4b84e4e5c8978a00f12ea97920f8fa212cef7a64973af4737098927fe0f +size 139604 diff --git a/datasets/检测仪/train/images/订单1805711_51_7099701.jpg b/datasets/检测仪/train/images/订单1805711_51_7099701.jpg new file mode 100644 index 0000000..1d411f4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805711_51_7099701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164d74382f7242437b634ae04b1bf4abff60d326f4d3a664a89c60dd7349b8f1 +size 131544 diff --git a/datasets/检测仪/train/images/订单1805718_51_7099739.jpg b/datasets/检测仪/train/images/订单1805718_51_7099739.jpg new file mode 100644 index 0000000..59cc6ac --- /dev/null +++ b/datasets/检测仪/train/images/订单1805718_51_7099739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248d38a84e1b32d3b3fdc73bbdd33e0396ab931d33e0fa4bf334fe6f9764fa9e +size 581774 diff --git a/datasets/检测仪/train/images/订单1805720_51_7099771.jpg b/datasets/检测仪/train/images/订单1805720_51_7099771.jpg new file mode 100644 index 0000000..3e28b19 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805720_51_7099771.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af5cfab5a04b95b183e209684ef301386482705ae5997e8b9c577770258e912 +size 141615 diff --git a/datasets/检测仪/train/images/订单1805723_51_7099785.jpg b/datasets/检测仪/train/images/订单1805723_51_7099785.jpg new file mode 100644 index 0000000..6e7b110 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805723_51_7099785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d489eb37958a8b4faeebf252a26351b7ef83a91f37013e0cd0182ad64d941b +size 128241 diff --git a/datasets/检测仪/train/images/订单1805726_51_7099833.jpg b/datasets/检测仪/train/images/订单1805726_51_7099833.jpg new file mode 100644 index 0000000..1ea0ae9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805726_51_7099833.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3831277a73e7fa5fc4398604ab5f9fff6a59adb16c8f2d6659f5a4867bc25a +size 128219 diff --git a/datasets/检测仪/train/images/订单1805727_51_7099850.jpg b/datasets/检测仪/train/images/订单1805727_51_7099850.jpg new file mode 100644 index 0000000..a34045b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805727_51_7099850.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94341a145bddda59661159ea2ded8c1ea702be2240ad9527426225f6d4658f71 +size 102085 diff --git a/datasets/检测仪/train/images/订单1805731_51_7100007.jpg b/datasets/检测仪/train/images/订单1805731_51_7100007.jpg new file mode 100644 index 0000000..0b96e81 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805731_51_7100007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c39910351bb55fbc30d62d4e4899900253da860f2b7e035bfea2bcf69d793e +size 151745 diff --git a/datasets/检测仪/train/images/订单1805735_51_7099895.jpg b/datasets/检测仪/train/images/订单1805735_51_7099895.jpg new file mode 100644 index 0000000..22b5026 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805735_51_7099895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca6a424383cdfdd4a8f1bab66e7895f148f5c319797470ecc907748964787e0 +size 478669 diff --git a/datasets/检测仪/train/images/订单1805736_51_7099971.jpg b/datasets/检测仪/train/images/订单1805736_51_7099971.jpg new file mode 100644 index 0000000..4bc0295 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805736_51_7099971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e0bcc391f7c20f236adea0579a4e2cdde63eb332afafc9c4541bb738c126d0 +size 74648 diff --git a/datasets/检测仪/train/images/订单1805739_51_7099950.jpg b/datasets/检测仪/train/images/订单1805739_51_7099950.jpg new file mode 100644 index 0000000..85351b5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805739_51_7099950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80d35cd36362b33127b349cc4cb3d6dfeeca234229a6e77a15efe918380182d +size 137765 diff --git a/datasets/检测仪/train/images/订单1805740_51_7099926.jpg b/datasets/检测仪/train/images/订单1805740_51_7099926.jpg new file mode 100644 index 0000000..82cd491 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805740_51_7099926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad83865e125003a4e426012907c835298b92bbcea51b7f0a4d8de63f4e2000c5 +size 136278 diff --git a/datasets/检测仪/train/images/订单1805742_51_7099979.jpg b/datasets/检测仪/train/images/订单1805742_51_7099979.jpg new file mode 100644 index 0000000..a5c0dd2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805742_51_7099979.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74fdd4bcd3776da5b07d72212578c97aa2f879c417f00586a31ccabc7630cf6 +size 160266 diff --git a/datasets/检测仪/train/images/订单1805746_51_7100012.jpg b/datasets/检测仪/train/images/订单1805746_51_7100012.jpg new file mode 100644 index 0000000..a2f2191 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805746_51_7100012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094f13bce39e1cf7d51a53ad7287eb437ef971de3ba306c6c4c02b3e70290dbc +size 128912 diff --git a/datasets/检测仪/train/images/订单1805747_51_7100048.jpg b/datasets/检测仪/train/images/订单1805747_51_7100048.jpg new file mode 100644 index 0000000..0fae44a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805747_51_7100048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fafb1b74e41480093eff24440c4c81dbbead4752da4c10b1696bcf02fae75f9 +size 527596 diff --git a/datasets/检测仪/train/images/订单1805748_51_7100087.jpg b/datasets/检测仪/train/images/订单1805748_51_7100087.jpg new file mode 100644 index 0000000..47c81d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805748_51_7100087.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334b47eee087cdfe519539dc3e91e8d52491e1cd6d14866a0508da2e218c11a6 +size 151585 diff --git a/datasets/检测仪/train/images/订单1805751_51_7100254.jpg b/datasets/检测仪/train/images/订单1805751_51_7100254.jpg new file mode 100644 index 0000000..81932cb --- /dev/null +++ b/datasets/检测仪/train/images/订单1805751_51_7100254.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12462152800f3d6400207ac417df7a07d6d0bb2547923bd371d9018de3dbc3b +size 97164 diff --git a/datasets/检测仪/train/images/订单1805752_51_7100195.jpg b/datasets/检测仪/train/images/订单1805752_51_7100195.jpg new file mode 100644 index 0000000..15d57a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805752_51_7100195.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13900aece85ff675ff4115cfb66a1e03ad29055506e6fa0e1757057fda6260e +size 118197 diff --git a/datasets/检测仪/train/images/订单1805753_51_7100046.jpg b/datasets/检测仪/train/images/订单1805753_51_7100046.jpg new file mode 100644 index 0000000..8e05946 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805753_51_7100046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0835ca949503e8f28a4e02755bb57743da696581c1706b61eb7dbac442fa9c9 +size 101158 diff --git a/datasets/检测仪/train/images/订单1805763_51_7100277.jpg b/datasets/检测仪/train/images/订单1805763_51_7100277.jpg new file mode 100644 index 0000000..28d00f0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805763_51_7100277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bfc5f719a33a6b17437848cd5fd5a40934ce465f54e605793522403770b4ca +size 508025 diff --git a/datasets/检测仪/train/images/订单1805765_51_7100237.jpg b/datasets/检测仪/train/images/订单1805765_51_7100237.jpg new file mode 100644 index 0000000..25d7c07 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805765_51_7100237.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f7d98f3f0da30377aa8adb33cbfd554990702802081ecacc381f144b8c3b02 +size 136809 diff --git a/datasets/检测仪/train/images/订单1805766_51_7100199.jpg b/datasets/检测仪/train/images/订单1805766_51_7100199.jpg new file mode 100644 index 0000000..02daca5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805766_51_7100199.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49c71e94da99c396e4864260c88f2e1aeacab05dc38abed14599e56500009d4 +size 146964 diff --git a/datasets/检测仪/train/images/订单1805767_51_7100306.jpg b/datasets/检测仪/train/images/订单1805767_51_7100306.jpg new file mode 100644 index 0000000..446cf85 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805767_51_7100306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a906025ac6688b6643ee4d447ac84e16de93fe3a0270f5d868c1c7257ffb1e +size 139491 diff --git a/datasets/检测仪/train/images/订单1805769_51_7100206.jpg b/datasets/检测仪/train/images/订单1805769_51_7100206.jpg new file mode 100644 index 0000000..368e821 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805769_51_7100206.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26980d33465d017f567b3f8915d9e17dd3ed4f27c272fafb985b98381564107 +size 289943 diff --git a/datasets/检测仪/train/images/订单1805770_51_7100239.jpg b/datasets/检测仪/train/images/订单1805770_51_7100239.jpg new file mode 100644 index 0000000..f3d5bf5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805770_51_7100239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1f474a6bc6f02d8538cf338075fe85117d86f328ba36af04d6161c08fa4394 +size 139556 diff --git a/datasets/检测仪/train/images/订单1805771_51_7100316.jpg b/datasets/检测仪/train/images/订单1805771_51_7100316.jpg new file mode 100644 index 0000000..207b459 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805771_51_7100316.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f839e15a164f08f6e15571ef55f1aeb6ed267cae2c9538e1b49696752cfb2d3 +size 136182 diff --git a/datasets/检测仪/train/images/订单1805773_51_7100246.jpg b/datasets/检测仪/train/images/订单1805773_51_7100246.jpg new file mode 100644 index 0000000..a47e1a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805773_51_7100246.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a93fc06cf9b0e6da8489f964ef5d247af9b125684cdb062e5529a64791d16fd +size 105831 diff --git a/datasets/检测仪/train/images/订单1805775_51_7100312.jpg b/datasets/检测仪/train/images/订单1805775_51_7100312.jpg new file mode 100644 index 0000000..d152bb0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805775_51_7100312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44fb3cb5dd0c51f5cff90d1b829bdbb93e82177ad2eabf2a68570396681efe2d +size 130764 diff --git a/datasets/检测仪/train/images/订单1805779_51_7100335.jpg b/datasets/检测仪/train/images/订单1805779_51_7100335.jpg new file mode 100644 index 0000000..fab970b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805779_51_7100335.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad55bf7247fdb9f5b2284672e07df169dd7f1000376d7556223d581124dfbce7 +size 166111 diff --git a/datasets/检测仪/train/images/订单1805782_51_7100361.jpg b/datasets/检测仪/train/images/订单1805782_51_7100361.jpg new file mode 100644 index 0000000..1506dec --- /dev/null +++ b/datasets/检测仪/train/images/订单1805782_51_7100361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf71c57f37b5cacd005d7f2a4e3e1cab37cd704c23d048b588982dc3428623b +size 154622 diff --git a/datasets/检测仪/train/images/订单1805783_51_7100455.jpg b/datasets/检测仪/train/images/订单1805783_51_7100455.jpg new file mode 100644 index 0000000..f4edb0e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805783_51_7100455.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51214bacaa7788eaf141386d1499128b414dedaf977fbb4a8dce7878ac8446a +size 211715 diff --git a/datasets/检测仪/train/images/订单1805788_51_7100527.jpg b/datasets/检测仪/train/images/订单1805788_51_7100527.jpg new file mode 100644 index 0000000..6777963 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805788_51_7100527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d5bb7ace498b8c6ec51cd2c881d81445059168558163ca71a97a8ced777315 +size 106216 diff --git a/datasets/检测仪/train/images/订单1805791_51_7100431.jpg b/datasets/检测仪/train/images/订单1805791_51_7100431.jpg new file mode 100644 index 0000000..b0dcf38 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805791_51_7100431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd143d57bfdae568113ebcd532f3f4c7ad42fae228a9254652d3934e00d1e993 +size 124771 diff --git a/datasets/检测仪/train/images/订单1805793_51_7100437.jpg b/datasets/检测仪/train/images/订单1805793_51_7100437.jpg new file mode 100644 index 0000000..958fa07 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805793_51_7100437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4429b897129aed7b24b803d156bb7d8da698fbcfc075121ce1bbbf487798d1 +size 121320 diff --git a/datasets/检测仪/train/images/订单1805794_51_7100487.jpg b/datasets/检测仪/train/images/订单1805794_51_7100487.jpg new file mode 100644 index 0000000..f212ab5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805794_51_7100487.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabd5b933dbf807e1c758e73833890ec356a6045faabec47d498cca1d16b3c6f +size 211051 diff --git a/datasets/检测仪/train/images/订单1805797_51_7100514.jpg b/datasets/检测仪/train/images/订单1805797_51_7100514.jpg new file mode 100644 index 0000000..4870279 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805797_51_7100514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d5cd073257c41e606c5da88d2b7cbab98e2f77ab6da8ebe20ba2824b62f9df +size 381484 diff --git a/datasets/检测仪/train/images/订单1805802_51_7100539.jpg b/datasets/检测仪/train/images/订单1805802_51_7100539.jpg new file mode 100644 index 0000000..6b70290 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805802_51_7100539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31087c937585da5dfdb3a0340894f40e4dd533cacd7da8cbacb5753eadc57bd +size 120024 diff --git a/datasets/检测仪/train/images/订单1805804_51_7100605.jpg b/datasets/检测仪/train/images/订单1805804_51_7100605.jpg new file mode 100644 index 0000000..67c3c09 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805804_51_7100605.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0c60dff97b8cdbc0b77c7f782453d09d8db53c847b216a30d7e5fc8751a36e +size 76542 diff --git a/datasets/检测仪/train/images/订单1805806_51_7100666.jpg b/datasets/检测仪/train/images/订单1805806_51_7100666.jpg new file mode 100644 index 0000000..797a667 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805806_51_7100666.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd7f7e47318e006bbbd2f39116575d477bfe8567c7cdf068a8dfe8c896e6f548 +size 135950 diff --git a/datasets/检测仪/train/images/订单1805807_51_7100667.jpg b/datasets/检测仪/train/images/订单1805807_51_7100667.jpg new file mode 100644 index 0000000..36fdf6e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805807_51_7100667.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6702ac88a9f866b99d059cc3cbf744603067e58ded91375be999141d320ea93a +size 582718 diff --git a/datasets/检测仪/train/images/订单1805812_51_7100601.jpg b/datasets/检测仪/train/images/订单1805812_51_7100601.jpg new file mode 100644 index 0000000..2e40f59 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805812_51_7100601.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abaee480e20d46cd4e74f410317073f422c9bd1ea38cf79bcbbc61e02f5728d +size 129339 diff --git a/datasets/检测仪/train/images/订单1805813_51_7100697.jpg b/datasets/检测仪/train/images/订单1805813_51_7100697.jpg new file mode 100644 index 0000000..3996355 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805813_51_7100697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dde929f6107ba42bc89ee0b7ef871babd3a15ceb68b1426fec3836ee080385 +size 129158 diff --git a/datasets/检测仪/train/images/订单1805814_51_7100643.jpg b/datasets/检测仪/train/images/订单1805814_51_7100643.jpg new file mode 100644 index 0000000..56768b2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805814_51_7100643.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dd6aeb2b520e8cf236d2633d2534f8cff5bfde8ea5ae11bf585e255887ec1e +size 136281 diff --git a/datasets/检测仪/train/images/订单1805815_51_7100717.jpg b/datasets/检测仪/train/images/订单1805815_51_7100717.jpg new file mode 100644 index 0000000..a1a704b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805815_51_7100717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25ddf1c155a42f6d6f3a4cae12e3c34c5be2fa37227f157e6129977ebe60d3a +size 95180 diff --git a/datasets/检测仪/train/images/订单1805821_51_7100715.jpg b/datasets/检测仪/train/images/订单1805821_51_7100715.jpg new file mode 100644 index 0000000..6f4eecd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805821_51_7100715.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731b9178e2e648e873bb8e949017ba816395b1487e684ad1503f222c428f7445 +size 736744 diff --git a/datasets/检测仪/train/images/订单1805823_51_7100659.jpg b/datasets/检测仪/train/images/订单1805823_51_7100659.jpg new file mode 100644 index 0000000..340143a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805823_51_7100659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2ab8c49edc2f9adc7d2adf003b65f4a455a6943c45f3d8c6ca9cd70af54d72 +size 112156 diff --git a/datasets/检测仪/train/images/订单1805830_51_7100767.jpg b/datasets/检测仪/train/images/订单1805830_51_7100767.jpg new file mode 100644 index 0000000..290b49b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805830_51_7100767.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb702a9d9500412cfc91b28d26732e8029e6327cdf1e3f33eff2f8dc1a0646d +size 120716 diff --git a/datasets/检测仪/train/images/订单1805831_51_7100849.jpg b/datasets/检测仪/train/images/订单1805831_51_7100849.jpg new file mode 100644 index 0000000..24bab80 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805831_51_7100849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5b9311e8e7e2f4f8cd670d70a64dbba7bc046881109d1b7f4e4a8cd6a42636 +size 232989 diff --git a/datasets/检测仪/train/images/订单1805833_51_7100813.jpg b/datasets/检测仪/train/images/订单1805833_51_7100813.jpg new file mode 100644 index 0000000..5d87c6c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805833_51_7100813.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4315944fc9683ac30bc5c573f767d354ca56d97e1c96a032e11e12d31b8f45b1 +size 376076 diff --git a/datasets/检测仪/train/images/订单1805834_51_7100798.jpg b/datasets/检测仪/train/images/订单1805834_51_7100798.jpg new file mode 100644 index 0000000..df6957e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805834_51_7100798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5e3c5456810546df4cf073835c21e305162b41355b587242fcee438cc297f1 +size 133613 diff --git a/datasets/检测仪/train/images/订单1805839_51_7100902.jpg b/datasets/检测仪/train/images/订单1805839_51_7100902.jpg new file mode 100644 index 0000000..256b0d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805839_51_7100902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8257e5de7c7bdab41ca92c38ae174a6bf4f98df592ab5e281ee1b6f509afa1ba +size 97094 diff --git a/datasets/检测仪/train/images/订单1805841_51_7100892.jpg b/datasets/检测仪/train/images/订单1805841_51_7100892.jpg new file mode 100644 index 0000000..77f0b01 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805841_51_7100892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965c7d2aae6303d2e199d18b379c2db820dcfdf5100aa8b4738f52ed31f97090 +size 240141 diff --git a/datasets/检测仪/train/images/订单1805842_51_7100929.jpg b/datasets/检测仪/train/images/订单1805842_51_7100929.jpg new file mode 100644 index 0000000..44bc56f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805842_51_7100929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc31fa4a612fa25f68440b77574a507c1d9ea384aa99b6048f4c67934bdfc282 +size 361642 diff --git a/datasets/检测仪/train/images/订单1805843_51_7100959.jpg b/datasets/检测仪/train/images/订单1805843_51_7100959.jpg new file mode 100644 index 0000000..7a4ee55 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805843_51_7100959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ceb07d1ef119ac00c273ee85e7f79c27b426339a1c3f35521c0c3ab64b0e81f +size 380960 diff --git a/datasets/检测仪/train/images/订单1805844_51_7100930.jpg b/datasets/检测仪/train/images/订单1805844_51_7100930.jpg new file mode 100644 index 0000000..020f9f1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805844_51_7100930.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b45180aca2b83ce495ad9dfe32d5cda0c8f88e70819a18dea483e078b8ea79 +size 116576 diff --git a/datasets/检测仪/train/images/订单1805847_51_7100915.jpg b/datasets/检测仪/train/images/订单1805847_51_7100915.jpg new file mode 100644 index 0000000..2bb655f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805847_51_7100915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851a51b14d5a9896abc4fb2f6ef491170ea97a6e0bb5a74df72988d252eb9a14 +size 152342 diff --git a/datasets/检测仪/train/images/订单1805848_51_7101037.jpg b/datasets/检测仪/train/images/订单1805848_51_7101037.jpg new file mode 100644 index 0000000..7bade1e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805848_51_7101037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca718c33506c1673b015557e205fac0f986619fd9710a701eefb8d6335d6b60d +size 81769 diff --git a/datasets/检测仪/train/images/订单1805851_51_7100961.jpg b/datasets/检测仪/train/images/订单1805851_51_7100961.jpg new file mode 100644 index 0000000..26ce33b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805851_51_7100961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a94386e6ba259d12cfe51cc1cdf2af2b8e5fed280b37a03e6e6986b8e28c84 +size 112031 diff --git a/datasets/检测仪/train/images/订单1805852_51_7101016.jpg b/datasets/检测仪/train/images/订单1805852_51_7101016.jpg new file mode 100644 index 0000000..b6ee283 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805852_51_7101016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3d297d0101abcba4092185a3a03434c10adfd5d5c6f6dfb101e7982f9f6e2f +size 107181 diff --git a/datasets/检测仪/train/images/订单1805854_51_7101019.jpg b/datasets/检测仪/train/images/订单1805854_51_7101019.jpg new file mode 100644 index 0000000..7273695 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805854_51_7101019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b496738ce5db1f547490c3dea033288f64cb92f89565315843e3d1eae10c735 +size 119587 diff --git a/datasets/检测仪/train/images/订单1805860_51_7101109.jpg b/datasets/检测仪/train/images/订单1805860_51_7101109.jpg new file mode 100644 index 0000000..f8b5007 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805860_51_7101109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a059c9965c979a9ce891033100874e3e001ac23c7d457796014dce9fa74f05e +size 122809 diff --git a/datasets/检测仪/train/images/订单1805861_51_7101063.jpg b/datasets/检测仪/train/images/订单1805861_51_7101063.jpg new file mode 100644 index 0000000..fa295d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805861_51_7101063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d4e40351bfee9eff0e06d3572a4e295f5701016e49d0afcfa94ea81c4c88a8 +size 112757 diff --git a/datasets/检测仪/train/images/订单1805862_51_7101209.jpg b/datasets/检测仪/train/images/订单1805862_51_7101209.jpg new file mode 100644 index 0000000..085d8cc --- /dev/null +++ b/datasets/检测仪/train/images/订单1805862_51_7101209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e8608437a85dbe99b07de074dca9c5ff3eb2fbbe09e1dbb2f76410a6685cc1 +size 144326 diff --git a/datasets/检测仪/train/images/订单1805864_51_7101126.jpg b/datasets/检测仪/train/images/订单1805864_51_7101126.jpg new file mode 100644 index 0000000..b323c14 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805864_51_7101126.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580ffc317003d3164ddbc9f906da4435262f7dfe51fc71a3aafb00ee06dac5f0 +size 380826 diff --git a/datasets/检测仪/train/images/订单1805865_51_7101100.jpg b/datasets/检测仪/train/images/订单1805865_51_7101100.jpg new file mode 100644 index 0000000..77330b3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805865_51_7101100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4cd3fb2f9ef55bb3e8a5702f0a03872c882cff50fa10f13969e91c327d0036 +size 81234 diff --git a/datasets/检测仪/train/images/订单1805866_51_7101143.jpg b/datasets/检测仪/train/images/订单1805866_51_7101143.jpg new file mode 100644 index 0000000..5b6f8da --- /dev/null +++ b/datasets/检测仪/train/images/订单1805866_51_7101143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb36c1fe0c884569e98233634637a01da7d37cf194bb72e5b0f894054a2214b +size 297328 diff --git a/datasets/检测仪/train/images/订单1805867_51_7101219.jpg b/datasets/检测仪/train/images/订单1805867_51_7101219.jpg new file mode 100644 index 0000000..03c3a94 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805867_51_7101219.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e77e256a540480c575889283de807660f400d39832b7f7437d541d58ff3a321 +size 1184294 diff --git a/datasets/检测仪/train/images/订单1805869_51_7101160.jpg b/datasets/检测仪/train/images/订单1805869_51_7101160.jpg new file mode 100644 index 0000000..0c2950c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805869_51_7101160.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259ba6937ad638584abbc03aa7993596fa5b752b381669af010f82af00d6106b +size 72884 diff --git a/datasets/检测仪/train/images/订单1805871_51_7101186.jpg b/datasets/检测仪/train/images/订单1805871_51_7101186.jpg new file mode 100644 index 0000000..fd7c57a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805871_51_7101186.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493848eeba1fce9b32d933670a6babe4c4f30eb656f14d1fb309bc5c5ae87865 +size 105051 diff --git a/datasets/检测仪/train/images/订单1805873_51_7101260.jpg b/datasets/检测仪/train/images/订单1805873_51_7101260.jpg new file mode 100644 index 0000000..baa9b7d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805873_51_7101260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b063e185c80ed192acf7b6c9191aa045d09335d958e67159f0700e9e0a2aba86 +size 86169 diff --git a/datasets/检测仪/train/images/订单1805879_51_7101280.jpg b/datasets/检测仪/train/images/订单1805879_51_7101280.jpg new file mode 100644 index 0000000..519cadd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805879_51_7101280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0afe5aaa4212ba1b5ac1384a7adb2bc9e1e9df5e3d12424bc805dec6850f2d8 +size 101993 diff --git a/datasets/检测仪/train/images/订单1805883_51_7101311.jpg b/datasets/检测仪/train/images/订单1805883_51_7101311.jpg new file mode 100644 index 0000000..c19087c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805883_51_7101311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309f7d62f8db1bebb0e9e6e024025af06384d0e243df71cf18609edb17e5440e +size 115245 diff --git a/datasets/检测仪/train/images/订单1805886_51_7101418.jpg b/datasets/检测仪/train/images/订单1805886_51_7101418.jpg new file mode 100644 index 0000000..e2eb4d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805886_51_7101418.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8889ded03e6c2bb79ef0317627b8f3634da4cdcf1338f9b1dee99b07ccf8344 +size 124535 diff --git a/datasets/检测仪/train/images/订单1805887_51_7101386.jpg b/datasets/检测仪/train/images/订单1805887_51_7101386.jpg new file mode 100644 index 0000000..cf05be2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805887_51_7101386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ced4b613a163b4c93f30d011723997ae59e3165bf45fa3db32843a67bab6e57 +size 103676 diff --git a/datasets/检测仪/train/images/订单1805891_51_7101877.jpg b/datasets/检测仪/train/images/订单1805891_51_7101877.jpg new file mode 100644 index 0000000..2fbafe6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805891_51_7101877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba4dd4d541564f2bebaaa35c4530fd8d73565f0d9a46e48e0d1b8fd19689a3f +size 301664 diff --git a/datasets/检测仪/train/images/订单1805893_51_7101437.jpg b/datasets/检测仪/train/images/订单1805893_51_7101437.jpg new file mode 100644 index 0000000..76979a1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805893_51_7101437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef744bd5f750721be447c16d429bb462a048ba0936dd97fe40d25d64a33e31f +size 101374 diff --git a/datasets/检测仪/train/images/订单1805894_51_7101473.jpg b/datasets/检测仪/train/images/订单1805894_51_7101473.jpg new file mode 100644 index 0000000..2d4e9f0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805894_51_7101473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44f363573808cf1b14fecff8a8735e202046afdd220ac2ca2c3fedaf95a377c +size 120360 diff --git a/datasets/检测仪/train/images/订单1805895_51_7101462.jpg b/datasets/检测仪/train/images/订单1805895_51_7101462.jpg new file mode 100644 index 0000000..a707c67 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805895_51_7101462.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f820f81b6d12a51edc0825f1de309be42ef9ce61754b6028afacfaaa7737804a +size 142117 diff --git a/datasets/检测仪/train/images/订单1805896_51_7101467.jpg b/datasets/检测仪/train/images/订单1805896_51_7101467.jpg new file mode 100644 index 0000000..ca2c3a4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805896_51_7101467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dffd4a2c0c571cdadc85333ed0a23c68912b840e8ed511881c7a94345bdc534 +size 151813 diff --git a/datasets/检测仪/train/images/订单1805898_51_7101436.jpg b/datasets/检测仪/train/images/订单1805898_51_7101436.jpg new file mode 100644 index 0000000..3d47c4c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805898_51_7101436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e19df82804591a301054a0f2daa741d3ca38e5132e0fcaec69f0bd78f1b76fb +size 174438 diff --git a/datasets/检测仪/train/images/订单1805902_51_7101479.jpg b/datasets/检测仪/train/images/订单1805902_51_7101479.jpg new file mode 100644 index 0000000..672463e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805902_51_7101479.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3def7bad0fd68e4d9b6394101e7f484c8527b789ff431711997416b795b794e1 +size 99026 diff --git a/datasets/检测仪/train/images/订单1805903_51_7101581.jpg b/datasets/检测仪/train/images/订单1805903_51_7101581.jpg new file mode 100644 index 0000000..d4d0a01 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805903_51_7101581.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468e9c154a0d87511ef4e595c95c1d740595619d07eb14c7ef97bbb4869a5975 +size 70271 diff --git a/datasets/检测仪/train/images/订单1805904_51_7101531.jpg b/datasets/检测仪/train/images/订单1805904_51_7101531.jpg new file mode 100644 index 0000000..a5768de --- /dev/null +++ b/datasets/检测仪/train/images/订单1805904_51_7101531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5d5f9a82d6534fb1ea771e55d5ff90cf586d9eabdfb75dbed3e79948f8bc03 +size 170159 diff --git a/datasets/检测仪/train/images/订单1805909_51_7101514.jpg b/datasets/检测仪/train/images/订单1805909_51_7101514.jpg new file mode 100644 index 0000000..d1679fe --- /dev/null +++ b/datasets/检测仪/train/images/订单1805909_51_7101514.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3799ad4cc9a53185d70562680c86454764289058e9fa492d244404f7608b931 +size 321908 diff --git a/datasets/检测仪/train/images/订单1805910_51_7101614.jpg b/datasets/检测仪/train/images/订单1805910_51_7101614.jpg new file mode 100644 index 0000000..9ecf5c2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805910_51_7101614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f23be70b18feddee1947648e1abbff53b56c1e2a8397087180909b818f867b +size 123802 diff --git a/datasets/检测仪/train/images/订单1805912_51_7101596.jpg b/datasets/检测仪/train/images/订单1805912_51_7101596.jpg new file mode 100644 index 0000000..5a89db6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805912_51_7101596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92470dfcb105a00b55e1e2eda6c4e5aa05ad4ca1437d21b19240ec1e0324ff8 +size 458496 diff --git a/datasets/检测仪/train/images/订单1805915_51_7101634.jpg b/datasets/检测仪/train/images/订单1805915_51_7101634.jpg new file mode 100644 index 0000000..f446fc6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805915_51_7101634.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63acf3476378da63b8829520b78689ca36eb52d9ea61ed3c4f699c863c8183b1 +size 90909 diff --git a/datasets/检测仪/train/images/订单1805918_51_7101608.jpg b/datasets/检测仪/train/images/订单1805918_51_7101608.jpg new file mode 100644 index 0000000..a5ffd29 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805918_51_7101608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f484435bbbcd375ef3a926b366e8aa3a6df603300fdc58435d7d5fe5e109320b +size 209661 diff --git a/datasets/检测仪/train/images/订单1805920_51_7101670.jpg b/datasets/检测仪/train/images/订单1805920_51_7101670.jpg new file mode 100644 index 0000000..55f37d6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805920_51_7101670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06a169d0a84534960e03f1f95d15c11b96e79dd55de70b6f7f9b6d7d2d466f5 +size 132977 diff --git a/datasets/检测仪/train/images/订单1805924_51_7101695.jpg b/datasets/检测仪/train/images/订单1805924_51_7101695.jpg new file mode 100644 index 0000000..18dbcb3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805924_51_7101695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ff24a60338ff3383fb8ddfe7b237cdbc11acf093a97dbcd6b8d8f8ce0fe403 +size 112115 diff --git a/datasets/检测仪/train/images/订单1805927_51_7101742.jpg b/datasets/检测仪/train/images/订单1805927_51_7101742.jpg new file mode 100644 index 0000000..1537c28 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805927_51_7101742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5dcb0d5fb256fcd6182962501dacbb1ca0c72e13f82fda5ed4af276ff489cf +size 272711 diff --git a/datasets/检测仪/train/images/订单1805928_51_7101736.jpg b/datasets/检测仪/train/images/订单1805928_51_7101736.jpg new file mode 100644 index 0000000..140f41f --- /dev/null +++ b/datasets/检测仪/train/images/订单1805928_51_7101736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec84a7772775abff3801f39e5347afb0ecb2cf8b94bf918dd8e83a37c3e79e63 +size 124516 diff --git a/datasets/检测仪/train/images/订单1805929_51_7101755.jpg b/datasets/检测仪/train/images/订单1805929_51_7101755.jpg new file mode 100644 index 0000000..25b4485 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805929_51_7101755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622d888048f044fe063fa51b0f293eca76bd549d2206df6a36e935d89d54c84d +size 70498 diff --git a/datasets/检测仪/train/images/订单1805931_51_7101785.jpg b/datasets/检测仪/train/images/订单1805931_51_7101785.jpg new file mode 100644 index 0000000..c82df51 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805931_51_7101785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22058f13c49755c9f7b55a3e45a5d39cfde2f0f4fdd4366ad9ac233f5471a5b9 +size 340333 diff --git a/datasets/检测仪/train/images/订单1805932_51_7101790.jpg b/datasets/检测仪/train/images/订单1805932_51_7101790.jpg new file mode 100644 index 0000000..15b39b9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805932_51_7101790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ffb64f7f0581d355c02174e35d907a14e0d14bee2ba28c50939c0206f494e3 +size 381925 diff --git a/datasets/检测仪/train/images/订单1805933_51_7101818.jpg b/datasets/检测仪/train/images/订单1805933_51_7101818.jpg new file mode 100644 index 0000000..c281f6a --- /dev/null +++ b/datasets/检测仪/train/images/订单1805933_51_7101818.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aeeb341ce6cfc6bd17047560655b3a669134ee5bd6cdab171d8bcb0fc5d613e +size 301628 diff --git a/datasets/检测仪/train/images/订单1805934_51_7101828.jpg b/datasets/检测仪/train/images/订单1805934_51_7101828.jpg new file mode 100644 index 0000000..7a5e173 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805934_51_7101828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5036f7a3feb5763e136b0d9cc5fc415c7b93a12440bb47981880065144a6b3f2 +size 77794 diff --git a/datasets/检测仪/train/images/订单1805936_51_7101821.jpg b/datasets/检测仪/train/images/订单1805936_51_7101821.jpg new file mode 100644 index 0000000..6f9cd01 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805936_51_7101821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d955b6fd9d01f4d6d17c82b5b7c9221d1920a3a641921482ef34d35749caed9 +size 110394 diff --git a/datasets/检测仪/train/images/订单1805937_51_7101863.jpg b/datasets/检测仪/train/images/订单1805937_51_7101863.jpg new file mode 100644 index 0000000..2e2c241 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805937_51_7101863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8901dc884363e38fc3bf2e92139954dfb168068c6c6d7b723b55d5b6e0fdaa0 +size 105824 diff --git a/datasets/检测仪/train/images/订单1805940_51_7101888.jpg b/datasets/检测仪/train/images/订单1805940_51_7101888.jpg new file mode 100644 index 0000000..d1bf04e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805940_51_7101888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f35aeefc650a6b475152a90c22cdcef405b046847711c5b47393f46ed8037dd +size 123723 diff --git a/datasets/检测仪/train/images/订单1805941_51_7101899.jpg b/datasets/检测仪/train/images/订单1805941_51_7101899.jpg new file mode 100644 index 0000000..9aadcad --- /dev/null +++ b/datasets/检测仪/train/images/订单1805941_51_7101899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c554c206648fb8cdc1a3923aa4810406d58b548ea8309aca9233b071a9e5998 +size 465523 diff --git a/datasets/检测仪/train/images/订单1805942_51_7101907.jpg b/datasets/检测仪/train/images/订单1805942_51_7101907.jpg new file mode 100644 index 0000000..41030e8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805942_51_7101907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b24164af87e76a6d56e1d7b8f9f07855f77b6d25c54bd30e9ec685162b5c1534 +size 120148 diff --git a/datasets/检测仪/train/images/订单1805943_51_7101918.jpg b/datasets/检测仪/train/images/订单1805943_51_7101918.jpg new file mode 100644 index 0000000..5cab81b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805943_51_7101918.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4165ae0e303d09de416256dbc92d5627e9ee21e851c7e673b76ba74d9e15af5 +size 354867 diff --git a/datasets/检测仪/train/images/订单1805944_51_7101928.jpg b/datasets/检测仪/train/images/订单1805944_51_7101928.jpg new file mode 100644 index 0000000..6d33de0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805944_51_7101928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca6c65da09ede26f37d3267492b071bcfedb68994e7afef11f8b6fe11a46e49 +size 154372 diff --git a/datasets/检测仪/train/images/订单1805947_51_7101939.jpg b/datasets/检测仪/train/images/订单1805947_51_7101939.jpg new file mode 100644 index 0000000..4448e81 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805947_51_7101939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d5e373b04f62b9e6722d765cec199c8d3c96464f306c726329c705a9012bcb +size 139881 diff --git a/datasets/检测仪/train/images/订单1805948_51_7101958.jpg b/datasets/检测仪/train/images/订单1805948_51_7101958.jpg new file mode 100644 index 0000000..9ccca9e --- /dev/null +++ b/datasets/检测仪/train/images/订单1805948_51_7101958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f2fedac449506ee5a8ae2180df2187e6ae26e170f30496c7931f94aec0ba49 +size 444792 diff --git a/datasets/检测仪/train/images/订单1805960_51_7102030.jpg b/datasets/检测仪/train/images/订单1805960_51_7102030.jpg new file mode 100644 index 0000000..cd0be23 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805960_51_7102030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4063a98b36241fca2bd4c001229b50631a4749be0c62780724dd9201b09bcb78 +size 112071 diff --git a/datasets/检测仪/train/images/订单1805963_51_7102062.jpg b/datasets/检测仪/train/images/订单1805963_51_7102062.jpg new file mode 100644 index 0000000..76fe2bd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805963_51_7102062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9247266ef84123e15850ea8e5696f3a9b1509ec846cdcfe28e3ad27b45142bdb +size 178007 diff --git a/datasets/检测仪/train/images/订单1805964_51_7102072.jpg b/datasets/检测仪/train/images/订单1805964_51_7102072.jpg new file mode 100644 index 0000000..09c7fa9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805964_51_7102072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15babb403904a3e97e2317aba43c43f4ecbdd4f6a749d1470080bbef92ec6527 +size 129358 diff --git a/datasets/检测仪/train/images/订单1805965_51_7102082.jpg b/datasets/检测仪/train/images/订单1805965_51_7102082.jpg new file mode 100644 index 0000000..e5dc06b --- /dev/null +++ b/datasets/检测仪/train/images/订单1805965_51_7102082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0c879069f564b4bc886ed326ae0f2711839abeee09a63b59d45f5bca07ac302 +size 133545 diff --git a/datasets/检测仪/train/images/订单1805967_51_7102112.jpg b/datasets/检测仪/train/images/订单1805967_51_7102112.jpg new file mode 100644 index 0000000..074e71c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805967_51_7102112.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcaf10e65d534f28f8532fe9929bbd45c289d4fd1ad9153473cc2cf50f7475e +size 150817 diff --git a/datasets/检测仪/train/images/订单1805968_51_7102108.jpg b/datasets/检测仪/train/images/订单1805968_51_7102108.jpg new file mode 100644 index 0000000..7b8f8d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805968_51_7102108.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1853233b1df9bc9fc97e61c46fa3d97c2901841d3ffc8b48cb350577b49bd75 +size 130892 diff --git a/datasets/检测仪/train/images/订单1805969_51_7102119.jpg b/datasets/检测仪/train/images/订单1805969_51_7102119.jpg new file mode 100644 index 0000000..e475f98 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805969_51_7102119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7717bbf8d63be7f0e78cb0daa56d15f8bc023d0015daf13a9cd7350851afd877 +size 370935 diff --git a/datasets/检测仪/train/images/订单1805970_51_7102143.jpg b/datasets/检测仪/train/images/订单1805970_51_7102143.jpg new file mode 100644 index 0000000..6bde84d --- /dev/null +++ b/datasets/检测仪/train/images/订单1805970_51_7102143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775605732223c98d1ee7c7aeeb3b733e68fe1f8842aa485684a300c2a3d26105 +size 157638 diff --git a/datasets/检测仪/train/images/订单1805971_51_7102162.jpg b/datasets/检测仪/train/images/订单1805971_51_7102162.jpg new file mode 100644 index 0000000..0d08bb4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805971_51_7102162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111bd184ba77d8543c4769d805a7880f866b3981aaec5c9611ffe647b7ce1b62 +size 138488 diff --git a/datasets/检测仪/train/images/订单1805975_51_7102175.jpg b/datasets/检测仪/train/images/订单1805975_51_7102175.jpg new file mode 100644 index 0000000..3300842 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805975_51_7102175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231b133a7af42cf1e5802dd5969d0e7e4062fe989ebdad214b6dafcf2dc45fc6 +size 130766 diff --git a/datasets/检测仪/train/images/订单1805976_51_7102161.jpg b/datasets/检测仪/train/images/订单1805976_51_7102161.jpg new file mode 100644 index 0000000..da2cfa0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805976_51_7102161.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199cd48ae870137ead10b23059d7fc36a745d43b0a163ee4e8bebd2c97062d52 +size 237540 diff --git a/datasets/检测仪/train/images/订单1805981_51_7102216.jpg b/datasets/检测仪/train/images/订单1805981_51_7102216.jpg new file mode 100644 index 0000000..9697dd0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805981_51_7102216.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0708002ae3d401e25db89317736324791ff000edc4dbdedf790ebe123834f5a9 +size 642835 diff --git a/datasets/检测仪/train/images/订单1805984_51_7102238.jpg b/datasets/检测仪/train/images/订单1805984_51_7102238.jpg new file mode 100644 index 0000000..54333ae --- /dev/null +++ b/datasets/检测仪/train/images/订单1805984_51_7102238.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9433ffa66eaf888f8e291bb17f6ed5182915becc179fdf2e450255cfc5ac843d +size 172882 diff --git a/datasets/检测仪/train/images/订单1805985_51_7102220.jpg b/datasets/检测仪/train/images/订单1805985_51_7102220.jpg new file mode 100644 index 0000000..50c46a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805985_51_7102220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e325aff94e23569d6fa732a447d25e20ca0480598b150b8260ac8ed4772b3645 +size 144015 diff --git a/datasets/检测仪/train/images/订单1805988_51_7102280.jpg b/datasets/检测仪/train/images/订单1805988_51_7102280.jpg new file mode 100644 index 0000000..a844e51 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805988_51_7102280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba188c56592523c05c2ddf82d715843d5e2e962f00661f70a31e1fed5c4b30e +size 162260 diff --git a/datasets/检测仪/train/images/订单1805989_51_7102267.jpg b/datasets/检测仪/train/images/订单1805989_51_7102267.jpg new file mode 100644 index 0000000..9b483aa --- /dev/null +++ b/datasets/检测仪/train/images/订单1805989_51_7102267.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98af65f4e8bf51567c936618685edf0f7af908fdc1cd0bf886519c2ef52b5c4 +size 152037 diff --git a/datasets/检测仪/train/images/订单1805990_51_7102467.jpg b/datasets/检测仪/train/images/订单1805990_51_7102467.jpg new file mode 100644 index 0000000..b4e810c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805990_51_7102467.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1a3ba2388fcdad29698b2a6373d44adcf000dc9151adbe4cf579589c04b777 +size 340177 diff --git a/datasets/检测仪/train/images/订单1805993_51_7102311.jpg b/datasets/检测仪/train/images/订单1805993_51_7102311.jpg new file mode 100644 index 0000000..aa506dd --- /dev/null +++ b/datasets/检测仪/train/images/订单1805993_51_7102311.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fa01cfea24a5d01770e2634af79ddf1026a450c5c33dd0128a3a3a3a29bf90 +size 300414 diff --git a/datasets/检测仪/train/images/订单1805996_51_7102352.jpg b/datasets/检测仪/train/images/订单1805996_51_7102352.jpg new file mode 100644 index 0000000..0755689 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805996_51_7102352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70efaca4bb4c27ba7740dc872859c6b02a6e63df3d69557d5822d18aa19fd7de +size 142392 diff --git a/datasets/检测仪/train/images/订单1805997_51_7102410.jpg b/datasets/检测仪/train/images/订单1805997_51_7102410.jpg new file mode 100644 index 0000000..e4dc8e4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1805997_51_7102410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d67c14835fdbd09c90f7b147652fca685400e5255e98ab7f67004d00e3a275 +size 119553 diff --git a/datasets/检测仪/train/images/订单1805998_51_7102420.jpg b/datasets/检测仪/train/images/订单1805998_51_7102420.jpg new file mode 100644 index 0000000..364e43c --- /dev/null +++ b/datasets/检测仪/train/images/订单1805998_51_7102420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5fa9c67882fc1c3f828d30236d862bfd9a341adb3813d0212ed3a0c75fb81f +size 129437 diff --git a/datasets/检测仪/train/images/订单1806000_51_7102336.jpg b/datasets/检测仪/train/images/订单1806000_51_7102336.jpg new file mode 100644 index 0000000..3b73ce8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806000_51_7102336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be369640c77a751f1b213eed461513db315ddb054155ab99445af2f1b9adca83 +size 130028 diff --git a/datasets/检测仪/train/images/订单1806006_51_7102373.jpg b/datasets/检测仪/train/images/订单1806006_51_7102373.jpg new file mode 100644 index 0000000..089713f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806006_51_7102373.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460a8797028c962be0dfcd4f018babf9fcf9e8a51591bdebf6c703de0d0ced68 +size 683133 diff --git a/datasets/检测仪/train/images/订单1806008_51_7102438.jpg b/datasets/检测仪/train/images/订单1806008_51_7102438.jpg new file mode 100644 index 0000000..466195b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806008_51_7102438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c266a56273e8114306de688e1258148dcbcbb5f2904e93706e4132c2a685da31 +size 337425 diff --git a/datasets/检测仪/train/images/订单1806010_51_7102491.jpg b/datasets/检测仪/train/images/订单1806010_51_7102491.jpg new file mode 100644 index 0000000..863b0f6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806010_51_7102491.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4a1e28200c22d0a0012302d073f00b74fc33e75e139039a0774d52dbd33c0a +size 163412 diff --git a/datasets/检测仪/train/images/订单1806011_51_7102502.jpg b/datasets/检测仪/train/images/订单1806011_51_7102502.jpg new file mode 100644 index 0000000..df60722 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806011_51_7102502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4c206fda9b25b92846428300535d9d7829efd6221e91ece8ee094fa6349071 +size 695414 diff --git a/datasets/检测仪/train/images/订单1806014_51_7102538.jpg b/datasets/检测仪/train/images/订单1806014_51_7102538.jpg new file mode 100644 index 0000000..06f6e92 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806014_51_7102538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f556c59cd5c1b8d06326d5fd104a26696b03dae49369ffa7f4c4e7df1cb0e0c +size 157591 diff --git a/datasets/检测仪/train/images/订单1806018_51_7102536.jpg b/datasets/检测仪/train/images/订单1806018_51_7102536.jpg new file mode 100644 index 0000000..55d45b0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806018_51_7102536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a84046b833b8b75f971bbd14fa77836b020a6a9ab171b8cd52b2c4d688f6a3b +size 139426 diff --git a/datasets/检测仪/train/images/订单1806019_51_7102564.jpg b/datasets/检测仪/train/images/订单1806019_51_7102564.jpg new file mode 100644 index 0000000..7a683ea --- /dev/null +++ b/datasets/检测仪/train/images/订单1806019_51_7102564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b1688d480e0f3ff04e7f180eb4715b47d9e1bdff05c180962ae21cad237c3c +size 141420 diff --git a/datasets/检测仪/train/images/订单1806020_51_7102512.jpg b/datasets/检测仪/train/images/订单1806020_51_7102512.jpg new file mode 100644 index 0000000..7cb00d8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806020_51_7102512.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809dacc00bd8b62fba4810ba4d970b409d11b0d0691705e31c1c81d8ac4499e2 +size 145913 diff --git a/datasets/检测仪/train/images/订单1806022_51_7102599.jpg b/datasets/检测仪/train/images/订单1806022_51_7102599.jpg new file mode 100644 index 0000000..cb2f208 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806022_51_7102599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9caad96fc050bd8e9e3e5387424260672334049d2c69d6e20cb2a002830cc376 +size 126786 diff --git a/datasets/检测仪/train/images/订单1806029_51_7102584.jpg b/datasets/检测仪/train/images/订单1806029_51_7102584.jpg new file mode 100644 index 0000000..fdcfa0e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806029_51_7102584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4283cf19f37b50cd4c2de1a0bb934cd71a3e7474810d47fdd45bab1c0b8ff71 +size 524351 diff --git a/datasets/检测仪/train/images/订单1806031_51_7102704.jpg b/datasets/检测仪/train/images/订单1806031_51_7102704.jpg new file mode 100644 index 0000000..987d1e0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806031_51_7102704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b76a356c46fc6d3b94bc22cf802a0adc1704c4b211c04f80a7b4b97ec52d7a +size 565952 diff --git a/datasets/检测仪/train/images/订单1806033_51_7102627.jpg b/datasets/检测仪/train/images/订单1806033_51_7102627.jpg new file mode 100644 index 0000000..34e5287 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806033_51_7102627.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeccfa7aa3d0cd49c51787cd25e4bcd53e59e014ba194ee8de6e1955834468fc +size 119137 diff --git a/datasets/检测仪/train/images/订单1806036_51_7102652.jpg b/datasets/检测仪/train/images/订单1806036_51_7102652.jpg new file mode 100644 index 0000000..c41e7a2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806036_51_7102652.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19956582af6e4ffc705ea99c695564471f8b19a2530f45c8c4cb4adcaffd0c9f +size 153733 diff --git a/datasets/检测仪/train/images/订单1806040_51_7102691.jpg b/datasets/检测仪/train/images/订单1806040_51_7102691.jpg new file mode 100644 index 0000000..c008772 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806040_51_7102691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dee1cb89e0aa83067e33272ba8a194cc1b4333329e77a29ca053bfda0e6fd7 +size 146396 diff --git a/datasets/检测仪/train/images/订单1806042_51_7102728.jpg b/datasets/检测仪/train/images/订单1806042_51_7102728.jpg new file mode 100644 index 0000000..3786a38 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806042_51_7102728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51409adfd1293bb8b7af64695e5a3489a02e3a480247bbe5acadd6eacdd41dbd +size 304860 diff --git a/datasets/检测仪/train/images/订单1806043_51_7102888.jpg b/datasets/检测仪/train/images/订单1806043_51_7102888.jpg new file mode 100644 index 0000000..df5d526 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806043_51_7102888.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e371419c94c1d085c986290c022358697d65d8dd1c23ded0c466d1f87440c0 +size 705882 diff --git a/datasets/检测仪/train/images/订单1806044_51_7102661.jpg b/datasets/检测仪/train/images/订单1806044_51_7102661.jpg new file mode 100644 index 0000000..a9335de --- /dev/null +++ b/datasets/检测仪/train/images/订单1806044_51_7102661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe24239bac24e3557fb48a01a402adf4ca51acce6978cabfa489d553c25ffa9 +size 114875 diff --git a/datasets/检测仪/train/images/订单1806050_51_7102748.jpg b/datasets/检测仪/train/images/订单1806050_51_7102748.jpg new file mode 100644 index 0000000..fdd649c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806050_51_7102748.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d76a9324624acc0190b068fbc3e43294cec96cd31653bb57bc3ba1802db0ee +size 108135 diff --git a/datasets/检测仪/train/images/订单1806058_51_7102805.jpg b/datasets/检测仪/train/images/订单1806058_51_7102805.jpg new file mode 100644 index 0000000..efd51db --- /dev/null +++ b/datasets/检测仪/train/images/订单1806058_51_7102805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e8a8be3844c9d063e319f466be7c63c64d87dbdc5f8fc9a7cfdfacd1b7058e +size 143974 diff --git a/datasets/检测仪/train/images/订单1806059_51_7102841.jpg b/datasets/检测仪/train/images/订单1806059_51_7102841.jpg new file mode 100644 index 0000000..20a5c86 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806059_51_7102841.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fba2bdaa7f064e46b58b032d34727d70b8441638ad0b6cda7209689d0a7a7b7 +size 151640 diff --git a/datasets/检测仪/train/images/订单1806060_51_7102808.jpg b/datasets/检测仪/train/images/订单1806060_51_7102808.jpg new file mode 100644 index 0000000..08a62d6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806060_51_7102808.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7c5de34828ec6e0195d6bce130e164a1d79a1ddab576688b2c6191b05c6d14 +size 131549 diff --git a/datasets/检测仪/train/images/订单1806062_51_7103083.jpg b/datasets/检测仪/train/images/订单1806062_51_7103083.jpg new file mode 100644 index 0000000..9b5de49 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806062_51_7103083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdacc9137365f41d9812967ddfdabe0d4e7b7718c30b0fbd285d116d14aac39d +size 579049 diff --git a/datasets/检测仪/train/images/订单1806064_51_7102915.jpg b/datasets/检测仪/train/images/订单1806064_51_7102915.jpg new file mode 100644 index 0000000..6e43d49 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806064_51_7102915.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022e716b75467d256552015c9acca519c60ed6af2335473c58194f018f6876db +size 129224 diff --git a/datasets/检测仪/train/images/订单1806067_51_7103041.jpg b/datasets/检测仪/train/images/订单1806067_51_7103041.jpg new file mode 100644 index 0000000..5d49a10 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806067_51_7103041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0af7b11ecd446adf1c40c4c8c60dbd2865a063d78bb056fa1e6019f6bb355f1 +size 127133 diff --git a/datasets/检测仪/train/images/订单1806068_51_7102992.jpg b/datasets/检测仪/train/images/订单1806068_51_7102992.jpg new file mode 100644 index 0000000..7188df0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806068_51_7102992.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83182f7c6ee298f7b26bd27b6a64ea2c95ef6774ecc48fc2104fa4b633cf882 +size 160731 diff --git a/datasets/检测仪/train/images/订单1806070_51_7102892.jpg b/datasets/检测仪/train/images/订单1806070_51_7102892.jpg new file mode 100644 index 0000000..1c3405e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806070_51_7102892.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c5c81fa22226e289d032234aa21a780552389893db56ae850159efd866db41 +size 586608 diff --git a/datasets/检测仪/train/images/订单1806071_51_7102940.jpg b/datasets/检测仪/train/images/订单1806071_51_7102940.jpg new file mode 100644 index 0000000..adb6e05 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806071_51_7102940.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ab14527f82666ceea71c877ffeb585da376d1421b573c459fc9339cf6c3fb7 +size 135949 diff --git a/datasets/检测仪/train/images/订单1806072_51_7102966.jpg b/datasets/检测仪/train/images/订单1806072_51_7102966.jpg new file mode 100644 index 0000000..1fd0d29 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806072_51_7102966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7030f1efeb4e1ae3b079948db6f1908bfae6388ba3e8a784e65743a6019b085b +size 329848 diff --git a/datasets/检测仪/train/images/订单1806073_51_7103007.jpg b/datasets/检测仪/train/images/订单1806073_51_7103007.jpg new file mode 100644 index 0000000..0cc3d20 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806073_51_7103007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00a67bb43556395d456f2fdc79276b63a9a9c99b996eeb876f3ac71b007ddf5 +size 131612 diff --git a/datasets/检测仪/train/images/订单1806074_51_7102995.jpg b/datasets/检测仪/train/images/订单1806074_51_7102995.jpg new file mode 100644 index 0000000..b9abc2b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806074_51_7102995.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8e7be680ede509ca36efbdf570cd9394060d77fd8032e0fbd4a28cd1b28c54 +size 136516 diff --git a/datasets/检测仪/train/images/订单1806078_51_7103036.jpg b/datasets/检测仪/train/images/订单1806078_51_7103036.jpg new file mode 100644 index 0000000..68e38a1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806078_51_7103036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24bc134a7fb378bf6e146b86fab6b12cff9ece83de1bee605a158fed2d77966 +size 565162 diff --git a/datasets/检测仪/train/images/订单1806079_51_7103004.jpg b/datasets/检测仪/train/images/订单1806079_51_7103004.jpg new file mode 100644 index 0000000..b9579f6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806079_51_7103004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccbd4834b65be941a45736d0497aeeb3790afdc68cd62488424f767a1c8d217 +size 152214 diff --git a/datasets/检测仪/train/images/订单1806081_51_7102935.jpg b/datasets/检测仪/train/images/订单1806081_51_7102935.jpg new file mode 100644 index 0000000..4896c32 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806081_51_7102935.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab3d14bdb7db06ffaccd5a4a52c741025bf4847ea28a49681748c134c24696a +size 141918 diff --git a/datasets/检测仪/train/images/订单1806083_51_7102978.jpg b/datasets/检测仪/train/images/订单1806083_51_7102978.jpg new file mode 100644 index 0000000..d19f749 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806083_51_7102978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98443f96e69f6bf6c7743f644f46c209b062082f8598573cef410175cdaac20b +size 554416 diff --git a/datasets/检测仪/train/images/订单1806085_51_7103039.jpg b/datasets/检测仪/train/images/订单1806085_51_7103039.jpg new file mode 100644 index 0000000..ee2dd17 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806085_51_7103039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7802c6b374973af0324ca1822366137565deaf20a5e017ce9ec433b2741be8a9 +size 160428 diff --git a/datasets/检测仪/train/images/订单1806088_51_7103121.jpg b/datasets/检测仪/train/images/订单1806088_51_7103121.jpg new file mode 100644 index 0000000..05cf7a9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806088_51_7103121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe6a2ab39f898223eeb17a5d331e16feaea640a1a14d5d5fc05d8a647d78a0b +size 140649 diff --git a/datasets/检测仪/train/images/订单1806091_51_7103122.jpg b/datasets/检测仪/train/images/订单1806091_51_7103122.jpg new file mode 100644 index 0000000..bac2907 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806091_51_7103122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb1ef33dfbf4ec6d424ede30655fb5e89b9edad541a528b2215a488c6f543f3 +size 149512 diff --git a/datasets/检测仪/train/images/订单1806093_51_7103269.jpg b/datasets/检测仪/train/images/订单1806093_51_7103269.jpg new file mode 100644 index 0000000..2f5b083 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806093_51_7103269.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3401ea3e33e3a6cbe42662fda1963d6c14d2f62195d6e71e849e6cc92e4a42 +size 283040 diff --git a/datasets/检测仪/train/images/订单1806100_51_7103196.jpg b/datasets/检测仪/train/images/订单1806100_51_7103196.jpg new file mode 100644 index 0000000..ce2296b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806100_51_7103196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1f7a205971cbed6362f5877e254b952074c311ad452754861561613d89973f +size 166526 diff --git a/datasets/检测仪/train/images/订单1806101_51_7103288.jpg b/datasets/检测仪/train/images/订单1806101_51_7103288.jpg new file mode 100644 index 0000000..efbe223 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806101_51_7103288.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa31ecddf1427d471fcae1852dd8dd6881b7464e2eb596bd76dde8308d5ad85 +size 74931 diff --git a/datasets/检测仪/train/images/订单1806105_51_7103283.jpg b/datasets/检测仪/train/images/订单1806105_51_7103283.jpg new file mode 100644 index 0000000..6607202 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806105_51_7103283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f782681b532751d1309749e4185c52b0e4934bd76c30b2e84841fcbdb2e70662 +size 552193 diff --git a/datasets/检测仪/train/images/订单1806106_51_7103306.jpg b/datasets/检测仪/train/images/订单1806106_51_7103306.jpg new file mode 100644 index 0000000..8b58447 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806106_51_7103306.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372e7158302a750e3b1e6d6a4d5e61b1fa44683765167e3485a5d7554d3b551f +size 212115 diff --git a/datasets/检测仪/train/images/订单1806107_51_7103354.jpg b/datasets/检测仪/train/images/订单1806107_51_7103354.jpg new file mode 100644 index 0000000..e9f487e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806107_51_7103354.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c758cfc1eae2218575c491621d7f0ac2d1631339948ea77c51897288e6a1ef +size 207124 diff --git a/datasets/检测仪/train/images/订单1806110_51_7103334.jpg b/datasets/检测仪/train/images/订单1806110_51_7103334.jpg new file mode 100644 index 0000000..8d4598c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806110_51_7103334.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc06e935a38c5beb616813ccf7f866a10ffefe999ead6a1f7b350e5aa84d4f8c +size 112615 diff --git a/datasets/检测仪/train/images/订单1806113_51_7103433.jpg b/datasets/检测仪/train/images/订单1806113_51_7103433.jpg new file mode 100644 index 0000000..59ce2ed --- /dev/null +++ b/datasets/检测仪/train/images/订单1806113_51_7103433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5b6f5a0fcbdef6202e0d529409ef141fee7cf8318e260115726d9b304223ea +size 137164 diff --git a/datasets/检测仪/train/images/订单1806114_51_7103385.jpg b/datasets/检测仪/train/images/订单1806114_51_7103385.jpg new file mode 100644 index 0000000..d30278e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806114_51_7103385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550ccc3795af9e91b980e3dcb43b474a5cee00f3ba911ae683560b6abb0247c6 +size 127734 diff --git a/datasets/检测仪/train/images/订单1806115_51_7103376.jpg b/datasets/检测仪/train/images/订单1806115_51_7103376.jpg new file mode 100644 index 0000000..84c59de --- /dev/null +++ b/datasets/检测仪/train/images/订单1806115_51_7103376.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8703a2400d438ff86dbd04bab5d6a07c963db108e28190e1217cfdda63e06d30 +size 160132 diff --git a/datasets/检测仪/train/images/订单1806116_51_7103437.jpg b/datasets/检测仪/train/images/订单1806116_51_7103437.jpg new file mode 100644 index 0000000..88d4403 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806116_51_7103437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a55556dbe8b5855a97dcbe539396d5d17533fe3b4e4b5bb48adfb5ed742c4a +size 158801 diff --git a/datasets/检测仪/train/images/订单1806117_51_7103452.jpg b/datasets/检测仪/train/images/订单1806117_51_7103452.jpg new file mode 100644 index 0000000..53b3e2a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806117_51_7103452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a52b3ddc7f1796b1ede90bd8878507de31edbd7fe218669c71795f0142a8c26 +size 89005 diff --git a/datasets/检测仪/train/images/订单1806118_51_7103420.jpg b/datasets/检测仪/train/images/订单1806118_51_7103420.jpg new file mode 100644 index 0000000..46d6f6e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806118_51_7103420.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe978099ec6724ab269702607cf591c2440d372d9da5edc52a52d2a0d5f9feb0 +size 127382 diff --git a/datasets/检测仪/train/images/订单1806120_51_7103423.jpg b/datasets/检测仪/train/images/订单1806120_51_7103423.jpg new file mode 100644 index 0000000..58b5406 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806120_51_7103423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120432befbd8a2454e9d422b682eba41f850bd5c358c796cf3664b3f2af1334d +size 118657 diff --git a/datasets/检测仪/train/images/订单1806123_51_7103545.jpg b/datasets/检测仪/train/images/订单1806123_51_7103545.jpg new file mode 100644 index 0000000..8cabe93 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806123_51_7103545.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc5e941884ebc3f6165ec4e995bf9bfead29a5430648ad4b93ecaf69e2663b7 +size 231071 diff --git a/datasets/检测仪/train/images/订单1806125_51_7103474.jpg b/datasets/检测仪/train/images/订单1806125_51_7103474.jpg new file mode 100644 index 0000000..5bf6541 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806125_51_7103474.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d602db28312d51c222e4a997f62923c0ee564119178a6d4f2e9f884c71b002 +size 532351 diff --git a/datasets/检测仪/train/images/订单1806126_51_7103481.jpg b/datasets/检测仪/train/images/订单1806126_51_7103481.jpg new file mode 100644 index 0000000..1cd5553 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806126_51_7103481.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e63ee621427340c435d4ef67e15fd88ce5513443f4410d6e48445a159d4de7c +size 137532 diff --git a/datasets/检测仪/train/images/订单1806128_51_7103584.jpg b/datasets/检测仪/train/images/订单1806128_51_7103584.jpg new file mode 100644 index 0000000..295b773 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806128_51_7103584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f86b0058b4825e8c5180377f1b809f5061669528f5ebc05a355cde1216bddd8 +size 566223 diff --git a/datasets/检测仪/train/images/订单1806130_51_7103513.jpg b/datasets/检测仪/train/images/订单1806130_51_7103513.jpg new file mode 100644 index 0000000..7f66676 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806130_51_7103513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36d5c3dbfae995bf6cb975168cd7f6e71dd06302cbd7ed12226dbdfdc94c716 +size 575382 diff --git a/datasets/检测仪/train/images/订单1806131_51_7103563.jpg b/datasets/检测仪/train/images/订单1806131_51_7103563.jpg new file mode 100644 index 0000000..540c565 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806131_51_7103563.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02ed1bed74fd404d7632426c5a90e6781b843b38f40d16b387e663168569c35 +size 266089 diff --git a/datasets/检测仪/train/images/订单1806133_51_7103528.jpg b/datasets/检测仪/train/images/订单1806133_51_7103528.jpg new file mode 100644 index 0000000..4f99d5e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806133_51_7103528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e9e4547e881e05b316927d6508a8ded34939f2fe79772f9549e477e8fbfa3d +size 130178 diff --git a/datasets/检测仪/train/images/订单1806136_51_7103552.jpg b/datasets/检测仪/train/images/订单1806136_51_7103552.jpg new file mode 100644 index 0000000..0d8bf82 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806136_51_7103552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bb8903597ac149de780383988cae4bc48544069d10125beeae0c20617bfbdb +size 161391 diff --git a/datasets/检测仪/train/images/订单1806141_51_7103695.jpg b/datasets/检测仪/train/images/订单1806141_51_7103695.jpg new file mode 100644 index 0000000..0397e62 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806141_51_7103695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778e45238d4484997f1ffd87a5b1630e98b3c20b8176b5d02062dccad4f6c71a +size 125050 diff --git a/datasets/检测仪/train/images/订单1806144_51_7103599.jpg b/datasets/检测仪/train/images/订单1806144_51_7103599.jpg new file mode 100644 index 0000000..696e5f5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806144_51_7103599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82920f02a52a16f6d6d7a8e973ef2f563c9166be46df8f6959e3b6fad203aeb6 +size 110473 diff --git a/datasets/检测仪/train/images/订单1806146_51_7103703.jpg b/datasets/检测仪/train/images/订单1806146_51_7103703.jpg new file mode 100644 index 0000000..46d09bb --- /dev/null +++ b/datasets/检测仪/train/images/订单1806146_51_7103703.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd73127881b9712cdaded4e207419a63742ecc8150c55dc6bde1da2bcd92e30 +size 101631 diff --git a/datasets/检测仪/train/images/订单1806148_51_7103678.jpg b/datasets/检测仪/train/images/订单1806148_51_7103678.jpg new file mode 100644 index 0000000..b7ac073 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806148_51_7103678.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd23c47b24b0ff2cfa8748e6c160d9faa4f115b6c7775912f1a36a53f2210211 +size 126267 diff --git a/datasets/检测仪/train/images/订单1806158_51_7103859.jpg b/datasets/检测仪/train/images/订单1806158_51_7103859.jpg new file mode 100644 index 0000000..32169c0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806158_51_7103859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2906c8d417b93daa42714a565c2932844487ad416278e1afbe8d7c36d628aa37 +size 199393 diff --git a/datasets/检测仪/train/images/订单1806160_51_7103768.jpg b/datasets/检测仪/train/images/订单1806160_51_7103768.jpg new file mode 100644 index 0000000..631a705 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806160_51_7103768.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3a2bc4143065ee7f3f3ff923dfbf9480c1b8860900a058359476fdce83470b +size 357192 diff --git a/datasets/检测仪/train/images/订单1806166_51_7103910.jpg b/datasets/检测仪/train/images/订单1806166_51_7103910.jpg new file mode 100644 index 0000000..c756ebf --- /dev/null +++ b/datasets/检测仪/train/images/订单1806166_51_7103910.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844ac121e8b4fc014e93cd7919ba74761c05fb4b919fca4f0ca747704376ead1 +size 131688 diff --git a/datasets/检测仪/train/images/订单1806169_51_7103877.jpg b/datasets/检测仪/train/images/订单1806169_51_7103877.jpg new file mode 100644 index 0000000..2e6ef05 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806169_51_7103877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1aea56c7ec136fe4ce7a22040adc9dda922fd706d627777550251f103278a37 +size 116116 diff --git a/datasets/检测仪/train/images/订单1806173_51_7104016.jpg b/datasets/检测仪/train/images/订单1806173_51_7104016.jpg new file mode 100644 index 0000000..3717207 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806173_51_7104016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4592b48df07fef2bed92bee1389b9bbe111f5a136f01f5ec4dd4694f23829653 +size 85833 diff --git a/datasets/检测仪/train/images/订单1806174_51_7103900.jpg b/datasets/检测仪/train/images/订单1806174_51_7103900.jpg new file mode 100644 index 0000000..5c56e6e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806174_51_7103900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f6a209ec7a560079b7d0414384d6dfd813fc6508b6905280ee0729053f1873 +size 241457 diff --git a/datasets/检测仪/train/images/订单1806178_51_7103983.jpg b/datasets/检测仪/train/images/订单1806178_51_7103983.jpg new file mode 100644 index 0000000..47ed410 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806178_51_7103983.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939f200c3a4bf1385bc4267344ef1dffb8fe839e1fb87b30d1885c60cfb877ef +size 437055 diff --git a/datasets/检测仪/train/images/订单1806180_51_7103956.jpg b/datasets/检测仪/train/images/订单1806180_51_7103956.jpg new file mode 100644 index 0000000..4513209 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806180_51_7103956.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e746a8a154b36f93542eed763f4d1304f1e72280e0771ecfd1ea19ccbaff70c +size 144187 diff --git a/datasets/检测仪/train/images/订单1806188_51_7104051.jpg b/datasets/检测仪/train/images/订单1806188_51_7104051.jpg new file mode 100644 index 0000000..8e74fcd --- /dev/null +++ b/datasets/检测仪/train/images/订单1806188_51_7104051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b7631905d0dba243996b25fdbfc1f311dc459469e81d6d2608884c0fcefaec +size 173525 diff --git a/datasets/检测仪/train/images/订单1806189_51_7103908.jpg b/datasets/检测仪/train/images/订单1806189_51_7103908.jpg new file mode 100644 index 0000000..298b436 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806189_51_7103908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd693448f77a57e56e17d95b31bba9f50c8b11464be389ff9a6a606a1603ee3b +size 140412 diff --git a/datasets/检测仪/train/images/订单1806192_51_7103954.jpg b/datasets/检测仪/train/images/订单1806192_51_7103954.jpg new file mode 100644 index 0000000..ff99ae4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806192_51_7103954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe18dc11e4476f6ab7c1cb730c6e3bdbf1a1928fac13e5b1431209a7d5f37dd +size 176301 diff --git a/datasets/检测仪/train/images/订单1806194_51_7103950.jpg b/datasets/检测仪/train/images/订单1806194_51_7103950.jpg new file mode 100644 index 0000000..b521b0a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806194_51_7103950.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9501856018aa4a6da113033d8836ca1e51dbaa54184e5a6a4f5b3ec604274e9 +size 212171 diff --git a/datasets/检测仪/train/images/订单1806196_51_7104047.jpg b/datasets/检测仪/train/images/订单1806196_51_7104047.jpg new file mode 100644 index 0000000..93f6223 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806196_51_7104047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956a8599a40612a51351df89adf56b72eaa1f17fb4e65777f6430740ce634ed9 +size 739470 diff --git a/datasets/检测仪/train/images/订单1806197_51_7104132.jpg b/datasets/检测仪/train/images/订单1806197_51_7104132.jpg new file mode 100644 index 0000000..3529899 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806197_51_7104132.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1802e2233af2d76e146a1ab9e8ea7f281060529ca32d67b546ac62324c5a5bae +size 145418 diff --git a/datasets/检测仪/train/images/订单1806198_51_7104058.jpg b/datasets/检测仪/train/images/订单1806198_51_7104058.jpg new file mode 100644 index 0000000..ae01d11 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806198_51_7104058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ef8579c34a2e0d4bd09f7e44c91f362db56f39f281e35343928e740d1e966e +size 107080 diff --git a/datasets/检测仪/train/images/订单1806203_51_7104209.jpg b/datasets/检测仪/train/images/订单1806203_51_7104209.jpg new file mode 100644 index 0000000..659ea0b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806203_51_7104209.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caae7af3b5b876450c2753db7ae82904c6479c2f76634c01712d37fd6672749b +size 119418 diff --git a/datasets/检测仪/train/images/订单1806206_51_7104307.jpg b/datasets/检测仪/train/images/订单1806206_51_7104307.jpg new file mode 100644 index 0000000..bcaf752 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806206_51_7104307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2497ddba78cce62aa16a37cbfc5eae97a4fa9fb783004d70cbf6afef118f8803 +size 357952 diff --git a/datasets/检测仪/train/images/订单1806207_51_7104196.jpg b/datasets/检测仪/train/images/订单1806207_51_7104196.jpg new file mode 100644 index 0000000..faae0fb --- /dev/null +++ b/datasets/检测仪/train/images/订单1806207_51_7104196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb8443d8463f6b229ebbb5cecd536e1de79b3235c2e2429d6c618d992860763 +size 146092 diff --git a/datasets/检测仪/train/images/订单1806211_51_7104444.jpg b/datasets/检测仪/train/images/订单1806211_51_7104444.jpg new file mode 100644 index 0000000..3c5a46e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806211_51_7104444.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f8bbd6905028218def7c192bc6e3951167018c64328adfdc380f11fc975840 +size 132400 diff --git a/datasets/检测仪/train/images/订单1806212_51_7104331.jpg b/datasets/检测仪/train/images/订单1806212_51_7104331.jpg new file mode 100644 index 0000000..f2e9832 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806212_51_7104331.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6a8a46a8ba91d445dafce39a55b621598e50b8150e491551085385e8cd4e8f +size 102417 diff --git a/datasets/检测仪/train/images/订单1806215_51_7104325.jpg b/datasets/检测仪/train/images/订单1806215_51_7104325.jpg new file mode 100644 index 0000000..a55a9f5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806215_51_7104325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b5e473454e03b6e9f5d8d305a762a7ec4374f53eab7599ff9c6b57681f960e +size 355618 diff --git a/datasets/检测仪/train/images/订单1806217_51_7104303.jpg b/datasets/检测仪/train/images/订单1806217_51_7104303.jpg new file mode 100644 index 0000000..a7dfe79 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806217_51_7104303.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3875c9367473e8507e80469c7d64bf6749ff6c46e2df808a5ca3c18ba7f84df9 +size 679817 diff --git a/datasets/检测仪/train/images/订单1806218_51_7104322.jpg b/datasets/检测仪/train/images/订单1806218_51_7104322.jpg new file mode 100644 index 0000000..98c251a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806218_51_7104322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610d769d6a6e265a1dbffb23c46946bf6e78a5855d04ccac0a34c7f8b36706ee +size 241771 diff --git a/datasets/检测仪/train/images/订单1806219_51_7104378.jpg b/datasets/检测仪/train/images/订单1806219_51_7104378.jpg new file mode 100644 index 0000000..35dac7d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806219_51_7104378.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0d52dc875adbb2305edac19381c7e6cf92820917fa31c4e667e8b8758f21f9 +size 217278 diff --git a/datasets/检测仪/train/images/订单1806225_51_7104423.jpg b/datasets/检测仪/train/images/订单1806225_51_7104423.jpg new file mode 100644 index 0000000..2e3893d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806225_51_7104423.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d5ad63da5e86a56fcd68058b98b84f512e7858d0d40289dfb07e2b8354cd06 +size 146486 diff --git a/datasets/检测仪/train/images/订单1806226_51_7104403.jpg b/datasets/检测仪/train/images/订单1806226_51_7104403.jpg new file mode 100644 index 0000000..3032b3a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806226_51_7104403.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427dbadcda1d3fa7de7460d25665953b34dd13f35e0da8a680b0791419a9221e +size 141745 diff --git a/datasets/检测仪/train/images/订单1806228_51_7104429.jpg b/datasets/检测仪/train/images/订单1806228_51_7104429.jpg new file mode 100644 index 0000000..535a36c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806228_51_7104429.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee3b3a874204325e7108c1c2d143968456be4eb4afef9282dbd8e3a0f00ea28 +size 108354 diff --git a/datasets/检测仪/train/images/订单1806231_51_7104704.jpg b/datasets/检测仪/train/images/订单1806231_51_7104704.jpg new file mode 100644 index 0000000..6eeea61 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806231_51_7104704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab347aaf7001b57ec1017e2541389460febe48d1bc5f0bbd90883cc368dd7b3f +size 166214 diff --git a/datasets/检测仪/train/images/订单1806234_51_7104480.jpg b/datasets/检测仪/train/images/订单1806234_51_7104480.jpg new file mode 100644 index 0000000..4bdc0b8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806234_51_7104480.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c381d920d0f22d590dd7a31517ee7858c05ebb5ff8721d9e4074490dc570fb +size 142021 diff --git a/datasets/检测仪/train/images/订单1806239_51_7104590.jpg b/datasets/检测仪/train/images/订单1806239_51_7104590.jpg new file mode 100644 index 0000000..45521a6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806239_51_7104590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c84f135840465d265ddcdb5f4d8e24c10a2095f847dc4b4f564b6de886086c +size 138684 diff --git a/datasets/检测仪/train/images/订单1806242_51_7104631.jpg b/datasets/检测仪/train/images/订单1806242_51_7104631.jpg new file mode 100644 index 0000000..4f207d6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806242_51_7104631.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfc62ab81998f29385ff35fdfa4a8bac7eda760f5d6f6e51913b031a78092bf +size 256060 diff --git a/datasets/检测仪/train/images/订单1806244_51_7104569.jpg b/datasets/检测仪/train/images/订单1806244_51_7104569.jpg new file mode 100644 index 0000000..b6e9fd6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806244_51_7104569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d229a50ede224c47245e941e7de1349a52d616800b7f731af9706cd84daef700 +size 474927 diff --git a/datasets/检测仪/train/images/订单1806246_51_7104763.jpg b/datasets/检测仪/train/images/订单1806246_51_7104763.jpg new file mode 100644 index 0000000..80b1957 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806246_51_7104763.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7d6939992dc7d2db1bcb21506ee63d45b03eca5d7951f926ca63ad6f7d6cd57 +size 128765 diff --git a/datasets/检测仪/train/images/订单1806247_51_7104645.jpg b/datasets/检测仪/train/images/订单1806247_51_7104645.jpg new file mode 100644 index 0000000..9f3a5a1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806247_51_7104645.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2ffb43a9bf9d07b02723cbd20c49aa9309da115159669f674dc4a9f04ea27a +size 83408 diff --git a/datasets/检测仪/train/images/订单1806248_51_7104713.jpg b/datasets/检测仪/train/images/订单1806248_51_7104713.jpg new file mode 100644 index 0000000..82fde40 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806248_51_7104713.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0c8ee4248cc53a044b327ec7be3a2ebe27bf5dc379877fb41894e1468bf173 +size 126500 diff --git a/datasets/检测仪/train/images/订单1806251_51_7104781.jpg b/datasets/检测仪/train/images/订单1806251_51_7104781.jpg new file mode 100644 index 0000000..e440cc9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806251_51_7104781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4e5e7ddbda5626e791ae0cf96b038ae47609107a547a5ba06338d96aab2cba +size 149176 diff --git a/datasets/检测仪/train/images/订单1806252_51_7104609.jpg b/datasets/检测仪/train/images/订单1806252_51_7104609.jpg new file mode 100644 index 0000000..12e8e57 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806252_51_7104609.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340b1b207901e6c2bf103cb953f768757af5193b17f6ab9f65b56247e4f684ee +size 413713 diff --git a/datasets/检测仪/train/images/订单1806253_51_7104764.jpg b/datasets/检测仪/train/images/订单1806253_51_7104764.jpg new file mode 100644 index 0000000..b8cd21e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806253_51_7104764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d646a04aad8faa8b90a2650f81eadababa9d82836caa72373369aba3adafb5c +size 155399 diff --git a/datasets/检测仪/train/images/订单1806254_51_7104737.jpg b/datasets/检测仪/train/images/订单1806254_51_7104737.jpg new file mode 100644 index 0000000..148f52a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806254_51_7104737.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a44c5d3376e143fe06d1dfae8b2c22c8b4c7428b6abd1ae725ec708c245cc0 +size 168113 diff --git a/datasets/检测仪/train/images/订单1806256_51_7104758.jpg b/datasets/检测仪/train/images/订单1806256_51_7104758.jpg new file mode 100644 index 0000000..d6b6316 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806256_51_7104758.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275eed1a34043a981b8bd76e4c1beee1a388c7de6d2eefc684a529f127333810 +size 146362 diff --git a/datasets/检测仪/train/images/订单1806259_51_7104978.jpg b/datasets/检测仪/train/images/订单1806259_51_7104978.jpg new file mode 100644 index 0000000..9c6672c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806259_51_7104978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d2563149588fe0ece4dd166ecc8ede098383f210310a0af284037952022220 +size 197156 diff --git a/datasets/检测仪/train/images/订单1806260_51_7104740.jpg b/datasets/检测仪/train/images/订单1806260_51_7104740.jpg new file mode 100644 index 0000000..4a9484e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806260_51_7104740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca69d077874ff2c808c014d9774768ec67a8b5a123914971653a90110623e8ce +size 149132 diff --git a/datasets/检测仪/train/images/订单1806265_51_7104815.jpg b/datasets/检测仪/train/images/订单1806265_51_7104815.jpg new file mode 100644 index 0000000..5384a67 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806265_51_7104815.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb2d3bf86bfb0e3e6df120eca1ca1f957dc7d156d54783e43b9a6038bae1ec8 +size 124464 diff --git a/datasets/检测仪/train/images/订单1806269_51_7104849.jpg b/datasets/检测仪/train/images/订单1806269_51_7104849.jpg new file mode 100644 index 0000000..fde26e6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806269_51_7104849.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e0230ded1792a599cd51b71c1a14889e9f836e80083e3f885d5389f340888a +size 489269 diff --git a/datasets/检测仪/train/images/订单1806270_51_7104958.jpg b/datasets/检测仪/train/images/订单1806270_51_7104958.jpg new file mode 100644 index 0000000..585f8b7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806270_51_7104958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75093eea7405c4202f5c607bf1fb66e29a6f46c35f64cc611fe713c2c021479 +size 123684 diff --git a/datasets/检测仪/train/images/订单1806273_51_7104884.jpg b/datasets/检测仪/train/images/订单1806273_51_7104884.jpg new file mode 100644 index 0000000..a095bcc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806273_51_7104884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164313a9213b02cf2fe17fdcef686fa7c402605cac49838ff5f2a78744e9560e +size 170097 diff --git a/datasets/检测仪/train/images/订单1806274_51_7104931.jpg b/datasets/检测仪/train/images/订单1806274_51_7104931.jpg new file mode 100644 index 0000000..3a96052 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806274_51_7104931.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b62c05fee88e86a68a4dc5db8d074fc58713de8981e92095e451c8c2c38b5a +size 674284 diff --git a/datasets/检测仪/train/images/订单1806280_51_7105035.jpg b/datasets/检测仪/train/images/订单1806280_51_7105035.jpg new file mode 100644 index 0000000..cd62870 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806280_51_7105035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec02d4f59b801061df06ca539d075d7b37f4191e05fdb798e65283795f4d825 +size 400482 diff --git a/datasets/检测仪/train/images/订单1806282_51_7105048.jpg b/datasets/检测仪/train/images/订单1806282_51_7105048.jpg new file mode 100644 index 0000000..030f86e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806282_51_7105048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153bd5954928b69fc729b41bcab0ecb29b5c803535e0408ae400d82fc995317a +size 101444 diff --git a/datasets/检测仪/train/images/订单1806284_51_7105002.jpg b/datasets/检测仪/train/images/订单1806284_51_7105002.jpg new file mode 100644 index 0000000..2996d55 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806284_51_7105002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41da6c30ef95a341f9c62819e818f409a2d41c26f8a3be40143213328bcff406 +size 108988 diff --git a/datasets/检测仪/train/images/订单1806286_51_7105055.jpg b/datasets/检测仪/train/images/订单1806286_51_7105055.jpg new file mode 100644 index 0000000..c8b1995 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806286_51_7105055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e49b854d5b4fe00d554f75f7ce01790d0ae6fcac9fb09da6f4344add60cc81a +size 88585 diff --git a/datasets/检测仪/train/images/订单1806291_51_7105064.jpg b/datasets/检测仪/train/images/订单1806291_51_7105064.jpg new file mode 100644 index 0000000..72a8496 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806291_51_7105064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:200044c6e469bfe5b54bc563eb96417b3f52a73a5eebf0ae888cadbab627e839 +size 354102 diff --git a/datasets/检测仪/train/images/订单1806292_51_7105155.jpg b/datasets/检测仪/train/images/订单1806292_51_7105155.jpg new file mode 100644 index 0000000..f555947 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806292_51_7105155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4df9d1f4c0bbf8fa13caf598df397f38e5499f1126d217d96cd75bf681bb391 +size 495552 diff --git a/datasets/检测仪/train/images/订单1806293_51_7105244.jpg b/datasets/检测仪/train/images/订单1806293_51_7105244.jpg new file mode 100644 index 0000000..5ed3c66 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806293_51_7105244.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97c9a50d21fd359976959cce48098dff3a76310c47115b5b7b30b8a680cd3f0 +size 147702 diff --git a/datasets/检测仪/train/images/订单1806296_51_7105118.jpg b/datasets/检测仪/train/images/订单1806296_51_7105118.jpg new file mode 100644 index 0000000..56afe1c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806296_51_7105118.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b6b78d16cdaba6a69b1fb73888960bce98dc712f309c215cb842a562716d1b +size 188399 diff --git a/datasets/检测仪/train/images/订单1806298_51_7105110.jpg b/datasets/检测仪/train/images/订单1806298_51_7105110.jpg new file mode 100644 index 0000000..329fe02 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806298_51_7105110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f6e6b18ac86bb61014fa7b5db9e065d764a82ee831552f7e7cafb0ae36f5f0 +size 130817 diff --git a/datasets/检测仪/train/images/订单1806301_51_7105200.jpg b/datasets/检测仪/train/images/订单1806301_51_7105200.jpg new file mode 100644 index 0000000..47347d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806301_51_7105200.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6af9f4afa8275b621725be11e238c2fe51bd3bb658b7069039dd6aeca0cf22f +size 144886 diff --git a/datasets/检测仪/train/images/订单1806302_51_7105091.jpg b/datasets/检测仪/train/images/订单1806302_51_7105091.jpg new file mode 100644 index 0000000..b512748 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806302_51_7105091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8364896724ac188f83adc135b4a89e677c1d5777ff2833d695b3bcbe446899a2 +size 142388 diff --git a/datasets/检测仪/train/images/订单1806303_51_7105175.jpg b/datasets/检测仪/train/images/订单1806303_51_7105175.jpg new file mode 100644 index 0000000..1988349 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806303_51_7105175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b581a8b3439e1c5caf19ad88072fe1b4aff618a8f809eebb049d7da9a63c6c44 +size 166156 diff --git a/datasets/检测仪/train/images/订单1806306_51_7105187.jpg b/datasets/检测仪/train/images/订单1806306_51_7105187.jpg new file mode 100644 index 0000000..c27f0e6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806306_51_7105187.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e332a9c98d34a54fc09dc0c0cda30c1bee6dc744f1a51e5dfd904af514d9d8 +size 121606 diff --git a/datasets/检测仪/train/images/订单1806307_51_7105144.jpg b/datasets/检测仪/train/images/订单1806307_51_7105144.jpg new file mode 100644 index 0000000..eb2bbfc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806307_51_7105144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbba1118fe7e08e82ed573eef6e793db73ead2302f78e9842d07afd8bf818a45 +size 157823 diff --git a/datasets/检测仪/train/images/订单1806308_51_7105217.jpg b/datasets/检测仪/train/images/订单1806308_51_7105217.jpg new file mode 100644 index 0000000..f807672 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806308_51_7105217.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a9d414e1206dafb28faac12f6cfe1a6d46a76cb7da3c009a04f71bd4a291f3 +size 143103 diff --git a/datasets/检测仪/train/images/订单1806309_51_7105279.jpg b/datasets/检测仪/train/images/订单1806309_51_7105279.jpg new file mode 100644 index 0000000..5e006f9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806309_51_7105279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21697adc83b28538e1b13933b959f770414fcb7732c3c3e14a13ac2636330de +size 126686 diff --git a/datasets/检测仪/train/images/订单1806310_51_7105820.jpg b/datasets/检测仪/train/images/订单1806310_51_7105820.jpg new file mode 100644 index 0000000..e7f3598 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806310_51_7105820.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948ad2b0a712f2c6f02864d515eac7e5efc5cb358fa6af4bbaefe0bd24366552 +size 215339 diff --git a/datasets/检测仪/train/images/订单1806311_51_7105525.jpg b/datasets/检测仪/train/images/订单1806311_51_7105525.jpg new file mode 100644 index 0000000..cf71429 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806311_51_7105525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba67fb6c5d3cf72c35bee2eba9debdc6df29f9f3f5eb2dfb866f448c9470a76 +size 108651 diff --git a/datasets/检测仪/train/images/订单1806314_51_7105323.jpg b/datasets/检测仪/train/images/订单1806314_51_7105323.jpg new file mode 100644 index 0000000..2e3e1a5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806314_51_7105323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2853868ddb97bf0e4b7f24c9b08d94f589abfd0d2da2cbd8536ca464ad8061d +size 120404 diff --git a/datasets/检测仪/train/images/订单1806315_51_7105307.jpg b/datasets/检测仪/train/images/订单1806315_51_7105307.jpg new file mode 100644 index 0000000..688b7e2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806315_51_7105307.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0dcafb5858a4181206331c63b7188729cc418a135dd493eda4bd830d8145f0f +size 134711 diff --git a/datasets/检测仪/train/images/订单1806318_51_7105355.jpg b/datasets/检测仪/train/images/订单1806318_51_7105355.jpg new file mode 100644 index 0000000..b4045a8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806318_51_7105355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6712d64a987910c37cb5f10d052443caa8a406ab5d1714532bc0abe1e6dcff0 +size 125325 diff --git a/datasets/检测仪/train/images/订单1806319_51_7105277.jpg b/datasets/检测仪/train/images/订单1806319_51_7105277.jpg new file mode 100644 index 0000000..371068b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806319_51_7105277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2312af67b02f8458c4240052a90f729704178788ad837d7c59be52c421557eae +size 412692 diff --git a/datasets/检测仪/train/images/订单1806323_51_7105337.jpg b/datasets/检测仪/train/images/订单1806323_51_7105337.jpg new file mode 100644 index 0000000..8250655 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806323_51_7105337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83fc9ba952d1d53e0f82847cec18d6ea68be0eb697335dac7c6769ff7c85a52e +size 127048 diff --git a/datasets/检测仪/train/images/订单1806324_51_7105310.jpg b/datasets/检测仪/train/images/订单1806324_51_7105310.jpg new file mode 100644 index 0000000..9597f23 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806324_51_7105310.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d9b102a87306c3fdb5312e7b7fc78d3e3759c4e68af4feff830066eae6b562 +size 99973 diff --git a/datasets/检测仪/train/images/订单1806325_51_7105633.jpg b/datasets/检测仪/train/images/订单1806325_51_7105633.jpg new file mode 100644 index 0000000..8548aae --- /dev/null +++ b/datasets/检测仪/train/images/订单1806325_51_7105633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54994bfc1ebcc2487e511cf05ba433ebad849ca9e6a6f421c9b593b314cc226 +size 138307 diff --git a/datasets/检测仪/train/images/订单1806327_51_7105361.jpg b/datasets/检测仪/train/images/订单1806327_51_7105361.jpg new file mode 100644 index 0000000..9ba602a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806327_51_7105361.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d98da6fa0fb1424ade055ff6487e6365e3e40d5a156fbb4c12d3a31903ead20 +size 148490 diff --git a/datasets/检测仪/train/images/订单1806328_51_7105439.jpg b/datasets/检测仪/train/images/订单1806328_51_7105439.jpg new file mode 100644 index 0000000..49cf553 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806328_51_7105439.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c694bd3a98ca3430bf5d0bfbcfbbce22dad9c0b72bf20fbfa270ba3be4fd4996 +size 109823 diff --git a/datasets/检测仪/train/images/订单1806330_51_7105483.jpg b/datasets/检测仪/train/images/订单1806330_51_7105483.jpg new file mode 100644 index 0000000..6304e50 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806330_51_7105483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb9d40b4a5fa2d6ddcd9753bddac31794e9b4a4bdbe6f741da112674086e75f +size 135462 diff --git a/datasets/检测仪/train/images/订单1806331_51_7105381.jpg b/datasets/检测仪/train/images/订单1806331_51_7105381.jpg new file mode 100644 index 0000000..01671af --- /dev/null +++ b/datasets/检测仪/train/images/订单1806331_51_7105381.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd7f32f6df3c9b709535e7b27d17f65c3cb866b8a38ac0be85ec059b783990e +size 132201 diff --git a/datasets/检测仪/train/images/订单1806333_51_7105436.jpg b/datasets/检测仪/train/images/订单1806333_51_7105436.jpg new file mode 100644 index 0000000..c694df9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806333_51_7105436.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f6f607f4968a708517ea775d5e38b0f382bb358e334aceac368ab74dcc6fce +size 91148 diff --git a/datasets/检测仪/train/images/订单1806334_51_7105428.jpg b/datasets/检测仪/train/images/订单1806334_51_7105428.jpg new file mode 100644 index 0000000..390ff72 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806334_51_7105428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8f28c1b4f21ee7694b73374ab839bc3029a9b576750e585818854516746e77 +size 126844 diff --git a/datasets/检测仪/train/images/订单1806336_51_7105410.jpg b/datasets/检测仪/train/images/订单1806336_51_7105410.jpg new file mode 100644 index 0000000..d3bf528 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806336_51_7105410.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9591c958e95c903831188ec33de87551fd583c71650d5804e218b76d4622f1c7 +size 435386 diff --git a/datasets/检测仪/train/images/订单1806337_51_7105549.jpg b/datasets/检测仪/train/images/订单1806337_51_7105549.jpg new file mode 100644 index 0000000..ba11840 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806337_51_7105549.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbefd45aa15d3da68783c4589262c580f2921ba742b0af999bc74c830f5c684 +size 82598 diff --git a/datasets/检测仪/train/images/订单1806340_51_7105570.jpg b/datasets/检测仪/train/images/订单1806340_51_7105570.jpg new file mode 100644 index 0000000..43eaeeb --- /dev/null +++ b/datasets/检测仪/train/images/订单1806340_51_7105570.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c5be6a741abfc8fd9fe584ff64b55329c095049661b33ab05037ac711e14d0 +size 284272 diff --git a/datasets/检测仪/train/images/订单1806342_51_7105897.jpg b/datasets/检测仪/train/images/订单1806342_51_7105897.jpg new file mode 100644 index 0000000..c2f3365 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806342_51_7105897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ab6029629684184a7b447df40c0f0c5200a530503b290e2ad49ed52499798b +size 85829 diff --git a/datasets/检测仪/train/images/订单1806343_51_7105589.jpg b/datasets/检测仪/train/images/订单1806343_51_7105589.jpg new file mode 100644 index 0000000..7a08ced --- /dev/null +++ b/datasets/检测仪/train/images/订单1806343_51_7105589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1553ab5c4dcc16fa37efbdaf6d3d8cf8746cd830567c672f25989897fbe561 +size 370542 diff --git a/datasets/检测仪/train/images/订单1806345_51_7105509.jpg b/datasets/检测仪/train/images/订单1806345_51_7105509.jpg new file mode 100644 index 0000000..e2c1781 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806345_51_7105509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930bddd3cfa5a0e8a695031d49a8752ea8d53c49245f10ab08b051644a1d72f1 +size 95274 diff --git a/datasets/检测仪/train/images/订单1806349_51_7105942.jpg b/datasets/检测仪/train/images/订单1806349_51_7105942.jpg new file mode 100644 index 0000000..52bba71 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806349_51_7105942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0cb054e4decfd0c41df0aa678ba990e42b879af0beae30acaeeb0413851511 +size 420831 diff --git a/datasets/检测仪/train/images/订单1806351_51_7105526.jpg b/datasets/检测仪/train/images/订单1806351_51_7105526.jpg new file mode 100644 index 0000000..8aa71ce --- /dev/null +++ b/datasets/检测仪/train/images/订单1806351_51_7105526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9465787115d6d57808cdf82ce5ed2cc571f5d1e16676c84fa35b398ca77bd301 +size 115761 diff --git a/datasets/检测仪/train/images/订单1806353_51_7105640.jpg b/datasets/检测仪/train/images/订单1806353_51_7105640.jpg new file mode 100644 index 0000000..874f9c2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806353_51_7105640.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80252d013617a0e51e51a2f07f191e718a3a290ac988d25a38d6877dfa975fe0 +size 158715 diff --git a/datasets/检测仪/train/images/订单1806354_51_7105654.jpg b/datasets/检测仪/train/images/订单1806354_51_7105654.jpg new file mode 100644 index 0000000..120ed70 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806354_51_7105654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2fb08715eec3092c1605bfb0e7e92cacda178c18cd1e291e4418d5c6619cb +size 79513 diff --git a/datasets/检测仪/train/images/订单1806355_51_7105607.jpg b/datasets/检测仪/train/images/订单1806355_51_7105607.jpg new file mode 100644 index 0000000..20cbdf9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806355_51_7105607.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5388498c393216e278b78e335cde69a675bd0f4a73603113b35fa7b1dc1e5ebc +size 160113 diff --git a/datasets/检测仪/train/images/订单1806357_51_7105670.jpg b/datasets/检测仪/train/images/订单1806357_51_7105670.jpg new file mode 100644 index 0000000..0fa64c3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806357_51_7105670.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a70cf0aaa271b7f368444312fd9a07f226f09811a5f3716a1eeb1399bd126c +size 85499 diff --git a/datasets/检测仪/train/images/订单1806358_51_7105747.jpg b/datasets/检测仪/train/images/订单1806358_51_7105747.jpg new file mode 100644 index 0000000..7630d65 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806358_51_7105747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bed8ecceab72fe2fb3f19061603f0d156ff9b44d148394a4635f6173c80b84 +size 95481 diff --git a/datasets/检测仪/train/images/订单1806360_51_7105662.jpg b/datasets/检测仪/train/images/订单1806360_51_7105662.jpg new file mode 100644 index 0000000..596a967 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806360_51_7105662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a4ecbd76882f5326b03a3ebfe53e167ebf746f68c19b75100f5e9a379a4eb6 +size 91353 diff --git a/datasets/检测仪/train/images/订单1806361_51_7105712.jpg b/datasets/检测仪/train/images/订单1806361_51_7105712.jpg new file mode 100644 index 0000000..d39f6d2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806361_51_7105712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae7f371bfa2b76fa8fb555a9d768ea8902e54b73585df33d0ee8f85d782a1af +size 173791 diff --git a/datasets/检测仪/train/images/订单1806363_51_7105693.jpg b/datasets/检测仪/train/images/订单1806363_51_7105693.jpg new file mode 100644 index 0000000..fce320b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806363_51_7105693.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0186ece41d8babcebd3aee894176b4b93417dd01bb60d7ea88cc3575fc65d7d +size 118502 diff --git a/datasets/检测仪/train/images/订单1806366_51_7105783.jpg b/datasets/检测仪/train/images/订单1806366_51_7105783.jpg new file mode 100644 index 0000000..15d09c9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806366_51_7105783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e87053bb0ac5392229d5119bc38fd0cf8a98f20eed9d10f38d3e1ce8792afdf +size 123724 diff --git a/datasets/检测仪/train/images/订单1806367_51_7105793.jpg b/datasets/检测仪/train/images/订单1806367_51_7105793.jpg new file mode 100644 index 0000000..f9909e8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806367_51_7105793.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e48de2ef0d549ec96546bddba6b80e9aaa9ec60d8a3178bdcbc2b2afddc3107 +size 333464 diff --git a/datasets/检测仪/train/images/订单1806368_51_7105718.jpg b/datasets/检测仪/train/images/订单1806368_51_7105718.jpg new file mode 100644 index 0000000..0e652db --- /dev/null +++ b/datasets/检测仪/train/images/订单1806368_51_7105718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d2023c6adc9b600179f7d74a244b17e7e64f0c6302d835dbfbaf2d4731df29 +size 552310 diff --git a/datasets/检测仪/train/images/订单1806369_51_7105743.jpg b/datasets/检测仪/train/images/订单1806369_51_7105743.jpg new file mode 100644 index 0000000..d3e7a21 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806369_51_7105743.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6de492b06a74c3a2518360ebe1abda7d2eaef1a172a6fa411d582e793be2f1 +size 118699 diff --git a/datasets/检测仪/train/images/订单1806370_51_7105764.jpg b/datasets/检测仪/train/images/订单1806370_51_7105764.jpg new file mode 100644 index 0000000..9a8ae86 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806370_51_7105764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed018a104954639be10de6ec8fa821c0ec24f3bcb69653e0d3251b356362b011 +size 416077 diff --git a/datasets/检测仪/train/images/订单1806371_51_7105828.jpg b/datasets/检测仪/train/images/订单1806371_51_7105828.jpg new file mode 100644 index 0000000..8a7fd2c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806371_51_7105828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3456994a6d2a2233912c56167269e2b9d5cbec16dbd07f99d0bf63a38acf4d +size 633475 diff --git a/datasets/检测仪/train/images/订单1806374_51_7105810.jpg b/datasets/检测仪/train/images/订单1806374_51_7105810.jpg new file mode 100644 index 0000000..363b16b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806374_51_7105810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0eb277955b9955e8bf85f8685116c488816cab1a59ca0bfcc58c5a2d76e3f91 +size 118348 diff --git a/datasets/检测仪/train/images/订单1806382_51_7105948.jpg b/datasets/检测仪/train/images/订单1806382_51_7105948.jpg new file mode 100644 index 0000000..031eb79 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806382_51_7105948.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ac85d0647a8a3ef81df91d7636d1ae23475df90cd3a1baf5531d7219f105e6 +size 85912 diff --git a/datasets/检测仪/train/images/订单1806386_51_7105908.jpg b/datasets/检测仪/train/images/订单1806386_51_7105908.jpg new file mode 100644 index 0000000..e5c9b19 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806386_51_7105908.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a2fd68dd92b52dd6ad78e446a9bbcc3cf601c5a15bebc3cdf5c4c2e922edc1 +size 126790 diff --git a/datasets/检测仪/train/images/订单1806388_51_7106058.jpg b/datasets/检测仪/train/images/订单1806388_51_7106058.jpg new file mode 100644 index 0000000..5a5c90b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806388_51_7106058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64cf773c156d3ff1a767f85b41dc74fd6d92dce61c7bedbb5eb1b1423615149 +size 128036 diff --git a/datasets/检测仪/train/images/订单1806391_51_7106033.jpg b/datasets/检测仪/train/images/订单1806391_51_7106033.jpg new file mode 100644 index 0000000..ac5d94c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806391_51_7106033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188e7da81df7cc62206fe4d5027711280efbd85dbb37eacffd3fcb41a5c789d1 +size 108519 diff --git a/datasets/检测仪/train/images/订单1806395_51_7106004.jpg b/datasets/检测仪/train/images/订单1806395_51_7106004.jpg new file mode 100644 index 0000000..77f1af6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806395_51_7106004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f793bf1e7d1f0c7a89d3f9263a2aaeb250382190284279c5b795cb470fe879e +size 121940 diff --git a/datasets/检测仪/train/images/订单1806398_51_7106151.jpg b/datasets/检测仪/train/images/订单1806398_51_7106151.jpg new file mode 100644 index 0000000..d242d20 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806398_51_7106151.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0d711469dce5d2c702a8fd13c57bb5ac2076ee13c38dc1920b6ece7b8ac87b +size 131272 diff --git a/datasets/检测仪/train/images/订单1806400_51_7106043.jpg b/datasets/检测仪/train/images/订单1806400_51_7106043.jpg new file mode 100644 index 0000000..064845d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806400_51_7106043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999c059abcc94b938c46480929de55bacb400f0845bc15cb7231ac912e8feeaa +size 490901 diff --git a/datasets/检测仪/train/images/订单1806402_51_7106069.jpg b/datasets/检测仪/train/images/订单1806402_51_7106069.jpg new file mode 100644 index 0000000..2cf8987 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806402_51_7106069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5201681044408853981064cbcc6ff188292d675e6b197c0343e8ca793a85fb9f +size 95722 diff --git a/datasets/检测仪/train/images/订单1806403_51_7106091.jpg b/datasets/检测仪/train/images/订单1806403_51_7106091.jpg new file mode 100644 index 0000000..c906206 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806403_51_7106091.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc197dbd87cbd50f106f1d4239dfb2d889388aaacd13dbf0551d6533a6750fa3 +size 80724 diff --git a/datasets/检测仪/train/images/订单1806410_51_7106166.jpg b/datasets/检测仪/train/images/订单1806410_51_7106166.jpg new file mode 100644 index 0000000..8542225 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806410_51_7106166.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c079e66c9b8f908b1c0fef7e8f0ba09c4ed6c759d66e5ef1a69fb963df604256 +size 143068 diff --git a/datasets/检测仪/train/images/订单1806413_51_7106233.jpg b/datasets/检测仪/train/images/订单1806413_51_7106233.jpg new file mode 100644 index 0000000..c00c71c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806413_51_7106233.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b31679badad47a65ba5567eb3eca399189c2eea5e85e2e10ad42dd2d9f1f9d4 +size 106550 diff --git a/datasets/检测仪/train/images/订单1806415_51_7106264.jpg b/datasets/检测仪/train/images/订单1806415_51_7106264.jpg new file mode 100644 index 0000000..3aa38c2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806415_51_7106264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e0b89ba52db62d35610176e76f5686567bdcc6155e73884656833dbdafa58b +size 339440 diff --git a/datasets/检测仪/train/images/订单1806417_51_7106289.jpg b/datasets/检测仪/train/images/订单1806417_51_7106289.jpg new file mode 100644 index 0000000..d0c12e5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806417_51_7106289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec38bd605909280318396f4ffa8e51a6e35c62e4784fd011936c47dd8a5f598e +size 96150 diff --git a/datasets/检测仪/train/images/订单1806418_51_7106207.jpg b/datasets/检测仪/train/images/订单1806418_51_7106207.jpg new file mode 100644 index 0000000..8a10336 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806418_51_7106207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e797e263487271607a2a0fdef9dc34d6bb51dcf10cddcf90f4ec65eee571c93 +size 130195 diff --git a/datasets/检测仪/train/images/订单1806420_51_7106202.jpg b/datasets/检测仪/train/images/订单1806420_51_7106202.jpg new file mode 100644 index 0000000..b05e3eb --- /dev/null +++ b/datasets/检测仪/train/images/订单1806420_51_7106202.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d06d2e2a1c32172ba8110f8d6300ba4466a022cf74d13a46873a354b152d13 +size 101417 diff --git a/datasets/检测仪/train/images/订单1806421_51_7106234.jpg b/datasets/检测仪/train/images/订单1806421_51_7106234.jpg new file mode 100644 index 0000000..1d9ea56 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806421_51_7106234.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255972de442439fed21e721b5da9b111afeb6fd4272ec868e0cabb276f202f93 +size 520706 diff --git a/datasets/检测仪/train/images/订单1806423_51_7106297.jpg b/datasets/检测仪/train/images/订单1806423_51_7106297.jpg new file mode 100644 index 0000000..450120d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806423_51_7106297.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d647e3f9c9732d152ce6edbb770409bdbb43f23b80d5b2dbaaf6ff3dbd98ee +size 101817 diff --git a/datasets/检测仪/train/images/订单1806424_51_7106323.jpg b/datasets/检测仪/train/images/订单1806424_51_7106323.jpg new file mode 100644 index 0000000..a8d10c0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806424_51_7106323.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc14387090df2476c6520903c5fec3536ef15221d9ad82dc6f35f98f407d2445 +size 113409 diff --git a/datasets/检测仪/train/images/订单1806435_51_7106340.jpg b/datasets/检测仪/train/images/订单1806435_51_7106340.jpg new file mode 100644 index 0000000..1757d68 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806435_51_7106340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b208de04b6a378980382f3bd8a63bab3a6210298ee7425e65e47730750f5b6e +size 329243 diff --git a/datasets/检测仪/train/images/订单1806438_51_7106366.jpg b/datasets/检测仪/train/images/订单1806438_51_7106366.jpg new file mode 100644 index 0000000..5edddef --- /dev/null +++ b/datasets/检测仪/train/images/订单1806438_51_7106366.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b06f3caf3758743079b1fd03b5ec980ac942e83160ef38d551ef0e7c15a80f +size 340246 diff --git a/datasets/检测仪/train/images/订单1806439_51_7106397.jpg b/datasets/检测仪/train/images/订单1806439_51_7106397.jpg new file mode 100644 index 0000000..b427611 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806439_51_7106397.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b09529a89e06eba4769e7f09a9aa6b901a6ded530032b56fd89b8028afcf589 +size 275372 diff --git a/datasets/检测仪/train/images/订单1806445_51_7106489.jpg b/datasets/检测仪/train/images/订单1806445_51_7106489.jpg new file mode 100644 index 0000000..04f45a6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806445_51_7106489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383f79ced4ddfd4e5bfbc9f44c1268a525eaa6c8f4eff8ab9e1e7b7c8740e80e +size 163828 diff --git a/datasets/检测仪/train/images/订单1806446_51_7106424.jpg b/datasets/检测仪/train/images/订单1806446_51_7106424.jpg new file mode 100644 index 0000000..3afeff9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806446_51_7106424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea2e2e3975468efa93e0f64a28ae16f4fa0b3020a778832ed6a4972810d0544 +size 110325 diff --git a/datasets/检测仪/train/images/订单1806448_51_7106612.jpg b/datasets/检测仪/train/images/订单1806448_51_7106612.jpg new file mode 100644 index 0000000..723e223 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806448_51_7106612.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0ff4299d4a61ec6e707171d11ba766f805d20c224108094f579b9e8980bb99 +size 446432 diff --git a/datasets/检测仪/train/images/订单1806449_51_7106451.jpg b/datasets/检测仪/train/images/订单1806449_51_7106451.jpg new file mode 100644 index 0000000..b982557 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806449_51_7106451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8aa79139b87e886528bf6e26aad238b2d3caf3f5ca30dc3a5bbf06ea4bafac +size 319895 diff --git a/datasets/检测仪/train/images/订单1806450_51_7106443.jpg b/datasets/检测仪/train/images/订单1806450_51_7106443.jpg new file mode 100644 index 0000000..02c2901 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806450_51_7106443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6c2fd2a24bf99d07f50f134c3e528454a01f31f1ad169f31524cc0ae43f35e +size 142777 diff --git a/datasets/检测仪/train/images/订单1806453_51_7106521.jpg b/datasets/检测仪/train/images/订单1806453_51_7106521.jpg new file mode 100644 index 0000000..8c63c57 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806453_51_7106521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6525c36a0921fc66f97ee240eca6726d0d044eb2ec69e64d43dfd9369eaceda +size 374535 diff --git a/datasets/检测仪/train/images/订单1806454_51_7106564.jpg b/datasets/检测仪/train/images/订单1806454_51_7106564.jpg new file mode 100644 index 0000000..906b0e6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806454_51_7106564.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229ff673357e860a091c1d07c3f4a579cb08e2657d58b74603ac5d6e82204c60 +size 109283 diff --git a/datasets/检测仪/train/images/订单1806464_51_7106658.jpg b/datasets/检测仪/train/images/订单1806464_51_7106658.jpg new file mode 100644 index 0000000..0e7588b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806464_51_7106658.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820b164dee694a3319f8f3ebdd4e36f9cab1995fcb005eef12d9d90625d7a1e1 +size 309094 diff --git a/datasets/检测仪/train/images/订单1806465_51_7106625.jpg b/datasets/检测仪/train/images/订单1806465_51_7106625.jpg new file mode 100644 index 0000000..9ddfdef --- /dev/null +++ b/datasets/检测仪/train/images/订单1806465_51_7106625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:739e974053d5212d17a328a6c7bc3d571f96152d6b931489e02e1dc877f49165 +size 135149 diff --git a/datasets/检测仪/train/images/订单1806467_51_7106642.jpg b/datasets/检测仪/train/images/订单1806467_51_7106642.jpg new file mode 100644 index 0000000..f0c6b09 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806467_51_7106642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c67fa4c37f458c32073f84333ff12b81a7676f487738bb5ec377979b6b2db +size 111911 diff --git a/datasets/检测仪/train/images/订单1806468_51_7106712.jpg b/datasets/检测仪/train/images/订单1806468_51_7106712.jpg new file mode 100644 index 0000000..9485bb4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806468_51_7106712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be1c45241819a990f6c271fef5c843b851efe694bd7aa57aebc372bb2e11a95 +size 155619 diff --git a/datasets/检测仪/train/images/订单1806470_51_7106702.jpg b/datasets/检测仪/train/images/订单1806470_51_7106702.jpg new file mode 100644 index 0000000..a882885 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806470_51_7106702.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56bed53790a4e4b78db54a33935f51a91d9a5ad05ab31946004fe75bf3b198a2 +size 109260 diff --git a/datasets/检测仪/train/images/订单1806471_51_7106669.jpg b/datasets/检测仪/train/images/订单1806471_51_7106669.jpg new file mode 100644 index 0000000..2edafde --- /dev/null +++ b/datasets/检测仪/train/images/订单1806471_51_7106669.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a94512a2da7c6770a99f8f923922f00962d78aab8911b59890a50b1acd024d7 +size 113487 diff --git a/datasets/检测仪/train/images/订单1806476_51_7106691.jpg b/datasets/检测仪/train/images/订单1806476_51_7106691.jpg new file mode 100644 index 0000000..e29a039 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806476_51_7106691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416c610c05ac6f181604d0a0cfe671d6e1cab2f7b2d4c31897b2fa8052c205a8 +size 426411 diff --git a/datasets/检测仪/train/images/订单1806477_51_7106810.jpg b/datasets/检测仪/train/images/订单1806477_51_7106810.jpg new file mode 100644 index 0000000..7f7abbc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806477_51_7106810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d78c27d7cd0820a95d133b6df2290c8262ecf6f4ab7034dc70d83ce290e1c91 +size 290534 diff --git a/datasets/检测仪/train/images/订单1806479_51_7106769.jpg b/datasets/检测仪/train/images/订单1806479_51_7106769.jpg new file mode 100644 index 0000000..2585539 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806479_51_7106769.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb0298d4d6ea627735de55199e38673f4a17c8f948bb23fce471374dbc65b81 +size 111339 diff --git a/datasets/检测仪/train/images/订单1806481_51_7106776.jpg b/datasets/检测仪/train/images/订单1806481_51_7106776.jpg new file mode 100644 index 0000000..737bb23 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806481_51_7106776.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b753260688809fcb4920e76c83b25ac6160bb252dc6309ecb766b8f0375d4a +size 81620 diff --git a/datasets/检测仪/train/images/订单1806482_51_7106783.jpg b/datasets/检测仪/train/images/订单1806482_51_7106783.jpg new file mode 100644 index 0000000..491eb8f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806482_51_7106783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d87926a23ffba8c590e71c06b7e731a574bae8d15e0b3cc4e8e407dad7a5c0 +size 115629 diff --git a/datasets/检测仪/train/images/订单1806483_51_7106799.jpg b/datasets/检测仪/train/images/订单1806483_51_7106799.jpg new file mode 100644 index 0000000..c761f4b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806483_51_7106799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f18a2d3686f1ed4344e6ebf6eae6f89620e877dc99ff0064f552fdb86d25a35 +size 89487 diff --git a/datasets/检测仪/train/images/订单1806487_51_7106855.jpg b/datasets/检测仪/train/images/订单1806487_51_7106855.jpg new file mode 100644 index 0000000..70a1d5e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806487_51_7106855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8839c6c589dd49916212cd83b655fb99631254f259e34a4a7583204a117c38 +size 113652 diff --git a/datasets/检测仪/train/images/订单1806488_51_7106871.jpg b/datasets/检测仪/train/images/订单1806488_51_7106871.jpg new file mode 100644 index 0000000..599642b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806488_51_7106871.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea2219355b223dd2a51246acaac1f6f6f41ecc2fa4ddec3e4c28e3f754bc69f +size 154292 diff --git a/datasets/检测仪/train/images/订单1806490_51_7106897.jpg b/datasets/检测仪/train/images/订单1806490_51_7106897.jpg new file mode 100644 index 0000000..aa8209d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806490_51_7106897.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e4a6181851271d444d0e54792475b956ed4fe2cc2b8e34921bb1d7e91c7f24 +size 320636 diff --git a/datasets/检测仪/train/images/订单1806491_51_7106887.jpg b/datasets/检测仪/train/images/订单1806491_51_7106887.jpg new file mode 100644 index 0000000..55ee5ad --- /dev/null +++ b/datasets/检测仪/train/images/订单1806491_51_7106887.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139656292a2cc0b94545fb10318614c7d53ac655009bc7e9fe14280ec4fa93e4 +size 120769 diff --git a/datasets/检测仪/train/images/订单1806493_51_7106927.jpg b/datasets/检测仪/train/images/订单1806493_51_7106927.jpg new file mode 100644 index 0000000..f463f19 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806493_51_7106927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ae44f1fceca0ea46069ed3381142c65275a5e270644e02985bdf99efe1c38f +size 97304 diff --git a/datasets/检测仪/train/images/订单1806494_51_7106920.jpg b/datasets/检测仪/train/images/订单1806494_51_7106920.jpg new file mode 100644 index 0000000..6c6e51d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806494_51_7106920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da759adc4f248da7132b015c444d9398ce0e942770c1bcc4edf2856454f5f23 +size 180795 diff --git a/datasets/检测仪/train/images/订单1806495_51_7106942.jpg b/datasets/检测仪/train/images/订单1806495_51_7106942.jpg new file mode 100644 index 0000000..c3065d5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806495_51_7106942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d068524304569e24cf53e05b0e751e4bd3718d6589988dd2f454aa1cd010f76 +size 103838 diff --git a/datasets/检测仪/train/images/订单1806499_51_7106958.jpg b/datasets/检测仪/train/images/订单1806499_51_7106958.jpg new file mode 100644 index 0000000..c51b36a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806499_51_7106958.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42d10487e13d78fc980e72a008e95ba17d0479a28d0970bbe4a2af196adc745 +size 147931 diff --git a/datasets/检测仪/train/images/订单1806501_51_7106971.jpg b/datasets/检测仪/train/images/订单1806501_51_7106971.jpg new file mode 100644 index 0000000..f835bfe --- /dev/null +++ b/datasets/检测仪/train/images/订单1806501_51_7106971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a9255e687b34da6e2b1634a8b2d86359703f44d8f288ee005d5da050446b86 +size 123772 diff --git a/datasets/检测仪/train/images/订单1806502_51_7107001.jpg b/datasets/检测仪/train/images/订单1806502_51_7107001.jpg new file mode 100644 index 0000000..b1ee69d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806502_51_7107001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6e7ee812ca4dd9f815632927011b177112c625289edf44f461cbdf2c2154c4 +size 198919 diff --git a/datasets/检测仪/train/images/订单1806504_51_7107026.jpg b/datasets/检测仪/train/images/订单1806504_51_7107026.jpg new file mode 100644 index 0000000..30047da --- /dev/null +++ b/datasets/检测仪/train/images/订单1806504_51_7107026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480cdbce8662e56fe338ea89799321962b0b7023708187bc53a935accbaa8074 +size 460819 diff --git a/datasets/检测仪/train/images/订单1806507_51_7107059.jpg b/datasets/检测仪/train/images/订单1806507_51_7107059.jpg new file mode 100644 index 0000000..812fc77 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806507_51_7107059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01cd1c4841f0a39d8bfecc6830f650b3c2a43a5aa7ad859c47e492581356a43 +size 137194 diff --git a/datasets/检测仪/train/images/订单1806511_51_7107090.jpg b/datasets/检测仪/train/images/订单1806511_51_7107090.jpg new file mode 100644 index 0000000..e4b0864 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806511_51_7107090.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15aaf6f4ac6a9ae96626bdaa59347fec072df7ac47c50dba611e752ba75799 +size 127182 diff --git a/datasets/检测仪/train/images/订单1806513_51_7107909.jpg b/datasets/检测仪/train/images/订单1806513_51_7107909.jpg new file mode 100644 index 0000000..3c5c2b2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806513_51_7107909.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf4a635e4c9192a09d2f0e30aefcd11ec6c9d44cbc04b275361b5cafe16c782 +size 143507 diff --git a/datasets/检测仪/train/images/订单1806514_51_7107083.jpg b/datasets/检测仪/train/images/订单1806514_51_7107083.jpg new file mode 100644 index 0000000..617c4b5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806514_51_7107083.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3230377df4ae7128e0edb9b8c5acb24b46bc373155cc6d01630318b45021051 +size 543640 diff --git a/datasets/检测仪/train/images/订单1806515_51_7107133.jpg b/datasets/检测仪/train/images/订单1806515_51_7107133.jpg new file mode 100644 index 0000000..637410b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806515_51_7107133.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ceb66e895834b2e4327299b055f999dc96fa7a284a671cb3afa588fa4b51a8 +size 126857 diff --git a/datasets/检测仪/train/images/订单1806516_51_7107103.jpg b/datasets/检测仪/train/images/订单1806516_51_7107103.jpg new file mode 100644 index 0000000..0c7b9b0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806516_51_7107103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c742592ac1b33fd4aa4adeb3ca7e5d66b72b172d99569c9dd672553381cb1e +size 138313 diff --git a/datasets/检测仪/train/images/订单1806519_51_7107227.jpg b/datasets/检测仪/train/images/订单1806519_51_7107227.jpg new file mode 100644 index 0000000..f69d159 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806519_51_7107227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a308a2ab5e81e7fda5865a43d56dd1cf6fee591244c54cfb46dd7ed1ff9168 +size 154619 diff --git a/datasets/检测仪/train/images/订单1806522_51_7107184.jpg b/datasets/检测仪/train/images/订单1806522_51_7107184.jpg new file mode 100644 index 0000000..9438ba5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806522_51_7107184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d080ff12c8ed0c09d09e66673b7820e221fd99fd2d85568639ed023bb81cb4ed +size 243562 diff --git a/datasets/检测仪/train/images/订单1806523_51_7107175.jpg b/datasets/检测仪/train/images/订单1806523_51_7107175.jpg new file mode 100644 index 0000000..9872102 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806523_51_7107175.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d8716b02491ec82430072acc9914053e2524ad64743a689912cd4cf5bf5116 +size 586763 diff --git a/datasets/检测仪/train/images/订单1806524_51_7107203.jpg b/datasets/检测仪/train/images/订单1806524_51_7107203.jpg new file mode 100644 index 0000000..4015879 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806524_51_7107203.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75fd36f51061f30579c73e74aaef747a9d49c67fc6643e428ddf42b2a1ca5bb +size 124796 diff --git a/datasets/检测仪/train/images/订单1806526_51_7107134.jpg b/datasets/检测仪/train/images/订单1806526_51_7107134.jpg new file mode 100644 index 0000000..11e4f41 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806526_51_7107134.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611620f280a11ce5b203120d3a2b2fe62576cd0b09f9f728812bcfadfdcb9154 +size 127986 diff --git a/datasets/检测仪/train/images/订单1806528_51_7107115.jpg b/datasets/检测仪/train/images/订单1806528_51_7107115.jpg new file mode 100644 index 0000000..93c3503 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806528_51_7107115.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9308801a1e6cdcf5937bfd10af59fa28d581efcbe2dcf29074b74ddfcba69a82 +size 117291 diff --git a/datasets/检测仪/train/images/订单1806536_51_7107277.jpg b/datasets/检测仪/train/images/订单1806536_51_7107277.jpg new file mode 100644 index 0000000..0f7fa58 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806536_51_7107277.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9a8afe921ce349006d9556da24aeea9113311f6b74be86e90b8e1b84b9f70c +size 176812 diff --git a/datasets/检测仪/train/images/订单1806541_51_7107482.jpg b/datasets/检测仪/train/images/订单1806541_51_7107482.jpg new file mode 100644 index 0000000..30eb3fa --- /dev/null +++ b/datasets/检测仪/train/images/订单1806541_51_7107482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba86317ac2710444e10d64512849811f65c1bf7e9f6297b08964e1f420b6475 +size 144287 diff --git a/datasets/检测仪/train/images/订单1806543_51_7107285.jpg b/datasets/检测仪/train/images/订单1806543_51_7107285.jpg new file mode 100644 index 0000000..bc09c99 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806543_51_7107285.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a4e6da827930f29f4c8824f95c9979966b4d0b03408edfa743f70f765c2131 +size 118932 diff --git a/datasets/检测仪/train/images/订单1806544_51_7107363.jpg b/datasets/检测仪/train/images/订单1806544_51_7107363.jpg new file mode 100644 index 0000000..b6aab21 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806544_51_7107363.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad3ebdd56da1f2065a878fc4cf1c9e379db948d1aa3985f4b74b1d2f5729169 +size 125251 diff --git a/datasets/检测仪/train/images/订单1806545_51_7107289.jpg b/datasets/检测仪/train/images/订单1806545_51_7107289.jpg new file mode 100644 index 0000000..577e433 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806545_51_7107289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ea3aca9e423732fc07b58c4f61d4744db473b594c20dac1909206cfe2f7445 +size 92028 diff --git a/datasets/检测仪/train/images/订单1806548_51_7107271.jpg b/datasets/检测仪/train/images/订单1806548_51_7107271.jpg new file mode 100644 index 0000000..4cec398 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806548_51_7107271.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79992bbc833e278967d9077992229771e93ecb47ad724ccc6fae26404a396260 +size 150610 diff --git a/datasets/检测仪/train/images/订单1806552_51_7107273.jpg b/datasets/检测仪/train/images/订单1806552_51_7107273.jpg new file mode 100644 index 0000000..2d784fd --- /dev/null +++ b/datasets/检测仪/train/images/订单1806552_51_7107273.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005e4e09d12e67ecef0bab78afd0671d807772283164cfb8ce6c3cb638d81d8d +size 411001 diff --git a/datasets/检测仪/train/images/订单1806555_51_7107321.jpg b/datasets/检测仪/train/images/订单1806555_51_7107321.jpg new file mode 100644 index 0000000..8de43c2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806555_51_7107321.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c8e97fbfa34ef0b9406f3ddd1f093f1964329c3b6c3ca9a883d1c0263b9c00 +size 106654 diff --git a/datasets/检测仪/train/images/订单1806560_51_7107355.jpg b/datasets/检测仪/train/images/订单1806560_51_7107355.jpg new file mode 100644 index 0000000..2ce9263 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806560_51_7107355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b79820f91f61761302fa46527e52bfb20ea8dc5b27cffb1dbb5ce0d9af2e7c4 +size 116631 diff --git a/datasets/检测仪/train/images/订单1806561_51_7107346.jpg b/datasets/检测仪/train/images/订单1806561_51_7107346.jpg new file mode 100644 index 0000000..408da2e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806561_51_7107346.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9488ce2a31ca445d018fd1efcff26fe076fa44ce01977b2f998bf851f23bbd +size 134051 diff --git a/datasets/检测仪/train/images/订单1806563_51_7107441.jpg b/datasets/检测仪/train/images/订单1806563_51_7107441.jpg new file mode 100644 index 0000000..390db5a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806563_51_7107441.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5008fa9827e7defbd8d5083f53ae5db0f28d9bb1b59266ce81b07ab0d9cecfe6 +size 171979 diff --git a/datasets/检测仪/train/images/订单1806566_51_7107507.jpg b/datasets/检测仪/train/images/订单1806566_51_7107507.jpg new file mode 100644 index 0000000..0866589 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806566_51_7107507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0e0d8b9d40b3752757733f45cdd90d18abbc57cccb870bbfad658928ea3fe1 +size 565003 diff --git a/datasets/检测仪/train/images/订单1806567_51_7107454.jpg b/datasets/检测仪/train/images/订单1806567_51_7107454.jpg new file mode 100644 index 0000000..6d5c144 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806567_51_7107454.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60920c8190018ed05ce3a340ed8fd929aec154d1c35db796f76858a420ae0e +size 110665 diff --git a/datasets/检测仪/train/images/订单1806568_51_7107451.jpg b/datasets/检测仪/train/images/订单1806568_51_7107451.jpg new file mode 100644 index 0000000..00c892e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806568_51_7107451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5774e5a32349979377f5ffe07d4ac562973939fd770ecd6af94c6d687d8d9c84 +size 440477 diff --git a/datasets/检测仪/train/images/订单1806570_51_7107513.jpg b/datasets/检测仪/train/images/订单1806570_51_7107513.jpg new file mode 100644 index 0000000..51e7a81 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806570_51_7107513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc74e7893d46d5639c9d0b8d80624ce4bf3e6ebcb80b820dc1279b76207c743b +size 105463 diff --git a/datasets/检测仪/train/images/订单1806578_51_7107558.jpg b/datasets/检测仪/train/images/订单1806578_51_7107558.jpg new file mode 100644 index 0000000..e6660d9 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806578_51_7107558.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128f4d1b0723b380badcee8231f2bcbc834f78bcff0c235393bde1f713e69e23 +size 423949 diff --git a/datasets/检测仪/train/images/订单1806583_51_7108508.jpg b/datasets/检测仪/train/images/订单1806583_51_7108508.jpg new file mode 100644 index 0000000..8542daf --- /dev/null +++ b/datasets/检测仪/train/images/订单1806583_51_7108508.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162223a73a74f2786466b18f826289365db84dedf949a5203375fa92dd3a899e +size 515021 diff --git a/datasets/检测仪/train/images/订单1806589_51_7107638.jpg b/datasets/检测仪/train/images/订单1806589_51_7107638.jpg new file mode 100644 index 0000000..13c4005 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806589_51_7107638.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34764e02719e27d26eda0e8759e7eed5be7f026f94867ed6a63dd57c39d35c57 +size 754554 diff --git a/datasets/检测仪/train/images/订单1806596_51_7107765.jpg b/datasets/检测仪/train/images/订单1806596_51_7107765.jpg new file mode 100644 index 0000000..1425cc8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806596_51_7107765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0657461a7f7e859dee4d2e45c5f4760f8fa013b931330f429be1ec53e32d32 +size 154593 diff --git a/datasets/检测仪/train/images/订单1806598_51_7107754.jpg b/datasets/检测仪/train/images/订单1806598_51_7107754.jpg new file mode 100644 index 0000000..00b82c1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806598_51_7107754.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f9511c4e125791b3ebebcc3c49470a9cb8ad2b573a8830db9d24555bac0451 +size 400331 diff --git a/datasets/检测仪/train/images/订单1806600_51_7107938.jpg b/datasets/检测仪/train/images/订单1806600_51_7107938.jpg new file mode 100644 index 0000000..aacb6c3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806600_51_7107938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2417427037d5de15f79e5de3f1ecd0cb48ff7990ab68f11d10e4acaa43aefe84 +size 89838 diff --git a/datasets/检测仪/train/images/订单1806601_51_7107745.jpg b/datasets/检测仪/train/images/订单1806601_51_7107745.jpg new file mode 100644 index 0000000..963b2e8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806601_51_7107745.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475a08489af918069d31672cb744a359ab66c01ceb7407c48b06312a4971785c +size 110274 diff --git a/datasets/检测仪/train/images/订单1806603_51_7107795.jpg b/datasets/检测仪/train/images/订单1806603_51_7107795.jpg new file mode 100644 index 0000000..50fdafc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806603_51_7107795.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5ac42923433d287e526564547038b04795128624e66acccdd8a0eef2f85cda +size 140069 diff --git a/datasets/检测仪/train/images/订单1806604_51_7107828.jpg b/datasets/检测仪/train/images/订单1806604_51_7107828.jpg new file mode 100644 index 0000000..921c042 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806604_51_7107828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff484f171259fe552f187d0bf5c481e4e5c2a2813245ab36bc884de25f441b4b +size 113756 diff --git a/datasets/检测仪/train/images/订单1806607_51_7107900.jpg b/datasets/检测仪/train/images/订单1806607_51_7107900.jpg new file mode 100644 index 0000000..6c58322 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806607_51_7107900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3a691f3777404553785c1eaf502ec99195860d3d400d2d141097746288b41a +size 132209 diff --git a/datasets/检测仪/train/images/订单1806610_51_7107834.jpg b/datasets/检测仪/train/images/订单1806610_51_7107834.jpg new file mode 100644 index 0000000..f867b16 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806610_51_7107834.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b159207dc143241dcba50a6a57ed7c4cd84c41b8af3f84f153082526d8eb8cd0 +size 95732 diff --git a/datasets/检测仪/train/images/订单1806615_51_7107821.jpg b/datasets/检测仪/train/images/订单1806615_51_7107821.jpg new file mode 100644 index 0000000..6fbd4c6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806615_51_7107821.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ffcc5ac3eabdf4287ce01e3036003a9d4a3a3d6ffd19d74bb7094a594ebf62 +size 145844 diff --git a/datasets/检测仪/train/images/订单1806618_51_7107891.jpg b/datasets/检测仪/train/images/订单1806618_51_7107891.jpg new file mode 100644 index 0000000..4d1c524 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806618_51_7107891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a52b964776e72bb2991c2ae0cc0faf165f7ec36d6180a1989294b7790ad38cf +size 172819 diff --git a/datasets/检测仪/train/images/订单1806625_51_7107994.jpg b/datasets/检测仪/train/images/订单1806625_51_7107994.jpg new file mode 100644 index 0000000..35206ce --- /dev/null +++ b/datasets/检测仪/train/images/订单1806625_51_7107994.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad02d5098b4dacef9a96f9745b3b59772b7cf46cb9ce4589fa8f376d559a533 +size 66618 diff --git a/datasets/检测仪/train/images/订单1806626_51_7108129.jpg b/datasets/检测仪/train/images/订单1806626_51_7108129.jpg new file mode 100644 index 0000000..8faae63 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806626_51_7108129.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fda4d4853b409c776185511505680d4c69b16496c31a4509d2dd7bc061e94f5 +size 124416 diff --git a/datasets/检测仪/train/images/订单1806627_51_7108082.jpg b/datasets/检测仪/train/images/订单1806627_51_7108082.jpg new file mode 100644 index 0000000..10d7df8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806627_51_7108082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9505319f72faa0f12d1eec23d6206ed0ede06fe64e0b6e2db944d2cb9f6741a7 +size 187277 diff --git a/datasets/检测仪/train/images/订单1806633_51_7108088.jpg b/datasets/检测仪/train/images/订单1806633_51_7108088.jpg new file mode 100644 index 0000000..61c4c5b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806633_51_7108088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221d7e8b34a2bc95974048d39ca7e019d1573d9c72436092769e998fb3b7096c +size 631423 diff --git a/datasets/检测仪/train/images/订单1806638_51_7108131.jpg b/datasets/检测仪/train/images/订单1806638_51_7108131.jpg new file mode 100644 index 0000000..e4e87c5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806638_51_7108131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8303a09edec9feaedb5ded4f65e416223c438fb0b76a7c65d4b9be5d7f746e +size 133993 diff --git a/datasets/检测仪/train/images/订单1806640_51_7108162.jpg b/datasets/检测仪/train/images/订单1806640_51_7108162.jpg new file mode 100644 index 0000000..7fca224 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806640_51_7108162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b88bc2d9d2056314da0703e729a00cad4ed4c743ee67ff5bd0d42e790ef86dd +size 714067 diff --git a/datasets/检测仪/train/images/订单1806641_51_7108198.jpg b/datasets/检测仪/train/images/订单1806641_51_7108198.jpg new file mode 100644 index 0000000..a1d0bce --- /dev/null +++ b/datasets/检测仪/train/images/订单1806641_51_7108198.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd64dbafb109fef24f5d03acbab82b05a43883698b2c9bcddce6db3f52899681 +size 121604 diff --git a/datasets/检测仪/train/images/订单1806643_51_7108281.jpg b/datasets/检测仪/train/images/订单1806643_51_7108281.jpg new file mode 100644 index 0000000..4d345ec --- /dev/null +++ b/datasets/检测仪/train/images/订单1806643_51_7108281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debf3cd856975137102003020fcc1f182c0acafbf1bd0b02dfdc287ebdee474b +size 303950 diff --git a/datasets/检测仪/train/images/订单1806644_51_7108286.jpg b/datasets/检测仪/train/images/订单1806644_51_7108286.jpg new file mode 100644 index 0000000..28003da --- /dev/null +++ b/datasets/检测仪/train/images/订单1806644_51_7108286.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763c5256ce01e4e6656a71f9e05350bd0ddcc2169267d45130fb8f5688e9e9eb +size 159595 diff --git a/datasets/检测仪/train/images/订单1806646_51_7108239.jpg b/datasets/检测仪/train/images/订单1806646_51_7108239.jpg new file mode 100644 index 0000000..19f7e72 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806646_51_7108239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e704a7d20652bf47082961023ceb0023122d0c526d8483519b76556709478a8a +size 128142 diff --git a/datasets/检测仪/train/images/订单1806647_51_7108252.jpg b/datasets/检测仪/train/images/订单1806647_51_7108252.jpg new file mode 100644 index 0000000..5210ce7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806647_51_7108252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab58ca6369c3b6af71b1a9cc50f5b4287c1efd04a03a20651df634625e01a608 +size 140159 diff --git a/datasets/检测仪/train/images/订单1806650_51_7108312.jpg b/datasets/检测仪/train/images/订单1806650_51_7108312.jpg new file mode 100644 index 0000000..1e3edb2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806650_51_7108312.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd45b27d6e28880f41a4b8ba6839c2b3463bb37048eafbaf89748fd24268f56f +size 148586 diff --git a/datasets/检测仪/train/images/订单1806652_51_7108355.jpg b/datasets/检测仪/train/images/订单1806652_51_7108355.jpg new file mode 100644 index 0000000..92c85d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806652_51_7108355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83d3fbaf04736d618f66a755c0cfb14c2202868511c5aed4b292f6352155b45 +size 299928 diff --git a/datasets/检测仪/train/images/订单1806653_51_7108388.jpg b/datasets/检测仪/train/images/订单1806653_51_7108388.jpg new file mode 100644 index 0000000..ee89484 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806653_51_7108388.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69ce9687726ed29576c590154a2495a3f4990ee9ec0d7604b2da665aa95dcc3 +size 102262 diff --git a/datasets/检测仪/train/images/订单1806654_51_7108342.jpg b/datasets/检测仪/train/images/订单1806654_51_7108342.jpg new file mode 100644 index 0000000..d9759d5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806654_51_7108342.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2224d65382bb493190d185cb5ff7a6d802a98c0a7105d84e801f8c3b7d832bfa +size 407989 diff --git a/datasets/检测仪/train/images/订单1806657_51_7108437.jpg b/datasets/检测仪/train/images/订单1806657_51_7108437.jpg new file mode 100644 index 0000000..97db097 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806657_51_7108437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d831f37f23cf833a4801b565e13af98dff3242e99fb5f2094b18a206ef367518 +size 92376 diff --git a/datasets/检测仪/train/images/订单1806663_51_7108428.jpg b/datasets/检测仪/train/images/订单1806663_51_7108428.jpg new file mode 100644 index 0000000..2c27dc8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806663_51_7108428.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d05f6e722da1183c08a3c2d289bc209bbf1c36c43f6bc30d99df490f88ec3b +size 99538 diff --git a/datasets/检测仪/train/images/订单1806664_51_7108447.jpg b/datasets/检测仪/train/images/订单1806664_51_7108447.jpg new file mode 100644 index 0000000..c89dce1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806664_51_7108447.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec236685742f195048e46dc1df24f2b66a850ce2dff19bd48f434fa24fa3402 +size 160207 diff --git a/datasets/检测仪/train/images/订单1806667_51_7108421.jpg b/datasets/检测仪/train/images/订单1806667_51_7108421.jpg new file mode 100644 index 0000000..bcc1238 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806667_51_7108421.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9947dce7d466e17347bf3859cec07afd07d319e6e6822efee3d9d3c0bba8cec6 +size 117472 diff --git a/datasets/检测仪/train/images/订单1806672_51_7108598.jpg b/datasets/检测仪/train/images/订单1806672_51_7108598.jpg new file mode 100644 index 0000000..affa56f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806672_51_7108598.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1852a4f9ef55c1b94bf8cb7273b99b0e99286331d0365cf6b0edeb12140ae40 +size 215371 diff --git a/datasets/检测仪/train/images/订单1806673_51_7108593.jpg b/datasets/检测仪/train/images/订单1806673_51_7108593.jpg new file mode 100644 index 0000000..9d2dffd --- /dev/null +++ b/datasets/检测仪/train/images/订单1806673_51_7108593.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6ece4b08ef1656ebe7c2bac5ddef535590c21893b38b8f2061ebfac1e7e47b +size 220080 diff --git a/datasets/检测仪/train/images/订单1806676_51_7108594.jpg b/datasets/检测仪/train/images/订单1806676_51_7108594.jpg new file mode 100644 index 0000000..572bd74 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806676_51_7108594.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d811b7c35acea8c7f9a434a4a38f8c49b419ac719d13362cce9d56ca9d40ce6 +size 697254 diff --git a/datasets/检测仪/train/images/订单1806685_51_7108626.jpg b/datasets/检测仪/train/images/订单1806685_51_7108626.jpg new file mode 100644 index 0000000..a2b028a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806685_51_7108626.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4964ec596e1d184f3f43edea7fe2a484afc592ec33f5367cb4f1982fc2fa7a55 +size 142547 diff --git a/datasets/检测仪/train/images/订单1806687_51_7108742.jpg b/datasets/检测仪/train/images/订单1806687_51_7108742.jpg new file mode 100644 index 0000000..9af098b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806687_51_7108742.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2340a6c03398618a67ad224a0db00acaa3d4f9c14bc80b174a239b549dae8a +size 172553 diff --git a/datasets/检测仪/train/images/订单1806688_51_7108719.jpg b/datasets/检测仪/train/images/订单1806688_51_7108719.jpg new file mode 100644 index 0000000..1a964d3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806688_51_7108719.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a25e4a9895c6a5dffa081963331d6d3142777436ef6e8b160960858d3740c4d +size 163105 diff --git a/datasets/检测仪/train/images/订单1806689_51_7109608.jpg b/datasets/检测仪/train/images/订单1806689_51_7109608.jpg new file mode 100644 index 0000000..f0e7441 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806689_51_7109608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4565991264f3e2f72eba5e877f3bfd05ca6775712ca951a85cb5e0923895873a +size 192191 diff --git a/datasets/检测仪/train/images/订单1806693_51_7108727.jpg b/datasets/检测仪/train/images/订单1806693_51_7108727.jpg new file mode 100644 index 0000000..501cf77 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806693_51_7108727.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e36f07a90f855a5f5ce949dfdbde8e161293cbb6374c012642e3e747c0724ad +size 363801 diff --git a/datasets/检测仪/train/images/订单1806696_51_7108692.jpg b/datasets/检测仪/train/images/订单1806696_51_7108692.jpg new file mode 100644 index 0000000..0247936 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806696_51_7108692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4b1d191d82ca1a8d5f2d340b9ba284b81b046cc131bf1dea69f76f4ce30a01 +size 129542 diff --git a/datasets/检测仪/train/images/订单1806701_51_7108770.jpg b/datasets/检测仪/train/images/订单1806701_51_7108770.jpg new file mode 100644 index 0000000..83458ab --- /dev/null +++ b/datasets/检测仪/train/images/订单1806701_51_7108770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25344917a0b82fe3627e7fe956f148b5e78b9c6196621f0d8903e924f2e84c48 +size 157720 diff --git a/datasets/检测仪/train/images/订单1806702_51_7108883.jpg b/datasets/检测仪/train/images/订单1806702_51_7108883.jpg new file mode 100644 index 0000000..dc84acb --- /dev/null +++ b/datasets/检测仪/train/images/订单1806702_51_7108883.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42670c1898e351b70ed16cbe12367c006d5c1e7a2e55a4a7e2b8affc4488dc2a +size 120736 diff --git a/datasets/检测仪/train/images/订单1806704_51_7108800.jpg b/datasets/检测仪/train/images/订单1806704_51_7108800.jpg new file mode 100644 index 0000000..2b8b12c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806704_51_7108800.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e5b2830aa4fc157c90992614e5a7350271c59b6027900aa251f2882d55c6bf +size 155026 diff --git a/datasets/检测仪/train/images/订单1806705_51_7109131.jpg b/datasets/检测仪/train/images/订单1806705_51_7109131.jpg new file mode 100644 index 0000000..d2e1087 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806705_51_7109131.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f58599303da546dfb2d361d42ef62f3095fa642f93dea08c2d8ee80c993f0d5 +size 144727 diff --git a/datasets/检测仪/train/images/订单1806707_51_7108960.jpg b/datasets/检测仪/train/images/订单1806707_51_7108960.jpg new file mode 100644 index 0000000..dfeb323 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806707_51_7108960.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607c82b54944be44262a9a652bf82d34aa2eb004923bd31eaff885c817cdd32f +size 575633 diff --git a/datasets/检测仪/train/images/订单1806710_51_7108866.jpg b/datasets/检测仪/train/images/订单1806710_51_7108866.jpg new file mode 100644 index 0000000..75596d7 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806710_51_7108866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef00b3c007ccacb2111de1c72cf40445dbd320f13c03cdec8eace96257301b64 +size 177510 diff --git a/datasets/检测仪/train/images/订单1806714_51_7108942.jpg b/datasets/检测仪/train/images/订单1806714_51_7108942.jpg new file mode 100644 index 0000000..e0956d0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806714_51_7108942.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5a8b2339e576f9a63bb6386c21b4f916ab273fb2445a48b63d6a233729df6e +size 299236 diff --git a/datasets/检测仪/train/images/订单1806715_51_7108921.jpg b/datasets/检测仪/train/images/订单1806715_51_7108921.jpg new file mode 100644 index 0000000..4ae6b97 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806715_51_7108921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217e269a32998f69c3df4805eceef0e97457e9b287e98211a4939390cf8eac5d +size 239638 diff --git a/datasets/检测仪/train/images/订单1806724_51_7108964.jpg b/datasets/检测仪/train/images/订单1806724_51_7108964.jpg new file mode 100644 index 0000000..234c713 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806724_51_7108964.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b0b29d72103da328e2bc416b71c0770f592af0f9769096bb358de1fb850040 +size 224935 diff --git a/datasets/检测仪/train/images/订单1806725_51_7109074.jpg b/datasets/检测仪/train/images/订单1806725_51_7109074.jpg new file mode 100644 index 0000000..151f649 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806725_51_7109074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b150190982855d7a4668dbb5f8c42f4aad771887a236475a35a50c6596a4ff0a +size 114204 diff --git a/datasets/检测仪/train/images/订单1806726_51_7109000.jpg b/datasets/检测仪/train/images/订单1806726_51_7109000.jpg new file mode 100644 index 0000000..73c0cdf --- /dev/null +++ b/datasets/检测仪/train/images/订单1806726_51_7109000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16990ef425c3c5860def782b6dcb6cdafc05306221ac84c2f7622c8641b46ab1 +size 130315 diff --git a/datasets/检测仪/train/images/订单1806731_51_7109028.jpg b/datasets/检测仪/train/images/订单1806731_51_7109028.jpg new file mode 100644 index 0000000..3e8a1b8 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806731_51_7109028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b3182df15120ff7a32e13154510372596a9503e8e92a51cf254c1b8229333d +size 138284 diff --git a/datasets/检测仪/train/images/订单1806732_51_7109071.jpg b/datasets/检测仪/train/images/订单1806732_51_7109071.jpg new file mode 100644 index 0000000..43e3d02 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806732_51_7109071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b8aab9250a819bdad20a49d1e27d3d3bb8cfc738fcd06d210e183e5d3614df +size 527515 diff --git a/datasets/检测仪/train/images/订单1806735_51_7109159.jpg b/datasets/检测仪/train/images/订单1806735_51_7109159.jpg new file mode 100644 index 0000000..c39dd86 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806735_51_7109159.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33681533b09f3b508341ea74b47fc599695d3c2b8d0ca6f9bf533b56cf834b45 +size 172353 diff --git a/datasets/检测仪/train/images/订单1806736_51_7109098.jpg b/datasets/检测仪/train/images/订单1806736_51_7109098.jpg new file mode 100644 index 0000000..53592b2 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806736_51_7109098.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df432cd292e3d496098ddce7546e148d2a38ff2a2e6771592a2fecb52ead8845 +size 124911 diff --git a/datasets/检测仪/train/images/订单1806739_51_7109124.jpg b/datasets/检测仪/train/images/订单1806739_51_7109124.jpg new file mode 100644 index 0000000..53c923e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806739_51_7109124.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca92e9b856620c41079cdff58ed24bfaecf9d74e0f62952a01ac92a05fc5ba3 +size 636462 diff --git a/datasets/检测仪/train/images/订单1806740_51_7109289.jpg b/datasets/检测仪/train/images/订单1806740_51_7109289.jpg new file mode 100644 index 0000000..df5eb47 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806740_51_7109289.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a059540c4fb5913d740e25d8ad237f6dcc5cf84f3d38cec25b5c2ecb028aebd +size 223785 diff --git a/datasets/检测仪/train/images/订单1806744_51_7109168.jpg b/datasets/检测仪/train/images/订单1806744_51_7109168.jpg new file mode 100644 index 0000000..a28aac3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806744_51_7109168.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2356f368cea4fe5e5b08cd75ccde8f3820eeb33cff10f23fb52b05bcef62eb4b +size 149739 diff --git a/datasets/检测仪/train/images/订单1806746_51_7109192.jpg b/datasets/检测仪/train/images/订单1806746_51_7109192.jpg new file mode 100644 index 0000000..76d26d0 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806746_51_7109192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa634ead83d52145e140e3faabeb48ca283d795c7fe87674fcbb73d310a6073 +size 165539 diff --git a/datasets/检测仪/train/images/订单1806748_51_7109280.jpg b/datasets/检测仪/train/images/订单1806748_51_7109280.jpg new file mode 100644 index 0000000..69e0f86 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806748_51_7109280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee4cd65c002a238c2d45bf4c2a39ac97f310412e13a6189b9f07eb77c476c39 +size 152617 diff --git a/datasets/检测仪/train/images/订单1806749_51_7109191.jpg b/datasets/检测仪/train/images/订单1806749_51_7109191.jpg new file mode 100644 index 0000000..ae28d30 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806749_51_7109191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34e827fc452b17f309769ae1735acb2e5627ce46b84e181f78c028d3ac50772 +size 125001 diff --git a/datasets/检测仪/train/images/订单1806750_51_7109251.jpg b/datasets/检测仪/train/images/订单1806750_51_7109251.jpg new file mode 100644 index 0000000..33d8347 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806750_51_7109251.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88813f189d8c94a08ca80509ce15d5e7987d960e361d91272f82e6a418ddac45 +size 138550 diff --git a/datasets/检测仪/train/images/订单1806753_51_7109290.jpg b/datasets/检测仪/train/images/订单1806753_51_7109290.jpg new file mode 100644 index 0000000..e793c66 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806753_51_7109290.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad009951fb32e0fdda974b4e03baa58d98116c89de1cb65b76471ff6d788a64d +size 603954 diff --git a/datasets/检测仪/train/images/订单1806754_51_7109252.jpg b/datasets/检测仪/train/images/订单1806754_51_7109252.jpg new file mode 100644 index 0000000..19d5895 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806754_51_7109252.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096468dc6c1c3704126ec5089c8c6c69950fb8a5e28552bc3f6d8d2f696d5149 +size 155891 diff --git a/datasets/检测仪/train/images/订单1806757_51_7109352.jpg b/datasets/检测仪/train/images/订单1806757_51_7109352.jpg new file mode 100644 index 0000000..4313980 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806757_51_7109352.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433abde4e3677bc99f048a99cfc9305db3d85309316353a49ef119e8f85ca714 +size 141427 diff --git a/datasets/检测仪/train/images/订单1806762_51_7109448.jpg b/datasets/检测仪/train/images/订单1806762_51_7109448.jpg new file mode 100644 index 0000000..28d533a --- /dev/null +++ b/datasets/检测仪/train/images/订单1806762_51_7109448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c8c0536d0947b147afaea5dd24d4b95ddb1e529f42dfcc7583ceaadcab36ad +size 161767 diff --git a/datasets/检测仪/train/images/订单1806764_51_7109325.jpg b/datasets/检测仪/train/images/订单1806764_51_7109325.jpg new file mode 100644 index 0000000..60312a3 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806764_51_7109325.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2edb479b28c9affc41237724780ecb9328732cc8daa9926e8ae4e0e23b51437f +size 161570 diff --git a/datasets/检测仪/train/images/订单1806767_51_7109350.jpg b/datasets/检测仪/train/images/订单1806767_51_7109350.jpg new file mode 100644 index 0000000..563e8c4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806767_51_7109350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb08ff7a0c94b70c808c679906247f47562f208e4319d774a99ccce089b0844 +size 108083 diff --git a/datasets/检测仪/train/images/订单1806769_51_7109510.jpg b/datasets/检测仪/train/images/订单1806769_51_7109510.jpg new file mode 100644 index 0000000..9a9aa90 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806769_51_7109510.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b89795f8d373fec43ca6f9c543b44f4ebd45316be8e21fb9538d34c966ce8a6 +size 394321 diff --git a/datasets/检测仪/train/images/订单1806771_51_7109478.jpg b/datasets/检测仪/train/images/订单1806771_51_7109478.jpg new file mode 100644 index 0000000..ead6c7b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806771_51_7109478.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31587d4117f7839b04a9fe7cd411e4a8ff0afa60d91f1985ef258a616cbbf19a +size 101547 diff --git a/datasets/检测仪/train/images/订单1806772_51_7109424.jpg b/datasets/检测仪/train/images/订单1806772_51_7109424.jpg new file mode 100644 index 0000000..634e03c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806772_51_7109424.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20d5c07002c2daca2c22c157b6c5db676690557cc18574d317a0bdafb064ad5 +size 85200 diff --git a/datasets/检测仪/train/images/订单1806773_51_7109531.jpg b/datasets/检测仪/train/images/订单1806773_51_7109531.jpg new file mode 100644 index 0000000..297508f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806773_51_7109531.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0134220521017d2cee648c1a06b8053ec1b1a36971409df330e03124766423ca +size 116987 diff --git a/datasets/检测仪/train/images/订单1806775_51_7109532.jpg b/datasets/检测仪/train/images/订单1806775_51_7109532.jpg new file mode 100644 index 0000000..86bccf1 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806775_51_7109532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb4883d30b1852591e198a94cff2b00095c2527d3a2b5ca359fce33ed222fe2 +size 577346 diff --git a/datasets/检测仪/train/images/订单1806776_51_7109527.jpg b/datasets/检测仪/train/images/订单1806776_51_7109527.jpg new file mode 100644 index 0000000..6b5f30d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806776_51_7109527.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b905f7d0d55095613b9ba727615aa263700d4c1c21d4f7811047c28eb9a710 +size 116042 diff --git a/datasets/检测仪/train/images/订单1806779_51_7109619.jpg b/datasets/检测仪/train/images/订单1806779_51_7109619.jpg new file mode 100644 index 0000000..45896bc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806779_51_7109619.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fade0a29dda2474f877d21211e656b0f70b9a5da146e69d5efaf4e069148ad +size 126451 diff --git a/datasets/检测仪/train/images/订单1806786_51_7109635.jpg b/datasets/检测仪/train/images/订单1806786_51_7109635.jpg new file mode 100644 index 0000000..f1426de --- /dev/null +++ b/datasets/检测仪/train/images/订单1806786_51_7109635.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8aa8c8c707a64932f2e6acf6045cc654bd92081e095d5c8b50f9056220936a3 +size 197271 diff --git a/datasets/检测仪/train/images/订单1806790_51_7109654.jpg b/datasets/检测仪/train/images/订单1806790_51_7109654.jpg new file mode 100644 index 0000000..f3cea3e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806790_51_7109654.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122c57ac6ce67f86b0eaea4fc417c3a5d1aad60115db4e0f2c384583d90ee719 +size 444432 diff --git a/datasets/检测仪/train/images/订单1806799_51_7109764.jpg b/datasets/检测仪/train/images/订单1806799_51_7109764.jpg new file mode 100644 index 0000000..7f49c47 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806799_51_7109764.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3afc5ae32631cb90c105b24e6455ffa06401c67520e8edb16c5ffce6a8d40831 +size 312425 diff --git a/datasets/检测仪/train/images/订单1806804_51_7109816.jpg b/datasets/检测仪/train/images/订单1806804_51_7109816.jpg new file mode 100644 index 0000000..9853e0e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806804_51_7109816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ede7c5c47b61c3516a4eae1b77ff2670d6d3b64e456800ce8fef8248a7da342 +size 506988 diff --git a/datasets/检测仪/train/images/订单1806805_51_7109765.jpg b/datasets/检测仪/train/images/订单1806805_51_7109765.jpg new file mode 100644 index 0000000..7fcd130 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806805_51_7109765.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f7213ff157e1d5a033ab3ebf9e1b884d78aecac167f358eb235a087baeb9cf +size 546459 diff --git a/datasets/检测仪/train/images/订单1806812_51_7109968.jpg b/datasets/检测仪/train/images/订单1806812_51_7109968.jpg new file mode 100644 index 0000000..e084eb6 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806812_51_7109968.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab3c5e76086a4dc871daac73757ba81e016c10621f828bdeca787c73b1487b4 +size 106362 diff --git a/datasets/检测仪/train/images/订单1806813_51_7109962.jpg b/datasets/检测仪/train/images/订单1806813_51_7109962.jpg new file mode 100644 index 0000000..2e41f2e --- /dev/null +++ b/datasets/检测仪/train/images/订单1806813_51_7109962.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6c805e3040fd38f23de4ca2b07c63fd96902e932c9049fe6b92b9fa1bb409a +size 327450 diff --git a/datasets/检测仪/train/images/订单1806819_51_7109971.jpg b/datasets/检测仪/train/images/订单1806819_51_7109971.jpg new file mode 100644 index 0000000..5833cf5 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806819_51_7109971.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a6ba81d09dcbc97bc1f6edee1455faff48d2fc92917fd7594805e24b4b4e656 +size 374953 diff --git a/datasets/检测仪/train/images/订单1806820_51_7110176.jpg b/datasets/检测仪/train/images/订单1806820_51_7110176.jpg new file mode 100644 index 0000000..6ef4506 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806820_51_7110176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab3d5064915e917c86210eabc274f2ffc079deafd432dff56f4d360ec8ed96e +size 376305 diff --git a/datasets/检测仪/train/images/订单1806821_51_7109957.jpg b/datasets/检测仪/train/images/订单1806821_51_7109957.jpg new file mode 100644 index 0000000..9c8788c --- /dev/null +++ b/datasets/检测仪/train/images/订单1806821_51_7109957.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e10cf060ca0717b46b6e0fe11650397848ec77ce10dca2486b58edde6040cb3 +size 131525 diff --git a/datasets/检测仪/train/images/订单1806822_51_7109905.jpg b/datasets/检测仪/train/images/订单1806822_51_7109905.jpg new file mode 100644 index 0000000..86344d4 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806822_51_7109905.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db53dc49add65564e998532378cdccff229d353702d33bd0103a9f6aec434d56 +size 123356 diff --git a/datasets/检测仪/train/images/订单1806823_51_7109926.jpg b/datasets/检测仪/train/images/订单1806823_51_7109926.jpg new file mode 100644 index 0000000..b834869 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806823_51_7109926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d78332d3f2a72aad7b52616f42d648a633e7a8fd2a7b9acf2e134ea3d9c85907 +size 349680 diff --git a/datasets/检测仪/train/images/订单1806827_51_7110069.jpg b/datasets/检测仪/train/images/订单1806827_51_7110069.jpg new file mode 100644 index 0000000..2035172 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806827_51_7110069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5dda9ab09d368b72a346850b6c09a7a4fbb3095249de281612a109416490161 +size 375469 diff --git a/datasets/检测仪/train/images/订单1806828_51_7110021.jpg b/datasets/检测仪/train/images/订单1806828_51_7110021.jpg new file mode 100644 index 0000000..5115212 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806828_51_7110021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc769447560ea5d72e62d8f6089d63d662b40004a48a9734dbc54c75e9a9f762 +size 113244 diff --git a/datasets/检测仪/train/images/订单1806829_51_7110060.jpg b/datasets/检测仪/train/images/订单1806829_51_7110060.jpg new file mode 100644 index 0000000..4bc4c8f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806829_51_7110060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a8acc2d482d0ddce6151397e2a17f22aa8e25d3519b2b5c9340dd41cfbfb23 +size 132789 diff --git a/datasets/检测仪/train/images/订单1806830_51_7110171.jpg b/datasets/检测仪/train/images/订单1806830_51_7110171.jpg new file mode 100644 index 0000000..14f6f42 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806830_51_7110171.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740a482db4eccbb8adf1d51c0c80813027ce3f733d865aaf21a67527759444f6 +size 400561 diff --git a/datasets/检测仪/train/images/订单1806834_51_7110088.jpg b/datasets/检测仪/train/images/订单1806834_51_7110088.jpg new file mode 100644 index 0000000..5358d2d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806834_51_7110088.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310165f88351c013e046825389dc4539cffc2bc1e9e5f830de66df3c9a168f3d +size 276238 diff --git a/datasets/检测仪/train/images/订单1806836_51_7110123.jpg b/datasets/检测仪/train/images/订单1806836_51_7110123.jpg new file mode 100644 index 0000000..6b64fbe --- /dev/null +++ b/datasets/检测仪/train/images/订单1806836_51_7110123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8cf24f869281f737b41583b012c45d3ca95b72eeb0f2f4e808a20845fadbc0 +size 94494 diff --git a/datasets/检测仪/train/images/订单1806838_51_7110100.jpg b/datasets/检测仪/train/images/订单1806838_51_7110100.jpg new file mode 100644 index 0000000..8aa7961 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806838_51_7110100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2faf4fea2ee9eb1ad669b3a3be3be2a1665278c3a2722716a298123edbfd23a3 +size 99435 diff --git a/datasets/检测仪/train/images/订单1806841_51_7110192.jpg b/datasets/检测仪/train/images/订单1806841_51_7110192.jpg new file mode 100644 index 0000000..223f19d --- /dev/null +++ b/datasets/检测仪/train/images/订单1806841_51_7110192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f690e7809415885f86376d8ade8b0c6560a34f3ab1a1f1ae4c4f4a9a01ac785 +size 165445 diff --git a/datasets/检测仪/train/images/订单1806845_51_7110197.jpg b/datasets/检测仪/train/images/订单1806845_51_7110197.jpg new file mode 100644 index 0000000..d974add --- /dev/null +++ b/datasets/检测仪/train/images/订单1806845_51_7110197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:342b55a32e40f0fe9a8bf76fe6c15b62cc6b5577e57bc163e9862a11d009c779 +size 484780 diff --git a/datasets/检测仪/train/images/订单1806849_51_7110264.jpg b/datasets/检测仪/train/images/订单1806849_51_7110264.jpg new file mode 100644 index 0000000..8504efc --- /dev/null +++ b/datasets/检测仪/train/images/订单1806849_51_7110264.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc711c026bfa4ac369d4b2fedda02455782be2252838dc4c4616cda2aea62205 +size 95374 diff --git a/datasets/检测仪/train/images/订单1806852_51_7110283.jpg b/datasets/检测仪/train/images/订单1806852_51_7110283.jpg new file mode 100644 index 0000000..31c3945 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806852_51_7110283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12842968131a88312d3860824e501523768122b885b4a1ea3038354045b7057c +size 157815 diff --git a/datasets/检测仪/train/images/订单1806855_51_7110336.jpg b/datasets/检测仪/train/images/订单1806855_51_7110336.jpg new file mode 100644 index 0000000..521766f --- /dev/null +++ b/datasets/检测仪/train/images/订单1806855_51_7110336.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e477cca7564143a812460fcdcffa3295e1c03a4d9737704e57de6986a94a3b +size 209980 diff --git a/datasets/检测仪/train/images/订单1806857_51_7110262.jpg b/datasets/检测仪/train/images/订单1806857_51_7110262.jpg new file mode 100644 index 0000000..233d66b --- /dev/null +++ b/datasets/检测仪/train/images/订单1806857_51_7110262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcc7e4c6d496315d468e10eb9c8a889dd0f710dfa11d967a5d6328625b6592f +size 129119 diff --git a/datasets/检测仪/train/images/订单1806860_51_7110395.jpg b/datasets/检测仪/train/images/订单1806860_51_7110395.jpg new file mode 100644 index 0000000..6c62c06 --- /dev/null +++ b/datasets/检测仪/train/images/订单1806860_51_7110395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43065f51453c68edc6a16dc667913a1a9a488e3b77cdf0992e44815d786f8f3 +size 130797 diff --git a/datasets/检测仪/train/labels.cache b/datasets/检测仪/train/labels.cache new file mode 100644 index 0000000..acb4ff8 Binary files /dev/null and b/datasets/检测仪/train/labels.cache differ diff --git a/datasets/检测仪/train/labels/.DS_Store b/datasets/检测仪/train/labels/.DS_Store new file mode 100644 index 0000000..6f45b3c Binary files /dev/null and b/datasets/检测仪/train/labels/.DS_Store differ diff --git a/datasets/检测仪/train/labels/订单1804264_51_7086683.txt b/datasets/检测仪/train/labels/订单1804264_51_7086683.txt new file mode 100644 index 0000000..e20bbd0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804264_51_7086683.txt @@ -0,0 +1 @@ +5 0.113919 0.149853 0.048711 0.198951 0.076172 0.537451 0.098477 0.586549 0.105339 0.771304 0.089896 0.851402 0.139661 0.979314 0.216875 0.979314 0.230599 0.968980 0.419349 0.974147 0.487995 0.985775 0.532604 0.947010 0.570352 0.837196 0.554909 0.780343 0.575495 0.607216 0.614961 0.537451 0.675026 0.229961 0.613255 0.169235 0.522305 0.186029 0.210013 0.171824 diff --git a/datasets/检测仪/train/labels/订单1804266_51_7086351.txt b/datasets/检测仪/train/labels/订单1804266_51_7086351.txt new file mode 100644 index 0000000..9e9cf89 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804266_51_7086351.txt @@ -0,0 +1 @@ +5 0.405273 0.394004 0.377708 0.413389 0.365651 0.589092 0.377708 0.616230 0.362201 0.738965 0.344974 0.789355 0.344974 0.869453 0.362201 0.895293 0.410443 0.900469 0.425938 0.891416 0.551693 0.905635 0.558581 0.914678 0.593034 0.915967 0.632656 0.896592 0.653333 0.804854 0.632656 0.771270 0.651615 0.623975 0.667109 0.586514 0.694674 0.425010 0.653333 0.391416 0.608542 0.400469 0.453503 0.401758 diff --git a/datasets/检测仪/train/labels/订单1804271_51_7086393.txt b/datasets/检测仪/train/labels/订单1804271_51_7086393.txt new file mode 100644 index 0000000..5777600 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804271_51_7086393.txt @@ -0,0 +1 @@ +5 0.267057 0.213906 0.298548 0.219154 0.442910 0.220469 0.475716 0.211283 0.496712 0.233587 0.494089 0.440937 0.480964 0.459310 0.482279 0.586608 0.492773 0.623353 0.479655 0.708652 0.462591 0.732279 0.433724 0.728340 0.324798 0.729655 0.288053 0.741465 0.267057 0.723092 0.260495 0.643040 0.274928 0.586608 0.268366 0.465872 0.249993 0.416003 0.242122 0.233587 diff --git a/datasets/检测仪/train/labels/订单1804279_51_7086490.txt b/datasets/检测仪/train/labels/订单1804279_51_7086490.txt new file mode 100644 index 0000000..d55c299 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804279_51_7086490.txt @@ -0,0 +1 @@ +5 0.386576 0.298906 0.346719 0.321328 0.326784 0.514170 0.342734 0.548545 0.318815 0.683086 0.300872 0.742881 0.298880 0.829580 0.326784 0.865459 0.394557 0.863965 0.400534 0.852012 0.514141 0.855000 0.526107 0.865459 0.569948 0.866953 0.611810 0.847520 0.635729 0.744375 0.631745 0.711484 0.639714 0.579941 0.667617 0.532100 0.685560 0.354219 0.663633 0.330293 0.617786 0.322822 0.597852 0.331787 0.442383 0.312354 diff --git a/datasets/检测仪/train/labels/订单1804280_51_7086504.txt b/datasets/检测仪/train/labels/订单1804280_51_7086504.txt new file mode 100644 index 0000000..7325347 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804280_51_7086504.txt @@ -0,0 +1 @@ +5 0.367969 0.451436 0.388958 0.431748 0.423958 0.439619 0.577943 0.461934 0.609440 0.447500 0.630430 0.481621 0.604193 0.629912 0.577943 0.656162 0.567448 0.753271 0.570937 0.779521 0.544701 0.834639 0.518451 0.853008 0.485208 0.839883 0.343464 0.841201 0.324219 0.788701 0.331224 0.742773 0.350469 0.736211 0.355716 0.635166 0.341719 0.614160 diff --git a/datasets/检测仪/train/labels/订单1804281_51_7086514.txt b/datasets/检测仪/train/labels/订单1804281_51_7086514.txt new file mode 100644 index 0000000..3f92395 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804281_51_7086514.txt @@ -0,0 +1 @@ +5 0.320729 0.496055 0.334727 0.463242 0.369714 0.464561 0.518451 0.457998 0.558698 0.448809 0.574440 0.464561 0.600690 0.618105 0.583190 0.641719 0.607682 0.751963 0.623437 0.778203 0.618190 0.843818 0.593685 0.864824 0.558698 0.868760 0.556940 0.858262 0.458958 0.871387 0.427461 0.883193 0.395964 0.863506 0.376719 0.814951 0.376719 0.769023 0.366211 0.661406 0.345221 0.633848 diff --git a/datasets/检测仪/train/labels/订单1804283_51_7086538.txt b/datasets/检测仪/train/labels/订单1804283_51_7086538.txt new file mode 100644 index 0000000..1438235 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804283_51_7086538.txt @@ -0,0 +1 @@ +5 0.341719 0.349072 0.367969 0.321514 0.420456 0.330703 0.612930 0.321514 0.635677 0.312324 0.674180 0.345137 0.677682 0.534111 0.663685 0.573486 0.681172 0.713906 0.695182 0.751963 0.682930 0.854326 0.654935 0.881885 0.401211 0.884502 0.371471 0.851699 0.360964 0.746709 0.369714 0.716523 0.339974 0.347764 diff --git a/datasets/检测仪/train/labels/订单1804284_51_7086566.txt b/datasets/检测仪/train/labels/订单1804284_51_7086566.txt new file mode 100644 index 0000000..a53884c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804284_51_7086566.txt @@ -0,0 +1 @@ +5 0.354971 0.012560 0.375088 0.439412 0.382873 0.468246 0.388064 0.716285 0.377681 0.801362 0.388716 0.944129 0.409176 1.000000 0.458750 1.000000 0.456853 0.985948 0.545755 0.970087 0.580147 0.993159 0.599618 0.926830 0.601564 0.758105 0.589882 0.690327 0.576902 0.407680 0.583392 0.332691 0.573010 0.035632 0.560824 0.000000 0.553985 0.000000 diff --git a/datasets/检测仪/train/labels/订单1804288_51_7086560.txt b/datasets/检测仪/train/labels/订单1804288_51_7086560.txt new file mode 100644 index 0000000..9045f3a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804288_51_7086560.txt @@ -0,0 +1 @@ +5 0.501667 0.339814 0.475820 0.366943 0.503385 0.497432 0.518893 0.515518 0.527500 0.605957 0.524049 0.644717 0.548177 0.711904 0.561953 0.720947 0.601576 0.717070 0.620521 0.709316 0.694596 0.704150 0.704935 0.708027 0.734219 0.708027 0.754896 0.706738 0.770391 0.687354 0.768672 0.620176 0.753164 0.590459 0.734219 0.488389 0.735938 0.471592 0.725612 0.339814 0.694596 0.321719 0.672201 0.329473 0.529219 0.343691 diff --git a/datasets/检测仪/train/labels/订单1804296_51_7086646.txt b/datasets/检测仪/train/labels/订单1804296_51_7086646.txt new file mode 100644 index 0000000..11b27ef --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804296_51_7086646.txt @@ -0,0 +1 @@ +5 0.353971 0.288701 0.366211 0.263770 0.432708 0.261143 0.611185 0.224404 0.632188 0.208652 0.677682 0.232275 0.684674 0.263770 0.724922 0.418623 0.717917 0.452744 0.758164 0.594482 0.786159 0.624658 0.786159 0.706025 0.775664 0.730957 0.728424 0.730957 0.721419 0.717842 0.590195 0.744082 0.572695 0.762461 0.542943 0.750645 0.486953 0.681094 0.485208 0.631221 0.439714 0.501299 0.409961 0.460625 diff --git a/datasets/检测仪/train/labels/订单1804297_51_7086665.txt b/datasets/检测仪/train/labels/订单1804297_51_7086665.txt new file mode 100644 index 0000000..b21a2fa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804297_51_7086665.txt @@ -0,0 +1 @@ +5 0.251875 0.338516 0.213971 0.370820 0.219141 0.578828 0.234648 0.604668 0.226042 0.744209 0.212253 0.785547 0.222591 0.873398 0.251875 0.897949 0.303555 0.897949 0.310443 0.890195 0.441367 0.888906 0.449987 0.895371 0.484440 0.896660 0.527500 0.870820 0.543008 0.779092 0.530951 0.753252 0.539557 0.603379 0.558503 0.556865 0.577461 0.381152 0.544727 0.348857 0.496497 0.359189 0.310443 0.357900 diff --git a/datasets/检测仪/train/labels/订单1804300_51_7086694.txt b/datasets/检测仪/train/labels/订单1804300_51_7086694.txt new file mode 100644 index 0000000..8487ab6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804300_51_7086694.txt @@ -0,0 +1 @@ +5 0.305273 0.156348 0.291497 0.179609 0.351784 0.339814 0.369010 0.361777 0.400026 0.450918 0.405195 0.489678 0.436198 0.549111 0.477539 0.572373 0.506823 0.560742 0.513724 0.554277 0.594688 0.537490 0.644635 0.536191 0.665312 0.505186 0.658424 0.436709 0.634310 0.408291 0.598125 0.310098 0.603294 0.285547 0.558503 0.146016 0.530951 0.133096 diff --git a/datasets/检测仪/train/labels/订单1804301_51_7086834.txt b/datasets/检测仪/train/labels/订单1804301_51_7086834.txt new file mode 100644 index 0000000..0ba8bba --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804301_51_7086834.txt @@ -0,0 +1 @@ +5 0.373378 0.671788 0.435418 0.722175 0.509523 0.709256 0.526755 0.701501 0.749062 0.691166 0.764574 0.698916 0.843847 0.710545 0.917952 0.654988 0.850743 0.381090 0.817998 0.343623 0.805934 0.211835 0.795598 0.153699 0.755958 0.076178 0.728382 0.054215 0.680133 0.052925 0.674965 0.056800 0.521587 0.055504 0.492291 0.042585 0.459547 0.041295 0.414738 0.072304 0.388890 0.166618 0.407850 0.227339 0.409570 0.364291 0.388890 0.425018 diff --git a/datasets/检测仪/train/labels/订单1804303_51_7086722.txt b/datasets/检测仪/train/labels/订单1804303_51_7086722.txt new file mode 100644 index 0000000..dd71450 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804303_51_7086722.txt @@ -0,0 +1 @@ +5 0.338100 0.438354 0.367850 0.418667 0.387094 0.421292 0.535828 0.430479 0.548078 0.421292 0.569072 0.423917 0.590072 0.439667 0.586572 0.574838 0.570822 0.612896 0.572572 0.723129 0.584822 0.755938 0.569072 0.825492 0.546328 0.845179 0.514828 0.845179 0.476333 0.838617 0.472833 0.843867 0.432589 0.847800 0.425589 0.833367 0.397594 0.834679 0.360850 0.841242 0.332850 0.809746 0.331100 0.749375 0.346850 0.716567 0.345100 0.606333 0.334600 0.585333 0.338100 0.444917 diff --git a/datasets/检测仪/train/labels/订单1804305_51_7086730.txt b/datasets/检测仪/train/labels/订单1804305_51_7086730.txt new file mode 100644 index 0000000..8c1ed07 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804305_51_7086730.txt @@ -0,0 +1 @@ +5 0.381966 0.497363 0.355716 0.515742 0.362721 0.644346 0.390716 0.712588 0.401211 0.832012 0.385469 0.898945 0.394219 0.950117 0.418711 0.982930 0.451953 0.975059 0.472956 0.965869 0.500951 0.968496 0.548190 0.971123 0.551693 0.964561 0.581445 0.961934 0.630430 0.971123 0.653177 0.948809 0.667174 0.863506 0.646185 0.825449 0.635677 0.706025 0.646185 0.673223 0.647930 0.511807 0.609440 0.485557 0.586693 0.493428 0.579688 0.501299 0.432708 0.505244 0.385469 0.496055 diff --git a/datasets/检测仪/train/labels/订单1804307_51_7086734.txt b/datasets/检测仪/train/labels/订单1804307_51_7086734.txt new file mode 100644 index 0000000..7a817eb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804307_51_7086734.txt @@ -0,0 +1 @@ +5 0.474648 0.395049 0.441523 0.406853 0.380521 0.555147 0.377044 0.587961 0.336953 0.687696 0.319518 0.712627 0.307318 0.734941 0.286406 0.797931 0.293385 0.820245 0.321263 0.829431 0.335208 0.826804 0.420612 0.864863 0.439792 0.871422 0.464193 0.885863 0.500794 0.874049 0.561797 0.804490 0.554818 0.774314 0.601875 0.656196 0.654167 0.586647 0.706458 0.463284 0.687279 0.439667 0.654167 0.439667 0.479870 0.397667 diff --git a/datasets/检测仪/train/labels/订单1804310_51_7086877.txt b/datasets/检测仪/train/labels/订单1804310_51_7086877.txt new file mode 100644 index 0000000..2f89463 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804310_51_7086877.txt @@ -0,0 +1 @@ +5 0.294948 0.178311 0.243268 0.214492 0.269102 0.459971 0.293216 0.509062 0.303555 0.713193 0.286328 0.785547 0.319062 0.918623 0.363854 0.958672 0.441367 0.954795 0.453424 0.936709 0.648086 0.927666 0.665312 0.935420 0.729049 0.936709 0.749727 0.934131 0.784180 0.888906 0.777292 0.860479 0.780729 0.758418 0.751445 0.695107 0.727331 0.490977 0.742839 0.447051 0.715273 0.197695 0.658424 0.164102 0.608464 0.173145 0.353516 0.183477 diff --git a/datasets/检测仪/train/labels/订单1804312_51_7086770.txt b/datasets/检测仪/train/labels/订单1804312_51_7086770.txt new file mode 100644 index 0000000..51a0b53 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804312_51_7086770.txt @@ -0,0 +1 @@ +5 0.374244 0.481975 0.344961 0.499937 0.358744 0.639471 0.370800 0.674483 0.377694 0.777713 0.369078 0.799679 0.372522 0.866862 0.400089 0.888954 0.434539 0.886242 0.448322 0.881200 0.532733 0.881200 0.570628 0.888954 0.594744 0.865567 0.617139 0.788179 0.599917 0.761046 0.594744 0.675775 0.606806 0.634433 0.613694 0.496187 0.589578 0.474225 0.541344 0.484433 0.422483 0.487017 diff --git a/datasets/检测仪/train/labels/订单1804316_51_7086793.txt b/datasets/检测仪/train/labels/订单1804316_51_7086793.txt new file mode 100644 index 0000000..e80fc8c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804316_51_7086793.txt @@ -0,0 +1 @@ +5 0.131745 0.468496 0.163242 0.446182 0.252487 0.440937 0.460703 0.444873 0.553438 0.419941 0.726667 0.409443 0.756419 0.429121 0.761667 0.446182 0.754674 0.454062 0.765169 0.577422 0.782669 0.591855 0.789661 0.606289 0.761667 0.631221 0.534193 0.633848 0.490456 0.623350 0.315469 0.631221 0.257734 0.650908 0.175495 0.643037 0.140495 0.620723 0.145742 0.598418 0.164987 0.590537 0.143997 0.574795 0.150990 0.501299 0.133490 0.492119 0.131745 0.473740 diff --git a/datasets/检测仪/train/labels/订单1804319_51_7086838.txt b/datasets/检测仪/train/labels/订单1804319_51_7086838.txt new file mode 100644 index 0000000..9ad8419 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804319_51_7086838.txt @@ -0,0 +1 @@ +5 0.324219 0.261143 0.289232 0.288701 0.345221 0.463242 0.366211 0.496055 0.394219 0.614160 0.387214 0.667969 0.409961 0.724404 0.436211 0.741465 0.471198 0.736211 0.486953 0.724404 0.511445 0.723086 0.513203 0.732275 0.558698 0.729648 0.556940 0.719150 0.595443 0.713906 0.628685 0.720459 0.663685 0.686338 0.667174 0.625977 0.637435 0.597100 0.621680 0.472432 0.632188 0.412061 0.623437 0.283457 0.628685 0.250645 0.600690 0.241465 0.567448 0.240146 0.544701 0.251963 0.373216 0.266396 0.359219 0.261143 0.334727 0.259834 diff --git a/datasets/检测仪/train/labels/订单1804320_51_7086858.txt b/datasets/检测仪/train/labels/订单1804320_51_7086858.txt new file mode 100644 index 0000000..4f24b81 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804320_51_7086858.txt @@ -0,0 +1 @@ +5 0.379417 0.311304 0.346683 0.337275 0.391472 0.505104 0.401811 0.527067 0.417311 0.642183 0.405256 0.692442 0.437983 0.772546 0.472439 0.794637 0.522394 0.797092 0.532733 0.783013 0.651594 0.770092 0.656761 0.775258 0.708439 0.772546 0.732561 0.744121 0.729111 0.661563 0.708439 0.625258 0.672267 0.499937 0.686044 0.471513 0.649872 0.312596 0.620583 0.293217 0.587856 0.301100 0.429372 0.311304 diff --git a/datasets/检测仪/train/labels/订单1804322_51_7086804.txt b/datasets/检测仪/train/labels/订单1804322_51_7086804.txt new file mode 100644 index 0000000..b92748a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804322_51_7086804.txt @@ -0,0 +1 @@ +5 0.205987 0.435725 0.179739 0.450167 0.172745 0.572206 0.190248 0.582706 0.179739 0.677196 0.165752 0.715255 0.165752 0.770373 0.184993 0.795304 0.221739 0.793990 0.228732 0.783500 0.298732 0.778245 0.335477 0.790059 0.386222 0.765127 0.394967 0.706069 0.372222 0.683755 0.375725 0.590578 0.387974 0.568275 0.405464 0.458039 0.375725 0.433098 0.351229 0.440980 0.219987 0.438353 diff --git a/datasets/检测仪/train/labels/订单1804329_51_7086883.txt b/datasets/检测仪/train/labels/订单1804329_51_7086883.txt new file mode 100644 index 0000000..c9d4261 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804329_51_7086883.txt @@ -0,0 +1 @@ +5 0.268229 0.263770 0.226237 0.304453 0.268229 0.539365 0.292721 0.573486 0.318971 0.721777 0.297982 0.772959 0.339974 0.856943 0.380221 0.855635 0.408216 0.845137 0.542943 0.833320 0.563945 0.845137 0.590195 0.842510 0.609440 0.826758 0.647930 0.754580 0.625182 0.724404 0.621680 0.570859 0.660182 0.475059 0.677682 0.322822 0.675924 0.304453 0.644427 0.263770 0.595443 0.267705 0.591940 0.278203 0.345221 0.278203 0.324219 0.263770 0.276979 0.265078 diff --git a/datasets/检测仪/train/labels/订单1804330_51_7086948.txt b/datasets/检测仪/train/labels/订单1804330_51_7086948.txt new file mode 100644 index 0000000..1dc4190 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804330_51_7086948.txt @@ -0,0 +1 @@ +5 0.455143 0.307510 0.431029 0.326895 0.458594 0.496143 0.474102 0.521982 0.484440 0.629219 0.477539 0.670557 0.494766 0.740332 0.524049 0.766172 0.572292 0.764873 0.582630 0.758418 0.692878 0.748076 0.699766 0.754541 0.744557 0.753252 0.758333 0.729990 0.772122 0.649893 0.753164 0.620176 0.730768 0.494854 0.735938 0.462549 0.720443 0.311387 0.698047 0.286836 0.654974 0.298467 0.505104 0.308799 diff --git a/datasets/检测仪/train/labels/订单1804345_51_7087222.txt b/datasets/检测仪/train/labels/订单1804345_51_7087222.txt new file mode 100644 index 0000000..470dd23 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804345_51_7087222.txt @@ -0,0 +1 @@ +5 0.402844 0.329429 0.362600 0.350425 0.362600 0.480346 0.378344 0.519717 0.378344 0.624704 0.357350 0.668013 0.366100 0.710008 0.387094 0.731004 0.418589 0.731004 0.429089 0.723129 0.518328 0.723129 0.535828 0.729692 0.562072 0.733629 0.590072 0.708696 0.607567 0.652263 0.591822 0.615517 0.590072 0.524967 0.616317 0.480346 0.628567 0.358300 0.598817 0.337304 0.574322 0.338617 0.569072 0.349112 0.434339 0.342554 0.411594 0.332054 diff --git a/datasets/检测仪/train/labels/订单1804348_51_7086990.txt b/datasets/检测仪/train/labels/订单1804348_51_7086990.txt new file mode 100644 index 0000000..0f5aa17 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804348_51_7086990.txt @@ -0,0 +1 @@ +5 0.467272 0.469058 0.434539 0.479262 0.370800 0.618800 0.377694 0.639471 0.339794 0.750583 0.313956 0.783013 0.295006 0.847608 0.310511 0.879779 0.370800 0.892700 0.381139 0.887662 0.456933 0.900583 0.494833 0.917250 0.537900 0.901875 0.568906 0.830683 0.570628 0.811304 0.603361 0.692442 0.625756 0.661563 0.668822 0.537404 0.656761 0.512854 0.624033 0.514275 0.505167 0.484433 diff --git a/datasets/检测仪/train/labels/订单1804351_51_7087028.txt b/datasets/检测仪/train/labels/订单1804351_51_7087028.txt new file mode 100644 index 0000000..5ac514e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804351_51_7087028.txt @@ -0,0 +1 @@ +5 0.803125 0.307510 0.765221 0.279092 0.498216 0.295889 0.449987 0.311387 0.257044 0.310098 0.181250 0.306221 0.057214 0.320430 0.012422 0.338516 0.022760 0.385029 0.034818 0.399238 0.048607 0.494854 0.031380 0.551699 0.083060 0.577539 0.244987 0.581416 0.281159 0.573662 0.474102 0.558154 0.539557 0.564619 0.782448 0.556865 0.822070 0.524570 0.810013 0.493555 0.804844 0.490977 0.799674 0.356611 diff --git a/datasets/检测仪/train/labels/订单1804354_51_7087141.txt b/datasets/检测仪/train/labels/订单1804354_51_7087141.txt new file mode 100644 index 0000000..89073f4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804354_51_7087141.txt @@ -0,0 +1 @@ +5 0.359974 0.448853 0.314484 0.481657 0.338980 0.631265 0.356471 0.674569 0.354719 0.830735 0.359974 0.897667 0.632941 0.908167 0.618941 0.855676 0.597948 0.792686 0.601438 0.669324 0.617190 0.605020 0.625935 0.472471 0.587438 0.443598 0.569948 0.444912 0.554196 0.460657 0.400222 0.459353 0.372222 0.446225 diff --git a/datasets/检测仪/train/labels/订单1804355_51_7087137.txt b/datasets/检测仪/train/labels/订单1804355_51_7087137.txt new file mode 100644 index 0000000..289ce66 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804355_51_7087137.txt @@ -0,0 +1 @@ +5 0.326011 0.475517 0.357022 0.463887 0.420756 0.452133 0.481050 0.459883 0.605083 0.458592 0.641256 0.446963 0.818689 0.440633 0.834194 0.452133 0.839361 0.605879 0.829028 0.622804 0.658483 0.634433 0.620583 0.623967 0.496556 0.631717 0.465544 0.639471 0.365633 0.635725 0.346683 0.622804 0.332906 0.595671 0.343239 0.577454 0.343239 0.515567 0.332906 0.510400 diff --git a/datasets/检测仪/train/labels/订单1804356_51_7087113.txt b/datasets/检测仪/train/labels/订单1804356_51_7087113.txt new file mode 100644 index 0000000..183d528 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804356_51_7087113.txt @@ -0,0 +1 @@ +5 0.342960 0.377950 0.315046 0.393694 0.277807 0.478997 0.301074 0.509187 0.259202 0.603668 0.242914 0.656168 0.277807 0.678478 0.315046 0.675848 0.396472 0.674533 0.436028 0.687664 0.489555 0.633858 0.491871 0.598426 0.505828 0.520995 0.526779 0.506557 0.554693 0.405510 0.529110 0.387137 0.503512 0.392388 0.361580 0.381886 diff --git a/datasets/检测仪/train/labels/订单1804357_51_7087171.txt b/datasets/检测仪/train/labels/订单1804357_51_7087171.txt new file mode 100644 index 0000000..d90c469 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804357_51_7087171.txt @@ -0,0 +1 @@ +5 0.520195 0.291328 0.486953 0.308389 0.462461 0.488184 0.472956 0.515742 0.451953 0.661406 0.425703 0.692900 0.427461 0.779521 0.448451 0.803145 0.485208 0.807080 0.506198 0.801826 0.626940 0.814951 0.677682 0.830703 0.710924 0.801826 0.733672 0.727021 0.719674 0.690283 0.747669 0.547236 0.807161 0.349072 0.784414 0.318887 0.754674 0.313643 0.745924 0.320205 0.562187 0.299199 0.528945 0.286084 diff --git a/datasets/检测仪/train/labels/订单1804358_51_7087420.txt b/datasets/检测仪/train/labels/订单1804358_51_7087420.txt new file mode 100644 index 0000000..8d44e4e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804358_51_7087420.txt @@ -0,0 +1 @@ +5 0.276861 0.490846 0.250611 0.506596 0.250611 0.616829 0.264611 0.648325 0.266361 0.736254 0.259361 0.762500 0.266361 0.824179 0.287356 0.843867 0.318856 0.843867 0.329350 0.834679 0.408094 0.826804 0.434339 0.832054 0.471083 0.801871 0.478083 0.753313 0.460589 0.725754 0.446589 0.635204 0.462333 0.607646 0.457089 0.507908 0.436089 0.496096 0.411594 0.496096 0.299606 0.496096 0.287356 0.490846 diff --git a/datasets/检测仪/train/labels/订单1804361_51_7087277.txt b/datasets/检测仪/train/labels/订单1804361_51_7087277.txt new file mode 100644 index 0000000..52d4d3d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804361_51_7087277.txt @@ -0,0 +1 @@ +5 0.242591 0.410824 0.215143 0.425039 0.216849 0.578784 0.230586 0.602039 0.230586 0.702814 0.218568 0.750618 0.228867 0.803588 0.258034 0.838471 0.302643 0.832010 0.307799 0.825549 0.390156 0.822971 0.397018 0.828137 0.431341 0.828137 0.448503 0.829431 0.470807 0.811343 0.482826 0.713147 0.475964 0.698941 0.469089 0.602039 0.475964 0.569735 0.482826 0.432784 0.455365 0.403069 0.426198 0.409529 0.422760 0.415990 0.285495 0.417284 0.254609 0.408235 diff --git a/datasets/检测仪/train/labels/订单1804364_51_7087186.txt b/datasets/检测仪/train/labels/订单1804364_51_7087186.txt new file mode 100644 index 0000000..09612b6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804364_51_7087186.txt @@ -0,0 +1 @@ +5 0.335982 0.341202 0.301074 0.351704 0.287117 0.459317 0.287117 0.478997 0.268497 0.569550 0.247561 0.633858 0.275491 0.654853 0.315046 0.650917 0.417423 0.657474 0.454647 0.666661 0.519801 0.601047 0.510491 0.580052 0.524448 0.494749 0.570982 0.371384 0.550046 0.347768 0.522117 0.353010 0.345291 0.345138 diff --git a/datasets/检测仪/train/labels/订单1804365_51_7087279.txt b/datasets/检测仪/train/labels/订单1804365_51_7087279.txt new file mode 100644 index 0000000..b402703 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804365_51_7087279.txt @@ -0,0 +1 @@ +5 0.408102 0.501345 0.385347 0.519722 0.388854 0.610269 0.411597 0.652266 0.409850 0.741502 0.402847 0.766441 0.413345 0.808438 0.439595 0.834679 0.467593 0.834679 0.528831 0.816311 0.556829 0.820243 0.584826 0.825495 0.602326 0.795313 0.598819 0.748064 0.581331 0.728385 0.584826 0.640460 0.572581 0.522344 0.558576 0.500035 0.544583 0.506597 0.420347 0.501345 diff --git a/datasets/检测仪/train/labels/订单1804368_51_7087281.txt b/datasets/检测仪/train/labels/订单1804368_51_7087281.txt new file mode 100644 index 0000000..5fff35d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804368_51_7087281.txt @@ -0,0 +1 @@ +5 0.396576 0.260996 0.367292 0.292012 0.396576 0.523271 0.415534 0.541357 0.427591 0.697695 0.424141 0.758418 0.446536 0.850146 0.487878 0.882451 0.551615 0.883740 0.567122 0.872109 0.699766 0.857900 0.756615 0.863066 0.799674 0.826895 0.801406 0.719658 0.784180 0.674434 0.763503 0.527148 0.765221 0.484512 0.754896 0.277793 0.701484 0.253252 0.673932 0.254541 0.668763 0.263584 0.458594 0.266172 diff --git a/datasets/检测仪/train/labels/订单1804374_51_7087324.txt b/datasets/检测仪/train/labels/订单1804374_51_7087324.txt new file mode 100644 index 0000000..ea7a80f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804374_51_7087324.txt @@ -0,0 +1 @@ +5 0.172630 0.436709 0.153685 0.458672 0.179518 0.617588 0.196745 0.646016 0.224310 0.772627 0.212253 0.810098 0.232930 0.892783 0.262214 0.923789 0.324232 0.914746 0.334557 0.906992 0.449987 0.881152 0.467214 0.885029 0.508555 0.885029 0.529219 0.848857 0.522331 0.772627 0.501667 0.723535 0.474102 0.612422 0.480990 0.571074 0.446536 0.417334 0.387969 0.422500 0.244987 0.435420 diff --git a/datasets/检测仪/train/labels/订单1804380_51_7087338.txt b/datasets/检测仪/train/labels/订单1804380_51_7087338.txt new file mode 100644 index 0000000..8e68ac5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804380_51_7087338.txt @@ -0,0 +1 @@ +5 0.532662 0.277795 0.465486 0.301050 0.356956 0.546528 0.356956 0.596918 0.289769 0.739036 0.248426 0.771337 0.224306 0.852726 0.241539 0.904410 0.282882 0.914748 0.301829 0.905703 0.436192 0.950920 0.487882 0.974175 0.542998 0.966424 0.611910 0.886319 0.611910 0.854019 0.708380 0.708030 0.742824 0.684774 0.921991 0.445755 0.903032 0.394071 0.839294 0.375981 0.803125 0.377274 0.596400 0.312674 0.592963 0.297170 diff --git a/datasets/检测仪/train/labels/订单1804383_51_7087409.txt b/datasets/检测仪/train/labels/订单1804383_51_7087409.txt new file mode 100644 index 0000000..633c68a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804383_51_7087409.txt @@ -0,0 +1 @@ +5 0.520171 0.430443 0.497534 0.451439 0.493599 0.481621 0.500488 0.490807 0.491631 0.640417 0.477852 0.652227 0.478833 0.669284 0.500488 0.713906 0.680605 0.707344 0.782969 0.712591 0.835132 0.727025 0.901079 0.711283 0.905015 0.674538 0.899111 0.662721 0.901079 0.557734 0.908950 0.520990 0.887300 0.498678 0.833164 0.476374 0.808560 0.485560 0.699307 0.471120 0.524111 0.433066 diff --git a/datasets/检测仪/train/labels/订单1804384_51_7087390.txt b/datasets/检测仪/train/labels/订单1804384_51_7087390.txt new file mode 100644 index 0000000..90b56cf --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804384_51_7087390.txt @@ -0,0 +1 @@ +5 0.334693 0.460600 0.311947 0.480290 0.311947 0.646950 0.329453 0.666640 0.322453 0.800500 0.310200 0.828060 0.310200 0.896300 0.343440 0.922550 0.371440 0.922550 0.385440 0.913360 0.490427 0.913360 0.506173 0.921230 0.542920 0.925170 0.562173 0.908110 0.584920 0.818870 0.567413 0.784750 0.570920 0.661390 0.584920 0.481600 0.541173 0.454040 0.528920 0.468480 0.380187 0.471100 0.355693 0.460600 diff --git a/datasets/检测仪/train/labels/订单1804385_51_7087531.txt b/datasets/检测仪/train/labels/订单1804385_51_7087531.txt new file mode 100644 index 0000000..c28476c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804385_51_7087531.txt @@ -0,0 +1 @@ +5 0.456209 0.253314 0.429961 0.276931 0.454458 0.408167 0.473712 0.452784 0.489451 0.560402 0.475451 0.599765 0.499948 0.647010 0.538444 0.670637 0.557699 0.662765 0.646941 0.649637 0.666183 0.652265 0.699425 0.650951 0.709922 0.629951 0.715176 0.573520 0.694183 0.547275 0.690680 0.435725 0.699425 0.265127 0.666183 0.242814 0.641686 0.253314 0.480706 0.258559 0.466706 0.255941 diff --git a/datasets/检测仪/train/labels/订单1804387_51_7087408.txt b/datasets/检测仪/train/labels/订单1804387_51_7087408.txt new file mode 100644 index 0000000..11bf8e0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804387_51_7087408.txt @@ -0,0 +1 @@ +5 0.153744 0.430296 0.131350 0.449679 0.150300 0.595671 0.167528 0.621513 0.176139 0.709367 0.170972 0.736500 0.184756 0.798383 0.208872 0.816604 0.239878 0.812596 0.258828 0.803683 0.334628 0.797092 0.370800 0.804846 0.401811 0.783013 0.408700 0.715825 0.394917 0.695154 0.389750 0.605879 0.400089 0.570996 0.398361 0.445671 0.367356 0.419833 0.332906 0.432754 0.207150 0.437921 0.191644 0.427712 diff --git a/datasets/检测仪/train/labels/订单1804388_51_7087485.txt b/datasets/检测仪/train/labels/订单1804388_51_7087485.txt new file mode 100644 index 0000000..14477d2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804388_51_7087485.txt @@ -0,0 +1 @@ +5 0.482584 0.342517 0.461592 0.367448 0.466840 0.526246 0.486090 0.582673 0.494833 0.727033 0.479089 0.757215 0.480830 0.837266 0.507082 0.867448 0.554325 0.856955 0.603322 0.856955 0.606817 0.863512 0.655813 0.862197 0.687313 0.862197 0.746805 0.872699 0.783552 0.780839 0.762549 0.729654 0.767797 0.581358 0.799296 0.541990 0.802791 0.363512 0.771303 0.337266 0.731050 0.335952 0.720554 0.345138 0.536828 0.353010 0.524579 0.341202 0.500081 0.341202 diff --git a/datasets/检测仪/train/labels/订单1804391_51_7087435.txt b/datasets/检测仪/train/labels/订单1804391_51_7087435.txt new file mode 100644 index 0000000..4195607 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804391_51_7087435.txt @@ -0,0 +1 @@ +5 0.387820 0.544647 0.370760 0.561707 0.368133 0.691627 0.382573 0.719187 0.383887 0.822860 0.372073 0.858293 0.379947 0.918660 0.395693 0.944907 0.423253 0.939660 0.449500 0.931787 0.448187 0.940973 0.474433 0.940973 0.479687 0.927847 0.501993 0.926533 0.526927 0.933100 0.546613 0.906853 0.554487 0.845173 0.540053 0.817613 0.533493 0.715247 0.542680 0.559080 0.521680 0.542020 0.504620 0.545960 0.411440 0.552520 0.398320 0.545960 diff --git a/datasets/检测仪/train/labels/订单1804392_51_7087455.txt b/datasets/检测仪/train/labels/订单1804392_51_7087455.txt new file mode 100644 index 0000000..70d1831 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804392_51_7087455.txt @@ -0,0 +1 @@ +5 0.706654 0.604668 0.672201 0.596914 0.506823 0.656348 0.477539 0.679609 0.348346 0.719658 0.320781 0.719658 0.213971 0.770049 0.210534 0.782969 0.215703 0.816553 0.232930 0.817852 0.269102 0.890195 0.267383 0.912158 0.274271 0.923789 0.325951 0.928955 0.389687 0.918623 0.432760 0.896660 0.561953 0.848857 0.618802 0.844980 0.799674 0.782969 0.810013 0.754541 0.779010 0.732578 0.727331 0.647305 diff --git a/datasets/检测仪/train/labels/订单1804397_51_7087486.txt b/datasets/检测仪/train/labels/订单1804397_51_7087486.txt new file mode 100644 index 0000000..a59d6a4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804397_51_7087486.txt @@ -0,0 +1 @@ +5 0.105495 0.454062 0.114245 0.482930 0.303229 0.568232 0.429206 0.623350 0.441458 0.644346 0.527201 0.678467 0.567448 0.657471 0.565690 0.635166 0.581445 0.629912 0.598932 0.629912 0.618190 0.607598 0.604193 0.599727 0.614687 0.576104 0.651432 0.566924 0.639180 0.539365 0.544701 0.499990 0.436211 0.437002 0.388958 0.402881 0.236732 0.334639 0.222734 0.351699 0.126497 0.447500 diff --git a/datasets/检测仪/train/labels/订单1804398_51_7087556.txt b/datasets/检测仪/train/labels/订单1804398_51_7087556.txt new file mode 100644 index 0000000..e00fdec --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804398_51_7087556.txt @@ -0,0 +1 @@ +5 0.511331 0.388490 0.469340 0.400295 0.418600 0.553845 0.430845 0.595833 0.378345 0.770373 0.327604 0.828116 0.310104 0.927856 0.322361 0.961979 0.453588 0.988229 0.752801 0.997413 0.766806 0.979036 0.787801 0.862240 0.766806 0.812370 0.763299 0.627335 0.791296 0.560399 0.803553 0.433108 0.772049 0.410799 0.749306 0.405547 0.530579 0.391111 diff --git a/datasets/检测仪/train/labels/订单1804400_51_7087530.txt b/datasets/检测仪/train/labels/订单1804400_51_7087530.txt new file mode 100644 index 0000000..340bf0c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804400_51_7087530.txt @@ -0,0 +1 @@ +5 0.412798 0.170553 0.387583 0.202819 0.401172 0.392747 0.414761 0.426367 0.418613 0.564642 0.411855 0.598171 0.420576 0.682181 0.439907 0.718327 0.472900 0.717064 0.479658 0.711934 0.548481 0.696426 0.555239 0.705436 0.583364 0.701562 0.596885 0.675690 0.601753 0.577533 0.588164 0.540033 0.586274 0.414740 0.588164 0.361738 0.582349 0.195072 0.563018 0.161543 0.533950 0.173171 0.437002 0.175690 diff --git a/datasets/检测仪/train/labels/订单1804402_51_7087549.txt b/datasets/检测仪/train/labels/订单1804402_51_7087549.txt new file mode 100644 index 0000000..968bbe2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804402_51_7087549.txt @@ -0,0 +1 @@ +5 0.360964 0.511797 0.334727 0.514424 0.315469 0.517051 0.306719 0.544609 0.413464 0.695527 0.443203 0.703398 0.502695 0.801826 0.513203 0.846445 0.576185 0.900254 0.614687 0.909443 0.632188 0.897627 0.663685 0.877939 0.700430 0.871387 0.703919 0.855635 0.742422 0.835947 0.772161 0.833320 0.775664 0.801826 0.747669 0.750645 0.714427 0.720459 0.635677 0.615479 0.546445 0.456680 0.520195 0.450117 0.492201 0.467178 0.373216 0.511807 diff --git a/datasets/检测仪/train/labels/订单1804404_51_7088648.txt b/datasets/检测仪/train/labels/订单1804404_51_7088648.txt new file mode 100644 index 0000000..7a3736e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804404_51_7088648.txt @@ -0,0 +1 @@ +5 0.469804 0.088279 0.449647 0.108954 0.429495 0.363900 0.431044 0.425926 0.413990 0.622298 0.403912 0.689488 0.399260 0.827298 0.413216 0.872092 0.437245 0.887593 0.446549 0.875534 0.502363 0.887593 0.511667 0.904815 0.535696 0.916874 0.562828 0.873813 0.574456 0.736002 0.573681 0.675708 0.582980 0.481046 0.596162 0.420752 0.611667 0.188192 0.597711 0.148573 0.577554 0.139956 0.492284 0.100338 diff --git a/datasets/检测仪/train/labels/订单1804405_51_7087580.txt b/datasets/检测仪/train/labels/订单1804405_51_7087580.txt new file mode 100644 index 0000000..64ea24d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804405_51_7087580.txt @@ -0,0 +1 @@ +5 0.489663 0.476810 0.468993 0.492312 0.484497 0.612467 0.501723 0.637015 0.512060 0.726163 0.505167 0.757170 0.512060 0.803682 0.531007 0.830815 0.565460 0.829523 0.587857 0.825645 0.656760 0.825645 0.667097 0.829523 0.710163 0.830815 0.725667 0.812725 0.727390 0.736500 0.717053 0.718410 0.692937 0.622803 0.706720 0.594380 0.691213 0.475517 0.675710 0.460012 0.651593 0.461305 0.642980 0.470350 0.517227 0.480685 diff --git a/datasets/检测仪/train/labels/订单1804409_51_7087612.txt b/datasets/检测仪/train/labels/订单1804409_51_7087612.txt new file mode 100644 index 0000000..9882b9f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804409_51_7087612.txt @@ -0,0 +1 @@ +5 0.334557 0.382451 0.305273 0.404414 0.291497 0.604668 0.317331 0.639551 0.301836 0.777793 0.286328 0.832061 0.286328 0.906992 0.327669 0.940586 0.370742 0.934131 0.398307 0.928955 0.489596 0.935420 0.501667 0.944463 0.549896 0.956094 0.594688 0.927666 0.623971 0.829473 0.610182 0.806221 0.625690 0.662813 0.641198 0.612422 0.679089 0.426377 0.639479 0.395371 0.599857 0.391494 0.596406 0.400537 0.370742 0.383740 0.401745 0.394072 diff --git a/datasets/检测仪/train/labels/订单1804410_51_7087567.txt b/datasets/检测仪/train/labels/订单1804410_51_7087567.txt new file mode 100644 index 0000000..a9103ce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804410_51_7087567.txt @@ -0,0 +1 @@ +5 0.319062 0.363066 0.281159 0.390195 0.289779 0.550410 0.307005 0.572373 0.307005 0.705449 0.298385 0.737744 0.312174 0.828184 0.332839 0.847559 0.389687 0.842393 0.398307 0.838516 0.501667 0.838516 0.520612 0.844980 0.546445 0.842393 0.579180 0.819141 0.605026 0.737744 0.584349 0.689941 0.579180 0.565908 0.580898 0.527148 0.579180 0.387617 0.539557 0.359189 0.522331 0.365654 0.374180 0.368232 diff --git a/datasets/检测仪/train/labels/订单1804415_51_7087728.txt b/datasets/检测仪/train/labels/订单1804415_51_7087728.txt new file mode 100644 index 0000000..48afbd7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804415_51_7087728.txt @@ -0,0 +1 @@ +5 0.236732 0.590537 0.208737 0.597100 0.201732 0.632539 0.420456 0.754580 0.523698 0.825449 0.572695 0.870068 0.644427 0.897627 0.686432 0.883193 0.714427 0.855635 0.761667 0.820205 0.807161 0.784766 0.803659 0.761143 0.731927 0.702090 0.686432 0.678467 0.588438 0.610225 0.423958 0.467178 0.374961 0.468496 0.359219 0.484238 0.353971 0.503926 0.255977 0.586602 diff --git a/datasets/检测仪/train/labels/订单1804416_51_7087651.txt b/datasets/检测仪/train/labels/订单1804416_51_7087651.txt new file mode 100644 index 0000000..9181b0d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804416_51_7087651.txt @@ -0,0 +1 @@ +5 0.372325 0.561675 0.348854 0.578735 0.395808 0.674536 0.433952 0.767710 0.454487 0.811021 0.489694 0.822832 0.513166 0.816270 0.601190 0.804458 0.654007 0.804458 0.677478 0.749341 0.648144 0.725718 0.630535 0.660103 0.624662 0.561675 0.563046 0.553799 0.539574 0.560361 0.431015 0.568237 0.389934 0.561675 diff --git a/datasets/检测仪/train/labels/订单1804417_51_7087688.txt b/datasets/检测仪/train/labels/订单1804417_51_7087688.txt new file mode 100644 index 0000000..1c9554b0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804417_51_7087688.txt @@ -0,0 +1 @@ +5 0.436198 0.337227 0.405195 0.361777 0.394857 0.502598 0.401745 0.516816 0.394857 0.600791 0.386237 0.624053 0.382799 0.680898 0.405195 0.706738 0.434479 0.704150 0.437917 0.702861 0.517161 0.706738 0.527500 0.713193 0.577461 0.714492 0.587799 0.697695 0.599857 0.648594 0.603294 0.621465 0.615352 0.542656 0.630859 0.520693 0.673932 0.382451 0.651536 0.350146 0.617083 0.360479 0.480990 0.351436 0.453424 0.332061 diff --git a/datasets/检测仪/train/labels/订单1804418_51_7087740.txt b/datasets/检测仪/train/labels/订单1804418_51_7087740.txt new file mode 100644 index 0000000..42a14dd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804418_51_7087740.txt @@ -0,0 +1 @@ +5 0.093255 0.253271 0.053008 0.284766 0.102005 0.556426 0.119492 0.699463 0.128242 0.730957 0.116003 0.769023 0.173737 0.881885 0.210482 0.877939 0.371471 0.855635 0.381966 0.862197 0.420456 0.862197 0.451953 0.847764 0.478203 0.767705 0.458958 0.730957 0.455456 0.557734 0.478203 0.503926 0.485208 0.286084 0.444961 0.259834 0.408216 0.257207 0.392461 0.269023 0.154492 0.269023 0.142240 0.261143 0.117747 0.254580 diff --git a/datasets/检测仪/train/labels/订单1804419_51_7087760.txt b/datasets/检测仪/train/labels/订单1804419_51_7087760.txt new file mode 100644 index 0000000..16885ff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804419_51_7087760.txt @@ -0,0 +1 @@ +5 0.582641 0.425096 0.549910 0.447058 0.561974 0.603385 0.574026 0.630519 0.579192 0.735173 0.570577 0.761010 0.577474 0.842404 0.592974 0.861788 0.644654 0.869538 0.663603 0.860500 0.758346 0.861788 0.785910 0.868250 0.804859 0.864375 0.834154 0.842404 0.841038 0.777808 0.834154 0.741635 0.825538 0.625356 0.834154 0.591760 0.837590 0.440596 0.813474 0.417346 0.782474 0.421221 0.779026 0.428971 0.623987 0.430260 diff --git a/datasets/检测仪/train/labels/订单1804420_51_7087689.txt b/datasets/检测仪/train/labels/订单1804420_51_7087689.txt new file mode 100644 index 0000000..203a0b8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804420_51_7087689.txt @@ -0,0 +1 @@ +5 0.312026 0.494844 0.286831 0.521979 0.283926 0.554277 0.289736 0.569779 0.280049 0.748073 0.272295 0.764870 0.270356 0.795879 0.288770 0.830762 0.487412 0.850143 0.516484 0.832051 0.652139 0.844974 0.720938 0.863060 0.798457 0.855313 0.819775 0.823008 0.821714 0.772624 0.811055 0.770039 0.807178 0.748073 0.816870 0.735156 0.816870 0.670553 0.805239 0.666680 0.805239 0.635671 0.816870 0.627917 0.815898 0.587865 0.789736 0.545234 0.713188 0.529727 0.681211 0.540065 0.528110 0.534896 0.499038 0.512930 diff --git a/datasets/检测仪/train/labels/订单1804428_51_7087840.txt b/datasets/检测仪/train/labels/订单1804428_51_7087840.txt new file mode 100644 index 0000000..e350790 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804428_51_7087840.txt @@ -0,0 +1 @@ +5 0.248400 0.374680 0.210507 0.397930 0.181227 0.591730 0.196733 0.621450 0.169160 0.793280 0.151933 0.843670 0.146773 0.959950 0.167440 0.988370 0.172613 0.994830 0.224293 0.998710 0.250133 0.990960 0.291467 0.985790 0.291467 0.990960 0.372440 0.997420 0.377600 0.988370 0.393107 0.990960 0.412053 0.997420 0.486133 0.998710 0.515413 0.974160 0.542987 0.855300 0.524027 0.795870 0.525760 0.646000 0.555040 0.595610 0.565373 0.421190 0.539533 0.386310 0.506800 0.381140 0.491307 0.391470 0.300080 0.388890 0.274240 0.375970 diff --git a/datasets/检测仪/train/labels/订单1804433_51_7087882.txt b/datasets/检测仪/train/labels/订单1804433_51_7087882.txt new file mode 100644 index 0000000..130f629 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804433_51_7087882.txt @@ -0,0 +1 @@ +5 0.408114 0.312390 0.373129 0.349134 0.381871 0.502675 0.418611 0.542050 0.404620 0.668026 0.395877 0.708717 0.416871 0.788761 0.439620 0.803202 0.467617 0.807138 0.481608 0.795329 0.614591 0.788761 0.614591 0.796645 0.642588 0.799265 0.682836 0.776952 0.688085 0.710022 0.672339 0.677215 0.675833 0.514485 0.693333 0.490866 0.679342 0.351754 0.651345 0.322884 0.623348 0.320263 0.458860 0.325515 0.423860 0.315011 diff --git a/datasets/检测仪/train/labels/订单1804435_51_7087835.txt b/datasets/检测仪/train/labels/订单1804435_51_7087835.txt new file mode 100644 index 0000000..68dc055 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804435_51_7087835.txt @@ -0,0 +1 @@ +5 0.374180 0.313975 0.355234 0.332061 0.358685 0.501309 0.379349 0.528438 0.377630 0.651182 0.367292 0.701572 0.377630 0.767461 0.400026 0.789424 0.448255 0.798467 0.449987 0.793301 0.487878 0.784258 0.487878 0.793301 0.551615 0.795889 0.548177 0.786836 0.568841 0.785547 0.579180 0.793301 0.627409 0.795889 0.641198 0.776504 0.668763 0.687354 0.653255 0.662813 0.644635 0.529736 0.663594 0.478057 0.667031 0.323018 0.617083 0.295889 0.587799 0.310098 0.417253 0.313975 0.387969 0.301055 diff --git a/datasets/检测仪/train/labels/订单1804441_51_7087928.txt b/datasets/检测仪/train/labels/订单1804441_51_7087928.txt new file mode 100644 index 0000000..4a73449 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804441_51_7087928.txt @@ -0,0 +1 @@ +5 0.313893 0.436709 0.288047 0.457383 0.298385 0.627930 0.308724 0.644717 0.315612 0.781670 0.303555 0.816553 0.319062 0.896660 0.346628 0.927666 0.387969 0.931543 0.403464 0.922500 0.434479 0.921211 0.429310 0.926377 0.479271 0.927666 0.487878 0.919912 0.518893 0.914746 0.543008 0.921211 0.575729 0.919912 0.591237 0.904414 0.603294 0.807510 0.592956 0.763584 0.582630 0.642139 0.598125 0.574951 0.584349 0.450918 0.558503 0.423789 0.511992 0.430254 0.510273 0.436709 0.369010 0.437998 diff --git a/datasets/检测仪/train/labels/订单1804442_51_7087959.txt b/datasets/检测仪/train/labels/订单1804442_51_7087959.txt new file mode 100644 index 0000000..8175b5e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804442_51_7087959.txt @@ -0,0 +1 @@ +5 0.285729 0.534111 0.254232 0.551172 0.264727 0.673223 0.282227 0.713906 0.294479 0.822822 0.276979 0.868760 0.297982 0.929121 0.331224 0.961934 0.355716 0.952744 0.373216 0.942246 0.464206 0.925186 0.472956 0.930439 0.495703 0.927813 0.516693 0.905498 0.525443 0.832012 0.506198 0.812324 0.493945 0.698154 0.504453 0.664033 0.499206 0.548545 0.465951 0.532803 0.444961 0.539365 0.322474 0.540674 0.296224 0.535420 diff --git a/datasets/检测仪/train/labels/订单1804446_51_7087979.txt b/datasets/检测仪/train/labels/订单1804446_51_7087979.txt new file mode 100644 index 0000000..afc6dc4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804446_51_7087979.txt @@ -0,0 +1 @@ +5 0.409961 0.381885 0.387214 0.410752 0.429206 0.543301 0.462461 0.576104 0.469453 0.682402 0.481706 0.734902 0.509701 0.804453 0.542943 0.824141 0.569193 0.808389 0.689922 0.784766 0.696927 0.790020 0.733672 0.788701 0.754674 0.759834 0.751172 0.696846 0.716172 0.661406 0.682930 0.535420 0.691680 0.505244 0.654935 0.375322 0.619935 0.356943 0.602435 0.364824 0.591940 0.370068 0.458958 0.391064 0.427461 0.384502 diff --git a/datasets/检测仪/train/labels/订单1804453_51_7088084.txt b/datasets/检测仪/train/labels/订单1804453_51_7088084.txt new file mode 100644 index 0000000..3c51e31 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804453_51_7088084.txt @@ -0,0 +1 @@ +5 0.838513 0.480327 0.784269 0.464587 0.528808 0.502644 0.478064 0.522327 0.289090 0.547260 0.210346 0.548567 0.112359 0.568260 0.066859 0.599750 0.079115 0.629933 0.100103 0.648308 0.119359 0.748048 0.112359 0.763798 0.108859 0.791356 0.161346 0.816288 0.278590 0.809731 0.325833 0.786106 0.534051 0.757231 0.843769 0.736240 0.887513 0.698183 0.877013 0.671933 0.826269 0.511827 0.843769 0.488202 diff --git a/datasets/检测仪/train/labels/订单1804454_51_7088108.txt b/datasets/检测仪/train/labels/订单1804454_51_7088108.txt new file mode 100644 index 0000000..c9dd199 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804454_51_7088108.txt @@ -0,0 +1 @@ +5 0.116280 0.368220 0.077520 0.401807 0.079460 0.440567 0.081395 0.443153 0.055235 0.666667 0.036820 0.726100 0.074615 0.782947 0.302325 0.786820 0.357560 0.753233 0.526165 0.767440 0.559110 0.780360 0.664730 0.766153 0.688955 0.735140 0.685080 0.686047 0.678295 0.665373 0.674420 0.638247 0.687015 0.633073 0.681200 0.576227 0.672480 0.568473 0.672480 0.536173 0.680235 0.524547 0.680235 0.478033 0.655040 0.450907 0.576550 0.427647 0.532945 0.439280 0.378875 0.423773 0.330425 0.391473 diff --git a/datasets/检测仪/train/labels/订单1804457_51_7088069.txt b/datasets/检测仪/train/labels/订单1804457_51_7088069.txt new file mode 100644 index 0000000..79a4475 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804457_51_7088069.txt @@ -0,0 +1 @@ +5 0.255293 0.087860 0.234627 0.118860 0.263907 0.312660 0.293200 0.341090 0.308693 0.472870 0.294920 0.496120 0.332813 0.581400 0.355213 0.593020 0.387947 0.593020 0.563653 0.585270 0.587773 0.551680 0.594667 0.474160 0.570547 0.447030 0.567093 0.328170 0.582600 0.286820 0.577440 0.099480 0.536093 0.065890 0.510253 0.071060 0.496467 0.082690 0.317307 0.095610 0.288027 0.085270 diff --git a/datasets/检测仪/train/labels/订单1804459_51_7088172.txt b/datasets/检测仪/train/labels/订单1804459_51_7088172.txt new file mode 100644 index 0000000..67c504f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804459_51_7088172.txt @@ -0,0 +1 @@ +5 0.386345 0.560691 0.362222 0.569737 0.353611 0.680844 0.360512 0.696349 0.355336 0.757072 0.348450 0.782917 0.348450 0.837171 0.362222 0.842346 0.396681 0.843640 0.396681 0.838465 0.438026 0.837171 0.472485 0.842346 0.491433 0.843640 0.501769 0.830713 0.520716 0.777741 0.510380 0.766118 0.517266 0.701513 0.527602 0.682138 0.544825 0.581360 0.534488 0.567149 0.513816 0.563279 0.491433 0.571031 0.415629 0.563279 diff --git a/datasets/检测仪/train/labels/订单1804461_51_7088094.txt b/datasets/检测仪/train/labels/订单1804461_51_7088094.txt new file mode 100644 index 0000000..27a0d56 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804461_51_7088094.txt @@ -0,0 +1 @@ +5 0.453589 0.366175 0.413344 0.375362 0.327606 0.518404 0.327606 0.536779 0.245361 0.635204 0.201617 0.677200 0.168372 0.727067 0.168372 0.752000 0.196367 0.776938 0.220867 0.773000 0.322356 0.811058 0.324106 0.822867 0.348600 0.833367 0.390594 0.817617 0.401094 0.800558 0.457089 0.725754 0.525328 0.619454 0.586572 0.568275 0.654811 0.475100 0.653061 0.448850 0.619817 0.438354 0.609317 0.444917 0.462333 0.372737 diff --git a/datasets/检测仪/train/labels/订单1804464_51_7088099.txt b/datasets/检测仪/train/labels/订单1804464_51_7088099.txt new file mode 100644 index 0000000..1394edd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804464_51_7088099.txt @@ -0,0 +1 @@ +5 0.432817 0.382496 0.401811 0.396704 0.372522 0.536242 0.384583 0.560787 0.358744 0.677067 0.334628 0.728746 0.327733 0.799679 0.353572 0.835983 0.398361 0.842442 0.525839 0.852650 0.568906 0.859108 0.620583 0.833271 0.639533 0.744121 0.634367 0.716992 0.644706 0.602133 0.653317 0.575000 0.677433 0.421254 0.663650 0.394121 0.613694 0.395413 0.477606 0.388954 diff --git a/datasets/检测仪/train/labels/订单1804472_51_7088173.txt b/datasets/检测仪/train/labels/订单1804472_51_7088173.txt new file mode 100644 index 0000000..3161ece --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804472_51_7088173.txt @@ -0,0 +1 @@ +5 0.220872 0.354023 0.165742 0.369531 0.081328 0.569785 0.071003 0.586582 0.096836 0.630508 0.377630 0.686064 0.429310 0.679609 0.653255 0.726113 0.708385 0.754541 0.849635 0.767461 0.916823 0.745498 0.935768 0.700273 0.927161 0.692529 0.918542 0.664102 0.935768 0.661514 0.956445 0.599502 0.946107 0.599502 0.947826 0.583994 0.961615 0.555576 0.971940 0.521982 0.928880 0.479346 0.810013 0.448340 0.739388 0.457383 0.518893 0.423789 0.434479 0.386318 diff --git a/datasets/检测仪/train/labels/订单1804476_51_7088212.txt b/datasets/检测仪/train/labels/订单1804476_51_7088212.txt new file mode 100644 index 0000000..d08e11b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804476_51_7088212.txt @@ -0,0 +1 @@ +5 0.338100 0.072212 0.294356 0.097146 0.280361 0.342554 0.261111 0.502658 0.240111 0.577462 0.238367 0.662763 0.268111 0.706071 0.301356 0.710008 0.338100 0.698196 0.486833 0.706071 0.506083 0.723129 0.548078 0.727067 0.595322 0.699508 0.637317 0.595833 0.623317 0.542029 0.646061 0.358300 0.663561 0.329429 0.700306 0.124704 0.660061 0.085333 0.618067 0.087958 0.602317 0.090583 0.385344 0.078775 0.345100 0.069587 diff --git a/datasets/检测仪/train/labels/订单1804478_51_7088263.txt b/datasets/检测仪/train/labels/订单1804478_51_7088263.txt new file mode 100644 index 0000000..640a558 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804478_51_7088263.txt @@ -0,0 +1 @@ +5 0.166811 0.593025 0.158200 0.611110 0.261556 0.702840 0.359178 0.758400 0.453922 0.830750 0.496989 0.832040 0.519956 0.820415 0.692222 0.772610 0.697967 0.732560 0.634800 0.687340 0.606089 0.679585 0.511344 0.627905 0.508467 0.613695 0.410856 0.543930 diff --git a/datasets/检测仪/train/labels/订单1804479_51_7088257.txt b/datasets/检测仪/train/labels/订单1804479_51_7088257.txt new file mode 100644 index 0000000..9c20be9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804479_51_7088257.txt @@ -0,0 +1 @@ +5 0.381053 0.436690 0.348320 0.459950 0.360373 0.603360 0.375880 0.639540 0.379333 0.728680 0.370720 0.768730 0.377600 0.835920 0.412053 0.864340 0.458573 0.861760 0.598107 0.848840 0.622227 0.824290 0.622227 0.745480 0.617053 0.732560 0.606720 0.625320 0.618773 0.591730 0.622227 0.461240 0.591213 0.435400 0.561933 0.445740 0.436173 0.444440 0.403440 0.434110 diff --git a/datasets/检测仪/train/labels/订单1804482_51_7088322.txt b/datasets/检测仪/train/labels/订单1804482_51_7088322.txt new file mode 100644 index 0000000..2dda45c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804482_51_7088322.txt @@ -0,0 +1 @@ +5 0.083056 0.556866 0.046875 0.576241 0.029653 0.711901 0.052049 0.739036 0.139896 0.753247 0.181250 0.744201 0.329398 0.753247 0.346620 0.758411 0.570567 0.784253 0.599850 0.764870 0.603299 0.733863 0.592963 0.714488 0.591238 0.621467 0.606736 0.612422 0.617072 0.587873 0.579178 0.559444 0.377627 0.558160 0.341447 0.568490 0.220868 0.559444 0.172627 0.551693 diff --git a/datasets/检测仪/train/labels/订单1804483_51_7088258.txt b/datasets/检测仪/train/labels/订单1804483_51_7088258.txt new file mode 100644 index 0000000..1d571d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804483_51_7088258.txt @@ -0,0 +1 @@ +5 0.462461 0.351699 0.443203 0.364824 0.458958 0.472432 0.485208 0.572168 0.478203 0.599727 0.485208 0.641719 0.513203 0.658779 0.528945 0.656162 0.542943 0.648281 0.614687 0.643037 0.653177 0.652227 0.667174 0.633848 0.672435 0.578730 0.647930 0.553799 0.630430 0.478994 0.646185 0.447500 0.635677 0.367441 0.616432 0.349072 0.593685 0.349072 0.476458 0.353008 diff --git a/datasets/检测仪/train/labels/订单1804488_51_7088355.txt b/datasets/检测仪/train/labels/订单1804488_51_7088355.txt new file mode 100644 index 0000000..d67a81c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804488_51_7088355.txt @@ -0,0 +1 @@ +5 0.369714 0.313643 0.320716 0.338574 0.339974 0.507861 0.352214 0.528857 0.362721 0.645664 0.348724 0.696846 0.366211 0.767705 0.390716 0.797891 0.425703 0.792646 0.441458 0.782139 0.544701 0.774268 0.560443 0.779521 0.590195 0.779521 0.618190 0.758525 0.633932 0.679785 0.619935 0.648281 0.604193 0.517051 0.630430 0.471123 0.625182 0.346445 0.583190 0.314951 0.563945 0.324141 0.404714 0.322822 0.378464 0.317578 diff --git a/datasets/检测仪/train/labels/订单1804490_51_7088379.txt b/datasets/检测仪/train/labels/订单1804490_51_7088379.txt new file mode 100644 index 0000000..23e300a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804490_51_7088379.txt @@ -0,0 +1 @@ +5 0.297509 0.536176 0.276840 0.559438 0.288893 0.728685 0.302676 0.742898 0.323345 0.852716 0.313010 0.890182 0.323345 0.958659 0.361246 0.990960 0.397416 0.979334 0.512837 0.966410 0.542122 0.970285 0.567958 0.945744 0.580023 0.861765 0.566240 0.844965 0.552457 0.728685 0.561073 0.689922 0.559354 0.549100 0.526621 0.518088 0.488720 0.523261 0.485271 0.534888 0.352630 0.542638 diff --git a/datasets/检测仪/train/labels/订单1804493_51_7088410.txt b/datasets/检测仪/train/labels/订单1804493_51_7088410.txt new file mode 100644 index 0000000..4ee9aeb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804493_51_7088410.txt @@ -0,0 +1 @@ +5 0.192422 0.379844 0.157970 0.409567 0.185536 0.580104 0.204487 0.620156 0.207924 0.744187 0.202757 0.770026 0.214821 0.855303 0.249273 0.883728 0.290611 0.878555 0.304394 0.868218 0.407751 0.860467 0.424983 0.868218 0.464602 0.863054 0.488720 0.844965 0.499054 0.749360 0.485271 0.728685 0.476667 0.607240 0.492168 0.556851 0.493887 0.400519 0.449100 0.375969 0.418097 0.378555 0.414648 0.386306 0.254441 0.390182 0.225156 0.378555 diff --git a/datasets/检测仪/train/labels/订单1804498_51_7088439.txt b/datasets/检测仪/train/labels/订单1804498_51_7088439.txt new file mode 100644 index 0000000..168571f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804498_51_7088439.txt @@ -0,0 +1 @@ +5 0.341693 0.523600 0.304947 0.545910 0.313707 0.698140 0.331200 0.728320 0.329453 0.845120 0.318947 0.883180 0.336453 0.946170 0.350440 0.968480 0.381947 0.967160 0.395933 0.956670 0.500933 0.952730 0.507920 0.964540 0.532427 0.965850 0.565667 0.948790 0.579667 0.880550 0.562173 0.847740 0.556920 0.716510 0.574413 0.685010 0.579667 0.540660 0.541173 0.523600 0.523680 0.527530 0.513173 0.538030 0.373187 0.539340 0.348693 0.523600 diff --git a/datasets/检测仪/train/labels/订单1804499_51_7088442.txt b/datasets/检测仪/train/labels/订单1804499_51_7088442.txt new file mode 100644 index 0000000..52620b0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804499_51_7088442.txt @@ -0,0 +1 @@ +5 0.389687 0.379863 0.362122 0.391494 0.365573 0.537490 0.374180 0.559453 0.375911 0.652471 0.365573 0.683477 0.365573 0.751953 0.387969 0.785547 0.434479 0.782969 0.539557 0.782969 0.587799 0.788135 0.617083 0.754541 0.625690 0.693818 0.608464 0.665391 0.605026 0.556865 0.613633 0.531025 0.617083 0.409580 0.580898 0.386318 0.560234 0.390195 0.413802 0.387617 diff --git a/datasets/检测仪/train/labels/订单1804501_51_7088459.txt b/datasets/检测仪/train/labels/订单1804501_51_7088459.txt new file mode 100644 index 0000000..c0de607 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804501_51_7088459.txt @@ -0,0 +1 @@ +5 0.438481 0.421100 0.415920 0.438646 0.414045 0.453692 0.420625 0.466215 0.421563 0.585266 0.411224 0.610324 0.423438 0.646667 0.570061 0.655440 0.590738 0.644167 0.681901 0.649178 0.712917 0.657951 0.782465 0.651678 0.802205 0.620359 0.802205 0.590278 0.796562 0.586516 0.791866 0.568970 0.798437 0.565220 0.797500 0.521354 0.789983 0.518854 0.788099 0.501308 0.792804 0.486273 0.793741 0.456192 0.772127 0.434884 0.711979 0.428623 0.681901 0.437396 0.591675 0.434884 0.551259 0.422361 diff --git a/datasets/检测仪/train/labels/订单1804502_51_7088437.txt b/datasets/检测仪/train/labels/订单1804502_51_7088437.txt new file mode 100644 index 0000000..3322256 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804502_51_7088437.txt @@ -0,0 +1 @@ +5 0.127339 0.431061 0.100083 0.474922 0.103838 0.507500 0.115117 0.515020 0.112300 0.536322 0.106660 0.536322 0.101963 0.581439 0.115117 0.590208 0.112300 0.621536 0.104780 0.629056 0.103838 0.664141 0.124517 0.696725 0.164932 0.697975 0.207222 0.704245 0.233540 0.692962 0.358540 0.695469 0.401772 0.715521 0.527710 0.718027 0.553086 0.682943 0.553086 0.660384 0.551211 0.652865 0.559668 0.526296 0.569067 0.491211 0.548389 0.451113 0.383916 0.443594 0.366060 0.444844 0.247637 0.441087 0.214741 0.426048 0.140493 0.429805 diff --git a/datasets/检测仪/train/labels/订单1804503_51_7088486.txt b/datasets/检测仪/train/labels/订单1804503_51_7088486.txt new file mode 100644 index 0000000..947fc9b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804503_51_7088486.txt @@ -0,0 +1 @@ +5 0.626907 0.309680 0.602413 0.321500 0.574413 0.461920 0.581413 0.482910 0.569173 0.573460 0.553427 0.608900 0.544667 0.670580 0.565667 0.707320 0.600667 0.712570 0.614667 0.706010 0.724893 0.720450 0.737147 0.727010 0.777387 0.732260 0.808893 0.708630 0.831640 0.640390 0.808893 0.603650 0.819387 0.493410 0.835133 0.461920 0.856133 0.349050 0.824640 0.326740 0.798387 0.325430 0.626907 0.313620 diff --git a/datasets/检测仪/train/labels/订单1804505_51_7088542.txt b/datasets/检测仪/train/labels/订单1804505_51_7088542.txt new file mode 100644 index 0000000..f65bb3f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804505_51_7088542.txt @@ -0,0 +1 @@ +5 0.156683 0.488692 0.141644 0.507487 0.148328 0.538817 0.165039 0.541321 0.171722 0.556358 0.163367 0.558867 0.176733 0.593954 0.188428 0.590196 0.196783 0.607737 0.196783 0.639067 0.231872 0.655358 0.332122 0.646583 0.347161 0.634054 0.494194 0.600221 0.572722 0.601471 0.736467 0.565133 0.761528 0.533804 0.749833 0.509992 0.734794 0.506233 0.701378 0.399717 0.706389 0.389692 0.698039 0.367138 0.661278 0.349592 0.447411 0.408492 0.432372 0.422275 0.283667 0.453604 0.241894 0.453604 diff --git a/datasets/检测仪/train/labels/订单1804511_51_7088582.txt b/datasets/检测仪/train/labels/订单1804511_51_7088582.txt new file mode 100644 index 0000000..4657ff8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804511_51_7088582.txt @@ -0,0 +1 @@ +5 0.276456 0.333279 0.250050 0.361237 0.273350 0.548804 0.285772 0.576762 0.304417 0.731708 0.295094 0.793454 0.316844 0.894808 0.363444 0.923933 0.413150 0.911117 0.425578 0.905292 0.444217 0.899467 0.441111 0.907625 0.524989 0.909954 0.526544 0.898304 0.563822 0.888983 0.577800 0.898304 0.636828 0.895975 0.658578 0.858692 0.666344 0.764329 0.638383 0.714233 0.611978 0.562783 0.622850 0.510358 0.596444 0.330946 0.565378 0.306483 0.526544 0.315804 0.324611 0.334442 diff --git a/datasets/检测仪/train/labels/订单1804514_51_7088639.txt b/datasets/检测仪/train/labels/订单1804514_51_7088639.txt new file mode 100644 index 0000000..44739b6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804514_51_7088639.txt @@ -0,0 +1 @@ +5 0.203529 0.346035 0.175573 0.374004 0.192656 0.587197 0.217513 0.619814 0.225273 0.770098 0.209753 0.821357 0.229935 0.905244 0.265664 0.935527 0.313815 0.935527 0.324688 0.925049 0.455169 0.914561 0.470703 0.920391 0.504883 0.920391 0.526628 0.919219 0.551484 0.885439 0.563906 0.795732 0.549922 0.752627 0.539049 0.604668 0.549922 0.554580 0.553034 0.364678 0.514206 0.336719 0.461380 0.344873 0.262565 0.351865 0.245469 0.340215 diff --git a/datasets/检测仪/train/labels/订单1804518_51_7088626.txt b/datasets/检测仪/train/labels/订单1804518_51_7088626.txt new file mode 100644 index 0000000..758d67e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804518_51_7088626.txt @@ -0,0 +1 @@ +5 0.487513 0.354609 0.459115 0.375918 0.462448 0.449844 0.472474 0.533809 0.477487 0.647842 0.469141 0.681680 0.475820 0.748096 0.499219 0.776914 0.537643 0.783184 0.546003 0.774414 0.652930 0.771904 0.657943 0.779424 0.723112 0.779424 0.728112 0.750596 0.738138 0.681680 0.724779 0.649092 0.714753 0.542578 0.729792 0.513760 0.728112 0.369648 0.701380 0.350850 0.662956 0.352100 0.666302 0.360879 0.510911 0.357119 diff --git a/datasets/检测仪/train/labels/订单1804524_51_7088703.txt b/datasets/检测仪/train/labels/订单1804524_51_7088703.txt new file mode 100644 index 0000000..0c89b1b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804524_51_7088703.txt @@ -0,0 +1 @@ +5 0.191140 0.416064 0.156155 0.446250 0.191140 0.641787 0.217398 0.679846 0.229635 0.822884 0.227895 0.879320 0.240146 0.930493 0.269883 0.958059 0.317135 0.956743 0.318874 0.938377 0.451857 0.925252 0.478114 0.942314 0.492105 0.939682 0.525351 0.912127 0.546345 0.843882 0.518348 0.792708 0.506111 0.661469 0.532354 0.611601 0.525351 0.431809 0.478114 0.405559 0.443114 0.405559 0.436111 0.417379 0.248889 0.425252 0.236637 0.417379 0.203392 0.414748 diff --git a/datasets/检测仪/train/labels/订单1804530_51_7088813.txt b/datasets/检测仪/train/labels/订单1804530_51_7088813.txt new file mode 100644 index 0000000..57f52b6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804530_51_7088813.txt @@ -0,0 +1 @@ +5 0.388013 0.219333 0.357948 0.240637 0.367974 0.399784 0.388013 0.437382 0.388013 0.563951 0.372980 0.609059 0.393033 0.689265 0.428118 0.725598 0.488275 0.716833 0.628627 0.711814 0.680418 0.721843 0.723856 0.680490 0.725529 0.595275 0.698797 0.550167 0.680418 0.417333 0.687098 0.383500 0.677072 0.230618 0.633634 0.209314 0.600222 0.214324 0.431464 0.219333 diff --git a/datasets/检测仪/train/labels/订单1804531_51_7088738.txt b/datasets/检测仪/train/labels/订单1804531_51_7088738.txt new file mode 100644 index 0000000..cbfe8f1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804531_51_7088738.txt @@ -0,0 +1 @@ +5 0.430700 0.349592 0.397283 0.350846 0.297033 0.454854 0.295361 0.476158 0.220178 0.550096 0.180072 0.568892 0.138306 0.626533 0.138306 0.646583 0.281994 0.721775 0.307061 0.713000 0.363867 0.669142 0.373894 0.640321 0.447411 0.568892 0.482500 0.561371 0.579406 0.459867 0.574394 0.433554 0.559356 0.424779 0.544317 0.429792 0.449083 0.370896 diff --git a/datasets/检测仪/train/labels/订单1804535_51_7088774.txt b/datasets/检测仪/train/labels/订单1804535_51_7088774.txt new file mode 100644 index 0000000..85b13a1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804535_51_7088774.txt @@ -0,0 +1 @@ +5 0.337133 0.517513 0.313744 0.537563 0.315411 0.671646 0.332122 0.696708 0.333794 0.793200 0.325439 0.830796 0.342144 0.893454 0.360528 0.918517 0.383917 0.917262 0.403967 0.907237 0.489183 0.903479 0.527611 0.909742 0.551000 0.882175 0.562700 0.817012 0.552672 0.789442 0.544317 0.694204 0.554344 0.662875 0.549333 0.528792 0.532622 0.508742 0.505889 0.512500 0.502550 0.518767 0.375561 0.523779 0.360528 0.516258 diff --git a/datasets/检测仪/train/labels/订单1804550_51_7088974.txt b/datasets/检测仪/train/labels/订单1804550_51_7088974.txt new file mode 100644 index 0000000..59ef39e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804550_51_7088974.txt @@ -0,0 +1 @@ +5 0.312083 0.418516 0.276992 0.443584 0.273646 0.607744 0.290352 0.635312 0.282005 0.748096 0.268633 0.776914 0.282005 0.849600 0.298711 0.863379 0.335469 0.868398 0.353854 0.864639 0.452435 0.862129 0.457448 0.865889 0.504232 0.872158 0.520937 0.850850 0.537643 0.780674 0.530964 0.765635 0.537643 0.642832 0.556016 0.617764 0.577747 0.458623 0.554349 0.427295 0.525951 0.428545 0.515924 0.436064 0.367214 0.433555 0.338815 0.416016 diff --git a/datasets/检测仪/train/labels/订单1804551_51_7089002.txt b/datasets/检测仪/train/labels/订单1804551_51_7089002.txt new file mode 100644 index 0000000..2b85ed6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804551_51_7089002.txt @@ -0,0 +1 @@ +5 0.448464 0.355635 0.418711 0.374004 0.420456 0.522305 0.443203 0.543301 0.437956 0.661406 0.432708 0.692900 0.439714 0.757207 0.464206 0.784766 0.493945 0.786084 0.506198 0.775586 0.597187 0.771641 0.619935 0.779521 0.642682 0.778203 0.672435 0.758525 0.682930 0.694219 0.672435 0.657471 0.661927 0.548545 0.675924 0.515742 0.677682 0.383193 0.658424 0.362197 0.630430 0.360879 0.625182 0.368760 0.476458 0.360879 0.458958 0.358262 diff --git a/datasets/检测仪/train/labels/订单1804555_51_7089012.txt b/datasets/检测仪/train/labels/订单1804555_51_7089012.txt new file mode 100644 index 0000000..e238032 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804555_51_7089012.txt @@ -0,0 +1 @@ +5 0.311509 0.332012 0.286904 0.349076 0.246553 0.530176 0.249502 0.568236 0.213086 0.709967 0.191431 0.748027 0.179619 0.820202 0.185527 0.853014 0.207183 0.866133 0.217021 0.862201 0.285923 0.888444 0.288872 0.902884 0.305605 0.913379 0.345962 0.897630 0.381392 0.765085 0.411904 0.629915 0.444385 0.548548 0.475879 0.425189 0.461118 0.385820 0.435527 0.384505 0.429619 0.388444 0.340054 0.356947 0.317417 0.326764 diff --git a/datasets/检测仪/train/labels/订单1804557_51_7089166.txt b/datasets/检测仪/train/labels/订单1804557_51_7089166.txt new file mode 100644 index 0000000..b29ec1c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804557_51_7089166.txt @@ -0,0 +1 @@ +5 0.221798 0.491294 0.211784 0.503827 0.226813 0.642917 0.243523 0.666732 0.258567 0.761963 0.253553 0.786908 0.266915 0.842171 0.285292 0.862215 0.318713 0.859715 0.325395 0.857083 0.410614 0.852072 0.460731 0.857083 0.464079 0.835899 0.469094 0.779507 0.460731 0.748180 0.447368 0.651689 0.454050 0.615230 0.444020 0.487401 0.423977 0.472489 0.395570 0.476250 0.380541 0.487401 0.261901 0.491294 diff --git a/datasets/检测仪/train/labels/订单1804560_51_7089070.txt b/datasets/检测仪/train/labels/订单1804560_51_7089070.txt new file mode 100644 index 0000000..c18ce47 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804560_51_7089070.txt @@ -0,0 +1 @@ +5 0.423086 0.374571 0.414004 0.391685 0.410757 0.411652 0.417896 0.579914 0.424385 0.605579 0.428281 0.729635 0.425684 0.773841 0.431523 0.862253 0.443853 0.890773 0.457480 0.893627 0.465269 0.876513 0.508745 0.875086 0.525620 0.885075 0.542490 0.836588 0.545737 0.753884 0.531460 0.716803 0.523672 0.578487 0.532109 0.545687 0.524971 0.391685 0.513936 0.373144 0.504854 0.375998 0.502905 0.378852 0.431523 0.380279 0.425684 0.375998 diff --git a/datasets/检测仪/train/labels/订单1804561_51_7089220.txt b/datasets/检测仪/train/labels/订单1804561_51_7089220.txt new file mode 100644 index 0000000..fb431ea --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804561_51_7089220.txt @@ -0,0 +1 @@ +5 0.324219 0.311016 0.290977 0.335947 0.317227 0.505244 0.334727 0.523613 0.332969 0.652227 0.322474 0.696846 0.339974 0.761143 0.364466 0.778203 0.395964 0.780830 0.413464 0.766396 0.527201 0.763770 0.539440 0.774268 0.560443 0.775586 0.590195 0.753271 0.612930 0.681094 0.590195 0.648281 0.579688 0.522305 0.595443 0.454062 0.597187 0.335947 0.574440 0.308389 0.541198 0.309697 0.530690 0.320205 0.353971 0.317578 0.334727 0.308389 diff --git a/datasets/检测仪/train/labels/订单1804562_51_7089072.txt b/datasets/检测仪/train/labels/订单1804562_51_7089072.txt new file mode 100644 index 0000000..e4cfe5a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804562_51_7089072.txt @@ -0,0 +1 @@ +5 0.492218 0.296585 0.464213 0.317589 0.495709 0.468504 0.513215 0.497372 0.535787 0.601053 0.530538 0.637795 0.558701 0.708661 0.577782 0.723100 0.621693 0.724409 0.640774 0.707352 0.744186 0.700787 0.740512 0.711289 0.777257 0.707352 0.801929 0.674537 0.800171 0.606299 0.768675 0.580049 0.745761 0.465876 0.754685 0.446191 0.737178 0.295276 0.700433 0.279528 0.682769 0.287402 0.535787 0.300522 0.504291 0.297904 diff --git a/datasets/检测仪/train/labels/订单1804563_51_7089110.txt b/datasets/检测仪/train/labels/订单1804563_51_7089110.txt new file mode 100644 index 0000000..703164a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804563_51_7089110.txt @@ -0,0 +1 @@ +5 0.233553 0.441076 0.201806 0.461128 0.218519 0.636571 0.246921 0.666641 0.248588 0.803238 0.240231 0.852109 0.258611 0.931050 0.285347 0.961128 0.338819 0.957370 0.355521 0.943585 0.477500 0.929800 0.487523 0.933559 0.522604 0.936068 0.547674 0.904740 0.552685 0.822031 0.545995 0.789453 0.512581 0.642830 0.522604 0.598976 0.502558 0.444835 0.477500 0.418524 0.444074 0.424792 0.442407 0.431050 0.280336 0.439826 diff --git a/datasets/检测仪/train/labels/订单1804569_51_7089151.txt b/datasets/检测仪/train/labels/订单1804569_51_7089151.txt new file mode 100644 index 0000000..7aff59b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804569_51_7089151.txt @@ -0,0 +1 @@ +5 0.024689 0.535054 0.054761 0.521271 0.148328 0.506233 0.201794 0.511246 0.345489 0.508742 0.388928 0.499967 0.582750 0.487437 0.604467 0.503729 0.607811 0.525029 0.601128 0.535054 0.602800 0.642825 0.616167 0.647837 0.619506 0.667888 0.591100 0.689192 0.581078 0.696708 0.368878 0.696708 0.345489 0.689192 0.205139 0.695458 0.153339 0.707987 0.066456 0.699217 0.029700 0.675408 0.034711 0.656608 0.046406 0.650346 0.046406 0.620271 0.038056 0.620271 0.031372 0.593954 0.038056 0.588942 0.041394 0.572650 0.034711 0.568892 diff --git a/datasets/检测仪/train/labels/订单1804575_51_7089147.txt b/datasets/检测仪/train/labels/订单1804575_51_7089147.txt new file mode 100644 index 0000000..703d281 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804575_51_7089147.txt @@ -0,0 +1 @@ +5 0.488698 0.414687 0.457201 0.433066 0.423958 0.587920 0.434453 0.631221 0.401211 0.772959 0.373216 0.824141 0.364466 0.902881 0.420456 0.927813 0.434453 0.921250 0.576185 0.938311 0.588438 0.951436 0.619935 0.957998 0.647930 0.938311 0.677682 0.855635 0.668932 0.814951 0.696927 0.667969 0.724922 0.637783 0.749414 0.463242 0.742422 0.437002 0.705677 0.435684 0.695182 0.444873 0.525443 0.429121 0.500951 0.414687 diff --git a/datasets/检测仪/train/labels/订单1804579_51_7089175.txt b/datasets/检测仪/train/labels/订单1804579_51_7089175.txt new file mode 100644 index 0000000..bee5cc2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804579_51_7089175.txt @@ -0,0 +1 @@ +5 0.255977 0.410752 0.233229 0.434375 0.255977 0.601045 0.275234 0.640410 0.282227 0.774268 0.271732 0.820205 0.294479 0.896318 0.322474 0.919941 0.357474 0.921250 0.376719 0.902881 0.500951 0.881885 0.535951 0.891064 0.562187 0.864824 0.570937 0.784766 0.548190 0.751963 0.535951 0.616787 0.549948 0.585293 0.541198 0.427812 0.500951 0.409443 0.481706 0.409443 0.472956 0.418623 0.304974 0.418623 0.268229 0.410752 diff --git a/datasets/检测仪/train/labels/订单1804580_51_7089188.txt b/datasets/检测仪/train/labels/订单1804580_51_7089188.txt new file mode 100644 index 0000000..b520358 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804580_51_7089188.txt @@ -0,0 +1 @@ +5 0.145742 0.695527 0.149245 0.720459 0.285729 0.797891 0.374961 0.860879 0.399466 0.885820 0.464206 0.919941 0.483451 0.917314 0.497448 0.896318 0.546445 0.833320 0.569193 0.825449 0.569193 0.796582 0.525443 0.762461 0.499206 0.751963 0.406458 0.695527 0.395964 0.671904 0.287474 0.601045 0.268229 0.604980 0.248984 0.616787 0.157995 0.690283 diff --git a/datasets/检测仪/train/labels/订单1804581_51_7089274.txt b/datasets/检测仪/train/labels/订单1804581_51_7089274.txt new file mode 100644 index 0000000..88df0ac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804581_51_7089274.txt @@ -0,0 +1 @@ +5 0.310200 0.334620 0.282200 0.350370 0.285707 0.481600 0.301453 0.502600 0.290947 0.611520 0.278707 0.656140 0.285707 0.715200 0.296200 0.732260 0.346947 0.736190 0.357440 0.728320 0.460680 0.725700 0.464187 0.733570 0.486933 0.734880 0.523680 0.712570 0.520173 0.692890 0.528920 0.636460 0.509680 0.612830 0.511427 0.501290 0.528920 0.484230 0.532427 0.354300 0.506173 0.335930 0.483427 0.338560 0.327693 0.341180 diff --git a/datasets/检测仪/train/labels/订单1804582_51_7089239.txt b/datasets/检测仪/train/labels/订单1804582_51_7089239.txt new file mode 100644 index 0000000..1ede33b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804582_51_7089239.txt @@ -0,0 +1 @@ +5 0.350469 0.270332 0.315469 0.305762 0.401211 0.541982 0.413464 0.547236 0.444961 0.700781 0.441458 0.759834 0.478203 0.841201 0.514948 0.867441 0.560443 0.868760 0.570937 0.853008 0.719674 0.833320 0.726667 0.838574 0.765169 0.833320 0.794909 0.803145 0.801914 0.716523 0.773919 0.673223 0.726667 0.498682 0.744167 0.446182 0.707422 0.254580 0.660182 0.227021 0.623437 0.234902 0.621680 0.242773 0.395964 0.283457 0.399466 0.266396 0.367969 0.265078 diff --git a/datasets/检测仪/train/labels/订单1804587_51_7089255.txt b/datasets/检测仪/train/labels/订单1804587_51_7089255.txt new file mode 100644 index 0000000..db2d984 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804587_51_7089255.txt @@ -0,0 +1 @@ +5 0.353971 0.313643 0.324219 0.339883 0.318971 0.476367 0.331224 0.544609 0.324219 0.681094 0.304974 0.734902 0.311979 0.796582 0.332969 0.821514 0.371471 0.830703 0.385469 0.816260 0.521953 0.820205 0.520195 0.833320 0.556940 0.833320 0.583190 0.812324 0.609440 0.744082 0.588438 0.711279 0.600690 0.559043 0.628685 0.513115 0.647930 0.350381 0.623437 0.322822 0.590195 0.324141 0.579688 0.332012 0.390716 0.325449 0.390716 0.318887 0.371471 0.313643 diff --git a/datasets/检测仪/train/labels/订单1804591_51_7089286.txt b/datasets/检测仪/train/labels/订单1804591_51_7089286.txt new file mode 100644 index 0000000..67775f2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804591_51_7089286.txt @@ -0,0 +1 @@ +5 0.318108 0.515744 0.465087 0.488183 0.472088 0.476375 0.500081 0.471125 0.529827 0.484247 0.533333 0.517059 0.563080 0.629913 0.559573 0.665355 0.594567 0.784775 0.608570 0.801834 0.613818 0.859576 0.601569 0.880571 0.556078 0.880571 0.456344 0.897630 0.449343 0.905510 0.424844 0.913382 0.393345 0.883201 0.370600 0.841202 0.379343 0.814957 0.339100 0.732284 0.344348 0.711280 0.314602 0.688971 0.272607 0.539369 0.281361 0.528867 0.318108 0.513123 diff --git a/datasets/检测仪/train/labels/订单1804592_51_7089399.txt b/datasets/检测仪/train/labels/订单1804592_51_7089399.txt new file mode 100644 index 0000000..8e68c30 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804592_51_7089399.txt @@ -0,0 +1 @@ +5 0.192454 0.254639 0.216075 0.225767 0.430642 0.258572 0.448358 0.267761 0.566471 0.279572 0.612729 0.267761 0.683596 0.284822 0.710171 0.318939 0.703279 0.363561 0.695408 0.375372 0.679658 0.496106 0.689500 0.503978 0.688517 0.536789 0.663913 0.555161 0.594029 0.564350 0.544817 0.544661 0.422771 0.534167 0.405054 0.540728 0.235763 0.536789 0.212138 0.505294 0.211154 0.480361 0.192454 0.265133 diff --git a/datasets/检测仪/train/labels/订单1804594_51_7089457.txt b/datasets/检测仪/train/labels/订单1804594_51_7089457.txt new file mode 100644 index 0000000..c596ea8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804594_51_7089457.txt @@ -0,0 +1 @@ +5 0.521953 0.326758 0.502695 0.333320 0.527201 0.433066 0.548190 0.443564 0.558698 0.530176 0.553438 0.549863 0.572695 0.606289 0.604193 0.620723 0.630430 0.608916 0.710924 0.599727 0.737174 0.603662 0.756419 0.576104 0.749414 0.523613 0.721419 0.493428 0.705677 0.427812 0.712669 0.409443 0.691680 0.324141 0.670677 0.308389 0.541198 0.325449 diff --git a/datasets/检测仪/train/labels/订单1804597_51_7089311.txt b/datasets/检测仪/train/labels/订单1804597_51_7089311.txt new file mode 100644 index 0000000..b96a172 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804597_51_7089311.txt @@ -0,0 +1 @@ +5 0.273477 0.385820 0.250729 0.405498 0.280482 0.566924 0.299727 0.589229 0.299727 0.620723 0.318971 0.725713 0.313724 0.759834 0.327721 0.824141 0.353971 0.839883 0.381966 0.837266 0.394219 0.825449 0.506198 0.811016 0.513203 0.817578 0.537695 0.818887 0.562187 0.796582 0.577943 0.729648 0.555195 0.700781 0.537695 0.570859 0.549948 0.541982 0.542943 0.395000 0.509701 0.371387 0.485208 0.375322 0.474701 0.384502 0.324219 0.393691 0.311979 0.391064 0.280482 0.385820 diff --git a/datasets/检测仪/train/labels/订单1804599_51_7089418.txt b/datasets/检测仪/train/labels/订单1804599_51_7089418.txt new file mode 100644 index 0000000..a20f7de --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804599_51_7089418.txt @@ -0,0 +1 @@ +5 0.224522 0.636470 0.157456 0.657465 0.172033 0.667965 0.192444 0.679775 0.195367 0.763765 0.180778 0.778200 0.174944 0.788700 0.218689 0.803135 0.510322 0.782140 0.542400 0.776890 0.729044 0.770330 0.790289 0.774265 0.901111 0.757205 0.906944 0.730960 0.895278 0.724395 0.860278 0.666655 0.866111 0.658780 0.866111 0.644345 0.752378 0.629910 0.696967 0.639095 0.536567 0.641720 0.242022 0.633845 diff --git a/datasets/检测仪/train/labels/订单1804602_51_7089445.txt b/datasets/检测仪/train/labels/订单1804602_51_7089445.txt new file mode 100644 index 0000000..e873132 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804602_51_7089445.txt @@ -0,0 +1 @@ +5 0.218374 0.425190 0.188616 0.440943 0.193875 0.595796 0.214867 0.623356 0.214867 0.728339 0.197370 0.793962 0.228870 0.824144 0.251615 0.824144 0.267359 0.814957 0.361845 0.811021 0.379343 0.818893 0.395098 0.818893 0.421338 0.797898 0.440588 0.732284 0.428339 0.721782 0.431845 0.625978 0.458085 0.602362 0.475582 0.471125 0.452837 0.434377 0.421338 0.434377 0.416090 0.443564 0.256863 0.443564 0.260358 0.431756 0.230611 0.422569 diff --git a/datasets/检测仪/train/labels/订单1804603_51_7089476.txt b/datasets/检测仪/train/labels/订单1804603_51_7089476.txt new file mode 100644 index 0000000..95c7b3a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804603_51_7089476.txt @@ -0,0 +1 @@ +5 0.389712 0.458039 0.354719 0.473784 0.328471 0.619451 0.347725 0.664069 0.317974 0.788745 0.293477 0.833363 0.293477 0.910794 0.316222 0.940980 0.344222 0.938353 0.366967 0.926539 0.478954 0.927853 0.485961 0.938353 0.519203 0.940980 0.559451 0.902922 0.573451 0.843863 0.555948 0.814990 0.571699 0.681137 0.594444 0.653578 0.629438 0.502657 0.599686 0.488216 0.566444 0.490843 0.422967 0.475098 0.400222 0.463284 diff --git a/datasets/检测仪/train/labels/订单1804605_51_7089436.txt b/datasets/检测仪/train/labels/订单1804605_51_7089436.txt new file mode 100644 index 0000000..bc43048 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804605_51_7089436.txt @@ -0,0 +1 @@ +5 0.149152 0.674594 0.124649 0.685088 0.122909 0.703465 0.129898 0.710022 0.128158 0.769079 0.122909 0.783520 0.119401 0.797950 0.138655 0.818947 0.220892 0.825515 0.362632 0.826820 0.381871 0.839945 0.562105 0.863575 0.584854 0.846513 0.581345 0.818947 0.584854 0.721842 0.602339 0.700844 0.576096 0.681151 0.427368 0.677215 0.378377 0.689024 0.231389 0.674594 0.163143 0.671974 diff --git a/datasets/检测仪/train/labels/订单1804606_51_7089503.txt b/datasets/检测仪/train/labels/订单1804606_51_7089503.txt new file mode 100644 index 0000000..9276a76 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804606_51_7089503.txt @@ -0,0 +1 @@ +5 0.408216 0.342510 0.378464 0.360879 0.369714 0.565605 0.385469 0.604980 0.383711 0.793955 0.362721 0.854326 0.371471 0.965869 0.395964 0.998682 0.453711 0.997363 0.462461 0.982930 0.656680 0.988184 0.717917 0.998682 0.761667 0.977686 0.779167 0.877939 0.756419 0.812324 0.744167 0.616787 0.761667 0.526240 0.759922 0.362197 0.721419 0.330703 0.693424 0.337266 0.458958 0.343818 0.420456 0.338574 diff --git a/datasets/检测仪/train/labels/订单1804609_51_7089521.txt b/datasets/检测仪/train/labels/订单1804609_51_7089521.txt new file mode 100644 index 0000000..082185a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804609_51_7089521.txt @@ -0,0 +1 @@ +5 0.394219 0.484238 0.357474 0.499990 0.357474 0.523613 0.322474 0.660098 0.331224 0.704717 0.301471 0.832012 0.273477 0.871387 0.268229 0.940937 0.280482 0.965869 0.317227 0.973740 0.327721 0.963242 0.453711 0.984238 0.481706 0.999990 0.520195 0.984238 0.553438 0.914687 0.542943 0.872695 0.572695 0.742773 0.609440 0.674531 0.653177 0.551172 0.621680 0.519678 0.595443 0.515742 0.591940 0.522305 0.432708 0.499990 0.429206 0.492119 0.404714 0.482930 diff --git a/datasets/检测仪/train/labels/订单1804614_51_7089550.txt b/datasets/检测仪/train/labels/订单1804614_51_7089550.txt new file mode 100644 index 0000000..bc09e8c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804614_51_7089550.txt @@ -0,0 +1 @@ +5 0.357350 0.398983 0.331100 0.419979 0.332850 0.574838 0.345100 0.599771 0.346850 0.733629 0.332850 0.778250 0.341600 0.843867 0.366100 0.872738 0.399344 0.874050 0.409844 0.862237 0.541078 0.860925 0.548078 0.872738 0.581322 0.874050 0.602317 0.854362 0.618067 0.780871 0.598817 0.752000 0.595322 0.606333 0.607567 0.542029 0.612817 0.417354 0.581322 0.395046 0.548078 0.402921 0.392344 0.410796 0.395844 0.400296 0.367850 0.397671 diff --git a/datasets/检测仪/train/labels/订单1804615_51_7089639.txt b/datasets/检测仪/train/labels/订单1804615_51_7089639.txt new file mode 100644 index 0000000..30c0c65 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804615_51_7089639.txt @@ -0,0 +1 @@ +5 0.224479 0.442246 0.201732 0.459307 0.220990 0.585293 0.234987 0.603662 0.238477 0.702090 0.229740 0.729648 0.238477 0.782139 0.259479 0.797891 0.282227 0.796582 0.292721 0.786084 0.385469 0.779521 0.388958 0.786084 0.409961 0.788701 0.437956 0.766396 0.451953 0.713906 0.430964 0.691592 0.409961 0.594482 0.432708 0.577422 0.432708 0.447500 0.406458 0.426504 0.388958 0.433066 0.380221 0.439619 0.257734 0.444873 0.238477 0.440937 diff --git a/datasets/检测仪/train/labels/订单1804618_51_7089565.txt b/datasets/检测仪/train/labels/订单1804618_51_7089565.txt new file mode 100644 index 0000000..2e3fef4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804618_51_7089565.txt @@ -0,0 +1 @@ +5 0.522510 0.397674 0.500366 0.438359 0.512178 0.468542 0.518081 0.627335 0.515127 0.643082 0.517344 0.660139 0.532847 0.694262 0.541704 0.689010 0.656123 0.679826 0.674575 0.660139 0.823691 0.673264 0.871675 0.650955 0.887915 0.629957 0.892344 0.584028 0.882007 0.566962 0.876841 0.443602 0.881270 0.437040 0.885698 0.402925 0.866509 0.372743 0.797856 0.370113 0.774971 0.384549 0.672363 0.404236 0.656860 0.392422 0.530630 0.397674 diff --git a/datasets/检测仪/train/labels/订单1804619_51_7089625.txt b/datasets/检测仪/train/labels/订单1804619_51_7089625.txt new file mode 100644 index 0000000..25c5a88 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804619_51_7089625.txt @@ -0,0 +1 @@ +5 0.668932 0.358262 0.623437 0.376631 0.576185 0.547236 0.586693 0.573486 0.544701 0.698154 0.516693 0.744082 0.499206 0.818887 0.518451 0.855635 0.555195 0.868760 0.570937 0.859570 0.716172 0.891064 0.719674 0.897627 0.759922 0.918623 0.807161 0.893691 0.840404 0.808389 0.829909 0.755898 0.866654 0.610225 0.892904 0.568232 0.931393 0.430439 0.901654 0.409443 0.878906 0.408125 0.703919 0.384502 0.681172 0.359570 diff --git a/datasets/检测仪/train/labels/订单1804621_51_7089599.txt b/datasets/检测仪/train/labels/订单1804621_51_7089599.txt new file mode 100644 index 0000000..e273692 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804621_51_7089599.txt @@ -0,0 +1 @@ +5 0.279513 0.392394 0.235188 0.419957 0.279513 0.603683 0.314504 0.649615 0.340171 0.792659 0.328504 0.812341 0.377496 0.905519 0.433496 0.916019 0.452154 0.906832 0.627137 0.887149 0.671462 0.891082 0.704128 0.863524 0.732120 0.801846 0.704128 0.769038 0.690128 0.629928 0.718120 0.578750 0.722786 0.404207 0.669128 0.376649 0.634137 0.380587 0.620137 0.392394 0.347171 0.404207 0.347171 0.395019 0.300513 0.391082 diff --git a/datasets/检测仪/train/labels/订单1804624_51_7089678.txt b/datasets/检测仪/train/labels/订单1804624_51_7089678.txt new file mode 100644 index 0000000..e0e64f1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804624_51_7089678.txt @@ -0,0 +1 @@ +5 0.517245 0.271680 0.484765 0.267740 0.354840 0.408160 0.341065 0.442280 0.242640 0.542020 0.210155 0.563020 0.149135 0.631260 0.142245 0.678507 0.166850 0.710000 0.181615 0.710000 0.233780 0.796613 0.241655 0.814987 0.261340 0.854353 0.295785 0.847793 0.356810 0.775613 0.376495 0.737560 0.470000 0.618133 0.493620 0.615513 0.605825 0.488213 0.612715 0.450160 0.597950 0.433100 0.522165 0.297927 0.523150 0.279553 diff --git a/datasets/检测仪/train/labels/订单1804626_51_7089677.txt b/datasets/检测仪/train/labels/订单1804626_51_7089677.txt new file mode 100644 index 0000000..93c6fd5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804626_51_7089677.txt @@ -0,0 +1 @@ +5 0.577943 0.246709 0.565690 0.267705 0.663685 0.418623 0.712669 0.523613 0.723177 0.559043 0.759922 0.619414 0.793164 0.629912 0.821159 0.618105 0.936641 0.583984 0.957643 0.586602 0.990885 0.555107 0.971641 0.488184 0.941901 0.472432 0.877148 0.354326 0.880651 0.322822 0.817656 0.202090 0.784414 0.190283 0.763411 0.194219 0.614687 0.246709 0.591940 0.244082 diff --git a/datasets/检测仪/train/labels/订单1804627_51_7089664.txt b/datasets/检测仪/train/labels/订单1804627_51_7089664.txt new file mode 100644 index 0000000..42d4fdd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804627_51_7089664.txt @@ -0,0 +1 @@ +5 0.208114 0.460625 0.168252 0.480312 0.208114 0.619419 0.230890 0.627290 0.256515 0.737529 0.250816 0.772959 0.270752 0.833330 0.307765 0.849077 0.364703 0.853013 0.376091 0.839893 0.544068 0.821519 0.549767 0.829390 0.581081 0.832017 0.620943 0.811021 0.626642 0.737529 0.555456 0.614170 0.575392 0.581362 0.558305 0.468501 0.515604 0.448813 0.478591 0.452749 0.262203 0.468501 diff --git a/datasets/检测仪/train/labels/订单1804628_51_7089702.txt b/datasets/检测仪/train/labels/订单1804628_51_7089702.txt new file mode 100644 index 0000000..213f140 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804628_51_7089702.txt @@ -0,0 +1 @@ +5 0.380410 0.433066 0.355801 0.460625 0.361709 0.484245 0.366631 0.494746 0.366631 0.644349 0.362690 0.660098 0.365645 0.681094 0.387300 0.715215 0.398125 0.699466 0.542813 0.700781 0.557573 0.683724 0.685527 0.688971 0.709150 0.694219 0.724897 0.688971 0.774111 0.678470 0.790840 0.662721 0.794780 0.624668 0.783950 0.608919 0.784937 0.511803 0.788872 0.497370 0.790840 0.469811 0.773125 0.448815 0.709150 0.436999 0.677651 0.447500 0.549702 0.452747 0.536904 0.442253 0.386313 0.431751 diff --git a/datasets/检测仪/train/labels/订单1804630_51_7089728.txt b/datasets/检测仪/train/labels/订单1804630_51_7089728.txt new file mode 100644 index 0000000..7fdf812 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804630_51_7089728.txt @@ -0,0 +1 @@ +5 0.492201 0.207344 0.451953 0.227021 0.408216 0.405498 0.411706 0.501299 0.367969 0.687656 0.315469 0.770332 0.308477 0.867441 0.336471 0.898945 0.352214 0.919941 0.411706 0.929121 0.443203 0.914687 0.628685 0.925186 0.653177 0.944873 0.689922 0.951436 0.724922 0.922559 0.763411 0.804453 0.752917 0.745400 0.770417 0.549863 0.805417 0.286084 0.782669 0.280830 0.507943 0.212588 diff --git a/datasets/检测仪/train/labels/订单1804633_51_7089761.txt b/datasets/检测仪/train/labels/订单1804633_51_7089761.txt new file mode 100644 index 0000000..45649f4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804633_51_7089761.txt @@ -0,0 +1 @@ +5 0.182593 0.212621 0.147162 0.263797 0.179642 0.555137 0.205230 0.633876 0.200309 0.670627 0.226887 0.965902 0.247554 0.990837 0.273147 0.989523 0.286926 0.969837 0.397162 0.958026 0.417828 0.973771 0.450309 0.942281 0.462123 0.853039 0.458186 0.807105 0.458186 0.612882 0.482789 0.501333 0.492632 0.278235 0.463108 0.224431 0.422750 0.229680 0.417828 0.244118 0.228853 0.237556 0.222946 0.221804 0.186529 0.211307 diff --git a/datasets/检测仪/train/labels/订单1804634_51_7089741.txt b/datasets/检测仪/train/labels/订单1804634_51_7089741.txt new file mode 100644 index 0000000..9dd828d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804634_51_7089741.txt @@ -0,0 +1 @@ +5 0.306609 0.473793 0.283866 0.489540 0.301366 0.606337 0.313611 0.619462 0.317106 0.699514 0.306609 0.732318 0.318854 0.775625 0.338102 0.792691 0.355602 0.790061 0.430845 0.780877 0.462338 0.792691 0.497338 0.759878 0.495590 0.711319 0.483333 0.699514 0.479838 0.615521 0.495590 0.595833 0.493831 0.476415 0.472836 0.463290 0.448345 0.471163 0.331111 0.479036 diff --git a/datasets/检测仪/train/labels/订单1804637_51_7089801.txt b/datasets/检测仪/train/labels/订单1804637_51_7089801.txt new file mode 100644 index 0000000..f1f6a21 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804637_51_7089801.txt @@ -0,0 +1 @@ +5 0.391027 0.389054 0.356909 0.402180 0.322791 0.522918 0.328039 0.553103 0.295225 0.664648 0.274233 0.693518 0.261107 0.763080 0.275548 0.794567 0.312284 0.799815 0.389712 0.807693 0.422526 0.828697 0.456644 0.801130 0.482895 0.732895 0.473702 0.694833 0.507820 0.589850 0.548512 0.429746 0.544567 0.410058 0.517013 0.415306 0.397589 0.390369 diff --git a/datasets/检测仪/train/labels/订单1804639_51_7089802.txt b/datasets/检测仪/train/labels/订单1804639_51_7089802.txt new file mode 100644 index 0000000..a3b3193 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804639_51_7089802.txt @@ -0,0 +1 @@ +5 0.689666 0.326765 0.647719 0.347768 0.609263 0.475061 0.621498 0.510493 0.584793 0.604983 0.572558 0.639100 0.556832 0.687664 0.577811 0.719152 0.618007 0.720467 0.703641 0.737526 0.738606 0.753279 0.764816 0.733590 0.792776 0.686349 0.782293 0.652223 0.822488 0.545926 0.850461 0.517059 0.902892 0.393694 0.881912 0.359576 0.853952 0.366142 0.845219 0.372699 0.714136 0.347768 0.696659 0.326765 diff --git a/datasets/检测仪/train/labels/订单1804641_51_7089779.txt b/datasets/检测仪/train/labels/订单1804641_51_7089779.txt new file mode 100644 index 0000000..d340180 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804641_51_7089779.txt @@ -0,0 +1 @@ +5 0.369714 0.434375 0.334727 0.456680 0.350469 0.627285 0.357474 0.648281 0.369714 0.759834 0.343464 0.799199 0.348724 0.867441 0.373216 0.896318 0.401211 0.897627 0.422214 0.881885 0.539440 0.876631 0.569193 0.887129 0.588438 0.875322 0.609440 0.799199 0.586693 0.772959 0.586693 0.648281 0.612930 0.599727 0.618190 0.467178 0.586693 0.438311 0.553438 0.440937 0.555195 0.452744 0.395964 0.448809 0.381966 0.433066 diff --git a/datasets/检测仪/train/labels/订单1804642_51_7089840.txt b/datasets/检测仪/train/labels/订单1804642_51_7089840.txt new file mode 100644 index 0000000..d0916e8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804642_51_7089840.txt @@ -0,0 +1 @@ +5 0.313611 0.419983 0.280359 0.444922 0.327604 0.622083 0.336354 0.644392 0.371354 0.766441 0.350359 0.811059 0.378345 0.872743 0.413345 0.896363 0.437847 0.896363 0.448345 0.880616 0.576076 0.866181 0.586574 0.876675 0.609317 0.879297 0.626817 0.856988 0.633819 0.778255 0.619815 0.752005 0.588322 0.616832 0.604074 0.589271 0.593576 0.423924 0.546331 0.400295 0.523588 0.409488 0.352106 0.427856 0.327604 0.421293 diff --git a/datasets/检测仪/train/labels/订单1804643_51_7089873.txt b/datasets/检测仪/train/labels/订单1804643_51_7089873.txt new file mode 100644 index 0000000..2fc8a74 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804643_51_7089873.txt @@ -0,0 +1 @@ +5 0.436529 0.358288 0.433578 0.480333 0.426686 0.510516 0.441451 0.535451 0.461137 0.536765 0.580230 0.538078 0.594995 0.526268 0.702279 0.531516 0.735745 0.543327 0.745588 0.531516 0.786926 0.534144 0.798735 0.528889 0.819407 0.502647 0.813500 0.480333 0.808578 0.469837 0.805627 0.372725 0.814485 0.363536 0.817436 0.330732 0.782005 0.316294 0.733775 0.312359 0.706216 0.330732 0.603853 0.326791 0.581216 0.317608 0.454250 0.304484 0.437515 0.322856 0.436529 0.346477 diff --git a/datasets/检测仪/train/labels/订单1804644_51_7089870.txt b/datasets/检测仪/train/labels/订单1804644_51_7089870.txt new file mode 100644 index 0000000..97e0b05 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804644_51_7089870.txt @@ -0,0 +1 @@ +5 0.004450 0.476407 0.074330 0.418660 0.127480 0.401600 0.263305 0.332047 0.285945 0.311047 0.485750 0.183753 0.517245 0.195567 0.530040 0.232307 0.529055 0.251993 0.575315 0.430473 0.585155 0.431787 0.593030 0.452780 0.584175 0.472467 0.575315 0.501340 0.418820 0.593200 0.395195 0.595827 0.373545 0.595827 0.241655 0.677193 0.207205 0.708687 0.129450 0.744120 0.090080 0.744120 0.076300 0.716560 0.081220 0.695567 0.020195 0.561707 0.008385 0.543333 0.002480 0.481653 diff --git a/datasets/检测仪/train/labels/订单1804647_51_7089885.txt b/datasets/检测仪/train/labels/订单1804647_51_7089885.txt new file mode 100644 index 0000000..679deb7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804647_51_7089885.txt @@ -0,0 +1 @@ +5 0.325977 0.194219 0.285729 0.229648 0.301471 0.463242 0.324219 0.526240 0.327721 0.706025 0.308477 0.767705 0.320716 0.838574 0.324219 0.862197 0.362721 0.893691 0.409961 0.895000 0.427461 0.881885 0.595443 0.868760 0.607682 0.879258 0.642682 0.880566 0.682930 0.856943 0.707422 0.749336 0.688177 0.709961 0.695182 0.524922 0.717917 0.457998 0.723177 0.236211 0.686432 0.206025 0.647930 0.207344 0.637435 0.213906 0.380221 0.206025 0.339974 0.195527 diff --git a/datasets/检测仪/train/labels/订单1804649_51_7089905.txt b/datasets/检测仪/train/labels/订单1804649_51_7089905.txt new file mode 100644 index 0000000..dd03857 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804649_51_7089905.txt @@ -0,0 +1 @@ +5 0.378362 0.409494 0.355603 0.431800 0.374856 0.566972 0.388851 0.605022 0.404598 0.717888 0.406351 0.762511 0.418606 0.820248 0.439598 0.836002 0.465848 0.836002 0.476351 0.821562 0.584828 0.816315 0.590086 0.824192 0.619828 0.829440 0.646078 0.800560 0.646078 0.757263 0.639066 0.710011 0.616322 0.590593 0.628578 0.566972 0.628578 0.417360 0.595330 0.396369 0.569080 0.398987 0.567328 0.408179 0.432601 0.414741 0.401106 0.406864 diff --git a/datasets/检测仪/train/labels/订单1804656_51_7089968.txt b/datasets/检测仪/train/labels/订单1804656_51_7089968.txt new file mode 100644 index 0000000..5c28618 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804656_51_7089968.txt @@ -0,0 +1 @@ +5 0.390716 0.413379 0.366211 0.435684 0.364466 0.590537 0.385469 0.614160 0.373216 0.745400 0.360964 0.775586 0.373216 0.846445 0.394219 0.871387 0.422214 0.872695 0.434453 0.862197 0.553438 0.862197 0.555195 0.877939 0.590195 0.879258 0.625182 0.856943 0.637435 0.772959 0.630430 0.733584 0.625182 0.603662 0.644427 0.576104 0.642682 0.430439 0.611185 0.405498 0.581445 0.408125 0.577943 0.414687 0.418711 0.423877 0.402969 0.414687 diff --git a/datasets/检测仪/train/labels/订单1804658_51_7089999.txt b/datasets/检测仪/train/labels/订单1804658_51_7089999.txt new file mode 100644 index 0000000..e36a372 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804658_51_7089999.txt @@ -0,0 +1 @@ +5 0.452185 0.380565 0.417220 0.395000 0.391581 0.523610 0.407895 0.545920 0.389245 0.646970 0.356616 0.679775 0.368268 0.746705 0.391581 0.767705 0.433535 0.774265 0.452185 0.759830 0.573393 0.767705 0.582718 0.776890 0.627007 0.780825 0.666634 0.763765 0.687611 0.694210 0.661972 0.661405 0.678286 0.559040 0.699263 0.520985 0.727238 0.415995 0.689947 0.395000 0.657309 0.397625 0.489476 0.393685 0.477824 0.383190 diff --git a/datasets/检测仪/train/labels/订单1804659_51_7090013.txt b/datasets/检测仪/train/labels/订单1804659_51_7090013.txt new file mode 100644 index 0000000..3afad37 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804659_51_7090013.txt @@ -0,0 +1 @@ +5 0.471198 0.531484 0.390716 0.598418 0.366211 0.602354 0.364466 0.608916 0.359219 0.636475 0.376719 0.652227 0.527201 0.757207 0.537695 0.754580 0.674180 0.863506 0.735417 0.901563 0.775664 0.916006 0.784414 0.902881 0.787917 0.887129 0.868398 0.828076 0.878906 0.839883 0.901654 0.825449 0.901654 0.790020 0.819414 0.727021 0.703919 0.643037 0.544701 0.494746 0.509701 0.496055 0.479948 0.510488 0.481706 0.526240 diff --git a/datasets/检测仪/train/labels/订单1804662_51_7090009.txt b/datasets/检测仪/train/labels/订单1804662_51_7090009.txt new file mode 100644 index 0000000..05d7093 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804662_51_7090009.txt @@ -0,0 +1 @@ +5 0.491797 0.408130 0.463802 0.416006 0.426476 0.534116 0.442804 0.555112 0.398472 0.654849 0.375148 0.670601 0.358811 0.721782 0.368142 0.741465 0.407804 0.748027 0.426476 0.740151 0.538455 0.753276 0.543125 0.762461 0.575790 0.771650 0.603785 0.759839 0.634115 0.711279 0.636450 0.671909 0.659774 0.587920 0.704106 0.556426 0.741432 0.458003 0.713437 0.435693 0.692439 0.434380 0.685443 0.437002 0.510460 0.410757 diff --git a/datasets/检测仪/train/labels/订单1804663_51_7090040.txt b/datasets/检测仪/train/labels/订单1804663_51_7090040.txt new file mode 100644 index 0000000..e76ad6a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804663_51_7090040.txt @@ -0,0 +1 @@ +5 0.124720 0.673200 0.150973 0.715200 0.443187 0.763750 0.502680 0.754570 0.723147 0.792620 0.798387 0.821500 0.896373 0.830680 0.957613 0.814930 0.964613 0.778190 0.952373 0.759820 0.961120 0.633830 0.975120 0.633830 0.982120 0.603650 0.957613 0.581340 0.843880 0.552470 0.794893 0.552470 0.581413 0.520970 0.551667 0.497350 0.287453 0.444860 0.248960 0.455350 0.229707 0.472410 0.136973 0.656140 diff --git a/datasets/检测仪/train/labels/订单1804667_51_7090070.txt b/datasets/检测仪/train/labels/订单1804667_51_7090070.txt new file mode 100644 index 0000000..badadc2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804667_51_7090070.txt @@ -0,0 +1 @@ +5 0.430964 0.468496 0.406458 0.482930 0.390716 0.616787 0.394219 0.629912 0.383711 0.737520 0.369714 0.780830 0.369714 0.845137 0.394219 0.877939 0.418711 0.880566 0.443203 0.867441 0.553438 0.875322 0.563945 0.884502 0.600690 0.892383 0.619935 0.863506 0.633932 0.776895 0.619935 0.746709 0.621680 0.734902 0.621680 0.637783 0.628685 0.614160 0.642682 0.480303 0.614687 0.465869 0.593685 0.469805 0.437956 0.468496 diff --git a/datasets/检测仪/train/labels/订单1804670_51_7090089.txt b/datasets/检测仪/train/labels/订单1804670_51_7090089.txt new file mode 100644 index 0000000..47d079b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804670_51_7090089.txt @@ -0,0 +1 @@ +5 0.283114 0.442258 0.258616 0.464567 0.255110 0.624671 0.270865 0.664040 0.267359 0.795268 0.249862 0.846453 0.256863 0.912067 0.272607 0.934377 0.302353 0.938313 0.318108 0.926505 0.449343 0.922569 0.459839 0.931756 0.486090 0.939628 0.505329 0.918633 0.543829 0.835952 0.528074 0.804455 0.519331 0.667976 0.543829 0.624671 0.561326 0.467189 0.524579 0.444879 0.500081 0.446194 0.347855 0.450130 0.290104 0.439628 diff --git a/datasets/检测仪/train/labels/订单1804671_51_7090111.txt b/datasets/检测仪/train/labels/订单1804671_51_7090111.txt new file mode 100644 index 0000000..7f47797 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804671_51_7090111.txt @@ -0,0 +1 @@ +5 0.502695 0.355635 0.467708 0.370068 0.460703 0.511807 0.478203 0.548545 0.467708 0.650908 0.451953 0.686338 0.460703 0.736211 0.479948 0.766396 0.500951 0.765078 0.509701 0.750645 0.612930 0.757207 0.630430 0.765078 0.646185 0.766396 0.684674 0.751963 0.686432 0.662725 0.705677 0.534111 0.742422 0.389756 0.717917 0.363506 0.693424 0.366133 0.686432 0.374004 0.541198 0.367441 0.509701 0.354326 diff --git a/datasets/检测仪/train/labels/订单1804674_51_7090117.txt b/datasets/检测仪/train/labels/订单1804674_51_7090117.txt new file mode 100644 index 0000000..91aebd5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804674_51_7090117.txt @@ -0,0 +1 @@ +5 0.447378 0.477743 0.426710 0.505301 0.455252 0.647025 0.453281 0.677211 0.470017 0.695590 0.493637 0.691644 0.597969 0.670648 0.610764 0.653588 0.713125 0.632593 0.746589 0.637847 0.791866 0.620787 0.805642 0.608970 0.802691 0.570914 0.795807 0.566979 0.783993 0.469861 0.785964 0.465926 0.788915 0.443623 0.761354 0.427870 0.696398 0.435741 0.685564 0.448866 0.595017 0.471181 0.562535 0.464618 0.457222 0.479051 diff --git a/datasets/检测仪/train/labels/订单1804679_51_7090211.txt b/datasets/检测仪/train/labels/订单1804679_51_7090211.txt new file mode 100644 index 0000000..008f391 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804679_51_7090211.txt @@ -0,0 +1 @@ +5 0.342021 0.090547 0.326274 0.118105 0.347930 0.295267 0.358755 0.321517 0.369580 0.436999 0.369580 0.477682 0.379424 0.530176 0.393203 0.551172 0.406001 0.547240 0.412891 0.534115 0.469976 0.530176 0.488677 0.539362 0.499502 0.522305 0.511313 0.467188 0.500488 0.435690 0.499502 0.328079 0.503442 0.288711 0.508359 0.110228 0.485723 0.081361 0.468989 0.083984 0.466040 0.093171 0.372534 0.104980 0.367612 0.093171 0.345962 0.090547 diff --git a/datasets/检测仪/train/labels/订单1804681_51_7090184.txt b/datasets/检测仪/train/labels/订单1804681_51_7090184.txt new file mode 100644 index 0000000..5238356 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804681_51_7090184.txt @@ -0,0 +1 @@ +5 0.444961 0.425186 0.427461 0.448809 0.465951 0.603662 0.486953 0.641719 0.521953 0.779521 0.507943 0.832012 0.546445 0.922559 0.574440 0.942246 0.607682 0.939619 0.618190 0.929121 0.749414 0.919941 0.770417 0.922559 0.805417 0.925186 0.838659 0.897627 0.833411 0.807080 0.798411 0.751963 0.805417 0.721777 0.749414 0.612852 0.761667 0.562979 0.740664 0.395000 0.693424 0.372695 0.653177 0.385820 0.492201 0.418623 0.458958 0.422559 diff --git a/datasets/检测仪/train/labels/订单1804682_51_7090261.txt b/datasets/检测仪/train/labels/订单1804682_51_7090261.txt new file mode 100644 index 0000000..be1a4c3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804682_51_7090261.txt @@ -0,0 +1 @@ +5 0.000000 0.326186 0.052233 0.316289 0.200969 0.313662 0.285545 0.329412 0.588834 0.338598 0.658824 0.326789 0.985458 0.330725 1.000000 0.338907 1.000000 0.442662 0.991285 0.540696 0.967952 0.552510 0.603420 0.544637 0.545087 0.538074 0.279706 0.535451 0.212636 0.544637 0.025991 0.539387 0.000000 0.522373 0.000000 0.511078 0.020153 0.486892 0.000000 0.361196 diff --git a/datasets/检测仪/train/labels/订单1804685_51_7090183.txt b/datasets/检测仪/train/labels/订单1804685_51_7090183.txt new file mode 100644 index 0000000..fd4cb77 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804685_51_7090183.txt @@ -0,0 +1 @@ +5 0.461283 0.250651 0.436348 0.279518 0.437656 0.427812 0.452096 0.464564 0.456029 0.565612 0.446842 0.619414 0.456029 0.674538 0.473092 0.696842 0.491465 0.696842 0.501960 0.685033 0.580703 0.679785 0.589889 0.691595 0.610885 0.690280 0.629258 0.673223 0.635820 0.612852 0.627949 0.578737 0.637135 0.456686 0.651569 0.421257 0.646322 0.283457 0.627949 0.257214 0.609577 0.265085 0.605638 0.269023 0.496712 0.266400 0.461283 0.250651 diff --git a/datasets/检测仪/train/labels/订单1804688_51_7090263.txt b/datasets/检测仪/train/labels/订单1804688_51_7090263.txt new file mode 100644 index 0000000..982d12e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804688_51_7090263.txt @@ -0,0 +1 @@ +5 0.303974 0.325490 0.270732 0.346490 0.249739 0.521029 0.260235 0.557775 0.251490 0.674569 0.233987 0.724441 0.232235 0.800559 0.254980 0.832049 0.289974 0.826804 0.302235 0.814990 0.431712 0.813676 0.438706 0.821549 0.464954 0.825490 0.491203 0.811059 0.520954 0.729686 0.505203 0.702127 0.519203 0.569588 0.536706 0.536775 0.568196 0.383235 0.543699 0.356990 0.515699 0.354363 0.503451 0.360922 0.354719 0.342549 0.331974 0.330735 0.316222 0.325490 diff --git a/datasets/检测仪/train/labels/订单1804689_51_7090279.txt b/datasets/检测仪/train/labels/订单1804689_51_7090279.txt new file mode 100644 index 0000000..821df9f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804689_51_7090279.txt @@ -0,0 +1 @@ +5 0.243986 0.468503 0.221267 0.473746 0.217765 0.489498 0.228249 0.496055 0.233491 0.577422 0.219516 0.590545 0.219516 0.606298 0.233491 0.620735 0.324378 0.629913 0.368076 0.612855 0.511394 0.604983 0.544597 0.622042 0.745588 0.627292 0.764816 0.602362 0.757823 0.580052 0.747339 0.469810 0.757823 0.459317 0.752581 0.444879 0.733353 0.447500 0.715876 0.437007 0.535864 0.442258 0.506152 0.458002 0.345357 0.467189 0.315645 0.450130 0.257961 0.463253 diff --git a/datasets/检测仪/train/labels/订单1804693_51_7090342.txt b/datasets/检测仪/train/labels/订单1804693_51_7090342.txt new file mode 100644 index 0000000..8cda665 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804693_51_7090342.txt @@ -0,0 +1 @@ +5 0.262982 0.325449 0.229740 0.347764 0.233229 0.503926 0.255977 0.552480 0.257734 0.686338 0.240234 0.723086 0.250729 0.788701 0.273477 0.825449 0.304974 0.824141 0.324219 0.814951 0.460703 0.811016 0.460703 0.820205 0.483451 0.820205 0.516693 0.800518 0.534193 0.724404 0.514948 0.698154 0.518451 0.556426 0.539440 0.489492 0.553438 0.350381 0.511445 0.324141 0.497448 0.328076 0.483451 0.337266 0.304974 0.335947 0.304974 0.328076 0.273477 0.322822 diff --git a/datasets/检测仪/train/labels/订单1804698_51_7090384.txt b/datasets/检测仪/train/labels/订单1804698_51_7090384.txt new file mode 100644 index 0000000..3f62f06 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804698_51_7090384.txt @@ -0,0 +1 @@ +5 0.164591 0.359565 0.121040 0.392375 0.219757 0.573475 0.242987 0.593160 0.344602 0.730960 0.332987 0.780825 0.402677 0.867440 0.475254 0.888440 0.527522 0.874000 0.530420 0.850380 0.756892 0.816260 0.812046 0.816260 0.843993 0.801825 0.826571 0.719145 0.774303 0.685025 0.695918 0.543295 0.713341 0.498675 0.643650 0.359565 0.576881 0.341195 0.542035 0.339880 0.527522 0.346445 0.251692 0.363505 0.173308 0.356940 diff --git a/datasets/检测仪/train/labels/订单1804699_51_7090378.txt b/datasets/检测仪/train/labels/订单1804699_51_7090378.txt new file mode 100644 index 0000000..9b53866 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804699_51_7090378.txt @@ -0,0 +1 @@ +5 0.458860 0.136535 0.406374 0.173279 0.418611 0.381941 0.446608 0.444934 0.450117 0.607664 0.436111 0.685088 0.451857 0.773015 0.499108 0.807138 0.551608 0.803202 0.562105 0.796645 0.730073 0.791393 0.745833 0.801886 0.773830 0.804518 0.831564 0.767774 0.833319 0.665406 0.817573 0.618158 0.810570 0.442314 0.824561 0.359627 0.828070 0.175910 0.784327 0.147039 0.759825 0.140471 0.751082 0.145724 0.523611 0.144408 0.471111 0.136535 diff --git a/datasets/检测仪/train/labels/订单1804707_51_7090505.txt b/datasets/检测仪/train/labels/订单1804707_51_7090505.txt new file mode 100644 index 0000000..0e87048 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804707_51_7090505.txt @@ -0,0 +1 @@ +5 0.308477 0.400254 0.283971 0.430439 0.348724 0.585293 0.399466 0.623350 0.444961 0.749336 0.492201 0.867441 0.530690 0.880566 0.562187 0.872695 0.572695 0.851699 0.688177 0.816260 0.721419 0.812324 0.733672 0.772959 0.707422 0.709961 0.625182 0.566924 0.635677 0.515742 0.570937 0.377939 0.527201 0.362197 0.509701 0.368760 0.350469 0.398945 0.318971 0.392383 diff --git a/datasets/检测仪/train/labels/订单1804714_51_7090604.txt b/datasets/检测仪/train/labels/订单1804714_51_7090604.txt new file mode 100644 index 0000000..7ed0622 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804714_51_7090604.txt @@ -0,0 +1 @@ +5 0.479933 0.358240 0.448427 0.346430 0.408187 0.354300 0.318947 0.477660 0.306707 0.524910 0.219213 0.643020 0.177213 0.679760 0.156213 0.725700 0.145720 0.742760 0.182467 0.771630 0.208707 0.774250 0.310200 0.814930 0.315453 0.825430 0.346947 0.837240 0.378440 0.821500 0.427440 0.770310 0.441440 0.730940 0.516680 0.614150 0.560413 0.582650 0.660160 0.463230 0.654907 0.431730 0.621667 0.421230 0.612907 0.425170 0.479933 0.363490 diff --git a/datasets/检测仪/train/labels/订单1804715_51_7090559.txt b/datasets/检测仪/train/labels/订单1804715_51_7090559.txt new file mode 100644 index 0000000..ec2dda4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804715_51_7090559.txt @@ -0,0 +1 @@ +5 0.172872 0.476375 0.186874 0.514429 0.428339 0.586609 0.566574 0.650917 0.629562 0.686349 0.703057 0.712595 0.743299 0.703408 0.745052 0.678478 0.804544 0.583988 0.832537 0.561678 0.818547 0.534118 0.731050 0.492119 0.697809 0.486877 0.554325 0.431756 0.353103 0.322829 0.309354 0.321522 0.181626 0.469810 diff --git a/datasets/检测仪/train/labels/订单1804718_51_7090592.txt b/datasets/检测仪/train/labels/订单1804718_51_7090592.txt new file mode 100644 index 0000000..c331f64 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804718_51_7090592.txt @@ -0,0 +1 @@ +5 0.420347 0.324184 0.376597 0.350425 0.373102 0.522344 0.380104 0.557778 0.348600 0.689010 0.350359 0.795313 0.374850 0.815000 0.399352 0.815000 0.416840 0.804497 0.534086 0.808438 0.569074 0.824184 0.597072 0.807127 0.619815 0.736259 0.609317 0.699514 0.628565 0.580087 0.672315 0.522344 0.696806 0.387179 0.674063 0.355677 0.647813 0.353056 0.441343 0.332057 diff --git a/datasets/检测仪/train/labels/订单1804719_51_7090570.txt b/datasets/检测仪/train/labels/订单1804719_51_7090570.txt new file mode 100644 index 0000000..8f2ad47 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804719_51_7090570.txt @@ -0,0 +1 @@ +5 0.515295 0.418681 0.495608 0.442303 0.513325 0.586667 0.523168 0.612905 0.528090 0.717894 0.524149 0.754641 0.535964 0.818947 0.552691 0.842569 0.568438 0.842569 0.576319 0.829444 0.640295 0.820255 0.647179 0.830752 0.658012 0.828137 0.668837 0.809757 0.674740 0.740208 0.654071 0.712650 0.645217 0.597164 0.654071 0.542037 0.651120 0.429178 0.631432 0.408183 0.615686 0.418681 0.542847 0.422616 0.535964 0.418681 0.521198 0.417373 diff --git a/datasets/检测仪/train/labels/订单1804722_51_7090589.txt b/datasets/检测仪/train/labels/订单1804722_51_7090589.txt new file mode 100644 index 0000000..91b7784 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804722_51_7090589.txt @@ -0,0 +1 @@ +5 0.362721 0.383193 0.320716 0.413379 0.339974 0.635166 0.352214 0.657471 0.364466 0.804453 0.350469 0.863506 0.366211 0.944873 0.395964 0.975059 0.423958 0.977686 0.443203 0.963242 0.604193 0.959307 0.609440 0.971123 0.635677 0.973740 0.670677 0.951436 0.700430 0.867441 0.670677 0.828076 0.672435 0.658779 0.703919 0.570859 0.703919 0.437002 0.716172 0.413379 0.681172 0.389756 0.640938 0.380566 0.619935 0.391064 0.422214 0.396318 0.401211 0.387129 0.371471 0.381885 diff --git a/datasets/检测仪/train/labels/订单1804724_51_7090636.txt b/datasets/检测仪/train/labels/订单1804724_51_7090636.txt new file mode 100644 index 0000000..0f2a660 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804724_51_7090636.txt @@ -0,0 +1 @@ +5 0.391464 0.325490 0.344222 0.337304 0.274235 0.506588 0.272484 0.547275 0.204235 0.694255 0.137752 0.795304 0.148248 0.835990 0.183242 0.843863 0.202497 0.832049 0.335477 0.862235 0.349477 0.877980 0.387974 0.893735 0.422967 0.877980 0.466706 0.807118 0.466706 0.745441 0.527948 0.603706 0.573451 0.568275 0.650431 0.413422 0.627686 0.387167 0.597948 0.388480 0.403712 0.333363 diff --git a/datasets/检测仪/train/labels/订单1804725_51_7090618.txt b/datasets/检测仪/train/labels/订单1804725_51_7090618.txt new file mode 100644 index 0000000..40de2b4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804725_51_7090618.txt @@ -0,0 +1 @@ +5 0.176378 0.384507 0.165871 0.408131 0.262111 0.564299 0.323356 0.678478 0.326851 0.724403 0.375848 0.792647 0.402099 0.801834 0.444095 0.784775 0.561326 0.745407 0.596321 0.740156 0.613818 0.706029 0.598074 0.641730 0.561326 0.608919 0.498328 0.496055 0.493080 0.456687 0.417843 0.324144 0.382849 0.312336 0.356597 0.325458 0.202618 0.383201 0.181626 0.377950 diff --git a/datasets/检测仪/train/labels/订单1804726_51_7090650.txt b/datasets/检测仪/train/labels/订单1804726_51_7090650.txt new file mode 100644 index 0000000..8b76707 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804726_51_7090650.txt @@ -0,0 +1 @@ +5 0.525328 0.427854 0.492083 0.448850 0.502583 0.585333 0.518328 0.622079 0.513078 0.737567 0.504333 0.776938 0.516578 0.841242 0.539328 0.871425 0.581322 0.880608 0.590072 0.864862 0.709056 0.864862 0.710806 0.871425 0.747550 0.875362 0.773794 0.851738 0.780794 0.776938 0.765050 0.744129 0.754550 0.619454 0.766800 0.584021 0.765050 0.446229 0.728306 0.422604 0.700306 0.430479 0.563822 0.434417 0.539328 0.423917 diff --git a/datasets/检测仪/train/labels/订单1804727_51_7090681.txt b/datasets/检测仪/train/labels/订单1804727_51_7090681.txt new file mode 100644 index 0000000..f4fd025 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804727_51_7090681.txt @@ -0,0 +1 @@ +5 0.361730 0.139133 0.327285 0.178507 0.339095 0.442280 0.353860 0.488213 0.358780 0.690313 0.344015 0.758553 0.356810 0.850420 0.380435 0.887167 0.406025 0.884540 0.420785 0.871420 0.520195 0.855667 0.527085 0.868793 0.554645 0.875353 0.579250 0.843860 0.579250 0.682440 0.581220 0.488213 0.594015 0.384540 0.599920 0.190313 0.570395 0.145693 0.546770 0.150947 0.540865 0.158820 0.393230 0.153567 0.386340 0.149633 0.369605 0.139133 diff --git a/datasets/检测仪/train/labels/订单1804728_51_7090702.txt b/datasets/检测仪/train/labels/订单1804728_51_7090702.txt new file mode 100644 index 0000000..b2fb7be --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804728_51_7090702.txt @@ -0,0 +1 @@ +5 0.415208 0.410752 0.392461 0.426504 0.399466 0.574795 0.413464 0.590537 0.422214 0.703398 0.402969 0.753271 0.418711 0.804453 0.443203 0.837266 0.469453 0.830703 0.478203 0.824141 0.586693 0.813643 0.602435 0.824141 0.626940 0.829385 0.658424 0.729648 0.644427 0.706025 0.637435 0.583984 0.649687 0.551172 0.654935 0.418623 0.635677 0.405498 0.600690 0.401562 0.595443 0.405498 0.448451 0.414687 0.422214 0.409443 diff --git a/datasets/检测仪/train/labels/订单1804732_51_7090659.txt b/datasets/检测仪/train/labels/订单1804732_51_7090659.txt new file mode 100644 index 0000000..b6ecd74 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804732_51_7090659.txt @@ -0,0 +1 @@ +5 0.352190 0.452733 0.318954 0.472414 0.329444 0.641703 0.352190 0.674510 0.374935 0.817561 0.362696 0.873983 0.387190 0.946164 0.420441 0.980294 0.439690 0.978971 0.457190 0.961912 0.602418 0.946164 0.616405 0.956667 0.637402 0.959289 0.665408 0.931728 0.658399 0.834620 0.644412 0.813627 0.623415 0.669265 0.637402 0.623333 0.628660 0.464534 0.591912 0.442230 0.572663 0.440919 0.562173 0.446164 0.406438 0.459289 0.367941 0.450110 diff --git a/datasets/检测仪/train/labels/订单1804733_51_7090667.txt b/datasets/检测仪/train/labels/订单1804733_51_7090667.txt new file mode 100644 index 0000000..c701a58 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804733_51_7090667.txt @@ -0,0 +1 @@ +5 0.130877 0.481626 0.139631 0.503936 0.160623 0.502621 0.148374 0.581358 0.132630 0.595796 0.120381 0.616791 0.172872 0.644351 0.269112 0.637794 0.309354 0.620735 0.454591 0.616791 0.477336 0.604983 0.715306 0.606298 0.748547 0.581358 0.741557 0.569550 0.711811 0.464567 0.717059 0.440943 0.673310 0.425190 0.657566 0.433071 0.505329 0.437007 0.456344 0.451436 0.290104 0.460623 0.263864 0.452751 0.172872 0.459317 0.146632 0.473746 diff --git a/datasets/检测仪/train/labels/订单1804734_51_7090704.txt b/datasets/检测仪/train/labels/订单1804734_51_7090704.txt new file mode 100644 index 0000000..b506c2d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804734_51_7090704.txt @@ -0,0 +1 @@ +5 0.184245 0.510488 0.168490 0.531484 0.212240 0.646973 0.233229 0.667969 0.257734 0.750645 0.254232 0.780830 0.275234 0.822822 0.299727 0.834639 0.339974 0.828076 0.420456 0.807080 0.441458 0.811016 0.460703 0.792646 0.455456 0.724404 0.416966 0.639102 0.420456 0.602354 0.395964 0.501299 0.366211 0.478994 0.348724 0.484238 0.339974 0.489492 0.226237 0.509180 0.205234 0.507861 0.187734 0.507861 diff --git a/datasets/检测仪/train/labels/订单1804738_51_7090706.txt b/datasets/检测仪/train/labels/订单1804738_51_7090706.txt new file mode 100644 index 0000000..84262cd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804738_51_7090706.txt @@ -0,0 +1 @@ +5 0.186509 0.301829 0.163872 0.330703 0.185527 0.534115 0.196353 0.557734 0.208164 0.717839 0.202261 0.784772 0.218008 0.871387 0.238677 0.905508 0.251470 0.909440 0.279033 0.896322 0.364663 0.855638 0.373521 0.862201 0.398125 0.866133 0.420762 0.821517 0.422729 0.737526 0.406001 0.686348 0.384346 0.520990 0.398125 0.489492 0.379424 0.300521 0.352852 0.275586 0.334150 0.286081 0.218989 0.304453 0.190449 0.297897 diff --git a/datasets/检测仪/train/labels/订单1804742_51_7090743.txt b/datasets/检测仪/train/labels/订单1804742_51_7090743.txt new file mode 100644 index 0000000..1412026 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804742_51_7090743.txt @@ -0,0 +1 @@ +5 0.362576 0.448835 0.332831 0.467209 0.332831 0.623374 0.350331 0.637813 0.352083 0.771669 0.336335 0.817599 0.345076 0.891094 0.367831 0.916030 0.425568 0.918651 0.439564 0.912088 0.548059 0.904219 0.591799 0.914716 0.621544 0.884531 0.635540 0.801854 0.611042 0.767734 0.593551 0.633878 0.614545 0.599751 0.604044 0.460646 0.572547 0.443587 0.546307 0.444901 0.395824 0.456712 0.374830 0.448835 diff --git a/datasets/检测仪/train/labels/订单1804744_51_7090714.txt b/datasets/检测仪/train/labels/订单1804744_51_7090714.txt new file mode 100644 index 0000000..f6bebce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804744_51_7090714.txt @@ -0,0 +1 @@ +5 0.180625 0.190321 0.154375 0.213950 0.175370 0.353056 0.194618 0.380616 0.189375 0.484288 0.199873 0.536780 0.222616 0.548594 0.245370 0.555156 0.257616 0.544653 0.339861 0.536780 0.346852 0.542031 0.367847 0.544653 0.388854 0.526285 0.394097 0.481667 0.380104 0.464601 0.366100 0.358307 0.388854 0.343872 0.392350 0.224444 0.359109 0.198194 0.345104 0.207387 0.215625 0.203446 0.185880 0.187700 diff --git a/datasets/检测仪/train/labels/订单1804753_51_7090812.txt b/datasets/检测仪/train/labels/订单1804753_51_7090812.txt new file mode 100644 index 0000000..03b8b74 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804753_51_7090812.txt @@ -0,0 +1 @@ +5 0.233213 0.376610 0.215707 0.392360 0.233213 0.496040 0.245453 0.510470 0.250707 0.595770 0.241960 0.623330 0.254213 0.669260 0.275200 0.682390 0.301453 0.686320 0.311947 0.679760 0.395933 0.669260 0.420440 0.675830 0.434440 0.656140 0.436187 0.604960 0.420440 0.582650 0.413440 0.501290 0.423933 0.481600 0.422187 0.381860 0.399440 0.366110 0.376693 0.375300 0.264707 0.380550 0.247213 0.376610 diff --git a/datasets/检测仪/train/labels/订单1804754_51_7091015.txt b/datasets/检测仪/train/labels/订单1804754_51_7091015.txt new file mode 100644 index 0000000..222c406 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804754_51_7091015.txt @@ -0,0 +1 @@ +5 0.329466 0.439619 0.308477 0.456680 0.299727 0.581357 0.313724 0.623350 0.310221 0.738838 0.290977 0.783457 0.296224 0.834639 0.315469 0.858262 0.341719 0.862197 0.353971 0.851699 0.465951 0.843818 0.472956 0.855635 0.500951 0.860879 0.527201 0.843818 0.546445 0.786084 0.532448 0.751963 0.532448 0.629912 0.551693 0.599727 0.556940 0.467178 0.530690 0.446182 0.507943 0.447500 0.502695 0.452744 0.360964 0.450117 0.353971 0.444873 0.339974 0.439619 diff --git a/datasets/检测仪/train/labels/订单1804755_51_7090767.txt b/datasets/检测仪/train/labels/订单1804755_51_7090767.txt new file mode 100644 index 0000000..f08af24 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804755_51_7090767.txt @@ -0,0 +1 @@ +5 0.227982 0.497363 0.201732 0.513115 0.208737 0.534111 0.222734 0.553799 0.362721 0.607598 0.443203 0.627285 0.584935 0.677158 0.639180 0.704717 0.714427 0.729648 0.745924 0.721777 0.766914 0.691592 0.761667 0.679785 0.810664 0.604980 0.836914 0.583984 0.819414 0.560361 0.747669 0.527549 0.698672 0.520986 0.569193 0.463242 0.549948 0.450117 0.367969 0.372695 0.331224 0.372695 0.322474 0.384502 0.320716 0.402881 0.238477 0.490801 diff --git a/datasets/检测仪/train/labels/订单1804761_51_7090865.txt b/datasets/检测仪/train/labels/订单1804761_51_7090865.txt new file mode 100644 index 0000000..3d3adc5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804761_51_7090865.txt @@ -0,0 +1 @@ +5 0.278724 0.170596 0.233229 0.209961 0.226237 0.439619 0.255977 0.519678 0.236732 0.728340 0.210482 0.779521 0.234987 0.885820 0.266484 0.910752 0.303229 0.913379 0.324219 0.900254 0.504453 0.913379 0.520195 0.926504 0.556940 0.931748 0.604193 0.902881 0.609440 0.879258 0.646185 0.765078 0.633932 0.732275 0.651432 0.541982 0.698672 0.439619 0.730169 0.225713 0.691680 0.187656 0.639180 0.188965 0.625182 0.195527 0.348724 0.185029 0.285729 0.169277 diff --git a/datasets/检测仪/train/labels/订单1804762_51_7090883.txt b/datasets/检测仪/train/labels/订单1804762_51_7090883.txt new file mode 100644 index 0000000..b028dda --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804762_51_7090883.txt @@ -0,0 +1 @@ +5 0.318108 0.263772 0.284856 0.283460 0.279608 0.434377 0.286609 0.454066 0.277855 0.560363 0.258616 0.604983 0.260358 0.656168 0.277855 0.675848 0.305859 0.678478 0.319850 0.670597 0.412595 0.670597 0.424844 0.687664 0.454591 0.688971 0.479089 0.677163 0.496586 0.608919 0.489585 0.585294 0.496586 0.472439 0.526332 0.446194 0.559573 0.309706 0.535075 0.282145 0.505329 0.282145 0.493080 0.287396 0.370600 0.278209 0.332099 0.265087 diff --git a/datasets/检测仪/train/labels/订单1804772_51_7090925.txt b/datasets/检测仪/train/labels/订单1804772_51_7090925.txt new file mode 100644 index 0000000..8ea35bc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804772_51_7090925.txt @@ -0,0 +1 @@ +5 0.474701 0.211279 0.441458 0.233584 0.427461 0.366133 0.436211 0.380566 0.434453 0.490801 0.411706 0.527549 0.418711 0.580039 0.432708 0.601045 0.462461 0.604980 0.472956 0.594482 0.560443 0.597100 0.576185 0.604980 0.604193 0.614160 0.621680 0.599727 0.644427 0.541982 0.633932 0.515742 0.646185 0.400254 0.700430 0.251963 0.674180 0.224404 0.640938 0.224404 0.637435 0.230957 0.513203 0.224404 0.481706 0.213906 diff --git a/datasets/检测仪/train/labels/订单1804773_51_7090989.txt b/datasets/检测仪/train/labels/订单1804773_51_7090989.txt new file mode 100644 index 0000000..70a2798 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804773_51_7090989.txt @@ -0,0 +1 @@ +5 0.222666 0.446180 0.173308 0.468490 0.196527 0.623345 0.225564 0.649595 0.231372 0.769015 0.222666 0.820195 0.228462 0.881875 0.263308 0.906810 0.324281 0.909435 0.353319 0.896310 0.542035 0.885815 0.547843 0.892375 0.605907 0.893685 0.643650 0.871380 0.675586 0.796575 0.637843 0.765080 0.608816 0.640405 0.623330 0.602350 0.629137 0.463240 0.571073 0.443555 0.536228 0.442245 0.521715 0.450120 0.289436 0.457990 0.269115 0.452745 0.222666 0.446180 diff --git a/datasets/检测仪/train/labels/订单1804774_51_7090999.txt b/datasets/检测仪/train/labels/订单1804774_51_7090999.txt new file mode 100644 index 0000000..9a10601 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804774_51_7090999.txt @@ -0,0 +1 @@ +5 0.254120 0.339931 0.231366 0.360929 0.245370 0.519722 0.264618 0.540720 0.285613 0.657517 0.261111 0.694262 0.276863 0.750694 0.308356 0.782188 0.345104 0.780877 0.352106 0.769062 0.462338 0.757257 0.504340 0.765130 0.525336 0.741502 0.532326 0.679826 0.514838 0.643082 0.499086 0.523655 0.507836 0.469852 0.497338 0.360929 0.471088 0.337309 0.436088 0.335998 0.432593 0.343872 0.296111 0.343872 0.266366 0.337309 diff --git a/datasets/检测仪/train/labels/订单1804776_51_7090992.txt b/datasets/检测仪/train/labels/订单1804776_51_7090992.txt new file mode 100644 index 0000000..0e5ffbd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804776_51_7090992.txt @@ -0,0 +1 @@ +5 0.346966 0.291328 0.313724 0.318887 0.322474 0.439619 0.345221 0.492119 0.366211 0.633848 0.350469 0.694219 0.366211 0.762461 0.394219 0.800518 0.437956 0.801826 0.458958 0.790020 0.597187 0.776895 0.607682 0.782139 0.640938 0.783457 0.668932 0.759834 0.682930 0.661406 0.651432 0.619414 0.633932 0.481621 0.637435 0.448809 0.618190 0.288701 0.579688 0.270332 0.558698 0.270332 0.376719 0.295264 0.359219 0.287393 diff --git a/datasets/检测仪/train/labels/订单1804781_51_7091093.txt b/datasets/检测仪/train/labels/订单1804781_51_7091093.txt new file mode 100644 index 0000000..1e41c55 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804781_51_7091093.txt @@ -0,0 +1 @@ +5 0.240645 0.598418 0.250488 0.644349 0.408950 0.733587 0.460132 0.737526 0.592021 0.820202 0.623521 0.860885 0.699307 0.884505 0.733755 0.867448 0.750488 0.828079 0.738677 0.808392 0.768203 0.699466 0.773125 0.679785 0.793794 0.645664 0.779033 0.603665 0.716040 0.560358 0.669780 0.555111 0.539858 0.480306 0.497534 0.440937 0.369580 0.360885 0.338086 0.364824 0.324307 0.395007 0.324307 0.406816 0.260332 0.565612 0.246553 0.587923 diff --git a/datasets/检测仪/train/labels/订单1804783_51_7091094.txt b/datasets/检测仪/train/labels/订单1804783_51_7091094.txt new file mode 100644 index 0000000..37e6043 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804783_51_7091094.txt @@ -0,0 +1 @@ +5 0.299606 0.019717 0.227867 0.070900 0.255861 0.371425 0.292606 0.505283 0.308356 0.770375 0.289106 0.856988 0.324106 0.988221 0.443089 0.994783 0.716056 0.988221 0.791294 0.998721 0.819289 0.981658 0.854289 0.845179 0.835039 0.778250 0.835039 0.524967 0.861289 0.455412 0.899783 0.086646 0.835039 0.035467 0.782544 0.036779 0.763300 0.042029 0.380094 0.034154 0.322356 0.022342 diff --git a/datasets/检测仪/train/labels/订单1804784_51_7091054.txt b/datasets/检测仪/train/labels/订单1804784_51_7091054.txt new file mode 100644 index 0000000..ebca2ad --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804784_51_7091054.txt @@ -0,0 +1 @@ +5 0.429123 0.384561 0.397617 0.402939 0.402865 0.556480 0.420365 0.593224 0.432617 0.716590 0.416871 0.765143 0.434371 0.860943 0.467617 0.888509 0.509605 0.891129 0.532354 0.879320 0.672339 0.868816 0.710833 0.878004 0.749327 0.850450 0.747573 0.753333 0.721330 0.715274 0.698582 0.566985 0.714327 0.531546 0.688085 0.399002 0.660088 0.380625 0.637339 0.383257 0.467617 0.393750 0.441360 0.383257 diff --git a/datasets/检测仪/train/labels/订单1804790_51_7091143.txt b/datasets/检测仪/train/labels/订单1804790_51_7091143.txt new file mode 100644 index 0000000..fd3a4d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804790_51_7091143.txt @@ -0,0 +1 @@ +5 0.383594 0.421292 0.348600 0.443604 0.367850 0.599771 0.387094 0.624704 0.380094 0.792683 0.387094 0.850425 0.413344 0.864862 0.441339 0.871425 0.450089 0.859613 0.569072 0.862237 0.579572 0.866175 0.604067 0.868800 0.632067 0.849112 0.640811 0.775625 0.625067 0.753313 0.619817 0.628642 0.632067 0.602396 0.647811 0.440979 0.609317 0.418667 0.581322 0.419979 0.579572 0.427854 0.418589 0.429167 0.416844 0.421292 0.390594 0.418667 diff --git a/datasets/检测仪/train/labels/订单1804796_51_7091284.txt b/datasets/检测仪/train/labels/订单1804796_51_7091284.txt new file mode 100644 index 0000000..85bef50 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804796_51_7091284.txt @@ -0,0 +1 @@ +5 0.430964 0.478994 0.406458 0.492119 0.392461 0.631221 0.406458 0.648281 0.390716 0.748018 0.380221 0.769023 0.380221 0.838574 0.509701 0.843818 0.549948 0.847764 0.577943 0.834639 0.584935 0.780830 0.579688 0.759834 0.597187 0.670596 0.619935 0.632539 0.651432 0.513115 0.623437 0.492119 0.597187 0.490801 0.583190 0.498682 0.471198 0.489492 0.458958 0.482930 0.441458 0.476367 diff --git a/datasets/检测仪/train/labels/订单1804798_51_7091204.txt b/datasets/检测仪/train/labels/订单1804798_51_7091204.txt new file mode 100644 index 0000000..2889e15 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804798_51_7091204.txt @@ -0,0 +1 @@ +5 0.310221 0.392383 0.278724 0.418623 0.310221 0.614160 0.331224 0.633848 0.345221 0.761143 0.331224 0.817578 0.352214 0.880566 0.376719 0.910752 0.409961 0.906816 0.429206 0.893691 0.553438 0.883193 0.565690 0.892383 0.591940 0.893691 0.619935 0.867441 0.632188 0.792646 0.605938 0.759834 0.595443 0.615479 0.611185 0.581357 0.614687 0.412061 0.572695 0.387129 0.539440 0.387129 0.532448 0.396318 0.362721 0.401562 0.359219 0.397627 0.325977 0.387129 diff --git a/datasets/检测仪/train/labels/订单1804800_51_7091223.txt b/datasets/检测仪/train/labels/订单1804800_51_7091223.txt new file mode 100644 index 0000000..b2dae79 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804800_51_7091223.txt @@ -0,0 +1 @@ +5 0.425697 0.440955 0.425697 0.599750 0.416837 0.629929 0.447351 0.667987 0.619596 0.641744 0.651091 0.628622 0.778058 0.619436 0.812510 0.635179 0.894202 0.603686 0.911918 0.572186 0.909947 0.536756 0.902077 0.528885 0.886327 0.408147 0.894202 0.395026 0.893216 0.372712 0.869596 0.351718 0.793808 0.346468 0.759361 0.364840 0.628452 0.380590 0.606798 0.370090 0.440462 0.380590 0.420774 0.401583 0.421760 0.429147 diff --git a/datasets/检测仪/train/labels/订单1804806_51_7091308.txt b/datasets/检测仪/train/labels/订单1804806_51_7091308.txt new file mode 100644 index 0000000..49692c1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804806_51_7091308.txt @@ -0,0 +1 @@ +5 0.439589 0.452788 0.408094 0.464600 0.376594 0.598458 0.378344 0.626017 0.339850 0.731004 0.318856 0.775625 0.301356 0.822867 0.313606 0.851738 0.352100 0.859613 0.374844 0.851738 0.467583 0.860925 0.472833 0.874050 0.499083 0.880608 0.530578 0.862237 0.548078 0.770375 0.586572 0.648325 0.646061 0.515779 0.628567 0.484283 0.600567 0.486908 0.467583 0.467225 0.443089 0.451475 diff --git a/datasets/检测仪/train/labels/订单1804809_51_7091338.txt b/datasets/检测仪/train/labels/订单1804809_51_7091338.txt new file mode 100644 index 0000000..7c6d250 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804809_51_7091338.txt @@ -0,0 +1 @@ +5 0.416826 0.275586 0.393203 0.304453 0.373521 0.526243 0.378442 0.553802 0.359741 0.737526 0.339072 0.814954 0.337100 0.906816 0.353833 0.954063 0.387300 0.964564 0.405015 0.952747 0.506392 0.967187 0.514268 0.973750 0.292812 0.838574 0.526079 0.980306 0.554619 0.968496 0.574307 0.939629 0.587100 0.825456 0.580210 0.779518 0.587100 0.586608 0.604819 0.539362 0.617612 0.337266 0.600879 0.299206 0.575293 0.301829 0.443403 0.286081 0.431592 0.274271 diff --git a/datasets/检测仪/train/labels/订单1804810_51_7091421.txt b/datasets/检测仪/train/labels/订单1804810_51_7091421.txt new file mode 100644 index 0000000..6a0717f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804810_51_7091421.txt @@ -0,0 +1 @@ +5 0.306719 0.451436 0.266484 0.490801 0.338216 0.691592 0.360964 0.706025 0.383711 0.822822 0.387214 0.880566 0.415208 0.948809 0.439714 0.967178 0.483451 0.968496 0.495703 0.955371 0.619935 0.930439 0.642682 0.937002 0.663685 0.935684 0.695182 0.909443 0.698672 0.828076 0.672435 0.809697 0.632188 0.671904 0.644427 0.615479 0.612930 0.448809 0.579688 0.422559 0.532448 0.423877 0.523698 0.434375 0.360964 0.464561 0.345221 0.455371 0.318971 0.451436 diff --git a/datasets/检测仪/train/labels/订单1804813_51_7091306.txt b/datasets/检测仪/train/labels/订单1804813_51_7091306.txt new file mode 100644 index 0000000..4262e74 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804813_51_7091306.txt @@ -0,0 +1 @@ +5 0.726667 0.493428 0.719674 0.473740 0.555195 0.472432 0.535951 0.480303 0.434453 0.477686 0.381966 0.469805 0.317227 0.472432 0.308477 0.501299 0.324219 0.509180 0.303229 0.566924 0.297982 0.590537 0.329466 0.604980 0.387214 0.611543 0.427461 0.603662 0.537695 0.604980 0.577943 0.620723 0.696927 0.619414 0.721419 0.610225 0.730169 0.503926 diff --git a/datasets/检测仪/train/labels/订单1804833_51_7091534.txt b/datasets/检测仪/train/labels/订单1804833_51_7091534.txt new file mode 100644 index 0000000..e95f075 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804833_51_7091534.txt @@ -0,0 +1 @@ +5 0.131720 0.305750 0.086227 0.335930 0.108973 0.547220 0.128227 0.586590 0.138720 0.746690 0.121227 0.813620 0.138720 0.898920 0.173720 0.926480 0.219213 0.919920 0.238453 0.908110 0.390693 0.892360 0.402933 0.900240 0.441440 0.902860 0.472933 0.876610 0.488680 0.767690 0.467680 0.736190 0.460680 0.564280 0.471187 0.527530 0.476427 0.335930 0.430933 0.304440 0.399440 0.307060 0.388947 0.314930 0.175467 0.313620 0.170213 0.309680 0.140467 0.304440 diff --git a/datasets/检测仪/train/labels/订单1804834_51_7091574.txt b/datasets/检测仪/train/labels/订单1804834_51_7091574.txt new file mode 100644 index 0000000..1aad773 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804834_51_7091574.txt @@ -0,0 +1 @@ +5 0.296200 0.359550 0.269960 0.377930 0.247213 0.530160 0.255960 0.559030 0.238453 0.686320 0.215707 0.724380 0.219213 0.791310 0.241960 0.820180 0.268200 0.826740 0.289200 0.811000 0.392440 0.817560 0.408187 0.828060 0.446680 0.838560 0.469427 0.813620 0.502680 0.734880 0.485173 0.706010 0.495680 0.570840 0.527173 0.536720 0.546427 0.402860 0.528920 0.377930 0.486933 0.375300 0.483427 0.380550 0.332947 0.371360 0.329453 0.366110 0.308453 0.359550 diff --git a/datasets/检测仪/train/labels/订单1804839_51_7091595.txt b/datasets/检测仪/train/labels/订单1804839_51_7091595.txt new file mode 100644 index 0000000..748e135 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804839_51_7091595.txt @@ -0,0 +1 @@ +5 0.395990 0.426476 0.368036 0.443537 0.364545 0.560329 0.385503 0.583963 0.385503 0.698134 0.375032 0.732256 0.383766 0.786061 0.397744 0.805744 0.427435 0.805744 0.436169 0.792622 0.542727 0.787366 0.546218 0.796561 0.572435 0.801805 0.595146 0.783427 0.602127 0.729622 0.586412 0.704695 0.570682 0.591829 0.600373 0.564268 0.598636 0.443537 0.568929 0.425171 0.547971 0.426476 0.420438 0.433037 0.404724 0.426476 diff --git a/datasets/检测仪/train/labels/订单1804842_51_7091694.txt b/datasets/检测仪/train/labels/订单1804842_51_7091694.txt new file mode 100644 index 0000000..5fd790d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804842_51_7091694.txt @@ -0,0 +1 @@ +5 0.483333 0.387171 0.446589 0.413417 0.467583 0.581396 0.488583 0.614204 0.493833 0.762500 0.481583 0.807121 0.500833 0.881921 0.525328 0.909483 0.574322 0.914729 0.579572 0.900296 0.710806 0.898983 0.723056 0.913417 0.763300 0.914729 0.803544 0.889796 0.810544 0.811058 0.791294 0.769062 0.779044 0.616829 0.793044 0.566963 0.782544 0.385858 0.742300 0.370113 0.712556 0.376675 0.702056 0.383233 0.527078 0.393733 0.485083 0.388483 diff --git a/datasets/检测仪/train/labels/订单1804851_51_7091684.txt b/datasets/检测仪/train/labels/订单1804851_51_7091684.txt new file mode 100644 index 0000000..9c45662 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804851_51_7091684.txt @@ -0,0 +1 @@ +5 0.145625 0.463290 0.112384 0.473793 0.121134 0.498724 0.135127 0.498724 0.143877 0.577465 0.128137 0.585339 0.124630 0.597153 0.159630 0.615521 0.231366 0.619462 0.271609 0.605026 0.413345 0.602396 0.499086 0.612899 0.628565 0.605026 0.649572 0.582717 0.640822 0.568281 0.633819 0.460668 0.639062 0.434418 0.611076 0.422604 0.583079 0.430486 0.427350 0.434418 0.399352 0.451476 0.257616 0.458038 0.226123 0.448854 0.161377 0.458038 diff --git a/datasets/检测仪/train/labels/订单1804854_51_7091823.txt b/datasets/检测仪/train/labels/订单1804854_51_7091823.txt new file mode 100644 index 0000000..3f505de --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804854_51_7091823.txt @@ -0,0 +1 @@ +5 0.236732 0.299199 0.206992 0.316260 0.194740 0.476367 0.219232 0.505244 0.208737 0.624658 0.173737 0.664033 0.187734 0.721777 0.201732 0.741465 0.224479 0.742773 0.236732 0.729648 0.345221 0.729648 0.378464 0.750645 0.406458 0.725713 0.441458 0.665342 0.418711 0.643037 0.441458 0.526240 0.464206 0.476367 0.493945 0.350381 0.458958 0.328076 0.436211 0.334639 0.292721 0.316260 0.278724 0.308389 0.254232 0.299199 diff --git a/datasets/检测仪/train/labels/订单1804857_51_7091770.txt b/datasets/检测仪/train/labels/订单1804857_51_7091770.txt new file mode 100644 index 0000000..771c499 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804857_51_7091770.txt @@ -0,0 +1 @@ +5 0.453611 0.342577 0.418611 0.359627 0.395877 0.530241 0.411623 0.560417 0.381871 0.732336 0.378377 0.811075 0.408114 0.853070 0.455365 0.860943 0.464108 0.851754 0.593596 0.850450 0.602339 0.858322 0.630336 0.862259 0.670585 0.842577 0.689839 0.755954 0.670585 0.725779 0.679342 0.578794 0.695088 0.555175 0.716082 0.385877 0.689839 0.363575 0.663582 0.362259 0.481608 0.351754 0.467617 0.345197 diff --git a/datasets/检测仪/train/labels/订单1804859_51_7091788.txt b/datasets/检测仪/train/labels/订单1804859_51_7091788.txt new file mode 100644 index 0000000..6390fe0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804859_51_7091788.txt @@ -0,0 +1 @@ +5 0.297859 0.321562 0.266366 0.338620 0.259363 0.484288 0.278611 0.517092 0.290856 0.636519 0.280359 0.678516 0.285613 0.748064 0.308356 0.762500 0.336354 0.769062 0.357350 0.757257 0.471088 0.750694 0.486840 0.754627 0.500833 0.758568 0.527083 0.740191 0.532326 0.665391 0.516586 0.639141 0.525336 0.498724 0.542836 0.335998 0.506088 0.312370 0.469340 0.320243 0.308356 0.320243 diff --git a/datasets/检测仪/train/labels/订单1804861_51_7091878.txt b/datasets/检测仪/train/labels/订单1804861_51_7091878.txt new file mode 100644 index 0000000..bf767f3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804861_51_7091878.txt @@ -0,0 +1 @@ +5 0.226237 0.396318 0.198242 0.422559 0.255977 0.594482 0.271732 0.610225 0.310221 0.772959 0.341719 0.858262 0.364466 0.864824 0.406458 0.863506 0.418711 0.846445 0.532448 0.817578 0.544701 0.824141 0.569193 0.822822 0.591940 0.799199 0.588438 0.730957 0.562187 0.703398 0.525443 0.577422 0.528945 0.535420 0.497448 0.389756 0.448451 0.370068 0.432708 0.376631 0.261224 0.398945 0.238477 0.393691 diff --git a/datasets/检测仪/train/labels/订单1804863_51_7091821.txt b/datasets/检测仪/train/labels/订单1804863_51_7091821.txt new file mode 100644 index 0000000..d36caa0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804863_51_7091821.txt @@ -0,0 +1 @@ +5 0.313606 0.350425 0.292606 0.370113 0.301356 0.494783 0.320606 0.521029 0.334600 0.631267 0.320606 0.668013 0.331100 0.725754 0.348600 0.741504 0.371350 0.741504 0.395844 0.729692 0.486833 0.724442 0.525328 0.737567 0.544578 0.715254 0.535828 0.629954 0.542828 0.511846 0.544578 0.489533 0.549828 0.356988 0.520078 0.337304 0.483333 0.350425 0.353850 0.356988 0.324106 0.353050 diff --git a/datasets/检测仪/train/labels/订单1804865_51_7091816.txt b/datasets/检测仪/train/labels/订单1804865_51_7091816.txt new file mode 100644 index 0000000..808e24d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804865_51_7091816.txt @@ -0,0 +1 @@ +5 0.394219 0.290020 0.366211 0.309697 0.367969 0.467178 0.378464 0.514424 0.378464 0.646973 0.362721 0.688965 0.362721 0.762461 0.404714 0.807080 0.443203 0.804453 0.457201 0.792646 0.588438 0.788701 0.595443 0.793955 0.640938 0.801826 0.665430 0.776895 0.682930 0.690283 0.663685 0.657471 0.653177 0.507861 0.668932 0.484238 0.670677 0.330703 0.639180 0.304453 0.612930 0.301826 0.413464 0.292646 diff --git a/datasets/检测仪/train/labels/订单1804866_51_7091876.txt b/datasets/检测仪/train/labels/订单1804866_51_7091876.txt new file mode 100644 index 0000000..ec6967c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804866_51_7091876.txt @@ -0,0 +1 @@ +5 0.343772 0.486832 0.317163 0.506521 0.317163 0.531452 0.322093 0.551141 0.321107 0.628560 0.316176 0.646935 0.310268 0.673180 0.333919 0.703364 0.389100 0.717800 0.417673 0.702051 0.517197 0.704677 0.556609 0.725680 0.675848 0.733548 0.680770 0.703364 0.687673 0.523583 0.671903 0.499954 0.541834 0.494712 0.526064 0.505207 0.415701 0.502581 0.403875 0.480276 0.352638 0.486832 diff --git a/datasets/检测仪/train/labels/订单1804871_51_7091895.txt b/datasets/检测仪/train/labels/订单1804871_51_7091895.txt new file mode 100644 index 0000000..49dfd03 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804871_51_7091895.txt @@ -0,0 +1 @@ +5 0.408028 0.419961 0.364281 0.437025 0.375948 0.545946 0.408028 0.570882 0.396362 0.681118 0.408028 0.732299 0.434270 0.748049 0.507179 0.751985 0.524673 0.740172 0.641329 0.736235 0.696743 0.744108 0.725904 0.727049 0.722985 0.673245 0.687996 0.649623 0.676329 0.560382 0.705490 0.543324 0.699651 0.435711 0.670490 0.430461 0.647157 0.431775 0.443017 0.426525 0.413856 0.419961 diff --git a/datasets/检测仪/train/labels/订单1804872_51_7091862.txt b/datasets/检测仪/train/labels/订单1804872_51_7091862.txt new file mode 100644 index 0000000..00c3487 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804872_51_7091862.txt @@ -0,0 +1 @@ +5 0.371471 0.379258 0.353971 0.391064 0.359219 0.489492 0.374961 0.517051 0.371471 0.608916 0.362721 0.639102 0.367969 0.687656 0.388958 0.708652 0.416966 0.707344 0.422214 0.695527 0.500951 0.694219 0.511445 0.698154 0.535951 0.700781 0.558698 0.681094 0.565690 0.624658 0.549948 0.608916 0.546445 0.519678 0.556940 0.490801 0.563945 0.379258 0.528945 0.368760 0.520195 0.375322 0.378464 0.383193 diff --git a/datasets/检测仪/train/labels/订单1804875_51_7091967.txt b/datasets/检测仪/train/labels/订单1804875_51_7091967.txt new file mode 100644 index 0000000..a142048 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804875_51_7091967.txt @@ -0,0 +1 @@ +5 0.210174 0.321574 0.180642 0.345197 0.180642 0.383252 0.189505 0.398993 0.183602 0.493484 0.181632 0.524977 0.173759 0.566979 0.197378 0.590602 0.283012 0.606343 0.315486 0.590602 0.443437 0.595845 0.476910 0.610289 0.662925 0.624722 0.687535 0.594537 0.690486 0.564352 0.683602 0.555162 0.677691 0.362257 0.684583 0.357002 0.691476 0.328137 0.661944 0.295324 0.479861 0.312384 0.458203 0.322882 0.312535 0.320255 0.269227 0.311076 0.215095 0.321574 diff --git a/datasets/检测仪/train/labels/订单1804878_51_7091991.txt b/datasets/检测仪/train/labels/订单1804878_51_7091991.txt new file mode 100644 index 0000000..a62856f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804878_51_7091991.txt @@ -0,0 +1 @@ +5 0.420456 0.484238 0.383711 0.507861 0.416966 0.670596 0.427461 0.683721 0.432708 0.783457 0.427461 0.829385 0.432708 0.872695 0.462461 0.891064 0.483451 0.892383 0.499206 0.883193 0.602435 0.880566 0.609440 0.885820 0.630430 0.887129 0.653177 0.874004 0.661927 0.804453 0.646185 0.790020 0.633932 0.673223 0.651432 0.650908 0.663685 0.506553 0.630430 0.473740 0.605938 0.477686 0.591940 0.488184 0.467708 0.494746 0.430964 0.484238 diff --git a/datasets/检测仪/train/labels/订单1804881_51_7092067.txt b/datasets/检测仪/train/labels/订单1804881_51_7092067.txt new file mode 100644 index 0000000..76b2ad2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804881_51_7092067.txt @@ -0,0 +1 @@ +5 0.523698 0.370068 0.493945 0.397627 0.495703 0.535420 0.520195 0.577422 0.514948 0.674531 0.513203 0.720459 0.528945 0.780830 0.549948 0.807080 0.576185 0.807080 0.597187 0.795264 0.698672 0.784766 0.707422 0.792646 0.730169 0.793955 0.756419 0.769023 0.763411 0.712588 0.742422 0.687656 0.733672 0.569541 0.747669 0.543301 0.745924 0.404189 0.724922 0.384502 0.705677 0.381885 0.693424 0.388437 0.560443 0.385820 0.532448 0.374004 diff --git a/datasets/检测仪/train/labels/订单1804886_51_7092034.txt b/datasets/检测仪/train/labels/订单1804886_51_7092034.txt new file mode 100644 index 0000000..7819fcc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804886_51_7092034.txt @@ -0,0 +1 @@ +5 0.042412 0.370132 0.037164 0.409507 0.052909 0.429189 0.044167 0.494803 0.047661 0.517116 0.028421 0.530241 0.030161 0.556480 0.065161 0.598476 0.206901 0.611601 0.262880 0.599792 0.458860 0.590603 0.513099 0.602412 0.768567 0.615537 0.815819 0.570921 0.808816 0.534178 0.789576 0.393750 0.787822 0.368816 0.745833 0.349134 0.728333 0.355691 0.516608 0.347818 0.472865 0.360943 0.278640 0.359627 0.208640 0.343882 0.089664 0.349134 0.058158 0.362259 diff --git a/datasets/检测仪/train/labels/订单1804887_51_7092036.txt b/datasets/检测仪/train/labels/订单1804887_51_7092036.txt new file mode 100644 index 0000000..2ed1e0d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804887_51_7092036.txt @@ -0,0 +1 @@ +5 0.451953 0.409443 0.423958 0.434375 0.453711 0.591855 0.472956 0.606289 0.490456 0.737520 0.483451 0.776895 0.502695 0.842510 0.528945 0.866133 0.570937 0.870068 0.586693 0.853008 0.700430 0.841201 0.710924 0.853008 0.744167 0.854326 0.763411 0.828076 0.765169 0.755898 0.740664 0.727021 0.712669 0.577422 0.723177 0.549863 0.702174 0.412061 0.665430 0.393691 0.646185 0.398945 0.495703 0.412061 0.453711 0.410752 diff --git a/datasets/检测仪/train/labels/订单1804890_51_7092100.txt b/datasets/检测仪/train/labels/订单1804890_51_7092100.txt new file mode 100644 index 0000000..ee9cd89 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804890_51_7092100.txt @@ -0,0 +1 @@ +5 0.457201 0.393691 0.430964 0.408125 0.406458 0.523613 0.416966 0.540674 0.395964 0.635166 0.383711 0.658779 0.376719 0.707344 0.390716 0.734902 0.406458 0.740146 0.434453 0.729648 0.507943 0.740146 0.521953 0.749336 0.544701 0.754580 0.569193 0.745400 0.591940 0.679785 0.581445 0.657471 0.600690 0.560361 0.647930 0.429121 0.626940 0.409443 0.604193 0.408125 0.478203 0.409443 0.465951 0.395000 diff --git a/datasets/检测仪/train/labels/订单1804891_51_7092087.txt b/datasets/检测仪/train/labels/订单1804891_51_7092087.txt new file mode 100644 index 0000000..5e222fd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804891_51_7092087.txt @@ -0,0 +1 @@ +5 0.528871 0.506557 0.493917 0.524931 0.499159 0.640415 0.509643 0.664040 0.513134 0.755900 0.497408 0.787396 0.509643 0.838581 0.528871 0.870078 0.560334 0.863512 0.567316 0.855640 0.656452 0.855640 0.663445 0.864827 0.684424 0.864827 0.710634 0.849074 0.712385 0.782145 0.705392 0.763772 0.687915 0.664040 0.701901 0.633858 0.705392 0.517059 0.675680 0.500000 0.658203 0.511808 0.546348 0.515744 0.535864 0.509187 diff --git a/datasets/检测仪/train/labels/订单1804893_51_7092105.txt b/datasets/检测仪/train/labels/订单1804893_51_7092105.txt new file mode 100644 index 0000000..9e22919 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804893_51_7092105.txt @@ -0,0 +1 @@ +5 0.422214 0.249336 0.387214 0.265078 0.355716 0.426504 0.366211 0.464561 0.336471 0.602354 0.306719 0.645664 0.306719 0.698154 0.325977 0.734902 0.355716 0.741465 0.383711 0.730957 0.486953 0.746709 0.495703 0.755898 0.528945 0.767705 0.565690 0.746709 0.595443 0.649600 0.614687 0.510488 0.658424 0.467178 0.686432 0.314951 0.672435 0.278203 0.637435 0.279521 0.626940 0.288701 0.460703 0.265078 0.436211 0.251963 diff --git a/datasets/检测仪/train/labels/订单1804897_51_7092163.txt b/datasets/检测仪/train/labels/订单1804897_51_7092163.txt new file mode 100644 index 0000000..6912e13 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804897_51_7092163.txt @@ -0,0 +1 @@ +5 0.411706 0.305762 0.381966 0.325449 0.374961 0.501299 0.388958 0.536738 0.376719 0.641719 0.366211 0.711279 0.387214 0.793955 0.416966 0.796582 0.443203 0.786084 0.569193 0.792646 0.591940 0.801826 0.619935 0.780830 0.646185 0.715215 0.630430 0.683721 0.639180 0.549863 0.665430 0.511807 0.695182 0.343818 0.665430 0.317578 0.635677 0.317578 0.623437 0.324141 0.453711 0.313643 0.418711 0.307080 diff --git a/datasets/检测仪/train/labels/订单1804907_51_7092215.txt b/datasets/检测仪/train/labels/订单1804907_51_7092215.txt new file mode 100644 index 0000000..698338d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804907_51_7092215.txt @@ -0,0 +1 @@ +5 0.122560 0.359607 0.125510 0.392413 0.133385 0.398973 0.133385 0.500027 0.128465 0.563020 0.149135 0.589267 0.263305 0.574827 0.385355 0.574827 0.459175 0.589267 0.575315 0.597140 0.602875 0.553833 0.599920 0.523647 0.592045 0.355667 0.597950 0.313673 0.578265 0.288740 0.407010 0.307113 0.377480 0.321547 0.248545 0.332047 0.202285 0.321547 0.150120 0.334673 0.127480 0.350420 diff --git a/datasets/检测仪/train/labels/订单1804911_51_7092251.txt b/datasets/检测仪/train/labels/订单1804911_51_7092251.txt new file mode 100644 index 0000000..901380a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804911_51_7092251.txt @@ -0,0 +1 @@ +5 0.504453 0.345137 0.458958 0.366133 0.411706 0.547236 0.427461 0.590537 0.383711 0.750645 0.346966 0.818887 0.336471 0.917314 0.367969 0.960625 0.422214 0.964561 0.439714 0.956680 0.572695 0.975059 0.619935 0.984238 0.656680 0.996055 0.698672 0.973740 0.735417 0.870068 0.730169 0.801826 0.745924 0.628604 0.779167 0.552480 0.808906 0.410752 0.775664 0.380566 0.735417 0.383193 0.534193 0.355635 0.509701 0.347764 diff --git a/datasets/检测仪/train/labels/订单1804914_51_7092284.txt b/datasets/检测仪/train/labels/订单1804914_51_7092284.txt new file mode 100644 index 0000000..0b14fb5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804914_51_7092284.txt @@ -0,0 +1 @@ +5 0.656653 0.389740 0.623413 0.385800 0.455427 0.435670 0.420440 0.463230 0.250707 0.506530 0.198213 0.513100 0.136973 0.539340 0.114227 0.562970 0.124720 0.590520 0.140467 0.587900 0.189467 0.667950 0.175467 0.677140 0.184213 0.695510 0.220960 0.709950 0.304947 0.692890 0.343440 0.666640 0.495680 0.616770 0.549920 0.619400 0.717893 0.570840 0.733653 0.547220 0.663653 0.393670 diff --git a/datasets/检测仪/train/labels/订单1804915_51_7092290.txt b/datasets/检测仪/train/labels/订单1804915_51_7092290.txt new file mode 100644 index 0000000..0c2d1e4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804915_51_7092290.txt @@ -0,0 +1 @@ +5 0.399344 0.353050 0.362600 0.376675 0.394094 0.524967 0.408094 0.534154 0.418589 0.645704 0.427339 0.696883 0.450089 0.710008 0.472833 0.699508 0.560322 0.695571 0.588322 0.704758 0.612817 0.682446 0.618067 0.641767 0.605817 0.619454 0.602317 0.519717 0.614567 0.494783 0.616317 0.358300 0.581322 0.343867 0.551572 0.354363 0.434339 0.363550 0.408094 0.355675 diff --git a/datasets/检测仪/train/labels/订单1804919_51_7092344.txt b/datasets/检测仪/train/labels/订单1804919_51_7092344.txt new file mode 100644 index 0000000..95a2a98 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804919_51_7092344.txt @@ -0,0 +1 @@ +5 0.437839 0.534154 0.408094 0.553837 0.416844 0.685071 0.430839 0.711321 0.436089 0.796621 0.423839 0.850425 0.429089 0.888483 0.446589 0.912108 0.471083 0.912108 0.481583 0.901608 0.574322 0.905546 0.605817 0.921292 0.626817 0.893733 0.642561 0.839929 0.633817 0.812371 0.632067 0.706071 0.644311 0.674575 0.642561 0.538092 0.607567 0.531529 0.590072 0.540717 0.474583 0.540717 0.448339 0.535467 diff --git a/datasets/检测仪/train/labels/订单1804921_51_7092331.txt b/datasets/检测仪/train/labels/订单1804921_51_7092331.txt new file mode 100644 index 0000000..05e8efd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804921_51_7092331.txt @@ -0,0 +1 @@ +5 0.113255 0.194255 0.087007 0.228382 0.170993 0.437039 0.202497 0.542029 0.197242 0.582706 0.219987 0.641765 0.247987 0.648324 0.286484 0.637824 0.393216 0.618137 0.422967 0.620765 0.445712 0.603706 0.457961 0.551216 0.438706 0.526275 0.429961 0.374049 0.419464 0.208696 0.377464 0.182441 0.340719 0.189010 0.186745 0.203441 0.120248 0.194255 diff --git a/datasets/检测仪/train/labels/订单1804922_51_7092374.txt b/datasets/检测仪/train/labels/订单1804922_51_7092374.txt new file mode 100644 index 0000000..c0297e4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804922_51_7092374.txt @@ -0,0 +1 @@ +5 0.373100 0.544654 0.352100 0.566963 0.364350 0.704758 0.378344 0.725754 0.387094 0.830742 0.376594 0.863550 0.390594 0.923917 0.409844 0.939667 0.436089 0.935729 0.441339 0.925229 0.546328 0.922604 0.551572 0.927854 0.572572 0.929167 0.593572 0.905546 0.604067 0.835992 0.588322 0.818929 0.586572 0.708696 0.597067 0.689008 0.590072 0.555150 0.565572 0.539404 0.539328 0.538092 0.535828 0.548588 0.422089 0.556462 0.378344 0.545967 diff --git a/datasets/检测仪/train/labels/订单1804923_51_7092356.txt b/datasets/检测仪/train/labels/订单1804923_51_7092356.txt new file mode 100644 index 0000000..e4888f3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804923_51_7092356.txt @@ -0,0 +1 @@ +5 0.336350 0.374050 0.290856 0.400296 0.322356 0.561712 0.336350 0.591896 0.355600 0.708696 0.338100 0.757250 0.362600 0.811058 0.390594 0.829429 0.415094 0.829429 0.427339 0.818929 0.546328 0.811058 0.570822 0.817617 0.598817 0.800558 0.614567 0.737567 0.593572 0.710008 0.579572 0.576150 0.598817 0.552525 0.591822 0.393733 0.565572 0.366175 0.534078 0.376675 0.371350 0.391108 0.345100 0.376675 diff --git a/datasets/检测仪/train/labels/订单1804924_51_7092371.txt b/datasets/检测仪/train/labels/订单1804924_51_7092371.txt new file mode 100644 index 0000000..6c57d9b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804924_51_7092371.txt @@ -0,0 +1 @@ +5 0.322453 0.401550 0.299707 0.415980 0.306707 0.531470 0.320693 0.548530 0.317200 0.677140 0.320693 0.723070 0.350440 0.753250 0.472933 0.734880 0.523680 0.724380 0.541173 0.666640 0.516680 0.644330 0.504427 0.549840 0.514920 0.522280 0.514920 0.414670 0.490427 0.394990 0.457187 0.401550 0.320693 0.404170 diff --git a/datasets/检测仪/train/labels/订单1804931_51_7092444.txt b/datasets/检测仪/train/labels/订单1804931_51_7092444.txt new file mode 100644 index 0000000..81cc034 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804931_51_7092444.txt @@ -0,0 +1 @@ +5 0.254137 0.461996 0.231389 0.481678 0.250643 0.612917 0.273392 0.637851 0.296126 0.738893 0.289137 0.779583 0.310132 0.838640 0.327632 0.854386 0.364371 0.849134 0.374868 0.838640 0.471111 0.820263 0.483363 0.826820 0.514854 0.808454 0.513099 0.745461 0.492105 0.717895 0.483363 0.631283 0.471111 0.611601 0.474605 0.584046 0.472865 0.461996 0.434371 0.444934 0.413363 0.454123 0.299635 0.465932 0.264635 0.460680 diff --git a/datasets/检测仪/train/labels/订单1804932_51_7092414.txt b/datasets/检测仪/train/labels/订单1804932_51_7092414.txt new file mode 100644 index 0000000..1318665 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804932_51_7092414.txt @@ -0,0 +1 @@ +5 0.341855 0.448815 0.310403 0.469810 0.327880 0.616791 0.348848 0.641730 0.364574 0.738841 0.357592 0.801834 0.373318 0.859576 0.418756 0.884507 0.458963 0.879265 0.458963 0.867448 0.560334 0.855640 0.595288 0.854325 0.621498 0.826765 0.611014 0.759836 0.593537 0.738841 0.565576 0.622042 0.574309 0.595796 0.563825 0.465874 0.534113 0.446194 0.507892 0.450130 0.383802 0.455381 0.352350 0.447500 diff --git a/datasets/检测仪/train/labels/订单1804937_51_7092480.txt b/datasets/检测仪/train/labels/订单1804937_51_7092480.txt new file mode 100644 index 0000000..213b844 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804937_51_7092480.txt @@ -0,0 +1 @@ +5 0.385316 0.379899 0.366070 0.408772 0.450065 0.561001 0.493819 0.652864 0.492065 0.681737 0.521819 0.735542 0.553316 0.751291 0.584814 0.739480 0.681065 0.711922 0.709065 0.715856 0.716065 0.688298 0.716065 0.630555 0.686316 0.617433 0.640814 0.513757 0.644316 0.484887 0.609316 0.364151 0.576065 0.344465 0.551567 0.349714 0.542814 0.360213 0.439567 0.387775 0.388819 0.385148 diff --git a/datasets/检测仪/train/labels/订单1804938_51_7092573.txt b/datasets/检测仪/train/labels/订单1804938_51_7092573.txt new file mode 100644 index 0000000..578ffe1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804938_51_7092573.txt @@ -0,0 +1 @@ +5 0.224479 0.377939 0.185990 0.400254 0.177240 0.589229 0.192995 0.610225 0.177240 0.766396 0.159740 0.830703 0.161497 0.918623 0.196484 0.944873 0.229740 0.955371 0.245482 0.940937 0.406458 0.933066 0.446706 0.948809 0.488698 0.925186 0.520195 0.825449 0.502695 0.790020 0.485208 0.623350 0.509701 0.577422 0.521953 0.401562 0.479948 0.379258 0.451953 0.385820 0.254232 0.388437 0.240234 0.376631 diff --git a/datasets/检测仪/train/labels/订单1804939_51_7092518.txt b/datasets/检测仪/train/labels/订单1804939_51_7092518.txt new file mode 100644 index 0000000..e1cfab5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804939_51_7092518.txt @@ -0,0 +1 @@ +5 0.406159 0.389759 0.383854 0.409440 0.385163 0.566921 0.395664 0.602357 0.393040 0.724401 0.385163 0.767708 0.383854 0.822826 0.400911 0.847760 0.427161 0.856947 0.433724 0.843828 0.513776 0.843828 0.545267 0.859577 0.568893 0.838574 0.582012 0.761146 0.578079 0.727025 0.574141 0.603665 0.596452 0.565612 0.609577 0.414694 0.574141 0.395007 0.554453 0.401569 0.456029 0.404193 0.419284 0.392383 diff --git a/datasets/检测仪/train/labels/订单1804941_51_7092531.txt b/datasets/检测仪/train/labels/订单1804941_51_7092531.txt new file mode 100644 index 0000000..45fec07 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804941_51_7092531.txt @@ -0,0 +1 @@ +5 0.392461 0.312324 0.357474 0.334639 0.369714 0.460625 0.378464 0.476367 0.378464 0.566924 0.369714 0.603662 0.376719 0.645664 0.397708 0.667969 0.427461 0.658779 0.511445 0.654844 0.544701 0.667969 0.562187 0.650908 0.581445 0.593164 0.562187 0.568232 0.558698 0.434375 0.558698 0.480303 0.581445 0.450117 0.591940 0.328076 0.563945 0.311016 0.546445 0.320205 0.429206 0.317578 0.399466 0.311016 diff --git a/datasets/检测仪/train/labels/订单1804942_51_7092582.txt b/datasets/检测仪/train/labels/订单1804942_51_7092582.txt new file mode 100644 index 0000000..9633d0c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804942_51_7092582.txt @@ -0,0 +1 @@ +5 0.502680 0.438290 0.471187 0.460600 0.472933 0.615460 0.492173 0.644330 0.495680 0.769000 0.485173 0.803120 0.495680 0.867430 0.514920 0.894990 0.541173 0.901550 0.558667 0.892360 0.670653 0.896300 0.721400 0.912050 0.737147 0.891050 0.756400 0.825430 0.747640 0.772940 0.733653 0.653520 0.752893 0.606270 0.761640 0.454040 0.724893 0.435670 0.700400 0.439610 0.693400 0.444860 0.549920 0.450100 0.530667 0.440920 0.506173 0.438290 diff --git a/datasets/检测仪/train/labels/订单1804948_51_7092586.txt b/datasets/检测仪/train/labels/订单1804948_51_7092586.txt new file mode 100644 index 0000000..23f5082 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804948_51_7092586.txt @@ -0,0 +1 @@ +5 0.447464 0.467225 0.410719 0.476412 0.410719 0.612892 0.415961 0.635206 0.401961 0.713941 0.391464 0.754627 0.393216 0.804490 0.407216 0.826804 0.443961 0.837304 0.452706 0.825490 0.534954 0.826804 0.541948 0.834676 0.571699 0.843863 0.604941 0.824176 0.617190 0.773000 0.599686 0.745441 0.601438 0.626020 0.634693 0.485598 0.606693 0.469843 0.587438 0.471157 0.580444 0.476412 0.471961 0.473784 0.454458 0.467225 diff --git a/datasets/检测仪/train/labels/订单1804952_51_7092607.txt b/datasets/检测仪/train/labels/订单1804952_51_7092607.txt new file mode 100644 index 0000000..4448645 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804952_51_7092607.txt @@ -0,0 +1 @@ +5 0.549596 0.480343 0.521706 0.501343 0.537396 0.632578 0.565273 0.662765 0.579219 0.762500 0.570508 0.809745 0.584453 0.868794 0.610599 0.895049 0.635000 0.896353 0.650677 0.883235 0.765716 0.875363 0.760495 0.887167 0.784896 0.888480 0.812773 0.862235 0.821497 0.795304 0.795352 0.773000 0.781406 0.645696 0.791862 0.610265 0.776172 0.476412 0.741315 0.458039 0.718659 0.467225 0.708203 0.479029 0.580964 0.486912 0.556562 0.481657 diff --git a/datasets/检测仪/train/labels/订单1804956_51_7092632.txt b/datasets/检测仪/train/labels/订单1804956_51_7092632.txt new file mode 100644 index 0000000..e3f6247 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804956_51_7092632.txt @@ -0,0 +1 @@ +5 0.151117 0.329439 0.111746 0.358311 0.110762 0.409494 0.121588 0.426550 0.131429 0.582722 0.120604 0.597156 0.118633 0.649650 0.160958 0.686394 0.256429 0.686394 0.305642 0.662772 0.453279 0.647028 0.536942 0.661461 0.659975 0.652272 0.687533 0.612906 0.672771 0.375372 0.673754 0.351750 0.656038 0.317628 0.480842 0.326817 0.449342 0.345189 0.293833 0.337311 0.238712 0.312378 0.152100 0.325506 diff --git a/datasets/检测仪/train/labels/订单1804957_51_7092644.txt b/datasets/检测仪/train/labels/订单1804957_51_7092644.txt new file mode 100644 index 0000000..3aa28b9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804957_51_7092644.txt @@ -0,0 +1 @@ +5 0.343030 0.296613 0.323345 0.316300 0.329250 0.482967 0.341065 0.513147 0.337125 0.664067 0.322360 0.720500 0.330235 0.804487 0.348935 0.839920 0.379450 0.843860 0.397165 0.830733 0.471970 0.822860 0.506415 0.833360 0.525120 0.807113 0.532010 0.699500 0.522165 0.660133 0.513305 0.515773 0.522165 0.469840 0.514290 0.304487 0.494605 0.286113 0.478860 0.292680 0.347950 0.295300 diff --git a/datasets/检测仪/train/labels/订单1804959_51_7092668.txt b/datasets/检测仪/train/labels/订单1804959_51_7092668.txt new file mode 100644 index 0000000..f9ca15b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804959_51_7092668.txt @@ -0,0 +1 @@ +5 0.477336 0.430441 0.444095 0.448815 0.426597 0.607604 0.435340 0.637794 0.417843 0.767716 0.403841 0.808391 0.400346 0.887137 0.423091 0.916003 0.615571 0.921254 0.657566 0.900260 0.683806 0.833330 0.671557 0.791332 0.685559 0.666661 0.713552 0.601047 0.741557 0.478997 0.715306 0.450130 0.678558 0.458002 0.515836 0.446194 0.510577 0.435692 0.491338 0.430441 diff --git a/datasets/检测仪/train/labels/订单1804964_51_7092711.txt b/datasets/检测仪/train/labels/订单1804964_51_7092711.txt new file mode 100644 index 0000000..b10dc49 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804964_51_7092711.txt @@ -0,0 +1 @@ +5 0.472865 0.405570 0.434371 0.426557 0.432617 0.601107 0.448363 0.628662 0.437865 0.780888 0.420365 0.828136 0.425614 0.913443 0.453611 0.935746 0.481608 0.940998 0.506111 0.927873 0.647836 0.933125 0.682836 0.947555 0.730073 0.917379 0.738830 0.834693 0.726579 0.797950 0.724825 0.641787 0.742325 0.560417 0.752822 0.434441 0.709079 0.406875 0.682836 0.414748 0.513099 0.416064 0.488611 0.405559 diff --git a/datasets/检测仪/train/labels/订单1804971_51_7092747.txt b/datasets/检测仪/train/labels/订单1804971_51_7092747.txt new file mode 100644 index 0000000..a2722a3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804971_51_7092747.txt @@ -0,0 +1 @@ +5 0.572833 0.175456 0.539758 0.172189 0.522608 0.190156 0.510358 0.275089 0.512808 0.322456 0.514033 0.462922 0.501783 0.518456 0.494433 0.662183 0.507908 0.694850 0.648779 0.699750 0.662254 0.707917 0.681854 0.680150 0.690429 0.528256 0.683079 0.472722 0.689204 0.333889 0.702679 0.297956 0.707579 0.211389 0.690429 0.180356 0.670829 0.170556 0.664704 0.190156 0.589983 0.193422 0.576508 0.175456 diff --git a/datasets/检测仪/train/labels/订单1804974_51_7092715.txt b/datasets/检测仪/train/labels/订单1804974_51_7092715.txt new file mode 100644 index 0000000..5a3a511 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804974_51_7092715.txt @@ -0,0 +1 @@ +5 0.442122 0.350212 0.415989 0.373079 0.407278 0.507008 0.439944 0.564175 0.435589 0.691575 0.422522 0.729142 0.422522 0.804271 0.446478 0.832038 0.481322 0.835304 0.496567 0.823871 0.629411 0.827138 0.646833 0.840204 0.677322 0.841838 0.696917 0.823871 0.712161 0.748738 0.701272 0.703008 0.686033 0.559275 0.703450 0.513542 0.705628 0.353479 0.681678 0.337146 0.653367 0.338779 0.644656 0.342046 0.481322 0.346946 0.444300 0.346946 diff --git a/datasets/检测仪/train/labels/订单1804977_51_7092908.txt b/datasets/检测仪/train/labels/订单1804977_51_7092908.txt new file mode 100644 index 0000000..3cd4b3a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804977_51_7092908.txt @@ -0,0 +1 @@ +5 0.185167 0.498856 0.159033 0.508656 0.159033 0.516825 0.165567 0.526625 0.156858 0.595225 0.143792 0.609925 0.135083 0.624625 0.145967 0.637687 0.230900 0.658925 0.259217 0.654025 0.387700 0.667087 0.429075 0.681787 0.609833 0.704656 0.646850 0.688325 0.640317 0.671988 0.620717 0.662188 0.642500 0.549494 0.659917 0.528256 0.633783 0.508656 0.614183 0.507025 0.455208 0.502125 0.413833 0.508656 0.287525 0.502125 0.252683 0.493956 0.202592 0.493956 diff --git a/datasets/检测仪/train/labels/订单1804981_51_7092840.txt b/datasets/检测仪/train/labels/订单1804981_51_7092840.txt new file mode 100644 index 0000000..f1626c2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804981_51_7092840.txt @@ -0,0 +1 @@ +5 0.490092 0.412323 0.461785 0.425384 0.440000 0.583819 0.457428 0.639350 0.444357 0.768386 0.416050 0.843514 0.416050 0.926811 0.435643 0.964380 0.479199 0.974183 0.500984 0.961112 0.659961 0.969281 0.673018 0.983976 0.707861 0.988878 0.738360 0.967648 0.762310 0.874547 0.742703 0.819016 0.738360 0.663848 0.766667 0.591988 0.773202 0.438455 0.747060 0.417224 0.718753 0.415591 0.712218 0.420492 0.538005 0.410689 0.507507 0.405787 diff --git a/datasets/检测仪/train/labels/订单1804982_51_7092805.txt b/datasets/检测仪/train/labels/订单1804982_51_7092805.txt new file mode 100644 index 0000000..85d4fce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804982_51_7092805.txt @@ -0,0 +1 @@ +5 0.367806 0.365015 0.332993 0.381350 0.330089 0.538145 0.362007 0.569180 0.356199 0.693310 0.335897 0.725975 0.335897 0.792945 0.364902 0.825610 0.411323 0.825610 0.422931 0.810910 0.573783 0.814175 0.599893 0.825610 0.640506 0.827240 0.657913 0.817440 0.684023 0.737410 0.666616 0.711275 0.672416 0.570815 0.707229 0.525080 0.721741 0.379715 0.689822 0.356850 0.649210 0.356850 0.631803 0.363380 0.425826 0.366650 0.391012 0.360115 diff --git a/datasets/检测仪/train/labels/订单1804983_51_7092775.txt b/datasets/检测仪/train/labels/订单1804983_51_7092775.txt new file mode 100644 index 0000000..ae44c2e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804983_51_7092775.txt @@ -0,0 +1 @@ +5 0.276979 0.406816 0.234987 0.434375 0.273477 0.604980 0.283971 0.637783 0.304974 0.791328 0.299727 0.854326 0.317227 0.931748 0.359219 0.964561 0.397708 0.959307 0.415208 0.944873 0.451953 0.942246 0.560443 0.929121 0.600690 0.938311 0.640938 0.902881 0.637435 0.805762 0.616432 0.766396 0.579688 0.608916 0.591940 0.566924 0.565690 0.402881 0.525443 0.381885 0.499206 0.389756 0.322474 0.410752 0.287474 0.405498 diff --git a/datasets/检测仪/train/labels/订单1804987_51_7093078.txt b/datasets/检测仪/train/labels/订单1804987_51_7093078.txt new file mode 100644 index 0000000..1527352 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804987_51_7093078.txt @@ -0,0 +1 @@ +5 0.396180 0.398973 0.373545 0.427847 0.379450 0.454093 0.388305 0.603700 0.380435 0.639133 0.400120 0.662753 0.545785 0.648320 0.570395 0.631260 0.684565 0.622073 0.719015 0.632573 0.783975 0.614200 0.803660 0.590580 0.803660 0.557767 0.793820 0.552520 0.781025 0.442280 0.790865 0.427847 0.792835 0.401600 0.774135 0.384540 0.703265 0.376667 0.680630 0.388480 0.558580 0.408160 0.537915 0.396353 0.402085 0.396353 diff --git a/datasets/检测仪/train/labels/订单1804992_51_7093002.txt b/datasets/检测仪/train/labels/订单1804992_51_7093002.txt new file mode 100644 index 0000000..a60eac2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804992_51_7093002.txt @@ -0,0 +1 @@ +5 0.631982 0.283460 0.591786 0.305770 0.595288 0.460623 0.609263 0.477690 0.604021 0.589239 0.588295 0.633858 0.597028 0.688971 0.625000 0.721782 0.647719 0.720467 0.656452 0.711280 0.773560 0.715216 0.820749 0.729654 0.834724 0.713910 0.860945 0.650917 0.845219 0.615484 0.839965 0.489498 0.862696 0.429126 0.871429 0.308391 0.852200 0.283460 0.824240 0.280839 0.654712 0.287396 0.633733 0.284775 diff --git a/datasets/检测仪/train/labels/订单1804995_51_7092930.txt b/datasets/检测仪/train/labels/订单1804995_51_7092930.txt new file mode 100644 index 0000000..945f0ae --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804995_51_7092930.txt @@ -0,0 +1 @@ +5 0.329466 0.342510 0.292721 0.371387 0.332969 0.540674 0.360964 0.569541 0.395964 0.716523 0.399466 0.787393 0.422214 0.858262 0.446706 0.891064 0.488698 0.883193 0.507943 0.874004 0.656680 0.846445 0.702174 0.853008 0.731927 0.817578 0.731927 0.736211 0.695182 0.692900 0.658424 0.538047 0.661927 0.488184 0.628685 0.328076 0.584935 0.304453 0.553438 0.318887 0.380221 0.342510 0.331224 0.341201 diff --git a/datasets/检测仪/train/labels/订单1804998_51_7093003.txt b/datasets/检测仪/train/labels/订单1804998_51_7093003.txt new file mode 100644 index 0000000..9e215fd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1804998_51_7093003.txt @@ -0,0 +1 @@ +5 0.355801 0.570859 0.326274 0.602357 0.324307 0.641725 0.312495 0.855638 0.299702 0.921257 0.313481 0.923880 0.336118 0.952747 0.540840 0.960625 0.570371 0.944876 0.766235 0.954063 0.820371 0.975059 0.910923 0.968496 0.940449 0.938314 0.944385 0.885820 0.930605 0.877949 0.908950 0.700781 0.921748 0.691595 0.927651 0.652227 0.885332 0.614167 0.793794 0.597109 0.750488 0.611543 0.588086 0.606296 0.509346 0.583984 0.359741 0.572174 diff --git a/datasets/检测仪/train/labels/订单1805001_51_7093034.txt b/datasets/检测仪/train/labels/订单1805001_51_7093034.txt new file mode 100644 index 0000000..6288bfe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805001_51_7093034.txt @@ -0,0 +1 @@ +5 0.238367 0.473787 0.213867 0.490846 0.229617 0.647012 0.248861 0.679825 0.245361 0.800558 0.234867 0.859613 0.254111 0.914729 0.276861 0.938354 0.310106 0.940979 0.322356 0.927854 0.441339 0.913417 0.474583 0.919979 0.509578 0.892421 0.516578 0.835992 0.492083 0.792683 0.478083 0.658825 0.495583 0.597146 0.490333 0.486908 0.444839 0.465913 0.425589 0.473787 0.282111 0.479038 0.254111 0.472475 diff --git a/datasets/检测仪/train/labels/订单1805002_51_7093143.txt b/datasets/检测仪/train/labels/订单1805002_51_7093143.txt new file mode 100644 index 0000000..9997128 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805002_51_7093143.txt @@ -0,0 +1 @@ +5 0.125367 0.589225 0.104956 0.607600 0.227444 0.716520 0.309100 0.803135 0.314933 0.829385 0.376178 0.879250 0.408256 0.888440 0.443244 0.879250 0.452000 0.866130 0.568644 0.837255 0.600733 0.842505 0.612389 0.834630 0.638644 0.813635 0.621144 0.761140 0.568644 0.749330 0.498656 0.667965 0.492822 0.636470 0.399500 0.557730 0.347011 0.543295 0.335344 0.553790 0.166200 0.586600 0.128289 0.586600 diff --git a/datasets/检测仪/train/labels/订单1805005_51_7093121.txt b/datasets/检测仪/train/labels/订单1805005_51_7093121.txt new file mode 100644 index 0000000..bcf8ac3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805005_51_7093121.txt @@ -0,0 +1 @@ +5 0.226237 0.419941 0.182487 0.447500 0.180742 0.627285 0.208737 0.679785 0.196484 0.826758 0.191237 0.874004 0.205234 0.938311 0.255977 0.959307 0.404714 0.942246 0.444961 0.952744 0.478203 0.934375 0.509701 0.860879 0.493945 0.837266 0.509701 0.702090 0.546445 0.640410 0.581445 0.469805 0.539440 0.431748 0.504453 0.431748 0.479948 0.442246 0.296224 0.440937 0.276979 0.426504 0.231484 0.419941 diff --git a/datasets/检测仪/train/labels/订单1805007_51_7093074.txt b/datasets/检测仪/train/labels/订单1805007_51_7093074.txt new file mode 100644 index 0000000..5f0f0d5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805007_51_7093074.txt @@ -0,0 +1 @@ +5 0.205087 0.416006 0.169880 0.429131 0.164007 0.538052 0.193352 0.562988 0.216823 0.662725 0.172806 0.695532 0.202151 0.761152 0.237358 0.782148 0.281376 0.786084 0.310710 0.775586 0.454487 0.767710 0.492631 0.774272 0.524902 0.774272 0.571856 0.753276 0.586517 0.690283 0.554247 0.667974 0.539574 0.557739 0.545448 0.519683 0.536638 0.426504 0.498493 0.410757 0.457424 0.410757 0.210950 0.419941 diff --git a/datasets/检测仪/train/labels/订单1805010_51_7093100.txt b/datasets/检测仪/train/labels/订单1805010_51_7093100.txt new file mode 100644 index 0000000..9ef77f9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805010_51_7093100.txt @@ -0,0 +1 @@ +5 0.649687 0.471123 0.607682 0.477686 0.558698 0.577422 0.551693 0.616787 0.499206 0.732275 0.458958 0.809697 0.474701 0.830703 0.492201 0.833320 0.588438 0.855635 0.630430 0.879258 0.647930 0.871387 0.688177 0.812324 0.686432 0.784766 0.737174 0.687656 0.768672 0.662725 0.824661 0.551172 0.826406 0.518359 0.798411 0.519678 0.787917 0.524922 0.656680 0.484238 0.653177 0.473740 diff --git a/datasets/检测仪/train/labels/订单1805011_51_7093197.txt b/datasets/检测仪/train/labels/订单1805011_51_7093197.txt new file mode 100644 index 0000000..b497c87 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805011_51_7093197.txt @@ -0,0 +1 @@ +5 0.308333 0.456712 0.285590 0.480327 0.313577 0.635183 0.329333 0.662740 0.352077 0.787413 0.345077 0.818913 0.360821 0.900279 0.394077 0.905529 0.425564 0.900279 0.534051 0.875346 0.563795 0.888471 0.584795 0.870096 0.600551 0.797913 0.584795 0.778231 0.560295 0.656183 0.579551 0.602375 0.567295 0.471144 0.542808 0.448837 0.514808 0.448837 0.500808 0.452769 0.353821 0.464587 0.345077 0.461962 0.318833 0.455394 diff --git a/datasets/检测仪/train/labels/订单1805012_51_7093169.txt b/datasets/检测仪/train/labels/订单1805012_51_7093169.txt new file mode 100644 index 0000000..e9b5ab0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805012_51_7093169.txt @@ -0,0 +1 @@ +5 0.647930 0.339883 0.619935 0.360879 0.649687 0.476367 0.667174 0.496055 0.679427 0.578730 0.675924 0.612852 0.696927 0.666660 0.716172 0.675840 0.740664 0.670596 0.742422 0.661406 0.831654 0.656162 0.835156 0.660098 0.863151 0.658779 0.880651 0.641719 0.871901 0.557734 0.845651 0.481621 0.854401 0.451436 0.842161 0.341201 0.807161 0.324141 0.791419 0.330703 0.684674 0.346445 0.649687 0.342510 diff --git a/datasets/检测仪/train/labels/订单1805013_51_7093172.txt b/datasets/检测仪/train/labels/订单1805013_51_7093172.txt new file mode 100644 index 0000000..0507b87 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805013_51_7093172.txt @@ -0,0 +1 @@ +5 0.007404 0.576158 0.002158 0.611588 0.007404 0.812377 0.112391 0.834693 0.180628 0.818945 0.418607 0.813689 0.478101 0.828125 0.726571 0.832059 0.768566 0.797941 0.763306 0.766445 0.733566 0.606342 0.735314 0.584027 0.707322 0.563033 0.472842 0.559098 0.441352 0.572223 0.234877 0.574846 0.147391 0.556475 0.017910 0.570912 diff --git a/datasets/检测仪/train/labels/订单1805016_51_7093173.txt b/datasets/检测仪/train/labels/订单1805016_51_7093173.txt new file mode 100644 index 0000000..b5421a2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805016_51_7093173.txt @@ -0,0 +1 @@ +5 0.355600 0.463288 0.331100 0.481658 0.331100 0.653575 0.345100 0.679825 0.352100 0.809746 0.338100 0.876675 0.353850 0.947538 0.397594 0.975100 0.413344 0.963287 0.544578 0.947538 0.560322 0.954100 0.579572 0.954100 0.612817 0.937042 0.619817 0.849112 0.602317 0.828117 0.604067 0.683758 0.618067 0.635204 0.607567 0.482971 0.584822 0.452788 0.553322 0.454100 0.537578 0.461975 0.388844 0.465913 0.367850 0.461975 diff --git a/datasets/检测仪/train/labels/订单1805024_51_7093303.txt b/datasets/检测仪/train/labels/订单1805024_51_7093303.txt new file mode 100644 index 0000000..652d419 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805024_51_7093303.txt @@ -0,0 +1 @@ +5 0.373102 0.347804 0.341609 0.370113 0.336354 0.538090 0.357350 0.574835 0.345104 0.700825 0.334606 0.742821 0.343356 0.824184 0.369606 0.845182 0.392350 0.845182 0.413345 0.835998 0.534086 0.828116 0.539329 0.835998 0.570822 0.838620 0.600567 0.821563 0.612824 0.749384 0.598819 0.720512 0.605822 0.582717 0.640822 0.530217 0.647813 0.388490 0.614572 0.355677 0.593576 0.363550 0.579572 0.370113 0.427350 0.355677 0.409850 0.355677 0.385347 0.347804 diff --git a/datasets/检测仪/train/labels/订单1805027_51_7093316.txt b/datasets/检测仪/train/labels/订单1805027_51_7093316.txt new file mode 100644 index 0000000..327a9d6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805027_51_7093316.txt @@ -0,0 +1 @@ +5 0.441458 0.225713 0.406458 0.248018 0.408216 0.429121 0.422214 0.480303 0.415208 0.644346 0.397708 0.696846 0.413464 0.787393 0.439714 0.813643 0.476458 0.824141 0.497448 0.809697 0.656680 0.812324 0.665430 0.820205 0.703919 0.833320 0.749414 0.801826 0.766914 0.707344 0.745924 0.654844 0.747669 0.488184 0.772161 0.389756 0.780911 0.244082 0.723177 0.216523 0.698672 0.221777 0.688177 0.227021 0.479948 0.232275 0.446706 0.225713 diff --git a/datasets/检测仪/train/labels/订单1805029_51_7093369.txt b/datasets/检测仪/train/labels/订单1805029_51_7093369.txt new file mode 100644 index 0000000..b988e3f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805029_51_7093369.txt @@ -0,0 +1 @@ +5 0.260355 0.271680 0.224920 0.297927 0.222955 0.341233 0.229840 0.355667 0.217045 0.572207 0.200315 0.577453 0.192440 0.611573 0.225905 0.656193 0.480825 0.650947 0.606810 0.658820 0.641260 0.678507 0.730825 0.669320 0.752480 0.645693 0.753465 0.468527 0.758385 0.461967 0.763305 0.429160 0.742640 0.400287 0.676695 0.371420 0.645195 0.375353 0.507400 0.347793 0.485750 0.339920 0.263305 0.275613 diff --git a/datasets/检测仪/train/labels/订单1805031_51_7093371.txt b/datasets/检测仪/train/labels/订单1805031_51_7093371.txt new file mode 100644 index 0000000..b1559d2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805031_51_7093371.txt @@ -0,0 +1 @@ +5 0.415094 0.423917 0.397594 0.435729 0.397594 0.530217 0.411594 0.551212 0.409844 0.644392 0.395844 0.665388 0.402844 0.708696 0.416844 0.732317 0.441339 0.738879 0.458839 0.731004 0.534078 0.728379 0.546328 0.733629 0.565572 0.733629 0.581322 0.717879 0.593572 0.666700 0.572572 0.640454 0.572572 0.556462 0.583072 0.532842 0.583072 0.429167 0.560322 0.413417 0.548078 0.421292 0.423839 0.426542 diff --git a/datasets/检测仪/train/labels/订单1805032_51_7093384.txt b/datasets/检测仪/train/labels/订单1805032_51_7093384.txt new file mode 100644 index 0000000..280c753 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805032_51_7093384.txt @@ -0,0 +1 @@ +5 0.546445 0.396318 0.513203 0.368760 0.315469 0.374004 0.287474 0.383193 0.142240 0.393691 0.096745 0.385820 0.005768 0.396318 0.002266 0.522305 0.005768 0.548545 0.100247 0.564297 0.131745 0.552480 0.283971 0.549863 0.317227 0.561670 0.521953 0.568232 0.548190 0.548545 0.549948 0.524922 0.535951 0.522305 0.546445 0.398945 diff --git a/datasets/检测仪/train/labels/订单1805037_51_7093431.txt b/datasets/检测仪/train/labels/订单1805037_51_7093431.txt new file mode 100644 index 0000000..13ecff3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805037_51_7093431.txt @@ -0,0 +1 @@ +5 0.093255 0.435684 0.058255 0.455371 0.065260 0.478994 0.096745 0.486865 0.116003 0.578730 0.112500 0.594482 0.110755 0.614160 0.145742 0.631221 0.262982 0.620723 0.301471 0.602354 0.460703 0.568232 0.513203 0.572168 0.698672 0.538047 0.710924 0.515742 0.658424 0.354326 0.633932 0.341201 0.450208 0.372695 0.233229 0.418623 0.206992 0.412061 0.117747 0.433066 diff --git a/datasets/检测仪/train/labels/订单1805041_51_7093497.txt b/datasets/检测仪/train/labels/订单1805041_51_7093497.txt new file mode 100644 index 0000000..11c8ce4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805041_51_7093497.txt @@ -0,0 +1 @@ +5 0.233229 0.456680 0.194740 0.480303 0.205234 0.640410 0.220990 0.678467 0.219232 0.834639 0.201732 0.891064 0.222734 0.997363 0.257852 1.000000 0.277161 1.000000 0.292721 0.989492 0.437956 0.984238 0.457201 0.993428 0.490456 0.996055 0.523698 0.963242 0.537695 0.871387 0.518451 0.841201 0.504453 0.673223 0.523698 0.619414 0.518451 0.464561 0.483451 0.443564 0.457201 0.443564 0.450208 0.451436 0.273477 0.459307 0.240234 0.450117 diff --git a/datasets/检测仪/train/labels/订单1805042_51_7093478.txt b/datasets/检测仪/train/labels/订单1805042_51_7093478.txt new file mode 100644 index 0000000..b14eaf9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805042_51_7093478.txt @@ -0,0 +1 @@ +5 0.436509 0.287396 0.408950 0.312331 0.406001 0.498678 0.416826 0.568236 0.407969 0.724401 0.398125 0.790020 0.395171 0.884505 0.418794 0.925189 0.443403 0.923880 0.456196 0.914694 0.550684 0.918626 0.553638 0.926504 0.576274 0.938314 0.604819 0.908132 0.613677 0.828079 0.607769 0.758522 0.608755 0.585293 0.617612 0.539362 0.633359 0.325456 0.611709 0.293958 0.590054 0.296582 0.581196 0.304453 0.462100 0.299206 0.458164 0.293958 0.439463 0.287396 diff --git a/datasets/检测仪/train/labels/订单1805043_51_7093500.txt b/datasets/检测仪/train/labels/订单1805043_51_7093500.txt new file mode 100644 index 0000000..38410ed --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805043_51_7093500.txt @@ -0,0 +1 @@ +5 0.501181 0.351704 0.477914 0.359576 0.470936 0.440943 0.480245 0.452751 0.459294 0.507872 0.454647 0.530182 0.452316 0.562984 0.461626 0.577422 0.496534 0.582673 0.505828 0.576116 0.584939 0.577422 0.589601 0.586609 0.612868 0.591860 0.638466 0.576116 0.647776 0.531497 0.650092 0.459317 0.661733 0.451436 0.687331 0.370078 0.664049 0.350389 0.645445 0.358261 0.510491 0.355640 0.505828 0.351704 diff --git a/datasets/检测仪/train/labels/订单1805049_51_7093575.txt b/datasets/检测仪/train/labels/订单1805049_51_7093575.txt new file mode 100644 index 0000000..9e657b8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805049_51_7093575.txt @@ -0,0 +1 @@ +5 0.331200 0.619400 0.303200 0.627270 0.301453 0.643020 0.310200 0.661390 0.299707 0.717820 0.289200 0.732260 0.282200 0.748000 0.301453 0.767690 0.369693 0.778190 0.413440 0.771630 0.534173 0.779500 0.716147 0.805750 0.738893 0.786060 0.738893 0.767690 0.735400 0.664020 0.738893 0.649580 0.723147 0.639080 0.562173 0.628580 0.551667 0.635140 0.423933 0.629890 0.397693 0.622020 0.334693 0.615460 diff --git a/datasets/检测仪/train/labels/订单1805050_51_7093637.txt b/datasets/检测仪/train/labels/订单1805050_51_7093637.txt new file mode 100644 index 0000000..b735055 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805050_51_7093637.txt @@ -0,0 +1 @@ +5 0.117612 0.423880 0.084150 0.448815 0.081196 0.480306 0.089072 0.499993 0.082183 0.627292 0.074307 0.633854 0.068403 0.671908 0.101865 0.709967 0.113677 0.709967 0.180605 0.724401 0.216040 0.708652 0.334150 0.707344 0.349897 0.702096 0.407969 0.716530 0.527061 0.719154 0.551670 0.694219 0.548716 0.671908 0.549702 0.501309 0.558560 0.473750 0.538872 0.452747 0.394189 0.439629 0.370566 0.448815 0.239663 0.442253 0.213086 0.431751 0.182573 0.422565 0.120566 0.421257 diff --git a/datasets/检测仪/train/labels/订单1805051_51_7093553.txt b/datasets/检测仪/train/labels/订单1805051_51_7093553.txt new file mode 100644 index 0000000..6750f0c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805051_51_7093553.txt @@ -0,0 +1 @@ +5 0.247225 0.442244 0.203475 0.454050 0.199975 0.473738 0.205225 0.481612 0.173733 0.572163 0.154483 0.574788 0.145733 0.590538 0.156233 0.610219 0.245475 0.639094 0.292717 0.640406 0.441450 0.667963 0.479942 0.688962 0.667167 0.733581 0.695167 0.724394 0.702167 0.703394 0.744158 0.587912 0.763408 0.565600 0.751158 0.549850 0.555183 0.499981 0.509692 0.507856 0.360958 0.471112 0.324217 0.450112 0.255975 0.442244 diff --git a/datasets/检测仪/train/labels/订单1805056_51_7093579.txt b/datasets/检测仪/train/labels/订单1805056_51_7093579.txt new file mode 100644 index 0000000..8844edb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805056_51_7093579.txt @@ -0,0 +1 @@ +5 0.280482 0.269023 0.255977 0.280830 0.224479 0.392383 0.233229 0.418623 0.212240 0.509180 0.192995 0.526240 0.184245 0.569541 0.198242 0.589229 0.213984 0.593164 0.236732 0.587920 0.317227 0.597100 0.324219 0.603662 0.341719 0.608916 0.366211 0.597100 0.385469 0.553799 0.383711 0.520986 0.404714 0.442246 0.425703 0.416006 0.460703 0.314951 0.441458 0.293955 0.422214 0.301826 0.303229 0.275586 0.278724 0.270332 diff --git a/datasets/检测仪/train/labels/订单1805057_51_7093593.txt b/datasets/检测仪/train/labels/订单1805057_51_7093593.txt new file mode 100644 index 0000000..e0e2590 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805057_51_7093593.txt @@ -0,0 +1 @@ +5 0.469154 0.429128 0.446842 0.447500 0.452096 0.475059 0.469154 0.576107 0.461283 0.599733 0.463906 0.610228 0.487526 0.625977 0.505898 0.623353 0.643691 0.604980 0.656816 0.591855 0.784115 0.578737 0.812988 0.587923 0.870729 0.569551 0.890417 0.557734 0.885163 0.531491 0.877292 0.524928 0.862852 0.447500 0.872044 0.438314 0.875977 0.419941 0.847109 0.401569 0.778867 0.402884 0.759180 0.412070 0.635820 0.431751 0.604323 0.418626 0.471777 0.430443 diff --git a/datasets/检测仪/train/labels/订单1805058_51_7093664.txt b/datasets/检测仪/train/labels/订单1805058_51_7093664.txt new file mode 100644 index 0000000..20f1e2d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805058_51_7093664.txt @@ -0,0 +1 @@ +5 0.199867 0.269062 0.164872 0.282183 0.166622 0.307121 0.185872 0.316304 0.194622 0.397671 0.175372 0.409483 0.171872 0.429167 0.203367 0.463288 0.296106 0.468537 0.329350 0.461975 0.492083 0.458037 0.546328 0.468537 0.717806 0.473787 0.765050 0.454100 0.763300 0.435729 0.754550 0.309746 0.763300 0.286121 0.733550 0.266437 0.712556 0.267750 0.532328 0.265125 0.504333 0.275625 0.339850 0.273000 0.280361 0.261188 0.215617 0.267750 diff --git a/datasets/检测仪/train/labels/订单1805062_51_7093701.txt b/datasets/检测仪/train/labels/订单1805062_51_7093701.txt new file mode 100644 index 0000000..bc4be42 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805062_51_7093701.txt @@ -0,0 +1 @@ +5 0.381844 0.435729 0.355600 0.448850 0.332850 0.606333 0.308356 0.723129 0.290856 0.750688 0.280361 0.805808 0.294356 0.824179 0.322356 0.834679 0.341600 0.825492 0.436089 0.839929 0.444839 0.849112 0.465833 0.856988 0.493833 0.842554 0.528828 0.769062 0.520078 0.745442 0.535828 0.641767 0.558572 0.616829 0.593572 0.477725 0.574322 0.454100 0.542828 0.454100 0.535828 0.459350 0.413344 0.444917 0.380094 0.433104 diff --git a/datasets/检测仪/train/labels/订单1805069_51_7093736.txt b/datasets/检测仪/train/labels/订单1805069_51_7093736.txt new file mode 100644 index 0000000..2c0608b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805069_51_7093736.txt @@ -0,0 +1 @@ +5 0.471198 0.375322 0.439714 0.389756 0.411706 0.562979 0.425703 0.612852 0.406458 0.758525 0.387214 0.804453 0.378464 0.871387 0.397708 0.897627 0.444961 0.910752 0.451953 0.897627 0.591940 0.902881 0.602435 0.916006 0.630430 0.923877 0.663685 0.908125 0.679427 0.822822 0.696927 0.657471 0.696927 0.631221 0.730169 0.561670 0.759922 0.425186 0.717917 0.397627 0.689922 0.398945 0.520195 0.391064 0.476458 0.375322 diff --git a/datasets/检测仪/train/labels/订单1805072_51_7093756.txt b/datasets/检测仪/train/labels/订单1805072_51_7093756.txt new file mode 100644 index 0000000..2c978c4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805072_51_7093756.txt @@ -0,0 +1 @@ +5 0.462461 0.467178 0.425703 0.486865 0.413464 0.652227 0.423958 0.690283 0.415208 0.809697 0.394219 0.850381 0.406458 0.916006 0.423958 0.938311 0.439714 0.942246 0.469453 0.935684 0.584935 0.947500 0.591940 0.956680 0.621680 0.961934 0.647930 0.943564 0.677682 0.877939 0.661927 0.847764 0.674180 0.704717 0.702174 0.678467 0.744167 0.513115 0.705677 0.477686 0.679427 0.484238 0.670677 0.490801 0.511445 0.485557 0.467708 0.467178 diff --git a/datasets/检测仪/train/labels/订单1805074_51_7093777.txt b/datasets/检测仪/train/labels/订单1805074_51_7093777.txt new file mode 100644 index 0000000..e97197b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805074_51_7093777.txt @@ -0,0 +1 @@ +5 0.439714 0.412061 0.409961 0.427812 0.362721 0.565605 0.366211 0.602354 0.331224 0.721777 0.299727 0.762461 0.283971 0.830703 0.297982 0.855635 0.327721 0.870068 0.345221 0.860879 0.458958 0.884502 0.462461 0.895000 0.502695 0.908125 0.525443 0.892383 0.572695 0.824141 0.563945 0.790020 0.595443 0.649600 0.633932 0.616787 0.686432 0.473740 0.660182 0.444873 0.628685 0.444873 0.619935 0.447500 0.478203 0.427812 0.465951 0.419941 0.443203 0.413379 diff --git a/datasets/检测仪/train/labels/订单1805075_51_7093787.txt b/datasets/检测仪/train/labels/订单1805075_51_7093787.txt new file mode 100644 index 0000000..77da514 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805075_51_7093787.txt @@ -0,0 +1 @@ +5 0.458933 0.368740 0.430933 0.388420 0.429187 0.544590 0.437933 0.569530 0.430933 0.658770 0.411693 0.688950 0.429187 0.742760 0.444933 0.761130 0.460680 0.766380 0.476427 0.757190 0.579667 0.758500 0.602413 0.767690 0.625160 0.761130 0.647907 0.703390 0.640907 0.681080 0.653160 0.576090 0.674160 0.543280 0.700400 0.405490 0.672400 0.376610 0.658413 0.379240 0.644413 0.388420 0.499173 0.385800 0.492173 0.373990 0.458933 0.367430 diff --git a/datasets/检测仪/train/labels/订单1805077_51_7093798.txt b/datasets/检测仪/train/labels/订单1805077_51_7093798.txt new file mode 100644 index 0000000..44ffb9e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805077_51_7093798.txt @@ -0,0 +1 @@ +5 0.404714 0.325449 0.374961 0.346445 0.387214 0.526240 0.406458 0.555107 0.422214 0.721777 0.415208 0.784766 0.434453 0.876631 0.462461 0.908125 0.499206 0.916006 0.518451 0.896318 0.691680 0.884502 0.702174 0.896318 0.758164 0.908125 0.787917 0.881885 0.793164 0.769023 0.759922 0.728340 0.735417 0.555107 0.745924 0.486865 0.723177 0.316260 0.682930 0.293955 0.660182 0.296582 0.451953 0.325449 0.408216 0.322822 diff --git a/datasets/检测仪/train/labels/订单1805081_51_7093845.txt b/datasets/检测仪/train/labels/订单1805081_51_7093845.txt new file mode 100644 index 0000000..42616bc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805081_51_7093845.txt @@ -0,0 +1 @@ +5 0.322474 0.393691 0.292721 0.416006 0.304974 0.541982 0.322474 0.568232 0.327721 0.669277 0.324219 0.704717 0.325977 0.758525 0.343464 0.775586 0.376719 0.780830 0.392461 0.772959 0.481706 0.766396 0.492201 0.774268 0.513203 0.774268 0.539440 0.746709 0.546445 0.692900 0.535951 0.670596 0.527201 0.564297 0.534193 0.528857 0.535951 0.401562 0.502695 0.383193 0.481706 0.391064 0.343464 0.400254 0.324219 0.391064 diff --git a/datasets/检测仪/train/labels/订单1805082_51_7093857.txt b/datasets/检测仪/train/labels/订单1805082_51_7093857.txt new file mode 100644 index 0000000..11e7a3d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805082_51_7093857.txt @@ -0,0 +1 @@ +5 0.364466 0.389756 0.331224 0.412061 0.359219 0.583984 0.380221 0.618105 0.395964 0.758525 0.388958 0.821514 0.408216 0.893691 0.437956 0.927813 0.472956 0.927813 0.485208 0.913379 0.637435 0.887129 0.653177 0.906816 0.688177 0.900254 0.703919 0.879258 0.712669 0.792646 0.684674 0.757207 0.656680 0.598418 0.670677 0.545918 0.653177 0.398945 0.614687 0.374004 0.588438 0.375322 0.584935 0.381885 0.411706 0.393691 0.388958 0.392383 0.364466 0.384502 diff --git a/datasets/检测仪/train/labels/订单1805083_51_7093869.txt b/datasets/检测仪/train/labels/订单1805083_51_7093869.txt new file mode 100644 index 0000000..8790d48 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805083_51_7093869.txt @@ -0,0 +1 @@ +5 0.093255 0.391064 0.077500 0.409443 0.103750 0.570859 0.124753 0.591855 0.131745 0.690283 0.145742 0.720459 0.136992 0.769023 0.152747 0.837266 0.184245 0.864824 0.231484 0.866133 0.245482 0.846445 0.355716 0.822822 0.366211 0.825449 0.401211 0.828076 0.427461 0.808389 0.420456 0.709961 0.408216 0.669277 0.387214 0.556426 0.401211 0.506553 0.359219 0.358262 0.334727 0.350381 0.317227 0.360879 0.119492 0.389756 0.095000 0.389756 diff --git a/datasets/检测仪/train/labels/订单1805085_51_7093881.txt b/datasets/检测仪/train/labels/订单1805085_51_7093881.txt new file mode 100644 index 0000000..4eba195 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805085_51_7093881.txt @@ -0,0 +1 @@ +5 0.421908 0.350391 0.396973 0.374010 0.389102 0.505241 0.399603 0.531491 0.391725 0.637786 0.379915 0.670599 0.382539 0.727025 0.398288 0.748027 0.425846 0.753275 0.431094 0.741465 0.504590 0.740150 0.515085 0.751960 0.534772 0.753275 0.546582 0.737526 0.558392 0.677161 0.546582 0.646973 0.551829 0.540677 0.578079 0.501309 0.579388 0.377949 0.553145 0.356947 0.540020 0.366133 0.441595 0.362201 diff --git a/datasets/检测仪/train/labels/订单1805086_51_7093891.txt b/datasets/检测仪/train/labels/订单1805086_51_7093891.txt new file mode 100644 index 0000000..1a94850 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805086_51_7093891.txt @@ -0,0 +1 @@ +5 0.475322 0.448805 0.449078 0.467180 0.475322 0.570855 0.495744 0.591850 0.507411 0.661405 0.513244 0.725710 0.545322 0.742770 0.597811 0.744080 0.603644 0.737520 0.729044 0.729645 0.743622 0.736205 0.769878 0.734895 0.801956 0.719145 0.810700 0.667965 0.787367 0.644345 0.755289 0.568230 0.758211 0.545920 0.749456 0.456680 0.705711 0.439620 0.685300 0.447495 0.524900 0.450120 0.478244 0.450120 diff --git a/datasets/检测仪/train/labels/订单1805089_51_7093908.txt b/datasets/检测仪/train/labels/订单1805089_51_7093908.txt new file mode 100644 index 0000000..0f84a45 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805089_51_7093908.txt @@ -0,0 +1 @@ +5 0.263261 0.475059 0.205227 0.490811 0.214386 0.619419 0.241875 0.650913 0.251045 0.758525 0.223557 0.803145 0.235773 0.859575 0.281580 0.889761 0.324341 0.889761 0.351830 0.875322 0.525920 0.870073 0.532023 0.879263 0.580886 0.880571 0.629761 0.862202 0.651136 0.791333 0.617545 0.763774 0.608375 0.646978 0.641977 0.484248 0.547295 0.477686 0.309068 0.480312 0.275477 0.478999 diff --git a/datasets/检测仪/train/labels/订单1805091_51_7093955.txt b/datasets/检测仪/train/labels/订单1805091_51_7093955.txt new file mode 100644 index 0000000..2c26132 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805091_51_7093955.txt @@ -0,0 +1 @@ +5 0.336350 0.232317 0.299606 0.253312 0.304856 0.418667 0.320606 0.452788 0.313606 0.585333 0.294356 0.640454 0.303106 0.725754 0.346850 0.766437 0.387094 0.765125 0.408094 0.754625 0.541078 0.746750 0.555072 0.754625 0.593572 0.758563 0.640811 0.723129 0.656561 0.631267 0.630317 0.590583 0.619817 0.435729 0.635567 0.406858 0.628567 0.242817 0.586572 0.221817 0.572572 0.229692 0.355600 0.234942 0.338100 0.233629 diff --git a/datasets/检测仪/train/labels/订单1805092_51_7093907.txt b/datasets/检测仪/train/labels/订单1805092_51_7093907.txt new file mode 100644 index 0000000..a614c0b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805092_51_7093907.txt @@ -0,0 +1 @@ +5 0.265249 0.430443 0.232769 0.452747 0.233755 0.493431 0.244580 0.511803 0.234741 0.633854 0.227852 0.644349 0.218989 0.678470 0.248521 0.716530 0.326274 0.734902 0.351865 0.727025 0.508359 0.723092 0.539858 0.741465 0.726865 0.754590 0.751470 0.720469 0.750488 0.687656 0.743599 0.678470 0.742612 0.494746 0.744580 0.484245 0.747534 0.459310 0.723911 0.430443 0.525093 0.438314 0.378442 0.438314 0.342021 0.423880 0.264268 0.429128 diff --git a/datasets/检测仪/train/labels/订单1805095_51_7093943.txt b/datasets/检测仪/train/labels/订单1805095_51_7093943.txt new file mode 100644 index 0000000..f3c955c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805095_51_7093943.txt @@ -0,0 +1 @@ +5 0.315469 0.266396 0.276979 0.288701 0.275234 0.423877 0.285729 0.439619 0.259479 0.624658 0.271732 0.644346 0.315469 0.653535 0.315469 0.645664 0.397708 0.645664 0.413464 0.656162 0.439714 0.656162 0.483451 0.636475 0.500951 0.586602 0.486953 0.556426 0.495703 0.452744 0.518451 0.393691 0.537695 0.291328 0.493945 0.259834 0.471198 0.267705 0.329466 0.271641 diff --git a/datasets/检测仪/train/labels/订单1805096_51_7094003.txt b/datasets/检测仪/train/labels/订单1805096_51_7094003.txt new file mode 100644 index 0000000..2275ea2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805096_51_7094003.txt @@ -0,0 +1 @@ +5 0.479948 0.322822 0.425703 0.346445 0.374961 0.574795 0.387214 0.618105 0.336471 0.783457 0.304974 0.853008 0.296224 0.961934 0.318971 0.994746 0.392461 0.994746 0.663685 0.998682 0.705677 0.898945 0.705677 0.830703 0.733672 0.653535 0.756419 0.614160 0.801914 0.406816 0.768672 0.368760 0.733672 0.370068 0.525443 0.343818 0.485208 0.324141 diff --git a/datasets/检测仪/train/labels/订单1805100_51_7094084.txt b/datasets/检测仪/train/labels/订单1805100_51_7094084.txt new file mode 100644 index 0000000..f7d00a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805100_51_7094084.txt @@ -0,0 +1 @@ +5 0.395964 0.374004 0.360964 0.387129 0.348724 0.523613 0.350469 0.544609 0.332969 0.650908 0.320716 0.673223 0.320716 0.736211 0.334727 0.766396 0.362721 0.767705 0.381966 0.758525 0.467708 0.759834 0.492201 0.771641 0.520195 0.776895 0.537695 0.762461 0.560443 0.695527 0.553438 0.666660 0.556940 0.555107 0.577943 0.520986 0.604193 0.404189 0.577943 0.387129 0.553438 0.392383 0.401211 0.376631 diff --git a/datasets/检测仪/train/labels/订单1805101_51_7094057.txt b/datasets/检测仪/train/labels/订单1805101_51_7094057.txt new file mode 100644 index 0000000..f70f0c9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805101_51_7094057.txt @@ -0,0 +1 @@ +5 0.364466 0.271641 0.345221 0.286084 0.348724 0.418623 0.364466 0.437002 0.355716 0.534111 0.339974 0.570859 0.352214 0.623350 0.362721 0.643037 0.394219 0.650908 0.420456 0.645664 0.506198 0.639102 0.520195 0.645664 0.541198 0.645664 0.570937 0.632539 0.586693 0.569541 0.574440 0.543301 0.570937 0.437002 0.583190 0.396318 0.583190 0.274268 0.555195 0.257207 0.530690 0.265078 0.369714 0.272959 diff --git a/datasets/检测仪/train/labels/订单1805102_51_7094011.txt b/datasets/检测仪/train/labels/订单1805102_51_7094011.txt new file mode 100644 index 0000000..96a0928 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805102_51_7094011.txt @@ -0,0 +1 @@ +5 0.506198 0.368760 0.469453 0.384502 0.425703 0.545918 0.441458 0.572168 0.418711 0.685029 0.394219 0.758525 0.392461 0.784766 0.402969 0.792646 0.434453 0.805762 0.448451 0.800518 0.562187 0.816260 0.565690 0.825449 0.590195 0.829385 0.618190 0.813643 0.646185 0.759834 0.642682 0.720459 0.653177 0.694219 0.670677 0.608916 0.702174 0.574795 0.752917 0.426504 0.721419 0.396318 0.691680 0.396318 0.688177 0.401562 0.542943 0.385820 0.506198 0.367441 diff --git a/datasets/检测仪/train/labels/订单1805108_51_7094036.txt b/datasets/检测仪/train/labels/订单1805108_51_7094036.txt new file mode 100644 index 0000000..3203334 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805108_51_7094036.txt @@ -0,0 +1 @@ +5 0.507956 0.391064 0.471198 0.408125 0.472956 0.543301 0.486953 0.573486 0.483451 0.687656 0.465951 0.728340 0.471198 0.793955 0.495703 0.812324 0.525443 0.814951 0.542943 0.805762 0.651432 0.801826 0.663685 0.814951 0.693424 0.816260 0.703919 0.801826 0.723177 0.732275 0.707422 0.704717 0.691680 0.587920 0.712669 0.549863 0.709180 0.429121 0.686432 0.409443 0.661927 0.412061 0.537695 0.401562 0.513203 0.393691 diff --git a/datasets/检测仪/train/labels/订单1805109_51_7094037.txt b/datasets/检测仪/train/labels/订单1805109_51_7094037.txt new file mode 100644 index 0000000..2791256 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805109_51_7094037.txt @@ -0,0 +1 @@ +5 0.658424 0.203398 0.611185 0.220459 0.537695 0.395000 0.542943 0.429121 0.488698 0.540674 0.467708 0.568232 0.457201 0.624658 0.460703 0.643037 0.499206 0.652227 0.504453 0.648281 0.611185 0.678467 0.642682 0.706025 0.661927 0.699463 0.719674 0.627285 0.777422 0.498682 0.828164 0.468496 0.934896 0.301826 0.915651 0.266396 0.875404 0.262461 0.868398 0.266396 0.693424 0.221777 0.668932 0.199463 diff --git a/datasets/检测仪/train/labels/订单1805115_51_7094131.txt b/datasets/检测仪/train/labels/订单1805115_51_7094131.txt new file mode 100644 index 0000000..da84585 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805115_51_7094131.txt @@ -0,0 +1 @@ +5 0.352120 0.275647 0.324123 0.301886 0.318874 0.452807 0.318874 0.501360 0.327632 0.623410 0.308377 0.653596 0.311886 0.728399 0.327632 0.748081 0.355629 0.753333 0.376623 0.744145 0.499108 0.745461 0.504357 0.755954 0.541096 0.758586 0.576096 0.721842 0.584854 0.679846 0.576096 0.628662 0.579591 0.496118 0.602339 0.464616 0.623348 0.304518 0.598845 0.283520 0.558596 0.280888 0.548099 0.288761 0.394123 0.283520 0.359123 0.275647 diff --git a/datasets/检测仪/train/labels/订单1805119_51_7094223.txt b/datasets/检测仪/train/labels/订单1805119_51_7094223.txt new file mode 100644 index 0000000..21aa904 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805119_51_7094223.txt @@ -0,0 +1 @@ +5 0.350473 0.391070 0.289230 0.414693 0.280480 0.594482 0.294480 0.624665 0.255983 0.880570 0.285730 0.914693 0.311977 0.918628 0.334723 0.905505 0.460710 0.923878 0.469457 0.931753 0.499203 0.933065 0.530700 0.916005 0.567447 0.849075 0.572693 0.808393 0.581443 0.685033 0.614690 0.599730 0.653183 0.460622 0.621690 0.417315 0.581443 0.423878 0.562197 0.427815 0.397717 0.414693 0.350473 0.393695 diff --git a/datasets/检测仪/train/labels/订单1805120_51_7094214.txt b/datasets/检测仪/train/labels/订单1805120_51_7094214.txt new file mode 100644 index 0000000..6c3bf41 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805120_51_7094214.txt @@ -0,0 +1 @@ +5 0.500951 0.459307 0.453711 0.475059 0.413464 0.615479 0.416966 0.649600 0.380221 0.750645 0.355716 0.788701 0.339974 0.841201 0.364466 0.868760 0.380221 0.872695 0.392461 0.864824 0.493945 0.885820 0.497448 0.897627 0.525443 0.906816 0.558698 0.900254 0.584935 0.850381 0.597187 0.812324 0.632188 0.707344 0.660182 0.679785 0.742422 0.532803 0.710924 0.502617 0.681172 0.505244 0.665430 0.509180 0.523698 0.477686 0.504453 0.463242 diff --git a/datasets/检测仪/train/labels/订单1805123_51_7094124.txt b/datasets/检测仪/train/labels/订单1805123_51_7094124.txt new file mode 100644 index 0000000..e9b727d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805123_51_7094124.txt @@ -0,0 +1 @@ +5 0.514828 0.282183 0.488583 0.301871 0.506083 0.451475 0.523578 0.485596 0.525328 0.598458 0.518328 0.649638 0.527078 0.708696 0.553322 0.741504 0.591822 0.741504 0.605817 0.729692 0.717806 0.727067 0.726556 0.732317 0.761550 0.737567 0.796544 0.712633 0.803544 0.648325 0.787794 0.610271 0.773794 0.482971 0.784294 0.426542 0.777294 0.296621 0.742300 0.274313 0.717806 0.279562 0.551572 0.287433 0.518328 0.282183 diff --git a/datasets/检测仪/train/labels/订单1805124_51_7094151.txt b/datasets/检测仪/train/labels/订单1805124_51_7094151.txt new file mode 100644 index 0000000..dcae285 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805124_51_7094151.txt @@ -0,0 +1 @@ +5 0.425680 0.476350 0.397693 0.488160 0.397693 0.606270 0.409933 0.622020 0.408187 0.709950 0.399440 0.746690 0.402933 0.788690 0.416933 0.809680 0.458933 0.817560 0.455427 0.804440 0.539427 0.801810 0.542920 0.808370 0.574413 0.813620 0.590160 0.796560 0.604160 0.740130 0.597160 0.719130 0.588413 0.625960 0.600667 0.490790 0.553427 0.477660 0.446680 0.482910 0.429187 0.477660 diff --git a/datasets/检测仪/train/labels/订单1805129_51_7094233.txt b/datasets/检测仪/train/labels/订单1805129_51_7094233.txt new file mode 100644 index 0000000..ce42be9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805129_51_7094233.txt @@ -0,0 +1 @@ +5 0.322474 0.490801 0.306719 0.506553 0.325977 0.677158 0.338216 0.700781 0.348724 0.824141 0.341719 0.876631 0.362721 0.950117 0.385469 0.965869 0.423958 0.967178 0.423958 0.955371 0.548190 0.947500 0.555195 0.957998 0.579688 0.959307 0.618190 0.933066 0.621680 0.850381 0.614687 0.821514 0.595443 0.690283 0.605938 0.498682 0.539440 0.484238 0.374961 0.492119 0.366211 0.486865 0.327721 0.490801 diff --git a/datasets/检测仪/train/labels/订单1805131_51_7094253.txt b/datasets/检测仪/train/labels/订单1805131_51_7094253.txt new file mode 100644 index 0000000..ddf1001 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805131_51_7094253.txt @@ -0,0 +1 @@ +5 0.395964 0.517051 0.374961 0.540674 0.420456 0.708652 0.437956 0.816260 0.436211 0.853008 0.469453 0.931748 0.488698 0.947500 0.520195 0.947500 0.532448 0.934375 0.639180 0.908125 0.639180 0.917314 0.668932 0.912061 0.681172 0.893691 0.688177 0.830703 0.668932 0.811016 0.644427 0.691592 0.656680 0.657471 0.644427 0.517051 0.612930 0.502617 0.569193 0.510488 0.458958 0.520986 0.415208 0.514424 diff --git a/datasets/检测仪/train/labels/订单1805134_51_7094282.txt b/datasets/检测仪/train/labels/订单1805134_51_7094282.txt new file mode 100644 index 0000000..e55cfd5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805134_51_7094282.txt @@ -0,0 +1 @@ +5 0.276979 0.324141 0.240234 0.358262 0.278724 0.538047 0.308477 0.569541 0.329466 0.704717 0.329466 0.745400 0.350469 0.825449 0.381966 0.847764 0.420456 0.842510 0.439714 0.830703 0.569193 0.805762 0.570937 0.814951 0.598932 0.814951 0.623437 0.790020 0.632188 0.713906 0.609440 0.685029 0.581445 0.548545 0.593685 0.490801 0.574440 0.335947 0.541198 0.308389 0.507943 0.309697 0.504453 0.317578 0.325977 0.338574 0.287474 0.324141 diff --git a/datasets/检测仪/train/labels/订单1805137_51_7094244.txt b/datasets/检测仪/train/labels/订单1805137_51_7094244.txt new file mode 100644 index 0000000..c152ec8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805137_51_7094244.txt @@ -0,0 +1 @@ +5 0.387300 0.240150 0.354819 0.258522 0.353833 0.295267 0.358755 0.307083 0.350879 0.408132 0.345962 0.419941 0.335132 0.444876 0.347930 0.476374 0.419780 0.505241 0.465054 0.501309 0.569385 0.513118 0.587100 0.531491 0.732769 0.562988 0.764268 0.530176 0.764268 0.503932 0.768203 0.343828 0.774111 0.321517 0.755410 0.292643 0.625488 0.267708 0.597930 0.279518 0.475879 0.263776 0.445371 0.242773 0.395171 0.241465 diff --git a/datasets/检测仪/train/labels/订单1805141_51_7094347.txt b/datasets/检测仪/train/labels/订单1805141_51_7094347.txt new file mode 100644 index 0000000..143bd66 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805141_51_7094347.txt @@ -0,0 +1 @@ +5 0.156250 0.398945 0.135247 0.416006 0.143997 0.552480 0.161497 0.590537 0.164987 0.721777 0.150990 0.767705 0.164987 0.829385 0.194740 0.860879 0.226237 0.855635 0.346966 0.841201 0.357474 0.843818 0.394219 0.845137 0.434453 0.816260 0.444961 0.740146 0.425703 0.707344 0.413464 0.583984 0.432708 0.552480 0.416966 0.406816 0.381966 0.383193 0.355716 0.384502 0.348724 0.391064 0.184245 0.406816 0.166745 0.396318 diff --git a/datasets/检测仪/train/labels/订单1805142_51_7094266.txt b/datasets/检测仪/train/labels/订单1805142_51_7094266.txt new file mode 100644 index 0000000..447264d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805142_51_7094266.txt @@ -0,0 +1 @@ +5 0.283861 0.177200 0.238367 0.216567 0.294356 0.469850 0.329350 0.528904 0.390594 0.833367 0.418589 0.853050 0.446589 0.851738 0.474583 0.837304 0.637317 0.832054 0.646061 0.842554 0.686306 0.842554 0.726556 0.812371 0.735300 0.737567 0.719556 0.689008 0.716056 0.510533 0.737050 0.402921 0.749300 0.195571 0.702056 0.150950 0.654811 0.156200 0.640811 0.169325 0.381844 0.182446 0.352100 0.177200 0.299606 0.178512 diff --git a/datasets/检测仪/train/labels/订单1805143_51_7094313.txt b/datasets/检测仪/train/labels/订单1805143_51_7094313.txt new file mode 100644 index 0000000..378c86a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805143_51_7094313.txt @@ -0,0 +1 @@ +5 0.427651 0.106296 0.401079 0.133854 0.399111 0.325456 0.405015 0.353014 0.405015 0.488184 0.392222 0.549863 0.396157 0.637786 0.416826 0.685033 0.453242 0.683724 0.459150 0.667975 0.544780 0.670599 0.552651 0.683724 0.572339 0.688971 0.607769 0.644349 0.605801 0.627292 0.616631 0.551172 0.604819 0.514427 0.598911 0.346452 0.605801 0.303145 0.606787 0.144349 0.585132 0.120729 0.573320 0.120729 0.442417 0.114167 0.431592 0.108919 diff --git a/datasets/检测仪/train/labels/订单1805149_51_7094351.txt b/datasets/检测仪/train/labels/订单1805149_51_7094351.txt new file mode 100644 index 0000000..24fcc6e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805149_51_7094351.txt @@ -0,0 +1 @@ +5 0.508835 0.359576 0.473841 0.371384 0.435340 0.503936 0.447589 0.523616 0.414348 0.624671 0.402099 0.656168 0.388097 0.720467 0.403841 0.749343 0.442341 0.753279 0.449343 0.744092 0.556078 0.755900 0.561326 0.766401 0.587566 0.772958 0.610323 0.763772 0.634821 0.699472 0.627820 0.669291 0.643564 0.557742 0.678558 0.526246 0.708304 0.413382 0.685559 0.389758 0.662814 0.391073 0.659308 0.393694 0.529827 0.371384 0.517578 0.364827 diff --git a/datasets/检测仪/train/labels/订单1805155_51_7094474.txt b/datasets/检测仪/train/labels/订单1805155_51_7094474.txt new file mode 100644 index 0000000..527db23 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805155_51_7094474.txt @@ -0,0 +1 @@ +5 0.215705 0.360889 0.177809 0.375322 0.224447 0.494746 0.250683 0.513120 0.282744 0.603672 0.265260 0.639102 0.291497 0.686348 0.329393 0.703408 0.373113 0.702095 0.381855 0.692910 0.518861 0.682412 0.533438 0.687661 0.574252 0.688970 0.597570 0.670601 0.615065 0.623354 0.580087 0.598423 0.556757 0.498682 0.568427 0.471123 0.550933 0.356953 0.495542 0.341201 0.469306 0.347764 0.274002 0.362202 0.259425 0.362202 0.227364 0.359575 diff --git a/datasets/检测仪/train/labels/订单1805158_51_7094455.txt b/datasets/检测仪/train/labels/订单1805158_51_7094455.txt new file mode 100644 index 0000000..00b4186 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805158_51_7094455.txt @@ -0,0 +1 @@ +5 0.292721 0.341201 0.257734 0.359570 0.254232 0.484238 0.268229 0.503926 0.257734 0.594482 0.261224 0.619414 0.234987 0.649600 0.240234 0.709961 0.262982 0.725713 0.299727 0.734902 0.318971 0.723086 0.408216 0.720459 0.425703 0.730957 0.450208 0.730957 0.474701 0.712588 0.492201 0.652227 0.479948 0.629912 0.483451 0.527549 0.495703 0.490801 0.506198 0.364824 0.485208 0.337266 0.462461 0.339883 0.444961 0.343818 0.320716 0.347764 0.299727 0.345137 diff --git a/datasets/检测仪/train/labels/订单1805164_51_7094561.txt b/datasets/检测仪/train/labels/订单1805164_51_7094561.txt new file mode 100644 index 0000000..6457ed2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805164_51_7094561.txt @@ -0,0 +1 @@ +5 0.537695 0.438311 0.506198 0.469805 0.534193 0.671904 0.553438 0.698154 0.565690 0.843818 0.556940 0.900254 0.451953 0.985557 0.572695 0.973740 0.624375 1.000000 0.629661 1.000000 0.646185 0.992119 0.807161 0.992119 0.896406 0.980303 0.899896 0.906816 0.887656 0.862197 0.864909 0.690283 0.875404 0.645664 0.870156 0.447500 0.829909 0.425186 0.794909 0.429121 0.780911 0.435684 0.593685 0.455371 0.570937 0.442246 0.544701 0.440937 diff --git a/datasets/检测仪/train/labels/订单1805167_51_7094525.txt b/datasets/检测仪/train/labels/订单1805167_51_7094525.txt new file mode 100644 index 0000000..63712ce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805167_51_7094525.txt @@ -0,0 +1 @@ +5 0.117628 0.476413 0.100133 0.494783 0.142128 0.603708 0.164872 0.623392 0.196367 0.707383 0.203367 0.741504 0.224367 0.792683 0.250611 0.811058 0.282111 0.800558 0.287356 0.791371 0.367850 0.765125 0.374844 0.769062 0.402844 0.766437 0.420339 0.744129 0.413344 0.689008 0.390594 0.668013 0.355600 0.586646 0.352100 0.555150 0.308356 0.452788 0.290856 0.444917 0.264611 0.451475 0.150878 0.475100 0.124628 0.479038 diff --git a/datasets/检测仪/train/labels/订单1805168_51_7094620.txt b/datasets/检测仪/train/labels/订单1805168_51_7094620.txt new file mode 100644 index 0000000..c4e21ac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805168_51_7094620.txt @@ -0,0 +1 @@ +5 0.467680 0.518350 0.436187 0.534090 0.416933 0.687640 0.432680 0.727010 0.409933 0.851680 0.390693 0.939610 0.422187 0.980290 0.450187 0.993410 0.474680 0.984230 0.460680 0.980290 0.637413 0.994720 0.653160 0.976350 0.668907 0.910730 0.660160 0.881860 0.668907 0.749320 0.700400 0.702070 0.714400 0.559030 0.688147 0.538030 0.654907 0.536720 0.639160 0.543280 0.514920 0.535410 0.500933 0.526220 0.472933 0.518350 diff --git a/datasets/检测仪/train/labels/订单1805170_51_7094495.txt b/datasets/检测仪/train/labels/订单1805170_51_7094495.txt new file mode 100644 index 0000000..c70ee5b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805170_51_7094495.txt @@ -0,0 +1 @@ +5 0.268200 0.375300 0.238453 0.384490 0.240213 0.405490 0.250707 0.408110 0.247213 0.469790 0.245453 0.482910 0.240213 0.498660 0.264707 0.514410 0.348693 0.527530 0.374947 0.514410 0.478173 0.515720 0.502680 0.519660 0.679400 0.530160 0.702147 0.514410 0.703907 0.498660 0.698653 0.497350 0.702147 0.394990 0.712653 0.376610 0.684653 0.363490 0.521920 0.364800 0.492173 0.377930 0.374947 0.375300 0.341693 0.368740 0.282200 0.376610 diff --git a/datasets/检测仪/train/labels/订单1805175_51_7094553.txt b/datasets/检测仪/train/labels/订单1805175_51_7094553.txt new file mode 100644 index 0000000..8657f9b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805175_51_7094553.txt @@ -0,0 +1 @@ +5 0.346833 0.320221 0.299577 0.346471 0.283833 0.535452 0.299577 0.587942 0.276833 0.737548 0.280333 0.763798 0.247090 0.813663 0.250590 0.912087 0.271590 0.942269 0.320577 0.950144 0.334577 0.939644 0.499064 0.939644 0.506051 0.952769 0.549808 0.965894 0.588295 0.938337 0.623295 0.842538 0.611038 0.787413 0.618038 0.606317 0.646038 0.561692 0.674038 0.363529 0.639038 0.330721 0.604038 0.333346 0.588295 0.337288 0.388821 0.337288 0.378321 0.329413 0.352077 0.320221 diff --git a/datasets/检测仪/train/labels/订单1805177_51_7095468.txt b/datasets/检测仪/train/labels/订单1805177_51_7095468.txt new file mode 100644 index 0000000..0436094 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805177_51_7095468.txt @@ -0,0 +1 @@ +5 0.476393 0.406853 0.439792 0.421294 0.432812 0.548588 0.448503 0.602392 0.448503 0.728382 0.425846 0.779559 0.434557 0.841235 0.460703 0.871422 0.495560 0.877980 0.507760 0.860922 0.635000 0.866176 0.636745 0.877980 0.668112 0.887167 0.708203 0.855676 0.716914 0.783500 0.702969 0.748059 0.699492 0.611578 0.715169 0.582706 0.718659 0.419980 0.689023 0.400294 0.654167 0.402922 0.643711 0.412108 0.507760 0.416039 0.483359 0.409480 diff --git a/datasets/检测仪/train/labels/订单1805181_51_7094604.txt b/datasets/检测仪/train/labels/订单1805181_51_7094604.txt new file mode 100644 index 0000000..42c650a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805181_51_7094604.txt @@ -0,0 +1 @@ +5 0.370604 0.377940 0.335639 0.392375 0.351954 0.506550 0.363606 0.527545 0.363606 0.612850 0.361279 0.639095 0.356616 0.685025 0.372931 0.699460 0.419547 0.704710 0.433535 0.692900 0.531439 0.692900 0.538428 0.702085 0.571066 0.706025 0.601368 0.687650 0.613020 0.632535 0.601368 0.620720 0.601368 0.526235 0.617682 0.494735 0.615355 0.388440 0.594369 0.375315 0.568730 0.376625 0.557078 0.384500 0.417220 0.385815 0.368268 0.376625 diff --git a/datasets/检测仪/train/labels/订单1805182_51_7094646.txt b/datasets/检测仪/train/labels/订单1805182_51_7094646.txt new file mode 100644 index 0000000..257acac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805182_51_7094646.txt @@ -0,0 +1 @@ +5 0.413440 0.258500 0.392440 0.276880 0.394187 0.400240 0.411693 0.426480 0.411693 0.526220 0.395933 0.560340 0.413440 0.620710 0.430933 0.639080 0.467680 0.640390 0.562173 0.633830 0.577920 0.640390 0.605920 0.641710 0.633907 0.616770 0.640907 0.565590 0.625160 0.535410 0.612907 0.429110 0.633907 0.396300 0.632160 0.276880 0.607667 0.261130 0.586667 0.266380 0.448427 0.269000 0.418693 0.257190 diff --git a/datasets/检测仪/train/labels/订单1805187_51_7094690.txt b/datasets/检测仪/train/labels/订单1805187_51_7094690.txt new file mode 100644 index 0000000..a37f96b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805187_51_7094690.txt @@ -0,0 +1 @@ +5 0.394219 0.367441 0.366211 0.384502 0.366211 0.543301 0.385469 0.581357 0.380221 0.716523 0.360964 0.750645 0.374961 0.818887 0.397708 0.846445 0.427461 0.850381 0.448451 0.837266 0.574440 0.835947 0.579688 0.841201 0.604193 0.846445 0.626940 0.825449 0.649687 0.749336 0.625182 0.723086 0.630430 0.591855 0.646185 0.556426 0.661927 0.398945 0.635677 0.372695 0.609440 0.375322 0.598932 0.381885 0.443203 0.380566 0.399466 0.366133 diff --git a/datasets/检测仪/train/labels/订单1805193_51_7094789.txt b/datasets/检测仪/train/labels/订单1805193_51_7094789.txt new file mode 100644 index 0000000..24e0c24 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805193_51_7094789.txt @@ -0,0 +1 @@ +5 0.436187 0.498660 0.390693 0.509160 0.367947 0.661390 0.378440 0.685010 0.357440 0.814930 0.331200 0.864800 0.329453 0.947480 0.346947 0.977660 0.380187 0.982910 0.404693 0.971100 0.537667 0.988160 0.548173 0.996040 0.611160 0.971100 0.618160 0.893670 0.611160 0.835930 0.633907 0.712570 0.649653 0.678450 0.660160 0.531470 0.640907 0.513100 0.619907 0.514410 0.611160 0.522280 0.458933 0.511780 0.439680 0.499970 diff --git a/datasets/检测仪/train/labels/订单1805202_51_7094824.txt b/datasets/检测仪/train/labels/订单1805202_51_7094824.txt new file mode 100644 index 0000000..2341064 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805202_51_7094824.txt @@ -0,0 +1 @@ +5 0.432564 0.374029 0.402821 0.389779 0.371321 0.549885 0.388821 0.591875 0.353821 0.737548 0.331077 0.788731 0.325833 0.875346 0.353821 0.921279 0.402821 0.922587 0.416821 0.910779 0.562051 0.919962 0.570795 0.934394 0.611038 0.944894 0.658282 0.913404 0.682782 0.814971 0.667038 0.765106 0.667038 0.611567 0.698538 0.582692 0.717782 0.398962 0.681038 0.380596 0.661782 0.380596 0.644295 0.385846 0.444821 0.379279 diff --git a/datasets/检测仪/train/labels/订单1805204_51_7094885.txt b/datasets/检测仪/train/labels/订单1805204_51_7094885.txt new file mode 100644 index 0000000..36859fa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805204_51_7094885.txt @@ -0,0 +1 @@ +5 0.250707 0.468480 0.231467 0.493410 0.264707 0.607580 0.283960 0.629890 0.308453 0.706010 0.308453 0.742760 0.325947 0.790000 0.346947 0.803120 0.383693 0.799190 0.387187 0.787370 0.462427 0.767690 0.467680 0.772940 0.492173 0.771630 0.511427 0.745380 0.507920 0.699450 0.486933 0.679760 0.455427 0.595770 0.462427 0.570840 0.436187 0.463230 0.418693 0.450100 0.399440 0.454040 0.395933 0.463230 0.290947 0.473730 0.252453 0.468480 diff --git a/datasets/检测仪/train/labels/订单1805205_51_7094952.txt b/datasets/检测仪/train/labels/订单1805205_51_7094952.txt new file mode 100644 index 0000000..904e8a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805205_51_7094952.txt @@ -0,0 +1 @@ +5 0.251490 0.321549 0.205987 0.345176 0.179739 0.565647 0.191987 0.612892 0.176248 0.786118 0.146497 0.863549 0.142993 0.947539 0.185647 1.000000 0.195699 1.000000 0.221739 0.996098 0.242732 0.979029 0.414209 0.980343 0.435216 0.998716 0.473712 0.998716 0.513948 0.973784 0.547203 0.877980 0.534954 0.818931 0.547203 0.644392 0.578693 0.584020 0.599686 0.387167 0.562941 0.355676 0.519203 0.354363 0.302235 0.332049 0.258484 0.321549 diff --git a/datasets/检测仪/train/labels/订单1805207_51_7094908.txt b/datasets/检测仪/train/labels/订单1805207_51_7094908.txt new file mode 100644 index 0000000..52ab014 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805207_51_7094908.txt @@ -0,0 +1 @@ +5 0.497305 0.385863 0.471159 0.408167 0.492070 0.552529 0.514740 0.581392 0.525195 0.686382 0.512995 0.729686 0.535651 0.799245 0.560052 0.821549 0.589674 0.818931 0.601875 0.808431 0.711693 0.799245 0.715169 0.807118 0.744805 0.808431 0.770951 0.782186 0.779661 0.717882 0.755260 0.686382 0.730859 0.569588 0.746549 0.523657 0.741315 0.393735 0.702969 0.368794 0.685547 0.374049 0.676823 0.377980 0.544362 0.389794 0.511250 0.387167 diff --git a/datasets/检测仪/train/labels/订单1805208_51_7094957.txt b/datasets/检测仪/train/labels/订单1805208_51_7094957.txt new file mode 100644 index 0000000..1b68040 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805208_51_7094957.txt @@ -0,0 +1 @@ +5 0.396719 0.396353 0.358222 0.419980 0.361725 0.585333 0.377464 0.713941 0.368719 0.761186 0.380967 0.824176 0.419464 0.855676 0.449216 0.851735 0.464954 0.838618 0.568196 0.830735 0.582196 0.835990 0.601438 0.838618 0.624183 0.817618 0.641686 0.746755 0.618941 0.710010 0.613686 0.587961 0.617190 0.553833 0.617190 0.425225 0.594444 0.406853 0.571699 0.406853 0.564693 0.413422 0.438706 0.409480 0.407216 0.396353 diff --git a/datasets/检测仪/train/labels/订单1805212_51_7094977.txt b/datasets/检测仪/train/labels/订单1805212_51_7094977.txt new file mode 100644 index 0000000..80aa240 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805212_51_7094977.txt @@ -0,0 +1 @@ +5 0.399344 0.371425 0.367850 0.389796 0.359100 0.535467 0.374844 0.561712 0.366100 0.698196 0.346850 0.749375 0.350350 0.821554 0.380094 0.860925 0.409844 0.860925 0.430839 0.850425 0.562072 0.849112 0.570822 0.858300 0.612817 0.868800 0.644311 0.839929 0.656561 0.753313 0.646061 0.708696 0.632067 0.568275 0.654811 0.522342 0.658311 0.387171 0.625067 0.366175 0.605817 0.367488 0.429089 0.376675 0.404594 0.371425 diff --git a/datasets/检测仪/train/labels/订单1805217_51_7095036.txt b/datasets/检测仪/train/labels/订单1805217_51_7095036.txt new file mode 100644 index 0000000..cdaf27e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805217_51_7095036.txt @@ -0,0 +1 @@ +5 0.212117 0.300558 0.171872 0.313679 0.168372 0.339929 0.177122 0.353050 0.180622 0.439667 0.171872 0.446229 0.168372 0.469850 0.205117 0.496096 0.280361 0.500033 0.331100 0.497408 0.483333 0.493471 0.520078 0.506596 0.730050 0.510533 0.756300 0.490846 0.752800 0.460662 0.747550 0.351737 0.756300 0.328117 0.731800 0.308433 0.544578 0.305808 0.511328 0.313679 0.357350 0.309746 0.292606 0.291371 0.219117 0.299246 diff --git a/datasets/检测仪/train/labels/订单1805223_51_7095092.txt b/datasets/检测仪/train/labels/订单1805223_51_7095092.txt new file mode 100644 index 0000000..9fa2795 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805223_51_7095092.txt @@ -0,0 +1 @@ +5 0.513079 0.451476 0.476343 0.477726 0.492083 0.694262 0.483333 0.811059 0.460590 0.846493 0.467593 0.918672 0.492083 0.947543 0.525336 0.948854 0.534086 0.937040 0.658310 0.942292 0.672315 0.951476 0.695058 0.954106 0.724803 0.938359 0.759803 0.850425 0.758056 0.812370 0.754549 0.710009 0.794803 0.640460 0.817546 0.501345 0.780799 0.467231 0.749306 0.468542 0.740556 0.479036 0.574329 0.469852 0.558576 0.459358 0.520081 0.452795 diff --git a/datasets/检测仪/train/labels/订单1805233_51_7095227.txt b/datasets/检测仪/train/labels/订单1805233_51_7095227.txt new file mode 100644 index 0000000..fbd6fd4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805233_51_7095227.txt @@ -0,0 +1 @@ +5 0.274360 0.398945 0.237612 0.427820 0.270865 0.607604 0.297105 0.652223 0.312860 0.792647 0.298858 0.839888 0.321603 0.895009 0.342607 0.916003 0.372353 0.919948 0.389850 0.905510 0.517578 0.904196 0.531580 0.914697 0.563080 0.918633 0.589319 0.896324 0.612065 0.804455 0.605075 0.775588 0.589319 0.653538 0.603322 0.595796 0.606817 0.416003 0.573576 0.389758 0.529827 0.388452 0.519331 0.397630 0.326851 0.404196 0.274360 0.396324 diff --git a/datasets/检测仪/train/labels/订单1805236_51_7095224.txt b/datasets/检测仪/train/labels/订单1805236_51_7095224.txt new file mode 100644 index 0000000..2f531bc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805236_51_7095224.txt @@ -0,0 +1 @@ +5 0.320729 0.450117 0.280482 0.476367 0.276979 0.646973 0.287474 0.675840 0.273477 0.824141 0.254232 0.864824 0.254232 0.946182 0.278724 0.967178 0.324219 0.971123 0.334727 0.957998 0.469453 0.959307 0.471198 0.969805 0.507943 0.976367 0.544701 0.947500 0.542943 0.926504 0.563945 0.864824 0.551693 0.833320 0.551693 0.681094 0.572695 0.607598 0.581445 0.486865 0.544701 0.467178 0.525443 0.468496 0.514948 0.472432 0.369714 0.468496 0.315469 0.451436 diff --git a/datasets/检测仪/train/labels/订单1805239_51_7095196.txt b/datasets/检测仪/train/labels/订单1805239_51_7095196.txt new file mode 100644 index 0000000..2798403 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805239_51_7095196.txt @@ -0,0 +1 @@ +5 0.581413 0.425170 0.541173 0.413360 0.367947 0.478980 0.341693 0.497350 0.210467 0.549840 0.163213 0.553780 0.079227 0.590520 0.061733 0.615460 0.072227 0.641710 0.101973 0.644330 0.149227 0.717820 0.140467 0.729630 0.152720 0.741440 0.187720 0.755880 0.203467 0.748000 0.285707 0.724380 0.308453 0.706010 0.446680 0.644330 0.483427 0.643020 0.647907 0.578710 0.661907 0.556400 0.642653 0.545910 0.584920 0.459290 0.584920 0.429110 diff --git a/datasets/检测仪/train/labels/订单1805247_51_7095293.txt b/datasets/检测仪/train/labels/订单1805247_51_7095293.txt new file mode 100644 index 0000000..d4fe501 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805247_51_7095293.txt @@ -0,0 +1 @@ +5 0.439680 0.349050 0.404693 0.366110 0.406440 0.549840 0.418693 0.576090 0.413440 0.712570 0.401187 0.742760 0.409933 0.818870 0.436187 0.851680 0.469427 0.852990 0.479933 0.839870 0.605920 0.839870 0.619907 0.847740 0.651413 0.852990 0.672400 0.837240 0.695147 0.765070 0.686400 0.736190 0.693400 0.586590 0.703907 0.564280 0.733653 0.376610 0.700400 0.354300 0.667160 0.354300 0.658413 0.359550 0.479933 0.351680 0.439680 0.347740 diff --git a/datasets/检测仪/train/labels/订单1805252_51_7095412.txt b/datasets/检测仪/train/labels/订单1805252_51_7095412.txt new file mode 100644 index 0000000..df93cac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805252_51_7095412.txt @@ -0,0 +1 @@ +5 0.352120 0.279583 0.318874 0.297950 0.306637 0.446250 0.324123 0.480373 0.304883 0.620789 0.289137 0.664090 0.287383 0.738893 0.311886 0.769079 0.359123 0.779583 0.380117 0.769079 0.507851 0.767774 0.518348 0.778268 0.555102 0.786140 0.583099 0.758586 0.609342 0.671974 0.595351 0.636535 0.586594 0.492182 0.609342 0.437061 0.623348 0.307138 0.597091 0.283520 0.572602 0.284825 0.381871 0.283520 0.362632 0.280888 diff --git a/datasets/检测仪/train/labels/订单1805256_51_7095403.txt b/datasets/检测仪/train/labels/订单1805256_51_7095403.txt new file mode 100644 index 0000000..da422a9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805256_51_7095403.txt @@ -0,0 +1 @@ +5 0.649561 0.392421 0.618067 0.372737 0.418589 0.374050 0.390594 0.384546 0.241861 0.380608 0.182372 0.370113 0.096633 0.376675 0.072133 0.389796 0.065133 0.414729 0.084383 0.426542 0.084383 0.493471 0.079133 0.519717 0.070383 0.536779 0.108878 0.561712 0.199867 0.566963 0.238367 0.556462 0.395844 0.549900 0.430839 0.561712 0.614567 0.563025 0.639067 0.545967 0.633817 0.528904 0.642561 0.417354 0.651311 0.396358 diff --git a/datasets/检测仪/train/labels/订单1805261_51_7095495.txt b/datasets/检测仪/train/labels/订单1805261_51_7095495.txt new file mode 100644 index 0000000..3278613 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805261_51_7095495.txt @@ -0,0 +1 @@ +5 0.622572 0.343832 0.577070 0.355640 0.519331 0.478997 0.524579 0.507872 0.468581 0.619420 0.445836 0.635164 0.431845 0.671912 0.435340 0.711280 0.470334 0.720467 0.479089 0.709974 0.563080 0.730969 0.578824 0.741462 0.596321 0.755900 0.619066 0.745407 0.662814 0.696843 0.661061 0.673227 0.717059 0.565614 0.752053 0.536739 0.816794 0.422569 0.806298 0.393694 0.781799 0.391073 0.776551 0.392388 0.640069 0.353010 0.624314 0.345138 diff --git a/datasets/检测仪/train/labels/订单1805262_51_7095487.txt b/datasets/检测仪/train/labels/订单1805262_51_7095487.txt new file mode 100644 index 0000000..4617bcd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805262_51_7095487.txt @@ -0,0 +1 @@ +5 0.397708 0.246709 0.345221 0.275586 0.299727 0.452744 0.304974 0.502617 0.275234 0.678467 0.236732 0.736211 0.226237 0.825449 0.241979 0.866133 0.280482 0.875322 0.306719 0.860879 0.483451 0.883193 0.495703 0.902881 0.544701 0.909443 0.590195 0.889756 0.628685 0.791328 0.618190 0.721777 0.653177 0.553799 0.681172 0.505244 0.723177 0.299199 0.693424 0.280830 0.663685 0.280830 0.441458 0.258525 0.401211 0.248018 diff --git a/datasets/检测仪/train/labels/订单1805265_51_7095449.txt b/datasets/检测仪/train/labels/订单1805265_51_7095449.txt new file mode 100644 index 0000000..6423ad9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805265_51_7095449.txt @@ -0,0 +1 @@ +5 0.286538 0.484240 0.222666 0.513110 0.251692 0.639095 0.280730 0.664030 0.272024 0.772950 0.303960 0.833320 0.338794 0.851695 0.379447 0.854315 0.376538 0.843820 0.530420 0.838570 0.553650 0.846445 0.594292 0.849070 0.626228 0.825445 0.629137 0.772950 0.608816 0.751955 0.588485 0.653530 0.629137 0.616785 0.617522 0.499985 0.565265 0.478990 0.530420 0.482925 0.530420 0.492115 0.350409 0.499985 0.298153 0.489490 diff --git a/datasets/检测仪/train/labels/订单1805271_51_7095498.txt b/datasets/检测仪/train/labels/订单1805271_51_7095498.txt new file mode 100644 index 0000000..cc6b7b9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805271_51_7095498.txt @@ -0,0 +1 @@ +5 0.194603 0.370096 0.147346 0.398962 0.154346 0.581385 0.175346 0.637808 0.175346 0.792663 0.147346 0.851721 0.166603 0.958019 0.196346 0.980327 0.250590 0.979019 0.264590 0.967212 0.415064 0.955394 0.423821 0.969827 0.476308 0.967212 0.513051 0.933087 0.523551 0.837288 0.504308 0.786106 0.486808 0.627308 0.511308 0.580067 0.509551 0.392404 0.476308 0.367471 0.436064 0.370096 0.425564 0.379279 0.241846 0.377971 0.208590 0.371404 diff --git a/datasets/检测仪/train/labels/订单1805275_51_7095581.txt b/datasets/检测仪/train/labels/订单1805275_51_7095581.txt new file mode 100644 index 0000000..8ffc2d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805275_51_7095581.txt @@ -0,0 +1 @@ +5 0.163122 0.460662 0.121128 0.501346 0.187622 0.716567 0.215617 0.741504 0.247111 0.872738 0.250611 0.923917 0.289106 0.996096 0.320339 1.000000 0.344133 1.000000 0.350350 0.993471 0.488583 0.965913 0.534078 0.972475 0.551572 0.948850 0.560322 0.871425 0.534078 0.845179 0.513078 0.698196 0.539328 0.665388 0.516578 0.471162 0.479833 0.435729 0.437839 0.438354 0.429089 0.451475 0.233117 0.476413 0.212117 0.465913 0.166622 0.463288 diff --git a/datasets/检测仪/train/labels/订单1805276_51_7095550.txt b/datasets/检测仪/train/labels/订单1805276_51_7095550.txt new file mode 100644 index 0000000..f35785b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805276_51_7095550.txt @@ -0,0 +1 @@ +5 0.273477 0.604980 0.248984 0.624658 0.269974 0.761143 0.287474 0.787393 0.311979 0.898945 0.297982 0.933066 0.322474 0.997363 0.465951 0.990801 0.502695 0.994746 0.541198 0.971123 0.535951 0.912061 0.511445 0.875322 0.493945 0.767705 0.500951 0.738838 0.488698 0.602354 0.451953 0.589229 0.434453 0.595791 0.303229 0.611543 0.273477 0.604980 diff --git a/datasets/检测仪/train/labels/订单1805278_51_7095545.txt b/datasets/检测仪/train/labels/订单1805278_51_7095545.txt new file mode 100644 index 0000000..fc7eeda --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805278_51_7095545.txt @@ -0,0 +1 @@ +5 0.394187 0.410730 0.362693 0.433040 0.402933 0.580030 0.416933 0.597090 0.439680 0.704700 0.436187 0.750630 0.450187 0.808370 0.478173 0.834620 0.507920 0.829370 0.514920 0.818870 0.623413 0.799190 0.661907 0.813620 0.682907 0.793940 0.686400 0.729630 0.665400 0.702070 0.637413 0.572150 0.640907 0.518350 0.621667 0.406800 0.593667 0.392360 0.567413 0.400240 0.430933 0.414670 0.399440 0.410730 diff --git a/datasets/检测仪/train/labels/订单1805279_51_7095633.txt b/datasets/检测仪/train/labels/订单1805279_51_7095633.txt new file mode 100644 index 0000000..d1dbd8e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805279_51_7095633.txt @@ -0,0 +1 @@ +5 0.304816 0.389764 0.273320 0.417323 0.308491 0.581368 0.329488 0.608927 0.350486 0.732283 0.345236 0.778219 0.366234 0.832018 0.394055 0.855640 0.422218 0.847766 0.429226 0.835955 0.537703 0.820207 0.548202 0.825463 0.570958 0.825463 0.597205 0.804459 0.597205 0.737530 0.588281 0.713907 0.563950 0.586614 0.576207 0.560364 0.565709 0.396329 0.541037 0.372707 0.514790 0.379262 0.504291 0.385827 0.346811 0.395010 0.313740 0.388455 diff --git a/datasets/检测仪/train/labels/订单1805280_51_7095784.txt b/datasets/检测仪/train/labels/订单1805280_51_7095784.txt new file mode 100644 index 0000000..34614e9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805280_51_7095784.txt @@ -0,0 +1 @@ +5 0.336471 0.283457 0.299727 0.301826 0.303229 0.442246 0.317227 0.468496 0.318971 0.577422 0.301471 0.615479 0.310221 0.664033 0.324219 0.683721 0.350469 0.685029 0.357474 0.677158 0.469453 0.677158 0.472956 0.690283 0.502695 0.690283 0.513203 0.674531 0.530690 0.614160 0.520195 0.585293 0.523698 0.478994 0.548190 0.455371 0.558698 0.313643 0.541198 0.291328 0.511445 0.293955 0.506198 0.297891 0.371471 0.297891 0.338216 0.282139 diff --git a/datasets/检测仪/train/labels/订单1805281_51_7095710.txt b/datasets/检测仪/train/labels/订单1805281_51_7095710.txt new file mode 100644 index 0000000..52bc72a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805281_51_7095710.txt @@ -0,0 +1 @@ +5 0.836789 0.421292 0.796544 0.397671 0.544578 0.412108 0.495583 0.426542 0.303106 0.438354 0.231367 0.434417 0.145628 0.443604 0.107128 0.460662 0.101883 0.490846 0.114128 0.502658 0.105383 0.584021 0.119378 0.640454 0.164872 0.658825 0.262861 0.665388 0.332850 0.647012 0.495583 0.641767 0.548078 0.647012 0.796544 0.649638 0.828039 0.624704 0.829789 0.599771 0.829789 0.456725 0.833289 0.426542 diff --git a/datasets/检测仪/train/labels/订单1805282_51_7095637.txt b/datasets/检测仪/train/labels/订单1805282_51_7095637.txt new file mode 100644 index 0000000..ce898e4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805282_51_7095637.txt @@ -0,0 +1 @@ +5 0.464206 0.451436 0.432708 0.471123 0.448451 0.620723 0.457201 0.644346 0.458958 0.748018 0.450208 0.782139 0.457201 0.856943 0.481706 0.881885 0.509701 0.881885 0.521953 0.872695 0.628685 0.863506 0.640938 0.874004 0.668932 0.875322 0.691680 0.858262 0.709180 0.784766 0.688177 0.751963 0.686432 0.639102 0.696927 0.612852 0.696927 0.475059 0.637435 0.456680 0.499206 0.457998 0.465951 0.450117 diff --git a/datasets/检测仪/train/labels/订单1805286_51_7095666.txt b/datasets/检测仪/train/labels/订单1805286_51_7095666.txt new file mode 100644 index 0000000..35e24d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805286_51_7095666.txt @@ -0,0 +1 @@ +5 0.306606 0.484283 0.287356 0.500033 0.353850 0.662763 0.371350 0.721817 0.399344 0.780871 0.406344 0.816304 0.436089 0.893733 0.460589 0.913417 0.490333 0.914729 0.504333 0.892421 0.621567 0.856988 0.635567 0.867487 0.658311 0.863550 0.682811 0.817617 0.670561 0.775625 0.630317 0.724442 0.584822 0.618142 0.584822 0.584021 0.537578 0.456725 0.507828 0.443604 0.481583 0.450163 0.329350 0.482971 diff --git a/datasets/检测仪/train/labels/订单1805288_51_7095735.txt b/datasets/检测仪/train/labels/订单1805288_51_7095735.txt new file mode 100644 index 0000000..827f36a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805288_51_7095735.txt @@ -0,0 +1 @@ +5 0.261224 0.351699 0.231484 0.375322 0.257734 0.535420 0.275234 0.578730 0.301471 0.716523 0.278724 0.780830 0.296224 0.845137 0.332969 0.881885 0.366211 0.881885 0.381966 0.866133 0.520195 0.847764 0.527201 0.858262 0.560443 0.858262 0.605938 0.825449 0.611185 0.753271 0.576185 0.713906 0.551693 0.564297 0.570937 0.505244 0.549948 0.360879 0.520195 0.337266 0.485208 0.342510 0.322474 0.358262 0.262982 0.354326 diff --git a/datasets/检测仪/train/labels/订单1805294_51_7095817.txt b/datasets/检测仪/train/labels/订单1805294_51_7095817.txt new file mode 100644 index 0000000..745a365 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805294_51_7095817.txt @@ -0,0 +1 @@ +5 0.411594 0.236254 0.376594 0.250688 0.346850 0.398983 0.357350 0.426542 0.327606 0.538092 0.310106 0.569588 0.301356 0.635204 0.315356 0.657512 0.348600 0.658825 0.352100 0.652263 0.455339 0.656200 0.467583 0.670637 0.490333 0.674575 0.520078 0.662763 0.537578 0.615517 0.535828 0.580083 0.570822 0.461975 0.584822 0.442292 0.646061 0.300558 0.625067 0.274313 0.600567 0.274313 0.429089 0.241504 diff --git a/datasets/检测仪/train/labels/订单1805296_51_7095785.txt b/datasets/检测仪/train/labels/订单1805296_51_7095785.txt new file mode 100644 index 0000000..17dbe53 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805296_51_7095785.txt @@ -0,0 +1 @@ +5 0.460703 0.385820 0.429206 0.402881 0.429206 0.541982 0.443203 0.570859 0.436211 0.679785 0.422214 0.711279 0.430964 0.775586 0.443203 0.792646 0.467708 0.795264 0.488698 0.783457 0.574440 0.784766 0.602435 0.799199 0.640938 0.780830 0.649687 0.720459 0.639180 0.699463 0.642682 0.581357 0.665430 0.552480 0.686432 0.417314 0.658424 0.392383 0.633932 0.395000 0.628685 0.400254 0.490456 0.402881 0.460703 0.387129 diff --git a/datasets/检测仪/train/labels/订单1805302_51_7095822.txt b/datasets/检测仪/train/labels/订单1805302_51_7095822.txt new file mode 100644 index 0000000..dd12bd5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805302_51_7095822.txt @@ -0,0 +1 @@ +5 0.461592 0.460623 0.428339 0.488183 0.477336 0.646981 0.498328 0.674533 0.535075 0.793962 0.538581 0.842517 0.552572 0.893694 0.584072 0.912067 0.606817 0.905510 0.617313 0.895009 0.736298 0.879265 0.745052 0.891073 0.764302 0.888452 0.795790 0.863512 0.799296 0.818893 0.773045 0.780839 0.741557 0.653538 0.752053 0.607604 0.729308 0.456687 0.690807 0.433071 0.662814 0.433071 0.659308 0.443564 0.507082 0.469810 0.461592 0.463253 diff --git a/datasets/检测仪/train/labels/订单1805310_51_7095913.txt b/datasets/检测仪/train/labels/订单1805310_51_7095913.txt new file mode 100644 index 0000000..b5d9864 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805310_51_7095913.txt @@ -0,0 +1 @@ +5 0.403712 0.442284 0.375725 0.461971 0.379216 0.576147 0.400222 0.615520 0.401961 0.708696 0.400222 0.741500 0.407216 0.791373 0.429961 0.809745 0.459712 0.803176 0.540196 0.796618 0.552444 0.807118 0.573451 0.803176 0.597948 0.786118 0.599686 0.741500 0.592693 0.721814 0.597948 0.612892 0.603190 0.587961 0.615438 0.464598 0.592693 0.437039 0.566444 0.443598 0.557699 0.452784 0.428209 0.456725 0.401961 0.440980 diff --git a/datasets/检测仪/train/labels/订单1805311_51_7095915.txt b/datasets/检测仪/train/labels/订单1805311_51_7095915.txt new file mode 100644 index 0000000..4f33ec9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805311_51_7095915.txt @@ -0,0 +1 @@ +5 0.362721 0.437002 0.325977 0.437002 0.299727 0.459307 0.331224 0.639102 0.350469 0.665342 0.364466 0.778203 0.357474 0.814951 0.376719 0.872695 0.415208 0.898945 0.437956 0.896318 0.437956 0.887129 0.558698 0.877939 0.614687 0.888437 0.637435 0.804453 0.619935 0.763770 0.611185 0.649600 0.626940 0.614160 0.625182 0.454062 0.581445 0.421250 0.560443 0.426504 0.548190 0.435684 0.395964 0.450117 0.367969 0.442246 diff --git a/datasets/检测仪/train/labels/订单1805314_51_7096010.txt b/datasets/检测仪/train/labels/订单1805314_51_7096010.txt new file mode 100644 index 0000000..b3de9c3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805314_51_7096010.txt @@ -0,0 +1 @@ +5 0.180742 0.146973 0.143997 0.160098 0.102005 0.321514 0.119492 0.364824 0.338216 0.401562 0.371471 0.392383 0.530690 0.419941 0.581445 0.442246 0.656680 0.446182 0.684674 0.434375 0.700430 0.406816 0.693424 0.389756 0.716172 0.308389 0.731927 0.301826 0.751172 0.271641 0.733672 0.257207 0.717917 0.246709 0.625182 0.220459 0.586693 0.228340 0.406458 0.199463 0.394219 0.194219 0.191237 0.149600 diff --git a/datasets/检测仪/train/labels/订单1805315_51_7095969.txt b/datasets/检测仪/train/labels/订单1805315_51_7095969.txt new file mode 100644 index 0000000..2c70e20 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805315_51_7095969.txt @@ -0,0 +1 @@ +5 0.446706 0.385820 0.409961 0.405498 0.381966 0.581357 0.399466 0.614160 0.383711 0.748018 0.360964 0.807080 0.355716 0.887129 0.376719 0.917314 0.422214 0.922559 0.439714 0.909443 0.570937 0.916006 0.586693 0.931748 0.619935 0.939619 0.660182 0.908125 0.656680 0.889756 0.681172 0.838574 0.667174 0.787393 0.679427 0.640410 0.705677 0.556426 0.723177 0.430439 0.696927 0.401562 0.670677 0.401562 0.653177 0.408125 0.488698 0.400254 0.453711 0.388437 diff --git a/datasets/检测仪/train/labels/订单1805316_51_7096200.txt b/datasets/检测仪/train/labels/订单1805316_51_7096200.txt new file mode 100644 index 0000000..dd940e9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805316_51_7096200.txt @@ -0,0 +1 @@ +5 0.217467 0.337240 0.163213 0.360870 0.182467 0.565590 0.203467 0.598400 0.219213 0.782130 0.219213 0.934360 0.548173 0.918610 0.586667 0.897610 0.549920 0.812310 0.560413 0.783440 0.539427 0.734880 0.525427 0.582650 0.532427 0.531470 0.521920 0.377930 0.499173 0.351680 0.472933 0.343810 0.458933 0.343810 0.248960 0.343810 0.224467 0.338560 diff --git a/datasets/检测仪/train/labels/订单1805326_51_7096106.txt b/datasets/检测仪/train/labels/订单1805326_51_7096106.txt new file mode 100644 index 0000000..0c7677e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805326_51_7096106.txt @@ -0,0 +1 @@ +5 0.465951 0.423877 0.432708 0.448809 0.451953 0.635166 0.472956 0.664033 0.490456 0.792646 0.478203 0.834639 0.500951 0.914687 0.528945 0.935684 0.565690 0.935684 0.569193 0.925186 0.700430 0.908125 0.712669 0.917314 0.735417 0.917314 0.761667 0.896318 0.777422 0.818887 0.761667 0.795264 0.749414 0.654844 0.761667 0.616787 0.768672 0.431748 0.742422 0.410752 0.702174 0.410752 0.693424 0.421250 0.523698 0.435684 0.476458 0.425186 diff --git a/datasets/检测仪/train/labels/订单1805334_51_7096252.txt b/datasets/检测仪/train/labels/订单1805334_51_7096252.txt new file mode 100644 index 0000000..8f018fd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805334_51_7096252.txt @@ -0,0 +1 @@ +5 0.387190 0.376618 0.345196 0.396299 0.336454 0.576091 0.345196 0.598395 0.334690 0.761127 0.313693 0.825429 0.310196 0.919926 0.332941 0.952733 0.376699 0.960600 0.404690 0.940919 0.572663 0.942230 0.591912 0.959289 0.633905 0.961912 0.670654 0.927794 0.689902 0.821495 0.667157 0.788689 0.656650 0.606275 0.674150 0.557721 0.667157 0.404167 0.646160 0.384485 0.623415 0.383174 0.422190 0.377929 0.395948 0.376618 diff --git a/datasets/检测仪/train/labels/订单1805335_51_7096152.txt b/datasets/检测仪/train/labels/订单1805335_51_7096152.txt new file mode 100644 index 0000000..2dc58aa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805335_51_7096152.txt @@ -0,0 +1 @@ +5 0.342471 0.494784 0.303974 0.515775 0.302235 0.675882 0.319725 0.710010 0.317974 0.853049 0.303974 0.900294 0.309229 0.967225 0.330222 0.996098 0.366967 0.998716 0.382719 0.988216 0.508706 0.979029 0.522706 0.988216 0.552444 0.990843 0.585699 0.964598 0.599686 0.901608 0.578693 0.864863 0.571699 0.719196 0.592693 0.683755 0.597948 0.522343 0.569948 0.503971 0.541948 0.502657 0.524458 0.506588 0.382719 0.505284 0.345974 0.496098 diff --git a/datasets/检测仪/train/labels/订单1805337_51_7097483.txt b/datasets/检测仪/train/labels/订单1805337_51_7097483.txt new file mode 100644 index 0000000..0b7f6c5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805337_51_7097483.txt @@ -0,0 +1 @@ +5 0.318856 0.237567 0.276861 0.262500 0.273361 0.459350 0.303106 0.496096 0.294356 0.644392 0.266361 0.707383 0.275111 0.776938 0.296106 0.809746 0.341600 0.818929 0.360850 0.807121 0.511328 0.800558 0.521828 0.812371 0.556822 0.817617 0.581322 0.800558 0.619817 0.723129 0.611067 0.658825 0.604067 0.505283 0.621567 0.464600 0.644311 0.278250 0.623317 0.254625 0.588322 0.246750 0.567322 0.249375 0.331100 0.240192 diff --git a/datasets/检测仪/train/labels/订单1805340_51_7096134.txt b/datasets/检测仪/train/labels/订单1805340_51_7096134.txt new file mode 100644 index 0000000..cfc90a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805340_51_7096134.txt @@ -0,0 +1 @@ +5 0.441458 0.362197 0.401211 0.375322 0.373216 0.489492 0.380221 0.520986 0.352214 0.603662 0.327721 0.646973 0.320716 0.698154 0.322474 0.717842 0.345221 0.725713 0.362721 0.716523 0.451953 0.728340 0.464206 0.746709 0.488698 0.751963 0.513203 0.737520 0.528945 0.688965 0.532448 0.660098 0.563945 0.556426 0.576185 0.534111 0.623437 0.412061 0.612930 0.391064 0.595443 0.391064 0.479948 0.377939 0.448451 0.366133 diff --git a/datasets/检测仪/train/labels/订单1805341_51_7096228.txt b/datasets/检测仪/train/labels/订单1805341_51_7096228.txt new file mode 100644 index 0000000..dff95da --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805341_51_7096228.txt @@ -0,0 +1 @@ +5 0.509578 0.381921 0.471083 0.391108 0.385344 0.569588 0.371350 0.603708 0.296106 0.724442 0.271611 0.762500 0.247111 0.816304 0.247111 0.847800 0.429089 0.905546 0.474583 0.909483 0.532328 0.841242 0.530578 0.811058 0.618067 0.683758 0.766800 0.497408 0.770300 0.465913 0.731800 0.456725 0.521828 0.376675 diff --git a/datasets/检测仪/train/labels/订单1805343_51_7096175.txt b/datasets/检测仪/train/labels/订单1805343_51_7096175.txt new file mode 100644 index 0000000..4f05f20 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805343_51_7096175.txt @@ -0,0 +1 @@ +5 0.275027 0.393690 0.219085 0.429120 0.275027 0.619410 0.314654 0.662715 0.314654 0.767705 0.309991 0.820195 0.337966 0.879250 0.372931 0.906810 0.419547 0.909435 0.424210 0.896310 0.608357 0.879250 0.633996 0.891065 0.685284 0.884500 0.692274 0.685025 0.706261 0.612850 0.734227 0.417310 0.685284 0.383190 0.629334 0.383190 0.603694 0.392375 0.356616 0.400250 0.293677 0.392375 diff --git a/datasets/检测仪/train/labels/订单1805345_51_7096249.txt b/datasets/检测仪/train/labels/订单1805345_51_7096249.txt new file mode 100644 index 0000000..9c37bbb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805345_51_7096249.txt @@ -0,0 +1 @@ +5 0.375725 0.374049 0.342471 0.384549 0.295229 0.528902 0.309229 0.566961 0.277725 0.656196 0.253229 0.699510 0.237490 0.767745 0.242732 0.790059 0.281229 0.797931 0.298732 0.788745 0.403712 0.799245 0.412471 0.817618 0.435216 0.820245 0.463203 0.807118 0.491203 0.738873 0.485961 0.713941 0.517451 0.591892 0.536706 0.574833 0.576941 0.431794 0.576941 0.406853 0.545451 0.405539 0.393216 0.379294 diff --git a/datasets/检测仪/train/labels/订单1805348_51_7096292.txt b/datasets/检测仪/train/labels/订单1805348_51_7096292.txt new file mode 100644 index 0000000..ba4eb41 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805348_51_7096292.txt @@ -0,0 +1 @@ +5 0.436211 0.408125 0.399466 0.431748 0.404714 0.580039 0.429206 0.619414 0.434453 0.745400 0.423958 0.788701 0.429206 0.855635 0.453711 0.875322 0.483451 0.879258 0.485208 0.866133 0.609440 0.859570 0.623437 0.877939 0.649687 0.872695 0.670677 0.856943 0.686432 0.796582 0.667174 0.769023 0.675924 0.628604 0.693424 0.593164 0.703919 0.431748 0.668932 0.410752 0.639180 0.417314 0.492201 0.421250 0.450208 0.412061 diff --git a/datasets/检测仪/train/labels/订单1805350_51_7096333.txt b/datasets/检测仪/train/labels/订单1805350_51_7096333.txt new file mode 100644 index 0000000..54a4511 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805350_51_7096333.txt @@ -0,0 +1 @@ +5 0.397708 0.402881 0.346966 0.430439 0.376719 0.619414 0.402969 0.662725 0.408216 0.799199 0.409961 0.876631 0.429206 0.922559 0.451953 0.944873 0.490456 0.952744 0.511445 0.942246 0.647930 0.935684 0.700430 0.925186 0.737174 0.833320 0.724922 0.797891 0.709180 0.657471 0.717917 0.604980 0.716172 0.412061 0.679427 0.391064 0.644427 0.395000 0.635677 0.401562 0.443203 0.417314 0.406458 0.404189 diff --git a/datasets/检测仪/train/labels/订单1805351_51_7096392.txt b/datasets/检测仪/train/labels/订单1805351_51_7096392.txt new file mode 100644 index 0000000..f612a66 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805351_51_7096392.txt @@ -0,0 +1 @@ +5 0.361453 0.350391 0.317733 0.363511 0.323557 0.460625 0.338134 0.482935 0.346876 0.569551 0.335217 0.598423 0.349794 0.641729 0.381855 0.665352 0.425586 0.665352 0.440163 0.652227 0.577169 0.646978 0.606312 0.664038 0.632549 0.664038 0.673362 0.645664 0.670445 0.623354 0.685022 0.586611 0.650043 0.555112 0.644208 0.472437 0.661703 0.442251 0.655868 0.354326 0.623807 0.343828 0.597570 0.343828 0.390607 0.349077 diff --git a/datasets/检测仪/train/labels/订单1805355_51_7096586.txt b/datasets/检测仪/train/labels/订单1805355_51_7096586.txt new file mode 100644 index 0000000..704eb82 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805355_51_7096586.txt @@ -0,0 +1 @@ +5 0.346947 0.536720 0.324200 0.560340 0.355693 0.679760 0.380187 0.703390 0.404693 0.792620 0.395933 0.839870 0.422187 0.894990 0.439680 0.912050 0.467680 0.913360 0.478173 0.902860 0.579667 0.879240 0.584920 0.888420 0.607667 0.891050 0.630413 0.875300 0.628667 0.813620 0.604160 0.786060 0.579667 0.682390 0.579667 0.650890 0.548173 0.526220 0.525427 0.506530 0.506173 0.511780 0.499173 0.519660 0.366200 0.541970 0.355693 0.535410 diff --git a/datasets/检测仪/train/labels/订单1805358_51_7096443.txt b/datasets/检测仪/train/labels/订单1805358_51_7096443.txt new file mode 100644 index 0000000..5207854 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805358_51_7096443.txt @@ -0,0 +1 @@ +5 0.565273 0.442284 0.537396 0.450167 0.493815 0.568275 0.495560 0.595833 0.460703 0.686382 0.446758 0.715255 0.431068 0.741500 0.410156 0.788745 0.420612 0.809745 0.445013 0.816304 0.455469 0.811059 0.558307 0.837304 0.568763 0.855676 0.600143 0.866176 0.648945 0.796618 0.638477 0.770373 0.687279 0.661451 0.715169 0.631265 0.777917 0.489529 0.765716 0.469843 0.734349 0.467225 0.725625 0.472471 0.605365 0.446225 0.573997 0.437039 diff --git a/datasets/检测仪/train/labels/订单1805362_51_7096361.txt b/datasets/检测仪/train/labels/订单1805362_51_7096361.txt new file mode 100644 index 0000000..f2e86f8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805362_51_7096361.txt @@ -0,0 +1 @@ +5 0.008359 0.271647 0.069385 0.245404 0.109741 0.255898 0.249502 0.225716 0.447339 0.165345 0.476865 0.191595 0.482769 0.223092 0.476865 0.242773 0.491631 0.402884 0.498521 0.416003 0.505410 0.443561 0.486709 0.464564 0.306592 0.493431 0.286904 0.488184 0.171748 0.507871 0.132378 0.520990 0.046748 0.524928 0.018203 0.506556 0.007378 0.485560 0.011313 0.468496 0.001470 0.291335 diff --git a/datasets/检测仪/train/labels/订单1805363_51_7096360.txt b/datasets/检测仪/train/labels/订单1805363_51_7096360.txt new file mode 100644 index 0000000..1412c5d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805363_51_7096360.txt @@ -0,0 +1 @@ +5 0.493945 0.406816 0.455456 0.425186 0.474701 0.580039 0.493945 0.607598 0.499206 0.723086 0.490456 0.767705 0.499206 0.821514 0.520195 0.845137 0.546445 0.850381 0.565690 0.838574 0.677682 0.834639 0.684674 0.850381 0.707422 0.850381 0.735417 0.826758 0.747669 0.762461 0.728424 0.740146 0.724922 0.615479 0.738919 0.580039 0.740664 0.426504 0.709180 0.401562 0.691680 0.401562 0.681172 0.410752 0.532448 0.410752 0.499206 0.406816 diff --git a/datasets/检测仪/train/labels/订单1805366_51_7096424.txt b/datasets/检测仪/train/labels/订单1805366_51_7096424.txt new file mode 100644 index 0000000..9434fbf --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805366_51_7096424.txt @@ -0,0 +1 @@ +5 0.834013 0.608947 0.795960 0.584013 0.774960 0.590580 0.526927 0.605013 0.490187 0.622073 0.273647 0.647007 0.202780 0.636507 0.088607 0.650947 0.045300 0.674567 0.024307 0.710000 0.045300 0.728373 0.037427 0.897667 0.029553 0.929160 0.016433 0.959347 0.036113 0.990840 0.171487 1.000000 0.215607 1.000000 0.247400 0.982967 0.488873 0.981653 0.872073 0.993467 0.908820 0.938347 0.893073 0.896353 0.841887 0.664067 0.853700 0.611573 diff --git a/datasets/检测仪/train/labels/订单1805367_51_7096539.txt b/datasets/检测仪/train/labels/订单1805367_51_7096539.txt new file mode 100644 index 0000000..2e35267 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805367_51_7096539.txt @@ -0,0 +1 @@ +5 0.413866 0.532803 0.394107 0.545928 0.385641 0.643042 0.402574 0.667974 0.405399 0.744092 0.388456 0.778213 0.388456 0.818892 0.411040 0.835952 0.467511 0.834639 0.591723 0.829390 0.608666 0.838579 0.667952 0.824141 0.662311 0.761152 0.648193 0.741465 0.659485 0.665352 0.667952 0.641729 0.679244 0.547241 0.639727 0.534116 0.608666 0.535430 0.413866 0.535430 diff --git a/datasets/检测仪/train/labels/订单1805373_51_7096473.txt b/datasets/检测仪/train/labels/订单1805373_51_7096473.txt new file mode 100644 index 0000000..712a0f1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805373_51_7096473.txt @@ -0,0 +1 @@ +5 0.215729 0.349072 0.187734 0.367441 0.177240 0.523613 0.199987 0.564297 0.192995 0.720459 0.182487 0.759834 0.175495 0.845137 0.199987 0.870068 0.240234 0.871387 0.252487 0.859570 0.415208 0.850381 0.416966 0.862197 0.450208 0.866133 0.481706 0.842510 0.509701 0.750645 0.490456 0.727021 0.471198 0.564297 0.500951 0.532803 0.502695 0.366133 0.462461 0.335947 0.427461 0.345137 0.255977 0.353008 0.222734 0.346445 diff --git a/datasets/检测仪/train/labels/订单1805375_51_7096482.txt b/datasets/检测仪/train/labels/订单1805375_51_7096482.txt new file mode 100644 index 0000000..662a6ec --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805375_51_7096482.txt @@ -0,0 +1 @@ +5 0.339974 0.385820 0.320716 0.398945 0.327721 0.496055 0.339974 0.513115 0.353971 0.593164 0.343464 0.627285 0.348724 0.667969 0.366211 0.683721 0.392461 0.686338 0.397708 0.678467 0.478203 0.670596 0.506198 0.678467 0.516693 0.660098 0.525443 0.619414 0.516693 0.597100 0.497448 0.509180 0.511445 0.489492 0.509701 0.393691 0.493945 0.380566 0.476458 0.380566 0.352214 0.387129 diff --git a/datasets/检测仪/train/labels/订单1805376_51_7096538.txt b/datasets/检测仪/train/labels/订单1805376_51_7096538.txt new file mode 100644 index 0000000..c6a2491 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805376_51_7096538.txt @@ -0,0 +1 @@ +5 0.873659 0.353008 0.849154 0.335947 0.677682 0.338574 0.649687 0.349072 0.520195 0.346445 0.460703 0.338574 0.395964 0.346445 0.373216 0.359570 0.378464 0.383193 0.390716 0.391064 0.408216 0.454062 0.385469 0.468496 0.381966 0.480303 0.402969 0.498682 0.474701 0.506553 0.527201 0.499990 0.651432 0.492119 0.684674 0.501299 0.842161 0.511807 0.866654 0.497363 0.859661 0.478994 0.877148 0.356943 diff --git a/datasets/检测仪/train/labels/订单1805377_51_7096582.txt b/datasets/检测仪/train/labels/订单1805377_51_7096582.txt new file mode 100644 index 0000000..5b02648 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805377_51_7096582.txt @@ -0,0 +1 @@ +5 0.650139 0.269074 0.627500 0.273009 0.535964 0.446238 0.535964 0.501366 0.664896 0.607662 0.694427 0.611597 0.799740 0.696898 0.815486 0.731019 0.866667 0.761204 0.897179 0.761204 0.908993 0.731019 0.958203 0.628657 0.967066 0.629965 0.979861 0.605035 0.972969 0.577477 0.934583 0.530231 0.907023 0.518426 0.804661 0.429178 0.790885 0.408183 0.653090 0.275637 diff --git a/datasets/检测仪/train/labels/订单1805381_51_7096578.txt b/datasets/检测仪/train/labels/订单1805381_51_7096578.txt new file mode 100644 index 0000000..cd6f63b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805381_51_7096578.txt @@ -0,0 +1 @@ +5 0.411706 0.444873 0.373216 0.465869 0.409961 0.641719 0.430964 0.670596 0.448451 0.809697 0.444961 0.843818 0.458958 0.918623 0.495703 0.947500 0.520195 0.943564 0.537695 0.927813 0.654935 0.917314 0.677682 0.923877 0.696927 0.923877 0.731927 0.902881 0.728424 0.824141 0.709180 0.796582 0.684674 0.673223 0.696927 0.623350 0.689922 0.454062 0.642682 0.430439 0.621680 0.433066 0.618190 0.439619 0.457201 0.451436 0.418711 0.447500 diff --git a/datasets/检测仪/train/labels/订单1805382_51_7096625.txt b/datasets/检测仪/train/labels/订单1805382_51_7096625.txt new file mode 100644 index 0000000..59a5501 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805382_51_7096625.txt @@ -0,0 +1 @@ +5 0.388854 0.300564 0.366100 0.317622 0.369606 0.437040 0.381852 0.455417 0.387095 0.547283 0.374850 0.587960 0.380104 0.641771 0.397593 0.660139 0.420347 0.658828 0.427350 0.648333 0.521829 0.645703 0.558576 0.661450 0.569074 0.645703 0.588322 0.590590 0.574329 0.565651 0.579572 0.461979 0.593576 0.431797 0.590069 0.307127 0.569074 0.286128 0.548079 0.288750 0.387095 0.301875 diff --git a/datasets/检测仪/train/labels/订单1805383_51_7096566.txt b/datasets/检测仪/train/labels/订单1805383_51_7096566.txt new file mode 100644 index 0000000..cd5191c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805383_51_7096566.txt @@ -0,0 +1 @@ +5 0.402847 0.178516 0.380104 0.191641 0.332859 0.351745 0.343356 0.401615 0.308356 0.543342 0.276863 0.587960 0.268113 0.679826 0.280359 0.719193 0.327604 0.727066 0.339861 0.715260 0.488588 0.731007 0.504340 0.750694 0.544583 0.761189 0.588322 0.741502 0.619815 0.657517 0.614572 0.616832 0.656562 0.452795 0.663565 0.421293 0.723056 0.227066 0.695058 0.196884 0.684560 0.189010 0.413345 0.173264 diff --git a/datasets/检测仪/train/labels/订单1805385_51_7096707.txt b/datasets/检测仪/train/labels/订单1805385_51_7096707.txt new file mode 100644 index 0000000..f658155 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805385_51_7096707.txt @@ -0,0 +1 @@ +5 0.554453 0.213906 0.507214 0.225716 0.440280 0.438314 0.445534 0.485560 0.391725 0.646973 0.361543 0.698158 0.327422 0.792643 0.340547 0.832012 0.382539 0.864824 0.390417 0.846452 0.530833 0.888444 0.549206 0.917318 0.603014 0.908132 0.650254 0.808392 0.642383 0.766400 0.704063 0.568236 0.728997 0.534115 0.809049 0.316270 0.778867 0.278210 0.760495 0.280833 0.568893 0.216530 diff --git a/datasets/检测仪/train/labels/订单1805387_51_7096626.txt b/datasets/检测仪/train/labels/订单1805387_51_7096626.txt new file mode 100644 index 0000000..915cc30 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805387_51_7096626.txt @@ -0,0 +1 @@ +5 0.561509 0.425189 0.537891 0.448815 0.545762 0.624668 0.552651 0.649603 0.552651 0.778210 0.549702 0.826764 0.553638 0.884505 0.568403 0.913379 0.591040 0.919941 0.598911 0.905508 0.660923 0.906816 0.676670 0.914694 0.694385 0.917318 0.703242 0.896322 0.717021 0.818893 0.704229 0.793958 0.699307 0.648288 0.705210 0.619414 0.708164 0.456686 0.693403 0.427812 0.676670 0.427812 0.669780 0.433066 0.586118 0.434375 0.564463 0.425189 diff --git a/datasets/检测仪/train/labels/订单1805395_51_7096699.txt b/datasets/检测仪/train/labels/订单1805395_51_7096699.txt new file mode 100644 index 0000000..fb508b4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805395_51_7096699.txt @@ -0,0 +1 @@ +5 0.395844 0.397671 0.376594 0.419979 0.395844 0.523654 0.406344 0.535467 0.422089 0.612896 0.411594 0.643079 0.430839 0.694258 0.444839 0.708696 0.467583 0.706071 0.485083 0.695571 0.555072 0.687696 0.567322 0.692946 0.591822 0.696883 0.611067 0.677200 0.609317 0.627329 0.593572 0.607646 0.570822 0.518404 0.581322 0.497408 0.567322 0.401608 0.546328 0.383233 0.528828 0.393733 0.418589 0.401608 0.392344 0.397671 diff --git a/datasets/检测仪/train/labels/订单1805397_51_7096898.txt b/datasets/检测仪/train/labels/订单1805397_51_7096898.txt new file mode 100644 index 0000000..de21930 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805397_51_7096898.txt @@ -0,0 +1 @@ +5 0.271732 0.303145 0.248984 0.338574 0.339974 0.524922 0.366211 0.556426 0.427461 0.704717 0.432708 0.754580 0.478203 0.829385 0.507943 0.849072 0.542943 0.845137 0.556940 0.825449 0.695182 0.803145 0.709180 0.812324 0.744167 0.807080 0.780911 0.775586 0.768672 0.690283 0.737174 0.652227 0.670677 0.489492 0.677682 0.450117 0.614687 0.246709 0.558698 0.227021 0.534193 0.233584 0.520195 0.241465 0.325977 0.296582 0.271732 0.300518 diff --git a/datasets/检测仪/train/labels/订单1805398_51_7096786.txt b/datasets/检测仪/train/labels/订单1805398_51_7096786.txt new file mode 100644 index 0000000..7e03e1f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805398_51_7096786.txt @@ -0,0 +1 @@ +5 0.583072 0.514467 0.556822 0.486908 0.376594 0.426542 0.353850 0.426542 0.222617 0.375362 0.196367 0.359613 0.098383 0.330742 0.066883 0.335992 0.061639 0.351737 0.068633 0.362237 0.030139 0.427854 0.000000 0.462892 0.000000 0.471058 0.086133 0.515779 0.122878 0.518404 0.262861 0.566963 0.441339 0.648325 0.485083 0.648325 0.492083 0.632579 0.565572 0.521029 diff --git a/datasets/检测仪/train/labels/订单1805400_51_7096752.txt b/datasets/检测仪/train/labels/订单1805400_51_7096752.txt new file mode 100644 index 0000000..9d392a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805400_51_7096752.txt @@ -0,0 +1 @@ +5 0.256732 0.366176 0.228732 0.384549 0.232235 0.534147 0.247987 0.559088 0.260235 0.674569 0.244484 0.719196 0.244484 0.784804 0.274235 0.812363 0.300484 0.808431 0.309229 0.796618 0.415961 0.792686 0.436967 0.788745 0.440458 0.804490 0.477203 0.804490 0.508706 0.778245 0.519203 0.715255 0.494706 0.674569 0.485961 0.547275 0.501699 0.511843 0.499948 0.374049 0.477203 0.350422 0.442209 0.350422 0.275987 0.364863 diff --git a/datasets/检测仪/train/labels/订单1805408_51_7096821.txt b/datasets/检测仪/train/labels/订单1805408_51_7096821.txt new file mode 100644 index 0000000..af173a6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805408_51_7096821.txt @@ -0,0 +1 @@ +5 0.315412 0.120080 0.269907 0.126640 0.205146 0.268375 0.205146 0.303809 0.149136 0.420608 0.110625 0.459980 0.093125 0.515095 0.096622 0.538714 0.135133 0.554467 0.152633 0.546590 0.259402 0.564965 0.271662 0.582024 0.301410 0.593838 0.320665 0.584646 0.371436 0.521655 0.369681 0.495414 0.429189 0.374676 0.451941 0.354985 0.535957 0.218504 0.525465 0.196191 0.506210 0.192263 0.320665 0.120080 diff --git a/datasets/检测仪/train/labels/订单1805409_51_7096823.txt b/datasets/检测仪/train/labels/订单1805409_51_7096823.txt new file mode 100644 index 0000000..55f73f5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805409_51_7096823.txt @@ -0,0 +1 @@ +5 0.268229 0.328076 0.224479 0.354326 0.215742 0.549863 0.234987 0.604980 0.233229 0.784766 0.203490 0.850381 0.215742 0.955371 0.245482 0.986865 0.296224 0.993428 0.322474 0.981621 0.500951 0.971123 0.513203 0.988184 0.558698 0.989492 0.598932 0.960625 0.619935 0.841201 0.602435 0.795264 0.595443 0.612852 0.611185 0.580039 0.623437 0.362197 0.583190 0.330703 0.549948 0.328076 0.532448 0.337266 0.332969 0.339883 0.292721 0.328076 diff --git a/datasets/检测仪/train/labels/订单1805410_51_7096872.txt b/datasets/检测仪/train/labels/订单1805410_51_7096872.txt new file mode 100644 index 0000000..a18722d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805410_51_7096872.txt @@ -0,0 +1 @@ +5 0.426683 0.219173 0.402077 0.242795 0.405029 0.430455 0.423726 0.469827 0.418808 0.646994 0.406995 0.717859 0.409947 0.813660 0.435538 0.855654 0.468019 0.867462 0.483769 0.845154 0.583178 0.842532 0.594990 0.856968 0.621562 0.856968 0.644202 0.820218 0.656010 0.709987 0.636327 0.643058 0.628452 0.463263 0.634361 0.408147 0.632389 0.227045 0.607784 0.202109 0.435538 0.220481 diff --git a/datasets/检测仪/train/labels/订单1805413_51_7096930.txt b/datasets/检测仪/train/labels/订单1805413_51_7096930.txt new file mode 100644 index 0000000..aed0435 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805413_51_7096930.txt @@ -0,0 +1 @@ +5 0.259453 0.375300 0.226213 0.397610 0.233213 0.581340 0.261213 0.624650 0.257707 0.797870 0.243707 0.866110 0.259453 0.971100 0.290947 0.999970 0.292053 1.000000 0.346307 1.000000 0.364440 0.978980 0.551667 0.964540 0.565667 0.980290 0.290947 0.969790 0.628667 0.972410 0.654907 0.939610 0.653160 0.839870 0.618160 0.782130 0.597160 0.606270 0.607667 0.561650 0.584920 0.381860 0.546427 0.360870 0.520173 0.363490 0.268200 0.373990 diff --git a/datasets/检测仪/train/labels/订单1805415_51_7096961.txt b/datasets/检测仪/train/labels/订单1805415_51_7096961.txt new file mode 100644 index 0000000..911e25a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805415_51_7096961.txt @@ -0,0 +1 @@ +5 0.472956 0.435684 0.446706 0.455371 0.427461 0.620723 0.450208 0.644346 0.436211 0.809697 0.416966 0.868760 0.420456 0.969805 0.446706 0.998682 0.458607 1.000000 0.497279 1.000000 0.506198 0.989492 0.696927 0.994746 0.740156 1.000000 0.768294 1.000000 0.794909 0.989492 0.805417 0.884502 0.775664 0.834639 0.758164 0.652227 0.775664 0.606289 0.765169 0.451436 0.731927 0.435684 0.479948 0.435684 diff --git a/datasets/检测仪/train/labels/订单1805416_51_7096938.txt b/datasets/检测仪/train/labels/订单1805416_51_7096938.txt new file mode 100644 index 0000000..4f00b28 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805416_51_7096938.txt @@ -0,0 +1 @@ +5 0.369714 0.443564 0.346966 0.459307 0.360964 0.582666 0.388958 0.611543 0.394219 0.702090 0.388958 0.762461 0.399466 0.816260 0.418711 0.838574 0.448451 0.843818 0.462461 0.832012 0.569193 0.816260 0.579688 0.825449 0.605938 0.824141 0.626940 0.803145 0.623437 0.740146 0.602435 0.713906 0.588438 0.599727 0.597187 0.570859 0.586693 0.443564 0.553438 0.429121 0.535951 0.433066 0.378464 0.447500 diff --git a/datasets/检测仪/train/labels/订单1805417_51_7096975.txt b/datasets/检测仪/train/labels/订单1805417_51_7096975.txt new file mode 100644 index 0000000..8a2d185 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805417_51_7096975.txt @@ -0,0 +1 @@ +5 0.436187 0.317560 0.406440 0.333310 0.366200 0.496040 0.376693 0.531470 0.348693 0.656140 0.327693 0.687640 0.318947 0.740130 0.334693 0.761130 0.355693 0.765070 0.371440 0.755880 0.485173 0.775560 0.525427 0.797870 0.542920 0.783440 0.576173 0.725700 0.576173 0.692890 0.605920 0.582650 0.640907 0.536720 0.703907 0.389740 0.677653 0.356930 0.649653 0.359550 0.493933 0.334620 0.471187 0.324120 0.439680 0.318870 diff --git a/datasets/检测仪/train/labels/订单1805419_51_7097018.txt b/datasets/检测仪/train/labels/订单1805419_51_7097018.txt new file mode 100644 index 0000000..ff9df15 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805419_51_7097018.txt @@ -0,0 +1 @@ +5 0.140359 0.391096 0.114103 0.409462 0.117603 0.565635 0.140359 0.599750 0.138603 0.741481 0.128103 0.826788 0.143846 0.912087 0.171846 0.939644 0.217346 0.944894 0.240090 0.922587 0.415064 0.895029 0.427321 0.906837 0.458808 0.905529 0.492064 0.877971 0.488564 0.788731 0.469308 0.742798 0.437821 0.582692 0.451808 0.549885 0.425564 0.402904 0.406321 0.385846 0.387077 0.388471 0.182346 0.392404 0.156103 0.389779 diff --git a/datasets/检测仪/train/labels/订单1805422_51_7097140.txt b/datasets/检测仪/train/labels/订单1805422_51_7097140.txt new file mode 100644 index 0000000..c4aa50c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805422_51_7097140.txt @@ -0,0 +1 @@ +5 0.576274 0.321517 0.548716 0.311016 0.533950 0.318893 0.531982 0.328079 0.466040 0.423880 0.452261 0.422565 0.444385 0.435690 0.443403 0.464564 0.457183 0.490807 0.535923 0.604980 0.557573 0.619414 0.614663 0.709967 0.631392 0.750651 0.673716 0.803145 0.700293 0.811016 0.713086 0.799206 0.713086 0.775586 0.772139 0.711283 0.779033 0.712591 0.794780 0.695534 0.796748 0.669284 0.765249 0.604980 0.738677 0.583984 0.665840 0.480306 0.655015 0.450124 0.582183 0.325456 diff --git a/datasets/检测仪/train/labels/订单1805425_51_7097081.txt b/datasets/检测仪/train/labels/订单1805425_51_7097081.txt new file mode 100644 index 0000000..1ffe7fc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805425_51_7097081.txt @@ -0,0 +1 @@ +5 0.204111 0.652220 0.137033 0.667965 0.139956 0.683715 0.154533 0.695525 0.125367 0.791325 0.096211 0.800510 0.093289 0.808385 0.113711 0.824135 0.402422 0.842505 0.466578 0.832010 0.661967 0.850380 0.726133 0.856940 0.836944 0.858255 0.874856 0.850380 0.886522 0.829385 0.877778 0.822820 0.889444 0.749330 0.912778 0.729645 0.877778 0.712585 0.787367 0.696835 0.708633 0.699460 0.530733 0.688965 0.478244 0.674525 0.204111 0.653530 diff --git a/datasets/检测仪/train/labels/订单1805428_51_7097030.txt b/datasets/检测仪/train/labels/订单1805428_51_7097030.txt new file mode 100644 index 0000000..3939066 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805428_51_7097030.txt @@ -0,0 +1 @@ +5 0.651432 0.305762 0.628685 0.307080 0.530690 0.385820 0.513203 0.418623 0.434453 0.484238 0.399466 0.510488 0.371471 0.540674 0.364466 0.561670 0.392461 0.577422 0.397708 0.577422 0.469453 0.615479 0.467708 0.633848 0.502695 0.639102 0.556940 0.601045 0.642682 0.506553 0.663685 0.502617 0.770417 0.417314 0.772161 0.396318 0.759922 0.389756 0.654935 0.312324 diff --git a/datasets/检测仪/train/labels/订单1805429_51_7097065.txt b/datasets/检测仪/train/labels/订单1805429_51_7097065.txt new file mode 100644 index 0000000..fb16507 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805429_51_7097065.txt @@ -0,0 +1 @@ +5 0.464108 0.338629 0.439620 0.353070 0.427368 0.481678 0.444868 0.513180 0.434371 0.611601 0.420365 0.650976 0.423860 0.712654 0.439620 0.733651 0.460614 0.732336 0.472865 0.723147 0.581345 0.725779 0.597091 0.738893 0.625088 0.738893 0.649591 0.717895 0.658333 0.671974 0.646082 0.640471 0.647836 0.502675 0.667091 0.489550 0.682836 0.362259 0.661842 0.341261 0.633845 0.339945 0.464108 0.339945 diff --git a/datasets/检测仪/train/labels/订单1805430_51_7097192.txt b/datasets/检测仪/train/labels/订单1805430_51_7097192.txt new file mode 100644 index 0000000..c39e5dd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805430_51_7097192.txt @@ -0,0 +1 @@ +5 0.291826 0.034115 0.259346 0.052487 0.263281 0.093171 0.270171 0.107604 0.263281 0.225716 0.272139 0.261146 0.250488 0.276895 0.251470 0.297897 0.274111 0.322826 0.343989 0.351699 0.394189 0.342513 0.524111 0.356947 0.558560 0.387135 0.732769 0.417318 0.751470 0.391068 0.755410 0.347760 0.775093 0.146973 0.781982 0.127292 0.774111 0.098418 0.761313 0.095794 0.595962 0.060358 0.559541 0.073483 0.414858 0.049863 0.366631 0.030176 0.294780 0.034115 diff --git a/datasets/检测仪/train/labels/订单1805431_51_7097106.txt b/datasets/检测仪/train/labels/订单1805431_51_7097106.txt new file mode 100644 index 0000000..2a40c18 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805431_51_7097106.txt @@ -0,0 +1 @@ +5 0.297969 0.549863 0.259479 0.564297 0.269974 0.581357 0.264727 0.677158 0.254232 0.688965 0.248984 0.700781 0.268229 0.712588 0.299727 0.715215 0.439714 0.709961 0.485208 0.692900 0.593685 0.700781 0.623437 0.703398 0.691680 0.695527 0.714427 0.678467 0.712669 0.662725 0.698672 0.597100 0.700430 0.570859 0.675924 0.560361 0.628685 0.555107 0.593685 0.564297 0.474701 0.564297 0.448451 0.557734 0.304974 0.548545 diff --git a/datasets/检测仪/train/labels/订单1805433_51_7097054.txt b/datasets/检测仪/train/labels/订单1805433_51_7097054.txt new file mode 100644 index 0000000..22a37d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805433_51_7097054.txt @@ -0,0 +1 @@ +5 0.086133 0.370113 0.049389 0.388483 0.052889 0.408171 0.070383 0.416042 0.079133 0.526279 0.066883 0.534154 0.066883 0.547275 0.093133 0.570900 0.192872 0.578775 0.250611 0.559087 0.415094 0.548588 0.464083 0.555150 0.649561 0.545967 0.677561 0.521029 0.668811 0.505283 0.665311 0.374050 0.642561 0.347800 0.633817 0.343867 0.458839 0.350425 0.411594 0.368800 0.233117 0.368800 0.177122 0.356988 0.096633 0.367488 diff --git a/datasets/检测仪/train/labels/订单1805437_51_7097133.txt b/datasets/检测仪/train/labels/订单1805437_51_7097133.txt new file mode 100644 index 0000000..23a962d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805437_51_7097133.txt @@ -0,0 +1 @@ +5 0.439714 0.393691 0.394219 0.413379 0.388958 0.590537 0.395964 0.758525 0.378464 0.816260 0.378464 0.881885 0.399466 0.908125 0.448451 0.922559 0.458958 0.912061 0.584935 0.912061 0.607682 0.921250 0.635677 0.927813 0.661927 0.909443 0.684674 0.850381 0.677682 0.814951 0.684674 0.662725 0.712669 0.606289 0.742422 0.439619 0.712669 0.404189 0.674180 0.402881 0.667174 0.409443 0.490456 0.405498 0.450208 0.395000 diff --git a/datasets/检测仪/train/labels/订单1805439_51_7097139.txt b/datasets/检测仪/train/labels/订单1805439_51_7097139.txt new file mode 100644 index 0000000..8118647 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805439_51_7097139.txt @@ -0,0 +1 @@ +5 0.500833 0.498721 0.467583 0.510533 0.455339 0.637829 0.472833 0.666700 0.460589 0.774312 0.444839 0.807121 0.441339 0.876675 0.458839 0.905546 0.479833 0.909483 0.502583 0.893733 0.609317 0.901608 0.619817 0.912108 0.653061 0.921292 0.684556 0.897671 0.693306 0.833367 0.672311 0.809746 0.675811 0.683758 0.698556 0.649638 0.700306 0.526279 0.681061 0.510533 0.658311 0.510533 0.500833 0.501346 diff --git a/datasets/检测仪/train/labels/订单1805444_51_7097190.txt b/datasets/检测仪/train/labels/订单1805444_51_7097190.txt new file mode 100644 index 0000000..c198273 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805444_51_7097190.txt @@ -0,0 +1 @@ +5 0.399344 0.489533 0.371350 0.502658 0.390594 0.644392 0.406344 0.664075 0.418589 0.771687 0.406344 0.808433 0.420339 0.880608 0.437839 0.895046 0.464083 0.898983 0.486833 0.887171 0.598817 0.874050 0.612817 0.880608 0.628567 0.881921 0.640811 0.867487 0.656561 0.808433 0.632067 0.775625 0.612817 0.658825 0.626817 0.626017 0.619817 0.489533 0.598817 0.473787 0.570822 0.473787 0.549828 0.480346 0.420339 0.488221 diff --git a/datasets/检测仪/train/labels/订单1805445_51_7097229.txt b/datasets/检测仪/train/labels/订单1805445_51_7097229.txt new file mode 100644 index 0000000..c233b3f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805445_51_7097229.txt @@ -0,0 +1 @@ +5 0.420440 0.404170 0.383693 0.414670 0.324200 0.590520 0.325947 0.633830 0.285707 0.787370 0.257707 0.843810 0.234960 0.943540 0.255960 0.980290 0.289200 0.993410 0.318947 0.977660 0.524120 1.000000 0.537013 1.000000 0.605920 0.918610 0.598920 0.860870 0.635653 0.682390 0.654907 0.657450 0.705653 0.469790 0.672400 0.435670 0.646160 0.436980 0.434440 0.409420 diff --git a/datasets/检测仪/train/labels/订单1805446_51_7097173.txt b/datasets/检测仪/train/labels/订单1805446_51_7097173.txt new file mode 100644 index 0000000..90a8847 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805446_51_7097173.txt @@ -0,0 +1 @@ +5 0.437235 0.301829 0.407593 0.330703 0.410554 0.366133 0.416485 0.380573 0.419451 0.539362 0.406603 0.556426 0.405618 0.578737 0.427353 0.611543 0.444152 0.611543 0.595333 0.615482 0.630907 0.598418 0.766275 0.606296 0.791966 0.615482 0.869039 0.608919 0.892755 0.595794 0.894730 0.553802 0.885838 0.548548 0.893740 0.423880 0.908564 0.417318 0.915480 0.381882 0.895721 0.354323 0.831490 0.329388 0.789990 0.342513 0.646716 0.342513 0.613118 0.321517 0.450078 0.303145 diff --git a/datasets/检测仪/train/labels/订单1805449_51_7097273.txt b/datasets/检测仪/train/labels/订单1805449_51_7097273.txt new file mode 100644 index 0000000..575fb88 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805449_51_7097273.txt @@ -0,0 +1 @@ +5 0.211118 0.124668 0.172729 0.164036 0.168794 0.199466 0.150093 0.419941 0.136313 0.458001 0.163872 0.503932 0.388281 0.531491 0.420762 0.520990 0.620566 0.562988 0.649111 0.562988 0.722930 0.572174 0.757378 0.526243 0.750488 0.485560 0.762300 0.309707 0.769189 0.300521 0.772139 0.258522 0.750488 0.220469 0.653047 0.192910 0.614663 0.204720 0.445371 0.186348 0.426670 0.171908 0.217021 0.127292 diff --git a/datasets/检测仪/train/labels/订单1805452_51_7097304.txt b/datasets/检测仪/train/labels/订单1805452_51_7097304.txt new file mode 100644 index 0000000..f4179e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805452_51_7097304.txt @@ -0,0 +1 @@ +5 0.331224 0.397627 0.297982 0.413379 0.269974 0.535420 0.278724 0.569541 0.248984 0.678467 0.227982 0.702090 0.222734 0.759834 0.227982 0.771641 0.255977 0.775586 0.264727 0.771641 0.366211 0.786084 0.376719 0.796582 0.401211 0.800518 0.425703 0.791328 0.450208 0.729648 0.444961 0.703398 0.476458 0.591855 0.490456 0.572168 0.532448 0.446182 0.520195 0.423877 0.486953 0.425186 0.362721 0.409443 0.331224 0.398945 diff --git a/datasets/检测仪/train/labels/订单1805453_51_7097272.txt b/datasets/检测仪/train/labels/订单1805453_51_7097272.txt new file mode 100644 index 0000000..3ab3b6a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805453_51_7097272.txt @@ -0,0 +1 @@ +5 0.551299 0.409488 0.531367 0.437040 0.531367 0.455417 0.538750 0.471163 0.538750 0.598464 0.529893 0.607648 0.531367 0.620773 0.543916 0.648333 0.555728 0.653576 0.647266 0.647014 0.668672 0.635208 0.740278 0.645703 0.758730 0.645703 0.811143 0.636519 0.827383 0.618142 0.825166 0.595833 0.817046 0.484288 0.822217 0.479036 0.823691 0.451476 0.814097 0.435729 0.762422 0.423924 0.751348 0.437040 0.665718 0.435729 0.653169 0.425234 0.552778 0.412109 diff --git a/datasets/检测仪/train/labels/订单1805454_51_7097240.txt b/datasets/检测仪/train/labels/订单1805454_51_7097240.txt new file mode 100644 index 0000000..02c4470 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805454_51_7097240.txt @@ -0,0 +1 @@ +5 0.310221 0.292646 0.285729 0.305762 0.285729 0.427812 0.306719 0.452744 0.308477 0.536738 0.290977 0.586602 0.306719 0.641719 0.325977 0.657471 0.359219 0.652227 0.451953 0.640410 0.474701 0.648281 0.500951 0.631221 0.513203 0.577422 0.497448 0.557734 0.488698 0.457998 0.499206 0.434375 0.518451 0.316260 0.486953 0.297891 0.458958 0.304453 0.317227 0.296582 diff --git a/datasets/检测仪/train/labels/订单1805458_51_7097359.txt b/datasets/检测仪/train/labels/订单1805458_51_7097359.txt new file mode 100644 index 0000000..03962d1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805458_51_7097359.txt @@ -0,0 +1 @@ +5 0.206992 0.527549 0.175495 0.568232 0.250729 0.729648 0.278724 0.745400 0.327721 0.858262 0.325977 0.909443 0.357474 0.969805 0.390716 0.981621 0.420456 0.977686 0.427461 0.960625 0.556940 0.929121 0.562187 0.939619 0.583190 0.935684 0.597187 0.905498 0.590195 0.845137 0.570937 0.817578 0.516693 0.695527 0.520195 0.658779 0.478203 0.514424 0.443203 0.489492 0.415208 0.494746 0.408216 0.503926 0.268229 0.534111 0.215742 0.530176 diff --git a/datasets/检测仪/train/labels/订单1805459_51_7097355.txt b/datasets/检测仪/train/labels/订单1805459_51_7097355.txt new file mode 100644 index 0000000..e8e701d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805459_51_7097355.txt @@ -0,0 +1 @@ +5 0.583190 0.476367 0.548190 0.493428 0.535951 0.653535 0.556940 0.698154 0.549948 0.809697 0.534193 0.849072 0.539440 0.935684 0.563945 0.963242 0.593685 0.968496 0.605938 0.956680 0.744167 0.959307 0.756419 0.971123 0.775664 0.975059 0.798411 0.960625 0.824661 0.879258 0.801914 0.851699 0.807161 0.704717 0.821159 0.681094 0.840404 0.520986 0.805417 0.486865 0.779167 0.490801 0.628685 0.486865 0.590195 0.480303 diff --git a/datasets/检测仪/train/labels/订单1805460_51_7097375.txt b/datasets/检测仪/train/labels/订单1805460_51_7097375.txt new file mode 100644 index 0000000..b3c8979 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805460_51_7097375.txt @@ -0,0 +1 @@ +5 0.348935 0.165380 0.318425 0.178507 0.251495 0.368793 0.250510 0.400287 0.198345 0.539393 0.168820 0.586640 0.148150 0.652260 0.149135 0.683753 0.170785 0.703440 0.187520 0.695567 0.260355 0.738873 0.265275 0.751993 0.293820 0.784800 0.350905 0.675880 0.346970 0.647007 0.401100 0.509213 0.427675 0.486900 0.499525 0.317613 0.495590 0.271680 0.474920 0.262493 0.462125 0.266433 0.366655 0.190313 0.352875 0.165380 diff --git a/datasets/检测仪/train/labels/订单1805461_51_7097444.txt b/datasets/检测仪/train/labels/订单1805461_51_7097444.txt new file mode 100644 index 0000000..73311ee --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805461_51_7097444.txt @@ -0,0 +1 @@ +5 0.371440 0.486850 0.327693 0.511780 0.346947 0.686320 0.362693 0.712570 0.369693 0.860870 0.366200 0.904170 0.385440 0.972410 0.413440 0.988160 0.451933 0.977660 0.572667 0.959290 0.609413 0.965850 0.642653 0.876610 0.616413 0.704700 0.633907 0.648270 0.626907 0.506530 0.600667 0.477660 0.570920 0.484230 0.415187 0.496040 0.385440 0.488160 diff --git a/datasets/检测仪/train/labels/订单1805463_51_7097391.txt b/datasets/检测仪/train/labels/订单1805463_51_7097391.txt new file mode 100644 index 0000000..e72557a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805463_51_7097391.txt @@ -0,0 +1 @@ +5 0.406458 0.468496 0.367969 0.486865 0.394219 0.683721 0.411706 0.818887 0.409961 0.879258 0.425703 0.948809 0.448451 0.971123 0.478203 0.969805 0.488698 0.956680 0.618190 0.938311 0.656680 0.944873 0.682930 0.925186 0.696927 0.847764 0.681172 0.809697 0.656680 0.654844 0.661927 0.637783 0.649687 0.482930 0.625182 0.461934 0.602435 0.465869 0.439714 0.475059 0.416966 0.468496 diff --git a/datasets/检测仪/train/labels/订单1805466_51_7097460.txt b/datasets/检测仪/train/labels/订单1805466_51_7097460.txt new file mode 100644 index 0000000..2f83e10 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805466_51_7097460.txt @@ -0,0 +1 @@ +5 0.303200 0.603650 0.292707 0.618080 0.306707 0.723070 0.325947 0.740130 0.338200 0.821500 0.339947 0.856930 0.353947 0.904170 0.369693 0.922550 0.388947 0.922550 0.399440 0.912050 0.476427 0.900240 0.511427 0.904170 0.523680 0.883180 0.527173 0.831990 0.516680 0.816250 0.488680 0.729630 0.490427 0.702070 0.476427 0.591840 0.455427 0.578710 0.439680 0.589210 0.415187 0.593150 0.345200 0.602340 0.310200 0.598400 diff --git a/datasets/检测仪/train/labels/订单1805468_51_7097492.txt b/datasets/检测仪/train/labels/订单1805468_51_7097492.txt new file mode 100644 index 0000000..3a63d8b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805468_51_7097492.txt @@ -0,0 +1 @@ +5 0.460686 0.358235 0.415180 0.375306 0.371438 0.555086 0.378448 0.610208 0.360948 0.779498 0.348693 0.925172 0.364444 0.959289 0.397696 0.971103 0.416944 0.954044 0.574412 0.959289 0.619918 0.972414 0.649657 0.963223 0.688154 0.858235 0.672402 0.833309 0.689902 0.660074 0.714395 0.623333 0.749395 0.435674 0.724902 0.401544 0.695147 0.400233 0.677647 0.401544 0.502680 0.372672 diff --git a/datasets/检测仪/train/labels/订单1805469_51_7097445.txt b/datasets/检测仪/train/labels/订单1805469_51_7097445.txt new file mode 100644 index 0000000..aaeaf7b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805469_51_7097445.txt @@ -0,0 +1 @@ +5 0.184103 0.307106 0.157846 0.328096 0.222590 0.531510 0.238346 0.570885 0.297833 0.709990 0.292590 0.734923 0.315333 0.801856 0.353821 0.825471 0.388821 0.825471 0.399321 0.811038 0.539308 0.772981 0.567295 0.780856 0.583051 0.755923 0.586551 0.666683 0.558551 0.640433 0.509551 0.507885 0.509551 0.479019 0.458808 0.320221 0.430821 0.304481 0.404564 0.307106 0.194590 0.308413 diff --git a/datasets/检测仪/train/labels/订单1805471_51_7097467.txt b/datasets/检测仪/train/labels/订单1805471_51_7097467.txt new file mode 100644 index 0000000..52f9a9f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805471_51_7097467.txt @@ -0,0 +1 @@ +5 0.427461 0.363506 0.373216 0.381885 0.380221 0.406816 0.376719 0.587920 0.390716 0.618105 0.373216 0.751963 0.355716 0.896318 0.574440 0.904189 0.660182 0.921250 0.674180 0.839883 0.660182 0.796582 0.688177 0.643037 0.709180 0.555107 0.738919 0.409443 0.710924 0.377939 0.675924 0.376631 0.656680 0.380566 0.481706 0.377939 0.434453 0.366133 diff --git a/datasets/检测仪/train/labels/订单1805472_51_7097529.txt b/datasets/检测仪/train/labels/订单1805472_51_7097529.txt new file mode 100644 index 0000000..eeb9d77 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805472_51_7097529.txt @@ -0,0 +1 @@ +5 0.268497 0.324144 0.252224 0.332016 0.273160 0.408131 0.298758 0.419948 0.315046 0.475061 0.329003 0.528867 0.356917 0.538054 0.380184 0.524931 0.463957 0.515744 0.473267 0.524931 0.487224 0.476375 0.473267 0.459317 0.445337 0.402881 0.450000 0.381886 0.438359 0.313642 0.417423 0.300519 0.398804 0.309706 0.282469 0.325458 diff --git a/datasets/检测仪/train/labels/订单1805473_51_7097537.txt b/datasets/检测仪/train/labels/订单1805473_51_7097537.txt new file mode 100644 index 0000000..cf5e6ac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805473_51_7097537.txt @@ -0,0 +1 @@ +5 0.268980 0.216569 0.209490 0.253314 0.221739 0.535461 0.242732 0.580088 0.242732 0.767745 0.218235 0.846490 0.226993 0.900294 0.303974 0.926539 0.328471 0.910794 0.485961 0.897667 0.559451 0.905539 0.578693 0.888480 0.610196 0.801873 0.604941 0.769059 0.625935 0.589275 0.657438 0.544647 0.711673 0.290059 0.683686 0.253314 0.648680 0.245441 0.615438 0.257245 0.344222 0.238873 0.321477 0.227069 0.277725 0.216569 diff --git a/datasets/检测仪/train/labels/订单1805479_51_7097597.txt b/datasets/检测仪/train/labels/订单1805479_51_7097597.txt new file mode 100644 index 0000000..d91c8de --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805479_51_7097597.txt @@ -0,0 +1 @@ +5 0.268229 0.238838 0.241979 0.265078 0.297982 0.452744 0.334727 0.494746 0.371471 0.639102 0.374961 0.707344 0.402969 0.783457 0.448451 0.820205 0.493945 0.808389 0.500951 0.800518 0.651432 0.767705 0.670677 0.774268 0.703919 0.767705 0.738919 0.733584 0.730169 0.653535 0.696927 0.608916 0.642682 0.439619 0.640938 0.368760 0.598932 0.219150 0.558698 0.194219 0.528945 0.195527 0.518451 0.206025 0.303229 0.238838 0.273477 0.238838 diff --git a/datasets/检测仪/train/labels/订单1805483_51_7097639.txt b/datasets/检测仪/train/labels/订单1805483_51_7097639.txt new file mode 100644 index 0000000..ba35966 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805483_51_7097639.txt @@ -0,0 +1 @@ +5 0.186535 0.521027 0.158975 0.531520 0.153070 0.557767 0.074330 0.734933 0.065470 0.761180 0.076300 0.795300 0.248545 0.860920 0.285945 0.855667 0.407010 0.901600 0.449330 0.934407 0.520195 0.943593 0.558580 0.922600 0.550710 0.879293 0.552675 0.842547 0.575315 0.736247 0.587125 0.702127 0.575315 0.664067 0.514290 0.628633 0.483780 0.631260 0.346970 0.584013 0.190470 0.523647 diff --git a/datasets/检测仪/train/labels/订单1805485_51_7097619.txt b/datasets/检测仪/train/labels/订单1805485_51_7097619.txt new file mode 100644 index 0000000..6051737 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805485_51_7097619.txt @@ -0,0 +1 @@ +5 0.331100 0.475100 0.289106 0.489533 0.205117 0.633892 0.187622 0.677200 0.119378 0.771687 0.086133 0.811058 0.068633 0.858300 0.068633 0.887171 0.093133 0.887171 0.215617 0.901608 0.254111 0.926542 0.275111 0.914729 0.327606 0.859613 0.329350 0.842554 0.392344 0.755938 0.437839 0.727067 0.553322 0.595833 0.544578 0.557775 0.514828 0.543342 0.500833 0.549900 0.385344 0.513158 0.341600 0.480346 diff --git a/datasets/检测仪/train/labels/订单1805489_51_7097678.txt b/datasets/检测仪/train/labels/订单1805489_51_7097678.txt new file mode 100644 index 0000000..196c540 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805489_51_7097678.txt @@ -0,0 +1 @@ +5 0.367612 0.291335 0.343008 0.320202 0.350879 0.356947 0.352852 0.560358 0.345962 0.597109 0.363677 0.623353 0.385332 0.632539 0.586118 0.614167 0.603833 0.598418 0.767222 0.593171 0.827261 0.602357 0.914858 0.589232 0.934541 0.556426 0.939463 0.513118 0.927651 0.503932 0.917813 0.338574 0.928638 0.328079 0.930605 0.291335 0.901079 0.258522 0.804619 0.249336 0.773125 0.271647 0.606787 0.292643 0.566431 0.283457 0.362690 0.291335 diff --git a/datasets/检测仪/train/labels/订单1805490_51_7097677.txt b/datasets/检测仪/train/labels/订单1805490_51_7097677.txt new file mode 100644 index 0000000..82b8d2c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805490_51_7097677.txt @@ -0,0 +1 @@ +5 0.106832 0.447558 0.107813 0.472488 0.117656 0.482986 0.124540 0.615532 0.106832 0.650972 0.127500 0.687708 0.208203 0.698206 0.260373 0.678530 0.397179 0.670648 0.468047 0.675903 0.593047 0.677211 0.613715 0.653588 0.606832 0.629965 0.597969 0.438368 0.599939 0.410810 0.580252 0.395058 0.411944 0.398993 0.386354 0.414745 0.262335 0.421308 0.227891 0.414745 0.165885 0.416053 0.125530 0.423935 0.108793 0.435741 diff --git a/datasets/检测仪/train/labels/订单1805494_51_7097669.txt b/datasets/检测仪/train/labels/订单1805494_51_7097669.txt new file mode 100644 index 0000000..f857aa1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805494_51_7097669.txt @@ -0,0 +1 @@ +5 0.411706 0.367441 0.390716 0.380566 0.364466 0.540674 0.371471 0.569541 0.360964 0.730957 0.332969 0.787393 0.332969 0.871387 0.367969 0.905498 0.416966 0.910752 0.422214 0.900254 0.600690 0.900254 0.632188 0.918623 0.674180 0.902881 0.695182 0.812324 0.679427 0.749336 0.668932 0.589229 0.681172 0.549863 0.688177 0.385820 0.661927 0.360879 0.637435 0.364824 0.408216 0.370068 diff --git a/datasets/检测仪/train/labels/订单1805495_51_7097888.txt b/datasets/检测仪/train/labels/订单1805495_51_7097888.txt new file mode 100644 index 0000000..07e4f98 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805495_51_7097888.txt @@ -0,0 +1 @@ +5 0.290977 0.442246 0.255977 0.471123 0.257734 0.611543 0.280482 0.673223 0.282227 0.816260 0.269974 0.877939 0.278724 0.934375 0.294479 0.971123 0.336471 0.978994 0.350469 0.965869 0.486953 0.954063 0.514948 0.963242 0.541198 0.964561 0.570937 0.939619 0.576185 0.822822 0.560443 0.761143 0.549948 0.666660 0.572695 0.612852 0.567448 0.465869 0.535951 0.440937 0.506198 0.443564 0.336471 0.450117 0.303229 0.444873 diff --git a/datasets/检测仪/train/labels/订单1805497_51_7097714.txt b/datasets/检测仪/train/labels/订单1805497_51_7097714.txt new file mode 100644 index 0000000..958555c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805497_51_7097714.txt @@ -0,0 +1 @@ +5 0.401193 0.415980 0.397696 0.406801 0.357451 0.408113 0.359199 0.425172 0.336454 0.446164 0.353938 0.624645 0.369690 0.652206 0.378448 0.799191 0.374935 0.849056 0.402941 0.915980 0.439690 0.931728 0.469428 0.914669 0.598922 0.901544 0.644412 0.910735 0.663660 0.888419 0.686405 0.817561 0.667157 0.791311 0.660163 0.650895 0.674150 0.599706 0.686405 0.421238 0.653154 0.401544 0.618170 0.400233 0.604167 0.409424 0.406438 0.418603 diff --git a/datasets/检测仪/train/labels/订单1805498_51_7097737.txt b/datasets/检测仪/train/labels/订单1805498_51_7097737.txt new file mode 100644 index 0000000..680520c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805498_51_7097737.txt @@ -0,0 +1 @@ +5 0.413426 0.272937 0.376680 0.288681 0.352183 0.446161 0.360939 0.519653 0.338188 0.690258 0.318942 0.733562 0.315437 0.813611 0.343439 0.839861 0.367937 0.845109 0.397685 0.834613 0.546415 0.838552 0.563915 0.852986 0.590159 0.854296 0.626905 0.838552 0.653148 0.747996 0.635648 0.719127 0.660146 0.555079 0.681151 0.517024 0.721389 0.329365 0.689894 0.305744 0.660146 0.301806 0.647897 0.307054 0.462421 0.283433 0.418677 0.274246 diff --git a/datasets/检测仪/train/labels/订单1805499_51_7097753.txt b/datasets/检测仪/train/labels/订单1805499_51_7097753.txt new file mode 100644 index 0000000..3ee1200 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805499_51_7097753.txt @@ -0,0 +1 @@ +5 0.240234 0.338574 0.185990 0.355635 0.128242 0.559043 0.145742 0.604980 0.399466 0.635166 0.462461 0.632539 0.672435 0.664033 0.754674 0.694219 0.852656 0.700781 0.901654 0.685029 0.908646 0.653535 0.894648 0.641719 0.912148 0.522305 0.931393 0.519678 0.945391 0.493428 0.922643 0.467178 0.826406 0.434375 0.768672 0.438311 0.544701 0.409443 0.500951 0.392383 0.245482 0.342510 diff --git a/datasets/检测仪/train/labels/订单1805500_51_7097767.txt b/datasets/检测仪/train/labels/订单1805500_51_7097767.txt new file mode 100644 index 0000000..5a4f3a8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805500_51_7097767.txt @@ -0,0 +1 @@ +5 0.358222 0.351735 0.312732 0.380608 0.310980 0.532843 0.331974 0.619451 0.326732 0.757245 0.307477 0.821549 0.324980 0.901608 0.377464 0.912108 0.389712 0.897667 0.531451 0.892422 0.566444 0.906853 0.606693 0.881922 0.629438 0.811059 0.610196 0.779559 0.624183 0.637824 0.667935 0.531529 0.676680 0.413422 0.680183 0.397667 0.650431 0.367480 0.610196 0.367480 0.601438 0.376676 0.398471 0.370108 0.396719 0.360922 0.359974 0.349108 diff --git a/datasets/检测仪/train/labels/订单1805506_51_7097821.txt b/datasets/检测仪/train/labels/订单1805506_51_7097821.txt new file mode 100644 index 0000000..77ff05f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805506_51_7097821.txt @@ -0,0 +1 @@ +5 0.329003 0.374010 0.284792 0.381883 0.238258 0.507868 0.252216 0.543300 0.208005 0.631227 0.177757 0.677158 0.168453 0.732278 0.184738 0.750650 0.219641 0.755900 0.233604 0.748025 0.359251 0.755900 0.391826 0.774273 0.450000 0.763773 0.475594 0.716527 0.466285 0.679783 0.517478 0.577420 0.547726 0.540675 0.587283 0.418627 0.568666 0.391070 0.538418 0.396320 0.522132 0.404193 0.375541 0.389757 0.329003 0.375323 diff --git a/datasets/检测仪/train/labels/订单1805509_51_7097852.txt b/datasets/检测仪/train/labels/订单1805509_51_7097852.txt new file mode 100644 index 0000000..8319b94 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805509_51_7097852.txt @@ -0,0 +1 @@ +5 0.049505 0.208652 0.004010 0.230957 0.025013 0.425186 0.040755 0.467178 0.046003 0.601045 0.033763 0.652227 0.051250 0.716523 0.086250 0.742773 0.114245 0.741465 0.119492 0.727021 0.245482 0.715215 0.261224 0.724404 0.287474 0.725713 0.318971 0.702090 0.339974 0.625977 0.325977 0.604980 0.334727 0.464561 0.357474 0.412061 0.367969 0.248018 0.332969 0.224404 0.297982 0.221777 0.290977 0.232275 0.095000 0.217842 0.056510 0.204717 diff --git a/datasets/检测仪/train/labels/订单1805510_51_7098040.txt b/datasets/检测仪/train/labels/订单1805510_51_7098040.txt new file mode 100644 index 0000000..02d30e8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805510_51_7098040.txt @@ -0,0 +1 @@ +5 0.453242 0.320202 0.429619 0.349076 0.439463 0.545924 0.449307 0.578737 0.455210 0.725716 0.447339 0.784772 0.456196 0.847760 0.468989 0.872695 0.481787 0.887135 0.496553 0.868763 0.574307 0.862201 0.582183 0.871387 0.600879 0.870072 0.612690 0.837266 0.628442 0.769023 0.621553 0.732279 0.612690 0.585293 0.629424 0.532799 0.638281 0.346452 0.616631 0.321517 0.594976 0.321517 0.587100 0.332012 0.478833 0.334642 0.471943 0.328079 0.454229 0.317578 diff --git a/datasets/检测仪/train/labels/订单1805511_51_7097845.txt b/datasets/检测仪/train/labels/订单1805511_51_7097845.txt new file mode 100644 index 0000000..7891d06 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805511_51_7097845.txt @@ -0,0 +1 @@ +5 0.460703 0.408167 0.429323 0.438353 0.460703 0.612892 0.485104 0.649637 0.500794 0.782186 0.483359 0.846490 0.511250 0.935725 0.544362 0.976412 0.591419 0.975098 0.605365 0.965912 0.763971 0.955412 0.770951 0.965912 0.818008 0.968539 0.856354 0.930480 0.847630 0.835990 0.816263 0.778245 0.779661 0.626020 0.786628 0.543343 0.753516 0.398980 0.709948 0.374049 0.680312 0.383235 0.669857 0.389794 0.500794 0.416039 0.458958 0.408167 diff --git a/datasets/检测仪/train/labels/订单1805512_51_7097838.txt b/datasets/检测仪/train/labels/订单1805512_51_7097838.txt new file mode 100644 index 0000000..c0fb630 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805512_51_7097838.txt @@ -0,0 +1 @@ +5 0.444961 0.498682 0.415208 0.520986 0.416966 0.665342 0.437956 0.700781 0.448451 0.898945 0.483451 0.914687 0.492201 0.912061 0.509701 0.902881 0.618190 0.904189 0.644427 0.917314 0.668932 0.904189 0.682930 0.808389 0.674180 0.699463 0.693424 0.662725 0.702174 0.519678 0.665430 0.496055 0.644427 0.498682 0.632188 0.509180 0.485208 0.509180 0.476458 0.497363 0.450208 0.496055 diff --git a/datasets/检测仪/train/labels/订单1805513_51_7097862.txt b/datasets/检测仪/train/labels/订单1805513_51_7097862.txt new file mode 100644 index 0000000..8d35bd4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805513_51_7097862.txt @@ -0,0 +1 @@ +5 0.389712 0.402922 0.354719 0.418667 0.340719 0.557775 0.352967 0.590578 0.342471 0.695569 0.333725 0.720500 0.326732 0.805804 0.345974 0.846490 0.389712 0.849108 0.410719 0.841235 0.524458 0.843863 0.571699 0.858294 0.604941 0.824176 0.597948 0.809745 0.618941 0.742814 0.596196 0.716569 0.582196 0.590578 0.601438 0.547275 0.611935 0.440980 0.580444 0.417353 0.561203 0.419980 0.412471 0.414725 0.394967 0.405539 diff --git a/datasets/检测仪/train/labels/订单1805520_51_7097937.txt b/datasets/检测仪/train/labels/订单1805520_51_7097937.txt new file mode 100644 index 0000000..f369db3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805520_51_7097937.txt @@ -0,0 +1 @@ +5 0.383711 0.416006 0.353971 0.431748 0.341719 0.574795 0.362721 0.614160 0.350469 0.733584 0.324219 0.795264 0.329466 0.839883 0.353971 0.881885 0.383711 0.884502 0.399466 0.870068 0.534193 0.868760 0.548190 0.877939 0.586693 0.879258 0.602435 0.859570 0.635677 0.787393 0.611185 0.749336 0.597187 0.611543 0.630430 0.553799 0.625182 0.431748 0.602435 0.408125 0.570937 0.409443 0.563945 0.413379 0.401211 0.416006 0.381966 0.412061 diff --git a/datasets/检测仪/train/labels/订单1805524_51_7097938.txt b/datasets/检测仪/train/labels/订单1805524_51_7097938.txt new file mode 100644 index 0000000..e3e5667 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805524_51_7097938.txt @@ -0,0 +1 @@ +5 0.196380 0.472439 0.180092 0.489498 0.214985 0.589239 0.238252 0.607604 0.254540 0.678478 0.247561 0.716531 0.261518 0.750649 0.291779 0.761151 0.315046 0.755900 0.419739 0.746713 0.450000 0.749343 0.475583 0.688971 0.463957 0.674533 0.450000 0.590545 0.454647 0.569550 0.433712 0.469810 0.398804 0.452751 0.380184 0.460623 0.245230 0.475061 0.205675 0.472439 diff --git a/datasets/检测仪/train/labels/订单1805525_51_7097930.txt b/datasets/检测仪/train/labels/订单1805525_51_7097930.txt new file mode 100644 index 0000000..b49eef2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805525_51_7097930.txt @@ -0,0 +1 @@ +5 0.287474 0.211279 0.238477 0.244082 0.248984 0.442246 0.275234 0.489492 0.282227 0.667969 0.264727 0.754580 0.290977 0.859570 0.338216 0.895000 0.387214 0.896318 0.401211 0.877939 0.602435 0.855635 0.618190 0.871387 0.672435 0.880566 0.707422 0.841201 0.716172 0.733584 0.679427 0.681094 0.640938 0.481621 0.658424 0.433066 0.656680 0.233584 0.602435 0.198154 0.567448 0.206025 0.355716 0.219150 0.292721 0.216523 diff --git a/datasets/检测仪/train/labels/订单1805526_51_7097979.txt b/datasets/检测仪/train/labels/订单1805526_51_7097979.txt new file mode 100644 index 0000000..cc76d28 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805526_51_7097979.txt @@ -0,0 +1 @@ +5 0.285729 0.316260 0.261224 0.339883 0.266484 0.472432 0.282227 0.509180 0.290977 0.625977 0.278724 0.678467 0.290977 0.741465 0.311979 0.761143 0.345221 0.772959 0.362721 0.755898 0.481706 0.750645 0.514948 0.757207 0.560443 0.725713 0.565690 0.674531 0.553438 0.637783 0.534193 0.509180 0.553438 0.451436 0.542943 0.316260 0.509701 0.292646 0.467708 0.295264 0.329466 0.314951 0.292721 0.314951 diff --git a/datasets/检测仪/train/labels/订单1805528_51_7097986.txt b/datasets/检测仪/train/labels/订单1805528_51_7097986.txt new file mode 100644 index 0000000..db3e6d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805528_51_7097986.txt @@ -0,0 +1 @@ +5 0.145628 0.332054 0.107128 0.359613 0.135128 0.561712 0.154372 0.608958 0.173622 0.773000 0.163122 0.843867 0.182372 0.927854 0.215617 0.955412 0.257611 0.954100 0.289106 0.933104 0.434339 0.909483 0.469333 0.923917 0.504333 0.917354 0.532328 0.880608 0.539328 0.799246 0.513078 0.754625 0.490333 0.584021 0.500833 0.528904 0.486833 0.347800 0.448339 0.328117 0.406344 0.330742 0.390594 0.338617 0.189372 0.339929 0.152622 0.329429 diff --git a/datasets/检测仪/train/labels/订单1805530_51_7098034.txt b/datasets/检测仪/train/labels/订单1805530_51_7098034.txt new file mode 100644 index 0000000..a968e3b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805530_51_7098034.txt @@ -0,0 +1 @@ +5 0.412471 0.384549 0.380967 0.404235 0.389712 0.566961 0.412471 0.599765 0.421216 0.741500 0.410719 0.792686 0.419464 0.874049 0.443961 0.898980 0.478954 0.906853 0.492954 0.896353 0.641686 0.888480 0.657438 0.896353 0.688928 0.895049 0.715176 0.867480 0.727425 0.771686 0.704680 0.741500 0.676680 0.590578 0.695935 0.517088 0.683686 0.406853 0.645190 0.377980 0.627686 0.381922 0.461464 0.392422 0.422967 0.385863 diff --git a/datasets/检测仪/train/labels/订单1805537_51_7097998.txt b/datasets/检测仪/train/labels/订单1805537_51_7097998.txt new file mode 100644 index 0000000..6fbb74d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805537_51_7097998.txt @@ -0,0 +1 @@ +5 0.587270 0.367448 0.552377 0.376635 0.550046 0.480311 0.561672 0.493434 0.550046 0.568235 0.536089 0.591860 0.557025 0.653538 0.591933 0.654853 0.708267 0.650917 0.747822 0.661410 0.761779 0.646981 0.785046 0.594481 0.771089 0.580052 0.768758 0.489498 0.799003 0.480311 0.801334 0.385822 0.778067 0.370078 0.750153 0.371384 0.587270 0.367448 diff --git a/datasets/检测仪/train/labels/订单1805539_51_7098124.txt b/datasets/检测仪/train/labels/订单1805539_51_7098124.txt new file mode 100644 index 0000000..a7c17a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805539_51_7098124.txt @@ -0,0 +1 @@ +5 0.282111 0.467225 0.247111 0.488221 0.282111 0.689008 0.297856 0.820242 0.280361 0.872738 0.313606 0.954100 0.348600 0.977725 0.380094 0.977725 0.387094 0.963287 0.520078 0.939667 0.548078 0.944917 0.577822 0.917354 0.584822 0.849112 0.565572 0.814992 0.549828 0.675888 0.558572 0.624704 0.555072 0.484283 0.521828 0.456725 0.485083 0.461975 0.483333 0.469850 0.310106 0.477725 0.290856 0.468537 diff --git a/datasets/检测仪/train/labels/订单1805540_51_7098097.txt b/datasets/检测仪/train/labels/订单1805540_51_7098097.txt new file mode 100644 index 0000000..de95117 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805540_51_7098097.txt @@ -0,0 +1 @@ +5 0.302675 0.418660 0.280040 0.447533 0.286930 0.479027 0.308580 0.629947 0.300710 0.641760 0.297755 0.665380 0.322360 0.690313 0.345985 0.685067 0.487715 0.643073 0.499525 0.632573 0.615670 0.612887 0.641260 0.618133 0.701300 0.599767 0.712125 0.576140 0.714095 0.543333 0.702285 0.539393 0.687520 0.434407 0.699330 0.427847 0.696380 0.400287 0.678660 0.380607 0.624525 0.379293 0.593030 0.400287 0.485750 0.422600 0.460155 0.406853 0.307600 0.421287 diff --git a/datasets/检测仪/train/labels/订单1805542_51_7098142.txt b/datasets/检测仪/train/labels/订单1805542_51_7098142.txt new file mode 100644 index 0000000..db193cd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805542_51_7098142.txt @@ -0,0 +1 @@ +5 0.331100 0.431792 0.303106 0.452788 0.310106 0.607646 0.331100 0.639142 0.325856 0.761188 0.320606 0.800558 0.325856 0.862237 0.339850 0.885858 0.380094 0.895046 0.392344 0.883233 0.527078 0.885858 0.546328 0.902921 0.567322 0.885858 0.593572 0.813679 0.579572 0.784808 0.577822 0.660137 0.598817 0.610271 0.609317 0.455412 0.569072 0.429167 0.539328 0.434417 0.528828 0.439667 0.401094 0.442292 0.371350 0.434417 0.338100 0.433104 diff --git a/datasets/检测仪/train/labels/订单1805543_51_7098125.txt b/datasets/检测仪/train/labels/订单1805543_51_7098125.txt new file mode 100644 index 0000000..72ca992 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805543_51_7098125.txt @@ -0,0 +1 @@ +5 0.408216 0.478994 0.392461 0.490801 0.388958 0.615479 0.406458 0.624658 0.402969 0.715215 0.397708 0.734902 0.406458 0.784766 0.422214 0.800518 0.448451 0.796582 0.530690 0.786084 0.563945 0.797891 0.583190 0.771641 0.595443 0.736211 0.577943 0.713906 0.574440 0.615479 0.583190 0.597100 0.586693 0.486865 0.548190 0.472432 0.528945 0.473740 0.416966 0.480303 diff --git a/datasets/检测仪/train/labels/订单1805545_51_7098061.txt b/datasets/检测仪/train/labels/订单1805545_51_7098061.txt new file mode 100644 index 0000000..e7a7569 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805545_51_7098061.txt @@ -0,0 +1 @@ +5 0.136973 0.506540 0.129973 0.535410 0.243707 0.660080 0.313707 0.762440 0.325947 0.801810 0.373187 0.851680 0.390693 0.858240 0.406440 0.859550 0.427440 0.838560 0.527173 0.786060 0.542920 0.791310 0.556920 0.783440 0.555173 0.753250 0.514920 0.688950 0.427440 0.582650 0.422187 0.551150 0.336453 0.434360 0.308453 0.430420 0.292707 0.438290 0.136973 0.503910 diff --git a/datasets/检测仪/train/labels/订单1805548_51_7098174.txt b/datasets/检测仪/train/labels/订单1805548_51_7098174.txt new file mode 100644 index 0000000..2825a92 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805548_51_7098174.txt @@ -0,0 +1 @@ +5 0.626825 0.391073 0.596580 0.402881 0.594248 0.489498 0.605890 0.505242 0.601227 0.560363 0.587270 0.589239 0.589601 0.627292 0.610537 0.641730 0.633804 0.635164 0.722224 0.635164 0.752469 0.645666 0.773420 0.635164 0.780399 0.590545 0.766442 0.577422 0.775736 0.514429 0.785046 0.493434 0.808313 0.408131 0.773420 0.395009 0.764110 0.400260 0.659402 0.397630 0.640782 0.391073 diff --git a/datasets/检测仪/train/labels/订单1805552_51_7098206.txt b/datasets/检测仪/train/labels/订单1805552_51_7098206.txt new file mode 100644 index 0000000..35d5271 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805552_51_7098206.txt @@ -0,0 +1 @@ +5 0.516578 0.325492 0.488583 0.351737 0.506083 0.496096 0.527078 0.521029 0.534078 0.622079 0.521828 0.662763 0.539328 0.720504 0.562072 0.734942 0.593572 0.725754 0.689806 0.720504 0.724806 0.736254 0.749300 0.717879 0.759800 0.670637 0.742300 0.645704 0.751050 0.521029 0.763300 0.469850 0.773794 0.342554 0.737050 0.318929 0.716056 0.321554 0.709056 0.328117 0.562072 0.341242 0.518328 0.324179 diff --git a/datasets/检测仪/train/labels/订单1805556_51_7098248.txt b/datasets/检测仪/train/labels/订单1805556_51_7098248.txt new file mode 100644 index 0000000..11d05bd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805556_51_7098248.txt @@ -0,0 +1 @@ +5 0.324219 0.409443 0.296224 0.427812 0.289232 0.599727 0.310221 0.645664 0.303229 0.795264 0.276979 0.850381 0.282227 0.927813 0.310221 0.957998 0.341719 0.961934 0.359219 0.948809 0.541198 0.963242 0.593685 0.956680 0.593685 0.937002 0.612930 0.853008 0.595443 0.817578 0.590195 0.645664 0.618190 0.594482 0.625182 0.425186 0.581445 0.401562 0.560443 0.404189 0.548190 0.412061 0.357474 0.413379 0.332969 0.408125 diff --git a/datasets/检测仪/train/labels/订单1805557_51_7098288.txt b/datasets/检测仪/train/labels/订单1805557_51_7098288.txt new file mode 100644 index 0000000..f989334 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805557_51_7098288.txt @@ -0,0 +1 @@ +5 0.304974 0.409443 0.276979 0.435684 0.289232 0.589229 0.315469 0.622041 0.327721 0.786084 0.320716 0.850381 0.327721 0.912061 0.338216 0.933066 0.374961 0.967178 0.415208 0.965869 0.432708 0.951436 0.586693 0.919941 0.604193 0.931748 0.642682 0.931748 0.667174 0.908125 0.675924 0.801826 0.642682 0.751963 0.611185 0.598418 0.614687 0.544609 0.600690 0.405498 0.555195 0.381885 0.527201 0.384502 0.357474 0.410752 0.313724 0.405498 diff --git a/datasets/检测仪/train/labels/订单1805558_51_7098208.txt b/datasets/检测仪/train/labels/订单1805558_51_7098208.txt new file mode 100644 index 0000000..d225a30 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805558_51_7098208.txt @@ -0,0 +1 @@ +5 0.411904 0.463249 0.396157 0.485560 0.397139 0.653535 0.406001 0.681094 0.407969 0.813639 0.397139 0.863509 0.404033 0.939629 0.420762 0.972435 0.441431 0.968496 0.450293 0.954063 0.516235 0.944876 0.521157 0.958001 0.539858 0.963249 0.564463 0.934375 0.570371 0.864824 0.561509 0.820202 0.551670 0.681094 0.563481 0.639102 0.563481 0.486868 0.544780 0.461934 0.529033 0.467188 0.527061 0.471120 0.438481 0.472435 0.410923 0.464564 diff --git a/datasets/检测仪/train/labels/订单1805559_51_7098303.txt b/datasets/检测仪/train/labels/订单1805559_51_7098303.txt new file mode 100644 index 0000000..ba2fe07 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805559_51_7098303.txt @@ -0,0 +1 @@ +5 0.338100 0.349112 0.311856 0.371425 0.313606 0.524967 0.329350 0.563025 0.332850 0.686383 0.324106 0.742817 0.327606 0.803183 0.352100 0.834679 0.380094 0.837304 0.401094 0.821554 0.525328 0.824179 0.577822 0.843867 0.595322 0.813679 0.619817 0.736254 0.595322 0.699508 0.595322 0.557775 0.621567 0.517092 0.616317 0.370113 0.590072 0.337304 0.553322 0.339929 0.542828 0.349112 0.383594 0.353050 0.345100 0.345179 diff --git a/datasets/检测仪/train/labels/订单1805560_51_7098355.txt b/datasets/检测仪/train/labels/订单1805560_51_7098355.txt new file mode 100644 index 0000000..3111a28 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805560_51_7098355.txt @@ -0,0 +1 @@ +5 0.423726 0.625994 0.393216 0.657494 0.394202 0.687673 0.405029 0.698173 0.414870 0.871404 0.406010 0.879276 0.405029 0.908147 0.430620 0.947519 0.450303 0.939641 0.609750 0.908147 0.626486 0.892397 0.751486 0.876654 0.804635 0.896333 0.863688 0.867462 0.884361 0.843840 0.881404 0.813660 0.871562 0.809724 0.852861 0.678487 0.861721 0.674551 0.861721 0.639115 0.832192 0.614186 0.763293 0.605000 0.734750 0.618122 0.617625 0.629929 0.594990 0.622058 0.428649 0.624679 diff --git a/datasets/检测仪/train/labels/订单1805561_51_7098457.txt b/datasets/检测仪/train/labels/订单1805561_51_7098457.txt new file mode 100644 index 0000000..0a1a647 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805561_51_7098457.txt @@ -0,0 +1 @@ +5 0.226374 0.455378 0.197500 0.482936 0.225059 0.664036 0.234245 0.683724 0.244746 0.822826 0.242122 0.863509 0.255241 0.923880 0.276243 0.943561 0.297240 0.942253 0.305111 0.929128 0.403535 0.912070 0.408789 0.923880 0.423223 0.922565 0.441595 0.904193 0.458652 0.842513 0.444219 0.809707 0.431094 0.674538 0.445534 0.628600 0.449466 0.473750 0.425846 0.444876 0.399603 0.446185 0.394349 0.459310 0.265742 0.463249 0.261803 0.456686 0.232936 0.452747 diff --git a/datasets/检测仪/train/labels/订单1805565_51_7098285.txt b/datasets/检测仪/train/labels/订单1805565_51_7098285.txt new file mode 100644 index 0000000..9c476c1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805565_51_7098285.txt @@ -0,0 +1 @@ +5 0.317227 0.291328 0.290977 0.312324 0.301471 0.446182 0.318971 0.481621 0.329466 0.580039 0.315469 0.619414 0.324219 0.677158 0.341719 0.695527 0.369714 0.694219 0.383711 0.681094 0.478203 0.679785 0.506198 0.688965 0.532448 0.671904 0.541198 0.618105 0.527201 0.597100 0.525443 0.480303 0.544701 0.442246 0.546445 0.317578 0.527201 0.290020 0.507943 0.296582 0.350469 0.301826 0.320716 0.290020 diff --git a/datasets/检测仪/train/labels/订单1805567_51_7098253.txt b/datasets/检测仪/train/labels/订单1805567_51_7098253.txt new file mode 100644 index 0000000..e497240 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805567_51_7098253.txt @@ -0,0 +1 @@ +5 0.322474 0.455371 0.294479 0.475059 0.299727 0.616787 0.318971 0.653535 0.327721 0.771641 0.320716 0.809697 0.334727 0.880566 0.362721 0.914687 0.392461 0.910752 0.409961 0.897627 0.520195 0.887129 0.555195 0.892383 0.588438 0.863506 0.593685 0.801826 0.572695 0.762461 0.553438 0.633848 0.567448 0.587920 0.565690 0.472432 0.523698 0.447500 0.502695 0.454062 0.497448 0.457998 0.364466 0.465869 0.329466 0.457998 diff --git a/datasets/检测仪/train/labels/订单1805569_51_7098391.txt b/datasets/检测仪/train/labels/订单1805569_51_7098391.txt new file mode 100644 index 0000000..fdb66a2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805569_51_7098391.txt @@ -0,0 +1 @@ +5 0.535951 0.385820 0.502695 0.392383 0.441458 0.511807 0.434453 0.543301 0.387214 0.623350 0.362721 0.649600 0.336471 0.696846 0.345221 0.721777 0.381966 0.732275 0.395964 0.727021 0.483451 0.757207 0.507943 0.780830 0.558698 0.782139 0.584935 0.700781 0.588438 0.664033 0.635677 0.581357 0.653177 0.561670 0.703919 0.455371 0.695182 0.435684 0.675924 0.429121 0.546445 0.389756 diff --git a/datasets/检测仪/train/labels/订单1805570_51_7098370.txt b/datasets/检测仪/train/labels/订单1805570_51_7098370.txt new file mode 100644 index 0000000..5cd1c5a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805570_51_7098370.txt @@ -0,0 +1 @@ +5 0.287474 0.349072 0.240234 0.385820 0.282227 0.576104 0.301471 0.612852 0.327721 0.736211 0.329466 0.776895 0.324219 0.824141 0.353971 0.913379 0.404714 0.944873 0.448451 0.937002 0.462461 0.917314 0.598932 0.885820 0.612930 0.896318 0.635677 0.895000 0.668932 0.868760 0.670677 0.775586 0.646185 0.732275 0.616432 0.573486 0.616432 0.527549 0.590195 0.368760 0.555195 0.341201 0.523698 0.342510 0.518451 0.349072 0.338216 0.359570 0.292721 0.353008 diff --git a/datasets/检测仪/train/labels/订单1805571_51_7099256.txt b/datasets/检测仪/train/labels/订单1805571_51_7099256.txt new file mode 100644 index 0000000..47ca1f1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805571_51_7099256.txt @@ -0,0 +1 @@ +5 0.260970 0.175869 0.252098 0.190308 0.282659 0.313669 0.317165 0.429156 0.328994 0.455398 0.339835 0.473774 0.363500 0.468523 0.421665 0.452776 0.436451 0.419968 0.431524 0.364846 0.411805 0.345162 0.386171 0.279545 0.392085 0.259862 0.369415 0.170625 0.354628 0.164058 0.276744 0.177183 0.266884 0.177183 diff --git a/datasets/检测仪/train/labels/订单1805573_51_7098331.txt b/datasets/检测仪/train/labels/订单1805573_51_7098331.txt new file mode 100644 index 0000000..2a525e1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805573_51_7098331.txt @@ -0,0 +1 @@ +5 0.228732 0.544647 0.200745 0.551216 0.184993 0.577461 0.268980 0.717882 0.296980 0.748059 0.309229 0.773000 0.359974 0.862235 0.370471 0.892422 0.403712 0.948853 0.426458 0.960657 0.463203 0.961971 0.470209 0.943598 0.582196 0.913422 0.594444 0.919980 0.610196 0.918667 0.639935 0.892422 0.625935 0.817618 0.585699 0.783500 0.529699 0.671951 0.526196 0.645696 0.464954 0.492157 0.421216 0.481657 0.393216 0.489529 0.382719 0.501343 0.260235 0.543343 0.244484 0.542029 diff --git a/datasets/检测仪/train/labels/订单1805575_51_7098413.txt b/datasets/检测仪/train/labels/订单1805575_51_7098413.txt new file mode 100644 index 0000000..21a2779 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805575_51_7098413.txt @@ -0,0 +1 @@ +5 0.402099 0.374014 0.358351 0.391073 0.342607 0.538054 0.358351 0.574801 0.337347 0.734905 0.304106 0.788711 0.316355 0.881886 0.347855 0.926505 0.396840 0.922569 0.416090 0.906817 0.563080 0.908131 0.587566 0.923884 0.633068 0.937007 0.669815 0.896324 0.682065 0.809706 0.662814 0.750649 0.648812 0.594481 0.675063 0.548555 0.675063 0.395009 0.640069 0.376635 0.622572 0.377950 0.416090 0.377950 diff --git a/datasets/检测仪/train/labels/订单1805576_51_7098503.txt b/datasets/检测仪/train/labels/订单1805576_51_7098503.txt new file mode 100644 index 0000000..8f46393 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805576_51_7098503.txt @@ -0,0 +1 @@ +5 0.392344 0.287433 0.346850 0.317617 0.350350 0.507908 0.374844 0.561712 0.371350 0.728379 0.353850 0.784808 0.362600 0.877988 0.404594 0.916042 0.444839 0.918667 0.462333 0.902921 0.626817 0.906858 0.637317 0.917354 0.677561 0.925229 0.724806 0.877988 0.735300 0.791371 0.717806 0.753313 0.716056 0.564338 0.733550 0.473787 0.737050 0.316304 0.698556 0.287433 0.665311 0.286121 0.654811 0.292683 0.444839 0.291371 0.432589 0.290058 0.404594 0.286121 diff --git a/datasets/检测仪/train/labels/订单1805578_51_7098451.txt b/datasets/检测仪/train/labels/订单1805578_51_7098451.txt new file mode 100644 index 0000000..865ca89 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805578_51_7098451.txt @@ -0,0 +1 @@ +5 0.325330 0.372755 0.307613 0.397685 0.310564 0.556481 0.322378 0.597164 0.323359 0.742836 0.315486 0.791389 0.320408 0.862257 0.341076 0.895058 0.359783 0.889815 0.371589 0.872755 0.443437 0.868819 0.449349 0.881933 0.470017 0.883252 0.490686 0.847812 0.493637 0.769074 0.484783 0.727083 0.484783 0.593229 0.485764 0.564352 0.484783 0.404248 0.468047 0.376690 0.451319 0.376690 0.446398 0.383252 0.344028 0.379317 0.345017 0.374063 0.326319 0.371435 diff --git a/datasets/检测仪/train/labels/订单1805579_51_7098438.txt b/datasets/检测仪/train/labels/订单1805579_51_7098438.txt new file mode 100644 index 0000000..3e1bf5d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805579_51_7098438.txt @@ -0,0 +1 @@ +5 0.479833 0.381921 0.446589 0.408171 0.455339 0.544654 0.474583 0.585333 0.467583 0.706071 0.462333 0.728379 0.467583 0.812371 0.490333 0.825492 0.514828 0.826804 0.539328 0.813679 0.644311 0.817617 0.649561 0.826804 0.681061 0.838617 0.705556 0.818929 0.726556 0.750688 0.714306 0.713942 0.707306 0.593208 0.721306 0.551212 0.728306 0.401608 0.703806 0.377987 0.682811 0.381921 0.665311 0.391108 0.523578 0.393733 0.485083 0.384546 diff --git a/datasets/检测仪/train/labels/订单1805580_51_7098406.txt b/datasets/检测仪/train/labels/订单1805580_51_7098406.txt new file mode 100644 index 0000000..3627a5c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805580_51_7098406.txt @@ -0,0 +1 @@ +5 0.715054 0.270332 0.686509 0.292643 0.666826 0.490807 0.673716 0.531491 0.656001 0.688971 0.646157 0.708652 0.643203 0.811016 0.654033 0.837266 0.680605 0.847760 0.690449 0.837266 0.772139 0.860885 0.779033 0.872695 0.804619 0.881882 0.829229 0.854323 0.844976 0.776895 0.842021 0.725716 0.858755 0.574798 0.884346 0.484245 0.909937 0.330703 0.891235 0.286081 0.871553 0.291335 0.860723 0.296582 0.744580 0.287396 0.734741 0.279518 0.720962 0.270332 diff --git a/datasets/检测仪/train/labels/订单1805583_51_7098571.txt b/datasets/检测仪/train/labels/订单1805583_51_7098571.txt new file mode 100644 index 0000000..296c774 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805583_51_7098571.txt @@ -0,0 +1 @@ +5 0.312732 0.166696 0.275987 0.190324 0.253229 0.342549 0.268980 0.380608 0.268980 0.515775 0.242732 0.561716 0.246235 0.636510 0.267229 0.665382 0.324980 0.673255 0.324980 0.661451 0.456209 0.665382 0.466706 0.675882 0.510458 0.682441 0.548954 0.654882 0.561203 0.573520 0.554196 0.528902 0.562941 0.397667 0.599686 0.181137 0.569948 0.164069 0.548954 0.166696 0.354719 0.174569 0.328471 0.168010 diff --git a/datasets/检测仪/train/labels/订单1805587_51_7098669.txt b/datasets/检测仪/train/labels/订单1805587_51_7098669.txt new file mode 100644 index 0000000..3e50520 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805587_51_7098669.txt @@ -0,0 +1 @@ +5 0.518056 0.094475 0.495907 0.112847 0.462691 0.278202 0.465642 0.312323 0.436115 0.443557 0.414709 0.507863 0.401419 0.597099 0.414709 0.648279 0.436115 0.664028 0.518056 0.687654 0.525434 0.707338 0.550534 0.721775 0.566775 0.696836 0.597778 0.586605 0.592613 0.536736 0.600729 0.501296 0.617708 0.375316 0.663477 0.160093 0.646497 0.122037 0.639857 0.124660 0.531341 0.102353 0.519531 0.095787 diff --git a/datasets/检测仪/train/labels/订单1805592_51_7098703.txt b/datasets/检测仪/train/labels/订单1805592_51_7098703.txt new file mode 100644 index 0000000..be5d187 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805592_51_7098703.txt @@ -0,0 +1 @@ +5 0.403047 0.375319 0.383359 0.397630 0.393203 0.574798 0.400093 0.603665 0.404033 0.745404 0.397139 0.796582 0.404033 0.875319 0.424702 0.908132 0.447339 0.906816 0.454229 0.895007 0.532969 0.879258 0.538872 0.889759 0.564463 0.897630 0.576274 0.867448 0.578242 0.787396 0.569385 0.750651 0.560527 0.599733 0.565449 0.511803 0.565449 0.392383 0.544780 0.367448 0.529033 0.370072 0.523125 0.374010 0.428638 0.376634 0.408950 0.374010 diff --git a/datasets/检测仪/train/labels/订单1805593_51_7098545.txt b/datasets/检测仪/train/labels/订单1805593_51_7098545.txt new file mode 100644 index 0000000..8f3bb79 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805593_51_7098545.txt @@ -0,0 +1 @@ +5 0.444838 0.389800 0.420347 0.406858 0.432593 0.526285 0.453588 0.548594 0.462338 0.640460 0.451840 0.678516 0.464086 0.725755 0.481586 0.742821 0.502581 0.745443 0.513079 0.733628 0.605822 0.728385 0.611076 0.741502 0.633819 0.740191 0.653067 0.720512 0.661817 0.668012 0.644317 0.640460 0.637315 0.548594 0.651319 0.501345 0.644317 0.404236 0.621574 0.384549 0.597072 0.384549 0.593576 0.392422 0.467593 0.393733 0.451840 0.391111 diff --git a/datasets/检测仪/train/labels/订单1805597_51_7098528.txt b/datasets/检测仪/train/labels/订单1805597_51_7098528.txt new file mode 100644 index 0000000..438b50b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805597_51_7098528.txt @@ -0,0 +1 @@ +5 0.380104 0.192951 0.350359 0.219193 0.346852 0.393733 0.364352 0.431797 0.350359 0.578776 0.338102 0.624705 0.343356 0.711319 0.369606 0.737569 0.401100 0.734948 0.425590 0.721823 0.563831 0.724444 0.572581 0.732318 0.614572 0.748064 0.649572 0.715260 0.663565 0.632578 0.646065 0.593212 0.656562 0.442292 0.672315 0.371424 0.691562 0.221823 0.653067 0.194262 0.639062 0.203446 0.413345 0.200825 0.387095 0.194262 diff --git a/datasets/检测仪/train/labels/订单1805605_51_7098836.txt b/datasets/检测仪/train/labels/订单1805605_51_7098836.txt new file mode 100644 index 0000000..ab5488b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805605_51_7098836.txt @@ -0,0 +1 @@ +5 0.240807 0.339889 0.222435 0.362201 0.256556 0.517057 0.278867 0.545924 0.302487 0.658789 0.305111 0.707344 0.318236 0.753275 0.335293 0.767708 0.364167 0.766400 0.362852 0.757214 0.454720 0.732279 0.457344 0.740150 0.477025 0.738841 0.494089 0.720469 0.492773 0.660098 0.477025 0.635163 0.453405 0.509180 0.457344 0.459310 0.432409 0.332012 0.406159 0.312331 0.393040 0.316270 0.386478 0.325456 0.269681 0.345137 0.263118 0.337266 0.244746 0.335951 diff --git a/datasets/检测仪/train/labels/订单1805609_51_7098743.txt b/datasets/检测仪/train/labels/订单1805609_51_7098743.txt new file mode 100644 index 0000000..ee5f845 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805609_51_7098743.txt @@ -0,0 +1 @@ +5 0.427461 0.270332 0.397708 0.290020 0.395964 0.434375 0.415208 0.459307 0.409961 0.568232 0.406458 0.618105 0.413464 0.670596 0.432708 0.691592 0.471198 0.699463 0.483451 0.686338 0.591940 0.682402 0.602435 0.691592 0.637435 0.696846 0.654935 0.677158 0.670677 0.610225 0.649687 0.581357 0.649687 0.461934 0.665430 0.430439 0.665430 0.288701 0.637435 0.259834 0.611185 0.265078 0.604193 0.271641 0.460703 0.275586 0.444961 0.270332 diff --git a/datasets/检测仪/train/labels/订单1805615_51_7098757.txt b/datasets/检测仪/train/labels/订单1805615_51_7098757.txt new file mode 100644 index 0000000..c0459e4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805615_51_7098757.txt @@ -0,0 +1 @@ +5 0.220990 0.185029 0.182487 0.212588 0.187734 0.380566 0.205234 0.423877 0.194740 0.547236 0.189492 0.602354 0.203490 0.669277 0.222734 0.685029 0.257734 0.695527 0.269974 0.681094 0.399466 0.685029 0.406458 0.695527 0.437956 0.700781 0.469453 0.671904 0.488698 0.603662 0.474701 0.566924 0.471198 0.430439 0.500951 0.377939 0.513203 0.216523 0.476458 0.186338 0.446706 0.187656 0.437956 0.195527 0.269974 0.195527 0.248984 0.191592 0.233229 0.187656 diff --git a/datasets/检测仪/train/labels/订单1805620_51_7098837.txt b/datasets/检测仪/train/labels/订单1805620_51_7098837.txt new file mode 100644 index 0000000..a39815c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805620_51_7098837.txt @@ -0,0 +1 @@ +5 0.653160 0.301810 0.612907 0.333310 0.598920 0.498660 0.625160 0.549840 0.607667 0.702070 0.593667 0.761130 0.597160 0.837240 0.623413 0.873990 0.670653 0.887110 0.679400 0.871360 0.861387 0.894990 0.864880 0.906800 0.924373 0.929110 0.971613 0.898920 0.989120 0.796560 0.961120 0.744070 0.959373 0.559030 0.989120 0.497350 0.982120 0.293940 0.941867 0.269000 0.922627 0.271630 0.689907 0.305750 0.660160 0.301810 diff --git a/datasets/检测仪/train/labels/订单1805621_51_7098899.txt b/datasets/检测仪/train/labels/订单1805621_51_7098899.txt new file mode 100644 index 0000000..c2bddeb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805621_51_7098899.txt @@ -0,0 +1 @@ +5 0.343477 0.443564 0.301471 0.467178 0.297982 0.633848 0.311979 0.653535 0.301471 0.763770 0.290977 0.793955 0.290977 0.843818 0.310221 0.875322 0.336471 0.880566 0.352214 0.868760 0.460703 0.871387 0.469453 0.881885 0.492201 0.887129 0.514948 0.871387 0.537695 0.814951 0.518451 0.788701 0.542943 0.669277 0.565690 0.628604 0.595443 0.486865 0.570937 0.460625 0.541198 0.460625 0.527201 0.467178 0.381966 0.457998 0.367969 0.452744 0.345221 0.444873 diff --git a/datasets/检测仪/train/labels/订单1805624_51_7098851.txt b/datasets/检测仪/train/labels/订单1805624_51_7098851.txt new file mode 100644 index 0000000..52d3135 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805624_51_7098851.txt @@ -0,0 +1 @@ +5 0.325977 0.574795 0.296224 0.594482 0.301471 0.734902 0.315469 0.750645 0.320716 0.866133 0.306719 0.898945 0.320716 0.975059 0.332969 0.996055 0.353971 0.996055 0.371471 0.981621 0.485208 0.973740 0.486953 0.980303 0.513203 0.981621 0.539440 0.961934 0.544701 0.901563 0.528945 0.872695 0.518451 0.746709 0.532448 0.713906 0.534193 0.586602 0.506198 0.569541 0.483451 0.572168 0.469453 0.578730 0.352214 0.583984 0.332969 0.574795 diff --git a/datasets/检测仪/train/labels/订单1805627_51_7099446.txt b/datasets/检测仪/train/labels/订单1805627_51_7099446.txt new file mode 100644 index 0000000..0c54c38 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805627_51_7099446.txt @@ -0,0 +1 @@ +5 0.451953 0.388437 0.415208 0.401562 0.418711 0.544609 0.423958 0.574795 0.409961 0.690283 0.394219 0.733584 0.395964 0.796582 0.418711 0.826758 0.444961 0.826758 0.469453 0.817578 0.577943 0.821514 0.621680 0.838574 0.644427 0.816260 0.663685 0.746709 0.656680 0.715215 0.656680 0.586602 0.670677 0.543301 0.684674 0.416006 0.656680 0.396318 0.628685 0.393691 0.623437 0.398945 0.499206 0.395000 0.465951 0.389756 diff --git a/datasets/检测仪/train/labels/订单1805629_51_7098926.txt b/datasets/检测仪/train/labels/订单1805629_51_7098926.txt new file mode 100644 index 0000000..75421bb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805629_51_7098926.txt @@ -0,0 +1 @@ +5 0.167813 0.196842 0.133359 0.225716 0.142222 0.465872 0.156982 0.523613 0.160923 0.674538 0.147139 0.738841 0.157969 0.805768 0.177651 0.842513 0.201274 0.835951 0.208164 0.828079 0.300684 0.821517 0.323320 0.830703 0.347930 0.804453 0.365645 0.719154 0.358755 0.678470 0.361709 0.524928 0.378442 0.439629 0.395171 0.261146 0.369580 0.221777 0.343008 0.225716 0.337100 0.230964 0.201274 0.211283 0.193403 0.204720 0.171748 0.195534 diff --git a/datasets/检测仪/train/labels/订单1805632_51_7098946.txt b/datasets/检测仪/train/labels/订单1805632_51_7098946.txt new file mode 100644 index 0000000..95830be --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805632_51_7098946.txt @@ -0,0 +1 @@ +5 0.441339 0.465913 0.413344 0.480346 0.397594 0.620767 0.406344 0.640454 0.408094 0.741504 0.392344 0.786121 0.392344 0.855675 0.425589 0.879300 0.443089 0.870112 0.546328 0.876675 0.555072 0.885858 0.588322 0.889796 0.611067 0.872738 0.632067 0.796621 0.618067 0.771687 0.614567 0.656200 0.632067 0.628642 0.651311 0.486908 0.621567 0.464600 0.600567 0.467225 0.593572 0.472475 0.457089 0.473787 diff --git a/datasets/检测仪/train/labels/订单1805638_51_7098944.txt b/datasets/检测仪/train/labels/订单1805638_51_7098944.txt new file mode 100644 index 0000000..adea1a8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805638_51_7098944.txt @@ -0,0 +1 @@ +5 0.199987 0.299199 0.164987 0.325449 0.238477 0.539365 0.261224 0.560361 0.299727 0.720459 0.303229 0.801826 0.352214 0.906816 0.402969 0.939619 0.462461 0.925186 0.483451 0.904189 0.663685 0.864824 0.667174 0.875322 0.709180 0.871387 0.747669 0.811016 0.716172 0.713906 0.670677 0.667969 0.602435 0.497363 0.605938 0.447500 0.553438 0.284766 0.507943 0.255898 0.471198 0.262461 0.233229 0.296582 0.206992 0.299199 diff --git a/datasets/检测仪/train/labels/订单1805639_51_7098976.txt b/datasets/检测仪/train/labels/订单1805639_51_7098976.txt new file mode 100644 index 0000000..116153c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805639_51_7098976.txt @@ -0,0 +1 @@ +5 0.357451 0.282120 0.313693 0.308370 0.299706 0.503909 0.317206 0.561654 0.297958 0.716507 0.303203 0.751936 0.264706 0.820184 0.269951 0.927794 0.303203 0.961912 0.373186 0.972414 0.373186 0.957978 0.574412 0.957978 0.598922 0.969792 0.640915 0.973725 0.684657 0.943542 0.709150 0.829375 0.693399 0.774252 0.675899 0.574779 0.709150 0.515723 0.716144 0.320184 0.674150 0.290000 0.647908 0.292623 0.409935 0.288689 0.366193 0.280809 diff --git a/datasets/检测仪/train/labels/订单1805640_51_7098963.txt b/datasets/检测仪/train/labels/订单1805640_51_7098963.txt new file mode 100644 index 0000000..f71d32d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805640_51_7098963.txt @@ -0,0 +1 @@ +5 0.556940 0.332012 0.513203 0.362197 0.534193 0.540674 0.551693 0.570859 0.558698 0.688965 0.546445 0.729648 0.555195 0.774268 0.577943 0.804453 0.611185 0.808389 0.630430 0.795264 0.745924 0.807080 0.770417 0.825449 0.812409 0.805762 0.826406 0.746709 0.810664 0.688965 0.829909 0.589229 0.843906 0.549863 0.878906 0.358262 0.819414 0.328076 0.798411 0.332012 0.780911 0.338574 0.602435 0.341201 0.584935 0.333320 0.562187 0.330703 diff --git a/datasets/检测仪/train/labels/订单1805641_51_7099018.txt b/datasets/检测仪/train/labels/订单1805641_51_7099018.txt new file mode 100644 index 0000000..bc6e4c4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805641_51_7099018.txt @@ -0,0 +1 @@ +5 0.356484 0.276899 0.314488 0.296582 0.298151 0.437002 0.309818 0.464561 0.298151 0.561675 0.281823 0.589233 0.286493 0.644351 0.305156 0.661411 0.330816 0.664038 0.349479 0.654849 0.480130 0.658789 0.508125 0.669287 0.543125 0.656162 0.571120 0.591860 0.564123 0.574800 0.573455 0.476372 0.594453 0.459312 0.643446 0.324141 0.613116 0.297896 0.580451 0.297896 0.571120 0.304458 0.405477 0.291333 0.363481 0.278213 diff --git a/datasets/检测仪/train/labels/订单1805650_51_7099158.txt b/datasets/检测仪/train/labels/订单1805650_51_7099158.txt new file mode 100644 index 0000000..d766c23 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805650_51_7099158.txt @@ -0,0 +1 @@ +5 0.375725 0.435725 0.349477 0.452784 0.351229 0.584020 0.359974 0.597147 0.352967 0.710010 0.345974 0.780873 0.366967 0.797931 0.389712 0.797931 0.394967 0.788745 0.496458 0.788745 0.519203 0.800559 0.540196 0.788745 0.559451 0.731000 0.541948 0.706069 0.540196 0.601078 0.555948 0.570902 0.568196 0.463284 0.554196 0.442284 0.538444 0.440980 0.526196 0.447539 0.401961 0.444912 0.380967 0.438353 diff --git a/datasets/检测仪/train/labels/订单1805651_51_7099073.txt b/datasets/检测仪/train/labels/订单1805651_51_7099073.txt new file mode 100644 index 0000000..a40ab0e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805651_51_7099073.txt @@ -0,0 +1 @@ +5 0.313606 0.341242 0.276861 0.371425 0.289106 0.574838 0.315356 0.622079 0.313606 0.799246 0.290856 0.847800 0.318856 0.959350 0.355600 0.979038 0.387094 0.972475 0.413344 0.952788 0.556822 0.937042 0.570822 0.950162 0.611067 0.951475 0.649561 0.916042 0.665311 0.828117 0.640811 0.790058 0.632067 0.620767 0.649561 0.568275 0.654811 0.380608 0.621567 0.345179 0.595322 0.350425 0.577822 0.358300 0.381844 0.356988 0.362600 0.349112 0.317106 0.342554 diff --git a/datasets/检测仪/train/labels/订单1805657_51_7099117.txt b/datasets/检测仪/train/labels/订单1805657_51_7099117.txt new file mode 100644 index 0000000..caea6e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805657_51_7099117.txt @@ -0,0 +1 @@ +5 0.454591 0.460623 0.417843 0.477690 0.417843 0.610234 0.435340 0.643045 0.447589 0.758529 0.437093 0.804455 0.447589 0.862197 0.477336 0.887137 0.498328 0.888452 0.514083 0.876635 0.626067 0.870078 0.662814 0.881886 0.678558 0.860891 0.692561 0.791332 0.675063 0.758529 0.657566 0.639100 0.669815 0.598426 0.662814 0.484247 0.638316 0.465874 0.617313 0.468503 0.612065 0.472439 0.482584 0.471125 0.454591 0.463253 diff --git a/datasets/检测仪/train/labels/订单1805658_51_7099576.txt b/datasets/检测仪/train/labels/订单1805658_51_7099576.txt new file mode 100644 index 0000000..1ab9561 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805658_51_7099576.txt @@ -0,0 +1 @@ +5 0.411713 0.443562 0.381968 0.459308 0.378466 0.590543 0.395966 0.632537 0.392464 0.733586 0.378466 0.771644 0.383717 0.822827 0.408214 0.849072 0.439709 0.845136 0.534196 0.851696 0.549944 0.858259 0.584940 0.859571 0.607688 0.837262 0.605939 0.636476 0.630437 0.589231 0.642682 0.472433 0.604190 0.448810 0.588439 0.451436 0.576190 0.456684 0.460708 0.455372 0.415212 0.443562 diff --git a/datasets/检测仪/train/labels/订单1805659_51_7099146.txt b/datasets/检测仪/train/labels/订单1805659_51_7099146.txt new file mode 100644 index 0000000..64dd14c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805659_51_7099146.txt @@ -0,0 +1 @@ +5 0.364466 0.355635 0.327721 0.383193 0.352214 0.553799 0.371471 0.582666 0.385469 0.719150 0.378464 0.759834 0.399466 0.834639 0.423958 0.858262 0.455456 0.849072 0.465951 0.841201 0.588438 0.832012 0.600690 0.843818 0.625182 0.847764 0.661927 0.814951 0.661927 0.748018 0.647930 0.715215 0.630430 0.577422 0.653177 0.509180 0.644427 0.374004 0.621680 0.346445 0.588438 0.346445 0.577943 0.355635 0.402969 0.360879 0.369714 0.354326 diff --git a/datasets/检测仪/train/labels/订单1805661_51_7099341.txt b/datasets/检测仪/train/labels/订单1805661_51_7099341.txt new file mode 100644 index 0000000..5e5483f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805661_51_7099341.txt @@ -0,0 +1 @@ +5 0.698565 0.401615 0.661817 0.418672 0.621574 0.559089 0.626817 0.584028 0.597072 0.677205 0.583079 0.703446 0.569074 0.770373 0.593576 0.808438 0.619815 0.812370 0.633819 0.801875 0.735301 0.820243 0.768553 0.832057 0.801794 0.821563 0.824549 0.758568 0.821042 0.729696 0.845544 0.607648 0.903287 0.464601 0.885787 0.437040 0.859537 0.437040 0.731806 0.417361 0.705556 0.401615 diff --git a/datasets/检测仪/train/labels/订单1805662_51_7099241.txt b/datasets/检测仪/train/labels/订单1805662_51_7099241.txt new file mode 100644 index 0000000..8ff3ebf --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805662_51_7099241.txt @@ -0,0 +1 @@ +5 0.500951 0.444873 0.474701 0.459307 0.465951 0.597100 0.478203 0.611543 0.467708 0.721777 0.453711 0.753271 0.455456 0.821514 0.478203 0.842510 0.497448 0.839883 0.513203 0.828076 0.621680 0.832012 0.654935 0.851699 0.681172 0.833320 0.700430 0.767705 0.691680 0.737520 0.688177 0.624658 0.707422 0.581357 0.712669 0.468496 0.693424 0.450117 0.672435 0.451436 0.665430 0.455371 0.537695 0.451436 0.514948 0.447500 diff --git a/datasets/检测仪/train/labels/订单1805667_51_7099345.txt b/datasets/检测仪/train/labels/订单1805667_51_7099345.txt new file mode 100644 index 0000000..928d18d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805667_51_7099345.txt @@ -0,0 +1 @@ +5 0.385420 0.493433 0.312125 0.509180 0.299909 0.614170 0.312125 0.631230 0.290750 0.702095 0.266307 0.730967 0.263261 0.774272 0.287693 0.796582 0.333500 0.800522 0.345716 0.792646 0.480102 0.795269 0.528966 0.807080 0.562568 0.790020 0.577841 0.740151 0.565625 0.724404 0.583943 0.641729 0.611432 0.619419 0.632807 0.523618 0.593102 0.507871 0.565625 0.513120 0.400693 0.505244 0.391534 0.498682 diff --git a/datasets/检测仪/train/labels/订单1805672_51_7099269.txt b/datasets/检测仪/train/labels/订单1805672_51_7099269.txt new file mode 100644 index 0000000..b7a08dd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805672_51_7099269.txt @@ -0,0 +1 @@ +5 0.413464 0.318887 0.362721 0.341201 0.331224 0.505244 0.331224 0.569541 0.303229 0.687656 0.280482 0.729648 0.275234 0.797891 0.289232 0.816260 0.320716 0.820205 0.334727 0.809697 0.457201 0.838574 0.467708 0.854326 0.495703 0.862197 0.528945 0.842510 0.569193 0.766396 0.563945 0.741465 0.602435 0.623350 0.653177 0.564297 0.728424 0.398945 0.700430 0.368760 0.658424 0.366133 0.644427 0.372695 0.469453 0.337266 0.457201 0.328076 0.418711 0.316260 diff --git a/datasets/检测仪/train/labels/订单1805677_51_7099314.txt b/datasets/检测仪/train/labels/订单1805677_51_7099314.txt new file mode 100644 index 0000000..f85c2fe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805677_51_7099314.txt @@ -0,0 +1 @@ +5 0.338077 0.421279 0.310077 0.448837 0.331077 0.599750 0.346833 0.626000 0.360821 0.748048 0.353821 0.775606 0.362577 0.826788 0.380077 0.842538 0.408064 0.851721 0.420321 0.842538 0.525308 0.842538 0.530551 0.850413 0.560295 0.860904 0.602295 0.832038 0.611038 0.758548 0.593551 0.732298 0.584795 0.618125 0.600551 0.565635 0.602295 0.437019 0.562051 0.410779 0.528808 0.412087 0.525308 0.421279 0.404564 0.427837 0.343333 0.421279 diff --git a/datasets/检测仪/train/labels/订单1805680_51_7099400.txt b/datasets/检测仪/train/labels/订单1805680_51_7099400.txt new file mode 100644 index 0000000..0d7f632 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805680_51_7099400.txt @@ -0,0 +1 @@ +5 0.740670 0.408160 0.710155 0.379293 0.534960 0.421287 0.505435 0.446220 0.376495 0.476407 0.332205 0.471153 0.265275 0.493467 0.248545 0.521020 0.252480 0.553833 0.261340 0.563020 0.276100 0.683753 0.267245 0.703440 0.266260 0.728373 0.297755 0.750680 0.357795 0.754620 0.402085 0.733620 0.527085 0.712627 0.554645 0.721813 0.740670 0.706060 0.767245 0.665380 0.765275 0.637820 0.756415 0.627320 0.736730 0.451467 0.743620 0.435720 diff --git a/datasets/检测仪/train/labels/订单1805681_51_7099392.txt b/datasets/检测仪/train/labels/订单1805681_51_7099392.txt new file mode 100644 index 0000000..af1d2bc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805681_51_7099392.txt @@ -0,0 +1 @@ +5 0.403142 0.481621 0.368142 0.501309 0.375148 0.624668 0.400807 0.656162 0.405477 0.740151 0.403142 0.780835 0.412474 0.832017 0.435807 0.854326 0.461467 0.853013 0.477795 0.843828 0.594453 0.838579 0.643446 0.850391 0.671441 0.829390 0.678437 0.780835 0.671441 0.745400 0.659774 0.653540 0.680773 0.620732 0.685443 0.498682 0.643446 0.480312 0.610781 0.486870 0.442804 0.490811 0.414809 0.480312 diff --git a/datasets/检测仪/train/labels/订单1805683_51_7099308.txt b/datasets/检测仪/train/labels/订单1805683_51_7099308.txt new file mode 100644 index 0000000..c193708 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805683_51_7099308.txt @@ -0,0 +1 @@ +5 0.259363 0.475104 0.238368 0.497413 0.269861 0.633898 0.292616 0.661450 0.329352 0.794002 0.317106 0.835998 0.341609 0.897674 0.366100 0.923924 0.395845 0.917361 0.534086 0.887179 0.560324 0.892422 0.598819 0.849115 0.591829 0.794002 0.560324 0.766441 0.527083 0.626024 0.532326 0.594523 0.507836 0.452795 0.462338 0.437040 0.448345 0.446233 0.292616 0.476415 0.264618 0.473793 diff --git a/datasets/检测仪/train/labels/订单1805684_51_7099421.txt b/datasets/检测仪/train/labels/订单1805684_51_7099421.txt new file mode 100644 index 0000000..8e5604c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805684_51_7099421.txt @@ -0,0 +1 @@ +5 0.247213 0.292620 0.212213 0.311000 0.194720 0.494720 0.226213 0.540660 0.208707 0.716510 0.182467 0.788690 0.194720 0.887110 0.222707 0.913360 0.275200 0.919920 0.294453 0.901550 0.479933 0.892360 0.493933 0.904170 0.553427 0.909420 0.574413 0.880550 0.590160 0.771630 0.574413 0.716510 0.558667 0.535410 0.576173 0.311000 0.541173 0.280810 0.507920 0.284750 0.289200 0.292620 0.259453 0.291310 diff --git a/datasets/检测仪/train/labels/订单1805691_51_7099534.txt b/datasets/检测仪/train/labels/订单1805691_51_7099534.txt new file mode 100644 index 0000000..14eed30 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805691_51_7099534.txt @@ -0,0 +1 @@ +5 0.430839 0.081396 0.395844 0.086646 0.306606 0.228379 0.297856 0.275625 0.219117 0.413417 0.175372 0.452788 0.140378 0.517092 0.149128 0.555150 0.194622 0.573525 0.224367 0.570900 0.343350 0.606333 0.348600 0.612896 0.387094 0.632579 0.425589 0.611583 0.488583 0.538092 0.492083 0.505283 0.549828 0.389796 0.583072 0.355675 0.682811 0.202133 0.670561 0.174575 0.448339 0.085333 diff --git a/datasets/检测仪/train/labels/订单1805692_51_7099444.txt b/datasets/检测仪/train/labels/订单1805692_51_7099444.txt new file mode 100644 index 0000000..042edbe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805692_51_7099444.txt @@ -0,0 +1 @@ +5 0.430605 0.263776 0.406001 0.292643 0.407969 0.468496 0.417812 0.517057 0.418794 0.687656 0.406001 0.748027 0.415840 0.835951 0.431592 0.870072 0.458164 0.872695 0.465054 0.859577 0.558560 0.860885 0.561509 0.870072 0.589072 0.880573 0.614663 0.847760 0.627456 0.742773 0.609741 0.695534 0.604819 0.511803 0.614663 0.452747 0.618599 0.262461 0.591040 0.240150 0.571353 0.245404 0.564463 0.253275 0.454229 0.271647 0.435527 0.266400 diff --git a/datasets/检测仪/train/labels/订单1805694_51_7099545.txt b/datasets/检测仪/train/labels/订单1805694_51_7099545.txt new file mode 100644 index 0000000..5f03f82 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805694_51_7099545.txt @@ -0,0 +1 @@ +5 0.411683 0.471103 0.378448 0.489473 0.392435 0.653517 0.408186 0.685012 0.404690 0.818873 0.383693 0.873983 0.399444 0.959289 0.429183 0.989473 0.471176 0.994718 0.493922 0.980294 0.644412 0.976348 0.681160 0.989473 0.719657 0.948787 0.714395 0.864804 0.695147 0.822806 0.672402 0.675821 0.677647 0.619400 0.672402 0.488162 0.630408 0.468480 0.609412 0.473725 0.464183 0.475037 0.423938 0.471103 diff --git a/datasets/检测仪/train/labels/订单1805696_51_7099528.txt b/datasets/检测仪/train/labels/订单1805696_51_7099528.txt new file mode 100644 index 0000000..4f6cd92 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805696_51_7099528.txt @@ -0,0 +1 @@ +5 0.343356 0.444913 0.315359 0.463290 0.303113 0.585339 0.317106 0.622083 0.310104 0.733628 0.290856 0.763819 0.292616 0.817622 0.310104 0.851745 0.336354 0.853056 0.345104 0.845182 0.446597 0.847804 0.464086 0.855677 0.492083 0.862240 0.527083 0.845182 0.541076 0.767752 0.528831 0.744132 0.539329 0.631267 0.548079 0.601085 0.563831 0.467231 0.532326 0.446233 0.511331 0.443602 0.506088 0.450165 0.366100 0.452795 0.352106 0.444922 diff --git a/datasets/检测仪/train/labels/订单1805698_51_7099633.txt b/datasets/检测仪/train/labels/订单1805698_51_7099633.txt new file mode 100644 index 0000000..fc0f12f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805698_51_7099633.txt @@ -0,0 +1 @@ +5 0.584935 0.286084 0.551693 0.305762 0.546445 0.467178 0.544701 0.565605 0.528945 0.590537 0.521953 0.643037 0.537695 0.661406 0.565690 0.667969 0.577943 0.657471 0.668932 0.671904 0.707422 0.685029 0.724922 0.669277 0.745924 0.610225 0.744167 0.580039 0.749414 0.485557 0.772161 0.448809 0.796667 0.321514 0.773919 0.300518 0.751172 0.301826 0.747669 0.305762 0.612930 0.297891 0.597187 0.290020 diff --git a/datasets/检测仪/train/labels/订单1805699_51_7099594.txt b/datasets/检测仪/train/labels/订单1805699_51_7099594.txt new file mode 100644 index 0000000..684c446 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805699_51_7099594.txt @@ -0,0 +1 @@ +5 0.343477 0.396318 0.299727 0.406816 0.234987 0.543301 0.238477 0.583984 0.178984 0.713906 0.154492 0.745400 0.133490 0.820205 0.142240 0.855635 0.170247 0.862197 0.187734 0.853008 0.304974 0.875322 0.322474 0.891064 0.346966 0.905498 0.388958 0.885820 0.439714 0.811016 0.441458 0.758525 0.479948 0.633848 0.514948 0.599727 0.577943 0.455371 0.548190 0.429121 0.523698 0.429121 0.511445 0.431748 0.364466 0.409443 0.355716 0.398945 diff --git a/datasets/检测仪/train/labels/订单1805703_51_7099678.txt b/datasets/检测仪/train/labels/订单1805703_51_7099678.txt new file mode 100644 index 0000000..53dbdf4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805703_51_7099678.txt @@ -0,0 +1 @@ +5 0.241094 0.565647 0.218437 0.593206 0.267240 0.728382 0.289896 0.754627 0.319518 0.855676 0.331719 0.902922 0.356120 0.961971 0.377044 0.979029 0.399701 0.977725 0.415391 0.964598 0.512995 0.944912 0.549596 0.951471 0.577474 0.918667 0.572253 0.845176 0.551341 0.826804 0.509505 0.708696 0.509505 0.674569 0.472904 0.539402 0.431068 0.523657 0.415391 0.531529 0.408411 0.539402 0.295117 0.564333 0.248060 0.566961 diff --git a/datasets/检测仪/train/labels/订单1805704_51_7099624.txt b/datasets/检测仪/train/labels/订单1805704_51_7099624.txt new file mode 100644 index 0000000..4e736e5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805704_51_7099624.txt @@ -0,0 +1 @@ +5 0.034967 0.633845 0.005800 0.641720 0.014556 0.662715 0.218689 0.730960 0.259522 0.728335 0.405333 0.778200 0.428667 0.799200 0.504489 0.824135 0.568644 0.826760 0.600733 0.811010 0.591978 0.800510 0.661967 0.748020 0.696967 0.734895 0.691133 0.708650 0.554067 0.679775 0.425756 0.632535 0.405333 0.616785 0.230356 0.548545 0.180778 0.551170 0.163278 0.565605 0.058300 0.625970 diff --git a/datasets/检测仪/train/labels/订单1805706_51_7099653.txt b/datasets/检测仪/train/labels/订单1805706_51_7099653.txt new file mode 100644 index 0000000..f0e792c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805706_51_7099653.txt @@ -0,0 +1 @@ +5 0.667174 0.291328 0.635677 0.309697 0.639180 0.450117 0.649687 0.480303 0.647930 0.570859 0.630430 0.608916 0.637435 0.662725 0.663685 0.692900 0.700430 0.690283 0.712669 0.681094 0.817656 0.686338 0.856159 0.698154 0.877148 0.678467 0.892904 0.618105 0.877148 0.589229 0.873659 0.472432 0.889401 0.421250 0.899896 0.313643 0.877148 0.295264 0.845651 0.296582 0.703919 0.296582 0.675924 0.290020 diff --git a/datasets/检测仪/train/labels/订单1805711_51_7099701.txt b/datasets/检测仪/train/labels/订单1805711_51_7099701.txt new file mode 100644 index 0000000..e006856 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805711_51_7099701.txt @@ -0,0 +1 @@ +5 0.406458 0.299199 0.362721 0.324141 0.341719 0.499990 0.353971 0.564297 0.320716 0.720459 0.292721 0.775586 0.289232 0.858262 0.317227 0.897627 0.345221 0.900254 0.366211 0.888437 0.544701 0.901563 0.548190 0.917314 0.583190 0.923877 0.621680 0.900254 0.656680 0.813643 0.640938 0.767705 0.665430 0.599727 0.691680 0.548545 0.737174 0.356943 0.707422 0.328076 0.670677 0.328076 0.654935 0.332012 0.460703 0.313643 0.446706 0.305762 0.420456 0.301826 diff --git a/datasets/检测仪/train/labels/订单1805718_51_7099739.txt b/datasets/检测仪/train/labels/订单1805718_51_7099739.txt new file mode 100644 index 0000000..4c870df --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805718_51_7099739.txt @@ -0,0 +1 @@ +5 0.259346 0.234902 0.235723 0.266400 0.257378 0.475059 0.273125 0.552487 0.289858 0.709967 0.281001 0.753275 0.295762 0.839889 0.319385 0.871387 0.335132 0.870072 0.345962 0.854323 0.436509 0.860885 0.458164 0.871387 0.486709 0.845137 0.495566 0.721777 0.484741 0.679785 0.480801 0.538053 0.490645 0.492122 0.491631 0.254590 0.468008 0.223092 0.438481 0.223092 0.429619 0.233587 0.317417 0.242773 0.297729 0.232279 0.264268 0.230964 diff --git a/datasets/检测仪/train/labels/订单1805720_51_7099771.txt b/datasets/检测仪/train/labels/订单1805720_51_7099771.txt new file mode 100644 index 0000000..42f8b85 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805720_51_7099771.txt @@ -0,0 +1 @@ +5 0.404714 0.484238 0.380221 0.497363 0.357474 0.646973 0.364466 0.681094 0.353971 0.804453 0.332969 0.846445 0.327721 0.917314 0.355716 0.947500 0.385469 0.946182 0.394219 0.934375 0.525443 0.938311 0.544701 0.959307 0.570937 0.956680 0.605938 0.863506 0.588438 0.828076 0.600690 0.696846 0.614687 0.677158 0.642682 0.523613 0.605938 0.497363 0.590195 0.505244 0.436211 0.493428 0.411706 0.486865 diff --git a/datasets/检测仪/train/labels/订单1805723_51_7099785.txt b/datasets/检测仪/train/labels/订单1805723_51_7099785.txt new file mode 100644 index 0000000..df9e56f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805723_51_7099785.txt @@ -0,0 +1 @@ +5 0.653160 0.391050 0.616413 0.401550 0.555173 0.536720 0.556920 0.577400 0.509680 0.691570 0.472933 0.734880 0.448427 0.817560 0.457187 0.849050 0.497427 0.864800 0.511427 0.852990 0.656653 0.885800 0.674160 0.912050 0.714400 0.926480 0.749400 0.908110 0.789640 0.825430 0.794893 0.778190 0.835133 0.636460 0.861387 0.601020 0.913880 0.454040 0.882373 0.433040 0.863133 0.431730 0.663653 0.392360 diff --git a/datasets/检测仪/train/labels/订单1805726_51_7099833.txt b/datasets/检测仪/train/labels/订单1805726_51_7099833.txt new file mode 100644 index 0000000..ee2cc7f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805726_51_7099833.txt @@ -0,0 +1 @@ +5 0.362609 0.402930 0.332869 0.426547 0.336366 0.612900 0.355615 0.648340 0.345109 0.800564 0.329372 0.845184 0.345109 0.921301 0.371366 0.952797 0.404604 0.954109 0.423852 0.942295 0.565587 0.940984 0.572582 0.952797 0.614577 0.954109 0.647828 0.921301 0.660068 0.846496 0.647828 0.815000 0.647828 0.644395 0.665328 0.572223 0.667077 0.429180 0.630328 0.402930 0.604085 0.406865 0.591831 0.410799 0.401107 0.414744 0.369604 0.404242 diff --git a/datasets/检测仪/train/labels/订单1805727_51_7099850.txt b/datasets/检测仪/train/labels/订单1805727_51_7099850.txt new file mode 100644 index 0000000..c04544b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805727_51_7099850.txt @@ -0,0 +1 @@ +5 0.227960 0.254570 0.194720 0.282130 0.222707 0.442230 0.245453 0.497350 0.266453 0.622020 0.255960 0.656140 0.273453 0.715200 0.296200 0.734880 0.324200 0.733570 0.457187 0.725700 0.490427 0.733570 0.514920 0.715200 0.535920 0.646950 0.520173 0.623330 0.516680 0.498660 0.534173 0.448790 0.549920 0.276880 0.509680 0.248000 0.481680 0.251940 0.472933 0.258500 0.282200 0.258500 0.266453 0.254570 0.241960 0.249320 diff --git a/datasets/检测仪/train/labels/订单1805731_51_7100007.txt b/datasets/检测仪/train/labels/订单1805731_51_7100007.txt new file mode 100644 index 0000000..37c5851 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805731_51_7100007.txt @@ -0,0 +1 @@ +5 0.394219 0.450117 0.362721 0.476367 0.376719 0.641719 0.399466 0.677158 0.411706 0.822822 0.401211 0.881885 0.413464 0.955371 0.446706 0.982930 0.481706 0.978994 0.493945 0.960625 0.635677 0.952744 0.674180 0.968496 0.695182 0.950117 0.712669 0.862197 0.688177 0.822822 0.674180 0.666660 0.691680 0.597100 0.675924 0.465869 0.644427 0.433066 0.616432 0.439619 0.605938 0.444873 0.439714 0.454062 0.401211 0.452744 diff --git a/datasets/检测仪/train/labels/订单1805735_51_7099895.txt b/datasets/检测仪/train/labels/订单1805735_51_7099895.txt new file mode 100644 index 0000000..6940e5a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805735_51_7099895.txt @@ -0,0 +1 @@ +5 0.684579 0.248078 0.655054 0.223139 0.499542 0.241511 0.460171 0.262511 0.313517 0.262511 0.255446 0.258572 0.191471 0.270383 0.159975 0.299256 0.156037 0.333378 0.163912 0.351750 0.180642 0.485606 0.172771 0.503978 0.167846 0.528917 0.206233 0.574844 0.290879 0.578783 0.328279 0.559100 0.470012 0.540728 0.527100 0.551222 0.670800 0.548600 0.692454 0.513167 0.689500 0.480361 0.687533 0.458050 0.677692 0.290072 0.687533 0.255950 diff --git a/datasets/检测仪/train/labels/订单1805736_51_7099971.txt b/datasets/检测仪/train/labels/订单1805736_51_7099971.txt new file mode 100644 index 0000000..9d681fc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805736_51_7099971.txt @@ -0,0 +1 @@ +5 0.324219 0.412061 0.296224 0.437002 0.297982 0.601045 0.322474 0.643037 0.325977 0.778203 0.315469 0.824141 0.329466 0.893691 0.355716 0.917314 0.394219 0.913379 0.399466 0.902881 0.532448 0.895000 0.542943 0.909443 0.574440 0.910752 0.598932 0.891064 0.618190 0.813643 0.600690 0.786084 0.593685 0.648281 0.611185 0.589229 0.614687 0.438311 0.577943 0.405498 0.553438 0.406816 0.542943 0.419941 0.371471 0.421250 0.362721 0.419941 0.331224 0.412061 diff --git a/datasets/检测仪/train/labels/订单1805739_51_7099950.txt b/datasets/检测仪/train/labels/订单1805739_51_7099950.txt new file mode 100644 index 0000000..28d4060 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805739_51_7099950.txt @@ -0,0 +1 @@ +5 0.129973 0.339870 0.105480 0.363490 0.143973 0.496040 0.168467 0.528840 0.199960 0.623330 0.192960 0.654830 0.220960 0.715200 0.248960 0.730940 0.282200 0.727010 0.287453 0.712570 0.394187 0.698140 0.399440 0.702070 0.427440 0.696820 0.451933 0.666640 0.444933 0.614150 0.425680 0.582650 0.387187 0.481600 0.392440 0.448790 0.362693 0.338560 0.327693 0.328060 0.301453 0.329370 0.177213 0.345120 0.135227 0.341180 diff --git a/datasets/检测仪/train/labels/订单1805740_51_7099926.txt b/datasets/检测仪/train/labels/订单1805740_51_7099926.txt new file mode 100644 index 0000000..b847446 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805740_51_7099926.txt @@ -0,0 +1 @@ +5 0.420456 0.545918 0.395964 0.556426 0.381966 0.649600 0.395964 0.687656 0.387214 0.759834 0.376719 0.792646 0.374961 0.837266 0.392461 0.853008 0.413464 0.859570 0.423958 0.850381 0.499206 0.854326 0.525443 0.864824 0.541198 0.851699 0.556940 0.803145 0.542943 0.787393 0.560443 0.699463 0.570937 0.675840 0.590195 0.573486 0.574440 0.549863 0.548190 0.557734 0.444961 0.556426 0.420456 0.547236 diff --git a/datasets/检测仪/train/labels/订单1805742_51_7099979.txt b/datasets/检测仪/train/labels/订单1805742_51_7099979.txt new file mode 100644 index 0000000..9d0ca67 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805742_51_7099979.txt @@ -0,0 +1 @@ +5 0.339974 0.503926 0.306719 0.524922 0.322474 0.643037 0.338216 0.664033 0.346966 0.742773 0.341719 0.778203 0.352214 0.812324 0.362721 0.833320 0.385469 0.835947 0.392461 0.826758 0.479948 0.822822 0.506198 0.824141 0.516693 0.812324 0.525443 0.755898 0.514948 0.740146 0.511445 0.654844 0.513203 0.631221 0.513203 0.513115 0.490456 0.499990 0.467708 0.509180 0.359219 0.518359 diff --git a/datasets/检测仪/train/labels/订单1805746_51_7100012.txt b/datasets/检测仪/train/labels/订单1805746_51_7100012.txt new file mode 100644 index 0000000..c5d7ae6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805746_51_7100012.txt @@ -0,0 +1 @@ +5 0.364466 0.409443 0.338216 0.433066 0.373216 0.562979 0.399466 0.590537 0.413464 0.683721 0.408216 0.712588 0.427461 0.761143 0.448451 0.775586 0.472956 0.772959 0.483451 0.763770 0.574440 0.753271 0.604193 0.763770 0.619935 0.749336 0.632188 0.688965 0.614687 0.670596 0.602435 0.570859 0.607682 0.539365 0.595443 0.402881 0.567448 0.388437 0.542943 0.393691 0.539440 0.398945 0.411706 0.416006 0.392461 0.410752 diff --git a/datasets/检测仪/train/labels/订单1805747_51_7100048.txt b/datasets/检测仪/train/labels/订单1805747_51_7100048.txt new file mode 100644 index 0000000..0770649 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805747_51_7100048.txt @@ -0,0 +1 @@ +5 0.296106 0.351737 0.266361 0.377987 0.271611 0.539404 0.289106 0.569588 0.294356 0.690321 0.276861 0.741504 0.287356 0.807121 0.311856 0.834679 0.355600 0.834679 0.366100 0.822867 0.478083 0.809746 0.493833 0.818929 0.523578 0.818929 0.558572 0.799246 0.562072 0.731004 0.556822 0.691633 0.542828 0.561712 0.553322 0.534154 0.558572 0.384546 0.523578 0.360925 0.499083 0.362237 0.490333 0.367488 0.343350 0.366175 0.304856 0.353050 diff --git a/datasets/检测仪/train/labels/订单1805748_51_7100087.txt b/datasets/检测仪/train/labels/订单1805748_51_7100087.txt new file mode 100644 index 0000000..6aa57ff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805748_51_7100087.txt @@ -0,0 +1 @@ +5 0.342471 0.261186 0.302235 0.291373 0.333725 0.481657 0.359974 0.527588 0.372222 0.677196 0.365216 0.732314 0.386222 0.796618 0.407216 0.829431 0.464954 0.814990 0.596196 0.805804 0.657438 0.816304 0.683686 0.783500 0.695935 0.706069 0.678431 0.664069 0.660928 0.506588 0.674928 0.421294 0.669686 0.275618 0.632941 0.241500 0.601438 0.244127 0.592693 0.254627 0.398471 0.265127 0.377464 0.261186 0.351229 0.259873 diff --git a/datasets/检测仪/train/labels/订单1805751_51_7100254.txt b/datasets/检测仪/train/labels/订单1805751_51_7100254.txt new file mode 100644 index 0000000..acf4484 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805751_51_7100254.txt @@ -0,0 +1 @@ +5 0.436187 0.514410 0.415187 0.536720 0.437933 0.670580 0.457187 0.711260 0.479933 0.825430 0.474680 0.879240 0.499173 0.947480 0.520173 0.972410 0.546427 0.972410 0.553427 0.956670 0.686400 0.950100 0.724893 0.961920 0.749400 0.942230 0.759893 0.856930 0.730147 0.817560 0.698653 0.688950 0.700400 0.656140 0.674160 0.502600 0.642653 0.485540 0.616413 0.493410 0.478173 0.513100 0.444933 0.511780 diff --git a/datasets/检测仪/train/labels/订单1805752_51_7100195.txt b/datasets/检测仪/train/labels/订单1805752_51_7100195.txt new file mode 100644 index 0000000..348f248 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805752_51_7100195.txt @@ -0,0 +1 @@ +5 0.453711 0.410752 0.423958 0.430439 0.415208 0.534111 0.427461 0.557734 0.423958 0.660098 0.411706 0.698154 0.406458 0.753271 0.427461 0.778203 0.457201 0.780830 0.460703 0.767705 0.584935 0.766396 0.621680 0.783457 0.635677 0.766396 0.647930 0.694219 0.632188 0.671904 0.630430 0.555107 0.640938 0.534111 0.644427 0.417314 0.623437 0.400254 0.593685 0.406816 0.460703 0.413379 diff --git a/datasets/检测仪/train/labels/订单1805753_51_7100046.txt b/datasets/检测仪/train/labels/订单1805753_51_7100046.txt new file mode 100644 index 0000000..5ccaf39 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805753_51_7100046.txt @@ -0,0 +1 @@ +5 0.450208 0.217842 0.422214 0.244082 0.436211 0.405498 0.451953 0.438311 0.474701 0.560361 0.467708 0.603662 0.474701 0.679785 0.504453 0.703398 0.539440 0.713906 0.555195 0.699463 0.688177 0.692900 0.721419 0.703398 0.744167 0.703398 0.761667 0.677158 0.768672 0.601045 0.749414 0.565605 0.728424 0.422559 0.749414 0.389756 0.738919 0.242773 0.695182 0.215215 0.670677 0.216523 0.486953 0.223086 0.448451 0.220459 diff --git a/datasets/检测仪/train/labels/订单1805763_51_7100277.txt b/datasets/检测仪/train/labels/订单1805763_51_7100277.txt new file mode 100644 index 0000000..f4357a0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805763_51_7100277.txt @@ -0,0 +1 @@ +5 0.301356 0.389796 0.257611 0.414729 0.224367 0.591896 0.236617 0.629954 0.208617 0.738879 0.185872 0.797933 0.173622 0.855675 0.192872 0.881921 0.224367 0.892421 0.233117 0.881921 0.357350 0.893733 0.378344 0.904233 0.402844 0.916042 0.436089 0.896358 0.469333 0.832054 0.467583 0.791371 0.509578 0.675888 0.549828 0.597146 0.600567 0.461975 0.577822 0.433104 0.535828 0.431792 0.523578 0.439667 0.366100 0.414729 0.343350 0.401608 0.304856 0.389796 diff --git a/datasets/检测仪/train/labels/订单1805765_51_7100237.txt b/datasets/检测仪/train/labels/订单1805765_51_7100237.txt new file mode 100644 index 0000000..e5008a8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805765_51_7100237.txt @@ -0,0 +1 @@ +5 0.432708 0.444873 0.409961 0.452744 0.406458 0.559043 0.416966 0.578730 0.411706 0.666660 0.408216 0.696846 0.402969 0.750645 0.420456 0.771641 0.444961 0.776895 0.455456 0.763770 0.544701 0.765078 0.560443 0.774268 0.576185 0.772959 0.602435 0.758525 0.611185 0.696846 0.593685 0.675840 0.591940 0.586602 0.604193 0.560361 0.604193 0.452744 0.593685 0.439619 0.576185 0.443564 0.443203 0.450117 diff --git a/datasets/检测仪/train/labels/订单1805766_51_7100199.txt b/datasets/检测仪/train/labels/订单1805766_51_7100199.txt new file mode 100644 index 0000000..f72bb29 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805766_51_7100199.txt @@ -0,0 +1 @@ +5 0.418600 0.419983 0.408102 0.434418 0.409850 0.540720 0.429097 0.561719 0.439595 0.654896 0.429097 0.681137 0.444838 0.729696 0.458843 0.742821 0.476343 0.749384 0.493831 0.734948 0.588322 0.732318 0.623322 0.738880 0.639062 0.716571 0.644317 0.658828 0.621574 0.639141 0.607569 0.551215 0.614572 0.521033 0.607569 0.423924 0.579572 0.412109 0.563831 0.413420 0.560324 0.416050 0.446597 0.423924 0.430845 0.418672 diff --git a/datasets/检测仪/train/labels/订单1805767_51_7100306.txt b/datasets/检测仪/train/labels/订单1805767_51_7100306.txt new file mode 100644 index 0000000..10d3b37 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805767_51_7100306.txt @@ -0,0 +1 @@ +5 0.492201 0.385820 0.462461 0.409443 0.485208 0.539365 0.509701 0.599727 0.527201 0.711279 0.523698 0.761143 0.539440 0.814951 0.558698 0.843818 0.591940 0.846445 0.602435 0.835947 0.731927 0.838574 0.758164 0.847764 0.786159 0.826758 0.796667 0.755898 0.775664 0.725713 0.777422 0.598418 0.791419 0.552480 0.786159 0.388437 0.742422 0.367441 0.721419 0.370068 0.712669 0.379258 0.541198 0.387129 0.504453 0.384502 diff --git a/datasets/检测仪/train/labels/订单1805769_51_7100206.txt b/datasets/检测仪/train/labels/订单1805769_51_7100206.txt new file mode 100644 index 0000000..c258b17 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805769_51_7100206.txt @@ -0,0 +1 @@ +5 0.662311 0.543301 0.605840 0.555112 0.498561 0.678472 0.501387 0.723091 0.422342 0.820205 0.385641 0.855640 0.340462 0.912070 0.346113 0.938315 0.391282 0.946191 0.405399 0.942251 0.574790 0.975059 0.591723 0.988184 0.622784 0.994746 0.713120 0.969810 0.738529 0.940942 0.749821 0.905508 0.854286 0.800522 0.919212 0.745400 0.998267 0.649600 1.000000 0.620571 1.000000 0.602251 0.947447 0.597109 0.938981 0.601045 0.715945 0.559053 0.667952 0.544614 diff --git a/datasets/检测仪/train/labels/订单1805770_51_7100239.txt b/datasets/检测仪/train/labels/订单1805770_51_7100239.txt new file mode 100644 index 0000000..cbcf32f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805770_51_7100239.txt @@ -0,0 +1 @@ +5 0.296224 0.460625 0.266484 0.484238 0.273477 0.614160 0.299727 0.654844 0.308477 0.778203 0.292721 0.826758 0.311979 0.887129 0.331224 0.908125 0.360964 0.910752 0.369714 0.900254 0.488698 0.887129 0.502695 0.898945 0.528945 0.901563 0.556940 0.880566 0.569193 0.792646 0.548190 0.766396 0.535951 0.645664 0.548190 0.601045 0.537695 0.467178 0.500951 0.444873 0.483451 0.451436 0.327721 0.468496 0.304974 0.460625 diff --git a/datasets/检测仪/train/labels/订单1805771_51_7100316.txt b/datasets/检测仪/train/labels/订单1805771_51_7100316.txt new file mode 100644 index 0000000..254739b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805771_51_7100316.txt @@ -0,0 +1 @@ +5 0.273374 0.552531 0.252377 0.561721 0.250628 0.589283 0.390601 0.678525 0.416858 0.682459 0.516598 0.744139 0.539344 0.774324 0.597077 0.804508 0.625082 0.803197 0.639071 0.791383 0.633825 0.774324 0.698566 0.720512 0.709071 0.721824 0.721311 0.713955 0.717814 0.690328 0.681066 0.660143 0.639071 0.640461 0.549836 0.573535 0.530587 0.551219 0.416858 0.459365 0.387104 0.460676 0.374863 0.467234 0.376612 0.479047 0.283866 0.547285 diff --git a/datasets/检测仪/train/labels/订单1805773_51_7100246.txt b/datasets/检测仪/train/labels/订单1805773_51_7100246.txt new file mode 100644 index 0000000..97ea5de --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805773_51_7100246.txt @@ -0,0 +1 @@ +5 0.364466 0.153535 0.338216 0.174531 0.341719 0.317578 0.366211 0.363506 0.362721 0.484238 0.350469 0.524922 0.353971 0.587920 0.381966 0.619414 0.422214 0.619414 0.432708 0.606289 0.553438 0.604980 0.563945 0.611543 0.591940 0.618105 0.614687 0.601045 0.633932 0.527549 0.618190 0.490801 0.611185 0.366133 0.630430 0.332012 0.633932 0.170596 0.604193 0.145664 0.579688 0.152227 0.404714 0.160098 0.371471 0.154844 diff --git a/datasets/检测仪/train/labels/订单1805775_51_7100312.txt b/datasets/检测仪/train/labels/订单1805775_51_7100312.txt new file mode 100644 index 0000000..238f3ba --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805775_51_7100312.txt @@ -0,0 +1 @@ +5 0.500933 0.439610 0.478173 0.452730 0.450187 0.539340 0.460680 0.561650 0.443187 0.640390 0.429187 0.666640 0.422187 0.720450 0.437933 0.737510 0.462427 0.736190 0.569173 0.733570 0.607667 0.753250 0.623413 0.732260 0.656653 0.688950 0.651413 0.581340 0.661907 0.552470 0.684653 0.452730 0.649653 0.433040 0.628667 0.433040 0.507920 0.438290 diff --git a/datasets/检测仪/train/labels/订单1805779_51_7100335.txt b/datasets/检测仪/train/labels/订单1805779_51_7100335.txt new file mode 100644 index 0000000..2bf1eaa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805779_51_7100335.txt @@ -0,0 +1 @@ +5 0.464206 0.211279 0.432708 0.227021 0.436211 0.345137 0.443203 0.364824 0.448451 0.451436 0.441458 0.471123 0.437956 0.517051 0.451953 0.540674 0.478203 0.544609 0.485208 0.532803 0.572695 0.534111 0.590195 0.547236 0.612930 0.534111 0.626940 0.481621 0.618190 0.457998 0.619935 0.371387 0.633932 0.339883 0.644427 0.224404 0.618190 0.211279 0.602435 0.215215 0.483451 0.216523 0.462461 0.211279 diff --git a/datasets/检测仪/train/labels/订单1805782_51_7100361.txt b/datasets/检测仪/train/labels/订单1805782_51_7100361.txt new file mode 100644 index 0000000..54799d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805782_51_7100361.txt @@ -0,0 +1 @@ +5 0.406458 0.339883 0.371471 0.350381 0.355716 0.501299 0.369714 0.530176 0.355716 0.637783 0.343464 0.673223 0.343464 0.737520 0.362721 0.759834 0.401211 0.769023 0.401211 0.755898 0.509701 0.755898 0.518451 0.765078 0.546445 0.771641 0.574440 0.750645 0.584935 0.692900 0.579688 0.664033 0.588438 0.545918 0.609440 0.510488 0.626940 0.375322 0.609440 0.354326 0.586693 0.354326 0.574440 0.362197 0.436211 0.346445 0.415208 0.341201 diff --git a/datasets/检测仪/train/labels/订单1805783_51_7100455.txt b/datasets/检测仪/train/labels/订单1805783_51_7100455.txt new file mode 100644 index 0000000..35f054f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805783_51_7100455.txt @@ -0,0 +1 @@ +5 0.294356 0.444912 0.275111 0.455412 0.276861 0.467225 0.278611 0.587958 0.268111 0.611583 0.296106 0.626017 0.332850 0.628642 0.504333 0.627329 0.530578 0.611583 0.691556 0.605021 0.752800 0.615517 0.840289 0.605021 0.864783 0.589271 0.861289 0.555150 0.842039 0.458037 0.845539 0.450163 0.849039 0.429167 0.819289 0.416042 0.703806 0.414729 0.684556 0.429167 0.521828 0.437042 0.488583 0.427854 0.304856 0.439667 diff --git a/datasets/检测仪/train/labels/订单1805788_51_7100527.txt b/datasets/检测仪/train/labels/订单1805788_51_7100527.txt new file mode 100644 index 0000000..9498497 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805788_51_7100527.txt @@ -0,0 +1 @@ +5 0.345221 0.258525 0.297982 0.282139 0.297982 0.450117 0.317227 0.490801 0.313724 0.644346 0.294479 0.708652 0.308477 0.787393 0.331224 0.818887 0.394219 0.818887 0.406458 0.808389 0.563945 0.801826 0.569193 0.813643 0.609440 0.822822 0.658424 0.780830 0.661927 0.679785 0.642682 0.646973 0.633932 0.486865 0.642682 0.455371 0.639180 0.271641 0.605938 0.251963 0.576185 0.257207 0.376719 0.266396 0.353971 0.261143 diff --git a/datasets/检测仪/train/labels/订单1805791_51_7100431.txt b/datasets/检测仪/train/labels/订单1805791_51_7100431.txt new file mode 100644 index 0000000..d87daae --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805791_51_7100431.txt @@ -0,0 +1 @@ +5 0.401211 0.489492 0.378464 0.507861 0.460703 0.641719 0.483451 0.660098 0.534193 0.749336 0.534193 0.784766 0.576185 0.843818 0.607682 0.864824 0.630430 0.856943 0.635677 0.839883 0.735417 0.811016 0.742422 0.817578 0.770417 0.812324 0.782669 0.788701 0.763411 0.734902 0.735417 0.706025 0.679427 0.597100 0.681172 0.570859 0.616432 0.451436 0.583190 0.431748 0.560443 0.439619 0.555195 0.446182 0.437956 0.484238 0.413464 0.484238 diff --git a/datasets/检测仪/train/labels/订单1805793_51_7100437.txt b/datasets/检测仪/train/labels/订单1805793_51_7100437.txt new file mode 100644 index 0000000..ab33ada --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805793_51_7100437.txt @@ -0,0 +1 @@ +5 0.236732 0.288701 0.212240 0.322822 0.301471 0.497363 0.343464 0.599727 0.346966 0.654844 0.383711 0.708652 0.422214 0.725713 0.453711 0.717842 0.457201 0.706025 0.570937 0.675840 0.604193 0.678467 0.616432 0.653535 0.607682 0.586602 0.588438 0.572168 0.544701 0.443564 0.534193 0.405498 0.488698 0.276895 0.453711 0.258525 0.434453 0.263770 0.275234 0.293955 0.247227 0.290020 diff --git a/datasets/检测仪/train/labels/订单1805794_51_7100487.txt b/datasets/检测仪/train/labels/订单1805794_51_7100487.txt new file mode 100644 index 0000000..00cb5d9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805794_51_7100487.txt @@ -0,0 +1 @@ +5 0.086118 0.370072 0.056592 0.400254 0.063481 0.444876 0.085132 0.619414 0.075293 0.666660 0.098911 0.695534 0.202261 0.715215 0.245566 0.694219 0.411904 0.687656 0.668794 0.708652 0.700293 0.666660 0.701274 0.633854 0.696353 0.620729 0.689463 0.392383 0.699307 0.380573 0.699307 0.341204 0.672729 0.301829 0.433560 0.329388 0.404033 0.347760 0.249502 0.351699 0.198320 0.338574 0.090054 0.370072 diff --git a/datasets/检测仪/train/labels/订单1805797_51_7100514.txt b/datasets/检测仪/train/labels/订单1805797_51_7100514.txt new file mode 100644 index 0000000..ea808d0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805797_51_7100514.txt @@ -0,0 +1 @@ +5 0.360850 0.036779 0.310106 0.057775 0.264611 0.250688 0.262861 0.304496 0.243611 0.384546 0.224367 0.417354 0.213867 0.459350 0.240111 0.481658 0.257611 0.481658 0.261111 0.476413 0.362600 0.496096 0.390594 0.507908 0.420339 0.500033 0.453589 0.461975 0.457089 0.442292 0.500833 0.359613 0.646061 0.178512 0.614567 0.114204 0.579572 0.106333 0.378344 0.044654 diff --git a/datasets/检测仪/train/labels/订单1805802_51_7100539.txt b/datasets/检测仪/train/labels/订单1805802_51_7100539.txt new file mode 100644 index 0000000..7ffea83 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805802_51_7100539.txt @@ -0,0 +1 @@ +5 0.439714 0.376631 0.409961 0.385820 0.355716 0.517051 0.360964 0.561670 0.322474 0.643037 0.311979 0.671904 0.289232 0.699463 0.266484 0.762461 0.276979 0.786084 0.308477 0.795264 0.318971 0.786084 0.430964 0.804453 0.437956 0.820205 0.462461 0.833320 0.492201 0.817578 0.535951 0.754580 0.532448 0.716523 0.574440 0.608916 0.595443 0.577422 0.656680 0.448809 0.637435 0.419941 0.616432 0.417314 0.602435 0.419941 0.472956 0.393691 0.439714 0.375322 diff --git a/datasets/检测仪/train/labels/订单1805804_51_7100605.txt b/datasets/检测仪/train/labels/订单1805804_51_7100605.txt new file mode 100644 index 0000000..f257136 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805804_51_7100605.txt @@ -0,0 +1 @@ +5 0.397708 0.552480 0.362721 0.569541 0.374961 0.713906 0.397708 0.744082 0.395964 0.843818 0.394219 0.891064 0.401211 0.967178 0.439714 0.988184 0.460703 0.985557 0.462461 0.975059 0.591940 0.967178 0.619935 0.977686 0.637435 0.959307 0.646185 0.891064 0.630430 0.868760 0.618190 0.730957 0.628685 0.695527 0.616432 0.561670 0.593685 0.549863 0.541198 0.552480 0.406458 0.552480 diff --git a/datasets/检测仪/train/labels/订单1805806_51_7100666.txt b/datasets/检测仪/train/labels/订单1805806_51_7100666.txt new file mode 100644 index 0000000..2e27597 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805806_51_7100666.txt @@ -0,0 +1 @@ +5 0.464187 0.262440 0.437933 0.282130 0.430933 0.408110 0.450187 0.438290 0.439680 0.544590 0.425680 0.580030 0.423933 0.645640 0.451933 0.682390 0.478173 0.678450 0.602413 0.666640 0.621667 0.682390 0.647907 0.683700 0.681160 0.674510 0.695147 0.595770 0.682907 0.568210 0.686400 0.442230 0.696907 0.409420 0.714400 0.267690 0.688147 0.251940 0.663653 0.255880 0.469427 0.265070 diff --git a/datasets/检测仪/train/labels/订单1805807_51_7100667.txt b/datasets/检测仪/train/labels/订单1805807_51_7100667.txt new file mode 100644 index 0000000..953537d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805807_51_7100667.txt @@ -0,0 +1 @@ +5 0.262861 0.503971 0.208617 0.514467 0.201617 0.536779 0.217367 0.555150 0.184122 0.619454 0.163122 0.640454 0.178872 0.674575 0.287356 0.695571 0.318856 0.692946 0.451839 0.710008 0.525328 0.736254 0.640811 0.759875 0.665311 0.749375 0.672311 0.729692 0.709056 0.603708 0.702056 0.580083 0.542828 0.551212 0.506083 0.555150 0.373100 0.532842 0.341600 0.513158 0.275111 0.506596 diff --git a/datasets/检测仪/train/labels/订单1805812_51_7100601.txt b/datasets/检测仪/train/labels/订单1805812_51_7100601.txt new file mode 100644 index 0000000..8c01da3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805812_51_7100601.txt @@ -0,0 +1 @@ +5 0.408216 0.439619 0.387214 0.447500 0.378464 0.547236 0.388958 0.570859 0.390716 0.661406 0.378464 0.686338 0.376719 0.736211 0.394219 0.753271 0.413464 0.755898 0.427461 0.749336 0.521953 0.750645 0.539440 0.758525 0.565690 0.748018 0.579688 0.695527 0.558698 0.667969 0.565690 0.574795 0.569193 0.553799 0.577943 0.459307 0.555195 0.443564 0.534193 0.447500 0.418711 0.440937 diff --git a/datasets/检测仪/train/labels/订单1805813_51_7100697.txt b/datasets/检测仪/train/labels/订单1805813_51_7100697.txt new file mode 100644 index 0000000..c8bbdd2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805813_51_7100697.txt @@ -0,0 +1 @@ +5 0.245453 0.484230 0.224467 0.503910 0.254213 0.620710 0.283960 0.643020 0.292707 0.736190 0.289200 0.784750 0.308453 0.837240 0.327693 0.858240 0.359200 0.859550 0.371440 0.846430 0.479933 0.822810 0.513173 0.831990 0.534173 0.809680 0.528920 0.741440 0.507920 0.721760 0.471187 0.606270 0.476427 0.586590 0.450187 0.475040 0.422187 0.457980 0.401187 0.463230 0.289200 0.488160 0.250707 0.484230 diff --git a/datasets/检测仪/train/labels/订单1805814_51_7100643.txt b/datasets/检测仪/train/labels/订单1805814_51_7100643.txt new file mode 100644 index 0000000..71cffed --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805814_51_7100643.txt @@ -0,0 +1 @@ +5 0.380109 0.341250 0.346858 0.364867 0.348607 0.527602 0.367855 0.572223 0.371366 0.717889 0.355615 0.763822 0.362609 0.846496 0.387104 0.879303 0.423852 0.883248 0.443101 0.864867 0.586585 0.859621 0.598825 0.875369 0.630328 0.875369 0.663579 0.850441 0.674071 0.766445 0.654822 0.729703 0.647828 0.573535 0.670574 0.501352 0.667077 0.374057 0.639071 0.345184 0.605833 0.346496 0.600587 0.351752 0.423852 0.347807 0.390601 0.345184 diff --git a/datasets/检测仪/train/labels/订单1805815_51_7100717.txt b/datasets/检测仪/train/labels/订单1805815_51_7100717.txt new file mode 100644 index 0000000..428df78 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805815_51_7100717.txt @@ -0,0 +1 @@ +5 0.110603 0.324163 0.075615 0.345163 0.084359 0.490827 0.103603 0.532827 0.100103 0.637808 0.098359 0.696865 0.101859 0.766423 0.131603 0.787413 0.156103 0.788731 0.166603 0.776913 0.301333 0.765106 0.311833 0.775606 0.332833 0.776913 0.352077 0.757231 0.367821 0.683740 0.350321 0.658808 0.346833 0.536760 0.360821 0.511827 0.371321 0.345163 0.334577 0.325471 0.308333 0.330721 0.143846 0.329413 0.117603 0.325471 diff --git a/datasets/检测仪/train/labels/订单1805821_51_7100715.txt b/datasets/检测仪/train/labels/订单1805821_51_7100715.txt new file mode 100644 index 0000000..69b44f9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805821_51_7100715.txt @@ -0,0 +1 @@ +5 0.438505 0.269053 0.421770 0.288740 0.407010 0.421287 0.414880 0.446220 0.404055 0.535460 0.388305 0.590580 0.382400 0.644380 0.391260 0.664067 0.407010 0.675880 0.415865 0.664067 0.478860 0.670627 0.486730 0.686380 0.497560 0.687687 0.523150 0.670627 0.535945 0.607640 0.523150 0.580080 0.531025 0.459347 0.556615 0.380607 0.561535 0.299240 0.550710 0.276927 0.534960 0.278240 0.440470 0.274307 0.532990 0.275613 0.446380 0.275613 diff --git a/datasets/检测仪/train/labels/订单1805823_51_7100659.txt b/datasets/检测仪/train/labels/订单1805823_51_7100659.txt new file mode 100644 index 0000000..48f6daa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805823_51_7100659.txt @@ -0,0 +1 @@ +5 0.472956 0.328076 0.430964 0.354326 0.411706 0.548545 0.436211 0.602354 0.416966 0.762461 0.404714 0.812324 0.408216 0.898945 0.429206 0.929121 0.474701 0.942246 0.485208 0.935684 0.649687 0.943564 0.686432 0.948809 0.724922 0.918623 0.758164 0.829385 0.749414 0.793955 0.758164 0.624658 0.780911 0.569541 0.812409 0.384502 0.773919 0.347764 0.740664 0.349072 0.731927 0.353008 0.520195 0.343818 0.481706 0.330703 diff --git a/datasets/检测仪/train/labels/订单1805830_51_7100767.txt b/datasets/检测仪/train/labels/订单1805830_51_7100767.txt new file mode 100644 index 0000000..f99d9be --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805830_51_7100767.txt @@ -0,0 +1 @@ +5 0.444850 0.377992 0.423852 0.395051 0.408101 0.526291 0.425601 0.556475 0.420355 0.652275 0.399358 0.708699 0.401107 0.766445 0.422104 0.794006 0.443101 0.795318 0.460601 0.780881 0.581339 0.779570 0.591831 0.790072 0.630328 0.800564 0.644331 0.783504 0.658320 0.713955 0.642582 0.685082 0.640820 0.551219 0.656571 0.518412 0.668825 0.404242 0.642582 0.381936 0.619822 0.385871 0.474590 0.384559 0.444850 0.381936 diff --git a/datasets/检测仪/train/labels/订单1805831_51_7100849.txt b/datasets/检测仪/train/labels/订单1805831_51_7100849.txt new file mode 100644 index 0000000..e254169 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805831_51_7100849.txt @@ -0,0 +1 @@ +5 0.339267 0.349107 0.301207 0.377980 0.302520 0.408160 0.313020 0.421287 0.315640 0.607640 0.306453 0.631260 0.306453 0.653567 0.339267 0.686380 0.360260 0.686380 0.364200 0.681127 0.597793 0.671940 0.627980 0.653567 0.818267 0.644380 0.883887 0.658820 0.958687 0.641760 1.000000 0.618520 1.000000 0.612000 0.996747 0.582700 0.983620 0.573520 0.983620 0.434407 0.990187 0.422600 0.979687 0.391100 0.954753 0.370107 0.855013 0.355667 0.820893 0.368793 0.638480 0.379293 0.583360 0.363540 0.339267 0.349107 diff --git a/datasets/检测仪/train/labels/订单1805833_51_7100813.txt b/datasets/检测仪/train/labels/订单1805833_51_7100813.txt new file mode 100644 index 0000000..bd43072 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805833_51_7100813.txt @@ -0,0 +1,2 @@ +5 0.461283 0.408132 0.432409 0.429128 0.424538 0.566921 0.435033 0.615482 0.424538 0.746712 0.410098 0.867448 0.466530 0.862201 0.547897 0.856947 0.584642 0.864824 0.605638 0.851699 0.621387 0.788711 0.610885 0.762461 0.610885 0.629915 0.627949 0.585293 0.637135 0.452747 0.618763 0.426504 0.600391 0.423880 0.595137 0.429128 0.501960 0.421257 0.467839 0.410755 +5 0.239102 0.302708 0.220729 0.314082 0.210228 0.384948 0.216354 0.409440 0.204108 0.488184 0.197109 0.508307 diff --git a/datasets/检测仪/train/labels/订单1805834_51_7100798.txt b/datasets/检测仪/train/labels/订单1805834_51_7100798.txt new file mode 100644 index 0000000..8549deb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805834_51_7100798.txt @@ -0,0 +1 @@ +5 0.474701 0.456680 0.446706 0.475059 0.423958 0.586602 0.437956 0.616787 0.418711 0.709961 0.420456 0.725713 0.401211 0.762461 0.392461 0.821514 0.399466 0.837266 0.437956 0.851699 0.451953 0.843818 0.563945 0.853008 0.614687 0.876631 0.635677 0.851699 0.653177 0.783457 0.640938 0.755898 0.642682 0.635166 0.684674 0.489492 0.661927 0.468496 0.632188 0.467178 0.478203 0.456680 diff --git a/datasets/检测仪/train/labels/订单1805839_51_7100902.txt b/datasets/检测仪/train/labels/订单1805839_51_7100902.txt new file mode 100644 index 0000000..4a7489f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805839_51_7100902.txt @@ -0,0 +1 @@ +5 0.261224 0.408125 0.215742 0.442246 0.243737 0.640410 0.268229 0.690283 0.301471 0.956680 0.308477 0.999990 0.309076 1.000000 0.405846 1.000000 0.546445 0.984238 0.520195 0.984238 0.616432 0.973740 0.639180 0.880566 0.609440 0.833320 0.597187 0.670596 0.609440 0.633848 0.586693 0.412061 0.555195 0.391064 0.525443 0.397627 0.511445 0.408125 0.315469 0.421250 0.282227 0.409443 diff --git a/datasets/检测仪/train/labels/订单1805841_51_7100892.txt b/datasets/检测仪/train/labels/订单1805841_51_7100892.txt new file mode 100644 index 0000000..be9eed2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805841_51_7100892.txt @@ -0,0 +1 @@ +5 0.310217 0.409431 0.273467 0.429119 0.250725 0.610219 0.269967 0.666650 0.241975 0.850375 0.231475 0.922556 0.229725 0.976363 0.322467 0.996044 0.499192 0.996044 0.565683 0.999981 0.588433 0.961925 0.605925 0.896306 0.586683 0.847750 0.584933 0.666650 0.604175 0.604969 0.607675 0.440931 0.579683 0.412056 0.539433 0.422556 0.360958 0.412056 0.324217 0.410744 diff --git a/datasets/检测仪/train/labels/订单1805842_51_7100929.txt b/datasets/检测仪/train/labels/订单1805842_51_7100929.txt new file mode 100644 index 0000000..b882a0c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805842_51_7100929.txt @@ -0,0 +1 @@ +5 0.548716 0.263776 0.524111 0.292643 0.528047 0.507871 0.535923 0.539362 0.535923 0.700781 0.528047 0.766400 0.532969 0.879258 0.556592 0.922565 0.591040 0.925189 0.598911 0.912070 0.707183 0.918626 0.718989 0.929128 0.750488 0.930443 0.774111 0.891068 0.779033 0.790020 0.765249 0.712591 0.752456 0.528867 0.760332 0.473750 0.749502 0.287396 0.728833 0.261146 0.710132 0.266400 0.583164 0.271647 0.558560 0.269023 diff --git a/datasets/检测仪/train/labels/订单1805843_51_7100959.txt b/datasets/检测仪/train/labels/订单1805843_51_7100959.txt new file mode 100644 index 0000000..5a5bd34 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805843_51_7100959.txt @@ -0,0 +1 @@ +5 0.389934 0.551177 0.363526 0.566924 0.372336 0.664038 0.410469 0.695532 0.416343 0.788711 0.410469 0.812329 0.419279 0.855640 0.469159 0.860889 0.610000 0.866138 0.654007 0.871387 0.692151 0.854326 0.724421 0.788711 0.695087 0.767710 0.683352 0.686348 0.692151 0.657476 0.695087 0.556426 0.639334 0.544614 0.604127 0.555112 0.457424 0.556426 0.401670 0.552490 diff --git a/datasets/检测仪/train/labels/订单1805844_51_7100930.txt b/datasets/检测仪/train/labels/订单1805844_51_7100930.txt new file mode 100644 index 0000000..4e0859b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805844_51_7100930.txt @@ -0,0 +1 @@ +5 0.318833 0.370096 0.285590 0.391096 0.262833 0.574817 0.280333 0.618125 0.273333 0.769048 0.254090 0.818913 0.252333 0.900279 0.278590 0.930462 0.315333 0.934394 0.329333 0.925212 0.472808 0.935712 0.492064 0.954087 0.521808 0.958019 0.553295 0.938337 0.583051 0.856971 0.574295 0.818913 0.577795 0.640433 0.607538 0.603692 0.635538 0.402904 0.602295 0.374029 0.570795 0.374029 0.555051 0.376654 0.373077 0.380596 0.327577 0.368779 diff --git a/datasets/检测仪/train/labels/订单1805847_51_7100915.txt b/datasets/检测仪/train/labels/订单1805847_51_7100915.txt new file mode 100644 index 0000000..e07598b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805847_51_7100915.txt @@ -0,0 +1 @@ +5 0.220868 0.387179 0.196377 0.410799 0.224375 0.545964 0.245370 0.566962 0.268113 0.649644 0.261111 0.689010 0.268113 0.715260 0.285613 0.727066 0.304861 0.723134 0.409850 0.708698 0.430845 0.707387 0.453588 0.648333 0.439595 0.629957 0.430845 0.545964 0.437847 0.515781 0.437847 0.405547 0.409850 0.377986 0.385347 0.384549 0.385347 0.392422 0.269861 0.402925 0.220868 0.387179 diff --git a/datasets/检测仪/train/labels/订单1805848_51_7101037.txt b/datasets/检测仪/train/labels/订单1805848_51_7101037.txt new file mode 100644 index 0000000..fd1bedd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805848_51_7101037.txt @@ -0,0 +1 @@ +5 0.198242 0.383193 0.147500 0.392383 0.150990 0.419941 0.107253 0.486865 0.088008 0.519678 0.060000 0.549863 0.075755 0.572168 0.171992 0.603662 0.231484 0.599727 0.436211 0.645664 0.544701 0.688965 0.793164 0.769023 0.854401 0.745400 0.850911 0.698154 0.912148 0.519678 0.877148 0.478994 0.595443 0.434375 0.551693 0.439619 0.322474 0.393691 0.199987 0.380566 diff --git a/datasets/检测仪/train/labels/订单1805851_51_7100961.txt b/datasets/检测仪/train/labels/订单1805851_51_7100961.txt new file mode 100644 index 0000000..d969520 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805851_51_7100961.txt @@ -0,0 +1 @@ +5 0.378440 0.419920 0.348693 0.446170 0.357440 0.578710 0.376693 0.611520 0.371440 0.732260 0.355693 0.772940 0.362693 0.843810 0.388947 0.876610 0.430933 0.871360 0.436187 0.862180 0.553427 0.856930 0.602413 0.871360 0.635653 0.847740 0.649653 0.763750 0.633907 0.737510 0.618160 0.604960 0.628667 0.565590 0.625160 0.422550 0.590160 0.406800 0.565667 0.413360 0.415187 0.419920 0.385440 0.417300 diff --git a/datasets/检测仪/train/labels/订单1805852_51_7101016.txt b/datasets/检测仪/train/labels/订单1805852_51_7101016.txt new file mode 100644 index 0000000..3cc8384 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805852_51_7101016.txt @@ -0,0 +1 @@ +5 0.296224 0.402881 0.266484 0.413379 0.282227 0.548545 0.297982 0.580039 0.304974 0.694219 0.299727 0.733584 0.308477 0.800518 0.334727 0.824141 0.371471 0.824141 0.394219 0.812324 0.497448 0.800518 0.534193 0.814951 0.563945 0.788701 0.574440 0.721777 0.553438 0.678467 0.535951 0.574795 0.537695 0.524922 0.528945 0.412061 0.497448 0.388437 0.469453 0.396318 0.308477 0.402881 diff --git a/datasets/检测仪/train/labels/订单1805854_51_7101019.txt b/datasets/检测仪/train/labels/订单1805854_51_7101019.txt new file mode 100644 index 0000000..816d850 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805854_51_7101019.txt @@ -0,0 +1 @@ +5 0.306609 0.376675 0.266366 0.402925 0.283866 0.615521 0.301366 0.633898 0.317106 0.780877 0.306609 0.837309 0.318854 0.926545 0.357350 0.955417 0.381852 0.956727 0.404595 0.942292 0.551574 0.926545 0.569074 0.937040 0.598819 0.938359 0.621574 0.919983 0.646065 0.835998 0.632072 0.794002 0.607569 0.618142 0.621574 0.545964 0.614572 0.389800 0.588322 0.367491 0.555081 0.368802 0.544583 0.375365 0.360856 0.387179 0.318854 0.374054 diff --git a/datasets/检测仪/train/labels/订单1805860_51_7101109.txt b/datasets/检测仪/train/labels/订单1805860_51_7101109.txt new file mode 100644 index 0000000..0559442 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805860_51_7101109.txt @@ -0,0 +1 @@ +5 0.583190 0.454062 0.542943 0.467178 0.488698 0.616787 0.486953 0.657471 0.446706 0.774268 0.408216 0.822822 0.388958 0.887129 0.401211 0.908125 0.436211 0.926504 0.453711 0.917314 0.558698 0.946182 0.600690 0.977686 0.672435 0.978994 0.689922 0.951436 0.707422 0.812324 0.731927 0.736211 0.766914 0.699463 0.836914 0.540674 0.824661 0.505244 0.794909 0.503926 0.784414 0.506553 0.625182 0.476367 0.597187 0.459307 diff --git a/datasets/检测仪/train/labels/订单1805861_51_7101063.txt b/datasets/检测仪/train/labels/订单1805861_51_7101063.txt new file mode 100644 index 0000000..3b76a34 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805861_51_7101063.txt @@ -0,0 +1 @@ +5 0.233229 0.377939 0.199987 0.396318 0.164987 0.559043 0.180742 0.603662 0.154492 0.770332 0.126497 0.839883 0.124753 0.934375 0.152747 0.975059 0.224479 0.982930 0.243737 0.973740 0.418711 0.965869 0.453711 0.982930 0.493945 0.971123 0.518451 0.946182 0.537695 0.824141 0.528945 0.788701 0.507943 0.616787 0.528945 0.574795 0.528945 0.401562 0.500951 0.380566 0.467708 0.387129 0.271732 0.384502 0.243737 0.379258 diff --git a/datasets/检测仪/train/labels/订单1805862_51_7101209.txt b/datasets/检测仪/train/labels/订单1805862_51_7101209.txt new file mode 100644 index 0000000..5862c64 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805862_51_7101209.txt @@ -0,0 +1 @@ +5 0.747640 0.408110 0.710907 0.415980 0.639160 0.526220 0.632160 0.549840 0.579667 0.643020 0.544667 0.669260 0.521920 0.716510 0.516680 0.742760 0.542920 0.754570 0.553427 0.746690 0.644413 0.780810 0.654907 0.804440 0.682907 0.811000 0.712653 0.807060 0.758147 0.757190 0.754640 0.730940 0.826387 0.625960 0.866627 0.599710 0.938373 0.496040 0.926120 0.471100 0.899880 0.468480 0.758147 0.408110 diff --git a/datasets/检测仪/train/labels/订单1805864_51_7101126.txt b/datasets/检测仪/train/labels/订单1805864_51_7101126.txt new file mode 100644 index 0000000..61a69a3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805864_51_7101126.txt @@ -0,0 +1 @@ +5 0.348600 0.440979 0.324106 0.455412 0.336350 0.561712 0.352100 0.581396 0.369600 0.668013 0.353850 0.699508 0.362600 0.763813 0.383594 0.779563 0.406344 0.782183 0.422089 0.769062 0.551572 0.771687 0.572572 0.748062 0.570822 0.682446 0.560322 0.664075 0.544578 0.576150 0.544578 0.539404 0.518328 0.450163 0.509578 0.437042 0.359100 0.442292 diff --git a/datasets/检测仪/train/labels/订单1805865_51_7101100.txt b/datasets/检测仪/train/labels/订单1805865_51_7101100.txt new file mode 100644 index 0000000..50b1c4b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805865_51_7101100.txt @@ -0,0 +1 @@ +5 0.434453 0.301826 0.402969 0.321514 0.408216 0.503926 0.434453 0.552480 0.427461 0.746709 0.437956 0.805762 0.462461 0.833320 0.513203 0.828076 0.647930 0.833320 0.689922 0.847764 0.719674 0.821514 0.738919 0.755898 0.726667 0.723086 0.723177 0.562979 0.740664 0.510488 0.761667 0.328076 0.730169 0.297891 0.700430 0.296582 0.684674 0.301826 0.486953 0.304453 0.455456 0.296582 diff --git a/datasets/检测仪/train/labels/订单1805866_51_7101143.txt b/datasets/检测仪/train/labels/订单1805866_51_7101143.txt new file mode 100644 index 0000000..fba9356 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805866_51_7101143.txt @@ -0,0 +1 @@ +5 0.412721 0.391068 0.379915 0.417318 0.372044 0.581361 0.382539 0.650911 0.369414 0.783457 0.360228 0.846452 0.364167 0.916003 0.377292 0.939629 0.407474 0.951439 0.420599 0.935690 0.517708 0.943561 0.521647 0.946185 0.533457 0.960625 0.554453 0.961934 0.579388 0.947500 0.605638 0.871387 0.593828 0.835951 0.610885 0.664036 0.629258 0.624668 0.650254 0.450124 0.639759 0.414694 0.609577 0.409440 0.589889 0.414694 0.459967 0.408132 0.419284 0.392383 diff --git a/datasets/检测仪/train/labels/订单1805867_51_7101219.txt b/datasets/检测仪/train/labels/订单1805867_51_7101219.txt new file mode 100644 index 0000000..9ffb023 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805867_51_7101219.txt @@ -0,0 +1 @@ +5 0.474714 0.392385 0.446715 0.418633 0.437969 0.583987 0.460713 0.629919 0.451966 0.762466 0.429219 0.795273 0.436217 0.874014 0.446715 0.901572 0.481712 0.908135 0.495710 0.897634 0.635693 0.906821 0.672438 0.925195 0.703936 0.912070 0.731930 0.839893 0.723180 0.796584 0.730179 0.644355 0.749427 0.604985 0.770426 0.427820 0.740680 0.402886 0.709183 0.404197 0.702184 0.413384 0.525456 0.410759 0.490462 0.396323 diff --git a/datasets/检测仪/train/labels/订单1805869_51_7101160.txt b/datasets/检测仪/train/labels/订单1805869_51_7101160.txt new file mode 100644 index 0000000..d9049d2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805869_51_7101160.txt @@ -0,0 +1 @@ +5 0.408064 0.309731 0.388821 0.328096 0.399321 0.476394 0.423821 0.509202 0.430821 0.627308 0.427321 0.667990 0.436064 0.724423 0.460564 0.748048 0.493808 0.750673 0.502551 0.737548 0.614538 0.734923 0.651295 0.746731 0.675782 0.723115 0.691538 0.656183 0.667038 0.628625 0.651295 0.505269 0.670538 0.471144 0.667038 0.318913 0.637295 0.296606 0.611038 0.299231 0.437821 0.308413 0.404564 0.308413 diff --git a/datasets/检测仪/train/labels/订单1805871_51_7101186.txt b/datasets/检测仪/train/labels/订单1805871_51_7101186.txt new file mode 100644 index 0000000..8e99674 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805871_51_7101186.txt @@ -0,0 +1 @@ +5 0.567328 0.468545 0.530589 0.482974 0.502586 0.631272 0.514842 0.664084 0.492098 0.779569 0.476351 0.812371 0.469339 0.876681 0.479842 0.906864 0.507845 0.919989 0.527083 0.912112 0.644325 0.929170 0.660072 0.943610 0.681063 0.947543 0.709066 0.933114 0.730057 0.855679 0.726566 0.826810 0.742313 0.696886 0.766810 0.660140 0.787802 0.521034 0.784310 0.496099 0.754555 0.494795 0.723060 0.494795 0.612830 0.481670 0.572586 0.471164 diff --git a/datasets/检测仪/train/labels/订单1805873_51_7101260.txt b/datasets/检测仪/train/labels/订单1805873_51_7101260.txt new file mode 100644 index 0000000..2a0b531 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805873_51_7101260.txt @@ -0,0 +1 @@ +5 0.449216 0.265127 0.421216 0.262500 0.368719 0.274314 0.363477 0.311059 0.438706 0.489529 0.461464 0.521029 0.498209 0.639137 0.492954 0.682441 0.512196 0.728382 0.547203 0.769059 0.582196 0.774314 0.610196 0.758559 0.737922 0.727069 0.778170 0.725755 0.788667 0.704755 0.797412 0.639137 0.772915 0.610265 0.746680 0.485598 0.751922 0.447539 0.725673 0.238873 0.685425 0.217882 0.638183 0.221814 0.625935 0.234941 0.459712 0.269059 diff --git a/datasets/检测仪/train/labels/订单1805879_51_7101280.txt b/datasets/检测仪/train/labels/订单1805879_51_7101280.txt new file mode 100644 index 0000000..48eb6f0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805879_51_7101280.txt @@ -0,0 +1 @@ +5 0.280482 0.135166 0.247227 0.164033 0.266484 0.371387 0.299727 0.412061 0.315469 0.577422 0.308477 0.633848 0.327721 0.715215 0.359219 0.748018 0.401211 0.748018 0.416966 0.730957 0.584935 0.721777 0.591940 0.732275 0.626940 0.734902 0.658424 0.707344 0.677682 0.622041 0.653177 0.582666 0.621680 0.400254 0.646185 0.355635 0.633932 0.153535 0.586693 0.122041 0.556940 0.122041 0.548190 0.131221 0.336471 0.141719 0.287474 0.137783 diff --git a/datasets/检测仪/train/labels/订单1805883_51_7101311.txt b/datasets/检测仪/train/labels/订单1805883_51_7101311.txt new file mode 100644 index 0000000..bed0158 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805883_51_7101311.txt @@ -0,0 +1 @@ +5 0.320693 0.317560 0.292707 0.334620 0.292707 0.448790 0.306707 0.472410 0.311947 0.561650 0.292707 0.594460 0.301453 0.646950 0.310200 0.658770 0.338200 0.665330 0.346947 0.656140 0.441440 0.657450 0.472933 0.665330 0.486933 0.649580 0.504427 0.599710 0.488680 0.574780 0.490427 0.477660 0.506173 0.447480 0.506173 0.342490 0.486933 0.325430 0.464187 0.328060 0.350440 0.322810 0.324200 0.317560 diff --git a/datasets/检测仪/train/labels/订单1805886_51_7101418.txt b/datasets/检测仪/train/labels/订单1805886_51_7101418.txt new file mode 100644 index 0000000..4741e2e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805886_51_7101418.txt @@ -0,0 +1 @@ +5 0.395964 0.438311 0.357474 0.451436 0.303229 0.614160 0.301471 0.660098 0.236732 0.825449 0.215742 0.856943 0.198242 0.940937 0.201732 0.978994 0.231484 0.988184 0.247227 0.978994 0.461966 1.000000 0.490143 1.000000 0.527201 0.933066 0.528945 0.877939 0.570937 0.717842 0.607682 0.667969 0.660182 0.506553 0.633932 0.476367 0.597187 0.481621 0.439714 0.448809 0.413464 0.442246 diff --git a/datasets/检测仪/train/labels/订单1805887_51_7101386.txt b/datasets/检测仪/train/labels/订单1805887_51_7101386.txt new file mode 100644 index 0000000..c5d0ee0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805887_51_7101386.txt @@ -0,0 +1 @@ +5 0.465951 0.435684 0.418711 0.457998 0.394219 0.640410 0.402969 0.660098 0.376719 0.796582 0.362721 0.843818 0.364466 0.935684 0.404714 0.934375 0.415208 0.922559 0.535951 0.929121 0.586693 0.948809 0.616432 0.934375 0.644427 0.862197 0.633932 0.834639 0.670677 0.700781 0.696927 0.662725 0.749414 0.489492 0.724922 0.463242 0.691680 0.461934 0.677682 0.469805 0.537695 0.452744 0.476458 0.439619 diff --git a/datasets/检测仪/train/labels/订单1805891_51_7101877.txt b/datasets/检测仪/train/labels/订单1805891_51_7101877.txt new file mode 100644 index 0000000..e4fb8e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805891_51_7101877.txt @@ -0,0 +1 @@ +5 0.207033 0.572165 0.177867 0.590540 0.061211 0.664030 0.008722 0.678465 0.020389 0.707335 0.277022 0.783450 0.384922 0.791325 0.612389 0.847755 0.696967 0.866130 0.790289 0.880565 0.874856 0.874000 0.898189 0.847755 0.889444 0.832010 0.939022 0.761140 0.956522 0.737520 0.912778 0.715210 0.822367 0.683715 0.772789 0.679775 0.556989 0.635155 0.521989 0.623345 0.236189 0.559040 0.201200 0.564290 diff --git a/datasets/检测仪/train/labels/订单1805893_51_7101437.txt b/datasets/检测仪/train/labels/订单1805893_51_7101437.txt new file mode 100644 index 0000000..713a7be --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805893_51_7101437.txt @@ -0,0 +1 @@ +5 0.558698 0.368760 0.520195 0.381885 0.509701 0.509180 0.521953 0.543301 0.511445 0.652227 0.497448 0.691592 0.499206 0.750645 0.523698 0.779521 0.553438 0.774268 0.562187 0.765078 0.663685 0.771641 0.696927 0.787393 0.721419 0.778203 0.744167 0.708652 0.733672 0.683721 0.744167 0.553799 0.754674 0.541982 0.772161 0.409443 0.752917 0.384502 0.731927 0.383193 0.565690 0.372695 diff --git a/datasets/检测仪/train/labels/订单1805894_51_7101473.txt b/datasets/检测仪/train/labels/订单1805894_51_7101473.txt new file mode 100644 index 0000000..7170bb2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805894_51_7101473.txt @@ -0,0 +1 @@ +5 0.331200 0.325430 0.296200 0.349050 0.276960 0.534090 0.292707 0.590520 0.285707 0.772940 0.262960 0.855620 0.264707 0.984230 0.371440 0.988160 0.577920 0.971100 0.681160 0.999970 0.709147 0.980290 0.716147 0.849050 0.693400 0.791310 0.660160 0.583960 0.679400 0.531470 0.633907 0.324120 0.609413 0.326740 0.338200 0.331990 diff --git a/datasets/检测仪/train/labels/订单1805895_51_7101462.txt b/datasets/检测仪/train/labels/订单1805895_51_7101462.txt new file mode 100644 index 0000000..82326c8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805895_51_7101462.txt @@ -0,0 +1 @@ +5 0.343477 0.372695 0.310221 0.398945 0.317227 0.532803 0.334727 0.570859 0.339974 0.687656 0.325977 0.732275 0.331224 0.782139 0.348724 0.804453 0.373216 0.808389 0.380221 0.800518 0.499206 0.800518 0.532448 0.809697 0.556940 0.792646 0.581445 0.728340 0.563945 0.702090 0.556940 0.580039 0.572695 0.543301 0.581445 0.401562 0.555195 0.374004 0.528945 0.376631 0.527201 0.379258 0.376719 0.385820 0.348724 0.376631 diff --git a/datasets/检测仪/train/labels/订单1805896_51_7101467.txt b/datasets/检测仪/train/labels/订单1805896_51_7101467.txt new file mode 100644 index 0000000..17b11ba --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805896_51_7101467.txt @@ -0,0 +1 @@ +5 0.500933 0.482910 0.446680 0.573460 0.439680 0.604960 0.399440 0.665330 0.362693 0.712570 0.373187 0.732260 0.397693 0.725700 0.465933 0.733570 0.488680 0.740130 0.527173 0.702070 0.525427 0.683700 0.567413 0.619400 0.591920 0.603650 0.658413 0.520970 0.639160 0.498660 0.504427 0.475040 diff --git a/datasets/检测仪/train/labels/订单1805898_51_7101436.txt b/datasets/检测仪/train/labels/订单1805898_51_7101436.txt new file mode 100644 index 0000000..8625dca --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805898_51_7101436.txt @@ -0,0 +1 @@ +5 0.777408 0.637781 0.773908 0.614156 0.765158 0.604969 0.749408 0.503919 0.751158 0.447488 0.724917 0.436994 0.693417 0.436994 0.518442 0.451425 0.465942 0.469800 0.327708 0.484237 0.264717 0.477675 0.171983 0.490800 0.156233 0.513106 0.170233 0.528856 0.175483 0.599719 0.163233 0.629906 0.163233 0.648275 0.178983 0.658775 0.282217 0.666650 0.329458 0.653525 0.479942 0.641719 0.516692 0.660088 0.745908 0.661400 0.773908 0.644344 diff --git a/datasets/检测仪/train/labels/订单1805902_51_7101479.txt b/datasets/检测仪/train/labels/订单1805902_51_7101479.txt new file mode 100644 index 0000000..1bf2823 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805902_51_7101479.txt @@ -0,0 +1 @@ +5 0.506207 0.438317 0.471220 0.459321 0.443215 0.622047 0.453714 0.657480 0.429226 0.807087 0.406470 0.854331 0.401220 0.917323 0.429226 0.950128 0.460722 0.960630 0.474711 0.947510 0.607703 0.958002 0.628701 0.969813 0.660197 0.972441 0.684685 0.955384 0.709016 0.881890 0.700433 0.843829 0.724764 0.691604 0.747677 0.639104 0.775682 0.493435 0.744186 0.460630 0.714265 0.463258 0.555210 0.458002 0.513215 0.439636 diff --git a/datasets/检测仪/train/labels/订单1805903_51_7101581.txt b/datasets/检测仪/train/labels/订单1805903_51_7101581.txt new file mode 100644 index 0000000..bd137a6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805903_51_7101581.txt @@ -0,0 +1 @@ +5 0.355703 0.472414 0.331193 0.489473 0.329444 0.639081 0.341699 0.662708 0.345196 0.767684 0.334690 0.795245 0.338203 0.851679 0.355703 0.876618 0.380196 0.880551 0.394183 0.868738 0.507925 0.863493 0.535915 0.870049 0.558676 0.843799 0.560425 0.788689 0.549918 0.767684 0.548170 0.662708 0.551667 0.650895 0.569167 0.611520 0.563922 0.505221 0.553415 0.475037 0.525425 0.477659 0.397696 0.482917 0.369690 0.471103 diff --git a/datasets/检测仪/train/labels/订单1805904_51_7101531.txt b/datasets/检测仪/train/labels/订单1805904_51_7101531.txt new file mode 100644 index 0000000..0adff37 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805904_51_7101531.txt @@ -0,0 +1 @@ +5 0.338216 0.297891 0.301471 0.326758 0.303229 0.353008 0.310221 0.511807 0.325977 0.565605 0.329466 0.732275 0.313724 0.767705 0.324219 0.847764 0.350469 0.876631 0.388958 0.876631 0.399466 0.860879 0.556940 0.860879 0.598932 0.877939 0.635677 0.849072 0.654935 0.757207 0.633932 0.729648 0.633932 0.573486 0.651432 0.530176 0.667174 0.330703 0.623437 0.300518 0.598932 0.301826 0.588438 0.308389 0.387214 0.309697 0.374961 0.303145 0.346966 0.296582 diff --git a/datasets/检测仪/train/labels/订单1805909_51_7101514.txt b/datasets/检测仪/train/labels/订单1805909_51_7101514.txt new file mode 100644 index 0000000..01bd0e0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805909_51_7101514.txt @@ -0,0 +1 @@ +5 0.617640 0.316300 0.601890 0.297927 0.456220 0.300553 0.421770 0.322860 0.260355 0.330733 0.220985 0.314987 0.108780 0.329420 0.086140 0.356980 0.087125 0.389787 0.095000 0.406853 0.110750 0.551207 0.100905 0.587953 0.097955 0.628633 0.123545 0.652260 0.227875 0.658820 0.278070 0.633887 0.427675 0.598453 0.477875 0.611573 0.629450 0.603700 0.647165 0.570893 0.641260 0.544647 0.624525 0.321547 diff --git a/datasets/检测仪/train/labels/订单1805910_51_7101614.txt b/datasets/检测仪/train/labels/订单1805910_51_7101614.txt new file mode 100644 index 0000000..b340ed9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805910_51_7101614.txt @@ -0,0 +1 @@ +5 0.313724 0.308389 0.283971 0.330703 0.250729 0.522305 0.269974 0.555107 0.241979 0.715215 0.226237 0.761143 0.224479 0.833320 0.248984 0.862197 0.268229 0.868760 0.290977 0.855635 0.443203 0.862197 0.460703 0.879258 0.495703 0.881885 0.525443 0.849072 0.551693 0.790020 0.551693 0.737520 0.565690 0.591855 0.595443 0.511807 0.632188 0.360879 0.600690 0.337266 0.567448 0.337266 0.556940 0.338574 0.360964 0.321514 0.355716 0.314951 0.324219 0.307080 diff --git a/datasets/检测仪/train/labels/订单1805912_51_7101596.txt b/datasets/检测仪/train/labels/订单1805912_51_7101596.txt new file mode 100644 index 0000000..f68894f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805912_51_7101596.txt @@ -0,0 +1 @@ +5 0.262861 0.595833 0.241861 0.616829 0.268111 0.734942 0.292606 0.762500 0.317106 0.864862 0.313606 0.902921 0.336350 0.960663 0.350350 0.975100 0.371350 0.973788 0.385344 0.961975 0.479833 0.940979 0.520078 0.946229 0.530578 0.922604 0.528828 0.867487 0.509578 0.841242 0.479833 0.729692 0.481583 0.690321 0.455339 0.586646 0.429089 0.569588 0.416844 0.576150 0.273361 0.599771 diff --git a/datasets/检测仪/train/labels/订单1805915_51_7101634.txt b/datasets/检测仪/train/labels/订单1805915_51_7101634.txt new file mode 100644 index 0000000..d68a920 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805915_51_7101634.txt @@ -0,0 +1 @@ +5 0.331224 0.384502 0.306719 0.404189 0.311979 0.555107 0.325977 0.725713 0.313724 0.765078 0.315469 0.828076 0.339974 0.856943 0.364466 0.860879 0.380221 0.847764 0.511445 0.847764 0.541198 0.855635 0.565690 0.845137 0.583190 0.771641 0.570937 0.729648 0.565690 0.602354 0.584935 0.569541 0.588438 0.410752 0.562187 0.387129 0.525443 0.387129 0.373216 0.393691 0.341719 0.384502 diff --git a/datasets/检测仪/train/labels/订单1805918_51_7101608.txt b/datasets/检测仪/train/labels/订单1805918_51_7101608.txt new file mode 100644 index 0000000..fc896a6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805918_51_7101608.txt @@ -0,0 +1 @@ +5 0.287356 0.326804 0.240111 0.353050 0.233117 0.528904 0.252361 0.566963 0.252361 0.721817 0.234867 0.769062 0.236617 0.842554 0.259361 0.868800 0.297856 0.877988 0.306606 0.863550 0.443089 0.866175 0.499083 0.879300 0.518328 0.863550 0.542828 0.776938 0.541078 0.738879 0.539328 0.585333 0.560322 0.552525 0.577822 0.356988 0.553322 0.334679 0.527078 0.335992 0.514828 0.343867 0.322356 0.337304 0.294356 0.326804 diff --git a/datasets/检测仪/train/labels/订单1805920_51_7101670.txt b/datasets/检测仪/train/labels/订单1805920_51_7101670.txt new file mode 100644 index 0000000..85d9071 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805920_51_7101670.txt @@ -0,0 +1 @@ +5 0.761667 0.484238 0.705677 0.493428 0.630430 0.636475 0.630430 0.677158 0.560443 0.787393 0.530690 0.824141 0.500951 0.897627 0.506198 0.927813 0.527201 0.940937 0.544701 0.934375 0.653177 0.967178 0.679427 0.988184 0.715677 1.000000 0.720898 1.000000 0.791419 0.925186 0.787917 0.896318 0.870156 0.763770 0.899896 0.741465 0.992643 0.586602 0.973385 0.559043 0.945391 0.549863 0.791419 0.510488 0.770417 0.490801 diff --git a/datasets/检测仪/train/labels/订单1805924_51_7101695.txt b/datasets/检测仪/train/labels/订单1805924_51_7101695.txt new file mode 100644 index 0000000..32c4ae4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805924_51_7101695.txt @@ -0,0 +1 @@ +5 0.276960 0.266380 0.231467 0.300500 0.275200 0.540660 0.268200 0.696820 0.264707 0.762440 0.289200 0.841180 0.308453 0.850370 0.416933 0.852990 0.507920 0.839870 0.555173 0.847740 0.577920 0.825430 0.605920 0.744070 0.581413 0.708630 0.586667 0.553780 0.604160 0.526220 0.635653 0.305750 0.588413 0.278190 0.555173 0.278190 0.546427 0.286060 0.334693 0.276880 0.317200 0.271630 0.278707 0.265070 diff --git a/datasets/检测仪/train/labels/订单1805927_51_7101742.txt b/datasets/检测仪/train/labels/订单1805927_51_7101742.txt new file mode 100644 index 0000000..29c7bcc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805927_51_7101742.txt @@ -0,0 +1 @@ +5 0.378458 0.374000 0.350458 0.396306 0.367958 0.538044 0.392458 0.585288 0.401200 0.709956 0.388958 0.753263 0.406450 0.832006 0.425700 0.851688 0.451950 0.854313 0.471192 0.841194 0.607675 0.826756 0.618175 0.839881 0.646175 0.841194 0.668917 0.824131 0.681167 0.746700 0.656675 0.716519 0.640925 0.574788 0.647925 0.543294 0.644425 0.380562 0.611175 0.359562 0.581433 0.360875 0.576183 0.368750 0.409950 0.377938 0.388958 0.374000 diff --git a/datasets/检测仪/train/labels/订单1805928_51_7101736.txt b/datasets/检测仪/train/labels/订单1805928_51_7101736.txt new file mode 100644 index 0000000..d470f83 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805928_51_7101736.txt @@ -0,0 +1 @@ +5 0.079258 0.389756 0.042513 0.421250 0.061758 0.590537 0.093255 0.637783 0.100247 0.792646 0.095000 0.863506 0.110755 0.905498 0.130000 0.925186 0.159740 0.926504 0.173737 0.913379 0.327721 0.898945 0.336471 0.909443 0.360964 0.910752 0.394219 0.885820 0.408216 0.797891 0.395964 0.751963 0.387214 0.624658 0.399466 0.585293 0.390716 0.413379 0.350469 0.380566 0.322474 0.384502 0.311979 0.395000 0.133490 0.404189 0.088008 0.391064 diff --git a/datasets/检测仪/train/labels/订单1805929_51_7101755.txt b/datasets/检测仪/train/labels/订单1805929_51_7101755.txt new file mode 100644 index 0000000..efce619 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805929_51_7101755.txt @@ -0,0 +1 @@ +5 0.362721 0.217842 0.353971 0.227021 0.364466 0.320205 0.376719 0.334639 0.383711 0.408125 0.378464 0.426504 0.385469 0.455371 0.392461 0.469805 0.427461 0.471123 0.497448 0.469805 0.527201 0.468496 0.532448 0.454062 0.537695 0.413379 0.527201 0.400254 0.523698 0.320205 0.523698 0.296582 0.514948 0.227021 0.507943 0.208652 0.371471 0.217842 diff --git a/datasets/检测仪/train/labels/订单1805931_51_7101785.txt b/datasets/检测仪/train/labels/订单1805931_51_7101785.txt new file mode 100644 index 0000000..3b9b625 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805931_51_7101785.txt @@ -0,0 +1 @@ +5 0.427450 0.288700 0.387208 0.291325 0.290967 0.381875 0.278717 0.415994 0.199975 0.488175 0.157983 0.506544 0.114242 0.555100 0.121242 0.572163 0.145733 0.586600 0.222725 0.620719 0.233225 0.632531 0.243725 0.645650 0.275217 0.640406 0.327708 0.606281 0.334708 0.583975 0.422200 0.505231 0.450200 0.493425 0.555183 0.402869 0.560433 0.379250 0.535933 0.370063 0.439700 0.311006 0.432700 0.292637 diff --git a/datasets/检测仪/train/labels/订单1805932_51_7101790.txt b/datasets/检测仪/train/labels/订单1805932_51_7101790.txt new file mode 100644 index 0000000..9531bea --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805932_51_7101790.txt @@ -0,0 +1 @@ +5 0.018203 0.350391 0.013281 0.388444 0.019189 0.401569 0.022139 0.501309 0.010332 0.531491 0.005410 0.562988 0.018203 0.587923 0.105801 0.610228 0.140249 0.593171 0.266235 0.598418 0.297729 0.611543 0.438481 0.623353 0.452261 0.602357 0.452261 0.576107 0.456196 0.421257 0.461118 0.398945 0.445371 0.380573 0.432573 0.377949 0.307573 0.367448 0.289858 0.379258 0.154033 0.358262 0.132378 0.346452 0.041826 0.337266 0.024111 0.343828 diff --git a/datasets/检测仪/train/labels/订单1805933_51_7101818.txt b/datasets/检测仪/train/labels/订单1805933_51_7101818.txt new file mode 100644 index 0000000..315973e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805933_51_7101818.txt @@ -0,0 +1 @@ +5 0.415840 0.400254 0.390249 0.421257 0.389268 0.447500 0.394189 0.458001 0.377456 0.619414 0.373521 0.635163 0.368599 0.653535 0.384346 0.687656 0.404033 0.692910 0.541826 0.713906 0.577261 0.700781 0.710132 0.725716 0.743599 0.744089 0.817417 0.748027 0.847930 0.728340 0.847930 0.696842 0.841040 0.682409 0.850879 0.569551 0.849897 0.549863 0.857769 0.547240 0.862690 0.515742 0.844976 0.490807 0.771157 0.461934 0.733755 0.472435 0.601865 0.452747 0.587100 0.440937 0.422729 0.398945 diff --git a/datasets/检测仪/train/labels/订单1805934_51_7101828.txt b/datasets/检测仪/train/labels/订单1805934_51_7101828.txt new file mode 100644 index 0000000..2ecfadb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805934_51_7101828.txt @@ -0,0 +1 @@ +5 0.391464 0.324176 0.356471 0.355676 0.361725 0.511843 0.380967 0.564333 0.391464 0.691627 0.375725 0.759873 0.384471 0.838618 0.410719 0.868794 0.436967 0.871422 0.454458 0.859608 0.604941 0.859608 0.611935 0.872735 0.653935 0.879294 0.673176 0.859608 0.687176 0.766431 0.669686 0.738873 0.669686 0.568275 0.687176 0.518402 0.692431 0.334676 0.645190 0.311059 0.613686 0.318931 0.433464 0.330735 0.393216 0.321549 diff --git a/datasets/检测仪/train/labels/订单1805936_51_7101821.txt b/datasets/检测仪/train/labels/订单1805936_51_7101821.txt new file mode 100644 index 0000000..413545e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805936_51_7101821.txt @@ -0,0 +1 @@ +5 0.418711 0.300518 0.394219 0.317578 0.397708 0.440937 0.409961 0.463242 0.401211 0.539365 0.399466 0.572168 0.394219 0.619414 0.413464 0.645664 0.436211 0.641719 0.527201 0.633848 0.574440 0.636475 0.595443 0.577422 0.581445 0.552480 0.581445 0.457998 0.598932 0.437002 0.607682 0.318887 0.590195 0.300518 0.570937 0.305762 0.432708 0.305762 diff --git a/datasets/检测仪/train/labels/订单1805937_51_7101863.txt b/datasets/检测仪/train/labels/订单1805937_51_7101863.txt new file mode 100644 index 0000000..ab9d84d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805937_51_7101863.txt @@ -0,0 +1 @@ +5 0.469427 0.322810 0.429187 0.347740 0.467680 0.507850 0.499173 0.639080 0.499173 0.688950 0.516680 0.751940 0.541173 0.772940 0.563920 0.767690 0.579667 0.755880 0.702147 0.745380 0.737147 0.754570 0.754640 0.738820 0.759893 0.667950 0.744147 0.641710 0.721400 0.517030 0.731893 0.472410 0.721400 0.325430 0.686400 0.304440 0.663653 0.305750 0.660160 0.314930 0.499173 0.325430 0.464187 0.324120 diff --git a/datasets/检测仪/train/labels/订单1805940_51_7101888.txt b/datasets/检测仪/train/labels/订单1805940_51_7101888.txt new file mode 100644 index 0000000..24be228 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805940_51_7101888.txt @@ -0,0 +1 @@ +5 0.331077 0.393712 0.294333 0.383221 0.257590 0.400279 0.248833 0.435712 0.252333 0.482952 0.262833 0.618125 0.285590 0.645683 0.289090 0.755923 0.296090 0.778231 0.278590 0.818913 0.297833 0.889779 0.313577 0.906837 0.343333 0.913404 0.350321 0.902904 0.499064 0.898962 0.535808 0.914712 0.555051 0.901587 0.581295 0.834663 0.565551 0.797913 0.576051 0.650933 0.597051 0.601067 0.628538 0.417337 0.586551 0.384529 0.556795 0.384529 0.544551 0.395029 0.334577 0.397654 diff --git a/datasets/检测仪/train/labels/订单1805941_51_7101899.txt b/datasets/检测仪/train/labels/订单1805941_51_7101899.txt new file mode 100644 index 0000000..7d2a246 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805941_51_7101899.txt @@ -0,0 +1 @@ +5 0.173622 0.358300 0.147378 0.375362 0.138628 0.475100 0.145628 0.511846 0.135128 0.607646 0.136878 0.656200 0.156122 0.673262 0.185872 0.674575 0.192872 0.666700 0.285606 0.662763 0.315356 0.669325 0.329350 0.654887 0.339850 0.595833 0.332850 0.581396 0.332850 0.507908 0.343350 0.476413 0.346850 0.398983 0.329350 0.381921 0.177122 0.358300 diff --git a/datasets/检测仪/train/labels/订单1805942_51_7101907.txt b/datasets/检测仪/train/labels/订单1805942_51_7101907.txt new file mode 100644 index 0000000..83d092f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805942_51_7101907.txt @@ -0,0 +1 @@ +5 0.383693 0.362180 0.357440 0.388420 0.355693 0.551150 0.376693 0.636460 0.380187 0.724380 0.383693 0.792620 0.376693 0.852990 0.395933 0.906800 0.411693 0.930420 0.612907 0.942230 0.656653 0.943540 0.693400 0.919920 0.705653 0.846430 0.693400 0.801810 0.691653 0.643020 0.723147 0.562970 0.738893 0.393670 0.703907 0.370050 0.675907 0.362180 0.651413 0.371360 0.443187 0.377930 0.429187 0.367430 0.395933 0.362180 diff --git a/datasets/检测仪/train/labels/订单1805943_51_7101918.txt b/datasets/检测仪/train/labels/订单1805943_51_7101918.txt new file mode 100644 index 0000000..a3d62cb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805943_51_7101918.txt @@ -0,0 +1 @@ +5 0.370590 0.236247 0.345000 0.262493 0.348935 0.304487 0.356810 0.313673 0.372560 0.482967 0.364685 0.494773 0.362715 0.519713 0.392245 0.559080 0.417835 0.551207 0.555630 0.521020 0.594015 0.497400 0.715080 0.484280 0.757400 0.489527 0.834175 0.464593 0.848935 0.438347 0.848935 0.401600 0.838110 0.392413 0.828265 0.261180 0.832205 0.231000 0.803660 0.208687 0.734765 0.200813 0.712125 0.220500 0.578265 0.234933 0.557600 0.228373 0.488700 0.228373 0.374525 0.233620 diff --git a/datasets/检测仪/train/labels/订单1805944_51_7101928.txt b/datasets/检测仪/train/labels/订单1805944_51_7101928.txt new file mode 100644 index 0000000..41af2d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805944_51_7101928.txt @@ -0,0 +1 @@ +5 0.149245 0.440937 0.100247 0.460625 0.095000 0.499990 0.107253 0.503926 0.093255 0.615479 0.079258 0.620723 0.065260 0.650908 0.108997 0.679785 0.217487 0.686338 0.282227 0.675840 0.467708 0.678467 0.516693 0.692900 0.728424 0.698154 0.759922 0.679785 0.752917 0.656162 0.779167 0.497363 0.758164 0.465869 0.724922 0.469805 0.523698 0.459307 0.507943 0.471123 0.318971 0.456680 0.269974 0.444873 0.164987 0.442246 diff --git a/datasets/检测仪/train/labels/订单1805947_51_7101939.txt b/datasets/检测仪/train/labels/订单1805947_51_7101939.txt new file mode 100644 index 0000000..1660098 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805947_51_7101939.txt @@ -0,0 +1 @@ +5 0.290977 0.409443 0.264727 0.423877 0.250729 0.551172 0.264727 0.569541 0.252487 0.682402 0.247227 0.698154 0.245482 0.755898 0.264727 0.772959 0.287474 0.769023 0.380221 0.772959 0.409961 0.787393 0.439714 0.772959 0.458958 0.717842 0.450208 0.691592 0.462461 0.594482 0.476458 0.560361 0.500951 0.440937 0.478203 0.413379 0.451953 0.414687 0.436211 0.419941 0.327721 0.416006 0.296224 0.408125 diff --git a/datasets/检测仪/train/labels/订单1805948_51_7101958.txt b/datasets/检测仪/train/labels/订单1805948_51_7101958.txt new file mode 100644 index 0000000..7cdb29b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805948_51_7101958.txt @@ -0,0 +1 @@ +5 0.553322 0.469850 0.504333 0.477725 0.408094 0.610271 0.402844 0.632579 0.320606 0.753313 0.287356 0.782183 0.254111 0.842554 0.252361 0.883233 0.299606 0.904233 0.310106 0.895046 0.397594 0.922604 0.408094 0.943604 0.434339 0.952788 0.469333 0.946229 0.523578 0.879300 0.553322 0.834679 0.621567 0.741504 0.642561 0.723129 0.731800 0.586646 0.726556 0.563025 0.709056 0.545967 0.563822 0.482971 0.558572 0.472475 diff --git a/datasets/检测仪/train/labels/订单1805960_51_7102030.txt b/datasets/检测仪/train/labels/订单1805960_51_7102030.txt new file mode 100644 index 0000000..fd4b4d1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805960_51_7102030.txt @@ -0,0 +1 @@ +5 0.432564 0.217865 0.415064 0.240173 0.406321 0.395029 0.427321 0.434394 0.408064 0.565635 0.423821 0.595817 0.404564 0.645683 0.413321 0.728365 0.423821 0.757231 0.464064 0.769048 0.483308 0.757231 0.653038 0.762481 0.682782 0.770356 0.728282 0.741481 0.733526 0.652250 0.714282 0.602375 0.709026 0.451462 0.730026 0.397654 0.735282 0.242798 0.707282 0.221798 0.674038 0.224423 0.444821 0.221798 diff --git a/datasets/检测仪/train/labels/订单1805963_51_7102062.txt b/datasets/检测仪/train/labels/订单1805963_51_7102062.txt new file mode 100644 index 0000000..2d59a75 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805963_51_7102062.txt @@ -0,0 +1 @@ +5 0.364466 0.443564 0.336471 0.460625 0.338216 0.586602 0.350469 0.612852 0.350469 0.688965 0.348724 0.748018 0.348724 0.804453 0.360964 0.820205 0.387214 0.818887 0.395964 0.811016 0.486953 0.814951 0.528945 0.826758 0.544701 0.811016 0.555195 0.754580 0.541198 0.732275 0.549948 0.624658 0.562187 0.582666 0.577943 0.454062 0.551693 0.437002 0.527201 0.444873 0.388958 0.450117 0.369714 0.446182 diff --git a/datasets/检测仪/train/labels/订单1805964_51_7102072.txt b/datasets/检测仪/train/labels/订单1805964_51_7102072.txt new file mode 100644 index 0000000..6daca2c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805964_51_7102072.txt @@ -0,0 +1 @@ +5 0.280482 0.383193 0.254232 0.409443 0.273477 0.569541 0.296224 0.614160 0.306719 0.749336 0.294479 0.797891 0.313724 0.867441 0.348724 0.896318 0.373216 0.897627 0.397708 0.883193 0.521953 0.862197 0.537695 0.870068 0.563945 0.874004 0.584935 0.855635 0.590195 0.772959 0.574440 0.742773 0.556940 0.595791 0.569193 0.536738 0.558698 0.393691 0.532448 0.371387 0.504453 0.381885 0.492201 0.388437 0.343464 0.387129 0.315469 0.387129 0.285729 0.380566 diff --git a/datasets/检测仪/train/labels/订单1805965_51_7102082.txt b/datasets/检测仪/train/labels/订单1805965_51_7102082.txt new file mode 100644 index 0000000..20e2f48 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805965_51_7102082.txt @@ -0,0 +1 @@ +5 0.689922 0.502617 0.637435 0.503926 0.542943 0.594482 0.523698 0.631221 0.420456 0.711279 0.376719 0.742773 0.341719 0.786084 0.341719 0.803145 0.359219 0.821514 0.378464 0.822822 0.451953 0.880566 0.462461 0.898945 0.479948 0.906816 0.509701 0.902881 0.570937 0.863506 0.593685 0.821514 0.682930 0.742773 0.707422 0.730957 0.833411 0.619414 0.836914 0.597100 0.815911 0.585293 0.705677 0.517051 0.696927 0.507861 diff --git a/datasets/检测仪/train/labels/订单1805967_51_7102112.txt b/datasets/检测仪/train/labels/订单1805967_51_7102112.txt new file mode 100644 index 0000000..53b46d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805967_51_7102112.txt @@ -0,0 +1 @@ +5 0.135247 0.393691 0.108997 0.419941 0.112500 0.560361 0.135247 0.589229 0.133490 0.704717 0.124753 0.755898 0.130000 0.817578 0.154492 0.841201 0.175495 0.843818 0.187734 0.826758 0.296224 0.825449 0.306719 0.834639 0.343464 0.838574 0.371471 0.817578 0.385469 0.749336 0.366211 0.707344 0.360964 0.577422 0.381966 0.397627 0.346966 0.368760 0.320716 0.377939 0.304974 0.388437 0.168490 0.398945 0.147500 0.392383 diff --git a/datasets/检测仪/train/labels/订单1805968_51_7102108.txt b/datasets/检测仪/train/labels/订单1805968_51_7102108.txt new file mode 100644 index 0000000..5447f2c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805968_51_7102108.txt @@ -0,0 +1 @@ +5 0.269974 0.457998 0.240234 0.489492 0.280482 0.637783 0.310221 0.673223 0.334727 0.784766 0.338216 0.847764 0.364466 0.902881 0.387214 0.917314 0.420456 0.912061 0.425703 0.901563 0.546445 0.879258 0.558698 0.887129 0.581445 0.884502 0.591940 0.862197 0.600690 0.799199 0.583190 0.767705 0.563945 0.641719 0.555195 0.570859 0.539440 0.455371 0.509701 0.429121 0.474701 0.438311 0.471198 0.447500 0.318971 0.461934 0.303229 0.460625 0.278724 0.457998 diff --git a/datasets/检测仪/train/labels/订单1805969_51_7102119.txt b/datasets/检测仪/train/labels/订单1805969_51_7102119.txt new file mode 100644 index 0000000..213b54b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805969_51_7102119.txt @@ -0,0 +1 @@ +5 0.399127 0.237556 0.367632 0.301856 0.416848 0.573510 0.439485 0.628627 0.457201 0.790046 0.454250 0.849105 0.499525 0.971150 0.526098 0.965902 0.641255 0.948837 0.648147 0.960654 0.675706 0.960654 0.694407 0.927843 0.706216 0.837294 0.694407 0.767739 0.685549 0.586634 0.694407 0.467209 0.695387 0.234928 0.655034 0.189000 0.623539 0.202118 0.607789 0.219183 0.453265 0.248052 0.444407 0.236242 0.405034 0.237556 diff --git a/datasets/检测仪/train/labels/订单1805970_51_7102143.txt b/datasets/检测仪/train/labels/订单1805970_51_7102143.txt new file mode 100644 index 0000000..15fc48d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805970_51_7102143.txt @@ -0,0 +1 @@ +5 0.455456 0.489492 0.416966 0.507861 0.406458 0.632539 0.413464 0.650908 0.401211 0.750645 0.387214 0.780830 0.381966 0.835947 0.395964 0.860879 0.409961 0.858262 0.423958 0.846445 0.530690 0.856943 0.558698 0.872695 0.579688 0.853008 0.604193 0.796582 0.583190 0.771641 0.605938 0.662725 0.619935 0.622041 0.649687 0.520986 0.619935 0.501299 0.595443 0.502617 0.479948 0.494746 0.464206 0.492119 diff --git a/datasets/检测仪/train/labels/订单1805971_51_7102162.txt b/datasets/检测仪/train/labels/订单1805971_51_7102162.txt new file mode 100644 index 0000000..c64c3a6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805971_51_7102162.txt @@ -0,0 +1 @@ +5 0.321476 0.445490 0.296540 0.470427 0.334602 0.652837 0.362157 0.686955 0.379216 0.811626 0.381845 0.853622 0.400219 0.912676 0.423841 0.933679 0.443518 0.932364 0.451396 0.919239 0.548512 0.903495 0.583945 0.913991 0.598374 0.892999 0.606251 0.823437 0.583945 0.799815 0.573437 0.667278 0.576067 0.614787 0.576067 0.433679 0.541949 0.406125 0.513080 0.412676 0.505202 0.429746 0.385779 0.438927 0.360842 0.431050 0.326724 0.438927 diff --git a/datasets/检测仪/train/labels/订单1805975_51_7102175.txt b/datasets/检测仪/train/labels/订单1805975_51_7102175.txt new file mode 100644 index 0000000..2753043 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805975_51_7102175.txt @@ -0,0 +1 @@ +5 0.450208 0.362197 0.408216 0.384502 0.411706 0.564297 0.439714 0.604980 0.430964 0.753271 0.423958 0.786084 0.432708 0.851699 0.457201 0.876631 0.481706 0.884502 0.502695 0.867441 0.639180 0.876631 0.686432 0.892383 0.710924 0.860879 0.726667 0.808389 0.712669 0.759834 0.723177 0.618105 0.742422 0.553799 0.759922 0.383193 0.721419 0.355635 0.688177 0.358262 0.679427 0.367441 0.502695 0.372695 0.492201 0.363506 0.458958 0.362197 diff --git a/datasets/检测仪/train/labels/订单1805976_51_7102161.txt b/datasets/检测仪/train/labels/订单1805976_51_7102161.txt new file mode 100644 index 0000000..c6d8e07 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805976_51_7102161.txt @@ -0,0 +1 @@ +5 0.236189 0.450120 0.183700 0.463240 0.157456 0.583975 0.180778 0.602350 0.154533 0.694210 0.134122 0.727020 0.125367 0.772950 0.148700 0.797885 0.195367 0.800510 0.209944 0.788700 0.358678 0.792640 0.405333 0.807075 0.440333 0.790015 0.484078 0.732270 0.469500 0.706025 0.484078 0.612850 0.504489 0.582665 0.533656 0.476365 0.495744 0.456680 0.457833 0.463240 0.279933 0.459305 0.247856 0.454055 diff --git a/datasets/检测仪/train/labels/订单1805981_51_7102216.txt b/datasets/检测仪/train/labels/订单1805981_51_7102216.txt new file mode 100644 index 0000000..715fe06 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805981_51_7102216.txt @@ -0,0 +1 @@ +5 0.149128 0.564338 0.115878 0.582708 0.110628 0.719192 0.126378 0.740192 0.115878 0.863550 0.100133 0.902921 0.100133 0.968537 0.114128 0.986908 0.159622 0.990846 0.164872 0.971163 0.296106 0.959350 0.331100 0.972475 0.350350 0.948850 0.364350 0.880608 0.350350 0.846492 0.341600 0.724442 0.353850 0.695571 0.360850 0.565650 0.331100 0.555150 0.311856 0.563025 0.182372 0.568275 0.152622 0.565650 diff --git a/datasets/检测仪/train/labels/订单1805984_51_7102238.txt b/datasets/检测仪/train/labels/订单1805984_51_7102238.txt new file mode 100644 index 0000000..b261077 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805984_51_7102238.txt @@ -0,0 +1 @@ +5 0.135103 0.318913 0.096603 0.341221 0.133359 0.527577 0.154346 0.549885 0.173603 0.664058 0.149103 0.713923 0.173603 0.801856 0.222590 0.822846 0.248833 0.812356 0.248833 0.796606 0.373077 0.780856 0.390577 0.787413 0.423821 0.782163 0.448321 0.754606 0.444821 0.687683 0.427321 0.654875 0.413321 0.524952 0.425564 0.468519 0.416821 0.346471 0.385321 0.318913 0.355577 0.320221 0.346833 0.325471 0.189346 0.329413 0.142103 0.324163 diff --git a/datasets/检测仪/train/labels/订单1805985_51_7102220.txt b/datasets/检测仪/train/labels/订单1805985_51_7102220.txt new file mode 100644 index 0000000..73c0271 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805985_51_7102220.txt @@ -0,0 +1 @@ +5 0.488698 0.545918 0.458958 0.566924 0.448451 0.712588 0.465951 0.753271 0.457201 0.854326 0.441458 0.902881 0.436211 0.950117 0.465951 0.973740 0.486953 0.980303 0.551693 0.978994 0.618190 0.978994 0.665430 0.988184 0.679427 0.951436 0.686432 0.884502 0.695182 0.770332 0.716172 0.715215 0.735417 0.587920 0.709180 0.559043 0.681172 0.559043 0.665430 0.566924 0.541198 0.561670 0.521953 0.552480 0.499206 0.545918 diff --git a/datasets/检测仪/train/labels/订单1805988_51_7102280.txt b/datasets/检测仪/train/labels/订单1805988_51_7102280.txt new file mode 100644 index 0000000..1df3323 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805988_51_7102280.txt @@ -0,0 +1 @@ +5 0.152720 0.263750 0.110720 0.284750 0.119480 0.439610 0.136973 0.467160 0.133467 0.597090 0.114227 0.645640 0.128227 0.709950 0.159720 0.736190 0.203467 0.733570 0.210467 0.723070 0.339947 0.715200 0.348693 0.723070 0.390693 0.723070 0.415187 0.699450 0.425680 0.619400 0.404693 0.589210 0.402933 0.456670 0.411693 0.425170 0.411693 0.276880 0.376693 0.257190 0.350440 0.263750 0.324200 0.265070 0.184213 0.266380 0.161467 0.262440 diff --git a/datasets/检测仪/train/labels/订单1805989_51_7102267.txt b/datasets/检测仪/train/labels/订单1805989_51_7102267.txt new file mode 100644 index 0000000..5946249 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805989_51_7102267.txt @@ -0,0 +1 @@ +5 0.248960 0.372680 0.212213 0.391050 0.247213 0.514410 0.266453 0.538030 0.282200 0.645640 0.276960 0.683700 0.292707 0.737510 0.317200 0.753250 0.343440 0.757190 0.364440 0.741440 0.458933 0.725700 0.476427 0.732260 0.499173 0.733570 0.514920 0.716510 0.516680 0.644330 0.490427 0.622020 0.471187 0.520970 0.479933 0.481600 0.464187 0.370050 0.437933 0.349050 0.413440 0.359550 0.275200 0.371360 0.254213 0.373990 diff --git a/datasets/检测仪/train/labels/订单1805990_51_7102467.txt b/datasets/检测仪/train/labels/订单1805990_51_7102467.txt new file mode 100644 index 0000000..bb7be08 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805990_51_7102467.txt @@ -0,0 +1 @@ +5 0.411594 0.527592 0.390594 0.536779 0.392344 0.656200 0.401094 0.675888 0.409844 0.763813 0.394094 0.801871 0.397594 0.854362 0.415094 0.876675 0.436089 0.880608 0.457089 0.870112 0.541078 0.870112 0.574322 0.883233 0.595322 0.864862 0.607567 0.800558 0.588322 0.775625 0.581322 0.671950 0.590072 0.636517 0.591822 0.543342 0.572572 0.526279 0.555072 0.528904 0.434339 0.530217 diff --git a/datasets/检测仪/train/labels/订单1805993_51_7102311.txt b/datasets/检测仪/train/labels/订单1805993_51_7102311.txt new file mode 100644 index 0000000..50a5689 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805993_51_7102311.txt @@ -0,0 +1 @@ +5 0.473120 0.601073 0.456060 0.616827 0.457373 0.731000 0.465247 0.745433 0.478373 0.838607 0.466560 0.875353 0.474433 0.927847 0.492807 0.950160 0.520367 0.958033 0.519053 0.947533 0.585987 0.947533 0.618793 0.950160 0.633227 0.921287 0.641100 0.864853 0.621420 0.839920 0.608293 0.732307 0.618793 0.711313 0.610920 0.610260 0.591233 0.589267 0.568927 0.601073 0.495433 0.602387 0.478373 0.598453 diff --git a/datasets/检测仪/train/labels/订单1805996_51_7102352.txt b/datasets/检测仪/train/labels/订单1805996_51_7102352.txt new file mode 100644 index 0000000..daa8d34 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805996_51_7102352.txt @@ -0,0 +1 @@ +5 0.416966 0.266396 0.383711 0.286084 0.390716 0.426504 0.411706 0.454062 0.415208 0.557734 0.397708 0.598418 0.397708 0.653535 0.422214 0.678467 0.444961 0.681094 0.464206 0.671904 0.567448 0.669277 0.581445 0.679785 0.600690 0.683721 0.628685 0.665342 0.639180 0.606289 0.626940 0.578730 0.621680 0.459307 0.654935 0.423877 0.647930 0.288701 0.628685 0.267705 0.604193 0.270332 0.590195 0.276895 0.451953 0.274268 0.422214 0.265078 diff --git a/datasets/检测仪/train/labels/订单1805997_51_7102410.txt b/datasets/检测仪/train/labels/订单1805997_51_7102410.txt new file mode 100644 index 0000000..cc642f1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805997_51_7102410.txt @@ -0,0 +1 @@ +5 0.364440 0.425170 0.338200 0.446170 0.352200 0.606270 0.362693 0.633830 0.374947 0.734880 0.355693 0.774250 0.366200 0.849050 0.395933 0.872680 0.432680 0.873990 0.434440 0.860870 0.542920 0.855620 0.553427 0.862180 0.576173 0.863490 0.605920 0.838560 0.618160 0.774250 0.598920 0.744070 0.597160 0.627270 0.609413 0.582650 0.616413 0.450100 0.581413 0.419920 0.556920 0.426480 0.544667 0.434360 0.408187 0.438290 0.369693 0.425170 diff --git a/datasets/检测仪/train/labels/订单1805998_51_7102420.txt b/datasets/检测仪/train/labels/订单1805998_51_7102420.txt new file mode 100644 index 0000000..ad3bdb0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1805998_51_7102420.txt @@ -0,0 +1 @@ +5 0.411706 0.380566 0.376719 0.398945 0.383711 0.553799 0.402969 0.582666 0.399466 0.713906 0.392461 0.754580 0.406458 0.822822 0.422214 0.842510 0.460703 0.847764 0.474701 0.835947 0.600690 0.834639 0.607682 0.842510 0.637435 0.845137 0.663685 0.817578 0.674180 0.749336 0.660182 0.715215 0.647930 0.589229 0.658424 0.553799 0.661927 0.401562 0.623437 0.379258 0.602435 0.381885 0.597187 0.388437 0.444961 0.387129 0.420456 0.381885 diff --git a/datasets/检测仪/train/labels/订单1806000_51_7102336.txt b/datasets/检测仪/train/labels/订单1806000_51_7102336.txt new file mode 100644 index 0000000..27ba77f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806000_51_7102336.txt @@ -0,0 +1 @@ +5 0.311979 0.545918 0.297982 0.564297 0.373216 0.667969 0.395964 0.685029 0.457201 0.766396 0.455456 0.796582 0.493945 0.837266 0.520195 0.847764 0.548190 0.834639 0.623437 0.797891 0.637435 0.803145 0.656680 0.795264 0.661927 0.769023 0.635677 0.716523 0.612930 0.704717 0.555195 0.620723 0.551693 0.590537 0.490456 0.499990 0.460703 0.490801 0.448451 0.496055 0.444961 0.499990 0.346966 0.541982 0.317227 0.544609 diff --git a/datasets/检测仪/train/labels/订单1806006_51_7102373.txt b/datasets/检测仪/train/labels/订单1806006_51_7102373.txt new file mode 100644 index 0000000..5124051 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806006_51_7102373.txt @@ -0,0 +1 @@ +5 0.549828 0.321554 0.527078 0.333367 0.507828 0.427854 0.511328 0.467225 0.493833 0.547275 0.472833 0.568275 0.465833 0.623392 0.476333 0.641767 0.506083 0.650950 0.516578 0.641767 0.605817 0.654887 0.602317 0.664075 0.628567 0.666700 0.646061 0.653575 0.675811 0.598458 0.667061 0.578775 0.686306 0.490846 0.700306 0.463288 0.731800 0.351737 0.709056 0.333367 0.695056 0.334679 0.574322 0.326804 0.560322 0.320242 diff --git a/datasets/检测仪/train/labels/订单1806008_51_7102438.txt b/datasets/检测仪/train/labels/订单1806008_51_7102438.txt new file mode 100644 index 0000000..a6e34ff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806008_51_7102438.txt @@ -0,0 +1 @@ +5 0.324217 0.440931 0.299717 0.467175 0.353958 0.612844 0.381958 0.656150 0.422200 0.778200 0.423950 0.832006 0.448450 0.898931 0.478192 0.919931 0.523692 0.917306 0.527183 0.900244 0.653175 0.876625 0.658425 0.888437 0.700417 0.885813 0.723167 0.853000 0.707417 0.779513 0.667167 0.732269 0.633925 0.606281 0.630425 0.549850 0.591933 0.410744 0.551683 0.394994 0.525442 0.402869 0.520192 0.412056 0.369708 0.440931 0.357458 0.434369 0.334708 0.439619 diff --git a/datasets/检测仪/train/labels/订单1806010_51_7102491.txt b/datasets/检测仪/train/labels/订单1806010_51_7102491.txt new file mode 100644 index 0000000..fa0ec56 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806010_51_7102491.txt @@ -0,0 +1 @@ +5 0.426670 0.485559 0.415839 0.509184 0.428636 0.635163 0.442421 0.670594 0.447343 0.758520 0.442421 0.793963 0.449309 0.843823 0.466040 0.864825 0.477850 0.862203 0.482771 0.851702 0.538872 0.849079 0.540839 0.855641 0.556591 0.855641 0.567421 0.830699 0.567421 0.772960 0.556591 0.745396 0.550682 0.644347 0.556591 0.602354 0.550682 0.492121 0.535918 0.471119 0.523129 0.476375 0.517220 0.482937 0.449309 0.496061 0.443400 0.485559 0.432579 0.481620 diff --git a/datasets/检测仪/train/labels/订单1806011_51_7102502.txt b/datasets/检测仪/train/labels/订单1806011_51_7102502.txt new file mode 100644 index 0000000..1a03745 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806011_51_7102502.txt @@ -0,0 +1 @@ +5 0.359100 0.451475 0.343350 0.471162 0.345100 0.479038 0.383594 0.565650 0.401094 0.576150 0.423839 0.633892 0.427339 0.652263 0.443089 0.690321 0.464083 0.712633 0.486833 0.703446 0.562072 0.685071 0.586572 0.687696 0.598817 0.660137 0.590072 0.615517 0.577822 0.598458 0.523578 0.527592 0.541078 0.510533 0.502583 0.434417 0.485083 0.427854 0.471083 0.435729 0.383594 0.452788 0.366100 0.451475 diff --git a/datasets/检测仪/train/labels/订单1806014_51_7102538.txt b/datasets/检测仪/train/labels/订单1806014_51_7102538.txt new file mode 100644 index 0000000..6e52a7d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806014_51_7102538.txt @@ -0,0 +1 @@ +5 0.476393 0.338618 0.446758 0.374049 0.474648 0.553833 0.493815 0.591892 0.509505 0.716569 0.502539 0.765127 0.532161 0.847804 0.558307 0.876676 0.603620 0.874049 0.612344 0.859608 0.743060 0.849108 0.770951 0.860922 0.793607 0.858294 0.823229 0.826804 0.823229 0.745441 0.802318 0.713941 0.783151 0.564333 0.795352 0.493471 0.790117 0.347804 0.750026 0.320245 0.716914 0.324176 0.709948 0.333363 0.525195 0.347804 0.514740 0.341235 0.490339 0.337304 diff --git a/datasets/检测仪/train/labels/订单1806018_51_7102536.txt b/datasets/检测仪/train/labels/订单1806018_51_7102536.txt new file mode 100644 index 0000000..4c60167 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806018_51_7102536.txt @@ -0,0 +1 @@ +5 0.325746 0.414725 0.288953 0.442284 0.308233 0.623392 0.324005 0.657510 0.324005 0.779559 0.315236 0.833363 0.334516 0.900294 0.357291 0.926539 0.395838 0.927853 0.401086 0.917353 0.535995 0.921294 0.541257 0.926539 0.571047 0.929167 0.604332 0.906853 0.621846 0.829431 0.609581 0.780873 0.604332 0.654882 0.620105 0.616833 0.627107 0.435725 0.590314 0.408167 0.564031 0.416039 0.551767 0.422608 0.373063 0.423912 0.362539 0.417353 0.325746 0.414725 diff --git a/datasets/检测仪/train/labels/订单1806019_51_7102564.txt b/datasets/检测仪/train/labels/订单1806019_51_7102564.txt new file mode 100644 index 0000000..19c174c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806019_51_7102564.txt @@ -0,0 +1 @@ +5 0.514948 0.398945 0.486953 0.418623 0.495703 0.532803 0.504453 0.548545 0.513203 0.633848 0.507943 0.653535 0.514948 0.707344 0.532448 0.723086 0.553438 0.725713 0.569193 0.713906 0.653177 0.715215 0.679427 0.724404 0.698672 0.703398 0.703919 0.653535 0.689922 0.631221 0.681172 0.543301 0.695182 0.515742 0.688177 0.413379 0.667174 0.396318 0.646185 0.397627 0.642682 0.404189 0.532448 0.406816 0.518451 0.398945 diff --git a/datasets/检测仪/train/labels/订单1806020_51_7102512.txt b/datasets/检测仪/train/labels/订单1806020_51_7102512.txt new file mode 100644 index 0000000..d16c9ad --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806020_51_7102512.txt @@ -0,0 +1 @@ +5 0.287474 0.393691 0.257734 0.414687 0.257734 0.560361 0.273477 0.595791 0.271732 0.730957 0.257734 0.775586 0.261224 0.835947 0.289232 0.859570 0.320716 0.862197 0.331224 0.853008 0.464206 0.847764 0.469453 0.858262 0.506198 0.863506 0.523698 0.846445 0.542943 0.753271 0.527201 0.724404 0.523698 0.597100 0.544701 0.555107 0.541198 0.419941 0.518451 0.392383 0.488698 0.393691 0.479948 0.400254 0.324219 0.400254 0.317227 0.396318 0.290977 0.393691 diff --git a/datasets/检测仪/train/labels/订单1806022_51_7102599.txt b/datasets/检测仪/train/labels/订单1806022_51_7102599.txt new file mode 100644 index 0000000..b8687d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806022_51_7102599.txt @@ -0,0 +1 @@ +5 0.386883 0.473793 0.344892 0.496102 0.351883 0.626024 0.377546 0.664080 0.379877 0.786128 0.368225 0.822873 0.379877 0.879297 0.403210 0.904236 0.447546 0.909488 0.459213 0.895052 0.601528 0.889800 0.631852 0.904236 0.652855 0.897674 0.678519 0.879297 0.694846 0.813681 0.671512 0.784809 0.659846 0.656207 0.687840 0.637830 0.690185 0.496102 0.655185 0.475104 0.624846 0.475104 0.615525 0.482977 0.445201 0.480347 0.396219 0.473793 diff --git a/datasets/检测仪/train/labels/订单1806029_51_7102584.txt b/datasets/检测仪/train/labels/订单1806029_51_7102584.txt new file mode 100644 index 0000000..2e3f40d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806029_51_7102584.txt @@ -0,0 +1 @@ +5 0.362600 0.224442 0.331100 0.250688 0.343350 0.400296 0.359100 0.435729 0.369600 0.556462 0.357350 0.603708 0.364350 0.660137 0.385344 0.682446 0.413344 0.687696 0.427339 0.678513 0.556822 0.673262 0.570822 0.685071 0.595322 0.691633 0.621567 0.664075 0.639067 0.597146 0.625067 0.560400 0.616317 0.437042 0.628567 0.389796 0.626817 0.232317 0.597067 0.211321 0.574322 0.216567 0.555072 0.223129 0.399344 0.232317 0.364350 0.221817 diff --git a/datasets/检测仪/train/labels/订单1806031_51_7102704.txt b/datasets/检测仪/train/labels/订单1806031_51_7102704.txt new file mode 100644 index 0000000..33da2d7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806031_51_7102704.txt @@ -0,0 +1 @@ +5 0.220867 0.094521 0.180622 0.106333 0.133378 0.228379 0.136878 0.263813 0.098383 0.358300 0.073883 0.392421 0.063383 0.433104 0.077383 0.461975 0.108878 0.469850 0.115878 0.460662 0.212117 0.484283 0.222617 0.492158 0.261111 0.492158 0.294356 0.442292 0.296106 0.410796 0.329350 0.312371 0.362600 0.293996 0.422089 0.183758 0.404594 0.152262 0.373100 0.149638 0.247111 0.111583 0.224367 0.094521 diff --git a/datasets/检测仪/train/labels/订单1806033_51_7102627.txt b/datasets/检测仪/train/labels/订单1806033_51_7102627.txt new file mode 100644 index 0000000..7806d45 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806033_51_7102627.txt @@ -0,0 +1 @@ +5 0.420456 0.393691 0.387214 0.413379 0.430964 0.570859 0.439714 0.577422 0.453711 0.665342 0.450208 0.702090 0.467708 0.738838 0.485208 0.757207 0.518451 0.749336 0.619935 0.738838 0.637435 0.748018 0.658424 0.733584 0.667174 0.678467 0.649687 0.661406 0.640938 0.562979 0.658424 0.518359 0.649687 0.404189 0.621680 0.379258 0.595443 0.383193 0.586693 0.393691 0.450208 0.405498 0.425703 0.395000 diff --git a/datasets/检测仪/train/labels/订单1806036_51_7102652.txt b/datasets/检测仪/train/labels/订单1806036_51_7102652.txt new file mode 100644 index 0000000..2ad8609 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806036_51_7102652.txt @@ -0,0 +1 @@ +5 0.424402 0.395009 0.403451 0.408131 0.408113 0.492119 0.424402 0.511808 0.431380 0.589239 0.422071 0.603668 0.426718 0.646981 0.477914 0.660104 0.480245 0.650917 0.573313 0.650917 0.624494 0.662725 0.626825 0.649602 0.647776 0.595796 0.631488 0.580052 0.622178 0.503936 0.638466 0.481626 0.636135 0.400260 0.603558 0.381886 0.575644 0.384507 0.438359 0.391073 diff --git a/datasets/检测仪/train/labels/订单1806040_51_7102691.txt b/datasets/检测仪/train/labels/订单1806040_51_7102691.txt new file mode 100644 index 0000000..46ce68d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806040_51_7102691.txt @@ -0,0 +1 @@ +5 0.209568 0.338620 0.183904 0.354366 0.225895 0.489540 0.251559 0.502665 0.286559 0.611589 0.279568 0.644392 0.300556 0.700825 0.330895 0.721823 0.372886 0.723134 0.382222 0.710009 0.531528 0.691641 0.547855 0.699514 0.582855 0.700825 0.603858 0.677205 0.603858 0.618142 0.573519 0.590590 0.536204 0.480347 0.550201 0.444922 0.510540 0.330747 0.461543 0.315000 0.445201 0.322873 0.263225 0.337309 0.211898 0.332057 diff --git a/datasets/检测仪/train/labels/订单1806042_51_7102728.txt b/datasets/检测仪/train/labels/订单1806042_51_7102728.txt new file mode 100644 index 0000000..7c38c32 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806042_51_7102728.txt @@ -0,0 +1 @@ +5 0.303106 0.458037 0.278611 0.479038 0.275111 0.637829 0.296106 0.675888 0.299606 0.804496 0.287356 0.853050 0.292606 0.918667 0.313606 0.948850 0.341600 0.950162 0.353850 0.937042 0.488583 0.934417 0.495583 0.943604 0.525328 0.948850 0.551572 0.929167 0.569072 0.845179 0.549828 0.813679 0.541078 0.669325 0.565572 0.631267 0.562072 0.476413 0.534078 0.451475 0.509578 0.454100 0.502583 0.461975 0.338100 0.464600 0.311856 0.455412 diff --git a/datasets/检测仪/train/labels/订单1806043_51_7102888.txt b/datasets/检测仪/train/labels/订单1806043_51_7102888.txt new file mode 100644 index 0000000..6811b15 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806043_51_7102888.txt @@ -0,0 +1 @@ +5 0.423839 0.405546 0.402844 0.430479 0.430839 0.548588 0.448339 0.565650 0.469333 0.662763 0.465833 0.690321 0.478083 0.738879 0.500833 0.755938 0.521828 0.754625 0.527078 0.742817 0.614567 0.732317 0.635567 0.742817 0.661811 0.729692 0.667061 0.674575 0.646061 0.652263 0.628567 0.552525 0.639067 0.521029 0.630317 0.410796 0.604067 0.391108 0.579572 0.392421 0.574322 0.402921 0.465833 0.410796 0.448339 0.402921 0.427339 0.400296 diff --git a/datasets/检测仪/train/labels/订单1806044_51_7102661.txt b/datasets/检测仪/train/labels/订单1806044_51_7102661.txt new file mode 100644 index 0000000..84ca270 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806044_51_7102661.txt @@ -0,0 +1 @@ +5 0.275234 0.468496 0.238477 0.492119 0.261224 0.660098 0.280482 0.690283 0.292721 0.799199 0.280482 0.842510 0.292721 0.891064 0.317227 0.912061 0.346966 0.916006 0.355716 0.905498 0.472956 0.895000 0.502695 0.905498 0.534193 0.885820 0.544701 0.814951 0.537695 0.788701 0.532448 0.678467 0.551693 0.623350 0.551693 0.484238 0.523698 0.460625 0.488698 0.460625 0.476458 0.468496 0.317227 0.476367 0.313724 0.469805 0.287474 0.465869 diff --git a/datasets/检测仪/train/labels/订单1806050_51_7102748.txt b/datasets/检测仪/train/labels/订单1806050_51_7102748.txt new file mode 100644 index 0000000..4c4d34d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806050_51_7102748.txt @@ -0,0 +1 @@ +5 0.280482 0.396318 0.238477 0.429121 0.240234 0.640410 0.262982 0.667969 0.245482 0.842510 0.257734 0.927813 0.276979 0.955371 0.310221 0.960625 0.322474 0.948809 0.472956 0.947500 0.476458 0.959307 0.507943 0.965869 0.537695 0.944873 0.562187 0.876631 0.553438 0.825449 0.565690 0.670596 0.593685 0.619414 0.612930 0.439619 0.574440 0.406816 0.539440 0.408125 0.523698 0.417314 0.338216 0.414687 0.322474 0.404189 0.283971 0.397627 diff --git a/datasets/检测仪/train/labels/订单1806058_51_7102805.txt b/datasets/检测仪/train/labels/订单1806058_51_7102805.txt new file mode 100644 index 0000000..2ecfffb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806058_51_7102805.txt @@ -0,0 +1 @@ +5 0.360861 0.489539 0.322363 0.511855 0.327609 0.677203 0.341612 0.710020 0.350369 0.829436 0.334617 0.874057 0.339863 0.934426 0.360861 0.954109 0.394112 0.960676 0.401107 0.952797 0.521844 0.944928 0.553333 0.958043 0.586585 0.937049 0.604085 0.868811 0.590082 0.843873 0.593579 0.712643 0.612828 0.674580 0.625082 0.517100 0.600587 0.493484 0.563839 0.489539 0.551585 0.497418 0.401107 0.501352 0.390601 0.492172 0.366107 0.486916 diff --git a/datasets/检测仪/train/labels/订单1806059_51_7102841.txt b/datasets/检测仪/train/labels/订单1806059_51_7102841.txt new file mode 100644 index 0000000..3aec47a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806059_51_7102841.txt @@ -0,0 +1 @@ +5 0.665313 0.560399 0.635567 0.536780 0.602326 0.540720 0.437847 0.557778 0.406343 0.568281 0.269861 0.574835 0.220868 0.566962 0.149132 0.580087 0.133380 0.594523 0.124630 0.610269 0.142130 0.619462 0.145625 0.695573 0.136887 0.711319 0.129884 0.729696 0.154375 0.741502 0.233113 0.752005 0.276863 0.738880 0.409850 0.729696 0.500833 0.744132 0.653067 0.740191 0.682813 0.721823 0.679317 0.699514 0.663565 0.586649 0.668819 0.568281 diff --git a/datasets/检测仪/train/labels/订单1806060_51_7102808.txt b/datasets/检测仪/train/labels/订单1806060_51_7102808.txt new file mode 100644 index 0000000..9e69ad4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806060_51_7102808.txt @@ -0,0 +1 @@ +5 0.381966 0.404189 0.346966 0.431748 0.353971 0.602354 0.376719 0.645664 0.376719 0.758525 0.369714 0.818887 0.380221 0.883193 0.402969 0.910752 0.434453 0.910752 0.448451 0.896318 0.579688 0.897627 0.597187 0.913379 0.649687 0.891064 0.663685 0.813643 0.649687 0.779521 0.649687 0.637783 0.668932 0.565605 0.679427 0.430439 0.653177 0.408125 0.612930 0.402881 0.600690 0.410752 0.422214 0.418623 0.422214 0.410752 0.394219 0.405498 diff --git a/datasets/检测仪/train/labels/订单1806062_51_7103083.txt b/datasets/检测仪/train/labels/订单1806062_51_7103083.txt new file mode 100644 index 0000000..7152b20 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806062_51_7103083.txt @@ -0,0 +1 @@ +5 0.393230 0.379293 0.372560 0.401600 0.371575 0.536773 0.381415 0.599767 0.386340 0.734933 0.378465 0.780867 0.381415 0.855667 0.396180 0.883227 0.421770 0.896353 0.428660 0.881913 0.507400 0.874040 0.518230 0.888480 0.520195 0.889787 0.551695 0.850420 0.554645 0.774307 0.543820 0.742807 0.534960 0.603700 0.545785 0.557767 0.538895 0.423913 0.525120 0.393727 0.515275 0.391100 0.509370 0.397667 0.417835 0.384540 0.399135 0.377980 diff --git a/datasets/检测仪/train/labels/订单1806064_51_7102915.txt b/datasets/检测仪/train/labels/订单1806064_51_7102915.txt new file mode 100644 index 0000000..e8ead1b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806064_51_7102915.txt @@ -0,0 +1 @@ +5 0.425716 0.451436 0.394219 0.454062 0.380221 0.480303 0.471198 0.625977 0.490456 0.635166 0.551693 0.734902 0.551693 0.763770 0.595443 0.817578 0.618190 0.830703 0.649687 0.826758 0.653177 0.809697 0.744167 0.776895 0.763411 0.782139 0.786159 0.775586 0.794909 0.751963 0.777422 0.698154 0.744167 0.671904 0.684674 0.569541 0.682930 0.524922 0.623437 0.414687 0.583190 0.397627 0.562187 0.400254 0.556940 0.409443 0.439714 0.447500 diff --git a/datasets/检测仪/train/labels/订单1806067_51_7103041.txt b/datasets/检测仪/train/labels/订单1806067_51_7103041.txt new file mode 100644 index 0000000..5505d8b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806067_51_7103041.txt @@ -0,0 +1 @@ +5 0.387187 0.478980 0.357440 0.492100 0.348693 0.590520 0.362693 0.612830 0.360947 0.708630 0.359200 0.732260 0.346947 0.783440 0.366200 0.807060 0.390693 0.811000 0.395933 0.799190 0.490427 0.799190 0.495680 0.809680 0.516680 0.813620 0.535920 0.800500 0.548173 0.745380 0.539427 0.725700 0.541173 0.618080 0.556920 0.593150 0.560413 0.494720 0.534173 0.475040 0.516680 0.480290 0.392440 0.481600 diff --git a/datasets/检测仪/train/labels/订单1806068_51_7102992.txt b/datasets/检测仪/train/labels/订单1806068_51_7102992.txt new file mode 100644 index 0000000..7d6ca62 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806068_51_7102992.txt @@ -0,0 +1 @@ +5 0.371471 0.409443 0.322474 0.433066 0.324219 0.594482 0.343464 0.654844 0.331224 0.801826 0.320716 0.846445 0.325977 0.922559 0.353971 0.951436 0.388958 0.956680 0.402969 0.942246 0.555195 0.934375 0.560443 0.951436 0.597187 0.950117 0.625182 0.923877 0.637435 0.847764 0.626940 0.803145 0.626940 0.662725 0.644427 0.610225 0.651432 0.444873 0.626940 0.419941 0.593685 0.416006 0.581445 0.425186 0.409961 0.421250 0.399466 0.412061 0.376719 0.406816 diff --git a/datasets/检测仪/train/labels/订单1806070_51_7102892.txt b/datasets/检测仪/train/labels/订单1806070_51_7102892.txt new file mode 100644 index 0000000..e914147 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806070_51_7102892.txt @@ -0,0 +1 @@ +5 0.394094 0.278250 0.380094 0.291371 0.387094 0.393733 0.395844 0.410796 0.404594 0.488221 0.402844 0.521029 0.404594 0.543342 0.420339 0.557775 0.446589 0.561712 0.453589 0.552525 0.518328 0.551212 0.523578 0.559087 0.544578 0.559087 0.563822 0.538092 0.569072 0.498721 0.551572 0.476413 0.549828 0.408171 0.558572 0.376675 0.560322 0.292683 0.541078 0.274313 0.520078 0.280871 0.420339 0.279562 0.397594 0.274313 diff --git a/datasets/检测仪/train/labels/订单1806071_51_7102940.txt b/datasets/检测仪/train/labels/订单1806071_51_7102940.txt new file mode 100644 index 0000000..e18970d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806071_51_7102940.txt @@ -0,0 +1 @@ +5 0.336471 0.279521 0.310221 0.293955 0.287474 0.422559 0.299727 0.446182 0.287474 0.538047 0.271732 0.569541 0.266484 0.622041 0.285729 0.649600 0.315469 0.650908 0.318971 0.640410 0.420456 0.649600 0.434453 0.658779 0.448451 0.660098 0.467708 0.646973 0.493945 0.590537 0.488698 0.561670 0.495703 0.463242 0.521953 0.426504 0.541198 0.318887 0.523698 0.299199 0.502695 0.299199 0.485208 0.305762 0.371471 0.284766 0.341719 0.279521 diff --git a/datasets/检测仪/train/labels/订单1806072_51_7102966.txt b/datasets/检测仪/train/labels/订单1806072_51_7102966.txt new file mode 100644 index 0000000..328bd45 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806072_51_7102966.txt @@ -0,0 +1 @@ +5 0.344940 0.225665 0.307538 0.255855 0.307538 0.297844 0.316398 0.309656 0.299666 0.522259 0.290806 0.528816 0.280965 0.569503 0.307538 0.615431 0.516201 0.633808 0.568366 0.620680 0.730768 0.645614 0.778997 0.665300 0.881360 0.662675 0.913838 0.633808 0.914825 0.582624 0.912856 0.573436 0.910883 0.412018 0.922697 0.401520 0.927615 0.352968 0.901042 0.318845 0.821316 0.301784 0.790806 0.296535 0.762264 0.308348 0.597895 0.284722 0.580175 0.274225 0.348876 0.226981 diff --git a/datasets/检测仪/train/labels/订单1806073_51_7103007.txt b/datasets/检测仪/train/labels/订单1806073_51_7103007.txt new file mode 100644 index 0000000..abc3422 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806073_51_7103007.txt @@ -0,0 +1 @@ +5 0.264707 0.451420 0.241960 0.464540 0.252453 0.569530 0.266453 0.593150 0.278707 0.677140 0.271707 0.707320 0.280453 0.757190 0.301453 0.778190 0.338200 0.782130 0.345200 0.771630 0.432680 0.755880 0.441440 0.763750 0.458933 0.765070 0.483427 0.749320 0.488680 0.686320 0.471187 0.665330 0.451933 0.570840 0.460680 0.555090 0.444933 0.444860 0.427440 0.434360 0.415187 0.434360 0.401187 0.440920 0.275200 0.451420 diff --git a/datasets/检测仪/train/labels/订单1806074_51_7102995.txt b/datasets/检测仪/train/labels/订单1806074_51_7102995.txt new file mode 100644 index 0000000..8e02596 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806074_51_7102995.txt @@ -0,0 +1 @@ +5 0.367969 0.286084 0.327721 0.314951 0.345221 0.484238 0.362721 0.522305 0.373216 0.646973 0.362721 0.696846 0.367969 0.750645 0.392461 0.779521 0.434453 0.778203 0.444961 0.766396 0.565690 0.767705 0.577943 0.774268 0.602435 0.776895 0.632188 0.755898 0.646185 0.681094 0.632188 0.643037 0.619935 0.517051 0.644427 0.468496 0.646185 0.307080 0.618190 0.279521 0.588438 0.282139 0.581445 0.291328 0.401211 0.296582 0.374961 0.284766 diff --git a/datasets/检测仪/train/labels/订单1806078_51_7103036.txt b/datasets/检测仪/train/labels/订单1806078_51_7103036.txt new file mode 100644 index 0000000..2f10c8f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806078_51_7103036.txt @@ -0,0 +1 @@ +5 0.320606 0.455412 0.292606 0.477725 0.299606 0.599771 0.313606 0.641767 0.324106 0.734942 0.315356 0.763813 0.322356 0.820242 0.334600 0.834679 0.360850 0.841242 0.373100 0.833367 0.476333 0.835992 0.481583 0.845179 0.499083 0.849112 0.521828 0.835992 0.537578 0.775625 0.530578 0.727067 0.527078 0.647012 0.542828 0.611583 0.549828 0.475100 0.527078 0.451475 0.506083 0.459350 0.497333 0.464600 0.360850 0.460662 0.346850 0.454100 0.320606 0.451475 diff --git a/datasets/检测仪/train/labels/订单1806079_51_7103004.txt b/datasets/检测仪/train/labels/订单1806079_51_7103004.txt new file mode 100644 index 0000000..2a84a3b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806079_51_7103004.txt @@ -0,0 +1 @@ +5 0.404714 0.305762 0.364466 0.313643 0.299727 0.431748 0.292721 0.472432 0.222734 0.576104 0.194740 0.603662 0.170247 0.658779 0.173737 0.685029 0.194740 0.698154 0.206992 0.691592 0.315469 0.717842 0.317227 0.733584 0.343464 0.749336 0.362721 0.750645 0.429206 0.677158 0.427461 0.649600 0.502695 0.544609 0.527201 0.520986 0.605938 0.385820 0.590195 0.363506 0.574440 0.353008 0.553438 0.359570 0.437956 0.316260 0.413464 0.307080 diff --git a/datasets/检测仪/train/labels/订单1806081_51_7102935.txt b/datasets/检测仪/train/labels/订单1806081_51_7102935.txt new file mode 100644 index 0000000..f3ec028 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806081_51_7102935.txt @@ -0,0 +1 @@ +5 0.416966 0.553799 0.381966 0.576104 0.390716 0.708652 0.409961 0.730957 0.416966 0.853008 0.408216 0.888437 0.411706 0.954063 0.434453 0.978994 0.457201 0.976367 0.465951 0.965869 0.577943 0.959307 0.591940 0.971123 0.611185 0.972432 0.630430 0.951436 0.640938 0.881885 0.618190 0.847764 0.609440 0.728340 0.625182 0.703398 0.626940 0.577422 0.602435 0.552480 0.579688 0.555107 0.572695 0.559043 0.443203 0.561670 0.422214 0.553799 diff --git a/datasets/检测仪/train/labels/订单1806083_51_7102978.txt b/datasets/检测仪/train/labels/订单1806083_51_7102978.txt new file mode 100644 index 0000000..8620b8c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806083_51_7102978.txt @@ -0,0 +1 @@ +5 0.264611 0.430479 0.238367 0.454100 0.261111 0.590583 0.285606 0.622079 0.304856 0.734942 0.296106 0.778250 0.313606 0.842554 0.343350 0.870112 0.383594 0.868800 0.392344 0.851738 0.506083 0.826804 0.521828 0.841242 0.555072 0.842554 0.577822 0.808433 0.567322 0.742817 0.549828 0.702133 0.520078 0.591896 0.523578 0.549900 0.499083 0.422604 0.464083 0.404233 0.441339 0.409483 0.436089 0.413417 0.294356 0.431792 0.268111 0.430479 diff --git a/datasets/检测仪/train/labels/订单1806085_51_7103039.txt b/datasets/检测仪/train/labels/订单1806085_51_7103039.txt new file mode 100644 index 0000000..62240c7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806085_51_7103039.txt @@ -0,0 +1 @@ +5 0.415092 0.437007 0.398804 0.450130 0.396472 0.523616 0.412761 0.543304 0.412761 0.601047 0.412761 0.618106 0.408113 0.652223 0.429049 0.667976 0.452316 0.664040 0.533758 0.658789 0.561672 0.667976 0.577960 0.653538 0.589601 0.607604 0.573313 0.595796 0.570982 0.541990 0.582623 0.523616 0.582623 0.443564 0.568666 0.435692 0.550046 0.439628 0.447669 0.439628 0.419739 0.433071 diff --git a/datasets/检测仪/train/labels/订单1806088_51_7103121.txt b/datasets/检测仪/train/labels/订单1806088_51_7103121.txt new file mode 100644 index 0000000..1e22963 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806088_51_7103121.txt @@ -0,0 +1 @@ +5 0.385321 0.343846 0.346833 0.363529 0.338077 0.526260 0.359077 0.573510 0.334577 0.709990 0.317077 0.765106 0.324077 0.842538 0.322333 0.870096 0.373077 0.881904 0.395821 0.860904 0.539308 0.859596 0.583051 0.879279 0.612795 0.855654 0.633795 0.766423 0.623295 0.728365 0.621538 0.585317 0.649538 0.531510 0.660038 0.379279 0.632038 0.353029 0.605795 0.351721 0.590051 0.359596 0.430821 0.349096 0.390577 0.339913 diff --git a/datasets/检测仪/train/labels/订单1806091_51_7103122.txt b/datasets/检测仪/train/labels/订单1806091_51_7103122.txt new file mode 100644 index 0000000..1d597cc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806091_51_7103122.txt @@ -0,0 +1 @@ +5 0.408216 0.307080 0.371471 0.325449 0.360964 0.489492 0.376719 0.526240 0.366211 0.649600 0.353971 0.686338 0.357474 0.754580 0.397708 0.779521 0.415208 0.770332 0.549948 0.774268 0.586693 0.787393 0.614687 0.766396 0.630430 0.694219 0.619935 0.664033 0.630430 0.532803 0.647930 0.493428 0.674180 0.338574 0.644427 0.317578 0.618190 0.314951 0.607682 0.320205 0.437956 0.313643 0.413464 0.307080 diff --git a/datasets/检测仪/train/labels/订单1806093_51_7103269.txt b/datasets/检测仪/train/labels/订单1806093_51_7103269.txt new file mode 100644 index 0000000..93b0211 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806093_51_7103269.txt @@ -0,0 +1 @@ +5 0.397778 0.357299 0.375718 0.383243 0.377661 0.426486 0.375068 0.608113 0.369873 0.615315 0.369229 0.644143 0.382852 0.680184 0.393887 0.681627 0.482139 0.709013 0.500313 0.697484 0.585322 0.729197 0.608032 0.752256 0.656055 0.756584 0.674224 0.730629 0.678115 0.680184 0.674873 0.665770 0.680713 0.556215 0.686553 0.538926 0.691743 0.492798 0.680063 0.456757 0.631392 0.427928 0.609331 0.433698 0.524321 0.410629 0.515234 0.393341 0.401025 0.364512 diff --git a/datasets/检测仪/train/labels/订单1806100_51_7103196.txt b/datasets/检测仪/train/labels/订单1806100_51_7103196.txt new file mode 100644 index 0000000..5bb4a14 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806100_51_7103196.txt @@ -0,0 +1 @@ +5 0.364410 0.492343 0.334410 0.506461 0.336910 0.633505 0.346910 0.667387 0.344410 0.777490 0.334410 0.826897 0.341910 0.877716 0.381910 0.913010 0.414401 0.910186 0.426901 0.897480 0.569384 0.890422 0.591884 0.908775 0.621884 0.911598 0.651884 0.891833 0.666875 0.819838 0.646884 0.793020 0.639384 0.661740 0.656875 0.619387 0.644384 0.509284 0.614384 0.492343 0.584384 0.495167 0.401901 0.492343 0.364410 0.490931 diff --git a/datasets/检测仪/train/labels/订单1806101_51_7103288.txt b/datasets/检测仪/train/labels/订单1806101_51_7103288.txt new file mode 100644 index 0000000..dffd942 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806101_51_7103288.txt @@ -0,0 +1 @@ +5 0.254961 0.280576 0.200378 0.320098 0.226732 0.584072 0.254961 0.644775 0.277552 0.826875 0.264375 0.880518 0.281315 0.962393 0.303893 0.987803 0.347187 0.996270 0.367891 0.986387 0.563633 0.987803 0.620104 0.999092 0.657747 0.970859 0.682214 0.883340 0.659622 0.822637 0.670924 0.670186 0.684089 0.626426 0.734909 0.324336 0.678451 0.274932 0.623867 0.279160 0.603164 0.293281 0.318958 0.291865 0.309544 0.284814 0.262487 0.280576 diff --git a/datasets/检测仪/train/labels/订单1806105_51_7103283.txt b/datasets/检测仪/train/labels/订单1806105_51_7103283.txt new file mode 100644 index 0000000..5d488cb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806105_51_7103283.txt @@ -0,0 +1 @@ +5 0.241783 0.349746 0.202261 0.379392 0.215433 0.581254 0.230494 0.629246 0.236139 0.767587 0.224844 0.825462 0.239906 0.929925 0.275667 0.962392 0.322717 0.960979 0.345306 0.948275 0.495878 0.925687 0.499644 0.938392 0.537283 0.936983 0.563633 0.908750 0.574928 0.816992 0.559872 0.783117 0.550461 0.612308 0.573044 0.560079 0.574928 0.387858 0.537283 0.359625 0.501522 0.359625 0.493994 0.368096 0.294483 0.361038 0.286956 0.358217 0.247433 0.348333 diff --git a/datasets/检测仪/train/labels/订单1806106_51_7103306.txt b/datasets/检测仪/train/labels/订单1806106_51_7103306.txt new file mode 100644 index 0000000..97305c7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806106_51_7103306.txt @@ -0,0 +1 @@ +5 0.494028 0.459878 0.458264 0.481050 0.441319 0.626450 0.452616 0.654679 0.437558 0.780312 0.422500 0.809957 0.422500 0.887595 0.446968 0.917240 0.492141 0.920061 0.499676 0.911597 0.531667 0.913003 0.616366 0.918655 0.622014 0.927127 0.655891 0.928533 0.682245 0.904540 0.701065 0.826901 0.689769 0.794427 0.689769 0.668793 0.712361 0.633507 0.721771 0.495165 0.699178 0.475399 0.678472 0.472578 0.665301 0.481050 0.526019 0.466936 0.507199 0.459878 diff --git a/datasets/检测仪/train/labels/订单1806107_51_7103354.txt b/datasets/检测仪/train/labels/订单1806107_51_7103354.txt new file mode 100644 index 0000000..e21b8ea --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806107_51_7103354.txt @@ -0,0 +1 @@ +5 0.129100 0.725225 0.100867 0.733695 0.097722 0.753460 0.207522 0.833920 0.245167 0.849450 0.307900 0.903090 0.326722 0.929915 0.389467 0.963790 0.436511 0.959555 0.436511 0.946850 0.543167 0.925680 0.593367 0.920030 0.593367 0.891800 0.568267 0.856510 0.518078 0.833920 0.442789 0.784515 0.433378 0.760520 0.361233 0.680055 0.314178 0.671585 0.282800 0.685700 0.182422 0.715345 0.154189 0.718170 diff --git a/datasets/检测仪/train/labels/订单1806110_51_7103334.txt b/datasets/检测仪/train/labels/订单1806110_51_7103334.txt new file mode 100644 index 0000000..d7bbe83 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806110_51_7103334.txt @@ -0,0 +1 @@ +5 0.251160 0.431740 0.224820 0.441618 0.228578 0.461385 0.245523 0.474081 0.254935 0.554547 0.241748 0.572904 0.234216 0.589841 0.260572 0.603958 0.345278 0.616654 0.403611 0.601127 0.561716 0.599718 0.616307 0.616654 0.834641 0.623713 0.864755 0.603958 0.866634 0.585600 0.862859 0.574314 0.866634 0.441618 0.877925 0.431740 0.870392 0.414792 0.834641 0.387978 0.599363 0.396446 0.561716 0.411973 0.405507 0.419032 0.347157 0.406324 0.260572 0.421850 diff --git a/datasets/检测仪/train/labels/订单1806113_51_7103433.txt b/datasets/检测仪/train/labels/订单1806113_51_7103433.txt new file mode 100644 index 0000000..1e08335 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806113_51_7103433.txt @@ -0,0 +1 @@ +5 0.576810 0.259404 0.548581 0.280576 0.550456 0.445732 0.563633 0.466914 0.557995 0.568545 0.546693 0.599600 0.552344 0.656064 0.573047 0.678652 0.593750 0.682891 0.612578 0.670186 0.716094 0.681475 0.746211 0.689951 0.768789 0.680068 0.791380 0.625010 0.778203 0.586895 0.791380 0.478203 0.819609 0.434443 0.842201 0.296104 0.813958 0.267871 0.778203 0.269287 0.778203 0.277754 0.621979 0.269287 0.612578 0.260811 0.578698 0.252344 diff --git a/datasets/检测仪/train/labels/订单1806114_51_7103385.txt b/datasets/检测仪/train/labels/订单1806114_51_7103385.txt new file mode 100644 index 0000000..f9f59ed --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806114_51_7103385.txt @@ -0,0 +1 @@ +5 0.222969 0.337041 0.179674 0.363857 0.177786 0.524785 0.200378 0.582666 0.192852 0.722412 0.177786 0.768994 0.190964 0.845225 0.215430 0.869229 0.253073 0.873457 0.260612 0.866396 0.414948 0.864990 0.441289 0.879102 0.478932 0.860752 0.501523 0.764766 0.486471 0.733711 0.490234 0.579844 0.512813 0.533262 0.520352 0.369512 0.482708 0.338457 0.460117 0.344102 0.435651 0.349746 0.260612 0.345508 0.232370 0.337041 diff --git a/datasets/检测仪/train/labels/订单1806115_51_7103376.txt b/datasets/检测仪/train/labels/订单1806115_51_7103376.txt new file mode 100644 index 0000000..cb961e1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806115_51_7103376.txt @@ -0,0 +1 @@ +5 0.433932 0.355382 0.400195 0.385029 0.422682 0.537480 0.450807 0.568539 0.469557 0.695588 0.458307 0.737931 0.471432 0.816990 0.492057 0.839569 0.518307 0.845216 0.533307 0.832510 0.666419 0.824039 0.685156 0.831098 0.709531 0.833922 0.735781 0.808520 0.739531 0.730873 0.724531 0.704059 0.700156 0.551598 0.707656 0.492314 0.696406 0.368088 0.668281 0.339853 0.640169 0.342676 0.632669 0.349735 0.469557 0.366676 0.448932 0.352559 diff --git a/datasets/检测仪/train/labels/订单1806116_51_7103437.txt b/datasets/检测仪/train/labels/订单1806116_51_7103437.txt new file mode 100644 index 0000000..75673fe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806116_51_7103437.txt @@ -0,0 +1 @@ +5 0.505286 0.437266 0.477057 0.457031 0.484583 0.593955 0.497760 0.622188 0.499648 0.728057 0.493997 0.754883 0.497760 0.814170 0.524115 0.838164 0.559870 0.842402 0.567396 0.829697 0.670924 0.831113 0.680326 0.836758 0.704805 0.839580 0.733034 0.818408 0.744323 0.761943 0.717969 0.736533 0.712331 0.620781 0.725508 0.589727 0.729271 0.454209 0.708568 0.437266 0.678451 0.433027 0.670924 0.437266 0.533516 0.442910 0.509049 0.433027 diff --git a/datasets/检测仪/train/labels/订单1806117_51_7103452.txt b/datasets/检测仪/train/labels/订单1806117_51_7103452.txt new file mode 100644 index 0000000..3bbbae0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806117_51_7103452.txt @@ -0,0 +1 @@ +5 0.455399 0.273510 0.410222 0.273510 0.363176 0.304569 0.363176 0.344088 0.404588 0.493725 0.423399 0.527598 0.429046 0.609480 0.432810 0.646176 0.444105 0.682882 0.468575 0.705471 0.496810 0.705471 0.502458 0.694176 0.619150 0.688529 0.647386 0.697000 0.662444 0.685706 0.686902 0.632059 0.668092 0.612304 0.679373 0.513490 0.703843 0.465490 0.728314 0.307392 0.694431 0.276333 0.666209 0.273510 0.637974 0.291863 0.455399 0.300333 diff --git a/datasets/检测仪/train/labels/订单1806118_51_7103420.txt b/datasets/检测仪/train/labels/订单1806118_51_7103420.txt new file mode 100644 index 0000000..3e3d382 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806118_51_7103420.txt @@ -0,0 +1 @@ +5 0.644570 0.427383 0.574935 0.444326 0.458229 0.599600 0.394245 0.661719 0.349062 0.716768 0.315195 0.743594 0.281315 0.798643 0.281315 0.848047 0.315195 0.860752 0.334010 0.857930 0.446940 0.903105 0.463880 0.920039 0.495872 0.914395 0.569284 0.867812 0.578698 0.839580 0.676563 0.735117 0.738672 0.712529 0.881719 0.571367 0.876081 0.545957 0.819609 0.506436 0.810195 0.517725 0.674687 0.455615 0.670924 0.445732 0.650221 0.430205 diff --git a/datasets/检测仪/train/labels/订单1806120_51_7103423.txt b/datasets/检测仪/train/labels/订单1806120_51_7103423.txt new file mode 100644 index 0000000..1706146 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806120_51_7103423.txt @@ -0,0 +1 @@ +5 0.345299 0.399150 0.326484 0.409033 0.339661 0.519141 0.354714 0.541729 0.360365 0.632070 0.347187 0.670186 0.354714 0.722412 0.377305 0.745000 0.398008 0.749238 0.420586 0.733711 0.531641 0.726650 0.542930 0.740762 0.561758 0.739355 0.580573 0.716768 0.588099 0.656064 0.573047 0.634893 0.544818 0.537490 0.557995 0.500791 0.542930 0.410449 0.525990 0.393506 0.495872 0.394922 0.364128 0.397744 diff --git a/datasets/检测仪/train/labels/订单1806123_51_7103545.txt b/datasets/检测仪/train/labels/订单1806123_51_7103545.txt new file mode 100644 index 0000000..ed20b44 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806123_51_7103545.txt @@ -0,0 +1 @@ +5 0.439023 0.225586 0.403737 0.263704 0.423496 0.458509 0.448906 0.550260 0.458789 0.687187 0.460202 0.716836 0.451732 0.756361 0.461615 0.833997 0.489844 0.867878 0.520898 0.869290 0.535020 0.856582 0.647949 0.853763 0.684648 0.874935 0.728411 0.843880 0.729824 0.819883 0.728411 0.544616 0.742526 0.507917 0.753822 0.252409 0.719941 0.210059 0.684648 0.212884 0.671947 0.224180 0.495488 0.229824 0.478555 0.219941 0.446087 0.224180 diff --git a/datasets/检测仪/train/labels/订单1806125_51_7103474.txt b/datasets/检测仪/train/labels/订单1806125_51_7103474.txt new file mode 100644 index 0000000..f59d925 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806125_51_7103474.txt @@ -0,0 +1 @@ +5 0.506105 0.283507 0.491285 0.315973 0.538930 0.502307 0.559045 0.546067 0.589745 0.677353 0.592920 0.730993 0.623625 0.822747 0.643740 0.846747 0.663855 0.846747 0.680795 0.826980 0.755965 0.794513 0.764435 0.802987 0.784550 0.798753 0.799375 0.760640 0.787725 0.668880 0.765495 0.629353 0.721025 0.469840 0.723145 0.423260 0.682915 0.262333 0.662800 0.238333 0.644800 0.238333 0.641625 0.248213 0.534695 0.287740 0.512460 0.279273 diff --git a/datasets/检测仪/train/labels/订单1806126_51_7103481.txt b/datasets/检测仪/train/labels/订单1806126_51_7103481.txt new file mode 100644 index 0000000..445c1ec --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806126_51_7103481.txt @@ -0,0 +1 @@ +5 0.638813 0.330050 0.623760 0.342750 0.595533 0.435920 0.604947 0.447210 0.591760 0.517790 0.580467 0.533320 0.571067 0.568610 0.584240 0.588370 0.606827 0.592610 0.599293 0.582730 0.678347 0.592610 0.700933 0.609550 0.715987 0.599670 0.740453 0.554500 0.732933 0.536140 0.749867 0.455680 0.766800 0.435920 0.789387 0.359690 0.774333 0.345570 0.764920 0.349810 0.653880 0.337100 0.640707 0.327220 diff --git a/datasets/检测仪/train/labels/订单1806128_51_7103584.txt b/datasets/检测仪/train/labels/订单1806128_51_7103584.txt new file mode 100644 index 0000000..efc772a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806128_51_7103584.txt @@ -0,0 +1 @@ +5 0.360005 0.273627 0.335655 0.306093 0.327185 0.544660 0.339890 0.599713 0.333535 0.786047 0.315540 0.853807 0.315540 0.963913 0.337770 0.999200 0.355140 1.000000 0.369145 1.000000 0.385415 0.985087 0.485990 0.983673 0.490225 0.996380 0.526225 0.999200 0.546340 0.958267 0.554810 0.869333 0.548455 0.807220 0.555865 0.608180 0.567515 0.553127 0.580220 0.330093 0.555865 0.297627 0.527280 0.296213 0.526225 0.300447 0.388590 0.284920 0.363180 0.275040 diff --git a/datasets/检测仪/train/labels/订单1806130_51_7103513.txt b/datasets/检测仪/train/labels/订单1806130_51_7103513.txt new file mode 100644 index 0000000..c9406c2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806130_51_7103513.txt @@ -0,0 +1 @@ +5 0.382950 0.476792 0.358478 0.496554 0.352833 0.634896 0.369772 0.674421 0.362244 0.802879 0.354717 0.831108 0.354717 0.898867 0.371656 0.922867 0.396122 0.928512 0.411178 0.914396 0.527872 0.921454 0.533522 0.935571 0.565517 0.942629 0.599394 0.922867 0.618217 0.836758 0.608806 0.800054 0.606928 0.675829 0.620100 0.641954 0.629511 0.500788 0.605044 0.475379 0.563633 0.476792 0.559872 0.483850 0.424356 0.483850 0.418711 0.476792 0.390478 0.473967 diff --git a/datasets/检测仪/train/labels/订单1806131_51_7103563.txt b/datasets/检测仪/train/labels/订单1806131_51_7103563.txt new file mode 100644 index 0000000..811eccc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806131_51_7103563.txt @@ -0,0 +1 @@ +5 0.287016 0.293333 0.257371 0.320147 0.259485 0.356855 0.271134 0.373791 0.273254 0.493783 0.262665 0.506487 0.259485 0.530482 0.282782 0.558717 0.359007 0.568595 0.407708 0.554477 0.516759 0.558717 0.546403 0.570008 0.720031 0.575654 0.735913 0.543186 0.735913 0.509306 0.729559 0.341324 0.735913 0.301797 0.712623 0.274975 0.700974 0.280629 0.564400 0.284861 0.537929 0.297565 0.393946 0.291920 0.351599 0.282034 0.288076 0.293333 diff --git a/datasets/检测仪/train/labels/订单1806133_51_7103528.txt b/datasets/检测仪/train/labels/订单1806133_51_7103528.txt new file mode 100644 index 0000000..ea65a2b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806133_51_7103528.txt @@ -0,0 +1 @@ +5 0.469531 0.236816 0.431888 0.267871 0.463880 0.454209 0.480820 0.482441 0.495872 0.640537 0.484583 0.675830 0.501523 0.760527 0.533516 0.788760 0.576810 0.788760 0.589987 0.773232 0.738672 0.771826 0.765026 0.777471 0.804557 0.780293 0.829023 0.749238 0.819609 0.650420 0.810195 0.602432 0.780091 0.465498 0.797018 0.410449 0.778203 0.248105 0.748086 0.225527 0.719857 0.225527 0.710443 0.233994 0.507174 0.243877 0.478932 0.235400 diff --git a/datasets/检测仪/train/labels/订单1806136_51_7103552.txt b/datasets/检测仪/train/labels/订单1806136_51_7103552.txt new file mode 100644 index 0000000..0130240 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806136_51_7103552.txt @@ -0,0 +1 @@ +5 0.296367 0.410449 0.275664 0.431621 0.330247 0.571367 0.349062 0.584072 0.382943 0.689951 0.390482 0.722412 0.416823 0.778877 0.454466 0.805703 0.469531 0.797227 0.486471 0.781699 0.584336 0.759121 0.610690 0.756299 0.621979 0.736533 0.618216 0.682891 0.593750 0.644775 0.550456 0.544551 0.563633 0.520557 0.512813 0.386445 0.488346 0.377979 0.475169 0.382217 0.463880 0.390684 0.334010 0.409033 0.300130 0.403389 diff --git a/datasets/检测仪/train/labels/订单1806141_51_7103695.txt b/datasets/检测仪/train/labels/订单1806141_51_7103695.txt new file mode 100644 index 0000000..0c9e49c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806141_51_7103695.txt @@ -0,0 +1 @@ +5 0.359412 0.191637 0.312353 0.225510 0.310471 0.434431 0.331176 0.490902 0.319882 0.680059 0.289765 0.749225 0.302941 0.825451 0.338706 0.874863 0.400824 0.886157 0.413987 0.869216 0.604092 0.869216 0.619150 0.881922 0.653033 0.888980 0.709490 0.855098 0.720784 0.763343 0.700078 0.697000 0.705725 0.499373 0.724549 0.457020 0.741490 0.228333 0.694431 0.180343 0.658680 0.191637 0.634209 0.197284 0.408340 0.197284 0.374471 0.191637 diff --git a/datasets/检测仪/train/labels/订单1806144_51_7103599.txt b/datasets/检测仪/train/labels/订单1806144_51_7103599.txt new file mode 100644 index 0000000..e92d4a8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806144_51_7103599.txt @@ -0,0 +1 @@ +5 0.290716 0.473965 0.266250 0.488086 0.313307 0.630664 0.349062 0.653242 0.375417 0.753467 0.384831 0.797227 0.409297 0.856523 0.437526 0.872051 0.460117 0.867812 0.473294 0.855107 0.578698 0.831113 0.593750 0.840996 0.605039 0.839580 0.625742 0.814170 0.620104 0.747822 0.595638 0.719590 0.556107 0.619365 0.567396 0.578428 0.522227 0.440088 0.480820 0.425977 0.473294 0.433027 0.450703 0.442910 0.332135 0.466914 0.298255 0.466914 diff --git a/datasets/检测仪/train/labels/订单1806146_51_7103703.txt b/datasets/检测仪/train/labels/订单1806146_51_7103703.txt new file mode 100644 index 0000000..136ca5e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806146_51_7103703.txt @@ -0,0 +1 @@ +5 0.333059 0.433020 0.287882 0.454196 0.280353 0.632059 0.291647 0.665941 0.282235 0.808520 0.259660 0.853686 0.252131 0.925676 0.286000 0.966618 0.325529 0.977912 0.333059 0.960971 0.476105 0.966618 0.489281 0.972265 0.525046 0.983559 0.560797 0.951088 0.575856 0.856510 0.575856 0.809931 0.585268 0.678647 0.598444 0.623588 0.609739 0.464078 0.572092 0.435843 0.541974 0.435843 0.540092 0.445725 0.368824 0.442902 0.361294 0.437255 diff --git a/datasets/检测仪/train/labels/订单1806148_51_7103678.txt b/datasets/检测仪/train/labels/订单1806148_51_7103678.txt new file mode 100644 index 0000000..3652019 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806148_51_7103678.txt @@ -0,0 +1 @@ +5 0.252973 0.279230 0.217213 0.296170 0.211573 0.416160 0.220973 0.433100 0.196507 0.540380 0.187093 0.557320 0.188987 0.612370 0.205920 0.636370 0.232267 0.636370 0.237920 0.627900 0.332027 0.626490 0.337667 0.636370 0.365907 0.642020 0.392253 0.632130 0.414840 0.572850 0.412960 0.546030 0.420493 0.457090 0.437427 0.424630 0.454373 0.311700 0.422373 0.284870 0.405427 0.287700 0.396013 0.290520 0.269920 0.283460 0.254853 0.279230 diff --git a/datasets/检测仪/train/labels/订单1806158_51_7103859.txt b/datasets/检测仪/train/labels/订单1806158_51_7103859.txt new file mode 100644 index 0000000..cb3ffb7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806158_51_7103859.txt @@ -0,0 +1 @@ +5 0.134500 0.390683 0.104389 0.401975 0.083683 0.526200 0.093094 0.553021 0.049806 0.719592 0.055450 0.798642 0.081800 0.838167 0.123211 0.836758 0.158972 0.831108 0.170261 0.818404 0.290722 0.807113 0.309544 0.815583 0.352833 0.815583 0.375417 0.791583 0.394239 0.702650 0.381067 0.682887 0.371656 0.564312 0.384828 0.536079 0.382950 0.407621 0.358478 0.396329 0.324600 0.393504 0.140150 0.386446 diff --git a/datasets/检测仪/train/labels/订单1806160_51_7103768.txt b/datasets/检测仪/train/labels/订单1806160_51_7103768.txt new file mode 100644 index 0000000..8d8fc53 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806160_51_7103768.txt @@ -0,0 +1 @@ +5 0.529365 0.298991 0.507134 0.320169 0.503960 0.476855 0.515605 0.510736 0.514546 0.603906 0.499722 0.654720 0.507134 0.716836 0.514546 0.733776 0.534663 0.740833 0.542070 0.729538 0.602417 0.733776 0.614067 0.743652 0.637358 0.728125 0.646885 0.663190 0.638418 0.636374 0.650063 0.509323 0.657471 0.475449 0.671235 0.337109 0.653237 0.307461 0.637358 0.306048 0.636299 0.315931 0.550542 0.315931 0.532544 0.296172 diff --git a/datasets/检测仪/train/labels/订单1806166_51_7103910.txt b/datasets/检测仪/train/labels/订单1806166_51_7103910.txt new file mode 100644 index 0000000..5279408 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806166_51_7103910.txt @@ -0,0 +1 @@ +5 0.279427 0.438682 0.238021 0.454209 0.241784 0.603838 0.256849 0.641953 0.251198 0.761943 0.238021 0.811348 0.236133 0.900283 0.266250 0.928516 0.309544 0.935566 0.317070 0.920039 0.458229 0.901689 0.492109 0.915811 0.510937 0.893223 0.541055 0.808525 0.516576 0.781699 0.507174 0.640537 0.516576 0.601016 0.520352 0.472559 0.482708 0.445732 0.467643 0.451387 0.320833 0.448564 0.281315 0.437266 diff --git a/datasets/检测仪/train/labels/订单1806169_51_7103877.txt b/datasets/检测仪/train/labels/订单1806169_51_7103877.txt new file mode 100644 index 0000000..cc8be10 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806169_51_7103877.txt @@ -0,0 +1 @@ +5 0.350951 0.352568 0.315195 0.373740 0.318958 0.524785 0.345299 0.562900 0.343424 0.697002 0.318958 0.753467 0.334010 0.822637 0.362240 0.846641 0.403646 0.852285 0.414948 0.835342 0.559870 0.829697 0.571159 0.846641 0.599401 0.848047 0.625742 0.821230 0.640807 0.737939 0.623867 0.698418 0.605039 0.554434 0.621979 0.512080 0.614453 0.362451 0.578698 0.338457 0.552344 0.344102 0.548581 0.351162 0.386706 0.356807 0.350951 0.353984 diff --git a/datasets/检测仪/train/labels/订单1806173_51_7104016.txt b/datasets/检测仪/train/labels/订单1806173_51_7104016.txt new file mode 100644 index 0000000..6aa7d7a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806173_51_7104016.txt @@ -0,0 +1 @@ +5 0.215439 0.362445 0.175906 0.386447 0.206023 0.588311 0.230497 0.612303 0.253070 0.783114 0.234254 0.849463 0.258728 0.948279 0.305775 0.990625 0.345307 0.992029 0.364123 0.975099 0.544810 0.939803 0.556111 0.942632 0.610687 0.935570 0.638918 0.903103 0.623860 0.795822 0.595629 0.746414 0.556111 0.589726 0.563640 0.534671 0.531637 0.375154 0.486462 0.346919 0.471404 0.355395 0.460117 0.358213 0.260599 0.368092 0.222968 0.362445 diff --git a/datasets/检测仪/train/labels/订单1806174_51_7103900.txt b/datasets/检测仪/train/labels/订单1806174_51_7103900.txt new file mode 100644 index 0000000..7ffb060 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806174_51_7103900.txt @@ -0,0 +1 @@ +5 0.221496 0.530459 0.199410 0.551636 0.259367 0.670210 0.294094 0.681504 0.319334 0.766201 0.313024 0.791611 0.338275 0.838193 0.369836 0.848076 0.407707 0.846665 0.417183 0.833960 0.556048 0.814199 0.603384 0.822666 0.622325 0.797261 0.619170 0.749263 0.584454 0.728091 0.549738 0.644805 0.549738 0.622217 0.524487 0.524814 0.480306 0.507876 0.445579 0.514932 0.290928 0.527637 0.227806 0.527637 diff --git a/datasets/检测仪/train/labels/订单1806178_51_7103983.txt b/datasets/检测仪/train/labels/订单1806178_51_7103983.txt new file mode 100644 index 0000000..f52ee78 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806178_51_7103983.txt @@ -0,0 +1 @@ +5 0.518779 0.400632 0.507134 0.426042 0.532544 0.571439 0.549482 0.595436 0.568540 0.701309 0.569600 0.746478 0.583364 0.797298 0.605596 0.819883 0.626768 0.819883 0.624653 0.805768 0.681821 0.790241 0.686060 0.798711 0.708291 0.791647 0.717817 0.766243 0.710410 0.705540 0.694526 0.660371 0.668062 0.558730 0.672295 0.519206 0.645825 0.390749 0.628887 0.373809 0.619360 0.380866 0.613008 0.386517 0.539956 0.404863 0.516665 0.400632 diff --git a/datasets/检测仪/train/labels/订单1806180_51_7103956.txt b/datasets/检测仪/train/labels/订单1806180_51_7103956.txt new file mode 100644 index 0000000..db8b950 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806180_51_7103956.txt @@ -0,0 +1 @@ +5 0.317070 0.452793 0.281315 0.478203 0.275664 0.630664 0.292604 0.664541 0.286953 0.787354 0.264375 0.832520 0.279427 0.890400 0.296367 0.910156 0.332135 0.918633 0.339661 0.905928 0.462005 0.904512 0.473294 0.914395 0.493997 0.917217 0.525990 0.900283 0.546693 0.835342 0.531641 0.798643 0.529753 0.673008 0.548581 0.634893 0.565521 0.489492 0.541055 0.462676 0.514701 0.464092 0.501523 0.469736 0.350951 0.465498 0.315195 0.448564 diff --git a/datasets/检测仪/train/labels/订单1806188_51_7104051.txt b/datasets/检测仪/train/labels/订单1806188_51_7104051.txt new file mode 100644 index 0000000..fa2c55c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806188_51_7104051.txt @@ -0,0 +1 @@ +5 0.403446 0.296111 0.382274 0.313056 0.366389 0.479630 0.368507 0.519155 0.360035 0.656076 0.346276 0.716782 0.342040 0.818414 0.363212 0.855116 0.396033 0.865000 0.399210 0.846644 0.490260 0.857940 0.498733 0.873472 0.520964 0.879120 0.558021 0.831123 0.566484 0.728067 0.559080 0.684317 0.556962 0.543148 0.564366 0.496562 0.573898 0.335637 0.554844 0.313056 0.545313 0.313056 0.426736 0.294699 0.401328 0.296111 diff --git a/datasets/检测仪/train/labels/订单1806189_51_7103908.txt b/datasets/检测仪/train/labels/订单1806189_51_7103908.txt new file mode 100644 index 0000000..3dacf46 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806189_51_7103908.txt @@ -0,0 +1 @@ +5 0.539167 0.219873 0.492109 0.241055 0.509049 0.420322 0.525990 0.473965 0.541055 0.630664 0.522227 0.687129 0.539167 0.781699 0.580573 0.826875 0.648333 0.826875 0.663385 0.811348 0.829023 0.808525 0.847839 0.824053 0.919362 0.825459 0.940065 0.809932 0.970182 0.768994 0.960768 0.658896 0.928776 0.612305 0.883607 0.444326 0.893021 0.394922 0.855378 0.236816 0.823372 0.217051 0.808320 0.218467 0.569284 0.219873 0.541055 0.219873 diff --git a/datasets/检测仪/train/labels/订单1806192_51_7103954.txt b/datasets/检测仪/train/labels/订单1806192_51_7103954.txt new file mode 100644 index 0000000..28f438c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806192_51_7103954.txt @@ -0,0 +1 @@ +5 0.274729 0.166246 0.242734 0.200121 0.276621 0.380813 0.306736 0.451393 0.310496 0.479619 0.331200 0.565735 0.318028 0.605260 0.344371 0.668780 0.366955 0.688547 0.398962 0.684308 0.406482 0.673019 0.532595 0.668780 0.568351 0.681488 0.596586 0.660311 0.613518 0.579844 0.600346 0.554438 0.590934 0.425978 0.602226 0.390692 0.613518 0.183183 0.577762 0.147889 0.545767 0.153538 0.525063 0.167656 0.340611 0.178945 0.323668 0.170476 0.289792 0.166246 diff --git a/datasets/检测仪/train/labels/订单1806194_51_7103950.txt b/datasets/检测仪/train/labels/订单1806194_51_7103950.txt new file mode 100644 index 0000000..10e2d93 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806194_51_7103950.txt @@ -0,0 +1 @@ +5 0.154279 0.457033 0.122272 0.482448 0.159919 0.646194 0.176863 0.680078 0.203206 0.832526 0.227682 0.911583 0.257797 0.939810 0.284141 0.931341 0.289792 0.920052 0.406482 0.901696 0.451661 0.912993 0.468593 0.890407 0.479885 0.819827 0.464833 0.793002 0.447889 0.661721 0.459181 0.626436 0.455421 0.461272 0.417774 0.435865 0.385779 0.435865 0.378258 0.445744 0.195686 0.459862 0.163691 0.454213 diff --git a/datasets/检测仪/train/labels/订单1806196_51_7104047.txt b/datasets/检测仪/train/labels/订单1806196_51_7104047.txt new file mode 100644 index 0000000..ee8a88f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806196_51_7104047.txt @@ -0,0 +1 @@ +5 0.638922 0.356804 0.610689 0.368096 0.563633 0.485263 0.563633 0.506437 0.537283 0.591133 0.509050 0.625012 0.492111 0.682887 0.501522 0.708300 0.522228 0.719592 0.531639 0.708300 0.635156 0.737942 0.638922 0.745000 0.667156 0.753471 0.685978 0.743587 0.727383 0.685713 0.725500 0.653246 0.763144 0.558667 0.783850 0.529021 0.842194 0.413271 0.821494 0.394917 0.795144 0.392096 0.793261 0.393504 0.665272 0.368096 0.644567 0.359625 diff --git a/datasets/检测仪/train/labels/订单1806197_51_7104132.txt b/datasets/检测仪/train/labels/订单1806197_51_7104132.txt new file mode 100644 index 0000000..1cd99e4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806197_51_7104132.txt @@ -0,0 +1 @@ +5 0.625742 0.349746 0.605039 0.365273 0.595638 0.465498 0.610690 0.481025 0.599401 0.555840 0.593750 0.575605 0.593750 0.609482 0.603164 0.632070 0.627630 0.634893 0.633281 0.626426 0.706680 0.633486 0.725508 0.644775 0.746211 0.633486 0.759375 0.584072 0.751849 0.564316 0.763151 0.489492 0.774440 0.466914 0.798906 0.370918 0.776315 0.352568 0.763151 0.355391 0.757500 0.358213 0.653984 0.356807 0.635156 0.349746 diff --git a/datasets/检测仪/train/labels/订单1806198_51_7104058.txt b/datasets/检测仪/train/labels/订单1806198_51_7104058.txt new file mode 100644 index 0000000..e506df6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806198_51_7104058.txt @@ -0,0 +1 @@ +5 0.642699 0.526899 0.608816 0.538195 0.582460 0.662413 0.591875 0.682173 0.573045 0.782403 0.557979 0.804985 0.550452 0.864277 0.567394 0.892512 0.599402 0.900977 0.612580 0.891097 0.704840 0.903799 0.710492 0.915095 0.736848 0.923569 0.757553 0.910857 0.776383 0.837458 0.768856 0.814875 0.782035 0.711825 0.804628 0.683589 0.832872 0.573480 0.810279 0.552313 0.785798 0.552313 0.785798 0.552313 0.669069 0.535374 0.652114 0.526899 diff --git a/datasets/检测仪/train/labels/订单1806203_51_7104209.txt b/datasets/检测仪/train/labels/订单1806203_51_7104209.txt new file mode 100644 index 0000000..c1da567 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806203_51_7104209.txt @@ -0,0 +1 @@ +5 0.591825 0.403491 0.561710 0.414784 0.554181 0.544655 0.565474 0.567241 0.559828 0.677349 0.544770 0.705582 0.550417 0.760636 0.565474 0.788869 0.593707 0.794515 0.599353 0.784634 0.719813 0.793103 0.727342 0.801573 0.749928 0.805808 0.764986 0.793103 0.787572 0.725345 0.774397 0.698524 0.780043 0.581358 0.791336 0.560183 0.800747 0.433136 0.785690 0.409138 0.766868 0.411961 0.757457 0.416196 0.610647 0.406315 0.595589 0.406315 diff --git a/datasets/检测仪/train/labels/订单1806206_51_7104307.txt b/datasets/检测仪/train/labels/订单1806206_51_7104307.txt new file mode 100644 index 0000000..f25594d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806206_51_7104307.txt @@ -0,0 +1 @@ +5 0.352917 0.406276 0.320449 0.423216 0.273867 0.586966 0.282337 0.619434 0.239987 0.769062 0.213164 0.812826 0.197637 0.896113 0.204694 0.921517 0.232930 0.942695 0.247044 0.931400 0.351504 0.948340 0.362799 0.963867 0.382559 0.977982 0.412207 0.968105 0.457376 0.877760 0.451732 0.815651 0.465846 0.784590 0.481374 0.688600 0.511022 0.637780 0.553366 0.461328 0.535020 0.435918 0.515254 0.430273 0.509609 0.437331 0.372682 0.414746 0.355742 0.410514 diff --git a/datasets/检测仪/train/labels/订单1806207_51_7104196.txt b/datasets/检测仪/train/labels/订单1806207_51_7104196.txt new file mode 100644 index 0000000..2b9551d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806207_51_7104196.txt @@ -0,0 +1 @@ +5 0.346251 0.493737 0.299204 0.521972 0.312376 0.670190 0.333080 0.706894 0.327439 0.805709 0.319908 0.843824 0.321788 0.872059 0.323668 0.896055 0.331200 0.918642 0.372607 0.921462 0.380138 0.915813 0.491188 0.914403 0.523183 0.927111 0.542007 0.908754 0.564591 0.852292 0.553299 0.818417 0.560819 0.705484 0.575882 0.658901 0.600346 0.521972 0.568351 0.500796 0.543887 0.499386 0.532595 0.506445 0.378258 0.506445 0.368847 0.502206 diff --git a/datasets/检测仪/train/labels/订单1806211_51_7104444.txt b/datasets/检测仪/train/labels/订单1806211_51_7104444.txt new file mode 100644 index 0000000..0da8648 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806211_51_7104444.txt @@ -0,0 +1 @@ +5 0.292507 0.317340 0.256733 0.341340 0.262387 0.522030 0.279320 0.551670 0.279320 0.706950 0.262387 0.757770 0.268027 0.836820 0.292507 0.873520 0.337667 0.881990 0.356493 0.869290 0.488240 0.862230 0.516480 0.873520 0.546587 0.872110 0.588000 0.842470 0.601173 0.753530 0.584240 0.705540 0.578587 0.554500 0.595533 0.500850 0.595533 0.337100 0.563533 0.311700 0.539067 0.314520 0.524013 0.318750 0.343320 0.321580 0.305680 0.314520 diff --git a/datasets/检测仪/train/labels/订单1806212_51_7104331.txt b/datasets/检测仪/train/labels/订单1806212_51_7104331.txt new file mode 100644 index 0000000..88756ce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806212_51_7104331.txt @@ -0,0 +1 @@ +5 0.452596 0.509273 0.428128 0.523381 0.428128 0.649016 0.441311 0.667367 0.443183 0.769006 0.435656 0.794416 0.439426 0.839590 0.452596 0.857941 0.484604 0.863586 0.490246 0.853709 0.580587 0.857941 0.590000 0.863586 0.620109 0.865000 0.635178 0.843822 0.642705 0.788770 0.633292 0.767592 0.627637 0.671609 0.640820 0.646199 0.644577 0.527623 0.625765 0.503627 0.606940 0.505031 0.603169 0.512090 0.473306 0.513504 0.456366 0.503627 diff --git a/datasets/检测仪/train/labels/订单1806215_51_7104325.txt b/datasets/检测仪/train/labels/订单1806215_51_7104325.txt new file mode 100644 index 0000000..668da0e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806215_51_7104325.txt @@ -0,0 +1 @@ +5 0.527251 0.409102 0.509253 0.437331 0.513486 0.629316 0.521958 0.667428 0.520898 0.798711 0.514546 0.850938 0.516665 0.928581 0.535718 0.959635 0.557954 0.961048 0.561128 0.951165 0.642651 0.951165 0.651118 0.965280 0.667002 0.969518 0.687114 0.934225 0.699819 0.865052 0.691353 0.824115 0.691353 0.674486 0.705117 0.608138 0.711465 0.438743 0.690293 0.410514 0.674414 0.411921 0.665942 0.421803 0.548423 0.413333 diff --git a/datasets/检测仪/train/labels/订单1806217_51_7104303.txt b/datasets/检测仪/train/labels/订单1806217_51_7104303.txt new file mode 100644 index 0000000..ff33ef7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806217_51_7104303.txt @@ -0,0 +1 @@ +5 0.251194 0.409033 0.221083 0.427383 0.230494 0.445738 0.238022 0.454204 0.239906 0.561488 0.228611 0.581254 0.256844 0.602425 0.302017 0.599604 0.452589 0.593958 0.484583 0.582663 0.646450 0.582663 0.682211 0.586900 0.749972 0.575604 0.785733 0.555842 0.781967 0.537492 0.772556 0.526200 0.766911 0.452796 0.770672 0.440092 0.776322 0.420325 0.749972 0.401975 0.661506 0.399154 0.469528 0.414679 0.446939 0.404800 0.258722 0.406212 diff --git a/datasets/检测仪/train/labels/订单1806218_51_7104322.txt b/datasets/检测仪/train/labels/订单1806218_51_7104322.txt new file mode 100644 index 0000000..c4af097 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806218_51_7104322.txt @@ -0,0 +1 @@ +5 0.534475 0.507855 0.508120 0.521972 0.459181 0.619377 0.461073 0.649014 0.406482 0.756298 0.382018 0.777474 0.357543 0.835355 0.363195 0.862171 0.389550 0.873469 0.406482 0.865000 0.500588 0.893227 0.513772 0.907344 0.534475 0.917223 0.555179 0.904524 0.596586 0.838175 0.600346 0.807119 0.662457 0.680078 0.698224 0.550208 0.675640 0.548789 0.666228 0.547379 0.564591 0.521972 0.538235 0.506445 diff --git a/datasets/检测仪/train/labels/订单1806219_51_7104378.txt b/datasets/检测仪/train/labels/订单1806219_51_7104378.txt new file mode 100644 index 0000000..1878912 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806219_51_7104378.txt @@ -0,0 +1 @@ +5 0.478453 0.266567 0.448807 0.289153 0.460100 0.492427 0.475627 0.548893 0.481273 0.704173 0.467160 0.766280 0.482687 0.856627 0.503860 0.893327 0.550447 0.894740 0.553267 0.880627 0.681727 0.877800 0.688787 0.887680 0.717020 0.891920 0.746660 0.858040 0.756540 0.754993 0.739607 0.718287 0.731133 0.540420 0.749487 0.491013 0.746660 0.280687 0.719840 0.258100 0.691607 0.255273 0.681727 0.266567 0.522213 0.269393 0.512333 0.263747 diff --git a/datasets/检测仪/train/labels/订单1806225_51_7104423.txt b/datasets/检测仪/train/labels/订单1806225_51_7104423.txt new file mode 100644 index 0000000..87e5fe9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806225_51_7104423.txt @@ -0,0 +1 @@ +5 0.471307 0.380870 0.441187 0.396390 0.426133 0.554500 0.433667 0.579900 0.416720 0.702720 0.405427 0.739420 0.411080 0.801530 0.420493 0.818470 0.454373 0.826940 0.469427 0.818470 0.591760 0.828350 0.597413 0.835410 0.623760 0.842470 0.650107 0.826940 0.672693 0.753530 0.668933 0.723890 0.668933 0.596840 0.697160 0.561550 0.721640 0.413330 0.687760 0.386510 0.665173 0.389340 0.655760 0.397800 0.514600 0.393570 0.475067 0.385100 diff --git a/datasets/检测仪/train/labels/订单1806226_51_7104403.txt b/datasets/检测仪/train/labels/订单1806226_51_7104403.txt new file mode 100644 index 0000000..60eb301 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806226_51_7104403.txt @@ -0,0 +1 @@ +5 0.285078 0.394922 0.249310 0.410449 0.238021 0.550195 0.251198 0.581250 0.241784 0.698418 0.228607 0.725234 0.232370 0.787354 0.249310 0.805703 0.283190 0.807109 0.292604 0.800059 0.405534 0.795820 0.407422 0.804287 0.431888 0.807109 0.452591 0.792998 0.465768 0.732295 0.462005 0.705479 0.471406 0.588311 0.492109 0.547373 0.507174 0.427383 0.480820 0.409033 0.460117 0.409033 0.452591 0.416094 0.309544 0.404795 0.286953 0.396328 diff --git a/datasets/检测仪/train/labels/订单1806228_51_7104429.txt b/datasets/检测仪/train/labels/订单1806228_51_7104429.txt new file mode 100644 index 0000000..46565a4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806228_51_7104429.txt @@ -0,0 +1 @@ +5 0.354714 0.418916 0.317070 0.445732 0.328359 0.606660 0.352839 0.650420 0.366003 0.784531 0.358477 0.818408 0.375417 0.876279 0.399883 0.898867 0.426237 0.901689 0.437526 0.888984 0.571159 0.883340 0.586224 0.898867 0.595638 0.896045 0.631393 0.876279 0.633281 0.812764 0.625742 0.774648 0.618216 0.637715 0.637044 0.437266 0.606927 0.407627 0.574935 0.409033 0.557995 0.417500 0.388594 0.423154 0.358477 0.417500 diff --git a/datasets/检测仪/train/labels/订单1806231_51_7104704.txt b/datasets/检测仪/train/labels/订单1806231_51_7104704.txt new file mode 100644 index 0000000..462d2c0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806231_51_7104704.txt @@ -0,0 +1 @@ +5 0.285078 0.324336 0.256849 0.339863 0.251198 0.471143 0.262487 0.502197 0.247435 0.605254 0.236133 0.647598 0.234258 0.698418 0.253073 0.716768 0.283190 0.723828 0.300130 0.715361 0.403646 0.715361 0.418711 0.723828 0.446940 0.728057 0.463880 0.715361 0.478932 0.640537 0.463880 0.619365 0.473294 0.509258 0.492109 0.472559 0.507174 0.356807 0.478932 0.334219 0.460117 0.335625 0.456354 0.339863 0.320833 0.329980 0.294492 0.324336 diff --git a/datasets/检测仪/train/labels/订单1806234_51_7104480.txt b/datasets/检测仪/train/labels/订单1806234_51_7104480.txt new file mode 100644 index 0000000..5bc4e53 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806234_51_7104480.txt @@ -0,0 +1 @@ +5 0.262487 0.403389 0.241784 0.433027 0.294492 0.625010 0.315195 0.660303 0.356602 0.805703 0.347187 0.862168 0.388594 0.946865 0.431888 0.973682 0.469531 0.968037 0.482708 0.952510 0.625742 0.921455 0.638919 0.931338 0.680326 0.928516 0.706680 0.886162 0.695391 0.870635 0.695391 0.801465 0.663385 0.761943 0.620104 0.603838 0.616341 0.550195 0.578698 0.382217 0.529753 0.362451 0.510937 0.363857 0.499648 0.373740 0.300130 0.397744 diff --git a/datasets/检测仪/train/labels/订单1806239_51_7104590.txt b/datasets/检测仪/train/labels/订单1806239_51_7104590.txt new file mode 100644 index 0000000..c2aa04f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806239_51_7104590.txt @@ -0,0 +1 @@ +5 0.417752 0.481020 0.385765 0.499373 0.398941 0.644765 0.412105 0.694176 0.429046 0.788755 0.410222 0.815578 0.421516 0.863569 0.451634 0.893216 0.479869 0.894627 0.602209 0.891804 0.653033 0.894627 0.669961 0.826863 0.658680 0.798637 0.654915 0.687118 0.671843 0.653235 0.677490 0.495137 0.647386 0.471137 0.626680 0.475373 0.611621 0.481020 0.451634 0.486667 0.445987 0.478196 0.430928 0.476784 diff --git a/datasets/检测仪/train/labels/订单1806242_51_7104631.txt b/datasets/检测仪/train/labels/订单1806242_51_7104631.txt new file mode 100644 index 0000000..72d7973 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806242_51_7104631.txt @@ -0,0 +1 @@ +5 0.373778 0.317265 0.333000 0.341265 0.326722 0.459840 0.348678 0.486660 0.367500 0.595355 0.339267 0.623590 0.348678 0.671585 0.364367 0.694170 0.414556 0.702640 0.423967 0.691350 0.587089 0.698405 0.621600 0.708285 0.687467 0.706875 0.718844 0.681465 0.718844 0.588300 0.687467 0.466900 0.700022 0.430195 0.737667 0.313030 0.662378 0.279155 0.609044 0.281975 0.395733 0.315855 diff --git a/datasets/检测仪/train/labels/订单1806244_51_7104569.txt b/datasets/检测仪/train/labels/订单1806244_51_7104569.txt new file mode 100644 index 0000000..afed8f6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806244_51_7104569.txt @@ -0,0 +1 @@ +5 0.499764 0.404782 0.481769 0.409013 0.469062 0.530417 0.481769 0.553000 0.477534 0.654641 0.465885 0.692750 0.464827 0.766154 0.478591 0.800038 0.508236 0.815564 0.526236 0.802859 0.617284 0.815564 0.649043 0.822622 0.664928 0.804269 0.670221 0.708282 0.659635 0.681462 0.651163 0.567115 0.654337 0.533237 0.649043 0.424545 0.635284 0.410429 0.618341 0.411840 0.518822 0.401955 diff --git a/datasets/检测仪/train/labels/订单1806246_51_7104763.txt b/datasets/检测仪/train/labels/订单1806246_51_7104763.txt new file mode 100644 index 0000000..4b07398 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806246_51_7104763.txt @@ -0,0 +1 @@ +5 0.328359 0.414678 0.288841 0.441504 0.320833 0.617959 0.339661 0.650420 0.367891 0.808525 0.358477 0.866396 0.375417 0.966631 0.422474 0.997686 0.463880 0.999092 0.482708 0.986387 0.642682 0.956748 0.653984 0.966631 0.693503 0.969453 0.729271 0.932744 0.719857 0.908750 0.719857 0.821230 0.684089 0.780293 0.650221 0.630664 0.659622 0.569961 0.625742 0.413271 0.586224 0.385039 0.554219 0.390684 0.548581 0.396328 0.369779 0.417500 0.349062 0.413271 diff --git a/datasets/检测仪/train/labels/订单1806247_51_7104645.txt b/datasets/检测仪/train/labels/订单1806247_51_7104645.txt new file mode 100644 index 0000000..51ecaf5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806247_51_7104645.txt @@ -0,0 +1 @@ +5 0.486438 0.413382 0.452549 0.427500 0.429967 0.548897 0.439379 0.584191 0.422435 0.697120 0.409265 0.718297 0.399853 0.783235 0.411144 0.805821 0.435621 0.815699 0.458203 0.810049 0.554199 0.821348 0.574902 0.831225 0.589951 0.839694 0.625719 0.825576 0.648301 0.747941 0.640768 0.723946 0.646422 0.595490 0.678415 0.568664 0.699118 0.444436 0.670882 0.420441 0.648301 0.420441 0.640768 0.427500 0.510899 0.417623 0.490196 0.411973 diff --git a/datasets/检测仪/train/labels/订单1806248_51_7104713.txt b/datasets/检测仪/train/labels/订单1806248_51_7104713.txt new file mode 100644 index 0000000..03441b0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806248_51_7104713.txt @@ -0,0 +1 @@ +5 0.273776 0.310225 0.239909 0.338457 0.251198 0.584072 0.271901 0.625010 0.275664 0.805703 0.258724 0.877695 0.270013 0.966631 0.305781 0.994863 0.348281 1.000000 0.366367 1.000000 0.377305 0.990625 0.573047 0.989209 0.593750 0.994863 0.625742 0.999092 0.665273 0.963799 0.680326 0.863574 0.657747 0.812764 0.652096 0.617959 0.670924 0.555840 0.670924 0.337041 0.633281 0.307393 0.588099 0.303164 0.578698 0.313047 0.554219 0.314453 0.326484 0.313047 0.305781 0.307393 diff --git a/datasets/检测仪/train/labels/订单1806251_51_7104781.txt b/datasets/检测仪/train/labels/订单1806251_51_7104781.txt new file mode 100644 index 0000000..dba3fc4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806251_51_7104781.txt @@ -0,0 +1 @@ +5 0.388945 0.386441 0.355195 0.403382 0.325195 0.540304 0.338320 0.578422 0.330820 0.687118 0.308320 0.718176 0.306445 0.777461 0.319570 0.804284 0.349570 0.808520 0.357070 0.798637 0.467682 0.809931 0.473307 0.821216 0.501432 0.826863 0.522057 0.811343 0.559544 0.740755 0.546419 0.718176 0.563294 0.584069 0.587669 0.562892 0.619544 0.424549 0.595169 0.400559 0.568919 0.401971 0.559544 0.407618 0.413307 0.397735 0.400195 0.386441 diff --git a/datasets/检测仪/train/labels/订单1806252_51_7104609.txt b/datasets/检测仪/train/labels/订单1806252_51_7104609.txt new file mode 100644 index 0000000..24ed9a2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806252_51_7104609.txt @@ -0,0 +1 @@ +5 0.439375 0.217116 0.406558 0.260879 0.415024 0.530501 0.428789 0.586966 0.429849 0.790241 0.416084 0.860820 0.424556 0.970924 0.446357 1.000000 0.482075 1.000000 0.492314 0.989277 0.608770 0.986452 0.621475 0.996335 0.639473 0.997747 0.665942 0.970924 0.677588 0.860820 0.670176 0.798711 0.670176 0.595436 0.683940 0.534733 0.696646 0.265111 0.669116 0.224180 0.640532 0.224180 0.632065 0.234056 0.474316 0.234056 0.465845 0.224180 diff --git a/datasets/检测仪/train/labels/订单1806253_51_7104764.txt b/datasets/检测仪/train/labels/订单1806253_51_7104764.txt new file mode 100644 index 0000000..3f9d768 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806253_51_7104764.txt @@ -0,0 +1 @@ +5 0.486360 0.337100 0.454373 0.354040 0.465653 0.506500 0.486360 0.526260 0.488240 0.646250 0.482600 0.697070 0.493893 0.766240 0.527773 0.800120 0.567293 0.787410 0.704693 0.780360 0.751747 0.800120 0.787507 0.773300 0.783747 0.694250 0.774333 0.644840 0.746107 0.514970 0.755520 0.478270 0.746107 0.339930 0.714107 0.322990 0.687760 0.324400 0.678347 0.330050 0.531533 0.338520 diff --git a/datasets/检测仪/train/labels/订单1806254_51_7104737.txt b/datasets/检测仪/train/labels/订单1806254_51_7104737.txt new file mode 100644 index 0000000..e77ed10 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806254_51_7104737.txt @@ -0,0 +1 @@ +5 0.356296 0.229783 0.336219 0.248134 0.391435 0.332830 0.424059 0.345530 0.441620 0.409054 0.459198 0.442934 0.486790 0.485286 0.514398 0.490929 0.542006 0.485286 0.554552 0.472578 0.670000 0.458464 0.705123 0.442934 0.695093 0.407648 0.622315 0.303186 0.617299 0.282014 0.569614 0.200139 0.544522 0.188845 0.519414 0.197309 0.383904 0.218490 diff --git a/datasets/检测仪/train/labels/订单1806256_51_7104758.txt b/datasets/检测仪/train/labels/订单1806256_51_7104758.txt new file mode 100644 index 0000000..21211a7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806256_51_7104758.txt @@ -0,0 +1 @@ +5 0.419634 0.346912 0.387647 0.368088 0.389529 0.533245 0.412105 0.562892 0.417752 0.702647 0.404588 0.743578 0.412105 0.816990 0.468575 0.852275 0.491163 0.836745 0.639856 0.829686 0.645503 0.843804 0.673725 0.846627 0.709490 0.819814 0.711373 0.736520 0.692549 0.702647 0.681255 0.565716 0.690667 0.519137 0.683137 0.377971 0.651150 0.346912 0.626680 0.346912 0.622915 0.352559 0.451634 0.353971 0.427163 0.348324 diff --git a/datasets/检测仪/train/labels/订单1806259_51_7104978.txt b/datasets/检测仪/train/labels/订单1806259_51_7104978.txt new file mode 100644 index 0000000..3a98842 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806259_51_7104978.txt @@ -0,0 +1 @@ +5 0.217183 0.246737 0.160717 0.287675 0.172017 0.536125 0.196483 0.602469 0.204008 0.800094 0.175775 0.866444 0.192717 0.969494 0.224717 0.997725 0.251267 1.000000 0.293400 1.000000 0.300000 0.992075 0.491983 0.990669 0.508925 0.997725 0.551400 1.000000 0.562075 1.000000 0.599267 0.955375 0.618083 0.855150 0.608675 0.800094 0.603033 0.598231 0.629383 0.555887 0.657617 0.289087 0.616208 0.250975 0.567267 0.255213 0.550325 0.265094 0.275533 0.263681 0.256708 0.249563 diff --git a/datasets/检测仪/train/labels/订单1806260_51_7104740.txt b/datasets/检测仪/train/labels/订单1806260_51_7104740.txt new file mode 100644 index 0000000..1705aff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806260_51_7104740.txt @@ -0,0 +1 @@ +5 0.254853 0.510740 0.224747 0.531910 0.230387 0.697070 0.247333 0.735180 0.241680 0.846700 0.228507 0.880580 0.239800 0.939870 0.258627 0.958220 0.292507 0.962450 0.300027 0.953990 0.418600 0.958220 0.433667 0.968100 0.454373 0.969510 0.490133 0.952570 0.508947 0.879170 0.507067 0.740830 0.529653 0.699890 0.552240 0.534730 0.520240 0.507910 0.486360 0.512150 0.471307 0.523440 0.322613 0.516380 0.307560 0.505090 0.260507 0.500850 diff --git a/datasets/检测仪/train/labels/订单1806265_51_7104815.txt b/datasets/检测仪/train/labels/订单1806265_51_7104815.txt new file mode 100644 index 0000000..78515fb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806265_51_7104815.txt @@ -0,0 +1 @@ +5 0.279427 0.290459 0.236133 0.311631 0.230495 0.499375 0.251198 0.541729 0.245547 0.713945 0.221081 0.783115 0.230495 0.879102 0.266250 0.921455 0.317070 0.922861 0.343424 0.905928 0.514701 0.904512 0.527878 0.917217 0.571159 0.921455 0.620104 0.879102 0.633281 0.776055 0.610690 0.723828 0.599401 0.553018 0.614453 0.510674 0.608802 0.307393 0.569284 0.277754 0.546693 0.286221 0.527878 0.291865 0.328359 0.293281 diff --git a/datasets/检测仪/train/labels/订单1806269_51_7104849.txt b/datasets/检测仪/train/labels/订单1806269_51_7104849.txt new file mode 100644 index 0000000..216cde1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806269_51_7104849.txt @@ -0,0 +1,2 @@ +5 0.265779 0.023765 0.239309 0.054824 0.254132 0.262333 0.270015 0.299033 0.277422 0.428902 0.272127 0.481131 0.280598 0.540425 0.292245 0.558771 0.312363 0.565830 0.318716 0.555948 0.391765 0.558771 0.394941 0.565830 0.418235 0.571477 0.427760 0.555948 0.446819 0.483954 0.439407 0.454314 0.439407 0.315974 0.449995 0.259510 0.457407 0.066118 0.441525 0.033647 0.415059 0.033647 0.411882 0.037882 0.302833 0.042118 0.292245 0.026588 +5 0.145593 0.285837 0.135907 0.299673 0.130373 0.400242 0.135216 0.422386 0.130373 0.502654 0.123451 0.528490 0.124838 0.579235 0.131755 0.593993 0.139368 0.597686 0.148363 0.590307 0.196804 0.595843 0.207873 0.602301 0.219637 0.591229 0.225863 0.536791 0.223098 0.518340 0.225172 0.427922 0.232093 0.401163 0.236936 0.307980 0.228632 0.291373 0.221020 0.293216 0.216176 0.296908 0.162201 0.295065 diff --git a/datasets/检测仪/train/labels/订单1806270_51_7104958.txt b/datasets/检测仪/train/labels/订单1806270_51_7104958.txt new file mode 100644 index 0000000..be4d93c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806270_51_7104958.txt @@ -0,0 +1 @@ +5 0.407307 0.438740 0.367787 0.458500 0.354613 0.620840 0.371547 0.642020 0.356493 0.770470 0.341440 0.817060 0.341440 0.880580 0.356493 0.905990 0.386613 0.918690 0.399787 0.904580 0.525893 0.914460 0.535307 0.924340 0.571067 0.931400 0.599293 0.901760 0.616227 0.821290 0.606827 0.800120 0.616227 0.658960 0.636933 0.626490 0.648227 0.469800 0.618120 0.444390 0.591760 0.447210 0.588000 0.454270 0.429893 0.445800 diff --git a/datasets/检测仪/train/labels/订单1806273_51_7104884.txt b/datasets/检测仪/train/labels/订单1806273_51_7104884.txt new file mode 100644 index 0000000..fe8a95b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806273_51_7104884.txt @@ -0,0 +1 @@ +5 0.190867 0.451450 0.170160 0.485330 0.200280 0.634960 0.224747 0.667430 0.254853 0.795880 0.254853 0.849520 0.279320 0.932810 0.309440 0.956810 0.339560 0.955400 0.352733 0.939870 0.492013 0.913050 0.510827 0.922930 0.539067 0.921520 0.569173 0.877760 0.567293 0.800120 0.535307 0.763420 0.490133 0.625080 0.503307 0.582730 0.460013 0.430270 0.420493 0.410510 0.396013 0.417570 0.390373 0.426040 0.236040 0.452860 diff --git a/datasets/检测仪/train/labels/订单1806274_51_7104931.txt b/datasets/检测仪/train/labels/订单1806274_51_7104931.txt new file mode 100644 index 0000000..f628a68 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806274_51_7104931.txt @@ -0,0 +1 @@ +5 0.266256 0.553021 0.239906 0.568546 0.238022 0.698417 0.251194 0.721004 0.241783 0.829700 0.238022 0.863579 0.232372 0.911571 0.286956 0.945450 0.303894 0.922867 0.405533 0.927100 0.439411 0.939804 0.478939 0.914396 0.478939 0.845225 0.463883 0.824050 0.456350 0.715358 0.467644 0.677242 0.465761 0.558667 0.445061 0.538904 0.422472 0.544550 0.303894 0.553021 diff --git a/datasets/检测仪/train/labels/订单1806280_51_7105035.txt b/datasets/检测仪/train/labels/订单1806280_51_7105035.txt new file mode 100644 index 0000000..b2cacbe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806280_51_7105035.txt @@ -0,0 +1 @@ +5 0.489747 0.241160 0.451633 0.275040 0.457280 0.481133 0.474220 0.537600 0.478453 0.697113 0.461513 0.771927 0.471393 0.872153 0.510920 0.939913 0.544800 0.931447 0.558913 0.920153 0.695840 0.921560 0.714193 0.937087 0.746660 0.939913 0.783367 0.894740 0.791833 0.794513 0.776307 0.733813 0.766427 0.539013 0.779127 0.467020 0.770660 0.255273 0.742427 0.228453 0.712780 0.228453 0.705727 0.238333 0.533507 0.251040 diff --git a/datasets/检测仪/train/labels/订单1806282_51_7105048.txt b/datasets/检测仪/train/labels/订单1806282_51_7105048.txt new file mode 100644 index 0000000..f3cca0a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806282_51_7105048.txt @@ -0,0 +1 @@ +5 0.318958 0.174707 0.256849 0.214229 0.256849 0.442910 0.283190 0.513496 0.271901 0.712529 0.254961 0.788760 0.273776 0.890400 0.305781 0.927100 0.364128 0.935566 0.379180 0.915811 0.578698 0.915811 0.599401 0.932744 0.648333 0.939805 0.693503 0.898867 0.697266 0.732295 0.687865 0.514902 0.719857 0.455615 0.723620 0.207168 0.678451 0.174707 0.644570 0.177529 0.633281 0.183174 0.366003 0.185996 diff --git a/datasets/检测仪/train/labels/订单1806284_51_7105002.txt b/datasets/检测仪/train/labels/订单1806284_51_7105002.txt new file mode 100644 index 0000000..94a3b38 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806284_51_7105002.txt @@ -0,0 +1 @@ +5 0.160817 0.397855 0.128824 0.421850 0.141993 0.596900 0.166471 0.629363 0.181520 0.756409 0.162696 0.795931 0.181520 0.831225 0.196585 0.865110 0.249281 0.865110 0.365980 0.856630 0.405507 0.865110 0.420556 0.850993 0.458203 0.786054 0.454444 0.757819 0.454444 0.639240 0.475147 0.602549 0.490196 0.433150 0.446912 0.392206 0.420556 0.390797 0.403611 0.400686 0.236111 0.396446 0.215408 0.390797 diff --git a/datasets/检测仪/train/labels/订单1806286_51_7105055.txt b/datasets/检测仪/train/labels/订单1806286_51_7105055.txt new file mode 100644 index 0000000..04a9ba5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806286_51_7105055.txt @@ -0,0 +1 @@ +5 0.145794 0.276338 0.123203 0.303164 0.130742 0.457031 0.142031 0.488086 0.162734 0.632070 0.142031 0.675830 0.151445 0.757705 0.174023 0.785937 0.209792 0.788760 0.228607 0.770410 0.373542 0.764766 0.386706 0.774648 0.405534 0.777471 0.433763 0.770410 0.467643 0.740762 0.475169 0.668770 0.452591 0.625010 0.437526 0.493730 0.448828 0.444326 0.445065 0.289043 0.409297 0.259404 0.398008 0.265049 0.198490 0.272109 diff --git a/datasets/检测仪/train/labels/订单1806291_51_7105064.txt b/datasets/检测仪/train/labels/订单1806291_51_7105064.txt new file mode 100644 index 0000000..e59591b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806291_51_7105064.txt @@ -0,0 +1 @@ +5 0.448906 0.243939 0.425615 0.262292 0.444668 0.454271 0.457373 0.627904 0.447847 0.678717 0.453140 0.769062 0.472197 0.805768 0.489136 0.807181 0.497607 0.793060 0.605596 0.794473 0.627827 0.807181 0.647944 0.783184 0.651118 0.685781 0.640532 0.642018 0.625713 0.481094 0.632065 0.428861 0.621475 0.274993 0.604536 0.256647 0.597124 0.255234 0.479609 0.245352 diff --git a/datasets/检测仪/train/labels/订单1806292_51_7105155.txt b/datasets/检测仪/train/labels/订单1806292_51_7105155.txt new file mode 100644 index 0000000..9264dc1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806292_51_7105155.txt @@ -0,0 +1 @@ +5 0.262489 0.473971 0.241783 0.488083 0.290722 0.629246 0.309544 0.650421 0.345306 0.767587 0.352833 0.797229 0.377300 0.855108 0.401767 0.873458 0.433767 0.869225 0.439411 0.850871 0.546694 0.831108 0.582456 0.839579 0.595633 0.814171 0.588106 0.746413 0.569283 0.722417 0.525994 0.613721 0.529756 0.574196 0.497761 0.451383 0.462000 0.431621 0.445061 0.437267 0.443178 0.440092 0.320833 0.468321 diff --git a/datasets/检测仪/train/labels/订单1806293_51_7105244.txt b/datasets/检测仪/train/labels/订单1806293_51_7105244.txt new file mode 100644 index 0000000..68de401 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806293_51_7105244.txt @@ -0,0 +1 @@ +5 0.580169 0.417500 0.567044 0.394912 0.531432 0.387853 0.503307 0.394912 0.351445 0.438667 0.327070 0.458431 0.184583 0.497961 0.137721 0.500784 0.045846 0.547363 0.058971 0.571363 0.079596 0.574186 0.122721 0.637706 0.122721 0.653235 0.126471 0.665941 0.152708 0.674412 0.237083 0.661706 0.268958 0.649000 0.392695 0.615127 0.432057 0.620775 0.617669 0.575598 0.640169 0.550186 0.627044 0.530422 0.615794 0.527598 0.574544 0.437255 diff --git a/datasets/检测仪/train/labels/订单1806296_51_7105118.txt b/datasets/检测仪/train/labels/订单1806296_51_7105118.txt new file mode 100644 index 0000000..3901002 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806296_51_7105118.txt @@ -0,0 +1 @@ +5 0.239909 0.610898 0.204141 0.617959 0.136380 0.723828 0.108151 0.752061 0.113802 0.774648 0.128854 0.783115 0.300130 0.833936 0.326484 0.833936 0.448828 0.886162 0.488346 0.900283 0.557995 0.922861 0.578698 0.914395 0.608802 0.893223 0.610690 0.876279 0.635156 0.818408 0.642682 0.807109 0.663385 0.783115 0.655859 0.761943 0.542930 0.725234 0.430000 0.687129 0.401771 0.671592 0.247435 0.612305 diff --git a/datasets/检测仪/train/labels/订单1806298_51_7105110.txt b/datasets/检测仪/train/labels/订单1806298_51_7105110.txt new file mode 100644 index 0000000..24d57f7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806298_51_7105110.txt @@ -0,0 +1 @@ +5 0.385765 0.355382 0.361294 0.373735 0.363176 0.503608 0.376353 0.523363 0.380118 0.613716 0.366941 0.651824 0.372588 0.702647 0.387647 0.725225 0.408340 0.725225 0.427163 0.713941 0.509987 0.716765 0.530693 0.722402 0.551386 0.722402 0.570209 0.709706 0.585268 0.644765 0.566444 0.625000 0.566444 0.529010 0.583386 0.502196 0.594680 0.370912 0.570209 0.353971 0.551386 0.355382 0.543856 0.361029 0.423399 0.363853 diff --git a/datasets/检测仪/train/labels/订单1806301_51_7105200.txt b/datasets/检测仪/train/labels/订单1806301_51_7105200.txt new file mode 100644 index 0000000..fcac1a6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806301_51_7105200.txt @@ -0,0 +1 @@ +5 0.450600 0.464150 0.407307 0.479680 0.358373 0.626490 0.365907 0.664600 0.316973 0.777530 0.290613 0.822700 0.275560 0.900340 0.303800 0.945520 0.339560 0.953990 0.360253 0.938460 0.475067 0.949750 0.507067 0.962450 0.540947 0.945520 0.567293 0.877760 0.576707 0.829760 0.601173 0.711190 0.629413 0.674480 0.665173 0.531910 0.653880 0.510730 0.633173 0.506500 0.492013 0.475440 diff --git a/datasets/检测仪/train/labels/订单1806302_51_7105091.txt b/datasets/检测仪/train/labels/订单1806302_51_7105091.txt new file mode 100644 index 0000000..a66cdde --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806302_51_7105091.txt @@ -0,0 +1 @@ +5 0.401667 0.346990 0.375320 0.366750 0.397907 0.516380 0.411080 0.543200 0.414840 0.666010 0.416720 0.711190 0.431787 0.766240 0.460013 0.784590 0.492013 0.788830 0.505187 0.774710 0.610587 0.756360 0.657640 0.773300 0.672693 0.749300 0.678347 0.685780 0.663293 0.656130 0.638813 0.527670 0.650107 0.478270 0.633173 0.355460 0.608707 0.339930 0.584240 0.339930 0.450600 0.352630 diff --git a/datasets/检测仪/train/labels/订单1806303_51_7105175.txt b/datasets/检测仪/train/labels/订单1806303_51_7105175.txt new file mode 100644 index 0000000..64471e5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806303_51_7105175.txt @@ -0,0 +1 @@ +5 0.494028 0.370946 0.465787 0.385061 0.469560 0.499401 0.471435 0.517752 0.467674 0.603863 0.462025 0.629271 0.467674 0.685738 0.482731 0.708325 0.505312 0.711146 0.510961 0.701259 0.535428 0.704089 0.601308 0.702674 0.612604 0.709731 0.631424 0.713967 0.665301 0.695616 0.672836 0.647622 0.663426 0.613741 0.665301 0.523394 0.676597 0.478229 0.674711 0.393524 0.661539 0.373767 0.642720 0.375174 0.635185 0.379410 0.527905 0.373767 0.505312 0.370946 diff --git a/datasets/检测仪/train/labels/订单1806306_51_7105187.txt b/datasets/检测仪/train/labels/订单1806306_51_7105187.txt new file mode 100644 index 0000000..35c1f2a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806306_51_7105187.txt @@ -0,0 +1 @@ +5 0.358477 0.434443 0.326484 0.457031 0.345299 0.609482 0.366003 0.641953 0.377305 0.757705 0.367891 0.812764 0.381068 0.884756 0.405534 0.914395 0.445065 0.918633 0.463880 0.907334 0.584336 0.888984 0.595638 0.904512 0.623867 0.910156 0.663385 0.874873 0.663385 0.798643 0.648333 0.752061 0.627630 0.626426 0.631393 0.579844 0.616341 0.431621 0.580573 0.411855 0.559870 0.416094 0.548581 0.425977 0.398008 0.437266 0.366003 0.431621 diff --git a/datasets/检测仪/train/labels/订单1806307_51_7105144.txt b/datasets/检测仪/train/labels/订单1806307_51_7105144.txt new file mode 100644 index 0000000..da217ef --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806307_51_7105144.txt @@ -0,0 +1 @@ +5 0.437526 0.320098 0.409297 0.346924 0.431888 0.510674 0.454466 0.554434 0.469531 0.671592 0.458229 0.719590 0.488346 0.797227 0.514701 0.819814 0.544818 0.819814 0.559870 0.805703 0.687865 0.798643 0.704805 0.807109 0.744323 0.811348 0.768789 0.778877 0.770677 0.701240 0.749974 0.667363 0.729271 0.523379 0.738672 0.488086 0.721732 0.327158 0.680326 0.303164 0.650221 0.304570 0.650221 0.311631 0.495872 0.328574 diff --git a/datasets/检测仪/train/labels/订单1806308_51_7105217.txt b/datasets/检测仪/train/labels/订单1806308_51_7105217.txt new file mode 100644 index 0000000..c38238b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806308_51_7105217.txt @@ -0,0 +1 @@ +5 0.371654 0.385039 0.345299 0.409033 0.347187 0.567139 0.364128 0.598193 0.364128 0.715361 0.356602 0.766172 0.360365 0.835342 0.388594 0.863574 0.418711 0.866396 0.426237 0.852285 0.554219 0.852285 0.571159 0.860752 0.593750 0.859346 0.616341 0.836758 0.638919 0.764766 0.620104 0.733711 0.620104 0.601016 0.631393 0.558662 0.646445 0.407627 0.614453 0.382217 0.582461 0.387861 0.578698 0.392090 0.414948 0.390684 0.396120 0.383623 diff --git a/datasets/检测仪/train/labels/订单1806309_51_7105279.txt b/datasets/检测仪/train/labels/订单1806309_51_7105279.txt new file mode 100644 index 0000000..801bf9d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806309_51_7105279.txt @@ -0,0 +1 @@ +5 0.251198 0.471143 0.221081 0.493730 0.249310 0.650420 0.268138 0.671592 0.277552 0.781699 0.264375 0.819814 0.277552 0.886162 0.296367 0.904512 0.334010 0.907334 0.345299 0.896045 0.458229 0.886162 0.467643 0.894629 0.497760 0.893223 0.518464 0.870635 0.529753 0.795820 0.509049 0.767588 0.490234 0.653242 0.512813 0.616543 0.490234 0.471143 0.462005 0.452793 0.443177 0.454209 0.437526 0.465498 0.298255 0.472559 0.253073 0.469736 diff --git a/datasets/检测仪/train/labels/订单1806310_51_7105820.txt b/datasets/检测仪/train/labels/订单1806310_51_7105820.txt new file mode 100644 index 0000000..988b29e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806310_51_7105820.txt @@ -0,0 +1 @@ +5 0.380056 0.459840 0.336133 0.476780 0.326722 0.602415 0.351822 0.619355 0.345544 0.711110 0.336133 0.732285 0.333000 0.784515 0.367500 0.800045 0.398878 0.800045 0.411422 0.791575 0.549444 0.790160 0.568267 0.798630 0.602778 0.800045 0.634144 0.784515 0.649833 0.736520 0.631011 0.715345 0.646689 0.623590 0.668644 0.595355 0.690611 0.483840 0.643556 0.459840 0.621600 0.471135 0.427100 0.466900 diff --git a/datasets/检测仪/train/labels/订单1806311_51_7105525.txt b/datasets/检测仪/train/labels/订单1806311_51_7105525.txt new file mode 100644 index 0000000..b29ffae --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806311_51_7105525.txt @@ -0,0 +1 @@ +5 0.490234 0.424561 0.454466 0.438682 0.398008 0.562900 0.394245 0.593955 0.350951 0.699824 0.324596 0.719590 0.305781 0.770410 0.307656 0.802881 0.326484 0.805703 0.335898 0.798643 0.426237 0.838164 0.435651 0.848047 0.458229 0.857930 0.486471 0.849463 0.535404 0.790176 0.531641 0.763350 0.588099 0.661719 0.620104 0.619365 0.687865 0.502197 0.674687 0.475381 0.648333 0.468320 0.631393 0.471143 0.516576 0.441504 diff --git a/datasets/检测仪/train/labels/订单1806314_51_7105323.txt b/datasets/检测仪/train/labels/订单1806314_51_7105323.txt new file mode 100644 index 0000000..96891bd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806314_51_7105323.txt @@ -0,0 +1 @@ +5 0.324596 0.502197 0.302018 0.527607 0.354714 0.671592 0.384831 0.701240 0.418711 0.814170 0.428125 0.859346 0.458229 0.918633 0.480820 0.935566 0.520352 0.924277 0.527878 0.911572 0.635156 0.884756 0.646445 0.897461 0.676563 0.896045 0.684089 0.869229 0.680326 0.815586 0.652096 0.753467 0.616341 0.657480 0.616341 0.605254 0.576810 0.482441 0.541055 0.465498 0.514701 0.464092 0.509049 0.472559 0.371654 0.505029 diff --git a/datasets/检测仪/train/labels/订单1806315_51_7105307.txt b/datasets/检测仪/train/labels/订单1806315_51_7105307.txt new file mode 100644 index 0000000..ababfff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806315_51_7105307.txt @@ -0,0 +1 @@ +5 0.309440 0.479680 0.281213 0.493800 0.286853 0.602490 0.303800 0.632130 0.311320 0.719660 0.294387 0.753530 0.305680 0.800120 0.320733 0.818470 0.345200 0.821290 0.354613 0.811410 0.444960 0.807180 0.467547 0.817060 0.492013 0.800120 0.503307 0.743650 0.490133 0.725300 0.480720 0.629310 0.495773 0.591200 0.499533 0.485330 0.461893 0.469800 0.450600 0.475440 0.343320 0.479680 diff --git a/datasets/检测仪/train/labels/订单1806318_51_7105355.txt b/datasets/检测仪/train/labels/订单1806318_51_7105355.txt new file mode 100644 index 0000000..08947e9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806318_51_7105355.txt @@ -0,0 +1 @@ +5 0.392357 0.444326 0.356602 0.457031 0.318958 0.581250 0.326484 0.613721 0.294492 0.712529 0.285078 0.764766 0.271901 0.811348 0.283190 0.835342 0.298255 0.840996 0.315195 0.833936 0.411185 0.849463 0.418711 0.859346 0.454466 0.869229 0.475169 0.857930 0.510937 0.790176 0.503411 0.756299 0.525990 0.654658 0.552344 0.619365 0.601276 0.495146 0.580573 0.469736 0.546693 0.462676 0.537292 0.472559 0.431888 0.452793 diff --git a/datasets/检测仪/train/labels/订单1806319_51_7105277.txt b/datasets/检测仪/train/labels/订单1806319_51_7105277.txt new file mode 100644 index 0000000..67472a4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806319_51_7105277.txt @@ -0,0 +1 @@ +5 0.520344 0.448558 0.486467 0.461262 0.482700 0.602425 0.497761 0.629246 0.493994 0.730883 0.478939 0.767587 0.477056 0.824050 0.488350 0.848050 0.509050 0.853696 0.529756 0.845225 0.637039 0.856521 0.659628 0.870633 0.689739 0.853696 0.708561 0.787350 0.697267 0.764763 0.702917 0.656067 0.723622 0.610896 0.746206 0.482437 0.725500 0.454204 0.691622 0.452796 0.687861 0.461262 0.556106 0.458442 0.529756 0.448558 diff --git a/datasets/检测仪/train/labels/订单1806323_51_7105337.txt b/datasets/检测仪/train/labels/订单1806323_51_7105337.txt new file mode 100644 index 0000000..d6e5c0f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806323_51_7105337.txt @@ -0,0 +1 @@ +5 0.557995 0.365273 0.527878 0.385039 0.531641 0.538906 0.542930 0.561494 0.544818 0.660303 0.539167 0.694180 0.548581 0.761943 0.563633 0.780293 0.584336 0.781699 0.599401 0.768994 0.712331 0.770410 0.746211 0.784531 0.763151 0.766172 0.780091 0.708301 0.763151 0.680068 0.763151 0.567139 0.778203 0.520557 0.798906 0.390684 0.765026 0.365273 0.736797 0.363857 0.734909 0.370918 0.597513 0.373740 0.561758 0.368096 diff --git a/datasets/检测仪/train/labels/订单1806324_51_7105310.txt b/datasets/检测仪/train/labels/订单1806324_51_7105310.txt new file mode 100644 index 0000000..4cdc316 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806324_51_7105310.txt @@ -0,0 +1 @@ +5 0.582461 0.322920 0.548581 0.346924 0.552344 0.503613 0.573047 0.545957 0.571159 0.681475 0.561758 0.722412 0.576810 0.792998 0.601276 0.821230 0.633281 0.832520 0.653984 0.819814 0.793255 0.826875 0.838437 0.842402 0.870430 0.822637 0.879844 0.739355 0.861016 0.698418 0.855378 0.545957 0.876081 0.479619 0.874193 0.334219 0.838437 0.313047 0.804557 0.313047 0.798906 0.321514 0.631393 0.327158 0.589987 0.324336 diff --git a/datasets/检测仪/train/labels/订单1806325_51_7105633.txt b/datasets/检测仪/train/labels/订单1806325_51_7105633.txt new file mode 100644 index 0000000..e472ffd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806325_51_7105633.txt @@ -0,0 +1 @@ +5 0.318958 0.266465 0.288841 0.284814 0.296367 0.434443 0.313307 0.473965 0.313307 0.603838 0.303893 0.634893 0.307656 0.699824 0.324596 0.726650 0.356602 0.725234 0.367891 0.712529 0.486471 0.704063 0.499648 0.715361 0.522227 0.716768 0.546693 0.701240 0.557995 0.633486 0.544818 0.606660 0.546693 0.471143 0.565521 0.441504 0.573047 0.297520 0.544818 0.270693 0.522227 0.272109 0.516576 0.273516 0.354714 0.266465 diff --git a/datasets/检测仪/train/labels/订单1806327_51_7105361.txt b/datasets/检测仪/train/labels/订单1806327_51_7105361.txt new file mode 100644 index 0000000..fc88ca4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806327_51_7105361.txt @@ -0,0 +1 @@ +5 0.450703 0.500791 0.411185 0.503613 0.311419 0.629248 0.311419 0.654658 0.219206 0.764766 0.183438 0.790176 0.140143 0.855107 0.145794 0.884756 0.157083 0.897461 0.183438 0.887578 0.298255 0.942627 0.303893 0.963799 0.345299 0.960977 0.418711 0.888984 0.424362 0.848047 0.497760 0.752061 0.542930 0.719590 0.638919 0.592549 0.620104 0.568545 0.601276 0.562900 0.584336 0.555840 0.467643 0.512080 diff --git a/datasets/检测仪/train/labels/订单1806328_51_7105439.txt b/datasets/检测仪/train/labels/订单1806328_51_7105439.txt new file mode 100644 index 0000000..73d856a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806328_51_7105439.txt @@ -0,0 +1 @@ +5 0.336824 0.387853 0.314235 0.403382 0.327412 0.510667 0.342471 0.524775 0.348118 0.608069 0.346235 0.636294 0.348118 0.671588 0.359412 0.687118 0.385765 0.688529 0.470458 0.678647 0.494928 0.684294 0.509987 0.667353 0.517516 0.612304 0.504340 0.596775 0.500575 0.519137 0.502458 0.502196 0.500575 0.397735 0.485516 0.382206 0.474222 0.385029 0.466693 0.387853 0.365059 0.393500 diff --git a/datasets/检测仪/train/labels/订单1806330_51_7105483.txt b/datasets/检测仪/train/labels/订单1806330_51_7105483.txt new file mode 100644 index 0000000..8174f1c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806330_51_7105483.txt @@ -0,0 +1 @@ +5 0.033971 0.346251 0.002215 0.368835 0.006445 0.409781 0.018088 0.422480 0.021272 0.596113 0.008564 0.628581 0.008564 0.656817 0.111254 0.696332 0.158901 0.690692 0.338884 0.694925 0.376998 0.707636 0.604619 0.738685 0.637439 0.701984 0.637439 0.665283 0.634265 0.649758 0.638503 0.425306 0.649092 0.418247 0.651202 0.385779 0.621557 0.337785 0.606739 0.340611 0.405580 0.334960 0.362171 0.353310 0.190666 0.347670 0.130311 0.322261 0.040320 0.342018 diff --git a/datasets/检测仪/train/labels/订单1806331_51_7105381.txt b/datasets/检测仪/train/labels/订单1806331_51_7105381.txt new file mode 100644 index 0000000..02c1e1e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806331_51_7105381.txt @@ -0,0 +1 @@ +5 0.546419 0.327147 0.512682 0.352559 0.525807 0.500784 0.538919 0.534657 0.544544 0.625000 0.533307 0.670176 0.552044 0.722402 0.567044 0.740755 0.593294 0.742167 0.604544 0.733696 0.715156 0.737931 0.730156 0.746402 0.745156 0.747814 0.769531 0.730873 0.788281 0.673000 0.773281 0.650412 0.769531 0.526186 0.793906 0.485255 0.803268 0.344088 0.771406 0.321510 0.741406 0.320098 0.739531 0.327147 0.591419 0.339853 diff --git a/datasets/检测仪/train/labels/订单1806333_51_7105436.txt b/datasets/检测仪/train/labels/订单1806333_51_7105436.txt new file mode 100644 index 0000000..e04a5fb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806333_51_7105436.txt @@ -0,0 +1 @@ +5 0.294492 0.262227 0.254961 0.289043 0.239909 0.483848 0.258724 0.512080 0.245547 0.673008 0.230495 0.725234 0.249310 0.814170 0.273776 0.839580 0.307656 0.842402 0.326484 0.821230 0.475169 0.824053 0.484583 0.838164 0.514701 0.840996 0.542930 0.821230 0.573047 0.735117 0.554219 0.688535 0.567396 0.526201 0.584336 0.475381 0.603164 0.305986 0.573047 0.277754 0.541055 0.273516 0.535404 0.280576 0.341536 0.272109 diff --git a/datasets/检测仪/train/labels/订单1806334_51_7105428.txt b/datasets/检测仪/train/labels/订单1806334_51_7105428.txt new file mode 100644 index 0000000..559d38e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806334_51_7105428.txt @@ -0,0 +1 @@ +5 0.040391 0.273516 0.034753 0.317275 0.215430 0.510674 0.245547 0.524785 0.358477 0.668770 0.377305 0.712529 0.462005 0.785937 0.509049 0.792998 0.537292 0.774648 0.539167 0.754883 0.674687 0.692773 0.689740 0.701240 0.712331 0.682891 0.729271 0.650420 0.684089 0.569961 0.637044 0.531846 0.531641 0.394922 0.524115 0.344102 0.382943 0.163408 0.332135 0.149297 0.307656 0.154941 0.296367 0.170469 0.089336 0.255166 diff --git a/datasets/检测仪/train/labels/订单1806336_51_7105410.txt b/datasets/检测仪/train/labels/订单1806336_51_7105410.txt new file mode 100644 index 0000000..1eec0a7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806336_51_7105410.txt @@ -0,0 +1 @@ +5 0.303890 0.410553 0.290130 0.452900 0.311305 0.498073 0.371650 0.651940 0.367415 0.681587 0.373770 0.702760 0.407645 0.721113 0.434115 0.704173 0.577040 0.601120 0.607745 0.561600 0.749615 0.472667 0.794080 0.465607 0.870305 0.397847 0.886190 0.352680 0.869250 0.313153 0.859720 0.307507 0.803605 0.184693 0.800430 0.135287 0.762315 0.115527 0.696675 0.140933 0.639505 0.195987 0.506105 0.296213 0.454230 0.308913 0.311305 0.402087 diff --git a/datasets/检测仪/train/labels/订单1806337_51_7105549.txt b/datasets/检测仪/train/labels/订单1806337_51_7105549.txt new file mode 100644 index 0000000..b4e195a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806337_51_7105549.txt @@ -0,0 +1 @@ +5 0.227660 0.414676 0.203190 0.448549 0.233307 0.626412 0.255895 0.664529 0.276588 0.807108 0.270954 0.864980 0.289765 0.931324 0.319882 0.960971 0.357529 0.963794 0.376353 0.944029 0.517516 0.922853 0.562680 0.934147 0.592797 0.897451 0.592797 0.826863 0.573974 0.785931 0.541974 0.640529 0.553268 0.601010 0.530693 0.417500 0.489281 0.401971 0.468575 0.401971 0.461046 0.409029 0.286000 0.423137 0.237072 0.414676 diff --git a/datasets/检测仪/train/labels/订单1806340_51_7105570.txt b/datasets/检测仪/train/labels/订单1806340_51_7105570.txt new file mode 100644 index 0000000..d1c30cb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806340_51_7105570.txt @@ -0,0 +1 @@ +5 0.424356 0.448558 0.390478 0.469733 0.388594 0.627837 0.399889 0.663125 0.384828 0.831108 0.386711 0.891808 0.409300 0.915808 0.426239 0.918629 0.439411 0.905925 0.573044 0.914396 0.580578 0.929925 0.606928 0.934158 0.623867 0.914396 0.655861 0.833933 0.640806 0.808525 0.642689 0.678654 0.661506 0.633483 0.676567 0.476792 0.650217 0.451383 0.625744 0.455617 0.469528 0.458442 diff --git a/datasets/检测仪/train/labels/订单1806342_51_7105897.txt b/datasets/检测仪/train/labels/订单1806342_51_7105897.txt new file mode 100644 index 0000000..f456023 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806342_51_7105897.txt @@ -0,0 +1 @@ +5 0.352794 0.434559 0.326454 0.455735 0.328333 0.637831 0.349036 0.674534 0.362206 0.846752 0.350915 0.880637 0.360327 0.952623 0.382908 0.983676 0.426209 0.989326 0.437500 0.972390 0.591830 0.969571 0.621944 0.986507 0.663350 0.958272 0.676536 0.884865 0.665245 0.838284 0.650180 0.673125 0.663350 0.639240 0.665245 0.445858 0.629477 0.421850 0.612533 0.419032 0.595605 0.428909 0.394216 0.438799 diff --git a/datasets/检测仪/train/labels/订单1806343_51_7105589.txt b/datasets/检测仪/train/labels/订单1806343_51_7105589.txt new file mode 100644 index 0000000..c4335ae --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806343_51_7105589.txt @@ -0,0 +1 @@ +5 0.492372 0.447216 0.475409 0.468393 0.476463 0.609554 0.482829 0.633555 0.490250 0.756364 0.482829 0.800122 0.487073 0.866469 0.495555 0.891875 0.515701 0.893287 0.519945 0.880584 0.595238 0.881997 0.611140 0.897524 0.631293 0.880584 0.640835 0.800122 0.628110 0.770479 0.624927 0.639196 0.633409 0.599675 0.632354 0.459919 0.614323 0.431688 0.600537 0.437338 0.594177 0.442979 0.513579 0.450041 0.498738 0.447216 diff --git a/datasets/检测仪/train/labels/订单1806345_51_7105509.txt b/datasets/检测仪/train/labels/订单1806345_51_7105509.txt new file mode 100644 index 0000000..68e3c93 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806345_51_7105509.txt @@ -0,0 +1 @@ +5 0.104388 0.269287 0.068620 0.297520 0.093099 0.468320 0.108151 0.490908 0.123203 0.605254 0.111914 0.641953 0.121328 0.698418 0.142031 0.721006 0.172148 0.723828 0.181549 0.712529 0.302018 0.706885 0.309544 0.719590 0.334010 0.721006 0.354714 0.704063 0.379180 0.639131 0.367891 0.599600 0.356602 0.485264 0.373542 0.451387 0.377305 0.291865 0.339661 0.265049 0.315195 0.267871 0.305781 0.272109 0.153320 0.274932 diff --git a/datasets/检测仪/train/labels/订单1806349_51_7105942.txt b/datasets/检测仪/train/labels/订单1806349_51_7105942.txt new file mode 100644 index 0000000..65cd836 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806349_51_7105942.txt @@ -0,0 +1 @@ +5 0.405533 0.300337 0.381067 0.318692 0.394239 0.448558 0.416828 0.486675 0.428122 0.589721 0.409300 0.629246 0.422472 0.684300 0.445061 0.701242 0.465761 0.702650 0.482700 0.687125 0.584339 0.685713 0.597517 0.694183 0.616339 0.697004 0.642689 0.675829 0.646450 0.613721 0.631394 0.588308 0.618217 0.471146 0.637039 0.438679 0.635156 0.311633 0.605044 0.286221 0.588106 0.291871 0.584339 0.297517 0.445061 0.303163 diff --git a/datasets/检测仪/train/labels/订单1806351_51_7105526.txt b/datasets/检测仪/train/labels/订单1806351_51_7105526.txt new file mode 100644 index 0000000..eaa1ff3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806351_51_7105526.txt @@ -0,0 +1 @@ +5 0.345299 0.370918 0.305781 0.390684 0.309544 0.581250 0.322721 0.629248 0.320833 0.778877 0.311419 0.835342 0.307656 0.934160 0.324596 0.968037 0.364128 0.975098 0.392357 0.953926 0.569284 0.952510 0.580573 0.966631 0.612578 0.968037 0.650221 0.939805 0.661510 0.842402 0.640807 0.800059 0.629505 0.623604 0.652096 0.571367 0.653984 0.403389 0.627630 0.376563 0.597513 0.373740 0.584336 0.379395 0.398008 0.375156 diff --git a/datasets/检测仪/train/labels/订单1806353_51_7105640.txt b/datasets/检测仪/train/labels/订单1806353_51_7105640.txt new file mode 100644 index 0000000..38e4243 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806353_51_7105640.txt @@ -0,0 +1 @@ +5 0.288866 0.234010 0.266285 0.253776 0.264398 0.409054 0.285104 0.437292 0.279456 0.558689 0.260637 0.615156 0.266285 0.685738 0.288866 0.718203 0.317106 0.718203 0.335926 0.699852 0.473322 0.698438 0.497789 0.715382 0.527905 0.715382 0.552373 0.689974 0.561782 0.608099 0.544838 0.571389 0.548611 0.442934 0.563669 0.407648 0.571192 0.256597 0.541076 0.225547 0.520370 0.226953 0.337801 0.234010 0.302049 0.232604 diff --git a/datasets/检测仪/train/labels/订单1806354_51_7105654.txt b/datasets/检测仪/train/labels/订单1806354_51_7105654.txt new file mode 100644 index 0000000..735e9c4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806354_51_7105654.txt @@ -0,0 +1 @@ +5 0.386719 0.291865 0.349062 0.311631 0.328359 0.478203 0.345299 0.541729 0.326484 0.681475 0.302018 0.749238 0.307656 0.836758 0.334010 0.881924 0.367891 0.881924 0.388594 0.862168 0.556107 0.867812 0.571159 0.883340 0.601276 0.893223 0.646445 0.862168 0.661510 0.766172 0.648333 0.726650 0.646445 0.553018 0.672799 0.496553 0.685977 0.331396 0.648333 0.297520 0.621979 0.303164 0.618216 0.305986 0.431888 0.293281 diff --git a/datasets/检测仪/train/labels/订单1806355_51_7105607.txt b/datasets/检测仪/train/labels/订单1806355_51_7105607.txt new file mode 100644 index 0000000..2ae5543 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806355_51_7105607.txt @@ -0,0 +1 @@ +5 0.288841 0.451387 0.279427 0.481025 0.352839 0.640537 0.381068 0.668770 0.435651 0.778877 0.437526 0.815586 0.463880 0.870635 0.490234 0.881924 0.518464 0.877695 0.524115 0.863574 0.640807 0.849463 0.687865 0.859346 0.706680 0.826875 0.702917 0.770410 0.627630 0.619365 0.629505 0.579844 0.582461 0.418916 0.542930 0.393506 0.518464 0.397744 0.503411 0.416094 0.347187 0.454209 0.330247 0.448564 diff --git a/datasets/检测仪/train/labels/订单1806357_51_7105670.txt b/datasets/检测仪/train/labels/订单1806357_51_7105670.txt new file mode 100644 index 0000000..e61e0f9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806357_51_7105670.txt @@ -0,0 +1 @@ +5 0.226732 0.317275 0.222969 0.325752 0.213555 0.411855 0.219206 0.440088 0.232370 0.517725 0.217318 0.536084 0.217318 0.577021 0.228607 0.591133 0.249310 0.591133 0.332135 0.588311 0.352839 0.588311 0.379180 0.533262 0.366003 0.514902 0.369779 0.437266 0.386706 0.413271 0.388594 0.327158 0.375417 0.318691 0.345299 0.315869 0.243672 0.315869 diff --git a/datasets/检测仪/train/labels/订单1806358_51_7105747.txt b/datasets/检测仪/train/labels/订单1806358_51_7105747.txt new file mode 100644 index 0000000..6646e2d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806358_51_7105747.txt @@ -0,0 +1 @@ +5 0.275560 0.361100 0.252973 0.370980 0.258627 0.472620 0.273680 0.492380 0.275560 0.585550 0.269920 0.622250 0.279320 0.678720 0.300027 0.705540 0.332027 0.699890 0.339560 0.687190 0.460013 0.670250 0.476947 0.691420 0.503307 0.695660 0.524013 0.666010 0.529653 0.598260 0.510827 0.577080 0.490133 0.474030 0.499533 0.447210 0.473187 0.352630 0.458133 0.341340 0.443080 0.339930 0.288733 0.359690 diff --git a/datasets/检测仪/train/labels/订单1806360_51_7105662.txt b/datasets/检测仪/train/labels/订单1806360_51_7105662.txt new file mode 100644 index 0000000..48ded47 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806360_51_7105662.txt @@ -0,0 +1 @@ +5 0.527878 0.311631 0.499648 0.331396 0.484583 0.509258 0.493997 0.551611 0.484583 0.713945 0.467643 0.759121 0.467643 0.835342 0.477057 0.873457 0.516576 0.884756 0.541055 0.872051 0.699154 0.879102 0.723620 0.891807 0.749974 0.897461 0.781966 0.877695 0.795143 0.787354 0.785729 0.746416 0.800794 0.585488 0.815846 0.530430 0.834661 0.358213 0.802669 0.329980 0.783854 0.325752 0.770677 0.329980 0.588099 0.318691 diff --git a/datasets/检测仪/train/labels/订单1806361_51_7105712.txt b/datasets/检测仪/train/labels/订单1806361_51_7105712.txt new file mode 100644 index 0000000..f72ca31 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806361_51_7105712.txt @@ -0,0 +1 @@ +5 0.357555 0.434455 0.319908 0.455623 0.342491 0.620787 0.357543 0.650433 0.363195 0.770415 0.350023 0.818417 0.357543 0.881938 0.378258 0.908754 0.414014 0.911583 0.427186 0.896055 0.553299 0.896055 0.587174 0.912993 0.607878 0.879109 0.626701 0.818417 0.611638 0.785943 0.598466 0.657491 0.624821 0.615138 0.624821 0.451393 0.598466 0.423157 0.574002 0.420337 0.555179 0.431626 0.398962 0.437275 diff --git a/datasets/检测仪/train/labels/订单1806363_51_7105693.txt b/datasets/检测仪/train/labels/订单1806363_51_7105693.txt new file mode 100644 index 0000000..fdf9348 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806363_51_7105693.txt @@ -0,0 +1 @@ +5 0.401771 0.318691 0.373542 0.335625 0.411185 0.513496 0.433763 0.536084 0.458229 0.656064 0.445065 0.689951 0.463880 0.771826 0.488346 0.792998 0.524115 0.798643 0.537292 0.783115 0.684089 0.771826 0.719857 0.784531 0.731146 0.757705 0.734909 0.684297 0.716094 0.651836 0.680326 0.503613 0.693503 0.466914 0.667161 0.313047 0.648333 0.291865 0.610690 0.291865 0.605039 0.300342 0.443177 0.320098 diff --git a/datasets/检测仪/train/labels/订单1806366_51_7105783.txt b/datasets/检测仪/train/labels/订单1806366_51_7105783.txt new file mode 100644 index 0000000..a6bea19 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806366_51_7105783.txt @@ -0,0 +1 @@ +5 0.467643 0.461260 0.422474 0.485264 0.414948 0.640537 0.431888 0.668770 0.407422 0.792998 0.384831 0.833936 0.392357 0.894629 0.411185 0.912988 0.439414 0.918633 0.452591 0.907334 0.576810 0.920039 0.606927 0.938398 0.629505 0.924277 0.653984 0.862168 0.644570 0.826875 0.661510 0.699824 0.682214 0.667363 0.725508 0.507852 0.702917 0.478203 0.665273 0.476797 0.650221 0.481025 0.497760 0.473965 diff --git a/datasets/检测仪/train/labels/订单1806367_51_7105793.txt b/datasets/检测仪/train/labels/订单1806367_51_7105793.txt new file mode 100644 index 0000000..999d66b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806367_51_7105793.txt @@ -0,0 +1 @@ +5 0.437261 0.356868 0.413965 0.376634 0.412910 0.568613 0.425615 0.623665 0.429849 0.771888 0.424556 0.853763 0.434082 0.889049 0.479609 0.903171 0.585479 0.898932 0.607715 0.869290 0.601362 0.826940 0.597124 0.766243 0.593950 0.632135 0.611948 0.572845 0.619360 0.387923 0.600303 0.354049 0.586538 0.356868 0.575952 0.365339 0.462666 0.366751 0.456313 0.358281 diff --git a/datasets/检测仪/train/labels/订单1806368_51_7105718.txt b/datasets/检测仪/train/labels/订单1806368_51_7105718.txt new file mode 100644 index 0000000..4681525 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806368_51_7105718.txt @@ -0,0 +1 @@ +5 0.489212 0.232611 0.482862 0.266489 0.576029 0.424589 0.595087 0.434472 0.661783 0.553050 0.670254 0.588339 0.736954 0.685739 0.759188 0.688567 0.772950 0.675861 0.779304 0.647628 0.847063 0.588339 0.868233 0.582694 0.889408 0.578456 0.886233 0.545989 0.847063 0.469761 0.824829 0.454233 0.742246 0.318717 0.733779 0.291894 0.649079 0.160617 0.625788 0.150733 0.616258 0.157794 0.516742 0.212844 diff --git a/datasets/检测仪/train/labels/订单1806369_51_7105743.txt b/datasets/检测仪/train/labels/订单1806369_51_7105743.txt new file mode 100644 index 0000000..af519b9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806369_51_7105743.txt @@ -0,0 +1 @@ +5 0.337773 0.389268 0.311419 0.411855 0.315195 0.557256 0.337773 0.593955 0.343424 0.743594 0.328359 0.781699 0.341536 0.856523 0.360365 0.881924 0.392357 0.884756 0.403646 0.869229 0.537292 0.867812 0.578698 0.886162 0.610690 0.860752 0.620104 0.785937 0.603164 0.745000 0.584336 0.598193 0.608802 0.557256 0.606927 0.410449 0.580573 0.376563 0.556107 0.377979 0.541055 0.386445 0.384831 0.394922 diff --git a/datasets/检测仪/train/labels/订单1806370_51_7105764.txt b/datasets/检测仪/train/labels/订单1806370_51_7105764.txt new file mode 100644 index 0000000..c39d112 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806370_51_7105764.txt @@ -0,0 +1 @@ +5 0.572868 0.238276 0.547457 0.267925 0.552751 0.442966 0.573928 0.498015 0.574988 0.633529 0.567574 0.691405 0.571808 0.766225 0.585576 0.794461 0.621569 0.814224 0.717911 0.797279 0.735913 0.808570 0.752849 0.784575 0.763437 0.698464 0.751789 0.661765 0.745441 0.490956 0.750735 0.430261 0.748615 0.262271 0.729559 0.235458 0.712623 0.235458 0.704148 0.242508 0.602512 0.245335 0.578162 0.236863 diff --git a/datasets/检测仪/train/labels/订单1806371_51_7105828.txt b/datasets/检测仪/train/labels/订单1806371_51_7105828.txt new file mode 100644 index 0000000..04ea871 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806371_51_7105828.txt @@ -0,0 +1 @@ +5 0.254961 0.389271 0.232372 0.399154 0.213550 0.538904 0.228611 0.571371 0.222961 0.718179 0.198494 0.767587 0.196611 0.879104 0.217317 0.901692 0.268133 0.917221 0.288839 0.886162 0.475172 0.877692 0.501522 0.893221 0.546694 0.897458 0.582456 0.856521 0.593750 0.747825 0.565517 0.706888 0.539167 0.558667 0.544811 0.505025 0.531639 0.368096 0.495878 0.353979 0.480822 0.356804 0.277544 0.382212 diff --git a/datasets/检测仪/train/labels/订单1806374_51_7105810.txt b/datasets/检测仪/train/labels/订单1806374_51_7105810.txt new file mode 100644 index 0000000..e70e771 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806374_51_7105810.txt @@ -0,0 +1 @@ +5 0.569284 0.554434 0.546693 0.569961 0.546693 0.677246 0.561758 0.704063 0.569284 0.787354 0.557995 0.816992 0.556107 0.864990 0.571159 0.884756 0.588099 0.884756 0.593750 0.876279 0.691628 0.883340 0.719857 0.900283 0.731146 0.883340 0.746211 0.829697 0.736797 0.808525 0.733034 0.711123 0.749974 0.684297 0.746211 0.571367 0.727383 0.555840 0.706680 0.557256 0.702917 0.562900 0.591862 0.561494 diff --git a/datasets/检测仪/train/labels/订单1806382_51_7105948.txt b/datasets/检测仪/train/labels/订单1806382_51_7105948.txt new file mode 100644 index 0000000..bb510e3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806382_51_7105948.txt @@ -0,0 +1 @@ +5 0.422373 0.437330 0.390373 0.457090 0.390373 0.636370 0.414840 0.670250 0.409200 0.802940 0.403547 0.839640 0.416720 0.915870 0.444960 0.937050 0.463773 0.929990 0.591760 0.925750 0.638813 0.932810 0.661400 0.911640 0.678347 0.843880 0.668933 0.800120 0.670813 0.668840 0.700933 0.620840 0.695280 0.461330 0.665173 0.437330 0.636933 0.437330 0.620000 0.441570 0.460013 0.444390 0.452480 0.440150 diff --git a/datasets/检测仪/train/labels/订单1806386_51_7105908.txt b/datasets/检测仪/train/labels/订单1806386_51_7105908.txt new file mode 100644 index 0000000..85db0fe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806386_51_7105908.txt @@ -0,0 +1 @@ +5 0.258724 0.455615 0.232370 0.472559 0.219206 0.637715 0.238021 0.680068 0.219206 0.818408 0.196615 0.870635 0.194727 0.955332 0.211667 0.982158 0.247435 0.984980 0.258724 0.976504 0.411185 0.977920 0.437526 0.993447 0.473294 0.980742 0.514701 0.881924 0.497760 0.846641 0.501523 0.691357 0.524115 0.650420 0.542930 0.483848 0.510937 0.454209 0.473294 0.454209 0.309544 0.457031 0.281315 0.447148 diff --git a/datasets/检测仪/train/labels/订单1806388_51_7106058.txt b/datasets/检测仪/train/labels/订单1806388_51_7106058.txt new file mode 100644 index 0000000..34a29ff --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806388_51_7106058.txt @@ -0,0 +1 @@ +5 0.241808 0.441519 0.221103 0.464106 0.286974 0.578442 0.322744 0.596798 0.386731 0.721019 0.388615 0.763365 0.437551 0.829712 0.465782 0.848067 0.507192 0.835356 0.507192 0.814183 0.646474 0.774663 0.674705 0.785952 0.699167 0.743606 0.665295 0.677260 0.625769 0.651846 0.552359 0.540327 0.554244 0.513510 0.480846 0.409048 0.452603 0.394933 0.424372 0.397760 0.275679 0.428808 diff --git a/datasets/检测仪/train/labels/订单1806391_51_7106033.txt b/datasets/检测仪/train/labels/订单1806391_51_7106033.txt new file mode 100644 index 0000000..e245bcc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806391_51_7106033.txt @@ -0,0 +1 @@ +5 0.548581 0.221289 0.505286 0.248105 0.507174 0.417500 0.531641 0.455615 0.542930 0.505029 0.533516 0.571367 0.529753 0.623604 0.525990 0.684297 0.557995 0.709707 0.574935 0.709707 0.595638 0.697002 0.723620 0.695596 0.749974 0.709707 0.768789 0.694180 0.791380 0.623604 0.776315 0.591133 0.778203 0.454209 0.804557 0.418916 0.817734 0.252344 0.787617 0.222695 0.755612 0.222695 0.751849 0.232578 0.584336 0.231172 0.554219 0.224111 diff --git a/datasets/检测仪/train/labels/订单1806395_51_7106004.txt b/datasets/检测仪/train/labels/订单1806395_51_7106004.txt new file mode 100644 index 0000000..8f158f0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806395_51_7106004.txt @@ -0,0 +1 @@ +5 0.462005 0.298926 0.426237 0.318691 0.416823 0.509258 0.441289 0.543135 0.435651 0.699824 0.420586 0.754883 0.422474 0.846641 0.441289 0.877695 0.482708 0.888984 0.503411 0.873457 0.667161 0.873457 0.687865 0.888984 0.710443 0.891807 0.744323 0.872051 0.757500 0.776055 0.748086 0.728057 0.748086 0.561494 0.768789 0.520557 0.781966 0.328574 0.744323 0.303164 0.719857 0.301748 0.710443 0.308809 0.518464 0.305986 diff --git a/datasets/检测仪/train/labels/订单1806398_51_7106151.txt b/datasets/检测仪/train/labels/订单1806398_51_7106151.txt new file mode 100644 index 0000000..c377e4a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806398_51_7106151.txt @@ -0,0 +1 @@ +5 0.776315 0.416094 0.744323 0.401973 0.550456 0.427383 0.503411 0.442910 0.343424 0.465498 0.288841 0.459854 0.200378 0.478203 0.175911 0.499375 0.172148 0.516318 0.187201 0.524785 0.215430 0.625010 0.194727 0.646191 0.221081 0.663125 0.315195 0.660303 0.360365 0.646191 0.531641 0.620781 0.584336 0.630664 0.774440 0.608076 0.797018 0.585488 0.789492 0.569961 0.778203 0.445732 diff --git a/datasets/检测仪/train/labels/订单1806400_51_7106043.txt b/datasets/检测仪/train/labels/订单1806400_51_7106043.txt new file mode 100644 index 0000000..3557075 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806400_51_7106043.txt @@ -0,0 +1 @@ +5 0.725500 0.599604 0.704800 0.589721 0.537283 0.605250 0.503406 0.623600 0.366006 0.643362 0.334011 0.637717 0.232372 0.658892 0.232372 0.677242 0.251194 0.708300 0.262489 0.777467 0.254961 0.792996 0.266256 0.815583 0.364128 0.812758 0.403650 0.797229 0.552344 0.777467 0.605044 0.783117 0.746206 0.757704 0.751850 0.740767 0.719856 0.605250 diff --git a/datasets/检测仪/train/labels/订单1806402_51_7106069.txt b/datasets/检测仪/train/labels/订单1806402_51_7106069.txt new file mode 100644 index 0000000..d1d163b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806402_51_7106069.txt @@ -0,0 +1 @@ +5 0.257778 0.373735 0.218248 0.368088 0.178719 0.389265 0.195660 0.602422 0.218248 0.651824 0.227660 0.812755 0.220131 0.862157 0.235190 0.939794 0.259660 0.968029 0.304824 0.972265 0.314235 0.958147 0.470458 0.956735 0.547621 0.951088 0.577739 0.862157 0.557033 0.816990 0.549503 0.650412 0.575856 0.584069 0.573974 0.393500 0.540092 0.363853 0.498693 0.366676 0.479869 0.375147 0.255895 0.380794 diff --git a/datasets/检测仪/train/labels/订单1806403_51_7106091.txt b/datasets/检测仪/train/labels/订单1806403_51_7106091.txt new file mode 100644 index 0000000..1e864d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806403_51_7106091.txt @@ -0,0 +1 @@ +5 0.471373 0.284926 0.422435 0.315980 0.414918 0.498088 0.435621 0.543260 0.422435 0.680184 0.405507 0.740882 0.405507 0.828407 0.424330 0.852402 0.456324 0.858051 0.478905 0.842525 0.642647 0.845343 0.674657 0.865110 0.693480 0.845343 0.716062 0.750760 0.706650 0.709828 0.719820 0.557365 0.746176 0.516434 0.755588 0.342806 0.719820 0.311752 0.697239 0.310331 0.689706 0.315980 0.510899 0.301863 diff --git a/datasets/检测仪/train/labels/订单1806410_51_7106166.txt b/datasets/检测仪/train/labels/订单1806410_51_7106166.txt new file mode 100644 index 0000000..1aaab61 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806410_51_7106166.txt @@ -0,0 +1 @@ +5 0.644570 0.366689 0.605039 0.386445 0.591862 0.551611 0.606927 0.578428 0.599401 0.694180 0.576810 0.742178 0.565521 0.807109 0.586224 0.829697 0.616341 0.836758 0.635156 0.825459 0.768789 0.842402 0.804557 0.863574 0.836549 0.842402 0.859141 0.764766 0.840313 0.733711 0.855378 0.591133 0.881719 0.551611 0.902422 0.401973 0.868542 0.372334 0.844076 0.373740 0.838437 0.379395 0.670924 0.377979 diff --git a/datasets/检测仪/train/labels/订单1806413_51_7106233.txt b/datasets/检测仪/train/labels/订单1806413_51_7106233.txt new file mode 100644 index 0000000..b259b3b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806413_51_7106233.txt @@ -0,0 +1 @@ +5 0.269984 0.476912 0.222925 0.506556 0.241748 0.683002 0.269984 0.729596 0.275637 0.849583 0.256814 0.894755 0.275637 0.985098 0.307108 1.000000 0.331732 1.000000 0.339624 0.999216 0.350915 0.983676 0.495850 0.966740 0.525964 0.978039 0.548546 0.948395 0.561716 0.869338 0.541013 0.841103 0.535376 0.698529 0.548546 0.656189 0.544788 0.500907 0.518431 0.474081 0.492075 0.476912 0.486438 0.483971 0.303856 0.493848 0.300098 0.482549 diff --git a/datasets/检测仪/train/labels/订单1806415_51_7106264.txt b/datasets/检测仪/train/labels/订单1806415_51_7106264.txt new file mode 100644 index 0000000..4c61205 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806415_51_7106264.txt @@ -0,0 +1 @@ +5 0.539505 0.258018 0.511901 0.276367 0.521936 0.394946 0.542014 0.416118 0.554566 0.495171 0.554566 0.529048 0.559583 0.567163 0.587188 0.582690 0.617300 0.588340 0.634870 0.577046 0.755330 0.572812 0.787951 0.586929 0.815556 0.568574 0.823082 0.510698 0.803012 0.495171 0.792969 0.393535 0.805521 0.370947 0.800503 0.269312 0.770382 0.258018 0.742778 0.259429 0.579661 0.265078 diff --git a/datasets/检测仪/train/labels/订单1806417_51_7106289.txt b/datasets/检测仪/train/labels/订单1806417_51_7106289.txt new file mode 100644 index 0000000..cdd28d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806417_51_7106289.txt @@ -0,0 +1 @@ +5 0.503411 0.337041 0.469531 0.363857 0.456354 0.551611 0.463880 0.591133 0.454466 0.740762 0.435651 0.783115 0.452591 0.874873 0.477057 0.900283 0.514701 0.907334 0.520352 0.898867 0.661510 0.908750 0.716094 0.912988 0.738672 0.900283 0.763151 0.797227 0.755612 0.753467 0.768789 0.598193 0.797018 0.554434 0.798906 0.380801 0.768789 0.358213 0.748086 0.353984 0.733034 0.358213 0.541055 0.345508 diff --git a/datasets/检测仪/train/labels/订单1806418_51_7106207.txt b/datasets/检测仪/train/labels/订单1806418_51_7106207.txt new file mode 100644 index 0000000..2b88962 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806418_51_7106207.txt @@ -0,0 +1 @@ +5 0.388594 0.625010 0.371654 0.643359 0.396120 0.766172 0.414948 0.787354 0.435651 0.867812 0.426237 0.904512 0.446940 0.968037 0.467643 0.983564 0.486471 0.976504 0.586224 0.962393 0.612578 0.970859 0.625742 0.948271 0.627630 0.888984 0.606927 0.870635 0.584336 0.766172 0.591862 0.725234 0.576810 0.620781 0.550456 0.601016 0.527878 0.605254 0.430000 0.623604 diff --git a/datasets/检测仪/train/labels/订单1806420_51_7106202.txt b/datasets/检测仪/train/labels/订单1806420_51_7106202.txt new file mode 100644 index 0000000..38c5ffe --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806420_51_7106202.txt @@ -0,0 +1 @@ +5 0.290716 0.346924 0.256849 0.373740 0.270013 0.561494 0.286953 0.601016 0.292604 0.742178 0.279427 0.790176 0.296367 0.872051 0.326484 0.897461 0.362240 0.897461 0.371654 0.886162 0.518464 0.867812 0.535404 0.884756 0.561758 0.884756 0.584336 0.862168 0.597513 0.785937 0.578698 0.746416 0.569284 0.599600 0.589987 0.541729 0.588099 0.372334 0.563633 0.349746 0.524115 0.349746 0.520352 0.353984 0.322721 0.359629 diff --git a/datasets/检测仪/train/labels/订单1806421_51_7106234.txt b/datasets/检测仪/train/labels/订单1806421_51_7106234.txt new file mode 100644 index 0000000..6f0a816 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806421_51_7106234.txt @@ -0,0 +1 @@ +5 0.379060 0.323033 0.366355 0.341387 0.371650 0.468433 0.369535 0.491013 0.387530 0.506547 0.400235 0.505133 0.479640 0.496660 0.500815 0.486780 0.579160 0.485367 0.605625 0.496660 0.647975 0.483960 0.665975 0.474080 0.663855 0.452900 0.657505 0.440200 0.653270 0.363967 0.660680 0.354087 0.656445 0.334327 0.646915 0.315973 0.600335 0.310327 0.574925 0.320207 0.497640 0.327267 0.484935 0.323033 0.382235 0.323033 diff --git a/datasets/检测仪/train/labels/订单1806423_51_7106297.txt b/datasets/检测仪/train/labels/订单1806423_51_7106297.txt new file mode 100644 index 0000000..284653b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806423_51_7106297.txt @@ -0,0 +1 @@ +5 0.379080 0.282050 0.348960 0.294760 0.316973 0.444390 0.330147 0.479680 0.301907 0.644840 0.281213 0.680130 0.277440 0.763420 0.300027 0.811410 0.341440 0.814230 0.352733 0.798710 0.529653 0.801530 0.544707 0.815650 0.582360 0.824120 0.612467 0.797290 0.640707 0.706950 0.621880 0.657540 0.625640 0.488150 0.650107 0.454270 0.661400 0.303230 0.621880 0.279230 0.603053 0.282050 0.405427 0.279230 diff --git a/datasets/检测仪/train/labels/订单1806424_51_7106323.txt b/datasets/检测仪/train/labels/订单1806424_51_7106323.txt new file mode 100644 index 0000000..70cc8f7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806424_51_7106323.txt @@ -0,0 +1 @@ +5 0.358477 0.481025 0.334010 0.499375 0.345299 0.619365 0.358477 0.640537 0.354714 0.754883 0.347187 0.791582 0.362240 0.853691 0.377305 0.869229 0.409297 0.872051 0.407422 0.856523 0.516576 0.848047 0.537292 0.859346 0.559870 0.859346 0.573047 0.840996 0.588099 0.768994 0.557995 0.745000 0.554219 0.629248 0.573047 0.591133 0.556107 0.478203 0.537292 0.466914 0.518464 0.466914 0.510937 0.472559 0.390482 0.479619 diff --git a/datasets/检测仪/train/labels/订单1806435_51_7106340.txt b/datasets/检测仪/train/labels/订单1806435_51_7106340.txt new file mode 100644 index 0000000..2b4e839 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806435_51_7106340.txt @@ -0,0 +1 @@ +5 0.226605 0.358327 0.207550 0.382320 0.198020 0.715467 0.224490 0.767693 0.434115 0.760640 0.464815 0.738053 0.673385 0.730993 0.749615 0.757813 0.876660 0.750753 0.928535 0.699940 0.930655 0.619473 0.914775 0.588420 0.896775 0.372440 0.908420 0.289153 0.855485 0.234100 0.833250 0.232687 0.736910 0.235513 0.708325 0.241160 0.652210 0.276447 0.462700 0.321620 0.424585 0.310327 0.239310 0.345620 diff --git a/datasets/检测仪/train/labels/订单1806438_51_7106366.txt b/datasets/检测仪/train/labels/订单1806438_51_7106366.txt new file mode 100644 index 0000000..a25e260 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806438_51_7106366.txt @@ -0,0 +1 @@ +5 0.335894 0.386446 0.317072 0.400562 0.315189 0.536079 0.335894 0.574196 0.339656 0.691358 0.322717 0.747825 0.339656 0.825462 0.354717 0.840992 0.377300 0.843813 0.398006 0.832521 0.537283 0.822642 0.546694 0.838167 0.574928 0.833933 0.597517 0.814171 0.605044 0.737942 0.588106 0.712533 0.573044 0.572783 0.588106 0.533258 0.578694 0.396329 0.548578 0.379392 0.525994 0.379392 0.369772 0.387858 diff --git a/datasets/检测仪/train/labels/订单1806439_51_7106397.txt b/datasets/检测仪/train/labels/订单1806439_51_7106397.txt new file mode 100644 index 0000000..8e7f2d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806439_51_7106397.txt @@ -0,0 +1 @@ +5 0.393735 0.052691 0.369304 0.085272 0.353946 0.400153 0.360230 0.443584 0.347667 0.690229 0.336500 0.764684 0.330216 0.916699 0.351853 0.998911 0.377681 0.995806 0.392338 0.977190 0.476103 0.989597 0.483779 0.998911 0.505912 1.000000 0.515417 1.000000 0.533343 0.963235 0.532642 0.929107 0.545206 0.798802 0.536833 0.732102 0.541716 0.483922 0.552186 0.420316 0.565451 0.128704 0.546603 0.083715 0.538926 0.085272 0.527059 0.088366 0.416074 0.060447 diff --git a/datasets/检测仪/train/labels/订单1806445_51_7106489.txt b/datasets/检测仪/train/labels/订单1806445_51_7106489.txt new file mode 100644 index 0000000..3e78473 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806445_51_7106489.txt @@ -0,0 +1 @@ +5 0.270013 0.673008 0.230495 0.682891 0.221081 0.704063 0.226732 0.716768 0.185326 0.839580 0.162734 0.863574 0.183438 0.900283 0.398008 0.932744 0.448828 0.925693 0.659622 0.956748 0.710443 0.963799 0.772552 0.966631 0.815846 0.958154 0.815846 0.925693 0.808320 0.910156 0.808320 0.808525 0.825260 0.776055 0.795143 0.752061 0.699154 0.726650 0.657747 0.730889 0.493997 0.712529 0.471406 0.705479 diff --git a/datasets/检测仪/train/labels/订单1806446_51_7106424.txt b/datasets/检测仪/train/labels/订单1806446_51_7106424.txt new file mode 100644 index 0000000..2bd8409 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806446_51_7106424.txt @@ -0,0 +1 @@ +5 0.149453 0.361100 0.136280 0.379450 0.151333 0.489560 0.173920 0.510730 0.187093 0.619430 0.183333 0.668840 0.198387 0.721070 0.224747 0.745060 0.258627 0.746480 0.268027 0.730950 0.386613 0.711190 0.411080 0.719660 0.435547 0.695660 0.441187 0.633550 0.420493 0.606730 0.394133 0.495210 0.397907 0.458500 0.373440 0.354040 0.350853 0.341340 0.324493 0.342750 0.156987 0.361100 diff --git a/datasets/检测仪/train/labels/订单1806448_51_7106612.txt b/datasets/检测仪/train/labels/订单1806448_51_7106612.txt new file mode 100644 index 0000000..b228a2d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806448_51_7106612.txt @@ -0,0 +1 @@ +5 0.353700 0.139444 0.334642 0.344128 0.344171 0.372361 0.514625 0.404828 0.532621 0.389300 0.676608 0.407650 0.724250 0.431650 0.797300 0.440117 0.829063 0.418944 0.838592 0.373772 0.826946 0.359656 0.834358 0.234022 0.846004 0.228372 0.857650 0.178967 0.840708 0.147911 0.828004 0.142267 0.757071 0.122500 0.717896 0.130972 0.555913 0.122500 0.522033 0.101328 0.365342 0.090033 0.355817 0.118267 diff --git a/datasets/检测仪/train/labels/订单1806449_51_7106451.txt b/datasets/检测仪/train/labels/订单1806449_51_7106451.txt new file mode 100644 index 0000000..08305af --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806449_51_7106451.txt @@ -0,0 +1 @@ +5 0.383295 0.444433 0.357885 0.469840 0.354710 0.512193 0.334595 0.697113 0.324010 0.726760 0.312360 0.764873 0.343065 0.811453 0.566455 0.819927 0.602450 0.802987 0.771845 0.819927 0.825840 0.843920 0.928535 0.839687 0.961355 0.798753 0.956065 0.747933 0.948650 0.739460 0.934890 0.565833 0.943360 0.553127 0.946535 0.517840 0.916890 0.491013 0.832195 0.468433 0.783490 0.476900 0.609860 0.474080 0.593980 0.467020 diff --git a/datasets/检测仪/train/labels/订单1806450_51_7106443.txt b/datasets/检测仪/train/labels/订单1806450_51_7106443.txt new file mode 100644 index 0000000..d84fcb8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806450_51_7106443.txt @@ -0,0 +1 @@ +5 0.379180 0.355391 0.354714 0.373740 0.337773 0.486670 0.349062 0.519141 0.330247 0.617959 0.326484 0.664541 0.317070 0.722412 0.322721 0.743594 0.347187 0.753467 0.367891 0.743594 0.471406 0.750645 0.514701 0.768994 0.533516 0.749238 0.546693 0.680068 0.539167 0.649014 0.541055 0.524785 0.567396 0.492324 0.584336 0.351162 0.559870 0.331396 0.548581 0.334219 0.533516 0.338457 0.398008 0.355391 diff --git a/datasets/检测仪/train/labels/订单1806453_51_7106521.txt b/datasets/检测仪/train/labels/订单1806453_51_7106521.txt new file mode 100644 index 0000000..cafd1cc --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806453_51_7106521.txt @@ -0,0 +1 @@ +5 0.445769 0.305968 0.423538 0.322904 0.421418 0.361019 0.408716 0.529006 0.401303 0.538885 0.393894 0.562885 0.419303 0.605231 0.595053 0.620756 0.627870 0.609468 0.763385 0.624994 0.796207 0.647577 0.872433 0.640519 0.896784 0.616526 0.899962 0.582647 0.896784 0.568526 0.893611 0.440071 0.905255 0.400545 0.877731 0.370904 0.808913 0.351141 0.781385 0.361019 0.641635 0.344083 0.628928 0.337019 0.454240 0.305968 diff --git a/datasets/检测仪/train/labels/订单1806454_51_7106564.txt b/datasets/检测仪/train/labels/订单1806454_51_7106564.txt new file mode 100644 index 0000000..7fb467d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806454_51_7106564.txt @@ -0,0 +1 @@ +5 0.480819 0.171875 0.450702 0.187412 0.420585 0.308805 0.424357 0.331393 0.401769 0.411853 0.401769 0.431623 0.382939 0.448553 0.375424 0.496557 0.388596 0.513498 0.414942 0.519134 0.509050 0.530428 0.531637 0.544550 0.556111 0.530428 0.582456 0.481031 0.574927 0.462675 0.595629 0.359627 0.618216 0.345504 0.657749 0.219879 0.652091 0.200110 0.627632 0.200110 0.497763 0.173289 diff --git a/datasets/检测仪/train/labels/订单1806464_51_7106658.txt b/datasets/检测仪/train/labels/订单1806464_51_7106658.txt new file mode 100644 index 0000000..cd93273 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806464_51_7106658.txt @@ -0,0 +1 @@ +5 0.396814 0.000000 0.382569 0.040283 0.387456 0.341209 0.398623 0.437386 0.400020 0.682473 0.397926 0.730556 0.393039 0.803464 0.397926 0.960131 0.409789 0.997353 0.430809 1.000000 0.447319 1.000000 0.455858 0.967887 0.543113 0.974085 0.554980 0.988050 0.573828 0.997353 0.587789 0.952375 0.591975 0.797255 0.578711 0.727451 0.573828 0.454444 0.584995 0.392397 0.579412 0.102331 0.563358 0.052691 0.551490 0.046492 0.545206 0.049586 0.428637 0.001503 0.418701 0.000000 diff --git a/datasets/检测仪/train/labels/订单1806465_51_7106625.txt b/datasets/检测仪/train/labels/订单1806465_51_7106625.txt new file mode 100644 index 0000000..d97af5b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806465_51_7106625.txt @@ -0,0 +1 @@ +5 0.495872 0.584072 0.480820 0.608076 0.509049 0.735117 0.527878 0.753467 0.539167 0.845225 0.537292 0.872051 0.550456 0.924277 0.578698 0.939805 0.606927 0.929922 0.717969 0.928516 0.736797 0.908750 0.738672 0.855107 0.723620 0.838164 0.719857 0.730889 0.723620 0.579844 0.693503 0.562900 0.672799 0.572783 0.659622 0.581250 0.542930 0.588311 0.535404 0.582666 diff --git a/datasets/检测仪/train/labels/订单1806467_51_7106642.txt b/datasets/检测仪/train/labels/订单1806467_51_7106642.txt new file mode 100644 index 0000000..ba176c6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806467_51_7106642.txt @@ -0,0 +1 @@ +5 0.211573 0.520620 0.202160 0.547440 0.298147 0.667430 0.330147 0.684360 0.392253 0.778940 0.396013 0.798710 0.444960 0.855170 0.471307 0.860820 0.484480 0.849520 0.488240 0.838230 0.580467 0.802940 0.612467 0.807180 0.621880 0.778940 0.597413 0.718240 0.572947 0.704130 0.501427 0.613780 0.503307 0.575670 0.428013 0.458500 0.396013 0.448620 0.369667 0.457090 0.373440 0.462740 0.268027 0.516380 0.251093 0.509320 diff --git a/datasets/检测仪/train/labels/订单1806468_51_7106712.txt b/datasets/检测仪/train/labels/订单1806468_51_7106712.txt new file mode 100644 index 0000000..d3e686f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806468_51_7106712.txt @@ -0,0 +1 @@ +5 0.595638 0.420332 0.554219 0.444326 0.552344 0.596777 0.573047 0.627832 0.561758 0.745000 0.548581 0.774648 0.542930 0.836758 0.557995 0.856523 0.586224 0.866396 0.599401 0.856523 0.702917 0.852285 0.736797 0.857930 0.776315 0.785937 0.770677 0.757705 0.780091 0.634893 0.797018 0.606660 0.817734 0.458437 0.800794 0.438682 0.766914 0.434443 0.748086 0.438682 0.635156 0.433027 0.625742 0.425977 diff --git a/datasets/检测仪/train/labels/订单1806470_51_7106702.txt b/datasets/检测仪/train/labels/订单1806470_51_7106702.txt new file mode 100644 index 0000000..61e8b17 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806470_51_7106702.txt @@ -0,0 +1 @@ +5 0.444960 0.455680 0.418600 0.471210 0.399787 0.616610 0.414840 0.675900 0.397907 0.810000 0.384733 0.856580 0.379080 0.937050 0.401667 0.968100 0.433667 0.972340 0.446840 0.958220 0.563533 0.965280 0.636933 0.985040 0.665173 0.959630 0.678347 0.873520 0.663293 0.845290 0.670813 0.677310 0.693400 0.644840 0.706573 0.492380 0.659520 0.465560 0.497653 0.464150 diff --git a/datasets/检测仪/train/labels/订单1806471_51_7106669.txt b/datasets/检测仪/train/labels/订单1806471_51_7106669.txt new file mode 100644 index 0000000..a0c274a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806471_51_7106669.txt @@ -0,0 +1 @@ +5 0.502458 0.338441 0.468575 0.358206 0.457281 0.536069 0.470458 0.577010 0.455399 0.726637 0.440340 0.771814 0.442222 0.869216 0.462928 0.904510 0.509987 0.907333 0.536340 0.891804 0.681255 0.911569 0.739608 0.934147 0.767843 0.903098 0.788549 0.807108 0.773490 0.767578 0.773490 0.596775 0.807359 0.545951 0.811124 0.365265 0.775373 0.337029 0.749020 0.337029 0.730196 0.341265 0.541974 0.342676 diff --git a/datasets/检测仪/train/labels/订单1806476_51_7106691.txt b/datasets/检测仪/train/labels/订单1806476_51_7106691.txt new file mode 100644 index 0000000..e21d1c2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806476_51_7106691.txt @@ -0,0 +1 @@ +5 0.487017 0.142305 0.460552 0.157832 0.451021 0.183242 0.458433 0.197357 0.426670 0.349811 0.410791 0.359694 0.404438 0.379453 0.422437 0.416159 0.547368 0.468385 0.601362 0.478268 0.723115 0.526263 0.742168 0.548848 0.822632 0.574258 0.845923 0.570026 0.856514 0.538971 0.849102 0.522031 0.878745 0.416159 0.890391 0.402044 0.907329 0.369577 0.894624 0.330046 0.879805 0.322988 0.824751 0.291934 0.795107 0.289115 0.660649 0.226999 0.652178 0.215710 0.489136 0.139479 diff --git a/datasets/检测仪/train/labels/订单1806477_51_7106810.txt b/datasets/检测仪/train/labels/订单1806477_51_7106810.txt new file mode 100644 index 0000000..ceeae5d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806477_51_7106810.txt @@ -0,0 +1 @@ +5 0.307661 0.524787 0.294483 0.545963 0.326483 0.673008 0.341539 0.688538 0.373539 0.812758 0.364128 0.840992 0.388594 0.907338 0.424356 0.935571 0.462000 0.928512 0.559872 0.907338 0.608806 0.905925 0.633278 0.872046 0.612572 0.794408 0.582456 0.767587 0.548578 0.649008 0.552344 0.602425 0.512817 0.500788 0.488350 0.492321 0.462000 0.495142 0.326483 0.524787 diff --git a/datasets/检测仪/train/labels/订单1806479_51_7106769.txt b/datasets/检测仪/train/labels/订单1806479_51_7106769.txt new file mode 100644 index 0000000..b7d1de7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806479_51_7106769.txt @@ -0,0 +1 @@ +5 0.164507 0.445800 0.130640 0.461330 0.138160 0.492380 0.151333 0.498030 0.155107 0.588370 0.145693 0.609550 0.141933 0.623660 0.172040 0.646250 0.260507 0.649070 0.320733 0.633550 0.488240 0.610960 0.529653 0.622250 0.695280 0.610960 0.700933 0.586960 0.697160 0.442980 0.676467 0.418980 0.631293 0.416160 0.512720 0.426040 0.467547 0.431680 0.313200 0.444390 0.281213 0.435920 diff --git a/datasets/检测仪/train/labels/订单1806481_51_7106776.txt b/datasets/检测仪/train/labels/订单1806481_51_7106776.txt new file mode 100644 index 0000000..2b54070 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806481_51_7106776.txt @@ -0,0 +1 @@ +5 0.381029 0.365392 0.358448 0.385147 0.341503 0.527733 0.349036 0.564424 0.335866 0.723946 0.315163 0.780404 0.318922 0.884865 0.339624 0.920159 0.382908 0.924400 0.396095 0.908860 0.569248 0.913100 0.580539 0.922978 0.618186 0.930037 0.650180 0.910282 0.684069 0.811458 0.659592 0.766287 0.640768 0.578542 0.665245 0.537610 0.670882 0.371042 0.648301 0.351275 0.623840 0.348456 0.618186 0.355515 0.439379 0.359743 diff --git a/datasets/检测仪/train/labels/订单1806482_51_7106783.txt b/datasets/检测仪/train/labels/订单1806482_51_7106783.txt new file mode 100644 index 0000000..d16e3c3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806482_51_7106783.txt @@ -0,0 +1 @@ +5 0.204040 0.457090 0.168280 0.483910 0.205920 0.644840 0.226627 0.674480 0.249213 0.783180 0.245440 0.812820 0.268027 0.869290 0.298147 0.884820 0.322613 0.869290 0.488240 0.857990 0.529653 0.862230 0.546587 0.832590 0.482600 0.673070 0.492013 0.616610 0.492013 0.469800 0.463773 0.441570 0.431787 0.440150 0.424253 0.452860 0.254853 0.464150 0.241680 0.459920 diff --git a/datasets/检测仪/train/labels/订单1806483_51_7106799.txt b/datasets/检测仪/train/labels/订单1806483_51_7106799.txt new file mode 100644 index 0000000..59ae0cb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806483_51_7106799.txt @@ -0,0 +1 @@ +5 0.283190 0.294687 0.249310 0.320098 0.256849 0.526201 0.279427 0.577021 0.296367 0.729473 0.281315 0.771826 0.288841 0.826875 0.300130 0.864990 0.337773 0.873457 0.362240 0.866396 0.537292 0.863574 0.559870 0.873457 0.593750 0.866396 0.610690 0.778877 0.586224 0.739355 0.606927 0.579844 0.631393 0.526201 0.655859 0.321514 0.625742 0.297520 0.588099 0.296104 0.557995 0.300342 0.354714 0.297520 0.294492 0.286221 diff --git a/datasets/检测仪/train/labels/订单1806487_51_7106855.txt b/datasets/检测仪/train/labels/订单1806487_51_7106855.txt new file mode 100644 index 0000000..89e58e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806487_51_7106855.txt @@ -0,0 +1 @@ +5 0.258728 0.445735 0.230497 0.468322 0.228611 0.609485 0.254956 0.643366 0.253070 0.790175 0.236140 0.825461 0.243670 0.911568 0.270015 0.934156 0.298246 0.939803 0.320833 0.921447 0.452588 0.915811 0.493991 0.925691 0.514693 0.903103 0.527865 0.819814 0.507164 0.790175 0.490234 0.637719 0.516579 0.602423 0.509050 0.449967 0.484576 0.440088 0.463874 0.438673 0.454474 0.448553 0.294488 0.449967 diff --git a/datasets/检测仪/train/labels/订单1806488_51_7106871.txt b/datasets/检测仪/train/labels/订单1806488_51_7106871.txt new file mode 100644 index 0000000..b5964b4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806488_51_7106871.txt @@ -0,0 +1 @@ +5 0.145794 0.503613 0.125091 0.533262 0.217318 0.695596 0.251198 0.716768 0.320833 0.838164 0.318958 0.886162 0.373542 0.955332 0.414948 0.960977 0.456354 0.939805 0.557995 0.904512 0.601276 0.898867 0.621979 0.870635 0.599401 0.801465 0.561758 0.764766 0.499648 0.640537 0.497760 0.601016 0.426237 0.455615 0.396120 0.435859 0.377305 0.440088 0.352839 0.449971 0.198490 0.503613 0.179674 0.495146 diff --git a/datasets/检测仪/train/labels/订单1806490_51_7106897.txt b/datasets/检测仪/train/labels/订单1806490_51_7106897.txt new file mode 100644 index 0000000..60d8d7c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806490_51_7106897.txt @@ -0,0 +1 @@ +5 0.082113 0.359652 0.025654 0.379412 0.025654 0.527632 0.057026 0.558691 0.053889 0.682912 0.066438 0.704088 0.025654 0.745025 0.050752 0.815608 0.075839 0.833956 0.135447 0.839603 0.163682 0.828309 0.402092 0.821250 0.467963 0.836779 0.508747 0.814196 0.530697 0.730907 0.493061 0.702676 0.493061 0.555868 0.518148 0.519167 0.515011 0.368123 0.461688 0.342711 0.417767 0.345534 0.398954 0.354005 0.141721 0.363887 diff --git a/datasets/检测仪/train/labels/订单1806491_51_7106887.txt b/datasets/检测仪/train/labels/订单1806491_51_7106887.txt new file mode 100644 index 0000000..966caa8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806491_51_7106887.txt @@ -0,0 +1 @@ +5 0.465768 0.362451 0.435651 0.383623 0.418711 0.537490 0.433763 0.568545 0.422474 0.691357 0.426237 0.711123 0.405534 0.745000 0.405534 0.816992 0.420586 0.845225 0.458229 0.852285 0.469531 0.842402 0.616341 0.852285 0.661510 0.870635 0.687865 0.849463 0.708568 0.766172 0.691628 0.730889 0.691628 0.588311 0.725508 0.548789 0.727383 0.380801 0.704805 0.359629 0.684089 0.361035 0.663385 0.363857 0.497760 0.363857 diff --git a/datasets/检测仪/train/labels/订单1806493_51_7106927.txt b/datasets/检测仪/train/labels/订单1806493_51_7106927.txt new file mode 100644 index 0000000..0e833d1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806493_51_7106927.txt @@ -0,0 +1 @@ +5 0.307585 0.306063 0.273701 0.332894 0.281234 0.529104 0.298176 0.581339 0.311352 0.738022 0.300052 0.801545 0.313228 0.887657 0.345223 0.922953 0.380984 0.927185 0.397927 0.910246 0.574856 0.911654 0.589908 0.924360 0.621903 0.925768 0.653898 0.893307 0.667073 0.807195 0.650131 0.749321 0.642612 0.577096 0.663307 0.522047 0.657664 0.318770 0.616260 0.287717 0.586142 0.291949 0.571089 0.297598 0.360289 0.304656 0.311352 0.304656 diff --git a/datasets/检测仪/train/labels/订单1806494_51_7106920.txt b/datasets/检测仪/train/labels/订单1806494_51_7106920.txt new file mode 100644 index 0000000..92b812d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806494_51_7106920.txt @@ -0,0 +1 @@ +5 0.332135 0.516318 0.303893 0.536084 0.337773 0.678652 0.350951 0.695596 0.364128 0.797227 0.362240 0.829697 0.373542 0.884756 0.399883 0.911572 0.426237 0.910156 0.443177 0.898867 0.539167 0.881924 0.567396 0.890400 0.582461 0.864990 0.586224 0.800059 0.569284 0.784531 0.548581 0.678652 0.565521 0.640537 0.546693 0.513496 0.527878 0.497969 0.499648 0.497969 0.488346 0.503613 0.366003 0.519141 diff --git a/datasets/检测仪/train/labels/订单1806495_51_7106942.txt b/datasets/检测仪/train/labels/订单1806495_51_7106942.txt new file mode 100644 index 0000000..4a89f65 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806495_51_7106942.txt @@ -0,0 +1 @@ +5 0.371679 0.433048 0.332154 0.452808 0.324615 0.613731 0.341564 0.653260 0.335910 0.787365 0.326500 0.835356 0.334026 0.914413 0.358500 0.941231 0.392385 0.929942 0.531654 0.948288 0.554244 0.956760 0.595654 0.944058 0.625769 0.853712 0.612590 0.819837 0.610705 0.668788 0.635179 0.623615 0.642705 0.458452 0.612590 0.431635 0.582474 0.425990 0.571179 0.433048 0.411205 0.434462 diff --git a/datasets/检测仪/train/labels/订单1806499_51_7106958.txt b/datasets/检测仪/train/labels/订单1806499_51_7106958.txt new file mode 100644 index 0000000..b10e1c0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806499_51_7106958.txt @@ -0,0 +1 @@ +5 0.349062 0.527607 0.318958 0.543135 0.315195 0.673008 0.328359 0.689951 0.328359 0.785937 0.324596 0.819814 0.320833 0.876279 0.334010 0.891807 0.354714 0.890400 0.369779 0.879102 0.452591 0.874873 0.482708 0.887578 0.505286 0.872051 0.514701 0.818408 0.501523 0.783115 0.505286 0.689951 0.529753 0.661719 0.531641 0.554434 0.516576 0.527607 0.497760 0.529023 0.493997 0.533262 0.373542 0.533262 diff --git a/datasets/检测仪/train/labels/订单1806501_51_7106971.txt b/datasets/检测仪/train/labels/订单1806501_51_7106971.txt new file mode 100644 index 0000000..fa8ce94 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806501_51_7106971.txt @@ -0,0 +1 @@ +5 0.542930 0.396328 0.516576 0.414678 0.503411 0.547373 0.520352 0.582666 0.525990 0.705479 0.510937 0.754883 0.522227 0.832520 0.542930 0.860752 0.580573 0.864990 0.597513 0.852285 0.738672 0.852285 0.778203 0.869229 0.798906 0.852285 0.812083 0.761943 0.781966 0.725234 0.768789 0.591133 0.781966 0.554434 0.766914 0.421738 0.744323 0.400566 0.719857 0.400566 0.710443 0.404795 0.574935 0.399150 diff --git a/datasets/检测仪/train/labels/订单1806502_51_7107001.txt b/datasets/检测仪/train/labels/订单1806502_51_7107001.txt new file mode 100644 index 0000000..2fcc7ce --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806502_51_7107001.txt @@ -0,0 +1 @@ +5 0.358507 0.668785 0.303461 0.778889 0.275220 0.798657 0.285104 0.845231 0.447442 0.915822 0.467199 0.905938 0.578727 0.944051 0.623889 0.979340 0.694479 0.990637 0.732593 0.982164 0.729769 0.948287 0.726944 0.935579 0.743877 0.850880 0.755174 0.839595 0.763646 0.821238 0.743877 0.793009 0.678947 0.757720 0.649306 0.756308 0.537789 0.715370 0.516609 0.694190 0.405093 0.653252 0.386736 0.654664 diff --git a/datasets/检测仪/train/labels/订单1806504_51_7107026.txt b/datasets/检测仪/train/labels/订单1806504_51_7107026.txt new file mode 100644 index 0000000..8a4fe54 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806504_51_7107026.txt @@ -0,0 +1 @@ +5 0.317072 0.421737 0.285072 0.448558 0.300133 0.603838 0.318956 0.634896 0.339656 0.760529 0.330244 0.785937 0.349067 0.852283 0.375417 0.873458 0.403650 0.870633 0.413061 0.856521 0.520344 0.846638 0.537283 0.857929 0.554222 0.853696 0.584339 0.829700 0.591867 0.771821 0.578694 0.743587 0.565517 0.620779 0.578694 0.575604 0.582456 0.435854 0.556106 0.410446 0.529756 0.410446 0.505289 0.416092 0.358478 0.421737 diff --git a/datasets/检测仪/train/labels/订单1806507_51_7107059.txt b/datasets/检测仪/train/labels/订单1806507_51_7107059.txt new file mode 100644 index 0000000..8782e20 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806507_51_7107059.txt @@ -0,0 +1 @@ +5 0.437526 0.290459 0.399883 0.310225 0.403646 0.479619 0.424362 0.520557 0.418711 0.673008 0.401771 0.729473 0.409297 0.804287 0.431888 0.833936 0.467643 0.839580 0.484583 0.825459 0.642682 0.836758 0.652096 0.848047 0.691628 0.855107 0.719857 0.832520 0.746211 0.740762 0.731146 0.701240 0.725508 0.534668 0.746211 0.469736 0.757500 0.305986 0.719857 0.274932 0.691628 0.274932 0.685977 0.281992 0.490234 0.289043 diff --git a/datasets/检测仪/train/labels/订单1806511_51_7107090.txt b/datasets/检测仪/train/labels/订单1806511_51_7107090.txt new file mode 100644 index 0000000..fdc370f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806511_51_7107090.txt @@ -0,0 +1 @@ +5 0.322613 0.219940 0.279320 0.252410 0.288733 0.503680 0.311320 0.568610 0.343320 0.764830 0.316973 0.829760 0.326373 0.904580 0.362147 0.939870 0.407307 0.949750 0.429893 0.929990 0.608707 0.935630 0.635053 0.945520 0.674587 0.949750 0.717867 0.918690 0.740453 0.821290 0.727280 0.771890 0.721640 0.562970 0.742333 0.500850 0.770573 0.253820 0.710347 0.208650 0.674587 0.210060 0.650107 0.221350 0.380960 0.234060 0.364027 0.219940 diff --git a/datasets/检测仪/train/labels/订单1806513_51_7107909.txt b/datasets/检测仪/train/labels/订单1806513_51_7107909.txt new file mode 100644 index 0000000..4228e68 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806513_51_7107909.txt @@ -0,0 +1 @@ +5 0.270013 0.228350 0.226732 0.257988 0.251198 0.451387 0.273776 0.486670 0.283190 0.629248 0.271901 0.668770 0.286953 0.740762 0.309544 0.768994 0.341536 0.771826 0.356602 0.761943 0.499648 0.757705 0.509049 0.771826 0.537292 0.771826 0.573047 0.752061 0.586224 0.671592 0.567396 0.633486 0.554219 0.481025 0.578698 0.423154 0.595638 0.239639 0.552344 0.214229 0.520352 0.215645 0.499648 0.222695 0.307656 0.229756 0.288841 0.225527 diff --git a/datasets/检测仪/train/labels/订单1806514_51_7107083.txt b/datasets/检测仪/train/labels/订单1806514_51_7107083.txt new file mode 100644 index 0000000..917e169 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806514_51_7107083.txt @@ -0,0 +1 @@ +5 0.290722 0.287633 0.258722 0.303163 0.241783 0.462675 0.253078 0.506437 0.238022 0.657479 0.219200 0.770408 0.224844 0.809937 0.418711 0.831108 0.484583 0.822642 0.510933 0.792996 0.527872 0.709708 0.503406 0.663125 0.518461 0.530433 0.541050 0.488083 0.571167 0.327158 0.533522 0.297517 0.501522 0.307396 0.349067 0.294692 0.326483 0.289046 diff --git a/datasets/检测仪/train/labels/订单1806515_51_7107133.txt b/datasets/检测仪/train/labels/订单1806515_51_7107133.txt new file mode 100644 index 0000000..29ac650 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806515_51_7107133.txt @@ -0,0 +1 @@ +5 0.059107 0.284880 0.019587 0.300400 0.000000 0.450240 0.000000 0.528700 0.010173 0.543200 0.000000 0.777600 0.000000 0.847590 0.077933 0.870700 0.207800 0.870700 0.269920 0.881990 0.309440 0.862230 0.337667 0.770470 0.320733 0.736590 0.337667 0.554500 0.360253 0.506500 0.375320 0.334280 0.343320 0.307460 0.311320 0.306050 0.292507 0.308870 0.100520 0.293340 diff --git a/datasets/检测仪/train/labels/订单1806516_51_7107103.txt b/datasets/检测仪/train/labels/订单1806516_51_7107103.txt new file mode 100644 index 0000000..905483f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806516_51_7107103.txt @@ -0,0 +1 @@ +5 0.493997 0.392090 0.450703 0.410449 0.435651 0.584072 0.446940 0.630664 0.443177 0.785937 0.424362 0.818408 0.409297 0.905928 0.430000 0.934160 0.454466 0.936982 0.454466 0.931338 0.618216 0.942627 0.661510 0.966631 0.704805 0.952510 0.736797 0.856523 0.731146 0.811348 0.740560 0.671592 0.766914 0.629248 0.806432 0.428799 0.765026 0.394922 0.731146 0.396328 0.714206 0.404795 0.542930 0.394922 diff --git a/datasets/检测仪/train/labels/订单1806519_51_7107227.txt b/datasets/检测仪/train/labels/订单1806519_51_7107227.txt new file mode 100644 index 0000000..2063233 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806519_51_7107227.txt @@ -0,0 +1 @@ +5 0.732937 0.406276 0.704697 0.396399 0.518368 0.396399 0.490140 0.411923 0.352739 0.414747 0.311329 0.404869 0.236037 0.411923 0.213462 0.427456 0.213462 0.440157 0.236037 0.450044 0.228520 0.512150 0.209697 0.534738 0.205932 0.547439 0.241690 0.564379 0.311329 0.572850 0.360268 0.565795 0.501434 0.558733 0.531538 0.572850 0.714114 0.584143 0.747995 0.562972 0.744231 0.547439 0.734814 0.441573 0.740466 0.424633 diff --git a/datasets/检测仪/train/labels/订单1806522_51_7107184.txt b/datasets/检测仪/train/labels/订单1806522_51_7107184.txt new file mode 100644 index 0000000..7595310 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806522_51_7107184.txt @@ -0,0 +1 @@ +5 0.435650 0.361038 0.390478 0.377979 0.396122 0.565725 0.414944 0.602425 0.420589 0.760529 0.407417 0.788763 0.413061 0.879104 0.431883 0.901692 0.473289 0.912983 0.492111 0.900279 0.637039 0.896046 0.672800 0.905925 0.704800 0.884750 0.725500 0.801467 0.702917 0.769000 0.697267 0.612308 0.723622 0.571371 0.727383 0.386446 0.704800 0.361038 0.676567 0.355392 0.652100 0.365275 0.477056 0.363862 diff --git a/datasets/检测仪/train/labels/订单1806523_51_7107175.txt b/datasets/检测仪/train/labels/订单1806523_51_7107175.txt new file mode 100644 index 0000000..4b7c7fd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806523_51_7107175.txt @@ -0,0 +1 @@ +5 0.326483 0.403388 0.320833 0.433033 0.384828 0.531846 0.416828 0.545963 0.469528 0.623600 0.469528 0.651833 0.505289 0.697004 0.537283 0.708300 0.557989 0.704063 0.559872 0.694183 0.640806 0.660304 0.672800 0.660304 0.680328 0.634896 0.650217 0.584075 0.631394 0.571371 0.565517 0.489496 0.571167 0.455617 0.507172 0.366683 0.486467 0.356804 0.467644 0.358217 0.465761 0.361038 0.360361 0.399154 diff --git a/datasets/检测仪/train/labels/订单1806524_51_7107203.txt b/datasets/检测仪/train/labels/订单1806524_51_7107203.txt new file mode 100644 index 0000000..18dd97d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806524_51_7107203.txt @@ -0,0 +1 @@ +5 0.369667 0.394980 0.343320 0.420390 0.365907 0.595430 0.384733 0.627900 0.407307 0.750710 0.394133 0.798710 0.399787 0.832590 0.426133 0.867880 0.448720 0.872110 0.478840 0.862230 0.606827 0.848110 0.635053 0.856580 0.661400 0.838230 0.676467 0.773300 0.661400 0.752120 0.657640 0.610960 0.687760 0.579900 0.680227 0.410510 0.642587 0.379450 0.603053 0.382280 0.584240 0.389340 0.422373 0.402040 0.411080 0.392160 diff --git a/datasets/检测仪/train/labels/订单1806526_51_7107134.txt b/datasets/检测仪/train/labels/订单1806526_51_7107134.txt new file mode 100644 index 0000000..d79820c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806526_51_7107134.txt @@ -0,0 +1 @@ +5 0.307656 0.481025 0.273776 0.500791 0.290716 0.674424 0.320833 0.722412 0.345299 0.869229 0.339661 0.915811 0.364128 0.983564 0.389909 1.000000 0.429505 1.000000 0.443177 0.996270 0.574935 0.982158 0.608802 0.999092 0.648333 0.982158 0.661510 0.903105 0.646445 0.872051 0.621979 0.713945 0.635156 0.665947 0.627630 0.482441 0.593750 0.455615 0.557995 0.455615 0.539167 0.464092 0.354714 0.473965 0.337773 0.471143 diff --git a/datasets/检测仪/train/labels/订单1806528_51_7107115.txt b/datasets/检测仪/train/labels/订单1806528_51_7107115.txt new file mode 100644 index 0000000..623dc7d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806528_51_7107115.txt @@ -0,0 +1 @@ +5 0.332135 0.380801 0.298255 0.400566 0.313307 0.572783 0.335898 0.599600 0.341536 0.721006 0.339661 0.777471 0.350951 0.805703 0.367891 0.825459 0.403646 0.818408 0.514701 0.815586 0.550456 0.824053 0.571159 0.809932 0.595638 0.740762 0.573047 0.718184 0.580573 0.599600 0.599401 0.553018 0.605039 0.403389 0.582461 0.375156 0.550456 0.370918 0.546693 0.380801 0.384831 0.385039 0.369779 0.382217 diff --git a/datasets/检测仪/train/labels/订单1806536_51_7107277.txt b/datasets/检测仪/train/labels/订单1806536_51_7107277.txt new file mode 100644 index 0000000..e81fd90 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806536_51_7107277.txt @@ -0,0 +1 @@ +5 0.298255 0.458437 0.262487 0.476797 0.268138 0.632070 0.277552 0.684297 0.285078 0.814170 0.271901 0.856523 0.281315 0.925693 0.302018 0.953926 0.332135 0.956748 0.339661 0.945449 0.471406 0.935566 0.520352 0.953926 0.541055 0.929922 0.559870 0.863574 0.541055 0.828291 0.539167 0.685713 0.565521 0.643359 0.582461 0.488086 0.546693 0.458437 0.514701 0.458437 0.505286 0.465498 0.349062 0.465498 0.330247 0.458437 diff --git a/datasets/检测仪/train/labels/订单1806541_51_7107482.txt b/datasets/检测仪/train/labels/订单1806541_51_7107482.txt new file mode 100644 index 0000000..a3956f5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806541_51_7107482.txt @@ -0,0 +1 @@ +5 0.394245 0.390684 0.371654 0.400566 0.364128 0.531846 0.382943 0.568545 0.384831 0.678652 0.360365 0.730889 0.371654 0.794404 0.396120 0.815586 0.424362 0.819814 0.426237 0.805703 0.550456 0.807109 0.582461 0.818408 0.612578 0.801465 0.623867 0.737939 0.616341 0.706885 0.603164 0.579844 0.623867 0.550195 0.637044 0.406211 0.612578 0.385039 0.589987 0.383623 0.580573 0.387861 0.463880 0.390684 0.433763 0.379395 diff --git a/datasets/检测仪/train/labels/订单1806543_51_7107285.txt b/datasets/检测仪/train/labels/订单1806543_51_7107285.txt new file mode 100644 index 0000000..9c8ff80 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806543_51_7107285.txt @@ -0,0 +1 @@ +5 0.360365 0.442910 0.330247 0.464092 0.330247 0.610898 0.345299 0.656064 0.349062 0.791582 0.324596 0.824053 0.335898 0.893223 0.350951 0.912988 0.379180 0.915811 0.394245 0.904512 0.516576 0.905928 0.552344 0.920039 0.588099 0.897461 0.599401 0.822637 0.584336 0.797227 0.580573 0.661719 0.608802 0.626426 0.625742 0.475381 0.597513 0.451387 0.567396 0.447148 0.556107 0.451387 0.407422 0.447148 0.381068 0.441504 diff --git a/datasets/检测仪/train/labels/订单1806544_51_7107363.txt b/datasets/检测仪/train/labels/订单1806544_51_7107363.txt new file mode 100644 index 0000000..e81e90f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806544_51_7107363.txt @@ -0,0 +1 @@ +5 0.335787 0.500850 0.320733 0.523440 0.354613 0.650490 0.375320 0.673070 0.401667 0.762000 0.399787 0.798710 0.416720 0.849520 0.437427 0.866460 0.458133 0.867880 0.469427 0.857990 0.569173 0.843880 0.595533 0.841060 0.610587 0.824120 0.616227 0.766240 0.593653 0.745060 0.567293 0.644840 0.571067 0.605310 0.556000 0.498030 0.527773 0.474030 0.505187 0.481090 0.501427 0.485330 0.382840 0.500850 diff --git a/datasets/检测仪/train/labels/订单1806545_51_7107289.txt b/datasets/检测仪/train/labels/订单1806545_51_7107289.txt new file mode 100644 index 0000000..df6c2c8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806545_51_7107289.txt @@ -0,0 +1 @@ +5 0.087448 0.300342 0.079922 0.329980 0.183438 0.492324 0.206029 0.513496 0.277552 0.620781 0.292604 0.651836 0.337773 0.706885 0.366003 0.709707 0.392357 0.695596 0.507174 0.668770 0.539167 0.641953 0.535404 0.591133 0.505286 0.564316 0.456354 0.458437 0.454466 0.420322 0.399883 0.250928 0.362240 0.238223 0.337773 0.239639 0.320833 0.248105 0.172148 0.289043 diff --git a/datasets/检测仪/train/labels/订单1806548_51_7107271.txt b/datasets/检测仪/train/labels/订单1806548_51_7107271.txt new file mode 100644 index 0000000..6af510b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806548_51_7107271.txt @@ -0,0 +1 @@ +5 0.277552 0.397744 0.234258 0.413271 0.230495 0.537490 0.253073 0.569961 0.251198 0.664541 0.241784 0.692773 0.247435 0.750645 0.262487 0.763350 0.279427 0.764766 0.290716 0.756299 0.392357 0.760527 0.414948 0.766172 0.445065 0.749238 0.456354 0.689951 0.448828 0.677246 0.448828 0.584072 0.456354 0.553018 0.478932 0.417500 0.452591 0.403389 0.428125 0.414678 0.305781 0.406211 diff --git a/datasets/检测仪/train/labels/订单1806552_51_7107273.txt b/datasets/检测仪/train/labels/订单1806552_51_7107273.txt new file mode 100644 index 0000000..3da2eab --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806552_51_7107273.txt @@ -0,0 +1 @@ +5 0.195709 0.372365 0.150538 0.379423 0.163085 0.523409 0.188179 0.554466 0.208256 0.671630 0.198222 0.721038 0.208256 0.795856 0.238376 0.819851 0.278521 0.817029 0.293581 0.804322 0.466744 0.795856 0.509402 0.809971 0.547051 0.781740 0.562103 0.716803 0.526974 0.687159 0.516932 0.555880 0.534496 0.512115 0.526974 0.390716 0.486821 0.358250 0.456701 0.361072 0.441650 0.365308 0.245897 0.369543 diff --git a/datasets/检测仪/train/labels/订单1806555_51_7107321.txt b/datasets/检测仪/train/labels/订单1806555_51_7107321.txt new file mode 100644 index 0000000..709b895 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806555_51_7107321.txt @@ -0,0 +1 @@ +5 0.162734 0.410449 0.134505 0.425977 0.113802 0.591133 0.123203 0.613721 0.104388 0.749238 0.087448 0.801465 0.070508 0.877695 0.091211 0.908750 0.125091 0.912988 0.149557 0.896045 0.296367 0.896045 0.303893 0.911572 0.339661 0.918633 0.373542 0.888984 0.398008 0.807109 0.379180 0.776055 0.396120 0.637715 0.416823 0.595371 0.441289 0.431621 0.407422 0.404795 0.382943 0.406211 0.369779 0.413271 0.209792 0.413271 diff --git a/datasets/检测仪/train/labels/订单1806560_51_7107355.txt b/datasets/检测仪/train/labels/订单1806560_51_7107355.txt new file mode 100644 index 0000000..00b62ea --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806560_51_7107355.txt @@ -0,0 +1 @@ +5 0.309547 0.620779 0.266257 0.626425 0.268129 0.636305 0.232368 0.745000 0.211667 0.756294 0.215439 0.774638 0.219196 0.784529 0.392354 0.819814 0.430000 0.814167 0.557982 0.835340 0.580570 0.852281 0.655863 0.859342 0.685980 0.853695 0.682208 0.840987 0.669035 0.824046 0.704795 0.745000 0.712325 0.743586 0.712325 0.729474 0.687851 0.708300 0.621974 0.694178 0.597515 0.697007 0.477047 0.671590 0.460117 0.661711 0.292602 0.619364 diff --git a/datasets/检测仪/train/labels/订单1806561_51_7107346.txt b/datasets/检测仪/train/labels/订单1806561_51_7107346.txt new file mode 100644 index 0000000..70e433e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806561_51_7107346.txt @@ -0,0 +1 @@ +5 0.243670 0.541721 0.236140 0.564309 0.309547 0.663125 0.335892 0.673004 0.381067 0.743586 0.384825 0.771820 0.420585 0.816996 0.448816 0.831107 0.471404 0.825461 0.473289 0.807116 0.548582 0.771820 0.573041 0.773235 0.574927 0.747818 0.554225 0.708300 0.529751 0.695592 0.473289 0.615132 0.463874 0.585482 0.413056 0.496557 0.386711 0.486667 0.373538 0.493728 0.358480 0.503607 0.264371 0.538904 diff --git a/datasets/检测仪/train/labels/订单1806563_51_7107441.txt b/datasets/检测仪/train/labels/订单1806563_51_7107441.txt new file mode 100644 index 0000000..12bf96f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806563_51_7107441.txt @@ -0,0 +1 @@ +5 0.533516 0.198701 0.471406 0.202939 0.303893 0.329980 0.281315 0.370918 0.149557 0.448564 0.110039 0.481025 0.040391 0.533262 0.027214 0.569961 0.046042 0.586895 0.079922 0.584072 0.170260 0.647598 0.187201 0.670186 0.206029 0.677246 0.241784 0.677246 0.326484 0.630664 0.335898 0.602432 0.478932 0.506436 0.514701 0.497969 0.685977 0.383623 0.691628 0.349746 0.672799 0.335625 0.539167 0.226934 diff --git a/datasets/检测仪/train/labels/订单1806566_51_7107507.txt b/datasets/检测仪/train/labels/订单1806566_51_7107507.txt new file mode 100644 index 0000000..f1038e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806566_51_7107507.txt @@ -0,0 +1 @@ +5 0.507172 0.375154 0.473289 0.389271 0.456350 0.521962 0.478939 0.564312 0.463883 0.668775 0.450706 0.715358 0.446939 0.783117 0.467644 0.814171 0.493994 0.818404 0.512817 0.802879 0.640806 0.809937 0.652100 0.821229 0.680328 0.825462 0.704800 0.809937 0.731150 0.736529 0.712328 0.705475 0.710444 0.571371 0.733033 0.536079 0.744322 0.396329 0.717972 0.373742 0.693506 0.372333 0.684094 0.376567 0.533522 0.377979 diff --git a/datasets/检测仪/train/labels/订单1806567_51_7107454.txt b/datasets/检测仪/train/labels/订单1806567_51_7107454.txt new file mode 100644 index 0000000..0931ee6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806567_51_7107454.txt @@ -0,0 +1 @@ +5 0.356602 0.403389 0.339661 0.425977 0.347187 0.558662 0.362240 0.588311 0.369779 0.685713 0.360365 0.725234 0.367891 0.788760 0.390482 0.807109 0.420586 0.807109 0.424362 0.797227 0.533516 0.794404 0.548581 0.807109 0.565521 0.805703 0.582461 0.788760 0.599401 0.723828 0.580573 0.701240 0.567396 0.589727 0.586224 0.561494 0.595638 0.424561 0.563633 0.394922 0.539167 0.397744 0.535404 0.403389 0.390482 0.410449 0.379180 0.404795 diff --git a/datasets/检测仪/train/labels/订单1806568_51_7107451.txt b/datasets/检测仪/train/labels/订单1806568_51_7107451.txt new file mode 100644 index 0000000..af4fa38 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806568_51_7107451.txt @@ -0,0 +1 @@ +5 0.244570 0.325814 0.218105 0.351224 0.217046 0.397806 0.230811 0.404863 0.232925 0.522031 0.228691 0.543203 0.219165 0.575671 0.244570 0.616608 0.319741 0.632135 0.367383 0.609551 0.508193 0.606725 0.539956 0.622253 0.717817 0.636374 0.743228 0.605313 0.748521 0.568613 0.740054 0.561556 0.741113 0.380866 0.742168 0.335697 0.711465 0.306048 0.541016 0.306048 0.510312 0.330046 0.364209 0.331458 0.326094 0.311699 diff --git a/datasets/检测仪/train/labels/订单1806570_51_7107513.txt b/datasets/检测仪/train/labels/订单1806570_51_7107513.txt new file mode 100644 index 0000000..fd608f3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806570_51_7107513.txt @@ -0,0 +1 @@ +5 0.268138 0.365273 0.228607 0.407627 0.283190 0.625010 0.313307 0.660303 0.341536 0.808525 0.335898 0.869229 0.367891 0.948271 0.392357 0.969453 0.424362 0.970859 0.448828 0.953926 0.603164 0.952510 0.627630 0.962393 0.655859 0.958154 0.693503 0.908750 0.697266 0.831113 0.672799 0.797227 0.646445 0.647598 0.665273 0.592549 0.657747 0.369512 0.614453 0.337041 0.576810 0.342686 0.556107 0.351162 0.339661 0.373740 0.326484 0.365273 0.275664 0.363857 diff --git a/datasets/检测仪/train/labels/订单1806578_51_7107558.txt b/datasets/检测仪/train/labels/订单1806578_51_7107558.txt new file mode 100644 index 0000000..ae22b8b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806578_51_7107558.txt @@ -0,0 +1 @@ +5 0.282686 0.646250 0.261514 0.663190 0.264688 0.685781 0.280566 0.701309 0.278452 0.798711 0.271040 0.822708 0.264688 0.842467 0.282686 0.869290 0.351504 0.874935 0.381147 0.853763 0.485962 0.842467 0.505015 0.853763 0.623594 0.845293 0.634180 0.812826 0.631006 0.791647 0.618301 0.647663 0.619360 0.620846 0.607715 0.608138 0.491255 0.619434 0.475371 0.630723 0.362090 0.640605 0.345151 0.632135 0.285864 0.644844 diff --git a/datasets/检测仪/train/labels/订单1806583_51_7108508.txt b/datasets/检测仪/train/labels/订单1806583_51_7108508.txt new file mode 100644 index 0000000..093ae5e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806583_51_7108508.txt @@ -0,0 +1 @@ +5 0.410824 0.179046 0.388588 0.227039 0.412941 0.481131 0.433054 0.516425 0.445760 0.708405 0.442583 0.754987 0.456348 0.853804 0.477520 0.887680 0.505049 0.894739 0.519868 0.869333 0.626799 0.848157 0.649034 0.862275 0.664917 0.829804 0.676559 0.723935 0.655387 0.684405 0.647975 0.491013 0.652211 0.419020 0.650093 0.191752 0.628917 0.160693 0.591863 0.159281 0.588686 0.170575 0.441525 0.187516 diff --git a/datasets/检测仪/train/labels/订单1806589_51_7107638.txt b/datasets/检测仪/train/labels/订单1806589_51_7107638.txt new file mode 100644 index 0000000..927712b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806589_51_7107638.txt @@ -0,0 +1 @@ +5 0.409300 0.356804 0.384828 0.373742 0.394239 0.485263 0.418711 0.514904 0.422472 0.599604 0.422472 0.634896 0.424356 0.680067 0.454472 0.698417 0.477056 0.688538 0.565517 0.680067 0.599394 0.688538 0.616339 0.674421 0.625744 0.622188 0.599394 0.595367 0.593750 0.497967 0.597517 0.473967 0.586222 0.356804 0.559872 0.342688 0.544811 0.352571 0.433767 0.356804 diff --git a/datasets/检测仪/train/labels/订单1806596_51_7107765.txt b/datasets/检测仪/train/labels/订单1806596_51_7107765.txt new file mode 100644 index 0000000..ad2ef8a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806596_51_7107765.txt @@ -0,0 +1 @@ +5 0.423399 0.289039 0.389529 0.307392 0.359412 0.468314 0.378235 0.503608 0.357529 0.633471 0.357529 0.663118 0.340588 0.701235 0.336824 0.776049 0.357529 0.811343 0.389529 0.815578 0.408340 0.802873 0.557033 0.818402 0.596562 0.836745 0.647386 0.816990 0.669961 0.729461 0.656797 0.682882 0.654915 0.541716 0.683137 0.490902 0.718902 0.310216 0.685020 0.291863 0.649268 0.291863 0.447869 0.294686 diff --git a/datasets/检测仪/train/labels/订单1806598_51_7107754.txt b/datasets/检测仪/train/labels/订单1806598_51_7107754.txt new file mode 100644 index 0000000..46ad635 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806598_51_7107754.txt @@ -0,0 +1 @@ +5 0.493994 0.591133 0.478939 0.608075 0.467644 0.718179 0.480822 0.737942 0.478939 0.832521 0.467644 0.859342 0.467644 0.898867 0.480822 0.921454 0.507172 0.914396 0.580578 0.917221 0.616339 0.925687 0.633278 0.912983 0.648333 0.859342 0.635156 0.838167 0.638922 0.753471 0.652100 0.712533 0.663389 0.610896 0.640806 0.591133 0.621983 0.599604 0.537283 0.595367 diff --git a/datasets/检测仪/train/labels/订单1806600_51_7107938.txt b/datasets/检测仪/train/labels/订单1806600_51_7107938.txt new file mode 100644 index 0000000..98e5313 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806600_51_7107938.txt @@ -0,0 +1 @@ +5 0.330212 0.392206 0.292565 0.416213 0.294461 0.567255 0.318922 0.602549 0.317042 0.709828 0.315163 0.763468 0.324575 0.826998 0.333971 0.853811 0.358448 0.858051 0.377271 0.845343 0.503366 0.841103 0.548546 0.850993 0.563595 0.824167 0.576781 0.764877 0.565490 0.743701 0.571127 0.612426 0.591830 0.547488 0.586193 0.409154 0.563595 0.389387 0.533480 0.389387 0.525964 0.397855 0.358448 0.397855 diff --git a/datasets/检测仪/train/labels/订单1806601_51_7107745.txt b/datasets/检测仪/train/labels/订单1806601_51_7107745.txt new file mode 100644 index 0000000..21399a3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806601_51_7107745.txt @@ -0,0 +1 @@ +5 0.358477 0.462676 0.322721 0.472559 0.266250 0.608076 0.251198 0.649014 0.204141 0.753467 0.179674 0.780293 0.166497 0.818408 0.149557 0.876279 0.145794 0.897461 0.181549 0.907334 0.189089 0.898867 0.296367 0.936982 0.337773 0.963799 0.360365 0.953926 0.439414 0.866396 0.431888 0.836758 0.480820 0.713945 0.524115 0.660303 0.588099 0.547373 0.565521 0.516318 0.520352 0.506436 0.401771 0.479619 diff --git a/datasets/检测仪/train/labels/订单1806603_51_7107795.txt b/datasets/检测仪/train/labels/订单1806603_51_7107795.txt new file mode 100644 index 0000000..4686137 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806603_51_7107795.txt @@ -0,0 +1 @@ +5 0.074271 0.382217 0.047917 0.420322 0.138268 0.640537 0.183438 0.682891 0.283190 0.884756 0.294492 0.931338 0.320833 0.992031 0.472539 1.000000 0.516576 1.000000 0.608802 0.976504 0.655859 0.980742 0.701029 0.932744 0.682214 0.840996 0.627630 0.784531 0.561758 0.601016 0.550456 0.544551 0.456354 0.315869 0.405534 0.291865 0.373542 0.300342 0.356602 0.310225 0.125091 0.375156 diff --git a/datasets/检测仪/train/labels/订单1806604_51_7107828.txt b/datasets/检测仪/train/labels/订单1806604_51_7107828.txt new file mode 100644 index 0000000..6806e7f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806604_51_7107828.txt @@ -0,0 +1 @@ +5 0.390482 0.324336 0.360365 0.353984 0.373542 0.516318 0.401771 0.561494 0.399883 0.670186 0.398008 0.699824 0.414948 0.764766 0.437526 0.778877 0.467643 0.777471 0.573047 0.781699 0.603164 0.797227 0.625742 0.784531 0.652096 0.719590 0.642682 0.694180 0.652096 0.568545 0.676563 0.531846 0.697266 0.351162 0.659622 0.318691 0.635156 0.325752 0.623867 0.332803 0.437526 0.334219 0.435651 0.324336 diff --git a/datasets/检测仪/train/labels/订单1806607_51_7107900.txt b/datasets/检测仪/train/labels/订单1806607_51_7107900.txt new file mode 100644 index 0000000..e2eac8c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806607_51_7107900.txt @@ -0,0 +1 @@ +5 0.358500 0.441519 0.337795 0.461279 0.360385 0.605269 0.379205 0.626442 0.384846 0.750663 0.375436 0.783125 0.382962 0.852298 0.411205 0.870654 0.435667 0.874885 0.454487 0.862183 0.571179 0.859356 0.606949 0.867827 0.640821 0.833952 0.640821 0.769010 0.616359 0.743606 0.593769 0.612327 0.614474 0.568567 0.601295 0.441519 0.567423 0.417519 0.524128 0.421750 0.409321 0.442933 diff --git a/datasets/检测仪/train/labels/订单1806610_51_7107834.txt b/datasets/检测仪/train/labels/订单1806610_51_7107834.txt new file mode 100644 index 0000000..5a33367 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806610_51_7107834.txt @@ -0,0 +1 @@ +5 0.226732 0.314453 0.187201 0.335625 0.192852 0.574189 0.217318 0.603838 0.222969 0.785937 0.211667 0.867812 0.239909 0.989209 0.268672 1.000000 0.296055 1.000000 0.320833 0.992031 0.516576 0.983564 0.574935 0.997686 0.616341 0.963799 0.623867 0.853691 0.601276 0.808525 0.573047 0.610898 0.599401 0.543135 0.593750 0.324336 0.542930 0.297520 0.507174 0.301748 0.495872 0.307393 0.273776 0.313047 diff --git a/datasets/检测仪/train/labels/订单1806615_51_7107821.txt b/datasets/检测仪/train/labels/订单1806615_51_7107821.txt new file mode 100644 index 0000000..3b68700 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806615_51_7107821.txt @@ -0,0 +1 @@ +5 0.492109 0.348330 0.458229 0.369512 0.456354 0.523379 0.469531 0.550195 0.475169 0.664541 0.454466 0.705479 0.458229 0.783115 0.480820 0.809932 0.509049 0.812764 0.529753 0.802881 0.663385 0.809932 0.701029 0.818408 0.721732 0.794404 0.738672 0.721006 0.727383 0.689951 0.716094 0.557256 0.736797 0.527607 0.731146 0.370918 0.714206 0.346924 0.687865 0.349746 0.680326 0.352568 0.512813 0.355391 diff --git a/datasets/检测仪/train/labels/订单1806618_51_7107891.txt b/datasets/检测仪/train/labels/订单1806618_51_7107891.txt new file mode 100644 index 0000000..e1257b6 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806618_51_7107891.txt @@ -0,0 +1 @@ +5 0.405534 0.431621 0.388594 0.447148 0.379180 0.564316 0.388594 0.591133 0.379180 0.681475 0.373542 0.713945 0.379180 0.761943 0.392357 0.778877 0.409297 0.777471 0.418711 0.766172 0.509049 0.776055 0.537292 0.783115 0.556107 0.768994 0.571159 0.718184 0.565521 0.687129 0.571159 0.602432 0.586224 0.575605 0.599401 0.458437 0.588099 0.441504 0.569284 0.437266 0.561758 0.444326 0.430000 0.437266 diff --git a/datasets/检测仪/train/labels/订单1806625_51_7107994.txt b/datasets/检测仪/train/labels/订单1806625_51_7107994.txt new file mode 100644 index 0000000..a2ae717 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806625_51_7107994.txt @@ -0,0 +1 @@ +5 0.344987 0.263627 0.316728 0.283392 0.324267 0.481020 0.344987 0.523363 0.346872 0.644765 0.339332 0.684294 0.335563 0.760520 0.365720 0.788755 0.397762 0.794402 0.407186 0.784520 0.546649 0.785931 0.586230 0.792990 0.608835 0.780284 0.633338 0.709706 0.616374 0.677235 0.623914 0.533245 0.652186 0.489490 0.674804 0.303157 0.654071 0.266451 0.623914 0.265039 0.590000 0.266451 0.401531 0.266451 0.392107 0.256569 diff --git a/datasets/检测仪/train/labels/订单1806626_51_7108129.txt b/datasets/检测仪/train/labels/订单1806626_51_7108129.txt new file mode 100644 index 0000000..f2011fb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806626_51_7108129.txt @@ -0,0 +1 @@ +5 0.153320 0.524785 0.119440 0.545957 0.119440 0.561494 0.130742 0.574189 0.136380 0.671592 0.126979 0.685713 0.125091 0.706885 0.243672 0.723828 0.302018 0.711123 0.471406 0.708301 0.529753 0.723828 0.727383 0.725234 0.761263 0.699824 0.757500 0.677246 0.763151 0.550195 0.772552 0.521963 0.731146 0.496553 0.507174 0.502197 0.473294 0.516318 0.288841 0.516318 0.258724 0.506436 diff --git a/datasets/检测仪/train/labels/订单1806627_51_7108082.txt b/datasets/检测仪/train/labels/订单1806627_51_7108082.txt new file mode 100644 index 0000000..b311f96 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806627_51_7108082.txt @@ -0,0 +1 @@ +5 0.187093 0.205820 0.153227 0.221350 0.158867 0.235470 0.173920 0.351220 0.175800 0.372400 0.204040 0.394980 0.388493 0.390750 0.414840 0.376630 0.554120 0.375220 0.597413 0.385100 0.665173 0.382280 0.685880 0.358280 0.685880 0.334280 0.685880 0.249580 0.693400 0.227000 0.676467 0.211470 0.591760 0.204410 0.557880 0.215710 0.401667 0.217120 0.362147 0.205820 0.187093 0.204410 diff --git a/datasets/检测仪/train/labels/订单1806633_51_7108088.txt b/datasets/检测仪/train/labels/订单1806633_51_7108088.txt new file mode 100644 index 0000000..1f6a370 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806633_51_7108088.txt @@ -0,0 +1 @@ +5 0.422472 0.358217 0.394239 0.373742 0.375417 0.500788 0.394239 0.547375 0.382950 0.656067 0.367889 0.698417 0.369772 0.756292 0.388594 0.784525 0.414944 0.790171 0.426239 0.781704 0.548578 0.781704 0.582456 0.794408 0.603161 0.777467 0.618217 0.712533 0.603161 0.685713 0.608806 0.561488 0.627628 0.529021 0.650217 0.396329 0.625744 0.370921 0.601278 0.373742 0.452589 0.363862 diff --git a/datasets/检测仪/train/labels/订单1806638_51_7108131.txt b/datasets/检测仪/train/labels/订单1806638_51_7108131.txt new file mode 100644 index 0000000..9c6ee00 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806638_51_7108131.txt @@ -0,0 +1 @@ +5 0.334010 0.311631 0.298255 0.334219 0.270013 0.531846 0.290716 0.574189 0.273776 0.725234 0.254961 0.774648 0.245547 0.860752 0.286953 0.910156 0.320833 0.911572 0.356602 0.897461 0.507174 0.894629 0.552344 0.915811 0.582461 0.891807 0.616341 0.804287 0.593750 0.756299 0.605039 0.579844 0.618216 0.529023 0.646445 0.372334 0.618216 0.344102 0.580573 0.341279 0.384831 0.322930 diff --git a/datasets/检测仪/train/labels/订单1806640_51_7108162.txt b/datasets/检测仪/train/labels/订单1806640_51_7108162.txt new file mode 100644 index 0000000..768e1d8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806640_51_7108162.txt @@ -0,0 +1 @@ +5 0.621983 0.479617 0.597517 0.490908 0.569283 0.595367 0.565517 0.626425 0.533522 0.719592 0.527872 0.747825 0.505289 0.807113 0.512817 0.836758 0.533522 0.842404 0.550461 0.833933 0.648333 0.855108 0.680328 0.872046 0.708561 0.860754 0.729267 0.798642 0.731150 0.773233 0.751850 0.671596 0.780083 0.643362 0.812083 0.536079 0.791378 0.509258 0.766911 0.509258 0.650217 0.490908 diff --git a/datasets/检测仪/train/labels/订单1806641_51_7108198.txt b/datasets/检测仪/train/labels/订单1806641_51_7108198.txt new file mode 100644 index 0000000..6f72503 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806641_51_7108198.txt @@ -0,0 +1 @@ +5 0.620000 0.234060 0.606827 0.252410 0.591760 0.290520 0.597413 0.317340 0.576707 0.394980 0.582360 0.409100 0.552240 0.445800 0.546587 0.529090 0.552240 0.551670 0.572947 0.550260 0.685880 0.557320 0.710347 0.568610 0.731040 0.561550 0.755520 0.438740 0.749867 0.420390 0.768693 0.327220 0.783747 0.306050 0.781867 0.249580 0.770573 0.236880 0.740453 0.239700 0.710347 0.246760 0.657640 0.243940 diff --git a/datasets/检测仪/train/labels/订单1806643_51_7108281.txt b/datasets/检测仪/train/labels/订单1806643_51_7108281.txt new file mode 100644 index 0000000..17a6fa7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806643_51_7108281.txt @@ -0,0 +1 @@ +5 0.236477 0.571396 0.213477 0.591162 0.272614 0.685742 0.305466 0.697031 0.374455 0.770439 0.361307 0.798672 0.410591 0.846665 0.456580 0.860781 0.482864 0.849487 0.637273 0.824077 0.683261 0.826904 0.686545 0.808550 0.676693 0.759146 0.637273 0.739380 0.571568 0.660332 0.574852 0.627861 0.505864 0.550225 0.466443 0.538931 0.443443 0.543164 0.256182 0.568574 diff --git a/datasets/检测仪/train/labels/订单1806644_51_7108286.txt b/datasets/检测仪/train/labels/订单1806644_51_7108286.txt new file mode 100644 index 0000000..39b546c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806644_51_7108286.txt @@ -0,0 +1 @@ +5 0.680326 0.502197 0.638919 0.497969 0.488346 0.557256 0.452591 0.581250 0.349062 0.625010 0.302018 0.630664 0.241784 0.660303 0.236133 0.677246 0.236133 0.697002 0.254961 0.699824 0.296367 0.763350 0.290716 0.781699 0.296367 0.797227 0.326484 0.804287 0.392357 0.780293 0.422474 0.761943 0.552344 0.719590 0.589987 0.716768 0.751849 0.663125 0.768789 0.636309 0.744323 0.615127 0.670924 0.527607 0.678451 0.514902 diff --git a/datasets/检测仪/train/labels/订单1806646_51_7108239.txt b/datasets/检测仪/train/labels/订单1806646_51_7108239.txt new file mode 100644 index 0000000..bffd4af --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806646_51_7108239.txt @@ -0,0 +1 @@ +5 0.206029 0.465498 0.177786 0.481025 0.213555 0.605254 0.230495 0.622188 0.254961 0.723828 0.260612 0.771826 0.281315 0.839580 0.313307 0.860752 0.337773 0.856523 0.352839 0.836758 0.482708 0.808525 0.514701 0.819814 0.539167 0.792998 0.522227 0.706885 0.495872 0.688535 0.441289 0.574189 0.446940 0.531846 0.413060 0.434443 0.382943 0.428799 0.219206 0.461260 diff --git a/datasets/检测仪/train/labels/订单1806647_51_7108252.txt b/datasets/检测仪/train/labels/订单1806647_51_7108252.txt new file mode 100644 index 0000000..92cfdd3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806647_51_7108252.txt @@ -0,0 +1 @@ +5 0.450600 0.277820 0.416720 0.296170 0.375320 0.496620 0.388493 0.546030 0.358373 0.736590 0.316973 0.810000 0.311320 0.905990 0.330147 0.952570 0.369667 0.961040 0.401667 0.946930 0.610587 0.973750 0.635053 0.989280 0.663293 0.994920 0.712227 0.969510 0.749867 0.867880 0.738573 0.794470 0.761160 0.598260 0.798800 0.498030 0.828920 0.324400 0.791280 0.296170 0.746107 0.291930 0.736693 0.297580 0.508947 0.282050 diff --git a/datasets/检测仪/train/labels/订单1806650_51_7108312.txt b/datasets/检测仪/train/labels/订单1806650_51_7108312.txt new file mode 100644 index 0000000..245eeae --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806650_51_7108312.txt @@ -0,0 +1 @@ +5 0.431888 0.342686 0.411185 0.359629 0.418711 0.496553 0.441289 0.526201 0.460117 0.649014 0.460117 0.709707 0.486471 0.809932 0.518464 0.835342 0.556107 0.840996 0.573047 0.824053 0.753737 0.804287 0.793255 0.826875 0.832786 0.800059 0.817734 0.699824 0.776315 0.663125 0.723620 0.517725 0.736797 0.482441 0.701029 0.356807 0.659622 0.341279 0.460117 0.338457 diff --git a/datasets/检测仪/train/labels/订单1806652_51_7108355.txt b/datasets/检测仪/train/labels/订单1806652_51_7108355.txt new file mode 100644 index 0000000..c744a86 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806652_51_7108355.txt @@ -0,0 +1 @@ +5 0.405260 0.416202 0.377062 0.434553 0.361387 0.550304 0.392726 0.579948 0.380193 0.680174 0.364528 0.725347 0.389595 0.777578 0.424056 0.800165 0.496127 0.790282 0.655925 0.786046 0.712322 0.795929 0.759326 0.777578 0.768719 0.711233 0.737389 0.687235 0.706060 0.570069 0.737389 0.546072 0.731127 0.424670 0.696657 0.404909 0.659056 0.409145 0.452254 0.420438 diff --git a/datasets/检测仪/train/labels/订单1806653_51_7108388.txt b/datasets/检测仪/train/labels/订单1806653_51_7108388.txt new file mode 100644 index 0000000..341912b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806653_51_7108388.txt @@ -0,0 +1 @@ +5 0.095908 0.465490 0.065791 0.493725 0.105320 0.646176 0.146719 0.698412 0.197542 0.862157 0.205072 0.928500 0.248235 1.000000 0.385438 1.000000 0.498693 0.963794 0.549503 0.969441 0.573974 0.934147 0.562680 0.843804 0.511869 0.800049 0.445987 0.630647 0.447869 0.595363 0.389529 0.428784 0.353765 0.414676 0.327412 0.421735 0.124144 0.462667 diff --git a/datasets/检测仪/train/labels/订单1806654_51_7108342.txt b/datasets/检测仪/train/labels/订单1806654_51_7108342.txt new file mode 100644 index 0000000..d1432a7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806654_51_7108342.txt @@ -0,0 +1 @@ +5 0.479609 0.330052 0.461611 0.345579 0.471138 0.493796 0.488076 0.526263 0.497607 0.677311 0.493369 0.736595 0.502900 0.841055 0.521958 0.865052 0.545249 0.870703 0.557954 0.862233 0.685000 0.855176 0.712524 0.865052 0.730522 0.848112 0.726289 0.752122 0.701938 0.695658 0.668062 0.537559 0.674414 0.500853 0.649004 0.356868 0.636299 0.344167 0.489136 0.325814 diff --git a/datasets/检测仪/train/labels/订单1806657_51_7108437.txt b/datasets/检测仪/train/labels/订单1806657_51_7108437.txt new file mode 100644 index 0000000..04cb8c5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806657_51_7108437.txt @@ -0,0 +1 @@ +5 0.533523 0.351151 0.520351 0.365274 0.507164 0.459846 0.512822 0.483849 0.493991 0.555844 0.503406 0.567138 0.488348 0.592544 0.486462 0.644770 0.501520 0.663125 0.522222 0.665943 0.531637 0.657478 0.633275 0.667357 0.669035 0.660307 0.680322 0.605252 0.676564 0.585482 0.680322 0.495143 0.697266 0.468322 0.710439 0.370921 0.689737 0.352566 0.669035 0.355395 0.554225 0.353980 diff --git a/datasets/检测仪/train/labels/订单1806663_51_7108428.txt b/datasets/检测仪/train/labels/订单1806663_51_7108428.txt new file mode 100644 index 0000000..63e4eb4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806663_51_7108428.txt @@ -0,0 +1 @@ +5 0.279430 0.368092 0.249313 0.389265 0.258728 0.562895 0.285073 0.615132 0.309547 0.787346 0.302018 0.839583 0.320833 0.948279 0.343421 0.980746 0.382939 0.984978 0.399883 0.966623 0.586213 0.944035 0.629503 0.955329 0.655863 0.928509 0.676564 0.828289 0.644561 0.783114 0.618216 0.599605 0.618216 0.537489 0.601272 0.375154 0.569284 0.345504 0.529751 0.344101 0.520351 0.351151 0.345307 0.365274 diff --git a/datasets/检测仪/train/labels/订单1806664_51_7108447.txt b/datasets/检测仪/train/labels/订单1806664_51_7108447.txt new file mode 100644 index 0000000..4cab79a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806664_51_7108447.txt @@ -0,0 +1 @@ +5 0.638813 0.452860 0.601173 0.459920 0.520240 0.582730 0.510827 0.630720 0.441187 0.726710 0.405427 0.770470 0.377200 0.826940 0.375320 0.856580 0.399787 0.867880 0.407307 0.863640 0.505187 0.907400 0.524013 0.922930 0.550360 0.937050 0.588000 0.924340 0.636933 0.872110 0.646347 0.832590 0.715987 0.719660 0.768693 0.688600 0.859027 0.555910 0.847733 0.533320 0.834560 0.520620 0.810093 0.520620 0.670813 0.466970 0.648227 0.450030 diff --git a/datasets/检测仪/train/labels/订单1806667_51_7108421.txt b/datasets/检测仪/train/labels/订单1806667_51_7108421.txt new file mode 100644 index 0000000..8ae8587 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806667_51_7108421.txt @@ -0,0 +1 @@ +5 0.491163 0.385029 0.466693 0.393500 0.430928 0.475373 0.429046 0.495137 0.402706 0.554422 0.383882 0.577010 0.365059 0.623588 0.374471 0.646176 0.402706 0.641941 0.470458 0.653235 0.494928 0.674412 0.511869 0.664529 0.543856 0.623588 0.543856 0.602422 0.572092 0.524775 0.589033 0.513490 0.624797 0.431608 0.615386 0.420324 0.598444 0.416088 0.509987 0.392088 diff --git a/datasets/检测仪/train/labels/订单1806672_51_7108598.txt b/datasets/检测仪/train/labels/订单1806672_51_7108598.txt new file mode 100644 index 0000000..ddc11bb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806672_51_7108598.txt @@ -0,0 +1 @@ +5 0.251433 0.560065 0.110278 0.626415 0.053811 0.637705 0.025578 0.650410 0.022444 0.674410 0.082044 0.701230 0.263989 0.783105 0.314178 0.784515 0.474156 0.852275 0.518078 0.884740 0.634144 0.921445 0.681200 0.922855 0.703156 0.900270 0.825500 0.840980 0.860000 0.801455 0.743933 0.733695 0.674922 0.708285 0.571400 0.663115 0.527489 0.637705 0.342411 0.537480 0.282800 0.534660 0.260844 0.543125 diff --git a/datasets/检测仪/train/labels/订单1806673_51_7108593.txt b/datasets/检测仪/train/labels/订单1806673_51_7108593.txt new file mode 100644 index 0000000..86ad482 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806673_51_7108593.txt @@ -0,0 +1 @@ +5 0.361315 0.334230 0.329319 0.352578 0.321788 0.478209 0.333080 0.505035 0.327439 0.612318 0.308616 0.654663 0.310496 0.716773 0.331200 0.743599 0.357543 0.746419 0.372607 0.733720 0.483656 0.733720 0.513772 0.750657 0.528824 0.750657 0.553299 0.729481 0.557059 0.656073 0.553299 0.625017 0.555179 0.516324 0.566471 0.476799 0.575882 0.366696 0.558939 0.344109 0.538235 0.342699 0.389550 0.334221 diff --git a/datasets/检测仪/train/labels/订单1806676_51_7108594.txt b/datasets/检测仪/train/labels/订单1806676_51_7108594.txt new file mode 100644 index 0000000..3b52090 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806676_51_7108594.txt @@ -0,0 +1 @@ +5 0.123211 0.510671 0.100622 0.526200 0.111917 0.574196 0.347189 0.644775 0.398006 0.647600 0.561756 0.706888 0.573044 0.715358 0.693506 0.743587 0.736794 0.735121 0.746206 0.706888 0.733033 0.692771 0.781967 0.613721 0.808317 0.585488 0.787611 0.558667 0.710444 0.520554 0.667156 0.516317 0.520344 0.455617 0.490233 0.437267 0.281311 0.348333 0.232372 0.355392 0.213550 0.372333 0.219200 0.397742 0.126972 0.492321 diff --git a/datasets/检测仪/train/labels/订单1806685_51_7108626.txt b/datasets/检测仪/train/labels/订单1806685_51_7108626.txt new file mode 100644 index 0000000..0d0f567 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806685_51_7108626.txt @@ -0,0 +1 @@ +5 0.324596 0.187412 0.283190 0.212822 0.254961 0.428799 0.270013 0.492324 0.245547 0.711123 0.219206 0.764766 0.209792 0.891807 0.247435 0.941221 0.305781 0.955332 0.326484 0.945449 0.531641 0.952510 0.563633 0.963799 0.625742 0.975098 0.684089 0.935566 0.710443 0.794404 0.691628 0.733711 0.687865 0.506436 0.716094 0.458437 0.723620 0.211406 0.682214 0.178936 0.657747 0.184590 0.375417 0.191641 diff --git a/datasets/检测仪/train/labels/订单1806687_51_7108742.txt b/datasets/检测仪/train/labels/订单1806687_51_7108742.txt new file mode 100644 index 0000000..79d8303 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806687_51_7108742.txt @@ -0,0 +1 @@ +5 0.401667 0.506500 0.380960 0.524850 0.388493 0.647660 0.412960 0.668840 0.416720 0.757770 0.416720 0.783180 0.422373 0.850940 0.450600 0.872110 0.469427 0.872110 0.476947 0.860820 0.578587 0.852350 0.610587 0.860820 0.621880 0.843880 0.631293 0.781770 0.616227 0.760590 0.599293 0.647660 0.604947 0.612370 0.593653 0.513560 0.567293 0.490970 0.552240 0.493800 0.542827 0.499440 0.431787 0.507910 diff --git a/datasets/检测仪/train/labels/订单1806688_51_7108719.txt b/datasets/检测仪/train/labels/订单1806688_51_7108719.txt new file mode 100644 index 0000000..814e3ac --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806688_51_7108719.txt @@ -0,0 +1 @@ +5 0.310471 0.301745 0.274706 0.324324 0.274706 0.472549 0.293529 0.526186 0.293529 0.678647 0.278471 0.730873 0.289765 0.809931 0.323647 0.839569 0.361294 0.836745 0.370706 0.825451 0.528810 0.818402 0.543856 0.831098 0.572092 0.831098 0.613503 0.798637 0.615386 0.705471 0.596562 0.670176 0.581503 0.514902 0.598444 0.457020 0.590915 0.311627 0.562680 0.291863 0.532575 0.297510 0.521281 0.300333 0.333059 0.305980 diff --git a/datasets/检测仪/train/labels/订单1806689_51_7109608.txt b/datasets/检测仪/train/labels/订单1806689_51_7109608.txt new file mode 100644 index 0000000..7dc2cad --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806689_51_7109608.txt @@ -0,0 +1 @@ +5 0.439444 0.361059 0.418738 0.375174 0.407442 0.509280 0.418738 0.533281 0.401794 0.629271 0.392384 0.664557 0.386736 0.719618 0.403681 0.739375 0.428148 0.745026 0.437558 0.735139 0.539201 0.746432 0.588137 0.760547 0.597546 0.739375 0.610718 0.684323 0.612604 0.649036 0.618252 0.541745 0.638947 0.506458 0.661539 0.390703 0.635185 0.370946 0.612604 0.370946 0.608843 0.375174 0.460150 0.366710 diff --git a/datasets/检测仪/train/labels/订单1806693_51_7108727.txt b/datasets/检测仪/train/labels/订单1806693_51_7108727.txt new file mode 100644 index 0000000..235baa8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806693_51_7108727.txt @@ -0,0 +1 @@ +5 0.240370 0.464193 0.203315 0.499487 0.205430 0.534773 0.208605 0.550307 0.203315 0.784633 0.191670 0.842513 0.222370 0.880627 0.445760 0.856627 0.510340 0.821333 0.681855 0.812867 0.750670 0.825573 0.830075 0.798753 0.857600 0.759227 0.855485 0.709820 0.844895 0.694293 0.820545 0.544660 0.827960 0.522073 0.826900 0.491013 0.800430 0.455727 0.713615 0.441607 0.676560 0.458547 0.499755 0.476900 0.479640 0.465607 0.242485 0.467020 diff --git a/datasets/检测仪/train/labels/订单1806696_51_7108692.txt b/datasets/检测仪/train/labels/订单1806696_51_7108692.txt new file mode 100644 index 0000000..f98a5bd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806696_51_7108692.txt @@ -0,0 +1 @@ +5 0.542930 0.441504 0.495872 0.461260 0.458229 0.644775 0.462005 0.685713 0.422474 0.835342 0.399883 0.876279 0.392357 0.970859 0.413281 1.000000 0.454010 1.000000 0.458229 0.999092 0.471406 0.986387 0.588841 1.000000 0.684883 1.000000 0.727383 0.931338 0.717969 0.888984 0.749974 0.736533 0.797018 0.689951 0.844076 0.503613 0.812083 0.478203 0.766914 0.479619 0.753737 0.482441 0.582461 0.454209 diff --git a/datasets/检测仪/train/labels/订单1806701_51_7108770.txt b/datasets/检测仪/train/labels/订单1806701_51_7108770.txt new file mode 100644 index 0000000..b52ef3a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806701_51_7108770.txt @@ -0,0 +1 @@ +5 0.349062 0.413271 0.318958 0.430205 0.350951 0.596777 0.366003 0.711123 0.366003 0.757705 0.375417 0.826875 0.399883 0.852285 0.433763 0.852285 0.446940 0.840996 0.556107 0.828291 0.606927 0.835342 0.620104 0.811348 0.623867 0.732295 0.601276 0.704063 0.584336 0.589727 0.593750 0.545957 0.578698 0.420322 0.548581 0.403389 0.529753 0.404795 0.381068 0.413271 diff --git a/datasets/检测仪/train/labels/订单1806702_51_7108883.txt b/datasets/检测仪/train/labels/订单1806702_51_7108883.txt new file mode 100644 index 0000000..d23e143 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806702_51_7108883.txt @@ -0,0 +1 @@ +5 0.478933 0.423147 0.460117 0.441502 0.465760 0.554430 0.478933 0.579836 0.482705 0.667357 0.473289 0.701239 0.478933 0.752061 0.490234 0.769002 0.516579 0.773235 0.524108 0.763355 0.616330 0.766173 0.655863 0.778882 0.672792 0.756294 0.676564 0.699825 0.657749 0.677237 0.661506 0.572785 0.670921 0.548783 0.667149 0.430208 0.650219 0.414682 0.629503 0.418914 0.514693 0.423147 diff --git a/datasets/检测仪/train/labels/订单1806704_51_7108800.txt b/datasets/检测仪/train/labels/订单1806704_51_7108800.txt new file mode 100644 index 0000000..009ed59 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806704_51_7108800.txt @@ -0,0 +1 @@ +5 0.452591 0.423154 0.431888 0.440088 0.403646 0.578428 0.422474 0.606660 0.414948 0.713945 0.392357 0.754883 0.390482 0.814170 0.403646 0.842402 0.433763 0.850869 0.448828 0.843818 0.569284 0.846641 0.591862 0.857930 0.620104 0.839580 0.638919 0.768994 0.629505 0.736533 0.648333 0.619365 0.663385 0.591133 0.685977 0.461260 0.650221 0.437266 0.633281 0.438682 0.627630 0.441504 0.492109 0.427383 diff --git a/datasets/检测仪/train/labels/订单1806705_51_7109131.txt b/datasets/检测仪/train/labels/订单1806705_51_7109131.txt new file mode 100644 index 0000000..efc029f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806705_51_7109131.txt @@ -0,0 +1 @@ +5 0.111914 0.424561 0.110039 0.451387 0.215430 0.577021 0.238021 0.584072 0.305781 0.673008 0.313307 0.699824 0.375417 0.757705 0.413060 0.767588 0.431888 0.754883 0.431888 0.739355 0.520352 0.694180 0.537292 0.702656 0.557995 0.691357 0.559870 0.660303 0.535404 0.613721 0.493997 0.584072 0.409297 0.462676 0.326484 0.349746 0.292604 0.349746 0.270013 0.359629 0.268138 0.365273 0.153320 0.416094 0.123203 0.421738 diff --git a/datasets/检测仪/train/labels/订单1806707_51_7108960.txt b/datasets/检测仪/train/labels/订单1806707_51_7108960.txt new file mode 100644 index 0000000..4b46465 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806707_51_7108960.txt @@ -0,0 +1 @@ +5 0.260606 0.118237 0.224844 0.132354 0.234256 0.157762 0.262489 0.170471 0.264372 0.273517 0.251194 0.297517 0.253078 0.324338 0.283194 0.344100 0.382950 0.362450 0.430000 0.337042 0.610689 0.337042 0.670917 0.351158 0.870428 0.351158 0.893017 0.325750 0.894894 0.149296 0.861017 0.116829 0.663389 0.111179 0.616339 0.125296 0.445061 0.123887 0.371656 0.106946 0.279428 0.119650 diff --git a/datasets/检测仪/train/labels/订单1806710_51_7108866.txt b/datasets/检测仪/train/labels/订单1806710_51_7108866.txt new file mode 100644 index 0000000..d95914a --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806710_51_7108866.txt @@ -0,0 +1 @@ +5 0.419634 0.503608 0.385765 0.520549 0.370706 0.625000 0.391412 0.654647 0.370706 0.744990 0.344353 0.781696 0.334941 0.852275 0.353765 0.872039 0.389529 0.880510 0.402706 0.863569 0.506222 0.867804 0.519399 0.883333 0.553268 0.887569 0.570209 0.864980 0.587150 0.807108 0.573974 0.776049 0.573974 0.661706 0.594680 0.633471 0.604092 0.530422 0.579621 0.500784 0.547621 0.503608 0.540092 0.507843 0.425281 0.505020 diff --git a/datasets/检测仪/train/labels/订单1806714_51_7108942.txt b/datasets/检测仪/train/labels/订单1806714_51_7108942.txt new file mode 100644 index 0000000..2232017 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806714_51_7108942.txt @@ -0,0 +1 @@ +5 0.457935 0.300868 0.440483 0.331876 0.436299 0.530336 0.446768 0.569100 0.443276 0.717950 0.434902 0.775315 0.434204 0.868351 0.439785 0.894707 0.457236 0.913308 0.465615 0.891605 0.527041 0.894707 0.531929 0.913308 0.543794 0.917961 0.553564 0.897809 0.564731 0.798568 0.554961 0.761367 0.558452 0.589252 0.566826 0.531887 0.570317 0.345824 0.559150 0.317918 0.551470 0.311714 0.542397 0.313265 0.474687 0.308612 0.462124 0.302419 diff --git a/datasets/检测仪/train/labels/订单1806715_51_7108921.txt b/datasets/检测仪/train/labels/订单1806715_51_7108921.txt new file mode 100644 index 0000000..f00a393 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806715_51_7108921.txt @@ -0,0 +1 @@ +5 0.405534 0.385039 0.390482 0.393506 0.394245 0.449971 0.409297 0.465498 0.414948 0.513496 0.413060 0.530430 0.418711 0.558662 0.428125 0.564316 0.430000 0.561494 0.478932 0.558662 0.499648 0.561494 0.510937 0.519141 0.505286 0.466914 0.509049 0.445732 0.510937 0.389268 0.495872 0.377979 0.482708 0.380801 0.416823 0.382217 diff --git a/datasets/检测仪/train/labels/订单1806724_51_7108964.txt b/datasets/检测仪/train/labels/订单1806724_51_7108964.txt new file mode 100644 index 0000000..c197b1e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806724_51_7108964.txt @@ -0,0 +1 @@ +5 0.559872 0.311633 0.529756 0.331396 0.525994 0.486675 0.544811 0.529021 0.535406 0.675829 0.510933 0.736529 0.531639 0.825462 0.557989 0.850871 0.589983 0.859342 0.616339 0.843813 0.789494 0.852283 0.802672 0.863579 0.849722 0.866400 0.874194 0.767587 0.844078 0.544550 0.859133 0.472558 0.849722 0.315867 0.829022 0.298929 0.802672 0.296104 0.584339 0.305983 0.557989 0.307396 diff --git a/datasets/检测仪/train/labels/订单1806725_51_7109074.txt b/datasets/检测仪/train/labels/订单1806725_51_7109074.txt new file mode 100644 index 0000000..32c1198 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806725_51_7109074.txt @@ -0,0 +1 @@ +5 0.362147 0.441570 0.324493 0.455680 0.330147 0.610960 0.345200 0.643430 0.347080 0.773300 0.332027 0.819880 0.333907 0.898930 0.356493 0.927160 0.401667 0.931400 0.407307 0.913050 0.559773 0.910220 0.576707 0.921520 0.603053 0.921520 0.620000 0.897520 0.631293 0.817060 0.608707 0.771890 0.593653 0.642020 0.612467 0.595430 0.604947 0.464150 0.574827 0.434510 0.550360 0.441570 0.396013 0.442980 0.365907 0.442980 diff --git a/datasets/检测仪/train/labels/订单1806726_51_7109000.txt b/datasets/检测仪/train/labels/订单1806726_51_7109000.txt new file mode 100644 index 0000000..0ddb500 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806726_51_7109000.txt @@ -0,0 +1 @@ +5 0.337773 0.257988 0.307656 0.281992 0.313307 0.424561 0.330247 0.472559 0.335898 0.593955 0.330247 0.636309 0.335898 0.704063 0.360365 0.730889 0.398008 0.729473 0.403646 0.711123 0.535404 0.708301 0.544818 0.722412 0.574935 0.721006 0.589987 0.702656 0.612578 0.630664 0.589987 0.602432 0.578698 0.475381 0.601276 0.423154 0.599401 0.266465 0.565521 0.245283 0.541055 0.250928 0.533516 0.255166 0.377305 0.263633 0.347187 0.260811 diff --git a/datasets/检测仪/train/labels/订单1806731_51_7109028.txt b/datasets/检测仪/train/labels/订单1806731_51_7109028.txt new file mode 100644 index 0000000..4b6e72b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806731_51_7109028.txt @@ -0,0 +1 @@ +5 0.258627 0.287700 0.205920 0.321580 0.226627 0.553080 0.245440 0.589790 0.258627 0.725300 0.247333 0.767650 0.264267 0.826940 0.286853 0.852350 0.320733 0.852350 0.332027 0.841060 0.480720 0.843880 0.486360 0.852350 0.522120 0.856580 0.544707 0.835410 0.565413 0.771890 0.554120 0.736590 0.561653 0.588370 0.599293 0.536140 0.636933 0.342750 0.595533 0.300400 0.548480 0.300400 0.539067 0.310280 0.320733 0.307460 0.315080 0.298990 diff --git a/datasets/检测仪/train/labels/订单1806732_51_7109071.txt b/datasets/检测仪/train/labels/订单1806732_51_7109071.txt new file mode 100644 index 0000000..32d9faa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806732_51_7109071.txt @@ -0,0 +1 @@ +5 0.197637 0.448626 0.173639 0.472624 0.191992 0.634961 0.218815 0.670247 0.224460 0.788828 0.224460 0.836823 0.234342 0.898932 0.254102 0.924342 0.285156 0.922930 0.290807 0.904583 0.379740 0.891875 0.393854 0.903171 0.409382 0.900345 0.426322 0.873522 0.431966 0.801530 0.415026 0.776120 0.403737 0.657546 0.410794 0.610964 0.410794 0.452858 0.386797 0.434512 0.358561 0.434512 0.352917 0.440156 0.235755 0.455684 0.206107 0.450039 diff --git a/datasets/检测仪/train/labels/订单1806735_51_7109159.txt b/datasets/检测仪/train/labels/订单1806735_51_7109159.txt new file mode 100644 index 0000000..0781b37 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806735_51_7109159.txt @@ -0,0 +1 @@ +5 0.334960 0.291877 0.312376 0.321522 0.355663 0.505035 0.398962 0.558676 0.419666 0.674429 0.417774 0.733720 0.442249 0.804299 0.472364 0.826886 0.510000 0.826886 0.517532 0.809939 0.647405 0.793002 0.662457 0.800061 0.688812 0.801471 0.709516 0.783123 0.720807 0.704074 0.700104 0.678659 0.679400 0.520562 0.686932 0.466920 0.669988 0.293287 0.630461 0.262232 0.596586 0.265052 0.587174 0.277760 0.397070 0.294697 0.380138 0.290467 0.342491 0.289057 diff --git a/datasets/检测仪/train/labels/订单1806736_51_7109098.txt b/datasets/检测仪/train/labels/订单1806736_51_7109098.txt new file mode 100644 index 0000000..4dc6da0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806736_51_7109098.txt @@ -0,0 +1 @@ +5 0.164620 0.414682 0.138260 0.440088 0.164620 0.574189 0.189079 0.595362 0.213553 0.706886 0.200380 0.746414 0.213553 0.807116 0.238012 0.822643 0.279430 0.818399 0.286959 0.808520 0.384825 0.785932 0.411184 0.795822 0.426243 0.795822 0.448816 0.766173 0.452588 0.709704 0.426243 0.673004 0.401769 0.568542 0.413056 0.545965 0.386711 0.409035 0.362237 0.396327 0.341535 0.396327 0.334006 0.403388 0.209781 0.416086 0.160848 0.416086 diff --git a/datasets/检测仪/train/labels/订单1806739_51_7109124.txt b/datasets/检测仪/train/labels/订单1806739_51_7109124.txt new file mode 100644 index 0000000..4a990b4 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806739_51_7109124.txt @@ -0,0 +1 @@ +5 0.349067 0.454204 0.335894 0.473967 0.350950 0.596779 0.379183 0.627837 0.375417 0.702650 0.375417 0.753471 0.386711 0.807113 0.413061 0.828288 0.435650 0.825462 0.448822 0.812758 0.539167 0.809937 0.554222 0.818404 0.571167 0.819817 0.589983 0.797229 0.601278 0.737942 0.580578 0.716767 0.567400 0.610896 0.574928 0.581254 0.573044 0.451383 0.539167 0.434442 0.518461 0.438679 0.514700 0.448558 0.386711 0.458442 diff --git a/datasets/检测仪/train/labels/订单1806740_51_7109289.txt b/datasets/检测仪/train/labels/订单1806740_51_7109289.txt new file mode 100644 index 0000000..5a4a5a5 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806740_51_7109289.txt @@ -0,0 +1 @@ +5 0.513538 0.550242 0.498694 0.574240 0.506116 0.595415 0.522016 0.606705 0.545329 0.699873 0.542154 0.721048 0.541090 0.746463 0.559109 0.764804 0.615285 0.757753 0.642846 0.733756 0.753080 0.697051 0.785943 0.705518 0.895112 0.664585 0.905709 0.640588 0.850597 0.471187 0.826220 0.451429 0.724464 0.481071 0.704325 0.499424 0.602569 0.534712 0.572889 0.527661 diff --git a/datasets/检测仪/train/labels/订单1806744_51_7109168.txt b/datasets/检测仪/train/labels/订单1806744_51_7109168.txt new file mode 100644 index 0000000..de517b1 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806744_51_7109168.txt @@ -0,0 +1 @@ +5 0.525990 0.424561 0.501523 0.438682 0.482708 0.553018 0.490234 0.598193 0.484583 0.715361 0.471406 0.746416 0.462005 0.815586 0.482708 0.848047 0.512813 0.849463 0.514701 0.835342 0.642682 0.850869 0.652096 0.862168 0.687865 0.869229 0.712331 0.848047 0.733034 0.776055 0.717969 0.746416 0.721732 0.616543 0.744323 0.571367 0.755612 0.442910 0.731146 0.421738 0.704805 0.421738 0.695391 0.425977 0.563633 0.430205 diff --git a/datasets/检测仪/train/labels/订单1806746_51_7109192.txt b/datasets/检测仪/train/labels/订单1806746_51_7109192.txt new file mode 100644 index 0000000..de6e816 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806746_51_7109192.txt @@ -0,0 +1 @@ +5 0.426237 0.442910 0.401771 0.459854 0.399883 0.574189 0.413060 0.602432 0.422474 0.681475 0.413060 0.711123 0.411185 0.757705 0.428125 0.767588 0.448828 0.771826 0.452591 0.763350 0.539167 0.773232 0.571159 0.781699 0.588099 0.763350 0.606927 0.708301 0.593750 0.691357 0.589987 0.603838 0.610690 0.567139 0.620104 0.448564 0.595638 0.442910 0.573047 0.444326 0.569284 0.451387 0.456354 0.447148 0.433763 0.441504 diff --git a/datasets/检测仪/train/labels/订单1806748_51_7109280.txt b/datasets/检测仪/train/labels/订单1806748_51_7109280.txt new file mode 100644 index 0000000..6741205 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806748_51_7109280.txt @@ -0,0 +1 @@ +5 0.473187 0.344160 0.439307 0.354040 0.392253 0.478270 0.394133 0.513560 0.347080 0.625080 0.322613 0.643430 0.307560 0.708360 0.311320 0.740830 0.339560 0.752120 0.352733 0.742240 0.465653 0.766240 0.475067 0.784590 0.503307 0.788830 0.525893 0.774710 0.559773 0.709770 0.559773 0.668840 0.601173 0.561550 0.636933 0.536140 0.691520 0.406270 0.667053 0.382280 0.652000 0.379450 0.501427 0.356870 diff --git a/datasets/检测仪/train/labels/订单1806749_51_7109191.txt b/datasets/检测仪/train/labels/订单1806749_51_7109191.txt new file mode 100644 index 0000000..630ec59 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806749_51_7109191.txt @@ -0,0 +1 @@ +5 0.475169 0.433027 0.448828 0.447148 0.430000 0.565723 0.441289 0.599600 0.420586 0.692773 0.407422 0.728057 0.399883 0.777471 0.414948 0.801465 0.441289 0.805703 0.450703 0.794404 0.544818 0.805703 0.563633 0.818408 0.586224 0.821230 0.605039 0.807109 0.631393 0.749238 0.608802 0.721006 0.629505 0.609482 0.640807 0.581250 0.659622 0.458437 0.644570 0.442910 0.623867 0.444326 0.614453 0.449971 0.486471 0.438682 diff --git a/datasets/检测仪/train/labels/订单1806750_51_7109251.txt b/datasets/检测仪/train/labels/订单1806750_51_7109251.txt new file mode 100644 index 0000000..936c45f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806750_51_7109251.txt @@ -0,0 +1 @@ +5 0.399883 0.581250 0.373542 0.596777 0.375417 0.608076 0.339661 0.729473 0.332135 0.745000 0.345299 0.776055 0.556107 0.800059 0.591862 0.790176 0.748086 0.811348 0.793255 0.819814 0.889245 0.824053 0.923125 0.798643 0.921250 0.784531 0.906185 0.774648 0.915599 0.675830 0.919362 0.625010 0.876081 0.619365 0.780091 0.632070 0.612578 0.616543 0.407422 0.581250 diff --git a/datasets/检测仪/train/labels/订单1806753_51_7109290.txt b/datasets/检测仪/train/labels/订单1806753_51_7109290.txt new file mode 100644 index 0000000..e04ab56 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806753_51_7109290.txt @@ -0,0 +1 @@ +5 0.417144 0.228411 0.392793 0.256647 0.392793 0.284876 0.398086 0.294759 0.384321 0.444388 0.380088 0.486738 0.398086 0.514974 0.542070 0.526263 0.577012 0.509323 0.713584 0.527676 0.756992 0.543203 0.837456 0.538971 0.867100 0.505091 0.870273 0.466979 0.859688 0.458509 0.862866 0.331458 0.876626 0.311699 0.879805 0.282051 0.854395 0.250996 0.772871 0.241113 0.734761 0.253822 0.603477 0.253822 0.569600 0.234056 0.422437 0.226999 diff --git a/datasets/检测仪/train/labels/订单1806754_51_7109252.txt b/datasets/检测仪/train/labels/订单1806754_51_7109252.txt new file mode 100644 index 0000000..7b079eb --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806754_51_7109252.txt @@ -0,0 +1 @@ +5 0.277440 0.451450 0.243560 0.476860 0.260507 0.633550 0.286853 0.658960 0.284973 0.788830 0.279320 0.836820 0.300027 0.905990 0.320733 0.928580 0.352733 0.934220 0.371547 0.918690 0.486360 0.900340 0.503307 0.913050 0.533413 0.915870 0.559773 0.881990 0.559773 0.808590 0.542827 0.774710 0.524013 0.646250 0.537187 0.594020 0.533413 0.459920 0.503307 0.440150 0.480720 0.442980 0.463773 0.448620 0.315080 0.459920 0.286853 0.447210 diff --git a/datasets/检测仪/train/labels/订单1806757_51_7109352.txt b/datasets/检测仪/train/labels/订单1806757_51_7109352.txt new file mode 100644 index 0000000..3556d27 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806757_51_7109352.txt @@ -0,0 +1 @@ +5 0.320833 0.452793 0.290716 0.473965 0.283190 0.620781 0.296367 0.649014 0.286953 0.740762 0.256849 0.808525 0.286953 0.850869 0.317070 0.853691 0.341536 0.849463 0.435651 0.856523 0.452591 0.864990 0.490234 0.843818 0.509049 0.795820 0.499648 0.768994 0.512813 0.658896 0.525990 0.630664 0.565521 0.499375 0.546693 0.472559 0.512813 0.472559 0.505286 0.476797 0.367891 0.466914 0.354714 0.455615 0.332135 0.451387 diff --git a/datasets/检测仪/train/labels/订单1806762_51_7109448.txt b/datasets/检测仪/train/labels/订单1806762_51_7109448.txt new file mode 100644 index 0000000..41f1c2e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806762_51_7109448.txt @@ -0,0 +1 @@ +5 0.366941 0.283392 0.334941 0.307392 0.331176 0.489490 0.357529 0.537480 0.357529 0.701235 0.374471 0.723814 0.368824 0.756284 0.383882 0.860745 0.415869 0.897451 0.459163 0.897451 0.476105 0.881922 0.653033 0.863569 0.664327 0.879098 0.701961 0.880510 0.728314 0.850863 0.735843 0.757696 0.700078 0.711118 0.675608 0.538892 0.690667 0.482431 0.677490 0.320098 0.637974 0.296098 0.611621 0.296098 0.596562 0.300333 0.413987 0.290451 0.376353 0.286216 diff --git a/datasets/检测仪/train/labels/订单1806764_51_7109325.txt b/datasets/检测仪/train/labels/订单1806764_51_7109325.txt new file mode 100644 index 0000000..024180d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806764_51_7109325.txt @@ -0,0 +1 @@ +5 0.418738 0.266484 0.390509 0.297535 0.416852 0.433056 0.437558 0.461285 0.456377 0.578455 0.445093 0.634913 0.465787 0.691380 0.490266 0.715382 0.522257 0.719618 0.533553 0.701259 0.667188 0.691380 0.680359 0.705495 0.712361 0.704089 0.727419 0.674444 0.733056 0.605269 0.702951 0.564332 0.682245 0.431641 0.702951 0.394939 0.672836 0.259427 0.640833 0.241076 0.616366 0.242483 0.601308 0.248134 0.456377 0.265069 0.428148 0.265069 diff --git a/datasets/检测仪/train/labels/订单1806767_51_7109350.txt b/datasets/检测仪/train/labels/订单1806767_51_7109350.txt new file mode 100644 index 0000000..80354cd --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806767_51_7109350.txt @@ -0,0 +1 @@ +5 0.414948 0.459854 0.373542 0.481025 0.379180 0.644775 0.399883 0.678652 0.399883 0.798643 0.386706 0.840996 0.398008 0.908750 0.418711 0.928516 0.441289 0.928516 0.450703 0.917217 0.573047 0.915811 0.589987 0.924277 0.616341 0.928516 0.644570 0.910156 0.640807 0.691357 0.663385 0.644775 0.676563 0.479619 0.638919 0.457031 0.610690 0.457031 0.603164 0.468320 0.460117 0.468320 diff --git a/datasets/检测仪/train/labels/订单1806769_51_7109510.txt b/datasets/检测仪/train/labels/订单1806769_51_7109510.txt new file mode 100644 index 0000000..958203f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806769_51_7109510.txt @@ -0,0 +1 @@ +5 0.557754 0.522729 0.546587 0.553941 0.548682 0.577358 0.554961 0.586714 0.561943 0.711572 0.557754 0.722489 0.558452 0.749028 0.574507 0.772434 0.584976 0.769312 0.650591 0.742784 0.670137 0.722489 0.729468 0.705328 0.746221 0.711572 0.785312 0.688155 0.797876 0.658504 0.795083 0.631976 0.790195 0.624170 0.778330 0.527413 0.781821 0.518046 0.780425 0.489956 0.767163 0.477467 0.733657 0.475906 0.715508 0.496201 0.653384 0.513362 0.643608 0.507129 0.561245 0.522729 diff --git a/datasets/检测仪/train/labels/订单1806771_51_7109478.txt b/datasets/检测仪/train/labels/订单1806771_51_7109478.txt new file mode 100644 index 0000000..0fb9e65 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806771_51_7109478.txt @@ -0,0 +1 @@ +5 0.375417 0.351152 0.354714 0.366689 0.377305 0.465498 0.392357 0.492324 0.401771 0.565723 0.392357 0.596777 0.399883 0.639131 0.418711 0.653242 0.445065 0.650420 0.525990 0.639131 0.556107 0.647598 0.565521 0.625010 0.569284 0.575605 0.556107 0.560078 0.537292 0.481025 0.554219 0.457031 0.548581 0.352568 0.527878 0.337041 0.512813 0.338457 0.398008 0.348330 diff --git a/datasets/检测仪/train/labels/订单1806772_51_7109424.txt b/datasets/检测仪/train/labels/订单1806772_51_7109424.txt new file mode 100644 index 0000000..04eb418 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806772_51_7109424.txt @@ -0,0 +1 @@ +5 0.392320 0.311752 0.356569 0.325870 0.360327 0.464203 0.373497 0.491029 0.371618 0.609596 0.365980 0.651949 0.371618 0.708419 0.388562 0.735233 0.414918 0.735233 0.431846 0.725355 0.542892 0.726765 0.563595 0.738064 0.601242 0.728174 0.616307 0.659007 0.597484 0.615245 0.605016 0.500907 0.614428 0.450086 0.614428 0.320221 0.586193 0.304694 0.561716 0.308922 0.414918 0.314571 diff --git a/datasets/检测仪/train/labels/订单1806773_51_7109531.txt b/datasets/检测仪/train/labels/订单1806773_51_7109531.txt new file mode 100644 index 0000000..8b725e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806773_51_7109531.txt @@ -0,0 +1 @@ +5 0.546587 0.315930 0.516480 0.335690 0.510827 0.482500 0.520240 0.507910 0.529653 0.605310 0.510827 0.639190 0.518360 0.698480 0.535307 0.725300 0.569173 0.739420 0.589880 0.722480 0.697160 0.722480 0.721640 0.732360 0.747987 0.736590 0.763040 0.658960 0.753627 0.626490 0.747987 0.503680 0.764920 0.468390 0.764920 0.342750 0.744227 0.322990 0.719747 0.322990 0.708453 0.327220 0.578587 0.320170 diff --git a/datasets/检测仪/train/labels/订单1806775_51_7109532.txt b/datasets/检测仪/train/labels/订单1806775_51_7109532.txt new file mode 100644 index 0000000..1f1604b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806775_51_7109532.txt @@ -0,0 +1 @@ +5 0.253078 0.516317 0.234256 0.529021 0.238022 0.601017 0.251194 0.615129 0.254961 0.681479 0.249311 0.709708 0.253078 0.745000 0.268133 0.763350 0.292606 0.760529 0.377300 0.736529 0.403650 0.743587 0.418711 0.725237 0.418711 0.691358 0.407417 0.665950 0.392356 0.599604 0.405533 0.578429 0.396122 0.506437 0.379183 0.496554 0.362244 0.499379 0.279428 0.510671 diff --git a/datasets/检测仪/train/labels/订单1806776_51_7109527.txt b/datasets/检测仪/train/labels/订单1806776_51_7109527.txt new file mode 100644 index 0000000..6a7a56b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806776_51_7109527.txt @@ -0,0 +1 @@ +5 0.356602 0.174707 0.320833 0.200117 0.313307 0.369512 0.337773 0.424561 0.332135 0.565723 0.302018 0.602432 0.307656 0.663125 0.337773 0.692773 0.362240 0.692773 0.379180 0.682891 0.493997 0.687129 0.510937 0.697002 0.541055 0.701240 0.573047 0.682891 0.591862 0.617959 0.589987 0.574189 0.595638 0.448564 0.633281 0.394922 0.661510 0.225527 0.650221 0.202939 0.601276 0.195879 0.401771 0.181758 diff --git a/datasets/检测仪/train/labels/订单1806779_51_7109619.txt b/datasets/检测仪/train/labels/订单1806779_51_7109619.txt new file mode 100644 index 0000000..2cb4cb2 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806779_51_7109619.txt @@ -0,0 +1 @@ +5 0.571159 0.246699 0.537292 0.270693 0.557995 0.417500 0.573047 0.444326 0.582461 0.557256 0.576810 0.592549 0.584336 0.660303 0.608802 0.673008 0.640807 0.671592 0.642682 0.661719 0.759375 0.660303 0.774440 0.671592 0.797018 0.671592 0.825260 0.656064 0.830898 0.593955 0.815846 0.562900 0.804557 0.430205 0.823372 0.392090 0.813958 0.243877 0.789492 0.225527 0.768789 0.226934 0.761263 0.232578 0.597513 0.248105 diff --git a/datasets/检测仪/train/labels/订单1806786_51_7109635.txt b/datasets/检测仪/train/labels/订单1806786_51_7109635.txt new file mode 100644 index 0000000..8514094 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806786_51_7109635.txt @@ -0,0 +1 @@ +5 0.300357 0.410450 0.258998 0.427396 0.268399 0.582673 0.287200 0.620787 0.283445 0.747829 0.277800 0.788772 0.283445 0.857941 0.306002 0.881938 0.345484 0.890407 0.358641 0.874879 0.495876 0.865000 0.507166 0.880528 0.525956 0.880528 0.552281 0.853702 0.559804 0.773244 0.556037 0.739360 0.531601 0.613728 0.548525 0.571375 0.544758 0.423157 0.509044 0.401981 0.484597 0.403400 0.480841 0.409040 0.332316 0.414689 diff --git a/datasets/检测仪/train/labels/订单1806790_51_7109654.txt b/datasets/检测仪/train/labels/订单1806790_51_7109654.txt new file mode 100644 index 0000000..3b3d284 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806790_51_7109654.txt @@ -0,0 +1 @@ +5 0.409382 0.442982 0.382559 0.438743 0.372682 0.454271 0.362799 0.503678 0.375501 0.538971 0.372682 0.646250 0.365618 0.671660 0.367031 0.797298 0.386797 0.821296 0.405150 0.818470 0.516667 0.825527 0.530781 0.836823 0.553366 0.810000 0.550547 0.664603 0.539251 0.647663 0.537839 0.541790 0.546309 0.523444 0.536426 0.454271 0.525137 0.437331 0.503958 0.431686 0.492669 0.441569 0.415026 0.450039 diff --git a/datasets/检测仪/train/labels/订单1806799_51_7109764.txt b/datasets/检测仪/train/labels/订单1806799_51_7109764.txt new file mode 100644 index 0000000..e018365 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806799_51_7109764.txt @@ -0,0 +1 @@ +5 0.313175 0.681519 0.288708 0.689987 0.288708 0.702694 0.300000 0.715400 0.305650 0.781744 0.288708 0.794450 0.288708 0.808569 0.315058 0.821269 0.371525 0.829744 0.418575 0.819862 0.537150 0.812800 0.567267 0.821269 0.736667 0.819862 0.755483 0.804331 0.749842 0.787394 0.742308 0.684344 0.740425 0.663169 0.706550 0.647644 0.563508 0.653288 0.522100 0.664581 0.412933 0.668812 0.379050 0.664581 0.318825 0.677288 diff --git a/datasets/检测仪/train/labels/订单1806804_51_7109816.txt b/datasets/检测仪/train/labels/订单1806804_51_7109816.txt new file mode 100644 index 0000000..baf01d3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806804_51_7109816.txt @@ -0,0 +1 @@ +5 0.443178 0.444325 0.411178 0.465500 0.414944 0.617954 0.445061 0.665950 0.446939 0.792996 0.439411 0.833933 0.448822 0.910162 0.467644 0.936983 0.509050 0.934158 0.514700 0.918629 0.627628 0.897458 0.640806 0.912983 0.661506 0.907338 0.685978 0.884750 0.699150 0.809937 0.678450 0.787350 0.667156 0.663125 0.678450 0.623600 0.684094 0.472558 0.655861 0.445738 0.627628 0.445738 0.610689 0.449971 0.484583 0.449971 diff --git a/datasets/检测仪/train/labels/订单1806805_51_7109765.txt b/datasets/检测仪/train/labels/订单1806805_51_7109765.txt new file mode 100644 index 0000000..8a03627 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806805_51_7109765.txt @@ -0,0 +1 @@ +5 0.354717 0.425975 0.317072 0.448558 0.343422 0.591133 0.362244 0.620779 0.371656 0.719592 0.364128 0.756292 0.369772 0.802879 0.398006 0.831108 0.422472 0.832521 0.435650 0.821229 0.539167 0.812758 0.565517 0.825462 0.580578 0.812758 0.601278 0.736529 0.584339 0.716767 0.573044 0.609483 0.580578 0.577017 0.573044 0.440092 0.557989 0.413271 0.535406 0.418917 0.527872 0.428796 0.394239 0.434442 diff --git a/datasets/检测仪/train/labels/订单1806812_51_7109968.txt b/datasets/检测仪/train/labels/订单1806812_51_7109968.txt new file mode 100644 index 0000000..c98e2f8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806812_51_7109968.txt @@ -0,0 +1 @@ +5 0.375424 0.392094 0.354708 0.401974 0.347178 0.503607 0.358480 0.531842 0.362237 0.613717 0.349064 0.634890 0.350950 0.691360 0.362237 0.708300 0.384825 0.711118 0.392354 0.699825 0.475175 0.701239 0.488348 0.713947 0.505292 0.711118 0.524108 0.694178 0.535395 0.637719 0.520351 0.620779 0.525994 0.538904 0.542924 0.513498 0.550453 0.406206 0.533523 0.392094 0.509050 0.389265 0.503406 0.393509 0.388596 0.394912 diff --git a/datasets/检测仪/train/labels/订单1806813_51_7109962.txt b/datasets/检测仪/train/labels/订单1806813_51_7109962.txt new file mode 100644 index 0000000..f93a328 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806813_51_7109962.txt @@ -0,0 +1 @@ +5 0.348360 0.290567 0.330360 0.323033 0.358945 0.536187 0.372710 0.570067 0.391765 0.728167 0.388590 0.781813 0.400235 0.873567 0.420350 0.900387 0.445760 0.904620 0.451055 0.890507 0.545280 0.858040 0.547395 0.869333 0.570690 0.869333 0.587630 0.832627 0.585510 0.752167 0.574925 0.699940 0.554810 0.541833 0.562220 0.483960 0.546340 0.293387 0.519870 0.265153 0.499755 0.269393 0.497640 0.276447 0.381180 0.296213 diff --git a/datasets/检测仪/train/labels/订单1806819_51_7109971.txt b/datasets/检测仪/train/labels/订单1806819_51_7109971.txt new file mode 100644 index 0000000..2c09612 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806819_51_7109971.txt @@ -0,0 +1 @@ +5 0.375417 0.469733 0.347189 0.492321 0.364128 0.647600 0.386711 0.674421 0.407417 0.798642 0.399889 0.846638 0.414944 0.908750 0.439411 0.927100 0.465761 0.932746 0.477056 0.917221 0.603161 0.901692 0.608806 0.914396 0.642689 0.914396 0.655861 0.894633 0.659628 0.822642 0.646450 0.795821 0.629511 0.668775 0.635156 0.622188 0.621983 0.473967 0.599394 0.454204 0.580578 0.457029 0.573044 0.461262 0.426239 0.473967 diff --git a/datasets/检测仪/train/labels/订单1806820_51_7110176.txt b/datasets/检测仪/train/labels/订单1806820_51_7110176.txt new file mode 100644 index 0000000..cdad02e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806820_51_7110176.txt @@ -0,0 +1 @@ +5 0.223430 0.091527 0.195905 0.094347 0.188490 0.118347 0.193785 0.133873 0.154615 0.259507 0.144025 0.269393 0.128145 0.276447 0.121790 0.307507 0.136615 0.345620 0.213900 0.387967 0.254130 0.386553 0.424585 0.459960 0.456350 0.498073 0.673385 0.603947 0.703030 0.579947 0.707265 0.547480 0.700910 0.533367 0.731615 0.341387 0.747495 0.303273 0.727380 0.265153 0.528340 0.194573 0.498695 0.198807 0.348360 0.142347 0.318715 0.109880 diff --git a/datasets/检测仪/train/labels/订单1806821_51_7109957.txt b/datasets/检测仪/train/labels/订单1806821_51_7109957.txt new file mode 100644 index 0000000..ca8fa8c --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806821_51_7109957.txt @@ -0,0 +1 @@ +5 0.313307 0.469736 0.285078 0.493730 0.320833 0.630664 0.347187 0.653242 0.367891 0.753467 0.369779 0.788760 0.381068 0.835342 0.405534 0.845225 0.435651 0.845225 0.541055 0.818408 0.561758 0.824053 0.586224 0.800059 0.586224 0.743594 0.565521 0.725234 0.541055 0.625010 0.550456 0.582666 0.529753 0.462676 0.499648 0.447148 0.478932 0.451387 0.473294 0.459854 0.356602 0.476797 diff --git a/datasets/检测仪/train/labels/订单1806822_51_7109905.txt b/datasets/检测仪/train/labels/订单1806822_51_7109905.txt new file mode 100644 index 0000000..73185aa --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806822_51_7109905.txt @@ -0,0 +1 @@ +5 0.441302 0.459854 0.413060 0.478203 0.401771 0.657480 0.418711 0.687129 0.407422 0.821230 0.392357 0.857930 0.396120 0.932744 0.414948 0.965215 0.450703 0.969453 0.462005 0.955332 0.593750 0.966631 0.599401 0.976504 0.642682 0.983564 0.663385 0.965215 0.684089 0.886162 0.674687 0.850869 0.685977 0.701240 0.702917 0.654658 0.721732 0.500791 0.697266 0.468320 0.655859 0.468320 0.652096 0.473965 0.492109 0.464092 diff --git a/datasets/检测仪/train/labels/订单1806823_51_7109926.txt b/datasets/检测仪/train/labels/订单1806823_51_7109926.txt new file mode 100644 index 0000000..12f31e7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806823_51_7109926.txt @@ -0,0 +1 @@ +5 0.275533 0.520594 0.266125 0.544594 0.358350 0.701281 0.363992 0.713988 0.416692 0.817037 0.424225 0.846681 0.465633 0.908794 0.488217 0.922906 0.516450 0.915850 0.535275 0.901731 0.623733 0.872087 0.667025 0.876325 0.674550 0.843856 0.655733 0.770450 0.635025 0.753512 0.582325 0.646231 0.572917 0.598231 0.520217 0.475425 0.490100 0.464131 0.459983 0.466956 0.454342 0.478244 0.330117 0.516362 0.286825 0.516362 diff --git a/datasets/检测仪/train/labels/订单1806827_51_7110069.txt b/datasets/检测仪/train/labels/订单1806827_51_7110069.txt new file mode 100644 index 0000000..62b5f5d --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806827_51_7110069.txt @@ -0,0 +1 @@ +5 0.236139 0.331396 0.198494 0.352571 0.204139 0.509258 0.213550 0.537492 0.222961 0.562900 0.234256 0.689946 0.211672 0.725237 0.217317 0.788763 0.232372 0.805700 0.264372 0.809937 0.279428 0.798642 0.403650 0.795821 0.409300 0.805700 0.437528 0.808525 0.460117 0.791583 0.482700 0.726650 0.471411 0.694183 0.473289 0.567138 0.501522 0.503613 0.512817 0.362450 0.492111 0.337042 0.463883 0.339862 0.446939 0.344100 0.275667 0.339862 0.247433 0.331396 diff --git a/datasets/检测仪/train/labels/订单1806828_51_7110021.txt b/datasets/检测仪/train/labels/订单1806828_51_7110021.txt new file mode 100644 index 0000000..dc658f3 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806828_51_7110021.txt @@ -0,0 +1 @@ +5 0.335898 0.423154 0.300130 0.442910 0.309544 0.593955 0.328359 0.622188 0.326484 0.740762 0.322721 0.780293 0.322721 0.846641 0.337773 0.869229 0.373542 0.874873 0.392357 0.862168 0.503411 0.855107 0.514701 0.866396 0.541055 0.867812 0.573047 0.842402 0.578698 0.777471 0.554219 0.752061 0.554219 0.623604 0.574935 0.572783 0.574935 0.444326 0.550456 0.428799 0.537292 0.424561 0.514701 0.430205 0.373542 0.430205 diff --git a/datasets/检测仪/train/labels/订单1806829_51_7110060.txt b/datasets/检测仪/train/labels/订单1806829_51_7110060.txt new file mode 100644 index 0000000..dee29c0 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806829_51_7110060.txt @@ -0,0 +1 @@ +5 0.207800 0.372400 0.158867 0.369570 0.123107 0.407690 0.181453 0.634960 0.209680 0.674480 0.241680 0.825530 0.241680 0.872110 0.264267 0.959630 0.298147 0.989280 0.341440 0.987860 0.520240 0.949750 0.563533 0.959630 0.589880 0.920110 0.595533 0.831170 0.574827 0.788830 0.548480 0.630720 0.559773 0.572850 0.535307 0.372400 0.488240 0.339930 0.458133 0.348400 0.441187 0.363930 0.243560 0.380870 diff --git a/datasets/检测仪/train/labels/订单1806830_51_7110171.txt b/datasets/检测仪/train/labels/订单1806830_51_7110171.txt new file mode 100644 index 0000000..2108cc7 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806830_51_7110171.txt @@ -0,0 +1 @@ +5 0.193405 0.616608 0.187754 0.647663 0.249870 0.759180 0.272454 0.778945 0.311979 0.863646 0.310566 0.891875 0.341621 0.944108 0.357155 0.952578 0.376914 0.948340 0.385384 0.935638 0.441849 0.898932 0.455964 0.910228 0.471491 0.904583 0.487018 0.867878 0.467259 0.817057 0.446087 0.790241 0.406556 0.695658 0.400911 0.671660 0.358561 0.554499 0.333151 0.547441 0.311979 0.555911 0.306335 0.565788 0.224460 0.613783 diff --git a/datasets/检测仪/train/labels/订单1806834_51_7110088.txt b/datasets/检测仪/train/labels/订单1806834_51_7110088.txt new file mode 100644 index 0000000..6c32f8b --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806834_51_7110088.txt @@ -0,0 +1 @@ +5 0.286825 0.550238 0.262358 0.570000 0.292475 0.704106 0.313175 0.733750 0.335758 0.831150 0.326350 0.876325 0.345175 0.921494 0.369642 0.938438 0.397875 0.935612 0.409167 0.924319 0.512683 0.910206 0.516450 0.918675 0.544683 0.920088 0.557858 0.890444 0.557858 0.832562 0.537150 0.807156 0.514567 0.704106 0.522100 0.657525 0.505158 0.540356 0.480692 0.526244 0.454342 0.524831 0.443042 0.536125 0.307533 0.553063 diff --git a/datasets/检测仪/train/labels/订单1806836_51_7110123.txt b/datasets/检测仪/train/labels/订单1806836_51_7110123.txt new file mode 100644 index 0000000..6011a1f --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806836_51_7110123.txt @@ -0,0 +1 @@ +5 0.471307 0.478270 0.431787 0.499440 0.418600 0.642020 0.433667 0.681540 0.411080 0.787410 0.394133 0.810000 0.399787 0.859410 0.412960 0.879170 0.435547 0.886230 0.444960 0.880580 0.556000 0.896110 0.584240 0.911640 0.616227 0.898930 0.642587 0.849520 0.638813 0.824120 0.663293 0.733770 0.702813 0.701300 0.755520 0.541790 0.725400 0.506500 0.704693 0.503680 0.682107 0.517790 0.524013 0.490970 0.516480 0.479680 diff --git a/datasets/检测仪/train/labels/订单1806838_51_7110100.txt b/datasets/检测仪/train/labels/订单1806838_51_7110100.txt new file mode 100644 index 0000000..66f7d3e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806838_51_7110100.txt @@ -0,0 +1 @@ +5 0.500575 0.387853 0.474222 0.411853 0.479869 0.582657 0.500575 0.633471 0.506222 0.788755 0.494928 0.828275 0.509987 0.934147 0.540092 0.965206 0.568327 0.959559 0.585268 0.946853 0.737725 0.934147 0.750902 0.948265 0.779137 0.949676 0.797961 0.927088 0.816771 0.836745 0.790431 0.797225 0.786667 0.634882 0.805477 0.578422 0.799843 0.411853 0.773490 0.385029 0.741490 0.382206 0.732078 0.392088 0.545739 0.389265 0.534458 0.383618 diff --git a/datasets/检测仪/train/labels/订单1806841_51_7110192.txt b/datasets/检测仪/train/labels/订单1806841_51_7110192.txt new file mode 100644 index 0000000..151f194 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806841_51_7110192.txt @@ -0,0 +1 @@ +5 0.431888 0.331396 0.401771 0.351162 0.403646 0.481025 0.414948 0.507852 0.418711 0.617959 0.407422 0.653242 0.411185 0.709707 0.426237 0.730889 0.454466 0.732295 0.467643 0.721006 0.574935 0.718184 0.584336 0.732295 0.608802 0.735117 0.629505 0.719590 0.646445 0.650420 0.629505 0.630664 0.627630 0.513496 0.644570 0.473965 0.648333 0.344102 0.627630 0.327158 0.603164 0.325752 0.589987 0.335625 0.452591 0.334219 diff --git a/datasets/检测仪/train/labels/订单1806845_51_7110197.txt b/datasets/检测仪/train/labels/订单1806845_51_7110197.txt new file mode 100644 index 0000000..3d27285 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806845_51_7110197.txt @@ -0,0 +1 @@ +5 0.486467 0.481025 0.462000 0.493733 0.441294 0.634896 0.454472 0.664538 0.439411 0.769000 0.426239 0.801467 0.422472 0.860754 0.431883 0.884750 0.460117 0.887575 0.475172 0.876283 0.576811 0.888988 0.591867 0.903104 0.610689 0.905925 0.637039 0.887575 0.653978 0.826875 0.640806 0.804287 0.653978 0.678654 0.684094 0.634896 0.702917 0.521962 0.682211 0.495142 0.657744 0.492321 0.650217 0.500788 0.520344 0.492321 0.505289 0.486675 diff --git a/datasets/检测仪/train/labels/订单1806849_51_7110264.txt b/datasets/检测仪/train/labels/订单1806849_51_7110264.txt new file mode 100644 index 0000000..238241e --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806849_51_7110264.txt @@ -0,0 +1 @@ +5 0.190964 0.490908 0.157083 0.519141 0.192852 0.687129 0.221081 0.715361 0.230495 0.825459 0.228607 0.862168 0.243672 0.922861 0.270013 0.942627 0.296367 0.938398 0.305781 0.928516 0.428125 0.901689 0.446940 0.908750 0.458229 0.908750 0.475169 0.881924 0.484583 0.824053 0.462005 0.804287 0.454466 0.681475 0.462005 0.650420 0.460117 0.497969 0.431888 0.478203 0.403646 0.478203 0.394245 0.490908 0.226732 0.497969 0.219206 0.492324 diff --git a/datasets/检测仪/train/labels/订单1806852_51_7110283.txt b/datasets/检测仪/train/labels/订单1806852_51_7110283.txt new file mode 100644 index 0000000..907edee --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806852_51_7110283.txt @@ -0,0 +1 @@ +5 0.365075 0.461272 0.323668 0.490917 0.357543 0.668780 0.382018 0.711133 0.395190 0.838175 0.395190 0.890407 0.402722 0.965225 0.423426 0.980753 0.453541 0.996280 0.476125 0.977924 0.622930 0.970865 0.639873 0.982163 0.662457 0.983573 0.679400 0.960986 0.696344 0.880528 0.671869 0.852292 0.651165 0.692777 0.666228 0.637725 0.658697 0.468330 0.622930 0.442924 0.581522 0.447154 0.572111 0.452803 0.400842 0.471151 0.400842 0.464092 diff --git a/datasets/检测仪/train/labels/订单1806855_51_7110336.txt b/datasets/检测仪/train/labels/订单1806855_51_7110336.txt new file mode 100644 index 0000000..35321a9 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806855_51_7110336.txt @@ -0,0 +1 @@ +5 0.549482 0.181829 0.535718 0.208646 0.535718 0.387923 0.552661 0.427448 0.552661 0.564382 0.546309 0.591198 0.549482 0.670247 0.562187 0.688600 0.582305 0.680130 0.658530 0.682956 0.681821 0.692839 0.689233 0.677311 0.704058 0.589785 0.699819 0.565788 0.701938 0.424629 0.712524 0.378047 0.717817 0.205827 0.707231 0.173359 0.692412 0.176178 0.683940 0.180417 0.577012 0.184648 diff --git a/datasets/检测仪/train/labels/订单1806857_51_7110262.txt b/datasets/检测仪/train/labels/订单1806857_51_7110262.txt new file mode 100644 index 0000000..3dace23 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806857_51_7110262.txt @@ -0,0 +1 @@ +5 0.258724 0.373740 0.230495 0.392090 0.230495 0.529023 0.254961 0.564316 0.251198 0.650420 0.232370 0.706885 0.236133 0.742178 0.256849 0.764766 0.277552 0.764766 0.288841 0.756299 0.394245 0.754883 0.399883 0.759121 0.422474 0.764766 0.441289 0.745000 0.454466 0.691357 0.446940 0.668770 0.454466 0.562900 0.471406 0.526201 0.486471 0.411855 0.467643 0.387861 0.439414 0.386445 0.431888 0.390684 0.290716 0.383623 0.283190 0.375156 diff --git a/datasets/检测仪/train/labels/订单1806860_51_7110395.txt b/datasets/检测仪/train/labels/订单1806860_51_7110395.txt new file mode 100644 index 0000000..9d497b8 --- /dev/null +++ b/datasets/检测仪/train/labels/订单1806860_51_7110395.txt @@ -0,0 +1 @@ +5 0.527878 0.257988 0.505286 0.265049 0.463880 0.377979 0.471406 0.409033 0.448828 0.492324 0.428125 0.520557 0.411185 0.571367 0.420586 0.588311 0.443177 0.602432 0.465768 0.592549 0.557995 0.612305 0.563633 0.625010 0.578698 0.626426 0.610690 0.613721 0.631393 0.561494 0.637044 0.519141 0.655859 0.438682 0.678451 0.403389 0.702917 0.317275 0.702917 0.291865 0.680326 0.287637 0.678451 0.290459 0.548581 0.263633 0.533516 0.257988 diff --git a/datasets/检测仪/val/.DS_Store b/datasets/检测仪/val/.DS_Store new file mode 100644 index 0000000..37dbef2 Binary files /dev/null and b/datasets/检测仪/val/.DS_Store differ diff --git a/datasets/检测仪/val/images/.DS_Store b/datasets/检测仪/val/images/.DS_Store new file mode 100644 index 0000000..6990da8 Binary files /dev/null and b/datasets/检测仪/val/images/.DS_Store differ diff --git a/datasets/检测仪/val/images/订单1806862_51_7110450.jpg b/datasets/检测仪/val/images/订单1806862_51_7110450.jpg new file mode 100644 index 0000000..fd31628 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806862_51_7110450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049dc6256999b9108a805210c80d7b2caf84629c5c47b15021340c6324894345 +size 145050 diff --git a/datasets/检测仪/val/images/订单1806863_51_7110471.jpg b/datasets/检测仪/val/images/订单1806863_51_7110471.jpg new file mode 100644 index 0000000..9b6b8ff --- /dev/null +++ b/datasets/检测仪/val/images/订单1806863_51_7110471.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea741f2f608a70acab9911ade6f8cff7a0738b4882e67b338539453c8a74a19e +size 62339 diff --git a/datasets/检测仪/val/images/订单1806867_51_7110438.jpg b/datasets/检测仪/val/images/订单1806867_51_7110438.jpg new file mode 100644 index 0000000..f872ba3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806867_51_7110438.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6a802358cfa9a95836d7465e49e662e4ea32dff2bd5df1bdbe10ea2383fbf5 +size 114496 diff --git a/datasets/检测仪/val/images/订单1806868_51_7110355.jpg b/datasets/检测仪/val/images/订单1806868_51_7110355.jpg new file mode 100644 index 0000000..3a803a9 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806868_51_7110355.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfef8738fcae4253490fae800e55472a1958565cb104bb5d95564851b5c65e7 +size 402923 diff --git a/datasets/检测仪/val/images/订单1806869_51_7110358.jpg b/datasets/检测仪/val/images/订单1806869_51_7110358.jpg new file mode 100644 index 0000000..129ada1 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806869_51_7110358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7057a7feb832bfdd46b0026753b3cb9192543ed8e037c74a0a554d49a1d95107 +size 70552 diff --git a/datasets/检测仪/val/images/订单1806872_51_7110488.jpg b/datasets/检测仪/val/images/订单1806872_51_7110488.jpg new file mode 100644 index 0000000..7424f2b --- /dev/null +++ b/datasets/检测仪/val/images/订单1806872_51_7110488.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9749f9496dbbbc6bc946451ff23f68c9b1f7d1b134f1f4aa2c49b097469d30 +size 572060 diff --git a/datasets/检测仪/val/images/订单1806873_51_7110448.jpg b/datasets/检测仪/val/images/订单1806873_51_7110448.jpg new file mode 100644 index 0000000..de247c5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806873_51_7110448.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98efbd563a5e153677f2beda0261948e3e9ab91ca018a2fe263e0603e9c7ab37 +size 133028 diff --git a/datasets/检测仪/val/images/订单1806876_51_7110528.jpg b/datasets/检测仪/val/images/订单1806876_51_7110528.jpg new file mode 100644 index 0000000..08e2743 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806876_51_7110528.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e4e003db8a812cab443afb85e73cb427c172d3d6c633b3b119f1d44bbe7415 +size 86000 diff --git a/datasets/检测仪/val/images/订单1806878_51_7110495.jpg b/datasets/检测仪/val/images/订单1806878_51_7110495.jpg new file mode 100644 index 0000000..844e295 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806878_51_7110495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b35491abdb9a6305d87284ebf86409026c716003e33278603450cfa4e31712 +size 123605 diff --git a/datasets/检测仪/val/images/订单1806880_51_7110408.jpg b/datasets/检测仪/val/images/订单1806880_51_7110408.jpg new file mode 100644 index 0000000..44637fd --- /dev/null +++ b/datasets/检测仪/val/images/订单1806880_51_7110408.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435445edee6cbfcbe688c6bd56217e016239ecbc42fb705b90eb8097fb1a50cb +size 115748 diff --git a/datasets/检测仪/val/images/订单1806884_51_7110489.jpg b/datasets/检测仪/val/images/订单1806884_51_7110489.jpg new file mode 100644 index 0000000..2dfb2a3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806884_51_7110489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8b5ece1fe1676eb42cf552b6926513a4ce98236f50cbc8b82cc6a04dbcd3e9 +size 94754 diff --git a/datasets/检测仪/val/images/订单1806886_51_7110543.jpg b/datasets/检测仪/val/images/订单1806886_51_7110543.jpg new file mode 100644 index 0000000..36cc749 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806886_51_7110543.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2585248d46e4abce029d74c39e193067ddee07d219892eb528e33beeaaddb87 +size 437808 diff --git a/datasets/检测仪/val/images/订单1806889_51_7110587.jpg b/datasets/检测仪/val/images/订单1806889_51_7110587.jpg new file mode 100644 index 0000000..4ec6ef0 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806889_51_7110587.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f45124a0b6c8be7af7a84ccaaebba59c648bb562e79a0b8ba3317946e2cead +size 123277 diff --git a/datasets/检测仪/val/images/订单1806890_51_7110633.jpg b/datasets/检测仪/val/images/订单1806890_51_7110633.jpg new file mode 100644 index 0000000..1e5d218 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806890_51_7110633.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43c45f29b5a406eef312f20ce4cd0ce10967821c3a9f5fc1dc0eb1af613d7fc +size 109451 diff --git a/datasets/检测仪/val/images/订单1806891_51_7110644.jpg b/datasets/检测仪/val/images/订单1806891_51_7110644.jpg new file mode 100644 index 0000000..51833c8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806891_51_7110644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff16f7b5a163eefdfca999bab2e6da74af75a09d77530c90b2be74707b50215b +size 125719 diff --git a/datasets/检测仪/val/images/订单1806904_51_7110673.jpg b/datasets/检测仪/val/images/订单1806904_51_7110673.jpg new file mode 100644 index 0000000..ca0d255 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806904_51_7110673.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622996f49c3dafaaa45d28ac6b7c9d2359017a05ae1542398164fe312f6ed7a0 +size 92672 diff --git a/datasets/检测仪/val/images/订单1806905_51_7110728.jpg b/datasets/检测仪/val/images/订单1806905_51_7110728.jpg new file mode 100644 index 0000000..ba26803 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806905_51_7110728.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c462010e5f9310615d2615b03f94739fa574232794f467037ab7310ace01130 +size 313141 diff --git a/datasets/检测仪/val/images/订单1806907_51_7110712.jpg b/datasets/检测仪/val/images/订单1806907_51_7110712.jpg new file mode 100644 index 0000000..6d32343 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806907_51_7110712.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cc2c4d0626b60606dd0ff61d742c8825a03a0317274a4313bbcdac24f0ac82 +size 87964 diff --git a/datasets/检测仪/val/images/订单1806912_51_7110756.jpg b/datasets/检测仪/val/images/订单1806912_51_7110756.jpg new file mode 100644 index 0000000..8bcf557 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806912_51_7110756.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a61d0b89b3aa7cf67809a18a899fbe5eba9a949fe33fbaef56aaebf729ec5c +size 126973 diff --git a/datasets/检测仪/val/images/订单1806913_51_7110893.jpg b/datasets/检测仪/val/images/订单1806913_51_7110893.jpg new file mode 100644 index 0000000..52bf71d --- /dev/null +++ b/datasets/检测仪/val/images/订单1806913_51_7110893.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5e1bbf914cd4e20c1dce6111adde8791c7fbc5277dfbcf0d37b5d62451c55a +size 437040 diff --git a/datasets/检测仪/val/images/订单1806917_51_7110789.jpg b/datasets/检测仪/val/images/订单1806917_51_7110789.jpg new file mode 100644 index 0000000..50447c8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806917_51_7110789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:871b563bf518c6b62736faf09a79f077c63690305b9b41dc23817ede178c96ea +size 104391 diff --git a/datasets/检测仪/val/images/订单1806918_51_7110858.jpg b/datasets/检测仪/val/images/订单1806918_51_7110858.jpg new file mode 100644 index 0000000..419e92e --- /dev/null +++ b/datasets/检测仪/val/images/订单1806918_51_7110858.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b5afae11adb5b0c631e13248d8cc1334eb0a7298f696ccf08e160b2cda9de5 +size 126908 diff --git a/datasets/检测仪/val/images/订单1806921_51_7110938.jpg b/datasets/检测仪/val/images/订单1806921_51_7110938.jpg new file mode 100644 index 0000000..bc1ad84 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806921_51_7110938.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a01cc426b610438917f451a5a2370e785c57ab5a95cb3e23f86f676785b4b1 +size 489590 diff --git a/datasets/检测仪/val/images/订单1806922_51_7110814.jpg b/datasets/检测仪/val/images/订单1806922_51_7110814.jpg new file mode 100644 index 0000000..e4afc23 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806922_51_7110814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5bade10fdc50a8fc4d4623ebf50e0f9500384bf7a86d1de73f69387a7e8c5e +size 126093 diff --git a/datasets/检测仪/val/images/订单1806925_51_7110926.jpg b/datasets/检测仪/val/images/订单1806925_51_7110926.jpg new file mode 100644 index 0000000..f889892 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806925_51_7110926.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3ad27c079da60cd4b5379110ef87302d781786d6a94e7bee00b670ed454a69 +size 459857 diff --git a/datasets/检测仪/val/images/订单1806926_51_7110876.jpg b/datasets/检测仪/val/images/订单1806926_51_7110876.jpg new file mode 100644 index 0000000..6a74d7c --- /dev/null +++ b/datasets/检测仪/val/images/订单1806926_51_7110876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f384027b6e5d7d383d657c505ef61556fec57f3c7b8c7fd5bc80b973c2daca12 +size 158123 diff --git a/datasets/检测仪/val/images/订单1806928_51_7110863.jpg b/datasets/检测仪/val/images/订单1806928_51_7110863.jpg new file mode 100644 index 0000000..fff2d0e --- /dev/null +++ b/datasets/检测仪/val/images/订单1806928_51_7110863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c5064f0e46e0c31f057c7e44e6e8fb69bcd365f6248e1a39d045a47ec6a249 +size 144119 diff --git a/datasets/检测仪/val/images/订单1806929_51_7110854.jpg b/datasets/检测仪/val/images/订单1806929_51_7110854.jpg new file mode 100644 index 0000000..859f7b1 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806929_51_7110854.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c169dcc34c49a0c8c5ef108740bcaa560e9ed266855b9f8d3c56ce3d60703639 +size 135851 diff --git a/datasets/检测仪/val/images/订单1806935_51_7111073.jpg b/datasets/检测仪/val/images/订单1806935_51_7111073.jpg new file mode 100644 index 0000000..670f3b2 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806935_51_7111073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837a5e83198f13aa083a79121c531f8aba2027b094ef394513e24cdd75db341a +size 115056 diff --git a/datasets/检测仪/val/images/订单1806936_51_7110996.jpg b/datasets/检测仪/val/images/订单1806936_51_7110996.jpg new file mode 100644 index 0000000..130dbf8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806936_51_7110996.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024c8f3e547353428ba9367543f5384dda85b89271bc3258b67fb4eb07f0bc9d +size 109173 diff --git a/datasets/检测仪/val/images/订单1806937_51_7111019.jpg b/datasets/检测仪/val/images/订单1806937_51_7111019.jpg new file mode 100644 index 0000000..d51b730 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806937_51_7111019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56380fdb4bc48688880ad2de4cbb1e67abb3950488b1b9e83afbc0d2f59cb0a5 +size 115071 diff --git a/datasets/检测仪/val/images/订单1806938_51_7111055.jpg b/datasets/检测仪/val/images/订单1806938_51_7111055.jpg new file mode 100644 index 0000000..3f08f53 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806938_51_7111055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d9b28d67d942aad690a1223758f4deaa3b53ffe8565d380972c2766900bc33 +size 234903 diff --git a/datasets/检测仪/val/images/订单1806942_51_7111056.jpg b/datasets/检测仪/val/images/订单1806942_51_7111056.jpg new file mode 100644 index 0000000..9357a2c --- /dev/null +++ b/datasets/检测仪/val/images/订单1806942_51_7111056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a743779a8fd6451a7e1c412a0543cdfbaa185136382aff21d86aca76e2f2e114 +size 151081 diff --git a/datasets/检测仪/val/images/订单1806943_51_7111143.jpg b/datasets/检测仪/val/images/订单1806943_51_7111143.jpg new file mode 100644 index 0000000..e4558d5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806943_51_7111143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9666c910d71470cc6935c0e2384a97651d2112be92bba744e746b9a867cdb8c +size 125627 diff --git a/datasets/检测仪/val/images/订单1806944_51_7111099.jpg b/datasets/检测仪/val/images/订单1806944_51_7111099.jpg new file mode 100644 index 0000000..ddbfca7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806944_51_7111099.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c25499b14f7a6c920de5b6c3b74ae9d96297fa631e41be0da1e343a7615806 +size 122642 diff --git a/datasets/检测仪/val/images/订单1806947_51_7111167.jpg b/datasets/检测仪/val/images/订单1806947_51_7111167.jpg new file mode 100644 index 0000000..f3cefb7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806947_51_7111167.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a8a0064a80226a1cc5d90596189e9f1ce657659f0ed19b4f718acf15ad01f4 +size 127911 diff --git a/datasets/检测仪/val/images/订单1806951_51_7111144.jpg b/datasets/检测仪/val/images/订单1806951_51_7111144.jpg new file mode 100644 index 0000000..2b571c8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806951_51_7111144.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcea937d5572c9788a806af78f7a0113af04403d9ab25f7eb7fdcd410f3e9179 +size 151696 diff --git a/datasets/检测仪/val/images/订单1806954_51_7111215.jpg b/datasets/检测仪/val/images/订单1806954_51_7111215.jpg new file mode 100644 index 0000000..a0921b3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806954_51_7111215.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c9a9b1505307513f0fb2ba30ec6a6e08f5aff8cc0b1a3109fa9d957832a90f +size 96183 diff --git a/datasets/检测仪/val/images/订单1806959_51_7111293.jpg b/datasets/检测仪/val/images/订单1806959_51_7111293.jpg new file mode 100644 index 0000000..0434cc2 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806959_51_7111293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c0f68bc65ea0240e8dfb684a542c07d835e50447def61655d4d47530227b0b +size 80300 diff --git a/datasets/检测仪/val/images/订单1806961_51_7111241.jpg b/datasets/检测仪/val/images/订单1806961_51_7111241.jpg new file mode 100644 index 0000000..9bf049f --- /dev/null +++ b/datasets/检测仪/val/images/订单1806961_51_7111241.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a30d1d12d485f9594be3af086f2483010575f333c9920899283b0fbd6542e8 +size 166163 diff --git a/datasets/检测仪/val/images/订单1806967_51_7111257.jpg b/datasets/检测仪/val/images/订单1806967_51_7111257.jpg new file mode 100644 index 0000000..8441bb5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806967_51_7111257.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704b64c90fca0d83873d57847dbef7441db4ae73fac9ccbda1b2519587ab2863 +size 118699 diff --git a/datasets/检测仪/val/images/订单1806969_51_7111294.jpg b/datasets/检测仪/val/images/订单1806969_51_7111294.jpg new file mode 100644 index 0000000..1f635d4 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806969_51_7111294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d300eaa3546de85b3eb46c79d1d74e25e2698fe933df7017b1b1100e8eaec7 +size 266423 diff --git a/datasets/检测仪/val/images/订单1806972_51_7111358.jpg b/datasets/检测仪/val/images/订单1806972_51_7111358.jpg new file mode 100644 index 0000000..742c57b --- /dev/null +++ b/datasets/检测仪/val/images/订单1806972_51_7111358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631bb7307b86dd68ecda7305646b0fd5cfce5846ed47524d1345891be1dff14d +size 627627 diff --git a/datasets/检测仪/val/images/订单1806973_51_7111443.jpg b/datasets/检测仪/val/images/订单1806973_51_7111443.jpg new file mode 100644 index 0000000..5e7617a --- /dev/null +++ b/datasets/检测仪/val/images/订单1806973_51_7111443.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d3352703ba76fb240964f5f2d72419d396cfbcc8c9febf6100375739567ff8 +size 307049 diff --git a/datasets/检测仪/val/images/订单1806981_51_7111413.jpg b/datasets/检测仪/val/images/订单1806981_51_7111413.jpg new file mode 100644 index 0000000..a3fea9b --- /dev/null +++ b/datasets/检测仪/val/images/订单1806981_51_7111413.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e5dadaa8c6d3909a431c53229bcd4dae6092bd8ebae553746e2bd396f58df8 +size 116346 diff --git a/datasets/检测仪/val/images/订单1806982_51_7111416.jpg b/datasets/检测仪/val/images/订单1806982_51_7111416.jpg new file mode 100644 index 0000000..724cea5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806982_51_7111416.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea221639576a1d791dde26a31e38072e12d04ac48d7d046c75ebecde05ae03f +size 109825 diff --git a/datasets/检测仪/val/images/订单1806984_51_7111472.jpg b/datasets/检测仪/val/images/订单1806984_51_7111472.jpg new file mode 100644 index 0000000..f9ebbac --- /dev/null +++ b/datasets/检测仪/val/images/订单1806984_51_7111472.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef469b0f39196a7e6432b4b9c957ed749656d122bc85cb5f669edabb2026093 +size 190559 diff --git a/datasets/检测仪/val/images/订单1806987_51_7111464.jpg b/datasets/检测仪/val/images/订单1806987_51_7111464.jpg new file mode 100644 index 0000000..9f0ee76 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806987_51_7111464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3dbee4bec714c02545345e05866b160afe1fc8f5d1e10fb66b4372a8d03a3d +size 103508 diff --git a/datasets/检测仪/val/images/订单1806990_51_7111507.jpg b/datasets/检测仪/val/images/订单1806990_51_7111507.jpg new file mode 100644 index 0000000..43cb5ba --- /dev/null +++ b/datasets/检测仪/val/images/订单1806990_51_7111507.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0825ac5e023145f439b01d512a6d5cc4766965df467725cbe90902361d3deac +size 120669 diff --git a/datasets/检测仪/val/images/订单1806991_51_7111532.jpg b/datasets/检测仪/val/images/订单1806991_51_7111532.jpg new file mode 100644 index 0000000..3c955ba --- /dev/null +++ b/datasets/检测仪/val/images/订单1806991_51_7111532.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8c72578f14c81e03965ff49e1a5ee28231cda8a41ab58659d0292fc217effb +size 108137 diff --git a/datasets/检测仪/val/images/订单1806992_51_7111542.jpg b/datasets/检测仪/val/images/订单1806992_51_7111542.jpg new file mode 100644 index 0000000..18487f6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806992_51_7111542.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540b41946746d30a28b8a2aa9c6e533ce7199c35d8ddc3e8bdf1a582c634664d +size 116903 diff --git a/datasets/检测仪/val/images/订单1806994_51_7111560.jpg b/datasets/检测仪/val/images/订单1806994_51_7111560.jpg new file mode 100644 index 0000000..3393365 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806994_51_7111560.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b5f514aca1c6fe041f27ddaa3c531fa9171f665bdbf065cdc593b9b50ee5a2 +size 128522 diff --git a/datasets/检测仪/val/images/订单1806996_51_7111579.jpg b/datasets/检测仪/val/images/订单1806996_51_7111579.jpg new file mode 100644 index 0000000..fac72db --- /dev/null +++ b/datasets/检测仪/val/images/订单1806996_51_7111579.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03dbc159b2b02bfe99d3dfca6e42fd7cd524ba2ddc500fe67323d815c164a6d7 +size 113245 diff --git a/datasets/检测仪/val/images/订单1806997_51_7111589.jpg b/datasets/检测仪/val/images/订单1806997_51_7111589.jpg new file mode 100644 index 0000000..8cc6241 --- /dev/null +++ b/datasets/检测仪/val/images/订单1806997_51_7111589.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7c06791e0b2665acab8a794ca6c0015daa3ba1f0f2082d250c9076fb0f871f +size 171780 diff --git a/datasets/检测仪/val/images/订单1807000_51_7111608.jpg b/datasets/检测仪/val/images/订单1807000_51_7111608.jpg new file mode 100644 index 0000000..d620beb --- /dev/null +++ b/datasets/检测仪/val/images/订单1807000_51_7111608.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c60666fbb2759dd343c8a1cd168a609382d5abefac9905740dda4c20960eb3f4 +size 111513 diff --git a/datasets/检测仪/val/images/订单1807001_51_7111603.jpg b/datasets/检测仪/val/images/订单1807001_51_7111603.jpg new file mode 100644 index 0000000..b5dbfcd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807001_51_7111603.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24671f3d1b77141486e7ba729e3e7eb65fe264459afa5251e91bbec7b9851945 +size 119175 diff --git a/datasets/检测仪/val/images/订单1807006_51_7111644.jpg b/datasets/检测仪/val/images/订单1807006_51_7111644.jpg new file mode 100644 index 0000000..3f1e589 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807006_51_7111644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a225681b791c5839dcbf90f0f97e295fd88cec79788d59cf04df4cac67c0ae48 +size 149996 diff --git a/datasets/检测仪/val/images/订单1807008_51_7113981.jpg b/datasets/检测仪/val/images/订单1807008_51_7113981.jpg new file mode 100644 index 0000000..c8abaca --- /dev/null +++ b/datasets/检测仪/val/images/订单1807008_51_7113981.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9730eb83d8442af00840a94062f8434e85d5c4288fdcdc2122b6609ac365a972 +size 88848 diff --git a/datasets/检测仪/val/images/订单1807010_51_7111695.jpg b/datasets/检测仪/val/images/订单1807010_51_7111695.jpg new file mode 100644 index 0000000..3c59d8d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807010_51_7111695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4932a5d8e04aec9cfdcdbe604e97cf0e4f7e0e7ca6f9f275829a0bd006855f70 +size 252445 diff --git a/datasets/检测仪/val/images/订单1807011_51_7111704.jpg b/datasets/检测仪/val/images/订单1807011_51_7111704.jpg new file mode 100644 index 0000000..b65cc0c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807011_51_7111704.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e9ee80f163a58f4df240c0d5b7c38537d23f4a70ff76608522b760c249a2f9 +size 160549 diff --git a/datasets/检测仪/val/images/订单1807012_51_7111662.jpg b/datasets/检测仪/val/images/订单1807012_51_7111662.jpg new file mode 100644 index 0000000..d584460 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807012_51_7111662.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a301b93452eb39721efebe153dd25592d320636e7d7e3dbbb00128966d60829 +size 126394 diff --git a/datasets/检测仪/val/images/订单1807014_51_7111680.jpg b/datasets/检测仪/val/images/订单1807014_51_7111680.jpg new file mode 100644 index 0000000..3f45386 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807014_51_7111680.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3648ac313e8e0bd1c99b96c405fd011272f0fd64b920814349dbd9b17c36bc82 +size 135444 diff --git a/datasets/检测仪/val/images/订单1807017_51_7111731.jpg b/datasets/检测仪/val/images/订单1807017_51_7111731.jpg new file mode 100644 index 0000000..1dfaf82 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807017_51_7111731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cd708d521c8351c7ae708a45d01a5c9d3aa8f26dc02c78ba3502541e2e066b +size 126303 diff --git a/datasets/检测仪/val/images/订单1807020_51_7111739.jpg b/datasets/检测仪/val/images/订单1807020_51_7111739.jpg new file mode 100644 index 0000000..ab35448 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807020_51_7111739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b2d7edc4c386b5e6d58cff4a344cb430fab95cf1251c0231682bc039d897cd +size 104705 diff --git a/datasets/检测仪/val/images/订单1807021_51_7111752.jpg b/datasets/检测仪/val/images/订单1807021_51_7111752.jpg new file mode 100644 index 0000000..e892e26 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807021_51_7111752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25cee2b6517ac602d4bf344d4c67df66a0ed9cfa8ea01df34fac710a804dfde6 +size 44097 diff --git a/datasets/检测仪/val/images/订单1807024_51_7111799.jpg b/datasets/检测仪/val/images/订单1807024_51_7111799.jpg new file mode 100644 index 0000000..84b621b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807024_51_7111799.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166d63d825165c8b8bf5b5965c8fc37f971a730b6ca387a527ec0bbd1eb32332 +size 101195 diff --git a/datasets/检测仪/val/images/订单1807025_51_7111816.jpg b/datasets/检测仪/val/images/订单1807025_51_7111816.jpg new file mode 100644 index 0000000..8318abd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807025_51_7111816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbe396430c161560feac154d9aa35ea32ea201154d9e142b5c26f4598ca90cc +size 121411 diff --git a/datasets/检测仪/val/images/订单1807028_51_7111855.jpg b/datasets/检测仪/val/images/订单1807028_51_7111855.jpg new file mode 100644 index 0000000..818311c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807028_51_7111855.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d82a9cfb7c11fa58cd840219f2d36a865ff8a9196698c2b42eee124be142052 +size 156294 diff --git a/datasets/检测仪/val/images/订单1807033_51_7111848.jpg b/datasets/检测仪/val/images/订单1807033_51_7111848.jpg new file mode 100644 index 0000000..223a065 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807033_51_7111848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d07bcda40f9318701a9638ab5f829f7a04e813cac2da8a085e7a855c18bbf0 +size 536698 diff --git a/datasets/检测仪/val/images/订单1807034_51_7111852.jpg b/datasets/检测仪/val/images/订单1807034_51_7111852.jpg new file mode 100644 index 0000000..a101d89 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807034_51_7111852.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac0819fde86b2f77fe9de294ebe6f0a3452007c97b82be55055d739b611bba5 +size 362750 diff --git a/datasets/检测仪/val/images/订单1807036_51_7111866.jpg b/datasets/检测仪/val/images/订单1807036_51_7111866.jpg new file mode 100644 index 0000000..2c92bed --- /dev/null +++ b/datasets/检测仪/val/images/订单1807036_51_7111866.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196c1d8b24c7d5e99565b3b2ea8c9ebdb48b9804986478033a007b575ccd26f2 +size 154643 diff --git a/datasets/检测仪/val/images/订单1807039_51_7111877.jpg b/datasets/检测仪/val/images/订单1807039_51_7111877.jpg new file mode 100644 index 0000000..c87ec2b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807039_51_7111877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaa52dd230e4c7175d7779af4eca3e8ecc042df8f7b7ebaaafdd6208d6970bc +size 128454 diff --git a/datasets/检测仪/val/images/订单1807041_51_7111977.jpg b/datasets/检测仪/val/images/订单1807041_51_7111977.jpg new file mode 100644 index 0000000..2cca537 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807041_51_7111977.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b235afdeff1315f68c73f916a9073c9a3ab527894c218205fac922e9028a2 +size 129615 diff --git a/datasets/检测仪/val/images/订单1807042_51_7111966.jpg b/datasets/检测仪/val/images/订单1807042_51_7111966.jpg new file mode 100644 index 0000000..11a9e6d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807042_51_7111966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a002c11d6612f0ffce7cbcd206c5155b968bc66dbae3883ccbbde5b6c732ef06 +size 523652 diff --git a/datasets/检测仪/val/images/订单1807047_51_7112008.jpg b/datasets/检测仪/val/images/订单1807047_51_7112008.jpg new file mode 100644 index 0000000..470c2dc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807047_51_7112008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6722461529acf17fac6bf91d36bfbb6a72f4fe3b4163feed45f2032693e81e +size 113953 diff --git a/datasets/检测仪/val/images/订单1807051_51_7111954.jpg b/datasets/检测仪/val/images/订单1807051_51_7111954.jpg new file mode 100644 index 0000000..1e31823 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807051_51_7111954.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9733bf3f66899a8c5496bec33230774252c01a2250825cc772d1b156ba7fe3 +size 82898 diff --git a/datasets/检测仪/val/images/订单1807054_51_7112064.jpg b/datasets/检测仪/val/images/订单1807054_51_7112064.jpg new file mode 100644 index 0000000..bc40e71 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807054_51_7112064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb642e237379e3e2e117146892e027ea81428f9e21d1977c3b91d26906727ea +size 534696 diff --git a/datasets/检测仪/val/images/订单1807056_51_7112029.jpg b/datasets/检测仪/val/images/订单1807056_51_7112029.jpg new file mode 100644 index 0000000..fa65953 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807056_51_7112029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c08e65f5a0516cc4b279537d7888ec37cfef80ae6ad1db8ba3f414dc512ddd95 +size 130734 diff --git a/datasets/检测仪/val/images/订单1807061_51_7112116.jpg b/datasets/检测仪/val/images/订单1807061_51_7112116.jpg new file mode 100644 index 0000000..4f84ba1 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807061_51_7112116.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2397c9c59849f4bfe5d5c7f61b0ce20168ad580ca5bb84c30efd1ce6e4b48b +size 585015 diff --git a/datasets/检测仪/val/images/订单1807065_51_7112141.jpg b/datasets/检测仪/val/images/订单1807065_51_7112141.jpg new file mode 100644 index 0000000..ce0e537 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807065_51_7112141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314842b7cafefb111fa9d688562cad4f6567566ee5a6b087eb17948b261c82ba +size 133155 diff --git a/datasets/检测仪/val/images/订单1807066_51_7112143.jpg b/datasets/检测仪/val/images/订单1807066_51_7112143.jpg new file mode 100644 index 0000000..c714b44 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807066_51_7112143.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006141489aa58f5f65de1977d20f579466524c0cdad05385932bd386da4f725e +size 143663 diff --git a/datasets/检测仪/val/images/订单1807069_51_7112243.jpg b/datasets/检测仪/val/images/订单1807069_51_7112243.jpg new file mode 100644 index 0000000..7922f6b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807069_51_7112243.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c222880eb6947c5c699cd9b5b6dab5d7c9f9231065e1d4aa8ae56485339fa6 +size 448898 diff --git a/datasets/检测仪/val/images/订单1807070_51_7112196.jpg b/datasets/检测仪/val/images/订单1807070_51_7112196.jpg new file mode 100644 index 0000000..96d589a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807070_51_7112196.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b372c6cdd26e395de4495adcb6aff6c4636ee71a90685bc06c87ce805a61cb +size 111302 diff --git a/datasets/检测仪/val/images/订单1807073_51_7112179.jpg b/datasets/检测仪/val/images/订单1807073_51_7112179.jpg new file mode 100644 index 0000000..15206c4 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807073_51_7112179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8929f393d11d21a6b0c155f9e5d824813c23daa78ed8a19890439d9b2785ffbd +size 120097 diff --git a/datasets/检测仪/val/images/订单1807074_51_7113123.jpg b/datasets/检测仪/val/images/订单1807074_51_7113123.jpg new file mode 100644 index 0000000..9ea2f3d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807074_51_7113123.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d6be8dcbbc793ad40a472df229bd017a419f9219d243088e690392af50f7e5 +size 145111 diff --git a/datasets/检测仪/val/images/订单1807076_51_7112165.jpg b/datasets/检测仪/val/images/订单1807076_51_7112165.jpg new file mode 100644 index 0000000..9182010 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807076_51_7112165.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c342388b90fb721fd34fa361e979f0f1849e678a70c9e58421c2d7eadb40e4 +size 158618 diff --git a/datasets/检测仪/val/images/订单1807077_51_7112279.jpg b/datasets/检测仪/val/images/订单1807077_51_7112279.jpg new file mode 100644 index 0000000..e0984aa --- /dev/null +++ b/datasets/检测仪/val/images/订单1807077_51_7112279.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269dcdf679e2dddeb73d8ccf8ad08d1b7180802cdc3a0a9cb724a1bdf7aa8c49 +size 431839 diff --git a/datasets/检测仪/val/images/订单1807079_51_7112332.jpg b/datasets/检测仪/val/images/订单1807079_51_7112332.jpg new file mode 100644 index 0000000..a1d453b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807079_51_7112332.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49533a0e5d716c2471d952a9fbfa47d720044d6cedfdcc76d163ac2a6b084ed9 +size 368198 diff --git a/datasets/检测仪/val/images/订单1807081_51_7112220.jpg b/datasets/检测仪/val/images/订单1807081_51_7112220.jpg new file mode 100644 index 0000000..bcc41b7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807081_51_7112220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66837e815916019ce677facfe1cb374c4e2a3fab08290f834382ae77dd3228f1 +size 163201 diff --git a/datasets/检测仪/val/images/订单1807082_51_7112235.jpg b/datasets/检测仪/val/images/订单1807082_51_7112235.jpg new file mode 100644 index 0000000..2fff0af --- /dev/null +++ b/datasets/检测仪/val/images/订单1807082_51_7112235.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db45febf012bd434cc9955001c65f19da116fd1faa2b730bb3b9900f05994ebc +size 120036 diff --git a/datasets/检测仪/val/images/订单1807088_51_7112349.jpg b/datasets/检测仪/val/images/订单1807088_51_7112349.jpg new file mode 100644 index 0000000..8e1b63f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807088_51_7112349.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6ec14b12ef37b1a7b29085891d646c9fa8260b9e87f51431886a4f4ef606a6 +size 100953 diff --git a/datasets/检测仪/val/images/订单1807094_51_7112419.jpg b/datasets/检测仪/val/images/订单1807094_51_7112419.jpg new file mode 100644 index 0000000..3371181 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807094_51_7112419.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451db065edd5afbd0c208f25f2c56344a0b83e819b638016e23e086fd34cf0c7 +size 382171 diff --git a/datasets/检测仪/val/images/订单1807095_51_7112473.jpg b/datasets/检测仪/val/images/订单1807095_51_7112473.jpg new file mode 100644 index 0000000..119bcb7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807095_51_7112473.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b23ce9baf39c7f996a07b889fb438338f5689b78f501ffba1067e53674b1f8 +size 126941 diff --git a/datasets/检测仪/val/images/订单1807097_51_7112451.jpg b/datasets/检测仪/val/images/订单1807097_51_7112451.jpg new file mode 100644 index 0000000..15fc93b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807097_51_7112451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f82d86430b861824a8c8f0c6f31f262e882f75f396135ab557dea048788f240 +size 188040 diff --git a/datasets/检测仪/val/images/订单1807107_51_7112611.jpg b/datasets/检测仪/val/images/订单1807107_51_7112611.jpg new file mode 100644 index 0000000..638387a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807107_51_7112611.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5896e9608335ee77ccc666dd21acb31d992c74faf84fc4679dc883117361fb8 +size 125874 diff --git a/datasets/检测仪/val/images/订单1807111_51_7112561.jpg b/datasets/检测仪/val/images/订单1807111_51_7112561.jpg new file mode 100644 index 0000000..0dc7f63 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807111_51_7112561.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3912b77dc051105e4386a32fcb0e0df3628d1677887c13c7e7772e63770d6d1 +size 383083 diff --git a/datasets/检测仪/val/images/订单1807117_51_7112521.jpg b/datasets/检测仪/val/images/订单1807117_51_7112521.jpg new file mode 100644 index 0000000..1d8f323 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807117_51_7112521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c1891178494b38ecd5354be87436718d8e6744b3faf45539a3feec9702aa34 +size 144803 diff --git a/datasets/检测仪/val/images/订单1807118_51_7112530.jpg b/datasets/检测仪/val/images/订单1807118_51_7112530.jpg new file mode 100644 index 0000000..37d4581 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807118_51_7112530.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac62435df796289ac62a2ea13eb41906e524d19b3150d8c50924ce40ae09dd61 +size 156242 diff --git a/datasets/检测仪/val/images/订单1807121_51_7112649.jpg b/datasets/检测仪/val/images/订单1807121_51_7112649.jpg new file mode 100644 index 0000000..41aec75 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807121_51_7112649.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0572fdc0b8e233c76676ba3511818ed4db449f7b21e65f496916540c233fdb33 +size 123392 diff --git a/datasets/检测仪/val/images/订单1807123_51_7112602.jpg b/datasets/检测仪/val/images/订单1807123_51_7112602.jpg new file mode 100644 index 0000000..49ff4b3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807123_51_7112602.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69cffaa1eb6097d4ae39a9660c154ce08f11c903a5b8482151fbddcae99cefb7 +size 126671 diff --git a/datasets/检测仪/val/images/订单1807124_51_7112644.jpg b/datasets/检测仪/val/images/订单1807124_51_7112644.jpg new file mode 100644 index 0000000..4fdbbad --- /dev/null +++ b/datasets/检测仪/val/images/订单1807124_51_7112644.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29c3ef95da900cc94e64b65223af694ebdc95773f1e300359588c42a7d29305 +size 163582 diff --git a/datasets/检测仪/val/images/订单1807127_51_7112692.jpg b/datasets/检测仪/val/images/订单1807127_51_7112692.jpg new file mode 100644 index 0000000..390165f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807127_51_7112692.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b04806536225f97d53e6ab746ae0bd80e4a40b46b2fabee1a746f3076a42d5b +size 133726 diff --git a/datasets/检测仪/val/images/订单1807130_51_7112696.jpg b/datasets/检测仪/val/images/订单1807130_51_7112696.jpg new file mode 100644 index 0000000..575464b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807130_51_7112696.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17627be4691a65ee6e0bb7a5e475465d817571c170c38b279384bf1e0ce585e8 +size 85297 diff --git a/datasets/检测仪/val/images/订单1807131_51_7112684.jpg b/datasets/检测仪/val/images/订单1807131_51_7112684.jpg new file mode 100644 index 0000000..5f8451c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807131_51_7112684.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f545af2ce1c25afc5b45abd96103f1a2b38d692c054afb950e5d17534d87a7 +size 685177 diff --git a/datasets/检测仪/val/images/订单1807134_51_7112717.jpg b/datasets/检测仪/val/images/订单1807134_51_7112717.jpg new file mode 100644 index 0000000..4708060 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807134_51_7112717.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975500856b93b75f3303971192b41631735f3bb5fe078b34bc646c87db724f3b +size 147737 diff --git a/datasets/检测仪/val/images/订单1807139_51_7112752.jpg b/datasets/检测仪/val/images/订单1807139_51_7112752.jpg new file mode 100644 index 0000000..a287555 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807139_51_7112752.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827b3c01e34891dd5ec9dbdaf2bca2970ac3b1325627d79d10da2ed7802f182a +size 163974 diff --git a/datasets/检测仪/val/images/订单1807140_51_7112755.jpg b/datasets/检测仪/val/images/订单1807140_51_7112755.jpg new file mode 100644 index 0000000..728005e --- /dev/null +++ b/datasets/检测仪/val/images/订单1807140_51_7112755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d446f8fdf3d8dd537653cb751ffcbd6c1ef4eb0dde4567cb8bb18767964dd2b9 +size 159404 diff --git a/datasets/检测仪/val/images/订单1807141_51_7112783.jpg b/datasets/检测仪/val/images/订单1807141_51_7112783.jpg new file mode 100644 index 0000000..84d0205 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807141_51_7112783.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc238d1cbe8943c77f3e1ceb38d84be98a32abb5af2568af04c7209e28c4d7 +size 161357 diff --git a/datasets/检测仪/val/images/订单1807142_51_7112827.jpg b/datasets/检测仪/val/images/订单1807142_51_7112827.jpg new file mode 100644 index 0000000..b7f67c9 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807142_51_7112827.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a0e27d0b152f3f7b46d76621da0658f8b0d08de6f40993f029b872ed7b7c71 +size 106942 diff --git a/datasets/检测仪/val/images/订单1807149_51_7112991.jpg b/datasets/检测仪/val/images/订单1807149_51_7112991.jpg new file mode 100644 index 0000000..5ad75bc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807149_51_7112991.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2facdd9276bfacfdf4c04f97fcef408ed4024eeb8c8c91c40c72d36b112af +size 362841 diff --git a/datasets/检测仪/val/images/订单1807152_51_7112839.jpg b/datasets/检测仪/val/images/订单1807152_51_7112839.jpg new file mode 100644 index 0000000..7986837 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807152_51_7112839.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb7328ca0437314155661b34177dad3b3888cb2b91b4260ebe43cca9a90b3b7 +size 165177 diff --git a/datasets/检测仪/val/images/订单1807154_51_7112857.jpg b/datasets/检测仪/val/images/订单1807154_51_7112857.jpg new file mode 100644 index 0000000..4933f73 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807154_51_7112857.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4962d6c3def8d73d6e44c8ec2423f770be1ccb214ae6b8c850009823cfd090f +size 487452 diff --git a/datasets/检测仪/val/images/订单1807155_51_7112959.jpg b/datasets/检测仪/val/images/订单1807155_51_7112959.jpg new file mode 100644 index 0000000..bc658b7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807155_51_7112959.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348bb03849da08ded1313753cdb89b229aff384e4c475b651060b1376468dc2b +size 175213 diff --git a/datasets/检测仪/val/images/订单1807157_51_7112890.jpg b/datasets/检测仪/val/images/订单1807157_51_7112890.jpg new file mode 100644 index 0000000..c951e5d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807157_51_7112890.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83eabd142e85ed26d995d662c640ab7d3a8919a8d75ecbdcad598ea3506fa3 +size 569155 diff --git a/datasets/检测仪/val/images/订单1807159_51_7113023.jpg b/datasets/检测仪/val/images/订单1807159_51_7113023.jpg new file mode 100644 index 0000000..2e2effa --- /dev/null +++ b/datasets/检测仪/val/images/订单1807159_51_7113023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be6a23c90ce2f6e97c1c802d3815e2b03fea1241f2ef7339f367f255db398e4 +size 120666 diff --git a/datasets/检测仪/val/images/订单1807161_51_7113056.jpg b/datasets/检测仪/val/images/订单1807161_51_7113056.jpg new file mode 100644 index 0000000..9997376 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807161_51_7113056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93075d35e3c46035c85968a48d55c9cd6605f96ef4c3623d5ece68eaccceaed5 +size 126893 diff --git a/datasets/检测仪/val/images/订单1807164_51_7113127.jpg b/datasets/检测仪/val/images/订单1807164_51_7113127.jpg new file mode 100644 index 0000000..121a4bc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807164_51_7113127.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca30e81adf268593a14344ff7cadb9b3888fec7df22129350731addff4debec +size 115446 diff --git a/datasets/检测仪/val/images/订单1807165_51_7113005.jpg b/datasets/检测仪/val/images/订单1807165_51_7113005.jpg new file mode 100644 index 0000000..bf5996c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807165_51_7113005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d452cc97f91404e7db49ac89b709c3bf902e5cfb30bfdba743a87d70edb884 +size 117323 diff --git a/datasets/检测仪/val/images/订单1807166_51_7112975.jpg b/datasets/检测仪/val/images/订单1807166_51_7112975.jpg new file mode 100644 index 0000000..93cb918 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807166_51_7112975.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d90566c7e9d798de4328d369c9de80b8a9d561cf7950986585026c573527bea +size 150485 diff --git a/datasets/检测仪/val/images/订单1807169_51_7113045.jpg b/datasets/检测仪/val/images/订单1807169_51_7113045.jpg new file mode 100644 index 0000000..6037074 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807169_51_7113045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ae7abf28fd34dd8878ec79366ad604219dfb1df86ef21c8d31660949f4a613 +size 124878 diff --git a/datasets/检测仪/val/images/订单1807181_51_7113193.jpg b/datasets/检测仪/val/images/订单1807181_51_7113193.jpg new file mode 100644 index 0000000..81ad425 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807181_51_7113193.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c6d644d9af2a8d924c107e4d1dbc1c40303aad0951cb60117d60b733f42ac9 +size 485514 diff --git a/datasets/检测仪/val/images/订单1807182_51_7113177.jpg b/datasets/检测仪/val/images/订单1807182_51_7113177.jpg new file mode 100644 index 0000000..c9d2820 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807182_51_7113177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35e0d6cef56d04714ac0aabbc58545f75d818077be9ea84386959b5a15ed755 +size 267530 diff --git a/datasets/检测仪/val/images/订单1807183_51_7113142.jpg b/datasets/检测仪/val/images/订单1807183_51_7113142.jpg new file mode 100644 index 0000000..27da92f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807183_51_7113142.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5778ee71d9188658db058a42c8e1230af05c32bc2c26a49fa74b626e89da1f65 +size 107334 diff --git a/datasets/检测仪/val/images/订单1807184_51_7113191.jpg b/datasets/检测仪/val/images/订单1807184_51_7113191.jpg new file mode 100644 index 0000000..7aad9f3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807184_51_7113191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12121725cbc68dc50204f13999ca733f8b0aebc2c77064691b934d58a636bdf4 +size 140567 diff --git a/datasets/检测仪/val/images/订单1807185_51_7113220.jpg b/datasets/检测仪/val/images/订单1807185_51_7113220.jpg new file mode 100644 index 0000000..40c1b5c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807185_51_7113220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d715223ce16e7b13ddd842ca5a8c27459257e838c1c6e1610144b613a869329b +size 111093 diff --git a/datasets/检测仪/val/images/订单1807189_51_7113407.jpg b/datasets/检测仪/val/images/订单1807189_51_7113407.jpg new file mode 100644 index 0000000..ed9a81f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807189_51_7113407.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62df1a7f11744b1c7e9cf65bcd15eb4f05f0a59de461e4554d4d6136a8eae052 +size 122666 diff --git a/datasets/检测仪/val/images/订单1807191_51_7113329.jpg b/datasets/检测仪/val/images/订单1807191_51_7113329.jpg new file mode 100644 index 0000000..e925680 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807191_51_7113329.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4668cf26d22748b38ffc9d15c5ed975ab5039933cb5fdc96abaad686efca4bf8 +size 299248 diff --git a/datasets/检测仪/val/images/订单1807192_51_7113450.jpg b/datasets/检测仪/val/images/订单1807192_51_7113450.jpg new file mode 100644 index 0000000..72b7ebc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807192_51_7113450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc66e875c80f3c2620d84b66ab2de0c29996abc74c6e99ee32c27a29ff3dfdd +size 117340 diff --git a/datasets/检测仪/val/images/订单1807197_51_7113341.jpg b/datasets/检测仪/val/images/订单1807197_51_7113341.jpg new file mode 100644 index 0000000..3c94e8f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807197_51_7113341.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fe7a70f186e5fc5fad145990d555334bd5758178dae03c38a4becf318ae4fb +size 125346 diff --git a/datasets/检测仪/val/images/订单1807199_51_7113385.jpg b/datasets/检测仪/val/images/订单1807199_51_7113385.jpg new file mode 100644 index 0000000..b62b60e --- /dev/null +++ b/datasets/检测仪/val/images/订单1807199_51_7113385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d348c96721fdf8b34f9c67ca172efe37619a95571ad3f671c327b243ef42e0b +size 121269 diff --git a/datasets/检测仪/val/images/订单1807201_51_7113453.jpg b/datasets/检测仪/val/images/订单1807201_51_7113453.jpg new file mode 100644 index 0000000..450b8b8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807201_51_7113453.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa14cee552ed1fa01d167dbf03821cfbd984f38b0ec56a7471fe94dd33e4aebc +size 135460 diff --git a/datasets/检测仪/val/images/订单1807202_51_7113452.jpg b/datasets/检测仪/val/images/订单1807202_51_7113452.jpg new file mode 100644 index 0000000..9090a02 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807202_51_7113452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfb6250d4775c2eaada362814e37ff74810945631a76ef048326da8b2f769b3 +size 581041 diff --git a/datasets/检测仪/val/images/订单1807203_51_7113404.jpg b/datasets/检测仪/val/images/订单1807203_51_7113404.jpg new file mode 100644 index 0000000..3324eca --- /dev/null +++ b/datasets/检测仪/val/images/订单1807203_51_7113404.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa13f21e9161c935bce304b6afc4360caa765b214819cc100cf5a38b44df28c3 +size 173138 diff --git a/datasets/检测仪/val/images/订单1807208_51_7113555.jpg b/datasets/检测仪/val/images/订单1807208_51_7113555.jpg new file mode 100644 index 0000000..2dbd86b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807208_51_7113555.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f9f9ff0b011f994a49e639583e36dae87b44c8bb2815a6d3172098d0ac2bbf +size 162198 diff --git a/datasets/检测仪/val/images/订单1807211_51_7113519.jpg b/datasets/检测仪/val/images/订单1807211_51_7113519.jpg new file mode 100644 index 0000000..f351d01 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807211_51_7113519.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50dafb520bf241628d716aebf5817bcab092e5b7aa46a1b7b743e438325dc2d0 +size 149983 diff --git a/datasets/检测仪/val/images/订单1807217_51_7113518.jpg b/datasets/检测仪/val/images/订单1807217_51_7113518.jpg new file mode 100644 index 0000000..274992f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807217_51_7113518.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aea2f4a1d87463fc546f8624b572c605f9dcf84f34481eb294668d690d0ab67 +size 121991 diff --git a/datasets/检测仪/val/images/订单1807219_51_7113577.jpg b/datasets/检测仪/val/images/订单1807219_51_7113577.jpg new file mode 100644 index 0000000..f730efd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807219_51_7113577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97e46befb3e31a9022563a15b4661269c500c331c59a680df3adbedd2c6fee27 +size 589225 diff --git a/datasets/检测仪/val/images/订单1807221_51_7113552.jpg b/datasets/检测仪/val/images/订单1807221_51_7113552.jpg new file mode 100644 index 0000000..3e42ba0 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807221_51_7113552.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760cb031ffca985f3ef4abd65b3327d510bdb887b1d109f752339bd5b441e31d +size 147141 diff --git a/datasets/检测仪/val/images/订单1807224_51_7113585.jpg b/datasets/检测仪/val/images/订单1807224_51_7113585.jpg new file mode 100644 index 0000000..8682dd2 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807224_51_7113585.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3cb08131438ee888f3b430581249724705cfc09c968172c6033b351f413e52 +size 127922 diff --git a/datasets/检测仪/val/images/订单1807226_51_7113749.jpg b/datasets/检测仪/val/images/订单1807226_51_7113749.jpg new file mode 100644 index 0000000..0b20e80 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807226_51_7113749.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15952185af2091ad457451a78b10f5f562d2a7e1b6edb8c3767d589198de951d +size 135038 diff --git a/datasets/检测仪/val/images/订单1807230_51_7113599.jpg b/datasets/检测仪/val/images/订单1807230_51_7113599.jpg new file mode 100644 index 0000000..12a9b2f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807230_51_7113599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb4fa9b73cdbc86f78505335c3ea3037c488ca84dc10cac84fc02560955c56b +size 743634 diff --git a/datasets/检测仪/val/images/订单1807231_51_7113614.jpg b/datasets/检测仪/val/images/订单1807231_51_7113614.jpg new file mode 100644 index 0000000..1d65383 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807231_51_7113614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ed8769e870f93a23a90ec313a0fa1b34054540650b271175493f16734c225c +size 354555 diff --git a/datasets/检测仪/val/images/订单1807232_51_7113683.jpg b/datasets/检测仪/val/images/订单1807232_51_7113683.jpg new file mode 100644 index 0000000..d46f0e6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807232_51_7113683.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47050d00c585bac6c8684de1026bcf1d60b9d18c8c6c022ba424948a9dc8a18f +size 129450 diff --git a/datasets/检测仪/val/images/订单1807236_51_7113782.jpg b/datasets/检测仪/val/images/订单1807236_51_7113782.jpg new file mode 100644 index 0000000..d6f4925 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807236_51_7113782.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85417527d18ca26bbb6c097d614ffd90111dc06a9ce94404a905dfedb755728e +size 124809 diff --git a/datasets/检测仪/val/images/订单1807237_51_7113661.jpg b/datasets/检测仪/val/images/订单1807237_51_7113661.jpg new file mode 100644 index 0000000..dcf7a6e --- /dev/null +++ b/datasets/检测仪/val/images/订单1807237_51_7113661.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4503ecf99f84652af2353c7402f25314c6414fd69b13ba9f83b6b8f7de317795 +size 144840 diff --git a/datasets/检测仪/val/images/订单1807238_51_7113657.jpg b/datasets/检测仪/val/images/订单1807238_51_7113657.jpg new file mode 100644 index 0000000..0998900 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807238_51_7113657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c10e32783c735a6283ad7f306b81711e5fb396b4edc7cae033c5c3ebff84ae +size 177896 diff --git a/datasets/检测仪/val/images/订单1807240_51_7113721.jpg b/datasets/检测仪/val/images/订单1807240_51_7113721.jpg new file mode 100644 index 0000000..01d7edd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807240_51_7113721.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e7e4de235759cc66d869335349e7589cadf011e00f3a73247e04ad86be3cc8 +size 184585 diff --git a/datasets/检测仪/val/images/订单1807242_51_7113761.jpg b/datasets/检测仪/val/images/订单1807242_51_7113761.jpg new file mode 100644 index 0000000..4b180bc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807242_51_7113761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36312bf3059353121b8d4e7b9a220b37d7a3288dd71183cc79cd4bf8477a6a01 +size 287671 diff --git a/datasets/检测仪/val/images/订单1807245_51_7113816.jpg b/datasets/检测仪/val/images/订单1807245_51_7113816.jpg new file mode 100644 index 0000000..4480e58 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807245_51_7113816.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36bc6d749203fa304f1c827e3d3776f87c92b90e51b0bc8150047efce2999cf +size 104980 diff --git a/datasets/检测仪/val/images/订单1807246_51_7113791.jpg b/datasets/检测仪/val/images/订单1807246_51_7113791.jpg new file mode 100644 index 0000000..a2ba8b5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807246_51_7113791.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602c80a4b37ba2414187b7171d08d32cfacddddf0c4be1e026e4669c2a738b2 +size 179073 diff --git a/datasets/检测仪/val/images/订单1807248_51_7113945.jpg b/datasets/检测仪/val/images/订单1807248_51_7113945.jpg new file mode 100644 index 0000000..8301582 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807248_51_7113945.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bd3d36ba6045d2c66e829c654f13d525d4f828d01490dd6c3eca76262d0dab +size 129982 diff --git a/datasets/检测仪/val/images/订单1807251_51_7113927.jpg b/datasets/检测仪/val/images/订单1807251_51_7113927.jpg new file mode 100644 index 0000000..dedf9d8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807251_51_7113927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd3e9bdc0674b6992fd80f8f529d657aa310338ec8ecfee7078d129a3a0772d +size 143812 diff --git a/datasets/检测仪/val/images/订单1807252_51_7113872.jpg b/datasets/检测仪/val/images/订单1807252_51_7113872.jpg new file mode 100644 index 0000000..ac86ea5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807252_51_7113872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4471b5e65ed3d2d0bf8ee85d68a9b20a24ddc5f8be6e8c3c08127db14c446b +size 102385 diff --git a/datasets/检测仪/val/images/订单1807253_51_7113859.jpg b/datasets/检测仪/val/images/订单1807253_51_7113859.jpg new file mode 100644 index 0000000..6f76c6b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807253_51_7113859.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9d4af2264eb8363137b6ea12deddd5448b9bd07defcc9c3b4cd5bc9aa73aad +size 116338 diff --git a/datasets/检测仪/val/images/订单1807255_51_7113891.jpg b/datasets/检测仪/val/images/订单1807255_51_7113891.jpg new file mode 100644 index 0000000..971ab99 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807255_51_7113891.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed867e9108153b5c5f60392341618bad014548c42fce2dc6f0745479b02c2454 +size 134775 diff --git a/datasets/检测仪/val/images/订单1807259_51_7113928.jpg b/datasets/检测仪/val/images/订单1807259_51_7113928.jpg new file mode 100644 index 0000000..72f75ee --- /dev/null +++ b/datasets/检测仪/val/images/订单1807259_51_7113928.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737ea4ee11298298ed30fa58026b23b940bf01420aa384848d6872d2ec87c0dd +size 115923 diff --git a/datasets/检测仪/val/images/订单1807260_51_7114022.jpg b/datasets/检测仪/val/images/订单1807260_51_7114022.jpg new file mode 100644 index 0000000..b5c9a91 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807260_51_7114022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929b495dbad8a8b64f0649a0df24dd99842a8d1c81fc7d00b2fb7f35a1d6581f +size 603980 diff --git a/datasets/检测仪/val/images/订单1807262_51_7113998.jpg b/datasets/检测仪/val/images/订单1807262_51_7113998.jpg new file mode 100644 index 0000000..b2fb692 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807262_51_7113998.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d10167dbea1a22fb7d442dd8207268eb00eabfb1885fd758023ba2571e925f7 +size 123665 diff --git a/datasets/检测仪/val/images/订单1807265_51_7114041.jpg b/datasets/检测仪/val/images/订单1807265_51_7114041.jpg new file mode 100644 index 0000000..77c51a8 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807265_51_7114041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce6fbf35c5a8eaf8408fc6158ff6143c17b6463c387df87a2463fba161245bc +size 288727 diff --git a/datasets/检测仪/val/images/订单1807281_51_7114155.jpg b/datasets/检测仪/val/images/订单1807281_51_7114155.jpg new file mode 100644 index 0000000..ca3c39d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807281_51_7114155.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc3b973266ec036bdb6e2f2eb1bbf6caf7f942180cda05ed889fa057d7d015c +size 272060 diff --git a/datasets/检测仪/val/images/订单1807284_51_7114318.jpg b/datasets/检测仪/val/images/订单1807284_51_7114318.jpg new file mode 100644 index 0000000..3607b2f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807284_51_7114318.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd1321339da35c13e18dedd509108094d644d245f1c69731f46d4d1c44a9c7d +size 475556 diff --git a/datasets/检测仪/val/images/订单1807286_51_7114197.jpg b/datasets/检测仪/val/images/订单1807286_51_7114197.jpg new file mode 100644 index 0000000..e106b49 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807286_51_7114197.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549a997bd8b83116b671ac7c5df0e0023348812452d70e7d9002223dfd584a25 +size 116947 diff --git a/datasets/检测仪/val/images/订单1807288_51_7114663.jpg b/datasets/检测仪/val/images/订单1807288_51_7114663.jpg new file mode 100644 index 0000000..0e90bbd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807288_51_7114663.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6336bd74f251ae118bb68143956f4fcdd984f6cd1a73a46abec1907d314a4264 +size 130055 diff --git a/datasets/检测仪/val/images/订单1807292_51_7114224.jpg b/datasets/检测仪/val/images/订单1807292_51_7114224.jpg new file mode 100644 index 0000000..caf3be1 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807292_51_7114224.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fcc17e26bb60433f11ca4f023d0a03f2f254f870e006e916ac93d8c5ebf7a57 +size 128365 diff --git a/datasets/检测仪/val/images/订单1807296_51_7114313.jpg b/datasets/检测仪/val/images/订单1807296_51_7114313.jpg new file mode 100644 index 0000000..559bdba --- /dev/null +++ b/datasets/检测仪/val/images/订单1807296_51_7114313.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08958a05e45f82d93b8c02e264e64f07532fa2c6f538ffd651c01452727ee409 +size 96639 diff --git a/datasets/检测仪/val/images/订单1807299_51_7114302.jpg b/datasets/检测仪/val/images/订单1807299_51_7114302.jpg new file mode 100644 index 0000000..f91b811 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807299_51_7114302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd91913d8184823bcb5d4bd0ea039030e01021bd95adb7cb9dfeafb1f17a81ad +size 314524 diff --git a/datasets/检测仪/val/images/订单1807304_51_7114340.jpg b/datasets/检测仪/val/images/订单1807304_51_7114340.jpg new file mode 100644 index 0000000..ba13812 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807304_51_7114340.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2cb2d221fa9bf82206c0157edfe9f255f63eba83a0f1a218714328b589b287a +size 118262 diff --git a/datasets/检测仪/val/images/订单1807305_51_7114437.jpg b/datasets/检测仪/val/images/订单1807305_51_7114437.jpg new file mode 100644 index 0000000..3ea86cc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807305_51_7114437.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dae2c7df05e516a8be37d2e222e3f47a79e8b7b70d6fe8184c3c85e4861ecca +size 198372 diff --git a/datasets/检测仪/val/images/订单1807307_51_7114368.jpg b/datasets/检测仪/val/images/订单1807307_51_7114368.jpg new file mode 100644 index 0000000..cda4613 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807307_51_7114368.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9dac13e0e8b8b0a268961b1469262d1e69deac374b2619fd0a4aa734934f06a +size 278573 diff --git a/datasets/检测仪/val/images/订单1807311_51_7114483.jpg b/datasets/检测仪/val/images/订单1807311_51_7114483.jpg new file mode 100644 index 0000000..25dd505 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807311_51_7114483.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9935ba78d12b89edcb3c45e38144509368e15e5460d7ec8fe12a4672ed8a084 +size 578965 diff --git a/datasets/检测仪/val/images/订单1807312_51_7114460.jpg b/datasets/检测仪/val/images/订单1807312_51_7114460.jpg new file mode 100644 index 0000000..773c063 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807312_51_7114460.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bedb0f060e4b50b6bb2b27f4411a7096b5c1eed0a9abd8875985258e4fc2b1c +size 147442 diff --git a/datasets/检测仪/val/images/订单1807317_51_7114433.jpg b/datasets/检测仪/val/images/订单1807317_51_7114433.jpg new file mode 100644 index 0000000..9c27b8d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807317_51_7114433.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a67ec4541ea18c5b8e88045fa3981c7e4b750eaf2a96a8ede03d8a2e2a81ad +size 124372 diff --git a/datasets/检测仪/val/images/订单1807319_51_7114509.jpg b/datasets/检测仪/val/images/订单1807319_51_7114509.jpg new file mode 100644 index 0000000..4c39eae --- /dev/null +++ b/datasets/检测仪/val/images/订单1807319_51_7114509.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5923884ae56879fda53e6bce28306a68d8b1bf82ebc9208c508e82bded87f6aa +size 163086 diff --git a/datasets/检测仪/val/images/订单1807320_51_7114495.jpg b/datasets/检测仪/val/images/订单1807320_51_7114495.jpg new file mode 100644 index 0000000..c76a22a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807320_51_7114495.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8629e22ee745a909896657bf59f6e9871e7a1911787224cb4d4eb8b9ee87d7d7 +size 301233 diff --git a/datasets/检测仪/val/images/订单1807322_51_7114586.jpg b/datasets/检测仪/val/images/订单1807322_51_7114586.jpg new file mode 100644 index 0000000..9df42c6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807322_51_7114586.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7739531212f1a3d7c1553a03537f9ba51ee8ccb3c2175d1b0615634ff18417ac +size 128063 diff --git a/datasets/检测仪/val/images/订单1807323_51_7114599.jpg b/datasets/检测仪/val/images/订单1807323_51_7114599.jpg new file mode 100644 index 0000000..362b9f3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807323_51_7114599.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6056cbc544dd7a6d2f999d4e5f5422efa9ae47e096b25e0e02e5af4b2faeaac +size 128220 diff --git a/datasets/检测仪/val/images/订单1807326_51_7114625.jpg b/datasets/检测仪/val/images/订单1807326_51_7114625.jpg new file mode 100644 index 0000000..f6f2060 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807326_51_7114625.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4863af0a770cce6c49e2b58cbc725db9bc6dcd377b1af07c9c0d47416e151882 +size 70240 diff --git a/datasets/检测仪/val/images/订单1807329_51_7114657.jpg b/datasets/检测仪/val/images/订单1807329_51_7114657.jpg new file mode 100644 index 0000000..cbee764 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807329_51_7114657.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b76b87ba01662e004b67a79e68e596e75d7924f1044218bb4b74f03106966cb +size 154200 diff --git a/datasets/检测仪/val/images/订单1807331_51_7114848.jpg b/datasets/检测仪/val/images/订单1807331_51_7114848.jpg new file mode 100644 index 0000000..7cf38bd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807331_51_7114848.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed77bf142cb82c6a32917eab7b1d2d471f6be5ae1833313f08fa344df025ed0 +size 162127 diff --git a/datasets/检测仪/val/images/订单1807337_51_7114881.jpg b/datasets/检测仪/val/images/订单1807337_51_7114881.jpg new file mode 100644 index 0000000..71ce57f --- /dev/null +++ b/datasets/检测仪/val/images/订单1807337_51_7114881.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8021a79cce68d6b07edda5e0a879a59934deaf0e3fd284bf503c9fc2ca255c +size 134894 diff --git a/datasets/检测仪/val/images/订单1807342_51_7114751.jpg b/datasets/检测仪/val/images/订单1807342_51_7114751.jpg new file mode 100644 index 0000000..79e305d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807342_51_7114751.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb82fec98df06604e0bc31076b1175c3ed5a7604dd07a29f37527a425b36d6e2 +size 87946 diff --git a/datasets/检测仪/val/images/订单1807343_51_7114747.jpg b/datasets/检测仪/val/images/订单1807343_51_7114747.jpg new file mode 100644 index 0000000..7f23420 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807343_51_7114747.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd11a9a83f637cfa6abfee1ad9abdd6bc79a24d4a09b861e31c458deaeb63eb +size 97844 diff --git a/datasets/检测仪/val/images/订单1807349_51_7114675.jpg b/datasets/检测仪/val/images/订单1807349_51_7114675.jpg new file mode 100644 index 0000000..1203f1d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807349_51_7114675.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be927b044ce99ceddb104670cb920dc3904a35c3b6ec65b4f8a49c3d850abdc +size 157485 diff --git a/datasets/检测仪/val/images/订单1807350_51_7114761.jpg b/datasets/检测仪/val/images/订单1807350_51_7114761.jpg new file mode 100644 index 0000000..7d6e0ae --- /dev/null +++ b/datasets/检测仪/val/images/订单1807350_51_7114761.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679849d47e256678e5ca30a605b50c334cde10f8902220b4bf6640f1bce892c1 +size 138665 diff --git a/datasets/检测仪/val/images/订单1807354_51_7114805.jpg b/datasets/检测仪/val/images/订单1807354_51_7114805.jpg new file mode 100644 index 0000000..fec2fcd --- /dev/null +++ b/datasets/检测仪/val/images/订单1807354_51_7114805.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c00328bdda50bb7f9ebd1c8bb4fb1342f6f9d266272190fb53d6a26f6121a0e +size 125391 diff --git a/datasets/检测仪/val/images/订单1807356_51_7114884.jpg b/datasets/检测仪/val/images/订单1807356_51_7114884.jpg new file mode 100644 index 0000000..dbffdd7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807356_51_7114884.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9723d2d83171130b4a68b221a0b46ba97b7480921b4b8e9cab00a0a543686a2c +size 111916 diff --git a/datasets/检测仪/val/images/订单1807358_51_7114911.jpg b/datasets/检测仪/val/images/订单1807358_51_7114911.jpg new file mode 100644 index 0000000..08a712a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807358_51_7114911.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c054273bc5958aa240792186c1e05b09cc39e881f64f35ab2913a2c9762a14c +size 150127 diff --git a/datasets/检测仪/val/images/订单1807365_51_7114899.jpg b/datasets/检测仪/val/images/订单1807365_51_7114899.jpg new file mode 100644 index 0000000..47b1780 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807365_51_7114899.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530f6aac6a9d1416ec43a7d7feb6634261722655695df0d8bf3986098ac3c766 +size 106982 diff --git a/datasets/检测仪/val/images/订单1807366_51_7114944.jpg b/datasets/检测仪/val/images/订单1807366_51_7114944.jpg new file mode 100644 index 0000000..3ce32c5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807366_51_7114944.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92735bfce701afe799a12b24e3e5b984e68c7c16acf8e6bf0a21fd6834e49b2d +size 107342 diff --git a/datasets/检测仪/val/images/订单1807368_51_7115023.jpg b/datasets/检测仪/val/images/订单1807368_51_7115023.jpg new file mode 100644 index 0000000..f16670c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807368_51_7115023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8791bfe50afc5726f0d75bc3439a33d2c2a9b833a7692be6b3af359fbeeda230 +size 53746 diff --git a/datasets/检测仪/val/images/订单1807371_51_7115058.jpg b/datasets/检测仪/val/images/订单1807371_51_7115058.jpg new file mode 100644 index 0000000..662f1b7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807371_51_7115058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99d59fd4bd95e3954a4ca38cc329733dd79ac7a89464813f9b1d93afdff57f5 +size 136789 diff --git a/datasets/检测仪/val/images/订单1807374_51_7114939.jpg b/datasets/检测仪/val/images/订单1807374_51_7114939.jpg new file mode 100644 index 0000000..0c03685 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807374_51_7114939.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab1a51618ea9fd265952991a0b6cb53fe294b75990051acb5a2d090ed9201dd +size 139513 diff --git a/datasets/检测仪/val/images/订单1807378_51_7115179.jpg b/datasets/检测仪/val/images/订单1807378_51_7115179.jpg new file mode 100644 index 0000000..bc3e089 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807378_51_7115179.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d6a9dc754cf62cf11c68060f607238a34489bab23177553bbf8fb3e88fb939f +size 138145 diff --git a/datasets/检测仪/val/images/订单1807381_51_7115096.jpg b/datasets/检测仪/val/images/订单1807381_51_7115096.jpg new file mode 100644 index 0000000..3ee6feb --- /dev/null +++ b/datasets/检测仪/val/images/订单1807381_51_7115096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b403d90c81f0a4e4c05c4e0266f1ac2dfe389c286b2b240d51d39bab949b50 +size 203626 diff --git a/datasets/检测仪/val/images/订单1807385_51_7115103.jpg b/datasets/检测仪/val/images/订单1807385_51_7115103.jpg new file mode 100644 index 0000000..c6b546a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807385_51_7115103.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb05c97c2ab5dc5d050f02e40054689a05189bae015082090ef307431ae3b63 +size 280735 diff --git a/datasets/检测仪/val/images/订单1807386_51_7115174.jpg b/datasets/检测仪/val/images/订单1807386_51_7115174.jpg new file mode 100644 index 0000000..5046ba7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807386_51_7115174.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a054d13720e7bd446bef6ec24e8261319a14b0bcc39a60f7c236c6d68dc0ae +size 91229 diff --git a/datasets/检测仪/val/images/订单1807387_51_7115119.jpg b/datasets/检测仪/val/images/订单1807387_51_7115119.jpg new file mode 100644 index 0000000..f3cf86a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807387_51_7115119.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55df4d375ea9fc04b4a2cf9f215d0c54c81404a767877b7f5cc0a1827081e9f +size 360488 diff --git a/datasets/检测仪/val/images/订单1807388_51_7115158.jpg b/datasets/检测仪/val/images/订单1807388_51_7115158.jpg new file mode 100644 index 0000000..fbe24a3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807388_51_7115158.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88bd2b2ed909c20790283b8fdb7fc338bf0275f1602c6cfaa6167e14ee1de6 +size 78420 diff --git a/datasets/检测仪/val/images/订单1807390_51_7115204.jpg b/datasets/检测仪/val/images/订单1807390_51_7115204.jpg new file mode 100644 index 0000000..467e706 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807390_51_7115204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d50bb82f9c4f309b83112f22a364af766c0d98e7538b0bf4b32698018fdd7c +size 122365 diff --git a/datasets/检测仪/val/images/订单1807393_51_7115228.jpg b/datasets/检测仪/val/images/订单1807393_51_7115228.jpg new file mode 100644 index 0000000..aa8a94d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807393_51_7115228.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b831e10e83762a9c93b66475cc8942b2f6dd82ceafd2afcec91ea6bc64890e1 +size 132609 diff --git a/datasets/检测仪/val/images/订单1807395_51_7115255.jpg b/datasets/检测仪/val/images/订单1807395_51_7115255.jpg new file mode 100644 index 0000000..793addf --- /dev/null +++ b/datasets/检测仪/val/images/订单1807395_51_7115255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc025e6e6efd1be2d5736da904e183fd7e307d19ef741bb42d9836aa7a9a176 +size 101529 diff --git a/datasets/检测仪/val/images/订单1807396_51_7115232.jpg b/datasets/检测仪/val/images/订单1807396_51_7115232.jpg new file mode 100644 index 0000000..3d62c42 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807396_51_7115232.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b234d216970f8865fcdef9119cd596b889ffda5cb4cb9e7760f865aac0623a54 +size 140967 diff --git a/datasets/检测仪/val/images/订单1807399_51_7115284.jpg b/datasets/检测仪/val/images/订单1807399_51_7115284.jpg new file mode 100644 index 0000000..2935dd6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807399_51_7115284.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49eb44f6023da287cad4238d94ba7d8b6d467ae44682a9ddad830cdd3faeabc8 +size 145076 diff --git a/datasets/检测仪/val/images/订单1807401_51_7115294.jpg b/datasets/检测仪/val/images/订单1807401_51_7115294.jpg new file mode 100644 index 0000000..b5ba345 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807401_51_7115294.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8db309e472e0c4fa332c3577baf2b3b02d98ca213368cf9f90fd95cbf97d4c6 +size 362285 diff --git a/datasets/检测仪/val/images/订单1807404_51_7115386.jpg b/datasets/检测仪/val/images/订单1807404_51_7115386.jpg new file mode 100644 index 0000000..82ac3d3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807404_51_7115386.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f90f75b737fbab2e6fbcbab25c3b5203676bb2b1bfa95354330848793401d8c +size 112342 diff --git a/datasets/检测仪/val/images/订单1807405_51_7115359.jpg b/datasets/检测仪/val/images/订单1807405_51_7115359.jpg new file mode 100644 index 0000000..8b585c3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807405_51_7115359.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f84b8532901ef877f0873fb641c62a5e7efac756cd9c2ded8e05d0b247056fb +size 101092 diff --git a/datasets/检测仪/val/images/订单1807408_51_7115322.jpg b/datasets/检测仪/val/images/订单1807408_51_7115322.jpg new file mode 100644 index 0000000..0962267 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807408_51_7115322.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8f4cd0d73f2229a399feba091d0655013b6018ae49b2ac7e96c4a3eaeb4c2a +size 345421 diff --git a/datasets/检测仪/val/images/订单1807410_51_7115405.jpg b/datasets/检测仪/val/images/订单1807410_51_7115405.jpg new file mode 100644 index 0000000..0d687dc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807410_51_7115405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0499957c1c880eb22d9d7c3841108c752e5d57aa5686dc168b7c2867f5de7b9 +size 516419 diff --git a/datasets/检测仪/val/images/订单1807411_51_7115351.jpg b/datasets/检测仪/val/images/订单1807411_51_7115351.jpg new file mode 100644 index 0000000..80400da --- /dev/null +++ b/datasets/检测仪/val/images/订单1807411_51_7115351.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a31dd9bcfd23da97fb32e532661af0295c29b3660b61d7ddf28020d36d0a4ee +size 329493 diff --git a/datasets/检测仪/val/images/订单1807412_51_7115406.jpg b/datasets/检测仪/val/images/订单1807412_51_7115406.jpg new file mode 100644 index 0000000..5794a19 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807412_51_7115406.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ae3b081c04b9cc6253a6f603ba3450d656c8ecadb9b92b052e187a3e93efb8 +size 99494 diff --git a/datasets/检测仪/val/images/订单1807414_51_7115431.jpg b/datasets/检测仪/val/images/订单1807414_51_7115431.jpg new file mode 100644 index 0000000..ebca6b3 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807414_51_7115431.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adeaf83bb8f8036e999f6ed380f69478a6ba6581537b5b73ce89d5db5b41234 +size 160954 diff --git a/datasets/检测仪/val/images/订单1807416_51_7115422.jpg b/datasets/检测仪/val/images/订单1807416_51_7115422.jpg new file mode 100644 index 0000000..327bebb --- /dev/null +++ b/datasets/检测仪/val/images/订单1807416_51_7115422.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d533b42a23226a0f04438097af3aad498061775db45fb2dcb1d06e102f492f2d +size 158894 diff --git a/datasets/检测仪/val/images/订单1807419_51_7115476.jpg b/datasets/检测仪/val/images/订单1807419_51_7115476.jpg new file mode 100644 index 0000000..51496ef --- /dev/null +++ b/datasets/检测仪/val/images/订单1807419_51_7115476.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169f4269ed9d359b67ff4b69557a790024ff088acfb854e8fb23e819e108db5d +size 150819 diff --git a/datasets/检测仪/val/images/订单1807420_51_7115500.jpg b/datasets/检测仪/val/images/订单1807420_51_7115500.jpg new file mode 100644 index 0000000..fe87151 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807420_51_7115500.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b721386b79dd6a23cb4af40cdfd893af8d9519f0ae06f776fa8719dfd2737f1f +size 123383 diff --git a/datasets/检测仪/val/images/订单1807421_51_7115464.jpg b/datasets/检测仪/val/images/订单1807421_51_7115464.jpg new file mode 100644 index 0000000..fe66fe0 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807421_51_7115464.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf3c279cd345c4ef95daa26fb2d9eb41ec63b4e290a4a755c7264c58636d012 +size 149795 diff --git a/datasets/检测仪/val/images/订单1807423_51_7115489.jpg b/datasets/检测仪/val/images/订单1807423_51_7115489.jpg new file mode 100644 index 0000000..50299ec --- /dev/null +++ b/datasets/检测仪/val/images/订单1807423_51_7115489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a96d2bcee0636a1455c56ebfdd4f419d4b3d8791a4230adf3744eb5f00dedc6 +size 618016 diff --git a/datasets/检测仪/val/images/订单1807425_51_7115538.jpg b/datasets/检测仪/val/images/订单1807425_51_7115538.jpg new file mode 100644 index 0000000..f84bf23 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807425_51_7115538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6504c975a682ef201e36d502b20e99762329d49480a90a9fa114ef986a0dbd +size 130828 diff --git a/datasets/检测仪/val/images/订单1807430_51_7115559.jpg b/datasets/检测仪/val/images/订单1807430_51_7115559.jpg new file mode 100644 index 0000000..2e08c4a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807430_51_7115559.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f84723f0678a4b83e0acb6484969dbb1a9d6fdc1d9318ec8c904c52d99b8dd3 +size 106896 diff --git a/datasets/检测仪/val/images/订单1807431_51_7115577.jpg b/datasets/检测仪/val/images/订单1807431_51_7115577.jpg new file mode 100644 index 0000000..5b15ce5 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807431_51_7115577.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73fbe7452ff77848c5860d806001885b99fc2439cd033ec3068aa10ac5a8c519 +size 125849 diff --git a/datasets/检测仪/val/images/订单1807435_51_7115592.jpg b/datasets/检测仪/val/images/订单1807435_51_7115592.jpg new file mode 100644 index 0000000..3474936 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807435_51_7115592.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd71af76e219bdc759678583a5a396ad8c25641404adc79e087da68afdade4b +size 343237 diff --git a/datasets/检测仪/val/images/订单1807440_51_7115685.jpg b/datasets/检测仪/val/images/订单1807440_51_7115685.jpg new file mode 100644 index 0000000..59d123d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807440_51_7115685.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ae3f74dba64cd5865f25a653cbd8c807b9972b5ace220a79f4099bac5eb404 +size 965678 diff --git a/datasets/检测仪/val/images/订单1807446_51_7115659.jpg b/datasets/检测仪/val/images/订单1807446_51_7115659.jpg new file mode 100644 index 0000000..befc2b6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807446_51_7115659.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c7e87475f166be75365b1d16b8121b00ce4b9ae7a3613aceb8b6376b70c498 +size 348168 diff --git a/datasets/检测仪/val/images/订单1807447_51_7115697.jpg b/datasets/检测仪/val/images/订单1807447_51_7115697.jpg new file mode 100644 index 0000000..4453728 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807447_51_7115697.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211a2679dc603498f6dc04675168ee2753857be30b1762aff1d7e5cacfb21c1e +size 136978 diff --git a/datasets/检测仪/val/images/订单1807448_51_7115789.jpg b/datasets/检测仪/val/images/订单1807448_51_7115789.jpg new file mode 100644 index 0000000..f18b739 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807448_51_7115789.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcef499ffb7f41e704fc8136f6284f8c1ddf36c577783ebb9268a48bbec1abd +size 132077 diff --git a/datasets/检测仪/val/images/订单1807449_51_7115668.jpg b/datasets/检测仪/val/images/订单1807449_51_7115668.jpg new file mode 100644 index 0000000..3e5bfb4 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807449_51_7115668.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370c1e851c26a8935d757c00c08061cdac0179edecfb575647738f02e3a806aa +size 106959 diff --git a/datasets/检测仪/val/images/订单1807451_51_7115671.jpg b/datasets/检测仪/val/images/订单1807451_51_7115671.jpg new file mode 100644 index 0000000..17aec8c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807451_51_7115671.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c89a9439c6bd42716f26d1abdb53c7b7916fd4f482e0c57929b171f4a2eb83 +size 375295 diff --git a/datasets/检测仪/val/images/订单1807455_51_7115711.jpg b/datasets/检测仪/val/images/订单1807455_51_7115711.jpg new file mode 100644 index 0000000..d2eedd0 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807455_51_7115711.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80fd8bef35b8a1639544c039d08f8554a2c7b16e81ea8adab37f14c625f47f2 +size 88740 diff --git a/datasets/检测仪/val/images/订单1807459_51_7115757.jpg b/datasets/检测仪/val/images/订单1807459_51_7115757.jpg new file mode 100644 index 0000000..07d6d41 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807459_51_7115757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e82ea6132c2d753a2fa762ef02d66188bd97404a60093b4fbc562da7c2593c +size 164403 diff --git a/datasets/检测仪/val/images/订单1807462_51_7115731.jpg b/datasets/检测仪/val/images/订单1807462_51_7115731.jpg new file mode 100644 index 0000000..074c42c --- /dev/null +++ b/datasets/检测仪/val/images/订单1807462_51_7115731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d69084f7c63272f0cbb534280a00bd303d9daf48e9d9d071e4ceb0c4548db8 +size 156761 diff --git a/datasets/检测仪/val/images/订单1807463_51_7115739.jpg b/datasets/检测仪/val/images/订单1807463_51_7115739.jpg new file mode 100644 index 0000000..d4ca982 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807463_51_7115739.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf2f4c6ee10b3100cbd32ef7fcfcc259c92bb597282061d670c1de7ce396136 +size 143384 diff --git a/datasets/检测仪/val/images/订单1807471_51_7116054.jpg b/datasets/检测仪/val/images/订单1807471_51_7116054.jpg new file mode 100644 index 0000000..61a1e67 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807471_51_7116054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a93f451c3ede3f05dd33750f4692eb6be80be5c3def7feb12d5af2b8b89d194 +size 96829 diff --git a/datasets/检测仪/val/images/订单1807472_51_7115781.jpg b/datasets/检测仪/val/images/订单1807472_51_7115781.jpg new file mode 100644 index 0000000..17204c6 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807472_51_7115781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282f83b30cb02ba374ebe755cda9d68fd7e2972729bfdf6e99619a89c6139586 +size 139890 diff --git a/datasets/检测仪/val/images/订单1807473_51_7115861.jpg b/datasets/检测仪/val/images/订单1807473_51_7115861.jpg new file mode 100644 index 0000000..5e4789b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807473_51_7115861.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573309a246a85f43b13c29e52d4a0f59dd10b04c4e806f95a3d14951516bb12f +size 355565 diff --git a/datasets/检测仪/val/images/订单1807474_51_7115810.jpg b/datasets/检测仪/val/images/订单1807474_51_7115810.jpg new file mode 100644 index 0000000..e02085b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807474_51_7115810.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf4523a8dd27a465aabd81a3c62905102652359247567d1d62f2081b18449fe +size 88364 diff --git a/datasets/检测仪/val/images/订单1807475_51_7115914.jpg b/datasets/检测仪/val/images/订单1807475_51_7115914.jpg new file mode 100644 index 0000000..3978f0a --- /dev/null +++ b/datasets/检测仪/val/images/订单1807475_51_7115914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202b6caaaaa90122651d0983a06bc091947413e731ad86150cd430c61859ffad +size 125066 diff --git a/datasets/检测仪/val/images/订单1807476_51_7115863.jpg b/datasets/检测仪/val/images/订单1807476_51_7115863.jpg new file mode 100644 index 0000000..6075952 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807476_51_7115863.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5209bef95f85660db33cbf4e9342dbaf834de223e25c9df113efeb549daaeda +size 475842 diff --git a/datasets/检测仪/val/images/订单1807478_51_7115862.jpg b/datasets/检测仪/val/images/订单1807478_51_7115862.jpg new file mode 100644 index 0000000..0dc9a0d --- /dev/null +++ b/datasets/检测仪/val/images/订单1807478_51_7115862.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5ecc691706fe6d68a4677df07188423df2cf47b893e68700c0b1dea32b3aa7 +size 151502 diff --git a/datasets/检测仪/val/images/订单1807479_51_7115927.jpg b/datasets/检测仪/val/images/订单1807479_51_7115927.jpg new file mode 100644 index 0000000..d103dbf --- /dev/null +++ b/datasets/检测仪/val/images/订单1807479_51_7115927.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26dc78fa4d093f2e490b3bad81a3cbf026b3e55822834531d0a9c9d41e7c3e7 +size 573034 diff --git a/datasets/检测仪/val/images/订单1807481_51_7115895.jpg b/datasets/检测仪/val/images/订单1807481_51_7115895.jpg new file mode 100644 index 0000000..77016bf --- /dev/null +++ b/datasets/检测仪/val/images/订单1807481_51_7115895.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d81cb3d46f63e460b70bc0ff15654839a6521e0710ac43566192153c272101c +size 172075 diff --git a/datasets/检测仪/val/images/订单1807483_51_7116022.jpg b/datasets/检测仪/val/images/订单1807483_51_7116022.jpg new file mode 100644 index 0000000..1fe0ef7 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807483_51_7116022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c223d99d8826f2ae296b7de01dd696888b9ec68011ebcf7f0f9526f3c38bed9 +size 66470 diff --git a/datasets/检测仪/val/images/订单1807487_51_7115978.jpg b/datasets/检测仪/val/images/订单1807487_51_7115978.jpg new file mode 100644 index 0000000..e639a61 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807487_51_7115978.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99493fd87ed9af86a10221605c498af6ee761796f803557d44577bb0e2490104 +size 44215 diff --git a/datasets/检测仪/val/images/订单1807489_51_7115997.jpg b/datasets/检测仪/val/images/订单1807489_51_7115997.jpg new file mode 100644 index 0000000..37fa6fc --- /dev/null +++ b/datasets/检测仪/val/images/订单1807489_51_7115997.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987dcaf98450daa7cf01ce03b092cae2b5df14ec7061cc36a3e1ba69f399451c +size 500456 diff --git a/datasets/检测仪/val/images/订单1807495_51_7116081.jpg b/datasets/检测仪/val/images/订单1807495_51_7116081.jpg new file mode 100644 index 0000000..f4cec77 --- /dev/null +++ b/datasets/检测仪/val/images/订单1807495_51_7116081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc539ba0b1d5ec758eb46ff930df83537f79108ae0e6df3082c975a887df4bf +size 139175 diff --git a/datasets/检测仪/val/images/订单1807496_51_7116067.jpg b/datasets/检测仪/val/images/订单1807496_51_7116067.jpg new file mode 100644 index 0000000..3a6819b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807496_51_7116067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b232f7c1a37938e2409f756108017d2d6827ea7a54d2f9406cb42d73ecd795 +size 197873 diff --git a/datasets/检测仪/val/images/订单1807497_51_7116086.jpg b/datasets/检测仪/val/images/订单1807497_51_7116086.jpg new file mode 100644 index 0000000..d78db8b --- /dev/null +++ b/datasets/检测仪/val/images/订单1807497_51_7116086.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da28492447b3b660a4ca30390d898628b4ce8bdf8b9481192efca6a30077998 +size 119268 diff --git a/datasets/检测仪/val/labels.cache b/datasets/检测仪/val/labels.cache new file mode 100644 index 0000000..4eb5b7d Binary files /dev/null and b/datasets/检测仪/val/labels.cache differ diff --git a/datasets/检测仪/val/labels/.DS_Store b/datasets/检测仪/val/labels/.DS_Store new file mode 100644 index 0000000..fff08c0 Binary files /dev/null and b/datasets/检测仪/val/labels/.DS_Store differ diff --git a/datasets/检测仪/val/labels/订单1806862_51_7110450.txt b/datasets/检测仪/val/labels/订单1806862_51_7110450.txt new file mode 100644 index 0000000..25ef615 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806862_51_7110450.txt @@ -0,0 +1 @@ +5 0.256836 0.437266 0.234258 0.452793 0.219206 0.582666 0.241784 0.622188 0.245547 0.747822 0.222969 0.785937 0.228607 0.862168 0.253073 0.881924 0.286953 0.883340 0.294492 0.869229 0.426237 0.864990 0.433763 0.874873 0.462005 0.876279 0.495872 0.849463 0.505286 0.770410 0.478932 0.743594 0.475169 0.615127 0.488346 0.574189 0.486471 0.438682 0.456354 0.421738 0.437526 0.420322 0.428125 0.427383 0.292604 0.438682 diff --git a/datasets/检测仪/val/labels/订单1806863_51_7110471.txt b/datasets/检测仪/val/labels/订单1806863_51_7110471.txt new file mode 100644 index 0000000..d1f7fe5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806863_51_7110471.txt @@ -0,0 +1 @@ +5 0.492109 0.293281 0.458229 0.315869 0.431888 0.495146 0.448828 0.524785 0.390482 0.702656 0.367891 0.788760 0.373542 0.826875 0.426237 0.831113 0.465768 0.818408 0.593750 0.832520 0.642682 0.855107 0.685977 0.836758 0.719857 0.728057 0.708568 0.685713 0.731146 0.555840 0.759375 0.493730 0.797018 0.327158 0.768789 0.304570 0.733034 0.301748 0.716094 0.307393 0.527878 0.305986 0.520352 0.297520 diff --git a/datasets/检测仪/val/labels/订单1806867_51_7110438.txt b/datasets/检测仪/val/labels/订单1806867_51_7110438.txt new file mode 100644 index 0000000..795df02 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806867_51_7110438.txt @@ -0,0 +1 @@ +5 0.364128 0.276338 0.335898 0.303164 0.367891 0.458437 0.384831 0.483848 0.407422 0.588311 0.399883 0.622188 0.413060 0.664541 0.435651 0.681475 0.456354 0.681475 0.463880 0.670186 0.573047 0.673008 0.595638 0.681475 0.616341 0.667363 0.635156 0.596777 0.618216 0.581250 0.614453 0.478203 0.629505 0.437266 0.635156 0.283398 0.603164 0.260811 0.567396 0.263633 0.563633 0.276338 0.401771 0.286221 0.394245 0.279160 diff --git a/datasets/检测仪/val/labels/订单1806868_51_7110355.txt b/datasets/检测仪/val/labels/订单1806868_51_7110355.txt new file mode 100644 index 0000000..48b858b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806868_51_7110355.txt @@ -0,0 +1 @@ +5 0.390705 0.385147 0.381180 0.400673 0.379060 0.509367 0.387530 0.531953 0.390705 0.625120 0.381180 0.646293 0.385415 0.688647 0.392825 0.704173 0.406590 0.711227 0.410825 0.699940 0.455290 0.698527 0.462700 0.708407 0.477520 0.711227 0.488110 0.698527 0.495520 0.642060 0.490225 0.625120 0.485990 0.533367 0.494460 0.509367 0.494460 0.400673 0.480700 0.376673 0.471170 0.380907 0.466935 0.385147 0.401295 0.389380 diff --git a/datasets/检测仪/val/labels/订单1806869_51_7110358.txt b/datasets/检测仪/val/labels/订单1806869_51_7110358.txt new file mode 100644 index 0000000..cacf380 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806869_51_7110358.txt @@ -0,0 +1 @@ +5 0.319882 0.267863 0.276588 0.293275 0.257778 0.514902 0.282235 0.554422 0.265307 0.729461 0.250248 0.778873 0.257778 0.880510 0.291647 0.911569 0.334941 0.912980 0.348118 0.894627 0.521281 0.884745 0.525046 0.896039 0.560797 0.900275 0.583386 0.870627 0.609739 0.785931 0.596562 0.739343 0.609739 0.569951 0.632327 0.517725 0.653033 0.331382 0.621033 0.300333 0.587150 0.297510 0.579621 0.300333 0.361294 0.280569 0.361294 0.272098 diff --git a/datasets/检测仪/val/labels/订单1806872_51_7110488.txt b/datasets/检测仪/val/labels/订单1806872_51_7110488.txt new file mode 100644 index 0000000..aa9d900 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806872_51_7110488.txt @@ -0,0 +1 @@ +5 0.595633 0.483850 0.573044 0.493733 0.550461 0.601017 0.559872 0.616542 0.548578 0.694183 0.531639 0.719592 0.524111 0.764763 0.535406 0.784525 0.554222 0.785937 0.559872 0.778879 0.635156 0.791583 0.642689 0.800054 0.665272 0.804287 0.676567 0.795821 0.702917 0.746413 0.697267 0.725237 0.717972 0.647600 0.738678 0.615129 0.765028 0.519142 0.749972 0.502200 0.734911 0.502200 0.721739 0.502200 0.627628 0.492321 diff --git a/datasets/检测仪/val/labels/订单1806873_51_7110448.txt b/datasets/检测仪/val/labels/订单1806873_51_7110448.txt new file mode 100644 index 0000000..513da48 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806873_51_7110448.txt @@ -0,0 +1 @@ +5 0.281315 0.373740 0.245547 0.393506 0.266250 0.551611 0.283190 0.588311 0.294492 0.708301 0.279427 0.752061 0.290716 0.818408 0.318958 0.843818 0.356602 0.848047 0.364128 0.839580 0.497760 0.818408 0.507174 0.826875 0.537292 0.829697 0.557995 0.797227 0.559870 0.728057 0.541055 0.702656 0.529753 0.565723 0.542930 0.527607 0.537292 0.390684 0.503411 0.366689 0.477057 0.370918 0.473294 0.375156 0.311419 0.376563 diff --git a/datasets/检测仪/val/labels/订单1806876_51_7110528.txt b/datasets/检测仪/val/labels/订单1806876_51_7110528.txt new file mode 100644 index 0000000..9f268e6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806876_51_7110528.txt @@ -0,0 +1 @@ +5 0.081693 0.479680 0.066640 0.492380 0.072293 0.599670 0.085467 0.622250 0.092987 0.714010 0.081693 0.746480 0.092987 0.801530 0.117453 0.826940 0.145693 0.821290 0.151333 0.807180 0.236040 0.797290 0.254853 0.804350 0.281213 0.804350 0.303800 0.778940 0.303800 0.730950 0.286853 0.704130 0.275560 0.605310 0.288733 0.577080 0.286853 0.474030 0.258627 0.459920 0.241680 0.459920 0.098640 0.479680 diff --git a/datasets/检测仪/val/labels/订单1806878_51_7110495.txt b/datasets/检测仪/val/labels/订单1806878_51_7110495.txt new file mode 100644 index 0000000..8c43af4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806878_51_7110495.txt @@ -0,0 +1 @@ +5 0.433763 0.305986 0.401771 0.301748 0.362240 0.318691 0.354714 0.376563 0.334010 0.510674 0.350951 0.567139 0.322721 0.699824 0.302018 0.759121 0.300130 0.838164 0.320833 0.864990 0.360365 0.870635 0.382943 0.856523 0.531641 0.869229 0.535404 0.880518 0.571159 0.887578 0.616341 0.859346 0.635156 0.776055 0.625742 0.732295 0.646445 0.575605 0.678451 0.513496 0.702917 0.361035 0.676563 0.332803 0.644570 0.327158 0.635156 0.331396 0.460117 0.317275 diff --git a/datasets/检测仪/val/labels/订单1806880_51_7110408.txt b/datasets/检测仪/val/labels/订单1806880_51_7110408.txt new file mode 100644 index 0000000..515614e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806880_51_7110408.txt @@ -0,0 +1 @@ +5 0.719857 0.404795 0.684089 0.409033 0.597513 0.527607 0.588099 0.560078 0.512813 0.654658 0.482708 0.682891 0.446940 0.737939 0.454466 0.768994 0.471406 0.777471 0.495872 0.767588 0.584336 0.815586 0.586224 0.828291 0.606927 0.839580 0.644570 0.833936 0.701029 0.771826 0.697266 0.745000 0.776315 0.643359 0.819609 0.613721 0.902422 0.509258 0.900547 0.481025 0.879844 0.471143 0.864779 0.473965 0.738672 0.418916 diff --git a/datasets/检测仪/val/labels/订单1806884_51_7110489.txt b/datasets/检测仪/val/labels/订单1806884_51_7110489.txt new file mode 100644 index 0000000..c331f88 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806884_51_7110489.txt @@ -0,0 +1 @@ +5 0.388594 0.505029 0.360365 0.519141 0.352839 0.653242 0.366003 0.691357 0.364128 0.783115 0.347187 0.842402 0.350951 0.907334 0.369779 0.938398 0.407422 0.938398 0.428125 0.921455 0.522227 0.917217 0.542930 0.927100 0.559870 0.932744 0.589987 0.910156 0.593750 0.839580 0.580573 0.815586 0.580573 0.689951 0.589987 0.657480 0.589987 0.541729 0.567396 0.520557 0.544818 0.520557 0.422474 0.509258 diff --git a/datasets/检测仪/val/labels/订单1806886_51_7110543.txt b/datasets/检测仪/val/labels/订单1806886_51_7110543.txt new file mode 100644 index 0000000..40b7876 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806886_51_7110543.txt @@ -0,0 +1 @@ +5 0.503958 0.554499 0.484199 0.568613 0.478555 0.698483 0.484199 0.725306 0.482786 0.826940 0.468672 0.862233 0.470085 0.914460 0.482786 0.941283 0.502552 0.941283 0.508197 0.928581 0.585833 0.945514 0.594303 0.951165 0.609831 0.955397 0.625358 0.935638 0.636654 0.872116 0.628184 0.848112 0.635241 0.738008 0.647949 0.702715 0.663477 0.578496 0.647949 0.558730 0.631009 0.557318 0.626771 0.565788 0.529368 0.562969 0.512428 0.553086 diff --git a/datasets/检测仪/val/labels/订单1806889_51_7110587.txt b/datasets/检测仪/val/labels/订单1806889_51_7110587.txt new file mode 100644 index 0000000..47fe55b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806889_51_7110587.txt @@ -0,0 +1 @@ +5 0.574922 0.283398 0.542930 0.296104 0.503411 0.452793 0.516576 0.478203 0.475169 0.584072 0.460117 0.612305 0.446940 0.680068 0.458229 0.705479 0.499648 0.716768 0.509049 0.706885 0.610690 0.721006 0.621979 0.733711 0.650221 0.739355 0.676563 0.723828 0.704805 0.663125 0.699154 0.627832 0.738672 0.519141 0.768789 0.475381 0.817734 0.341279 0.787617 0.311631 0.768789 0.311631 0.766914 0.315869 0.605039 0.296104 diff --git a/datasets/检测仪/val/labels/订单1806890_51_7110633.txt b/datasets/检测仪/val/labels/订单1806890_51_7110633.txt new file mode 100644 index 0000000..36e3782 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806890_51_7110633.txt @@ -0,0 +1 @@ +5 0.386613 0.332870 0.347080 0.349810 0.294387 0.524850 0.305680 0.553080 0.256733 0.705540 0.224747 0.745060 0.213453 0.825530 0.222867 0.856580 0.252973 0.859410 0.268027 0.853760 0.424253 0.874930 0.428013 0.886230 0.463773 0.896110 0.495773 0.872110 0.537187 0.787410 0.524013 0.750710 0.574827 0.606730 0.604947 0.555910 0.661400 0.411920 0.635053 0.378040 0.601173 0.375220 0.591760 0.379450 0.418600 0.348400 0.418600 0.339930 diff --git a/datasets/检测仪/val/labels/订单1806891_51_7110644.txt b/datasets/检测仪/val/labels/订单1806891_51_7110644.txt new file mode 100644 index 0000000..a211121 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806891_51_7110644.txt @@ -0,0 +1 @@ +5 0.371654 0.420332 0.335898 0.442910 0.367891 0.619365 0.396120 0.663125 0.413060 0.801465 0.409297 0.853691 0.426237 0.928516 0.458229 0.953926 0.497760 0.951094 0.507174 0.936982 0.640807 0.924277 0.653984 0.932744 0.697266 0.936982 0.725508 0.903105 0.725508 0.819814 0.695391 0.774648 0.672799 0.632070 0.685977 0.581250 0.665273 0.418916 0.627630 0.396328 0.595638 0.397744 0.593750 0.409033 0.418711 0.428799 0.403646 0.420322 diff --git a/datasets/检测仪/val/labels/订单1806904_51_7110673.txt b/datasets/检测仪/val/labels/订单1806904_51_7110673.txt new file mode 100644 index 0000000..c7f4000 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806904_51_7110673.txt @@ -0,0 +1 @@ +5 0.322721 0.379395 0.286953 0.401973 0.286953 0.567139 0.305781 0.605254 0.296367 0.749238 0.283190 0.801465 0.290716 0.896045 0.322721 0.931338 0.360365 0.925693 0.379180 0.912988 0.544818 0.907334 0.556107 0.917217 0.597513 0.921455 0.625742 0.887578 0.633281 0.792998 0.608802 0.752061 0.597513 0.592549 0.610690 0.545957 0.595638 0.392090 0.565521 0.370918 0.541055 0.373740 0.527878 0.377979 0.345299 0.383623 diff --git a/datasets/检测仪/val/labels/订单1806905_51_7110728.txt b/datasets/检测仪/val/labels/订单1806905_51_7110728.txt new file mode 100644 index 0000000..73c1a64 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806905_51_7110728.txt @@ -0,0 +1 @@ +5 0.525173 0.233974 0.498707 0.256558 0.497649 0.293263 0.509293 0.297494 0.504000 0.444308 0.493413 0.457013 0.493413 0.482417 0.517764 0.510654 0.528351 0.523359 0.671279 0.514885 0.709394 0.488064 0.836437 0.496538 0.862909 0.506417 0.923255 0.492301 0.948663 0.457013 0.949721 0.425955 0.940192 0.424545 0.926428 0.317256 0.934899 0.303141 0.935957 0.273500 0.920077 0.260795 0.845966 0.246679 0.825851 0.259385 0.708332 0.260795 0.690337 0.249500 0.531529 0.232564 diff --git a/datasets/检测仪/val/labels/订单1806907_51_7110712.txt b/datasets/检测仪/val/labels/订单1806907_51_7110712.txt new file mode 100644 index 0000000..21f7b65 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806907_51_7110712.txt @@ -0,0 +1 @@ +5 0.347187 0.392090 0.335898 0.407627 0.371654 0.519141 0.396120 0.544551 0.431888 0.640537 0.439414 0.678652 0.465768 0.722412 0.482708 0.732295 0.505286 0.729473 0.514701 0.716768 0.601276 0.698418 0.618216 0.704063 0.640807 0.704063 0.648333 0.680068 0.642682 0.627832 0.620104 0.603838 0.584336 0.509258 0.584336 0.475381 0.550456 0.362451 0.518464 0.349746 0.499648 0.348330 0.495872 0.353984 0.390482 0.387861 0.356602 0.390684 diff --git a/datasets/检测仪/val/labels/订单1806912_51_7110756.txt b/datasets/检测仪/val/labels/订单1806912_51_7110756.txt new file mode 100644 index 0000000..c3789b6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806912_51_7110756.txt @@ -0,0 +1 @@ +5 0.422474 0.379395 0.388594 0.401973 0.364128 0.584072 0.379180 0.620781 0.349062 0.790176 0.324596 0.840996 0.326484 0.941221 0.349062 0.975098 0.398008 0.979326 0.407422 0.969453 0.571159 0.980742 0.584336 0.990625 0.628099 1.000000 0.639596 1.000000 0.680326 0.969453 0.704805 0.873457 0.695391 0.814170 0.697266 0.646191 0.729271 0.585488 0.744323 0.409033 0.706680 0.379395 0.670924 0.380801 0.655859 0.390684 0.467643 0.385039 diff --git a/datasets/检测仪/val/labels/订单1806913_51_7110893.txt b/datasets/检测仪/val/labels/订单1806913_51_7110893.txt new file mode 100644 index 0000000..ee0b43e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806913_51_7110893.txt @@ -0,0 +1 @@ +5 0.324005 0.434549 0.309186 0.471255 0.322946 0.505131 0.332475 0.516425 0.382235 0.647706 0.371647 0.666059 0.378000 0.692876 0.416118 0.716876 0.435172 0.708405 0.433054 0.697111 0.533632 0.633588 0.584451 0.589830 0.599275 0.570065 0.704088 0.515013 0.741142 0.499484 0.803608 0.438784 0.818426 0.399261 0.811020 0.379497 0.800431 0.373850 0.752789 0.269392 0.750672 0.239745 0.735848 0.217157 0.710441 0.211516 0.681853 0.218569 0.626799 0.273627 0.520926 0.335739 0.493402 0.347033 0.328240 0.424667 diff --git a/datasets/检测仪/val/labels/订单1806917_51_7110789.txt b/datasets/检测仪/val/labels/订单1806917_51_7110789.txt new file mode 100644 index 0000000..376c231 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806917_51_7110789.txt @@ -0,0 +1 @@ +5 0.413060 0.318691 0.386706 0.334219 0.386706 0.469736 0.407422 0.495146 0.407422 0.596777 0.394245 0.636309 0.398008 0.684297 0.420586 0.706885 0.448828 0.711123 0.456354 0.701240 0.567396 0.698418 0.573047 0.705479 0.599401 0.711123 0.618216 0.691357 0.621979 0.626426 0.614453 0.601016 0.614453 0.496553 0.627630 0.464092 0.631393 0.337041 0.608802 0.320098 0.591862 0.320098 0.437526 0.321514 diff --git a/datasets/检测仪/val/labels/订单1806918_51_7110858.txt b/datasets/检测仪/val/labels/订单1806918_51_7110858.txt new file mode 100644 index 0000000..2953164 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806918_51_7110858.txt @@ -0,0 +1 @@ +5 0.480820 0.331396 0.448828 0.349746 0.446940 0.497969 0.465768 0.533262 0.469531 0.651836 0.452591 0.694180 0.460117 0.759121 0.484583 0.785937 0.527878 0.785937 0.529753 0.774648 0.648333 0.777471 0.655859 0.785937 0.689740 0.788760 0.721732 0.757705 0.729271 0.694180 0.717969 0.663125 0.702917 0.534668 0.719857 0.489492 0.723620 0.356807 0.697266 0.331396 0.674687 0.331396 0.661510 0.337041 0.512813 0.339863 diff --git a/datasets/检测仪/val/labels/订单1806921_51_7110938.txt b/datasets/检测仪/val/labels/订单1806921_51_7110938.txt new file mode 100644 index 0000000..251ad97 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806921_51_7110938.txt @@ -0,0 +1 @@ +5 0.320833 0.386446 0.288839 0.403388 0.245550 0.562900 0.254961 0.591133 0.217317 0.736529 0.183439 0.808525 0.175911 0.893221 0.198494 0.935571 0.260606 0.939804 0.270017 0.927100 0.426239 0.938392 0.439411 0.951100 0.486467 0.958154 0.529756 0.927100 0.554222 0.816992 0.539167 0.770408 0.548578 0.608075 0.580578 0.554433 0.588106 0.417504 0.563633 0.396329 0.541050 0.394917 0.343422 0.389271 diff --git a/datasets/检测仪/val/labels/订单1806922_51_7110814.txt b/datasets/检测仪/val/labels/订单1806922_51_7110814.txt new file mode 100644 index 0000000..b844eae --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806922_51_7110814.txt @@ -0,0 +1 @@ +5 0.369779 0.349746 0.337773 0.366689 0.324596 0.510674 0.335898 0.545957 0.317070 0.663125 0.300130 0.694180 0.303893 0.760527 0.326484 0.780293 0.356602 0.785937 0.364128 0.773232 0.475169 0.784531 0.484583 0.794404 0.520352 0.800059 0.548581 0.778877 0.573047 0.712529 0.561758 0.671592 0.561758 0.558662 0.595638 0.513496 0.610690 0.379395 0.586224 0.353984 0.559870 0.353984 0.546693 0.358213 0.386706 0.358213 0.386706 0.351162 diff --git a/datasets/检测仪/val/labels/订单1806925_51_7110926.txt b/datasets/检测仪/val/labels/订单1806925_51_7110926.txt new file mode 100644 index 0000000..8d17700 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806925_51_7110926.txt @@ -0,0 +1 @@ +5 0.224458 0.341341 0.203281 0.373809 0.218105 0.554499 0.233984 0.591198 0.238218 0.721068 0.232925 0.767650 0.238218 0.821296 0.240337 0.857995 0.255161 0.870703 0.277393 0.869290 0.290098 0.848112 0.361030 0.838236 0.370562 0.846706 0.388560 0.849525 0.400205 0.817057 0.408672 0.753535 0.394912 0.712598 0.392793 0.578496 0.404438 0.527676 0.399146 0.369577 0.383267 0.342754 0.364209 0.344167 0.361030 0.354049 0.251982 0.354049 0.249863 0.345579 diff --git a/datasets/检测仪/val/labels/订单1806926_51_7110876.txt b/datasets/检测仪/val/labels/订单1806926_51_7110876.txt new file mode 100644 index 0000000..d25bbc8 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806926_51_7110876.txt @@ -0,0 +1 @@ +5 0.411894 0.315846 0.393894 0.327141 0.380130 0.478186 0.388601 0.530417 0.374837 0.688519 0.361072 0.749218 0.358957 0.846622 0.372721 0.876263 0.400245 0.888968 0.403423 0.870615 0.518822 0.870615 0.545288 0.893205 0.557995 0.896026 0.572817 0.867795 0.582346 0.761923 0.570702 0.715340 0.570702 0.560058 0.580231 0.492301 0.593990 0.334199 0.568582 0.320083 0.555880 0.329962 0.454240 0.313026 0.407659 0.305968 diff --git a/datasets/检测仪/val/labels/订单1806928_51_7110863.txt b/datasets/检测仪/val/labels/订单1806928_51_7110863.txt new file mode 100644 index 0000000..a9f12b2 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806928_51_7110863.txt @@ -0,0 +1 @@ +5 0.557995 0.137998 0.509049 0.173291 0.525990 0.392090 0.552344 0.451387 0.561758 0.606660 0.541055 0.651836 0.556107 0.745000 0.595638 0.783115 0.644570 0.781699 0.650221 0.763350 0.812083 0.768994 0.827135 0.778877 0.879844 0.780293 0.906185 0.752061 0.925013 0.657480 0.908073 0.617959 0.906185 0.448564 0.934427 0.377979 0.947604 0.166230 0.906185 0.129531 0.864779 0.130947 0.855378 0.142236 0.625742 0.149297 0.605039 0.136592 diff --git a/datasets/检测仪/val/labels/订单1806929_51_7110854.txt b/datasets/检测仪/val/labels/订单1806929_51_7110854.txt new file mode 100644 index 0000000..e1ea578 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806929_51_7110854.txt @@ -0,0 +1 @@ +5 0.206029 0.399150 0.187201 0.418916 0.211667 0.543135 0.241784 0.574189 0.264375 0.684297 0.254961 0.721006 0.275664 0.776055 0.298255 0.791582 0.328359 0.787354 0.337773 0.774648 0.445065 0.757705 0.460117 0.764766 0.478932 0.764766 0.497760 0.736533 0.497760 0.682891 0.477057 0.651836 0.454466 0.548789 0.458229 0.497969 0.433763 0.385039 0.409297 0.369512 0.381068 0.373740 0.373542 0.379395 0.245547 0.401973 diff --git a/datasets/检测仪/val/labels/订单1806935_51_7111073.txt b/datasets/检测仪/val/labels/订单1806935_51_7111073.txt new file mode 100644 index 0000000..52dd255 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806935_51_7111073.txt @@ -0,0 +1 @@ +5 0.124164 0.332811 0.097809 0.346929 0.086517 0.495147 0.110980 0.538910 0.110980 0.675839 0.090277 0.709715 0.094048 0.788772 0.114752 0.819827 0.156159 0.821237 0.167451 0.805709 0.306736 0.795830 0.314256 0.805709 0.348143 0.808529 0.389550 0.778884 0.406482 0.698426 0.391430 0.670190 0.382018 0.534680 0.395190 0.475389 0.389550 0.338460 0.359435 0.318694 0.338731 0.320112 0.142987 0.332811 diff --git a/datasets/检测仪/val/labels/订单1806936_51_7110996.txt b/datasets/检测仪/val/labels/订单1806936_51_7110996.txt new file mode 100644 index 0000000..9c8b398 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806936_51_7110996.txt @@ -0,0 +1 @@ +5 0.330171 0.376654 0.283110 0.406289 0.303819 0.603917 0.332047 0.654744 0.337703 0.812844 0.328281 0.859429 0.348990 0.962470 0.393465 1.000000 0.403963 1.000000 0.441220 0.997766 0.444987 0.980827 0.614370 0.955413 0.625669 0.965295 0.661430 0.963888 0.680249 0.932835 0.695315 0.841073 0.668963 0.797313 0.648255 0.630738 0.661430 0.582746 0.640722 0.414764 0.610617 0.380886 0.595551 0.373829 0.576732 0.376654 0.572966 0.383711 0.369698 0.386535 0.367808 0.376654 diff --git a/datasets/检测仪/val/labels/订单1806937_51_7111019.txt b/datasets/检测仪/val/labels/订单1806937_51_7111019.txt new file mode 100644 index 0000000..3ee1e91 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806937_51_7111019.txt @@ -0,0 +1 @@ +5 0.328359 0.548789 0.309544 0.572783 0.382943 0.706885 0.409297 0.732295 0.465768 0.849463 0.467643 0.888984 0.512813 0.959570 0.542930 0.975098 0.582461 0.966631 0.582461 0.951094 0.687865 0.908750 0.699154 0.914395 0.736797 0.912988 0.748086 0.880518 0.716094 0.809932 0.684089 0.781699 0.623867 0.664541 0.616341 0.625010 0.556107 0.509258 0.524115 0.496553 0.499648 0.497969 0.501523 0.509258 0.386706 0.547373 0.358477 0.545957 diff --git a/datasets/检测仪/val/labels/订单1806938_51_7111055.txt b/datasets/检测仪/val/labels/订单1806938_51_7111055.txt new file mode 100644 index 0000000..02cc7f4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806938_51_7111055.txt @@ -0,0 +1 @@ +5 0.192850 0.317279 0.153322 0.337042 0.164617 0.547375 0.179672 0.574196 0.183439 0.715358 0.172144 0.739354 0.181556 0.815583 0.194733 0.836758 0.226728 0.838167 0.243667 0.821229 0.381067 0.802879 0.405533 0.819817 0.424356 0.822642 0.448822 0.802879 0.471411 0.723825 0.452589 0.691358 0.452589 0.551608 0.465761 0.496554 0.473289 0.348333 0.446939 0.322925 0.418711 0.318692 0.413061 0.324338 0.226728 0.328571 0.222961 0.320100 diff --git a/datasets/检测仪/val/labels/订单1806942_51_7111056.txt b/datasets/检测仪/val/labels/订单1806942_51_7111056.txt new file mode 100644 index 0000000..0ddd01c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806942_51_7111056.txt @@ -0,0 +1 @@ +5 0.405534 0.352568 0.367891 0.373740 0.330247 0.510674 0.335898 0.545957 0.311419 0.660303 0.296367 0.684297 0.279427 0.749238 0.273776 0.767588 0.324596 0.783115 0.332135 0.770410 0.426237 0.791582 0.435651 0.801465 0.469531 0.815586 0.499648 0.792998 0.541055 0.728057 0.533516 0.694180 0.565521 0.579844 0.595638 0.536084 0.637044 0.401973 0.605039 0.372334 0.586224 0.373740 0.565521 0.377979 0.426237 0.366689 0.426237 0.359629 diff --git a/datasets/检测仪/val/labels/订单1806943_51_7111143.txt b/datasets/检测仪/val/labels/订单1806943_51_7111143.txt new file mode 100644 index 0000000..c8ffbdd --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806943_51_7111143.txt @@ -0,0 +1 @@ +5 0.435651 0.434443 0.413060 0.459854 0.399883 0.577021 0.418711 0.619365 0.407422 0.739355 0.390482 0.778877 0.396120 0.845225 0.411185 0.872051 0.443177 0.877695 0.458229 0.859346 0.578698 0.863574 0.580573 0.873457 0.614453 0.884756 0.638919 0.862168 0.655859 0.785937 0.637044 0.754883 0.642682 0.629248 0.653984 0.585488 0.655859 0.459854 0.633281 0.438682 0.616341 0.438682 0.460117 0.442910 diff --git a/datasets/检测仪/val/labels/订单1806944_51_7111099.txt b/datasets/检测仪/val/labels/订单1806944_51_7111099.txt new file mode 100644 index 0000000..1d35418 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806944_51_7111099.txt @@ -0,0 +1 @@ +5 0.394245 0.362451 0.369779 0.377979 0.373542 0.497969 0.390482 0.529023 0.390482 0.620781 0.382943 0.649014 0.392357 0.697002 0.411185 0.721006 0.424362 0.718184 0.439414 0.709707 0.533516 0.709707 0.546693 0.719590 0.565521 0.716768 0.589987 0.654658 0.573047 0.626426 0.574935 0.529023 0.588099 0.492324 0.599401 0.377979 0.569284 0.359629 0.552344 0.359629 0.550456 0.363857 0.418711 0.368096 diff --git a/datasets/检测仪/val/labels/订单1806947_51_7111167.txt b/datasets/检测仪/val/labels/订单1806947_51_7111167.txt new file mode 100644 index 0000000..b4e4d0c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806947_51_7111167.txt @@ -0,0 +1 @@ +5 0.418600 0.454270 0.392253 0.471210 0.397907 0.592610 0.414840 0.619430 0.411080 0.716830 0.405427 0.750710 0.412960 0.807180 0.435547 0.824120 0.461893 0.828350 0.471307 0.812820 0.569173 0.812820 0.588000 0.821290 0.610587 0.822700 0.629413 0.800120 0.633173 0.742240 0.616227 0.718240 0.608707 0.610960 0.621880 0.584140 0.614347 0.464150 0.595533 0.447210 0.578587 0.438740 0.565413 0.451450 0.433667 0.455680 diff --git a/datasets/检测仪/val/labels/订单1806951_51_7111144.txt b/datasets/检测仪/val/labels/订单1806951_51_7111144.txt new file mode 100644 index 0000000..98e921a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806951_51_7111144.txt @@ -0,0 +1 @@ +5 0.347187 0.616543 0.334010 0.634893 0.381068 0.760527 0.405534 0.777471 0.433763 0.870635 0.430000 0.920039 0.460117 0.969453 0.482708 0.989209 0.512813 0.989209 0.522227 0.972275 0.612578 0.942627 0.627630 0.952510 0.661510 0.949688 0.672799 0.921455 0.653984 0.857930 0.629505 0.825459 0.578698 0.728057 0.576810 0.682891 0.535404 0.585488 0.510937 0.575605 0.490234 0.578428 0.486471 0.585488 0.373542 0.608076 diff --git a/datasets/检测仪/val/labels/订单1806954_51_7111215.txt b/datasets/检测仪/val/labels/订单1806954_51_7111215.txt new file mode 100644 index 0000000..46b2e79 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806954_51_7111215.txt @@ -0,0 +1 @@ +5 0.192852 0.324336 0.160846 0.352568 0.183438 0.505029 0.207904 0.537490 0.219206 0.656064 0.207904 0.691357 0.226732 0.756299 0.247435 0.777471 0.277552 0.771826 0.288841 0.759121 0.403646 0.752061 0.414948 0.763350 0.445065 0.768994 0.456354 0.747822 0.477057 0.668770 0.462005 0.637715 0.450703 0.523379 0.465768 0.486670 0.460117 0.332803 0.428125 0.310225 0.398008 0.313047 0.390482 0.322930 0.219206 0.332803 diff --git a/datasets/检测仪/val/labels/订单1806959_51_7111293.txt b/datasets/检测仪/val/labels/订单1806959_51_7111293.txt new file mode 100644 index 0000000..a59acc7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806959_51_7111293.txt @@ -0,0 +1 @@ +5 0.320801 0.498088 0.285049 0.517843 0.298219 0.688652 0.313268 0.706998 0.311389 0.838284 0.305752 0.874988 0.320801 0.949804 0.352794 0.976630 0.379150 0.976630 0.390441 0.963922 0.509020 0.949804 0.525964 0.961091 0.552304 0.958272 0.571127 0.935686 0.580539 0.869338 0.567369 0.841103 0.552304 0.695711 0.571127 0.656189 0.576781 0.515025 0.541013 0.493848 0.510899 0.493848 0.499608 0.498088 0.354690 0.502316 diff --git a/datasets/检测仪/val/labels/订单1806961_51_7111241.txt b/datasets/检测仪/val/labels/订单1806961_51_7111241.txt new file mode 100644 index 0000000..7beb14b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806961_51_7111241.txt @@ -0,0 +1 @@ +5 0.335898 0.527607 0.298255 0.540312 0.292604 0.551611 0.296367 0.562900 0.234258 0.663125 0.215430 0.671592 0.215430 0.689951 0.222969 0.719590 0.418711 0.768994 0.486471 0.761943 0.618216 0.797227 0.687865 0.826875 0.766914 0.831113 0.793255 0.819814 0.798906 0.797227 0.791380 0.787354 0.802669 0.704063 0.813958 0.698418 0.819609 0.680068 0.800794 0.664541 0.723620 0.632070 0.691628 0.632070 0.571159 0.599600 0.548581 0.596777 0.539167 0.591133 0.335898 0.534668 diff --git a/datasets/检测仪/val/labels/订单1806967_51_7111257.txt b/datasets/检测仪/val/labels/订单1806967_51_7111257.txt new file mode 100644 index 0000000..08e4f64 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806967_51_7111257.txt @@ -0,0 +1 @@ +5 0.221081 0.433027 0.166497 0.451387 0.128854 0.639131 0.147682 0.685713 0.111914 0.805703 0.094974 0.828291 0.078034 0.904512 0.098737 0.929922 0.136380 0.936982 0.149557 0.927100 0.279427 0.932744 0.286953 0.944043 0.309544 0.948271 0.360365 0.925693 0.384831 0.864990 0.384831 0.826875 0.414948 0.712529 0.454466 0.674424 0.512813 0.509258 0.488346 0.472559 0.452591 0.469736 0.445065 0.478203 0.254961 0.455615 0.253073 0.442910 diff --git a/datasets/检测仪/val/labels/订单1806969_51_7111294.txt b/datasets/检测仪/val/labels/订单1806969_51_7111294.txt new file mode 100644 index 0000000..bcc95fa --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806969_51_7111294.txt @@ -0,0 +1 @@ +5 0.428122 0.356804 0.392356 0.379392 0.379183 0.548783 0.394239 0.592546 0.381067 0.729471 0.358478 0.795821 0.366006 0.890400 0.384828 0.928512 0.433767 0.929925 0.452589 0.907338 0.612572 0.912983 0.631394 0.929925 0.665272 0.935571 0.710444 0.903104 0.719856 0.812758 0.702917 0.763350 0.695389 0.595367 0.716089 0.547375 0.717972 0.386446 0.685978 0.362450 0.655861 0.361038 0.652100 0.366683 0.467644 0.361038 diff --git a/datasets/检测仪/val/labels/订单1806972_51_7111358.txt b/datasets/检测仪/val/labels/订单1806972_51_7111358.txt new file mode 100644 index 0000000..a64448f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806972_51_7111358.txt @@ -0,0 +1 @@ +5 0.488350 0.457029 0.462000 0.473967 0.456350 0.602425 0.467644 0.633483 0.469528 0.737942 0.454472 0.770408 0.458233 0.826875 0.480822 0.853696 0.510933 0.855108 0.524111 0.840992 0.623867 0.840992 0.627628 0.852283 0.657744 0.856521 0.680328 0.836758 0.693506 0.773233 0.672800 0.742179 0.678450 0.632071 0.693506 0.593958 0.695389 0.481025 0.670917 0.464087 0.655861 0.464087 0.644567 0.469733 0.518461 0.465500 diff --git a/datasets/检测仪/val/labels/订单1806973_51_7111443.txt b/datasets/检测仪/val/labels/订单1806973_51_7111443.txt new file mode 100644 index 0000000..6d9a0df --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806973_51_7111443.txt @@ -0,0 +1 @@ +5 0.283194 0.459854 0.254961 0.481025 0.273783 0.627837 0.294483 0.663125 0.302017 0.774646 0.296367 0.828288 0.307661 0.893221 0.326483 0.910162 0.367889 0.911571 0.373539 0.896046 0.492111 0.886162 0.499644 0.897458 0.535406 0.897458 0.557989 0.869225 0.554222 0.802879 0.535406 0.777467 0.527872 0.641954 0.533522 0.606662 0.527872 0.466912 0.505289 0.442912 0.473289 0.445738 0.463883 0.454204 0.311428 0.462675 diff --git a/datasets/检测仪/val/labels/订单1806981_51_7111413.txt b/datasets/检测仪/val/labels/订单1806981_51_7111413.txt new file mode 100644 index 0000000..2469303 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806981_51_7111413.txt @@ -0,0 +1 @@ +5 0.403646 0.414678 0.367891 0.437266 0.369779 0.586895 0.379180 0.626426 0.373542 0.737939 0.364128 0.766172 0.375417 0.849463 0.392357 0.872051 0.424362 0.873457 0.435651 0.859346 0.557995 0.857930 0.567396 0.864990 0.593750 0.870635 0.612578 0.850869 0.629505 0.787354 0.616341 0.756299 0.618216 0.630664 0.635156 0.584072 0.644570 0.438682 0.625742 0.424561 0.595638 0.423154 0.580573 0.428799 0.428125 0.425977 diff --git a/datasets/检测仪/val/labels/订单1806982_51_7111416.txt b/datasets/检测仪/val/labels/订单1806982_51_7111416.txt new file mode 100644 index 0000000..a2f3c3a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806982_51_7111416.txt @@ -0,0 +1 @@ +5 0.328359 0.385039 0.307656 0.400566 0.320833 0.567139 0.343424 0.592549 0.362240 0.722412 0.358477 0.766172 0.375417 0.828291 0.398008 0.848047 0.428125 0.845225 0.433763 0.828291 0.552344 0.814170 0.561758 0.826875 0.584336 0.825459 0.610690 0.801465 0.620104 0.736533 0.603164 0.715361 0.591862 0.584072 0.603164 0.541729 0.593750 0.394922 0.569284 0.368096 0.542930 0.370918 0.535404 0.376563 0.362240 0.382217 diff --git a/datasets/检测仪/val/labels/订单1806984_51_7111472.txt b/datasets/检测仪/val/labels/订单1806984_51_7111472.txt new file mode 100644 index 0000000..53cffe6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806984_51_7111472.txt @@ -0,0 +1 @@ +5 0.332316 0.411869 0.300357 0.425978 0.306002 0.574204 0.321037 0.598201 0.332316 0.715363 0.315403 0.754888 0.330438 0.822647 0.351118 0.850882 0.383076 0.848054 0.394366 0.832526 0.514677 0.826886 0.522200 0.835355 0.554159 0.841003 0.574839 0.814178 0.584240 0.740770 0.565438 0.718192 0.559804 0.586903 0.563560 0.551618 0.559804 0.425978 0.527846 0.409040 0.507166 0.409040 0.507166 0.414689 0.356763 0.418927 diff --git a/datasets/检测仪/val/labels/订单1806987_51_7111464.txt b/datasets/检测仪/val/labels/订单1806987_51_7111464.txt new file mode 100644 index 0000000..2b0eef0 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806987_51_7111464.txt @@ -0,0 +1 @@ +5 0.269920 0.345570 0.226627 0.373810 0.237920 0.562970 0.266147 0.609550 0.271800 0.759180 0.256733 0.801530 0.269920 0.884820 0.290613 0.913050 0.332027 0.914460 0.339560 0.903170 0.488240 0.904580 0.503307 0.917280 0.537187 0.922930 0.565413 0.901760 0.591760 0.812820 0.576707 0.756360 0.572947 0.602490 0.588000 0.550260 0.597413 0.359690 0.559773 0.328640 0.524013 0.331460 0.512720 0.338520 0.307560 0.345570 diff --git a/datasets/检测仪/val/labels/订单1806990_51_7111507.txt b/datasets/检测仪/val/labels/订单1806990_51_7111507.txt new file mode 100644 index 0000000..afec900 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806990_51_7111507.txt @@ -0,0 +1 @@ +5 0.478840 0.325810 0.444960 0.342750 0.435547 0.498030 0.446840 0.536140 0.431787 0.636370 0.422373 0.667430 0.416720 0.730950 0.441187 0.754950 0.471307 0.754950 0.482600 0.742240 0.593653 0.749300 0.599293 0.762000 0.620000 0.760590 0.640707 0.745060 0.665173 0.687190 0.655760 0.664600 0.678347 0.550260 0.699053 0.512150 0.742333 0.365340 0.714107 0.342750 0.676467 0.338520 0.667053 0.345570 0.516480 0.332870 0.507067 0.330050 diff --git a/datasets/检测仪/val/labels/订单1806991_51_7111532.txt b/datasets/检测仪/val/labels/订单1806991_51_7111532.txt new file mode 100644 index 0000000..d0253e3 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806991_51_7111532.txt @@ -0,0 +1 @@ +5 0.281315 0.338457 0.247435 0.355391 0.239909 0.523379 0.258724 0.577021 0.247435 0.711123 0.224844 0.749238 0.230495 0.824053 0.247435 0.846641 0.279427 0.850869 0.288841 0.838164 0.424362 0.850869 0.433763 0.863574 0.477057 0.866396 0.497760 0.846641 0.529753 0.766172 0.524115 0.721006 0.533516 0.585488 0.559870 0.529023 0.578698 0.368096 0.544818 0.334219 0.512813 0.335625 0.503411 0.342686 0.317070 0.342686 diff --git a/datasets/检测仪/val/labels/订单1806992_51_7111542.txt b/datasets/检测仪/val/labels/订单1806992_51_7111542.txt new file mode 100644 index 0000000..5557213 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806992_51_7111542.txt @@ -0,0 +1 @@ +5 0.505187 0.279230 0.463773 0.304640 0.450600 0.450030 0.463773 0.509320 0.448720 0.629310 0.431787 0.670250 0.435547 0.736590 0.461893 0.762000 0.488240 0.763420 0.492013 0.752120 0.631293 0.760590 0.655760 0.774710 0.676467 0.757770 0.706573 0.688600 0.702813 0.658960 0.715987 0.531910 0.742333 0.481090 0.766800 0.331460 0.751747 0.298990 0.725400 0.298990 0.710347 0.301810 0.531533 0.290520 diff --git a/datasets/检测仪/val/labels/订单1806994_51_7111560.txt b/datasets/检测仪/val/labels/订单1806994_51_7111560.txt new file mode 100644 index 0000000..14b2bc3 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806994_51_7111560.txt @@ -0,0 +1 @@ +5 0.373542 0.289043 0.337773 0.317275 0.354714 0.490908 0.384831 0.531846 0.394245 0.661719 0.381068 0.697002 0.396120 0.770410 0.420586 0.807109 0.456354 0.802881 0.467643 0.788760 0.605039 0.780293 0.642682 0.791582 0.663385 0.768994 0.674687 0.699824 0.655859 0.663125 0.642682 0.519141 0.657747 0.482441 0.661510 0.310225 0.633281 0.281992 0.599401 0.283398 0.589987 0.291865 0.407422 0.297520 diff --git a/datasets/检测仪/val/labels/订单1806996_51_7111579.txt b/datasets/检测仪/val/labels/订单1806996_51_7111579.txt new file mode 100644 index 0000000..4016403 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806996_51_7111579.txt @@ -0,0 +1 @@ +5 0.571159 0.218467 0.539167 0.238223 0.520352 0.430205 0.535404 0.481025 0.516576 0.637715 0.495872 0.694180 0.499648 0.784531 0.516576 0.822637 0.563633 0.825459 0.576810 0.808525 0.757500 0.829697 0.787617 0.843818 0.823372 0.845225 0.866667 0.740762 0.859141 0.677246 0.868542 0.497969 0.893021 0.442910 0.917487 0.246699 0.881719 0.209990 0.840313 0.214229 0.589987 0.222695 diff --git a/datasets/检测仪/val/labels/订单1806997_51_7111589.txt b/datasets/检测仪/val/labels/订单1806997_51_7111589.txt new file mode 100644 index 0000000..88b9c26 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1806997_51_7111589.txt @@ -0,0 +1 @@ +5 0.691655 0.455642 0.654005 0.440113 0.467674 0.449991 0.424387 0.462700 0.256875 0.469757 0.222998 0.468342 0.127002 0.476814 0.106296 0.490929 0.106296 0.514931 0.125116 0.520573 0.127002 0.595391 0.115706 0.615156 0.110058 0.646207 0.132650 0.653264 0.247465 0.654679 0.268160 0.641970 0.426262 0.634913 0.462025 0.646207 0.676597 0.650443 0.702951 0.623620 0.697303 0.606684 0.684120 0.486693 diff --git a/datasets/检测仪/val/labels/订单1807000_51_7111608.txt b/datasets/检测仪/val/labels/订单1807000_51_7111608.txt new file mode 100644 index 0000000..97cb7c1 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807000_51_7111608.txt @@ -0,0 +1 @@ +5 0.371654 0.358213 0.343424 0.383623 0.339661 0.516318 0.362240 0.557256 0.354714 0.667363 0.330247 0.733711 0.347187 0.801465 0.367891 0.826875 0.420586 0.832520 0.418711 0.815586 0.550456 0.812764 0.569284 0.826875 0.591862 0.832520 0.642682 0.800059 0.642682 0.719590 0.627630 0.681475 0.616341 0.553018 0.625742 0.514902 0.620104 0.363857 0.588099 0.344102 0.557995 0.348330 0.548581 0.355391 0.401771 0.366689 diff --git a/datasets/检测仪/val/labels/订单1807001_51_7111603.txt b/datasets/检测仪/val/labels/订单1807001_51_7111603.txt new file mode 100644 index 0000000..d8d4c42 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807001_51_7111603.txt @@ -0,0 +1 @@ +5 0.138160 0.266520 0.096760 0.287700 0.091107 0.448620 0.111813 0.485330 0.104280 0.613780 0.083573 0.671660 0.092987 0.738010 0.113693 0.767650 0.155107 0.770470 0.160747 0.753530 0.300027 0.756360 0.313200 0.767650 0.339560 0.770470 0.377200 0.742240 0.397907 0.650490 0.380960 0.629310 0.382840 0.499440 0.401667 0.455680 0.416720 0.291930 0.379080 0.260880 0.354613 0.263700 0.339560 0.267940 0.162627 0.270760 diff --git a/datasets/检测仪/val/labels/订单1807006_51_7111644.txt b/datasets/检测仪/val/labels/订单1807006_51_7111644.txt new file mode 100644 index 0000000..cd2bf07 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807006_51_7111644.txt @@ -0,0 +1 @@ +5 0.264375 0.499375 0.238021 0.516318 0.249310 0.664541 0.273776 0.828291 0.254961 0.849463 0.273776 0.929922 0.286953 0.949688 0.317070 0.953926 0.326484 0.938398 0.448828 0.935566 0.463880 0.949688 0.490234 0.949688 0.518464 0.918633 0.529753 0.832520 0.514701 0.808525 0.501523 0.684297 0.510937 0.634893 0.507174 0.502197 0.473294 0.482441 0.454466 0.483848 0.445065 0.490908 0.298255 0.502197 diff --git a/datasets/检测仪/val/labels/订单1807008_51_7113981.txt b/datasets/检测仪/val/labels/订单1807008_51_7113981.txt new file mode 100644 index 0000000..6027536 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807008_51_7113981.txt @@ -0,0 +1 @@ +5 0.435651 0.314453 0.418711 0.331396 0.428125 0.471143 0.443177 0.492324 0.445065 0.596777 0.441289 0.627832 0.445065 0.681475 0.467643 0.704063 0.493997 0.704063 0.499648 0.692773 0.593750 0.688535 0.606927 0.698418 0.627630 0.697002 0.646445 0.687129 0.655859 0.615127 0.642682 0.601016 0.635156 0.490908 0.657747 0.449971 0.650221 0.331396 0.640807 0.314453 0.618216 0.311631 0.608802 0.317275 0.471406 0.315869 diff --git a/datasets/检测仪/val/labels/订单1807010_51_7111695.txt b/datasets/检测仪/val/labels/订单1807010_51_7111695.txt new file mode 100644 index 0000000..73cef10 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807010_51_7111695.txt @@ -0,0 +1 @@ +5 0.442789 0.437255 0.402011 0.437255 0.373778 0.445725 0.380056 0.547360 0.395733 0.560065 0.392600 0.640530 0.380056 0.670175 0.386322 0.706875 0.408278 0.720990 0.436511 0.722405 0.449067 0.716755 0.583956 0.715345 0.596500 0.728050 0.627867 0.726640 0.649833 0.709700 0.659233 0.664525 0.634144 0.646175 0.640422 0.567125 0.665511 0.538890 0.674922 0.447135 0.649833 0.434430 0.612189 0.435845 0.599633 0.441490 diff --git a/datasets/检测仪/val/labels/订单1807011_51_7111704.txt b/datasets/检测仪/val/labels/订单1807011_51_7111704.txt new file mode 100644 index 0000000..9aed969 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807011_51_7111704.txt @@ -0,0 +1 @@ +5 0.207923 0.270712 0.181577 0.291885 0.185346 0.449990 0.207923 0.483865 0.213577 0.615144 0.200397 0.656087 0.217333 0.722433 0.243692 0.752077 0.286974 0.750663 0.302038 0.730904 0.426256 0.719606 0.433782 0.732308 0.467667 0.733721 0.492128 0.704077 0.494013 0.640558 0.480846 0.603856 0.463897 0.472577 0.477077 0.421750 0.469551 0.300356 0.445077 0.277769 0.413077 0.276356 0.407436 0.280587 0.245564 0.279183 diff --git a/datasets/检测仪/val/labels/订单1807012_51_7111662.txt b/datasets/检测仪/val/labels/订单1807012_51_7111662.txt new file mode 100644 index 0000000..b45eb38 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807012_51_7111662.txt @@ -0,0 +1 @@ +5 0.368824 0.475373 0.348118 0.489490 0.338706 0.598186 0.350000 0.622176 0.357529 0.725225 0.342471 0.756284 0.348118 0.809931 0.366941 0.831098 0.393294 0.831098 0.402706 0.816990 0.494928 0.815578 0.504340 0.826863 0.534458 0.828275 0.551386 0.808520 0.560797 0.747814 0.553268 0.726637 0.547621 0.626412 0.558915 0.588304 0.557033 0.492314 0.541974 0.469725 0.519399 0.468314 0.509987 0.473961 0.395176 0.481020 diff --git a/datasets/检测仪/val/labels/订单1807014_51_7111680.txt b/datasets/检测仪/val/labels/订单1807014_51_7111680.txt new file mode 100644 index 0000000..56b9c2b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807014_51_7111680.txt @@ -0,0 +1 @@ +5 0.429913 0.274942 0.414028 0.305995 0.465911 0.568553 0.489201 0.709722 0.488142 0.784537 0.510373 0.886169 0.542135 0.927106 0.578134 0.912998 0.580252 0.887581 0.669184 0.865000 0.682943 0.874884 0.714705 0.872060 0.728472 0.829711 0.717882 0.716782 0.697769 0.677257 0.663889 0.502211 0.664948 0.442928 0.627891 0.260822 0.606719 0.239653 0.584488 0.245301 0.579193 0.248125 0.460616 0.274942 diff --git a/datasets/检测仪/val/labels/订单1807017_51_7111731.txt b/datasets/检测仪/val/labels/订单1807017_51_7111731.txt new file mode 100644 index 0000000..9893bf5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807017_51_7111731.txt @@ -0,0 +1 @@ +5 0.414948 0.478203 0.381068 0.495146 0.366003 0.650420 0.375417 0.671592 0.367891 0.808525 0.339661 0.848047 0.343424 0.924277 0.364128 0.959570 0.411185 0.966631 0.416823 0.952510 0.554219 0.953926 0.565521 0.968037 0.601276 0.973682 0.637044 0.946865 0.646445 0.857930 0.635156 0.824053 0.635156 0.677246 0.652096 0.616543 0.655859 0.503613 0.631393 0.489492 0.610690 0.485264 0.591862 0.488086 0.441289 0.481025 diff --git a/datasets/检测仪/val/labels/订单1807020_51_7111739.txt b/datasets/检测仪/val/labels/订单1807020_51_7111739.txt new file mode 100644 index 0000000..a674594 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807020_51_7111739.txt @@ -0,0 +1 @@ +5 0.366941 0.329971 0.340588 0.358206 0.353765 0.506431 0.376353 0.545951 0.395176 0.674412 0.383882 0.704059 0.398941 0.774637 0.421516 0.801461 0.453516 0.800049 0.464810 0.784520 0.581503 0.776049 0.592797 0.788755 0.628562 0.791578 0.649268 0.763343 0.658680 0.692765 0.643621 0.668765 0.636092 0.534657 0.649268 0.468314 0.641739 0.335618 0.605974 0.315863 0.577739 0.317275 0.570209 0.324324 0.402706 0.332794 diff --git a/datasets/检测仪/val/labels/订单1807021_51_7111752.txt b/datasets/检测仪/val/labels/订单1807021_51_7111752.txt new file mode 100644 index 0000000..59557dd --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807021_51_7111752.txt @@ -0,0 +1 @@ +5 0.460013 0.416160 0.437427 0.431680 0.412960 0.594020 0.422373 0.625080 0.407307 0.746480 0.412960 0.771890 0.390373 0.805760 0.384733 0.876350 0.401667 0.910220 0.448720 0.911640 0.452480 0.898930 0.580467 0.910220 0.593653 0.922930 0.620000 0.925750 0.640707 0.904580 0.663293 0.831170 0.657640 0.790240 0.682107 0.657540 0.700933 0.595430 0.719747 0.469800 0.708453 0.440150 0.676467 0.433100 0.663293 0.437330 0.501427 0.423210 diff --git a/datasets/检测仪/val/labels/订单1807024_51_7111799.txt b/datasets/检测仪/val/labels/订单1807024_51_7111799.txt new file mode 100644 index 0000000..163986d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807024_51_7111799.txt @@ -0,0 +1 @@ +5 0.228507 0.332870 0.183333 0.365340 0.168280 0.618020 0.190867 0.673070 0.194627 0.839640 0.166400 0.893290 0.183333 0.989280 0.201213 1.000000 0.361920 1.000000 0.450600 0.996330 0.529653 0.992100 0.565413 0.898930 0.550360 0.855170 0.571067 0.678720 0.603053 0.605310 0.644467 0.393570 0.601173 0.354040 0.552240 0.349810 0.542827 0.359690 0.284973 0.346990 0.271800 0.337100 diff --git a/datasets/检测仪/val/labels/订单1807025_51_7111816.txt b/datasets/检测仪/val/labels/订单1807025_51_7111816.txt new file mode 100644 index 0000000..b69a3f1 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807025_51_7111816.txt @@ -0,0 +1 @@ +5 0.413987 0.373735 0.370706 0.394912 0.361294 0.551598 0.376353 0.596775 0.359412 0.740755 0.340588 0.781696 0.340588 0.863569 0.370706 0.905922 0.410222 0.903098 0.425281 0.890392 0.562680 0.894627 0.573974 0.903098 0.617268 0.911569 0.651150 0.880510 0.649268 0.863569 0.666209 0.788755 0.649268 0.756284 0.649268 0.605245 0.669961 0.569951 0.679373 0.414676 0.647386 0.387853 0.613503 0.389265 0.605974 0.392088 0.444105 0.385029 diff --git a/datasets/检测仪/val/labels/订单1807028_51_7111855.txt b/datasets/检测仪/val/labels/订单1807028_51_7111855.txt new file mode 100644 index 0000000..1f49a5e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807028_51_7111855.txt @@ -0,0 +1 @@ +5 0.258724 0.425977 0.228607 0.438682 0.181549 0.551611 0.189089 0.579844 0.149557 0.673008 0.113802 0.713945 0.094974 0.766172 0.102500 0.784531 0.132617 0.795820 0.145794 0.788760 0.251198 0.802881 0.254961 0.814170 0.273776 0.821230 0.305781 0.808525 0.337773 0.753467 0.334010 0.718184 0.371654 0.622188 0.396120 0.591133 0.441289 0.481025 0.428125 0.459854 0.416823 0.457031 0.396120 0.458437 0.288841 0.438682 diff --git a/datasets/检测仪/val/labels/订单1807033_51_7111848.txt b/datasets/检测仪/val/labels/订单1807033_51_7111848.txt new file mode 100644 index 0000000..a340597 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807033_51_7111848.txt @@ -0,0 +1 @@ +5 0.341539 0.294692 0.317072 0.294692 0.305778 0.307396 0.305778 0.318692 0.258722 0.393504 0.239906 0.393504 0.224844 0.406212 0.234256 0.424563 0.303894 0.471146 0.339656 0.475379 0.448822 0.531846 0.477056 0.561488 0.642689 0.644775 0.674683 0.639129 0.682211 0.623600 0.682211 0.606662 0.753733 0.517729 0.774439 0.516317 0.795144 0.499379 0.785733 0.473967 0.603161 0.401975 0.584339 0.397742 0.448822 0.351158 0.411178 0.311633 diff --git a/datasets/检测仪/val/labels/订单1807034_51_7111852.txt b/datasets/检测仪/val/labels/订单1807034_51_7111852.txt new file mode 100644 index 0000000..fa0153f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807034_51_7111852.txt @@ -0,0 +1 @@ +5 0.660553 0.465607 0.626673 0.481133 0.601267 0.612413 0.606913 0.640647 0.582913 0.759227 0.558913 0.808633 0.556093 0.869333 0.570207 0.921560 0.605500 0.930033 0.613967 0.913093 0.709960 0.928620 0.711373 0.944147 0.750893 0.959673 0.767833 0.945560 0.796067 0.860860 0.790420 0.819927 0.807360 0.694293 0.821480 0.653353 0.841240 0.505133 0.825713 0.483960 0.808773 0.482547 0.794660 0.485367 0.673260 0.471253 diff --git a/datasets/检测仪/val/labels/订单1807036_51_7111866.txt b/datasets/检测仪/val/labels/订单1807036_51_7111866.txt new file mode 100644 index 0000000..f21ff31 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807036_51_7111866.txt @@ -0,0 +1 @@ +5 0.482449 0.389335 0.451987 0.409097 0.440564 0.540380 0.457705 0.577082 0.442474 0.688593 0.429141 0.730951 0.431051 0.788821 0.444372 0.818470 0.482449 0.818470 0.491974 0.808584 0.604308 0.819876 0.657615 0.835409 0.667128 0.819876 0.697590 0.743650 0.689974 0.706949 0.691885 0.575665 0.712821 0.537557 0.724244 0.407681 0.699500 0.385095 0.653808 0.385095 0.646192 0.390741 0.503397 0.389335 diff --git a/datasets/检测仪/val/labels/订单1807039_51_7111877.txt b/datasets/检测仪/val/labels/订单1807039_51_7111877.txt new file mode 100644 index 0000000..ae050f4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807039_51_7111877.txt @@ -0,0 +1 @@ +5 0.369667 0.512150 0.360253 0.537560 0.433667 0.643430 0.456253 0.661780 0.522120 0.742240 0.520240 0.763420 0.561653 0.817060 0.588000 0.825530 0.620000 0.818470 0.620000 0.807180 0.714107 0.766240 0.725400 0.767650 0.746107 0.742240 0.715987 0.682950 0.685880 0.667430 0.616227 0.582730 0.612467 0.562970 0.546587 0.471210 0.520240 0.464150 0.507067 0.469800 0.394133 0.505090 diff --git a/datasets/检测仪/val/labels/订单1807041_51_7111977.txt b/datasets/检测仪/val/labels/订单1807041_51_7111977.txt new file mode 100644 index 0000000..46c48a7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807041_51_7111977.txt @@ -0,0 +1 @@ +5 0.251198 0.427383 0.221081 0.445732 0.224844 0.612305 0.238021 0.644775 0.241784 0.771826 0.232370 0.831113 0.241784 0.890400 0.266250 0.921455 0.303893 0.921455 0.315195 0.908750 0.441289 0.904512 0.452591 0.912988 0.482708 0.912988 0.516576 0.887578 0.524115 0.809932 0.516576 0.778877 0.497760 0.640537 0.512813 0.599600 0.514701 0.442910 0.490234 0.420322 0.458229 0.424561 0.448828 0.428799 0.283190 0.431621 diff --git a/datasets/检测仪/val/labels/订单1807042_51_7111966.txt b/datasets/检测仪/val/labels/订单1807042_51_7111966.txt new file mode 100644 index 0000000..d644025 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807042_51_7111966.txt @@ -0,0 +1 @@ +5 0.372676 0.416159 0.352563 0.441569 0.352563 0.458509 0.358916 0.466979 0.350444 0.598255 0.345151 0.618021 0.343032 0.632135 0.361030 0.657546 0.492314 0.657546 0.524072 0.640605 0.632065 0.647663 0.656416 0.658958 0.719937 0.650488 0.736875 0.633548 0.738994 0.599668 0.728408 0.584141 0.728408 0.492383 0.736875 0.481094 0.737935 0.448626 0.714644 0.423216 0.659590 0.416159 0.628887 0.428861 0.499722 0.417572 0.385381 0.416159 diff --git a/datasets/检测仪/val/labels/订单1807047_51_7112008.txt b/datasets/检测仪/val/labels/订单1807047_51_7112008.txt new file mode 100644 index 0000000..974c16f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807047_51_7112008.txt @@ -0,0 +1 @@ +5 0.160846 0.409033 0.108151 0.444326 0.134505 0.650420 0.153320 0.685713 0.162734 0.815586 0.147682 0.876279 0.162734 0.925693 0.175911 0.952510 0.230495 0.958154 0.239909 0.942627 0.381068 0.934160 0.396120 0.949688 0.435651 0.948271 0.458229 0.924277 0.477057 0.840996 0.465768 0.809932 0.462005 0.675830 0.488346 0.629248 0.507174 0.447148 0.475169 0.414678 0.435651 0.411855 0.420586 0.421738 0.217318 0.424561 0.198490 0.410449 diff --git a/datasets/检测仪/val/labels/订单1807051_51_7111954.txt b/datasets/检测仪/val/labels/订单1807051_51_7111954.txt new file mode 100644 index 0000000..c7ad69c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807051_51_7111954.txt @@ -0,0 +1 @@ +5 0.149557 0.197295 0.104388 0.232578 0.132617 0.495146 0.149557 0.529023 0.162734 0.701240 0.155208 0.760527 0.179674 0.842402 0.204141 0.869229 0.254961 0.872051 0.260612 0.856523 0.431888 0.852285 0.435651 0.863574 0.471406 0.867812 0.510937 0.848047 0.531641 0.771826 0.524115 0.709707 0.529753 0.547373 0.563633 0.454209 0.578698 0.238223 0.539167 0.202939 0.492109 0.202939 0.478932 0.214229 0.217318 0.211406 0.202266 0.201523 diff --git a/datasets/检测仪/val/labels/订单1807054_51_7112064.txt b/datasets/检测仪/val/labels/订单1807054_51_7112064.txt new file mode 100644 index 0000000..8c99cf5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807054_51_7112064.txt @@ -0,0 +1 @@ +5 0.354717 0.346921 0.320833 0.366683 0.324600 0.503613 0.349067 0.551608 0.354717 0.660304 0.341539 0.698417 0.350950 0.743587 0.379183 0.773233 0.405533 0.770408 0.413061 0.760529 0.512817 0.760529 0.524111 0.767587 0.556106 0.770408 0.569283 0.753471 0.591867 0.688538 0.580578 0.661717 0.576811 0.555842 0.597517 0.500788 0.606928 0.366683 0.576811 0.342688 0.546694 0.345513 0.535406 0.353979 0.388594 0.353979 diff --git a/datasets/检测仪/val/labels/订单1807056_51_7112029.txt b/datasets/检测仪/val/labels/订单1807056_51_7112029.txt new file mode 100644 index 0000000..ad0b262 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807056_51_7112029.txt @@ -0,0 +1 @@ +5 0.701029 0.304570 0.648333 0.296104 0.465768 0.373740 0.433763 0.400566 0.275664 0.458437 0.215430 0.469736 0.119440 0.513496 0.091211 0.541729 0.108151 0.567139 0.126979 0.565723 0.204141 0.667363 0.196615 0.678652 0.202266 0.698418 0.241784 0.701240 0.334010 0.678652 0.379180 0.651836 0.542930 0.579844 0.591862 0.579844 0.800794 0.505029 0.817734 0.473965 0.802669 0.452793 0.789492 0.449971 0.708568 0.322930 diff --git a/datasets/检测仪/val/labels/订单1807061_51_7112116.txt b/datasets/检测仪/val/labels/订单1807061_51_7112116.txt new file mode 100644 index 0000000..7f3e967 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807061_51_7112116.txt @@ -0,0 +1 @@ +5 0.243667 0.349746 0.209789 0.376567 0.224844 0.541725 0.243667 0.575604 0.258722 0.691358 0.254961 0.730883 0.260606 0.783117 0.286956 0.802879 0.317072 0.802879 0.322717 0.791583 0.452589 0.792996 0.482700 0.795821 0.501522 0.783117 0.516583 0.712533 0.510933 0.681479 0.514700 0.579842 0.529756 0.527613 0.539167 0.373742 0.503406 0.345513 0.478939 0.348333 0.458233 0.361038 0.286956 0.359625 diff --git a/datasets/检测仪/val/labels/订单1807065_51_7112141.txt b/datasets/检测仪/val/labels/订单1807065_51_7112141.txt new file mode 100644 index 0000000..9744880 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807065_51_7112141.txt @@ -0,0 +1 @@ +5 0.371654 0.473965 0.328359 0.500791 0.349062 0.665947 0.356602 0.692773 0.366003 0.764766 0.360365 0.808525 0.371654 0.866396 0.390482 0.886162 0.411185 0.884756 0.418711 0.873457 0.525990 0.870635 0.535404 0.880518 0.561758 0.881924 0.586224 0.864990 0.593750 0.819814 0.586224 0.778877 0.580573 0.674424 0.597513 0.639131 0.606927 0.495146 0.584336 0.469736 0.550456 0.473965 0.539167 0.481025 0.399883 0.485264 diff --git a/datasets/检测仪/val/labels/订单1807066_51_7112143.txt b/datasets/检测仪/val/labels/订单1807066_51_7112143.txt new file mode 100644 index 0000000..5942cd7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807066_51_7112143.txt @@ -0,0 +1 @@ +5 0.057359 0.331413 0.023474 0.356817 0.078051 0.523394 0.100641 0.541740 0.136397 0.665962 0.138282 0.709721 0.153346 0.753490 0.177808 0.780308 0.213577 0.778894 0.222987 0.766192 0.337795 0.740779 0.360385 0.753490 0.388615 0.749250 0.396141 0.728077 0.405551 0.656087 0.384846 0.630673 0.358500 0.514923 0.362269 0.478221 0.339679 0.331413 0.302038 0.307413 0.279449 0.310231 0.271923 0.318702 0.106295 0.335644 diff --git a/datasets/检测仪/val/labels/订单1807069_51_7112243.txt b/datasets/检测仪/val/labels/订单1807069_51_7112243.txt new file mode 100644 index 0000000..cbd04f2 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807069_51_7112243.txt @@ -0,0 +1 @@ +5 0.415059 0.409144 0.386471 0.426078 0.376941 0.435961 0.378000 0.464196 0.379059 0.472667 0.340946 0.647706 0.326123 0.687229 0.344123 0.733817 0.357887 0.742288 0.547397 0.781810 0.586569 0.774752 0.746436 0.815686 0.789843 0.839686 0.886186 0.850980 0.939123 0.819922 0.940181 0.760634 0.925358 0.750752 0.926417 0.594065 0.935946 0.588418 0.938064 0.544660 0.908422 0.509366 0.819485 0.481131 0.775020 0.489601 0.617275 0.465608 0.604569 0.454314 0.417176 0.411967 diff --git a/datasets/检测仪/val/labels/订单1807070_51_7112196.txt b/datasets/检测仪/val/labels/订单1807070_51_7112196.txt new file mode 100644 index 0000000..03a7695 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807070_51_7112196.txt @@ -0,0 +1 @@ +5 0.367895 0.332807 0.337778 0.353980 0.337778 0.509254 0.358480 0.554430 0.364123 0.688531 0.345307 0.736524 0.356594 0.802873 0.382939 0.825461 0.416827 0.828289 0.426243 0.815581 0.567398 0.808520 0.565512 0.822643 0.601272 0.826875 0.627632 0.802873 0.642690 0.725241 0.631389 0.684298 0.623860 0.554430 0.644561 0.490910 0.640804 0.348333 0.612573 0.327160 0.576813 0.329978 0.567398 0.335625 0.405526 0.341272 diff --git a/datasets/检测仪/val/labels/订单1807073_51_7112179.txt b/datasets/检测仪/val/labels/订单1807073_51_7112179.txt new file mode 100644 index 0000000..7988f62 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807073_51_7112179.txt @@ -0,0 +1 @@ +5 0.232370 0.416094 0.202266 0.431621 0.168385 0.561494 0.179674 0.586895 0.158971 0.701240 0.132617 0.746416 0.125091 0.807109 0.132617 0.840996 0.174023 0.846641 0.175911 0.835342 0.309544 0.843818 0.341536 0.856523 0.371654 0.840996 0.399883 0.767588 0.388594 0.737939 0.411185 0.610898 0.428125 0.574189 0.454466 0.452793 0.428125 0.430205 0.405534 0.427383 0.399883 0.428799 0.243672 0.420322 diff --git a/datasets/检测仪/val/labels/订单1807074_51_7113123.txt b/datasets/检测仪/val/labels/订单1807074_51_7113123.txt new file mode 100644 index 0000000..e14622b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807074_51_7113123.txt @@ -0,0 +1 @@ +5 0.382943 0.423154 0.339661 0.430205 0.324596 0.459854 0.394245 0.613721 0.420586 0.639131 0.467643 0.730889 0.463880 0.770410 0.497760 0.816992 0.539167 0.836758 0.559870 0.816992 0.663385 0.795820 0.676563 0.802881 0.699154 0.801465 0.712331 0.781699 0.717969 0.723828 0.689740 0.702656 0.655859 0.591133 0.653984 0.541729 0.614453 0.393506 0.586224 0.385039 0.546693 0.390684 0.541055 0.397744 0.401771 0.433027 diff --git a/datasets/检测仪/val/labels/订单1807076_51_7112165.txt b/datasets/检测仪/val/labels/订单1807076_51_7112165.txt new file mode 100644 index 0000000..021b38f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807076_51_7112165.txt @@ -0,0 +1 @@ +5 0.322721 0.430205 0.309544 0.447148 0.320833 0.571367 0.337773 0.593955 0.339661 0.697002 0.334010 0.730889 0.341536 0.785937 0.356602 0.805703 0.381068 0.808525 0.388594 0.797227 0.493997 0.795820 0.505286 0.805703 0.535404 0.807109 0.556107 0.785937 0.569284 0.723828 0.548581 0.694180 0.544818 0.581250 0.554219 0.531846 0.544818 0.428799 0.520352 0.410449 0.495872 0.411855 0.486471 0.417500 0.354714 0.433027 diff --git a/datasets/检测仪/val/labels/订单1807077_51_7112279.txt b/datasets/检测仪/val/labels/订单1807077_51_7112279.txt new file mode 100644 index 0000000..32038b5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807077_51_7112279.txt @@ -0,0 +1 @@ +5 0.110385 0.393543 0.062701 0.414716 0.070231 0.571404 0.095325 0.616577 0.115402 0.754918 0.105368 0.802913 0.130462 0.870668 0.163085 0.893255 0.205752 0.893255 0.223316 0.880553 0.404000 0.863611 0.411530 0.877731 0.456701 0.879139 0.484308 0.857966 0.499368 0.784563 0.476778 0.752096 0.461726 0.605284 0.476778 0.565760 0.474274 0.407659 0.439137 0.383659 0.398983 0.385072 0.383923 0.390716 0.163085 0.397774 diff --git a/datasets/检测仪/val/labels/订单1807079_51_7112332.txt b/datasets/检测仪/val/labels/订单1807079_51_7112332.txt new file mode 100644 index 0000000..2d038e5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807079_51_7112332.txt @@ -0,0 +1 @@ +5 0.211753 0.270762 0.170464 0.314518 0.168345 0.356868 0.174697 0.379453 0.179990 0.654720 0.168345 0.681543 0.166226 0.718249 0.203281 0.766243 0.236104 0.771888 0.475371 0.762005 0.535718 0.729538 0.755933 0.728125 0.810986 0.750716 0.842749 0.742246 0.915801 0.728125 0.953916 0.692839 0.957090 0.634961 0.946504 0.620846 0.939092 0.414746 0.957090 0.404863 0.953916 0.341341 0.922153 0.304642 0.900977 0.303229 0.818398 0.284876 0.748521 0.300404 0.542070 0.306048 0.512427 0.289115 0.212812 0.270762 diff --git a/datasets/检测仪/val/labels/订单1807081_51_7112220.txt b/datasets/检测仪/val/labels/订单1807081_51_7112220.txt new file mode 100644 index 0000000..5127edf --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807081_51_7112220.txt @@ -0,0 +1 @@ +5 0.453541 0.438685 0.410254 0.468330 0.421546 0.643374 0.436597 0.657491 0.442249 0.801471 0.432837 0.850882 0.444129 0.932751 0.468593 0.965225 0.510000 0.965225 0.517532 0.955337 0.660577 0.948279 0.675640 0.959576 0.715156 0.966635 0.732099 0.942638 0.743391 0.850882 0.724567 0.805709 0.715156 0.654663 0.728339 0.602431 0.715156 0.459862 0.683160 0.430216 0.656817 0.434455 0.647405 0.440095 0.487416 0.445744 diff --git a/datasets/检测仪/val/labels/订单1807082_51_7112235.txt b/datasets/检测仪/val/labels/订单1807082_51_7112235.txt new file mode 100644 index 0000000..b18d94b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807082_51_7112235.txt @@ -0,0 +1 @@ +5 0.373542 0.372334 0.337773 0.397744 0.305781 0.586895 0.318958 0.617959 0.281315 0.773232 0.262487 0.826875 0.253073 0.904512 0.279427 0.939805 0.317070 0.949688 0.328359 0.934160 0.495872 0.951094 0.499648 0.963799 0.539167 0.972275 0.578698 0.948271 0.625742 0.843818 0.606927 0.797227 0.627630 0.647598 0.650221 0.584072 0.680326 0.414678 0.655859 0.386445 0.618216 0.383623 0.601276 0.389268 0.411185 0.379395 diff --git a/datasets/检测仪/val/labels/订单1807088_51_7112349.txt b/datasets/检测仪/val/labels/订单1807088_51_7112349.txt new file mode 100644 index 0000000..beb4101 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807088_51_7112349.txt @@ -0,0 +1 @@ +5 0.270954 0.407618 0.235190 0.431608 0.248366 0.610892 0.274706 0.664529 0.280353 0.791578 0.280353 0.828275 0.286000 0.894627 0.310471 0.924265 0.342471 0.924265 0.350000 0.915804 0.479869 0.920029 0.530693 0.922853 0.549503 0.897451 0.572092 0.824039 0.553268 0.795814 0.553268 0.661706 0.577739 0.603833 0.583386 0.431608 0.555150 0.409029 0.526928 0.406206 0.508105 0.413265 0.319882 0.416088 0.312353 0.410441 diff --git a/datasets/检测仪/val/labels/订单1807094_51_7112419.txt b/datasets/检测仪/val/labels/订单1807094_51_7112419.txt new file mode 100644 index 0000000..fddb07e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807094_51_7112419.txt @@ -0,0 +1 @@ +5 0.579126 0.365339 0.557954 0.345579 0.426670 0.346986 0.402319 0.358281 0.298564 0.355456 0.247749 0.348398 0.209634 0.356868 0.202222 0.368164 0.199048 0.390749 0.205400 0.400632 0.206460 0.489564 0.202222 0.507917 0.193755 0.526263 0.208574 0.555911 0.273159 0.568613 0.287979 0.554499 0.398086 0.562969 0.429849 0.575671 0.554775 0.595436 0.571714 0.571439 0.571714 0.550260 0.566421 0.541790 0.572773 0.406276 0.580186 0.397806 diff --git a/datasets/检测仪/val/labels/订单1807095_51_7112473.txt b/datasets/检测仪/val/labels/订单1807095_51_7112473.txt new file mode 100644 index 0000000..aad5376 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807095_51_7112473.txt @@ -0,0 +1 @@ +5 0.311320 0.393570 0.286853 0.421800 0.343320 0.598260 0.360253 0.623660 0.392253 0.732360 0.394133 0.778940 0.422373 0.848110 0.441187 0.865050 0.480720 0.862230 0.482600 0.850940 0.610587 0.834000 0.616227 0.843880 0.650107 0.843880 0.670813 0.819880 0.674587 0.746480 0.652000 0.705540 0.627520 0.584140 0.635053 0.537560 0.612467 0.382280 0.571067 0.355460 0.539067 0.359690 0.533413 0.372400 0.358373 0.394980 0.348960 0.389340 diff --git a/datasets/检测仪/val/labels/订单1807097_51_7112451.txt b/datasets/检测仪/val/labels/订单1807097_51_7112451.txt new file mode 100644 index 0000000..2678dea --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807097_51_7112451.txt @@ -0,0 +1 @@ +5 0.604947 0.332870 0.586120 0.345570 0.586120 0.431680 0.599293 0.445800 0.597413 0.505090 0.582360 0.529090 0.588000 0.558730 0.601173 0.574260 0.618120 0.578490 0.623760 0.570020 0.687760 0.571430 0.697160 0.581320 0.715987 0.581320 0.727280 0.568610 0.738573 0.533320 0.729160 0.513560 0.731040 0.438740 0.744227 0.421800 0.755520 0.334280 0.738573 0.322990 0.723520 0.325810 0.708453 0.328640 0.610587 0.328640 diff --git a/datasets/检测仪/val/labels/订单1807107_51_7112611.txt b/datasets/检测仪/val/labels/订单1807107_51_7112611.txt new file mode 100644 index 0000000..1f3150f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807107_51_7112611.txt @@ -0,0 +1 @@ +5 0.364128 0.449971 0.341536 0.472559 0.369779 0.644775 0.388594 0.673008 0.409297 0.790176 0.413060 0.850869 0.435651 0.942627 0.458229 0.970859 0.507174 0.966631 0.520352 0.949688 0.655859 0.922861 0.661510 0.936982 0.701029 0.935566 0.717969 0.901689 0.710443 0.829697 0.680326 0.780293 0.659622 0.656064 0.661510 0.599600 0.638919 0.454209 0.608802 0.433027 0.580573 0.431621 0.573047 0.438682 0.411185 0.452793 diff --git a/datasets/检测仪/val/labels/订单1807111_51_7112561.txt b/datasets/检测仪/val/labels/订单1807111_51_7112561.txt new file mode 100644 index 0000000..b52671c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807111_51_7112561.txt @@ -0,0 +1 @@ +5 0.095251 0.596807 0.051070 0.599629 0.047915 0.616572 0.193090 0.711147 0.243592 0.725264 0.344585 0.791611 0.369836 0.821255 0.448745 0.857959 0.486616 0.862192 0.537107 0.852310 0.530797 0.842432 0.647576 0.793022 0.672828 0.794434 0.688603 0.781729 0.685448 0.756323 0.650731 0.737969 0.597074 0.709736 0.574989 0.702681 0.464520 0.640566 0.442424 0.619395 0.306714 0.529048 0.278308 0.531875 0.107882 0.589751 diff --git a/datasets/检测仪/val/labels/订单1807117_51_7112521.txt b/datasets/检测仪/val/labels/订单1807117_51_7112521.txt new file mode 100644 index 0000000..07f405f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807117_51_7112521.txt @@ -0,0 +1 @@ +5 0.313642 0.345530 0.288534 0.365295 0.306111 0.488108 0.328688 0.520573 0.336219 0.605269 0.348765 0.633507 0.331204 0.661736 0.338735 0.716788 0.373858 0.746432 0.408997 0.743611 0.416528 0.736554 0.562083 0.726675 0.577145 0.736554 0.619799 0.736554 0.652423 0.712552 0.670000 0.653264 0.647407 0.630677 0.619799 0.517752 0.637377 0.478229 0.624815 0.344123 0.574630 0.320122 0.547022 0.318715 0.534475 0.325773 0.336219 0.348359 diff --git a/datasets/检测仪/val/labels/订单1807118_51_7112530.txt b/datasets/检测仪/val/labels/订单1807118_51_7112530.txt new file mode 100644 index 0000000..ee84fb1 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807118_51_7112530.txt @@ -0,0 +1 @@ +5 0.411185 0.406211 0.377305 0.417500 0.375417 0.560078 0.384831 0.575605 0.375417 0.670186 0.358477 0.706885 0.366003 0.759121 0.379180 0.776055 0.411185 0.783115 0.418711 0.771826 0.516576 0.771826 0.531641 0.781699 0.559870 0.768994 0.586224 0.709707 0.571159 0.692773 0.574935 0.584072 0.601276 0.538906 0.606927 0.428799 0.591862 0.414678 0.567396 0.410449 0.559870 0.418916 0.430000 0.411855 diff --git a/datasets/检测仪/val/labels/订单1807121_51_7112649.txt b/datasets/检测仪/val/labels/订单1807121_51_7112649.txt new file mode 100644 index 0000000..556a1a4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807121_51_7112649.txt @@ -0,0 +1 @@ +5 0.572947 0.279230 0.548480 0.290520 0.537187 0.394980 0.548480 0.424630 0.531533 0.503680 0.524013 0.533320 0.525893 0.575670 0.533413 0.591200 0.559773 0.596840 0.565413 0.586960 0.646347 0.596840 0.652000 0.605310 0.676467 0.608140 0.700933 0.595430 0.715987 0.551670 0.710347 0.526260 0.719747 0.437330 0.740453 0.416160 0.759280 0.297580 0.736693 0.274990 0.708453 0.274990 0.704693 0.280640 0.595533 0.282050 diff --git a/datasets/检测仪/val/labels/订单1807123_51_7112602.txt b/datasets/检测仪/val/labels/订单1807123_51_7112602.txt new file mode 100644 index 0000000..323fe0c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807123_51_7112602.txt @@ -0,0 +1 @@ +5 0.285078 0.438682 0.251198 0.462676 0.262487 0.636309 0.290716 0.674424 0.296367 0.824053 0.275664 0.872051 0.292604 0.952510 0.322721 0.976504 0.352839 0.976504 0.371654 0.960977 0.516576 0.945449 0.525990 0.960977 0.548581 0.960977 0.584336 0.931338 0.591862 0.843818 0.565521 0.798643 0.552344 0.660303 0.565521 0.610898 0.561758 0.452793 0.522227 0.427383 0.497760 0.431621 0.486471 0.441504 0.307656 0.442910 diff --git a/datasets/检测仪/val/labels/订单1807124_51_7112644.txt b/datasets/检测仪/val/labels/订单1807124_51_7112644.txt new file mode 100644 index 0000000..71b2ad7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807124_51_7112644.txt @@ -0,0 +1 @@ +5 0.377305 0.492324 0.347187 0.514902 0.364128 0.665947 0.377305 0.682891 0.386706 0.784531 0.379180 0.816992 0.390482 0.879102 0.413060 0.897461 0.443177 0.897461 0.448828 0.884756 0.552344 0.880518 0.559870 0.890400 0.586224 0.894629 0.605039 0.876279 0.618216 0.819814 0.605039 0.794404 0.601276 0.677246 0.614453 0.637715 0.608802 0.503613 0.582461 0.481025 0.546693 0.486670 0.546693 0.492324 0.411185 0.499375 0.401771 0.493730 diff --git a/datasets/检测仪/val/labels/订单1807127_51_7112692.txt b/datasets/检测仪/val/labels/订单1807127_51_7112692.txt new file mode 100644 index 0000000..bc1d6ba --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807127_51_7112692.txt @@ -0,0 +1 @@ +5 0.398320 0.403382 0.366445 0.431608 0.358945 0.598186 0.385195 0.636294 0.379570 0.776049 0.355195 0.825451 0.370195 0.910157 0.390820 0.932735 0.424557 0.938382 0.439557 0.924265 0.582044 0.931324 0.585794 0.942618 0.630794 0.952500 0.668281 0.912980 0.679531 0.838157 0.666419 0.790167 0.670156 0.634882 0.677656 0.591127 0.683281 0.420324 0.645794 0.397735 0.617669 0.399147 0.612044 0.403382 0.428307 0.411853 0.426432 0.404794 diff --git a/datasets/检测仪/val/labels/订单1807130_51_7112696.txt b/datasets/检测仪/val/labels/订单1807130_51_7112696.txt new file mode 100644 index 0000000..868ad62 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807130_51_7112696.txt @@ -0,0 +1 @@ +5 0.480820 0.373740 0.460117 0.383623 0.450703 0.490908 0.460117 0.509258 0.452591 0.603838 0.435651 0.632070 0.439414 0.688535 0.460117 0.706885 0.480820 0.708301 0.492109 0.697002 0.591862 0.701240 0.593750 0.708301 0.620104 0.712529 0.648333 0.699824 0.661510 0.641953 0.652096 0.610898 0.653984 0.527607 0.667161 0.490908 0.672799 0.382217 0.648333 0.370918 0.631393 0.372334 0.509049 0.375156 diff --git a/datasets/检测仪/val/labels/订单1807131_51_7112684.txt b/datasets/检测仪/val/labels/订单1807131_51_7112684.txt new file mode 100644 index 0000000..706b867 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807131_51_7112684.txt @@ -0,0 +1 @@ +5 0.462000 0.411858 0.431883 0.427383 0.414944 0.568546 0.424356 0.585488 0.401767 0.671596 0.388594 0.711121 0.384828 0.761942 0.399889 0.777467 0.422472 0.787350 0.433767 0.778879 0.524111 0.787350 0.533522 0.795821 0.559872 0.805700 0.582456 0.787350 0.606928 0.739354 0.603161 0.709708 0.616339 0.605250 0.646450 0.564312 0.667156 0.452796 0.650217 0.428796 0.623867 0.428796 0.610689 0.433033 0.486467 0.421737 diff --git a/datasets/检测仪/val/labels/订单1807134_51_7112717.txt b/datasets/检测仪/val/labels/订单1807134_51_7112717.txt new file mode 100644 index 0000000..8f132c6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807134_51_7112717.txt @@ -0,0 +1 @@ +5 0.264375 0.499375 0.238021 0.520557 0.249310 0.650420 0.270013 0.688535 0.279427 0.780293 0.270013 0.829697 0.270013 0.880518 0.296367 0.898867 0.322721 0.894629 0.334010 0.880518 0.430000 0.876279 0.439414 0.887578 0.456354 0.887578 0.486471 0.863574 0.495872 0.802881 0.484583 0.771826 0.478932 0.674424 0.492109 0.640537 0.492109 0.505029 0.465768 0.492324 0.439414 0.492324 0.430000 0.496553 0.294492 0.507852 diff --git a/datasets/检测仪/val/labels/订单1807139_51_7112752.txt b/datasets/检测仪/val/labels/订单1807139_51_7112752.txt new file mode 100644 index 0000000..1065d73 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807139_51_7112752.txt @@ -0,0 +1 @@ +5 0.292628 0.310231 0.253103 0.334231 0.245564 0.531856 0.262513 0.589740 0.256859 0.763365 0.228628 0.828298 0.245564 0.921471 0.275679 0.958173 0.328385 0.956760 0.341564 0.938404 0.509077 0.945471 0.535423 0.968048 0.556128 0.966644 0.620115 0.918644 0.633295 0.808538 0.618244 0.774663 0.606949 0.596798 0.642705 0.537510 0.654000 0.337058 0.597538 0.301769 0.578718 0.294712 0.556128 0.300356 0.345321 0.313058 diff --git a/datasets/检测仪/val/labels/订单1807140_51_7112755.txt b/datasets/检测仪/val/labels/订单1807140_51_7112755.txt new file mode 100644 index 0000000..085ab89 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807140_51_7112755.txt @@ -0,0 +1 @@ +5 0.526259 0.308819 0.500851 0.334225 0.497674 0.547384 0.510373 0.591146 0.505078 0.747836 0.493438 0.807118 0.497674 0.908762 0.517786 0.945463 0.548490 0.951111 0.559080 0.935579 0.648012 0.938403 0.657535 0.951111 0.682943 0.960995 0.712587 0.918646 0.715764 0.822650 0.708359 0.771829 0.706241 0.598206 0.717882 0.536088 0.724236 0.344109 0.698828 0.310231 0.690356 0.311644 0.676597 0.311644 0.545313 0.313056 diff --git a/datasets/检测仪/val/labels/订单1807141_51_7112783.txt b/datasets/检测仪/val/labels/订单1807141_51_7112783.txt new file mode 100644 index 0000000..08519e9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807141_51_7112783.txt @@ -0,0 +1 @@ +5 0.425582 0.466240 0.401592 0.497301 0.419942 0.683633 0.429827 0.704810 0.441119 0.834671 0.431234 0.884083 0.439700 0.957486 0.465110 0.989954 0.496171 0.987128 0.504637 0.967370 0.603449 0.960311 0.610507 0.970196 0.631684 0.974429 0.652860 0.943368 0.654268 0.869965 0.645802 0.840323 0.637336 0.692099 0.648627 0.639873 0.644394 0.476125 0.620392 0.454948 0.606275 0.450715 0.587924 0.457774 0.456644 0.470473 diff --git a/datasets/检测仪/val/labels/订单1807142_51_7112827.txt b/datasets/检测仪/val/labels/订单1807142_51_7112827.txt new file mode 100644 index 0000000..96dc2b3 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807142_51_7112827.txt @@ -0,0 +1 @@ +5 0.222969 0.488086 0.194727 0.509258 0.204141 0.678652 0.224844 0.705479 0.234258 0.848047 0.217318 0.888984 0.236133 0.975098 0.260612 0.997686 0.298255 0.997686 0.309544 0.979326 0.452591 0.968037 0.456354 0.979326 0.486471 0.983564 0.514701 0.949688 0.522227 0.869229 0.501523 0.839580 0.488346 0.695596 0.501523 0.637715 0.490234 0.495146 0.460117 0.476797 0.437526 0.475381 0.430000 0.481025 0.253073 0.490908 diff --git a/datasets/检测仪/val/labels/订单1807149_51_7112991.txt b/datasets/检测仪/val/labels/订单1807149_51_7112991.txt new file mode 100644 index 0000000..51bbc20 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807149_51_7112991.txt @@ -0,0 +1 @@ +5 0.419263 0.420391 0.393853 0.445801 0.404438 0.629316 0.413965 0.681543 0.421377 0.824115 0.415024 0.880579 0.423496 0.961048 0.437261 0.987865 0.463726 0.987865 0.467964 0.970924 0.557954 0.965280 0.559014 0.982220 0.574893 0.983633 0.591831 0.958223 0.600303 0.862233 0.589717 0.831178 0.582305 0.671660 0.595010 0.615195 0.588657 0.435918 0.575952 0.410514 0.559014 0.410514 0.552661 0.417572 0.444668 0.427448 0.437261 0.418978 diff --git a/datasets/检测仪/val/labels/订单1807152_51_7112839.txt b/datasets/检测仪/val/labels/订单1807152_51_7112839.txt new file mode 100644 index 0000000..07d6960 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807152_51_7112839.txt @@ -0,0 +1 @@ +5 0.503411 0.493730 0.462005 0.513496 0.454466 0.656064 0.469531 0.678652 0.463880 0.770410 0.456354 0.800059 0.458229 0.848047 0.471406 0.874873 0.493997 0.876279 0.501523 0.867812 0.606927 0.876279 0.612578 0.890400 0.640807 0.893223 0.657747 0.876279 0.676563 0.824053 0.676563 0.792998 0.687865 0.692773 0.706680 0.651836 0.729271 0.530430 0.710443 0.506436 0.680326 0.505029 0.665273 0.513496 0.531641 0.503613 diff --git a/datasets/检测仪/val/labels/订单1807154_51_7112857.txt b/datasets/检测仪/val/labels/订单1807154_51_7112857.txt new file mode 100644 index 0000000..d01a619 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807154_51_7112857.txt @@ -0,0 +1 @@ +5 0.447877 0.457137 0.418235 0.496660 0.418235 0.516425 0.424583 0.524895 0.423525 0.687229 0.417176 0.701346 0.412941 0.729582 0.434113 0.760634 0.458466 0.762046 0.616216 0.753575 0.639505 0.738052 0.776078 0.740876 0.804667 0.754987 0.869245 0.738052 0.890422 0.714052 0.892539 0.681582 0.886186 0.677353 0.877716 0.551712 0.884069 0.546072 0.887245 0.510778 0.867132 0.486778 0.787725 0.471255 0.761260 0.486778 0.640564 0.489601 0.619387 0.471255 0.447877 0.462784 diff --git a/datasets/检测仪/val/labels/订单1807155_51_7112959.txt b/datasets/检测仪/val/labels/订单1807155_51_7112959.txt new file mode 100644 index 0000000..615937c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807155_51_7112959.txt @@ -0,0 +1 @@ +5 0.360365 0.241055 0.335898 0.257988 0.335898 0.380801 0.352839 0.406211 0.347187 0.499375 0.332135 0.527607 0.335898 0.579844 0.354714 0.599600 0.382943 0.601016 0.396120 0.592549 0.490234 0.588311 0.493997 0.602432 0.518464 0.602432 0.533516 0.589727 0.548581 0.534668 0.539167 0.510674 0.537292 0.414678 0.552344 0.383623 0.565521 0.267871 0.546693 0.250928 0.525990 0.248105 0.516576 0.250928 0.388594 0.250928 diff --git a/datasets/检测仪/val/labels/订单1807157_51_7112890.txt b/datasets/检测仪/val/labels/订单1807157_51_7112890.txt new file mode 100644 index 0000000..7f01f9d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807157_51_7112890.txt @@ -0,0 +1 @@ +5 0.349067 0.246696 0.303894 0.267871 0.283194 0.435854 0.309544 0.486675 0.298250 0.616542 0.279428 0.664538 0.285072 0.735121 0.313306 0.767587 0.345306 0.770408 0.362244 0.754883 0.486467 0.753471 0.497761 0.770408 0.531639 0.774646 0.563633 0.749238 0.584339 0.670183 0.567400 0.634896 0.578694 0.502200 0.606928 0.442912 0.621983 0.298929 0.603161 0.272104 0.567400 0.267871 0.554222 0.273517 0.371656 0.257992 diff --git a/datasets/检测仪/val/labels/订单1807159_51_7113023.txt b/datasets/检测仪/val/labels/订单1807159_51_7113023.txt new file mode 100644 index 0000000..61a310c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807159_51_7113023.txt @@ -0,0 +1 @@ +5 0.335898 0.496553 0.303893 0.516318 0.303893 0.673008 0.315195 0.705479 0.326484 0.859346 0.315195 0.897461 0.322721 0.982158 0.332135 0.997686 0.350052 1.000000 0.393034 1.000000 0.396120 0.997686 0.559870 0.992031 0.585664 1.000000 0.595521 1.000000 0.629505 0.982158 0.631393 0.888984 0.608802 0.857930 0.595638 0.698418 0.610690 0.656064 0.593750 0.499375 0.561758 0.486670 0.537292 0.486670 0.529753 0.492324 0.369779 0.502197 diff --git a/datasets/检测仪/val/labels/订单1807161_51_7113056.txt b/datasets/检测仪/val/labels/订单1807161_51_7113056.txt new file mode 100644 index 0000000..25753e9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807161_51_7113056.txt @@ -0,0 +1 @@ +5 0.247435 0.389268 0.207904 0.421738 0.226732 0.591133 0.245547 0.634893 0.256849 0.776055 0.243672 0.832520 0.254961 0.897461 0.262487 0.931338 0.279427 0.941221 0.317070 0.945449 0.335898 0.928516 0.484583 0.911572 0.501523 0.928516 0.533516 0.929922 0.573047 0.896045 0.578698 0.808525 0.561758 0.771826 0.548581 0.620781 0.557995 0.560078 0.546693 0.401973 0.510937 0.379395 0.484583 0.377979 0.473294 0.387861 0.290716 0.396328 diff --git a/datasets/检测仪/val/labels/订单1807164_51_7113127.txt b/datasets/检测仪/val/labels/订单1807164_51_7113127.txt new file mode 100644 index 0000000..107e8cf --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807164_51_7113127.txt @@ -0,0 +1 @@ +5 0.271800 0.390750 0.237920 0.420390 0.286853 0.605310 0.313200 0.646250 0.333907 0.787410 0.328267 0.848110 0.354613 0.918690 0.382840 0.949750 0.424253 0.946930 0.441187 0.924340 0.582360 0.905990 0.588000 0.918690 0.633173 0.921520 0.652000 0.884820 0.661400 0.807180 0.640707 0.766240 0.601173 0.613780 0.612467 0.553080 0.582360 0.385100 0.546587 0.362510 0.514600 0.363930 0.503307 0.373810 0.311320 0.396390 0.298147 0.387920 diff --git a/datasets/检测仪/val/labels/订单1807165_51_7113005.txt b/datasets/检测仪/val/labels/订单1807165_51_7113005.txt new file mode 100644 index 0000000..807adfb --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807165_51_7113005.txt @@ -0,0 +1 @@ +5 0.318947 0.475384 0.305775 0.489496 0.309547 0.588311 0.328363 0.606656 0.343421 0.689945 0.335892 0.719594 0.341535 0.766173 0.356594 0.780285 0.384825 0.781700 0.392354 0.770406 0.471404 0.760526 0.482705 0.770406 0.503406 0.770406 0.518465 0.746414 0.518465 0.699825 0.503406 0.680066 0.490234 0.592544 0.493991 0.567138 0.488348 0.464090 0.465760 0.457029 0.448816 0.462675 0.433757 0.466908 0.324605 0.476787 diff --git a/datasets/检测仪/val/labels/订单1807166_51_7112975.txt b/datasets/检测仪/val/labels/订单1807166_51_7112975.txt new file mode 100644 index 0000000..40f4e82 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807166_51_7112975.txt @@ -0,0 +1 @@ +5 0.409200 0.517790 0.377200 0.533320 0.343320 0.634960 0.354613 0.666010 0.330147 0.745060 0.311320 0.769060 0.303800 0.811410 0.307560 0.834000 0.335787 0.842470 0.345200 0.834000 0.429893 0.846700 0.428013 0.857990 0.448720 0.862230 0.471307 0.846700 0.493893 0.801530 0.486360 0.781770 0.520240 0.697070 0.533413 0.668840 0.572947 0.568610 0.565413 0.546030 0.546587 0.543200 0.539067 0.550260 0.422373 0.531910 diff --git a/datasets/检测仪/val/labels/订单1807169_51_7113045.txt b/datasets/检测仪/val/labels/订单1807169_51_7113045.txt new file mode 100644 index 0000000..5d9616d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807169_51_7113045.txt @@ -0,0 +1 @@ +5 0.293320 0.345500 0.263333 0.366676 0.268958 0.513490 0.283945 0.554422 0.285820 0.689941 0.274570 0.740755 0.293320 0.819814 0.319570 0.848039 0.355195 0.848039 0.370195 0.833922 0.505182 0.828275 0.514557 0.838157 0.557669 0.840980 0.585794 0.804284 0.593294 0.726637 0.570794 0.678647 0.555794 0.554422 0.570794 0.506431 0.559544 0.359618 0.525807 0.338441 0.503307 0.339853 0.328945 0.345500 diff --git a/datasets/检测仪/val/labels/订单1807181_51_7113193.txt b/datasets/检测仪/val/labels/订单1807181_51_7113193.txt new file mode 100644 index 0000000..9cbc83c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807181_51_7113193.txt @@ -0,0 +1 @@ +5 0.362244 0.482437 0.320833 0.506437 0.330244 0.620779 0.341539 0.649008 0.337778 0.733708 0.337778 0.763350 0.339656 0.802879 0.350950 0.824050 0.382950 0.833933 0.394239 0.824050 0.475172 0.822642 0.497761 0.833933 0.520344 0.816992 0.539167 0.763350 0.527872 0.735121 0.533522 0.649008 0.550461 0.612308 0.561756 0.502200 0.541050 0.482437 0.514700 0.483850 0.505289 0.490908 0.379183 0.489496 diff --git a/datasets/检测仪/val/labels/订单1807182_51_7113177.txt b/datasets/检测仪/val/labels/订单1807182_51_7113177.txt new file mode 100644 index 0000000..87e467d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807182_51_7113177.txt @@ -0,0 +1 @@ +5 0.441880 0.096204 0.430713 0.128764 0.428618 0.322570 0.434902 0.364436 0.433506 0.522581 0.427222 0.576855 0.430015 0.662126 0.441182 0.707093 0.458633 0.711746 0.467710 0.693134 0.518662 0.700889 0.520757 0.710195 0.536812 0.717950 0.552168 0.682289 0.557754 0.583059 0.549375 0.524132 0.550073 0.375293 0.559849 0.328774 0.561943 0.119458 0.548682 0.093102 0.536113 0.097744 0.531230 0.102397 0.457236 0.105499 0.455142 0.099295 diff --git a/datasets/检测仪/val/labels/订单1807183_51_7113142.txt b/datasets/检测仪/val/labels/订单1807183_51_7113142.txt new file mode 100644 index 0000000..c982f9e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807183_51_7113142.txt @@ -0,0 +1 @@ +5 0.358448 0.523493 0.326454 0.540429 0.322680 0.688652 0.337745 0.714056 0.328333 0.849583 0.313268 0.882047 0.318922 0.959681 0.345278 0.989326 0.382908 0.987917 0.388562 0.976630 0.512778 0.970980 0.525964 0.982267 0.559837 0.985098 0.584314 0.952623 0.588072 0.873578 0.580539 0.835466 0.567369 0.716887 0.584314 0.670306 0.582418 0.544669 0.557958 0.522083 0.539134 0.522083 0.527843 0.526311 0.386683 0.529142 diff --git a/datasets/检测仪/val/labels/订单1807184_51_7113191.txt b/datasets/检测仪/val/labels/订单1807184_51_7113191.txt new file mode 100644 index 0000000..ab0f96b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807184_51_7113191.txt @@ -0,0 +1 @@ +5 0.285078 0.581250 0.245547 0.596777 0.236133 0.609482 0.236133 0.616543 0.172148 0.743594 0.160846 0.760527 0.153320 0.780293 0.172148 0.802881 0.377305 0.849463 0.437526 0.845225 0.608802 0.881924 0.665273 0.911572 0.778203 0.921455 0.806432 0.903105 0.810195 0.870635 0.798906 0.860752 0.815846 0.766172 0.830898 0.756299 0.838437 0.730889 0.815846 0.705479 0.729271 0.678652 0.684089 0.681475 0.507174 0.647598 0.484583 0.632070 0.286953 0.581250 diff --git a/datasets/检测仪/val/labels/订单1807185_51_7113220.txt b/datasets/检测仪/val/labels/订单1807185_51_7113220.txt new file mode 100644 index 0000000..9164916 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807185_51_7113220.txt @@ -0,0 +1 @@ +5 0.392354 0.407621 0.371652 0.428794 0.375424 0.541721 0.388596 0.571371 0.392354 0.670186 0.382939 0.692774 0.386711 0.754879 0.403655 0.773235 0.437529 0.774638 0.439415 0.761941 0.537281 0.759112 0.542924 0.769002 0.580570 0.774638 0.597515 0.752061 0.603158 0.691360 0.593743 0.664539 0.586213 0.564309 0.595629 0.527610 0.591871 0.417500 0.573041 0.399156 0.554225 0.397741 0.550453 0.403388 0.414942 0.411853 diff --git a/datasets/检测仪/val/labels/订单1807189_51_7113407.txt b/datasets/检测仪/val/labels/订单1807189_51_7113407.txt new file mode 100644 index 0000000..226b8b4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807189_51_7113407.txt @@ -0,0 +1 @@ +5 0.356493 0.481090 0.326373 0.510730 0.341440 0.685780 0.367787 0.721070 0.377200 0.846700 0.367787 0.887640 0.382840 0.952570 0.420493 0.980810 0.446840 0.983630 0.448720 0.963870 0.578587 0.961040 0.595533 0.969510 0.620000 0.970920 0.642587 0.946930 0.659520 0.869290 0.644467 0.839640 0.635053 0.704130 0.648227 0.650490 0.644467 0.496620 0.612467 0.472620 0.580467 0.474030 0.569173 0.481090 0.407307 0.488150 0.394133 0.482500 diff --git a/datasets/检测仪/val/labels/订单1807191_51_7113329.txt b/datasets/检测仪/val/labels/订单1807191_51_7113329.txt new file mode 100644 index 0000000..afdb555 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807191_51_7113329.txt @@ -0,0 +1 @@ +5 0.602907 0.297544 0.574696 0.311660 0.574696 0.416118 0.596638 0.433062 0.599772 0.499404 0.593503 0.519170 0.599772 0.560107 0.631128 0.569985 0.659349 0.565752 0.769100 0.571396 0.803590 0.579868 0.841215 0.565752 0.863167 0.520581 0.850618 0.497993 0.847484 0.428823 0.869436 0.404829 0.885119 0.307427 0.850618 0.290483 0.816128 0.289072 0.806725 0.294722 0.649946 0.301777 diff --git a/datasets/检测仪/val/labels/订单1807192_51_7113450.txt b/datasets/检测仪/val/labels/订单1807192_51_7113450.txt new file mode 100644 index 0000000..39e1f70 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807192_51_7113450.txt @@ -0,0 +1 @@ +5 0.446940 0.379395 0.411185 0.397744 0.375417 0.561494 0.381068 0.605254 0.341536 0.761943 0.305781 0.831113 0.302018 0.862168 0.335898 0.890400 0.503411 0.915811 0.569284 0.914395 0.603164 0.874873 0.612578 0.808525 0.612578 0.760527 0.642682 0.643359 0.680326 0.585488 0.714206 0.448564 0.695391 0.414678 0.663385 0.411855 0.653984 0.416094 0.482708 0.394922 0.475169 0.386445 diff --git a/datasets/检测仪/val/labels/订单1807197_51_7113341.txt b/datasets/检测仪/val/labels/订单1807197_51_7113341.txt new file mode 100644 index 0000000..190b584 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807197_51_7113341.txt @@ -0,0 +1 @@ +5 0.209781 0.431623 0.181550 0.442917 0.181550 0.469737 0.198494 0.478202 0.192851 0.564309 0.190965 0.582664 0.181550 0.596776 0.226725 0.626425 0.307661 0.636305 0.358480 0.623596 0.537281 0.619364 0.578684 0.632072 0.802675 0.643366 0.836550 0.616546 0.838436 0.598191 0.834664 0.589726 0.840307 0.459846 0.851608 0.442917 0.849722 0.424561 0.815848 0.407621 0.567398 0.414682 0.533523 0.424561 0.367895 0.423147 0.328363 0.411853 0.217310 0.423147 diff --git a/datasets/检测仪/val/labels/订单1807199_51_7113385.txt b/datasets/检测仪/val/labels/订单1807199_51_7113385.txt new file mode 100644 index 0000000..dc8800a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807199_51_7113385.txt @@ -0,0 +1 @@ +5 0.260612 0.540312 0.232370 0.557256 0.249310 0.702656 0.271901 0.730889 0.277552 0.855107 0.264375 0.896045 0.285078 0.975098 0.309544 0.993447 0.347187 0.992031 0.356602 0.977920 0.475169 0.955332 0.488346 0.968037 0.516576 0.966631 0.533516 0.931338 0.531641 0.856523 0.518464 0.828291 0.495872 0.709707 0.505286 0.670186 0.488346 0.540312 0.458229 0.521963 0.431888 0.523379 0.428125 0.529023 0.288841 0.538906 diff --git a/datasets/检测仪/val/labels/订单1807201_51_7113453.txt b/datasets/检测仪/val/labels/订单1807201_51_7113453.txt new file mode 100644 index 0000000..80458b6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807201_51_7113453.txt @@ -0,0 +1 @@ +5 0.279427 0.593955 0.260612 0.610898 0.268138 0.742178 0.288841 0.764766 0.290716 0.866396 0.281315 0.898867 0.294492 0.946865 0.317070 0.959570 0.337773 0.960977 0.343424 0.951094 0.439414 0.946865 0.471406 0.959570 0.488346 0.938398 0.497760 0.866396 0.493997 0.852285 0.484583 0.752061 0.493997 0.725234 0.490234 0.595371 0.467643 0.581250 0.443177 0.584072 0.441289 0.588311 0.317070 0.593955 0.305781 0.591133 diff --git a/datasets/检测仪/val/labels/订单1807202_51_7113452.txt b/datasets/检测仪/val/labels/订单1807202_51_7113452.txt new file mode 100644 index 0000000..6865ad9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807202_51_7113452.txt @@ -0,0 +1 @@ +5 0.243667 0.530433 0.232372 0.541725 0.234256 0.558667 0.358478 0.608075 0.381067 0.610896 0.462000 0.649008 0.493994 0.670183 0.546694 0.689946 0.571167 0.688538 0.578694 0.667363 0.586222 0.653246 0.612572 0.613721 0.640806 0.593958 0.629511 0.577017 0.573044 0.548783 0.548578 0.547375 0.463883 0.510671 0.448822 0.495142 0.341539 0.442912 0.315189 0.447146 0.311428 0.459854 0.251194 0.524787 diff --git a/datasets/检测仪/val/labels/订单1807203_51_7113404.txt b/datasets/检测仪/val/labels/订单1807203_51_7113404.txt new file mode 100644 index 0000000..ae11d4a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807203_51_7113404.txt @@ -0,0 +1 @@ +5 0.360365 0.324336 0.339661 0.345508 0.360365 0.468320 0.377305 0.495146 0.403646 0.575605 0.398008 0.613721 0.418711 0.671592 0.443177 0.687129 0.475169 0.687129 0.482708 0.673008 0.561758 0.664541 0.599401 0.673008 0.620104 0.658896 0.633281 0.639131 0.627630 0.588311 0.605039 0.553018 0.584336 0.458437 0.586224 0.425977 0.559870 0.320098 0.529753 0.308809 0.516576 0.311631 0.381068 0.324336 diff --git a/datasets/检测仪/val/labels/订单1807208_51_7113555.txt b/datasets/检测仪/val/labels/订单1807208_51_7113555.txt new file mode 100644 index 0000000..c2f3206 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807208_51_7113555.txt @@ -0,0 +1 @@ +5 0.614601 0.358227 0.584571 0.373754 0.592086 0.478209 0.612101 0.503625 0.619617 0.585493 0.609601 0.608080 0.619617 0.664550 0.637132 0.685718 0.664663 0.685718 0.677178 0.678659 0.794816 0.677249 0.814831 0.684308 0.852377 0.687128 0.864893 0.673019 0.877408 0.620787 0.864893 0.589732 0.854877 0.495147 0.869893 0.464092 0.867393 0.365285 0.842362 0.351168 0.817331 0.349758 0.797316 0.356808 0.649647 0.359637 diff --git a/datasets/检测仪/val/labels/订单1807211_51_7113519.txt b/datasets/检测仪/val/labels/订单1807211_51_7113519.txt new file mode 100644 index 0000000..7064cd0 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807211_51_7113519.txt @@ -0,0 +1 @@ +5 0.407422 0.481025 0.384831 0.496553 0.382943 0.620781 0.398008 0.639131 0.396120 0.743594 0.382943 0.783115 0.388594 0.848047 0.409297 0.874873 0.437526 0.877695 0.452591 0.859346 0.559870 0.860752 0.563633 0.872051 0.599401 0.874873 0.623867 0.852285 0.631393 0.780293 0.616341 0.752061 0.608802 0.637715 0.610690 0.605254 0.610690 0.485264 0.582461 0.469736 0.569284 0.471143 0.557995 0.476797 0.433763 0.482441 diff --git a/datasets/检测仪/val/labels/订单1807217_51_7113518.txt b/datasets/检测仪/val/labels/订单1807217_51_7113518.txt new file mode 100644 index 0000000..507c21c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807217_51_7113518.txt @@ -0,0 +1 @@ +5 0.367891 0.346924 0.334010 0.369512 0.339661 0.529023 0.356602 0.555840 0.358477 0.706885 0.343424 0.743594 0.356602 0.819814 0.382943 0.845225 0.416823 0.848047 0.439414 0.832520 0.559870 0.825459 0.580573 0.836758 0.612578 0.840996 0.644570 0.811348 0.653984 0.729473 0.638919 0.689951 0.620104 0.557256 0.638919 0.503613 0.627630 0.362451 0.597513 0.341279 0.574935 0.342686 0.567396 0.348330 0.396120 0.352568 diff --git a/datasets/检测仪/val/labels/订单1807219_51_7113577.txt b/datasets/检测仪/val/labels/订单1807219_51_7113577.txt new file mode 100644 index 0000000..e227e18 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807219_51_7113577.txt @@ -0,0 +1 @@ +5 0.439411 0.500788 0.414944 0.516317 0.411178 0.634896 0.420589 0.657479 0.420589 0.745000 0.405533 0.781704 0.409300 0.840992 0.422472 0.853696 0.443178 0.856521 0.456350 0.845225 0.548578 0.849463 0.556106 0.860754 0.584339 0.866400 0.605044 0.846638 0.618217 0.788763 0.608806 0.760529 0.605044 0.663125 0.620100 0.615129 0.620100 0.519142 0.595633 0.497967 0.573044 0.502200 0.571167 0.509258 0.458233 0.512083 diff --git a/datasets/检测仪/val/labels/订单1807221_51_7113552.txt b/datasets/检测仪/val/labels/订单1807221_51_7113552.txt new file mode 100644 index 0000000..8683f56 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807221_51_7113552.txt @@ -0,0 +1 @@ +5 0.373565 0.441519 0.337801 0.459878 0.315220 0.633507 0.334039 0.674444 0.309572 0.821250 0.286991 0.867839 0.290752 0.958177 0.318981 0.997700 0.358507 0.996293 0.371690 0.980764 0.526019 0.986415 0.533553 0.997700 0.557025 1.000000 0.578819 1.000000 0.601308 0.977943 0.627662 0.876302 0.614479 0.843837 0.620127 0.682908 0.638947 0.629271 0.646481 0.457049 0.620127 0.447170 0.593785 0.445755 0.584363 0.449991 0.403681 0.444349 diff --git a/datasets/检测仪/val/labels/订单1807224_51_7113585.txt b/datasets/检测仪/val/labels/订单1807224_51_7113585.txt new file mode 100644 index 0000000..1d0b465 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807224_51_7113585.txt @@ -0,0 +1 @@ +5 0.365907 0.382280 0.328267 0.403450 0.326373 0.555910 0.345200 0.598260 0.345200 0.730950 0.324493 0.790240 0.335787 0.863640 0.365907 0.894700 0.409200 0.897520 0.416720 0.883400 0.556000 0.881990 0.567293 0.890460 0.604947 0.893290 0.636933 0.860820 0.646347 0.771890 0.631293 0.735180 0.623760 0.595430 0.633173 0.547440 0.631293 0.396390 0.593653 0.373810 0.565413 0.378040 0.554120 0.383690 0.392253 0.389340 diff --git a/datasets/检测仪/val/labels/订单1807226_51_7113749.txt b/datasets/检测仪/val/labels/订单1807226_51_7113749.txt new file mode 100644 index 0000000..57ba9ff --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807226_51_7113749.txt @@ -0,0 +1 @@ +5 0.153320 0.471143 0.151445 0.495146 0.228607 0.616543 0.256849 0.632070 0.318958 0.730889 0.326484 0.756299 0.367891 0.812764 0.390482 0.824053 0.426237 0.815586 0.428125 0.801465 0.522227 0.759121 0.539167 0.763350 0.557995 0.757705 0.557995 0.730889 0.542930 0.674424 0.507174 0.650420 0.437526 0.550195 0.431888 0.527607 0.364128 0.418916 0.337773 0.409033 0.322721 0.410449 0.311419 0.417500 0.200378 0.462676 diff --git a/datasets/检测仪/val/labels/订单1807230_51_7113599.txt b/datasets/检测仪/val/labels/订单1807230_51_7113599.txt new file mode 100644 index 0000000..b034fbf --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807230_51_7113599.txt @@ -0,0 +1 @@ +5 0.183439 0.368096 0.158972 0.385038 0.174028 0.507846 0.192850 0.541725 0.206022 0.640542 0.196611 0.668775 0.204139 0.711121 0.222961 0.732296 0.251194 0.736529 0.260606 0.728062 0.349067 0.716767 0.362244 0.726650 0.386711 0.729471 0.403650 0.706888 0.414944 0.646187 0.401767 0.627837 0.399889 0.531846 0.407417 0.503613 0.409300 0.383625 0.381067 0.363862 0.358478 0.365275 0.350950 0.372333 0.221083 0.377979 0.206022 0.373742 diff --git a/datasets/检测仪/val/labels/订单1807231_51_7113614.txt b/datasets/检测仪/val/labels/订单1807231_51_7113614.txt new file mode 100644 index 0000000..00d6384 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807231_51_7113614.txt @@ -0,0 +1 @@ +5 0.300715 0.560187 0.273190 0.599713 0.273190 0.630767 0.283775 0.642060 0.289070 0.858040 0.282720 0.873567 0.282720 0.907447 0.316595 0.948380 0.520930 0.901800 0.582335 0.866507 0.746435 0.836867 0.791960 0.848160 0.894655 0.801573 0.925360 0.759227 0.912655 0.709820 0.901010 0.699940 0.865015 0.550307 0.873485 0.533367 0.867130 0.485367 0.835370 0.465607 0.740085 0.467020 0.698795 0.489607 0.531515 0.536187 0.494460 0.534773 0.308125 0.554540 diff --git a/datasets/检测仪/val/labels/订单1807232_51_7113683.txt b/datasets/检测仪/val/labels/订单1807232_51_7113683.txt new file mode 100644 index 0000000..25fcdee --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807232_51_7113683.txt @@ -0,0 +1 @@ +5 0.315080 0.417570 0.283093 0.445800 0.290613 0.637780 0.311320 0.671660 0.311320 0.842470 0.292507 0.877760 0.311320 0.962450 0.335787 0.990690 0.375320 0.994920 0.392253 0.979390 0.540947 0.975160 0.569173 0.989280 0.616227 0.959630 0.629413 0.874930 0.620000 0.842470 0.604947 0.677310 0.631293 0.598260 0.638813 0.442980 0.601173 0.414740 0.563533 0.417570 0.557880 0.426040 0.360253 0.427450 0.350853 0.420390 diff --git a/datasets/检测仪/val/labels/订单1807236_51_7113782.txt b/datasets/检测仪/val/labels/订单1807236_51_7113782.txt new file mode 100644 index 0000000..445e2ab --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807236_51_7113782.txt @@ -0,0 +1 @@ +5 0.571159 0.339863 0.533516 0.365273 0.529753 0.544551 0.548581 0.595371 0.542930 0.739355 0.537292 0.787354 0.546693 0.876279 0.569284 0.908750 0.616341 0.912988 0.631393 0.896045 0.783854 0.898867 0.789492 0.908750 0.838437 0.918633 0.864779 0.893223 0.877956 0.805703 0.861016 0.750645 0.853490 0.595371 0.877956 0.533262 0.881719 0.366689 0.849727 0.342686 0.817734 0.341279 0.804557 0.345508 0.612578 0.348330 diff --git a/datasets/检测仪/val/labels/订单1807237_51_7113661.txt b/datasets/检测仪/val/labels/订单1807237_51_7113661.txt new file mode 100644 index 0000000..f15f6cc --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807237_51_7113661.txt @@ -0,0 +1 @@ +5 0.194727 0.368096 0.164622 0.387861 0.140143 0.557256 0.149557 0.601016 0.126979 0.768994 0.096862 0.835342 0.098737 0.928516 0.121328 0.963799 0.170260 0.969453 0.189089 0.948271 0.362240 0.944043 0.379180 0.963799 0.409297 0.965215 0.458229 0.936982 0.477057 0.828291 0.465768 0.776055 0.469531 0.616543 0.492109 0.568545 0.501523 0.397744 0.467643 0.373740 0.445065 0.372334 0.426237 0.376563 0.228607 0.368096 diff --git a/datasets/检测仪/val/labels/订单1807238_51_7113657.txt b/datasets/检测仪/val/labels/订单1807238_51_7113657.txt new file mode 100644 index 0000000..9ae6cb6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807238_51_7113657.txt @@ -0,0 +1 @@ +5 0.578698 0.459854 0.537292 0.465498 0.522227 0.481025 0.529753 0.490908 0.471406 0.577021 0.454466 0.584072 0.437526 0.593955 0.452591 0.625010 0.478932 0.629248 0.631393 0.688535 0.667161 0.688535 0.780091 0.742178 0.810195 0.757705 0.872318 0.785937 0.913724 0.778877 0.921250 0.746416 0.968307 0.681475 0.990885 0.668770 0.985247 0.646191 0.909961 0.606660 0.879844 0.606660 0.759375 0.551611 0.744323 0.541729 0.580573 0.462676 diff --git a/datasets/检测仪/val/labels/订单1807240_51_7113721.txt b/datasets/检测仪/val/labels/订单1807240_51_7113721.txt new file mode 100644 index 0000000..71d0d38 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807240_51_7113721.txt @@ -0,0 +1 @@ +5 0.578698 0.413271 0.557995 0.431621 0.554219 0.550195 0.563633 0.578428 0.556107 0.673008 0.544818 0.697002 0.546693 0.757705 0.561758 0.780293 0.584336 0.784531 0.603164 0.774648 0.708568 0.783115 0.716094 0.792998 0.733034 0.792998 0.749974 0.781699 0.772552 0.726650 0.763151 0.688535 0.765026 0.585488 0.780091 0.554434 0.795143 0.435859 0.770677 0.417500 0.748086 0.417500 0.738672 0.423154 0.606927 0.417500 diff --git a/datasets/检测仪/val/labels/订单1807242_51_7113761.txt b/datasets/检测仪/val/labels/订单1807242_51_7113761.txt new file mode 100644 index 0000000..62ae9e9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807242_51_7113761.txt @@ -0,0 +1 @@ +5 0.410862 0.466938 0.360371 0.479644 0.331965 0.588340 0.347740 0.615161 0.328810 0.704092 0.303559 0.723853 0.303559 0.783145 0.325655 0.809961 0.382456 0.811377 0.388777 0.801494 0.533952 0.807139 0.584454 0.818433 0.609705 0.801494 0.638111 0.743618 0.628635 0.723853 0.647576 0.629277 0.675983 0.601045 0.707544 0.505054 0.688603 0.482466 0.644421 0.478232 0.631790 0.483877 0.429803 0.466938 diff --git a/datasets/检测仪/val/labels/订单1807245_51_7113816.txt b/datasets/检测仪/val/labels/订单1807245_51_7113816.txt new file mode 100644 index 0000000..323fbb2 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807245_51_7113816.txt @@ -0,0 +1 @@ +5 0.444417 0.377984 0.416887 0.386453 0.374340 0.475389 0.376840 0.492327 0.351810 0.554438 0.334294 0.574204 0.319279 0.609490 0.331794 0.632076 0.356825 0.637725 0.361825 0.629256 0.444417 0.644784 0.479463 0.656073 0.511994 0.647604 0.544525 0.601021 0.544525 0.584083 0.569555 0.512093 0.602101 0.485268 0.644647 0.418927 0.622117 0.396341 0.607101 0.389282 0.594586 0.392102 0.454433 0.375164 diff --git a/datasets/检测仪/val/labels/订单1807246_51_7113791.txt b/datasets/检测仪/val/labels/订单1807246_51_7113791.txt new file mode 100644 index 0000000..c2e8082 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807246_51_7113791.txt @@ -0,0 +1 @@ +5 0.298255 0.407627 0.266250 0.427383 0.262487 0.574189 0.277552 0.603838 0.271901 0.721006 0.256849 0.768994 0.266250 0.825459 0.285078 0.855107 0.322721 0.857930 0.330247 0.846641 0.446940 0.843818 0.454466 0.853691 0.486471 0.860752 0.512813 0.831113 0.529753 0.754883 0.516576 0.730889 0.512813 0.601016 0.531641 0.564316 0.533516 0.427383 0.516576 0.407627 0.488346 0.407627 0.480820 0.411855 0.328359 0.411855 diff --git a/datasets/检测仪/val/labels/订单1807248_51_7113945.txt b/datasets/检测仪/val/labels/订单1807248_51_7113945.txt new file mode 100644 index 0000000..67e7f0f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807248_51_7113945.txt @@ -0,0 +1 @@ +5 0.279427 0.410449 0.245547 0.435859 0.260612 0.598193 0.288841 0.634893 0.290716 0.776055 0.281315 0.825459 0.303893 0.905928 0.320833 0.922861 0.379180 0.921455 0.375417 0.908750 0.497760 0.894629 0.516576 0.904512 0.554219 0.911572 0.586224 0.876279 0.588099 0.795820 0.571159 0.759121 0.556107 0.620781 0.563633 0.575605 0.548581 0.414678 0.520352 0.396328 0.493997 0.397744 0.486471 0.403389 0.309544 0.417500 diff --git a/datasets/检测仪/val/labels/订单1807251_51_7113927.txt b/datasets/检测仪/val/labels/订单1807251_51_7113927.txt new file mode 100644 index 0000000..d20066b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807251_51_7113927.txt @@ -0,0 +1 @@ +5 0.390482 0.356807 0.332135 0.385039 0.305781 0.617959 0.320833 0.637715 0.307656 0.802881 0.292604 0.843818 0.288841 0.934160 0.328359 0.979326 0.367891 0.979326 0.382943 0.960977 0.529753 0.956748 0.537292 0.966631 0.574935 0.972275 0.605039 0.948271 0.629505 0.857930 0.621979 0.818408 0.642682 0.663125 0.663385 0.609482 0.697266 0.427383 0.665273 0.393506 0.631393 0.392090 0.620104 0.396328 0.431888 0.377979 diff --git a/datasets/检测仪/val/labels/订单1807252_51_7113872.txt b/datasets/检测仪/val/labels/订单1807252_51_7113872.txt new file mode 100644 index 0000000..8a1de57 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807252_51_7113872.txt @@ -0,0 +1 @@ +5 0.642682 0.369512 0.605039 0.369512 0.576810 0.393506 0.591862 0.561494 0.616341 0.596777 0.621979 0.713945 0.621979 0.736533 0.631393 0.787354 0.650221 0.815586 0.685977 0.812764 0.689740 0.801465 0.813958 0.808525 0.817734 0.816992 0.853490 0.818408 0.870430 0.804287 0.885482 0.747822 0.874193 0.721006 0.872318 0.605254 0.906185 0.553018 0.919362 0.380801 0.879844 0.353984 0.847839 0.355391 0.834661 0.365273 0.650221 0.376563 diff --git a/datasets/检测仪/val/labels/订单1807253_51_7113859.txt b/datasets/检测仪/val/labels/订单1807253_51_7113859.txt new file mode 100644 index 0000000..d719072 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807253_51_7113859.txt @@ -0,0 +1 @@ +5 0.405534 0.366689 0.392357 0.380801 0.392357 0.488086 0.413060 0.513496 0.409297 0.593955 0.405534 0.620781 0.403646 0.658896 0.422474 0.678652 0.445065 0.678652 0.450703 0.668770 0.535404 0.668770 0.539167 0.678652 0.573047 0.668770 0.578698 0.613721 0.571159 0.596777 0.573047 0.513496 0.588099 0.485264 0.595638 0.380801 0.580573 0.363857 0.559870 0.365273 0.552344 0.370918 0.443177 0.370918 0.433763 0.362451 diff --git a/datasets/检测仪/val/labels/订单1807255_51_7113891.txt b/datasets/检测仪/val/labels/订单1807255_51_7113891.txt new file mode 100644 index 0000000..6afb24d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807255_51_7113891.txt @@ -0,0 +1 @@ +5 0.433763 0.438682 0.390482 0.440088 0.358477 0.454209 0.349062 0.625010 0.367891 0.670186 0.358477 0.805703 0.345299 0.849463 0.354714 0.928516 0.382943 0.968037 0.428125 0.966631 0.437526 0.948271 0.559870 0.946865 0.567396 0.959570 0.610690 0.959570 0.635156 0.932744 0.652096 0.855107 0.640807 0.818408 0.638919 0.678652 0.659622 0.637715 0.669036 0.471143 0.640807 0.448564 0.616341 0.448564 0.595638 0.454209 0.443177 0.449971 diff --git a/datasets/检测仪/val/labels/订单1807259_51_7113928.txt b/datasets/检测仪/val/labels/订单1807259_51_7113928.txt new file mode 100644 index 0000000..ab5d229 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807259_51_7113928.txt @@ -0,0 +1 @@ +5 0.508947 0.363930 0.476947 0.362510 0.448720 0.376630 0.409200 0.543200 0.426133 0.589790 0.386613 0.730950 0.360253 0.769060 0.352733 0.848110 0.375320 0.877760 0.401667 0.881990 0.422373 0.869290 0.578587 0.894700 0.576707 0.904580 0.606827 0.915870 0.653880 0.891870 0.668933 0.822700 0.663293 0.762000 0.695280 0.623660 0.731040 0.577080 0.761160 0.404860 0.738573 0.385100 0.708453 0.385100 0.693400 0.387920 0.524013 0.369570 diff --git a/datasets/检测仪/val/labels/订单1807260_51_7114022.txt b/datasets/检测仪/val/labels/订单1807260_51_7114022.txt new file mode 100644 index 0000000..92f4b63 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807260_51_7114022.txt @@ -0,0 +1 @@ +5 0.445061 0.495142 0.413061 0.514904 0.433767 0.657479 0.446939 0.685713 0.454472 0.788763 0.445061 0.831108 0.462000 0.877692 0.478939 0.900279 0.499644 0.903104 0.510933 0.891808 0.618217 0.891808 0.646450 0.903104 0.674683 0.886162 0.684094 0.821229 0.676567 0.794408 0.674683 0.684300 0.684094 0.647600 0.682211 0.510671 0.655861 0.486675 0.629511 0.490908 0.620100 0.497967 0.495878 0.500788 diff --git a/datasets/检测仪/val/labels/订单1807262_51_7113998.txt b/datasets/检测仪/val/labels/订单1807262_51_7113998.txt new file mode 100644 index 0000000..61c9c11 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807262_51_7113998.txt @@ -0,0 +1 @@ +5 0.480720 0.298990 0.458133 0.317340 0.473187 0.457090 0.495773 0.488150 0.503307 0.585550 0.492013 0.619430 0.507067 0.687190 0.531533 0.705540 0.565413 0.708360 0.576707 0.697070 0.683987 0.692830 0.697160 0.701300 0.727280 0.701300 0.744227 0.668840 0.740453 0.608140 0.732933 0.582730 0.719747 0.471210 0.731040 0.430270 0.719747 0.301810 0.687760 0.287700 0.665173 0.286290 0.659520 0.289110 0.512720 0.298990 diff --git a/datasets/检测仪/val/labels/订单1807265_51_7114041.txt b/datasets/检测仪/val/labels/订单1807265_51_7114041.txt new file mode 100644 index 0000000..bb0efca --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807265_51_7114041.txt @@ -0,0 +1 @@ +5 0.355640 0.570067 0.344347 0.581360 0.358467 0.691467 0.369760 0.705580 0.376813 0.781813 0.379640 0.819927 0.390933 0.880627 0.405047 0.893327 0.420573 0.891920 0.427633 0.880627 0.493980 0.872153 0.515153 0.877800 0.526447 0.853807 0.526447 0.804400 0.512333 0.776167 0.496807 0.688647 0.502453 0.646293 0.489747 0.560187 0.477040 0.547480 0.461513 0.550307 0.373993 0.568653 diff --git a/datasets/检测仪/val/labels/订单1807281_51_7114155.txt b/datasets/检测仪/val/labels/订单1807281_51_7114155.txt new file mode 100644 index 0000000..8d9afb0 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807281_51_7114155.txt @@ -0,0 +1 @@ +5 0.509609 0.502266 0.482786 0.519206 0.446087 0.674486 0.460202 0.695658 0.423496 0.836823 0.403737 0.874935 0.399499 0.908815 0.406556 0.934225 0.426322 0.944108 0.439023 0.937051 0.518079 0.953984 0.529368 0.966693 0.551953 0.975163 0.570306 0.959635 0.594303 0.893288 0.592891 0.856582 0.622539 0.738008 0.639479 0.709779 0.679004 0.572845 0.666296 0.543203 0.652181 0.541790 0.638066 0.546029 0.530781 0.517793 0.525137 0.512148 diff --git a/datasets/检测仪/val/labels/订单1807284_51_7114318.txt b/datasets/检测仪/val/labels/订单1807284_51_7114318.txt new file mode 100644 index 0000000..9d71d28 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807284_51_7114318.txt @@ -0,0 +1 @@ +5 0.772950 0.284839 0.746483 0.249550 0.574971 0.250961 0.515683 0.263667 0.376992 0.260839 0.321937 0.243900 0.249942 0.253783 0.225592 0.282017 0.228771 0.322956 0.237237 0.332833 0.244650 0.450000 0.241475 0.471172 0.231946 0.497994 0.254179 0.533283 0.331467 0.553050 0.371696 0.545989 0.502979 0.551639 0.552737 0.572811 0.718954 0.591161 0.752833 0.565750 0.752833 0.533283 0.742246 0.523406 0.762363 0.324367 0.769775 0.318717 diff --git a/datasets/检测仪/val/labels/订单1807286_51_7114197.txt b/datasets/检测仪/val/labels/订单1807286_51_7114197.txt new file mode 100644 index 0000000..44207c8 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807286_51_7114197.txt @@ -0,0 +1 @@ +5 0.318000 0.560069 0.293529 0.558657 0.265307 0.571363 0.248366 0.589716 0.348118 0.776049 0.366941 0.787343 0.425281 0.915804 0.434693 0.952500 0.464810 0.997676 0.562523 1.000000 0.584614 1.000000 0.656797 0.970853 0.700078 0.972265 0.709490 0.938382 0.690667 0.873451 0.662444 0.840980 0.605974 0.711118 0.602209 0.661706 0.543856 0.513490 0.513752 0.502196 0.489281 0.507843 0.472340 0.517725 0.333059 0.560069 diff --git a/datasets/检测仪/val/labels/订单1807288_51_7114663.txt b/datasets/检测仪/val/labels/订单1807288_51_7114663.txt new file mode 100644 index 0000000..c4f9a46 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807288_51_7114663.txt @@ -0,0 +1 @@ +5 0.224872 0.524798 0.207923 0.548798 0.253103 0.688548 0.277564 0.726663 0.320859 0.855125 0.313333 0.913000 0.356359 1.000000 0.441462 1.000000 0.576833 0.965231 0.631410 0.960990 0.644590 0.928529 0.629526 0.850885 0.582474 0.814183 0.533538 0.674433 0.535423 0.625029 0.484603 0.482452 0.450731 0.472577 0.426256 0.472577 0.411205 0.478221 0.241808 0.520567 diff --git a/datasets/检测仪/val/labels/订单1807292_51_7114224.txt b/datasets/检测仪/val/labels/订单1807292_51_7114224.txt new file mode 100644 index 0000000..8f6a196 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807292_51_7114224.txt @@ -0,0 +1 @@ +5 0.417752 0.389265 0.387647 0.413265 0.427163 0.551598 0.459163 0.579833 0.483634 0.680059 0.491163 0.739343 0.517516 0.798637 0.540092 0.818402 0.564562 0.818402 0.570209 0.802873 0.694431 0.784520 0.701961 0.795814 0.741490 0.794402 0.752784 0.767578 0.754667 0.698412 0.722667 0.665941 0.686902 0.543127 0.688784 0.493725 0.653033 0.361029 0.624797 0.348324 0.596562 0.352559 0.589033 0.356794 0.447869 0.387853 diff --git a/datasets/检测仪/val/labels/订单1807296_51_7114313.txt b/datasets/检测仪/val/labels/订单1807296_51_7114313.txt new file mode 100644 index 0000000..d0eeaad --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807296_51_7114313.txt @@ -0,0 +1 @@ +5 0.371652 0.392094 0.343421 0.407621 0.330249 0.554430 0.343421 0.596776 0.330249 0.733706 0.315190 0.769002 0.311418 0.840987 0.332120 0.873454 0.373538 0.876283 0.381067 0.862160 0.514693 0.863575 0.520351 0.876283 0.559868 0.884748 0.582456 0.859342 0.601272 0.787346 0.597515 0.753465 0.589985 0.613717 0.614459 0.561491 0.631389 0.424561 0.601272 0.400559 0.576813 0.400559 0.561754 0.404803 0.409298 0.392094 diff --git a/datasets/检测仪/val/labels/订单1807299_51_7114302.txt b/datasets/检测仪/val/labels/订单1807299_51_7114302.txt new file mode 100644 index 0000000..e3bbde3 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807299_51_7114302.txt @@ -0,0 +1 @@ +5 0.387529 0.306092 0.351534 0.345621 0.345181 0.387967 0.358946 0.409144 0.351534 0.629353 0.346240 0.660412 0.339887 0.697111 0.344123 0.714052 0.376941 0.753575 0.404471 0.749340 0.601392 0.736641 0.649034 0.714052 0.805725 0.711229 0.854426 0.722523 0.929593 0.697111 0.950770 0.670294 0.952887 0.635000 0.946534 0.627941 0.950770 0.465608 0.959240 0.455725 0.960299 0.419020 0.942299 0.390791 0.862897 0.358320 0.809961 0.368203 0.662799 0.356908 0.631034 0.342797 0.390706 0.307503 diff --git a/datasets/检测仪/val/labels/订单1807304_51_7114340.txt b/datasets/检测仪/val/labels/订单1807304_51_7114340.txt new file mode 100644 index 0000000..ac68758 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807304_51_7114340.txt @@ -0,0 +1 @@ +5 0.444960 0.530500 0.426133 0.537560 0.375320 0.623660 0.369667 0.657540 0.326373 0.732360 0.311320 0.747890 0.288733 0.795880 0.288733 0.825530 0.303800 0.828350 0.315080 0.821290 0.405427 0.841060 0.405427 0.859410 0.428013 0.862230 0.448720 0.852350 0.486360 0.808590 0.488240 0.776120 0.522120 0.687190 0.550360 0.667430 0.593653 0.578490 0.584240 0.557320 0.571067 0.553080 0.450600 0.530500 diff --git a/datasets/检测仪/val/labels/订单1807305_51_7114437.txt b/datasets/检测仪/val/labels/订单1807305_51_7114437.txt new file mode 100644 index 0000000..30be09d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807305_51_7114437.txt @@ -0,0 +1 @@ +5 0.384831 0.510674 0.350951 0.510674 0.322721 0.530430 0.334010 0.678652 0.354714 0.718184 0.356602 0.814170 0.349062 0.846641 0.356602 0.901689 0.377305 0.931338 0.401771 0.931338 0.409297 0.921455 0.520352 0.922861 0.542930 0.931338 0.573047 0.918633 0.582461 0.853691 0.576810 0.828291 0.574935 0.709707 0.586224 0.668770 0.595638 0.527607 0.565521 0.506436 0.546693 0.506436 0.531641 0.513496 0.403646 0.514902 diff --git a/datasets/检测仪/val/labels/订单1807307_51_7114368.txt b/datasets/检测仪/val/labels/订单1807307_51_7114368.txt new file mode 100644 index 0000000..fe9b10b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807307_51_7114368.txt @@ -0,0 +1 @@ +5 0.616182 0.152181 0.590771 0.121126 0.434082 0.135247 0.393853 0.155007 0.253042 0.164889 0.215986 0.155007 0.143994 0.170534 0.122817 0.193118 0.122817 0.231237 0.134463 0.239707 0.138701 0.386517 0.135522 0.413333 0.161992 0.441569 0.225518 0.450039 0.266807 0.431686 0.402319 0.421803 0.433022 0.434512 0.600303 0.430273 0.624653 0.397806 0.623594 0.372396 0.614067 0.356868 0.607715 0.193118 0.617241 0.155007 diff --git a/datasets/检测仪/val/labels/订单1807311_51_7114483.txt b/datasets/检测仪/val/labels/订单1807311_51_7114483.txt new file mode 100644 index 0000000..e18fc41 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807311_51_7114483.txt @@ -0,0 +1 @@ +5 0.473289 0.170471 0.441294 0.191642 0.443178 0.335629 0.465761 0.389271 0.469528 0.519142 0.463883 0.575604 0.471411 0.650421 0.486467 0.670183 0.544811 0.658892 0.678450 0.654658 0.699150 0.665950 0.734911 0.668775 0.749972 0.646187 0.761261 0.565725 0.742439 0.537492 0.733033 0.401975 0.746206 0.355392 0.731150 0.217054 0.702917 0.185996 0.676567 0.191642 0.486467 0.169058 diff --git a/datasets/检测仪/val/labels/订单1807312_51_7114460.txt b/datasets/检测仪/val/labels/订单1807312_51_7114460.txt new file mode 100644 index 0000000..32596d7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807312_51_7114460.txt @@ -0,0 +1 @@ +5 0.537292 0.503613 0.512813 0.517725 0.509049 0.646191 0.520352 0.682891 0.507174 0.797227 0.490234 0.829697 0.493997 0.890400 0.516576 0.920039 0.539167 0.918633 0.554219 0.905928 0.669036 0.917217 0.674687 0.929922 0.701029 0.936982 0.721732 0.920039 0.744323 0.850869 0.736797 0.814170 0.731146 0.698418 0.751849 0.656064 0.759375 0.524785 0.733034 0.502197 0.714206 0.503613 0.695391 0.510674 0.561758 0.506436 0.542930 0.499375 diff --git a/datasets/检测仪/val/labels/订单1807317_51_7114433.txt b/datasets/检测仪/val/labels/订单1807317_51_7114433.txt new file mode 100644 index 0000000..3dbee3f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807317_51_7114433.txt @@ -0,0 +1 @@ +5 0.546693 0.351152 0.531641 0.366689 0.524115 0.486670 0.544818 0.533262 0.542930 0.634893 0.527878 0.670186 0.533516 0.722412 0.550456 0.753467 0.576810 0.756299 0.591862 0.742178 0.697266 0.746416 0.725508 0.764766 0.761263 0.746416 0.776315 0.678652 0.766914 0.650420 0.763151 0.540312 0.774440 0.499375 0.776315 0.365273 0.763151 0.342686 0.723620 0.342686 0.716094 0.348330 0.571159 0.358213 diff --git a/datasets/检测仪/val/labels/订单1807319_51_7114509.txt b/datasets/检测仪/val/labels/订单1807319_51_7114509.txt new file mode 100644 index 0000000..4074378 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807319_51_7114509.txt @@ -0,0 +1 @@ +5 0.371654 0.512080 0.350951 0.524785 0.364128 0.646191 0.379180 0.677246 0.384831 0.798643 0.381068 0.840996 0.396120 0.863574 0.413060 0.877695 0.435651 0.881924 0.441289 0.872051 0.529753 0.870635 0.541055 0.884756 0.569284 0.886162 0.601276 0.863574 0.599401 0.811348 0.589987 0.780293 0.580573 0.673008 0.591862 0.627832 0.584336 0.507852 0.556107 0.495146 0.531641 0.495146 0.524115 0.503613 0.401771 0.513496 diff --git a/datasets/检测仪/val/labels/订单1807320_51_7114495.txt b/datasets/检测仪/val/labels/订单1807320_51_7114495.txt new file mode 100644 index 0000000..0311a5c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807320_51_7114495.txt @@ -0,0 +1 @@ +5 0.382817 0.352612 0.350817 0.373787 0.367758 0.534712 0.377167 0.560119 0.379050 0.673050 0.369642 0.708344 0.382817 0.767631 0.405400 0.795863 0.431750 0.794450 0.441167 0.781744 0.557858 0.778925 0.561625 0.788806 0.597383 0.791625 0.618083 0.771863 0.633142 0.708344 0.614325 0.680106 0.610558 0.557300 0.623733 0.514950 0.631258 0.372375 0.603033 0.354025 0.572917 0.352612 0.569150 0.359669 0.411050 0.361081 diff --git a/datasets/检测仪/val/labels/订单1807322_51_7114586.txt b/datasets/检测仪/val/labels/订单1807322_51_7114586.txt new file mode 100644 index 0000000..1b5311c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807322_51_7114586.txt @@ -0,0 +1 @@ +5 0.431888 0.393506 0.407422 0.417500 0.418711 0.540312 0.441289 0.567139 0.441289 0.668770 0.439414 0.699824 0.448828 0.752061 0.462005 0.774648 0.492109 0.777471 0.499648 0.766172 0.599401 0.756299 0.631393 0.766172 0.650221 0.749238 0.657747 0.688535 0.638919 0.661719 0.635156 0.560078 0.637044 0.521963 0.629505 0.410449 0.608802 0.393506 0.589987 0.394922 0.582461 0.399150 0.462005 0.396328 diff --git a/datasets/检测仪/val/labels/订单1807323_51_7114599.txt b/datasets/检测仪/val/labels/订单1807323_51_7114599.txt new file mode 100644 index 0000000..b3f515f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807323_51_7114599.txt @@ -0,0 +1 @@ +5 0.307656 0.229756 0.268138 0.253760 0.262487 0.455615 0.281315 0.506436 0.277552 0.675830 0.251198 0.746416 0.262487 0.843818 0.294492 0.887578 0.356602 0.893223 0.369779 0.877695 0.552344 0.874873 0.571159 0.884756 0.616341 0.893223 0.663385 0.853691 0.674687 0.739355 0.653984 0.691357 0.637044 0.502197 0.659622 0.440088 0.655859 0.260811 0.620104 0.228350 0.597513 0.231172 0.356602 0.231172 diff --git a/datasets/检测仪/val/labels/订单1807326_51_7114625.txt b/datasets/检测仪/val/labels/订单1807326_51_7114625.txt new file mode 100644 index 0000000..e261154 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807326_51_7114625.txt @@ -0,0 +1 @@ +5 0.320833 0.464092 0.286953 0.483848 0.266250 0.644775 0.290716 0.695596 0.273776 0.833936 0.254961 0.880518 0.258724 0.948271 0.279427 0.987803 0.315195 0.984980 0.318958 0.972275 0.445065 0.972275 0.495872 0.993447 0.524115 0.969453 0.550456 0.897461 0.544818 0.864990 0.556107 0.722412 0.576810 0.675830 0.603164 0.503613 0.574935 0.479619 0.546693 0.478203 0.537292 0.485264 0.356602 0.471143 diff --git a/datasets/检测仪/val/labels/订单1807329_51_7114657.txt b/datasets/检测仪/val/labels/订单1807329_51_7114657.txt new file mode 100644 index 0000000..cf4a97c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807329_51_7114657.txt @@ -0,0 +1 @@ +5 0.588000 0.582730 0.561653 0.594020 0.527773 0.699890 0.535307 0.723890 0.499533 0.817060 0.492013 0.838230 0.475067 0.886230 0.482600 0.913050 0.503307 0.920110 0.522120 0.911640 0.599293 0.925750 0.625640 0.948340 0.650107 0.935630 0.680227 0.887640 0.674587 0.865050 0.702813 0.764830 0.753627 0.634960 0.744227 0.616610 0.725400 0.610960 0.715987 0.616610 0.610587 0.592610 diff --git a/datasets/检测仪/val/labels/订单1807331_51_7114848.txt b/datasets/检测仪/val/labels/订单1807331_51_7114848.txt new file mode 100644 index 0000000..610c088 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807331_51_7114848.txt @@ -0,0 +1 @@ +5 0.439307 0.483910 0.422373 0.496620 0.424253 0.609550 0.437427 0.629310 0.444960 0.708360 0.435547 0.740830 0.446840 0.797290 0.461893 0.814230 0.478840 0.812820 0.486360 0.805760 0.574827 0.804350 0.582360 0.814230 0.601173 0.814230 0.621880 0.798710 0.627520 0.747890 0.618120 0.726710 0.610587 0.627900 0.621880 0.598260 0.620000 0.489560 0.599293 0.471210 0.580467 0.472620 0.572947 0.481090 0.454373 0.483910 diff --git a/datasets/检测仪/val/labels/订单1807337_51_7114881.txt b/datasets/检测仪/val/labels/订单1807337_51_7114881.txt new file mode 100644 index 0000000..972bdf8 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807337_51_7114881.txt @@ -0,0 +1 @@ +5 0.571159 0.355391 0.548581 0.379395 0.539167 0.540312 0.559870 0.595371 0.561758 0.749238 0.535404 0.791582 0.542930 0.887578 0.556107 0.920039 0.603164 0.932744 0.612578 0.918633 0.785729 0.936982 0.806432 0.952510 0.838437 0.966631 0.874193 0.948271 0.904310 0.849463 0.876081 0.784531 0.866667 0.602432 0.898659 0.540312 0.902422 0.356807 0.861016 0.327158 0.847839 0.327158 0.812083 0.334219 0.616341 0.356807 diff --git a/datasets/检测仪/val/labels/订单1807342_51_7114751.txt b/datasets/检测仪/val/labels/订单1807342_51_7114751.txt new file mode 100644 index 0000000..3bfe15b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807342_51_7114751.txt @@ -0,0 +1 @@ +5 0.324605 0.345504 0.288830 0.376568 0.320833 0.533257 0.345307 0.575603 0.366009 0.720998 0.369766 0.770406 0.379181 0.787346 0.401769 0.802873 0.430000 0.802873 0.435643 0.792993 0.561754 0.780285 0.586213 0.791579 0.601272 0.770406 0.621974 0.705471 0.597515 0.673004 0.589985 0.551612 0.608801 0.486667 0.595629 0.356798 0.569284 0.331393 0.546696 0.334221 0.539167 0.345504 0.362237 0.353980 diff --git a/datasets/检测仪/val/labels/订单1807343_51_7114747.txt b/datasets/检测仪/val/labels/订单1807343_51_7114747.txt new file mode 100644 index 0000000..bab1cc8 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807343_51_7114747.txt @@ -0,0 +1 @@ +5 0.241676 0.341974 0.213431 0.367388 0.256729 0.536780 0.298152 0.574895 0.341463 0.735823 0.335811 0.814875 0.388524 0.929212 0.437487 0.964506 0.514681 0.948973 0.518444 0.923569 0.708604 0.885454 0.718019 0.891097 0.778271 0.885454 0.812154 0.827577 0.759441 0.699123 0.721782 0.665234 0.625758 0.495842 0.631410 0.446441 0.559867 0.286919 0.525971 0.279860 0.239787 0.340568 diff --git a/datasets/检测仪/val/labels/订单1807349_51_7114675.txt b/datasets/检测仪/val/labels/订单1807349_51_7114675.txt new file mode 100644 index 0000000..7d2ce7c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807349_51_7114675.txt @@ -0,0 +1 @@ +5 0.416823 0.502197 0.399883 0.520557 0.422474 0.665947 0.439414 0.699824 0.456354 0.822637 0.445065 0.856523 0.460117 0.914395 0.477057 0.939805 0.509049 0.938398 0.512813 0.925693 0.637044 0.922861 0.650221 0.934160 0.674687 0.931338 0.689740 0.918633 0.701029 0.849463 0.685977 0.825459 0.678451 0.698418 0.691628 0.657480 0.693503 0.499375 0.659622 0.478203 0.635156 0.482441 0.618216 0.488086 0.460117 0.502197 diff --git a/datasets/检测仪/val/labels/订单1807350_51_7114761.txt b/datasets/检测仪/val/labels/订单1807350_51_7114761.txt new file mode 100644 index 0000000..bbc5fc3 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807350_51_7114761.txt @@ -0,0 +1 @@ +5 0.490234 0.421738 0.463880 0.438682 0.454466 0.569961 0.478932 0.615127 0.463880 0.722412 0.452591 0.757705 0.456354 0.812764 0.475169 0.835342 0.507174 0.842402 0.525990 0.832520 0.644570 0.839580 0.678451 0.825459 0.695391 0.768994 0.684089 0.737939 0.689740 0.619365 0.710443 0.588311 0.719857 0.455615 0.701029 0.430205 0.676563 0.427383 0.663385 0.434443 0.520352 0.424561 diff --git a/datasets/检测仪/val/labels/订单1807354_51_7114805.txt b/datasets/检测仪/val/labels/订单1807354_51_7114805.txt new file mode 100644 index 0000000..965c580 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807354_51_7114805.txt @@ -0,0 +1 @@ +5 0.477057 0.469736 0.441289 0.488086 0.422474 0.637715 0.437526 0.674424 0.416823 0.785937 0.405534 0.821230 0.398008 0.879102 0.418711 0.903105 0.446940 0.908750 0.456354 0.894629 0.565521 0.912988 0.599401 0.928516 0.623867 0.914395 0.657747 0.842402 0.642682 0.821230 0.669036 0.697002 0.689740 0.664541 0.719857 0.516318 0.697266 0.488086 0.672799 0.486670 0.648333 0.490908 0.514701 0.482441 diff --git a/datasets/检测仪/val/labels/订单1807356_51_7114884.txt b/datasets/检测仪/val/labels/订单1807356_51_7114884.txt new file mode 100644 index 0000000..4d972fd --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807356_51_7114884.txt @@ -0,0 +1 @@ +5 0.480820 0.479619 0.458229 0.488086 0.405534 0.620781 0.411185 0.644775 0.358477 0.745000 0.367891 0.759121 0.349062 0.787354 0.326484 0.848047 0.334010 0.870635 0.356602 0.881924 0.386706 0.874873 0.484583 0.893223 0.492109 0.907334 0.510937 0.914395 0.542930 0.897461 0.569284 0.838164 0.569284 0.801465 0.608802 0.694180 0.631393 0.663125 0.682214 0.533262 0.665273 0.510674 0.644570 0.507852 0.640807 0.514902 0.507174 0.483848 diff --git a/datasets/检测仪/val/labels/订单1807358_51_7114911.txt b/datasets/检测仪/val/labels/订单1807358_51_7114911.txt new file mode 100644 index 0000000..87c779e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807358_51_7114911.txt @@ -0,0 +1 @@ +5 0.275560 0.231230 0.243560 0.236880 0.237920 0.256640 0.251093 0.267940 0.215333 0.355460 0.198387 0.361100 0.188987 0.373810 0.209680 0.399220 0.309440 0.433100 0.337667 0.426040 0.473187 0.466970 0.503307 0.474030 0.689640 0.533320 0.721640 0.514970 0.725400 0.496620 0.776213 0.368160 0.764920 0.345570 0.589880 0.301810 0.548480 0.307460 0.403547 0.266520 0.369667 0.248170 diff --git a/datasets/检测仪/val/labels/订单1807365_51_7114899.txt b/datasets/检测仪/val/labels/订单1807365_51_7114899.txt new file mode 100644 index 0000000..57c6b5a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807365_51_7114899.txt @@ -0,0 +1 @@ +5 0.374471 0.479608 0.353765 0.505020 0.366941 0.663118 0.391412 0.688529 0.400824 0.809931 0.395176 0.846627 0.406458 0.900275 0.423399 0.917216 0.462928 0.918627 0.468575 0.907333 0.549503 0.901686 0.568327 0.912980 0.632327 0.912980 0.639856 0.903098 0.645503 0.845216 0.643621 0.811343 0.630444 0.798637 0.621033 0.675824 0.632327 0.639118 0.632327 0.478196 0.607856 0.459843 0.573974 0.459843 0.558915 0.469725 0.410222 0.481020 0.395176 0.473961 diff --git a/datasets/检测仪/val/labels/订单1807366_51_7114944.txt b/datasets/检测仪/val/labels/订单1807366_51_7114944.txt new file mode 100644 index 0000000..82b62ad --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807366_51_7114944.txt @@ -0,0 +1 @@ +5 0.375320 0.346990 0.343320 0.376630 0.401667 0.582730 0.437427 0.623660 0.475067 0.776120 0.467547 0.838230 0.495773 0.910220 0.539067 0.935630 0.578587 0.937050 0.578587 0.917280 0.710347 0.876350 0.766800 0.877760 0.778093 0.850940 0.764920 0.764830 0.751747 0.739420 0.715987 0.579900 0.723520 0.540380 0.687760 0.354040 0.655760 0.334280 0.620000 0.334280 0.431787 0.349810 0.424253 0.344160 diff --git a/datasets/检测仪/val/labels/订单1807368_51_7115023.txt b/datasets/检测仪/val/labels/订单1807368_51_7115023.txt new file mode 100644 index 0000000..028a6f0 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807368_51_7115023.txt @@ -0,0 +1 @@ +5 0.332027 0.697070 0.315080 0.709770 0.320733 0.743650 0.324493 0.801530 0.311320 0.824120 0.315080 0.841060 0.333907 0.850940 0.399787 0.857990 0.435547 0.846700 0.561653 0.839640 0.612467 0.849520 0.753627 0.843880 0.772453 0.832590 0.768693 0.702720 0.757400 0.675900 0.604947 0.675900 0.574827 0.691420 0.460013 0.697070 0.424253 0.685780 0.339560 0.691420 diff --git a/datasets/检测仪/val/labels/订单1807371_51_7115058.txt b/datasets/检测仪/val/labels/订单1807371_51_7115058.txt new file mode 100644 index 0000000..50a4724 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807371_51_7115058.txt @@ -0,0 +1 @@ +5 0.303893 0.513496 0.271901 0.530430 0.262487 0.667363 0.283190 0.697002 0.283190 0.809932 0.264375 0.838164 0.273776 0.903105 0.292604 0.920039 0.320833 0.920039 0.330247 0.907334 0.435651 0.910156 0.465768 0.921455 0.488346 0.903105 0.510937 0.840996 0.503411 0.815586 0.497760 0.702656 0.520352 0.657480 0.533516 0.538906 0.512813 0.516318 0.486471 0.512080 0.473294 0.520557 0.341536 0.514902 0.320833 0.510674 diff --git a/datasets/检测仪/val/labels/订单1807374_51_7114939.txt b/datasets/检测仪/val/labels/订单1807374_51_7114939.txt new file mode 100644 index 0000000..a646ae5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807374_51_7114939.txt @@ -0,0 +1 @@ +5 0.381068 0.304570 0.354714 0.327158 0.350951 0.462676 0.367891 0.506436 0.360365 0.615127 0.349062 0.632070 0.350951 0.697002 0.364128 0.722412 0.386706 0.722412 0.390482 0.715361 0.512813 0.719590 0.514701 0.730889 0.542930 0.732295 0.559870 0.719590 0.586224 0.656064 0.576810 0.634893 0.586224 0.523379 0.612578 0.472559 0.631393 0.331396 0.610690 0.311631 0.578698 0.311631 0.567396 0.318691 0.407422 0.310225 diff --git a/datasets/检测仪/val/labels/订单1807378_51_7115179.txt b/datasets/检测仪/val/labels/订单1807378_51_7115179.txt new file mode 100644 index 0000000..472518c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807378_51_7115179.txt @@ -0,0 +1 @@ +5 0.503411 0.324336 0.469531 0.344102 0.478932 0.531846 0.503411 0.578428 0.510937 0.747822 0.490234 0.818408 0.505286 0.924277 0.557995 0.973682 0.608802 0.968037 0.627630 0.948271 0.808320 0.945449 0.829023 0.955332 0.874193 0.960977 0.913724 0.925693 0.925013 0.811348 0.887370 0.753467 0.855378 0.568545 0.870430 0.500791 0.832786 0.331396 0.802669 0.310225 0.774440 0.308809 0.742448 0.311631 0.542930 0.321514 diff --git a/datasets/检测仪/val/labels/订单1807381_51_7115096.txt b/datasets/检测仪/val/labels/订单1807381_51_7115096.txt new file mode 100644 index 0000000..6c3d8f7 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807381_51_7115096.txt @@ -0,0 +1 @@ +5 0.437558 0.342708 0.418738 0.359653 0.416852 0.469757 0.428148 0.493750 0.428148 0.588333 0.411215 0.612326 0.407442 0.661736 0.422500 0.671615 0.450741 0.677266 0.458264 0.670208 0.546725 0.671615 0.582488 0.685738 0.595660 0.670208 0.608843 0.620799 0.605069 0.589748 0.603194 0.496580 0.618252 0.465521 0.627662 0.351181 0.614479 0.338472 0.593785 0.338472 0.454502 0.339887 diff --git a/datasets/检测仪/val/labels/订单1807385_51_7115103.txt b/datasets/检测仪/val/labels/订单1807385_51_7115103.txt new file mode 100644 index 0000000..bccd227 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807385_51_7115103.txt @@ -0,0 +1 @@ +5 0.370644 0.478190 0.329856 0.493720 0.326722 0.613710 0.345544 0.637705 0.336133 0.726640 0.323589 0.757695 0.333000 0.800045 0.345544 0.824040 0.364367 0.821215 0.383189 0.815570 0.536900 0.821215 0.593367 0.840980 0.640422 0.818395 0.652967 0.780280 0.646689 0.742165 0.656100 0.656055 0.668644 0.616530 0.703156 0.496545 0.668644 0.481015 0.631011 0.481015 0.609044 0.485250 0.417689 0.483840 diff --git a/datasets/检测仪/val/labels/订单1807386_51_7115174.txt b/datasets/检测仪/val/labels/订单1807386_51_7115174.txt new file mode 100644 index 0000000..ba2ec87 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807386_51_7115174.txt @@ -0,0 +1 @@ +5 0.322685 0.498085 0.298214 0.513611 0.283161 0.660417 0.292566 0.699950 0.277513 0.819931 0.269987 0.877808 0.264339 0.945565 0.285040 0.972391 0.313280 0.972391 0.328333 0.962510 0.450675 0.966746 0.501495 0.986508 0.520317 0.962510 0.544788 0.874990 0.531614 0.842520 0.539140 0.707004 0.565489 0.661835 0.571138 0.520675 0.548545 0.500903 0.529722 0.500903 0.510899 0.506558 0.356561 0.503730 diff --git a/datasets/检测仪/val/labels/订单1807387_51_7115119.txt b/datasets/检测仪/val/labels/订单1807387_51_7115119.txt new file mode 100644 index 0000000..b268cc5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807387_51_7115119.txt @@ -0,0 +1 @@ +5 0.437617 0.394980 0.419264 0.414746 0.423496 0.427448 0.422090 0.527676 0.415026 0.541790 0.429147 0.558730 0.447493 0.564382 0.546309 0.561556 0.568893 0.553086 0.673353 0.553086 0.705820 0.561556 0.748171 0.560143 0.766523 0.547441 0.766523 0.529089 0.755228 0.522031 0.758053 0.452858 0.770755 0.434512 0.755228 0.416159 0.704414 0.407689 0.677591 0.416159 0.588659 0.416159 0.568893 0.409102 0.440436 0.399219 diff --git a/datasets/检测仪/val/labels/订单1807388_51_7115158.txt b/datasets/检测仪/val/labels/订单1807388_51_7115158.txt new file mode 100644 index 0000000..ceb8de1 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807388_51_7115158.txt @@ -0,0 +1 @@ +5 0.380118 0.180343 0.355647 0.200108 0.340588 0.344088 0.355647 0.406206 0.329294 0.519137 0.308588 0.568539 0.312353 0.643353 0.327412 0.663118 0.363176 0.667353 0.378235 0.658882 0.493046 0.667353 0.517516 0.678647 0.547621 0.682882 0.581503 0.664529 0.600327 0.592539 0.589033 0.564304 0.611621 0.424549 0.632327 0.376559 0.664327 0.218461 0.636092 0.185990 0.613503 0.184578 0.412105 0.173284 diff --git a/datasets/检测仪/val/labels/订单1807390_51_7115204.txt b/datasets/检测仪/val/labels/订单1807390_51_7115204.txt new file mode 100644 index 0000000..ad8947b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807390_51_7115204.txt @@ -0,0 +1 @@ +5 0.590934 0.157768 0.530704 0.180355 0.462953 0.390692 0.455421 0.469740 0.398962 0.643374 0.348143 0.721012 0.318028 0.860761 0.350023 0.910173 0.421546 0.928521 0.432837 0.915813 0.660577 0.956756 0.675640 0.972284 0.733979 0.989221 0.790450 0.955337 0.845029 0.816998 0.835617 0.742189 0.890208 0.536090 0.920311 0.482448 0.967370 0.258002 0.925963 0.224118 0.605998 0.157777 diff --git a/datasets/检测仪/val/labels/订单1807393_51_7115228.txt b/datasets/检测仪/val/labels/订单1807393_51_7115228.txt new file mode 100644 index 0000000..70fa262 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807393_51_7115228.txt @@ -0,0 +1 @@ +5 0.412960 0.468390 0.388493 0.483910 0.409200 0.625080 0.437427 0.656130 0.444960 0.754950 0.435547 0.807180 0.458133 0.866460 0.484480 0.887640 0.512720 0.877760 0.625640 0.856580 0.648227 0.863640 0.678347 0.850940 0.682107 0.778940 0.661400 0.747890 0.644467 0.633550 0.650107 0.585550 0.633173 0.466970 0.612467 0.452860 0.586120 0.454270 0.580467 0.462740 0.437427 0.471210 diff --git a/datasets/检测仪/val/labels/订单1807395_51_7115255.txt b/datasets/检测仪/val/labels/订单1807395_51_7115255.txt new file mode 100644 index 0000000..3aa917e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807395_51_7115255.txt @@ -0,0 +1 @@ +5 0.168245 0.443609 0.155066 0.477498 0.283085 0.670887 0.332048 0.707587 0.407354 0.821934 0.431835 0.886859 0.484548 0.951795 0.552327 0.977208 0.597513 0.956032 0.597513 0.936271 0.708604 0.865693 0.740612 0.860040 0.748138 0.821934 0.714255 0.745703 0.684122 0.723111 0.584335 0.583360 0.567394 0.542423 0.475133 0.385733 0.433710 0.374447 0.399827 0.381505 0.403590 0.388564 0.228497 0.436560 0.211543 0.436560 diff --git a/datasets/检测仪/val/labels/订单1807396_51_7115232.txt b/datasets/检测仪/val/labels/订单1807396_51_7115232.txt new file mode 100644 index 0000000..07e45f2 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807396_51_7115232.txt @@ -0,0 +1 @@ +5 0.373542 0.462676 0.341536 0.479619 0.318958 0.610898 0.332135 0.646191 0.307656 0.759121 0.290716 0.794404 0.292604 0.836758 0.305781 0.870635 0.330247 0.872051 0.332135 0.862168 0.445065 0.869229 0.473294 0.884756 0.499648 0.874873 0.507174 0.843818 0.539167 0.691357 0.537292 0.677246 0.559870 0.641953 0.591862 0.506436 0.578698 0.488086 0.550456 0.483848 0.539167 0.486670 0.409297 0.475381 0.398008 0.465498 diff --git a/datasets/检测仪/val/labels/订单1807399_51_7115284.txt b/datasets/检测仪/val/labels/订单1807399_51_7115284.txt new file mode 100644 index 0000000..2edd68e --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807399_51_7115284.txt @@ -0,0 +1 @@ +5 0.366003 0.442910 0.341536 0.459854 0.337773 0.601016 0.356602 0.640537 0.349062 0.754883 0.339661 0.794404 0.350951 0.859346 0.371654 0.887578 0.401771 0.886162 0.409297 0.873457 0.525990 0.869229 0.537292 0.880518 0.565521 0.881924 0.588099 0.857930 0.589987 0.794404 0.580573 0.760527 0.582461 0.640537 0.597513 0.598193 0.593750 0.462676 0.576810 0.447148 0.556107 0.442910 0.542930 0.448564 0.403646 0.447148 diff --git a/datasets/检测仪/val/labels/订单1807401_51_7115294.txt b/datasets/检测仪/val/labels/订单1807401_51_7115294.txt new file mode 100644 index 0000000..2930f60 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807401_51_7115294.txt @@ -0,0 +1 @@ +5 0.366456 0.476780 0.333854 0.492310 0.323828 0.610885 0.341377 0.632060 0.331350 0.733695 0.323828 0.766165 0.326332 0.814160 0.341377 0.842390 0.371465 0.843805 0.386510 0.835335 0.529432 0.839570 0.554503 0.850860 0.579574 0.836745 0.599636 0.776045 0.584591 0.754870 0.594618 0.647590 0.609663 0.615120 0.619698 0.499365 0.607158 0.479605 0.579574 0.479605 0.562025 0.482425 0.401554 0.482425 diff --git a/datasets/检测仪/val/labels/订单1807404_51_7115386.txt b/datasets/检测仪/val/labels/订单1807404_51_7115386.txt new file mode 100644 index 0000000..c40e49b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807404_51_7115386.txt @@ -0,0 +1 @@ +5 0.157083 0.290459 0.140143 0.300342 0.138268 0.380801 0.147682 0.404795 0.151445 0.482441 0.142031 0.500791 0.143906 0.545957 0.155208 0.557256 0.181549 0.557256 0.264375 0.551611 0.285078 0.558662 0.300130 0.543135 0.307656 0.500791 0.302018 0.485264 0.300130 0.411855 0.313307 0.379395 0.315195 0.300342 0.307656 0.287637 0.285078 0.290459 0.162734 0.287637 diff --git a/datasets/检测仪/val/labels/订单1807405_51_7115359.txt b/datasets/检测仪/val/labels/订单1807405_51_7115359.txt new file mode 100644 index 0000000..d5ff1e9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807405_51_7115359.txt @@ -0,0 +1 @@ +5 0.365907 0.423210 0.339560 0.444390 0.309440 0.608140 0.330147 0.654720 0.309440 0.811410 0.281213 0.860820 0.281213 0.944100 0.309440 0.983630 0.345200 0.986450 0.360253 0.968100 0.524013 0.973750 0.533413 0.986450 0.569173 0.990690 0.595533 0.969510 0.618120 0.879170 0.606827 0.829760 0.612467 0.661780 0.633173 0.609550 0.644467 0.448620 0.618120 0.424630 0.588000 0.427450 0.572947 0.431680 0.407307 0.421800 diff --git a/datasets/检测仪/val/labels/订单1807408_51_7115322.txt b/datasets/检测仪/val/labels/订单1807408_51_7115322.txt new file mode 100644 index 0000000..6b17a94 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807408_51_7115322.txt @@ -0,0 +1 @@ +5 0.240454 0.529069 0.208704 0.543185 0.205528 0.570007 0.213993 0.585532 0.199177 0.723870 0.187537 0.746456 0.176949 0.769043 0.198121 0.811390 0.254212 0.825505 0.314541 0.817041 0.465887 0.822686 0.537856 0.853743 0.712488 0.873504 0.744237 0.841037 0.740005 0.793039 0.718833 0.588358 0.725184 0.578471 0.726246 0.553065 0.697667 0.519189 0.512453 0.519189 0.489167 0.534714 0.337822 0.530479 0.308190 0.512128 diff --git a/datasets/检测仪/val/labels/订单1807410_51_7115405.txt b/datasets/检测仪/val/labels/订单1807410_51_7115405.txt new file mode 100644 index 0000000..6402f58 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807410_51_7115405.txt @@ -0,0 +1 @@ +5 0.529756 0.259400 0.486467 0.284812 0.503406 0.458442 0.520344 0.499379 0.525994 0.626425 0.514700 0.677242 0.525994 0.746413 0.557989 0.777467 0.588106 0.778879 0.603161 0.766175 0.742439 0.763350 0.759383 0.773233 0.783850 0.774646 0.815844 0.750646 0.832783 0.680067 0.810200 0.643362 0.798906 0.492321 0.821494 0.449971 0.817728 0.283400 0.783850 0.253754 0.759383 0.253754 0.753733 0.260813 0.567400 0.265050 0.537283 0.259400 diff --git a/datasets/检测仪/val/labels/订单1807411_51_7115351.txt b/datasets/检测仪/val/labels/订单1807411_51_7115351.txt new file mode 100644 index 0000000..afcf08c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807411_51_7115351.txt @@ -0,0 +1 @@ +5 0.120703 0.303229 0.098467 0.320169 0.092114 0.346986 0.103765 0.365339 0.109058 0.512148 0.094233 0.526263 0.076235 0.562969 0.101646 0.595436 0.190576 0.608138 0.228691 0.595436 0.371616 0.594023 0.399146 0.615195 0.560068 0.627904 0.579126 0.606725 0.584419 0.577083 0.597124 0.396393 0.599243 0.373809 0.581245 0.342754 0.424556 0.327227 0.387500 0.337109 0.245630 0.313112 0.220220 0.298991 diff --git a/datasets/检测仪/val/labels/订单1807412_51_7115406.txt b/datasets/检测仪/val/labels/订单1807412_51_7115406.txt new file mode 100644 index 0000000..52e912d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807412_51_7115406.txt @@ -0,0 +1 @@ +5 0.403606 0.328675 0.379138 0.342791 0.356552 0.444429 0.373491 0.471250 0.350905 0.550302 0.333966 0.585593 0.326437 0.627942 0.341494 0.658998 0.371609 0.661821 0.384784 0.651940 0.488305 0.657586 0.514655 0.670291 0.531595 0.658998 0.552299 0.603944 0.544770 0.577123 0.561710 0.482543 0.563592 0.457134 0.588060 0.354084 0.574885 0.341379 0.557945 0.338556 0.405489 0.327263 diff --git a/datasets/检测仪/val/labels/订单1807414_51_7115431.txt b/datasets/检测仪/val/labels/订单1807414_51_7115431.txt new file mode 100644 index 0000000..e17fc7d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807414_51_7115431.txt @@ -0,0 +1 @@ +5 0.051693 0.383623 0.044154 0.410449 0.081797 0.530430 0.106263 0.555840 0.134505 0.637715 0.147682 0.688535 0.175911 0.735117 0.196615 0.747822 0.217318 0.742178 0.226732 0.732295 0.356602 0.705479 0.364128 0.682891 0.352839 0.644775 0.313307 0.527607 0.315195 0.482441 0.279427 0.359629 0.239909 0.342686 0.213555 0.346924 0.206029 0.353984 0.061094 0.385039 diff --git a/datasets/检测仪/val/labels/订单1807416_51_7115422.txt b/datasets/检测仪/val/labels/订单1807416_51_7115422.txt new file mode 100644 index 0000000..99141f2 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807416_51_7115422.txt @@ -0,0 +1 @@ +5 0.416720 0.348400 0.392253 0.369570 0.403547 0.495210 0.426133 0.524850 0.433667 0.634960 0.428013 0.687190 0.435547 0.746480 0.454373 0.769060 0.497653 0.781770 0.510827 0.770470 0.625640 0.756360 0.676467 0.766240 0.702813 0.747890 0.708453 0.678720 0.689640 0.642020 0.659520 0.512150 0.678347 0.466970 0.659520 0.346990 0.638813 0.334280 0.616227 0.331460 0.426133 0.348400 diff --git a/datasets/检测仪/val/labels/订单1807419_51_7115476.txt b/datasets/检测仪/val/labels/订单1807419_51_7115476.txt new file mode 100644 index 0000000..370001f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807419_51_7115476.txt @@ -0,0 +1 @@ +5 0.310496 0.334230 0.269089 0.355398 0.222030 0.554438 0.229562 0.623607 0.197566 0.800061 0.167451 0.866410 0.154279 0.970865 0.171211 0.997690 0.190311 1.000000 0.235894 1.000000 0.244614 0.993452 0.357278 1.000000 0.529850 1.000000 0.540115 0.994870 0.570231 0.900285 0.570231 0.838175 0.598466 0.649014 0.628581 0.608080 0.656817 0.397751 0.624821 0.369516 0.585294 0.366696 0.572111 0.373754 0.361315 0.348339 diff --git a/datasets/检测仪/val/labels/订单1807420_51_7115500.txt b/datasets/检测仪/val/labels/订单1807420_51_7115500.txt new file mode 100644 index 0000000..4e3ae4a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807420_51_7115500.txt @@ -0,0 +1 @@ +5 0.586213 0.363860 0.574927 0.377971 0.573041 0.468322 0.591871 0.495143 0.593743 0.562895 0.591871 0.589726 0.599401 0.630658 0.614459 0.647599 0.633275 0.647599 0.635161 0.639123 0.710439 0.637719 0.740556 0.644770 0.755614 0.632072 0.759386 0.591129 0.751857 0.572785 0.748085 0.488081 0.755614 0.464090 0.751857 0.366689 0.731140 0.352566 0.714211 0.353980 0.621974 0.363860 diff --git a/datasets/检测仪/val/labels/订单1807421_51_7115464.txt b/datasets/检测仪/val/labels/订单1807421_51_7115464.txt new file mode 100644 index 0000000..c32bff0 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807421_51_7115464.txt @@ -0,0 +1 @@ +5 0.185326 0.458437 0.158971 0.476797 0.145794 0.593955 0.162734 0.622188 0.151445 0.716768 0.145794 0.752061 0.142031 0.802881 0.155208 0.822637 0.183438 0.824053 0.190964 0.815586 0.283190 0.814170 0.317070 0.826875 0.341536 0.804287 0.360365 0.749238 0.349062 0.728057 0.360365 0.633486 0.373542 0.602432 0.386706 0.482441 0.360365 0.465498 0.341536 0.464092 0.334010 0.468320 0.206029 0.464092 diff --git a/datasets/检测仪/val/labels/订单1807423_51_7115489.txt b/datasets/检测仪/val/labels/订单1807423_51_7115489.txt new file mode 100644 index 0000000..924fb51 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807423_51_7115489.txt @@ -0,0 +1 @@ +5 0.123211 0.406212 0.106267 0.430208 0.160850 0.550196 0.183439 0.572783 0.224844 0.664538 0.224844 0.694183 0.247433 0.732296 0.270017 0.747825 0.288839 0.745000 0.296367 0.735121 0.386711 0.719592 0.418711 0.722417 0.426239 0.701242 0.422472 0.661717 0.405533 0.637717 0.373539 0.540317 0.375417 0.505025 0.339656 0.389271 0.318956 0.373742 0.300133 0.376567 0.292606 0.383625 0.157089 0.409033 diff --git a/datasets/检测仪/val/labels/订单1807425_51_7115538.txt b/datasets/检测仪/val/labels/订单1807425_51_7115538.txt new file mode 100644 index 0000000..44f10d9 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807425_51_7115538.txt @@ -0,0 +1 @@ +5 0.405427 0.322990 0.371547 0.345570 0.350853 0.524850 0.371547 0.574260 0.350853 0.738010 0.328267 0.780360 0.330147 0.880580 0.356493 0.917280 0.403547 0.918690 0.412960 0.901760 0.584240 0.914460 0.588000 0.924340 0.631293 0.934220 0.661400 0.908810 0.683987 0.825530 0.674587 0.766240 0.680227 0.588370 0.708453 0.517790 0.721640 0.359690 0.682107 0.330050 0.652000 0.330050 0.640707 0.334280 0.435547 0.327220 diff --git a/datasets/检测仪/val/labels/订单1807430_51_7115559.txt b/datasets/检测仪/val/labels/订单1807430_51_7115559.txt new file mode 100644 index 0000000..305139a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807430_51_7115559.txt @@ -0,0 +1 @@ +5 0.469531 0.314453 0.441289 0.339863 0.448828 0.560078 0.473294 0.601016 0.478932 0.767588 0.460117 0.825459 0.477057 0.897461 0.505286 0.932744 0.529753 0.932744 0.548581 0.920039 0.725508 0.918633 0.729271 0.932744 0.776315 0.932744 0.797018 0.915811 0.806432 0.828291 0.802669 0.781699 0.802669 0.617959 0.832786 0.560078 0.851602 0.341279 0.804557 0.311631 0.766914 0.314453 0.748086 0.325752 0.524115 0.320098 0.510937 0.314453 diff --git a/datasets/检测仪/val/labels/订单1807431_51_7115577.txt b/datasets/检测仪/val/labels/订单1807431_51_7115577.txt new file mode 100644 index 0000000..17925a4 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807431_51_7115577.txt @@ -0,0 +1 @@ +5 0.292604 0.448564 0.260612 0.469736 0.254961 0.623604 0.271901 0.658896 0.266250 0.780293 0.258724 0.835342 0.258724 0.901689 0.281315 0.932744 0.315195 0.934160 0.335898 0.921455 0.462005 0.910156 0.493997 0.921455 0.522227 0.900283 0.539167 0.826875 0.529753 0.800059 0.518464 0.675830 0.531641 0.625010 0.537292 0.475381 0.512813 0.454209 0.490234 0.455615 0.478932 0.459854 0.332135 0.454209 diff --git a/datasets/检测仪/val/labels/订单1807435_51_7115592.txt b/datasets/检测仪/val/labels/订单1807435_51_7115592.txt new file mode 100644 index 0000000..fb18c1f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807435_51_7115592.txt @@ -0,0 +1 @@ +5 0.543160 0.441607 0.525165 0.467020 0.530460 0.486780 0.537870 0.500900 0.550575 0.656173 0.541045 0.674527 0.546340 0.697113 0.569630 0.716873 0.579160 0.711227 0.731615 0.684407 0.747495 0.663233 0.871365 0.644887 0.910540 0.657587 0.962415 0.642060 0.988885 0.613827 0.981470 0.591240 0.974060 0.582773 0.961355 0.458547 0.963475 0.444433 0.964535 0.420433 0.944415 0.409140 0.883010 0.403493 0.851250 0.423260 0.736910 0.437373 0.713615 0.431727 diff --git a/datasets/检测仪/val/labels/订单1807440_51_7115685.txt b/datasets/检测仪/val/labels/订单1807440_51_7115685.txt new file mode 100644 index 0000000..e9ff15d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807440_51_7115685.txt @@ -0,0 +1 @@ +5 0.394202 0.419028 0.381025 0.440203 0.446901 0.577129 0.484544 0.615244 0.546657 0.753582 0.548538 0.783228 0.586182 0.862278 0.621943 0.886274 0.652057 0.883452 0.652057 0.869336 0.793223 0.829810 0.802633 0.838279 0.830866 0.831221 0.845921 0.798755 0.821455 0.721116 0.789456 0.694294 0.712288 0.555955 0.716051 0.517842 0.642646 0.379502 0.608770 0.361150 0.588066 0.366797 0.578656 0.373855 0.437490 0.409146 diff --git a/datasets/检测仪/val/labels/订单1807446_51_7115659.txt b/datasets/检测仪/val/labels/订单1807446_51_7115659.txt new file mode 100644 index 0000000..142176a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807446_51_7115659.txt @@ -0,0 +1 @@ +5 0.379740 0.434512 0.359974 0.445801 0.361387 0.465566 0.374089 0.479681 0.372682 0.562969 0.369857 0.577083 0.367031 0.592611 0.388210 0.609551 0.458789 0.619434 0.485612 0.599668 0.604186 0.599668 0.633828 0.606725 0.791934 0.608138 0.813105 0.584141 0.808874 0.567201 0.808874 0.434512 0.787695 0.392161 0.626771 0.409102 0.594303 0.418978 0.484199 0.430273 0.450319 0.418978 diff --git a/datasets/检测仪/val/labels/订单1807447_51_7115697.txt b/datasets/检测仪/val/labels/订单1807447_51_7115697.txt new file mode 100644 index 0000000..2a87967 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807447_51_7115697.txt @@ -0,0 +1 @@ +5 0.078034 0.509258 0.044154 0.519141 0.049805 0.538906 0.066745 0.550195 0.093099 0.637715 0.068620 0.657480 0.070508 0.674424 0.093099 0.691357 0.185326 0.689951 0.249310 0.674424 0.403646 0.656064 0.437526 0.657480 0.629505 0.641953 0.644570 0.622188 0.640807 0.602432 0.627630 0.486670 0.627630 0.464092 0.605039 0.451387 0.414948 0.466914 0.367891 0.482441 0.221081 0.495146 0.183438 0.486670 0.098737 0.499375 diff --git a/datasets/检测仪/val/labels/订单1807448_51_7115789.txt b/datasets/检测仪/val/labels/订单1807448_51_7115789.txt new file mode 100644 index 0000000..79d3401 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807448_51_7115789.txt @@ -0,0 +1 @@ +5 0.409297 0.488086 0.381068 0.505029 0.390482 0.632070 0.413060 0.660303 0.411185 0.766172 0.401771 0.795820 0.411185 0.855107 0.428125 0.874873 0.448828 0.870635 0.463880 0.853691 0.556107 0.856523 0.571159 0.863574 0.597513 0.857930 0.608802 0.840996 0.625742 0.794404 0.606927 0.767588 0.605039 0.651836 0.614453 0.623604 0.608802 0.499375 0.588099 0.482441 0.567396 0.485264 0.559870 0.489492 0.430000 0.490908 diff --git a/datasets/检测仪/val/labels/订单1807449_51_7115668.txt b/datasets/检测仪/val/labels/订单1807449_51_7115668.txt new file mode 100644 index 0000000..d297a1b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807449_51_7115668.txt @@ -0,0 +1 @@ +5 0.420556 0.541838 0.399853 0.554547 0.420556 0.691471 0.443137 0.733824 0.458203 0.850993 0.445033 0.880637 0.463840 0.946985 0.488317 0.965331 0.512778 0.965331 0.520310 0.954032 0.627598 0.951213 0.642647 0.958272 0.667124 0.956863 0.687827 0.941336 0.693480 0.860870 0.667124 0.838284 0.646422 0.704179 0.657712 0.681593 0.640768 0.537610 0.616307 0.520674 0.591830 0.524902 0.578660 0.530551 0.460082 0.546078 diff --git a/datasets/检测仪/val/labels/订单1807451_51_7115671.txt b/datasets/检测仪/val/labels/订单1807451_51_7115671.txt new file mode 100644 index 0000000..a965b7f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807451_51_7115671.txt @@ -0,0 +1 @@ +5 0.581506 0.293256 0.572431 0.319595 0.564753 0.525665 0.571732 0.575241 0.572431 0.753420 0.564753 0.790607 0.561962 0.906811 0.571732 0.943988 0.591280 0.953285 0.600352 0.939345 0.666667 0.948642 0.672248 0.964133 0.690399 0.971879 0.701567 0.951734 0.709944 0.843285 0.703659 0.795250 0.702266 0.600029 0.712036 0.542707 0.715525 0.310299 0.702266 0.291705 0.693889 0.288603 0.680625 0.294807 0.594770 0.294807 0.578016 0.293256 diff --git a/datasets/检测仪/val/labels/订单1807455_51_7115711.txt b/datasets/检测仪/val/labels/订单1807455_51_7115711.txt new file mode 100644 index 0000000..60aa101 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807455_51_7115711.txt @@ -0,0 +1 @@ +5 0.520240 0.438740 0.484480 0.448620 0.429893 0.627900 0.435547 0.660370 0.396013 0.810000 0.373440 0.841060 0.358373 0.920110 0.367787 0.955400 0.418600 0.975160 0.431787 0.963870 0.578587 0.980810 0.595533 0.990690 0.623907 1.000000 0.626733 1.000000 0.650107 0.987860 0.693400 0.900340 0.683987 0.867880 0.715987 0.718240 0.738573 0.680130 0.791280 0.502270 0.770573 0.476860 0.749867 0.472620 0.723520 0.475440 0.567293 0.447210 diff --git a/datasets/检测仪/val/labels/订单1807459_51_7115757.txt b/datasets/检测仪/val/labels/订单1807459_51_7115757.txt new file mode 100644 index 0000000..f790597 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807459_51_7115757.txt @@ -0,0 +1 @@ +5 0.345299 0.485264 0.318958 0.503613 0.303893 0.637715 0.317070 0.665947 0.307656 0.787354 0.292604 0.832520 0.285078 0.894629 0.303893 0.924277 0.332135 0.929922 0.345299 0.920039 0.469531 0.925693 0.473294 0.935566 0.499648 0.936982 0.525990 0.920039 0.544818 0.852285 0.537292 0.815586 0.548581 0.685713 0.565521 0.651836 0.580573 0.512080 0.563633 0.496553 0.537292 0.489492 0.527878 0.495146 0.377305 0.488086 diff --git a/datasets/检测仪/val/labels/订单1807462_51_7115731.txt b/datasets/检测仪/val/labels/订单1807462_51_7115731.txt new file mode 100644 index 0000000..d4ee44d --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807462_51_7115731.txt @@ -0,0 +1 @@ +5 0.324493 0.411920 0.307560 0.430270 0.313200 0.513560 0.333907 0.541790 0.343320 0.605310 0.343320 0.647660 0.347080 0.681540 0.365907 0.697070 0.388493 0.697070 0.394133 0.685780 0.467547 0.680130 0.490133 0.682950 0.514600 0.668840 0.514600 0.623660 0.501427 0.605310 0.490133 0.524850 0.492013 0.505090 0.486360 0.410510 0.460013 0.399220 0.444960 0.403450 0.335787 0.417570 diff --git a/datasets/检测仪/val/labels/订单1807463_51_7115739.txt b/datasets/检测仪/val/labels/订单1807463_51_7115739.txt new file mode 100644 index 0000000..d82d8e6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807463_51_7115739.txt @@ -0,0 +1 @@ +5 0.437682 0.368088 0.413307 0.385029 0.418932 0.526186 0.443307 0.567127 0.450807 0.687118 0.441432 0.732284 0.458307 0.809931 0.484557 0.838157 0.525807 0.829686 0.538919 0.818402 0.643919 0.815578 0.666419 0.819814 0.711406 0.819814 0.733906 0.790167 0.739531 0.716765 0.718906 0.682882 0.694531 0.541716 0.702031 0.500784 0.688906 0.372324 0.658919 0.352559 0.642044 0.353971 0.469557 0.363853 diff --git a/datasets/检测仪/val/labels/订单1807471_51_7116054.txt b/datasets/检测仪/val/labels/订单1807471_51_7116054.txt new file mode 100644 index 0000000..24f0aed --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807471_51_7116054.txt @@ -0,0 +1 @@ +5 0.492013 0.376630 0.463773 0.393570 0.433667 0.554500 0.456253 0.601080 0.441187 0.715420 0.422373 0.756360 0.412960 0.831170 0.431787 0.853760 0.473187 0.853760 0.486360 0.848110 0.616227 0.859410 0.646347 0.850940 0.668933 0.832590 0.683987 0.771890 0.676467 0.745060 0.699053 0.613780 0.723520 0.577080 0.753627 0.417570 0.729160 0.392160 0.702813 0.392160 0.680227 0.399220 0.524013 0.382280 diff --git a/datasets/检测仪/val/labels/订单1807472_51_7115781.txt b/datasets/检测仪/val/labels/订单1807472_51_7115781.txt new file mode 100644 index 0000000..47185c6 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807472_51_7115781.txt @@ -0,0 +1 @@ +5 0.256875 0.424583 0.238056 0.435877 0.219225 0.551632 0.232407 0.585512 0.224873 0.673030 0.213588 0.712552 0.213588 0.769019 0.226759 0.788785 0.249340 0.788785 0.264398 0.780312 0.360394 0.781727 0.405567 0.790191 0.426262 0.773255 0.443206 0.715382 0.431910 0.692795 0.435683 0.592569 0.446968 0.557274 0.456377 0.444349 0.431910 0.421762 0.411215 0.424583 0.275694 0.427405 diff --git a/datasets/检测仪/val/labels/订单1807473_51_7115861.txt b/datasets/检测仪/val/labels/订单1807473_51_7115861.txt new file mode 100644 index 0000000..e09c354 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807473_51_7115861.txt @@ -0,0 +1 @@ +5 0.417852 0.362513 0.396680 0.389336 0.378327 0.575671 0.392441 0.620846 0.386797 0.780358 0.368444 0.832585 0.365618 0.915872 0.383971 0.945514 0.409382 0.948340 0.424909 0.932812 0.535020 0.939870 0.543490 0.956810 0.573132 0.965280 0.595716 0.935638 0.609831 0.876348 0.622539 0.848112 0.612656 0.800117 0.622539 0.646250 0.638066 0.595436 0.657826 0.403451 0.633828 0.378047 0.605599 0.376634 0.599954 0.385104 0.444674 0.375221 diff --git a/datasets/检测仪/val/labels/订单1807474_51_7115810.txt b/datasets/检测仪/val/labels/订单1807474_51_7115810.txt new file mode 100644 index 0000000..f920611 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807474_51_7115810.txt @@ -0,0 +1 @@ +5 0.428125 0.369512 0.388594 0.369512 0.381068 0.396328 0.366003 0.516318 0.377305 0.533262 0.367891 0.641953 0.349062 0.675830 0.352839 0.743594 0.354714 0.757705 0.394245 0.756299 0.407422 0.742178 0.522227 0.747822 0.546693 0.766172 0.571159 0.752061 0.586224 0.682891 0.580573 0.654658 0.582461 0.544551 0.610690 0.500791 0.597513 0.375156 0.561758 0.379395 0.441289 0.373740 diff --git a/datasets/检测仪/val/labels/订单1807475_51_7115914.txt b/datasets/检测仪/val/labels/订单1807475_51_7115914.txt new file mode 100644 index 0000000..a38c89f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807475_51_7115914.txt @@ -0,0 +1 @@ +5 0.448828 0.401973 0.422474 0.430205 0.426237 0.586895 0.443177 0.634893 0.448828 0.752061 0.445065 0.790176 0.452591 0.850869 0.478932 0.877695 0.505286 0.879102 0.512813 0.866396 0.635156 0.867812 0.680326 0.879102 0.712331 0.857930 0.716094 0.797227 0.710443 0.768994 0.702917 0.629248 0.736797 0.585488 0.744323 0.427383 0.710443 0.403389 0.678451 0.403389 0.672799 0.413271 0.486471 0.416094 0.482708 0.403389 diff --git a/datasets/检测仪/val/labels/订单1807476_51_7115863.txt b/datasets/检测仪/val/labels/订单1807476_51_7115863.txt new file mode 100644 index 0000000..6a3f5e5 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807476_51_7115863.txt @@ -0,0 +1 @@ +5 0.510809 0.402686 0.476926 0.409742 0.429870 0.550907 0.439279 0.586195 0.394102 0.696303 0.382809 0.718887 0.365865 0.779588 0.375279 0.804998 0.401633 0.812058 0.407279 0.803586 0.525870 0.826174 0.550340 0.840290 0.582340 0.830408 0.612460 0.769707 0.612460 0.740063 0.648223 0.620077 0.685874 0.584785 0.732930 0.459149 0.717874 0.433739 0.691521 0.436564 0.676460 0.439386 0.537163 0.406920 diff --git a/datasets/检测仪/val/labels/订单1807478_51_7115862.txt b/datasets/检测仪/val/labels/订单1807478_51_7115862.txt new file mode 100644 index 0000000..972433f --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807478_51_7115862.txt @@ -0,0 +1 @@ +5 0.202266 0.513496 0.179674 0.521963 0.174023 0.548789 0.213555 0.585488 0.334010 0.684297 0.347187 0.684297 0.458229 0.783115 0.482708 0.816992 0.539167 0.863574 0.576810 0.863574 0.593750 0.843818 0.593750 0.833936 0.687865 0.777471 0.701029 0.776055 0.723620 0.763350 0.721732 0.728057 0.667161 0.677246 0.637044 0.658896 0.529753 0.564316 0.512813 0.533262 0.390482 0.414678 0.354714 0.414678 0.334010 0.427383 0.337773 0.435859 0.211667 0.510674 diff --git a/datasets/检测仪/val/labels/订单1807479_51_7115927.txt b/datasets/检测仪/val/labels/订单1807479_51_7115927.txt new file mode 100644 index 0000000..484075b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807479_51_7115927.txt @@ -0,0 +1 @@ +5 0.337778 0.417504 0.318956 0.437267 0.337778 0.568546 0.360361 0.595367 0.379183 0.694183 0.377300 0.735121 0.392356 0.790171 0.411178 0.807113 0.433767 0.808525 0.443178 0.797229 0.550461 0.787350 0.580578 0.794408 0.597517 0.777467 0.605044 0.711121 0.591867 0.691358 0.571167 0.581254 0.580578 0.543137 0.561756 0.406212 0.541050 0.399154 0.514700 0.400562 0.512817 0.406212 0.377300 0.421737 diff --git a/datasets/检测仪/val/labels/订单1807481_51_7115895.txt b/datasets/检测仪/val/labels/订单1807481_51_7115895.txt new file mode 100644 index 0000000..806436c --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807481_51_7115895.txt @@ -0,0 +1 @@ +5 0.403646 0.366689 0.367891 0.376563 0.358477 0.483848 0.362240 0.503613 0.349062 0.568545 0.326484 0.592549 0.320833 0.636309 0.328359 0.649014 0.347187 0.654658 0.352839 0.649014 0.430000 0.660303 0.460117 0.671592 0.469531 0.663125 0.490234 0.616543 0.486471 0.601016 0.510937 0.526201 0.524115 0.503613 0.559870 0.407627 0.544818 0.387861 0.527878 0.386445 0.428125 0.370918 diff --git a/datasets/检测仪/val/labels/订单1807483_51_7116022.txt b/datasets/检测仪/val/labels/订单1807483_51_7116022.txt new file mode 100644 index 0000000..bbddb90 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807483_51_7116022.txt @@ -0,0 +1 @@ +5 0.415869 0.418912 0.382000 0.448549 0.385765 0.589716 0.395176 0.629235 0.395176 0.715353 0.402706 0.768990 0.391412 0.812755 0.395176 0.890392 0.417752 0.920029 0.447869 0.925676 0.461046 0.912980 0.604092 0.907333 0.643621 0.920029 0.673725 0.900275 0.685020 0.816990 0.673725 0.777461 0.647386 0.639118 0.664327 0.584069 0.649268 0.437255 0.632327 0.427373 0.604092 0.425961 0.449752 0.431608 0.425281 0.420324 diff --git a/datasets/检测仪/val/labels/订单1807487_51_7115978.txt b/datasets/检测仪/val/labels/订单1807487_51_7115978.txt new file mode 100644 index 0000000..e8b47c1 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807487_51_7115978.txt @@ -0,0 +1 @@ +5 0.256836 0.276338 0.239909 0.296104 0.221081 0.428799 0.232370 0.464092 0.217318 0.572783 0.204141 0.610898 0.202266 0.661719 0.221081 0.689951 0.254961 0.691357 0.254961 0.682891 0.360365 0.685713 0.392357 0.697002 0.422474 0.685713 0.443177 0.620781 0.441289 0.586895 0.446940 0.485264 0.473294 0.441504 0.495872 0.303164 0.465768 0.287637 0.441289 0.290459 0.288841 0.283398 diff --git a/datasets/检测仪/val/labels/订单1807489_51_7115997.txt b/datasets/检测仪/val/labels/订单1807489_51_7115997.txt new file mode 100644 index 0000000..c44cc5b --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807489_51_7115997.txt @@ -0,0 +1 @@ +5 0.273504 0.212851 0.245897 0.229793 0.240880 0.362486 0.263470 0.399187 0.288564 0.509293 0.271000 0.543173 0.278521 0.596817 0.308641 0.615168 0.351299 0.620812 0.351299 0.610933 0.496855 0.609519 0.542026 0.620812 0.569632 0.601048 0.587197 0.545995 0.572145 0.510707 0.574650 0.403423 0.592222 0.354014 0.594726 0.215678 0.564615 0.201563 0.531991 0.201563 0.524462 0.208620 0.323701 0.211442 diff --git a/datasets/检测仪/val/labels/订单1807495_51_7116081.txt b/datasets/检测仪/val/labels/订单1807495_51_7116081.txt new file mode 100644 index 0000000..752d01a --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807495_51_7116081.txt @@ -0,0 +1 @@ +5 0.332135 0.425977 0.317070 0.440088 0.311419 0.553018 0.324596 0.584072 0.330247 0.687129 0.315195 0.723828 0.317070 0.785937 0.339661 0.807109 0.367891 0.809932 0.377305 0.800059 0.490234 0.797227 0.522227 0.808525 0.548581 0.788760 0.563633 0.719590 0.541055 0.688535 0.539167 0.581250 0.544818 0.544551 0.524115 0.411855 0.490234 0.420322 0.358477 0.421738 diff --git a/datasets/检测仪/val/labels/订单1807496_51_7116067.txt b/datasets/检测仪/val/labels/订单1807496_51_7116067.txt new file mode 100644 index 0000000..a8c7ddf --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807496_51_7116067.txt @@ -0,0 +1 @@ +5 0.618252 0.354002 0.588137 0.368116 0.561782 0.469757 0.571192 0.497986 0.550486 0.582682 0.527905 0.599627 0.514734 0.650443 0.524144 0.668793 0.546725 0.673030 0.559896 0.667387 0.646481 0.681502 0.672836 0.694201 0.697303 0.682908 0.723646 0.639149 0.721771 0.603863 0.731181 0.526224 0.761296 0.496580 0.795174 0.393524 0.778229 0.375174 0.755648 0.372352 0.635185 0.361059 diff --git a/datasets/检测仪/val/labels/订单1807497_51_7116086.txt b/datasets/检测仪/val/labels/订单1807497_51_7116086.txt new file mode 100644 index 0000000..b52e759 --- /dev/null +++ b/datasets/检测仪/val/labels/订单1807497_51_7116086.txt @@ -0,0 +1 @@ +5 0.362240 0.505029 0.332135 0.526201 0.345299 0.663125 0.371654 0.715361 0.379180 0.843818 0.373542 0.880518 0.382943 0.960977 0.403646 0.982158 0.433763 0.987803 0.450703 0.973682 0.578698 0.965215 0.593750 0.973682 0.627630 0.973682 0.650221 0.948271 0.655859 0.856523 0.637044 0.826875 0.610690 0.694180 0.621979 0.649014 0.606927 0.505029 0.573047 0.481025 0.554219 0.482441 0.541055 0.489492 0.382943 0.500791 diff --git a/datasets/猫狗/data.yaml b/datasets/猫狗/data.yaml new file mode 100644 index 0000000..22fd3bc --- /dev/null +++ b/datasets/猫狗/data.yaml @@ -0,0 +1,4 @@ +train: train/images +val: val/images +nc: 2 +names: ['cat', 'dog'] diff --git a/datasets/猫狗/train/images/cat_cat.110.jpg b/datasets/猫狗/train/images/cat_cat.110.jpg new file mode 100644 index 0000000..4fd9553 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.110.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5615cb17a81409bec8b231d4963a9d1380806a8c9b54e9162aa11f1ef801fbd8 +size 23033 diff --git a/datasets/猫狗/train/images/cat_cat.227.jpg b/datasets/猫狗/train/images/cat_cat.227.jpg new file mode 100644 index 0000000..b5e84c0 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.227.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e545bea559806a468eaa1b8bedfa41d802b19a54ffa30ed4d11ef67a2954618e +size 20069 diff --git a/datasets/猫狗/train/images/cat_cat.255.jpg b/datasets/猫狗/train/images/cat_cat.255.jpg new file mode 100644 index 0000000..e3aac7d --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.255.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1960a9c5b806b3533ec70a39bad9a453fa4436e307150c77833a35fa425e81cd +size 37500 diff --git a/datasets/猫狗/train/images/cat_cat.296.jpg b/datasets/猫狗/train/images/cat_cat.296.jpg new file mode 100644 index 0000000..6ab8709 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5836b847797245ec3f230b6e50f781f7b944acfd31c55130a8b97a55847eda +size 15986 diff --git a/datasets/猫狗/train/images/cat_cat.301.jpg b/datasets/猫狗/train/images/cat_cat.301.jpg new file mode 100644 index 0000000..5f96ea3 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.301.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d98d8b54092e3c0223496d4aaf51002f63a592af40baed019ea24a0ae31d1a3 +size 12254 diff --git a/datasets/猫狗/train/images/cat_cat.324.jpg b/datasets/猫狗/train/images/cat_cat.324.jpg new file mode 100644 index 0000000..f78c7f6 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.324.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f7de03587a8ccd88270353a4c2852f518e250b85b507f0b934cad279d2148b +size 21779 diff --git a/datasets/猫狗/train/images/cat_cat.338.jpg b/datasets/猫狗/train/images/cat_cat.338.jpg new file mode 100644 index 0000000..1cef1bc --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.338.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b38e14d025be828a53f6c7d3c1ff8e57ffecd910cfa5f083b7f5469be3a9132 +size 35903 diff --git a/datasets/猫狗/train/images/cat_cat.395.jpg b/datasets/猫狗/train/images/cat_cat.395.jpg new file mode 100644 index 0000000..83ab939 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.395.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedd4dde254255dce0c0533fc1ecfa84a3d5ec9db0b317db713d96d40fe3b49f +size 11967 diff --git a/datasets/猫狗/train/images/cat_cat.425.jpg b/datasets/猫狗/train/images/cat_cat.425.jpg new file mode 100644 index 0000000..e8f39ee --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.425.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9413dddefaf2af31b5bdee9d2f47abeac6d7c93a2093bb9264fcfe6a5ed1b0cc +size 9172 diff --git a/datasets/猫狗/train/images/cat_cat.43.jpg b/datasets/猫狗/train/images/cat_cat.43.jpg new file mode 100644 index 0000000..ab32104 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a740a5eeca72dc0b793728a87cc4d839400f23007e7d1a9f878dfd9a6c041284 +size 30184 diff --git a/datasets/猫狗/train/images/cat_cat.430.jpg b/datasets/猫狗/train/images/cat_cat.430.jpg new file mode 100644 index 0000000..532927e --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.430.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb24da8474c74c8b058e825411376b9a9dba064439f0307855e6e5689ce7923 +size 26276 diff --git a/datasets/猫狗/train/images/cat_cat.544.jpg b/datasets/猫狗/train/images/cat_cat.544.jpg new file mode 100644 index 0000000..6857d7e --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.544.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c9edc91e018d0b370e3ea989bc00e327119e903f2613ca40d6fe7a4f8f7f47 +size 25534 diff --git a/datasets/猫狗/train/images/cat_cat.553.jpg b/datasets/猫狗/train/images/cat_cat.553.jpg new file mode 100644 index 0000000..c7cd698 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.553.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae22bc8034c88c6f45d1d40b3d7e273022101428ed5ac6e2e755dbac87c1a3fd +size 26651 diff --git a/datasets/猫狗/train/images/cat_cat.695.jpg b/datasets/猫狗/train/images/cat_cat.695.jpg new file mode 100644 index 0000000..3812f69 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.695.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67ce0520aef3d77d51b3019ccd04a49cf3dd11a980f183fa9fc6f13c0f60d88 +size 25363 diff --git a/datasets/猫狗/train/images/cat_cat.794.jpg b/datasets/猫狗/train/images/cat_cat.794.jpg new file mode 100644 index 0000000..1f78ccf --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.794.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946b1a6cb5a2444ca0624b4a133ebd4e6c2f66714a56e4a292afedea74222e01 +size 16835 diff --git a/datasets/猫狗/train/images/cat_cat.803.jpg b/datasets/猫狗/train/images/cat_cat.803.jpg new file mode 100644 index 0000000..f0c080c --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.803.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3060d176ea733e63f9267f2b020f1dc45439c0da71bcb568dd133d04f17ed7 +size 18025 diff --git a/datasets/猫狗/train/images/cat_cat.898.jpg b/datasets/猫狗/train/images/cat_cat.898.jpg new file mode 100644 index 0000000..53a36b3 --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2602c104decb7828de3ffa3e635386267c3836251f99f4816fbab2f6db1aa4 +size 16918 diff --git a/datasets/猫狗/train/images/cat_cat.902.jpg b/datasets/猫狗/train/images/cat_cat.902.jpg new file mode 100644 index 0000000..9de6e1a --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938059ef0ec891430509de4e70437aa1ab8efcc662eeb2062b0c035ce5e65f61 +size 14957 diff --git a/datasets/猫狗/train/images/cat_cat.963.jpg b/datasets/猫狗/train/images/cat_cat.963.jpg new file mode 100644 index 0000000..51c093a --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.963.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a29811d99be4aeed304adfc208f2c34ce9d9fd80781fefe8552940f67bb1520 +size 21174 diff --git a/datasets/猫狗/train/images/cat_cat.966.jpg b/datasets/猫狗/train/images/cat_cat.966.jpg new file mode 100644 index 0000000..2b49bee --- /dev/null +++ b/datasets/猫狗/train/images/cat_cat.966.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98a42b1432b6cfb1b2a8a0f7ab9cbca6e5b5523eb797178c973e628127cbf9c +size 31318 diff --git a/datasets/猫狗/train/images/dog_dog.184.jpg b/datasets/猫狗/train/images/dog_dog.184.jpg new file mode 100644 index 0000000..531dc74 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a476525f0cd12f239bfaecd813f2df5723681b3e1436e6d656b5b4dd9a79193 +size 37363 diff --git a/datasets/猫狗/train/images/dog_dog.185.jpg b/datasets/猫狗/train/images/dog_dog.185.jpg new file mode 100644 index 0000000..bb21cf0 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.185.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b579bfe4dc461cf51dd11aaa13763ac76fed5852c8655136f3e9f97701fe7035 +size 32575 diff --git a/datasets/猫狗/train/images/dog_dog.263.jpg b/datasets/猫狗/train/images/dog_dog.263.jpg new file mode 100644 index 0000000..e5f6870 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.263.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be48bb53883eebba8b94575df8ba837dd53aefda10febd214a9fe39dc15e7b75 +size 22983 diff --git a/datasets/猫狗/train/images/dog_dog.29.jpg b/datasets/猫狗/train/images/dog_dog.29.jpg new file mode 100644 index 0000000..eeceded --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b08ce3e4e223917a0264bb1f8a1a8a9cbcfb735aa8466eb5334864a6d271c5 +size 27003 diff --git a/datasets/猫狗/train/images/dog_dog.30.jpg b/datasets/猫狗/train/images/dog_dog.30.jpg new file mode 100644 index 0000000..bf0b94c --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1877f127ee0b465c36d3a7b9c85268c9a652286ebbb41c70c9340e698d8ebcba +size 19894 diff --git a/datasets/猫狗/train/images/dog_dog.37.jpg b/datasets/猫狗/train/images/dog_dog.37.jpg new file mode 100644 index 0000000..2f93216 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59efe0826272f839e68aee2c7b450fde99a00b517a10481259353057e8e56dd7 +size 19959 diff --git a/datasets/猫狗/train/images/dog_dog.43.jpg b/datasets/猫狗/train/images/dog_dog.43.jpg new file mode 100644 index 0000000..c01e45a --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c72a3a1f77b41e619de59a82dc204cb54501f7af6b11db539f51b3602b484c +size 13375 diff --git a/datasets/猫狗/train/images/dog_dog.501.jpg b/datasets/猫狗/train/images/dog_dog.501.jpg new file mode 100644 index 0000000..3a3ac18 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.501.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cfd7b9b9c91d3bd052d12b0a717134ef33d5439a3177ed1fe80d7ef4c97309 +size 27234 diff --git a/datasets/猫狗/train/images/dog_dog.502.jpg b/datasets/猫狗/train/images/dog_dog.502.jpg new file mode 100644 index 0000000..331fc2f --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.502.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ad3fffeffb126a1d5714b455b1526e8fef0ebbf3b33196a34cbd4b8ac82cbd +size 7229 diff --git a/datasets/猫狗/train/images/dog_dog.536.jpg b/datasets/猫狗/train/images/dog_dog.536.jpg new file mode 100644 index 0000000..40a1264 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.536.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd389f11fff2e07997ad3d79f5efc3d8c85bd52bf91af026025ab837ff8cb0e +size 13591 diff --git a/datasets/猫狗/train/images/dog_dog.569.jpg b/datasets/猫狗/train/images/dog_dog.569.jpg new file mode 100644 index 0000000..ef4c2f9 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.569.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6c5753db667403bd9a3efbb419250d67e450ee9ebf745e79f2524e03b963de +size 29887 diff --git a/datasets/猫狗/train/images/dog_dog.584.jpg b/datasets/猫狗/train/images/dog_dog.584.jpg new file mode 100644 index 0000000..6f70923 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.584.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8b836bd61a515e072b7a6c541e6ca985c2a3ab40d16b043a0d94fc151a290b +size 22016 diff --git a/datasets/猫狗/train/images/dog_dog.677.jpg b/datasets/猫狗/train/images/dog_dog.677.jpg new file mode 100644 index 0000000..a101c1c --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d81559dff54629875455045248609131b2eab745a24d1183c183c76cb4eeb43 +size 19483 diff --git a/datasets/猫狗/train/images/dog_dog.701.jpg b/datasets/猫狗/train/images/dog_dog.701.jpg new file mode 100644 index 0000000..2f48374 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.701.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8228958d4f524b552c7b0b519f040308e0f035550d122d109071e45788ca1d +size 23297 diff --git a/datasets/猫狗/train/images/dog_dog.718.jpg b/datasets/猫狗/train/images/dog_dog.718.jpg new file mode 100644 index 0000000..6e8aa39 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.718.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c993df7a884658725db59fd4da7c559bc0b84ec638d9b7b634d17b1cd4a390eb +size 17430 diff --git a/datasets/猫狗/train/images/dog_dog.731.jpg b/datasets/猫狗/train/images/dog_dog.731.jpg new file mode 100644 index 0000000..5197a59 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.731.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50bf3fe7029191fd576eda5f3223d5ae5eda0a9a6610c1b17858da34235ce429 +size 39990 diff --git a/datasets/猫狗/train/images/dog_dog.814.jpg b/datasets/猫狗/train/images/dog_dog.814.jpg new file mode 100644 index 0000000..d426fe0 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.814.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a0dd229f113ae1bb95ddc27fffe4a403f34324090d76e56f7af7cf6dd41e32 +size 35583 diff --git a/datasets/猫狗/train/images/dog_dog.906.jpg b/datasets/猫狗/train/images/dog_dog.906.jpg new file mode 100644 index 0000000..13eb6da --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.906.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0224b167ff552fdd1dbae2695c3888468f7a3b76b230d75ac9507a15aed1bc06 +size 19637 diff --git a/datasets/猫狗/train/images/dog_dog.955.jpg b/datasets/猫狗/train/images/dog_dog.955.jpg new file mode 100644 index 0000000..1ddb14c --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.955.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52494c70b1193fbe6e0491b41708e9e5b56c863857678675d378b91e35d4308 +size 24210 diff --git a/datasets/猫狗/train/images/dog_dog.999.jpg b/datasets/猫狗/train/images/dog_dog.999.jpg new file mode 100644 index 0000000..8396fb9 --- /dev/null +++ b/datasets/猫狗/train/images/dog_dog.999.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179ae42e8bf51b5387cee9aab3feb1219ee10dcfe67851b2912500e848f25689 +size 28899 diff --git a/datasets/猫狗/train/labels.cache b/datasets/猫狗/train/labels.cache new file mode 100644 index 0000000..7541122 Binary files /dev/null and b/datasets/猫狗/train/labels.cache differ diff --git a/datasets/猫狗/train/labels/cat_cat.110.txt b/datasets/猫狗/train/labels/cat_cat.110.txt new file mode 100644 index 0000000..986f1dc --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.110.txt @@ -0,0 +1 @@ +0 0.485294 0.537000 0.917112 0.762000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.227.txt b/datasets/猫狗/train/labels/cat_cat.227.txt new file mode 100644 index 0000000..d0edafc --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.227.txt @@ -0,0 +1 @@ +0 0.521205 0.535821 0.810268 0.928358 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.255.txt b/datasets/猫狗/train/labels/cat_cat.255.txt new file mode 100644 index 0000000..d105a5c --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.255.txt @@ -0,0 +1 @@ +0 0.510020 0.521000 0.967936 0.958000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.296.txt b/datasets/猫狗/train/labels/cat_cat.296.txt new file mode 100644 index 0000000..af3059b --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.296.txt @@ -0,0 +1 @@ +0 0.588972 0.555000 0.802005 0.850000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.301.txt b/datasets/猫狗/train/labels/cat_cat.301.txt new file mode 100644 index 0000000..74092c4 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.301.txt @@ -0,0 +1 @@ +0 0.510116 0.506873 0.979769 0.986254 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.324.txt b/datasets/猫狗/train/labels/cat_cat.324.txt new file mode 100644 index 0000000..c312a47 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.324.txt @@ -0,0 +1 @@ +0 0.451987 0.515030 0.850993 0.885772 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.338.txt b/datasets/猫狗/train/labels/cat_cat.338.txt new file mode 100644 index 0000000..5fe07cd --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.338.txt @@ -0,0 +1 @@ +0 0.419840 0.435657 0.551102 0.619303 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.395.txt b/datasets/猫狗/train/labels/cat_cat.395.txt new file mode 100644 index 0000000..f1fe98a --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.395.txt @@ -0,0 +1 @@ +0 0.581325 0.502000 0.704819 0.584000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.425.txt b/datasets/猫狗/train/labels/cat_cat.425.txt new file mode 100644 index 0000000..e3a08d4 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.425.txt @@ -0,0 +1 @@ +0 0.532544 0.480000 0.863905 0.946667 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.43.txt b/datasets/猫狗/train/labels/cat_cat.43.txt new file mode 100644 index 0000000..a489dc4 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.43.txt @@ -0,0 +1 @@ +0 0.609551 0.659000 0.617978 0.662000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.430.txt b/datasets/猫狗/train/labels/cat_cat.430.txt new file mode 100644 index 0000000..e5edac5 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.430.txt @@ -0,0 +1 @@ +0 0.486076 0.501101 0.967089 0.997797 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.544.txt b/datasets/猫狗/train/labels/cat_cat.544.txt new file mode 100644 index 0000000..1d38ea0 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.544.txt @@ -0,0 +1 @@ +0 0.528056 0.440000 0.418838 0.544000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.553.txt b/datasets/猫狗/train/labels/cat_cat.553.txt new file mode 100644 index 0000000..1833bcd --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.553.txt @@ -0,0 +1 @@ +0 0.513000 0.478610 0.958000 0.925134 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.695.txt b/datasets/猫狗/train/labels/cat_cat.695.txt new file mode 100644 index 0000000..21eacf7 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.695.txt @@ -0,0 +1 @@ +0 0.504000 0.454910 0.992000 0.901804 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.794.txt b/datasets/猫狗/train/labels/cat_cat.794.txt new file mode 100644 index 0000000..9bf67fc --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.794.txt @@ -0,0 +1 @@ +0 0.474950 0.573333 0.937876 0.853333 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.803.txt b/datasets/猫狗/train/labels/cat_cat.803.txt new file mode 100644 index 0000000..1907d1c --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.803.txt @@ -0,0 +1 @@ +0 0.331000 0.509036 0.474000 0.981928 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.898.txt b/datasets/猫狗/train/labels/cat_cat.898.txt new file mode 100644 index 0000000..2e602d9 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.898.txt @@ -0,0 +1 @@ +0 0.527875 0.510345 0.937282 0.979310 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.902.txt b/datasets/猫狗/train/labels/cat_cat.902.txt new file mode 100644 index 0000000..9db4620 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.902.txt @@ -0,0 +1 @@ +0 0.510000 0.495455 0.408000 0.978788 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.963.txt b/datasets/猫狗/train/labels/cat_cat.963.txt new file mode 100644 index 0000000..f9a3e36 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.963.txt @@ -0,0 +1 @@ +0 0.347695 0.506667 0.683367 0.986667 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/cat_cat.966.txt b/datasets/猫狗/train/labels/cat_cat.966.txt new file mode 100644 index 0000000..22ddc54 --- /dev/null +++ b/datasets/猫狗/train/labels/cat_cat.966.txt @@ -0,0 +1 @@ +0 0.529000 0.517287 0.942000 0.965426 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/classes.txt b/datasets/猫狗/train/labels/classes.txt new file mode 100644 index 0000000..c786c6e --- /dev/null +++ b/datasets/猫狗/train/labels/classes.txt @@ -0,0 +1,2 @@ +猫 +狗 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.184.txt b/datasets/猫狗/train/labels/dog_dog.184.txt new file mode 100644 index 0000000..41b8b57 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.184.txt @@ -0,0 +1 @@ +1 0.497630 0.505010 0.966825 0.989980 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.185.txt b/datasets/猫狗/train/labels/dog_dog.185.txt new file mode 100644 index 0000000..b2c4ed3 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.185.txt @@ -0,0 +1 @@ +1 0.501157 0.536000 0.997685 0.928000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.263.txt b/datasets/猫狗/train/labels/dog_dog.263.txt new file mode 100644 index 0000000..ce600d8 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.263.txt @@ -0,0 +1 @@ +1 0.304609 0.657407 0.605210 0.679894 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.29.txt b/datasets/猫狗/train/labels/dog_dog.29.txt new file mode 100644 index 0000000..518af33 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.29.txt @@ -0,0 +1 @@ +1 0.373000 0.444149 0.654000 0.553191 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.30.txt b/datasets/猫狗/train/labels/dog_dog.30.txt new file mode 100644 index 0000000..71b2192 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.30.txt @@ -0,0 +1 @@ +1 0.498927 0.514223 0.770386 0.971554 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.37.txt b/datasets/猫狗/train/labels/dog_dog.37.txt new file mode 100644 index 0000000..7f13688 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.37.txt @@ -0,0 +1 @@ +1 0.510000 0.491914 0.975000 0.951482 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.43.txt b/datasets/猫狗/train/labels/dog_dog.43.txt new file mode 100644 index 0000000..f169b97 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.43.txt @@ -0,0 +1 @@ +1 0.342667 0.500000 0.680000 0.991968 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.501.txt b/datasets/猫狗/train/labels/dog_dog.501.txt new file mode 100644 index 0000000..fe8fb55 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.501.txt @@ -0,0 +1 @@ +1 0.460557 0.519000 0.703016 0.962000 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.502.txt b/datasets/猫狗/train/labels/dog_dog.502.txt new file mode 100644 index 0000000..bb98a9e --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.502.txt @@ -0,0 +1 @@ +1 0.467337 0.531250 0.864322 0.937500 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.536.txt b/datasets/猫狗/train/labels/dog_dog.536.txt new file mode 100644 index 0000000..f6d7cf2 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.536.txt @@ -0,0 +1 @@ +1 0.516544 0.481375 0.841912 0.882521 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.569.txt b/datasets/猫狗/train/labels/dog_dog.569.txt new file mode 100644 index 0000000..3b80af1 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.569.txt @@ -0,0 +1 @@ +1 0.554667 0.521042 0.826667 0.957916 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.584.txt b/datasets/猫狗/train/labels/dog_dog.584.txt new file mode 100644 index 0000000..28fbb2b --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.584.txt @@ -0,0 +1 @@ +1 0.468000 0.495482 0.700000 0.960843 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.677.txt b/datasets/猫狗/train/labels/dog_dog.677.txt new file mode 100644 index 0000000..df8c423 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.677.txt @@ -0,0 +1 @@ +1 0.555000 0.536145 0.506000 0.801205 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.701.txt b/datasets/猫狗/train/labels/dog_dog.701.txt new file mode 100644 index 0000000..6c42e09 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.701.txt @@ -0,0 +1 @@ +1 0.514327 0.570938 0.879656 0.858124 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.718.txt b/datasets/猫狗/train/labels/dog_dog.718.txt new file mode 100644 index 0000000..df2080c --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.718.txt @@ -0,0 +1 @@ +1 0.551000 0.538770 0.898000 0.687166 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.731.txt b/datasets/猫狗/train/labels/dog_dog.731.txt new file mode 100644 index 0000000..5211ba7 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.731.txt @@ -0,0 +1,4 @@ +1 0.160321 0.177419 0.228457 0.339950 +1 0.828657 0.272953 0.342685 0.526055 +1 0.227455 0.705955 0.442886 0.583127 +1 0.731463 0.774194 0.488978 0.352357 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.814.txt b/datasets/猫狗/train/labels/dog_dog.814.txt new file mode 100644 index 0000000..9e28c29 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.814.txt @@ -0,0 +1 @@ +1 0.484444 0.518797 0.675556 0.681704 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.906.txt b/datasets/猫狗/train/labels/dog_dog.906.txt new file mode 100644 index 0000000..65c02cf --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.906.txt @@ -0,0 +1 @@ +1 0.442080 0.502004 0.841608 0.971944 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.955.txt b/datasets/猫狗/train/labels/dog_dog.955.txt new file mode 100644 index 0000000..51bdfcd --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.955.txt @@ -0,0 +1 @@ +1 0.487976 0.436508 0.503006 0.820106 \ No newline at end of file diff --git a/datasets/猫狗/train/labels/dog_dog.999.txt b/datasets/猫狗/train/labels/dog_dog.999.txt new file mode 100644 index 0000000..ca420a0 --- /dev/null +++ b/datasets/猫狗/train/labels/dog_dog.999.txt @@ -0,0 +1 @@ +1 0.515528 0.508000 0.968944 0.964000 \ No newline at end of file diff --git a/datasets/猫狗/val/images/cat.2000.jpg b/datasets/猫狗/val/images/cat.2000.jpg new file mode 100644 index 0000000..e5ba6ed --- /dev/null +++ b/datasets/猫狗/val/images/cat.2000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911d2c45fdccd0f22c6668ea48b3dc0ad0758e39a1e0eaeb464e6d1daa63869e +size 22363 diff --git a/datasets/猫狗/val/images/cat.2001.jpg b/datasets/猫狗/val/images/cat.2001.jpg new file mode 100644 index 0000000..40e3869 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e644565e218e84d80a842e04a55bd917ee3ed4e6b56ce1141f7616d05ee6d7ac +size 21299 diff --git a/datasets/猫狗/val/images/cat.2002.jpg b/datasets/猫狗/val/images/cat.2002.jpg new file mode 100644 index 0000000..7050a60 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b9eb1484af018f121eb62dc60e7bcb080b06b8f4d5739a67894e0bb29066aa +size 27115 diff --git a/datasets/猫狗/val/images/cat.2003.jpg b/datasets/猫狗/val/images/cat.2003.jpg new file mode 100644 index 0000000..1183a10 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba8549db845db0016a06b2a02be7b4423216d55a16f587db78c258f741455fe +size 8326 diff --git a/datasets/猫狗/val/images/cat.2004.jpg b/datasets/猫狗/val/images/cat.2004.jpg new file mode 100644 index 0000000..ab8a5f0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1ae1d440ddf1fcf47fc153aaadd161dbe73dec645c20a4c000a01904866e9c +size 7036 diff --git a/datasets/猫狗/val/images/cat.2005.jpg b/datasets/猫狗/val/images/cat.2005.jpg new file mode 100644 index 0000000..372b853 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:036ea1cbe5be763a26399250f248c5b95521477103776b48bbc269d10a8bc6bf +size 24697 diff --git a/datasets/猫狗/val/images/cat.2006.jpg b/datasets/猫狗/val/images/cat.2006.jpg new file mode 100644 index 0000000..f1bf1d2 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c1d4a123267031842bc92af6f9a60791da66ba40e3aecc248a0b92f0c494d4 +size 15450 diff --git a/datasets/猫狗/val/images/cat.2007.jpg b/datasets/猫狗/val/images/cat.2007.jpg new file mode 100644 index 0000000..80c5ab4 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a8192df5c352cbae8e3b24dd63c430f9d2e6317e3595631b2bf8215654524c +size 24257 diff --git a/datasets/猫狗/val/images/cat.2008.jpg b/datasets/猫狗/val/images/cat.2008.jpg new file mode 100644 index 0000000..145200b --- /dev/null +++ b/datasets/猫狗/val/images/cat.2008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a7d84af8d1083ee7931dbf6774180a76387661b97bc3506cddc3090d06c3aa +size 27394 diff --git a/datasets/猫狗/val/images/cat.2009.jpg b/datasets/猫狗/val/images/cat.2009.jpg new file mode 100644 index 0000000..c504dc4 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2dd2829835405bf4a84fa54366d482ec258489c5f4bde3af23c05bb8dcb8d7 +size 23800 diff --git a/datasets/猫狗/val/images/cat.2010.jpg b/datasets/猫狗/val/images/cat.2010.jpg new file mode 100644 index 0000000..86371f9 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05c47d8ff90cc3d17335be1dc47f7b28b662acc2b77d344742029efeca94ad8 +size 26937 diff --git a/datasets/猫狗/val/images/cat.2011.jpg b/datasets/猫狗/val/images/cat.2011.jpg new file mode 100644 index 0000000..e01bd95 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e958c7550d595e8a882636fc318eb3666650cf4e70642b3da3d64c2f5292f2d4 +size 33976 diff --git a/datasets/猫狗/val/images/cat.2012.jpg b/datasets/猫狗/val/images/cat.2012.jpg new file mode 100644 index 0000000..4fa368b --- /dev/null +++ b/datasets/猫狗/val/images/cat.2012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce97ac2677ddc42f547e8a0b6ae58d697712200ba3e16a70e988153e2784205 +size 27225 diff --git a/datasets/猫狗/val/images/cat.2013.jpg b/datasets/猫狗/val/images/cat.2013.jpg new file mode 100644 index 0000000..a30cdcb --- /dev/null +++ b/datasets/猫狗/val/images/cat.2013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50a19f9f2d7e50ae422bd018885c89e704f21dab0eba18573e0707e6ecc5720 +size 14649 diff --git a/datasets/猫狗/val/images/cat.2014.jpg b/datasets/猫狗/val/images/cat.2014.jpg new file mode 100644 index 0000000..9a69658 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a79b75434cd3a55673f6dc4172ae0b93b0a7b71c890c417d643caaa09f050de +size 31752 diff --git a/datasets/猫狗/val/images/cat.2015.jpg b/datasets/猫狗/val/images/cat.2015.jpg new file mode 100644 index 0000000..841aec9 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5be452175624790a9c615d684ded49ffca039c188268ee22aafab65e4a2617 +size 18486 diff --git a/datasets/猫狗/val/images/cat.2016.jpg b/datasets/猫狗/val/images/cat.2016.jpg new file mode 100644 index 0000000..bc9b42e --- /dev/null +++ b/datasets/猫狗/val/images/cat.2016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac817eb26951fdf235deebcf76c53c9c16f92fdafbfd24bda018a37c71b8cc61 +size 9406 diff --git a/datasets/猫狗/val/images/cat.2017.jpg b/datasets/猫狗/val/images/cat.2017.jpg new file mode 100644 index 0000000..a9636a8 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2424c9ca41f75555c98cc3b865ae3e36b8c84ff6bee8483d5a2e0ae9d18d7ef5 +size 11663 diff --git a/datasets/猫狗/val/images/cat.2018.jpg b/datasets/猫狗/val/images/cat.2018.jpg new file mode 100644 index 0000000..a9b5210 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e71fbae3742448c025cde8bfe57c2f931fe5a2f041814d2f88bf2786546c4d5 +size 19856 diff --git a/datasets/猫狗/val/images/cat.2019.jpg b/datasets/猫狗/val/images/cat.2019.jpg new file mode 100644 index 0000000..f1640e7 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae864118379e9f8fcc4f4889ba0874a60a2ff9214ed2c4a278eb1123289a181 +size 22952 diff --git a/datasets/猫狗/val/images/cat.2020.jpg b/datasets/猫狗/val/images/cat.2020.jpg new file mode 100644 index 0000000..3ce4d61 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d49e59ca5806767af215e4c2e5684a363e1ba4912f00119b417466ccf8ef480 +size 30939 diff --git a/datasets/猫狗/val/images/cat.2021.jpg b/datasets/猫狗/val/images/cat.2021.jpg new file mode 100644 index 0000000..4a9691d --- /dev/null +++ b/datasets/猫狗/val/images/cat.2021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace3f422d0920bb4d1cb0f463836d8f989d0a622ee6ea4b1a117a0adbbbdbb71 +size 34787 diff --git a/datasets/猫狗/val/images/cat.2022.jpg b/datasets/猫狗/val/images/cat.2022.jpg new file mode 100644 index 0000000..1be6d98 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3775fb656c5a7e6505975d749801564b0e73ca2388d0689825192304a6c407 +size 37145 diff --git a/datasets/猫狗/val/images/cat.2023.jpg b/datasets/猫狗/val/images/cat.2023.jpg new file mode 100644 index 0000000..46056d3 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa834526c7edc7442629b75e0f75c12c5ff136ebb38ebe7007fafca1659df59 +size 9652 diff --git a/datasets/猫狗/val/images/cat.2024.jpg b/datasets/猫狗/val/images/cat.2024.jpg new file mode 100644 index 0000000..844828b --- /dev/null +++ b/datasets/猫狗/val/images/cat.2024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab4b676857893799f0f59f3b4dbba7a0871e53875535eae3bd00c508a638c60 +size 6812 diff --git a/datasets/猫狗/val/images/cat.2025.jpg b/datasets/猫狗/val/images/cat.2025.jpg new file mode 100644 index 0000000..de04d56 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c590c05691b6c192e87e1eec270dd8df037b057d42aa621170963a34685fc4 +size 5418 diff --git a/datasets/猫狗/val/images/cat.2026.jpg b/datasets/猫狗/val/images/cat.2026.jpg new file mode 100644 index 0000000..4ec80e5 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa7d4ed8b9ee21ebdcfe4bf59718efa534b1bd8d31c8dd752ba0ab47a9c30a7 +size 12804 diff --git a/datasets/猫狗/val/images/cat.2027.jpg b/datasets/猫狗/val/images/cat.2027.jpg new file mode 100644 index 0000000..6568f3c --- /dev/null +++ b/datasets/猫狗/val/images/cat.2027.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf1155759420257c6cb09a61784063483e113e03afd73e9d478594c54bf1bac +size 30559 diff --git a/datasets/猫狗/val/images/cat.2028.jpg b/datasets/猫狗/val/images/cat.2028.jpg new file mode 100644 index 0000000..1850277 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2028.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0055d35f296bf00c5284cec4d1ec13aa11b839d92bb102afeec847296659bf8 +size 36321 diff --git a/datasets/猫狗/val/images/cat.2029.jpg b/datasets/猫狗/val/images/cat.2029.jpg new file mode 100644 index 0000000..1093011 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2029.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6e6a31d7dbf765ab583764ec84a54e20a3981293d2cc83682cdc688416fb7b +size 14718 diff --git a/datasets/猫狗/val/images/cat.2030.jpg b/datasets/猫狗/val/images/cat.2030.jpg new file mode 100644 index 0000000..5a566c8 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2030.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e19639b5848304f1679d12b2be50c88771e530a23c1b074d1b59f775474c42f +size 25335 diff --git a/datasets/猫狗/val/images/cat.2031.jpg b/datasets/猫狗/val/images/cat.2031.jpg new file mode 100644 index 0000000..ad24b78 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70f293468180ddf75427e7be94023e890bbef6a2ea7c8ab6ed22473c3c8c112 +size 27604 diff --git a/datasets/猫狗/val/images/cat.2032.jpg b/datasets/猫狗/val/images/cat.2032.jpg new file mode 100644 index 0000000..63c2163 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d3725bcfad6d375ee4251d0cba0448a467219ff0ff73a565d510268cad07b4 +size 35698 diff --git a/datasets/猫狗/val/images/cat.2033.jpg b/datasets/猫狗/val/images/cat.2033.jpg new file mode 100644 index 0000000..f400a73 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2033.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5428d19d08de67ae3040243f309d89f8e2efedcec7eae2b4542bc4e029cc0c3 +size 18617 diff --git a/datasets/猫狗/val/images/cat.2034.jpg b/datasets/猫狗/val/images/cat.2034.jpg new file mode 100644 index 0000000..b7f7119 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2034.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5556fbfd6261f9a07490580a4cf3160b8b86185dad102602f7dcade51de0ae9d +size 19695 diff --git a/datasets/猫狗/val/images/cat.2035.jpg b/datasets/猫狗/val/images/cat.2035.jpg new file mode 100644 index 0000000..fc3fde3 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2035.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6956d393360d8d96a3973af93e931e93d1658319d9bd2190d6730a356a5a9f8e +size 16741 diff --git a/datasets/猫狗/val/images/cat.2036.jpg b/datasets/猫狗/val/images/cat.2036.jpg new file mode 100644 index 0000000..b7e3c9e --- /dev/null +++ b/datasets/猫狗/val/images/cat.2036.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:039f9b51f7a6a987026764d54ce5e7ad70f6eec62ac7e984ea51f0f8a3a28c8d +size 4268 diff --git a/datasets/猫狗/val/images/cat.2037.jpg b/datasets/猫狗/val/images/cat.2037.jpg new file mode 100644 index 0000000..e2b8df8 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2037.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cec0524f5960d4979ccd77bac0d78aebd927f61adb106d0625ca9bb22493c70 +size 20105 diff --git a/datasets/猫狗/val/images/cat.2038.jpg b/datasets/猫狗/val/images/cat.2038.jpg new file mode 100644 index 0000000..c4a9229 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2038.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf7d12f9a13ff1d4da9be519d1bc6527850eb75ac029f2b58f92b40f9739fdb +size 28861 diff --git a/datasets/猫狗/val/images/cat.2039.jpg b/datasets/猫狗/val/images/cat.2039.jpg new file mode 100644 index 0000000..a7a7f76 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2039.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f969f8c02eec1c532edeb4881223302829b2a919b141dc8745657431bf49b28 +size 22543 diff --git a/datasets/猫狗/val/images/cat.2040.jpg b/datasets/猫狗/val/images/cat.2040.jpg new file mode 100644 index 0000000..8696204 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2040.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502d5784befe8ba9231bed74bea8e36545024de2b512d711d6a4fe8cac28a705 +size 17113 diff --git a/datasets/猫狗/val/images/cat.2041.jpg b/datasets/猫狗/val/images/cat.2041.jpg new file mode 100644 index 0000000..ef54859 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2041.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850fc7c00e74132ada018223cdc100f33fe0083b4d966e55a636f9d6a7eebb92 +size 15036 diff --git a/datasets/猫狗/val/images/cat.2042.jpg b/datasets/猫狗/val/images/cat.2042.jpg new file mode 100644 index 0000000..6f2486b --- /dev/null +++ b/datasets/猫狗/val/images/cat.2042.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fba7044c81df09d4a1efbae3d21c4f49138a65e5217ce434f4318c251e42d18 +size 35378 diff --git a/datasets/猫狗/val/images/cat.2043.jpg b/datasets/猫狗/val/images/cat.2043.jpg new file mode 100644 index 0000000..810f2ca --- /dev/null +++ b/datasets/猫狗/val/images/cat.2043.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e475f5b549149388e7aa3c7c819f6c5bcd79053939f21c832b835b6075b507e1 +size 22636 diff --git a/datasets/猫狗/val/images/cat.2044.jpg b/datasets/猫狗/val/images/cat.2044.jpg new file mode 100644 index 0000000..c85182a --- /dev/null +++ b/datasets/猫狗/val/images/cat.2044.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b702231557ed06bf4aa858ab181c03f2a00dd37ee1a4ae3d3ef54b265962a9 +size 20316 diff --git a/datasets/猫狗/val/images/cat.2045.jpg b/datasets/猫狗/val/images/cat.2045.jpg new file mode 100644 index 0000000..6e72dd0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2045.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4b7b9bc3dbba01e9e362d2269b573603b2ef5d51beb4fe51347db07582e147 +size 12846 diff --git a/datasets/猫狗/val/images/cat.2046.jpg b/datasets/猫狗/val/images/cat.2046.jpg new file mode 100644 index 0000000..4386086 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2046.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5240df3f01d6575ff733364722b3fb7fad68c33200fc2d4ff25865e8e4d86956 +size 22674 diff --git a/datasets/猫狗/val/images/cat.2047.jpg b/datasets/猫狗/val/images/cat.2047.jpg new file mode 100644 index 0000000..d5198a0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2047.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812a79f4cfe5939ed5bcbe826aa5bec582862d522c4a85c1cd8dca4bbd586609 +size 17451 diff --git a/datasets/猫狗/val/images/cat.2048.jpg b/datasets/猫狗/val/images/cat.2048.jpg new file mode 100644 index 0000000..005b993 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2048.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5572c4f4c9325cf62df93f591ea3c2ebc70f8b45a0e30d1fa8f26e4569733d27 +size 15370 diff --git a/datasets/猫狗/val/images/cat.2049.jpg b/datasets/猫狗/val/images/cat.2049.jpg new file mode 100644 index 0000000..94643e5 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2049.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673d7c7c199c95ef4b34b8187156655d17957e9a8911b3dfd96d60e5c0128025 +size 4903 diff --git a/datasets/猫狗/val/images/cat.2050.jpg b/datasets/猫狗/val/images/cat.2050.jpg new file mode 100644 index 0000000..1aa2210 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2050.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f829a33c4a113aedb65c3bc23cb86ea427a6ae6f9d37f1a82eb208cc7b9e9c59 +size 9390 diff --git a/datasets/猫狗/val/images/cat.2051.jpg b/datasets/猫狗/val/images/cat.2051.jpg new file mode 100644 index 0000000..b50d333 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2051.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd6334f293f517da157fe53ecb4772b1baea94c0589a43b10dcba781ae533b4 +size 29368 diff --git a/datasets/猫狗/val/images/cat.2052.jpg b/datasets/猫狗/val/images/cat.2052.jpg new file mode 100644 index 0000000..05845c0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2052.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8468d62153f789fa82284d984a7ff9eaeb7cf57300ea5cc989285a82603331fe +size 18040 diff --git a/datasets/猫狗/val/images/cat.2053.jpg b/datasets/猫狗/val/images/cat.2053.jpg new file mode 100644 index 0000000..f844ef6 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2053.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7af8f6a39072e349b560a00f73109248d55acdeede1a23727b40bf01cb11621 +size 24366 diff --git a/datasets/猫狗/val/images/cat.2054.jpg b/datasets/猫狗/val/images/cat.2054.jpg new file mode 100644 index 0000000..4acf121 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2054.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb11f0a58074dd2d5460aab93fa2081b4d36167d73b7ed6bc76dbc0ce6fc721 +size 13419 diff --git a/datasets/猫狗/val/images/cat.2055.jpg b/datasets/猫狗/val/images/cat.2055.jpg new file mode 100644 index 0000000..b388af0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2055.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74abb920dc81c79f7b1837e9486652249424c9ca5aa823f90a9528f4c2a6fe92 +size 7837 diff --git a/datasets/猫狗/val/images/cat.2056.jpg b/datasets/猫狗/val/images/cat.2056.jpg new file mode 100644 index 0000000..2d95a8e --- /dev/null +++ b/datasets/猫狗/val/images/cat.2056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed01f6685a6ff4eef8377e5e3027e7f91e1898c5ddbed3be41437e43ba146e4 +size 38129 diff --git a/datasets/猫狗/val/images/cat.2057.jpg b/datasets/猫狗/val/images/cat.2057.jpg new file mode 100644 index 0000000..e5cf737 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2057.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4be5976c4a355a2d8e6c12724cdb0b0b46db47997d78347d515146fb6f69df1 +size 17313 diff --git a/datasets/猫狗/val/images/cat.2058.jpg b/datasets/猫狗/val/images/cat.2058.jpg new file mode 100644 index 0000000..2248035 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3a99e4e1f03418e7949264a2083728e8ea8dd0160add70909b3df5b45abf9c +size 29175 diff --git a/datasets/猫狗/val/images/cat.2059.jpg b/datasets/猫狗/val/images/cat.2059.jpg new file mode 100644 index 0000000..7ea7907 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2059.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb940145af1a2f04e9ef68807ddb2a022e0b643d905c9a0d636fbe048ceace4e +size 9057 diff --git a/datasets/猫狗/val/images/cat.2060.jpg b/datasets/猫狗/val/images/cat.2060.jpg new file mode 100644 index 0000000..1e9aef2 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2060.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb77d7d7825c8a2658fc8c6339ec9eafdea55a43a1704dbb20f9a2d679dc2953 +size 22683 diff --git a/datasets/猫狗/val/images/cat.2061.jpg b/datasets/猫狗/val/images/cat.2061.jpg new file mode 100644 index 0000000..ac7ed2f --- /dev/null +++ b/datasets/猫狗/val/images/cat.2061.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6aa2cad6f629de754dd657cb721f31986e08a35185b77be9eb46849ff019a1 +size 29098 diff --git a/datasets/猫狗/val/images/cat.2062.jpg b/datasets/猫狗/val/images/cat.2062.jpg new file mode 100644 index 0000000..ac6b461 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2062.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b2be3850e3926af4dd6277ce8e562db7703ccb9ebd308ff85bfb2919e3da06 +size 16342 diff --git a/datasets/猫狗/val/images/cat.2063.jpg b/datasets/猫狗/val/images/cat.2063.jpg new file mode 100644 index 0000000..84a3e46 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2063.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf2256842b5f5eb72ff67afe63efefab4d2501e1b78dc718e9da3ead444f74b +size 20209 diff --git a/datasets/猫狗/val/images/cat.2064.jpg b/datasets/猫狗/val/images/cat.2064.jpg new file mode 100644 index 0000000..091e1b3 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2064.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85234e7951c47014ef6f2de094c349edc674b45e434804a830740d4417cb3dc3 +size 36089 diff --git a/datasets/猫狗/val/images/cat.2065.jpg b/datasets/猫狗/val/images/cat.2065.jpg new file mode 100644 index 0000000..884d917 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2065.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0543a0aee420e2442c1619f7a5384d9e7af63d81a733a2bd7ce827953a994cd2 +size 14851 diff --git a/datasets/猫狗/val/images/cat.2066.jpg b/datasets/猫狗/val/images/cat.2066.jpg new file mode 100644 index 0000000..450f7a0 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2066.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77dbbd12167c56463c760fa19ff28c534855ca47b5d1fdce300de36606499524 +size 38175 diff --git a/datasets/猫狗/val/images/cat.2067.jpg b/datasets/猫狗/val/images/cat.2067.jpg new file mode 100644 index 0000000..a7af53c --- /dev/null +++ b/datasets/猫狗/val/images/cat.2067.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297cda7588d332d1547e1bbeeec6b4518d45667ffff0419c743747a566cdf825 +size 15714 diff --git a/datasets/猫狗/val/images/cat.2068.jpg b/datasets/猫狗/val/images/cat.2068.jpg new file mode 100644 index 0000000..93378ea --- /dev/null +++ b/datasets/猫狗/val/images/cat.2068.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd554dae1980b7c649814646eac0f641126f4afff03a72422d8480b52a01c98a +size 10506 diff --git a/datasets/猫狗/val/images/cat.2069.jpg b/datasets/猫狗/val/images/cat.2069.jpg new file mode 100644 index 0000000..ecd5a94 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2069.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f2f719a006b03cf8f79ea8d98a8dc0b3f36cfe1d9e5a2e0396b321756763e28 +size 12032 diff --git a/datasets/猫狗/val/images/cat.2070.jpg b/datasets/猫狗/val/images/cat.2070.jpg new file mode 100644 index 0000000..3ad229c --- /dev/null +++ b/datasets/猫狗/val/images/cat.2070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b79dfa44e6ff856d44426b2df771f4c9f0604b98fe1b62526767bd2a845019b +size 21908 diff --git a/datasets/猫狗/val/images/cat.2071.jpg b/datasets/猫狗/val/images/cat.2071.jpg new file mode 100644 index 0000000..4d76503 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2071.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6b4647fc7d26b492502921f5808a910d5fc922914e7804c93fee76a1d3c13b +size 20407 diff --git a/datasets/猫狗/val/images/cat.2072.jpg b/datasets/猫狗/val/images/cat.2072.jpg new file mode 100644 index 0000000..745546b --- /dev/null +++ b/datasets/猫狗/val/images/cat.2072.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:371e4cfff9507444ea42bafb18de5daec2f6ae0a6abf3dbab2fdeeba2ddb4533 +size 19146 diff --git a/datasets/猫狗/val/images/cat.2073.jpg b/datasets/猫狗/val/images/cat.2073.jpg new file mode 100644 index 0000000..86918e4 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2073.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e345d7674c825a8ab0fd36def62b02ef89e9de278b9dc586fb8da8cd9a432f +size 29796 diff --git a/datasets/猫狗/val/images/cat.2074.jpg b/datasets/猫狗/val/images/cat.2074.jpg new file mode 100644 index 0000000..f4ca068 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2074.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5728da54b4e930126fe75e89ab04e3bc387ef12fa5d16ff146a9aa0755ad78 +size 35933 diff --git a/datasets/猫狗/val/images/cat.2075.jpg b/datasets/猫狗/val/images/cat.2075.jpg new file mode 100644 index 0000000..da0c9cd --- /dev/null +++ b/datasets/猫狗/val/images/cat.2075.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca788c7907651d0135c5122755c92c231d9f5fa6816ff628b8c2c5d7a0e2901b +size 19770 diff --git a/datasets/猫狗/val/images/cat.2076.jpg b/datasets/猫狗/val/images/cat.2076.jpg new file mode 100644 index 0000000..a5f5ac2 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2076.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec31b7b5a4c7473ad246bcfd5c93e0f0c8dff8f4cf55a3bc9d2e08175af0d94 +size 11150 diff --git a/datasets/猫狗/val/images/cat.2077.jpg b/datasets/猫狗/val/images/cat.2077.jpg new file mode 100644 index 0000000..d348124 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2077.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e4e465d4eca86c7ac016816affc9d8eb1eafdc8750d71381cacf3744012343 +size 25687 diff --git a/datasets/猫狗/val/images/cat.2078.jpg b/datasets/猫狗/val/images/cat.2078.jpg new file mode 100644 index 0000000..33b79ef --- /dev/null +++ b/datasets/猫狗/val/images/cat.2078.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8254955c13013f02e9d20cb141a457184c817c1a81505abb2f30623150e3a92a +size 25469 diff --git a/datasets/猫狗/val/images/cat.2079.jpg b/datasets/猫狗/val/images/cat.2079.jpg new file mode 100644 index 0000000..8a11651 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2079.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd82cfcfe41bc16ba244e3094a334fb961066ab2776757f1ba7abeca69576347 +size 19328 diff --git a/datasets/猫狗/val/images/cat.2080.jpg b/datasets/猫狗/val/images/cat.2080.jpg new file mode 100644 index 0000000..c259c94 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2080.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0064a05c2ed80bcdc11458895727f5cc9ef0ca6ac73a14b489a098a94c850b33 +size 21064 diff --git a/datasets/猫狗/val/images/cat.2081.jpg b/datasets/猫狗/val/images/cat.2081.jpg new file mode 100644 index 0000000..cdde4d1 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2081.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e055a712cb7f0f6a0fc80450231a92efc2e812954044c7e2ad45e797c7a28b88 +size 7426 diff --git a/datasets/猫狗/val/images/cat.2082.jpg b/datasets/猫狗/val/images/cat.2082.jpg new file mode 100644 index 0000000..5fff3f2 --- /dev/null +++ b/datasets/猫狗/val/images/cat.2082.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3f7c93f1aaec7ac388f13c6212822687ad2530e44b830789597b32ce577daa +size 18001 diff --git a/datasets/猫狗/val/images/dog.2000.jpg b/datasets/猫狗/val/images/dog.2000.jpg new file mode 100644 index 0000000..9a881cd --- /dev/null +++ b/datasets/猫狗/val/images/dog.2000.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f00f7091f2268571c43461cd052750f9e5029c44895788b7bc3a25c4f92c153 +size 18148 diff --git a/datasets/猫狗/val/images/dog.2001.jpg b/datasets/猫狗/val/images/dog.2001.jpg new file mode 100644 index 0000000..4cc616a --- /dev/null +++ b/datasets/猫狗/val/images/dog.2001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775db96e53b59050f59e5fb3fd91d014cbe7e7b6da4aae43a702bd7c8471c4d1 +size 9538 diff --git a/datasets/猫狗/val/images/dog.2002.jpg b/datasets/猫狗/val/images/dog.2002.jpg new file mode 100644 index 0000000..cc7b5b2 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2002.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e56c6862eb4ff629d2f7abe3fb1f7f286fb21d374a8c45397685f95063e360b +size 41685 diff --git a/datasets/猫狗/val/images/dog.2003.jpg b/datasets/猫狗/val/images/dog.2003.jpg new file mode 100644 index 0000000..6e01e6e --- /dev/null +++ b/datasets/猫狗/val/images/dog.2003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0080e4ad0a810983e9606b58e8314ee2520f6b4d70e860e1268ea7ce44b5e1 +size 31372 diff --git a/datasets/猫狗/val/images/dog.2004.jpg b/datasets/猫狗/val/images/dog.2004.jpg new file mode 100644 index 0000000..d2281cb --- /dev/null +++ b/datasets/猫狗/val/images/dog.2004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cd86b0a847f82b72a2e568506228ae7ff271eafb778b878f2f242d2fa01422 +size 28388 diff --git a/datasets/猫狗/val/images/dog.2005.jpg b/datasets/猫狗/val/images/dog.2005.jpg new file mode 100644 index 0000000..6ca241f --- /dev/null +++ b/datasets/猫狗/val/images/dog.2005.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843d20a5bc0ef6e769a0452e72a61c79a1cab192d98a8915b4b75bb20ee5bdbb +size 28193 diff --git a/datasets/猫狗/val/images/dog.2006.jpg b/datasets/猫狗/val/images/dog.2006.jpg new file mode 100644 index 0000000..f089867 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2006.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239617bc7f8f3185d72e62032244675b3baf584cea053dc1d9e22cff0fbbbf84 +size 20708 diff --git a/datasets/猫狗/val/images/dog.2007.jpg b/datasets/猫狗/val/images/dog.2007.jpg new file mode 100644 index 0000000..0cf30f3 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2007.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38aa87d3e7e576747d5088ae085ffd26019808910343ef5f29b91dd6d773b91b +size 21947 diff --git a/datasets/猫狗/val/images/dog.2008.jpg b/datasets/猫狗/val/images/dog.2008.jpg new file mode 100644 index 0000000..6e9c7df --- /dev/null +++ b/datasets/猫狗/val/images/dog.2008.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24c3d053caeadbcd58da02468c03710f787b09f4ad23f6bd5752d912cc7df39 +size 26311 diff --git a/datasets/猫狗/val/images/dog.2009.jpg b/datasets/猫狗/val/images/dog.2009.jpg new file mode 100644 index 0000000..4946967 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2009.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58664dc533d166b8fd2b5bc81b837d6dad925417d0f06123af82d536c4d3806 +size 7047 diff --git a/datasets/猫狗/val/images/dog.2010.jpg b/datasets/猫狗/val/images/dog.2010.jpg new file mode 100644 index 0000000..c0439cd --- /dev/null +++ b/datasets/猫狗/val/images/dog.2010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9720b6f317335cf66bf9bc5188706b13dcf107e312db8c627caa28ca2159fc +size 11625 diff --git a/datasets/猫狗/val/images/dog.2011.jpg b/datasets/猫狗/val/images/dog.2011.jpg new file mode 100644 index 0000000..e98342f --- /dev/null +++ b/datasets/猫狗/val/images/dog.2011.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680c1725bd5dc5814ca1dbab8ded1ce49e579f13e6b33a6c92e6520c2a3a635b +size 21430 diff --git a/datasets/猫狗/val/images/dog.2012.jpg b/datasets/猫狗/val/images/dog.2012.jpg new file mode 100644 index 0000000..c653fb6 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2012.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74199c2f971bb8674e30e9eafbd66e28933199f510cff34e8f2320e083bb3e7e +size 37969 diff --git a/datasets/猫狗/val/images/dog.2013.jpg b/datasets/猫狗/val/images/dog.2013.jpg new file mode 100644 index 0000000..930945d --- /dev/null +++ b/datasets/猫狗/val/images/dog.2013.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f876b9cdb11b2a5829d345d6152036343acdc1e5f58febad93d597dc30782bd0 +size 33481 diff --git a/datasets/猫狗/val/images/dog.2014.jpg b/datasets/猫狗/val/images/dog.2014.jpg new file mode 100644 index 0000000..24e4450 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2014.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585dd688195643875b3cc3c0b99731dc893938503d5ceae3a49a3b1e102f8b66 +size 23316 diff --git a/datasets/猫狗/val/images/dog.2015.jpg b/datasets/猫狗/val/images/dog.2015.jpg new file mode 100644 index 0000000..db239a4 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2015.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fc7fc43e59da7b17249021057ea97e6982a316534a940f0ff3c80f208d2c0e +size 26314 diff --git a/datasets/猫狗/val/images/dog.2016.jpg b/datasets/猫狗/val/images/dog.2016.jpg new file mode 100644 index 0000000..9165ced --- /dev/null +++ b/datasets/猫狗/val/images/dog.2016.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a81558c58514ee0dd7f32d37b4c3852688d5d817c499e4fa7e220983baad3b +size 38961 diff --git a/datasets/猫狗/val/images/dog.2017.jpg b/datasets/猫狗/val/images/dog.2017.jpg new file mode 100644 index 0000000..3e6375c --- /dev/null +++ b/datasets/猫狗/val/images/dog.2017.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ac9a90898ae72a71ff92355a7556e3c848724ea5ed675d032f7f6385826238 +size 21643 diff --git a/datasets/猫狗/val/images/dog.2018.jpg b/datasets/猫狗/val/images/dog.2018.jpg new file mode 100644 index 0000000..d482c19 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2018.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbeeb5e74ff9479911638480afd627189cb77a34dec66bd9c30d5d3cb8f71c1 +size 2780 diff --git a/datasets/猫狗/val/images/dog.2019.jpg b/datasets/猫狗/val/images/dog.2019.jpg new file mode 100644 index 0000000..0c0e5ff --- /dev/null +++ b/datasets/猫狗/val/images/dog.2019.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13fd7aa4265f3341b711b25ba4cb467932c234f4e6104b2498c27ca6899b375 +size 28541 diff --git a/datasets/猫狗/val/images/dog.2020.jpg b/datasets/猫狗/val/images/dog.2020.jpg new file mode 100644 index 0000000..87ccf1b --- /dev/null +++ b/datasets/猫狗/val/images/dog.2020.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d18089e56afdd9cf42d97f9432937756592a2d833ca5b5799ed88ac904b544 +size 43162 diff --git a/datasets/猫狗/val/images/dog.2021.jpg b/datasets/猫狗/val/images/dog.2021.jpg new file mode 100644 index 0000000..eb702b5 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2021.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a97345cfb1eca87bc728298c26e2a4e63d519fad48f1de34b6f1860679577b +size 14886 diff --git a/datasets/猫狗/val/images/dog.2022.jpg b/datasets/猫狗/val/images/dog.2022.jpg new file mode 100644 index 0000000..be48e3b --- /dev/null +++ b/datasets/猫狗/val/images/dog.2022.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08fb6827dd26d522f96fcad30274a04cea86c83b4d7d7d28665bb4b202d326ce +size 31875 diff --git a/datasets/猫狗/val/images/dog.2023.jpg b/datasets/猫狗/val/images/dog.2023.jpg new file mode 100644 index 0000000..01696c6 --- /dev/null +++ b/datasets/猫狗/val/images/dog.2023.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47115017c3e06b47fed29718b616f2d3e0d6b53ef03bdbaf3082c06e5b2e24f +size 37810 diff --git a/datasets/猫狗/val/images/dog.2024.jpg b/datasets/猫狗/val/images/dog.2024.jpg new file mode 100644 index 0000000..313a1ee --- /dev/null +++ b/datasets/猫狗/val/images/dog.2024.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a613614230b83c405aa554d792199f1ff9cc50250f99fb2c0191e22294ca40 +size 13142 diff --git a/datasets/猫狗/val/images/dog.2025.jpg b/datasets/猫狗/val/images/dog.2025.jpg new file mode 100644 index 0000000..7b4b7fc --- /dev/null +++ b/datasets/猫狗/val/images/dog.2025.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56278453233b4e785457041fbb880c0b29ff51195298bda77081e3bf0d1ac597 +size 11597 diff --git a/datasets/猫狗/val/images/dog.2026.jpg b/datasets/猫狗/val/images/dog.2026.jpg new file mode 100644 index 0000000..970402e --- /dev/null +++ b/datasets/猫狗/val/images/dog.2026.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8dc47b964bca2b454a0458069f693cfc693be6e9835d24af72de863427b0e75 +size 50954 diff --git a/datasets/猫狗/val/labels.cache b/datasets/猫狗/val/labels.cache new file mode 100644 index 0000000..bba2060 Binary files /dev/null and b/datasets/猫狗/val/labels.cache differ diff --git a/datasets/猫狗/val/labels/cat.2000.txt b/datasets/猫狗/val/labels/cat.2000.txt new file mode 100644 index 0000000..4eadf6e --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2000.txt @@ -0,0 +1 @@ +0 0.517429 0.506012 0.925926 0.867735 diff --git a/datasets/猫狗/val/labels/cat.2001.txt b/datasets/猫狗/val/labels/cat.2001.txt new file mode 100644 index 0000000..91ecfc1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2001.txt @@ -0,0 +1 @@ +0 0.515030 0.458204 0.869739 0.749226 diff --git a/datasets/猫狗/val/labels/cat.2002.txt b/datasets/猫狗/val/labels/cat.2002.txt new file mode 100644 index 0000000..b35d7a4 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2002.txt @@ -0,0 +1 @@ +0 0.476954 0.553452 0.444890 0.714922 diff --git a/datasets/猫狗/val/labels/cat.2003.txt b/datasets/猫狗/val/labels/cat.2003.txt new file mode 100644 index 0000000..2f3c753 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2003.txt @@ -0,0 +1 @@ +0 0.475000 0.404762 0.808333 0.703704 diff --git a/datasets/猫狗/val/labels/cat.2004.txt b/datasets/猫狗/val/labels/cat.2004.txt new file mode 100644 index 0000000..4e684ab --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2004.txt @@ -0,0 +1 @@ +0 0.556995 0.502551 0.865285 0.933673 diff --git a/datasets/猫狗/val/labels/cat.2005.txt b/datasets/猫狗/val/labels/cat.2005.txt new file mode 100644 index 0000000..337b2d1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2005.txt @@ -0,0 +1 @@ +0 0.494269 0.486339 0.793696 0.797814 diff --git a/datasets/猫狗/val/labels/cat.2006.txt b/datasets/猫狗/val/labels/cat.2006.txt new file mode 100644 index 0000000..d58b774 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2006.txt @@ -0,0 +1 @@ +0 0.587798 0.435123 0.824405 0.740492 diff --git a/datasets/猫狗/val/labels/cat.2007.txt b/datasets/猫狗/val/labels/cat.2007.txt new file mode 100644 index 0000000..2a6bc62 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2007.txt @@ -0,0 +1 @@ +0 0.524048 0.487500 0.931864 0.775000 diff --git a/datasets/猫狗/val/labels/cat.2008.txt b/datasets/猫狗/val/labels/cat.2008.txt new file mode 100644 index 0000000..b3f3b69 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2008.txt @@ -0,0 +1 @@ +0 0.493000 0.509454 0.578000 0.930672 diff --git a/datasets/猫狗/val/labels/cat.2009.txt b/datasets/猫狗/val/labels/cat.2009.txt new file mode 100644 index 0000000..e827553 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2009.txt @@ -0,0 +1 @@ +0 0.556250 0.487013 0.827500 0.961039 diff --git a/datasets/猫狗/val/labels/cat.2010.txt b/datasets/猫狗/val/labels/cat.2010.txt new file mode 100644 index 0000000..327c3b6 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2010.txt @@ -0,0 +1 @@ +0 0.474950 0.530749 0.877756 0.938503 diff --git a/datasets/猫狗/val/labels/cat.2011.txt b/datasets/猫狗/val/labels/cat.2011.txt new file mode 100644 index 0000000..4b36f11 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2011.txt @@ -0,0 +1 @@ +0 0.491507 0.467000 0.876858 0.870000 diff --git a/datasets/猫狗/val/labels/cat.2012.txt b/datasets/猫狗/val/labels/cat.2012.txt new file mode 100644 index 0000000..d21603b --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2012.txt @@ -0,0 +1 @@ +0 0.428858 0.485333 0.853707 0.965333 diff --git a/datasets/猫狗/val/labels/cat.2013.txt b/datasets/猫狗/val/labels/cat.2013.txt new file mode 100644 index 0000000..40408bd --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2013.txt @@ -0,0 +1 @@ +0 0.479167 0.535565 0.950000 0.928870 diff --git a/datasets/猫狗/val/labels/cat.2014.txt b/datasets/猫狗/val/labels/cat.2014.txt new file mode 100644 index 0000000..37afd8b --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2014.txt @@ -0,0 +1 @@ +0 0.446701 0.499000 0.741117 0.938000 diff --git a/datasets/猫狗/val/labels/cat.2015.txt b/datasets/猫狗/val/labels/cat.2015.txt new file mode 100644 index 0000000..472b3e1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2015.txt @@ -0,0 +1 @@ +0 0.553750 0.511706 0.812500 0.595318 diff --git a/datasets/猫狗/val/labels/cat.2016.txt b/datasets/猫狗/val/labels/cat.2016.txt new file mode 100644 index 0000000..3aad5a3 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2016.txt @@ -0,0 +1 @@ +0 0.540161 0.500000 0.903614 0.970696 diff --git a/datasets/猫狗/val/labels/cat.2017.txt b/datasets/猫狗/val/labels/cat.2017.txt new file mode 100644 index 0000000..3fbcb60 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2017.txt @@ -0,0 +1 @@ +0 0.491667 0.469900 0.816667 0.933110 diff --git a/datasets/猫狗/val/labels/cat.2018.txt b/datasets/猫狗/val/labels/cat.2018.txt new file mode 100644 index 0000000..74d8ab1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2018.txt @@ -0,0 +1 @@ +0 0.466592 0.506510 0.706013 0.960938 diff --git a/datasets/猫狗/val/labels/cat.2019.txt b/datasets/猫狗/val/labels/cat.2019.txt new file mode 100644 index 0000000..02a22e8 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2019.txt @@ -0,0 +1 @@ +0 0.414000 0.552139 0.812000 0.895722 diff --git a/datasets/猫狗/val/labels/cat.2020.txt b/datasets/猫狗/val/labels/cat.2020.txt new file mode 100644 index 0000000..5302939 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2020.txt @@ -0,0 +1 @@ +0 0.571142 0.515267 0.785571 0.928753 diff --git a/datasets/猫狗/val/labels/cat.2021.txt b/datasets/猫狗/val/labels/cat.2021.txt new file mode 100644 index 0000000..bfd0cd0 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2021.txt @@ -0,0 +1 @@ +0 0.564718 0.558333 0.791232 0.472222 diff --git a/datasets/猫狗/val/labels/cat.2022.txt b/datasets/猫狗/val/labels/cat.2022.txt new file mode 100644 index 0000000..9dc80e5 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2022.txt @@ -0,0 +1 @@ +0 0.595190 0.522667 0.801603 0.912000 diff --git a/datasets/猫狗/val/labels/cat.2023.txt b/datasets/猫狗/val/labels/cat.2023.txt new file mode 100644 index 0000000..8cf3b2a --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2023.txt @@ -0,0 +1 @@ +0 0.632107 0.540000 0.682274 0.920000 diff --git a/datasets/猫狗/val/labels/cat.2024.txt b/datasets/猫狗/val/labels/cat.2024.txt new file mode 100644 index 0000000..31501cd --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2024.txt @@ -0,0 +1 @@ +0 0.489848 0.506073 0.817259 0.987854 diff --git a/datasets/猫狗/val/labels/cat.2025.txt b/datasets/猫狗/val/labels/cat.2025.txt new file mode 100644 index 0000000..af20635 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2025.txt @@ -0,0 +1 @@ +0 0.479899 0.518750 0.919598 0.962500 diff --git a/datasets/猫狗/val/labels/cat.2026.txt b/datasets/猫狗/val/labels/cat.2026.txt new file mode 100644 index 0000000..e6a2d21 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2026.txt @@ -0,0 +1 @@ +0 0.521242 0.526549 0.957516 0.923304 diff --git a/datasets/猫狗/val/labels/cat.2027.txt b/datasets/猫狗/val/labels/cat.2027.txt new file mode 100644 index 0000000..3974b72 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2027.txt @@ -0,0 +1 @@ +0 0.497996 0.330214 0.334669 0.622995 diff --git a/datasets/猫狗/val/labels/cat.2028.txt b/datasets/猫狗/val/labels/cat.2028.txt new file mode 100644 index 0000000..b52296e --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2028.txt @@ -0,0 +1 @@ +0 0.626253 0.402667 0.494990 0.586667 diff --git a/datasets/猫狗/val/labels/cat.2029.txt b/datasets/猫狗/val/labels/cat.2029.txt new file mode 100644 index 0000000..6c7b094 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2029.txt @@ -0,0 +1 @@ +0 0.512000 0.394231 0.920000 0.656593 diff --git a/datasets/猫狗/val/labels/cat.2030.txt b/datasets/猫狗/val/labels/cat.2030.txt new file mode 100644 index 0000000..6dd7d3e --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2030.txt @@ -0,0 +1 @@ +0 0.494990 0.540000 0.513026 0.853333 diff --git a/datasets/猫狗/val/labels/cat.2031.txt b/datasets/猫狗/val/labels/cat.2031.txt new file mode 100644 index 0000000..e2bd524 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2031.txt @@ -0,0 +1 @@ +0 0.514196 0.480000 0.580442 0.744000 diff --git a/datasets/猫狗/val/labels/cat.2032.txt b/datasets/猫狗/val/labels/cat.2032.txt new file mode 100644 index 0000000..7f2e986 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2032.txt @@ -0,0 +1 @@ +0 0.446524 0.582000 0.764706 0.836000 diff --git a/datasets/猫狗/val/labels/cat.2033.txt b/datasets/猫狗/val/labels/cat.2033.txt new file mode 100644 index 0000000..993fdbf --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2033.txt @@ -0,0 +1 @@ +0 0.523958 0.501131 0.689583 0.997738 diff --git a/datasets/猫狗/val/labels/cat.2034.txt b/datasets/猫狗/val/labels/cat.2034.txt new file mode 100644 index 0000000..cd08fba --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2034.txt @@ -0,0 +1 @@ +0 0.493988 0.534667 0.507014 0.930667 diff --git a/datasets/猫狗/val/labels/cat.2035.txt b/datasets/猫狗/val/labels/cat.2035.txt new file mode 100644 index 0000000..9af8705 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2035.txt @@ -0,0 +1 @@ +0 0.494990 0.545058 0.985972 0.729651 diff --git a/datasets/猫狗/val/labels/cat.2036.txt b/datasets/猫狗/val/labels/cat.2036.txt new file mode 100644 index 0000000..cb70089 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2036.txt @@ -0,0 +1 @@ +0 0.500000 0.520325 0.904000 0.861789 diff --git a/datasets/猫狗/val/labels/cat.2037.txt b/datasets/猫狗/val/labels/cat.2037.txt new file mode 100644 index 0000000..8887afe --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2037.txt @@ -0,0 +1 @@ +0 0.520040 0.474667 0.615230 0.597333 diff --git a/datasets/猫狗/val/labels/cat.2038.txt b/datasets/猫狗/val/labels/cat.2038.txt new file mode 100644 index 0000000..e969bb8 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2038.txt @@ -0,0 +1 @@ +0 0.343687 0.445333 0.523046 0.794667 diff --git a/datasets/猫狗/val/labels/cat.2039.txt b/datasets/猫狗/val/labels/cat.2039.txt new file mode 100644 index 0000000..fb0b633 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2039.txt @@ -0,0 +1 @@ +0 0.430862 0.580000 0.561122 0.461333 diff --git a/datasets/猫狗/val/labels/cat.2040.txt b/datasets/猫狗/val/labels/cat.2040.txt new file mode 100644 index 0000000..cf53fc9 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2040.txt @@ -0,0 +1 @@ +0 0.384770 0.506079 0.268537 0.240122 diff --git a/datasets/猫狗/val/labels/cat.2041.txt b/datasets/猫狗/val/labels/cat.2041.txt new file mode 100644 index 0000000..1f9bfe6 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2041.txt @@ -0,0 +1 @@ +0 0.482000 0.481818 0.960000 0.958442 diff --git a/datasets/猫狗/val/labels/cat.2042.txt b/datasets/猫狗/val/labels/cat.2042.txt new file mode 100644 index 0000000..6f14edf --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2042.txt @@ -0,0 +1,3 @@ +0 0.191000 0.507937 0.342000 0.661376 +0 0.610000 0.234127 0.484000 0.330688 +0 0.718000 0.698413 0.508000 0.603175 diff --git a/datasets/猫狗/val/labels/cat.2043.txt b/datasets/猫狗/val/labels/cat.2043.txt new file mode 100644 index 0000000..6fa0361 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2043.txt @@ -0,0 +1 @@ +0 0.533000 0.526932 0.698000 0.946136 diff --git a/datasets/猫狗/val/labels/cat.2044.txt b/datasets/猫狗/val/labels/cat.2044.txt new file mode 100644 index 0000000..6d4897b --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2044.txt @@ -0,0 +1 @@ +0 0.480962 0.385333 0.805611 0.685333 diff --git a/datasets/猫狗/val/labels/cat.2045.txt b/datasets/猫狗/val/labels/cat.2045.txt new file mode 100644 index 0000000..6b3b348 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2045.txt @@ -0,0 +1 @@ +0 0.522923 0.547710 0.690544 0.904580 diff --git a/datasets/猫狗/val/labels/cat.2046.txt b/datasets/猫狗/val/labels/cat.2046.txt new file mode 100644 index 0000000..c43a973 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2046.txt @@ -0,0 +1 @@ +0 0.499000 0.371658 0.686000 0.663102 diff --git a/datasets/猫狗/val/labels/cat.2047.txt b/datasets/猫狗/val/labels/cat.2047.txt new file mode 100644 index 0000000..6e8f55d --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2047.txt @@ -0,0 +1 @@ +0 0.598000 0.601604 0.804000 0.459893 diff --git a/datasets/猫狗/val/labels/cat.2048.txt b/datasets/猫狗/val/labels/cat.2048.txt new file mode 100644 index 0000000..f1b41c5 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2048.txt @@ -0,0 +1 @@ +0 0.507973 0.564384 0.984055 0.761644 diff --git a/datasets/猫狗/val/labels/cat.2049.txt b/datasets/猫狗/val/labels/cat.2049.txt new file mode 100644 index 0000000..b428466 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2049.txt @@ -0,0 +1 @@ +0 0.322884 0.521127 0.526646 0.610329 diff --git a/datasets/猫狗/val/labels/cat.2050.txt b/datasets/猫狗/val/labels/cat.2050.txt new file mode 100644 index 0000000..5902e55 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2050.txt @@ -0,0 +1 @@ +0 0.515000 0.512590 0.850000 0.974820 diff --git a/datasets/猫狗/val/labels/cat.2051.txt b/datasets/猫狗/val/labels/cat.2051.txt new file mode 100644 index 0000000..ac57dc2 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2051.txt @@ -0,0 +1 @@ +0 0.541878 0.497000 0.916244 0.950000 diff --git a/datasets/猫狗/val/labels/cat.2052.txt b/datasets/猫狗/val/labels/cat.2052.txt new file mode 100644 index 0000000..da06337 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2052.txt @@ -0,0 +1 @@ +0 0.527778 0.445141 0.886473 0.595611 diff --git a/datasets/猫狗/val/labels/cat.2053.txt b/datasets/猫狗/val/labels/cat.2053.txt new file mode 100644 index 0000000..c514b7b --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2053.txt @@ -0,0 +1 @@ +0 0.505000 0.566845 0.990000 0.866310 diff --git a/datasets/猫狗/val/labels/cat.2054.txt b/datasets/猫狗/val/labels/cat.2054.txt new file mode 100644 index 0000000..ac6ed4e --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2054.txt @@ -0,0 +1 @@ +0 0.517333 0.504008 0.965333 0.991984 diff --git a/datasets/猫狗/val/labels/cat.2055.txt b/datasets/猫狗/val/labels/cat.2055.txt new file mode 100644 index 0000000..b24f342 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2055.txt @@ -0,0 +1 @@ +0 0.517857 0.509317 0.964286 0.981366 diff --git a/datasets/猫狗/val/labels/cat.2056.txt b/datasets/猫狗/val/labels/cat.2056.txt new file mode 100644 index 0000000..190259c --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2056.txt @@ -0,0 +1 @@ +0 0.524000 0.502674 0.708000 0.529412 diff --git a/datasets/猫狗/val/labels/cat.2057.txt b/datasets/猫狗/val/labels/cat.2057.txt new file mode 100644 index 0000000..d0c0308 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2057.txt @@ -0,0 +1 @@ +0 0.505013 0.559722 0.954887 0.686111 diff --git a/datasets/猫狗/val/labels/cat.2058.txt b/datasets/猫狗/val/labels/cat.2058.txt new file mode 100644 index 0000000..8f666a5 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2058.txt @@ -0,0 +1 @@ +0 0.445000 0.453908 0.886000 0.903808 diff --git a/datasets/猫狗/val/labels/cat.2059.txt b/datasets/猫狗/val/labels/cat.2059.txt new file mode 100644 index 0000000..cf8ffd7 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2059.txt @@ -0,0 +1 @@ +0 0.522500 0.505017 0.955000 0.989967 diff --git a/datasets/猫狗/val/labels/cat.2060.txt b/datasets/猫狗/val/labels/cat.2060.txt new file mode 100644 index 0000000..8352ada --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2060.txt @@ -0,0 +1 @@ +0 0.449900 0.481333 0.895792 0.957333 diff --git a/datasets/猫狗/val/labels/cat.2061.txt b/datasets/猫狗/val/labels/cat.2061.txt new file mode 100644 index 0000000..8adc5af --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2061.txt @@ -0,0 +1 @@ +0 0.539078 0.408000 0.392786 0.810667 diff --git a/datasets/猫狗/val/labels/cat.2062.txt b/datasets/猫狗/val/labels/cat.2062.txt new file mode 100644 index 0000000..f964859 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2062.txt @@ -0,0 +1 @@ +0 0.548096 0.501333 0.903808 0.997333 diff --git a/datasets/猫狗/val/labels/cat.2063.txt b/datasets/猫狗/val/labels/cat.2063.txt new file mode 100644 index 0000000..d761137 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2063.txt @@ -0,0 +1 @@ +0 0.485972 0.477327 0.747495 0.763723 diff --git a/datasets/猫狗/val/labels/cat.2064.txt b/datasets/猫狗/val/labels/cat.2064.txt new file mode 100644 index 0000000..8191b7d --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2064.txt @@ -0,0 +1 @@ +0 0.566132 0.440000 0.867735 0.656000 diff --git a/datasets/猫狗/val/labels/cat.2065.txt b/datasets/猫狗/val/labels/cat.2065.txt new file mode 100644 index 0000000..04fe715 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2065.txt @@ -0,0 +1 @@ +0 0.584527 0.602662 0.446991 0.741445 diff --git a/datasets/猫狗/val/labels/cat.2066.txt b/datasets/猫狗/val/labels/cat.2066.txt new file mode 100644 index 0000000..397e828 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2066.txt @@ -0,0 +1 @@ +0 0.489631 0.492986 0.928571 0.981964 diff --git a/datasets/猫狗/val/labels/cat.2067.txt b/datasets/猫狗/val/labels/cat.2067.txt new file mode 100644 index 0000000..6c9519e --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2067.txt @@ -0,0 +1 @@ +0 0.500000 0.557910 0.943775 0.810734 diff --git a/datasets/猫狗/val/labels/cat.2068.txt b/datasets/猫狗/val/labels/cat.2068.txt new file mode 100644 index 0000000..f27bc12 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2068.txt @@ -0,0 +1 @@ +0 0.482979 0.507937 0.821277 0.984127 diff --git a/datasets/猫狗/val/labels/cat.2069.txt b/datasets/猫狗/val/labels/cat.2069.txt new file mode 100644 index 0000000..2af98c1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2069.txt @@ -0,0 +1 @@ +0 0.484000 0.509434 0.920000 0.924528 diff --git a/datasets/猫狗/val/labels/cat.2070.txt b/datasets/猫狗/val/labels/cat.2070.txt new file mode 100644 index 0000000..43f5ee1 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2070.txt @@ -0,0 +1 @@ +0 0.601202 0.448000 0.797595 0.890667 diff --git a/datasets/猫狗/val/labels/cat.2071.txt b/datasets/猫狗/val/labels/cat.2071.txt new file mode 100644 index 0000000..e030295 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2071.txt @@ -0,0 +1 @@ +0 0.500000 0.502155 0.992000 0.995690 diff --git a/datasets/猫狗/val/labels/cat.2072.txt b/datasets/猫狗/val/labels/cat.2072.txt new file mode 100644 index 0000000..4c4ef14 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2072.txt @@ -0,0 +1 @@ +0 0.628399 0.522000 0.743202 0.956000 diff --git a/datasets/猫狗/val/labels/cat.2073.txt b/datasets/猫狗/val/labels/cat.2073.txt new file mode 100644 index 0000000..f9856af --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2073.txt @@ -0,0 +1 @@ +0 0.480000 0.514706 0.936000 0.970588 diff --git a/datasets/猫狗/val/labels/cat.2074.txt b/datasets/猫狗/val/labels/cat.2074.txt new file mode 100644 index 0000000..1775a67 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2074.txt @@ -0,0 +1 @@ +0 0.515403 0.502000 0.969194 0.996000 diff --git a/datasets/猫狗/val/labels/cat.2075.txt b/datasets/猫狗/val/labels/cat.2075.txt new file mode 100644 index 0000000..f5d9c99 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2075.txt @@ -0,0 +1 @@ +0 0.551102 0.477333 0.376754 0.741333 diff --git a/datasets/猫狗/val/labels/cat.2076.txt b/datasets/猫狗/val/labels/cat.2076.txt new file mode 100644 index 0000000..7e6ed0c --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2076.txt @@ -0,0 +1 @@ +0 0.512945 0.503690 0.974110 0.992620 diff --git a/datasets/猫狗/val/labels/cat.2077.txt b/datasets/猫狗/val/labels/cat.2077.txt new file mode 100644 index 0000000..856a2bb --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2077.txt @@ -0,0 +1 @@ +0 0.528056 0.534921 0.943888 0.593651 diff --git a/datasets/猫狗/val/labels/cat.2078.txt b/datasets/猫狗/val/labels/cat.2078.txt new file mode 100644 index 0000000..ca3195c --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2078.txt @@ -0,0 +1 @@ +0 0.547094 0.504000 0.905812 0.992000 diff --git a/datasets/猫狗/val/labels/cat.2079.txt b/datasets/猫狗/val/labels/cat.2079.txt new file mode 100644 index 0000000..95126fa --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2079.txt @@ -0,0 +1 @@ +0 0.533333 0.487593 0.720988 0.732010 diff --git a/datasets/猫狗/val/labels/cat.2080.txt b/datasets/猫狗/val/labels/cat.2080.txt new file mode 100644 index 0000000..9128cd4 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2080.txt @@ -0,0 +1 @@ +0 0.575532 0.529000 0.751064 0.922000 diff --git a/datasets/猫狗/val/labels/cat.2081.txt b/datasets/猫狗/val/labels/cat.2081.txt new file mode 100644 index 0000000..52fb4e0 --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2081.txt @@ -0,0 +1 @@ +0 0.514583 0.487448 0.945833 0.774059 diff --git a/datasets/猫狗/val/labels/cat.2082.txt b/datasets/猫狗/val/labels/cat.2082.txt new file mode 100644 index 0000000..f28faab --- /dev/null +++ b/datasets/猫狗/val/labels/cat.2082.txt @@ -0,0 +1 @@ +0 0.462382 0.502083 0.485893 0.995833 diff --git a/datasets/猫狗/val/labels/classes.txt b/datasets/猫狗/val/labels/classes.txt new file mode 100644 index 0000000..2bb1f2c --- /dev/null +++ b/datasets/猫狗/val/labels/classes.txt @@ -0,0 +1 @@ +dashboard diff --git a/datasets/猫狗/val/labels/dog.2000.txt b/datasets/猫狗/val/labels/dog.2000.txt new file mode 100644 index 0000000..b181936 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2000.txt @@ -0,0 +1 @@ +1 0.572500 0.547198 0.675000 0.905605 diff --git a/datasets/猫狗/val/labels/dog.2001.txt b/datasets/猫狗/val/labels/dog.2001.txt new file mode 100644 index 0000000..743d1b6 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2001.txt @@ -0,0 +1 @@ +1 0.497674 0.491228 0.911628 0.947368 diff --git a/datasets/猫狗/val/labels/dog.2002.txt b/datasets/猫狗/val/labels/dog.2002.txt new file mode 100644 index 0000000..cc60df6 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2002.txt @@ -0,0 +1 @@ +1 0.432181 0.513000 0.417553 0.802000 diff --git a/datasets/猫狗/val/labels/dog.2003.txt b/datasets/猫狗/val/labels/dog.2003.txt new file mode 100644 index 0000000..ff339e6 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2003.txt @@ -0,0 +1 @@ +1 0.686000 0.594937 0.476000 0.810127 diff --git a/datasets/猫狗/val/labels/dog.2004.txt b/datasets/猫狗/val/labels/dog.2004.txt new file mode 100644 index 0000000..8356322 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2004.txt @@ -0,0 +1 @@ +1 0.641000 0.554813 0.718000 0.890374 diff --git a/datasets/猫狗/val/labels/dog.2005.txt b/datasets/猫狗/val/labels/dog.2005.txt new file mode 100644 index 0000000..c658e1f --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2005.txt @@ -0,0 +1 @@ +1 0.549098 0.546667 0.585170 0.906667 diff --git a/datasets/猫狗/val/labels/dog.2006.txt b/datasets/猫狗/val/labels/dog.2006.txt new file mode 100644 index 0000000..2a00b43 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2006.txt @@ -0,0 +1 @@ +1 0.542017 0.441860 0.675070 0.473573 diff --git a/datasets/猫狗/val/labels/dog.2007.txt b/datasets/猫狗/val/labels/dog.2007.txt new file mode 100644 index 0000000..d589135 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2007.txt @@ -0,0 +1 @@ +1 0.506006 0.537000 0.987988 0.926000 diff --git a/datasets/猫狗/val/labels/dog.2008.txt b/datasets/猫狗/val/labels/dog.2008.txt new file mode 100644 index 0000000..40e993d --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2008.txt @@ -0,0 +1 @@ +1 0.401000 0.551378 0.678000 0.756892 diff --git a/datasets/猫狗/val/labels/dog.2009.txt b/datasets/猫狗/val/labels/dog.2009.txt new file mode 100644 index 0000000..aa531e8 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2009.txt @@ -0,0 +1 @@ +1 0.444444 0.507576 0.876543 0.984848 diff --git a/datasets/猫狗/val/labels/dog.2010.txt b/datasets/猫狗/val/labels/dog.2010.txt new file mode 100644 index 0000000..8c85638 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2010.txt @@ -0,0 +1 @@ +1 0.607023 0.540000 0.785953 0.920000 diff --git a/datasets/猫狗/val/labels/dog.2011.txt b/datasets/猫狗/val/labels/dog.2011.txt new file mode 100644 index 0000000..23b00c4 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2011.txt @@ -0,0 +1 @@ +1 0.497908 0.492000 0.903766 0.960000 diff --git a/datasets/猫狗/val/labels/dog.2012.txt b/datasets/猫狗/val/labels/dog.2012.txt new file mode 100644 index 0000000..e09ce4b --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2012.txt @@ -0,0 +1 @@ +1 0.506270 0.503348 0.724138 0.993304 diff --git a/datasets/猫狗/val/labels/dog.2013.txt b/datasets/猫狗/val/labels/dog.2013.txt new file mode 100644 index 0000000..d904423 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2013.txt @@ -0,0 +1 @@ +1 0.504098 0.511000 0.934426 0.978000 diff --git a/datasets/猫狗/val/labels/dog.2014.txt b/datasets/猫狗/val/labels/dog.2014.txt new file mode 100644 index 0000000..6ada2af --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2014.txt @@ -0,0 +1 @@ +1 0.426471 0.507000 0.847594 0.986000 diff --git a/datasets/猫狗/val/labels/dog.2015.txt b/datasets/猫狗/val/labels/dog.2015.txt new file mode 100644 index 0000000..c142039 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2015.txt @@ -0,0 +1 @@ +1 0.466819 0.508000 0.718535 0.924000 diff --git a/datasets/猫狗/val/labels/dog.2016.txt b/datasets/猫狗/val/labels/dog.2016.txt new file mode 100644 index 0000000..16bf8a0 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2016.txt @@ -0,0 +1 @@ +1 0.579295 0.503138 0.753304 0.993724 diff --git a/datasets/猫狗/val/labels/dog.2017.txt b/datasets/猫狗/val/labels/dog.2017.txt new file mode 100644 index 0000000..275214b --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2017.txt @@ -0,0 +1,3 @@ +1 0.203750 0.330189 0.402500 0.652830 +1 0.620000 0.720755 0.210000 0.452830 +1 0.753750 0.562264 0.332500 0.445283 diff --git a/datasets/猫狗/val/labels/dog.2018.txt b/datasets/猫狗/val/labels/dog.2018.txt new file mode 100644 index 0000000..e30c55e --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2018.txt @@ -0,0 +1 @@ +1 0.530726 0.488889 0.938547 0.488889 diff --git a/datasets/猫狗/val/labels/dog.2019.txt b/datasets/猫狗/val/labels/dog.2019.txt new file mode 100644 index 0000000..5d386ff --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2019.txt @@ -0,0 +1 @@ +1 0.501429 0.528912 0.900000 0.894558 diff --git a/datasets/猫狗/val/labels/dog.2020.txt b/datasets/猫狗/val/labels/dog.2020.txt new file mode 100644 index 0000000..07fbd08 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2020.txt @@ -0,0 +1 @@ +1 0.521307 0.485000 0.866477 0.938000 diff --git a/datasets/猫狗/val/labels/dog.2021.txt b/datasets/猫狗/val/labels/dog.2021.txt new file mode 100644 index 0000000..59b6114 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2021.txt @@ -0,0 +1,2 @@ +1 0.199164 0.201299 0.325905 0.393939 +1 0.538997 0.586580 0.922006 0.826840 diff --git a/datasets/猫狗/val/labels/dog.2022.txt b/datasets/猫狗/val/labels/dog.2022.txt new file mode 100644 index 0000000..1f293eb --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2022.txt @@ -0,0 +1 @@ +1 0.523013 0.550100 0.811715 0.899800 diff --git a/datasets/猫狗/val/labels/dog.2023.txt b/datasets/猫狗/val/labels/dog.2023.txt new file mode 100644 index 0000000..2b9cb06 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2023.txt @@ -0,0 +1 @@ +1 0.534000 0.500000 0.916000 0.705882 diff --git a/datasets/猫狗/val/labels/dog.2024.txt b/datasets/猫狗/val/labels/dog.2024.txt new file mode 100644 index 0000000..f18edcc --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2024.txt @@ -0,0 +1 @@ +1 0.576562 0.573222 0.634375 0.853556 diff --git a/datasets/猫狗/val/labels/dog.2025.txt b/datasets/猫狗/val/labels/dog.2025.txt new file mode 100644 index 0000000..a1c36ce --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2025.txt @@ -0,0 +1 @@ +1 0.506944 0.487685 0.937500 0.866995 diff --git a/datasets/猫狗/val/labels/dog.2026.txt b/datasets/猫狗/val/labels/dog.2026.txt new file mode 100644 index 0000000..0b78026 --- /dev/null +++ b/datasets/猫狗/val/labels/dog.2026.txt @@ -0,0 +1 @@ +1 0.471111 0.510020 0.911111 0.947896 diff --git a/datasets/车/data.yaml b/datasets/车/data.yaml new file mode 100644 index 0000000..6ab9038 --- /dev/null +++ b/datasets/车/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\车\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\车\val +nc: 2 +names: ['Riped', 'UnRiped'] \ No newline at end of file diff --git a/datasets/车/train/classes.txt b/datasets/车/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/车/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/车/train/labels.cache b/datasets/车/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/车/train/labels.cache differ diff --git a/datasets/车/val/labels.cache b/datasets/车/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/车/val/labels.cache differ diff --git a/datasets/轮胎/data.yaml b/datasets/轮胎/data.yaml new file mode 100644 index 0000000..e9653c9 --- /dev/null +++ b/datasets/轮胎/data.yaml @@ -0,0 +1,4 @@ +train: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\轮胎\train +val: F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\轮胎\val +nc: 2 +names: ['Tire', 'NoTire'] \ No newline at end of file diff --git a/datasets/轮胎/train/classes.txt b/datasets/轮胎/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/轮胎/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/轮胎/train/labels.cache b/datasets/轮胎/train/labels.cache new file mode 100644 index 0000000..4160e83 Binary files /dev/null and b/datasets/轮胎/train/labels.cache differ diff --git a/datasets/轮胎/val/labels.cache b/datasets/轮胎/val/labels.cache new file mode 100644 index 0000000..189b902 Binary files /dev/null and b/datasets/轮胎/val/labels.cache differ diff --git a/datasets/马甲/data.yaml b/datasets/马甲/data.yaml new file mode 100644 index 0000000..29ee01e --- /dev/null +++ b/datasets/马甲/data.yaml @@ -0,0 +1,4 @@ +train: train/images +val: val/images +nc: 2 +names: ['Vest', 'NoVest'] \ No newline at end of file diff --git a/datasets/马甲/train/classes.txt b/datasets/马甲/train/classes.txt new file mode 100644 index 0000000..e02da8a --- /dev/null +++ b/datasets/马甲/train/classes.txt @@ -0,0 +1,2 @@ +Riped +UnRiped \ No newline at end of file diff --git a/datasets/马甲/train/labels.cache b/datasets/马甲/train/labels.cache new file mode 100644 index 0000000..e69de29 diff --git a/datasets/马甲/val/labels.cache b/datasets/马甲/val/labels.cache new file mode 100644 index 0000000..e69de29 diff --git a/detect_tools.py b/detect_tools.py new file mode 100644 index 0000000..23dfefb --- /dev/null +++ b/detect_tools.py @@ -0,0 +1,222 @@ +# encoding:utf-8 +import cv2 +from PyQt5.QtGui import QPixmap, QImage +import numpy as np +from PIL import Image,ImageDraw,ImageFont +import csv +import os + +# fontC = ImageFont.truetype("Font/platech.ttf", 20, 0) + +# 绘图展示 +def cv_show(name,img): + cv2.imshow(name, img) + cv2.waitKey(0) + cv2.destroyAllWindows() + + +def drawRectBox(image, rect, addText, fontC, color): + """ + 绘制矩形框与结果 + :param image: 原始图像 + :param rect: 矩形框坐标, int类型 + :param addText: 类别名称 + :param fontC: 字体 + :return: + """ + # 绘制位置方框 + cv2.rectangle(image, (rect[0], rect[1]), + (rect[2], rect[3]), + color, 2) + + # 绘制字体背景框 + cv2.rectangle(image, (rect[0] - 1, rect[1] - 25), (rect[0] + 60, rect[1]), color, -1, cv2.LINE_AA) + # 图片 添加的文字 位置 字体 字体大小 字体颜色 字体粗细 + # cv2.putText(image, addText, (int(rect[0])+2, int(rect[1])-3), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255), 2) + + img = Image.fromarray(image) + draw = ImageDraw.Draw(img) + draw.text((rect[0]+2, rect[1]-27), addText, (255, 255, 255), font=fontC) + imagex = np.array(img) + return imagex + + +def img_cvread(path): + # 读取含中文名的图片文件 + # img = cv2.imread(path) + img = cv2.imdecode(np.fromfile(path, dtype=np.uint8), cv2.IMREAD_COLOR) + return img + + +def draw_boxes(img, boxes): + for each in boxes: + x1 = each[0] + y1 = each[1] + x2 = each[2] + y2 = each[3] + cv2.rectangle(img, (x1, y1), (x2, y2), (0, 255, 0), 2) + return img + + + +def cvimg_to_qpiximg(cvimg): + height, width, depth = cvimg.shape + cvimg = cv2.cvtColor(cvimg, cv2.COLOR_BGR2RGB) + qimg = QImage(cvimg.data, width, height, width * depth, QImage.Format_RGB888) + qpix_img = QPixmap(qimg) + return qpix_img + + +def save_video(): + # VideoCapture方法是cv2库提供的读取视频方法 + cap = cv2.VideoCapture('C:\\Users\\xxx\\Desktop\\sweet.mp4') + # 设置需要保存视频的格式“xvid” + # 该参数是MPEG-4编码类型,文件名后缀为.avi + fourcc = cv2.VideoWriter_fourcc(*'XVID') + # 设置视频帧频 + fps = cap.get(cv2.CAP_PROP_FPS) + # 设置视频大小 + size = (int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)), int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))) + # VideoWriter方法是cv2库提供的保存视频方法 + # 按照设置的格式来out输出 + out = cv2.VideoWriter('C:\\Users\\xxx\\Desktop\\out.avi', fourcc, fps, size) + + # 确定视频打开并循环读取 + while (cap.isOpened()): + # 逐帧读取,ret返回布尔值 + # 参数ret为True 或者False,代表有没有读取到图片 + # frame表示截取到一帧的图片 + ret, frame = cap.read() + if ret == True: + # 垂直翻转矩阵 + frame = cv2.flip(frame, 0) + + out.write(frame) + + cv2.imshow('frame', frame) + if cv2.waitKey(1) & 0xFF == ord('q'): + break + else: + break + + # 释放资源 + cap.release() + out.release() + # 关闭窗口 + cv2.destroyAllWindows() + + +# 封装函数:图片上显示中文 +def cv2AddChineseText(img, text, position, textColor=(0, 255, 0), textSize=50): + if (isinstance(img, np.ndarray)): # 判断是否OpenCV图片类型 + img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) + # 创建一个可以在给定图像上绘图的对象 + draw = ImageDraw.Draw(img) + # 字体的格式 + fontStyle = ImageFont.truetype( + "simsun.ttc", textSize, encoding="utf-8") + # 绘制文本 + draw.text(position, text, textColor, font=fontStyle) + # 转换回OpenCV格式 + return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR) + + +def insert_rows(path, lines ,header): + """ + 将n行数据写入csv文件 + :param path: + :param lines: + :return: + """ + no_header = False + if not os.path.exists(path): + no_header = True + start_num = 1 + else: + start_num = len(open(path).readlines()) + + csv_head = header + with open(path, 'a', newline='') as f: + csv_write = csv.writer(f) + if no_header: + csv_write.writerow(csv_head) # 写入表头 + + for each_list in lines: + # 添加序号 + each_list = [start_num] + each_list + csv_write.writerow(each_list) + # 序号 + 1 + start_num += 1 + +class Colors: + # 用于绘制不同颜色 + def __init__(self): + """Initialize colors as hex = matplotlib.colors.TABLEAU_COLORS.values().""" + hexs = ('FF3838', 'FF9D97', 'FF701F', 'FFB21D', 'CFD231', '48F90A', '92CC17', '3DDB86', '1A9334', '00D4BB', + '2C99A8', '00C2FF', '344593', '6473FF', '0018EC', '8438FF', '520085', 'CB38FF', 'FF95C8', 'FF37C7') + self.palette = [self.hex2rgb(f'#{c}') for c in hexs] + self.n = len(self.palette) + self.pose_palette = np.array([[255, 128, 0], [255, 153, 51], [255, 178, 102], [230, 230, 0], [255, 153, 255], + [153, 204, 255], [255, 102, 255], [255, 51, 255], [102, 178, 255], [51, 153, 255], + [255, 153, 153], [255, 102, 102], [255, 51, 51], [153, 255, 153], [102, 255, 102], + [51, 255, 51], [0, 255, 0], [0, 0, 255], [255, 0, 0], [255, 255, 255]], + dtype=np.uint8) + + def __call__(self, i, bgr=False): + """Converts hex color codes to rgb values.""" + c = self.palette[int(i) % self.n] + return (c[2], c[1], c[0]) if bgr else c + + @staticmethod + def hex2rgb(h): # rgb order (PIL) + return tuple(int(h[1 + i:1 + i + 2], 16) for i in (0, 2, 4)) + + +def yolo_to_location(w,h,yolo_data): + # yolo文件转两点坐标,注意画图坐标要转换成int格式 + x_, y_, w_, h_ = yolo_data + x1 = int(w * x_ - 0.5 * w * w_) + x2 = int(w * x_ + 0.5 * w * w_) + y1 = int(h * y_ - 0.5 * h * h_) + y2 = int(h * y_ + 0.5 * h * h_) + # cv2.rectangle(img, (int(x1), int(y1)), (int(x2), int(y2)), (255, 0, 0)) + return [x1,y1,x2,y2] + +def location_to_yolo(w, h, locations): + # x1,y1左上角坐标,x2,y2右上角坐标 + x1, y1, x2, y2 = locations + x_ = (x1 + x2) / 2 / w + x_ = float('%.5f' % x_) + y_ = (y1 + y2) / 2 / h + y_ = float('%.5f' % y_) + w_ = (x2 - x1) / w + w_ = float('%.5f' % w_) + h_ = (y2 - y1) / h + h_ = float('%.5f' % h_) + return [x_,y_,w_,h_] + +def draw_yolo_data(img_path, yolo_file_path): + # 读取yolo标注数据并显示 + img = cv2.imread(img_path) + h, w, _ = img.shape + print(img.shape) + # yolo标注数据文件名为786_rgb_0616.txt + with open(yolo_file_path, 'r') as f: + data = f.readlines() + for each in data: + temp = each.split() + # ['1', '0.43906', '0.52083', '0.34687', '0.15'] + # YOLO转换为两点坐标x1, x2, y1, y2 + x_, y_, w_, h_ = eval(temp[1]), eval(temp[2]), eval(temp[3]), eval(temp[4]) + x1, y1, x2, y2 = yolo_to_location(w,h,[x_, y_, w_, h_]) + # 画图验证框是否正确 + cv2.rectangle(img, (x1, y1), (x2, y2), (0, 0, 255)) + + cv2.imshow('windows', img) + cv2.waitKey(0) + +if __name__ == '__main__': + img_path = 'TestFiles/1.jpg' + yolo_file_path = 'save_data/yolo_labels/1.txt' + draw_yolo_data(img_path, yolo_file_path) + diff --git a/imgTest.py b/imgTest.py new file mode 100644 index 0000000..f1619e8 --- /dev/null +++ b/imgTest.py @@ -0,0 +1,22 @@ +#coding:utf-8 +from ultralytics import YOLO +import cv2 + +# 所需加载的模型目录 +path = 'models/best.pt' +# 需要检测的图片地址 +img_path = "TestFiles/Riped tomato_8.jpeg" + +# 加载预训练模型 +# conf 0.25 object confidence threshold for detection +# iou 0.7 intersection over union (IoU) threshold for NMS +model = YOLO(path, task='detect') +# model = YOLO(path, task='detect',conf=0.5) + + +# 检测图片 +results = model(img_path) +res = results[0].plot() +# res = cv2.resize(res,dsize=None,fx=2,fy=2,interpolation=cv2.INTER_LINEAR) +cv2.imshow("YOLOv8 Detection", res) +cv2.waitKey(0) \ No newline at end of file diff --git a/installPackages.py b/installPackages.py new file mode 100644 index 0000000..4e2cd30 --- /dev/null +++ b/installPackages.py @@ -0,0 +1,7 @@ +import os + +pkgs = ['ultralytics','PyQt5==5.15.2','pyqt5-tools==5.15.2.3.1'] + +for each in pkgs: + cmd_line = f"pip3 install {each} -i https://pypi.tuna.tsinghua.edu.cn/simple" + os.system(cmd_line) diff --git a/models/best.pt b/models/best.pt new file mode 100644 index 0000000..4364df2 Binary files /dev/null and b/models/best.pt differ diff --git a/paramaterreturn.md b/paramaterreturn.md new file mode 100644 index 0000000..e77fb84 --- /dev/null +++ b/paramaterreturn.md @@ -0,0 +1,47 @@ +# YOLOv8 训练参数说明 + +## 基础参数 +- `data`: 数据集配置文件路径 (datasets/TomatoData/data.yaml) +- `epochs`: 训练轮数 (250) +- `batch`: 每批处理图像数量 (4) +- `imgsz`: 输入图像尺寸 (640x640) + +## 优化器参数 +- `optimizer`: 自动选择优化器 (AdamW) +- `lr0`: 初始学习率 (0.001667) +- `momentum`: 动量参数 (0.9) +- `weight_decay`: 权重衰减 (0.0005) + +## 数据增强 +- `hsv_h`: 色调增强 (0.015) +- `hsv_s`: 饱和度增强 (0.7) +- `hsv_v`: 亮度增强 (0.4) +- `fliplr`: 水平翻转概率 (0.5) + +## 模型配置 +- `model`: 预训练模型 (yolov8n.pt) +- `nc`: 类别数量 (2) +- `names`: 类别名称 ['Riped', 'UnRiped'] + +## 训练监控 +- `plots`: 生成训练图表 (True) +- `save_dir`: 保存目录 (runs/detect/train2) +- `save_period`: 保存间隔 (-1表示不保存中间模型) + +## 训练输出说明 +- `box_loss`: 边界框回归损失 (当前值: 0.9678) +- `cls_loss`: 分类损失 (当前值: 2.327) +- `dfl_loss`: 分布焦点损失 (当前值: 1.231) +- `mAP50`: IoU阈值为0.5时的平均精度 (0.275) +- `mAP50-95`: IoU阈值从0.5到0.95的平均精度 (0.21) + +## 常见错误说明 +1. **数据集路径错误**: + - 错误信息: "Dataset 'datasets/TomatoData/data.yaml' images not found" + - 原因: 数据集中图片路径配置不正确 + - 解决方案: 检查data.yaml文件中的路径配置 + +2. **训练初期指标**: + - Epoch 1/250 已完成 + - 当前训练速度: 0.4it/s + - 预计剩余时间: 约2小时3分钟 \ No newline at end of file diff --git a/remove_voc_xml.py b/remove_voc_xml.py new file mode 100644 index 0000000..cd1a23f --- /dev/null +++ b/remove_voc_xml.py @@ -0,0 +1,18 @@ +import os + +def remove_voc_xml_files(directory): + """删除指定目录下的所有VOC格式XML文件""" + for filename in os.listdir(directory): + if filename.endswith('.xml'): + file_path = os.path.join(directory, filename) + try: + os.remove(file_path) + print(f"已删除: {file_path}") + except Exception as e: + print(f"删除失败 {file_path}: {e}") + +if __name__ == "__main__": + labels_dir = r'F:\myprojects\啾啾救援识别系统\JJCarDetection\datasets\猫狗\train\labels' + print(f"开始删除 {labels_dir} 下的XML文件...") + remove_voc_xml_files(labels_dir) + print("XML文件清理完成") \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f0843fb --- /dev/null +++ b/requirements.txt @@ -0,0 +1,31 @@ +certifi==2023.7.22 +charset-normalizer==3.3.0 +colorama==0.4.6 +contourpy==1.1.1 +cycler==0.12.1 +fonttools==4.43.1 +idna==3.4 +importlib-resources==6.1.0 +kiwisolver==1.4.5 +matplotlib==3.7.5 +numpy==1.24.3 +opencv-python==4.8.1.78 +packaging==23.2 +psutil==5.9.6 +py-cpuinfo==9.0.0 +pyparsing==3.1.1 +python-dateutil==2.8.2 +pyyaml==6.0.1 +requests==2.31.0 +scipy==1.10.1 +seaborn==0.13.0 +six==1.16.0 +thop==0.1.1-2209072238 +torch==2.4.1 +tqdm==4.66.1 +typing-extensions==4.8.0 +ultralytics==8.0.199 +urllib3==2.0.6 +zipp==3.17.0 +PyQt5 +pyqt5-tools diff --git a/requirements_fixed.txt b/requirements_fixed.txt new file mode 100644 index 0000000..63ac6c3 --- /dev/null +++ b/requirements_fixed.txt @@ -0,0 +1,31 @@ +certifi +charset-normalizer +colorama +contourpy +cycler +fonttools +idna +importlib-resources +kiwisolver +matplotlib +numpy +opencv-python +packaging +psutil +py-cpuinfo +pyparsing +python-dateutil +pyyaml +requests +scipy +seaborn +six +thop +torch>=1.9.0 +tqdm +typing-extensions +ultralytics>=8.0.0 +urllib3 +zipp +PyQt5 +pyqt5-tools \ No newline at end of file diff --git a/runs/.DS_Store b/runs/.DS_Store new file mode 100644 index 0000000..a51fcf1 Binary files /dev/null and b/runs/.DS_Store differ diff --git a/runs/detect/train/args.yaml b/runs/detect/train/args.yaml new file mode 100644 index 0000000..09e6f43 --- /dev/null +++ b/runs/detect/train/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolo11n.pt +data: datasets/猫狗/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 4 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train diff --git a/runs/detect/train2/args.yaml b/runs/detect/train2/args.yaml new file mode 100644 index 0000000..1323ab1 --- /dev/null +++ b/runs/detect/train2/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolo11n.pt +data: datasets/猫狗/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 4 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train2 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train2 diff --git a/runs/detect/train3/args.yaml b/runs/detect/train3/args.yaml new file mode 100644 index 0000000..88ed7bc --- /dev/null +++ b/runs/detect/train3/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolo11n.pt +data: datasets/猫狗/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 4 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train3 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train3 diff --git a/runs/detect/train3/labels.jpg b/runs/detect/train3/labels.jpg new file mode 100644 index 0000000..be3ab97 --- /dev/null +++ b/runs/detect/train3/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dacd37d9fb9767c7e30d4b3fb2f7b4a94e302009788bab1cc38f7535a9ede89 +size 152862 diff --git a/runs/detect/train3/results.csv b/runs/detect/train3/results.csv new file mode 100644 index 0000000..6f69423 --- /dev/null +++ b/runs/detect/train3/results.csv @@ -0,0 +1,8 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,15.9823,0.99824,3.0129,1.53828,0,0,0,0,0,53.719,0,0.00015003,0.00015003,0.00015003 +2,30.374,0.81844,2.91205,1.49357,0,0,0,0,0,53.6391,0,0.000301052,0.000301052,0.000301052 +3,44.4023,0.87034,2.74999,1.39879,0,0,0,0,0,53.6187,0,0.00043557,0.00043557,0.00043557 +4,58.6753,0.80189,2.67673,1.36876,0,0,0,0,0,53.6384,0,0.000553586,0.000553586,0.000553586 +5,72.794,0.79328,2.61052,1.39998,0,0,0,0,0,53.6455,0,0.000655098,0.000655098,0.000655098 +6,87.0695,0.92782,2.66155,1.57368,0,0,0,0,0,53.3479,0,0.000740106,0.000740106,0.000740106 +7,101.31,0.84564,2.48749,1.47057,0,0,0,0,0,53.3479,0,0.000808612,0.000808612,0.000808612 diff --git a/runs/detect/train3/train_batch0.jpg b/runs/detect/train3/train_batch0.jpg new file mode 100644 index 0000000..142a031 --- /dev/null +++ b/runs/detect/train3/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be024bef9a51b585bd640c6948fd0a24738dc71d4dd910f8129f744dc2039a6a +size 215036 diff --git a/runs/detect/train3/train_batch1.jpg b/runs/detect/train3/train_batch1.jpg new file mode 100644 index 0000000..80a71d0 --- /dev/null +++ b/runs/detect/train3/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3144beb51aa170e96d62b106ff58f6b098882f196c4428095e37ac5c32d70b46 +size 199854 diff --git a/runs/detect/train3/train_batch2.jpg b/runs/detect/train3/train_batch2.jpg new file mode 100644 index 0000000..5f125f0 --- /dev/null +++ b/runs/detect/train3/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b09b0ed69fae1168bb9b47e4a8c5640e493b4a04df3f59fc728d7b0217e0bf +size 205178 diff --git a/runs/detect/train3/weights/best.pt b/runs/detect/train3/weights/best.pt new file mode 100644 index 0000000..12e253c Binary files /dev/null and b/runs/detect/train3/weights/best.pt differ diff --git a/runs/detect/train3/weights/last.pt b/runs/detect/train3/weights/last.pt new file mode 100644 index 0000000..12e253c Binary files /dev/null and b/runs/detect/train3/weights/last.pt differ diff --git a/runs/detect/train4/args.yaml b/runs/detect/train4/args.yaml new file mode 100644 index 0000000..aded925 --- /dev/null +++ b/runs/detect/train4/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/猫狗/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train4 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train4 diff --git a/runs/detect/train4/labels.jpg b/runs/detect/train4/labels.jpg new file mode 100644 index 0000000..f90c47c --- /dev/null +++ b/runs/detect/train4/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a93b9336280cd598363e2003177fb28477e7509a1ea8f0400fe3073393f7738 +size 151887 diff --git a/runs/detect/train4/results.csv b/runs/detect/train4/results.csv new file mode 100644 index 0000000..17c46a1 --- /dev/null +++ b/runs/detect/train4/results.csv @@ -0,0 +1,6 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,16.7076,1.08133,2.92338,1.60264,0,0,0,0,0,109.821,0,6.668e-05,6.668e-05,6.668e-05 +2,33.0803,0.84061,2.7573,1.36956,0,0,0,0,0,109.138,0,0.000148545,0.000148545,0.000148545 +3,49.9185,0.77171,2.47246,1.343,0,0,0,0,0,108.325,0,0.000228759,0.000228759,0.000228759 +4,66.6582,0.85749,2.24697,1.42123,0,0,0,0,0,106.052,0,0.000307323,0.000307323,0.000307323 +5,83.2526,0.81324,1.98899,1.38761,0,0,0,0,0,102.815,0,0.000384237,0.000384237,0.000384237 diff --git a/runs/detect/train4/train_batch0.jpg b/runs/detect/train4/train_batch0.jpg new file mode 100644 index 0000000..eb760e7 --- /dev/null +++ b/runs/detect/train4/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7145bd1071482ec65da97064c1ebc1013aed0b4a06c67c23e469368d12cf2e +size 431482 diff --git a/runs/detect/train4/train_batch1.jpg b/runs/detect/train4/train_batch1.jpg new file mode 100644 index 0000000..68268ff --- /dev/null +++ b/runs/detect/train4/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1ec64acbbe5eba5f9903160559833af6587d15846f89f07b5b3b87f051d74 +size 427237 diff --git a/runs/detect/train4/train_batch2.jpg b/runs/detect/train4/train_batch2.jpg new file mode 100644 index 0000000..15ff03c --- /dev/null +++ b/runs/detect/train4/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c7f2c47831a7aa9d845b06c13afbe82e2412da3e86d4eb7c892a5c44c5ba85 +size 394898 diff --git a/runs/detect/train4/weights/best.pt b/runs/detect/train4/weights/best.pt new file mode 100644 index 0000000..5378dbc Binary files /dev/null and b/runs/detect/train4/weights/best.pt differ diff --git a/runs/detect/train4/weights/last.pt b/runs/detect/train4/weights/last.pt new file mode 100644 index 0000000..5378dbc Binary files /dev/null and b/runs/detect/train4/weights/last.pt differ diff --git a/runs/detect/train5/BoxF1_curve.png b/runs/detect/train5/BoxF1_curve.png new file mode 100644 index 0000000..96de30d --- /dev/null +++ b/runs/detect/train5/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e2b0649dcf0be28646744b3c54370ab427da2d644b00b2308fb3bdcfe13283 +size 132991 diff --git a/runs/detect/train5/BoxPR_curve.png b/runs/detect/train5/BoxPR_curve.png new file mode 100644 index 0000000..cbdcccc --- /dev/null +++ b/runs/detect/train5/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5746a1fda02a8afdc906be943d50f5f8cbfea1c8d85531d5aad374c15dd63b +size 101080 diff --git a/runs/detect/train5/BoxP_curve.png b/runs/detect/train5/BoxP_curve.png new file mode 100644 index 0000000..8a1f9ba --- /dev/null +++ b/runs/detect/train5/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dc0b5197d2d73dfeedbbc699db6a6a02e9508cebba16162a18acaa652caa2c +size 144246 diff --git a/runs/detect/train5/BoxR_curve.png b/runs/detect/train5/BoxR_curve.png new file mode 100644 index 0000000..b337c2b --- /dev/null +++ b/runs/detect/train5/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9268c0e5d38ff5a03701ffe698ae1fd451ef76b02583507cd6850736896a4a28 +size 128650 diff --git a/runs/detect/train5/args.yaml b/runs/detect/train5/args.yaml new file mode 100644 index 0000000..856fb94 --- /dev/null +++ b/runs/detect/train5/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/猫狗/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train5 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train5 diff --git a/runs/detect/train5/confusion_matrix.png b/runs/detect/train5/confusion_matrix.png new file mode 100644 index 0000000..f02a6e6 --- /dev/null +++ b/runs/detect/train5/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95c39399341e725653edf587b5307c68e489d917df4860151cfc93d1b3e62f8 +size 92796 diff --git a/runs/detect/train5/confusion_matrix_normalized.png b/runs/detect/train5/confusion_matrix_normalized.png new file mode 100644 index 0000000..471b0ca --- /dev/null +++ b/runs/detect/train5/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef29d87f83302de58cf587f31205f2f6e5b64b3b98940f9684b4b8b77450c91 +size 108229 diff --git a/runs/detect/train5/labels.jpg b/runs/detect/train5/labels.jpg new file mode 100644 index 0000000..f90c47c --- /dev/null +++ b/runs/detect/train5/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a93b9336280cd598363e2003177fb28477e7509a1ea8f0400fe3073393f7738 +size 151887 diff --git a/runs/detect/train5/results.csv b/runs/detect/train5/results.csv new file mode 100644 index 0000000..1ed4b1e --- /dev/null +++ b/runs/detect/train5/results.csv @@ -0,0 +1,101 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,17.0315,1.08133,2.92338,1.60264,0.00423,1,0.24512,0.16038,0.68554,3.42966,1.43127,6.668e-05,6.668e-05,6.668e-05 +2,33.8601,0.84061,2.7573,1.36956,0.00371,1,0.40782,0.25316,0.87728,3.47545,1.7079,0.000148545,0.000148545,0.000148545 +3,50.5401,0.77171,2.47246,1.343,0.00339,0.98235,0.41397,0.2306,1.02748,3.52588,1.93789,0.000228759,0.000228759,0.000228759 +4,67.3757,0.85749,2.24697,1.42123,0.0033,0.97745,0.35595,0.18482,1.13454,3.49897,2.07947,0.000307323,0.000307323,0.000307323 +5,84.2553,0.81324,1.98899,1.38761,0.00329,0.98824,0.41062,0.21789,1.20223,3.52647,2.11372,0.000384237,0.000384237,0.000384237 +6,101.11,0.89383,2.00542,1.49769,0.00325,0.97157,0.43732,0.24561,1.23928,3.51602,2.14964,0.0004595,0.0004595,0.0004595 +7,117.934,0.76419,1.88359,1.38444,0.00318,0.96569,0.46837,0.2509,1.42813,3.55063,2.27332,0.000533113,0.000533113,0.000533113 +8,134.691,0.8956,1.8586,1.43358,0.00318,0.96569,0.50895,0.27064,1.4196,3.44534,2.2516,0.000605076,0.000605076,0.000605076 +9,151.333,0.73263,1.5849,1.28759,0.5,0.07576,0.55613,0.3135,1.38632,3.3143,2.18151,0.000675388,0.000675388,0.000675388 +10,167.876,0.82152,1.64077,1.39245,0.59714,0.21214,0.40163,0.20981,1.65734,3.28752,2.38116,0.00074405,0.00074405,0.00074405 +11,184.549,0.73104,1.46973,1.27284,0.65691,0.24785,0.36965,0.16557,1.59949,3.15546,2.33075,0.000811062,0.000811062,0.000811062 +12,201.159,0.73095,1.46921,1.28163,0.27857,0.50196,0.30712,0.14739,1.43922,3.08232,2.25795,0.000876424,0.000876424,0.000876424 +13,217.841,0.80159,1.53733,1.31439,0.27979,0.55294,0.36401,0.16102,1.42402,2.9136,2.30449,0.000940135,0.000940135,0.000940135 +14,234.409,0.85644,1.52286,1.42865,0.27979,0.55294,0.36401,0.16102,1.42402,2.9136,2.30449,0.0010022,0.0010022,0.0010022 +15,250.937,0.78435,1.46353,1.34102,0.43706,0.47549,0.34582,0.13881,1.5129,2.88497,2.4137,0.00106261,0.00106261,0.00106261 +16,267.448,0.83515,1.49261,1.32567,0.2099,0.54314,0.26578,0.12283,1.50305,2.93704,2.44961,0.00112137,0.00112137,0.00112137 +17,284.032,0.72267,1.25475,1.22532,0.2808,0.52549,0.29428,0.1408,1.62089,3.18779,2.53003,0.00117848,0.00117848,0.00117848 +18,300.659,0.79709,1.35765,1.36965,0.2808,0.52549,0.29428,0.1408,1.62089,3.18779,2.53003,0.00123394,0.00123394,0.00123394 +19,317.416,0.91116,1.47029,1.43003,0.42995,0.5913,0.46016,0.21746,1.48476,2.85915,2.42118,0.00128774,0.00128774,0.00128774 +20,333.818,0.79549,1.46358,1.34442,0.50674,0.58023,0.47131,0.22653,1.59677,2.80371,2.83678,0.0013399,0.0013399,0.0013399 +21,350.268,0.95059,1.40446,1.5214,0.50674,0.58023,0.47131,0.22653,1.59677,2.80371,2.83678,0.00133693,0.00133693,0.00133693 +22,366.723,0.8609,1.42587,1.37576,0.60578,0.51926,0.49111,0.24854,1.50148,2.46704,2.63437,0.00132043,0.00132043,0.00132043 +23,383.008,0.86119,1.35626,1.37679,0.50339,0.47157,0.46414,0.21218,1.55382,2.76819,2.69667,0.00130393,0.00130393,0.00130393 +24,399.149,0.73707,1.25708,1.31987,0.50339,0.47157,0.46414,0.21218,1.55382,2.76819,2.69667,0.00128742,0.00128742,0.00128742 +25,415.346,0.79585,1.19913,1.29481,0.33878,0.55337,0.35635,0.15281,1.48204,2.95222,2.52197,0.00127092,0.00127092,0.00127092 +26,431.447,0.80414,1.27882,1.3242,0.33878,0.55337,0.35635,0.15281,1.48204,2.95222,2.52197,0.00125442,0.00125442,0.00125442 +27,447.659,0.75994,1.20039,1.30763,0.48296,0.36667,0.29819,0.12817,1.49677,2.88715,2.60827,0.00123791,0.00123791,0.00123791 +28,464.358,0.72215,1.23906,1.28039,0.35791,0.42692,0.34794,0.13557,1.55489,2.80542,2.81549,0.00122141,0.00122141,0.00122141 +29,480.923,0.72679,1.18155,1.2369,0.35791,0.42692,0.34794,0.13557,1.55489,2.80542,2.81549,0.00120491,0.00120491,0.00120491 +30,497.486,0.813,1.21333,1.36664,0.37212,0.4315,0.34694,0.14009,1.55559,2.9335,2.758,0.0011884,0.0011884,0.0011884 +31,513.775,0.75853,1.26086,1.29215,0.43003,0.41569,0.35942,0.12807,1.57849,2.98848,2.60176,0.0011719,0.0011719,0.0011719 +32,529.956,0.68478,1.16917,1.20558,0.43003,0.41569,0.35942,0.12807,1.57849,2.98848,2.60176,0.0011554,0.0011554,0.0011554 +33,546.354,0.76975,1.34287,1.35535,0.37314,0.51158,0.36351,0.13798,1.54775,2.77681,2.54353,0.00113889,0.00113889,0.00113889 +34,562.764,0.70644,1.17231,1.218,0.37314,0.51158,0.36351,0.13798,1.54775,2.77681,2.54353,0.00112239,0.00112239,0.00112239 +35,579.143,0.79945,1.26043,1.34184,0.47061,0.4,0.30879,0.1238,1.55667,2.78415,2.60278,0.00110589,0.00110589,0.00110589 +36,595.408,0.59634,1.13753,1.15241,0.40137,0.51471,0.37818,0.15806,1.58584,2.62781,2.7218,0.00108938,0.00108938,0.00108938 +37,611.624,0.62959,1.0711,1.22442,0.40137,0.51471,0.37818,0.15806,1.58584,2.62781,2.7218,0.00107288,0.00107288,0.00107288 +38,627.964,0.69774,1.01688,1.25809,0.3706,0.39608,0.38465,0.16664,1.66509,2.79342,2.97211,0.00105638,0.00105638,0.00105638 +39,644.45,0.7606,1.08639,1.3077,0.54264,0.41411,0.40068,0.14964,1.80231,3.08493,3.11219,0.00103987,0.00103987,0.00103987 +40,660.838,0.70426,1.16065,1.26096,0.54264,0.41411,0.40068,0.14964,1.80231,3.08493,3.11219,0.00102337,0.00102337,0.00102337 +41,677.175,0.72864,1.06797,1.25333,0.46827,0.40784,0.40463,0.14427,1.93716,2.86675,3.05862,0.00100687,0.00100687,0.00100687 +42,693.449,0.70244,0.99751,1.25019,0.46827,0.40784,0.40463,0.14427,1.93716,2.86675,3.05862,0.000990365,0.000990365,0.000990365 +43,709.495,0.67103,1.02275,1.16785,0.5887,0.40519,0.38552,0.16508,1.86105,2.61735,2.94827,0.000973861,0.000973861,0.000973861 +44,725.347,0.66161,1.10987,1.19623,0.53242,0.43628,0.43833,0.19233,1.71245,2.55149,2.72292,0.000957358,0.000957358,0.000957358 +45,751.284,0.63646,1.02459,1.19015,0.53242,0.43628,0.43833,0.19233,1.71245,2.55149,2.72292,0.000940855,0.000940855,0.000940855 +46,773.113,0.727,1.12003,1.32399,0.51655,0.47745,0.45449,0.22124,1.5677,2.50341,2.58358,0.000924352,0.000924352,0.000924352 +47,790.483,0.70154,1.13187,1.28232,0.51126,0.49412,0.4405,0.235,1.54516,2.29071,2.65939,0.000907848,0.000907848,0.000907848 +48,806.912,0.71575,1.08091,1.25331,0.51126,0.49412,0.4405,0.235,1.54516,2.29071,2.65939,0.000891345,0.000891345,0.000891345 +49,823.004,0.69333,1.08721,1.2697,0.50805,0.48235,0.42207,0.22284,1.63196,2.34732,2.94468,0.000874842,0.000874842,0.000874842 +50,839.238,0.72891,1.10872,1.28724,0.50805,0.48235,0.42207,0.22284,1.63196,2.34732,2.94468,0.000858338,0.000858338,0.000858338 +51,855.659,0.62006,1.01198,1.22643,0.42441,0.5549,0.41482,0.22094,1.67217,2.24527,3.0752,0.000841835,0.000841835,0.000841835 +52,871.862,0.75973,1.02499,1.28503,0.475,0.62255,0.43436,0.22248,1.68403,2.25941,3.0335,0.000825332,0.000825332,0.000825332 +53,888.008,0.64958,0.94406,1.22302,0.475,0.62255,0.43436,0.22248,1.68403,2.25941,3.0335,0.000808828,0.000808828,0.000808828 +54,904.262,0.56691,0.99116,1.15284,0.47571,0.64902,0.45101,0.21759,1.59428,2.36169,2.71746,0.000792325,0.000792325,0.000792325 +55,920.538,0.64705,0.9933,1.16108,0.48469,0.67647,0.47368,0.22897,1.52689,2.28365,2.54397,0.000775822,0.000775822,0.000775822 +56,936.662,0.59463,0.95169,1.1467,0.48469,0.67647,0.47368,0.22897,1.52689,2.28365,2.54397,0.000759318,0.000759318,0.000759318 +57,953.145,0.5352,0.86154,1.1381,0.46834,0.56078,0.48823,0.23994,1.44111,2.15181,2.38736,0.000742815,0.000742815,0.000742815 +58,969.42,0.60391,0.914,1.13639,0.46834,0.56078,0.48823,0.23994,1.44111,2.15181,2.38736,0.000726312,0.000726312,0.000726312 +59,985.917,0.55867,0.85556,1.11375,0.48799,0.57843,0.5194,0.2641,1.38506,2.15011,2.31392,0.000709809,0.000709809,0.000709809 +60,1002.5,0.51232,0.85288,1.05106,0.63553,0.53152,0.53486,0.28835,1.37159,2.12807,2.32468,0.000693305,0.000693305,0.000693305 +61,1019,0.49675,0.82137,1.12083,0.63553,0.53152,0.53486,0.28835,1.37159,2.12807,2.32468,0.000676802,0.000676802,0.000676802 +62,1035.24,0.54631,0.87745,1.15573,0.49991,0.56275,0.54498,0.29216,1.41853,2.10369,2.45143,0.000660299,0.000660299,0.000660299 +63,1051.36,0.56119,0.91187,1.13197,0.58569,0.54804,0.54901,0.28403,1.51176,1.98183,2.61142,0.000643795,0.000643795,0.000643795 +64,1067.53,0.51713,0.81136,1.08216,0.58569,0.54804,0.54901,0.28403,1.51176,1.98183,2.61142,0.000627292,0.000627292,0.000627292 +65,1083.62,0.54544,0.8818,1.13929,0.48218,0.64706,0.55674,0.28693,1.4916,1.97823,2.61332,0.000610789,0.000610789,0.000610789 +66,1099.93,0.51774,0.76547,1.09341,0.48218,0.64706,0.55674,0.28693,1.4916,1.97823,2.61332,0.000594286,0.000594286,0.000594286 +67,1116.26,0.46286,0.77855,1.05299,0.47494,0.63235,0.53482,0.28252,1.42657,2.10651,2.50682,0.000577782,0.000577782,0.000577782 +68,1132.39,0.50801,0.78369,1.10073,0.54624,0.57859,0.50408,0.26082,1.39461,2.26676,2.4136,0.000561279,0.000561279,0.000561279 +69,1148.56,0.50689,0.71315,1.09224,0.54624,0.57859,0.50408,0.26082,1.39461,2.26676,2.4136,0.000544776,0.000544776,0.000544776 +70,1164.7,0.58148,0.81886,1.11691,0.54177,0.59496,0.50145,0.2614,1.40406,2.34507,2.38189,0.000528272,0.000528272,0.000528272 +71,1180.82,0.5279,0.7428,1.09885,0.57528,0.50922,0.48615,0.26434,1.41365,2.25072,2.37555,0.000511769,0.000511769,0.000511769 +72,1196.86,0.53506,0.78975,1.13759,0.57528,0.50922,0.48615,0.26434,1.41365,2.25072,2.37555,0.000495266,0.000495266,0.000495266 +73,1212.89,0.52604,0.72486,1.102,0.57859,0.56889,0.52123,0.28836,1.43182,2.13193,2.44849,0.000478762,0.000478762,0.000478762 +74,1228.82,0.49938,0.77152,1.10414,0.57859,0.56889,0.52123,0.28836,1.43182,2.13193,2.44849,0.000462259,0.000462259,0.000462259 +75,1245.17,0.52392,0.82433,1.06948,0.50153,0.62224,0.54252,0.30358,1.43461,2.04957,2.5221,0.000445756,0.000445756,0.000445756 +76,1261.55,0.5251,0.80122,1.07698,0.4693,0.74902,0.58942,0.31766,1.45227,2.01832,2.63605,0.000429253,0.000429253,0.000429253 +77,1277.85,0.45154,0.92765,1.05581,0.4693,0.74902,0.58942,0.31766,1.45227,2.01832,2.63605,0.000412749,0.000412749,0.000412749 +78,1294.21,0.51818,0.71881,1.11186,0.46946,0.72059,0.57966,0.31241,1.50225,1.98201,2.74689,0.000396246,0.000396246,0.000396246 +79,1310.7,0.56274,0.72192,1.10196,0.49371,0.58529,0.54177,0.29293,1.52618,2.03067,2.85942,0.000379743,0.000379743,0.000379743 +80,1326.95,0.55585,0.86378,1.14887,0.49371,0.58529,0.54177,0.29293,1.52618,2.03067,2.85942,0.000363239,0.000363239,0.000363239 +81,1343.26,0.49006,0.82945,1.07526,0.5044,0.63725,0.57323,0.29876,1.53242,2.01079,2.87976,0.000346736,0.000346736,0.000346736 +82,1359.64,0.44046,0.81142,1.05873,0.5044,0.63725,0.57323,0.29876,1.53242,2.01079,2.87976,0.000330233,0.000330233,0.000330233 +83,1375.9,0.4583,0.71497,1.0351,0.51413,0.64572,0.58875,0.31124,1.50871,1.9555,2.77515,0.000313729,0.000313729,0.000313729 +84,1392.21,0.45181,0.7025,1.07096,0.50224,0.62157,0.59329,0.32669,1.48352,1.91796,2.66597,0.000297226,0.000297226,0.000297226 +85,1408.35,0.51529,0.7945,1.08051,0.50224,0.62157,0.59329,0.32669,1.48352,1.91796,2.66597,0.000280723,0.000280723,0.000280723 +86,1424.58,0.43737,0.71426,1.05732,0.52299,0.64987,0.6051,0.33516,1.46736,1.89031,2.59755,0.00026422,0.00026422,0.00026422 +87,1440.89,0.41954,0.67975,1.08158,0.46841,0.67843,0.59932,0.3339,1.46346,1.89624,2.54914,0.000247716,0.000247716,0.000247716 +88,1457.04,0.4396,0.73592,1.05299,0.46841,0.67843,0.59932,0.3339,1.46346,1.89624,2.54914,0.000231213,0.000231213,0.000231213 +89,1473.18,0.48242,0.77213,1.06769,0.49049,0.71176,0.59296,0.33478,1.45253,1.89962,2.50482,0.00021471,0.00021471,0.00021471 +90,1489.31,0.40959,0.68339,1.04423,0.49049,0.71176,0.59296,0.33478,1.45253,1.89962,2.50482,0.000198206,0.000198206,0.000198206 +91,1505.49,0.48633,1.44606,1.17489,0.48824,0.70856,0.59164,0.33512,1.44894,1.89795,2.50645,0.000181703,0.000181703,0.000181703 +92,1522.1,0.42451,1.27808,1.03905,0.52089,0.64804,0.60022,0.33528,1.44687,1.88446,2.51221,0.0001652,0.0001652,0.0001652 +93,1538.49,0.36622,1.06549,1.00959,0.52089,0.64804,0.60022,0.33528,1.44687,1.88446,2.51221,0.000148696,0.000148696,0.000148696 +94,1554.78,0.34994,1.07603,0.99944,0.57659,0.59608,0.58994,0.33093,1.44584,1.91092,2.53432,0.000132193,0.000132193,0.000132193 +95,1571.13,0.35843,1.10935,0.98328,0.59922,0.57353,0.58656,0.32051,1.46926,1.93859,2.58467,0.00011569,0.00011569,0.00011569 +96,1587.72,0.36133,1.10611,1.08163,0.59922,0.57353,0.58656,0.32051,1.46926,1.93859,2.58467,9.91865e-05,9.91865e-05,9.91865e-05 +97,1604.17,0.34081,1.01732,1.02962,0.61909,0.57353,0.58119,0.31699,1.46866,1.97081,2.60533,8.26832e-05,8.26832e-05,8.26832e-05 +98,1620.69,0.33107,0.9626,1.01197,0.61909,0.57353,0.58119,0.31699,1.46866,1.97081,2.60533,6.61799e-05,6.61799e-05,6.61799e-05 +99,1637.01,0.27874,0.95551,0.99601,0.61341,0.56765,0.57653,0.30843,1.46725,2.00147,2.60674,4.96766e-05,4.96766e-05,4.96766e-05 +100,1653.15,0.32088,0.91585,1.01432,0.62564,0.5675,0.57292,0.30486,1.46552,2.02275,2.5999,3.31733e-05,3.31733e-05,3.31733e-05 diff --git a/runs/detect/train5/results.png b/runs/detect/train5/results.png new file mode 100644 index 0000000..61fc445 --- /dev/null +++ b/runs/detect/train5/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a592a3518704c99326dfd70f5dfeb634ae10b2d74afaf5ed3fa457007d3f4c5 +size 314117 diff --git a/runs/detect/train5/train_batch0.jpg b/runs/detect/train5/train_batch0.jpg new file mode 100644 index 0000000..eb760e7 --- /dev/null +++ b/runs/detect/train5/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7145bd1071482ec65da97064c1ebc1013aed0b4a06c67c23e469368d12cf2e +size 431482 diff --git a/runs/detect/train5/train_batch1.jpg b/runs/detect/train5/train_batch1.jpg new file mode 100644 index 0000000..68268ff --- /dev/null +++ b/runs/detect/train5/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1ec64acbbe5eba5f9903160559833af6587d15846f89f07b5b3b87f051d74 +size 427237 diff --git a/runs/detect/train5/train_batch2.jpg b/runs/detect/train5/train_batch2.jpg new file mode 100644 index 0000000..15ff03c --- /dev/null +++ b/runs/detect/train5/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c7f2c47831a7aa9d845b06c13afbe82e2412da3e86d4eb7c892a5c44c5ba85 +size 394898 diff --git a/runs/detect/train5/train_batch450.jpg b/runs/detect/train5/train_batch450.jpg new file mode 100644 index 0000000..30593f2 --- /dev/null +++ b/runs/detect/train5/train_batch450.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e1a0ba60884eeb579d4461e9128db961fc3cb04f25363812b82cab98d147db +size 294506 diff --git a/runs/detect/train5/train_batch451.jpg b/runs/detect/train5/train_batch451.jpg new file mode 100644 index 0000000..4a7a214 --- /dev/null +++ b/runs/detect/train5/train_batch451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d680331ee1765ea1147ac6a0af405c642f645316bba91d01e5ab9ec6bfc21d1d +size 333539 diff --git a/runs/detect/train5/train_batch452.jpg b/runs/detect/train5/train_batch452.jpg new file mode 100644 index 0000000..0eddd01 --- /dev/null +++ b/runs/detect/train5/train_batch452.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32603bf9250f0a58a04751b9a5fa5572641dc8e166f2f3719781c43bb5364f7 +size 316967 diff --git a/runs/detect/train5/val_batch0_labels.jpg b/runs/detect/train5/val_batch0_labels.jpg new file mode 100644 index 0000000..c0778d4 --- /dev/null +++ b/runs/detect/train5/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2799a47d5f11c5229e1e60f39a35cfbf3130d9ee42a91ed11946123fb6c714c +size 427791 diff --git a/runs/detect/train5/val_batch0_pred.jpg b/runs/detect/train5/val_batch0_pred.jpg new file mode 100644 index 0000000..90d7bf9 --- /dev/null +++ b/runs/detect/train5/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76bf444103528b7bda207728a33ce1832c0463c303510c0738cce228ed6db63 +size 433871 diff --git a/runs/detect/train5/val_batch1_labels.jpg b/runs/detect/train5/val_batch1_labels.jpg new file mode 100644 index 0000000..4b76428 --- /dev/null +++ b/runs/detect/train5/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee6eb71595a855bc3c6cc9b22b2f567133b6338173550f8ca2159d1c867224f +size 457937 diff --git a/runs/detect/train5/val_batch1_pred.jpg b/runs/detect/train5/val_batch1_pred.jpg new file mode 100644 index 0000000..01e907a --- /dev/null +++ b/runs/detect/train5/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e71742007c2ed125b1e3a4d1ff5b070db119912561cb25d40ed2539f8b4ce70 +size 468539 diff --git a/runs/detect/train5/val_batch2_labels.jpg b/runs/detect/train5/val_batch2_labels.jpg new file mode 100644 index 0000000..953909d --- /dev/null +++ b/runs/detect/train5/val_batch2_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c3bfcc26fc7d9c65de3c84b5d047f4b324342cf3f0af91787df89415936fe6 +size 458890 diff --git a/runs/detect/train5/val_batch2_pred.jpg b/runs/detect/train5/val_batch2_pred.jpg new file mode 100644 index 0000000..ead3eaa --- /dev/null +++ b/runs/detect/train5/val_batch2_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:654ae77caf17bf556ae5156e3398a7daf0d82da587d9aedb7b230bea8fddbf62 +size 469279 diff --git a/runs/detect/train5/weights/best.pt b/runs/detect/train5/weights/best.pt new file mode 100644 index 0000000..81eb66c Binary files /dev/null and b/runs/detect/train5/weights/best.pt differ diff --git a/runs/detect/train5/weights/last.pt b/runs/detect/train5/weights/last.pt new file mode 100644 index 0000000..f3602b5 Binary files /dev/null and b/runs/detect/train5/weights/last.pt differ diff --git a/runs/detect/train6/BoxF1_curve.png b/runs/detect/train6/BoxF1_curve.png new file mode 100644 index 0000000..e59a4a4 --- /dev/null +++ b/runs/detect/train6/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b56de99b11eaf4228948ecbce23a99221d8f741c31a951e073dbd59d4a676df +size 95627 diff --git a/runs/detect/train6/BoxPR_curve.png b/runs/detect/train6/BoxPR_curve.png new file mode 100644 index 0000000..8fa6a67 --- /dev/null +++ b/runs/detect/train6/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2daff47842c34d3f16e91ab80e9b342a8dbdf67d9897bfd642f624866670aedb +size 70462 diff --git a/runs/detect/train6/BoxP_curve.png b/runs/detect/train6/BoxP_curve.png new file mode 100644 index 0000000..d499950 --- /dev/null +++ b/runs/detect/train6/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfa6fd0bb4886874d3bc2da1ed8bd64fd2410076507083a084df4d4b695a735 +size 80886 diff --git a/runs/detect/train6/BoxR_curve.png b/runs/detect/train6/BoxR_curve.png new file mode 100644 index 0000000..645669a --- /dev/null +++ b/runs/detect/train6/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409127d8c3accd4f80f4814d94dd8e5fd48eee7f48f9ccd73ef6150a89b2505d +size 90595 diff --git a/runs/detect/train6/args.yaml b/runs/detect/train6/args.yaml new file mode 100644 index 0000000..445ad8f --- /dev/null +++ b/runs/detect/train6/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/仪表盘/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train6 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train6 diff --git a/runs/detect/train6/confusion_matrix.png b/runs/detect/train6/confusion_matrix.png new file mode 100644 index 0000000..da87ccf --- /dev/null +++ b/runs/detect/train6/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d2d976a4f563162a47038e9d9cff73962184ddbfff523cf450f48389a8b22c +size 112831 diff --git a/runs/detect/train6/confusion_matrix_normalized.png b/runs/detect/train6/confusion_matrix_normalized.png new file mode 100644 index 0000000..1b3d3ee --- /dev/null +++ b/runs/detect/train6/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e78af28201352d8a68d08028e1cae6017a7bb2178af387a41daadc92de65032 +size 110635 diff --git a/runs/detect/train6/labels.jpg b/runs/detect/train6/labels.jpg new file mode 100644 index 0000000..b47e42c --- /dev/null +++ b/runs/detect/train6/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4392c3623b2ab839f485db396bbeaa9d95e01d7cc7d3fe9dac0100c7c9e3e33d +size 176068 diff --git a/runs/detect/train6/results.csv b/runs/detect/train6/results.csv new file mode 100644 index 0000000..af07914 --- /dev/null +++ b/runs/detect/train6/results.csv @@ -0,0 +1,101 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,19.4527,1.50622,3.06621,1.82119,0.00739,1,0.81038,0.43782,1.0531,3.58409,1.75107,0.00021671,0.00021671,0.00021671 +2,38.2131,1.30814,2.12766,1.65259,0.89842,0.4429,0.84164,0.48109,1.36293,3.28512,1.88436,0.000445634,0.000445634,0.000445634 +3,57.1135,1.33912,1.79987,1.56555,0.33777,0.8,0.41,0.22216,1.54757,3.51509,2.0416,0.000669937,0.000669937,0.000669937 +4,75.9001,1.33606,1.68832,1.64106,0.7183,0.6,0.63622,0.31588,1.96328,3.05733,2.68662,0.00088962,0.00088962,0.00088962 +5,94.4366,1.28769,1.47452,1.53003,0.51203,0.65,0.54414,0.21892,2.24499,3.079,3.4508,0.00110468,0.00110468,0.00110468 +6,112.817,1.33514,1.60471,1.59779,0.75464,0.7695,0.81165,0.36166,1.75737,2.69778,2.75704,0.00131512,0.00131512,0.00131512 +7,131.388,1.27382,1.5122,1.579,0.46031,0.55,0.51226,0.23982,1.75577,2.97902,2.46017,0.00152094,0.00152094,0.00152094 +8,150.091,1.3,1.51483,1.5564,0.62068,0.8,0.69205,0.30856,2.08767,3.42273,2.98634,0.00155148,0.00155148,0.00155148 +9,168.635,1.28838,1.3906,1.5227,0.87179,0.7,0.86472,0.35816,1.90661,3.42858,2.97377,0.00153497,0.00153497,0.00153497 +10,187.179,1.28631,1.40053,1.56096,0.384,0.45,0.31433,0.117,2.39343,5.88541,3.40295,0.00151847,0.00151847,0.00151847 +11,205.679,1.31941,1.31497,1.52531,0.43319,0.5,0.34609,0.1579,2.06891,4.2887,2.91802,0.00150197,0.00150197,0.00150197 +12,223.902,1.26692,1.32564,1.48238,0.74414,0.72774,0.79329,0.41752,1.85133,2.86895,2.61029,0.00148546,0.00148546,0.00148546 +13,242.307,1.2318,1.20385,1.46576,0.40257,0.9,0.49012,0.19363,2.06426,3.08583,3.05194,0.00146896,0.00146896,0.00146896 +14,260.608,1.26007,1.22143,1.49204,0.59759,0.75,0.67629,0.24486,2.24171,3.60861,3.34916,0.00145246,0.00145246,0.00145246 +15,278.967,1.31999,1.23944,1.51046,0.63498,0.9,0.70389,0.34015,1.7864,2.55493,2.46551,0.00143595,0.00143595,0.00143595 +16,297.28,1.23432,1.25684,1.52692,0.64275,0.8,0.76969,0.42665,1.69771,2.02239,2.40266,0.00141945,0.00141945,0.00141945 +17,315.713,1.25264,1.1384,1.46259,0.94157,0.95,0.98348,0.46062,1.93426,1.83738,2.69861,0.00140295,0.00140295,0.00140295 +18,334.122,1.20486,1.15287,1.49064,0.98578,0.95,0.98667,0.49696,1.81583,1.76384,2.43836,0.00138644,0.00138644,0.00138644 +19,352.556,1.13646,1.08599,1.41146,0.99216,0.95,0.98848,0.5161,1.6438,1.57417,2.29822,0.00136994,0.00136994,0.00136994 +20,370.968,1.11523,1.05727,1.43261,0.86595,0.95,0.95,0.48565,1.82048,1.78296,2.45736,0.00135344,0.00135344,0.00135344 +21,389.298,1.14566,1.02144,1.41319,0.8384,0.9,0.94135,0.50904,1.78767,1.6489,2.38238,0.00133693,0.00133693,0.00133693 +22,407.55,1.13107,0.99731,1.37716,0.81532,0.88345,0.93075,0.5139,1.72458,1.48676,2.45089,0.00132043,0.00132043,0.00132043 +23,426.899,1.14015,0.93836,1.40434,0.84981,0.9,0.95122,0.56706,1.54859,1.42863,2.27448,0.00130393,0.00130393,0.00130393 +24,445.947,1.14414,0.95948,1.42752,0.96991,0.95,0.97833,0.52835,1.57878,1.76464,2.25626,0.00128742,0.00128742,0.00128742 +25,464.245,1.07506,0.8724,1.32861,1,0.92067,0.98071,0.58323,1.50391,1.5323,2.08854,0.00127092,0.00127092,0.00127092 +26,482.879,1.17703,0.96504,1.40853,0.93823,0.95,0.93553,0.56717,1.35244,1.54661,1.9091,0.00125442,0.00125442,0.00125442 +27,501.433,1.08157,0.85164,1.3428,0.93106,0.95,0.93849,0.56865,1.36501,1.3195,1.8783,0.00123791,0.00123791,0.00123791 +28,520.041,1.07275,0.92926,1.38703,0.95207,0.9934,0.99262,0.60301,1.4458,1.19659,1.97437,0.00122141,0.00122141,0.00122141 +29,538.524,1.05901,0.84334,1.28962,0.89346,0.95,0.97548,0.58906,1.46361,1.24332,2.05774,0.00120491,0.00120491,0.00120491 +30,556.99,1.0365,0.85912,1.34805,0.8929,1,0.96799,0.55551,1.72381,1.21195,2.2435,0.0011884,0.0011884,0.0011884 +31,575.38,1.04875,0.8547,1.29579,0.95191,0.99012,0.99024,0.57378,1.55319,1.14895,2.15512,0.0011719,0.0011719,0.0011719 +32,593.637,1.02169,0.81671,1.34895,0.99154,0.95,0.98848,0.58154,1.53519,1.02889,2.04799,0.0011554,0.0011554,0.0011554 +33,611.767,0.99539,0.81085,1.36046,0.95218,0.99587,0.99262,0.58576,1.42798,1.03634,1.88639,0.00113889,0.00113889,0.00113889 +34,629.925,0.96106,0.77747,1.2686,0.95213,0.99474,0.99262,0.54915,1.47195,0.9531,1.97216,0.00112239,0.00112239,0.00112239 +35,647.962,0.99678,0.79545,1.3263,0.95222,0.99672,0.99262,0.5672,1.53753,0.96164,2.01766,0.00110589,0.00110589,0.00110589 +36,666.23,0.99318,0.79864,1.32505,0.99374,1,0.995,0.59077,1.43523,0.98353,1.88454,0.00108938,0.00108938,0.00108938 +37,685.256,0.9491,0.76441,1.26177,0.99069,1,0.995,0.57335,1.64409,0.98037,2.20437,0.00107288,0.00107288,0.00107288 +38,703.764,0.9985,0.75524,1.25896,0.95211,1,0.995,0.59883,1.5173,0.9439,2.12955,0.00105638,0.00105638,0.00105638 +39,722.516,0.93423,0.73438,1.25413,0.94846,1,0.99024,0.61252,1.4498,0.90377,2.06222,0.00103987,0.00103987,0.00103987 +40,741.329,0.89082,0.72345,1.24326,1,0.9924,0.995,0.56837,1.52239,0.87811,2.17843,0.00102337,0.00102337,0.00102337 +41,760.305,0.84544,0.71139,1.20691,0.99527,0.95,0.99045,0.51762,1.61044,0.9546,2.30559,0.00100687,0.00100687,0.00100687 +42,779.197,0.89223,0.68051,1.18898,0.94582,0.95,0.98795,0.53552,1.67657,1.00722,2.39174,0.000990365,0.000990365,0.000990365 +43,797.907,0.89783,0.69895,1.22013,0.94864,1,0.99262,0.57739,1.60854,0.92138,2.32179,0.000973861,0.000973861,0.000973861 +44,816.745,0.88851,0.63667,1.24976,0.97567,1,0.995,0.55957,1.56941,0.91972,2.20126,0.000957358,0.000957358,0.000957358 +45,835.628,0.90528,0.71595,1.23675,0.9931,1,0.995,0.56436,1.49529,0.93045,2.13691,0.000940855,0.000940855,0.000940855 +46,854.011,0.95266,0.67712,1.28881,0.99199,1,0.995,0.53197,1.65524,0.90264,2.38918,0.000924352,0.000924352,0.000924352 +47,872.264,0.97044,0.71002,1.22987,0.993,1,0.995,0.52345,1.75334,0.91286,2.54802,0.000907848,0.000907848,0.000907848 +48,890.636,0.88265,0.65412,1.23888,0.9992,1,0.995,0.60579,1.57644,0.83806,2.21825,0.000891345,0.000891345,0.000891345 +49,909.049,0.85124,0.6539,1.2145,1,0.9881,0.995,0.57079,1.56921,0.8176,2.16695,0.000874842,0.000874842,0.000874842 +50,927.455,0.80936,0.60961,1.188,0.99463,1,0.995,0.55885,1.52906,0.76818,2.12746,0.000858338,0.000858338,0.000858338 +51,945.851,0.82941,0.62238,1.22623,0.99545,1,0.995,0.59772,1.46793,0.77055,2.09189,0.000841835,0.000841835,0.000841835 +52,963.956,0.84832,0.61326,1.21363,0.99595,1,0.995,0.54706,1.63078,0.82034,2.27453,0.000825332,0.000825332,0.000825332 +53,982.147,0.82863,0.61318,1.20178,0.99535,1,0.995,0.51529,1.7787,0.83495,2.45303,0.000808828,0.000808828,0.000808828 +54,1000.4,0.80997,0.60531,1.16068,0.99488,1,0.995,0.55336,1.6539,0.82106,2.40669,0.000792325,0.000792325,0.000792325 +55,1018.79,0.83826,0.62814,1.17741,0.99546,1,0.995,0.54561,1.5755,0.75704,2.38059,0.000775822,0.000775822,0.000775822 +56,1037.37,0.77263,0.6021,1.18852,0.99679,1,0.995,0.5508,1.66944,0.74434,2.4909,0.000759318,0.000759318,0.000759318 +57,1055.8,0.81799,0.63313,1.17613,0.99758,1,0.995,0.54805,1.68848,0.78142,2.53662,0.000742815,0.000742815,0.000742815 +58,1074.16,0.82529,0.6096,1.16387,0.99593,1,0.995,0.56807,1.58722,0.73685,2.37344,0.000726312,0.000726312,0.000726312 +59,1092.48,0.79463,0.5882,1.15112,0.99538,1,0.995,0.56791,1.57418,0.73712,2.35336,0.000709809,0.000709809,0.000709809 +60,1110.77,0.72301,0.58629,1.16639,0.99604,1,0.995,0.55932,1.55607,0.73365,2.31784,0.000693305,0.000693305,0.000693305 +61,1129.02,0.7863,0.55614,1.15695,0.99668,1,0.995,0.5924,1.44994,0.70566,2.22553,0.000676802,0.000676802,0.000676802 +62,1147.71,0.81338,0.59114,1.14833,0.99706,1,0.995,0.59176,1.50372,0.7431,2.30685,0.000660299,0.000660299,0.000660299 +63,1166.21,0.75578,0.55895,1.15905,0.99738,1,0.995,0.5775,1.49664,0.71735,2.2695,0.000643795,0.000643795,0.000643795 +64,1184.57,0.77737,0.57459,1.17613,0.99552,1,0.995,0.58439,1.49901,0.73316,2.23394,0.000627292,0.000627292,0.000627292 +65,1203.04,0.71529,0.52511,1.13432,0.99851,1,0.995,0.57427,1.56915,0.73812,2.3448,0.000610789,0.000610789,0.000610789 +66,1221.48,0.70408,0.55974,1.11699,0.99703,1,0.995,0.58938,1.52443,0.7462,2.35857,0.000594286,0.000594286,0.000594286 +67,1240.31,0.7779,0.61151,1.22407,0.99475,1,0.995,0.58799,1.53428,0.74882,2.37471,0.000577782,0.000577782,0.000577782 +68,1258.62,0.71248,0.54454,1.14081,0.99923,1,0.995,0.59024,1.58176,0.73125,2.37372,0.000561279,0.000561279,0.000561279 +69,1277.38,0.7101,0.52352,1.11026,0.96635,1,0.995,0.57408,1.57541,0.69973,2.35729,0.000544776,0.000544776,0.000544776 +70,1295.75,0.65127,0.47084,1.06343,0.99251,1,0.995,0.56694,1.56071,0.73224,2.33306,0.000528272,0.000528272,0.000528272 +71,1314.12,0.66872,0.50531,1.09289,0.99574,1,0.995,0.55721,1.60304,0.73322,2.3709,0.000511769,0.000511769,0.000511769 +72,1332.86,0.72758,0.55488,1.14218,0.99399,1,0.995,0.58737,1.53201,0.70832,2.29891,0.000495266,0.000495266,0.000495266 +73,1351.32,0.68976,0.49831,1.10719,0.99684,1,0.995,0.58397,1.48312,0.6619,2.29763,0.000478762,0.000478762,0.000478762 +74,1369.76,0.64391,0.49946,1.08777,0.99551,1,0.995,0.56574,1.59885,0.6752,2.4091,0.000462259,0.000462259,0.000462259 +75,1388.24,0.71438,0.5227,1.09545,0.99626,1,0.995,0.57351,1.58355,0.68748,2.42624,0.000445756,0.000445756,0.000445756 +76,1406.76,0.62377,0.48061,1.0571,0.99709,1,0.995,0.60301,1.49056,0.66739,2.38923,0.000429253,0.000429253,0.000429253 +77,1425.08,0.64098,0.47022,1.087,0.99717,1,0.995,0.60261,1.46821,0.65038,2.42726,0.000412749,0.000412749,0.000412749 +78,1443.45,0.59678,0.4706,1.06143,0.99719,1,0.995,0.5988,1.52509,0.66848,2.49382,0.000396246,0.000396246,0.000396246 +79,1462.63,0.56289,0.43027,1.03205,0.99726,1,0.995,0.6138,1.50903,0.6731,2.49001,0.000379743,0.000379743,0.000379743 +80,1481.65,0.62635,0.4423,1.0686,0.99765,1,0.995,0.60162,1.42973,0.65327,2.44145,0.000363239,0.000363239,0.000363239 +81,1500.28,0.63665,0.48538,1.0881,0.99809,1,0.995,0.60607,1.45474,0.63829,2.47066,0.000346736,0.000346736,0.000346736 +82,1518.37,0.59977,0.46319,1.06382,0.99777,1,0.995,0.60051,1.49513,0.639,2.52263,0.000330233,0.000330233,0.000330233 +83,1536.57,0.59835,0.4424,1.088,0.99749,1,0.995,0.57759,1.48494,0.64223,2.5409,0.000313729,0.000313729,0.000313729 +84,1554.68,0.58341,0.4444,1.07267,0.99711,1,0.995,0.56868,1.50216,0.61779,2.56521,0.000297226,0.000297226,0.000297226 +85,1572.83,0.55117,0.44152,1.03351,0.99704,1,0.995,0.56412,1.53651,0.62315,2.58308,0.000280723,0.000280723,0.000280723 +86,1590.99,0.59363,0.44329,1.06337,0.99705,1,0.995,0.57433,1.58202,0.6465,2.64332,0.00026422,0.00026422,0.00026422 +87,1609.13,0.59944,0.44978,1.04264,0.99709,1,0.995,0.57735,1.58956,0.65926,2.64238,0.000247716,0.000247716,0.000247716 +88,1627.9,0.56857,0.44911,1.04478,0.99716,1,0.995,0.57001,1.56703,0.65515,2.62296,0.000231213,0.000231213,0.000231213 +89,1646.49,0.55287,0.40648,1.03952,0.99717,1,0.995,0.58785,1.53852,0.65389,2.58799,0.00021471,0.00021471,0.00021471 +90,1664.63,0.5589,0.43897,1.02838,0.99728,1,0.995,0.58154,1.55034,0.65399,2.58897,0.000198206,0.000198206,0.000198206 +91,1682.57,0.55888,0.68363,1.13744,0.99724,1,0.995,0.58066,1.55252,0.65701,2.59571,0.000181703,0.000181703,0.000181703 +92,1701.02,0.4591,0.52971,0.99774,0.99717,1,0.995,0.59592,1.52867,0.65325,2.60757,0.0001652,0.0001652,0.0001652 +93,1719.75,0.51238,0.51725,1.06358,0.99714,1,0.995,0.58289,1.5086,0.64762,2.65313,0.000148696,0.000148696,0.000148696 +94,1738.32,0.45103,0.48758,1.00923,0.99715,1,0.995,0.58834,1.50259,0.63976,2.66131,0.000132193,0.000132193,0.000132193 +95,1756.91,0.44254,0.46806,0.98103,0.99718,1,0.995,0.58559,1.50257,0.63228,2.65565,0.00011569,0.00011569,0.00011569 +96,1775.56,0.42886,0.48489,1.01502,0.99721,1,0.995,0.59751,1.51027,0.62516,2.65446,9.91865e-05,9.91865e-05,9.91865e-05 +97,1794.4,0.40637,0.4433,1.00175,0.99729,1,0.995,0.5893,1.50162,0.62455,2.65438,8.26832e-05,8.26832e-05,8.26832e-05 +98,1813.29,0.41241,0.42748,1.01739,0.99726,1,0.995,0.58769,1.47792,0.63681,2.64389,6.61799e-05,6.61799e-05,6.61799e-05 +99,1831.85,0.40347,0.4228,0.9804,0.99726,1,0.995,0.59336,1.4721,0.64111,2.63846,4.96766e-05,4.96766e-05,4.96766e-05 +100,1850.01,0.422,0.42847,0.97269,0.99727,1,0.995,0.58947,1.47083,0.64411,2.64788,3.31733e-05,3.31733e-05,3.31733e-05 diff --git a/runs/detect/train6/results.png b/runs/detect/train6/results.png new file mode 100644 index 0000000..049bc17 --- /dev/null +++ b/runs/detect/train6/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5468d34c0af80113d77143674506df1f956d3786ceee60e72ea8ef02b6e8e380 +size 278124 diff --git a/runs/detect/train6/train_batch0.jpg b/runs/detect/train6/train_batch0.jpg new file mode 100644 index 0000000..0d6fcf7 --- /dev/null +++ b/runs/detect/train6/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b2ebc1379771fdc03464ca91474629c63a88180e2627c0421b80829f580cbc +size 447424 diff --git a/runs/detect/train6/train_batch1.jpg b/runs/detect/train6/train_batch1.jpg new file mode 100644 index 0000000..cce18dc --- /dev/null +++ b/runs/detect/train6/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf6000227fd541eae7add7cf0f9daf902e6260ced934581818a9251245ebc55 +size 468909 diff --git a/runs/detect/train6/train_batch1260.jpg b/runs/detect/train6/train_batch1260.jpg new file mode 100644 index 0000000..148c422 --- /dev/null +++ b/runs/detect/train6/train_batch1260.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d40c8d1ac38522448e098fad8d3265a4b181bfb491118716608203b46be3e3 +size 340499 diff --git a/runs/detect/train6/train_batch1261.jpg b/runs/detect/train6/train_batch1261.jpg new file mode 100644 index 0000000..6f1b0b7 --- /dev/null +++ b/runs/detect/train6/train_batch1261.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa172403969ed15ec2d020585674a7221256360bfa0e4ea82b0a59b40f6912e +size 337217 diff --git a/runs/detect/train6/train_batch1262.jpg b/runs/detect/train6/train_batch1262.jpg new file mode 100644 index 0000000..9ab951a --- /dev/null +++ b/runs/detect/train6/train_batch1262.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a732793fc04bc2b70335e80ad504e7f0ee5a556a5364f5403ba65da86ecea96 +size 300321 diff --git a/runs/detect/train6/train_batch2.jpg b/runs/detect/train6/train_batch2.jpg new file mode 100644 index 0000000..7e846ad --- /dev/null +++ b/runs/detect/train6/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a879370bb7d12b1930b5cba295bf5755e70204ae9df3439b01de6b7a0e610a +size 468421 diff --git a/runs/detect/train6/val_batch0_labels.jpg b/runs/detect/train6/val_batch0_labels.jpg new file mode 100644 index 0000000..88946e2 --- /dev/null +++ b/runs/detect/train6/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324fbb65de6e72eed3f84391af50cdc81aa06a295aa14508936e7bd85520cf39 +size 710753 diff --git a/runs/detect/train6/val_batch0_pred.jpg b/runs/detect/train6/val_batch0_pred.jpg new file mode 100644 index 0000000..8685b7e --- /dev/null +++ b/runs/detect/train6/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68af50bec4092d4f8d433eabb7d65d382c34247c32bbcd7a52d24897aa63ef6b +size 718291 diff --git a/runs/detect/train6/val_batch1_labels.jpg b/runs/detect/train6/val_batch1_labels.jpg new file mode 100644 index 0000000..f322204 --- /dev/null +++ b/runs/detect/train6/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a7e1c0b15e3d7d0a349b200ec778c3666ed27f8bf848ad839b03cd27dbb9ba +size 195418 diff --git a/runs/detect/train6/val_batch1_pred.jpg b/runs/detect/train6/val_batch1_pred.jpg new file mode 100644 index 0000000..bae1433 --- /dev/null +++ b/runs/detect/train6/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb8224e7454c9af69a74f9d56479f6efd292dc7458dcb3e31929944118e2f38 +size 195334 diff --git a/runs/detect/train6/weights/best.pt b/runs/detect/train6/weights/best.pt new file mode 100644 index 0000000..8dae650 Binary files /dev/null and b/runs/detect/train6/weights/best.pt differ diff --git a/runs/detect/train6/weights/last.pt b/runs/detect/train6/weights/last.pt new file mode 100644 index 0000000..c6c40fb Binary files /dev/null and b/runs/detect/train6/weights/last.pt differ diff --git a/runs/detect/train7/args.yaml b/runs/detect/train7/args.yaml new file mode 100644 index 0000000..73d3180 --- /dev/null +++ b/runs/detect/train7/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/搭电设备/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train7 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train7 diff --git a/runs/detect/train7/labels.jpg b/runs/detect/train7/labels.jpg new file mode 100644 index 0000000..5d212b7 --- /dev/null +++ b/runs/detect/train7/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d11ac8239643447d220f9faf23cc02ab149d9506abafa493d7142d6af8e1e81 +size 129912 diff --git a/runs/detect/train7/train_batch0.jpg b/runs/detect/train7/train_batch0.jpg new file mode 100644 index 0000000..d02a314 --- /dev/null +++ b/runs/detect/train7/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef226c885053a0c4a1ce0ae91dc3069f4bf9b35672ea44f4f8cb7bb79b340aaf +size 499591 diff --git a/runs/detect/train7/train_batch1.jpg b/runs/detect/train7/train_batch1.jpg new file mode 100644 index 0000000..fabb82a --- /dev/null +++ b/runs/detect/train7/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4797d340a50e0317633f887e5eaf1fc2890c02f1a4a7e3020972b0001bc560bf +size 471507 diff --git a/runs/detect/train7/train_batch2.jpg b/runs/detect/train7/train_batch2.jpg new file mode 100644 index 0000000..bb3e748 --- /dev/null +++ b/runs/detect/train7/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be458693533be05d5167b3783814657104e0ca183ceaabd2e7c021507df8b7d +size 477198 diff --git a/runs/detect/train8/args.yaml b/runs/detect/train8/args.yaml new file mode 100644 index 0000000..0efd0d7 --- /dev/null +++ b/runs/detect/train8/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/搭电设备/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train8 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train8 diff --git a/runs/detect/train8/labels.jpg b/runs/detect/train8/labels.jpg new file mode 100644 index 0000000..5d212b7 --- /dev/null +++ b/runs/detect/train8/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d11ac8239643447d220f9faf23cc02ab149d9506abafa493d7142d6af8e1e81 +size 129912 diff --git a/runs/detect/train8/results.csv b/runs/detect/train8/results.csv new file mode 100644 index 0000000..9f4d849 --- /dev/null +++ b/runs/detect/train8/results.csv @@ -0,0 +1,2 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,199.286,0.71837,39.5761,0.78756,0.00011,0.88889,0.00163,0.00049,0.26262,54.2854,0.45263,0.000551221,0.000551221,0.000551221 diff --git a/runs/detect/train8/train_batch0.jpg b/runs/detect/train8/train_batch0.jpg new file mode 100644 index 0000000..d02a314 --- /dev/null +++ b/runs/detect/train8/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef226c885053a0c4a1ce0ae91dc3069f4bf9b35672ea44f4f8cb7bb79b340aaf +size 499591 diff --git a/runs/detect/train8/train_batch1.jpg b/runs/detect/train8/train_batch1.jpg new file mode 100644 index 0000000..fabb82a --- /dev/null +++ b/runs/detect/train8/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4797d340a50e0317633f887e5eaf1fc2890c02f1a4a7e3020972b0001bc560bf +size 471507 diff --git a/runs/detect/train8/train_batch2.jpg b/runs/detect/train8/train_batch2.jpg new file mode 100644 index 0000000..bb3e748 --- /dev/null +++ b/runs/detect/train8/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be458693533be05d5167b3783814657104e0ca183ceaabd2e7c021507df8b7d +size 477198 diff --git a/runs/detect/train8/weights/best.pt b/runs/detect/train8/weights/best.pt new file mode 100644 index 0000000..a4fd49f Binary files /dev/null and b/runs/detect/train8/weights/best.pt differ diff --git a/runs/detect/train8/weights/last.pt b/runs/detect/train8/weights/last.pt new file mode 100644 index 0000000..a4fd49f Binary files /dev/null and b/runs/detect/train8/weights/last.pt differ diff --git a/runs/detect/train9/BoxF1_curve.png b/runs/detect/train9/BoxF1_curve.png new file mode 100644 index 0000000..f8af388 --- /dev/null +++ b/runs/detect/train9/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe60fd8d6ad19f2e794cb061e33ae8c60b88d88ef1e9a66a9f4e3dab5f1378b +size 113870 diff --git a/runs/detect/train9/BoxPR_curve.png b/runs/detect/train9/BoxPR_curve.png new file mode 100644 index 0000000..93a0627 --- /dev/null +++ b/runs/detect/train9/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7905f14bcbe67dd4d453028a42fa565f19fe9b663b9724f238a8556f4ddbf03d +size 72985 diff --git a/runs/detect/train9/BoxP_curve.png b/runs/detect/train9/BoxP_curve.png new file mode 100644 index 0000000..744b8df --- /dev/null +++ b/runs/detect/train9/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fad8d8487fc9b93387c818f523ce06e7dd738ea36021e1477a7c5625c08939b +size 102606 diff --git a/runs/detect/train9/BoxR_curve.png b/runs/detect/train9/BoxR_curve.png new file mode 100644 index 0000000..4f77bcb --- /dev/null +++ b/runs/detect/train9/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae034e67d94a19f984f380949cf11c3013acae2e269afff365bc9f9187f4367 +size 99813 diff --git a/runs/detect/train9/args.yaml b/runs/detect/train9/args.yaml new file mode 100644 index 0000000..098105e --- /dev/null +++ b/runs/detect/train9/args.yaml @@ -0,0 +1,106 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/搭电测试/data.yaml +epochs: 50 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: null +name: train9 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/detect/train9 diff --git a/runs/detect/train9/confusion_matrix.png b/runs/detect/train9/confusion_matrix.png new file mode 100644 index 0000000..1fafc70 --- /dev/null +++ b/runs/detect/train9/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9665c0985c2815d62f6afefcbb7ff2d31dfc3fdc440f46b27b079e51aa0b7bf4 +size 108546 diff --git a/runs/detect/train9/confusion_matrix_normalized.png b/runs/detect/train9/confusion_matrix_normalized.png new file mode 100644 index 0000000..aed6179 --- /dev/null +++ b/runs/detect/train9/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619d31f9dbe5b69b2bb4834603f7935cef8912309fdb621c85ece98b2b8e8db1 +size 117103 diff --git a/runs/detect/train9/labels.jpg b/runs/detect/train9/labels.jpg new file mode 100644 index 0000000..5d212b7 --- /dev/null +++ b/runs/detect/train9/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d11ac8239643447d220f9faf23cc02ab149d9506abafa493d7142d6af8e1e81 +size 129912 diff --git a/runs/detect/train9/results.csv b/runs/detect/train9/results.csv new file mode 100644 index 0000000..5431936 --- /dev/null +++ b/runs/detect/train9/results.csv @@ -0,0 +1,51 @@ +epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,4.13884,1.77846,3.33264,2.33034,0.00888,1,0.44724,0.10058,1.65522,4.41347,2.47633,3.334e-05,3.334e-05,3.334e-05 +2,7.95171,1.72813,3.19158,2.0307,0.0084,1,0.39398,0.10342,1.52837,4.31714,2.30326,8.16997e-05,8.16997e-05,8.16997e-05 +3,11.7618,1.74123,3.20535,2.01833,0.00802,1,0.39633,0.13763,1.54904,4.23266,2.23775,0.000128079,0.000128079,0.000128079 +4,15.8053,1.56293,3.17916,1.84538,0.00731,1,0.42639,0.1565,1.46679,4.48816,2.19503,0.000172478,0.000172478,0.000172478 +5,19.557,1.53862,3.16007,1.92064,0.00705,1,0.6226,0.21889,1.70659,4.48726,2.34355,0.000214896,0.000214896,0.000214896 +6,23.3485,1.35101,2.91006,1.78661,0.00692,1,0.52871,0.19654,2.03536,4.37695,2.71309,0.000255334,0.000255334,0.000255334 +7,27.0409,1.33042,2.47366,1.59851,0.00677,1,0.60046,0.21303,2.06413,4.27037,2.73235,0.000293792,0.000293792,0.000293792 +8,30.6982,1.18165,2.4076,1.56059,0.00667,1,0.56423,0.18997,1.8964,4.13488,2.5848,0.000330269,0.000330269,0.000330269 +9,34.4286,1.33686,2.1548,1.71402,0.00673,1,0.36111,0.16345,1.70105,3.97662,2.28984,0.000364766,0.000364766,0.000364766 +10,38.1359,1.42876,2.11027,1.71695,0.0069,1,0.32653,0.12901,1.68899,3.96796,2.27339,0.000397283,0.000397283,0.000397283 +11,41.8517,1.09018,1.98268,1.46483,0.00746,1,0.3115,0.09539,1.71328,4.18903,2.33634,0.000427819,0.000427819,0.000427819 +12,45.5922,1.19601,2.00373,1.5379,0.00781,1,0.2379,0.08486,1.7265,4.18302,2.51617,0.000456375,0.000456375,0.000456375 +13,49.3777,1.12847,1.88698,1.54784,0.00867,1,0.24466,0.10442,1.9779,4.42834,2.79567,0.00048295,0.00048295,0.00048295 +14,53.2037,1.26049,1.79189,1.50568,0.0103,1,0.35211,0.15849,2.05899,4.27574,3.03359,0.000507545,0.000507545,0.000507545 +15,57.1683,1.27232,1.65185,1.50434,0.0103,1,0.35211,0.15849,2.05899,4.27574,3.03359,0.000530159,0.000530159,0.000530159 +16,60.9876,1.10646,1.95543,1.45801,1,0.17816,0.51321,0.173,2.03663,4.2092,3.06294,0.000550793,0.000550793,0.000550793 +17,64.9107,1.2465,1.94935,1.65895,1,0.21953,0.53738,0.19021,2.02496,3.99606,2.98039,0.000569447,0.000569447,0.000569447 +18,68.6453,1.0855,1.70094,1.34159,1,0.21953,0.53738,0.19021,2.02496,3.99606,2.98039,0.000586121,0.000586121,0.000586121 +19,72.5955,1.01695,1.69813,1.40709,0.73623,0.31497,0.5051,0.19527,2.08978,3.79286,2.96008,0.000600813,0.000600813,0.000600813 +20,76.5665,1.07672,1.68339,1.41294,1,0.32021,0.46135,0.24505,2.13268,4.06905,2.98995,0.000613526,0.000613526,0.000613526 +21,83.0796,0.98015,1.46723,1.33931,1,0.32021,0.46135,0.24505,2.13268,4.06905,2.98995,0.000624258,0.000624258,0.000624258 +22,89.6533,1.08455,1.61053,1.40134,0.74337,0.32449,0.4677,0.20904,2.11032,3.76359,2.94544,0.00063301,0.00063301,0.00063301 +23,93.6034,1.07545,1.56754,1.44217,0.74337,0.32449,0.4677,0.20904,2.11032,3.76359,2.94544,0.000639781,0.000639781,0.000639781 +24,97.4782,1.19834,1.52183,1.39571,0.53334,0.55556,0.54413,0.18192,2.15579,3.37617,3.04896,0.000644572,0.000644572,0.000644572 +25,102.268,1.19131,1.49498,1.52923,0.53334,0.55556,0.54413,0.18192,2.15579,3.37617,3.04896,0.000647383,0.000647383,0.000647383 +26,106.391,1.31629,1.60052,1.53745,0.49185,0.55556,0.55173,0.19505,2.07247,3.2729,2.97799,0.000648213,0.000648213,0.000648213 +27,110.337,0.95128,1.60474,1.42473,0.49185,0.55556,0.55173,0.19505,2.07247,3.2729,2.97799,0.000647063,0.000647063,0.000647063 +28,114.137,0.8898,1.49152,1.32525,0.50492,0.88889,0.61617,0.25185,2.21075,3.40991,3.1845,0.000643932,0.000643932,0.000643932 +29,118.191,0.79928,1.28674,1.19097,0.50492,0.88889,0.61617,0.25185,2.21075,3.40991,3.1845,0.000638821,0.000638821,0.000638821 +30,122.253,0.85916,1.32514,1.29633,0.50492,0.88889,0.61617,0.25185,2.21075,3.40991,3.1845,0.00063173,0.00063173,0.00063173 +31,126.151,1.0073,1.57764,1.45026,0.57871,0.77778,0.5875,0.24061,2.2685,3.43404,3.27659,0.000622658,0.000622658,0.000622658 +32,130.16,0.8752,1.46703,1.35818,0.57871,0.77778,0.5875,0.24061,2.2685,3.43404,3.27659,0.000611606,0.000611606,0.000611606 +33,134.112,1.1025,1.40791,1.47637,0.78061,0.77778,0.77435,0.31578,2.06794,3.30737,2.86496,0.000598573,0.000598573,0.000598573 +34,137.969,0.84155,1.22317,1.24044,0.78061,0.77778,0.77435,0.31578,2.06794,3.30737,2.86496,0.000577782,0.000577782,0.000577782 +35,141.791,0.85341,1.33207,1.27288,0.78061,0.77778,0.77435,0.31578,2.06794,3.30737,2.86496,0.000544776,0.000544776,0.000544776 +36,145.632,0.82434,1.26827,1.24657,0.85893,0.77778,0.83659,0.30875,2.16614,3.05484,2.90834,0.000511769,0.000511769,0.000511769 +37,149.473,0.94346,1.29628,1.2461,0.85893,0.77778,0.83659,0.30875,2.16614,3.05484,2.90834,0.000478762,0.000478762,0.000478762 +38,153.33,0.90714,1.466,1.31152,0.85893,0.77778,0.83659,0.30875,2.16614,3.05484,2.90834,0.000445756,0.000445756,0.000445756 +39,157.306,0.93143,2.0317,1.49936,0.73725,0.62699,0.64172,0.27539,2.03222,3.3425,2.67315,0.000412749,0.000412749,0.000412749 +40,161.034,0.95984,1.39261,1.30483,0.73725,0.62699,0.64172,0.27539,2.03222,3.3425,2.67315,0.000379743,0.000379743,0.000379743 +41,164.952,0.89678,2.04028,1.41878,0.62093,0.55556,0.64873,0.2601,2.05188,3.07867,2.72256,0.000346736,0.000346736,0.000346736 +42,168.73,0.87839,2.00898,1.3825,0.62093,0.55556,0.64873,0.2601,2.05188,3.07867,2.72256,0.000313729,0.000313729,0.000313729 +43,172.638,0.85799,1.87336,1.28866,0.62093,0.55556,0.64873,0.2601,2.05188,3.07867,2.72256,0.000280723,0.000280723,0.000280723 +44,176.518,0.78712,1.92299,1.30836,0.95856,0.55556,0.71923,0.28658,2.16511,2.83326,2.82944,0.000247716,0.000247716,0.000247716 +45,180.437,0.67851,1.74282,1.22576,0.95856,0.55556,0.71923,0.28658,2.16511,2.83326,2.82944,0.00021471,0.00021471,0.00021471 +46,184.375,0.69648,1.72483,1.285,0.95856,0.55556,0.71923,0.28658,2.16511,2.83326,2.82944,0.000181703,0.000181703,0.000181703 +47,188.218,0.67944,1.72191,1.2338,1,0.65774,0.76648,0.31952,2.15672,2.7884,2.91125,0.000148696,0.000148696,0.000148696 +48,192.026,0.66697,1.76311,1.28209,1,0.65774,0.76648,0.31952,2.15672,2.7884,2.91125,0.00011569,0.00011569,0.00011569 +49,195.81,0.70898,1.98935,1.2712,0.93399,0.66667,0.78405,0.29753,2.17724,2.85954,2.9686,8.26832e-05,8.26832e-05,8.26832e-05 +50,199.626,0.81447,1.78145,1.34858,0.93399,0.66667,0.78405,0.29753,2.17724,2.85954,2.9686,4.96766e-05,4.96766e-05,4.96766e-05 diff --git a/runs/detect/train9/results.png b/runs/detect/train9/results.png new file mode 100644 index 0000000..c8ee615 --- /dev/null +++ b/runs/detect/train9/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095a00fb98d03aa1e63f6dbec2e564617eefc9c00cf08791434ad4dcdb264768 +size 308228 diff --git a/runs/detect/train9/train_batch0.jpg b/runs/detect/train9/train_batch0.jpg new file mode 100644 index 0000000..20da6cb --- /dev/null +++ b/runs/detect/train9/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4bfe66edc2b389272d9d1d7a3651a0ae9c9a6ed2a937cfee22353b95fc86ff +size 563234 diff --git a/runs/detect/train9/train_batch1.jpg b/runs/detect/train9/train_batch1.jpg new file mode 100644 index 0000000..b18c809 --- /dev/null +++ b/runs/detect/train9/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef96ce76de0f49fc25d79cb748af79187c2c5d259a51673eb174e3b8e7c59c53 +size 574173 diff --git a/runs/detect/train9/train_batch120.jpg b/runs/detect/train9/train_batch120.jpg new file mode 100644 index 0000000..0152dfe --- /dev/null +++ b/runs/detect/train9/train_batch120.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35432611fdc9f5cec5129342e7e1f4e87bb9230643f6fd05d40a1ef1cf2c9f9 +size 436708 diff --git a/runs/detect/train9/train_batch121.jpg b/runs/detect/train9/train_batch121.jpg new file mode 100644 index 0000000..9e66b80 --- /dev/null +++ b/runs/detect/train9/train_batch121.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d288bd68abf46a473c5bd2b17330b698944e1c292448a513d582efd61bda08 +size 407436 diff --git a/runs/detect/train9/train_batch122.jpg b/runs/detect/train9/train_batch122.jpg new file mode 100644 index 0000000..9e5d061 --- /dev/null +++ b/runs/detect/train9/train_batch122.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6c5158d20e613a34842362d323e3dad0bc7a534541cadae444b4cc69d67e94 +size 199429 diff --git a/runs/detect/train9/train_batch2.jpg b/runs/detect/train9/train_batch2.jpg new file mode 100644 index 0000000..f2dbe43 --- /dev/null +++ b/runs/detect/train9/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7410738b5ac7cdf9659b9439a3613de2c4ed32d490d36ad48477ebb8ff7926 +size 245883 diff --git a/runs/detect/train9/val_batch0_labels.jpg b/runs/detect/train9/val_batch0_labels.jpg new file mode 100644 index 0000000..26b1701 --- /dev/null +++ b/runs/detect/train9/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636e63343275399bd16164dd6f069a1c782a97e72708222ef4fc2a98420a8f91 +size 579815 diff --git a/runs/detect/train9/val_batch0_pred.jpg b/runs/detect/train9/val_batch0_pred.jpg new file mode 100644 index 0000000..1b3d28b --- /dev/null +++ b/runs/detect/train9/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d82f59307dcd2068323e4b020859d51571aabfbb763155362211205a5e2260 +size 601530 diff --git a/runs/detect/train9/weights/best.pt b/runs/detect/train9/weights/best.pt new file mode 100644 index 0000000..8f80bd2 Binary files /dev/null and b/runs/detect/train9/weights/best.pt differ diff --git a/runs/detect/train9/weights/last.pt b/runs/detect/train9/weights/last.pt new file mode 100644 index 0000000..0aa64e2 Binary files /dev/null and b/runs/detect/train9/weights/last.pt differ diff --git a/runs/segment/.DS_Store b/runs/segment/.DS_Store new file mode 100644 index 0000000..2180962 Binary files /dev/null and b/runs/segment/.DS_Store differ diff --git a/runs/segment/train/args.yaml b/runs/segment/train/args.yaml new file mode 100644 index 0000000..c642c8e --- /dev/null +++ b/runs/segment/train/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/搭电测试/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train diff --git a/runs/segment/train/labels.jpg b/runs/segment/train/labels.jpg new file mode 100644 index 0000000..5d212b7 --- /dev/null +++ b/runs/segment/train/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d11ac8239643447d220f9faf23cc02ab149d9506abafa493d7142d6af8e1e81 +size 129912 diff --git a/runs/segment/train10/args.yaml b/runs/segment/train10/args.yaml new file mode 100644 index 0000000..e823a8e --- /dev/null +++ b/runs/segment/train10/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 1300 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train10 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train10 diff --git a/runs/segment/train10/labels.jpg b/runs/segment/train10/labels.jpg new file mode 100644 index 0000000..bc88320 --- /dev/null +++ b/runs/segment/train10/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce77663ef896909c4f6f2feba63a0fc92e9b7783818e89f4bc8821af05683c0 +size 144634 diff --git a/runs/segment/train10/results.csv b/runs/segment/train10/results.csv new file mode 100644 index 0000000..021ccad --- /dev/null +++ b/runs/segment/train10/results.csv @@ -0,0 +1,2 @@ +epoch,time,train/box_loss,train/seg_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),metrics/precision(M),metrics/recall(M),metrics/mAP50(M),metrics/mAP50-95(M),val/box_loss,val/seg_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,271.891,0.52253,1.026,2.01357,0.91772,0.99935,1,0.995,0.93811,0.99935,1,0.995,0.96644,0.37434,0.53369,2.00047,0.84429,0.00330623,0.00330623,0.00330623 diff --git a/runs/segment/train10/train_batch0.jpg b/runs/segment/train10/train_batch0.jpg new file mode 100644 index 0000000..ca40987 --- /dev/null +++ b/runs/segment/train10/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208263e89f8d29d47886905d4efcde8f6aebda14529c296614a4f859be2279cb +size 539820 diff --git a/runs/segment/train10/train_batch1.jpg b/runs/segment/train10/train_batch1.jpg new file mode 100644 index 0000000..ce239ed --- /dev/null +++ b/runs/segment/train10/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a89b26780af1ea9bd4170f7ea55c5e67446219b7f307b6ee78b46798ba829e1 +size 506526 diff --git a/runs/segment/train10/train_batch2.jpg b/runs/segment/train10/train_batch2.jpg new file mode 100644 index 0000000..f2527c3 --- /dev/null +++ b/runs/segment/train10/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c17ceeb14f37ad59c551e058cac715f89784a29ed1c77bd5a40ac50cf43b01f +size 505539 diff --git a/runs/segment/train10/weights/best.pt b/runs/segment/train10/weights/best.pt new file mode 100644 index 0000000..a8e2911 Binary files /dev/null and b/runs/segment/train10/weights/best.pt differ diff --git a/runs/segment/train10/weights/last.pt b/runs/segment/train10/weights/last.pt new file mode 100644 index 0000000..a8e2911 Binary files /dev/null and b/runs/segment/train10/weights/last.pt differ diff --git a/runs/segment/train11/BoxF1_curve.png b/runs/segment/train11/BoxF1_curve.png new file mode 100644 index 0000000..6fa81e9 --- /dev/null +++ b/runs/segment/train11/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d0d36444230b0f13688fb98064e46992a5cf20acad925a28443a6ce78b1bd7 +size 80620 diff --git a/runs/segment/train11/BoxPR_curve.png b/runs/segment/train11/BoxPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train11/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train11/BoxP_curve.png b/runs/segment/train11/BoxP_curve.png new file mode 100644 index 0000000..42b6e1a --- /dev/null +++ b/runs/segment/train11/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94074ee4a322204fba665653d3eb1a1be92175f5662e5b4c510d37ee19ee23e0 +size 71413 diff --git a/runs/segment/train11/BoxR_curve.png b/runs/segment/train11/BoxR_curve.png new file mode 100644 index 0000000..712daad --- /dev/null +++ b/runs/segment/train11/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ca58bdd35163cea1f84822016b4a327271a1ee09972323c80a5cf337fc8dc5 +size 82302 diff --git a/runs/segment/train11/MaskF1_curve.png b/runs/segment/train11/MaskF1_curve.png new file mode 100644 index 0000000..6fa81e9 --- /dev/null +++ b/runs/segment/train11/MaskF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d0d36444230b0f13688fb98064e46992a5cf20acad925a28443a6ce78b1bd7 +size 80620 diff --git a/runs/segment/train11/MaskPR_curve.png b/runs/segment/train11/MaskPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train11/MaskPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train11/MaskP_curve.png b/runs/segment/train11/MaskP_curve.png new file mode 100644 index 0000000..42b6e1a --- /dev/null +++ b/runs/segment/train11/MaskP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94074ee4a322204fba665653d3eb1a1be92175f5662e5b4c510d37ee19ee23e0 +size 71413 diff --git a/runs/segment/train11/MaskR_curve.png b/runs/segment/train11/MaskR_curve.png new file mode 100644 index 0000000..712daad --- /dev/null +++ b/runs/segment/train11/MaskR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ca58bdd35163cea1f84822016b4a327271a1ee09972323c80a5cf337fc8dc5 +size 82302 diff --git a/runs/segment/train11/args.yaml b/runs/segment/train11/args.yaml new file mode 100644 index 0000000..e5bbaf8 --- /dev/null +++ b/runs/segment/train11/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 150 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: mps +workers: 8 +project: runs/segment +name: train11 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train11 diff --git a/runs/segment/train11/confusion_matrix.png b/runs/segment/train11/confusion_matrix.png new file mode 100644 index 0000000..201b5ea --- /dev/null +++ b/runs/segment/train11/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7005dae04bcb8f0ee9016e3ce6cbadde89574736dfa86174170baf3cde5600e +size 147479 diff --git a/runs/segment/train11/confusion_matrix_normalized.png b/runs/segment/train11/confusion_matrix_normalized.png new file mode 100644 index 0000000..8ef1a63 --- /dev/null +++ b/runs/segment/train11/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce9bd27a92d260a33ee7599ea4ea0b1d3b21fa125cf9be747082c7e31271eb9 +size 151672 diff --git a/runs/segment/train11/labels.jpg b/runs/segment/train11/labels.jpg new file mode 100644 index 0000000..bc88320 --- /dev/null +++ b/runs/segment/train11/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce77663ef896909c4f6f2feba63a0fc92e9b7783818e89f4bc8821af05683c0 +size 144634 diff --git a/runs/segment/train11/results.csv b/runs/segment/train11/results.csv new file mode 100644 index 0000000..0e92a24 --- /dev/null +++ b/runs/segment/train11/results.csv @@ -0,0 +1,151 @@ +epoch,time,train/box_loss,train/seg_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),metrics/precision(M),metrics/recall(M),metrics/mAP50(M),metrics/mAP50-95(M),val/box_loss,val/seg_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,139.055,0.51783,0.96341,1.55737,0.92752,0.99488,1,0.99496,0.90723,0.99488,1,0.99496,0.9536,0.43866,0.54516,1.55576,0.87678,0.000330623,0.000330623,0.000330623 +2,260.398,0.50426,0.74211,0.86738,0.8993,0.9994,1,0.995,0.90795,0.9994,1,0.995,0.95721,0.41932,0.53958,0.97876,0.86659,0.000659575,0.000659575,0.000659575 +3,397.692,0.52296,0.78217,0.77281,0.91491,0.99805,1,0.995,0.91132,0.99805,1,0.995,0.9568,0.41321,0.54739,0.7569,0.87143,0.000984126,0.000984126,0.000984126 +4,575.721,0.50412,0.73939,0.66122,0.90265,0.99902,1,0.995,0.9061,0.99902,1,0.995,0.96736,0.41558,0.47492,0.64481,0.86244,0.0009802,0.0009802,0.0009802 +5,761.231,0.49842,0.78608,0.58617,0.90459,0.99525,1,0.995,0.92492,0.99525,1,0.995,0.94955,0.38173,0.5289,0.5617,0.85076,0.0009736,0.0009736,0.0009736 +6,948.733,0.48815,0.70737,0.52934,0.89474,0.9997,0.99184,0.995,0.91401,0.9997,0.99184,0.995,0.96438,0.3874,0.47757,0.50744,0.84889,0.000967,0.000967,0.000967 +7,1114.13,0.49303,0.7039,0.4785,0.89117,0.99581,1,0.995,0.92401,0.99581,1,0.995,0.96307,0.38048,0.48372,0.42251,0.85022,0.0009604,0.0009604,0.0009604 +8,1291.73,0.49586,0.68614,0.45418,0.89593,0.99582,1,0.995,0.91908,0.99582,1,0.995,0.95783,0.3641,0.49369,0.38894,0.83893,0.0009538,0.0009538,0.0009538 +9,1488.03,0.46222,0.67273,0.41533,0.89176,0.99961,1,0.995,0.94748,0.99961,1,0.995,0.96723,0.34051,0.50537,0.33782,0.837,0.0009472,0.0009472,0.0009472 +10,1679.32,0.47134,0.74137,0.40418,0.89268,0.99128,1,0.99446,0.94442,0.99128,1,0.99446,0.97015,0.33237,0.47669,0.31102,0.83153,0.0009406,0.0009406,0.0009406 +11,1852.68,0.46672,0.67759,0.3949,0.88904,0.99497,1,0.995,0.90265,0.99497,1,0.995,0.9674,0.4292,0.48221,0.32234,0.85485,0.000934,0.000934,0.000934 +12,1996.14,0.45733,0.66375,0.37524,0.88079,0.99969,1,0.995,0.94245,0.99969,1,0.995,0.96897,0.34028,0.46251,0.28701,0.83424,0.0009274,0.0009274,0.0009274 +13,2134.68,0.45207,0.67131,0.36524,0.87929,0.99562,1,0.995,0.94733,0.99562,1,0.995,0.97253,0.33358,0.45301,0.2792,0.83477,0.0009208,0.0009208,0.0009208 +14,2274.13,0.43598,0.64971,0.34174,0.8754,0.99975,1,0.995,0.93993,0.99975,1,0.995,0.97418,0.32695,0.45331,0.26197,0.82682,0.0009142,0.0009142,0.0009142 +15,2430.29,0.44315,0.64735,0.34565,0.88015,0.99951,1,0.995,0.94254,0.99951,1,0.995,0.97046,0.33534,0.47252,0.24799,0.82639,0.0009076,0.0009076,0.0009076 +16,2611.82,0.43821,0.64586,0.33499,0.88179,0.99975,1,0.995,0.95315,0.99975,1,0.995,0.97253,0.29553,0.45371,0.23569,0.8163,0.000901,0.000901,0.000901 +17,2790.39,0.43247,0.62824,0.3264,0.87626,0.99954,1,0.995,0.96002,0.99954,1,0.995,0.96685,0.31545,0.46307,0.24131,0.83224,0.0008944,0.0008944,0.0008944 +18,2973.76,0.42176,0.64054,0.32506,0.87988,0.99937,1,0.995,0.95034,0.99937,1,0.995,0.97538,0.32048,0.47809,0.22956,0.83006,0.0008878,0.0008878,0.0008878 +19,3169.66,0.44271,0.65479,0.32084,0.88028,0.99973,1,0.995,0.93976,0.99973,1,0.995,0.97214,0.32967,0.45089,0.24391,0.83017,0.0008812,0.0008812,0.0008812 +20,3344.27,0.42848,0.64444,0.31614,0.87885,0.99969,1,0.995,0.95916,0.99969,1,0.995,0.97305,0.29889,0.45439,0.218,0.82212,0.0008746,0.0008746,0.0008746 +21,3540.7,0.42571,0.64173,0.30463,0.87867,0.99345,1,0.995,0.94543,0.99668,1,0.995,0.97677,0.35125,0.44754,0.26806,0.83401,0.000868,0.000868,0.000868 +22,3707.59,0.4257,0.62436,0.30296,0.87619,0.99946,1,0.995,0.96014,0.99946,1,0.995,0.97404,0.30448,0.44555,0.22467,0.82514,0.0008614,0.0008614,0.0008614 +23,3881.86,0.42069,0.64832,0.30457,0.87348,0.99974,1,0.995,0.95167,0.99974,1,0.995,0.96992,0.31607,0.4633,0.22886,0.8221,0.0008548,0.0008548,0.0008548 +24,4088.07,0.42438,0.63487,0.30946,0.87912,0.99953,0.99592,0.995,0.94845,0.99953,0.99592,0.995,0.96826,0.31638,0.4585,0.21302,0.82101,0.0008482,0.0008482,0.0008482 +25,4272.43,0.42142,0.62778,0.29961,0.87023,0.99957,1,0.995,0.95514,0.99957,1,0.995,0.97504,0.32943,0.44653,0.21096,0.82319,0.0008416,0.0008416,0.0008416 +26,4439.02,0.40315,0.61637,0.28823,0.87267,0.99969,1,0.995,0.96145,0.99969,1,0.995,0.97528,0.30411,0.45179,0.21882,0.82637,0.000835,0.000835,0.000835 +27,4609.18,0.41317,0.6446,0.29232,0.87358,0.99971,1,0.995,0.95491,0.99971,1,0.995,0.96772,0.31066,0.46781,0.20253,0.83117,0.0008284,0.0008284,0.0008284 +28,4824.97,0.41457,0.63745,0.28521,0.87846,0.99972,1,0.995,0.94528,0.99972,1,0.995,0.97333,0.34186,0.45308,0.20527,0.83041,0.0008218,0.0008218,0.0008218 +29,5016.37,0.3991,0.63078,0.28024,0.86644,0.99974,1,0.995,0.96271,0.99974,1,0.995,0.9771,0.28963,0.44896,0.19435,0.82049,0.0008152,0.0008152,0.0008152 +30,5200.53,0.40916,0.64525,0.28925,0.87057,0.99976,1,0.995,0.96768,0.99976,1,0.995,0.97447,0.28437,0.44387,0.20032,0.81394,0.0008086,0.0008086,0.0008086 +31,5391.03,0.4076,0.64725,0.28729,0.86871,0.99973,1,0.995,0.9568,0.99973,1,0.995,0.95638,0.31059,0.48228,0.20549,0.81972,0.000802,0.000802,0.000802 +32,5587.08,0.40158,0.64288,0.27826,0.87089,0.99873,1,0.995,0.9616,0.99873,1,0.995,0.98018,0.29435,0.43726,0.189,0.8143,0.0007954,0.0007954,0.0007954 +33,5799.06,0.3882,0.60319,0.27095,0.86954,0.99971,1,0.995,0.96976,0.99971,1,0.995,0.98107,0.28503,0.43049,0.19596,0.81344,0.0007888,0.0007888,0.0007888 +34,6022.16,0.40109,0.60694,0.28392,0.86835,0.9997,1,0.995,0.96119,0.9997,1,0.995,0.97526,0.29624,0.43631,0.19047,0.81531,0.0007822,0.0007822,0.0007822 +35,6203,0.39528,0.62999,0.27324,0.87101,0.99976,1,0.995,0.9588,0.99976,1,0.995,0.97423,0.2851,0.43829,0.18917,0.81317,0.0007756,0.0007756,0.0007756 +36,6399.12,0.39756,0.6145,0.27422,0.86832,0.99568,1,0.995,0.97049,0.99568,1,0.995,0.98072,0.27836,0.43542,0.18624,0.81538,0.000769,0.000769,0.000769 +37,6567.71,0.39994,0.62583,0.2753,0.87362,0.99975,1,0.995,0.97215,0.99975,1,0.995,0.98284,0.28825,0.43122,0.19854,0.81294,0.0007624,0.0007624,0.0007624 +38,6762.22,0.40904,0.64032,0.27931,0.87297,0.99966,1,0.995,0.95977,0.99966,1,0.995,0.97676,0.32521,0.43885,0.19755,0.82075,0.0007558,0.0007558,0.0007558 +39,6948.13,0.40239,0.61222,0.27526,0.87362,0.99972,1,0.995,0.95386,0.99972,1,0.995,0.98197,0.33,0.42618,0.19553,0.82523,0.0007492,0.0007492,0.0007492 +40,7152.59,0.40351,0.63933,0.27288,0.87355,1,0.99957,0.995,0.95883,1,0.99957,0.995,0.98303,0.3016,0.42484,0.2036,0.81626,0.0007426,0.0007426,0.0007426 +41,7363.02,0.39035,0.62248,0.27616,0.87167,0.99563,1,0.995,0.96432,0.99563,1,0.995,0.97155,0.2927,0.44559,0.20623,0.82362,0.000736,0.000736,0.000736 +42,7559.74,0.40006,0.63507,0.2842,0.87135,0.99977,1,0.995,0.97008,0.99977,1,0.995,0.98049,0.28323,0.42974,0.19663,0.81284,0.0007294,0.0007294,0.0007294 +43,7787.87,0.39628,0.61961,0.27598,0.86756,0.99959,1,0.995,0.96447,0.99959,1,0.995,0.98152,0.30588,0.4434,0.2015,0.82528,0.0007228,0.0007228,0.0007228 +44,8093.82,0.40092,0.63258,0.2684,0.8718,0.99977,1,0.995,0.96937,0.99977,1,0.995,0.9775,0.28762,0.44254,0.19095,0.81978,0.0007162,0.0007162,0.0007162 +45,8290.16,0.39452,0.61621,0.26819,0.86306,0.99974,1,0.995,0.96785,0.99974,1,0.995,0.9723,0.28654,0.44511,0.19165,0.82173,0.0007096,0.0007096,0.0007096 +46,8509.02,0.38059,0.58492,0.25484,0.86935,0.99972,1,0.995,0.96018,0.99972,1,0.995,0.97555,0.29078,0.43636,0.17747,0.81238,0.000703,0.000703,0.000703 +47,8721.88,0.3789,0.60739,0.25737,0.86638,0.99972,1,0.995,0.96338,0.99972,1,0.995,0.98482,0.29613,0.43848,0.18793,0.82232,0.0006964,0.0006964,0.0006964 +48,8958.05,0.37904,0.59566,0.26102,0.86263,0.99978,1,0.995,0.97207,0.99978,1,0.995,0.98003,0.27414,0.43569,0.18374,0.81535,0.0006898,0.0006898,0.0006898 +49,9169.08,0.38293,0.62319,0.25913,0.86587,0.99976,1,0.995,0.9627,0.99976,1,0.995,0.97825,0.29802,0.42814,0.18404,0.81493,0.0006832,0.0006832,0.0006832 +50,9367.58,0.38419,0.60338,0.26358,0.86633,0.99977,1,0.995,0.97083,0.99977,1,0.995,0.98174,0.27022,0.4242,0.17382,0.80822,0.0006766,0.0006766,0.0006766 +51,9634.46,0.38,0.60973,0.25505,0.86321,0.99977,1,0.995,0.97526,0.99977,1,0.995,0.98346,0.26729,0.42394,0.16959,0.8059,0.00067,0.00067,0.00067 +52,9877.42,0.3874,0.59516,0.25512,0.86212,0.99977,1,0.995,0.97445,0.99977,1,0.995,0.98084,0.26846,0.42276,0.18384,0.80977,0.0006634,0.0006634,0.0006634 +53,10108.2,0.37331,0.58661,0.2452,0.86117,0.99977,1,0.995,0.97448,0.99977,1,0.995,0.97875,0.27514,0.43196,0.17421,0.80892,0.0006568,0.0006568,0.0006568 +54,10341.9,0.37748,0.59529,0.25051,0.86801,0.99964,1,0.995,0.97544,0.99964,1,0.995,0.98239,0.27104,0.41474,0.18188,0.80849,0.0006502,0.0006502,0.0006502 +55,10559.4,0.37077,0.61489,0.25163,0.86314,0.99976,1,0.995,0.9698,0.99976,1,0.995,0.98314,0.28408,0.41373,0.17134,0.81269,0.0006436,0.0006436,0.0006436 +56,10745.5,0.36763,0.61194,0.24893,0.86062,0.99954,1,0.995,0.96752,0.99954,1,0.995,0.9826,0.28441,0.42119,0.17209,0.81356,0.000637,0.000637,0.000637 +57,10948.2,0.38068,0.61371,0.25186,0.8622,0.99977,1,0.995,0.96729,0.99977,1,0.995,0.9787,0.29048,0.42878,0.17462,0.80952,0.0006304,0.0006304,0.0006304 +58,11134.9,0.36825,0.58505,0.24228,0.8565,0.99959,1,0.995,0.97891,0.99959,1,0.995,0.98395,0.26418,0.44406,0.16403,0.80887,0.0006238,0.0006238,0.0006238 +59,11324,0.36689,0.58407,0.23855,0.85953,0.99976,1,0.995,0.96057,0.99976,1,0.995,0.97923,0.30413,0.43241,0.17316,0.82102,0.0006172,0.0006172,0.0006172 +60,11522.1,0.37893,0.61223,0.24838,0.85599,0.99978,1,0.995,0.97029,0.99978,1,0.995,0.9854,0.26478,0.42148,0.16378,0.80894,0.0006106,0.0006106,0.0006106 +61,11704,0.36734,0.60756,0.24185,0.86024,0.99976,1,0.995,0.97546,0.99976,1,0.995,0.98644,0.27534,0.4141,0.17557,0.81014,0.000604,0.000604,0.000604 +62,14593.3,0.37513,0.59722,0.24196,0.86083,0.99976,1,0.995,0.97174,0.99976,1,0.995,0.98045,0.28442,0.43075,0.17649,0.81677,0.0005974,0.0005974,0.0005974 +63,15707.4,0.37167,0.60725,0.24106,0.85731,0.99967,1,0.995,0.97367,0.99967,1,0.995,0.97645,0.26834,0.43156,0.16934,0.8133,0.0005908,0.0005908,0.0005908 +64,15870.4,0.36771,0.57566,0.23993,0.85753,0.99973,1,0.995,0.96795,0.99973,1,0.995,0.97088,0.29741,0.4332,0.1722,0.8137,0.0005842,0.0005842,0.0005842 +65,16048.5,0.37351,0.58663,0.2407,0.86153,0.99975,1,0.995,0.97774,0.99975,1,0.995,0.98686,0.25624,0.41028,0.16355,0.8063,0.0005776,0.0005776,0.0005776 +66,16233.9,0.35677,0.5852,0.2413,0.8548,0.99959,1,0.995,0.97867,0.99959,1,0.995,0.98327,0.25541,0.41306,0.16609,0.80577,0.000571,0.000571,0.000571 +67,16420.5,0.36552,0.57532,0.24162,0.86284,0.99973,1,0.995,0.97882,0.99973,1,0.995,0.98178,0.27835,0.42354,0.17458,0.80982,0.0005644,0.0005644,0.0005644 +68,16627.8,0.36459,0.59229,0.24224,0.86356,0.99973,1,0.995,0.97506,0.99973,1,0.995,0.97936,0.26158,0.42069,0.16003,0.80518,0.0005578,0.0005578,0.0005578 +69,16827.6,0.36658,0.58756,0.23954,0.86547,0.99975,1,0.995,0.96221,0.99975,1,0.995,0.98218,0.29491,0.41672,0.18185,0.81372,0.0005512,0.0005512,0.0005512 +70,17046.8,0.35115,0.56619,0.23158,0.86025,0.99977,1,0.995,0.9795,0.99977,1,0.995,0.98404,0.27552,0.41501,0.172,0.8087,0.0005446,0.0005446,0.0005446 +71,17310.3,0.35726,0.56605,0.23589,0.85752,0.99977,1,0.995,0.97341,0.99977,1,0.995,0.98302,0.26802,0.42412,0.16598,0.80855,0.000538,0.000538,0.000538 +72,17554.9,0.37447,0.59297,0.24002,0.86033,0.99977,1,0.995,0.97021,0.99977,1,0.995,0.98667,0.27925,0.41825,0.16972,0.80888,0.0005314,0.0005314,0.0005314 +73,17813.1,0.36044,0.56325,0.23522,0.86411,0.99977,1,0.995,0.98031,0.99977,1,0.995,0.98502,0.26657,0.40765,0.16712,0.81067,0.0005248,0.0005248,0.0005248 +74,18083.1,0.34831,0.55639,0.22744,0.85567,0.99966,1,0.995,0.97796,0.99966,1,0.995,0.97774,0.26373,0.41678,0.16091,0.81506,0.0005182,0.0005182,0.0005182 +75,18330.8,0.35837,0.5824,0.23142,0.85921,0.99975,1,0.995,0.9679,0.99975,1,0.995,0.98255,0.27296,0.41945,0.1621,0.81032,0.0005116,0.0005116,0.0005116 +76,18597.7,0.35502,0.58633,0.22511,0.85546,0.99922,1,0.995,0.98017,0.99922,1,0.995,0.9842,0.26298,0.41572,0.16167,0.80424,0.000505,0.000505,0.000505 +77,18874.3,0.36634,0.593,0.22923,0.85947,0.99977,1,0.995,0.97728,0.99977,1,0.995,0.98432,0.26984,0.41709,0.16139,0.80706,0.0004984,0.0004984,0.0004984 +78,19115.6,0.34843,0.58768,0.22404,0.85658,0.99908,1,0.995,0.97802,0.99908,1,0.995,0.98449,0.2706,0.42061,0.15624,0.80566,0.0004918,0.0004918,0.0004918 +79,19353.8,0.34807,0.57931,0.22267,0.85242,0.99953,1,0.995,0.98129,0.99953,1,0.995,0.98582,0.25142,0.40864,0.15321,0.80569,0.0004852,0.0004852,0.0004852 +80,21512.9,0.35758,0.60518,0.22909,0.85572,0.99954,1,0.995,0.97994,0.99954,1,0.995,0.98294,0.26667,0.41124,0.15842,0.80871,0.0004786,0.0004786,0.0004786 +81,21666.6,0.35729,0.58723,0.22429,0.85762,0.99965,1,0.995,0.97292,0.99965,1,0.995,0.98339,0.27685,0.41586,0.15923,0.8129,0.000472,0.000472,0.000472 +82,21829.6,0.35324,0.60076,0.22988,0.8538,0.99944,1,0.995,0.97447,0.99944,1,0.995,0.982,0.26465,0.41876,0.15865,0.80672,0.0004654,0.0004654,0.0004654 +83,22010.3,0.34869,0.56348,0.22489,0.85197,0.99936,1,0.995,0.98126,0.99936,1,0.995,0.98297,0.25668,0.41367,0.16364,0.80585,0.0004588,0.0004588,0.0004588 +84,22201.5,0.35556,0.55978,0.22569,0.85912,0.99963,1,0.995,0.97484,0.99963,1,0.995,0.98552,0.26152,0.40623,0.15859,0.80538,0.0004522,0.0004522,0.0004522 +85,22404.2,0.34347,0.56181,0.21984,0.85001,0.99976,1,0.995,0.98066,0.99976,1,0.995,0.98377,0.24759,0.41715,0.14817,0.80569,0.0004456,0.0004456,0.0004456 +86,22614.5,0.34935,0.59586,0.22537,0.86181,0.99978,1,0.995,0.9797,0.99978,1,0.995,0.98563,0.25976,0.41099,0.15374,0.80891,0.000439,0.000439,0.000439 +87,22846.2,0.3426,0.58591,0.2268,0.85367,0.99939,1,0.995,0.97616,0.99939,1,0.995,0.98349,0.26382,0.42454,0.16259,0.80798,0.0004324,0.0004324,0.0004324 +88,22985.7,0.34342,0.57784,0.2175,0.85691,0.99976,1,0.995,0.97313,0.99976,1,0.995,0.98165,0.27227,0.43352,0.15449,0.81273,0.0004258,0.0004258,0.0004258 +89,23129.6,0.3513,0.57972,0.219,0.8544,0.99974,1,0.995,0.97987,0.99974,1,0.995,0.98094,0.25842,0.43441,0.15376,0.8092,0.0004192,0.0004192,0.0004192 +90,23270.8,0.34758,0.56535,0.22031,0.85275,0.99969,1,0.995,0.97787,0.99969,1,0.995,0.98243,0.26882,0.41549,0.15195,0.8133,0.0004126,0.0004126,0.0004126 +91,23422.4,0.35454,0.5808,0.22187,0.85848,0.99973,1,0.995,0.98107,0.99973,1,0.995,0.98405,0.24828,0.41266,0.14338,0.80453,0.000406,0.000406,0.000406 +92,23569.7,0.34618,0.5777,0.22011,0.85395,0.99975,1,0.995,0.97549,0.99975,1,0.995,0.9806,0.25522,0.42257,0.14914,0.80427,0.0003994,0.0003994,0.0003994 +93,23723.8,0.34176,0.56139,0.20968,0.85588,0.99975,1,0.995,0.97571,0.99975,1,0.995,0.98449,0.26658,0.42074,0.14868,0.81172,0.0003928,0.0003928,0.0003928 +94,23880.7,0.35171,0.57216,0.21931,0.85984,0.99966,1,0.995,0.98067,0.99966,1,0.995,0.98573,0.25263,0.41453,0.14773,0.80385,0.0003862,0.0003862,0.0003862 +95,24034.9,0.34595,0.60326,0.21607,0.84885,0.99977,1,0.995,0.98382,0.99977,1,0.995,0.98683,0.24899,0.42367,0.14889,0.8018,0.0003796,0.0003796,0.0003796 +96,24199.5,0.34219,0.56907,0.21409,0.85716,0.99972,1,0.995,0.97835,0.99972,1,0.995,0.98439,0.26338,0.41578,0.15733,0.80535,0.000373,0.000373,0.000373 +97,24343.7,0.34841,0.56767,0.21758,0.85649,0.99977,1,0.995,0.97639,0.99977,1,0.995,0.98617,0.25477,0.41194,0.14984,0.80153,0.0003664,0.0003664,0.0003664 +98,24501.7,0.3453,0.56685,0.21552,0.85041,0.99975,1,0.995,0.98805,0.99975,1,0.995,0.98711,0.23766,0.41374,0.14383,0.79883,0.0003598,0.0003598,0.0003598 +99,24672.9,0.33677,0.56095,0.2086,0.85442,0.99965,1,0.995,0.97958,0.99965,1,0.995,0.98326,0.24605,0.40942,0.14437,0.80163,0.0003532,0.0003532,0.0003532 +100,24805.3,0.32918,0.54189,0.2026,0.84634,0.99977,1,0.995,0.97911,0.99977,1,0.995,0.98151,0.26449,0.41675,0.14475,0.80538,0.0003466,0.0003466,0.0003466 +101,24959.1,0.33566,0.56032,0.20838,0.85707,0.99977,1,0.995,0.98686,0.99977,1,0.995,0.98687,0.24189,0.41279,0.13816,0.80117,0.00034,0.00034,0.00034 +102,26027,0.32987,0.55504,0.20758,0.85361,0.99977,1,0.995,0.9773,0.99977,1,0.995,0.98269,0.2573,0.41175,0.14458,0.80255,0.0003334,0.0003334,0.0003334 +103,28147.9,0.32881,0.55911,0.20571,0.85101,0.99977,1,0.995,0.98036,0.99977,1,0.995,0.97984,0.26154,0.42959,0.14713,0.80565,0.0003268,0.0003268,0.0003268 +104,30835,0.33127,0.54751,0.20703,0.85203,0.99976,1,0.995,0.98033,0.99976,1,0.995,0.97963,0.25293,0.42594,0.14366,0.80627,0.0003202,0.0003202,0.0003202 +105,30970,0.32681,0.55047,0.19991,0.84654,0.99977,1,0.995,0.98117,0.99977,1,0.995,0.98125,0.25284,0.41783,0.14037,0.80759,0.0003136,0.0003136,0.0003136 +106,32026.9,0.33458,0.5619,0.20565,0.85374,0.99968,1,0.995,0.98462,0.99968,1,0.995,0.98794,0.23971,0.40817,0.13836,0.80329,0.000307,0.000307,0.000307 +107,33488.5,0.33155,0.56392,0.20436,0.85153,0.99969,1,0.995,0.97776,0.99969,1,0.995,0.98423,0.2628,0.42406,0.14262,0.80998,0.0003004,0.0003004,0.0003004 +108,35474,0.34038,0.58517,0.21274,0.85556,0.99976,1,0.995,0.9774,0.99976,1,0.995,0.98395,0.2629,0.41443,0.14426,0.80542,0.0002938,0.0002938,0.0002938 +109,38146.2,0.32473,0.55141,0.20075,0.85263,0.99978,1,0.995,0.98012,0.99978,1,0.995,0.98157,0.24879,0.42135,0.13922,0.80159,0.0002872,0.0002872,0.0002872 +110,40248.5,0.32437,0.53842,0.19712,0.84801,0.99977,1,0.995,0.9867,0.99977,1,0.995,0.98646,0.24069,0.41929,0.1392,0.80269,0.0002806,0.0002806,0.0002806 +111,41846.5,0.32619,0.55604,0.20016,0.84878,0.99977,1,0.995,0.97519,0.99977,1,0.995,0.98221,0.26317,0.41365,0.14678,0.80396,0.000274,0.000274,0.000274 +112,41996.6,0.3395,0.56301,0.20701,0.85126,0.99977,1,0.995,0.98362,0.99977,1,0.995,0.98511,0.24356,0.41488,0.13951,0.79999,0.0002674,0.0002674,0.0002674 +113,42175.5,0.31723,0.53877,0.19318,0.84442,0.99977,1,0.995,0.98589,0.99977,1,0.995,0.987,0.2386,0.41112,0.13689,0.8028,0.0002608,0.0002608,0.0002608 +114,42350.2,0.32694,0.56004,0.20003,0.84983,0.99975,1,0.995,0.98523,0.99975,1,0.995,0.98839,0.23997,0.40844,0.13296,0.80023,0.0002542,0.0002542,0.0002542 +115,42542.4,0.32746,0.56831,0.19807,0.85378,0.99976,1,0.995,0.98505,0.99976,1,0.995,0.98426,0.23225,0.41153,0.1316,0.7981,0.0002476,0.0002476,0.0002476 +116,42751.3,0.32548,0.54466,0.19677,0.85104,0.99977,1,0.995,0.98239,0.99977,1,0.995,0.98388,0.24113,0.41371,0.13431,0.79941,0.000241,0.000241,0.000241 +117,42943.2,0.32254,0.54745,0.19911,0.84657,0.99978,1,0.995,0.98316,0.99978,1,0.995,0.98565,0.23546,0.4127,0.12633,0.80383,0.0002344,0.0002344,0.0002344 +118,43173.8,0.32307,0.55223,0.19655,0.85127,0.99977,1,0.995,0.98027,0.99977,1,0.995,0.98304,0.24469,0.42192,0.1317,0.80478,0.0002278,0.0002278,0.0002278 +119,43362.5,0.31881,0.55531,0.19247,0.84662,0.99976,1,0.995,0.98302,0.99976,1,0.995,0.98398,0.24663,0.41256,0.13442,0.80458,0.0002212,0.0002212,0.0002212 +120,43576.6,0.31477,0.54789,0.19254,0.84626,0.99977,1,0.995,0.98315,0.99977,1,0.995,0.98291,0.24014,0.41943,0.13029,0.80268,0.0002146,0.0002146,0.0002146 +121,43805.5,0.32259,0.54638,0.19694,0.84018,0.99977,1,0.995,0.98382,0.99977,1,0.995,0.98607,0.24332,0.42239,0.13624,0.80275,0.000208,0.000208,0.000208 +122,44027.5,0.31142,0.54706,0.18805,0.84641,0.99974,1,0.995,0.98107,0.99974,1,0.995,0.98173,0.24107,0.42197,0.13087,0.80399,0.0002014,0.0002014,0.0002014 +123,44278.2,0.32162,0.54897,0.19514,0.85265,0.99976,1,0.995,0.98381,0.99976,1,0.995,0.9839,0.24259,0.42064,0.12753,0.80368,0.0001948,0.0001948,0.0001948 +124,44562.3,0.30962,0.55508,0.19288,0.84608,0.99913,1,0.995,0.98025,0.99913,1,0.995,0.98221,0.2433,0.41754,0.13086,0.80096,0.0001882,0.0001882,0.0001882 +125,44835.9,0.31017,0.53997,0.19077,0.84799,0.99801,1,0.995,0.9854,0.99801,1,0.995,0.98502,0.23587,0.41756,0.12897,0.7995,0.0001816,0.0001816,0.0001816 +126,45091.6,0.32431,0.55861,0.19556,0.85028,0.99977,1,0.995,0.9828,0.99977,1,0.995,0.98457,0.24101,0.41175,0.12938,0.80092,0.000175,0.000175,0.000175 +127,45351.3,0.3143,0.55535,0.18894,0.84783,0.99948,1,0.995,0.98751,0.99948,1,0.995,0.98818,0.23185,0.41394,0.12314,0.79953,0.0001684,0.0001684,0.0001684 +128,46448.4,0.30133,0.53612,0.18351,0.84841,0.99978,1,0.995,0.98791,0.99978,1,0.995,0.98319,0.23168,0.41587,0.12334,0.79875,0.0001618,0.0001618,0.0001618 +129,46634.7,0.30842,0.5345,0.18722,0.85147,0.99977,1,0.995,0.98748,0.99977,1,0.995,0.98482,0.23247,0.41377,0.1235,0.79781,0.0001552,0.0001552,0.0001552 +130,46823.8,0.31401,0.52728,0.18309,0.84918,0.99978,1,0.995,0.98703,0.99978,1,0.995,0.98273,0.23239,0.41445,0.12402,0.79758,0.0001486,0.0001486,0.0001486 +131,46998.8,0.30357,0.532,0.18019,0.84421,0.99976,1,0.995,0.984,0.99976,1,0.995,0.98495,0.23705,0.41535,0.12451,0.79996,0.000142,0.000142,0.000142 +132,47212.6,0.30762,0.52236,0.1829,0.84856,0.99977,1,0.995,0.98678,0.99977,1,0.995,0.98643,0.23413,0.40882,0.12261,0.79867,0.0001354,0.0001354,0.0001354 +133,47452.1,0.30919,0.53719,0.18068,0.84509,0.99977,1,0.995,0.98548,0.99977,1,0.995,0.98321,0.23822,0.42048,0.12175,0.80038,0.0001288,0.0001288,0.0001288 +134,47682.5,0.30744,0.53964,0.18308,0.84709,0.99959,1,0.995,0.97999,0.99959,1,0.995,0.98246,0.24401,0.41431,0.12449,0.80072,0.0001222,0.0001222,0.0001222 +135,47936.7,0.31102,0.54549,0.18402,0.8475,0.99974,1,0.995,0.98444,0.99974,1,0.995,0.98486,0.23906,0.41444,0.12546,0.79953,0.0001156,0.0001156,0.0001156 +136,48189.9,0.30266,0.5213,0.17998,0.84547,0.99948,1,0.995,0.98796,0.99948,1,0.995,0.98466,0.22683,0.41237,0.12191,0.79877,0.000109,0.000109,0.000109 +137,48476.9,0.30403,0.53601,0.17822,0.84564,0.99874,1,0.995,0.98248,0.99874,1,0.995,0.98253,0.23869,0.42073,0.12408,0.80115,0.0001024,0.0001024,0.0001024 +138,48734.6,0.29376,0.51697,0.17678,0.84209,0.99871,1,0.995,0.97981,0.99871,1,0.995,0.98488,0.24535,0.41647,0.12766,0.80037,9.58e-05,9.58e-05,9.58e-05 +139,48972.6,0.30158,0.5386,0.17791,0.84834,0.99874,1,0.995,0.98677,0.99874,1,0.995,0.98474,0.23579,0.40864,0.12363,0.79878,8.92e-05,8.92e-05,8.92e-05 +140,49242.2,0.30428,0.53443,0.18016,0.84558,0.99859,1,0.995,0.98572,0.99859,1,0.995,0.98462,0.23815,0.41783,0.12177,0.79871,8.26e-05,8.26e-05,8.26e-05 +141,49542.3,0.23099,0.43831,0.13609,0.79836,0.99976,1,0.995,0.98338,0.99976,1,0.995,0.98091,0.24202,0.42906,0.12582,0.80095,7.6e-05,7.6e-05,7.6e-05 +142,49776,0.22811,0.42871,0.13265,0.7982,0.99973,1,0.995,0.98411,0.99973,1,0.995,0.98184,0.24325,0.42358,0.12703,0.79943,6.94e-05,6.94e-05,6.94e-05 +143,51058.7,0.2284,0.42991,0.13175,0.80285,0.99976,1,0.995,0.98092,0.99976,1,0.995,0.98305,0.24904,0.42222,0.127,0.80034,6.28e-05,6.28e-05,6.28e-05 +144,53985.4,0.22415,0.42736,0.12957,0.79647,0.99977,1,0.995,0.98636,0.99977,1,0.995,0.98389,0.23987,0.42031,0.12238,0.79837,5.62e-05,5.62e-05,5.62e-05 +145,54115.9,0.22075,0.4256,0.12966,0.79543,0.99977,1,0.995,0.98488,0.99977,1,0.995,0.98423,0.23502,0.42028,0.11897,0.79853,4.96e-05,4.96e-05,4.96e-05 +146,54265.2,0.22062,0.42557,0.12721,0.79528,0.99976,1,0.995,0.98605,0.99976,1,0.995,0.98382,0.2338,0.41736,0.12112,0.79859,4.3e-05,4.3e-05,4.3e-05 +147,54430.9,0.21901,0.42133,0.12615,0.79029,0.99976,1,0.995,0.98641,0.99976,1,0.995,0.98293,0.23521,0.4177,0.12113,0.79889,3.64e-05,3.64e-05,3.64e-05 +148,54648.2,0.21787,0.42388,0.12457,0.79421,0.99976,1,0.995,0.98742,0.99976,1,0.995,0.98389,0.23546,0.4172,0.12128,0.79958,2.98e-05,2.98e-05,2.98e-05 +149,54873.4,0.21649,0.4234,0.12374,0.78118,0.99976,1,0.995,0.98648,0.99976,1,0.995,0.98518,0.23599,0.41761,0.12005,0.79964,2.32e-05,2.32e-05,2.32e-05 +150,55077.4,0.21598,0.4181,0.12285,0.79612,0.99976,1,0.995,0.98633,0.99976,1,0.995,0.98351,0.23385,0.41837,0.11838,0.79888,1.66e-05,1.66e-05,1.66e-05 diff --git a/runs/segment/train11/results.png b/runs/segment/train11/results.png new file mode 100644 index 0000000..0ca536e --- /dev/null +++ b/runs/segment/train11/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d2da7981b082c0abbb84a7cdc1f4e38735831d4828fbea2b93fa2f0b340ab8 +size 442259 diff --git a/runs/segment/train11/train_batch0.jpg b/runs/segment/train11/train_batch0.jpg new file mode 100644 index 0000000..ca40987 --- /dev/null +++ b/runs/segment/train11/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208263e89f8d29d47886905d4efcde8f6aebda14529c296614a4f859be2279cb +size 539820 diff --git a/runs/segment/train11/train_batch1.jpg b/runs/segment/train11/train_batch1.jpg new file mode 100644 index 0000000..ce239ed --- /dev/null +++ b/runs/segment/train11/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a89b26780af1ea9bd4170f7ea55c5e67446219b7f307b6ee78b46798ba829e1 +size 506526 diff --git a/runs/segment/train11/train_batch17220.jpg b/runs/segment/train11/train_batch17220.jpg new file mode 100644 index 0000000..7a241b3 --- /dev/null +++ b/runs/segment/train11/train_batch17220.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e691ba5a8c8d56f4c6ca1c7230b697cf641e83b4847f5c754a5fe097500d116 +size 402990 diff --git a/runs/segment/train11/train_batch17221.jpg b/runs/segment/train11/train_batch17221.jpg new file mode 100644 index 0000000..114c1a8 --- /dev/null +++ b/runs/segment/train11/train_batch17221.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47579937694ab2bba4175d7de64e2e9bdd86fd1594772f5cafe9c5d13d5d8fab +size 375558 diff --git a/runs/segment/train11/train_batch17222.jpg b/runs/segment/train11/train_batch17222.jpg new file mode 100644 index 0000000..0433a8f --- /dev/null +++ b/runs/segment/train11/train_batch17222.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd7627044afd1289fe968bcdc1e2f2ebfb15fbbe0ca11feb67e9fc2fc872910 +size 459161 diff --git a/runs/segment/train11/train_batch2.jpg b/runs/segment/train11/train_batch2.jpg new file mode 100644 index 0000000..f2527c3 --- /dev/null +++ b/runs/segment/train11/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c17ceeb14f37ad59c551e058cac715f89784a29ed1c77bd5a40ac50cf43b01f +size 505539 diff --git a/runs/segment/train11/val_batch0_labels.jpg b/runs/segment/train11/val_batch0_labels.jpg new file mode 100644 index 0000000..e8c7724 --- /dev/null +++ b/runs/segment/train11/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b974f317154e05032c7188cab2cb9b22ea1339d4c4dc07372c54bee7b44b9511 +size 517457 diff --git a/runs/segment/train11/val_batch0_pred.jpg b/runs/segment/train11/val_batch0_pred.jpg new file mode 100644 index 0000000..6f8ca19 --- /dev/null +++ b/runs/segment/train11/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e75bf6c92a4a87f452a2a69fce165ca3646cc2db24274c943d177ba3066d48 +size 520900 diff --git a/runs/segment/train11/val_batch1_labels.jpg b/runs/segment/train11/val_batch1_labels.jpg new file mode 100644 index 0000000..4545d4e --- /dev/null +++ b/runs/segment/train11/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7faa4eefc76c9ddddd223b9ac0fa7be60bbc186b0d23d7b77ae00ef57d7395 +size 673781 diff --git a/runs/segment/train11/val_batch1_pred.jpg b/runs/segment/train11/val_batch1_pred.jpg new file mode 100644 index 0000000..1879e9a --- /dev/null +++ b/runs/segment/train11/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f539bacfb348511456c5291a51b47f9f5f3b40db6275e3efd8a53ff13b98ed51 +size 674219 diff --git a/runs/segment/train11/val_batch2_labels.jpg b/runs/segment/train11/val_batch2_labels.jpg new file mode 100644 index 0000000..50ff92b --- /dev/null +++ b/runs/segment/train11/val_batch2_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa48176761444aaf9a9439937c7f452b9514d2b743c763c5b081046d01c3ff5 +size 593589 diff --git a/runs/segment/train11/val_batch2_pred.jpg b/runs/segment/train11/val_batch2_pred.jpg new file mode 100644 index 0000000..cf02ec7 --- /dev/null +++ b/runs/segment/train11/val_batch2_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe867c3b1127648d50a69d3906ed724d9f61d2a46a7552ff31211c773437cc20 +size 595202 diff --git a/runs/segment/train11/weights/best.pt b/runs/segment/train11/weights/best.pt new file mode 100644 index 0000000..e0c77d7 Binary files /dev/null and b/runs/segment/train11/weights/best.pt differ diff --git a/runs/segment/train11/weights/last.pt b/runs/segment/train11/weights/last.pt new file mode 100644 index 0000000..2e1af58 Binary files /dev/null and b/runs/segment/train11/weights/last.pt differ diff --git a/runs/segment/train12/args.yaml b/runs/segment/train12/args.yaml new file mode 100644 index 0000000..aaee942 --- /dev/null +++ b/runs/segment/train12/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train12 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train12 diff --git a/runs/segment/train13/args.yaml b/runs/segment/train13/args.yaml new file mode 100644 index 0000000..60db1f2 --- /dev/null +++ b/runs/segment/train13/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train13 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train13 diff --git a/runs/segment/train14/args.yaml b/runs/segment/train14/args.yaml new file mode 100644 index 0000000..0b71c65 --- /dev/null +++ b/runs/segment/train14/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train14 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train14 diff --git a/runs/segment/train15/args.yaml b/runs/segment/train15/args.yaml new file mode 100644 index 0000000..a39d572 --- /dev/null +++ b/runs/segment/train15/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train15 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train15 diff --git a/runs/segment/train16/args.yaml b/runs/segment/train16/args.yaml new file mode 100644 index 0000000..cb1b3c3 --- /dev/null +++ b/runs/segment/train16/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train16 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train16 diff --git a/runs/segment/train17/args.yaml b/runs/segment/train17/args.yaml new file mode 100644 index 0000000..730c621 --- /dev/null +++ b/runs/segment/train17/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train17 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train17 diff --git a/runs/segment/train18/args.yaml b/runs/segment/train18/args.yaml new file mode 100644 index 0000000..db9faba --- /dev/null +++ b/runs/segment/train18/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train18 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train18 diff --git a/runs/segment/train19/args.yaml b/runs/segment/train19/args.yaml new file mode 100644 index 0000000..13d8893 --- /dev/null +++ b/runs/segment/train19/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train19 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train19 diff --git a/runs/segment/train2/args.yaml b/runs/segment/train2/args.yaml new file mode 100644 index 0000000..5ab4560 --- /dev/null +++ b/runs/segment/train2/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/搭电测试/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train2 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train2 diff --git a/runs/segment/train2/labels.jpg b/runs/segment/train2/labels.jpg new file mode 100644 index 0000000..5d212b7 --- /dev/null +++ b/runs/segment/train2/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d11ac8239643447d220f9faf23cc02ab149d9506abafa493d7142d6af8e1e81 +size 129912 diff --git a/runs/segment/train20/args.yaml b/runs/segment/train20/args.yaml new file mode 100644 index 0000000..168d2ee --- /dev/null +++ b/runs/segment/train20/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/平安马甲/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train20 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train20 diff --git a/runs/segment/train21/args.yaml b/runs/segment/train21/args.yaml new file mode 100644 index 0000000..cc2578e --- /dev/null +++ b/runs/segment/train21/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/pinganmajia/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train21 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train21 diff --git a/runs/segment/train21/labels.jpg b/runs/segment/train21/labels.jpg new file mode 100644 index 0000000..5f2c18e --- /dev/null +++ b/runs/segment/train21/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6027571052aef4b6ed4ad486f455bd5189cb3571baf488ebbc72cc0450206402 +size 161732 diff --git a/runs/segment/train21/labels_correlogram.jpg b/runs/segment/train21/labels_correlogram.jpg new file mode 100644 index 0000000..ec03d7e --- /dev/null +++ b/runs/segment/train21/labels_correlogram.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee8d83fe68438a5a48db8725d492d3856701c96c4fb148ff823005b5b5da114 +size 184970 diff --git a/runs/segment/train21/train_batch0.jpg b/runs/segment/train21/train_batch0.jpg new file mode 100644 index 0000000..6a1692d --- /dev/null +++ b/runs/segment/train21/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602898892217cc73fb16b5adb229ab84bddd70cb2971dbde66a6908120c0605 +size 439974 diff --git a/runs/segment/train21/train_batch1.jpg b/runs/segment/train21/train_batch1.jpg new file mode 100644 index 0000000..ce3c0ee --- /dev/null +++ b/runs/segment/train21/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ead26b1a9db0b5e359b3533070872af69519b0cea6e6538efe207c443e070ef +size 436016 diff --git a/runs/segment/train21/train_batch2.jpg b/runs/segment/train21/train_batch2.jpg new file mode 100644 index 0000000..845e6d8 --- /dev/null +++ b/runs/segment/train21/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b13fcc8930c546e7e62abbb3a7c20e984f40d96ac8bd05ca2c68b738c5b875 +size 464257 diff --git a/runs/segment/train22/args.yaml b/runs/segment/train22/args.yaml new file mode 100644 index 0000000..c1a6b25 --- /dev/null +++ b/runs/segment/train22/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/pinganmajia/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train22 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train22 diff --git a/runs/segment/train22/labels.jpg b/runs/segment/train22/labels.jpg new file mode 100644 index 0000000..5f2c18e --- /dev/null +++ b/runs/segment/train22/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6027571052aef4b6ed4ad486f455bd5189cb3571baf488ebbc72cc0450206402 +size 161732 diff --git a/runs/segment/train22/labels_correlogram.jpg b/runs/segment/train22/labels_correlogram.jpg new file mode 100644 index 0000000..ec03d7e --- /dev/null +++ b/runs/segment/train22/labels_correlogram.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee8d83fe68438a5a48db8725d492d3856701c96c4fb148ff823005b5b5da114 +size 184970 diff --git a/runs/segment/train22/train_batch0.jpg b/runs/segment/train22/train_batch0.jpg new file mode 100644 index 0000000..6a1692d --- /dev/null +++ b/runs/segment/train22/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602898892217cc73fb16b5adb229ab84bddd70cb2971dbde66a6908120c0605 +size 439974 diff --git a/runs/segment/train22/train_batch1.jpg b/runs/segment/train22/train_batch1.jpg new file mode 100644 index 0000000..ce3c0ee --- /dev/null +++ b/runs/segment/train22/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ead26b1a9db0b5e359b3533070872af69519b0cea6e6538efe207c443e070ef +size 436016 diff --git a/runs/segment/train22/train_batch2.jpg b/runs/segment/train22/train_batch2.jpg new file mode 100644 index 0000000..845e6d8 --- /dev/null +++ b/runs/segment/train22/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b13fcc8930c546e7e62abbb3a7c20e984f40d96ac8bd05ca2c68b738c5b875 +size 464257 diff --git a/runs/segment/train23/args.yaml b/runs/segment/train23/args.yaml new file mode 100644 index 0000000..d187f8c --- /dev/null +++ b/runs/segment/train23/args.yaml @@ -0,0 +1,98 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/pinganmajia/data.yaml +epochs: 150 +patience: 50 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train23 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\segment\train23 diff --git a/runs/segment/train23/labels.jpg b/runs/segment/train23/labels.jpg new file mode 100644 index 0000000..5f2c18e --- /dev/null +++ b/runs/segment/train23/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6027571052aef4b6ed4ad486f455bd5189cb3571baf488ebbc72cc0450206402 +size 161732 diff --git a/runs/segment/train23/labels_correlogram.jpg b/runs/segment/train23/labels_correlogram.jpg new file mode 100644 index 0000000..ec03d7e --- /dev/null +++ b/runs/segment/train23/labels_correlogram.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee8d83fe68438a5a48db8725d492d3856701c96c4fb148ff823005b5b5da114 +size 184970 diff --git a/runs/segment/train23/train_batch0.jpg b/runs/segment/train23/train_batch0.jpg new file mode 100644 index 0000000..6a1692d --- /dev/null +++ b/runs/segment/train23/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d602898892217cc73fb16b5adb229ab84bddd70cb2971dbde66a6908120c0605 +size 439974 diff --git a/runs/segment/train23/train_batch1.jpg b/runs/segment/train23/train_batch1.jpg new file mode 100644 index 0000000..ce3c0ee --- /dev/null +++ b/runs/segment/train23/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ead26b1a9db0b5e359b3533070872af69519b0cea6e6538efe207c443e070ef +size 436016 diff --git a/runs/segment/train23/train_batch2.jpg b/runs/segment/train23/train_batch2.jpg new file mode 100644 index 0000000..845e6d8 --- /dev/null +++ b/runs/segment/train23/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b13fcc8930c546e7e62abbb3a7c20e984f40d96ac8bd05ca2c68b738c5b875 +size 464257 diff --git a/runs/segment/train3/args.yaml b/runs/segment/train3/args.yaml new file mode 100644 index 0000000..94a5a3a --- /dev/null +++ b/runs/segment/train3/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/搭电测试/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train3 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train3 diff --git a/runs/segment/train4/BoxF1_curve.png b/runs/segment/train4/BoxF1_curve.png new file mode 100644 index 0000000..0c11e07 --- /dev/null +++ b/runs/segment/train4/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3663f239bffb9b9cddb2ee4365b1314eeed40c9ae8ffd69b4d3735bdbf412f42 +size 151574 diff --git a/runs/segment/train4/BoxPR_curve.png b/runs/segment/train4/BoxPR_curve.png new file mode 100644 index 0000000..d784d82 --- /dev/null +++ b/runs/segment/train4/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d45db316d06efb3b12812bb29a703d0bda96cdfa5a0739b4f926643ab13022 +size 107486 diff --git a/runs/segment/train4/BoxP_curve.png b/runs/segment/train4/BoxP_curve.png new file mode 100644 index 0000000..6913d0b --- /dev/null +++ b/runs/segment/train4/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4b658a04d39fbb3ee72fe1bab4ab021fb68b3587261664c495ef1033aff603 +size 153317 diff --git a/runs/segment/train4/BoxR_curve.png b/runs/segment/train4/BoxR_curve.png new file mode 100644 index 0000000..163743d --- /dev/null +++ b/runs/segment/train4/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151f2a793ac99a7c862b732a52769962301f887b52fb3e44e7f9118eb5abff86 +size 130550 diff --git a/runs/segment/train4/MaskF1_curve.png b/runs/segment/train4/MaskF1_curve.png new file mode 100644 index 0000000..754ab62 --- /dev/null +++ b/runs/segment/train4/MaskF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2983f6d46a993d26f134c30f6fe52c5461d3fb1dbfd7bf4704e1adeaa0e5f3f7 +size 147455 diff --git a/runs/segment/train4/MaskPR_curve.png b/runs/segment/train4/MaskPR_curve.png new file mode 100644 index 0000000..db6da00 --- /dev/null +++ b/runs/segment/train4/MaskPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddb24116a78abbc1776446f5c7596d5b6c29f8ffd37159572a52ac3390b3b9e +size 106345 diff --git a/runs/segment/train4/MaskP_curve.png b/runs/segment/train4/MaskP_curve.png new file mode 100644 index 0000000..3c1b0c5 --- /dev/null +++ b/runs/segment/train4/MaskP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d9bfad273cd5408ff8b6decc6bfb36ea2ce3dffe7681d3a4c3d5ba4fcf041b +size 149432 diff --git a/runs/segment/train4/MaskR_curve.png b/runs/segment/train4/MaskR_curve.png new file mode 100644 index 0000000..c02188c --- /dev/null +++ b/runs/segment/train4/MaskR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cad016f798f9b5eda9345fa61e4c211d04c188ec00ed9c07b4b9c59c66a449 +size 124142 diff --git a/runs/segment/train4/args.yaml b/runs/segment/train4/args.yaml new file mode 100644 index 0000000..1041bd4 --- /dev/null +++ b/runs/segment/train4/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/搭电测试/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train4 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train4 diff --git a/runs/segment/train4/confusion_matrix.png b/runs/segment/train4/confusion_matrix.png new file mode 100644 index 0000000..925e5be --- /dev/null +++ b/runs/segment/train4/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481d64ce8d68e59cb790b3d50035bdf2ffcf91f70294a1eab523ce7de262e337 +size 168061 diff --git a/runs/segment/train4/confusion_matrix_normalized.png b/runs/segment/train4/confusion_matrix_normalized.png new file mode 100644 index 0000000..eabf501 --- /dev/null +++ b/runs/segment/train4/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d26e8ad4b49b03c2504d7f3bda5a2d80f3028f6d89657fcfe2442ca50cafbf +size 176736 diff --git a/runs/segment/train4/labels.jpg b/runs/segment/train4/labels.jpg new file mode 100644 index 0000000..83f051b --- /dev/null +++ b/runs/segment/train4/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b89a59be4891188f07626001e122c6a9bf680af51062d77e062deffa4887b5b +size 169158 diff --git a/runs/segment/train4/results.csv b/runs/segment/train4/results.csv new file mode 100644 index 0000000..1d7ae16 --- /dev/null +++ b/runs/segment/train4/results.csv @@ -0,0 +1,21 @@ +epoch,time,train/box_loss,train/seg_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),metrics/precision(M),metrics/recall(M),metrics/mAP50(M),metrics/mAP50-95(M),val/box_loss,val/seg_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,43.9675,1.75366,4.33813,3.77887,1.8394,0.01267,0.96721,0.1323,0.05268,0.00044,0.01639,0.00342,0.00044,1.52407,3.26463,4.24817,1.71622,0.000225,0.000225,0.000225 +2,86.7573,1.57166,2.998,3.03397,1.61185,0.00975,0.45082,0.10504,0.03864,0.00461,0.21311,0.02653,0.00492,1.77818,2.9462,4.37771,2.06629,0.000439606,0.000439606,0.000439606 +3,129.366,1.29674,2.72112,2.51331,1.50157,0.57534,0.19672,0.08714,0.02736,0.01491,0.18033,0.0541,0.00894,2.40584,3.16412,4.19542,2.69804,0.0006307,0.0006307,0.0006307 +4,174.805,1.32891,2.66386,2.48681,1.48244,0.65128,0.2459,0.14611,0.06105,0.60181,0.13934,0.05406,0.01085,1.84692,2.99367,3.37768,2.14809,0.000798281,0.000798281,0.000798281 +5,217.335,1.31316,2.66219,2.51122,1.48583,0.65032,0.2377,0.14012,0.05645,0.58551,0.11475,0.0576,0.00994,1.9049,2.75989,3.34284,2.20648,0.00094235,0.00094235,0.00094235 +6,258.644,1.23402,2.5945,2.30114,1.42363,0.68887,0.18852,0.17492,0.07597,0.60673,0.18033,0.08352,0.01191,1.79846,2.35927,3.47723,2.23347,0.000940625,0.000940625,0.000940625 +7,300.551,1.25717,2.50218,2.15085,1.39,0.69517,0.33607,0.27699,0.13502,0.64979,0.21739,0.12236,0.0222,1.59676,2.25982,3.57374,1.89695,0.00087875,0.00087875,0.00087875 +8,342.847,1.23658,2.52558,2.11511,1.36852,0.20184,0.93443,0.38343,0.18351,0.17295,0.81967,0.28127,0.06016,1.58707,2.23911,3.09527,1.89476,0.000816875,0.000816875,0.000816875 +9,385.164,1.16787,2.3715,2.01718,1.35309,0.57234,0.90984,0.78818,0.42053,0.53784,0.81148,0.7214,0.20012,1.49698,2.05934,2.94061,1.81924,0.000755,0.000755,0.000755 +10,426.63,1.14287,2.19849,2.02504,1.3282,0.62871,0.81148,0.74295,0.41477,0.54252,0.67213,0.59947,0.16795,1.65465,2.40676,2.93861,1.94441,0.000693125,0.000693125,0.000693125 +11,467.804,1.19166,1.98444,2.67976,1.51278,0.38889,0.89344,0.78994,0.40618,0.64045,0.09016,0.0542,0.0076,1.47784,2.94341,2.5722,1.76297,0.00063125,0.00063125,0.00063125 +12,508.727,1.10016,1.89102,2.48586,1.45077,0.81176,0.28511,0.4699,0.27595,0.7042,0.18675,0.14641,0.03326,1.30151,2.34385,2.50938,1.58451,0.000569375,0.000569375,0.000569375 +13,549.734,0.96941,1.8258,2.10778,1.34095,0.83866,0.32787,0.50766,0.27047,0.7712,0.26233,0.23689,0.05343,1.30219,2.07661,2.54463,1.66533,0.0005075,0.0005075,0.0005075 +14,590.623,0.95537,1.81834,1.98483,1.30742,0.84551,0.34835,0.43714,0.23615,0.81399,0.30328,0.25609,0.06345,1.34566,2.04746,2.38715,1.71453,0.000445625,0.000445625,0.000445625 +15,631.64,0.8665,1.78702,1.98954,1.20686,0.85057,0.34616,0.39708,0.23973,0.76831,0.2541,0.22208,0.05262,1.29906,2.11207,2.30516,1.62912,0.00038375,0.00038375,0.00038375 +16,672.464,0.90098,1.67758,1.96862,1.25751,0.87884,0.36066,0.43763,0.2718,0.80987,0.28689,0.26774,0.06154,1.21769,2.07236,2.21017,1.50024,0.000321875,0.000321875,0.000321875 +17,713.27,0.83401,1.70507,1.77899,1.16905,0.85976,0.37851,0.46015,0.28384,0.83211,0.29508,0.29811,0.07363,1.108,1.98104,2.0836,1.39686,0.00026,0.00026,0.00026 +18,755.645,0.88826,1.67315,1.79754,1.24679,0.87949,0.37705,0.50567,0.3028,0.81439,0.31148,0.28523,0.06463,1.13978,2.01664,2.01646,1.40305,0.000198125,0.000198125,0.000198125 +19,799.652,0.77938,1.66936,1.69061,1.14208,0.90025,0.34426,0.50634,0.32174,0.8703,0.31967,0.42983,0.09787,1.10367,1.85029,1.96951,1.38494,0.00013625,0.00013625,0.00013625 +20,1750.71,0.71979,1.60554,1.61174,1.09175,0.31913,0.73342,0.66233,0.40266,0.30128,0.69084,0.60405,0.18345,1.08477,1.74864,1.90761,1.37121,7.4375e-05,7.4375e-05,7.4375e-05 diff --git a/runs/segment/train4/results.png b/runs/segment/train4/results.png new file mode 100644 index 0000000..83a29ae --- /dev/null +++ b/runs/segment/train4/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390bcef390f624c8a5ebd68a865ca40b6e3844270a326303276052d71de5811d +size 421458 diff --git a/runs/segment/train4/train_batch0.jpg b/runs/segment/train4/train_batch0.jpg new file mode 100644 index 0000000..ddf72dc --- /dev/null +++ b/runs/segment/train4/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9f5d604037f662d133297b755bb634d8af05bf4765dc4b01b1e648824c89fb +size 564371 diff --git a/runs/segment/train4/train_batch1.jpg b/runs/segment/train4/train_batch1.jpg new file mode 100644 index 0000000..a785f6f --- /dev/null +++ b/runs/segment/train4/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38de79b586f78fa2a27f8f1172a9245ce6fdbf7aa129bbb02662fdc9422eff2c +size 556689 diff --git a/runs/segment/train4/train_batch190.jpg b/runs/segment/train4/train_batch190.jpg new file mode 100644 index 0000000..8c61c45 --- /dev/null +++ b/runs/segment/train4/train_batch190.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7bad4bca5b1acbf2d8ad46ec0ae9c6d3d4e0b45da20a6552da85297d86c48a +size 400878 diff --git a/runs/segment/train4/train_batch191.jpg b/runs/segment/train4/train_batch191.jpg new file mode 100644 index 0000000..5244ddf --- /dev/null +++ b/runs/segment/train4/train_batch191.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bd92564c4b685d119bdb1498a823ce8699e23dbed9357e730a4fe65d7bf5a7 +size 387204 diff --git a/runs/segment/train4/train_batch192.jpg b/runs/segment/train4/train_batch192.jpg new file mode 100644 index 0000000..23a9b7a --- /dev/null +++ b/runs/segment/train4/train_batch192.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429ce3897827c13b2acbedc90deb1fb2d1f382449e3de0e08178c53c1ff0e7d6 +size 431882 diff --git a/runs/segment/train4/train_batch2.jpg b/runs/segment/train4/train_batch2.jpg new file mode 100644 index 0000000..37dcb2d --- /dev/null +++ b/runs/segment/train4/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9bcc00da9ed1208beaa2af7fc7530ce5cd2586706862942c69220d15a30bc33 +size 522145 diff --git a/runs/segment/train4/val_batch0_labels.jpg b/runs/segment/train4/val_batch0_labels.jpg new file mode 100644 index 0000000..2a1d76a --- /dev/null +++ b/runs/segment/train4/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5671ad8b357fc00c538b11670bca7370cff1467264fd505554d4f98b05756ed3 +size 710177 diff --git a/runs/segment/train4/val_batch0_pred.jpg b/runs/segment/train4/val_batch0_pred.jpg new file mode 100644 index 0000000..1c594d2 --- /dev/null +++ b/runs/segment/train4/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58771284603396a0e1bc9e5868efa80aacba3d68fe52b6c6d48c012ab13e5e1b +size 774801 diff --git a/runs/segment/train4/val_batch1_labels.jpg b/runs/segment/train4/val_batch1_labels.jpg new file mode 100644 index 0000000..918a7ec --- /dev/null +++ b/runs/segment/train4/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c46743a54a9b3f84bb927c5c6fc5025cb5b1b9f7b01280a52d889dc7cb998ff +size 665209 diff --git a/runs/segment/train4/val_batch1_pred.jpg b/runs/segment/train4/val_batch1_pred.jpg new file mode 100644 index 0000000..9fb341c --- /dev/null +++ b/runs/segment/train4/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee97eecd6ff3c039cfcb1aa3866edff1ad9869df4436041aacd17ce09f8e8ac +size 691586 diff --git a/runs/segment/train4/val_batch2_labels.jpg b/runs/segment/train4/val_batch2_labels.jpg new file mode 100644 index 0000000..40dc779 --- /dev/null +++ b/runs/segment/train4/val_batch2_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd47f747c4eda2cba7256884c357cb3ad006f46ef4c7c2f170f0e714687ed3d +size 641828 diff --git a/runs/segment/train4/val_batch2_pred.jpg b/runs/segment/train4/val_batch2_pred.jpg new file mode 100644 index 0000000..064cdf1 --- /dev/null +++ b/runs/segment/train4/val_batch2_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3763981282845cd1f2979beddb67175fd4bc3968b57a40b6a271c1acc951362a +size 677133 diff --git a/runs/segment/train4/weights/best.pt b/runs/segment/train4/weights/best.pt new file mode 100644 index 0000000..06cd4e3 Binary files /dev/null and b/runs/segment/train4/weights/best.pt differ diff --git a/runs/segment/train4/weights/last.pt b/runs/segment/train4/weights/last.pt new file mode 100644 index 0000000..7afdb46 Binary files /dev/null and b/runs/segment/train4/weights/last.pt differ diff --git a/runs/segment/train5/args.yaml b/runs/segment/train5/args.yaml new file mode 100644 index 0000000..bc5eaf7 --- /dev/null +++ b/runs/segment/train5/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train5 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train5 diff --git a/runs/segment/train6/args.yaml b/runs/segment/train6/args.yaml new file mode 100644 index 0000000..da77a76 --- /dev/null +++ b/runs/segment/train6/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train6 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train6 diff --git a/runs/segment/train7/BoxF1_curve.png b/runs/segment/train7/BoxF1_curve.png new file mode 100644 index 0000000..f7175e9 --- /dev/null +++ b/runs/segment/train7/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36884f1b8fc83269e8be4259fab69ff9b374c248ef49c2acbdb28ff7165e0d8e +size 89500 diff --git a/runs/segment/train7/BoxPR_curve.png b/runs/segment/train7/BoxPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train7/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train7/BoxP_curve.png b/runs/segment/train7/BoxP_curve.png new file mode 100644 index 0000000..2f63cf6 --- /dev/null +++ b/runs/segment/train7/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6edd5eb57495e71bf56f6a2bb48baa9387c8efbeebb9f0c2505f1ece524488 +size 82520 diff --git a/runs/segment/train7/BoxR_curve.png b/runs/segment/train7/BoxR_curve.png new file mode 100644 index 0000000..d2c6b24 --- /dev/null +++ b/runs/segment/train7/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cfcb063dede0670dec64d66001dc690616a0b941f6988f98ec5b252660fa15 +size 80557 diff --git a/runs/segment/train7/MaskF1_curve.png b/runs/segment/train7/MaskF1_curve.png new file mode 100644 index 0000000..f7175e9 --- /dev/null +++ b/runs/segment/train7/MaskF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36884f1b8fc83269e8be4259fab69ff9b374c248ef49c2acbdb28ff7165e0d8e +size 89500 diff --git a/runs/segment/train7/MaskPR_curve.png b/runs/segment/train7/MaskPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train7/MaskPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train7/MaskP_curve.png b/runs/segment/train7/MaskP_curve.png new file mode 100644 index 0000000..2f63cf6 --- /dev/null +++ b/runs/segment/train7/MaskP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6edd5eb57495e71bf56f6a2bb48baa9387c8efbeebb9f0c2505f1ece524488 +size 82520 diff --git a/runs/segment/train7/MaskR_curve.png b/runs/segment/train7/MaskR_curve.png new file mode 100644 index 0000000..d2c6b24 --- /dev/null +++ b/runs/segment/train7/MaskR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15cfcb063dede0670dec64d66001dc690616a0b941f6988f98ec5b252660fa15 +size 80557 diff --git a/runs/segment/train7/args.yaml b/runs/segment/train7/args.yaml new file mode 100644 index 0000000..7f50e0c --- /dev/null +++ b/runs/segment/train7/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 20 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train7 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train7 diff --git a/runs/segment/train7/confusion_matrix.png b/runs/segment/train7/confusion_matrix.png new file mode 100644 index 0000000..afe0b9e --- /dev/null +++ b/runs/segment/train7/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f63bf56b790ac14078af2e07c291121084226da15430595ba1c12579eac451e +size 153603 diff --git a/runs/segment/train7/confusion_matrix_normalized.png b/runs/segment/train7/confusion_matrix_normalized.png new file mode 100644 index 0000000..340c124 --- /dev/null +++ b/runs/segment/train7/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f90384870033e631a6188c3e14f42af3149ab8ff12c3f51c6e274e31aaa49e3 +size 151560 diff --git a/runs/segment/train7/labels.jpg b/runs/segment/train7/labels.jpg new file mode 100644 index 0000000..e346082 --- /dev/null +++ b/runs/segment/train7/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f1295264cd11d4602d643cebc338c7ce1b221b2c27295f4011ce3aac8729b9 +size 121864 diff --git a/runs/segment/train7/results.csv b/runs/segment/train7/results.csv new file mode 100644 index 0000000..967010c --- /dev/null +++ b/runs/segment/train7/results.csv @@ -0,0 +1,21 @@ +epoch,time,train/box_loss,train/seg_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),metrics/precision(M),metrics/recall(M),metrics/mAP50(M),metrics/mAP50-95(M),val/box_loss,val/seg_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,26.3417,0.69833,1.57529,3.61712,1.03953,0.05249,1,0.9132,0.82482,0.05249,1,0.9132,0.84373,0.37096,0.75839,3.86751,0.82387,9e-05,9e-05,9e-05 +2,49.367,0.54772,0.91341,2.53597,0.98056,0.09009,1,0.9775,0.85914,0.09009,1,0.9775,0.92129,0.49526,0.71124,3.18742,0.85272,0.000180595,0.000180595,0.000180595 +3,71.7421,0.51785,0.72997,1.57488,0.94117,0.95023,0.95479,0.98786,0.89604,0.95023,0.95479,0.98786,0.93778,0.42441,0.58767,2.48675,0.84015,0.00026129,0.00026129,0.00026129 +4,93.3587,0.49371,0.63531,1.20857,0.92212,1,0.98252,0.995,0.92197,1,0.98252,0.995,0.97786,0.36483,0.4949,2.55996,0.80544,0.000332085,0.000332085,0.000332085 +5,116.232,0.48638,0.65479,1.16013,0.90354,1,0.98318,0.995,0.9369,1,0.98318,0.995,0.98477,0.34302,0.51645,2.09486,0.79074,0.00039298,0.00039298,0.00039298 +6,136.765,0.48966,0.64385,1.11031,0.89698,1,0.99623,0.995,0.91867,1,0.99623,0.995,0.98444,0.4003,0.47358,1.65783,0.81415,0.000443975,0.000443975,0.000443975 +7,157.484,0.48494,0.61928,1.00286,0.90299,0.9978,1,0.995,0.93346,0.9978,1,0.995,0.995,0.33781,0.42172,1.47814,0.79696,0.00048507,0.00048507,0.00048507 +8,177.705,0.45762,0.55098,0.99364,0.91427,0.99695,1,0.995,0.94724,0.99695,1,0.995,0.98683,0.35935,0.4044,1.5107,0.80409,0.000516265,0.000516265,0.000516265 +9,198.487,0.42918,0.5249,1.02261,0.88103,0.99682,1,0.995,0.92616,0.99682,1,0.995,0.98776,0.38811,0.41199,1.43716,0.81034,0.00053756,0.00053756,0.00053756 +10,219.293,0.48338,0.5782,0.95477,0.88336,0.99669,1,0.995,0.93964,0.99669,1,0.995,0.97828,0.34861,0.41646,1.2544,0.79641,0.000548955,0.000548955,0.000548955 +11,239.324,0.45828,0.46819,1.56178,0.93059,0.99655,1,0.995,0.92539,0.99655,1,0.995,0.9764,0.36037,0.4139,1.39581,0.80549,0.000505,0.000505,0.000505 +12,259.188,0.39115,0.46902,1.5026,0.87113,0.99655,1,0.995,0.92205,0.99655,1,0.995,0.97089,0.36112,0.45363,1.66692,0.81998,0.0004555,0.0004555,0.0004555 +13,278.746,0.34984,0.42697,1.48273,0.84983,0.99584,1,0.995,0.93397,0.99584,1,0.995,0.97509,0.36049,0.42819,1.51212,0.82831,0.000406,0.000406,0.000406 +14,298.571,0.34305,0.3967,1.31069,0.86268,0.99327,1,0.995,0.94417,0.99327,1,0.995,0.9891,0.33518,0.39569,1.2681,0.7942,0.0003565,0.0003565,0.0003565 +15,318.581,0.32234,0.38728,1.25398,0.83053,0.99478,1,0.995,0.9638,0.99478,1,0.995,0.995,0.31676,0.38209,1.2739,0.79025,0.000307,0.000307,0.000307 +16,338.622,0.32278,0.40585,1.26384,0.81843,0.99657,1,0.995,0.95047,0.99657,1,0.995,0.98841,0.30725,0.38235,1.27748,0.78529,0.0002575,0.0002575,0.0002575 +17,358.495,0.30999,0.39074,1.2923,0.83494,0.99694,1,0.995,0.95166,0.99694,1,0.995,0.98851,0.2991,0.37235,1.29271,0.78567,0.000208,0.000208,0.000208 +18,378.183,0.32893,0.36487,1.2828,0.84705,0.99733,1,0.995,0.98808,0.99733,1,0.995,0.995,0.29141,0.34963,1.29836,0.78824,0.0001585,0.0001585,0.0001585 +19,398.115,0.31248,0.37636,1.26811,0.82068,0.99738,1,0.995,0.98808,0.99738,1,0.995,0.995,0.28419,0.34385,1.26425,0.78478,0.000109,0.000109,0.000109 +20,420.717,0.27866,0.38814,1.24066,0.79303,0.9974,1,0.995,0.98833,0.9974,1,0.995,0.995,0.27836,0.34259,1.22515,0.78173,5.95e-05,5.95e-05,5.95e-05 diff --git a/runs/segment/train7/results.png b/runs/segment/train7/results.png new file mode 100644 index 0000000..3164756 --- /dev/null +++ b/runs/segment/train7/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a79c066aef5c2d8904559f4816d21f7cb345ed04987425560aef7a3f8a31a7 +size 393267 diff --git a/runs/segment/train7/train_batch0.jpg b/runs/segment/train7/train_batch0.jpg new file mode 100644 index 0000000..1541506 --- /dev/null +++ b/runs/segment/train7/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a140072d8bb08ada77ac42ac505a2ab406ffbb55bb691f04c7873a26b6fde3 +size 586907 diff --git a/runs/segment/train7/train_batch1.jpg b/runs/segment/train7/train_batch1.jpg new file mode 100644 index 0000000..2842b37 --- /dev/null +++ b/runs/segment/train7/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70478c712979dcf152ab0fafd97fded4127a96a03f6d87e1d247de69f47cb29 +size 518808 diff --git a/runs/segment/train7/train_batch100.jpg b/runs/segment/train7/train_batch100.jpg new file mode 100644 index 0000000..3a2c13d --- /dev/null +++ b/runs/segment/train7/train_batch100.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce40921d55e2748c2dd0dfc5521636d5b3fc49b5313645e1e3e8117ab968da4 +size 463714 diff --git a/runs/segment/train7/train_batch101.jpg b/runs/segment/train7/train_batch101.jpg new file mode 100644 index 0000000..8fcf92d --- /dev/null +++ b/runs/segment/train7/train_batch101.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93020ba9111c69535603950f3632f7497701133746982e081b87bc9846f1c7d8 +size 366840 diff --git a/runs/segment/train7/train_batch102.jpg b/runs/segment/train7/train_batch102.jpg new file mode 100644 index 0000000..c66fdc8 --- /dev/null +++ b/runs/segment/train7/train_batch102.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef504827735ec578e03a8b3aecd6348286e2148074c27e8bf415e29fa80390bf +size 435916 diff --git a/runs/segment/train7/train_batch2.jpg b/runs/segment/train7/train_batch2.jpg new file mode 100644 index 0000000..f9e16cd --- /dev/null +++ b/runs/segment/train7/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87d680578b91739858297722590767dc530672543315407786e56c7661801e8 +size 538697 diff --git a/runs/segment/train7/val_batch0_labels.jpg b/runs/segment/train7/val_batch0_labels.jpg new file mode 100644 index 0000000..eaaecd1 --- /dev/null +++ b/runs/segment/train7/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caef741f18f9c2634841b3cabcb2a6febb2f42b8badc8d2dda6ccec0d6685d00 +size 610498 diff --git a/runs/segment/train7/val_batch0_pred.jpg b/runs/segment/train7/val_batch0_pred.jpg new file mode 100644 index 0000000..8f4d70f --- /dev/null +++ b/runs/segment/train7/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e4a70ca5cd688f73bfd52f68e87c901ccf5dbc0b5ce99042202b8059508d2d +size 614922 diff --git a/runs/segment/train7/val_batch1_labels.jpg b/runs/segment/train7/val_batch1_labels.jpg new file mode 100644 index 0000000..28c2ea2 --- /dev/null +++ b/runs/segment/train7/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e5e1a02501e3d5d9d9fbbe9309a97ba904fab16dfd9a14f65755651e890508 +size 226787 diff --git a/runs/segment/train7/val_batch1_pred.jpg b/runs/segment/train7/val_batch1_pred.jpg new file mode 100644 index 0000000..b206dc2 --- /dev/null +++ b/runs/segment/train7/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d19de99cb953f46525131c130b71eb4132f69ebaffee86c5ed2116722278d1 +size 226778 diff --git a/runs/segment/train7/weights/best.pt b/runs/segment/train7/weights/best.pt new file mode 100644 index 0000000..5d563eb Binary files /dev/null and b/runs/segment/train7/weights/best.pt differ diff --git a/runs/segment/train7/weights/last.pt b/runs/segment/train7/weights/last.pt new file mode 100644 index 0000000..5d563eb Binary files /dev/null and b/runs/segment/train7/weights/last.pt differ diff --git a/runs/segment/train8/BoxF1_curve.png b/runs/segment/train8/BoxF1_curve.png new file mode 100644 index 0000000..ef84273 --- /dev/null +++ b/runs/segment/train8/BoxF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6be4ae02e988f71f6c27d58f219101093fdc4754a79ad940b777b557757625 +size 87374 diff --git a/runs/segment/train8/BoxPR_curve.png b/runs/segment/train8/BoxPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train8/BoxPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train8/BoxP_curve.png b/runs/segment/train8/BoxP_curve.png new file mode 100644 index 0000000..8c95994 --- /dev/null +++ b/runs/segment/train8/BoxP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2373e9585cc4641b530f7e0eaf43331fb4e123eefe1a39e2c091a7fb920cce85 +size 80171 diff --git a/runs/segment/train8/BoxR_curve.png b/runs/segment/train8/BoxR_curve.png new file mode 100644 index 0000000..9e7e5c6 --- /dev/null +++ b/runs/segment/train8/BoxR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78843f23b6c24e04b9aafb44f8d6198e724920c498805b3b907a12cef1624f80 +size 80389 diff --git a/runs/segment/train8/MaskF1_curve.png b/runs/segment/train8/MaskF1_curve.png new file mode 100644 index 0000000..ef84273 --- /dev/null +++ b/runs/segment/train8/MaskF1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6be4ae02e988f71f6c27d58f219101093fdc4754a79ad940b777b557757625 +size 87374 diff --git a/runs/segment/train8/MaskPR_curve.png b/runs/segment/train8/MaskPR_curve.png new file mode 100644 index 0000000..27fcd33 --- /dev/null +++ b/runs/segment/train8/MaskPR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa21b385ec9b7e6ca76754f990158fdce0fa5ed023c46dc8e5ec5d517e1a576f +size 69421 diff --git a/runs/segment/train8/MaskP_curve.png b/runs/segment/train8/MaskP_curve.png new file mode 100644 index 0000000..8c95994 --- /dev/null +++ b/runs/segment/train8/MaskP_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2373e9585cc4641b530f7e0eaf43331fb4e123eefe1a39e2c091a7fb920cce85 +size 80171 diff --git a/runs/segment/train8/MaskR_curve.png b/runs/segment/train8/MaskR_curve.png new file mode 100644 index 0000000..9e7e5c6 --- /dev/null +++ b/runs/segment/train8/MaskR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78843f23b6c24e04b9aafb44f8d6198e724920c498805b3b907a12cef1624f80 +size 80389 diff --git a/runs/segment/train8/args.yaml b/runs/segment/train8/args.yaml new file mode 100644 index 0000000..649cfd5 --- /dev/null +++ b/runs/segment/train8/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train8 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train8 diff --git a/runs/segment/train8/confusion_matrix.png b/runs/segment/train8/confusion_matrix.png new file mode 100644 index 0000000..afe0b9e --- /dev/null +++ b/runs/segment/train8/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f63bf56b790ac14078af2e07c291121084226da15430595ba1c12579eac451e +size 153603 diff --git a/runs/segment/train8/confusion_matrix_normalized.png b/runs/segment/train8/confusion_matrix_normalized.png new file mode 100644 index 0000000..340c124 --- /dev/null +++ b/runs/segment/train8/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f90384870033e631a6188c3e14f42af3149ab8ff12c3f51c6e274e31aaa49e3 +size 151560 diff --git a/runs/segment/train8/labels.jpg b/runs/segment/train8/labels.jpg new file mode 100644 index 0000000..e346082 --- /dev/null +++ b/runs/segment/train8/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f1295264cd11d4602d643cebc338c7ce1b221b2c27295f4011ce3aac8729b9 +size 121864 diff --git a/runs/segment/train8/results.csv b/runs/segment/train8/results.csv new file mode 100644 index 0000000..ae67bc9 --- /dev/null +++ b/runs/segment/train8/results.csv @@ -0,0 +1,101 @@ +epoch,time,train/box_loss,train/seg_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),metrics/precision(M),metrics/recall(M),metrics/mAP50(M),metrics/mAP50-95(M),val/box_loss,val/seg_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2 +1,24.0827,0.69833,1.57529,3.61712,1.03953,0.05249,1,0.9132,0.82482,0.05249,1,0.9132,0.84373,0.37096,0.75839,3.86751,0.82387,9e-05,9e-05,9e-05 +2,46.735,0.54899,0.91089,2.52056,0.98119,0.09009,1,0.98295,0.86549,0.09009,1,0.98295,0.9217,0.49884,0.73049,3.14597,0.85099,0.000188119,0.000188119,0.000188119 +3,70.0277,0.52152,0.72191,1.55804,0.94481,0.94977,0.94562,0.98786,0.88617,0.94977,0.94562,0.98786,0.95664,0.46982,0.58381,2.39406,0.86377,0.000284258,0.000284258,0.000284258 +4,94.5786,0.49435,0.63072,1.21548,0.92239,0.98911,1,0.995,0.90878,0.98911,1,0.995,0.97775,0.41565,0.51577,2.50605,0.81738,0.000378417,0.000378417,0.000378417 +5,121.87,0.48804,0.64461,1.15811,0.9022,1,0.98974,0.995,0.92784,1,0.98974,0.995,0.9731,0.38242,0.54581,1.93794,0.81015,0.000470596,0.000470596,0.000470596 +6,145.366,0.5013,0.64997,1.1048,0.89667,0.99878,1,0.995,0.89815,0.99878,1,0.995,0.97409,0.46987,0.5184,1.55304,0.85582,0.000560795,0.000560795,0.000560795 +7,168.195,0.5203,0.64689,0.99381,0.91554,0.99741,1,0.995,0.92445,0.99741,1,0.995,0.98231,0.38463,0.45033,1.44841,0.81097,0.000649014,0.000649014,0.000649014 +8,194.472,0.48039,0.5661,1.01294,0.91437,0.99737,1,0.995,0.90963,0.99737,1,0.995,0.9779,0.42515,0.54523,1.48965,0.8166,0.000735253,0.000735253,0.000735253 +9,216.26,0.44123,0.53112,1.02722,0.88989,0.99607,1,0.995,0.91293,0.99607,1,0.995,0.96154,0.37772,0.62098,1.34597,0.80489,0.000819512,0.000819512,0.000819512 +10,239.408,0.51602,0.59881,1.0152,0.88718,0.99691,1,0.995,0.93689,0.99691,1,0.995,0.97272,0.39333,0.50746,1.39564,0.81876,0.000901791,0.000901791,0.000901791 +11,263.679,0.5367,0.58843,1.05969,0.92418,0.99669,1,0.995,0.91258,0.99669,1,0.995,0.98959,0.38946,0.41452,1.45811,0.82262,0.000901,0.000901,0.000901 +12,288.662,0.50697,0.58832,1.02144,0.92691,0.9965,1,0.995,0.91199,0.9965,1,0.995,0.995,0.40207,0.38198,1.30916,0.82137,0.0008911,0.0008911,0.0008911 +13,313.098,0.49965,0.53659,1.01712,0.91607,0.99126,1,0.995,0.93728,0.99126,1,0.995,0.98356,0.40907,0.40019,1.34976,0.82733,0.0008812,0.0008812,0.0008812 +14,336.78,0.47506,0.58499,0.94466,0.90883,0.99719,1,0.995,0.89489,0.99719,1,0.995,0.98438,0.4563,0.40093,1.30677,0.85119,0.0008713,0.0008713,0.0008713 +15,358.892,0.47788,0.53222,0.93809,0.90786,0.99672,0.95,0.98346,0.88803,0.99672,0.95,0.98346,0.97591,0.42003,0.37749,1.37479,0.81552,0.0008614,0.0008614,0.0008614 +16,382.29,0.461,0.58011,0.94449,0.90958,0.99616,0.95,0.9753,0.93128,0.99616,0.95,0.9753,0.96643,0.34353,0.38822,1.42791,0.79233,0.0008515,0.0008515,0.0008515 +17,407.699,0.42942,0.48219,0.85128,0.87266,1,0.9964,0.995,0.93485,1,0.9964,0.995,0.98764,0.34131,0.41256,1.2888,0.78979,0.0008416,0.0008416,0.0008416 +18,430.838,0.44664,0.51143,0.88818,0.89526,0.99743,1,0.995,0.92438,0.99743,1,0.995,0.98409,0.34858,0.39995,1.27109,0.79426,0.0008317,0.0008317,0.0008317 +19,455.912,0.42708,0.51253,0.87003,0.89092,0.99705,1,0.995,0.92274,0.99705,1,0.995,0.98458,0.40223,0.36224,1.3004,0.81638,0.0008218,0.0008218,0.0008218 +20,478.962,0.47438,0.50276,0.85506,0.91023,0.99761,1,0.995,0.94314,0.99761,1,0.995,0.995,0.36136,0.33731,1.24028,0.80895,0.0008119,0.0008119,0.0008119 +21,503.827,0.47121,0.52063,0.87493,0.90131,0.99719,1,0.995,0.94073,0.99719,1,0.995,0.995,0.35278,0.34362,1.20867,0.80246,0.000802,0.000802,0.000802 +22,529.317,0.42286,0.47198,0.82123,0.90234,0.99706,1,0.995,0.9488,0.99706,1,0.995,0.98935,0.35236,0.37695,1.20103,0.79781,0.0007921,0.0007921,0.0007921 +23,551.002,0.46975,0.50378,0.81088,0.88297,0.99741,1,0.995,0.9506,0.99741,1,0.995,0.98885,0.33502,0.38221,1.09118,0.78812,0.0007822,0.0007822,0.0007822 +24,575.857,0.41783,0.45506,0.82134,0.88423,0.99755,1,0.995,0.97582,0.99755,1,0.995,0.98985,0.31764,0.38865,1.01158,0.79137,0.0007723,0.0007723,0.0007723 +25,600.263,0.44788,0.52021,0.79595,0.90507,0.99734,1,0.995,0.96806,0.99734,1,0.995,0.98985,0.32327,0.40572,1.01409,0.79236,0.0007624,0.0007624,0.0007624 +26,622.324,0.45682,0.51269,0.80722,0.89164,0.99807,1,0.995,0.93248,0.99807,1,0.995,0.99009,0.3452,0.38324,1.05113,0.7914,0.0007525,0.0007525,0.0007525 +27,644.05,0.43776,0.45625,0.74833,0.87149,0.99876,1,0.995,0.96824,0.99876,1,0.995,0.99008,0.32846,0.38459,1.03543,0.79516,0.0007426,0.0007426,0.0007426 +28,665.623,0.3984,0.51264,0.71258,0.8717,0.99967,1,0.995,0.96174,0.99967,1,0.995,0.99009,0.32983,0.4047,0.97029,0.79629,0.0007327,0.0007327,0.0007327 +29,689.296,0.39475,0.52245,0.77209,0.87599,0.99697,1,0.995,0.95529,0.99697,1,0.995,0.99009,0.33966,0.40308,0.96448,0.79376,0.0007228,0.0007228,0.0007228 +30,713.55,0.42197,0.43903,0.74486,0.89891,0.99563,1,0.995,0.9504,0.99563,1,0.995,0.995,0.3342,0.34293,0.98105,0.78832,0.0007129,0.0007129,0.0007129 +31,736.48,0.43633,0.51359,0.77569,0.89224,0.99358,1,0.995,0.952,0.99358,1,0.995,0.98558,0.33985,0.33241,1.06865,0.78899,0.000703,0.000703,0.000703 +32,760.484,0.42961,0.57097,0.77044,0.90468,0.99386,1,0.995,0.94918,0.99386,1,0.995,0.98535,0.33924,0.34461,1.04852,0.78587,0.0006931,0.0006931,0.0006931 +33,785.756,0.41752,0.46811,0.68682,0.85775,0.99616,1,0.995,0.96074,0.99616,1,0.995,0.97618,0.32752,0.36613,1.00324,0.78095,0.0006832,0.0006832,0.0006832 +34,812.002,0.39374,0.45478,0.68981,0.86134,0.99727,1,0.995,0.96372,0.99727,1,0.995,0.96601,0.31882,0.50793,0.92442,0.78196,0.0006733,0.0006733,0.0006733 +35,833.828,0.37599,0.42235,0.63893,0.86386,0.9973,1,0.995,0.95027,0.9973,1,0.995,0.97402,0.33542,0.50343,0.9159,0.7843,0.0006634,0.0006634,0.0006634 +36,855.274,0.38592,0.44431,0.64242,0.87525,0.99733,1,0.995,0.96339,0.99733,1,0.995,0.98164,0.3389,0.42684,0.93519,0.78573,0.0006535,0.0006535,0.0006535 +37,877.582,0.40337,0.44439,0.67563,0.8772,0.99716,1,0.995,0.96689,0.99716,1,0.995,0.98523,0.31191,0.40905,0.92919,0.78421,0.0006436,0.0006436,0.0006436 +38,900.105,0.38451,0.45676,0.67628,0.86668,0.99759,1,0.995,0.95937,0.99759,1,0.995,0.99014,0.27969,0.41503,0.89048,0.76985,0.0006337,0.0006337,0.0006337 +39,923.647,0.39677,0.53592,0.68319,0.87379,0.99812,1,0.995,0.94577,0.99812,1,0.995,0.99013,0.29087,0.41923,0.88152,0.7696,0.0006238,0.0006238,0.0006238 +40,948.789,0.38273,0.47017,0.6482,0.8418,0.99808,1,0.995,0.96225,0.99808,1,0.995,0.99011,0.30082,0.43354,0.84666,0.76907,0.0006139,0.0006139,0.0006139 +41,970.673,0.40516,0.4736,0.67287,0.89219,0.99851,1,0.995,0.95883,0.99851,1,0.995,0.9901,0.28402,0.42975,0.83072,0.77133,0.000604,0.000604,0.000604 +42,992.631,0.39484,0.50243,0.61849,0.85769,0.99804,1,0.995,0.96864,0.99804,1,0.995,0.9901,0.31919,0.44441,0.79651,0.78368,0.0005941,0.0005941,0.0005941 +43,1017.23,0.38949,0.41643,0.61398,0.85331,0.99788,1,0.995,0.95943,0.99788,1,0.995,0.99011,0.32233,0.43907,0.7821,0.78872,0.0005842,0.0005842,0.0005842 +44,1039.78,0.37914,0.45604,0.59694,0.8502,0.99755,1,0.995,0.96509,0.99755,1,0.995,0.99012,0.29836,0.40995,0.7756,0.7861,0.0005743,0.0005743,0.0005743 +45,1061.63,0.38979,0.48057,0.63028,0.86679,0.9974,1,0.995,0.96991,0.9974,1,0.995,0.99012,0.26158,0.38258,0.73677,0.77484,0.0005644,0.0005644,0.0005644 +46,1083.73,0.34274,0.45758,0.60358,0.85396,0.99735,1,0.995,0.96183,0.99735,1,0.995,0.98985,0.25939,0.37548,0.78418,0.76803,0.0005545,0.0005545,0.0005545 +47,1106.07,0.36364,0.46174,0.59864,0.86436,0.99739,1,0.995,0.96428,0.99739,1,0.995,0.98415,0.27579,0.39015,0.80411,0.77248,0.0005446,0.0005446,0.0005446 +48,1128.65,0.3767,0.45754,0.6094,0.8732,0.99744,1,0.995,0.96444,0.99744,1,0.995,0.98908,0.27103,0.39068,0.8105,0.77482,0.0005347,0.0005347,0.0005347 +49,1151.07,0.32998,0.39993,0.54554,0.84906,0.99724,1,0.995,0.95551,0.99724,1,0.995,0.98933,0.25509,0.40684,0.78951,0.77233,0.0005248,0.0005248,0.0005248 +50,1172.85,0.40152,0.52856,0.60308,0.87443,0.99712,1,0.995,0.95777,0.99712,1,0.995,0.98471,0.27779,0.41454,0.76505,0.77447,0.0005149,0.0005149,0.0005149 +51,1194.45,0.3638,0.45886,0.57831,0.85225,0.99724,1,0.995,0.94911,0.99724,1,0.995,0.98526,0.29013,0.4024,0.76117,0.77641,0.000505,0.000505,0.000505 +52,1215.57,0.3796,0.46185,0.57127,0.87187,0.99731,1,0.995,0.96022,0.99731,1,0.995,0.98487,0.29756,0.38916,0.73408,0.7795,0.0004951,0.0004951,0.0004951 +53,1237,0.39393,0.49602,0.58681,0.85723,0.99743,1,0.995,0.9593,0.99743,1,0.995,0.9844,0.29628,0.36795,0.72965,0.7808,0.0004852,0.0004852,0.0004852 +54,1257.88,0.36788,0.45361,0.55072,0.8737,0.99768,1,0.995,0.97062,0.99768,1,0.995,0.995,0.3038,0.35264,0.7077,0.78187,0.0004753,0.0004753,0.0004753 +55,1279.27,0.36172,0.44565,0.55452,0.85233,0.99738,1,0.995,0.97711,0.99738,1,0.995,0.995,0.28066,0.35644,0.69358,0.77499,0.0004654,0.0004654,0.0004654 +56,1300.55,0.32894,0.38427,0.54751,0.85378,0.99743,1,0.995,0.9689,0.99743,1,0.995,0.995,0.26066,0.34417,0.66646,0.7671,0.0004555,0.0004555,0.0004555 +57,1321.57,0.34383,0.40681,0.53749,0.84388,0.99735,1,0.995,0.9766,0.99735,1,0.995,0.995,0.26104,0.34098,0.66639,0.76492,0.0004456,0.0004456,0.0004456 +58,1343.21,0.37751,0.42116,0.53947,0.85286,0.99737,1,0.995,0.97496,0.99737,1,0.995,0.995,0.27534,0.35536,0.64545,0.77327,0.0004357,0.0004357,0.0004357 +59,1364.82,0.34346,0.42347,0.52932,0.86008,0.99734,1,0.995,0.98161,0.99734,1,0.995,0.995,0.27504,0.35989,0.64773,0.77448,0.0004258,0.0004258,0.0004258 +60,1385.89,0.36205,0.4572,0.5339,0.85042,0.99724,1,0.995,0.96715,0.99724,1,0.995,0.99006,0.28143,0.36324,0.64385,0.77248,0.0004159,0.0004159,0.0004159 +61,1407.34,0.34541,0.45262,0.5112,0.87411,0.99723,1,0.995,0.9725,0.99723,1,0.995,0.99007,0.29053,0.36513,0.66532,0.77453,0.000406,0.000406,0.000406 +62,1428.27,0.32009,0.4192,0.51617,0.85546,0.99742,1,0.995,0.97035,0.99742,1,0.995,0.99007,0.26863,0.39049,0.65292,0.77293,0.0003961,0.0003961,0.0003961 +63,1449.14,0.34773,0.44144,0.49924,0.87341,0.99738,1,0.995,0.97387,0.99738,1,0.995,0.97128,0.26466,0.41485,0.65645,0.77336,0.0003862,0.0003862,0.0003862 +64,1469.81,0.3326,0.40263,0.49468,0.85814,0.99736,1,0.995,0.98158,0.99736,1,0.995,0.97153,0.25952,0.41811,0.66487,0.77272,0.0003763,0.0003763,0.0003763 +65,1490.76,0.32617,0.42343,0.51621,0.85383,0.99734,1,0.995,0.98983,0.99734,1,0.995,0.99008,0.25215,0.39792,0.65673,0.77367,0.0003664,0.0003664,0.0003664 +66,1511.55,0.32618,0.40777,0.49472,0.85336,0.9974,1,0.995,0.97219,0.9974,1,0.995,0.97863,0.27797,0.41572,0.64126,0.77543,0.0003565,0.0003565,0.0003565 +67,1532.76,0.33793,0.524,0.50956,0.85642,0.99744,1,0.995,0.97334,0.99744,1,0.995,0.9727,0.29672,0.4498,0.64838,0.77722,0.0003466,0.0003466,0.0003466 +68,1553.81,0.32392,0.43681,0.48977,0.85044,0.99738,1,0.995,0.97698,0.99738,1,0.995,0.98526,0.29097,0.43466,0.63871,0.77559,0.0003367,0.0003367,0.0003367 +69,1575.81,0.33086,0.41769,0.50742,0.85325,0.99745,1,0.995,0.96536,0.99745,1,0.995,0.99006,0.28373,0.38979,0.61895,0.77538,0.0003268,0.0003268,0.0003268 +70,1597.42,0.33753,0.45656,0.50079,0.85819,0.99743,1,0.995,0.97647,0.99743,1,0.995,0.995,0.27844,0.3496,0.61719,0.77715,0.0003169,0.0003169,0.0003169 +71,1619.93,0.30827,0.39367,0.4781,0.84598,0.99743,1,0.995,0.97494,0.99743,1,0.995,0.98981,0.28374,0.35386,0.60386,0.77666,0.000307,0.000307,0.000307 +72,1641.96,0.31029,0.40712,0.48474,0.86318,0.99751,1,0.995,0.97601,0.99751,1,0.995,0.98956,0.28946,0.36863,0.60104,0.77446,0.0002971,0.0002971,0.0002971 +73,1663.71,0.3091,0.42282,0.48009,0.83844,0.99744,1,0.995,0.98981,0.99744,1,0.995,0.98906,0.27888,0.36993,0.59474,0.77093,0.0002872,0.0002872,0.0002872 +74,1685.51,0.30821,0.39798,0.46711,0.83892,0.99744,1,0.995,0.99006,0.99744,1,0.995,0.98956,0.24466,0.35393,0.58014,0.76518,0.0002773,0.0002773,0.0002773 +75,1706.92,0.30144,0.36982,0.46509,0.85617,0.99744,1,0.995,0.98246,0.99744,1,0.995,0.9898,0.2487,0.35711,0.59819,0.76535,0.0002674,0.0002674,0.0002674 +76,1728.47,0.29607,0.38321,0.47398,0.83521,0.99743,1,0.995,0.97271,0.99743,1,0.995,0.99005,0.25443,0.36643,0.60718,0.76696,0.0002575,0.0002575,0.0002575 +77,1750.08,0.30493,0.42139,0.46624,0.84628,0.99752,1,0.995,0.9807,0.99752,1,0.995,0.99005,0.26231,0.37502,0.60607,0.76999,0.0002476,0.0002476,0.0002476 +78,1788.77,0.29288,0.38832,0.47024,0.85526,0.99749,1,0.995,0.9883,0.99749,1,0.995,0.99005,0.2655,0.37707,0.60568,0.76736,0.0002377,0.0002377,0.0002377 +79,1826.24,0.34046,0.47218,0.47686,0.86667,0.99751,1,0.995,0.9878,0.99751,1,0.995,0.98411,0.25751,0.37292,0.59227,0.76518,0.0002278,0.0002278,0.0002278 +80,1864.19,0.30559,0.42046,0.45602,0.85256,0.9975,1,0.995,0.98359,0.9975,1,0.995,0.9841,0.25021,0.36458,0.56611,0.76489,0.0002179,0.0002179,0.0002179 +81,1898.51,0.30576,0.42617,0.47407,0.85371,0.99749,1,0.995,0.9888,0.99749,1,0.995,0.9849,0.24772,0.35875,0.5506,0.76724,0.000208,0.000208,0.000208 +82,1919.79,0.28734,0.3964,0.45091,0.83116,0.99751,1,0.995,0.96716,0.99751,1,0.995,0.99006,0.25808,0.36259,0.54305,0.77014,0.0001981,0.0001981,0.0001981 +83,1942.02,0.29287,0.37993,0.43303,0.83939,0.99749,1,0.995,0.95922,0.99749,1,0.995,0.99006,0.25927,0.36124,0.53998,0.76811,0.0001882,0.0001882,0.0001882 +84,1964.82,0.30037,0.43127,0.44007,0.84417,0.99745,1,0.995,0.97061,0.99745,1,0.995,0.99006,0.25361,0.35649,0.53377,0.76495,0.0001783,0.0001783,0.0001783 +85,1986.36,0.28394,0.40618,0.4287,0.85446,0.99745,1,0.995,0.97101,0.99745,1,0.995,0.98484,0.24603,0.35453,0.53178,0.76234,0.0001684,0.0001684,0.0001684 +86,2007.28,0.30954,0.44897,0.44032,0.8452,0.99742,1,0.995,0.99006,0.99742,1,0.995,0.98981,0.2375,0.36572,0.55409,0.75887,0.0001585,0.0001585,0.0001585 +87,2028.81,0.27384,0.37545,0.41818,0.83499,0.99741,1,0.995,0.99006,0.99741,1,0.995,0.98931,0.24142,0.37645,0.55771,0.75907,0.0001486,0.0001486,0.0001486 +88,2049.46,0.28353,0.46622,0.42777,0.83469,0.99744,1,0.995,0.983,0.99744,1,0.995,0.98906,0.24294,0.38282,0.55896,0.7603,0.0001387,0.0001387,0.0001387 +89,2070.48,0.25132,0.36257,0.41205,0.82309,0.99738,1,0.995,0.98274,0.99738,1,0.995,0.98906,0.24028,0.38398,0.55634,0.76012,0.0001288,0.0001288,0.0001288 +90,2091.89,0.28068,0.42977,0.43825,0.84817,0.9974,1,0.995,0.98981,0.9974,1,0.995,0.98956,0.22507,0.37553,0.54247,0.75689,0.0001189,0.0001189,0.0001189 +91,2112.14,0.24238,0.31482,0.63333,0.81215,0.99747,1,0.995,0.98981,0.99747,1,0.995,0.995,0.22337,0.36898,0.5372,0.75683,0.000109,0.000109,0.000109 +92,2132.88,0.23122,0.31039,0.58895,0.80278,0.9975,1,0.995,0.9898,0.9975,1,0.995,0.99012,0.22504,0.36626,0.54179,0.75777,9.91e-05,9.91e-05,9.91e-05 +93,2153.12,0.22262,0.31585,0.57852,0.8181,0.99747,1,0.995,0.98905,0.99747,1,0.995,0.99005,0.23394,0.3675,0.54763,0.76053,8.92e-05,8.92e-05,8.92e-05 +94,2173.67,0.19907,0.31006,0.56646,0.77368,0.99735,1,0.995,0.97193,0.99735,1,0.995,0.99004,0.26107,0.37126,0.58539,0.76733,7.93e-05,7.93e-05,7.93e-05 +95,2193.72,0.23272,0.30909,0.61077,0.81861,0.9973,1,0.995,0.9739,0.9973,1,0.995,0.99004,0.26355,0.36907,0.59302,0.76806,6.94e-05,6.94e-05,6.94e-05 +96,2214.15,0.20241,0.31236,0.58582,0.76797,0.99725,1,0.995,0.98007,0.99725,1,0.995,0.99004,0.26249,0.3662,0.58602,0.7677,5.95e-05,5.95e-05,5.95e-05 +97,2234.21,0.21459,0.30967,0.59222,0.74928,0.99723,1,0.995,0.98904,0.99723,1,0.995,0.99004,0.25907,0.36415,0.57767,0.76676,4.96e-05,4.96e-05,4.96e-05 +98,2255.01,0.21133,0.29146,0.55897,0.79393,0.99734,1,0.995,0.98904,0.99734,1,0.995,0.99004,0.24913,0.36241,0.55251,0.76451,3.97e-05,3.97e-05,3.97e-05 +99,2278.09,0.21134,0.3027,0.57244,0.79451,0.99741,1,0.995,0.98904,0.99741,1,0.995,0.99004,0.24415,0.36273,0.54047,0.76365,2.98e-05,2.98e-05,2.98e-05 +100,2303.01,0.19922,0.30615,0.54985,0.80196,0.99742,1,0.995,0.98904,0.99742,1,0.995,0.99004,0.24207,0.36369,0.53453,0.76336,1.99e-05,1.99e-05,1.99e-05 diff --git a/runs/segment/train8/results.png b/runs/segment/train8/results.png new file mode 100644 index 0000000..61c71e1 --- /dev/null +++ b/runs/segment/train8/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7663d93fbef06030d44e11515cf3525900b43741f8b6659020bf4e285bcacc +size 400891 diff --git a/runs/segment/train8/train_batch0.jpg b/runs/segment/train8/train_batch0.jpg new file mode 100644 index 0000000..1541506 --- /dev/null +++ b/runs/segment/train8/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a140072d8bb08ada77ac42ac505a2ab406ffbb55bb691f04c7873a26b6fde3 +size 586907 diff --git a/runs/segment/train8/train_batch1.jpg b/runs/segment/train8/train_batch1.jpg new file mode 100644 index 0000000..2842b37 --- /dev/null +++ b/runs/segment/train8/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70478c712979dcf152ab0fafd97fded4127a96a03f6d87e1d247de69f47cb29 +size 518808 diff --git a/runs/segment/train8/train_batch2.jpg b/runs/segment/train8/train_batch2.jpg new file mode 100644 index 0000000..f9e16cd --- /dev/null +++ b/runs/segment/train8/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87d680578b91739858297722590767dc530672543315407786e56c7661801e8 +size 538697 diff --git a/runs/segment/train8/train_batch900.jpg b/runs/segment/train8/train_batch900.jpg new file mode 100644 index 0000000..297b41d --- /dev/null +++ b/runs/segment/train8/train_batch900.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288d3dbb08a81e6f4d15a326fad8ddd54968b0be42ae5c9f03c4f50fafcd11ba +size 366155 diff --git a/runs/segment/train8/train_batch901.jpg b/runs/segment/train8/train_batch901.jpg new file mode 100644 index 0000000..ac94185 --- /dev/null +++ b/runs/segment/train8/train_batch901.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35f368e4d92de252f39a40f1764a3deee93d1c4d346fc358c05ccc49dc6e0fb +size 471778 diff --git a/runs/segment/train8/train_batch902.jpg b/runs/segment/train8/train_batch902.jpg new file mode 100644 index 0000000..dcdad69 --- /dev/null +++ b/runs/segment/train8/train_batch902.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6024af3d054225fa2d7a83d15867224d67e9218084c443ae7c1af3785fed86aa +size 454183 diff --git a/runs/segment/train8/val_batch0_labels.jpg b/runs/segment/train8/val_batch0_labels.jpg new file mode 100644 index 0000000..eaaecd1 --- /dev/null +++ b/runs/segment/train8/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caef741f18f9c2634841b3cabcb2a6febb2f42b8badc8d2dda6ccec0d6685d00 +size 610498 diff --git a/runs/segment/train8/val_batch0_pred.jpg b/runs/segment/train8/val_batch0_pred.jpg new file mode 100644 index 0000000..c139957 --- /dev/null +++ b/runs/segment/train8/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15806bb3897939ce02bb7b9a061138d4983c5514aeea42f167c343d2c70d7972 +size 615072 diff --git a/runs/segment/train8/val_batch1_labels.jpg b/runs/segment/train8/val_batch1_labels.jpg new file mode 100644 index 0000000..28c2ea2 --- /dev/null +++ b/runs/segment/train8/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e5e1a02501e3d5d9d9fbbe9309a97ba904fab16dfd9a14f65755651e890508 +size 226787 diff --git a/runs/segment/train8/val_batch1_pred.jpg b/runs/segment/train8/val_batch1_pred.jpg new file mode 100644 index 0000000..83c57cb --- /dev/null +++ b/runs/segment/train8/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75a2ee5f3fa7bd39b47ab122cd436f936f7e560a5fbd75cb8c6ca504b22db0b +size 226963 diff --git a/runs/segment/train8/weights/best.pt b/runs/segment/train8/weights/best.pt new file mode 100644 index 0000000..8f5d4b4 Binary files /dev/null and b/runs/segment/train8/weights/best.pt differ diff --git a/runs/segment/train8/weights/last.pt b/runs/segment/train8/weights/last.pt new file mode 100644 index 0000000..b34df29 Binary files /dev/null and b/runs/segment/train8/weights/last.pt differ diff --git a/runs/segment/train9/args.yaml b/runs/segment/train9/args.yaml new file mode 100644 index 0000000..8515328 --- /dev/null +++ b/runs/segment/train9/args.yaml @@ -0,0 +1,106 @@ +task: segment +mode: train +model: yolov8n-seg.pt +data: datasets/检测仪/data.yaml +epochs: 100 +time: null +patience: 100 +batch: 8 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: cpu +workers: 8 +project: runs/segment +name: train9 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +multi_scale: false +compile: false +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +vid_stride: 1 +stream_buffer: false +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +embed: null +show: false +save_frames: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +show_boxes: true +line_width: null +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: true +opset: null +workspace: null +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +bgr: 0.0 +mosaic: 1.0 +mixup: 0.0 +cutmix: 0.0 +copy_paste: 0.0 +copy_paste_mode: flip +auto_augment: randaugment +erasing: 0.4 +cfg: null +tracker: botsort.yaml +save_dir: /Users/jiujiu/Projects/python/啾啾救援识别系统/JJCarDetection/runs/segment/train9 diff --git a/runs/segment/train9/labels.jpg b/runs/segment/train9/labels.jpg new file mode 100644 index 0000000..bc88320 --- /dev/null +++ b/runs/segment/train9/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce77663ef896909c4f6f2feba63a0fc92e9b7783818e89f4bc8821af05683c0 +size 144634 diff --git a/runs/train/F1_curve.png b/runs/train/F1_curve.png new file mode 100644 index 0000000..673dd35 --- /dev/null +++ b/runs/train/F1_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75272a1ce73c35a66a7580162fd05d80e2ab29cee7155dcb7d90784b05fa78ac +size 122681 diff --git a/runs/train/PR_curve.png b/runs/train/PR_curve.png new file mode 100644 index 0000000..583cfcc --- /dev/null +++ b/runs/train/PR_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04e4b6ad9deaec22eb4934da11a570c54069110d9b07514810925b5add08177 +size 107236 diff --git a/runs/train/P_curve.png b/runs/train/P_curve.png new file mode 100644 index 0000000..215e4a8 --- /dev/null +++ b/runs/train/P_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68035dd9c8a318d202c0d7a16ca8b7eb21c51e43842b91d979fdac78c13c8067 +size 115810 diff --git a/runs/train/R_curve.png b/runs/train/R_curve.png new file mode 100644 index 0000000..c249c80 --- /dev/null +++ b/runs/train/R_curve.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b9b118b0ece1047f7fd6cefea2e00ee293c62b18f9dd43f495337b0639b0a1 +size 117911 diff --git a/runs/train/args.yaml b/runs/train/args.yaml new file mode 100644 index 0000000..72596ae --- /dev/null +++ b/runs/train/args.yaml @@ -0,0 +1,98 @@ +task: detect +mode: train +model: yolov8n.pt +data: datasets/TomatoData/data.yaml +epochs: 250 +patience: 50 +batch: 4 +imgsz: 640 +save: true +save_period: -1 +cache: false +device: null +workers: 8 +project: null +name: train10 +exist_ok: false +pretrained: true +optimizer: auto +verbose: true +seed: 0 +deterministic: true +single_cls: false +rect: false +cos_lr: false +close_mosaic: 10 +resume: false +amp: true +fraction: 1.0 +profile: false +freeze: null +overlap_mask: true +mask_ratio: 4 +dropout: 0.0 +val: true +split: val +save_json: false +save_hybrid: false +conf: null +iou: 0.7 +max_det: 300 +half: false +dnn: false +plots: true +source: null +show: false +save_txt: false +save_conf: false +save_crop: false +show_labels: true +show_conf: true +vid_stride: 1 +stream_buffer: false +line_width: null +visualize: false +augment: false +agnostic_nms: false +classes: null +retina_masks: false +boxes: true +format: torchscript +keras: false +optimize: false +int8: false +dynamic: false +simplify: false +opset: null +workspace: 4 +nms: false +lr0: 0.01 +lrf: 0.01 +momentum: 0.937 +weight_decay: 0.0005 +warmup_epochs: 3.0 +warmup_momentum: 0.8 +warmup_bias_lr: 0.1 +box: 7.5 +cls: 0.5 +dfl: 1.5 +pose: 12.0 +kobj: 1.0 +label_smoothing: 0.0 +nbs: 64 +hsv_h: 0.015 +hsv_s: 0.7 +hsv_v: 0.4 +degrees: 0.0 +translate: 0.1 +scale: 0.5 +shear: 0.0 +perspective: 0.0 +flipud: 0.0 +fliplr: 0.5 +mosaic: 1.0 +mixup: 0.0 +copy_paste: 0.0 +cfg: null +tracker: botsort.yaml +save_dir: runs\detect\train10 diff --git a/runs/train/confusion_matrix.png b/runs/train/confusion_matrix.png new file mode 100644 index 0000000..caae670 --- /dev/null +++ b/runs/train/confusion_matrix.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea18b5e2320d948a1ccf16ff77eeb69f80bd1605d40a6cc1174b50bc157a700 +size 100863 diff --git a/runs/train/confusion_matrix_normalized.png b/runs/train/confusion_matrix_normalized.png new file mode 100644 index 0000000..d61c406 --- /dev/null +++ b/runs/train/confusion_matrix_normalized.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec8d60e5358da3dcba3b6640364634062e0cc2035bc4d502542fe65bb474dd9 +size 106544 diff --git a/runs/train/labels.jpg b/runs/train/labels.jpg new file mode 100644 index 0000000..a31037e --- /dev/null +++ b/runs/train/labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f68f3f6a99da58fd0ee58d0256ad5357e48c15d40fc122fcaae5a3ef81bd275 +size 392823 diff --git a/runs/train/labels_correlogram.jpg b/runs/train/labels_correlogram.jpg new file mode 100644 index 0000000..b310def --- /dev/null +++ b/runs/train/labels_correlogram.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0c379f565fc75d84681fe4ffe593815184c57f5b2b4b29f2bf6eb8c3d28217 +size 394594 diff --git a/runs/train/results.csv b/runs/train/results.csv new file mode 100644 index 0000000..0797d32 --- /dev/null +++ b/runs/train/results.csv @@ -0,0 +1,251 @@ + epoch, train/box_loss, train/cls_loss, train/dfl_loss, metrics/precision(B), metrics/recall(B), metrics/mAP50(B), metrics/mAP50-95(B), val/box_loss, val/cls_loss, val/dfl_loss, lr/pg0, lr/pg1, lr/pg2 + 1, 1.0191, 2.43, 1.228, 0.4724, 0.33289, 0.30899, 0.21225, 1.0266, 2.2872, 1.1733, 0.00054609, 0.00054609, 0.00054609 + 2, 0.93299, 1.6468, 1.1738, 0.65869, 0.4976, 0.54375, 0.397, 0.91595, 1.3455, 1.1114, 0.0010974, 0.0010974, 0.0010974 + 3, 0.88452, 1.3588, 1.1397, 0.77228, 0.52692, 0.57589, 0.4353, 0.90291, 1.4333, 1.1344, 0.0016443, 0.0016443, 0.0016443 + 4, 0.9528, 1.3681, 1.1841, 0.80915, 0.58269, 0.62275, 0.45509, 0.94453, 1.2135, 1.171, 0.0016472, 0.0016472, 0.0016472 + 5, 0.91759, 1.2446, 1.1705, 0.81679, 0.58094, 0.62966, 0.46608, 0.87418, 1.2296, 1.0953, 0.0016472, 0.0016472, 0.0016472 + 6, 0.89237, 1.1643, 1.1407, 0.86174, 0.55982, 0.63561, 0.47034, 0.88216, 1.1194, 1.1056, 0.0016406, 0.0016406, 0.0016406 + 7, 0.8455, 1.1296, 1.116, 0.87881, 0.5942, 0.6623, 0.49502, 0.89942, 1.0079, 1.1311, 0.001634, 0.001634, 0.001634 + 8, 0.90835, 1.2112, 1.1525, 0.77056, 0.58688, 0.61339, 0.46515, 0.85633, 1.2995, 1.0962, 0.0016274, 0.0016274, 0.0016274 + 9, 0.83944, 1.1021, 1.1145, 0.76707, 0.56136, 0.61562, 0.44692, 0.91137, 1.1014, 1.1378, 0.0016208, 0.0016208, 0.0016208 + 10, 0.87235, 1.0949, 1.1499, 0.90177, 0.58868, 0.6536, 0.49886, 0.85548, 1.0184, 1.0859, 0.0016142, 0.0016142, 0.0016142 + 11, 0.84775, 1.0427, 1.117, 0.81928, 0.6323, 0.6625, 0.48714, 0.81706, 1.0698, 1.0554, 0.0016076, 0.0016076, 0.0016076 + 12, 0.83146, 1.0116, 1.1069, 0.86457, 0.62868, 0.69641, 0.52416, 0.83219, 0.9179, 1.0634, 0.001601, 0.001601, 0.001601 + 13, 0.80242, 0.97193, 1.0969, 0.84286, 0.62427, 0.68595, 0.50318, 0.84073, 0.89966, 1.0704, 0.0015944, 0.0015944, 0.0015944 + 14, 0.78729, 0.96553, 1.1084, 0.85306, 0.63662, 0.68301, 0.51382, 0.84534, 0.92481, 1.0786, 0.0015878, 0.0015878, 0.0015878 + 15, 0.78629, 0.96231, 1.1043, 0.91628, 0.61762, 0.70407, 0.52166, 0.84301, 0.92921, 1.1081, 0.0015812, 0.0015812, 0.0015812 + 16, 0.76835, 0.86524, 1.0727, 0.89572, 0.64294, 0.69864, 0.52915, 0.79605, 0.8379, 1.0503, 0.0015746, 0.0015746, 0.0015746 + 17, 0.75164, 0.9095, 1.0802, 0.88515, 0.65291, 0.71692, 0.52992, 0.84631, 0.8665, 1.0733, 0.001568, 0.001568, 0.001568 + 18, 0.77483, 0.84963, 1.0815, 0.88189, 0.65736, 0.70909, 0.53134, 0.80558, 0.81316, 1.0488, 0.0015614, 0.0015614, 0.0015614 + 19, 0.74077, 0.81273, 1.061, 0.86827, 0.65168, 0.703, 0.54351, 0.81128, 0.80206, 1.0465, 0.0015548, 0.0015548, 0.0015548 + 20, 0.76002, 0.81731, 1.0643, 0.8749, 0.66381, 0.72512, 0.5104, 0.8386, 0.8174, 1.0717, 0.0015482, 0.0015482, 0.0015482 + 21, 0.75391, 0.81468, 1.0673, 0.89487, 0.65736, 0.72365, 0.53056, 0.80263, 0.78046, 1.0646, 0.0015416, 0.0015416, 0.0015416 + 22, 0.74987, 0.76293, 1.0634, 0.90298, 0.65894, 0.70849, 0.52244, 0.83247, 0.81846, 1.0739, 0.001535, 0.001535, 0.001535 + 23, 0.76221, 0.78643, 1.0592, 0.89094, 0.6701, 0.70642, 0.52614, 0.78794, 0.74593, 1.0451, 0.0015284, 0.0015284, 0.0015284 + 24, 0.74505, 0.79016, 1.0546, 0.91142, 0.6482, 0.71035, 0.54448, 0.78331, 0.75094, 1.0459, 0.0015218, 0.0015218, 0.0015218 + 25, 0.72386, 0.73214, 1.0568, 0.90224, 0.6598, 0.711, 0.53173, 0.80412, 0.74527, 1.0365, 0.0015152, 0.0015152, 0.0015152 + 26, 0.72605, 0.73848, 1.0463, 0.92305, 0.65079, 0.70912, 0.54498, 0.77738, 0.69275, 1.0506, 0.0015086, 0.0015086, 0.0015086 + 27, 0.75327, 0.72723, 1.0402, 0.94507, 0.64386, 0.72608, 0.53156, 0.82072, 0.72683, 1.0467, 0.001502, 0.001502, 0.001502 + 28, 0.73444, 0.6999, 1.0326, 0.89946, 0.68096, 0.72419, 0.55275, 0.77959, 0.69929, 1.0327, 0.0014954, 0.0014954, 0.0014954 + 29, 0.72016, 0.70846, 1.0379, 0.90637, 0.65381, 0.71846, 0.5402, 0.81151, 0.70696, 1.049, 0.0014888, 0.0014888, 0.0014888 + 30, 0.70638, 0.6995, 1.0378, 0.91616, 0.67969, 0.73442, 0.55536, 0.77198, 0.67049, 1.031, 0.0014822, 0.0014822, 0.0014822 + 31, 0.71359, 0.66711, 1.037, 0.8726, 0.68986, 0.73771, 0.55791, 0.73974, 0.64152, 0.99936, 0.0014756, 0.0014756, 0.0014756 + 32, 0.69431, 0.67428, 1.0418, 0.95209, 0.66393, 0.72357, 0.54949, 0.75362, 0.65478, 1.0224, 0.001469, 0.001469, 0.001469 + 33, 0.71161, 0.68419, 1.0234, 0.93138, 0.65515, 0.73079, 0.53964, 0.82205, 0.69401, 1.0545, 0.0014624, 0.0014624, 0.0014624 + 34, 0.70939, 0.67272, 1.0288, 0.94873, 0.6724, 0.7458, 0.56031, 0.76958, 0.65141, 1.0409, 0.0014558, 0.0014558, 0.0014558 + 35, 0.71193, 0.68432, 1.0491, 0.90406, 0.67812, 0.73824, 0.55337, 0.76635, 0.66411, 1.0374, 0.0014492, 0.0014492, 0.0014492 + 36, 0.68873, 0.65136, 1.0395, 0.92641, 0.68284, 0.74095, 0.56342, 0.75724, 0.62752, 1.0156, 0.0014426, 0.0014426, 0.0014426 + 37, 0.69166, 0.62965, 1.0198, 0.87794, 0.6727, 0.7202, 0.54848, 0.76166, 0.68855, 1.02, 0.001436, 0.001436, 0.001436 + 38, 0.69159, 0.6436, 1.0247, 0.90343, 0.69471, 0.7479, 0.57467, 0.756, 0.61536, 1.0191, 0.0014294, 0.0014294, 0.0014294 + 39, 0.65991, 0.6266, 1.0233, 0.90715, 0.69601, 0.74928, 0.57231, 0.76666, 0.61236, 1.0253, 0.0014228, 0.0014228, 0.0014228 + 40, 0.68926, 0.65775, 1.0337, 0.883, 0.67167, 0.73019, 0.55277, 0.76957, 0.63708, 1.0344, 0.0014161, 0.0014161, 0.0014161 + 41, 0.71503, 0.63772, 1.0274, 0.90671, 0.71162, 0.75305, 0.574, 0.76106, 0.61121, 1.0276, 0.0014095, 0.0014095, 0.0014095 + 42, 0.69023, 0.60353, 1.0175, 0.92914, 0.69905, 0.7472, 0.56093, 0.72671, 0.57994, 1.0024, 0.0014029, 0.0014029, 0.0014029 + 43, 0.65881, 0.58923, 1.0171, 0.88889, 0.70295, 0.7367, 0.57434, 0.7413, 0.58368, 1.0068, 0.0013963, 0.0013963, 0.0013963 + 44, 0.68219, 0.6065, 1.0097, 0.89952, 0.70072, 0.74378, 0.57235, 0.74138, 0.59054, 1.0126, 0.0013897, 0.0013897, 0.0013897 + 45, 0.65454, 0.60137, 1.0055, 0.89713, 0.71432, 0.75709, 0.56447, 0.7507, 0.58869, 1.0082, 0.0013831, 0.0013831, 0.0013831 + 46, 0.62125, 0.56145, 1.0081, 0.91719, 0.71401, 0.75821, 0.57286, 0.72844, 0.56667, 1.0019, 0.0013765, 0.0013765, 0.0013765 + 47, 0.63403, 0.57091, 1.0029, 0.93925, 0.70354, 0.75517, 0.57128, 0.74247, 0.5709, 0.99848, 0.0013699, 0.0013699, 0.0013699 + 48, 0.65833, 0.59762, 1.0094, 0.91265, 0.70444, 0.74657, 0.56725, 0.7684, 0.57124, 1.0084, 0.0013633, 0.0013633, 0.0013633 + 49, 0.65459, 0.58376, 1.0186, 0.92097, 0.70696, 0.75201, 0.58521, 0.74342, 0.549, 1.0166, 0.0013567, 0.0013567, 0.0013567 + 50, 0.65463, 0.57966, 1.0143, 0.93061, 0.69382, 0.75939, 0.57845, 0.74295, 0.54679, 1.0168, 0.0013501, 0.0013501, 0.0013501 + 51, 0.67221, 0.56573, 1.0147, 0.92819, 0.67704, 0.76057, 0.57634, 0.7563, 0.59723, 1.0249, 0.0013435, 0.0013435, 0.0013435 + 52, 0.63845, 0.55607, 1.0107, 0.91231, 0.69968, 0.75225, 0.57383, 0.73632, 0.55099, 1.0147, 0.0013369, 0.0013369, 0.0013369 + 53, 0.65965, 0.57054, 1.002, 0.95191, 0.68609, 0.74774, 0.56677, 0.7526, 0.54251, 1.0267, 0.0013303, 0.0013303, 0.0013303 + 54, 0.65895, 0.55335, 1.0181, 0.89865, 0.69472, 0.74165, 0.56384, 0.73775, 0.57051, 1.0212, 0.0013237, 0.0013237, 0.0013237 + 55, 0.63874, 0.54794, 1, 0.91739, 0.6943, 0.73672, 0.57756, 0.73239, 0.55342, 1.0012, 0.0013171, 0.0013171, 0.0013171 + 56, 0.66454, 0.56571, 1.0187, 0.92428, 0.6869, 0.73793, 0.57531, 0.72818, 0.55522, 1.0057, 0.0013105, 0.0013105, 0.0013105 + 57, 0.63809, 0.54233, 1.0065, 0.90847, 0.71543, 0.75656, 0.58693, 0.7149, 0.51395, 1.0054, 0.0013039, 0.0013039, 0.0013039 + 58, 0.61872, 0.53296, 0.99989, 0.94673, 0.70306, 0.75375, 0.58041, 0.73643, 0.51999, 1.0215, 0.0012973, 0.0012973, 0.0012973 + 59, 0.62672, 0.54159, 1.0045, 0.94372, 0.70436, 0.74444, 0.59052, 0.70138, 0.51321, 1.0154, 0.0012907, 0.0012907, 0.0012907 + 60, 0.61359, 0.51198, 0.99968, 0.92997, 0.68009, 0.73436, 0.58411, 0.70803, 0.5338, 0.9993, 0.0012841, 0.0012841, 0.0012841 + 61, 0.6504, 0.53666, 1.0089, 0.91993, 0.68039, 0.74213, 0.57377, 0.74416, 0.56194, 1.0237, 0.0012775, 0.0012775, 0.0012775 + 62, 0.63551, 0.54069, 0.99284, 0.88932, 0.71681, 0.76343, 0.58047, 0.77834, 0.56782, 1.0528, 0.0012709, 0.0012709, 0.0012709 + 63, 0.6214, 0.51774, 0.98823, 0.93512, 0.70283, 0.75974, 0.56975, 0.77922, 0.56261, 1.0417, 0.0012643, 0.0012643, 0.0012643 + 64, 0.64181, 0.56533, 1.0099, 0.9382, 0.6963, 0.7543, 0.57199, 0.73976, 0.53707, 1.0209, 0.0012577, 0.0012577, 0.0012577 + 65, 0.59929, 0.52071, 0.98605, 0.94545, 0.69634, 0.75313, 0.58488, 0.74636, 0.52844, 1.0269, 0.0012511, 0.0012511, 0.0012511 + 66, 0.60716, 0.51792, 0.98556, 0.9427, 0.68741, 0.74894, 0.58295, 0.7436, 0.54718, 1.0445, 0.0012445, 0.0012445, 0.0012445 + 67, 0.63074, 0.5311, 0.99886, 0.95281, 0.70664, 0.76469, 0.58801, 0.72335, 0.53373, 1.0326, 0.0012379, 0.0012379, 0.0012379 + 68, 0.62233, 0.53743, 0.99767, 0.92765, 0.71251, 0.75937, 0.58283, 0.73529, 0.51336, 1.0419, 0.0012313, 0.0012313, 0.0012313 + 69, 0.60447, 0.49867, 0.99532, 0.93636, 0.71011, 0.76457, 0.59178, 0.71935, 0.50881, 1.0376, 0.0012247, 0.0012247, 0.0012247 + 70, 0.61932, 0.50545, 0.999, 0.91674, 0.71038, 0.75794, 0.58533, 0.75447, 0.52991, 1.0358, 0.0012181, 0.0012181, 0.0012181 + 71, 0.60391, 0.48512, 0.98389, 0.94092, 0.70928, 0.75114, 0.58189, 0.76398, 0.53141, 1.037, 0.0012115, 0.0012115, 0.0012115 + 72, 0.60591, 0.49861, 0.99437, 0.90897, 0.70669, 0.74245, 0.57858, 0.73436, 0.51575, 1.0282, 0.0012049, 0.0012049, 0.0012049 + 73, 0.62959, 0.51379, 0.99504, 0.91736, 0.71046, 0.75395, 0.5878, 0.73125, 0.52058, 1.0152, 0.0011983, 0.0011983, 0.0011983 + 74, 0.61827, 0.49488, 0.9899, 0.89423, 0.70035, 0.75157, 0.58648, 0.72435, 0.51084, 1.0159, 0.0011917, 0.0011917, 0.0011917 + 75, 0.60285, 0.49032, 0.97983, 0.92138, 0.69465, 0.76122, 0.58376, 0.75194, 0.53438, 1.0394, 0.0011851, 0.0011851, 0.0011851 + 76, 0.62026, 0.51612, 0.98415, 0.92743, 0.71367, 0.7731, 0.58941, 0.74404, 0.51428, 1.0476, 0.0011785, 0.0011785, 0.0011785 + 77, 0.61277, 0.49476, 0.99303, 0.94122, 0.70685, 0.77392, 0.59533, 0.72701, 0.49371, 1.0345, 0.0011719, 0.0011719, 0.0011719 + 78, 0.59545, 0.47609, 0.98273, 0.94284, 0.69368, 0.76708, 0.58935, 0.71509, 0.51128, 1.009, 0.0011653, 0.0011653, 0.0011653 + 79, 0.57588, 0.49521, 0.98591, 0.95369, 0.68902, 0.77155, 0.59635, 0.71039, 0.50921, 0.99933, 0.0011587, 0.0011587, 0.0011587 + 80, 0.5858, 0.46828, 0.98829, 0.9326, 0.70107, 0.76375, 0.59385, 0.7102, 0.52462, 1.0036, 0.0011521, 0.0011521, 0.0011521 + 81, 0.59263, 0.47982, 0.97168, 0.94325, 0.71443, 0.76488, 0.59933, 0.71314, 0.5214, 1.0104, 0.0011455, 0.0011455, 0.0011455 + 82, 0.60228, 0.47946, 0.98278, 0.93316, 0.70561, 0.76793, 0.59375, 0.71965, 0.51617, 1.0216, 0.0011389, 0.0011389, 0.0011389 + 83, 0.5656, 0.46138, 0.97677, 0.89942, 0.71202, 0.75762, 0.59189, 0.71486, 0.51916, 1.0241, 0.0011323, 0.0011323, 0.0011323 + 84, 0.6345, 0.49976, 0.99579, 0.92901, 0.70527, 0.76361, 0.58834, 0.71298, 0.50984, 1.0145, 0.0011257, 0.0011257, 0.0011257 + 85, 0.59235, 0.47551, 0.97926, 0.94231, 0.69386, 0.75837, 0.58364, 0.70784, 0.51629, 1.0023, 0.0011191, 0.0011191, 0.0011191 + 86, 0.59858, 0.47387, 0.98803, 0.90379, 0.70681, 0.76036, 0.5894, 0.718, 0.51305, 1.01, 0.0011125, 0.0011125, 0.0011125 + 87, 0.61025, 0.47793, 0.98775, 0.8959, 0.72872, 0.76449, 0.5896, 0.71718, 0.51667, 1.0163, 0.0011059, 0.0011059, 0.0011059 + 88, 0.60212, 0.47582, 0.98267, 0.93718, 0.69961, 0.76019, 0.58352, 0.72313, 0.51763, 1.0267, 0.0010993, 0.0010993, 0.0010993 + 89, 0.5769, 0.45732, 0.97533, 0.89229, 0.70678, 0.75751, 0.59026, 0.71975, 0.51527, 1.0219, 0.0010927, 0.0010927, 0.0010927 + 90, 0.60845, 0.47488, 0.98795, 0.91952, 0.69552, 0.75035, 0.58964, 0.70414, 0.50003, 1.0146, 0.0010861, 0.0010861, 0.0010861 + 91, 0.5901, 0.47323, 0.98863, 0.93384, 0.71015, 0.76362, 0.59335, 0.70686, 0.48962, 1.0185, 0.0010795, 0.0010795, 0.0010795 + 92, 0.6237, 0.48507, 0.9973, 0.9393, 0.71486, 0.76729, 0.59277, 0.73546, 0.49962, 1.0185, 0.0010729, 0.0010729, 0.0010729 + 93, 0.60421, 0.46197, 0.97551, 0.93923, 0.70846, 0.76673, 0.59817, 0.70496, 0.49355, 0.99929, 0.0010663, 0.0010663, 0.0010663 + 94, 0.57231, 0.46286, 0.96729, 0.94623, 0.70767, 0.77369, 0.60251, 0.71992, 0.48895, 1.0044, 0.0010597, 0.0010597, 0.0010597 + 95, 0.56715, 0.45687, 0.97508, 0.94451, 0.7031, 0.77051, 0.59347, 0.70461, 0.49295, 1.0019, 0.0010531, 0.0010531, 0.0010531 + 96, 0.62394, 0.48684, 0.99229, 0.91519, 0.71644, 0.76336, 0.59177, 0.70972, 0.48273, 1.0086, 0.0010465, 0.0010465, 0.0010465 + 97, 0.60563, 0.45153, 0.96838, 0.92245, 0.70201, 0.77094, 0.59602, 0.69061, 0.50298, 0.99686, 0.0010399, 0.0010399, 0.0010399 + 98, 0.57161, 0.44934, 0.96646, 0.93299, 0.68902, 0.76405, 0.58812, 0.70306, 0.51686, 1.0092, 0.0010333, 0.0010333, 0.0010333 + 99, 0.57303, 0.4695, 0.96727, 0.92953, 0.70111, 0.76767, 0.59396, 0.70924, 0.51359, 1.016, 0.0010267, 0.0010267, 0.0010267 + 100, 0.57431, 0.45643, 0.98072, 0.93821, 0.70153, 0.77281, 0.59583, 0.71058, 0.4856, 1.007, 0.0010201, 0.0010201, 0.0010201 + 101, 0.56504, 0.45268, 0.97058, 0.93165, 0.7005, 0.76826, 0.59696, 0.70952, 0.49362, 1.0142, 0.0010135, 0.0010135, 0.0010135 + 102, 0.56271, 0.44357, 0.95976, 0.93612, 0.69142, 0.76312, 0.59902, 0.71657, 0.49906, 1.0319, 0.0010069, 0.0010069, 0.0010069 + 103, 0.56126, 0.43822, 0.96601, 0.9564, 0.70201, 0.76428, 0.59655, 0.70052, 0.48593, 1.0211, 0.0010003, 0.0010003, 0.0010003 + 104, 0.57602, 0.46022, 0.9645, 0.9452, 0.69485, 0.76058, 0.59702, 0.68535, 0.48357, 0.99731, 0.00099367, 0.00099367, 0.00099367 + 105, 0.5812, 0.45238, 0.96497, 0.91394, 0.70371, 0.75299, 0.59868, 0.69748, 0.49792, 1.0128, 0.00098706, 0.00098706, 0.00098706 + 106, 0.55714, 0.41971, 0.96442, 0.93748, 0.70685, 0.75228, 0.59721, 0.71684, 0.5192, 1.0308, 0.00098046, 0.00098046, 0.00098046 + 107, 0.57716, 0.44295, 0.97286, 0.91571, 0.71763, 0.77302, 0.59612, 0.71441, 0.50642, 1.0229, 0.00097386, 0.00097386, 0.00097386 + 108, 0.57097, 0.44448, 0.96693, 0.91916, 0.70193, 0.75605, 0.5931, 0.70558, 0.48942, 1.0097, 0.00096726, 0.00096726, 0.00096726 + 109, 0.5668, 0.44402, 0.95662, 0.93662, 0.69791, 0.76857, 0.59717, 0.70287, 0.48548, 1.0111, 0.00096066, 0.00096066, 0.00096066 + 110, 0.56749, 0.43243, 0.96609, 0.94353, 0.71325, 0.77433, 0.60162, 0.7091, 0.48387, 1.0243, 0.00095406, 0.00095406, 0.00095406 + 111, 0.56128, 0.43006, 0.96175, 0.93373, 0.70895, 0.76915, 0.59728, 0.6989, 0.47185, 1.0108, 0.00094746, 0.00094746, 0.00094746 + 112, 0.55375, 0.42194, 0.96691, 0.91112, 0.72061, 0.76723, 0.60559, 0.6933, 0.46747, 1.0049, 0.00094085, 0.00094085, 0.00094085 + 113, 0.55162, 0.43653, 0.96527, 0.92858, 0.70936, 0.75997, 0.60053, 0.7062, 0.47963, 1.0276, 0.00093425, 0.00093425, 0.00093425 + 114, 0.57176, 0.43681, 0.97465, 0.95292, 0.69792, 0.7554, 0.58785, 0.71441, 0.49272, 1.0388, 0.00092765, 0.00092765, 0.00092765 + 115, 0.55089, 0.41894, 0.95974, 0.93134, 0.7111, 0.77018, 0.59831, 0.70637, 0.48094, 1.0378, 0.00092105, 0.00092105, 0.00092105 + 116, 0.5531, 0.41168, 0.96126, 0.93792, 0.72044, 0.77802, 0.61385, 0.69919, 0.47687, 1.0207, 0.00091445, 0.00091445, 0.00091445 + 117, 0.55239, 0.4182, 0.95985, 0.91217, 0.71481, 0.77975, 0.60523, 0.69843, 0.47497, 1.0194, 0.00090785, 0.00090785, 0.00090785 + 118, 0.56611, 0.43557, 0.96245, 0.94417, 0.70035, 0.77682, 0.61146, 0.69104, 0.4872, 1.0126, 0.00090125, 0.00090125, 0.00090125 + 119, 0.54173, 0.40264, 0.968, 0.9348, 0.71167, 0.77122, 0.60789, 0.69106, 0.4782, 1.0137, 0.00089465, 0.00089465, 0.00089465 + 120, 0.58967, 0.44043, 0.97479, 0.95113, 0.68799, 0.7624, 0.59001, 0.70644, 0.50372, 1.0216, 0.00088804, 0.00088804, 0.00088804 + 121, 0.59266, 0.44399, 0.9645, 0.92241, 0.70118, 0.75654, 0.59648, 0.70741, 0.48013, 1.0192, 0.00088144, 0.00088144, 0.00088144 + 122, 0.54672, 0.41917, 0.95837, 0.94067, 0.694, 0.76248, 0.59942, 0.7027, 0.49038, 1.0196, 0.00087484, 0.00087484, 0.00087484 + 123, 0.51716, 0.40714, 0.96234, 0.9102, 0.71012, 0.76238, 0.60145, 0.69696, 0.48769, 1.0203, 0.00086824, 0.00086824, 0.00086824 + 124, 0.55277, 0.43131, 0.96035, 0.91986, 0.70527, 0.75165, 0.58774, 0.70706, 0.49613, 1.0298, 0.00086164, 0.00086164, 0.00086164 + 125, 0.52721, 0.40058, 0.95341, 0.89336, 0.71615, 0.76362, 0.59774, 0.70606, 0.47975, 1.0293, 0.00085504, 0.00085504, 0.00085504 + 126, 0.54867, 0.43297, 0.96072, 0.95152, 0.69225, 0.76163, 0.6016, 0.70389, 0.45086, 1.0284, 0.00084844, 0.00084844, 0.00084844 + 127, 0.54505, 0.41248, 0.96415, 0.93596, 0.70577, 0.76115, 0.60425, 0.71191, 0.45948, 1.0316, 0.00084184, 0.00084184, 0.00084184 + 128, 0.56822, 0.42381, 0.95873, 0.92517, 0.70603, 0.76495, 0.60614, 0.70128, 0.47493, 1.0273, 0.00083523, 0.00083523, 0.00083523 + 129, 0.56731, 0.42789, 0.97196, 0.94306, 0.70581, 0.77043, 0.60291, 0.7051, 0.48059, 1.0191, 0.00082863, 0.00082863, 0.00082863 + 130, 0.56621, 0.40848, 0.96026, 0.94037, 0.70784, 0.77217, 0.60898, 0.69758, 0.45887, 1.0185, 0.00082203, 0.00082203, 0.00082203 + 131, 0.57174, 0.418, 0.96411, 0.93969, 0.70846, 0.77442, 0.60274, 0.68571, 0.45486, 1.0235, 0.00081543, 0.00081543, 0.00081543 + 132, 0.56158, 0.42936, 0.9532, 0.91989, 0.71442, 0.77536, 0.60435, 0.69836, 0.46442, 1.0287, 0.00080883, 0.00080883, 0.00080883 + 133, 0.54115, 0.41448, 0.96312, 0.92479, 0.70895, 0.77038, 0.5975, 0.69471, 0.47269, 1.0364, 0.00080223, 0.00080223, 0.00080223 + 134, 0.53785, 0.39831, 0.95418, 0.92562, 0.72742, 0.77074, 0.60426, 0.70668, 0.47255, 1.0321, 0.00079563, 0.00079563, 0.00079563 + 135, 0.53748, 0.40037, 0.94869, 0.95726, 0.70362, 0.76935, 0.60259, 0.70397, 0.46223, 1.0288, 0.00078902, 0.00078902, 0.00078902 + 136, 0.54286, 0.39046, 0.95126, 0.9467, 0.70905, 0.7751, 0.60368, 0.70021, 0.46236, 1.0158, 0.00078242, 0.00078242, 0.00078242 + 137, 0.55556, 0.40956, 0.94926, 0.93876, 0.7085, 0.77149, 0.60327, 0.70137, 0.46078, 1.0151, 0.00077582, 0.00077582, 0.00077582 + 138, 0.5399, 0.40694, 0.94885, 0.93328, 0.70473, 0.75655, 0.59926, 0.69388, 0.46182, 1.0112, 0.00076922, 0.00076922, 0.00076922 + 139, 0.54577, 0.38741, 0.95453, 0.9572, 0.67844, 0.76379, 0.59737, 0.69951, 0.46487, 1.0196, 0.00076262, 0.00076262, 0.00076262 + 140, 0.55154, 0.41558, 0.95317, 0.91361, 0.71527, 0.76609, 0.60578, 0.704, 0.45706, 1.0324, 0.00075602, 0.00075602, 0.00075602 + 141, 0.52406, 0.38284, 0.94634, 0.91503, 0.71463, 0.76965, 0.60419, 0.70643, 0.45583, 1.029, 0.00074942, 0.00074942, 0.00074942 + 142, 0.53311, 0.39686, 0.94813, 0.92699, 0.71872, 0.7716, 0.60424, 0.69831, 0.45022, 1.0231, 0.00074282, 0.00074282, 0.00074282 + 143, 0.5088, 0.39311, 0.94595, 0.92263, 0.72504, 0.77872, 0.61017, 0.70238, 0.46506, 1.0266, 0.00073621, 0.00073621, 0.00073621 + 144, 0.52237, 0.38895, 0.95137, 0.93699, 0.71789, 0.77266, 0.60707, 0.69421, 0.47529, 1.0231, 0.00072961, 0.00072961, 0.00072961 + 145, 0.52073, 0.38757, 0.94928, 0.89315, 0.72949, 0.77836, 0.61069, 0.69482, 0.47115, 1.0218, 0.00072301, 0.00072301, 0.00072301 + 146, 0.52719, 0.37019, 0.94743, 0.90772, 0.71476, 0.77177, 0.6041, 0.6967, 0.47418, 1.0267, 0.00071641, 0.00071641, 0.00071641 + 147, 0.51327, 0.40261, 0.94737, 0.91158, 0.71337, 0.76714, 0.60046, 0.69824, 0.47633, 1.0293, 0.00070981, 0.00070981, 0.00070981 + 148, 0.51431, 0.38491, 0.94248, 0.91789, 0.72322, 0.7761, 0.6024, 0.68835, 0.4614, 1.0246, 0.00070321, 0.00070321, 0.00070321 + 149, 0.53452, 0.39972, 0.94551, 0.9323, 0.71334, 0.76879, 0.60365, 0.69082, 0.46967, 1.0169, 0.00069661, 0.00069661, 0.00069661 + 150, 0.53558, 0.40573, 0.95627, 0.92712, 0.71858, 0.77629, 0.60937, 0.70115, 0.47004, 1.0155, 0.00069, 0.00069, 0.00069 + 151, 0.53055, 0.39862, 0.9495, 0.92165, 0.6989, 0.7698, 0.61344, 0.69798, 0.46657, 1.0199, 0.0006834, 0.0006834, 0.0006834 + 152, 0.49835, 0.38017, 0.94666, 0.90859, 0.68824, 0.76253, 0.60912, 0.69557, 0.46853, 1.0125, 0.0006768, 0.0006768, 0.0006768 + 153, 0.55126, 0.40329, 0.96289, 0.94102, 0.68459, 0.7708, 0.60896, 0.70755, 0.47512, 1.0158, 0.0006702, 0.0006702, 0.0006702 + 154, 0.51849, 0.3913, 0.95093, 0.92184, 0.69391, 0.76777, 0.60816, 0.6929, 0.46492, 1.0182, 0.0006636, 0.0006636, 0.0006636 + 155, 0.54154, 0.39787, 0.9535, 0.9129, 0.70854, 0.77008, 0.61045, 0.70237, 0.47568, 1.0234, 0.000657, 0.000657, 0.000657 + 156, 0.51381, 0.37504, 0.94248, 0.93156, 0.71619, 0.77711, 0.60979, 0.69697, 0.47226, 1.0222, 0.0006504, 0.0006504, 0.0006504 + 157, 0.51094, 0.38357, 0.94268, 0.92498, 0.71426, 0.77983, 0.61445, 0.69828, 0.46361, 1.0246, 0.0006438, 0.0006438, 0.0006438 + 158, 0.53179, 0.39679, 0.95207, 0.91196, 0.71803, 0.76642, 0.61073, 0.69269, 0.46711, 1.0112, 0.00063719, 0.00063719, 0.00063719 + 159, 0.50904, 0.38723, 0.94489, 0.88426, 0.71908, 0.76366, 0.60889, 0.68526, 0.475, 1.0107, 0.00063059, 0.00063059, 0.00063059 + 160, 0.51606, 0.40097, 0.93599, 0.94672, 0.68411, 0.76743, 0.60246, 0.6842, 0.46478, 1.0065, 0.00062399, 0.00062399, 0.00062399 + 161, 0.52617, 0.38543, 0.94522, 0.94146, 0.69128, 0.76491, 0.60595, 0.67861, 0.46494, 1.0045, 0.00061739, 0.00061739, 0.00061739 + 162, 0.49813, 0.36912, 0.94286, 0.94868, 0.70056, 0.7734, 0.60246, 0.68697, 0.46324, 1.0091, 0.00061079, 0.00061079, 0.00061079 + 163, 0.52299, 0.39541, 0.95428, 0.89515, 0.72549, 0.77435, 0.61105, 0.69897, 0.46808, 1.0096, 0.00060419, 0.00060419, 0.00060419 + 164, 0.49193, 0.36232, 0.94544, 0.90695, 0.73157, 0.77962, 0.61945, 0.69233, 0.45495, 1.018, 0.00059759, 0.00059759, 0.00059759 + 165, 0.51383, 0.38598, 0.9567, 0.91318, 0.72872, 0.78885, 0.62135, 0.69636, 0.4502, 1.022, 0.00059098, 0.00059098, 0.00059098 + 166, 0.51181, 0.39047, 0.93881, 0.90514, 0.7336, 0.78772, 0.61284, 0.69554, 0.44557, 1.0216, 0.00058438, 0.00058438, 0.00058438 + 167, 0.53805, 0.38779, 0.95415, 0.90445, 0.72846, 0.77782, 0.61179, 0.70308, 0.44628, 1.0229, 0.00057778, 0.00057778, 0.00057778 + 168, 0.50402, 0.36628, 0.93657, 0.91771, 0.71605, 0.7725, 0.60634, 0.68852, 0.44618, 1.026, 0.00057118, 0.00057118, 0.00057118 + 169, 0.52002, 0.37342, 0.93435, 0.92542, 0.7207, 0.78723, 0.61456, 0.6787, 0.44644, 1.0179, 0.00056458, 0.00056458, 0.00056458 + 170, 0.51971, 0.38386, 0.94776, 0.92272, 0.7227, 0.78934, 0.62344, 0.67458, 0.44162, 1.0178, 0.00055798, 0.00055798, 0.00055798 + 171, 0.48641, 0.36389, 0.941, 0.93689, 0.71185, 0.78523, 0.62011, 0.68561, 0.43622, 1.0295, 0.00055138, 0.00055138, 0.00055138 + 172, 0.52048, 0.37345, 0.93941, 0.93672, 0.71127, 0.78562, 0.62382, 0.67633, 0.44103, 1.0177, 0.00054478, 0.00054478, 0.00054478 + 173, 0.51151, 0.37122, 0.93553, 0.93655, 0.71305, 0.78469, 0.61886, 0.67802, 0.4469, 1.0161, 0.00053817, 0.00053817, 0.00053817 + 174, 0.4934, 0.37003, 0.93556, 0.92775, 0.71663, 0.78204, 0.61671, 0.68588, 0.44001, 1.0203, 0.00053157, 0.00053157, 0.00053157 + 175, 0.52196, 0.37795, 0.9372, 0.91862, 0.71611, 0.77696, 0.61458, 0.69666, 0.43733, 1.0286, 0.00052497, 0.00052497, 0.00052497 + 176, 0.50367, 0.37162, 0.94747, 0.94257, 0.69386, 0.77724, 0.60827, 0.7016, 0.44639, 1.0282, 0.00051837, 0.00051837, 0.00051837 + 177, 0.50325, 0.36604, 0.94185, 0.92679, 0.72174, 0.78755, 0.61415, 0.69535, 0.45588, 1.0177, 0.00051177, 0.00051177, 0.00051177 + 178, 0.50823, 0.36141, 0.93782, 0.94411, 0.72038, 0.78316, 0.61167, 0.69085, 0.44367, 1.0219, 0.00050517, 0.00050517, 0.00050517 + 179, 0.51648, 0.36022, 0.93457, 0.93154, 0.73228, 0.77614, 0.61494, 0.70592, 0.44211, 1.0225, 0.00049857, 0.00049857, 0.00049857 + 180, 0.51431, 0.36493, 0.9306, 0.90918, 0.72478, 0.77065, 0.61326, 0.69666, 0.4455, 1.0179, 0.00049197, 0.00049197, 0.00049197 + 181, 0.5083, 0.35441, 0.94323, 0.90901, 0.73068, 0.77818, 0.6134, 0.69943, 0.43909, 1.0194, 0.00048536, 0.00048536, 0.00048536 + 182, 0.49566, 0.35835, 0.93947, 0.94453, 0.71495, 0.77464, 0.6129, 0.70355, 0.44604, 1.0197, 0.00047876, 0.00047876, 0.00047876 + 183, 0.54092, 0.37842, 0.94554, 0.93336, 0.71007, 0.77259, 0.61003, 0.69371, 0.44459, 1.0196, 0.00047216, 0.00047216, 0.00047216 + 184, 0.51449, 0.36972, 0.92587, 0.87684, 0.73621, 0.77717, 0.60951, 0.69093, 0.44578, 1.0121, 0.00046556, 0.00046556, 0.00046556 + 185, 0.49555, 0.3485, 0.94275, 0.91465, 0.71577, 0.78022, 0.61643, 0.67169, 0.43256, 1.0088, 0.00045896, 0.00045896, 0.00045896 + 186, 0.46911, 0.33426, 0.93252, 0.93354, 0.71039, 0.78661, 0.62003, 0.67818, 0.43686, 1.0112, 0.00045236, 0.00045236, 0.00045236 + 187, 0.49088, 0.35776, 0.93345, 0.92513, 0.71495, 0.78019, 0.61246, 0.67578, 0.44276, 1.0119, 0.00044576, 0.00044576, 0.00044576 + 188, 0.49546, 0.35214, 0.94022, 0.91142, 0.72371, 0.77545, 0.61557, 0.67423, 0.43687, 1.0104, 0.00043915, 0.00043915, 0.00043915 + 189, 0.49811, 0.3517, 0.92357, 0.91858, 0.71591, 0.77873, 0.61796, 0.6833, 0.44922, 1.0103, 0.00043255, 0.00043255, 0.00043255 + 190, 0.48637, 0.36166, 0.92622, 0.93609, 0.7124, 0.78004, 0.61473, 0.69182, 0.44748, 1.0095, 0.00042595, 0.00042595, 0.00042595 + 191, 0.48108, 0.34887, 0.92953, 0.92506, 0.72416, 0.77391, 0.61544, 0.68787, 0.43935, 1.0088, 0.00041935, 0.00041935, 0.00041935 + 192, 0.48588, 0.34555, 0.92739, 0.92687, 0.72464, 0.77667, 0.61366, 0.69072, 0.44474, 1.0138, 0.00041275, 0.00041275, 0.00041275 + 193, 0.47168, 0.3387, 0.9297, 0.93161, 0.71817, 0.78216, 0.609, 0.69221, 0.45267, 1.0239, 0.00040615, 0.00040615, 0.00040615 + 194, 0.47997, 0.33516, 0.93083, 0.91829, 0.72197, 0.7807, 0.61345, 0.69504, 0.45428, 1.0312, 0.00039955, 0.00039955, 0.00039955 + 195, 0.49029, 0.35371, 0.93983, 0.89829, 0.72202, 0.77544, 0.61209, 0.69307, 0.46059, 1.0298, 0.00039295, 0.00039295, 0.00039295 + 196, 0.47978, 0.34539, 0.92459, 0.92561, 0.7044, 0.76871, 0.61151, 0.69084, 0.45309, 1.0264, 0.00038634, 0.00038634, 0.00038634 + 197, 0.5028, 0.35257, 0.94438, 0.92769, 0.70571, 0.77069, 0.61242, 0.68529, 0.45217, 1.0221, 0.00037974, 0.00037974, 0.00037974 + 198, 0.49404, 0.34928, 0.93716, 0.93782, 0.71037, 0.77684, 0.6147, 0.69182, 0.46009, 1.0233, 0.00037314, 0.00037314, 0.00037314 + 199, 0.46733, 0.339, 0.92755, 0.93909, 0.71178, 0.7761, 0.61551, 0.6932, 0.45662, 1.0269, 0.00036654, 0.00036654, 0.00036654 + 200, 0.49428, 0.34788, 0.93575, 0.92945, 0.7164, 0.78043, 0.6182, 0.69163, 0.45505, 1.0259, 0.00035994, 0.00035994, 0.00035994 + 201, 0.49555, 0.35527, 0.93743, 0.93181, 0.71506, 0.77994, 0.61662, 0.69802, 0.46029, 1.0273, 0.00035334, 0.00035334, 0.00035334 + 202, 0.46981, 0.34668, 0.93254, 0.91712, 0.72227, 0.78025, 0.6181, 0.6987, 0.45442, 1.0282, 0.00034674, 0.00034674, 0.00034674 + 203, 0.4909, 0.35014, 0.93923, 0.91399, 0.72388, 0.78207, 0.61869, 0.70014, 0.46155, 1.0251, 0.00034013, 0.00034013, 0.00034013 + 204, 0.4666, 0.34106, 0.92078, 0.94415, 0.71068, 0.7807, 0.62084, 0.69132, 0.44698, 1.0266, 0.00033353, 0.00033353, 0.00033353 + 205, 0.48535, 0.34084, 0.92902, 0.95154, 0.70992, 0.77855, 0.62079, 0.68411, 0.43577, 1.0263, 0.00032693, 0.00032693, 0.00032693 + 206, 0.49881, 0.3475, 0.91711, 0.94816, 0.70463, 0.77616, 0.62353, 0.68576, 0.43553, 1.0236, 0.00032033, 0.00032033, 0.00032033 + 207, 0.47203, 0.33925, 0.92539, 0.94152, 0.70681, 0.77174, 0.62191, 0.67933, 0.43214, 1.0241, 0.00031373, 0.00031373, 0.00031373 + 208, 0.48418, 0.33889, 0.94543, 0.94301, 0.71656, 0.77838, 0.6171, 0.67577, 0.4319, 1.0213, 0.00030713, 0.00030713, 0.00030713 + 209, 0.46971, 0.33676, 0.939, 0.94989, 0.72428, 0.78498, 0.61865, 0.68623, 0.44595, 1.0195, 0.00030053, 0.00030053, 0.00030053 + 210, 0.47086, 0.3334, 0.92543, 0.95387, 0.7109, 0.78054, 0.61637, 0.69016, 0.45616, 1.0217, 0.00029393, 0.00029393, 0.00029393 + 211, 0.48595, 0.33534, 0.923, 0.93657, 0.7109, 0.77595, 0.61692, 0.69625, 0.45591, 1.0298, 0.00028732, 0.00028732, 0.00028732 + 212, 0.46331, 0.33157, 0.9295, 0.93041, 0.71281, 0.77853, 0.61287, 0.69615, 0.44829, 1.0332, 0.00028072, 0.00028072, 0.00028072 + 213, 0.48008, 0.34427, 0.92934, 0.9258, 0.71684, 0.77816, 0.61486, 0.69684, 0.44882, 1.0351, 0.00027412, 0.00027412, 0.00027412 + 214, 0.47887, 0.33788, 0.91621, 0.90706, 0.72627, 0.77784, 0.61175, 0.69512, 0.44641, 1.0329, 0.00026752, 0.00026752, 0.00026752 + 215, 0.47473, 0.33925, 0.93142, 0.90332, 0.72549, 0.77856, 0.61085, 0.70151, 0.45048, 1.0325, 0.00026092, 0.00026092, 0.00026092 + 216, 0.46361, 0.3303, 0.91637, 0.90763, 0.72127, 0.77231, 0.60939, 0.69448, 0.4482, 1.0301, 0.00025432, 0.00025432, 0.00025432 + 217, 0.47765, 0.33494, 0.92826, 0.91204, 0.72562, 0.77644, 0.61359, 0.68306, 0.43913, 1.0217, 0.00024772, 0.00024772, 0.00024772 + 218, 0.47832, 0.3414, 0.91885, 0.91606, 0.72652, 0.77908, 0.62056, 0.6851, 0.4395, 1.018, 0.00024111, 0.00024111, 0.00024111 + 219, 0.46949, 0.32999, 0.93913, 0.92363, 0.71361, 0.77779, 0.62169, 0.68587, 0.44012, 1.0162, 0.00023451, 0.00023451, 0.00023451 + 220, 0.47776, 0.33102, 0.92671, 0.92647, 0.72412, 0.78361, 0.62421, 0.68514, 0.43868, 1.019, 0.00022791, 0.00022791, 0.00022791 + 221, 0.4646, 0.3351, 0.91672, 0.90495, 0.72056, 0.77836, 0.6205, 0.68975, 0.44233, 1.0281, 0.00022131, 0.00022131, 0.00022131 + 222, 0.47982, 0.33424, 0.93098, 0.91839, 0.71667, 0.77672, 0.61751, 0.68873, 0.43927, 1.0321, 0.00021471, 0.00021471, 0.00021471 + 223, 0.47006, 0.33226, 0.92661, 0.91891, 0.71011, 0.77964, 0.62492, 0.68912, 0.43942, 1.0292, 0.00020811, 0.00020811, 0.00020811 + 224, 0.47625, 0.32355, 0.92795, 0.9038, 0.7247, 0.78034, 0.62541, 0.69328, 0.44713, 1.0325, 0.00020151, 0.00020151, 0.00020151 + 225, 0.45805, 0.31713, 0.91611, 0.92344, 0.71011, 0.77644, 0.62156, 0.697, 0.45694, 1.0377, 0.00019491, 0.00019491, 0.00019491 + 226, 0.46957, 0.32598, 0.93094, 0.92695, 0.70851, 0.7744, 0.61861, 0.69889, 0.45153, 1.0414, 0.0001883, 0.0001883, 0.0001883 + 227, 0.46426, 0.3257, 0.92386, 0.93317, 0.70898, 0.77899, 0.61762, 0.7008, 0.45091, 1.0449, 0.0001817, 0.0001817, 0.0001817 + 228, 0.45733, 0.32602, 0.91435, 0.94246, 0.70503, 0.77644, 0.61608, 0.6953, 0.45222, 1.0442, 0.0001751, 0.0001751, 0.0001751 + 229, 0.47189, 0.32938, 0.92741, 0.93982, 0.70804, 0.7776, 0.62102, 0.69469, 0.45905, 1.0424, 0.0001685, 0.0001685, 0.0001685 + 230, 0.45072, 0.31277, 0.92491, 0.93608, 0.71166, 0.77638, 0.61963, 0.69936, 0.4685, 1.043, 0.0001619, 0.0001619, 0.0001619 + 231, 0.47642, 0.33377, 0.93012, 0.9381, 0.71185, 0.77677, 0.61991, 0.70067, 0.46132, 1.042, 0.0001553, 0.0001553, 0.0001553 + 232, 0.46163, 0.31081, 0.91706, 0.94193, 0.70688, 0.77632, 0.61912, 0.69703, 0.45506, 1.0403, 0.0001487, 0.0001487, 0.0001487 + 233, 0.44992, 0.32033, 0.92444, 0.94152, 0.70815, 0.77998, 0.62133, 0.6948, 0.45494, 1.037, 0.0001421, 0.0001421, 0.0001421 + 234, 0.44273, 0.3082, 0.91428, 0.94324, 0.71185, 0.77808, 0.62064, 0.69217, 0.44991, 1.0379, 0.00013549, 0.00013549, 0.00013549 + 235, 0.44676, 0.31301, 0.91986, 0.94085, 0.70932, 0.77493, 0.6183, 0.69557, 0.45352, 1.0379, 0.00012889, 0.00012889, 0.00012889 + 236, 0.48922, 0.33399, 0.93169, 0.93756, 0.70721, 0.77482, 0.61931, 0.70098, 0.45628, 1.0385, 0.00012229, 0.00012229, 0.00012229 + 237, 0.43521, 0.31316, 0.92008, 0.93948, 0.70767, 0.77354, 0.61827, 0.69822, 0.45164, 1.036, 0.00011569, 0.00011569, 0.00011569 + 238, 0.45256, 0.30856, 0.91641, 0.93521, 0.71011, 0.77385, 0.6194, 0.69706, 0.45019, 1.0351, 0.00010909, 0.00010909, 0.00010909 + 239, 0.47956, 0.32637, 0.91581, 0.93566, 0.71011, 0.77905, 0.61793, 0.69836, 0.44482, 1.037, 0.00010249, 0.00010249, 0.00010249 + 240, 0.42673, 0.30503, 0.90483, 0.9319, 0.71172, 0.77721, 0.61591, 0.69714, 0.44454, 1.0362, 9.5886e-05, 9.5886e-05, 9.5886e-05 + 241, 0.39501, 0.26525, 0.86873, 0.937, 0.71722, 0.77836, 0.61933, 0.69833, 0.44562, 1.0433, 8.9285e-05, 8.9285e-05, 8.9285e-05 + 242, 0.4058, 0.27054, 0.85774, 0.93882, 0.70781, 0.77564, 0.61699, 0.69671, 0.44187, 1.0446, 8.2683e-05, 8.2683e-05, 8.2683e-05 + 243, 0.41426, 0.27729, 0.86836, 0.94561, 0.70351, 0.77769, 0.6197, 0.69625, 0.44175, 1.0426, 7.6082e-05, 7.6082e-05, 7.6082e-05 + 244, 0.39336, 0.26212, 0.86558, 0.93916, 0.71199, 0.77838, 0.62255, 0.69741, 0.44052, 1.0432, 6.9481e-05, 6.9481e-05, 6.9481e-05 + 245, 0.38119, 0.25731, 0.84404, 0.9291, 0.71334, 0.78114, 0.62572, 0.69456, 0.43974, 1.0408, 6.2879e-05, 6.2879e-05, 6.2879e-05 + 246, 0.40255, 0.27043, 0.87371, 0.9365, 0.71413, 0.78234, 0.6247, 0.69449, 0.44331, 1.0397, 5.6278e-05, 5.6278e-05, 5.6278e-05 + 247, 0.39251, 0.26046, 0.8688, 0.93365, 0.71416, 0.77967, 0.62515, 0.69499, 0.44393, 1.0391, 4.9677e-05, 4.9677e-05, 4.9677e-05 + 248, 0.39597, 0.26582, 0.875, 0.94182, 0.70826, 0.78131, 0.62596, 0.69341, 0.44568, 1.0386, 4.3075e-05, 4.3075e-05, 4.3075e-05 + 249, 0.38782, 0.25747, 0.87714, 0.94892, 0.70722, 0.78122, 0.62587, 0.69293, 0.44843, 1.0382, 3.6474e-05, 3.6474e-05, 3.6474e-05 + 250, 0.38306, 0.25412, 0.85251, 0.94534, 0.7098, 0.77969, 0.62551, 0.69182, 0.45014, 1.0366, 2.9873e-05, 2.9873e-05, 2.9873e-05 diff --git a/runs/train/results.png b/runs/train/results.png new file mode 100644 index 0000000..2087b73 --- /dev/null +++ b/runs/train/results.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ae9b1606d64334ff7412e478c71835e48cde6f323d2ceec03d02a6b294cb17 +size 270966 diff --git a/runs/train/train_batch0.jpg b/runs/train/train_batch0.jpg new file mode 100644 index 0000000..f939a8c --- /dev/null +++ b/runs/train/train_batch0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813f65cbeaf1e4ae11f372f93e6c88a76f5711f7fb33f25edffb25ebf5c691b7 +size 265919 diff --git a/runs/train/train_batch1.jpg b/runs/train/train_batch1.jpg new file mode 100644 index 0000000..d184617 --- /dev/null +++ b/runs/train/train_batch1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65818b078dc25a26e01ec7d65b34c40dbe8e58bbdecd2d4a40fb43fbe27e445c +size 192665 diff --git a/runs/train/train_batch13920.jpg b/runs/train/train_batch13920.jpg new file mode 100644 index 0000000..798dc1a --- /dev/null +++ b/runs/train/train_batch13920.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9befa2dd11bf39b6545586818fe8106b564aeb2183c81b1bebe0e439fe3d62 +size 141504 diff --git a/runs/train/train_batch13921.jpg b/runs/train/train_batch13921.jpg new file mode 100644 index 0000000..fd71a44 --- /dev/null +++ b/runs/train/train_batch13921.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60739bb529dfc5da408cb0a2e5b6f83c83e290a8e4a1909f3b4d675972f52c1 +size 133263 diff --git a/runs/train/train_batch13922.jpg b/runs/train/train_batch13922.jpg new file mode 100644 index 0000000..01057fe --- /dev/null +++ b/runs/train/train_batch13922.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d5423e5c47d192cbc070ca9783dd14a3d99bacd1c515242b2c6ec3d290b8e6 +size 159567 diff --git a/runs/train/train_batch2.jpg b/runs/train/train_batch2.jpg new file mode 100644 index 0000000..92c47fc --- /dev/null +++ b/runs/train/train_batch2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e6863eeb5f6c7bfeb6553c95bd0bf072151f5cccc6932f475d65366a3b526f +size 174038 diff --git a/runs/train/val_batch0_labels.jpg b/runs/train/val_batch0_labels.jpg new file mode 100644 index 0000000..c63793a --- /dev/null +++ b/runs/train/val_batch0_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca93b4719b1f365b92750176229dc98aa579c9a9981338b75b2ff14eeffdcd6 +size 320464 diff --git a/runs/train/val_batch0_pred.jpg b/runs/train/val_batch0_pred.jpg new file mode 100644 index 0000000..07ce96d --- /dev/null +++ b/runs/train/val_batch0_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6fa70643e0f870fcf63f80b8a2eed22ff4a60f7aaeb72c1eb2eafdb4f8200d +size 330816 diff --git a/runs/train/val_batch1_labels.jpg b/runs/train/val_batch1_labels.jpg new file mode 100644 index 0000000..5808cd7 --- /dev/null +++ b/runs/train/val_batch1_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736c5a300e7a6324037dee9abbfc4046eb4d9479edfa8c9dd96b70ec1f7ced83 +size 441051 diff --git a/runs/train/val_batch1_pred.jpg b/runs/train/val_batch1_pred.jpg new file mode 100644 index 0000000..dd13f73 --- /dev/null +++ b/runs/train/val_batch1_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71630ab2f88a79f5b0892f3d988ba1ce163e98c4e8f6ab62d2a0e3f229fc94ac +size 443884 diff --git a/runs/train/val_batch2_labels.jpg b/runs/train/val_batch2_labels.jpg new file mode 100644 index 0000000..d5c72a6 --- /dev/null +++ b/runs/train/val_batch2_labels.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f038fd04d399729c5013f16ea70ec772f4d74810755a91c9ff223694fac9fe68 +size 458148 diff --git a/runs/train/val_batch2_pred.jpg b/runs/train/val_batch2_pred.jpg new file mode 100644 index 0000000..6464d85 --- /dev/null +++ b/runs/train/val_batch2_pred.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9165497653256728e5cb31f442eacf1ae89bba356978f142376ddbcb6ee6e497 +size 466167 diff --git a/runs/train/weights/best.pt b/runs/train/weights/best.pt new file mode 100644 index 0000000..4364df2 Binary files /dev/null and b/runs/train/weights/best.pt differ diff --git a/runs/train/weights/last.pt b/runs/train/weights/last.pt new file mode 100644 index 0000000..f849d5a Binary files /dev/null and b/runs/train/weights/last.pt differ diff --git a/save_data/1_detect_result.avi b/save_data/1_detect_result.avi new file mode 100644 index 0000000..703d245 Binary files /dev/null and b/save_data/1_detect_result.avi differ diff --git a/save_data/IMG_0983_detect_result.jpg b/save_data/IMG_0983_detect_result.jpg new file mode 100644 index 0000000..eeafd87 --- /dev/null +++ b/save_data/IMG_0983_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f223e9cec17a42ec4069dae6737ef0aaa088c90689add2055ab9b687751111cd +size 2570023 diff --git a/save_data/IMG_0984_detect_result.jpg b/save_data/IMG_0984_detect_result.jpg new file mode 100644 index 0000000..90ee5bc --- /dev/null +++ b/save_data/IMG_0984_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8cb9b8c3b19fbf55a3b981dc2dec17d5c08a55c0c8398b2b90c2ef6ba5b3ceb +size 2352768 diff --git a/save_data/IMG_0985_detect_result.jpg b/save_data/IMG_0985_detect_result.jpg new file mode 100644 index 0000000..a2854f0 --- /dev/null +++ b/save_data/IMG_0985_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f55b3af38583038578b5cf99831503cc786076c8152674fa8519bf8e93591fc +size 2200984 diff --git a/save_data/IMG_0986_detect_result.jpg b/save_data/IMG_0986_detect_result.jpg new file mode 100644 index 0000000..a22eb20 --- /dev/null +++ b/save_data/IMG_0986_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e193b0ccd83aeb3f41ffc72b1423d3e64d16fd367d421acd7b275041007ef94c +size 1955309 diff --git a/save_data/IMG_0987_detect_result.jpg b/save_data/IMG_0987_detect_result.jpg new file mode 100644 index 0000000..14ef365 --- /dev/null +++ b/save_data/IMG_0987_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976fd6ae98e525bef3a1b27ae1c664dddfeefa441d1008cc00acc2693495ccda +size 1875775 diff --git a/save_data/IMG_0988_detect_result.jpg b/save_data/IMG_0988_detect_result.jpg new file mode 100644 index 0000000..65383b6 --- /dev/null +++ b/save_data/IMG_0988_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c7dde3ec2f7ba14c0dd6867094a46e4c6a1e9298ce25b2cf12b652f5ea5027 +size 2842304 diff --git a/save_data/IMG_0989_detect_result.jpg b/save_data/IMG_0989_detect_result.jpg new file mode 100644 index 0000000..8a4ba0d --- /dev/null +++ b/save_data/IMG_0989_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8d4acc574c3e9c0f1319c8cf2c29852124e26598469594c35799eb1cb404d0 +size 1831960 diff --git a/save_data/IMG_0990_detect_result.jpg b/save_data/IMG_0990_detect_result.jpg new file mode 100644 index 0000000..9a50f8c --- /dev/null +++ b/save_data/IMG_0990_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bc06aaf3029aa253940d9117f63bb80139117f1c12033d3ff832f00ec560a0 +size 1916937 diff --git a/save_data/IMG_0991_detect_result.jpg b/save_data/IMG_0991_detect_result.jpg new file mode 100644 index 0000000..b8e135c --- /dev/null +++ b/save_data/IMG_0991_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495107db66784f5aebae29eddb7aef822b6c8d2db6620774da7dc03b71aa85a0 +size 2088385 diff --git a/save_data/IMG_0992_detect_result.jpg b/save_data/IMG_0992_detect_result.jpg new file mode 100644 index 0000000..125e88d --- /dev/null +++ b/save_data/IMG_0992_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3bf4dba85b4fa73195e2ec09ac9fb6057ceaf52d378ebe60b7aea8d671fec9 +size 2293899 diff --git a/save_data/IMG_0993_detect_result.jpg b/save_data/IMG_0993_detect_result.jpg new file mode 100644 index 0000000..ce2efaa --- /dev/null +++ b/save_data/IMG_0993_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2d6f70286cda62cc68b44e6aa0129d4d7fad00b7c7cbc77982abeb955a05ae +size 2293481 diff --git a/save_data/IMG_0994_detect_result.jpg b/save_data/IMG_0994_detect_result.jpg new file mode 100644 index 0000000..44cc579 --- /dev/null +++ b/save_data/IMG_0994_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d836876d4ce5ec0fea955bd34ecbb09de40220d992217bfd3fd752de71bdc5 +size 2417251 diff --git a/save_data/IMG_0995_detect_result.jpg b/save_data/IMG_0995_detect_result.jpg new file mode 100644 index 0000000..a77ef10 --- /dev/null +++ b/save_data/IMG_0995_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab1608ae31198f0fbfedc362c5c805c601e679bccbf4bcb83be0b9aa713f7f2 +size 2006146 diff --git a/save_data/IMG_0996_detect_result.jpg b/save_data/IMG_0996_detect_result.jpg new file mode 100644 index 0000000..5b6e998 --- /dev/null +++ b/save_data/IMG_0996_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c32bb4f1a7bc57204da20862b8638673afdd60e7c64680e5cd2e59ccdf6cead +size 1572431 diff --git a/save_data/IMG_0997_detect_result.jpg b/save_data/IMG_0997_detect_result.jpg new file mode 100644 index 0000000..c6f5147 --- /dev/null +++ b/save_data/IMG_0997_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc9058def8742477b0115f99601933237aeadc2de0c73107b51ba4cb6238c069 +size 2626160 diff --git a/save_data/IMG_0998_detect_result.jpg b/save_data/IMG_0998_detect_result.jpg new file mode 100644 index 0000000..14d9de0 --- /dev/null +++ b/save_data/IMG_0998_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cb7062c4ebba14f91763d6137cc266632d9d11a7f07dae78c7c7ff57814f6c +size 2817322 diff --git a/save_data/IMG_0999_detect_result.jpg b/save_data/IMG_0999_detect_result.jpg new file mode 100644 index 0000000..96b49f8 --- /dev/null +++ b/save_data/IMG_0999_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb811b4fc7d2b5becdb7920c530f74ab2a0df83657d3d103ec4963c7dc600f40 +size 2313618 diff --git a/save_data/IMG_1001_detect_result.jpg b/save_data/IMG_1001_detect_result.jpg new file mode 100644 index 0000000..295ba2b --- /dev/null +++ b/save_data/IMG_1001_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80622adca73df01b44d6ebed66ac0c30785ba876ca1177c139393ac786d8b163 +size 2130867 diff --git a/save_data/IMG_1002_detect_result.jpg b/save_data/IMG_1002_detect_result.jpg new file mode 100644 index 0000000..15bf4b9 --- /dev/null +++ b/save_data/IMG_1002_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50172e842f15dd298caf0f9f32d9f59a2093a92ac3b786c19f7a32c1bf61bccd +size 2258951 diff --git a/save_data/IMG_1003_detect_result.jpg b/save_data/IMG_1003_detect_result.jpg new file mode 100644 index 0000000..b16d170 --- /dev/null +++ b/save_data/IMG_1003_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb2bf6d790bd524e1021a5aff2fdc23929aa81e054072ed9cbb3cc1edd12840 +size 2412903 diff --git a/save_data/IMG_1004_detect_result.jpg b/save_data/IMG_1004_detect_result.jpg new file mode 100644 index 0000000..a5925fc --- /dev/null +++ b/save_data/IMG_1004_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:378702f9395075a60a6835e88c821a477f545ea93a468120600d0d45d396ff91 +size 2792617 diff --git a/save_data/IMG_1005_detect_result.jpg b/save_data/IMG_1005_detect_result.jpg new file mode 100644 index 0000000..ac84598 --- /dev/null +++ b/save_data/IMG_1005_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f4f2cc9cdd2433107cb163e8e2c50c523fd5e814ea28f86394525c05449b672 +size 3213927 diff --git a/save_data/IMG_1008_detect_result.jpg b/save_data/IMG_1008_detect_result.jpg new file mode 100644 index 0000000..755103b --- /dev/null +++ b/save_data/IMG_1008_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25709e81826fc12e82e278210cd83bb58e96710067786a6ff244969ddc29b2ea +size 2503487 diff --git a/save_data/IMG_1009_detect_result.jpg b/save_data/IMG_1009_detect_result.jpg new file mode 100644 index 0000000..06bdb87 --- /dev/null +++ b/save_data/IMG_1009_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e42368cfc84e543849514755de537f8e466ef5f4d305c0b4d77171597e3084 +size 2243684 diff --git a/save_data/IMG_1010_detect_result.jpg b/save_data/IMG_1010_detect_result.jpg new file mode 100644 index 0000000..a45b8ba --- /dev/null +++ b/save_data/IMG_1010_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e73c1dc6e2363186e1b86609cc8bf374c78098b37ba8ae448357788b7c2010a +size 2458867 diff --git a/save_data/IMG_1011_detect_result.jpg b/save_data/IMG_1011_detect_result.jpg new file mode 100644 index 0000000..8084b1d --- /dev/null +++ b/save_data/IMG_1011_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8f105c0df435ebd8e0e24d95876560a8e6e3b3002fd8f8e975fda11e87cb29 +size 2232127 diff --git a/save_data/IMG_1012_detect_result.jpg b/save_data/IMG_1012_detect_result.jpg new file mode 100644 index 0000000..a16f741 --- /dev/null +++ b/save_data/IMG_1012_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98aa25d0892a53b7b5fb992e00a230f96363f8837294822d7abc11eb4f52c6e +size 3278528 diff --git a/save_data/IMG_1013_detect_result.jpg b/save_data/IMG_1013_detect_result.jpg new file mode 100644 index 0000000..3678911 --- /dev/null +++ b/save_data/IMG_1013_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee298faebe297811ceeee9944c154a08581fb541c595dee5eed48fe12f50d53 +size 2600191 diff --git a/save_data/IMG_1014_detect_result.jpg b/save_data/IMG_1014_detect_result.jpg new file mode 100644 index 0000000..8d8f05a --- /dev/null +++ b/save_data/IMG_1014_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:760b2fb7fce304b1918ee500b74119dc11a81f2264ef0ae31c118cff7fcf7b3f +size 2505198 diff --git a/save_data/IMG_1015_detect_result.jpg b/save_data/IMG_1015_detect_result.jpg new file mode 100644 index 0000000..f3e2ec3 --- /dev/null +++ b/save_data/IMG_1015_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda73376a22e2d465645537577ee5857e4cd38786ccd5fbd3f0d57e2433dbd35 +size 2719192 diff --git a/save_data/IMG_1016_detect_result.jpg b/save_data/IMG_1016_detect_result.jpg new file mode 100644 index 0000000..770e80a --- /dev/null +++ b/save_data/IMG_1016_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7bbd6ab67d3e6e911bfb5a99da93679ad5c85dfe2eb9b9e131bd655e1b720f +size 2291902 diff --git a/save_data/IMG_1017_detect_result.jpg b/save_data/IMG_1017_detect_result.jpg new file mode 100644 index 0000000..3ba2a5e --- /dev/null +++ b/save_data/IMG_1017_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6718e15892aa9502b90e8546785f5005f4f27f8de0d6944efe0a0d4e58b7ff16 +size 2628834 diff --git a/save_data/IMG_1018_detect_result.jpg b/save_data/IMG_1018_detect_result.jpg new file mode 100644 index 0000000..4552601 --- /dev/null +++ b/save_data/IMG_1018_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da305d8dafe950f87a462e22d9368ad7a23ed6061084757af02b236f1844bfd +size 2948863 diff --git a/save_data/IMG_1019_detect_result.jpg b/save_data/IMG_1019_detect_result.jpg new file mode 100644 index 0000000..0f23aaa --- /dev/null +++ b/save_data/IMG_1019_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5dca477f25c11d586dd2ef47e7b2f87745b8a3cc08979988c238bed46f1b5b +size 2440528 diff --git a/save_data/IMG_1020_detect_result.jpg b/save_data/IMG_1020_detect_result.jpg new file mode 100644 index 0000000..343a89c --- /dev/null +++ b/save_data/IMG_1020_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43b563df8c8ba2658b8a8468015416efa8149d2a42a0c7b996cb116832406c7 +size 1982034 diff --git a/save_data/IMG_1021_detect_result.jpg b/save_data/IMG_1021_detect_result.jpg new file mode 100644 index 0000000..7f72410 --- /dev/null +++ b/save_data/IMG_1021_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aca3a6b5c072c0e0c87ae746731829a8f3f55278a006d0a2f549626e71dd2d0 +size 1951646 diff --git a/save_data/IMG_1022_detect_result.jpg b/save_data/IMG_1022_detect_result.jpg new file mode 100644 index 0000000..1502529 --- /dev/null +++ b/save_data/IMG_1022_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7702842fda894a8691505372423eb36f9ab3835f9d75d2a9dba7b0eadd7fd6af +size 2172761 diff --git a/save_data/IMG_1023_detect_result.jpg b/save_data/IMG_1023_detect_result.jpg new file mode 100644 index 0000000..bb36ab4 --- /dev/null +++ b/save_data/IMG_1023_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac8a8fdee862c3a90038d9469c699f25341056387e56c1b7e8c34f1e6d406a5 +size 1930812 diff --git a/save_data/IMG_1024_detect_result.jpg b/save_data/IMG_1024_detect_result.jpg new file mode 100644 index 0000000..74c0977 --- /dev/null +++ b/save_data/IMG_1024_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6662798d6dc79a1812ecb9ba1215cc0da1b63ec280435504725e8b9450a5c035 +size 2038822 diff --git a/save_data/IMG_1025_detect_result.jpg b/save_data/IMG_1025_detect_result.jpg new file mode 100644 index 0000000..265aa20 --- /dev/null +++ b/save_data/IMG_1025_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa79954c70e29e86a60b66717235a8db260fa7685c844f6a8631eb95c933ec72 +size 2788544 diff --git a/save_data/IMG_1026_detect_result.jpg b/save_data/IMG_1026_detect_result.jpg new file mode 100644 index 0000000..b77d7fc --- /dev/null +++ b/save_data/IMG_1026_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b817c9d759fd35d6a7d81122d216855134295e5b4792bb1f4b3f32bb807fa2 +size 2547292 diff --git a/save_data/IMG_1027_detect_result.jpg b/save_data/IMG_1027_detect_result.jpg new file mode 100644 index 0000000..615091f --- /dev/null +++ b/save_data/IMG_1027_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9e3fe094485a6fc22c9a6ea283116f31c5e9213d1eb1100a1dbfb3dd16fca9 +size 2749393 diff --git a/save_data/IMG_1028_detect_result.jpg b/save_data/IMG_1028_detect_result.jpg new file mode 100644 index 0000000..ba1a7d5 --- /dev/null +++ b/save_data/IMG_1028_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97d21f7e8fb0ce17b869a803b22d1ecb05f041dd51977e0cedaebc4b584178f +size 2769985 diff --git a/save_data/IMG_1029_detect_result.jpg b/save_data/IMG_1029_detect_result.jpg new file mode 100644 index 0000000..c4df8e9 --- /dev/null +++ b/save_data/IMG_1029_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfda80fcdfa75ea66bf926e516b4c3fc5fabed2adbeb333409ba0f7cf81f9b34 +size 2514274 diff --git a/save_data/IMG_1030_detect_result.jpg b/save_data/IMG_1030_detect_result.jpg new file mode 100644 index 0000000..253c267 --- /dev/null +++ b/save_data/IMG_1030_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5372594830987a0854a80b8192fa7b5f28208ef16c25e77ea477ef2b10aef2 +size 1955903 diff --git a/save_data/IMG_1031_detect_result.jpg b/save_data/IMG_1031_detect_result.jpg new file mode 100644 index 0000000..4f0e038 --- /dev/null +++ b/save_data/IMG_1031_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cb7d8a588aaa309a2f1e174444534b07fa252c7891ba3c832cab07b9e16af2 +size 2862092 diff --git a/save_data/IMG_1032_detect_result.jpg b/save_data/IMG_1032_detect_result.jpg new file mode 100644 index 0000000..6163220 --- /dev/null +++ b/save_data/IMG_1032_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1b0b7a41f147a26b7f9c78861d8295a3ddc8973ad7e4308afabf50c21b0eed +size 2341152 diff --git a/save_data/IMG_1033_detect_result.jpg b/save_data/IMG_1033_detect_result.jpg new file mode 100644 index 0000000..4e31e08 --- /dev/null +++ b/save_data/IMG_1033_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e9e6f722c3a450ebb1d9d693381ed48bdf91c9c7aa88ecdc46b3babd66a311 +size 1806151 diff --git a/save_data/IMG_1034_detect_result.jpg b/save_data/IMG_1034_detect_result.jpg new file mode 100644 index 0000000..e459b76 --- /dev/null +++ b/save_data/IMG_1034_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a78c0af3661bf1740156a480e5dde1ad881d6a0f854515b772abcc4f27f1e8a +size 3000576 diff --git a/save_data/IMG_1035_detect_result.jpg b/save_data/IMG_1035_detect_result.jpg new file mode 100644 index 0000000..a310307 --- /dev/null +++ b/save_data/IMG_1035_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43a16564ee975b68421e7369f2e9d7bd2db70f4a4e0f40e5391564df3885e4b +size 2752166 diff --git a/save_data/IMG_1036_detect_result.jpg b/save_data/IMG_1036_detect_result.jpg new file mode 100644 index 0000000..aef5f6e --- /dev/null +++ b/save_data/IMG_1036_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841f9453393222af516e66a27ec091f94748b1ab663159c63085d0100ec09010 +size 2644844 diff --git a/save_data/IMG_1037_detect_result.jpg b/save_data/IMG_1037_detect_result.jpg new file mode 100644 index 0000000..931a74d --- /dev/null +++ b/save_data/IMG_1037_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a7f113bf2cb250036a4e41b01439d90d123ba29da4aee64764bac8fab0c2a3 +size 2499543 diff --git a/save_data/IMG_1038_detect_result.jpg b/save_data/IMG_1038_detect_result.jpg new file mode 100644 index 0000000..e350d5d --- /dev/null +++ b/save_data/IMG_1038_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5cde4bc02e4ddd301e86940e679a42126dcbd2c00ce500dbbd090e6c569f3b5 +size 2072901 diff --git a/save_data/IMG_1039_detect_result.jpg b/save_data/IMG_1039_detect_result.jpg new file mode 100644 index 0000000..1b5e433 --- /dev/null +++ b/save_data/IMG_1039_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf8f860dcac2a573183371ff50b04c1c2d99bdad85bdbeb7c876f829e24be0cc +size 2180620 diff --git a/save_data/IMG_1040_detect_result.jpg b/save_data/IMG_1040_detect_result.jpg new file mode 100644 index 0000000..45267c0 --- /dev/null +++ b/save_data/IMG_1040_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec4438775e5f3561eb10d888ecebcdeb8a9bd3f340f6970712c0e0e50355ca0 +size 2622800 diff --git a/save_data/IMG_1041_detect_result.jpg b/save_data/IMG_1041_detect_result.jpg new file mode 100644 index 0000000..9acb02e --- /dev/null +++ b/save_data/IMG_1041_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ee8bae1ef7a13947d4fa611336ae259eaf33669e6643c8bc05dd46723f8ad6 +size 2259648 diff --git a/save_data/IMG_1042_detect_result.jpg b/save_data/IMG_1042_detect_result.jpg new file mode 100644 index 0000000..4c98c45 --- /dev/null +++ b/save_data/IMG_1042_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9f4cd359da7e12467ee729c5ff8a4d41457dafa1ad26b431f9221daa70f093 +size 2684223 diff --git a/save_data/IMG_1043_detect_result.jpg b/save_data/IMG_1043_detect_result.jpg new file mode 100644 index 0000000..35f8fe3 --- /dev/null +++ b/save_data/IMG_1043_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6cc277a3c4d58c3c6f0865edc7fdb1821c0c113621cd65eff14990d1aaa2ef7 +size 2453784 diff --git a/save_data/IMG_1044_detect_result.jpg b/save_data/IMG_1044_detect_result.jpg new file mode 100644 index 0000000..0954dad --- /dev/null +++ b/save_data/IMG_1044_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5cec1f274625dbcdac3b00ea0aa93eb29d973d5452ac97a9a4a4dd180ad2bcd +size 2179646 diff --git a/save_data/IMG_1045_detect_result.jpg b/save_data/IMG_1045_detect_result.jpg new file mode 100644 index 0000000..e30065f --- /dev/null +++ b/save_data/IMG_1045_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5867fcd1ac4c868939edc064fb5f7032c09bbc8470e20ffccae7d1da80eaa47 +size 2267593 diff --git a/save_data/IMG_1046_detect_result.jpg b/save_data/IMG_1046_detect_result.jpg new file mode 100644 index 0000000..4305fa7 --- /dev/null +++ b/save_data/IMG_1046_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193718118a7033163f7a3a63833d05497c7ce713a93f2eb93c0d5255a7c44eee +size 3192948 diff --git a/save_data/IMG_1047_detect_result.jpg b/save_data/IMG_1047_detect_result.jpg new file mode 100644 index 0000000..b16a422 --- /dev/null +++ b/save_data/IMG_1047_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798e34904731274fe1f41467b7ea4765e5119c69b2a95ec44721b2b7e798b336 +size 2687967 diff --git a/save_data/IMG_1048_detect_result.jpg b/save_data/IMG_1048_detect_result.jpg new file mode 100644 index 0000000..97416b7 --- /dev/null +++ b/save_data/IMG_1048_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de3d093f2b260683ada6a4516fcf2fd1ccdaa7fe9992bd2b96435c6ed1f3e08 +size 2410758 diff --git a/save_data/IMG_1049_detect_result.jpg b/save_data/IMG_1049_detect_result.jpg new file mode 100644 index 0000000..4bc6435 --- /dev/null +++ b/save_data/IMG_1049_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a04f9dd6c636cfe0040a465b8a00a9f6445b4e89834d64a908a47daf185b3f8 +size 3672827 diff --git a/save_data/IMG_1050_detect_result.jpg b/save_data/IMG_1050_detect_result.jpg new file mode 100644 index 0000000..f53a016 --- /dev/null +++ b/save_data/IMG_1050_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330d672a2ba93c5ea4cc0d356bd7093d2c61ae13883c1a9e6a5eaa960f5914fc +size 2491441 diff --git a/save_data/IMG_1051_detect_result.jpg b/save_data/IMG_1051_detect_result.jpg new file mode 100644 index 0000000..e9bc09b --- /dev/null +++ b/save_data/IMG_1051_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60338d49fad9694c66fc7e90d5b8ac6d5bb3670587d0dcc274475242e263681d +size 2729402 diff --git a/save_data/IMG_1052_detect_result.jpg b/save_data/IMG_1052_detect_result.jpg new file mode 100644 index 0000000..d606947 --- /dev/null +++ b/save_data/IMG_1052_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53d2b113d36717c8357f410e7622fa08633e5c9d971bf1547ef30b3b9b20870 +size 2793902 diff --git a/save_data/IMG_1053_detect_result.jpg b/save_data/IMG_1053_detect_result.jpg new file mode 100644 index 0000000..a769e5c --- /dev/null +++ b/save_data/IMG_1053_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4861bcfed5a863cd5f5ecf7b39f30c97ffab91681f9354abc7946535b10e92de +size 2390124 diff --git a/save_data/IMG_1054_detect_result.jpg b/save_data/IMG_1054_detect_result.jpg new file mode 100644 index 0000000..7d3c7b0 --- /dev/null +++ b/save_data/IMG_1054_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b01b50640e5ec12cd66e4f5fe72ca7584fafcdfff28e77fdd5b920bd427bed +size 2222941 diff --git a/save_data/IMG_1055_detect_result.jpg b/save_data/IMG_1055_detect_result.jpg new file mode 100644 index 0000000..ef6634b --- /dev/null +++ b/save_data/IMG_1055_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b690041cd66631167c2bc0f992e9eb84707d08f0294611f2f5830b72e63d4af9 +size 2970807 diff --git a/save_data/IMG_1056_detect_result.jpg b/save_data/IMG_1056_detect_result.jpg new file mode 100644 index 0000000..4b2f40f --- /dev/null +++ b/save_data/IMG_1056_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde6e243e05fe72712e01d156f38a35868d3920af88fca2f5d4dc6baa943ab09 +size 2892585 diff --git a/save_data/IMG_1057_detect_result.jpg b/save_data/IMG_1057_detect_result.jpg new file mode 100644 index 0000000..af5d915 --- /dev/null +++ b/save_data/IMG_1057_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea1fe6f75a82f9b07ac5a2dba2ba9d6e4a7ce8ae6c7654bfcb7dc43f2784cd2 +size 1757298 diff --git a/save_data/IMG_1058_detect_result.jpg b/save_data/IMG_1058_detect_result.jpg new file mode 100644 index 0000000..ded8ca2 --- /dev/null +++ b/save_data/IMG_1058_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06db4e2cee50799083e74214c2fb826153ea2cbf0e9cbb9b248061242802227b +size 2051594 diff --git a/save_data/IMG_1059_detect_result.jpg b/save_data/IMG_1059_detect_result.jpg new file mode 100644 index 0000000..dfa130b --- /dev/null +++ b/save_data/IMG_1059_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:357bb7d0d4f2620f66f40a313bf2bd71ba1a611aa28bb5771f94d5b35ae853a5 +size 1898643 diff --git a/save_data/IMG_1060_detect_result.jpg b/save_data/IMG_1060_detect_result.jpg new file mode 100644 index 0000000..5bb9596 --- /dev/null +++ b/save_data/IMG_1060_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0cf873052ec21908c018d4205a03b898a206fcb8e62e9059fb51e9f58148eb +size 2075409 diff --git a/save_data/IMG_1061_detect_result.jpg b/save_data/IMG_1061_detect_result.jpg new file mode 100644 index 0000000..87f994c --- /dev/null +++ b/save_data/IMG_1061_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfbfd726812c1486176b6f1d5ef2a75c6cd4c9dc3cfe7ef35ddbd1ae733e85a +size 2221309 diff --git a/save_data/IMG_1062_detect_result.jpg b/save_data/IMG_1062_detect_result.jpg new file mode 100644 index 0000000..4f6187b --- /dev/null +++ b/save_data/IMG_1062_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8e677be9d3663f6c43a99c7cf1d74c95ac68710ed5b28d106722e091c362161 +size 2682653 diff --git a/save_data/IMG_1063_detect_result.jpg b/save_data/IMG_1063_detect_result.jpg new file mode 100644 index 0000000..5e97160 --- /dev/null +++ b/save_data/IMG_1063_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b73b4a1cf146430fb36f7ec2ee8cb19be7c95442d45ab953be66ef6e69ec4a3e +size 2568216 diff --git a/save_data/IMG_1064_detect_result.jpg b/save_data/IMG_1064_detect_result.jpg new file mode 100644 index 0000000..0f8d563 --- /dev/null +++ b/save_data/IMG_1064_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e826770e22811d928d221dcab5f32173410eddb4d2f813a6de994846f0e9875 +size 3052936 diff --git a/save_data/IMG_1065_detect_result.jpg b/save_data/IMG_1065_detect_result.jpg new file mode 100644 index 0000000..91d6187 --- /dev/null +++ b/save_data/IMG_1065_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2091a321354b2c6d71ffd53b25c88912a7e5b4e32e36281b1e6574788440b649 +size 3411325 diff --git a/save_data/IMG_1066_detect_result.jpg b/save_data/IMG_1066_detect_result.jpg new file mode 100644 index 0000000..d9e73af --- /dev/null +++ b/save_data/IMG_1066_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca0124b841064bc2c653d4d84fef713677657feb3babbb1d5b3d8c9e1e6b8ef +size 2458874 diff --git a/save_data/IMG_1067_detect_result.jpg b/save_data/IMG_1067_detect_result.jpg new file mode 100644 index 0000000..a2aac1c --- /dev/null +++ b/save_data/IMG_1067_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef4721ad2bf74cf32f2707b458020b2a46c6b4812da8ed978bfeb1e784220cd +size 2160322 diff --git a/save_data/IMG_1068_detect_result.jpg b/save_data/IMG_1068_detect_result.jpg new file mode 100644 index 0000000..55e65ab --- /dev/null +++ b/save_data/IMG_1068_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac2f6c03af9080cfd61fa5a9a4c6e9a499e8130fe02e07757f242d4d2b14ee7 +size 2373964 diff --git a/save_data/IMG_1069_detect_result.jpg b/save_data/IMG_1069_detect_result.jpg new file mode 100644 index 0000000..d196248 --- /dev/null +++ b/save_data/IMG_1069_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c1140058f1fc16a1e7146289aaa3ddd865da99fda996b08471f1690dcd6014 +size 1754930 diff --git a/save_data/IMG_1070_detect_result.jpg b/save_data/IMG_1070_detect_result.jpg new file mode 100644 index 0000000..a33d6d5 --- /dev/null +++ b/save_data/IMG_1070_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352b805461ddcaeb496ab9d6107297d42bf064be5c887854f36b43b643b7da5e +size 2092342 diff --git a/save_data/IMG_1071_detect_result.jpg b/save_data/IMG_1071_detect_result.jpg new file mode 100644 index 0000000..a3ffec3 --- /dev/null +++ b/save_data/IMG_1071_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ecf5adad24ec6179a938a4b0e0ef9889da5433e39bddd064d7bd98d5300dc0 +size 2159234 diff --git a/save_data/IMG_1072_detect_result.jpg b/save_data/IMG_1072_detect_result.jpg new file mode 100644 index 0000000..53526e2 --- /dev/null +++ b/save_data/IMG_1072_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6925b5c91dd258b7257c800baec5d938059c7343925ec6d4e18bc05f54c76a +size 2504317 diff --git a/save_data/IMG_1073_detect_result.jpg b/save_data/IMG_1073_detect_result.jpg new file mode 100644 index 0000000..6bfb084 --- /dev/null +++ b/save_data/IMG_1073_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c616a504ccdbd1384e99277ddf1cbac649f67656b314920e969155ed95915323 +size 2400334 diff --git a/save_data/IMG_1074_detect_result.jpg b/save_data/IMG_1074_detect_result.jpg new file mode 100644 index 0000000..cb83857 --- /dev/null +++ b/save_data/IMG_1074_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5767e095874c008e5356a375fe697ad3e113d0333eb05e85b3b7680e712f9401 +size 1976860 diff --git a/save_data/IMG_1075_detect_result.jpg b/save_data/IMG_1075_detect_result.jpg new file mode 100644 index 0000000..5fcd452 --- /dev/null +++ b/save_data/IMG_1075_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29bb1cf1359145a79018a05b4b9704ed3ffc681734357dc1593f3d57889779b +size 2708999 diff --git a/save_data/IMG_1076_detect_result.jpg b/save_data/IMG_1076_detect_result.jpg new file mode 100644 index 0000000..6d56fc6 --- /dev/null +++ b/save_data/IMG_1076_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9f087c974b3f3cfd83d907aa4ff34d963fc814fa43c19052dd7d7e6e7159ba +size 2594043 diff --git a/save_data/IMG_1077_detect_result.jpg b/save_data/IMG_1077_detect_result.jpg new file mode 100644 index 0000000..48113bb --- /dev/null +++ b/save_data/IMG_1077_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55a220b4fd3f15a4c133fe270769ed5188150735be5dc79f41c24a90d481c794 +size 2772093 diff --git a/save_data/IMG_1078_detect_result.jpg b/save_data/IMG_1078_detect_result.jpg new file mode 100644 index 0000000..7c9194c --- /dev/null +++ b/save_data/IMG_1078_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0f0e7b8f48fb3103888491fe148829cde6aa0152fc9ac9e57bb9ecfcc250c1 +size 2729238 diff --git a/save_data/IMG_1079_detect_result.jpg b/save_data/IMG_1079_detect_result.jpg new file mode 100644 index 0000000..072a573 --- /dev/null +++ b/save_data/IMG_1079_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ce7b18c2fa33b9ccae9a5d8e94e2130a42d52604e004d0b7b8fabb0c574789 +size 2997382 diff --git a/save_data/IMG_1080_detect_result.jpg b/save_data/IMG_1080_detect_result.jpg new file mode 100644 index 0000000..e1fec8b --- /dev/null +++ b/save_data/IMG_1080_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c964bf0ac8b8e79f690baad077b5a427de1cb28eb5f97607c432897873b97a +size 2058829 diff --git a/save_data/IMG_1081_detect_result.jpg b/save_data/IMG_1081_detect_result.jpg new file mode 100644 index 0000000..ab5bbf6 --- /dev/null +++ b/save_data/IMG_1081_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb14ef6307365e61f588bd755458c13b6ac6e9bd178cac23d6e897fd246c251 +size 1928510 diff --git a/save_data/IMG_1082_detect_result.jpg b/save_data/IMG_1082_detect_result.jpg new file mode 100644 index 0000000..343cfc6 --- /dev/null +++ b/save_data/IMG_1082_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424069b70a687b3e11af0897c4786d3c8f3c652b9694f035af13b039104cec22 +size 4493201 diff --git a/save_data/IMG_1083_detect_result.jpg b/save_data/IMG_1083_detect_result.jpg new file mode 100644 index 0000000..3792c56 --- /dev/null +++ b/save_data/IMG_1083_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d589ee42ece6a53d2cfdb32ccf9af056d39c1746a8ceb4c8d128a283af93989 +size 2933283 diff --git a/save_data/IMG_1084_detect_result.jpg b/save_data/IMG_1084_detect_result.jpg new file mode 100644 index 0000000..d257dab --- /dev/null +++ b/save_data/IMG_1084_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90df1f0b61cc8ad15ae30cf51f84dbd18dd0448e7b970294af443adafb770c6d +size 2826351 diff --git a/save_data/IMG_1085_detect_result.jpg b/save_data/IMG_1085_detect_result.jpg new file mode 100644 index 0000000..ee5dd83 --- /dev/null +++ b/save_data/IMG_1085_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7915e19e2acbf34de2a83761e3b839d2f33e8e27b354d7a35ec175be6e448c +size 2708949 diff --git a/save_data/IMG_1086_detect_result.jpg b/save_data/IMG_1086_detect_result.jpg new file mode 100644 index 0000000..a39c2f5 --- /dev/null +++ b/save_data/IMG_1086_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6dc6c456dce46d76ebb9b3272f4577bf5f092720c5e924b3f66e63d388a38fc +size 2620277 diff --git a/save_data/IMG_1087_detect_result.jpg b/save_data/IMG_1087_detect_result.jpg new file mode 100644 index 0000000..ea1b8d5 --- /dev/null +++ b/save_data/IMG_1087_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303a1d27c672c5cc981c73101677449ed48a7c2cbfdb3df366ca24ebf0647d96 +size 1536642 diff --git a/save_data/IMG_1088_detect_result.jpg b/save_data/IMG_1088_detect_result.jpg new file mode 100644 index 0000000..d33fd73 --- /dev/null +++ b/save_data/IMG_1088_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce60094d90453edbc237452dc7c87f122f4304973254d5c9a04d8c334d19834 +size 1680308 diff --git a/save_data/IMG_1089_detect_result.jpg b/save_data/IMG_1089_detect_result.jpg new file mode 100644 index 0000000..6cd41a6 --- /dev/null +++ b/save_data/IMG_1089_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3682be1e2e9e5828be728b582a858947d2ae38990c141499dabebbb859d17a +size 2253337 diff --git a/save_data/IMG_1090_detect_result.jpg b/save_data/IMG_1090_detect_result.jpg new file mode 100644 index 0000000..6a7c757 --- /dev/null +++ b/save_data/IMG_1090_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2157885bb1fb3db1257a37e720139c8526e62fa593132d6718c8b2dd71e0b176 +size 2689513 diff --git a/save_data/IMG_1091_detect_result.jpg b/save_data/IMG_1091_detect_result.jpg new file mode 100644 index 0000000..0240805 --- /dev/null +++ b/save_data/IMG_1091_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8628f0fe2f163d3e347e361e83b4dfd64433fd08427434d9ee3d942a81d96353 +size 2135188 diff --git a/save_data/IMG_1092_detect_result.jpg b/save_data/IMG_1092_detect_result.jpg new file mode 100644 index 0000000..bb0a805 --- /dev/null +++ b/save_data/IMG_1092_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad897786a6f1444db057aaff4a61521388762a309e05057fa897098635e73470 +size 3153512 diff --git a/save_data/IMG_1093_detect_result.jpg b/save_data/IMG_1093_detect_result.jpg new file mode 100644 index 0000000..923350f --- /dev/null +++ b/save_data/IMG_1093_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1650023d3033f475cd2579675322c293d9fb00c8faa2b9a327b8d371d785579 +size 4195143 diff --git a/save_data/IMG_1094_detect_result.jpg b/save_data/IMG_1094_detect_result.jpg new file mode 100644 index 0000000..46f51de --- /dev/null +++ b/save_data/IMG_1094_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a127b7d76717df0df8fead674a80f39151ed0452b1ce3477a5610dfe71f96e +size 1961797 diff --git a/save_data/IMG_1095_detect_result.jpg b/save_data/IMG_1095_detect_result.jpg new file mode 100644 index 0000000..5537b80 --- /dev/null +++ b/save_data/IMG_1095_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbfbaa755190dff07edbe3984c9d0c3a8d29cd7da9be92565696a095f9179d2 +size 2612984 diff --git a/save_data/IMG_1096_detect_result.jpg b/save_data/IMG_1096_detect_result.jpg new file mode 100644 index 0000000..3c103c9 --- /dev/null +++ b/save_data/IMG_1096_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d05af60d109b429f20309cd173d8177017a75ce104ed8c8ade05536736af396 +size 2861216 diff --git a/save_data/IMG_1097_detect_result.jpg b/save_data/IMG_1097_detect_result.jpg new file mode 100644 index 0000000..95364fd --- /dev/null +++ b/save_data/IMG_1097_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfa5d802b40f488b3dfc2f325dbde1db2905a4429a51209389a09aa8c73fd06 +size 2278872 diff --git a/save_data/IMG_1098_detect_result.jpg b/save_data/IMG_1098_detect_result.jpg new file mode 100644 index 0000000..af5cec5 --- /dev/null +++ b/save_data/IMG_1098_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b85955f3c5ff4816b85e90a5536cf80ba35a2ffc7626b2c23eed7c1a9ad8cb5 +size 3277846 diff --git a/save_data/IMG_1099_detect_result.jpg b/save_data/IMG_1099_detect_result.jpg new file mode 100644 index 0000000..3462b38 --- /dev/null +++ b/save_data/IMG_1099_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e296e09dbd1c97cfa706d2f6024f865eee5a315aee3731463eff8601dcfb3f03 +size 2036370 diff --git a/save_data/IMG_1100_detect_result.jpg b/save_data/IMG_1100_detect_result.jpg new file mode 100644 index 0000000..7a3203c --- /dev/null +++ b/save_data/IMG_1100_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bb699bb6368b362ba4692e36a79448326a40d67d9bac934db2f6028b47c834 +size 2471715 diff --git a/save_data/IMG_1101_detect_result.jpg b/save_data/IMG_1101_detect_result.jpg new file mode 100644 index 0000000..dbe3e74 --- /dev/null +++ b/save_data/IMG_1101_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3872bc517e441dae722a8b60c040566da56cb59a2d952f7f7942e0c6ed70bbd1 +size 2488808 diff --git a/save_data/IMG_1102_detect_result.jpg b/save_data/IMG_1102_detect_result.jpg new file mode 100644 index 0000000..d37184e --- /dev/null +++ b/save_data/IMG_1102_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4cd2db20a65751b07420798de7a358cb25f931e0fabb0390bd37ad837d6d0b +size 2515411 diff --git a/save_data/IMG_1103_detect_result.jpg b/save_data/IMG_1103_detect_result.jpg new file mode 100644 index 0000000..a81dcfb --- /dev/null +++ b/save_data/IMG_1103_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e55fcee91cc70cba0e2ea04511690b7581be82e1597073c514002f32208672 +size 2034900 diff --git a/save_data/IMG_1104_detect_result.jpg b/save_data/IMG_1104_detect_result.jpg new file mode 100644 index 0000000..920e85a --- /dev/null +++ b/save_data/IMG_1104_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b57642bf966a8686b45c67549e6306cc9245f805c912080aa8eeaf2115602f6 +size 2291017 diff --git a/save_data/IMG_1105_detect_result.jpg b/save_data/IMG_1105_detect_result.jpg new file mode 100644 index 0000000..79f6962 --- /dev/null +++ b/save_data/IMG_1105_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c75353172fc4f20e29820a178633d9dcdff3425ca30fec0814f982e7ab4960 +size 2656302 diff --git a/save_data/IMG_1106_detect_result.jpg b/save_data/IMG_1106_detect_result.jpg new file mode 100644 index 0000000..197295e --- /dev/null +++ b/save_data/IMG_1106_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b7108dba5cb5278ece74259420e6f2f58fd06ebd854c424bceb5da5a760889 +size 2196408 diff --git a/save_data/IMG_1109_detect_result.jpg b/save_data/IMG_1109_detect_result.jpg new file mode 100644 index 0000000..23e88d3 --- /dev/null +++ b/save_data/IMG_1109_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb9d6792d27fa6ba0f692ca6213b10dbe136ae6106a47aaf4716df94a532c32 +size 2502919 diff --git a/save_data/IMG_1110_detect_result.jpg b/save_data/IMG_1110_detect_result.jpg new file mode 100644 index 0000000..aa363ad --- /dev/null +++ b/save_data/IMG_1110_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d3b72858d346eefa44d95e5ea79dda84bd120872c54307811e6059a031603c +size 3105271 diff --git a/save_data/IMG_1111_detect_result.jpg b/save_data/IMG_1111_detect_result.jpg new file mode 100644 index 0000000..7b74978 --- /dev/null +++ b/save_data/IMG_1111_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6bddb2236746473b8582255c832dfcc97743d3d1dade48ca1807a29568772e4 +size 2638401 diff --git a/save_data/IMG_1112_detect_result.jpg b/save_data/IMG_1112_detect_result.jpg new file mode 100644 index 0000000..5d7acff --- /dev/null +++ b/save_data/IMG_1112_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5959175318bae3551b2325688b2d8a85159cc6697905e674c7dec8ed902c48d +size 2788532 diff --git a/save_data/IMG_1113_detect_result.jpg b/save_data/IMG_1113_detect_result.jpg new file mode 100644 index 0000000..d72e3ae --- /dev/null +++ b/save_data/IMG_1113_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4468349d6dbebe1195cbf79be2fffdabdeb79952ddb0566ba4446d34ba29d87 +size 3995577 diff --git a/save_data/IMG_1114_detect_result.jpg b/save_data/IMG_1114_detect_result.jpg new file mode 100644 index 0000000..0a4d064 --- /dev/null +++ b/save_data/IMG_1114_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793ba6c2569d8831e18523ade5472d5ddfa06edba0f6d4ff244b942083056b05 +size 2803537 diff --git a/save_data/IMG_1115_detect_result.jpg b/save_data/IMG_1115_detect_result.jpg new file mode 100644 index 0000000..5c91955 --- /dev/null +++ b/save_data/IMG_1115_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e207d55550182de206ee3a62616f55a1df49cd86d78ecdfb0324d34f326e8e7 +size 3063237 diff --git a/save_data/IMG_1116_detect_result.jpg b/save_data/IMG_1116_detect_result.jpg new file mode 100644 index 0000000..da76e68 --- /dev/null +++ b/save_data/IMG_1116_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8208fc209628a5e8910d88acc649438e2ba8759906da6792ce3ae2ff80dd67 +size 2668651 diff --git a/save_data/IMG_1117_detect_result.jpg b/save_data/IMG_1117_detect_result.jpg new file mode 100644 index 0000000..f8a034d --- /dev/null +++ b/save_data/IMG_1117_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3a963bf7eedf6bf086130493f0b3a9b3520ca14525c55831432fb2b501f1a7 +size 3050098 diff --git a/save_data/IMG_1118_detect_result.jpg b/save_data/IMG_1118_detect_result.jpg new file mode 100644 index 0000000..cef133e --- /dev/null +++ b/save_data/IMG_1118_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221a59d4b3f61c18201bbb8aeb93d4cebf46584133b5707c37256a6c258ee41c +size 2521649 diff --git a/save_data/IMG_1119_detect_result.jpg b/save_data/IMG_1119_detect_result.jpg new file mode 100644 index 0000000..dbc769f --- /dev/null +++ b/save_data/IMG_1119_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faface61a6d59698843ae8daa20de7327b9cd2267dd6a9dbad98475238d8481b +size 2821476 diff --git a/save_data/IMG_1120_detect_result.jpg b/save_data/IMG_1120_detect_result.jpg new file mode 100644 index 0000000..eac131c --- /dev/null +++ b/save_data/IMG_1120_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f6eb34d6c1e0468fc5cd25b6b712563b5835932f7eca0776507871cf89bf9b +size 2085552 diff --git a/save_data/IMG_1122_detect_result.jpg b/save_data/IMG_1122_detect_result.jpg new file mode 100644 index 0000000..6a42bf8 --- /dev/null +++ b/save_data/IMG_1122_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:615f8d33b1deba0ed88abde0bc4e62e8691746b53355485ebbc48bf64180e0f7 +size 2604757 diff --git a/save_data/IMG_1123_detect_result.jpg b/save_data/IMG_1123_detect_result.jpg new file mode 100644 index 0000000..51e4bac --- /dev/null +++ b/save_data/IMG_1123_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7007621417122f2c9e44e36567ef80bf24da4bb8f68c1b21b4f3e1ab2516d41f +size 2910086 diff --git a/save_data/IMG_1124_detect_result.jpg b/save_data/IMG_1124_detect_result.jpg new file mode 100644 index 0000000..1bd4aae --- /dev/null +++ b/save_data/IMG_1124_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a5ed3d9270fb5d82422f84e8cafd92713fd7257463e6bb2ae9c07a6b44934a +size 3206122 diff --git a/save_data/IMG_1125_detect_result.jpg b/save_data/IMG_1125_detect_result.jpg new file mode 100644 index 0000000..e5cb4fb --- /dev/null +++ b/save_data/IMG_1125_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ea290bb29547e8c93dd4f4290ed09f5a7876107f5ad105552405bddf9c6ed5 +size 2716984 diff --git a/save_data/IMG_1126_detect_result.jpg b/save_data/IMG_1126_detect_result.jpg new file mode 100644 index 0000000..781a336 --- /dev/null +++ b/save_data/IMG_1126_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6386ef61c1519cc8d6cc1c9fcf991525630db7030ecd34f86404d32d93d41d17 +size 2819308 diff --git a/save_data/IMG_1127_detect_result.jpg b/save_data/IMG_1127_detect_result.jpg new file mode 100644 index 0000000..8f85e99 --- /dev/null +++ b/save_data/IMG_1127_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4f150878685e3c94aac144858c028bc931511740473c39ca6e19b74b5009c6 +size 2903310 diff --git a/save_data/IMG_1128_detect_result.jpg b/save_data/IMG_1128_detect_result.jpg new file mode 100644 index 0000000..13a6dd4 --- /dev/null +++ b/save_data/IMG_1128_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af0c8f38894432a583f3ee71b67b73c64b92bf071300a987bed302f1d8cf3e88 +size 2395221 diff --git a/save_data/IMG_1129_detect_result.jpg b/save_data/IMG_1129_detect_result.jpg new file mode 100644 index 0000000..80772e9 --- /dev/null +++ b/save_data/IMG_1129_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7d19fd7c70c244be949d6997a44654aa9d61af21c66bc32e1456500e90d325 +size 2865771 diff --git a/save_data/IMG_1130_detect_result.jpg b/save_data/IMG_1130_detect_result.jpg new file mode 100644 index 0000000..d5b0289 --- /dev/null +++ b/save_data/IMG_1130_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:577e2ed8e26c2b6b438313283b30f4e3e7a32763a4a5bd6ab6aae579277b1705 +size 2919304 diff --git a/save_data/IMG_1131_detect_result.jpg b/save_data/IMG_1131_detect_result.jpg new file mode 100644 index 0000000..2af2144 --- /dev/null +++ b/save_data/IMG_1131_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d097e7431de159bdc59a60071b523335125dfe84cb3a530f582ed9746dcd1e +size 3442406 diff --git a/save_data/IMG_1132_detect_result.jpg b/save_data/IMG_1132_detect_result.jpg new file mode 100644 index 0000000..775fe9e --- /dev/null +++ b/save_data/IMG_1132_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392a457cb81ed477795ba184dfabb99f48d207ee5bf55869459bc0f0ea90a753 +size 3183351 diff --git a/save_data/IMG_1133_detect_result.jpg b/save_data/IMG_1133_detect_result.jpg new file mode 100644 index 0000000..7af71bd --- /dev/null +++ b/save_data/IMG_1133_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f02b246219726a022e1772865c0e5c5b8ed66b11f897ace084dfcd85dfff5ad +size 3048036 diff --git a/save_data/IMG_1134_detect_result.jpg b/save_data/IMG_1134_detect_result.jpg new file mode 100644 index 0000000..4aa0c52 --- /dev/null +++ b/save_data/IMG_1134_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee94d41c4102e42a313ac6abc775e7fcc8a0ae36652eb1e0b2ae43c2d515e42a +size 2438056 diff --git a/save_data/IMG_1135_detect_result.jpg b/save_data/IMG_1135_detect_result.jpg new file mode 100644 index 0000000..cef42aa --- /dev/null +++ b/save_data/IMG_1135_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f547ad2393a726a5398b24f92a8547bcbe7087824610d819b677025be2ffe85e +size 4426585 diff --git a/save_data/IMG_1136_detect_result.jpg b/save_data/IMG_1136_detect_result.jpg new file mode 100644 index 0000000..79cd295 --- /dev/null +++ b/save_data/IMG_1136_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d0ad30d72fd2014b27ea927ec68651978a4c1505cae7057416b45e77040689 +size 2721123 diff --git a/save_data/IMG_1137_detect_result.jpg b/save_data/IMG_1137_detect_result.jpg new file mode 100644 index 0000000..f276f8c --- /dev/null +++ b/save_data/IMG_1137_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dbfa4e987dbed910bc75f60f727be0dbc41f65f1a3d024762a73922379f072 +size 3817880 diff --git a/save_data/IMG_1138_detect_result.jpg b/save_data/IMG_1138_detect_result.jpg new file mode 100644 index 0000000..b80ba9f --- /dev/null +++ b/save_data/IMG_1138_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2afd420bd95e77384b268478ec2d942d61756d1df40d87262ca4d42127673e21 +size 2485339 diff --git a/save_data/IMG_1139_detect_result.jpg b/save_data/IMG_1139_detect_result.jpg new file mode 100644 index 0000000..648848e --- /dev/null +++ b/save_data/IMG_1139_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316fc0c6f2fd87a4a500889633e17be0d16f3bf6b2dc62da1fca131b4ae6ffe7 +size 2029243 diff --git a/save_data/IMG_1140_detect_result.jpg b/save_data/IMG_1140_detect_result.jpg new file mode 100644 index 0000000..e9d11ab --- /dev/null +++ b/save_data/IMG_1140_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea7b2447b58b8b61ead669cca6bac0d230c32a0a976ee57c23427741b3447a7 +size 1922672 diff --git a/save_data/IMG_1141_detect_result.jpg b/save_data/IMG_1141_detect_result.jpg new file mode 100644 index 0000000..252097a --- /dev/null +++ b/save_data/IMG_1141_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac0593ff605e65f23b1bdebb2b967ee243e8b556a2c7e36ce7d93f7af2127e7 +size 2626215 diff --git a/save_data/IMG_1142_detect_result.jpg b/save_data/IMG_1142_detect_result.jpg new file mode 100644 index 0000000..5a7cb37 --- /dev/null +++ b/save_data/IMG_1142_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d31df3456d3b5b4228606dbe405b59c0c44f01ae16a43b2b5b8da4f3432b93c +size 2071423 diff --git a/save_data/IMG_1143_detect_result.jpg b/save_data/IMG_1143_detect_result.jpg new file mode 100644 index 0000000..68b633d --- /dev/null +++ b/save_data/IMG_1143_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243f073477ef70176471944f2d530520b160cb93eadfdaa1c3e671ec8b93477d +size 1944657 diff --git a/save_data/IMG_1144_detect_result.jpg b/save_data/IMG_1144_detect_result.jpg new file mode 100644 index 0000000..0a6ce1e --- /dev/null +++ b/save_data/IMG_1144_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a8dd18c023ac9d5d48f5d86ff4dc2874261a555434423c27c9e31e1c5d0279 +size 1689222 diff --git a/save_data/IMG_1145_detect_result.jpg b/save_data/IMG_1145_detect_result.jpg new file mode 100644 index 0000000..ec1229c --- /dev/null +++ b/save_data/IMG_1145_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0fd0a4b18e49df6541c7607191e887507ec633e48a0d57ccbeae8234f27da80 +size 2225599 diff --git a/save_data/IMG_1146_detect_result.jpg b/save_data/IMG_1146_detect_result.jpg new file mode 100644 index 0000000..a2f92e7 --- /dev/null +++ b/save_data/IMG_1146_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0454c56fed976b440ce725e747dd5101d81c75f5ffe12c5033fdd62f8c15af8 +size 3720135 diff --git a/save_data/IMG_1147_detect_result.jpg b/save_data/IMG_1147_detect_result.jpg new file mode 100644 index 0000000..23f6a30 --- /dev/null +++ b/save_data/IMG_1147_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4170ec032158ab887d847c0dbedd7167944578ff107031f9e371bb0eb8128839 +size 2090964 diff --git a/save_data/IMG_1148_detect_result.jpg b/save_data/IMG_1148_detect_result.jpg new file mode 100644 index 0000000..3466420 --- /dev/null +++ b/save_data/IMG_1148_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7028d6d6bac847d363d738011304e9bba329a55025bf13128fc97cdd76ecad +size 1763248 diff --git a/save_data/IMG_1149_detect_result.jpg b/save_data/IMG_1149_detect_result.jpg new file mode 100644 index 0000000..1b2a542 --- /dev/null +++ b/save_data/IMG_1149_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b7821b07b21bf051c4770206658b7a7588beb7f6f9f4516f88aa8daa5b1b27 +size 2184032 diff --git a/save_data/IMG_1150_detect_result.jpg b/save_data/IMG_1150_detect_result.jpg new file mode 100644 index 0000000..e22124e --- /dev/null +++ b/save_data/IMG_1150_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea5a7ac493e7c8c0636d5eff5c251328d9672fc3184ef29686fbd869a6fbb16 +size 2386697 diff --git a/save_data/IMG_1151_detect_result.jpg b/save_data/IMG_1151_detect_result.jpg new file mode 100644 index 0000000..5f19c98 --- /dev/null +++ b/save_data/IMG_1151_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17717ec7f91efc2e11cdbe27c1f374525256f9583fe8d7a9459661fa7d28dfae +size 2712491 diff --git a/save_data/IMG_1152_detect_result.jpg b/save_data/IMG_1152_detect_result.jpg new file mode 100644 index 0000000..0034f7b --- /dev/null +++ b/save_data/IMG_1152_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bf2e3f4574de271a0a5171a0c83b4ecdfaba9861b01413fd58e727fd20b812 +size 1944856 diff --git a/save_data/IMG_1153_detect_result.jpg b/save_data/IMG_1153_detect_result.jpg new file mode 100644 index 0000000..e8cd198 --- /dev/null +++ b/save_data/IMG_1153_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1200e06c019f6c458ffa8db9339e86c4c5246de89b56ab51fbd1066b2d6e520 +size 2058312 diff --git a/save_data/IMG_1154_detect_result.jpg b/save_data/IMG_1154_detect_result.jpg new file mode 100644 index 0000000..d53cb8d --- /dev/null +++ b/save_data/IMG_1154_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ad184b07e27b5967921d19921101a448e57e2a358e6035e37a1c2085138fb2 +size 2457637 diff --git a/save_data/IMG_1155_detect_result.jpg b/save_data/IMG_1155_detect_result.jpg new file mode 100644 index 0000000..e311ee8 --- /dev/null +++ b/save_data/IMG_1155_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff7deca88d673517d8135d716278e3b3b24fa2183f42107bd5fa82fff831b81 +size 2708005 diff --git a/save_data/IMG_1156_detect_result.jpg b/save_data/IMG_1156_detect_result.jpg new file mode 100644 index 0000000..39625b6 --- /dev/null +++ b/save_data/IMG_1156_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9869fc5df74e6e2d5c4c2364f1c6617b2ae6a893445704335dbec64d76a06c +size 2595002 diff --git a/save_data/IMG_1157_detect_result.jpg b/save_data/IMG_1157_detect_result.jpg new file mode 100644 index 0000000..924c330 --- /dev/null +++ b/save_data/IMG_1157_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f66c48706cd602250d22f5548a59f1cbf9b4c7bb0469b8914ecbe3bbb2cac30 +size 2365806 diff --git a/save_data/IMG_1158_detect_result.jpg b/save_data/IMG_1158_detect_result.jpg new file mode 100644 index 0000000..83dd763 --- /dev/null +++ b/save_data/IMG_1158_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ddb733c20936950c03ada2c5a0b31020416be21343a6e9fad1b1380863078b +size 2014576 diff --git a/save_data/IMG_1159_detect_result.jpg b/save_data/IMG_1159_detect_result.jpg new file mode 100644 index 0000000..20f7c2c --- /dev/null +++ b/save_data/IMG_1159_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b51fbaeb8ced59fd044c593b5ea2864f1238093f310fd52d9a076c8a443ac5e +size 2334451 diff --git a/save_data/IMG_1160_detect_result.jpg b/save_data/IMG_1160_detect_result.jpg new file mode 100644 index 0000000..77d6841 --- /dev/null +++ b/save_data/IMG_1160_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75104d10abf97d4654b8829108a519e8752b08c986f6578fa14caabc33858d8f +size 2028575 diff --git a/save_data/IMG_1161_detect_result.jpg b/save_data/IMG_1161_detect_result.jpg new file mode 100644 index 0000000..b448b15 --- /dev/null +++ b/save_data/IMG_1161_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffa2643cab02f81749981d052651266554e70914b85fcf6ef634c18b5455e38 +size 1582298 diff --git a/save_data/IMG_1162_detect_result.jpg b/save_data/IMG_1162_detect_result.jpg new file mode 100644 index 0000000..3472b3e --- /dev/null +++ b/save_data/IMG_1162_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1ca0e204e0e3069a530e97b04d4b4246ef4c26607b40193f9ccf7ba6bb9b5c +size 2049281 diff --git a/save_data/IMG_1163_detect_result.jpg b/save_data/IMG_1163_detect_result.jpg new file mode 100644 index 0000000..03c9fd2 --- /dev/null +++ b/save_data/IMG_1163_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83a0c52d9228dfb91bf9a49e05d28916a174ca2663c62a91fa17c38d84b0ca5 +size 1798916 diff --git a/save_data/IMG_1164_detect_result.jpg b/save_data/IMG_1164_detect_result.jpg new file mode 100644 index 0000000..2de78c7 --- /dev/null +++ b/save_data/IMG_1164_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d8a38cd5dd2e9ffd8dc30a421a84bfe9c5ca84171dd55773e82b77cbb52ecd5 +size 1867801 diff --git a/save_data/IMG_1165_detect_result.jpg b/save_data/IMG_1165_detect_result.jpg new file mode 100644 index 0000000..db73a04 --- /dev/null +++ b/save_data/IMG_1165_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6dc1a060ae421c5d94018b0bf01941f2ae8ecb31c55c80f4fb911ed6455db9 +size 1834029 diff --git a/save_data/IMG_1166_detect_result.jpg b/save_data/IMG_1166_detect_result.jpg new file mode 100644 index 0000000..7b54b1f --- /dev/null +++ b/save_data/IMG_1166_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14335e2af7498113e40248a9fe68f1149fada92e7426625c3dd0ee9cd74cd51 +size 2219888 diff --git a/save_data/IMG_1167_detect_result.jpg b/save_data/IMG_1167_detect_result.jpg new file mode 100644 index 0000000..1cb9b45 --- /dev/null +++ b/save_data/IMG_1167_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c2b29defc240d04098009274525cc7f8ebb18e753dd459c3dfb46490f75b3a +size 1753415 diff --git a/save_data/IMG_1168_detect_result.jpg b/save_data/IMG_1168_detect_result.jpg new file mode 100644 index 0000000..e6414e3 --- /dev/null +++ b/save_data/IMG_1168_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58937702cc01ba2a5a24a32d885002c2f2b00f813be1178ed4df87a416a4c4bf +size 2327041 diff --git a/save_data/IMG_1169_detect_result.jpg b/save_data/IMG_1169_detect_result.jpg new file mode 100644 index 0000000..e7ac4ef --- /dev/null +++ b/save_data/IMG_1169_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6751ec64b1727ccd2cd92ca9916aa12bccd692da8b3a20cc7bd67cf53e13fe +size 2103989 diff --git a/save_data/IMG_1170_detect_result.jpg b/save_data/IMG_1170_detect_result.jpg new file mode 100644 index 0000000..925aea2 --- /dev/null +++ b/save_data/IMG_1170_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca392872b526e8c590bd12f0933947989dcafdae8ad205783d09a14857109b2 +size 2523183 diff --git a/save_data/IMG_1171_detect_result.jpg b/save_data/IMG_1171_detect_result.jpg new file mode 100644 index 0000000..611824d --- /dev/null +++ b/save_data/IMG_1171_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffc788ce4264674bd63c672b13ae6c7bda556add21b9cdde09e3d828a028dff +size 1759760 diff --git a/save_data/IMG_1172_detect_result.jpg b/save_data/IMG_1172_detect_result.jpg new file mode 100644 index 0000000..99333ef --- /dev/null +++ b/save_data/IMG_1172_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bccd89fd9b712a63bf1a2fe53c2b856472216a9f45017569d7ae604185697851 +size 2439012 diff --git a/save_data/IMG_1173_detect_result.jpg b/save_data/IMG_1173_detect_result.jpg new file mode 100644 index 0000000..f0ddd9b --- /dev/null +++ b/save_data/IMG_1173_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d5174b7259d55dc6ceb7e29b5448d2df6c6715cd4ec3e498fe56465ca57e62 +size 1883671 diff --git a/save_data/IMG_1174_detect_result.jpg b/save_data/IMG_1174_detect_result.jpg new file mode 100644 index 0000000..e3b1da8 --- /dev/null +++ b/save_data/IMG_1174_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd3d9fadd25f9883fe92ecd823c430c88fe473931c5e3bbe281866c86043cec +size 2157209 diff --git a/save_data/IMG_1175_detect_result.jpg b/save_data/IMG_1175_detect_result.jpg new file mode 100644 index 0000000..58fb91b --- /dev/null +++ b/save_data/IMG_1175_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad981d708ff4f56c90ea49a96c13a9ea67fb61a3d9fe009de2db8a76963e60a +size 2189592 diff --git a/save_data/IMG_1176_detect_result.jpg b/save_data/IMG_1176_detect_result.jpg new file mode 100644 index 0000000..1bce288 --- /dev/null +++ b/save_data/IMG_1176_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5285c5502b740364af3bc13119abf5f3eb581698a64614ac551f350c93f33c3b +size 2655986 diff --git a/save_data/IMG_1177_detect_result.jpg b/save_data/IMG_1177_detect_result.jpg new file mode 100644 index 0000000..587a2a9 --- /dev/null +++ b/save_data/IMG_1177_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d0c84fe31d3b46afa6b90284004ec27699be587376077b09c665d976f6d18b +size 2663969 diff --git a/save_data/IMG_1178_detect_result.jpg b/save_data/IMG_1178_detect_result.jpg new file mode 100644 index 0000000..027b1ff --- /dev/null +++ b/save_data/IMG_1178_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c368860d0baa58e5181d0507fc507f599aa452f8088e6f6a3e8111338fb07b1 +size 2127506 diff --git a/save_data/IMG_1179_detect_result.jpg b/save_data/IMG_1179_detect_result.jpg new file mode 100644 index 0000000..80f6fcc --- /dev/null +++ b/save_data/IMG_1179_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffd105e6ddb18073889b26e7b9d662a6bcaf477ecaa4008de2fd7148946054c +size 2331191 diff --git a/save_data/IMG_1180_detect_result.jpg b/save_data/IMG_1180_detect_result.jpg new file mode 100644 index 0000000..22387bd --- /dev/null +++ b/save_data/IMG_1180_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f344a38897dd8e0990086b3d1e30b1c1c0d7e03139368c2a99cc7ef2c1184ffe +size 3235320 diff --git a/save_data/IMG_1181_detect_result.jpg b/save_data/IMG_1181_detect_result.jpg new file mode 100644 index 0000000..c349382 --- /dev/null +++ b/save_data/IMG_1181_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6700a9fefc5e633f390bc10991d65ec17579ebc328e50acce8505eb9ade10082 +size 3012221 diff --git a/save_data/IMG_1182_detect_result.jpg b/save_data/IMG_1182_detect_result.jpg new file mode 100644 index 0000000..916275b --- /dev/null +++ b/save_data/IMG_1182_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9703b04990f4f2cb79756284ffc7fc69b5117f2e69f2dd6765332e38f32391 +size 3296763 diff --git a/save_data/IMG_1183_detect_result.jpg b/save_data/IMG_1183_detect_result.jpg new file mode 100644 index 0000000..449b3b3 --- /dev/null +++ b/save_data/IMG_1183_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bb70abf3cf9795a206087a1b1e63e284585a3bb6fb4eb55f18dd2fbfa7aa3e +size 3141254 diff --git a/save_data/IMG_1184_detect_result.jpg b/save_data/IMG_1184_detect_result.jpg new file mode 100644 index 0000000..7212a49 --- /dev/null +++ b/save_data/IMG_1184_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54c55072f23f7e88fe866e3ef6807f53e53f7932e6ec266d31ee9e8344abcd5 +size 2617803 diff --git a/save_data/IMG_1185_detect_result.jpg b/save_data/IMG_1185_detect_result.jpg new file mode 100644 index 0000000..761f8f4 --- /dev/null +++ b/save_data/IMG_1185_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afda8ecc4a28e890ed94e9dcc5627f1104111f586ca0c70e95eb6aa3867b02b5 +size 2568197 diff --git a/save_data/IMG_1186_detect_result.jpg b/save_data/IMG_1186_detect_result.jpg new file mode 100644 index 0000000..d495c6e --- /dev/null +++ b/save_data/IMG_1186_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fb9abbf369e891a861fff0c87b239fb9677fd973543f4e67a4dd18efd0c28e +size 2833152 diff --git a/save_data/IMG_1187_detect_result.jpg b/save_data/IMG_1187_detect_result.jpg new file mode 100644 index 0000000..3bef734 --- /dev/null +++ b/save_data/IMG_1187_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b563114812ed5ebe3a0dbeb42e0317d795a11b4504ef2a064f4bc8d6b9e488 +size 3031360 diff --git a/save_data/IMG_1188_detect_result.jpg b/save_data/IMG_1188_detect_result.jpg new file mode 100644 index 0000000..5dd7ef3 --- /dev/null +++ b/save_data/IMG_1188_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4807fc91a72822747e41c242bcfdd6a0ede176181aca60c8d86724deea84ab01 +size 3055173 diff --git a/save_data/IMG_1189_detect_result.jpg b/save_data/IMG_1189_detect_result.jpg new file mode 100644 index 0000000..edd21d2 --- /dev/null +++ b/save_data/IMG_1189_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25ab5a63b336ebb1de2f9e688e936150ceea3d14c35fc62b53ebd7115243d85 +size 2951050 diff --git a/save_data/IMG_1190_detect_result.jpg b/save_data/IMG_1190_detect_result.jpg new file mode 100644 index 0000000..36d9554 --- /dev/null +++ b/save_data/IMG_1190_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba9687f96d145750a25c793a6da993d596d3a34571824d32373f84c9ef39691 +size 2897641 diff --git a/save_data/IMG_1191_detect_result.jpg b/save_data/IMG_1191_detect_result.jpg new file mode 100644 index 0000000..8ae20a8 --- /dev/null +++ b/save_data/IMG_1191_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961643d26ce71c74ecae1649c76fa79abbf6a70fc9631bf2d687b5ab0136f225 +size 2711850 diff --git a/save_data/IMG_1192_detect_result.jpg b/save_data/IMG_1192_detect_result.jpg new file mode 100644 index 0000000..c74c288 --- /dev/null +++ b/save_data/IMG_1192_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4095f7eca335ba0f8c991c8b06d09674e0b784f5a86f746b7b2b6e9e6e113d8e +size 2187639 diff --git a/save_data/IMG_1193_detect_result.jpg b/save_data/IMG_1193_detect_result.jpg new file mode 100644 index 0000000..2477187 --- /dev/null +++ b/save_data/IMG_1193_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783f82befebb2fe36718e61cc312a439e1adbecad358d6eb5a9f521bb0684f1e +size 1935376 diff --git a/save_data/IMG_1194_detect_result.jpg b/save_data/IMG_1194_detect_result.jpg new file mode 100644 index 0000000..d8c8b38 --- /dev/null +++ b/save_data/IMG_1194_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22eb296d6970db04683bcd6973457bd1747a80c46d1b7d74396726bda8433ab7 +size 2323314 diff --git a/save_data/IMG_1195_detect_result.jpg b/save_data/IMG_1195_detect_result.jpg new file mode 100644 index 0000000..b583b3f --- /dev/null +++ b/save_data/IMG_1195_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eeb66a5e7012e7d90fba52fef48fc0e3bd552c9c4e272c910e69a340982f5b1 +size 2599993 diff --git a/save_data/IMG_1196_detect_result.jpg b/save_data/IMG_1196_detect_result.jpg new file mode 100644 index 0000000..2d1eed1 --- /dev/null +++ b/save_data/IMG_1196_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df186391a5fc724c390d1ec688707a15780a1c6680665f01d46948e82a40f79 +size 2062778 diff --git a/save_data/IMG_1197_detect_result.jpg b/save_data/IMG_1197_detect_result.jpg new file mode 100644 index 0000000..36ce5eb --- /dev/null +++ b/save_data/IMG_1197_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bd8bff7e61723b9c6eb0185bb28aa0dea94426be78c1d1d6a0427c4bac0c0b +size 2322071 diff --git a/save_data/IMG_1198_detect_result.jpg b/save_data/IMG_1198_detect_result.jpg new file mode 100644 index 0000000..5cc79e9 --- /dev/null +++ b/save_data/IMG_1198_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ce435190db3b18ccefbf426663266215d6f5ebe015a33c333c89eec810d219 +size 2096765 diff --git a/save_data/IMG_1199_detect_result.jpg b/save_data/IMG_1199_detect_result.jpg new file mode 100644 index 0000000..ec6ffd9 --- /dev/null +++ b/save_data/IMG_1199_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d5011be5fa47c74d5ffe11c1e1bbc162139368c5e95c3c3abbe581e63fa4d6 +size 2525559 diff --git a/save_data/IMG_1200_detect_result.jpg b/save_data/IMG_1200_detect_result.jpg new file mode 100644 index 0000000..d4efe33 --- /dev/null +++ b/save_data/IMG_1200_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b33f2e734d670fe2a5d5c03527ebd2ddb79f8215966501d56b8cee901b2c78d +size 2360608 diff --git a/save_data/IMG_1201_detect_result.jpg b/save_data/IMG_1201_detect_result.jpg new file mode 100644 index 0000000..e03895a --- /dev/null +++ b/save_data/IMG_1201_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fa0ea87366f77dedc8518c5db6f6016c788719995e78d1c6608f43b7ae48d6 +size 2397364 diff --git a/save_data/IMG_1202_detect_result.jpg b/save_data/IMG_1202_detect_result.jpg new file mode 100644 index 0000000..2664b6f --- /dev/null +++ b/save_data/IMG_1202_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec80d3857f30147383e407fc71f417ac9aea9493e1e4bbb2a95cc8a4d74f21e2 +size 3298057 diff --git a/save_data/IMG_1203_detect_result.jpg b/save_data/IMG_1203_detect_result.jpg new file mode 100644 index 0000000..77f1313 --- /dev/null +++ b/save_data/IMG_1203_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3dac647f42f40e44129fb709319df9a5f9df499c8abe137799e5097f0d5cb5 +size 2554223 diff --git a/save_data/IMG_1204_detect_result.jpg b/save_data/IMG_1204_detect_result.jpg new file mode 100644 index 0000000..b01e9c9 --- /dev/null +++ b/save_data/IMG_1204_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7638646aa8a33ee6559bea023d15d94601230a05bc55a24937e9f0247a1952eb +size 2526690 diff --git a/save_data/IMG_1205_detect_result.jpg b/save_data/IMG_1205_detect_result.jpg new file mode 100644 index 0000000..a5a3a57 --- /dev/null +++ b/save_data/IMG_1205_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d52a6f5763143da3f7b625bc64017f074e92918446dd1076b85fa986d40498 +size 2645470 diff --git a/save_data/IMG_1212_detect_result.jpg b/save_data/IMG_1212_detect_result.jpg new file mode 100644 index 0000000..027e956 --- /dev/null +++ b/save_data/IMG_1212_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f7b0c71c5d86e4176bbf6bf147d1a0fdb80d0afdfd24b0c85ebfc3817cb652 +size 2579658 diff --git a/save_data/IMG_1213_detect_result.jpg b/save_data/IMG_1213_detect_result.jpg new file mode 100644 index 0000000..2b77792 --- /dev/null +++ b/save_data/IMG_1213_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3659bfc8c908654ce18ce445223c15749e00dbe8fd19de5932278350d03b8b85 +size 2242963 diff --git a/save_data/IMG_1214_detect_result.jpg b/save_data/IMG_1214_detect_result.jpg new file mode 100644 index 0000000..475fb00 --- /dev/null +++ b/save_data/IMG_1214_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3d5d4cbacf0290f7473ef5d3a83d65d8a445d5190f38ff2fa93771d60a5c68 +size 2023691 diff --git a/save_data/IMG_1215_detect_result.jpg b/save_data/IMG_1215_detect_result.jpg new file mode 100644 index 0000000..26a9fdd --- /dev/null +++ b/save_data/IMG_1215_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b197bd35a4b76f35fc58bc74be0c23b44530e8629f72f4c67c0e7d96eaa9098 +size 2703132 diff --git a/save_data/IMG_1216_detect_result.jpg b/save_data/IMG_1216_detect_result.jpg new file mode 100644 index 0000000..c1d7dcf --- /dev/null +++ b/save_data/IMG_1216_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333b261c477bcb7dd0f756678ff7c5e661d9eb4220cfa325e8ee9ce6deeff05a +size 2526031 diff --git a/save_data/IMG_1217_detect_result.jpg b/save_data/IMG_1217_detect_result.jpg new file mode 100644 index 0000000..79f19f2 --- /dev/null +++ b/save_data/IMG_1217_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac4c67a4e72669e2b71728b82333896d2ee96481aab6c61b0c1eb8cb1809fd15 +size 2949715 diff --git a/save_data/IMG_1218_detect_result.jpg b/save_data/IMG_1218_detect_result.jpg new file mode 100644 index 0000000..68fa378 --- /dev/null +++ b/save_data/IMG_1218_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f347a38081d6fdbe11c0a1fe28f257ded3d0d3eb660d9b9497a627c39f705305 +size 3041577 diff --git a/save_data/IMG_1219_detect_result.jpg b/save_data/IMG_1219_detect_result.jpg new file mode 100644 index 0000000..387123b --- /dev/null +++ b/save_data/IMG_1219_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023867c8823ac429efac04abfb839e324877a18cbf13f4a4d18a48c5ce90f47a +size 2985190 diff --git a/save_data/IMG_1220_detect_result.jpg b/save_data/IMG_1220_detect_result.jpg new file mode 100644 index 0000000..4c34317 --- /dev/null +++ b/save_data/IMG_1220_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1966a0b19daa6bd8dd8981aa2e938d1ff6841ff394e6eecc184e59e3add39b81 +size 1783370 diff --git a/save_data/IMG_1221_detect_result.jpg b/save_data/IMG_1221_detect_result.jpg new file mode 100644 index 0000000..3511d0a --- /dev/null +++ b/save_data/IMG_1221_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad6a484cb6e0227b07b7858873b29da34f446518ddfa9a339967cc134f9a602 +size 2276188 diff --git a/save_data/IMG_1222_detect_result.jpg b/save_data/IMG_1222_detect_result.jpg new file mode 100644 index 0000000..fa079ff --- /dev/null +++ b/save_data/IMG_1222_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a94a2b9c1ccd2433e351fb3ad6e2c5d79e08180895efde48314788f5373fbb3 +size 2513611 diff --git a/save_data/IMG_1223_detect_result.jpg b/save_data/IMG_1223_detect_result.jpg new file mode 100644 index 0000000..62075b0 --- /dev/null +++ b/save_data/IMG_1223_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f428b3d9fe541a552dc624904e3f394d3991f82fb68e4c6abd37d31fb7974e4 +size 2159171 diff --git a/save_data/IMG_1224_detect_result.jpg b/save_data/IMG_1224_detect_result.jpg new file mode 100644 index 0000000..a676b6e --- /dev/null +++ b/save_data/IMG_1224_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8362b4fed5ecd2054b3a547d41015e49df0307e79dffd05fab02bf1de049d068 +size 1901578 diff --git a/save_data/IMG_1225_detect_result.jpg b/save_data/IMG_1225_detect_result.jpg new file mode 100644 index 0000000..196731f --- /dev/null +++ b/save_data/IMG_1225_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abff9456bda6655f999d59a183eb8e766ed81ea470a62c6ebf0372c2ef3f08d9 +size 2450550 diff --git a/save_data/IMG_1226_detect_result.jpg b/save_data/IMG_1226_detect_result.jpg new file mode 100644 index 0000000..85f2e6d --- /dev/null +++ b/save_data/IMG_1226_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca86454288f429713cf7e3ca7f3d590a4fe7026e768f83f96487f5364c5d696 +size 2444692 diff --git a/save_data/IMG_1227_detect_result.jpg b/save_data/IMG_1227_detect_result.jpg new file mode 100644 index 0000000..6ba9481 --- /dev/null +++ b/save_data/IMG_1227_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5184be2634bceb122e8e6f71859466fdd54bfb4e66510726a1f6db81d5884620 +size 2602024 diff --git a/save_data/IMG_1228_detect_result.jpg b/save_data/IMG_1228_detect_result.jpg new file mode 100644 index 0000000..08b6720 --- /dev/null +++ b/save_data/IMG_1228_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de46258149c3e97458bb575982d87bd0dacd8489b33ab8d2ea321e93ccc4170 +size 2013752 diff --git a/save_data/IMG_1229_detect_result.jpg b/save_data/IMG_1229_detect_result.jpg new file mode 100644 index 0000000..f1b2779 --- /dev/null +++ b/save_data/IMG_1229_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e08c95bc1500e2ca911582112830e37b65a42c76b162bddbb50daffe74fb939 +size 1990239 diff --git a/save_data/IMG_1230_detect_result.jpg b/save_data/IMG_1230_detect_result.jpg new file mode 100644 index 0000000..8fba8b3 --- /dev/null +++ b/save_data/IMG_1230_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83561e1dfb7d0bab63dd44ddfd36a4bbfcf6fa8445dde982b9bd4817a95a65d9 +size 2394215 diff --git a/save_data/IMG_1231_detect_result.jpg b/save_data/IMG_1231_detect_result.jpg new file mode 100644 index 0000000..26b41f9 --- /dev/null +++ b/save_data/IMG_1231_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b0836989e6eb63dc6d86ecb9c53e27eba6599766d1c3e2c6f4260f7e33b69f +size 2707308 diff --git a/save_data/IMG_1232_detect_result.jpg b/save_data/IMG_1232_detect_result.jpg new file mode 100644 index 0000000..ab13c92 --- /dev/null +++ b/save_data/IMG_1232_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21e3f8b86d1932cf3f7d80ba2f4c13595562835ef03f4a9d585726275506e3b +size 2178745 diff --git a/save_data/IMG_1233_detect_result.jpg b/save_data/IMG_1233_detect_result.jpg new file mode 100644 index 0000000..72d5cb1 --- /dev/null +++ b/save_data/IMG_1233_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65fdf9110090be258750fcb6383af892ea5d1da1b596b2c7d979fb9219599b8 +size 2337969 diff --git a/save_data/IMG_1234_detect_result.jpg b/save_data/IMG_1234_detect_result.jpg new file mode 100644 index 0000000..2afa642 --- /dev/null +++ b/save_data/IMG_1234_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4203a96924c6d5c1532e6b60df20e429facc5c509d15d6e03920d077ace166c4 +size 2250943 diff --git a/save_data/IMG_1235_detect_result.jpg b/save_data/IMG_1235_detect_result.jpg new file mode 100644 index 0000000..9d5c532 --- /dev/null +++ b/save_data/IMG_1235_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c37808ffa2ae45b759d4e1480e6861493be5588ea3969410e1a7c625f303f22 +size 1965877 diff --git a/save_data/IMG_1236_detect_result.jpg b/save_data/IMG_1236_detect_result.jpg new file mode 100644 index 0000000..48b8590 --- /dev/null +++ b/save_data/IMG_1236_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142630c9af9099953358ac2c54df5b97ebd6c9c1e19edb2a642c8a6d05206208 +size 2106076 diff --git a/save_data/IMG_1237_detect_result.jpg b/save_data/IMG_1237_detect_result.jpg new file mode 100644 index 0000000..dcc72f4 --- /dev/null +++ b/save_data/IMG_1237_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a393af1eedbdfb65a282be14e9caacdd772e362f466412bcb05a1c6d7373476d +size 2305253 diff --git a/save_data/IMG_1238_detect_result.jpg b/save_data/IMG_1238_detect_result.jpg new file mode 100644 index 0000000..85d31d3 --- /dev/null +++ b/save_data/IMG_1238_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1cee2694c18a95185d1a7e1c05d88cf1c806af98f55c74d6d065a89935723e +size 1902698 diff --git a/save_data/IMG_1239_detect_result.jpg b/save_data/IMG_1239_detect_result.jpg new file mode 100644 index 0000000..818382f --- /dev/null +++ b/save_data/IMG_1239_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b20d050255b62192aff84b3a75fbcc1bbf5055855691cb74b23f1acb494976a +size 2193533 diff --git a/save_data/IMG_1240_detect_result.jpg b/save_data/IMG_1240_detect_result.jpg new file mode 100644 index 0000000..360cee9 --- /dev/null +++ b/save_data/IMG_1240_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f598c811277422a2cabd12e9e1299472d0776162e854ce79002946948e597d21 +size 1781753 diff --git a/save_data/IMG_1241_detect_result.jpg b/save_data/IMG_1241_detect_result.jpg new file mode 100644 index 0000000..7dba970 --- /dev/null +++ b/save_data/IMG_1241_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7beb3e50f7ff9e8ca6e037786c6c113f799ff318a921cb1ca0712992e9de3ff +size 2794281 diff --git a/save_data/IMG_1242_detect_result.jpg b/save_data/IMG_1242_detect_result.jpg new file mode 100644 index 0000000..bf3de1b --- /dev/null +++ b/save_data/IMG_1242_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda463b61ed3321dd5f8438f0db14fec5ac569d0d6b870439d65710904d5ae78 +size 2528304 diff --git a/save_data/IMG_1243_detect_result.jpg b/save_data/IMG_1243_detect_result.jpg new file mode 100644 index 0000000..5302761 --- /dev/null +++ b/save_data/IMG_1243_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb90ffde8d64d282f9e1b142f20be72a61b18aef4ae70d5b7d61d6117145f5ef +size 2315946 diff --git a/save_data/IMG_1244_detect_result.jpg b/save_data/IMG_1244_detect_result.jpg new file mode 100644 index 0000000..d935c6f --- /dev/null +++ b/save_data/IMG_1244_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368481789bb5e5591cdebd40899b50423e54991ef32df44b20290cc8befa61d0 +size 2422332 diff --git a/save_data/IMG_1245_detect_result.jpg b/save_data/IMG_1245_detect_result.jpg new file mode 100644 index 0000000..b8f6fc1 --- /dev/null +++ b/save_data/IMG_1245_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a22428b4697373040373853ba1675498d17bac582e62c100098c4d3010883a +size 2457578 diff --git a/save_data/IMG_1246_detect_result.jpg b/save_data/IMG_1246_detect_result.jpg new file mode 100644 index 0000000..313cc00 --- /dev/null +++ b/save_data/IMG_1246_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f1e523a630a8e1e89edf3280cb3331fb143985cc1616d66e83834e7e7f6ecd +size 2448388 diff --git a/save_data/IMG_1247_detect_result.jpg b/save_data/IMG_1247_detect_result.jpg new file mode 100644 index 0000000..3da78e1 --- /dev/null +++ b/save_data/IMG_1247_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29770c7887b115325198734d1e4623ec5000b2c2e32332cd1dc809e1eb7138e +size 2620200 diff --git a/save_data/IMG_1248_detect_result.jpg b/save_data/IMG_1248_detect_result.jpg new file mode 100644 index 0000000..621707a --- /dev/null +++ b/save_data/IMG_1248_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cffbea2a068853dc1c0701c5766f91fcc6e709b70d19ff56c9928c78703098e7 +size 2281869 diff --git a/save_data/IMG_1249_detect_result.jpg b/save_data/IMG_1249_detect_result.jpg new file mode 100644 index 0000000..7614e97 --- /dev/null +++ b/save_data/IMG_1249_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45189602b02d8cdbd3f95ee09d4c88f807d0b03d4b3091c0818ac68c0daff309 +size 2159204 diff --git a/save_data/IMG_1250_detect_result.jpg b/save_data/IMG_1250_detect_result.jpg new file mode 100644 index 0000000..4294de1 --- /dev/null +++ b/save_data/IMG_1250_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d2918812bb123d7638e85c1634d6cbbd21ad2b11f31bb4b3d202e5adbb94be +size 2330191 diff --git a/save_data/IMG_1251_detect_result.jpg b/save_data/IMG_1251_detect_result.jpg new file mode 100644 index 0000000..b60240c --- /dev/null +++ b/save_data/IMG_1251_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1b953eb75e6be4de37eac1750ed24c97840a004cbefeecc177bee35bd07f03 +size 2607785 diff --git a/save_data/IMG_1252_detect_result.jpg b/save_data/IMG_1252_detect_result.jpg new file mode 100644 index 0000000..5ba89ce --- /dev/null +++ b/save_data/IMG_1252_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87daab98c25bda00ae297ef364205df1da3d345e01b1dbbbe855ad653558a1d +size 2528692 diff --git a/save_data/IMG_1253_detect_result.jpg b/save_data/IMG_1253_detect_result.jpg new file mode 100644 index 0000000..9f55574 --- /dev/null +++ b/save_data/IMG_1253_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c16140ff89fe89d0717fd8d6f9194fc873c5bcb7fc2b140e3391931fe19565 +size 2410812 diff --git a/save_data/IMG_1254_detect_result.jpg b/save_data/IMG_1254_detect_result.jpg new file mode 100644 index 0000000..061d74b --- /dev/null +++ b/save_data/IMG_1254_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29811de1512e28afcfb0eef67e96cf07b33337ae2f81cd01d7b5553c0a65c0e6 +size 2608353 diff --git a/save_data/IMG_1255_detect_result.jpg b/save_data/IMG_1255_detect_result.jpg new file mode 100644 index 0000000..307a13d --- /dev/null +++ b/save_data/IMG_1255_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05aa3ef010e5c6cde27133f991ed35ce02369cddf54a3180d76a9c5a510f057b +size 2517214 diff --git a/save_data/IMG_1256_detect_result.jpg b/save_data/IMG_1256_detect_result.jpg new file mode 100644 index 0000000..a967ea7 --- /dev/null +++ b/save_data/IMG_1256_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5ce868fdeda14f8166fc12ba208e8a91c2e9a1361f107ca8325692cbf4d9c7 +size 2634342 diff --git a/save_data/IMG_1257_detect_result.jpg b/save_data/IMG_1257_detect_result.jpg new file mode 100644 index 0000000..b52e325 --- /dev/null +++ b/save_data/IMG_1257_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8387ca56738a4b07de6e2cb8d22234743cb5101d833a5974d2827fba37430ed3 +size 2656279 diff --git a/save_data/IMG_1258_detect_result.jpg b/save_data/IMG_1258_detect_result.jpg new file mode 100644 index 0000000..0f0ceec --- /dev/null +++ b/save_data/IMG_1258_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bb41cf2880f29693a833f1d69296e07509563d6ddec24b7827ebf4af2b76f7 +size 2589689 diff --git a/save_data/IMG_1259_detect_result.jpg b/save_data/IMG_1259_detect_result.jpg new file mode 100644 index 0000000..98a457a --- /dev/null +++ b/save_data/IMG_1259_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191b7217009a8af68e47329a775194881b6db7433514822c9f39f62a29f37339 +size 2704333 diff --git a/save_data/IMG_1260_detect_result.jpg b/save_data/IMG_1260_detect_result.jpg new file mode 100644 index 0000000..814ea98 --- /dev/null +++ b/save_data/IMG_1260_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687e728985edfd7f7fd6d63991dfe49d67d98dc26e2072a5cfb92a8bc56407e4 +size 2457935 diff --git a/save_data/IMG_1261_detect_result.jpg b/save_data/IMG_1261_detect_result.jpg new file mode 100644 index 0000000..524480b --- /dev/null +++ b/save_data/IMG_1261_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ca44b34e98995332bd4cbf4ec367ebbc614ac210bb1e85b4dd246459c27c6c +size 2429577 diff --git a/save_data/IMG_1262_detect_result.jpg b/save_data/IMG_1262_detect_result.jpg new file mode 100644 index 0000000..0f0c2da --- /dev/null +++ b/save_data/IMG_1262_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84545814a8cc0e378a68d9eee8a9febfa69e86c8a0595cfd0081a9a619a1db9 +size 2941957 diff --git a/save_data/IMG_1263_detect_result.jpg b/save_data/IMG_1263_detect_result.jpg new file mode 100644 index 0000000..dcb8aa7 --- /dev/null +++ b/save_data/IMG_1263_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f63b609280bf5876329760eb99a2281a4a4f9fe760d9bcd8b91512ff6d2634 +size 2647594 diff --git a/save_data/IMG_1264_detect_result.jpg b/save_data/IMG_1264_detect_result.jpg new file mode 100644 index 0000000..72076ed --- /dev/null +++ b/save_data/IMG_1264_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae1495e6bda815aa79813fca18bf016468641d6e0857f65f56f5ba2abc13c2a +size 2070895 diff --git a/save_data/IMG_1265_detect_result.jpg b/save_data/IMG_1265_detect_result.jpg new file mode 100644 index 0000000..c6da38a --- /dev/null +++ b/save_data/IMG_1265_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8938a5ff0997240ed7ec6076312f4fcdce8477a1279c870db82a0a22ee6268 +size 2678603 diff --git a/save_data/IMG_1266_detect_result.jpg b/save_data/IMG_1266_detect_result.jpg new file mode 100644 index 0000000..ef7f3c4 --- /dev/null +++ b/save_data/IMG_1266_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898884b97dd59289118ee50ed301b9aa07cf163a961d42d6a88da869db1a19ef +size 2289510 diff --git a/save_data/IMG_1267_detect_result.jpg b/save_data/IMG_1267_detect_result.jpg new file mode 100644 index 0000000..65b961a --- /dev/null +++ b/save_data/IMG_1267_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10db71afda4d571d21bba8bdd80ceec14612f48beb34890606c1e455eaeef181 +size 2334897 diff --git a/save_data/IMG_1268_detect_result.jpg b/save_data/IMG_1268_detect_result.jpg new file mode 100644 index 0000000..c5664ca --- /dev/null +++ b/save_data/IMG_1268_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0922dcc6c835a65a323924cebf3d81f31f223ddda8cc2b7b12984ec454d3df73 +size 2602064 diff --git a/save_data/IMG_1269_detect_result.jpg b/save_data/IMG_1269_detect_result.jpg new file mode 100644 index 0000000..cb04537 --- /dev/null +++ b/save_data/IMG_1269_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06e98a115a4fca0bcff02227666967faa473b657bd9a1d8d6c98a9af811081a +size 2650919 diff --git a/save_data/IMG_1270_detect_result.jpg b/save_data/IMG_1270_detect_result.jpg new file mode 100644 index 0000000..498252f --- /dev/null +++ b/save_data/IMG_1270_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d9b614b6dbc24349fd2734d1325f71b1a6ae6bd998dd59971ec6b6190adfe1 +size 2830180 diff --git a/save_data/IMG_1271_detect_result.jpg b/save_data/IMG_1271_detect_result.jpg new file mode 100644 index 0000000..a8349d6 --- /dev/null +++ b/save_data/IMG_1271_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ace447bd287272c51433817ca62b56bbd444917a7415e7fadad2545c81e095 +size 2416822 diff --git a/save_data/IMG_1272_detect_result.jpg b/save_data/IMG_1272_detect_result.jpg new file mode 100644 index 0000000..7d8cede --- /dev/null +++ b/save_data/IMG_1272_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cbceeb802c170894a71d06b1d280d4f06128f5d53d00dfc9f96e268c849a2d +size 3292332 diff --git a/save_data/IMG_1273_detect_result.jpg b/save_data/IMG_1273_detect_result.jpg new file mode 100644 index 0000000..d1b4612 --- /dev/null +++ b/save_data/IMG_1273_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec173bc0dd89c25e99b2dc9510832db89c9e76c084ad18ad6ec49e87df046380 +size 2418243 diff --git a/save_data/IMG_1274_detect_result.jpg b/save_data/IMG_1274_detect_result.jpg new file mode 100644 index 0000000..b5ed53d --- /dev/null +++ b/save_data/IMG_1274_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ad16a8522df83bfa8a4063b5dffaf862a48142b36c3280ac2b53630df4624c +size 1982856 diff --git a/save_data/IMG_1275_detect_result.jpg b/save_data/IMG_1275_detect_result.jpg new file mode 100644 index 0000000..c28173e --- /dev/null +++ b/save_data/IMG_1275_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f6d14bd92cc8d4d4fe68a2b89cf2e8602980f6b7f0b11bc1aa8cfff58b6b39 +size 2297354 diff --git a/save_data/IMG_1276_detect_result.jpg b/save_data/IMG_1276_detect_result.jpg new file mode 100644 index 0000000..7ff339c --- /dev/null +++ b/save_data/IMG_1276_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e77631b0ad4c6081aaa3ae39e899b57d735d915ca784fe2b62bcbf31dcc558a +size 2300984 diff --git a/save_data/IMG_1277_detect_result.jpg b/save_data/IMG_1277_detect_result.jpg new file mode 100644 index 0000000..9a608b6 --- /dev/null +++ b/save_data/IMG_1277_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e08a07cf0d6b3e7448fc3422b8e46e06589db1e650cbdd13b0b844dba4d9ab4 +size 3429925 diff --git a/save_data/IMG_1278_detect_result.jpg b/save_data/IMG_1278_detect_result.jpg new file mode 100644 index 0000000..ba06c38 --- /dev/null +++ b/save_data/IMG_1278_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1266637ceb141f3fab2be1f6f5c6fb16b47a21cf4dcc292de73c01a5df4de1 +size 2446270 diff --git a/save_data/IMG_1279_detect_result.jpg b/save_data/IMG_1279_detect_result.jpg new file mode 100644 index 0000000..7186e67 --- /dev/null +++ b/save_data/IMG_1279_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ffd3dcd4829cfb649218da32066a95e7fbdf763e62fe658bfbeada47f2f68a +size 2162741 diff --git a/save_data/IMG_1280_detect_result.jpg b/save_data/IMG_1280_detect_result.jpg new file mode 100644 index 0000000..3f1edc8 --- /dev/null +++ b/save_data/IMG_1280_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf61b77fc29c0e6af038007c83963d17ca5a09093da817e0f5b4bebe9348bce +size 2616057 diff --git a/save_data/IMG_1281_detect_result.jpg b/save_data/IMG_1281_detect_result.jpg new file mode 100644 index 0000000..1df017e --- /dev/null +++ b/save_data/IMG_1281_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c860d0e8815d23473fa380dcf2150b2b72470311cc5e6f1ee600584e1f2ab83 +size 2882571 diff --git a/save_data/IMG_1282_detect_result.jpg b/save_data/IMG_1282_detect_result.jpg new file mode 100644 index 0000000..ade1f2b --- /dev/null +++ b/save_data/IMG_1282_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c271371fe7dc5917e5b50b1ab6ea036b9ff26110e523c1f176053643e204ae58 +size 2543793 diff --git a/save_data/IMG_1283_detect_result.jpg b/save_data/IMG_1283_detect_result.jpg new file mode 100644 index 0000000..11c9942 --- /dev/null +++ b/save_data/IMG_1283_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed84e432bf9bfef37a67103c55580239eab72dd5a72ffaecd13ea2899cc8f29 +size 3109646 diff --git a/save_data/IMG_1284_detect_result.jpg b/save_data/IMG_1284_detect_result.jpg new file mode 100644 index 0000000..f6c74af --- /dev/null +++ b/save_data/IMG_1284_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3400ad7752abf64b0698a68bab4de46ea8e574b518d5486a7412aa180ecb8ae1 +size 2578254 diff --git a/save_data/IMG_1285_detect_result.jpg b/save_data/IMG_1285_detect_result.jpg new file mode 100644 index 0000000..5072457 --- /dev/null +++ b/save_data/IMG_1285_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54412bba8c484caf067b033212466815aa594a039c0154fcff48d327fc602d45 +size 2716424 diff --git a/save_data/IMG_1286_detect_result.jpg b/save_data/IMG_1286_detect_result.jpg new file mode 100644 index 0000000..12bfe8b --- /dev/null +++ b/save_data/IMG_1286_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c53f9850ac09ebc7cc2b7580675b3a9989ec4d0e8c295cfaaae6458cf77f730 +size 2679474 diff --git a/save_data/IMG_1287_detect_result.jpg b/save_data/IMG_1287_detect_result.jpg new file mode 100644 index 0000000..ff5100a --- /dev/null +++ b/save_data/IMG_1287_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d6d0effe451279f2879ba67be2853622f194f8f7997fece1aa42732a6f076f +size 2585906 diff --git a/save_data/IMG_1288_detect_result.jpg b/save_data/IMG_1288_detect_result.jpg new file mode 100644 index 0000000..3d30794 --- /dev/null +++ b/save_data/IMG_1288_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b6cf73f852a4773397685e188cfdabfb6bde17b0c5e8655245651c8e0800f5 +size 3206639 diff --git a/save_data/IMG_1289_detect_result.jpg b/save_data/IMG_1289_detect_result.jpg new file mode 100644 index 0000000..6d0a518 --- /dev/null +++ b/save_data/IMG_1289_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e282a3f88d4b87c695e6d09edb8a10d79584611b070c11f436588570fa2e5dbb +size 2514029 diff --git a/save_data/IMG_1290_detect_result.jpg b/save_data/IMG_1290_detect_result.jpg new file mode 100644 index 0000000..85a5348 --- /dev/null +++ b/save_data/IMG_1290_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25ed4ee8f3d7a5232da14ba5d3f56f5158080d01d8e05a8120ff213397cd060 +size 2621864 diff --git a/save_data/IMG_1291_detect_result.jpg b/save_data/IMG_1291_detect_result.jpg new file mode 100644 index 0000000..f120522 --- /dev/null +++ b/save_data/IMG_1291_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7053b44af346dbcf929202dfad6c5f42df1ef54353ff16a7430cff1ee528f7 +size 2612631 diff --git a/save_data/IMG_1292_detect_result.jpg b/save_data/IMG_1292_detect_result.jpg new file mode 100644 index 0000000..31dcba8 --- /dev/null +++ b/save_data/IMG_1292_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea6dd5ad0a29904d8079f8b99f22d8ebf8f7383264ce3f6cc47f6a068997aff +size 3105458 diff --git a/save_data/IMG_1293_detect_result.jpg b/save_data/IMG_1293_detect_result.jpg new file mode 100644 index 0000000..c5813e7 --- /dev/null +++ b/save_data/IMG_1293_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33014f9cdb9cfd5f07cafa060e42d9da3d9cabb5b1781a487541df47eb6ec22 +size 2363008 diff --git a/save_data/IMG_1294_detect_result.jpg b/save_data/IMG_1294_detect_result.jpg new file mode 100644 index 0000000..69bae0d --- /dev/null +++ b/save_data/IMG_1294_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1cafaad413fc2cab06469795dc327c60b39472b3ed320f62bdf51a5ce668bb3 +size 1880314 diff --git a/save_data/IMG_1295_detect_result.jpg b/save_data/IMG_1295_detect_result.jpg new file mode 100644 index 0000000..ecc9005 --- /dev/null +++ b/save_data/IMG_1295_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83573bc07411965542a476cd36d6e47f49e391551d075ef116f3da0d83296d33 +size 2087893 diff --git a/save_data/IMG_1296_detect_result.jpg b/save_data/IMG_1296_detect_result.jpg new file mode 100644 index 0000000..a5d693c --- /dev/null +++ b/save_data/IMG_1296_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df14da2d4693abcfb7282ac64d32517052f900c29e7824764a0b78656c3771c0 +size 3412259 diff --git a/save_data/IMG_1297_detect_result.jpg b/save_data/IMG_1297_detect_result.jpg new file mode 100644 index 0000000..ae8fcb5 --- /dev/null +++ b/save_data/IMG_1297_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bba6220761b1d75f9b6b24d999b1884a44b823670fa7b00d65e9402ddbb9956 +size 4200034 diff --git a/save_data/IMG_1298_detect_result.jpg b/save_data/IMG_1298_detect_result.jpg new file mode 100644 index 0000000..911851f --- /dev/null +++ b/save_data/IMG_1298_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8e83dd6c613ced2f027b4d4271693fbbb93b859705742c1f2c8437883d88177 +size 2665766 diff --git a/save_data/IMG_1299_detect_result.jpg b/save_data/IMG_1299_detect_result.jpg new file mode 100644 index 0000000..0824ad4 --- /dev/null +++ b/save_data/IMG_1299_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7020a96eec8f654bcc9bbbf92fc29c241ffe30b15f44507a3df24bbe4452acb8 +size 2763797 diff --git a/save_data/IMG_20191215_110441_detect_result.jpg b/save_data/IMG_20191215_110441_detect_result.jpg new file mode 100644 index 0000000..b07f0e2 --- /dev/null +++ b/save_data/IMG_20191215_110441_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb74fb669b97fe20c1d346035a2de1f349e7d9b9c75ce8f4d80f7935e2e281c +size 2933212 diff --git a/save_data/IMG_20191215_110446_detect_result.jpg b/save_data/IMG_20191215_110446_detect_result.jpg new file mode 100644 index 0000000..ec43651 --- /dev/null +++ b/save_data/IMG_20191215_110446_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdf7c70479bed1bd59e5475e51a6ccff3a75f19a0d6036d49a5bef72de03623 +size 2512426 diff --git a/save_data/IMG_20191215_110454_detect_result.jpg b/save_data/IMG_20191215_110454_detect_result.jpg new file mode 100644 index 0000000..aaacce3 --- /dev/null +++ b/save_data/IMG_20191215_110454_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e048574ffc67f901ccb6bb8104e382ddc0702b921050e5c0f03ce0c3a64ec5e +size 3047640 diff --git a/save_data/IMG_20191215_110502_detect_result.jpg b/save_data/IMG_20191215_110502_detect_result.jpg new file mode 100644 index 0000000..d9df246 --- /dev/null +++ b/save_data/IMG_20191215_110502_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6849f7084e6bedd61a9684001791059445751eca3ef9ce40e06c6dd9d4a76802 +size 2319543 diff --git a/save_data/IMG_20191215_110506_detect_result.jpg b/save_data/IMG_20191215_110506_detect_result.jpg new file mode 100644 index 0000000..ae20386 --- /dev/null +++ b/save_data/IMG_20191215_110506_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edbd6c8d646bf4f5c5812d0c51ac13357cff6578fe1b143ad894d0b28202b44 +size 2476846 diff --git a/save_data/IMG_20191215_110517_detect_result.jpg b/save_data/IMG_20191215_110517_detect_result.jpg new file mode 100644 index 0000000..4854057 --- /dev/null +++ b/save_data/IMG_20191215_110517_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6025865f81b2cfbfe2e99b2b244762497658b3bf25b662bac4e77b2e5a5dd2e5 +size 2094804 diff --git a/save_data/IMG_20191215_110524_detect_result.jpg b/save_data/IMG_20191215_110524_detect_result.jpg new file mode 100644 index 0000000..cc4df33 --- /dev/null +++ b/save_data/IMG_20191215_110524_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f76c4110979b6c94f16d1813330ce103d1f9bc635723cf6fe0279711dec86a +size 2586684 diff --git a/save_data/IMG_20191215_110527_detect_result.jpg b/save_data/IMG_20191215_110527_detect_result.jpg new file mode 100644 index 0000000..fa0018a --- /dev/null +++ b/save_data/IMG_20191215_110527_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f59b4742deea0dac6d306403652d8a54efb4b5dbdc1bac13658f9d86640f1ae2 +size 2894480 diff --git a/save_data/IMG_20191215_110530_detect_result.jpg b/save_data/IMG_20191215_110530_detect_result.jpg new file mode 100644 index 0000000..2cb457f --- /dev/null +++ b/save_data/IMG_20191215_110530_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7b1d640962faac0695d8b9a8595ea9c6f342d9a89ccef36e1d1247646b68bb +size 2731569 diff --git a/save_data/IMG_20191215_110534_detect_result.jpg b/save_data/IMG_20191215_110534_detect_result.jpg new file mode 100644 index 0000000..902c127 --- /dev/null +++ b/save_data/IMG_20191215_110534_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06690372b9aed914f226e9348883fda007b17f7249d86cad0f756df39a8dacd0 +size 2047496 diff --git a/save_data/IMG_20191215_110541_detect_result.jpg b/save_data/IMG_20191215_110541_detect_result.jpg new file mode 100644 index 0000000..66d4243 --- /dev/null +++ b/save_data/IMG_20191215_110541_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6592d7ea310ee39b8a62ce608f12fe49793f63f389d8770466f2a2c09cec1f +size 2807332 diff --git a/save_data/IMG_20191215_110545_detect_result.jpg b/save_data/IMG_20191215_110545_detect_result.jpg new file mode 100644 index 0000000..da8e3ed --- /dev/null +++ b/save_data/IMG_20191215_110545_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae51b86c8f5cfa9f0be4d91b63e2c7eaeb5082859bbd32bae3e45c5db5cf18c2 +size 2546024 diff --git a/save_data/IMG_20191215_110550_detect_result.jpg b/save_data/IMG_20191215_110550_detect_result.jpg new file mode 100644 index 0000000..9de9512 --- /dev/null +++ b/save_data/IMG_20191215_110550_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50622b27cd14fad1a0723fbfc9b04de19f68bf5aa2a3c71de24e5c2ed21d24b2 +size 2482282 diff --git a/save_data/IMG_20191215_110556_detect_result.jpg b/save_data/IMG_20191215_110556_detect_result.jpg new file mode 100644 index 0000000..ca96493 --- /dev/null +++ b/save_data/IMG_20191215_110556_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4acb6b3afbd1863e3e729433924a5cdbdee711be7a1fadeb1dd8ad5a259063f8 +size 2318385 diff --git a/save_data/IMG_20191215_110600_detect_result.jpg b/save_data/IMG_20191215_110600_detect_result.jpg new file mode 100644 index 0000000..a204482 --- /dev/null +++ b/save_data/IMG_20191215_110600_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432c57d8ec2e0edb19e290e5bf3e45eab13c026f5b52c322035a9d650917a0bc +size 2703988 diff --git a/save_data/IMG_20191215_110604_detect_result.jpg b/save_data/IMG_20191215_110604_detect_result.jpg new file mode 100644 index 0000000..6cf86b7 --- /dev/null +++ b/save_data/IMG_20191215_110604_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7406366dc8b12f00c2c99e1d563a1b99c3890bd5dc5f9c65b636c777f9900b +size 2749594 diff --git a/save_data/IMG_20191215_110612_detect_result.jpg b/save_data/IMG_20191215_110612_detect_result.jpg new file mode 100644 index 0000000..0a46cc2 --- /dev/null +++ b/save_data/IMG_20191215_110612_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9b27084cb73c2efc15d2a772c01e3de38c7834e1be2beb2f5cfda940476fcc +size 2500479 diff --git a/save_data/IMG_20191215_110616_detect_result.jpg b/save_data/IMG_20191215_110616_detect_result.jpg new file mode 100644 index 0000000..18bed3b --- /dev/null +++ b/save_data/IMG_20191215_110616_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f227fb4de7fc62f2c0df031d6dc9bc876b8ef9e39c2d8477a3b68607d53fd2d6 +size 2732665 diff --git a/save_data/IMG_20191215_110622_detect_result.jpg b/save_data/IMG_20191215_110622_detect_result.jpg new file mode 100644 index 0000000..89d447a --- /dev/null +++ b/save_data/IMG_20191215_110622_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e260edabdc8d7c8a8cc20d4bea0bdc3df3e0e3f1c2c486389419ded05a227ba4 +size 2520923 diff --git a/save_data/IMG_20191215_110626_detect_result.jpg b/save_data/IMG_20191215_110626_detect_result.jpg new file mode 100644 index 0000000..d6b0d8f --- /dev/null +++ b/save_data/IMG_20191215_110626_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf7f1814a8fb466392dc44e1b7d1c6f12ac98f9d1660086f5897f05fa38f4ce +size 2976132 diff --git a/save_data/IMG_20191215_110629_detect_result.jpg b/save_data/IMG_20191215_110629_detect_result.jpg new file mode 100644 index 0000000..efddd77 --- /dev/null +++ b/save_data/IMG_20191215_110629_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e43aa0c2008bb395ffdf2ae4aeffa60cfdfcd812cc56da5f9d2a09805945ea +size 2730659 diff --git a/save_data/IMG_20191215_110636_detect_result.jpg b/save_data/IMG_20191215_110636_detect_result.jpg new file mode 100644 index 0000000..562b089 --- /dev/null +++ b/save_data/IMG_20191215_110636_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593273942b29672c72f55ce37f850bfe6cc6351d6c09f66546ddc5c528a79a85 +size 1899897 diff --git a/save_data/IMG_20191215_110638_detect_result.jpg b/save_data/IMG_20191215_110638_detect_result.jpg new file mode 100644 index 0000000..c6caf8c --- /dev/null +++ b/save_data/IMG_20191215_110638_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb78864aa3cfffb9e261673c2c91eb17df750d0e94561001b153fc4b6f771846 +size 1900324 diff --git a/save_data/IMG_20191215_110643_detect_result.jpg b/save_data/IMG_20191215_110643_detect_result.jpg new file mode 100644 index 0000000..715ed28 --- /dev/null +++ b/save_data/IMG_20191215_110643_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f64695a371dacb286a7fe1c08f57fe72d4df887cf78dfd64cc0d9a6af465bc +size 1871104 diff --git a/save_data/IMG_20191215_110645_detect_result.jpg b/save_data/IMG_20191215_110645_detect_result.jpg new file mode 100644 index 0000000..00ef144 --- /dev/null +++ b/save_data/IMG_20191215_110645_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6014b740154331150dd67ff3108ee7e1ab95ed1cc5f07686bd8a956413b707 +size 1865099 diff --git a/save_data/IMG_20191215_110647_detect_result.jpg b/save_data/IMG_20191215_110647_detect_result.jpg new file mode 100644 index 0000000..0f03d2c --- /dev/null +++ b/save_data/IMG_20191215_110647_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e385cad6d775d8c2490134de65b082cff9be85c9b61c7ba789cb0118771549e +size 2292747 diff --git a/save_data/IMG_20191215_110649_detect_result.jpg b/save_data/IMG_20191215_110649_detect_result.jpg new file mode 100644 index 0000000..ae86991 --- /dev/null +++ b/save_data/IMG_20191215_110649_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3c34f8ff91cd67f5059d564065ad9fa711d5df259ca090af186a4809a159c8 +size 1843699 diff --git a/save_data/IMG_20191215_110651_detect_result.jpg b/save_data/IMG_20191215_110651_detect_result.jpg new file mode 100644 index 0000000..3f37fe8 --- /dev/null +++ b/save_data/IMG_20191215_110651_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf2aef295540f3c0681c3b7e342b7e40c87a7cbb033dc4d0d91603c7452d72d +size 2483829 diff --git a/save_data/IMG_20191215_110654_detect_result.jpg b/save_data/IMG_20191215_110654_detect_result.jpg new file mode 100644 index 0000000..13039f5 --- /dev/null +++ b/save_data/IMG_20191215_110654_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bcfe5a18d5e9fa047759f8f0af79f21c34e4096756a47bc3622e8ac42a5b8a +size 1608052 diff --git a/save_data/IMG_20191215_110658_detect_result.jpg b/save_data/IMG_20191215_110658_detect_result.jpg new file mode 100644 index 0000000..ecaff8d --- /dev/null +++ b/save_data/IMG_20191215_110658_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425d6d13499cbbc11bd08097aa326d88bfcc6a0f11a94be649eccace987147f1 +size 2619231 diff --git a/save_data/IMG_20191215_110702_detect_result.jpg b/save_data/IMG_20191215_110702_detect_result.jpg new file mode 100644 index 0000000..f499fc9 --- /dev/null +++ b/save_data/IMG_20191215_110702_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24afba0729d23b5433d400523b34f1aae82efcf523696534c127efe37fc20b1b +size 2302463 diff --git a/save_data/IMG_20191215_110705_detect_result.jpg b/save_data/IMG_20191215_110705_detect_result.jpg new file mode 100644 index 0000000..32b02da --- /dev/null +++ b/save_data/IMG_20191215_110705_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b29d37d587b515d30a993f4390f8271debd16c34797cc9cd76efea4b97fcae1 +size 1816178 diff --git a/save_data/IMG_20191215_110708_detect_result.jpg b/save_data/IMG_20191215_110708_detect_result.jpg new file mode 100644 index 0000000..82a1bc7 --- /dev/null +++ b/save_data/IMG_20191215_110708_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925ccbe1c5ca3f1b5e1fd1793cdc1592c322c2911ef5469dcb4b2fe545dbb30f +size 1665911 diff --git a/save_data/IMG_20191215_110711_detect_result.jpg b/save_data/IMG_20191215_110711_detect_result.jpg new file mode 100644 index 0000000..31c8466 --- /dev/null +++ b/save_data/IMG_20191215_110711_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c69eed4cc2f22ec07ebc24b67ac47d4c26f1af3b79f77676ed30be0896e677 +size 2044208 diff --git a/save_data/IMG_20191215_110716_detect_result.jpg b/save_data/IMG_20191215_110716_detect_result.jpg new file mode 100644 index 0000000..2032da8 --- /dev/null +++ b/save_data/IMG_20191215_110716_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5b916cfeedaf2fc5635997d020cb25bd98f877c48a1c4924216ed3cc2db1b3 +size 2486502 diff --git a/save_data/IMG_20191215_110717_detect_result.jpg b/save_data/IMG_20191215_110717_detect_result.jpg new file mode 100644 index 0000000..e22e0b8 --- /dev/null +++ b/save_data/IMG_20191215_110717_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7ba7cd7d79effff868864efb30a6ad1235625b228c171f0dffeaa1d65ae5cf +size 2388440 diff --git a/save_data/IMG_20191215_110719_detect_result.jpg b/save_data/IMG_20191215_110719_detect_result.jpg new file mode 100644 index 0000000..80a57d4 --- /dev/null +++ b/save_data/IMG_20191215_110719_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55f6b64188568f8321989f71a2a4b61fa8b04ceab3eafa1f4b85777bbf75ee6 +size 1821954 diff --git a/save_data/IMG_20191215_110724_detect_result.jpg b/save_data/IMG_20191215_110724_detect_result.jpg new file mode 100644 index 0000000..46b30f4 --- /dev/null +++ b/save_data/IMG_20191215_110724_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470f6107b80af4579cc2004678b4c169479938d9e18d88f713659b25d9b4cd4a +size 2171342 diff --git a/save_data/IMG_20191215_110728_detect_result.jpg b/save_data/IMG_20191215_110728_detect_result.jpg new file mode 100644 index 0000000..393bac2 --- /dev/null +++ b/save_data/IMG_20191215_110728_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680616782306b1e2c260d4338cab52b6aa4d9cff1123092101494d7885dd630f +size 2119201 diff --git a/save_data/IMG_20191215_110730_detect_result.jpg b/save_data/IMG_20191215_110730_detect_result.jpg new file mode 100644 index 0000000..4d9d8d3 --- /dev/null +++ b/save_data/IMG_20191215_110730_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642b1a17ece15e7d4235ebdb3c389691b79bc322a63afc4e470e24b9ade0dabb +size 1769861 diff --git a/save_data/IMG_20191215_110734_detect_result.jpg b/save_data/IMG_20191215_110734_detect_result.jpg new file mode 100644 index 0000000..9a78cfe --- /dev/null +++ b/save_data/IMG_20191215_110734_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9177da3cddcbea1878835f9fc103e87ccfbef746972c4a31398d4e89b8dbffc5 +size 2334933 diff --git a/save_data/IMG_20191215_110736_detect_result.jpg b/save_data/IMG_20191215_110736_detect_result.jpg new file mode 100644 index 0000000..a0a815e --- /dev/null +++ b/save_data/IMG_20191215_110736_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6f900793f5b57f2e940c60974d03bf4c6930e947678c5e6cb258ce241927ca +size 2532543 diff --git a/save_data/IMG_20191215_110740_detect_result.jpg b/save_data/IMG_20191215_110740_detect_result.jpg new file mode 100644 index 0000000..50a8274 --- /dev/null +++ b/save_data/IMG_20191215_110740_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2bb8a2b618b2f8c937034a125042a68d835b99dd5eea0997b85cf4abf9433e6 +size 2192748 diff --git a/save_data/IMG_20191215_110743_detect_result.jpg b/save_data/IMG_20191215_110743_detect_result.jpg new file mode 100644 index 0000000..a85f053 --- /dev/null +++ b/save_data/IMG_20191215_110743_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10983bc869718afac897b7e69e42c010b08e428351830cf5c26b71564777211c +size 3326421 diff --git a/save_data/IMG_20191215_110747_detect_result.jpg b/save_data/IMG_20191215_110747_detect_result.jpg new file mode 100644 index 0000000..3aa1ab8 --- /dev/null +++ b/save_data/IMG_20191215_110747_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860a74b052c4fb3b501f02941e26cc42e525b371989eb5cbb30c1b2e02573105 +size 2234900 diff --git a/save_data/IMG_20191215_110751_detect_result.jpg b/save_data/IMG_20191215_110751_detect_result.jpg new file mode 100644 index 0000000..17ebddf --- /dev/null +++ b/save_data/IMG_20191215_110751_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a846221b51fef8a4f536154e7707e47fea646806d8182111ac973b341869fb9c +size 1784118 diff --git a/save_data/IMG_20191215_110752_detect_result.jpg b/save_data/IMG_20191215_110752_detect_result.jpg new file mode 100644 index 0000000..b32fae8 --- /dev/null +++ b/save_data/IMG_20191215_110752_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f1121ce7f42cfdc6ece24e46168e489e953241bb2b82f7d086238fbc7d45de +size 1922404 diff --git a/save_data/IMG_20191215_110755_detect_result.jpg b/save_data/IMG_20191215_110755_detect_result.jpg new file mode 100644 index 0000000..106c31d --- /dev/null +++ b/save_data/IMG_20191215_110755_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0bf819a61be3af532c4587bf43b078c5e3f656b6d6433e1e74f95f73011058 +size 2252029 diff --git a/save_data/IMG_20191215_110758_detect_result.jpg b/save_data/IMG_20191215_110758_detect_result.jpg new file mode 100644 index 0000000..d626b54 --- /dev/null +++ b/save_data/IMG_20191215_110758_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51b8f7fca91f586ddbd87c8f0236e4739a135d03e7e5ff745fbccdcd499fd7f5 +size 1646760 diff --git a/save_data/IMG_20191215_110806_detect_result.jpg b/save_data/IMG_20191215_110806_detect_result.jpg new file mode 100644 index 0000000..d6ca494 --- /dev/null +++ b/save_data/IMG_20191215_110806_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e982b004e978d1cc689755e1ffe623d320cc1c4bfab78bdb996a0d9caa3335 +size 2093989 diff --git a/save_data/IMG_20191215_110809_detect_result.jpg b/save_data/IMG_20191215_110809_detect_result.jpg new file mode 100644 index 0000000..bd73e2a --- /dev/null +++ b/save_data/IMG_20191215_110809_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e183ee9dd86fe85ec848f73ef2471441c4ff43fe0370e498a549ba2e1a45e01 +size 1908625 diff --git a/save_data/IMG_20191215_110812_detect_result.jpg b/save_data/IMG_20191215_110812_detect_result.jpg new file mode 100644 index 0000000..a0ccb0c --- /dev/null +++ b/save_data/IMG_20191215_110812_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ffc21afccb5dd8dd1a49a6ba3b39bcfab14fe57c0c9859812f9066ffb53b34 +size 2298918 diff --git a/save_data/IMG_20191215_110813_detect_result.jpg b/save_data/IMG_20191215_110813_detect_result.jpg new file mode 100644 index 0000000..e9e4894 --- /dev/null +++ b/save_data/IMG_20191215_110813_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf7c9587cd0c9bd4bced1c35a8ac842632e07d9f40bf82699aff81bbb2bd5d1 +size 1886775 diff --git a/save_data/IMG_20191215_110815_detect_result.jpg b/save_data/IMG_20191215_110815_detect_result.jpg new file mode 100644 index 0000000..955b8c0 --- /dev/null +++ b/save_data/IMG_20191215_110815_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ee16e7c719897541ca0c59c2463db33642d6c112abbee246514767100bb4fb +size 2367573 diff --git a/save_data/IMG_20191215_110817_detect_result.jpg b/save_data/IMG_20191215_110817_detect_result.jpg new file mode 100644 index 0000000..141ce00 --- /dev/null +++ b/save_data/IMG_20191215_110817_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627514d545a553acb18fa1ca2b8c1ff73428577c3970ed37769d378e4d125f35 +size 1719180 diff --git a/save_data/IMG_20191215_110820_detect_result.jpg b/save_data/IMG_20191215_110820_detect_result.jpg new file mode 100644 index 0000000..203cc90 --- /dev/null +++ b/save_data/IMG_20191215_110820_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dab3c48eef1a8611cb88ae841a76214c8c0bce057472d3cf376ac87802ace59 +size 2196233 diff --git a/save_data/IMG_20191215_110824_detect_result.jpg b/save_data/IMG_20191215_110824_detect_result.jpg new file mode 100644 index 0000000..d5ec011 --- /dev/null +++ b/save_data/IMG_20191215_110824_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61326f5b2032b85ebe7c4c00a0941ca05178fdbd8c70b82f95e2b19706d3b121 +size 1979548 diff --git a/save_data/IMG_20191215_110829_detect_result.jpg b/save_data/IMG_20191215_110829_detect_result.jpg new file mode 100644 index 0000000..5b8dc4b --- /dev/null +++ b/save_data/IMG_20191215_110829_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5319636c8788303591b2a0defc86effc202e3f04804061980100117da2485d +size 2050416 diff --git a/save_data/IMG_20191215_110831_detect_result.jpg b/save_data/IMG_20191215_110831_detect_result.jpg new file mode 100644 index 0000000..fcf1b1b --- /dev/null +++ b/save_data/IMG_20191215_110831_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349d47d8ba28a0302eae16c9d5e7cd9c3c536c025430b940d1ae353fc1bb592d +size 1995344 diff --git a/save_data/IMG_20191215_110834_detect_result.jpg b/save_data/IMG_20191215_110834_detect_result.jpg new file mode 100644 index 0000000..2e0f49e --- /dev/null +++ b/save_data/IMG_20191215_110834_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e6e37d359a3f6d20a65b3c5fc08d382cc38a54096b39ad2e1b750f40a2c30f +size 2083183 diff --git a/save_data/IMG_20191215_110835_detect_result.jpg b/save_data/IMG_20191215_110835_detect_result.jpg new file mode 100644 index 0000000..7014224 --- /dev/null +++ b/save_data/IMG_20191215_110835_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56df4e230744b61149a42fd1e801f62b74d288dcdf9d6649e6291d4d8911428 +size 1995726 diff --git a/save_data/IMG_20191215_110838_detect_result.jpg b/save_data/IMG_20191215_110838_detect_result.jpg new file mode 100644 index 0000000..53eaf47 --- /dev/null +++ b/save_data/IMG_20191215_110838_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2c4ac0ab236d7b8463c54e156546b4eae3bc5aa3dcf00391d7869b0d84f65e +size 1895725 diff --git a/save_data/IMG_20191215_110842_detect_result.jpg b/save_data/IMG_20191215_110842_detect_result.jpg new file mode 100644 index 0000000..3b32a94 --- /dev/null +++ b/save_data/IMG_20191215_110842_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f34a7090ee120ee61fc8894148c26b2099151372ad07097cf50a025a8311c0 +size 1756485 diff --git a/save_data/IMG_20191215_110844_detect_result.jpg b/save_data/IMG_20191215_110844_detect_result.jpg new file mode 100644 index 0000000..773e31e --- /dev/null +++ b/save_data/IMG_20191215_110844_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b8ef0a06fc02a0d5007a672ccb3abc8a048fc1ed81ce6c60e58188b6823e7a +size 1666850 diff --git a/save_data/IMG_20191215_110847_detect_result.jpg b/save_data/IMG_20191215_110847_detect_result.jpg new file mode 100644 index 0000000..a427f33 --- /dev/null +++ b/save_data/IMG_20191215_110847_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f3c5fc8ef2ad0d90bfdc883819c42d49de0eae07c90897896c56e6de001fe8 +size 1868677 diff --git a/save_data/IMG_20191215_110850_detect_result.jpg b/save_data/IMG_20191215_110850_detect_result.jpg new file mode 100644 index 0000000..ff400b2 --- /dev/null +++ b/save_data/IMG_20191215_110850_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4e5eb699347ae2617e08db59bc933386c94a7655739cb0b5924197c7a6cc69 +size 2138340 diff --git a/save_data/IMG_20191215_110851_detect_result.jpg b/save_data/IMG_20191215_110851_detect_result.jpg new file mode 100644 index 0000000..a45d151 --- /dev/null +++ b/save_data/IMG_20191215_110851_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b607152e1e5a8169ff705662804030081d51c20dc519ffd3d59e4e56dd3db202 +size 2522840 diff --git a/save_data/IMG_20191215_110853_detect_result.jpg b/save_data/IMG_20191215_110853_detect_result.jpg new file mode 100644 index 0000000..62a4ae9 --- /dev/null +++ b/save_data/IMG_20191215_110853_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e115d864c4b1d4c6f88e80b93115e8a303fc27f1c6d593f487f4e044b92c3149 +size 1877349 diff --git a/save_data/IMG_20191215_110856_detect_result.jpg b/save_data/IMG_20191215_110856_detect_result.jpg new file mode 100644 index 0000000..3361266 --- /dev/null +++ b/save_data/IMG_20191215_110856_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a53f228de73d481f7043d9ff0a401971facfa9f4fb2bf87615ef9a1ea76a40b +size 1881460 diff --git a/save_data/IMG_20191215_110859_detect_result.jpg b/save_data/IMG_20191215_110859_detect_result.jpg new file mode 100644 index 0000000..a30da10 --- /dev/null +++ b/save_data/IMG_20191215_110859_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783932df67bed2de617f1ae1bedd6aa18d26af1bdeb1df519e5082ebd632823a +size 2473110 diff --git a/save_data/IMG_20191215_110901_detect_result.jpg b/save_data/IMG_20191215_110901_detect_result.jpg new file mode 100644 index 0000000..aa2e055 --- /dev/null +++ b/save_data/IMG_20191215_110901_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b77686614183e54f66d9f91ccffe6561b863190797cdd3bb138fd42b48878ae +size 1722329 diff --git a/save_data/IMG_20191215_110902_detect_result.jpg b/save_data/IMG_20191215_110902_detect_result.jpg new file mode 100644 index 0000000..9960d91 --- /dev/null +++ b/save_data/IMG_20191215_110902_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d982ce5da414c80f095b175c1f0ae7f7fc2cc0b9e63ace12cada619c99a1ab +size 1866811 diff --git a/save_data/IMG_20191215_110904_detect_result.jpg b/save_data/IMG_20191215_110904_detect_result.jpg new file mode 100644 index 0000000..bcecbc4 --- /dev/null +++ b/save_data/IMG_20191215_110904_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113f066013178e14b5123ddd1de67fa4a14ed82d44cae070c7f5bf8060b59aeb +size 2264831 diff --git a/save_data/IMG_20191215_110907_detect_result.jpg b/save_data/IMG_20191215_110907_detect_result.jpg new file mode 100644 index 0000000..9ad1186 --- /dev/null +++ b/save_data/IMG_20191215_110907_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae12e68acf1fc4f934e282bd80ea03665652a6b7ecc26d3e63afb92923e08dd0 +size 1469524 diff --git a/save_data/IMG_20191215_110910_detect_result.jpg b/save_data/IMG_20191215_110910_detect_result.jpg new file mode 100644 index 0000000..0348ee0 --- /dev/null +++ b/save_data/IMG_20191215_110910_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0010806f0a71ee10d42cd8c66b6051114de5c1f77ceba150ad04199f103eed62 +size 2025640 diff --git a/save_data/IMG_20191215_110911_detect_result.jpg b/save_data/IMG_20191215_110911_detect_result.jpg new file mode 100644 index 0000000..a2118d4 --- /dev/null +++ b/save_data/IMG_20191215_110911_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07cc37baca237b10f1b0a6abd1ea158203511ac7eb7ccb085bd104538c60460 +size 1892038 diff --git a/save_data/IMG_20191215_110913_detect_result.jpg b/save_data/IMG_20191215_110913_detect_result.jpg new file mode 100644 index 0000000..fcc21ed --- /dev/null +++ b/save_data/IMG_20191215_110913_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3551742e994fccbb97e5dbde4294ed280168d8152d4a33f14113cd6745a63005 +size 2621802 diff --git a/save_data/IMG_20191215_110918_detect_result.jpg b/save_data/IMG_20191215_110918_detect_result.jpg new file mode 100644 index 0000000..ff1fa8b --- /dev/null +++ b/save_data/IMG_20191215_110918_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f969b55fa2ae5d16f4e85883afabd9e792126aee00d28e6df4197a2267385d +size 2101462 diff --git a/save_data/IMG_20191215_110921_detect_result.jpg b/save_data/IMG_20191215_110921_detect_result.jpg new file mode 100644 index 0000000..9206cf6 --- /dev/null +++ b/save_data/IMG_20191215_110921_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c630e441896bbd601135154bf7b40165f142b6d1064b76621c8683aada086b +size 2446615 diff --git a/save_data/IMG_20191215_110926_detect_result.jpg b/save_data/IMG_20191215_110926_detect_result.jpg new file mode 100644 index 0000000..c48958d --- /dev/null +++ b/save_data/IMG_20191215_110926_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a1e97703a48a118bea5c9844b39ad76c0ba9a75cc000a4b697cc26a88c5568 +size 2117245 diff --git a/save_data/IMG_20191215_110929_detect_result.jpg b/save_data/IMG_20191215_110929_detect_result.jpg new file mode 100644 index 0000000..7bf820e --- /dev/null +++ b/save_data/IMG_20191215_110929_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2426c2dc5b6e85d201d951deb9459801af0e06f68ef4ee9e6c685ebff5ca19cc +size 1790397 diff --git a/save_data/IMG_20191215_110931_detect_result.jpg b/save_data/IMG_20191215_110931_detect_result.jpg new file mode 100644 index 0000000..b4d18d6 --- /dev/null +++ b/save_data/IMG_20191215_110931_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53eca2394c9136746a2b1fe2955e0c3026e65fe8b1f0c8a2f881e1ee33b002c +size 1769627 diff --git a/save_data/IMG_20191215_110935_detect_result.jpg b/save_data/IMG_20191215_110935_detect_result.jpg new file mode 100644 index 0000000..606e3bf --- /dev/null +++ b/save_data/IMG_20191215_110935_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f0e0f799d6367d4afe7baaa10ec073744e5fd9de23c05c67dc4e21d16b6019f +size 1950028 diff --git a/save_data/IMG_20191215_110937_detect_result.jpg b/save_data/IMG_20191215_110937_detect_result.jpg new file mode 100644 index 0000000..d6f6e5a --- /dev/null +++ b/save_data/IMG_20191215_110937_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d82390d6a03c881dac5f6e3d7cf91843d50fe89e0b54e7c40fa7c2f63cff3f08 +size 1541226 diff --git a/save_data/IMG_20191215_110941_detect_result.jpg b/save_data/IMG_20191215_110941_detect_result.jpg new file mode 100644 index 0000000..426652d --- /dev/null +++ b/save_data/IMG_20191215_110941_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f1ba1f084d1c4826ee44f35212210cbe0c73a7d5292e3f0734fac9f89a4da1 +size 2375597 diff --git a/save_data/IMG_20191215_110943_detect_result.jpg b/save_data/IMG_20191215_110943_detect_result.jpg new file mode 100644 index 0000000..dc8f031 --- /dev/null +++ b/save_data/IMG_20191215_110943_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d021f89767b88d214ca4c49b19799e82a5f61361aeed45cfa8083aa78752efdd +size 2319867 diff --git a/save_data/IMG_20191215_110946_detect_result.jpg b/save_data/IMG_20191215_110946_detect_result.jpg new file mode 100644 index 0000000..18bca99 --- /dev/null +++ b/save_data/IMG_20191215_110946_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab5e1230ad531a7ba524506f6e6d3fc18d6ca65b2a5a32bf88e233419bcc9a1 +size 2360214 diff --git a/save_data/IMG_20191215_110950_detect_result.jpg b/save_data/IMG_20191215_110950_detect_result.jpg new file mode 100644 index 0000000..be9d595 --- /dev/null +++ b/save_data/IMG_20191215_110950_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2d4ae98ff7d700ec41850240ba5679cd46b14b563277a109fbf3f59c11158b +size 1782411 diff --git a/save_data/IMG_20191215_110951_detect_result.jpg b/save_data/IMG_20191215_110951_detect_result.jpg new file mode 100644 index 0000000..52c665b --- /dev/null +++ b/save_data/IMG_20191215_110951_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:660155190ac0d2f3e1ab01aa4a4a85b0595cc592882c4a23a1b97b2d62cc6bd8 +size 1898763 diff --git a/save_data/IMG_20191215_110956_detect_result.jpg b/save_data/IMG_20191215_110956_detect_result.jpg new file mode 100644 index 0000000..a11e9f1 --- /dev/null +++ b/save_data/IMG_20191215_110956_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed3e0d6c94d4685871c15a09466eb30b834cc05f71de8243200eabbf6dcf5d5 +size 2185074 diff --git a/save_data/IMG_20191215_110958_detect_result.jpg b/save_data/IMG_20191215_110958_detect_result.jpg new file mode 100644 index 0000000..3f0ec1f --- /dev/null +++ b/save_data/IMG_20191215_110958_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d7cb574f399cdb9837b1641d522f568599bfd9994cf71e32a889f2224f8e905 +size 2138870 diff --git a/save_data/IMG_20191215_111006_detect_result.jpg b/save_data/IMG_20191215_111006_detect_result.jpg new file mode 100644 index 0000000..fbf6e46 --- /dev/null +++ b/save_data/IMG_20191215_111006_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896bc79bd55c0b31af9fcf5e4840d29e2782cbcebcec71fd9da70224f445e76d +size 2564717 diff --git a/save_data/IMG_20191215_111007_detect_result.jpg b/save_data/IMG_20191215_111007_detect_result.jpg new file mode 100644 index 0000000..0e97687 --- /dev/null +++ b/save_data/IMG_20191215_111007_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e667fecacdaf57e2c71c8bd44d003482d554490de3113ee4e46d893dd25bb43d +size 4203895 diff --git a/save_data/IMG_20191215_111011_detect_result.jpg b/save_data/IMG_20191215_111011_detect_result.jpg new file mode 100644 index 0000000..1df2d6b --- /dev/null +++ b/save_data/IMG_20191215_111011_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032a1837dee073bd590491bb2e7acf0241d26597ac08523f84eeef640ce4182d +size 2891574 diff --git a/save_data/IMG_20191215_111013_detect_result.jpg b/save_data/IMG_20191215_111013_detect_result.jpg new file mode 100644 index 0000000..75e70fa --- /dev/null +++ b/save_data/IMG_20191215_111013_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161421ae5691e43fc5ad1dee16a16790db420da6fe4ddc7334a406e77504991e +size 2883057 diff --git a/save_data/IMG_20191215_111017_detect_result.jpg b/save_data/IMG_20191215_111017_detect_result.jpg new file mode 100644 index 0000000..dedbcd7 --- /dev/null +++ b/save_data/IMG_20191215_111017_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae96f024d295f22981d428671b63e8360588276f200c8fd22543edd24a4850f +size 2744260 diff --git a/save_data/IMG_20191215_111041_detect_result.jpg b/save_data/IMG_20191215_111041_detect_result.jpg new file mode 100644 index 0000000..799ffc8 --- /dev/null +++ b/save_data/IMG_20191215_111041_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02387cc7da4ae46c843d87dbb8da5f239b72a0667f2a736e3cefffd1a66b8e7d +size 3098453 diff --git a/save_data/IMG_20191215_111044_detect_result.jpg b/save_data/IMG_20191215_111044_detect_result.jpg new file mode 100644 index 0000000..a3c4564 --- /dev/null +++ b/save_data/IMG_20191215_111044_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e393ebacdd41a9301ce026a0ea8f0405a9eee6686e437d1391898cfb5fa19b64 +size 2315313 diff --git a/save_data/IMG_20191215_111047_detect_result.jpg b/save_data/IMG_20191215_111047_detect_result.jpg new file mode 100644 index 0000000..2378dd5 --- /dev/null +++ b/save_data/IMG_20191215_111047_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f652f190511a1922b75bb6791ac6fecc6055828c0b18c4aaf7150bf4c8b1209 +size 2102046 diff --git a/save_data/IMG_20191215_111049_detect_result.jpg b/save_data/IMG_20191215_111049_detect_result.jpg new file mode 100644 index 0000000..cfd730d --- /dev/null +++ b/save_data/IMG_20191215_111049_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a2083817671bd36e52fd247422cb16848f1d42f4bc4652dcc2a02829d7f9ab +size 1781286 diff --git a/save_data/IMG_20191215_111051_detect_result.jpg b/save_data/IMG_20191215_111051_detect_result.jpg new file mode 100644 index 0000000..f425488 --- /dev/null +++ b/save_data/IMG_20191215_111051_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1154b1c619152bc2c0921102781f59842ce0ed96d7da9b8986c180e6de1fd635 +size 2316075 diff --git a/save_data/IMG_20191215_111055_detect_result.jpg b/save_data/IMG_20191215_111055_detect_result.jpg new file mode 100644 index 0000000..a3a30d9 --- /dev/null +++ b/save_data/IMG_20191215_111055_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c9a7e28132876631852ec9f2553cc6a5e2c961f86856957f2c2b656a11dbe5 +size 1821536 diff --git a/save_data/IMG_20191215_111059_detect_result.jpg b/save_data/IMG_20191215_111059_detect_result.jpg new file mode 100644 index 0000000..da56e1e --- /dev/null +++ b/save_data/IMG_20191215_111059_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6513567f6b6c9be7e3ea456ce7318934bacac33ccc2ace304ebb899e23871408 +size 2184768 diff --git a/save_data/IMG_20191215_111103_detect_result.jpg b/save_data/IMG_20191215_111103_detect_result.jpg new file mode 100644 index 0000000..d3dc550 --- /dev/null +++ b/save_data/IMG_20191215_111103_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede3ec9c596afac256a60de9cfd2764b6ae82826aec16303967c568b8e1a582d +size 1616400 diff --git a/save_data/IMG_20191215_111108_detect_result.jpg b/save_data/IMG_20191215_111108_detect_result.jpg new file mode 100644 index 0000000..79cbf9f --- /dev/null +++ b/save_data/IMG_20191215_111108_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ecfdc767c309b2dd89b2663cf45e0a4fb70079636bad18c1cf5350e05ec9fe +size 1815278 diff --git a/save_data/IMG_20191215_111110_detect_result.jpg b/save_data/IMG_20191215_111110_detect_result.jpg new file mode 100644 index 0000000..502b9ba --- /dev/null +++ b/save_data/IMG_20191215_111110_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c66b9f131f625fd886afe4b2e4495f1caa0ba4e654ff61960484acdf0a6aae +size 1989254 diff --git a/save_data/IMG_20191215_111114_detect_result.jpg b/save_data/IMG_20191215_111114_detect_result.jpg new file mode 100644 index 0000000..f9434ba --- /dev/null +++ b/save_data/IMG_20191215_111114_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994fe73e41143ee65ed77de597a0262263f2613bbf29849a28b7f4730ad41c4c +size 2261202 diff --git a/save_data/IMG_20191215_111116_detect_result.jpg b/save_data/IMG_20191215_111116_detect_result.jpg new file mode 100644 index 0000000..f9c49d6 --- /dev/null +++ b/save_data/IMG_20191215_111116_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b94f5800ebb7610951dda516f6a134e7a6152b14313cc37324fe1cb6ab29e4 +size 2283416 diff --git a/save_data/IMG_20191215_111119_detect_result.jpg b/save_data/IMG_20191215_111119_detect_result.jpg new file mode 100644 index 0000000..5e2ae2b --- /dev/null +++ b/save_data/IMG_20191215_111119_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b631d05af2328bd39b0f52c9c9563a91cf4066d3d964e14d3b93867c79d7e3d +size 2073995 diff --git a/save_data/IMG_20191215_111121_detect_result.jpg b/save_data/IMG_20191215_111121_detect_result.jpg new file mode 100644 index 0000000..d7d054a --- /dev/null +++ b/save_data/IMG_20191215_111121_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df91f207ec52c4f642ee37049787dcd59a740ac2353624fcd11f6614db8e6cc7 +size 2302978 diff --git a/save_data/IMG_20191215_111126_detect_result.jpg b/save_data/IMG_20191215_111126_detect_result.jpg new file mode 100644 index 0000000..89d3898 --- /dev/null +++ b/save_data/IMG_20191215_111126_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4012fa83ed407f2423f31fc89d2803ad25b264751dab4ee598229a2e3088467b +size 2401599 diff --git a/save_data/IMG_20191215_111133_detect_result.jpg b/save_data/IMG_20191215_111133_detect_result.jpg new file mode 100644 index 0000000..a7ad902 --- /dev/null +++ b/save_data/IMG_20191215_111133_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347056ee8f357e3526843188677600bc8c564c669a251cde8e71e941908abac3 +size 2572365 diff --git a/save_data/IMG_20191215_111137_detect_result.jpg b/save_data/IMG_20191215_111137_detect_result.jpg new file mode 100644 index 0000000..ca6a08c --- /dev/null +++ b/save_data/IMG_20191215_111137_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a940e4492bac8cbaeda26f8e6f1371ec029bcaa028e0b5435a168e9ee5e2db +size 2292214 diff --git a/save_data/IMG_20191215_111143_detect_result.jpg b/save_data/IMG_20191215_111143_detect_result.jpg new file mode 100644 index 0000000..815d2a0 --- /dev/null +++ b/save_data/IMG_20191215_111143_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1bc8fa386c10f3fc0ed37bd5d7abb2132d52e8f659669371cd245cf4fa66e0 +size 1930361 diff --git a/save_data/IMG_20191215_111144_detect_result.jpg b/save_data/IMG_20191215_111144_detect_result.jpg new file mode 100644 index 0000000..cdf2029 --- /dev/null +++ b/save_data/IMG_20191215_111144_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0631caecb13f8fe984a3cf5d228784df2ec2e41b4ec91de8281d6ca06718ac94 +size 1732320 diff --git a/save_data/IMG_20191215_111146_detect_result.jpg b/save_data/IMG_20191215_111146_detect_result.jpg new file mode 100644 index 0000000..6d06f05 --- /dev/null +++ b/save_data/IMG_20191215_111146_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8557b6ac04efb0eb4087992e47e2e58c4912c61193c4d1948aba6b9da6251f +size 1632286 diff --git a/save_data/IMG_20191215_111149_detect_result.jpg b/save_data/IMG_20191215_111149_detect_result.jpg new file mode 100644 index 0000000..f9e7290 --- /dev/null +++ b/save_data/IMG_20191215_111149_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21318b702ce7a9e7f08b492e2013f19c918e6f372e1038e95579a800cff00cb2 +size 1778296 diff --git a/save_data/IMG_20191215_111152_detect_result.jpg b/save_data/IMG_20191215_111152_detect_result.jpg new file mode 100644 index 0000000..01c500a --- /dev/null +++ b/save_data/IMG_20191215_111152_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d9a608146b7b2d14dc526b1991afb78ec9c840fc999eb3392440e010646a90 +size 2265383 diff --git a/save_data/IMG_20191215_111154_detect_result.jpg b/save_data/IMG_20191215_111154_detect_result.jpg new file mode 100644 index 0000000..b5ef915 --- /dev/null +++ b/save_data/IMG_20191215_111154_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5bbb8872368f8e5a8f525b3f5b19a53e036ba5788c17d21a8d2d80e1f4d7de +size 1692834 diff --git a/save_data/IMG_20191215_111157_detect_result.jpg b/save_data/IMG_20191215_111157_detect_result.jpg new file mode 100644 index 0000000..12e47c5 --- /dev/null +++ b/save_data/IMG_20191215_111157_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b4ede4b494e4cd0ef482758f578ba63b1073f2deffb05da7cc5774ded21a68 +size 2011614 diff --git a/save_data/IMG_20191215_111200_detect_result.jpg b/save_data/IMG_20191215_111200_detect_result.jpg new file mode 100644 index 0000000..a662869 --- /dev/null +++ b/save_data/IMG_20191215_111200_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8c361743e8e941afb07779b878f5c1c4e4af4027d5fc4afa275848ca5e4c8c +size 1884876 diff --git a/save_data/IMG_20191215_111202_detect_result.jpg b/save_data/IMG_20191215_111202_detect_result.jpg new file mode 100644 index 0000000..fa998b5 --- /dev/null +++ b/save_data/IMG_20191215_111202_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47f386f8823d43461154e5e55238e37d7a30d8eb4873e41a4feb167228cc201 +size 2140110 diff --git a/save_data/IMG_20191215_111204_detect_result.jpg b/save_data/IMG_20191215_111204_detect_result.jpg new file mode 100644 index 0000000..507cd42 --- /dev/null +++ b/save_data/IMG_20191215_111204_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15148350bf8a8097d09c1076f6dee460b43710ad2a86f2b25440e0174899e668 +size 2002771 diff --git a/save_data/IMG_20191215_111206_detect_result.jpg b/save_data/IMG_20191215_111206_detect_result.jpg new file mode 100644 index 0000000..bd72ea3 --- /dev/null +++ b/save_data/IMG_20191215_111206_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8617e21bc65a83d18e6416d9722426268acb77b6e915da2bd5fcae098bf0c5 +size 1837714 diff --git a/save_data/IMG_20191215_111208_detect_result.jpg b/save_data/IMG_20191215_111208_detect_result.jpg new file mode 100644 index 0000000..7e8824d --- /dev/null +++ b/save_data/IMG_20191215_111208_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b46bf462ed561006d88be7d5554fc3c1afce22b53b982c806783e268d49d6af +size 1910827 diff --git a/save_data/IMG_20191215_111211_detect_result.jpg b/save_data/IMG_20191215_111211_detect_result.jpg new file mode 100644 index 0000000..20c75b0 --- /dev/null +++ b/save_data/IMG_20191215_111211_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defbc9eab9c1d7923ee8d7c540f2d893d25d9fad6c235fb81eaa1e74801f869a +size 2447708 diff --git a/save_data/IMG_20191215_111213_detect_result.jpg b/save_data/IMG_20191215_111213_detect_result.jpg new file mode 100644 index 0000000..222fa95 --- /dev/null +++ b/save_data/IMG_20191215_111213_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399b4896355be0a679d6a2e2b13dec807576ea95d83f4bec23438261ae312d72 +size 1915420 diff --git a/save_data/IMG_20191215_111215_detect_result.jpg b/save_data/IMG_20191215_111215_detect_result.jpg new file mode 100644 index 0000000..49b6ff7 --- /dev/null +++ b/save_data/IMG_20191215_111215_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273d269d6e22d62fdd1208296092c1272ae20ab9ef366ccbff522cf56ef784c8 +size 2119780 diff --git a/save_data/IMG_20191215_111216_detect_result.jpg b/save_data/IMG_20191215_111216_detect_result.jpg new file mode 100644 index 0000000..721b7ed --- /dev/null +++ b/save_data/IMG_20191215_111216_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6315d9a17f1030c85085994fb7b39a0a40baa53f482f0e69fa5429372f3e9f +size 1925881 diff --git a/save_data/IMG_20191215_111219_detect_result.jpg b/save_data/IMG_20191215_111219_detect_result.jpg new file mode 100644 index 0000000..7f0c0d6 --- /dev/null +++ b/save_data/IMG_20191215_111219_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c24369209448d5e70535547533a565459343cf6e887be9cdc44e766400ac1c +size 1720712 diff --git a/save_data/IMG_20191215_111222_detect_result.jpg b/save_data/IMG_20191215_111222_detect_result.jpg new file mode 100644 index 0000000..98519f2 --- /dev/null +++ b/save_data/IMG_20191215_111222_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e182215a955a9fb77509f5ad68de3af27e85c100ac967ca6cabfc6f21c91614 +size 2575495 diff --git a/save_data/IMG_20191215_111225_detect_result.jpg b/save_data/IMG_20191215_111225_detect_result.jpg new file mode 100644 index 0000000..675e66d --- /dev/null +++ b/save_data/IMG_20191215_111225_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551adc5191609649f22e99f0536572bc4ff2c24607e46038412497374292898a +size 2207632 diff --git a/save_data/IMG_20191215_111226_detect_result.jpg b/save_data/IMG_20191215_111226_detect_result.jpg new file mode 100644 index 0000000..daa1b72 --- /dev/null +++ b/save_data/IMG_20191215_111226_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d218be0e8a3d09e64df257389a6e5596ee14b407bbd96b4f4939d3bade483cfb +size 1757090 diff --git a/save_data/IMG_20191215_111228_detect_result.jpg b/save_data/IMG_20191215_111228_detect_result.jpg new file mode 100644 index 0000000..e1b73c3 --- /dev/null +++ b/save_data/IMG_20191215_111228_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360fec37fc0f8cb55bfbb1b99adf8e226c5b5659a1266543f69aad336a65b980 +size 1994011 diff --git a/save_data/IMG_20191215_111230_detect_result.jpg b/save_data/IMG_20191215_111230_detect_result.jpg new file mode 100644 index 0000000..21fac7c --- /dev/null +++ b/save_data/IMG_20191215_111230_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096decf0fb3f18e9b7dae548e46b05d8b4a068b415530a167cfe16b6c1cf99ed +size 1924423 diff --git a/save_data/IMG_20191215_111232_detect_result.jpg b/save_data/IMG_20191215_111232_detect_result.jpg new file mode 100644 index 0000000..3710e93 --- /dev/null +++ b/save_data/IMG_20191215_111232_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18464f137de1567de3ecdc057d9735350c11cf84ad18b2b77eee2f1bdaff3e55 +size 2347663 diff --git a/save_data/IMG_20191215_111234_detect_result.jpg b/save_data/IMG_20191215_111234_detect_result.jpg new file mode 100644 index 0000000..22f72b4 --- /dev/null +++ b/save_data/IMG_20191215_111234_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c87f18b5cb7b7f32075c3d8996e6b7b3ac0be289b4021a77e0b7014a0294f9d +size 1815010 diff --git a/save_data/IMG_20191215_111236_detect_result.jpg b/save_data/IMG_20191215_111236_detect_result.jpg new file mode 100644 index 0000000..6a41136 --- /dev/null +++ b/save_data/IMG_20191215_111236_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f46abb09e6a0e78bc7df980b8b156316076268ece7c89a8e8424a861ff00e21 +size 1619597 diff --git a/save_data/IMG_20191215_111237_detect_result.jpg b/save_data/IMG_20191215_111237_detect_result.jpg new file mode 100644 index 0000000..aede70b --- /dev/null +++ b/save_data/IMG_20191215_111237_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e8de04cd0a6a7cd222446977202f25b34620a8fcbb09694745bc09f2a6b7a3 +size 1741733 diff --git a/save_data/IMG_20191215_111239_detect_result.jpg b/save_data/IMG_20191215_111239_detect_result.jpg new file mode 100644 index 0000000..460ea7f --- /dev/null +++ b/save_data/IMG_20191215_111239_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c031330b47fb9d8b0034762af81c16b0cae4d3292aa3c3860b5d80c69780f744 +size 1665344 diff --git a/save_data/IMG_20191215_111241_detect_result.jpg b/save_data/IMG_20191215_111241_detect_result.jpg new file mode 100644 index 0000000..7838957 --- /dev/null +++ b/save_data/IMG_20191215_111241_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c097a1329d96ba1f2ec9b242120abeec8b670fea90476a826a8178f1a9560254 +size 2611697 diff --git a/save_data/IMG_20191215_111242_detect_result.jpg b/save_data/IMG_20191215_111242_detect_result.jpg new file mode 100644 index 0000000..b4b7649 --- /dev/null +++ b/save_data/IMG_20191215_111242_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b83007961e82aa91c880c41512cdf945578348925b26f16e91d9a05c098d4c +size 2390167 diff --git a/save_data/IMG_20191215_111245_detect_result.jpg b/save_data/IMG_20191215_111245_detect_result.jpg new file mode 100644 index 0000000..6750d1c --- /dev/null +++ b/save_data/IMG_20191215_111245_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69205b24e1996356d5e8a3711625de4e0fdbcdf101dc010c6e4efc80cc5817f2 +size 2214385 diff --git a/save_data/IMG_20191215_111248_detect_result.jpg b/save_data/IMG_20191215_111248_detect_result.jpg new file mode 100644 index 0000000..46ee6d0 --- /dev/null +++ b/save_data/IMG_20191215_111248_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffec8645c034ca8a8d2c080318d74dbad944411bece2f89b2081934d0a442806 +size 2238879 diff --git a/save_data/IMG_20191215_111250_detect_result.jpg b/save_data/IMG_20191215_111250_detect_result.jpg new file mode 100644 index 0000000..ef03a0c --- /dev/null +++ b/save_data/IMG_20191215_111250_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901ed050648fb533c5a12ade249cac86a7fbfece778f5d8334c593447fde8e72 +size 2670532 diff --git a/save_data/IMG_20191215_111252_detect_result.jpg b/save_data/IMG_20191215_111252_detect_result.jpg new file mode 100644 index 0000000..cd44d68 --- /dev/null +++ b/save_data/IMG_20191215_111252_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd75c34c2a16a79bdb81839f94e93d8538476a0bb6178fd5d4e73c2dc1ee653c +size 2118968 diff --git a/save_data/IMG_20191215_111254_detect_result.jpg b/save_data/IMG_20191215_111254_detect_result.jpg new file mode 100644 index 0000000..89ffba5 --- /dev/null +++ b/save_data/IMG_20191215_111254_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e541ed018d4cf16d0a2d0fe233691eb8a04a7da5fb5f0c5c6479dc8a14c8920c +size 2148201 diff --git a/save_data/IMG_20191215_111256_detect_result.jpg b/save_data/IMG_20191215_111256_detect_result.jpg new file mode 100644 index 0000000..8c8a53b --- /dev/null +++ b/save_data/IMG_20191215_111256_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a5c34fffd033ed3bd139116e59eecf908133a333b4842ec3639be2b1982dfe +size 1986646 diff --git a/save_data/IMG_20191215_111257_detect_result.jpg b/save_data/IMG_20191215_111257_detect_result.jpg new file mode 100644 index 0000000..7db65c0 --- /dev/null +++ b/save_data/IMG_20191215_111257_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd25aad4813d88ee403d96157a148e0126c87e3da06664e66e02d42718ab32a9 +size 2232162 diff --git a/save_data/IMG_20191215_111259_detect_result.jpg b/save_data/IMG_20191215_111259_detect_result.jpg new file mode 100644 index 0000000..80c9ee3 --- /dev/null +++ b/save_data/IMG_20191215_111259_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5de77268a0edb978f7df39447ee27531d4d82f4220ee1f6783b33174f12042 +size 1923439 diff --git a/save_data/IMG_20191215_111301_detect_result.jpg b/save_data/IMG_20191215_111301_detect_result.jpg new file mode 100644 index 0000000..218269a --- /dev/null +++ b/save_data/IMG_20191215_111301_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b0bdba62eb6c5cce4e5b8db5b87df87f28c6755e4bd30c048b99258669cd94 +size 1714519 diff --git a/save_data/IMG_20191215_111303_detect_result.jpg b/save_data/IMG_20191215_111303_detect_result.jpg new file mode 100644 index 0000000..f92ca7b --- /dev/null +++ b/save_data/IMG_20191215_111303_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2994f065035b98ff6c996b2adcf92e51731388d6c5d158e140ada9bfab174188 +size 1624098 diff --git a/save_data/IMG_20191215_111305_detect_result.jpg b/save_data/IMG_20191215_111305_detect_result.jpg new file mode 100644 index 0000000..21d5572 --- /dev/null +++ b/save_data/IMG_20191215_111305_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9484865937ae590d51ad5169e5f929f420eb2d82ae3bd53368d3198ee7731b +size 2503674 diff --git a/save_data/IMG_20191215_111307_detect_result.jpg b/save_data/IMG_20191215_111307_detect_result.jpg new file mode 100644 index 0000000..3aa347a --- /dev/null +++ b/save_data/IMG_20191215_111307_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e848ac311815c76c7adf219638a7afc0615a772156681b0faa33313533face4 +size 1687791 diff --git a/save_data/IMG_20191215_111308_detect_result.jpg b/save_data/IMG_20191215_111308_detect_result.jpg new file mode 100644 index 0000000..6f6c068 --- /dev/null +++ b/save_data/IMG_20191215_111308_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a60f1aef2458498b25b7f964455dc988ac7a038aeca03d01ca7a7ba61d6afd8 +size 1546034 diff --git a/save_data/IMG_20191215_111311_detect_result.jpg b/save_data/IMG_20191215_111311_detect_result.jpg new file mode 100644 index 0000000..1263bed --- /dev/null +++ b/save_data/IMG_20191215_111311_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b59b5726f73a9c8eb430f376db5f54c4f253b96bc3f82e0f7927b956679fc15 +size 1955933 diff --git a/save_data/IMG_20191215_111314_detect_result.jpg b/save_data/IMG_20191215_111314_detect_result.jpg new file mode 100644 index 0000000..01fbdde --- /dev/null +++ b/save_data/IMG_20191215_111314_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083ab5f595d80d2ed25323e5fb30767fa1874a67a9a923a9a49cdf459375ec43 +size 2461340 diff --git a/save_data/IMG_20191215_111316_detect_result.jpg b/save_data/IMG_20191215_111316_detect_result.jpg new file mode 100644 index 0000000..7267908 --- /dev/null +++ b/save_data/IMG_20191215_111316_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1e2e4e4877dbcfe38e11bdb7c477115ad468a489c57daeff73822e3fbcaea0 +size 2253057 diff --git a/save_data/IMG_20191215_111318_detect_result.jpg b/save_data/IMG_20191215_111318_detect_result.jpg new file mode 100644 index 0000000..8e630fa --- /dev/null +++ b/save_data/IMG_20191215_111318_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf6818e8f79f5f679eea9be2b414113f6a6d1f519eaed5f99e4f79332c69bf6 +size 1962520 diff --git a/save_data/IMG_20191215_111320_detect_result.jpg b/save_data/IMG_20191215_111320_detect_result.jpg new file mode 100644 index 0000000..51a89bc --- /dev/null +++ b/save_data/IMG_20191215_111320_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093e3b4a4604405af7aa3527020633dd3a535226b90c2617eba5670b043c4335 +size 2024471 diff --git a/save_data/IMG_20191215_111324_detect_result.jpg b/save_data/IMG_20191215_111324_detect_result.jpg new file mode 100644 index 0000000..9c9f080 --- /dev/null +++ b/save_data/IMG_20191215_111324_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7678f6485d335a80b82fe3c1d0f36d36ebcf2518f9a0951d8fff5d6c3185fd2b +size 2371860 diff --git a/save_data/IMG_20191215_111326_detect_result.jpg b/save_data/IMG_20191215_111326_detect_result.jpg new file mode 100644 index 0000000..ade371d --- /dev/null +++ b/save_data/IMG_20191215_111326_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a1c1dde7cb415a7fca808f70df9d0a5ac612a7edd2cadbcc1a4325a2393ca6 +size 2133778 diff --git a/save_data/IMG_20191215_111328_detect_result.jpg b/save_data/IMG_20191215_111328_detect_result.jpg new file mode 100644 index 0000000..b8907a2 --- /dev/null +++ b/save_data/IMG_20191215_111328_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5303ba36cd752ef8138ab878f0d237d7a678ba0f259c7cfcf065ffeb96e289bc +size 2190116 diff --git a/save_data/IMG_20191215_111329_detect_result.jpg b/save_data/IMG_20191215_111329_detect_result.jpg new file mode 100644 index 0000000..a562bc1 --- /dev/null +++ b/save_data/IMG_20191215_111329_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdefa30329774289ae498c4a1c2e9fb73b7aadeecd1dd38f061e53d74f46008 +size 2136909 diff --git a/save_data/IMG_20191215_111331_detect_result.jpg b/save_data/IMG_20191215_111331_detect_result.jpg new file mode 100644 index 0000000..c1085de --- /dev/null +++ b/save_data/IMG_20191215_111331_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd418346907a89853069fc1fad5d6849b52ddb30b59470444c8fa70dea1e3839 +size 2051313 diff --git a/save_data/IMG_20191215_111332_detect_result.jpg b/save_data/IMG_20191215_111332_detect_result.jpg new file mode 100644 index 0000000..8f33af9 --- /dev/null +++ b/save_data/IMG_20191215_111332_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edee2d3ba725528882f1b2468f3e4ceb4a2bfcd16d0e8faa29a48fa8b6084868 +size 2379316 diff --git a/save_data/IMG_20191215_111334_detect_result.jpg b/save_data/IMG_20191215_111334_detect_result.jpg new file mode 100644 index 0000000..7a37ee8 --- /dev/null +++ b/save_data/IMG_20191215_111334_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e849a8e9c202af04204dc80632e3426269d02824d4565b45ffbf97ddeb5782fb +size 1639374 diff --git a/save_data/IMG_20191215_111335_detect_result.jpg b/save_data/IMG_20191215_111335_detect_result.jpg new file mode 100644 index 0000000..378367a --- /dev/null +++ b/save_data/IMG_20191215_111335_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d839077e57c70de660863c50f50b52153a942e1e9a6dc7be3cb65314aa8fd85e +size 1692659 diff --git a/save_data/IMG_20191215_111336_detect_result.jpg b/save_data/IMG_20191215_111336_detect_result.jpg new file mode 100644 index 0000000..47bfd55 --- /dev/null +++ b/save_data/IMG_20191215_111336_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0e2f2fd84cc3ece5f190d8d5b2306339d2c1572625b999f14fadb44b869736 +size 1684271 diff --git a/save_data/IMG_20191215_111338_detect_result.jpg b/save_data/IMG_20191215_111338_detect_result.jpg new file mode 100644 index 0000000..9f05965 --- /dev/null +++ b/save_data/IMG_20191215_111338_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7efa95bb87c78d083ef4e4aefbff0ab762f58e8570a151d3ebacc2022067c70 +size 1478072 diff --git a/save_data/IMG_20191215_111341_detect_result.jpg b/save_data/IMG_20191215_111341_detect_result.jpg new file mode 100644 index 0000000..9a56977 --- /dev/null +++ b/save_data/IMG_20191215_111341_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ce79e400080b79202192b6f2cbca67f6193ca129689854873fc9e64c180969e +size 1933641 diff --git a/save_data/IMG_20191215_111342_detect_result.jpg b/save_data/IMG_20191215_111342_detect_result.jpg new file mode 100644 index 0000000..6491edd --- /dev/null +++ b/save_data/IMG_20191215_111342_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f375f5560ba988a2087440604b3a709cd49aac1f866b391f40bf99fbce3e8969 +size 1769310 diff --git a/save_data/IMG_20191215_111343_detect_result.jpg b/save_data/IMG_20191215_111343_detect_result.jpg new file mode 100644 index 0000000..2b33661 --- /dev/null +++ b/save_data/IMG_20191215_111343_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1e27f47b46a3748860ed9035e91b792cb81e4bab80b14cb90c9652073f00bd +size 2116525 diff --git a/save_data/IMG_20191215_111346_detect_result.jpg b/save_data/IMG_20191215_111346_detect_result.jpg new file mode 100644 index 0000000..826d645 --- /dev/null +++ b/save_data/IMG_20191215_111346_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f734142ae31c61bdb1fa78658b5b1856ec86ebc5447c0436d8e6a6af983804 +size 1593606 diff --git a/save_data/IMG_20191215_111348_detect_result.jpg b/save_data/IMG_20191215_111348_detect_result.jpg new file mode 100644 index 0000000..7148c16 --- /dev/null +++ b/save_data/IMG_20191215_111348_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e3ec1d34f0ed456239822fd0397eef4bd2132d8061c8268b1fcba27869d184 +size 2148252 diff --git a/save_data/IMG_20191215_111349_detect_result.jpg b/save_data/IMG_20191215_111349_detect_result.jpg new file mode 100644 index 0000000..02cbcff --- /dev/null +++ b/save_data/IMG_20191215_111349_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12dd0f460f0656d99333e00090adf830d4c494624d27babe7f0a2843e694d66c +size 2374235 diff --git a/save_data/IMG_20191215_111352_detect_result.jpg b/save_data/IMG_20191215_111352_detect_result.jpg new file mode 100644 index 0000000..336921a --- /dev/null +++ b/save_data/IMG_20191215_111352_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd99e85a359a90f80bdc14b6f0697cb77d7d857e853843f33ae5c7dc14e4de9 +size 2202183 diff --git a/save_data/IMG_20191215_111353_detect_result.jpg b/save_data/IMG_20191215_111353_detect_result.jpg new file mode 100644 index 0000000..25ff9b4 --- /dev/null +++ b/save_data/IMG_20191215_111353_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73313877aa88f7acde4f00fe0e52ab08dfcd4832b887a15afcff01a7df32f7b +size 2012689 diff --git a/save_data/IMG_20191215_111355_detect_result.jpg b/save_data/IMG_20191215_111355_detect_result.jpg new file mode 100644 index 0000000..99c0010 --- /dev/null +++ b/save_data/IMG_20191215_111355_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37097d7f51d3621e6603aa8d42c0221e8dddc0d037157f08865c697955cf1b5c +size 1619397 diff --git a/save_data/IMG_20191215_111356_detect_result.jpg b/save_data/IMG_20191215_111356_detect_result.jpg new file mode 100644 index 0000000..f5c785a --- /dev/null +++ b/save_data/IMG_20191215_111356_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fb914a12282bc16cf09406a7965fbeadccb3634644a3121c1ad8ab76b8b8674 +size 1952828 diff --git a/save_data/IMG_20191215_111357_1_detect_result.jpg b/save_data/IMG_20191215_111357_1_detect_result.jpg new file mode 100644 index 0000000..8432acc --- /dev/null +++ b/save_data/IMG_20191215_111357_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e908229189736acfe5517dc18138f689d38adb2b96fc374ac7b799214e12a04 +size 2055177 diff --git a/save_data/IMG_20191215_111357_detect_result.jpg b/save_data/IMG_20191215_111357_detect_result.jpg new file mode 100644 index 0000000..dd2738e --- /dev/null +++ b/save_data/IMG_20191215_111357_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fa8f87d0992c766b1253b38a1add2726980b703787d3e8af403197568b20ca +size 1688131 diff --git a/save_data/IMG_20191215_111359_detect_result.jpg b/save_data/IMG_20191215_111359_detect_result.jpg new file mode 100644 index 0000000..147b580 --- /dev/null +++ b/save_data/IMG_20191215_111359_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a987be583432bc4174c1b149e1f4e1e9241e1d58312a761b386c3eecda54ee +size 2173651 diff --git a/save_data/IMG_20191215_111400_detect_result.jpg b/save_data/IMG_20191215_111400_detect_result.jpg new file mode 100644 index 0000000..5cd2ac4 --- /dev/null +++ b/save_data/IMG_20191215_111400_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf32211aeffb7a4e38b7aa66df40a1f2bf46290246e42516c6b4c422382e041 +size 1772656 diff --git a/save_data/IMG_20191215_111401_detect_result.jpg b/save_data/IMG_20191215_111401_detect_result.jpg new file mode 100644 index 0000000..70474ca --- /dev/null +++ b/save_data/IMG_20191215_111401_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0e98b94a341836c9815d4beaf96b3efab238b1baaf05341677a2f23c596e4e +size 2199130 diff --git a/save_data/IMG_20191215_111402_detect_result.jpg b/save_data/IMG_20191215_111402_detect_result.jpg new file mode 100644 index 0000000..f35249c --- /dev/null +++ b/save_data/IMG_20191215_111402_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585605c7c2017976d4d82fd7ac4096612c2fb16ec751a5da12558c7b72400e1b +size 1818056 diff --git a/save_data/IMG_20191215_111403_detect_result.jpg b/save_data/IMG_20191215_111403_detect_result.jpg new file mode 100644 index 0000000..e63b914 --- /dev/null +++ b/save_data/IMG_20191215_111403_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894f5f80a9da2cf814f6a757e8bd542457e9801be4c235d17379cf08c4fa4d1a +size 1701803 diff --git a/save_data/IMG_20191215_111404_detect_result.jpg b/save_data/IMG_20191215_111404_detect_result.jpg new file mode 100644 index 0000000..f9ef56e --- /dev/null +++ b/save_data/IMG_20191215_111404_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3de6274be2f054a46b93778c8ff41e28370b1df9a4329694a246d6f3f1e012 +size 2266311 diff --git a/save_data/IMG_20191215_111405_detect_result.jpg b/save_data/IMG_20191215_111405_detect_result.jpg new file mode 100644 index 0000000..17135ed --- /dev/null +++ b/save_data/IMG_20191215_111405_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ca45ac3c7009a2ab5eac480fa9a24d473c711db2101cbe170b7c5e850a971a +size 1605164 diff --git a/save_data/IMG_20191215_111406_detect_result.jpg b/save_data/IMG_20191215_111406_detect_result.jpg new file mode 100644 index 0000000..b81bd27 --- /dev/null +++ b/save_data/IMG_20191215_111406_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfb9550bf0333d0ca4f059e30506ff73a2ef4cb34489198dd1c2a78e82bc4cb +size 1477354 diff --git a/save_data/IMG_20191215_111407_detect_result.jpg b/save_data/IMG_20191215_111407_detect_result.jpg new file mode 100644 index 0000000..d3bfee9 --- /dev/null +++ b/save_data/IMG_20191215_111407_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe0015376c10ada7aece0b285eecffd11ebed2f15c217e553608ef377ff13f9 +size 1929818 diff --git a/save_data/IMG_20191215_111409_detect_result.jpg b/save_data/IMG_20191215_111409_detect_result.jpg new file mode 100644 index 0000000..4b19fae --- /dev/null +++ b/save_data/IMG_20191215_111409_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bd6407534174cf491e234f16be4dac21f46c15258f5259f498006b03f9e67a +size 2340613 diff --git a/save_data/IMG_20191215_111410_1_detect_result.jpg b/save_data/IMG_20191215_111410_1_detect_result.jpg new file mode 100644 index 0000000..453fd27 --- /dev/null +++ b/save_data/IMG_20191215_111410_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bfe491ad52e5a5a319c1604b1187060ae20329b2dd82af3b180e02a82be1352 +size 1561666 diff --git a/save_data/IMG_20191215_111410_detect_result.jpg b/save_data/IMG_20191215_111410_detect_result.jpg new file mode 100644 index 0000000..083b141 --- /dev/null +++ b/save_data/IMG_20191215_111410_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea23c1493a093588e944ad78f9f0fd66e40d48cf292e2494794dc0d9bba0e9b +size 2334964 diff --git a/save_data/IMG_20191215_111412_detect_result.jpg b/save_data/IMG_20191215_111412_detect_result.jpg new file mode 100644 index 0000000..5a7df84 --- /dev/null +++ b/save_data/IMG_20191215_111412_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97fb9731d5e037f05e06a1ac3518429fba14375acd5448f674ffa1bfa0978a3 +size 2388729 diff --git a/save_data/IMG_20191215_111413_detect_result.jpg b/save_data/IMG_20191215_111413_detect_result.jpg new file mode 100644 index 0000000..6ec191f --- /dev/null +++ b/save_data/IMG_20191215_111413_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd3ae880ef65fb646d659090decca2f3b8985542e1b00b072901057cd145a3d +size 1609958 diff --git a/save_data/IMG_20191215_111414_detect_result.jpg b/save_data/IMG_20191215_111414_detect_result.jpg new file mode 100644 index 0000000..98b86ad --- /dev/null +++ b/save_data/IMG_20191215_111414_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ab0f2b2f277ecc3b1570a61ca3142b0ab532e77dc19ec612a9c2c8e292512f +size 1739715 diff --git a/save_data/IMG_20191215_111415_detect_result.jpg b/save_data/IMG_20191215_111415_detect_result.jpg new file mode 100644 index 0000000..4a6db73 --- /dev/null +++ b/save_data/IMG_20191215_111415_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e505164a9b5dba5c632a543fa73e6186e3522c67674fe610350a084308e3f1 +size 2127625 diff --git a/save_data/IMG_20191215_111416_detect_result.jpg b/save_data/IMG_20191215_111416_detect_result.jpg new file mode 100644 index 0000000..6a6990a --- /dev/null +++ b/save_data/IMG_20191215_111416_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c97251b3927220a6609275ec1646d9cd8fac35cdb746991e7503b66ad85b4bb +size 1796003 diff --git a/save_data/IMG_20191215_111417_detect_result.jpg b/save_data/IMG_20191215_111417_detect_result.jpg new file mode 100644 index 0000000..34a23cd --- /dev/null +++ b/save_data/IMG_20191215_111417_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9308fce4c4f5f75971cef94491cef985fcb97bec25a7d2f002aea55eafa01f72 +size 2186573 diff --git a/save_data/IMG_20191215_111418_detect_result.jpg b/save_data/IMG_20191215_111418_detect_result.jpg new file mode 100644 index 0000000..f9d1dfc --- /dev/null +++ b/save_data/IMG_20191215_111418_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182dfaf7c3e6142f6ede49f1f302c777c62e43485ce6f96be564dd7fef87a919 +size 2001564 diff --git a/save_data/IMG_20191215_111419_1_detect_result.jpg b/save_data/IMG_20191215_111419_1_detect_result.jpg new file mode 100644 index 0000000..58f1411 --- /dev/null +++ b/save_data/IMG_20191215_111419_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1b316e61ab7133458e94bd9947b9a722d4d7edf13f2ee700e5ed2795ed1f4f +size 1899406 diff --git a/save_data/IMG_20191215_111419_detect_result.jpg b/save_data/IMG_20191215_111419_detect_result.jpg new file mode 100644 index 0000000..9989151 --- /dev/null +++ b/save_data/IMG_20191215_111419_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06703d9efd8c577b587368ce2e08345aa9d6a2785fcd812b64e5cb6d34eb346c +size 1856580 diff --git a/save_data/IMG_20191215_111422_detect_result.jpg b/save_data/IMG_20191215_111422_detect_result.jpg new file mode 100644 index 0000000..4c3f66d --- /dev/null +++ b/save_data/IMG_20191215_111422_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a45e15209ede164d7ad3807e46a0a2ded637eca414e03c47d0fad28900fe9d2 +size 2946839 diff --git a/save_data/IMG_20191215_111425_detect_result.jpg b/save_data/IMG_20191215_111425_detect_result.jpg new file mode 100644 index 0000000..074ccb8 --- /dev/null +++ b/save_data/IMG_20191215_111425_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f873f03c3af5a47eea61f1a3b7c18cefb6d2643015a9e2d2c76060f75b2e263 +size 2415747 diff --git a/save_data/IMG_20191215_111426_detect_result.jpg b/save_data/IMG_20191215_111426_detect_result.jpg new file mode 100644 index 0000000..3d2f99d --- /dev/null +++ b/save_data/IMG_20191215_111426_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de111a875ab8a6dadbcf3449cbc1a278b82193841bc45da9bcd097fe2d7861b +size 2194557 diff --git a/save_data/IMG_20191215_111427_detect_result.jpg b/save_data/IMG_20191215_111427_detect_result.jpg new file mode 100644 index 0000000..ce4254e --- /dev/null +++ b/save_data/IMG_20191215_111427_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990ccbfc000fa6c9415230a97ca5f1fac10e7b2dde594aeb21d33494c773ec2b +size 2016859 diff --git a/save_data/IMG_20191215_111430_detect_result.jpg b/save_data/IMG_20191215_111430_detect_result.jpg new file mode 100644 index 0000000..06c9c09 --- /dev/null +++ b/save_data/IMG_20191215_111430_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb480e41c75e6b374639622f8c319000f3d0aac81c02d989668791bedb312c6 +size 2690764 diff --git a/save_data/IMG_20191215_111431_detect_result.jpg b/save_data/IMG_20191215_111431_detect_result.jpg new file mode 100644 index 0000000..f91d66a --- /dev/null +++ b/save_data/IMG_20191215_111431_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f43b3b31da677c11acab63659b89d5793e1760a909f0b09a28d32fffa94073b +size 2566935 diff --git a/save_data/IMG_20191215_111433_detect_result.jpg b/save_data/IMG_20191215_111433_detect_result.jpg new file mode 100644 index 0000000..1e9e997 --- /dev/null +++ b/save_data/IMG_20191215_111433_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a4c529cbcb600e5cee27594ef9785bfa4f3d34f4fed494cb6d9437dfa4e259 +size 2626082 diff --git a/save_data/IMG_20191215_111435_detect_result.jpg b/save_data/IMG_20191215_111435_detect_result.jpg new file mode 100644 index 0000000..f754738 --- /dev/null +++ b/save_data/IMG_20191215_111435_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74de88527f9415a4cf0429b8a29c4adb3699b12756bae4205a09d7d33454c97d +size 2248404 diff --git a/save_data/IMG_20191215_111437_detect_result.jpg b/save_data/IMG_20191215_111437_detect_result.jpg new file mode 100644 index 0000000..e895cec --- /dev/null +++ b/save_data/IMG_20191215_111437_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20d3fd85d79630c3aabae62a10f6e21f076532044463cc7faf0778989397335 +size 2167618 diff --git a/save_data/IMG_20191215_111438_detect_result.jpg b/save_data/IMG_20191215_111438_detect_result.jpg new file mode 100644 index 0000000..0bf1472 --- /dev/null +++ b/save_data/IMG_20191215_111438_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a955d6375bbc9798aec21136295bb1e4a8d8730220c24f955afcdd3801b4a0be +size 2130013 diff --git a/save_data/IMG_20191215_111439_detect_result.jpg b/save_data/IMG_20191215_111439_detect_result.jpg new file mode 100644 index 0000000..72b86a2 --- /dev/null +++ b/save_data/IMG_20191215_111439_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382e77e9f09b07c31e1cfdaef8b5988c79f17b854d6b52417174a5aa7e6e94b8 +size 2271696 diff --git a/save_data/IMG_20191215_111441_detect_result.jpg b/save_data/IMG_20191215_111441_detect_result.jpg new file mode 100644 index 0000000..2f659da --- /dev/null +++ b/save_data/IMG_20191215_111441_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fad32593b9790c9b87d2ce844b32770ffc6aebfd33f2d1c731689a041b1d10 +size 2743511 diff --git a/save_data/IMG_20191215_111442_detect_result.jpg b/save_data/IMG_20191215_111442_detect_result.jpg new file mode 100644 index 0000000..6f6db4f --- /dev/null +++ b/save_data/IMG_20191215_111442_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bd097d61192a6717d42a479740321505cb2e068b876cae45391dfb2c882b53 +size 2432639 diff --git a/save_data/IMG_20191215_111444_detect_result.jpg b/save_data/IMG_20191215_111444_detect_result.jpg new file mode 100644 index 0000000..ef024f2 --- /dev/null +++ b/save_data/IMG_20191215_111444_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78846c5732c80d45baa3d61b273c1e3010ce243eca4d26f2eba4995a226c5528 +size 2374676 diff --git a/save_data/IMG_20191215_111445_detect_result.jpg b/save_data/IMG_20191215_111445_detect_result.jpg new file mode 100644 index 0000000..7d08e2c --- /dev/null +++ b/save_data/IMG_20191215_111445_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf5bd8d5b2784768f533b3b65a5e3c0bed1070822506836e0fe187e837a1aa2 +size 2299573 diff --git a/save_data/IMG_20191215_111446_detect_result.jpg b/save_data/IMG_20191215_111446_detect_result.jpg new file mode 100644 index 0000000..6e34ecb --- /dev/null +++ b/save_data/IMG_20191215_111446_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a0705e584660e6cf07e160e99e47b2efb40fcf8a8f8d21d86324ce7593cf07 +size 1647531 diff --git a/save_data/IMG_20191215_111448_detect_result.jpg b/save_data/IMG_20191215_111448_detect_result.jpg new file mode 100644 index 0000000..6cf0b34 --- /dev/null +++ b/save_data/IMG_20191215_111448_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6366f2b8620cf8e5f153d65c28c39316a350bb2f1e23e0069e1b3c8bfcf862 +size 1897953 diff --git a/save_data/IMG_20191215_111450_detect_result.jpg b/save_data/IMG_20191215_111450_detect_result.jpg new file mode 100644 index 0000000..87e25fc --- /dev/null +++ b/save_data/IMG_20191215_111450_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa797a300ee8e80c04f0d2d133779b6f3a5f56287b8a6fc4e36acc22c0c45ff +size 2817221 diff --git a/save_data/IMG_20191215_111452_detect_result.jpg b/save_data/IMG_20191215_111452_detect_result.jpg new file mode 100644 index 0000000..ae3d823 --- /dev/null +++ b/save_data/IMG_20191215_111452_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74317fa06f12ab66a57d3f94ca646e1cdaaaa771e1720c2148392d4b607dd33f +size 2018402 diff --git a/save_data/IMG_20191215_111453_detect_result.jpg b/save_data/IMG_20191215_111453_detect_result.jpg new file mode 100644 index 0000000..34fc666 --- /dev/null +++ b/save_data/IMG_20191215_111453_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62618d390b87dfe21dab4a7cb21589f7ae2e1e07791aa5d2a8868918844df877 +size 2362671 diff --git a/save_data/IMG_20191215_111454_1_detect_result.jpg b/save_data/IMG_20191215_111454_1_detect_result.jpg new file mode 100644 index 0000000..5efa343 --- /dev/null +++ b/save_data/IMG_20191215_111454_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be59bfe1372a057b5765222f48eb9f67425e7bef82a1ef272fa6c98dc049fc2d +size 2010891 diff --git a/save_data/IMG_20191215_111454_detect_result.jpg b/save_data/IMG_20191215_111454_detect_result.jpg new file mode 100644 index 0000000..0820a2f --- /dev/null +++ b/save_data/IMG_20191215_111454_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3319da502d4602f4937312aabe47df9b175433c6fd8891eed82523ddcbf5b3fb +size 2572839 diff --git a/save_data/IMG_20191215_111455_detect_result.jpg b/save_data/IMG_20191215_111455_detect_result.jpg new file mode 100644 index 0000000..988dc1d --- /dev/null +++ b/save_data/IMG_20191215_111455_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614378df99d0ba5d896ef12f7aa5def8ead73941fa7cf0681796142340fde647 +size 1870927 diff --git a/save_data/IMG_20191215_111456_detect_result.jpg b/save_data/IMG_20191215_111456_detect_result.jpg new file mode 100644 index 0000000..ab7deab --- /dev/null +++ b/save_data/IMG_20191215_111456_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c82b668554337c40c1ddd0ae1dfc4db64a8fdd1973932bd0cb47b47b48bb3d +size 2010125 diff --git a/save_data/IMG_20191215_111457_detect_result.jpg b/save_data/IMG_20191215_111457_detect_result.jpg new file mode 100644 index 0000000..2d88fa8 --- /dev/null +++ b/save_data/IMG_20191215_111457_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08c881c86b90c1346ff0e5caa9731bd931c271984546ddac46506d4dbaa8a86a +size 2108063 diff --git a/save_data/IMG_20191215_111458_detect_result.jpg b/save_data/IMG_20191215_111458_detect_result.jpg new file mode 100644 index 0000000..ae0d65a --- /dev/null +++ b/save_data/IMG_20191215_111458_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fde4e67f00c935a136576e0eb26430f335f5bfd0294ff9a14c941d19adefe03 +size 1772397 diff --git a/save_data/IMG_20191215_111459_detect_result.jpg b/save_data/IMG_20191215_111459_detect_result.jpg new file mode 100644 index 0000000..e2f0b4c --- /dev/null +++ b/save_data/IMG_20191215_111459_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef13c7157f5d2c5e2a65ce28f83aed8f997f9ffb5b0ac785692c6b55cb6b2502 +size 2276795 diff --git a/save_data/IMG_20191215_111500_detect_result.jpg b/save_data/IMG_20191215_111500_detect_result.jpg new file mode 100644 index 0000000..ffef4c1 --- /dev/null +++ b/save_data/IMG_20191215_111500_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e97b5af7d2dcce6724ec694205703ea787c0d505ec57957a662655504a00ca8 +size 1466713 diff --git a/save_data/IMG_20191215_111501_detect_result.jpg b/save_data/IMG_20191215_111501_detect_result.jpg new file mode 100644 index 0000000..bfd67a1 --- /dev/null +++ b/save_data/IMG_20191215_111501_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03ffb35c99f7aa9c17ddfefcde43765f19be3be98ac60a50fcaa4670c064b02 +size 1670929 diff --git a/save_data/IMG_20191215_111502_detect_result.jpg b/save_data/IMG_20191215_111502_detect_result.jpg new file mode 100644 index 0000000..8aa8666 --- /dev/null +++ b/save_data/IMG_20191215_111502_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76fec79898d807cc0aebdfde7ebfef62d4e92f226655f9eadf1d841cf00e8f71 +size 1629355 diff --git a/save_data/IMG_20191215_111503_detect_result.jpg b/save_data/IMG_20191215_111503_detect_result.jpg new file mode 100644 index 0000000..5ca4d41 --- /dev/null +++ b/save_data/IMG_20191215_111503_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359ee131141b9a174dcc50e0194af4162a0327421b41e312f2130c43f90de53c +size 1528471 diff --git a/save_data/IMG_20191215_111504_detect_result.jpg b/save_data/IMG_20191215_111504_detect_result.jpg new file mode 100644 index 0000000..0db4853 --- /dev/null +++ b/save_data/IMG_20191215_111504_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bab878bf04a0d101306cb4639f9e5ca19320ac111fc44ae3f1bce538d839ae1 +size 1648338 diff --git a/save_data/IMG_20191215_111505_detect_result.jpg b/save_data/IMG_20191215_111505_detect_result.jpg new file mode 100644 index 0000000..cdd1f39 --- /dev/null +++ b/save_data/IMG_20191215_111505_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05c25c86b3756ac06a31ebd91fe8b2104777856168323d917df88236c5dd287 +size 1976903 diff --git a/save_data/IMG_20191215_111506_detect_result.jpg b/save_data/IMG_20191215_111506_detect_result.jpg new file mode 100644 index 0000000..6c89482 --- /dev/null +++ b/save_data/IMG_20191215_111506_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66df7ba47732b109d8928b8e7102de0942e109f8bdd214bebcf79ac18ebd3c1e +size 2042191 diff --git a/save_data/IMG_20191215_111507_detect_result.jpg b/save_data/IMG_20191215_111507_detect_result.jpg new file mode 100644 index 0000000..e0765e1 --- /dev/null +++ b/save_data/IMG_20191215_111507_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1989e98aca14f3e312ee4515306ec02ad0c7255cf55355c882406b87be0611d1 +size 2231732 diff --git a/save_data/IMG_20191215_111508_detect_result.jpg b/save_data/IMG_20191215_111508_detect_result.jpg new file mode 100644 index 0000000..9d23795 --- /dev/null +++ b/save_data/IMG_20191215_111508_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0563f619ee3f1aaba777ac9d6460a7ecf8b8067689453154fa6f3f73cbd887e +size 1909962 diff --git a/save_data/IMG_20191215_111509_detect_result.jpg b/save_data/IMG_20191215_111509_detect_result.jpg new file mode 100644 index 0000000..3671a65 --- /dev/null +++ b/save_data/IMG_20191215_111509_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaccebfbab43ccc0b7fb51674deebf2b44c4f8c551ae544267149504d25835fb +size 1469580 diff --git a/save_data/IMG_20191215_111510_detect_result.jpg b/save_data/IMG_20191215_111510_detect_result.jpg new file mode 100644 index 0000000..11e4462 --- /dev/null +++ b/save_data/IMG_20191215_111510_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb1e5118f6bd6405033512d3857ff0d08f0ab5b652f7c00764e51272479ad19 +size 1395331 diff --git a/save_data/IMG_20191215_111511_detect_result.jpg b/save_data/IMG_20191215_111511_detect_result.jpg new file mode 100644 index 0000000..2cb1e86 --- /dev/null +++ b/save_data/IMG_20191215_111511_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d6302c922c6a02e5080be9c8cf0be30d38ebda09b212e11f1bfe82cbe6b065 +size 1639170 diff --git a/save_data/IMG_20191215_111512_detect_result.jpg b/save_data/IMG_20191215_111512_detect_result.jpg new file mode 100644 index 0000000..8196e46 --- /dev/null +++ b/save_data/IMG_20191215_111512_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa03e2b45cd056f6eddbbf73474805735e4dcc7256f9d10f37ed6af491465dbf +size 1659368 diff --git a/save_data/IMG_20191215_111513_detect_result.jpg b/save_data/IMG_20191215_111513_detect_result.jpg new file mode 100644 index 0000000..402bcd8 --- /dev/null +++ b/save_data/IMG_20191215_111513_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3eb91497de288c4cc72a7d360a0a9730e6253b117bf03370f3388960d97778 +size 1913583 diff --git a/save_data/IMG_20191215_111514_detect_result.jpg b/save_data/IMG_20191215_111514_detect_result.jpg new file mode 100644 index 0000000..4507c6f --- /dev/null +++ b/save_data/IMG_20191215_111514_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0dc118c4a1d0aa4191ccd42e57afb40082dd7372920cbf09cd1a85a5ccf63e +size 1846299 diff --git a/save_data/IMG_20191215_111515_detect_result.jpg b/save_data/IMG_20191215_111515_detect_result.jpg new file mode 100644 index 0000000..7e961f3 --- /dev/null +++ b/save_data/IMG_20191215_111515_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad17e13ea4e841d7722fb3bbade9c652b0b534a851e71ca8507af1b2b3471d33 +size 2196334 diff --git a/save_data/IMG_20191215_111516_detect_result.jpg b/save_data/IMG_20191215_111516_detect_result.jpg new file mode 100644 index 0000000..9f2398e --- /dev/null +++ b/save_data/IMG_20191215_111516_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466c521d5f15245d3f483b00d1b30e8d054f503546d3b2e11611ca8aeaa2b460 +size 1698442 diff --git a/save_data/IMG_20191215_111517_1_detect_result.jpg b/save_data/IMG_20191215_111517_1_detect_result.jpg new file mode 100644 index 0000000..c6db6d3 --- /dev/null +++ b/save_data/IMG_20191215_111517_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef827f753090b9f1f37dc40a928c86dfc130575e902a5511d5548ba43126ad9 +size 2619770 diff --git a/save_data/IMG_20191215_111517_detect_result.jpg b/save_data/IMG_20191215_111517_detect_result.jpg new file mode 100644 index 0000000..93752cd --- /dev/null +++ b/save_data/IMG_20191215_111517_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efc9a17136ba884886b862068b5c9ff763dbb6487f59d82313bb572ea170497 +size 1660262 diff --git a/save_data/IMG_20191215_111519_detect_result.jpg b/save_data/IMG_20191215_111519_detect_result.jpg new file mode 100644 index 0000000..1616ff2 --- /dev/null +++ b/save_data/IMG_20191215_111519_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418eac19becb70a37b7bf6e4ac382b5e4edde1506d0d3c413d59d107d312f877 +size 2216680 diff --git a/save_data/IMG_20191215_111520_detect_result.jpg b/save_data/IMG_20191215_111520_detect_result.jpg new file mode 100644 index 0000000..3678ea2 --- /dev/null +++ b/save_data/IMG_20191215_111520_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a77afb39fee2230be335256875138715e3d99ffc1c7e417aa2d18d00fed5e55 +size 2614707 diff --git a/save_data/IMG_20191215_111521_1_detect_result.jpg b/save_data/IMG_20191215_111521_1_detect_result.jpg new file mode 100644 index 0000000..06e2d48 --- /dev/null +++ b/save_data/IMG_20191215_111521_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab4eba2ba4ce0c4182eba27645db90c7429419d891723070c8fdfd93214f4ab +size 1848247 diff --git a/save_data/IMG_20191215_111521_detect_result.jpg b/save_data/IMG_20191215_111521_detect_result.jpg new file mode 100644 index 0000000..5c023ec --- /dev/null +++ b/save_data/IMG_20191215_111521_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28f8ee2860c023d6adf3ae82360fab99f1625a5a3e8678d312440c682e8c9bd +size 1529632 diff --git a/save_data/IMG_20191215_111522_detect_result.jpg b/save_data/IMG_20191215_111522_detect_result.jpg new file mode 100644 index 0000000..7000b76 --- /dev/null +++ b/save_data/IMG_20191215_111522_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4c14c8c64effb7959c86bbf71d6c9e120756666697f24f365a3a4ae4a261ed +size 2380189 diff --git a/save_data/IMG_20191215_111523_detect_result.jpg b/save_data/IMG_20191215_111523_detect_result.jpg new file mode 100644 index 0000000..bdf2113 --- /dev/null +++ b/save_data/IMG_20191215_111523_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a1fecdfb4991196ad176463278d1875fe10f6840b19175083688c30d42a550 +size 2105444 diff --git a/save_data/IMG_20191215_111524_detect_result.jpg b/save_data/IMG_20191215_111524_detect_result.jpg new file mode 100644 index 0000000..e5fe172 --- /dev/null +++ b/save_data/IMG_20191215_111524_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced0ed8bb847443cf00a1293e731f2bd274581936a37ede0c5fe6a2369d76c38 +size 2293729 diff --git a/save_data/IMG_20191215_111526_detect_result.jpg b/save_data/IMG_20191215_111526_detect_result.jpg new file mode 100644 index 0000000..932e08d --- /dev/null +++ b/save_data/IMG_20191215_111526_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b029658e64b4073a682763cb6b6fdbeff0ebb15c9856c1cde0a2fba9e42dc6 +size 2391381 diff --git a/save_data/IMG_20191215_111528_detect_result.jpg b/save_data/IMG_20191215_111528_detect_result.jpg new file mode 100644 index 0000000..acc2a97 --- /dev/null +++ b/save_data/IMG_20191215_111528_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae51841a0e69d388bc068b585ba8924002156fb36770fa99338e16b9220dcfc2 +size 2835976 diff --git a/save_data/IMG_20191215_111530_detect_result.jpg b/save_data/IMG_20191215_111530_detect_result.jpg new file mode 100644 index 0000000..91e096b --- /dev/null +++ b/save_data/IMG_20191215_111530_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df423e10b7d0468800bd3b106b8dad293df846a0adcc827e6168e5f890ae775 +size 2085659 diff --git a/save_data/IMG_20191215_111531_detect_result.jpg b/save_data/IMG_20191215_111531_detect_result.jpg new file mode 100644 index 0000000..be44d4e --- /dev/null +++ b/save_data/IMG_20191215_111531_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a420963fa84d7881f519e1d103db81ad97e68a855dadc287f9009019f1156d97 +size 2006217 diff --git a/save_data/IMG_20191215_111532_detect_result.jpg b/save_data/IMG_20191215_111532_detect_result.jpg new file mode 100644 index 0000000..e896610 --- /dev/null +++ b/save_data/IMG_20191215_111532_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4975cf03c1217a8e267515fad151afc4b95fc39f53be316605db34cbc727f605 +size 1712510 diff --git a/save_data/IMG_20191215_111533_detect_result.jpg b/save_data/IMG_20191215_111533_detect_result.jpg new file mode 100644 index 0000000..77f2638 --- /dev/null +++ b/save_data/IMG_20191215_111533_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b431c1c957d5686a2de6017e5182de64ec8c15664f783393f157abd6405d937 +size 2443053 diff --git a/save_data/IMG_20191215_111535_detect_result.jpg b/save_data/IMG_20191215_111535_detect_result.jpg new file mode 100644 index 0000000..320a473 --- /dev/null +++ b/save_data/IMG_20191215_111535_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ff18d82fdd265a026041c246ca06e5c882adbfc71e8eda9b3911ad34f7f0cf +size 2062189 diff --git a/save_data/IMG_20191215_111537_detect_result.jpg b/save_data/IMG_20191215_111537_detect_result.jpg new file mode 100644 index 0000000..b7fe06a --- /dev/null +++ b/save_data/IMG_20191215_111537_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b53805782db402c3c9ce1e4be91994ec40c9e3aedd13d1eda1529c186d1eb5d +size 1900431 diff --git a/save_data/IMG_20191215_111542_detect_result.jpg b/save_data/IMG_20191215_111542_detect_result.jpg new file mode 100644 index 0000000..2508c1a --- /dev/null +++ b/save_data/IMG_20191215_111542_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d4e22fa68fcbdfcecd2776f0958894fe4ac0a430d417f875a3fb0d2eb0992e +size 2447903 diff --git a/save_data/IMG_20191215_111544_detect_result.jpg b/save_data/IMG_20191215_111544_detect_result.jpg new file mode 100644 index 0000000..eed0aed --- /dev/null +++ b/save_data/IMG_20191215_111544_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbebefe77deb1cdaca9da873342b796f6d60c581b530276949c7911dcf18c9ba +size 1927229 diff --git a/save_data/IMG_20191215_111547_detect_result.jpg b/save_data/IMG_20191215_111547_detect_result.jpg new file mode 100644 index 0000000..82f1c55 --- /dev/null +++ b/save_data/IMG_20191215_111547_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed2455885e982bda2b0edd58d52b85f18029d1e8c2e64878a0cfa32a1c9a664 +size 2189445 diff --git a/save_data/IMG_20191215_111548_detect_result.jpg b/save_data/IMG_20191215_111548_detect_result.jpg new file mode 100644 index 0000000..bbb9252 --- /dev/null +++ b/save_data/IMG_20191215_111548_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:921f6abeaf339a8f39bc7be9f0ece5a4dbb3251d35b9e71255b958a3dfbc37ce +size 1580398 diff --git a/save_data/IMG_20191215_111552_detect_result.jpg b/save_data/IMG_20191215_111552_detect_result.jpg new file mode 100644 index 0000000..70b0559 --- /dev/null +++ b/save_data/IMG_20191215_111552_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb67d956bf597f7feb79ec3f6daf3aa258f438f1123f830b3ed0e9b5f06e6f22 +size 2335440 diff --git a/save_data/IMG_20191215_111554_detect_result.jpg b/save_data/IMG_20191215_111554_detect_result.jpg new file mode 100644 index 0000000..916781a --- /dev/null +++ b/save_data/IMG_20191215_111554_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d790bcb5eb326b632da9f291d9e5f49cb66fb7fb7216112e3015de8bc21f4f28 +size 2310210 diff --git a/save_data/IMG_20191215_111555_detect_result.jpg b/save_data/IMG_20191215_111555_detect_result.jpg new file mode 100644 index 0000000..bbba5f1 --- /dev/null +++ b/save_data/IMG_20191215_111555_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1027de922a69f774ec118de0aeb69bda1ba9b3a514a6c51a91acd9613e37233a +size 2372630 diff --git a/save_data/IMG_20191215_111556_detect_result.jpg b/save_data/IMG_20191215_111556_detect_result.jpg new file mode 100644 index 0000000..8d345ff --- /dev/null +++ b/save_data/IMG_20191215_111556_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251a3c23b1edfd92658bb160509a20a55086382f261c5e7498426235364becad +size 2097442 diff --git a/save_data/IMG_20191215_111559_detect_result.jpg b/save_data/IMG_20191215_111559_detect_result.jpg new file mode 100644 index 0000000..e74270f --- /dev/null +++ b/save_data/IMG_20191215_111559_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ebdfbbe9ad72c7e2f0cae89d030b94c37766acbb7b40775b93221e526cf019 +size 2017938 diff --git a/save_data/IMG_20191215_111601_detect_result.jpg b/save_data/IMG_20191215_111601_detect_result.jpg new file mode 100644 index 0000000..79611cb --- /dev/null +++ b/save_data/IMG_20191215_111601_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d200b75821c186b786bd073de8b09078ae542d19d99cbcef6bd93ad973f7107a +size 2244266 diff --git a/save_data/IMG_20191215_111605_detect_result.jpg b/save_data/IMG_20191215_111605_detect_result.jpg new file mode 100644 index 0000000..f6ed404 --- /dev/null +++ b/save_data/IMG_20191215_111605_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6dc0555035fb6f8d13fb95996eda1affb2571cf5d228c419ae17a8bd53b3be +size 2561404 diff --git a/save_data/IMG_20191215_111608_detect_result.jpg b/save_data/IMG_20191215_111608_detect_result.jpg new file mode 100644 index 0000000..5504a76 --- /dev/null +++ b/save_data/IMG_20191215_111608_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a85136ff19f85fae07c113e00f4079ea9b02cdadc61f2ab67a3b294a8bcfec6 +size 1765547 diff --git a/save_data/IMG_20191215_111610_detect_result.jpg b/save_data/IMG_20191215_111610_detect_result.jpg new file mode 100644 index 0000000..b5dc27e --- /dev/null +++ b/save_data/IMG_20191215_111610_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c8485f616dec6144b188a6816e97937758e0727b556d0936ae10a6e968bb7d +size 2391127 diff --git a/save_data/IMG_20191215_111613_detect_result.jpg b/save_data/IMG_20191215_111613_detect_result.jpg new file mode 100644 index 0000000..dd93011 --- /dev/null +++ b/save_data/IMG_20191215_111613_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ee476f4a760e452f704e21d6bb7ae542cb48a62d7389aceba4b9e88b4f6375 +size 2180250 diff --git a/save_data/IMG_20191215_111617_detect_result.jpg b/save_data/IMG_20191215_111617_detect_result.jpg new file mode 100644 index 0000000..ce551f0 --- /dev/null +++ b/save_data/IMG_20191215_111617_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7d5bab0027f0e633b55ce3cded7ee23e842fc8cb72526f96094aebfea0dcd6 +size 2366597 diff --git a/save_data/IMG_20191215_111619_detect_result.jpg b/save_data/IMG_20191215_111619_detect_result.jpg new file mode 100644 index 0000000..651cb73 --- /dev/null +++ b/save_data/IMG_20191215_111619_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdf2f6d9c9d2133db816d65b489ba9bfb861060919fc567d97ad99cd3cb228c +size 1770198 diff --git a/save_data/IMG_20191215_111622_detect_result.jpg b/save_data/IMG_20191215_111622_detect_result.jpg new file mode 100644 index 0000000..b861fd2 --- /dev/null +++ b/save_data/IMG_20191215_111622_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801edb2e20294077f120dbd5af3b62e84b762dbe10ff6733fd14a5ef2745676b +size 2476601 diff --git a/save_data/IMG_20191215_111624_detect_result.jpg b/save_data/IMG_20191215_111624_detect_result.jpg new file mode 100644 index 0000000..7ac51e9 --- /dev/null +++ b/save_data/IMG_20191215_111624_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6500e06a13e4f052834399a25864398ec7af592b63fa73c014bf7a271d3de837 +size 1992289 diff --git a/save_data/IMG_20191215_111626_detect_result.jpg b/save_data/IMG_20191215_111626_detect_result.jpg new file mode 100644 index 0000000..a099005 --- /dev/null +++ b/save_data/IMG_20191215_111626_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae3a5c93cdde14bd8ab2aca82639fa07b1c3520fe201c8dee6f184ef0d9f6fc +size 2451680 diff --git a/save_data/IMG_20191215_111627_detect_result.jpg b/save_data/IMG_20191215_111627_detect_result.jpg new file mode 100644 index 0000000..6938db3 --- /dev/null +++ b/save_data/IMG_20191215_111627_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bf220ff551a704d509cfaa530ea8369156cb2edafe0e3145f353f3b6f4a3ef +size 1731375 diff --git a/save_data/IMG_20191215_111631_detect_result.jpg b/save_data/IMG_20191215_111631_detect_result.jpg new file mode 100644 index 0000000..306a286 --- /dev/null +++ b/save_data/IMG_20191215_111631_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc087172a55cf7313a075c337e9cf8afa6ff4e38732359f62f2b9eb96d833e94 +size 2193458 diff --git a/save_data/IMG_20191215_111634_detect_result.jpg b/save_data/IMG_20191215_111634_detect_result.jpg new file mode 100644 index 0000000..dda7dd9 --- /dev/null +++ b/save_data/IMG_20191215_111634_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8c0393790056db9083906fc10318f34d0b9b4541479a82538da3788a91eacd +size 2817540 diff --git a/save_data/IMG_20191215_111636_detect_result.jpg b/save_data/IMG_20191215_111636_detect_result.jpg new file mode 100644 index 0000000..80ff29b --- /dev/null +++ b/save_data/IMG_20191215_111636_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ffcea433d78500f3cd09f011016eee283bec99bf9fcfc824abe7d68db6d0d0 +size 2934887 diff --git a/save_data/IMG_20191215_111638_detect_result.jpg b/save_data/IMG_20191215_111638_detect_result.jpg new file mode 100644 index 0000000..be74d95 --- /dev/null +++ b/save_data/IMG_20191215_111638_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a9106d73584e2c79cc4f32dcb11451ae4f79f70249849323dccec4d5c1f0826 +size 2155893 diff --git a/save_data/IMG_20191215_111640_detect_result.jpg b/save_data/IMG_20191215_111640_detect_result.jpg new file mode 100644 index 0000000..db2eabc --- /dev/null +++ b/save_data/IMG_20191215_111640_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c54e61bae24fc5a926a6ec6bbcd7ce73972e5c24366ad57f5a308194a63cfd +size 1684972 diff --git a/save_data/IMG_20191215_111642_detect_result.jpg b/save_data/IMG_20191215_111642_detect_result.jpg new file mode 100644 index 0000000..872d0c8 --- /dev/null +++ b/save_data/IMG_20191215_111642_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6cf1114779d8f91ab765b9d5f880fd39dbd135dbd3f0e211fde726c7aac059 +size 2353754 diff --git a/save_data/IMG_20191215_111644_detect_result.jpg b/save_data/IMG_20191215_111644_detect_result.jpg new file mode 100644 index 0000000..171fdff --- /dev/null +++ b/save_data/IMG_20191215_111644_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd591b38969b319277ebbdbb0f11f2e4e28287c847880f5414e537ad6e76acdb +size 2003106 diff --git a/save_data/IMG_20191215_111646_detect_result.jpg b/save_data/IMG_20191215_111646_detect_result.jpg new file mode 100644 index 0000000..d5cb2e2 --- /dev/null +++ b/save_data/IMG_20191215_111646_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28148ba81619aa07e8de5c164ed5bdb5647afd0f8c509761fb5ece81545f304 +size 3121044 diff --git a/save_data/IMG_20191215_111649_detect_result.jpg b/save_data/IMG_20191215_111649_detect_result.jpg new file mode 100644 index 0000000..56ab686 --- /dev/null +++ b/save_data/IMG_20191215_111649_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dac018daea035351fab353d79066e1184bd455da090dab40fa771db6fc10c54 +size 2093130 diff --git a/save_data/IMG_20191215_111650_detect_result.jpg b/save_data/IMG_20191215_111650_detect_result.jpg new file mode 100644 index 0000000..0ffa4bf --- /dev/null +++ b/save_data/IMG_20191215_111650_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5e4aa801bd289c6d6301d4b68cb462a96f72d567b8b0cef07f2c8df0e6a6be +size 2018771 diff --git a/save_data/IMG_20191215_111651_detect_result.jpg b/save_data/IMG_20191215_111651_detect_result.jpg new file mode 100644 index 0000000..10df5cc --- /dev/null +++ b/save_data/IMG_20191215_111651_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9591d6efef97efe73d4dd09394e757b5a821fb256e1b84e00891b1a2047506e +size 1879126 diff --git a/save_data/IMG_20191215_111652_detect_result.jpg b/save_data/IMG_20191215_111652_detect_result.jpg new file mode 100644 index 0000000..81c4492 --- /dev/null +++ b/save_data/IMG_20191215_111652_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b838aedd8b06ef10f7d57bedc76f5fbb3381afd255c97520660f26ede88f3a6 +size 1876711 diff --git a/save_data/IMG_20191215_111654_detect_result.jpg b/save_data/IMG_20191215_111654_detect_result.jpg new file mode 100644 index 0000000..a79a68b --- /dev/null +++ b/save_data/IMG_20191215_111654_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fd1371a6407a238e41c06bfa81ae2c7bf6f84c49539757d093cacc5d03a259 +size 2075269 diff --git a/save_data/IMG_20191215_111657_detect_result.jpg b/save_data/IMG_20191215_111657_detect_result.jpg new file mode 100644 index 0000000..7a20f49 --- /dev/null +++ b/save_data/IMG_20191215_111657_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:564747c640aa013d7a3e6acce13bd5e194c7a630f6dc74805693b9626687a313 +size 1932377 diff --git a/save_data/IMG_20191215_111719_detect_result.jpg b/save_data/IMG_20191215_111719_detect_result.jpg new file mode 100644 index 0000000..39134d4 --- /dev/null +++ b/save_data/IMG_20191215_111719_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6625e3b41f27c9e27557b0ae483fe4697873cceab8bcf289ce53b9d81b55f1 +size 1589948 diff --git a/save_data/IMG_20191215_111722_detect_result.jpg b/save_data/IMG_20191215_111722_detect_result.jpg new file mode 100644 index 0000000..ab148ab --- /dev/null +++ b/save_data/IMG_20191215_111722_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33d86eeedc0d784086408ae712dbc5b391ac914936bd37cdbe94479a257cd6e +size 2029095 diff --git a/save_data/IMG_20191215_111725_detect_result.jpg b/save_data/IMG_20191215_111725_detect_result.jpg new file mode 100644 index 0000000..3018f63 --- /dev/null +++ b/save_data/IMG_20191215_111725_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8faa4dad9e55f80ddccfe28d55ae93d1512a503c8507848e43371cd274145802 +size 2319999 diff --git a/save_data/IMG_20191215_111726_detect_result.jpg b/save_data/IMG_20191215_111726_detect_result.jpg new file mode 100644 index 0000000..1d8831a --- /dev/null +++ b/save_data/IMG_20191215_111726_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcce9b0dafb1f675a8c31da9acc05d24dc0a38a18f6b7f3cdafe989fa6be87b8 +size 2669421 diff --git a/save_data/IMG_20191215_111729_detect_result.jpg b/save_data/IMG_20191215_111729_detect_result.jpg new file mode 100644 index 0000000..21d1be8 --- /dev/null +++ b/save_data/IMG_20191215_111729_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98947bd2089cb1c4a39ee15f5c05baa87f146102203b55d16baebc499c53c5da +size 2861249 diff --git a/save_data/IMG_20191215_111732_detect_result.jpg b/save_data/IMG_20191215_111732_detect_result.jpg new file mode 100644 index 0000000..b05b51c --- /dev/null +++ b/save_data/IMG_20191215_111732_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b43ee70ba5a82d216d5dc3740b9aee472861f7e0ef5f2c89928b73c120b228 +size 2646986 diff --git a/save_data/IMG_20191215_111733_detect_result.jpg b/save_data/IMG_20191215_111733_detect_result.jpg new file mode 100644 index 0000000..70ade4c --- /dev/null +++ b/save_data/IMG_20191215_111733_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ff1075e58e3bb55f44b18f024cb15ded1fff6abfd3a13ba255c78e7d55cd1e +size 2442096 diff --git a/save_data/IMG_20191215_111736_detect_result.jpg b/save_data/IMG_20191215_111736_detect_result.jpg new file mode 100644 index 0000000..23fa758 --- /dev/null +++ b/save_data/IMG_20191215_111736_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f6655ec1dfad8997875ffd0f1c10f1dc789f517e34124e2dcab6364ee59efa +size 2168586 diff --git a/save_data/IMG_20191215_111737_detect_result.jpg b/save_data/IMG_20191215_111737_detect_result.jpg new file mode 100644 index 0000000..0f99925 --- /dev/null +++ b/save_data/IMG_20191215_111737_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b43056d69604f3cef42e41ec26a5c036b0d13fc56596b7e6311b59adf72b69d +size 2131309 diff --git a/save_data/IMG_20191215_111740_detect_result.jpg b/save_data/IMG_20191215_111740_detect_result.jpg new file mode 100644 index 0000000..62d2445 --- /dev/null +++ b/save_data/IMG_20191215_111740_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87dd65f3e57ca3ca4355f381b8e0f5801e6105f6fb96a120ff950c5dff895a88 +size 1797225 diff --git a/save_data/IMG_20191215_111742_detect_result.jpg b/save_data/IMG_20191215_111742_detect_result.jpg new file mode 100644 index 0000000..ddf5946 --- /dev/null +++ b/save_data/IMG_20191215_111742_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813504fc78a404498171b819d43dd1f106c722cad8cbf0e50123ad2d3eed95b8 +size 2260839 diff --git a/save_data/IMG_20191215_111744_detect_result.jpg b/save_data/IMG_20191215_111744_detect_result.jpg new file mode 100644 index 0000000..267bf0c --- /dev/null +++ b/save_data/IMG_20191215_111744_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ee789bf9ff9d09b6c7ee7147e5c797fe98b9b69baab6b18c3589471a50367b +size 2811240 diff --git a/save_data/IMG_20191215_111746_detect_result.jpg b/save_data/IMG_20191215_111746_detect_result.jpg new file mode 100644 index 0000000..36b7812 --- /dev/null +++ b/save_data/IMG_20191215_111746_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5cd498837597ff23e12701b5af8c9d3a8fdf1358001c6b764f8b6f99782c60 +size 2475322 diff --git a/save_data/IMG_20191215_111748_detect_result.jpg b/save_data/IMG_20191215_111748_detect_result.jpg new file mode 100644 index 0000000..4e0dd7f --- /dev/null +++ b/save_data/IMG_20191215_111748_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6173785c4a7d3eaa7e8c0a0c714c833c68ae8adf3ae58f03be6f610a92ad97 +size 2378974 diff --git a/save_data/IMG_20191215_111751_detect_result.jpg b/save_data/IMG_20191215_111751_detect_result.jpg new file mode 100644 index 0000000..0c4dd82 --- /dev/null +++ b/save_data/IMG_20191215_111751_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17d2dfca215e7b48aed6b5f142ae309c226a6e95c7e9157a0b8c8eda4a3acd2 +size 2517344 diff --git a/save_data/IMG_20191215_111753_detect_result.jpg b/save_data/IMG_20191215_111753_detect_result.jpg new file mode 100644 index 0000000..d5e7b31 --- /dev/null +++ b/save_data/IMG_20191215_111753_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ae4d4cd4e61b649bf15697d9e687a96b501077cc2f9c933d7ec3890cbc5820 +size 1942074 diff --git a/save_data/IMG_20191215_111757_detect_result.jpg b/save_data/IMG_20191215_111757_detect_result.jpg new file mode 100644 index 0000000..8087dd9 --- /dev/null +++ b/save_data/IMG_20191215_111757_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f87f933814d9e78021855fc25efa440e24e4a205d13cd16aa76e56d6b2dac85 +size 2417020 diff --git a/save_data/IMG_20191215_111759_detect_result.jpg b/save_data/IMG_20191215_111759_detect_result.jpg new file mode 100644 index 0000000..9017e94 --- /dev/null +++ b/save_data/IMG_20191215_111759_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870f5c451c338fe9e21186307f538baf530c160356fd4f60776a53788ed169b2 +size 2348201 diff --git a/save_data/IMG_20191215_111804_detect_result.jpg b/save_data/IMG_20191215_111804_detect_result.jpg new file mode 100644 index 0000000..973a21f --- /dev/null +++ b/save_data/IMG_20191215_111804_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86a5c844e3ebb62b7d97d9bb778883c8f6747830c54ca28efe8958925ac4be7 +size 2298234 diff --git a/save_data/IMG_20191215_111806_detect_result.jpg b/save_data/IMG_20191215_111806_detect_result.jpg new file mode 100644 index 0000000..4b1fc88 --- /dev/null +++ b/save_data/IMG_20191215_111806_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388ba143b07cc6aea5568fa1e16152eaf9e4444f43bb12141d09a217b6720ef3 +size 1796931 diff --git a/save_data/IMG_20191215_111813_detect_result.jpg b/save_data/IMG_20191215_111813_detect_result.jpg new file mode 100644 index 0000000..65d5967 --- /dev/null +++ b/save_data/IMG_20191215_111813_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29b31502179a75e17325973e99c826a0a18b28bc6c63a1707b79b312ea3e1cd +size 2389083 diff --git a/save_data/IMG_20191215_111816_detect_result.jpg b/save_data/IMG_20191215_111816_detect_result.jpg new file mode 100644 index 0000000..6e2bbb2 --- /dev/null +++ b/save_data/IMG_20191215_111816_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e44172c7c63bc1fb523a5bffedb49f6aa2d7bcf9d6469d72d3f503961bb958a +size 2701920 diff --git a/save_data/IMG_20191215_111853_detect_result.jpg b/save_data/IMG_20191215_111853_detect_result.jpg new file mode 100644 index 0000000..71baa50 --- /dev/null +++ b/save_data/IMG_20191215_111853_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0621514f9d1bb2e5b1d0e83e5c2f20a48593572d6eb5cd137ca71fd2fa5eb45e +size 2258492 diff --git a/save_data/IMG_20191215_111856_detect_result.jpg b/save_data/IMG_20191215_111856_detect_result.jpg new file mode 100644 index 0000000..723ccb1 --- /dev/null +++ b/save_data/IMG_20191215_111856_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8be02c59864efc91afcd4a64492c8da510b9d6d22cec94a0500a0007f0828d8 +size 2277515 diff --git a/save_data/IMG_20191215_111857_detect_result.jpg b/save_data/IMG_20191215_111857_detect_result.jpg new file mode 100644 index 0000000..7095dd5 --- /dev/null +++ b/save_data/IMG_20191215_111857_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c541b7308a1201c850bdbf6ae6ffa8f0402c3ebe2be5014058b83e8da04c952 +size 2225218 diff --git a/save_data/IMG_20191215_111900_detect_result.jpg b/save_data/IMG_20191215_111900_detect_result.jpg new file mode 100644 index 0000000..692f28c --- /dev/null +++ b/save_data/IMG_20191215_111900_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07295f9ea5bd2e8f0bbf3ae8d660e45e6301dafa506bcf99c2347f07774d34d +size 2155141 diff --git a/save_data/IMG_20191215_111905_detect_result.jpg b/save_data/IMG_20191215_111905_detect_result.jpg new file mode 100644 index 0000000..7f12715 --- /dev/null +++ b/save_data/IMG_20191215_111905_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c17a0457c7423d61c008ce2672f3992324f66dd3a80021afad97003fdba405 +size 2518139 diff --git a/save_data/IMG_20191215_111907_detect_result.jpg b/save_data/IMG_20191215_111907_detect_result.jpg new file mode 100644 index 0000000..c19bb6e --- /dev/null +++ b/save_data/IMG_20191215_111907_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449aca544cc91347130923960e864eef8f3e73eb8a173146bbb88186d477283e +size 2879922 diff --git a/save_data/IMG_20191215_111910_detect_result.jpg b/save_data/IMG_20191215_111910_detect_result.jpg new file mode 100644 index 0000000..9d0f11f --- /dev/null +++ b/save_data/IMG_20191215_111910_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a871de09281a6d08ac00cac34c5e6cd8f03ca812a17d77ea4b34374a258ea3c4 +size 2507732 diff --git a/save_data/IMG_20191215_111912_detect_result.jpg b/save_data/IMG_20191215_111912_detect_result.jpg new file mode 100644 index 0000000..820ee5a --- /dev/null +++ b/save_data/IMG_20191215_111912_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8add991b8a55cf35567d283fea26d62b06c06cc17f4d23672d2ab8f7ed158c6 +size 2402307 diff --git a/save_data/IMG_20191215_111913_detect_result.jpg b/save_data/IMG_20191215_111913_detect_result.jpg new file mode 100644 index 0000000..3a9128b --- /dev/null +++ b/save_data/IMG_20191215_111913_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1be685e85f8e3bc625279ebccda9b439d87195fd55ab30f0a190b450aa72f0c +size 2402318 diff --git a/save_data/IMG_20191215_111914_detect_result.jpg b/save_data/IMG_20191215_111914_detect_result.jpg new file mode 100644 index 0000000..09a297a --- /dev/null +++ b/save_data/IMG_20191215_111914_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f175d240654d7b2d83d3001c8e1a5ba2522545febac7a80115c510bcc18c8e4 +size 2081165 diff --git a/save_data/IMG_20191215_111916_detect_result.jpg b/save_data/IMG_20191215_111916_detect_result.jpg new file mode 100644 index 0000000..6cec290 --- /dev/null +++ b/save_data/IMG_20191215_111916_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed9d93a655a561ffb32b053fd34dd9de048f6fd1028bee3629bd853a1647739 +size 2297912 diff --git a/save_data/IMG_20191215_111917_detect_result.jpg b/save_data/IMG_20191215_111917_detect_result.jpg new file mode 100644 index 0000000..6d9da39 --- /dev/null +++ b/save_data/IMG_20191215_111917_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcd5168ab5068ce4a1386ab4d226c631d54eecb6026143f7da8137bbfb2daa5 +size 1800236 diff --git a/save_data/IMG_20191215_111918_detect_result.jpg b/save_data/IMG_20191215_111918_detect_result.jpg new file mode 100644 index 0000000..353f2be --- /dev/null +++ b/save_data/IMG_20191215_111918_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6e90da381fa658f78aec025d63e867bacd622db37754ba5a43dba2ca7b1217 +size 2145794 diff --git a/save_data/IMG_20191215_111919_detect_result.jpg b/save_data/IMG_20191215_111919_detect_result.jpg new file mode 100644 index 0000000..cca1c61 --- /dev/null +++ b/save_data/IMG_20191215_111919_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184dd1a784977361d4bcaf4126b750c0639b44de1e525c6a288e5dff3a971c33 +size 1686421 diff --git a/save_data/IMG_20191215_111922_detect_result.jpg b/save_data/IMG_20191215_111922_detect_result.jpg new file mode 100644 index 0000000..134c499 --- /dev/null +++ b/save_data/IMG_20191215_111922_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2bfd9ec9d41b6b36645b3848b322163658b3a55c05f4671d3391fd6915893d +size 2146395 diff --git a/save_data/IMG_20191215_111924_detect_result.jpg b/save_data/IMG_20191215_111924_detect_result.jpg new file mode 100644 index 0000000..c4bbd1b --- /dev/null +++ b/save_data/IMG_20191215_111924_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2558848cdab5f2b207eba1f7f0eb6646970abd397c0fabeac1226ec2216e98c +size 2214424 diff --git a/save_data/IMG_20191215_111926_detect_result.jpg b/save_data/IMG_20191215_111926_detect_result.jpg new file mode 100644 index 0000000..964edc0 --- /dev/null +++ b/save_data/IMG_20191215_111926_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1319dc05a6b0b855a218ce37d0d7c16af112c5174a77ddcddee4616d69a355a6 +size 2131657 diff --git a/save_data/IMG_20191215_111928_detect_result.jpg b/save_data/IMG_20191215_111928_detect_result.jpg new file mode 100644 index 0000000..ea965a7 --- /dev/null +++ b/save_data/IMG_20191215_111928_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df54a00e907230313c9fbcc9da23a9d5855799eea32493301b70f299b223d4ad +size 2898232 diff --git a/save_data/IMG_20191215_111930_detect_result.jpg b/save_data/IMG_20191215_111930_detect_result.jpg new file mode 100644 index 0000000..24dcbe8 --- /dev/null +++ b/save_data/IMG_20191215_111930_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d5da9683c3bdcd97fd2d7c4f665d3ef60d5cc5e99da76be8a551f6129fe853 +size 2333470 diff --git a/save_data/IMG_20191215_111931_detect_result.jpg b/save_data/IMG_20191215_111931_detect_result.jpg new file mode 100644 index 0000000..0df4f71 --- /dev/null +++ b/save_data/IMG_20191215_111931_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506230062600519f5b51c1f4ca581c26ebcb2e589c68009f7574a5af94452f7c +size 1963987 diff --git a/save_data/IMG_20191215_111933_detect_result.jpg b/save_data/IMG_20191215_111933_detect_result.jpg new file mode 100644 index 0000000..a264c6c --- /dev/null +++ b/save_data/IMG_20191215_111933_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38176bc1343f05740ceaefc54d149e55feac990e004c2f84c5f43242fad3984 +size 2234071 diff --git a/save_data/IMG_20191215_111934_detect_result.jpg b/save_data/IMG_20191215_111934_detect_result.jpg new file mode 100644 index 0000000..de968dc --- /dev/null +++ b/save_data/IMG_20191215_111934_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7717ee2e2d51bc70d6f4e9a6e41977c5a8f0cf0bb2943441402c7eddea8e52e0 +size 1904866 diff --git a/save_data/IMG_20191215_111936_detect_result.jpg b/save_data/IMG_20191215_111936_detect_result.jpg new file mode 100644 index 0000000..640356e --- /dev/null +++ b/save_data/IMG_20191215_111936_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2dbf68529f62a7b671e894d70fdfefdc5387ba45d4ac0efa03bbc945ed809ad +size 1777854 diff --git a/save_data/IMG_20191215_111937_detect_result.jpg b/save_data/IMG_20191215_111937_detect_result.jpg new file mode 100644 index 0000000..0d90a01 --- /dev/null +++ b/save_data/IMG_20191215_111937_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c02bcb55fc603821a6c651f70fbf9ee97250a0a2287e3e03598b4631bfa009 +size 1754099 diff --git a/save_data/IMG_20191215_111939_detect_result.jpg b/save_data/IMG_20191215_111939_detect_result.jpg new file mode 100644 index 0000000..5401eb7 --- /dev/null +++ b/save_data/IMG_20191215_111939_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbddedb6fbeb0cf9d8920120e04f37df74d88c9357f4c3e96c90f612235986b9 +size 1859940 diff --git a/save_data/IMG_20191215_111941_detect_result.jpg b/save_data/IMG_20191215_111941_detect_result.jpg new file mode 100644 index 0000000..0ce8eaf --- /dev/null +++ b/save_data/IMG_20191215_111941_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89be8ab7003b335211fa8c1cff244e47cbc7118cb91f9f33a5d3f6b110d7265 +size 2030832 diff --git a/save_data/IMG_20191215_111942_detect_result.jpg b/save_data/IMG_20191215_111942_detect_result.jpg new file mode 100644 index 0000000..94bf473 --- /dev/null +++ b/save_data/IMG_20191215_111942_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1b3e4f3e43229334f42e9bea57666b139bde95ecb6d93ccc3667707db4b1e7 +size 1833076 diff --git a/save_data/IMG_20191215_111944_detect_result.jpg b/save_data/IMG_20191215_111944_detect_result.jpg new file mode 100644 index 0000000..6812bca --- /dev/null +++ b/save_data/IMG_20191215_111944_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5baa58aa417672ba6261e42bcd25eda38013345d44598712d65e3777fee34da +size 2557093 diff --git a/save_data/IMG_20191215_111945_detect_result.jpg b/save_data/IMG_20191215_111945_detect_result.jpg new file mode 100644 index 0000000..89c7066 --- /dev/null +++ b/save_data/IMG_20191215_111945_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cdea8e614e21ddf770bc4b142bf979431f582bfa6b4d738b5a416a76beb465 +size 2648410 diff --git a/save_data/IMG_20191215_111947_detect_result.jpg b/save_data/IMG_20191215_111947_detect_result.jpg new file mode 100644 index 0000000..581a06e --- /dev/null +++ b/save_data/IMG_20191215_111947_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dad249b352d9df57d3bf51d06458ceafa9a0167f38a77948e6439f07e228cff +size 1707648 diff --git a/save_data/IMG_20191215_111949_detect_result.jpg b/save_data/IMG_20191215_111949_detect_result.jpg new file mode 100644 index 0000000..ba79483 --- /dev/null +++ b/save_data/IMG_20191215_111949_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77dc15632bfe8bcf08ec931c0c516d578e190d733aebc54249ea9047f3bdd99 +size 2562985 diff --git a/save_data/IMG_20191215_111951_1_detect_result.jpg b/save_data/IMG_20191215_111951_1_detect_result.jpg new file mode 100644 index 0000000..dd4c9ad --- /dev/null +++ b/save_data/IMG_20191215_111951_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11b56387e1e8f3a083af2797d4122648df22bc91249800eceb8b0261401e547 +size 1581929 diff --git a/save_data/IMG_20191215_111951_detect_result.jpg b/save_data/IMG_20191215_111951_detect_result.jpg new file mode 100644 index 0000000..ed7ff73 --- /dev/null +++ b/save_data/IMG_20191215_111951_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8a409112e8d535416e24b736f2e530a1ac36853733faa7b9b23d0f7cac468f +size 2464949 diff --git a/save_data/IMG_20191215_111954_detect_result.jpg b/save_data/IMG_20191215_111954_detect_result.jpg new file mode 100644 index 0000000..b93cc10 --- /dev/null +++ b/save_data/IMG_20191215_111954_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a114f7860f3643d90359f99de2477387006974f89acb7dd19254adfd200802b5 +size 1690311 diff --git a/save_data/IMG_20191215_111957_detect_result.jpg b/save_data/IMG_20191215_111957_detect_result.jpg new file mode 100644 index 0000000..3a4405c --- /dev/null +++ b/save_data/IMG_20191215_111957_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e103d8f2e1a13fbe6f0b0973e47aafc0a311f4cd4cab7f7254e50aa112dffbf +size 1779589 diff --git a/save_data/IMG_20191215_112001_detect_result.jpg b/save_data/IMG_20191215_112001_detect_result.jpg new file mode 100644 index 0000000..28d563d --- /dev/null +++ b/save_data/IMG_20191215_112001_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916f6f35ca586519eff350c0cb37f922dd116a44460f718733d11ba5daab9df8 +size 2285334 diff --git a/save_data/IMG_20191215_112010_detect_result.jpg b/save_data/IMG_20191215_112010_detect_result.jpg new file mode 100644 index 0000000..4d5eb90 --- /dev/null +++ b/save_data/IMG_20191215_112010_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cbcd3c6a12fa305e2e35183a7a6a4c292a9aaafee48b4d1066143275197d6a +size 1435844 diff --git a/save_data/IMG_20191215_112012_1_detect_result.jpg b/save_data/IMG_20191215_112012_1_detect_result.jpg new file mode 100644 index 0000000..ac20b9a --- /dev/null +++ b/save_data/IMG_20191215_112012_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63bdd5263b85e27eaaa849e0ab1eee8140c73729e8d3aa449ceef688834e929 +size 2346262 diff --git a/save_data/IMG_20191215_112012_detect_result.jpg b/save_data/IMG_20191215_112012_detect_result.jpg new file mode 100644 index 0000000..a032f42 --- /dev/null +++ b/save_data/IMG_20191215_112012_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8db643e48507cd38ae05272df8d21181aca4e151a78b73aaceca7b376c8855 +size 2243505 diff --git a/save_data/IMG_20191215_112015_detect_result.jpg b/save_data/IMG_20191215_112015_detect_result.jpg new file mode 100644 index 0000000..f9d1e93 --- /dev/null +++ b/save_data/IMG_20191215_112015_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fd022d84d37b9bf814ec71627f891a42737829faba8a973bde0361329428db +size 2226373 diff --git a/save_data/IMG_20191215_112017_detect_result.jpg b/save_data/IMG_20191215_112017_detect_result.jpg new file mode 100644 index 0000000..63c5733 --- /dev/null +++ b/save_data/IMG_20191215_112017_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbf8485d108ddc27b948c51bba143acec0c974839c05d825597febb7b3eb105 +size 2093956 diff --git a/save_data/IMG_20191215_112020_detect_result.jpg b/save_data/IMG_20191215_112020_detect_result.jpg new file mode 100644 index 0000000..f30ad63 --- /dev/null +++ b/save_data/IMG_20191215_112020_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7220a73a4f3cd428a68ef48858eef79905a7dcae5941d2ae5820d1338bbfb6e +size 2609703 diff --git a/save_data/IMG_20191215_112022_detect_result.jpg b/save_data/IMG_20191215_112022_detect_result.jpg new file mode 100644 index 0000000..3bbab62 --- /dev/null +++ b/save_data/IMG_20191215_112022_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354d1fbb734f1cd1fede4ae98a9f8bf1ec5dce425a89b15c70a38010b3eb4b54 +size 3183828 diff --git a/save_data/IMG_20191215_112024_detect_result.jpg b/save_data/IMG_20191215_112024_detect_result.jpg new file mode 100644 index 0000000..113311d --- /dev/null +++ b/save_data/IMG_20191215_112024_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e76bf5c043c791b17d65ccfaa05be864e900c3ed4c6063310063ff4ab134c48 +size 2527175 diff --git a/save_data/IMG_20191215_112026_detect_result.jpg b/save_data/IMG_20191215_112026_detect_result.jpg new file mode 100644 index 0000000..1a0e942 --- /dev/null +++ b/save_data/IMG_20191215_112026_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd61f930a255cf7caf0fb77cf2f2178ca0522f3f719427a98ce94c2fc9398098 +size 2560153 diff --git a/save_data/IMG_20191215_112028_detect_result.jpg b/save_data/IMG_20191215_112028_detect_result.jpg new file mode 100644 index 0000000..349bee5 --- /dev/null +++ b/save_data/IMG_20191215_112028_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df8cbc26de936ca827f2389c43fd8fb0cab4e8f300408c44131494dc3a04004 +size 2355304 diff --git a/save_data/IMG_20191215_112031_detect_result.jpg b/save_data/IMG_20191215_112031_detect_result.jpg new file mode 100644 index 0000000..1851a79 --- /dev/null +++ b/save_data/IMG_20191215_112031_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5410ba0a24a1bd93ca729dbd73129f026e3d5c7becaa4344a2a1adae528cf37b +size 2325690 diff --git a/save_data/IMG_20191215_112033_detect_result.jpg b/save_data/IMG_20191215_112033_detect_result.jpg new file mode 100644 index 0000000..f065d8c --- /dev/null +++ b/save_data/IMG_20191215_112033_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a979027f29fa47b225d671b32208bc9a145f342dcbde5b2f2b30dbc9c21bbf5e +size 2711336 diff --git a/save_data/IMG_20191215_112036_detect_result.jpg b/save_data/IMG_20191215_112036_detect_result.jpg new file mode 100644 index 0000000..0793165 --- /dev/null +++ b/save_data/IMG_20191215_112036_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15767f522a6f21ac394292b860bf06a62b1684036ce3cb3ad81780c49c119366 +size 2203906 diff --git a/save_data/IMG_20191215_112039_detect_result.jpg b/save_data/IMG_20191215_112039_detect_result.jpg new file mode 100644 index 0000000..2fd386e --- /dev/null +++ b/save_data/IMG_20191215_112039_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f881a5ab99f75268ed2b9f367e1bce5e031c98781d1e1fd65415ba4c35304d82 +size 2619920 diff --git a/save_data/IMG_20191215_112042_detect_result.jpg b/save_data/IMG_20191215_112042_detect_result.jpg new file mode 100644 index 0000000..9e03825 --- /dev/null +++ b/save_data/IMG_20191215_112042_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953e7f3ea1b45ca8359e24ebe409c71ba05bdd58ad96f2ddc90099b06cfae29e +size 2608747 diff --git a/save_data/IMG_20191215_112307_detect_result.jpg b/save_data/IMG_20191215_112307_detect_result.jpg new file mode 100644 index 0000000..6469efa --- /dev/null +++ b/save_data/IMG_20191215_112307_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047a8946b541cc4877564d33f31086e72b7c6f6f62d340840c89f300b6f202a7 +size 2552173 diff --git a/save_data/IMG_20191215_112310_detect_result.jpg b/save_data/IMG_20191215_112310_detect_result.jpg new file mode 100644 index 0000000..f11e2f1 --- /dev/null +++ b/save_data/IMG_20191215_112310_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a116da8ab76429fe4366edc7b0657dad0c730eb1f1bd91dd0a96e174765be5 +size 2263492 diff --git a/save_data/IMG_20191215_112311_detect_result.jpg b/save_data/IMG_20191215_112311_detect_result.jpg new file mode 100644 index 0000000..cd08b3e --- /dev/null +++ b/save_data/IMG_20191215_112311_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3280ccb1fe4fccf1d97761b8742690a75bf7839d24aa51b0552e4ff14d493f0c +size 2756523 diff --git a/save_data/IMG_20191215_112313_detect_result.jpg b/save_data/IMG_20191215_112313_detect_result.jpg new file mode 100644 index 0000000..22a0ae5 --- /dev/null +++ b/save_data/IMG_20191215_112313_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b68f5620559371ba4b97ff058fa54ae707bd5040f347091453de439fece73f +size 2624050 diff --git a/save_data/IMG_20191215_112316_detect_result.jpg b/save_data/IMG_20191215_112316_detect_result.jpg new file mode 100644 index 0000000..4444b3b --- /dev/null +++ b/save_data/IMG_20191215_112316_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f510a3a5d272d5ff58bc1fa1a2722cf0a78e46a716abc188f35dc77fc8089e +size 2591339 diff --git a/save_data/IMG_20191215_112317_detect_result.jpg b/save_data/IMG_20191215_112317_detect_result.jpg new file mode 100644 index 0000000..8cd7b0e --- /dev/null +++ b/save_data/IMG_20191215_112317_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0595f226e6cd447efa58cd16331504e7eafeab00f31c2384d3b2c8779beb5a +size 2153394 diff --git a/save_data/IMG_20191215_112320_detect_result.jpg b/save_data/IMG_20191215_112320_detect_result.jpg new file mode 100644 index 0000000..eedf8c4 --- /dev/null +++ b/save_data/IMG_20191215_112320_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ebdcb8c35ae013af5474efcf25ae3d266cf5b88bcd9d0bd5714d915df51d69 +size 2690033 diff --git a/save_data/IMG_20191215_112324_detect_result.jpg b/save_data/IMG_20191215_112324_detect_result.jpg new file mode 100644 index 0000000..0ecd602 --- /dev/null +++ b/save_data/IMG_20191215_112324_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410105672a9a187e4b60a68c621fd1d551376fb7b5c49cffffa347fa657f42b2 +size 2676926 diff --git a/save_data/IMG_20191215_112325_detect_result.jpg b/save_data/IMG_20191215_112325_detect_result.jpg new file mode 100644 index 0000000..3a85496 --- /dev/null +++ b/save_data/IMG_20191215_112325_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95db2dd5f54e5dc89fe8ef006cb1019735df1aec21d76788d8b5c5ed792e946 +size 2342958 diff --git a/save_data/IMG_20191215_112328_detect_result.jpg b/save_data/IMG_20191215_112328_detect_result.jpg new file mode 100644 index 0000000..e8baf57 --- /dev/null +++ b/save_data/IMG_20191215_112328_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e70600fc8f30b8761b261197904ac3e4eef3e216f6717821f85144b510e0bf8 +size 2562946 diff --git a/save_data/IMG_20191215_112329_detect_result.jpg b/save_data/IMG_20191215_112329_detect_result.jpg new file mode 100644 index 0000000..44b4039 --- /dev/null +++ b/save_data/IMG_20191215_112329_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4523e4dee553b39f869d0aca979882ee395daebfb771847b0c828c91917a74 +size 2629725 diff --git a/save_data/IMG_20191215_112334_detect_result.jpg b/save_data/IMG_20191215_112334_detect_result.jpg new file mode 100644 index 0000000..b9b36e8 --- /dev/null +++ b/save_data/IMG_20191215_112334_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbc1d81167e8004656693ae866c6d168ac90c601c18ec3a271edeea81f6e12b +size 2289575 diff --git a/save_data/IMG_20191215_112335_detect_result.jpg b/save_data/IMG_20191215_112335_detect_result.jpg new file mode 100644 index 0000000..5d6453e --- /dev/null +++ b/save_data/IMG_20191215_112335_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca881f8f4fea0eedda15f186ebffc798634a1bc08d1ce9236cf0006036600a3 +size 1894065 diff --git a/save_data/IMG_20191215_112339_detect_result.jpg b/save_data/IMG_20191215_112339_detect_result.jpg new file mode 100644 index 0000000..08dafd4 --- /dev/null +++ b/save_data/IMG_20191215_112339_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f8544f75dcca42e64355d9932fd77722cec59655ec2117fa8e9487719875dd +size 2250627 diff --git a/save_data/IMG_20191215_112340_detect_result.jpg b/save_data/IMG_20191215_112340_detect_result.jpg new file mode 100644 index 0000000..baabd21 --- /dev/null +++ b/save_data/IMG_20191215_112340_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1406ac9c87d35a3741ceb2ac9ef5276bf2b224be045373a8082dba178fe4cfb5 +size 2290782 diff --git a/save_data/IMG_20191215_112342_detect_result.jpg b/save_data/IMG_20191215_112342_detect_result.jpg new file mode 100644 index 0000000..2bced17 --- /dev/null +++ b/save_data/IMG_20191215_112342_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c510bf4ebfd6173f1f03b94592cc7f1a17b3dc84e420a049a87e4d0592901365 +size 2042522 diff --git a/save_data/IMG_20191215_112343_detect_result.jpg b/save_data/IMG_20191215_112343_detect_result.jpg new file mode 100644 index 0000000..5cb0d61 --- /dev/null +++ b/save_data/IMG_20191215_112343_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8088472c6627a02e709e8d133db4fbc883b728329afda68e4c4c9899b241dd6 +size 1997229 diff --git a/save_data/IMG_20191215_112346_detect_result.jpg b/save_data/IMG_20191215_112346_detect_result.jpg new file mode 100644 index 0000000..0d0d781 --- /dev/null +++ b/save_data/IMG_20191215_112346_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52a8da502e26a81236380a566c0037b29c39fd6ec75d7b7512632355797a279 +size 2263780 diff --git a/save_data/IMG_20191215_112348_detect_result.jpg b/save_data/IMG_20191215_112348_detect_result.jpg new file mode 100644 index 0000000..73a553e --- /dev/null +++ b/save_data/IMG_20191215_112348_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0ad3dd416cc5a6cb5e70b3ee9c6ba5672bd8a0506e1124980330ab8928fc16 +size 1888911 diff --git a/save_data/IMG_20191215_112349_detect_result.jpg b/save_data/IMG_20191215_112349_detect_result.jpg new file mode 100644 index 0000000..498dd4b --- /dev/null +++ b/save_data/IMG_20191215_112349_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415ba5fa6da9ec5f5d5fe5fb0023a3054692f2ed101f0632d76c7b061ba21655 +size 2072350 diff --git a/save_data/IMG_20191215_112352_detect_result.jpg b/save_data/IMG_20191215_112352_detect_result.jpg new file mode 100644 index 0000000..936bcfe --- /dev/null +++ b/save_data/IMG_20191215_112352_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1022b760ca3c8a300f88c85482a1d7387fda2f9100968570f39327ddefb432 +size 3151336 diff --git a/save_data/IMG_20191215_112356_detect_result.jpg b/save_data/IMG_20191215_112356_detect_result.jpg new file mode 100644 index 0000000..e98c7e3 --- /dev/null +++ b/save_data/IMG_20191215_112356_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e87212b25ffb3a7dcd12a41abe1d51d6a693bf413e69061cda79ad39c8bc78 +size 2014109 diff --git a/save_data/IMG_20191215_112358_detect_result.jpg b/save_data/IMG_20191215_112358_detect_result.jpg new file mode 100644 index 0000000..6ade308 --- /dev/null +++ b/save_data/IMG_20191215_112358_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a784a09bbb9f762b22a9cbfa93ee82b25ee1f26860fafbc39d35a293dba11e +size 1895033 diff --git a/save_data/IMG_20191215_112401_detect_result.jpg b/save_data/IMG_20191215_112401_detect_result.jpg new file mode 100644 index 0000000..385150b --- /dev/null +++ b/save_data/IMG_20191215_112401_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb2710720bd94c4006830fcba9a865e6082ef05098c7ebc404c1bfb3e654d83 +size 2448457 diff --git a/save_data/IMG_20191215_112403_detect_result.jpg b/save_data/IMG_20191215_112403_detect_result.jpg new file mode 100644 index 0000000..3b0a5f8 --- /dev/null +++ b/save_data/IMG_20191215_112403_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb8c9f287f9d547c062fabb2394f54ff754e80d7129cc8b6b4f01cab8c11989 +size 2062047 diff --git a/save_data/IMG_20191215_112407_detect_result.jpg b/save_data/IMG_20191215_112407_detect_result.jpg new file mode 100644 index 0000000..50b33cd --- /dev/null +++ b/save_data/IMG_20191215_112407_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf83cf8a9c63e7d471d582541b58600f9720721f6bdb07d1b8d549fa567399a +size 2363831 diff --git a/save_data/IMG_20191215_112412_detect_result.jpg b/save_data/IMG_20191215_112412_detect_result.jpg new file mode 100644 index 0000000..fc8b32f --- /dev/null +++ b/save_data/IMG_20191215_112412_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca37496c088d49d7bb10525b13b300cc28c2763a8737a4df9aaa0302d0a01a66 +size 2319343 diff --git a/save_data/IMG_20191215_112417_detect_result.jpg b/save_data/IMG_20191215_112417_detect_result.jpg new file mode 100644 index 0000000..6b086e4 --- /dev/null +++ b/save_data/IMG_20191215_112417_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bea416a649973bdaba1248beb1a5c434a24f54820bc197cc0a1403eef7985e5 +size 2527128 diff --git a/save_data/IMG_20191215_112419_detect_result.jpg b/save_data/IMG_20191215_112419_detect_result.jpg new file mode 100644 index 0000000..5058f58 --- /dev/null +++ b/save_data/IMG_20191215_112419_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6618610a485624a33746dbac777d1570794ab4faf60b879e75bb98cee509ec2f +size 2369912 diff --git a/save_data/IMG_20191215_112421_detect_result.jpg b/save_data/IMG_20191215_112421_detect_result.jpg new file mode 100644 index 0000000..a5f8e98 --- /dev/null +++ b/save_data/IMG_20191215_112421_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb6a9a0c4fe845c563d69d77b4906f9c24b49b014cf37ec63bd79a82791b090 +size 2410713 diff --git a/save_data/IMG_20191215_112424_detect_result.jpg b/save_data/IMG_20191215_112424_detect_result.jpg new file mode 100644 index 0000000..1d90191 --- /dev/null +++ b/save_data/IMG_20191215_112424_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88f2c38f66e79767481d3959ecee6354aae8067eddb3f2b1e67bd3e75c3239a +size 2556595 diff --git a/save_data/IMG_20191215_112426_detect_result.jpg b/save_data/IMG_20191215_112426_detect_result.jpg new file mode 100644 index 0000000..c8d711b --- /dev/null +++ b/save_data/IMG_20191215_112426_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001b0274ca992db41e9a9efdd0e1f90c506e6a29585bbecba1ce5951245691cd +size 2216617 diff --git a/save_data/IMG_20191215_112428_detect_result.jpg b/save_data/IMG_20191215_112428_detect_result.jpg new file mode 100644 index 0000000..caaa68f --- /dev/null +++ b/save_data/IMG_20191215_112428_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c112f42026a811cbb8211ba1ba7ee011d453b8cdda4e26fdd4279ecbabad7eb +size 1895947 diff --git a/save_data/IMG_20191215_112429_detect_result.jpg b/save_data/IMG_20191215_112429_detect_result.jpg new file mode 100644 index 0000000..c59c473 --- /dev/null +++ b/save_data/IMG_20191215_112429_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4675b140932a51fd763a8cd9b7c24ff80a6a96f5044737c0e4277f8305a88a +size 2107444 diff --git a/save_data/IMG_20191215_112431_detect_result.jpg b/save_data/IMG_20191215_112431_detect_result.jpg new file mode 100644 index 0000000..1a57e2d --- /dev/null +++ b/save_data/IMG_20191215_112431_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d843b4f7029b2416ad6c5e3097c15d305bf38b84b669281a00e5cfe284471d +size 2075619 diff --git a/save_data/IMG_20191215_112433_detect_result.jpg b/save_data/IMG_20191215_112433_detect_result.jpg new file mode 100644 index 0000000..5e2a240 --- /dev/null +++ b/save_data/IMG_20191215_112433_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a02566dd6e72bab4c5210f7ad04eb525e0eed81b1f9911f4d7e5b68f017fa8 +size 2147820 diff --git a/save_data/IMG_20191215_112436_detect_result.jpg b/save_data/IMG_20191215_112436_detect_result.jpg new file mode 100644 index 0000000..e67bd45 --- /dev/null +++ b/save_data/IMG_20191215_112436_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe555cb46bfda2f92836f2ef8ca265224a4b8268f6d23a242c397e0fd1ffc12 +size 2079696 diff --git a/save_data/IMG_20191215_112440_detect_result.jpg b/save_data/IMG_20191215_112440_detect_result.jpg new file mode 100644 index 0000000..3d6075b --- /dev/null +++ b/save_data/IMG_20191215_112440_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ec9dd150d0142c9d4dba9c38489508aa8d337a596bc2fbd16909ecf02860e1 +size 1595375 diff --git a/save_data/IMG_20191215_112443_detect_result.jpg b/save_data/IMG_20191215_112443_detect_result.jpg new file mode 100644 index 0000000..877a9cf --- /dev/null +++ b/save_data/IMG_20191215_112443_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9cc0b04d08f40f0e5e3226a61c92492cd0044e8f27d2125adab67c12187715 +size 2119705 diff --git a/save_data/IMG_20191215_112445_detect_result.jpg b/save_data/IMG_20191215_112445_detect_result.jpg new file mode 100644 index 0000000..13ff13e --- /dev/null +++ b/save_data/IMG_20191215_112445_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9055f8aab2aae82de03ad8c18644788ba4e8d54b1a29a9c4bbd7ef4a00d6c6 +size 1911667 diff --git a/save_data/IMG_20191215_112450_detect_result.jpg b/save_data/IMG_20191215_112450_detect_result.jpg new file mode 100644 index 0000000..7146067 --- /dev/null +++ b/save_data/IMG_20191215_112450_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e139820786e72787429cfccda568539997fa60d6524e4fe23711cae04802427e +size 2173578 diff --git a/save_data/IMG_20191215_112452_detect_result.jpg b/save_data/IMG_20191215_112452_detect_result.jpg new file mode 100644 index 0000000..3cf5313 --- /dev/null +++ b/save_data/IMG_20191215_112452_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9354d6d4ec0ec6d418d30f4f389add22ebf46c155565ec5d6052b8c04f1a1d +size 2393167 diff --git a/save_data/IMG_20191215_112455_detect_result.jpg b/save_data/IMG_20191215_112455_detect_result.jpg new file mode 100644 index 0000000..1266b92 --- /dev/null +++ b/save_data/IMG_20191215_112455_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd16429b7c92e566325f633cf0cec707f51f883f397624c876587a0651c11cc +size 1922991 diff --git a/save_data/IMG_20191215_112457_detect_result.jpg b/save_data/IMG_20191215_112457_detect_result.jpg new file mode 100644 index 0000000..3d30439 --- /dev/null +++ b/save_data/IMG_20191215_112457_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d507c079f77dc2e70b451ed9b40cef0e2d0aa3e9d85c4aa0b6973574ef10d5 +size 1736193 diff --git a/save_data/IMG_20191215_112500_detect_result.jpg b/save_data/IMG_20191215_112500_detect_result.jpg new file mode 100644 index 0000000..bbfc37c --- /dev/null +++ b/save_data/IMG_20191215_112500_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527221562faa76e58ed81eee8d56f355cfc1c260a47e5fd70c33d50e319cd4c3 +size 1699001 diff --git a/save_data/IMG_20191215_112504_detect_result.jpg b/save_data/IMG_20191215_112504_detect_result.jpg new file mode 100644 index 0000000..6b653df --- /dev/null +++ b/save_data/IMG_20191215_112504_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7751fda01e925b33fc4d7ad6fec39bb2e4085e0f1271e6687362e99daa2f64 +size 2239797 diff --git a/save_data/IMG_20191215_112506_detect_result.jpg b/save_data/IMG_20191215_112506_detect_result.jpg new file mode 100644 index 0000000..e77a62f --- /dev/null +++ b/save_data/IMG_20191215_112506_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cbd6ef5bf3ac11035fd69e2e574d2647ac5de2394973ca9972cb0f6ca8c438b +size 1984412 diff --git a/save_data/IMG_20191215_112508_detect_result.jpg b/save_data/IMG_20191215_112508_detect_result.jpg new file mode 100644 index 0000000..5cea66f --- /dev/null +++ b/save_data/IMG_20191215_112508_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c084ba7a41f3912af4fd5b7e53373481c55a81734b3e39cc36a09433fde259 +size 1813641 diff --git a/save_data/IMG_20191215_112509_detect_result.jpg b/save_data/IMG_20191215_112509_detect_result.jpg new file mode 100644 index 0000000..77233a8 --- /dev/null +++ b/save_data/IMG_20191215_112509_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f977029107cb4f07bb8da4bd62aa7249d79b9f1bd6fc0e5527dfd45e936ee4ef +size 1638625 diff --git a/save_data/IMG_20191215_112511_detect_result.jpg b/save_data/IMG_20191215_112511_detect_result.jpg new file mode 100644 index 0000000..ba3d9a4 --- /dev/null +++ b/save_data/IMG_20191215_112511_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c858a4ecc6fbb1d0057e5a923b1cf946c45c6501d8e6fc282be6908bdbad19a8 +size 1944279 diff --git a/save_data/IMG_20191215_112512_detect_result.jpg b/save_data/IMG_20191215_112512_detect_result.jpg new file mode 100644 index 0000000..65f0893 --- /dev/null +++ b/save_data/IMG_20191215_112512_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467c654e0097b38b6dfa3956eb9b0c6f834f1e3b6eb2e3cb3ad7bcf7467ec48e +size 1823149 diff --git a/save_data/IMG_20191215_112515_detect_result.jpg b/save_data/IMG_20191215_112515_detect_result.jpg new file mode 100644 index 0000000..e808e78 --- /dev/null +++ b/save_data/IMG_20191215_112515_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78eb2d27baa1e14db2c0bfd3c831797e778860c1cd81cbfbd771e8d71a5a937 +size 1761414 diff --git a/save_data/IMG_20191215_112516_detect_result.jpg b/save_data/IMG_20191215_112516_detect_result.jpg new file mode 100644 index 0000000..950ae77 --- /dev/null +++ b/save_data/IMG_20191215_112516_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be537ea99152a3e641865176cfb243e6830f4cd9832a87357a2ffb3be338ef9 +size 1775597 diff --git a/save_data/IMG_20191215_112517_detect_result.jpg b/save_data/IMG_20191215_112517_detect_result.jpg new file mode 100644 index 0000000..28b0cfd --- /dev/null +++ b/save_data/IMG_20191215_112517_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54322fde46a159652079481da53f4de13a8fef433ae0257533352a742cfcfe33 +size 2459364 diff --git a/save_data/IMG_20191215_112519_detect_result.jpg b/save_data/IMG_20191215_112519_detect_result.jpg new file mode 100644 index 0000000..78572d9 --- /dev/null +++ b/save_data/IMG_20191215_112519_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8e68faa073ed0ba1088409e35a7588bb58b1a9a18820e8c269f74ebc24caab +size 1791279 diff --git a/save_data/IMG_20191215_112523_detect_result.jpg b/save_data/IMG_20191215_112523_detect_result.jpg new file mode 100644 index 0000000..1867976 --- /dev/null +++ b/save_data/IMG_20191215_112523_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3355a42d3740e888c610789a1d4c691b9288f7780a8f5033d52794128b1e160a +size 2078767 diff --git a/save_data/IMG_20191215_112526_detect_result.jpg b/save_data/IMG_20191215_112526_detect_result.jpg new file mode 100644 index 0000000..4b5c5e8 --- /dev/null +++ b/save_data/IMG_20191215_112526_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a8a1df203885194cbf9480a1b1db5b4c9ea72862f0f346d88adc86345f9de5 +size 2416347 diff --git a/save_data/IMG_20191215_112527_detect_result.jpg b/save_data/IMG_20191215_112527_detect_result.jpg new file mode 100644 index 0000000..25970a8 --- /dev/null +++ b/save_data/IMG_20191215_112527_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14978777bda917916102eec2858543d5e876a02c6518defa6522317d06a99a1b +size 1611551 diff --git a/save_data/IMG_20191215_112529_detect_result.jpg b/save_data/IMG_20191215_112529_detect_result.jpg new file mode 100644 index 0000000..c0a0173 --- /dev/null +++ b/save_data/IMG_20191215_112529_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:826fe4938980d6ebadf4f656b5e260228a1571520dc53701eea91854fae74926 +size 1946003 diff --git a/save_data/IMG_20191215_112531_detect_result.jpg b/save_data/IMG_20191215_112531_detect_result.jpg new file mode 100644 index 0000000..00aae0f --- /dev/null +++ b/save_data/IMG_20191215_112531_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4f7d20a3a385c9b6641d07e49825d12354ab7a1e733323471d1a46661162a0 +size 1775843 diff --git a/save_data/IMG_20191215_112533_detect_result.jpg b/save_data/IMG_20191215_112533_detect_result.jpg new file mode 100644 index 0000000..fedf606 --- /dev/null +++ b/save_data/IMG_20191215_112533_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c59a5ff232f948157bc99eae257fa824c2fe2505cf069afa1d7216af7a0445d +size 1971755 diff --git a/save_data/IMG_20191215_112535_detect_result.jpg b/save_data/IMG_20191215_112535_detect_result.jpg new file mode 100644 index 0000000..9892dd7 --- /dev/null +++ b/save_data/IMG_20191215_112535_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c153765de5a3805c3ae198b935515305103537b5b90725ee829c7c157d8e41 +size 2250509 diff --git a/save_data/IMG_20191215_112539_detect_result.jpg b/save_data/IMG_20191215_112539_detect_result.jpg new file mode 100644 index 0000000..84c5a2a --- /dev/null +++ b/save_data/IMG_20191215_112539_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba854898e6d8016414095dd16cdf5d973b8b014c79ed0ed1ba8c577a9c66db65 +size 2127362 diff --git a/save_data/IMG_20191215_112541_detect_result.jpg b/save_data/IMG_20191215_112541_detect_result.jpg new file mode 100644 index 0000000..dbc11e1 --- /dev/null +++ b/save_data/IMG_20191215_112541_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8cb0654cc920630aa49168838ae994895a5cc3f90b8f218c166d6c5524acdf +size 2162661 diff --git a/save_data/IMG_20191215_112542_detect_result.jpg b/save_data/IMG_20191215_112542_detect_result.jpg new file mode 100644 index 0000000..423db42 --- /dev/null +++ b/save_data/IMG_20191215_112542_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84605703e90a34a0b72ffd2fff2e48cf625e43a31816139bb86bbab4700f6b9b +size 2552699 diff --git a/save_data/IMG_20191215_112543_detect_result.jpg b/save_data/IMG_20191215_112543_detect_result.jpg new file mode 100644 index 0000000..1339f2c --- /dev/null +++ b/save_data/IMG_20191215_112543_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521ea09f2b163ebefa7e65543bffeafa9cde978009ff620cf01df291b29f6fd3 +size 2037456 diff --git a/save_data/IMG_20191215_112544_detect_result.jpg b/save_data/IMG_20191215_112544_detect_result.jpg new file mode 100644 index 0000000..af8e930 --- /dev/null +++ b/save_data/IMG_20191215_112544_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75efa8282189398e445e75f8f8a1ee2d90e61c32d3a9a82897f0283326a3c73 +size 1961467 diff --git a/save_data/IMG_20191215_112546_detect_result.jpg b/save_data/IMG_20191215_112546_detect_result.jpg new file mode 100644 index 0000000..c48891b --- /dev/null +++ b/save_data/IMG_20191215_112546_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee355a288e89be91f6ce36733eb5562bf6da3a75de249d0c4103f3a476b5f52 +size 2438223 diff --git a/save_data/IMG_20191215_112548_detect_result.jpg b/save_data/IMG_20191215_112548_detect_result.jpg new file mode 100644 index 0000000..f7d4308 --- /dev/null +++ b/save_data/IMG_20191215_112548_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf32db5041f81126bee66b4f3aa7f0606dc7ff95888f678588b228fa9b3fe61 +size 2176004 diff --git a/save_data/IMG_20191215_112551_detect_result.jpg b/save_data/IMG_20191215_112551_detect_result.jpg new file mode 100644 index 0000000..c1e59ec --- /dev/null +++ b/save_data/IMG_20191215_112551_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7e63312222649eb7f99c17fac644bb5a492efdbfbf40d11099f9b3699b740c +size 2359807 diff --git a/save_data/IMG_20191215_112552_detect_result.jpg b/save_data/IMG_20191215_112552_detect_result.jpg new file mode 100644 index 0000000..3d4e26b --- /dev/null +++ b/save_data/IMG_20191215_112552_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee28a63acc04e7bce04f17959838e49448250e9b50fccce50cb6a19f554fc25b +size 2534575 diff --git a/save_data/IMG_20191215_112553_detect_result.jpg b/save_data/IMG_20191215_112553_detect_result.jpg new file mode 100644 index 0000000..d4f709b --- /dev/null +++ b/save_data/IMG_20191215_112553_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667125d02007698f8d0c3c107b91fee482b4f7e7a5f77a26693064756bc1f5b6 +size 2100215 diff --git a/save_data/IMG_20191215_112554_detect_result.jpg b/save_data/IMG_20191215_112554_detect_result.jpg new file mode 100644 index 0000000..7f822a9 --- /dev/null +++ b/save_data/IMG_20191215_112554_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e84288be756e452d2e9f591ba60d17d5bf9f496819368823658ae1e85d9d410 +size 2056782 diff --git a/save_data/IMG_20191215_112556_detect_result.jpg b/save_data/IMG_20191215_112556_detect_result.jpg new file mode 100644 index 0000000..48d1645 --- /dev/null +++ b/save_data/IMG_20191215_112556_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61140a9449b5dc2dd77f196722c55b042e85caf33d390bf77333ef4312d6d655 +size 1838183 diff --git a/save_data/IMG_20191215_112601_detect_result.jpg b/save_data/IMG_20191215_112601_detect_result.jpg new file mode 100644 index 0000000..4cd1a46 --- /dev/null +++ b/save_data/IMG_20191215_112601_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce8c8b44d72e01c76a2f4a26b94066f2dafb446a48ce707b094c7e28111d56e +size 1953258 diff --git a/save_data/IMG_20191215_112604_detect_result.jpg b/save_data/IMG_20191215_112604_detect_result.jpg new file mode 100644 index 0000000..4dbb216 --- /dev/null +++ b/save_data/IMG_20191215_112604_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800102a14034dfe0f3312e5bb600efc6deaeaab440ad49e2045664a62552f937 +size 2460985 diff --git a/save_data/IMG_20191215_112605_detect_result.jpg b/save_data/IMG_20191215_112605_detect_result.jpg new file mode 100644 index 0000000..16789c7 --- /dev/null +++ b/save_data/IMG_20191215_112605_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:649da6e34f79c6782ac7538d65796bee13673b1338afb5999c6ce943c4f23068 +size 2607541 diff --git a/save_data/IMG_20191215_112607_detect_result.jpg b/save_data/IMG_20191215_112607_detect_result.jpg new file mode 100644 index 0000000..b960064 --- /dev/null +++ b/save_data/IMG_20191215_112607_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2a478f7170dc687440893b8f483aaab5e89811a4914ecec199e816781739c3 +size 2288306 diff --git a/save_data/IMG_20191215_112609_detect_result.jpg b/save_data/IMG_20191215_112609_detect_result.jpg new file mode 100644 index 0000000..4b948b1 --- /dev/null +++ b/save_data/IMG_20191215_112609_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5618b8f80ff7c091d6ec5567bb6ae9305d8e0cb9a1840da005f2916ecd3abea6 +size 1831290 diff --git a/save_data/IMG_20191215_112611_detect_result.jpg b/save_data/IMG_20191215_112611_detect_result.jpg new file mode 100644 index 0000000..91e5c33 --- /dev/null +++ b/save_data/IMG_20191215_112611_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575a10fc532e9b732f99d1c788892799b781230fc17b707fa7499f3f6c42f182 +size 1800815 diff --git a/save_data/IMG_20191215_112612_detect_result.jpg b/save_data/IMG_20191215_112612_detect_result.jpg new file mode 100644 index 0000000..6c27a1f --- /dev/null +++ b/save_data/IMG_20191215_112612_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930b83f1aa376bdee491d83686bbe0496dfcf7892b9bae0034fe224c3d6c0973 +size 2714778 diff --git a/save_data/IMG_20191215_112613_detect_result.jpg b/save_data/IMG_20191215_112613_detect_result.jpg new file mode 100644 index 0000000..da11a0d --- /dev/null +++ b/save_data/IMG_20191215_112613_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70c549352da54f20444d3d8b4a524ca818a9277865f0453b49cdb4054707f3d +size 2392700 diff --git a/save_data/IMG_20191215_112614_detect_result.jpg b/save_data/IMG_20191215_112614_detect_result.jpg new file mode 100644 index 0000000..3a41d16 --- /dev/null +++ b/save_data/IMG_20191215_112614_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce807fa24f9a0604ddf22e3fc0aeda4176e334e9cceec3893dfa588b14e39fd1 +size 1921186 diff --git a/save_data/IMG_20191215_112616_detect_result.jpg b/save_data/IMG_20191215_112616_detect_result.jpg new file mode 100644 index 0000000..9de488f --- /dev/null +++ b/save_data/IMG_20191215_112616_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead213f301f803c4f0b50441262adb77269e6134139f3bc7e4f58dea33b59934 +size 2296031 diff --git a/save_data/IMG_20191215_112617_detect_result.jpg b/save_data/IMG_20191215_112617_detect_result.jpg new file mode 100644 index 0000000..ff51ae5 --- /dev/null +++ b/save_data/IMG_20191215_112617_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17674152520fab15da9e5faf3add66cccb6cc5385e517ca5d7e95ec8c31c8810 +size 1774323 diff --git a/save_data/IMG_20191215_112619_detect_result.jpg b/save_data/IMG_20191215_112619_detect_result.jpg new file mode 100644 index 0000000..5fdfb86 --- /dev/null +++ b/save_data/IMG_20191215_112619_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a96a323a7f9a1f1f3164ae3eff2d8ff7d47dd1098f86a747a93d283b8a6f38 +size 2059993 diff --git a/save_data/IMG_20191215_112621_detect_result.jpg b/save_data/IMG_20191215_112621_detect_result.jpg new file mode 100644 index 0000000..1db2186 --- /dev/null +++ b/save_data/IMG_20191215_112621_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b0b9d93803505b4cd6cd50b12739baf366a9ee339e5f817bc249318fd1a264 +size 1822547 diff --git a/save_data/IMG_20191215_112622_detect_result.jpg b/save_data/IMG_20191215_112622_detect_result.jpg new file mode 100644 index 0000000..ab042b7 --- /dev/null +++ b/save_data/IMG_20191215_112622_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa0b2c4ddab7f2a437ee6329dded7a26e239baa75699214244219881914a122 +size 2166129 diff --git a/save_data/IMG_20191215_112623_detect_result.jpg b/save_data/IMG_20191215_112623_detect_result.jpg new file mode 100644 index 0000000..65f4489 --- /dev/null +++ b/save_data/IMG_20191215_112623_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a07a6572abe2117581b21abf6ed90ae6e090402e586617a909d88943b3aa35 +size 2068495 diff --git a/save_data/IMG_20191215_112626_detect_result.jpg b/save_data/IMG_20191215_112626_detect_result.jpg new file mode 100644 index 0000000..95d6d79 --- /dev/null +++ b/save_data/IMG_20191215_112626_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33f57b36091f8a68b90d08f295304bb7250fbbd7beb52a4eda9a42b3f3e2159 +size 1977725 diff --git a/save_data/IMG_20191215_112628_detect_result.jpg b/save_data/IMG_20191215_112628_detect_result.jpg new file mode 100644 index 0000000..31b7f15 --- /dev/null +++ b/save_data/IMG_20191215_112628_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9098513d160eac7a0ca26e164544de184403c9cba03ed8566e871d267c9e301 +size 1981178 diff --git a/save_data/IMG_20191215_112630_detect_result.jpg b/save_data/IMG_20191215_112630_detect_result.jpg new file mode 100644 index 0000000..55b466a --- /dev/null +++ b/save_data/IMG_20191215_112630_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381ebd202035b6e9b8a8ca42324b2737d98fa216abcb22dbced19ea75ff67b6a +size 2065554 diff --git a/save_data/IMG_20191215_112634_detect_result.jpg b/save_data/IMG_20191215_112634_detect_result.jpg new file mode 100644 index 0000000..f99ff41 --- /dev/null +++ b/save_data/IMG_20191215_112634_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd382b8795ed62cfeba6928ae3db5404e8cb0158b37000ca003435c45b417fe +size 2196899 diff --git a/save_data/IMG_20191215_112635_detect_result.jpg b/save_data/IMG_20191215_112635_detect_result.jpg new file mode 100644 index 0000000..e286a66 --- /dev/null +++ b/save_data/IMG_20191215_112635_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd3aa9756362e3eb0ee4a347e440078d72a38209e99e35b3dbd0f6d957609ee +size 1619707 diff --git a/save_data/IMG_20191215_112641_detect_result.jpg b/save_data/IMG_20191215_112641_detect_result.jpg new file mode 100644 index 0000000..f571bf6 --- /dev/null +++ b/save_data/IMG_20191215_112641_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c05cc9a0a32e2d1062db192aeb2c7c859a218d3f3b908806816089a36b7a194 +size 2444085 diff --git a/save_data/IMG_20191215_112643_detect_result.jpg b/save_data/IMG_20191215_112643_detect_result.jpg new file mode 100644 index 0000000..56d67a2 --- /dev/null +++ b/save_data/IMG_20191215_112643_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a0013292b36e47d994a77fdf2a136090fe8f4d740298e91523215518f2fa754 +size 2185182 diff --git a/save_data/IMG_20191215_112708_detect_result.jpg b/save_data/IMG_20191215_112708_detect_result.jpg new file mode 100644 index 0000000..c7f8eed --- /dev/null +++ b/save_data/IMG_20191215_112708_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b36903fb82f2dd480aa64051cd7468c41cb40ecc72678333c12653631276896 +size 3264796 diff --git a/save_data/IMG_20191215_112711_detect_result.jpg b/save_data/IMG_20191215_112711_detect_result.jpg new file mode 100644 index 0000000..98b3503 --- /dev/null +++ b/save_data/IMG_20191215_112711_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcee06f45408ba3cf1d237728e9f8d044b223980847b192c6a01a777fc7248db +size 3451290 diff --git a/save_data/IMG_20191215_112715_detect_result.jpg b/save_data/IMG_20191215_112715_detect_result.jpg new file mode 100644 index 0000000..6bbfd91 --- /dev/null +++ b/save_data/IMG_20191215_112715_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764acf94a04bbd6033ac6c92323a175ad632414940b6b3666033fc2db31c57eb +size 3130915 diff --git a/save_data/IMG_20191215_112718_detect_result.jpg b/save_data/IMG_20191215_112718_detect_result.jpg new file mode 100644 index 0000000..eacc619 --- /dev/null +++ b/save_data/IMG_20191215_112718_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0811c56f5ebbb8c4bb0ff93fe4584e7154980ba2eb41aabf75d19651233af5b5 +size 2859218 diff --git a/save_data/IMG_20191215_112738_detect_result.jpg b/save_data/IMG_20191215_112738_detect_result.jpg new file mode 100644 index 0000000..c9f746e --- /dev/null +++ b/save_data/IMG_20191215_112738_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de54c68e15c362828e4061908ce7a6cb937bced0e84afe7bf4fd61a5601a2baf +size 3605227 diff --git a/save_data/IMG_20191215_112740_detect_result.jpg b/save_data/IMG_20191215_112740_detect_result.jpg new file mode 100644 index 0000000..a7d4320 --- /dev/null +++ b/save_data/IMG_20191215_112740_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c9ce8db017f0cc8a59e3c7e03210eeab0bcabb051f395522bf3d39107070a6 +size 3239607 diff --git a/save_data/IMG_20191215_112805_detect_result.jpg b/save_data/IMG_20191215_112805_detect_result.jpg new file mode 100644 index 0000000..01b02c9 --- /dev/null +++ b/save_data/IMG_20191215_112805_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac742b7376a317f7a5d7717314f06f512f4da2b33d7ffc44f703a2e6e4b4991 +size 2872058 diff --git a/save_data/IMG_20191215_112807_detect_result.jpg b/save_data/IMG_20191215_112807_detect_result.jpg new file mode 100644 index 0000000..2dd4291 --- /dev/null +++ b/save_data/IMG_20191215_112807_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94906c355396074125cdcf67b6001c127253f421f634eb3ac54760d9ff303eb1 +size 2961355 diff --git a/save_data/IMG_20191215_112810_detect_result.jpg b/save_data/IMG_20191215_112810_detect_result.jpg new file mode 100644 index 0000000..55e9fd2 --- /dev/null +++ b/save_data/IMG_20191215_112810_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0484bfcb1761001b50c9acf10c131e31353fc2c063239b73e7843565f74873e7 +size 2711992 diff --git a/save_data/IMG_20191215_112814_detect_result.jpg b/save_data/IMG_20191215_112814_detect_result.jpg new file mode 100644 index 0000000..aebad58 --- /dev/null +++ b/save_data/IMG_20191215_112814_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93cd6d2fa20af649261befc1752fdf0b28e9b505574aa95d04607fce5ddba5a +size 2741287 diff --git a/save_data/IMG_20191215_112828_detect_result.jpg b/save_data/IMG_20191215_112828_detect_result.jpg new file mode 100644 index 0000000..8803103 --- /dev/null +++ b/save_data/IMG_20191215_112828_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ebe5320d6be0de0298a7cedf3b9711552a4c8ec8e37bcaf160efbc348202c1 +size 2784702 diff --git a/save_data/IMG_20191215_112831_detect_result.jpg b/save_data/IMG_20191215_112831_detect_result.jpg new file mode 100644 index 0000000..17ad1cb --- /dev/null +++ b/save_data/IMG_20191215_112831_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39717b93b49924933d92b9fb2a991ab1466ea22f3edddde12344ab55074b2fb3 +size 3685708 diff --git a/save_data/IMG_20191215_112834_1_detect_result.jpg b/save_data/IMG_20191215_112834_1_detect_result.jpg new file mode 100644 index 0000000..02ea938 --- /dev/null +++ b/save_data/IMG_20191215_112834_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be209bb932d5c01499441a45e58e7585cc8f6298f91e0e5f02c25a74ec22179a +size 2740696 diff --git a/save_data/IMG_20191215_112834_detect_result.jpg b/save_data/IMG_20191215_112834_detect_result.jpg new file mode 100644 index 0000000..7d21c33 --- /dev/null +++ b/save_data/IMG_20191215_112834_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488c29446bec2a044f6ba8e8ed0662670390a8c3e1146ac908b47295ab6c9d1f +size 2838070 diff --git a/save_data/IMG_20191215_112836_detect_result.jpg b/save_data/IMG_20191215_112836_detect_result.jpg new file mode 100644 index 0000000..8a44850 --- /dev/null +++ b/save_data/IMG_20191215_112836_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0672461133b11e9ca53bd7643e33608f109cf2824f2d03f05cc23624f289a3c1 +size 2417616 diff --git a/save_data/IMG_20191215_112838_detect_result.jpg b/save_data/IMG_20191215_112838_detect_result.jpg new file mode 100644 index 0000000..7276d8a --- /dev/null +++ b/save_data/IMG_20191215_112838_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303b97d9385331fbd27ad2d4866b0d84793177b58818b60b1187d14295f43d46 +size 2844197 diff --git a/save_data/IMG_20191215_112843_detect_result.jpg b/save_data/IMG_20191215_112843_detect_result.jpg new file mode 100644 index 0000000..011fcfe --- /dev/null +++ b/save_data/IMG_20191215_112843_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28915f69f28bc0c36c738ead0a01bc6c4bb1ed359c4875d481e03b5861c872e +size 3350624 diff --git a/save_data/IMG_20191215_112844_1_detect_result.jpg b/save_data/IMG_20191215_112844_1_detect_result.jpg new file mode 100644 index 0000000..177974e --- /dev/null +++ b/save_data/IMG_20191215_112844_1_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d2df923d3928b54f46a0b7119f2178b5328138c0065c630504dda293c606b9 +size 3068423 diff --git a/save_data/IMG_20191215_112844_detect_result.jpg b/save_data/IMG_20191215_112844_detect_result.jpg new file mode 100644 index 0000000..d9b1149 --- /dev/null +++ b/save_data/IMG_20191215_112844_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de52c70e41e0c2341cda3f2f8a780e72c4d167c7b94df379e038637d56ff927 +size 2685580 diff --git a/save_data/IMG_20191215_112848_detect_result.jpg b/save_data/IMG_20191215_112848_detect_result.jpg new file mode 100644 index 0000000..371854b --- /dev/null +++ b/save_data/IMG_20191215_112848_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abed4e8fd1330221707dde23b652bccb2357e5dc39e48e0a762d0943ed0c7aa4 +size 2617683 diff --git a/save_data/IMG_20191215_112853_detect_result.jpg b/save_data/IMG_20191215_112853_detect_result.jpg new file mode 100644 index 0000000..616d41d --- /dev/null +++ b/save_data/IMG_20191215_112853_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc22eebcb4927dcd3a9e388c2fddf4f8c92593323c6c51d2d4430a0eca22945b +size 2814350 diff --git a/save_data/IMG_20191215_112854_detect_result.jpg b/save_data/IMG_20191215_112854_detect_result.jpg new file mode 100644 index 0000000..a855808 --- /dev/null +++ b/save_data/IMG_20191215_112854_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425351a8828dc3c5b8c825c380a84c75d4dd2e70d35e3e035933bb3749d6d9b0 +size 3021316 diff --git a/save_data/IMG_20191215_112858_detect_result.jpg b/save_data/IMG_20191215_112858_detect_result.jpg new file mode 100644 index 0000000..f76f6f9 --- /dev/null +++ b/save_data/IMG_20191215_112858_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca41bf6c561cf5ceb583ef896ba5b303a103ecd1ffbcef08efba597c168324f6 +size 3126125 diff --git a/save_data/IMG_20191215_112901_detect_result.jpg b/save_data/IMG_20191215_112901_detect_result.jpg new file mode 100644 index 0000000..fac3cca --- /dev/null +++ b/save_data/IMG_20191215_112901_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77d0e028291fb50448c7d75d718ea8d94192fa5c57dc1fd629c75439f378eed +size 2761760 diff --git a/save_data/IMG_20191215_112904_detect_result.jpg b/save_data/IMG_20191215_112904_detect_result.jpg new file mode 100644 index 0000000..aa01664 --- /dev/null +++ b/save_data/IMG_20191215_112904_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bafd2d407c2647e6c0da5b228521fce8647af8249cad73ef82f9363203b8f9 +size 3146082 diff --git a/save_data/IMG_20191215_112907_detect_result.jpg b/save_data/IMG_20191215_112907_detect_result.jpg new file mode 100644 index 0000000..9421409 --- /dev/null +++ b/save_data/IMG_20191215_112907_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73c19cf15322a687d7ba33ce933ebbf585d19b15d94fa717ac233f97f088f2c +size 2556940 diff --git a/save_data/IMG_20191215_112909_detect_result.jpg b/save_data/IMG_20191215_112909_detect_result.jpg new file mode 100644 index 0000000..a762347 --- /dev/null +++ b/save_data/IMG_20191215_112909_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b3d22d3d8d391a21c8f3ea8f1f7dd69881eed38b5536a75c46453314540b2d +size 2336889 diff --git a/save_data/IMG_20191215_112911_detect_result.jpg b/save_data/IMG_20191215_112911_detect_result.jpg new file mode 100644 index 0000000..66f18c9 --- /dev/null +++ b/save_data/IMG_20191215_112911_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a339a28279c958152ed7e75bf45adf8024748470db73298a043ce52b28fb02b8 +size 3004822 diff --git a/save_data/IMG_20191215_112914_detect_result.jpg b/save_data/IMG_20191215_112914_detect_result.jpg new file mode 100644 index 0000000..0966537 --- /dev/null +++ b/save_data/IMG_20191215_112914_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cb0578387c8dd52f017b8fb2f93b2099119236bd535ed43e12432322c8625a +size 2746298 diff --git a/save_data/IMG_20191215_112918_detect_result.jpg b/save_data/IMG_20191215_112918_detect_result.jpg new file mode 100644 index 0000000..3ad797e --- /dev/null +++ b/save_data/IMG_20191215_112918_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4289d146380be316f18b02a35ce80a9e2a2c7d4c05b7487b02c5eeb76d60fd1e +size 2710485 diff --git a/save_data/IMG_20191215_112922_detect_result.jpg b/save_data/IMG_20191215_112922_detect_result.jpg new file mode 100644 index 0000000..9180db6 --- /dev/null +++ b/save_data/IMG_20191215_112922_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9f0367686f9530381098c5a07211652d9ee649bccd41e98387916c7d495c4f +size 2908972 diff --git a/save_data/IMG_20191215_112926_detect_result.jpg b/save_data/IMG_20191215_112926_detect_result.jpg new file mode 100644 index 0000000..72d3080 --- /dev/null +++ b/save_data/IMG_20191215_112926_detect_result.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fc5f05c072dd25ccc85ae57f585b2bad9cf12dec0dbe0e62a00d0c0ece9f767 +size 2760918 diff --git a/save_data/Riped tomato_121_detect_result.jpeg b/save_data/Riped tomato_121_detect_result.jpeg new file mode 100644 index 0000000..cf0b8b5 Binary files /dev/null and b/save_data/Riped tomato_121_detect_result.jpeg differ diff --git a/save_data/Riped tomato_123_detect_result.jpeg b/save_data/Riped tomato_123_detect_result.jpeg new file mode 100644 index 0000000..9b63e7c Binary files /dev/null and b/save_data/Riped tomato_123_detect_result.jpeg differ diff --git a/save_data/Riped tomato_20_detect_result.jpeg b/save_data/Riped tomato_20_detect_result.jpeg new file mode 100644 index 0000000..6ad622f Binary files /dev/null and b/save_data/Riped tomato_20_detect_result.jpeg differ diff --git a/save_data/Riped tomato_29_detect_result.jpeg b/save_data/Riped tomato_29_detect_result.jpeg new file mode 100644 index 0000000..73e9c0c Binary files /dev/null and b/save_data/Riped tomato_29_detect_result.jpeg differ diff --git a/save_data/Riped tomato_31_detect_result.jpeg b/save_data/Riped tomato_31_detect_result.jpeg new file mode 100644 index 0000000..752ebc9 Binary files /dev/null and b/save_data/Riped tomato_31_detect_result.jpeg differ diff --git a/save_data/Riped tomato_35_detect_result.jpeg b/save_data/Riped tomato_35_detect_result.jpeg new file mode 100644 index 0000000..b3f02a0 Binary files /dev/null and b/save_data/Riped tomato_35_detect_result.jpeg differ diff --git a/save_data/Riped tomato_54_detect_result.jpeg b/save_data/Riped tomato_54_detect_result.jpeg new file mode 100644 index 0000000..ca0a2fc Binary files /dev/null and b/save_data/Riped tomato_54_detect_result.jpeg differ diff --git a/save_data/Riped tomato_8_detect_result.jpeg b/save_data/Riped tomato_8_detect_result.jpeg new file mode 100644 index 0000000..82c90a8 Binary files /dev/null and b/save_data/Riped tomato_8_detect_result.jpeg differ diff --git a/save_data/unriped tomato_142_detect_result.jpeg b/save_data/unriped tomato_142_detect_result.jpeg new file mode 100644 index 0000000..c20f116 Binary files /dev/null and b/save_data/unriped tomato_142_detect_result.jpeg differ diff --git a/save_data/unriped tomato_294_detect_result.jpeg b/save_data/unriped tomato_294_detect_result.jpeg new file mode 100644 index 0000000..43f404f Binary files /dev/null and b/save_data/unriped tomato_294_detect_result.jpeg differ diff --git a/save_data/unriped tomato_46_detect_result.png b/save_data/unriped tomato_46_detect_result.png new file mode 100644 index 0000000..7a86e9b --- /dev/null +++ b/save_data/unriped tomato_46_detect_result.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed6e6660e70efe7cf790d6198e1cba7e668e337fd635d85241476fbf4366446 +size 583165 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7d9917b --- /dev/null +++ b/setup.py @@ -0,0 +1,105 @@ +# Ultralytics YOLO 🚀, AGPL-3.0 license + +import re +from pathlib import Path + +from setuptools import setup + +# Settings +FILE = Path(__file__).resolve() +PARENT = FILE.parent # root directory +README = (PARENT / 'README.md').read_text(encoding='utf-8') + + +def get_version(): + """ + Retrieve the version number from the 'ultralytics/__init__.py' file. + + Returns: + (str): The version number extracted from the '__version__' attribute in the 'ultralytics/__init__.py' file. + """ + file = PARENT / 'ultralytics/__init__.py' + return re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', file.read_text(encoding='utf-8'), re.M)[1] + + +def parse_requirements(file_path: Path): + """ + Parse a requirements.txt file, ignoring lines that start with '#' and any text after '#'. + + Args: + file_path (str | Path): Path to the requirements.txt file. + + Returns: + (List[str]): List of parsed requirements. + """ + + requirements = [] + for line in Path(file_path).read_text().splitlines(): + line = line.strip() + if line and not line.startswith('#'): + requirements.append(line.split('#')[0].strip()) # ignore inline comments + + return requirements + + +setup( + name='ultralytics', # name of pypi package + version=get_version(), # version of pypi package + python_requires='>=3.8', + license='AGPL-3.0', + description=('Ultralytics YOLOv8 for SOTA object detection, multi-object tracking, instance segmentation, ' + 'pose estimation and image classification.'), + long_description=README, + long_description_content_type='text/markdown', + url='https://github.com/ultralytics/ultralytics', + project_urls={ + 'Bug Reports': 'https://github.com/ultralytics/ultralytics/issues', + 'Funding': 'https://ultralytics.com', + 'Source': 'https://github.com/ultralytics/ultralytics'}, + author='Ultralytics', + author_email='hello@ultralytics.com', + packages=['ultralytics'] + [str(x) for x in Path('ultralytics').rglob('*/') if x.is_dir() and '__' not in str(x)], + package_data={ + '': ['*.yaml'], + 'ultralytics.assets': ['*.jpg']}, + include_package_data=True, + install_requires=parse_requirements(PARENT / 'requirements.txt'), + extras_require={ + 'dev': [ + 'ipython', + 'check-manifest', + 'pre-commit', + 'pytest', + 'pytest-cov', + 'coverage', + 'mkdocs-material', + 'mkdocstrings[python]', + 'mkdocs-redirects', # for 301 redirects + 'mkdocs-ultralytics-plugin>=0.0.32', # for meta descriptions and images, dates and authors + ], + 'export': [ + 'coremltools>=7.0', + 'openvino-dev>=2023.0', + 'tensorflow<=2.13.1', + 'tensorflowjs', # automatically installs tensorflow + ], }, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Topic :: Software Development', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Scientific/Engineering :: Image Recognition', + 'Operating System :: POSIX :: Linux', + 'Operating System :: MacOS', + 'Operating System :: Microsoft :: Windows', ], + keywords='machine-learning, deep-learning, vision, ML, DL, AI, YOLO, YOLOv3, YOLOv5, YOLOv8, HUB, Ultralytics', + entry_points={'console_scripts': ['yolo = ultralytics.cfg:entrypoint', 'ultralytics = ultralytics.cfg:entrypoint']}) diff --git a/test.py b/test.py new file mode 100644 index 0000000..28cba72 --- /dev/null +++ b/test.py @@ -0,0 +1,8 @@ +import torch +print(f"PyTorch版本: {torch.__version__}") +print(f"CUDA可用: {torch.cuda.is_available()}") +if torch.cuda.is_available(): + print(f"当前设备: {torch.cuda.current_device()}") + print(f"设备名称: {torch.cuda.get_device_name(0)}") +else: + print("未检测到可用GPU设备") diff --git a/test_seg_label.py b/test_seg_label.py new file mode 100644 index 0000000..5ad0c47 --- /dev/null +++ b/test_seg_label.py @@ -0,0 +1,49 @@ +""" +快速测试单个标注文件格式 +用于验证从CVAT导出的多边形标注是否正确 +""" +import sys +from verify_seg_labels import verify_yolo_seg_format, visualize_seg_label + +def test_label_file(label_path, img_path=None): + """测试单个标注文件""" + print(f"验证标注文件: {label_path}") + print("-" * 60) + + result = verify_yolo_seg_format(label_path, img_path, show_visualization=(img_path is not None)) + + if result["valid"]: + print("✓ 格式正确!") + print(f" 类别ID: {result['class_id']}") + print(f" 多边形顶点数: {result['num_points']}") + print(f" 坐标值数量: {result['coords_count']}") + else: + print("✗ 格式错误!") + + if result["errors"]: + print("错误信息:") + for error in result["errors"]: + print(f" - {error}") + + if result["warnings"]: + print("警告信息:") + for warning in result["warnings"]: + print(f" - {warning}") + + if img_path and result["valid"]: + print("\n显示可视化结果...") + visualize_seg_label(img_path, label_path) + +if __name__ == '__main__': + if len(sys.argv) < 2: + print("使用方法: python test_seg_label.py [image_file]") + print("\n示例:") + print(" python test_seg_label.py datasets/搭电设备/train/labels/your_file.txt") + print(" python test_seg_label.py datasets/搭电设备/train/labels/your_file.txt datasets/搭电设备/train/images/your_file.jpg") + sys.exit(1) + + label_path = sys.argv[1] + img_path = sys.argv[2] if len(sys.argv) > 2 else None + + test_label_file(label_path, img_path) + diff --git a/train.py b/train.py new file mode 100644 index 0000000..a300273 --- /dev/null +++ b/train.py @@ -0,0 +1,15 @@ +from ultralytics import YOLO + + +# 加载预训练模型 +model = YOLO("yolo11n.pt") +# Use the model +if __name__ == '__main__': + # Use the model + results = model.train(data='datasets/TomatoData/data.yaml', epochs=20, batch=4) # 训练模型 + # results = model.train(data='datasets/TomatoData/data.yaml', epochs=250, batch=4) # 训练模型 + # 将模型转为onnx格式 + # success = model.export(format='onnx') + + + diff --git a/train_all_datasets.py b/train_all_datasets.py new file mode 100644 index 0000000..a1c2869 --- /dev/null +++ b/train_all_datasets.py @@ -0,0 +1,122 @@ +""" +通用训练脚本 - 可以快速训练不同的数据集 +使用方法:python train_all_datasets.py 数据集名称 +示例:python train_all_datasets.py 仪表盘 +""" +import sys +import os +from train_segmentation import train_segmentation_model + + +# 数据集配置字典 +DATASET_CONFIGS = { + "搭电设备": { + "path": "datasets/搭电设备/data.yaml", + "model": "yolov8n-seg.pt", + "epochs": 100, + "batch": 8, + }, + "仪表盘": { + "path": "datasets/仪表盘/data.yaml", + "model": "yolov8n-seg.pt", + "epochs": 100, + "batch": 8, + }, + "检测仪": { + "path": "datasets/检测仪/data.yaml", + "model": "yolov8n-seg.pt", + "epochs": 100, + "batch": 8, + }, + "猫狗": { + "path": "datasets/猫狗/data.yaml", + "model": "yolov8n-seg.pt", + "epochs": 100, + "batch": 8, + }, + "搭电测试": { + "path": "datasets/搭电测试/data.yaml", + "model": "yolov8n-seg.pt", + "epochs": 50, + "batch": 8, + }, +} + + +def list_available_datasets(): + """列出所有可用的数据集""" + print("可用的数据集:") + print("-" * 50) + for name, config in DATASET_CONFIGS.items(): + exists = "✓" if os.path.exists(config["path"]) else "✗" + print(f"{exists} {name:15} - {config['path']}") + print("-" * 50) + + +def train_dataset(dataset_name, custom_config=None): + """ + 训练指定的数据集 + + Args: + dataset_name: 数据集名称 + custom_config: 自定义配置字典(可选) + """ + if dataset_name not in DATASET_CONFIGS: + print(f"错误: 未找到数据集 '{dataset_name}'") + print("\n可用的数据集:") + for name in DATASET_CONFIGS.keys(): + print(f" - {name}") + return + + config = DATASET_CONFIGS[dataset_name].copy() + + # 如果提供了自定义配置,合并 + if custom_config: + config.update(custom_config) + + # 检查数据集文件是否存在 + if not os.path.exists(config["path"]): + print(f"错误: 数据集配置文件不存在: {config['path']}") + return + + print(f"开始训练数据集: {dataset_name}") + print(f"配置文件: {config['path']}") + print("-" * 50) + + # 开始训练 + train_segmentation_model( + dataset_path=config["path"], + model_name=config["model"], + epochs=config["epochs"], + batch=config["batch"], + imgsz=640, + device="cpu" # 可以根据需要修改为 "cuda" + ) + + +def main(): + """主函数""" + if len(sys.argv) < 2: + print("使用方法: python train_all_datasets.py <数据集名称>") + print("\n示例:") + print(" python train_all_datasets.py 搭电设备") + print(" python train_all_datasets.py 仪表盘") + print(" python train_all_datasets.py 检测仪") + print("\n" + "=" * 50) + list_available_datasets() + return + + dataset_name = sys.argv[1] + + # 检查是否是特殊命令 + if dataset_name == "list": + list_available_datasets() + return + + # 开始训练 + train_dataset(dataset_name) + + +if __name__ == '__main__': + main() + diff --git a/train_cat_dog.py b/train_cat_dog.py new file mode 100644 index 0000000..bccc5d8 --- /dev/null +++ b/train_cat_dog.py @@ -0,0 +1,17 @@ +from ultralytics import YOLO + +def main(): + # 加载预训练模型 + model = YOLO("yolov8n.pt") # 使用YOLOv8 nano版本 + + # 开始训练 + results = model.train( + data="datasets/猫狗/data.yaml", + epochs=100, + batch=8, + imgsz=640, + device="cpu" # 使用GPU,如果是CPU则设为"cpu" + ) + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/train_dashboard.py b/train_dashboard.py new file mode 100644 index 0000000..dc8e49d --- /dev/null +++ b/train_dashboard.py @@ -0,0 +1,18 @@ +from ultralytics import YOLO + + +def main(): + # 加载预训练模型 + model = YOLO("yolov8n.pt") # 使用YOLOv8 nano版本 + + # 开始训练 + results = model.train( + data="datasets/仪表盘/data.yaml", + epochs=100, + batch=8, + imgsz=640, + device="cpu" # 使用GPU,如果是CPU则设为"cpu" + ) + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/train_jumper_cable.py b/train_jumper_cable.py new file mode 100644 index 0000000..4a07550 --- /dev/null +++ b/train_jumper_cable.py @@ -0,0 +1,47 @@ +from ultralytics import YOLO +import os + + +def main(): + """ + 训练搭电设备分割模型(支持多边形标注) + 如果标注是边界框格式,使用 yolov8n.pt + 如果标注是多边形格式,使用 yolov8n-seg.pt + """ + # 检查标注格式,决定使用哪种模型 + label_file = "datasets/搭电设备/train/labels/订单1804634_54_7089744.txt" + use_segmentation = False + + if os.path.exists(label_file): + with open(label_file, 'r') as f: + line = f.readline().strip() + parts = line.split() + # 如果坐标数量 > 5 (class_id + 4个边界框坐标),说明是多边形格式 + if len(parts) > 5: + use_segmentation = True + print("检测到多边形标注格式,使用分割模型") + else: + print("检测到边界框标注格式,使用检测模型") + + # 根据标注格式选择模型 + if use_segmentation: + model = YOLO("yolov8n-seg.pt") # 分割模型(支持多边形) + task = "segment" + else: + model = YOLO("yolov8n.pt") # 检测模型(边界框) + task = "detect" + + # 开始训练 + results = model.train( + data="datasets/搭电设备/data.yaml", + epochs=100, + batch=8, + imgsz=640, + device="cpu", # 使用GPU,如果是CPU则设为"cpu" + task=task # 明确指定任务类型 + ) + + print(f"训练完成!模型保存在: {results.save_dir}") + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/train_segmentation.py b/train_segmentation.py new file mode 100644 index 0000000..3df2ed7 --- /dev/null +++ b/train_segmentation.py @@ -0,0 +1,98 @@ +from ultralytics import YOLO +import os + + +def train_segmentation_model( + dataset_path="datasets/xianshiping/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" +): + """ + 训练YOLO分割模型(实例分割,支持多边形标注) + + Args: + dataset_path: 数据集配置文件路径 + model_name: 预训练模型名称 + 可选: "yolov8n-seg.pt", "yolov8s-seg.pt", "yolov8m-seg.pt", + "yolov8l-seg.pt", "yolov8x-seg.pt" + 或 "yolo11n-seg.pt", "yolo11s-seg.pt" 等 + epochs: 训练轮数 + batch: 批次大小 + imgsz: 图片尺寸 + device: 设备,"cpu" 或 "cuda" 或 "0" (GPU编号) + """ + # 检查数据集配置文件是否存在 + if not os.path.exists(dataset_path): + print(f"错误: 数据集配置文件不存在: {dataset_path}") + return + + # 检查模型文件是否存在,如果不存在会自动下载 + print(f"加载模型: {model_name}") + model = YOLO(model_name) + + print(f"开始训练分割模型...") + print(f"数据集: {dataset_path}") + print(f"训练轮数: {epochs}") + print(f"批次大小: {batch}") + print(f"图片尺寸: {imgsz}") + print(f"设备: {device}") + + # 自动检测并使用最佳设备 + import torch + if device == "cpu": + # 检查是否有Apple Silicon GPU (MPS) + if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available(): + device = "mps" + print("✓ 检测到Apple Silicon GPU,使用MPS加速训练") + # 检查是否有CUDA GPU + elif torch.cuda.is_available(): + device = "cuda" + print("✓ 检测到CUDA GPU,使用GPU加速训练") + else: + print("⚠ 使用CPU训练(较慢,建议使用GPU)") + + print("-" * 50) + + # 开始训练 + results = model.train( + data=dataset_path, + epochs=epochs, + batch=batch, + imgsz=imgsz, + device=device, + task="segment", # 明确指定分割任务 + project="runs/segment", # 保存到segment目录 + name="train", # 训练名称 + ) + + print("-" * 50) + print("训练完成!") + print(f"模型保存在: {results.save_dir}") + + return results + + +def main(): + """主函数 - 训练检测仪数据集""" + # 数据集信息: + # - 训练集: 978张图片 + # - 验证集: 245张图片 + # - 总计: 1223张图片 + # - 类别: 6个(搭电线、拖车上有车、仪表盘、轮胎、平安马甲、检测仪) + + train_segmentation_model( + dataset_path="datasets/pinganmajia/data.yaml", + model_name="yolov8n-seg.pt", # 使用YOLOv8 nano分割模型 + epochs=150, # 1223张照片,建议150轮(配合早停) + batch=8, # CPU/MPS建议8,GPU可以16-32 + imgsz=640, # 图片尺寸 + device="cpu" # 自动检测并使用最佳设备(MPS/GPU/CPU) + ) + + +if __name__ == '__main__': + main() + diff --git a/verify_seg_labels.py b/verify_seg_labels.py new file mode 100644 index 0000000..a1bfdfd --- /dev/null +++ b/verify_seg_labels.py @@ -0,0 +1,230 @@ +""" +验证YOLO分割标注格式的工具脚本 +用于检查从CVAT导出的多边形标注是否正确 +""" +import os +import cv2 +import numpy as np +from pathlib import Path + + +def verify_yolo_seg_format(label_path, img_path=None, show_visualization=False): + """ + 验证YOLO分割标注格式 + + Args: + label_path: 标注文件路径 + img_path: 对应的图片路径(可选,用于可视化) + show_visualization: 是否显示可视化结果 + + Returns: + dict: 验证结果信息 + """ + result = { + "valid": False, + "class_id": None, + "num_points": 0, + "coords_count": 0, + "errors": [], + "warnings": [] + } + + if not os.path.exists(label_path): + result["errors"].append(f"文件不存在: {label_path}") + return result + + try: + with open(label_path, 'r', encoding='utf-8') as f: + lines = f.readlines() + except Exception as e: + result["errors"].append(f"读取文件失败: {e}") + return result + + if not lines: + result["warnings"].append("文件为空") + return result + + # 解析第一行(通常一个对象一行) + line = lines[0].strip() + if not line: + result["warnings"].append("第一行为空") + return result + + parts = line.split() + if len(parts) < 7: # 至少需要 class_id + 3个点(6个值) + result["errors"].append(f"格式错误: 坐标点数量不足 (需要至少3个点,当前只有{len(parts)-1}个值)") + return result + + try: + class_id = int(parts[0]) + coords = list(map(float, parts[1:])) + except ValueError as e: + result["errors"].append(f"格式错误: 无法解析数字 - {e}") + return result + + # 检查坐标数量(必须是偶数) + if len(coords) % 2 != 0: + result["errors"].append(f"格式错误: 坐标数量不是偶数 ({len(coords)}个值)") + return result + + num_points = len(coords) // 2 + + # 检查坐标范围 + invalid_coords = [c for c in coords if c < 0 or c > 1] + if invalid_coords: + result["warnings"].append(f"坐标超出[0,1]范围: {len(invalid_coords)}个值") + + result["valid"] = True + result["class_id"] = class_id + result["num_points"] = num_points + result["coords_count"] = len(coords) + + # 可视化验证 + if show_visualization and img_path and os.path.exists(img_path): + visualize_seg_label(img_path, label_path) + + return result + + +def visualize_seg_label(img_path, label_path): + """ + 可视化分割标注,在图片上绘制多边形 + + Args: + img_path: 图片路径 + label_path: 标注文件路径 + """ + img = cv2.imread(img_path) + if img is None: + print(f"无法读取图片: {img_path}") + return + + h, w = img.shape[:2] + + with open(label_path, 'r', encoding='utf-8') as f: + lines = f.readlines() + + for line_idx, line in enumerate(lines): + parts = line.strip().split() + if len(parts) < 7: + continue + + class_id = int(parts[0]) + points = list(map(float, parts[1:])) + + # 转换为像素坐标 + pixel_points = [] + for i in range(0, len(points), 2): + x = int(points[i] * w) + y = int(points[i+1] * h) + pixel_points.append([x, y]) + + # 绘制多边形 + pts = np.array(pixel_points, np.int32) + # 填充多边形(半透明) + overlay = img.copy() + cv2.fillPoly(overlay, [pts], (0, 255, 0)) + cv2.addWeighted(overlay, 0.3, img, 0.7, 0, img) + # 绘制多边形边界 + cv2.polylines(img, [pts], True, (0, 255, 0), 2) + + # 添加类别标签 + if len(pixel_points) > 0: + cv2.putText(img, f"Class {class_id}", + (pixel_points[0][0], pixel_points[0][1] - 10), + cv2.FONT_HERSHEY_SIMPLEX, 0.6, (0, 255, 0), 2) + + # 显示结果 + cv2.imshow('分割标注验证', img) + print("按任意键关闭窗口...") + cv2.waitKey(0) + cv2.destroyAllWindows() + + +def batch_verify_labels(labels_dir, images_dir=None, sample_count=5): + """ + 批量验证标注文件 + + Args: + labels_dir: 标注文件目录 + images_dir: 图片目录(可选) + sample_count: 随机采样验证的文件数量(0表示全部) + """ + label_files = list(Path(labels_dir).glob("*.txt")) + + if not label_files: + print(f"未找到标注文件: {labels_dir}") + return + + if sample_count > 0 and len(label_files) > sample_count: + import random + label_files = random.sample(label_files, sample_count) + print(f"随机采样 {sample_count} 个文件进行验证...") + + print(f"开始验证 {len(label_files)} 个标注文件...") + print("-" * 60) + + valid_count = 0 + error_count = 0 + + for label_file in label_files: + # 尝试找到对应的图片文件 + img_path = None + if images_dir: + for ext in ['.jpg', '.jpeg', '.png', '.JPG', '.JPEG', '.PNG']: + img_path = Path(images_dir) / (label_file.stem + ext) + if img_path.exists(): + break + img_path = None + + result = verify_yolo_seg_format(str(label_file), str(img_path) if img_path else None) + + status = "✓" if result["valid"] else "✗" + print(f"{status} {label_file.name}") + print(f" 类别ID: {result['class_id']}, 顶点数: {result['num_points']}, 坐标数: {result['coords_count']}") + + if result["errors"]: + print(f" 错误: {', '.join(result['errors'])}") + error_count += 1 + elif result["warnings"]: + print(f" 警告: {', '.join(result['warnings'])}") + + if result["valid"]: + valid_count += 1 + + print() + + print("-" * 60) + print(f"验证完成: {valid_count}/{len(label_files)} 个文件格式正确") + if error_count > 0: + print(f"发现 {error_count} 个文件有错误") + + +def main(): + """主函数 - 示例用法""" + import sys + + if len(sys.argv) > 1: + # 命令行模式 + labels_dir = sys.argv[1] + images_dir = sys.argv[2] if len(sys.argv) > 2 else None + batch_verify_labels(labels_dir, images_dir) + else: + # 交互模式 - 验证搭电设备数据集 + print("验证搭电设备数据集的标注格式...") + labels_dir = "datasets/搭电设备/train/labels" + images_dir = "datasets/搭电设备/train/images" + + if os.path.exists(labels_dir): + batch_verify_labels(labels_dir, images_dir, sample_count=10) + else: + print(f"目录不存在: {labels_dir}") + print("\n使用方法:") + print(" python verify_seg_labels.py [images_dir]") + print("\n示例:") + print(" python verify_seg_labels.py datasets/搭电设备/train/labels datasets/搭电设备/train/images") + + +if __name__ == '__main__': + main() + diff --git a/yolo11n.pt b/yolo11n.pt new file mode 100644 index 0000000..45b273b Binary files /dev/null and b/yolo11n.pt differ diff --git a/yolov8n-seg.pt b/yolov8n-seg.pt new file mode 100644 index 0000000..e928b46 Binary files /dev/null and b/yolov8n-seg.pt differ diff --git a/yolov8n.pt b/yolov8n.pt new file mode 100644 index 0000000..d61ef50 Binary files /dev/null and b/yolov8n.pt differ diff --git a/分割训练说明.md b/分割训练说明.md new file mode 100644 index 0000000..2bc56ec --- /dev/null +++ b/分割训练说明.md @@ -0,0 +1,174 @@ +# YOLO 分割模型训练说明 + +## 概述 + +本项目现在支持使用多边形标注进行实例分割训练,可以精确框选目标,避免矩形框包含非目标区域的问题。 + +## 文件说明 + +### 1. `train_segmentation.py` - 分割模型训练脚本 +专门用于训练YOLO分割模型(支持多边形标注) + +**使用方法:** +```bash +python train_segmentation.py +``` + +**参数说明:** +- `dataset_path`: 数据集配置文件路径(默认: `datasets/搭电设备/data.yaml`) +- `model_name`: 预训练模型(默认: `yolov8n-seg.pt`) + - 可选: `yolov8n-seg.pt`, `yolov8s-seg.pt`, `yolov8m-seg.pt`, `yolov8l-seg.pt`, `yolov8x-seg.pt` + - 或: `yolo11n-seg.pt`, `yolo11s-seg.pt` 等 +- `epochs`: 训练轮数(默认: 100) +- `batch`: 批次大小(默认: 8) +- `imgsz`: 图片尺寸(默认: 640) +- `device`: 设备类型(默认: `"cpu"`,GPU使用 `"cuda"` 或 `"0"`) + +### 2. `verify_seg_labels.py` - 标注格式验证工具 +批量验证YOLO分割标注格式是否正确 + +**使用方法:** +```bash +# 验证指定目录的标注文件 +python verify_seg_labels.py datasets/搭电设备/train/labels datasets/搭电设备/train/images + +# 或直接运行(会验证搭电设备数据集) +python verify_seg_labels.py +``` + +**功能:** +- 检查标注格式是否正确 +- 验证坐标是否在有效范围内 [0, 1] +- 统计多边形顶点数量 +- 可选:可视化标注结果 + +### 3. `test_seg_label.py` - 单个文件测试工具 +快速测试单个标注文件 + +**使用方法:** +```bash +# 仅验证标注文件 +python test_seg_label.py datasets/搭电设备/train/labels/your_file.txt + +# 验证并可视化 +python test_seg_label.py datasets/搭电设备/train/labels/your_file.txt datasets/搭电设备/train/images/your_file.jpg +``` + +### 4. `train_jumper_cable.py` - 智能训练脚本(已更新) +自动检测标注格式,选择相应的模型 + +- 如果检测到多边形格式(坐标数 > 5),使用分割模型 +- 如果检测到边界框格式(坐标数 = 5),使用检测模型 + +## 标注格式说明 + +### YOLO 分割格式(多边形) + +每个 `.txt` 文件格式: +``` +class_id x1 y1 x2 y2 x3 y3 x4 y4 ... +``` + +**示例:** +``` +0 0.666693 0.597539 0.600534 0.649248 0.427135 0.689463 0.287852 0.680586 ... +``` + +**说明:** +- `class_id`: 类别ID(整数,从0开始) +- `x1 y1 x2 y2 ...`: 归一化的多边形顶点坐标(0-1之间) +- 至少需要3个点(6个坐标值) + +### 从 CVAT 导出 + +1. 在 CVAT 中选择任务/作业 +2. 点击 "Export job as a dataset" +3. **选择 "Ultralytics YOLO Segmentation 1.0"** +4. 下载导出的数据集 + +## 数据集目录结构 + +``` +datasets/ + └── 搭电设备/ + ├── data.yaml # 数据集配置 + ├── train/ + │ ├── images/ # 训练图片 + │ └── labels/ # 训练标注(.txt文件) + └── val/ + ├── images/ # 验证图片 + └── labels/ # 验证标注(.txt文件) +``` + +## data.yaml 配置示例 + +```yaml +train: train/images +val: val/images +nc: 2 +names: ['JumperCable', 'NoJumperCable'] +``` + +## 训练步骤 + +### 1. 准备数据 +- 从 CVAT 导出为 "Ultralytics YOLO Segmentation 1.0" 格式 +- 将数据组织到正确的目录结构 +- 创建或更新 `data.yaml` 配置文件 + +### 2. 验证标注 +```bash +# 验证标注格式 +python verify_seg_labels.py datasets/搭电设备/train/labels datasets/搭电设备/train/images +``` + +### 3. 开始训练 +```bash +# 使用分割模型训练 +python train_segmentation.py +``` + +或修改 `train_segmentation.py` 中的参数: +```python +train_segmentation_model( + dataset_path="datasets/你的数据集/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cuda" # 如果有GPU +) +``` + +### 4. 查看结果 +训练完成后,模型保存在 `runs/segment/train/weights/` 目录下: +- `best.pt`: 最佳模型 +- `last.pt`: 最后一轮的模型 + +## 注意事项 + +1. **模型选择**:必须使用分割模型(`-seg` 后缀),如 `yolov8n-seg.pt` +2. **标注格式**:确保标注是多边形格式(坐标数 > 5) +3. **文件名对应**:标注文件名必须与图片文件名一致(仅扩展名不同) +4. **坐标归一化**:所有坐标必须在 [0, 1] 范围内 +5. **GPU加速**:如果有GPU,将 `device` 设置为 `"cuda"` 或 `"0"` 可以大幅加速训练 + +## 常见问题 + +### Q: 如何判断标注是分割格式还是检测格式? +A: 分割格式的坐标数量 > 5(class_id + 至少6个坐标值),检测格式只有5个值(class_id + 4个边界框坐标) + +### Q: 训练时提示找不到模型文件? +A: 首次使用时会自动下载,确保网络连接正常。也可以手动下载后放到项目根目录。 + +### Q: 如何可视化分割结果? +A: 使用 `test_seg_label.py` 脚本,提供图片路径即可可视化标注。 + +### Q: 训练速度很慢? +A: 如果有GPU,将 `device="cpu"` 改为 `device="cuda"`。也可以减小 `batch` 大小或 `imgsz` 尺寸。 + +## 参考 + +- [Ultralytics YOLO 文档](https://docs.ultralytics.com/) +- [YOLO 分割任务说明](https://docs.ultralytics.com/tasks/segment/) + diff --git a/开始训练检测仪.md b/开始训练检测仪.md new file mode 100644 index 0000000..1249125 --- /dev/null +++ b/开始训练检测仪.md @@ -0,0 +1,247 @@ +# 🚀 开始训练检测仪数据集 + +## 📊 数据集信息 + +**数据集路径**: `datasets/检测仪` + +**数据统计**: +- ✅ **训练集**: 978 张图片 + 978 个标注文件 +- ✅ **验证集**: 245 张图片 + 245 个标注文件 +- ✅ **总计**: 1223 张图片(完美匹配) +- ✅ **类别数**: 6 个 + +**类别列表**: +1. `da_dian_xian` - 搭电线 +2. `tuo_che_shang_you_che` - 拖车上有车 +3. `yi_biao_pan` - 仪表盘 +4. `lun_tai` - 轮胎 +5. `ping_an_ma_jia` - 平安马甲 +6. `jian_ce_yi` - 检测仪 + +--- + +## ✅ 训练配置 + +训练脚本已优化,配置如下: + +```python +数据集: datasets/检测仪/data.yaml +模型: yolov8n-seg.pt +训练轮数: 150轮 +批次大小: 8 +图片尺寸: 640 +设备: 自动检测(MPS/GPU/CPU) +``` + +**说明**: +- 脚本会自动检测并使用最佳设备(MPS > GPU > CPU) +- 检测到你的系统有 **Apple Silicon GPU (MPS)**,会自动使用加速训练 + +--- + +## 🚀 开始训练 + +### 方法一:直接运行(推荐) + +训练脚本已经配置好,直接运行: + +```bash +python train_segmentation.py +``` + +### 方法二:自定义参数 + +如果需要调整,修改 `train_segmentation.py` 的 `main()` 函数: + +```python +train_segmentation_model( + dataset_path="datasets/检测仪/data.yaml", + model_name="yolov8n-seg.pt", + epochs=150, # 可以调整训练轮数 + batch=8, # 可以调整批次大小 + imgsz=640, # 可以改为416更快 + device="cpu" # 会自动检测MPS/GPU +) +``` + +--- + +## ⏱️ 训练时间估算 + +| 设备 | 预计训练时间 | +|------|------------| +| **MPS (Apple Silicon)** | **2-4 小时** ⚡ | +| CPU | 8-15 小时 | +| GPU (NVIDIA) | 0.5-2 小时 | + +**你的系统**: 检测到 MPS,预计 **2-4 小时** 完成训练 + +--- + +## 📋 训练过程说明 + +### 1. 训练开始 + +运行后会看到: +``` +加载模型: yolov8n-seg.pt +开始训练分割模型... +数据集: datasets/检测仪/data.yaml +训练轮数: 150 +批次大小: 8 +图片尺寸: 640 +设备: cpu +✓ 检测到Apple Silicon GPU,使用MPS加速训练 +-------------------------------------------------- +``` + +### 2. 训练进度 + +训练过程中会显示: +- 每个epoch的损失值 +- 训练进度条 +- 预计剩余时间 + +### 3. 训练完成 + +训练完成后会显示: +``` +训练完成! +模型保存在: runs/segment/train/weights/best.pt +``` + +--- + +## 📍 训练结果位置 + +训练完成后,模型保存在: +``` +runs/segment/train/weights/ + ├── best.pt # 最佳模型(推荐使用)⭐ + └── last.pt # 最后一轮的模型 +``` + +训练日志和可视化: +``` +runs/segment/train/ + ├── results.png # 训练曲线图 + ├── confusion_matrix.png # 混淆矩阵 + ├── labels.jpg # 标注可视化 + └── ... +``` + +--- + +## 🔍 训练前检查(可选) + +### 1. 验证数据完整性 + +```bash +# 检查训练集 +python check_and_clean_images.py datasets/检测仪/train/images datasets/检测仪/train/labels + +# 检查验证集 +python check_and_clean_images.py datasets/检测仪/val/images datasets/检测仪/val/labels +``` + +### 2. 验证标注格式 + +```bash +python verify_seg_labels.py datasets/检测仪/train/labels datasets/检测仪/train/images +``` + +--- + +## 💡 训练建议 + +### 对于1223张照片的数据集: + +1. **训练轮数**: 150轮足够(配合早停机制) +2. **批次大小**: 8(MPS/CPU友好) +3. **图片尺寸**: 640(平衡速度和精度) +4. **设备**: 自动使用MPS加速 + +### 如果训练速度太慢: + +**优化方案**: +```python +batch=4, # 减小batch +imgsz=416, # 减小图片尺寸(速度提升约2倍) +``` + +### 如果需要更高精度: + +**优化方案**: +```python +model_name="yolov8s-seg.pt", # 使用更大的模型 +epochs=200, # 增加训练轮数 +``` + +--- + +## 📊 数据集评估 + +### 优势 + +✅ **数据量充足** - 1223张是很好的规模 +✅ **数据完整** - 所有图片都有标注(978+245完美匹配) +✅ **类别丰富** - 6个类别,覆盖多种场景 +✅ **已分配好** - 训练集/验证集比例合理(80/20) + +### 训练建议 + +1. **监控训练**: 观察损失曲线,如果不再下降可以提前停止 +2. **保存检查点**: 训练过程中会自动保存最佳模型 +3. **验证结果**: 训练完成后查看验证集准确率 + +--- + +## 🎯 快速开始 + +**一键训练**: +```bash +python train_segmentation.py +``` + +脚本会自动: +1. ✅ 检测并使用MPS加速(你的系统已检测到) +2. ✅ 使用优化的训练参数 +3. ✅ 训练150轮(足够) +4. ✅ 保存最佳模型 + +--- + +## ❓ 常见问题 + +### Q: 978+245张照片够吗? +A: 完全够!1223张是很好的数据集规模,可以训练出高质量的模型。 + +### Q: 需要训练多久? +A: 使用MPS加速,预计 **2-4小时** 完成。 + +### Q: 训练轮数设置多少? +A: 建议150轮,如果50轮没有改善会自动停止(早停机制)。 + +### Q: 如何知道训练完成? +A: 训练完成后会显示: +``` +训练完成! +模型保存在: runs/segment/train/weights/best.pt +``` + +### Q: 训练中断了怎么办? +A: 可以继续训练,YOLO支持断点续训。或者使用保存的 `last.pt` 继续。 + +--- + +## 📝 总结 + +✅ **数据集已准备好** - 978训练 + 245验证 = 1223张 +✅ **配置已优化** - 训练脚本已配置好 +✅ **设备已检测** - 自动使用MPS加速 +✅ **可以直接训练** - 运行 `python train_segmentation.py` 即可 + +**开始训练吧!** 🚀 + +预计训练时间:**2-4小时**(使用MPS加速) + diff --git a/快速训练指南.md b/快速训练指南.md new file mode 100644 index 0000000..ce195ce --- /dev/null +++ b/快速训练指南.md @@ -0,0 +1,126 @@ +# 🚀 快速训练指南 + +## 方法一:使用通用训练脚本(最简单) + +### 1. 查看可用数据集 +```bash +python .py list +``` + +### 2. 训练指定数据集 +```bash +# 训练搭电设备 +python train_all_datasets.py 搭电设备 + +# 训练仪表盘 +python train_all_datasets.py 仪表盘 + +# 训练检测仪 +python train_all_datasets.py 检测仪 +``` + +--- + +## 方法二:修改 train_segmentation.py + +### 1. 打开文件 +```bash +# 编辑 train_segmentation.py +``` + +### 2. 修改 main() 函数 +```python +def main(): + train_segmentation_model( + dataset_path="datasets/你的数据集/data.yaml", # 改这里 + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" # 有GPU改为 "cuda" + ) +``` + +### 3. 运行 +```bash +python train_segmentation.py +``` + +--- + +## 方法三:创建专用训练脚本 + +### 1. 复制模板 +```bash +cp train_segmentation.py train_你的数据集.py +``` + +### 2. 修改参数 +```python +def main(): + train_segmentation_model( + dataset_path="datasets/你的数据集/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" + ) +``` + +### 3. 运行 +```bash +python train_你的数据集.py +``` + +--- + +## 📋 训练前检查清单 + +- [ ] 数据集目录结构正确 +- [ ] data.yaml 配置文件存在且正确 +- [ ] 标注文件格式正确(多边形格式) +- [ ] 图片和标注文件名对应 +- [ ] 运行验证脚本检查标注 + +```bash +# 验证标注 +python verify_seg_labels.py datasets/你的数据集/train/labels datasets/你的数据集/train/images +``` + +--- + +## ⚡ 快速参数调整 + +| 需求 | 修改参数 | 示例值 | +|------|---------|--------| +| 更快训练 | `batch=4, imgsz=416` | 小数据集 | +| 更高精度 | `model="yolov8s-seg.pt"` | 中等数据集 | +| 使用GPU | `device="cuda"` | 有GPU时 | +| 更多轮数 | `epochs=150` | 小数据集 | + +--- + +## 📍 训练结果位置 + +训练完成后,模型保存在: +``` +runs/segment/train/weights/best.pt +``` + +查看训练曲线: +``` +runs/segment/train/results.png +``` + +--- + +## ❓ 遇到问题? + +1. **内存不足** → 减小 `batch` 和 `imgsz` +2. **训练慢** → 使用 `device="cuda"` 或减小 `imgsz` +3. **格式错误** → 运行验证脚本检查标注 +4. **找不到文件** → 检查 `data.yaml` 路径是否正确 + +详细说明请查看:`训练教程.md` + diff --git a/目录文件说明.png b/目录文件说明.png new file mode 100644 index 0000000..0e49f5e --- /dev/null +++ b/目录文件说明.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b191218c04c80d32db208bc335ad47bef222f3b673bdaf4cc617437f3b484d +size 89765 diff --git a/程序运行说明文档.txt b/程序运行说明文档.txt new file mode 100644 index 0000000..66a2ffe --- /dev/null +++ b/程序运行说明文档.txt @@ -0,0 +1,102 @@ +基于深度学习的救援过程识别系统 +作者:王海滨 + +一、系统简介 +本系统是基于深度学习YOLOv8模型开发的救援过程识别系统,可以实时识别救援场景中的"已救援"和"救援中"两种状态,为救援工作提供智能辅助决策支持。系统支持自定义数据集训练,可根据实际需求扩展识别类别。 + +二、环境配置 +1. 操作系统:Windows 10/11 +2. Python版本:3.8及以上 +3. 依赖库: + - PyQt5 + - OpenCV (cv2) + - Ultralytics (YOLOv8) + - Torch + - Numpy + - PIL + +三、安装说明 +1. 安装Python环境(建议使用Anaconda) +2. 运行installPackages.py安装所需依赖: + python installPackages.py +3. 确保models文件夹中包含训练好的模型文件best.pt + +四、使用说明 +1. 启动系统: + python MainProgram.py + +2. 功能模块: + a) 图片检测: + - 点击"图片"按钮,选择需要检测的图片 + - 系统将自动识别图片中的救援状态并显示结果 + + b) 视频检测: + - 点击"视频"按钮,选择需要检测的视频文件 + - 系统将逐帧分析视频中的救援状态并显示结果 + + c) 摄像头实时检测: + - 点击"摄像头"按钮,开启摄像头实时检测 + - 系统将实时分析摄像头捕获的画面并显示救援状态 + + d) 批量图片检测: + - 点击文件夹图标,选择包含多张图片的文件夹 + - 系统将批量处理文件夹中的所有图片并显示结果 + +3. 结果查看: + - 检测结果将在右侧面板显示,包括目标类别、置信度和位置信息 + - 底部表格显示所有检测到的目标详细信息 + - 可通过下拉菜单选择特定目标查看详情 + +4. 结果保存: + - 点击"保存"按钮可将检测结果(包含标注的图片或视频)保存到save_data文件夹 + +五、注意事项 +1. 首次运行时,系统会自动下载YOLOv8模型权重文件,请确保网络连接正常 +2. 处理大型视频文件时可能需要较长时间,请耐心等待 +3. 如遇到GPU内存不足问题,可尝试降低视频分辨率或使用CPU模式 + +六、常见问题 +1. Q: 系统无法启动? + A: 请检查Python环境和依赖库是否正确安装,确保models文件夹中包含模型文件 + +2. Q: 检测结果不准确? + A: 可能是由于光线、角度等因素影响,尝试调整拍摄环境或使用更高质量的图像 + +3. Q: 视频处理速度慢? + A: 视频处理需要较高的计算资源,建议使用配置较高的计算机或降低视频分辨率 + +七、自定义标注与训练 +1. 数据准备: + - 收集与目标场景相似的图片(建议300张以上) + - 使用标注工具(如LabelImg)对图片进行标注 + - 标注格式为YOLO格式(每个标注对应一个.txt文件) + +2. 数据集组织: + - 在datasets目录下创建自定义数据集文件夹(如MyData) + - 创建train和val两个子文件夹,分别存放训练集和验证集 + - 每个子文件夹下创建images和labels两个文件夹 + - 将图片放入images文件夹,对应标注放入labels文件夹 + +3. 创建配置文件: + - 在数据集根目录创建data.yaml文件 + - 配置文件内容示例: + ``` + train: 数据集路径/train/images + val: 数据集路径/val/images + nc: 2 # 类别数量 + names: ['已救援', '救援中'] # 类别名称 + ``` + +4. 训练模型: + - 修改train.py中的数据集路径和参数 + - 运行训练脚本:python train.py + - 训练完成后,模型将保存在runs/detect/train/weights目录下 + +5. 使用自定义模型: + - 将训练好的best.pt复制到models文件夹 + - 修改Config.py中的模型路径和类别名称 + - 重启系统即可使用自定义模型进行识别 + +八、联系方式 +如有任何问题或建议,请联系:17705812500 +作者:王海滨 \ No newline at end of file diff --git a/训练参数说明.md b/训练参数说明.md new file mode 100644 index 0000000..8ca6885 --- /dev/null +++ b/训练参数说明.md @@ -0,0 +1,200 @@ +# 📚 训练参数详细说明 + +## 🔍 epochs(训练轮数)vs 照片数量 + +### ❌ 常见误解 + +**错误理解**: `epochs=150` 表示训练150张照片 + +### ✅ 正确理解 + +**`epochs` = 训练轮数**,不是照片数量! + +--- + +## 📊 概念解释 + +### 1. Epochs(训练轮数) + +**定义**: 模型完整遍历一次**所有训练数据**的次数 + +**你的数据集**: +- 训练集: **978张照片** +- 验证集: 245张照片 + +**如果 `epochs=150`**: +- 模型会看 **150遍** 所有978张训练照片 +- 总共处理: **978 × 150 = 146,700 次图片训练** + +### 2. 照片数量 + +**你的数据集**: +- 训练集: **978张照片**(这是固定的) +- 验证集: **245张照片**(这是固定的) + +**照片数量不会改变**,无论epochs设置多少! + +--- + +## 🎯 实际例子 + +### 例子1: epochs=1 + +``` +训练过程: +- 第1轮: 看所有978张训练照片(1遍) +- 总共: 978张照片 × 1轮 = 978次训练 +``` + +### 例子2: epochs=150(你的配置) + +``` +训练过程: +- 第1轮: 看所有978张训练照片(第1遍) +- 第2轮: 看所有978张训练照片(第2遍) +- 第3轮: 看所有978张训练照片(第3遍) +- ... +- 第150轮: 看所有978张训练照片(第150遍) +- 总共: 978张照片 × 150轮 = 146,700次训练 +``` + +### 例子3: epochs=10(快速测试) + +``` +训练过程: +- 看所有978张训练照片,重复10遍 +- 总共: 978张照片 × 10轮 = 9,780次训练 +``` + +--- + +## 📋 参数对比表 + +| 参数 | 含义 | 你的数据集 | 说明 | +|------|------|-----------|------| +| **照片数量** | 数据集大小 | **978张**(训练集) | 固定不变 | +| **epochs** | 训练轮数 | **150轮** | 可以调整 | +| **总训练次数** | 照片数 × 轮数 | 978 × 150 = **146,700次** | 自动计算 | + +--- + +## 💡 为什么需要多轮训练? + +### 单轮训练(epochs=1)的问题 + +- ❌ 模型只看一遍数据,学习不充分 +- ❌ 可能还没学会就停止了 +- ❌ 准确率通常很低 + +### 多轮训练(epochs=150)的优势 + +- ✅ 模型可以反复学习,逐步改进 +- ✅ 每轮都会提高一点准确率 +- ✅ 最终达到更好的效果 + +### 训练过程示意 + +``` +第1轮: 准确率 30% → 模型刚开始学习 +第10轮: 准确率 50% → 模型在进步 +第50轮: 准确率 70% → 模型越来越好 +第100轮: 准确率 85% → 模型接近最佳 +第150轮: 准确率 87% → 模型达到最佳(可能) +``` + +--- + +## 🎯 如何选择合适的epochs? + +### 根据数据集大小 + +| 数据集大小 | 推荐epochs | 说明 | +|-----------|-----------|------| +| < 500张 | 50-100 | 小数据集,不需要太多轮 | +| 500-2000张 | 100-200 | **你的数据集(1223张)在这个范围** | +| > 2000张 | 100-300 | 大数据集,可以多训练几轮 | + +### 你的数据集(1223张照片) + +**推荐配置**: +- ✅ `epochs=150` - 足够训练(推荐) +- ✅ `epochs=100` - 也可以,但可能不够充分 +- ✅ `epochs=200` - 如果时间充足,可以更多 + +--- + +## ⚠️ 注意事项 + +### 1. Epochs不是越多越好 + +**问题**: 训练太多轮可能导致"过拟合" +- 模型记住了训练数据,但不会泛化到新数据 +- 验证集准确率反而下降 + +**解决**: 使用早停机制(patience) +- 如果50轮没有改善,自动停止 +- 避免过度训练 + +### 2. 训练时间 + +**公式**: 训练时间 ≈ 单轮时间 × epochs + +**你的情况**: +- 单轮时间: 约1-2分钟(使用MPS) +- epochs=150: 约150-300分钟 = **2.5-5小时** + +--- + +## 📊 实际训练示例 + +### 你的配置 + +```python +train_segmentation_model( + dataset_path="datasets/检测仪/data.yaml", + model_name="yolov8n-seg.pt", + epochs=150, # 训练150轮 + batch=8, # 每次处理8张照片 + imgsz=640, + device="cpu" # 自动检测MPS +) +``` + +### 训练过程 + +``` +训练开始... +训练集: 978张照片 +验证集: 245张照片 + +Epoch 1/150: 处理978张照片(第1遍) +Epoch 2/150: 处理978张照片(第2遍) +Epoch 3/150: 处理978张照片(第3遍) +... +Epoch 150/150: 处理978张照片(第150遍) + +训练完成! +总共: 978张 × 150轮 = 146,700次训练 +``` + +--- + +## 🎓 总结 + +### 关键点 + +1. ✅ **epochs = 训练轮数**,不是照片数量 +2. ✅ **照片数量是固定的**(你的数据集:978张训练,245张验证) +3. ✅ **epochs可以调整**(建议150轮) +4. ✅ **总训练次数 = 照片数 × epochs** + +### 你的数据集 + +- 📸 **照片数量**: 978张(训练集)+ 245张(验证集)= 1223张 +- 🔄 **训练轮数**: 150轮(epochs=150) +- 📊 **总训练次数**: 978 × 150 = 146,700次 + +--- + +**记住**: epochs是"看几遍",不是"看几张"!📚 + diff --git a/训练教程.md b/训练教程.md new file mode 100644 index 0000000..ec2da8e --- /dev/null +++ b/训练教程.md @@ -0,0 +1,583 @@ +# YOLO 分割模型训练完整教程 + +## 📚 目录 + +1. [快速开始 - 训练搭电设备数据集](#快速开始) +2. [训练其他数据集](#训练其他数据集) +3. [详细配置说明](#详细配置说明) +4. [常见问题解决](#常见问题解决) +5. [训练技巧和优化](#训练技巧和优化) + +--- + +## 🚀 快速开始 - 训练搭电设备数据集 + +### 步骤 1: 准备数据 + +确保你的数据集目录结构如下: +``` +datasets/ + └── 搭电设备/ + ├── data.yaml # 数据集配置文件 + ├── train/ + │ ├── images/ # 训练图片(.jpg, .png等) + │ └── labels/ # 训练标注(.txt文件,多边形格式) + └── val/ + ├── images/ # 验证图片 + └── labels/ # 验证标注 +``` + +### 步骤 2: 检查 data.yaml 配置 + +打开 `datasets/搭电设备/data.yaml`,确保内容如下: +```yaml +train: train/images +val: val/images +nc: 2 +names: ['JumperCable', 'NoJumperCable'] +``` + +**说明:** +- `train`: 训练图片目录(相对于data.yaml的路径) +- `val`: 验证图片目录 +- `nc`: 类别数量 +- `names`: 类别名称列表(顺序对应类别ID:0, 1, 2...) + +### 步骤 3: 验证标注格式(可选但推荐) + +在训练前验证标注格式是否正确: +```bash +python verify_seg_labels.py datasets/搭电设备/train/labels datasets/搭电设备/train/images +``` + +如果看到 "✓ 格式正确",说明标注没问题。 + +### 步骤 4: 开始训练 + +**方法一:直接运行(使用默认配置)** +```bash +python train_segmentation.py +``` + +**方法二:修改脚本参数** + +打开 `train_segmentation.py`,修改 `main()` 函数中的参数: + +```python +def main(): + train_segmentation_model( + dataset_path="datasets/搭电设备/data.yaml", # 数据集路径 + model_name="yolov8n-seg.pt", # 模型选择 + epochs=100, # 训练轮数 + batch=8, # 批次大小 + imgsz=640, # 图片尺寸 + device="cpu" # 设备:cpu 或 cuda + ) +``` + +### 步骤 5: 查看训练结果 + +训练完成后,模型保存在: +``` +runs/segment/train/weights/ + ├── best.pt # 最佳模型(推荐使用) + └── last.pt # 最后一轮的模型 +``` + +训练日志和可视化结果在: +``` +runs/segment/train/ + ├── results.png # 训练曲线图 + ├── confusion_matrix.png # 混淆矩阵 + └── ... +``` + +--- + +## 🎯 训练其他数据集 + +### 示例 1: 训练仪表盘数据集 + +#### 步骤 1: 检查数据集结构 +```bash +# 查看数据集目录 +ls datasets/仪表盘/ +``` + +#### 步骤 2: 检查 data.yaml +打开 `datasets/仪表盘/data.yaml`,应该看到: +```yaml +train: train/images +val: val/images +nc: 2 +names: ['Dashboard', 'NoDashboard'] +``` + +#### 步骤 3: 创建训练脚本或修改现有脚本 + +**选项 A: 创建新脚本 `train_dashboard_seg.py`** +```python +from train_segmentation import train_segmentation_model + +def main(): + train_segmentation_model( + dataset_path="datasets/仪表盘/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" + ) + +if __name__ == '__main__': + main() +``` + +**选项 B: 修改 `train_segmentation.py`** +```python +def main(): + train_segmentation_model( + dataset_path="datasets/仪表盘/data.yaml", # 修改这里 + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" + ) +``` + +#### 步骤 4: 运行训练 +```bash +python train_dashboard_seg.py +# 或 +python train_segmentation.py +``` + +--- + +### 示例 2: 训练检测仪数据集 + +#### 步骤 1: 检查 data.yaml +```yaml +train: train/images +val: val/images +nc: 2 +names: ['Detector', 'NoDetector'] +``` + +#### 步骤 2: 创建训练脚本 `train_detector_seg.py` +```python +from train_segmentation import train_segmentation_model + +def main(): + train_segmentation_model( + dataset_path="datasets/检测仪/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" + ) + +if __name__ == '__main__': + main() +``` + +#### 步骤 3: 运行 +```bash +python train_detector_seg.py +``` + +--- + +### 示例 3: 训练新数据集(从头开始) + +假设你要训练一个名为 "新设备" 的数据集: + +#### 步骤 1: 创建数据集目录结构 +```bash +mkdir -p datasets/新设备/train/images +mkdir -p datasets/新设备/train/labels +mkdir -p datasets/新设备/val/images +mkdir -p datasets/新设备/val/labels +``` + +#### 步骤 2: 准备数据 +- 将训练图片放到 `datasets/新设备/train/images/` +- 将训练标注(.txt文件)放到 `datasets/新设备/train/labels/` +- 将验证图片放到 `datasets/新设备/val/images/` +- 将验证标注放到 `datasets/新设备/val/labels/` + +**重要:** 标注文件名必须与图片文件名一致(仅扩展名不同) +- 图片:`image001.jpg` +- 标注:`image001.txt` + +#### 步骤 3: 创建 data.yaml +创建文件 `datasets/新设备/data.yaml`: +```yaml +train: train/images +val: val/images +nc: 3 +names: ['设备A', '设备B', '设备C'] +``` + +**说明:** +- `nc: 3` 表示有3个类别 +- `names` 列表中的顺序对应类别ID: + - '设备A' = 类别 0 + - '设备B' = 类别 1 + - '设备C' = 类别 2 + +#### 步骤 4: 验证标注 +```bash +python verify_seg_labels.py datasets/新设备/train/labels datasets/新设备/train/images +``` + +#### 步骤 5: 创建训练脚本 +创建 `train_new_device.py`: +```python +from train_segmentation import train_segmentation_model + +def main(): + train_segmentation_model( + dataset_path="datasets/新设备/data.yaml", + model_name="yolov8n-seg.pt", + epochs=100, + batch=8, + imgsz=640, + device="cpu" + ) + +if __name__ == '__main__': + main() +``` + +#### 步骤 6: 开始训练 +```bash +python train_new_device.py +``` + +--- + +## ⚙️ 详细配置说明 + +### 1. 模型选择 + +YOLO 提供了多种模型大小,根据你的需求选择: + +| 模型 | 速度 | 精度 | 参数量 | 适用场景 | +|------|------|------|--------|----------| +| yolov8n-seg.pt | 最快 | 较低 | 最少 | 实时检测、资源受限 | +| yolov8s-seg.pt | 快 | 中等 | 较少 | 平衡速度和精度 | +| yolov8m-seg.pt | 中等 | 较高 | 中等 | 一般应用 | +| yolov8l-seg.pt | 较慢 | 高 | 较多 | 高精度需求 | +| yolov8x-seg.pt | 最慢 | 最高 | 最多 | 最高精度需求 | + +**修改方法:** +```python +model_name="yolov8s-seg.pt" # 改为你想要的模型 +``` + +### 2. 训练轮数 (epochs) + +- **小数据集(< 500张)**: 100-200 epochs +- **中等数据集(500-2000张)**: 50-100 epochs +- **大数据集(> 2000张)**: 30-50 epochs + +**修改方法:** +```python +epochs=100 # 根据数据集大小调整 +``` + +### 3. 批次大小 (batch) + +根据你的GPU/CPU内存调整: + +| 设备 | 推荐batch大小 | +|------|--------------| +| CPU | 4-8 | +| GPU 4GB | 8-16 | +| GPU 8GB | 16-32 | +| GPU 16GB+ | 32-64 | + +**修改方法:** +```python +batch=8 # 如果内存不足,减小这个值;如果有GPU,可以增大 +``` + +### 4. 图片尺寸 (imgsz) + +- **640**: 标准尺寸,平衡速度和精度(推荐) +- **416**: 更快,但精度略低 +- **832**: 更慢,但精度更高 + +**修改方法:** +```python +imgsz=640 # 可以改为 416, 512, 832 等 +``` + +### 5. 设备选择 (device) + +```python +device="cpu" # 使用CPU(较慢) +device="cuda" # 使用默认GPU +device="0" # 使用第1块GPU +device="1" # 使用第2块GPU +``` + +**检查GPU是否可用:** +```python +import torch +print(torch.cuda.is_available()) # True表示有GPU +``` + +--- + +## 🔧 常见问题解决 + +### 问题 1: 找不到模型文件 + +**错误信息:** +``` +FileNotFoundError: yolov8n-seg.pt not found +``` + +**解决方法:** +- 首次运行会自动下载,确保网络连接正常 +- 或手动下载后放到项目根目录 +- 下载地址:https://github.com/ultralytics/assets/releases + +### 问题 2: 内存不足 (Out of Memory) + +**错误信息:** +``` +RuntimeError: CUDA out of memory +``` + +**解决方法:** +1. 减小批次大小: + ```python + batch=4 # 从8改为4 + ``` +2. 减小图片尺寸: + ```python + imgsz=416 # 从640改为416 + ``` +3. 使用更小的模型: + ```python + model_name="yolov8n-seg.pt" # 使用nano版本 + ``` + +### 问题 3: 标注文件格式错误 + +**错误信息:** +``` +ValueError: invalid literal for int() with base 10 +``` + +**解决方法:** +1. 运行验证脚本检查: + ```bash + python verify_seg_labels.py datasets/你的数据集/train/labels + ``` +2. 确保标注格式为:`class_id x1 y1 x2 y2 x3 y3 ...` +3. 确保坐标值在 [0, 1] 范围内 + +### 问题 4: 训练损失不下降 + +**可能原因和解决方法:** + +1. **学习率过高或过低** + - 使用默认学习率(通常不需要修改) + - 如果损失震荡,可以尝试减小学习率 + +2. **数据质量问题** + - 检查标注是否正确 + - 确保训练集和验证集都有足够的样本 + +3. **模型太小** + - 尝试使用更大的模型(如 yolov8s-seg.pt) + +4. **训练轮数不够** + - 增加 epochs 数量 + +### 问题 5: 验证集准确率很低 + +**解决方法:** +1. 检查验证集标注是否正确 +2. 确保验证集和训练集的数据分布相似 +3. 增加训练数据量 +4. 使用数据增强(YOLO默认已启用) + +### 问题 6: 训练速度很慢 + +**解决方法:** +1. **使用GPU**(最重要): + ```python + device="cuda" # 改为GPU + ``` +2. 减小图片尺寸: + ```python + imgsz=416 # 从640改为416 + ``` +3. 使用更小的模型: + ```python + model_name="yolov8n-seg.pt" + ``` +4. 启用缓存(如果内存足够): + ```python + # 在train()中添加 + cache=True + ``` + +--- + +## 💡 训练技巧和优化 + +### 技巧 1: 使用预训练模型继续训练 + +如果训练中断,可以从上次保存的模型继续: +```python +# 加载之前训练的模型 +model = YOLO("runs/segment/train/weights/last.pt") + +# 继续训练 +model.train( + data="datasets/搭电设备/data.yaml", + epochs=50, # 继续训练50轮 + resume=True # 继续训练 +) +``` + +### 技巧 2: 调整学习率 + +如果训练不稳定,可以调整学习率: +```python +results = model.train( + data="datasets/搭电设备/data.yaml", + epochs=100, + lr0=0.001, # 初始学习率(默认0.01) + lrf=0.1, # 最终学习率因子 + ... +) +``` + +### 技巧 3: 数据增强 + +YOLO默认启用数据增强,可以调整: +```python +results = model.train( + data="datasets/搭电设备/data.yaml", + epochs=100, + hsv_h=0.015, # 色调增强 + hsv_s=0.7, # 饱和度增强 + hsv_v=0.4, # 明度增强 + degrees=10, # 旋转角度 + translate=0.1, # 平移 + scale=0.5, # 缩放 + fliplr=0.5, # 水平翻转概率 + ... +) +``` + +### 技巧 4: 早停机制 + +如果验证损失不再下降,自动停止训练: +```python +results = model.train( + data="datasets/搭电设备/data.yaml", + epochs=100, + patience=50, # 50轮没有改善就停止 + ... +) +``` + +### 技巧 5: 多GPU训练 + +如果有多个GPU,可以使用: +```python +device=[0, 1] # 使用GPU 0和1 +``` + +### 技巧 6: 监控训练过程 + +训练时会实时显示: +- 损失曲线 +- 准确率 +- mAP(平均精度) + +训练完成后查看: +```bash +# 查看训练结果图片 +open runs/segment/train/results.png + +# 查看混淆矩阵 +open runs/segment/train/confusion_matrix.png +``` + +--- + +## 📝 完整训练示例 + +### 示例:训练搭电设备数据集(完整流程) + +```python +from train_segmentation import train_segmentation_model + +def main(): + # 步骤1: 验证标注(可选) + # python verify_seg_labels.py datasets/搭电设备/train/labels datasets/搭电设备/train/images + + # 步骤2: 开始训练 + train_segmentation_model( + dataset_path="datasets/搭电设备/data.yaml", + model_name="yolov8n-seg.pt", # 使用nano模型(速度快) + epochs=100, # 训练100轮 + batch=8, # 批次大小8 + imgsz=640, # 图片尺寸640 + device="cuda" # 使用GPU(如果有) + ) + + # 步骤3: 训练完成后,模型保存在 runs/segment/train/weights/best.pt + # 可以使用这个模型进行推理 + +if __name__ == '__main__': + main() +``` + +--- + +## 🎓 总结 + +### 训练新数据集的通用步骤: + +1. ✅ **准备数据** - 组织好目录结构 +2. ✅ **创建 data.yaml** - 配置数据集信息 +3. ✅ **验证标注** - 确保格式正确 +4. ✅ **修改训练脚本** - 设置正确的数据集路径 +5. ✅ **开始训练** - 运行训练脚本 +6. ✅ **查看结果** - 检查训练曲线和模型 + +### 快速参考表: + +| 要修改的内容 | 修改位置 | 示例 | +|------------|---------|------| +| 数据集路径 | `dataset_path` | `"datasets/仪表盘/data.yaml"` | +| 模型大小 | `model_name` | `"yolov8s-seg.pt"` | +| 训练轮数 | `epochs` | `150` | +| 批次大小 | `batch` | `16` | +| 图片尺寸 | `imgsz` | `832` | +| 设备类型 | `device` | `"cuda"` | + +--- + +## 📞 需要帮助? + +如果遇到问题: +1. 查看错误信息 +2. 检查数据格式 +3. 运行验证脚本 +4. 参考本文档的"常见问题解决"部分 + +祝你训练顺利!🎉 +